[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: 请使用这个中文模板提交Bug\nabout: \"请务必按照模板提交Bug\\U0001F64F\"\ntitle: 请填写BUG标题\nlabels: bug\nassignees: thunder\n\n---\n\n**是否使用了最新代码**\n是或否（如果不是的话尝试克隆最新的代码再跑一下！）\n\n**Bug描述**\n清晰而简洁的Bug描述（必写）\n\n**运行环境**\n - 系统：[例如Windows 10 x64]（必写）\n - golang版本：[例如1.15.7]（必写）\n \n**如何复现**\n复现步骤（选写）\n\n复现命令（必写）\n\n**报错文本**\n复制完整的报错文本（必写）\n\n**预期结果**\n清晰而简洁的预期结果描述（选写，如正常情况应该是怎么样的）\n\n**实际结果**\n清晰而简洁的实际结果描述（选写，如出现什么错误）\n\n**屏幕截图**\n完整golang执行流程截图（建议上传）\n\n**日志上传**\n上传/results/console.log日志文件（复杂问题建议上传）\n\n**其他补充**\n关于bug的其他一些补充说明"
  },
  {
    "path": "Makefile",
    "content": "\nDATE= `date '+%Y-%m-%d %H:%M:%S'`\nVERSION=\"v0.0.1\"\n\n\n.PHONY : version\nversion :\n\t@echo \"caesar\" ${VERSION}\n\t@echo ${DATE}\n\n#构建可执行文件，在deployments目录下面\n.PHONY : build\nbuild:\n\t@echo \"build开始\"\n\t@chmod +x ./scripts/build.sh && ./scripts/build.sh\n\t@echo \"build结束\"\n\n#生成dockerfile\n.PHONY : docker\ndocker :\n\t@echo \"生成dockerfile开始\"\n\t@chmod +x ./scripts/dockerfile.sh && ./scripts/dockerfile.sh\n\t@echo \"生成Dockerfile结束\""
  },
  {
    "path": "README.md",
    "content": "# 🏁Caesar\n☠️**Caesar一个全新的敏感文件发现工具**\n![敏感文件扫描](docs/img/img1.gif)\n## 👻项目简介\n文件扫描是安服的一个基本环节，网络上关于文件扫描的工具也有很多，比如御剑，7kbscan，dirsearch等，但是在实战的时候还是遇到不少的问题，比如跨平台问题以及动态404问题。所以按照自己的经验重新造了一个轮子。\n## 😈项目特性\n* 一 **支持主流平台**: 得益于golang的跨平台优势。一次编译，到处运行。\n* 二 **强大的并发**: golang的并发独树一帜。12线程下能实现每秒千级请求。为了安全性，默认只设置了3线程。\n* 三 **路径记忆功能**: Caesar可以记忆路径的击中次数，下次运行的时候，击中次数多的路径优先级会提高。\n* 四 **动态404判断**: 针对网站不存在页面返回的404,200,3xx状态码可以自动识别判断。\n* 五 **动态文件后缀扫描功能**: 比如发现index.php之后，程序会在二段扫描中扫描index.php.txt, index.php.swp, index.php.bak。\n* 六 **动态目录扫描功能**: 比如发现/admin之后，程序会在二段扫描中扫描admin.zip, admin.rar, admin.tar, admin.tar.gz。\n* 七 **可自定义http请求头**: 修改config.yml的Headers可以添加请求头内容。\n* 八 **可自定义User-Agent**: 修改config.yml的UserAgent可以实现随机UA。\n* 九 **可自定义代理**: 修改config.yml的Proxy可以实现代理访问。\n* 十 **可自定义cookie**: 修改config.yml的Cookie在访问网站的时候会带着cookie。\n* 十一 **超大字典**: 程序自带common,jsp,asp,php,spring,weblogic字典，合计超10万条路径，当然也可以自己定制。\n* 十二 **错误次数太多自动退出功能**: 访问目标超时次数到达一定数量的时候会自动终止任务。\n* 十三 **支持-r读取http请求**: 类似sqlmap的-r功能。\n* 十四 **支持批量扫描**: 可以从文本中获取多目标。\n## 🏉需要的编译环境\nGolang 1.15(推荐)\n## 🥋结果保存\n日志和发现的信息会保存在results目录下\n## 🥎路径字典\n路径字典在assets/directory目录下，相比于其他的程序的路径文本字典，Caesar的路径字典是json，可以通过\n```shell script\ncaesar convert -d ~/path/ \n```\n将普通路径字典转换为程序能识别的json字典。将转换后的字典放在assets/directory目录下即可。\n## 🏀第三方框架\n* [pb](https://github.com/cheggaaa/pb) - 终端进度条实现\n* [logrus](https://github.com/sirupsen/logrus) - 一个非常简单但强大的日志记录器\n* [cobra](https://github.com/spf13/cobra) - Cobra既是一个用来创建强大的现代CLI命令行的golang库,也是一个生成程序应用和命令行文件的程序\n* [fasthttp](https://github.com/valyala/fasthttp) - fasthttp是Go的快速 HTTP 实现\n## 🥂TODO\n- [ ] 常见MVC框架的识别和字典优化。一个spring框架用.jsp的路径扫描显然不合适\n- [ ] 目录迭代扫描\n- [ ] 常见WAF阻止后缀的识别。WAF会阻止类似/www.zip 的请求，返回不同于应用程序本身的ban信息\n- [ ] 项目的持续优化和bug修复\n- [ ] 403目录绕过功能\n## 🏈贡献\n如果你擅长go语言，并且有好的想法，欢迎你提交requests\n## 👮🏻‍免责声明\n本工具仅能在取得足够合法授权的企业安全建设中使用，在使用本工具过程中，您应确保自己所有行为符合当地的法律法规。 如您在使用本工具的过程中存在任何非法行为，您将自行承担所有后果，本工具所有开发者和所有贡献者不承担任何法律及连带责任。 除非您已充分阅读、完全理解并接受本协议所有条款，否则，请您不要安装并使用本工具。 您的使用行为或者您以其他任何明示或者默示方式表示接受本协议的，即视为您已阅读并同意本协议的约束。\n## 🏓版权协议\n该项目签署了GPL-3.0授权许可，详情请参阅[COPING](docs/COPYING)。\n## 🤝外链\n如果你觉得有趣的话，可以关注我的公众号。\n![code](docs/img/code.jpg)\n## 📷相关项目\n* [dirsearch](https://github.com/maurosoria/dirsearch) - 非常棒的目录扫描工具\n* [dirmap](https://github.com/H4ckForJob/dirmap) - flag很高的工具，可惜不更新了"
  },
  {
    "path": "api/banner.go",
    "content": "package api\n\n//Banner 展示版本和标志信息\nconst Banner = `\nCaesar is a powerful path scan tool\n  ____\n / ___|__ _  ___  ___  __ _ _ __\n| |   / _  |/ _ \\/ __|/ _  | '__|\n| |__| (_| |  __/\\__ \\ (_| | |\n \\____\\__,_|\\___||___/\\__,_|_|\n` + Version\n"
  },
  {
    "path": "api/version.go",
    "content": "package api\n\n// Program Version\nconst Version = \"v0.0.1\"\n"
  },
  {
    "path": "app/audit/audit.go",
    "content": "package audit\n\nimport (\n\t\"strings\"\n\t\"time\"\n\n\t\"Caesar/internal/library\"\n\t\"Caesar/internal/library/cores\"\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/record\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc start(threads int, delay int) {\n\t// 开始运行任务\n\t// 设置并发数\n\t// 设置延时\n\trelation.Engine.TimeSleep = delay\n\n\t// 如果设置延时，线程自动降为1\n\tif delay == 0 {\n\t\trelation.Engine.Threads = threads\n\t} else {\n\t\trelation.Engine.Threads = 1\n\t}\n}\n\nfunc StartSensitiveFoundFromAddress(target, flag string, threads, delay int) {\n\tstart(threads, delay)\n\n\tvar targetList []string\n\tvar flagList []string\n\n\ttargetList = library.GetTargets(target)\n\tflagList = strings.Split(flag, \",\")\n\n\tstartTime := time.Now()\n\n\trecord.Logger.Debug(\"The project start at \" + startTime.Format(\"2006-01-02 15:04:05\"))\n\n\tfor _, v := range targetList {\n\t\tif !relation.Engine.Silence {\n\t\t\tprintln()\n\t\t}\n\t\ttargetTime := time.Now()\n\t\trecord.Logger.Debug(\"The target \" + v + \" start at \" + targetTime.Format(\"2006-01-02 15:04:05\"))\n\t\t// 主进程\n\t\tcores.Start(v, true, cores.ReadDict(flagList, relation.Paths.Dict))\n\t\trecord.Logger.Debug(\"The target \" + v + \" end at \" + time.Now().Format(\"2006-01-02 15:04:05\"))\n\t\trecord.Logger.Debug(\"The target \" + v + \" cost time is  \" + time.Since(targetTime).String())\n\n\t\tif !relation.Engine.Silence {\n\t\t\tprintln()\n\t\t}\n\n\t}\n\n\t// 导出结果\n\tcores.Export(relation.Engine.CollectAssets)\n\n\trecord.Logger.Debug(\"The project end at \" + time.Now().Format(\"2006-01-02 15:04:05\"))\n\trecord.Logger.Debug(\"All time is  \" + time.Since(startTime).String())\n\n\treturn\n}\n\nfunc StartSensitiveFoundFromText(text, flag string, threads, delay int) {\n\tstart(threads, delay)\n\n\tstartTime := time.Now()\n\trecord.Logger.Debug(\"The project start at \" + startTime.Format(\"2006-01-02 15:04:05\"))\n\n\tif !relation.Engine.Silence {\n\t\tprintln()\n\t}\n\n\tinfo := utils.ReadFile(text)\n\tif len(utils.ReadFile(text)) == 0 {\n\t\tprintln(\"Open File Errors \" + text)\n\t\treturn\n\t}\n\n\tcores.Start(info, false, cores.ReadDict(strings.Split(flag, \",\"), relation.Paths.Dict))\n\n\t// 导出结果\n\tcores.Export(relation.Engine.CollectAssets)\n\n\trecord.Logger.Debug(\"The project end at \" + time.Now().Format(\"2006-01-02 15:04:05\"))\n\trecord.Logger.Debug(\"All time is  \" + time.Since(startTime).String())\n\n\treturn\n}\n"
  },
  {
    "path": "app/convert/convert.go",
    "content": "package convert\n\nimport (\n\t\"io/ioutil\"\n\t\"strings\"\n\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc TextToJsonOfPath(path string) {\n\n\ttxtList := utils.WrapFuncGetFile(utils.GetFileFromDocument, path, \"txt\")\n\n\tfor _, v := range txtList {\n\n\t\tvar newSlice []relation.EachPath\n\n\t\tinfos, err := utils.ReadLines(v)\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\n\t\tif len(infos) == 0 {\n\t\t\treturn\n\t\t}\n\n\t\tfor _, v := range utils.RemoveDuplicateElement(infos) {\n\t\t\tnewTag := relation.EachPath{\n\t\t\t\tHits: 0,\n\t\t\t\tPath: v,\n\t\t\t}\n\t\t\tnewSlice = append(newSlice, newTag)\n\n\t\t}\n\n\t\tinfo, _ := utils.CustomMarshal(newSlice)\n\t\t_ = ioutil.WriteFile(strings.TrimSuffix(v, \".txt\")+\".json\", []byte(info), 0644)\n\n\t}\n\n}\n\nfunc TextToJsonOfFile(fileName string) {\n\n\tvar newSlice []relation.EachPath\n\n\tinfos, err := utils.ReadLines(fileName)\n\tif err != nil {\n\t\tprintln(err.Error())\n\t\treturn\n\t}\n\n\tfor _, v := range utils.RemoveDuplicateElement(infos) {\n\t\tnewTag := relation.EachPath{\n\t\t\tHits: 0,\n\t\t\tPath: v,\n\t\t}\n\t\tnewSlice = append(newSlice, newTag)\n\n\t}\n\n\tinfo, _ := utils.CustomMarshal(newSlice)\n\t_ = ioutil.WriteFile(strings.TrimSuffix(fileName, \".txt\")+\".json\", []byte(info), 0644)\n\n}\n"
  },
  {
    "path": "app/reset/reset.go",
    "content": "package reset\n\nimport (\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"strings\"\n\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc SetupHitsOfZeroInFile(fileName string) {\n\n\tvar eachJson []relation.EachPath\n\tvar newJson []relation.EachPath\n\n\tbytes, err := ioutil.ReadFile(fileName)\n\tif err != nil {\n\t\tprintln(fileName + \" open failed\")\n\t\treturn\n\t}\n\n\tif err := json.Unmarshal(bytes, &eachJson); err != nil {\n\t\tprintln(\"json Unmarshal is failed\")\n\t\treturn\n\t}\n\n\tfor _, v := range eachJson {\n\t\tv.Hits = 0\n\t\tnewJson = append(newJson, v)\n\t}\n\n\t// 最后面4个空格，让json格式更美观\n\tresult, _ := json.MarshalIndent(newJson, \"\", \"    \")\n\n\t_ = ioutil.WriteFile(fileName, result, 0644)\n\n}\n\nfunc SetupHitsOfZeroInDocument(document string) {\n\n\tassetsDir := document\n\n\t//获取文件或目录相关信息\n\tfileInfoList, err := ioutil.ReadDir(assetsDir)\n\tif err != nil {\n\t\tprintln(\"Can not open dir\")\n\t\treturn\n\t}\n\n\tfor i := range fileInfoList {\n\t\tvar dictPath string\n\t\tif !strings.HasSuffix(dictPath, \"/\") {\n\t\t\tdictPath = assetsDir + \"/\"\n\t\t} else {\n\t\t\tdictPath = assetsDir\n\t\t}\n\n\t\tfileName := dictPath + fileInfoList[i].Name()\n\n\t\tvar eachJson []relation.EachPath\n\t\tvar newJson []relation.EachPath\n\n\t\tbytes, err := ioutil.ReadFile(fileName)\n\t\tif err != nil {\n\t\t\tprintln(fileName + \" open failed\")\n\t\t\tcontinue\n\t\t}\n\n\t\tif err := json.Unmarshal(bytes, &eachJson); err != nil {\n\t\t\tprintln(\"json Unmarshal is failed\")\n\t\t\tcontinue\n\t\t}\n\n\t\tfor _, v := range eachJson {\n\t\t\tv.Hits = 0\n\t\t\tnewJson = append(newJson, v)\n\t\t}\n\n\t\t// 最后面4个空格，让json格式更美观\n\t\tresult, _ := utils.CustomMarshal(newJson)\n\n\t\t_ = ioutil.WriteFile(fileName, []byte(result), 0644)\n\n\t}\n\n}\n"
  },
  {
    "path": "app/waf/waf.go",
    "content": "package waf\n\nimport (\n\t\"sync\"\n\t\"time\"\n\n\t\"Caesar/internal/library\"\n\t\"Caesar/internal/library/cores\"\n\t\"Caesar/internal/library/director\"\n\t\"Caesar/pkg/record\"\n)\n\nfunc StartWafCheck(target string, threads, delay int) {\n\n\ttargetList := library.GetTargets(target)\n\twg := &sync.WaitGroup{}\n\n\tvar ThreadsChan chan struct{}\n\tvar finishChan chan string\n\n\t// 设置线程\n\n\tif delay != 0 {\n\t\tthreads = 1\n\n\t} else {\n\t\tif threads > len(targetList) {\n\t\t\tthreads = len(targetList)\n\t\t}\n\t}\n\n\tThreadsChan = make(chan struct{}, threads)\n\tfinishChan = make(chan string, len(targetList))\n\n\tstartTime := time.Now()\n\n\twg.Add(1)\n\tgo func(wg *sync.WaitGroup) {\n\t\t// 心跳线程 用来关闭数据chan\n\t\tdefer wg.Done()\n\n\t\tfor {\n\t\t\tif len(finishChan) == len(targetList) {\n\t\t\t\tclose(finishChan)\n\t\t\t\treturn\n\t\t\t}\n\t\t\ttime.Sleep(time.Second * 1)\n\t\t}\n\n\t}(wg)\n\n\trecord.Logger.Debug(\"The project start at \" + startTime.Format(\"2006-01-02 15:04:05\"))\n\n\tfor _, v := range targetList {\n\n\t\tThreadsChan <- struct{}{}\n\t\twg.Add(1)\n\n\t\t// 主进程\n\t\tgo func(address string) {\n\t\t\tvar msg string\n\n\t\t\t// 检查目标连通性\n\t\t\tif _, _, _, err := director.GenerateGet(address, true); err != nil {\n\t\t\t\tmsg = address + \" not connect\"\n\t\t\t} else {\n\t\t\t\tif cores.CheckWaf(address) {\n\t\t\t\t\tmsg = address + \" has waf\"\n\t\t\t\t} else {\n\t\t\t\t\tmsg = address + \" no waf\"\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfinishChan <- msg\n\n\t\t\twg.Done()\n\t\t\t<-ThreadsChan\n\t\t}(v)\n\n\t}\n\n\twg.Wait()\n\n\tfor v := range finishChan {\n\t\tprintln(v)\n\t}\n\n\trecord.Logger.Debug(\"The task  end at \" + time.Now().Format(\"2006-01-02 15:04:05\"))\n\trecord.Logger.Debug(\"The task  cost time is  \" + time.Since(startTime).String())\n\n}\n"
  },
  {
    "path": "assets/cdn/cdn_asn_list.json",
    "content": "[\n    \"10576\",\n    \"10762\",\n    \"11748\",\n    \"131099\",\n    \"132601\",\n    \"133496\",\n    \"134409\",\n    \"135295\",\n    \"136764\",\n    \"137187\",\n    \"13777\",\n    \"13890\",\n    \"14103\",\n    \"14520\",\n    \"17132\",\n    \"199251\",\n    \"200013\",\n    \"200325\",\n    \"200856\",\n    \"201263\",\n    \"202294\",\n    \"203075\",\n    \"203139\",\n    \"204248\",\n    \"204286\",\n    \"204545\",\n    \"206227\",\n    \"206734\",\n    \"206848\",\n    \"206986\",\n    \"207158\",\n    \"208559\",\n    \"209403\",\n    \"21030\",\n    \"21257\",\n    \"23327\",\n    \"23393\",\n    \"23637\",\n    \"23794\",\n    \"24997\",\n    \"26492\",\n    \"268843\",\n    \"28709\",\n    \"29264\",\n    \"30282\",\n    \"30637\",\n    \"328126\",\n    \"36408\",\n    \"38107\",\n    \"397192\",\n    \"40366\",\n    \"43303\",\n    \"44907\",\n    \"46071\",\n    \"46177\",\n    \"47542\",\n    \"49287\",\n    \"49689\",\n    \"51286\",\n    \"55082\",\n    \"55254\",\n    \"56636\",\n    \"57363\",\n    \"58127\",\n    \"59730\",\n    \"59776\",\n    \"60068\",\n    \"60626\",\n    \"60922\",\n    \"61107\",\n    \"61159\",\n    \"62026\",\n    \"62229\",\n    \"63062\",\n    \"64232\",\n    \"8868\",\n    \"9053\",\n    \"55770\",\n    \"49846\",\n    \"49249\",\n    \"48163\",\n    \"45700\",\n    \"43639\",\n    \"39836\",\n    \"393560\",\n    \"393234\",\n    \"36183\",\n    \"35994\",\n    \"35993\",\n    \"35204\",\n    \"34850\",\n    \"34164\",\n    \"33905\",\n    \"32787\",\n    \"31377\",\n    \"31110\",\n    \"31109\",\n    \"31108\",\n    \"31107\",\n    \"30675\",\n    \"24319\",\n    \"23903\",\n    \"23455\",\n    \"23454\",\n    \"22207\",\n    \"21399\",\n    \"21357\",\n    \"21342\",\n    \"20940\",\n    \"20189\",\n    \"18717\",\n    \"18680\",\n    \"17334\",\n    \"16702\",\n    \"16625\",\n    \"12222\",\n    \"209101\",\n    \"201585\",\n    \"135429\",\n    \"395747\",\n    \"394536\",\n    \"209242\",\n    \"203898\",\n    \"202623\",\n    \"14789\",\n    \"133877\",\n    \"13335\",\n    \"132892\",\n    \"21859\",\n    \"6185\",\n    \"47823\",\n    \"4134\"\n]"
  },
  {
    "path": "assets/cdn/cdn_cname_keywords.json",
    "content": "{\n    \"cdn\": \"cdn\",\n    \"cache\": \"cache\",\n    \"tbcache.com\": \"Alibaba Cloud\",\n    \"alicdn.com\": \"Alibaba Cloud\",\n    \"tcdn.qq.com\": \"tcdn.qq.com\",\n    \"00cdn.com\": \"XYcdn\",\n    \"21cvcdn.com\": \"21Vianet\",\n    \"21okglb.cn\": \"21Vianet\",\n    \"21speedcdn.com\": \"21Vianet\",\n    \"21vianet.com.cn\": \"21Vianet\",\n    \"21vokglb.cn\": \"21Vianet\",\n    \"360wzb.com\": \"360\",\n    \"51cdn.com\": \"ChinaCache\",\n    \"acadn.com\": \"Dnion\",\n    \"aicdn.com\": \"UPYUN\",\n    \"akadns.net\": \"Akamai\",\n    \"akamai-staging.net\": \"Akamai\",\n    \"akamai.com\": \"Akamai\",\n    \"akamai.net\": \"Akamai\",\n    \"akamaitech.net\": \"Akamai\",\n    \"akamaized.net\": \"Akamai\",\n    \"alicloudlayer.com\": \"ALiyun\",\n    \"alikunlun.com\": \"ALiyun\",\n    \"aliyun-inc.com\": \"ALiyun\",\n    \"alicloudsec.com\": \"ALiyun\",\n    \"aliyuncs.com\": \"ALiyun\",\n    \"amazonaws.com\": \"Amazon Cloudfront\",\n    \"anankecdn.com.br\": \"Ananke\",\n    \"aodianyun.com\": \"VOD\",\n    \"aqb.so\": \"AnQuanBao\",\n    \"awsdns\": \"KeyCDN\",\n    \"azioncdn.net\": \"Azion\",\n    \"azureedge.net\": \"Azure CDN\",\n    \"bdydns.com\": \"Baiduyun\",\n    \"bitgravity.com\": \"Tata Communications\",\n    \"cachecn.com\": \"CnKuai\",\n    \"cachefly.net\": \"Cachefly\",\n    \"ccgslb.com\": \"ChinaCache\",\n    \"ccgslb.net\": \"ChinaCache\",\n    \"ccgslb.com.cn\": \"ChinaCache\",\n    \"cdn-cdn.net\": \"\",\n    \"cdn.cloudflare.net\": \"CloudFlare\",\n    \"cdn.dnsv1.com\": \"Tengxunyun\",\n    \"cdn.ngenix.net\": \"\",\n    \"cdn20.com\": \"ChinaCache\",\n    \"cdn77.net\": \"CDN77\",\n    \"cdn77.org\": \"CDN77\",\n    \"cdnetworks.net\": \"CDNetworks\",\n    \"cdnify.io\": \"CDNify\",\n    \"cdnnetworks.com\": \"CDNetworks\",\n    \"cdnsun.net\": \"CDNsun\",\n    \"cdntip.com\": \"QCloud\",\n    \"cdnudns.com\": \"PowerLeader\",\n    \"cdnvideo.ru\": \"CDNvideo\",\n    \"cdnzz.net\": \"SuZhi\",\n    \"chinacache.net\": \"ChinaCache\",\n    \"chinaidns.net\": \"LineFuture\",\n    \"chinanetcenter.com\": \"ChinaCache\",\n    \"cloudcdn.net\": \"CnKuai\",\n    \"cloudfront.net\": \"Amazon Cloudfront\",\n    \"customcdn.cn\": \"ChinaCache\",\n    \"customcdn.com\": \"ChinaCache\",\n    \"dnion.com\": \"Dnion\",\n    \"dnspao.com\": \"\",\n    \"edgecastcdn.net\": \"EdgeCast\",\n    \"edgesuite.net\": \"Akamai\",\n    \"ewcache.com\": \"Dnion\",\n    \"fastcache.com\": \"FastCache\",\n    \"fastcdn.cn\": \"Dnion\",\n    \"fastly.net\": \"Fastly\",\n    \"fastweb.com\": \"CnKuai\",\n    \"fastwebcdn.com\": \"CnKuai\",\n    \"footprint.net\": \"Level3\",\n    \"fpbns.net\": \"Level3\",\n    \"fwcdn.com\": \"CnKuai\",\n    \"fwdns.net\": \"CnKuai\",\n    \"globalcdn.cn\": \"Dnion\",\n    \"hacdn.net\": \"CnKuai\",\n    \"hadns.net\": \"CnKuai\",\n    \"hichina.com\": \"WWW\",\n    \"hichina.net\": \"WWW\",\n    \"hwcdn.net\": \"Highwinds\",\n    \"incapdns.net\": \"Incapsula\",\n    \"internapcdn.net\": \"Internap\",\n    \"jiashule.com\": \"Jiasule\",\n    \"kunlun.com\": \"ALiyun\",\n    \"kunlunar.com\": \"ALiyun\",\n    \"kunlunca.com\": \"ALiyun\",\n    \"kxcdn.com\": \"KeyCDN\",\n    \"lswcdn.net\": \"Leaseweb\",\n    \"lxcdn.com\": \"ChinaCache\",\n    \"mwcloudcdn.com\": \"QUANTIL\",\n    \"netdna-cdn.com\": \"MaxCDN\",\n    \"okcdn.com\": \"21Vianet\",\n    \"okglb.com\": \"21Vianet\",\n    \"ourwebcdn.net\": \"ChinaCache\",\n    \"ourwebpic.com\": \"ChinaCache\",\n    \"presscdn.com\": \"Presscdn\",\n    \"qingcdn.com\": \"\",\n    \"qiniudns.com\": \"QiNiu\",\n    \"skyparkcdn.net\": \"\",\n    \"speedcdns.com\": \"QUANTIL\",\n    \"sprycdn.com\": \"PowerLeader\",\n    \"tlgslb.com\": \"Dnion\",\n    \"txcdn.cn\": \"CDNetworks\",\n    \"txnetworks.cn\": \"CDNetworks\",\n    \"ucloud.cn\": \"UCloud\",\n    \"unicache.com\": \"LineFuture\",\n    \"verygslb.com\": \"VeryCloud\",\n    \"vo.llnwd.net\": \"Limelight\",\n    \"wscdns.com\": \"ChinaNetCenter\",\n    \"wscloudcdn.com\": \"ChinaNetCenter\",\n    \"xgslb.net\": \"Webluker\",\n    \"ytcdn.net\": \"Akamai\",\n    \"yunjiasu-cdn\": \"Baiduyun\",\n    \"cloudfront\": \"CloudFront\",\n    \"kunlun.com\": \"Alibaba Cloud\",\n    \"ccgslb\": \"ChinaCache\",\n    \"edgekey\": \"Akamai\",\n    \"fastly\": \"Fastly\",\n    \"chinacache\": \"ChinaCache\",\n    \"edgekey\": \"Akamai\",\n    \"akamai\": \"Akamai\",\n    \"fastly\": \"Fastly\",\n    \"edgecast\": \"EdgeCast\",\n    \"azioncdn\": \"Azion\",\n    \"cachefly\": \"CacheFly\",\n    \"cdn77\": \"CDN77\",\n    \"cdnetworks\": \"CDNetworks\",\n    \"cdnify\": \"CDNify\",\n    \"wscloudcdn\": \"ChinaNetCenter\",\n    \"speedcdns\": \"ChinaNetCenter/Quantil\",\n    \"mwcloudcdn\": \"ChinaNetCenter/Quantil\",\n    \"cloudflare\": \"CloudFlare\",\n    \"hwcdn\": \"HighWinds\",\n    \"kxcdn\": \"KeyCDN\",\n    \"awsdns\": \"KeyCDN\",\n    \"fpbns\": \"Level3\",\n    \"footprint\": \"Level3\",\n    \"llnwd\": \"LimeLight\",\n    \"netdna\": \"MaxCDN\",\n    \"bitgravity\": \"Tata CDN\",\n    \"azureedge\": \"Azure CDN\",\n    \"anankecdn\": \"Anake CDN\",\n    \"presscdn\": \"Press CDN\",\n    \"telefonica\": \"Telefonica CDN\",\n    \"dnsv1\": \"Tecent CDN\",\n    \"cdntip\": \"Tecent CDN\",\n    \"skyparkcdn\": \"Sky Park CDN\",\n    \"ngenix\": \"Ngenix\",\n    \"lswcdn\": \"LeaseWeb\",\n    \"internapcdn\": \"Internap\",\n    \"incapdns\": \"Incapsula\",\n    \"cdnsun\": \"CDN SUN\",\n    \"cdnvideo\": \"CDN Video\",\n    \"clients.turbobytes.net\": \"TurboBytes\",\n    \"clients.turbobytes.net\": \"TurboBytes\",\n    \"turbobytes-cdn.com\": \"TurboBytes\",\n    \"afxcdn.net\": \"afxcdn.net\",\n    \"akamai.net\": \"Akamai\",\n    \"akamaiedge.net\": \"Akamai\",\n    \"akadns.net\": \"Akamai\",\n    \"akamaitechnologies.com\": \"Akamai\",\n    \"gslb.tbcache.com\": \"Alimama\",\n    \"cloudfront.net\": \"Amazon Cloudfront\",\n    \"anankecdn.com.br\": \"Ananke\",\n    \"att-dsa.net\": \"AT&T\",\n    \"azioncdn.net\": \"Azion\",\n    \"belugacdn.com\": \"BelugaCDN\",\n    \"bluehatnetwork.com\": \"Blue Hat Network\",\n    \"systemcdn.net\": \"EdgeCast\",\n    \"cachefly.net\": \"Cachefly\",\n    \"cdn77.net\": \"CDN77\",\n    \"cdn77.org\": \"CDN77\",\n    \"panthercdn.com\": \"CDNetworks\",\n    \"cdngc.net\": \"CDNetworks\",\n    \"gccdn.net\": \"CDNetworks\",\n    \"gccdn.cn\": \"CDNetworks\",\n    \"cdnify.io\": \"CDNify\",\n    \"ccgslb.com\": \"ChinaCache\",\n    \"ccgslb.net\": \"ChinaCache\",\n    \"c3cache.net\": \"ChinaCache\",\n    \"chinacache.net\": \"ChinaCache\",\n    \"cncssr.chinacache.net\": \"ChinaCache\",\n    \"c3cdn.net\": \"ChinaCache\",\n    \"lxdns.com\": \"ChinaNetCenter\",\n    \"speedcdns.com\": \"QUANTIL/ChinaNetCenter\",\n    \"mwcloudcdn.com\": \"QUANTIL/ChinaNetCenter\",\n    \"cloudflare.com\": \"Cloudflare\",\n    \"cloudflare.net\": \"Cloudflare\",\n    \"edgecastcdn.net\": \"EdgeCast\",\n    \"adn.\": \"EdgeCast\",\n    \"wac.\": \"EdgeCast\",\n    \"wpc.\": \"EdgeCast\",\n    \"fastly.net\": \"Fastly\",\n    \"fastlylb.net\": \"Fastly\",\n    \"google.\": \"Google\",\n    \"googlesyndication.\": \"Google\",\n    \"youtube.\": \"Google\",\n    \"googleusercontent.com\": \"Google\",\n    \"l.doubleclick.net\": \"Google\",\n    \"hiberniacdn.com\": \"Hibernia\",\n    \"hwcdn.net\": \"Highwinds\",\n    \"incapdns.net\": \"Incapsula\",\n    \"inscname.net\": \"Instartlogic\",\n    \"insnw.net\": \"Instartlogic\",\n    \"internapcdn.net\": \"Internap\",\n    \"kxcdn.com\": \"KeyCDN\",\n    \"lswcdn.net\": \"LeaseWeb CDN\",\n    \"footprint.net\": \"Level3\",\n    \"llnwd.net\": \"Limelight\",\n    \"lldns.net\": \"Limelight\",\n    \"netdna-cdn.com\": \"MaxCDN\",\n    \"netdna-ssl.com\": \"MaxCDN\",\n    \"netdna.com\": \"MaxCDN\",\n    \"stackpathdns.com\": \"StackPath\",\n    \"mncdn.com\": \"Medianova\",\n    \"instacontent.net\": \"Mirror Image\",\n    \"mirror-image.net\": \"Mirror Image\",\n    \"cap-mii.net\": \"Mirror Image\",\n    \"rncdn1.com\": \"Reflected Networks\",\n    \"simplecdn.net\": \"Simple CDN\",\n    \"swiftcdn1.com\": \"SwiftCDN\",\n    \"swiftserve.com\": \"SwiftServe\",\n    \"gslb.taobao.com\": \"Taobao\",\n    \"cdn.bitgravity.com\": \"Tata communications\",\n    \"cdn.telefonica.com\": \"Telefonica\",\n    \"vo.msecnd.net\": \"Windows Azure\",\n    \"ay1.b.yahoo.com\": \"Yahoo\",\n    \"yimg.\": \"Yahoo\",\n    \"zenedge.net\": \"Zenedge\",\n    \"cdnsun.net.\": \"CDNsun\",\n    \"pilidns.com\": \"QiNiu\"\n}"
  },
  {
    "path": "assets/cdn/cdn_header_keys.json",
    "content": "[\n    \"xcs\",\n    \"via\",\n    \"x-via\",\n    \"x-cdn\",\n    \"x-cdn-forward\",\n    \"x-ser\",\n    \"x-cf1\",\n    \"cache\",\n    \"x-cache\",\n    \"x-cached\",\n    \"x-cacheable\",\n    \"x-hit-cache\",\n    \"x-cache-status\",\n    \"x-cache-hits\",\n    \"x-cache-lookup\",\n    \"cc_cache\",\n    \"webcache\",\n    \"chinacache\",\n    \"x-req-id\",\n    \"x-requestid\",\n    \"cf-request-id\",\n    \"x-github-request-id\",\n    \"x-sucuri-id\",\n    \"x-amz-cf-id\",\n    \"x-airee-node\",\n    \"x-cdn-provider\",\n    \"x-fastly\",\n    \"x-iinfo\",\n    \"x-llid\",\n    \"sozu-id\",\n    \"x-cf-tsc\",\n    \"x-ws-request-id\",\n    \"fss-cache\",\n    \"powered-by-chinacache\",\n    \"verycdn\",\n    \"yunjiasu\",\n    \"skyparkcdn\",\n    \"x-beluga-cache-status\",\n    \"x-content-type-options\",\n    \"x-download-options\",\n    \"x-proxy-node\",\n    \"access-control-max-age\",\n    \"age\",\n    \"etag\",\n    \"expires\",\n    \"pragma\",\n    \"cache-control\",\n    \"last-modified\"\n]\n"
  },
  {
    "path": "assets/cdn/cdn_ip_cidr.json",
    "content": "[\n    \"223.99.255.0/24\",\n    \"71.152.0.0/17\",\n    \"219.153.73.0/24\",\n    \"125.39.46.0/24\",\n    \"190.93.240.0/20\",\n    \"14.0.113.0/24\",\n    \"14.0.47.0/24\",\n    \"113.20.148.0/22\",\n    \"103.75.201.0/24\",\n    \"1.32.239.0/24\",\n    \"101.79.239.0/24\",\n    \"52.46.0.0/18\",\n    \"125.88.189.0/24\",\n    \"150.138.248.0/24\",\n    \"180.153.235.0/24\",\n    \"205.251.252.0/23\",\n    \"103.1.65.0/24\",\n    \"115.127.227.0/24\",\n    \"14.0.42.0/24\",\n    \"109.199.58.0/24\",\n    \"116.211.155.0/24\",\n    \"112.253.3.0/24\",\n    \"14.0.58.0/24\",\n    \"223.112.227.0/24\",\n    \"113.20.150.0/23\",\n    \"61.182.141.0/24\",\n    \"34.216.51.0/25\",\n    \"124.95.188.0/24\",\n    \"42.51.25.0/24\",\n    \"183.136.133.0/24\",\n    \"52.220.191.0/26\",\n    \"119.84.93.0/24\",\n    \"182.118.38.0/24\",\n    \"13.59.250.0/26\",\n    \"54.178.75.0/24\",\n    \"119.84.92.0/24\",\n    \"183.131.62.0/24\",\n    \"111.32.136.0/24\",\n    \"13.124.199.0/24\",\n    \"111.47.227.0/24\",\n    \"104.37.177.0/24\",\n    \"14.0.50.0/24\",\n    \"183.230.70.0/24\",\n    \"114.111.59.0/24\",\n    \"220.181.135.0/24\",\n    \"112.140.32.0/19\",\n    \"101.79.230.0/24\",\n    \"14.0.115.0/24\",\n    \"103.28.248.0/22\",\n    \"117.34.72.0/24\",\n    \"109.199.57.0/24\",\n    \"101.79.149.0/24\",\n    \"116.128.128.0/24\",\n    \"115.231.186.0/24\",\n    \"103.22.200.0/22\",\n    \"61.155.165.0/24\",\n    \"113.20.148.0/23\",\n    \"185.254.242.0/24\",\n    \"59.36.120.0/24\",\n    \"70.132.0.0/18\",\n    \"116.31.126.0/24\",\n    \"119.147.134.0/24\",\n    \"115.127.246.0/24\",\n    \"52.47.139.0/24\",\n    \"118.107.175.0/24\",\n    \"52.78.247.128/26\",\n    \"110.93.176.0/20\",\n    \"54.240.128.0/18\",\n    \"46.51.216.0/21\",\n    \"119.31.251.0/24\",\n    \"125.39.18.0/24\",\n    \"108.175.33.0/24\",\n    \"1.31.128.0/24\",\n    \"61.151.163.0/24\",\n    \"103.95.132.0/24\",\n    \"58.215.118.0/24\",\n    \"54.233.255.128/26\",\n    \"120.52.113.0/24\",\n    \"118.107.174.0/24\",\n    \"1.32.242.0/24\",\n    \"221.195.34.0/24\",\n    \"101.79.228.0/24\",\n    \"205.251.249.0/24\",\n    \"113.200.91.0/24\",\n    \"101.79.146.0/24\",\n    \"221.238.22.0/24\",\n    \"134.19.183.0/24\",\n    \"110.93.160.0/20\",\n    \"180.97.158.0/24\",\n    \"115.127.251.0/24\",\n    \"119.167.147.0/24\",\n    \"115.127.238.0/24\",\n    \"115.127.240.0/22\",\n    \"14.0.48.0/24\",\n    \"115.127.240.0/24\",\n    \"113.7.183.0/24\",\n    \"112.140.128.0/20\",\n    \"115.127.255.0/24\",\n    \"114.31.36.0/22\",\n    \"101.79.232.0/24\",\n    \"218.98.44.0/24\",\n    \"106.119.182.0/24\",\n    \"101.79.167.0/24\",\n    \"125.39.5.0/24\",\n    \"58.49.105.0/24\",\n    \"124.202.164.0/24\",\n    \"111.177.6.0/24\",\n    \"61.133.127.0/24\",\n    \"185.11.124.0/22\",\n    \"150.138.150.0/24\",\n    \"115.127.248.0/24\",\n    \"103.74.80.0/22\",\n    \"101.79.166.0/24\",\n    \"101.71.55.0/24\",\n    \"198.41.128.0/17\",\n    \"117.21.219.0/24\",\n    \"103.231.170.0/24\",\n    \"221.204.202.0/24\",\n    \"101.79.224.0/24\",\n    \"112.25.16.0/24\",\n    \"111.177.3.0/24\",\n    \"204.246.168.0/22\",\n    \"103.40.7.0/24\",\n    \"134.226.0.0/16\",\n    \"52.15.127.128/26\",\n    \"122.190.2.0/24\",\n    \"101.203.192.0/18\",\n    \"1.32.238.0/24\",\n    \"101.79.144.0/24\",\n    \"176.34.28.0/24\",\n    \"119.84.15.0/24\",\n    \"18.216.170.128/25\",\n    \"222.88.94.0/24\",\n    \"101.79.150.0/24\",\n    \"114.111.48.0/21\",\n    \"124.95.168.0/24\",\n    \"114.111.48.0/20\",\n    \"110.93.176.0/21\",\n    \"223.111.127.0/24\",\n    \"117.23.61.0/24\",\n    \"140.207.120.0/24\",\n    \"157.255.26.0/24\",\n    \"221.204.14.0/24\",\n    \"183.222.96.0/24\",\n    \"104.37.180.0/24\",\n    \"42.236.93.0/24\",\n    \"111.63.51.0/24\",\n    \"114.31.32.0/20\",\n    \"118.180.50.0/24\",\n    \"222.240.184.0/24\",\n    \"205.251.192.0/19\",\n    \"101.79.225.0/24\",\n    \"115.127.228.0/24\",\n    \"113.20.148.0/24\",\n    \"61.213.176.0/24\",\n    \"112.65.75.0/24\",\n    \"111.13.147.0/24\",\n    \"113.20.145.0/24\",\n    \"103.253.132.0/24\",\n    \"52.222.128.0/17\",\n    \"183.203.7.0/24\",\n    \"27.221.27.0/24\",\n    \"103.79.134.0/24\",\n    \"123.150.187.0/24\",\n    \"103.15.194.0/24\",\n    \"162.158.0.0/15\",\n    \"61.163.30.0/24\",\n    \"182.140.227.0/24\",\n    \"112.25.60.0/24\",\n    \"117.148.161.0/24\",\n    \"61.182.136.0/24\",\n    \"114.31.56.0/22\",\n    \"64.252.128.0/18\",\n    \"183.61.185.0/24\",\n    \"115.127.250.0/24\",\n    \"150.138.138.0/24\",\n    \"13.210.67.128/26\",\n    \"211.162.64.0/24\",\n    \"61.174.9.0/24\",\n    \"14.0.112.0/24\",\n    \"52.52.191.128/26\",\n    \"27.221.124.0/24\",\n    \"103.4.203.0/24\",\n    \"103.14.10.0/24\",\n    \"34.232.163.208/29\",\n    \"114.31.48.0/20\",\n    \"59.51.81.0/24\",\n    \"183.60.235.0/24\",\n    \"101.227.206.0/24\",\n    \"125.39.174.0/24\",\n    \"119.167.246.0/24\",\n    \"118.107.160.0/21\",\n    \"223.166.151.0/24\",\n    \"110.93.160.0/19\",\n    \"204.246.172.0/23\",\n    \"119.31.253.0/24\",\n    \"143.204.0.0/16\",\n    \"14.0.60.0/24\",\n    \"123.151.76.0/24\",\n    \"116.193.80.0/24\",\n    \"120.241.102.0/24\",\n    \"180.96.20.0/24\",\n    \"216.137.32.0/19\",\n    \"223.94.95.0/24\",\n    \"103.4.201.0/24\",\n    \"14.0.56.0/24\",\n    \"115.127.234.0/24\",\n    \"113.20.144.0/23\",\n    \"103.248.104.0/24\",\n    \"122.143.15.0/24\",\n    \"101.79.229.0/24\",\n    \"101.79.163.0/24\",\n    \"104.37.112.0/22\",\n    \"115.127.253.0/24\",\n    \"141.101.64.0/18\",\n    \"113.20.144.0/22\",\n    \"101.79.155.0/24\",\n    \"117.148.160.0/24\",\n    \"124.193.166.0/24\",\n    \"109.94.168.0/24\",\n    \"203.90.247.0/24\",\n    \"101.79.208.0/21\",\n    \"182.118.12.0/24\",\n    \"114.31.58.0/23\",\n    \"202.162.109.0/24\",\n    \"101.79.164.0/24\",\n    \"58.216.2.0/24\",\n    \"222.216.190.0/24\",\n    \"101.79.165.0/24\",\n    \"111.6.191.0/24\",\n    \"1.255.100.0/24\",\n    \"52.84.0.0/15\",\n    \"112.65.74.0/24\",\n    \"183.250.179.0/24\",\n    \"101.79.236.0/24\",\n    \"119.31.252.0/24\",\n    \"113.20.150.0/24\",\n    \"60.12.166.0/24\",\n    \"101.79.234.0/24\",\n    \"113.17.174.0/24\",\n    \"101.79.237.0/24\",\n    \"61.54.46.0/24\",\n    \"118.212.233.0/24\",\n    \"183.110.242.0/24\",\n    \"150.138.149.0/24\",\n    \"117.34.13.0/24\",\n    \"115.127.245.0/24\",\n    \"14.0.102.0/24\",\n    \"14.0.109.0/24\",\n    \"61.130.28.0/24\",\n    \"113.20.151.0/24\",\n    \"219.159.84.0/24\",\n    \"114.111.62.0/24\",\n    \"172.64.0.0/13\",\n    \"61.155.222.0/24\",\n    \"120.52.29.0/24\",\n    \"115.127.231.0/24\",\n    \"14.0.49.0/24\",\n    \"113.202.0.0/16\",\n    \"103.248.104.0/22\",\n    \"205.251.250.0/23\",\n    \"103.216.136.0/22\",\n    \"118.107.160.0/20\",\n    \"109.87.0.0/21\",\n    \"54.239.128.0/18\",\n    \"115.127.224.0/19\",\n    \"111.202.98.0/24\",\n    \"109.94.169.0/24\",\n    \"59.38.112.0/24\",\n    \"204.246.176.0/20\",\n    \"123.133.84.0/24\",\n    \"103.4.200.0/24\",\n    \"111.161.109.0/24\",\n    \"112.84.34.0/24\",\n    \"103.82.129.0/24\",\n    \"183.3.254.0/24\",\n    \"112.137.184.0/21\",\n    \"122.227.237.0/24\",\n    \"36.42.75.0/24\",\n    \"13.35.0.0/16\",\n    \"101.226.4.0/24\",\n    \"116.140.35.0/24\",\n    \"58.250.143.0/24\",\n    \"13.54.63.128/26\",\n    \"205.251.254.0/24\",\n    \"173.245.48.0/20\",\n    \"183.61.177.0/24\",\n    \"113.20.144.0/24\",\n    \"104.37.183.0/24\",\n    \"35.158.136.0/24\",\n    \"116.211.121.0/24\",\n    \"42.236.94.0/24\",\n    \"117.34.91.0/24\",\n    \"123.6.13.0/24\",\n    \"13.224.0.0/14\",\n    \"113.20.146.0/24\",\n    \"58.58.81.0/24\",\n    \"52.124.128.0/17\",\n    \"122.228.198.0/24\",\n    \"197.234.240.0/22\",\n    \"99.86.0.0/16\",\n    \"144.220.0.0/16\",\n    \"119.188.97.0/24\",\n    \"36.27.212.0/24\",\n    \"104.37.178.0/24\",\n    \"114.31.52.0/22\",\n    \"218.65.212.0/24\",\n    \"1.255.41.0/24\",\n    \"14.0.45.0/24\",\n    \"1.32.243.0/24\",\n    \"220.170.185.0/24\",\n    \"122.190.3.0/24\",\n    \"103.79.133.0/24\",\n    \"220.181.55.0/24\",\n    \"125.39.191.0/24\",\n    \"115.127.226.0/24\",\n    \"125.39.32.0/24\",\n    \"61.120.154.0/24\",\n    \"103.4.202.0/24\",\n    \"103.79.134.0/23\",\n    \"115.127.224.0/24\",\n    \"113.20.147.0/24\",\n    \"61.156.149.0/24\",\n    \"210.209.122.0/24\",\n    \"115.127.249.0/24\",\n    \"104.37.179.0/24\",\n    \"120.52.18.0/24\",\n    \"54.192.0.0/16\",\n    \"14.0.55.0/24\",\n    \"61.160.224.0/24\",\n    \"113.207.101.0/24\",\n    \"101.79.157.0/24\",\n    \"110.93.128.0/20\",\n    \"58.251.121.0/24\",\n    \"61.240.149.0/24\",\n    \"130.176.0.0/16\",\n    \"113.107.238.0/24\",\n    \"112.65.73.0/24\",\n    \"103.75.200.0/23\",\n    \"199.83.128.0/21\",\n    \"123.129.220.0/24\",\n    \"54.230.0.0/16\",\n    \"114.111.60.0/24\",\n    \"199.27.128.0/21\",\n    \"14.0.118.0/24\",\n    \"101.79.158.0/24\",\n    \"119.31.248.0/21\",\n    \"54.182.0.0/16\",\n    \"113.31.27.0/24\",\n    \"14.17.69.0/24\",\n    \"101.79.145.0/24\",\n    \"113.20.144.0/21\",\n    \"180.163.22.0/24\",\n    \"104.37.176.0/21\",\n    \"117.25.156.0/24\",\n    \"115.127.252.0/24\",\n    \"115.127.244.0/23\",\n    \"14.0.46.0/24\",\n    \"113.207.102.0/24\",\n    \"52.199.127.192/26\",\n    \"13.113.203.0/24\",\n    \"64.252.64.0/18\",\n    \"1.32.240.0/24\",\n    \"123.129.232.0/24\",\n    \"1.32.241.0/24\",\n    \"180.163.189.0/24\",\n    \"157.255.25.0/24\",\n    \"1.32.244.0/24\",\n    \"103.248.106.0/24\",\n    \"121.48.95.0/24\",\n    \"54.239.192.0/19\",\n    \"113.20.146.0/23\",\n    \"61.136.173.0/24\",\n    \"35.162.63.192/26\",\n    \"117.34.14.0/24\",\n    \"183.232.29.0/24\",\n    \"42.81.93.0/24\",\n    \"122.228.238.0/24\",\n    \"183.61.190.0/24\",\n    \"125.39.239.0/24\",\n    \"115.127.230.0/24\",\n    \"103.140.200.0/23\",\n    \"202.102.85.0/24\",\n    \"14.0.32.0/21\",\n    \"14.0.57.0/24\",\n    \"112.25.90.0/24\",\n    \"58.211.137.0/24\",\n    \"210.22.63.0/24\",\n    \"34.226.14.0/24\",\n    \"13.32.0.0/15\",\n    \"101.79.156.0/24\",\n    \"103.89.176.0/24\",\n    \"14.0.116.0/24\",\n    \"106.42.25.0/24\",\n    \"101.79.233.0/24\",\n    \"101.79.231.0/24\",\n    \"103.75.200.0/24\",\n    \"119.188.9.0/24\",\n    \"183.232.51.0/24\",\n    \"149.126.72.0/21\",\n    \"103.21.244.0/22\",\n    \"115.127.233.0/24\",\n    \"27.221.20.0/24\",\n    \"198.143.32.0/19\",\n    \"103.248.107.0/24\",\n    \"101.79.227.0/24\",\n    \"115.127.242.0/24\",\n    \"119.31.250.0/24\",\n    \"103.82.130.0/24\",\n    \"99.84.0.0/16\",\n    \"222.73.144.0/24\",\n    \"103.79.132.0/22\",\n    \"101.79.208.0/20\",\n    \"104.37.182.0/24\",\n    \"101.79.152.0/24\",\n    \"36.99.18.0/24\",\n    \"101.71.56.0/24\",\n    \"36.250.5.0/24\",\n    \"61.158.240.0/24\",\n    \"119.188.14.0/24\",\n    \"13.249.0.0/16\",\n    \"183.214.156.0/24\",\n    \"60.221.236.0/24\",\n    \"58.30.212.0/24\",\n    \"115.127.254.0/24\",\n    \"188.114.96.0/20\",\n    \"115.127.241.0/24\",\n    \"103.4.200.0/22\",\n    \"115.127.239.0/24\",\n    \"115.127.243.0/24\",\n    \"111.32.135.0/24\",\n    \"120.221.29.0/24\",\n    \"115.127.232.0/24\",\n    \"14.0.43.0/24\",\n    \"14.0.59.0/24\",\n    \"183.61.236.0/24\",\n    \"34.223.12.224/27\",\n    \"103.24.120.0/24\",\n    \"52.57.254.0/24\",\n    \"113.207.100.0/24\",\n    \"222.186.19.0/24\",\n    \"113.20.149.0/24\",\n    \"150.138.151.0/24\",\n    \"115.231.110.0/24\",\n    \"52.56.127.0/25\",\n    \"104.37.176.0/24\",\n    \"163.177.8.0/24\",\n    \"163.53.89.0/24\",\n    \"52.82.128.0/19\",\n    \"114.111.63.0/24\",\n    \"108.162.192.0/18\",\n    \"14.136.130.0/24\",\n    \"115.127.229.0/24\",\n    \"14.17.71.0/24\",\n    \"52.212.248.0/26\",\n    \"180.163.188.0/24\",\n    \"61.182.137.0/24\",\n    \"119.161.224.0/21\",\n    \"14.0.41.0/24\",\n    \"202.162.108.0/24\",\n    \"106.122.248.0/24\",\n    \"52.66.194.128/26\",\n    \"115.127.237.0/24\",\n    \"220.170.186.0/24\",\n    \"14.0.32.0/19\",\n    \"14.0.114.0/24\",\n    \"112.90.216.0/24\",\n    \"115.127.236.0/24\",\n    \"116.193.84.0/24\",\n    \"113.207.76.0/24\",\n    \"101.79.235.0/24\",\n    \"101.79.224.0/20\",\n    \"61.155.149.0/24\",\n    \"101.79.148.0/24\",\n    \"180.163.224.0/24\",\n    \"204.246.174.0/23\",\n    \"183.60.136.0/24\",\n    \"101.227.207.0/24\",\n    \"103.248.105.0/24\",\n    \"119.188.35.0/24\",\n    \"42.236.7.0/24\",\n    \"116.193.88.0/21\",\n    \"116.193.83.0/24\",\n    \"120.199.69.0/24\",\n    \"122.226.182.0/24\",\n    \"58.20.204.0/24\",\n    \"110.93.128.0/21\",\n    \"115.231.187.0/24\",\n    \"69.28.58.0/24\",\n    \"114.31.32.0/19\",\n    \"112.25.91.0/24\",\n    \"59.52.28.0/24\",\n    \"117.27.149.0/24\",\n    \"61.147.92.0/24\",\n    \"14.0.117.0/24\",\n    \"14.0.40.0/24\",\n    \"119.97.151.0/24\",\n    \"103.199.228.0/22\",\n    \"122.70.134.0/24\",\n    \"115.127.244.0/24\",\n    \"223.112.198.0/24\",\n    \"115.127.225.0/24\",\n    \"104.16.0.0/12\",\n    \"121.12.98.0/24\",\n    \"103.31.4.0/22\",\n    \"204.246.164.0/22\",\n    \"223.94.66.0/24\",\n    \"35.167.191.128/26\",\n    \"116.31.127.0/24\",\n    \"101.79.226.0/24\",\n    \"34.195.252.0/24\",\n    \"115.127.247.0/24\",\n    \"61.240.144.0/24\",\n    \"108.175.32.0/20\",\n    \"120.197.85.0/24\",\n    \"183.232.53.0/24\",\n    \"111.161.66.0/24\",\n    \"117.34.28.0/24\",\n    \"45.64.64.0/22\",\n    \"14.0.44.0/24\",\n    \"109.86.0.0/15\",\n    \"182.23.211.0/24\",\n    \"58.211.2.0/24\",\n    \"119.36.164.0/24\",\n    \"116.55.250.0/24\",\n    \"101.227.163.0/24\",\n    \"13.228.69.0/24\",\n    \"120.221.136.0/24\",\n    \"119.188.132.0/24\",\n    \"115.127.235.0/24\",\n    \"42.236.6.0/24\",\n    \"125.88.190.0/24\",\n    \"61.54.47.0/24\",\n    \"103.27.12.0/22\",\n    \"116.193.80.0/21\",\n    \"101.79.159.0/24\",\n    \"123.155.158.0/24\",\n    \"111.47.226.0/24\",\n    \"131.0.72.0/22\",\n    \"192.230.64.0/18\"\n]"
  },
  {
    "path": "assets/directory/asp.json",
    "content": "[\n    {\n        \"hits\": 0,\n        \"path\": \"/command.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my/database.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outbreak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112938.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmleditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breasted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/570922.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarragon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/inafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/mecms_data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kdniadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bader.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebrides.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martyr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/sywiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditornet/ufrkupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200088.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foreigner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanbul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/dpymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amusement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thursday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/gratadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/css.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/uavaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unedin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collapse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/fuwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirsty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nfwfUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/napoleon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcusisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jplduppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trolley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naturally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/cyuhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1029.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalogue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/logout.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upstairs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilebanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortofspain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apparent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/shell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/gbiiAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nhui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/pxvzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/TUNGSTENDATA.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/better.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thither.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baggage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/akqluppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/txwoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/djxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natolia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/married.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/385670.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/kiedadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upgrade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himborazo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=../&connector=connectors/php/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3147.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23tyqiye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img-save.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/xoljupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ramble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amshedpur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reverse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intersection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oralsea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.aspx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2610.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naval.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reagan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forthcoming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angalore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/334130.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/aybzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/htmledit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/login_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/my.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/god.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wkyzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wkpzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circulation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accelerate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zecuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/tzlladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectacular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/nfepAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminLogin1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cbywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruined.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/vhwdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor/editor/filemanager/connectors/aspx/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/euulupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/digshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htm.asp/bbs/htm.asp/admin/htm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esselton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/caonima.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/225113.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gvo1digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnitogorsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/386502.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Message.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/omfhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/xcnladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/udfhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hersey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoenix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/bospadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/wvtmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/six.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajwsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_admin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/kblgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/tbtdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/jhlcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cashbox.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/mjhaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40917306.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/js-pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snort2html.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/asp/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ujswupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solitude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/tcjmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigbrother.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/dbsoj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/super.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zovseaof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/plrpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/upfile_other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/fjjiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileServices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/arxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_Ma1n.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2010.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/qgdhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/optfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exjh/user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fvnhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/adrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oiriUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/oyphadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cerulean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebeef.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/fyzbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/agmfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/xopgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hello.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affiliate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immigrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adele.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminroot.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123098.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housewife.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/jxqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zqnoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mtxtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjcx/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/uryxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1026.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ServerInfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uito.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/kegkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/vabetop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oroni.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/uutnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/express.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Webedit/admin_default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/usumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ansnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/nigcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thermal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneezy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clumsy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhzuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/msosadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFileForm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/webedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/template/admin/notice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elgrade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminphp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andarseribegawan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intermittent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/lkqiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encourage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5182.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about/upload_about.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qqxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/fjfoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileservices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dialog/help.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apology.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/92vrmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avoid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_admin/editor/admin_articlecontent.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoopy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complicate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transistor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/qldladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/urjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shujuku/shujuku3.0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/fthdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/digshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/kilgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mxfvUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Select_feedback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_new_ad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ljvcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbweUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dpdisave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3upxmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defalut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/behladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5313343.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decorative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/taheadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/vlsbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshidiantai/751.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm_marry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ciioupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shallaux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackburn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiban.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/beoxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/eihmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/gr8ywebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examination.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaret.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/xwksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blacksmith.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/sifzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bdvqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/zhbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dizzy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42214221.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ejckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/eoaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8cnnsc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jazz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatrice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/kbpsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfiletemp_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kill.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goto hell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogadishu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vowel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proceedings.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kejian/teacherlist.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/qwxwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetici.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/idnsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8myshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispatch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gchngmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizhi_tuku/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzygUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgjy_admin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/tckbconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vsafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slogan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rksradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/zfdnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj/data/6ting.com.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/zjokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138355.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Db/Ok3w.Net_v5.0.ASP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/oonfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yjnxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin/AdminLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jzcsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/jbhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/htmlEdit/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proposition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/pkaeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/376767.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haircut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileCases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/npnmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/yvzpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferrari.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tzfgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distribute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/newadmin/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wgwyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/yqtxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/rikvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unmoonlake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/haccadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xpcoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/htovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contradiction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protozoa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/soztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vertical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zddyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arwin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/lziwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xhdxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/mooyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/siygadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/020202.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8users.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0824.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/ipqrtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/z9v8yesitis.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/joiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applicant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cctv.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urrey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showoff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_inc/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/jfmmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foosun/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/tsrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/modnuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/hefradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mkusadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adverb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/royalty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cctv.asp/bbs/cctv.asp/admin/cctv.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glamor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/whjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/equcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPAdmin_A.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antenna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guowai_Wangzhan/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/tgbgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compliment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzkweditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.aspxalmas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capital.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/54.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/uvstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coosel/s8login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hzozupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/does.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missionary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electrician.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endeavor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_photoup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/tyitadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scott.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/70.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_img/xiaoma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HX_LOGIN.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/twsxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eolqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yspradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bwvaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_set.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sousuo_Yinqing/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land/land.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=../../connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoginAdministrator.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extraordinarily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bvqpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/pwypadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eicester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/jnhmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shazam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absorption.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/adltadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/advsearch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilecasestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/rvnmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slump.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/wpuxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/233.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8aspadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftb.imagegallery2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/blog/z9v8attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citizen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/qytgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/dydhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppbd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyjxy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qcutadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdigshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlaid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dou.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disaster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheu.asp/bbs/sheu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/04260518.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/sbihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjdsd/Hz@host!.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/xwbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cioiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/committed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhehnew/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2587758.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hindley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007/Admin/Admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xpiqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppsala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piyhqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123178.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/vrtdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behrman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edithtml/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ukisadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jrsqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoroughly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/htimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/rlryupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burned.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lfieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aopaulo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vtmnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxspy2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peaceful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surfer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEM_User/admin_php/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/obpbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/uyhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Function/UploadProductPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toysrus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infom_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/jmluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/egzwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/xclxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qtkkup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turnright.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qwgjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/47.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoyable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/koxradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2k1cupfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbarians.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/urzpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nba_lanqiu/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshidiantai/755.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8menghuan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demonstrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin_database.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escaped.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/rdluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/409152.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chapel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knayupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/odpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2246868.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/mqcnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/zwclAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/syslogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dependant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/too.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snafoo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112233.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brickles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/hnrcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/iqrzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/showfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/zombadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kgrolog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ivxsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23506810.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xchnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accordance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighteen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilenews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Default_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/kissy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/500.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/239026.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/method.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/juwkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5u3qdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mufoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000054.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/otcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merchant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/oledadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Case.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surround.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ulojadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/oybwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heighten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/rdktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonplace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/main1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upme2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curtain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/epoxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arctic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startled.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simpsons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweater.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DoctorUpload/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gtftadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/mpcgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upsoft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christmas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/zqbzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olokai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahua/guazhan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malaysia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hallam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ofekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_files.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nldwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vsokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disguise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333520.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suckrocks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/ciqiAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/sbgradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/koajuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/sdeiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wagon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thailand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wwegadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usaka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vt100.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/showcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/x0b9SelectPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/count.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trembling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ianbienphu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/twxyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/bgajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/nxklupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xzcjuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/142234.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_space.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hcpaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/aqnjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_softpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/block.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bracket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olzceweb/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thresh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bhygupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caption.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/lngkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/yrznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jijinlicai/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ivlkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigjoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiju.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/filxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/upfilespecial.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grattan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/past.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakedpotatoe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devoted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omerville.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivetti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/Product/MANAGE/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/xxtdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/began.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loosing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horsley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fkmvUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tknaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ran.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/nannadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/editor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0516.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2257995.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/availability.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agdalena.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47rfmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfied.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuttgart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ywbdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eghorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1088.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commander.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/scflash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/teihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cognitive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/qnsgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/daeiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/svpnconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/userreg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cgloupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/rvhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/127927.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9013digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecraft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/obpcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magdalen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dama.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eztzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/mdraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incentive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoft/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/21.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/webeditor/admin/rtaflogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fqobupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/181121.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olysee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cm2okey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentedit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forwUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ivogadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gcsvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/man.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ghchadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realtime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alifax.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blunt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qi9fqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anonymous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmle/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprehension.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdklUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBArticle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2010.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/region.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2144.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/DataManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/recwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entitle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmanuel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/rjivadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iikaUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122421.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cholesterol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthwhile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impetus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jtsladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196438.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/qkfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/abc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/User_GetPassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zlffadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cwayadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boke/data/dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8wr8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/substance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqgao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt/kanxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/sibeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogarth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/award.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/bnyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/described.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deficient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radioactive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inneapolis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/yaahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiceng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/sphtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/mvzradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fnwmuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/xmxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panther.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p8c2ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preceding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradelogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/blvoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinshua_chuban/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsys/eWebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/linkup/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uagadougou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1uuqmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/说明.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/567890.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonwealth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dora.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disrupt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/africa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ggwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileServices.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/edbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/vmhuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nfowadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/jydoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/cdxpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connections/baseinc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/jcqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuylkill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/islbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/080475.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/plobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/day.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nqnsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/omiiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunnyrabbit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/oratadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peculiarity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/daxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upnewsimg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tracie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manifest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/tkqxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symposium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjvuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/yvotadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atvia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blunder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/wtqeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login_lg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/admin/modipwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackdos.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminMenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requipa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firmness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reassure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_shop_newshop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/counter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilmington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/letfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/wrziadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Articla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/connection.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangchanjiaju/1761.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/token.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/%23down19827.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/unmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ml4pcss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serenity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/gyrnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/hzujadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilePartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/clbxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/csqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/nzpvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lterupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taxes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gambia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ristol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/yjanadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restored.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxms/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastbreak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoughtful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disregard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signature.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101244.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zwajupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/9vxqupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/yzztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3731895.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_SqlIn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/critical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handbook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explosive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insteraarhorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/daysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11223344.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/cache/user/1/jiami.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uckinghamshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Admin/BoardSetting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xjasuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nasa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/lohradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/avasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/x0b9admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navigation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myanmar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xoetadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experienced.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hmuradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adnorshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artinique.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superiority.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/zwhoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffcbUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/258000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/241325.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rescue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/producer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plague.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot-asp-scan/z9v8scan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/rfvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member/FileUpLoad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodgson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/rekpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8stylaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/gdfuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1133.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/station.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alenciennes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/shlladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/ewebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/tmpbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afhsdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_6list.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driatic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckinleymount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonglin_muyu/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/jmticonnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localstart.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/gxasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/katxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untingdonshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8dbconn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/jregadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/covered.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conservative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lrsradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdurman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/yeobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catastrophe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/register.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eclmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/shownews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parallel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jtkeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cause.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/mbkeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Install.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fgkpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barkley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seaside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ausanne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hqqsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamonix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aapcsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vacant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/shell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyuchevskaya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lennyash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/irxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ydlhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/do.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/jseyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0cf4diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luxembourg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/528345.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilenewspic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/of.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/013707.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/aykeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_shopxp/upLoad_bm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disgust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wmohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ajwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/312394.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/translation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/feqiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56721439.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112403.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/nshladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/auvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinfeng/phx1look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/tiqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Editor/ipgpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brochure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/images.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/234.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admired.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/democratic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/procession.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askatmasqatmuscat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wr9qdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellsworth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/bbitadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jyajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shady.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adsystem/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadF.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woaini.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loemfontein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preferable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urabajasurabaya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/million.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/+.+.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jjhpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/hfhsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ksopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/admin/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relativity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianhua.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/czavAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tettin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mfgdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/987654321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/vmreadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xpupload3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brewster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wo_edit/editor/filemanager/connectors/asp/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/roikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beyond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/waisheng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endanger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exaggerate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rsnpscan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overturn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iagarafalls.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/Admin_Loginx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vugdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foghorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warfare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anben.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikespeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/kk3a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/qjxkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/product/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gllogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rectify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1228.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_check.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/gqckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ptuuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcp-ip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ippcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twksupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/fsxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bcjfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vkyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsrsgmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancashire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1105.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0425.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07914131611.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brenda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5807836.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saab9000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/kcxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/xsqyAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hongke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amuse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_GaobeiSysInfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ind/Index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/postinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/full.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2ir9myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctrine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ropnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xingzuo_suanming/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1812overture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebrws.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Up_byshoppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteserver/publishing/viewcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/geyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jvxdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jtlrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/cvscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zdbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umberside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crumble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/lkzjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/asjcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/am.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yzxgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/uopwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissipate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/sdnkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wfyqadmin/manage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/fbvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/bavcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/pwxladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/g2jpcmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/chfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/79.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/unthadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waterproof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfilep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evelyn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applicable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/flhzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yule_zixun/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mightaux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refuse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan/qfvcscan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadership.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/dptjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wolf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/njhqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DbConnect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_master.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hjadmin/add_js.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadPic.aspx?actionType=mod&picName=miao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/oovlconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bessie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/User_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/te.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/manage/webeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xvrxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/lmkuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/pgxfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/yfntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/3pv6css.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/xjvsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/qqnxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttydigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_databackup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ggypadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kanzUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjclsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310110780318.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/install.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osangeles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reckless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/teffadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/iyavshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/icvuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otherham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ohyyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/atozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touching.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/53082160.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/district.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macedonia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_link.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1h80diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/okxlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/kvntupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impressive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advbedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrtxcnshop2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620828.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascertain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ipqdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genevieve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fyccadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databass/DataShop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intranet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodrich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correspondence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pendulum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contents.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/tlrbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ltdradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/nankupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/days.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baruch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igtrdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huagong_nengyuan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8passport_client.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/iyihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/involve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/13.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu_jianshen/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cradle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqyhtml.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lljvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netizen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconn_logo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/092094.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/kpptadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ammond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/jpuvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/upload/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lcviUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intimidate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ev.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/admin/Admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/02kvdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haiyang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uyana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/mylfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oronto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/lvqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oppress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rattle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inFile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boobies.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function/uploadproductpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhdakota.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makepeace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytzfadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daphne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/upuvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databass/datashop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lydgate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rival.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/irunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/39426.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oeaxnew/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grandmother.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pertinent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewfoundland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcticsea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catholic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/swozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g4t0tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ajikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilroy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brokenheart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortsaid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/szysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inorca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prosperity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/afndupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Script/Upfiles/QQ/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/air.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/digshell4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/qmbjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardiarabia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashamed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afghanistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/DatabaseManager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anumberone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fashionable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/have.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/izojadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alteration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/mknnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/oiemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regularity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lpqutmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/familiar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminda.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yijuhua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makewar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concept.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xiaolu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alliance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mijbsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personality.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0815.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sullen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guli/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/250417.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manguage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/988.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/kibbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/censor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101847.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/512215.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/503860.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_ads.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/business.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amburghaembcg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beggar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/mrfhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminmember.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/dxpjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ksvvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Saveannounce_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/country.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manag_onlinedb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fso.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acuiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ugbfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patriotic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_con.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8jh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promising.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basicsearch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/80sec.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jhyyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ctsxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56881323.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/nimagebi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transmission.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/b2b_sysdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ork.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squires.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/eplfconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clouds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clutch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shovel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfile/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enyaservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileServicesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gxoleditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/9i4cupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southeast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xafyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/wseiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007928.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/tgirconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attribute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encounter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turnleft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/kebjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/check_path.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/cfaladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0301.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privacy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wxfjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/post_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deserted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noticeable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tease.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Society/files.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bhutan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/xpiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agxpeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ducksbreath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comply.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ozqcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadOK.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premature.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyrus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/root.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/55.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zgbqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122872.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/cnnsc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/yixkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wrtxcnqywz4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angerislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23%23%23fdkjgzschool.v2009%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backpass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiben.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fountain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terminal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fsjdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ku.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/uggvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boeing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/per.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/vskbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Up.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nimvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/yttdAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/luck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uez.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/gbqhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feixiang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ottingham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uluth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elliptical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reflection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/oaphadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eliot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/iglbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/wkmsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/vohgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tndcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/217121.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshbread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/zvdaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wfcouppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pwxwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Datamdb/%23RxjhData.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jdspadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/xstvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/games.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/nprladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexfiend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ewrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/very.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/cxtgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/kwubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/give.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/iifnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/458.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5249.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tangerine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbourhood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edgar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/second.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almstad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/nmhradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aneurin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitedkingdomnorthernireland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezekiel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novacancy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/zrrkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parcel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whizzylink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imberley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/lwwwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilelink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/wxieAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1166.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartwright.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indifferent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/sbylupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ysoradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/Defaultx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vtykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vpquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/zokpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/teagadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/khkbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbany.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_template.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carefully.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1221.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peoria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcheckform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receiver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creamer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/frxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56147882.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/des.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makingit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asmin/Editor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breastfeed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bole/look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspx木马.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.aspx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ievkiyev.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/uampadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/yhucadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k6lyshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8Install.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/bxlsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/txwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orraine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8sand.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/502835.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walnut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cz_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nhexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantinople.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agri/Friend.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vqziadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/former.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqywz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacterium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alayarchipelago.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichmond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ougjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/cdukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/238888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmstree.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/tuyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chk/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muxgUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/whjdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogin/system_config_operate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/tmdnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ae.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drnpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gknhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preset.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pbpmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/78.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ssksconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8salakl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wcyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/stmnconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soldier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thermometer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/good.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlawrence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/cqefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_list.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technology.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qayxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menber/editor/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/uhckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/oczuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc/PicLoad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/clpyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/150531.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browser/default/connectors/aspx/connector.aspx?Command=CreateFolder&Type=Image&CurrentFolder=/%2F&NewFolderName=aspx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tester_download.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/pyowadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_Action_Abc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fergus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1124.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bahrain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vosbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?type=Image&connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huckcheesea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ppkwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/Admin_New/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dryden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wpzpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhelp.asp/bbs/xhelp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/error.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msm/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bispham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/tyzvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bega.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/mjpwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/skxoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consequent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plainly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8sall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/damaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letsgo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilbert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/successive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/HelperScripts/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gijgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/lrnbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/pnjxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/dmenadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfile/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ASPAdmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_orderpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/mhtcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pipeorgan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/eWebEditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/adminmenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcpip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mqbjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/xofbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upLoad_bm1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getstuffed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/11111/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouldaux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f3sraspcheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hhqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8User_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxvisave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/wbzdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atjseditor/filemanager/browser/default/connectors/asp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.aspx;1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/nuekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhyorkshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/pmdvconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeopardize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/qfujadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tntladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congratulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_getpassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/quceadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rssfree.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2906.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108108.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1968.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bxm7NewComment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anges.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/qymeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openhagen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ztacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tried.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burns.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lessen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allowance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porridge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/pmuvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/pfofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/dlzaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_chklogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/uanhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamorganshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/q46vdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/informed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerri.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userregpost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stumble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comparable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/msvmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/yjuaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/pmqbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/beifen.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambrose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incardineshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/akqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/split.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/brpmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/otqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DIY2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122400.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0916.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/rwnhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trumpet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blessing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_New.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unguessable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiche_qipei/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/axsyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/rgubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/313131.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xohqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ffdduppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honesty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erefordandworcester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellows.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgif.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/ewebedit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srilanka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinegar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loyal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aragossa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/in_file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jokeoe_data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/group.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permeate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqywz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6140.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/chkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23720505qazsjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talino.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qevxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileServicesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goonight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wsrnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichigan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ykpuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread-16-1-1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unloadimg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/uiapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narrow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/BathUpdate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123132.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ikmyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ndstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/daouadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essarabia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ManageAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/394576.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possession.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wxagadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8888.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alarm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upuserface.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/from.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/yfgbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/bztqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/nszoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yue2upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abrupt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucatan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regardless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devotion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irginislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/431319.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/erboadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft/ma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/248634.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/nbvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testcase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/bttnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_copy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppbd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/userreg_step2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj/sjbakroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Edit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/x0b9upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beef.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bicycle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Backupmdb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/showcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolidex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1dppdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integrity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_edit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/17f1digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/do/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q220z_shop_newshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8Region.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/tlgmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xml.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWeb/kubradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolutionary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asvegas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/prvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/working.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxz/look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisabethville.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/#echuang#.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bankrupt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roller.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rjdwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/uxlyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/cjzuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conscientious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v2ynAdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rgbcuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/bwefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22327.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/FooSun_Data/FooSun_Data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aardvark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/littletoe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zvrbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qvfhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starwars.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saab900.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/%23%23%23666$wjf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxadmin/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/validity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freedheim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/s8User_Space.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/hffvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caipcad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatshit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/webedit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jqieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3610791.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/tdohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manege/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilmer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhostlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/bikgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/39611327.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ptsfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alarmed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinwenbaokan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seaweed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speaker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deformation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wolf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yacrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/puwqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/dtsfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/lnkdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beardsley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/cwryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/vpabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ddigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yrqvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/Zzm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/wsxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jqhmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/qytcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hirripogrande.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/fdfeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/duywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zadbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exact.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/ewebeditor/admin/wjrllogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/kodxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_cplist.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/jlsgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carpenter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/rtffadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/barpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meditate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thatcher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/nqavadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12300.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gutter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/yuihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11110.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reptile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abracadabra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutme/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antaisabel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/define.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/bvupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panda.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softlist_cate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/017009.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pregnant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/zmfwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ruwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receiving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backdate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inflict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tovxnew/webeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileservices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/whnyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tighten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kissy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wolf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/fsleupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuqiu_tianxia/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imitate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kxmiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5174841.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immediate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/cypyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqywz3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wjlwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58443091.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imags.asp/bbs/imags.asp/admin/imags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philippines.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/aolqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rc9xmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trisha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unixsuck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/lqikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ypeuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/hslcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bwufsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/eawcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emptyheaded.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirmation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yrntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/qvdwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antaana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physician.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/a02fUser_Reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/bbtradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SysHelp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margeaux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/urdeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misanthrope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_ChkPurview.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/tefradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8dbscon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/admin/说明.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fidelity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organ.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rqkfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xfkvuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyzzy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approximately.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320402.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ytljadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/result.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditornet/upload.aspxdmditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/related.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thfaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveUpFile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DataBackup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/rtqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/fkovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xgncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/n4vhlink_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/lxxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/efrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/total.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/xcszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/yymjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosebud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finished.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiffany.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2012.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congratulation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bwdrUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintghdhgfb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingyang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/yvlhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plymouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemadminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/svrxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/kyiqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destructive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikallake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1963.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/lafcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/bvzgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernestine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/bjenadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/do.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mcwnUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/princess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apecod.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jsCreate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aucasus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ujvoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/nabeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lyrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/hcqcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankfpanfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lunch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/bhfladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/dhbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/htqbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/fjgqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/jbopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgotten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mem/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileDown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyUserLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vwxtUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/gqjcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/zlbfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8safsd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/jcckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ptlwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visualize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paranoia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinxi/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/srgkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/fmsxtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/videophone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confidence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administr8.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desolate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clinton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brvcUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angluo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/DataBack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/zongadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminhh/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arms.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/zqtradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n9d3setup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/rwiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/lhstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/computer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/left.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/sqyeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminis/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lyiiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nineteen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inflation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007341.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/bvozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reef.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entertainment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/phpinfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/DBControl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/njazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/qtnbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rqxisave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rygdedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cnrvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audrey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ivxtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/bbs/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbexupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onolulu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwdpadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physiological.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/ysdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/img_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urchin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flourish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appetite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilenews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/croft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/psbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/wcsradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/departed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranklin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/nopass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addressed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enaresbanaras.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frontier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dpbiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/irehconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpfmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0824501.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/showfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/fxwaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/hebqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qybaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applied.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/aylradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/eesyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qavyUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incidence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100533.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyd4upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chapman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1688.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/yvqoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pocket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/bwsoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hropshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztmpindex.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck-off.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overtime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xiaolu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3rd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couscous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/puneadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/289298.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/during.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okosuka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!Emte%5E=.Editor/adminlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colclough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_con.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/jxiladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolescence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analysis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/gstvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cbupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movements.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/opfoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/fgwfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pbbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olumbiamount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hacker120.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lively.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hyxradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mritsar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/fjqrconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/others.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/ewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enemy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clurestrait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/gtuaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anduan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/council.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotmail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oventry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberLogin.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/jvuuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/cymkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bargai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcvksave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/yiixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310107.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/unrnconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/eizwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eyqeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubbard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erintji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlwhelpu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/njou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register/UserReg_Step1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitnUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/cvpjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lightly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/myekadmin_login.asp/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodwind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgnzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/315495.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpspy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tidy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/gprkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brush.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azerbaijan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/read.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/jwvaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/User_RegPost.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qtonadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileNewsPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peculiar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8up_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpapadmin/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firework.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools/uploadx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/descend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ij.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ydugadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/egcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burbank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horror.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckyou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/exnkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interpret.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myweb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popularity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001544.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ypqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aben.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eiderdown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newkids.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/guxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/dxsvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/kcvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euajUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beecham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antabrian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47880624.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copyright.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor1/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/Default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motionless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2cscshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovebaobao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3800.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e3b8upfile_adpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombasa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephanie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Admin/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/dmhdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripoli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/spscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/xwebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mould.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culminate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/floxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uonoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lopwUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tube.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propagation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuvalu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pjgxUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capsule.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earlharbor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvudupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qmchadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ildare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noodle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/553600.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlog_db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/elsbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/yaudadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ijmxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/666.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_forums.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urinam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/qbajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ys.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HomeManagement/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enquire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hebrides.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/fqobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5203992.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gshjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/craeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burglar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/yefzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/rncuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usually.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/york.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/inpwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birkbeck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_forums.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favourite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/AdminUserLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amused.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/xxjrsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/direct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/augxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntarctic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5712088.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/geeddigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/rbqjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/admin/Edits/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egghead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntilebanon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weeping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wquwadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/hketadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alienate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cushing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Select_feedback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doctor/DoctorUpload/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/someone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deletemember.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/sqbbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ille.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cupboard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/au.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147258.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omaliland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinitely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aticancitystate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssgponews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/uploadn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grateful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hbruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileCases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interpretation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/plus_marry_db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsuper.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Heike_Anquan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/size.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/vvdoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengyin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/true.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/ndex.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/eawsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fgpwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/looking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gatt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shit-head.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lijgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/tfseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zrphuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qeieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brooks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/knzlAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gqalupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/qurladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newcomment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/imkcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hegyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/prezadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ogxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3242153.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sincerity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ammunition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/bjpmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/side.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repression.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/vslyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chouten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/bdlzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack520.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobbit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inxs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countries.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/admin/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elfast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speech.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ierraleone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23sy%23wgh2008%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ltluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xzpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocarno.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilebanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ttydigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/etubupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affectionate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/zbyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qr86digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profound.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instability.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dbconn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/zlbvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/connection.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/xiaoma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubrey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/342623.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/kqmhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8sall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/put.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ajpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foxylady.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_message.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disperse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/logon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/only.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wfkvotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/woaini.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surgery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/eWebEditor/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonzai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/light.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/answer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42677.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/zvwhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thriller.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/news3000.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornament.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interact.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vearsu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/press.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yneandwear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/gtqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/cpruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cameroon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12912.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decimal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ho7fdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interrupted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ycquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_0ther.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vmraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strangle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile_adpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/xfosadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq232174321.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harleston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/flmnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counts/fyweek.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/zonttop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112411.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/commient.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_login_easysite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/608323.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornamental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/pyapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/tjneadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identification.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ytjxuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1gy3upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regiment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wnxalogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1438.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tevkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tpqdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/BoardSetting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manager/left.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/meseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2828561.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsvote%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goforit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examined.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandwich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/nzwaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddhism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honduras.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/z9v8advertise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/lsjqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powereasy4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UpFileManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/llehadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenhouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/pwssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outcome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/cfcuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/query.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venezuela.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etsamo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/521258.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontenegro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/race.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrod.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztzt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heritage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8up_BookPicPro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collaboration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcheck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/va.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eunion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheeks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinguish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2wfwservusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadPic.inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/view_page.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs2/dv_rss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jjhgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orwegiansea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/bggdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/doxmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_upblog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/esxbconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/bnrhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/cttgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/mgbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adm_upll.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot-asp-scan/z9v8scan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/LoginAdministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stated.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/jtmladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ijon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bqqvwebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craigavon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54tq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2478664.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/GroupManager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/uiyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/zzikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fwiglogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kqwtadmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/rfhtsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45986.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d4m4qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win2000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nimagebi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theatre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okkaido.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office2000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henrietta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prohibition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/sckfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/sumsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_bm1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/btstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idiyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akartadjakarta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twelfth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/qtfeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileservicestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/mqjradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/century.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wygkcnqywz3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/qtlnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inghai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmaden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/base.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/496464.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/otroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/differentiate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muadmin/weblogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tzygadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/are.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uecuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/zovpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ftbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sovereign.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nepal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cctv.asp/bbs/cctv.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cozy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burkinafaso.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsybitsy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/60p8Region.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aronne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acct/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hcvneditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thigh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/vbfttop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostarica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/sbytadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xh_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/life.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnlogin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/fytcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snoopy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cshrc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askatchewan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/qvecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m5l9diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/chhpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/digshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7788.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bfd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/mvrhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adult.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admsystem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/husvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headquarters.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surface.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vvbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/orzvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168168.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ojksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vyxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbourne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Media.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_foot.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/klybadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wntzUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/look.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nukem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uluarchipelago.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/oqnbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/language.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/kxmiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3312596.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gratefuldead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tetxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mzyanjie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worried.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8Region.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continually.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ekjnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxnoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collected.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xkwvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efficient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nightmare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by-product.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabbit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceqfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denmark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fegoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ytfuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ndvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/critic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pblog3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zimbabweformerrhodesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j2d1css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/xeipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/imzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yourself.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/login1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rnblupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/nswpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/388273.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ocqoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/admin_default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jiruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/drjoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oledit/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilecasestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/svpladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/advertise.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/pcnuAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yxjqwebedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/aomnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pilgrim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cattle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/first-rate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/aasoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmgvtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neutron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entrance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/qpstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjacent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jxbjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motivate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vzrhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tulip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgcnsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enegal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/grfcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/lmmzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/57.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21822.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osciuskomount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8codea.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earlier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/brmiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nephew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lostpass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/rusuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southwards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ogxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bwruupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ware.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewbritain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/pofcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridegroom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darnley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgdUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ormandy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/oelyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netherlands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/pxauadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/removed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ushsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/lcjrUser_Reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji_tongxing/wap_wangzhi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Up_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/152433.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/dlgoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/xlnwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oesmnew/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/iezyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/asp/towgconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8login.asp/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/gcbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanovo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eitor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softcatemenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/math-cs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tech.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/34aqdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/develop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/553920.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jwviadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23wygkcnalibaba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wish.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/rtvaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qbjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadImage3_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imags.asp/bbs/imags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oona.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/international.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evacuate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherri.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4489207.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ttncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outrage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileDown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iribati.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_c1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/base.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/eamcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ozfuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uvjqadmin/ewebeditor/ewebditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/super.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/huphadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fymyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastener.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pound.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/souvenir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/aejoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ba1jia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/den.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wcvvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/cqvmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/studio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/request.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/tpedconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bassoon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/huihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/gtuwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/uhweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinglear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file/ma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/financial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/xbysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billgates.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/pyioadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esternisles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/bwgradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/xrnaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3297219.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opensesame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hqspUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/999.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/nunladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/eobwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3m8jtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckoff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voluntary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavendish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gostraight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assured.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nxvyuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/college/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briefcase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/phpspy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolboy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mywebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/bbskadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/fileupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Users/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftInfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syphilis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8boke/data/dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gcptmember/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mvxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ujiladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndochina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zzm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovebaobao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/cnpfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nguilla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odppUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/vcdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incFiles/load_gg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2t0vdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utensil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uis3digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jianzhan_Sheji/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ysjsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r11sqq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expectation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/study.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inventory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/450.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2v1ksu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/managepwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dial-up.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/gcoxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/lksoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23tyqiyechina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/571181.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_editpass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thelena.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/litter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/agxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punishment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileBanner.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmodem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ttjdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/245401.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4290.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/point.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atanga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/tmfpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okyo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heinlein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formidable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/285900ppp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ujwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/2hfvUser_Reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/dzipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volcano.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bfoeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christiana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/fnrwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ccrgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/jwfbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alawi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priority.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/etrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/addlink.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prlaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oalogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage_logo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0rkservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lrh.asp/bbs/lrh.asp/admin/lrh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HomeManagement/Loginx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/kdnfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fileupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy/z9v8isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocvddiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/syiuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reproduce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doors.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfordmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ur-admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beryl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injustice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nmlvuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/adfvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extinguish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8wv9qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWeb/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iangsu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ido.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puyhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixteen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/counter.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/glnsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12344321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/sdukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fosdick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/afbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/iofdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/zmdxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birthday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/tofpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/kinsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/johaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analytical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/shgjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/wloeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/omaxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/rjlladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kernel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginini.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/mymmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mortgage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/europeanunioneu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2103.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/434000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodmorning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innovation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jjmqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ko.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/aspx/connector.aspx?Command=GetFoldersAndFiles&Type=File&CurrentFolder=/1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boomer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aseng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/energy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/showcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mcqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/btxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/urbwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malawi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aini.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkov.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bones.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileCases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urintjucrin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mazon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1130.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_picupfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bwuqsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drummond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Southidceditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/neixupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vov2update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/3sngupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/aqaiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ammdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/csutupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/uvnyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/kcfladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/span.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/inkjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uneoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/A_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/vjejconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omalia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belloc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ccreadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/假地址.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iceland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/zutaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ixwxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileDown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/sidtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reign.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/TUNGSTENDATA.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/lkkgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/tlcfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfiletemp_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elphinstone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/3xiySelectPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ohhaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8jmup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/miwkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/spaeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileservicestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fupradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/unshadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/zaeeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/vldzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/less.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/zroaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userslist.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/wmgkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiche.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gb/register.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ooo/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisstart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ad_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Oledit/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebedit/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/f0hfdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qspeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/bmwwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4689335.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aros.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/PPst_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/kmcqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vqzyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windows.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oatsisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upimg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roydon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reference.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jusbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3077.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/puntupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilenewspic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xvncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileServicesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/mbrtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egellanstraitof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxang_manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uniform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servu.asp/bbs/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghvvUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vubcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bjywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdPwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/r3gqcmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/managepwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patricia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/188.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/cmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_menu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persimmon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xzmtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pzmzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plastic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/cjmtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/onpjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/zwekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ibpdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pulley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/t3qrdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/temwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_browse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agree.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/vuxladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/htsxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/diay.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/pnrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loosely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gg1/images/wzgexx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wbqfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8bbs/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exactly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/italian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiseng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliyuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enquiry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erenity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/primary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upfile2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/view.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/existence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esteem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadbbs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/jugpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggressive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolenmts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/resjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/fifsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baoming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/pnkaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelaide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ling.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earhart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incinnati.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456789/123456789.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shishangmeirong/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katrina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/009121.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iagara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preclude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastings.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaopin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/const.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selftime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsmwmember/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclination.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfrancisco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemAdmin/AdminLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/slduadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/nksyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/muma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1429.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ccbxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/mxtbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/sexfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aernarvonshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pohquppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/zvyxtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bornagai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoarse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spirits.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blmh/o26ilook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoulder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merciful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esopotamia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seven.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scotty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rowland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stomach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/hacker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/applications/bboard/bboard_frames.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/week.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/sqmradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corpse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Media.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rupture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ewebeditor/Net/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threshold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hz@host!.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/vcevadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/cihkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/dzxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pocsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/lzvhconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decrease.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angde.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23fdao$fdsfd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jxxrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view.asp/bbs/view.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghieadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1513.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vlegupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ochiminhcity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkysUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/jswuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/results.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qbqjUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2k.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lmpcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/qoabtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wretched.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stream.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntebbe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/pxbhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/net/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/uxfhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/bpwuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ktsjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indication.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/controlmain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/zictadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=monyer&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/216709.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/mqjdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2613064.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conclusion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/erbjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/rxaqtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8z_shop_newshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/datashop).aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/pkjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drinking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pothupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_top.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0001000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454978.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vyfpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fund.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news3000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/w0uaservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwsqmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/mjdcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site/id/adminlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/jmnwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdigshell7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contract.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfilesave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ciiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pawjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edith.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/der.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/empxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rnxpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_server.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/glmwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/apnhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackboard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajtldigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torque.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/prlgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/tlkoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/dhfaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceoadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pv59upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insurance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilecases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excalibur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/data/%23ask_newasp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeyaadmin/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/istula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budget.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/bfwladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/webshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assassination.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26499.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/orfsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/rxzeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/upfilespecial1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3523168.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amplitude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bird.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yosemite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enthusiasm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uoagUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/cuhsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/zvoxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chitty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirteen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multitude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/cuvpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsType.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgjoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/uxbvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hae.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/fqgqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blaine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooperate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ihtfp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilelink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/upscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MSOffice/cltreq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ghnvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/uuymconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/tjheadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inferior.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_h.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dgcnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convince.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_dntb/uploadimg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c2jndiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/hotyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ryhdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uffalo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/uploadn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/gglradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteServer/Admin/commerce/foundation/driver.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/System/Userlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daisy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/single.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inde.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/dqcqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/woaini.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/nholadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunasalad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/lhuuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attractive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnhwwdata/cnhww.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refuge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/hkghadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vyewadmin/ewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iverpoollivcpul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/eoiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specifically.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assemble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enmarkstrait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alween.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqcome.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/hsakadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scholar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprehend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wholly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/uwbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wax.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysuser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hofstadter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SouthidcEditor/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkalov.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rootceo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuguo_liuxue/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/dxdptop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/sacsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/contents.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpbb/prefs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codename.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/gkyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/qugdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookupPass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/slujadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/kpasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contained.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_home.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/jbogadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nhtwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holyshit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/fqrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/buyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_img/fuck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/mh/View.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/m7fwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pomount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/c99.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600601.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/hccqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1iyydiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entralprovincesandbenar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/elmyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cycle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_php.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flatter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/prtpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolidge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l-blog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/mjxpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jproadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/zm_marry.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/siteconfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ew/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contradict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xbmvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rilanka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiweng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/1qp0digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/yibeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stronger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102218.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/okbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/hokeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/gdcnservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Include/setting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vindicate/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opposite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hehmUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aryland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ckjgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxmslogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/hifcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wtvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hoswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/cgxladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jejradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/downloadDb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8index1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/kpcsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drillpress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argument.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/gzrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjlkj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reboot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbvcxz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2224884.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shilling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingyitansuo/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osiris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jeheadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insertemotion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/nupxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/qitradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/wtbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ybjyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/oask.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elphi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/besides.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19444573.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spyrogyra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheresthebeef.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by_seven.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/m_bian/db/%23ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/swqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macintosh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodafternoon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merchandise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/njksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f5nhqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg/z9v8user_reg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_template.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incapable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flagg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nieper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/bpdiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/ftb.img.aspxttv.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/pndvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/wflpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlimited.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/vpixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gower.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/wyueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools/uploadn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wealthy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blessed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=CreateFolder&Type=Image&CurrentFolder=/mk.asp&NewFolderName=mk.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.asp?Type=all&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pyjamas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawnee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fvzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainframe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correspond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alicut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photosave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/astwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insult.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/fwbbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119900.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansfield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Return.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/xomiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g2c5shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/lwmeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/sckfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/xrtstop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fascinating.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/csupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/kdwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ktggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumulative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/jllvdigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/efebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/weexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/wbvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwphUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awe6digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indwardislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/simple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/x.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/late.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toxic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgiers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congocongokinshasa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/lcwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/pryyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/md.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bvpgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ohetadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/yojjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrdlu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/252xdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/lpjbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0319.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicaragua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abylon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/mvgladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experience.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjcx/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overflow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/fpadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show/back/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_UploadFile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/hvttadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/viscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/membership/inspiredtutorial/viewcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/zz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flaw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/him.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/dsgsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltyyadmin/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/gocyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pmyiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/tujradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prayers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordon88/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privilege.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/also.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaoyu_peixun/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ktujadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tovbUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/eehgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bear.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/cyuvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/kauoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ppxladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ajaxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login8.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/nucltop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135642.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23dat%23!@$a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negligible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zdoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ixmaconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguaria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/uglqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slipped.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/mfxwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/cyofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/yhwxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/lygofa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/municipal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23wrgkcnsmsj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psychology.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/hzroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gioxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/89wjdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jupiter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ygyhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/518517.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divorce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vob3digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsinfr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/Select_feedback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8wl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/system/databasemanager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/uzhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aza.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characters.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/da.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbvcx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshmeat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfactory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egyptian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ubbedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rmhbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bow5diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/xiviadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idiot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaumont.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poyqUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ejnaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lores.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222588.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/User_Reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jeezadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quiet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/endbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ughiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1990.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yfed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/cbsfAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pioneer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bmwjuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depression.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/kekradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/njkvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/410303.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/bmxradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/axngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opensaysme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/qlguadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earlake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/xwyjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eehqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umfriesandgalloway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overfjell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/jiyhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickskin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kjvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520428.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_shopxp/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byrd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8BoardSetting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/super.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/lqcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hncnhtml/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rqwyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_addsoft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yugoslaviaformeryugoslavia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bygnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wshtUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/dxkzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leader.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.asp/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aien.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gllfadmin_set.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/auriadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin/edit/lfaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/zwspadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lehi3b15.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pitsbergen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tourdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wsyiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heavily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olverhampton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/much.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/uhpzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crofts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embrace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/masingle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/lbqgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tired.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/bgoyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21400.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/dobbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/webeditor/udztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_batchlink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humorous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czechformerczechoslovakia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjuf1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jokeoe_data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/jkovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nfasuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/xyxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groups.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ylfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muadmin/Weblogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/fevfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lnebupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judicial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wulin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nursery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/360.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penetration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/england.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_copy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/jzstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/uptfAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ami.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pact.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/410891.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedcmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_OrderPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070270.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accumulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subdue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330203.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hytxadmin/webeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awkesbay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widespread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/owmyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/gsefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/team.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rchangel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/sjroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countryside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwanda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/client.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaufort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/socialist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book1/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/nwaiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kermit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/css.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/info.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/eqacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pastry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cswladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vapor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourneagain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleShow.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualities.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/contribution/constr_edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disclose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disabled.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yroltirol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadAttachment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/pxbradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cohan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jhyiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_news/z9v8upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/yqsgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/djg2digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/yomvwebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/sjzeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supposing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hsdyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplieradm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ims/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01026.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/lzvvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truefriend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/yamfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andungbandoeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0924.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/#ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/zfwhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seabreeze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/building.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/iwhradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punctual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordinary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/down_addsoft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/jgoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/169.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12343.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qfycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qhzcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/zwdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/496111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/fciqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/really.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aztecs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8commient.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_check.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vxbuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leddzeppelin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/contents.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doubtless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ztaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_file/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/825062.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/pytsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beetle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_dpo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sp5rdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sms/mail_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiladelphiafilcdelfic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwwoadmin/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56789668.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/phliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhphsu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drop dead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elementary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/jokradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/zhukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advsearch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxkrUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtool/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59124309.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narrative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northatlantictreatyorganizatio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wocvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjstat.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/inotadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wicked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/rnbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/nbesadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ktodadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reading.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cmgxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/wvzaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyywAdmin_Set.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/rrodadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/hvvdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminindex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/jjaxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/bvjdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hhdkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclusive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bimboe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imbabwe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easttimor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hroqsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awkward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcdn_news.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/grmgconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairyring.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/dklqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/nxjsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illegal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drastic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propagate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/release.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truelove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vizguppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smalltips.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wqwfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ireton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grantham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianghu/nopass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/san.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gygjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvyouchuxing/893.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capaflow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsewhere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/predominant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/xzjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/key.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enterprise/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/khrwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occupation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/\\\\index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fyttupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileCasesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scissors.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ljanadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/xiaoma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almerston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123zxcgogo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/zczmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quality.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ugwvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fgihmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/mjthadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaolu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sisters.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/twriadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stocking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publication.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/nsmzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/vodzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/215052.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot_dabase/%23tot_news.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ttsdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/yrkwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56327836.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/gamwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimistic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juvenile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdigshell8.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/zlihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/511103.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_setup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/falhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/z9v8isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4pckASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jvtoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/when.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ticket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_EditPass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/sabaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eijing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upfile1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbpoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/vyqbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools/uploadx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ssfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vjzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hovey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upload_c1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mountains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320503821101oob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/etztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtzatmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operational.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileCasesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli-cn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/cwiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbrvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/PopUp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/iwciadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/eoikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/qpuwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_js.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lawn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/hlkhtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/pmfqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andungbanduy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rtfbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnpuadmin/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/htoaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/might.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafeteria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regulation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magistrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58605860.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8postdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/1ndex.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/csgtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/hpqgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54741162.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tester_download.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handicap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ezlyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qllgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdrlwebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/nuesadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rbwhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/masingle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foobar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ohwrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edmund.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concede.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yalduppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminusermodule/adminuserlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ylmzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cripps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/Comment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/dedtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8card/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/obedadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fxfxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoemotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/separate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atangas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ad_edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eveline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/yjqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/hksladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/cxtvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sturdy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/always.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wxxladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/372228.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23kaegoo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lnhtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/machinery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ofxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lipinwanju/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/cdtoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsdunix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/WebEditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaplin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0b9css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paralyze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akaposhi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treasure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/dpqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/iwkcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/hpfeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/laugadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12366.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combustion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_server.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.aspx?Type=Image&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/kqyoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsoever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sociology.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addFile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/djrkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100094.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8cnnsc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reject.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anche.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/rqsjsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58108243.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/wnfvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersiangulf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2163.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaufort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/born.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fsgiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cqpoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/uiquAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/posture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uezisthmusof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lostpass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alignment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/gbkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/apnnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plaintruth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/htmledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/cshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qsoksave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaumont.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58745621.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23tyqiyechina.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/tykdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/237869.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wynladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caiji/123/6ting.com.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triangular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steamer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deviate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/cslfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LinkWebEdit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/californ.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthplatte.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/Reg/User_Reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqraaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echora.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/DataShop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoenicia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/amrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haynes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/clpvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrifty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1967.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/WebEditor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetici.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xpdfonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/yalnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coverage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndalusia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dawn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ngeuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millionaire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy/data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northeast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/bwpcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultraviolet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/maxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qtjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/uvnkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enghu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuttgart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userreg_setp2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moustache.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yellow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/boqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anffshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/rufmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delegate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/woaini.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/zhknadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ready.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mlugadmin/manage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_jsNews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahomey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ratislava.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/xpmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsalUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eweb/falkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ugiyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exkndigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1370192.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/zjwtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0305.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ghuzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mitjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1119.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbbjdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outdoors.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/gyzkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xyrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130313.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ghswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/nvrxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ermoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunther.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/write.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managesite/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrewd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/okrxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108164.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/np.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/qmnpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke/data/s8dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brutal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appearance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7quwupload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ading.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/njnnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/qcdn_news.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/kkufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/include/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/college/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/daopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/dhlaAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xewyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patience.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hzmbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/toxyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofszadmin/ewebeditor/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/erlxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eopoldville.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/byumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditornet/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uxx3tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordinarily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/development.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/mkxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xazfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/nmjxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8digshell7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23%23%23666$wjf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/mjjxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ykqxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/neweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/niouadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opened.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/cefxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0lboupfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0f07NewComment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enangyaung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/%23echuang%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/yomyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lburzmts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_image.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/bsedadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/gqkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/yfbvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1020.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onstantsa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t-shirt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managelogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upUserFace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/rshcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/z9v8upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/self.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tilt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adfile/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/sqlin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degrade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jello.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/kiiqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plunge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdrtool/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/yoahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jnvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ckgradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savecomment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counsel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23417.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/growth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/um.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superstage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/dlsnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amarkand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Admin_BatchLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/opxradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lskfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornelius.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/gpahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/zmcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitterness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whbaUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zwfqewebeditor/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ghcuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangjing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godwin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantastic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/chnuconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bravenewworld.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o0aqAdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangzhou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attendant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/system/admin_config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/pwkfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agdalen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everyday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commemorate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor_v280_Free/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56094492.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/s8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ehqiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/however.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/southidceditor/admin/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/jkkwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/%23vvskybbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5013.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200795.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4660503.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requisite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/rkjoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/query.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz520%23.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/c99.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contact.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/dasdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intricate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/type.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fl_Web.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obscene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organise.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/xdykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rights.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/oqwzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/use.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balcony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realistic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irvin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/named.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tool/uploadpic_more.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ttsnconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4497717.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impopo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/duqeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/gpdmcss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ebmdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othetop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guoqin07.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Southidceditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/mrokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/LinkWebEdit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/gjrhAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egypt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/fopzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/mcxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1303.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jbkaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bngxe/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crichton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spxg8.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpyaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weather.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qn3/nopass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telecast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twentieth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/hdteadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gift.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dbconnect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ividupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/tireadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/kzptadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/%23GBooK.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pmakadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikkim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/veckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56614293.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/nxfsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/s8plus_marry_db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0217.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpvcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/process.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wovedigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anri.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilenewspic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vxgradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/lbjcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/fpfqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ori.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ighland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makemyday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilemma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puppy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/gxgladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aican.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olcanoislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whistle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ndcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/nulaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likeness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3byaupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erbia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slovenia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stabilize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/ad_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%5FhKJH%40%24%5Fhgsd123%40%5F%24f.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/zgdtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wrtxcnqywz4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cztbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51492775.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell8.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/zbrzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/znqmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/mgufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reduced.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estelle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lgxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asshole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/379666.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/lyboadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uibyshevkuybyshev.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inaccessible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/container.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ithuania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkyronews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stubborn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bole/vklclook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/cqutadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qxgqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/qbepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ribbon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminis/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applaud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/adctest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppalachian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plausible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzbuwebedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/Add_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zpnhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rvbgeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nqvuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/093064.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9036qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunlakeof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/yrupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhelp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/tnviadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardiff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516441.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kilmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craigie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assault.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/pouqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/WoDig%232008.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survival.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/chklogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/uzhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ktvwupdate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oastrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yutthaya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/namely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trinidadandtobago.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/97owupfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ljcoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/cliradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0407.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/asp/connector.asp?Command=GetFoldersAndFiles&Type=File&CurrentFolder=/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mkirdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tremble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nypiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/userip.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blush.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/webeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4567.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/auwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss.cfg,ncl_items.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/kvtzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/principle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodyear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/msnbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8sjroha33.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eternity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gbruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/often.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lump.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8key.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/la.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/after.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/available.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_images.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyyrUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sdlnuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hfxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astlothian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus-pocus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precisely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/pjfjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xh_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/new1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ym.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/around.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ftehadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/emfwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leather.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ehehadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/mm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/%23wygkcnqywz4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northwest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wkykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqyhtml.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madagascar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleshow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ihkzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zoo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/hhqxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8haiyang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/azijadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erthyrtydfill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/display.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/jeqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arena.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makebread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jcxdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incFiles/load_gg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authorize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/lwgsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftList.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderadmin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secretary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sulphur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/gvlradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffith.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/themselves.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_upload2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dancer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/odhnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tenant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remaining.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awrence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/so.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigitte.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/zjvsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/france.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/hmtqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/155075.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inFile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compelled.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthwestterritories.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genuine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/lzmkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exploration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microsoft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vnmbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class/show.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/log_manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlanger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/668.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compartment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apura.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Huagong_Nengyuan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Image.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gongye_Zhipin/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/svdbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anruan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/admin/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/flkladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esmoines.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/fjtnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ih.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/rzbtupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illusion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trench.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1962.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fdnews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uebec.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/gseoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/zrjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/417857.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/vhqbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kovladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/boke/data/s8dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipttdv_dpo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fckeditor/editor/filemanager/browser/default/connectors/php/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stars.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disease.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/although.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fighting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopkin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/hbbzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/uploadx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badtimes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/f2ixupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xiaojian.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/316105.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xjzradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rp44update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everlasting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/jisxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminLogin1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.asp/bbs/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/lpmfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/tnjjupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powerful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/lcdoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzhijy/htdocs/db/fileupimg2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/bztcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register/UserReg_Step2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orwell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/dpmcAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3171536.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/01.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moosehead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilePartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/let.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/placed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/cfxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/oljradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bishop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albatross.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2912921.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mora.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hevladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/loginadministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/meuvconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/central.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diplomatic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/postinfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload22.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robotics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/uimfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ndwrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/fnlradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/txuradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company/admin/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogffeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftupupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/cceuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiety.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenville.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mdb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/focus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kwiuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx/kanxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrosion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iigata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edi/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcheck/aspcheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/zelvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/odeeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59361265.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload/Loading.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/s8conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upfile_article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/etcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pluto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBLog3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stamp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cdhgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeblesshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigtits.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treatment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/337258.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connectors.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vfbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refugee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/awboadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charcoal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pencil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fnaeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reiburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/pdswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3223283.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/gzwsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jyvsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaoshi_zhaosheng/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frances.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/sfqmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/qxgeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/Media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytfogmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2875.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/;lkasd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smokedham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whkcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remnant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password_search.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/y9i2digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asleep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gwosadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headache.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nujkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interaction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agliari.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expected.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ying.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs-data/2005&%%23sjk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deafen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewbrunswick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foremost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/const.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/hfetadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_message.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wpqiuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remarks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40502.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/sskgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constraint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warmweather.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8digshell4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peninsula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/bxgcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/package.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ndntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/will.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/hguradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provisions.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/admin/webeditor/zggkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engineer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geometry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dormitory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tractor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ktqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toggle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vjkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/mvbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/znjjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_Photo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileNewsPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fileupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/editer/z9v8selectpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my-login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ohczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happiness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ohxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftLink.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/util.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/body.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/kweuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mflpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/vqatadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndianapolis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/arntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login588.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/mzjvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onets.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tranquil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jtpouppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/aupkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu_aihao/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zjcjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nmnkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/skpbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/hdteadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thereof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f0ppupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fwxmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbdaadmin/ewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trousers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/234007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/tbobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3625238.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/havxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egucigalpa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otsdam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oubkal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=../../connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amusing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6qv4myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1121.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ktjuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5841321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_softinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4196108.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2r8idiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/wjayadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/xtsoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bzocUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news3000.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/sgxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileservices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm_marry.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/qutpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biology.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ijjsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amorphous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsystem/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/zoojadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiritusanctu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/zidiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udolflake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/zdnxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vmhyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_class.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123987.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ajzyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wfugadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0b9myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sai.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/irmtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/bompadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ushladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledzeppelin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/execute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/zfapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/sowbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bedroom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kslhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/sapeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbreviation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backadm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/xnaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/z.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqnndiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/userreg_setp2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_adpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gracie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dama.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/saveup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qhhgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23liaoxd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerberos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/lzczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8upfile_Other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/account.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkpatrickmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ining.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jtmmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absolute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/18023906.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grumble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/tcjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzzball.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/details.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/yvznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136b.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/db/%23ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/returned.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wardrobe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asaycmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasilia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Southidceditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_in.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/AdminMenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misfortune.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alloy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/mhvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/dfuyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turns.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/tkyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/mineadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/jkrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/mpzeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/world.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qaffadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsuper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commercial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/lwtbconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orbit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.html?Type=monyer&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/efxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promotion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/535232.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cxwvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/kfdnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uashan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abriz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/euvladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manege/Edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vlpyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/lyetupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8aspcheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/muwkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1ndex.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/jcvyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathryn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/dvboke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mxxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n1ysASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/be.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/version.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easygo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speciality.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/sfguadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comedy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/xflaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/fluwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inisterrecape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welcome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ibznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nwxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8commient.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waitress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f1xbregister/userreg_step2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/xkogadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/anavadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senegal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anube.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32767.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigtoe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/until.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/115cn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/002822.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot-asp-scan/scan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vesmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/react.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budhabi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsdfsdfsdgdfh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pamela.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altimore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doofus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/won.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/knowledge/membership/inspiredtutorial/viewcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/crydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qfooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmgkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rffhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/apmcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/nxfoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/uioyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innumerable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/grbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aristotle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtxinu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql/in_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persecute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/edavupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/iwxradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nocgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickens.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suffering.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suitable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/mvvqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136180.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erthshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3245064.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logina.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/joruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imbledon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/DB.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/fpqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justforthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longitude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/mm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ekdvgonggong/denglu/denglu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deteriorate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win98.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/gvnaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/rkfjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wehiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ucxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/saveupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/majesty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yours.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56148488.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweetness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112265.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileservices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turtle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/登陆.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swaziland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zwflupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dampier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/smmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slander.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsimage1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ratio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hxjvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9th.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8markc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ycspupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfiledown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lokdadminlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ad_edit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/training.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funeral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hy2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/cratadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/360.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lifetime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/knowledge/membership/inspiredtutorial/viewcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/lzrdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/dniladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/department_add.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accepted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebuke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dusk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/links%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flower.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180300.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/xfngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/rtkcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bgdpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwadmin/A_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8dbsoj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/tieladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/368223.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whtlUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a0p7digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/loginadministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/402313.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reclaim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uckland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rieste.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/sdcms_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/cumgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presents.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entirely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hxcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/fqboadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clemens.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/lwgeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morocco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/elosadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/champion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qiuying2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/still.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pswich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/njmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovwyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cbvvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/mbypadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6788.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gpxkUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornsey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/given.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sybil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rishrepubliceire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discriminate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vgkkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arithmetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fgzxsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l-blog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formerly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappeared.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsaca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ezgdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gofuckyourself.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4363770.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ubepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msterdamshipcanal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911sc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/tmdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/jaqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abolish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/kaliAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/paxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dp/route.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cracker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbuianmountains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bm/chkadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himbu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermuda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threaten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/gcymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/noefupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g3ssdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udrlonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appleii.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zores.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hvykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovjpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileServices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/losing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/activate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/factory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vngoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plaster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qbcvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/pxqlconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/upnwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/iltfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilepartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ztohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PicLoad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irginia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovaniemi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gymnasium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irjodigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/vcfwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mjkcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetim.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a0p7digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluminum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/s8upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nfadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tramp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qwrfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/border.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/lfhkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfilem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/dm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuzoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haste.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rcwcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/zltsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txsuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ewebedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hgkgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovynsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/snozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/changeadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becoming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/srdiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronoun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myalibabainfo/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nknyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/hlqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/pbadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makinglove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/pfykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/BoardSetting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellesley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2628.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barometer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/hfqsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uadalupemountains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laobing.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burbage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cz_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/evvhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unusual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relieved.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/hmyfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerospace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/gqrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tewartisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/pvquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jrjradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8dv_dpo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/598.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/smqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/deojadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vvltadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlaw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vwlqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/bffradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuegongjin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/dpwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other/2007_jh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonetheless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/jaquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dancing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aweng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/hwutadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skilled.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aici.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lnacupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gjfxuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scamper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hmtleditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewdelhinjudeli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/visladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/022188.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1179.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/aspx/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbartonshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/webedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/bqxradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flush.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therefore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reasons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/umanupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhdqUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/inpgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discrepancy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bullshit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atagonia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/cbyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uva.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owwmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/eixsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bm/chkadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iege.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54a2zz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/d8p7admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ho.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/tqktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hwvrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/fctaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6171.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mddnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/qqsvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlpanel.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blmh/e44blook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/eusnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkqhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ofthupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ickes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/no22.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ewebedit/gbuhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/fonwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jrwpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jkxoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8zt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluctuation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refreshment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/coqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ld.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1354051206.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196912.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414812.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/flddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zdniadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23liaoxd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natural.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/podjsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/went.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elicon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/005500.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeoksave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unique.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8user_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/freoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apologize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rymfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/wodig%232008.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/UploadX.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wholesome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blmhdata/qqfdlook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/clfuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3333.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/jqizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simultaneous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chamberlain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/yvfvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vtepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jjhsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qukdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erroneous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhengtu/kanxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hannelislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ucnoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolved.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewhampshise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offensive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/332580.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfxm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sympathize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickcock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/44.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/hkwdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bully.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/saveup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ungay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/leybadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus pocus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugwkupfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/Net/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingstown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvaeUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anruo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biography.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ballet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssh3digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujiyama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/kcywupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxsrsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feiaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5678.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nita.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/upzzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derivation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncahuasi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accuse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ib.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ogxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rxjh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/fhdradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ijiqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/zhueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugusta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhhack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddwUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavatory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/tpdzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aloud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/448448.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/uxwtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stat/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/cfxhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cqosupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poisonous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wddpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwerty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systematically.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy/kl6jlook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbpwmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlanticthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/nxcqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jnggupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkraaccra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysHelp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/in.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Commend.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackolantern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asherbrum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inchuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gdknupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prepare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bearing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/sedmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weakness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bgevadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arseilles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/mc86admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthamptonshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hairball.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/wrtxcnshop2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqpets.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davenport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftCateMenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/tcbbs7.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ftkfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/336888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/wommadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scension.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invinoveritas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwtpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otherwise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briggs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabrication.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standpoint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a%5c.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ppvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mdekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201307.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/mtoxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/byupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/db007.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ggilconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arwickshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13701790600.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweatshop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/dcpxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/grriupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vrpiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eisse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/majority.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/yhgdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wisdom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/joxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ycfnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excursion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/cudyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitchcock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserJoin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/lcoaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extract.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sakacusakc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mayor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/yes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uvalu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dallas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wdhradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/vtetadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell1.asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/cxycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/clrlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/kfvpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iscaybayof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sqjcuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angliao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/qwstuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppvyUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celtics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmsworth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/xftfconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/YxBBs.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=../&Connector=connectors/php/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airokaicrcu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/hazyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wjqmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/tiwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/over.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/nrgeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atumi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/145513402.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/tpzgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codea.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imply.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthsea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520530.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saddle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441206.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/super.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5995563.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/de.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/smuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intelligence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/number1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/fsfladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citjUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiladelphia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/questionable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toofewebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/and.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/onmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilecases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anterbury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileServicesType.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/skysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp99cms.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgofficer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteserver/publishing/viewcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prediction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttmdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19591119.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530730.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleared.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/spyguppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requires.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0831.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wxqhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shining.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innocence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/517688.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clatter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5u3qdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/xggkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/zdfuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazxotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/sveuAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/el.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/twtiuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/28.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supreme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/hmcradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateUser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/fjzxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savecomment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/cdzdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/61131897.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mybjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yzyiuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/drnoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveUpFile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/vko5servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realization.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brazier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borrow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserJoin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/puaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_sysdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/fljvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/kzhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/random.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51514.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chestnut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telescope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasnovodsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/216101.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaf4myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minsky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swept.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/1ndex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/bqxpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/cfqxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm/flash/admin/flash_images_2_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bathe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/safsd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rontrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog31.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elgium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lympicpeninsula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defoe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslogi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/fktmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jqidupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugoslaviajugoslavia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/oaidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InCode/JM_Play.ASP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136128.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xtlpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ytrcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ywbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hege.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prelude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecuador.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/nfhhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/qjahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofrzEditor/assetmanager/assetmanager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discreet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cmywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hkpsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/iyubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/szybuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/wvvvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/axliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crashcourse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ikreadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydinadmin/ewebeditor/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/picup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beheld.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transplant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wndnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/tckptop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/dyweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/admin/style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noisy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/vomuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Photo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123y45.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preferred.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanzania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/dbzjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calorie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illuminate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/fvzzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/snwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathleen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/evvsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monopoly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ijwkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dbcc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1st.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/152228.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dumaurier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/gtdyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthernterritory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/hprladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wvdiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tammy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fret.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/DataShop).aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/cjwaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5814.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suncion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/073019780730.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jjrrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/kvl8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/que.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zenerdiode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/chkadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adzhikistantajikistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refinery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantasy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postpone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dipstick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smhththt/manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/scripts/openvendor/gnete/retrievepnbody.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betsie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/31415926.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eweb/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/alwtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complicated.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r5nrdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/webedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/z9v8fadmy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ojkladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wg97upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/@dmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/%23qt%23.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gulf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/rbswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/izmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/gecuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/various.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harbor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/imiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ykydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/yhhiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/sitpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/successor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/569344.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/skwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/srryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/tlnoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/jgysconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rufkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/spasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/associate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbzqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orinth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/ad_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/88.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alladolid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slightest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/306840.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thousands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/link.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qivgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/lqjvtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruthless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atarqatar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/qwvaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13012817123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0910.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ipsoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/xqngupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/vcqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yodude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8scan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photograph.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restrain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/fqvradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zimmerman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ssofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idurutalagala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/oaykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/gbgladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ServerInfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/kzuzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highlight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/frwcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdigshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publicity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ueqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atterhorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/cnghadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yellowstone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gdtcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/rlscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/aaokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/positive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/tfiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webeditor/admin/iybflogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/777.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Datas/datas.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dioxide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuisance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ristiansand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaxy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/hcryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indjain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/lhjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/lsyaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1380195.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99.ASP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acknowledge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vvueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modelsearch/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm.asp/bbs/zm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/dbtsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wfppadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hutchins.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smiling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteserver/main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porsche914.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breaking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blueline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/srdpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfgh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htlmeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/假地址.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/AdminLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/usergroup_0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/value.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3243067.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product/manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wparadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/tcncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anilamcnilc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspadmin_a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/season.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiva.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadpic.aspx?actiontype=mod&picname=miao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/uofoAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcheckform.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forehead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voyage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/remnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suburb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/kaiyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/eziqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koreanorth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ecimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/principally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siege.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/primarily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qrdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Upload_Dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aterford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/tqnvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drunk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/individual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/iouqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/bbkqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lhqpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/december.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Default_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tami.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/xpzhtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPXspy2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abortion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvxznew/editor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zvbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpinfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/qsbg569853.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eduadmin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1031.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320219780905777.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dbhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acct/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/roanadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ubbeditor/ubbeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/methwick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/siyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yler.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/america.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/gcsiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technique.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/io.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrub.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAdmin/ManageLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3901698.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/#sy#wgh2008#.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/search/viewcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfile/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eweb/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/uvtmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superuser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anduo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/no22.asp/bbs/no22.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/yayhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bodies.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/hiwebad/Le.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/editor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/infosearch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urban.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/uzjyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog31.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perceive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/myupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorkmid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/41x6digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aita.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lpybUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dnx1digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin/admininput.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8899.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/idvgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accompanied.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vlsi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/zbemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/zmczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/qmoradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/fuckyou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instinct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminqiqi/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/yiszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/index_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/aflnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preview.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surroundings.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pardonint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ybezadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/MeCMS_data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/wpzhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ycaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/upjqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/gwluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8l2digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ccgtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/oeufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mior123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/jcxpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13001270033.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vjojadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmibonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lately.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/dslvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatsmokymountains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/haigadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fsreupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/bplfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relieve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/datashop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ckxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sossina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aining.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadphoto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/periodic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bella.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spirit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/vwuhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/yinhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilecases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/wdydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/cnnzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/jayaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/lhmuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fbowadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/espos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/tqwdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin/WebEditor/vslnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/eewhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/bumuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jcseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mamma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rovidence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password_search.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/get_your_passport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mvnaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/envladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ocdtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/qapeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/odelupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileServices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wynedd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/nyaladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/via.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlingr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aharathe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/took.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encrypt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tfqwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gvahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zmucadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unreasonable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_body.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonkers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vmcuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treasurer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/452091.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constitute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkaratau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8haha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uruguay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ijnhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/021177.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3o58diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/fuhhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/nekiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarlet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/3044.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persuasion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bumbling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/select_feedback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/corgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palestine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51777.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/energize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uavwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpanel.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rhhykey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/hpzsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/being.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/dlyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/manage/editor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gellup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chopsticks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/emoeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furniture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampuchea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/period.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/pdobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/kvemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vgxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persona.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destroyed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/uzvoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.asp/bbs/help.asp/admin/help.asp/mdb/help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/rjycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/btmhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beautiful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtppupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/time.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mywebshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comfort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/china.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8frrytuiidf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/szgbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waziland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/xjcdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/17409.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/db007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coleman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treaty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symbol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?Type=file&Connector=connectors/asp/connector.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/kgliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_jy1001/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_blog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cereal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/pvraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/479280.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0cmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/11.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconn_logo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileBanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alva.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roundabout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ubgoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database/%23tourdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/rjpmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/bgjuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/amcqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/changepasswd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfiledd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileServices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_webmaster.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upstill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garlic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hdemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/ad_edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/bwwladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/arvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ouzkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vklladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savelogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwxkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yns_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marshal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alestine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wangba_Lianmeng/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/hleoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/pxtwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/gajpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classroom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_password.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/columbus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/qaxoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convenience.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/cqgitop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arawak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/zalmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/kfdkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/xmyyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indeed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ.txt/QQ.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/o8v5upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1030.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/established.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/urpwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgebsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122333.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipuser_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/caodadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileCases.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mcuqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bragg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delaide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blmhdata/2opolook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/115cn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedhead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aneng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/lcuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/bkdkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/user_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatnot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hengdu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deborah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/aspx/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemfive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/kjcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/haeuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strangely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ttmdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elebes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/lfajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eclipse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkhiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nagel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4077mash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Select_feedback.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiy7upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nk55NewComment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_login_easysite.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clwiUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unilise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/418124.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/385510.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharply.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rayspeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/aadoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mt.xinu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slowly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uffolk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/vxacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/umbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/mnexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ksluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/hazsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dubious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connstr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pwldadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/nkgsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orayshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/8xjnlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200081.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/qhfqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangsha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onriver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxrzUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_password.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escadores.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronunciation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/xtlmtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/z9v8isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndorralavella.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geometrical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/qxxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lipstick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21211417.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/pvifadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/plmqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ycjnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/memmng/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8tmdqq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discrete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/isapi/srch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up_images.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/french.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/tfkhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xbqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/zhqbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ckahconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/dbrcAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/kjucadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/hoxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vewvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/tawbAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up_images.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wild.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illiterate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/sdbbs.ful.cn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interval.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/008.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/cshaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration/login_form_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_feng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xcusupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzanne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminname.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xsuyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybbssaveup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/dnoyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variety.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/uyciadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/hkxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwertyui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figures.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/nziyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dufferin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/living.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/action.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj9tcmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread-84-1-1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/gpugadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netlinks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qgvhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/sxzzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wmtytmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inversely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gathering.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/srziadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/syslogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpaul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/oundadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfaceok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/oepzuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philosophy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utchharbor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philosopher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_getpass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/elogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/album.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/eWebEditorNet/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rleans.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Webedit/admin_default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auritius.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lovvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gjusadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difficulty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/A_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/bwoxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/lbhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell8.asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/dwhdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileupimg2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/clqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquired.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/screw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/llubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chocolate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/msmvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgfhgfhgfhgf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongaislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nurture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/found.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shop_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcxt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errkwebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaviv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/gvjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/uvauadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/DB.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ytzhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datashop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0427.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/positively.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hench.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/hvspadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/txqpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot-asp-scan/scan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/connectors/aspx/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmaata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honuor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/socrates.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke_wangzhai/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/qyvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ecupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebManage/module/eWebEditor/eWebEditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaucer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilelink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp5tdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1361185.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/zeusadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talinsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taylor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/uezpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zqwtuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/data/ask_newasp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/vjlgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automobile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bromfield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chesterton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/pvmladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/love.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjly.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consecutive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/yuugadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preference.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretext.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/jipdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewFucker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/335908.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/follower.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wesdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/dwloadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underwear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/wqbuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/edit/pznpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ziytadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/jvcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newyork.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3151815.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webexternal/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_right.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/jrcydigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/tauladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/uciwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limits.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/residential.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dok2shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/bwobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51098.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ssuydigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dvpost_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5310057.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adams.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/updateuserdesc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlog_db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Admin_SoftInfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/gjwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/xlkkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpgroupware/inc/phpgwapi/phpgw.inc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/s8upfilespecial1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ggimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fierce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ngcjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diamond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/knowledge/membership/inspired/viewcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wjleft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bngwUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orfolk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xbjhUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Wdit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wjriadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/sziqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ygooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/czbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modernise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/E_Mail.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/mhrhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jesuschrist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/evxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ttdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/557722.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ibcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/zcokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overlook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_productpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geography.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/fctbconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jxkmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor/editor/filemanager/browser/default/browser.aspx?type=all&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/pjqpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/news.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/aspfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lennyash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqqodigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invention.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600707.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lbscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m1pidigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/Pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.php?Type=Image&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/swncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/required.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/oxtcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/orydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pufnadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluchistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocerdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/xlxwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xrikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_upload_image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySql.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/hhhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/srusadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbhkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_updatesoftnum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ava.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/isreupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/nfzwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glyn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/wrpgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvfysave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/jpogadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vestotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wharf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/caonima.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UploadImage3_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/mfzeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/qxdsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/lgmbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shownews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/161616.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadlist.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsingtao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/l2hqdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yc9vupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maiden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/productshow/product_manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kfuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pwwkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deluge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anything.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garbage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001923.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accommodation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/enskadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qkahmanage/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alkansthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/lzmlconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galbraith.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocosislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ohdkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136019.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forsythe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitchin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/031079.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/construct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/bkxmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/gkszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/sxctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/bvdnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/jiuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evonisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/editor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007Admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/rwczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idealism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lyeladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lancapeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0127.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/admin/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bkotadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3726.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/small.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germ.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herself.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile-flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estimate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/significant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/eirwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftList_All.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cvkuwebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apartment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_BookPicPro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/ynu3shop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/lmkjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/151564.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weyywebedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sdb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halesbayof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qonladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/showfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rigorous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/uzjdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/vymladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcdvb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dividend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/bwafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0565.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/edituser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remantle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/egptadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8lxg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/sqcgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/inhbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/enofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jdxtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baoming.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/503029.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tennis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aricutin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/wvoradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shitforbrains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardinia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gftdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/View.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resistant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/cxynadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs_save_add.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aratov.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_articla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker_clown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withstand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoyt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/ad_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/wwpfconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qayaeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/eWebEditor/asp/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/vjcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defeat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/fwstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cluster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tdpladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learned.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slumber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mima.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/buaoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interleaf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfiledown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223349.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jnqndigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/super.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/Admin_Database.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diplomacy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/etgvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/wjbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virginia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/setpwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/fpuzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elanopeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/veukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustralasia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wholesale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/kkicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/288126.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdraelonplainof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23fdao$fdsfd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vv.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foundation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/icmuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/zgqsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doyle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_addsoft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8newup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guyana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calcium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alagasyrepublic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/juyyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuslUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabasave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/loohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/34.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hege.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxburghshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umfriesshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbvc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58917702.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epstein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/psnjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1101.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compensation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiwoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igyhUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wjckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illiton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Foosun/Admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dpqiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxmoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/memmng/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mgpcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/iiuuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/zfcqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0443.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/krdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/cvkyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wmgj/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/z9v8upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/yshuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carried.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiza.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/bophadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login_lg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/wgdkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vlzvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hauddoc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/spfbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/iozkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/gifeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/predict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/USERok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ctteadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/jrnoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/religious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/udmoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23gbook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8plus/infosearch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/stzzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilecasestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mt27diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/lwaeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explosion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stump.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/buvgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impatient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/czcpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/or.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/zprmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/pnwradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/iquoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precision.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortonsound.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senseless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andadevi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/zidwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penalty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clubconfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ebcaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/hedaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ej.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/hello.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/large.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/eghpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kfzwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etaoinshrdlu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hgbpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boiler.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hikoku.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/dztwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mestupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gjeradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ehranteheran.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cultivate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opendir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iforget.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ihoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgfpupload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/317513.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/executive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/har.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/570914.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash/downfile.asp?url=jackie/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntarctica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nofun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsauupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/gfjmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vbwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sometime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/japan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xzocupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2525.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/krwsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/admin_6list.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vzkeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/lrsfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bingo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/rcxxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zofxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/yroaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scientist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rvisadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confused.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/lbbs%23dfllds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/yblzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2829.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/iswkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxly.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgrdmanage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vision.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/crmqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suppress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/nrjqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onshu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/zsvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/rcugadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icksburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tockport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fqbyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhdadmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solidarity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/making.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/gscsconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/editmember.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/head.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/moeradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8xiaoma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600305.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/hbtmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atkins.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/bksgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102125.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8vt2digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chainsaw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/z.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/dkvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dtbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/like.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modelsearch/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mem/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ianjin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hradmin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/vypradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enoch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/cmxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ollywood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx/mibaoaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/zptkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/peogadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ez.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crowd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comfortable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/testno404page.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/buadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ewebeditor/net/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/azatadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/croker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/advsearch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ali.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/eWebEditor/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/addlb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/hkyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lunar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fkufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackdos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmp/admin/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thkzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rvaiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acaomacau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/walhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chambers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/124303.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/606179.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/jrbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udbpwebedit/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ezjpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deposition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/zeyeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oninislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berkeley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/15228.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8commient.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/msfbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_usersetting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2idrkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/nwzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waisheng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hierarchy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12240205.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/mauradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conn_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offspring.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criticism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/rucyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/Connections.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/User_Article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ndgxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0610.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/card/tu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3619.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fileupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xhqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/登陆.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/tujcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/maqxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/5026myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ehafdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fargone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/gnktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violinist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macsyma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/sefzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/zojkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/afewadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InsertEmotion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manege/htmledit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ozone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/udqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolkein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/mjsnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_getpassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquaintance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erfre.asp/bbs/erfre.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/brfradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mall/Index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/faucadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_sysdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clockwise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downstairs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmcladmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/zcbfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldcuts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBlog2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/anrbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8upfile_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji_tongxing/Wap_Wangzhi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/hpeyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enfrewshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pujqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vo_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SiteConfig.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gjzmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feature.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1949.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/ma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xygzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilebanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possibility.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berdeen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wctxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cythia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ulyjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/uflsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shalt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ybuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2355603.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ijpwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8halp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/healthy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angduo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ensng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gzysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webmaster.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xowyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/liiyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yingjian_Zixun/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arianaislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrgoodbar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/emipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it'sajoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/hkztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/head.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/515376.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insert.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/xuaiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugsbunny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accept.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/buytadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/433.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/household.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_new.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34567.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/evnbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unpbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/zepqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initiative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/vjopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/next.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEdit/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ruqbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nwykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Database.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdadmin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ussex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/di9rUser_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/iidwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjasd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/aspshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/fnficonnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/bbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/deznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Subsitemanage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/dpcpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/jzafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/insenz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vehduppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prince.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xevzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exotic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/uwlmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3687.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anasanaa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crucial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Message.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consts.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor/editor/filemanager/browser/default/browser.html?type=all&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/WebEdit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1357.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/zcjvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sailor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appoen.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jscuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/3uasdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtually.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qqmima.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotpage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130125.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/rjmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/cmegadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/wqumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dial-in.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pxzuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weeny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/dbcc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waste.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginerror.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ctqvhtmledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torpedo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/whmcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iongwe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eychellesthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_Ctrl/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/mjmhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Images_Save.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ziogconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebykup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iangxi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appropriate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/444444.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/zhjqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/eydcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/shell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/olkeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crooked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/kebkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modification.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glduUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/eerzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/cvphadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easycome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/voweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mhukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilenews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autonomous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assumed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/azycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/md5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ywwjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Up1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/onjiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ubbedit/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/nhoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inevitable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/qeumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yogibear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increased.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEdit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadadpic/root.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/burgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310113.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reckon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compensate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eru.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsys.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dairy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biddle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/vdyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trombone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fd0vdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zblvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibbon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csc412.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barfing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wnjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilebanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/84.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/uqeyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_visual_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paradox.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0b9servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlkaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/cnn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wfhladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awalpindi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsqpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/dmupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/rgkuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/renyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ywskadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/kmmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volleyball.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ezspadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contribute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/such.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/lrxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4623384.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234567890.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlconf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqing_jiaoyou/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lgwhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/nznkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/sjjcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/cenfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/tmqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/cervadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/z9v8upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vwliUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/新建+文本文档.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powertool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8QQcjb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/phbwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/giukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/vuxlconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocantins.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reaction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/gturadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dundas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosemary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fields.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200094.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploaddd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ftb/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aghdad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vacjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipxudigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/37324601.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilepartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presentation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limited.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinxingbaoxian/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Image.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/qaepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ldxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lygofa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolescent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/webeditor/admin/xphhlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ddfs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rmygadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/sxcradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueenmaudmountains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jsxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/search.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/liubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminss/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/escape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/noigupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/sxqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ompzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/prooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/azkuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/sbwjconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/Const.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vksfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/xnxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tockholm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemistry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/qhmauppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fssdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiyu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/tbjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epidemic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suffice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asfq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arsawwoso.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heavens.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/small.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/joetadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contemplate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yrmcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alias.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aran.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pressing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchenjunga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ipqvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8adminshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/318295.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vuwyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orxpsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ykkmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/xtngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/leieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin/admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9bmrtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nod.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_upfile2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_jsSearch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ozrdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabinboy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hpkbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ywwwuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/kjkkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/kknaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supposed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8xiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aineng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/pszgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_fileup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/LoginAdministrator.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scanshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/captive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabulous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/xjrqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gresham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/luqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whether.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/tlknadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/date.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/gxasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marxist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lord.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19577.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/bteuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/rzyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Huagong_Nengyuan/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stride.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/jwpvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alpha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerbin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaryislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/zhucadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mission.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rje.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ojmfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/gxofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birrell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usercenter/register.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/uxmtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unicos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clapham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xieuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/rkhsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/bygfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/qkjwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qeoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lborus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sound.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/sctaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minister.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frobisher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diverse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/rkdxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glamour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6207.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20731.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/bbonadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/nd8xuserreg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qkqgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dropped.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manag_onlinedb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astrid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anceng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/anqbconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ouzhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/tlhbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/tjuiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/naiwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rvgjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ibbkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit1/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/search.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wife.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/htnhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaverbrook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prominent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wisgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clifford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anumber1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occurrence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exicocity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/hcasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquainted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/z9v8User_Reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domestic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/%23wygkcnqywz4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/hqqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/mcovupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witzerland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essential.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/showfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baystate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bvjeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonita.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OaLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/on.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Up2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrianna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/iycsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yhuyuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ytmnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_master.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ycpladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappointing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsequently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/bmfwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/433263.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serv-u.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latterycape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iii.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/qfmuconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kajqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anarkshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/clpsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prophet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hicagoikagcu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angtok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFace.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq号和密码.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wehqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/xizgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasawaraislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/dmyeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disagreement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/nggjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/nrfyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cork.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2013142.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/fzheadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600902.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile_asp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imbroglio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ddcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SiteConfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smiles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experimental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/lawnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/rtdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathematics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/nksradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aborone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dedrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgqmbbs/ewebeditor/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uptohere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1210.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/towel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/iayiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/big.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ujxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enclose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanccape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1028.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/system/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/nzvpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jeolupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onstantine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/595832.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analytic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behaviour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iberia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/establish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epoch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/084313.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/battle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kwgoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/efthadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mneoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/mpemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/025603.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333355.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rnvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23database%23.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qmtbadmin/edit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/yfcoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzyy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spurn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kwfwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hero.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/pspiconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/dkmhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convenient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/hbipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520616.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/hhqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/railroad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hutan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpage/upfile/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserModify.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mtdladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration/system/Upload_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e70oconn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avenue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1558.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/cugbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upload_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/202775.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqpost.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbztupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/establishment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/obsmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/boohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/adctest.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bosniaandherzegovina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadyside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/five.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/izzpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lithuania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microscopic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcbcUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrryupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_in.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/pfkfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whichever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smanager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tassfurt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1227.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/lygofa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102030.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meatwagon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftb.imagegallery1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifteen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ytmnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discipline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ljuqUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/machine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/showcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1872.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/vgunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rizaba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/og.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqpet.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foreign.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/shangchuan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logout.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modipass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/fwizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/rormadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aquan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/pxfcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/control/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/jfisadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/vwbmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/eWebEditor/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/103927.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frontpage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/home.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upLoad_c1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/itfjcss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/yrwpAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjustable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/sbdnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/room.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rwhdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kzohup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qfniUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dkoeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6055.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/DataShop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/yswyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/vthnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diversion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hmsgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lozbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/unzoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currency.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/gnzfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hibernia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/wblsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tacforo/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celebrated.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peripheral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/hijptop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/independence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berdeenshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/187668.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hpbcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erionethshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conceal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/pafoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/aolhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/zwbdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wxhjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News/WebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somewhere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodtimes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/wrtxcnshop2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/satoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fuck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/372153.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degrees.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12531253.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/band.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trifle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/nuckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23tyqiye.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ywctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsy-bitsy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/331807.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/db/ewebeditor1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/sztwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aritimeterritory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/%23%23cyweb_cn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cissy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/lmeoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/390000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urgent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/enbfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ormoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/us.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/567891234.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/37.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superior.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilebanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/uvecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/xveyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/qpopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3534119.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fysdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/gvszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fender.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/vpwmconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/despise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/institution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/gwyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excessive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_jy1001/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heartbreak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idiom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gojumpinalake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makelove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/len.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/pzuzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nlteUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luxury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uncle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadF.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amako.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sustain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deaf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickenson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orsetshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabba-dabba-doo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fruitful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_zgtea_art/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bring.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8cmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jjhtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edpzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/vztkAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Admin_Admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ckfeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/zbxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?type=monyer&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/your.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/bdnaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_link.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/cgckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/tazyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatbearlake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/connectors/aspx/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/vwmeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rarely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/em.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manages.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rehearsal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dawson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umberland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/vjquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/jimeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ns.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commient.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/component.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpv_admin/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adm_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cottage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/ci8qupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bets.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabiandesert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/drsiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/high.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/qavmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gwdoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23db1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrtxcnqywz4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fulton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/idtkconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/fshhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/while.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laugh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transcend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10th.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go jump in a lake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/urrqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stared.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/kytladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/loginx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wgcbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/4dm1update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22904600.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/kdfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wedge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DatabaseManager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shatter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xmueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wudradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualification.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6crwdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up/upfile_ok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fvdnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/encbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UploadX.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shtyo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/zfsvAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/syslogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilebanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowlife.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/swqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/umofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/zziasetting1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/yemzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/601001.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/twxrconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cigaret.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/z9v8link_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/tbpbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surpass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladstone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/smeradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Filemap.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superintendent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadmana.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3047357.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tratforduponavon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/smqfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/omnqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embassy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakdown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemanage/Manage_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/adnqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/byafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/dfcgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/466.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldcoast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zechoslovakia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pjndadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yue.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/bvgjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dgwhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hynqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/qujpservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58138281.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/upload/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/zkdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pkpdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batcave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/__vti_inf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hpusupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1963210.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dbpath.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/inc/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhostlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwroot/s81.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/tkswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpobcmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardiganshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516329.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/uwygAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ugcfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs6.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/cdkhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/g15ldiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongolia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisstart.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ercedario.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.aspx?type=../&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probability.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bfuzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messenger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/zsejadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underground.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyqiye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afternoon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5722257.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uazgotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/get_your_passportx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/xk1dwebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condoms.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/bndzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_img/2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58109747.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southafrica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Images/config_inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atnajokull.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/570207.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/tdyhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crazy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arranquilla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/yfpysave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/rdhzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8uploadpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krista.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectrum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/dxbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jhkbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icecream.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5373575.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/dbsj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afraid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gentleman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/yqqcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hckwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qfhqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ddjpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/461461.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/jzswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ouzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opinion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shujuku/movie.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/irwsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/httkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pzjxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsequent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jrpjcmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_bak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileservices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/dxgaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confident.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gucci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dtest.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/wzwradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/hfiiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capeverde.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpeg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eweb/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/pbksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hofman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/cofhsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinvsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rastaman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/562532.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/rtjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c99.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/mnktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biscuit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antiguaandbarbuda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiply.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/odgladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/same.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmzzUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrangement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/university.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_list.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anza.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heather.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alveston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6119268.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4tdqup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vtdiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwzx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hypothesis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abstract.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/437351.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugenia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wqmwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/nrohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32167.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_adpia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marsh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/uqkvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234qwer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sardine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/goltadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/wzvladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/cwahupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ixghadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/etyoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/euyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longrest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/zvixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123abc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot_dabase/#tot_news.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/qzqpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/hldiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obligation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggestion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fossil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/potsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_return.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qfciadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_new_ad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/mkisadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bidjan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/questionnaire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fdhdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/migrant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dbsoj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incompatible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6023500.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/vwmaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52982121.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fueaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Heike_Anquan/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/vsogadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lieutenant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/enlbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3776.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilometer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilemanage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/yjsqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/qftjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3015.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SK_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/segmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nekwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonzo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ee-cs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wfgrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/92vrmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackhills.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qlqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alkan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmd.asp/bbs/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powereasy4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qryunew/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsing tao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/gyequpfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1dppdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friend/card/tu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applause.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cki0update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/455934.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exicocitymeksikcusiti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foobaz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47rfmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spdmUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manufacturer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongkonghongkong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/water.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiteng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unjabpanjab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esotho.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/humiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111999.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000102.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56413818.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vasant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hidden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuclear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/know.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/lzbtconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/nmnvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftList_Cate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/258.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/AdminLoginx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebrws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ackerman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mellon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/aqytadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jixian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vwxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breathing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emyuser_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/upifadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerald.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haiti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclined.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueenalexandrarange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/87d6diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23wygkcnqywz4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxakdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rrvvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewjersey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frightful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxhack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/glxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youreok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin/editor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0420.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/lfsbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oj1sup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taste.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woyaoponi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hhytupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/aygdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ruhxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/qdavconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jutdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfiletemp_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhglamorgan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eucbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mima.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520066.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8admin/upload_file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/southidceditor/popup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ngcnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cdr5shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msterdam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akhalin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commitment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/isyeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abylonia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/116xy518.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heaviside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrueupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/kposadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/mvvaconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nakamichi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/density.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223005.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/xkouadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qdgvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emergency.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/yvfoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfiletemp_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/beccupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letmein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fighter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/owhgtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wl34ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3kj4AdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lengthen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yswwonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/llxtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepspace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh120/kanxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/yhngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mvrgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/config_inc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offset.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/represent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/mdtxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login_ok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/Edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/week99.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sample.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ywinadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modesty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/bogdconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perpetual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tclsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notrespass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hyqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/481612.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/kfvouploadPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refzsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/najeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courteous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nurse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/80.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/bhipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ruqydiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/fogwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/dpwmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jcwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ipjuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/otphAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/zz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/iycgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psomandewell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8check.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/lgcgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taught.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxoxUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnpdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42bsd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ocpwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guowai_wangzhan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/inxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyuan_gaoxiao/1322.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ptetupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mhmh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/oomladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydxzdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneeze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menghuan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tot_news.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/248padmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/fopfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wvfbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lsoaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/qqcwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/fpttadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coatimundi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodeisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/548897735704.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/humpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdidScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinxi/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ktsxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onwards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asapupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/election.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/xjyhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bentham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/bpqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/children.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/osyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tempt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnns/cnns.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirror.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ucydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ldcuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provocative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circuit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/fjqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/nwtcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/whsradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microscope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnonwebedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skyj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alsall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/tytxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/504503.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydroxyl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/bhpsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disposed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/oejeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/agkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liquid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataShop).asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/utsxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/gooiconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/phpspy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/mirdat.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natasha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longhair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_menu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_h.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checklogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickhead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reserve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diesel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wicgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastlane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/example.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/29401.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5ki5ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niming1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connection.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadmin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/gpiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earnestly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/57631018.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csc298.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolgirl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipljUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/eiwradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5kmkupload_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nccrUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refund.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/vpkjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UP/UpFilea.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110474.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/awekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ktovadmin/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/globe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123459.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reenwich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xmxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/tszwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/illtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lhkoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_chklogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uwenzori.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/flash/downfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/koyoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/gozfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23%23cyweb_cn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/manage/ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101978.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhbbdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.asp/bbs/add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assassinate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talingrad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ybcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvbn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/226500.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/orlaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/kbxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/plmhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftInfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/gbruupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_adpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00427.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ywrtupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/akvqtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/hochadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rational.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8diay.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ucvyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zjbyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13579.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breeze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196521.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196588.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/fcjmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1819.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/check_path.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kmtzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cvafupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baritone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preservation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1025.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/upload/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/kzyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/oitcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/check_path.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t00ls.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Society/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminmenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cokacola.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/cao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/d99.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhcbUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ahlsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5156104.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himself.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/exlladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/230235.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ytaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wtzbUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubumbashi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huringianplateau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slamabad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor_v280_Free/5hxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1129.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proclaim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilecasestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/dpzladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_OrderPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flexible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/official.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ooo/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ithiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/fckeditor/editor/filemanager/browser/default/browser.html?type=all&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1361669.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brightness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ujewadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/dndqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/dasp/fm_shell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travel_jcsp_show.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cf4xmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/potential.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/bcqoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/itebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/drmsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/utzladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/hqsdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southidceditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onnecticut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/eknqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/festival.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liveandletlive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shift.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/cbdzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/play.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickname.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.aspx?type=all&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whqaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatterton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johhwebedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/arhfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vwcmdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lathe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displayed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ufhkupload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/nzxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qbymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4110428.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58658.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dama.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookuppass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/fccsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vavdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1022.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgentina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldridge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/777.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfaction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceptional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aituan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor_v216_Free/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/web_admin/editor/admin_articlecontent.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndianocean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/qtuuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabinet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/ryghAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/kzxyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interrupt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2r8idiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137233.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8cao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_User.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/tctradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theirs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Articla.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/asp/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/307668.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icobarislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campanile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfeoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/oghfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005&%%23sjk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/btfdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ixsxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/mmzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ju.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cwieupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/yixfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skyscraper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/xhtvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/miwoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/heiren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recipe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin666.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyrant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_setup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jutladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalization.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unafuti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ubuwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vehicle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/influential.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager/defaultx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morality.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47138.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/frguadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sno.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/apxradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chamber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/acsdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xpupload2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23vvskybbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hovell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uameUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haggard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guardian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/xawtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kteiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/day.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4pajtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lkjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nlzauppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vkghadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definitive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/itbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rfipcmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excerpt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/8k57diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/rsukupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xnccadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hittagong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uwnwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/yuhlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diamonds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/qjkuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vectrix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abuse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1116.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/population.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/767mdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farther.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caiji/data/6ting.com.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs-ee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/gbnuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/maixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sightseeing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elderly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zerbaijanrepublic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wjyiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footnote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bviusave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/markc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approval.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/kukzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timqsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nsxxadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dearest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/pihfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hqddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/oefxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limestone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/tjavupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dmsjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ante.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/if.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/txhfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/tkzuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fvrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/60q1digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trailblazer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db_backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proceed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/1025.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloudy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/adminlogin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/atudadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workpiece.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/cgmvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nervous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ending.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orcestershire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/jhazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dessert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/zjuqAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avisstait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ka/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrqdeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/kjfatop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_ly.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/xiaoma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/gvyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinfeng/look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/nsnaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/tqpgconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678933.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hengzhou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/iwzkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/info.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/cdpxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boke/data/dvboke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2167.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/dtuladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/panpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj/fyweek.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldlady.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ossbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedestrian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plunder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/bwdaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moban.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uwaitkuweitkowait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/oodladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyaway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/laymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subtle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mxwsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sizenine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auniadmin/ewebeditor/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nuomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/juzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twenex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit1/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/uzyfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eileen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/lhldadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvxiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/fmhyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0236910.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/kivxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aituo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poetry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mobile/Database.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin_new/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xwcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/lwmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eghsuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/pzliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indonesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1218.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rzcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/403114.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwc/web/web/web/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bucket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southidceditor/popup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cerebus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/luck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tireswing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criterion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stratford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dpwpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/blog/attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/cqwladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmain/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magazine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/bzywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_h.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jsmpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fusion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mtrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/cjxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greeting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rules.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceased.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/rfeqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bias.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhcardina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/rgjjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sozmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xnkoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/illvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fibre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orontotcrontcu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connected.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/9.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woyaoponi123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/063502.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1969.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whereas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owloon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/scfjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/repost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/swlnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12380571.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/dycjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/129129.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/qpixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cgxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/loginadm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/User_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nucleus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbbs%23dfllds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/do.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/european.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/tiiuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ground.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/irrgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raefajokull.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quantitative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vuufUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ni.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/oblog/attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findaccount.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileNews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/setup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uniformly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/nasaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/hreladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemAdmin/AdminLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/#wygkcnqywz4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/err.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/which.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/told.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/lwhaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ascfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/oeweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221722.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xprpUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1297.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arien.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/xnukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b5giupfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_feedback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conversion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Admin/Login.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itty-bitty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/mtgaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620609.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=../&Connector=connectors/php/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/dbkbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gocxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fgllupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldshoulder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ching.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outfit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/oovsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/dmcradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sponge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ydfaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/aa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuthbert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goofus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wfpuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoyment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l4hcxiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ajikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ocuxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reason.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/cakfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/mdipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kidnap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/love.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/zz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookupPass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthampton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ulhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilecasestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/rbkladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackwood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ehoxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heroic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bmioupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zkbqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respectively.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/back/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/jliaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemceo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_picupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilecasestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xqyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wyocadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwccsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register/UserReg_Step1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ax.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ovubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/yckfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/iyueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/iyvxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fchzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egikewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arjeeling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jdwwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/owviadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bgjmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xbfvadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/kneqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/gcljadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/fwzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/digshell4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about/upload_dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/kmfxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/qykiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/grpvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/element.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobbes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ugkuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/goyeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplementary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appeal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sieve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzhuang_fushi/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servu.aspx/bbs/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/stedadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/426426.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vcubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mh6rdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sesame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/dtonadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/event.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/zbatupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seventy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/njfcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southwest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verdict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2200362.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_66.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gincuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candinavia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xkdgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wzozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armstadt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/shdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ponder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ujqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/dhgcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlboro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/uwmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileCasesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysterious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/vhlhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/committee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prettyface.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staircase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000126.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520620.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19430816.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amazing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/bdlhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/mfifadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plc/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rkdkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/snkjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/except.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196511.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3699002.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humanitarian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crompton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/eunkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8connfig.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/till.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontreal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/357835.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yardinstall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/alivadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Channel.Aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/iqjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/odiwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grassy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/chjjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aohgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewydecimal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toshiba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/framework.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/cewyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/urhoconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/xoknupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/326067.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ajaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/jmqladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfiletemp_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ewuyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/pynmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supersonic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/vupyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ifjigmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tits.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwanstrait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coatamundi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/search/viewcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motorway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveImage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_field.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocuspocus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/pgvpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/sosqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qmwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/hzrzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appreciation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jduqdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caught.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horsepower.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ockymountains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fertile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilsen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/crtkdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_install.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/upload/test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuszUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/environment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osporus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopb2b_sysdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jkryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2457450.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23gbook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mxedsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadsave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/link_asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wondering.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amongst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ejemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retired.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/wimladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xerox.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ejkiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taffordshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/original.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilebanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ysjqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/djhiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/bopdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0205.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repetition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/huiyuan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash-show/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isreal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54743063.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftList_Cate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curriculum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reproduction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erseyside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqywz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/qpquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illcomayo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attempt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor_v280_free/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/%23wrtxcn2007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9988.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeans.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/rafaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rampian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doll.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Loading.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/gpjpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/tosvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consequently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ox.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2160.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/first.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuyt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urkey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8z_shop_newshop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101106.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23tyqiye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumberland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tender.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resemblance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/uxsdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/s8SelectPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manger/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/mgehadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qyueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/htmledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/boss/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scandal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/xombadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balfour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/render.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glvhUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/aruyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erglewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashichannel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/kcuvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nyquist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cteqmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lmctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ajnladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/office/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x-ray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bastard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipuser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txtdsu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ukwpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_byshoppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penit-admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_picupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vfmoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ilfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntwerp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/his.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dqhx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/uzaladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadahead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dead-head.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/crhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/zioaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asai/asai.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadimglist.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/xbbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accomplish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uacaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verdlosk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/316318.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntofagasta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/na.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/urbradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/386753yy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/%23%23%23fdkjgzschool.v2009%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evident.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/determine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/clwaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6688.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/MC.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq232174321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amadeus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/wsjyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520570.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offered.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontrealmontriol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niming1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/ewebeditor/admin/dsdologin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sprang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/sclyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/qzjladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168518.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/toauadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errydiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjqeUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myyeup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/eyypadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/oypmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temptress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beebe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23181615.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vulgar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/mdemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/kuxfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bm/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/iynlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhruupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/cxktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/lkjeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxz/7sq2look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awaii.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anselm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perspective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigmouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/yjlhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dhtfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sukfxiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangzi/mibaoaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rnwxupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eville.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mlngupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortnight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vhhdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8css.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technician.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vpcpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/dtrbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecilia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chldrn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dgxwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttyfUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gas_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/wpnvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/rxtwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnetism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/iutjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/author.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aesthetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/020618.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/auodadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_SoftPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56787.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhelp.asp/bbs/xhelp.asp/admin/xhelp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wxrzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/HTML/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apanseaof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ego.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wum8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/vzjqAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traffic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8dboc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/372011.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/animals.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nufxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concentration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/fbajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deprive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmzjadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/uadoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/mehlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgbeUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skillful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/zfweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/tcjpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fleetwood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manuscript.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/esjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/log.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/znrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/gcfladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_6list.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dubuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attract.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showerr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc22/$234ifkejuwemcjew11.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19423357.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplier/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hdfeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xqieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botany.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qiche_Qipei/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/srzladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yejpUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/078814.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/had.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/hwajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/hcdfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/enjiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restaurant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ukoiuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvajadmin/ewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2/safe.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/yqhpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/531127.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilogram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apporo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glued.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfdm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8key.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/fvryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ynatadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fasten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploaddd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raindrop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh/user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/opqjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/could.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/yfpmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ixwhUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/uknuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiuowebedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/pfkmconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wwhuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkkalapeninsula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/earaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminqiqi/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/oqiiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinanorthern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzgerald.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilecases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/jlcrconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheriff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ironside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshidiantai/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongyang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hxhzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sticky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ycqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filemanager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23572357.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/s8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rural.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=../&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closefriend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/journal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proverb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MSOffice/cltreq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/bpvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rencai_zhaopin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beerbohm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djibouti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admintab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/dama.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/link_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/rdroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/rjysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refrain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/oaeyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/lpwwuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscommon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reunion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rxjh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deposit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/fmdcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminlog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8adminmain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clamp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reality.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phrase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_piczc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrupt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withhold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221217.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ls.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ballot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/djriupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/bxuwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beneath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stainless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ipyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alabarcoast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/rvcyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ntciadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjztotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/cubeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falsestart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uatemala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ujmpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/zddladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash_.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/chquupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/webeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Server.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auru.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/szkiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achievement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeated.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hays.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prayer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/zxcdvb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yl9tinstall/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geographical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webhead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/283300.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8sunwei.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/share.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nbmpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lattice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nyskadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ecnpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/621108.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lcloUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indignant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yyghupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algeria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortcut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_product.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameroon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophisticated.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mother.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewmexico.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemessage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/legmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senior.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cotton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8520hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/gvdbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/w15nupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42577719.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourgeois.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.asp?source=/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uscanytoscana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote/dsvote%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/omadupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridges.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4659385.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/mzkwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drqdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/mm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdaxUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fgwwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_subject.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experimentation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guidance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basically.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upimg_ok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rztyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z_visual_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/pgvrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/yyznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jipqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/tmiladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nrmyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pride.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/lxpbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admindata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardship.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndros.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eagerly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GOOGLE1bb9e40669bc959a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/asxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url/ask/data/ask_newasp.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilbao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/means.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kes/admin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/eschadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blanche.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doherty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/pkdxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/bqszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stupid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tackle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osafupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sentiment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/eeztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/cgzcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flakes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatrix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlanta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/hzmaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pickle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbptupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/euzkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/any.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stroke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/fuoyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/nimageb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/hqeuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemonic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ertcUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wherefore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/oqepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/llzzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inxusave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/responsibility.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincheck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordered.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/xehsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okohama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/nqipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiytUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/pemuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/zpveadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/cqloadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/naxhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk997.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explanation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsjj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/030289.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.aspx?Type=Image&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kthtupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/emgqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupsave2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121776.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/nejyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oniara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paraguay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inorganic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vwpzuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc22/s8$234ifkejuwemcjew11.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ohzbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troops.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8dbcoj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135790.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/oatnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/pemkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManagePwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/since.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/gltyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/above.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft/hacker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/551102.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/dupcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/fkeiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesdeadjim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8key.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henderson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ftynadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/okoeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/points.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbotupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_top.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miracle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogcatcher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ysujadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asplogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mozart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rqlfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/climax.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/mjbnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emphis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25118.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/college.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/tqynadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atskillmountains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alticsea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/bkyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upUserFace.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ytvyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rhfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/record.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/control/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jbqlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ccxgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qammadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/kutgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/higginson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diligent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ourencomarques.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heidi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/uvfoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/busfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/howhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jseladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pumkinpie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rigid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about/upfile_about.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5201am.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fghanistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/oqpoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhset.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appraisal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xobgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_group.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/fxittop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/mnydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angzhou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin/AdminLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermodify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2282662.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endicott.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/sxlkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/436670zj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recollection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradeLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u_name.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capability.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loesti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/wmxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azakhsatan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebsoft/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3138375.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0907.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/129581.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_count.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/qnhsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/guazhan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyytdownnews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/databackup/a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/can.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eecaadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preliminary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_backup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/615438.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyang/include/Cls_Data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007Admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diploma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monkey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arispaeris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/bnivadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/654321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabric.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jwmdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0228.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omercum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prefer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbrella.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crabb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iamimaiaemi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/though.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moscow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dull.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8digshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jjfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whisper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdnews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enlighten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beethoven.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trader.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vuvsuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jpfsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ykdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/eyxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/lmsfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gvwxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js-pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbtmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_softpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bilene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luckybreak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hplaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accommodate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teqfup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engalbayof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/near.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jianzhan_Sheji/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weaver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/climb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wooby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saabturbo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/hacker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/news.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123666.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alphonso.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/253812.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/history.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kesadmin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akota.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tull.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkbvadmin/webeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/zntfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ogviupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permission.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/webedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cremer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softcate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samadams.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersatz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/hnqvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/krkdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/admin/b2b_sysdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asfjtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gordon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faithful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_edit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/pqsaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qillsec.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bates.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/USERok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/rrawadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zpkxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxz/6t17look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resemble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldxjUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hqwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_name.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/pijwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/acicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/investment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/#WRGKCNSMSJ.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hzpvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ehjmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-gl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/acfmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3423.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/td.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8index_inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/peviuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hvktUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinagar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dependent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eshed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meagan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avftUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwrwb5w4btw4b/223fdsagte3q4t65q4q6543/%2370iZ0qJ8a0O1Ffbzp6m.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/jmxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbertmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimension.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exposition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahrainbahrein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wkwsuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/were.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/iedpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartlett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tumble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/tknoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therealthing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b0vfqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lympus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aucasia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/koiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eelung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/yeveconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/edibadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frustrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ljxkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/events.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k5ekmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ftunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1772603.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ejhjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/489660.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ppjbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/zboeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/txuqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odavari.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageMap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/552525.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/cgbradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/%23tourdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wargames.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php_test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2245910.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000920.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/lobkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/net/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/fckeditor/fckeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dvpost_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileServicesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/pzbdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/asktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microwave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/golladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/became.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/sbtfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servu[Lake2].asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yearn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwertyu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ak.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/mm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brjkUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/owzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/uixwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/iqesupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transparent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sysadmin_menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hufsaspcheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedhed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tragic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y057digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/mibaoaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gather.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wnuiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aebashimayebashi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_jk/joekoe_data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/krkxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guqhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zdkyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/UploadX.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg/usew_reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ierranevada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnapolis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somehow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulumuqi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/file_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx_update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scenery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/z9v8admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8dboc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admission.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administr8.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pondering.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edfordshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/governor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggiorelake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qzrnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lzjladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirdat.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/icpfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opaque.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/xhjoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0971ll.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26433832.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/mkcvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/qidwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/pffkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agasaki.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hollow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wombat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/dgqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebraws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhattan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/edzcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nutrition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stammer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/wnhgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/budzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/cjytadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/msksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/gwfdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mars.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wmqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/z9v8attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seychelles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoconn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lasgow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttjdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/tmsnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submarine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angoon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00123456.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almademallorca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5561.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/cyzaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMail.asp/wulin/SendMail.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8reg/user_reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/sbdvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eneva.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/due.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/yuuradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/551688.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/double.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/szwkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/veivadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/together.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/park.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coverdale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/saveup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/184809.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmsucks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rbolupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veteran.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fireplace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somalia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boniface.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5601178.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comparison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/iqcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/lyioadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/xeykAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortune.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intensity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/kotqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aruan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/violadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/stdfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/fuck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emotion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ijwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3780.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/professional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/reg_service.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/mdlnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/upbpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/villa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/saduadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/post_upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditorNet/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitterly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inherent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subgenius.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/eecyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/imroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hcpladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51000777.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/arlwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/loknadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sometimes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strengthen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/sxzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/njlwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/jfdpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwsbotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oboken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.aspx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replacement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ebumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yesterday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/down/upfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclaim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/db/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadProductPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fmmwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annoy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/7ct0uploadPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conspicuous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samantha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readmail.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewyork.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontevideo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/perdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/hkwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/vdhhtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/as.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/A_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wh22servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/70oedigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/gnbjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/member/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/edit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/bghkconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nquuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ykseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataShop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/Media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absorb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_softpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm/Editor/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uvwdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_manage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfso.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belgiumxtrapage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/gqzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ijppadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/uxjsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_userinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/Admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/build.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/eeckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/53999.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outwards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aju.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ja.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/tqkladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haaie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin/1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/spyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SaveImage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thinking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/dncoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/mntfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/rlrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ifjxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ologne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pktzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/trade/admin/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/%23kaegoo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23echuang%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernstein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info/show.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aceng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interface.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/saveup1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baldwin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oask.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/favqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/eipzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undertaking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlyle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upproduce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tchristopher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dessa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/uawhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degradation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simply.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lcpaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normalization.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/uhonadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rcckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_Image.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_Restoredata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okohamajcukchamc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/gdeyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experimentally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload22.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cxkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4401962.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grounds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyons.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eniseyyenise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/__vti_inf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otedazur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numerous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ensue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nationality.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/Product/MANAGE/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileServicesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuller.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/udutadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/gucrAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aileen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ksrjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decompose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mbkyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greasyspoon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/43215678.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cb4cupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tyqiyechina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compound.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/sunwei.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/qdecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/41.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/pupfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indsor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/webeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/374373.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/short.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pt00ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoft/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receipt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appease.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/350.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handwaving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/miswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wemcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userfiles/fckeditor/editor/filemanager/browser/default/browser.html?type=iis&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/4jt4shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/wjqoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeitor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alencia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hjwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rsdydiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entreat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/omdsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebrws.asp?source=/iissamples/%c0%ae%c0%ae/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/zxhradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/kjdmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/yiwvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiefly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pegasus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asmin/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/dscvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/snazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contemporary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compulsory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decorate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discbrakes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info/admin/m_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alisbury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhybeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bananas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/wnysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heyenne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hauvewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiribati.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cotland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/3pgladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get stuffed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wsosupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breathe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/spy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erkeley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/iotoAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8setup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilization.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discrimination.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/iaxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/bmagadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considerable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/182550.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8xm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/008421.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/gb/register.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/manage_logo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wrrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reconciliation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boycott.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/market.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cannon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/edbgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vahkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tied.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/myzmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0519.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftList_All.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grosvenor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/cjgwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/mjbpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/psewupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aressalaam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sequent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/oxbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewhampshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graceful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roses.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/tnmkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solomonislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/guubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occupy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allocate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrcharlie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/Reg_service.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mbutadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/nh2jservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/TCBBS7.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/education.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incomplete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/104126.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zllm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_messages.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vzciadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/rxscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enyxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/folzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ryhjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147147.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/Default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_User.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smooth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/msueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55912148.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/3044.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23database%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qbcqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10001.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yazfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/command.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108975.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/opmvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouisiana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stairs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/weihu/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sermon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ira.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pledge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/greaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23fdaeg35@%23gds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hnqhsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/erikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guan/guanli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/super.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/how.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rrngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antucket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safsd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paperback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charged.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molsongolden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ucqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/ewebedit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/ojdzsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hwpsuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/member/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ndvdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dougherty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ungary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pirate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnsbruck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpanel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.asp?type=../&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/djtvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/%23tourdatabak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/wgjeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wcnjuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledzepp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1226.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/cuqbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgeorges.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mlquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebusmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vfqpUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slovakia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/db007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincontrol.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfilem.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3800cc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kxtnup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscript.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/wikgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ifwmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/for.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhcgmanage/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/aa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/batradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astbourne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/across.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wjruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/jihe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uscat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/admin_link.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/%23vvskybbs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shepherd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alphabet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pd68showerr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/du.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanuatu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/gjjoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyjxy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/lknyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/care.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imaginative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/qlgfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/gzmaAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/inluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/admin/Editors/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/qwicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wpjhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/shopbackup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/but.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aporozje.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alifornia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/editor/erkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/moegupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slaughter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3654397.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveannounce_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleShow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/djrwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/wykrsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aputo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/222.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/system/userlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ierramadreoriental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/no22.asp/bbs/no22.asp/admin/no22.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/qraiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/odrsconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/httgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caipiaobocai/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/findpwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/eceladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/xbuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/alrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/index1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_other.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ena.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/zdncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/universally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wqiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_inc/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/jbnxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consequence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/print/data_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimwit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/militant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ypedupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zy_manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ugnvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smashed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warmth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/edit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xvohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/wxpyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formereastgermany.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sousuo_yinqing/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zmegupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/wpuqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mickey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/lpxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wsqladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/538263.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/pgopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/participate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/bddnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andersen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/duvhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/my.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_SoftPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/royal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vii.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wfxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/clriadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/qarpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ad_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmdasp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysconfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stroll.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trample.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6071312.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vertigo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/merqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wbkaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/guyaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/eWebEditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llueinstall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/fhhjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsreel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/rbfmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purqdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6121077.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/vqmxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/llvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embarrass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s877169.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mianfei_Ziyuan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambezizambesi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/YxBBs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duncan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throughout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/military.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/islands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anganyika.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dlmwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/owokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prepared.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c/123/6ting.com.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ryzyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/056031.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/read.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/introduction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invisible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rvhmUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vms.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedlar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/game.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahhnewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678910.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caidao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francisco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2613.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/vobradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/succession.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0531.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rub.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erguelen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increasing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opening.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ihnfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kept.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10952.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u48nshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/BathUpdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/kxckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/zzz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_page.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/cbhladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/eaaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conversely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eastman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axkbUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ltecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwc/web/web/web/z9v8index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ofmfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocelot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/rigtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keji_it/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percolate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/utjnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hyzwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specification.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/anqjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gucci.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/run.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/utqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nrunUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54719589.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otopaxi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/translate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sparkle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vxtrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gg1/images/xx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getimg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/llebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standardize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11117791.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrival.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3elgup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show/back/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V3.1 _data/___dkcms_30_free.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBlog1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/lvukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmansea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhgoadmin/webeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qevahtmledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mineral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displacement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addlb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/momentum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opendoor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site/eg/source.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/xoasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ks.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/review.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulmein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/caonima.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dir6cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/dpwyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pneumatic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seemingly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parties.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bundle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plural.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.asp/bbs/add.asp/admin/add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/59pqlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragged.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donkey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/augdAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ring.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inde.asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jrrstmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bcfeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/vwzmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/kgrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oiisewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lgsvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fhinadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8uploadPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/dkyaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_list.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8da.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ocveadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jymoupload_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/yzphadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/moifadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prescription.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/nmhbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mounted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huddle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newblood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/dgwwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beginning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/616161.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iroshima.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamjebel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/62118100.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landmont.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afflict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chronic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/zqgwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/tzmkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzgg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123789.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambiguous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtfrUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/wujdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/tavcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conscience.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/kqtcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/gujuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/hjakadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nrwcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tubas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffaly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvelous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_help_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xalduppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elanor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/rjhhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1122.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shabby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hinder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proposed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwadmin/a_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/mbqeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpzkUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/aspcheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrqmup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innesota.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mianfei_ziyuan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skeptical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vsxbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jajdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/dyvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/gowkAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ofmqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemceo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orangeline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qxtvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hooker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prune.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajpkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fzcusave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/mbldadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qdpmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ertfordshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_line.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commodity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ru.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0323126.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/zsdladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imgdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminindex.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sysconfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/xqxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatigue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmarino.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vddaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/Connections.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consensus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zero.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangchanjiaju/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ozlqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/pakhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8publish.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fjymUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminUserModule/AdminUserLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mianfei.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/runSpamEngine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l6h9register/userreg_step2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/with.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/jdvaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfoaewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hills.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/bbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/46.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/zdcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBA_lanqiu/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ictoriamount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matters.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_messages.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relogin-admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/mm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/guubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hughes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rysusave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extension.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=../&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terminology.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sno.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eternal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phone.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/rkdoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/kpizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anastasia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restrict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oncaster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exciting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viscous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mecms_data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hjjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hames.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/pfuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ezbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/sxapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guilty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xiaoma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hungary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inde.asa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Articlelogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connexion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Home.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usr_n.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dbscon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wtumupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permissible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faculty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23echuang%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/z9v8addlink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001230.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8up_bookpicpro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuesday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/User_Admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ttdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwroot/1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/89wjdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsupdoc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/age.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/shop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characterize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calculator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8server.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y2k.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8zz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/kclbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overcome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/functions.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/flyrco.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8upfile_adpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garret.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilecasestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skeleton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadset.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rissa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/gqfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wvnoupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grocery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grjradmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebraws.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sketch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage3_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ynecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discussion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/yajaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iamery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aware.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hua.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tafford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/enda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/efisadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twelve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermanagh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/oyibadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1209.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/vauxAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crawl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/tywfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/nfojadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/eyjladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1w3xupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0423.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jktuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/znzqsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rnicsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_3131.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/networks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kzqtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/klcgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/runspamengine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/nqmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/texture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/editor/filemanager/upload/test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmpc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8Reg/User_Reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfiledown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aircraft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2102089.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/pxlatop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/credible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overcoat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smith.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8sjroha33.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilepic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reveal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glimpse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moslem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kvkrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyml/upproduce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/dhkbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wrbnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/historian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shownews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cascades.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psymupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilepartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sillywalk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/PicUpload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colonel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/yfeiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv8ediy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcdn_news.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attersea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crisp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/succeed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest_ly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/234234.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rampianhills.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/okzjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/conn.inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/lbbs%23DfLLds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/night.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/may.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm.asp/bbs/zm.asp/admin/zm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/rjjhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softlist_all.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectacle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immune.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/dfujadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zlzzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cilly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pantry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filled.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/qerdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/select_feedback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_more.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stretched.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/qwwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youngster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/hdwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/structure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mkemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/huccadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/inaoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ckybadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xvjcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogfight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/ewebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/cnwcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psblupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/dbpoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/mvvvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/%23wrtxcn2007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/temp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/kpeiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52915859.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/unjnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/fjpiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456789.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pillar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/led-zeppelin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweetnes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amothrace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ASPAdmin_A.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manipulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/federation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0313.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/yhnradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/known.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backdb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wilyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conndb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obscure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mercy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggong/denglu/denglu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impatience.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/tags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hickok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ruihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ewokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnf/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3408311.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc/Upload_Pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/faljadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/gnvaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/4cp3update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3044.asp/bbs/3044.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthasvineyard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xdjladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/juhmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aima.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/trade/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/whciadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doc/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afbhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/html/cnf_gi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Char.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/nfidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/hdxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coincide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kal007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/343gat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raftUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/31887.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niming.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1223.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/158160.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monthly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uenaventura.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randteton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dapper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/xrwqAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/oqwfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1006.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Keji_IT/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/description.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/performance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jquwadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1207.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spliff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metallurgy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idglamorgan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/hjjbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sql_test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mac.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dianhua.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/becdtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabbadabbadoo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/d99.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/because.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/c99.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olorado.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/zvkfconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_upphoto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiffness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/dtwvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/508936.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8longduan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/gbfsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ugdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivrnadmin/ewebeditor/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardiner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/tviradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butterfly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/officer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/frmcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yay8digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/zgtqtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/super.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nowadays.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rlington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/on1fshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh120/nopass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/188606.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rathcape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microprocessor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reslau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1990.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/tglxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gkrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/dnedadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/vjweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/fuck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/eoaoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harjah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/qvvhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/lgipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achlan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ughtupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jennifer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/%23ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520310.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8scan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ehomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/dfbvconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scfmservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/cgeuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nowhere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hjqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ysdzsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhandaman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopb2b_sysdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watertight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/that.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_ok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loknewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/uiwfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5kfadv_dpo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latenight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ijnpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angsonlangson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/294003.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloomfield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111512.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/especially.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leakage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armarthenshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00hdz_shop_newshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2oindiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he1p.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/eydnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atalonia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/dkkgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hymn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/xjunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%3f.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xxmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/pruuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/scripts/openvendor/gnete/retrievepnbody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peril.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/cuxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/261027.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56086945.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DbConnect.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolsover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/grgaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xxx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/132603.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/man.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1959.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/bxhcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/yuzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rakensberg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weigh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audience.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ohdpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/uaydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlpanel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnificent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/fdswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elhi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cather.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrewsbury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mxmzpanfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stability.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parliament.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/dibnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sacrifice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustronesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/wtldadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menber/ewebeditor/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Region.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olymakolima.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agency.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/qmjcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_admin/editor/upload_dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1360163.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/dhkhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsystem/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/mhhuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rod.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connections/connections.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incode/jm_view.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiren.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newup.asp/bbs/newup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/emgmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangzi/modipass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11614.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlotte.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massacre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oiygadmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zambia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gained.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eixlaoighis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aples.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jzjsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/their.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Database.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/sqmaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/fbzdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splendid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fabradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cohen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extraordinary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retrospect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/232061.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handbag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebraska.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.php?Type=all&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttadigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cripple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mianfei.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/031164.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obtained.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fletcher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangdong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/rlnfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/spzs/zs_save_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/pyfyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pigeon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rc93digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banquet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/ajnhAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brilliant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/amcpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enthusiastic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc_config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/what.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huntington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Style.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9z_shop_newshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distract.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pearl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conspiritu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/zqksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topcool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clitoris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ftfnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backupdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openbar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intelligible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merlin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rpwdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/security/License.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/cukyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/page/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/jskjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/xukdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_addsoft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thunder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8salakl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utterly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gdvoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanging.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jarxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/research.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebedit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uhcquppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/made.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/53.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/264994.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xnawadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/cggdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exchange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageMap.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wants.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moreover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/nnrdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn/admin/login/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/uyfyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/njhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/pnlpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/webedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131415.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ecncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editeb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doaux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/md5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocabulary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/editor/admin/sptylogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ogbjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulianalps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disgrace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmanage/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xioyadmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/clmladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/janaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aku.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/jnlvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/kolfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2052040.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/bfqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mzoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordon88/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regret.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinceton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centralafricanrepublic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_up.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analogy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ryhdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualitative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/install.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000001.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speculate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/mjaxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eattlesiaetl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/those.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/srawadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/xwvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/zeztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmsux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan/z9v8scan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extended.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apetowncapetown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donovan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brewer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thankgod.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/emodadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/opdkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wmscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/xyojconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/79aadigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vkuqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/79hlmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/sgejadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smalltalk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qndpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/existing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/tickupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/xxwdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resign.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/another.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/irfvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ifvdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exempt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/wydvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x14rtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hwvxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileBanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rludupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conndbb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101476.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/ozhudiy3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack2b.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybaris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site/eg/source.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/yuobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meatcleaver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/bvxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goaway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/kxrsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/addnews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginadministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8ldt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alais.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/cccdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fuhcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runswick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/fpszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qhvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rimea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wdefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytilene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sodoff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/getpwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/zidjconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rfmmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/axabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/lzqjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irrigation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/nxsoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data_restore.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118925.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradesman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbartonoaks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/fjknadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instalment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resistance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54740442.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileServices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/eqcrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/qkxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/yriuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/kpatadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barfer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yahoo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hztwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02021971.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alikpapan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/error.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/gsuradvertise.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupsave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0705.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sec.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_db_backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/iuimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/so-called.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lpa9qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22227509.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upset.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eirutbayrut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111117111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/tbriadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhan_sheji/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/vghxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qiche_Qipei/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/digshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/super.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/wobcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vxqmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranitepeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/phpinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/dnfaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/miss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortauprince.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdjcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrshu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jpipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlultimate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/jccradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parlour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/AdminLogin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/kmikconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/335778.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor1/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joshua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/87d6diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giauque.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/kanxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ientiane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137024.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/gac2upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/radoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_setting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conductor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hk.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/pbutadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/igmradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223616.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftb/imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/oxuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teaparty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faded.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/largely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/yugpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jgwaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jwxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincn2008/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moguls.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsalvador.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/byelupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evaluate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/zwmfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/aibxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/vleladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artillery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/namibia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileservices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seerch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrimp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/Admin_ModiPwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cities.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzzbat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/js-pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/web_admin/editor/upload_dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_ProductPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfide/administrator/startstop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prolong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/hjlgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crypto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papuanewguinea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Product.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bauer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/dodjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/miymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/omizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dupont.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/determined.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tailor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nooiUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/etmkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin666.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riacs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/eqqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ziktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erfre.asp/bbs/erfre.asp/admin/erfre.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deforest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/follow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notwithstand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/bxiyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/emziadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admindelete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/require.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/rwrsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingres.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pipe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ukbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/z9v8admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innocuous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oppose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/005523.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzsjsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rokdsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59922006.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/wljoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amabel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mislead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/dherupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/aotxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derived.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoodlum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/hoskupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slba.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digital.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smeadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axqoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/male.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lppvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbados.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/oefeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/vnvdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/yxduconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vxoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/president.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/qjxgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/cmepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack86.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prohibit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exemplify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/sasladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nigeria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daho.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/tdcpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xscuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_nupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/gpnuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draught.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/771wupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/2007.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_PassWordGet.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodjob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dequincey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/logout.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/phigadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ikysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110102.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nbdoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/residual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/uoijadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c04xdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assistant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/cvxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdeiUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consistent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/item.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilecasestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excuse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vuvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ims/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dump.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/admin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ltooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/up.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/nwixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uqfiedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/jljvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmnop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/pjjvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ycqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110774.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/sidiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/health.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/hvmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comeon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/eucxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mosquito.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/077012018.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rirkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/vdyaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pvyhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amiable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobacco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/elogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kyrgyzstan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash/downfile.asp?url=jackie/../../conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ojayadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neglect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dbcc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rftzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/dcsgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/book_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/admin_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/avbdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Editor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nfcgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/wkymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/opnyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/lttctop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/construction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/ftb.imagegallery2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amchatkapeninsula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pakistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wm/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1964.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lm6qdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/dnpuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/qtkladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/avpkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/rviqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/versatile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gravely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/iglnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatroom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/jabgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soften.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/gtnoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agri/Admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bailey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zwsasoft/show.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/isoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/hfahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarrel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xeter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/gzfradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caonima.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eitrim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmpfUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metropolitan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sawedoff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/acfmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instruction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_member.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenstanleyrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/hzxhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rague.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1ndex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8md5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/plaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/jfnjtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/check_path.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ataan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bbgvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysManage/SysManage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewguinea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anoihanoi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedicate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/pvkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crypto.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnitude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10882048.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dumb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ihxkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ntmfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pb78up_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/uploadpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ttouadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fimfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/pgofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recipient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_htmlqx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminuser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fznyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/vqxetop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/akwvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acceptance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8up_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klingons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rush.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terminate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileCasesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xiksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anremo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zktnwebedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auritania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ienna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/awsuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xuefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calls.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pressure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ismiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/xblladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/qlxxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/431122.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astonished.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oleditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/rgrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ugbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/oozmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waggon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ewlwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/uhzcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xsykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/drzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2288.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/obezadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/lfdwconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cgosupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bureaucracy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nimageb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/shop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osssea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/plrgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login588.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/dzqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rotate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beforehand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvyouchuxing/2050.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfectly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1109.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ohydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/revnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Datamdb/%23wmskData.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/zqkxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/real.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/umdfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/snafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fzyzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/wktyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wjmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/lhnladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/blbradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/btqdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wangba_Lianmeng/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallatin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/znicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c/data/6ting.com.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astings.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26013.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/xfpjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/db/dbwebedit%23cc495898.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/yrkxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/jtozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/udexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relationship.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/9ff0diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/llsyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/makiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/emxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/oejeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agenham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controversial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prejudice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izhnitagil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/lbtgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uanghe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortcoming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sufficiently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rypfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/bmhwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/itkradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savelogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8AdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/castle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadimgmana.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzhijy/htdocs/db/fileupimg2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wow.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/many.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaines.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earborn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0b9digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uranium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mflqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/march.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ldvpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/@dmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/descendant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/woafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucqydigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ulduadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4545.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/xfpmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/210117.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploada.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dixie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/fileupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/xoxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngola.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ijqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleazy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile_asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/devzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/tpssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/vkwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/zm_marry.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/kwazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/pfbpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cinema.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/tungstendata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslogi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_img/123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/230933.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fubpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ruokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xm6rtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/621126.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile/upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/syspadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinguished.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/mmm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttawa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embpdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bjdhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/svrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/nrbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldvtsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/vt6tdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prospect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pull.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/knowledge/membership/inspired/viewcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/universe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/qpmsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vincupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qiwsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mitten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310113084.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8xxx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/fxpuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/oujrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/FolderImageList.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessarily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rmmyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadX.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qihzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argi/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfiletemp_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontecarto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/fmvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desiree.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seashell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gavwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vo_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/according.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adotville.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dbxluppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l1ysdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/foesadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/18.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjs4digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rqauupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myup.asp/bbs/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebMail/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emission.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wipe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileServices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ldjnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stickshift.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_count.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/froude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/otfvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdnews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarcity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/rrdgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilenewspic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0x5emyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/tggvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdywUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/miikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mbdyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fertilizer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/my.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/iviuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/umwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/ndex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bodyshop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/mdbbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/stxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rbbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oceanography.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vbuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileNewsPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdata/acblog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23da%23ta%23\\\\%23db_%23data%23%23.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55724.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eads.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happening.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manages.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/commient.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FooSun_Data/FooSun_Data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/rxqtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8key.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ivfaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/fxlaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancestor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/synthesis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vessel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/along.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/wtcvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wzztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/apspadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8daguliang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anningisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxadmin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhnsoon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001997.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/tqndadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lkgjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gleam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/habit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/kvrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sausage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ekqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnnsc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vucfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/pcdaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/add_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/ewebditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorida.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ottinghamshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possessed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirondacks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disgusting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gehang_geye/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/editer/selectpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmledit/bhaiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/umwbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/czbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthernisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jifjUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webgood/g7223173.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6789.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyypqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ovyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_admin/editor/editor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orneo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vceoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/kcacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source=/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rks/showcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/tgooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/xpbvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadface.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behalf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowForum.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/below.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2607.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmenia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/588.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%2352_dsmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/mltqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/SelectPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utherlandfalls.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katydid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdigshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/my_picture_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingersoll.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/one.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chorus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/mvdsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member/images/ftb/HelperScripts/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/aesmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsadUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umatera.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agoyanagoja.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/showcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/document.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cousin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/352354.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objects.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wisconsin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ygxyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yasaland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ghdhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dicktracy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xbraupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/060810.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/vcgnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/efzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/material.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/uoegadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13601614162.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6200126.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presumably.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/setting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/eholadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/zemcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinyue_mp3/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attention.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_picupfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prototype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iodejaneiro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/price.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/xoomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he1p.asp/bbs/he1p.asp/admin/he1p.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbafUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200085.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portugal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23nbaamlq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEdit/w4e3admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/hoxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vluradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/cftwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/dpupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilecases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070679.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ltveadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mperorrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0429.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/edrxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submerge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/612087.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/adlaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honkey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pointing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apeofgoodhope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19191919.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/igcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3584.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qgupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gylvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omona.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/television.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rqlfeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjrtUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Field.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/aljcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/zgghadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exists.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/psesadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hudson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reliable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111275.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/zhiyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xkioadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/hvrpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/pcghAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/qtiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/%23wrtxcn2007.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/29ffdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zoro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adagascar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/dyesadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/mnbiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminusername.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/connectors/aspx/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candidate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refusal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsingor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/fyweek.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/jodjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortugal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor_v280_Free/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manege/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/otjhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toptxt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/test.aspxinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opbqsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager/Editor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119524.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jt18digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfonso.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fleet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/psxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/wyskadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/each.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fracture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxxobbs/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingxia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/413504.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wealth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/xoizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wsbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminLogin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangwu_maoyi/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olombo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ktmtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/icoradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8z_shop_newshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/who.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1125.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51930824.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/lbqvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cipher.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/df.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rossglockner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icosia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teeny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awatchrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/evbyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsuserid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fl04diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridget.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ytltadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dzqiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GOOGLE1bb9e40669bc959a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/x60supfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/emqgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d6o4digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jopdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cnnsc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msoffice/cltreq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godolphin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CEO.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/img-save.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/mxjsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cy/databackup/databack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_picupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/radiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dc6xdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/_vti_cnf/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileservicestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woolen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/njciadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/336009.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esmond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/qrfoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fxpaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/users.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad2000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imerick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xefoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/iaamadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/tswpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10f4digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boke/data/s8dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lrheupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/aspadmin_a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnlennon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/dbjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/nbjxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/than.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/tlwiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/bqtxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harpsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hhzeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/612211.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/export.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2585710.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iborgvyborg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/xtqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ydizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kycj/kycj/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathedral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincn2008/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/klsbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/fdhkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/without.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/8.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ykcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ftlbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyogupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/67.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echuanaland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/lmqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/jaopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erghana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/close.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Editor1/dgckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/yexfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/asp/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/jyhjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facilitate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/editor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/dveuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/knsfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/_vti_cnf/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/don.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coherent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mrwmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ajaiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ivyiconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1741.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittlemissouri.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caused.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permanent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wknpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/editor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taxi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jealous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tryread/forbook1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nnheadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/om.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treated.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bush.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_m/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/dikaAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outstanding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesdead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/famine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryydupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/bkwjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/xystadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suriname.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fpstupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/euvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5021.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/170512.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correspondent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/qsmwtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wygkcnqywz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/tbmsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_mb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sounded.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zrwgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russiaformerussr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/zuqcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/nbtxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spatial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/among.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zttgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrench.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/tyqdconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongji_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddonUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_pic.asp?mytype=tour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gas_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/495089.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolema/wendao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angceng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1212.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iouxcity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggested.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/documentary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/manager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/potato.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/lvagadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/gvssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginerror.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ella.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wjzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/counter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/hmteadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gielgud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/tytpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lens.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatbritain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dgstupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsys.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nobody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phoenix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annette.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stoniaesthonia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/qlbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranscaucasia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ann.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discourse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shower.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker520.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dcjsdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpcmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/bocxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampstead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmgr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xh_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/cwngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dv_plus/marry/plus_marry_db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misogynist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/nzotadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yemenformernorthyemenforme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/htmledit/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/academic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timetable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zjkcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pamphlet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ghgyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/dbiiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adm_menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zjzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/mqdiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recession.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/dfxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamlet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/twjfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/img-save.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/twiuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amplify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erskin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFaceOK.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/rnmbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hradmin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/%23sy%23wgh2008%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honourable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loijUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mcqauppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housandislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3uvjxiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0717.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qpmpsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xmdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukualofa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiffprick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skirt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoughtless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/139.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/update/z9v8update_baidu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dvoxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/sxpdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/1vy1User_Reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaveralcape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/wakbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bargain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phenomenon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x3mcupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/569853.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rbtyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/rvrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/dtonadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/iujoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqywz3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/death.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hihuahua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wizard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/future.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/logout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10173.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eqymupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5454594.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/User_Admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/ivtrAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okhara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloomy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/dtbfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanbatorulanbato.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/drozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonderful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScanShell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/sropadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inasmuch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrenees.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imitation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afterwards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/36.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/sjexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/tmymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assurance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/dsvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/route.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/qzyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juggle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/585800.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?type=all&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/xaleAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/elkiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFileManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isajoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsajoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/rmdbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Set.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha33.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_root.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login_administrator.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/fmkyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graves.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adopt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chesnut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siyu/manage/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hello.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12300816.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pic_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/think.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/513671.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/461511.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongye_zhipin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/nqgzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/dgqsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin/oxdrlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/uezyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harkov.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/479424.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viedo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/themes/darkblue_orange/layout.inc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_GaobeiSysInfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/dzseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revelation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nbwmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilea.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grunt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sys_link.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appears.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darwin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcohol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angerine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/nwieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/eovtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orocco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/rbzbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/lujxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rtatsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maskUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/sfqaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interconnect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdb/pblog1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangshanggouwu/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/hzijadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/uujladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/292344.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avy7diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/uo75addlink.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jlycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wsfnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/connectors/aspx/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/sjvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wphnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminjoin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ki.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haywood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talinpeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/laxpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/cslladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspiration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ugrqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ppfxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pbznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/nexsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/kxueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/qhxgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celebrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaonian_ertong/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/temp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accustomed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/duycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewcastle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preparation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/wifyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hetland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarters.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/families.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fork.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udety.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyadmin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/fayuan/puls_fayuan_db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embrokeshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convinced.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepthroat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincenter/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowHost.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/changeadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ncrbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/fuvzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/djmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vutbadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qerwUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/abjeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resignation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/App_Data/92design.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vacuum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edsea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubicon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wwjfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jicfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frequently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hua.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/kbebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xnciadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfred.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/kmagadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coordinate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practically.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exeunt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/541881452.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy/pfo9look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/india.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defendant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3727001.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8aspadmin_a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rkmqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/tfvaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dkuuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/bicjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/yqiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biochemistry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/jdvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/tnacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wearing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ovjdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ohnxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/admin_conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coggeshall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/gtwmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aique.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiritu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1tufmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vrcdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/so.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/fstdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/translate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conference.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yxloadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiriqui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/63.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get fucked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/led.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardware.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolled.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/spy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycroftyyy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc/picup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eritrea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uperiorlake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121800.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o54amyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ii.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414324.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_batchlink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/heiren.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irylsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldavia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/zbuwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antemario.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vsuvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/cffiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/737.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinidad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/vziuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/svkaupload_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordon/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akdstone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs1/s8pags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8digshell4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminlogin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsUpLoad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ac.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/db/dbwebedit%23cc495898.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/child.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168868.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33333.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wnttadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0908.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/command.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp木马.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccfjUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eb/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/dbvmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welfare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/label.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123131.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/dqpgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iroshimahircimc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/llxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubrovnik.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/fuck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Product.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olyoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uxembourg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eattle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pb6odigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/ADMIN/MDB/lennyash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebutler.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oncepcion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/%23ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminruan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=file&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bbcsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/yobeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/y2u8digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apologise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_main.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xatnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0100/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/connectors/asp/gqjeconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_bak.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thepenguin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/ewebeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ackenzie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stairway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/search.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vhnteditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kllaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office97.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/apryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ljjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qgvuupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emarang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irjjupload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ujmeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psukupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/uceyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/219812.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/periodical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lunarlander.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/Edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_left.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_class.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/gxjuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lstgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/oyrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/epuyshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecatestrait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/dxghadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ehimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ghcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trouble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/aoavadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accompany.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageadmin/managelogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masculine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/usruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guanli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imperative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alletta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomato.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c99.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hule.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cnnsc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ahgvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201314.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/thunuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjoin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glasses.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/DataBack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/busy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/nlpiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Submit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qtbfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jrqqtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/string.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stillness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sierraleone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anquan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olomonislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbook1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/PicLoad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wtvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scotland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anliao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilepartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_fileup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/granite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/cwbwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tenderness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/610000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/admin/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/asp/browse.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hartumkhartoum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottom.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/gsatadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_member.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consumer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh/nopass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ibriadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/webeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tyqiye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzlrUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/uxyzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/shouupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extravagant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/qtlcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stereo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wfzyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/75.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/getuserdesc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berlinwall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Keji_IT/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jiveadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignorant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/xqppadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compact.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lemhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/lsbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/people.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestcollegepicks/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgonderin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruben.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/rcoaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vjkwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/601543.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jtlxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admindel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51275127.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/default1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/AdminLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ihpuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfortunate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornwallis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argentina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/napkin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hbraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angorgonio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relax.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tub.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/nkroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/hqmaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wound.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thiopia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info/zcfg/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/politics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oledit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfiletemp_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/did.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/tnoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jesus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bride.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/buxxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frighten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/508509.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labourer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ojlqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intensify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/qwhrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mybbs/saveup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/m.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uila.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/separated.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cpiqupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenni.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glorious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/kutgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/believe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade/admin/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/tnpdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ylnqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sauce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/editor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/vsghconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/nueuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/zxsjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontserrat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewpoint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftList.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pmfsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hxpbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/dpstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/xuczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor_v280_free/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/story.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldhytmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2253533.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uvjrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admini/htmleditor/file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/oixvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/aa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitors.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qodfnew/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broadway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bligh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/mgfyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/s8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lodge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apply.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/tdeqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/nk7ldigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/pfczupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/039077.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/oormadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/aglfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eshawar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmonton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cojaUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exponent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52088.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/txt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuttle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dr3dz_shop_newshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arabel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/fpkyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humidity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/department.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unkirk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mountain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/filesr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/something.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/asp/sample01.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/been.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/tveladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brennan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considerate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rejoice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hans.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellowship.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1616woo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vkjradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ucoxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acificthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/cxijadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6789.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asternsamoa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveArticle_UpFile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascii.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/owuiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trantostraitof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexdefault.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/otayadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/similar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/projector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tlozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aveling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verbal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ikhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/severe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qfyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserList.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nrtjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forms.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cromwell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xgdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginini.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cpinfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/names.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadBar.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruguay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bribe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impulse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gllogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/kyrzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gandalf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfuhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qmajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/esqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/vcpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tryread/forbook1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crossing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/webedit/ggoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/pxkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ynyjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/27.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mirdat.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%5FhKJH%40%24%5Fhgsd123%40%5F%24f.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23wygkcnalibaba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/jteuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/bsohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/bahiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ksraupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rating.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/asp/sample03.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enterprise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qaeyUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/htffupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/323565.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turkey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pulse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esther.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/removal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eustace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dbconnect.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MManager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camille.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/asp/upfileclass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ajbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/qtchadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wdmvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lower.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sister.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intact.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1513.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/chhsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanhot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/qwifupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onnbon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/cbacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_Database.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oci8.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/oocuconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/division.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/0dfrdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cho.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tree.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uneaton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/uploadspecial.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/rkbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinidadandtobago.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ttmvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/burhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reduction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SqlIn/sqlIn_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7th.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/xqbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/docbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slippery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdliwebedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexandra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/developed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/iqnsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadmin/admin/logout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfaceok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fileupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/rbotadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aileng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xlnradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmssucks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102478.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ireland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/dipyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeweb_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/kdruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/bliaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loaf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynydonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absurd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xiaolu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jhkaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquaint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heike_anquan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hgpvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/trvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qdahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/wish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sudan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/@admin/@dmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anthropogenic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123175.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wbtvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/db/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/produce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/nhodupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/dedvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/fuckyou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veronica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/network.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bosanquet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rpudadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/Upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebManage/include/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kcadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/hhiyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111702.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadproductpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilowatt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ststems.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/iydxconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/uktcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/66.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ftgaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0813.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yitkyina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/within.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodwife.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/diy3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/jytpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redbrick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Imagebig_honor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/qqubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/razil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhsaeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbapupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inevitably.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garfield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/tijsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkst.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/jaogadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campaign.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pxsygmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwqsUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backup/databackup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disagree.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/asp/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authentic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexbat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eworleans.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/obmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/never.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/bqxkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f9camyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hull.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/jozradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abundance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condemn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196893.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irritate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclamation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/369791.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrwonderful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forced.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vjykupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0501.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordoba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/xheiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reception.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/yulfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/rabfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enezuela.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/h2r3digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2188.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uehsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enaistrait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/hzvradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/german.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222192.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/dujvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwyd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/kccpservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i'mok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/chggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmqyadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wlxkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/vigeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/qjikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinburgh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminkey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cayuga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appointment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/origin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/hboiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aireng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1wa0qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gershwin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsidiary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lespaul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/vtcnAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/cxjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/oxbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/6k.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ujzkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Editor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uapehu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webftp/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buried.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iverpool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frantic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcutta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splif.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criticise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/asp/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goods.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/sxbbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ehqjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alisa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadPic.aspx?actionType=mod&picName=miao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/y6s2admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/species.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlotte.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xutyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NF_visual_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azbekkasbek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/pktkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110259.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nega.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/admin_backdb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overthrow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/515151.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orava.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eilongjiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inforadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/dhqoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xvpxuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/primitive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/htgl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respectable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lining.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5335register/userreg_step2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seated.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/unloadimg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refrigerator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bangladesh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ovdwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/sywfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4501809.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forerunner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/50706862.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Editor1/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mohbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsInfr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udapest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prestige.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luecupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttsdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmpvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/yesitis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lgtxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewsouthwales.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4fpndigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showimg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/TCBBS7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrlp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyi0digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/gxlxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qlecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ygnyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5270.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likewise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmins.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0914.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/finyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/law.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Images_Save.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/rcfzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mvsodiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wzcbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/sceuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9showerr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gramme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zlgradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/vmxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/stats-bin-p/reports/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortmoresby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/575783.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/z9v8User_Reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xqikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resource.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/calyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0715.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emxkservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decrypt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tavanger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firebird.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh/isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmsadmin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0513.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornelia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nonglin_Muyu/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rklradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordilleramts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/united.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8showerr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebanon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interior.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewFucker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scumbag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Label.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochelle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/psezadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/1596.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emekupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/society.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windmill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.asp?source=/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nhmzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/nrqwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longtounge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_6list.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ermtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070988.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travelling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/comhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farflung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/pphtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1218712.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/vksuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/rcvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rutcup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131420.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/htqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eventually.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himonoseki.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intensive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earthquake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anluan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/rfctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_Dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/nycaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/blwpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/tzipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/guazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideology.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/druse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creature.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/vlgbtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/sainadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summarize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondicherry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euclid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1100.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/WebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/gyepupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mianfei_Ziyuan/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zoutadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CEO.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/see.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hallelujah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileDown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0day.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qjdbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvlinside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thanks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erefordshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1205.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indoor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decree.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/rypvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/blzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/EC_AdminLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/response.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qomvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommendation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/animal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triangle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wucfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/uploadfile/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/tvywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aterson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o7f4servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/fnstupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevalent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seven.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56512197.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/phpspy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/webeditor/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileBanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watchful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/jpnyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/pvcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicesquad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbuthnot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xh_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/romuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haldane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeopardise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/red.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inherit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tsfbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ehkwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarterly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invaluable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0wtdupfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jalfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syndrome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wantpws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/data/data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttddigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6qv4myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/irnyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/jovradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/db/menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dream.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuanqi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/yiseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindergarten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/znfbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1965814.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldives.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bessemer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luemts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/gmwcconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8md5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/gubzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authorise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porsche.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legitimate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other/Festival.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloomer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/digshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cliff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g0u1log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_body.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/vauaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dfuiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_subcate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courageous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/dwswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndiana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/fqyiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insistent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/nxpjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/beifen.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ministry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olumbus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grasshopper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beulah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wtyytmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jjbbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kczradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troublesome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imaginary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/z9v8addlink.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillingham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/vujkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/uqmzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1950han.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/pilmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/honbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collins.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elevator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uajtupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/lkufconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/awhfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nlbfonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30wfdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/oqxmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analzone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wavhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/uploadphoto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/webedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yderabad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rno.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Upfile_Article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check_path.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_propic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onionrings.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fashion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/iuzvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/syslogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ypwfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xgmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/dotiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bt5iqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DV_plus/marry/plus_marry_db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itwatersrand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/urnrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giggle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/cbbradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phorum/common.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/siztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8zxcdvb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/kxnoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xcpkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ruqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vunuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/admin_guji.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/qnaxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilePartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/tnpladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/twczupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p7b4conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_photo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/whhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/connectors/aspx/piwhupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/hkwgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8css.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.aspx?type=all&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sample.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remembrance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eisenhower.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/filemanager/connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileDown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gpzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uetorico.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdsd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udbury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5xc4diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ujamadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certainly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etluupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oven.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o6xycss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/bzbsconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/croatia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garjtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awaikini.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc/conndb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ben.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorualble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/251314.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/lnxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/kvvgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/wesvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lrh.asp/bbs/lrh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ewkcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reece.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/zidc2008.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recruit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delicious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewengland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/fkckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/kjqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/cekwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mbrsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/WebEditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolweb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atandt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhhesave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/akfuAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benefit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/onvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101012.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/diy3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centigrade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ragcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/bxxladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downtown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2nk6digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/vbznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crookes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mxzfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/join.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WeiEdit/Admin_Style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/pjdpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gangster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/kbomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/px.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/erdiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/gkziadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startrek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwqpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/181818.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/abveadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/yfziadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/hefwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23wygkcnalibaba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ws.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gzucupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/383838.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etnaetna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mtcuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_main.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/tukradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8vt2digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploaddd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincontrol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lygofa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli-tw.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/24857602.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/substitute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uching.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/daquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/njysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gekeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uincy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/river.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licante.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vvlladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/xavdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/abc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59238841.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wibvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bonuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idzfUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiletemp_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/mraeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/push.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hello.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/dvbbs7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nopass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/eopqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp2eRegion.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/lmxwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hgzjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crush.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashkenttashkend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complexion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/scomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/gevcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dexter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/szbnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authority.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/ewebedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/yyrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/kpqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headmaster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specilaise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/eWebEditor/asp/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/56.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/goisadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/despite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resultant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ioqiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135724.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penelope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/rvjhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimddownnews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urmansk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/afvradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eykjavik.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/appbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gouge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/houtaiguanli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/livenletlive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/pduwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rengganu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dubois.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/Shop_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gauge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/rzjcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attached.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xmmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ydxzdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/new.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provided.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bimdmanage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6112008.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Editor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ublin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheese.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ftpcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/say.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ftusadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gebcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altogether.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ascaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consideration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor_v280_free/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preface.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pzudupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directions.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukraine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xjahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanfight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/sudmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monitor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ufqeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voguqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/omasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaccastraitof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/arloadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/nzphadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20618.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/educate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/325363.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/eetbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/bynkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/fiipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hicks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rwqoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cashier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Indexx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login_out.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAdmin/ManageLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uvalbard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elyot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lacksea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view.asp/bbs/view.asp/admin/view.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microphone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gwqvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/product/manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/bjbeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urpydiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/yfyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/gsxhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/fhmjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccentric.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/exeqtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/urgzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5945.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/192725.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/zexoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/idyoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1qelcss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/unjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13570.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monaco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/appxuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhcarolina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marginal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ajzbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oledo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/oeueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preposition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gazing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyaewebedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/license.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fubar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostov.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/z.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonderboy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aterbury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wddyuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/post_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miniature.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/yxbbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/phncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/taicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/x0b9upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buttfuck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annetta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/daguliang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/changeadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rootceo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uaginews/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uolgUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formulation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editerraneansea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/lcmwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xasvpanfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distortion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/eWebEditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improved.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/cvtqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/off.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/tohuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/xlrwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foresee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ofjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/SelectPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image0/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuttle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/uetfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/vxboadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_GetPassword.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gvmhUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fkvqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/im.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theresa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssyria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/cnujadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/sktkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acknak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggfb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/gmtvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mogul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/asrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smm3servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/abc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/fhvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronghorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/fmhladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote/indexmana.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initiate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/hdekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewaesave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfiledown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psychological.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8cnnsc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/glesadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scheme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngkor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenfell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contempt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eating.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hysdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sufficient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/172263.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2582916.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Sys_db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vfivadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foot.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/village.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lwjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/sxgvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/1025.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/nqojadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rainy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/jxfpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/22.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drnrmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/saffadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodbye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burgess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/neseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atmosphere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/xbkhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veterans.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/residence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/situated.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1127512.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0827.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warehouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/tzscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/manage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efmisave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elangor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvsnsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ot78diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greece.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/jtqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_Other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrw1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guarantee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/town.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/zzibadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scfilea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/text.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/xrhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/aspadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/toieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111122.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mortal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pk4bkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/function/uploadproductpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/xsqvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4p5xdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/psvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/rhmqAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/abzvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prospective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igali.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/sinyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vjnnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tracy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pandan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/gif.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/IMG/productimg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backupdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/onfzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Admin_Index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jakuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/era.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqyhtml.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/35hamyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perimeter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otanybay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/newsuser_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wherever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/mzpfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consider.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminroot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pdqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQcjb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/uvasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/at.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delicate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/imkgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/614819.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/b0eushop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcymount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmacAdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/power.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteconfig/conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/pqayAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dszdUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/rrgcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/jwfxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/usjsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verilog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visited.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ode1cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/abcnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iwehupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheque.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/htnnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anneng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/geiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/xkidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lofty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugriver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asjobcom/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1812630.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/manager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammered.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pfpiadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unichmjunik.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/omuhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolphin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opponent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imalaya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it'sok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undoubtedly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/klnmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subordinate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jbonadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pardon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fczhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ervcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/square.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bcnydiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sondra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/141119.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/keppupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lyaxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/childhood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/brebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/yztnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airobi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eporuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2100515.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/italy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8zxcdvb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_style.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilippinesthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/gnzyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/105401.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/36041511.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shhyUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delightful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorilla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humulangmafeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welsher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ubgmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/now.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogben.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/wgntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34250359.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dexwsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/yvqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Commend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indhoek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy.asp/bbs/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjdsdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/6pakdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mebb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reenland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ehnpsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetPassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196900.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pqfjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/focwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/rwlvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/57666.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/vwbyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riendlyislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/territory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enbighshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aoazupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anran.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/dpdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_yuzhiguo/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/hshvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jrmrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunwei.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etaoin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3s2ctmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quantify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_pics.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zllm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/yyfeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/ADMIN/MDB/lennyash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bathupdate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziguupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elvetia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/bfxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compression.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_photo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8adigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bcvnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demonic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chk/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/zjpfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evolve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ogbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddNews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nuwvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/otscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overwhelming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/un.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addpicture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desktop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/frxkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/193877.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/bzvgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pic/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultrasonic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kanxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/yizladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/mdb/s8system.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1015.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/wdu9userreg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor_v280_Free/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ktzladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke/data/dvboke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/cwkaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/mylkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haetianalps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/al.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uranus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hhjcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbezwebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0000001.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinceedwardisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mmy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takefive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uneasy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbcdUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/xfkgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkcudbrightshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eigespitondes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/epidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ygxyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xmteadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itmoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/running.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/xeacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanliness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/lskzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/81.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rafqkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xaokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ba1jia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conduct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grjsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iaoning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aroline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgotthardtunnel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editubb/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nominal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/suijadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Product.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaysadmin/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/print/data_1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testguy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hokpMC.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/fndcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0day.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lez.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caslon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/nhijadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ialystok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netwolf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/znjoconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongtinghu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsimage1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/kqswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waters.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/vseyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/browser/default/browser.aspx?Type=all&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hugmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batmobile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloomcounty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/great.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ems8digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rbppupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ejlbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qxxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/odgeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/nwfyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lwtuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extraction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lightning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boots.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardanellesthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/new.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_aspcheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/zbyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/litterbox.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201633.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleeping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/zbszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/mdlbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wowdevil.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ease.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uanghai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website/ad_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12271.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/qgmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simplify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/otquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/382135.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unknown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theriddler.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfiles/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrelake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie/edit/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiawatha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/shop_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lihtupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wismadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editoradmin/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147562.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23454.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilepartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oankwebedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldwar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/mgqxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/onmyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yredmember/htmledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilepic_getimg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/name.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc/conndb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/WebEditors/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counterpart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upright.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/faqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stimulus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userdefault.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethnic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datashop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estonia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mwzbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/dgzjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/109430.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precaution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmxosave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/setting1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/zmomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boobys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ctgg03.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angluan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/589558.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/hxejupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111674.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/bkhpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/direadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_c1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/oindadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novelty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_sql.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastamount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ateng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/424888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/zmjpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obidesertof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxhack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/nrtyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gehang_Geye/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/vbawadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/688.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/search/queryhit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wgjwservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vmtwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ago.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hita.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/flabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crept.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniversary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mighty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/island.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wydaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118013.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ila.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/61.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evolution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/opqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elanesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hujiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hck9diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahua/modipass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteServer/Admin/knowledge/dsmgr/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbDistributor/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112822.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotweb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/ewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pursue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminis/ad_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/twaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keri.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certainty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sacred.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/atzdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fireman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost/manage/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rezjonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/bmtoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23103.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_message.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_edit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/apweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fpxuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_subject.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernandopoo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/569853.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remarkable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jhecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/epvnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profession.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expertise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he1p.asp/bbs/he1p.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smhththt/manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Backup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/grijadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/xxdfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebenezer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhythm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pnkhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/logout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8play.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/nujcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/195577.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/kphqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boywonder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/zzz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_Restoredata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoenixfiniks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/nmsqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woobie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/igggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UpFileSave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/framemaker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/qzecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/yihaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/obfbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acramento.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/lwlxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/nrbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/eudwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8log.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/sicfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/qlxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ksvmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expedition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuqiu_tianxia/1025.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_ads.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ixhbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/diy3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/z9v8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resident.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Databackup/Cnnsc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5098.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anluo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ginyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/uyabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolivar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alakkamalacca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrdbonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SubCate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartridge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/mhbeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.14159.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/booradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/lxybadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooperative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/last.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpeg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/stedadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/mocpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/bxeeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ikxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ughoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsopUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/not.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/already.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/wsweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suntools.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ouebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budlite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/background.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fruit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112310.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/tcngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/striking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angleng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfiledown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/wmnhtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/zgocadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/gwksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/oomhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_label.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileNewsPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yguvuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3u2rshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmagh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/Upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webconfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwidupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boxoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loucester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upperclass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electrical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/t0tbcss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlconf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash/downfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hard2see.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunasandwich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meap/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginform.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/urgtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exicogulfof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lntradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/qqcoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hrotadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specific.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uuwlgmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8phone.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igtownshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cargo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/tkexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vuttadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improvement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woaini.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0713.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/bsssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoginAdministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80sec.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correctly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntanlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leading.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rnqytmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqyhtml.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aoundeyaunde.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complaint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stranger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decrypt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermanage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conditions.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/xigiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/q5ihdigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bwhxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irishman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/small.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dvboke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estglamorgan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/you.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_image.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wallet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/down_addsoft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book1/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile/569853.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5829.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anybody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backrub.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/wbeyAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/qbdhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zvbbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noxious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nfxwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Library/DbConnect.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obekcubi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/jsouadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rimsby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vslgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/pwuiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds/sjroha.asp/ds/sjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xpupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpv_admin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000226.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/ewebedit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yelorussia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iloveyou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/332195.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n8ftmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qxtyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/hgiladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vdicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjezupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anteng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/efjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gyctUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/wbasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintained.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/nstzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/policeman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortlouis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/rzigadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constituent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/little.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/qhnradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kidney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alamanca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoconn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dining.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/open.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evans.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fridge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/white.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/week99.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttmaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/kybpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/zicwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/iorcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/on0jdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ztoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ati.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/tcigadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111168.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/poqaconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/cbjwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhaust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/sysladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/qwepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DV_plus/fayuan/puls_fayuan_db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikoussi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suicide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoped.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phreak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scream.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingyangmeishi/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/sqzvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temperament.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htntupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whither.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawingroom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/functions.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/kxdiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/njdaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/rfvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cronin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc11/%234ifkejuwemcjew11.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbscon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discjockey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/died.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penguin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/rfgdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mqzvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_BlogData.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/140499.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/sjzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faultless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/web_admin/inc/menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/mmkuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faulkner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metallic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/rpuqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile.asp/s8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project/webpet/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ieres.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_sqlin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/urocadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13501976064.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ktioadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/index_manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3137278.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/completion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiermount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/log.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ussia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perception.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/yzomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/asp/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wwcnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madboy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecudupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaopin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/common/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overwhelm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/370624.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/rtouadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/fypgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UpdateSoftNum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/connection.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/codea.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broaden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mvseUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accessbak.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/05105807836.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laughter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southidceditor/admin/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10988422.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scholarship.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopeful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srael.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hospitality.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminmenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conceive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qiupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openhagenkcupcnheigcn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/htnyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inadequate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/tbl_create.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/cqtaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/epwmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mtdradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arsala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2100.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rnakuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzfuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apeverdeislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervisbay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elegant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ebzdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xypiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_Photo.asp?PhotoUrlID=6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/lungadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ruccadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stereotype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adler.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/gmu2User_Reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131421.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/root.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rising.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/aqcsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrorist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/zvqvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunlight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outdoor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rendered.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/iewcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qomnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/gpuhconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nreruppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/blr3digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/efnvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mjzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/number.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileBanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldhopiggen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingayengulf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/qylzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/srppadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8feixiang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/pnycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1229.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gauss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strava.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/eeggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chleswingholstein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Up1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alberta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hz@host!.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/code.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/rkbnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=../&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/clncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rumor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steph.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/cgksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mkeeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SPSamp/AdvWorks/equipment/catalog_type.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nkwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rkney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/15.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlcgadmin/webedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/tpcqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunmore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/qsicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsedit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koreasouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WeiEdit/eWebEditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawaii.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indispensable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nerve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy/isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/wwepAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/icxkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/hack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blk0digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/afyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pfhxnew/ewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/s8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advisable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/upload/aspx/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51012674.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/upfile_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/qwlmshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ivazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/69.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/knbjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mourn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occupied.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andxUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temperature.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/621119.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1349.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubeck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vxcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/220737.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs_save_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/qtxbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/588688.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0b9diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/small.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caldwell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/tdwaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/sntoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/flash/downfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/dm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bypass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/tkdpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uproar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/foadhaiyang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difference.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/lfdtconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/dhkgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1807420.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileservicestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimberly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdpdadmin_set.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/9jc9SelectPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunnel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/yqntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amascus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hongke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desmond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autumn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/518578.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfordshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/cbnzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/mnvpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geology.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conscious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deliberate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiquan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/drhjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/xvnmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcpbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/wmabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vcsladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erupt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/aemnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/oqdpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wwooupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/pphyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ioowadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jmaiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/615112.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/81qaupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/z9v8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chardonnay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiffdrink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckaduck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liquor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_jssearch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok_pass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proportional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staring.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/cvbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affirm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruler.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ammyuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Images/config_inc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsqicmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/275275275.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/%23echuang%23.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8register/userreg_step2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/skcwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penetrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2222222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vazbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsUpLoad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cipher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enclosure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/qp6jadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampagne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadProductPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/Admin_Style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/national.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metric.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/kybgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oolgardie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paradise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hundred.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/link/link_edit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_name.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovosibirsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Admin/z9v8BoardSetting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/cfzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masterpiece.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/UpFileSave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/yexqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/owjwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manege/WebEdit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/ftb.imagegallery.aspxttv.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unixman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanfrancisco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dqaoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lounge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impurity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it'sokay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kmbkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/326526.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appoint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/er.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flaxman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwfuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5xc4diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centimetre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dopey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555333.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ntcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/qbcdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/dmchadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raising.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nczxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/csenadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggong/ewebsoft/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtool/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiphong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1069.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_NUpLoad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/tacaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/z9v8User_Reg1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bagwoman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/pateadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/riaoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/dyraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/aeyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meanwhile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dramatic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0539.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/WebEditors/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888/admin/%23720505qazsjroha.asp/adminh58888/admin/%23720505qazsjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lois.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/govern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/external.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ztbvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hildegard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_master.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonsense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oybzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copperfield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/whdaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alearic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/bilbconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/gbqpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/sqipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qewdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/fbtsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreadful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortorico.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/lcc5upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456chen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crisis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aida.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upyours.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wbjqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/academy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/lhiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/vdlfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oask.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halsted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tungstendata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ikfuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/519758.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uxsourcesmont.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endeavour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emptyhanded.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/szdmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/24.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bureau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invited.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/config.inc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/+.+.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qatar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aribbeanthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/pipeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/current.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/save.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/35wgshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wswkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hnzpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/gbydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourteen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ownern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gzqgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davidson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/stcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/cdkaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/rdutadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/uesqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/qsmcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vmzkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/gtrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superstition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/push/pub.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hgb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/super.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/zcnxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontmartre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dr.demento.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hua.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpu.aspx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileDown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/xpwoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3141526535832.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/forqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_folder/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qojtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strategy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/hwwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/;lk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_files.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evres.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/qdmfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editorial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnished.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/least.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/aqsnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jwsiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wherein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/date.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/41x6digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/qbomupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shameful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wpefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/snyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uppic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hlledigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/qdxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/sleqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/nycdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/segment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/jtbgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/162888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ywkcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qgsnsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtvgotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smuggle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hy2005.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/hkpsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0846.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indifference.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vapour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ywxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quktUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reader.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialogue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/rxtaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canaux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/eweb/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13801705365.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/zzjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/gncoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transfer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precedent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0608.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id_pass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/zsviadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dearupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managers.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/tixvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/nemvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member/FileUpLoad.asp/eWebEditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ahscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ynvuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/di.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/acxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23bbs-118-jh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/yes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prgfotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/miuhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/upduadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebsoft/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gxruupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulletin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5hdushell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ownership.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patpUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135135.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ServerInfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/132333.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shop_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harcourt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tropical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wfhzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacchus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/clyxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saved.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ocvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/302534.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/tuvsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/szyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/icxesave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdrom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/rljqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rejoin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/kdxxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/411937.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/score.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/My-login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs2/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecology.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23wygkcnalibaba.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurchill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/mvlgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ooqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revenue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/szdoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8digshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scramble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/64cadiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qrjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vtluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/police.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23fdaeg35@%23gds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/raqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hffysave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lndzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221251.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/uqevadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?type=Image&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccamekka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symptom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserSetting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Saveannounce_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lobby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upload_bm1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwqcUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/pajkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stalk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfghj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/gpbzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uqgfuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/yqeeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/uvjradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilePartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abrador.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8BoardSetting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEM_User/admin_php/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhehaote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/dkggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okyotcukjcu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/047387.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ublgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/kqmhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owaitkuwait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statesman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/we.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainsail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbqncz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/xzrfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/cwdsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/jjzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vaccinate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3251093.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8userreg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/eadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Super/Index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aima.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonsense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onrovia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experiment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cqezupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/fjkwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscription.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egoiul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8md5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkl;.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/pmnaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cai/admin_menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/pgffAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/430301.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chapter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Message.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alonikasalonica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/fuck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wweiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/web/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/gtimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohhot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads/ad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jgivupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt/modipass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dentist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wtiiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pieces.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hgfaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/bnhvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pengwei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/controlmain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/von.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/west.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jgflupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enverdenvc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/kdtladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/kjytadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix-to-unix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/szsgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_files.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rule.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/feguupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/nicoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ship.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpwsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_upuserface.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ymnsuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hlcradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranaki.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pf_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/arxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/spy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/break.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aymanislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tyhfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distribution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabella.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8User_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/seyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e8d6ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hemingway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newzealand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junior.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redundant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlin/sqlin_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/vgjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/gogvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1970.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ykfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/riowAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/eweb/idggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/itoladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wygkcnqyhtml.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vacation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dos.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/x0b9upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lujxUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/kbcvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/vphjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/line.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/chkeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keewUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysmanager/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xtvdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/rkldadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddisababa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pollute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/duhnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/krrnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200540.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/nvquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obedient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bennett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangchun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ngquupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shivers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olkestone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1229102.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/581525.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jswxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/yrqeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orwich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falkner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3a4b5c.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tzalupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor_help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/qnxyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spring.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/otqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennsylvania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gumption.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/gvbdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhzkUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/qxxjconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/kzkmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sounds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emotional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reservoir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/din.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contention.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/nstaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/please.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gtsradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/lmowadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/iwjoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kmljadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clerk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tragedy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/professor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5208.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/eyrpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorges.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hjwaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fd_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cookies.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deduct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0613.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fled.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/yfvhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/oxdhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ozbnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logsys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adela.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llentown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gzgcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/aitnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxhd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscribe/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spanish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Up_BookPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agri/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminseo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bench.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/LogOn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dignity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enerife.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gates.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/kkyduppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xqpzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.aspx?source=/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/iumxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/15652.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wpviUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/area.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/fzsoconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/aaetadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costello.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrychristmas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2089.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diminish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/nfcdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linktianjia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/course.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/cmraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raleigh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadPic.asp?actionType=mod&picName=miao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/sohgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456789.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyesight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up-to-date.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/view.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/third.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frohman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/push/viewcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robyn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/yniwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loucestershire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proportion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/366.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/measure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xmbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/dioradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eliminate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skiing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evangeline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk997.asp/bbs/jk997.asp/admin/jk997.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/nzuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agri/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456654.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diagram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/zagiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gjwdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vpzkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r12ydigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vguhsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodevening.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wtipupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/baseinc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appendix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expansion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twckAdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boffin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asset.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/xuibadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/dnamadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mali.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19680918.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgsctmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clause.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everyone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaxxadmin/editor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuador.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/vuuxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dpb0tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/left.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/rltaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/gtehupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monsieur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/iqmqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kettle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin/123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/mfukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/uagkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/zklladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Edit/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yacht.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodstoc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ows_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xfnxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/263668.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wvubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/kyfzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.asp/bbs/css.asp/admin/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mystery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iscaucasia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/jqqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewmexicc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3344520.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakthrough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/zjirconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reetown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ungfrau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plump.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vpneupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leslie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jhgaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persistence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/do/Admin_Style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ikgnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inference.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ydigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0510cy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peru.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/rffiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/safsd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newuser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Editor1/ngvuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1766909.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database_menager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tajikistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notwithstanding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shehui_wenhua/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supply.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/mimdAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/nxfyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complication.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/210boy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ttmxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enmark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/xftpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45676.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivera.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/moegadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qywsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horizon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/tbdmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ipgaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forearm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynmrewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cy/zzm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/srkfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abroad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/ws.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoyle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/Admin_Style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alzburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/eesyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/hcaladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/built.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/upxpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetPassword.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/qhhuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydrogen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/series.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/qckladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hwioupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ecmnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xjntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/yqekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/dtgkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/production.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retreat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/9vlndigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110110.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urchison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxdmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolphus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/common.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login/register.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/mxltadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ikbeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/super.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/pixxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/rmiqAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onstantinople.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/gosfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ixacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft7hdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dp/scene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminLogin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fbbjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/aohsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritishcolumbia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8hua.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fancied.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/note.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hairbag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/yvsaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/sibxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tzdhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ahlhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/nzefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cmundigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonghu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dhpnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/wysaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/coktconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/524524.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/fllvsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sybase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/yp3vconn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anagua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dcqgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/epnradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/202660.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sparrows.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findaccount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rumqi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ec.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/mogeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xhncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/cjgnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vansmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nmfyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fixture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/viozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decided.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throwing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/fckeditor/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uganda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humphr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Admin_Loginx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/republican.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/amjhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wautupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exjoadmin/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/igpoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theorem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellowstone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoopie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/hnvkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harsh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/SERVICES.ASP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harbour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fkbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ciu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/aasradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telegram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gofmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/nuekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vsccadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/gyywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/cfkhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aspinfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/dujptop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adura.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hemisphere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyxuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/braindead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/bbuxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menber/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/away.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulogne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pasture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/lixkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/low.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxxobbs/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/flxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initially.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/four.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anvils.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wsgdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/308115.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/313726.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/lnqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fckeditor/editor/filemanager/browser/default/connectors/asp/twraconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fvceadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/fsmkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kycj/kycj/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enterprise/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/bitjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/512120.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/hzkwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/second-hand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allenby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alicia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hush.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ajagadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8digshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tfwvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/pvzfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advanced.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/iwvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zener.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminceo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4th.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/kgwmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wounded.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/userreg_step1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vsreadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/swqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myalibabainfo/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/lzdiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seriously.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/plohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnival.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/living-room.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bliss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lgnaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disraeli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg/s8user_reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deputy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/picture.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/fvxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/zycnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/system/DatabaseManager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwardlake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fouryears.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/maicuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ull.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.asp/bbs/test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thens.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uncertain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/229376.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/gbmzconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0615.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/znqtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/pwxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_logo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/sszqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ujeqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissolve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cretin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/crqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nchorage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnaw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gh45tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zhygadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fowler.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/gnteadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flavour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arkhammount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivalry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunbar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communicate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/dtpuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gldl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ateshead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zscsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/connectors/aspx/piwhupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/lefnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lborgaalborg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/abnjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00000000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3202660.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agoya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/galoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ogymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boobie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyjgeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/xgswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8zz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/console.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lebesgue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qybyUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfranciscosaenfrcnsiskcu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bdtnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indanao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/symnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/come.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mlbwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/describe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/lpbeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rks/codebrws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b0nndigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electronic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/377227.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/uzxoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/try.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ekong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/swnyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vunladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debug.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uerlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/py.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fetch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/progress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516885.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMenu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/korcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileDown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zinc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turnover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adapt/adapt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52330.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ad_edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/x18bshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/crseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qtloadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/515149.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbuda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13701720656.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/boiuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smooch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9g42shell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gross.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rras.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coarse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/zzxkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txjvsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwyzUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ydlcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/rjssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/epjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gckaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fringe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/luxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destroy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holtham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/prkradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topography.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marietta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/egrrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/achsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xawladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/vvweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nyveupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/Media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straighten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/yiavadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/gc90userreg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/okuuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/foot.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuzhuang_Fushi/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/yqbkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cokeisit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigguy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/hpxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/tlbvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idrnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jghrewebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Function/UploadProductPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/qkddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ugkaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/nquxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rp9dzz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opportunity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1164.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noreen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haggar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wl/mirdat.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indulge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmonious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ktwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teeth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uznuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/elbwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flora.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gninadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlptdiy3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhyaUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prior.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siupupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_suftpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wqgdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/lifmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/academia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/cgzeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/width.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/aqkdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/i4yfdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/qevmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thabascaathabaska.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/bqomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rhtjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123qqq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/returns.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wfwrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/zaavadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uvkyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antoinette.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vyjssave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipairislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6k.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1011.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/region.asp/region.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/dyteupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ASPAdmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lymouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunshine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30289.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/fzezadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pizza.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euphemia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/hhsqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/tinkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dangermouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/journey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/jqhfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issouri.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SkinS/Default/Images/shtio.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/uuroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entucky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1268.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extinct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13701845614.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tax.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/system/DatabaseManager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/stjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marshallislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/query.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troubled.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/mezxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longcock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/togo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occasionally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/t8jadigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ctopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/railway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/kwmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mem_bin/remind.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hz@host!.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oriental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unigrafix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8hgb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/google1bb9e40669bc959a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/39.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112121.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Select_feedback.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ESYSManager/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/environmental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thereby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration/system/Upload_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germany.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/axouadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unisia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/wxwkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andalay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reply.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_adpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occurred.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0081.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheesecake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/lwtladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/following.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/mhvzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wupwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awesome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knqkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/xzgtsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/push/viewcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/axfjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/m.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/window.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan/scan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yzmoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/hcfqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hack58.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/base.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zzm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hailand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swanassouan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risianislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/eucpdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/knevadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/sgucadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/picupsave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pension.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ibfidiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wyadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_info.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiffy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ntjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/go.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adverse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/kpuyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/bjmbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feather.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polarbear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ysijadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/ewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/s8data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assembly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds/sjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/hckuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataShop/datashop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200438.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell8.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolingbroke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qwtqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/uoiiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516583.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/cqhradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tnxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnqfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/middle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colonist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardinal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tat1e.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gulang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdigshell4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atowice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sulfur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stationery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cross.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travel_foot_show.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upwards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comoros.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/successful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/rlbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/gjioadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1314520.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/jllwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/fqufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/njakupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/command.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laughing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/report.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/mgjcsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zqcnqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshe110.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/lurmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_set.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/lkkwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enninealpa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advantages.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/401114.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graph.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gratitude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dyshadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/best.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zinfandel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/jlpnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/lhstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grocer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particulars.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/jdoptop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/vswdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dvmbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msmir/5uwl_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/check.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andiego.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/iuhaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/mavzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/helps.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/file/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbalah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/hqeyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/rkdjtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upflash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/err.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arneypeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/index1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1288.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/scqcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jmpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/pdemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ships.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adduser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xkhnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/gpdcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivorkrivoyrog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/well-known.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1104.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaxian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imondpeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sod off.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/factor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/sgizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yqgnotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/gfruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Wdit/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_ProductPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/vwyqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/upbnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go to hell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/l5u7digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/store.cgi?startid=../etc/hosts%00.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kpgfsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/cxmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/rmhrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/fosladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newusers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ufihconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increasingly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/tbfuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163163.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luncheon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/i8ytdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xpyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/efhbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/DataShop).asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zho.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3130.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/lhemservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/reqvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzbat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qtpcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25acupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lfgladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ytreadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/awmcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hats.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/olgradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell8.asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chunk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subjective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/qkraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/znxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccraakkra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerobics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/xmvuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irmingham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caxton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fermat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfiledown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/btakupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ynhmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethiopia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inghaihu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/tbymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agioupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sumbura.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orquay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbcode/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cbhzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sihbuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/chaxun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ffjtupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advantage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mauritania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/sf2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chosen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schedule.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loosen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f8y6digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oteborg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/jwmeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yftbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldwide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortcUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33355555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/cdajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachelle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/211211.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upchuck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denounce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debbie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rectangular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/jkhladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuffy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5183.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landlord.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitchin'.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/hxiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/kulwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiplication.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pump.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/measures.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/llufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/mkbxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Label.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rushed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51marry99.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shujuku/s8movie.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/getzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/occtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquiry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5814442.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alilee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bokbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frenchfries.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ojkiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/yzwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/tqtyconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/inscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/qzeladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/context.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vqupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/sj/sjroha.asp/sj/sjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manufacture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_DataBackup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration/system/upload_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/559104.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunset.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fearless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cy0adigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileCasesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pk.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vietnamformerlynorthvietnamf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/bavqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/clgaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3800cc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vryuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hksaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hackred.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equatorialguinea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/code.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/puwiconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell0.asp/bbs/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ajppadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8spxg8.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ohktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Photo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yracuse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfiledown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mvxhkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_jscreate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/czgbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/otfnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uncover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bevkuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/510613.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/shpoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsys/eWebEditor/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/%23GBooK.ASP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/tnhtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/491111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/tiyisw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137303.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/execution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xxx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/fuqxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/61515.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_pics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ehemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vojfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/active.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quixote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bfximyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/khqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/gazeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/root.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/arabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fascinate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excaliber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_newsupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8kao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/false.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rdcladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comstock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satellite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debora.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strategic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Preview.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/urwcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deceive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennssee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11021969.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rssfree.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileNewsPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.inc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168602.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/wsrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/znhqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delivery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babbitt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mercury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/option.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j5rmmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buzz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lliceislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regarding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.asp/bbs/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anleng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/save_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applepie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/zoslupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/193316.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/gqqoconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/iyxzAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/bfcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8showerr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/jmctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subjects.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pm7rkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/baqxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/unbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diay.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.aspxiration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebManage/module/eWebEditor/Upload_1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/unrqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/pndxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/qilxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excessively.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rvztkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xiaojian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/fdzmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecpgUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huriver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jones.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/drjfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybbssaveup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_ingesave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llahabad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qvlaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/nycgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mflpUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/nhgtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s7vcshowerr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bqfpdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/idbzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpphotoalbum/getalbum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ddrsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/career.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/c8smuploadPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ohneadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1188.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/alasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wlwlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ouobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raincoat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8NewComment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwrwb5w4btw4b/223fdsagte3q4t65q4q6543/%2370iz0qj8a0o1ffbzp6m.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/rphxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Message.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/switzerland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entertain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/izlyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgetpassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devilinside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aszcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/bxwradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characterise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rr.asp/bbs/rr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/d99.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qopdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exploit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_sql_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirksen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/pybeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn/admin/login/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121271.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ullmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/pezradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_help.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/mblvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clyde.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ysfeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMail.asp/wulin/SendMail.asp/wanmei/SendMail.asp/mei/SendMail.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyklupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/jxosadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vezhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/mcztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qurkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.html?Type=/&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8down/Nclass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sentence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centimeter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/avxpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/them.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateASP.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pnhyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goaway!.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rascal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/nxsdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decisive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130116.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ksyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/green.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8dbcoj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/yuhzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subdivide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akodate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/bvhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tuxsuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caesar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/qtebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neither.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rankfurt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dub.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8flash/downfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/lziuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/db/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/bxnnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erchtesgaden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/november.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/cojjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/koqiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ames.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testimony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ida.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obedience.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/madgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cms_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/test.aspx/info.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/po.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ef.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/apxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asablanca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330330.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nature.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/xvvmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/bjuradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hx_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/File_editor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/update/update_baidu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hdcladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferrous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleanor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/want.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/linsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/muakadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/qyyeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/Test11.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4444.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oops.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vault.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ebncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alec.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000u571.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anisleof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/differ.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xzmqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jojo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiedam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barclay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ways.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ysvradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lights.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etherlandsthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25910.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sofa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/cseuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/bispadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electricity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwh6digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rooklyn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mauritius.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/njlfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196418.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/twazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaotian_qq/743.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzgg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xxx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scientific.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poverty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imarron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/browser/default/browser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untingdon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accessory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/zdhpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Root/ShowImage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/yutmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fnjuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/tccnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warning.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project/webpet/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newup.asp/bbs/newup.asp/admin/newup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_style.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/File.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_news/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/giozuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/dyydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_sqlin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rizona.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wlavupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/etizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hornby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/wzrxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/232174321.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/min.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interview.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/top.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cantor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/push/s8pub.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/lvwttop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/50245024.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbojupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/管理员.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hz%40host%21.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easylay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/fhxkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/DatabaseManager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icronesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminis/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager/Edit/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/424777.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sugarbear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/iwoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hvdata20060309/asmasm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/yrduadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2400333.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ublnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r01qdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/later.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/admlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flask.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hrnfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/segregate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowNews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeepcj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/jmwhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/021975.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aque.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/suvkuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlwl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/mtsiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/vwneadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passionate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xxfpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/261200.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klahoma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixtynine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glorify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3528088.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinfeng/lb7blook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ajvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wept.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ManagePwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/tmthadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnapurna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageqd/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firmly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3450381.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/emkcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0227118.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_private.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analyse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/several.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/rjaoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBArticle.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmleditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/klunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/go.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ndmpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nursie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/6k.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/xtuqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/230711.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocakUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/78aodiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6crwdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/dhreadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/acliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/dowqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ehdvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wytdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ukxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascaderange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/ztjdtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ola.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_database.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downnews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/migrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/8k0eshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0jopwebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/afxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orrientes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immigrant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/lrkgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/dukasave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rmzsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ergen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2m8ydigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/oloiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangxi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/okphadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obsonmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdmgUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/oyjpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/dyafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/addmember.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebellion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/uploadPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_NUpLoad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qq9.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ubbedit/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uizhou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ebogadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnmk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvik.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/6qxdkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/jawcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/here.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ladxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compatible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vnskupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/kdxjconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/wpmjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/vwenadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salmon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kohdup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jagger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23720505qazsjroha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensitive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tangle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_ProductPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xvoeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ictoria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ufpzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hy2005.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peacock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/Net/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/raqiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trathclyde.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ifeshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunaloa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/naxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/Cnnsc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/xnbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rqzbgmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200020.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/uicvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/HelperScripts/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.aspx?actiontype=mod&picname=miao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/hgmmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/kxkeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dimxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/object.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.aspx?Type=all&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/upfile.asp/vod/upfile.asp/music/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/new.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/awpvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siaminor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uphrates.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/dqpjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yello.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxang_Manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/agzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safeguard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/yuljadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/te9jRegion.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/jjzsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ewfwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_Image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disagreeable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/bsmxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/115cn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_top.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/riedadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftb/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/sqtbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criticize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corridor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/sdgjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ndaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/browser/default/browser.aspx?Type=all&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/159832.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proved.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/few.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_asp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigroom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictionary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_sql_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/cgdkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlouissntluis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/xcbgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/zbyeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/319683.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/format.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/wpwiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/button.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58460532.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uulxUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gzyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhauwtralia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/zvyiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascribe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coalition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tockton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuckoo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jlegadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/end.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jwbdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalyst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/tvvqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/down/upfile_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6130.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/seerch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1262301.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phxcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ycssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/qawnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oseau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/wkidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/asdf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/jmbjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112205.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isbon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/evdfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/System/Userlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edgeworth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcde.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/mhyrtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3204211.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/bueiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/advsearch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xlyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/245245.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubztupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hacker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1023.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/gdxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inchester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OaLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/pisxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/caohuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/enxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isza.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Flv.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robots.txt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopkinson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/hxkkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8vv.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d8htupfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/Edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/khotskseaof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/59.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wqvmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baffle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vaticancity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ihtfeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deeply.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/itjiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathematical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminadduser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notebook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/pptdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canvas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employ.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0328.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nglishchannel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/eendadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8Upfile_Article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fact.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11139753.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanroom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariadne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wsknupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8digshell4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/smyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eloquence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ocoeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_see.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underlying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceedingly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm/Editor/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remember.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/090909.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_styles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/nbbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/ftb.image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujumbura.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8daoqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invoice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/228359.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auto.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/tsmvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ndvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_browse.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6d4hqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guan/guanli.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/able.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130031.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/cbguupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouakchott.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leutians.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/megan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittsburghpitsbcg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uffalobfclcu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hcmqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0523.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/wxrfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uaihe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/uolgAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/myvfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadattachment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pblog1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/rcqpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/wgkzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/kymqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzhsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ukxxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/oqxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/hbrcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/mmhdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/218630.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eecs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8zz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iddlesex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/eyceadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/hcxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/failed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muddy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hemledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/czjjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt/mibaoaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110400.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lun8upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/info.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/zvryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manbat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigboy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anweng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1115.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/rkrcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/nbupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butcher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nourish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/zbpmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_sql.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleigh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appliance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/212322.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compaq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/zrrqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassette.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vqveadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dtest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asjobcom/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/bjfpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tweetheart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artagena.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0270861.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminusermodule/adminuserlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/pgauadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qbccadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maneuver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/nfnwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emyuser_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melissa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modernize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consumption.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eastward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/qgxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/83.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/mwovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/xohradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/yvqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/asdf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/sddhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qvhvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/apbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shakespeare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahiablanca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agundigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degree.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xax4myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guineabissau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wlivupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v6krdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/pounadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/xajiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.3bsd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_pics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piano.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlawrencegulfof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/btwwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preserve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eewatin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/dfhladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valuable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/these.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wnepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdigshell.aspdigshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inertia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duplicate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ives.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/bjwgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eweb/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/89jkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intellect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gvmvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absolutely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eorgetown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links/admin_link.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raguaiaaraguaya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin999.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/admin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jizpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intrigue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilelink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/hacker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_info.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/slgnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/avexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/tlomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/tqsladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Website/onlinedd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminhh/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/p223digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/uhsqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/tfpdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iuqwUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/wmneadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/nvuqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/rsvuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/omtnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/uspradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intercourse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/r01jdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ezvpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/seerch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/rpyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cube.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/fugzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youareok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/again.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dihwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bgryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arranged.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brothers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataShop).aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/comkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uaeuservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/last.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webedit/pjgxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adm_menu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yefpwebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ifzcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplieradm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lrh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/kbkgconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/rdkcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/uubmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Admin/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/wgubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wtgladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gentlemen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/149880.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/Reg/User_Reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kxhtUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chicken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaoxd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/NF_visual_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/properly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32103210.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzbekistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perhaps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_AdPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok_pass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whiting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authoritative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/dzcqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadhead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordeaux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/razos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ztlyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V4.2 _data/I^(()UU()H.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ws.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/tycmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/dpcgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lambda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/growing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19631989.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3106081.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/lzmbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register/UserReg_Step2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guoqin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sooner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfilep.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esthetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/uxgdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elinor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/xqgwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/present.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quantity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/query.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/lckzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/enda.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/wkbdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lgeradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desperate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyhow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/wish.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/whmmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashmir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ifjyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/higpuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propeller.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soluble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/128626.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enroll.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/veqoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8waqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1425.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cameron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancouvervaenkuvc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_download.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/elyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angmai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/kbdnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/determination.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/political.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gramophone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arisanmoutains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angerdecristo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/induction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ypjuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/pwdgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filesyst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/hvjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prophecy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proficient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lubricate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ayjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bamboo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileServicesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ompiegne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridgman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vjzvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/531788.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wvyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/swbbconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fqrkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expression.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difficult.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ering.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/eozladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/journalist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/xziradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bedford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesterfield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ylbjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/f34iupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hooton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/slntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onduras.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intellectual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/referee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5544.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carbon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_setup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/jnbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sjroha33.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/zeesadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haulagiri.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/lhwladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otosi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chord.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmpcat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoelectric.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flv.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ologna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omersetshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/345.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uayaquil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/coubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/z9v8shop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/things.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3alqqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaflet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/hgkzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xavsewebeditor/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/cmtradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cucumber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htm.asp/bbs/htm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wjjlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/rapvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beammeup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/rjixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/pwgoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/bkjiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hgzaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daoqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furball.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/kduhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/product/manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swamprat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rygwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hovcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/okieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6014502.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romagnon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itself.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2588.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clayton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/mujsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assumption.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/103301.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/eweb/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/js-pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kxlcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almyraisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1961.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/imfsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/sbyyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtuous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_del.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webftp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/champagne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flutter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hulradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ifmjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guilt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/023000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibelieve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/cltjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/phbwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/investigate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nikzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/gcjzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/khfhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontpelier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101887.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crockett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jsCreate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/thoradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanghai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/wngiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brisk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzdhUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meaning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_bm1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/nxufupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbotupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/head.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whilst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/hhuqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliningrad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Editor1/scpbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/fvphadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/princeton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athurst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/hlbiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/fyqjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spokesman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/5leidiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/divtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anita.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmdasp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21127006.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007/Admin/Admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeepcj7.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/lhssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/tkefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ditch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyisw.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123010.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/z9v8link_add.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hartres.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365799.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/pzinadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nderbyland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eymouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/vsabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_download.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/nuaxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rfoiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/dqkzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kzzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibeleive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/616616.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mostly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoghurt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/systems/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/code.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/521.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/nakfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/envelope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/398203.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/qvwdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salakl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esuvius.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1bs7update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutiepie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1300321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121763.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/uzdnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/fidbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iudb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/showerr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pghtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/nuymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/xylbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obago.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/upload/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confidential.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electronics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/hseqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singapore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/zpwsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/republic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/uehvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ayhbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsuser_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/bgrpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usenet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_setting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yojxadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailbox.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201615.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tclarlake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/lynxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/bdntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/bb_smilies.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lytjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lighted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/unanadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/b2b_sysdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dbsoj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ihefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admitted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx/modipass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/st.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numreditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrymore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angche.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4p5xdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atadinmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orno.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntan_shequ/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Editor/rxdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/jtfiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/qctradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/field.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card/tu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/hpimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/rxbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13805866477.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131431.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmqcUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/vlcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userslist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.aspx?type=image&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycenae.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overhead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/pxjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hjptuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuwait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2m8ydigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/mtksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prairie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0vydigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/uadpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/admin/Edits/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balloon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gesture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurricane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/6hywupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=/connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111830.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/rukaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadface.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/585858.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h2eyupfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorraine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/gssvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Edit/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/316984.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhengtu/modipass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/xkdnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/mgeradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hhhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prosecute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallhips.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/uvdoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kpikUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft/2007.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMail.asp/wulin/SendMail.asp/wanmei/SendMail.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superficial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ice-cream.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/md5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/jehsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?type=all&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stationary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenaway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edriver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Return.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vvnpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jellystone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/350984.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/add_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/12912.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleakala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/iameadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huggins.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exposed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5113.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520520.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahiti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transmit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ipngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appreciate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doughty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/egjladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/oigeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netboy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_UploadFiles.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_fileup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/tdxladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turbulent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs/s8pags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/no22.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grammar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/240000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovascotia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squeeze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nkara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lived.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qaluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/nhwjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_link.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wring.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complexity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102400.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usquehanna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5th.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/sanbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indirect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/otzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lameda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/User_Space.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slept.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tinman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/eiztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12135.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/346900.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpspy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahamasthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/uuqwsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55kvqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiderman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sugar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/zdstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/kkgxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/LogOn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yiydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/rcddAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/db/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/sjtuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/76.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qfloadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grahm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/fqzcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yv44login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michele.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8frrytuiidf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/otfwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/403705.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/nmbdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/must.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consulti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/mubaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1213.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dozen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/Reg/User_Reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millimetre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touched.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/mbxmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hidcsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckphp/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/311922.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glancing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5180.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theoretical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles/ybhz569853.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/salakl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avenna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gwgoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fundamental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmedia/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223344.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/265333.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/vqqaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zsfvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/neacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gypt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trails.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilkenny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovdwinstall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jbgvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sauvignon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fzdnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmy.asp/bbs/mmy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathrine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mlggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anecdote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/lnasadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stxxUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/krvvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hancock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botanical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/68fimyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angban.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quench.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jhroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/uqbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/gakoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie/editor/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/eezwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/struggle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hehnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orrkoping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz-top.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ichhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ekvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/mwliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/auxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_GetPassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/kcysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartholomew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annheim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photography.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/qcfzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SysConfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/554327.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salesman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/z9v8upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/hgeradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt/guazhan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_setup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/agayadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/range.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fmwjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgyg/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/qvoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1935.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physically.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbahlah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_member.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnejones.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_SoftPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/link.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/semcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/membership/inspired/viewcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ryudadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elastic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eorgia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ygydupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soccer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/rilaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/policy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/oahqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/lfqiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/oahmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xcsaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instantly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teenager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage_logo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supermarket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ltcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adequate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ielce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/qnlyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vyhvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_img/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_backup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he'sdeadjim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/zxvhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/admin/mdb/lennyash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkxeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/cmajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aru.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.2bsd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/62.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d99.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeweb_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peanut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lu21qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uadeloupe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isaac.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/edit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guazhan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/track.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangzi/guazhan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveupfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overpass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/iaqeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostonbostcn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/gjivadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/vyttadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/0qoqservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3229683.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdb/pblog3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/descent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreiser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8admin2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TUNGSTENDATA.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/vtoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erwin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yxosupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/dgxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pause.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/prkkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradeLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homework.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/558.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/rjmmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ddbkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain_manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pryiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porcelain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upload_soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vccdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/ryzusave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aooluppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewdelhi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/scbgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pblog2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nqyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gbftadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/azotupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttjdigshell.aspdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/17aq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logsys.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/fbfdAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wibpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textbook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ytwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eidelberg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allinn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewlett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artistic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prescribe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2324079.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcvmonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/hrmiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seaport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevention.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avarre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intyre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kujpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/jdzyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaborate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23shonyudata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jsrqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/iyzbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sushimastrait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ycfvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scoff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/nxltadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_yuzhiguo/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/tohgdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lodging.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rgpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nylcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/cwahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/main1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/can.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angladesh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/against.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oval.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ends.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impression.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/cxecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/bevvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brickout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jisaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/class_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/195882.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/011379.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other/festival.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adeline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/hiqusave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/puqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbgbUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eweb/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enoa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/016161.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/Fckeditor/system/Fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/fexqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ucjbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspdama.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sides.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nosecret.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othniagulfof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"Process finished with exit code 0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/80sec.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulgaria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminLogin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/divvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfcosave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/tnxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/051300.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcoiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsinki.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idleness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diagnose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/phnsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/tldgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/hcluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ov.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/User_Article.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rveaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mlnwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coosel/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irrespective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faces.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/zyrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/written.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/82hcservusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/qldvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graduate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cy/datacy/%23%23cyweb_cn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ur-admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpaashell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/uhxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pupil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/kjgjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enchant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vodoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbouring.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kotgsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effersoncity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jrsouppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/row.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_username.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewhaven.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abandon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proud.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transverse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/understood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source=/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/krkgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kdc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ltouconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polymer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cbvaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/hdufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/file/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/tbayadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/feoeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ihateyou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anywhere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hfivadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairbank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadImage3_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pefyUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/today.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilheney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/cupwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndiqupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadbbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_indexx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herrick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12912.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_info.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attraction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commerce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housework.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courtesy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/etrkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin/eWebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/blbzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wap/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/qjdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/algpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/nvsoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvboke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subject.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ytpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vybhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/172090.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6yaqmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/52.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnmk.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/bedtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/rneqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/fwavadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/EC_AdminLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/sfhpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dwxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urku.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyuan_gaoxiao/950.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/lekrdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ammerfest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/dqopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/whhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_jsnews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agpur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_SoftPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member/HelperScripts/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00860086.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rxufuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wsjlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/bnwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121212.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/yifzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/fadmy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backwards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qetoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackpool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coupon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/bmzdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221206.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/evpuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/cqbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqhao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulousc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/said.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/icjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_admin/editor/upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/pnadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/tbtbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brazil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/gimhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kbmtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kejian_lunwen/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthcarolina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implication.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/User_Space.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukuoka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56789.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toyota.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virginbirth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/dxhqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ggrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/678.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ojszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teakettle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/tmzgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lnhlUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/auwzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ro2az_shop_newshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baglady.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftCate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/fttdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wvmoeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nksnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calverley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inforadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/gpbkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ijenadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/611425.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mgpnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0327.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0112.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assistance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucharest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/vhufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syphillis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curtis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aruo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8code.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/faumconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112654.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/property.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/vlhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literacy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reflect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/data/gb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsupfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vkdwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/databasemanager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/194677.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesapeakebay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wtutadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mention.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/ewebeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/191919.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbedit/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6788.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamqUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qehjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10130215.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourwheel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/systemfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tissue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/inc/conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/fvsiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kunynew/edit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMail.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/CreateASP.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56k.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iforgot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives/415.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aarland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzhrUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/prozupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xryrqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138-1940294.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assenpeakmountlassen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/eoobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/predecessor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/tfrjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restraint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illustration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_group.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mammal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_styles.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/atfruppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houdini.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196825.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/avlwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/cmyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mylogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/qgwhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/sxjyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/adm_menu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carole.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostriverrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reluctant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/eezzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/rwhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/124526.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8pwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selfish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erosion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118118.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx_Update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/hate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mingadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ngpcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/#tyqiye.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word2000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angben.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ccweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analyze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receptionist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/architect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/isfradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approximate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grandfather.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodfight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/wkjuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crossed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/similarly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/versus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigcock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_manage/sys_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site/adminlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eiwuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/czvvadmin_login.asp/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/edit/dgyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/xiaoma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transportation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5151511.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mvziadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/yqwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatdividingrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/xvohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alado.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft/123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thicken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5ksntmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlbhotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wgxjshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anseng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0yw2diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminloginx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowoff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wzsgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/asp/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/higher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/nyokewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/400214.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ufmvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intimate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impossible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121110.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xtmcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makedrugs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conceit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plateau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/pubtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wantpws.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_ProductPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osangeleslosaendiliz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/luniadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promptly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incidentally.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hvfhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/upload2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/vxmbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/qyfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/cndvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/non.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/Admin_Default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vfyjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ctqfUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ebocadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ssiyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohwell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2b.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimenggu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/fbdbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effects.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toucher/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mwnqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gg1/images/umfqxx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/sdefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/htmledit/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x7esmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11191006.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/wfabAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peanutbutter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezvbmanage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/architecture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8Up_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3388963.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ompeii.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrroUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/etyhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2756.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5ivrdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/pxhnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heartily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/williamsburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moban.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23WRGKCNSMSJ.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xtpqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/bsavadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/oygyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/kdbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wlakadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/qrgvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manege/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8servu[Lake2].asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rzbkUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UpdateSoftNum.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Images/dns.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ickhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007521.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/pwleadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/_vti_cnf/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/lpiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsd4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bbhuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookpic/newmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/okojadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1hmmdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/calsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/mlisadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/zgmmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23bbs-118-jh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/get_your_passport.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parasite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orakermount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/458158.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tdctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heels.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onbj/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algernon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin/1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_maillist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12354.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleased.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calendar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/cawrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daltry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/pvaxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/raguadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zflfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackboot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmins.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilecases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mozambique.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remedy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/luikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evaporate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaware.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xbgvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/askfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conndb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rbetUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/076212.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfcfUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/lcanadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member/FileUpLoad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/m_bian/db/%23ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lgnhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/fxlxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/czycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itoria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenwick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/053911.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/dovwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weaken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nm09servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/psshadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outset.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ubxmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rtoeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benchley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/Net/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pursuit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fowl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/lwwaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triumphant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jiejadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/qticadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_webmaster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anadian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/asp/browse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/chuoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bbepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondonderry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/elmxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspension.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delighted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ieypmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/news.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronte.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23database%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jprzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hbapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/smdxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminlogin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvzleditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/tvmhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndizanandizhan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usseldorf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdfdsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ahquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/mingren.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwqkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/56m3upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/kbgqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07241113.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/socialism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sober.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/vjkradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admina.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agriculture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash/downfile.asp?url=uploadfile/../../conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/klstupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mets.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jcafupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/js-pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_SqlIn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/iyunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c4c6diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auchinleck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cookie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/andfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/qxliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/kqhmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utmost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47n8look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/array.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sql.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ManagePwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sombrero.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ietermaritzburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/bbhzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ryhkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x9d1digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_999/login/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ogswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ijmjservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/cylladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwarf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/bmwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lgfpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_up.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ragkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/273433.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/science.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovzvUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/461139.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaoshangjiameng/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concession.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/qedbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjilservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profitable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ekigadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adajoz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aspcheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/cwiwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/librarian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avenport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_product.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dsekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaskell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxyqeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/june.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qqhack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connections/cnn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aracas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wqvradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/epqsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/foezadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/Reg_service.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/asp/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/raleadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/jyezadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawthorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/pgaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hrkqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/kzwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsys/eWebEditor/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gofmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8digshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ylvvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Webeditor/zgtzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icaragua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bodley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulgaria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rqsaUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/cbusupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/kudwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hmpmdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/irjpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/branch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancouver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112081.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handwave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ihuzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/lkfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/place.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wqljadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perplex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airnshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/cnxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/shimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longduan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincxfb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vblvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discourage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/pnsuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitneymount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aotome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/status.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor1013.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disposition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6031231.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aila.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/shtml.dll/nosuch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyril.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/dpszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ziiwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bosom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4724136.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/bcbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/tbqfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_photo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/solzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1230.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfmesave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/pohmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/jaopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honorable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/z9v8SelectPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/uvvcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/her.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3407.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/mdknadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/acboadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjohns.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/amepadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rainbow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t00ls.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anju.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/uwmkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/pnaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zmicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/xj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/tghtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/wyzxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/Home.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cachupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/kxkzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbarticle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/gvvnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.asp/bbs/web.asp/admin/web.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adras.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lhvoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zulu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/diaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circumstance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ying/usemanage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33521.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/human.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_Dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bound.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyperlink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600600600.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olwayfrith.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solicitor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/elbwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disastrous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiku.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/web_admin/editor/upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/p5addigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weapon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ife.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acblog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ilnfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consultant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/term.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadsea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodgrief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slightly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferdinand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clothes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beauty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ukzsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/dyuzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/males.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pilot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emperor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fisher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/kycladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hebes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semiconductor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/eWebEditor/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UploadX.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Foosun/Admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/information.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscowmoskcu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_message.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/lowbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilePartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/universal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5081.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vnojupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cjp0diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/space.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanxi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/le.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lpsxqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemroot.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/lvofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lhvcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1122323.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/pzcnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ersladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56402130.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ictwqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/luioadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lgfxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luxurious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uantanamo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123698.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irregularity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_class.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hzydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnw6qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/sexpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/dudhtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330726.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UpdPwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/zlnuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guowai_Wangzhan/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ilstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack11.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/hnfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/jdauadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/nsiotop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compress.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mqmsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yes.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/npwcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/gexsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lady.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnns/coon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/gziiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lyjzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prudent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/controlpanel.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/oxxoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DataBackup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash/downfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/158.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/salakl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/knxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/re.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/194811.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/got.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4bprdigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsInfr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/account.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nnlxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quota.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/snhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8xiaoliao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223223.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzroy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleveland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ut.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Server.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jecgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kes/Admin/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xzooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culross.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112688.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V2.0 data/dkcm_ssdfhwejkfs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/dtxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pnohupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/212307.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/dxiqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilexinxi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/okqaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nepenthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isaiah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voltage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accadiveisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/vyctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curmudgeon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunlop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/yngqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auxiliary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/lemoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usic/z9v8upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wooden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instrumental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/vckhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/met.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saintvincentandthegrenadines.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addnews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amherst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreeable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qkbwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/return.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criminal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constitution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footpath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddsdfsdfsdfsdf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ari.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ozoaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iogrande.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/dtahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/eudhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/iiftadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/loginsb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/uploadsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telasrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communication.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/wblsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onaco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/457315.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414718.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvzqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nasty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/tokjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/yywgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ykhtau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7788/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destination.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441925.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/unloadimg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heymans.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ykvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/cvraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awaiianislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somebody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ueauupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/382789.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/masingle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/zjndadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xfrzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/Admin_New/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/%23%23%23fdkjgzschool.V2009%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xawzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wszqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consolidate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prism.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/religion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jvxyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/232174321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/324286.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deliver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ngzsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/nfkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revenge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/dxxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/dwrhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangprabang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fox.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/bihbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irghizrepublic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tceeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/svtaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ona.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definitely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romano.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritrea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gould.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_A.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userpass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggregate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/Admin_UploadFile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/fdumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fojwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kzysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2085038.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/idsoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilecases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/228588.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/50.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/txckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/yrcsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/oledit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xuvhuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athlete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ieupupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/velvet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jnj8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosmos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athena.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/che.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/bizeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/aicvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3310077.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dislike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ygcdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/none.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refresh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/qyhxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leveland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FSO_Class.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/qcawadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/xzbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/lxnuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/nvvzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophomore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/zumfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/guydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xykpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oodmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mash4077.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/home.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rr.asp/bbs/rr.asp/admin/rr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qvnrUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fl_Web.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agitation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mmDBScripts/MMHTTPDB.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neptune.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softlink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=../&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accomplished.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthborneo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsuser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2108.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/bbaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/kircadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/041898.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ktdfdigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stoop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhxy/isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosanna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfiles/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/utdoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3697775.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wnfbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/going.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/tieaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaned.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/Data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/zwckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_jsSearch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%2352_dsmm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fisherman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiajia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor_v280_Free/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemanage/manage_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userreg_setp2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2744360.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/bnjaAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arguments.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heater.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhwbewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hlevadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/266.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ymkzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ydksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/die.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uimvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbinfomusic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etaoin shrdlu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upLoad_bm1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/uspladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breadth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/oivqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/zfoisave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111112.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131313.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56830993.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/jaqfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snatch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ushdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quartz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estvirginia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1313.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/nwuoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/databasemanager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocotrasokotra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conquer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappearance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/rkgoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/grkuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infom_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7am5xiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_EditPass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ydduadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/kgqrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/avvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/My-login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/ssjhAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/azgkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wiagadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adridmcdrid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chairman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/tsomupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fungible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apehorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upgrade.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/zujvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jmsfuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industanhindostan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ncwiconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xgipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expenditure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrogant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ecwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/cqduadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365SFadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ebixuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli-tw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hsnzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2868835.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdeal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8wr8myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/qaruadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orresstrait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/zhvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transaction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ihcyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jibouti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edges.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handkerchief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flowers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fsfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_softpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qpafUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ksxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/time.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydxzdate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ltwdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/03516043731.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/poecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/jcpgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cepwadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/situation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/svqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileservices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/tmqoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_New.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxrmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/luyeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/yauqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northwards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ieooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unconscious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pudding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiduo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ztxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/aietdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halstead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdsrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upload_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/live.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/favdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/siatadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/9grckey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pxxhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321300.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lqvdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/xvovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingapore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get lost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/qdytadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/kbkcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/webEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_adpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meantime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckyou.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horrible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/control/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47840.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/inc/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/ctoztop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/londike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Function/UploadProductPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databass/datashop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/btilUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacteria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newfucker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/zjonadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/#database#.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzejsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/slmradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/whyzconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rarat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fdczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/127202.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iami.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vydbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileServicesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_download.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/onvradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/xkgoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arshallislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatcat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/psvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliforniagulfof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toucher/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/default1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/grcbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/step.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yawn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/mpzyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henyang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rotten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intervene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/cswjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/kltcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytukupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ghfvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/dmysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradually.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_Notice_view.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/qtxwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SK_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/magqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16511.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/jrsuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travel_news_show.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/tsyoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbuquerque.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mibaoaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/tqxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/editor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipuser_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/qkzhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/kuqvuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8md5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/weccadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhibit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/zpcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ugxmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/new1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twenty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/yzvoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/photoupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smaller.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_setting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwindows.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ykvbsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/iblwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/rszkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1118.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibraltar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enders.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Module/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/lfnhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbqmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/pk.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athmandukhatmandu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practicable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inabalukinabulu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notorious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfaceok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19691023.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0629.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/02omdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10410500.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/uzshadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/play.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilenewspic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upfile_adpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/sxsmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58868455.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mmServerScripts/s8MMHTTPDB.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1uuqmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/kk3qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/morhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/suxwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxidize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/tpizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quotation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confession.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/eyseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Maillist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5802768.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/js-pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sympathetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/pwdfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrrheniansea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaojian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/uheuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/dwrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delphi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xkyhotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jewel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/cqhjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112933.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weld.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vsmhmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login_ok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heads.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ekxmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butler.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/134326.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/xvcdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assignment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/emvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/jyctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200291.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quickly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/hazhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_w.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmanage/ewebeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yfktsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/count.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/jyxtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/nuszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mvecupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oday.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constrain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/lvpvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/exinadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/yvxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell1.asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unjust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23post.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/gtbfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/mffpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallcock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ande.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accordingly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilenewspic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/photoimg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/odpyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/razwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/mtcwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/uwzfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/addnews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuzhuang_Fushi/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deviation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/sohgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrdarja.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utlandshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocakola.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/hzqgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mischief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stopping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/springer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/vwocadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crystal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8daguliang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angku.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronzy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/news3000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mansetmanis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oilvUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takeiteasy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/axxwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jelly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clusters.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ufsrcss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advertise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor_v280_Free/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glider.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/last.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb/mdb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ageng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/chjpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nbfcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/show/back/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitchen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/user/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ssshupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/pkpaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/was.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blossom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/x.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amheonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/104153.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utility.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wandering.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uxtnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/through.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/english.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kpzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/551236.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft/diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/tipxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/jinbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chimney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/n6o0upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/srrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skyj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/htggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ykvnqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfilephoto.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/qpjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everything.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turkmenistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/herradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileCasesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tolguppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en/admin/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/babradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/amjeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/news.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/asp/connector.asp?Command=CreateFolder&CurrentFolder=/&Type=Image&NewFolderName=shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/ri1jUser_Reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ijtfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexandria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5236926.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ani.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/jdkwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anganui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBA_lanqiu/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncohumia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsldUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/tzluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gldl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/fhsuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwniadmin/htmledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id_pass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collision.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/ewebeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advocate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/yuavadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bomb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123491.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sulu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rks/code.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/stytadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aseru.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nusjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minority.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ywimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InsertEmotion.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qqhao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jhoradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/eWebEditors/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ykdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/svbqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/agksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vparadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrpmaaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/vhidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131445.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost/manage/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dqabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artificial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fy_SqlX.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/eutvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excellent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibreville.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hijiazhuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pmstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ugnfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qaceUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/%23tourdata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/cfykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harvey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/done.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindefault.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/julkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/open.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dwngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qazsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dobson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/htmleditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intrinsic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56409802.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hswnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/molsconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/il.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xlefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gusvuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ims/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monarch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assachusetts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explicit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/kibiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/irkzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tukjuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/azjiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csdcupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mesh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3210.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ebbzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apuanewguinea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newmm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ismarckrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambridgeshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/erzfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/piodadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/packet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/zppdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/catalog_type.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fexwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/lesyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_SoftPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i04cdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kokakola.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibutidjibouti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convention.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persuade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lawyer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/webedit/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vavhUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caidao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/zaebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aspinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/b2b_upimgloadsyss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/downfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/awcqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/548888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evonport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by_seven.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/yfwhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possibly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/gkrsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/nvbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/admyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/kdbnAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/held.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunisia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/store.cgi?startid=../etc/passwd%00.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzwadmin/admlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/waring.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/obnfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shehui/testno404page.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/pubuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uuexadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/uhwwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/hofdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/yrjnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/77.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gainsborough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/vfayadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0x5emyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/mjtuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/webeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kpevadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/emfrtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynn9aaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/292231.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/gmvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/pftradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhabit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rondheim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/njywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanfran.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/lgffadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ibaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111314.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workshop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/hfhnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/dgpvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/blmoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54420301.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utilization.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8QQ1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bimbo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttpdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russels.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/fbjjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muscle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tewktmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileBanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor_v280_Free/lm1dadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ehhuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/admin/edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straightforward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mature.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/rkpqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8safsd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jzndadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1691002.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/esadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webconfig.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ftyeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rdxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/dgcuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/hjvxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colombia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7hsfdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concentrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuffedturkey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fully.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fwpkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamaica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fred.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sd_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/bxtwconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorgeous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enormous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/afapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/nsooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miserable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/jmcnAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilimanjaro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antique.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/eWebEditor/asp/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/index1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/cjsnsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ryicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/porwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13655.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/gvblupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaojian.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ixzsUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/love.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/void.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shitfaced.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consulta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylrrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/edcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/umsfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innipeg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/31.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nxmqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aghdadbaegdaed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nheradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/came.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smother.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/utvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/bckcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regenerative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allied.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ylbhdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs1/pags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alternative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/connection.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/streak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/aknwconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/skcaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/nowshop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0213.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustralia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/loginadministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcp/ip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/me.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/lhyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133107.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0521.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update.asp/bbs/update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/even.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6060.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stepped.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_SoftPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/base64.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mrccupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_BookPicPro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/roszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainframe.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/grauadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/send.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/dantadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tqrpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/05201212.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latitude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playground.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2262.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loqjservusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salvation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uwjzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/two.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/fckeditor/editor/filemanager/browser/default/browser.aspx?type=all&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/first.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23database%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/celbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zldhuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/connectors/asp/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradbury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unhappy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sideways.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bullet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pickwick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batcomputer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fhbsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reduce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthdakota.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/619203.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22222222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conservation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3upxmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sportsman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/av.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pj6umyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/rzxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/mnbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/525621.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/098765.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/jhqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/urecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/oimyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cubic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemloginadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/wyihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/qzjhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/jkomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/qbbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bukqUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rropadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/importance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acceptable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappointment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reputation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlanticcity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilepartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/tdloadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jqjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/gwynadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smanager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1233.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bethune.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/whhladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/location.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysConfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idhunews/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucerne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/mcbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/AddNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wqlbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anreng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylvia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/tojradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/uploadsave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dqhx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neutral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/part.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eningard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/kealadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annettpeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vrxgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mj14qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/voqtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/download.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmedit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1614119.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/flwsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vzzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bighouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/bwcsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ypaaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.asp/bbs/web.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5n61AdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvardmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uinea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/tjwgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/churchill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbados.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/uksnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/360217.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/epdauppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/005280.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/xyoeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/rusfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abandoned.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/siniadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clambake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murmur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exception.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/you'reok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/error.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileservicestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resvhomeinns/webadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bqwkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquisition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/1qj5advertise.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/sspeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ehqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=../&Connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin/webeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gertrude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0525.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ywonadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mongolia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mmyoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/bxmhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180232.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reflected.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0798a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/edaladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netgirl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/umumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apri/Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/85.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/PopUp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/razzaville.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/hqtnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/gif.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoulscul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload_soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nsclass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ache.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gvjodigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ml.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/csoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rhazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affairs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/rrokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land/land.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ddbbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injury.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blaze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/hbspadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/kmbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyprus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/mhvpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttndupfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/kibuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illwaukee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blmhdata/look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controversy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin/ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epontinealps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysConfig.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/picup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/bevvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/bcmzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ibemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/jxiladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lljsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solidify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168261.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/some.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BatchLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lmshadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addicted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/kshcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/xiaoma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everafter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/jduzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vitamin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/uzrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/focke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/aymkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/251013.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/wpbyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bovey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1iyydiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udanthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carriage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/nojxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/procedure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/tftuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/menu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elemental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sgiscmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/bcuzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/hfxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/iddeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/xia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/rhxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/25xldigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aintetienne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anberra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/february.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditorNet/ufrkupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xyazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Folderactions.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s82006a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdileditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suddenlyad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/145521.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/nkdpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/fpadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/gkcbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uxyhwebedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apparatus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile-flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/mntuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_upUserFace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/371230.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vsrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/iwynadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolerate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/september.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123757.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/owcgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jauaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23sql.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lgmnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disturbance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/gimvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misunderstand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaoxd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/bnuoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ejofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/adtoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hvData20060309/asmASM.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wpmfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/native.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh1iregister/userreg_step2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiyubbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jg2rdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wkvoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/pdbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yzlhuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hungry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiritual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disturb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/cjmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223589.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mkkkdownnews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/key.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/uziuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylink.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reactor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moisture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hansom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkuta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowHost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiledown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appoen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/gffyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underneath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/agumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accountant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xqfhsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coleridge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkokbaeykok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58435738.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/OpenDB.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webedit/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engaged.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wuftadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swingset.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/wqpvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serverinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exquisite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bahamas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gym.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/nxtladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_view.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/sexpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trigger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2088.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instantaneous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/86.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twilight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.asp/lin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cord.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/income.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweeten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/an.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/follows.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfgstats.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/oqefuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/huyoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jewellery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibesti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/svcladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh1/user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorrowful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/where.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pics.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ncwkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/xslfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medicine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileservices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ygydupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdicASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/islam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wvfxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewcaledonia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/build.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orchard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preserved.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/yygmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pollution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hindrance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xeykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ijmegennimeguen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ezwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/xjunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1808420.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utcpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nopass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zsnyewebeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accuracy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askzz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settlement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gentle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/tlumupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2325597.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heffield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/vvxladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xqmmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11336699.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscribe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/float.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/svhgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/between.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webedit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/reeqAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilelink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/bqykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/34o6digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/denglu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackburnmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nevertheless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purchase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwcwUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/zpqmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/yhobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sergeant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/0ca9shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sign.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/coekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ggqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baxter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uvg1conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/mwkbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/utadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/kadyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/tjskadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/most.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xjfmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mibbdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bomnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/isztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearadmin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/local.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HomeManagement/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/shqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolanda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamination.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dlvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fwxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/find.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45678.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/qvsdsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/adfcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hyekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rpmcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognized.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0b9cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3367.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/llfwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/yghoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defiance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paragraph.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mr.roger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/qqfxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/kuosadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/522039.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g01tsu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbernard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruno.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/pennadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gcsnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/gwzbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/aaqfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burundi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fl_web.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/month.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uznnmember/ewebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEdit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/UserReg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapidity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/gdseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor_v280_Free/5i1padmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/dlrnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/asokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/userreg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nhvxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddhist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8week99.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeuediy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/md5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ewrzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59175528.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/rhckadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/kpufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patriot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doubtful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0b9upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxi9shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xqxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webetoys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/476408.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/participant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xtovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showpost.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hvvxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/556444.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ejhzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uqa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xusfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocktail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolerance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mansion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consciousness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mjrhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afterward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tourdatabak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ASPAdmin_A.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepsea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ibshadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/su.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confuse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/m.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000311.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/puvoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8bandit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pointed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0100/system/admin_config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/othtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ctgg03.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erfre.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editubb/db/dbwebedit%23cc495898.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/article/upload_dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/my_picture_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/komxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbernardino.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rkansas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/trvxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatshitand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/604604.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbook1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fquwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/acexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ismarck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Up2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urundi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brother.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjrfdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441507.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/asp/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UpFileClass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_img/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vorycoast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1qaz2wsx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft/fuck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestlog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baezupfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888/888_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/zkfiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/kklpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cpiuuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alongside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ifeoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachmaninoff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/evzpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anoverhannover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteServer/Admin/knowledge/dsmgr/users/UserManager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/tuoyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pqtvupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_ok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftb.img.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/#tyqiyechina.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/463108.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/vmpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pineapple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condemned.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/rehzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/6rhqadvertise.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/address.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cadcam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgwcsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/vwvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/semladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/fscdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fright.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/tkjhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sql.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xevcsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tpgaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actually.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sys/menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lphxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outermost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/votkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skibum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esrtsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ecogadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/south.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/lvjbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/vebjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163101.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sgucupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ymhvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ironde.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evarts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgyllshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hello.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indefinite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/hdxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acheson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/cswkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/plus_marry_db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olombia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resno.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/hcbvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23newasp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/452301.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reasonable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/penntop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsjnews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/sub_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaitskell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kb3esu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/vrktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2kvicmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8showerr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/become.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2pledigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ojvpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/zdmoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pattern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estlothian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xjfdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6th.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flynn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starark.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/477577.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilelink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsjj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/111.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/cafmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pitch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/upnqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20011.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8safsd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/showtopic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledzep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golightly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ll.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/dqijconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ghkqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamedata/aaddsfedsffdsggfhhdf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uteshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/brdbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/FileUpload/admin_upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/important.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xezvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/zhkiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anila.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuanpin_yingshi/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_stat.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/132435.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sytle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun-spot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/mchdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/file_load.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oganmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asutoland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correlation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwinadmin/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/admin_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opocatepetl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ghqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dropdead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/dessadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/sgboadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/###fdkjgzschool.V2009#.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbbh2010.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8aaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/besbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thlwkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunningham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rewe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/rznradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vfgwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hvzzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/mycnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfilea.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fixed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p36mdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herrapunji.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/30.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hczwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/enuradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/feudupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HtmlEditq/eWebEditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/dawdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/dmquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EWebEdit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/episode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curiosity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/pidpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/swqiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_page.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/oqhbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/gyrpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y1ljservusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prisoner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheffield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/army.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wander.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ethdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elkirkshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upman.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/there.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighborhood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/lnvzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ones.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tnknadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/uxcdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintenance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vibrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izerte.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/nfszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfso.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/pvpsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onkoping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimsrheims.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23newasp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kvbradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/qjgsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeeeUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintghdhgfb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elkirk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/mqroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stretch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/twrtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olotov.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agros.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cvzduppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ciioadmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suddenly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhengtu/guazhan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/xdrqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/eoahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fdnews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/xhvvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faraday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/pbyoAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopbackup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/vbynshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/243663.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phrick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/kfpkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pk25digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albany.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngleseyanglesea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/webeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadX.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ahjvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frrytuiidf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infectious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/main.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asplogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/oruoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/echcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/tzstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blmh/look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/melcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dvpost_upfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/finishinstall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/downloaddb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flanagan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/mnjdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stagger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1224.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/tool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estmorland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arseillemasei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/535161.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nroff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onbytmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pjksupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_friends.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncayupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/laksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hinge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/goyhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/atwiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqeaup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/;lk;lk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix-tounix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4eqnmanage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/gfgcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminconn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/xuyaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147714.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialoguser/select_media.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/goksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/snxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lamuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/phjeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suffer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Oledit/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_uploadlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feasible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/bkzmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spaceman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/qqlnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/responsible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otonou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homemanagement/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/lcjrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beating.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classification.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xnpxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swouupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/tdgyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoliao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redbaron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/addlink.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/bqbradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ldvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10130216.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcc5AdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invitation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ewnjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/mbtvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/z9v8yesitis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dollar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vnlvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvador.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comedienne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbeiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mibao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ijymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/kqrgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme6.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atomic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8AdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/nopass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recovery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/need.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ebdoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/eatdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/amyeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numberone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23456.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/evpeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pants.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links/links.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jump in a lake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picture.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1204.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/productimg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaccamalakka.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/tjpiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx_Update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleofwight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xjktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dczsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endoza.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UP/UpFilea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninety.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/butkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk997.asp/bbs/jk997.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/%23wygkcnqywz4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/xuhjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cautious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/joeradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfiles/a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile.asp/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dwlodigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/jtnladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/member.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/representation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poll.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/rhqladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shannon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan/scan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oluccas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ypipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reconcile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/253839.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocational.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overestimate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nemxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/then.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acknowledged.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conflict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/qsnpdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intonation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/crheadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileCasesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ovbxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8kdc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/duyrconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/fpskadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ylinadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyde.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etroit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articlelogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbbcUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wings.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conviction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yukyu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowater.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overnight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teeney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/register.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jcszupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0707.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/192.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_message.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/318300.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/z9v8shop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/svqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colvin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/oagpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pjwoUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overseas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookforpassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/215976.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/tvfxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piece.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/wnchadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/gtvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pawn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Other.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog/tags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/round.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justification.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n1l2upfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/this.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/tnxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/qqcaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/idceadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadphoto.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/road.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cppyeweb/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.aspx?Type=all&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/kswaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molecular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olumbia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petroleum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dowson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addFile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ubpbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withdraw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strongly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/post_upfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scorch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ybqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eywest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tuoradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/jstfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/membership/inspired/viewcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edi/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/save_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judith.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manoeuvre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xaceadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileCases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileupimg2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ysrxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shithead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ehfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/no.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/yigzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocaine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qkyqUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rukcz_shop_newshop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Contribution/Constr_Edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Defaultx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cream.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skyclass/htmleditor/getfile.asp/htmleditor/getfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jlikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/eqmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/tbxcAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1314.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/lrc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humanity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imla.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/end.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/mkrdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wscpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sk_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheldon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuberculosis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instruct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8member.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycroftxxx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gsmnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/poqbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingenuity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/clcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/july.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2ir9myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/mkwoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/iissamples/query.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/zriaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/061478.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/pppaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/MeCMS_data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/htctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/kofeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rdennes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronounce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx/look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extensive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haughty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20202.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Publish.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/zutiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fax.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgeria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearmiss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/bhtcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/uploadx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seeing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/rqraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/xupxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ljqeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/ok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/female.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7hsfdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mankind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he'sdead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/eWebEditors/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ik.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/dhyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ndmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Image.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcelona.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sympathy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dawkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/601057.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/character.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/yvljadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/yropupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1965.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/ovdstop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsing-tao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overhang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pws.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaolu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gigantic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sift.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/uuntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backoffice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/nclbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diameter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpcmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/early.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nzhwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/league.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ozmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encrypt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undergrad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321420.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/211314.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immortal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtool/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tact.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangba_lianmeng/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irwin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8manage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55555555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestcollegepicks/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alahairdesert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/cnipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/httradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rdytadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my/mirdat.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/peknadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggravate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ESYSManager/Confie/Conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/xm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/AddNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requirement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affected.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lift.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atlas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semperfi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dl5iservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/reddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degenerate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13611828827.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangchuana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilexinxi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/err_505.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surgeon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuangti/hongkong/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izhang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/pvkeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/vctladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boleyn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sodium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xlbjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ptpkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8system/mdb/system.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3108.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/wnfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tower.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mima.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/es.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jyueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/uojiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_restoredata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/avxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/edit/admin_conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/WebEditor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/husband.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upproduce.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/219711.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/uxgcAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heavy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/zzchn%23da2005.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/oykfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beecher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.aspxect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xskpsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intention.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paralyse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabricate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/gpg6digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/momentary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcuin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybbs/saveup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatslavelake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roatia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e8ouupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KS_editor/selectupfiles.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5366.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0339520889.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musician.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Backupmdb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/mdb/system.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galsworthy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/225477.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/kvexupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/nzqoconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alway.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhausted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/511885.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/btdpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fawkes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3044.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/618618.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/xcusadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/qnemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgj8myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/fvjaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driven.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/british.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undergraduate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/wioaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kk3qq.asp/bbs/kk3qq.asp/admin/kk3qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/071698.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/091819.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hpssupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/aspadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1hmmdigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ummoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mglsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/phjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samoa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/rvihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulysses.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darrow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2827788.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xpyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56758040.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shows.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyberpunk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/308318.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileBanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/%23zxData.project%23.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirmed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/security.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opera.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/xuecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/338680.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/ewebedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eunice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Product.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sesamestreet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asovadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gqyfupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/jgkfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/sdbiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleeve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/qqfuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyingleap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belinda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/xcbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/af.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribbles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/eausadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/264310.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/ckbtSetNextOptions.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rohfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/jihe.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/vpr8update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/bbywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/net/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vegetation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wiawadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fwzladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ivuvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bachelor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ging.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/gsujupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/vrxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzibar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newkid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ekarupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfiletemp_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abruptly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/qvtgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beware.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.aspxianthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbtmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhn-soon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/345111/ckadmin_login1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fckeditor/editor/filemanager/browser/default/connectors/asp/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locality.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lgebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_mb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/sbjradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iran.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illingham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/dbsjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ewrladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/mmhqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynemouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/rdeiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_admin/editor/editor_help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musicbox.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/mtviadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/nq31digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/gqgyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdb/pblog2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proposal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongshan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upfile_class.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gehang_Geye/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nzlzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nynksave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maple.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_from.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ojazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omvsmanage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behavior.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info/admin/m_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kfbmeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Datamdb/%23ZXData.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkenhead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retoria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youxi_wangyou/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranaiba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001119.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frame.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1588.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fmctupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/avxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jzicupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubbish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutdown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atherton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/more.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ngzvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/webshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/fextadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebBasicInfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8AdminMain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vfqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file/fuck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntilles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/emeladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precede.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/gjlcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/webedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/lbgwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/exxuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yclades.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competitor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronounced.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/tmxoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23klso%23vip%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/2go0shop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/would.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8day.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/xuryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/edit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undertake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8newdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algoorlie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/yipgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/october.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xumfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Admin_Index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file/hacker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/incs/upload_form.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/0wlulogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/fsyzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keyboard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/inc/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anticipate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grieve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/fckeditor/fckeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/qmesadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fhkkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medieval.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jmngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/lpiuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/fuck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goahead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendSite/admin_FriendSite.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dv_plus/marry/update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickhead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilisation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrdadiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/emeladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5008.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dazfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/exyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrub.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joke/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yfjfuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_sql_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/sfhmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleeps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/uswkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jump.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xozbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultimate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/iaqoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superbird.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ykwfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/pagmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confusion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fzgsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/eylsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/mbjaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/szqaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skywalker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.livesoftware.jrun.plugins.aspx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucweupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/departure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hottip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polynomial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/vifnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/historic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxmslogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impact.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortonovo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/orhladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ietnamvietnam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amelia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/tbvuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friends.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/020900.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/zzlhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vniuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/lbdsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/fyrqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laboratory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/bcesadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/%23720505qazsjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propaganda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/webedit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightfit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/unhbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bald.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worship.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Product.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/roaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abnormal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emavend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hnompenhpnompenh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminMenu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provision.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masscomp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/fmazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotlips.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/339575.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ozambique.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/32.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shorthand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/grkgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpwd1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/adyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greater.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/1008.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/itxhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beadle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/rpmladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/010101.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8flyrco.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/152395.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/codebrws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/z9v8SelectPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pumpkin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/vaeqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/streamline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elephant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_manage/sys_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sytle.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ensure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101325.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8classs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judgment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/191881.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clinic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y4f0myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raised.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/oerruppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/court.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowgrade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ywfsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuhenew/webeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/eWebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/byqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6yaqmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/58.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arachi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jmfhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fchysave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/narzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.aspx?type=image&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caliban.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndorra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rbwradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ajssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102938.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/oqjtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/uiddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/pnvyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nssjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admsystem.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/eyvfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/xomcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SqlIn/sqlIn_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/boke/data/dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/kynsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absalom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/pags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffrcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qvesUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/eWebEditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pjwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/jqddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/pcyladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crowded.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eastern.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/amriadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/gvsjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uyztupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forkedtounge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orientation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ljcsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/yjraadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gxoiUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_picupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foolish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mpadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malcom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvpost_upfile1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wbhtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/cynmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hnzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ttliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_UploadFileManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bede.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/jcxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234567.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uanda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/kgshadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corporate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ghcladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amibia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/miss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexander.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/toqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/nlhradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Image.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cambodia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post.asp/post.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jungle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntigua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vdouupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/tktmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/vsvmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/spsmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symphony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tortoise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/rifxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/print.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d99.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/udvsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/pilladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whenever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/araganda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disillusion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilenewspic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managedl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continued.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/cihbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booklet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2mxcdigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vrtqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gvxmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quiz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/25.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ghsjconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/ad_edit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/jrkdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/istrictofcolumbia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theater.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lennon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds/Main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ahduadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urich.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltrfUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/face.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/pxwtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/henluppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safety.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwzx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_sql_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/veinadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/yplvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uagbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyecUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/swwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/azhoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/zpgtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ours.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nspkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxpuedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221197.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/295029.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ample.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earnings.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erika.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/zmziadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload.asp?picName=st999.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toosilly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cscie-ci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileservicestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/kgpuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analogue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herald.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changethis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pzyaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supported.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/rbbyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surplus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/aspbrowse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belarus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/alfladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilenews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Conndbb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/xcsfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/direction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mem_bin/auoconfig.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330476.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/74.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bole/wsxklook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/mm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8flash/downfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/565656.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wl/database.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jvncupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpbb/bb_smilies.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homepage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/zcajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/ftb.imagegallery3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qlggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888/admin/%23720505qazsjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ManagePwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/002350.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin-gl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft/show.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/out.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guli/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decidedly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go away.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gif.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/uzmtsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earthenware.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.aspx?type=../&connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uiyang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitherto.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/cjfmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/kk4xdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminqiqi/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cancel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/riasupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/connectors/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jjqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fission.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corruption.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbitrary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ragon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/aspshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/induce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vectrex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ni.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfactorily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iechtenstein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ymlpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hollis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fearful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5266.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/cmfgconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ueoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rgfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/efbbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/lyesupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inaugurate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inde.asa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sort.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19680622.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romulan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kyopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/fhobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4728.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipperary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ciong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cicely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accidental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maybe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ihagadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zjbdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/hhuxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttvdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/lmyoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2050.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rocket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/converge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ojubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toptxt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilePartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icklow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remainder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fulfill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amatave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wvqjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aincitiesintheworld.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/port.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileBanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tgjqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heydude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wcieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/significance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Library/DbConnect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creosote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5201314.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astries.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ckyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopeless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/static.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homogeneous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewzealand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vvfmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/xlhwconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/h92bdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zccqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8digshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/czafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongspeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edithtml/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/yqekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bighips.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lussadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bureaucratic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/nzxgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/australia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/fohpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/bpbxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/qzjvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfqiUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/yticadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guegUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bicameral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/resktop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file/mm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/tsohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/gvzeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wgabupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nmmoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy/look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/071188.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abercrombie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/vamyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i51hupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/nxdgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eipzig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wmlkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/006228.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilenews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speaking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susgmanage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mmServerScripts/MMHTTPDB.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolerant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/aspx/connector.aspx?Command=GetFoldersAndFiles&Type=File&CurrentFolder=/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/sinhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabiansea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortsmouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620515.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctorate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1231.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/235756.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/egfradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/nqxnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragrance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kraine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/299001.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonderbread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/019490.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/mkunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discovery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/wmywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123873.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warthog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/yguaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/clthadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aracaibo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/071066.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imokay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corresponding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tutor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/613136.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listening.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/mpoyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conjunction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vykbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8key.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/dizhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/br.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/zbomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc/help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wkwoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/received.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/7n3mSelectPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harassment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/brnnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrialise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/setup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_style.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilenews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ackson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/pszradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/llstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8dbcc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greedy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/havelo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/x.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/yscqAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outtolunch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000510.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lifton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/04dtuploadPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/snvzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/safe.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/bfgoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridicule.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mask.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/educationmanager/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leopard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/dm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lxysupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heyward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/203515.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydwdsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uphold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osamonte.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lintshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considering.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/uggiconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23tyqiyechina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/77169.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/voecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/captain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsitemanage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/zzzcn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/replicator/webpage.cgi/313373/ukr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ominicanrepublic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/jhjsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/import.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/upload/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/msvqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wokao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserManage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3044.asp/bbs/3044.asp/admin/3044.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubbahubba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ishkek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3521985.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcheck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manag_onlinedb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_BookPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conserve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/otfpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/cazfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsave_single.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geoffrey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepfreeze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/xkwgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadlist.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/more.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/pbzradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicholas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerrie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/bnzdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aeroplane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/understanding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/qzmxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expensive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Product/manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mtnbdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/yvisadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assessment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/dvibadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cattell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destruction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/connection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monument.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algebra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skull.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starship.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/rovsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingkep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/pnteadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word97.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onakry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/cygkAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aramay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deletemember.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminMenu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qizgUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFileSave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mild.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5101325.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/qjtgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/lyztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/kxgaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/xjxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/nguradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slimeball.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/nxpsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mustache.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/sslwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspicious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntario.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyisw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ec_admin/ec_adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lpcfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concagua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddersfield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzchn%23da2005.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laundry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/xhzaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/uzcwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muscular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagemap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gptpadmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappoint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saudiarabia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yqnisave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft/2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23wrgkcnsmsj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ptkuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dazzle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5223xc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ijhnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info/zcfg/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoever.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/cquladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/hgznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corona.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quoth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/udbjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/imabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lskmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rectangle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indignation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/fzqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/position.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elevation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/april.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/gpsqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xwvaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equivalent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujcbadmin/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persevere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numbers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceoadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andorra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ijciadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qfagadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qeupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enzyme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8digshell6.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcweek.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/mgebadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/aomeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ewgqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stitch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/bzojadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceremony.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1203.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orfu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ball.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8BoardSetting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/section.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/vikyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/eenyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Install/finishinstall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tricadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnuemacs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/jdykupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/tfroadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/afgsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combination.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sequence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cushion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasnoyarsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swift.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/voehadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/vaenadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/bkuxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mudarya.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/rtvyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/aotgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/115cn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lives.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_adpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/383855.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0123456789.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/bzipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileCasesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ttqmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnkdata/dbname.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahffUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master\\\\ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insignificant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nektadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/qrhiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/erubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implicit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/swpxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/se.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/woddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/003138.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmdfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/cquiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/mudmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/arvxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picnic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/webshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin999.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/rdvhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wjleft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/hkzladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ltpgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beater.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showimg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditornet/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vlcradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10248963.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/databasemanager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/reqxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exposure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/userreg_step2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arkwright.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orchestra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aramaribo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/turdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altitude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cancer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quatorialguinea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookemdanno.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cqcbUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ztsfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/nenaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11309220.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work/work/main/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roll.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/gqekdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwbslog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intermediate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc11/s8%234ifkejuwemcjew11.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/tbamadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/eurmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfn7diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/britain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klingon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1919.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/zuovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anque.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/bzupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/alifadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipuser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o5qwmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/WebEditor/dkhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/md.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.asp?Type=Image&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ventilate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pbeqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cylinder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/lqbxconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apriisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maldives.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datashop).aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0604.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/dbswadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/ovtcAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/wzqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meadow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/fmxtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/km.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indicate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vernus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/raiqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_sql.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/jjkvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steady.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/dbqvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susceptible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/075415.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/yz_consume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0214.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj/wm/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pf_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/yefyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytryUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/exzzconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ipfyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/42.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/materials.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uehue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/newadmin/test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/steddiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adhere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grayson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kfrnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftCateMenu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/rayvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdwceditor/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/alcqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/avxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qwqpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bewilder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilenews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ejapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftCate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qvmladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222222.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntanLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/bdbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade/admin/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinese.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stopped.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/oybcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ckdsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coincidence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hx2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tinoco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/tubgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/yiobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onging.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feeling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login888.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entered.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2589758.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/sfdfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvbnm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/kpiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxhd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/similarity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/asp/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comrade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jcsaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/search.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/platform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grease.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/session.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sudden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread-49-1-1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Users/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/hloiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/zyzeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbcc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vrjrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/just.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0619.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/mqwqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hristmasisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addPicture.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ygxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/play.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/12.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bmqtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/areladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji_tongxing/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tt10digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hmbyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drayton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/%23zxData.project%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileNewsPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wow120/nopass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evonshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScanShell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dfgdfgfgdfg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jealousy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/lnzbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wokao/wokao/gif.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considered.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/apaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advertisement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/yjgjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1010.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mtrdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/wmofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urkmenistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ilhfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileNewsPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatchamacallit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingshi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4qy6upload_Dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/weviadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/idovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/music.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/aiwradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marriage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xnfuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/gliwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/dxwaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/410901.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/qzxiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ktzdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/mnscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFileManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asebo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/th.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/temp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555608.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkuwait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/%23down19827.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mykey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uapse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petrol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybbs/saveup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fresh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/uccbtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/kxqladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasoline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attlee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlukUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/wzjyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethlehem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persistent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/150572.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dangerous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farmer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sending.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stratocaster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handsome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceania.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andromache.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/amjhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345687.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appleton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underestimate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laska.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagination.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aselle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relevant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urbiton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fy_sqlx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immediately.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tentative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uqilUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fault.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desired.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ykobadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proximity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Loading.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_AdPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/408806.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abigail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olynesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/xyybadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hua.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/dmquadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congreve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustralianalps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yns_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrutiny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/njmvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aderia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nights.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/nzbyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_memu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aincountriesandcitiesinthew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ew/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reproach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urbeckisleof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1388.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vngmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reporter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/lgjhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/084319.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/848slook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermanage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortlamy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equality.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaves.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pmddmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/channel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/usergroup_0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ipxhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_c1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/exliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/qrzjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycevpanfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02nfdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/rqppadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/entwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onmcutshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/gynmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agenda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hzdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3613121.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/hpwkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/phitadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/tducadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k56flook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foresight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/olgwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111012.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incredible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iredell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensitivity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/gyabadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ethladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scattered.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literature.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nodded.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duties.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/rghmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/sjhnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immerse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wgdxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/166.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadhed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/b5hjupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avaria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onaghan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advantageous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/092167.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unongtahan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breasts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007628.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/causes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonljuy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cigar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announcement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haaie.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/upfile.asp/vod/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/velocity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/uyjhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_setup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/eWebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umesh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/doxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bathroom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjdxonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conrad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditorNet/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1494.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/tvwxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oneself.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/length.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edinburgh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reservation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dwszupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ekdsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/xkizadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/vfsbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclusive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistaken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8jojo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conclude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackmore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baseball.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bzlaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tables.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cmkcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ngynadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_aspcheck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gas_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xmmjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/nvqoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/mnemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renaissance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/major.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/smrhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/7.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0520.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/gpidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/006425.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/east.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/ciijsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadSmall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ochester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/joseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogavsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ypigupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack58.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_setting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm1n.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/fpgzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/default1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ham.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/agdsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vegetable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bancroft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/vetaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/museum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/designate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/democracy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin/123.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wbqeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/syslogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confined.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gpcecmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontgomeryshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3699.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_6list.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/yuumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/rfoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08181215.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negotiate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/nuduAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exico.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doreen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SysConfig.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/masingle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/cxqradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jagrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flint.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tariff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0710.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/views.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wnncadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ezhiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/62105762.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e1ksupfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/slitadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/vhfdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/anxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usersystem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/sxjnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romulans.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23buy2%23guest%23data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/cuhoAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portray.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/oizhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ifgqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/admindy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fettes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/prfmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ph.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/adminlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/prgladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/jjhcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingrossshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dbaqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ly_UserManage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/gusxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amateur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anru.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/bodzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/category.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/cytyconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/lcxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/aeluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/emzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/mzmiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erbyshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ralsea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upUserFace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/beuaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardens.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/well.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/riiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erdun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemadmin/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/crppupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ickpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamlin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/tkktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foolproof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/vfapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/jbfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolkien.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/payeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qnbdUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserList.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuddles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/User_Reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ubiladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/routine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ykwiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/vikjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/ybjmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/inhwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xhiwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/yllzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/5wekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antarctic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/average.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/nxmsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instrument.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wedding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/611217.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/565921.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undesirable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manege/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambridge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/bsdzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0903927.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5rarASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/rczzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/web_admin/editor/editor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/301828.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x9wodigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wish/in_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/xompadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sourmilk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mokyhill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jqidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wcdgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/yzljadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell2.asp/bbs/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ql.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/oicaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/annqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ow19conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/djmkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/brgiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/dsxeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etwkqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/xpkbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/nmnhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ltrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dutt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_productpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/tymiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xeoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gruenther.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mediate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkigorky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/gfjladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pillow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34073407.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/map.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/%23m_x%23data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntrim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gfbcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileCases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/usb4upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zork.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/mceqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/pglvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puppet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/sgznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rumour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diverge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/zekoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/local.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/vk1mdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recreation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furthermore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ima.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guatemala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_Ctrl/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thesis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronshtadt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/despair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/center.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/to.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SkinS/Default/Images/shtyo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/news.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/oosiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ymqzdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/isngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhengtu/mibaoaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harddisk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8nopass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_feng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_add.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qte4diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsoft/diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawkins.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/xslvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accord.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iltshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/vtkuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uineabissau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volunteer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/dfmkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0b9digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/iqqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileCases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dungeons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/tbd0upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/sfuvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2011.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/rcnladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/tbcvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/its.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileDown.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttddigshell.aspdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/002.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figleaf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xjueupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/poddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fillmore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/Zzm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deficit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/kaoxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aige.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/kk3a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/planet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortarthur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4265.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_delete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xajwUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cbssupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8sno.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wages.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/uploadspecial1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlist.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/rykltop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_softpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/weeaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frgiupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jaoqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ktuxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_form_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diffuse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qfqjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ejlwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apporosapcurcu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5r9wv3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/growl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/load.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8uploadPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sever.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paste.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/16.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/webedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_news/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/537639123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/csnyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aasa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/userreg_setp2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/codebrws.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemanage/sitemanage_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/wwhdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reviews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srudadmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ufcuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everybody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inject.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renoble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auphinealps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppervolta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certificate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correlate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911turbo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingredient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pessimistic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingjian_zixun/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/qzppadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/iwdeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/edit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/psssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/fmimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handwriting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upuserface.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/jycoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/vpbradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog/z9v8attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/send.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/294919.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/rnffadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uanuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30wfdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Preview.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retention.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esjdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capacitor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/web/eWeb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilepartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/key.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invert.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/nsmladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadimage3_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ydeqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dbb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/politician.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ckubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christabel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polarity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urasia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hautauqua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interested.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dbconn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huxley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ougainville.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/aqexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/members.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dismay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uboea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characteristic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gracious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/aebfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/rricadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accurate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySql.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backadm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/dxrfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/60.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/wjgdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/yo16digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/oabcconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8cnxhacker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/kvdcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119614.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/megadeth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserReg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/news.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ka/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/hsohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gene.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/every.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/iduoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3721.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rks/codebrw1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asylum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/soft/admin_upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/peafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/c0lldigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eagle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/staxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seventeen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/zlqjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdsd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/wizbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/haqeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/nbkradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmasm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/spzs/zs_save_add.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uppic.asp,backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rthurspass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aviation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_class.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hfsqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/representative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1019.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/fwggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ouzhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classmate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/gkmxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/zhfgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christopher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arszawa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corporation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20000101.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/nquradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/krooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/trbhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/wjrcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feeble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40705177.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/tawradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmless.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mmy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoft/diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deflect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/credit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/once.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/zhneupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typewriter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/childsplay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Webedit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/device.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/vdxtupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jalladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aegu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ringo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ldxhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itchellmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/jtupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/rpqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/own.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/college/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/wxinadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/baauadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login8.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wrtxcnqywz4.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/pvyzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/qqayupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nourishment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpphotoalbum/explorer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/jtssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/sllradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/xoxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wxxtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stripe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23liaoxd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/vnfdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadette.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imnhedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sho.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austria.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showhost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_password.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mmDBScripts/s8MMHTTPDB.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wormwood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s38izz.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblige.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abracadaver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ggrqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/svgoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trivial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evenly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melancholy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/anrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/qayzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/design.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collaborate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?type=Image&connector=/connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manege/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/mzksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/left.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baseconn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vital.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/322785.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/mclladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6008675.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileCases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agatha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/air-conditioning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ualalumpurkwalclumpuc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/kwaduppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180371.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/database.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nurpedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vslhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/#fdaeg35@#gds.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/cjddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attendance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/sjbgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alleviate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reform.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxyz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/wamzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/djmhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/van.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiduan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/jritadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_friends.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/s8shop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/myfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/View.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/&23ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbxjonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/yesitis.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSiteAdminister.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1117.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sem_user/admin_php/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441202.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0622.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TUNGSTENDATA.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ivvxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suppose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ldt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/if3vqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wreck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/uyimadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3782450.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yinshua_Chuban/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileNewsPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empirical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glacier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vntjUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli-cn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/eqzkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vcd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appointed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ketkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toll.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/yyggadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_productMove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cropolis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600839.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lockout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FSO_Class.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/connectors/asp/upload.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augasili.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/illxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lighter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/baseinc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/cqhzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poysup_BookPicPro.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/username.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saxon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/arfcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jtfaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weihu/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgtwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewardpeninsula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aofranciso.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cz_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortunate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/qximadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafellpike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/ynomadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dixon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingenious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temptation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/db/dbwebedit%23cc495898.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rather.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refeld.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/Pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5kchtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ueqlupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gissing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/lgwyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invalid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ststems.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ossradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/igajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garcia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endurance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/nwshadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/ctiladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin/administrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzmuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evening.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erwickshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/eowaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hristchurch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/madgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_home.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincxfb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/neroupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/wsbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/eoioadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symmetry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ministrator/upload1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UpFileForm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8NewComment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dvbbs7.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/base64.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otswana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Society/file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/UserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/312402.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eject.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/door.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ub.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ienasienna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/gpmjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s4u6install/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/wdziadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/bkokadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/praise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/00kvdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_right.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/in_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drift.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfiles/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8nothing.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/food.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/agvvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133221.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/jbgqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bhmjuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andjarmasin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13221.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/MManager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ddfs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/q02ddigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/news_manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2186.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnassus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6buyqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confiden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/rbpladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osges.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/qesmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/r7xjSelectPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/pgaladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/tncxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/government.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felicia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xdylupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/fdpoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previously.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/lppjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1230403.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/ecqgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8wow.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nhusUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrinkle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/digshells.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/shtml.dll/nosuch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_byshoppic2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111113.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ciang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/webeditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/bhbcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80f9digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08040701.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigsecret.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gisjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/dspaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rooster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owns.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/gwzjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/adnsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/kghqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limitation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8sdb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/zoicadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assimilate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/lqnvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overhear.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mdjcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/qyrfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skilful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zztop.aspx/admin/FCKeditor/editor/filemanager/browser/default/browser.html?Type=monyer&Connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wtkiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530527.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8muma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell1.asp/bbs/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/irftadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ekixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/rqgvAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pork.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/atpuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/bljbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gryphon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propulsion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admini.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/vmxgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/hbgnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intranet.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angduan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swamp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/fxhqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginmanage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onegal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleeping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beloved.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/uyajadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/year.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/gvthadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/lrwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc/image.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/zflfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/uxfxAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/hkbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/twptadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/kqviupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ildiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager/Edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6666.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rkfqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_go.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hither.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/aomaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/301.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illbertislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upvruppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/eqhqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/ntfhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilenewspic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nyjiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipbuilding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plumbrandy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/geczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utlei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/jrvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disposal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eloquent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/xtqzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organization.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/war.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/xqinadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_password.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/pplcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/cnn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pathetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ermkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landscape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courtyard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaysiafederationof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/yxubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowper.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/mpvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Users/s1riu5/Documents/App/JNWJ/venv/bin/python /Users/s1riu5/Documents/App/JNWJ/get.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usyuadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121000.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaco.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspicion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/bdfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/model.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_add.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads/ad.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/yumvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingdom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/aqfzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulhacen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guntis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/reg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarissa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continuity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/svqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/uraqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ozuxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/qzhoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datebase/zidc2008.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giblUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angliu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/cdykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvernessshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/up3xdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrialize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brattain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/new/admin_index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conventional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaware.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/xjdxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/ad_edit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/077812.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/nfzeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everywhere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wcummyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/114370.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gnyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedict.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tetris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/voihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pressed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ubtsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoption.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/xodladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djcbadmin/ewebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vague.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/edit/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/qhkiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vigorous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/ewebedit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webDefault.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ittgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/asp/sample04.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/features.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8Upfile_Soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mhufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/blifadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etersburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subtract.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sprinkle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2410.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/369521.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/peuladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/qirgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/luwxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legpUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/npqtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/qltzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/caapupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attorney.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/194511.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcott.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/algkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prodigits/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/wavnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esternaustralia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/huapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/kgztadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Play/Player/tboinaws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahua/mibaoaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parachute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guestbook/man.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/diay.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addPicture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/xswtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceiling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ew/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/zzz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alembang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnueUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costarica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logger.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/differences.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosannah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logindefault.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swearer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/screen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/okbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/spzs/s8zs_save_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManagePwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/xrgtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anku.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3367150.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnnxewebeditor/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ftpeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/users.db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/default.htmlFCKeditor/_samples/asp/sample01.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/getfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_soft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/rbwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0519163.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfile/Admin_Index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/bdyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/0ssvdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz520%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/naplsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wwgqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/song.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/afupupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oznan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/cfakupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/emjeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/uaukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/267496.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/zsusadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thanksgiving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0527.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/dpidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/american.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liechtenstein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223200.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hqxladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/llgqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/remoteupload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/snkbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/iissamples/query.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omalirepublic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacked.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caonima.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deserve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whisker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forecast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intended.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftb.imagegallery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confront.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke/data/dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campbell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/LoginAdministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/jpssadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/y545admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/omguadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allege.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difangfuwu/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faulty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spherical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/dama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/account.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8uploadPic.inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ntskadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_pics.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vzvyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/modipass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/muvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/xhpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahua/kanxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/svcaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leroy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BlogData.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luggage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjhkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instructor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/css.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysmanage/sysmanage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbekistan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/rojrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/mdekadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddington.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particularly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vdsmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quietly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3357.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Manage_backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rgqvuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retagne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/rgbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/oexxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1016.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deficiency.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/gqmkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/tappadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anban.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eweb/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/table.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aged.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Maillist.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanmarino.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminuserlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqmima.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcde.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snorkydorky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/kqteupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/gcfoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/dxgsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plantation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administ.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ozkvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazlitt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/hiiwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camera.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jknuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/njsdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincheck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reaterantilles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alien.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8seerch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/jubeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/has.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ffnoconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/gbdsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/zsqkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1960.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centuries.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arawa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othenburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/lfycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kneel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nsclass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ewacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/qvuzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asterisland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/edit/db/%23ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lecture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/southidceditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/rcqhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/shjqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purpose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/eseqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/upfilea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astonish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eroe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tendency.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raqirak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/fofvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8新建+文本文档.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_list.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yasalake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/dfqladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibvweditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/wsiitop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gohome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/oetyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/school.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slender.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lwkqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tension.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enicevenis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ylbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/look/play_tudou.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ourselves.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idlothian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lhleadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/rwdtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forget.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/activity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/demxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equipment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pastime.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/dyrradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/faces/13.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/Upfile_ProductPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/islcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tune.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23sql.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turbine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilelink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aban.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/template/admin/notice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cellar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lberta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/araguay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imalaysthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambitious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invariably.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wives.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/purtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webdefault.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aili.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joined.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/evwvdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/controlpanel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/uploadfile/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awnarange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promote.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amoa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anliang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardSetting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessitate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1145766.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4017336.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyml/upproduce.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/link/linktype_edit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/math.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/458791.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chair.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellingtonweliytcn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/path.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/pcfqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buckle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/jazoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tirlingshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acassarmakassar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/wrtxcnshop2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quiver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/29396.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/AdminUserLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hy2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/tzkeAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mishief.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/tgxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesotho.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lcjwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/lucdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reenock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hicago.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/etvyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntiguaandbarbuda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/switch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airplane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjhgf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sniff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadowy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bright.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/uvvjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qmihupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/newsinput.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueensland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntananarivo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/sokhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pistol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hudsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/sqthadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incfiles/load_gg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imogen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ajscadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/dqkradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/kwzhAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/southidceditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/qdqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/v8r0conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/eWebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/mnlyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/biipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/dwyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excitement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhrbsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadminlogon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/%23tourdatabak.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/abc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/vvyvv_Manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shangwu_Maoyi/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333333.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/uzjvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/pfzcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8cmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/last.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthodox.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/bieyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhau.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aideng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zzxoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barber.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/host.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yprus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wmkpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/gbdtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/glsfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esternsamoa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/whcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vsazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vengeance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/300.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/hiigadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/scfzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/student.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adventure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/moliadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/dzhcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/041130.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wcwradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/izykadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonorrhea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/upsaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alparaiso.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plenty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/eakpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omoroislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astonishment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xnjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/escpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/xuwradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/fnkyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/kojnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/trhhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/fiwradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/works.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztaccihuatl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/mvhladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhabitant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/thsuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/pbyfadvertise.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/xcthadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calculus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rnnhuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/frshadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emphasis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/introduce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112211.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbslogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/SetNextOptions.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleven.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/206238.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tempo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/agptadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hcbfgmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itchener.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/admin/Editors/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/qo0nUser_Reg1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eligible.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boring.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/#db1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/cmguadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smoking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notladmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp7.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldsmith.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/thmyAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissatisfaction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capacitance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/271525.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tncxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/fwntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/xqmmconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiresome.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/start.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pacific.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telnet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/kycradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/78qxcss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ywqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/gvoyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brunei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/l5kdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/sppfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eagjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8shell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8pdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/iibradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmdqq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/mhspadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db_backup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concerning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snafu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frequent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/nisyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djamena.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/dndradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfiles_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nigger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/bymjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3457503.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1tufmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colonial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uqnxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serpent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sousuo_Yinqing/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/biiqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weller.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/yrqpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/star.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amilton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ganda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/flldadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/bjdiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlvjsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luckylady.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bother.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongyangpjayjoy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23zxdata.project%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianghu/user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adapt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/dkuzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radlemount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMail.aspx/wulin/SendMail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/oblog/z9v8attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/pzmtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug/save.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ptifadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baidu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/lwkeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/edit/zeqpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MeCMS_data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_img/ma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trapdoor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overlap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/last.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/pfzradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01062972150.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1206.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8gdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobilize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/gsucadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incorporate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/ntnnAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndaman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wither.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aroda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r2nhtmdqq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/354648.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8sdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/z9v8User_Reg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/black.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/wthnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/zdydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/ewebditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcewonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/cmixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/general.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/augtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/uhyyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/kyvcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/kndhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antiago.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cz_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/sj/sjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/key.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visualise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/pgfmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atavia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encouragement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monetary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/famous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maplesyrup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrestle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyoming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interfere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitednationsorganizationuno.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lbvxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whereby.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ivnbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport_client.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_article.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adopted.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/313348.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brotherhood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divided.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000423.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocietyislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/jugxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wdywadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ddsaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/template/admin/notice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmmeqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/apbkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/imooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fare.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombaybombei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repertoire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/editor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ujjoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/imvpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/tpfcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carnegie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathleen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cl_ClsUpFile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/downfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/svzjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/chnjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woods.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earnest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/3dcmupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqhack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/evpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/eweb/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/dkmpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/zluqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfaceok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebnekaise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/44170.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/bzcnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/rywkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtwkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conception.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkxhASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footstep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornefirthof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilpin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wgfkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/nrsqAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/kglbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happyending.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/rrvyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ygubadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obliged.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxspy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1a2s3d4f.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeatedly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/iuxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsidy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/cgcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arstensz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmASM.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilePartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seldom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2mfqz_shop_newshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aplata.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t80bdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/uyjbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Field.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bushel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sdaqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilometre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alike.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/uiidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hacker.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yinshua_Chuban/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliyuan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/should.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kk3qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/syjhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileServices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/apsladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/otfradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/completely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/fkohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aim9shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/izyaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monstrous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/lbjbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/wikwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/zmetadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/jhchadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/onawadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/evyyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dtyoupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4fpndigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telecommunications.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/brxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ko.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elements.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlouis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acxgservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000519.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/hjhkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/yqpladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entralamerica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/hoheadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilecases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ruzuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/aspx/xtrpconnector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/yefmtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mountainous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq_dahuala.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ktjtUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3377.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8jmp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/jahyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slap.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/271250.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forsake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/anryupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inez.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/wwtaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/xdxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fphngmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UploadImage3_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Subsitemanage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlinbclin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fallen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nciaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/bkfnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harvest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/pvmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atifkatif.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/jbaaconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thxkdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongman_katong/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neckrub.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mjmwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/229359.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countenance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/oxhvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvellous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfvgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aohsiung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llinois.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newworld.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermany.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risbane.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wpcpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magician.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/qgwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/su.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/zoixadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Test11.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/phfvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uenosaires.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interference.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bcksupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/console.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haunt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/match.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gmstadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/zvdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eypbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/phpinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/conn1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/38667.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/struck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/akikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ahpwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library/dbconnect.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/nxiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hsfoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/battery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pianist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/tueqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hendrix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/righton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absorbed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/odtpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ztzt.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds/main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/pwgwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/software.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capfast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summarise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/fpadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunakea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyaoadmin/webeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lines.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/a_main.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lzwtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armstrong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explained.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/iugsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.aspx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s9gkshowerr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rib.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappointed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/towards.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyk1servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/kzwcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occasion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withdrew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hysterical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ating.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tract.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/cqhoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/319108.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjhg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/qufzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servicesystem/login-admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordon/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/oxdiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wcowadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/vobzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tacforo/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/mfzpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkuk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileServicesType.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouglas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/scoaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupsave2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isconsin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upLoad_c1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/vfpgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xeujadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flesh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/january.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ypxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cclysoftware.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/jmvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dekker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maximum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/the.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negqUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj55update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/efeaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plentiful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i'mokay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sazygmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ruduupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilebanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/nbzaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saintlucia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latvia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/she.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0202puma1971.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffenbach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/wish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8diay.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakfast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include\\\\setting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5710195.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/nwaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteServer/Admin/commerce/foundation/DSN.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pf46tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirac.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s81.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeanne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearst.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glaser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fremont.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shallow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.project/%23zxdata.project%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feminine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/membership/inspiredtutorial/viewcode.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001942.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620053.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpassword.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romantic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retrieve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2011.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/dlmxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragrant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiyu_xuexi/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/nnljadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antodomingo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archibald.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tablet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/ewebeditor1013.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Log.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1cr7tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdcmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1226101.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx/z9v8index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/jveoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ktuqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down2003.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realfriend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/lirpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/galfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/aksuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lagoveshchensk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8cmd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ltoeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/vwfxdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/kvrdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inaccurate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/qbedadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surprise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchestermaetistc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1875AdminMain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/sdopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ipluadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berlin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileServices.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strength.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_member.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pyh2shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dcdaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engineering.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minibus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tensile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/voiwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006a.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ban.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/lrumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realthing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behind.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/%23m_x%23data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/understand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/cbgzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obvious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kazakhstan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ch4dcss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/bojradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ynkzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yingjian_Zixun/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/energetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/juxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/guvcAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Sys_db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filament.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/439114.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ftoladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/twrwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/vayiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gosling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/olpdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/admin/qyadmin-wzljlist.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf%23%23/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/511789.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/fyoyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fbxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_commend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engshan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/bltaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplied.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/a.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fzleadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/kcvoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/kwkpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8m8esu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commission.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/await.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/fjyuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daughter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horizontal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approaching.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/oxyoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/kacnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/association.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danielle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eva.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/bwbeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/fmtwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ujnwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flatten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/202145.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/473880.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirkland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22339.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12120928.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/jppfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/vhhcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teacher.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berliner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/12912.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepsix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conversation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eherantehcraen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azareth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/tlunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competitive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittsburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/init.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/fdveadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmgr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/cgnwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alkhashlake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sport.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lori.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inside.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ocgbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_softpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innocent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contented.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melody.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leisure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/sqzkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omondloch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/318017.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/habarovsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efficiency.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alabo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit\\\\db\\\\dbwebedit%23cc495898.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/kmunadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/adipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lszhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/214789.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/rgjeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.aspx?source=/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/guestbook/gb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login/Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunrise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/322530.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terror.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/wkbeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mqwkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/tfnhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1932.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/et.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kqgxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8aaa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/father.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/zszsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inshasa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/425400.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assign.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/noxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightcunt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phesus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthyorkshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/tqbhAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/padouppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrofula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitrogen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnarbor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80f9digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds/52zqdb2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gixhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solemn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/rmujadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/rnqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/untmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reliance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userreg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/gvmaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafalgarcape.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/nrexadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilanmilaen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declaration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/showcode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mywebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secondary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/taufadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyranny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/kohaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138918.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/both.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annabella.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/three.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/167761.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310109830313354.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carpet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlucia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileNewsPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/jfyfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx/guazhan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmledit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jumpinalake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc_config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql_whelpu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/failure.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arpathian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ochdale.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/engmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cigarette.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connections/conn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/jluyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/gncnuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jakartadckatc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kk3qq.asp/bbs/kk3qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAdmin/ManageAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burrough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puzzle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangzi/kanxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unanimous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byrne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obstinate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxdama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ztsjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shorten.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userjoin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurried.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myi3tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fzqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diplomat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tremendous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/skd1look.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nwuqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ississippi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radius.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/j0qyservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniyas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/xozkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wypcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/za.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile_style.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ieph/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/jfinadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disturbed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/utapupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/589797.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbutupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/YZ_Consume.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etroitditroit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/iwfhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gb/register.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.asp?Type=all&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/su.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/kenxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flannel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impartial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/our.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/zaaladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/jgaeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/vgquupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burlingame.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/odhpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Char.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raisin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/xdwaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohannesburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enhance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admini/editor/file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heaven.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/ygwhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Play/Player/naws.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsalvador.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile/80sec.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan/xiaofei/shangchuan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdwuUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/principal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extremely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52110893237.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdnydiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baidu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symmetrical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/430111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruelty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/manage/upload.asp?id=1&dir=../\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhxy/z9v8isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/enycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittybitty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/soivadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/bjmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ebctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/luck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/khuxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pushed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/s8link_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/times.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/hbqnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_siteconfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concrete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueanUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Southidceditor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recycle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owacity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1220.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wimqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obtain.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xvbwsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ride.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/xenxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/gpxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rkutsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ossandcromarty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanna.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retirement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utilize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mobile/Database.asp/admin/mobile/Database.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/biwcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hwdxuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inside.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tooth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/goudadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likelihood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calculate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ggwhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermonmount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dbscon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/template/admin/notice.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/24t1t101.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evidence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headlong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/london.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/dguradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lirdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwowdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/tdxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcolupload_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iyadh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/jxfzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login588.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kuemadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mosque.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyberpass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/rarsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/cbuuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fack.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/nfxfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/sjgaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101223.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1127.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/xjhbtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniemount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/test.aspx/info.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/195866.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/je.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ksovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/star/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80sec.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridgetown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/vlldupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qrfndiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/take5.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ysenadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanbator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hradmin/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/rnigadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/gxjnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micronesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/kxzpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_999/login/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/vnbnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surrender.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/dwhgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windfinance/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bust.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ybtrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttdigshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/social.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moral.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/state.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durrell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/iydkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leusis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cried.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/naaladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/vwccconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/djpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trowUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh/z9v8isee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuitansul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/lqvwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/omhtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equilibrium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/fhvradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsoft.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accident.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stimulate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/gsqtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodpecker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xpjgUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/hvcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exterior.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_admin/inc/menu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrace.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/pwmcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530806118.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/xhhqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/dptaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfiledd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprehensive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatness.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/ytmeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/deep_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unakha.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bold.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thank.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ksieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/244517.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tropic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/further.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeppelin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlxoadmin/ewebeditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/116729.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entrepreneur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unemployment.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decide.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/vqheadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recover.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aotomeandprincipe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1rv0digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuknadmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0913.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rr.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspxCheck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/adminlogin_logs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ixjbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destiny.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anni.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drainage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freedom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blanket.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/zzchn#da2005.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/tikoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lzvnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilenews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileservicestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2214.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/nlaeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02101002.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfapUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_photo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/063421.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skyj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/liddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/433madmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tester.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wbmzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fucsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmswsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farewell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/oogyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/fcqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faith.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occasional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/tsodadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/half.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambulance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swallow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b4ysdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saotomeandprincipe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/repost.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undergo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/xpceadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/z9v8flyrco.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/Data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/od.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ualalumpur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/jbvmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/diy3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/-tre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/younger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/yronadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp99cms.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Const.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminedit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/southidceditor/popup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/evdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/mxwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007918.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olognekclcun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/128314.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadclass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10f4digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/mpyoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hospital.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/braun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/yjehadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/twtwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjilupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/uqrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingrid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47011.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nylon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/yjgtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thousand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermont.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/inc/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/fyvpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/success.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thinthighs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2289.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58434.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millimeter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/write.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlost!.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conquest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bpisupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/asp/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingspeak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xatzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/train.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8Scanmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/xymmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilePartners.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/WebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007/admin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfortunately.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620390.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uascaran.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p53kmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ertilecerscent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/rlwpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/cwfaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4452542.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/suktadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenectady.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladivostok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/uztfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/tleyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrenaica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/khwbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/DatabaseManager.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrvsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bl3kxiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/final.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rotary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrific.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parents.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdgdfgdfg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/ad.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disorder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ofodconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16608207.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/havjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dbb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121212.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/question.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobilise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/cnltadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/no22.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chester.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freakbrothers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/saveup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/vontadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5188.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/yiqbAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/lmlxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/jbyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/zzmlAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmpcxt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/gzjwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lebanon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/spmradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gytgUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/way.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/eWebEditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/envxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebrws.aspx?source=/iissamples/%c0%ae%c0%ae/default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/iriuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inward.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/sgpiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21072500.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ykcbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/h6aodigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bump.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlborough.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/rabqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan/z9v8scan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sincere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traverse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/cyhkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/synthetic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02nfdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/director.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/EWebEdit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ifaoewebeditor1/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8faxin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otomac.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settled.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hansen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/cjyiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/fzndadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/ertzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vwen.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Include/setting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartoon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/%23720505qazsjroha.asp/admin/%23720505qazsjroha.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wokao/1/gif.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadSmall2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/eyxhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrtxcnqywz4.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/300034.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/z9v8advertise.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/yepiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/lqdgconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uznetsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjdsd/hz@host!.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22099.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incolnshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/okyradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about/upfile_dialog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unexpected.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toilet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_upll.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovietunion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recorder.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/upfile_other.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qbmhdigshell0.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expose.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/test.asp/info.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emigrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsokay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/uvdmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/awqgAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54321.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyingfuck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faretheewell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58814245.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ljefupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/angvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewthread.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hy2006.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/pcsiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Articlelogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loving.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/tmqiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/zoeqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjstat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/sazyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker_clown.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netopicode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/76bhservu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1005.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/mdviadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Southidceditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facility.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/tiyisw.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win95.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vigour.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contribution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/utfuconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sys_db.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadlist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8pags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/vkbaconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/leseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/census.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indicative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uucp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/mlrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angju.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/juqdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hack58vip.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vjsmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/m4yidigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surprised.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/dfrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftLink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_backup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/pnzuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4029.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/hajnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electric.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eweb/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ehkqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mustard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/xaczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/jcczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/height.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/xveoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angaparbat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cpcadigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/dpyhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguethe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucknow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esserantilles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scratch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nominate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highlife.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concerned.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ew.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2489.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogota.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gowest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otterdam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jylvUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardener.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/joviadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onghai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/bedtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craik.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8dboc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acblog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daylight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/eagnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/qksdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ovyvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agdeburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incident.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/markus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggfb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xyjsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/edovupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electron.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/lguaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uachita.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unicorn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/page.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/owmaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spider.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/act.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/jrwzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bayard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molecule.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ligo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_link.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/uujjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ieooadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stir.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0421.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/mlpfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08484571.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56848719.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/ckymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lease.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oanoke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg/z9v8user_reg1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s817aq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/oosdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upNewsIMg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golfer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/galwuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getfucked.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/rswbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/loginadministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specimen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadAttachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chesterfield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ales.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabbage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fqwfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cudworth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elgar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/box.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/fecuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nonglin_Muyu/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uipuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_from.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor1013.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitedarabemirates.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgfhfg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/bxhqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bounce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login83.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash/ma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clothing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/module.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etpbook.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hgnqdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insulator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabernet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nauru.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/jitqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yvvgsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntntupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ought.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glitter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file/2006.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cora.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/envisage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tago.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/paheadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inlet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achieve.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileBanner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitedstatesofamericausapue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0b9update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burghley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intelligent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/idfpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/yyopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scatter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KesAdmin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/eycfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersailles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/omnzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPXspy2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alapagos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/updjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estindiesthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vjday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonner.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dieter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ymspupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mushroom.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/editor/uaypadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/best.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/uhymadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decision.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/管理员.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/335053.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/zyzaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile/569853.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwpbadmin/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/pmvbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stalker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basketball.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/hhrpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moldova.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/xqjwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contaminate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttgdigshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/motjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/kgkdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slave.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/09021117.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/qzxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01513134.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peasant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmisti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loyalty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/jrbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/gaddadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postcard.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad2009/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christ.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellamy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foxtrot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rkhdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sphere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/pjptadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/houtai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illustrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MeCMS_data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admiration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginManage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminhh/Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvmosave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/mgfladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ra.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/snszadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ritvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buffalo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malcolm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/wcuhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coefficient.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/stfxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8111.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/dnqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/x0b9uploadPic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/umrhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/why.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/awcxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electrode.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_conn.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xgzqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldaihills.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/froshmeat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/eqhfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wasteful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e610qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/voejadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/332211.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/wsnwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugspitze.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispense.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogotabcugcta.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/flash/downfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/young.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/eqctadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clean.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pqrvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileservicestype.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ptevupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/fileupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/axmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latariodela.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niece.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvboke.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ealand.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack2b.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19690510.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delivered.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henceforth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/omhpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/pcmmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beowulf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genius.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conqueror.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rohenamount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correct.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/ASPAdmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/article/Upload_Article.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ocyxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_memu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ak.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pandan.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fetradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/drxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_img/2007.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xw.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ominica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uyn1qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alermo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/fmsqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/family.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4891400.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfnuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/admin_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/newsinput.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pennines.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/logout.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/da.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendship.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/ifrzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/xqoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ucukadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herpes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/021300.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs-admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ows_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angliang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gravel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/haiyang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Function/UploadProductPic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0315.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/format.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/yxfradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askpwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/yuosadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attitude.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/az.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/023110.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ghtqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shangwu_Maoyi/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/rrazadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8sall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iraq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/pwupadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911scturbo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234567.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/iiaction.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12259976.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comparative.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/stzfuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ftntadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commrades.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8picupsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/province.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/imofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartoon/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/xkbbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calibration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56738955.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq9.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/nnfdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/nrmsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/znpkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deliberately.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miens.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8setup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderately.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/eihkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/federal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spelling.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/street.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ri.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/wleaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oomdewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkraupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/m4e4diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capacity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/light/cp_upload_image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moonpie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/kmveadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whereisthebeef.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/fjvkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/egoiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trunk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miss.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Oledit/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ver.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25020.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilePartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnett.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/command.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photosave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/pking.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/dyvgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/smdhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/008354.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aratoga.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/86cmqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/zkcladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydrocarbon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obstacle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Super/Index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/wdypadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/li.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_manage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/byvyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/showpost.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ahiuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/hshuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marni.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udpdUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxusadmin/edit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapidly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qzbosave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexandriaaeligzandric.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gossip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/dbcoj.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankua.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_pic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001014.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07031981.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_addsoft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plead.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/yes.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peach.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/iraiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/031528.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asckupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heywood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/into.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/356381.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esyjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seminar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.aspx?type=../&connector=connectors/php/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/admin_fileup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/main1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog/attachment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/eyodadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipwreck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/500607.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abundant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glossary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/created.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llampu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/417814.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/role.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/343434.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ygkiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exas.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/left.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guideline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5251.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srnmshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmledit/Admin_Login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltspqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthumberland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pains.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtliupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/ybnladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/kjahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikfkUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunstan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserSetting.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destined.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fuck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annually.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admini.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/88888/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPAdmin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intuition.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfndUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/web/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/advsearch.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SubCate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addressing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slim.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/j4ycdigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ybnoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8/admin/upload_file.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/bywgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_jk/joekoe_data.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizarre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crab.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/xvaoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/402790.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vader.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frequency.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/gisyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economically.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/imbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/ezkxconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yearly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/img-save.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajorca.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digest.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/weosadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/bvpnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somewhat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/361800.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwgmUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/rxueadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lhmeupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legislation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfxm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/npnmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8config.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.php?Type=all&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exford.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/qowmupdate.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/gxenadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/otzfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/79hlmyup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saucer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/vneradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111577.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/422422.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/jjznadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/lwihupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wrhladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spill.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bs/z9v8diy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheu.asp/bbs/sheu.asp/admin/sheu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1106.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ersjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/xtmhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_bookpicpro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/admin_default.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nsucuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/%23%23cyweb_cn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/ozofadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uannan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/lkihadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saintkittsnevis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/bajgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridiculous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soda.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_Photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310227.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/lbadmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/rnjxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prosperous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/move.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/nadfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30019.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/itlsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/lzcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/oqfmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precious.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebManage/module/eWebEditor/Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Other.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/lfipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/sall.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/gxybconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiraz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/sscbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin_lm_edit.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/zglaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ralph.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comrades.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/awopadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1qazza.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astronomy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addlb.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rip.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/hsettop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ournemouth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2012.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orsica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pascal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consult.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/aaqyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iflis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/esmdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ubecadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/church.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2403334.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookForPassword.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ldqwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webconfig.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/account.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8su.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/oufpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extend.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiken.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/fzzjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8diy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampico.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowjob.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfeli.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armenia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/daovadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chairwoma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/whnxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anliu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/zounadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hnzladmin/editor/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/prhpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/institute.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suitcase.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51marry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/aiodadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xnpdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bazaar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/gjpxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/camwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/080088.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/acyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0077.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uronlake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage_backup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marble.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ck.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/einstein.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/different.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtteUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cease.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Up.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deserved.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heading.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arguesasislands.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9g42shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oundthe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingram.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFileClass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invasion.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solitary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtwh/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hutvupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/ieapadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/dcxvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/uotfconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/dasp/fm_shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simplicity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/xogxtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burton.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uiderzee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/originate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/helps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiledd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/kwmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxms/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pahpdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dddd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/before.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/clxsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/wrkaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geraldine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/asp/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kbnpshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olqkmenber/editor/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silfmyup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiation.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flavor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/yyefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteServer/Admin/commerce/foundation/domain.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3211314.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ptweadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/substantial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admout.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therapy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g_admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_shop_newshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_data.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kacfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civil.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/cfczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chevalier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nchon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/vksbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/music.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erkshire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phrack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KesAdmin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/311381.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_image.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/goycadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fool.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uyoosave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snobbish.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv3hqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myself.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aas.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/asp/z9v8css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansalvador.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/xacnupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinforce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/nbetadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/chidadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ljeqotype.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aawqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traditional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/ezdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyrco.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/78pbdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apprehension.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ehavre.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mexico.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locomotive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gravity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/jtavadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managepwd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extreme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uatemalacity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/north.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aberones.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/fuckyou.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowledge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systematic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/pogwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaeuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golden.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdlqnew/editor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/dsjkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorrow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6oi1servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/mhffadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probably.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webedit/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dismiss.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colleague.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/used.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/pmbwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/udlyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ufowsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1782109.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aspcheck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evidently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/sgiaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rifle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/yttcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/aspx/xtrpconnector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kayama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BatchLink.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/else.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/take.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showtopic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyqvUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igeaia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/stgbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/nmfdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangce-heka/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/isthAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aya8tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onnacht.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/iyydadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorenceflorcns.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/loxcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcdef.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rootshell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product/manage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alternate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chalk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appreciable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/webconfig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oitiers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crying.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserModify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steadily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/shell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wednesday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ldxqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/556688.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arolina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josdelsalado.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductShow.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davisson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/zodqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/mk_output/referer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/swttadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9999.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/money.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13578.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lies.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bxq3ASPAdmin_A.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemroot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/DatabaseManager.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools/uploadn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/loginok.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_database.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/zkgfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndonesia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ll.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broadcast.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9qafkey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/sxzradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/arnvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0925.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www/admin/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3698209.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connfig.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atakia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/388.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halleck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/nvksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trecht.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/einster.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vt52.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assivemount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennessee.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elicit.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2009.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinawa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/btaqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/vmwyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Webeditor/ofpdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfilepic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/kzxdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/nmriadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gay.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enforce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ttdigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/bykqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.html?Type=monyer&Connector=connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominicanrepublic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1678.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/xxrmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ebook_Upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/influence.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhiwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ag.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database/%23tourdatabak.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arakoramrange.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tul5myup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/mykmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_other.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/rmngadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/zeyhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isherwood.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/women.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/knrcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/amomshop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generosity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pampers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/uubladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5839.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wjszupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doubt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/qeiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/saitadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittsburgh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wcgradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zqcgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/star.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/nifyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/ckcuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/cmieadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dig.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_fileup.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hsmlliebiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileCasesType.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hattie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10293.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/kwuaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akalu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integrate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/up.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_bm1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxinfo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBControl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/column.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf45/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ScanWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fishers.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useradmin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0919.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isolate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/plvradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/mmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/slba.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xkwcupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weenie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embroidery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/wawyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pqyuupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_logon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trasbourg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdlkj.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/1b6wupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/evmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Temp/nzqlsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/healy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/bsriadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/phkaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/582838.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_manage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/vlrhdiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elevate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/ygmgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Southidceditor/upload.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eylon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tickle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enlarge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ovgeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cater.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMail.aspx/wulin/SendMail.aspx/wanmei/SendMail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitching.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweep.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weihu/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buttfucker.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weird.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/kbxzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pluck.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boost.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/upfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/rrpyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eweb/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/cwiradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go fuck yourself.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enamtmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/bxdjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solution.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/iyceadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesitate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conf.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slinky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undybayof.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/eyzpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignorance.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exercise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/oitsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joanne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horatio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4xu2tmdqq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bond.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/400.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hemnitz.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estmeath.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etherege.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/szahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visavis.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzjohn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/county.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admins_UploadFiles.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dgdhupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/rzpaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ctqpadmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desirable.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assess.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/ixnnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/43bsd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/mfndadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/twbmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/ocvdupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/webeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaxeUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/llziuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulwer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7am5xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_soft.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Download_SaveFile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millions.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gotohell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahua.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageLogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doris.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileCases.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frightened.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/qncbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/ldqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/oksjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numerical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DIY3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0727.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/iczoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apparently.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/wdcladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/aptrupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ucfwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilelink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/omgladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meeting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/uuuaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/jtzbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2262558.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whirl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6k.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jllgUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/lgayadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/key.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adore.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/hofwuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/569853.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dart.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddccUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3141.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engagement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boundary.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/xkhzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cotedivoire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appeared.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=all&connector=connectors/asp/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ovfladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alsop.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/srvhadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ubzladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/tbl_copy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wnkzadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=file&connector=../../connectors/aspx/connector.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilinhot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upfile1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/lgnnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luminous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/sybtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ub29upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/hjedupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/mstxtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/lsigadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decoration.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/irtaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/lsxjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranada.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prompt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhs5myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poultry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/jgrtuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazarus.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fielding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apehatteras.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herschel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connstr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/217758.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wage.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helicopter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpetersburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/wkdcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/western.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scyeupfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/jaigadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/bomjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/z9v8pking.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambassador.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/either.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1966.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/sbkdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichung.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoughts.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/复件+caiji/data/6ting.com.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hound.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/vetfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8upfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/additional.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrawaddy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zui.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/njttadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/progressive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pass.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/jafoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/target.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/pqahadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminceo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3up8upfile_adpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login8.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Editor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labama.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwadmin/A_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5291953.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101010.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56682126.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/dfxtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/ufnsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lemon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigbucks.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/ighqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trademark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatred.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8key.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmy4css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs/pags.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ewebeditor/admin/default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adventur.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/older.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5wn7qq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/getpsw.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/loyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/LoginAdministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolcool14.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0227.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newmm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/xfjqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cannot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/wrbbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/nptgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/Admin_Del.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psychiatrist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/tfuoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fl.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imperial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learning.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/hcumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0069.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warrant.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guinea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/czseadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/independent.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinkfloyd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usenix.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8czWebshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/driuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzmanager/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/problem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/qiuying2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/os.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_update.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/tcsgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_menu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemessage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/uoxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/hurvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8xiao.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/gyrsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/char.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pxnlsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mara.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Dialog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elapse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuai.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unixsux.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/pwuwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bcnokey.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/iberadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/hfwnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/page/ewebeditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/hqfaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angola.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiti.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54118.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/click.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/zbqqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ibnfupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herman.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perpendicular.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/mmm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dx.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/op.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisheng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nihaoma.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/vvvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interesting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/hraeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/context.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile/s8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3241156.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gongye_Zhipin/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portrait.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/measurement.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ftkaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/mvsnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitewash.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aapaupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1201.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/LoginAdministrator.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitedstatesofamerica.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/seacdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/kxbladmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanshi_nvxing/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ederalrepublicofgermany.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrison.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emphasize.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dkdyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sculpture.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurrah.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links%23.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iahfUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artlefreremount.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck/editor/filemanager/connectors/aspx/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/cjnbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xrtwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/awczadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110579.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chem.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/328117.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicinity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dat.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fancy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/077870.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/db/ewebeditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/ppcaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hayes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/sybwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorro.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/manage/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undermine.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheerful.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/322167.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/ssnqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrienne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/Editor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilogramme.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_photo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/climate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tactics.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/lejjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qy4iNewComment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/xfacadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shutter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qj/mail.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/z9v8admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/hfpfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afeking.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tauhonews.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/zzivadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118340.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unpaid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/2007.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/qngtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilepartners.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/web_admin/editor/editor_help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boswell.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kxsbsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolivia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productivity.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physicist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anci.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bwgwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utherland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puneet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ibsbjstar.ccb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001215.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwendolyn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/zjuuuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/gwbtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiexUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/vlcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_htmlqx.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/blkqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ydxzdate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/hjsyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarcely.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/dmgaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sponsor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiver.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portnoy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/control.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitedarabemirates.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/Example/test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileDown.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/74spdigshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1013.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/axmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaotian_qq/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vzadadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protective.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/xffiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dudley.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/wlowadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reciprocal.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/admin_style.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uppic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/zkgyadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sons.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keeping.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/agsjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/yfohadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/membership.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badboy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inde.asp.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/AdminLogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/frmupload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxjpUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haxa.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iq.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukonterritory.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nothing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/vjgiadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_pic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ai4ndigshell2.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pushmaster/pub.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjdsd/Hz@host!.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/admin/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/webeditor/ptygadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auction.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blot.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaccio.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drinkwater.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beneficial.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxygen.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileLink.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyanghu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/kexpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eicestershire.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=/&Connector=connectors/asp/connector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/zjxpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casualty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/adxradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orea.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/u41bdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8xhhupfile_adpic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/lqbaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23db1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosmic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/historical.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/dxatadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweet.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/Edit/msdqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/njgbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/umchupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8servu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/far.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twist.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kdflewebeditor/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kes/Admin/Admin_Login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/uedmupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begged.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreb.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q36tservu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laofUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undaisles.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/dsuwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ejjcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsusername.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proficiency.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guitar.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mile.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbbs%23DfLLds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thereafter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/zwxaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariebyrdland.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/krrxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.asp/bbs/test.asp/admin/test.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readily.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/tgkwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personnel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/task.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adlogin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discharge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guanli-cn.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passenger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dives.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vi2iregister/userreg_step2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letlive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/zsikadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8asp.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/joyeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/mhnrtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abadabdoo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deflection.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parting.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enammenam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/nzyqadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.asp/bbs/help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Scanshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prey.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/iiwiznew.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evenloch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alue.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/under.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roke.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/cuhpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/fbzpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fevvuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocacola.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/qptradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1208123.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkeng.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cemetery.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/index.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valerie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/mbikupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/europe.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/pyfoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/uobbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valpupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortunately.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2891915.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/sxhradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/ymldadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/nqkbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/xeysadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonzo.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/beinuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qhqwwebedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/64.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/506385.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_w.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_download.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/ewebeditor/upload.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/fsksadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8update.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a7pjdiy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3435265.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revise.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dos.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usa.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/asdf.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/context.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/#wygkcnalibaba.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/bzwcadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/conn1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlucky.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alei.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMail.aspx/wulin/SendMail.aspx/wanmei/SendMail.aspx/mei/SendMail.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pope.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/wewgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tupian.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/axgvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playboy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/tbxoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_jsNews.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excited.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pecksniff.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avarianalps.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aika.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mbpddiy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/fzsaadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shazzam.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/jzadAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678910.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_class.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/ggnuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicong.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23nbaamlq.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/lhvtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414121.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stadium.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blink.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randenburg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shield.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluctuate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrw1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/asp/xjakconnector.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strife.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irtcdv_dpo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0681ok8223ok.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recede.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/qgpradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/zxjvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8myup.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221221.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/digshell2.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knife.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqing.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/slba.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parameter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/prjfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truth.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/fklsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/hxtbadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wl.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elantan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eer6log.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/pqmuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiate.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dillon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8guoqin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egrisembilan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinctly.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameroun.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_backupdata.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/xvauadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anitoba.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/saugadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get laid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anuan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourne-again.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hvlbUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proceeding.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunyan.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/wzzoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypasswd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft/abc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/rzrouppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor_v280_Free/admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaveralpeninsula.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/wvgqupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invade.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_productmove.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianghu1/user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qotyupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/udnjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/bqceupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/israel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ghsvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/asp/sample02.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/envy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easter.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nfvkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8ddfs.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_3.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/hfipadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13601807511.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oemjupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/servusu.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/nybpadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/zhhnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rbhcsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8th.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ln.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nor.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2nd.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/software.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleinfo.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/front.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percentage.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/rcafadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ye.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s813.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/sjchupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/css.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost/admin/login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vhjfgmsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3793933.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotdog.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silicon.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avite.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holiday.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck-you.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugevUserReg.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/they.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/tfeeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/digshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rat.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/jrucadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ounce.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbid.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ananarive.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holmes.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/tsccadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osul.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/288.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beveridge.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin_login.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compete.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games/bxmnAdd_Save.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/Admin_Default.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aming.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wjvmdigshell0.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/bifnadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/webaction/xcrdadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cr.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/son.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hutt.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_1.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/admin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzang.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibbs.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triumph.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8user.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/produced.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dellinger.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/index.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aids.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornwall.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/9h23advertise.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ability.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/zm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botswana.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/vnjoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5959.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngiwupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs/md5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liability.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_articlerecyclebin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydraulic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.asp/bbs/help.asp/admin/help.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrators.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yvlradmin/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2323.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/r6ynupfile.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/vsfjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/fxcmadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb/jhumadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_Database.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/bzryadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i1tvmanage/login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automatic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/bzwtadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8digshell1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubb/uploadpic.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/ldhfadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodgson.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/vhgvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/lnefadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8hack11.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/ixmjtop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/565120.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/aeduadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/jmozadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/admin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bv.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/ewebeditor/wdsgadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/vwaradmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midnight.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/rhcjadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor/editor/filemanager/upload/test.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aou.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunne.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killed.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxu.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flophouse.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omsomolsk.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2345.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vi.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/oulbupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bftzupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/pixkadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/sdhsupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookForPassword.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraser.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qc.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michelle.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsys.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larkin.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/admuadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimian.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/force.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomorrow.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqhao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/vbjxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/snjoadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8digshell3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewComment.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/pckvadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/nlkeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepwd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zggtedit/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/contents.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wfrxupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essina.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqywz3.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upNewsIMg.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Webshell.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reston.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/db/ewebeditor.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shia.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pro_admin/htmledit/lknwadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/eWebEditor/admin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overtake.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/zm_marry.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/4daylink_add.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cayali.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/27929.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db007.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/Media.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfdm.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/jzxptop.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/si.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urged.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8digshell5.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inuiju.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atie.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easier.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xeyyuppic.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faqadd.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getty.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/qhgeadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spontaneous.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declared.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mere.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mental.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/kixsadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrjwsave.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladies.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5818983.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/launch.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birds.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rm.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1208.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmy.asp/bbs/mmy.asp/admin/mmy.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kleenex.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/ymnxadmin_login.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notify.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiao.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bibliography.aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/jvrgupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chongzi.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_uplo1.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Scanmuma.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/flwkupfile_flash.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bull.aspx\"\n    }\n]\n"
  },
  {
    "path": "assets/directory/common.json",
    "content": "[\n    {\n        \"hits\": 0,\n        \"path\": \"/UMINTF/SSO/ChangePasswordAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nevsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1i9deditor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/hello.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdsJs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_NameManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ysln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/env\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd631_angela_out\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyyy.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_subject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vfll4567.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyszb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/simplestmail.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esuper/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whwg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManPower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/januari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfg/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamie1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacqueline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qxnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableFocusPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_add_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/db/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffeeee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paleobot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oprocmgr-status\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/tst.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_2_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henderson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzha_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/fckeditor/fcktemplates.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sporty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haslett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_10/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pukimak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longbeach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaseInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liusiyu88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/5678.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysRefreshset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stonecold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SourceList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_cate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corinth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_11/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_adventure2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/4279.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybxygy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php5.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaj129\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steppen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cc_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haverecievearticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addNodeListener\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nilson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vassily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filez/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl-3-ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lebbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esite/sitemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonkers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_Admin_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageggnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jm_qy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cccccc99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alicia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griswold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christyna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filesc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getAwardUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yejin_Kuangchan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prdifram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_xiangxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/Admin_Login.a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dialog/gpy_selcolor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_attachments\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rdxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addonesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cathy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.wwwacl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editallpersoninf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trescha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cirillo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quintina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_CommentShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dick1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kultur_84\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isbest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimberley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuniao888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czyd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScoreQuery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swcl2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FUNC213\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_makejob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd631_angela_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndrp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak_step3_in\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/food\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rczx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylnh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminclude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longsbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kanorronak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_member_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleCodeBuild\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paradigm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/790gupfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hits.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Dv_plus/IndivGroup/Edit_Plus/FCKeditor/editor/dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebvzCmirserver11.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Square\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Adminre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WNU\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adwy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_xydjw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4_account/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/css/fontstyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sacha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AutoCompleteService\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Log.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1974\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articlepost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexandr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvapi_plus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldredge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/shtml.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janeta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jondwun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Caipiao_Bocai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bpisci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awstats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowsmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_vol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_mygroup_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_dd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendSiteUrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_rczpAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-us/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drusilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bluberry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sssss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanjun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diqu/feizhou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votetou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Members.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mayhew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereSamples/SingleSamples/AccountAndTransfer/create.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_friendurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mitch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/ty6161.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DianZhiMap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp70\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counteredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft/book\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.files/sendmail.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/head1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pp139\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jereme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c68hxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/architext_query.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSXPplay/menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryder1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e_menu02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/projects/cgifile.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patient/login.do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addbigtrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l3188250\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/myshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pickel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angels\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/_vti_cnf/default.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernardine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsocode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuchu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connstr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petronilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~mnt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liwulist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jehu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tousu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petunia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack_vote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Properity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zongg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DirectoryList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rock99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableDonwLoadList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHENGHE_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/women\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_special\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tierney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ly-write\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/korry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_db_backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kesley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutMe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_editproducts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goyumirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domingo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Locus4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baoyuecz1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP47\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yingjian_Zixun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karolina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awesome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mynews_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/114.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/Wbeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zarla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_IndivGroup_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OkPay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/26midede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpassword_process\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao454473625\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Internatianal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dfgdghg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpxcll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retnec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckpanel_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/bash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorolice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showclass1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lurline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsk2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ovrlord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_info_car_clxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_PersonDbRecBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonardo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haywww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Horoscope\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenlei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uc/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Samesex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rowena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimble\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edi_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevvy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lw_reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gustave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surgemail/mtemp/surgeweb/tpl/shared/modules/swfupload_f9.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulrica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oauth/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_group_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lombard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xybook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlbanyColonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doc/packages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb0886\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHIJIAN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/val\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MakeHtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageReview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchfastxinxi_chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_success\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_soft_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wantpws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/List_review\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_toplist_px\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_replace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenjian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunrise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365kdc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weifu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topside\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secureadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ricki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemAddNew2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bordy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditShow360\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nggl2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_imagesmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ojspdemos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UPDOHYK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnuad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessalin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modelsearch/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_bbcodes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_bqxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Elite3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbl760208\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grmpxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/Connections\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_PreView3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserControls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postdebate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KesionCMSV4.0SP1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Modify_Contribution\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marjory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Passwords/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdw123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/computer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pppppp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fancie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editnetbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lifeadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_LookDraw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/buttonimage/blue/undo.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magazines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jonschu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checksql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windham\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Buy2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cagliari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pfieffer.cmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_pksend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brantley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maqingyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_party\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmailadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckpasteplaintextcommand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunstan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaleta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SSODAD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/granny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_add_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dk_Look\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/lwgate.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loll2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Setting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_imagessave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Jdzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Menu_Folders\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotqyml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rdjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikolos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanechka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savevalue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ypuu2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaohong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjh129\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qp8twebshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jscripts/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemAddNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/14019.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotstuff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfusion/database/cypress.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ieemu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CONNPIC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonImageS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminGJ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upload_soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/pengtiao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaylee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delWork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_DvApi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzi.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinmo423\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/submit.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myriam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jokeoe_data.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_shop0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fredia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/70/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s03510351\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyanguanlian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopbuy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dqpxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guideSP_fid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrtie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frieda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jitems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_sitemap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxrcmirserver00.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableHotNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cgitest.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzltupian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InTranet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h_com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_makecompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apvg1.76.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VIP_DD_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areyouok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fileupload.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dqzyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhanglinglove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohmygod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calling_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reiko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moresmusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/11490.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminfso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_sh_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czplayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elwyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SpaceManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaaa.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/wswh0626.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradershow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Price\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOWUPIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mopright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongcheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fita20.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/system\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gldl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kekko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wpmhmima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medical\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localstart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lenora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yldok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CopyFromList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jocko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestDetailAdm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpanel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Accounts/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miura2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VIP_YYZ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_string_mix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hackcenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~usr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBA_lanqiu/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_spacenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abdul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zceelove.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/july_24\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppppp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kqframe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jrhxmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rank2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g0502\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraAdmin/class/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ads_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alisttop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_prodown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkblue_orange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passes/.htpasswd.nkmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crissy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brickman1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rudolph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anatole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ljj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telecast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Specials\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userdb/members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgis/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_saylist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlyne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReplyArea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/DataBack.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iubrmirserver3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tianxia_Wangzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_AccessTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default07\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ws196713\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hlsd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyok_lock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bundesliga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherilynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Version\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemBackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/rcounter.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message_product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_subtop1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roxane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mud3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_edit_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cletis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_shufa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/girl/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liulan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artikeladmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dubo.htm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gracia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/aexp.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groupread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toollog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumBoardModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_reports\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redir.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfiles_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_class_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mansell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesbo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8jianghu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phstkkkk.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marchelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/66X26_2.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MakeTopAnc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berget\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbuamirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy2buyusermail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nessi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/down_addsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageMap.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhuafang4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenji1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galleries\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/running\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gertrude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_clublogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dialog/gpy_smiley.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziduanSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiegen72668\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wangba_Lianmeng/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhh0011\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aglimpse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freedman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hywabao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SoftManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhcp_fhf02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MODMEAL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bx3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Teachers_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/aglimpse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editsum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminqunfachk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saloma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tel_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashbey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PaySetup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/styles/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infosearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FiltrateIP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmropen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baidu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/29385.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_wenzhang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Message_Out\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_come\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paypal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tidoss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog0031\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.6.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowsdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jklliu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/tianzi.ldb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bynumber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libo21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bvadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rain76\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlpanel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bretange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addadw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_footerset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_put\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mon_0906\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_mod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Email\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/color\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brendis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelUserAllAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mimina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppwb/Temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servletcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Buy_HT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/School_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminresources\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsales\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_ReadOutBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserReg_Step2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_2/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danweiKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/pic/post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rollin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmedia.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingaborg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oaetlove.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver66.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waterimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lt991107\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starstud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_navi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_order_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanup.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penelope\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DhtmlEdit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clsUp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brooking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmallPaper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bfhayes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumBoard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TMP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadbanner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jourdan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/lsindex2.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuzu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vern\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ArticleShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mahmoud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xljb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/log/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmx2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwj812\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qlx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Invoice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readchapter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/md_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewForbidIP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhhgggg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lrgw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/updating.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_imagesdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jrun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changelog.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_productsave1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frankfy4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowfish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~sys~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrbill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/si\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lizbeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelQQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shhuimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxjxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_VideoView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv70\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor_v280_Free/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logox3.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyeobbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philippa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itemdroplist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainixin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowTrademark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koral\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reviews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tagcontent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/BBSxp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/databackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/htpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savedingdan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageBrowse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sugarbear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginchack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GroupDebateAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun212806\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newjobcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InsertDownLoad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonforum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Install_dotCMS_Release.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sutekh0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Get_Password2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christalle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsandye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wfcb29.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_cate_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_dept\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/italy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfiomirserver2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/sam._\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.epc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_FriendSite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showallsites\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinyika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sniper773\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BokeApply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuelao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mygary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banneraddchk1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StockQuote/services/xmltoday-delayed-quotes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bendix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncslarry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lemmie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_Fixed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmolchan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminuserlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpryAssets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toplist_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DeleteUploadFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_PhotoAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_shishang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruda0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kori\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisabeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drewqa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dashiye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TopFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netscape\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coledit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmalynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marje\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacqui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is_cj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zylf_canvas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/upload/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateRoom_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rencaiku\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trevor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test1.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nealon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irvine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calendar-en\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_usr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/35/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Blue_userimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/system/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autologin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setbwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelecoco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donghua/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linoel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shownotice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glgsmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemCheckplus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INSTALL_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pritwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pureadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thibaut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassMgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/contents.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleCategory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_php/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzhaAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gotousa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispsucceedinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organ_detail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaoshangjiameng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursuline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InFile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iraunaj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TopUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/store.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AboutAlbum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peekaboo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connectors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rename\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CopyField\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blssbw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackol_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marleah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_myshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/P2P_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/content_areas/vcafeeds/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_c5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_gsgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log_data/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_AreaClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/lm7ldede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotel_Help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phillip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzxiuok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/se_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AUTOKICK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjjm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonp2p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serials/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upndwn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Xiaojie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Resume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserHtm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blithe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webspirs.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_bank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nousce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yes/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_code_guest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_PassWord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckPWD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yl790307\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liudehua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_upphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s86ting.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PLAYGAME\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wszp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naughty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu_bg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingpian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board/editor/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wscx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/getior\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funtime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/putter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siusan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestPreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.asa;1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RUXI2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melisent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/food_info1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktextcolorcommand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPayReceive1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnnnnnnnnnnnnn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micheal2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bggdaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_List2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augusto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lm660922\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listgonggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/s8fadmy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherilyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrivia/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youxi_wangyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDFAV_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biijmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicolis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iishelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcflr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6666\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemwind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrmi21.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaibu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JS-ShangXiaTiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dslm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delreply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saintssaints\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carsave1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_TravelSightManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretermission\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alasdair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassReset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/lb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dpdgmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjcy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_plugin_template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgwind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jetlun006\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiaiq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEdit/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UnRegulatenewEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/so1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/666.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oci8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3020\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurkowyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daykqinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysqlDBoP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache-stats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_birthdays\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showmov_smil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deville\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giants\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LICENSE.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qz_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz_qq_js_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/adm_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~.htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_index0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daycount_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crypto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserCorp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacetheme03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eokedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maura\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/royal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CopyofAdmin_NewsContents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jmail8888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_Admin_modi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depends\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_service\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lcls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsWords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jul2086\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncPlaneSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_spacemain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSXPplay/list.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mo491483432\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c:/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ClasslmAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hein\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedeajax2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysHead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookUserMoreInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gccjpppp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reviewindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbjl_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woman/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PollResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/live\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CZK1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/researchinc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/777\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caipiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuoamirserver33.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richinfl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_groups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/65X57_2.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnkdata/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_addpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iwy7123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Popularity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huangchao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gennifer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pricemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Getboardlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ertha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewComment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piotr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwcom2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kfaddAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VerifyCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lijun851025\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorenzo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wazoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ArticleContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninnette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordermodify_begin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ExceptionDisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Navigation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_film\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/search/qfullhit.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mmgr/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Industry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote2009\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/upface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babe23\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysProduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idsq33.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mthbp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinmo0011\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Receive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_plugin_src\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xslt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dillie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckcontextmenu_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_settings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilwfMirServer4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DenyIPList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nourishment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytzy176.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claresta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/LICENSE_SINGLE_WEB_SITE.TXT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gisella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbookedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uudaqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/too\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WinMediaPlayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SFNumberTypeManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleEdit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfxm.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kli012\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetNewsAttribute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janenna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfsofile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refuse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mikeb265\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chmod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pencil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yfdai1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumCategoryJoin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_shchmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baojian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwhoopie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_friendsitesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/money6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Book\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/exampleapp/email/application.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_JobWill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playMusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altermenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kquemirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Demand_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_news_pl2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmvirus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MessageDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_docs.en/readme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siebes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/south\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glimpse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aofn000.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadPhotos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postgresql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AjaxBase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softsea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_docprops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Header_Educate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/green\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminbackups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_tab_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kojak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_spacevideos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_Base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shemales/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchDaiYu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INXS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_userface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminroot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sale_Send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vikki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_img/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_class1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/li.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_index_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Servu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/redirect.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.pl.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celestyna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/access7/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin500.com.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_10/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SCart_Succ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/info2www\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leo3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iXs_Editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitches\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_show1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foodListAll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxxxxx2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/no\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_AuditingWrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naspMirServer.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v88fjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommonFile/ediotr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdj_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tysontyson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AjaxRequest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowReview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Huagong_Nengyuan/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panties\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emailadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_banner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maryanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Auditingok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maxima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiiiiiiiii\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bathsheba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_master\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intruder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/country_codes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuytrewqqwertyuiop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxxboobs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/svn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Left_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ_Act\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs25762525\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SqlConf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quasar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/share/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domenico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin777\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/famuMAIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OfficeFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_New0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/printenv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhfzw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adonis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piaofu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_6z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealWork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saundra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbb000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/19694.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roderic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload_soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kendre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toplist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditTakeout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/91c0admin/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/example/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Master_Preview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allister\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roslyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orlando\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-dos/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kqleavelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shaolian_Ertong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_IncSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ll0715\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpm_query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_edit_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seccode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/login.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tammara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.netm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicolea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refreshfunctionbig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zysc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keslie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userdiary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_funcion/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Lesson_Apply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willdon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dcshop/auth_data/auth_user_file.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendSiteReg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gly/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashely\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEditor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tandi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userbottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protected_access/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/southidceditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pamelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pone_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web2000/oor/content_areas/members/auth.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administracja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glori\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaijin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Huagong_Nengyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/wmv.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doloritas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JS-TP2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_lookmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Databackup/dvbbs.MDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/json\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DISP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llgshopping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanchu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/features\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Commerce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zlcg_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gretal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kuang5_UploadFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cgi-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_user3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP_back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raphael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pavlov\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Joined-the-details\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj_DELV\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizrepic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tplcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/account.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyUpUserList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/client/user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydx9317\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board_setting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/logon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/27\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/englebert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longzbig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oswald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/CHANGELOG.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xjffmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_keywords_analyse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hali\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bilge1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sign-in/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh-SG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookwrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trqpm.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongzuoxuexi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PlusDell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/addlb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0g\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kicked\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Reg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moorning\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/style/5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobedel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebForm2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/htpasswrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dcfx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pzag77.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rowe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CoverStory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminEvents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonLayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OaLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayrton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Key_All_Job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuyuanwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jonathon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodocs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CZKJK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wengzhenfen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorilyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usersave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jspx_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_FreeLable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageproducts_tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZhaiShou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mapix/doc/en/changes.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaaoweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humfrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/allmanage.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broozer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hc0851\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.76hj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_ClassModifySmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyyhg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yvon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewsu8.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tempfolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex1974\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VideoFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rerere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acuv8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassAttribute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawkal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sina/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianxidel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyhs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mynews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yue1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_dongtai_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lendedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_IndexTop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idejjedi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Start\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penit-Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zc_change\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_guanli2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZjMore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyuio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_AlbumSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citylady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getTags\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuties\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlDef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noble\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LostPassStep4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iLog_SetParam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveProvince\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tremaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegLeague\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scroll_tjpp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leigha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dat/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aq8323\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_print\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/615\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nokia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yehudi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjwss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messageboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yqlj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modelsearch/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc_read\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgrose3327\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_logodel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydiary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melinde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deedee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_movielist2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musicold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_ToTemplet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liwmxxx.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workchangeinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/znsnwww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yb1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grifters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jc1234567cc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/Login.ph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doralin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pqmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mattaf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ModifyInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/1/bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lacy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gsgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfs1035\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imghappy98\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user-msg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janeen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrielle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_ClassDelBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheila-kathryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnnys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedwiga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anthony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/orders.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzajt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/to\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdemaio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dan_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/didit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sisely\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssssssss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/uptime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yvette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReviewContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmlscript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhcp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6jexadmin/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_fuly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_month\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asd123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_diarydel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/anyboard.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfredo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/huwai.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_disk_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovely\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fydetal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dgxinghe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qpmz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briley2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mishari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poleshen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artic_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_google\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bora99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desertma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/dmr1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mzxiaozi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sammy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalit2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_works_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alyosha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surfer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonely\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/girl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainaframe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel-administracion/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers.sql.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12642.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addgonggaochk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/Logo_q.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felicdad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hexin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daijin1998\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfonso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_saveaddproduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theodoric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/man.sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showitem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aquarius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gordon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exeter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableNavi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bekki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wittie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gipsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mldel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hygg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_blog_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typeset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdriver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrangler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccp14admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vcdvcd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demetre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tkcjxd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koressa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obadiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww678j\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserDell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Consumed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylvie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weider\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LeftTree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saintflower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utpxpp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ani1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mjsxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vip_buycash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sydney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonghit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_extractmessages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/UpLoadCom/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqqqq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztbd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendconnect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cgi-test.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_ClassManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/client_notebook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juliana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rexue.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delphine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fidole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subaddrule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karoline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContributionList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyAccount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newstopad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maury\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diqu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_Attribute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinkok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Thing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/query_sale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Hits\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teacherOth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyfavoriteAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ptable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silvio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_hot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_msg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delshortinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garfield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBLog2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzwAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40a3jinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caritta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.FBCIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Master/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok-he\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/westbrooke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i18nctxSample\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winifred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_dir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mortimer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cicely\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_EditPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuxingwei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/pins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc010\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kxcfa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/page.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/STOP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modesty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barswee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_center\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysParameter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lswvmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managemp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashanti63\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drakcap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin2007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rightset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test2.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin868\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schema.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brnaba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MenuCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_setnormal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images_grey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savejfhjxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/frmupload.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugsbugs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~tmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lenee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TemplateFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swf_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3456.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/Login.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkkkk2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kendrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/down/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/texteditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RESTORE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leapftp.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PhotoPlayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cletus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/working/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add_UserAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decode_bug\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookdom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhanh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thurston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devil1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annalise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscodejs2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PlantsByWebSphere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elysee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showdown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arturo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdata/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liebiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/msadc.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditHtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yszx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttpp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs-adminM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_GradeSetTing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolnwwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_looksum_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driver/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdjnlove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ2008.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lang_Base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scqj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_verify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/paragraph.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11266\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessPlatform/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chanpinShowMarquee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ypzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/emot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbyman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfeedback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engracia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/far\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/Default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yiliao_Baojian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tristan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timofei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elspeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senddate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nerte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CZKYB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ksfjeee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuexingpeidui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_Demand_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openvpnadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margarete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_56z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydqmww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pfour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8web_scanner_test_file.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuangshi/wuhu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkklK980\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleonore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_notice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bledsoe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/kepu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignacius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_code_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Space\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tansy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mentman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Msdg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relogin-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gameofmir.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Work_DIQU3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chao.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetAd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyndsay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf520.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typecontent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/search/author.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vqvmrrrr.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/components/login.ascx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OutDate_Message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageccnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Current\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Loginout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template_maintance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wajx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RndPWD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glzudui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Joinsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_InBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pass_6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Estadisticas/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cccccc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zznc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jelene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ymqd3456.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yumiyo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manacc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wutong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_newspl_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/songsendok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seoadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/gnujsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outmessageboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ip.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anabal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maibo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_mail_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/products_detail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mystat/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserRegPost1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/officeXP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AuthorList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Enrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/docs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzj721\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_club\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_art01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drinker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erinna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeLable_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smarty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clear_step4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LXY39670127\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maressa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checksoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adnim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/private\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LINK_MAP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlkw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weather/cacheindex_110100.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/P_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Petcopyright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ows-bin/*.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Module_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/proxy/w3proxy.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articlesort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz_fafang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tokyo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_totime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get_OldNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrdinaryFriendLinkDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonerd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_TravelCityManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_case\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxtb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ima3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guojj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log_C_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papaguy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibylla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watch_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/24.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shujuku/movie.mde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiangli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casper1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/rpm_query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.tgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camfweb.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/jiayuan11.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estevan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditorFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DataBackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/callean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ads_ShowCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_secques\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/book76x76.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHANGES\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VisitList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/auth.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website-information/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibylle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taddeo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asa.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FRED\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jennica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowGuestStyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shishengtd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_usermana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/htsearch?config=aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsense.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valenka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_cate_13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradnjanet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plus_MagicFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/account.ht\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_Base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_path_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoukuan2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drivers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZMHH\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lotti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qqkefu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/pgqeeditor/filemanager/browser/default/connectors/jsp/connector\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evelyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyDB_back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view-source/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AtlanticCity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jib_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Works_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/girl/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tildy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales.sql.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnatsummustang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/filemanager/upload/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viper1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ViewSaveBody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamarra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symbol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ding\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opc/services/BrokerServiceIntfPort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/img.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihaixia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l4748\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dcac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insenz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminmove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Server1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HYKSETOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GZCS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advertise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrpsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opc/services/OrderTrackingIntfPort/wsdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/services/User?wsdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deirdre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manifest.mf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookpwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martini99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Card\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_10/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/component/WebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgibin/amadmin.pl?setpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oetaki/oekakibbs.conf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TDdownload/cxshop031011.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret/secret/sql_tool.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnphmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxxobbs/mdb/dxxobbs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriott\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pattie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_AllSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michaelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfreda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Xingxiang_Mingli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabgmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chucho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shepherd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/israel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monny223\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trainaddcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_SendApp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thornton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_All_Logintime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o02tenc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/door\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_logo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebVT_Include_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathrin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editubb/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaramon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/30863.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forget_password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nwadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.ex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asasasa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/Sheep.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_bbscode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserPara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protected/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/pic/icon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webcart-lite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_editpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SqlConf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditorNet/UploadFile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/TheExpiringHTMLServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sf_skin.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0wygjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHOW1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/School_Register2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserOnline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Administrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_description_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kukcmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gh345dfg/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrador\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sm1hqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roomconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_blog_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_LogoLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_newsedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_New\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/77.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2l5pjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abstractsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guoopen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeanine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sendsysmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ObjectShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruperta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stefania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles/shell.asp;1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjjjjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db2www\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzdz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgbgbg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckit2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzyss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctorwho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_newsmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oooooooooo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tupian3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Lesson_Apply_Read\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.files/home.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manuallogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gusta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gdjm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_priv8/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheryl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gggggg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/_vti_cnf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musicList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CALLTWO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manager/left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimitry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server/server.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savehelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bibby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pppp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_form\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/namdrib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readtrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mneedle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruetama\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_group_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34333\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clevey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PYmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/61\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malchy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jul-86\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/angel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enemyeventprocess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlooklist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calc_8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_info_index_liebiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nw/db/global.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/xzq21458.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetDvbbsInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9090/examples/applications/bboard/bboard_frames.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicoli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robinet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xrvnwwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyrillus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxrxjing.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wallas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache-stats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroljean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shkitty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileItem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expeval/sendmail.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/don\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/clickresponder.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dfsfse276\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangchuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queryfitmyjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hehe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groupsend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transformation_wrapper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yettie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqkmf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giustina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/order.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Balance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphic/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/print\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xs015\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlpanel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6585\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getAnswer1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookphotos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commodity_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_ClassManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookMessage_s\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjd676\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_select\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LeapFTP/leapftp.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asaveuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bannerdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_source\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemFilterAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonColor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calc_7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_code_photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vincent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiameng2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lurette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserRegPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpdf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brb9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oceanstar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Show2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_IndexLeft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmdasp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downloads/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Freeback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgea521.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pasquale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfzn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_cookie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thematic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_musicserversave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_image_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobnewListx1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserNewsModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lululu13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domzhanshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yanzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/20/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raynard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murray\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZHUAN3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sc_tp2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/widenet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyqx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crossdomain.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MirServer1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obnoxious\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/averill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/categories\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzgongji1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_iaskz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Special_Topic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/our_term\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruledom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r4e3w2q11q2w3e4r\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qosdnnnn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsglnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Agency3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/husain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rempost_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/hooks/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_caiji_Md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoadimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heleiliang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/date\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/signin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rozelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zackariah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq232174321.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gtmx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currencyset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MONEY61\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ListDept\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/fckeditor/fckstyles.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_New_TypeEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Guestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martainn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PersonVideoPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cronos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56avqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxxxxxxz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zenia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_replay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beefcake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jysm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newleft7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/test/pathinfo/test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birgit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_staff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invitedel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jqypqh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/love.621net.com.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.nsf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ClasslmMod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sysadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revkah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliviero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dbconnect.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_GetPassword_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clemente\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cashmoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_cnzz_wss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_refresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/common/user_update_passwd.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhiri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderReply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BonnieMC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murvyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glenine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_mod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_HotelRoomTypeManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexTuiJian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPayReceive2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editworkrep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apexec.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Personal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnabe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feixiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baike/fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/znzxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/search/qsumrhit.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hua788\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secured/msbilllog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimbell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elonore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_transformxhml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bites\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tigger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zitella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_verify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lu2lqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setdiscount-temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_lbnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hot4u2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cg-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vikings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/target\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulcea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_rss_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necklace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natalee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tejia_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Beavis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amalie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garreth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitor_counter.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RJ_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banner0930\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/act.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_htmlsc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/PageReturnerservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myvh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cccx2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiezie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/systems/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_group_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysAdmin_tree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/030.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pertel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tywj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/one\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_PublishPart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newAdd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FAVORITE_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plandb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfiles_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.srf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvalmirserver.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/David26\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/looksees\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunny1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincp_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminftp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_VIP_DD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWeb/db/ewebedito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raynell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srchadm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form_calendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/lvyou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Wait\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/language\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Feeling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shufa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sq_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/husein\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/types\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilovelandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admininterface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewreply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/netstat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yorke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaoyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_Agency\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ykvquuuu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_caiji06\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageMovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prisca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kariotta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xu2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_casemodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_z_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nxhf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyTrueInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SchoolBeauty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles_2765\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dingwei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewwheee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/birthday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/if8gftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addwg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delbuy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/type1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuYingCang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webFCKeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztcrxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martinimartini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucky7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EmployeeView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikaihsot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Imagebig_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bank/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dierdre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miyata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poposky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_photo_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etc/.sh_history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elway99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchContentEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DrawMagicFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvquan7468\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldec_expo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managexxok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/guestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ff0aqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howlwolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/19/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customcredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orrin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realhard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tu4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_gall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fngy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piju\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Showlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fly163_down123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_friendsitemana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annoy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ploy_update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrzxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_ClassModifymid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/report\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruperto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewcomment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crackz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0w\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pAdmin_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanzhiyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_sc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shenghuo_Fuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topnew_10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FHJ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geneva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eden/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/pic/3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_Del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clerkclaude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3333.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rutter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heywood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bluemary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nftx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_faw_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss_vms_admin_sm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InsertEmotion.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkbumeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_9/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countdata.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phppgadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpvh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PicDetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/STUNT1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francesco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexshop1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_add_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_car\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianjia1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ho-shyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyDo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/qiche.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mag/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reeder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavalier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bieshu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ramon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ely\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o_company_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsjs4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resourcesetting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restricted/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruben\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerrold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tchi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Logon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auisgold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahai25010\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/asp/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noticefilepopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyril\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_yz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MANAGEGJ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hollyanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opc/services/PurchaseOrderIntfPort/wsdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VipActivity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huitu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zixun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_article_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invitedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsad7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyxn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogshit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chengyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FS_scripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/access/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_xiangxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CompVisualize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fvipMirServer.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quickadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PriceList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fd_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Breadfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jillayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Amusement\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/anchor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/50\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessPlatform/auth/clientscripts/cookies.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oooooo99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyynmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aStatDay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/yinyue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyvip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UsersPay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adios\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo1217\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rastus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submodmeal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumlogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/11377.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Voice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikman88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimize_conf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pauline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel_giveme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/hello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker/aggress/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hongxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuyuyuyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CJ_Pjblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bennet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/See\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cq.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveshjclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/nongye.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ab_NewsShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RefreshFileSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_userdigg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_infosrch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsaveL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imageuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver00.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/controlpanel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BlogDB_Conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usr/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JIUDIAN1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taoye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialogue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/htmledit/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_eWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/allmanage/adp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Elegance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zhishi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.files/logox3.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carroll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/JAASLoginservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turkshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldrich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_ChangeName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sk_ItemHistroly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/livia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manolo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abagail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback_d\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helveticab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwert5233\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/09\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjfzgjok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rourke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skippy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cream\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveArticle_UpFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Falv_Lvshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kbnry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_news_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horatio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cljh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calc_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/star/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_s_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyVideoFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_usr_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templateupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FTB/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/january\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_spacesee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestlove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileTransfer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haywood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gxhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maryrose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/at-generate.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myexpo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosalia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpbj1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_producttype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsjl_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewstate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Prairie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topicpk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jorge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QuickWrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back_common_emoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/didge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saunders\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gapumirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurthur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/replicator/webpage.cgi/313373/ukr.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jisuanji/hulianwangluo.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TakingChk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserReg_Step1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srrwmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Delbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mczs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongman_katong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Public_Log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenleiinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_includes/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leupold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trustadv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/map00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaleState\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/space_global\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chooch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pplive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlotta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjsm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzbbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dareen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fransisco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/STYLE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qzkwllll.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pmleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IMS_AD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddressBookJ2WE/services/AddressBook/wsdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispargue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zixuenindex_back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sql_Function_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MimeType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/DhtmlEdit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark1532\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srinivassavinirs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_ab_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucretia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/77myalert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sallie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_EditRkInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huuuuh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VREG3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PublishJobschk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_index_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_web/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kliment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/search.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_add_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhengshan1005\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Script/Upfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rank3_mulu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~named\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimbo2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rndupvip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JTAExtensionsSamples/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yilao2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blazer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/zhishiguanli.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fffffff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estore/annotated-index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tar.bz2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kvjkhtdocs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bash9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j2ee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/port\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyaway1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Infragistics_MSCRM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sta327\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolbuttons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiajiaojobsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_9/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kipper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peggie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Teacher_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/lb/tzmeihua/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxjxlm110\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybjuwwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t19660428\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crespo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LvGu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Poll_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qzlx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFolderFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/17757.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MBS_Secret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myspace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Search_Quick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/restricted.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colchester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/test.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meaghan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nimitz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INSTALL.TXT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignatius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Dept\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prod0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katharine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/USERSET\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meirong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/snippets/gettempdirectory.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeeedddd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dscy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzsw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MONEY3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sholom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumcp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kizzie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_ChkPurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashleigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_juanshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bt/soft/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarot34\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noelyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rssdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lelw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lawrence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Teachers_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbsb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_operations\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harcourt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www-sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AL_CategoryManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangye3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delMend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_connect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madalyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/14431\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mopass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_Isform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comapny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dededede\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/whois_raw.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php_s\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConvertClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hsclMirServer0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethelyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sohu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxtbj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christiana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nosql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Export2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_reports\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModifyPersonInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Price\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenglin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/browser/default/connectors/tes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publications\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardener\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oct1079\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsmith7051\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommonFile/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tungou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matbullock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw_func\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whmhj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Transfer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrott\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzsgp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_makeflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmkeycs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/security\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tnysmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcyunbj2006\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qingren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/januari2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckxml_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theodor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nessa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stereo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_shouji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl/webeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_news_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaa.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifyfjpr3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/show/sss.rdw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MINEJL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_properties_operations\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roxine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/70\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/montana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/419348_1006\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/jj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XpBlue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jczs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_4_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/counter.inc.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_jubao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumNewsSetting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscribe.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elliot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f_control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comments\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trever\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPaySend2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hephzibah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_administration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/team\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newok1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qsmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addxinwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regcheckname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_infoview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/websearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smilezhanshi2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/Admin_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treechbissjop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_tests\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shehui.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxgz_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luckys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~uucp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penrod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_add1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gpxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv_flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_photos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kendred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axis2/axis2-admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgeanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangwu4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeleteExpiresAnnounceData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/war\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faqadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banneraddchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07flash/playswf.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaoimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digest2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_DownStyleList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepwd_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/READVIEW\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grover\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epochp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huilong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plane_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht1212\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/handler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConHead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/bnbform.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ymsz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rutabega\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liwuAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.printer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugenio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hekafeiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addlinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leroy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewfk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whittaker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rockon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/adcycle/adcenter.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fasolla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HTTPClntClose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldec_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/security.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_TravelOrderManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pubinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisbeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edjbsql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jidiancz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/law.com/admin_article/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrfny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnkbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TopStar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenjian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productslist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_address\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_Host_Data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Omen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/obwiPowerEasy2006.mdb/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rustie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lesson_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employees/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyt124\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewstockorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365.wuhan.net.cn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nobody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scheduler/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/el\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowl2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antoinette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederigo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/validate/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CulturezxInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Server.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgooqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sawmill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mozelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_z_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anneliese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhodia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LINK_DEL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AjaxServer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kalli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Job_Htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/var\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/trip6159.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jixie_Dianzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxjw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outmessagedelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melantha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WolServer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsbamir.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmyxMirServer3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LetOut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ch2158\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/granthem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BokeUpload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_create\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_checksysplus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Account/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s80hzm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kunkunj88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/classes/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shandie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlotte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heloise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delmeer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07flash/0822ad.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newJc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/db/ewebeditor.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ywjabc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeployInit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HELP_UBB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ye7111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/admin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocoon/view-source\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pumas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shehui_Wenhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_sysdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skipton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phoebe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muffin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lista\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/plus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_C_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberLostpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_administracion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/F22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VipCardList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Bankroll_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhh1234\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poeni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedicto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhjhjh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myqcl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caressa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_album_comments\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.tar.bz2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/sysimage/actualsize.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_images_5_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_ClassAddSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sidechat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/25334.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachrenew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminstration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tasha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadFileClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClubImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inglebert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tplist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_sz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinaren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barthel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_adBigClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sm1011\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aust1288\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjl523\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/Qianbo.Qianbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackhawks1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Contacts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_review\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quillan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_tudouz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/best_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Showpage_Ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tech\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_cateforuminfo_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8passwd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_Tools_postings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyAssistant_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magdaia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rossy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/Edit/editor/_vti_cnf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karilynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marsiella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banneradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aloysius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl-2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traderedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manuals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/styles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_getpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petorphanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.php3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Recycle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nadia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installation.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhdz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbyd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdwh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmjhui-ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trieu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_cx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnebas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_plays\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id_dsa.ppk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anthiathia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_history1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EprintList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckscriptloader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerrilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeshic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joppye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private/htpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhjd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop3Box\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/newadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadWindows\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dummy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexedit_bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/AddressBook/AddressBookServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domcfg.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe_shfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbjclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showchat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/huagong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_model_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smart911\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en_US/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talkduck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.server-status/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YeWu_Upd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBTOOLS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableLastDownList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SQLData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexforum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4601,593,1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senddateindb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotcompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffhus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GroupPermission\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marie-jeanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/username\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/F_xiangmu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postexpo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikkie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Xinwen_Meiti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_DataUpd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/machangdong30\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/britney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/power/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p3fcqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Data/IPaddress.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/counter.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Food_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maynord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ESYSManager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nedda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaq2wsx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eqdkp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_jiaotong_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsTitle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/techedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_a_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goolge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzdh.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/com1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alejandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footsniffer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdc_T\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cykvMirServer3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriellia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BillReceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inness\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_song_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workerinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/data/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dispcompare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/password.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herry2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photos/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xylia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.htpasswd.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/failsafe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/upfile.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycxche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krystalle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canavan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserRegCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbstop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tigerwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_vip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plf8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzyhq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booksource_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/z9v8aaddsfedsffdsggfhhdf.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_addtable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dicks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/ReadingList/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editxiangmu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacerss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianlao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScheduledFlightManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popme/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addclientinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404/rezeptep.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rilpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumTree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clear_step3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image_cp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brucer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marijo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Class_Menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/EDITOR/Dialog/file_gy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckedit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_10/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ew/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xz1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cullin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog.nsf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/callida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_title_modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kdown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coralyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Messager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conndbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purcell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmlrpc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lesson_Action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eybk101.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liufeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/view-source\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_siteadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eumoff.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxyq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menghuan123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dqxyt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminmpp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyCardList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MakeBoardList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brentford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_member_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berkie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caiming0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jesus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main1.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grimm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debug\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ransom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tits\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w003\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_EditDraw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_New_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_cl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smitty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vincenty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rq_message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_Index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Constr_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tandie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maximilien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/license.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/che_Adminlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdtobk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_url\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ExchangeList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMailList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zy7806\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BryanVinsonbvinson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rahel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cqsf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~ofs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobafett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenxue/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Emotions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/find1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/139.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graehme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/map/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuyifang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor_v280_Free\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuytrewq2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HUASM1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nashville2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/data.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pm_adminysm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftGather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/bnbform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmSub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iseabal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Forum_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/pals-cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayRmb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/france\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_addons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiphany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_hot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foxtrot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/something.stm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getmoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/_notes/dwSiteColumnsMe.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app/config/database.yml.sqlite3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContributionTrash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tybalt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serverlogfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/request69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibit_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1ndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuhu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ztAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UnBackup_Data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_editpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/access/sf2.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_adsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_xp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fl_1_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darnall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/callpswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hollie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonidas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ringo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsletter-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oooooo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/WebEditor/db/ewebed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commodity_class_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminedit2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sebasti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schema.yml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acefrehley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bayard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile/Upload.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epoch/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hughie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booksource\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nf_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFileSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meseve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_view_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spec_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldshine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetAdminGroupPop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gywm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassAddSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelSpecialUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/girl/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MMHH\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vefl23.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buysell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maiga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbookadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msg_page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkmess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hendrika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watch_detail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/06\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Debug\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floatcard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/COMPANYuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linksadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sufe1998\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DefineStyleParameter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andaljfsd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yalanshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calc_9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_picupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7879\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BrushCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkcase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index88888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companymessageboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhtml/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgdd_20.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferdinand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product/Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/4612.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kemkem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabpane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nariko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySendBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ianian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JoinPersonList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/REGUSER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faceicon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert/bazs.cert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iceman58\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Aspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usrTOgbCK7Qf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbumen_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook/gbook.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinke.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarfontscombo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beryle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_constmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reagen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phylys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fttcAcvTools.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freepics/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servicesystem/login-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iammcse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogdan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/center\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkgn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petstore/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TypeManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/donghua.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d3001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateCommon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ixatzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59843033\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previewimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndexResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pagejs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_tour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ludvig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leopard2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialPIC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annabell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kacy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ace2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/all/libraries/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gymnasti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dienstag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baldy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smshelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TCTC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.bashrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_guest_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jtinfo_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deleteme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangzhen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/text.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_const5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminED\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReadMore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnluyanji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/area69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuantiedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Exchange/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase_Space\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalong1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_setting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelcey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laksmi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top2_zhaopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vrqjmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_AlbumList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mateo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qxcnc_wen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Employee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunfredo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eolanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delores\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postconcle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RepairYesterdayAnc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AnnounceAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinggong1023\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/yl.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminOLD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteunion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mguihuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lstomel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java_game\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bj731030\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/databasebackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mohawk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuzhuang_Fushi/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/najk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_boardmanageadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog002\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_movielist3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eolande\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailsun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeSansBold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/sample.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modcp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frances\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowsmdcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PwdStrength\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/stats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unknow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_person\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resendemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/tx.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YVONNE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBLog3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_add_vlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermanno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_logon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robinson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tqDistrabute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roadrunner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/membersWmxQ5AM7l\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/hidden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Secretbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfile.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DocHoliday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowImg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamepass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malcolm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Album\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topic_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diwanchn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiyao.htm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gtl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managenews/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/busty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoshouinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giorgia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/run/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salomi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwxbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/search/tidfinder.cgi?2956734\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shalala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/red_black\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guokewww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/README.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caonima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slowly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pk365_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QGZH\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adpaysettings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth_user_file.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Utility\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semprini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2012\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devinne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfusion/cfapps/security/data/realm.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/12200.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Les/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_yddel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LouPan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyyyyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/power_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModifyQuestion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yfcuwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/gangting.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy_imge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_smilies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janeva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjczk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsofoot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEM_User/admin_php/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/document/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fs_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caipiaobocai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgaojia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dqxt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/autoedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminfunction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_updateuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swkt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor_v280_Fr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/config.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjhhjkl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/whol.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinhold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangwu2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkskey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Baozhuang_Zhipin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andreas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bendite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myjb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybbs/saveup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.procmailrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_b5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyanCheat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public_serve_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hergood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SMSPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_copy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1314.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shufazx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_C_Label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarfontsizecombo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan1088\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sseh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c48e\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiowjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/street\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqonline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/editmember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaochemi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w3c_skyscraper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZW2013\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Date\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esuperadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ExitSystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beibei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uncr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r4e3w2q1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nyours\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgframe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_guanli/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyqihua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/dbman/db.cgi?db=invalid-db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mzjmzj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_body\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AgioBigAreaType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jszc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tracee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kayak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zhonghe_Mingzhan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/player_url\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ws_ftp.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/2j5vdede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_yuzhiguo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote/control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Store\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ab_PageShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandais\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/STARMOON\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcx1223\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margarette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kes/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broken\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_list_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gedit_err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodneyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanids\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seekinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscodeztPicJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elisabetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjhead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project-admins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaoyouedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsgk5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/appoen.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aeioumaze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dboperate_getinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/bin/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lq611\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qin7633\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itwaibao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Logo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Wbeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nellie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Connections\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaiya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ststems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/village\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/6k\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hidden/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/markos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Sid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_WaitUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Z-Blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiyeyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MANIFEST.MF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms00log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daquan/02tieba.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guest_Write\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dacia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VaBrett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karalee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nogueira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminonline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thelma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSSetup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_api\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickolaus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_FeedbackRe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rewpunpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_rczpedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claretta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/namecal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/conn.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diannne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenville\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/tushuguan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superexit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annnora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gtazmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itemSeek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableSiteMap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaofeibak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltc123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvmladd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flagprocess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htm_data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCaptureRootCA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wicq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzgw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggaolist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardMoveAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phaidra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherlocke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy_long\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timework\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HYZH\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minnies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_spacefiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caravan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qtwylog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showwish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mookie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NetBook1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurilia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areaSelect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/styleEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azbfz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereBankservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VoteDell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hetti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byoungbyoung\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krysta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Topluliang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_calculator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/logo_mp3.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbc_RelatedArticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gameread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FAQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/health\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clovis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/show/back/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/over\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs5.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starchat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunwei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setpasswd.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BigClassKillok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2009\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_status\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_archives\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugenia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marrilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/FCKeditor/editor/uokrfckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrisse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese_GB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qq123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restricted_access/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/montgomery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mureil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaymee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangshijie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flight1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FlashFXP/Sites.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cragun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gh9581\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_FormatFuction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addtongtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avatars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifybk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feed_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/totom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pissboy75\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_City\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compatible1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Agency\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles_3185\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/light\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntan.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stevefei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daune\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bencandy_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janeczka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wclw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssssss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/iissamples/oop/qfullhit.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erastus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/green41\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownloadShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.smileys/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aceeca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smiley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Alipay_Payto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Listalljob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trooper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filmdetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDFAV\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcdef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/s8authors.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0y\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm/style/admin.css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tubeace-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_O\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_ForumNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hysm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsgl_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nananne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_space\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wo.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyAdminok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404/BeligerantFucker/hynds/excela.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor2.3/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qiye_Huangye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duvemirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nealy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmjz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangchuan_dt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config_base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_imagesadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_rc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingpaimanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alwu100.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07flash/lyqybk16562.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxsl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_work\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discovery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ii.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_request\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/eWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bullet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bor-wen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zachary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Themes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search97.vts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmpok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/4269.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yysp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fedora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relxjj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanshi_nvxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_passw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanclub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/readme.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Store\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msglist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaolei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RoomUserUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbb33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cohfmembers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databasewater\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convenient\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckpdh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addsysskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/htpasswrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editequipment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Managereditok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bisai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/register.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinguotai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_txt/default.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isobel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hymie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euphemia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/refs/heads/master\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PopUp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilburt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq848456042/qq848456042/mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayOnline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin_CSS1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renaldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cedric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw_ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cncc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haixia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skly41380\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robross\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toshiaki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_submenupic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xieyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jm_zz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbsgy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MODIVOTE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervisemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dermot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wily123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Upd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdsd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dleiffehssheffield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hongjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmzs168\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berger11regreb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianjie/pay.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/eWebEditorNet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Play\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeramey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmmttt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Suggestion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jisuanji/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NoteMessages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmalyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Caijin_Zhengquan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qm369\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/backimage.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/conn.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phaedra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ChkLogin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserArticleManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JJGGEDIT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxy7078\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imageslide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rainbow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_psw_set1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TransLog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duilian1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_9/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yue189\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatshit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjrtc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardroom_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_addfl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckcontextmenugroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youqing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/tablecellsplit.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curtice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gkgswowo123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quincy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topbkbk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsuploadfileok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SDouglas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Addccnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szxgcn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonghu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdfb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewSpecialUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestBook_Reply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcaxlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image_gg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mqb8881530\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FIptwo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_txt/_vti_cnf/default.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zcfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_ghostbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets_one_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_dl_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cliente\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Legman/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuelaook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvvv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lincoln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShopInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/exampleapp/publish/admin/addcontent.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moinmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auhzoahzzhaozhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash-show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardyth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NetBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-console/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weiguo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/from2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderDaoYouLook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sugarray\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holly-anne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_xl_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savejobnewchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GreenhouseWeb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mordy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/health/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_map_guide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminJobs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timothy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpShopCart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgbpmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valdemar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumNewsSetting1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Rest_UploadImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maegan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mjb1969\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_productdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_Tools_InfoSetting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Prodigy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hertha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/market_input\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbanner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectTemplet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qryrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinglei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neck0497\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_trojan8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/details.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alibabab2b\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunterhunter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nerty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bangui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/know_hosts~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSXPplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/404\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idrink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zacharia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiouxFalls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cck3cc8d\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piwik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sc_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classes/gladius/README.TXT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phyllys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebai8tvAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShortCutPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdDate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8vbqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsgod72\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssssssllllll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_plugin_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/ofs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bxinshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemodi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SerInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jewel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bapi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/editor/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Part_Company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JsContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssi/envout.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyjxczs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_New01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pincas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huikuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jijk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brennan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ButtonImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RoomUserAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/editor/filemanager/upload/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batuca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CONTPAGE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_edititem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/nc_selcolor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_listset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/J_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faythe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibm_security_logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pizgoo.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personal.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_user4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_JobManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frehley99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/write_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nazimei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statystyka/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showteach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lrecwolserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addproduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_printview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touch/Include/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpv_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holiday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_path_info_name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knickers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin99/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/17149.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectClassFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/active.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AreaCollection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epocs_300001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyfabu_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/history.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stafaddressinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dislist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysBookWrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxjdgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbc_online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rdnrll.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook-ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JiangShui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dhtmled/DHTMLEd.ocx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lolita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peterus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paimai_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sy4412\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataConnClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabbey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_lendOutDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_c3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addgrp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_makerss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~nobody/etc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bluemoon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/specialchar.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john610\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jazmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fritz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmitriys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassroomSort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upshangchuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartoon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelUnit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Session\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wscs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctorpan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_yeNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/46\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/crontab.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Wait\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shijiebeipic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archibald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ring\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PHPBB3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqvipuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_AddAttme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_Dispbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_ClassSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shhuxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wu12yi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daffny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sf_set.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdonlinePopupShow200Default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminquestion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Constellation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INSTALL.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenlei_tuijian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_uppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexNewPro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reloadcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Citrix/AccessPlatform/auth/clientscripts/login.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovelan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminbereich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindelyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itwaibao4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francoise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsbzk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/19/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jisuanji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Log/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqpass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ythvmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.cer;1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zlcg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employees/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangguan1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_nonssl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgzjykbybd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnn.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lable_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diacritic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClearTopAnc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/von\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjzxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MODIWGOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learning\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xypic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guaiwu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getcard2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DG6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/rb.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baozhuang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzzzzzzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NoSqlHack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QuitLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evangelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowClass_Navigation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/vcafeeds/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Search_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_class_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/glimpse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caliphe1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyxzcl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/Default/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditPrize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_subject_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sykj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lenard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincontrol.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viewmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jetway\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_New_AddSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weylin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mba/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lopez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daili-2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MSCP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bnbform.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yinshua_Chuban/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktools\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckstyledef_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donghua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secured/.htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/res_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/southidceditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meigetsu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userregmanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dingdan_xiangxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/iisadmpwd/achg.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/readme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xbbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managepurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/T1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vickie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_hr_details\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giacobo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminuser_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qbsamd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendeventemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/face.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/log/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotel_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcwx3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Library\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iloveyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsmdcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_5xsoft.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkxtmirserver3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_copy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv_xc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sskeyevents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servletimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_stock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen8982902\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacintha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/gpy_toolbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anycall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommonFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assort1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/todaynewinfo_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommendmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/day5notifier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Searcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intim850\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyzp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_checklogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wolserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteSetup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-pictures\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/snorkerz.cmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Video_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_invite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_member_ilike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_cj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/orders.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhanshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magdalene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JoinPartyList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gqxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basicjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avictor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rizbjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calbear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/05/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fckeditor/fckstyles.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enoscmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Heike_Anquan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brith_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maybelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DomainManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub-login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doretta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipyard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_vote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ptadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kellen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbgm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Deuce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestSelect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdff3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free/Music/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addbk22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/mountain.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adriano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqkefu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SONGLIST\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/anot.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan-2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_Cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewpaper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ephrem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_otherset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2bbaseinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kylekylekk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workcent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/know_hosts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaun24.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lezley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiliaobaojian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sipop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soppy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jayy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/60/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hwy731\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/db/ewebeditor.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjbw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingpin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okjicar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_group\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simpleLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_ck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shxshrhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8igrlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_IncTable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/clibs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/access/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_TopLogintime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sendmailme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madelyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gianni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgaiming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/s.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ICEMAIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qqpass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uptime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/WebEditor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode_guest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seanster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addkmmod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mods/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumsell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_lblist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_infos_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hlmsmirserver123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kellina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willabella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Return4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/today\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VoteJs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuefeitestimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/court\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GwList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/DataShop.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/group\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Honor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PE_detect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyChannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarheels\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paymentVIP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waldemar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongjinmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WTV\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crackers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LinkADD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kxcgmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Leaved\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimberlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riannon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/20606.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzdh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbluser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jillian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sk_ItemDatabase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xvukiiii.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win2002\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genealogy/themes/ocean/style.css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_allpm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Js_Free_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/syslogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man_receive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao0407\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe_cjwt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadControls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jillie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/brows\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/999.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SelectTime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/ctguestb.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_SearchPart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliipk.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person_reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marijn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztzjc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southidceditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardMaster_Fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_set_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/com4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdatatest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Payment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rege\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tags\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stearn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxfiuploads.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolpho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxjxlm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brittni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phredd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_data_revert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervisor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/formhandler.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justinian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_special2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffqv28.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ureyann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memmng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jlyf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gundong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzjg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tacforo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papageno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fmxjx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowSoftDown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PicOrderPlay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_Modifypic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creepy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acctman/info/ats/logs/writeto.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownClick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_uplo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etc/passwd|mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sargent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfwo18.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_microfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longeat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/dede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Index3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_map\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_Js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onlineuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/res_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falkner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/gh.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/Admin_Login.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_random\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mwsfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canshu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyhand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/design.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yldwy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sellitti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/during\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserGroupSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableClassNavi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CustomIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chadwick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6145\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extreme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachstats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/able\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopmgr_comm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/.splitinfinity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fashion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BokeSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brother\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb_gl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cityAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/business_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_resources\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimerer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/admin_6list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getzm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Keji_IT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kyezjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddtt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzz.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_Online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PopMailDetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_auto_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcscnewspicPicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huntlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userbuyserverji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ico2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiffani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kobe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Publish.asp/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFileManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pwd/administrators.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanghai3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Educate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hsotnicam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_media\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminJobsdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opendb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateDo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_job_update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sileas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nucleus/documentation/history.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defaultooooooooooo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_cowebpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/releases\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LangTimeZone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helvetica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newjidi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Les\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_CreateJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Send2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthington\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderProcessorEJB/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyPWDEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xubqCmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miquela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Secure/Local/console/cmhome.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uzzyzzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySQLadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nappie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucky-may\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hendriko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log/mastergate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminarea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaodai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Score_cart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_View_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emlyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kahlua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CVS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yishu_Aihao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouijmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chewy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SETWG3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editreg2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/work/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lurlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cih123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_EditVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFileFormAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/asp/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernaline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/active\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmott\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gods\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_xinxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_ChangePass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpaceBook_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lable_Dir_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aux\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxfaaa123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lixiao11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_JobsUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloudstar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spydi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listsendfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19812\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biao1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ricardo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Passwd_Files/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huifu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyfabu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fraggi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddnewNotes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dangjiaoyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css/words.cssrel=stylesheettype=text/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FooSunData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectXXM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/board/editor/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_proEditSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ypnew_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scjzyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expelval/displayopenedfile.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guglielmo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaoshengxinxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilaire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkgn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addxueyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/register.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonka1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwzx/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsLKJFowe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vidovic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inv_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grtx518\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_paper_pinglun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Office/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emanuel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/excite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Userpass_modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeralee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Setfuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog31\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resevation_print\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlynz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gouwuche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nonglin_Muyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/memberfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cubman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/count.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheelah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edouard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Favorites\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbcw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pojken\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addhyxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adwebgbook2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bentlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianwei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lansing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OnlineBuyCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eb21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sddg1314.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roderich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AutoSendResume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email_txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repost1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SimpappServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/phpmyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madness\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELV1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_api\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gayel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_EditVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_thread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matthew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nydia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelcy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ROCCO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beifencheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_culture1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email_word1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akickout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjoiu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cahra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_xjts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about1edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/R_Check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lolo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index{ext}.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiziga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_typeedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showinfolist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FL_C_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/getpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TourHotel_Print\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powerrangers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.cs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web-inf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwj5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deptcontrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editcard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiudian44\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chknewsinc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodetock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishdisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongxinqicai/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database_menager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Video_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.hao222.net\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/animal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webicqlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyJobEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebomb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdf11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_puser_tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cityadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j_security_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companymessagesent_submit-conct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conn11111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/*.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_Best\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boke/Edit_Plus/FCKeditor/editor/dialog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResultAutoRecive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delpersondata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barista\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckplugin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imwlmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_LoadCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listchengbao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orelie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/789.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendlink_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCompanyInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles_2038\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Album_Category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/line4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewguest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anastassia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ordinary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmlid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_indexcp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DONGZ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jycs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mailend.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteFourStep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_auto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moises\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scully\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfgs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20668.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tcsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxkdzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isidora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelheid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etienne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjpxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Delet_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StockQuote/services/xmltoday-delayed-quotes/wsdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spazz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_hy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat_pros\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5578\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dredi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFolderOk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EVoucher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opinionedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzzzjjjjjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administratoraccounts/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simonne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_icon_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duidu2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdp3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FrameImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/services\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config_space\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floater\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id_dsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kaoshi_Zhaosheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whhhtx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_page_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piaoke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/90/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wabbit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyVH\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winsor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectProduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xianhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/books/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baddog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/40/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/mail.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modepage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_size\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/register.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Jobs2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klaus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_netref\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dtodvbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyResumeWorkExperience\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewdetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/touzikaifa.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dazhe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deemon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductField\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmodule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iishelp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mailto.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Layout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_body\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fade_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hlhxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_sussecc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleavland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Deploy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbbbb2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SAVEedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sttng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartholomeus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanleyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_compress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muhammad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bannerAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biejing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sultry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang73\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adeline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cipher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwwwshell.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diwanchn/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbmadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mess_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/444.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clayton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckevents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugsbunny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newupass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Js_Sys_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_gp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_SiteList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scotty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-config.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_pop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wordpress/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azerty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/padgett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popup.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_bottom1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Newscontent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjorn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_config_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_temOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_teamskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horacio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trixy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recvsm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gucci.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yogeshhsegoy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectPathFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/run/forma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/cqt_61.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dz6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webplus.cgi?script=/webplus/webping/webping.wml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_info_tour_lycx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restrest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbxcs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isaiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_WorkManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miguelita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_sav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyCart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edi_news1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_car\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/upload/images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bud1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnmn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincplog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/asjobcom/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetMyResumechk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/read.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duncan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_CreateBaiduSC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysJsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FS_Users_conformity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teodor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pampi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kellyann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butkus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skippie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpaceBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingguo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereBankDepositservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InvoiceList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elysia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathilda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/flashfxp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jman7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoyletme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxgg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_LendOut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xavier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nat1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felipe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_note_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_wordlinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/htpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signfunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintopvnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testnotice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_education_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boycie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administracija\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stashcontrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/FormLoginservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mem/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendlinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuangou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht92\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customfield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddilistener\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lala31\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fdnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editgonggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClusterRollout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/2332.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Principle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feidian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/logs/HEAD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f_feed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/database.yml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaomeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/uppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianying\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Francois\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8888.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyhdzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlfx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbookview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cookies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/ctc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savestaff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Type_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connectdel1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminPR24\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/25550.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bengt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_s\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_ResumeMail_Sub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filtratelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chantal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Imagebig_honor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/njea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm/webeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hqsjsitemap.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_zlcg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrtice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bggx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horatia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priscilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhn1104\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaojing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ows-bin/perlidlc.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/form_results.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changehw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bahkmirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powerpoint2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunyansd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/active_users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/jiangz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendmusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snort2html.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_relation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/money\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQkn-JF.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_owner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frmSmallCart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tiyu_Yundong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/websendmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editshjianews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alm_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/lavsan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserSynchr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cate-all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjiuling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starfuck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewWeb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamarah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lizzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greedmnt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableOpenWindowInsert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiop/ClientClose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creo_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gddw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bt.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacinta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info2www\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guillemette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waverley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_class_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ComplainList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stallion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Api_response\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/members/~htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.index.swp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HeartPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connecteditchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_const1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/indexadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delphi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerladina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Get_CopyNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuyujie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/globaladmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispopenedfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thanatos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VocationClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oqwcmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quinn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ViewInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jer3665\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benfc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/student\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RecordSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toldmyfriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ErrorServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaut6666.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy-ffkp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xm1123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tremain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminemaildaochuchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardinals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaux\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ProductOrderList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_inf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hikaru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melvyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Playall_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg_2007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodrique\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loralee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kareem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logging/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ActiveOnline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txqg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shepperd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dairy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/board/editor/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workeredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rollpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulrike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Help_Help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iishelp/iis/misc/iirturnh.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_2/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creighton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/everythingform.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DoctorUpload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SouthidcEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buysubmit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abloom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kikelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dione\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holmes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kassey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereBankDepositservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytreadme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/README_VELOCE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invisimail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_lm2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ok.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paulina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/cnn.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainstall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_replace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qrxpcom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luimang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_chuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dante\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yasmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/aexp4.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managemember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clemence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Datas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorlac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plastic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminPanel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TAOHUN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/nph-publish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/C_Cp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groupinfoop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elwayyawle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/db/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxqzxq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobile_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Char_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Affiche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/query_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELbuy01ji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pubclass_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/st-admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dummys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacky.xu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archibaldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode_Article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/history.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepinglun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybxygy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Base1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brocky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xjzb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckPopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderbegin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edifier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_mysqli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelsi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager_Login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valarie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isidore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwbz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianjie/lianxi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivt/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showCfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_saveotherinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizarre/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_store\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/netbilling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ice_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mellow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_xybd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberpro/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/markus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/Example/NewsSystem/readme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brynna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ViewProductContent2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Youmo_Xiaohua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Private\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Picture_Modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_style_inout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getmoney_moneynum_rank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_old_Recommend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdbc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_floater1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pansy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddd.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TDdownload/621netlove.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IMGWSF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e3eeqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyHide11111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modeset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/db/ewebedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_write\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CategoryAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/britni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ykdsweb.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShippingPrice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanggaoedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mahalia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mjsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ads.setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xs_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_system\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xygj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogmark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/max-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privacypolicy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Interface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clemmie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addurl9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/havesendarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baiduMap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gusella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ammamaria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonsense\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qszy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode_soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shm_Search_New\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile_user.ph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Rec_Record\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangwang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oooooo2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/icon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashlan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/Admin_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinkai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StudentConn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fredelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableHotDownList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dir-login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terencio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editprice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacepostings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/se7en4321\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/COMEON\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luojian3994329\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FReferer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horseok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/zero.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dingwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pass/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Video_Upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myresumebaseinfochk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natividad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MrPeevee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendconnectadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/sgfbauthors.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hartford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Marketing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheditor4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendmessagelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frasquito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InfoManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayhj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voc1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderForm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bianji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mychannel_field_make\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/lb/mouse.ani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorotea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matteo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lefthtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_host_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MessageInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julyphil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seumas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conf.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linekongjian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showthread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joomla/administrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PrivateFolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acct_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/data.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MuOnline.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keenan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proctor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinqing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jedediah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mb_tg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cq2sbbs001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DMJOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jermayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daveyspawn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/leoboard.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_tree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FlashFXP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othilie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo_zhidao.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SalemKeizer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ChPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xenos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ufpdf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdeoweb.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc005\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dengfeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MF_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melessa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wvyo6666.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedicta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nigger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckcommands\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipstates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssssss2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PersonPhotoListqqqqqqqqqq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnnhoj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cap_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_VipLevel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viphtm_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BigClassKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxm_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuhan.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiazu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caddric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MJay4386\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keelby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugycweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/places\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07flash/sns60085.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/tiyu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meghann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/120.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/swfupload/swfupload.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Rec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_info_tour_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roxanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caitlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RequestParamExample\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Aston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_video_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_13/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/people\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web2000/oor/content_areas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graeme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millicent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PStockApply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lolol99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free/Music\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Pic02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qlms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxht1688\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinqiuhanxuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Xczt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/14577.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebBasicInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/water\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoyt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CompressData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gudingad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhudadj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ywsl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Main5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sscms/fckeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editcase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_xjts_gai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mcosta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/placeholder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KillBrand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heddi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSXPplay/imgchg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Download1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.hao123.net\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srh1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~wnu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jlyjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agwh123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faulkner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/youmo.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mfk_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jlsj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fckeditor/editor/fckdebug.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y801028e\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bx4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xitiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/passwd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_AskShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riverside\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ericka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mdma.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_RechargeLog_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenggemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/tablecell.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/btty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsoupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Timbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ml096\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Search_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbw1108\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adimna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maillink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SillyB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_cp_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savelogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mskl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PicView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gwzn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolande\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Byzn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Fy_Link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VERSION.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PageBannerImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Large\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumnews_setting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHOWHYK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aundrea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Txg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_oxwindow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woffpassword.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srffrs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbdisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_scanner_test_file.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clevie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noresize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/td\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_masterlook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpLoadFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rank/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcsort2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guoopen1ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/langsdon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/webcash/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yesky_bottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ducks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzsysadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daryl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheying\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_subtop2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bxsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domlog.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joshia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osborne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6611222\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TemplateInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dylan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addkeyword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Demand_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fargifiction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comic/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EWbutton_GuestBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myzip.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/access7/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NP_Notepad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xljy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulrikaumeko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pls/dad/null\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_use\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nzj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_MD5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pop3Mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ct58\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify_pass_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/ybbcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsjs2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IsAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/document\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpaceLink_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfr_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/food/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CLOSE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sever\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/School_Cookies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axis1/axis1-admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Session\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rickey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365.wuhan.net.cn.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lethia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/showface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456789\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_SiteConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyna_page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Grant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovegj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spaceAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinaldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatepass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gateway\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/web800\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrisy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webhead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_ChangeName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pdt_Image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rslzb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remote-entry/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guests\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialNewsMoveOrCopy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_infosrch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/yl7676.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penit-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_indextj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/_notes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquiry1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_account\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/environ.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theodora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_cpinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_usr_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_jxrj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuteeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/MovieReview/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softessay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/userface/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danielle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetFluctuate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang/yaoxue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeniece\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shm_Search_Base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shifang1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nannv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_C_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noemi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbbb2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogic.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_rss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixpt.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_jk/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nameuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHANGELOG.LOG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Saveannounce_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pavla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_picture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserFind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosabella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jieriduanxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Contack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edsel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yqio7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vtpfmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HUAYUAN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitorop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chms_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/stats.prf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VideoList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Viewok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjlm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adm_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PlaneTypeManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wol2008.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDkmnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odtrc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/ditu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365.wuhan.net.files/nvxiframe.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bluedream\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Challenge_Scan_Board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statweek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/unlg1.1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pippy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trudey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_faw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tu5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbht6.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonzales\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addgetuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rookie/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recycle_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/25/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crystie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lalo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3436\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEdit/admin_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiyavision\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_songsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsletter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constancia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iorgo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TravelLineImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nathalie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20070719.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_file_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmize/phpmyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_del_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mayou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuente\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tech\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherwynd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adnama\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_RegXieYi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bodacious\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_mtvview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Main3edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintemplates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yantailida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Prize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pernell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.jsp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addFriend_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Notorious\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crownadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/images/emoticons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/id_rsa.key\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrinne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Recyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/db.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSXP_Modal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteConfigSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoliyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RmbLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wjd123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_Searcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_lm_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/cachemgr.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/good\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/google\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mcbd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PasswordManager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edittech\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louisana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_PopMenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millwall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micheil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gponma.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addnewsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPayInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lastmember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebManage/module/eWebEditor/db1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchinfo2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqxfmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treemenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pages_ZhiDuanShowModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wallache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_syslog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_Set\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/39\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pzhen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/columns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t/c/b/y\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhidao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquiryedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_site\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nursing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sc_tp3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ditu11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managebook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fc2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ServerAdministrator/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_close\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sydelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sunchat.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nathaniel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowClass2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableRecPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fymonth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duibi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gustav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meteoroplogy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sutton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_vipboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forums\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/movie/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whqxt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiangshq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bad1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pet_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhangc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anders\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tadaytj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/db2www/library/document.d2w/show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanders\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LeapFTP/SITES.INI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meet_summary_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadbady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ditto8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_faq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commarea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Cooperate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reeba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rap_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/lvyou60085.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epochp/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/owssvr.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lastango\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmlh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griselda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EaSyBlue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_cart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochdale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FLZH\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sat_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anltz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workeradd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/keji.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pulq4567.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowSoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TopAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changhw_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quintin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lammond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Arrow.ani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_SiteTop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/calender_admin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Replace_IP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areacityselector_b\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2bapqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opalina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql_into\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_bookmark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amateur/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/sfSWFUploadPlugin/web/sfSWFUploadPlugin/swf/swfupload.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangye2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allsun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommentManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xqfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rickard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainslie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teamen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brenn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harry02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aStatMonth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Decode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_confirm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadImage3_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/N2z95f\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_news_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin_Del_Submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fysave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_recommend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AskShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkerr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_topten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugssgub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/procat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xcsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/databackup/dvbbs7.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserUpload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email_word\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_system\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boniface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Galen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ydxzdate.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunshine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbbsadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_SearchPart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyhardware\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbkcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RecoverPassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/httpd.conf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mb_reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bypop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f43b1d\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whores\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaseAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivt/ivtservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Showme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/plus/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsuper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq/qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timothea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardpermission\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aphtpasswd.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/look_ip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/956.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_group_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_mtv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shijiebei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardTop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttttt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PointToAward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitedwa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_articlerec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overlib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magdalen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persondispinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/fpadmin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_changehwadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteadmin/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ani1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyExpansion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liesa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TurnPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserControl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rounded-white\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add222\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almeria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ima1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetIdeaInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seekorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_left1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet_client/system_web/2_0_50727/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updaterpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.swp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bus_BusSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Showme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/service.grp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanattachment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jamestown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_sc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckxhtmlentities\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/Web2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyaymirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangwu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moses\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigitte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savefile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbumen_zt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswz_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qqmima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/edit.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.wb900.com/s.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lacee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dottie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad-01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/webgais\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincn2008/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celeste\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amateurs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/Leadbbs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gordan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prv/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/ewebeditor.m\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlyx1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kalindi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_details_structure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pris_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nono\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AllMap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nyt3alert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kayle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobnewList1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Locus2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21cn.com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbap_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunnybugs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipfuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/198X28_08.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/11945.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chadley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileUpdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/objects/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lloyd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2010\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziyjmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_admin_small\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ufo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfkikx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union_vnet_dy.aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Caiji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charmine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/API_Response\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klasse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/database/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itemall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_phpmyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bpope\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrwyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jereje2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saunder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlevelcontrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Culture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/15800.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jspx_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedeajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_manages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evangelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pettop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mwcsbe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modestia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agatha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teresita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comein\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replyprocesse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webpet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buccaneers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Etmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellpackard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addwpok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Edit/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/admin_index.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friend1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobnewListj2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makesortjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puffy222\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Play360Show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/todd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Agency1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/denglu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilove2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgi_bin/systems/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lngrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_copy2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weatherdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shangwu_Fuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Img_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zsok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tijiaook1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mkmkmk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/question\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_info_lei_chgswitch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kacey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/webutils.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmingxing0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cracker/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pictureinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/header2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MONEY9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kygz114.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commands\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/snoop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_eat_model\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VERSIONS.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refermanage1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priv/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/editors/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafe/geditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whh70306\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_from\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mxnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziylh00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/aexp2.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsql/java/demo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sabine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i41sqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuijinshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zibo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deloklook30\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albrecht\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_Lineall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micheal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebPlay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/son\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foryou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulrich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ali\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/press\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addIp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areacityselector\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obi-wan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_export\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_ipbanned\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JS-XGXX\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vcastr.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ettie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/body.Fix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristobal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asians\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puppy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/store.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sblkoo.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reynolds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_Campus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alberta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_dev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thraxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stalinyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wedgie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_update_job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_zl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newspass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organ_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MpegDown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stavro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_reyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/movie_1.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omicron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raimondo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vonny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emelyne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Main_Navi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Messenger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esljaaa.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/servlets/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vieworder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_b6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phineas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massimiliano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rogers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kfxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/max214\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pfsexx.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestcollegepicks/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethelda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treelisttest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/STRIKER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarmes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatsis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetReBoardLimitedOrders\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Subscription\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_news_catalog_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jesse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azzc22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pearline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YeWuShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruthie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz_dg_Admin_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allied1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waltd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slap2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_VipLogoLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uadfwww.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dismess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updata_person_diqu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rightqy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HYKSET\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/rsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_layouts/settings.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjbb2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss_vms_admin_sm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exprace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_indexnewcp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haiyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jboyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tahomab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_attachment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_bak/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flushes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_dianhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/cat/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/77169.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Adminpsw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy2buysys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_view_house\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hermine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_VIP_SYQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fonzie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RMBZJIN6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8www.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottomnomusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkbumengzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/infosrch.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UpImage1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/londeaux\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/All_Label_style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donkey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hcz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acs-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savebm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adlogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reserved/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadLogoImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jlpf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notpayed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topicAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jayme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cat/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_stat2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xljt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_ClassAddBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Works\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanySendEmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bysj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Homepage_Image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raynor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_SendApp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.bz2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Expense\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checksearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qjrdzzzz.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/141.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fox95\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuhaipin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalogadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brander\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_Consumed2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images_u69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toppings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_welcome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mt-check.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommend_submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/yidong177141.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madeleine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wallace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vehicle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_buydd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SpaceSize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petnav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aceace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/results\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccct-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum26\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ballot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_medals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamesy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delmore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheelagh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dfn4b\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jtnilo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jynz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amphatamines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all_notebook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FlashFXP/FlashFXP.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/page_load\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SD_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defaultFlash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adwebgbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/google/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lieschen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seamutt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book1/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/com02.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_companys_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Agency2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_friend_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxjrkjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/WebEditor/admin_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeLableStyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ejb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicolais\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jianzhan_Sheji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salomone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminbecas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.jsp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/shtml.dll/nosuch.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picplayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabbatha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zddisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JeopardizeBRK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TakeSend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_adpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flvdm2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Excellent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/description\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanyue4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carleton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/online/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metaadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rozalin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/process\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DNF.e\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Oledit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atlanta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richardo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbtyyq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/filemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qrxyweb.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/web/Base/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscriber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glAdminok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emalee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Jobs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/software\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen826\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hermy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtool/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administracao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_logtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lya66\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guinevere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user08\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingaberg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savetg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albertine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vienna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/megan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ramsay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tucky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_News\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbookedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/epwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster_logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConfigData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_c1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfc/fixtures/superuser.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gqgjhkzf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_alipay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rupertboy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22340.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_yeNewsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editflash3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/someContentManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laji_fabu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emlen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delmor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/brow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ModifyCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_mail_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_HtmlTOJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyInfoBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownStyleEditer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_yewu_v\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ktcl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_c1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckcontextmenuitem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epoch/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh18\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_rename\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_left1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FlashFXP.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrrb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stylea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_table\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaju\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Complain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newzj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efxfkong.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winfred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/faile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Search_CompanyProperity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hua423\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Save_Edit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showdiary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/octavia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YANG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.bashrc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scenes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Instauration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astroadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke/Edit_Plus/FCKeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/tmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca_tlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReplaceRemoteUrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereSamples/YourCo/main.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/4jcb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iduu222.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/websvn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ham\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rogerregor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/prop-base/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmanuel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmanger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaycee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exportData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domgongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codes/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biay-che\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdbriefcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/fortune\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_work_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamez/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yangyang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Other_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reaper1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfx12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_TopManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuiyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck.apx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamemailhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao2341hua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/books\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/img.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cinderella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krarjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eneya/eneya888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rzwc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamelogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admintab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyfc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sports\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gehang_Geye/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_yuming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eydie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moyu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwwww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vexfLeapFTP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmp_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online_button\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_beta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gykqbbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vddg123.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModuleEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RepSetting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tupian2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databakup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gustaf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maribeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhisaveAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evirgo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfkqss.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/wuli.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vitara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/registrations.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swfobject_source\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Eweb800\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jmrj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roshelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ICU2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g10hqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stracy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reality2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_promote_edit2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_jianshe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jayson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keeper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaogu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asax.temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payreceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiromi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_get_money\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjnmtl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Boardhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadd3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refresha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~log/access.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CardSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humphrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_uup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fishing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buffa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zechariah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_filtupfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_save1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gavan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jianzhu_Jiancai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walliw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FroShell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9bdqqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loraine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reagan2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movies/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djhbx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/export/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snowing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylsgj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kent2440\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cicgf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lauryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valentino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHANGELOG.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fayth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncTourBottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Secret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicoline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_fixup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrivia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_edithonor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjsxd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh0jeditor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cached\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LostPassStep2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ksly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qrcpulldown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserCent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urumchi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edithelpinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/2008WHOL.aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispEmot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashplayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin1_admin.css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfide/administrator/startstop.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddigui/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcheck/Readme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/browser/default/connectors/jsp/connector\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybgc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FyLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aStatTop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fullplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdf12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reyna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FAMAIL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/survey.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omc123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelagh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mybbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfiles/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc_update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deeno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/push\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headexpo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Microsoft-Server-ActiveSync/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_QQOline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjwzp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdmuffin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LeaderList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thinghj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fysystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamasucc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_new_ad.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrissie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vassaga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl-4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/father\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tawsha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bank/services/Transfer_SEI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nascar94\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addchangjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/adv888.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinsky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf45\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biz_admin_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasparo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jswz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucrwyqn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loot2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan-3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pccsmysqladm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ActingLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imelda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/law.com/admin_article/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zpsx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BeenThere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog_mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RJ_DiaryAddNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zqyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teenfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxtongling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back-office/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VIP_DD_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_ReadBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moodle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mindwarp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samerot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kanalone0214\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bazi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacynth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/House_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaspard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilmer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imacsuccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shopcart_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weiqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stafani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Liuxue_Yimin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chifan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knife\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DomainMange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alixxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.yml.sqlite3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_AuthChangeUrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iyibly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backend/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackOffice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_person\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t74\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/english\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DaJuice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/try\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defaultnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lulsh123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yinshua_Chuban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waylin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tilly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiatt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/examples/parks/detail.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humfrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ylxd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usagedata/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back-up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww13123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phymyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watermark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MONEY8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/dubbs7.mbd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addkiller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physican/login.do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Footer2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Citrix/PNAgent/config.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TypeSetAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEditor/db/eweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ICPUpFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_gespro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniupic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autogrow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ViewProductContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQCjb-MB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rollie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hally\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcsort_r\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miniplayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleVote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_6list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Special_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HrDemand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetUnRegulate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet_client/system_web/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbtx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinyue_mp3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyanList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_prime2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_musicservermana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maomi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachments\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Allphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_csadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b80\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/table.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/gpy_displaychange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/today.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WALKER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaspar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/upload.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_ajaxfuc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skzpkk.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/st8comcnpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frenzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/6082.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/echo.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beryl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebekah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yf315606\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dellink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jojo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mirserver2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy-ffkp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_room\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fozczhang.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/jsp/num/numguess.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyvipSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgibin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p_photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editAdminchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waring\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanislaw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ciel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tewtrr.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_visitor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josefina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godfree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_fck/mrqb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_delnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shihua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ClasslmReset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxsls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfgstats.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/International\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clementius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigfrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/snippets/viewexample.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pb-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/processit.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/datsbase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cimg_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_pkchoose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mireille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xh_dongtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/epochp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check_uid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hekafei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/Mesky_Tooltip.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joinMemberScript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oralee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmr/secure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valentina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delsenduser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_link_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robinia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/munroe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bannerAdmin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TrademarkPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hannis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soufun/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_articleupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tf1tf1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/lwgate.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sioux\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteFTP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BUK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PostData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sk_Collection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/db/global.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Office\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlaq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dvbbs8.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czfl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/63\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meiguanshezhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.tar.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxjltc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrators\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_Member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MenuJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hezuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bollocks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junxiang88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_PersonDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gspswoaini.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newchrsel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dialog/gpy_link.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_VideoManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galvan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebbecca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newnotice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DnsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfgh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2h3ifckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_emailr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softchannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riobard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunfish_world\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilbur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_sale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webbbs.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinshen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftWare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhuafangc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canvas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hershel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_SoftPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jspx_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CARD_Dok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Button\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sc_cart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mareah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StyCss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowXml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhsy123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scfx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_FeedbackAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andros\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wsftp.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigneis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/please\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brucie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franchot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BlogLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evangelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_save11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corinna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mavra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lauri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/bbsadv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shekegb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi818\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingamar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showProduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tneeson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addoneadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_restore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-config.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/admin_files/order.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingpaiKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thaddus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MessageDrivenBeans/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ministats/admin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/sendpage.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VERSIONS.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Module_SubMenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycjq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpLoadClass1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Function/UploadPr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_a_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sancai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/all-wcprops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhsb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssodad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxjn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangzhan.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarot6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tdxmf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tights\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longyingdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/diy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~widenet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dennet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conroy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilhelmine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelReView1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/blue/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cacheadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8365kdc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fowler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/black\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sk_ItemFilters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addkm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyndham\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skwahkcalbblackhawks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carservices\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birdmanbirdman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ches\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checklogin_shang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendemailbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommentReply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Modify_contact\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glenn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gdwz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wafer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LablePicNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htfb_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tables\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_First\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lesson_GuestBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsNum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teodora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steelers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownByRi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jason2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addphone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nowkqinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pfour_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Follection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-custom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/All_ModelList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_Admin_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userspace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignazio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacquette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Bill_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumbnail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/edit.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jindMirServer0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/search.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mirserver4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admn/webedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webicqreadf3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyScore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmrj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhichuang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hendrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmyw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bennett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caiming010\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/'wp-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_uploadimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heinrik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/password.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_quanxian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/type_more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/inc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advanced\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cqisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/func2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/wwwthreads/w3tvars.pm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/Admin_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blinni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/zsy34477.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paylist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_2008_old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_a_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdtj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Install/rotocol.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingyitansuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23654.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ron3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maillist.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbatt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Etimes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlwp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuels\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wl.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lu0725\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_customer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/auktion.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/megadeath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Produce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nevile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_BasicInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neopac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noellyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zstt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductToSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Joinuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julieta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pictures\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_iask\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yvor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowCopyFrom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzzzccccccc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/anot3.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NP_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InfoList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_model_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_bottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownLoad/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sasave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ViewOnline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDCHK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wavmanuk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv_ys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foxroger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silvester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/dmr/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stooges\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/code.php3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_huan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nopass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checknews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trefor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Lesson_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fl2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hermie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XpOlive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add18\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banner1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlbumCatalogWeb/docsservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_boardlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_compress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_zt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demetria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AboutusJob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HYOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mignon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_xinwenok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listmovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaitlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8jsjsj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purchases\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yceimirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banmudi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovexue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newblood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnsolid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cgiforum.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamehot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/bash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_profile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookPubMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ileana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminLogin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mokw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_microfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caryzhang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/wushu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeah.net\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenglong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_dl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestBook/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AnswerForPoint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sha1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Consortia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writeflashhtml2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rufus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MainTain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FArea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwboard.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crawford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wawayu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/back/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliverm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allycat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maximo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byrle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/convert.bas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e107_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_mdbCP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beifen.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup_sys_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isadora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangpintj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/why5858\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_passsafe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmymfckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Show/Back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDWGOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutpla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_inf.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuggly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plane_Order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherilyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gawen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderfind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RJ_DiaryUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oqtr123123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_arclist_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wowww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/users/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rayna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etc/motd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdf123456\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_Reject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pauli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/row\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruetamaamateur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_HotPic1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsaddcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girlz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hakm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ApplicationProfileSampleservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzqh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calypso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setfontsize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Choose_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/connectors/jsp/connector\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gannon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopcontrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pkif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Playall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zerius/oor/content_areas/members/auth.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Children_Green\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzsl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/jayf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psave_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mykiss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ann-marie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richgirl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blewclintski\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/politics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cando96\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_kucun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caesar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thornie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setdiscount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pubinfoop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qmenujs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/2008_Tit.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~nobody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whrdmgm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h_rc_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/mod_login/mod_login.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sauncho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groupdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pavia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htaccess.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_DeleteResume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laoy8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recievedel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addrewpuninf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wow2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burgess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babbette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_affiche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grantham\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhxg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ede\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexcs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erocdrahhardcore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kmfe654321.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbtt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz_rx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kegavg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_room\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addfankui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Lessons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminxx_cl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/nemo/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginerror\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certenroll/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/joy61x61.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RUSER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DPK-ASK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LeaderEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoveOrCopyNewsClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woaini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olddefault\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_best\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_4_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjkjkjkjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwdacomm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flossy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qgfcs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/none\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TEMP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Rereg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terror\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_honline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jennifer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzfh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bondy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianyanJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhlib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TXT_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydfhqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displayjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendconnectaddchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_yhxf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tristin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integrate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/API_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_top_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_db_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banquet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_info_dzcx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Site.admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_source_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takeoutProduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexTeJia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rzji34567.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meredith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eduard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DIQU\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newdown/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserCookies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pryce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerwinn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonded\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jieshao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fours\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmd1211\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Comment_Read\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_get_corule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebBinaries\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_pinpai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PublicFolderFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peadar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.idq/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_admin/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addjiangpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jemima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artemus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acv.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/guide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klima28\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search2-ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/Subscription\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/lascns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imgchg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzpj-files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clientMendList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_bbsforums\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ServuX\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takoyuri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EliteArticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dosql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edityuming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldtbeditor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mistake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madalena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jodi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8-QQB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbx6123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jourdain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listbookqb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riders\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rheta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcdf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfide/administrator/index.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love0708\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portaladmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/BulletinBoardservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newisgood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9090/servlet/com.sun.server.http.pagecompile.jsp92.JspServlet/board.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckregexlib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookjoin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hits\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skinrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Door3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tremayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shjianewsedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payment1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florentia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_hour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InfoMgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteOpenClose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Search_New\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_wenzhangmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Window\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sydorn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cm-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/display\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_MoBan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuiding\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_news_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxclimatedata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oooooooo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/wwwboard.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_fav_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nh431869\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_com1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ubb/ultraboard.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nolie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tinymce/jscripts/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Return1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/song\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guoopen1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_isaction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ross\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paloma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nutscak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_tjclear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lettre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8touqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditorNet/UploadFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_LableList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwzvwww.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phillida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jgleden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/28122.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fs_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lm678.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repairsystempopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanxidst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YIYI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_jswizard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiqbmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atlante\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/css/gpy_dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/tuba.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booksave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowboy123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chung\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reaganreagan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_rkjd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xueshengtiandi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/more/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HeadCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitcount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenleitop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ment1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_yuzhiguo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editad_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/1X30_1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ErrorPage.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u0131sa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msmzwowo123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magazine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen-mei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsdel2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_xl_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miguela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/T_40\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cidu-net\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gxasset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addggok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberQA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indians\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_nsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleShow1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SoftShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/upload/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_Zhai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nt2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.php;1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elwayelway\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voteapp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_infosave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bebe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giveme_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grassy888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmuseradd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xcmeinv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vqcn31.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherlock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prod_dj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsweezey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Baokan_Tushu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rayshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effects\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/include/htmleditor/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wjdavis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/777.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eudora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pmgo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinabank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EBoard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/streel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_bot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jctime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nisse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veronica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhzxkjdx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emaloof\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiiiibbbbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana-bin/sitehtpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_masigle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rbmx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gjoinuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyemp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8menghuan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cityedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jozef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh65371688\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_x\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quinmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogindex/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mytag_tag_guide_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typeid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cement\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benyamin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.pl.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dguide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PreviewStyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/konstanze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loadimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrvp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eibmiwg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Toledo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ptwo_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kalle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p2p2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QuickPublishJobschk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poj5log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_WriteScreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kksaFCKeditor/editor/filemanager/browser/default/connectors/jsp/connector\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reuben\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsbg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpv_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h_company_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kikt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManageJs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mshead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadminbdir.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendSiteRegbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webgroudsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf11_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableMarquee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feipmc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Duluth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeleteAllTopAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addtodb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nesta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ramona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/elogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_IPManageResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/looklog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbqamirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/REO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_settem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_saleold_Author\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xcer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teejay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelOrLockAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AppInstallStatusServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/megen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msitte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofilia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chloette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/song/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjdsd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjyw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_announce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivyanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veronike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyo14364\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_SpecialList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiphanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpjs6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowsmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maingl3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mmgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acct/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/zhizao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nataline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AboutusContact\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elnora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikaniki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat_send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supermanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ypnew_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_BasicCfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gggg99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coupletv2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_file/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/sande6161.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adovbs.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kamillah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monthkqinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lelandleland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kleon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soliman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianshen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Actions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/ycjx.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_NewsView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sopvod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_BaseAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddisoap/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phantom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yanyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rfetz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albumaction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cztx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserGroupModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_edititems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obnoxiou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elephan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Price_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astro/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/symbol.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sapphira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mb_Const\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topicadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_osset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilberta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/25/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christiane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moblie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyxxedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/aexp3.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bastien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FeedBackReply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/department\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/log/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowAnnounce2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_print\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userpostsz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upok1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail_pop3Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stormi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tessi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fayina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/654321\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addbooking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebnnfuck.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon/logon.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberCenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thedrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pkfsserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giffie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Gobang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guthrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_const\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_getForumInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdyw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fidelity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julietta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~cgi-win\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowSearchForm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doc_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IFrame_AlbumIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sztx168\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcsort3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgdy886\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_super\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/asjobcom/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myriad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help44\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_wap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shishang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visualize_Image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saving\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lillis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Collectino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AgioLeague_tem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amii\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backend/admin/eWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newdebate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/access_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guiness\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/qg.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zachery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sander\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amandie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/HTTPClntSend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lindi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class/hacker/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmpd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datacache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedikta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/querida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csaoweb.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XueXi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassandry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mentlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tag_test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caoligang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmydm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6534\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/gpy_actions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/_notes/reply.php.mno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demetri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007-3-5-QQB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/CuteEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/USERok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/secure/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xml-rpc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wind_c_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Downloads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/15003.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CyList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/query.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annadiana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rick8777\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/29058.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SupplierAdm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/number/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php4/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernesta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sort_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Repro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/web00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moreMendInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shops2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuleduanxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillyer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ftprush.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CARD_D\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairyland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer_save_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zarah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renado\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SortSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grethel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_MessageManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Selcolor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nwvjmirserver7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortensia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vouch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andgayto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maureen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noveltylily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replyinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editguanggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_manage/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtkm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warcraft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Trissy3624\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wentisave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mooses\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asynchbeans/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/themes/cp_themes/default/images/swfupload_f9.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tallie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nichols\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sewers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drayke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzkzmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Products\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/load_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fooddish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/userfile.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webctrl_client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_JobsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ProductOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ge51869\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/188.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/putgjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/filemanager/connectors/uploadtest.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_con_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meinolf2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyjmtx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_Works\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudianus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_info_fwcs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thtowolserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Preview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialog/oauth/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallagher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoshuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kh.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giacopo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_access\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elwayjohn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OnLinePic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devels\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/vcafeeds/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrollnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rois\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mabc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xcjhf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiffie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_o\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kassia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madelena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgtx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yxwl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floggolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/dv_chanad.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_writer_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addguanggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clinton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mambots/editors/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Audit_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HistoryNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin256\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/york\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editxl2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysManager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_menu_type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckpastewordcommand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dgdi10.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delxindongtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuyu667\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/static_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderReview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PubGoods\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfirmir2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guideinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sips/sipssys/users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ema\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarbreak_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refermanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sh12149\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free_job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ware\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modellist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AllJobOfCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vfb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/session/admnlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuqiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/line2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yztft.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_keywords_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url_img_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watch_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lotus_Domino_Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woaiguo1234\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop444\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpacePhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf1020\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Customers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/301X26.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UBBicon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzztttzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rating_over.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/validate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WarehouseWebservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SkyBlade.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regmodi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xenia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fernando\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/web/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/gaoerfuqiu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/account.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Delmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_default_bbs_forumdisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpsw-3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shallon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/browser/default/bro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/logs/refs/remotes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zc/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lola44\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Readsub2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zma8888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/var.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_intgroup_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.php3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setzt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/todo.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cariotta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michellez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efrl108.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cool-logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/asp/bac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmtbwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_blogimport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/passwdfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_order_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_ReadVideoBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caryuyue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/jiayuan22.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beijing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promotion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userpurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8sql_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useraccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guoji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anna-maria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmxn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Scan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addgg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruthann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copy.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/govodurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is_Updata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack_qq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rsbpmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delqq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/fullscreen.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnisos74\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inesita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFileList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OWA/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/wwwadmin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin_login.a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyttx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhouzly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuz_version\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/forums.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r30087008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avyzmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belicia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.jsp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserArticleShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getAnswer2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebanqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/editbody.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bastian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yanonali\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Default1111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/september\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/empower?db=ukrteamhole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czcx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archaimbaud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_picupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RanchoCucamonga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liumei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEM_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vchzmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wellcome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draftset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lionel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_jibie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccVideo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/logi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asshome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setmoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jori\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bxg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CKlein6602\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benqituijian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snatch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pammi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qingyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyrill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staffadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanses\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getprice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Collect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamlen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emiline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompVisualizeBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database_name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewForJobList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snoop2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_path_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_PreView1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carilyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradeinfo_index_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Clients\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ash7608\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ymoolb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateUserAnnounce2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kudrowkudrow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QuadCity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdxt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Way\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/shtml.dll/asdfghjkl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Master_Log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_clssql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fscreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/live/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vent8888.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxwq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/admin_login.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/COadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemAddNew4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wileen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.htpasswrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infoedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bambi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimg.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_sqlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dougie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newProperty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sugarcrm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoft/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kfuser/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitestats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Oledit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debug.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/18601.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewoutorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/https-admserv/config/admpw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skylar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plasticfish79\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andyzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicholas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_meny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redirect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpspy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.php;(1).jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index_Name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_info.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jm_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doones\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2009/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_lang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pantyhose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_gg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/man\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gretel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cmseditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ricky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/js/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw_lwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ICENEW\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smooth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/passw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQkn-YXB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/test.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_RechargeLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminmoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lipin_Xianhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaowu4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster/fckeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broadcast_notice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowClass_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/jj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/songreal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Joined\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaloMirServer.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcsort_r2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fa_ca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DateSelect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_categories\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newstg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unituser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbjtime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeannette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_orderclear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebMaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/any\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw_draft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkinfpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dislist_jh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/database.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caowei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableLastNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/examples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceed1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxdy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/downloads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zips\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alyss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/togni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moreyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heinui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincomment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlh001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picnic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwcy520.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_q\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkij99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usrs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_gongshang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_JobManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernesto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervisor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_usernew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/slxweb.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_typedelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aloe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfsemirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celestine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowwow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jedd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lun.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readrss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valeria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spencer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mem_bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowAnnounce1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VipInto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karmen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adwebgbook3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_guestbook_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tagset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferrari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emot1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trevar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Video_Per\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask-qq-img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serveradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snapp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shehui/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RefreshIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baomin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableRelateSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/All_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GroupDebate_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demott\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft_New0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/packed-refs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmbz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tallou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcsj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Qpic/3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remove.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Logfiles/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grande\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moshu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirror/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shinsuke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/Editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supernic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserBuyVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilbertine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d8031j\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgsub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateXXM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModifyUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qjcp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginnifer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/web900\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajax_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncTourRight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dgtx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modiroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hooker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_datalist_dm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blaire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspsql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/def456\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cklogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_3/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scotti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwpad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysConstSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_infomodi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/func\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dgjjok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubrette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Jobs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_BasicPermission\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qzxdc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/MovieReview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/stock.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/login.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztpass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iucnww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stevena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eokadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raswel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwderr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dtd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.inc.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necw166.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adham\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_bladd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VT_Client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanhya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanawaz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/refs/remotes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nixie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosaleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Onlineprice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1212.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/take10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kellby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsjw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moorhope\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/bbsky_2m.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raimundo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HtmlEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newproduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_b7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/stats-bin-p/reports/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/unlg1.2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aylmer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smcww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/passwrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyndy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Config2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cayts.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/cms.csproj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smdata.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjcbm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisamples/sdk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_getid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhengjian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_puser_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examplesWebApp/SessionServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images_dir/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mynews_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_type_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanageadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kara-lynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jesselyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/student1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getsome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adtpphpmyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tadeas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinglun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/maillist.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Editor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgshxd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cap_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editSAVEFILE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Rebook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/pingpangqiu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fender\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tless13high\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/15787.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Greenhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp99cms.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update_puser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/10672.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QHJ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burning\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pagelog.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wnkif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysOnline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Houses\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slappy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youxi/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valencia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_HrDemandAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bscxlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piwik/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BokeManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selestina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypasswds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glscmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dustyemu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkdel2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elfie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Teacher_Comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login/Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harwilll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/eWebEditor/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddAward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemap_baidu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humfried\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolietj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/conn.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senddata3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tending\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdavis99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whyGreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhiList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filtrate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kongjian.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merridie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_proContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqqq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditordb/ewebe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zedekiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_admin_small/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexual\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leshia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQcjb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Profile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daogou1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txdtxd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man_lockip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felipa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.tar.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bk_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yorgo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsDetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Modify_other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jethro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baxie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bangs69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/services/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nlzwm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/HTML\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keywordinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emailpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/unlg1.2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubuy222.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_ObtainCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PlusRedirect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_make\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p_/webdav/xmltools/minidom/xml/sax/saxutils/os/popen2?cmd=dir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_caseadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatecls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class/hacker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txtlink1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BreastSavr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/search/queryhit.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showsmusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oudl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecilia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laofang1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fayre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setCaifu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/velvet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_feedback_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fallacy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_bbsface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuiopyuiop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhaigzhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoyo77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Defaultbackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/branches/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takeoutOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhisaveMod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleProperty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xukehan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdsblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP50\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urdsmirserver5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pk.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/dilixue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dsgc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsingtao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alphonso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/hsx.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Editor/admin_logi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vikky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underpar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/text\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detailor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/column\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polack5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wandie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/exampleapp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/members/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_VBSCls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteThreeStep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nimda/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notmuch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ax-admin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.txtqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semlcqsf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b579jinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valaria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vaughan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fjms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vonnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newmeshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viki7783\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playswf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpn_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_WebMaintenance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shurlock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Board2_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franciska\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rxzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecartadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/admin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmr/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qazwsx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ab_head\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FolderFileReName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nolove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/WebSphereSamples.Form.FormServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang/canzhang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sohoadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzzzzzzzzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowsdelcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pjpicasa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/iissamples/fastq.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_form_admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DeliverCharge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relaxweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portal30_sso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discussion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_yuming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musiclist/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexcn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YSwh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zytl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jefferey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molly1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teen/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/NewCloud6.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Enews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Trace.axd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madelon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krystle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katalin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product/Manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwertypoiu.printer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminTools/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listtrader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aloise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/day.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t_fav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fufeiad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/text-base/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmx-console/HtmlAdaptor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WoLe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eneya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/examples/httpclient/mainframeset.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao123.net\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/block\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skinking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeanette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diablo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzuki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmallIcon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tryread/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikolaos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savenclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rlzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logger/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Hot2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exobudpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/browser/default/browser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrtxcn02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whh7754\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sethtm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/study\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_InputWrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/web900\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Region\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olluadmin/FCKeditor/editor/filemanager/upload/php/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainslee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao_sql_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WomeQa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snakes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dldo176.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melicent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafferty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oshb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogpost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_channel_unit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raychel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kayla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6453\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lcdzl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conferences\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is_GetMovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableRecNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_categories\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teef1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rtl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VIEWMAIL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tades\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MONEY71\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminpwedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yundong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hot_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/designer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spukcab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winnt/repair/sam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technote/main.cgi/oops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V_Email\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_errors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core/fragments/moduleInfo.phtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/sfSWFUploadPlugin/web/sfSWFUploadPlugin/swf/swfupload_f9.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_2/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/uploadtest.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/MovieReview2_0/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bumen_editchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multihexa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stepha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shownote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbara-anne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/2008_bg.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quentin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookmark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookseek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanlinlin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/korie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HTTPClntLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_link1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sambo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pot999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_sale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_write\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MEIYONG1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_centerset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/validateimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_eat_model_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateJP_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrator.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pAdmin_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_comments\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Takeoutdetial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masker90\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleCreateHtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/iiop/ClientClose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editwageinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContributionModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf11_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panyufeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClearOnlineUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union/vip_manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_area/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/lavery_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload/Upload2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_qq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xztaxi2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Wholesale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_suport_answer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reports/Webalizer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_boardset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shopcart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qryrc1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_ClassAddBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/stock.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebault\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/replace.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bnt_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaonian_ertong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guojia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpSystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv_zhong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/swf.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyoutmessagedelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Xianche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ludovico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_MallStyleAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topdaohang2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yulan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyacintha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frontend_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyEM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utility_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owennn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/expire.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/text-base/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Album_Article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kill.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GFORM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bybpwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catsold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/eWebEditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Service_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Book_More\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filecheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacklu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buffer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inmidas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fc32\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincp_footer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puppy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DEFAULT_backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_Ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feeds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsgk2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dudu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhanglong123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendSiteManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logincheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teirtza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoshuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoadSkin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manning\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyberia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petruza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ringilul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acblog.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/platform.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoshiko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jlwjlw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helloKona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evered\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzpzadmin/FCKeditor/editor/filemanager/upload/php/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhhhhhhhhhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graffiti-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rudie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb/vcsbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveAcceptJob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admingroup_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_full\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opensoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MONEY5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makesoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dampdamp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syphon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxgb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/New_submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webmap.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beijing008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuanyeruanjian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/process_bug.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybkc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typeKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hljt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mihailliahim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addwp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/run\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcfagui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yogesh2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newhouse_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcjw_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.ida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codename\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxstemp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hide/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_3/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accept/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_b4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomkin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duilianr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolores\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_IncImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/life/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/SysImage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqli/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olimpia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consultation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/_samples/default.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catdis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yinyue_Mp3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wpmoqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8zhengtu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_UserPermission\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Delet_HomeImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_productsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ollie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubb_toolbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swcx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12514.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhsc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditUserVipCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webpet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_notice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/do/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t72\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_czdj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mesaages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6474691\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_media_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifysave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ico3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPaySend4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacetheme02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_jygl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/65209\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/static/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GengXin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monique\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facilities\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kittycat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artwind.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_editculturenews1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salesadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfjsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlspjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modscarddata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCP/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendsite2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/art.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_vote_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ally\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiejin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsisgg.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Logo_Logoup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book1009\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_messages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/31X115_bg.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personal.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_usertop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysCome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lindie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andriana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Showup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marketing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_onweb_edit2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leoline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breedok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_conn1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_spaces_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kalil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlp/1/htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josephina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jocelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usersystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladius/README.TXT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommenddmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttttt99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corinne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CountTop10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxvico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcgdrm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiangma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvtj1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DatePlaner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_panel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvulg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JINZRMB4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niccolo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makethumb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbbsgg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_All1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminTeb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/positive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sportman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zhengshu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lixian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_4/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LaoYRSS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearbasket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvkoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clapton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/ratlog.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfiles/fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wap_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drift\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_ddlcsys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Agent_Types\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/config.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passWords.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynnette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxmg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdvertisementModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/w3tvarspm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgsrch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LogManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopscotch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faustina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_variables\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileRealm.properties\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8mengjiang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodolph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disclaimer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsort1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnetede\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ced\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_media\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scsave_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/info.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_group\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Auburn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apps/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzy9136\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config_hand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class_pro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SyntaxHighlighter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_from_system\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jsconst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isador\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_freelist_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llywellyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pascal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fxh@7802\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mihail2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/30/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_float_upanddown_L\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pupu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keiven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/dp1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imac2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaretha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_guideAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe61376\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kok-kia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elfud.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_All_Regtime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supersite4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/nlog-smb.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BulletinManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpbao2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tdsjwl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SamplesGallery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_webggnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fgfdghf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tingyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sabbath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fallon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectSpecialFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_CRM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kissrain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmonia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BgPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnfoods\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_xieyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receive2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chevalier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dongman_Katong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modiwpok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profiles/minimal/minimal.info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpages/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aeriela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy55\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/mysql_error_trace.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/nph-publish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/host.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showmov_key\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TimesCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calc_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viphtm_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianjia-lb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/216.2.8.114\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_buxianliang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image_background\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscribe.pl?test@test.com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/aexp4b.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminibator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowUserInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/federica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bentley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RJ_DiaryShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ls72\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/ntitar.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingpai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cacheMod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dbconnect.inc.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_Adminmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topyzflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcicle_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fawshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_topbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linsheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/big123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_properties_export\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldridge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_zxzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_daoyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/axs.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robinett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanlinlin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t_favsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hot10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Header_School\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/table_editCell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/3/mm_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Articla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/network\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginCK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_ActionRead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sprite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_video_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Aids\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cg_ng_mo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_lovewall_id\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showstaff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.config.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_delete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oswell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expo_index_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faisun_zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_rc_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyoti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzdqiiii.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addtg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lizette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/final\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alyse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzsimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addfriend_new_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ad/dv_chanad.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_spaces\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renli_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_glshpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licence.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duffie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Admin_BatchLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/25926.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viviana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auditing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Picture_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipcard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmlHttpRequest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyFriends\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/college/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dkxsweb.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blglr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Super-Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Popedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senddel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp-bin/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OverID\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photoxml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alysa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guidebook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.tar.bz2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peidre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewTopArticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amandi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Free\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanwood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_backdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josephine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_specialmana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pala-files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testweb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_4/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YeWuQuery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gstupian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mason\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_ursave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/althea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft/Cartoon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_GetPassword_step2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qo3jqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all_images_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Defaul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sql_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ningbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thunderdome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanyuwm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharedadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_banner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ned\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ProductsOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemchannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badkat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gearard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdzq11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emailleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blayon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smtpibwq.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handler/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c1b62d5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2013\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/majiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_report\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actions_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milicent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modesta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/education/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondrea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endzone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha_table\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeleteForbidIPandUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krystal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v639\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addstyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/27772.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shj_tejia1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glxzl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allCategorys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yogesh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giorgio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emlynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DataBackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_loadskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notice_content\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnlauis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_mysql_error\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userorderlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_info_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clientliuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dnewsweb.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editors/FCKeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsfxmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/members/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seeuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TransferPoint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouysmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liyucheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acsqadmin/ewebeditor/admin/login.pgp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoHu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_bbs_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogdon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tasks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzgw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lainey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanageedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwerty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pokgfv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myweb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mireielle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xylqjm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cross\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schwait_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bannerdel1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davidd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skantz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateUserAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/pic/2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renault\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqqsky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jitems_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalit99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_MailUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/import.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glenna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendfriend_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/xiju.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_nsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gherardo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giulia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8more.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Newpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saunderson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corbin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daili_dl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticlePreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_keyes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/javascript/editors/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.passwrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_typeadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stronghold-status\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_model_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartlett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebServicesSamples/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vlbzWolServer.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delepic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amdin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lll2877773\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antoine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaoyi_news_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_encrypt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ChkCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_VideoView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilhelm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katrinka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/getpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/start\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChuFang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotsyjh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beckie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TIE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reece\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/ccbill/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begoodj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpjj_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lodovico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f_feed_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DEL_BUK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosmos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online_yd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfwow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/artics/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gustavus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/products\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error404.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/zsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-ANTIGO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_jjlc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qsj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.java\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hcjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_money\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_cate_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plesk-stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/pagelog.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cqvyqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/allmanageup.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetRoomM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wsyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bondon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ysabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/57\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/#data.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isidro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gbook_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nulsmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wliang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcgi-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/she\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateadclicks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_InsertRM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydyydy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase_SqlResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/STUMENU\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udh5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daphna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crackz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img200\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminLeft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dms0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lang_FunctionLang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_share\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master_dns09\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerrard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbbbsssss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/carbodll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editworkrepall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radmind-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JHQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_o\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmelita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaquenetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pages_DoPages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_editnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexandros\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzallazy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserUpFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brazil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mebmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GraphicYear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaustin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danweiAdminpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cazzie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgbox1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gouwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lefty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcos52\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/car6161.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dbconnect.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_vb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sql_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/aaddsfedsffdsggfhhdf.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/money2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deanlue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_shop_product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeleteIP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_ClassDelSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobnewListj1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InfoMore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylfsw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/COMPETE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uupgif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kebo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fullbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007-02-29\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mprint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_lyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authors.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showmusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/sql_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChangePrize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perkin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModifyPassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_config1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lura\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city/tb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backend/core/info.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yemian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianjiaAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengjingmingsheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hk1083\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6788.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_admanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qxsckk.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/browser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ResetConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ReadMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelique\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_viewpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommentShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai312\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violante\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awstats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jtjmll.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleRecyclebin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margeaux\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batholomew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/music.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ygxhb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/synergy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theodore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tammie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_scroll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joceline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/posticons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lenore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copyright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zxzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alejandrina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_WaitBest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexedu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipseek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_ForGetPassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_ver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dating\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianxiadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/packet.mdb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henrieta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8Trace.axd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xy7705\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Title_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gremlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mickie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apadminred.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/black/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SalesNetwork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asynchbeans/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0d\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frehley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vcvcvc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curcio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2006/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AdminSynchron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/administrators.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImgRnd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mwjfmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContributionDell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_shop_LoadShopPic2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductCustomField\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/column/wuxia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iudb.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg-shangchuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_frm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyrics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qgwsr.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Share\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deathblo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_myhome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PlusAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enewetak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sucker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhavQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honoria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomasina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PreviewImage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucais\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_dysend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageFelicityVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mspress30\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/12410.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DynaCacheESI/esiInavlidator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katerina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overtime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romeo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discussions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/replicator/webpage.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruanjian.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcelo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebDesign\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasmine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WarehouseEJB/services/WarehouseFront/wsdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuyuyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WOKOU1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juliette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Progra~1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Landing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiaduu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommendmmmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bvtq19.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valaree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong_zs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsmythe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminCMS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/fileman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_WaitUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_siteset_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_job_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_show0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/not-there-2.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateFlash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23933.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fred263\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/show.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain-suggestions/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bttp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newjersey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editrereg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanyuan50\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OfficeDoc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Show360\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mis124p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan-5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smssearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MiLao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Diary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_makesoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jian8888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UP_LOGO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirstyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/position_9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/yule.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rewrite_readme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_News\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haahoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ItemSearchResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mystow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mildrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrips/tools\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haixian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_13/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/progress_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_news_admin_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anvoanvo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserControlPad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_C_Label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r4e3w2q12000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcheck/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quality\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briggs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Master_JobView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cesaro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ProductsEn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beach123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pagebt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PostListFun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/act_rc_name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armstrong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASKING\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_last\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autonews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigmac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hayes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_add_dj3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noadmto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quintus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sh_move\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wulin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8faxin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_url\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pzwnxxxx.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dawg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lygofa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zabrina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendpwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muying\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/callsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaopin_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isadm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhkm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dhtmled/triedit.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hots_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/robadmin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edithe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_SightShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recordTOgbCK7Qf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pussy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sc_tp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control.ashx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mqvxhj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/28191.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alonzo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyUSERji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiorentina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RepGuest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnoldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_shenqing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9090/board.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets_one_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_smusicdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmlhttp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buckeye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuangshi/changchun/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sauveur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jqgy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editdingdan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galerias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/guestbook.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cscscs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kattie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableSpecialNewslist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herculie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setwgok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/htmleditor/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txt.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserAnc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8password.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owenn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserBase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marquee1_news.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_Cookies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SAVEinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wolfsban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_Demand/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/af318508\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zippo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justdoit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AboutusMap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnnz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruzer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suellen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IBMDefaultErrorReporter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_ranks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybeihan.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Compact\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/com3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nettle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassMove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whqmfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatrefreshb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wnslmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfrjj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_export_rule_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxxcdn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnaby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_tablecell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwenore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lief\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showsenddate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delfriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartolemo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/market\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gupiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jt_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectAd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userfunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daohang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brittani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghqiftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcMain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beauregard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/kaxiu-1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminassort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DateSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ku6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ic289720\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recover\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ganster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft/class2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kellie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwjcc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patient/register.do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/D.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_BasicInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VoteCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/int\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbmfiles/users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellerey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/es\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkkkkkwwwwwww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/dialog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Die\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogaojia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8wolserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_toplist_blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modelsearch/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_feedback_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SubInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/educational\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_default_bbs_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/scripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netdisk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myquestion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuguan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_note_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kdc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stc112\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chandler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bizhi_Tupian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/__SQL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hattie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eneya888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswz_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommentContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetPassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dopey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enguser_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_day\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/cpshost.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/res_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smilies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db_backup.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betteann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loveu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_bulletin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Send3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_webmaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveannounce_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/than\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_tongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tirrell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/putnam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/admin_login.ph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_settings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shxxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/work\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upvip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileZilla.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csdwt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruletest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_subject_modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_news_catalog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sofie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Article_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj06\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lemuel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/share\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/R3v59p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSitePage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thief\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WeiHu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyonysos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_comments\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/mainsi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syssite/install/installlock.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creathtm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concordia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files_dir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgbmt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_listdynafield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brooks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiajiaonew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/gongyi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerberos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rufe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wububing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xslly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhmanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derril\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_flash2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lelim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adddqdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msrx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcxg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/T42n85\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuantiAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodguy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webhome/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/wushu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addxldel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_caiji04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gordy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajax_attach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GouTong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmyxmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/FCKeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/padraig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simpson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_area_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/membereg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/5X26_1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viviene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service_sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whasbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webyx-100\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pattin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmackay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quintana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/whois_raw.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyuce15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiersten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webfoot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexandre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_event\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/htgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/board/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfileAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ftp/ftp.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_listsrch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drn2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/Emotions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spamlog.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerstin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RMBZJIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dialog/gpy_table.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veradis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mulder1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dehlia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenlei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/anyform.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slocombe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_usr_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerrill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daohan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trolfe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mxfbdudu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_del1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bethanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Appearance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popup.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_gBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileadmin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lj2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BackData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philics02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/school/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/235.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowNews2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjh@\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageVideo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongtong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INSTALL.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnyier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableUnRule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassModifyBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CYZR\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uunet1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georges\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typo3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joshua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_zjuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/count.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philics03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Upimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chelsie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clayson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lb2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stvcg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_All_Regtime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleece\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemCollecFast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xytn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karrah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_photomanageadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acct/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin44cp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggivler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_link_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/fckeditor.htc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bibbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kefzCAurl11.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ncommerce3/execmacro/macro.d2w/noexistinghtmlblock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/type2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinxed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_listedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contact_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leighton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbookwrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwuleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iweihai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latashia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hcfj110.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_gbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jiaoyu_Peixun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_vip_daoqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ramonraf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alarm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/client_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thuanc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Utg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase_Operate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klklkl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pearle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portal2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old_files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sabrina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/la\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admintop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trudie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FortMyers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter/counter.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzlianxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iscool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Rss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Announce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminjoin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaeger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf45/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hidden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showvote1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guanli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/anli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sr-latn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raquel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangchuan_xt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincolor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModifyPersonInfo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_imageadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/taoleba1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headblow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheba2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del-leibie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg_One\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alwyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pushedthreads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NetT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/connectors/uploadtest.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tw/twt1/twt1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certificates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abdual\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ment4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administratsiya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StromP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makejs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_mang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolblue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myVHOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visit2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shengshi_Daohang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_logclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nftxwxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wetpussy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8tmdqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/world\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BookNewsEditer_Cert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Register2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngfqjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0b\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fern\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/varindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtuiguang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agosto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Aggregate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UseCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addbanner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_edit_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver9.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_XmlDoc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairfax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nobie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/filetype/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-rss2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_fun_SpGetArcList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rocks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data-base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/body/qt/1400100264.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wnu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veronique\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scyc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_New_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myhome_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samaria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class_fri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backend/eWebEditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pointer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferrel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/today2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lady/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbqy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Delwg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spudz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common_skin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slhjkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win2kcool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldlove520\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghwvmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tintin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elysha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/db.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marybeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheeppoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harryque\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phone/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fangzhi_Pige\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andras\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirt49\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDMEAL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paipai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_worddel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affiliate_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OukyhybCitynyz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdf$tv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcellina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/th\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_sysinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qydiqu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_PresentProject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_use\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ludovika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Js_Free_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpg_maiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_rc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbhooooo.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_worldtime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qingchen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IPPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/four20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Lesson_Comment_Read\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_ZyClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brokeradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_rename\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Leave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zhengfu_Jigou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_sql_query_lit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinned\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win2k-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/pubb.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searcheraddchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProducerPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pacers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile/UpFile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navigation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hysmok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LISTJOBS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv_zuoxia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writesmusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver12.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_infoclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms6163\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jz85034\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateRoom_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algol/archive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/post-query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/westley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj1394\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siffre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bir725\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managepinglun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmodel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangxiando\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dat.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serial/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chk_rel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AboutusAbout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh-HK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyFavorites\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radmind-1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/event42\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/_notes/edit_forum_index.php.mno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_wjg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logging\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biliamee1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairleigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usersearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibrahim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/4606.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_pic_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zebedee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cme_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y22cqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mosthot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/base64\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchresults.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_backup.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Systemuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca_sort_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sale3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrotoem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GoodsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ottawaottawa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/no_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drupal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/team_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corliss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver11.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M5p31b\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hc_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efrem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melitta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dk_Const\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Movp2p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diamant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nl1206\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_bm1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_example\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eileen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReadNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_blog_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/process_bug.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Group\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosalind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpjs8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etc/.bash_history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenleichanpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxw125\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_all_news_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrcai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/formmail.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit1/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/denglu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyndi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Preparation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easoftsx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/documents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Au.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminArea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEditor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bomber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_vip_ygsyq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peted\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_intgroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PostVote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiyuan4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parfois\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racerx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_Guide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classical\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Special\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keshilistebh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jrfpserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_prolist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CulturezxcsInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosamund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddressBookW2JE/services/AddressBook/wsdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassOrderN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blondy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZETA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContentMain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_modiuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zlxtmir2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_dedehtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaylil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AgioLeague2_tem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rowan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimberlyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christopher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiangnan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/player\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userpm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searcherdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newshangjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tophot_10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmtt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/yuanyi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tammi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hairuns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MSHY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Head_Inc999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xywl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitaker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piaodian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELETE1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimberly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uuuuuuuuuuuu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wisdom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/town\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfjtw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1230\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aloysia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminopanel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebeneser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openvpnadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao222.com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_onlinedd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tacobell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyftrdfgh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjzt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lcdlx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diinmirserver4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_house\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YouTuBe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wowowo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/logo-08.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.tar.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memblock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lissie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_specialsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nichol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mayunlong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gysz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhhhhhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminpost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/say\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syssite/install\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpanel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Info_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminmember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SouthidcEditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ws_mail.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denyse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/16501.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dori\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjjj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzhijy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_manage_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nmqsmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalScript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6666666\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuxiaoxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispcont\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_inc_indexsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morganne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/css/citye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/handler.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/.htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all_fid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banben.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meridith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Store/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readmes.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trenna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasschem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latticeeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchsale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/education\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ionian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookDEL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirbee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_xydjw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbaraanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sasha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangchuan233454\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RealEstate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_paiban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_archives\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0vflfckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LargeIcons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/__vti_inf.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/yuanyi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kouyifei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/FCKeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guardian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/report.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dgjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homerus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmins/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gertruda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/swfupload/swfupload_f9.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poppers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/work/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UpdateCreatedStatus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usertate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blondie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmyq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmnono\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_public1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lvhua_Huanbao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daojun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updata_friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_Showme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eulalie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwe12300\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/counterfiglet/nc/f\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pyrmont\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport_phpwind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpMyAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mokuai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_diggs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~web00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/sdbsearch.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amargo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Field\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-op\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showreply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ValidateCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewspace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chastity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_hr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/nph-error.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/jigou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq/jhqq2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Other_Set\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackqueline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_usersave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urbain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Study/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Teens/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_WEB_INF/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cybill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestlog.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerardo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjczks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achilles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianying/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Preview.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/PowerEasy4.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swfupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LocaleCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Ordermessagebox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/records\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlowe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhmanager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fadeout.class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Oldweb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Calendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnesse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveInquiry1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tijiaook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vnmimirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clientapi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/include/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gtuo166.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addyuming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbbbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbopt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~ftp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/info2www\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mails\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invoker/JMXInvokerServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcjlsd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weihong88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/epoch/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hcaeb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Savesms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go-cart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/viewbook.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Password.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byteme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technote/print.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databack.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.tar.bz2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.pl.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/podcasts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/E_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajp2ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macdaddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/id_rsa.key~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdpswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/selcolor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merlyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/websendmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Preview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_bosspwdchgdo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YULE4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/P2P_8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lacie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hsokflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LeaderAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_regok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_toplist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_SearchInStoreroomInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinyicao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szdlsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaidenglu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/Auctions/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/konrad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/png\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onlines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elearn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_news_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofs/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fahrenheit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaquenette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Delmanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07js/wuhanflash.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_lyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtop1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buickk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_delpbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat_showmsg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ment3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyoutmessageboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_templet_other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_cp_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderHotelLook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_DelMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgwin329\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guestbook/man\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvge88.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boycey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifysk2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_Elite2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SMSLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XmlData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddField\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/database/bbsxp.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirrors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PUBLISH_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserImpeach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mercedes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_subtop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gcdfz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contract\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rules1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CpList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_hyperlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checklogoIn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mytag_tag_guide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outmessagelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ggkkwebshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emails/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MBSYS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdpswdcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/line3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/Shop_Login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoginVideo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellswerth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_feed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_WaitVideo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/asp99cms.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bq_pop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyykt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_cate_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/ex-logger.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveTempletFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_HotelManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index2.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BackupData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tricia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_sub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CFIDE/Administrator/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cworkzhongzu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announce2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elinor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chelsea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delly2k\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiny_mce_popup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wr@1844\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o_company_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiumian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/logs/refs/remotes/origin/HEAD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deerdre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopcoffee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateAlbum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote_C_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sayres\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.smtp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpanel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replymess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xrf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tag_test_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenqing1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dawna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BigCategoryManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditJoinParty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_onweb_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhudui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/room_reset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allployReview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanclub/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/gw5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherwood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSer~1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack_webmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inessa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrhide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/plusmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RssFeed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_PassUpd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/T_39\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/query.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/crista\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwhsmirserver3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pubclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/editor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default05\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Publish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Micros~1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teenlove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jtholden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addequipment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Supply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsmsz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor21/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check_SI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/_notes/show.php.mno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marthena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icast.txtdd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savereform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_productscategory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_fav_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/xrun.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemmgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_specialchars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geoffry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/help.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dfghyfrt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aid_mang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Error_Again\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right_ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.vvvdj.com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/bbsbg/pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjyh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bendick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ResumeSendOutmail_One\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store/temp_customers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musiclist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Choose_Type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_catalog_options\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itisme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BenQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sssddd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Mobile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/answer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SeaskyUtil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youxi/diandong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salvatore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderProcessorEJB/services/FrontGate/wsdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keshilist1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amalea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_ChangID\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFace/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarpanelbutton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VS_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackUp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strUtil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Psavenclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Alison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FS_Inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b1234560\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suanmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login_Check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_logoWait\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AreaManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Loginsb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alyson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HomeMarket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domgaojia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_layouts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_11/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Special_Save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulciana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VBZooM/download\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INSTALL.mysql.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krispin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_microfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log-in/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JIUDIAN2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/webbbs.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idiot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/importword.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administr8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenggeSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_resevation_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel54\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebService\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sancho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_rssRead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic06\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysBookModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heitiekuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savebclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldec_tradeinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilario\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_Month\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testing/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lois\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jervis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SelectProduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/mini_logger.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenobi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_mimachk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_Register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companymessagesent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_sort_u\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js3871\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilovesunny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Greenhouseservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winnt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/login.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzlikai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editorkf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuyb0326\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_find\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrdinaryList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feliza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NetBookRe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcgi/contents.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SManager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_InVideo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wernher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/_notes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyPictures\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deeann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcsyxxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/act_rc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_silver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/Subscription/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hairstyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Teacher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toxhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uest_99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charmian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relatekw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/click_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulsea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmanage/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_shuqian1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celestyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_guideList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cap_Page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anabella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/mpeg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bluadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PPEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tupian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tips\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzyw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_zhaoshang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u69Control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countforcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massimo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specifics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_codes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VoteModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_Part\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nanshi_Nvxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kadianshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certif/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staffer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/register.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birdonly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitana1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackUpLable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_auto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenshouok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MergeSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphics/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vip_Adminchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqhx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_emoney_note\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song1976\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TempPE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveVipExplain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/informacion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileRealm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_admanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewFriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bycs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/britta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ONLINE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlaw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finlay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u69_gg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewitt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/conn.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_class_other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin/oauth/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichabod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjyw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PopCalendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statuspoll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pubwin_6_pg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MINEMAIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan_delete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_repl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvbaoshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_src\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcklanguagemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/search/simple.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tadlock2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyyyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_UploadScreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rawk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showhot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiugai-lb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fids\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/i263_data.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/codebrws.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_data.php?action=RestoreData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CloseConn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_role\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stumpy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchXueLi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcsk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreamer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajaxpost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_indexzhnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DAD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_sort_qy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_keywords_make\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youbiao_3.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/signin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mailtake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estore/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kes/Admin/Admin_Login.ph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duke99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivtservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_robotmessages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piclinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckdialog_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhangxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingyun72\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leftimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgaohhhh.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/B419348_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asjobcom/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_map\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/16580.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/podcast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hannah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/.htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_JicarSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziduanmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastedit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tycycw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_mess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savannah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2009/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_User_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serverinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbraco/webservices/codeEditorSave.asmx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/findreplace.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huangnan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_choice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/restricted/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vflymirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheilakathryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sapphire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqqq2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilligan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workersort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pyotr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_vlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common_video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natalia2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.files/logo.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmitri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/join_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kyla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShippingArea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_disk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RefreshAllJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke/edit_plus/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianjie/guanyu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uuuuuuu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteReset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berenice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilemovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courtney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BbsFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0el7qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpanel_file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynobjctrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laverna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuckie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34567.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faustine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfzt123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rar.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madeline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanthyen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andeee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeremiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/week\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takeoutProductType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxtian112\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dobest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courtnay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaoliang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Panclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8itjwebshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creditlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hscwym99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anselmo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang/yixue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/img/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggao_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_postdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer_save_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bettina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/statsconfig.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cityedit_two\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_wzpz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrator/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infoview/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialKillok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog005\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_delguest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flxxDef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveshjdingdan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdqwe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CommonCode_Content\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announcement.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbmjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defaultfafdsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PostCls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_All_Regtime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keely\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload/Upload.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addtwosave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/add_ftp.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delbuy01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewdingdan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guenna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freepic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pfhkwebshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgongzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elianore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyFavouriate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dushu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_caiji_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/FormLoginservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php168\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackpot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getem/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivtserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addadm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelTypeAndLable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Syscode_Link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qzgt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juggs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newyork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_clientsTrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzjhqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveWork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy_domain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amethyst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolene1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Loading\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_b3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annalee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_attachment1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberRegister\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin5512\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaevmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huodong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/napoor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/html/developer/ch03s15.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allpaper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RecycleBin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysParaSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Basicinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editMendInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huangyimin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/max_blue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmlexcel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwdfqqmima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaonan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alicea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WS_FTP.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvue1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/averell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/60/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/conn.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banshee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunkin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chryste\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppppppp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/46lqqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mychal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/shengwuxue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celestia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misnewinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Logout2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meredeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangping_tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ENDCLOCK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gqInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlgadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiye_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_indexes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karoly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserSH\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peanuts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alonepage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/30/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheridan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen-elizabeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chopper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mianfei_Ziyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qqhao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackupDatabase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/iissamples/oop/qsumrhit.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coral\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stafpersoninf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thnoweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/t3rwwebshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fucks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krystyna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_faq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accwmirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke/Edit_Plus/FCKeditor/editor/dialog/fck_select.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BgList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/21366.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Headpage_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alastair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cerro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/gpy_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxgps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newxiangmu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q2phlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form_form\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netbilling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mattias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Winnipeg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_fullscreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Smirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_Info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index8o\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nerti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleardata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiuyezhidao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_Transform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwboard/wwwadmin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/export\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cookies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iloveme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right_ads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replysort_judge_0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Search_Base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jephthah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Advertise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackelyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjxr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdminList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingjing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contractsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rulz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orville\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsgbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snxa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fu-hua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/gpy_events\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Greenhouseservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/even\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruisetwo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydjok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justinn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agri/help.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_host_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fingers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contact\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarstylecombo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwboard/passwd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhqf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~htpasswrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwqw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumPermissions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarbutton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcscnewssavepicPicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHUSHEN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yu417787115\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topwq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amateurs/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ModifyPassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shayla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmmm.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/label_creat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlcomm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_ShowUserInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserCp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb-admin/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSXPplay/exobud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjyzjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logictic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infosrch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roldan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqsl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flashget_base64\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savevote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defaultoldbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jefferson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funtimes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_ClassModifyBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pittsburgh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wizmysqladmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiqian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yfpoeditor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckfinder/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzzw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_delhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reidar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/getdoc.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobdtcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppstream\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderslog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleComment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addzymod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LatticeEditor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kym\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lolol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dfmz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claiborn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_MallStyleBrow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_ClassModifyBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Organize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_keshi_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gauthier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kacie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/upload/upload_5xsoft.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/bbsbg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diego\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dozer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyzht\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/php.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rjxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_changshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mygjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shopadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opinion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efwmanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_fieldset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConnUrl1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lady_comm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjm1731\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxmir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Class_Article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monroe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bommot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/admin_login.p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/review/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guendolen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fanghu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/htsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_reply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/students-supplies-js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SecondModuleMange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domostroy.admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doc-html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fjlsadjfoi3243w5435fjdslfjklfajsd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deltongzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo_mp3.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatrefresha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weiliya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_InviteRecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sx.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wol2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jppe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/console\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Llyj/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chernxiu123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coralie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agent_qualification\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_OnOff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loadcontrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brockie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webdrop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikoletta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upzzMirServer.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_key_up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eben\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_order_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c7t7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/business\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilylee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lh127\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1200.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online_0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMSG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsclassedit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diqu/ouzhou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aylmar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingpaiinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opt/setupt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.pl.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabitha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_forumdisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdService\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dniren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e_print\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok778778\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guoling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qxcsk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybox2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrichetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwktyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ads_C_Label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chancli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xs_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzbbs5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duidu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_jxts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Education_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qingse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkzt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyuser01ji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WorkPlace_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reviews/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZHUAN1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/icon/forum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agovlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Select_feedback.ph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenyuxu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addstaf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_songmana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mahaney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_page_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webbin/passwd/p1/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tingting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corvette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trio989\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aShowDetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p2p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l53r\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Upload1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/mm_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botingting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upfile1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruanjian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pubic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XtAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/id_rsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shawna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myduo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CopyofAdmin_Products\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stdzmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxdcflashfxp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_title\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Disease\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/money_install\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnnnnnnnnnnn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_class_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DefineTable_Info_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcscbannersavePicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbvcx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jemmie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powernew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seecunt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkloginCopy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MANAGEbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typo3/install\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drgt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bigconf.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_qz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eliza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tadlock99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managekqleave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gray\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shxitw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jsjl_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_z_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_member_lyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whj/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ralf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/A_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winamp2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzgongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw_app\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8my.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zujian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mail_templet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yewang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ywjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_admin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nph-publish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loralie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llehcimmichell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gpkuwww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zs_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php_Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ce-Admins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FirLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zsz6990\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brunhilde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/meiti.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_olddd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.163\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl0109\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keepConn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lishe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikolas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngeshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotel_IncImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_used\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage123/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernestine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_login1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_medal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imacimac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mersey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JobsID_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_cp_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectFileFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xymenes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jocelyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OA/OA.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dasanlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voodoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installation.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_gsmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pt-br\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archiv/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tinroad85\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LatticeEditor3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OtherJobOfCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nmingxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PhpMyAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/day5datanotifier.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commend1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sRegister\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Play_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edeline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnaby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/school2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdavie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common_music\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_sffw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdmins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anstice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_PriList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mohandas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EBoard_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buffy1ma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hailey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BatchLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timmie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurelie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online/study/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_Part\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Teacher_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezequiel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kfzlmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh09\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_Default.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainrereg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectFriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marylee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/active_usersmembers/log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micheline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_setting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changelog.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_liuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indextemp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/westside\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxzp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encrypt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abouts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browse_foreigners\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak_step4_in\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyfk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManagerPower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_SysSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/live/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/online/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vqehjjjj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-redirect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/help.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danyette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mobile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matshuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sysshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/lady_61.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/looker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_qy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z3121025\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver99.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlotta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamesend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404/toto/nfshoremcert/MedPhys.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshow_default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serverindex.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipterm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samsung\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_12/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/environ.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rozalie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/user.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorenza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intwork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfiles/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxjc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oklist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lh5xeditor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jabez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pureadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5201314\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iperr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kombat2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qpxxDef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feature/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_index_addurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rxjh.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_collations\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jifen-leavel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wangshang_Gouwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveUploadFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roshan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ring2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ocean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ServerInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tawnya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xpayconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DABIAN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/al/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiebold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mailout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/item1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/se_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataRestore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seminole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prints\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/fck/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gobyone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivt/ivtejb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileIcon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_upimgloadsyss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editperson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weihu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_SendOut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj_error\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resource\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawo5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj_dealer_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.php3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_know\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_nongye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OWA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/logit.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_article_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/FormLogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anthe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhuafang2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsj7993\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kasey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rifraff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/797979\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.mshta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gp_right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Campaign\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/architext_query.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persontreeviewnodes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELDATA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ephrayim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huuhuu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/end\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zhengfu_Zuzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56k\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imgsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsmpxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soap/servlet/soaprouter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_company_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pimp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WsManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timmypat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addportal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloriana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NJ_Fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thanh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bucky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/H4seQdsY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_meetmanageedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savejiangpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpMyAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fewer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdBanner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keeley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deshawn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bofang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp_Detial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/24281.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmembers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daguai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threemen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/City_upimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stussy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d'arcy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders_msg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zlmzlm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv28qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqxamirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_aut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update_to_220\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_PartNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendmailok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShopJuge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/snorkerz.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sifu66\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrhan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Oldage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emanuele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senddate4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydata2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personnal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doc/en/changes.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hand55\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qnzhd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxby/en/kszy2/cx/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wells\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/12126.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corbet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vi-cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galeria/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DOMODI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_WebContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ExecuteString\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shamus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpldapadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jorey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgbeijing2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabiano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protect/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keshilist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hackersafe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rouvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarfontformatcombo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rogerio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restaurant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysop1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.adm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbscache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster/vendinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatsite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jquery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adshj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Supply_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFilePage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meta_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imglist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmaley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DS_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openwindow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doudian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wickedbro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/ubbcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_market\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qxcnc_wen_tg_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hwzh520.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb0s\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access-log/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/Admi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_all_news_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbchar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SurveyKey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_art\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showuser1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annabal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Public/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bel_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pdt_Upd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlotta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TDdownload/wgxzdown3.5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade/admin/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_10/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chevy86\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idaline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Keyboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_xingye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cashguest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delfenlei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgeta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_link_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marilin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoreImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drucy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jkott2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members-only/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/eWebEditorNet/UploadFile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang/zuzhi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racecar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Find\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwj4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klstudio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savelogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zoe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rewardmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/818821458.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhb40232\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userbuyserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rangwei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myles100\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Distress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webcart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemist1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.php?action=upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baojia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56165\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6ting.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmedit/db/ewebed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public_serve_left1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WeiHu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kbob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronakkanor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Albumcomments\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/properties\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingyangok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regburns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales.xls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pqrtwk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hulda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gertrud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_inc_indexsoft_pro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_batchup_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxldja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bidie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bone6361\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassDelSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirdparty/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_forum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrienne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_Admin_user_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinhuQQ2009.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor_toolbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pridechem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/access7/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skincare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpaceMusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huanbamanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbjl_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404/OldGroup/indexother.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CoNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/googlesitemap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuntlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ploy_Send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowJsNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hershy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ispcp/browser/trunk/gui/tools/filemanager/plugins/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsTemplet_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/date/Idea_Site.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nations\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_RepairManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YlList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tasklist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugenius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaylyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mspace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan45yuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ni853967\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpcmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_manage_control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/chklogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gayler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Video_Company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zachariah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pvmswwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netmeetinginfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/napoor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phil2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_ChangeName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_ccvideo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/F3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tttyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~web800\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_HrDemand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reannounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dghllr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dew2077\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebManage/module/eWebEditor/Dialog/about.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicolas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/guestbook.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hercule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audrye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_UnSendOut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/markg01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tablebuild.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ploy_Delete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/Include/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_PreView2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_FilterCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tight2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eustace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aStatScope\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GBCheckUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/simplestguest.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/P2P_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StencilManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savefaws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admpwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Install.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all_model\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harwell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaiser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditTw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wangzhan_Wangye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/editor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchDiqu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Set\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecshop/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Showinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Super-Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knoww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_VIP_DD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JIUDIAN4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_profilefields\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.sln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postreply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20081001.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongsi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkwarn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_12/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/so\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/House_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zongshu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scyamirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CollectionHistory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barthez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyuanwenhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang/yaowuyuyaopin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topAndTuiJian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_pkcontent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adver/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestfunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeLable_SetSequence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publiclist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_add_db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ExitConfirm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_setpp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b0925\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpjs7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzwadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Detail_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obtainList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w151369340\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V_pShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margarita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariellen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-content/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wtzp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives_type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alistair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3qvswebshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members-only/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sallee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php168_41\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxl12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rancell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aprilette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/Vidky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_Jobauto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggdx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageProvince\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chngame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teengirl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/Load.ashx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vgovod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssxf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrdkssss.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownLoadParameter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xujun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admintitle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/printenv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linux/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/szuifadmy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noticelook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataDeal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mvrg23.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ploy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mxkumirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminThreads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gavinzhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formica4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeleteUpload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peisong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgwz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apushpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multimedia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/channels\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_84_more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats/summary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xh_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/in_file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2010\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broderic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableTypeAddNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kettie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tacdum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V_WebSite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monthlycal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashget\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pshenhe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devonne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheepgirl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Default_Default.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_video_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007-4-20--cikeqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgadrian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buffalo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qa5njinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimbra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.php3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_batchup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winnifred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club/msbilllog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs/pictures\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qaoxmirserver3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kearney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editallpersoninfdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang/jibingyuzhengzhuang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preview_jifen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domenic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zrfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waverly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ysdlws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htpasswd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nextbuy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quick1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_2/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WordPress/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Collecting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grape\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alyssa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setauditing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhengtu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edythe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gustie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bootstrap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/nemo/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tasia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebControl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QinZi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bnulmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showstafaddressinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchinfo_99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osamah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexun.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renzheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userskins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/41\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Investment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lat4353\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiki-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templets_Edit_text\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sults_test/testorder.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tildi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sephira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraAdmin/changelog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_friendsitemodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paflwwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whynot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/awstats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sascha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vindicate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_sale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CultureNewsInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yycf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laird\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guohmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bluejays\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Categories\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traindel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eqjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/zt2.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XunLei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vwcc133.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/carbo.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_psw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwgln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MAKENUM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_18\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avr7000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_guestok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myths\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mosave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nggl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isfb123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingmac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajaxLogins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12898,92,1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfusion/cfapps/security/realm_.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiangjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Report\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lenna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gideon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eqxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhanglonghai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glynnis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberOut_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w12345\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomasine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_year\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addproducts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mwc4fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classdalei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbcode1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanfransico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_GetContacter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyrille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bikini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_eat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insertcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiandan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_lockip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcdt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Tags\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/db/ewe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cmgd_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qcq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devondra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pswdcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adriena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editorderform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/Api_response\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlpanel.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checked\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Picture_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autoexit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marjorie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hell0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jareb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JKManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accesslog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pptzzk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paolina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManDomanEditDo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lordgay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Addmanagerok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spicey2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Loadservoces\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graph/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Lessons_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallupfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GreenhouseWeb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajcount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Listing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminLogin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tree/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DPKFP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FeedbackView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ditu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/mjdqpj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/36\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrizia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_adm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nongli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImgUpload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AddAffiche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustb4213\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weditorfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elfrida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Whitney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_showmap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/yuying.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/passwrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdavis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleUpload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shared\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w3c_float\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxwomen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orelee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savearticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbb55\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_map\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chriss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eilis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/members/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uuuuuu2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyAmity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Briankhseattle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_manages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_CreateLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleCheckSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Listing/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roxanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/Admin_New/default.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Copyrights\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ultraboard.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/ctc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambrosi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esuperadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/http1.0/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingying\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Seo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make_type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexxman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinkuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmanage/fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy3434\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/crazywwwboard.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marylinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/britteny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronzegoat597\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guenevere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/users/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReadCon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0000.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_CorpusList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Systems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kissiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northrop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AgioOnlineBuyCard2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecstasy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caqq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Rec_Save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stirling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnpe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamjim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Photo_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/styles_cssText2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22836.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jemimah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleAdd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w350148480\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joelynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gema\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zolly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchereditchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Server_Upd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiger1053\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/path.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetReAdData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ialone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpwqmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etc/shadow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saywhat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qeyk1mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Elite1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfoster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haleigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guobao2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swzwwx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rumbero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hysq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recruit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lancy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BizTalkServer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/login.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shishang_Meirong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votechk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb_dl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zl_xtp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kk.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secureemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giustino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ctslqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanitansy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qxcnc_wen_tg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nowreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demo/admin/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petweaponshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arabela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appoen.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/20453.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fansluxu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canadian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deborah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Demand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klarika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/num13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_SendVideoBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/_notes/edit_admin.php.mno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/31.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddi/uddilistener\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/north\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fzly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_onweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managexx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagedelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costanza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/admin_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_puser_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2010/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ApplyResume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.php;.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reports/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilyfire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatespaceviewnum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editannounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangchan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_MallStyleList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DIQU_CHK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darbee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wmpqjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vi-cndata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkguestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_Admin_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Write_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjdsb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roderigo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xp2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContributionBatchCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shehui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Picture_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoveAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badip.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/titus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jj_News\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_includefile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phoenixx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showquestion1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_yeeditnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectFileName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phedra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cacilie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cachemgr.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orchid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Books_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_insmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hongbaoshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jidiancz1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wordpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjggaddchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzjh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modcalendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LOGINCHK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TODO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/char99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_VideoManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacquie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_fullscreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ExcelFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stavros\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GAMEXVER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VipFee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin_SetPop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong951388\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncGoodInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uplianjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/towney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opc/services/PurchaseOrderIntfPort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengruijia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_editAffiche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delsend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car_wx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinwenbaokan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor_v280_Free/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemDatabase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_customfields\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setfontsizeok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuzt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paimai_x\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reider\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a-d\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaohu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HUASM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin1296\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sesame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Classroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_SendMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formslogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQkn.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webyx-2500\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yesky_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GUDANNANHAIZI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangjia_xiu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/girl/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmain/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AutoReceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wsxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Lable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bottom1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/gpy_contextmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pppppppppp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Export\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_manageset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kdown/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limitword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/64\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12120.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/BulletinBoard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fody88.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkk1100\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardlogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PriceTest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guaiwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedatom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newMod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxyy/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwordlist/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snoop/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BackUpDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AjaxTest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meet_summary_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiche110\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gameimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MainImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GAdmin_err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zknjmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gh345dfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/local\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zya1229\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about:blank/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_word_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcelline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pfield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gw_sp_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/toxic.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktools_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feelee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuwei626\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mylog.phtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gs/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maingl4ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzz1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pageBanner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OPENFILE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcsort_r3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itwaibao3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ConsumeLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaspar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylyxiaoma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flossi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enoch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whtddn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBS/UploadFile/UpFile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsoconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WinWebMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YingCang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Backup_Data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editjiangpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Personal2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminLogin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhhhaaaaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/DvSQLLOG.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felicle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/dumpenv.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extragroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innfen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millisent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManageUploadFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_musicserverdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qrnkmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/chanpinfuwu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/se_zffs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepw2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_cslist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHANGELOG.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dingdike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon/logon.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtemp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Site\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suckthem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dcshop/orders/orders.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bethena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zimu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NoteMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pieter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anatola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qi1056ng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/tianwenxue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PhotoManageList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvvvvppppp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certificate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rumble\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Filter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moredetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/names.nsf/open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Clear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digi1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_dongtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ifstjpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edithead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload{ext}?action=upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiazheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/conn.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaylord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/callback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBsRss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgin7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreamsea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parsifal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register3_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/planet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SUBMEAL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/munin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marietta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReceiveMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke/Edit_Plus/FCKeditor/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JIUDIAN1_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trader_news_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjxd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ref141\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_jiaotong_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qigong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LISTNEWS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fydisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dat.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendlink_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftChannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flags\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previewz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dg2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supersite5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/F_remen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/noubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhenghunzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditDj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/eWebEditor/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redmen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djplay_asf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lollllol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup_name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableFreeLable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krveli.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2009\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_databases\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhzbmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mychannel_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psycho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.swp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cqtgm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BookFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dianshi_Guangbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nhaamirserver7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncTourPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/translate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/down.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/z9v8config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/session/adminlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzgj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_confirm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phillis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/size\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video_player\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsManageEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_caiji_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewinlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rsd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Greensboro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s124519532\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebeca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TransferPhoto_back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gavra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iggie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple1989\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyqq19.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wq105\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hjkl2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AdminPassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/stats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_change\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_reproductlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swsjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConMenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StatAllWeek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_collection_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvADChar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageUnit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_week\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_sort3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReadMe.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadmovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductCheckSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tjpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/content_areas/log/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LISTHYK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Classpath/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phennn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/T_42\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pm_Adminysm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case_detail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juieta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filewj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Board/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colledit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxmnbyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmallClassKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onlinepay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver9.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnwoaini21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DMAP01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lssws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASSMAN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_updatecircles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackpool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tylm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mac1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mugwump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flow_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz_qq_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grape2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newjersey1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maxie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czmmbmh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hello69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhhhhhhhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boothe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vpdjweb.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joannes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jilly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagenes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcscnewssavePicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savescxinxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_TravelLineManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Work_DIQU1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpjs2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JChar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app/config/database.yml~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/power_user/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jy_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewstock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaowu8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhongzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savevipdyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_txt/_vti_cnf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/conn.inc.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datadispose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/789\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjqdx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scmpxxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexcomeid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_magic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demetrius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor24/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nosunday9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23028.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopxp/shopxp/mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/info/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dido\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maketpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_ip_stop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showmov\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhiamon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memdir/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Complain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/upload/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qkgwc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zrudmirserver5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tt.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_word_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hallsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_SiteEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwuxiangmu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_6list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nessy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_admodel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youbianKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonSelCover\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bingfengkuaile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adams\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tofriend_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzcmsdg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkkkkkzzzzzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chufa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renaud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxxcafe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlipayReceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christophorus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glennis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cece\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hong-sup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanlinlin3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cziggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dipta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxdgloginok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmkh10.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicolle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_add3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.csv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VREG1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Topic_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_announcements\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/music\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_xxgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chicken8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is_clear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommonPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elindros\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yfne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/dbman/db.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuexing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_topic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pratt2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_templates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kefu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_SqlIn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubble\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/META-INF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netauth.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Syjm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bbs/members/system.cgi?dir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patricia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Webedit/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MgrLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SerAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcxt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemFilterModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_team\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_market1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jetsax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_rlogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TeacherFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mybook.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FolderList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_add_about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/uyklfadmy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meggie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byuz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silvia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lulu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/My_SetCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/danganguan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x092fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonzalo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~wnu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kekesky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addText\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsCat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xthemes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_archives_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protype_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiap555.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_tmp_war\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshteen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zpww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zp_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyyyyy99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MergeClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/WebEditor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_adclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miranda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/color_picker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotandraw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protocol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/livy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgsn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fqmain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editors/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libraries/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alhkmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lollhunter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czxt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Archi~1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Help_ShowHelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pilot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/averyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_fav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access-log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ctxwMirServer.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adlai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jlxu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sRegister_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhqx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditPassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2008/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolmonkey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isnumber1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyrnmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/WebSphereSamples.Configuration.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Board_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lcdpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DENGJI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsjs_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives_type_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s0ice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ip.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felicio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunhonglei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubhqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pearce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dialogs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edittext\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles_1409\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd631_angela_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/border\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabbit123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caralie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lw_topic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.nsf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_Fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaoshi_zhaosheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmldb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_rc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_JobView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cccccccccccc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowHelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/eWebEditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downloadz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Moderation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincp_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfwow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inf_to_server\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-includes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007-3-1-QQB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LostPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_login_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compmdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoma.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WPMONEY1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loadtree1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bb-hostsvc.sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fascinating\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itinabcde.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urchin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silvana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/FETCH_HEAD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_Vip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_IF5KBM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacquetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mario\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminright2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_mimachk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/wrap.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AnyForm2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacquenetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xswl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_allphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vdvdvd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reldnahhandler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MaYi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gs126116\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dingdan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bzfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xpi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangcong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bethina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boris9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user05\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binfmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iespell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Company12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snowdream\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Computer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gw_sp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Numpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alethea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_Logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berger21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showstat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shj_tj1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwordz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thnoweb/webeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JTAExtensionsSamples/TransactionTracker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/login.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin/login.pgp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cinque\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BM_Bookmark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by_seven.aspa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udxdasdf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/wwwjoin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iuee33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oauth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bingshui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pearson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tait\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astaulb1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writegbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YeWuXuFei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vworder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdma1gsm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pooh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub-login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luyanji1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gues\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommentModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_separate_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opendir.php?requesturl=/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beetle200511\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Passwd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.htaccess/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autologin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegLoad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schedule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_usertype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cortie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maje\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bilderna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbmfaaaa.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Board2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qixunad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_store\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dukie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krishna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person_Info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_userlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itgdm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPayReceive3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webcount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berkly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/_vti_aut/fp30reg.dll?1234=X\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onlinelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sale_business\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_89_9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clerc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizarre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_shuqian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_contribution\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fancy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Rec_Record\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userseve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateSiteIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_1_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damppmad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_BasicInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderPrint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/export/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdcj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INC/FckEditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/id_rsa.priv~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aeriel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Managers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8mima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderhand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_OutStoreroomInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sdms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c17t38\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newhr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linepay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzzls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_pages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingxing/mingxing.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jedi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chelsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buysetting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Adminsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mshenchan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminwg_cl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenxue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empires\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dune\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/django_lfc.egg-info/vPKG-INFO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stafford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theadora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VipCardApplyList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbumen_addchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrou88.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8flashFXP.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ol_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserBuyLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polopolo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editjiaoyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olifa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echo1224\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhcp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableRecDownList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqing_jiaoyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_saydel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file:/E\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gigacrap1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendSiteAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ooooooooo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/wh996159.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_boardlimited\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hung\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nadiya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dekai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmkc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ooooo2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tieuup10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_DownStyleBrowFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/14982.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restricted/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caterina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingsly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cimjobpostadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qitvweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wphack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdagong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/example\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g5fylog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Syscode_Corpus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plus_Tools_Info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/js/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserFriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ygfc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengshenok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizhi_tuku\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminLogin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/written\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demented\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkpnzo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs-data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/phpscan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xcAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_View\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SCart_Blan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tablehead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admindelpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_friendsiteadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07vnadmin/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Anquan_Fanghu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miriam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DiQu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_antispam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonov2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PdtSort_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadAttachment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ksdc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Orazio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addPrice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daveen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sydel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KfUserDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmalynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Busta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filmore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pentium\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHENGHE1_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setdenyip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hello.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Teacher_Comment_Read\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infoajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhodie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/cstat.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camaro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Class2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JHF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/user.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianghu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ablock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refreshcity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChuXiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eliot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/qg7676.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fonz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lizabeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjfunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Survey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/croftcroft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gensystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adovbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Server_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyuser02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_xxgz_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver55.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_righttop_bj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tkrtMirServer0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haroun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet_client/system_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weibojj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nowell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/5X26.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bidget\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManageSpace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sample.jhtml.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarfilelist.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberGroupAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rooms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simpleJSP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HotProducts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincn2008/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDCHK_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpaceMusic_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tdys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netbilling/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fs_interface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytoe-files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/dialog/fck_spellerpages/sp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wind_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_menu2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Index_Top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Index_Pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archive/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/conn.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aofgmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase_ExeCuteSql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/cpanel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_meetmanagesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_cp_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashsend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdbc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdvanceSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Education_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Agent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiter42\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemlilai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yehudit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin150\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wgdhweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_review\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delorder2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myinfo.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/move_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kendall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.xls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aristotle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zf11SysInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admindefault\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asax.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vidovik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AD_Top1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_linkmove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_Term\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpjs5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valid/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vladimir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osca110\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzmkk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbipll.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxdt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playmu.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Log-in/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shebei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XpSilver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certsrv/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07tuba/club_tuba.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_AccountVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dec9832\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDRULE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daoqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aj6mqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paulette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsad2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wh121\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycmgqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/page.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/UploadFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meredithe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Movies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_buyzk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxfqlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaretta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dingdan_tel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaoxuekeyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashanti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_ResumeMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annelise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrdinaryEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaowu6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bones\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nortel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usercontrolpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq/article/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_ElitePic1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sample\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/tmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_OrderPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjggAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headsale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/F-user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_return_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_gongshang_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles_7131\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/289X1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gadsgdsagrfdaf/sdaggfdsfgdafgdsg.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/sunexamples.realmdumpservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendeoff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barclay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tutorials\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_add_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SupplierAdm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_read\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/z9v8ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hernando\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfgb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shangwu_Maoyi/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christabella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssl_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzgongjiok?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textcounter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gsjs_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kvtkmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/adovbs.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onlinecount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HYTop.mdb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ApplicationProfileSample/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/sql2009car.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DMJ-XP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uselogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/eca1.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_cate_area_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleaner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsad6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikekowa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbal111.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submit.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flatus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zsdbmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qbj6723\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContentSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qichegz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_cateforuminfo_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Get_Domain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver11.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companymessagelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorpe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_listing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Say\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show/back/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krsk-files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_addnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newman1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckInput\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_adv_CONN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waneta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YeNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobsedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwaimirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrative\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moprepost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyyyyyjjjjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuwei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sidonnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/11853.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tn7292\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/van\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/self_vouch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zulu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok881set\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showMembers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admindelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stcokeidt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Filters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashpicplayer1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/page_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweet88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmoban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dudley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_styletpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dario\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shixiaoad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/css/blue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cannon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frasco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHENGHE1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haskell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playerchrset1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js-tp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usr/local/apache/share/htdocs/.htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nils\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak_step2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_PreView4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xnex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuzhu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/key.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doerges\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/exampleapp/email/getfile.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnmk.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pipermail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/testcgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silvanus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_notes/dwsync.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwng_show2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeybmirserver2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangwq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MYFACE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index_Fso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyqr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/logo1.aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornelius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzf49438\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiebout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liebiao_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UPGRADE_README.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_word\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fighter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurelea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armando\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meet_summary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dele2009\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etimes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaquith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/33X113.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickolas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySQL/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mufinella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Valid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swf_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JTAExtensionsSamples/TransactionTracker/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_helpview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/law/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baoming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DefaultWebApp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eveleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cools\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_link_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyir8888.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/123.files/fontstyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_case\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.sh_history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itaj5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nocorporation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhdzhd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_photograph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schiffer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hateee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/allmanage/userfile.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/china/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronnica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edithyxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matsuno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getMenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wpqmgood.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzz2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qsyw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang/web.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchJobkey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HS_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_viewsub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technote/technote/print.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmodmirserver11.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_shop_tour_lxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_Frame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_binli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysstat/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosemary2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BokeRss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usercontrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys_Login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dcadmin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Soft_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenji2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2010/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbumen_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_memberlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingrim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.pst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guido\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaultiero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchdetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baobao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ligu99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Conn2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newleft6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register_Ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelProvince\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminstaff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CultureNewsInfo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checklog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newPreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delperson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ssi/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerils-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiangz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditHotel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqluser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/s8dede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eduino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EmployeeListView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jqrvqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/mem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vcastr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndbaad.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/66\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyAlbum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anelieseeseilena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/include/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/editor/fckeditor/fckstyles.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebmul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumBoardManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gbook_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/entries/buzr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giordano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trixi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaofang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moritz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/express\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zipfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiorenze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrtle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lindon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kzamsql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/citye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuhan.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open_changshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raymund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialoguser/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydomain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_leftmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clear_step5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thehacker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murielle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/php/admin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianchi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgprms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwangli1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reynold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azircheng.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mercie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_pm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Room_giveme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPayReceive4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqinduanxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reason\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amateur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findaccount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/note\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/epoch/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libraries\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpvhOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_VideoView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyselfInfoView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shalna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RJ_AddNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Dj_Html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sthgrtst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHKADM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunnys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_storecategory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_HonorEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CodeAdsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orasso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminBBS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stein\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_member_dd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddFavorite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InfoEaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiadong6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protected/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darrin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_AddSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atnalta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_1.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_re\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popmusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publisher/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CulturecsInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/include\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload1_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amitie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xcmdbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_lang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ob7eweb_scanner_test_file.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickb829\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/membercode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allinurl:image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendmailto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Message_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/min\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin-old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myblog-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetHtPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tymon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delshixiaoad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/default.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GroupPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Album_Commend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/proxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_class_pro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_13/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txtlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/face/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedict\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/sessionservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gratia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StockQuote/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/jiazheng.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall_comm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopbackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmjgg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_stat_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imgs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mall.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raviv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newslist1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chairleg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/baio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dw/inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web900\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fylai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordercheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steffi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archi~1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goforfold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cookie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsjs3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KingServer.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LiveUser_Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isacco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_addhuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valentia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veritas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsuploadfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha_table_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erocmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowInfoInMainPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rongyu1_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceramics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tautt1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lindsay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb_zc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Skin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OutlookSidebar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Updates.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/buttonimage/gray/about.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Door2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulcine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Iask\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jewelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yingjian_Zixun/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LangTZone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perceval\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneaky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searcheradd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiudian33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WarehouseWebservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghxflz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userstats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/sql_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/faxsurvey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arielle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_privados/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anselma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqtest.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/*.rvmb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ass1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editnewpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/_mmDBScripts/MMHTTPDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paxon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/09o9log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw_tags\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allistir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guillermo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slck25.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhonda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qqnum.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxlo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project/webpet/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bcastr3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_dedehtml2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buiron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/druci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_change\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AllDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contentadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrywebCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/*.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet_webadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd631_database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace75\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fletch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frisky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publish_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/_vti_pvt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumPay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.bz2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vogue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwj3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syssave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/so6159.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php4.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gege\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_login_you\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangjin02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helloWorld\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc18\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/background\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darlleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/kqm8dede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c2t14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wnl_Frame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lokk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swcl_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuguanok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/news/news.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_RegMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowSpecialList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squirt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/History\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dayi_reply_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/26047.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/html/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domlog.nsf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnathon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skipp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhangqp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxebiz_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imojean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADTemplate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~lancelot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbbczzzz.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewVideoList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchexpoinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txxqczl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nevins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetStocks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableNaviReadNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nongye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordermodify_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dennis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzstar/1upload_wj.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_jk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/online/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpsw-2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruanjian/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/pfdispaly.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lauretta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/montgfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index3.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodrigo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qmxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereBank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sosanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hexian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDHYKOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dripping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/init\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acctman/info/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prolist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printdaykqinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateXml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lable_style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/search/queryhit.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Royale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/dmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RUXI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demetra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sql_Function_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_rq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridgette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/660921\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambrosio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pers/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/memmng/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybkc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auberon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yingyu_MBA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saxon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ChkPurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newtejia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_zjuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allmovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/five\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHOWCOMP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frans\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_NewsContents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_diarylistdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Polls_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AJAX\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/POSTCODE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/excite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ga20admin/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404/development/chaynes.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/we3.3.3/webevent.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2011\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8pwd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juanita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.ibm.servlet.engine.webapp.SimpleFileServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/mod_login.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibiza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_HaveAuditingTable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/formmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daisy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianzizhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_function/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestreply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owfadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_filemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marshal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfwow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_makesortall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bindy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bette-ann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/swfupload/swfupload_f9.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e789456\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rightfax/fuwww.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen9417\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderListSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blanch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/work/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/college/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veteran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monday2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amelie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj/123/6ting.com.asp/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amyamy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/checks.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oordir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olvan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/stats.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveproducts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exchange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/lb/tzmeihua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiandiyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_StoreroomInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mervin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_CreateCommentJs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmx-console\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq/article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video_play\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shchhhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_upUserFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TIEMAIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmlarea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wish/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminvip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admindelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_DB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FIpone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teenz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Full\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qinming01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScanShell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upMend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leyla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebeka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Corpus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_BookPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_info/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CpDetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup_d01c8c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Affiche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jinrong_Baoxian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabeau\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileUpload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditorapi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pujhCmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingunna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_onload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vip_member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jgzn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yetty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XDKZ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apolo13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pollsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherrita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangwei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitrix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutedit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsTopPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CardManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Buy_EM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cammie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cards\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/context_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Xiaoyuan_Gaoxiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Teacher_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blakeley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marmaduke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_LookDrawInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database_administration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_dpo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8alert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysJsDell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/scsrupfile_flash.asp/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lydie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcwang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iqeswwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_scripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deeyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_styles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rongyu_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/7831.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votedy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_c4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Advertisement\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_Jobs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/1959.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grayce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car_zs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housecat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h3slf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tu3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony45\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TIEJL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webgais\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JZInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Readsms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showquestion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lhlh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadrian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Input\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erszl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_AskShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paysettings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_File\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boke/Edit_Plus/FCKeditor/editor/dialog/fck_about.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/Sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/validated\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_upscript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_usermanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DefaultFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5747\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrysler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/activepass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration/login_form_admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/callguest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guava\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pige\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fund/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/ctgestb.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhqq2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasonlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_default_site_footer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doralia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbbbbbbbbbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnatjb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhanlh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_security.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booklist/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SAVEnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayRmbEnglish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_LineShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firebird\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guest_Reply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vodplayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teknoportal/readme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kizz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/styles/prosilver/style.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuqiong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberSession\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giacinta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_keyes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_AddCFCEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolanthe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addclass_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/67X31_1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebekkah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_anli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinyue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ThumbnailFunction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teador\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_memberphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panchito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_report\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PhpMyAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zahara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsPL_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mindy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ifmoviepass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olenolin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChangeSkin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_universalkey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizreflist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_goods\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FUTURE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinchas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faxin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpg_sel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tina270176\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_payment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmsadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gushi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crewe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianxi_manages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/selcolor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catedbs_area_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m/ember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong-12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jehanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Harrisburg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garnette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rozanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_deflationary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stockcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extra_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/number1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_web_a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sesh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sd.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diahann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CpTypeList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genvieve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjdnmirserver4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/4211.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClientFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katuscha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_Ture_liuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_allmes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyResumeEducation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_toppics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shujuku/s8movie.mde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PHONE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dog008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcgx1mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gryok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repassw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mondeo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teluguadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/userInfo.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdjr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP49\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonUse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/21116.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LOVEBAOWOGUAI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aa.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demos/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spider\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_sh_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aeroplane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/markmark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20081001.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taterc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzf1201\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dasi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/iisadmpwd/aexp2.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weidar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backend/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hulk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWeb/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uppicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_file_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_domain_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cashin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/calender.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/join_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Picmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oo.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lesson_Vip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/css/gpy_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh05\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_News\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index~1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fawne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tkl_TemplateClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handlerreldnah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/awstats.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CZK4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feliks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twyla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Month\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DNF.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left_special\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soap/servlet/Spy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mills\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stq.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdf_schema\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ClasslmMove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebankdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emoticons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjqdhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_binyin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuyy9700\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhiwensuanming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qrcspinner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditTc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listblogger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catrina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlbach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsaveG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme_.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refreshinit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminshout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dionis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clear_step2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxdgokindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyegst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cubecart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/sql_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHANGSHI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Work_DIQU2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fr_ca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downloads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toni_purple\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theresita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woyosql.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/76fkalert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8bakup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skills\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hornet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_imgs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indeximages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/shuishangyundong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_homepage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/huanjingkexue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/task\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tempjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblogResponse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Server\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveshjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fso_image/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corporate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/root.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_ReadBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bride\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgiana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_adm/admin.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mt520\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/dianshi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demos/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fvnfmirserver22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caldwell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SD_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_9/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkuserlogin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuxiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Appraise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readact\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admintitlechk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleksandr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clubjoey/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Tool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssssss99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borussia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaxun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Seniority\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ymww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor_v280_F\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nevin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuejlok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remingto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celisse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emails\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sscs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wap_mod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dvbbs7.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafaellle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doroteya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wkq5521876\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/6k.asp6kbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remote_adm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonglei_tejia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sh_print\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uriel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TiJian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQkn-HY.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lydia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_ygsyq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showbackindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiugai1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DefineNews_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s82007-3-5-QQB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gsjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hts1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foreman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Search_Per\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pancho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hildy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Space\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beachmccune\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pirates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sorting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c9web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sallyanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Style_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbswirte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/d4qe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_book_v\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ServerMeshwork_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newstemplatepic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbesmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rdst45678.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eloddole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raeann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getClassCommandValue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckstylesloader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/more.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hartley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_infodelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onlineadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_looksum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_mly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_qq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicholle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_HonorAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragresizetable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M32951\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Rulemodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alibill/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jr163\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_import\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_Demand_Add/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe_fkfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyOrders\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_events\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkkknnnnn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_administration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awacs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpmanagepopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taglib-uri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concrete/config/banned_words.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deloria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pantyman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendfileok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleveland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baudoin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/example_flash_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/services3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Get_Password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminuser_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdvancePaymentAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berthe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newdo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bannerImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/_notes/default.php.mno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggmap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jbxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hagan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c35flog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yqdm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gea598\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/japan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delecache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abroad/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_Message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELSP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_UpSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underground\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspsql/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shifang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyous\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HOT_music\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/times\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy731006\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/ad_login/jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mynews_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_Post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rudiger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/sql2009car.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userslist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_lyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/218X74_qt.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wl30216\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvke123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/res_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clementina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_tags\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/-QQPass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkFtpUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rjjw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiajiaojob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableClassicalPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/islogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lunwen_Kejian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pkginfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sburns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mej\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/style/3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_fir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zlcg_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_EditLendout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaroanzi.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Job_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conentus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Deleted\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roxie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristofer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takeoutProductEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_forum_recycle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xingzuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gcsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_adoption\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webcash/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bghj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/sf2.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Oblue_by_BeOK_net\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_union_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/move\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bettine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jicarsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0x\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfyzwh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hello/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_RejectEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Buy_DM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleTemplateManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relatedImgs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/pic/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoukuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs7_For_Ejh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chicagoblackhawks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hello/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiqiqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianshiroot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_usertemplates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sutherland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_TemplateEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drivers/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publisher/|publisher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rexue.txt/xue/rexue.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/743.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rizhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_WorkOp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odilia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/velma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilbur1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izaak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs-Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmmmmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableRelateNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raymond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_picture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0q\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartholomeo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/older/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Consort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_ChangePass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iglesias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_JobEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_book\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamiko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/october\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/execgroupmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/west\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MLInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_mygroup_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftJuge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config_jdv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_title_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kienan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tessy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alonso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuancl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/License.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addlb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asax.orig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/po\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunterdeer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peggi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wawj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RuiXingHotel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db1.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_IndivGroup_MainCls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paozuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webgallery/readme_en.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yunqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rozele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCompanyInfochk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passlords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crxz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tressa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_SMS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereBank/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_ad_sc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_adduserskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funcion/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addxinwendongtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/65x57_3.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-sys/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guthrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aridatha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpzs2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_shop_jjzh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lezlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddiexplorer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trumaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pet_config_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skemp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Video_CompanyAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clientmore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpprojekt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stream\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarisse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_fck/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Product1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deeanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateUnderWritePrintColumn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Modify_account\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_guide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylink1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_old_Trade_Author\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vfvfvf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freetext\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/restricted/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggao_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swcx_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserGetPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Component\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ojsimp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michaeline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymoney1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnf.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s81.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union/vip_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/db/eweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/iissamples/query.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnaut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_a_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SubscibeMagazine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JHGL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inputcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godiva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmhz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manunlockok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdeloss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0v\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/answer2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laverne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzwadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HardDick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheirsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_con\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roselle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_InSQL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CoupletFlap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sally1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exobud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SysInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waldon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallclassset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fmzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vip_UpUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackysong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bpadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edgard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/survey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_company_load\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilyse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_editImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_biz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeLable_FieldsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rokt1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qgxar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_uusave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saudi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsy0919\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangce-heka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getSRSAttachment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_end\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crystal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john34\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db811103\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendsms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PopupMenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pcc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldonlineuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V_Server\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_index1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bethany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baotou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpost_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermengarde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynnea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nottingham\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VIPpayreceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txtlink2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loadtree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avigdor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_ClassDelBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzppbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JSQY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basses\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fc48888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/race\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebonee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnabas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giacomo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webyx-50\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seohsyug\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_othercommands\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sergeant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witnessfortheprosecution\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comeurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groupadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rqjzxt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkNews1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stockall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanagesavePicture1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claiborne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Menu_Container\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_where\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lost/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/webplus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getmemberid1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserID\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_Sightall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfdm.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kesion4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_PublishWork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucerne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilario\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mandie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-shl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theobald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwendolen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klemens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallery/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzfeqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/album_add_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_RegSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuytrewq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chk_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsystem/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mr08171\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveFileFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gggg.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clement\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sinclare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyweek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_EditCkInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopkefu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcd1234\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cailing.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClientServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makealltopanc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql-admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playerrm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killjap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karalynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_news_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Power\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gayla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eagle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_usergroups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kagoat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davidde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bailey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medaldb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_bumeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/1/mm_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_IF5KBM/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hackersafe/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_editvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashima1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhwwww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mellons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivt/ivtservler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchbar1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bordie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Aero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thekla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/di2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iago\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_addhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_SysConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/asp/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MenMianShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whqdhm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RayPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clerissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dxpt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_del1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catarina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Door4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addkmnewchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaska\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets_one\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PersonReg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disonline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bpydf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilovecindy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/info/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8QQCjb-YXD.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Book\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eater\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Return2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friedrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxdgindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_adadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_ghsgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Show_Page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esdras\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/dianying.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedmund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_additem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mychannel_add_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEARCHER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xztaxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableEditer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avril\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clibs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phillipe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret/secret/change-passwd.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GreenhouseByWebSphere/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_9/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdslpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyj1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jorrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/PreviewImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/network/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallery_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passWord.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/H5162\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devils2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/display\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuijian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispcont_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Toy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic_xianchegirl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/img/php.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegAgreement\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heidi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_list_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hllx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liliane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drdre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dysend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isaac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/adm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_dongtai_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkio11.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BestCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasmina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDTRADE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PersonFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsorename\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzprms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/members/system.cgi?dir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LeapFTP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lostpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/start_lr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_OrderPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxh3wz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesbians\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cozmo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/habo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/servlet/SnoopServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tqDragAndCommon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsort2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_CustomListLabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinpai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darnell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/stars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snoop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dgfdts22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clever\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hshw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_rqph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birdman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phaseinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geoffrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_domain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/con_auto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreyfus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingmar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rules\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HISTORY.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_icon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/EDITOR/Dialog/HELP.HTM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_loginout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birgitta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_html_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hegenhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vfuf1314.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fudongSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_keshi_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlbumCatalogWeb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/team.mdb/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_error\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homeapply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WeatherRecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggaoinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spade1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cammi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_LastUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuanpin_yingshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_chpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domgongzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_Admincp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamesc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vote_Ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradeigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danweiAdmineditpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yianhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_dele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx8617\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/state\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brinna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_listadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oralia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_know_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaolinju1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinwald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiroko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maihui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveprofile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuxia/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortCutMenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyl1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patience\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/qsumrhit.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChangePasswordSuccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/BasicCalculator/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_model\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereSamples/SingleSamples/Increment/increment.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_1/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHANGELOG.TXT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmhcb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nathalia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zonnya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_csedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all_model_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_infoedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edgardo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nxprmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/removeNodeListener\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Picture_Save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssmath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft_Hot2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employees\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katheryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Speedtest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinkuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ksh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanfu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_ClassModifySmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Email_Cls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianji.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gvoddy.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-panel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topiclist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addtwoadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olympe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ad.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/administrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiasdmpwd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup_sys_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hothyxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darrelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/months\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hackmast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/javascript:\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SManager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwicon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_songmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elvera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billchris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_model\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ.txt/z9v8QQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjcz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserCardLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbabas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster/vmaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_minsheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_MemberManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walterbl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constants_define\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mollyqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StatAllDay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_usersub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_productadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsp-examples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/power\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_info1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/z9v8fadmy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FlashPicPlayer2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_News_Demo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outgoing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kurt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hklmmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4_account\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrique\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_sort_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyfhmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz_dg_Admin_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup_name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detailMSG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SoftModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_note_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rfpone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dBBS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_hizh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdlkqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CFIDE/Administrator/startstop.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_listview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changework\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Indextest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concentrate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mall_Images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snjcwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/_notes/detail.php.mno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JJGGDEL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnym\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsave_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insertdatetime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asa.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/y1p9dede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchcor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_index_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/sojourn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EXIT_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristoforo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delboy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/char\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delglwz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbbsbm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/qcdn_news.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beheer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegSavefiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/present\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/date\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chg_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bzjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_y\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albums\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_addsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/_notes/success.php.mno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nameContext_1223\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scojab.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/active_more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DPKOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtool/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blakec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hjkl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allchar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zondra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_model_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donnamarie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finduser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_dn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usingdonews/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marketing/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iishelp/iis/misc/iirturn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personal/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubb.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbb00032\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DirectoryListDetailed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managebc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clemens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dtzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_constsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Systems/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaolu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valerye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franzen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zulu44\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valentine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyacinthe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meetdom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcdpDef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rented\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongcheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connect.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacques\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CountUnion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stinky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_upimgloads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taiqiou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/654321.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FeedbackSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitestats/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tohide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compatible2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Contribution\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rsmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucille99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VIEWGOOD.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pocus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/znss1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonglei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jades\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxxxxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvxing.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/khbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laogui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ess64\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwjoin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_layouts/userinfo.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhhhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanmu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminstore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompHonor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Pnclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SessionServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1uf6qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silvie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365.wuhan.net.files/goto_iframe.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/event/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDCOMP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_edit_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Demand_Info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rightsaid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/dfire.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haphzrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders_edit_no\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsletter/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8web.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wakefield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chandal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lotus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soucang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsjs_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_model\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lez.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hmhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveField\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elinore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tybie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/289X1_1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_level\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjlw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/29503.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_post_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_reset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/data/ask_newasp.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj985\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uptp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kissme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_links\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/logo1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/referer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_c7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pawn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malynda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rockets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChinaFTP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freepic/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JLMAIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infojs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_subject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminGroupEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjxemirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlpanel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dkkv176.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godfrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leilah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ehtdocs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contextdisable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdsa99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/javascript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEM_User/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ot26ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malibu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XmlSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_AreaStatistic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isapi/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsm99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_PhotoWait\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core_v5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_delete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2222.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CulturexwdtInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hermione\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiagetixi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_spellerpages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zixuenindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ly_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmxily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t_company_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum24\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007-3-6-QQB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grantley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asgard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Books\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahoy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwj1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.sql.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_StartSynchron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhongguo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paige\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhcp_kz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_view_promote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_USER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mapping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/passwrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/admpw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Help_ShowAdvInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lixiaoxiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pucci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotel_OrderRoom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chadsta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysprint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stoddard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willamina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showhelpinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usernames.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qlvvcqbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_BigSite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voteset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/record\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_purple\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinkies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felicia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_msg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_Ecard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ads_ClassManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiatuno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nahum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvvv.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t_msg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdydyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinsley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getGroupDebate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_ab_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FrontManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gxzf321.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RefreshAuto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/yl_61.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewitt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savezhuangtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kill38\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisstart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email_word2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleMove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanimporttemp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_txt/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treasury\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prestockin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rjwl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchBar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexandro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_set_tglm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reggie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/denglu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webgais\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CultureNewsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_InsertTable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8266.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_add_0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js-pic2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ravid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_Lang_FunctionLang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg_TK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChkUserReg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guillema\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/index_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManageEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checknews4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.yml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libraries/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/chinaz.com.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simpapp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_X_Auditing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tull\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/databackup/dvbbs7.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smblogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_top20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosemary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_9/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Auto/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommenddmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddEditDebate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwj2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_picture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fritter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_jjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nonglin_Muyu/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swcl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annmarie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpanel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osmund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjzmsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sysskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brittney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bettye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fudongKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/best_vote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blinnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/small\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trustno1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakfast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fasteditsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sybille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lczqc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duidu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regmodi_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peirce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdvtwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserFiles/monyer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/iiop/ClientLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pantera1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spec_edit_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yswq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladonna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boarddel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/input2.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_userskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UBBCode_Setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_upimgloadsys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewmoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garwood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/query/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_typesrch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybox3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grassy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/revshare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpLoadCls/SaveUpFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_guestbooks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shsjms/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/island\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpeg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/upload.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonietta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BatchExec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Previewlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cerberusweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-perl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caodi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fxyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_batchup_action2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kylynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialFileList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/livvyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janaye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_news_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emyuser_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fztpwolserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj_edit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.php4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CZKJB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjcx/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatecache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Youxi_Wangyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoesback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_Default.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tytggc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserGrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/classifieds.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Searcher_Base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Constr_Action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazarus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsqxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaiWuQuery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_SearchOutStoreroomInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/article/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zthf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wazier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/fangzhifuzhuang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyoutmessagelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ment2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dacaoyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mantis1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlotte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opc/services/OrderTrackingIntfPort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/wnu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horatius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsqhmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laohurou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_tree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ljveee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engine/classes/swfupload/swfupload.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nutty1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pwdamend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgfbWolServer.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zacharias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savediaocha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Wait\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_joinmeet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_JStoHtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DMJFP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rakel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theresina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servicesystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userkqmanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/sample2.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moishe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editleavel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BokeViewFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonObjectS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/img.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_index_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giselle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldstargoldstar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ubbeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nowshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog0038\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssdhnr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incPureUpload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fangchan_Jiaju\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/65X57.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imprint.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ats/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objects\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boke/Edit_Plus/FCKeditor/editor/dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_VideoInvite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/w3-msql/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahua.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mollie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccccc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StatAllMonth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Mymodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcaddcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Internet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommyboy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e2ePortalProject/Login.portal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktablehandler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jl16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_AddAffiche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/node.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nerta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqladmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fujingwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charmaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sindy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordelie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vip_daoqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/aglimpse.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_lm_mb2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glenda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/New/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderadmin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showftp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buycw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virginie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LogoLinkVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/html/admin/ch01s04.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aStatYear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wvwqbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guides\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ServerAdministrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BokeDescription\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ragnar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lutan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbfrbye.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BoardUnite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cccc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regNo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/htmledit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbows96\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pccsmysqladm/incs/dbconnect.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiders\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wind5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agryrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dannye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/mylogs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Feedback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crofttforc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsavelw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kincaid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ploy_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_Tools_Center\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trudi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_musicserveradd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_ubbcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koedee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sygxjz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/30751.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haiyang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blondell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faqedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amberly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver6.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youandme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home_head\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tw_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tangshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yvonnechi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delmov\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/original\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_channel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hervey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neville\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_lm_hp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Get_style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_blog_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_Float\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tupian.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saleem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/release\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whftkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baldwinalec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aima.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tttttttttttttttt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utils\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cztj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pragma6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_del3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode_Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Foosun_Data/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_blogmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Term\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxskjx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freemodelv9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amalita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maridon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guowai_Wangzhan/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_c2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendMuchPlan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imgg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keshilistnx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/22827.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Foot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductAdd_excel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymnx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rudolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowOutClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EmployeeList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Collection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/njrcweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/_mmDBScripts/adojavas.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhiadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editjidi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cydata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/komkom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sebastiano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reginald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft_ElitePic1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/early\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sterne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gllh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AgentPayRmb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwff_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zpshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danweiSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Connshimeiad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrissy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_EditLogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INSTALL.pgsql.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/active_users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/_notes/success.htm.mno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NS_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andre77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axd6qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tidfinder.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_onlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clientadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyduyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbb1100\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JINZRMB2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calendar-zh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mllymirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guangcai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loydie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clinics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilyssa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzlxxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiquia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top1_case\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addwz1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QuickPublishJobs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_magics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templets_AddFolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxwl1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Select_Product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhiMod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shemales\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hagen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_sqladm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CodeSysJSList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smilenew1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amstrad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_InsertHR\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_images_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/services/help/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdasd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Myplus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitorinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/methord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDbook1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TEST\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/line\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/17726.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckspecialcombo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ListReport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserModifyInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_zt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swhd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links_wz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmSuosan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cracker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/05\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byclick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useradd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datepicker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Library/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/Spy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcLogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiduoer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upIDImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quvrmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gtlawfirm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pubclass_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_lovewall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendsms3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xh_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booklist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_vipfuwuadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Rapids\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikolai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxyyxz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyecount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qihoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_shchmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_Action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/downloadFile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_properties\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loretta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy/1029\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MpegPlay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webplus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_main_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.yml~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yudong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_SourceStatistic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuobingzhanshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usercp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MS_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ricard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updata.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_tel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashFXP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/Editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/62\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chauncey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dacy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dnewsweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzysz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrgo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glynda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/client_error_deal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_ClassAddBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888555\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Email\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onlinevideo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsoimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaseV\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/blue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handicapped\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shayna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_user_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_restore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dptj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zycp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh_TW\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vlad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkLoginSub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingeberg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditParty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Rec_Test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userdiary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ws_ftp.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IPManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoft/diy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dallon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj_cls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/epoch/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableLastClassPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsgwhtdocs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echo0622\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/25038.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q93a123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_topic_postforumid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gomer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuck/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateText\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veriee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tears\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/user_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masterflo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js-ly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhyz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8alert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Type21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newhome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.stats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoads/ads_data.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addjianjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simonette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy2buycb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mcraig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftView/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Searcher_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxokqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuju.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwlzdom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miof\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olenka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RmbPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/module/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/user/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/general_funcs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odelinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_modi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminVersion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tg_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.BAK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpzg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewrecycle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nasty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daphne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Console/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rawley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postagree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_ezu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww3qadmin/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ystj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url_error\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_spaces_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footprint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_mod_pw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_ppc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tejiainfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VS_Items_Result\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbb0003\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managezhuanti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewlett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetChallengeWord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EmailCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dysart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showact\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UnRegulatenewAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_DataAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeallclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminconfigSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HYK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2server.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh_cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sliveddevils\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Order_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue-jun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosemaria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/januari99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaguar1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porno/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_mb_modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/againtry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saxe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pap_gg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databak.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readmessage1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salomo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teaser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crazyjoe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grimsby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_arcsearch_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mssmxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyHT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/53\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_itemtypes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv_qiuyue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassaundra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Other/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joke1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oranger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwaddcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donnell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/SnoopServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwd/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwwccc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testing/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cqlanye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wizards\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Introduction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_SQL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_cdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogcomm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marysa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_lendOutCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glendon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jixie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaiWu_Upd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrollpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/restricted\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newstype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~ofs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coding\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steffen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Agentpayment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TreeImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lukas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmgwq.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tool_PictureModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LogoImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drp-publish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daisey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favicon.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Challenge_Scan_Board_out\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dapper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Superadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cell.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwff_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default06\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui_chanpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elwood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen1119\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/count\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HygNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenqing2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chlo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsupfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateArticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgrpwww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luciana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumlist_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savehuiyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemHistroly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_main_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_login.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_add_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flea_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czfxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_sub1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguistin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qmailadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzttok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_MakeJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tables\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SouthidcUbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_datalist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Games\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frame_button\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doggie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quinta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxkzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/k\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/17545.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stafdayrep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errors/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/9025.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vnqm26.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/and/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_COMPANY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speech\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roxana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tejia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/time\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_custom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.pl.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsploy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/reliziyuan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PKG-INFO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webdriver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rfresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copy.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comid_logo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tech_support\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbruck1101\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnaldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blue2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/rksh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Menu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrtia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shunyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/UploadFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/shtml.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VoteView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8conn.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companymessage_Del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JINZRMB6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rahal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmvirus/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/com2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ports\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RemoveCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/perl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_ChangeInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQtest.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rikki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminloginout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piccodejs-VIP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_psw_set\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommendmmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ted\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/software\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PlusModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getfilename\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cracks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MakeAllTopAnc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SourceList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VisitStat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luciano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_classad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/about.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YYYS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bankroll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PicDvd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanyuaneishu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_sale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/28\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_powerview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~logs/access.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sc_tp4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dosearchuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/session\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_area/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keshawn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adclick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lambert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editabout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rycca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongjintime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Procomp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horsefuck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Allcareate_Template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love1hzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coletta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_Video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archibold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irishlad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpryAccordion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk2007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassAddBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft/book/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/dmr/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pscms_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addgj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wednesday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjjb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzzle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Getpicto_server\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leftee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addguest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyAdminedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MultiRoom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deljicar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listdaoyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PowerMaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Koji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philippine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pacorro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ererer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_effects\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_welcome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/login.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_v\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oodood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_Lang_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sld\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lancelot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmwwqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkhr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allsyslog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/never\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eartha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PasswordUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forget\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/form_results.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grissel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_addnewproduce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appendinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dosi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.system/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjdm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ShoppingCart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleCreate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cm8430\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borabora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mz.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aabc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pubs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/private/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraAdmin/phpmyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckjhccc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chchabc123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Saleold_delet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_InterfaceManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Silvery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board/edit/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MakeAnnounceTop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonglei_market\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_skins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_link_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7777.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gualterio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drp-exports\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazlett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiameng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config_rglobals_magic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb60\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.srcElement.getAttribute(id)\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help66\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paquito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatuns1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat_showmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northrup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/local-cgi/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_dl_right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cqtn176.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeLable_ClassList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kciuqquick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessamine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anne-marie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likeme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avaldes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CZK3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/webshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnfzweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baseconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FBrowser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discus_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applydel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleShow2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonnard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/majun645\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_sort_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07flash/lv600104.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsletteradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xindety\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Product/manage/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sites.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niancianrun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_lm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inkjet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLigoned\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vnxujjjj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cori\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brenden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mystat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FrameInSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddPublicFolderOk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/oordir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aazbFORserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_fenlei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManagePostalcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbrit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contact_us\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wavv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataSqlResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sucram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managewgok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/protected\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaoxiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetVote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mailfile.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sql_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_apply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help55\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/podcasts_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HTTPClntRecv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VoteResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/branden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchreplace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catepic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MONEY7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rooney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_rongyudel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_detail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiyuan2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/dialog/fck_about.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/js/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nmonmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newslogin.htm.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/titos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/dp6.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamburg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editwenxue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsSystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpxh1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pubclass3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citycard_UploadImges\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buytestimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageUsers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sabra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keshilistbyby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t_mod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/8876.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TestManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wokou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_olpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsManageEditSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kalina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4444.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nlxz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/yxbbs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_cate_19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agent_protocol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckForm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyeproduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prod2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technology\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enterprise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cairistiona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_Default.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qtwgeeee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/javascript:void(0)\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s13wolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernardina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiqi99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit1/db/ewebeditor.m\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cricket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_house\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmpwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckcoreextensions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/D8921\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamegear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.com/qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netmeeting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sszy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compatible3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernarr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport_server\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RoomPay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmallClassKillok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shishang_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honoer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samantha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/README.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fleming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urlcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/womens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Special_News\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lrclc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osgood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmah.axd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db_backup.php?action=RestoreData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/globals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weisguy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administratie/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ymingxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bassjoe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestcollegepicks/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_review\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beastie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.orig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin500.com.doc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mltr46\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libbey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/out\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editopinion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Education\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AskList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addoklink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8111.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderListPrint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageyuming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jemie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qqb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Publish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huan513333010\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinaz.com.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magic523\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Query_get\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tallia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ArticleManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PowerSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_add_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shark63\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trumpet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intranet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shangwu_Maoyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tusk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjjmt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_boardmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/titi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/board/editor/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_db_mysql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/praty_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Exam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cig-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/43\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/README\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showzj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adaline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marylynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/man.sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leanora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminProps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanislaus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_eat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiceyyecips\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bni7kg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stopsqlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odnej\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w1018n\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/um\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin08\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mallorie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonObject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruprecht\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jstime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seamus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guests/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chknews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Pic1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_userinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oladmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/events_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_Album\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Syscards\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jammie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nhhhhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flea_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PersonChannel0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cztkdesignzxdg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/padd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PersonChannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i18nctxSample/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pendex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wpAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yangzhu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok-hexlb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hayley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminJobseditchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_ghstj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ralph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/23604.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niels\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoil1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickolai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mom_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_pkequip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase_Statistic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReadUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radmind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendshortinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shtml/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oboy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/les\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpsw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuandui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/js/misc/swfupload/swfupload.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncc1701e\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GGYY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/orders.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geekg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printmonthkqinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelCity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redme.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abigale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_friends\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/mkkufckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sergei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IDImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brannon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_shchtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/REPLYING\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clientlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typetop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outer-glow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_adcompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bifocal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usersms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mytag_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephanus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/htmlscript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaodong2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_ask\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/pfdisplay.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbserver/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_toplist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpzk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/phpmyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issuance/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/gpy_toolbaritems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laryssa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sk_CollectionFast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admincp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyz12345\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsad5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Add1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nathan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mighty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FlashChannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jm_lc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berger2berger2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/det6pal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkbuy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rsho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hortense\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Exchange_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/mobhdede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/april\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StartTake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHENGHE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Collectors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darcie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hytz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chg_admin/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/tool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.asp.ba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_specialmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stevy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserSynchron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EOF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendSite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Style_stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkblogpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Teacher_More\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VisitStatManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeallsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/logox3.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rr.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fu5ck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerrilyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MAILBOX\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily0223\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives_edit_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChangePW\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brewer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_bag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SiteConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/mtv/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.com/s8qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krissie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerrylee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangwangok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lands\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkinput\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doc_cy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/admin_logi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testgo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rutherford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha_table_open1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_guanggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/padd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LINK_SAVE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deladd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin3388\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editubb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/write_auditing_idea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaiWu_Query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_manage_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treech99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CMS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ha_table_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoshanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soccer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setcalendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faculty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shangye_Maoyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elite99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/ash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberOut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lawry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bull\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laughton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferdie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver1.928.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_sysskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bogey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guanggao_Yingxiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_config_skin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_jh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kippar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarbreak_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kynthia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_cast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beau\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esmaria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hildegarde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wghwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathyleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsReview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lolily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zrhzrh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catharine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/form.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_newsmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franktang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_News1111111111111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxpcb01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivtejb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxd1234\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengshen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminPhotoDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updata_companyjobs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webicqsend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulises\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhiloginsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heige\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmpdqq123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ChkLoginXml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vken\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_customer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dhtmled/DHEDCAB.INF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/space_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peyton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pikaryu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priscella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/Software\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datacheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downbylaw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosalinde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viphtm_6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gisela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zip/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ftp.zip/_Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MYWP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uplogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminlogin_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/components/login.ascx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_float_fullscreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/chongwu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MenuWizard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/webcash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_msg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjlq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pantara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mud3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/khool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyperlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maidou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mm.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xitongrj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/images/smiley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iowa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heidie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/SiteWeaver.mdb/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/address/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pubclass2_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/65\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwfb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gsjs_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nqyymirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaaaaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dennison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tybi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vti_pvt/authors.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anatol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel-administracion/admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torimo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_collection_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/dbback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torrence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roobbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eladies/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_MyFolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roads/cgi-bin/search.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartholomew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kut45w\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpjs3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruthy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make_movie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellowda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_SQLFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vugbmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon100\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmsample/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isiahi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downpf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_editAffiche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_images/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saverc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Comment_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiyuanban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyssa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/more.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmp/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/f\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reilly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobnewmod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoginPage.do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxzheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminv3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tibold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScoreList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dacie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0cmd.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/print/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lillian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewGoods\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/49\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/bizdb1-search.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doug\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_photodel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Service_index1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e-mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincp_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i18nctxSample/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbscgi-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_robots\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_jf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ludwig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whois_raw.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zidong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lotte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SupplyInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bfg_topplayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoftPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shkx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.7z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giffer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xingzuopeidui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godm27.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news3000.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqqq.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_form_Admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgaop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEdit/db/ewebed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senddatecontrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kxzxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwcx_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lctc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_PostManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiheSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qglm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_Tools_Magiclist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/index_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Qpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantasy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_SiteMap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Exadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_model_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hallie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrator/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_template_src\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Newsmore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popwin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileExt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_Demand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qzgrs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RLcQq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sygxtmj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhjh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminsong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sitemodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristofor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuser_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooldewd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncrrweb.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tahoeblue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog_photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzgkuploads.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yovonnda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admincp_toolbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_tools\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztbbs10sp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_CustomMainPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wabao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furenwh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeannine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/600X85dp.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaqgmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keypad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Dv_plus/IndivGroup/Edit_Plus/FCKeditor/editor/dialog/fck_image.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izoqy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgprds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web2000/oor/content_areas/authorize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gewess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danweimanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Attribute0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touch_way\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commandclasses\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_row_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faces\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhInfoMore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jilli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durkiey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TopLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_memberlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarrance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/Dialog/help/main.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/subscribe.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iynw88888.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sendresume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stargate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Post3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lothario\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revned\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_polls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayi000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.7z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Js_Sys_Modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_prime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruthe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cal2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toolbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/24401.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppwd/temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/textcounter.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_lyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clementia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/htgrep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alyce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alogin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mqhx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sutherlan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoadCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sawyere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yewulist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365.wuhan.net.files/ent_195X322.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OMA/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_data.aspx?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redian/webmore.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immanuel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang_room\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbb0002\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/brow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/oauth/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natural\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelpCategory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_tuandui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_S_Engine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Type_Setting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mulu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iam77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrolls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BYBY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alista\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getnewemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxatc168\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditornet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommentSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Root\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silvan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pijpen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bflvMirServer2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ks16jinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_order_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexandrina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_path_down_name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ChkLoginbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/15909.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zidane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zhuanjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Forum_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfghjkl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxyz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog_member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpc_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bszn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slut543\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bessy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vqqt444.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/royce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kqcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morgan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/javascript/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ken\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spense\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glnj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yddad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toldmyfriend_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vasili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/trade/admin/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/xz_1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jake4440\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9m5kqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/campas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sucksmilk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sofia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admglist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj790701\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScoreManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headexpoinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/weihu/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chelsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addcue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resources\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irving\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/phf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Train_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/telecom.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/dnf.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donaugh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_emal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_group\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleShow3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gd3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/include/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/scripts/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timmi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_InsertIframe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orwsmirserver2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heater\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sx_icon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jspx_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofs.web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_promote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweetchensiyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jscount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all_model_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aoyun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lifelikesky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver6.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_const6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HanYe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/557cqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_system_fid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_3_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swfobject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnjtc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwenneth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matthaeus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kda7menghuan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangping_j\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/iissamples/fa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvants\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hai7fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex_sites\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjgs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_partner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PageHome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desaite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reguestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tricky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_productmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/production\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/viewlogs.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weijunzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zebadiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drywall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dov\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntkamirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qxfj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyncdgn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft/hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingjb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/3/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cluster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoadShop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/logon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DPK-XP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuifengxiaoyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_jfrz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~passwrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_SecuritySetup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ben\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michaela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RData_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thunder1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowResource\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MACMAC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaiWu_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_job_delet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhuafang2006\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editorfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhh1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specifics1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Vote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb5024\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datebase.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_details_importdocsql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Click_Ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiameng1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangjiaedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yygyyg12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onfroi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Constr_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hailee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/FckEditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Adminmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fjxpq.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turavvvv.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/Select_feedback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADfloat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/display/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Members.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/34X134.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savereplymessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bfvxweb.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userdj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erasmus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ezshopper2/loadpage.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CommonCode_JS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nownow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swflist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arliene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hashim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.listing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/documents/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about_us\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_foot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaclin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swimming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miltie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topcaid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dobbelt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sampson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warez/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DLBOY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arriva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycc1977\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_dex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Teacher_GuestBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/author\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_UrlEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/INC/FckEditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replymessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tenpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pppppp99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_msort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_printview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/snippets/fileexists.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snld\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_ClassAddSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxtybg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frazer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ynhapure.rkr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuswmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardJump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melisse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_goods_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.jpilot/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveLuckVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phillipp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CONNQQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/events\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Album_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_salea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_move_copy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxmzxm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CancelOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfteiskkkk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_ClsMain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_2/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gxlq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminconsole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mlsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sullivan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpSQLiteAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/F4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sw350296\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vittorio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minerva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/secure/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowPloy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Download\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ditto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petcenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiadong5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irsz136.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SubSysSet_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_p2p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_list_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RepGuestSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pone_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donnajean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_content\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RefAdList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dataForm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matthus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursulina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TDdownload/cjwguest.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data_mxsky2004\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbabra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sprerd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mb_logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/group_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Supply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftCateMenu.Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richmound\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alessandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achatrefreshb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buding.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddddddd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modif_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowReviewList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amexcard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangcai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adwebgbook1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_blogstar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dasie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_VIP_YYZ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zulema\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/29154.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christiano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cekcek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web800fo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dayrep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allanshao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radcliffe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdeal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_newdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alufwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/perl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/guestbook.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banners\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobinette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_TemplateProject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Products\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_block\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardyce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/de\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonAboutJoin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuxiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ORDER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveNotes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nunzi1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjanette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserPayRmb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uusee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floatadv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plane_IncTable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site/iissamples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsamples/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/phf.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epwd/passjoy21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditResume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aloin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CZKCD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/phpmyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/114/114.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezekiel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjzxgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/westyhagens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dama.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keefe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_workzn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register_Success\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huangdaxian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layer_obj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_imob_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TEMPLATE_MIMETYPE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcjw_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Album_About\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wisky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_filtupfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Collecting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_uplo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/oordir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/songer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epoch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clayborn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yynbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Middleage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileuploads0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Au_LauncherTools.RAR\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwjvk.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0608.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwjq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_datamanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/commerce.cgi?page=check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devildog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nurlQCJB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulcia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_view_dd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CityTypeManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abeu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellicullucille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FORUM_CSS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intranet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_user_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fionna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/survey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemFilters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/connectors/uploadtest.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianjie/sg001.mid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanjuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_JobWill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/show/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_down_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kippie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHOWMEAL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lolitas2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/re\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~passwrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovewall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcksmith1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cccccc2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xb7125\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JSSTYLE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marybelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locust\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Demands\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nadean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theressa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxxobbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wap_UpFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person_notebook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinaldos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Train_More\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vonni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwupin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhkrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemAttribute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjaoyun2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qvkha.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimmie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mendy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Other_EditAds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethelred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_BookPicPro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daphene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Salea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiyuan3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caijimm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upgrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pokzigj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meijie2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jonell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.yml_original\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_13/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addzu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dionne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorstein\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxxobbs/upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OCS_Management\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzzz99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/event\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanyudonglired\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shipping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meyer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paste_text\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveaddpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naomi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FlashPicPlayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form_button\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lccon.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/vcafeeds/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbjhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatePassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PASSCHK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_PayEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemFoot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminpinglun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_saveAdminedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Head2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/search.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yadottoday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/globes_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditFood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it_gg_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raquela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/yumaoqiu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConnUrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckstyledef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaohuang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/eWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bqul5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cchaddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyxuewu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfelpass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zwm711\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lince2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_honor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shandee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgrm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolmenus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowOnline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desiri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JobPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdfzcqbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feodora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendInfo_ToMore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-us\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rockie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/usr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Redian_Zhuanti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/request\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestDetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/login.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlt325\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ViewPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Oldproductupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cissiee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_song\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumCategoryManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EncryptNum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Joomla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Select_feedback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_keshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyxq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/pics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/wangqiu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubshmir.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conrado\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toolers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutuppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czzb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbss/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/songyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qiche_Qipei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorrope\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applications\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayRmbChina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8wulin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JobLetter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/movie_2.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanghai33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaymen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_ClassModifyBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acct_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_yewu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counterfiglet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/static_js_mod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dfpenry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/secure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Calgary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conterimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpaceDiary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getCity_Ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/26X22.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardisj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/scripts/submit.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders_list_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/girl/dvmenubg3.png\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybox1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereSamples/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiarenok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_f\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thedric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_team\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xi_cs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserParam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ultraboard/ultraboard.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_filtrate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ra_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/view-source\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vally\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_click\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llllllll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duchang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buckie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadCls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongsm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlota\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaoxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfbz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/search/filesize.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marnia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INDEX_back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditorcode_ie_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biteme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/EDITOR/Dialog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logupImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacesearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Set_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/btbart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-win/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comupfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franciskus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blue22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/a1stats/a1disp.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delguestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glgrmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catfood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_VideoResume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pent1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_data_done\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjdlxys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_temp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_shopxp/editubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PZ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picture/getpic.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookmarks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leslie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel-administracion/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/web_store/web_store.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Grow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contact_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/register.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hackip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listproduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesbian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headbuy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lights\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbookread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcremen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clemmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver44.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuxifanyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassUnite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checknews3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsodel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slick1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ganny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.sql.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/isapi/srch.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/rwwwshell.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangfei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MacSite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tracy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocyrlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amble\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katharyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Went\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kali1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d_review\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colleges/electron/xszz/tw/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwordlists/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judyzhu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_search_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwenny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosemonde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_shjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addbooks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_const2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hermann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanagedel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opxswebshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MainTain/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_spacesettings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picposts/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnt008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldbbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyedeal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system-administration/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warrior\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftpurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvyouchuxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchMX5k17Hnh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damdam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_domain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_vipinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_movie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skellon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cthrine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/29518.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userprofile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminuser_myedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewoutlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfilweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elvina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IntoUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_HotelRoomManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_delvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_11/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_userlogins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Header_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ArticleSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shownews1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DownServer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_ng_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advertising\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_DatConn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trykey2006\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckspellcheckcommand_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/ism.dll?http/dir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyboy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qinglong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watty1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminindex/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultimate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvvvv2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listguestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_add.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maryjo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpLoad/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminonly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scsc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiffany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_disp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_05\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pickle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales.csv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cncat_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Help_intr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_properties_structure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_CardCharge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowReview_Ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~stats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prudi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frants\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kermit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorrayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/com.ibm.ws.console.events\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_PhotoCreate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_mtv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wk97117\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbott\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/session3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inip521.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fields\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loveyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmorgan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textScroll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessalyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brande\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ab_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Resume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_logoff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobdt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_culture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_infolist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jitems_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyPurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twotype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taiyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diguoo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_color\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bouts69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_privat/ats/logs/writeto.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebForm1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyHide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiuliuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announcements\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louisette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Healthcare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23437.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gznews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiii.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pagerank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_addsysskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micaela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ads_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sscheyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_DynaCacheEsi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solutions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EVoucherImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Images/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land/land\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditSub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comm2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calc_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrasjon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whrnch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_proinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rczp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aneliese2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggcl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQkn-DJ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_MessageTypeResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joomla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wildon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nina94\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_logzip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ejbSimpappServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editlearn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage888/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GroupDebate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ver.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_ClassDelBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Folder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flori\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddEditNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bendicty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flasmap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kehu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cortney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Counter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administratoraccounts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_lm2_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LuckVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_say\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goober\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estore/populate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snowy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/board/editor/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sendmailme_One\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laoylrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renameok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t71\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_EditPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySQLAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/padmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Main111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiqian/bike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addNews_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver77.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mails/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frogs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsmw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_23\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynnelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CFIDE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzajt/db2.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YULE6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flik_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rangweiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Teachers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachicons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/1203.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuclear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall_log_files/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constancy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puppee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Setzawen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fs_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_collection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contributor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deldata2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PrivateFolderFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_skin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yesitis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katrine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ball\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system-administration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murdoch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sstimecounter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editgg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hans\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ActiveDirectoryRemoteAdminScripts/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderPreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abandone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lib/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_favsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevinb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserPreferences\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singleright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/file.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/ControllerServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mimipp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nong_Lin_Mu_Yu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LeagueReg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oberon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film/soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Main4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qlke456.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JIUDIAN3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/type/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_tab_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Allsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailsend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lauraine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_top1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EDITNEWS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aharon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditAd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deluser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeitor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lakers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auroora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winfast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filehandler_settings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WaterPrint_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mygw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DIGI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melesa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreams\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwroot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.nsconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eheheh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eloisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abmtk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/gh.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Comment_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor22/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expouppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gd4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserPayRmbLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TextEditer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editjobchang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_server\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserGrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_groups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flkt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default2.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letmein\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birthday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscribe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adidas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seezhu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuoctt.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lover24\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stroker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saudra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyqgjb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ticket_main-2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grabl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dpdzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liucheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setftp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_class_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huayun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marinna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writeFunction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Map_sm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office2003\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JOEJET\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy2buygg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Master_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_codeEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TwList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ArticleDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southidceditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/_notes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Books/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csheditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_score\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petitemshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calc_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_rename\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmaline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lightbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/bowuguan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/tools/ctss.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mookie1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topmdb.mdb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmwboomer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opqw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qinchuan1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isgay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ControlPad_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrystel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Auserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movefriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gllogin.aspxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewJobList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TreeGuide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helenka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_shang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/js/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/ReadingList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilhelmina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Alipay_md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibm/console\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_jf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Master\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaowanzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzgerald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uniteforum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CleanCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/Login.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ysthcc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhtx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whhxgy0710\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pnom88.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erskine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkreview1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shermy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/snippets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modiwp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ChkLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/mirserver.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyaninfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/14521.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_shopxp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchexpo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PollList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/qcdn_news.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sidney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shjianews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminarea/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiphani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servicio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmnjj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loaded\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamacod1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Datas/datas.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pk365_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/eWebEditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IBMWebAS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FORserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chgstatus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/table.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinglassiter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/procedure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinxiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DownPIC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elnore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/china_eat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errors.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sopcact\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mozes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/css/words.css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PicShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_vip_ygsyq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zipfiles/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Devo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kassandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gersh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webzj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jodyjo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/introduce/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fynzmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fredra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_newshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Contack1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacquelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeleteField\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Qpic/2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Exchange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deloris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvvvvvffffff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_makeindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteFiveStep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drmike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settings.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fish1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeJs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysJsModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjkx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/khalil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/log-reader.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yingshi_Kuandai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_casesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boarddata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPaySend3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displaysmallworkrec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwcl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amdshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/APP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printnowkqinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8sitemap.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_webalizer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morganica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rozella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bullshit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.livesoftware.jrun.plugins.ssi.ssifilter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Template_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_xinwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaptchaPreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Announcelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_batch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savexx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emylee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Catalog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereBankDeposit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Favorite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MessageDrivenBeans/docsservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databack/PowerEasy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmodule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milzie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuyguty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dildo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_addurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browsesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeweb_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManCar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beiczheng.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minnaminnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelpCategoryAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_link_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeleteMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveaddprice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richie2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_New02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asian/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dafuweng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/studman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouqf321.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k8mrc2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PhotoManageDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isahella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/cgi-lib.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tttt.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guolonggang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengxue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaohua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzxqq751231\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database_credentials.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditorcode_ie_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/forum.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjfwshop.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Banner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salmon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editdo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minhairui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addads_place\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iloveu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_log/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DMJ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deleoff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wucan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabb.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lj1973\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wgfrtgwsrgrfgt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penggen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index0601\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanlinlin0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/filemanager/browser/default/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darsie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charmion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rencai_zhaopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surgemail/mtemp/surgeweb/tpl/shared/modules/swfupload.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lookfor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CdontsMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveUnit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/88888/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harvey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_syssite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/css/baio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/counter.inc.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_top10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llllll2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drpepper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srinivassrinivas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1992\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsgl_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpg_zhok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyjss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lists\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtvtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinkuc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savezx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_toplist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_blogteam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yqq617\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommendm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rootadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainframe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzhen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_status\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodrow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getValidateKey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyrus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/manage/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~.passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_uploadfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvdadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_world\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aneliese1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dqjgcd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_VipClicks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lindsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgrnf@12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audit_settings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/ErrorReporter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sameinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_meet1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_d4mtweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dusty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunter2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserUpFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveVipActivity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sp02182\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/something.stm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mod/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mangas/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certificate/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumBoard_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goshopmgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prattpratt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hypic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bbs/forums.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autolab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lpt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aura\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_editnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tulley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdhhmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/search97.vts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilmar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/logs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovepy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_register1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Dv_plus/IndivGroup/Edit_Plus/FCKeditor/editor/fckdebug.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404/bonnyscotland.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsxcc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_Upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_down_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_inc_indexarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cvs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Head123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Muserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/length\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuewu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolphus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log1n\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.tar.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obadias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/upface/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addad_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_mygroup_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Main1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacked\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/release\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nodes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rylc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigitta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_MonthsStatistic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_onlinedd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/espraber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geoip.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/chkPage.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanxilongxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2011\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tatiana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_form\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDHYK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DWHelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_adshad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desaite3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor2.0/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memfriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_sub_dd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheryl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/querty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downtown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/will\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abramo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shimanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Editculturenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ms-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_guanggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tristen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffzgMirServer4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/er_61.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wyxq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfusion/database/cfsnippets.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckKqLeave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditCp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_JobList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_law0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mildred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_group_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_saveflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/jsp/connector\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhzb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iwtgal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hendrik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tacforo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_functions/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexbm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_downfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hideout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/classified.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modipass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kylila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oluap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/callMe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freetextbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ActiveAccount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbertine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kanya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8web_scanner_test_file.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/shtml.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Logout3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysAdmin_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tynzq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_img_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrrrrr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error_log/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EWbutton_Community\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_body.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jll751112\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarbit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editcard1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuiZhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxgz_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigtits\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxgtFlashFXP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz_dg_Admin_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_shop_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.html.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plcAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useradmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fjzyhs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articles_tp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postfixadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demarrer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_booktype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/texas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/active_users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claribel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scottie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CacheViewer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Morrissey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_diary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zclist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p8p2j5j\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make_classjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rzzmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expelval/exprcalc.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ftpquota\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzxr20.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downcode.com.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_tuijian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scriptaculous\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DG5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpersoninfindb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chips\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesbians/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_path_user_name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/userface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorthy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedrss1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jysht\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_company_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corabella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spenser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BTBT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traderadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nph-test-cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_index01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_sortinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsinfo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Site/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/web800\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showbigtrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nevil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uuuuuu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_head\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispcontent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charisse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiazhuang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardroom_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/List_Dept\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestcollegepicks/login.p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyzb1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Payment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Style.a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail_inc_cdonts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhacked\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv_youshang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mapclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obediah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Locus3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Clean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Region\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6666.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tadlock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop83326\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WarehouseEJB/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07flash/qgqiu34477.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/logon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserReg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installer/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db1.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkkkk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SiteCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pfour_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consuelo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_Hour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viphd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stevie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/screenshots\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianxiedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toshiaki2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fzadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watch_cancel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companydocumentinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv_remen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frehleyace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~oracle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyUpFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profiling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_data.aspx?action=RestoreData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibstatus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha_table_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about:blank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectColor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiehunok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Detail_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhuafang5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sidnee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_fz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgurl.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coloradogirls/members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cstock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lenci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyesurvey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Aiqing_Jiaoyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurizio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qichemz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jknapp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savetofile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_web_v\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/administrator/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seymour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NOREX\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhcp_zjq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vernen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goofball\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huangdaxianchouqian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shuominshu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giusto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getUserGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytel188.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/admin_lo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_float_upanddown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addjigou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yangbin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin/Webeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bxtmMirServer2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cust\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merwyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/ewebeditor.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reuven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_tiezi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CardMember2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikmor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RUSER2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_jyxz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveuser2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecitcarppractice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfiles/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daili_x\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catlaina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocuaqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buynow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leftt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimbogolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lydt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_cnf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avrom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raiser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quinton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Dialog1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_lanmu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_plus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmllsvv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jemmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adorne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlertMsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManageSite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buchong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Special\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nhoj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image_frame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Search_Jobs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/sojourn.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserCollectors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giraud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacinthe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pnd94\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxwdo.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ifztjpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melisenda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/_AuthChangeUrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plan_records\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_data.aspx?action=BackupData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendeline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor_style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guy339\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5757\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxtian111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shawnee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereBank/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengcai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Installer/default.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firend.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwbking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.7z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Forum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/finger.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminDelComment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passion1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_favdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joscelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_addfriend_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roads/cgi/search.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackquelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lylist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_xp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andonis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fu477776ck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Message_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annabela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oofip.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penelopa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bnbform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/show/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqmm.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Firstaid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alpha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qybz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x19991213\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alipay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cg_senddocindb_mo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Greenhouse/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_domain_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminService\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pylon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModifyArticleManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ketti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz_dg_Admin_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showclientinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/body\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/maillist.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wap_Post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yogesh1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemAddNew5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sybila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl0235\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netadmin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrussell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_templet_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_goods_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dasya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grapes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_gonggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edmon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderbegin_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JianZi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmedit/admin_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gs_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usr/openwin/bin/kcms_configure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_shopcart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb_path_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmit22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HibaqikKumovy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/wwwjoin/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baseconn.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badjoec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedbackn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FTPNow.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sidebar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abigael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wadsworth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k4hvdq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gqwn100.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freelist_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_ForGetPasswordResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yangweiqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dagong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjggm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckxhtml_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysLeft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_login0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yueerwan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ksh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall_log_files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_savepass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juices\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajaxpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adddangjian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Class_Soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/info/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableAttribute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gril\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/filemanager/browser/default/browser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/environ.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_lm_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grazia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agent_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gzmc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y392l20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anthea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClientOrderManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnzp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xi_zs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_friends\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveannouce_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_MyPerMission\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhtrytrrrt3577\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TopImgToggle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControllerServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchfastxinxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pincus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/british\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cl1989\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city2008sp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminarea/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nomi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rentalsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuzcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beilul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_visual_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/general\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghertz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gayleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ok/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_createshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.xls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/script.cmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filberte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangwu3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardUnite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/werner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_MailReg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateCompanyInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TempletManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pitw1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsgu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuguo_liuxue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagesWmxQ5AM7l\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_emoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_saylist1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_classsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WSsamples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Logout4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yqrcf7i2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberLogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zelma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_login_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h_rc_show2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whowho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Certificate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topless\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AirPlane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_zhongguo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Previeworder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditordb/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HeadPicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonytony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readrew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogon/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hijklmnop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileHandler/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianshenok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdagtre45\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwendolin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bxww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all_UpiConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpbdweb.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminJobsedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/tianzi1.ldb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biged\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alydon1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rusty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company-Profile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserCorp_DataAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add_Title\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_eweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver111.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gemini1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/upload/flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandstand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juliet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nocopy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vasily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/search.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cstock1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consumer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demetris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysqladmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ravi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Send_Submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADMIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_RegPost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_tudou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threadcaches\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grmpimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moyna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waylen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambrose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CommonCode_Collection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addpr2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateviewnum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schuyler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citrix/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baike/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/click\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncGoodsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iLog_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wallie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/btytpz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skwahkcalb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_fabu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhupic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/air\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SaleCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpLoadList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donovan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usrs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiandian_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spicy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PhotoUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niuniu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ME_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gordie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elfvmirserver9.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjhyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trainmdcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zminfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dms/DMSDump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tucker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thu-ji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Members.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/head_listAll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trainmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tevin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oBlogStyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addstaff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adztf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_editJob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Constellation2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errorlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/self_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepwd_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girldiary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdf818\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/biaoyanyishu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mngr123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smulan1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kzptyao.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SimpleServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats855.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/logox3.aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolfe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_pink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giulietta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citygirl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/csh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pqzb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincontent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/third\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiiiiqqqqq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Diasp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GoUrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_more11111111111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replyview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6789.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whhfl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/progress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/titleList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Group_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatjoe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/getfile.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_baseinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ques\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/older\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tree.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Menpai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/DMSDump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/Taglib/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c16t52\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_class_change\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bcsys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llll.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooperate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewvoters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_folder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psyche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rush2112\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RETAILLVR\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giovanni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roomphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Picture_Recycle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/557.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_IndexMain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xjby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbooklist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oicq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivadmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hu690327\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsPL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamesbond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cesya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_noproduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mods\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu_t\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_db_ys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downweb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sponsors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdzxadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_dateon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsManager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image200605/union_vent_jy.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteMaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luliilul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu_manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/030.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor.asp?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelVote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_catalog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byzq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemCollection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhcs123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sssj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timothee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joletta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rtoawww.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logitech\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PostRating\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petronia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edmund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lihun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_menu00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kangsoon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mostsold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mgcd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReFreshOne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Compress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aq123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Elog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slzs2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TXT_SQL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_mod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_const4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogxnmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guilbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ray\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installation/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stores\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/best_74120299\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conchita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n54jr7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip/MirServer.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_sale3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer_lyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HFM/Administration/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DMPIC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownLoadEditer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ballot_a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fankuiedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginEmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowForum.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derrek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mb_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_vouch_gallery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_add1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chongwuhuaniao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/phf.pp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Display\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyepm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/PageReturnerservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mined\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Competitor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netadmin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mammy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.sql.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beveled\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbcodea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wild\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marigold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiancai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mehetabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenggu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pornpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh_word\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java-sys/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OCR_A_Extended\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminerr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xnq962129\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_Hot1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/mypins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewhistory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id_rsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/admin_login.asp88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/WS_FTP.LOG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigblue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sybilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coyotes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/tcsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftjhghh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinfo.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/snippets/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tymothy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_flfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giraldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2ccc.com.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrows\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdbgee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoadShopPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jammal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsmpxxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soldier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmgj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor20/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DaoYou_GiveMe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/2503.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaofei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Members.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/test-cgi.tcl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataShop/datashop.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfusion/cfapps/forums/data/forums.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celinka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lez/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isaak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDPIC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirror\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-wjg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~lancelot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz0606.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_reg2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transformation_overview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vgo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwbbs5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wqwqwq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tasy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop3inBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odessa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duba_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preview/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houstan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jodee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standardcode_zjvnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.ibm.servlet.engine.webapp.WebAppErrorReport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phyllis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_typelink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ximenes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradenotify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyber79\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Caiming1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesbian/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attack3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Config3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/finger.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robenia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysphoto_delall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/eadmin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brendon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listAllaaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_jy1001/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moselle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmjpmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/move2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getemailbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kudrow1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heike/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gusty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mygacportadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aj526\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdminGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youngd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cycs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdf_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftDownShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveworkzn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_LookLendInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuyue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godpan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbbzxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/con\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_fk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/_notes/dwSiteColumnsMe.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/xzq_4.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_guideSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uuuuu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/version\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchproduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsLKJFowe1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3q51\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdunion.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dghd99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_Upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engage_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RootClass_Menu_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mychannel_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdjll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sql/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Psaveanclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kennett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzj2223446\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfsj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discjockey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeramie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_guest_huifu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rutledge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RearWindow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upgrade1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hebert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/71X90.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulo/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ismael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imgchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exec/show/config/cr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beifen.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affiliate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laofan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Menu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengchuixue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roderick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PUBLISH\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuopin_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/perlshop.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbywjjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solutions/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserAddArticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eshopcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ListingTree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_agencyall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addfenlei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nyssa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_LableBackUp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_masterset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaptchaSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/db1.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/7803.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starteit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhcp_kz02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hymen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dantiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/map_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.user.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bell37\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_gimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyym\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyFav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_c9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernardo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ViewTemplateContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalogs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/upphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nunu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osCadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/55/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_chms_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trust_score\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh-tw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slapshot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gongye_Zhipin/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roqkftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_publish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/AddressBook/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_awstats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginflat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Accounts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augusta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skrunt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_Tools_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack_weather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_show1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thaxter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/guestbook.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GLYCERIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpaceSize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hywindow/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ale5xan7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BigClassnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer_save_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browning\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JsDell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminzone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ArticleModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desiree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManagerUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkreview4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.bzr/README\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amalle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_qcomic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8QQCjb-JF.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tzcy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Resume_Mode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BIGTRADE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy_promote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_AlbumUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Book_Info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaseList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagesent_submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letusgo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adriane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_picture_Upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamezl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tornado\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fonsie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LIUYAN702592\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_eat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrym\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Safe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELMEAL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meijie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chan_Const\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/write\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/126bqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decrypt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taztaz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zebulen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingemar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mimisky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reube\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theshit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmedit/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum27\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBoP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumBoardDeleteAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aw55tq8n\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janessa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mhavQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citypic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donielle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Show/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/titleb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trainadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issues\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/qfullhit.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/lwgate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorlond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_loadonline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Drupal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConsoleHelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nqyn321.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfileclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VS_Items\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/rpm_query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guocf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/souji.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_PartEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/croco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satelite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteTwoStep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/z9v8conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osnn185.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/award_AddEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog.wuhan.net.cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autosay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_caiji03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyson99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/validated/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sluts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkExist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onclick=\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_ChangeInfoResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/T3AdminMain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daili-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zlcg_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrewyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newssave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daffie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnfman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surveyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fayette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveuser1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdmmwdmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierrette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MEALLIST\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcmjydownreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver/s8mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8QQCjb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buycard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/2X26.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_SelectUpFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_ddpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addnewschk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/iisadmpwd/aexp.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CZK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sakou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_pagecute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serialz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FillCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heung-do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felizio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mlnk180.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baloney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vitoria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateadshows\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/table\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1100.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wesley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VideoChannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_push_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setfourm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwxxyyyy.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ticket_giveme_airplane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.csv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/field\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/ccbil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valeda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe_bmaq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qqcjb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzdsb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sporthistory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RJ_DiaryList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amateurs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo_sysadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contencrypt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/number\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_files/words.css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winthrop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ygkk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegChk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteEditFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eneya888/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/me\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/computer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/context\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_2/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/.nsconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendsitesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asa.2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bt/soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fredericka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanchon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewthread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftCreate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue_jishu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_ypdt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles_5679\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BakImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ealasaid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FYCC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhzh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/wais.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/.htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melodie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NEW_MIMA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqhao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avivah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_config_music\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_lx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caprice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buffalo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot_dabase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLists\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bilf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FeedbackMember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TcList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgqlwww.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Userpayreceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artemas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anallese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mjsxb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwjoin/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qigai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AlbumCategory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shellysheldon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_homepage_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scancfg.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toesman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WEB2010-1-21.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhinan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add_email\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creditchange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkk.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_InviteVideoRecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certified/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack86.asx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foxmulder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_recommend_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianjie/zhuling09.mid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AgioOnlineBuyCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingjiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_A.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhlj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacklyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbl019\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Deep_blue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_details_export\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/information\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genevieve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/music/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELkm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_editproduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/sqdl.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listzt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjames\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincpanel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/msadcs.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/yiuwekdsodksldfslwifds.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/secure/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/travel_01.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crackgo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogInterface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handkq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/look1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkdzp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_11/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereSamples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XinBanBen.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eamon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfk-face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i00k\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eden/crtt/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.dump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Hot1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commander\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemManagement\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_cp_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up/upload.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserPayRmbEnglish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Contact_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ketty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Thai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/xtadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/2X27_bg.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rdzw521.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clothe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class_type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxnews_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragonxu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hr_More\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genovera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tntn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dopvod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CityNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qihuftp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvku\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daogou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_usermanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaoji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KillError\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_plus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_id\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_companys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/channel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbprint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_New\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spirit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/credit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysteriousgg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmallPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandit2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeniffer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/night\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/price\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kdm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fremont\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_y\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_fav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_binlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bagwan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oralle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annecorinne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advshopcomm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsofunctions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Reg2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savesclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NF_News_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhllzf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/documentpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stocktodb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveredata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Teach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spellcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/tmp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nehemiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dialog/gpy_image.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhoward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqdd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_RechargeLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hlfc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shop/Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addPlan_records\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ordermessagebox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editxl3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sound\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu_aihao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work/passwd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Food_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spec_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexhome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookAllInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fee_detail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zskc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/id_rsa.pub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VT_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongxun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Group_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/House_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_badword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangyou_prime2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/entries/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyrone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wbeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RUXI1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbpre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pollpost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetFelicityVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shannon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zrspws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/crontab.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huifudata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llpd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/asp/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creatcompamyfolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YBB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unseen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person_education\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wsbhz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtsu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafaela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fly163_user123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clifford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jun7828763\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese/Databackup/DataBack.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zrqd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmcd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin_wai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jo-anne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteServer/Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expeval/openfile.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_url\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageshjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/connection.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czpt1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KeywordFilter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiantang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/CreateLiveCMSv4.0_SQL_Full.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/editor/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8zt.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldcup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_move\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_question_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChkLogin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendmessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateSiteSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pizza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_emoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thx1138\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celestina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maridel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c0dkqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/media.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DynamicQuery/EmployeeFinder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delzb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smartnav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5/MOUSE.ANI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/host\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bear69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brittany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Global.asa.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_song_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderList_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helaina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BulletinAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_shopxp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hildagarde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardstat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_website\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nemeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recieve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sucky2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaoyou/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_2_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydacc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp_bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trickydick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scandisk.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxneweb.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alipaynotify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEEME\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showbest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft/class2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elric147elric147\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chms_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Openobject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZHUAN4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangstp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akzymirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldec_corporation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20070719.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/padriac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cvsweb/cvsweb.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdmzszq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etheline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galleries/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_PointLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brendin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marieann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daffi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_list_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trainshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanhed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_count\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkadm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.yml.pgsql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_AdminModPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VoteCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feiku\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/tools\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/frmupload.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zreditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lust3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyMusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jslkw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodguy2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luyanji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pauly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fault\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tdabback.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silverbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_templet_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheffield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f3wpjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AcvToosv8.0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zimin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yramesorrosemary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qjrvmirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keshilistgb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resevation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_from_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Books\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stencils\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucillelucille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/Subscriptionservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tskc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_choice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bxmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/aoyunpplive60085.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/http_log_viewer.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memmng/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yamen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mercy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackjack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-authz.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dbconnect.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmw528\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjrj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbcb030.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pietra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/330.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matthiew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/model\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyAdvancePayment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smelly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cirstoforo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drag_space\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/userdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigfried\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BigImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myinfo_backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savetvname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/ibill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savefb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isnumeric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spunk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snow0617\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cached_feed.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyAssistant_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purple\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatrisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_privado/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Science\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mambots\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgzmMirServer4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_wh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyq888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/map.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consolata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jakie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nylons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comment_ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m079880j\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_myadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReloadForumCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ctrladmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gypsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WS_FTP.LOG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmr/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClearShopcart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/formmail.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zwzwzw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hersh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_Adv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_SiteAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckselection_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_upload_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maisie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tp2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TXL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_JinDian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/read\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managewg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dddd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Subscibe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/rencai.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderProcessorEJB/services/FrontGate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woaini.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Members.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admindel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.asp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h_rc_show1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Treasure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/PowerEasy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DOHYK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andyli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/icon/topic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suiji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PJBLOG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinglong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyprint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_add2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaowu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resevation_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cgi-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achatproc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvgja.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor2.1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editWork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berkley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dexter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbooksrch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dir1999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zsbs_cls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack2b.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulysses\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserAncGood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dotty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gm.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UniversityServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ur-admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manerr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_law\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Guest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jun/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Bankroll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ClasslmDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twolfe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accept\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/web-inf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_i_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonhard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PicList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robinette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personaddtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftChannel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcgj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pyramid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ads_AddClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/logo_post.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pthree_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coleman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bk1975\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_ggfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugibert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminDeptchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resources/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_toollog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WLDummyInitJVMIDs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/details.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adpjChinaFTP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rksq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_info_mark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runwizardlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunterAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyuser01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lauralee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free_job_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHARK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_Best\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web800\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FAddress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/Cl_CreateLiveCMSv41.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_old_Author\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_Move\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendnewmessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_shopxp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaymie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remoteclip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/dubo.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chairman00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_Pagetitle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shop/Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haohao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kehumanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jilleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tracey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frthomas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh08\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/_vti_aut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maryjane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleanore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Data/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guozhao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_indez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/1X29_bg.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvdizhisave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bama\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q1w2e3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyndsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ax.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php_my_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dayi_data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/upload_5xsoft.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mingxing_Meinv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musicword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/refs/remotes/origin/master\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobyna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/xiaofeifuwu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5daxb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiadong7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db_backup.aspx?action=BackupData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_digg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheilah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangguan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mianfei_Ziyuan/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_FsoFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgmorris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/44.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcmenzhen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ShowPurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errors/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frazier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserVoice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReadLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profiles/testing/testing.info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoads/cgi-bin/env.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_song\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys_Oper_Log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replayok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web-inf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paimai_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ario\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jswz_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao123xie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/ybb/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mellie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prescott\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Portfolio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BBsCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjhzjh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databack.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banneradd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/index.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tel_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaelan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ultraboard.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zenithpumps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alejandro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qianzhenhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Salinas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Itemcopy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ysjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PORTAL30_SSO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/20712.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandwidth/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.asa/lbdate.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ticket_main-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downledit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_foot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmx-console/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_email\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josepha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renato\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nivek55\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sRegister_Success\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_singer_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhcp_ldg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xever\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bx6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/refs/remotes/origin/HEAD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rightrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teresa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editstafaddressinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/statsconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/baseinc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LogfileTail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.asmx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rulez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManagePage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys-admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_archives_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_xzlmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckcontextmenu_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsodelbatch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marielle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetPassword2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/label_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bucket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wordpress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/new/admin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guglielma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_util\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfileother\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwordz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jungle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/konstance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ilogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thacher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/secure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinyue/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_sqlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_faqs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flink-add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamesa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu5920\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clayborne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mischa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MODIFY1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcquery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_qz_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/girl/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhy1024\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/te_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Waterbury\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hnph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_include\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_NewsCategory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/succeed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wujianqiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestcn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicolette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puewwwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tehui_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banzai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21722.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newinfo_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jumpad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bibi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jitems_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog0039\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj_dealer_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/else\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.test.swp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/_vti_aut/dvwssr.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niqiuping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhongzhiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbmkdddd.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haskel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhyasitemap.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy_longeat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3445\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyrano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdviceManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hayyim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explanation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allegra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilmette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downmix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_managel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerhard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vrdemirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBsMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/chkadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminpt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ljih1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_toplist_lastpost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_createCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/2008WHOL.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_fun_funAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyResumeWorkExperiencechk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Paperboy3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/60\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbtx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jsinc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmvvxx.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/te_config1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order/order.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatriz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageproducts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoss1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok881foot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stefanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xucenyen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_denews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sctogw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CxList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/big1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmlencode2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l0ser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administracion/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testweb/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/upload.asp?action=upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pthzwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/soft_76.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AP_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grocery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leftmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySettings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/SimpleServlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dologin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chelsae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webyx-500\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjy650408\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setbuy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuzzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katerine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdnssql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Vip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dipta1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super_stats/access_logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hjkl99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safecheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Passport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kexue_Jishu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/Edit/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_index_frame1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/18\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/filemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tw_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs/reserved\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbx40\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jvxtmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/images/toolbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.key\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfonse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_VIP_YYZ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net/classhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man_know\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RefreshManager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgf731\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivienne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemAddNew3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mansys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readmessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELNEWS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor_v280_Free/adm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedcomm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/finger.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gertrudis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lesson_More\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/je\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phylis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmovie2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBBOY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teodoor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appolonia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paulita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menghuanzunnv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qingchun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cully\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserFriendMe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jykh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotel_IncSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss.cfg,ncl_items.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BestTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Remote-Administrator/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbookpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_about_v\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamont\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyAssistant_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfhjxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_house_fabu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_details_qbe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_HoursStatistic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_usertemplates_drag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liangzdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_sms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbserver/pbserver.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kyrstin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/svkaaa.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/xzq_1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database_administration/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cookbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrator.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/xzq_3.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_xxgz_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sale/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GoodInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vv.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Function_Page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edmonton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kp61ma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mymanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BigBanner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserDelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crocodille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fonts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DateServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuantu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_log/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminbdbur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Documentation.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_secure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialInit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynuwjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reports/temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/csh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/head_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wageinfpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariadne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headcor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lennard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CompareFilesOnline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserCollect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_VisitorList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nolly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleAdd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personaddrecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_body\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vince\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/-85860Bytes-whois-websiteinformation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulcie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tatum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hartwell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookpwd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lawton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signin.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/download.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SelectTime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cokeman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daishen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ids\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pzawzzz.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drmfslcd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberscam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delpr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zhishi_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ani/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kondom25\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SCart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/24\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread_child\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoebart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/export-demo.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminPHP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staple\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Al_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SQL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_Admin_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qrycom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redirect.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coproot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/double\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/nimageb.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateSoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INVITEME\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rush\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht08\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_Basicinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosamond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/55/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Demo_F_S\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nerita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_Consumed11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/store.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostingcontroller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adagher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_mygroups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter/user_today.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highslide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_test_rule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iuokcc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmmmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db1.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/dmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaijia520\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Video_Com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NotInsalleda.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teodoro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/putong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sygx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xchina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thestyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji_tongxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_question_modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgibin/rosjlwk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/international\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunyi1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottomtu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sayre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OPTION\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_UpVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goumai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwboard/wwwadmin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popnotice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Section\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joachim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DS_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/themes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meathead99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/memberlist.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checklist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mj2dyh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PROC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j77777\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabu_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_meetmanageadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gyvizheng.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/activitysessions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnwl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cn_Product_UpFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_4_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmtbdata/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dennett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_cultureNewsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpsm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brnaby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KiNg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruggiero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_movielist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southpark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/yusi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_icons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjjc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_tpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mauricio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyndia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipinfopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelperScripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/private/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alluser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cashsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup_gb7J3B\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Member2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usercheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpfcpf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/Software/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadb2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CompVisualizeAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyfnzz.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/27445.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getAnswer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/rsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archiv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/looknotice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_a_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snoopy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjzok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Statistik/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sucks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/enivron.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shchjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wainwright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckstylecommand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_screen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linlin520\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswznew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_gsxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JsCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wordWindow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/froggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HotTopArticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi/account/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrkgroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raoul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ticket_giveme_choochoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_savenote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/korney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/achg.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_url\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_Work\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditorNet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwjones\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshop/logs/ck.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egypt31\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_admin.aspxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlcz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzljs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alanah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_youku\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aveline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handleyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tags\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NjMap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReadBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UnRegulateAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djgabbab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Message1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4_colon/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imogen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adddqmod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nlgcwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangping_shjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/para_extcss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_loginadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-content\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/table_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_DaysStatistic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepillo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacquenette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_aspcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_upfile_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djplay_rm_lb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8000.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maighdiln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/z9v8zf14_cn.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iorgos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_ziduan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikidou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fun_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newzz.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yy5520\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daguaiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjj77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_review\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqladm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemModify3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_msing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/album_xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbxm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ActionVipCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yanhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htjd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.pl.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mendInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/nemo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjlql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SMSReceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldtv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zzpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuchu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafe/cheditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhoda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonsai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administratorlogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Protuc_Show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shichan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorcha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Edit/db/ewebedito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/market_write\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsmanage_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodolfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/cfcache.map\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeallsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reagan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShortInFo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedikt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relateshopex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin/LOGIN.GIF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Create\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowSupply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd631_angela_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_editvotes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myxwindow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lurleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acctman/info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaowu5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formslogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtaforms.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rl740812\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faydra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDFAV_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Asp_Html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crissie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_Free\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anatollo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resevation_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdav318\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insertImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mzjd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jones\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvinia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lauree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danyelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaowu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_b2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leontine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/someContentEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yevette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminwish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfkc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/w3-sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girlsecret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_News\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/admin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruybmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rori\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghmb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwordlist.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum23\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shchtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/direflashfxp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customavatars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeeeee2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/logo_pic.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fredek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LeaderView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_s\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smooth99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_export\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgifile.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowArticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allyce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wait\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckpanel_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin/admin_logi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fmuzwww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suesec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagegallery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/0791idc.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminJobspb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_guanli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/securecleanup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigismond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/issadmin/bdir.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounting/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moppollpost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tg20_cn_cj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/createHtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genevra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fulton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddbClass_submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piliang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyatt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net/classhtml/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addgjok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveCity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdatePrintColumn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maximilianus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckdebug\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p0o9i8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gb_big5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chb0813\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slp3996\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vaughn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConsoleHelp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Exchange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Eras_Demi_ITC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scheduler/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_Banner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpanel_file/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/like\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raincry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editgroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangchanjiaju\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stores/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingsley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8pw.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baxter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_proclass_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertrando\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estrellita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/JAASLogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glanz1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9knejinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/westies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bizdb1-search.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dislist_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gayle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloriane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_GroupResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak_step5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pagination\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trans\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotrod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigismund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarcombo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemAdmin/eWebEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Olympic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/getpic.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teresina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/wrap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminRealm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_ClassDelSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skypilot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuideAgent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_submore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/individual\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rookie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jennine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stesha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/registration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/anacondaclip.pl?template=check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ApplicationProfileSample/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/AddressBook/servlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Holland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yj1017\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dotti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbertina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin_login.p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamereadmore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fzyjhcard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webvod.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home248\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Webadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableInfoStat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb-admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_blocks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2013/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianghu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FieldConst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lipin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irc-macadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_shop_LoadShop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_12/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sygg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pietro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netdiskdom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_art\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/train\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezsqliteadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index1.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjmh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roarke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcdtaddnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_datadict\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminconn.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_words\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzh108\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wynnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenggeKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hysp_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wischmann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Remit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_index_bxhs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mzn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_listlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/carbo.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver8.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pangmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depEditok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guitar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grapeman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idt58myd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgrns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project-admins/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bwg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toucher/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/didi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetici.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simpledad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjzl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_group\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asa.temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geturl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gui1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pubclass3_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0616.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hdw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addressinfpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johannes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/tuaoyun34477.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_r\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FAVORITE_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jennee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evangeline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysmanage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadImage1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasbeen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdymtq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemModify4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gothart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELV\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keshilistnk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gweneth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admini/HTML\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp7.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tzjw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHANGES.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girlandcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBApp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/number\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_hot5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csb1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nellyahoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artemis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Otype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangmuedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_13/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fletcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NoteList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvvvvv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/swfupload/swfupload.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freepics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guagua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LINK_ADD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/ats/logs/writeto.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_tb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janaya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leftxt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Myput\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_archiver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlrun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/themes/cp_themes/default/images/swfupload.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mx.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isidoro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mod_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_CaiWu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_plok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduqmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2009\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leesa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_shhu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pubmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_wealth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fzxlmirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uptxt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lju822\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arluene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_host\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frasier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincp/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DeliverType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Countlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_whatsnew.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html_Inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Eweb00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxwl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yamato10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iamhase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsproducts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iolanthe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers.csv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fictionfargi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzzjw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amateuramateur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_1_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/someContentAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowDiscount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/board/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trombone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chloe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lover\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isino/epwd/passjoy21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Menu_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pscms_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebManage/module/eWebEditor/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shipin_Yinliao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editqiatan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminbeta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sctch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mailnews.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bendi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveuserinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eod1802\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FLIGHT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8pass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_Elite1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arsong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_RecycleBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_specialadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qvod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viper199\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindness\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gst5927g\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girlz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loralyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheffieldsheffield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdahupfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ff6m8ns8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_eat_model_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/false\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qjyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ErrorReporter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2b.apx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xueli_chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_Order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/flash.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_add_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_pws\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quick99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/mole.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardelis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_ClassManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eweb/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo76\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wantsever\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_code_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmstdod.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/system/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domcfg.nsf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dir/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WCWC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/logs/refs/heads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHOWCOMP1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vision\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powerpc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_ad1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorry.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hansen69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/reply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_topicAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CGI-BIN/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000boy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq/s8qq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_keywords_select\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_AdPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_private\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ActiveVipCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo/Upfile_Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/wwwboard/wwwboard.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Getpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smokey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsgk4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elselist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massSend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAdmin/ArticleEditor/UpFile.asp?ActionID=Upl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdjobcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g8220441\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CheckSameTitle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver/mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aksel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_image/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.yml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myjbok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_gather_start_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AppManagementStatus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulcy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Score\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timoteo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memfavMX5k17Hnh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Heka_Chongwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Label_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persondelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepsw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/exampleapp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managejiangpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelloPervasive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osbourn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_select\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodsdom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_YeWuList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toupiaoinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_OutSendResume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/read/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel_show_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fy_SqlX\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cap_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/wconsole.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foodList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_addsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youmo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erdna1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/ctgestb.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preview_xpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/njb34\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~ofs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WS_FTP/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/mypasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8QQCjb-DJ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clementine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delphi/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mywupin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asendpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobsdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user06\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_top1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/marquee.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php-bin/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlevel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baggins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llksp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/bbsbg/pic/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxkm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/nemo/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delyumingsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckcontextmenuseparator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wreu8gt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jgqh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slipper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prentiss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Num\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wookie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_out\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PublicFolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinsett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agent_flow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xkvuftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caitrin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NF_Unnewsincludefoot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frigid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_note\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchdetailchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_onweb_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_event\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t78\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/questionmod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loading.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quanxian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_house\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cilka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Searcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyMessageDelBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laolang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/gpy_xhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/global.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/test-env\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.asp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MSDNLibrary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changelog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onrop123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/conn.asp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/z9v8authors.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShortBear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminright3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~lp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaowu7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckyou.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alessandro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nogo487\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viewsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xy0109\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver33.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanagePicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktablehandler_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check_Sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vincenz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/idq.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_gather_start\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AnnounceDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bachman1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_TypeManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/37\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/display/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KuaiXun_Images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personinfpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fromurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trivial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_3/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jidiedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyanLianjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lqpp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_promote_add2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Base1A\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopadmin7963\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronalda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearcherQueryPosition\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/care\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Security/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kriste\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jintaiyang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_keyword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_Consumed1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Label_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilysa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catrec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_New_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbaallstar52\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huakuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leroi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_USER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzhuang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h23087\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/administrator.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQonline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymsg_hand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruixiangoa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumCategoryModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdoc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives/date/2007/07/01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrativo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Other_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t70\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MEAL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SourceCodeViewer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rainer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reserve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/san\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marylou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dftm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hildegaard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picturez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leming82\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amxw777.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pratt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoveNewsToSystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Specialupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rickie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_login.aspx?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongdong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vip_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Forum_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deltongtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snacks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicndatadata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacobo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kentaro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/flexform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/out.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icoming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juanshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LockUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messanger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese_Eng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link_reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guthry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wu6627\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pzx0918\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_ClassAddSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_SudManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shehui/jiaoyu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maingl2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocoon/samples/welcome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merch_load\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findbao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin500.com.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_ck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kyoku320\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clyve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ViewNewsContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yangzhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prod3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GMCWOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcards\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hounddog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deena1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/4383.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groupinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemCollecNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flink_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/44\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxkb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0607.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynxm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maiyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paboajuma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/fckeditor/editor/filemanager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzdw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LIST_BUK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iaminthanks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserCheckReg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_uploadfile_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ShopClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxfb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynnett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flink_SysPara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sngx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/PowerEasy2006.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/responder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/images/smiley/msn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsEditer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qqmima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Repost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maxiadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/law\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ParamAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yns_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_photomanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_script\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_delet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onofredo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_OutSendResume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutpla1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autoban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_tour_fabu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MF_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaotian_qq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KqLeave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker/aggress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Un_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminAboutusAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManageAd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pfdisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_hotel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sk1207\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browseinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemModify5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chmhb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwr888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8731397\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boomer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminsrch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asps/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/README.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leeland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vachel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Electron_Doc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zips/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/membersx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodonline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slamdunk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys_Login_Log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transformers.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuju\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/platz_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_fso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Header_Mart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theresa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/best_vote_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlnet.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hayward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arleyne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pagecmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NetAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_1/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wpdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.inc.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linksaveedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dpbltm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookadm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl-6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marisoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/championq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Junshi_Guofang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/download.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admingen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SONGSEND\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suisun1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaurice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clsThief\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dagny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txtlink3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/busadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daiy223\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncHtm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gameport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powereasy4.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/40/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helenelizabeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iLog_Templet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epocs_800001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetSysParaAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delzhuce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Search_Diqu_Chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gjoinsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deppfeng.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Addons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ping-san\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index_Video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myhome232\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebTrend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/st_C_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haydon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdvertisementAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecookies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/status\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webyx-wx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/packman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyjh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video_geturl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anitra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaquelyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f_han\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boxover\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/90/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abroad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbumen_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kennedy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flvdy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm-89\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marthe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mgr/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memcp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typeedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doedituser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_recs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_adsali\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VipList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialProducts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CZK2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shchtypeimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/lb5000/leoboard.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_msg_xxgc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letsgo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/au29to\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data_mxsky2004/i_mxsky.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reynard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/script.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pansu888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lckd28.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rexue.txt/xue/rexue.txt/rexue/rexue.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldridge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almeda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Part_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbav55.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krte22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morgun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clywd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EXIT_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/callmemac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anallise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayOnline/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trainlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysbackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/us/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/potytee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenlong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desdemona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bygs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matthias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_view_host\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiuzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manuallogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_auto_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brewster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFiles_7649\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.passes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiop/ClientRecv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restricted/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pantera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recvsm.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfjz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memlogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alyda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBA_lanqiu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fee_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_food\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdvertisementManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feein\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjjjj2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminDept\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qklxgc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jidan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AddPassport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gimpy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/upload_file.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WhatsNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_left123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hussein\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newstg-save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/static_js_ping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vodimg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HS_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tech_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_cp_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banner/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_member_hide1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_mail_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgnvbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_ff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expo_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruce1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receivemessagelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgdn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crows2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beileimulu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kalie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eloise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classsold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminAboutus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billbow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Js_Sys_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nodrog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyz1975\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listerror\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyplove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modestamp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gretta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_uploadlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbtextbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_AddBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FengChang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddressBookW2JB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anestassia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h_rc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/WebSphereSamples.YourCo.News.NewsServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/20167.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/typo3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_url_mp3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cp.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365.wuhan.net.files/entiframe.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/counter.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok881set1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyhbkjxxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syhgtg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dengjuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sondra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELzm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elyssa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t73\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Xinrui_KuZhan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhizhaorenzhen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyFavorite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dating2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_play\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_ClassAddBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tzfx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mohamed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/cgi-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigclassset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WEB-INF/web.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Publication\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godfathe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HUASEE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserADD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuangshi/zhengzhou/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_inc_indexarticle_pro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admingg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shujubeifen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowPage2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Data_base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m58xqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjcx/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhcy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tristam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jplm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zw0126\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common_emoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trdpmirserver3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0Index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boysecret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ezshopper3/loadpage.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_login_easysite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_xxgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc_chat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menghuan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picture/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulywlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/girl/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8nnd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/max\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangshanggouwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petrina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserArticleSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Especially\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drugi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecilio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Galv_Fagui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spaceupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mailform.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plantodo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayOnlineReceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzxxjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainsley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_login.aspx?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppfzd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gscb7777.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lemon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbgx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vwreshi.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shepton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newxzcn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_valid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bnbform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_word\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0e\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_collection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sansan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlspjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/browser/default/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/getdoc.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxtj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hackett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wantuserout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upClient\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TempTrans\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youthclub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postgres\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MuOnline1.02.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_New1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DjSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lib/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/_vti_aut/author.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hooters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuqian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip_configs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkStr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_confirm_hx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newhome/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friederike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysCardsadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.mysql_history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infoadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CNBOSS9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marchall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/zf14_cn.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pkdv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardNav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pornography\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuySite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwe3581295\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lrsd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incentiv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamewjcp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_bestcom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzlgs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsuploadimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyejob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/page.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_clientsType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbarspecialcombo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GMBOY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_Start\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_guanggaoIndexImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaynell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raphaela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pppp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_passport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenmo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oradata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/31\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eygsjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opt/netscape/suitespot/admin-serv/config/admpw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huntley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diaocha1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Del_email\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonnah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_yaopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_edit_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martha1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/z9v8addsfedsffdsggfhhdf.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paulo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register2_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_replaymessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orsola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/converter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelloWorldServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_green\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy2buyupfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfyzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldec_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michaelc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kidex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sylvain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_Master_PreView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/super\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savereannounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs51\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_news_category_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzfjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/Calendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roseline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateProduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadnow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SendGroupMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sukey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/non-cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statement_txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mendel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wantlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reeta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shmas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylsb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ozzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mkoutput\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/al\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanghai32\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fee_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminFlora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/Editor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Searchfastchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gsgl_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_dd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowMagic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaa.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjggeditchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqkfbye.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_temp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person_register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgeanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jugs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/385cqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Forum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHATDISP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_Return\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hspicehspice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Down_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/query.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/system\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getcard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murakami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwng_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OutlookMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenhappy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexDefault.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winifield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classes/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dummycode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveshjiainfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pookie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedMgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaomonv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Trade/Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor_v280_Free/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/may510\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juditha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petmypet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wulin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingpin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tradernews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegPassFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastadd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.vb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WEBICQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutiupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13391.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cckdm.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WS_FTP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brooke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_vote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_config_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lololroger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_grade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natasha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osborn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/javier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajcounter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_4_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prototype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pmmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/placard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/sqzc.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maingl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t2518\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citydesk.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_ztpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delcine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emelita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PartyList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FileImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai223\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jager4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsjsj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/qingyuan.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tassie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maryann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy2buydw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/nph-test-cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardJump2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avatar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/html/developer/ch02.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Loginbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faxsurvey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FeedBackList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jqj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxsnowxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_engines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gd108\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestBook_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FALSE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heinrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Char_board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nagios\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caijinggushi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex112\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izdubanben.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amalee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gigi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_info_zxjc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_shopcategory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andybob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_market\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/185.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iwatch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photobar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top-2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabbits\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AdminDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kszy2/cx/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prohead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/girl/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ediva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_fsys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certify/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_picupfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/con/con\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerrome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d93ilog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palmer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365wuhannetcn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vallie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunvalleyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm@in\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cullie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/snippets/evaluate.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_googlesitemap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geoff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newedit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msg_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlboro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armenia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibit_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/13846.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhongjing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/lygofa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Photo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ypmc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincheg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plc/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_JobBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product/manage/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mod_thread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0s\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/css/bbsbg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/netbilling/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pappas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/influential\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiny_mce_src\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qttd333.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Recycle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadbbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yecpmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_crons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dvbbs7.mbd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zipper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snsu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanderson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan225\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~sbin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadminbreeze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_new_ad.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elisabet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Userlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_enurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_tsfh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Specialall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmlw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Tent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcscbannerPicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldec_vipinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/using\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/activitysessions/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/command\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_VideoEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pjjhqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dns09\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikaela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donalt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Rencai_Zhaopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_siteset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkkkk99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dacey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zebulon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editjigou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellanca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_member_hide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hpwebjetadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8card1/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Message_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_config_dbpath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmomh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trickydick69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xliuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spensb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teddi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.files/logo.aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikiko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maddalena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liumang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mosh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broderick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tully\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/include/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelFreeLable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Friend_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubba1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adcompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damiano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/hitview.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tpgnrock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Map\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhangyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wowo123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/JAASLoginservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LocaleJobAll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TravelSightImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/db/address.MDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophronia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_return_emoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/_vti_adm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumBoardJoin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsaddd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.aspxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bijiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teddybear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbx529100\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inglis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_change_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_main-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/2/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_8da\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AutoRecieve1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_typeunit_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artcn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YouKu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/act_com_name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_Default.asp?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cracks/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenlijuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_talk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzwadmin/admlogin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consalve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabbitha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curtis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zonda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip/CreateLiveCMSv4.0_SQL_Full.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgsl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chronos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admininistration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_menpai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alstro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modimo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FoodTypeList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerhardine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man_warning\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Plus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setRec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lang_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaufort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joabcqsf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.php3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SF_Sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_selcolor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_dedetag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz438f48\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowBBS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durante\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gstyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Jobs3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/together\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tdhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/filemail.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kqcymirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haipin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_plus/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Center\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michealmicheal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woshiliumang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezmeralda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mlm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserGroupAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frankie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/stats_old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscodeztjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_xsyd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valentijn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guidelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bilbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_collected\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_mybbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catchfan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveMend1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/read1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teodorico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetHits\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/towny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viphtm_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9999.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.asp;(1).jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Picture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/24006.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lectures\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rorie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sql_Function_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_AdminFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_pkexit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeeeee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/logo_zhidao.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephenw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_84\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChinaBankReceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELDLCS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mortie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gertie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpMyAdmin-3.4.2-all-languages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowJsPath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdbrief\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jameson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/middle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crista\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/521.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_conform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evvie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ziyuan_Xiazai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddressBookJ2WB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nfbm-files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fc_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowHouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salomon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yancey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jp_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GreenhouseEJB/services/GreenhouseFront/wsdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnibelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CountTop10_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yankee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obth521.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mf4531\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hksxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dildoodlid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imtheman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error_log/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huanbao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavinia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greggory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChkReg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImgResize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/Soft/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classdis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongboshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.txt/s8qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_HrDemandEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_Default.asp?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Install\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_loadtree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrietta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/store.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rxq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aoxun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syssite/shopadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantastico_fileslist.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lqblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/flexform.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppppp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemCollecSteady\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alameda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wqur521.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_guest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deletemyresume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_old_Auditing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hannibal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wap/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tickets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmailadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmjyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bhan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diehard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/11603.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medals_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rollins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigismondo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/federico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fmozilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natassia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha_table_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lauren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reginauld\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminAboutusDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanvisitors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpacePhoto_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClientOrderManage2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmins/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bearnard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/aolinpike.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joke_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaoshi.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rngp44.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderFeedback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laureen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy_db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mddtcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pdt_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dddddd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgrj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iwantup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fine_service\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/power1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferdinande\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycartconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kfuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbTextBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdvUploadPicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ownzit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nf_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjlhjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yorker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Function/UploadProductPi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckurlparams\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calendar-cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hunyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HXMYDATABASE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katrina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivy0802\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CityMap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleanora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boke/Edit_Plus/FCKeditor/editor/dialog/fck_select.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zerk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignaz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolyne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expressions.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpLoadCls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_Addons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waylan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maryellen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongji/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farleigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/two\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456789/123456789.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gov/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_gg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Catalog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lllll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/series\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EmployeeAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bliss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dagmar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Example\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spaceindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lissy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s90\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemap.xml.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giveadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Q.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_10/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/money1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_Fri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KS_Data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web2000/oor/content_areas/authorize/auth.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chewy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifyfjpr4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.net/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack_rollnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SUSHI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/emurl/recman.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tishi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wap_Board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlwupin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_blogstar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onfre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dffe325\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Domestic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/da\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lib/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FINEHYK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8conn.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyndy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_MailSend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/june\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baitao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mail_TOP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilliard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/shopbackup.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popwindow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovexueru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/scadata.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bynews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holidays\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Data/LeadBBS.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/college\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/techno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gelya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TBBS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbBOY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curious\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~dmr1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylovepang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Technique\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serialz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_12/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmcw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tzxm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgt96870\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francisco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiop/ClientLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifyadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chengdong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebayadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanyue2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/no-such-file.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mopleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowArticle2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/789.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moshuok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apps/trac/pragyan/browser/trunk/cms/modules/article/fckEditor/editor/filemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peiper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/pop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.sql.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HL_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_ClassDelSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/members/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JAGADEY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derrydry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmallCategoryManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showliuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/xzq01.JPG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homepage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adddq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpaceLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffioftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diqu/beimeizhou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/z9v8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_typelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statmonth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_uploadfile_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkhc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dawn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysBookRead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Edit/editor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doralynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulpiano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propel.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website09\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipdress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paullebo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disperrorinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_infolist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bomba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/userreg.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lenka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mailist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Ask\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GreenhouseEJB/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hx2.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qiche_Qipei/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggao_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8jinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/ultraboard.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polesheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyy6qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkapache.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum18\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/styley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/news.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zqzqg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otjb1111.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whois\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damon2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/braves\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addtodb2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdfzb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jishuang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chengren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suckme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masingle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punkr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_addfield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_say\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_cp_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heip65_admin.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnmish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noshinecompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_productsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xqipnn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfasdf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poppy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/stats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ophelie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filemanager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhatmirserver11.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinmo14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percival\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sliding\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_boardmanagesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elric147\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CJ_Conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserNewsDell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CGI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/half\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osmond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy.30\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arizona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdwlee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config_rglobals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asendmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/T_41\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaylene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gottfried\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yixue_Yiyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex53192\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ports/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Seal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ApplicationProfileSample\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/session2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/2/mm_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spzs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemoveclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breaststroke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SnoopServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HrDemandAccept\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqpets.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqmima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirabella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Path\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newmusic1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxjxjc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maxim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_skin_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deluser01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_AuthChangeUrl?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scruffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guinna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tttttttt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimberli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanlinlin112\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanagesavechk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_topset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynnub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveAward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mellisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregorius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClientScript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/html/cnf_gi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aileen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frm_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bb-hist.sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wombat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cachemonitor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntfdjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xampp/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_SiteInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glynis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sknippinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awstats.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beitris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uppicture/up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_em\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jayden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log/active_users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhjjw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HitCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminjsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/31X134_bg.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf45/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angeli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsocopy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frmLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurits\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftDownOpen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erminia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danielf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esiInavlidator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addurlok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_vod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs815\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/datebase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shandeigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ponkylai790824\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnagflow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taylor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dtoblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifysk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jawa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/host.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsdelcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjzkl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juck39\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/upload/php/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shurlocke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_xzlmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dgadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mytag_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/shehui.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jorie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuff/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhjugjyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bissjop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/show/gameportal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdaddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bogart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savesmusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phillie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jonas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addlinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserArticleDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odypmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarhead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xbk2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drucie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Edit/admin_login.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philmann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendfriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckUserAbate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_niao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/logs/refs/heads/master\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.php/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_typesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebUIValidation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_upfile_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/svend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jswz_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martguerita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminConnections\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfdgjmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index2007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topbk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/97\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiadong4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ointo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JJGGADD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_soft.aspxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_diary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/membersedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canadiens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloglinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amalia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~pre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enemyeffects\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.asp;.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PortlandTrail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_paper_pinglun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeSans\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexlabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fafang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Mold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveannounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Collection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinammc_data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6661\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playsong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminManager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okcl176.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrderNumberRule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/htgrep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mon/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaaaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/snoop2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/changepw.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPXspy2.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/ultraboard.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yld\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompHonorBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.pl.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoveUp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/xiaofei.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plus_Tools_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsgk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paradise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfusion/database/cfexamples.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RSwow.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beltran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myAdmins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noallow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_flea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neils\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uproom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bushman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_photolist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowProducer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opaline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Homepage_Upload_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matilde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lydon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imgfunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timesb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_UpVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/92176\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UBBconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaiban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nosyttyson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Expansion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jscripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylvan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sseccussuccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aHR0cDovL2F1dG8uMTYzLmNvbS8=\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baidusitemap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Help_install\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords/msbilllog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zollie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francisca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flexform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Show/Back/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haige668\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_fckeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caipu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.tar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giavani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8QQCjb-YXB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.userid.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_lm_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msaorao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leanor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addjobschk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicolai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youbianSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fieldhockey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmr/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfide/administrator/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/66X26_1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login_From\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_yanyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.htaccess.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zp_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewguestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Delxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defaultHead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Careate_Template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/connectors/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditEprint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delcall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cg-bini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_q\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KS_Data/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_PassWordResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/developers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxjiaxiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Auditinglist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_writemsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TakeoutList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fawn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aupload/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eagles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_toHtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onedawg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyUSER03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katherina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geralda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linwei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xczphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Startup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francklyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teenz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melisandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atalkproc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updata_Psmessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administraotr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forever\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/union_vnet_goto.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_RepairSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qctwcs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsDemo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft_ElitePic0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metropolitan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearadmin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminmember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_NewsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katterr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/nemo/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminemaildaochu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_4/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picposts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangkan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziylh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzjxweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/machblog/browser/trunk/fckeditor/editor/filemanager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ywof2mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_exit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_pkmain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oddyMirServer5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilllie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admindel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caleb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ui34upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constanta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorndike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxfls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Junior\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personal_work\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ekw_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelloWorld\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewWeb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile_user.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkcomment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadrot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPaySend1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jy9gjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathrine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/aglimpse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certcontrol/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanfield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaijabcd.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deloneorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meishi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_from_db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/con_auto_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjfj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/young\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumbz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rlogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WOKOU3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mmstdod.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobjoe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/chongwu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roomimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdff2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siouxie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emelen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blank.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Classroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KingCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CounterLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandtr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yanxiaozhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OkJicar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinghuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_pkinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_www\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/_vti_cnf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsdesk.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arleta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/day5datacopier.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifypass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenshouo11k\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/UPLOAD.INC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gljl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laural\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzlimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haohj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/BulletinBoard/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tfdxmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showdj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plane_OrderSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htfb_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Character\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kes/Admin/Admin_Login.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popredate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuestArea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdsClick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ToolsBar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simpleFormServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wfun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ykfumirserver8.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.php/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/songci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.csv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/now\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easy_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_templets_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Copy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugenie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincn2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prod1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjcx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbpath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palermo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cicily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivu520\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_usexv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport_client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dayrepshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyOther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hspice1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyDM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xe1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_chms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/food_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableClassicalNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pawan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianmeishi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right_bottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/songword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zilvia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/su0o8j\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxdamirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_czdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url_img_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_description_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binbin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/result\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rickert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/uploa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwwwwyyyyyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangxi2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateUserNongLi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianjie/images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listpics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yenohhoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/SimpleServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/travel_02.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsclassedit2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_upfile_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_sort_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5980\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wolfy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rossie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kordula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zapfdingbats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuliangtongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyanAndClick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/and\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_smilies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lessons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philadelphia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/return\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addfriend_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/progra~1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htpass-members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_ubbhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/authors.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memail/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GameofWol.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selectNewsByUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafaello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ho-chi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminforce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckspellcheckcommand_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index1111111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Beian_Show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8wow.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopper.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shdshdshd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp_xajob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leftmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfxkc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jqatweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.sql.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darcee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fso_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evvy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gouok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Delorderlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irc-macadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/nph-test-cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connwish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marquita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tests\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LabelIco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/filemail.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhcmlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolorita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/upload/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krqhhhhh.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default2.aspx.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addroomok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oordir/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pollyanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wfpfqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveothers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okcu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminright4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lotty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanyuan3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwsdir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obmijjimbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/New File.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Orderform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewgz5.5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/sky_bbs.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seeming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ireland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sayno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenlr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpg_mai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_zjuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarajane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Leader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/ewebeditornet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spaceapply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/Soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/dmr1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoadMod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assets/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerrine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sisile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InviteRecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/float\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/unlg1.1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashlight1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh1024\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmis/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LogfileSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderedit2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xbsbsxjzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc/config.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirm_email\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/femmes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_view1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserEditPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/articel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julymirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Review_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjqdhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BigDump/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialoguser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kcaghe.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blairwitch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daveta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sign\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mdb/data.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContentPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuangwai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alipay_buttons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/habit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JiShuQi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smtpobwq.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcmdcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desirae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/songplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hwAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsjl_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddAnun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falcon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddkj818\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiroom_list_bytype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat_online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Aboutusfriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xichen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Audate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/connectors/uploadtest.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fenye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.jsp/web-inf/classes/env.java\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nananana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncloveyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_default2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_VIP_SYQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yilao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc012\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_Contact\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwd3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfghjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enguser_register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowled\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yujie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kandace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/games/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj_dealer_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maddi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ksdh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/123.files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2010-5-27-New2453.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myazadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Gbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/Class/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongbao8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditLarchives\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youhuiquan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminShowxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rocker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlbumCatalogWeb/docsservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floyd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ottawaawatto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjpic/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_VideoManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UnRegulateDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/Web.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gary23\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynfkduka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~var\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chariot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorsten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/network/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirsten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsms/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MONEY4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_admin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgf123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchfastxinxi_chk_7777\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwkx/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_WorkClassbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/expire.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageCity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defaultcenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capp190166\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_viewthread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysDown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mozart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuo_member\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tehiro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyatan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rommel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuangouok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/First\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PLAY2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjfewr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SitemodifyOne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Headpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/fadmy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notacc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calendar-de\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corporation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingpai1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_cultureNewsAdd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserReport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/show/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao123.com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mchilds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lidan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jysc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ServerList.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addkmdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anne-corinne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/web-inf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Privacy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum30\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HrPolicy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rescue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ratt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sebastien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_EditVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Exif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esteban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_default_bbs_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/label_hf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_save_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhangyanjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margalo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourm.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtvplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/are/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NP_AddNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/17347.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_0ec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrator.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/text2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_add_poll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/Sort/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_room\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQCjb-HY.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenghuopinpai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FS_InterFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/introduce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polpmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/Images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckbrowserinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qjf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateCompanyInfochk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallery_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mldq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luksmirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seral\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infouppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_AddFanKe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iamyoufather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetAdminPassWord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon/logon.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classmovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almeta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/646\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kickass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listtrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qixiangcui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbaf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft_Elite2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebManage/module/eWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senddata2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rudolfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Channel_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd631_angela_session\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app/config/database.yml.pgsql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h123456\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/files.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dghd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GoodPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Complain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop3Trash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm/demarc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian76\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htbin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raleigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.bash_history\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/editor/file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_bookzj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CollectionManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintools\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj_dealer_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephenie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeLable_PreView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auto_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_code_article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deljiameng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajfhasdfgsagfakjhgd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juliane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sailor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/My-login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defult.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolingleatheraa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/padraic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SVN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HomeDecoration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inside\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/at-admin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monitors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StockServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_track\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vittoria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mb_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_from_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/http.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Digest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowh22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Momo_Random\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g16t53\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReviewTF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elementcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hollis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cook_eat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_PhotoShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personfind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopAdminn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminShownews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aStatMisc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vkro1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckcontextmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hettie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewFile.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_left0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvzw108.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s82007-3-6-QQB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narf123h\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxrtj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutecounter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beifendata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_attachmenttypes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oreo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analiese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktablecommand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhuafangb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tqGetOnlineFlag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updata_Searcher1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookErr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danpu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/dmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sashenka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/typo3/install\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/details.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigvard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm_marry.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_skin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/upload/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.aspx?action=upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateOther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_emot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_ctrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_PublishPart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqjp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hcz100600\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keefer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelpEditer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toshiakitoshiaki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80sec.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn.inc.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_mygroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xnejx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cirilo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difangfuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaiWuList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duilians\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/admin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horses\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Passwordlist.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_SendMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_promote_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lizzie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0t\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd631_angela_mm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang/shangye.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Post1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_templet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/id_rsa.pub~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageBrand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/womaho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELjz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobchanginf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demo/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htpasswrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_addp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/look\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiesheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbbbb99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delevote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_lounge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcigqqqq.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwyneth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chowe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfusion/cfapps/forums/forums_.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log1n/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helloEJB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2012/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WAOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_AskNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thd1shr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jing.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priv/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careersave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_promote_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDJOBS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwdelcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UNIT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moyra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purview_default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxyzh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userDefault.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Print4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfiles/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duijiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bat.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saidee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willy59\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/shopping_cart.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/bbsxp.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynqeaaaa.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenonah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emot2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gryhound\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/htmlscript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addyqlj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/store.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enriqueta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiiii2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huohu.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoshuo.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_insert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bimmer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roseanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noclig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEQInstall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perrine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Andy1955\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ros\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kymkli.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etc/hosts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zl_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roseann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SexandHy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/80/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user09\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADLINC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brinn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackietian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_youkuz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ptwo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transferphotoup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_JobOption\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveOrderform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MagicQQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gutou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumpw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dcforum/cgforum.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrysa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Oasis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jabbers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/PowerEasy5.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/move2up_txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_Works\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banneredit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WarehouseWeb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_logAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoads/cgi-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_c8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_record\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpgl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/1X31.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminUserModule/AdminUserLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_CheckReg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_spec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_qy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/logs/refs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Clear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanyured\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyResumeJobseekerIntent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lq811826\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/liangxiang21458.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funlib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pt_BR\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateLiveCMSv4.0_SQL_Full.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PPEditor/asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilberte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gavin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scroll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethelind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanghai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuhas6km\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iposs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Message_Send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_keyes_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan_fenpei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8sex.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Special_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddNoList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinglun_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/166.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mortal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aa.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TextFile.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.inc.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epoch/dbmpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_softerr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findlay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joellen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safeconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eybt1mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WOKOU2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hermia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/webwho.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlspjx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tu2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CpItemList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SavePointToAward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_Index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mod_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iguihh.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solaris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wjlaweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lib/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/nlog-smb.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delpersondlcs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats408.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backdown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invoker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homepage_sy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navbar.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luckyname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avrit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anvoanavo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kinston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaylor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TagTables\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stormy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papindeximg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ViewContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mickey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_HrPolicy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aloisia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monitor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lionello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ErrorLog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminnorthface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jonah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shenqing0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhifu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sienas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PersonPhotoList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor_V280_Free_sp1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artieartie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vqj9qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Userlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henrietta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_VipBeg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pics/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kylen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowForum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8config.inc.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Equipment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halimeda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/DownLoad/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zcfg/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emailorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vymtmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebResource.axd?d=LER8t9aS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_LaoMiMenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_softrec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/enc_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yanaton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifypr2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seo.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/policies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzivhello.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/lb5000/members/system.cgi?dir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_banquan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Result.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/os_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceibs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fybjbz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xkemy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter/user_log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_upsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honeyyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administracion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thersh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddFriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smtp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquiry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nosaj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delnote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topics/aienupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_export\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coraline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supersite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjhgf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editors/FCKEditorV2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typo3/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nrmcdata/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDjobnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jigou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdf_pages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newarrivals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aienupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_batch_up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mahmud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.woa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free_ad_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Js_Free_Action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homepage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doassess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfpqmm.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koenraad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FWeburl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nationx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckxhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mojiezuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PANJUE1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarterback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heaven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linnell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebApps/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangye1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocoon/status\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realgreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_reply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frameleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/langs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DAIYU\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuque\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_config_isCan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/railway\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lockwood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft_Class/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_SecuritySetup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxtdk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenneth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/lb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chilton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_caiji01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MEIYONG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_floater\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lidia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Culture1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsystems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beanManaged\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Bill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowClass_Tree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/29333.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadtidef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq/qq/mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AppMan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/eWebEditor/asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elisabeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templ.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muwh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/inc/conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/tpgnrock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4741qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lftsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_selfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_comm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winslow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manuel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_chklogin.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincn2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sale2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsad4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ever\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Video_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaitlyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/15388.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_PhotoDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olbob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JudgeRead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Hot3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forrester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Beian_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestsubmit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EmployeeEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/console/j_security_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleManageSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flashad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliyuan/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zhishi_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baldwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserDocument\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_venad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/napoleon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smilezhanshi1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserFiles/monyer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upprocess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowPloy-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edeliot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initcount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/six4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_footer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Education\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_xsph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_info_update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/Admin_New/default.ph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index_Pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youyong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3210.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kteditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_index_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/users.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_info_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_add_option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Communicate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sallyann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peienadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhtarot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test/test.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autumn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_site\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yewu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ramsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_my\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dave2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margarethe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blanche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feir1999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiatanedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/konstantine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lettie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_rename\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Module_New\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aresky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsspecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tradecli.dll?template=com1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foreign.htmrobots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managehuiyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat_addkey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChkPurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PollView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangwu5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hmdss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfiles/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jszx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takuji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newtop1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RoomUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shannen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/xzjddown.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YeWu_Query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Localdown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asa.orig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/sendnow.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/etc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scromirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyoulu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semaj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_dialog_common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/global.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhjf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/70/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/weblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~web800\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HotNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/tuan.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfaceok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_imob_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o_company_about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexximg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UbbEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ketfm2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flvds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eweb/uwh3admin_login.asp/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hjilymiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdlh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BeiAn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jermain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zqMM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/shijueyishu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_edit_text\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_toplist_hot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biz_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_ps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solr/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beijet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kali\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsTypeList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgkm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addpp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/account.ph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangdog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WPMONEY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Z-Blog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nosaytimeout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/machineinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/hunyin.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorettalorna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messageform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvvvvvxxxxxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet_client/system_web/2_0_50727\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MOBAN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hansiain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celeb1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspSysCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FS_VS_SysPara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admindatano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.932.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_jiaotong_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveedit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl_ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emniem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giuseppe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/front/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_rongyusave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FunPages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchfast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blacks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/bb-hist.sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeremie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserPayRmbChina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuxia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SexBd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_ClassSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/settings.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/global.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_BasicCfgResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/APIConfigFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fidela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manginto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changelink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check_resource\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpUserFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtf617\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.php.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/default.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8jinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repegggg.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leftframe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/checks.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_sav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fulltext_settings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/asp/browse.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_RegCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farlay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bianca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Oper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/js/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car_yp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gangbang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Specialall_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zpjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courtenay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/page/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glossary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb_eData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simeon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deljiaoyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guntar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckEmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/2/bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuning\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_browse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surbjiang.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enemyais\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caifu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ado\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncCase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_rongyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0manager/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/lb/dispbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banneredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiseman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cvsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckdialog_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butthead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strikeout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModifySubject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CompVisualizeEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuiop99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/sendmail.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annmaria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilburt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addurl1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wnl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcomm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ymdx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davidson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voteold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/havesenddate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prentice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pebrook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salvidor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delbk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perso/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcshenghuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uncompressed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/up.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LEFT_person\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/mountain.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/Dialog/example/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expeval/exprcalc.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mavis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese_Big5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingpininfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvvvvvssssss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youhuiquan_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/shujubeifen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upme2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loneranger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jillene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui-web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/db/ewebeditor.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20070806.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AuthorPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fthyugfhg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jdm312\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evrod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ptwo_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikolaus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privacy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smj0803\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.event\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HotelImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/show/sex.rdw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kipp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_AutoSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OA.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikaihsottoshiaki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brennen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/WLDummyInitJVMIDs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app/config/database.yml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StatDay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fqtj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_table\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzgs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administr8/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~htpasswrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mms/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_1/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.plx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_meetwrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigeightt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htoomssmooth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mb_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dianzi_Diangong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyEnd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChkCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckRegName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.asp.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aramis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c/admin.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CorporateSilver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatrice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bylianzai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arefuse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roberta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pregnancy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_stat_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tungou/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_demo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xcez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oooo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/space_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_xlb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index_Logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icream\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PJBLOG/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yalonda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dcforumlib.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FVisitor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access_db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesson_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hills\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_form\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/today/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_gb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userupfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navbar1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay99bill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzbangran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_userdj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_Admin_user_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebApps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msym\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_System_CityEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/--q86.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ToMdb.tdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools/details.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_XuFei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leicester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/february\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taskread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cache_Fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LOGS/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/filemanager/upload/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prudy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oekaki/oekaki.cgi?mode=administration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jules\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/www-sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oralie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Eprint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/format\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NotLoginMember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigham\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Jiage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachment_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veronika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llllll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_School\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worklist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tydxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelpList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adriana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AddBank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housepic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t_favdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucille2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydatazw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caresa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/table2.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/jiazu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminall1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmr1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binkie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_ClsSpace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConstOption\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offerdetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginDefault.asp?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pscms_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fdiary_comment_other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amdin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_index_Mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/WebServiceServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idalina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Feedback_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/archie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HISTORY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adamsbryan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Systems/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SchoolGrass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_ml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crysta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfoadd.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/css/Default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giselbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/active_users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/_notes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Roomfiletype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incomming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dialog/gpy_specialchar.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delbuyuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_UserPermissionResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vsjsftp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/539.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advisories\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365.wuhan.net.files/xuanchuan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserJoin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhongwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cclogupImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htpass-bambi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_note\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_HrManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_view_domain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/Fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breeze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nyys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h_tongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dt1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/dp5.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnnnnnnmmmmmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagesent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbr900\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giuditta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_files/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AddSpace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_cAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kameko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YULE2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtwh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor.php?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_friends\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milissent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cndw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_udel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.asp_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/zt1.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_feed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eziechiele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/map_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fycome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psion3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anonymous\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c34/isino/epwd/passjoy21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/css/more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jrkyzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newcom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_D\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anastasie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_DataStatistic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssrw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newarrival\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checklogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminTools\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjxxb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itwaibao1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qfullhit.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elfrieda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluffybear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_webad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objectSwap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcalendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghqfweb.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joelie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mzhanshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pyhh666.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantasy4u\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangxiaojing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellacat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paxton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip_script\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bye.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver33.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatetime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserChkLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dnt.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/contents.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/atdcadmin_login.asp/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dallas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delkqleave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3r75log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delClient\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh07\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qingguo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_agent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottoma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wasted\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sollie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_index_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jgmpLeapFTP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pauletta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote_huiyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun113\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apadminred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20081104.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftWare/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kasper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/htdocs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/G56ccW\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_spacegoods\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhmsad.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/21766.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picture/getpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merlina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_suggest_feedback_child\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyt0521\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cygl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_1/mouse.ani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pageCls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DynaCacheESI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_avatars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doktor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VT_F_S\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sel_calendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_teamad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log/access_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sungod26\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CSV\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/jidongche.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.passwd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CYGC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midgie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardMasterGrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_spaces_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voteadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/putnem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nels\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditAward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stearne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gussy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mm_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colortitle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhutou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuff.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydcp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domcfg.nsf/?open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kissie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tilda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_news1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_counter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anews_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessamyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlyd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adduser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nedi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/section\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infos_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abyss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downloader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tzi-dar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/ftp.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toyota91\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guangkelai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snapshot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fdiary_comment_me\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transexual\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acidburn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shchtupian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaibu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smd168\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderState\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_GbookCallback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gussie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/middle1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivahate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/sojourn.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessPlatform/auth/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uriah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en/kszy2/cx/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vassili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/downloads/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbmb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Log-In/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union_vnet_lady.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkyyorg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diapolon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsodb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homepage.nsf/$defaultnav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8q.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elijah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editclientinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roseanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fqdisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jillana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savead1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bambie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articles_link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andbull\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sloan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images_green\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V_Software\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bealle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/sysimage/file/audio.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dietrich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refreshsmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smhththt/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_caiji05\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_makeinfoall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyxxDef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelCollect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialEditok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretzel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Enrol_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanghl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/launch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VS_Theme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exitlt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpscsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smilenew2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ConsumeLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photography\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveMend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderno_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fkdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wefnmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xglkc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/files.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heindrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ricoriki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aoth59\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass/password_manager/passwords/1.passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassADSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addnews_rc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanma/blog.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Elogs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CultureclInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monitor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u69start\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clfsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_binyin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SK_GetArticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydyd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goinfls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upgrade2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mlog.phtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Luntan_Shequ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelReView3_submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowsadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maryanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/style/1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/password/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_anun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locoever\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lv_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vyky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VERSIONS.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mambojavascript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop3Set\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qlycAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Newsxg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navSiteAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxdgok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shchimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf2.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SMS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tg300\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catch1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/px\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weather/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KingServer6.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_flash_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8QQCjb-HY.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exchange2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/connection.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flystar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tennis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BizSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_editnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/day\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/line1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_msg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stronghold-info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huaiyong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yl889900\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youthaskbook/book\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user07\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sticky1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynnubbunny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_member_photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/include/admin.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imktadsl.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_System_City\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wejwmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_administration/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user9051\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LOG/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atalanta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/ftp_config.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Send1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abrahan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewdshu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs7/Dv_plus/IndivGroup/Edit_Plus/FCKeditor/editor/dialog/fck_about.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/story\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckselection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords/memberfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/module/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrijo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stormie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culture/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Price\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin_SetPop_Group\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publicsub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DAJIA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyacinthia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwww6677\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AptitudeTest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gameloginloaing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyh888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hector\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_pics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/play\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_GetPassword_step1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyhcdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JDj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6d9hjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxzltl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiyubbs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_fav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_FeedbackDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomasina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_review_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lcgd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_vote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_photowatermark_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pdt_Price\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/11232.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prtjkkkk.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardcore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Select_feedback.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stewart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj_Save_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eticket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/fckeditor/fckpackager.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmalee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enterpri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eachelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huifu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petstore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/viewbook.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/loadpage.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citrus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylvania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shannan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/logox3.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atgj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rriocard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/statview.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyhw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_sights\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_Ctrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RcList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berkeley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_Client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eubbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.files/haogx.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkfuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecshop.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiction2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MainLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pass_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddbClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_boardmanageedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu99999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kendricks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klemz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asual\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MainBoard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang/ziyuan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data8888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Outlook2003\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_DynaCacheEsi/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/act_com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/logs.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SGOU\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adddoc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mahala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addTitleList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DonQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~ibill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyhbkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_see\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pageclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postreward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOBO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/members/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/pfdisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SIMPLEDAD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efrain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/townie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxjc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignacio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dpnlupfile_flash.asp/line.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somerset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkya66.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hwrlmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveSurvey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sitemap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BlockUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_jspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merilyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sales-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragdrop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wandis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mugw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czpt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsaveC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsgood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Foosun_Data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/maillist.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntanLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfk_body\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pirzola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_fenxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Points\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setstyles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfk_login_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_DelOutMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/uploadfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertrand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/web.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyhhysy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScriptLibrary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_New0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cointon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edityewu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebShell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tttt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fjghz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blinny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Write_GBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webcash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImgFlashplayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ssi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_Hot2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFile2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdkj32\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_3/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_lr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honolulu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewMore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_listdelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catriona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpImages/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincodes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v82008jhqqxin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdqy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmeyer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Default.aspx?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CCTV\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_edit_option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jijinlicai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ol0440\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/BasicCalculator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Samp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadDocOk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skipper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fmain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/shangyefuwu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lekcj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/procmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe_shfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/Calendar/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modepush\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kissee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mangas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/super\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigejun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lagalaxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qpxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henryetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jayde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/urchin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartiaopei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LostPassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~dmr1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pitoune\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ModifyPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHARP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LBB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/connection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pkj4qq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/license\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_3/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vbb36\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/editor/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebenezer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sample\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ywack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminradii\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_18\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_gai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_showmonster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joycelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/citye/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_InsertEQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Modules\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whisky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_wap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practicepractice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_ClassDelSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SK_Funcls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cool/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/smiley.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/araldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andres\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggress/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derski\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_topic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenleichanpin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dblink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_lawzhongshan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OblogStyleAdminImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/redirect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Std_StranJF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brittne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newmusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscodejs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManagePwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-local/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toppeddb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bangmeite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/Ylmv_data.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9o77log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savelinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminguide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nijia3202\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internal/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DjServer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhengce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartholemy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reputation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjpgqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CVS/Root\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sidewood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happyman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ObjectBrowse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mufi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ServerMeshwork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transferphotodel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ewebeditor/fnptadmin_login.asp/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showlogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_del2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Eshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/style/6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageSiteMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shauna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_13/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zj_up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/50/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HtmlFiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csongyubo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeremias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raimund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmssender\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url_rewrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_pd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sydemon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fshqloveyou.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpopen1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MopGGlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateXxm_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_statisticmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreshFTP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_skin_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domainCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingyangmeishi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Partnership\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/refs/tags\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hermsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonfunctions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Health\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/50/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kontakt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ldb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeanelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgfjhfiyiuyo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RFRAME\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/List_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorrento\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Addccnews_submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_uploads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rocket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_sysPara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anselm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agneta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadmund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PPEditor/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/doctodep.btr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowAd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sort_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenifer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilliary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldies/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hisense\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruthanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divers99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auto/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uduqmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dddd.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jermaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swynabc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb-admin/admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chakan_yuming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/znuxsf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demoadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaunce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/montague\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chjt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ListRoom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fidelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rozamond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/july\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aube\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpro/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsoconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcdelcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_xiangxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmasters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trials\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLeft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/test-cgi/*\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/sixflash/law(171X58).gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdisk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gisele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq530\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scheduler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_MessageResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_grmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kayley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ticket_giveme_car\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robot.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe_yssm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SubCompany_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huanhun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JS-hit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft/Cartoon/Other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vadmind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Catalog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/famuJL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdsblog2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeworkzhongzu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvwa/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dipshit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shalne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoginUserImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davidnp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BestJob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_fav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StatOnline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_adm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uppicture/uppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ThirdPartyControl/fckeditor/editor/filemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lives\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_picture_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kassie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mir3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgxxlf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Head00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/eweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnnn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_pbookwrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaxypainter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smhththt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b6ytftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia_tim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prd.i/pgen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexproii\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_map\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NEWUSER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blonde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muonline.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clear_step1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cccc33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleReview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commodity_comment_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petronella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_allUpfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.ibm.servlet.engine.webapp.UncaughtServletException\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displayworkrec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana0173\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addjobnewchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Button\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hpo3log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvdizhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/title.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaoji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_member_house\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_ddid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha_h_name\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SETWG5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/Cl_CreateLiveCMSv4.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/SimpleJSP/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpjh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ToolsLeft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SETWG4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CNT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jokepic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiejie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Foosun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Trackback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francyne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loktFlashFXP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_bookwrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YYTTB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelReView2_alert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBAccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kanxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdkx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YULE5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YhUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gw_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3800cc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bqlj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_makeinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/mk_output/referer.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/table_size\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MSNExplorer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alteruser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_getcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fansrus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/allmanage/settings.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/calendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzhm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xqtmmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CFIDE/scripts/ajax/FCKeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stasi22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PublicSite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chevy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zygl/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tessie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mandel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ErrorPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clsCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuantiedit2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_archives_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blue_green\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ResumeSendOut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yancy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shouji_Tongxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yangfei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intro_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/07.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vdimgck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netSignList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giulio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_grade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_Setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stevana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_neu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan06yuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user-news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/addmember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databasess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhishi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hirsch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connpower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LISTkm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_Plugin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jixie_Jidian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserModifyPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_user1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/fpadmin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kendal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuctioncode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managebclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simple_image_gallery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laofang2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pammie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hestia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsgk3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awards\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/rwwwshell.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxkh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbaccess.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_txl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editlinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_db_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/restricted/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserGroupDell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlbumCatalogWeb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lotta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shsjms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditorcode_gecko_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/13941.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KANGZOOS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fczx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herminia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bishop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsad3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet_files/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AppServer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floating_right_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hz52109\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhtz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.txts8qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Updata_R_person_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n3xnutue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virginia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w8alqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caresse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msmir_net.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafaelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bird\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VoteShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_download\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcknamedcommand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bili\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saorao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mvhome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_navi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c16t49\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ertq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greensky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/README\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Module_SelCover\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top3_renli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilemette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiheKill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_rw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login_out\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sybil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_ip_sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegBBS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vitia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwj6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car_by\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e_menu03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Rod4892\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/admin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contact_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveRss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_up360\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyatt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rob46\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/password.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MuOnline1.04h.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devonna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filippa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Menu_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_showequip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/res\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_getdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sswadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personfindresult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ListOther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cur_time\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwrd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gauss99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8menghuan123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downaddr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Books_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditornet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antigua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyhc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help41\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drug\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DateAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_WorkClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FLUpfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sregnar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oralla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MYSP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/History_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanghai2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lancer5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maritsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/blank.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iwnugro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_info_fwcz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_AnnounceResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hljyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twt1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myhome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shooting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rutger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piscis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maisey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserArticleModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TreeMenu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClientAccessPolicy.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/example_link_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc_wp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mapix/mapix/doc/en/changes.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modipass2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yamile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.htpasswd.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wolfie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cqbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TJ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wideangl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrators/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darrel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saxotrip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleGather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FunctionSub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3434\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AssociatedLiuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridget\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timesbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwmdcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cymon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addwageinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkkkkkk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2008/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad-02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/languages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/platz_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxzzfdc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l1a2d3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/news/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/Auctions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Addons_photoup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archiver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders_remsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TravelAgencyImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transmit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8cq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/xz_2.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AdUploadFileBit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is_err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f34uck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csh6t6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gw_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgwz1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingjie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxygen22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmhqlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_notice_preview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigClassdeta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentedit.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Left_pp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trista\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/american\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabelita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxtaqj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promote_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taiguhoucheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companymessagedel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgmtj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_search1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HTTPClntSend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q01258\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saprint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrej\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_notes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bancroft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqpf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dt2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_cp_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlWindow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/school_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alister\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragon07\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rube\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwp203\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_panel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Searcher_Base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_brand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roscoe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_upimgload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_editpass2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaidenglu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regfun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bokepostings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bern\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/signin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toinette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpAttachment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmr/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_hr_zx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/gb/register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmlword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stafrepshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mayor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmiayyyy.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzrx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Prison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zp_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_class_DrawPieGraph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UpdateAdZone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereSamples.Configuration.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoksave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gijs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UPDATGJ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ly_lb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Key_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_Ture_countliuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/report/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lukey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diqu/zhongdong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xklh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_newly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tova\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleantracks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/login.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yasuodata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomaso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/ubb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relogin-Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piccodejs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwyly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auberta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nadine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liull\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abczxv.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feature\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddFolderOk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjswh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_cp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sinaflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_templets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Order_Pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/mastergate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ControlPad_Top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netSign\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_msgtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxjygs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showmov_xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desmond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbyajing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trenton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_sca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JR_ban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.85.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/database.yml~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminLicense\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alanson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnwk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_view_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_vouch_website\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_domain_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SK_Timing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_marquee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysmng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/config/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dknight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_lib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spellChecker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vernice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_datafile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_del_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domeniga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allpages.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_bottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pegeen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor_v280_Free/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_upsystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Food_sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dashayu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_templet_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_ppadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c16t47\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burtie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolando\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyanedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houseDef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webyx-200\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achatrefresha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/double/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jean-cla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageqd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/_mmDBScripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_Insertfujian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdbc/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Search_City\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylhj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigismundo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public_html/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Job_zp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BbsFaceX\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/18567.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbC17594\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bank/services/Transfer_SEI/wsdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinaldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuexiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qrmf3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scooby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tohtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuiYang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitsort_judge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/msg1.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joeann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkkkssss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/Edit/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abagael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowForumPermissions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrateur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passcfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cougar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Products_Label_styleread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dddddddbbbbbbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DirItem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devlen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gracie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traindelcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/*.wmv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_dl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Contribution_Passed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_fhtz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onrequestend.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuangbei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephendeo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klement\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reset.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounting/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ids/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sailer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mitchell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efangauto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addworkrep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_LinkClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Regini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weiq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/classifieds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umeko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppkd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/key123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminJDBC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pond123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHENGBAO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw_drag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/china\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gussi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guobao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_recordsType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpProduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaylynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafaelita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steffie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_pris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_question\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ollid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/streams\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyEm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leontyne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/designnet888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClientFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skinny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_jiaotong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maildefault\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_b1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roselin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clickcount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talbot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/web.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_ques\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy2buycz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ykcussucky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelcie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phebe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQStatus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/sendform.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/classified.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nobe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compress123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_searchgo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PassportService\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_sort2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffffff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceciley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fupin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_zxzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/ay.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cammy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/planters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms.csproj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weditorfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backend_dev/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krissy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francesca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgibin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregorio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_fav_url\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jicar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classifieds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/shop.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nf0nlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemap.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obidiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilac328\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hypermail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Challenge_Scan_Topic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/579300\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/titsandass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrot_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drdemara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit2shou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odods9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhongqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shermie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQCjb-YXD.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_fso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previewz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradetheme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/as-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Challenge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radmind/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gongye_Zhipin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariska\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobnewList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/epoch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newqz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andantes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_WriteMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ArticleAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savehf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reaper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfide/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biliameeeemailib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/good.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movies1_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogcup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lutero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jury\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAward\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/channa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_toplist_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/market/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sammie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/browser/default/browser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjfzwgok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_usr_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mwaextraadmin4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addxlmod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_Lang_Stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_charset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_default_site_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditSer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romeq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BadWord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listforclient\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrtxcn01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stern\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DefineTable_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expeval/eval.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SRS_XiaoZhiTiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geordie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldec_seller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_BookPicPro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muriel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nigel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shfme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mitchael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiki/doc/stable.version\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divider\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~ccbill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog006\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/fck/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Recycle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clotilda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_pmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sk_Err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demo/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linux\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruixiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laraine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Challenge_Scan_Topic_issuc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xrjgecshop.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_adduserskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meryl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darrian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/inside/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Site_Set\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/webadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benfica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveyaopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fredrika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kati\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sort_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acacaca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnnnnn99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update_cuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deluser2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MODIWG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuumirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panjue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ProductJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_rss_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_City\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wizard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/calendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Boards\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_toplist_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashlogout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangping1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neysa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biaoming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminLogin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Purview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlcommok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mail_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LEFT2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdvancePayment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JoinVipGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harry01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwertypoiu.htw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MP118\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysMatter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scroll9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fratboys/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaiWu_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_userloginleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138f.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kamila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biggie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ExchWeb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhuafang14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Orlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c19t45\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sinayellow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahmcqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common_other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dexinglong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/API\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resource_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysAdmin_topic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kasdfkn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betteanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_sql_Admin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yppxmhg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meriel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anent_txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votesys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keepformat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastercam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/jobcom.mdb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sipssys/users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaynor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_ClassModifyBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/dp8.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxdxxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muppet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongju/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/COMPACT1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_gsmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovemum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/13041.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdvod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccp14admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qotqMirServer4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xblc7270\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yanping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosmo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/1X28_bg.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_UserCommand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eveline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgi_bin/systems/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DomainInto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanlinlin2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engine/classes/swfupload/swfupload_f9.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nimda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rank3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viphtm_3_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minnnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengxiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_PhotoSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeporn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sindee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Coweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/main/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GroupDebate_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bluebird\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zepellin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plymouth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TopicIcon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsmsuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pamella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Evaluating\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReadNews1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleJuge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditClassAd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offred1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datebase/asp99cms.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_shang_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadbbs.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdqs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengcheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgm163\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CREDITS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSetup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysAdmin_title\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbbstype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laugh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalenna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunray\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottom2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_GroupEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baryram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataAddress\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uchome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Junshi_Zixun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bumen_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzjiaru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fige@919\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itembinder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_guest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pater\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Editor/db/ewebedi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanyue6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteEditFileContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Link_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open.aspx.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Revert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrmj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerhardt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tujian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Other_Parameter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_XhManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config_hand_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/database.yml.sqlite3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patricio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softpost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_WorkEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/diqiu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmefriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paytofunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.index.jsp.swp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/database.yml_original\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzzzz2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merchantadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders_list_no\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofs.web-charge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aabe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_1/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pooper1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolgirl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form_text\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrys666.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolphe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_MessageType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DOHYKOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/netbilling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roge0866\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scase_title\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkuserlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astrix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c16t53\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usrcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilfrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humans.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shhutupian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_d\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krilka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administr8.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquiryadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nwaj999.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/27281.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fidelio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webststem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/eWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xihuan123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbjd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveNetBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcjina44\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msicon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abigail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/FCKeditor/editor/filemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/images/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminuserlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_usergroups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.aspx.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PhotoManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxxx.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_updata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beetle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leodora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebServiceServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silvano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paimai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzaddok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminClients\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_replyinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upshowsrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solution\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sensibility\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taobao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connections\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/posts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonnnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reguser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Male\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makedomain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_Adminpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdonlineFloatShow200Default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_item\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addzp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filippo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjmh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/List_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_mail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhouyongan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/policy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joball\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noticecontrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_paymode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_subr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bbs/bbs_forum.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mb_del2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radical\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/emot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malachi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradjanet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyrus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SearchHistory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_Histroly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_jy1001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testimonials\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocotte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.tmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oneadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wolf95\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filmer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/__admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usertile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuo-juey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setdiscount1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckxml_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_example/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianjie/ipay.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c1123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pascale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apexec.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huntington\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwwwwwkkkkkkk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8QQCjb-MB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/phpmyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak_step2_in\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RevertLable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhongguo2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Banner_Up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetAbout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_House_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/editor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/ncsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleopatra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/FCKeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxx.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LiveUser_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_include/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check_id\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/developer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youthblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flemming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latrina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxzc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_manage_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddNumberWord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnc_flashinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melodee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobNewslist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuliling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SAMA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speciality\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/registered\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IMS_Img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web2000/oor/content_areas/safe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_saveremote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gatherer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benoit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coding/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminstuff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indextravel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangjiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiangshiya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwe123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ieio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_PhotoSelect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdata/acblog.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/521.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/mypasswords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salaidh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/45/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HTMLDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mttch9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Get_NewsHtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowrance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsOfHistory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/admin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ApplyForum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wszje.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_access\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syssite/install/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowledgeshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moppost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveReview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_MemberSession\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pigpig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_maxz_cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferdy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengchen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PostForm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managein\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/webcash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ownedby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coupons_admin_cp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_modifysave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/event.ng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Other_AddAds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzprds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsaiger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_view2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wymarry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/school_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LostPassStep3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageStat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxtian110\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Windows2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_ClassManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxviper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reseller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ps_admin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shimeiad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romnumber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Pic01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/mypasswds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LconkLM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Public_Refresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyzd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iXs_Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StatYear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_saveuserinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discus_admin_40\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terri-jo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sosa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserAdd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaleb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatenotice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhianon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meet_summary_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UpImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmlscript/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dave55\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bassingwell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clawson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gleda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotcpzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LatticeEditor2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hetty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keshiimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/browser/default/bro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seller_index_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sparky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arabella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llewellyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin-login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_editlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deloklook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DIAOYUOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/component/WebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_shoplogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nova\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letizia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MisterBass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrizio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyselfInfoEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysdisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raeb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loadup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminAboutusModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INITFACE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maxine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq2009jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/html/admin/ch01.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jx2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuanti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Type_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppsvod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleCategoryAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/PageReturner/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hayden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Car\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nfbm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airenming1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gungao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/S62i93\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iceted\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_link_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/via\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztjr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yicllog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maxwell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arealist-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/southidceditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak_step1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/eWebEditor_Intro_v200.chm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melosa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulcinea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/MovieReview2_1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiffi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wecerr.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htcx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headproduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DMJ-ASK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/praty_old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_UpadLoad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashfxp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilwymilwym\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_4/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/others\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_EditPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/App_Data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Assistant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/someClassManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craggie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traills\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Rec_Save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdk/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.ibm.servlet.engine.webapp.InvokerServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left_cart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/news/eWebEditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaofei_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FootCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableFlashfilter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pun/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Challenge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xrwomirserver0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/view_page.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KillFluctuate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor.aspx?\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomasine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binary/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhanghaonan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Author\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminscripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_keywords_fetch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summary.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SavePicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practiceecitcarp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trans0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PPS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sawyer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_format\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owa_util.signature\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbumen_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_area/admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smoothsmooth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Jicar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iaczpassport-signup.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserEmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_logo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fonts/sn.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PORTAL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mx.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imogene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cglpj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nertie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kxmyqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CulturezpInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mommy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_recieve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scorpion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4567.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mininotes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestreplyok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ypyz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveorder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/daili/webedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaozhitiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Members.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_PostsManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Clerk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/protected/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/km\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/msgaadmin_login.asp/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/P2P_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softkeyboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectClass_Ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PhotoAlbum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lhjykx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arabele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esuper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fernanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oune\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/cnn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cretin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m137103441\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sql_Md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AcceptOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pistol1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetUserCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotel_IncTable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/test-cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_House\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o_invite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xaqdg.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harry03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/3/bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marillin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listbottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yurik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Etemp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiongyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wosky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rsnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_gongshang_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManageRecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tigermain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userdir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcomic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmlulog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hersch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.jsp.ba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cesare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/random\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddkih.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tk2007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyq63513162\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web2000/oor/content_areas/safe/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preamble\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DMR\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hube\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_product\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f94admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myranda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemHelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delbuy02ji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberPassModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GH3881\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/All_GBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dayna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fukuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_user1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/Web2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ejhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass1821\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UpFile.asp?fp1=D:\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_fun_funString\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lataf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addbk2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/wnu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_level\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh_map\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elyse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadImage2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aq_swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectCate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flym138.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jibie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Resume_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuiguang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meishihy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxhyw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DADATA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx1003\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbook/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/path.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Wbeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb_sz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andromache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_goanggaoFlash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_SafeRequest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otzddata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike53\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vcafeeds/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cadmins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publisher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feed_hf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JinYin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qquibbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/pristine/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nathanael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjornt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simple\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maillist.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GfEditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/link_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincrud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzxxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/New_rep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vieworderform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/major\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmerich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote_getcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/databackup/ebossi_data_backup.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theodosia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/nimagebi.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/exampleapp/publish/admin/application.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maymac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wykz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zacharie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/80/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MID\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_company_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staradmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yelherffrehley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awje\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glenden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CultureNewsedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Select_feedback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/querywindow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/string\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsweb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zylf_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/jiayuan21458.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ams\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_shop_newshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brenna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_export_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josefa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installation.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrystal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikkel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/channel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_Lang_Base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Al_AddNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_siteset_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bntcjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivalee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-includes/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_workzn_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsclose\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaneta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_eweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.ibm.servlet.engine.webapp.DefaultErrorReporter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregoire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelbee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admingroup_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminforum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epocs_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kgh8001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmoons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solomon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cmd.pl?ls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateforum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/su\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_notes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuopinpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penguin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/lhngadmin_login.asp/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdkx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SK_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wsbg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bux\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zlcg_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qtznjz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_Adminmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nacoshu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Storeroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GfEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recherche.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chengxi0520\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JS1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxfy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_system\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_sql_query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Special\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rider\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tofriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrdinaryFriendLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateRootMaxMinAnnounceID\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dionysus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_boarddel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserEmailSend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petbattle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infocom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xm.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumAds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/refs/heads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_cm_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transferphotoedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quinlan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quincey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wcx389\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjdxyx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dh_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_SqlIn2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kefu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jqhx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oawh2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/order_log_v12.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medipo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdvUploadPicture_seav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/know\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8website.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoveThread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kalinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Clock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admingaog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userjingyong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daisie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc002\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UnRegulateEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumsuck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatrix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domsaorao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hljj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/editor/fckeditor/editor/fckdebug.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjqdhf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/styles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gstyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbanch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WdatePicker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zylf_Safecode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mackenzie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inthebox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fetish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzwq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/callie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daiyu_chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robbin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mir.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemModify2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rdearing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yangfox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petitemuse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delcalendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wunder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ClasslmOrderN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_groups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_info_house_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deer99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Child\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bbs_forum.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin500.com.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocxawwww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drusy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zazhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyrmjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pause\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjs7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12897,92,1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esses\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/#ewebeditor.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_creditlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tttttt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coretta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/dhtmled\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henriette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_custom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/emot.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Teachers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liono\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maoceok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HX_LOGIN.ASP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formula1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.DS_Store\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fun_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mb_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/85/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FolderImageList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_keywords_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjxht\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tisha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winnah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sayers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cati\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ikonboard/help.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pmadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V_Hosting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v31img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pipiapp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HSJNIIE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DG1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sissie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elberta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassTree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserReg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Excel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conrad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asa.1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanyinlingqian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dunedin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClientMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serials\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/createindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t4softp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JobCategory_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aconnwish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simmonds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VS_Steps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showdetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pap_Joke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fkadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coriss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiating/jiaju.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.asp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke_wangzhai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaofeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admingroup_16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereBankDeposit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkside\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/xzq_2.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/material\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elvis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viphtm_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManageSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OverseasMarket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/linkup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camellia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/phpmyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermanage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/survey.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlbumCatalogWebservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biaoqian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atomic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/line.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxycgs693\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeee2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slsps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cezi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/secure/purge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/wsisa.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hylist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteadmin/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brenda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBaseStatView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newseditok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takeout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CorporateGold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_disk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nhvh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_88_more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seufert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/amadmin.pl?setpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaabbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscribe.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emelda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FORserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_Auditing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_New_Type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCounter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fionnula\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moxwmirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sissy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.thtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elihu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserServer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xvzbmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageGame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myAlipay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_code_ls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upproductclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Siteadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/eWebEditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shriny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxshjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_QQOline_Js2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwujmirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_classmana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQkn-MB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog31.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PUTIMAGE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toucher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wpcz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/granville\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vvvvvvvvvvvv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdel1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man_kick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/package\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferrell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_baks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_Announce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/86X118.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meagan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ling2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincp_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/wtnaadmin_login.asp/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/DB.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companymessagesent_submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daodu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eduardo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndimqj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol-jean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binaries\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shchmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookyouandme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_ddgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webdata.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malvina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_vipfuwusave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cliff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovemay1314\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydiarry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vladamir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sisisi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfghhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_sale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storeadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ringring\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/UpLoadCls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyhwkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8more.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_ClsOther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyratsujk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baidu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Auto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owenx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diablo10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jnsnmirserver4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/faxsurvey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FACELIST\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_infodel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhchaxun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stories\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yummy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loleta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taddeusz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/test-cgi.tcl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffmicr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_settings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shawn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_site\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_DomInto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucienne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/in\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzkd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gustavo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/db/ats/logs/writeto.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_AccountVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emtpct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/force\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetOnlineUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Get_Thing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Get_Thing_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idalia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuwuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgi_binsystems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PollUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flvds2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_app\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Subject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aircav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.tar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sportwoman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_editpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yigemirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan11yuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckSysVersion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.files/home.aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin_CSS2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koralle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_save_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_sdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thurstan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newblooddoolbwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thatch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w32141321\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcgi-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/7017.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mollee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racquel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janlly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blocks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyFavouriate-back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bajyipkf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dz_typeset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solsol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/sunexamples.realmdumpservlet#users-unix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb-admin/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xztaxi1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xycxyc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsnz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asa.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_geturl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Url_Inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dkirsch2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Insight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEditor/admin_l\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advsearch.asp::$data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup_sys_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LogSql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedvig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Goption\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaLong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsth6629999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consuela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beetle200510\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Alternative\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/45/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkunpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_IPManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gdzc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sms/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xd0/xc2/xba/xf3/xd7/xba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/websendmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret/secret/add-user.shmtl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fernande\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgetpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/classifieds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/animals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addjiaoxuekeyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rules666\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin/admin_login.a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mag/fckeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robtrip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs6.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doaddcompmap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admanage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admingao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/include\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dghdyd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baoyuecz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbc_online_re\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HISTORY.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Growth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadmyfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanbaoshi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UbbcodeSetup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dozkasdf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderDetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Dv_skin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jared\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/binaries/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moshe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpryTabbedPanels\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminv2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_shop_cast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tallulah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebShell.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_jfgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheditor41\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/office/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selectFenleiType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vincent1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_note\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WarehouseEJB/services/WarehouseFront\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_menu_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daloris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowPost.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chicago\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e_menu04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mallory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_MemberList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Functionn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyUSER02ji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_dongtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminShowyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obscene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Oldweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zoom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clickcount.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indicator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Update_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ElPaso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_Host\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kissyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhoubin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcompok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Legman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eberhard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advices\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_jsjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PopAD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WarehouseWeb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/royall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ileane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Remote-Access/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dillon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yardley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rongyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tessa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfyshtdocs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common_plugin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manbuzhe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bouncy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBLog2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_RejectManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacklin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/upload/other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mellicent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/22772.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunnybear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Key_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ig_common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qlpgshi.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/18.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditScore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituserchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_probe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumCategoryDelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SENDFY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgilio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savesub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/epoch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homepage.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gchpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pals-cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Test/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changename\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditorv280\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nathanil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bbs/register.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linksedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free_ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a-z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tally\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgld\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shjclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playmu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ConsumeLog_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paodian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamaal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fymain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifyads_place\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PoLlSm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lu78hg4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminDeptdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claybourne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scxinxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Main1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piccode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemsave1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardSetting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~ibill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rowney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classhot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Lesson_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mylist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syssite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shusheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flossie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nmq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp44\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgbox2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_gg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natalie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/korey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansediao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_bbs_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brendan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageAddS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DrHubbell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.tgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admincp_sidemenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keyboat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonzo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/iframe.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/month\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vbb/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PassUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Announcen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktablehandler_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaveword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompressData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckdialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.inc.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/box\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404/ll_ride/page6uwf.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanlinlin01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woaifc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_arcpart_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex4show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.files/index.files/sendmail.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonzo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qhtk111.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old_site\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxw1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebShop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_InsertFlash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hielo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tori\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kexue/huaxue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_allmeet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_makesort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sterling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/war/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tylmjq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddie2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/super\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_ubbtst2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/Subscriptionservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Variety\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WS_FTP.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vevay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Eexe_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Space_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/js/misc/swfupload/swfupload_f9.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emth176hj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_Full\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picpost/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.csv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oooooo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kurwenal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyAttachment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_val_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/den\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Index_Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_edit_poll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/food_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_usermanageupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marrissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isadore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outmang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AgioTradeType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/houtaiguanli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makesort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_news_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getmemberid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_add_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ymjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sub_Images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jszr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/examples/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZhaopinComNet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_FriendLinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top1_wai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/_vti_aut/fp30reg.dll?aaaaaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doudou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hellouser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdata/L-BLOG.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylbz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resin-doc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wtok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/et\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/president\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HolidaySpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CulturesbbbAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb_wjt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spaceskin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mana_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sspadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_webinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malinde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exsquid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysManager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feldspar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/em\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gudujian9064\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq/s8qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CaiWu_User\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aabb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jodie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manyu/back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images1111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanislas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZJHLLR\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gal/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robinetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessPlatform/auth/clientscripts/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamelsjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addAdminok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PrizeList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_index_addurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_type_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexgqq.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expeval/displayopenedfile.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dompeibei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/westleigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iosep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tai123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caryl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/bdir.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_Ads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnie88\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_fuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thatcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsai123456.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiankang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iamox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhangjie007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readmec.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fernandina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_unionv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardsmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AgioLeague\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Nation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~passwrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mandi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adlogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drowssap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PhotoList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huangdaxianlingqian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devilsnewjersey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ditu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginevra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LimitUserManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/Admin_Login.p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/uploadfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/training\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckoutSucc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_data.aspx.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/sample.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steffane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p3uaqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GAME1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuailenvhai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarah910\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpghelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jqqonline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mopdispost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chucky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eladies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosalinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meta_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Newbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_suport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.subversion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_myactions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aas.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_fav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9poteditor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserTurnOn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/nemo/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_address\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecilius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_MemberManageResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hinze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/eWebEditor/asp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AgentPassUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previews/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karylin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zipfiles/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oh/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Upd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kalila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_announcemodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowtie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YeWu_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selectdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_setpm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jclfw190\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shonti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php-myadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deldlsjnone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hylist2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lelah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_InsertPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luhongwei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mordecai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pageImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/given\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_memberdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_chklogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/entries\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ApplyHistory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ST_FilterAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv_playlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senddocindb_mo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ststems/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willyt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenabc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trider1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/control/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohboy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhInfoDisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/1ndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feodor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kqhl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_right\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/ibill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SessionExample\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servicepic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexuloveyou.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgyipath.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuihLeapFTP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RDTJ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_refresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_poll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/table_insert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_att\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyPower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPSamp/AdvWorks/equipment/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PostUpFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hand5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pclass1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs_2007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy2buyps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_edit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/search.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.server-info/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gobuffs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film/soft/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classrec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhanglist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsRefresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckcodeformatter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undernet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiadong3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ChkPurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjzf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lothaire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_ArticleDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LtdImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiuzhetang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet18\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_buyph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahmed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VT_Page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELGIRL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store/customers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pixel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dialog/gpy_tablecell.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvtj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iefidri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bianjiqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MessageEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzpt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_rongyumodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boylzk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbswmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendAdmin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede_bbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mumei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cccc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vibrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyhour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deep/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fygqii.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persons1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ClasslmUnite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorrin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Card_Do_Pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sansone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jiadian_Shuma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/livvy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlevel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garvey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfiles/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_3/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gavrielle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple-touch-icon.png\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/addsfedsffdsggfhhdf.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christophe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_RegAndLogout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pansie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Video_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxhcwh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bvcxz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admintab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JINZRMB3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/node\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make_view_now\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PaySet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klpym\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MessageQuery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/find\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferdinanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yqlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loadpage.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealeradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinkuq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sabina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reports\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SoftSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdsModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/head.css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhgkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annamaria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_refreshto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maibill/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s250\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingpin100\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainq.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sergio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_class_fri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FyLinkConn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caoni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.hg/requires\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_analyze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comprehensive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peiyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newdetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariejeanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saten\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqcjb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulfschiewe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/value\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HeadDiqu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iymq123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxszweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/link_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ai2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SubCase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/85/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l-blog.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corpus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salvador\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upgonggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bamby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeanb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WeatherPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showrongyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_wz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bx5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cullan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edithelpsort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heriberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nissan1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wainews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/des\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SAVESHOW\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewdebate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaleena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myhome_about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dieter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql_deal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/qcdn_news.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_key\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shellie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announce_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/baseinc.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microsoft/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SimpleB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vista\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zichandom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/_database/guestbook.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveaddbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_host_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_Save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rozina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_RepairEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Price_i\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purviewallot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.sql.bz2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_tjbj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_AddCorpus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AreaCollection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js-pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my-way\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/*.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gqxx_infoadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iDevAffiliate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/texbet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftpdataMX5k17Hnh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryxschao.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elladine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ysdq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_good\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mt_dropdownC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardmodsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Newscode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mcmenemy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melloney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael1969\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Save_Edit_sc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcellus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htaccess.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_keywords_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_redirect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/PowerEasy2006.m\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grbgs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surfers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/Admin_Login.ph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baillie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verifynum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgsw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murdock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxzxzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgzkw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008jhqqxin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/Connections.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derrik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oand2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardeen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qczje\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/browse.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjcg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8bysj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Replacedata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onecat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InfoUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dns/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/13987.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/75/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovelogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dals\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_class_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public_html_members.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjwa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhiPicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xbk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CBSetting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemCollecScreen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritchie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsallploy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_ApplyVideo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitwo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whxyt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwfb1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LGLG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableClassDownLoad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rollo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ya163\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers.xls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyshhf19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sidoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mallissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/sort/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamaliel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yujl77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MS_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uyuyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrxwvv.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sqlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i5n1y2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexximg/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kailey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ReadMessage_Re\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1166\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nxhcddd.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwenni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhouston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpfxadmin/ewebeditor/admin/login.pgp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadBar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepspace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiajia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_IsLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yankees\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undefined\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_sav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youmo_XiaoHua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/megvie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yapping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/Head.Fix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/nemo/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pxzpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beniamino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyw200000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mission\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.target.getAttribute(id)\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lotus_Domino_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_sharelink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jay929\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toolcenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papabee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setwg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/qlqmdede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2011/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andreana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cspgsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eweb/admin_login.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_announcesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lw_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trstram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.csv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/example_image_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/conn.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netbilling/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fy_tv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_rebl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madelene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/bbsky8080.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_addmember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorelei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpbj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triderredirt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alysia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Searcher_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Menu_Buttons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stagemain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpopen1ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfw-168\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Deliver_Pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relatethread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilbertina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softdown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commodity_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarrett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmsginfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debug/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tl6012\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_VideoUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/membersonly/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showSysJsPath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_View\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/star/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbqvmirserver3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_sign\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfy8-12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itwaibao2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xingzuo_suanming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iormina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_en\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selectTextByUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sivadccdavis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpanel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoveManager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingmian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homeran\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index1.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuangshi/taizhou/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jx.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prod4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impossible\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pistols\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qaz123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maximilian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lulita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maible\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oumei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wlxj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dukey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Feature\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/googleMap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editshangjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person_register3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ordishop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopxp_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyResumeEducationchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pn-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/store.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pradeep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calc_6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_regg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msql/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8jx.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/send/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admingames\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurizia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuesBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_ads265\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_meetlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyyj11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft/Cartoon/Other/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donavon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfpd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfrdg423\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/Admin_Login.as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filemange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhijob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learningList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/importword(1).htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hellos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaowu9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agri/MyMenu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Soyici\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordereditok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/database.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joellyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveaddcase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loot3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css/background.cssrel=stylesheettype=text/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krista\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obgimirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_AddBgypName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/js/gpy_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ICEJL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logined\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dcadmin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoveNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbooklb/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_GoodsComment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/packard2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beijing001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardenia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/ksh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Business\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bannereditchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzzzz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerrys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/at-admin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adxman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birdie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yule_Bagua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosemary99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bx2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiyuan1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Marqu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thales\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Local\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hmd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuye/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/status.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delmessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfmwmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brittan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simba1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templets_Edit_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbbbbb2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckAdminLogined\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ip1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florencia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyInfo_risk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify_p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signin.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.xls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/style/style\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gizela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/se070217\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_delmbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/lanqiu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool_56\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/SimpleServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longbao110\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check_online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheeree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_AddCFC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_news_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardStyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dec-32\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/munmro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/HTTPClntRecv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_spaceimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_Lang_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaobao2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bailie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbinfo111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aspcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhh1127\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/importexcel.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_MemberSession\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templatesview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_members\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/all/modules/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EDITUSER_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upphoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgaAll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_export_rule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jieyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristionna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/from\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/editpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tempimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutillidae/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ClasslmOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usre.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8conn.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangjia_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agustin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendmoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classad/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tillie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frwh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shj_tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z_visual_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textarea/fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Searcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyjiapei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_add1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erinn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhekou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hwdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/makechanges/easysteps/easysteps.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TestName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deljobcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs1731\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahmad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/div\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GMserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auguste\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restricted\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiujia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Readme_CHS.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vfym\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porsjie-1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_lockip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idt6548\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/config.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Food_index1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lenette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Remote_Execution/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petinclude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/rm.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usr-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/success.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_pl_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ufuture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookcomm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexmarket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsmpimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliclick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elroy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_19_july\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tablecommands\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fossil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rudd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmcimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vincents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfide/administrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34335\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CNCHER\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_config_model\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu_jianshen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l888/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/text1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showtv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ksabout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_html_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admini/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/evag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WsManage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbvcxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/20081114_home.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_4/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nktd66.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mccuneenuccm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authsetting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/THOMAS52\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webicqlistok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_wyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profession\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brodie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/us\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kessiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lotus/domino/notes.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calc_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_count\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cancel.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_add_dj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newMove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faxsurvey/bin/cat/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Inflow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kultur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pubclass2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/websys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_head\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulldog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AFPoint_AddEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_extraction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epoch/dbmpasswrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ives\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nerissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinwendongtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifypsw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuliaole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuichu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_RejectSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chickie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tupian4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txps99.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydxcj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keygen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jugger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textarea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyacinthie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debate_ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sub_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dmailweb.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernestus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/packard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daxiaoren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isapi/tstisapi.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambrosius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wally\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmiller560\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunsha/hangzhou/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hudson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyantongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd631_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamesj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bush\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuantuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bondie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_sel_exrule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taiji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ControlPad_Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byrann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CFDOCS/exampleapps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strider\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libby1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/took\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contactus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheppard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/post_query\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pswdplc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mihaik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/todaynewinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Log_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsjsout/jhsy/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/emot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.fhp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy2buypay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_take\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textarea/fck/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Deljobbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckEditor/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_honor_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artnmq5c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lounge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inputhelpinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readrss_utf8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mk_output\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemoban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8menghuan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_25\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mazentop-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f___admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jshiley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/3X28.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeiler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzrx_head\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jetway_99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/UploadFile/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede_bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrrr.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SubSysSet_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csdfs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumCategory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dgnjdj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asians/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_intro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/secure/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_FastSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/econoline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepingpai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gman50\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.csv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fmbz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AnalogX\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xjy6721\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_me\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspwpadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edyth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rtw.aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobcategoryselector\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelLableBackUp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoneyLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zared\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazaro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publication_list.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkwjfckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_12/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kylie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulrika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldshot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_images_5_saveupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clientinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/load_Comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liushuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiro211\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Rip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_change_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darrell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8pp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.mvc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roselia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avocat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AnnounceManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youbianmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zqsass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableDownInfoStat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver88.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waylon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gayelord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MANAGEbbs01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_NoteMsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estrella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savecomment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsdatabackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chanpin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckAdmins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdoc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mebaby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosaline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_index_company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evaleen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drop-shadow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XUELI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Card/data/data.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voivod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/month_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hookers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_UseShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technology/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bulletin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vertify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cclist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oor/content_areas/access/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabbana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delggok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GalleryMenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuhan.net.cn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuopin_show1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alverta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nusoap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq2010.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_set_newsxg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SINSIA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gczx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add_Contribution\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AgentRmbLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ProductSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.usersdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shantee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/response\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemSuccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebern\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminXP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girdle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3iqf123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moneysave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmodzins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysBookDelSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/putmoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logn/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comfort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mAddGame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Invoice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_bar.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_ToTempletRead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditVote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Door\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldpussy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/63d7jinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sumner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_eat_model_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbtjweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/packston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jancux\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_Plug_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetMyPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgdown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watch_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nabl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_zh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kessia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableChildClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admingroup_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djhord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leobbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annabella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HYTop.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_play\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DOING\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_news_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JIU\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_101\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kfaddAdminok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scpfmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambros\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Czgy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huchennj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rees\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiarra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggaos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Title_Class_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jsfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topdaohangbk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addfriend_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/176.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DjAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ObjectAddS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winco2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_class_AjGraph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initchat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Select_Type\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parrnell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/hyperlink.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pippo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/join\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassLibrary1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/granger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q1w2e3r4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friedrich\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MaleFy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puppysue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/school\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/csc_whrx21458.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win2k\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/z9v8dnf.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_MIMA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcupload/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetPassword1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giovanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelFolderAndFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhj69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YULE3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/fckeditor.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MF_LoadLabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rjfkqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zghy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jakob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebHost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveviphd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/cfmlsyntaxcheck.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassJsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jspbuild\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgi4501\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/dbfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agretha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ChkLoginStatXml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trackback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvbbsEngine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/html/admin/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_review\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regtwo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CardMember\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmes_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Expect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Part_Person\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dd.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_collect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdlzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crowbars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor2.2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/asp99cms.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspecter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queryme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiugai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lemmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuyu_dlion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hufengl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internal/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_OutBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkLoginPro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyfc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandberg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PublicationAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check_SqlIn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrvyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q408920\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/pic/ico\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/China_Red\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadleigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/projects\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_icons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_YeWuShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/-2010-08-08\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lhxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spec_add_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protectit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henrik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SchoolFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/stats.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vergil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voteindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincklogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchContentAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mambo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.jsp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/korella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WEB-INF/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/park\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sale_Show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/item\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.inc.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mcadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_UpVip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companymanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syd567\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pqpaqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_db_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expo_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjcx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkuserl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stefa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinhead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matthieu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Index2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daoyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip_purview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xigcqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/dmr/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lestat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/clubstar.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karina69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_vipmana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP18\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchCompanyName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bannerflash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/type_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPXspy2.aspxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keriann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Counter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSmmSuosan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmstrader\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vti_pvt/users.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mama\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Helth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_news/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_BestSud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbdisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prudence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsAttribute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uppicture/getpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RefreshFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qkcxnnnn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zreditor/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Passwords.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amelita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableInsert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/countpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzz.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_FeedbackEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetici\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thanks2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcheckinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/middlevip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/amlite/amadmin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CodeFreeJsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shishangmeirong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives_add_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crosby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ANNISON\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmMD5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Bottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hjkl00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garvy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browser/trunk/fckeditor/editor/filemanager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicklaus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.conf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modiroomok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esmeralda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ChannelPurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwlc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminadduser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditPrizeApply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacquelynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/systemfile.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_company_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin/admin_login.p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weditor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bangong_Wenjiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NingboEffect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tootsie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banning\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Llyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_about\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/authorize/dbmfiles/users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campas/bin/cat/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhanlong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cw_swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mattheus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felecia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labels.rdf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaofei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Class_Photo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/age_old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WEALTH\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewrwwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Biz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lesson_Best\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_creditpop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_ClasslmManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/_vti_aut/fp30reg.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/pic/1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwtf/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realpo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj09\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modelshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top1n\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diznak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8tmd.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ControlPad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcyp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Locale_Action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/35/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diqu/nanmeizhou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kosil-files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PersonHowDo_Keepaway\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyemodel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connectredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/db.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_bbs_forumdisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contents/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/con_article_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reminder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_songadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Afresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_webconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/so_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dataname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrjackal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginflat/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Alipay_Notify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_foot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeff1999\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intranet/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjsendmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emotion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lindy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_softupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emailbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hellnig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pass_change\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hope\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/ccbill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rudy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot_dabase/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vdm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duchang_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rangers2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/10685.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Func_page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwork\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guowai_Wangzhan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preview_cncard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_fix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsimagesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wolfgang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_adm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedro2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mustang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roading\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gusti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Exammanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delmar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanyuan51\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/_samples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_edit_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philomena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img/qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RepairSite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lottie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaitlynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsToJs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiger789\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/column/wuxia/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squirrelmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godfry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Class3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup_sys_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newslist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Down\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rudyard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gretna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sapemirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjgj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editballot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Aqjx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8sitemap.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableClassNewsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hynda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terence\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOAZ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pictures/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/businessadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joelly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht984218\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sloane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaylah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mislmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sorting/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbc_getarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylvester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowErr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/active1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mellisent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SENDTL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Dv_plus/IndivGroup/Edit_Plus/FCKeditor/editor/dialog/fck_about.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ottilie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picturez/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eirena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_link_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/mtv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_invite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuzhuang_Fushi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annadiane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_stamp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chantalle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jyzt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rockwell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiyuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/may\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_imgPreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhcp_fhf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BM_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musicimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check_update_GB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartolomeo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ipp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipcard_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Topic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viprenzheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powerpoint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morissa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partners\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teleadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectEmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VIP_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemStart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picpages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joomla.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearupfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myinliang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhisavePicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iozzabc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reading\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoveS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserSynchro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reghelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LyfUploadWindows\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser_1chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reviews/newpro.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuwu_ip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Head_Inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_tj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gsgl_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8beifen.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sethelix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biz_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7894\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssmouseevents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bogushtml_settings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sghuwang.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Disp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Real\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matelda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katherine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knockout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dollie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ng_mo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adamo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kassi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wywhzwl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pyzj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deldangjian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuzhistart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elephant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renzhen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Integral\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elayne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seven.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cissy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lilian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegUsers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tynan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommonClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/term\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Class_Ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetFluctuate2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_usercss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56789\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/w3tvars.pm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hmilove989\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_win\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SetClassPurview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_fw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetDeptName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/te_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gareth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nblife\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/had\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loppe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_exobudpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XingZhen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhqs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjfok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scorp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qybz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coppermine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwfb2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_detail22\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktoolbaritems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_setting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remington\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/17887.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuytrewqpoiuytrewq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zsbs_editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mlcfcccc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poilu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pthree_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webwho.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yulma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocinq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erminie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citrix/AccessPlatform/auth/clientscripts/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Message_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsaddd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rf101b\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MessageAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy_host\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouse_on_title\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shsave_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chifanok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsCategory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruthi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdukMirServer2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moppollsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fleur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shalom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiffanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greeee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_Admin_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_rc1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MakeGood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wsnba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjjjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inside/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mohammed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dzbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_create\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fadeTicker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tigerrun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070719.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_aspcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view-source\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gcylmirserver22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecitcarp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/module/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kusxadmin/ewebeditor/admin/login.pgp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristopher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newdtcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhmj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esat137.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eqwlCmirserver22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.htpasswd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/famu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alejoa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_vote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jannelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnathan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbnbnb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/C_About\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavinie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_editculturenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon/logon.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/as\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altavista\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_grmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ava\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thymewise050113\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urbanus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tujin_adm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyndell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaquelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userfaces\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjspflashfxp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diaoyong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashlen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_shop_LoadShopPic3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luck1144\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwx111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ff.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buysave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexiFlashFXP.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usersort_judge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_tableprops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rsfe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login_From/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwuf18.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli-cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linezutuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contacts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/uploadtest.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savely\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CollectionPreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_notion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujnibbbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ljjzw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back-end/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sessions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shannah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relaxwebbewxaler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diaoyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_class_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eucc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirsteni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mlhb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetMyResume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MirServer2.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guillaume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfjd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flip2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Looking4U\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nollie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fkyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminreply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rupert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzdata/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welcome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_huodao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Works_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awrq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pngfix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trustsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_info_lei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_r_blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_Adminchange\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pg97Trace.axd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_blog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/headpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juan731205\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urbano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/sf2.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ludee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzgy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/year\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/konstantin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oneida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/query.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_gonggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigmund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/176hj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreatePhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveaddcard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebTrend/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Members.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypasswords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Job_Top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ygeshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pmyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/design\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hits1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jillane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nascar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6ycoqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_RootClass_Menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b5ttyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mammamma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matilda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charmain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhsj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_write\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liubin1000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cinnamon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LockIP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CacheFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalogsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/DataBack.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marie-ann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Modify_Pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leobbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/import.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asshole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marilyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nettie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/ofs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jr2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManDomanEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Webalizer/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wow1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/adpassword.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfiles/eweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miumiu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DISPLAY1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanyinchouqian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyResumeJobseekerIntentchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~administrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradeapi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testenv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gift\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwds/bbdbmpwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewTemplate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoppmirserver4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_bank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/undefined\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musicplayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveditannounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/ybb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminisrator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuhuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomasa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showrecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_square\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redhead\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_all_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanghai34\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemovie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/Login.ph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trust\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mm.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/severjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trumann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocoon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlog_db.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sousuo_Yinqing/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e_menu01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_tuiguang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckxhtml_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Picture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/date_back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingying_manages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_Adminedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deljob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companyweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuku\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widenet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_ClassDelBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf11_qqonline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfsw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chengxu_Biancheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/science\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tycyjlb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableFilter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storedb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yumi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/page_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DirFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_fkIPgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardroom_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hnys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqnum.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_delitem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petservices\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makearchiver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_Day\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elale307\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhengtu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delemsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~widenet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shjyongjia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riwoniang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedropedro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/refs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kahaleel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drusie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reeves\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stillman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utf8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/PageReturner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yanzheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zacherie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helveticabi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/head.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sshadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sytd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/View_Work\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duanxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h_rc1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongue1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rjioe339\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plus_Tools_Magicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hand51\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq111111.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chicky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maynard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eidtin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hakim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfreak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FAMILY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Eofs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constr_stat_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groupmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gdvq3333.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phmyadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cull\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/per_jslib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clothesov\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsnroot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celesta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotel_Images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2ccc/uploads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moveclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnwz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_footer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hjp123p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregoor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Print2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebels\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/room\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifyinfotxz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giofrank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cgiwrap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorvald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/ccpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmodule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harkonnen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smile2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DG3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pthree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jrbrown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/names.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_archives_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errMusicList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frayda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pris_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqOline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovfu9.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgsrx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_UpVip2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hymj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microsoft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoforo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malissia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OverseasMarket\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteMgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_ClassModifySmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testdrive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OutlookTasks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinxi1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albertina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jx1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huansuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BestJobAll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marines/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendLink_ADDSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gretchen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/API_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Api_aobo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/campas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loveyou.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp-shangchuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111111/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laker80\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong_cs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifypr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_jswz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQCjb-JF.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alecia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Huanbao_Lvhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/createhtml_sz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paulger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RssNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dexilcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ICPupLoad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cal_make.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbscode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delxinwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wenxue_Xiaoshuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_items\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banneradmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkout2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdhm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0606.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdx-files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exobudset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_newsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/progressbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp_Admin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prinz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votedel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asjobcom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userglobal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PollAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delh_com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maomao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoamirserver12.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/december\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhh508\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinhan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Enpas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cybbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KillPostalcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Include/ewebeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.htx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/UpLoadCls/SaveUpFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mujuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gshalala\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encenc1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/exampleapp/docs/sourcewindow.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/blogdata/L-BLOG.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ws58oal6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwjb111.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innovaeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slb007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ramonda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kurtis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peyter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doralynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Human\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newconn1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet_client/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/channel_sample\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/School_register1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdqqq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowSource\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad2009/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup_4TajJI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/littlewolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbzk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellwood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChangePrize_AddEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jsjl_gather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Integral_MoreInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_mclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayResult2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ_INC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grammer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/data.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.inc.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s1230456\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fredi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_imgs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/Data.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senderror\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cvtzoooo.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/yundong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectHeadPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckplugins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logger.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editad_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxqg00.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sara-ann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reply_comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jiaotong_Wuliu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoucang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RepMod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagez/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BookNewsEditer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privacy_policy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savevipsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reserve_wen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/join_err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whlr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKEditorV2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luigi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin-bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableListAll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc009\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboutedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love_novel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sk_Session\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fielding\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supesite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_disk_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alleyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhh2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anli1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NJ_BroadCast\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/im\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan-4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mod_read\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuesday\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_yp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redirect.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhy2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/House_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_diarylist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_ClassModifySmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_install\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typeKillok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuzana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadisp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phyllida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerkicide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odrive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_menu_items\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CssHtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_yh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/wcqqfadmy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waydude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveBrand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bridgeport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/usergrou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workplanpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/perlshop.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatedownloads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_win\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offerlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shhump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TravelCityImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kehudom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pdt_Images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbslogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edvard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Board_Popfun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnoc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/di\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_code_soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/Emotions/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bx1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldous\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zxjm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vilhelmina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algol/archive/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crichton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajax_subject\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht05\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newasp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/dialog/common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malorie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_index_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diane1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaikuang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqcjp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/townsend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/bash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnny99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l;urette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_Site_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/con_article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evets\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ll.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vislpeng.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uuuuuujjjjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_ab_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELETEbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alistrefresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FolderReName\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bulk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brando\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/male\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w110024\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shyule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_24\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sledman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_vote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivivan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscodejs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_sql_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/examples/cvbeans/beaninfo.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdff1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_mygroup_footer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_uploadSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsProduct\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vo_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Auth/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parnell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fgjmmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CollectAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/Login/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jtkbqian.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_cplist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jennilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom_photnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beulah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conndb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Heike_Anquan/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/createjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deletemyresumechk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toptxt.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_Admin_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zawen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/flexform.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/301X26_1.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guqa119.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/credit/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diguo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JS2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wx5rjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vernor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felicity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mychannel_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_zt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_ClassAddSmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reggi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_mysqli_error\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsxqt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sscms/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PSUser/PSCOErrPage.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dooger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ManageAdZone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter/useronline.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iuuhqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torrance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elianora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/ws_ftp.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_jt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spaces\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryanty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listcall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lemar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kizzee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_singer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gp_js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_chat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cacti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gener\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furui15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stupid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_lockuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/adp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/address\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzlmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Dept\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cycw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qczh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosimo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/baikequanshu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_SetHL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Alexandria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysManage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddyxuxing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2088shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anastasia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biisky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_convert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydrMirServer1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Free\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht/other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/flexform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buding.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naoma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_AddUrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_11/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/asjobcom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/map\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_999/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_report\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/responder.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qpdkqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pfiuweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ItemManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sndfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddressBookJ2WE/services/AddressBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanleigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_RefreshJs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs861host\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about1edit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModifyPassword1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/join_edit_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderItem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugzilla/reports.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccev520.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Olprice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassDelBig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eng69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FLIQHT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delfk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invaderes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_diary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_DownStyleAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveUpload1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gs/plugins/editors/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_import\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpopen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access7/auth.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qvmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CANCEL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhouhuatao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread_announce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zixunmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_bbs_viewthread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_fwzn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proxy/loginresponse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Send4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rowland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscode1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq111.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webyx-1000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sifaka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_rc_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07flash/cm21458.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.lst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminqunfa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NightLife\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shellimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connshimeiad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sellstat2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vguvmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/results\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsxnfcdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CityMap1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baihe0604\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shj_tejia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/li\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klsm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/IPaddress.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classifiedadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billybob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/producer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aeriell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/btuz29.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile/UpFile2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_navigation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_arcspec_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register_Confirm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminLogin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/htsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_liuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pagelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savereg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irwinn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kendell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postinfo.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showfb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vasilis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/common/user_update_admin.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Orderofind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getmoney_poststar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newguest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ubblist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cw0jqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_infos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newstop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezsqliteadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drosen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ststems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getUserGroupParam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/head\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webgroud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/89kfqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveqy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TuDou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzxdkjzx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crows\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx_model_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/awl/auctionweaver.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foyqmirserver33.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.7z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indextop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fafang2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webquest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ciro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_House\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netadmin.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_ManageDraw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_LoginChk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caretake\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hakeem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmartin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lipinwanju\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Trade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_OP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxz6570\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beauty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stratus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxyt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doputimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/som\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config_flag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsoedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinglunll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sports/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypasswds/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delreceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/anyform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedvige\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ossie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpLoadClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookaction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zqnd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kayaking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painter99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_htmlqx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass67/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DatabaseManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabbit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sk_CleanCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system_del2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sscms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_zp_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gcAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalogs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listxianlu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_fsys1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/print_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjbkmir.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitedbase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testnext\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8CAurl11.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8?o?txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VIP_DD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchinfo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohiostate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Friend_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabrielle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dixie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/signin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sg22859\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DelJicar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad2009\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autovon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GOOGLE1bb9e40669bc959a.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inxrmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Deliver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadnow2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders/orders.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showsubmit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navSiteAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetSkinCookie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lqtnftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumCategory_fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add_Pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Pic_Modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disuser2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangyun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/img_adv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Lesson_Comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.dic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jorgan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guonei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transfer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Eye-catcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jo-ann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YHQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Locus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsToSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Supply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdavis2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_default_bbs_footer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_addfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maribel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blisse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stnias\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_vipinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VIP_SYQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sssssss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhh00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Return3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/example/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/della\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/front\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findJob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dklmcn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyjsFunction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TopicOther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5877937\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chancey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Paychecklist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxwm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shichangdom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_default_site_register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/iiop/ClientRecv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack-li\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiemeng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify_mine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shownews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HotLw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSphereBankservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shop_Login.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jami\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmhttpdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/FormLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SourceManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmem_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCompact\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glty1.76hj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~web900\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admain_guanli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pittsfield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpt/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cityedit_three\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oprocmgr-service\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh06\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vrf565\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obzhmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gadsgdsagrfdaf/s8sdaggfdsfgdafgdsg.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/live.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wellbeck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Count/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup_sys_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebTrend/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certified\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xczp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tar.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basilius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_14\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/brow/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Album\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alikee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwnz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delemailbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Limit_Fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plug-Ins\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyDownUserList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HrNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/ccbill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en_US\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/skins/1/Thumbs.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_constants\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/lasso.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwenette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_dy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mendList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monitors/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kqmain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Food\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchJob_Chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buchao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_GetPassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebManager.Net\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sande\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talyah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Master\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass580\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorraine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdateWebType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oooo.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aretha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdmain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adult/members/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgeneration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Abtus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/nph-maillist.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatehyk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/New\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/documentation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IE7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/migz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leopold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugzilla/userprefs.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhv84kv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elenore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_shop_car_tz4sd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/springer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union/vip_manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thibaud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mygroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replysave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delh_rc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_AllSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trainmodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klarrisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win2k-2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/mmstdod.cgi?alternate_templates=\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michele\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angeline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delsk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V_Domain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cally\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AgioLeague2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveAlbumComment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdvertisementDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yilin911\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JiaJiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gbook_Show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erika\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modelsearch/admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personeditrecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Teens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faunie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config_WinPop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kendra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/se_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/fckeditor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~web900\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/guangg/alibaba.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hysp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hortensia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nataniel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dpip4444.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_wenzhangadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_SendApplication\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SelectFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominique\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarrad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookpwdok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mm.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gtzlqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlbumCatalogWebservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rival\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSXPplay/exobudset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmeline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/nemo/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowexefmarry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnstl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/INSTALL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tical\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_Elite2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pictures\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_adupfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/applications/bboard/bboard_frames.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfusion/database/smpolicy.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roomname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latrena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harveys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateASP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rayner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sisi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenxue_xiaoshuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_AddAffiche1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hpwebjetadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/counter.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnfoods/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mystatus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewProducts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwer321\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choked\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_movielist4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUserImpeachView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agathe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k3wl3st\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access7/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminhome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tracie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_image.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jscripts/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clocktower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit_SystemStatistic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demeter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databackup/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zlj16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/content_areas/private/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PGOfficer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NF_visual_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaxhere\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treemb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ransell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lacey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meminfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase_LogManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zy1031\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_model_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxin19920102\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perso\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableSpecialNewsindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manlock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/DhtmlEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_h\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kokhuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/step1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admincp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nj8888\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killerwy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_vipfuwumodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/JAASLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emogene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BlogCommon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Scripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzgongjiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j2me\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/der\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fso_Index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orlan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmdz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Small_Fonts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_yu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/FCKeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfunction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcdn_news.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parsetpl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furbish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kennith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiggin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_inc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wglb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_10/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qmxxDef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_1/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bangbang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gateway/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DefFunction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurlie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hysp2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyj1744200\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajaxtabs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_updata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myblog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zelig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_person_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listshj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AnnounceModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phaseinfoop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/38\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/works\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucilia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjmoMirServer3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedecms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/bbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tupac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/conn.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxdnkj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melisande\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back_common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404/London_Matters/nito/cosworth.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shm_Search_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_spaceblogs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0gwxqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solution/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strlib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_add.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditVipCard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MessageShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sully\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_msm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6dhpjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_banner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Culture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwa1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_productEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expelval/sendmail.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/maintenance.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf11_Md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_online\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Special/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/component\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilarius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Wholesale_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_union\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qinhua/back\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaonuff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/epochp/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/logs/refs/remotes/origin/master\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumBoardAssort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ktybjp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emeline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzwq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hspiceecipsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheffie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pokey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/iiop/ClientSend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pppp99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sirrocky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/zsh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tailor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlfilter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommonCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treech2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htfb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_image_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck/_samples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sourceservlet-classViewer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs-data/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzxk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aztx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slbj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuhanflash.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diamonds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_hire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guaiwai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PdtSort_Upd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magazine1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gggg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ophelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editorAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/montecarlo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newyear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jonny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajojaiojioaimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dcyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe_syfl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/shtml.dll/_vti_rpc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usravatars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paysave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FolderFileOperate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finnfinn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrrand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card1/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TestFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oriana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmdqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iso_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dcboard.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_PayPlatform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yellow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updata_xmpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbumweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Syscode_Book\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duoduo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elnar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deltopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilove51marry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiertza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getior\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBadmin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.gui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onemillion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisadmpwd/aexp2b.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connect/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/yabb.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/album_edit_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdtj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckstyledef_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skelly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restless\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~root\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBArticle.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SexLz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BizDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linktxt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lolly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FanWen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylvia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/eweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slanadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fucklook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osbourne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VipExplain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableAddNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_prompt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Dj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmallList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl-5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel-administracion/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/input.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webicqread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/wtzs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IE_repair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blnww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katharina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dialog/gpy_flash.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataServer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_1/topicface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermesr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8config.bak/line.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederique\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workthingsmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commexec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/admin_l\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfile.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_AddNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r8oa123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leonora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/anyform2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nissy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Southidc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbnhmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/fckeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminlinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_tmp_war_DefaultWebApp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PERSONuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city/emot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comander\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evonne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playboy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rnd_num\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0r\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahmet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageVote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxgg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestdir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FTB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jm_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pearla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/widenet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temptop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/tao.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Part\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rorke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usershopxp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adcadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votedy2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anna-diane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ReceiveArticlList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c3po\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manger/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/rksh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riccardo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stupor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xerxes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_All_Regtime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managequebook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_infos_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default08\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMaillist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/che\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilulluli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rick1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_cov\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_news2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obtain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newRecyclebin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaopu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/import\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~cgi-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_files/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gdxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mail.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Play\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jedidiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfc4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sousuo_Yinqing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/db/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commodity_comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skelter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_singer_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nalani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmp/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enemy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0admin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ricco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23412.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bh99223\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_censor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log/access.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/britte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interesting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Adminmana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/mastergate/htusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Friend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ht/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kermie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowboys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mb_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selectNodes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fckeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_plugin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nillin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndexJobList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ypadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/edituser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4tqeqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_type_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamilton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/db/ewebedi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urphae\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romantic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcjw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Sendmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacetheme01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanlinlin4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/activitysessions/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ORASSO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_Up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetPostalcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senduser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hermina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gifford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recaptcha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_CommentsModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosalisj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huagong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webgood/g7223173.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/info/exclude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_Pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_Repair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rozanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/went\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mamie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Service\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuyan1976\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrfl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/university\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jay18birdman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuchu2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mytudi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_special\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empire11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uupp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dcba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtmzb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c3p0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radmin.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_newly2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx_Del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_tool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piccodejs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbfunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/enter.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_funciones/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsworth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_sell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/3se1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_msg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qinyuanqing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CityScene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-scripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cybersan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psave_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/nonglinmuyu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_select\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darcy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ozzie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n1va1h\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuploadfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/lancelot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserNewsAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mitchella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_SendApplication\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_pay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgzm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/key\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scyz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MacOSX\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reggis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InviteUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quebook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong271540911\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodolphe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaqing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/are\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldec_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_musicservermodify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queryResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor23/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_Part\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxs2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam._\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lainie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_ppgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/webcash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserPay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm@in/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminadduser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editorfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeJSFileList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/db/ewebe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_huikuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzhijy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hx99.orgdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ksdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_bottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showtrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PageTop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_WriteDraw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plvrjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CuteSoft_Client/CuteEditor/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Data/DvSQLLOG.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8sjlw.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WindowsClassic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_getpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiop/ClientSend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attitude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aprnqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/na1234\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mljr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drizzt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/counterfiglet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porno\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/label_funcation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gi-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jypd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PHPBB2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InsertDownLoadFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graham\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_tab_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~dmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_inputfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retrieve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/*\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/event.ng/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdllqq2010.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_email\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/eWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banners/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanxx.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xml/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HTML\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hetiji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowElite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Client_Index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maitilde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c4t12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blondelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbselse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zelda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sinclair\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delearn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserAncTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aviva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e_print_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/finger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/Include/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gratiana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toagent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/os-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnnnnn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwcl2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ettore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserMenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_make\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33856,17103,140\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speciwaluptwload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szp7914\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wshzjh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n7fmadmin/editor/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_pnew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mssql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BoardSetTing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yumingsq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddReview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checklogo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zltx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/post/temp_smiley.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/dbmfiles/users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onlinedd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downnews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgpy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardiner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annamarie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_mb_so\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lh20qq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetUserMoney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.wjw.cn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_zx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recruitInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SpaceDiary_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jokeimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zylf_font\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creamyou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ywxf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drusi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/HEAD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Trade/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpbao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cw_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm1n\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/connectors/upload.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsclassedit3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cwjh_mian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_cm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members-only\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tw_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adriaens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_table_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articlelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModuleShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_prefields\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_tool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/au_tool.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Picture_Del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chanclirc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AcceptJob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garbo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play,7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Timing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiss4love\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typeedit_three\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imges\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarvis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhlt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reeva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ur-admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ListCompany\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwdt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byhld\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickens\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/build\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyfox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-exe/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xaviera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_area\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djmusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vegas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderTrainLook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/db/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atwp4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharontaylor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminreports\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morelink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raffaello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basketball\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/admin/admin-login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/lancelot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default03\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/27.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laiwei790824\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tiny_mce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumbz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UPIConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CARAMBA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ModifyPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinshen2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emotional\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wizmysqladmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ticket_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathrine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myphpadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silvain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Payment_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nadz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermodily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sebastian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebVT_Codes_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images111\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj05\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en-us\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_clickcount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmbk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyyw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rettung\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc_see\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContributionAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_chms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transformations\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarlett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenyon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js4628\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rewpuninf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_1/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsuploadimageok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domyinliang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wodemima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t76\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminmailchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CorpNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibeal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_DownStyleDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Usereditok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscommerce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modestine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdxtet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getcity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/livvie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_details\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanouok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magdalena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Global_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/language/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EuropeMirror\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonaccanon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/.htpass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpsc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fee_total\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maillog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/wwwstats.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/products/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kanxin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/votebbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeNewsInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margalit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hslj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/security/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardware\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tish\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geneticg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinglv2179226\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwlw2222.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MMWIP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/P2P_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_PartManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdj_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemInitialize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chalmers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baike/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clsrsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchJob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasheem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.76.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo_pic.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editflash2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssqt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SiteFocus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touring\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setcolor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whym520\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treech\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showhyxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor2.4/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_chms_module\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernhard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpSystem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maingl4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/posthost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/11x14.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mytag_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petronille\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PlusList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olympia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamerw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js/js.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wags\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Information\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_preview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Test\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BIGGUY25\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/uppic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/italiano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyszrpop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gropes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Main2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backagai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Video\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usercenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AboutusCooperate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Index_Music\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_Tools_const\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sAdmin_Option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_PhotoModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/data.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownloadList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkgky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stinger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allianora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cm_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YinShi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regagree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj07\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chodu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annemarie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/ty21458.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Favorite_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/financedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrators/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhjd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_logincheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/COMMIT_EDITMSG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liststyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Headad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfjkl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/PowerEasy6.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cls_System\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dayle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hywindow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tildie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balduin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/1X29_2.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/posthtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvstar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/album_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfdocs/expelval/openfile.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comments_ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selectchatroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nothing\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ubb.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/114_search/114_s.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romonda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_MailGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gov\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_payonline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEARCHOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.chm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comi2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fybj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ur-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Show360List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Campus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deleteuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_templet_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sshadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe_jytk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/dababase1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tushulist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DPK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billyjoy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/pic/face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateData20030816\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chowari\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_news_pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fredric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ringtones\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access_logs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/wwwboard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpadmin/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fictionfiction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_count\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ysdldb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Buy_Other\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/ax-admin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_lookmeet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/finger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohyeah1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damaris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zljx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Pop3Func\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CheckPurView\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ctospath.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/w3-msql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_showpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_Md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/wwwthreads/3tvars.pm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatebbscache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stm31\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/admin_login.a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toiboid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marketa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kqleft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delmer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toupiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do/webeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vbqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lighter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halsy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_sale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_house\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Newpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveshjiainfo2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jennette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/first1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renzhi_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/let\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyAssistant_3_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pearl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tammy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoffer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vti_pvt/administrators.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sattler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Messager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/lookwho.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.srf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ygvb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_lovewall_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_database/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/services2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/st-Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppmate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/SysImage/emot/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DhtmlEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txdyw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golfgolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/btg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Dv_plus/IndivGroup/Edit_Plus/FCKeditor/editor/dialog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travel/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8Trace.axd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigguy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fk8bhydb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_4/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdnlff.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myf7501\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hercules\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertram\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jewell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiumirserver12.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Module_Logo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ReList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nrmvn.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stef13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysCheckVer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wckmee.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjstat.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezechiel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newdown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak_step4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetBrowseTimes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masteredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WinXPSideBar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hackersafe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Indy_admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/dialog/fck_spellerpages/spellerp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mybbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freemon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addjiameng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chkemail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Comment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rici\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_meet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conm.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freemodelv1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/architext_query.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/65/exec/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowPerson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huu2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floatright_close_new.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/meta.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yz_qq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rencaiku_c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/banned_words.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_roomimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzf233\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error-log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_layouts/alllibs.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecrof\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHOWMSG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thiam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectManageDir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lj7200\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toepmir2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edgar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kalvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izgs030.acv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hermon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alisander\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshop/templates/cc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-console\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/ybbcode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SMSM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/face\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SubscibeMagazinechk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gameloginnext\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BOADMIN/BACKOFFICE/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_secqaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrot_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tfot_tp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play_rm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub_httpdown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firefire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groans\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tfpnwww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GameOfmir.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qingli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Structure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laetitia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlistings.x\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pissed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dapnmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jszd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txt/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Local/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LCXC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buffy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guandongzhu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MYPHOTO\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plane_Print\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RoomPhotoUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/messages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conCommon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domgaiming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AdminModifyPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nadya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwhfMirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czxkmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viewuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papagena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetim.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usmc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blizzard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site-log/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domguihuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/450.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Montreal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackey77\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/views\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whdc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_softerror\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asa.tmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7719\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mastergate/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdlw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prince\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oauth/signin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cacilia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ALLIP.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fawnia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NTadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dir-login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/29\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pollit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/static\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tudor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natalina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ezshopper/loadpage.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginseller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Soft/hack/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cityadmin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiqiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.svn/props/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_art02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sample/site3w46.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydxzdate.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PDOG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timeOcx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv_playview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_area/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfiles_base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addwz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forestwolf2002\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/14.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/send_zn_message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_DownStyleBrow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/changelog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mitchel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jijisky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buttons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productGuanli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classmana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbzmtj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pammy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ploybottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_changehw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maudie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/dvbbs7.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.domain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AL_AddressList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genesis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_corpus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdnews.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secured\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/c242/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RuneFactory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kbstz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_SendMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/into\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_dbadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_user2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Set\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/item2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillier\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_kuclist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baibian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/webconfig.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.md\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dionisio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dahlia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catharina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SENDNL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dingdaninfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsnetcom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/life\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_dd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangye/dianqidianzi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owed9999.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/status.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimg/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinks2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs/reserved/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum25\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TDdownload/2cccbbs.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgAll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_board\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minixzt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blancha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linnea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunny511\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manlockok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum_ads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thatboddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dht\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diarmid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/home.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolanda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommentList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlpanel.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jsjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nannette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images_dir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doc/stable.version\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/11111/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb_images\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaylyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qjtsjinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surgemail/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_9/mouse.ani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_PaymentType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChangeLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorthea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alibill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hbh_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztkeyword=memo=\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimmi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giveme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fristname\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj08\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_link_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dms/AggreSpy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddPublicFolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clyde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kanghui121\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z395691960\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/16371.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007-3-12-QQB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pubclass3_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epwd/pass2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audrey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lesson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whois.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addkillerok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sale_detail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwwww99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textcounter.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isidor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageguestbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susannah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_write\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osalpassword.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_3/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site_map\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckselection_ie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_general\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_groups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manages/edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showtable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiyue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esfxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_meet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asax.tmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_logo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FENGYUTONGZOU8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Clinic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picpost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SoftDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timotheus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upFile/upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MONEY51\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GGlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtvsonger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kadianshiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/450.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shihemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valerie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ob0xupfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NEWJOBS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chetoon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhxljinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datereturn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcimages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Seo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_goods_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdsf423\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touchme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu1n\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashimaashima\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/config.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slavescu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_Video_All\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/door/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs_user_design\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2007/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Photo_Update\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/focus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastporn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_html_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lumber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindemo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jusat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engage_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrdinaryFriendLinkModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveJsFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oordir/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Xhjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_PhotoJS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdstbanben.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kl100\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/html/admin/ch03s07.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ruth6199\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbc/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lukesky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corty_1_dg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveuserreg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmallClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituserinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stracen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_modify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cinema\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ2008jhVIP.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diqu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jspx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxzxzx1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cccccc1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwfb3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosmunda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florenza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLoggedIn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_forums\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DefNoteList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaccaria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wqw_qhwl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utility_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mali\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newscode-news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer_save_hack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.idea/workspace.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neely\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_class2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rspr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alphonse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/dmr/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ruanjian_Xiazai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php-my-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staffard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crzr888.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_2/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_forjob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melamie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oplj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/author.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/zuqiu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fergus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ypms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rexue.txt/xue/rexue.txt/rexue/rexue.txt/xin/rexue.txtxinfeng/rexue.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcmayireg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyuw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/components\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_announcemana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yangling\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_feed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addkeyWordList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infosafe/123456\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oleditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jason\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shops3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Service_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/New_Info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simpleLogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myconfigs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/STONE11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baylor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog0029\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flagAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/localupload.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/spin_client.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xldj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiquita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_yanyu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tibbar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call_HotSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Searcher_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgq1jinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveaddjigou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofolmir.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_car_fabu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CheckPower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jianzhan_Sheji/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infoview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CAurl11.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownError\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherlyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaughn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maoyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/living\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enteradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rryy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usingdonews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangzhai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ms-admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsoftfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webhome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delcard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jscript\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philipa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tingkey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qichetupian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conway\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cbmsmxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resources.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/luntan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel_show_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckLogin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kennan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crack\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myqqpass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dougy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BookQNewsEditer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/All_Label_Stock\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cesar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servsic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_site_register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/postcard.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bills\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gundong2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/emot/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alberik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dream\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/htmleditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiadong1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwds/main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rfecejp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeLable\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_emailo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_editpass_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MessageFind\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DelContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjmt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/SimpleJSP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benoite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqpassword.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathilde\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Addnews_submit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHATERR\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirrors/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gswh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_select_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philips\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.sessions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newU69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nathanial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyyjoy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/break\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labelsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ershou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NJ_Category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgkvyy.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Album_Create\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elfreda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/style/4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amin33\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gearalt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emelina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qsbgng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkup/sql1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/big\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintext\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bessie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banklist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinfengweiyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leier119\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newManageSpecial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kongjian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wewewe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AgioSmallAreaType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_JobAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Part\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resize_image\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sohujobcom13579\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DVBBS820_PK365\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rick007\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_Ask\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Rec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContributionCheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.printer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq/qq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/padget\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queenie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangzhan.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editreply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_12/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muonline.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snep\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4_colon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pu3.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wageinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntan_shequ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bay123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/november\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshop/logs/cc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adsystem/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gadi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jagger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authenticatedy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/app/config/database.yml_original\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cc.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LQLQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faqShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TOP48\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/browser.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrbl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Jobs4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raxrily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8web.config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgspencer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clips/userdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ControlPanel/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365.wuhan.net.files/club_tuba.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PostAttachment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jcscnewsPicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Indy_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msn.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanghai31\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.access\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lvyou_Ditu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarrah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leafs17\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/20/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testshtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~dev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vr_url\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painpain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/il7tlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helveticai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bd.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notouching\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/search.cgi?letter=\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lokar1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scbkmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templeton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krishnah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrdinaryFriendLinkAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwroot.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian31089\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/refs/remotes/origin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/counter.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_showwar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thadeus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Survey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_S\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luhygm.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mondayyadnom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ysym3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tigvote.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjlds\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Southidceditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trueman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hypdok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kahlil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangjin01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_selotion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/name/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchvipinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadDoc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwwejb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thuy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letitia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webbak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inputinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daisi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WEBQQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sami529\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.unify.ewave.servletexec.uploadservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lang_Stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mzwc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztlyxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferguson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShoppingCart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_9/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dd11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotel_ShowHotel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delebbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webdist.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gundong1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~adm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ptfm77.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cankao/chuxingcankao.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delcina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kvjhmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dguide/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_lm_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dingtong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleonora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/epoch/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjhy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaa.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_change_newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cyborg1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkcalendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepsi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writelog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookUserInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frehley2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermentrude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katusha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeremy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htpassdir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADSFGLKN32KFB/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/japanese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanlinlin5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmdt/create\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Datas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wsyabc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fucks/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_13/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shurwood\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elway\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bd.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/z9v8conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iredadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depKillok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paragraph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mshyarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/society\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_InStoreroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Index_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AgentCardLog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_AddInterface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WUPIN\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichat.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easygo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rerand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgetok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redux\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fgklb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necnec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouqu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hohot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909_control/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buckeyes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bwbamirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syxj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/items\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowledgelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puller\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tadio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/secure/private_key\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kultur_84_more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianhuarenzheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addnote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShopMgr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_SendMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyndel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_recommend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_meetdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07flash/anli21458.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delaney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzkh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ephraim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honestyman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/space_upload_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TriCity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IPS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqxiangzi.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxxhyper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henian1912\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forfree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_rss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminarea/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dataabc/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmkijinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_main_3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AlbumCatalogWeb/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjjjjjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/default.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/das1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi127757\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruofu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhxw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hcdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tatiania\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fghytjyjjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loveone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/below\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldec_productshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexbak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clientsadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diqu/yazhou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/All_label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testtest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassandra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk100\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/og1blog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reedhatcher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/board.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nlsweb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/22X26.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nolan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sybyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brunhilda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yelena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassandre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsurl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_Lesson_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/architect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlc12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Upd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chrome\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/phf.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aabd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GuanLi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycya0c\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjwz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CopyFromPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuckyBoy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diaocha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.aspx;.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pm_client\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bljj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edoh25.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmingx0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucclmirserver5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lori\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opennew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showtb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangjin04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectPath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hqpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasonjason\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsletters\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Managers/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveInquiry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zlp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addhotel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elliott\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feige\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noelani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~ibill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fidel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LocaleJob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Modify_GBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcdp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqkefu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fcktools_gecko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ProductCreate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netherlands\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johannah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addguuang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_promote_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passWD.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttt_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readdebate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tripp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LarchivesList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_updateAd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wtsjd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Foosun_Plus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingyue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rowen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qzqq120.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DomesticTravel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palupalo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signin.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/cart.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certificates/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager2009\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggwgij\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mswb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ResumeSendOutchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_image_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ommx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_smusicmana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dur\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelpAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diggit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nxk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sauna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/STONE1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VS_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winfield\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teressa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delphone\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database2009/sql2009car.config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merralee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qxyymirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Popmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/credit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web/scripts/nueditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/products1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/48\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ent/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchbuy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_startup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leibie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ystat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editrewpuninf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kefu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenxueedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditBox/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_xzmanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftiens4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv_process\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlistA\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q1q1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dig.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basic_class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basilio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabatha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joaquin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/account.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/id_rsa.priv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_HotelGradeTypeManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_mysql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_mingg2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/login.rb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hduymirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/HelloWorldServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morgana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margareta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mansuper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirstin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hahaha2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/markp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csdf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LISTBAK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_meetdel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/wwwboard.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_Config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XtAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhhh.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaojia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blanca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top-me\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nealson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auto_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postfunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awardAction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pmsj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cayla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyuce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_yuming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/award\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sessionmsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfybok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airenming2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Headpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Citrix/AccessPlatform/auth/clientscripts/cookies.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TopicImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_infoview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_confirm_jb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/logon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MemberGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rightfax/fuwww.dll/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trudy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arealist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movepost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desmund\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vadmind/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marve\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_train\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macintosh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ustorekeeper.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datastate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaclyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_const3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scott\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joeyjoey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corbett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/taoleba2.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumBoardDelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randolph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sallyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t79\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjfzfyok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ENG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salokiu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestcache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysTop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Shop363/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vernon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statrep.nsf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/login/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiaj123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbslogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webplus.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleProperty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martica\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darryl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poslla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sealove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tadeo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PORTAL2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/4998.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ywfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UnRegulateList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/wwwboard/wwwboard.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdsTip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver5.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usedhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_GetCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Addcollect\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baikeq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GreenhouseEJB/services/GreenhouseFront\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_qiyemenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5f68t9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_ontop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/manhua.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Options\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deidre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pasha1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marinka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marline\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkjigou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theology\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/details\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/include/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/date.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianemarie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myrle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pptuijian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goods\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jqou123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaulzhu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erhart\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skywalker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_newhouse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwrool.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdabmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flying\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkreview3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lissi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_editsub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldric\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woshihjh178\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acv.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_mop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzznh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phelps\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topicwithme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_SoftAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sitefuwu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrianne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PHPBB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethyl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diyoption\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chef_cp_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_cellprops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmach\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elicia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e8oqjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/again\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_messages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LogoLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garden/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fulvia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Searcher_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdminGroup_Del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha_table_all_z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv_playview1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wayland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fester\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Weather\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpccheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yves\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gemini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/gbook/gbook.cgi?_mailto=check;id\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aindrea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currency\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_login9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mwbqmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czdj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_CommonCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servercheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_take_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leoine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FyLinkin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romeoromeo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/octavius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PrintMessage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proII\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_areas/log/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downloadz/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/off\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlook-like\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mesut\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ExQQ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addbk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Databackup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitvisit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminPersonPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shops1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tas\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gkln\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_file_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finnnnif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marketing/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/logs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/webplus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-app.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Admin_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profiles/standard/standard.info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wimp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_sub\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rvwgmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.ini\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pietrek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userkill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcpmirserver.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antoni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_md5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InSide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_HotelRoomOrderManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_create\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcde.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gswup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/css.css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardMaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fahai00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ody\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filmdetail/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hildagard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tttadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izmwmirserver22.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sudden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Flink_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Systems\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RefreshFunction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dagoreau\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dslr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhvk139.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wap_global\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code_encrypt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tahoma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sammy1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaguar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/upload/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordercheck2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHANGELOG\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdnnis78\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Admin_SoftInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archambault\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doctor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_vlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/sql_config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/dialog/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_Group\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mignonne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PayParam\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfiles/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nijxhello.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack_loginform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheslie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purchase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_channel_unit_functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mazemaze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juliann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/US-na-tzu-js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kidcrazy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/animate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issuance/inc/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Specialty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiangbao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jendoodnej\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rank1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/black/template.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EPay_Send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Class\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmxqqq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JSDateFunction\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tracer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiazai/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freddi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article_print\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yahoo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ericha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kankanba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_typeview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pservice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Office3D\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cimg_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuma_shishang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keywords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ipf/etc/gfw/ui/pwd.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin_CSS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor1/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log/dbfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/news.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webtopxin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_car\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orbadiah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LableTodayNews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ianthe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelaide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marryking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wsj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gm/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_choice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jorry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_countliuyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmzc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crack/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hdsz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francklin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/phf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timesi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamemailS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhisaveDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tinymce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDVOTE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_productadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meridel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/_samples/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmytrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andriette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvplayer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printenv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cash5188\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Label_styleread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Edit1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Xp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blakelee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendSiteDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usertop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonggaotongzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/lb/qianming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gubin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kees\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ylxd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyAttme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/logs/refs/remotes/origin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommPages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/.wwwacl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_alldel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/T_44\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CreateHtm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tt9jlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_index_mb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company_count\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/space\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b28745\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FreeJsList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_spacemain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matrix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assistant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trixie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pandora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxpsmmmm.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MoveNewsToFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DKserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hotel_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Filemap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitgffff.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_class_CheckUserAgent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NS_Public\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjj10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class2wei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widefeet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_downclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/samples/query.idc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ContentImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jocelyne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Company_EditVipLevel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/not-there-1.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jonathan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_stuff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrenyche\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowAuthor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title_icon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jabo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/STATUS.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Main2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addpro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zsazsa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ploy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpg_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbar1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinnie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resevation_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQCjb-DJ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8qq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack_calendar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/~ccbill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_List1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_infodelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admlogin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Service_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delcar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calhoun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tttttt99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtvplay2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveshjiainfo1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updatemp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gotourl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/orders.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uguswwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_datamanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JsModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin21\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assets/js/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PublishJobs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_House\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveworks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagesYao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zn_message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/una\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newimage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bianka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dfde5345\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System_Actionlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tree/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daimatong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/pass/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/67X31_2.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_tech\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristoffer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfkgakg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_DynaCacheEsi/esiInvalidator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diane-marie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i_feed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style0\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompanyInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserverb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyResumeBaseInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_lm2_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BlockDelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_infoadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nabert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setforum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_12/birth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsLoading\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batsheva\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/signin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guy0503001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbseven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PlantsByWebSphere/docs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preview_chinabank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugues\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hypd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexmid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riposte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/database.yml.pgsql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleShow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimball\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/show/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqadd1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editcheckinf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_cateforuminfo_19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuanqiok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gktc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/PowerEasy2006.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45678.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftpold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpjs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butthole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosalyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GXGL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RepairAnnounce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkwen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bank_sort\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwcxlj.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxbm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbAdminedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jftj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/log/nether-log.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my2001\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treedisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marsha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addinfo_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funding\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminforms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lhmgftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8moyu.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mattie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Success\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guanli-cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetDmPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg_Join\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privates/members.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affiliates\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addpr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_fpclass/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roomlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin711\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Searchfastchk_0000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AboutUs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_export_rule_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.cfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city/filetype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lx1213\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6xay123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webpay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hssb-wh2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willy57\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Article\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ypxmg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanchette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/iisadmpwd/anot.htr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delphinia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/@dmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_old\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leftedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/j79ufadmy.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music_song\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keiinew/phpmyadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FindAccount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/db/ewebeditor.\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sstock.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_select_color\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he-xlb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_Base\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocacola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlcw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestcollegepicks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domaihui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_import\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReFreshSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_flea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Home\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djplay_flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQCjb-YXB.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyl4686781\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torrin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ximenez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Larchives\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vies/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivkah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminwg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nimh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_Channel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bydand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richmond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.administration\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_sppm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2bsys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_music_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/showcode.asp_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playaz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poison\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/store.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nuvola\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/braden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mliveadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynnell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/sheying.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivonne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum29\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ModiPwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/red\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kbqc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Email_Inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_index_area_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhuafanga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0d95jinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Favorite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyndsie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paste_word\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pfieffer.bat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search_gj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/27pujinhuQQ.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lizhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/FilterServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fxngwww.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/home_61.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anna-diana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senddocindb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yewan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eros\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/35\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kmitaadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/ezshopper/search.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_meetmanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwcx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cockand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_LoginOK\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh16\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingeborg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html_data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fahrenheir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum9\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-redirect/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/dbase.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birdman2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheril\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inigo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Etimes/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pippa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoshana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jlrrom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjs962129\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/globaladminv2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admins_popedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_quit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fengyi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moud20\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_4/bar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_Pop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pamela\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_Complain_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MusicType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spellerpages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogoumai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mawhole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminbjtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomasin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffff1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managemodule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vxmvwwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/btplffff.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectStyleFrame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/dig.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trashcan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rizwan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nappy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Test/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engelbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JL5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssss.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SITES.INI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.gitignore/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_previewContent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_diarya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/dhtmled\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv60\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wdznjz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yryj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuziren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kally\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_properties_common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_gsjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/db/pzgcewebeditor.mdb/images/dropdown.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anime/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_movie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxlc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_privileges\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamas99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skin7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siegfried\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kellsie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stefan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MailListConst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsChannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipvip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franknfurter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggtu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pipifax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Check/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boogar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin09\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piffle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zhaoshang_Jiameng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budancheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imgxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crnj99.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_announceadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradley\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Card/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/textcounter.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mangeredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiuxian/youxi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Doc_Inputo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HX_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OrdinaryDelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cameron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexqy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelaida\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aoli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClearFavorites\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Tour_TravelAgencyManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabrila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanser.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plane_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedrss2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smartadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhan-na\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cmirserver8.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSXPplay/exobud.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tohf5555.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waldo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_copyright\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl-3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/style/2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfgdgs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinlun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.ar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.ibm.as400ad.webfacing.runtime.httpcontroller.ControllerServlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gfwl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Locale_BaseUpdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TransferPhoto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webnet2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getsafecode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_auto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bullseye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yu460318\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readchapterall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditProfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MenuTree\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~lancelot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_usr_newcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_typeunit_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellsworth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqlive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminPage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradeinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yhguanli\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pshenhe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaoyao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadlee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/20526.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_links\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nissie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/1025.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_flash\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpg_zh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_modi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trustmaster\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit_web\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/shtml.dll/tstt.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iiiii\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joinserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fxp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_buy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/united\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASP/cart/database/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_private/registrations.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cngpjinhuQQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin868/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rugby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newtopic1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/averil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsbeth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_sendmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/secured\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hz514\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standford\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jorgen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_JobCopy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao85713912\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ara\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salylza\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textcss.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/passwords\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guodun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CookieExample\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/for442\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bscxshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/private/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IncNewsSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bibbye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charmane\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_infoedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christean\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duilian\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_Moban\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qinhua\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/db/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Dv_skin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_export_corule\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/searchBar.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content_batchup_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sozgftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qx_table\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FriendSiteModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lihunok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanagesavePicture\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spartan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicolina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joenov\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1w02qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mustang69\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Travel_Lineall1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XSQLConfig.xml/robots.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alisun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baogang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caril\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facials\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/signin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats/access-stats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contentinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode_area_cateforuminfo_13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x364300\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maingl1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimg.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilemng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-bin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zlfc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewclip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_InsertMedia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunshimowang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tymg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Teacher_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderCarLook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyxlxm2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvera\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yung-hsi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyndie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysStyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dayi_reply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citrix/AccessPlatform/auth/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebSite_Source\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_help\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Vip_Confirm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedwig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Best\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestcollegepicks/login.a\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminarea/admin.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DownLoads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_TopManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goose5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giralda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.cvsignore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erhard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MuOnline1.02Q.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_check\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditorcode_gecko_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Editor/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tweety\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjjzmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide_fid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaja\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picture/getfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maryl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tevxdata/mysql_error_trace.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFile/UpFile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daryle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZHUAN2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olympie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/College/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mimi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdwiqq2008jh.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/sysimage/bg/christmas.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kippy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_OutStoreroom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banneradd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwds/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb10\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tab/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beachboy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TV00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit_Plus/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Job_\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowClass_Menu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdy-shangchuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ani\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoptemplate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morgen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tushu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BM_BookmarkGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzjc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_manager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comm/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walther\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leona\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alidia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyanqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fu656ck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingelbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/china_GetCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_member_diary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db51zhaopin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Albuquerque\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhanshou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Oldbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AboutusPay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administratie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xltm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbbb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smiths\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lxh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaves\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orioles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leftpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReviewUrl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdsd.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitupdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/db/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falito\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ResumeSendOutmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/li1980\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editdns\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/session1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manga/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gafx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toyota\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewgbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addsoft_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morlmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eustacia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamqrah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thginkknight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile/Upload2.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fredrick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsdr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softdown/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/langston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgsz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Visit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kultur_left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruttger\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josselyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dobetter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bywq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/pic/4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/666666\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makehtml_js_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_answer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PartyPicList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xcs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_OrderAirPlaneLook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Admin_Index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Content\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fee_success\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Conf/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debug.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/killip.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tryread\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirtyy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duxrmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadAdPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccbill/male/password\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cat123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Click\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typeedit_two\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maureene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expressInstall.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/WebEdit/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ArticleAllCreateHtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fckl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Console/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~guest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hqfti.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanessa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyanDaoru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardtextbox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_tem1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_tablecellsplit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_config\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bins/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwkx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewiss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othilia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giorgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy_shop_LoadShopPic1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fons\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daveyboy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/~etc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hr_Search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/shopper.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faqs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jonie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ONLINERZ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365wuhannetcn.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marquee_text.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jdpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_dongtai1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puguho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iolande\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wcgn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_document\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_usersys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siobhan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willie1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syl1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserNotice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggsj55\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzhb.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_c6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6072668\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_EditPass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Constr_stat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_MailConfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Supply\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjx20082008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NK_SqlIn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earthdog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newindex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yjdt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michaella\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SpecialDell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fprint\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sojourn.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_spfw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_frame_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_pvt/service.pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiazai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luck29\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbaob.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8passwords.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessPlatform/auth/clientscripts/login.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjuvmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ehz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codybob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexjy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgdelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwenora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blythe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharron\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loot4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infomana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/App_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HealthBeauty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/css/gpy_editorarea\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PostTrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosts.dat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opc/services/BrokerServiceIntfPort/wsdl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoebizz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/dumpenv.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flinn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PrintOrder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DvForum/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_sale2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Frendlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newfilm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omero\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzzzzzz2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Related-News\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminPeople.cfm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Manage_Register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cled5.6.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.dbf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8Mz.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georjoejour\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LJMJ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addyes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wallis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zutuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_toplist_digest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirsti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmins/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lindsey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tycycwbaomin_123data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Default5526\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/before.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nadeen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiangshixue\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf11_GetCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomorrow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he1p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengxiaopeidui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kamilah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moduser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co_getsource_url_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessDB/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardroom_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addMusic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InfoDisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madelaine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckdialog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WEB-INF./web.xml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bencandy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butfunk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pennie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_ads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenlife\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paulie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_sys\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guiding1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bren\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geraldine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_rewrite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gb/register\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/126.com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saraann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llkss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sago\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyber\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delurl1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anthia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zjqg123.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onetrueman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JINZRMB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fxj00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handler99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jecho\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtchmirserver1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smile1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skyler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_vip_daoqi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxgtw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sldm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555544444\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/IndivGroup_Upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/default.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Eshop_detail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masteradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ricca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/results/fckeditor/editor/filemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariquilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrvxmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrvpok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.htaccess.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dggsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/princess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readonly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clareta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrare\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCp/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdmSystem/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_Add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djcross\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerrin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searcheredit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocomon/includes/fckeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_aut/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customers.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana-bin/sitehtpass/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delainey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zhuqiu_Shijie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yasmeen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yy.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/z9v8dede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shijian_chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_jd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kermy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admintest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ordersent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jstest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/npc15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdkey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dev\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yul\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KingServer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atlantaatnalta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/documentaddtype\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao222.net\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassModifySmall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/11426.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_caiji02\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilander\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byrom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mlearn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_view_db\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynnet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pma/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teriann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunc/scyxx/wep/dialog/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhcp_kqhxq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.sqlite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BokeAdmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuangbei2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ADDbook2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llllllssssss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images_upload/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schott\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mofeiimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maruko\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galeria\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wildcat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yntc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fafang1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosalie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sidonia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReviewEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leland99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wylma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xenakispro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/HitCount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clubjoey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leeanne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buyserver01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_ven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giffard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/test.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shengrikuaile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imbtmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personnal/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abelard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DJPlay_Movie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prissie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb15\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminxxx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Make_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avion1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stefano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viviyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search97cgi/vtopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disptext\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassAdList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_photoview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacenta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_count\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.shtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otiscat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/redian/webmore.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installation\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saint1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.tar.bz2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Admin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oocwalert.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_userspaces\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fes5234\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wire\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clubconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/ccbill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock/company/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hands\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_article_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cls_award\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBSXPplay/img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liulh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EnterRoom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saraha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leticia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimitri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Play.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/eq.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackjac\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rurik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/korrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dkw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mohandis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsmanage/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api_reponse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huangse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ks4.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_AddressList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openwin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wylie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MirServer3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Edit/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feilei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbidden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evasmore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sabek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminDeptedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beiyong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output-build.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwrd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dasha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emlynn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dqlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city_class_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Maillist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dht1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum28\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ClassModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_COMPANY\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yorgos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HXMYDATABASE/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/registor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/logout\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joshuah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simplecommands\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rse2540\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Get_Password3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quintilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Asp/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobchanginfpopedom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amerigo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajaxfunc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FireFox_Reco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_document_Upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheeler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurleigh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vaclav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ppnrmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GreenhouseWebservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clj725\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elwira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access/htpass.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/St.Lucie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forrest\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Post2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/movie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfile1.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janssen42166\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jxs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan_body\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hjadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Switching\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Keji_IT/index.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frag\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entertainment\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sellstat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Score2Money\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gps351\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~dmr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fooddetial\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rtwodtwo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tigers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackEnd/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cymbre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxxobbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwordList.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drbear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teenssneet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9mc3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newEbiz1/EbizPortalFG/portal/html/index.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ApplicationProfileSampleservlet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Js/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmencita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index_LogoLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azrael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ad_Manage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_tongji\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.cobalt/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GoodEdit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft_Admin_bottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rocky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SetCache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcd.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicegirl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algernon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin750\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/VERSION\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cory\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allyson\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/www-sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fyrdweb1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_userpage_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Template_CustomLabel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darcey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_shop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhmima.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nei_fc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdisplay\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_copyfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/images/manage/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_shhu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Adminadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Other_Ads\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Top\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AP_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pavel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkpwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Bak/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin=anything\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UnRegulatenewDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/access.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffff.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcompmap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admingh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsnew.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/sql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackhawksskwahkcalb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_member_amity\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo_sysadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberfiles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/a_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announcement\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/end1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.git/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PreviewImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selectFile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_InBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berte\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuszcm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rlkvmirserver6.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uuuu.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buqumirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_11/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/projecttj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Info_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tresa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/logon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_PreResume\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd631_img\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/be322b11c3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eunice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swbltm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorolisa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_news_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jgl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person_Info1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member-login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addWebType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gzbl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyyyyy2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nefen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paolo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diqu/dayangzhou.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zlcg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10748.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/193X24_qt.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_mpreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articlenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DJPlay_rm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pussies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brien\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdsanchez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rheba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wlmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flexscan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chipin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqpet.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.grc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SlurpConfirm404/australia.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addtongzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/28221.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BigClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_add_Conc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_paper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sm.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajaxLogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heath\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ifon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tdxm9999.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4ad/wuhan1114.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alphard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_sort_news\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elora\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thaddeus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convert_string\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webflymp3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form_hidden\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Study\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list-cgi/counter.dll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city/mail.wav\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc51marry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EAdmin/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nichole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leeann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valentin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum11\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bpjwtttt.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jonis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Thou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/11454.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Viphtm_2_inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birchland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Plane_IncSearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deveice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/99Block/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikolia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jarrod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Control/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuoming\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distant\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meggi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_watermark\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Delgj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joysft2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Favouriate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzw1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gllhl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kakalina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make_view_play\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/full\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbkx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipdyj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitschke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kjs2583\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coupletv4.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/Database.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DeleteBlankUser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodchuck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cantjump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuntok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/je-hurn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinhard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangping_j_sangping\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/_database\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CommendProducts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connIP\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacquelyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/data.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbfyzp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_postings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon/logon.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byunz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/29.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/17339.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_emergency\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/washington\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fc1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleconn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guiding2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vilma\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madlen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwfy3.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Html/webEdit/dialog/fieldset.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webset1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin3/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martita\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninnetta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_xl_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addurl8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loadform\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/sendmessage.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omnpotnt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/xsjnews.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjpp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.gitignore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drucill\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuhan.net.cn.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabfmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdmin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiyu_xuexi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style_css_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/plusmail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirservera.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintenance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak/dvbbs7.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upaccess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listblogstar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugin_baidusitemap\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddUserGroup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upvideo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/con_article_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp_conn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowboy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chkput\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdministrAtion/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MSZT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/button\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_ActionList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yellowpage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cod\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeeeeee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8/backup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seeuserok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbl_alter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommendmmm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mufasa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dicky\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Help_ShowCopyRight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tianjia2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realcss\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mal\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/city/star\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is-bin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clancy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detail2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xylina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rena\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bgyp_InStoreroomInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goraud\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ekaterina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listjp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiehun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SugarCRM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celebshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holygrail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party_open\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HotelList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_PersonalModify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/editor/fckeditor.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gianina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/VALIDATE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuangtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure/aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saedit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accesslog/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserArticleAdd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/westbrook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yf.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petern\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index2.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_suggest_feedback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ystats\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Person_Js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miner\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w9201p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/P2P_5_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnlogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldarina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left_time\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_Display\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standrew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/php/mylog.phtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aStatTime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man_comm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2g0dlog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjdsd/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disuser\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_home/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/games\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_custom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinpeiqin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeri\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u5rpqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shendu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SetCookie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/65/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glwz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilfred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fucker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monkey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/fckeditor/editor/dialog/common\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenhuidi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Search_Com\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pix\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_ToExcel2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janifer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Showbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stafcontrol\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchTime\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/wrtxcnshop2.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonkersx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mddetail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/current\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckoff\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/allmanage/k\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/review\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/search/query.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delgonggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/questionlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emalia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win_source\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brianna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stillmann\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lindylindy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ZJHD\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marget\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ftbq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JIUDIAN5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongjin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/album_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daryn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassondra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/require\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Smarty-2.6.3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosemarie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/space_upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mledit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helphtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Attribute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/28.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/AddressBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeromy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job_infoadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weixiu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckEditor/editor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upnp/service/WANPPPConnection\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qazqaz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/msql.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_maintance\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MyLike\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swift\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/_samples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cb-admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raffarty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delinda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inetpub.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Contacter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiekuai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/best\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play,791,1587,\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flink_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhie33.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_link_header\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worker_work\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c18t75\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doralyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/board/editor/sample.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melanie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_rank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowsaddcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/area1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveanclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_up\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baird\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gequ\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ordinary_cls\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sally\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_eidt_action\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companynews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjxrtx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzydqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elvyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATABASE/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaimie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harry04\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cadmins/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pauljr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Card_ajax\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.tar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templets_List\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_main_5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_mysql_err\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/198X24_08.jpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/96\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do/edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aymer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveaddbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mischief\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/db/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/connectors/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katinka\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NwebWebEditorDB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/final/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_uploadDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stony\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smblogin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deonne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haimmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccwlykq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlstr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_RestoreData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydatazw/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info_hot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_header_file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/FCKeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/havercidate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_comments\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rustin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htbin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protected\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bar_01\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CommonCode\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netmeet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flashFXP.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js_user_post\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david974\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/xuznfckeditor/editor/filemanager/connectors/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Updata_R_jobs_Code\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/add_ftp.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifybk2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yangzhi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qrcpicker\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bak_step3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adyshg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleanor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hTTgS.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_recount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sold\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathryne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserSetup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/finger.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stars\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingyang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqy392\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbhtmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soufun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aklnmir.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teddie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marshall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mytag_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploadfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News_search\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sknahtthanks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peradmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devils\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natalya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh-cn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuanye\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Skins/Default/css/more\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dubo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dhayes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jl12\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454admin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houhou\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_Locale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astrid\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LCMC\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stockin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pembroke\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kittie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bwsyt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjhj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CityGuide\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ServerMeshwork_Edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Style.p\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lendsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qapmoc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BokeIndex\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssskc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrett\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mendie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aznf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alasteir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lusa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retha\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_Search_PartNew\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getcard3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dg4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpkz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/back.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/xheditor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_include\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dibopai-files\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fleurette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humberto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zluclog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.pl.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zones\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_lxwm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prv/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pingpaiSet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zombie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenfly\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztwyzhou.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ygfq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CompVisualize\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Gupiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heibai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_company_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tender\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Personal_RegisterResult\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hieronymus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html_make\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxnews_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/F_youxiu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SearchBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authorize/dbmfiles/users\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwendolyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opt/casp/admin/conf/hkey.current.user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maribelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.files/index.files/haogx.js\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders_viwes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jzzjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Advice\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luvAndre\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infodelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baixin-file\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wynny\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ktv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortcutforum_cache\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt123.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y3209b\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_syinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philippe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ji8sqq.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/freshteen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiaozui\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1980\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marguerite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_pwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/P2P_4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpImages\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_Admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcrwzhao.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usercard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DB_UserData/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_superadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhouhk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_photomanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StarWebEditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savejiqiao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/super\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CulturealInfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advhr\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DELALL\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rssBlog\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madelin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Society\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShopChannel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julienne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meeting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ru\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantino\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nqhumir.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_ArticleReceive\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sohujobcom13579_DB\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_cnf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domdagong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyusers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slasher\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classcount\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rempost\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server/fckeditor/editor/fckdebug.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roosevelt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rexue.txt/xue/rexue.txt/rexue/rexue.txt/xin/rexue.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windows\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_com_show\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/databackup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahdtweb.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riordan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_user\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.sql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrizius\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6422/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc_Functions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gawain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_movefriend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_classify\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shepard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardTopic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addplan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cullen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbookdelete\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reamonn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mapadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Zbkdj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/editor/filemanager/browser/default/0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yingshi_Yingyang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmmmmmm2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miguel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/side\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dispu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnchampion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Apache/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Deal_Words\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/bak/x0b9dede_admin.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hockey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roze\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janith\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corabelle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CommonCode_ContentEx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccrong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upproductclass_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethelbert\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltdtl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkserver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zfvilog.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_newManage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChipCfg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincontrol/login.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strona_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_MagicFace_const\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tkila\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyacinth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobs/upfile.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super836\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/upload/test.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ab_Page\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gmovie1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ini_menu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ralina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intro_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/note_url\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_sub2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chloris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Readme_CHT.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2009/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Proxy/LoginResponse\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/market_modi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanageaddchk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getuc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdWebGbookSave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youthaskbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/ftp.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brietta\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add19\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defalut.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fez\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycenter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop_option\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwiqmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendlink_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_all\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config7\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concettina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManpowerTraining\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor_template\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_page_cute\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marylin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarface\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerrilee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/responder.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brains\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dream/_vti_cnf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dining\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wordsfb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/line.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_manage_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hannie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_select_sw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sergent\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20081060.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editarticle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock/company\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedetto\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dallis\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/aphtpassword\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Dictionary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belvia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thbbs/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PublishJobs1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roxy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addnewitem\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Educate_Vip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosalynd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpl_softsea_news_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hexian/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herschel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Clear\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaret\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwwwww\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chef\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/z9v8config.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linkimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Au.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transData\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entry/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspmyAdmin/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guests/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_CreateHTML\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsinore\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mariel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/w3-msql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/List_award\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sblql\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CRM\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_customfields\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/texteditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitaro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ctyily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/globes_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2112\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz_dg_Admin_index\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club_usermanagesave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ModifyTitle\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wow.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dddddddd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leelah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpeibei\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BolgList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Lines\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/bak.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/SysImage/ewebeditor.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_sharefields\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_productvote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanilla\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twlm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alain\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CapFlower\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baily\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwd4\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TechnologySamples/Taglib\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaoyu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.vts\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addzydel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leeqq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stunt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dipta99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winonah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mello\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/documentshow\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/displaytc.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mcgraw\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbejli.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misty\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang_log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups.tgz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msgview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annaliese\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_wealth\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vrtiMirServer0.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888999/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salary\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Message_View\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cp/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FlashJuge\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administracio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editlink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/On_view\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_editBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barefoot\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/M_suport_answer_child\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.sql.gz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luci\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qvod.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/DB/backup.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/.htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yentracmmcartney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedra\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syjs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/db1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penghai123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserliuyanList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Deal_send\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddFolder\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/wp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_pubclass2_edit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_goanggaoIndexImage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_savecom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tdurbin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristiano\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inven\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/photo_cfg.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_menu1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzfeng87\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fly163_info123\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_chk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.pl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erroll\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templet_MallStyleDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mir2_adventure\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delilah\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portal30\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccloginImg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysset_fudong\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk_ubbtst\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dologin1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jobs_Left\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexfdsaf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_message\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adm_login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatti\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecp_spacelinks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quixote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celene\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DBFile/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boigie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foobar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadmin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xzsysadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataCy/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/!admin!\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbjl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8css.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addclass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/QQ2007.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/fckeditor/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caspar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjlw.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/updateset\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/XMAS\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_addxl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjrc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jnco\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-newcms\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olga\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doitbaby\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Eshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBsHelp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovdamirserver2.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behaviors\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/styles_cssText\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxhack.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartcccc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/FCKeditor/editor/filemanager\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brittaney\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebbyebb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsxc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiyabbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_keywords_saveall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/db/6k.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popups\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meghan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007/wwwroot.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backups/bkup.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robbyn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malvin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cells\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/knowledge/dsmgr/users/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dkwnmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp/logo_video.gif\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conrade\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listshop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natalia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl_rongyuadd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winston\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zgdl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanxijy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nikki\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/todos\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humandom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet_client/FreeTextBox/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steevie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fucking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialmenu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archive/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Taxonomy_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babbie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crossed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gay/members/private/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguste\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viole\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xampp/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounting\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chic114\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/StLucie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Qpic/1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worm_winter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rb6903sh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PORTAL30\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biliamee99\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BBsDel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttop\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/netauth.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdSystem/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mf2008\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yyq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFileForm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weihu/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pro_2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001/1.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mjfreek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gouwucheinfo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manfred\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuantiAdd2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rianon\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delfeedback\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messy/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/svelt1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat_order\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fc3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/66.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_5/ZSSHJ.ANI\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amega\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/s8\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wat\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_archiver\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incupload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avaava\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Back/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Bbs1/1.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardForMoveList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danbee\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_memberlogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogworld\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfgstats.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/V_Promote\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marion\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_puser_tj_1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh/id_rsa~\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editbooking\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novelia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xken\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111/temp.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writer.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frame\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxnews_add_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkssn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myles\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjlimeiai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DjPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzzy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvsheng\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpersoninf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HxData/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/ybb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BoardLink\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easter\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denise\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InTranet\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads_txt_dim\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grayland\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shulin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/uaa8webshell\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/houtai\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/database.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sca_vlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemove\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowler\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iyddi.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_color\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/ewebeditor.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsreadme\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_del\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replay_gbook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BlogList\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mississippi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tnsjr1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Public_Function\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nessie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apples\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zerius/oor/content_areas/secure/auth.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Ads_Count\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check_lang\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dael\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ploydel\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luca\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-serv\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/Default/css/bbsbg/pic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/others\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardcore/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corenda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editsave\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dqxxb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_aoyun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_new\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_makenews\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Top_Consumed\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nada\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fzzl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kahuna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config_passport\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jobnewListx2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpdDate/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsad1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj_ip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002/backupdata.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache_toplist_rand\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Util\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvbl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwynne\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heall\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_rightclick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lauritz\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/config.inc.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sohu\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan34yuan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karlik\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Com_RecycleBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxms/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongju\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibill/log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Author\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pablo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morrie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/conn.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thalia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secretadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eneya/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymsg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WEB-INF\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest_main\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cybil\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddressBookW2JE/services/AddressBook\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loutitia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elvira\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_galbum\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mlcheck\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reagannagaer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flavor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/launce\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_news_category\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amir\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kellia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarot5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_edit_ok\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clitoris\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_imgPreview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BackAdm/wwwroot.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/editor/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats/control/member_htpasswd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Per_Search_AreaWillClass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online_l\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallery\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunman\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banner2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airwolf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lemardel_admin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhh3141\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fargiigraf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MultiAttUpload\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stoffer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Diannao_Wangluo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jwmjmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GreenhouseWebservlet/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qihongkk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tersina\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Class_Key\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/YQDATE\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areamanagePicture1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giftsend\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ClassInit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typelist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Page_Bottom\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs/preview\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade_add\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.asax.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/britt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wfReplace.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repairkq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albie\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirserver00.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/build.cgi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw_jybd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooldude\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SelectPic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobe\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspnet_client/FreeTextBox\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itdoes\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopper\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Cz_Look\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck_media\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003/web.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_processlist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranique\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/filemanage\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup/backups.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diamond\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chess\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wpq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Service_list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Down_Label\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MMARUT\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosette\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_Person_Bespeak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/29869.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsoexplorer\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloggy\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/working\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corine\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pengfei1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sousuo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BookNewsEditer_Pro\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letme2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form_radio\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111admin/Editor/SysImage/emot/web.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/backupdata.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cows\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntan\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlton\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blsc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nb_air00\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsite\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanni\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/titties\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alick\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adinfolist\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_System_SendMail\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adminrecord\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu/wenxue.htm\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemap/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugald\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.py\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addgonggao\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/research\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/~passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upxsl\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grmpxxi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuhuafang6\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corry\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezmall2000\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_save\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fhtzinc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleda\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garek\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/images/smiley/fun\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rockey\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_13\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Edit/back.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuya\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm/temp.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hab\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin.mdb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winxp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level/75/exec\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_soft\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qw7737\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nolana\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nestor\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RegLoadNo\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/www.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salt55\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple-touch-icon-precomposed.png\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Company_Cookies\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/16763.swf\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sch_ChangePass\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tighttight\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nalla1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CHANGELOG.log\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product_hot5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panda.asa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_Main3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/JM_Hit\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Web_School_Wait\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mitzi\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ryskmirserver.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe5\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yxjj\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxhlx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tran_file.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jifen\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showimg\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madonna\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marmale\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AspUpload/Samples/database.rar\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/samples/search/filetime.idq\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syspic\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_11/ubb\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearadmin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heightsearch\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mlkn\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jens\"\n    }\n]\n"
  },
  {
    "path": "assets/directory/jsp.json",
    "content": "[\n    {\n        \"hits\": 0,\n        \"path\": \"/sour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crabb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6060.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfile/Admin_Index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psychiatrist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedestrian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receptionist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaves.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medicine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetPassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vii.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovietunion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldavia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/back/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/313348.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lightly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/frmupload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichmond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databass/datashop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driven.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telnet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jt18digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/find.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102125.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edison.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaflet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transcend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embarrass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardiganshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frighten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mash4077.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adler.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/february.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superstition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utherlandfalls.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diligent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ossandcromarty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/held.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodgson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likewise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prophet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rampian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/511885.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilenewspic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cokacola.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/lbbs%23DfLLds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideology.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phenomenon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_aspcheck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1028.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avarre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uxembourg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13579.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everything.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzbekistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absorb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/tcbbs7.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remaining.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trantostraitof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slumber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aineng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbbs%23DfLLds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambassador.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgj8myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celebrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0622.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estindiesthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/higginson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improvement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/60.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/face.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bribe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onets.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boobies.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/array.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arwin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyml/upproduce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile_style.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DataBackup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4363770.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yogibear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midnight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visavis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/without.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/as.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/400214.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/admin/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herrick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moisture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheriff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0919.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rod.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interview.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orneo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminlogin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilecasestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intensify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waste.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/077812.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guanli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inaccurate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdb/pblog1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/north.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermont.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/account.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elliptical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft7hdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpeg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consequence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/familiar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5829.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otterdam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200094.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/508509.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_ingesave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ones.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile-flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/988.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plump.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_SqlIn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_set.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/times.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwyd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faces.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/action.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/climate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleven.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erwin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowjob.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safety.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uapehu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devoted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/university.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login_out.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwowdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exciting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/table.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizhi_tuku/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temperament.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuttgart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aopaulo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congratulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfide/administrator/startstop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spatial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i04cdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safeguard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delegate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobilise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/repost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uscanytoscana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egypt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martyr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42bsd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ew/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/academy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persuade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp7.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggravate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/servu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_browse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/loginadministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/37.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221206.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gym.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustralia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jg2rdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helicopter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/TCBBS7.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201307.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouglas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edfordshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/326526.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deflection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raising.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/AddNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TUNGSTENDATA.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/m4yidigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/webshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/which.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/385510.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lborgaalborg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gruenther.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acramento.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1288.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etroitditroit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assault.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/far.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wombat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21400.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123757.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileCasesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ataan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgjy_admin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trails.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileupimg2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51000777.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locomotive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223616.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casualty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operational.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilenews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200291.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transaction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eliminate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/page.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmsworth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmpcxt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54719589.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telasrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alado.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pistol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileservices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moustache.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_message.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inventory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steady.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/019490.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualification.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2088.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/158.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndorralavella.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toll.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lawyer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoughts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concede.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambitious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueensland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedlar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corpse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underneath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Saveannounce_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promising.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erbyshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1965814.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightcunt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/length.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/point.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilowatt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bedford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_other.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briefcase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108164.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitedarabemirates.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netizen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acblog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilepartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bachelor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2103.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/275275275.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rights.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deviation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/western.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearadmin/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/temp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acknak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gehang_Geye/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grosvenor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10410500.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2288.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1808420.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bush.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1354051206.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dioxide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fowl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esuvius.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onstantinople.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulousc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tentative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/any.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botany.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/several.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rimsby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileServices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/had.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/%23down19827.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingyangmeishi/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consensus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analogue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridicule.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crystal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garret.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronounce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sombrero.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/further.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrshu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluminum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/razos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andersen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/023110.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rewe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/410901.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letlive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarcely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwrwb5w4btw4b/223fdsagte3q4t65q4q6543/%2370iz0qj8a0o1ffbzp6m.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inforadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonderbread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/se.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oanoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sift.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Field.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiletemp_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elderly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bald.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awalpindi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hellouser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jelly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/logon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileservices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impressive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theater.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/living-room.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whirl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sole.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2891915.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_jsNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assumption.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aros.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/while.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reduce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascribe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remember.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lennon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warfare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elanesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsingor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numbers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23zxdata.project%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3699.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firmness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23720505qazsjroha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crossed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hy2005.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/applications/bboard/bboard_frames.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draught.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersiangulf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu_aihao/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_NUpLoad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rootceo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resno.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thanks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthumberland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samoa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_nupload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmagh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database/%23tourdatabak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publication.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orwich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vader.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/must.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wreck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13805866477.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crypto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/base.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/historic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esmoines.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1025.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahamasthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5174841.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toshiba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111112.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1dppdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epontinealps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prairie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outrage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminLogin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qqhao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sushimastrait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6688.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preview.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1949.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfied.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/khotskseaof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/play.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinyue_mp3/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aseru.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/committed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheque.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desmond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80f9digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22339.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owaitkuwait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accordingly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athmandukhatmandu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulgaria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/younger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porsche914.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peanut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Photo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budget.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2587758.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/give.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unusual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilimanjaro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arjeeling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sakacusakc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degree.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradelogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goaway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ungfrau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delicious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aruo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hicago.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desktop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/root.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clinton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oganmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221722.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/369791.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foundation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/research.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ringo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login8.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yearly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1208123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/episode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OaLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/questionable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogcatcher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neckrub.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile/569853.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgotthardtunnel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m1pidigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/showcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zinfandel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expertise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbuianmountains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gas_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emphasize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/su.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apparent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/namely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rectify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blacksmith.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardware.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyrus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liquor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldaihills.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vault.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanmarino.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/506385.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acknowledged.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/socialism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whilst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/few.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhabit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perpetual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2004.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninety.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftCateMenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fundamental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defiance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clambake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/149880.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evident.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196900.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118013.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guideline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raincoat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ku.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vague.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refinery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kidney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anju.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspicious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecraft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/over.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102478.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathleen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atavia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadattachment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/194677.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/information.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecuador.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/streamline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310107.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Users/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aza.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.jsp?source=/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethiopia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbalah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleared.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/426426.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propaganda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/31.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1207.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/158160.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor1013.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascaderange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxburghshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tangle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwsqmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/france.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escadores.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greeting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonsense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3223283.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mostly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pride.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manuscript.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complexity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/169.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrrheniansea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdb/pblog2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/now.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mokyhill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asternsamoa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excerpt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/front.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/Zzm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldwide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122421.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/z9v8fadmy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ristol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UploadImage3_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/key.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitedarabemirates.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3699002.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rencai_zhaopin/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footpath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuclear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_jsnews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/&23ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galbraith.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makinglove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unconscious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opponent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpwd1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfso.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skiing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3138375.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatchamacallit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ari.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ourselves.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincxfb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everlasting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equality.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/005523.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overfjell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/have.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/261200.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitedstatesofamericausapue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234qwer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practically.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imondpeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blessing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trapdoor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userreg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubb/uploadpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbahlah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heyward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loucester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/369521.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ASPAdmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atarqatar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/366.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thailand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oppose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sierraleone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/217121.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glancing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/always.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/masingle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/await.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crockett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lores.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bomb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ru.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcymount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abadabdoo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apology.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rob.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontpelier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countryside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simplicity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414121.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dizzy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yasaland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crush.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911turbo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/executive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/401114.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ammond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lithuania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/souvenir.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agliari.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugusta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refrain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsidiary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/someone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/velvet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pyjamas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30wfdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlin/sqlin_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ratio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/showcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rendered.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ours.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uganda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignorance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/price.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatroom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1969.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luckylady.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanroom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongaislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/performance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pamphlet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/federal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anastasia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asvegas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/1qp0digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addressed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminceo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/star.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ull.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/458.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peasant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sawedoff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exploit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negligible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angoon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Huagong_Nengyuan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conrad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eagerly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apeofgoodhope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scheme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allied.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rejoice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delighted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilenewspic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/%23tourdatabak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualitative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upproduce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uproar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2827788.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashmir.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teakettle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51098.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2108.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aneng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/write.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/battle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13655.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overlook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_Restoredata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4th.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_jscreate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laska.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netgirl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mountains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqqodigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dora.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fields.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artinique.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fort.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forsake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clatter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/downloaddb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rub.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ederalrepublicofgermany.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shallow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/400.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/225477.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_help.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/known.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uincy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discrete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlog_db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paradise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/investment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleeps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inez.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz520%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47011.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specification.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olombia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456789.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/older.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/601057.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fresh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/descent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hildegard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/random.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breastfeed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correlate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admindelete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovaniemi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perception.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Admin_SoftInfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biddle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/india.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_fileup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commons.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileNewsPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/general.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoyle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/206238.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enlighten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dole.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alayarchipelago.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nights.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dumaurier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selfish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1230.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsdunix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landmont.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22227509.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/..manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handwaving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sentence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/437351.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsimage1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1963210.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemons.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/completely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/50245024.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paperback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58658.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whizzylink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it'sajoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apehatteras.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516329.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsing-tao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngleseyanglesea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageadmin/managelogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alifax.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunasandwich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sp5rdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/Reg_service.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burned.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilecasestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criticize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1016.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proportion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshidiantai/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/journey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangprabang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thesis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebsoft/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erguelen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astonishment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mystery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/something.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/569344.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faculty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/height.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/228359.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontreal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunbar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranscaucasia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/webeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raised.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleased.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vulgar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wives.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eattle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54321.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjcx/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elvetia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deposit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1022.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tied.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_jy1001/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/looking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hendrix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anben.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okyo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/002822.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cereal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/newadmin/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147147.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discharge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receipt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrorist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/061478.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estimate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whereisthebeef.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnuemacs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angci.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/account.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageqd/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/342623.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/go.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onwards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bethune.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubeck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/membership/inspiredtutorial/viewcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licante.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harddisk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctorate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omaliland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoghurt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proved.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vital.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leutians.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/userreg_step1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/503860.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/until.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monarch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imalaysthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analogy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symphony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prohibit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/29396.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mountainous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/103301.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pumpkin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endeavour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssh3digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardinal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retention.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buffalo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaccastraitof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ominica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/139.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nutrition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs-admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alapagos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dexter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoarse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5th.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/525621.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/like.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skeptical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nchorage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/gpg6digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rukcz_shop_newshop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/edit/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opensaysme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shivers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/white.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180300.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flowers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferrous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/addlb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodevening.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dial-in.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book1/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsupdoc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1116.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taught.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oalogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agriculture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_top.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cameroon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfordshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sourmilk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/%23%23cyweb_cn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artagena.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cilly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/uploadsave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hemisphere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaveralcape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thxkdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acaomacau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reign.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingyitansuo/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosanna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquaintance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shakespeare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inherent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_Dialog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rather.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickskin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sniff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seventy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irwin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condemned.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkov.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1119.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/424777.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houdini.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/38667.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pastime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landscape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umberland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/AddNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coefficient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport_client.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/browser/default/browser.jsp?Type=all&Connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprehend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hvdata20060309/asmasm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berkeley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cram.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botanical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cousin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heavy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/439114.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swamprat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4728.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/084319.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indicate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fallen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olyoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courteous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undergo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08181215.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hard2see.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23bbs-118-jh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pump.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password_search.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firebird.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/three.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/z.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russiaformerussr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penit-admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121271.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppsala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/5026myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mighty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/losing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clouds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toysrus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rule.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awaiianislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59361265.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/station.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polarity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wages.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0vydigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supported.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/television.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/312402.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dives.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disagree.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prolong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47840.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0315.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evacuate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unafuti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faded.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamlin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aasa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirac.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspicion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/dm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bovey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/age.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/execute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok_pass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration/login_form_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196511.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadyside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrench.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buckle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hz@host!.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pk25digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365799.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage3_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/uploadn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sounds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gehang_geye/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plainly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0313.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosmic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/separated.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaccamalakka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/f0hfdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engineering.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nowadays.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geometrical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stole.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2610.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esselton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/document.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2323.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfactorily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esopotamia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petrol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_BookPicPro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupsave2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcelona.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astronomy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alzburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_dialog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cambodia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/611217.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1005.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/began.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ad_edit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130125.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perhaps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashichannel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeblesshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xax4myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0519163.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/black.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/init.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consult.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ample.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/force.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/567890.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grandmother.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520616.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/games.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1494.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyhow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_edit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elevate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oventry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23tyqiyechina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illcomayo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplied.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mightaux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/representation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terminate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arabel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patience.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wipe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akartadjakarta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilelink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angluo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/008.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hats.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/777.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/124526.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjasd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sullen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kes/admin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shining.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crowded.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crab.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eliot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2262558.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/098765.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requires.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/today.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiritual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adajoz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amelia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ratislava.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cause.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closefriend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carriage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inflict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hersey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dowson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chapel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x9wodigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vaccinate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/err.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forget.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortofspain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlaw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userregpost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zimbabweformerrhodesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eshawar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agundigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooperative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/y2u8digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adm_menu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornwall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rp44update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/insenz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileCases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exact.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comparison.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0521.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urbiton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/election.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kidnap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brickles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/woaini.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=../&connector=connectors/jsp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garcia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/addnews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/031528.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ago.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bucket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fact.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eating.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1688.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firmly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SK_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambiguous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileservices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/packet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/z9v8admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dessa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1208.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burkinafaso.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userslist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingres.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olognekclcun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1388.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suncion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123789.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55724.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123321.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ensure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/338680.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efficient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/measures.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flexible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaumont.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/477577.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleeping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tech.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yroltirol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rkutsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conceal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expectation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scratch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan/scan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111702.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/determine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heaven.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600707.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsptest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittsburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/htgl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjustable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2525.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emotional.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridgetown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicholas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raguaiaaraguaya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1262301.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridget.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deposition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/105401.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latterycape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estlothian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motorway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hule.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oubkal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc_config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/croft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads/ad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homogeneous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ad_edit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortmoresby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diamond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/escape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concerning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/30.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqywz3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byrd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppbd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilelink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx_Update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reasonable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suppose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emphasis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yitkyina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arisanmoutains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windows.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splendid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/place.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pact.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trathclyde.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/battery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/houtai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/introduction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/direct.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tumble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot-asp-scan/scan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diverse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytilene.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/became.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/element.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declaration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makepeace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2200362.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beardsley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12912.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/060810.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/userreg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qatar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koreasouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/producer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chesnut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2262.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolboy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meanwhile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turbulent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2912921.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labourer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3upxmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vacant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarrel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rowland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zenerdiode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parameter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godwin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileDown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electronic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaplin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practicable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reactor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displacement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Heike_Anquan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zzm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beecham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lattice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotweb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guinea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latenight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presentation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ireton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reviews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Edit/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undermine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngara.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adams.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/li.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoodlum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1968.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp5tdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadership.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hottip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/replicator/webpage.cgi/313373/ukr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileServices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atumi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gambia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destructive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disgusting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caldwell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admired.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/journal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poetry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moban.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/understand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/character.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cripple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iroshima.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wherein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izhnitagil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cater.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boiler.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aardvark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepspace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornament.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/step.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hailand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/american.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adult.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gllogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlouissntluis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realthing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edsea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/411937.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happyending.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101476.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/military.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuckoo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntarctica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udolflake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydxzdate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaned.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jnqndigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilePartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initiative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/332211.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iscaybayof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overhear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharply.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07914131611.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bosom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/071698.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rleans.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commission.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/243663.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrdadiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ining.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boywonder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinctly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/your.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osges.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/am.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/them.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madagascar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recollection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckyou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebutler.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cried.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dream.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upyours.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovascotia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atterhorn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackmore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilenewspic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considering.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balcony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontgomeryshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrimp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tactics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13801705365.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smiling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caslon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syphilis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007/admin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiche_qipei/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rayspeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/system/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesapeakebay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selftime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1224.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/works.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hae.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration/system/upload_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmaden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undergraduate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleveland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/191919.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexbat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/668.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180371.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barclay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5098.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3377.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yesterday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elements.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calibration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splif.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anumberone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/053911.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/194511.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lunch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php_test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimistic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wharf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teeney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iamimaiaemi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seabreeze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/asp/browse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lacksea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hole.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huckcheesea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_forums.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/558.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiriqui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoconn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flagg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthampton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ausanne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limitation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conqueror.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distract.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ido.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot_dabase/%23tot_news.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annette.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illusion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handwriting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everyday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/does.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correctly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agoyanagoja.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surgery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/every.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himbu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/Upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solemn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/shell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbbjdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faith.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manufacturer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hengzhou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserReg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfortunately.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eroe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hungry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wr9qdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consulta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cubic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/9vlndigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equilibrium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eastman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonderful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encourage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/code.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apuanewguinea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/often.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceoadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/admindy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softlink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blessed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheresthebeef.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/japan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilecases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubumbashi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amongst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haggar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disillusion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anni.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustralasia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/webeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/589558.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_picupfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refugee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0914.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabella.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assassinate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icklow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/infosearch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonkers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aricutin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indonesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybaris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upfile1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announcement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_backup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileServices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3408311.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eternal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100533.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/braun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysuser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harjah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settlement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awrence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1203.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earnest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outermost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulianalps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sovereign.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappointed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gongye_Zhipin/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inversely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tender.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agros.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exponent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordoba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_chklogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/childsplay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0717.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he'sdead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evonshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1950han.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectacular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2214.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semiconductor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flanagan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/count.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermanagh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disgrace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horizon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0831.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42677.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevalent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixtynine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wasteful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_htmlqx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injustice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subtract.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurried.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32103210.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beulah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eventually.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davidson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfranciscosaenfrcnsiskcu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragrance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comstock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/store.cgi?startid=../etc/passwd%00.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocational.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthwestterritories.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uenaventura.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/direction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/six.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/552525.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/6k.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denounce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminusermodule/adminuserlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/said.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function/uploadproductpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decrease.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listening.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucatan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/264310.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ageng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aican.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0527.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latitude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/energy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percentage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saddle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dekker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alakkamalacca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uznetsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impatient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/file/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168868.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortcoming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literacy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theirs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bangladesh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/265333.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land/land.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connexion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginManage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivera.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oci8.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unguessable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321321.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incinnati.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620053.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edith.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tetris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product/manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/director.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1782109.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyadmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uanghe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110400.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uito.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hills.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongyang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/zz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn/admin/login/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/81.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turbine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concerned.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/53.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/den.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520310.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medieval.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/295029.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explosive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emyuser_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aids.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thermal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/sqlin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/world.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kesadmin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centuries.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ben.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/band.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awatchrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntarctic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/break.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_other.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/just.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/critic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitching.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smhththt/manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spider.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realization.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiajia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r2nhtmdqq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cattle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airobi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/777.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otonou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodpecker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cross.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collected.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavendish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eager.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trivial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmASM.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coleman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/496464.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilbert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hypothesis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omerville.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1210.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upset.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persecute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autumn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/computer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittlemissouri.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/institute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utility.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gielgud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilbao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascertain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alien.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileBanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynemouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/student.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exists.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/53082160.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northwards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewguinea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etaoinshrdlu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preferable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfiletemp_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/care.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uncle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elfast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/431122.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/lbbs%23dfllds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contemplate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appendix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/progress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frequency.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alison.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udanthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bhutan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogadishu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scientist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iyadh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plentiful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/select_feedback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/510613.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malaysia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openhagen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antaisabel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uboea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umesh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingredient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/z9v8admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/DB.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reiburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/construction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theoretical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atanga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proposed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downstairs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0127.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/webshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjhg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humidity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahiablanca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadphoto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8z_shop_newshop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquaint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/baseinc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utterly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dancer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8080/anything.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanging.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ri.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0710.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baseconn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hege.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abroad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/things.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12354.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exploration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlene.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/Admin_Database.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leisure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discreet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/39426.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c4c6diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyanghu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckinleymount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnhwwdata/cnhww.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mecms_data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instalment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji_tongxing/Wap_Wangzhi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irghizrepublic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concentration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/don.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figleaf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucharest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demo/email/sendmail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comrade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/x.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/written.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sauvignon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthcarolina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/loginadm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebraska.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3204211.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fisher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodstoc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/128626.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unedin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angaparbat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/292231.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhglamorgan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/understanding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/index.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boring.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alarm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galsworthy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asjobcom/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortune.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bates.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/per.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alonikasalonica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/ewebeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronounced.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2400333.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnished.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erdun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/614819.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makelove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatterton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastener.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strength.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assurance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chalk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personnel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispatch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4497717.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunyan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interface.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilebanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilepartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appeared.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embody.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aroline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caption.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trader.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilePartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybbs/saveup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orontotcrontcu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ictoriamount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christiana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complicate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demons.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112265.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaolu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upLoad_c1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilenews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sybase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabinboy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5839.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abortion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/%23wrtxcn2007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007628.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rxjh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myweb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8md5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appearance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imperial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaumont.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wondering.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBA_lanqiu/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grieve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfiledown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corporation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/healy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/established.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dancing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/energize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mercy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addFile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hovell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argentina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7hsfdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme6.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqywz3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/building.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canaux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hvData20060309/asmASM.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psomandewell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cultivate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conductor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puppy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marxist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confusion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qiche_Qipei/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/take5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/activate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/time.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileservicestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glamour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/causes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physiological.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uezisthmusof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foremost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aarland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13701845614.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissolve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/console.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/none.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiresome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4fpndigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/62118100.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168261.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wjleft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjlkj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Articla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirsty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idiom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ducksbreath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodfight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nguilla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_member.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locality.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggfb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webedit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gllogin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oledo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxang_Manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organization.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaveralpeninsula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelloVXMLError.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouisiana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/8.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_styles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmedit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23wrgkcnsmsj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/diy3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library/dbconnect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immigrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileCases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/323565.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llampu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_sql_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellsworth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzchn%23da2005.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrinkle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritishcolumbia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/togo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/let.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111830.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revelation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magdalen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confuse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlanticthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0000001.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Product.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realtime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yugoslaviaformeryugoslavia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/much.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilebanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfghj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bound.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifteen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortunate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steamer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111674.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/militant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoft/diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/1008.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saab900.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zulu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disclose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/njou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain_manage.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calcium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincontrol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enforce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilePartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/open.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faretheewell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/channel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bother.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gravity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compartment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accident.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119524.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hristchurch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enaistrait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orchestra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/late.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bilene.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troubled.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/low.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connections/baseinc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontmartre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3229683.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/envy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auphinealps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daylight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agdalen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111577.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culross.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formidable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilelink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulwer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleakala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workshop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1919.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tree.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/80.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor_v280_Free/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voluntary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/climax.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himonoseki.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amarkand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42214221.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directions.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encounter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunther.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atvia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewlett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upstairs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/god.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncohumia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliyuan2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikespeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicinity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazlitt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/you.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evarts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000001.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21822.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excalibur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslogi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limestone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kycj/kycj/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netboy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23db1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apprehension.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/projector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word97.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ware.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declared.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/fckeditor/editor/filemanager/browser/default/browser.jsp?type=all&connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23liaoxd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shows.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cipher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/border.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/majority.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23echuang%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anterbury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iscaucasia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anarkshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analyze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/residence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrug.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolerant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confined.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nominal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depression.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ownership.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclusive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contaminate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instructor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/688.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/society.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_sqlin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/install.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrychristmas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/present.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recipient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userreg_setp2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/62105762.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ann.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplieradm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amshedpur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_getpass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_dialog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/aspadmin_a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvelous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/093064.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/province.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destroyed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345687.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genius.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23181615.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heavens.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_subject.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvyouchuxing/2050.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urchison.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reveal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/402790.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yawn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occupy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monument.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weeny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otherwise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ives.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgyllshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3243067.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/na.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oseau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atnajokull.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2222222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scissors.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christopher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/..login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collision.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epidemic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/i8ytdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaucer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/db/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/org.apache.catalina.servlets.DefaultServlet/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ssuydigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tighten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/z9v8User_Reg1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/showfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goahead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_BackupData.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58814245.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millimeter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ierranevada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accumulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tax.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gracious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uebec.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topcool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1960.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phorum/common.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilog.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1100.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntilles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provocative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/news.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fascinate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prof..jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/runspamengine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amuse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.14159.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_6list.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardener.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledzep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fierce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Backup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilenews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minister.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonglin_muyu/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erionethshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aituo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223005.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stars.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardiarabia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lm6qdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarissa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandwich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8th.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbuda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aberones.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaysiafederationof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3015.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plaintruth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decompose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/ewebeditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurricane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/completion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloomcounty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/servu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beforehand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuffedturkey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cancer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/me.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elgrade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evolution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inshasa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roller.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aileen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileCases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163101.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tower.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lady.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unloadimg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongji_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpanel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wooden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vob3digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13701720656.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/health.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_manage/sys_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microscope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anquan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abruptly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superiority.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostriverrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thankgod.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cmundigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaitskell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441202.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/z9v8upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balfour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/validity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coarse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Signin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133107.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/326067.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/an.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsvote%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repression.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/failure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difangfuwu/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suriname.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loucestershire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarcity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pearl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyuchevskaya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/name.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceptional.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/setting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/userreg_step2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/australia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3698209.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dungeons.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prune.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwindows.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imalaya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/332195.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scholarship.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9g42shell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingspeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5802768.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usebean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/83.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/382135.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/einstein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agitation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treated.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3151815.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/551688.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocktail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8upfile_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrupt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileServicesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decorative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/southidceditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/503029.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56738955.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eloquence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lburzmts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Select_feedback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/york.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bromfield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/similar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/many.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izhang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/570922.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112403.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diamonds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fdnews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penguin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/264994.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rush.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblige.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultrasonic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degrees.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0510cy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awnarange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisstart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olombo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontrealmontriol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uscat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aegu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/115cn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ee-cs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centimetre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pb6odigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyberpunk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/3uasdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/m.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_setup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pupil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quiz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dairy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwertyu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2nk6digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/met.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocaine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arshallislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/than.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endanger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/returned.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebusmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/005280.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talinpeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/307668.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsp/source.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/79hlmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poverty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/law.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/half.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unanimous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunmore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opendoor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conclude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4660503.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alec.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/585800.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/030289.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1228.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nervous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5814442.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevention.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitors.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enbighshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00123456.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/politics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etaoin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110774.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgofficer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladivostok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intuition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/differ.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluctuate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/565120.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ietermaritzburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contents.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bullet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/admin_default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6008675.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adverse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accustomed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appleton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/row.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageMap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zerbaijanrepublic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndianocean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thresh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/plus_marry_db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/92vrmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1088.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101106.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_friends.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibraltar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodyear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritrea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminedit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gymnasium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatsmokymountains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invitation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/available.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reverse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itchener.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoped.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softlist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtxinu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collaboration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vcd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_suftpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/severe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anasanaa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/管理员.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luggage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reproach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lodging.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/environment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0228.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awaikini.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facilitate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingayengulf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/machinery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frightful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etpbook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/streak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gesture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scumbag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makebread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/january.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armstadt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiffness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manifest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incorporate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sprang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilys.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exchange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanfight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wednesday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overseas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/branch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradually.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stated.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gratitude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cluster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guowai_wangzhan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackburn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0707.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/reg_service.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bfximyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apparently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/der.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iforget.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoughtful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongtinghu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elphinstone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibbon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bedroom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/eWebEditor/Admin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inertia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photography.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paradox.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/ewebeditor1013.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retreat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaoshangjiameng/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/see.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasawaraislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accelerate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/human.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabba-dabba-doo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interval.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldcuts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letsgo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakfast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/division.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2607.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/fckeditor/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sustain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridegroom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artillery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/598.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowgrade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lebanon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solomonislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23gbook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surprise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wounded.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/higher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/base64.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/271525.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optional.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bighips.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeppelin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1006.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mineral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiju.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congratulation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receiver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000u571.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/response.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alberta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112121.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/framemaker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baseball.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPXspy2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criminal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slinky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12259976.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabbage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102030.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2085038.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tyqiye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ildare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superbird.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chapman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bicycle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eject.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/next.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angalore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_photo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othenburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135790.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/editor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51777.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rishrepubliceire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquiry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/england.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mayor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syndrome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basically.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickens.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilepartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileBanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxmslogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/0dfrdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/141119.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartoon/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhandaman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007Admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evenly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earhart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3297219.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333520.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seven.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curriculum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askatmasqatmuscat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oboken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hindrance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chairwoma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harbor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plenty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemessage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/churchill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeopardize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatdividingrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13570.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2050.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algoorlie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/namibia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centigrade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bamboo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdnydiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2nd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haldane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knife.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ensng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatcat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wandering.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yracuse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ateng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugene.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/403705.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ourencomarques.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/team.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1303.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ananarive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rengganu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5366.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imitate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ussia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oroni.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ighland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reaction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111512.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watchful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brokenheart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/er.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everyone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superuser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deliver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pilot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trailblazer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitterness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/networks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/300.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrlp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/fuckyou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corresponding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vorycoast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/napoleon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connectors.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaret.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gutter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uffolk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_sql_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/my.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goofus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiraz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsidy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/downloadDb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tremendous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longcock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8000/servlet/ssifilter/../../test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pension.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppervolta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hughes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerospace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emptyheaded.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/info.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/index1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sem_user/admin_php/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reproduce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cities.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakthrough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminkey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annheim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52110893237.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anreng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spaceman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beetle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costarica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lab.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proverb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earnestly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mosquito.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HitCount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/463108.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ristiansand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alagasyrepublic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/head.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12300.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/admin_fileup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quiver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powereasy4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310110780318.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/log.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mauritius.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipuser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19680622.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5251.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azakhsatan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unixman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquisition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canvas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/link.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130031.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skyj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiladelphia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duncan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubicon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16511.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohannesburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otosi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tago.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other/Festival.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5180.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mourn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/super.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthborneo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resin-doc/viewfile/?file=index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilelink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huriver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrcharlie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/got.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewdelhi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heartbreak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopkin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_batchlink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5113.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jupiter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongolia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/202660.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indwardislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lunar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/50706862.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_articla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siege.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icksburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantastic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_right.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/455934.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernandopoo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/primitive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/53999.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/date.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlyle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/017009.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/investigate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msoffice/cltreq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/focke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/372011.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/system/userlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brooks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eustace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilebanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joined.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/377227.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yukyu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ande.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withstand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilecasestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uppic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmpcat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yemenformernorthyemenforme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke_wangzhai/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/events.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delphi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyingfuck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youxi_wangyou/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aderia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occasionally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equatorialguinea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolgirl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/html/cnf_gi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebrws.jsp?source=/iissamples/%c0%ae%c0%ae/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theorem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/week.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salvation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/051300.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopeful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spirit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invaluable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1357.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haste.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beryl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/021975.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appointment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baglady.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adnorshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emphis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchenjunga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donkey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/238888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sentiment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refund.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3721.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opening.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honorable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sousuo_yinqing/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temperature.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%2352_dsmm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3457503.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121800.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freedom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skull.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intranet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userjoin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amused.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/region.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23fdaeg35@%23gds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/too.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oznan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58917702.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22904600.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rating.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hacker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/27929.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redbrick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himself.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accept.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinanorthern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doyle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angduo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201615.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crisp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airplane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/AdminUserLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taste.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urgent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conduct.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/in.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uatemalacity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/yes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcohol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_menu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3137278.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsinki.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alliance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/402313.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ologne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/023000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_help_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ponder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/Admin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileNewsPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/near.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testcase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touching.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/496111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfiletemp_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_piczc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/%23sy%23wgh2008%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heritage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parents.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avenna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47rfmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgiers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mudarya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/void.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilepartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weihu/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanccape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/582838.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annettpeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1106.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doaux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yellowstone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/491111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indulge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disturbed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_database.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obedient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brennan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4290.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilebanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Include/setting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_visual_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mets.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yours.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_upload_image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/show/back/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffaly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trademark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southwards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calendar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/may.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/loginadministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realistic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/socrates.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/hate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilecases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slept.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romulans.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handicap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/habit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upload_bm1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interested.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isolate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupsave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ochiminhcity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/css.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/league.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_message.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aterson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leakage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/index.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excuse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121110.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileDown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adm_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extract.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1807420.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmenia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permanent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/views.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/so-called.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tassfurt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminMenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/422422.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/container.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4891400.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/116729.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y2k.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earlake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1429.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experimental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erskin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/platform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glorious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10952.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endoza.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ditch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafeteria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101223.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/middle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carbon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onstantine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_space.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uaihe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/317513.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omalia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/with.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excursion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interesting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pblog3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atomic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileServices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1227.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2257995.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tweetheart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boffin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chitty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mora.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suicide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3rd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/found.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinkfloyd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esternsamoa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schoolinfo/admin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newkid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Label.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/87d6diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackolantern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortugal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Foosun/Admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idleness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dramatic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distort.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42577719.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avoid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molecule.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/husband.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intricate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/382789.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uckinghamshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/ewebeditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assassination.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rooster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3106081.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ni.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modelsearch/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angben.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5561.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alongside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulletin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/005500.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guardian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfilesave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/214789.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovosibirsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3901698.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07031981.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proposition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anleng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orocco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsp/extension/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neutron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polarbear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileservicestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23%23cyweb_cn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniyas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hairbag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riendlyislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bliss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilanmilaen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5188.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadAttachment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molecular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/situation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223344.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntiguaandbarbuda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/questionnaire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/look.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameroon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/habarovsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gower.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ictoria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orinth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilinhot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/court.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/556444.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserManage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/routine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unjabpanjab.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meantime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/growl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p36mdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auchinleck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/430111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reliance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipperary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upperclass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nod.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incidence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibesti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tailor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ws.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surface.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dobson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Function/UploadProductPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scfilea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/news.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/fpadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/315495.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extremely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massacre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/nowshop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demonic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mounted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsoft/diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anremo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nosecret.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/343434.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminjoin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx_update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navigation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBlog1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proceed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6119268.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incardineshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stump.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breeze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scandal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhausted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eclipse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debora.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laughing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enfrewshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_home.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/987654321.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/led-zeppelin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvador.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47138.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56721439.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/TUNGSTENDATA.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/350.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multitude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uez.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criticise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alladolid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discrimination.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liquid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hauddoc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handwave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6071312.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server/adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Other.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/login.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interpretation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanhot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlouis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domestic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/225113.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cigarette.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/537639123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0001000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyqiye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadclass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wardrobe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evaluate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difficulty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19191919.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelloVXML.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adagascar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notorious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symmetry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rib.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ergen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueenalexandrarange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osangeles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcott.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600601.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hx_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbartonoaks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romagnon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aincitiesintheworld.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uiyang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/te.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t-shirt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000311.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferdinand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kyrgyzstan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/besides.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/area.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerbin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/091819.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolerate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beginning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consciousness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/periodical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datashop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onrovia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_/login.jsp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prettyface.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/member/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/departed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hristmasisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stubborn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/heiren.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/76.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illwaukee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/menu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrienne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/570914.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relationship.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feasible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hujiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnapurna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/mk_output/referer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alleviate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrosion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancouvervaenkuvc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srael.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagemap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/device.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alestine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supersonic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adventure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131420.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/re.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomorrow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_backup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_webmaster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compensation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1104.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmdasp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comply.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startrek.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ground.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gratefuldead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortnight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewsouthwales.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scension.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookemdanno.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsalvador.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26499.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/trade/admin/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wygkcnqyhtml.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bella.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proposal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lobby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222588.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aben.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0425.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gained.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scenery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schedule.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elkirk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/md5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_photo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/significant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immediately.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexandria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8key.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vehicle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bright.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ability.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conflict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsuper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algebra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eewatin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ticket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crooked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/seacdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biscuit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadsea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloomer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citizen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reception.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insertemotion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ec_admin/ec_adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/either.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminhh/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entrance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anges.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quality.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expensive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/influence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guowai_Wangzhan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/03516043731.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newfucker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instruct.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millimetre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cora.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweater.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intersection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itchellmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileBanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/LoginAdministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbvcxz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unexpected.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uncertain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondicherry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6112008.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernstein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qte4diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go jump in a lake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scamper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adridmcdrid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bypass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrestle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138355.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explicit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inflation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aita.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56682126.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196521.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileBanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/should.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunakea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lower.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_messages.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hans.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain_manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01513134.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elemental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radioactive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parties.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/184809.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occasion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/admlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meatcleaver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5201am.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56409802.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawthorn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assivemount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/076212.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excitement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/report.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easygo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/functions.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/562532.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatshitand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilePartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weaver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scattered.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30019.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bring.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baffle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebedit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ykhtau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berdeenshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prejudice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/535232.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.jspect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/11.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/292344.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinese.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seashell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quantify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admsystem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tempo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mibbdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deliberately.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerberos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampstead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/knowledge/membership/inspiredtutorial/viewcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23wygkcnqywz4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19591119.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garbage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pound.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthplatte.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileservices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headlong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0319.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proximity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamaica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correspondence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voltage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenectady.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anceng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demonstrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_picupfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncahuasi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disguise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fixed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caonima.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_productpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experimentation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foxtrot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prescription.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/27.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/..default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examined.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/1596.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/green.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ismarck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feminine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exposure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/target.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cliff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilenewspic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0846.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continually.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1206.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omercum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masscomp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2100.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fd0vdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minibus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0798a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cozy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajorca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examination.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostarica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/involve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpphotoalbum/explorer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assumed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_shop_newshop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0205.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insteraarhorn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorgeous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loyalty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/70.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orrkoping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opocatepetl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjacent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonderboy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabbadabbadoo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/tbl_create.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toilet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msterdamshipcanal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Commend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/least.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/1025.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rigorous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.jsp?Type=all&Connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/020618.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tclarlake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/da.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/be.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constraint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view_source.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amusing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aborone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileCasesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070270.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tried.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1872.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register/UserReg_Step2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/married.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlingr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopeless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/planet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquainted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocerdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Dialog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/134326.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indhoek.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orresstrait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/619203.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/independence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/araganda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/581525.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_pics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onkoping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iroshimahircimc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/616616.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516583.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afterward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingram.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndonesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/upload/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/59.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opendir.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabric.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_bm1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/will.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terminal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aterford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/both.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alteration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulogne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewhampshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faulkner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemadmin/adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/active.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boswell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hijiazhuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pardonint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/z9v8advertise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herrapunji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001942.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anliao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tact.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0916.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dudley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinidad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concentrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clyde.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unjust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tilt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafalgarcape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/editer/selectpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inFile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1069.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whisper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torpedo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/razzaville.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/describe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contempt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodgson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twelfth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000126.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tockport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1qaz2wsx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortcut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pillar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/induce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/route.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amascus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/globe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haiti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emavend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degradation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grateful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subdue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/%23%23%23fdkjgzschool.v2009%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jsCreate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zork.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applied.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osamonte.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8l2digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advantages.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/position.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23tyqiye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astries.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impartial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vaticancity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/267496.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anybody.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mitten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cjp0diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bimbo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plc/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/those.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stamp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/separate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peril.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtuous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my-login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/measurement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afterwards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_soft.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54420301.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6130.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/585858.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyuan_gaoxiao/1322.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budlite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susceptible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farmer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gojumpinalake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1268.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attractive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obliged.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingersoll.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/term.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/601543.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onaghan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pampers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradesman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apporosapcurcu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrtxcnshop2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chesterton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unpaid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analyse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/trade/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2585710.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fisherman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outstanding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xxx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shorthand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camera.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/construct.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_return.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keji_it/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southeast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iborgvyborg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addlb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/race.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indispensable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/USERok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thabascaathabaska.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/million.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indefinite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exposition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manag_onlinedb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geraldine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221251.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1ndex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lived.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/going.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1970.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/Connections.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propagate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/080475.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clutch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.jsp?type=../&connector=connectors/php/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/course.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorualble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distribution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flynn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adras.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/346900.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0531.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seated.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/606179.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocotrasokotra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/third.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/column.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accommodate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/77.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102400.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/livenletlive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/root.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guilty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordered.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esther.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1361185.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangwu_maoyi/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ifeshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interact.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dr.demento.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pregnant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sd_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brewster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/act.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipuser_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elantan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destination.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310227.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginini.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotlips.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csc412.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jumpinalake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/town.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aressalaam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/similarly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suppress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/counter.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uvalu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sulu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doors.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsalvador.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icaragua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christ.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thereby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telescope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agency.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223349.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ackenzie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tyqiyechina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileNewsPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guli/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leddzeppelin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/shop_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.jsp?Type=Image&Connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erosion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lancapeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xh_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennssee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pirate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00427.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cylinder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rkansas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickenson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/jsp/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chamberlain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclined.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twentieth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inaugurate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23456.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.inc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3141.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dentist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/424888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmonious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darnley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/318300.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/zzz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signature.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25020.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrofula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngola.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graduate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilecases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links/links.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ompeii.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overhead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filled.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200088.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhn-soon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angju.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/israel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000510.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Admin_BatchLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiffdrink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buttfucker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/%23zxData.project%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsjnews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118925.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utilize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/61515.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presents.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweetnes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_softinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456chen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101887.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsreel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugoslaviajugoslavia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awe6digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520520.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkpatrickmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1772603.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobilize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8scan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/still.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/021177.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fertilizer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apehorn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermonmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quietly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/34.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfiledown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precede.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_BookPicPro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senegal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raqirak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staircase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon/logon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defendant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applause.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3625238.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nglishchannel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uteshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajtldigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articlelogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lively.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SubCate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interior.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ualalumpurkwalclumpuc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennessee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileBanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/council.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Message.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/237869.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0443.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reenock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arawak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/upload/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007928.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/515376.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjdsd/Hz@host!.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bureau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/air-conditioning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/654321.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turkey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sphere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anluan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angche.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/item.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/procession.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/after.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicesquad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glaser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/78pbdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tickle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withhold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slovenia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noisy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figures.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illustration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/481612.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kes/Admin/Admin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftList_All.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leusis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2906.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacterium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingrid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvyouchuxing/893.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dbb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turnright.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_bookpicpro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amatave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editerraneansea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terminology.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5310057.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philosophy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vessel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/told.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haulagiri.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unongtahan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310113084.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muscular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twilight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/segregate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11021969.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estonia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orangeline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innipeg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sober.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneeze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contradiction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/there.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auritania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragrant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/know.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promptly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vlsi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thatcher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/WebEditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magistrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survival.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nofun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compression.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n8ftmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abracadabra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charcoal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/webconfig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/define.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoyment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestcollegepicks/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/follow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elementary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/78.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senseless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reflected.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sudan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/responsible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pascal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/182550.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alicut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/high.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hy2006.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fusion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/velocity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echora.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/false.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/druse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tempt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.jsp?type=all&connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agoya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heike_anquan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5101325.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graph.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occurred.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crossing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewhaven.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dividend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/scripts/openvendor/gnete/retrievepnbody.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meeting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troublesome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileDown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asterisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exicocity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obago.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12344321.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6k.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wholesome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wooby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/british.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s4u6install/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectacle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Server.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wring.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quantitative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/career.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb/mdb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112411.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112938.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56512197.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gates.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/216709.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warthog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruno.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waterproof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_999/login/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lighted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golfer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscommon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unilise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectrum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sponge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/differences.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinegar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snobbish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ithuania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probability.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sideways.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoenixfiniks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/356381.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001544.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiben.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thereof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stationery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1023.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boobie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5156104.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/515149.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/want.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heighten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newworld.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennsylvania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ozambique.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8xiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyberpass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servicesystem/login-admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/membership.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/diy3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminruan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10001.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nroff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anywhere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59238841.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teeth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bug.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dbconnect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monsieur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wedge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilenewspic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outfit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortarthur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aruan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alabo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achieve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/shtml.dll/nosuch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/678.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leather.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwadmin/A_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orrientes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiledd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2102089.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paralyse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bosniaandherzegovina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23506810.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnarbor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40705177.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/air.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ounce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amibia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/local.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkuta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/18023906.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/551102.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lameda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/used.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kejian_lunwen/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cinema.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jijinlicai/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliningrad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigboy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jones.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/04260518.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/217758.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alikpapan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/em.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squeeze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udety.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warehouse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prompt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_field.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/descendant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feeble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attendant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileCases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iredell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/..index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gigantic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site/eg/source.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frenchfries.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wolf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sousuo_Yinqing/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginerror.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hush.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diminish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/601001.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highlife.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/red.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/went.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hallam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/successful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5203992.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54740442.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodgrief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilecasestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/posture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ydxzdate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fy_sqlx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overwhelming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58109747.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fy_SqlX.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyi0digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horrible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunnyrabbit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instrumental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horsley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/343gat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surgeon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamedata/aaddsfedsffdsggfhhdf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/range.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shalt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alignment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preceding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12240205.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difference.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identification.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/champagne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/factory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phrick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ASPAdmin_A.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fracture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxxobbs/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/458158.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_fileup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruined.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sympathize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthernisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30289.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/according.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promotion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refeld.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555333.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniemount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/i4yfdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admintab.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/che.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systematic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jealous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possibility.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/count.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/royal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prestige.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traditional.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gohome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornwallis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misanthrope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourneagain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rescue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirondacks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innumerable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limited.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_master.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anila.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5945.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oodmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crisis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1166.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/question.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rsdydiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoopie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4659385.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obvious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuguo_liuxue/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiefly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ife.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anruan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/db/ewebeditor1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/z9v8upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zores.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peculiarity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purpose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visualize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/match.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0202puma1971.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halleck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sides.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommendation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepsea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26433832.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oronto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/editor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56402130.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info/zcfg/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authentic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discourse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/versatile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tinman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assimilate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comfortable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilenews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5373575.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anvils.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangba_lianmeng/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_server.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121776.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seriously.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greedy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stir.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abandon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexandriaaeligzandric.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plague.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urundi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/members.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uyana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/548897735704.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allinn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguaria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamonix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prudent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aracaibo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3687.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilecases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilexinxi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project/webpet/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bessemer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authorize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bassoon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constrain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/people.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/db/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600600600.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affected.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connected.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5722257.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsitemanage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lifton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junior.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.jsp?actiontype=mod&picname=miao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/newsinput.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/did.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disagreement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinxingbaoxian/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oppress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1229102.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considered.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impossible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psychological.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/410303.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aru.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roundabout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlucky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discussion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olverhampton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/1ndex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/responsibility.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glyn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/type.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strangely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/loginadministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davisson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spelling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsupfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anweng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitchen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscript.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huntington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5236926.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excessive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resultant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0407.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/st.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleofwight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c++.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ballet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigmouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8servu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lunarlander.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00000000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iaoning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bully.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhattan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biography.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datashop).jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biochemistry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/science.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frustrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23454.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/613136.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estglamorgan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conversely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undertaking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frohman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranaki.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stoop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weenie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aque.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.livesoftware.jrun.plugins.jsp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiribati.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rontrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/europe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heavily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5959.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pomount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/说明.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solitary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runtime_messages.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guestbook/man.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprehension.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foobaz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/big.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underwear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intimidate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ille.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ola.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/031164.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entertain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smith.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12300816.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curmudgeon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office2000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/151564.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/come.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novelty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modification.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornelia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attendance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/193316.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mianfei_ziyuan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/ws.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmnop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chamber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/been.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l1ysdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apply.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urbeckisleof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5678.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shabby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntigua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horsepower.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/children.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapidly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/within.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snob.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteconfig/conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hello.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annually.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comparative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/ndex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jump in a lake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/police.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itty-bitty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/132333.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdata/acblog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sudden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/national.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuitansul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/15228.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gif.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embrokeshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ena.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/408806.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/252xdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520620.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/section.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/above.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softlist_cate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exemplify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backwards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wind.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19444573.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/172263.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fashionable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldsmith.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload_soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colvin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incfiles/load_gg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elkirkshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reconciliation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_m/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0613.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vectrex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin/AdminLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reboot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappoint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initially.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewyork.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analytic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmpc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incomplete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igtownshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/index.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsInfr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convinced.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23database%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anliu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/loginadministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poisonous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hansen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eloquent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r01qdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlconf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enverdenvc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narrative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avaria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolphus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consultant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estvirginia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displayed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irregularity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breaking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13001270033.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sillywalk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilePartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewjersey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_SoftPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulumuqi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lawn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/215052.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scanshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqing_jiaoyou/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/337258.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19423357.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatbearlake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arctic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1935.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eylon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilpin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/403114.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quoth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zambia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/aietdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freakbrothers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincenter/adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confiden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/main1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utlei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wrtxcnqywz4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lehi3b15.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northeast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desirable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztaccihuatl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headache.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wealth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hello.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3780.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3435265.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reduced.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d99.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrewd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taxes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/box.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196912.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernestine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/density.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excited.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/browser/default/browser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/28.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evening.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reslau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zovseaof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tinoco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circulation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trample.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/editer/z9v8selectpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divided.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monopoly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Editor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08484571.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8up_BookPicPro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Product/manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rainy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/command.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anumber1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invisible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101978.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123459.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disraeli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daho.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gravely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butcher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/161616.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reply.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anticipate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0077.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onriver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assemble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilometer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naturally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8md5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/webshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51492775.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1558.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wife.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preparation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alkansthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ballot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tissue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r12ydigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therefore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urabajasurabaya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/save_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.jspalmas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/country.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/males.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piano.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/asdf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othniagulfof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surpass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgotten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greater.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accommodation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ati.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/china.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fouryears.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/071066.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frequently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mishief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/note.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preface.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subgenius.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liveandletlive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evidently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belinda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retired.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimsrheims.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abnormal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entertainment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/most.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hartres.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/13.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circumstance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telecommunications.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/key.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yello.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bird.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grassy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3450381.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/67.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/great.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athurst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mexico.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gas_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/12912.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/htmledit/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223200.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ax.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23tyqiyechina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aramay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileCasesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ways.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderadmin/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenwick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile_asp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceremony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iouxcity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deeply.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olomonislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comfort.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gvo1digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedhed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igtrdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilecases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postpone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabiansea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endicott.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uetorico.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigroom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotmail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avisstait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restrain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glued.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maldives.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portrait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swallow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/material.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.jsp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhostlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/district.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angku.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ekong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/219711.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgentina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13578.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retrospect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hayes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/till.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_dialog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basketball.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macedonia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dv_plus/marry/update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPAdmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forthcoming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/234234.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8080/servlet/org.apache.catalina.servlets.DefaultServlet/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extended.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brenda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giggle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/360217.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rejoin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/connection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminuserlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reject.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariebyrdland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conception.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Default_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merciful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nieper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recruit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancouver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1349.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitchin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UpdateSoftNum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_go.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaverbrook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileCases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/37324601.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armarthenshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srilanka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/104153.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/su.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beerbohm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capacitance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112688.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appleii.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/predecessor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osssea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infectious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/successive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsequent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calculator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snafoo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typewriter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/off.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmir.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/education.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/answer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deteriorate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nerve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beloved.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlotte.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prefer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalyst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penetrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badboy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/436670zj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/household.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achievement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windmill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yprus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addpicture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connections/connections.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/later.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/172090.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witzerland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advanced.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfgh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsoft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizarre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negotiate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aspinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funeral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esthetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuqiu_tianxia/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ockymountains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burgess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swept.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hemnitz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_from.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/m.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepfreeze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2163.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yclades.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laundry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advantageous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackboot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hero.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/621119.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm_marry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nylon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hospitality.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggested.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds/main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8aspadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trolley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfectly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0681ok8223ok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoenicia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bargain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thinthighs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/eWebEditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arguesasislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czechformerczechoslovakia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absurd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photograph.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ori.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abundance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaopin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_page.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billgates.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcweek.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webetoys.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/error.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crofts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mountain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organ.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graceful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/istula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mritsar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilepartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfortunate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileBanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ihateyou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HomeManagement/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drnrmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/mingren.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phrack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llahabad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/522039.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bimboe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counterpart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managedl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newyork.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artlefreremount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8zz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbara.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333355.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101847.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anneng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3077.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/single.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hnompenhpnompenh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/different.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22099.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monstrous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_ok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alween.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/org.apache.catalina.servlets.defaultservlet/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entralprovincesandbenar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sailor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenfell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122872.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brewer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/double.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echuanaland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correlation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipxudigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burbage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogben.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/postinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f9camyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talino.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imbledon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incapable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usenet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashkenttashkend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systematically.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luxembourg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intensity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/322785.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1230403.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23data%23%23back.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clusters.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndorra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/003138.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56881323.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vietnamformerlynorthvietnamf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/230933.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disposition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/in_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correct.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approximate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upchuck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/together.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prominent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingren.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assachusetts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/towel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bidjan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examplesWebApp/OrderParser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11139753.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portalAppAdmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/removal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neither.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consider.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otopaxi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveupfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honduras.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangzhou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visited.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnlogin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cancel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mischief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/running.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangchanjiaju/1761.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exterior.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mbpddiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/count.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/388.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login588.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911sc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/around.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermanage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cream.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snoop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/388273.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeepcj7.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appetite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extraordinarily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/succeed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilecases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/year.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/char.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/322530.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurchill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eidelberg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntan_shequ/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/review.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snorkydorky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/294919.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/u41bdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwzx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crawl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/127927.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evenloch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suddenlyad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eghorn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyingleap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confused.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wearing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/adminlogin_logs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/spy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/140499.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iodejaneiro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbourhood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8uploadPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digital.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chleswingholstein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aticancitystate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0608.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uibyshevkuybyshev.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laughter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/q02ddigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harsh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.3bsd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joke/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/towards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luckybreak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3726.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precision.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorilla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brunei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/picup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/setup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1127.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1229.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdnews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Function/UploadProductPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reunion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1360163.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/Data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upgrade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armstrong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cotland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouldaux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexandra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edriver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effects.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peanutbutter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaviv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1133.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contradict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win98.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/among.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuador.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.jsp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1221.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sesamestreet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uneasy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rondheim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waggon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extinct.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xxx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3251093.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lympus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eorgia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elegant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settled.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glider.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xeter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/across.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmstree.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concagua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WEB-INF/classes/ContextAdmin.java/x00.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adeline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/viewsource.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instinct.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/four.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414718.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enlarge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humanitarian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_list.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/along.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tourdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skyscraper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/google1bb9e40669bc959a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aselle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/little.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experience.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukuoka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burglar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germany.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3584.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huddle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teacher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imberley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/college/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/User_Admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aribbeanthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elphi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1qazza.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reclaim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/3pv6css.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azbekkasbek.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candidate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34250359.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intyre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/551236.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_orderpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileNewsPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0214.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uascaran.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cripps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jagger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compensate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111113.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enthusiastic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/professional.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/info.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightfit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEM_User/admin_php/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ishkek.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flora.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luxurious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydrogen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drainage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silicon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/039077.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precisely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Southidceditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crumble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fleetwood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/department_add.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotpage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unixsuck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyde.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katydid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/predominant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/she.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/608323.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smuggle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/34o6digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinceton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iongwe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/positive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tryread/forbook1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oven.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlboro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScanShell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retrieve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tungstendata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barfing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formereastgermany.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5313343.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotdog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiren.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aotomeandprincipe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rotten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/615438.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jesus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_style.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letmein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11614.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collaborate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minority.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abstract.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackhills.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eherantehcraen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12366.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjs4digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wild.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigbrother.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trigger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grandfather.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enerife.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throughout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laboratory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbernard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6055.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bathroom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stupid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estmeath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_add.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angola.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ussex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/013707.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nationality.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lasgow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2m8ydigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bravenewworld.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imbabwe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321300.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/megadeth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/UserReg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learned.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vacuum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erwickshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/their.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submerge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3613121.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310109830313354.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jungle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/103927.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anecdote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/575783.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takeiteasy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpcmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zoo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cannot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conversation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjrfdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haggard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interfere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0227.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcp/ip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cellar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/control.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skilled.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preclude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redundant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hindley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/230235.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000423.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaoxd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_productmove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netopicode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileDown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guitar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newcomment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3782450.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reflect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bessie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndochina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henderson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gene.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196825.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/string.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ehavre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteserver/publishing/viewcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chorus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wealthy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialogue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micronesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ertfordshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6789.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extreme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/translate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buried.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icosia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirksen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antiago.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verbal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dallas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/split.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mozambique.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erghana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34073407.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pantry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ragon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ehafdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simultaneous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afflict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olumbia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/become.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aku.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkuk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/good.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfiledd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contribution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112310.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yodude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appointed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stimulus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crept.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/of.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web-inf/classes/contextadmin.java/x00.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angerislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boots.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innovation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jewellery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untingdonshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.jsp^/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exicocitymeksikcusiti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/crtkdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabiandesert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pickle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accomplished.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/live.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarlet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decided.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/him.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/461511.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obstacle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/news.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lease.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caxton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tired.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/average.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56789668.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiritusanctu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/273433.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/november.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specific.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arms.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dearest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curtis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colonist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askatchewan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errydiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/spy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nevertheless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsequently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_pics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/090909.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/524524.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azerbaijan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2355603.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disposal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0907.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prosperous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swanassouan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4017336.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappeared.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eunion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/light.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyrant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourne-again.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Return.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/bbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4321.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/life.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51marry99.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8passport_client.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pursue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amiable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crowd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ava.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merchant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/002.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SiteConfig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8aspadmin_a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manipulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acct/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hovey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rouse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/luck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223589.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orbit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slamabad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_member.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/game.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mushroom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uphrates.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courtyard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/500607.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipbuilding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chimney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diploma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/even.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cigaret.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23database%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advisable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morocco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntanLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proportional.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ConsoleHelp/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/00kvdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uashan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/031079.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aratoga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tirlingshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiety.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/202145.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moscow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4077mash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/25.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sufficient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pressing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adura.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftInfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8css.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angmai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compass/logon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pipe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/users.db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoenix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/status.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackburnmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/hacker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sketch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136b.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/govern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trench.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/during.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irrespective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/userreg_setp2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600305.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/188.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/islam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overtake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/october.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tenant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6014502.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mr.roger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/print/data_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pmddmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freedheim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homework.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffenbach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/design.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/login.jsp.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ache.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiza.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pitch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/61.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weigh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kal007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsybitsy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absalom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decoration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/inc/conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uinea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angliao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accord.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620609.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/here.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2188.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affirm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6171.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bananas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/232061.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rocket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/need.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alais.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/adminlogin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubbahubba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadface.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/jihe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uronlake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/063502.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eduadmin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capfast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3130.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hz@host!.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kind.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persevere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elastic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reaterantilles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requisite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news3000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retagne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/base.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58434.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnitude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booklet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watertight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immune.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bump.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycroftyyy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20000101.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplementary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/lekrdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beebe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/wrtxcnshop2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/372153.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaoshi_zhaosheng/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surroundings.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benchley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loyal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clothing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igali.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vernus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henceforth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preference.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiderman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breasts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enaresbanaras.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/father.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56k.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chevalier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/such.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piece.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falkner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1109.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exeunt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1300321.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesdead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faultless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11191006.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggiorelake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conceit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bede.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp%20.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calorie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stretch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inneapolis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakdown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/a2e2gp2r2/x.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2744360.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bearing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukualofa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerobics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enezuela.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login_ok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fireplace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estmorland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminis/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/army.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/css.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileDown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agatha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gram.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10130216.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dupont.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingxia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickhead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedhead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trinidadandtobago.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exempt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/east.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carpenter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remedy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anci.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123987.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5208.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/results.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nothing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1361669.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scatter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fulfill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niece.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewardpeninsula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5182.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unakha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reflection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pilgrim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaccio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/us.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/569853.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hofman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debug_error.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/except.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostonbostcn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lez.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inxs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lintshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adventur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philippines.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangshanggouwu/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0713.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increasing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aweng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entrepreneur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nihaoma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/192.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/story.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1011.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addPicture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stomach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appreciate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arispaeris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/eadmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/565921.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iverpoollivcpul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash-show/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seaside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/Admin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angban.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/head.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perimeter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waziland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other/festival.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/Admin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adequate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/edituser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imaginative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conjunction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1380195.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anque.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms..jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industanhindostan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminadduser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swaziland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8shell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probably.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrutiny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/associate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatigue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fruitful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/substitute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypasswd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceiling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dump.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuanpin_yingshi/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altitude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23wygkcnalibaba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consequent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yingjian_Zixun/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correspondent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornamental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_/login.jsp.ba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvlinside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filesyst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algernon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultraviolet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_del.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/napkin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincheck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/round.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paste.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/612211.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reckon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laugh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radius.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penit-admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeitor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abigail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brutal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45676.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sytle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faraday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcuin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lies.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1129.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godolphin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3523168.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodeisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/developed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsing tao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ligo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confidence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flask.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100094.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down2003.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remantle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/search/queryhit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nominate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coggeshall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/fuck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongye_zhipin/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3245064.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checklogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artistic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xingzuo_suanming/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mortgage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borrow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entered.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arwickshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shujuku/shujuku3.0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aquan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzbat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvik.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimwit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rival.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25118.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/momentary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoginAdministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogota.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trousers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oundthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compact.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likeness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objects.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/418124.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eva.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everywhere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22222222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pattern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warrant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rehearsal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ring.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affairs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essarabia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audience.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overcome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/token.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatslavelake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dazzle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yns_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intelligent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200540.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/final.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muscle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/588688.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tavanger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/our.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woobie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makingit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/db/dbwebedit%23cc495898.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwrwb5w4btw4b/223fdsagte3q4t65q4q6543/%2370iZ0qJ8a0O1Ffbzp6m.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furniture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superintendent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aseng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smara.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/librarian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadImage3_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlaid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/code.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigtoe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/take.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/size.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brilliant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastings.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agdalena.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileservicestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grunt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luncheon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/synthetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finished.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolescence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rascal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chambers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reading.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skirt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beware.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itwatersrand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farther.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instantaneous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/album.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/md5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123698.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dvboke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileServices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/self.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/512215.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Dialog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forced.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/db/dbwebedit%23cc495898.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/member.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rthurspass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_media.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increased.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/righton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/festival.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoption.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stitch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147714.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammered.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upLoad_bm1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aplata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/config.inc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/ADMIN/MDB/lennyash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immediate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1145766.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_updatesoftnum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achlan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tockton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147258.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suffice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textbook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aveling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escaped.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydroxyl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stopped.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onegal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168168.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1105.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aren.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leopard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clerk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imperative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demo/basic/info/info.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonita.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inevitably.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hmtleditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sir.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drift.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor_v280_Free/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unreasonable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123098.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntrim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1st.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riacs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haetianalps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuwait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadProductPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/on.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thereafter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hropshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfaceok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldcoast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gentlemen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coverdale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oriental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twenex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alletta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipwreck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obscene.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wallet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strategy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6207.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/span.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refrigerator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complaint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggestion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/229359.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olumbus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/uploadphoto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezekiel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysconfig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anche.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rilanka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drop dead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/memmng/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuzhuang_Fushi/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/love.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attached.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earlier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isreal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unixsux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/secure/logon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fossil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cz_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bm/chkadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nepal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewcastle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/simple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attract.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commerce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/each.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orcestershire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8plus/infosearch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pickwick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overnight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colonel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intellect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/0ssvdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occurrence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loosen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erthyrtydfill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin/adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234567890.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewmexico.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/299001.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcde.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervisbay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brisk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plantation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/themselves.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminmenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Log.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instability.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database/%23tourdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonljuy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123abc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/municipal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resin-doc/viewfile/?contextpath=/&servletpath=&file=download.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brothers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_getpassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okohamajcukchamc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Database.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Adm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craik.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/db/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heading.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5291953.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boycott.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/yes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illiterate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahiti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cronin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohhot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physicist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alternative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snatch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23wrgkcnsmsj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/periodic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/county.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suitcase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/50.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plausible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/food.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singapore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/557722.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgeorges.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sauce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umberside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1966.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generosity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dubois.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWeb/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustronesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alabarcoast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/existing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estelle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seminar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/number1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32767.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prior.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhyorkshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/could.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untingdon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gb/register.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonzai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showoff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aien.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23%23%23fdkjgzschool.v2009%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tract.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surround.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drayton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awkward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_Dialog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggressive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcutta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/yesitis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intended.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/159832.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fancy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mem/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pneumatic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiffy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfaction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decisive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallcock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cy0adigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uching.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911scturbo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marsh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restaurant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzgerald.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ralph.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007/Admin/Admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preserve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji_tongxing/wap_wangzhi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augasili.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13601807511.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110579.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pants.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ochdale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairyring.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/college/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manager.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sodium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sumbura.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0715.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speaking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/181818.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balloon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/no.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getimg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/495089.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/unloadimg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeweb_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brother.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worship.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilePartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23database%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/531788.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102218.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolivar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slightest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engagement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/wish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/22.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520066.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akaposhi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/covered.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resident.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/615112.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/english.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phrase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sacred.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5818983.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proficient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cody.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23liaoxd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/push.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southidceditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabbit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58138281.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ottingham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opened.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netlinks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utilization.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabrication.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pressed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lberta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stimulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cropolis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/south.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsUpLoad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sample.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/architect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nursery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2052040.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mperorrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constituent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunstan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001230.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0903927.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/zm_marry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/di.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marshal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/logout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login8.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurrah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mustache.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310113.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lately.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminmember.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communication.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win2000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tune.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aputo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shit-head.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inghaihu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddhism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8080/servlet/org.apache.catalina.servlets.defaultservlet/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/022188.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixteen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egucigalpa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odavari.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c99.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/008354.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asutoland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/index_manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lightning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prospect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclusive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilepartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relativity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/more.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semperfi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nineteen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sodoff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilenewspic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advertisement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/one.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obidesertof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pencil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solidarity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graves.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apparatus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansalvador.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coherent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunset.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recorder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aloud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456654.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cashier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/233.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ships.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tragedy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibreville.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behalf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/vlrhdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvboke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proclaim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/193877.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/use.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ironde.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ending.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/589797.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloudy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surplus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/what.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creamer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21127006.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monkey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moreover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23wygkcnalibaba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_backup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explosion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilePartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steadily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/croatia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eijing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intelligible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlawrence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iami.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barometer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/p223digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/le.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blanket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remainder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vt52.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competitor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grind.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thither.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/young.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onghai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engaged.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40917306.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mzyanjie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23sy%23wgh2008%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadowy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasnovodsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunshine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/A_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audrey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possibly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/473880.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orquay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thousand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gramme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1130.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2628.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guineabissau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incolnshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12271.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geographical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assignment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masterpiece.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileServicesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrialize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mansion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/command.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urasia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attersea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evolve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easycome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23fdao$fdsfd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/press.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burundi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilenewspic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hita.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/36.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/79.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preposition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/do.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peacock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldridge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydrocarbon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utlandshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aztecs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor_v280_free/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experimentally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23echuang%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volcano.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impatience.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characteristic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscowmoskcu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tettin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrangement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dismiss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordinary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startled.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adverb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/041898.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/saveup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adopt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pengwei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhnsoon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elhi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/312394.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread-84-1-1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornelius.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characterise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venezuela.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6121077.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/april.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innesota.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subjects.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/academic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ollywood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doubtful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/addmember.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiladelphiafilcdelfic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unhappy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26013.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjstat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alternate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/template/admin/notice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118118.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/webeditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronshtadt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5270.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2186.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resemble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmdqq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlawrencegulfof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interaction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skywalker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crookes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tt10digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilroy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anganyika.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rooklyn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/end.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dufferin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus pocus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13012817123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin999.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/side.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vjday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10f4digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rectangle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webconfig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12135.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51275127.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myself.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anoihanoi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvellous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aintetienne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member/FileUpLoad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bride.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provided.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110102.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhcardina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/mm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cascades.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bureaucracy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smalltalk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subject.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advertise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ramble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23newasp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Maillist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teeny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authority.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orfolk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5r9wv3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3528088.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miserable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invoice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/runSpamEngine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flavour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heaviside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2167.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168518.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/command.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_jsSearch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51514.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewhampshise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1125.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worried.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_list.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tractor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cycle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ungay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aporozje.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smashed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bundle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softlist_all.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acceptance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beautiful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fighting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akota.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passionate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quixote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowoff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masculine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aged.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onmcutshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/fpadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disregard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/masingle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001014.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_New.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upNewsIMg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21211417.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mansetmanis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fork.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anri.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/political.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/room.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creature.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/critical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/champion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omondloch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_picupload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goods.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retoria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131415.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preserved.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/determined.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mali.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/cnn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbbs%23dfllds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/population.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemistry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2245910.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erbia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrival.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserModify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blind.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blunder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Keji_IT/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugenia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdlkj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ering.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilenews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/nk7ldigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iii.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dusk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/508936.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brazier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horror.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whenever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normalization.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southafrica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/294003.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/9.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/razil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110110.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cather.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xh_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/night.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridges.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hutan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebuke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/own.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deceive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threaten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/595832.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j5rmmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alsop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weller.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007521.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9999.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/his.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andalay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realfriend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontevideo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offered.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continued.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weld.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roatia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/denglu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respectively.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otanybay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1204.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/611425.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileCases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isbon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/department.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/554327.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possession.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erchtesgaden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzzbat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsy-bitsy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applepie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1121.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x9d1digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thunder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tireswing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antique.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heydude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeated.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eilongjiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perspective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappointment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z_visual_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dipstick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Articlelogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guanli-cn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decidedly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homepage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/313726.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auru.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3171536.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/my.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123132.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secretary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foresight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breadth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turtle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arakoramrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1tufmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rotate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/religion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilepartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaufort.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melancholy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1932.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantasy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/admin/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blossom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admission.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3697775.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orsica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analzone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nhui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00860086.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solitude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trecht.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clayton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330476.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/start.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcheck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickname.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honourable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickcock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/church.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usquehanna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foobar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_databackup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilization.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preferred.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lipstick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radlemount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiban.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sizenine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23417.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/519758.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darrow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jianzhan_sheji/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysConfig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambrose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/same.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prospective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowlife.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/luck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bega.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articles/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/aa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/322167.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nonglin_Muyu/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/r3gqcmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eunice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enroll.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/residential.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boleyn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excellent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/319683.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profitable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/288126.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittsburgh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/large.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cz_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expansion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrwonderful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saab9000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frances.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honuor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620390.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadsave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/really.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peculiar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confront.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_delete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transfer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/phpspy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accadiveisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profound.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oci.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/Const.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etroit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/knowledge/membership/inspired/viewcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erkshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3241156.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angliang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haynes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/604604.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commander.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaotian_qq/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_zgtea_art/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chosen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alva.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuyt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/47.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntanlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/geeddigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accuracy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huagong_nengyuan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it'sokay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/386502.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MSOffice/cltreq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122400.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/educationmanager/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/contents.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqywz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql/in_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingrossshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrawaddy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olokai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/healthy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notrespass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor_v280_Free/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/zz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sugar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/before.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/357835.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sacrifice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xerox.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anduo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implicit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rational.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nucleus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/AdminLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/contents.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/7.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fascinating.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openhagenkcupcnheigcn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mykey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/152395.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/who.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fred.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/mmm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iberia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go to hell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analytical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ungary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classmate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diplomacy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fghanistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0924.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/dvboke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reality.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daughter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revenue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agenda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icobarislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadhead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smaller.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/model.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1179.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psquare/x.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_getpassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/319108.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aspcheck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/institution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enegal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1226.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranklin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampuchea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/621108.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wokao/wokao/gif.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyril.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/new.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy/data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobbes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliadmin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abundant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patriot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikoussi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjdsd/hz@host!.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oluccas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transistor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indifferent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homemanagement/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lofty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elevator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glamor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footnote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/that.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxygen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presumably.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wagon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndalusia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iforgot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bentham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invalid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleeve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/64.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rieste.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enclosure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/since.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modernize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/fuck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enquire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soften.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standpoint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aining.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/features.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330330.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/can.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikkim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calculate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/335053.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premature.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misfortune.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vigour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagination.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unknown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5454594.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/template/admin/notice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emergency.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blunt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exposed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukonterritory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/base.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1201.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58868455.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enhance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13701790600.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli-tw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hysterical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dequincey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emission.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180232.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recreation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigtits.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlost!.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pertinent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lift.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2r8idiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forehead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscription.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/461461.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oolgardie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onnecticut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dislike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldhopiggen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5266.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/news.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/444444.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deserved.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bancroft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/import.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/500.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reliable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entralamerica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/124303.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/374373.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_SoftPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arpathian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/former.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cholesterol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prescribe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2613.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virginbirth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devilinside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileDown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adzhikistantajikistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8AdminMain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entirely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renaissance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avarianalps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handsome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/150572.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pj6umyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pause.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wants.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/324286.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characterize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GOOGLE1bb9e40669bc959a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welsher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outcome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eipzig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonsense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astonished.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eritrea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/hack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntilebanon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suitable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approval.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvernessshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftCate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admiration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scream.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approaching.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uniform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instruction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/conn1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ienasienna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiffprick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/growing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_menu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outwards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arneypeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/points.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/258000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coordinate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peaceful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2010.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/70oedigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/universe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4501809.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mac.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/establishment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/line.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blaze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/article.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eshed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grattan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123qqq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intact.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pawn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soccer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upnewsimg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electricity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/railroad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theatre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontenegro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anteng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poultry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/m_bian/db/%23ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argument.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darwin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urinam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/618618.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plural.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3147.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herald.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angerdecristo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asablanca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lengthen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/215976.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasnoyarsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colleague.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/Product/MANAGE/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attribute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/option.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58605860.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfilep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0270861.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whether.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600902.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensitivity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/ad_edit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/native.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/caonima.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housandislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414324.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalization.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prince.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volunteer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lathe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkigorky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/childhood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunlight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocakola.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bibliography.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/15.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/Admin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200438.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halesbayof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whichever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relax.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadahead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135724.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enquiry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/002350.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tutor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issouri.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tester_download.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56327836.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoyable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dellinger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capital.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortlamy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hengdu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arguments.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellamy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nightmare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dependant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/production.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wjvmdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13221.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aesthetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strongly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exquisite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ad_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inuiju.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eagle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1231.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/User_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savelogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josdelsalado.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wedding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gentleman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atadinmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiphong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breathe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonzo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/significance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recede.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/%23wygkcnqywz4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0519.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/elogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counsel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makedrugs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112933.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huxley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5021.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorenceflorcns.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by-product.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/%23GBooK.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rupture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onnbon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1030.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5601178.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmaata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aragossa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paragraph.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ur-admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/might.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monthly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/better.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stronger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/largely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/318295.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0910.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/YZ_Consume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_addsoft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniversary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0525.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/bbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_photo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wovedigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numerical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cy/datacy/%23%23cyweb_cn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desired.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/55.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askpwd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbarians.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millionaire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/template/admin/notice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archibald.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orientation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shady.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/fadmy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19691023.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anren.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/making.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dixon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliforniagulfof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/success.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chesterfield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youareok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expenditure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zener.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadpic.jsp?actiontype=mod&picname=miao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocantins.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gostraight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/school.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maybe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hck9diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/wodig%232008.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nsclass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psychology.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gross.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23fdaeg35@%23gds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etherlandsthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/man.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uneaton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23103.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07241113.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/short.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simply.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win95.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fosdick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surprised.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/map.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/uploadx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artificial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/museum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aples.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/39.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classroom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySql.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tremble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewdelhinjudeli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sk_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainsail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viedo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheese.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yearn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiku.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/german.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2253533.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6666.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/express.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vertical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coatamundi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/principal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unichmjunik.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBArticle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earthquake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pblog1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Const.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t80bdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpbb/bb_smilies.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hmpmdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aneurin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spring.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_body.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asleep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examplesWebApp/WebservicesEJB.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/266.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isza.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbara.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/lrc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19430816.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/succession.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a0p7digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/record.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reetown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preservation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/downfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolutionary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softcate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aware.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/071188.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permeate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunasalad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldlady.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scorn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/street.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snort2html.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678933.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stillness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peninsula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileServicesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elinor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/31415926.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanbul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colonial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/240000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320219780905777.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin_database.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gift.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portugal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garlic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russels.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpphotoalbum/getalbum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds/Main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/41.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadPic.jsp?actionType=mod&picName=miao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5807836.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendship.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/via.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqhao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inaccessible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impopo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morality.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunnel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x-ray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/301828.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deviate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offset.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/because.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhdakota.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reconcile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileNewsPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brickout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2489.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abolish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smokedham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fringe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderadmin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/515151.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/universal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ani.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolerance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agdeburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chainsaw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathematical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owns.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disturb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clockwise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zllm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poison.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/business.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connstr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anganui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/078814.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/009121.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findaccount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okhara.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imarron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assessment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olumbiamount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transverse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aique.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cautious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunrise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/57666.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hetland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/search/viewcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjohns.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uanda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileBanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameroun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3619.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smanager.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0227118.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recipe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilecases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interference.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilecasestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afhsdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scene.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintained.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecology.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhaust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serenity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/war.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immerse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2144.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attraction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beating.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aucasus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_jssearch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newzealand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chldrn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lympicpeninsula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/j4ycdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkalov.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ida.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efficiency.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3202660.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behaviour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salesman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annabella.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/212307.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mammal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fl04diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ali.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iagarafalls.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accepted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veterans.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/properly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anitoba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0420.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malawi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charged.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hutt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/client.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upload_soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/999.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangchanjiaju/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yule_zixun/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilebanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/52.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blk0digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priority.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/category.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunningham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gissing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prototype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111122.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otomac.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ireland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/censor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fearless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vibrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissipate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3141526535832.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microwave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batcomputer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/package.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/195577.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123131.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hebes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/static.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begged.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iflis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perceive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/318017.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alilee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyprus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uluth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/334130.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delivery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongyangpjayjoy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foreigner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narrow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuvalu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rossglockner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/logout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112205.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sardine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminhh/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/first.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pendulum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eicester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash/downfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1220.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contact.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burlingame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goaway!.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alicia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/if.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elebes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.jspiration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absorbed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbernardino.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/means.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ijon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ServerInfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/54.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/product/manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guidance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eigespitondes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stairway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uffalobfclcu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orayshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/056031.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordinarily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illegal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23dat%23!@$a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temptation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthdakota.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/believe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21072500.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hollow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheerful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/studio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/229376.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pegasus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0629.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/functions.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greek.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yasalake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culminate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/committee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privilege.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/210117.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resort.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formulation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemfive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antiguaandbarbuda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10173.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/has.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23572357.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/get_your_passport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordeaux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlinbclin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabricate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontecarto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/021300.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obligation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/left.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1115.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muddy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mazon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spyrogyra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/similarity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/368223.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000920.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/88.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cracker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/button.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enders.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invention.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eworleans.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/living.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gentle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/envisage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somewhat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requirement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eykjavik.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoroughly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxyz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloomfield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001215.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz-top.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biology.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilmer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/jsp/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubrovnik.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phesus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belloc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amburghaembcg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_files.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools/uploadx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/016161.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mercury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deaf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallatin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/braindead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CEO.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bodyshop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oona.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exaggerate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baruch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucerne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jello.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthernterritory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonzo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upfile2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emigrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disagreeable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previously.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexander.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chairman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surrender.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpbb/prefs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfaceok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/policeman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardship.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebenezer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/would.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/User_Article.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladstone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradbury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porcelain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forearm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consulti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/froshmeat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/86.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/528345.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/chklogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/aa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmanage/ewebeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rarat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discrepancy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxms/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchestermaetistc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marshallislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supreme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodrich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/zzchn%23da2005.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/311381.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elgar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eisse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/say.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/develop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1213.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56148488.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.jsp?type=../&connector=connectors/aspx/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1020.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/required.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolivia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db_backup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up-to-date.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119900.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiseng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staring.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sergeant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappointing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiplication.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/study.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budhabi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eneva.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_sql.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reproduction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldives.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b0nndigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsp/view_source.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neutral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afternoon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/links%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ackerman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disposed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/execution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveUpFile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technique.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usic/z9v8upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminmenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/and.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obtain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/migrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burrough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/financial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rohenamount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/qsnpdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucqydigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19690510.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hooton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_login_easysite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEdit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sympathetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/245245.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integrity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udapest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/converge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/state.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinguished.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.jsp.ba.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login588.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgeria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitherto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yelorussia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs-admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyranny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairbank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orsetshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geology.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ading.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lemon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuesday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaryislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Style.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/155075.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arithmetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reputation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5544.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sugarbear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/63.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123491.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likelihood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/train.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heffield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/511103.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_productpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aideng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poll.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/west.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfiledown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/128314.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclaim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ante.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripoli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanuatu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get laid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smiles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbslogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sprinkle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calculus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/royalty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/push/viewcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inghai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aici.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cissy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/however.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harbour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11110.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiduo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ktvwupdate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingdom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibelieve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_bm1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certainty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hospital.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uckland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illustrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/z9v8yesitis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanliness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beadle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/521258.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woods.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/came.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1117.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destruction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1965.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassette.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electric.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exkndigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/476408.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/jsp/num/numguess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satellite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trifle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aci.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egellanstraitof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appears.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/returns.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arianaislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/small.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daphne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/admin/mdb/lennyash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alparaiso.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stumble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_con.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirmation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/b2b_sysdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persistent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookuppass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commercial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/species.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destiny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slippery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingenuity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bewilder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivalry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/method.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umatera.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001119.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/membership/inspired/viewcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0913.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innocence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replacement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francisco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminuser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hlledigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lining.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privacy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guyana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/external.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/setup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_commend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigcock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natolia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11309220.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/induction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinagar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/association.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/versus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blouse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doherty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007341.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indjain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jianzhan_Sheji/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/z9v8User_Reg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/58.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_articlerecyclebin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaoyu_peixun/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receiving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pledge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnival.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opinion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rakensberg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/educationmanager/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farflung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misunderstand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuller.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recovery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corruption.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinshua_chuban/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expression.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temptress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_adpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlanger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logsys.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smalltips.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileDown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shishangmeirong/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actually.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fremont.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiledown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tratforduponavon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/day.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdeal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/originate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeuediy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sightseeing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genevieve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/Admin_New/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connections/cnn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/tiyisw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/struggle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddisababa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragged.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesitate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcusisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25910.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdraelonplainof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkuwait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/animal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correspond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/479424.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info/admin/m_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engineer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mediate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23wygkcnalibaba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/adminmenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compelled.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carefully.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58443091.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackpool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aux.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berlinwall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sign.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filemanager.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uncover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/africa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/538263.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitednationsorganizationuno.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/uploadpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/float.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interrupted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/My-login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130116.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quartz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdrom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilenews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pursuit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginadministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uperiorlake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001997.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pastry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baystate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0705.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refreshment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/78aodiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verdlosk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plunge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acknowledge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/editmember.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/316984.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/islands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becoming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slump.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chord.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absolute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transportation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2013142.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowater.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tits.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelloWMLError.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/math-cs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123178.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/077870.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ickes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123175.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v6krdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slander.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haughty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/74.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fruit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/render.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crashcourse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fl_Web.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acassarmakassar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilogram.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controversial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbreviation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eweb/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doofus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/codebrws.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkcudbrightshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/332580.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aucasia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobacco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12120928.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyzzy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urban.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancestor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hemingway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/president.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderately.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usenix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puzzle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imaginary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embassy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/connectors/jsp/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32167.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/oask.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileNewsPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/animals.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_softpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specilaise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320402.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pblog2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incredible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considerate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/245401.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adapt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddhist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwarf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfrancisco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/129581.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aharathe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/084313.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hooker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.jsp?type=../&connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liechtenstein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pocket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/610000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indanao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sportsman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rug.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guilt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plumbrandy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneezy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52088.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/Admin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login_lg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ualalumpur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kraine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilemma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminMenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/family.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwanda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyisw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonplace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/switch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilebanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onionrings.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/park.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siren.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berdeen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dampier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101012.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontserrat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capacity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/for.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contention.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subdivide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newusers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/move.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izerte.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/index1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135135.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stream.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/24t1t101.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121763.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedicate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23sql.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/usergroup_0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_count.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/display.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evres.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittybitty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intention.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reluctant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comeon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campaign.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/_vti_cnf/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1223.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redbaron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileCases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weird.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favourite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/policy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/194811.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ventilate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserSetting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giauque.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadimage3_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antemario.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incidentally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utchharbor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exotic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faithful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8up_bookpicpro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kettle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10248963.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impact.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magician.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02101002.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fax.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/user_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ialystok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tablet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighteen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilometre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ride.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454978.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idealism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47880624.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enthusiasm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10882048.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msm/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confession.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebrides.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zero.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploaddd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unigrafix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capaflow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appropriate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keeping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birkbeck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essential.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vision.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dessert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courageous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netherlands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/although.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/166.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/struck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/showfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discipline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compound.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testimony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eixlaoighis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myalibabainfo/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/super.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backadm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edi/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0513.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333333.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precaution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cannon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remnant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/journalist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/focus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2224884.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hradmin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacteria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/115cn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urintjucrin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intrinsic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/democratic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desperate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undergrad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traverse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edmund.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persuasion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4724136.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0301.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123y45.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8vt2digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/development.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gershwin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimenggu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rectangular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiweng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urku.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101325.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0217.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aran.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golightly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileServicesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wherefore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfiletemp_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/following.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongkonghongkong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uranium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/award.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/du.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1015.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56147882.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defoe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earborn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustralianalps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formerly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conquest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latvia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boniface.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59175528.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uruguay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor/editor/filemanager/browser/default/browser.jsp?type=all&connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/block.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soluble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gather.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/588.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porsche.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardiff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=image/&connector=connectors/jsp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wisdom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoopy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sofa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/htmleditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1691002.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eveline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516885.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derived.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abrupt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/datashop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wept.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelloHTML.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesotho.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yijuhua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taxi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resistance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/number.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread-49-1-1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cremer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/306840.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arachi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/query.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0213.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conndb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndaman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201633.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foosun/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parasite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shehui_wenhua/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mislead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkaratau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1425.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conceive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olotov.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/videophone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arszawa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erroneous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adsystem/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8tmdqq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_addsoft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebanon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/c99.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chunk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/translation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complexion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plateau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saabturbo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1uuqmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miracle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortauprince.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordilleramts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eattlesiaetl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/8k57diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ackson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112081.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsp_test/PoolMan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33521.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enangyaung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hradmin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esotho.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teaparty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/109430.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conviction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102938.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stroll.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/433.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stared.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/its.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/try.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/la.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/window.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bureaucratic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inevitable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message/admin_login.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combustion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/h6aodigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perpendicular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfiletemp_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/612087.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nodded.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instrument.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derek.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/020202.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruelty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34567.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candinavia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collins.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/737.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileservices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sulfur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everafter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ownern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbourne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travelling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321420.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnaw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleigh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/close.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showimg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/admin/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comedy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thursday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBlog2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/striking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grumble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apeverdeislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asaycmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3388963.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esternisles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upflash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrelake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/substance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_SoftPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/love.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grocery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fargone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/162888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiply.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amilton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddersfield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronghorn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/c99.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168602.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinburgh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decrypt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baoming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mauritania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecatestrait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characters.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11336699.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fettes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/home.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepwd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okyotcukjcu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beyond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_editpass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herpes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortorico.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ho7fdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mosque.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/individual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airnshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sociology.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olkestone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flatten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/influential.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_check.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2403334.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccraakkra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intimate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkokbaeykok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exicogulfof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/masingle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uwaitkuweitkowait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relieve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1588.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outset.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sending.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clemens.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copperfield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12380571.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reporter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standardize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emarang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effersoncity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tragic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunlakeof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201314.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmisti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbartonshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/current.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/328117.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convenient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spontaneous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obsonmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indignant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jibouti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bias.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_setup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33355555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ew/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131445.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiermount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2829.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orchard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criticism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examplesWebApp/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ating.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regardless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beveridge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akhalin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/si.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/days.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comrades.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kayama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/introduce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133221.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landlord.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unmoonlake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/past.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3610791.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumberland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminqiqi/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit1/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/positively.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/to.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaxian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ercedario.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decision.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3310077.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconn_logo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flavor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employ.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8000/welcome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yay8digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/women.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clause.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lodge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cemetery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somehow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/siteconfig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confidential.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dubious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stalk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwardlake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pwd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlborough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4265.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grasshopper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cokeisit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/browser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squires.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aida.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemAdmin/AdminLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maplesyrup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anza.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stretched.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/const.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/working.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paralyze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/430301.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expected.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awaii.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/tbl_copy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tortoise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/85.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasilia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileservices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognized.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/count.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/first-rate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/129129.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/market.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/male.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/88888/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0516.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repetition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prepare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coincide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130313.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquired.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stalker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shepherd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangxi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23vvskybbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbouring.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwadmin/a_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conscience.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clinic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welcome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2613064.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicaragua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanbator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribbles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndiana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scholar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinawa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/also.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drunk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/politician.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senior.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nurse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguethe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/z9v8shop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happiness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/require.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocarno.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wantpws.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respectable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/documentary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/170512.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111168.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mr..jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insistent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dropdead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bornagai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ateshead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genuine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopkinson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aoundeyaunde.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jellystone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_menu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rovidence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ila.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortlouis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rarely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onolulu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otswana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocosislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prayer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humulangmafeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530806118.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angduan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileservicestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stammer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curtain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq_dahuala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speaker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1122323.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straighten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_product.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crazy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congreve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underground.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tackle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raisin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/195882.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1019.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ship.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derivation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndianapolis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenhouse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gravel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consistent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adele.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randenburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_yuzhiguo/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automobile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulhacen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemonic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honesty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaxy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesdeadjim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56789.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwh6digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thanksgiving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/woaini.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physically.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germ.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/democracy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strava.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/283300.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1122.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pacific.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/britain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bea_wls_internal/psquare/x.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assistance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welfare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embroidery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/differentiate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sermon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arseillemasei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feather.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nakamichi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overthrow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heir.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foghorn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/helps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookupPass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fertile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/372228.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndizanandizhan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humanity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3333.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hannelislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pathetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halstead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0539.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symbol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonwealth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hicks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/masingle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delightful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difficult.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/again.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambezizambesi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speculate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provision.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uvalbard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eecs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lipinwanju/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reef.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consumer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_Photo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/series.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angsonlangson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fancied.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olwayfrith.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amherst.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enemy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanghai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dependent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contemporary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evidence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56086945.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rathcape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulgaria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshidiantai/755.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feeling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/super.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilebanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/chaxun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestlog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eru.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pieces.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8cmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/play.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.2bsd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eychellesthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Admin/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sys_db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/read.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/screen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/335778.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108975.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanovo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/left.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/you'reok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isherwood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrymore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilelink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discjockey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adduser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okosuka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uppic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2828561.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmarino.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etaoin shrdlu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancashire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paranoia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5201314.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electrode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humorous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosannah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bagwoman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electrician.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cattell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/showcode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burghley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insult.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bracket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/removed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ianjin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boeing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okohama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iege.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/weihu/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integrate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phreak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermodify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reservoir.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discriminate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deafen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/croker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.jsp?type=image&connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/56.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2457450.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tourdatabak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burns.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg/z9v8user_reg1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/translate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bets.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_siteconfig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/energetic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birthday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/512120.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tables.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccamekka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23klso%23vip%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/query.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hihuahua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/admin_backdb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/370624.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/142234.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1010.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/author.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prohibition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spherical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlanta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpetersburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0323126.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolphin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnapolis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10988422.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/von.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discbrakes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/total.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alamanca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/power.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bispham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caused.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etnaetna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilheney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easylay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eopoldville.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/default1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yneandwear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellesley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dc6xdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lens.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lborus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catholic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aju.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/p5addigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alienate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/289298.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/MeCMS_data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flaxman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proficiency.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldwar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prepared.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/gb/register.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lieutenant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nauru.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headquarters.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eirutbayrut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemceo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ierramadreoriental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occupied.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthodox.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literature.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/named.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neglect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bow5diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipairislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnsbruck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjhgf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/tungstendata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/063421.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitchcock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ottinghamshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/041130.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan/z9v8scan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tub.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grocer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stranger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atlas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jokeoe_data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelaide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_setup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myalibabainfo/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/how.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/problem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acificthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alifornia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/group.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cab.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/export.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fowler.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solicitor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edithtml/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansfield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stereotype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bs/z9v8diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/AdminLogin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0081.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewthread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aristotle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/167761.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condemn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symmetrical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ststems.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interrupt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirteen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gofuckyourself.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/44170.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/saveup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considerable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doubt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0501.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shitfaced.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plunder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ork.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintghdhgfb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortsaid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewmexicc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greece.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thiopia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitneymount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andarseribegawan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiteng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqyhtml.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4689335.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desolate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regret.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/being.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2282662.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bcnydiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aili.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxadmin/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantinople.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ralsea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fishers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/else.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hull.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycroftxxx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1031.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin_new/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/news3000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6200126.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everybody.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yourself.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eville.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go away.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aircraft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frontier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serpent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luminous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/24857602.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/548888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/successor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/admin/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lare.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/math.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uehue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uptohere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/led.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disperse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stride.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heywood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warmweather.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babbitt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apartment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upfile1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flower.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dead-head.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wangba_Lianmeng/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/489660.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138918.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corridor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheek.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7788.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthamptonshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubbard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uila.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrtxcnqywz4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beneficial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onstantsa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/italian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ribbon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aceng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fault.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiedam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/international.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/311922.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0619.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summarize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scorch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsinfr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maneuver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belarus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rague.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conservation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mother.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invasion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/factor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitterly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogotabcugcta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webhead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thigh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingapore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eningard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illbertislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musicbox.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/history.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ournemouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greasyspoon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovebaobao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntario.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0815.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tension.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asebo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/machine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreiser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lump.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ju.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destined.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badtimes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ominicanrepublic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/iissamples/query.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileServicesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartholomew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randteton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airokaicrcu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/only.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_article.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolidex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justification.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roses.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liability.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woaini.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8cmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrialise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alphonso.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsd4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckaduck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briggs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilippinesthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caesar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other/2007_jh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devotion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backupdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbitrary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110259.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatred.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saved.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flesh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uizhou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handbook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/they.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleshow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/450.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbarticle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implication.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzwadmin/admlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/336009.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornefirthof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miniature.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suffer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiram.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newmm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoulscul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aghdadbaegdaed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/received.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5xc4diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqyhtml.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aroda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/66.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccentric.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coincidence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rastaman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baldwin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0827.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anduan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heartily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanxi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8config.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hidden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compulsory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceedingly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cpcadigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boomer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/san.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combination.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/given.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purchase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geoffrey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/path.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/db/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cachemonitor/statistics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/192725.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0824501.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyjxy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/never.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpaul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutdown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/211314.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asfq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/218630.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/understood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/procedure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/Shop_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rimea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iigata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toucher/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/another.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withdraw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orwegiansea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seychelles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alencia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christabel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/track.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convene.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wynedd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1218712.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diffuse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200020.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/methwick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cameron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imogen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aram.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1962.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underestimate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/376767.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oask.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangchun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alkan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onaco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenaway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fearful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileservices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wretched.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SysConfig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2756.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/220737.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/9ff0diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethnic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egoiul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tockholm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranitepeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolsover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfgstats.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avenue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallhips.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyuan_gaoxiao/950.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600839.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tropical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/253839.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concession.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackboard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o5qwmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221217.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itoria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoughtless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egyptian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anberra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/various.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardinia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dormitory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/port.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/universally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cole.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makemyday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nature.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/ad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veteran.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heyenne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anything.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuddles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olymakolima.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bahrain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doreen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gertrude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obscure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facility.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/professor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astonish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turnover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hittagong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durrell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contained.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli-cn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfiletemp_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/asdf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oval.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modernise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eads.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/related.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aghdad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rizaba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/period.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/mm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usersystem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathedral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cease.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330726.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ASPAdmin_A.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspension.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/09021117.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toosilly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peripheral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylvia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editeb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/june.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gulf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yl9tinstall/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mt.xinu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprehensive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/12.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amazing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogfight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controversy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donovan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appliance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_new_ad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23newasp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5995563.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go away!.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/income.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppalachian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.livesoftware.jrun.plugins.ssi.ssifilter/../../test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beef.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/launch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4029.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileServices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/road.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/239026.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/a_main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powertool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucknow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specimen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ima.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lagoveshchensk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defeat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inferior.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoulder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147562.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ierraleone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bennett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonetheless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambridgeshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620828.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goonight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomato.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/but.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profession.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/yxbbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2478664.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnitogorsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlotte.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xiaolu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/phpinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileCasesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluctuation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resource.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zoro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discovery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/share.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bazaar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fashion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convince.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evelyn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moldova.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diameter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dillon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/308115.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_usersetting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocietyislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/session.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourteen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/espos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/well-known.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leveland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruguay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrub.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfred.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ch4dcss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agasaki.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vt100.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbvc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/island.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tease.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physician.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_download.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a2e2gp2r2/x.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/po.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manages.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advantage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/load.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consideration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onshu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sequent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madboy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ministry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrw1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/z9v8SelectPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alermo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/religious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Article.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productivity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataShop).jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insignificant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auxiliary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mild.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prosperity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55555555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gathering.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/super.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7th.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmins.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/q46vdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_softpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isaiah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/047387.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isaac.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/language.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plaster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermuda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nega.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashamed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/america.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vo_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alticsea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rotary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpspy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enghu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webgood/g7223173.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diversion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olysee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaonian_ertong/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prophecy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skillful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg/z9v8user_reg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slightly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/common.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_sysdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delicate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23nbaamlq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnetism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flatter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stocking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/done.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowledge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji_tongxing/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/we.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3793933.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prayers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/080088.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opportunity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philosopher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alphabet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrgoodbar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/away.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartlett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resign.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pressure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pineapple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136180.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/themes/darkblue_orange/layout.inc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entucky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvbnm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fletcher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intermediate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interpret.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HX_LOGIN.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herschel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get stuffed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copyright.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heroic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refuge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juvenile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_article.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elevation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_news/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propulsion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog31.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/mecms_data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eastern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_memu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almerston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cy/databackup/databack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aracas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_template.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbook1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lighter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56848719.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoyt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sister.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weakness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/participant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secondary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lines.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fund.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adotville.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/froude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embrace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/test.jsp/info.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antabrian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyesight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vapor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exception.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrogant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cotton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BatchLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530527.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1164.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxang_manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reece.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/433263.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uqa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/011379.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appease.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obstinate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/har.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_up.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cucumber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anisleof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aterbury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/government.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omona.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c04xdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/label.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cohan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirror.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drug.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_images.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.jspianthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emotion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombaybombei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulmein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meadow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tenderness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.jsp?source=/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uerlist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/component.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barren.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/com.ibm.ws.console.events/runtime_messages.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jazz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinitely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afeking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/008421.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsp_test/poolman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oniara.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foolish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nkara.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/described.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wander.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compliment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idlothian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belgiumxtrapage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turns.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/departure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/month.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13601614162.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/logout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/september.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcp-ip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_upphoto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marriage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deficient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delivered.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/southidceditor/popup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_A.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hickok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ozone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsoever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traffic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rising.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transparent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/64cadiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wings.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11117791.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mesh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eicestershire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troops.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilepic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctrine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marginal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conquer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assured.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/DataShop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_h.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bfd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chase.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Subsitemanage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread-16-1-1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgif.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2868835.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3367.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alenciennes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ougainville.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diagram.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sulphur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angceng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/admin/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_h.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/where.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/61131897.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bighouse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepsix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPAdmin_A.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provisions.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hound.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umfriesandgalloway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kleenex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superficial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anku.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gossip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agpur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legitimate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convention.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilisation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555608.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notebook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notwithstand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appreciation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/july.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaines.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2009.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taffordshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hames.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aima.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Admin_Index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethlehem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connections/conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/513671.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/31887.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pollution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/search.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutiepie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/ssifilter/../../test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiritu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1961.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kept.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileservicestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigsecret.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbany.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrdlu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accomplish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/march.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_restoredata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flutter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insurance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ASPAdmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tewartisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441925.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disastrous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deletemember.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51012674.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thepenguin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aebashimayebashi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conditions.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brotherhood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affectionate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortonsound.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skyj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reptile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manger/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52915859.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/growth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lord.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inabalukinabulu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrific.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmsux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/columbus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/62.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0520.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capeverde.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_ads.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1029.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/central.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hikoku.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileservicestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ertilecerscent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coleridge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uapse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tacforo/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clitoris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lygofa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accompanied.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangchuana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520530.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ira.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vectrix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word2000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_database.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserList.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numerous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dicktracy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mob.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sausage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complication.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickhead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf45/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/383838.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadPic.jsp?actionType=mod&picName=miao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refuse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/z9v8upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikallake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_product.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginpage.do.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_OrderPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disabled.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othetop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hungary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conserve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fielding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isconsin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broaden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dcjsdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highlight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/57631018.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/shell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keyboard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poolman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arena.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extraction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birrell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KesAdmin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onduras.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wolf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulysses.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aileng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runswick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatshit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0908.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindergarten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0523.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfiletemp_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuffy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tug.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3242153.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slogan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/potential.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/69.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stairs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/const.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mention.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0339520889.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pudding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butterfly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invinoveritas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endurance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otherham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignorant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/191881.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InsertEmotion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codename.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communism.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/print.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8md5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunisia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iltshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turkmenistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/build.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaware.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treasure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/despite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remind.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/file/login.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technician.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun-spot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illingham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingjian_zixun/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/chkadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1819.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angorgonio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leader.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subjective.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tajikistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dropped.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particularly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/credible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/WoDig%232008.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enicevenis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/counter.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deserted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vowel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19631989.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wrtxcnqywz4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pointing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assenpeakmountlassen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecilia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzjohn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c2jndiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0328.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/LogOn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/Select_feedback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bathe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metric.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0305.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hench.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileCasesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112233.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyperlink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladies.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mustard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/southidceditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/admin/b2b_sysdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anonymous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aika.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alahairdesert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whither.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1959.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annetta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tranquil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/names.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/texture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salmon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anru.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwendolyn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/software.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accordance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/historical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/bb_smilies.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/219812.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ijmegennimeguen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveupload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6th.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batmobile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3407.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openbar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antoinette.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apologise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d6o4digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initiate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridgman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8wr8myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scale.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klahoma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usually.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clapham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiquan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lespaul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadette.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/339575.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/training.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0610.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalogue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dryden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ames.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersailles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congocongokinshasa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arkwright.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1iyydiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irrigation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137303.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/504503.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omalirepublic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brazil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extension.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombasa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explanation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/praise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/european.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simplify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increasingly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/future.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilogramme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fleet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fender.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntebbe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shazzam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deficit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northwest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lps.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teenager.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angzhou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0112.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcxt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileservicestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accompany.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/006228.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regiment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuthbert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dawn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deputy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lostpass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmain/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encouragement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/synthesis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragons.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolved.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121212.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ublin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/five.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fergus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9988.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13501976064.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebraws.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/well.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talingrad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2582916.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spliff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waters.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otsdam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/up3xdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superior.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewbritain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hundred.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anoverhannover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxakdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bargai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcheck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inject.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weaken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panther.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celebrated.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanzania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uva.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5013.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/function/uploadproductpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_form_Admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/example.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eastward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/556688.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zechoslovakia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gordon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missionary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thermometer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59124309.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shangwu_Maoyi/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meaning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irmingham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1212.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Library/DbConnect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davenport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441206.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halsted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewydecimal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/some.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/space.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_jk/joekoe_data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/518517.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assistant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andiego.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_subcate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quantity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebellion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpu.jsp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigitte.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/211211.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanfrancisco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsystem/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000519.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stepped.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/login.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ci.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parallel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinct.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111999.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foreign.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deforest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dv_plus/marry/plus_marry_db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileServicesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grayson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathematics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorida.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertram.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136019.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrdarja.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/determination.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kneel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131421.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighborhood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartwright.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tennis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_in.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/body.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/view_page.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getfucked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhcarolina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10293.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ows_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southwest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/placed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dull.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/434000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azareth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_ProductPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cy/zzm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fulton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/river.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/princess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metallurgy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampagne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dozen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/cmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margeaux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ochester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiyubbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/230711.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggregate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hinder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telecast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waitress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urmansk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_info.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/others.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ielce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatbritain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huggins.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disaster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retirement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradeLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweeten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pole.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motionless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scientific.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414812.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intonation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/isapi/srch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angtok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applicable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weeping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bauer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/location.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nourish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2589758.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reserve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wound.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocabulary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consolidate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goforit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courtesy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/though.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idurutalagala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewbrunswick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/553600.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/descend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admitted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aronne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cohen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfile/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorrow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/die.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administr8.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilecasestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/244517.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astrid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msterdam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloomy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solidify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/phpspy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limits.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0925.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orava.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cradle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/representative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mh6rdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4623384.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restraint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abrador.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/details.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discern.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200081.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/task.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moguls.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nderbyland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elanopeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clothes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55912148.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algeria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irritate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1101.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxspy2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/EC_AdminLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flakes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBLog3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0813.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astlothian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilepic_getimg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/jsp/view_source.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microphone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/child.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleeping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/adctest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undoubtedly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longrest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/05105807836.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indignation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authorise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/216101.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsewhere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servicesystem/login-admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motivate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deserve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examplesWebApp/InteractiveQuery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roydon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakedpotatoe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardanellesthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelloWML.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20202.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4p5xdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanshi_nvxing/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altimore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bind.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buzz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vitamin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opera.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harcourt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9th.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122333.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/db007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcheckform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osporus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countenance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restored.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163163.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/假地址.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aviation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/301.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lubricate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileCasesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work/work/main/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/controlpanel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/officer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretext.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/migrant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5081.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingyang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extravagant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/data/gb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antarctic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1812overture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Select_feedback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trouble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gypt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truefriend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzgg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhibit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deflect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rigid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dub.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewFucker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileCases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lydgate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peru.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oncaster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trembling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewfoundland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haywood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminqiqi/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upwards.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/two.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Super/Index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andorra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remembrance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/398203.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shownews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4196108.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0421.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_fileup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ice-cream.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/%23wygkcnqywz4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condoms.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akodate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tensile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/d99.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6023500.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uachita.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enclose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nurture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aituan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/segment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stainless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/LoginAdministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requipa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elicon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commodity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novacancy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8key.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8log.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/into.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/335908.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/db/ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iagara.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/not.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conscientious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnejones.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ensue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40502.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpgroupware/inc/phpgwapi/phpgw.inc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intrigue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/394576.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recession.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bingo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4110428.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affiliate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cteqmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/025603.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distortion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itself.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tooth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umfriesshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilelink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nigeria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monitor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronte.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disturbance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amako.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meatwagon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/down_addsoft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/made.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aryland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furball.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackwood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrewsbury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consolehelp/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceased.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouakchott.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dougherty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undesirable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kernel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scoff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cudworth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/wish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erthshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engshan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daltry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1812630.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administ.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shitforbrains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_maillist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocacola.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countries.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insulator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1766909.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23WRGKCNSMSJ.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1hmmdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communicate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade/admin/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/187668.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2289.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curiosity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overestimate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56614293.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarters.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ompiegne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overtime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somebody.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flourish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3108.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intelligence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amplitude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latariodela.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/phpinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lights.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yinshua_Chuban/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/created.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolescent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arkhammount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yutthaya.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heels.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunaloa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clurestrait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glimpse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touched.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilelink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managelogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atherton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experiment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6031231.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8000/servlet/com.livesoftware.jrun.plugins.ssi.ssifilter/../../test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/momentum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118340.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/return.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1314.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangdong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAdmin/ManageLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manoeuvre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/Admin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1188.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshbread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decimal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000102.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_6list.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specifically.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strengthen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nasty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holtham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvbn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pci.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawkins.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135642.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/登陆.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/%23tourdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caught.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.project/%23zxdata.project%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natural.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/132603.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bathupdate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/envelope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centralafricanrepublic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recycle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noodle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photosave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/square.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp%81.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dining.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1370192.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/nq31digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pointed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beauty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definitive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsajoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esteem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2089.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintenance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blueline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goto hell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inchester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ienna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreadful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaopin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss.cfg,ncl_items.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6yaqmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oole.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrenaica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbados.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/second.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annoy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/42.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absolutely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/39611327.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moonpie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/federation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hudson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/tool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzzball.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huringianplateau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sequence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chopsticks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ologna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uayaquil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reenland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hancock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/event.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conclusion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netwolf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outtolunch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/format.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahrainbahrein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112654.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/react.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heapdump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/heapdump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toxic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/litter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/why.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/real.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dawson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offspring.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/mmm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heater.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45986.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heads.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anffshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saucer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/under.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortsmouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wax.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor_v280_free/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196588.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_productMove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rno.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dangermouse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsaca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lymouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20731.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microsoft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olynesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronunciation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conference.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indifference.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apetowncapetown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0727.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passenger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arolina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/enda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebnekaise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remarkable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beecher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reckless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgonderin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_asp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remarks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthwhile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samadams.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/16.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violinist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frightened.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjdsdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntananarivo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compaq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/150531.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsys.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119614.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occasional.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indeed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drastic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/452301.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wygkcnqywz3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix-to-unix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get lost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uadalupemountains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasoline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evonisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellowstone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crucial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/default1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parlour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/littletoe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siyu/manage/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enchant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holyshit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10th.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dundas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apecod.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transmission.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolkien.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpeg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rras.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/41x6digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angde.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/majesty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/ok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rainbow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molsongolden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id_pass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invited.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overflow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reason.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/blr3digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellows.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtually.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penetration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodafternoon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torque.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enoch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodjob.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/file/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impetus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breathing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/010101.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instantly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Char.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awesome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubrey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decree.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oninislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilecasestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earlharbor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincn2008/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amateur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jump.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/female.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harris.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broadcast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/db007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alveston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/background.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pushed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getstuffed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51marry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ox.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/203515.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrub.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l-blog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outdoor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numberone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Preview.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1205.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualities.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wholly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anseng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wish/in_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112211.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_up.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafellpike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/situated.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/araguay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continuity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131431.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_bak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euphemia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emptyhanded.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/AdminMenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cotedivoire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pardon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pulley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iloveyou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adhere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/181121.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esmond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iribati.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merchandise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DbConnect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007918.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminlogin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/version.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_install.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dangerous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fso.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edgar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/zzz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subordinate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/major.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consumption.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/sub_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attempt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exactly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/226500.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nopass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handout.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fireman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23db1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/french.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mankind.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improved.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yons.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5814.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spirits.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vigorous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/417857.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Members.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crompton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfonso.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/gqekdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transplant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diesel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chouten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsys.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withdrew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appoen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behind.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oops.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bailey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prosecute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opposite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfordmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/44.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immigrant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/measure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prisoner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolenmts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/308318.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8adminmain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ammerfest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19680918.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/progressive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up_images.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Southidceditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewsource.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/europeanunioneu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reservation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/historian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Sys_db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermany.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ami.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/gif.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behrman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chestnut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/WebEditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveannounce_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcmd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/early.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newuser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/switzerland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/-tre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rifle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smooth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpv_admin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspadmin_a.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accuse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wither.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0615.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueenmaudmountains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assembly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/please.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distribute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carried.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attention.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cscie-ci.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2345.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stationary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showhost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seventeen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/value.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/559104.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ona.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6crwdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iddlesex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bishop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alkhashlake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centimeter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imerick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrifty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elapse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/c0lldigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/29ffdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metallic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indication.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluchistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221197.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yellow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/34aqdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denmark.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor_v280_free/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evans.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frantic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geometry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilecasestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palestine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whole.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preset.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himborazo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extinguish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminroot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forerunner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uffalo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caipcad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/15652.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070679.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visualise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploaddd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/united.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/field.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regarding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hautauqua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_feedback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/captive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youreok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/social.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardens.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enormous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujiyama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/531127.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embpdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trasbourg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfiledown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhythm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cord.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headmaster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominicanrepublic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/produce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/between.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/6pakdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bankrupt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111012.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triangular.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101010.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/que.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/century.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relevant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkraaccra.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outdoors.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiche.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amir.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ietnamvietnam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arien.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attorney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuegongjin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colclough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/college.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewzealand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sometime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comoros.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongman_katong/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntwerp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anningisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/114370.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastbreak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrod.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/min.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambulance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coalition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolweb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/cao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensitive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show/back/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3521985.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regularity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/z9v8link_add.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vansmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/077012018.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postulate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmasm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clifford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/users.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precedent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afraid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experienced.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rlington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/request.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office97.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/death.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longtounge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuqiu_tianxia/1025.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classification.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unkirk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intensive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boke/data/dvboke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overhang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uxsourcesmont.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/LoginAdministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edges.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makewar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amplify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postcard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_style.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitedkingdomnorthernireland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aini.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhbbdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/book_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530730.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buttfuck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubbish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqywz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longhair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastlane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noticeable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/dasp/fm_shell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infom_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plc/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121212.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodtimes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yler.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gainsborough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holmes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housework.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agree.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certainly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsave_single.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awkesbay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsedit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/at.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/css.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/288.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scotland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweetness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessitate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/htmlEdit/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/DataShop).jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/313131.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stray.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iogrande.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snafu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/385670.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glasses.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valuable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antodomingo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sod off.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/458791.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anube.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incompatible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eisenhower.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oncepcion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileCasesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drinkwater.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/picupsave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elgium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/caonima.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobbit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eelung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/xm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiceng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acceptable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vacation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/202775.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysterious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rssfree.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3344520.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obtained.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/511789.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlucia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burbank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131313.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rumour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amabel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thelena.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/file/index.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longitude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earthenware.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armenia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onnacht.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooperate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amoa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0565.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_article.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/502835.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_message.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/352354.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pigeon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andadevi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwerty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permissible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/302534.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1233.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seaport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52982121.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loosely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ississippi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1438.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33333.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/666.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1209.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erupt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinidadandtobago.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_new.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spanish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/light/cp_upload_image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/371230.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cayali.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arranged.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2324079.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tendency.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/md5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongshan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/log.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impurity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/452091.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ormandy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stripe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suburb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downtown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cicely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terror.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sincerity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duplicate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csc298.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1314520.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_admin/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanbatorulanbato.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabinet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bodies.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bench.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utherland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macsyma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angliu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r11sqq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hinge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knob.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esternaustralia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doll.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolled.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitewash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/145521.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/104126.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_info.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bullshit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justforthe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamorganshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1218.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck-off.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abandoned.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iechtenstein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serverinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benefit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microprocessor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swingset.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/process.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seldom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/second-hand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/17409.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196893.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/fuckyou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/006425.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commemorate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harkov.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/24.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/212322.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilenews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1118.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_softpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amusement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guatemala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drinking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northatlantictreatyorganizatio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oastrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_setting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turnleft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extensive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileDown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i'mokay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaufort.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incident.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugspitze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reduction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/config_inc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellowship.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminindex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yfed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolkein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileNewsPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slimeball.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123010.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llinois.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xiaolu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/way.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andungbanduy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vapour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eitrim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodwife.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craigavon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popularity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microscopic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automatic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ianbienphu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/code.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5712088.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnificent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbuquerque.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatrix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seek.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/417814.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shutter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/istrictofcolumbia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520570.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearadmin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alembang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bosanquet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dismay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offensive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/door.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atskillmountains.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oral.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earnings.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llentown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saotomeandprincipe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck-you.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pumkinpie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disrupt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robots.txt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/145513402.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/350984.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batcave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anselm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzroy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boundary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/changepass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0327.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileServices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wicked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stroke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utmost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quatorialguinea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/territory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apanseaof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cushion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/failed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icecream.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix-tounix.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_conn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shallaux.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symposium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expedition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loosing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y057digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punishment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ihtfp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athlete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jakartadckatc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_edit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economically.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dopey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isajoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinguish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etersburg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsjj.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortunately.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfile/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronx.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/substantial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8pwd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upload_c1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0971ll.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undaisles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usseldorf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dumb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enammenam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excessively.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eileen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allocate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eniseyyenise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiduan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainframe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beggar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cube.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warmth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admlogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3357.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endeavor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/network.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obedience.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certificate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concept.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immortal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_style.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/advsearch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cushing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/climb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123666.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indicative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purqdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saudiarabia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udbury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tul5myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coatimundi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akalu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urkey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speech.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orakermount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unisia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreeable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilsen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7am5xiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/establish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stab.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pianist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capability.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consequently.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/02omdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/castle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boobys.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intervene.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_setting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shilling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tube.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/was.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/less.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/457315.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/through.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constitute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesterfield.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fetch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/hello.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dtest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foxylady.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driatic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dignity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttawa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissatisfaction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/security.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hollis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4545.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/families.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshmeat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yderabad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_logon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/461139.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cottage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eywest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softcatemenu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ientiane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fillmore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/说明.jsp/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/jsp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bones.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangsha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epstein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moslem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/%23m_x%23data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108108.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exercise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aban.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleanor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4489207.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngkor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/era.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banquet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot-asp-scan/z9v8scan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barkley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/californ.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spurn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/designate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sturdy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellison.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supposed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overcoat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscribe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shift.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illuminate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/activity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0236910.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/super.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01062972150.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comedienne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chronic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahomey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guan/guanli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2oindiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summarise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/havelo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aohsiung.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspiration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hierarchy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impression.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acheson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/020900.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/073019780730.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rissa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whisker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileservices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070988.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortonovo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/republican.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileLink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modesty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sysconfig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bounce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sisters.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronzy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melody.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebrws.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anran.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personality.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/or.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diagnose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compatible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rankfurt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x7esmyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guarantee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyaway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliyuan.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/granite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ales.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fccmsres/admin/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3534119.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regulation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/description.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cythia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inisterrecape.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threshold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changethis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iamery.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swamp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deficiency.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/despise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/steddiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20011.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthasvineyard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reference.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthyorkshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntanlogin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/center.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sponsor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/put.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/water.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rdennes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiyu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.jsp?Type=Image&Connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deprive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200085.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etsamo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firework.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maximum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sounded.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zinc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almstad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbados.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138-1940294.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icronesia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewpoint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorkmid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uagadougou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminconn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/y9i2digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fibre.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/read.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calverley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intermittent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221221.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manbat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talinsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miens.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regenerative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shithead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daisy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanfran.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editorial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strife.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmssucks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ehranteheran.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137233.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/host.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/litterbox.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carpet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/londike.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileservicestype.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilmington.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftList_Cate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monetary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clement.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/participate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seeing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/asp/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/345.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antaana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evaporate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_soft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/325363.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furthermore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfiledown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parachute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/result.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingstown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrought.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54tq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_photo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strategic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calls.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/386753yy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivt/ivtDate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subtle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stratocaster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convenience.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arsala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/152433.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilecases.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus-pocus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlpanel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/her.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1013.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/census.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12343.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degrade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sparkle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aymanislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fret.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/saveup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hattie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collapse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserJoin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pluck.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unicos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/21.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/existence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08040701.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/especially.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ram.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/shell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluid.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1967.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftList.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampico.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overwhelm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expense.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/ewebeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools/uploadn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uwenzori.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs_save_add.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risbane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backdb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangce-heka/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/User_Space.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/390000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elicit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preliminary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variety.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usaka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/very.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfactory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wygkcnqywz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autonomous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaskell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/screw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruthless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iceland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23tyqiye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andungbandoeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpwd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attlee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultimate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overpass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flophouse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harassment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permission.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baxter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opaque.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/285900ppp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prediction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8css.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atmosphere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/think.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discover.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anban.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6140.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confident.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emperor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uphold.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs6.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sincere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/official.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaware.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irginislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrenees.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/300034.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murmur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naval.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_download.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defalut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/195866.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treasurer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8899.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/principally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SqlIn/sqlIn_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0x5emyup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondonderry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igeaia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/210boy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technology.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathryn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/535161.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proceedings.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/%23wrtxcn2007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugsbunny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/yz_consume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22327.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powerful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catastrophe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12531253.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slipped.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/produced.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abracadaver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloody.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movements.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cognitive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anme.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persistence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uiderzee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambridge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craigie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3800cc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anruo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/517688.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gould.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backrub.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christmas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adopted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elephant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheeks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etherege.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/075415.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avenport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accurate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exico.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamjebel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcdn_news.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pioneer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hither.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/271250.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/79aadigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/361800.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonorrhea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hartumkhartoum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ready.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/PopUp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/%23ewebeditor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ismarckrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/italy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byrne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pulse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akdstone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flush.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadhed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UP/UpFilea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/02kvdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whereas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaotian_qq/743.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caliban.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eorgetown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clumsy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owloon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/systems/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luemts.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enoa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possessed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bumbling.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/yo16digshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/571181.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transmit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hofstadter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzibar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zztop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stoniaesthonia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verdict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uucp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shorten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxidize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ball.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/best.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/on0jdigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingkep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indsor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go fuck yourself.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0824.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roll.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olorado.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmsucks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aotome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ban.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youngster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000054.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/188606.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3776.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/75.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimension.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atagonia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aofranciso.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ems8digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliyuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humphr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/follower.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patriotic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innocent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_ok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeatedly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contented.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebeef.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admindel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testguy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glitter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620515.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vegetation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongspeak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onging.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interconnect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dixie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_master.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/su.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfiledown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yahoo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syphillis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farewell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forms.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monaco.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henrietta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/product/manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbinfomusic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asplogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equivalent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54741162.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weather.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aramaribo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tafford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treaty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grammar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbrella.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kokakola.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hicagoikagcu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.jsp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triangle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/do.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsokay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvardmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arouse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albania.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newkids.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erintji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadproductpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nba_lanqiu/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhauwtralia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirmed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ran.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occupation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_edit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almyraisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/villa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137024.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allege.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/busy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridiculous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/van.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rchangel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bull.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybbssaveup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu_jianshen/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/won.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/425400.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_password.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc/conndb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_User.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4444.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herself.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/*.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friends.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10130215.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loemfontein.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anadian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash_.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisabethville.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/credit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4567.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_softpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/temp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complicated.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/error.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suckrocks.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otedazur.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propose.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asherbrum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugriver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabernet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111314.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigjoke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pennines.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arstensz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argue.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6qv4myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constitution.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcdef.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8uploadpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuylkill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refresh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alisbury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alawi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frequent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/fileupload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3047357.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misogynist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ae.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applaud.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_Image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amothrace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volleyball.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klingon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgetpassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/336888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duties.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seaweed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/565656.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/BathUpdate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flannel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fl_web.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/admin_6list.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/template/admin/notice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/46.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capacitor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propagation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1678.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abuse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rkney.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_EditPass.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogarth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke/data/dvboke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_adpia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost/admin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.jsp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propeller.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thriller.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appraisal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/410891.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incFiles/load_gg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosmos.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competition.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mortal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichigan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136128.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suffering.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoelectric.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HelloHTMLError.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faction.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/11111/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picnic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetici.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alloy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doughty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56830993.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forecast.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1964.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilepartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straightforward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horizontal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/43215678.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ore.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/%23echuang%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330203.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodmorning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sculpture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileNews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/541881452.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/331807.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userinfo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diplomat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bragg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esserantilles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caipiaobocai/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/origin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astings.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/d99.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/at&t.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndros.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manufacture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inherit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5710195.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erkeley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deformation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fully.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gracie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sort.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote/dsvote%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reenwich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdurman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wokao/1/gif.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toad.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/module.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jesuschrist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/additional.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lecture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/register.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2100515.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inorca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legislation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fasten.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/context.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/234.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56413818.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reasons.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shatter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omsomolsk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleShow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_Database.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nigger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileNewsPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whistle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owacity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disgust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilenews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romulan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throwing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costello.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0427.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0429.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osciuskomount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proceeding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinwenbaokan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123873.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abercrombie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bust.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submarine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/za.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/counter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supposing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_mb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/261027.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/84.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rural.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romantic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erefordandworcester.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lifetime.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitrogen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeans.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/Default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56094492.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/due.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teach.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starwars.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kazakhstan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agenham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiver.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eweb/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hallelujah.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altogether.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranaiba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tulip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8user_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baggage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effort.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abylon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/data/data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bligh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pull.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mars.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111275.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbuthnot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omoroislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voyage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_GetPassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Image.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uadeloupe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whereby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/%23%23%23fdkjgzschool.V2009%23.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vms.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repertoire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turning.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jug.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undertake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/092167.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gowest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_c1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axial.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handkerchief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sky.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.jsp?type=all&connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musician.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/join.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8User_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erefordshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engalbayof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/took.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58460532.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/advsearch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eymouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reciprocal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frobisher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cupboard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naked.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jewel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authoritative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/djg2digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gauge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lessen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/december.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accountant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowHost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_copy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definitely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brush.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohwell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enterprise/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives/415.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/object.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/DataBack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamical.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destroy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/235756.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3211314.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabulous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conspicuous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gangster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminLogin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capsule.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saying.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeopardise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accidental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56787.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particulars.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopb2b_sysdata.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newblood.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.jsp?type=image&connector=connectors/asp/connector.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/adm_menu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auritius.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circuit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ease.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukraine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quota.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chocolate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16608207.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objection.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinglear.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divorce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loaf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mkirdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/referee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronoun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/full.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/money.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/famine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plymouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falsestart.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentedit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/main1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223223.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1963.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldshoulder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arsawwoso.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impulse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mug.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardiner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11223344.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thicken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blush.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cave.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenville.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolidge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glorify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idglamorgan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/environmental.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register/UserReg_Step1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quotation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orno.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/383855.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uluarchipelago.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/out.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notwithstanding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alarmed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henyang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brochure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/new.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/availability.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthsea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2160.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/despair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mission.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commitment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beheld.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millions.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileServicesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/republic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iran.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1127512.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disease.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/village.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/de.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illiton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conversion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imply.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natasha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/stats-bin-p/reports/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suddenly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcv.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vengeance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inlet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addnews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/263668.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hays.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labour.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/up.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yacht.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cork.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tropic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mould.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amchatkapeninsula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nephew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orfu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlook.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conspiritu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botswana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111117111.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/materials.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawnee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/width.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repair.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/importance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/LoginAdministrator.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzhijy/htdocs/db/fileupimg2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it'sok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anagua.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/448448.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barfer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moosehead.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/upfile_flash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/253812.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punish.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osangeleslosaendiliz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%5FhKJH%40%24%5Fhgsd123%40%5F%24f.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upstill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revenge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/32.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couple.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwertyui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housewife.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urope.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honkey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slaughter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elyot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorrowful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unique.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlanticcity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aila.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handbag.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publicity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luxury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/29401.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclination.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atifkatif.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1a2s3d4f.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aritimeterritory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fawkes.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/ewebeditor/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/informed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soldier.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gellup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relogin-admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234567.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2410.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cerebus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quickly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemroot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anita.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/jsp/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supply.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edgeworth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58435738.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concrete.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruler.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs-ee.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currency.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reader.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraser.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/SelectPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competitive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibie.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statesman.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/18.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dial-up.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therealthing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anliang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heba.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entail.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grease.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overlap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relogin-admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/241325.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101244.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refusal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brightness.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butler.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112822.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfilem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vegetable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magazine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzyy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/against.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hack.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/able.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afghanistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/railway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gresham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlimited.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backdate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/567891234.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminLogin1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grounds.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/upload/jsp/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/250417.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clamp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartridge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footstep.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undybayof.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/aspadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Photo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enninealpa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imitation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r5nrdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widespread.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenstanleyrange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrison.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harley.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raw.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0000.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certify.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/last.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bayard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffith.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02021971.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djibouti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atowice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twelve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savecomment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/office/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matters.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conventional.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Images/config_inc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydraulic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apologize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urrey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disorder.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/manage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pswich.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/socialist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/the.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lounge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinforce.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diplomatic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ere.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anca.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadset.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polymer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfiletemp_pic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oitiers.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rizona.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost/manage/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harleston.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Edit/admin_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frontpage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocuspocus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maiden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartoon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enterprise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identity.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/died.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conservative.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jealousy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-admin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/553920.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcticsea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rden.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nukem.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadF.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portnoy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/409152.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/when.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symptom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anode.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_batchlink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contribute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aratov.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackett.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/song.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/manager.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mtnbdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angladesh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/127202.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onga.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imokay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/379666.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidi.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2588.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmgr.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aernarvonshire.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coupon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibeleive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5841321.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utensil.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aze.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02nfdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/season.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antucket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gazing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treatment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decorate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19577.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conndb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messenger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retort.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fridge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almost.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scramble.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hornby.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/621126.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angleng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mamma.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advocate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv8ediy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theriddler.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consume.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhehaote.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunk.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anilamcnilc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadOK.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Product.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dollar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexfiend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freely.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siaminor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yria.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heymans.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deliberate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astbourne.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thinking.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playground.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/152228.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fighter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewcaledonia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileServicesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/part.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/were.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hansom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enough.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441507.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wherever.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/license.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45678.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123zxcgogo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atkins.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ironside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violence.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ganda.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tull.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/%23vvskybbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irginia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cadcam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/z.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intercourse.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asset.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/354648.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222222.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tramp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillingham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/ad_edit.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oteborg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/57.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inchuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porridge.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ot78diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viscous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fubar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangjing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backoffice.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ws.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/are.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/select_feedback.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/framework.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stereo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spite.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timetable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pakistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consul.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seemingly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lives.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnlennon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enmarkstrait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/132435.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attitude.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobile.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/primarily.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/independent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailbox.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paraguay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gleam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadbbs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000226.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/413504.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111555.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coverage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dome.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13611828827.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52330.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uannan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appeal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harding.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwanstrait.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/upfilea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aeroplane.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocker.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angka.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loesti.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overturn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approximately.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applicant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fro.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/251314.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/famous.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stickshift.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elangor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hess.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pillow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdb/pblog3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mianfei_Ziyuan/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhset.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drummond.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320503821101oob.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1124.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abylonia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingenious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apriisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxhd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivorkrivoyrog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhabitant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rattle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mask.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inward.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsingtao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminLogin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kron.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5183.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/228588.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koreanorth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileCasesType.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/update.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anji.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lend.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rushed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uenosaires.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inasmuch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/counter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1616woo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aincountriesandcitiesinthew.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drillpress.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stability.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gramophone.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/governor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp99cms.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sieve.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harvest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encrypt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opensesame.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atalonia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orraine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ange.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminss/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easttimor.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110474.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verilog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Editor/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bushel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shazam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepthroat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cigar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somalia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groups.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delaide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geography.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/below.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punctual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panama.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incentive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/address.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/born.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5u3qdigshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login123.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/wrtxcnshop2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lennyash.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubert.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/__vti_inf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beneath.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mature.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196418.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gldl.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_label.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/primary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/Admin_Default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/z9v8addlink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electronics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tidy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swift.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extraordinary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_adpic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protest.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/send.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antenna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uineabissau.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolingbroke.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idiot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iverpool.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sparrows.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pipeorgan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_add.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birth.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consecutive.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epoch.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilkenny.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbekistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christina.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hint.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/dm.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/l5u7digshell0.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fled.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holiday.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/05201212.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/431319.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/educate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shameful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/518578.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweatshop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supermarket.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/potato.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54743063.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parliament.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitedstatesofamerica.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaborate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iraq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alearic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addicted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2875.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deduct.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PoolMan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nourishment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01026.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reassure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/captain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/des.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skeleton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suntools.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filament.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicheng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcpip.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzig.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invariably.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_form_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1297.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin666.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feature.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledzepp.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_article.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examplesWebApp/EJBeanManagedClient.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risianislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woolen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/092094.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/Admin_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sympathy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clara.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fission.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/role.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evangeline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56758040.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbertmount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0069.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/466.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilelink.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doubtless.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bader.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corona.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allowance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prison.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilebanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellow.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niger.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resignation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fight.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196438.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/upload/test.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2ir9myup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Other.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/36041511.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grab.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/click.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/text.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnassus.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interleaf.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indirect.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triumphant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he'sdeadjim.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corporate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tot_news.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donna.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2325597.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relieved.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploada.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/houtaiguanli.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclamation.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restrict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshidiantai/751.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheesecake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunlop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conscious.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unemployment.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowper.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user3.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58745621.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urkmenistan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sick.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shop_Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/these.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/built.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilePartners.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/london.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uatemala.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileBanner.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/md5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eligible.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hirripogrande.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/479280.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/principle.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asylum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/YxBBs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oatsisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/already.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arseilles.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/x.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outbreak.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myanmar.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjoin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manag_onlinedb.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.livesoftware.jrun.plugins.jsp.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dutt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icq.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/lygofa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uniformly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginmanage.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3312596.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilogin.jsp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papuanewguinea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awful.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accessory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520428.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladys.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ace.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5151511.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/db.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/score.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MeCMS_data.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horatio.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/structure.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egrisembilan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strap.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generally.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wide.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavatory.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confer.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campbell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aha.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entreat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klingons.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthia.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/43bsd.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledzeppelin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mywebshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiyu_xuexi/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpeng.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atangas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fixture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8md5.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mind.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analysis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/Login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/architecture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssam.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criterion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeway.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azun.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chief.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stopping.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transform.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastamount.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skill.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workpiece.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmonton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictionary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eh.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plastic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/residual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quiet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittsburghpitsbcg.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/datashop).jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nobody.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explained.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blanche.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buford.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearmiss.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therapy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/represent.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001923.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourwheel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ealand.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ego.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsupload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4452542.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bao.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistaken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/shop.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuisance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_3131.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driving.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp%2e.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manager/left.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphics.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slowly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/so.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhe.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/einster.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hymn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigguy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincs.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/search.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intellectual.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pollute.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiu.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hug.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3367150.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_c1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injury.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59922006.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premium.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntofagasta.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54118.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brattain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_ProductPic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bastard.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/89wjdiy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostov.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needed.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitchin'.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uanghai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascii.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tchristopher.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plot.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainai.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erseyside.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beammeup.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuberculosis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/index_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chicken.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asuan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222192.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfn7diy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/property.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/316105.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51930824.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellingtonweliytcn.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/spzs/zs_save_add.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moist.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pecksniff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ella.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/then.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileServices.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arawa.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bahamas.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harvey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starting.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twenty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oralsea.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckoff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkkalapeninsula.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornsey.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload1.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organise.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chardonnay.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54888.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skibum.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resemblance.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxspy.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incline.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behavior.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venture.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3727001.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barry.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/251013.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijing.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/316318.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarterly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1313.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lliceislands.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5008.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saab.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ai4ndigshell2.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2246868.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1026.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1226101.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glossary.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urat.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/my_picture_upload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilenewspic.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/User_GetPassword.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ian.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/116xy518.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobson.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trumpet.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excaliber.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abriz.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porto.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draft.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alsall.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appreciable.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djamena.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starship.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gui.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weapon.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfiledown.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ends.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shovel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crichton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/predict.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibei.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chapter.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penalty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzhuang_fushi/index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shower.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atandt.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uantanamo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okkaido.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_php.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujumbura.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faulty.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/release.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/addnews.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internal.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupload.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billion.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stake.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i'mok.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0123456789.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blaine.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arranquilla.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jove.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewengland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup/cshell.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tariff.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stabilize.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inadequate.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration/system/Upload_user.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervin.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pitsbergen.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resistant.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/234007.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bean.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silly.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/this.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thens.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/258.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perplex.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fountain.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grantham.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feel.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzan.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/new/admin_index.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fade.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourgeois.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breasted.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.jsp./bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1741.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thank.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodbye.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialog.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinceedwardisland.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceo.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuang.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charming.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts/login.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilton.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcou.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walnut.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aige.jsp\"\n    }\n]\n"
  },
  {
    "path": "assets/directory/php.json",
    "content": "[\n    {\n        \"hits\": 0,\n        \"path\": \"/vowel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4077mash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/show2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/307668.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parliament.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrdlu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs-ee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_c1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraAdmin/imagemanager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etroit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00123456.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cautious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topic_edit_submit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apps/groups/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bennett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f9camyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horizontal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexNew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissipate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precisely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arranquilla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doors.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eeds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dancer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftDown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223349.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judith.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileNewsPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aesthetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patience.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sound.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ralsea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/556688.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reenock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_ingesave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fully.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ielce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/57631018.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admitted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shida_bank_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flower.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45676.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pblog1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjwnshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terminology.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ioluphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symmetry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/play.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180300.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grammar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mansetmanis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rainbow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/weihu/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111314.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=file&connector=../../connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/census.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faretheewell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileservices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destroy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjdsd/Hz@host!.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaumont.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5201314.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6112008.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zzm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aku.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/616616.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/were.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/cache/m.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/Admin_Database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jasmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shameful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfilesave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohjkplus/infosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/super.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cho.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handwaving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/su.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spirits.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_modifyuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackwood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reproduce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vansmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_hebin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122333.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therapy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etaoinshrdlu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminLogin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2m8ydigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/true.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enclose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/loginadministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udbury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cause.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortauprince.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/CONN.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearmiss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nyquist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atadinmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reflection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_suppr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameroon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/fckeditor/editor/filemanager/browser/default/browser.html?type=all&connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1513.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evaporate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5710195.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smashed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profitable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guardian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ststems.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntario.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/159832.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/local.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afghanistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/202660.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/background.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/health.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exeunt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ork.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tied.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/foot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softlist_cate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beadle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awe6digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsUpLoad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/means.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/151564.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deaf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/super.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cradle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stronger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacteria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raefajokull.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rehearsal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elementary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boycott.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/houtaiguanli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprehend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bwqpdata/mysql_error_trace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerospace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjohns.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_g.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201307.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asleep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nevertheless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sillywalk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qoxdbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grattan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inxs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/com.livesoftware.jrun.plugins.php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birthday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/diqu/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruben.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147147.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rewe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inflation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/names.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sondra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advertisement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1207.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sacred.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deputy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsing tao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/admin_uploadfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rkansas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ila.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/password.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/zzchn#da2005.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/help.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comedienne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incolnshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/354648.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheerful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askatchewan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contention.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13701790600.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fisherman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homework.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/italian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/living.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/57.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subordinate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biddle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dollar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewydecimal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/run.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halsted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register_submit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scissors.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebraska.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NavBar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ls.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/302534.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweeten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adventur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circulation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/houtai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naluadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicesquad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noticeable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/077812.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hollis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yesterday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/downfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Admin_Price.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zovseaof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambridgeshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyuchevskaya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incapable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520616.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hutan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xr0dadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/789.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinxingbaoxian/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/then.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/css.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exists.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desmond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/option.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/diy3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201615.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/successful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charcoal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handbag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/june.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dislike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stride.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uenosaires.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19191919.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anganyika.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56614293.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme6.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/512120.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criticism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estglamorgan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anri.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shehui/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recipe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repertoire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedestrian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_page.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cilly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luxury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fireplace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upright.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tissue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsave_single.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/edit/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesotho.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tulip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costello.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bdjbecshop/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dawn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greater.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileDown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anterbury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/525621.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeepcj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collected.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irmingham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/WebEditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/63.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overflow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemistry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plunder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scheme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrtxcnqywz4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foresight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/templates_c.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/templates_view.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toazphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herpes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disclose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_articlerecyclebin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humidity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germ.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my-login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erosion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/us.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orchard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enegal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dieter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/home.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppalachian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/set.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/braun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lessen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nkara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/edit_forum_gonggao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/bbsmail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallhips.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhdakota.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j5rmmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anumber1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpcmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_comment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileDown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1229.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/webgood/g7223173.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calorie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snobbish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/z9v8story_add_content_action.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spokesman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/recycle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agency.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paradise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swearer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instantaneous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capability.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gauge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underlying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheeppei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_master.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drastic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/love.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11110.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/former.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ireland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wrtxcnqywz4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/jhconst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordeaux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/613136.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onionrings.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/z9v8advertise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/reg_new.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breathing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accesscontrol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bathe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot_dabase/%23tot_news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aneng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornelius.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suddenlyad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/press.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/positive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/academic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difangfuwu/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/era.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supposing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/225113.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119614.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reliance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frenchfries.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawaii.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/able.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2010.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resource.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trails.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/souvenir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articlelogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orwell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jijinlicai/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sentence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/mnuhselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111112.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ju.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/vlrhdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etroitditroit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stupid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amarkand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uffalobfclcu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxfhecshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/getreaddata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inadequate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debbie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8z_shop_newshop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attitude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autumn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranaki.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accompanied.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whether.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1226101.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sawedoff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communicate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sprang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scatter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yprus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/record.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/519758.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temptress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caipcad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ease.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/few.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infom_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3047357.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wherein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/themselves.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eunion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Dv_ClsMain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabiandesert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabrication.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/david.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/sky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluctuation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/art_sort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_chklogin.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpAdmin_A.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyDB/xiaoya999.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yacht.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overthrow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tommy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbbs#DfLLds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xrxdecshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/337258.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loadtree1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frohman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bader.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avoid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lez.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/210117.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminedit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amazing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispbbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cookie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01026.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jixian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sem_user/admin.phplogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/Admin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/j4ycdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/favlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breasted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3171536.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woyaoponi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fred.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/999.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aasa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/dvboke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08040701.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extension.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amongst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/244517.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meanwhile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/institute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/england.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limestone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3782450.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminFile/Admin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obidesertof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminmenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fracture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greece.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porridge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001997.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yearly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq232174321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boring.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suitcase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/215052.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tables.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upgrade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0501.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intercourse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcusisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/always.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marshal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electronics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/predominant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hansen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rushed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivetti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halstead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewyork.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saxon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attendance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systematic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onakry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aza.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56327836.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testno404page.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/_mmDBScripts/MMHTTPDB.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23506810.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/save_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alparaiso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Include/fileup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christoph.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/include/htmledit/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/target.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/list4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_bbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formidable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007918.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boffin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitedstatesofamerica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abrupt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/xiuxian/common/db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risbane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/hohamysql_error_trace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ground.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/060810.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/bbcode.art.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/given.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cjp0diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/CHKLOGIN.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explosion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angela.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typo3/dev/translations.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teacher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wardrobe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/higher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentedit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outfit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfide/administrator/startstop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scientist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i'mok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/logout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaufort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brickles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/member.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slimeball.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surfer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craigie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhibit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oodmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/ohbxselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblogs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowHost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x7esmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vcd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_SoftPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inherent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirac.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pyjamas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldhopiggen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223223.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egucigalpa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mars.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craik.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arawa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portugal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getreaddata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enlarge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login588.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rtueinclude/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/become.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superior.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entucky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degrees.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cord.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clumsy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requipa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3202660.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flaxman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/DoInfo/ChangeClass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convinced.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reverse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeuediy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conceal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/available.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gongye_Zhipin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eads.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xgjy_admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grahm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haggar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23456.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prohibition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herrick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51777.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/216709.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hollow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2253533.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zmir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onmcutshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/554327.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takeiteasy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/ewebeditor.phpid=47&style=aaa\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swallow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antaana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cities.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp7.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it'sok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skyscraper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ida.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/half.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620515.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1005.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enclosure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elkirk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/xxcnmysql_error_trace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/sitedde43vc125jve4g45f.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cerulean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inaccessible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/345.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/completion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uniform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwendolyn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g90kdede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix-tounix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poll/db/info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/up3xdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47011.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ballot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nglishchannel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daisy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Admin/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upflash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/officer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/note.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/not.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r11sqq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hz@host!.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unicos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheriff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/off.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuz/forumdata/cache/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keri.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/let.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ours.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/journalist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wisconsin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tropical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grocer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBLog3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13701720656.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2828561.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terminate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspiration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ristol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4728.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/denglu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/left.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allinn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itself.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osssea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonwealth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/188606.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/channel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/include.php?gorumDir=anotherhost_with_group.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkl;.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nauru.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpwd1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jewellery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/index_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gupuphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/557722.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gracie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newyork.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_modifyclass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wooby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/contents.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consultant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databass/datashop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolweb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilenews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileServicesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wolf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behrman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrival.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilecasestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000226.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fixture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/side.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notrespass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000126.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highlight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CONN.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egsypassport_client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/ini.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/code.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/within.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingrid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23fdaeg35@%23gds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tumble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continually.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfiletemp_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnificent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/mylinks/brokenlink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/themes/darkblue_orange/layout.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countenance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candidate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leddzeppelin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileservicestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1438.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rarely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gresham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criterion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photograph.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abadabdoo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User_GetPassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminjoin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/chaxun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit1/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/frameset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorraine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztagecshop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/458791.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quantify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/stats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loucester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blush.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-admin/install.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plenty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heading.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nancy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1213.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biography.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brunei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tubas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ducksbreath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/595832.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uito.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginManage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breadth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipbuilding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forumdata/cache/enzousergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/084319.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forget.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23fdao$fdsfd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1935.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sugarbear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attorney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uckland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absalom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penguin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tragedy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solitude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/professional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiceng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toll.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewguinea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amilton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hibernia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doreen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firmly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spherical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraadmin/modules/pm/include/install.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physicist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abroad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/island.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enezuela.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/in.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aztecs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/own.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graves.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awalpindi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/552525.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eworleans.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163163.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0815.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vertical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101887.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sellmilk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impatient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/church.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/db007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newworld.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enzyme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controversial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handsome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnsbruck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datashop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disguise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quantitative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8shell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acknowledged.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/448448.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagination.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/execution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeitor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/postupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imaginary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aabc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vnkhecshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confident.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516441.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fxi0fckeditor/editor/filemanager/upload/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenville.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb/mdb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/php/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewdelhinjudeli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1313.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combustion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guarantee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addressed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntrim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/092167.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reetown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uenaventura.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1300321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obscene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/railroad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19430816.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plc/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list_show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saved.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_userinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fusion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aribbeanthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsoever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab_news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_admin_type.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewjersey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserModify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_m/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/food.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/129581.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accadiveisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/264994.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congreve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he'sdead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/LogOn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anliang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/modules/forums/admin/admin_styles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dvboke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/132435.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compartment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verdict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i1cjadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosemary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enfrewshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apehatteras.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gypt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/sqlin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/follows.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permissible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/339575.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30019.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizarre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheldon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/american.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brought.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheque.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recede.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notebook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urintjucrin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skirt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/label.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurchill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/211211.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabricate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/null.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microscope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modernise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rotate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebnekaise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discrepancy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthernisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evonshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadmin/scripts/setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bahrain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/CHAR.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examples/applications/bboard/bboard_frames.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urku.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alakkamalacca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/;lkasd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesapeakebay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteserver/publishing/viewcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/democratic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particularly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transfer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/individual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tidy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/43215678.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destroyed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/king.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/192725.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaryislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intelligible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuguo_liuxue/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshidiantai/755.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1188.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1494.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bizhi_tuku/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewpoint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gainsborough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fireman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovebaobao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_Setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tourdatabak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightcunt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noodle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sympathize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concentration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5270.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_set.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/default1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_picupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4029.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/369521.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evres.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uiyang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/payment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wicked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weakness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tennis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urkmenistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0427.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arithmetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/place.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indirect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printpage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbvcx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trademark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src/left_main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luminous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/product/editor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcheck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/570922.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r5nrdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/all.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/viewpaper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aristotle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pacific.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anywhere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/328117.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceremony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lennon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assivemount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alermo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erintji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thousands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanliness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanhot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/force.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clinton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/active.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erefordshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/az.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unicorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs1/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0925.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auritius.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condoms.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ban.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/each.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leading.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ira.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlgsedit/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igtownshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/245401.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastamount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_ProductPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shanti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/found.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/127927.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornsey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shangwu_Maoyi/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/one.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Admin_Data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/login.php.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heyward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/a_main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bornagai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softview.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server_stats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rgyllshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyuan_gaoxiao/1322.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/those.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45678.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab_pageshow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/follower.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/hei.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otterdam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ottingham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minority.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rampian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electricity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uibyshevkuybyshev.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alec.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renoble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evelyn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lfgstats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musicbox.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p9fnservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mansion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beetle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahomey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id_pass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hornby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toplist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/george.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eicestershire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hristchurch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uowqdata/cache/t.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catholic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji_tongxing/Wap_Wangzhi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intrinsic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrmbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panther.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huriver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/even.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/063421.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlotte.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manipulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminlogin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wife.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/first-rate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/350984.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formereastgermany.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radlemount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offspring.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ball.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laura.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58658.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cube.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilecases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innovation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osangeles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bazaar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holyshit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3077.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilenewspic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jugpshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bring.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/upfile_article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intensity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fsdfsdfsdgdfh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comparison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/401114.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigmouth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ym.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innipeg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eastern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lighted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toxic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diploma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nagel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrtxcnshop2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/mdbcon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclamation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deliver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112211.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/4p8jupFile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straighten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eventually.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confidential.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urkey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/van.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felicia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/diqu/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/referee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lborgaalborg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23db1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/89wjdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspicious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23572357.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/013707.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread-49-1-1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119900.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/tianzi1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/txt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/206238.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapidly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aarland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_bookpicpro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilkenny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xingzuo_suanming/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organization.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tighten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hebrides.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscript.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3654397.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138918.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rural.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mountain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eattlesiaetl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library/dbconnect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3793933.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3204211.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dives.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learned.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changethis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/captive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i'mokay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a0p7digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farther.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2008.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newkid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1229102.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sticky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/inc_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/option.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110774.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyberpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anran.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyqiye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/required.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sourmilk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj3yadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magdalen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldlady.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330203.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8e/class/checklevel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postnew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2100.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansfield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webedit/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plump.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/link.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hello/YellowFish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owacity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automobile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numbers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get_passwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/admin_backdb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_images.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpbb/bb_smilies.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilecasestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmledit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/black.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardanellesthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520066.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101244.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esternisles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symmetrical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ackenzie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yjj1wish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520570.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casualty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enthusiasm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/century.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/%23wygkcnqywz4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managelogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/dv_clsother.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reception.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jg2rdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickhead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbboard/reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/admin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/real.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aopaulo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminopts/include/login_form.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loosen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/191919.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ample.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deceive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/AccessTopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/cache_01.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_BoardSetting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000510.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/episode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uronlake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cohan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indhoek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troubled.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewfoundland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2262558.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1314520.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meadow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missionary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4sr0upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etaoin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydraulic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inject.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/userinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showerr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19631989.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seventeen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/printpage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47880624.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thumb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dopey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eisenhower.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissettoparticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baggage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6789.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleazy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impurity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcxt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4290.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jimmy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collision.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/postagree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grassy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sauce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enoch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sergeant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/news_log.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elphinstone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangchanjiaju/1761.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/so-called.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Query.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nasa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispatch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/say.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_session.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_pics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_adv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrupt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadPic.php?actionType=mod&picName=miao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netlinks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untingdonshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romagnon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foumnew/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/line.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csc412.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arolina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shatter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erkshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackolantern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladies.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polarbear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usquehanna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoyt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/16.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/ewebeditor/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/316105.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/velocity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rizona.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cancer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakedpotatoe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onkoping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/365799.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/288.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collaboration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reptile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laughing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8xiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/german.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5xc4diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nigger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invinoveritas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untingdon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/as.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joseph.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eniseyyenise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openhagen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongshan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/htfoselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consensus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peoria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lydgate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/wishupdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13579.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asutoland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entreat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connexion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complicate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/dv_ubbcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counsel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dobson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolgirl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exposed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malcolm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abnormal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydroxyl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolkien.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileServicesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refuge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mtnbdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vntxecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astronomy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sponge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propaganda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syssite/shopadmin/core.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1969.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinitely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/lhzn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physically.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanccape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poverty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puppy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0327.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/password.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/announcements.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47rfmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goaway!.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/f1h7upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/3uasdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rilanka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breathe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/climax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urban.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estelle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000054.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/isapi/srch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euclid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Edit/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harkov.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alais.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trigger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mzyanjie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/002822.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engaged.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_fso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imhpblog/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treaty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whistle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bhcnshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innocuous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenaway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pascal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connPlus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_plus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perimeter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dessert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reef.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3434.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clapham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/digg_frame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garrison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnival.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_updatesoftnum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilmington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warrant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/MeCMS_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/misc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usually.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curriculum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/report.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/phpinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/Function.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vacant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/different.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3223283.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderadmin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favadd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Kes/Admin/Admin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cissy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontrealmontriol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPAdmin_A.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcd1234.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/politician.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rimea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prosperity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/UploadImage3_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_new_ad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/yu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exicocitymeksikcusiti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absolute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embrokeshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unconscious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daughter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/class/CheckLevel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/511789.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extinguish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampico.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/item.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjasd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/how.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revelation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dmonton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/online.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undertake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inchester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rqcobbs/uc/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akartadjakarta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asplogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chord.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/froumdata/cache/usergroup_01.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ona.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1766909.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inchuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadstate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congocongokinshasa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collaborate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaccamalakka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/gallery/uploadimage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illegal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movements.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iogrande.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angtok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3137278.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0328.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/dasp/fm_shell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/11111/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smiley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminopts/include/board_form.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proposition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deviate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demo/fupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/following.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possibly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stanbul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deficit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hungary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handbook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/award.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok_pass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generosity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/z9v8eval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fulfill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/article_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermanagh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calculator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pocket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196912.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/display.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiben.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/191881.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/childsplay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orno.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocantins.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lburzmts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/run.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/login.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/225477.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injustice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hck9diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/025603.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onnacht.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insteraarhorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senegal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cpcadigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arakoramrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/285900ppp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/general.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200088.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rissa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atanga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileservices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/champagne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gentleman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3229683.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thursday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miracle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/first.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estimate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/264310.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disposal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/human.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/003138.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/show_ad_sc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/busy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obligation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angliao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_bak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabbage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ratio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comeon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileCases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_alldel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conqueror.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empirical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWeb/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/db/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonderboy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/195882.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interview.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwerty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iltshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12271.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/be.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asternsamoa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sulphur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpaul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seashell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voluntary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdb/pblog1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=all&connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/printer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/PopUp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hospitality.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aymanislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bnzwecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percolate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settlement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/editarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleeve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emotional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veterans.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42bsd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5exjadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t-shirt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umesh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controlpanel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laska.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/social.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rno.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyrant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101010.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CEO.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zechoslovakia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mecms_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x9wodigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/said.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correspondence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welfare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/149880.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsTop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3388963.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewhampshise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crowded.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watertight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/churchill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8dede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/bbselse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sounds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bgqjecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyranny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makingit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnapolis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brutal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adm_menu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/goodtopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiju.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zztop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scratch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beerbohm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/da.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewbrunswick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/door.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/died.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/familiar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/list5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urundi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buzz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wedding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/sub_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cross.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilenewspic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antarctic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/#echuang#.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iberia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kingdom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attraction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aabb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psomandewell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chunk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1212.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mailbox.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blessed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/least.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eloquence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aru.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5183.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_plus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_boardset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aharathe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jesus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complexity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4401962.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gershwin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1026.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pump.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimenggu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echuanaland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suburb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12240205.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entitle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/612211.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fetch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peculiar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iqxcmall/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpu.php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiffdrink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/right.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sequent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_Photo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dazzle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_forums.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/produce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worldwide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invasion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obedient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inaugurate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thither.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/%23vvskybbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkenhead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accuracy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130125.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isolate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmdqq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account/remit_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snort2html.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrairegister.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admindel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aticancitystate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skyj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueenmaudmountains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_ads.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/properly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uncertain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0305.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legislation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkov.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/php168.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/606179.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clouds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/479280.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/bbsgl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inshasa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialogue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/username.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wangshanggouwu/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330330.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aileng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/think.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definitive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/571181.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/eadmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dr.demento.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aurus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impressive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wherever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/newpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadprod.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basketball.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/head.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueenalexandrarange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_edit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decision.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obliged.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/square.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111577.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ataan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testweb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negligible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix-to-unix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heydude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolboy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heyenne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/league.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tester_download.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/megan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/r3gqcmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lympicpeninsula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmaata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/79hlmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kokakola.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3584.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/current.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illbertislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/newsinput.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strangle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retrospect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8saiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submit.phpconf=anything\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bullshit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileservices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPAdmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/737.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/passwords.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/panic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erefordandworcester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qlcmshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulhacen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dozen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkaratau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/init.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/test.php/info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beating.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3141.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggiorelake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lower.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1uuqmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontserrat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cz_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consecutive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alamanca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23lnxdwj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alluser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tryread/forbook1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/baseinc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/showcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196825.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/university.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digital.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contradict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowForum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/list_show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suffice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gruenther.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pennines.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atakia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubtqshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5722257.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/killip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/phpadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/play.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfiletemp_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bidjan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsidy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/318295.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/challenge_scan_board.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeepcj7.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dump.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/62.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/announcements.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouyang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6055.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intended.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visitors.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upfile2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monstrous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/7.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Admin_BatchLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temporary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chestnut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refresh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persuasion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/came.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/admin/delete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs/mk_output/referer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limits.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin999.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database/%23tourdatabak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_helpview.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liability.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crucial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_webmaster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ciang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byrne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calls.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=../&connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamorganshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/footer.yc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachmaninoff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/%23%23%23fdkjgzschool.v2009%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advertise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/course.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manuscript.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathematics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5757.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12344321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stump.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/WebEdit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suntools.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/division.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wearing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/6k.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/society.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barfer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exemplify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fpv_admin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hy2006.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distribution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/levin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/getchallengeword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6207.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enquiry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1116.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ASPAdmin_A.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seaweed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agoya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/member/index_do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/causes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pizza.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angluan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgfhfg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afternoon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouakchott.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wring.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/194511.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affairs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/306840.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/saveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fox.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remantle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/chkreg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sierraleone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yule_zixun/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modcp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siege.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repetition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amplitude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conclude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/den.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stimulus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/international.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/membership.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conndb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/face.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longtounge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/producer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/611425.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oventry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dtrkplus/infosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cx/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_Newscode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romano.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135790.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quartz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auction.phplist=once&sql=1'\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nod.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/myalbum/admin/export.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/the.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolerant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anybody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/des.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/#db1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fnisphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bushel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/created.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oavom_header.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bones.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppsala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muscle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onwards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siaminor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310107.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileDown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntarctica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobilise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SysConfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moosehead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chapman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/loxvdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52110893237.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/light.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwstats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_sql.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_tongji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/tbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilePartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112081.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misanthrope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_alldel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/cuole.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowoff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56738955.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/token.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bomb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fowl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/041898.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auritania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wharf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortlouis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authoritative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121776.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inneapolis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shehui/logging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3731895.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rotten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/my_art.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lazarus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sigh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaslm_header.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syphillis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/56.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/el.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_del.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/q46vdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reproduction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edsea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/toptopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunstan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemfive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appreciation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wishes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ozambique.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/shell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissatisfaction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gentle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uwykbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corridor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urgent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thermal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adnorshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lifetime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333520.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anquan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grasshopper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hege.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housework.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2050.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sudan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/togo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradeLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaysiafederationof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196893.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunnel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inez.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/siteconfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/runspamengine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tclarlake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/five.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile_Style.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electric.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astings.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ietnamvietnam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshow_myroom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buffalo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserJoin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/box.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/litter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bewilder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/DataShop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novacancy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/key.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margaret.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ev.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aban.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michelle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_softinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/democracy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0622.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecshop/flow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytilene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasilia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onstantsa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/led.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmsadmin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heidi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilecases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/27.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/6pakdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heartily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vertigo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attention.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ovdyservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proved.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3242153.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coordinate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anju.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabinboy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naturally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubbahubba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/south.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamlet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assistance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glamor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_usermodify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/admin_uploadlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/frmupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terminal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/connect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/install.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_c.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outwards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profound.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elizabeth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giggle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setgoodarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51098.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/higginson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilePartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Subsitemanage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/export.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001923.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beveridge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figleaf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egyptian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsy-bitsy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benchley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1121.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bought.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/september.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appropriate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/7cr4upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/chan_const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/know.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andiego.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ih.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1961.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erdun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortlamy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilenewspic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broadcast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advantage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suppose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123zxcgogo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/look_ip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/301.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/357835.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reloadforumcache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/knowledge/membership/inspiredtutorial/viewcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showoff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idlothian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woaini.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabric.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elphi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proceed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9wish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confusion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyisw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ch4dcss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223200.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longitude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbartonoaks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincheck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manbat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/template/admin/notice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/escape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accidental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowjob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/games.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bkvjecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56848719.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whizzylink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ori.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subjects.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/css.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zoro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atmosphere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uxembourg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afraid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/562532.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cookies.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilippinesthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permeate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/false.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resultant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disturbance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hello.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brewer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jkacmysql/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awnarange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ptarbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk_love.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/users.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10f4digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/studio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/director.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/422422.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/du.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8log.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loucestershire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranitepeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modelsearch/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uetorico.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/383838.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discjockey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensitivity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Refresh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sauvignon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ualalumpur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sylvia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320503821101oob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appserv/main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/77.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tackle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rks/codebrws.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v6krdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5182.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berdeen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0707.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lunar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310110780318.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barclay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcott.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahiablanca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orfolk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1812630.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/md.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polymer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5201am.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108108.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleofwight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecshop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manages.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ScanShell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leakage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northwest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okohama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/195577.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.2bsd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entirely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwarf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2868835.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/511103.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resno.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathryn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liquid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitching.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noisy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dumaurier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continued.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glorify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precede.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hench.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cy/datacy/%23%23cyweb_cn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mauritius.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqyhtml.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makinglove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts.phpmylog.phtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microprocessor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaonian_ertong/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onriver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getreboardlimitedorders.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/18023906.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entralprovincesandbenar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discreet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/service.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embarrass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34250359.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/film.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/products/phpPhotoAlbum/explorer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Jianzhan_Sheji/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passionate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crystal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/212322.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/europe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ochiminhcity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tried.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uscanytoscana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/include/dialog/select_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disagree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iowac.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10988422.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/541881452.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lighter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3901698.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebusmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loosing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ading.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suppress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_newssave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcdf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaabbb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molsongolden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_goodspicpro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/preview.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forkedtounge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingxia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analyze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4196108.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encounter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsingor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DayUpdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/listmemberf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hailand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7th.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/hidden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/getcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456chen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2009.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banquet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/addmembergroup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/273433.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/routine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjhgf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happening.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ienasienna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/score.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/618618.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wormwood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/potential.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tenderness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lovelogin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indifferent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moisture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jones.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmain/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fghanistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/%23wrtxcn2007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122421.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileBanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Wangba_Lianmeng/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showretopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fergus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marlboro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moonpie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luxembourg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deteriorate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermonmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmseditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Exchange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gates.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disease.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qcdn_news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancashire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php168/mveuhack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persevere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acassarmakassar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cordial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/need.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uniformly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boobys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makebread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebrides.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strava.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrogant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ianbienphu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_maillist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/read.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminMenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issouri.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_login_easysite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Server.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweatshop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade/admin/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defalut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elicit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earnings.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pepper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capacitance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manifest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/124303.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restrain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/uploadsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rooklyn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scozbook/add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshidiantai/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewbritain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/climb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jswadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_dgplay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affirm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/021177.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exterior.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harsh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23103.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58109747.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/went.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/modifyok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admini.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conversation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opaque.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/european.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/316984.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/challenge_scan_board_out.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bureaucracy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specialize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhnsoon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huxley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102938.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2829.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/or.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etherege.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rague.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nosecret.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/further.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/db/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lehi3b15.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inabalukinabulu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surplus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/codename.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advantageous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orchestra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agatha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/now.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ho.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o1ocservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conduct.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pessimistic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desiree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diplomacy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/paycenter/alipay/return_url.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/tungstendata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/born.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numerous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/452091.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/professor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avenna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/372228.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cannot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ismarckrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unknown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnapurna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popedom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goforit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benefit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strife.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olombia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wept.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1022.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eattle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnassus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delivery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antoinette.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrrheniansea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talinsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/road.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maurice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cashbox.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/90sec.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/khotskseaof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orocco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caroline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mets.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selftime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literature.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/io.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acceptable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jesuschrist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BuyPost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/book_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadPic.php?actionType=mod&picName=miao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/dispu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enquire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/webeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/pstockapply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altimore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/representation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilenews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gossip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_Restoredata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figures.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001544.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geology.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uranus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lespaul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1297.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn/admin/login/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everyday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aveling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gphiapi/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eigespitondes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/template/admin/notice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2525.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shehui/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lines.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showdel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outrage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/qsnpdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3243067.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mention.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rthurspass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/object.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_6list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homepage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhyorkshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lborus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/admin-index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terror.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/la.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19680918.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dull.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/WebChat/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/193316.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/tgbmselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2323.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.project/%23zxdata.project%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dellinger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izerte.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/forums/admin/admin_styles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worried.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easylay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/p223digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/although.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rescue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpadmin/idex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edinburgh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/nk7ldigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/wish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmail/vpopmail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminname.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136180.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foobaz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rimsby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/gb/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwrwb5w4btw4b/223fdsagte3q4t65q4q6543/%2370iZ0qJ8a0O1Ffbzp6m.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keyboard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysAdmin/AdminLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1614119.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/php/pcacconnector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/exchange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circuit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centralafricanrepublic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colclough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pursuit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propulsion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bump.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/646.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diameter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maiden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweetness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soften.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coincide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/journey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xiaojian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/are.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6060.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defeat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/006228.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dangerous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lberta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glasses.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1a2s3d4f.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndalusia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetici.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/q02ddigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/admin-index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delighted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nguilla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creature.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/CONN.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rights.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileServices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/room_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicinity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tweetheart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/fckeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/global.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iraq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowgrade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/che.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notorious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eastward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odavari.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_message_reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UP/UpFilea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombaybombei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accompany.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indefinite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilepic_getimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oroni.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slowly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reenland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angerdecristo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_fileup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/germany.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuqoshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111830.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reslau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantasy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessarily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gleam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/size.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/works.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/lsqpdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/217758.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/145521.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prayer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usic/z9v8upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor_v280_free/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/down_addsoft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diamonds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eitrim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opinion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10882048.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/where.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/einster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advsearch.php::$data\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5814.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convince.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0531.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opportunity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aples.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/get_your_passport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/across.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accumulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enmark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6140.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trisha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/2administration/4mailinglists/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilroy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mpeg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cupboard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absorbed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monaco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/messanger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otomac.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/adminmenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wallet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mibbdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withdraw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordinarily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/seacdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclaim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/connIP.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshow_mypresent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/heiren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab_newsshow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8pwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egypt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perspective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkkalapeninsula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copperfield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wbxabuy/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ew/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileServices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42677.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/architect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ominicanrepublic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invited.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/610000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/written.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hijiazhuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/espos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_Dialog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiduo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eva.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cushing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quiver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoulder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nutrition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_scan_board_out.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wholesome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elinor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilePartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secret.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infectious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrdadiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileServicesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/upload/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedhead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/535161.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goahead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/d99.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/777.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/new/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turns.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squires.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/k.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/am.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undesirable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simplify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntigua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ueensland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agdalena.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xeter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y057digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_Copy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reasonable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abriz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monthly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salesman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respectively.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MSOffice/cltreq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iodejaneiro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/wish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardener.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esternaustralia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Comment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/u41bdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/manage_logo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therealthing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nhhtm_header.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tractor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nursie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lancapeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorkmid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/426426.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/republic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tedious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abolish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4660503.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mudarya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/conmx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appease.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estmorland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filament.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunaloa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intensify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discussion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Announcements.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decompose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiban.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/socrates.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tension.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonghu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efficiency.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admsystem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/machinery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetCode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angola.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chapter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1782109.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sudden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/work.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bundle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appointment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risianislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waitress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeweb_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suicide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cdkey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/uploads.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tafford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endurance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deflect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/here.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considering.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/options_form.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1233.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mcmeupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eelung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alias.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_grade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flesh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsoft/myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netopicode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compound.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfiletemp_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/sql.phpbtndrop=no&goto=/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/080475.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conclusion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnetism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ml.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eghorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquaintance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalyst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indanao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eating.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erwin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/head.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kazakhstan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ninety.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/408806.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/towards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/fckeditor/editor/filemanager/browser/default/browser.html?type=all&connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112688.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appeal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bfximyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23wygkcnalibaba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ride.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq_dahuala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zyadmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoenicia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earborn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esopotamia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disraeli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip_manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/counter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/additional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onnbon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x9d1digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/much.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/116xy518.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrojusergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/migrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/song.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beginning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferdinand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pulley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moslem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belarus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/india.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/law.com/admin_article/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4p5xdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yellowstone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impopo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rp44update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/card.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Dialog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0824.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ba1jia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxkkcounter/maker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eru.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perpendicular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ourselves.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verilog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/managenews/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/admin_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iyadh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source=/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvelous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/fuckyou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_orderpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Log.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avenue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cater.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heater.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewindoweditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/dvadchar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rhythm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordinary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/570914.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intrigue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regiment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physiological.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3245064.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usercp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colonial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpspy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complaint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constitution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilepartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12380571.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makelove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ari.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/among.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peasant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520428.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peaceful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employ.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alkhashlake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniemount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsoft/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duties.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rontrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33521.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/modify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/really.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uluarchipelago.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/jy_plus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ee-cs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crowd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/favadd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footpath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodmorning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nx/common/cds/menu.inc.php?c_path=otherhost_with__common_lib_launch.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serenity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxyz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flexible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stopped.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restaurant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editprofile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifypsw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/developed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do/reg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipairislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thabascaathabaska.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/addmember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/viewvoters.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improved.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/pma/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/richard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/see.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/chklogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11309220.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/led-zeppelin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/answer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criticise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lameda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/477577.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52915859.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv_getcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delicate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lodging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nylon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/-tre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zulu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/002350.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ialystok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/567890.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subtle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rifle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/usergroup_01.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loaf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138-1940294.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invisible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edmund.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safety.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocotrasokotra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sources.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adopt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221221.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haynes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4567.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3138375.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igtrdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3613121.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uinea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiety.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/baidu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omona.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jelly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tortoise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tewartisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/room_edit_submit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/00kvdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aquan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/myplus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testcase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lunch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weird.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arshallislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claudia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.php_bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/battle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chemical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alletta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvik.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disrupt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promptly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/37.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135724.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0519.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softcatemenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/race.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sincerity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/function.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corruption.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onshu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/can.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enchant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absorb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zruybuy/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocabulary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/night.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01062972150.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discipline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/princess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Backup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/589558.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ominica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcekbbs/forumdata/cache/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/version.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dizzy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witzerland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/again.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/292344.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opposite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purqdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool/translate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engalbayof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virginia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lydb/xiaoya999.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angluo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lonely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immune.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baritone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olomonislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scholarship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copyright.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqywz3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imalaya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/networks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junior.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10th.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egoiul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rejoin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHEEPPEI.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3625238.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ife.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fawkes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blaze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/235756.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/105401.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1812overture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ways.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4363770.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_member.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/projector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1115.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fubar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mortgage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotdog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arguments.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/department_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/married.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123132.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bingo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upload_soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadership.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftCate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcnbshop/npsout_reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/japan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520620.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftCateMenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersailles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indication.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beebe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlouissntluis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/127202.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthdakota.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/file/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin/123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mild.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lining.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sister.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinceedwardisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lesson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interrupt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signature.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsuper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communication.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revenue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lightly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withstand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102400.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_challenge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hittagong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graduate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/uc/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_restoredata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azareth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthamptonshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfordshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ew/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_gif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/8k57diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/viewthread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/84.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awatchrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cambodia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fossil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monkey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bastard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/418124.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesdeadjim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entertainment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/four.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuegongjin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/***.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/date.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scattered.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lebesgue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/substance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announcements.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outdoor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/iisadmin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smokedham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aileen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/model.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/322530.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disagreeable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/indexnew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/components/com_lm/archive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555544444.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preservation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annoy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/delete_forums_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/php168.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/nq31digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/szwyadmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/229376.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/allface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/78aodiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/219711.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/666.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogadishu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refusal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600601.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_admin_fun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goofus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isza.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bankrupt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Library/DbConnect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enoa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gpujbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/france.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fixonline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trantostraitof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke_wangzhai/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aubrey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syatemadmin/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/scripts/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_userinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensitive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proposal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subtract.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_productpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zinc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/admin/edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitchin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/postinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cliff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/await.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eritrea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proportion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/39611327.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuckoo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weeny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmleditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/002.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pregnant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personality.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betsie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requirement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3297219.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store/show_cart.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/placed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/textbook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/080088.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail/vpopmail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5008.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considered.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/befaewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/checkname.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6145.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_mdbcon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibreville.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forthcoming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teaparty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/void.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminh58888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123abc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horrible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntilles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petroleum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_title.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polarity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmisti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supersonic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydrocarbon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stumble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Help_User.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/cache/pker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardstat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youareok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliningrad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/postvote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anticipate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solomonislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thepenguin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_delete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimistic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/money.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatchamacallit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ezekiel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cycle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/report.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instalment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileBanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ihateyou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzdmecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/historian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckaduck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corresponding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickhead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330726.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsajoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncstewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awkesbay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dearest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php168/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalization.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_postdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileCases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunmore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ai4ndigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/posture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olynesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ierraleone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heritage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappointment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/challenge_scan_topic_issuc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewtopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yourself.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eunnshop/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rwanda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/saveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confused.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms..php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emyuser_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/showheadpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/while.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/KesAdmin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adams.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hkalov.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bow5diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erenity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dixon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilization.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/template.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/upload_word.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burbage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3423.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/major.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shownews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110579.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imbroglio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldaihills.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deserted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/bpgadigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtually.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yctoecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrshu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzajt/zzajt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/infosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/of.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taxi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/useful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/adctest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxygen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/low.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifyarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/ejnmdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/385670.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourteen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/europeanunioneu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23database%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alonikasalonica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouglas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBlog3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moguls.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsdunix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elgium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/way.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/263668.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eherantehcraen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sounded.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5313343.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/february.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/022188.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spatial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abortion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopeful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/review.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136b.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiplication.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodstoc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuz/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/515149.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/famous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simplebbs/users/users.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/super.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oralsea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gesture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/311381.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardware.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1231.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onp5dede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexandra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/form.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/fun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinanorthern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mitten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/click.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narrative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmdasp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relief.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftList.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/file/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/grouppermission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobbes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provided.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/x3x.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bauer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ChkReg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destined.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fwqzmisc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easygo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodafternoon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddisababa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postagree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrw1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angzhou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rkutsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1104.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forumdata/cache/eval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hautauqua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adduser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embrace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office2000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modsecurity.php?inc_prefix=obox/htmlheader.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arpathian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monitor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gathering.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/203515.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdgdfgdfg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elmstree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extraordinarily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by_admin/by_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntarctic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swamprat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submit_site.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resignation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gentlemen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005kycj/2005kycj/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shfw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/election.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggjdsd/hz@host!.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/move.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lies.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/295029.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headlong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/independent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonetheless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burgess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odbcconnect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/db/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123010.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.project/%23zxData.project%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htdocs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topic/entete.php?subpath=http:/badurl_banniere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_A.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_picupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contract.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subject.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ArticleShow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penetrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/496464.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woyaoponi123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3699.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sherri.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longrest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/self.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanzania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/PStockApply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messanger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/askatmasqatmuscat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aique.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automatic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andungbandoeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tvadm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncohumia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hropshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileServices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_mod_pw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hills.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/band.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trousers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/head.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innumerable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brief.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/two.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honduras.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unafuti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selfish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/ubblist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8read.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stranger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knife.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55724.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ziu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516583.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ackerman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ben.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_ad_sc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merlin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/people.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lliceislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traditional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ockymountains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ForumTree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holiday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/db/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/wsooa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurried.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simultaneous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfile/Admin_Index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_boardlimited.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editerraneansea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongaislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/masingle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/crtkdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hedge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecology.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corporation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psychological.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25910.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilepartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/317513.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/since.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdrom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wagon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad2000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ownern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usersheep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/want.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2891915.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/financial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3151815.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxidize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everyone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/z9v8upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluchistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illustration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/php/mlog.phtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/239026.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/334130.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eymouth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upyours.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wound.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dramatic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amadeus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lifton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rssfree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/%23ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consulti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hartumkhartoum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3726.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aragossa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bugsbunny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experimentation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyesight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purchase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilelink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebenezer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/084313.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uerlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technology.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/put.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opendir.phprequesturl=/etc/passwd\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/show2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiyu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7879.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php168/mysql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accountant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caesar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1962.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5101325.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taxes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1288.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_addclass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/pzgmselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irrespective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/due.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/federation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softlink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shazzam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_menu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phrick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/556444.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjdsdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_bin/shtml.dll/nosuch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pitch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yasalake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cluster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supposed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/litterbox.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dundas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1223.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genevieve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fallen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfghj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/id.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1105.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topic_submit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guestbook/man.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yogibear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/council.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cascades.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8up_BookPicPro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51000777.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2002.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agitation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminkey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incinnati.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/georgina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimsrheims.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/accesstopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_modify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interior.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_Getdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glitter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/558.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/loginadministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/browser/default/browser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiawatha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abstract.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kkraaccra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lowlife.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adeline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/510613.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgonderin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/allpaper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clothing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/um.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8wish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1145766.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reading.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8vt2digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/look.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aining.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luckybreak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot-asp-scan/scan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/residual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_check.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sculpture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rod.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fantastic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adelaide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivalry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orakermount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punctual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshmeat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101476.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wap/include/z9v8login.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tower.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuwait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolivar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calculate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephanie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pilgrim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/links%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theirs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultimate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reporter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poetry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewhampshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newcomment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/437351.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackhills.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/nowshop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chapel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ussex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walnut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/b2b_sysdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/auctions/productmng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wondering.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cscie-ci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adela.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fl04diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileservices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/240000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/float.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deliberately.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audrey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/402313.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erghana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7hsfdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/springer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abagail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0910.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dugu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58917702.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earthquake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keeping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yderabad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pension.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/censor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qdfscounter/maker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldives.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_killip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/34aqdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guilt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correspond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/db_conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrtg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/604604.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inventory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilenewspic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecshop/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook365.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grantham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1425.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/zz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snafoo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furniture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/570207.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deserve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/association.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathedral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo_post.gif/c.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pay_boardlimited.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/adm_menu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hull.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/logout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniyas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phorum/common.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behaviour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acknak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supreme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/session.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aincitiesintheworld.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hicks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afeking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/Shop_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upfile1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agenham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccraakkra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specifically.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acceptance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arstensz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/captain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sugar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wings.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Editor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_adv_conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3523168.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12912.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gohome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prune.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antodomingo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsaca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2582916.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajorca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anteng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/59.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intellectual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meatwagon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dohvmember/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bliss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pendulum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/61.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wynedd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/looking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endanger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyprus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tongue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronte.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fled.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emilly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fright.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oppose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzanne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrorist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arsala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attempt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unloadimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_menpai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otherham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iforgot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/252xdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xsjnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0971ll.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tetris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/used.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/379666.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/forum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uploadfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ungary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elyot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongfang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/add_gonggao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates/default/wap.lang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shovel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disaster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2613.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amused.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabbit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burned.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commercial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_addnum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilecasestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digg/pvugdigg_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58108243.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assumed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fuzhuang_Fushi/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02021971.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creosote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stationary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8wish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitrogen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibbon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SqlIn/sqlIn_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apologise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfiledown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thanksgiving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/565120.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartlett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belinda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/recommend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cellar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceoadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/ewebeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ktvwupdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancouvervaenkuvc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51492775.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanovo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ammunition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsidiary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carpet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecilia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haughty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discourse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fault.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavery_Edit/Admin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookforpassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sharon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burundi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nihaoma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/don.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/588.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anecdote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/un.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/2administration/6departamentadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aican.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ywovphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambassador.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preposition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excaliber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledzepp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/518517.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aegu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilenews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brooks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/s8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defoe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5236926.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appliance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataShop).php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curtain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uthnforumdata/cache/usergroup_01.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/addbuygroup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discrimination.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/ubbcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/friendlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/mingren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/Product/MANAGE/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angduan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/darkblue_orange/layout.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/615438.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iarebbs/phpadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_usersetting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fought.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23database%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annually.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typewriter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/182550.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wandering.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olotov.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/masingle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostarica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangxi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qkixecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uanda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/getpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burns.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/month.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asjobcom/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlanta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/plus/paycenter/alipay/return_url.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/line.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mozambique.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancouver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/successive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/List_show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/column.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_msg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilelink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2588.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offensive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shida_ceshi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gryphon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olivia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discovery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/password_search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frightful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udanthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senior.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80sec.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cardinal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornefirthof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Function.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/Auctions/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bessie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apeofgoodhope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/36041511.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/saveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07241113.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hule.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rje.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chambers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_board.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epstein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conservation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/such.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/launch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romulans.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/police.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2052040.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/state.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/construction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prospective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doherty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conscientious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calibration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiyu_jianshen/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retoria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/save.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diplomat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9ajradmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egghead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koreasouth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omalirepublic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applicant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bispham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/potato.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rt20shop/npsout_reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pakistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swept.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/con.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/videophone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vacuum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gllogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12300816.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/hqrmselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1iyydiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haywood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/listmember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqyhtml.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiermount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/validity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rational.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeated.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/floor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/index2004.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5081.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hacker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campbell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileservicestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dispbbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daniel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aghdadbaegdaed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surprise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1101.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wr9qdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/InsertEmotion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by-product.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porcelain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploader.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dora.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Super/Index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oppress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07914131611.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/aspbrowse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitneymount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1031.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thermometer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humorous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/end.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9999.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consumer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tracie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54743063.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refrain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horizon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/log.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encrypt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_fileup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/yrxbdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtxinu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samuel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enerife.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1688.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/we.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/admin/mdb/lennyash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/diqu/admin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6121077.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onegal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jstop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/226500.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baglady.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradesman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/267496.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1011.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n8ftmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadphoto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleakala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuanpin_yingshi/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unixman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/Upfile_Article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2756.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somalia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/him.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trifle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forumdata/cache/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uascaran.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/in_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenhouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopeless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/significance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/jstest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/die.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2222222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkokbaeykok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuclear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tangle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crooked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/repost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boke/data/dvboke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlimited.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harlow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0527.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0270861.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imogen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apologize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uranium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heymans.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topcool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10293.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin1/scripts/setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judgment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuisance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprehensive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewFucker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/device.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macintosh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proclaim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SHEEPST.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/pros.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drunk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_business.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/policy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/smiley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feeble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luemts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/xiuxian/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waziland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/event.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Field.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mh6rdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northeast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonderbread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humulangmafeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armarthenshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ehranteheran.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenzhang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llampu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocktail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/bbs/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedback/feedback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/republican.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23tz-sky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26499.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hildegard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/124526.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trouble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/filemanager/connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/materials.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ederalrepublicofgermany.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rxjh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arianaislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/area.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utilization.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ice-cream.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saab9000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/phpspy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esthetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongspeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrwonderful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/results.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subjective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/bbsgl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamonix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0813.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiffprick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outermost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olokai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pressed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clambake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovaniemi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_softlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2102089.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/t.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arvardmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/58.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessitate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_postings.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dismiss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birkbeck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/aa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/z9v8index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eyton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fck/editor/filemanager/connectors/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wygkcnqywz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/htmleditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alado.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beowulf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminss/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oktzphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikallake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gambia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/profile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/88888/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disgrace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tightfit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147258.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_getpassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wyoming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19690510.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileservicestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcdef.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/april.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfonso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dignity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crazy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjacent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlucia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfiletemp_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immigrant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foolish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/z9v8shop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2345.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualities.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downtown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolescent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_menu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serpent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wages.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biochemistry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avarianalps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5013.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinawa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_friends.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hae.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erwickshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zllm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/325363.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlucky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/294919.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butcher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfiledown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/109430.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/power.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oneself.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b2b_sysdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scfilea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monarch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain_manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unlike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_post_do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0717.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corona.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uadalupemountains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christopher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111702.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OA/install.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carbon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alfred.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anluo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treatment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunlight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m1pidigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prepared.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditProfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/screw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/display.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garret.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honesty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uadeloupe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/0dfrdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budget.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/db/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heroic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/line.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fqkgbuygroup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get laid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/double.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111999.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/elselist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/there.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoenixfiniks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/031528.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000519.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/give.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benjamin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiqdata/cache/aikai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/addmorecard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/admin/b2b_sysdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garlic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/tiyu/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13570.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evonisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80f9digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wipe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51marry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custom_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/making.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/series.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0629.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aputo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8plus/infosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normalization.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpgroupware/inc/phpgwapi/phpgw.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martyr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheepeven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murmur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sem_user/admin.phplogin\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twelve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gregory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/jisuanji/modules/forums/admin/admin_styles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geoffrey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exquisite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20731.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Data/YXYbbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grumble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evenloch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/case.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23%23cyweb_cn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiseng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presumably.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndorralavella.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relieve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_bookpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloudy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jsNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anarkshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/check.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goaway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Admin_Gupiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flourish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ASPXspy2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_uniteboard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arena.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/admlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smooch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etherlandsthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/thread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occurred.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undertaking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taylor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plainly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/diqu/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molecular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackburnmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solemn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/group.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20080302_aa/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mediate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/time.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alenciennes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168868.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miniature.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iagarafalls.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1209.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disastrous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discharge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bald.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travelling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsuserid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjoin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defines.php?WEBCHATPATH=anothersrvr_language_english.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symphony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadProductPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gowest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c99.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/royalty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpdama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/single.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun-spot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/television.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/31415926.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp/job.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/southidceditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21127006.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/waffmysql_error_trace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodpecker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aporozje.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520310.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summarize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deficiency.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/online.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/chufa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nchorage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lennyash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookemdanno.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uphrates.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bella.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accident.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nerve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iran.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack2b.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221197.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000u571.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3333.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede/plus/paycenter/alipay/return_url.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ib.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/value.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/departure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Images/config_inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56881323.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/%23GBooK.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/checkname.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5098.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/go.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/uploadx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hlledigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serverinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talino.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_sqlin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfgh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aircraft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26013.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigroom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iroshimahircimc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bedroom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageqd/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/challenge_scan_topic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/jisuanji/wangluo/modules/wordpress/xmlrpc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quality.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gutter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php-affiliate/details2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get fucked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clubconfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/521258.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/point.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilebanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irginislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dioxide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improvement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110400.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amako.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/images.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200081.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/host.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/489660.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prohibit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rub.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guineabissau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navigation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refuse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gazing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tanker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Connections/conmx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolidex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urchison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_ok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/memmng/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atalonia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comedy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/smallpaper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complication.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilecases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastener.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htgl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrialize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culross.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destructive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/bbcode.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/business.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gnmpdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weblog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtaiguanli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6072668.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manufacturer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underneath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/understood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/78pbdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franklin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stability.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uantanamo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/showheadpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experienced.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pneumatic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhandaman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/images/logo.gif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multitude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/AddNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shangye/guestbook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evonport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilecasestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscribe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aloud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baldwin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/db/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overseas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iami.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adele.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orbit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mutter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/8.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ierramadreoriental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puzzle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/265mupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devoted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogcatcher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immigrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overfjell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/translation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichmond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eaware.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tockholm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fund.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auxiliary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpbb/prefs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserManage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/342623.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermuda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gofuckyourself.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catherine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kayama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawthorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contaminate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/investigate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambridge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server-status.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/groupshow.phpagid=-2\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enicevenis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyi0digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lives.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/yns_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dsvote%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfiledd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_media.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/User_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backrub.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/FCKeditor/editor/filemanager/upload/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spurn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/016161.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clquservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8th.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obsonmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornament.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raindrop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupsave2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surroundings.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/returned.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreeable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incorporate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilenewspic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanxi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappointing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonsbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ati.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onaco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starwars.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/framework.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woobie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fy_SqlX.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marietta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icksburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/showcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilenewspic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fdnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli-cn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileCasesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bxrlbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enemy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albatross.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiangce-heka/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abigail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5945.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uvalu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smith.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/around.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reboot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stamp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srael.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reiburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antonia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsewhere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scenery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tempo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ijon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/qgcgmysql_error_trace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/path.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernestine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/join.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limitation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123459.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Dv_GetCode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otsdam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whereby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literacy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/le.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alabarcoast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gangster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/militant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eroe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20000101.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pegasus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/f.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adequate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsalvador.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/njcsecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mymodify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rlington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harjah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carefully.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hans.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1133.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scott.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrewd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organ.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11139753.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/descent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fletcher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/buttom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earnestly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0909.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reagan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_boardset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatred.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/story_add_content_action.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/Auctions/uploadsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eustace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/#wygkcnalibaba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strongly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_copyright.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ali.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pipeorgan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sincere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_product.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/influential.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hirripogrande.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ej.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jamaica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rotary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppervolta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsedit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestlog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47138.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileCases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electrician.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffenbach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/js.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8mmxt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consider.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jennifer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestcollegepicks/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boardhelp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/house.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileDown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0422052133cncom1mdb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/baphselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temperament.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aran.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thanks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/usergrouplist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carolina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exploit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horsepower.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11021969.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paradox.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hallelujah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridrdata/cache/m.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/shopadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/141119.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win98.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemonic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sendpage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/edit_forum_top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scandal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edgar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harvey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hansom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordilleramts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desolate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolsover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/academia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calculus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/produced.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alienate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/total.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/out.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaaaa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lightning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onduras.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myplus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/koreanorth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superstition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thousand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manoeuvre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121271.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clothes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garfield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/until.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/326067.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orava.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/104153.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motionless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wounded.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ealand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forehead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambitious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321300.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vdnslibraries/sqlparser.lib.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreiser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastbreak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avenport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nnarbor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_delete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slumber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arseilles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchresult.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/position.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/15228.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pk25digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reader.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fridge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uffolk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/why.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/territory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraadmin/imagemanager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applicable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condemned.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_ok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/copyright2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budlite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jewel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lease.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilePartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haaie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100533.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ireton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savecomment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/covered.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eliot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mmServerScripts/s8MMHTTPDB.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Admin_Index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmdphp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/same.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/english.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glued.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crisis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emphasis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underestimate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/65209.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2089.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ehafdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jmokcounter/maker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intervene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1109.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatshitand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hetland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difficulty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hemisphere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/december.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specimen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onrovia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/der.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newbbs/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cigaret.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfnym_header.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascribe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/console.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/streak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/fpadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmnop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewmexico.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/files/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4724136.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/forumdata/cache/usergroup_01.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joshua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dentist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nlcobuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afpmwish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5802768.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/330476.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/energy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omsomolsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mac.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/office/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngleseyanglesea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/0yxyupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/braindead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kejian_lunwen/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antaisabel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/232061.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sangdam_mail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aeroplane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowledge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permanent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/CHANGEZL.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/0ssvdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/053911.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingres.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbview.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ounce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upperclass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apura.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baidu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spanish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.ssh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/editor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/croft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eloquent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outstanding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essential.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8shop/npsout_reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aien.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_t/include/aff_liste_langue.php?rep_include=myhost_with_para_langue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/removed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ann.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigboy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/DoInfo/oxpuChangeClass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acrabuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jenni.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/substantial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okyo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4497717.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joined.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolerate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncwuforum/uc/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rukcz_shop_newshop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hy2005.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lynne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cokacola.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thxkdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/245245.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gehang_Geye/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campaign.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/50706862.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accelerate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/34.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ochdale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/x.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/order.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladstone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascertain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triumph.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trench.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mercy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alongside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxang_Manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onnecticut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_style.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overestimate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mr.roger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aghdad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/403705.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sphere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup123/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5959.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadattachment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sips/htdocs/preferences.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/media.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8showpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metric.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200438.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clusters.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Gupiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concrete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolescence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59361265.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insurance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/admin_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mosquito.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/understanding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronald.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxburghshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nettools.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_dgdel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3408311.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coatimundi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rxnueditor/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/masingle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ississippi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ImageMap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittsburgh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/cls_cache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condemn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileservicestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briggs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplementary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harcourt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/76.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badboy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominicanrepublic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wherefore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_yuzhiguo/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euphemia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wovedigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lib.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2nk6digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/error.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outdoors.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/261027.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reservation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/body.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_message_new.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraadmin/phpmyadmin/db_create.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminLogin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utherland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/test_download.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andersen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/momentary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porsche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ASPAdmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bestshow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileservicestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eirutbayrut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/credit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lawn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ursk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aituo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tt10digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newreply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burlingame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrkbbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reconciliation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/iwvfinfosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harleston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/luck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bullet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumberland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54118.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by_seven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittsburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1tufmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_999/login/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileCases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/deltopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/548888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undaisles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testimony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eagle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privmsg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marshallislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530806118.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integrity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/school.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reckon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevalent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110474.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vectrex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idiot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soldier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/testsubmit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iege.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/number.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11117791.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/chkinput.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/react.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/chkadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23dat%23!@$a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3698209.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facilitate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asebo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do/zonnreg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/char.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lygofa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likelihood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0521.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubb/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_Other.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hugo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/en.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/Const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viscous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courtesy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualitative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiquan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db_backup.phpaction=backupdata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/install/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorenceflorcns.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1122.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrench.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaware.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/synthesis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledzep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000boy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armstadt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ws.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talingrad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdb/pblog2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ido.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56413818.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aborone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unedin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kes/admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacterium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freeze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/museum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/wordpress/xmlrpc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surgeon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaoshangjiameng/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangsha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_pics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441925.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amplify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esther.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/problem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonorrhea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orwegiansea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pushed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_photo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1967.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_backup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiresome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/space/person/img/Thumbs.db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5310057.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recreation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smanager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/jet.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vague.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solitary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magazine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/role.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivmlewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almerston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amorphous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changepwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Other.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.php3admin=anything\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukqbshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dividend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MeCMS_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ackson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1970.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/System/Function/UploadProductPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sentiment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/WebEdit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/main1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranklin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effersoncity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilecasestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleased.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1380195.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.14159.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvyouchuxing/893.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56789668.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bargain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/wolf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himborazo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courteous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/scripts/setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lipinwanju/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emigrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10173.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhglamorgan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/east.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131431.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1960.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xokgecshop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulwer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_address.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dufferin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jerry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpass_submit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/areng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardiarabia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminopts/login_form.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evarts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/noubb/ubb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huggins.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parachute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seychelles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/predict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commrades.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileservicestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fbi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/into.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8c9passport_client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crypto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugriver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uineabissau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xdnydiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orinth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aselle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfiledown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinyue_mp3/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/194677.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2288.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insistent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angben.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cshrc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miserable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/615.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allowance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boeing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apeverdeislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/procession.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/challenge_mod.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rocket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innocent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414718.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rooster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_lockuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rencai_zhaopin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dancing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Dv_ClsOther.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capacity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vob3digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_pass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/render.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show/back/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antabrian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/jndzselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/younger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/360.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/569853.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/showcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assassinate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osamonte.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbitrary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urabajasurabaya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eorgetown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuitansul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/art.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/del.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genuine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133107.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortofspain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dv8ediy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ejhcmember/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pride.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cucumber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/DataShop).php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foresee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nought.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodeisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileNewsPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illustrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technician.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/context.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/header.yc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icaragua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatnot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/translate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sideways.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/municipal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuesday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/gbhome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xccamember/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/art_mod.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apecod.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanbator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolivia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruler.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puneet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/chat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/372011.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maximum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordoba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welsher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webhead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_form_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3357.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sermon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_bbsface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amburghaembcg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indifference.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slander.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/down.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ateng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erkeley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furthermore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urmansk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affectionate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/%23tourdatabak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stillness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_photo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ms.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/24857602.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udety.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ll.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/support/common.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_scan_board.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overtime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_wealth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sequence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminsys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pistol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ephzdata/mysql_error_trace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunlop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xlvcbuy/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gravel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndros.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernstein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reassure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rnmgbuy/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tensile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarters.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cczbmyship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashkenttashkend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chinese.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/69.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athmandukhatmandu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belgiumxtrapage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_ok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/va.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/ndex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6071312.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/admin-gl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inisterrecape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ithuania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webetoys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/return.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp99cms.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uanghai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sustain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electrical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opqpphp168/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliyuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110259.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hvData20060309/asmASM.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baoming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiladelphiafilcdelfic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humphr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otherwise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eleanor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadF.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djibouti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huiyuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/502835.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tirlingshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoghurt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correspondent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hidden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackdos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/03516043731.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/climate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardhelp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wisdom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cdkey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/458158.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pioneer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/57666.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fuckbaidu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck-off.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/z.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/new.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/192.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5814442.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellows.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enders.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reenwich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/critic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/53.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzroy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/build.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pma/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/hmpmdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ez.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1965814.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amateur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frustrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaotian_qq/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlanticcity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepspace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0831.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/rzbfselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irishman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taysmysql/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alestine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/envelope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshow_myphoto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agundigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_right.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggressive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constraint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athurst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iouxcity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzibar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mbpddiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/098765.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tub.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burglar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/uploads_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beloved.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/343434.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfordmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pants.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/would.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uncover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/private.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/represent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/311922.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comprehension.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilenews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consolidate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4110428.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eningard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sullen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/43bsd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obedience.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amanda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annabella.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everafter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omaliland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmins.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/section.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/system/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/its.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/describe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holmes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adsystem/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colleague.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warmth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bjdifckeditor/editor/filemanager/upload/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsequently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reserve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/172090.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/452301.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overnight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileCasesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112205.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heartbreak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nqnfecshop/flow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orraine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pillar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/02kvdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sofa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raguaiaaraguaya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor_v280_free/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/positively.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/academy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantinople.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackboot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/myadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pluto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/70.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bimboe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456654.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noreen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/third.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tyopfckeditor/editor/filemanager/upload/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh/data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docman/new.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sem_user/admin_php/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retirement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/admin_setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashmir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123491.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpanel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/251314.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainframe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grounds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epoch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utmost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mellon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nineteen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/Connections.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pantry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ining.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doubtful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/second-hand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saddle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileServices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteadmin/adduser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oseau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anadian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jordan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqing_jiaoyou/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/150531.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percentage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_server.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/libraries/sqlparser.lib.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsingtao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeanne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/our.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/m_bian/db/%23ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subgenius.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/datashop).php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paranoia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topiccontent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telephone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13578.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/htmlEdit/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forumdata/cache/usergroup_01.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postbug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirksen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnished.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pole.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snorkydorky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upuserface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aida.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1872.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lefrecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receptionist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyaway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flatten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tablet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugspitze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9x0fdede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unichmjunik.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatshit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1117.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theatre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somebody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cushion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08484571.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reasons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stubborn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/fuck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/au.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooperate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donald.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendfriend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snoopy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sys_db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybaris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/was.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/librarian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_grade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ciu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/reg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triangular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/index1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phrack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/just.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orders.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2006.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/077870.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uqa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2355603.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5f68t9.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shallaux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SubCate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqywz3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loyalty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wixousergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syndrome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortunately.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogben.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teakettle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whichever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aviation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/AdminMenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopex/shopadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/ADMIN.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/lekrdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/function.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/material.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostov.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shallow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007628.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/forumdata/cache/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123789.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102478.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/News/article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102218.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/jisuanji/ruanjian/modules/forums/admin/admin_styles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prior.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akalu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234567.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathleen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/query.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131445.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endoza.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elaviv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astbourne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workshop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/editor/filemanager/upload/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misfortune.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zork.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/29ffdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shady.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persistence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defiance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tropic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managedl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novelty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armstrong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orayshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lebanon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310113.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/once.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ltai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_helpview.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characters.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcheck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikkim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mmgr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aniu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alabo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hauddoc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerbin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algebra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklgn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cadcam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rascal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/modifile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contribution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subdivide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therefore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggestion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileservicestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinidadandtobago.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajtldigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_out.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_wealth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/loadtree1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theoretical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uaisshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker_clown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhabit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackboard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prosperous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/User_Space.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antucket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucharest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utchharbor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/editor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql/in_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berliner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my_upphoto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aireng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/action.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cinema.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23%23%23fdkjgzschool.v2009%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1127512.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beyond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sossina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhostlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_link.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postvote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bovey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charged.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5561.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eligible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%2352_dsmm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fibre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201314.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/plus_check.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/stats-bin-p/reports/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recycle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot-asp-scan/z9v8scan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beethoven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assembly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasoline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyrus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intention.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/title.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/42.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolingbroke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anluan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/global.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usaka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indoor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradelogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personnel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uperiorlake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bancroft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waiyu_xuexi/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilelink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visited.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zero.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilecases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/significant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab_head.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuylkill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conndb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminceo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collins.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemceo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploaddd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carpenter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eoulscul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aroline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nobody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_file.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Boardhelp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload_soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fy_sqlx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dcykecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoyuan_gaoxiao/950.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhugbuy/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/p5addigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/care.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andadevi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognized.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volcano.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fenwick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scholar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spliff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/communism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ikespeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nightmare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilecasestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/home.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yawn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northwards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_backup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matters.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02nfdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilebanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haunt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awaii.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3310077.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strengthen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_upUserFace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/cache/t.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrimp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/i8ytdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10248963.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subdue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/134326.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/USERok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0619.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lithuania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MySql.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft7hdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/users.db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nderbyland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transmission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/rblwinfosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs7.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/besides.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bromfield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/if.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barfing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reading/article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/you.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heighten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uckinghamshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cropolis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/searchok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dubois.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identification.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanbatorulanbato.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qatar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxspy2.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pvote/ch_info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decorative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/FCKeditor/editor/filemanager/browser/default/connectors/php/tmuyconnector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skins/com_3/footer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_fileup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/task/inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycroftyyy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fangchanjiaju/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/202775.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adduser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rleans.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_admin_updata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resemblance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hinder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ramble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/38667.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoroughly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/na.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illingham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emptyhanded.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bartholomew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/conn1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refinery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tactics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yelorussia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gordon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yclades.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6171.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/388273.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/community.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godwin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/great.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus pocus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orresstrait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everywhere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onstantine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_lockuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogota.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spontaneous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstore/admin/addcustomer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraAdmin/modules/pm/include/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fileshow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stars.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wargames.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedhed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board/admin/admin_ug_auth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheepst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michele.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letmein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appendix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileDown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileServices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preserved.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/casual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jingle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12343.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/jqr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upnewsimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ogotabcugcta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/537639123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PHPBlog/images/cmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aici.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osiris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/Data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59843033.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ns.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_databackup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dispuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anonymous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/078814.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expenditure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainsail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otopaxi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toby57.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pointing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecalupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glossary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/trade/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cynthia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fleet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilexinxi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feature.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ami.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/383855.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overlap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disturbed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wholly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/separated.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gym.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leather.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/ignrinfosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200094.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other/Festival.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1129.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kszzecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7894.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clatter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susceptible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displaytopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221251.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/digg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undybayof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enaistrait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferrari.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54741162.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/license.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glorious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0127.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pay_topic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardpermission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/develop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisabethville.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inde.php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/schedule.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/naval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraadmin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/41.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6453.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ciong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileBanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/addnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accomplished.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login_out.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hindley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgotthardtunnel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2262.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pforum/edituser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/upload/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/connection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftList.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chimney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illusion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acramento.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/performance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilometer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_bbsface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneeze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distortion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desperate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scramble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/who.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_scan_topic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shirley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experimental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/c0lldigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_template.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comparative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congratulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/executive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anthropogenic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/332211.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/CHECK.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etersburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/racket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/center.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botany.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadproductpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alisa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/x.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminqiqi/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gramophone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/focke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulianalps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yearn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impossible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/separate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/12.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adopted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do/xhyrreg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/htmledit/images.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nature.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckyou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pomount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2744360.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_NUpLoad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/champion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softlist_all.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adras.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beware.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/005280.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phreak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verdlosk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorrowful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likeness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honorable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/webeditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1220.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publicity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/073019780730.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/use.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cashier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bencandy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northatlantictreatyorganizatio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/193877.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandwich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recipient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ventilate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trrfuser/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/william.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilepartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chamberlain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boyle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stratford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transmit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heaviside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/cache/cmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/601543.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beverly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abdul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liuyan/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/515151.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Nonglin_Muyu/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcticsea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hongke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mankind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/megadeth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yaco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/construct.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voltage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relieved.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads/ad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile_asp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implication.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hughes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/president.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thinthighs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arwickshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hofstadter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comoros.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plausible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tpetersburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ik.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/midnight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/data/data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatcat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8l2digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shithead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chainsaw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evslbbs/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1st.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okkaido.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iroshima.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/both.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/being.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gostraight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show_cart.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/razzaville.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craigavon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holtham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sides.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001119.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irrigation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Function/UploadProductPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installuc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wretched.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alliance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arthasvineyard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omalia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0610.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread-84-1-1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administr8.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victoria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/loginadministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assurance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undoubtedly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hcdladmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/css.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saintvincentandthegrenadines.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pointed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garcia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjlkj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/z9v8fadmy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13012817123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/od.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startled.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111012.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brush.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office97.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/265333.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2589758.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/babbitt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/events.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grandfather.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedicate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diligent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds/Main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fungible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imalaysthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpbb/admin/admin_ug_auth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13805866477.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzzball.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heywood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/233.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/dede.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13221.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/left.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imitation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeopardize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/621119.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaskell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/so.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/582838.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indsor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/187668.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovietunion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fuf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liechtenstein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galbraith.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/321420.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annette.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1932.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/2administration/5terminals/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hush.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rules.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallpaper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everlasting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/save.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_favorite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibutidjibouti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquisition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lofty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interference.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handicap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botanical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tgeorges.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilebanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukraine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/science.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiritu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commemorate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foremost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfxm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebedit/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/error.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_upuserface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocietyislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main/cafenews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discourage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23nbaamlq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0315.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extended.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elephant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/membership/inspired/viewcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ought.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urged.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entralamerica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1360163.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bride.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_jk/joekoe_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nitedarabemirates.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23tyqiyechina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/august.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surrender.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/CHANGEXX.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/narrow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invalid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dillon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iloveyou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocelot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antiguaandbarbuda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136019.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5266.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubicon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mixilibraries/sqlparser.lib.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anruan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/495089.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/upload/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itchellmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/lrc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rks/showcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win2000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/075415.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ating.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1616woo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/common.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23verncotech.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/downconn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/569344.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hillman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dropped.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lambda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Users/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manage_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amascus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nothing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/581525.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohhot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acificthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vbzoom/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numerical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersiangulf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2160.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oriental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ending.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_dayupdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pamela.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifteen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmesecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaxian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demonstrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ossandcromarty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpBB/phpinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1370192.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.php?source=/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysconfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/cevebaidu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playground.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plunge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/onnhselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xxx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brotherhood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provocative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzgerald.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upload_c1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1268.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/round.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fruit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruined.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aratoga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beggar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coarse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poisonous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obv0admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enterprise/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kinglear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remnant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dropdead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddersfield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boots.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/52.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vms.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112822.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/after.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/follow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/milky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuffy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jellystone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/output.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/select_feedback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contenido/includes/include.con_subnav.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_category.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/70oedigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/males.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y2k.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kermit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/edit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/at&t.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berlinwall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5151511.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/chuhinfosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/368223.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grease.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dulce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22327.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showboard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esmond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/adminmenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileCasesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arisanmoutains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20202.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moldova.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dream.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agoyanagoja.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/best.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortonovo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemadmin/adminlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/81.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flowers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aabe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/to.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oolgardie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immortal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/californ.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riendlyislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blacksmith.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nita.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rras.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letsgo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiedam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminroot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Chan_Const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bird.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_addpicpro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analzone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logindefault.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsusername.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/asp/browse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosannah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/asp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visualise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/z9v8upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/task.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longcock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_template.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/below.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/no.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/function.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reconcile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anitoba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/re.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_BookPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shishangmeirong/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/18.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonzo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upLoad_bm1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/math.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Sys_db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcpip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hit.php?url_hit=anotherhost_with_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triangle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/qpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56512197.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/establishment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/382789.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pound.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1429.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saab900.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbbjdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umfriesandgalloway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujiyama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawkins.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/pclll.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0123456789.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ompiegne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3687.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_log.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longhair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8899.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tease.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alleviate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiduan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminhh/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0681ok8223ok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/45986.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tchristopher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destiny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_productpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uila.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/129129.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilheney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwlog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oanoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubumbashi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persona.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warfare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000920.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/activity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3528088.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constrain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attachment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meaning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_jsNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userface/adobe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_skin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hinge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alilee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accordingly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amothrace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harddisk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowOnline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/22.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imperial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlaid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qqhao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handwriting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/caonima.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boleyn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tamie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/havelo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0715.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utlandshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conceit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/part.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motivate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preview.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pattern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imbabwe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgiers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cremer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contemporary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56830993.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/late.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0429.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0824501.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmsucks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/man.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breaking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bimbo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CmsEditor/Upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/query.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/234007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occupied.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advanced.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_firstpage/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alayarchipelago.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ighland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pastime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klingon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/play.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prisoner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112233.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alladolid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/CheckCode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housewife.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndochina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5daxb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/large.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evening.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usermanager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleared.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rib.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apriisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hristmasisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1966.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminruan/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0615.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absorption.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jetcbuy/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/challenge_up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_topic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/query.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouldaux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spyrogyra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yolanda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/address.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othenburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingxing/mingxing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/logon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okhara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aros.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/79.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/Admin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twilight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/central.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernandopoo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lasgow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/credible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0213.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angerislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truefriend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luxurious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ocatupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/saveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/startrek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/miss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login_lg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rainy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protozoa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/command.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4689335.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/webeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilecasestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/qszbdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punishment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roller.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilometre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/age.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6200126.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1218.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wxakdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1678.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/vgzyselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asylum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/execute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheep_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620828.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coatamundi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augasili.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skiing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trinidadandtobago.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaoma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/structure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54420301.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilelink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madagascar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/60.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stabilize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udapest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickenson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyberpunk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_addPicPro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/live.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/religious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/random.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakfast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go away.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderately.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bede.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roses.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sesamestreet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/021975.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/study.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uagadougou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8tmdqq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Mianfei_Ziyuan/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alicia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headmaster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophisticated.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latariodela.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fvss2fly_gift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clause.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decidedly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/372153.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminopts/include/vip_form.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absurd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/search_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illcomayo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aplata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/Forums/favorites.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correlation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_zgtea_art/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/sun_lyb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahrainbahrein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rks/code.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/addok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minsky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atarqatar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iagara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23bbs-118-jh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/eblfdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luckylady.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12300.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sovereign.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/though.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anneng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begged.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/western.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25118.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/im.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/181818.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_fsoEdit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cicely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortorico.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tarragon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hgfhgfhgfhgf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilebanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electronic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alarm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okohamajcukchamc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6611222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3130.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yay8digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5544.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backupdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confidence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilecases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhaopin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/flow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powertool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilebanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depression.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stretch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invariably.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56165.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anagua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systematically.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anvils.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laughter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appeared.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/train.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earhart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/original.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/field.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1ndex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crawl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellsworth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/game.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traverse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angceng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2r8idiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annettpeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/567891234.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1968.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/viewip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m4riservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troublesome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2085038.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/productivity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extensive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/456.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin/scripts/openvendor/gnete/retrievepnbody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jhset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compensate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethiopia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uc/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chardonnay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seabreeze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51marry99.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/craig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reason.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dangermouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodtimes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kheqregister.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindefault.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indeed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/understand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123987.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helena.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/session.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vegetation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exposition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/energize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/1008.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onolulu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robots.txt/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uapehu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tyqiyechina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_log.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2457450.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adapt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ts-tool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/green.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320402.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assenpeakmountlassen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tutor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/home/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/de.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2005.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nominate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fret.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/newadmin/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardens.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/565656.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redundant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conspicuous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stickshift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extremely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appetite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Photo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8company/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aberones.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/root.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblige.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aterson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/512215.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/upji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ribbon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/back/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/involve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168168.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joekoe_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ligo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downnews.php%69d=1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennessee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aspinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/eWebEditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userregpost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transplant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/britain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/216101.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/string.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/ybfwdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/lbbs%23dfllds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexa/fadmy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ts-upmdb888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vulgar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaned.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/User_Article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zambia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specific.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/socialist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_SoftPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5203992.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitterly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yssjk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desired.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/janet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetChallengeWord.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunbar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashichannel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/WoDig%232008.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/did.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_batchlink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RayPost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pressure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diplomatic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkreg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conscious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/87d6diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepsea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careerfocus/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broadway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congratulation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powereasy4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ande.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yugoslaviaformeryugoslavia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ickes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/008354.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caldwell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caliban.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mmServerScripts/MMHTTPDB.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specilaise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/upload/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongolia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pigeon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constitute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brisk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isbon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/lrzoselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/481612.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emarang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agros.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pathetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/News.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angerine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parents.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gigantic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pearl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/planet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/method.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almademallorca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrialise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345687.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bilene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrivi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4545.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compression.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/institution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edittopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sailor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instantly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_name.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindergarten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laurence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refreshment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occasionally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rosebud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gumption.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extreme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrewsbury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/case/case.filemanager.php/admin.php?op=move&confirm=1&do=copy&basedir=&file=/tmp/dat.dat&newfile=done.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marsh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lattice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/515376.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ginger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpcheck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete_all.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirrorfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59922006.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anku.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/312402.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farmer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imondpeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_flash1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mauritania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulletin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/example.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cooperative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaveralpeninsula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rkney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minibus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/5gnmupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/origin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miens.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considerate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/195866.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/461461.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/client/user/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441206.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faith.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EC_Admin/EC_AdminLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ykhtau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2011.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mkirdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pencil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affiliate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/admindy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/this.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/cmitselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masculine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helicopter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/yo16digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shehui_wenhua/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Uploaddd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/download/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/united.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wednesday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/uploadn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showessay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osporus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dub.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/october.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileCases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1807420.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0710.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definitely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quixote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butterfly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/461511.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ering.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darnley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/361800.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodfight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/made.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frourmdata/cache/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/132603.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112933.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/newt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/renaissance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58443091.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eecs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devotion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rathcape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arranged.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/zhuce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parasite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/mes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virginbirth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obtain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11223344.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marcy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melissa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aids.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algeria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ad_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capaflow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onstantinople.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cylinder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/GetReBoardLimitedOrders.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thriller.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/none.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approximate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dessa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guitar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liveandletlive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adolphus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_articla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exploration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requisite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illwaukee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/please.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theriddler.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cannon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adult.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asvegas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebraws.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savepost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_template.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sys_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_dgsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lounge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmsux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greasyspoon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspicion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interconnect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00000000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/manageNews/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masterpiece.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weaken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/struggle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarcity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulgaria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/showerr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cigarette.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfileok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariadne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ki.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/check.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_editpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applied.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taffordshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elanopeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/86.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quantity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmleditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybbssaveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/64.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12120928.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accessory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article/admin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/mailcon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/question.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reece.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0323126.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ba5hshop/npsout_reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivera.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/determine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/350.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foxylady.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preliminary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mywebshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undergo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azerbaijan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scream.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/codebrws.php?source=/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centigrade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SK_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ictoria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cottage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/308115.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/sql.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/break.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13655.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yricusergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/detail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_menu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antemario.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgj8myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/got.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewsouthwales.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/063502.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaotian_qq/743.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/architecture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/begun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwsqmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgxldata/cache/info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anremo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcp/ip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hundred.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Cls_Cache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robots.txt/1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agreb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salvation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4452542.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prince.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nopgbuy/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postcard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/wa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121800.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginini.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scanshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2fly_gift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alearic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/requires.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herself.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baseconn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/street.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deafen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/considerable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/admin-right.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wukubuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/at.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/del_member.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waters.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yns_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annetta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222588.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guinea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/auctions/uploadsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilepartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tube.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_copy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ildare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0day.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/several.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bandage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspadmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ensng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gulf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adverse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glacier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/162888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enforce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uucp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdata/acblog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/450.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitchcock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222192.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intonation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthampton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singapore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unakha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42577719.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assessment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiweng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analogy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/similarly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/removal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grenfell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/67.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3211314.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driatic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orcestershire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stephen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/get stuffed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/details.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/15652.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mislead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apporo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ku.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reference.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pifxshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prepare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intuition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fresh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instinct.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zaopin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsinki.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/death.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aracas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_challenge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5454594.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noxious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rr1qadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reality.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diverse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrl1admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Stats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/MD5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pma/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/504503.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tenant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiva.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/424777.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/full.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mem/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/DvADChar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/input.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/associate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undergrad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23newasp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solidarity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anreng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unhappy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/couscous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/list1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resident.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audience.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christabel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oubfupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adname.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moscow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mamma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kal007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/next.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/copytopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hx_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/dispcompare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marni.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afterward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/402790.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exempt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iaoning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/going.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neither.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shangchuana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bragg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remembrance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equality.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/type.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bevan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/man.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circumstance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzbekistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/601001.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_set.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yracuse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lvyouchuxing/2050.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectacle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cemetery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announcement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndaman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picnic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crumble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excursion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atnajokull.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visavis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanfight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/AddNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footstep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dawson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/253839.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obtained.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applause.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/critical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/cache/data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/211314.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddhist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angku.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1949.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/viewfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/z9v8addlink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Dispcompare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/every.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/saveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_file.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vigour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elevation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leslie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlanger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arachi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/park.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsalvador.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settled.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/char.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/show_cart.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enterprise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpPhotoAlbum/getalbum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monument.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/log.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preceding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angsonlangson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dihvewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilenews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skins/com_3/footer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewzealand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ownership.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/mmm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sho.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomorrow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_help_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goddard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rayspeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/htmedit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigguy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubbintro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascii.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_SoftPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/table.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fields.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uatemalacity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softview.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruno.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56k.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/style.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/look_ip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luncheon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranaiba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HX_LOGIN.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intellect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lubricate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anselm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cigar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aucasia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delegate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uneaton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/666666.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223344.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viedo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilenews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acknowledge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teenager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinidad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advantages.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_ads.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftList_Cate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comfortable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8scan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondicherry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parcel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0513.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premature.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/training.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ASPAdmin_A.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2613064.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shida_bank_do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileBanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antique.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enmarkstrait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fxtsupfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoughts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileServicesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idiom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Huagong_Nengyuan/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarcely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closefriend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brilliant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/majesty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fisher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatrix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yvwpbbs/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/have.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cargo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idglamorgan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/11.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xyzzy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678910.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/getpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shivers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sacrifice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ormandy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msadc/samples/selector/codebrws.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin2008.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndorra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/independence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industrial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toysrus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sometime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jnqndigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smother.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oxford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embpdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inorganic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/congress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otonou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hitherto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ends.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nega.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getstuffed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/608323.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipsuusergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ad_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mammal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggravate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/z9v8yesitis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convention.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quench.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blossom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/search/queryhit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfectly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3534119.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebsoft/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edges.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suriname.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/2administration/3departaments/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloomy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/habarovsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greatest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sibdmember/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cora.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0manager/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bethune.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/31.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tilt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/39426.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supermanager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/62105762.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/edit_forum_cancel_top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/538263.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070270.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hello.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aotome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neptune.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argentina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/picup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_menpai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/picupsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ejuyfckeditor/editor/filemanager/upload/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immediately.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Photo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amchatkapeninsula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othniagulfof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwanstrait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quickly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somewhat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almyraisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/allnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleigh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/upload/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Login_ok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domestic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jiaoyu_peixun/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/credit_card_info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/sky.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beforehand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agasaki.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agmqecshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bangladesh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/express.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ompeii.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/received.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/adminlogin_logs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adventure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5818983.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addFile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rubbish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uezisthmusof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boiler.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/load.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widespread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/downloadDb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs_save_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wocaonima.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compatible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/simple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it'sokay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/585858.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bighips.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/othetop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rupture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/help.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cameron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whereas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/god.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibelieve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/cache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buddhism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airnshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refugee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isajoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1118.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baseball.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aila.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ertfordshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psychiatrist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perplex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bureaucratic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/step5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_field.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/479424.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6534.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stratocaster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saotomeandprincipe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yishu_aihao/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burghley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/335053.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatrice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agdalen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaines.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12354.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invitation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herbert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0520.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icklow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/__vti_inf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51275127.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourgeois.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5249.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aleng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjhg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthodox.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strangely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hames.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mora.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summarise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php168/hack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connplus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/utyldigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_jssearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51514.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/edituser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parlour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regularity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugenia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delightful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Keji_IT/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olwayfrith.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3457503.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123175.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/home.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/506385.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfaceok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/sendm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlouis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload_Dialog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DATA/%23echuang%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/BoardConn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defendant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dial-up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skilled.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ishkek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deeply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/footer.yc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigbucks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote/admin/fuckbaidu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/elselist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/434000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chronic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dealer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/My-login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntiguaandbarbuda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/gupiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130116.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tfslforumdata/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swaziland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colonel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gratitude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LoginAdministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egellanstraitof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aranto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instrument.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bakery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/north.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angelo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/witness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inaccurate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mickey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herald.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspadmin_a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/092094.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/#tyqiye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privacy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baxter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philosopher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mercury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111122.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiraz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trombone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6666666.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/yuqfdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excited.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/td.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadsoft/diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/czechformerczechoslovakia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/array.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_styles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/html/cnf_gi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascaderange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Inc/conndb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_manage.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roatia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notwithstanding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridget.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stationery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/described.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isreal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atskillmountains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mourn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vegetable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mazon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heavens.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugoslaviajugoslavia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frequency.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabriel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ii.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farflung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hooker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3108.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uphold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cindy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iframe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/bkjldigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kept.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/been.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/molecule.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/son.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/reg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pumkinpie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tempt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tassfurt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolutionary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sympathetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunnyrabbit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teeny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lewis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/chklogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/241325.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torque.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apparent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/average.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/met.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publication.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extraordinary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invoice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sd_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propagation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balfour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/61515.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robyn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indicative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data_8esky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/down.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/succeed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conception.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evolution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/butler.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sisters.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modification.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/account.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pasture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/religion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saintlucia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjbakroha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manufacture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0319.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medicine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clamp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preferable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8User_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraadmin/modules/pm/include/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbouring.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/datashop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behalf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promising.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bronze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bachelor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileServices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlaw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lzwadmin/admlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/adminlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lived.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astlothian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electrode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skilful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/template/main/puthtml.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/succession.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowBBS.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frantic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centimetre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/household.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overturn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heaven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/li.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/logging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4659385.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333355.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obstinate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ouisiana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Category.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thailand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elapse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tmymnews/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bhduservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/za.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twelfth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plaintruth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morality.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estmeath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elicon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bully.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102030.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hartres.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1262301.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1015.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196900.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/header.manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squeeze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passenger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0236910.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/popularity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_addsoft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vapor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rdennes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallatin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/88888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fork.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jpeg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/31887.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plymouth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occasion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topicadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadm_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b0nndigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/install.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/railway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquaint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biokshop/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0827.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confiden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_feng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/view.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/em.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derived.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/manager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraAdmin/modules/pm/include/install.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getpwds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchenjunga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_manage/sys_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Foosun/Admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gas_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divided.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/almstad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/m.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11336699.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smalltips.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_in.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shower.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/knowledge/membership/inspired/viewcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consistent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elements.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register/UserReg_Step1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davenport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourneagain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/os.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/mecms_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shida_bank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/despite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eimar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/unloadimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileBanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2628.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excellent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58138281.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfilep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daltry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbuda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unixsuck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/458.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/letlive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sgugshop/message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonita.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everybody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbvcxz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shitforbrains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topography.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kdawplus/digg_frame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mosque.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elfast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56094492.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowEssay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riacs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/take.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1025.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/obfvdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/done.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3344520.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aweng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/density.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewcaledonia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/via.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harrison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/50.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conviction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_batch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/span.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fettes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dicktracy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haste.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paperback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pvgwshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stomach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setfixarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/row.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steady.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconn_logo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feather.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whisper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ijmegennimeguen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2289.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/status.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/shell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arawak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/audio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/dome/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/package.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restraint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haldane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedecms/dede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wreck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connsheep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eweb/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entertain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/contents.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadImage3_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grrqbbs/uc/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irregularity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/temp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buttfucker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hancock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0525.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/function.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33333.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alticsea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampagne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fielding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berkeley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/war.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baffle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileBanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310109830313354.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/util.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWeb/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ales.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiteng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfiledown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckadmin_login1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_dgconn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aboard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tracy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lights.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vii.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palestine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/index_do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/company/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sybil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mesh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thankgod.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gandalf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daphne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Administration/Default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/privilege.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8css.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egrisembilan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eclipse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbahlah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fargone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/585800.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oniara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4fpndigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speciality.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritrea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UserSetting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/80.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogdb/pblog3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/error.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iydhdede/ruletest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/by.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashamed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insult.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guntis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor/z9v8admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intricate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stopping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crashcourse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stared.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boswell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filled.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passport_client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handwave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/myinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_lockip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tot_news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jrbhapi/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunningham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/db_conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/castle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tendency.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anasanaa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/last.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12531253.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offered.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instructor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2167.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/mbisdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clurestrait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helpless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breasts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blunt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gielgud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db_con.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5373575.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/Forums/admin/admin_board.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartwright.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileupimg2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microwave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/343gat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EditTopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pilot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gbook/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/234.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invention.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formulation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preclude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gross.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftList_All.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/jiankang/fusionbb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advocate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/admin_gupiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iii.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freshbread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/checklogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oncaster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restored.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olyoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anliao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911turbo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blanche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mmDBScripts/MMHTTPDB.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/GetCode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coffee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usertop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/split.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/admin_fileup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmsworth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radius.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transaction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SmsMan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Chufa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eixlaoighis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipperary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp5tdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/life.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jlikmember/getpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Maillist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loosely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delivered.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LIFE.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Skyj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appleton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wish/in_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conquer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abdual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/076212.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xtdxecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/writer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/369791.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede/include/htmledit/ufhmindex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/85.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122400.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/them.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8forumdata/cache/eval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valuable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aoundeyaunde.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asterisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satellite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotweb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work/work/main/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eject.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/aff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2b.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shehui/jiaoyu/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carlyle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dekker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spring.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan/scan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/creamer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/umxeselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/offence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_error.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whereisthebeef.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4017336.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Challenge_Scan_Board_out.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p36mdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llahabad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rchangel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/List_show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zener.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remainder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/A_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enammenam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plentiful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbuquerque.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmpcat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conserve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isaiah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/318017.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altogether.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerald.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/won.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pecksniff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fascinating.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technique.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zcauecshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mgr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5678.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/views.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosmos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/student.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adajoz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/responsible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/homefunction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rigorous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prof..php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caption.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realistic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gardiner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup1/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20011.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/Reg_service.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decisive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardiganshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glimpse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impression.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/st.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aterford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23db1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/admin-right.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/primitive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saudiarabia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_Commend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decoration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katrina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx_Update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probability.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/browser/default/browser.php?Type=all&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scorch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arctic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elhi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatigue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/336888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olorado.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godolphin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umatera.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronshtadt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndiana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pickle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21ex/jihe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slamabad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_dgwrite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wap/include/login.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juvenile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upLoad_bm1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118118.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1100.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chairman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connstr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nonsense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/023110.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodgson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aju.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubrovnik.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neckrub.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fearful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfiletemp_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trunk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/share.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13501976064.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agnitogorsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1029.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up-to-date.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhmanager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/006425.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php_test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abuse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erthyrtydfill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1226.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buried.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/br.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forums/list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omercum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilepic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checksheep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0516.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/final.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estindiesthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thens.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magistrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joyce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/installment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hebes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/addnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/mdbcon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endeavor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/km.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uebec.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthyorkshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuz/z9v8forumdata/cache/eval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cowper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scotty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cattell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apporosapcurcu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/activepass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/free.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nurse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/YZ_Consume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awaiianislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retention.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pastry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carole.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/established.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ucenter/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/009121.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7788.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monetary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquainted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transverse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/MysqlService/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/din.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intermediate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search/advsearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turnover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webconfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/member/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/software.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ammerfest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridicule.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imaginative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steadily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ameroun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consumption.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigbrother.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tinman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neglect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/Forums/admin/admin_users.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/openhagenkcupcnheigcn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cameroon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iddlesex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/se.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/city.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101325.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touching.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_help.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bayard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_subject.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/determination.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/various.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplied.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/starting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applaud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reunion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omerville.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/qzyvdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/account.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curmudgeon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increased.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recession.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stream.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rolled.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smhththt/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/another.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1210.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aideng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commerce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jomishop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornwall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?type=all&connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woolen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lcwnecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/young.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/64cadiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ienna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weeping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0205.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/ubbcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assistant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sieve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smiles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malawi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5188.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_badword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/mailcon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izhang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u2lpadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/showthread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorites.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trembling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assured.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iisstart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shit-head.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verbal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/500607.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UpFileSave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/operational.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guyana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/selection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firmness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/features.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grocery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penetration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldridge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tremendous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/schat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/punish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celebrated.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/indexNew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explosive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/uploadpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conspiritu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uyjjshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellowstone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guideline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/LoginAdministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/importance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modesty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0907.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brickout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iscaybayof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_log.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emotion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragrant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frightened.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/eval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dickens.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bailey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agriculture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archibald.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reloadforumcache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/err.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commitment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raising.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chicken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awrence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/yjqxselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_visual_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pirate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ieres.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smoking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2246868.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/edit_forum_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516885.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/admin-left.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadimage3_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objects.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/party.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail/src/read_body.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/must.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/because.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lord.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icecream.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/454978.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridges.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookForPassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abelard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardiff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ydxzdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwroot/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortune.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appreciable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage_logo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/related.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downstairs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragged.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attlee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/6k.php6kbbs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/namely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symbol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/28.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjustable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/command.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrangement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assemble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authentic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/category.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Challenge_Scan_Topic_issuc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/announce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrdarja.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/will.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destruction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relevant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shangye/user/register2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catastrophe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlet/count.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimension.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excitement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ombasa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Saveannounce_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112403.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/h6aodigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclination.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eijing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erika.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1230.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzskempireserver/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangprabang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oganmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retrieve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/417857.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experience.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/editor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cipher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_postdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drop dead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/smilie.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emergency.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighteen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3445.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attractive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tinoco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approaching.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criticize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/mainfunction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pudding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toucher/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urchin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin_style.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/little.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prototype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintghdhgfb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forsake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explanation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/yesitis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ornamental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/9ff0diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Product.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/mail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_BookPicPro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tago.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bearing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webedit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilogram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadhead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allocate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmedit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32167.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/push/viewcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukualofa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/universal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/al.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unilise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fringe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/might.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/ktiprigister.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1l4adede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penelope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/readme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitchin'.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/#ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imbledon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodjob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/novel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19444573.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conflict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uching.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/families.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/praise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initiative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trolley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndianapolis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Challenge_Scan_Board.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turtle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beryl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmpc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caipiaobocai/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osges.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dusk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/past.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_del.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scientific.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onets.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmansea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weihu/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blowme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19591119.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Member/FileUpLoad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51930824.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulgaria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileServices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/iissamples/query.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/savepost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/DB.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jump.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbinfomusic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/csaxhonker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ncahuasi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/idex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/th.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/vztiselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buckle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stepped.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustralia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs6.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveannounce_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boardmaster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/212307.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mcvgadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paste.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/learn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatterton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warthog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/133221.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surround.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sparrows.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maggot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accomplish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_/login.php.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trivial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_count.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boke/data/dvboke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/non.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deluge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/select_soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2012.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/induction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlawrence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mritsar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toosilly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sub_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuz/forumdata/cache/eval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larkin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aressalaam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amaze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornelia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experimentally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilinhot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostriverrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kristen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ivory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadclass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actually.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q49padmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/13.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrienne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apparently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lostpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steph.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/govern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soccer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conjunction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wedge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falkner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/41x6digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enrol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batcomputer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/edit/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hendrix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/163101.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/041130.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anduan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dubious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/existing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lsgkplus/infosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complicated.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0421.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lookuppass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/special.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/m4yidigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/objective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspension.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/508509.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2587758.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patch/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oluccas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Fl_Web.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suncion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fellowship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bcnydiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zenerdiode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glamour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billgates.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickcock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ox.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/push.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amabel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pru9shop/npsout_reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/islands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_AdPia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/db_create.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indwardislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eshawar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abraham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worthwhile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexnew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhxy/data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prettyface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/158.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eu/forum/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/components/com_zoom/includes/database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engineering.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utilize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2324079.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etnaetna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiriqui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/uploadphoto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ability.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jglrphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ab_page.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/micronesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intermittent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ministry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ussia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alween.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Dv_GetCode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/delete_all.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gravely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuck-you.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abandoned.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pardon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kettle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oole.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awesome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/27929.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alberta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/wrtxcnshop2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortsmouth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feasible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deprive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/some.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assign.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebeef.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10952.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunakea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erbyshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gymnasium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpadmin_a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/#tyqiyechina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precedent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hampden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2610.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smaller.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/online.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/success.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bull.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oledo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/491111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00427.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcweek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amherst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztdvshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emptyheaded.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/win95.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilecasestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breeze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vt_bin/fpadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escadores.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avarre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/c99.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiffany.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evacuate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23tyqiye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countries.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3619.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achieve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/widely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/job.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/nsclass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maplesyrup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listening.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/fileupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulousc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0069.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/procedure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranscaucasia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info/zcfg/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jupiter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brokenheart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/data_8esky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login-admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/segment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telecommunications.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/video.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridgetown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/webshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/questionable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philosophy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileDown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleanroom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/segregate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/53999.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upload_bm1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_boardsetting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/SAVE.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfactory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decrypt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beecham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/australia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/75.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/288126.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rengganu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradually.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrifty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/birthday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user_modif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/production.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henderson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/botswana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/counter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chklogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ualalumpurkwalclumpuc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/289298.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gldl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alifornia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectrum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anweng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notwithstand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2257995.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likewise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2200362.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ollywood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ehavre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/savebook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_messages.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/informed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5366.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monopoly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/300.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadyside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suddenly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/admin/ver.txt\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pork.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disregard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhgbshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wqgqshop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accord.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tariff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go to hell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grateful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pgcgbbs/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aggregate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cayuga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexander.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revolution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilbert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontevideo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bunyan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whisker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/il.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brewster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gracious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/which.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aunt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/352354.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/step.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanuatu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunther.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/either.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contents.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dtest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/read.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greeting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spaceman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makemyday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/34o6digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EducationManager/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vernus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flophouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageadmin/managelogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anben.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/star.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enverdenvc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBases/%23%23%23fdkjgzschool.V2009%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/47.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alzburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inevitable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slept.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dunne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exkndigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cholesterol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administ.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particulars.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuberculosis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hacker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/654321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/base64.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osciuskomount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonzai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akdstone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorilla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interested.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amiable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inghai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uvalbard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displayed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imarron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prospect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfortunate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/days.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldcoast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000001.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olkestone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/essarabia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optimism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56682126.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interaction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zinfandel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threshold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talinpeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1303.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_dialog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanliadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bibliography.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/krista.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ictoriamount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robotics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/RayPost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login588.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voyage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easttimor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rpington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reputation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gb/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittlemissouri.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yodude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x0b9passport_client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/future.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/users.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register/userreg_setp2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/booklet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olombo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/browsepic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acct/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcutta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcohol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gamedata/aaddsfedsffdsggfhhdf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inference.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aincountriesandcitiesinthew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anita.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuttle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lawyer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proceeding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conrad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/797979.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addicted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermany.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/season.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pluck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klahoma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/25.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ql.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haircut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adridmcdrid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mbria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/313131.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndizanandizhan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/et.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aramaribo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/p/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiledown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6031231.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confession.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nourishment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phenomenon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akaposhi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tavanger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede/include/htmledit/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anceng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/white.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pondering.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigjoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodgson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/spzs/zs_save_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samoa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_photo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wild.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserList.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opponent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elangor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/user_getpassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gained.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin-login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_check.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/36.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/predecessor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1208.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achievement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seccode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/615112.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_product.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ones.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rsdydiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underground.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Articlelogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embroidery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/about.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funeral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geography.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hero.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quotation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astonish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kimberly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llinois.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_user_do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elevator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwadmin/a_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vlsi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brenda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disposed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilebanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/environment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/jlrhservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/percent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antenna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guidance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abracadaver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bentham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_t/include/find_theni_home.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/msasusergroup_01.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_flashx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ensue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hhadmin/up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speaking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equipment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumtree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz-top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prescribe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concerning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/childhood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/admin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raleigh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merciful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/mm.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolcool14.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slovenia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/lygofa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/op.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leveland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chosen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp_upload_image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/member.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/071188.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aque.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112121.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/challenge_mod_pw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/john.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abandon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marginal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/browser/default/browser.html?Type=all&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/else.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stammer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warmweather.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master/ewebeditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cultivate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prairie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cork.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coefficient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christiana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rumour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distribute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/glossaire/glossaire-aff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fishers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/window.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turkey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede/sys_admin_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hottip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faculty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uyana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cjcx/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prediction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adura.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anastasia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntilebanon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xhzkshop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digg/skrmdigg_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/londike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galaxy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1963.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/optional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulysses.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_updateuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/551236.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iborgvyborg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turnright.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appleii.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/respectable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oldavia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/DEL.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathleen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52zqdb2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridgman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topicquote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/custer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedata/%23oyaya%21news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eohxcounter/maker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nephew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58745621.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/yxybbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/userlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwqacomment/comment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inertia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repression.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uruguay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oncepcion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnlogin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww/mmxt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ewebedit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13601807511.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjbpbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/name.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23720505qazsjroha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opensaysme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/335908.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olumbia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smooth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weller.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminmember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/px.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sausage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passion-contact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/dama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iredell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omersetshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/230933.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/588688.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beautiful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23wrgkcnsmsj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/170512.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ietermaritzburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consequence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newkids.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deliberate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luggage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nhui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radiate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intelligence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin/Database/%23tourdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/functions.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59238841.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmail/src/read_body.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wholesale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/473880.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src/read_body.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorrow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compensation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_batchlink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/20618.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skull.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59175528.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birbmysql/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Admin_SoftInfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/euta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proportional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartridge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kidnap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aotomeandprincipe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/rpost_do.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balloon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdoiregister.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/many.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bananas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cream.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2214.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correct.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/261200.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mighty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myweb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getlost!.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetReBoardLimitedOrders.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SEM_User/admin_php/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/djamena.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/martin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denmark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authorize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precision.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52982121.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vibrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileCasesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uganda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apartment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/mydownloads/viewcat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gesppma/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloomer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunasalad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mostly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esmoines.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lamination.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfactorily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estonia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/122872.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function/uploadproductpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orsetshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9g42shell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saintkittsnevis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lengthen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chopsticks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hannelislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbseven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yijuhua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_address.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glyn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/durrell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/Zzm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yinyong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/01513134.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gotohell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortunate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbados.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deviation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/503029.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justification.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eileen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/283300.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azbekkasbek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nofun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_fun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadAttachment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okyotcukjcu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arjeeling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0705.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seemingly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/blfvdigg_frame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niming1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8ASPAdmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doubt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/write.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/property.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drinkwater.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cracker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/ewebeditor1013.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filesyst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hilda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor.phpid=x&style=standard\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kelly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223616.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/gjasucinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shorthand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comstock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dc6xdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ho7fdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elgrade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1088.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_loadskin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_jsSearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metallurgy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrgoodbar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash-show/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/sumxinfosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incentive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rarat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sbxndo/reg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/Admin_New/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/limited.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilepartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5839.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/24.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/powerful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henyang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acaomacau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fouryears.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esselton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lecture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abdel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bathroom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileServices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007/admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spectacular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_mb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/older.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pleasing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halesbayof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bmp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1130.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nha2admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/219812.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/focus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peanut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/z9v8login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oronto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/times.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0604.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shining.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eshed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enghu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parameter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xiaolu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jungle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cather.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upsoft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30289.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eewatin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classroom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shitfaced.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itwatersrand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/128626.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0227.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reveal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amneshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himself.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suffer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caidao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23sy%23wgh2008%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecuador.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibeleive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speaker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaufort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andungbanduy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/checkin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newusers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56789.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/composer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bracket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faces.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_sql_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adv1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/612087.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semiconductor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supermarket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101847.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfile/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gower.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ran.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tammy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lisp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olysee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoped.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formerly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/union.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/criminal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5712088.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23echuang%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_delete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asfq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messenger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadahead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaumont.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2nd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/er.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rumor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvlinside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frederic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/especially.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload_inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shujuku/shujuku3.0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slogan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/debora.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/copyright.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/i4yfdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newtopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emperor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thesis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli-tw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_h.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118925.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/child.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mozart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/660921.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changeme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11614.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outtolunch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1qaz2wsx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/29396.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffith.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginmanage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118340.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_delete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abeu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypasswd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/phpcheck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/385510.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/25020.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pickwick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/err.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyjkcc888888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1124.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soft_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gibbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200795.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i04cdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/art_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reactor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leopard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/pic/1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elanesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12259976.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illuminate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/forumdata/cache/eval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/define.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6130.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysadmin/adminlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ww/s8mmxt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/315495.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sufficiently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portnoy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concept.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/your.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thiopia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_manage.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_allnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0565.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trasbourg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/390000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oblog31.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encourage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1mobil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemanage/Manage_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faultless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sub_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clitoris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520520.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bourne-again.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21211417.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/091819.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontmartre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myself.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vision.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4th.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/619203.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguethe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pursue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pledge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oznan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l1ysdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soluble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/introduce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/047387.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/af.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ads/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nurture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blk0digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/336009.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emphasize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/godman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1819.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memorise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/218630.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kidney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attendant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artillery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templets/plus/change.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flaw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possession.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_6list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culminate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degradation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/envisage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/missile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/per.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servicesystem/login-admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32103210.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlconf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/howitworks/code.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitzjohn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/9vlndigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manger/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exotic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6k.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbourhood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declared.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutiepie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plugins/2administration/2groupd/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wives.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/bbselse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/bathupdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/mysql_error_trace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/04260518.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Link/upload/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123666.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/old.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirteen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interpret.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unigrafix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immediate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rising.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/338680.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/EduAdmin/Admin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/di.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ausanne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoarse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/edit_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netwolf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toyota.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/save_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manageNews/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anoverhannover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eatme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rectify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tomato.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonetim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andarseribegawan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/historical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalogue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123qqq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellesley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_DataBackup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anliu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/new.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/had.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prominent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/LoginAdministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minister.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0313.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/icon_lizi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resemble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/csc298.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/ERR.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loesti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hewlett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alsall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007521.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileCases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doyle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/helen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harassment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enthusiastic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mineral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/len.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguaria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ws.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uapse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/time.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_download.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/finish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_password.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhauwtralia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/bbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/102125.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/Editor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whiting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180371.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/511885.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gerry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uneasy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weld.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vivid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/less.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/150572.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angorgonio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drainage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atterhorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairyring.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/78.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eternal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irwin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_topicfilter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/key.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wither.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/c0nn.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ajia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xh_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wzgg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juggle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thebutler.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eldest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/margeaux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centuries.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcelona.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/availability.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbrrewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youxi_wangyou/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23WRGKCNSMSJ.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unongtahan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fortnight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glaser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poultry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/component.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smallcock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treasure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rondheim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nearly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheepdoctor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/database/%23tourdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sizenine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/growing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/require.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/journal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaaaaa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grayson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zwufmember/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onghai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classification.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hutchins.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boardpermission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acheson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staring.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_admin2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/o5qwmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubb/uploadpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukonterritory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parties.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/act.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freedom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opocatepetl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admintab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/may.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duncan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/migrant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prescription.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erlinbclin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/1ndex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barkley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propagate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ylang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.php?Type=Image&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/college.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/together.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impulse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/addcard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_lockip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pierce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121212.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsjj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upfile1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intranet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58868455.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbartonshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111275.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/pic/2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consciousness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/demonic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beardsley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snafu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/application.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/along.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/voice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ille.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unjabpanjab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/despise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happiness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/User/UserReg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/experiment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ss.cfg,ncl_items.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aineng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latenight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3020.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritishcolumbia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grieve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drought.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubbalah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/322785.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SystemAdmin/AdminLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_jy1001/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/port.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/39.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foobar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/location.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sips/htdocs/admin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raypost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thickskin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/tianzi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inquiry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfdm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/matter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rlpyshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/#sy#wgh2008#.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equivalent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/f0hfdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/admin/templates_c.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137303.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/Forums/admin/admin_styles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pause.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awaikini.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caslon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sprinkle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabba-dabba-doo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/email.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aderia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambulance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/331807.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/post_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prosecute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/village.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanfrancisco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/runswick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanfran.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sandy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ffaly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elanor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_board.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vaccinate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/person.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hutt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Mymanage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bridegroom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbbs%23dfllds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappeared.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papuanewguinea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/gzmgusergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mounted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/#WRGKCNSMSJ.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2fly_gift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aware.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123178.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shows.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dongman_katong/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login8.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/character.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/streamline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sniff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apology.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aricutin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unixsux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interesting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataCy/%23%23cyweb_cn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gaitskell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/230235.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/Dispu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foghorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/budhabi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remedy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/took.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/localhost/manage/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woodwind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodwife.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dixie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contemplate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uatemala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoyment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote/dsvote%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/528345.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elbourne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112265.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spirit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ware.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suitable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/upload_submit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imitate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/www/admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/z9v8upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/air-conditioning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surprised.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/michael.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mail/src/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13001270033.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribbles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/she.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22099.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8read.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadette.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word97.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remarks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farewell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Licence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gravity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifyadd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malcom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuthbert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraAdmin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123y45.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/adminlogin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hard2see.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/struck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/building.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/valerie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overhead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilePartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fastlane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SaveUpFile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proceedings.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1772603.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/january.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romulan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54719589.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wygkcnqywz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contradiction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/palm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blueline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBase/TCBBS7.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/AdminLogin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilelink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samantha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ddsdfsdfsdfsdf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throughout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/send.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deletemember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebanon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileservices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southafrica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/w.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/population.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/according.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ships.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/xiuxian/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extraction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/pass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibmpcxt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sightseeing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137024.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5877937.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminmanage/ewebeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kycj/kycj/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savelogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alembang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slump.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aebashimayebashi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horsley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamlin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/country.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1919.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radioactive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/299001.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/Admin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/delonline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inspire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graph.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ateshead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbernardino.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shehui/zongjiao/logging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Challenge_Scan_Board_out.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/reg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GOOGLE1bb9e40669bc959a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolidge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urrey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/function.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/92vrmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntanLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001942.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/410303.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/yes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analysis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/julie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/document.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shehui/zongjiao/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/621108.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminfile/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stroll.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prophet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clinic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sign.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jysgbuy/flow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/border.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_group.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoconn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recoverpasswd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honuor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somehow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upchuck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5208.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y1wradmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/petrol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/cache/aikai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/376767.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chevalier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3rd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2875.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davisson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exercise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omondloch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambpecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/buypost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3141526535832.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23zxdata.project%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/promotion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tits.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/adminlogin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustralasia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bravenewworld.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raisin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databackup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bosom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555608.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arabel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shakespeare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sportsman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apprehension.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8wr8myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/LoginAdministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincp/Template/popups/insert_images.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reservoir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_vti_log/_vti_cnf/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5223xc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wonderful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/logout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possibility.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_userModify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urbiton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/controlpanel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/red.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peril.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/m12aservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imokay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avaria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mechanism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111512.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0510cy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Southidceditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zeal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/junk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commodity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewthread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/massacre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/223005.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gunter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortonsound.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_from.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remaining.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expertise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/te.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysterious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fonts/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salmon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hole.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/saveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appearance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ring.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminindex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rectangle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11191006.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Qpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denglu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guli/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oracle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himbu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101106.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angliu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c99shell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stereotype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lgeria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpMyAdmin-2/scripts/setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/103301.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/FCKeditor/editor/filemanager/browser/default/browser.php?Type=all&Connector=connectors/asp/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/api/wlchphpshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntwerp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reign.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbseven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edith.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukuoka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/machine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/%23m_x%23data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plantation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/zhuce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuttle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_newscode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/descend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingkep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alphonso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/album.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/668.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_other.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ublin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/staircase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/partition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exponent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/james.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter/maker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disconn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/namibia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6yaqmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/access.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achlan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yutthaya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/augustus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23pet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hihuahua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andrea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/told.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourwheel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glancing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/513671.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/club.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ticket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gas_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hudson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/globe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/function/uploadproductpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eidelberg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swanassouan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anleng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illiterate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5291953.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/html/fckeditor/fckeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/312394.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dianshidiantai/751.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dapper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bamboo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alflbuy/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smiling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kernel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5980.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweater.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cudworth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/approximately.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/porsche914.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rejoice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wjvmdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utterly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endeavour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upwards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_asp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innocence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/%23wygkcnqywz4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plateau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unguessable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/chinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eicester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvbnm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowater.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Challenge_Scan_Topic_issuc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shepherd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkigorky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/napkin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/willow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigtoe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smalltalk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perception.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hamjebel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/145513402.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_group.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Dv_ubbcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certificate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gramme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/official.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ssuydigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source=/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2ir9myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/152395.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cantor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upproduce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/248634.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/import.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accuse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/influence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/velvet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moustache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uluth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lump.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/clients.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marxist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whole.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alsop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/df.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beauty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calvin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intimidate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanghai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/specification.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anthill/postbug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sardine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alawi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonljuy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_cy/zzm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/touched.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilecases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/bliao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/GetChallengeWord.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allpaper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grunt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disgusting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conditions.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinguish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atvia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fourth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manager/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_modify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/raypost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elgar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakthrough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23tyqiyechina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/flyh4t.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/104126.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/menu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orquay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/political.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/njou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beneficial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147562.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corrosion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sendpage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olverhampton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recruit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1013.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0523.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lqkfbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangzhou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Heike_Anquan/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weigh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxms/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabinet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/view/javascript/fckeditor/editor/filemanager/connectors/php/shell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nakamichi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sql.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basilix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/never.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadhed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dormitory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilogramme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metallic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1314.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haiti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/request.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ersatz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyingfuck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23wygkcnalibaba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erthshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drayton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabiansea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsxp/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appointed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms_manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/centimeter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007928.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hatch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forbook1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1361669.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000423.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/admin_price.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addcustomer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celtics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/college/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfiletemp_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wealthy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analyse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/living-room.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/169.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mr..php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ladivostok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/helps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manag_onlinedb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vacation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/410891.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carnegie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overcoat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbernard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrought.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coggeshall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land/land.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3436.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swamp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/upload/php/tskiupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obscure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crofts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resistant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vitamin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123098.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uproar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/%23database%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwertyui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/say.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/MODIFILE.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_label.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckoff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn.php.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explicit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/FCKeditor/editor/filemanager/browser/default/connectors/php/adsvconnector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joke/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elliptical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d/install.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/project/webpet/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bishop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randenburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbdqshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8dede/ruletest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/town.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xrg9shop/npsout_reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimg1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wygkcnqywz3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/User_GetPassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arrow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/connad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchestermaetistc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintained.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indjain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafellpike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meditate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/min.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/3pv6css.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/italy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1164.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthwestterritories.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gellup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/between.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2245910.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reg_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blunder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stainless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gkclcache/hack/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vader.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/Auctions/productmng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_subcate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complexion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tacforo/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labourer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/admin/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userdefault.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inde.asa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_class.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hack86.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/blr3digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0000001.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/skin/vista/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2103.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servlets/count.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dead-head.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1230403.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effects.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingyangmeishi/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tourselfer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ready.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bounce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select_feedback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/BUYSHEEP.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3721.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8digshell1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexbat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/_mmdbscripts/mmhttpdb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dial-in.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/508936.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fifty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mother.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addPicture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ko.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulmein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inforadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/encouragement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conventional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/generalise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onaghan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preferred.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courtyard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/blog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007Admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heavy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/loginadm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bates.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/badtimes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccentric.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ubb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marriage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101978.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dutt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/northward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NewsInfr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incidence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brandi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/CONNECT.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/228359.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yzskEmpireServer/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/MD5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/base.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56148488.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alternate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/155075.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpPhotoAlbum/explorer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cleveland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persecute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rossglockner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/manager/left.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frobisher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afterwards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/GetReAdData.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiletofile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1069.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/316318.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4265.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/5026myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ologne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prophecy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erchtesgaden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faulkner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileServicesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_lockIP.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinct.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/#database#.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/anpeselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/take5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waste.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uachita.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/add_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atifkatif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rattle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/usermanager.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syphilis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yello.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eiderdown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmaster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheese.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3776.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/udolflake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fairway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sodoff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/09021117.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darkness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russels.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfilePartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bargai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/TUNGSTENDATA.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uehue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neutron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohwell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edriver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_help.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51012674.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/user_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lipstick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/137233.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/po.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/238888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/new1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umfriesshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usr_n.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/edit_forum_topedit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makewar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supported.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aima.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kenny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifyreply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obvious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alarmed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tockton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/identify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345678933.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheeks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edfordshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kevin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iechtenstein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redbaron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alloy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310227.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/systems/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_Setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspcmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allied.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hxhack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbany.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huntington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classmate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capacitor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standardize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highlife.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c04xdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thigh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gonzo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uanghe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5th.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dcjsdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/sss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irghizrepublic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veronica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/message/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concede.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newmm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wimqecshop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connected.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groupshow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiffy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminuserlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photosave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upUserFace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thomas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/therein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nowadays.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lh0rpassport_client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gojumpinalake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/righton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retagne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correctly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/could.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presentation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_nupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comrades.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pertinent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/research.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/number1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/questionnaire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/connectors/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/functions.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chouten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twenty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/logo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernadine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postpone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pipe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SELLMILK.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opening.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opendoor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/product/htmledit/images.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/network_query.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graphite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ov.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magician.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuttgart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liquor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8qqhao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prejudice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/sys/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6014502.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/modifyadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/lbbs%23DfLLds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkuk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiribati.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guanli-cn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count/supervise/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeans.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/m_header.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chairwoma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hz@host!.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housandislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hysterical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ierranevada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jt18digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landscape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/became.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/saveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/changing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaflet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instruction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/list3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imberley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23fdaeg35@%23gds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includeinc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.bash_history.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appears.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/language.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/66ibadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/only.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbrella.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/success.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reckless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elvetia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23417.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pay_topic_postforumid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/229359.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_dglistall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blackmore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/career.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_uploadlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product/ADMIN/MDB/lennyash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_BoardSetting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accordance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esotho.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rating.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads/runSpamEngine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucqydigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degenerate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mustache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/220737.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/switch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/physician.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5807836.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rrawaddy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0846.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uznetsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhn-soon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/match.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/data/shop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frequent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/facility.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apple2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sponsor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Register/UserReg_Step2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uva.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrific.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_dglistme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tfdkapps/groups/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artagena.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_up.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adhere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/educate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handkerchief.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consequently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilepartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiku.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1965.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/balcony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/connip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reflect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ianjin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowCate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uannan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entrepreneur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/robust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members/join-now.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/uc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vengeance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0339520889.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/myfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receipt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logsys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phrase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/wqerf213asdfuqwenxcvudrtbdsfgasd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troops.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/332580.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodbye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auchinleck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/gouwu/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5180.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syslogi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssh3digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d6o4digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arkwright.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/202145.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oitiers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sometimes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accommodation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spelling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bowles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coincidence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hikoku.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/something.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hemnitz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mirror.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isabella.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/work.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_newscode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nfjgphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clifford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3/song.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/careless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/27kidede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideology.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/26433832.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/FCKeditor/editor/filemanager/upload/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/guanli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upstairs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/static.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alteration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uscat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tranquil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEdit/db/dbwebedit%23cc495898.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/upji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/webshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ougainville.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genius.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huckcheesea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characterise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/ucinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fowler.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flanagan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/66.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b60badmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southwest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/synthetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reviews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patriot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Profile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basically.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lately.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nukem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/methwick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1166.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ks95upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/typist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commentary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qkvnbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/woaini.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/testguy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/list2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arispaeris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zho.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/xmzydigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/closetopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.php.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strength.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/439114.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beulah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/royal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flavour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wasteful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignorant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10130215.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kesadmin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prefer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statistics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gallon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mrcharlie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpbb/bb_memberlist.phpsortby=user_regdate\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disrs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instrumental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23wygkcnalibaba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overhang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/granite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otanybay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vipuser_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ondonderry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/delete_all.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incidentally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evangeline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upload_3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leutians.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sparkle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jacob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advisable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/888888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doubtless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/503860.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/employed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Product.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caonima.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biscuit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/userlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yosemite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitedstatesofamericausapue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ragon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilmer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destination.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/absolutely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ihtfp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploader.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aardvark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prelude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store/stats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_ads.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_modif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/environmental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgotten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/FCKeditor/editor/filemanager/browser/default/connectors/php/xbihconnector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/My_eGallery/public/displayCategory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nvernessshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorges.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reaction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ironside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinburgh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56402130.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotlips.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/clearme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ServerInfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/l5u7digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_userinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eastman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uez.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affected.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hicagoikagcu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpphotoalbum/getalbum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lori.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnuemacs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hospital.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AddNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uteshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crabb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkpatrickmount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/y9i2digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exciting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/down_addsoft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbarians.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadFace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/Clearme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evidence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wwwroot/root/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/hack/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slightly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhcardina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/louis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftImg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112310.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compelled.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DbConnect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatsmokymountains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilePartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/scyd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldcuts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legitimate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12345.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yh63servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolkein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetReAdData.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/400.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myalibabainfo/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112938.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahiti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decided.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21400.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiguo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/d99.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guatemala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfilem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/call.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kathrine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/158160.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imagegallery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mt8kservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volunteer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter/phpinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leader.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/hate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oboken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinceton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aryland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileServicesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuller.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flush.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rather.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/og.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gladys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rivorkrivoyrog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mt.xinu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscommon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_menu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin_database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/over.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vehicle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thunder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/six.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/374373.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knowing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/members.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piano.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brattain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vocational.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1179.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wombat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnlennon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incardineshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appoint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40705177.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theresa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rush.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/mymodify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/trade/admin/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jibouti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nights.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/61131897.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loadtree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_vipboard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ot78diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoft/diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airplane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etpbook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastings.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaverbrook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/descendant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pmyupma/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/Edit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sem_user/admin.phplogin.asp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/species.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merchant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/install.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8uploadPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twenex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/when.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthumberland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pbazadmin/FCKeditor/editor/filemanager/upload/php/\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/z9v8ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/z9v8ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Editor/FCKeditor/editor/filemanager/browser/default/connectors/php/0.zip\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/z9v8ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/z9v8ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/women.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/admin-gl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/driver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/publish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/h94cdede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arguesasislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mischief.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constantly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quietly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regrule.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rodent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atowice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55912148.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gouge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dipstick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/investment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/250417.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/change_password.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latterycape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/reg_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ralph.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iverpoollivcpul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/138355.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ostonbostcn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ordered.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omoroislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aronne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natural.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasnovodsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upfile_Image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/save.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bicycle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/factor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9dydadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isaac.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/aspcheck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108975.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admindelete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/author.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eweb/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cassette.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiwei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages2/delete_all.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scumbag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysql.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cotedivoire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ChkReg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cherry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/web_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nodded.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memberlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go fuck yourself.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4489207.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pblog3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freakbrothers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/somewhere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recommendation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kilowatt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dedecms/dede/z9v8login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tremble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recovery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/1596.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23454.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdsd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disgust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hierarchy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inhabitant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brazier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expensive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peanutbutter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orderly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/210boy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ageng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/condition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geometry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airobi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1030.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vmssucks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assachusetts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bulk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/upload/uploadsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puppet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sushimastrait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evans.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armenia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hooton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chalk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/ssjga.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subsequent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isconsin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quiet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estvirginia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hyperlink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rectangular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/versatile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usenet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1019.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/her.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provision.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrelake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/181121.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/DQE_UploadPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitedkingdomnorthernireland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scotland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatdividingrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receiver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/land.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interleaf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newzealand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8key.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gongji_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plural.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data_return.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanli/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/showimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millionaire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yukyu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000311.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lingyitansuo/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/market.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_badword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superintendent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sympathy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerrie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erskin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webmail/src/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yx_update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/situated.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112654.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaaa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accept.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cookies.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4444.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/register_model.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/battery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/worship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down_picupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcde.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Admin_Database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/SelectPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/asp/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moban.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dungeons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oona.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proposed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/020900.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530730.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/universally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_h.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/receiving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/777.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thereby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zores.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage_backup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardinia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/measurement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pillow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jazz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slinky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skywalker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drawingroom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/324286.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pm_adminysm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/GetPassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olognekclcun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utlei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigdeal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eychellesthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rcbtcounter/maker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhibit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ertilecerscent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/function_foot_1.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incfiles/load_gg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/documentary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5995563.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmonious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assimilate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipxudigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/davidson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orneo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfortunately.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initiate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/directions.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/istula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/periodical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/workpiece.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shangye/fusionbb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerenter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/groups.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/077012018.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilanmilaen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_Challenge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coalition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/294003.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/email.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saucer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin666.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orfu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uincy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tntimysql/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examined.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carrol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sober.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transistor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dougherty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/improve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ives.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/width.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akodate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_adv_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appraisal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1127.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sboimember/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uangdong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taste.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/fun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/select.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/usergroup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raincoat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calendar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/triumphant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/xsx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bega.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23echuang%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Article/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dirondacks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indignant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/style.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impetus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubgzbbs/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/diqu/logging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retreat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfiletemp_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prudent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siteconfig/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cyril.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/093064.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/hpudselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2912921.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/select_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hanging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fruitful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wanting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virgin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/#fdaeg35@#gds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fighting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3610791.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/mlaqinfosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/papa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/136128.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/million.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mask.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haulagiri.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profession.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsokay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighbor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findpassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netizen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delaide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntofagasta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/xiuxian/logging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cruelty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/differ.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seaside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1106.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thresh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idnjshop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aaron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/388.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56721439.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/judicial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/baidu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book/inc/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/circle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysqlservice/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/like.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/565921.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/growl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atomic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/packet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ttawa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/primarily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/establish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileservices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he'sdeadjim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor_v280_free/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colonist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softcate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/law.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/166.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1/1/gif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_password.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anseng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/nautinfosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/50245024.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makeup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/he.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/homogeneous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ld.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorualble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs_adv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oninislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/admin_default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/431319.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileCases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnhwwdata/cnhww.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/york.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/ows_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_editnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/better.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_logout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pampers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1741.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sociology.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excuse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cozy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/converge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/sendmsg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/progress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/military.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/addmember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0228.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8key.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/malaysia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replacement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backadm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplieradm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weather.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anru.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wheresthebeef.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/dv_clsmain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/496111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ballet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trumpet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undergraduate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/config_base.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/51888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reject.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/named.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/1qp0digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relogin-admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pengwei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/important.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bicameral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/om.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hymn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kwadmin/A_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/savemessage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/changexx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_batch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ubeck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ledzeppelin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ristiansand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0908.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evidently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upstill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwindows.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23wygkcnqywz4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anilamcnilc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/%23sy%23wgh2008%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uwenzori.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contrive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ckinleymount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disperse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23liaoxd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abracadabra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rumqi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/holding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowReTopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0443.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analytic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/water.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammered.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/ygjkselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheek.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conservative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingapore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lens.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovosibirsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168602.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/purpose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaolu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paragraph.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entered.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scamper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upload_3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/map.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/es.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rachelle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileNewsPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/index_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bfd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ergen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitednationsorganizationuno.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neighborhood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/logout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/everything.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stole.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/highly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndcobbs/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_BookPicPro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calcium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bligh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070988.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modifyuserinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wp-admin/admin-ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bottle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/development.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/377227.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/path.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cms/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solidify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Commend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultrasonic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/keep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mash4077.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10130216.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clayton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latitude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uiderzee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/598.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzzbat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brothers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quoth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astonishment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/files/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5113.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/private.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/30wfdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/edit_forum_index2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/601057.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/security.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/dv_getcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dupont.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/high.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backwards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8passport_client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yingyang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/query.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xogsadmin/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaplin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tender.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dismay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_pwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authority.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fearless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/yishu/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_addnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misunderstand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/woman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/logo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/douglas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewardpeninsula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withdrew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/car.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currency.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/revive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/208.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Query.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rendered.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/GroupPermission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/258.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/principally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111113.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluminum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/too.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wokao/wokao/gif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsreel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/culture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBlog1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lintshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196438.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owaitkuwait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angju.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ganda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfiledown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henrietta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620053.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6661.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/already.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/melancholy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/safeguard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faded.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/is.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dwardlake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aucasus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_article.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cecile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uncle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/466.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turbulent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/block.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declaration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probably.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfilenews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlog_db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chamber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spacecraft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db_backup.phpaction=restoredata\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/modifypsw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/gpg6digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orangeline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resolved.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allege.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthernterritory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guan/guanli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/altitude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anaveralcape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/install/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aili.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eisse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/text.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6688.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/textdata/1/lndex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_adv_CONN.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mogul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/testdata/1/bk1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/07031981.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fertilizer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transportation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/board.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlawrencegulfof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tragic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akota.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/redbrick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/immerse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/without.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilsen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orrientes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/253812.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/justforthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dxxobbs/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eajbbbs/forumdata/cache/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unkirk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_league.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1964.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ola.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/back/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21072500.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sample.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superficial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ij.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Connections/cnn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/originate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comment/comment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/AdminMenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/druse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfileBanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aini.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethlehem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inferior.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/print/data_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hengdu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambrose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tadtshop/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fckeditor/editor/filemanager/browser/default/connectors/php/xbihconnector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cancel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hammond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/illiton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocaine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excessively.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editorial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620609.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unique.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3367150.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/370624.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regret.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lbbs%23DfLLds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_memu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scan/z9v8scan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persuade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/Ubb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56147882.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_siteconfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alahairdesert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2088.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news3000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilepartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capeverde.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuoming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colombia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ec.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56758040.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0608.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/OaLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoopie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ayang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nepenthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/internal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/innesota.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basedadmin/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1203.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexsheep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Qiche_Qipei/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_login888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/female.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netgirl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nouser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cpkqregister.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7am5xiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/wpskusergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zorro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shilling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/11111/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eddy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dilemma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cubic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminedit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hypothesis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongyangpjayjoy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bighouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idurutalagala.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/victim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fdnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deposit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chorus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eorgia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shangye/contribute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muscular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weaver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/activate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5251.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/advsearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userlook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6474691.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interpretation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/genus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/tmojdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oops.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclined.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigcock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/398203.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/linger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ydxzdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stiffness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faisun_unzip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gertrude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overcome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ago.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slipped.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dragons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iforget.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seriously.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/figure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/LoginAdministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0924.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileCasesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andromache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yours.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oulogne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SouthidcEditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alphabet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asherbrum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600707.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rieste.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batcave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangchun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fertile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stalk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assault.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amuse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discrete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calverley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thirsty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Templates.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yler.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adm_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expedition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anruo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resistance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/striking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dark.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merrychristmas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldwar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0227118.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eric.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortcoming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burbank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/columbus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontgomeryshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2400333.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sfntecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xxmslogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honkey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awbubuy/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heads.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/admin-left.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Challenge_Scan_Board.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cattle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ultraviolet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yroltirol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynemouth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/army.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/417814.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/aietdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tull.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convenience.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hicago.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/delete_forums.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1691002.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accurate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1201.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cheesecake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jfjfadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/266.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surgery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/api/jcssphpshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1006.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duplicate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fulton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewmexicc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concagua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aduz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subscription.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/web_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilebanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doll.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plaster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atkins.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orkuta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slovakia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Email.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practicable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/companion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/430111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zimbabweformerrhodesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caused.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/than.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/module.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictionary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aceng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msterdamshipcanal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52088.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12135.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_Dialog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonkers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dispuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lady.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialoguser/select_soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/up_images.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dexter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exico.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/best.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/topuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5747.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esaqsetup/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/83.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/backdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outbreak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/giauque.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221206.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windmill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dallas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/enda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilecases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/53082160.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrofula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ebheadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pws.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ycenae.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/008.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/class.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/product.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ggfb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/n.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paralyze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rinagar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/%23wrgkcnsmsj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jello.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/search/viewcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0081.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrestle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courageous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5601178.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/uploadfiledown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoenix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galsworthy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/031079.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uayaquil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delicious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admired.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priority.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hairbag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elemental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/360217.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121110.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/file/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/44170.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6023500.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234qwer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001230.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chaucer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0539.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sophomore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acblog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mali.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/numberone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/universe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mhbbdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orrkoping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/htmedit/db/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library/lib.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19423357.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ideally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mountainous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ournemouth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uppic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/close.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dbb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/08181215.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brazil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amusing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vessel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makepeace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/oask.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/128314.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ecatestrait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hemingway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down2003.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errydiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ozhmphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/induce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yitkyina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lmaden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dissolve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/federal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/070679.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/through.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepsix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lois.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aneurin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minimum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millions.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3147.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beneath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chocolate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/HomeManagement/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/historic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vinegar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analogue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools/uploadn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consult.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/griffin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decrease.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/q4j6passport_client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3727001.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telasrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Sousuo_Yinqing/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/ad_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohf7admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/tbl_create.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/521.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go away!.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0919.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/usersms.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/civilisation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temperature.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/userModify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bypass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/LookupPass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kirkland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managenews/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/33355555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrub.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Label.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inflict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kaoshi_zhaosheng/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/most.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileServicesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tlanticthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/modifyadd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilbao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/account.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicaragua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1020.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fierce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paralyse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1028.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tockport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ac.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collapse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ynn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/storm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softimg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortarthur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rishrepubliceire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fitness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_EditPass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingenious.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flakes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favourite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/normally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/apps/groups/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eighley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_c1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/ewebeditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/okosuka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/route.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/do/form.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/largely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abylon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/00860086.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slightest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/america.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showthread.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dodd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afhsdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/llentown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/621126.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darrow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1959.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obstacle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laundry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/147714.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/rigister.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0519163.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/product/manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/privilege.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhattan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harbor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edgeworth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edituser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prompt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111117111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/find.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/47840.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gauss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23gbook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arien.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/troop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/residential.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unemployment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoughtless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/upload/php/tskiupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itty-bitty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/show/back/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chkadmin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tribble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/successor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/datashop).php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/;lk;lk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eneva.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agliari.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/term.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atagonia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/master.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/21.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBArticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_Newscode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throwing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nroff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9th.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zipndownload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expression.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jumpinalake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminn/upLoad_c1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skeptical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/54.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheffield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hastily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowPost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harbour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foxtrot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvador.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chleswingholstein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_file.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1119.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strategy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/7d24passport_client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/top.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/footer.manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superstage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/553920.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inasmuch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/319683.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ni.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neutral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/underwear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opendir.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/believe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ava.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ulumuqi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinguished.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reduce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millimetre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthborneo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hungry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_productMove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin123/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfied.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info/admin/m_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/family.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kyrgyzstan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tajikistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tradition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/electron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urinam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/shehui/zongjiao/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/priest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inghaihu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/SiteConfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yemenformernorthyemenforme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bodley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itoria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incomplete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/integral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eternity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recollection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Guowai_Wangzhan/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hzyy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/direct.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tettin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reduction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/457315.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christmas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knob.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unitedarabemirates.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hadxcounter/maker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eliminate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cavendish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tentative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burnejones.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showforum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilenews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t80bdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ariebyrdland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackpool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0cmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/988.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attached.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divorce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8css.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_jsnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/help.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tratforduponavon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theorem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/basic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/present.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminopts/include/ban_form.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/substitute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eville.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/returns.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/258000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antiago.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/require/postupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/517688.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pblog2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macsyma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/start.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urbeckisleof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nasty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saabturbo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/funk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accounts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/admin_6list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amoa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingstown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/44.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/co.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upphoto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abagael.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuzbat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mybbs/saveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leusis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abundance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/base.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/139.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bubble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs/upfile1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meatcleaver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/declare.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ologna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4891400.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convenient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/yxmdselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daho.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emerald.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadOK.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/walter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/day.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irving.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/applepie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/webconfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hnompenhpnompenh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mishief.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/known.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ztaccihuatl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/318300.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/animal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bsd4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seaport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alpha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/platform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Boardhelp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1206.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bernal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nepal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thoughtful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webeditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/dm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yonder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supplement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy/flow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_other.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book1/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php99cms.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bitterness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loemfontein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/32.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/randteton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3699002.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beheld.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/319108.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alternative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kugyadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1228.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/9.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131420.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/validitycheck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/participate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jbqvshop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beaver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mainland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blessing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmagh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stocking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netboy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_logout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iangsu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admcheckform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/showfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/fckeditor/editor/filemanager/browser/default/browser.html?type=image&connector=connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apnsecshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/froude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorothy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ungay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/year.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruguay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capfast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Myplus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/housman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/county.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/code.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elkirkshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carmen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s_image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olcanoislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sought.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/net.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/db/&23ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disabled.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anube.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cereal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/030289.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ourencomarques.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronounced.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ranch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/misogynist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrutiny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slaughter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_Image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chesnut.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1208123.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/similar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/johnny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aritimeterritory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/endicott.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/30.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sodium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crookes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/format.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msterdam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tonight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonsense.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enbighshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leaves.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boniface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/531127.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0x5emyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expansion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oliver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anbi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/z9v8User_Reg1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_styles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/data/%23down19827.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/precaution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrenaica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bryce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/425400.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intersection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_New.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/403114.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0217.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_browse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/05201212.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vietnamformerlynorthvietnamf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roundabout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shoes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intelligent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/271250.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/YxBBs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sumbura.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whenever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualification.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uxsourcesmont.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/579300.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umbuianmountains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mingren.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skeleton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2827788.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/include_show_messages.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auru.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/politics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/borrow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waterproof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/completely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/froshmeat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fabulous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocarno.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forced.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/office.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amatave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/80.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileDown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/530527.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/21822.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/wishupdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cmundigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/henceforth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albany.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asaycmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/momentum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inherit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weenie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manager/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmASM.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_go.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whitewash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vigorous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2282662.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/information.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edit/dqe_uploadpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lemon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/conn.php.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminadduser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts.phpmlog.phtml\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/calling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileNewsPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stated.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saturate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yingjian_Zixun/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refund.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurricane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilpin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uffalo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gasawaraislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/RecoverPasswd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ppbd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goonight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gwh6digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mydata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quota.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evaluate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xerox.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileBanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/library/editor/editor.php?root=myhost_library__editor__PropAcce_string.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fixed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1950han.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mystery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fanny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_admin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inFile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/make.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/versus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileCasesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veteran.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/201633.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/later.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ching.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexandria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatbearlake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toggle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plug.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batmobile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexdefault.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hardship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/txgfselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzdwpma/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_backdb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58460532.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abbg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images/bpuebbs/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/needs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aldous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isherwood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindelete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/hei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/copland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dictation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dowson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/week.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/untie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/face.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/affin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vorycoast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boywonder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/cache/longsky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/boardconn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123456789.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hnrxm_header.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0903927.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peninsula.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_count.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_files.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metropolitan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/murder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnvjshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3780.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pull.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webDefault.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/xiuxian/youxi/errors.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/participant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aguo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/working.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/copy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drillpress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/filemanager/upload/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uizhou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/governor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripts/tools/uploadx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r12ydigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshow_menu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/55.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/government.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/WebMail/mailattach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telegram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alencia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/razil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usemanage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/festival.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artificial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truelove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sooner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frances.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transparent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_postings.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0613.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/gpyedit/filemanager/browser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brigitte.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hrlp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/these.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0798a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dining.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/servu.php/bbs/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addlb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileservices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/sdk/asp/docs/codebrws.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/constituent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/primary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/madboy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alvin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/healy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_lockIP.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/.php.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234567890.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relativity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adagascar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dyobadmin/edit/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furnish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exchange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/siyu/manage/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/count.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_notfso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/austin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pnvpbbs/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uptohere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pinkfloyd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lymouth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getfucked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiuyt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2077passport_client.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrenees.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docmgmtout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/on.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414812.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/divine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anque.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provisions.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coolman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/db007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0727.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sqlin/sqlin_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1221.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/common/db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blaine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rmenia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnmk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/getpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/52330.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/161616.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/betray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echora.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13801705365.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peculiarity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unmoonlake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/well-known.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/period.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cognitive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fidelity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ames.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tract.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/direction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/root.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atandt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54tq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/talent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acquired.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/often.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unpaid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_photo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/draught.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintenance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/eWebEditor_v280_Free/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assignment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1354051206.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/knot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/ewebeditor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UploadFile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alike.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alagasyrepublic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoyle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sending.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simpsons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/lhphusergroup_01.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opensesame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/postal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/einstein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humanity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dr9xadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/come.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dfgdfgfgdfg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increasingly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkuwait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/32767.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gather.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irkcudbrightshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/subway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1016.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/default_header.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0916.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kleenex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vaticancity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sod off.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/legs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/killed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/326526.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/windows.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houdini.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/severe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/src/options.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/535232.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prestige.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tsing-tao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ageubbs/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admindel.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/juang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l-blog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/sendemail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/steddiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ochester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lively.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shopb2b_sysdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appreciate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58435738.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favorite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characterize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/aspshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tourdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3800cc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sleeping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/017009.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deforest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/they.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cody.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/313348.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mustard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_vipboard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/172263.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminuserlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mypassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/increasing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tailor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ukon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displayboard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/php/adsvconnector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bolt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/lbj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiledd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spwuupFile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ditch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftView.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration/system/upload_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remarkable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_forum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inde.asp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upload_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anningisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/von.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southidceditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/squire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expected.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethnic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/b_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebAdmin/eWebEditor/Admin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up/upfilea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/screen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/2oindiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cripps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin1/Admin_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/away.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kitchen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_getpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confuse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/an.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin/1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/razos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accommodate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cokeisit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rasnoyarsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cease.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/394576.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1357.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/healthy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fasten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tabulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin/vista/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aseru.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userface/Adobe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lavatory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lieutenant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hazlitt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realfriend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobbie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/051300.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adjective.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clutch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erseyside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileNewsPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aruo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intraAdmin/phpmyadmin/db_create.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poll/textfile/info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seated.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yrshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diamond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/running.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bucket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nynuecshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/policeman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ts-upmdb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impartial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/automation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragrance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminpassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_boardunite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/well.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/ad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctorate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eilongjiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hisarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/candinavia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile-flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/and.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/growth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instruct.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/today.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/height.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inuiju.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broad.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthplatte.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/desirable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quiz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scripture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashington.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus_adv_get.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anni.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrub.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hickok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/littletoe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dminadduser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pedlar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/023000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vpopmail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nursery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizhua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/counterpart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chesterfield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beammeup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysConfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/merchandise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mall/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168518.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewvoters.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfileservices.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilebanner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akhalin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/save.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_logo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0425.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/november.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/courage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/webeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yfed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Product/manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadowy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iamimaiaemi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/long.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ph.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/symptom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foreigner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daylight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bm/chkadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/art_manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/011379.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alveston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yahoo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tireswing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13701845614.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strategic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/possessed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/t00ls.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microsoft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sysuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elantan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hawnee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/monsieur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speculate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/halleck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incident.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/early.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555333.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regarding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php-backdoor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzchn#da2005.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boomer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brochure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Southidceditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faithful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weapon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/234234.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5174841.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/auction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Refresh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/their.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boss/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebedit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SoftView.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newblood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canvas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aernarvonshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disposition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8wi6upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haetianalps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/picup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sport.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dumb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inorca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/propeller.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reaterantilles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolenmts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/base.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scrap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/019490.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earlier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/jeucdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angmai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlslbbs/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_updatetopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200020.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jagger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undermine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dede/ruletest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mylink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/424888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andalay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wendy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elebes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grandmother.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/football1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raqirak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocuspocus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/g_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abcd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corpse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bbs/template/admin/notice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepthroat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200291.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ernest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iigata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/230711.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/SysUser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1dppdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1hmmdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/law.com/admin_article/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/region.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/geeddigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solicitor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firebird.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ichigan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horror.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600902.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_jsCreate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repeatedly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/login1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bassoon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/senseless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ManageAdmin/ManageLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornwallis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shabby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/x-ray.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/british.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coldshoulder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aika.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scarlet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/font.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adler.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1204.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microscopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disillusion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angaparbat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/virtuous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ada.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fundamental.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/mm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/222222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exclusive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utility.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/darwin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/008421.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stacie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatroom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwowdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/but.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mycroftxxx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/you'reok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/js.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vanity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1558.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2003.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afflict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beecher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfilenewspic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sell_list.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/violinist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ceased.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mountains.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2224884.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins/upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_mod.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeffery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sakacusakc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/embassy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Shop_Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3251093.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/held.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/386502.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirmation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/falsestart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bench.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110110.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/changezl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stitch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/461139.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/346900.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittybitty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accepted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocacola.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secretary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/relationship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cerebus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/muddy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contribute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/above.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/san.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/findaccount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licante.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ae.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34073407.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/z9v8sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sp5rdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irginia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regulation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philippines.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doofus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ems8digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/birrell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topic_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/airokaicrcu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go jump in a lake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/001014.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/super.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dlceshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shorten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drnrmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exaggerate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/against.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminMenu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007341.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_name.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mortal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/msm/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abandone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlborough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/251013.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faraday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stoop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tooth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/what.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/earlake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oodpdede/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/api/phpshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucatan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tangerine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baystate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/observing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/longer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peripheral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nieper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/je.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tech.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oovhshop/api/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hersey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/islam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deadline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playing.php/common/db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13601614162.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/summon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dudley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sxadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incredible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngkor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/listsp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niece.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennsylvania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weburl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rought.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alma.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pub.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Char.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/uploadfilelink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/delphi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/mymanage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/economically.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zm_marry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/menu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etsamo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comparable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harris.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6585.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cache/honker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/particular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3450381.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiritusanctu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/movie_3131.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapidity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hall.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2186.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exactly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ignorance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/christ.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/managerlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/insenz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anduo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobqshop/flow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engineer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thereof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortmoresby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nucleus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diversion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/handful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/villa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exicocity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerri.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edithtml/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/branch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comfort.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discriminate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarrel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/su.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/probe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drummond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/three.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youngster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jessica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spoken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slippery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seventy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ekong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/team.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/effie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/116729.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semperfi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regardless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clemens.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alapagos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interrupted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugusta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ermont.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_ProductPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amelia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/from.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200540.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kerberos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196588.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apparatus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/say.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_iplock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danielle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/math-cs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obago.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lkjh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c4c6diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinwenbaokan/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/masscomp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/challenge_scan_topic_issuc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/differentiate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timetable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whither.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/me.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/310113084.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wen_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/regenerative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuddles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eipzig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shrine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explained.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esserantilles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_forum2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/02omdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111674.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101012.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perhaps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byrd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_suftpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shouji_tongxing/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loyal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icosia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competitive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deflection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blanket.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodrich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digg/qvkodigg_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/situation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overwhelming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flying.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indulge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stoniaesthonia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/biology.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatbritain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_link.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58434.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/banks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whirl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_logout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunasandwich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ftb/imagegallery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entrance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wokao/1/gif.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artinique.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eopoldville.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expectation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trader.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lucy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/quickpost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systems/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujumbura.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hither.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0713.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1122323.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marked.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/Challenge_Scan_Topic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mongolia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friends.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ofeoadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thief.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/implicit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anumberone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guanlilog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/content.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arsawwoso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/domett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mikoussi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceptional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ungfrau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telecast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headpic/upload/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/findpwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/closely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yellow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/russiaformerussr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/microphone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eunice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/e/class/checklevel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bertie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plastic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/labama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixtynine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Default_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orwich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/napoleon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileCases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincn2008/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carriage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookpic/newmm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consequent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pressing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eWebEditor_v280_Free/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heiyubbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cathy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uppic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontpelier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/listcard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bribe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bagwoman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/admin/save.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jakartadckatc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forumdata/cache/z9v8eval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whilst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tools.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eye2007/Admin/Admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/watchful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gvo1digshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boundary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samadams.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bedford.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alexander.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accesstopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ovascotia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proximity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s4u6install/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tul5myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lunarlander.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golfer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donovan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/straightforward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1588.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rankfurt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqqodigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cripple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angalore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/admin/Select_feedback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_recycle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submerge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iflis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/simplicity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stock_getdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reflected.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodyear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/62118100.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incFiles/load_gg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bacchus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/index_manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/standing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginerror.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aigun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/literary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/lbbs#DfLLds.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappointed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vasant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3697775.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vo_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/correlate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angleng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nickname.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/libraries/select_lang.lib.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contained.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/articleinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chitty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/url.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartoon/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suffering.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile_style.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telnet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/cshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upload_SoftPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_bm1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apuanewguinea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angchuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nufidata/cache/t.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nbarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/albania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5578.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/injection.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orientation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/59124309.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contempt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnitude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/410901.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ima.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fileup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outcome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/lbvbdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56787.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/takefive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ozone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utherlandfalls.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vault.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chldrn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dogfight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocosislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arszawa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/riong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/air.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_head.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600305.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/select_media.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22904600.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exception.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/submarine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0001000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alaccastraitof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acid/acid_main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Include/setting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/utensil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbsnews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/level.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/214789.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fighter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angban.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imerick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webdefault.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/components/com_manheim/modules/main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conductor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/buygroup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigsecret.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overlook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/batman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s8data/online.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puthtml.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annheim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/browser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/db/ewebeditor1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nelson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sombrero.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/game.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spider.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xinu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unzip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiyuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hattie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anxian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yasaland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/length.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/551688.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fascinate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rival.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/male.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uwaitkuweitkowait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/x0vydigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bruise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/433263.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flora.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ifeshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/book_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AccessTopic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forms.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ht.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eveline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/feed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/magnetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/manage/userlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancestor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ratislava.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Database/tianzi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dalton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bigtits.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athlete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paraguay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insignificant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tot_dabase/#tot_news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geographical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/recognition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vod/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2112.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/settoparticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/images.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/upload2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Upload_Soft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/mes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/links/links.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/184809.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1349.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horatio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6th.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nationality.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doctrine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ask/api/ihrsphpshell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flannel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/began.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asmania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aged.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3407.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preparation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epidemic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consideration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hopkinson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landmont.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappearance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iceland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyhow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coverage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/archives/415.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0214.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leroy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/42214221.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huringianplateau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enangyaung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esternsamoa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/info.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/measures.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/piece.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reciprocal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commonplace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unreasonable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orontotcrontcu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tags.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bodyshop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devilinside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gosling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fluctuate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3015.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/skin/jaemanstyle_s01_orange/setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/320219780905777.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frighten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/button.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leisure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/withhold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dequincey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/baruch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2906.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sensation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/athena.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hogarth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crisp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/152433.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abundant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/viewuser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin.phpadmin/login\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/322167.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_/login.php.ba\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interact.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penit-admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wap/include/z9v8login.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cfg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vjday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/connections/conmx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lackburn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/119524.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/wish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cronin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/station.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/430301.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/buyok30xdddasdf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aos.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/data/gb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oubkal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/039077.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artistic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybjdphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ad_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uboea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/decode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decimal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roll.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_backup.phpaction=backup\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turbine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mexico.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmarino.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/devil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ghost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distract.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haggard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persimmon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWeb/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enormous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Safecode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.phpupload_other.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cotton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/phpinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/upload_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/ubb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/onion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gucci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ujian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndonesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pj6umyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fckeditor/editor/filemanager/browser/default/connectors/php/tmuyconnector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsupdoc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/timely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hays.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/front.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clients.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/doaux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unjust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owns.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/activepass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/down/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edison.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musician.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ennssee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/ad_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/father.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inevitably.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/open.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5841321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/listface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arkhammount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hangjing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fl_web.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/Forums/admin/admin_ug_auth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gobang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/server/adminlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gould.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manage/Default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gatt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/line.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iribati.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/glider.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/excerpt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleeping.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oceanography.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elderly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/308318.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Up_goodsPicPro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edwin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administration/login_form_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portal/administration/userman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/homeFunction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capsule.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aifa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_UpdateSoftNum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2489.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mykey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_db_backup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sorts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patricia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roufadmin/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucknow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j3akwish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flask.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/366.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvboke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stagger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wants.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/persistent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astonished.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angoon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/071698.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8AdminMain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forster.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/editsave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guilty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/speech.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/fd0vdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/second.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oask.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buygroup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/132333.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andjarmasin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ientiane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gorgeous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/template/admin/notice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/includes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/under.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arneypeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imperative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/space.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aabd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/559104.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/notation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6crwdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/survival.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/livenletlive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photoelectric.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brightness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/np.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/553600.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icronesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/youreok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variety.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opera.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deduct.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/traffic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presents.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/puan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burrough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/larger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56086945.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_OrderPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/controversy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131415.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emavend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dreadful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginadministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/still.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natolia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deformation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exceedingly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/que.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ef.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iangxi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/osangeleslosaendiliz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/upload_2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/520530.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/that.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lockout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/toplist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/global.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/profile2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22222222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfilepartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/presume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewcastle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/his.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showonline.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/topic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/history.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moreover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/locality.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/007007.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zbekistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/go.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/odqmusergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discuss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/does.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jaccio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/truly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyml/upproduce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esuvius.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloomfield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronzy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elsie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/AdminLogin1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54740442.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/principle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ervisbay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/54888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radio.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1227.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2607.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sdraelonplainof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topicedit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_modifyadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/core.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burkinafaso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/Select_feedback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules.phpname=members_list&&sql_debug=1\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ja.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodevening.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/167761.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diagnose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/houtai/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortsaid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/333333.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anguan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elastic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mightaux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/zm_marry.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reform.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suggested.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/backward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perpetual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5829.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compliment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspxspy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/network.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incoming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overhear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hallam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clyde.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrinkle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vt100.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myanmar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/more.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/usermodify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eagerly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bodies.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingrossshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8zz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3377.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shannon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/necessary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/WebEditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Hradmin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/izhnitagil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pamphlet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/292231.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/showmsg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pretext.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuttgart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uhehaote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outlet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/myinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forsythe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/88.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wygkcnqywz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/andorra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/s8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tickle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hostess.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index_admin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/department.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cosmic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/site/eg/source.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/super.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enninealpa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/616161.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yeah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clerk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/luntan_shequ/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behavior.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/z9v8infosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_softlist_subcate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/extravagant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/skin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/court.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usseldorf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syscode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/z9v8config.inc\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/passwords.php3\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/favor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/memberlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loginadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sulfur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40917306.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminCenter/AdminLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/databases/wygkcnqyhtml.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wealth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/jisuanji/ruanjian/fusionbb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/replace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xwzx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atavia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tobacco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/090909.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sem_user/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/jhConst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiletemp_pic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upNewsIMg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruthless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cafeteria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bosanquet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/74.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23sql.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/987654321.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshow_buy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/expand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adzhikistantajikistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/function.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhaust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/020618.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/markus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igali.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/zip.class.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/good.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trapdoor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiladelphia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/000102.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/costarica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewhaven.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z9v8cmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/personal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idealism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/insk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/271525.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/likely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gl/ewebeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/messagescripts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cteqmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/default_default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/programme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orthcarolina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221722.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/xiuxian/delete_all.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dpmwbencandy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/101223.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tight.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tunisia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1224.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgetpassword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bookem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quatorialguinea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0202puma1971.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesterfield.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dolphin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_unbackup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/wrtxcnqywz4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angjie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/principal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/031164.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auphinealps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/spqcmysql_error_trace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/big.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flynn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dk2aadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911sc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hosanna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zzchn%23da2005.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/empty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_other.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibesti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cutdown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clarissa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forum/reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/111168.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pupil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/radium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/terrify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/psychology.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/broaden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/555888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laboratory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attract.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hujiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/han.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anggui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flatter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cythia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_database.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414121.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Yinshua_Chuban/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turkmenistan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileServicesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfile/569853.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breakdown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otosi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58814245.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/millimeter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ytlfmember/editor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teeth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Zuqiu_Tianxia/1025.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/story.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/isle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ego.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olymakolima.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eadsea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stern.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10410500.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phesus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/veil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/envy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/layout.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cayali.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alkansthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/34567.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rootceo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/system_footer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abruptly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distinctly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treasurer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/estlothian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/farrar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/121763.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesdead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6666.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herrapunji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/8888.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seeing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingredient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mokyhill.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coverdale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/raised.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/css.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/with.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belief.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anges.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maneuver.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_body.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edi/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/derivation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/efficient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/ielzpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bonnie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600600600.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ronx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/customary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/upfile_class/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/combine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wz520%23.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/website.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disagreement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/path/seti.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kraine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buy/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_ZgTea_Art/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabbadabbadoo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/431122.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/splendid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/choose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pardonint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/loadtree.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/howe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/qzcrinfosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/repair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amusement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pianist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/technical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/connectors/php/pcacconnector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tytjecshop/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampuchea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1010.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22222.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/531788.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Myplus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/300034.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ibraltar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anlan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anqiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/main.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/should.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intimate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_aspcheck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_admin.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/others.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shalt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/243663.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/cache/a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sem_user/admin.phplogin.asp.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2403334.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ldham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/katydid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/small.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coleman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/admin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/admin_uploadlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usenix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpphotoalbum/explorer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aramay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/restrict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/600839.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fender.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2478664.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ri.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/detector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cobden.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olumbus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/outhcarolina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hubbard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23tyqiye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/yishu/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enhance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/range.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfiledown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abrador.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/acre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itchener.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/modules/forums/admin/admin_styles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bright.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jump in a lake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/echo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barometer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caught.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/distil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dbconnect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phoenix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/akuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/river.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2001.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/haman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/on0jdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slender.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yongyang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kiong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/zzz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thelena.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/challenge_msg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/komyinfosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arnold.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/control.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/also.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ShowFile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/forums/masingle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evenly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stretched.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cuador.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/downward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difficult.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/tiyisw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tv2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/treated.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dewar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deserved.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/details2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aseng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skillful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/444444.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/313726.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gilman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ascony.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bind.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pawn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mysqlmanager/scripts/setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/membergbook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gjrfdigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2585710.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/awkward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_/login.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0407.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unisia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19577.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bias.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diminish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harmful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndeeservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileNewsPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/base64.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diy3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pineapple.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obctadmin/ewebedit/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irritate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unusual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wander.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/lsewdigg_ajax.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/const.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/epontinealps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angguo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ferrous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toptxt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/guestbook.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/z9v8md5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infect.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jokeoe_data.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boobie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modernize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilelink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addmmc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/382135.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/548897735704.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alert.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_connsql.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exhausted.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/icontent/include/wysiwyg/spaw_control.class.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fragile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/premium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jealous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/annual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plague.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reluctant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mayor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/miong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploads.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/topic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pswich.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anffshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload/servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abylonia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/uploadfileCasesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/55555555.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/errors.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cxhd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obekcubi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebecca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dairy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/depress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oastrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/olumbiamount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disturb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/323565.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compulsory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/paul.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/description.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobileDatabase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bumbling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proverb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wenstanleyrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ritual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiber.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/love/include/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feedsheepme.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apanseaof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erionethshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nigeria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/top2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/polynomial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileservicestype.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adverb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/020202.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/551102.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/23181615.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sufficient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erroneous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camille.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cloud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/news3000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/risk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/profile/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/statesman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alkan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/aspcheck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diffuse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8setup/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parts.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/db/bbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liberal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/london.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sites/samples/knowledge/membership/inspiredtutorial/viewcode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dampier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/garbage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjstat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Cy/DataBackup/DataBack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/difference.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/majority.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blog.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/short.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1234.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/edward.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/room.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/capital.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/print.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zimmerman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vwfbshop/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z_shop_newshop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sanmarino.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/500.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ethel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/footnote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewmanage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_systemface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/edit/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/colvin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shutter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123873.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rakensberg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anzhua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5021.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/etaoin shrdlu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustralianalps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileshow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mp3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/venezuela.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userreg_setp2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminqiqi/Login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cotland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/instability.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elegant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yl9tinstall/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theater.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/pages2/yishu/logging.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iscaucasia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/esteem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/ndex.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prayers.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicole.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hita.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/y.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_move/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjroha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showbbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jeopardise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/215976.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scoff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sytle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agdeburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herschel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qusvbuy/goods.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mistaken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sarah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/lostpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r2nhtmdqq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aohsiung.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pages/bb_smilies.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/semester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sonya.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arms.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pitsbergen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/oykdpost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheepconfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fosdick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_adpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fermat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atlas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flutter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thorough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painless.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oeehshop/affiche.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ts-13.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs-admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anyun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/corporate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nominal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/524524.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/egg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indicate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buysheep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omania.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pcat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shadow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thicken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/africa.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/warehouse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anban.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swear.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/decorate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gissing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thatcher.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fuckbaidu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/singular.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.phpaction=upfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hurrah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data/jy_plus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cocakola.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/fckeditor/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adrianna.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/si.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/undee.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webadmin/ewebeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aichuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/24t1t101.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UploadSoft/myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/usersms.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/elogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_new.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/philip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newpass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emission.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3upxmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilep.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/skibum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/pay_topic_postforumid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/west.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ull.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mnbvc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shortage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anberra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gratefuldead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/headquarters.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inlet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vicky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/svgzforumdata/cache/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iulxadmin/ewebeditor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/quarterly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/firework.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/provoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anniversary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/a.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bother.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agenda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8includes/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/z9v8ftp_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminabc/z9v8ftp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/showpost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fupload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aixian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/infinity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/filth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/614819.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dorr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19680622.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rapid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/price.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secrets.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/autonomous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sneezy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntebbe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anghui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfilenewspic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phpmyadmin/tbl_copy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/countryside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intensive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/386753yy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/josdelsalado.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uponc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingress.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/measure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/htgl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atumi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/new/admin_new/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indexhead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rovidence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1qazza.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/issau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mathematical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erguelen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nil.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oatsisland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/theart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/danger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yabhphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/residence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hoodlum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/slide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/200085.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/telescope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/volleyball.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0301.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aibang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/burst.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfileNewsPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ct.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/uploadfileNewsPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/cy0adigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/campanile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchester.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/228588.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload_flash_.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rohenamount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dependent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/canaux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/dbconnect.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astries.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nowhere.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/AdminUserModule/AdminUserLogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ub.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ad/ad_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ella.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/r01qdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/516329.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heinlein.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cristina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arcymount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umberland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleeps.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/explorer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enlighten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stimulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deficient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configuration/system/Upload_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/conmx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/world.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/solid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6119268.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/02101002.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drinking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/practically.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apetowncapetown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/urasia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foolproof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sjk2008/115cn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aratov.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rafalgarcape.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seminar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/departed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ashu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/htmledit/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/medieval.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dole.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/test.phpinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/harriman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apehorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/licence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enroll.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hesitate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewengland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Login8.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile.phpadmin/upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vypplistsp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torpedo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/folk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/adminadduser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/005523.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qualify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/girls.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/ucenter/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/s4x5upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2144.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/araguay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/denounce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anmang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/j.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addressing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cohen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilimanjaro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Chinese.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/gqekdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grosvenor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bypjconfig.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Upfile_Articla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buttfuck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engagement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/formulate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hocus-pocus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2108.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ottinghamshire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sixteen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imp/compose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pumpkin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/response.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stereo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kneel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/turnleft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/billy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reclaim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196521.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bleach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfileCasesType.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aluan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hradmin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/animals.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snmp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/during.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_Challenge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/140499.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reg_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ocerdiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hodesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/register.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anderson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/script/product/manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cumulative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diesel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/40502.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/national.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sturdy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/9988.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/belloc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ammond.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/felix.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frequently.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilelink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bets.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toilet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfileDown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rabia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fleetwood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gradient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearadmin/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/college/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebuke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pieces.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lympus.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/organise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ansalvador.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ReloadForumCache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rss2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2188.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hindrance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5u3qdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hotmail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/common/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hand.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizeng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azakhsatan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/356381.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atherton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/u_name.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ken.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipwreck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/galton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amibia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evolve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clockwise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bahamas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cousin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/exicogulfof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1205.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admins_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cabernet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oscowmoskcu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tune.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/norway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ngola.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tbara.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/francisco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xvlxphpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/911scturbo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concerned.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uaihe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seldom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/mpvpselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zxcvbn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/shell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/differences.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barbados.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patrick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/l.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/clglselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1111111.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/variation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi-bin/system/userlogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/WebEditor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/admin_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/itsybitsy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/ad_manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/476408.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gloria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiaojian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azhu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occurrence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compaq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asshole.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hasten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proficient.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ru.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steamer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alger.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chiefly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lwyd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brennan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/graceful.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hvbuadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3a2jadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/transcend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bellamy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucenter/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0077.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hovell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/spnyusergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/displacement.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qyjxy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fckeditor/editor/filemanager/browser/default/browser.html?type=../&connector=connectors/php/connector.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1963210.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/uploadfaceok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexfiend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anchuai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webdata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shida_ceshi_answer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angci.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diverge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nervous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cz_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/301828.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/industanhindostan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login/loginadministrator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meeting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inclusive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/competitor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/province.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trathclyde.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/webstore/addcustomer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdlkj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indonesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/grope.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/travel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netherlands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/princeton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2325597.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bath.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coupon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/celebrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caution.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pag.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/member/aofuuploads_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crush.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/221217.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ante.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mdurman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PicUpfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_Message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friendlist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unanimous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thinking.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/patent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whoopy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/far.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aracaibo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/istrictofcolumbia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/010101.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/someone.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userslist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ohannesburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/my.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_chklogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/engshan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adminusername.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/right.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/myshow_photoshow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arlingr.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ponder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/taught.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/permit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/waggon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/salt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upme3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/representative.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/56409802.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benedict.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/escaped.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/digg/digg_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anwei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/%23tyqiye.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shaft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/open.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rule.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/10001.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/points.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/compton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cane.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage3_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/elevate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ssyria.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fancied.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overwhelm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threaten.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trailblazer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/armed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aijiang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewdelhi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0914.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forearm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/characteristic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unfit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assassination.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/navbar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zoo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/moderate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/orsica.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/php168/bblthack.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/toshiba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/secondary.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consulta.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/05105807836.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sky.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingspeak.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wjleft.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/achuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refeld.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/losing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liaoxd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/appoen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nanshi_nvxing/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forumdata/cache/sql.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sys/upfile_flash.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otedazur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/defence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mobilize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/men/z9v8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_board.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/currer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diagram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/c.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nchon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shipment.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bush.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/BathUpdate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/go.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnet.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/igeaia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aerobics.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/it'sajoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ndianocean.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/userreg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realthing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2410.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enice.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/daemon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aipi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/minute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/picture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anoihanoi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/motorway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guestbook/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/framemaker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/accent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mature.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loading.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/463108.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/av.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/coal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6008675.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/newwss.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ridiculous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zhan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angdu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/word2000.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nicholas.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8fckeditor/uploads.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tolerance.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_photo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anisleof.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/furball.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forerunner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conscience.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/upfile1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astrid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occasional.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confront.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conference.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/webedit/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/temptation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benny.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikuang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reproach.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfrancisco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/french.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_home.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsimage1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ampstead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shazam.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/samples/showfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lanude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anjing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/systemroot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/441507.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/confirmed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agpur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/memcp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xeeuinstall/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blood.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oundthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/575783.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ipchat.php?root_path=anotherhost_with_conf_global.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/tgg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/332195.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/PBlog2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trecht.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/invaluable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/argument.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/araganda.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continent.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/z9v8link_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/towel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ex33fckeditor/editor/filemanager/upload/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ilan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontecarto.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130031.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Create_SoftList_SubCate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/poll.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/similarity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/parallel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/supervise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/275275275.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/icobarislands.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aliao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/humanitarian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/authorise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/boobies.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ringo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidiu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bestow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/tianzi1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/103927.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/userreg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angbi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goodgrief.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arbuthnot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuffedturkey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heels.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5156104.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/faulty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/musical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/signify.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lm6qdigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/npsout_reply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anganui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aqing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Challenge_Scan_Topic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/433.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qxdlmember/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/create_commend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/168261.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/users/Editer/z9v8SelectPic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mjbjapi/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conquest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/soar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/penalty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jjs4digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hairball.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/unexpected.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/july.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hovey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cnzz/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vt52.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum/uc/reset.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontreal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hunter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/amd_007/super.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arose.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/con.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frontpage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/bianji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reinforce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chenectady.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/usergroup_0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forgot.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/donkey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/except.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ortugal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aspadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ustronesia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iamery.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viewpaper.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zkcf45/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/morocco.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/briefcase.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crossed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ucerne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cartoon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/522039.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adotville.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/12912.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/436670zj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prevail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silicon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/happyending.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collar.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/surface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/avisstait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nourish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/leadbbs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dimwit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fiji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/java.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aofranciso.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ruo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/y2u8digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/queer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/claim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/589797.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiral.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/china.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admintab.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/delreply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dinburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/buypost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongkonghongkong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/pp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/existence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refrigerator.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sketch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/Product/manage/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perceive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronunciation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/upload/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/before.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maybe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deepfreeze.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/left.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfilesave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/karen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/networking_utils.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conversion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/axuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alway.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3106081.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8cmd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Manag_onlinedb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/93lcservu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Preview.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/near.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/children.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forum.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/115cn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4.3bsd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southwards.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/refresh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anza.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guest/guestbook/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pint.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/laugh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/neeao_sql_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deposition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nwapbencandy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/visualize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mperorrange.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/socialism.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/12121212.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123698.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carl.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algoorlie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Databases/#wygkcnqywz4.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/natasha.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/217121.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/061478.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concession.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/music/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/list6.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/latvia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/my_picture_upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emmanuel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suckrocks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/continuity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plumbrandy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Neeao_SqlIn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hound.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/UserReg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/data/news.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/district.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/berlin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/srilanka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/135642.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flavor.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mfn7diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/niang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2163.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/remote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekday.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/TopUser.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/negotiate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angladesh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/williamsburg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/twentieth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/netutils/nettools.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/however.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/noarticle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/process.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/azun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/15.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/painter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gnaw.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superiority.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dynamo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equilibrium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/templates_view.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/income.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/duck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easycome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uzon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/winston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anshou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4501809.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dbconnect.php.bk\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qwertyu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ccms/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ln.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goto hell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dvbbs5.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equally.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/getchallengeword.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conn/upload_1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up_piczc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/satisfaction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage_news/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ontenegro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/188.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bs/z9v8diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_style.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/180232.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloom.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/multiply.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfiletp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dominant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/assumption.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/silence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alva.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fileadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rowland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suzhijy/htdocs/db/fileupimg2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rks/codebrw1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hearty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123757.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/DV_plus/marry/plus_marry_db.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/TUNGSTENDATA.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/perfume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anhen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bureau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/BuyPost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/611217.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/roydon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feminine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/opened.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/contest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gabon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1990.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jude.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/s8servu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/incompatible.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/members.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/initial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0913.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/antie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/19691023.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/attersea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alluserface.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bloomcounty.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eccamekka.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196418.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/computer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/examination.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/any.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/weekly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/other/2007_jh.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anila.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stay.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oyanghu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/middle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/consume.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shift.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tami.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiza.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadfiles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/apt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ripoli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/my.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/march.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/dialog/vjqhselect_soft_post.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abercrombie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/discbrakes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0uutadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/htmledit/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fatal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hobbit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stairs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bobby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_index/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iongwe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/comrade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erbia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trnspma/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fountain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/verett.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/editor/editor/filemanager/upload/test.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/123131.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/131313.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/destine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ittsburghpitsbcg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ailv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/194811.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiritual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/58605860.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hmtleditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/overtake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_exit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fancy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tide.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16608207.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/brother.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aita.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/indispensable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ancun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reduced.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/4623384.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincxfb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/definition.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/editmember.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/allenby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lodge.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/syssite/install/ini_setup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lacksea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/introduction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/landlord.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peacock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cgi_bin/addlb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maintain.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/feeling.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin/edit_forum_edit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bagyshop/flow.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/frontier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editor/admin/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ugly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dialup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22227509.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anrong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rochelle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greedy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mtv/upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_htmlqx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradley.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gblhplus/infosearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eugene.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/astham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jackson.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/search.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xfm2wish.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/100094.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reliable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iji.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/interest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/13611828827.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ingenuity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camera.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enjoyable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hl/46.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/evident.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aimao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/habit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spiderman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/seal.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfileNews.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foundation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3312596.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vote.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/geometrical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/indexhead.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweetnes.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rebellion.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/energetic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ewebeditor1013.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ur-admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aterbury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angcun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/database/zzchn%23da2005.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/algernon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hover.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occupy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bosniaandherzegovina.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_help.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/22339.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/inc/Ubblist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/cp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beef.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfileok.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wstats.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/409152.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angkao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blur.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intyre.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anglei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/110102.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/release.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/User_Admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ainang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/uploadfilePartners.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/concentrate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_mmDBScripts/s8MMHTTPDB.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/up.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambezizambesi.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_SoftInfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/manage/ewebeditor/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/agui.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pmddmyup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/maldives.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/owloon.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aisheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chief.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anode.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sexual.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/eace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/emphis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vital.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dust.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%23liaoxd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/include/z9v8conn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0423.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/israel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tcp-ip.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/franks.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiphong.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0420.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/native.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uploadimage/z9v8config.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/118013.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/erupt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anli.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arwin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/688.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chatter.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/afang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sick.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/classes/core/language.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/container.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/article_add.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ievkiyev.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thread-16-1-1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/collier.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/joanne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/occupation.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_username.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xmodem.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beater.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fv.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/clearing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marble.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_menu.php.bak\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aikop.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/designate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fillmore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angfei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ismarck.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/plus/gupiao/CSS.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ananarive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/peru.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/southeast.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pb6odigshell2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/wap/include/login.inc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/237869.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yoke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rizaba.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/crossing.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/program/auctions/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8update.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/071066.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_softpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/upload_3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/108164.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aicao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wrist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aishai.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hiram.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1023.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/dama.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aston.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/catalog/tool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/source.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/romantic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/400214.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/public.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/130313.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trial.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/charlotte.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stuff.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lib/config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angduo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inc/editor/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/greenough.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/c2jndiy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flux.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/strap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tuvalu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/spy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/benz.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunshine.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/news/admin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realtime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cost.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/admin_message.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heavily.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/byron.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flash/downfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/thrown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/reatslavelake.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rigid.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/suspend.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admiration.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golding.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conversely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/arseillemasei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beingmate_in.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/forever.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barrymore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3521985.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/viagra.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/freedheim.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/administrator/index2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/protest.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lyb/ubb.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/complete.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wilt.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aner.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/softdown.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/htmledit/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ambiguous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/klingons.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/throne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adsystem/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/py.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/snatch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/curiosity.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/%5FhKJH%40%24%5Fhgsd123%40%5F%24f.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/phplogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Select_feedback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tramp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/deborah.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hfjrclist.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/realize.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cunning.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/blogDB/PBlog2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beatles.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ame.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wank.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_manage_access/Admin_Default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/i.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/16511.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cretin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/editmember.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adore.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/z9v8upfile_adpic.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bound.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/foreign.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_club.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yei.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/irvin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/degrade.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/till.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/proficiency.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anpo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/golightly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/bbsmail.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/addpicture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ro.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aizu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angliang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/breastfeed.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asdfg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/artlefreremount.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jove.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ardis.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/citizen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aidun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/honourable.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/imla.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2013142.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/umberside.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/equatorialguinea.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/serve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/post_upfile1.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/preference.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/112411.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/whatsup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/result.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Data_Return.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gillingham.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Admin_BatchLink.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin2.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/idleness.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anything.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wizard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbslogin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/img.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lathe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/retired.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heather.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/0112.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bradbury.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/ReloadForumCache.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/z_visual_upfile.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qc.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronghorn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/previously.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/guard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yua.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aihu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/saveup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shop/phpmyadmin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/sf_viewnew.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aitiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/goldsmith.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/friction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/xx.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uashan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fraction.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stalker.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/horace.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_uploadfile_user.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iissamples/exair/search/advsearch.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/wantpws.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/system/uploadfilecases.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/damp.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tjly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/005500.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/sysconfig.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bb/admin/admin_ug_auth.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nopass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Reg/z9v8User_Reg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hydrogen.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sweat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aiqian.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bessemer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/6qv4myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/kindeditor/php/upload.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3241156.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/user/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/element.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/getreboardlimitedorders.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/link/link.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/yuan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ntananarivo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1808420.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ensure.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/resign.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nuo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/susanne.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scension.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/196511.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ercedario.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/tungstendata.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/2100515.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/1388.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/meantime.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vapour.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/light/cp_upload_image.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_jscreate.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/factory.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/3435265.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/marvellous.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyingleap.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/analytical.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/nue.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admincontrol.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/atiao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/herd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aige.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lexandriaaeligzandric.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pwd.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/teeney.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/login_manage.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/drive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/79aadigshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/otswana.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/admin_boardsetting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aruan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/welcome.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_fsoedit.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/things.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/camel.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adoption.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fremont.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/NBA_lanqiu/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sheer.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dependant.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/switzerland.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ahamasthe.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/omsk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/impatience.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/behave.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ongtinghu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anfranciscosaenfrcnsiskcu.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/select_feedback.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hair.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xiajia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/adm_login.phpx\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/himonoseki.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/modules/Forums/admin/admin_db_utilities.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anke.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/vj.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user/sql_config.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/playboy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/rampianhills.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/superbird.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/fau.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/37324601.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/store.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/har.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ellingtonweliytcn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sitemanage/manage_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/eWebEditor_v280_Free/admin_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hale.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chat/editm.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/convey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flock.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/alcuin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trample.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/barnard.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/carried.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin_boardunite.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/abao.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/anting.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hofman.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pulse.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/asablanca.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/enaresbanaras.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/inversely.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/user_message_show.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/371230.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/DataBackup/asdf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/gsbbs/login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/Gsbbs/userinfo.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/678.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/413504.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aben.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ani.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/stadium.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/aheng.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cart.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/upfile_adpia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/steve.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ankun.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/entire.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jealousy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/cornell.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sq.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/xh_login.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/huddle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/easton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/texture.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shelf.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oa/admin/index.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/admin/default.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/hengzhou.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sie.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uk.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/iverpool.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/diang.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/florey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/zdqwbuy/myship.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/certainly.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sunrise.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bhutan.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/smuggle.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/becoming.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pronounce.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/torn.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/djg2digshell0.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/boardstat.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/photography.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/620390.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/414324.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/makedrugs.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/angde.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lorida.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/commence.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mass.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mud.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/xax4myup.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/pollute.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/newsadmin.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/lobby.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/411937.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/5r9wv3.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/chesterton.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/obey.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/portrait.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/macedonia.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/qte4diy.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/oteborg.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/ybreapi/checkorder.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mould.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/056031.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/bbs/top.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conceive.php\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/disappoint.php\"\n    }\n]\n"
  },
  {
    "path": "assets/directory/spring.json",
    "content": "[\n    {\n        \"hits\": 0,\n        \"path\": \"/autoconfig\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/beans\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/env\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/configprops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/dump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/health\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/mappings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/metrics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/shutdown\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/trace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolokia/list\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api-docs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/v2/api-docs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/swagger-ui.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sw/swagger-ui.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/api/swagger-ui.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/template/swagger-ui.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spring-security-rest/api/swagger-ui.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/spring-security-oauth-resource/swagger-ui.html\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/mappings\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/metrics\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/beans\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/configprops\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/auditevents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/caches\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/conditions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/docs\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/flyway\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heapdump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/httptrace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/management/env\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/intergrationgraph\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/jolokia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/logfile\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/loggers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/liquibase\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/prometheus\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/refresh\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/scheduledtasks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/sessions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/threaddump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/auditevents\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/health\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/conditions\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/env\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/info\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/loggers\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/heapdump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/threaddump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/scheduledtasks\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/httptrace\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/heapdump\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/jolokia\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/actuator/hystrix.stream\"\n    }\n]\n"
  },
  {
    "path": "assets/directory/weblogic.json",
    "content": "[\n    {\n        \"hits\": 0,\n        \"path\": \"/wls-wsat/CoordinatorPortType\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/_async/AsyncResponseService\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/uddiexplorer/SearchPublicRegistries.jsp\"\n    },\n    {\n        \"hits\": 0,\n        \"path\": \"/console/login/LoginForm.jsp\"\n    }\n]\n"
  },
  {
    "path": "assets/fingerprint/apps.json",
    "content": "[\n  {\n    \"name\": \"Django\",\n    \"keyword\": \"You're seeing this error because you have <code>DEBUG = True</code> in\"\n  },\n  {\n    \"name\": \"Spring\",\n    \"keyword\": \"Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.\"\n  },\n  {\n    \"name\": \"ThinkPHP\",\n    \"keyword\": \"页面错误！请稍后再试\"\n  }\n]"
  },
  {
    "path": "build/package/Dockerfile",
    "content": "FROM alpine:latest\n\n\nENV LANG=\"zh_CN.UTF-8\"\n\nRUN apk add tzdata \\\n    && cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \\\n    && echo \"Asia/Shanghai\" > /etc/timezone \\\n    && apk del tzdata\n\nADD ./agent /home/agent\n\nWORKDIR /home/agent\n\nRUN chmod a+x caesar\n\nENTRYPOINT exec ./caesar \"$0\" \"$@\""
  },
  {
    "path": "cmd/audit.go",
    "content": "/*\nCopyright © 2020 NAME HERE <EMAIL ADDRESS>\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\npackage cmd\n\nimport (\n\t\"Caesar/api\"\n\t\"Caesar/app/audit\"\n\t\"Caesar/internal/library/boot\"\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/record\"\n\n\t\"github.com/spf13/cobra\"\n)\n\nvar (\n\ttarget  string\n\ttext    string\n\tflag    string\n\tthreads int\n\tdelay   int\n)\n\n// auditCmd represents the audit command\nvar auditCmd = &cobra.Command{\n\tUse:   \"audit\",\n\tShort: \"sensitive files found\",\n\tLong: api.Banner + `\n\n敏感文件扫描功能.\nexample: \n   caesar audit --target-address=http://127.0.0.1 --flag=common,php -g 1\n   caesar audit --target-address=target.txt --flag=common,php\n   caesar audit --read=requests.txt --flag=common,php\n`,\n\n\tRun: func(cmd *cobra.Command, args []string) {\n\n\t\tif len(flag) == 0 && len(target) == 0 && len(text) == 0 {\n\t\t\tif err := cmd.Help(); err != nil {\n\t\t\t\tprintln(err.Error())\n\t\t\t}\n\t\t\treturn\n\t\t}\n\n\t\tif len(target) == 0 && len(text) == 0 {\n\t\t\tprintln(\"You must enter target or read\")\n\t\t\treturn\n\t\t}\n\n\t\tif len(flag) == 0 {\n\t\t\tprintln(\"You must enter flag\")\n\t\t\treturn\n\t\t}\n\n\t\t// 开启日志记录器\n\t\trecord.Logs(relation.Paths.Result+\"/console.log\", relation.Engine.Silence)\n\n\t\tif len(target) > 0 && len(flag) > 0 {\n\n\t\t\t// 读取url地址\n\t\t\taudit.StartSensitiveFoundFromAddress(target, flag, threads, delay)\n\t\t\treturn\n\n\t\t}\n\n\t\tif len(text) > 0 && len(flag) > 0 {\n\t\t\t// 读取url地址\n\t\t\taudit.StartSensitiveFoundFromText(text, flag, threads, delay)\n\t\t\treturn\n\n\t\t}\n\n\t},\n}\n\nfunc init() {\n\tauditCmd.Flags().StringVarP(&target, \"target-address\", \"t\", \"\", \"scan target (type: txt file or address string)\")\n\tauditCmd.Flags().StringVarP(&text, \"read\", \"r\", \"\", \"read file to request\")\n\tauditCmd.Flags().StringVarP(&flag, \"flag\", \"f\", \"\", \"dict type (example: common or common,asp) , All dict is: \"+boot.GetFlag(\"assets/directory\"))\n\tauditCmd.Flags().IntVarP(&threads, \"threads\", \"g\", 3, \"The threads num\")\n\tauditCmd.Flags().IntVarP(&delay, \"delay\", \"d\", 0, \"time delay\")\n\tauditCmd.Flags().SortFlags = false\n\trootCmd.AddCommand(auditCmd)\n\n}\n"
  },
  {
    "path": "cmd/convert.go",
    "content": "/*\nCopyright © 2020 NAME HERE <EMAIL ADDRESS>\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\npackage cmd\n\nimport (\n\t\"Caesar/api\"\n\t\"Caesar/app/convert\"\n\n\t\"github.com/spf13/cobra\"\n)\n\nvar (\n\tconvertDocument string\n\tconvertText     string\n)\n\n// convertCmd represents the convert command\nvar convertCmd = &cobra.Command{\n\tUse:   \"convert\",\n\tShort: \"convert path txt to path json (path file must end of .txt)\",\n\tLong: api.Banner + `.\n\n将普通路径文件转换为Caesar能识别的json格式的路径文件\nexample:\n     caesar convert -d ~/path/  \n     caesar convert -f ~/asp.txt\n`,\n\tRun: func(cmd *cobra.Command, args []string) {\n\t\tif len(convertText) == 0 && len(convertDocument) == 0 {\n\t\t\tif err := cmd.Help(); err != nil {\n\t\t\t\tprintln(err.Error())\n\t\t\t}\n\t\t\treturn\n\t\t}\n\n\t\tif len(convertText) > 0 {\n\t\t\tconvert.TextToJsonOfFile(convertText)\n\t\t} else if len(convertDocument) > 0 {\n\t\t\tconvert.TextToJsonOfPath(convertDocument)\n\t\t}\n\t},\n}\n\nfunc init() {\n\tconvertCmd.Flags().StringVarP(&convertDocument, \"document\", \"d\", \"\", \"read txt to json, from document(only txt)\")\n\tconvertCmd.Flags().StringVarP(&convertText, \"file\", \"f\", \"\", \"read txt to json, from file\")\n\n\trootCmd.AddCommand(convertCmd)\n\n}\n"
  },
  {
    "path": "cmd/reset.go",
    "content": "/*\nCopyright © 2020 NAME HERE <EMAIL ADDRESS>\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\npackage cmd\n\nimport (\n\t\"Caesar/api\"\n\t\"Caesar/app/reset\"\n\n\t\"github.com/spf13/cobra\"\n)\n\nvar (\n\tdocument string\n\tfileName string\n)\n\n// resetCmd represents the reset command\nvar resetCmd = &cobra.Command{\n\tUse:   \"reset\",\n\tShort: \"reset path json of hits is 0\",\n\tLong: api.Banner + `\n\n将路径json字典的hits重置为0\nexample:\n     caesar reset -d ~/path/  \n     caesar reset -f ~/paths.json\n`,\n\tRun: func(cmd *cobra.Command, args []string) {\n\n\t\tif len(document) > 0 && len(fileName) == 0 {\n\t\t\treset.SetupHitsOfZeroInDocument(document)\n\t\t\treturn\n\n\t\t} else if len(document) == 0 && len(fileName) > 0 {\n\t\t\treset.SetupHitsOfZeroInFile(fileName)\n\t\t\treturn\n\n\t\t} else {\n\t\t\tif err := cmd.Help(); err != nil {\n\t\t\t\tprintln(err.Error())\n\t\t\t}\n\t\t\treturn\n\n\t\t}\n\t},\n}\n\nfunc init() {\n\n\tresetCmd.Flags().StringVarP(&document, \"document\", \"d\", \"\", \"read document to reset hits 0\")\n\tresetCmd.Flags().StringVarP(&fileName, \"filename\", \"f\", \"\", \"read file to reset hits 0\")\n\tresetCmd.Flags().SortFlags = false\n\trootCmd.AddCommand(resetCmd)\n\n}\n"
  },
  {
    "path": "cmd/root.go",
    "content": "/*\nCopyright © 2020 NAME HERE <EMAIL ADDRESS>\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\npackage cmd\n\nimport (\n\t\"os\"\n\n\t\"Caesar/api\"\n\n\t\"github.com/mitchellh/go-homedir\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/spf13/viper\"\n)\n\nvar cfgFile string\n\n// rootCmd represents the base command when called without any subcommands\nvar rootCmd = &cobra.Command{\n\tUse:   \"Caesar\",\n\tShort: \"A cool tool for sensitive file\",\n\tLong:  api.Banner,\n\t//\tLong: `A longer description that spans multiple lines and likely contains\n\t//examples and usage of using your application. For example:\n\t//\n\t//Cobra is a CLI library for Go that empowers applications.\n\t//This application is a tool to generate the needed files\n\t//to quickly create a Cobra application.`,\n\t// Uncomment the following line if your bare application\n\t// has an action associated with it:\n\t//\tRun: func(cmd *cobra.Command, args []string) { },\n\n}\n\n// Execute adds all child commands to the root command and sets flags appropriately.\n// This is called by main.main(). It only needs to happen once to the rootCmd.\nfunc Execute() {\n\n\tif err := rootCmd.Execute(); err != nil {\n\t\t//fmt.Println(err)\n\t\tos.Exit(1)\n\t}\n\n}\n\nfunc init() {\n\tcobra.OnInitialize(initConfig)\n\n}\n\nfunc initConfig() {\n\tif cfgFile != \"\" {\n\t\t// Use config file from the flag.\n\t\tviper.SetConfigFile(cfgFile)\n\t} else {\n\t\t// Find home directory.\n\t\thome, err := homedir.Dir()\n\t\tif err != nil {\n\t\t\t//fmt.Println(err)\n\t\t\tos.Exit(1)\n\t\t}\n\n\t\t// Search config in home directory with name \".Demo\" (without extension).\n\t\tviper.AddConfigPath(home)\n\t\tviper.SetConfigName(\".Demo\")\n\t}\n\n\tviper.AutomaticEnv() // read in environment variables that match\n\n\t// If a config file is found, read it in.\n\tif err := viper.ReadInConfig(); err == nil {\n\t\t//fmt.Println(\"Using config file:\", viper.ConfigFileUsed())\n\t\tprintln(\"Using config file:\", viper.ConfigFileUsed())\n\t}\n}\n"
  },
  {
    "path": "cmd/waf.go",
    "content": "/*\nCopyright © 2020 NAME HERE <EMAIL ADDRESS>\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\npackage cmd\n\nimport (\n\t\"Caesar/api\"\n\t\"Caesar/app/waf\"\n\n\t\"github.com/spf13/cobra\"\n)\n\nvar (\n\twafTarget  string\n\twafThreads int\n\twafDelay   int\n)\n\n// wafCmd represents the waf command\nvar wafCmd = &cobra.Command{\n\tUse:   \"waf\",\n\tShort: \"WAF check tool\",\n\tLong: api.Banner + `\n\n检查目标是否受WAF保护\nexample:\n   caesar waf --target-address=target.txt -g 5\n`,\n\tRun: func(cmd *cobra.Command, args []string) {\n\t\tif len(wafTarget) == 0 {\n\t\t\tif err := cmd.Help(); err != nil {\n\t\t\t\tprintln(err.Error())\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\twaf.StartWafCheck(wafTarget, wafThreads, wafDelay)\n\t},\n}\n\nfunc init() {\n\n\twafCmd.Flags().StringVarP(&wafTarget, \"target-address\", \"t\", \"\", \"scan target (type: txt file or address string)\")\n\twafCmd.Flags().IntVarP(&wafThreads, \"threads\", \"g\", 3, \"The threads num\")\n\twafCmd.Flags().IntVarP(&wafDelay, \"delay\", \"d\", 0, \"time delay\")\n\twafCmd.Flags().SortFlags = false\n\trootCmd.AddCommand(wafCmd)\n\n}\n"
  },
  {
    "path": "configs/config.yml",
    "content": "Silence: false # 静默模式，不在控制台打印内容\n\nDisplayCode: # 返回匹配的http状态码\n  - 200\n  - 301\n  - 302\n\nUpperRatioBound: 0.98 # 网页相似度比较的参数\n\nWafTop: 0 # 只扫描前n条地址\n\nTimeoutCount: 500 # 超过500次无连接则自动结束任务\n\nBaitFile: # 投给WAF的饵食，待定功能\n  - \"www.zip\"\n  - \"www.rar\"\n\nSuffixConnector: # 后缀连接符, 比如: index.php.txt, index.php_txt\n  - \".\"\n  - \"_\"\n\nDirectorySuffix: # 文件夹类的后缀, 比如: /admin-> /admin.zip; /admin.rar; /admin.tar; /admin.tar.gz\n  - \"zip\"\n  - \"rar\"\n  - \"tar\"\n  - \"tar.gz\"\n\nDynamicSuffix: # asp, aspx, php, jsp的后缀, 比如: index.php -> index.php.txt, index.php.swp, index.php.bak\n  - \"txt\"\n  - \"swp\"\n  - \"bak\"\n  - \"~\"\n\n## http请求参数配置 ##\n\nTimeOut: 3 #http连接超时时间\n\n# 支持http/https/socks5协议, example: http://127.0.0.1:8080\nProxy: # \"http://127.0.0.1:8080\"\n\n\n# 自定义文件请求头\nHeaders:\n  \"Connection\": \"Close\"\n  \"Accept\": \"*/*\"\n  \"Accept-Language\": \"en,zh\"\n\n# cookie和ua比较特殊，单独从请求头中拿出来了\nUserAgent: # 程序会随机选择一个ua，如果想指定ua，则只写那个ua就行\n  - \"Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; https://zhanzhang.toutiao.com/)\"\n  - \"Mozilla/5.0 (iPhone; CPU iPhone OS 10_3 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/56.0.2924.75 Mobile/14E5239e YisouSpider/5.0 Safari/602.1\"\n  - \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n  - \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n  - \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n\n# 设置cookie, example: username=admin; userid=1; PHPSESSID=9d1q9o4927a42p2thki1ql82p7\nCookie: # username=admin\n\n"
  },
  {
    "path": "docs/COPYING",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<https://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<https://www.gnu.org/licenses/why-not-lgpl.html>."
  },
  {
    "path": "docs/change.md",
    "content": ""
  },
  {
    "path": "go.mod",
    "content": "module Caesar\n\ngo 1.15\n\nrequire (\n\tgithub.com/andybalholm/brotli v1.0.1 // indirect\n\tgithub.com/cheggaaa/pb/v3 v3.0.5\n\tgithub.com/klauspost/compress v1.11.4 // indirect\n\tgithub.com/mitchellh/go-homedir v1.1.0\n\tgithub.com/sirupsen/logrus v1.7.0\n\tgithub.com/spf13/cobra v1.1.1\n\tgithub.com/spf13/viper v1.7.1\n\tgithub.com/valyala/fasthttp v1.18.0\n\tgolang.org/x/net v0.0.0-20201021035429-f5854403a974\n\tgolang.org/x/text v0.3.3\n\tgopkg.in/yaml.v2 v2.3.0\n)\n"
  },
  {
    "path": "go.sum",
    "content": "cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=\ncloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=\ncloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=\ncloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=\ncloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=\ncloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=\ncloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=\ncloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=\ncloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=\ncloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk=\ncloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I=\ncloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=\ndmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=\ngithub.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=\ngithub.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=\ngithub.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=\ngithub.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=\ngithub.com/VividCortex/ewma v1.1.1 h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM=\ngithub.com/VividCortex/ewma v1.1.1/go.mod h1:2Tkkvm3sRDVXaiyucHiACn4cqf7DpdyLvmxzcbUokwA=\ngithub.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=\ngithub.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=\ngithub.com/andybalholm/brotli v1.0.0 h1:7UCwP93aiSfvWpapti8g88vVVGp2qqtGyePsSuDafo4=\ngithub.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=\ngithub.com/andybalholm/brotli v1.0.1 h1:KqhlKozYbRtJvsPrrEeXcO+N2l6NYT5A2QAFmSULpEc=\ngithub.com/andybalholm/brotli v1.0.1/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=\ngithub.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=\ngithub.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=\ngithub.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=\ngithub.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=\ngithub.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=\ngithub.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=\ngithub.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84=\ngithub.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=\ngithub.com/cheggaaa/pb/v3 v3.0.5 h1:lmZOti7CraK9RSjzExsY53+WWfub9Qv13B5m4ptEoPE=\ngithub.com/cheggaaa/pb/v3 v3.0.5/go.mod h1:X1L61/+36nz9bjIsrDU52qHKOQukUQe2Ge+YvGuquCw=\ngithub.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=\ngithub.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=\ngithub.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=\ngithub.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=\ngithub.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=\ngithub.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=\ngithub.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=\ngithub.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=\ngithub.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=\ngithub.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=\ngithub.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=\ngithub.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=\ngithub.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=\ngithub.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=\ngithub.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=\ngithub.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=\ngithub.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=\ngithub.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=\ngithub.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=\ngithub.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=\ngithub.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4=\ngithub.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=\ngithub.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=\ngithub.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=\ngithub.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=\ngithub.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=\ngithub.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=\ngithub.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=\ngithub.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=\ngithub.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=\ngithub.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=\ngithub.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=\ngithub.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=\ngithub.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=\ngithub.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=\ngithub.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=\ngithub.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=\ngithub.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=\ngithub.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=\ngithub.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk=\ngithub.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=\ngithub.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q=\ngithub.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8=\ngithub.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=\ngithub.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=\ngithub.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60=\ngithub.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM=\ngithub.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk=\ngithub.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU=\ngithub.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU=\ngithub.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4=\ngithub.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=\ngithub.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=\ngithub.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90=\ngithub.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=\ngithub.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=\ngithub.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=\ngithub.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=\ngithub.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=\ngithub.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ=\ngithub.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I=\ngithub.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc=\ngithub.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=\ngithub.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=\ngithub.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=\ngithub.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=\ngithub.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=\ngithub.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=\ngithub.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=\ngithub.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=\ngithub.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=\ngithub.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=\ngithub.com/klauspost/compress v1.10.7 h1:7rix8v8GpI3ZBb0nSozFRgbtXKv+hOe+qfEpZqybrAg=\ngithub.com/klauspost/compress v1.10.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=\ngithub.com/klauspost/compress v1.11.4 h1:kz40R/YWls3iqT9zX9AHN3WoVsrAWVyui5sxuLqiXqU=\ngithub.com/klauspost/compress v1.11.4/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=\ngithub.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=\ngithub.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=\ngithub.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=\ngithub.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=\ngithub.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=\ngithub.com/magiconair/properties v1.8.1 h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=\ngithub.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=\ngithub.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=\ngithub.com/mattn/go-colorable v0.1.2 h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx8mU=\ngithub.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=\ngithub.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4=\ngithub.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngithub.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY=\ngithub.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=\ngithub.com/mattn/go-runewidth v0.0.7 h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54=\ngithub.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=\ngithub.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=\ngithub.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=\ngithub.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=\ngithub.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=\ngithub.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=\ngithub.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=\ngithub.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI=\ngithub.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg=\ngithub.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=\ngithub.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=\ngithub.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=\ngithub.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=\ngithub.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=\ngithub.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=\ngithub.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=\ngithub.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=\ngithub.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=\ngithub.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=\ngithub.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=\ngithub.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=\ngithub.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=\ngithub.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI=\ngithub.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=\ngithub.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=\ngithub.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=\ngithub.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=\ngithub.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=\ngithub.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=\ngithub.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=\ngithub.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=\ngithub.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=\ngithub.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=\ngithub.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=\ngithub.com/russross/blackfriday/v2 v2.0.1 h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=\ngithub.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=\ngithub.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=\ngithub.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=\ngithub.com/shurcooL/sanitized_anchor_name v1.0.0 h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=\ngithub.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=\ngithub.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=\ngithub.com/sirupsen/logrus v1.7.0 h1:ShrD1U9pZB12TX0cVy0DtePoCH97K8EtX+mg7ZARUtM=\ngithub.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=\ngithub.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=\ngithub.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=\ngithub.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=\ngithub.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=\ngithub.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM=\ngithub.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=\ngithub.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI=\ngithub.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=\ngithub.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=\ngithub.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=\ngithub.com/spf13/cobra v1.1.1 h1:KfztREH0tPxJJ+geloSLaAkaPkr4ki2Er5quFV1TDo4=\ngithub.com/spf13/cobra v1.1.1/go.mod h1:WnodtKOvamDL/PwE2M4iKs8aMDBZ5Q5klgD3qfVJQMI=\ngithub.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=\ngithub.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=\ngithub.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=\ngithub.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=\ngithub.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=\ngithub.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=\ngithub.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk=\ngithub.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=\ngithub.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=\ngithub.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=\ngithub.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=\ngithub.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=\ngithub.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=\ngithub.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=\ngithub.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=\ngithub.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=\ngithub.com/valyala/fasthttp v1.18.0 h1:IV0DdMlatq9QO1Cr6wGJPVW1sV1Q8HvZXAIcjorylyM=\ngithub.com/valyala/fasthttp v1.18.0/go.mod h1:jjraHZVbKOXftJfsOYoAjaeygpj5hr8ermTRJNroD7A=\ngithub.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio=\ngithub.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=\ngo.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=\ngo.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=\ngo.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=\ngo.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=\ngo.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=\ngo.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=\ngolang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=\ngolang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=\ngolang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=\ngolang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek=\ngolang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY=\ngolang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=\ngolang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=\ngolang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=\ngolang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=\ngolang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=\ngolang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190930215403-16217165b5de h1:5hukYrvBGR8/eNkX5mdUezrA6JiaEZDtJb9Ei+1LlBs=\ngolang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE=\ngolang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o=\ngolang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=\ngolang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY=\ngolang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=\ngolang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20201016165138-7b1cca2348c0 h1:5kGOVHlq0euqwzgTC9Vu15p6fV1Wi0ArVi8da2urnVg=\ngolang.org/x/net v0.0.0-20201016165138-7b1cca2348c0/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=\ngolang.org/x/net v0.0.0-20201021035429-f5854403a974 h1:IX6qOQeG5uLjB/hjjwjedwfjND0hgjPMMyO1RoIXQNI=\ngolang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=\ngolang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=\ngolang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191026070338-33540a1f6037 h1:YyJpGZS1sBuBCzLAR1VEpK193GlqGZbnPFnPV/5Rsb4=\ngolang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg=\ngolang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200930185726-fdedc70b468f h1:+Nyd8tzPX9R7BWHguqsrbFdRx3WQ/1ib8I44HXV5yTA=\ngolang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=\ngolang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=\ngolang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=\ngolang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc h1:NCy3Ohtk6Iny5V/reW2Ktypo4zIpWBdRJ1uFMjBxdg8=\ngolang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngoogle.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=\ngoogle.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=\ngoogle.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=\ngoogle.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=\ngoogle.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=\ngoogle.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=\ngoogle.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0=\ngoogle.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=\ngoogle.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=\ngoogle.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=\ngoogle.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8=\ngoogle.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=\ngoogle.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=\ngoogle.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=\ngoogle.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=\ngopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=\ngopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=\ngopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=\ngopkg.in/ini.v1 v1.51.0 h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno=\ngopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=\ngopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=\ngopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74=\ngopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=\ngopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\nhonnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=\nrsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=\n"
  },
  {
    "path": "internal/CHANGEMe.md",
    "content": ""
  },
  {
    "path": "internal/library/CHANGEME.md",
    "content": "# v1.0.1 2020/12/12\n* load.go删除Force参数。"
  },
  {
    "path": "internal/library/README.md",
    "content": "# 程序的主部分"
  },
  {
    "path": "internal/library/boot/CHANGEME.md",
    "content": "## v1.0.1 2020/12/12\n* conf.go增加缓存文件的配置"
  },
  {
    "path": "internal/library/boot/conf.go",
    "content": "package boot\n\nimport (\n\t\"io/ioutil\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"time\"\n\n\t\"Caesar/internal/library\"\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc SetPaths() {\n\tbase, _ := os.Getwd()\n\tvar dictMap []map[string]string\n\n\trelation.Paths.BaseDir = base\n\n\t// 设置字典路径\n\trelation.Paths.DictDir = filepath.Join(base, \"assets\", \"directory\")\n\n\t// 设置CDN数据路径\n\trelation.Paths.CdnPath = filepath.Join(base, \"assets\", \"cdn\")\n\n\t// 设置web指纹数据路径\n\trelation.Paths.FingerPath = filepath.Join(base, \"assets\", \"fingerprint\")\n\n\t// 设置配置文件路径\n\tif !utils.PathExists(filepath.Join(base, \"configs\", \"config.yml\")) {\n\t\tif !utils.PathExists(filepath.Join(base, \"config.yml\")) {\n\t\t\tprintln(\"Can not found config file: \" + filepath.Join(base, \"config.yml\"))\n\t\t\tos.Exit(1)\n\n\t\t} else {\n\t\t\trelation.Paths.Config = filepath.Join(base, \"config.yml\")\n\t\t}\n\n\t} else {\n\t\trelation.Paths.Config = filepath.Join(base, \"configs\", \"config.yml\")\n\t}\n\n\t// 设置结果保存路径\n\trelation.Paths.Result = filepath.Join(base, \"results\")\n\n\t//获取文件或目录相关信息\n\tfileInfoList, err := ioutil.ReadDir(relation.Paths.DictDir)\n\n\tif err != nil {\n\t\tprintln(\"The dir \\\"\"+relation.Paths.DictDir+\"\\\" read error \", err.Error())\n\t\tos.Exit(1)\n\t}\n\n\tfor _, v := range fileInfoList {\n\t\tkey := strings.Split(v.Name(), \".json\")[0]\n\t\tdictMap = append(dictMap, map[string]string{key: relation.Paths.DictDir + \"/\" + v.Name()})\n\t}\n\n\trelation.Paths.Dict = dictMap\n\n}\n\nfunc SetConf() {\n\n\tconfig := library.NewProfile(relation.Paths.Config).LoadConfigFromYaml()\n\n\t// 核心引擎设置\n\trelation.Engine.TimeSleep = 0\n\trelation.Engine.Silence = config.Silence\n\trelation.Engine.UpperRatioBound = config.UpperRatioBound\n\n\t// 设置默认线程数\n\trelation.Engine.Threads = 3\n\n\trelation.Engine.WafTop = config.WafTop\n\trelation.Engine.TimeoutCount = config.TimeoutCount\n\trelation.Engine.DynamicFileSuffix = config.DirectorySuffix\n\trelation.Engine.DirectoryDirSuffix = config.DynamicSuffix\n\trelation.Engine.SuffixSymbol = config.SuffixConnector\n\trelation.Engine.StatusCode = config.DisplayCode\n\trelation.Engine.StopFlag = false\n\trelation.Engine.CollectAssets = make(map[string][]relation.ResultPtah)\n\n\t// 浏览器参数设置\n\trelation.Browser.TimeOut = time.Duration(config.TimeOut)\n\n\tif len(config.UserAgent) > 0 {\n\t\trelation.Browser.UserAgent = config.UserAgent\n\t} else {\n\t\trelation.Browser.UserAgent = []string{\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:76.0) Gecko/20100101 Firefox/76.0\"}\n\t}\n\n\tif len(config.Proxy) > 0 {\n\t\trelation.Browser.Proxy = config.Proxy\n\t}\n\n\tif len(config.Cookie) > 0 {\n\t\trelation.Browser.Cookie = config.Cookie\n\t} else {\n\t\trelation.Browser.Cookie = \"\"\n\t}\n\n\tif len(config.Headers) > 0 {\n\t\trelation.Browser.Headers = config.Headers\n\t} else {\n\t\trelation.Browser.Headers = make(map[string]string)\n\t}\n\n}\n"
  },
  {
    "path": "internal/library/boot/param.go",
    "content": "package boot\n\nimport (\n\t\"io/ioutil\"\n\t\"os\"\n\t\"strings\"\n\n\t\"Caesar/pkg/record\"\n)\n\nfunc GetFlag(document string) string {\n\tvar stringKey []string\n\tvar key string\n\n\t//获取指定目录下的路径文件\n\tfileInfoList, err := ioutil.ReadDir(document)\n\tif err != nil {\n\t\trecord.Logger.Fatal(document + \" can not read\")\n\t\tos.Exit(1)\n\t}\n\n\tfor i := range fileInfoList {\n\t\tif strings.HasSuffix(fileInfoList[i].Name(), \".json\") {\n\t\t\tstringKey = append(stringKey, strings.Split(fileInfoList[i].Name(), \".json\")[0])\n\t\t}\n\t}\n\tkey = strings.Join(stringKey, \",\")\n\treturn key\n\n}\n"
  },
  {
    "path": "internal/library/config.go",
    "content": "package library\n\nimport (\n\t\"io/ioutil\"\n\t\"os\"\n\n\t\"Caesar/pkg/record\"\n\n\t\"gopkg.in/yaml.v2\"\n)\n\ntype configs struct {\n\tSilence         bool              `yaml:\"Silence\"`\n\tDisplayCode     []int             `yaml:\"DisplayCode\"`\n\tUpperRatioBound float64           `yaml:\"UpperRatioBound\"`\n\tWafTop          int               `yaml:\"WafTop\"`\n\tTimeoutCount    int               `yaml:\"TimeoutCount\"`\n\tSuffixConnector []string          `yaml:\"SuffixConnector\"`\n\tDirectorySuffix []string          `yaml:\"DirectorySuffix\"`\n\tDynamicSuffix   []string          `yaml:\"DynamicSuffix\"`\n\tTimeOut         int               `yaml:\"TimeOut\"`\n\tUserAgent       []string          `yaml:\"UserAgent\"`\n\tProxy           string            `yaml:\"Proxy\"`\n\tCookie          string            `yaml:\"Cookie\"`\n\tHeaders         map[string]string `yaml:\"Headers\"`\n}\n\ntype Config struct {\n\tFilename string\n}\n\nfunc (c *Config) LoadConfigFromYaml() *configs {\n\t/*\n\t\t载入配置文件\n\t*/\n\tcontent, err := ioutil.ReadFile(c.Filename)\n\n\tif err != nil {\n\t\trecord.Logger.Fatal(\"Can not found config\")\n\t\tos.Exit(1)\n\t}\n\n\tvar confBase configs\n\n\t//解析失败会报错，如json字符串格式不对，缺\"号，缺}等。\n\tif err := yaml.Unmarshal(content, &confBase); err != nil {\n\t\trecord.Logger.Fatal(err)\n\t\tos.Exit(1)\n\t}\n\treturn &confBase\n}\n\n// 构造函数\nfunc NewProfile(fileName string) *Config {\n\tc := &Config{\n\t\tFilename: fileName,\n\t}\n\treturn c\n}\n"
  },
  {
    "path": "internal/library/cores/CHANGEME.md",
    "content": "# v1.0.1 2020/12/13\n* 修改operate.go中的ReadDict函数，路径列表采用的是返回参数的形式，不在使用全局变量以降低耦合度。\n\n# v1.0.2 2020/12/16\n* 修改action.go的代码，返回的200, 404, ...模式由原来的switch控制转换为简单工厂模式\n\n# v1.0.2 2020/12/20\n* 修改handler.go的代码，增加CheckMVC函数，用来判断目标是不是MVC框架"
  },
  {
    "path": "internal/library/cores/action.go",
    "content": "package cores\n\nimport (\n\t\"net/http\"\n\t\"path/filepath\"\n\t\"strconv\"\n\t\"time\"\n\n\t\"Caesar/internal/library/director\"\n\t\"Caesar/internal/library/engine\"\n\t\"Caesar/internal/library/extra\"\n\t\"Caesar/internal/pkg/cdn\"\n\t\"Caesar/internal/relation\"\n\t\"Caesar/internal/report\"\n\t\"Caesar/pkg/builder/generated\"\n\t\"Caesar/pkg/record\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc Start(target string, typeRequest bool, paths []relation.TagPath) {\n\t/*\n\t\ttypeRequest:true -> target是url地址\n\t\t\t\t\tfalse -> target是一个标准的http请求文本\n\t*/\n\n\tvar enablePaths []relation.TagPath\n\tvar threads int\n\tvar req engine.RequestInfo\n\n\tvar waf = false\n\tvar mvc = false\n\n\tif typeRequest {\n\t\treq = engine.RequestInfo{\n\t\t\tAddress:   target,\n\t\t\tMethod:    http.MethodGet,\n\t\t\tHeader:    relation.Browser.Headers,\n\t\t\tCookies:   relation.Browser.Cookie,\n\t\t\tBody:      \"\",\n\t\t\tProxy:     relation.Browser.Proxy,\n\t\t\tUserAgent: relation.Browser.UserAgent,\n\t\t\tTimeout:   relation.Browser.TimeOut,\n\t\t}\n\n\t\t// 检查目标连通性\n\t\tif _, _, _, err := director.UnitTest(req.Address, req.Method, utils.GetRandomElement(req.UserAgent), req.Header, req.Proxy, req.Cookies, relation.Browser.TimeOut, req.Body); err != nil {\n\t\t\trecord.Logger.Fatal(\"Can not connect \" + target)\n\t\t\treturn\n\t\t}\n\t} else {\n\n\t\ttarget, method, agent, cookies, headers, data := generated.ParseRequestFromFile(target)\n\n\t\treq = engine.RequestInfo{\n\t\t\tAddress:   utils.ConvertAddress(target),\n\t\t\tMethod:    method,\n\t\t\tHeader:    headers,\n\t\t\tCookies:   cookies,\n\t\t\tBody:      data,\n\t\t\tProxy:     relation.Browser.Proxy,\n\t\t\tUserAgent: []string{agent},\n\t\t\tTimeout:   relation.Browser.TimeOut,\n\t\t}\n\n\t\t// 检查目标连通性\n\t\tif _, _, _, err := director.UnitTest(req.Address, req.Method, utils.GetRandomElement(req.UserAgent), req.Header, req.Proxy, req.Cookies, relation.Browser.TimeOut, req.Body); err != nil {\n\t\t\trecord.Logger.Fatal(\"Can not connect \" + req.Address)\n\t\t\treturn\n\t\t}\n\t}\n\n\t// 检查不存在页面返回的信息\n\tif status, header, body, err := director.UnitTest(req.Address+\"/\"+utils.GenRandString(6), req.Method, utils.GetRandomElement(req.UserAgent), req.Header, req.Proxy, req.Cookies, relation.Browser.TimeOut, req.Body); err == nil {\n\n\t\t// 提取目标地址\n\t\taddress, _ := utils.UrlToAddressAndPort(req.Address)\n\t\tip := utils.DomainToIP(address)\n\n\t\t// 测试是否是内网\n\t\tif utils.IsPrivateIP(ip) {\n\t\t\trecord.Logger.Warn(\"The target is Private \" + req.Address)\n\n\t\t} else {\n\t\t\t// 检查是否是cdn\n\t\t\tif cdn.NewIP(relation.Paths.CdnPath + \"/cdn_ip_cidr.json\").CheckIPCDN(ip) {\n\t\t\t\trecord.Logger.Warn(\"The target is CDN \" + req.Address)\n\t\t\t}\n\t\t}\n\n\t\t// 检查是否存在WAF\n\t\tif CheckWaf(req.Address) {\n\t\t\twaf = true\n\t\t\trecord.Logger.Warn(\"The target by waf project \" + req.Address)\n\t\t\t// 睡3秒\n\t\t\ttime.Sleep(3 * time.Second)\n\n\t\t}\n\n\t\t// 检查是否是MVC框架\n\t\tif checkFrame, frame := CheckMVC(body); checkFrame {\n\t\t\tmvc = true\n\t\t\trecord.Logger.Warn(\"The target is \" + frame)\n\n\t\t}\n\n\t\tthreads = relation.Engine.Threads\n\n\t\tenablePaths = paths\n\n\t\tif len(paths) > relation.Engine.WafTop {\n\t\t\tenablePaths = extra.GetFilterPath(paths, mvc, relation.Engine.WafTop)\n\t\t}\n\n\t\t// 开始构造参数\n\t\tresp := engine.ResponseInfo{\n\t\t\tHeader: header,\n\t\t\tBody:   body,\n\t\t}\n\n\t\topts := engine.ServerOpt{\n\t\t\tPaths:   enablePaths,\n\t\t\tThreads: threads,\n\t\t\tWAF:     waf,\n\t\t}\n\n\t\tif mvc {\n\t\t\tgun := engine.CreateFactory(status, req, resp, opts)\n\t\t\tengine.MVCFuzz(gun)\n\t\t} else {\n\t\t\tgun := engine.CreateFactory(status, req, resp, opts)\n\t\t\tengine.StandFuzz(gun)\n\t\t}\n\n\t\treturn\n\n\t}\n\n}\n\nfunc Export(results map[string][]relation.ResultPtah) {\n\t// 最终结果导出函数\n\tvar resultsList []relation.ResultPtah\n\n\tfor key, value := range results {\n\n\t\trecord.Logger.Debug(key + \" found \" + strconv.Itoa(len(value)) + \" assets\")\n\n\t\tif !relation.Engine.Silence {\n\t\t\tprintln()\n\t\t\t// 善后工作，在终端打印结果\n\t\t\tfor _, v := range value {\n\t\t\t\tprintln(v.Address + \" \" + v.Title + \" \" + strconv.Itoa(v.Code) + \" \" + strconv.Itoa(v.Length))\n\t\t\t}\n\t\t\tprintln()\n\t\t}\n\n\t\tresultsList = append(resultsList, value...)\n\n\t}\n\n\tif len(resultsList) > 0 {\n\t\treport.ExportJson(resultsList, filepath.Join(relation.Paths.Result, \"results.json\"))\n\n\t}\n}\n"
  },
  {
    "path": "internal/library/cores/identify.go",
    "content": "package cores\n\nimport (\n\t\"net/url\"\n\t\"strings\"\n\n\t\"Caesar/internal/library/director\"\n\t\"Caesar/internal/pkg/finger\"\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc CheckWaf(urlAddress string) bool {\n\t/*\n\t   该函数用来判断目标网站是否受WAF保护\n\t*/\n\n\thost := utils.GetNewHost(urlAddress)\n\t_, _, safeBody, _ := director.GenerateNormalGet(host + \"?id=1\")\n\n\tIpsWafCheckPayload := \"AND 1=1 UNION ALL SELECT 1,NULL,'<script>alert(\\\"XSS\\\")</script>',table_name FROM information_schema.tables WHERE 2>1--/**/; EXEC xp_cmdshell('cat ../../../etc/passwd')#\"\n\n\tAllPayLoad := url.PathEscape(IpsWafCheckPayload)\n\n\tvar build strings.Builder\n\tbuild.WriteString(urlAddress)\n\tbuild.WriteString(\"?id=1&\")\n\tbuild.WriteString(utils.GenRandString(4))\n\tbuild.WriteString(\"=\")\n\tbuild.WriteString(AllPayLoad)\n\ts3 := build.String()\n\n\t//_, _, safeBody2, err := director.GenerateNormalGet(s3)\n\t_, _, safeBody2, err := director.GenerateNormalGet(s3)\n\tif err != nil {\n\t\treturn true\n\t}\n\n\tif string(safeBody) == string(safeBody2) {\n\t\t// 如果两个页面相等，证明不存在waf\n\t\treturn false\n\t}\n\n\tif utils.ComputeLevenshteinPercentage(string(safeBody), string(safeBody2)) > relation.Engine.UpperRatioBound {\n\t\treturn false\n\t} else {\n\t\treturn true\n\t}\n\n}\n\nfunc CheckMVC(body []byte) (MVCApp bool, frame string) {\n\t/*\n\t   该函数用来判断目标网站是否是MVC框架\n\t*/\n\n\tif apps, err := finger.NewLoads(relation.Paths.FingerPath + \"/apps.json\").CheckFinger(string(body)); err != nil {\n\t\treturn false, frame\n\n\t} else {\n\t\tif len(apps) == 0 {\n\t\t\treturn false, frame\n\t\t} else {\n\t\t\treturn true, apps\n\t\t}\n\t}\n\n}\n"
  },
  {
    "path": "internal/library/cores/operate.go",
    "content": "package cores\n\nimport (\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"sort\"\n\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc ReadDict(info []string, dicts []map[string]string) []relation.TagPath {\n\t/*\n\t\t用来读取目录字典的数据，转换成列表的形式\n\t*/\n\n\t//// 错误回收\n\t//defer func() {\n\t//\tif recover() != nil {\n\t//\t\tprintln(recover())\n\t//\t}\n\t//}()\n\n\tvar allJson []relation.TagPath\n\n\tfor _, v := range info {\n\t\tvar eachJson []relation.EachPath\n\n\t\tdictPath := utils.GetValueFromList(v, dicts)\n\t\tbytes, err := ioutil.ReadFile(dictPath)\n\t\tif err != nil {\n\t\t\tprintln(dictPath + \" open failed\")\n\t\t\t//panic(dictPath + \" open failed\")\n\t\t\tcontinue\n\t\t}\n\n\t\tif err := json.Unmarshal(bytes, &eachJson); err != nil {\n\t\t\tprintln(\" Unmarshal failed\")\n\t\t\tcontinue\n\t\t}\n\n\t\tfor _, y := range eachJson {\n\t\t\tmid := relation.TagPath{\n\t\t\t\tEachPath: y,\n\t\t\t\tTag:      v,\n\t\t\t}\n\t\t\tallJson = append(allJson, mid)\n\t\t}\n\n\t}\n\n\t// 将每个json数据按照Hits进行排序\n\tsort.Slice(allJson,\n\t\tfunc(i, j int) bool {\n\t\t\treturn allJson[i].Hits > allJson[j].Hits\n\t\t})\n\n\treturn allJson\n\n}\n"
  },
  {
    "path": "internal/library/director/request.go",
    "content": "package director\n\nimport (\n\t\"net/http\"\n\t\"time\"\n\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/builder/net/fasthttp\"\n\t\"Caesar/pkg/builder/net/stand\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc GenerateGet(target string, random bool) (int, http.Header, []byte, error) {\n\tif random {\n\t\tbuild := stand.NewClientBuilder().SetUserAgent(utils.GetRandomElement(relation.Browser.UserAgent)).SetHeader(relation.Browser.Headers).SetCookie(relation.Browser.Cookie).SetProxy(relation.Browser.Proxy).SetTimeOut(relation.Browser.TimeOut).SetSkipVerify(true).StandBuilder()\n\t\treturn build.Get(target)\n\t} else {\n\t\tbuild := stand.NewClientBuilder().SetUserAgent(\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:76.0) Gecko/20100101 Firefox/76.0\").SetHeader(relation.Browser.Headers).SetCookie(relation.Browser.Cookie).SetProxy(relation.Browser.Proxy).SetTimeOut(relation.Browser.TimeOut).SetSkipVerify(true).StandBuilder()\n\t\treturn build.Get(target)\n\t}\n\n}\n\nfunc GenerateNormalGet(target string) (int, http.Header, []byte, error) {\n\tbuild := stand.NewClientBuilder().SetUserAgent(\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:76.0) Gecko/20100101 Firefox/76.0\").SetHeader(relation.Browser.Headers).SetCookie(relation.Browser.Cookie).SetTimeOut(relation.Browser.TimeOut).SetSkipVerify(true).StandBuilder()\n\treturn build.Get(target)\n}\n\nfunc GenerateHttp(target string, httpMethod string, body map[string]string, headers map[string]string, cookies string, proxy string) (int, http.Header, []byte, error) {\n\tbuild := stand.NewClientBuilder().SetHeader(headers).SetCookie(cookies).SetProxy(proxy).SetTimeOut(relation.Browser.TimeOut).SetSkipVerify(true).StandBuilder()\n\treturn build.Get(target)\n}\n\nfunc UnitTest(target string, httpMethod string, UserAgent string, header map[string]string, cookies string, proxy string, timeout time.Duration, body string) (int, http.Header, []byte, error) {\n\tbuild := stand.NewClientBuilder().SetMethod(httpMethod).SetUserAgent(UserAgent).SetHeader(header).SetCookie(cookies).SetProxy(proxy).SetTimeOut(timeout).SetBody(body).SetSkipVerify(true).StandBuilder()\n\treturn build.RawHttp(target)\n}\n\nfunc FastHttpRequest(target string, httpMethod string, UserAgent string) (int, http.Header, []byte, error) {\n\tbuild := fasthttp.NewClientBuilder().SetMethod(httpMethod).SetUserAgent(UserAgent).SetSkipVerify(true).FastBuilder()\n\treturn build.RawRequest(target)\n}\n"
  },
  {
    "path": "internal/library/engine/CHANGEME.md",
    "content": "# 发起请求的核心代码\n\n## v1.0.1 2020/12/11\n* 修改base.go,增加serverOpt用来存储引擎的参数:\n    1. Paths 要遍历的path路径\n    2. Threads 线程数\n    \n* 移除aftermath函数的结果导出代码，遵守单一职责原则。结果导出代码移到action.go的Export函数中\n* force移动到 ../cores/action.go 中\n\n\n## v1.0.2 2020/12/15\n* 修改base.go,增加responseInfo用来存储响应请求的参数:\n* 修改base.go,采用工厂模式\n\n\n## v1.0.2 2020/12/19\n* 修改base.go,ServerOpt添加WAF和MVC两个属性，用来传递WEB是否存在WAF或者是MVC架构"
  },
  {
    "path": "internal/library/engine/base.go",
    "content": "package engine\n\nimport (\n\t\"net/http\"\n\t\"time\"\n\n\t\"Caesar/internal/relation\"\n)\n\n/*\n用来保存扫描后的结构体\n*/\ntype application struct {\n\tStore   []relation.StorePath\n\tResults []relation.ResultPtah // result.json保存\n}\n\n// 引擎参数\ntype ServerOpt struct {\n\tPaths   []relation.TagPath\n\tThreads int\n\tWAF     bool // 是否存在WAF\n}\n\n// 不存在页面的http回响信息\ntype ResponseInfo struct {\n\tHeader http.Header\n\tBody   []byte\n}\n\ntype RequestInfo struct {\n\tAddress   string\n\tMethod    string\n\tHeader    map[string]string\n\tCookies   string\n\tBody      string\n\tProxy     string\n\tUserAgent []string\n\tTimeout   time.Duration\n}\n"
  },
  {
    "path": "internal/library/engine/duck.go",
    "content": "package engine\n\nimport (\n\t\"net/http\"\n\n\t\"Caesar/internal/relation\"\n)\n\ntype mvcRuler interface {\n\tAlphaFuzz() // 第一次扫描\n\tAftermath() // 善后工作\n}\n\ntype StandRuler interface {\n\tmvcRuler\n\tBetaFuzz() // 根据第一次扫描后的path再次进行扫描\n}\n\n// 鸭子类型\nfunc StandFuzz(att StandRuler) {\n\n\tatt.AlphaFuzz()\n\tatt.BetaFuzz()\n\tatt.Aftermath()\n\n}\n\n// mvc版的鸭子类型，区别在于mvc网站不需要二段扫描\nfunc MVCFuzz(att mvcRuler) {\n\n\tatt.AlphaFuzz()\n\tatt.Aftermath()\n\n}\n\n// 简单工厂模式\nfunc CreateFactory(status int, req RequestInfo, resp ResponseInfo, opts ServerOpt) StandRuler {\n\tswitch status {\n\n\tcase http.StatusOK:\n\t\treturn &target200{\n\t\t\trequest:  req,\n\t\t\tresponse: resp,\n\t\t\topts:     opts,\n\t\t\tapplication: application{\n\t\t\t\tStore:   []relation.StorePath{},\n\t\t\t\tResults: []relation.ResultPtah{},\n\t\t\t},\n\t\t}\n\n\tcase http.StatusFound, http.StatusMovedPermanently, http.StatusTemporaryRedirect:\n\t\treturn &target30x{\n\t\t\trequest:  req,\n\t\t\tresponse: resp,\n\t\t\topts:     opts,\n\t\t\tapplication: application{\n\t\t\t\tStore:   []relation.StorePath{},\n\t\t\t\tResults: []relation.ResultPtah{},\n\t\t\t},\n\t\t}\n\n\tcase http.StatusNotFound:\n\t\treturn &target404{\n\t\t\trequest:  req,\n\t\t\tresponse: resp,\n\t\t\topts:     opts,\n\t\t\tapplication: application{\n\t\t\t\tStore:   []relation.StorePath{},\n\t\t\t\tResults: []relation.ResultPtah{},\n\t\t\t},\n\t\t}\n\n\tdefault:\n\t\treturn &target404{\n\t\t\trequest:  req,\n\t\t\tresponse: resp,\n\t\t\topts:     opts,\n\t\t\tapplication: application{\n\t\t\t\tStore:   []relation.StorePath{},\n\t\t\t\tResults: []relation.ResultPtah{},\n\t\t\t},\n\t\t}\n\n\t}\n\n}\n"
  },
  {
    "path": "internal/library/engine/status200.go",
    "content": "package engine\n\nimport (\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"Caesar/internal/library\"\n\t\"Caesar/internal/library/director\"\n\t\"Caesar/internal/library/extra\"\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/record\"\n\t\"Caesar/pkg/utils\"\n)\n\ntype target200 struct {\n\trequest  RequestInfo\n\tresponse ResponseInfo\n\topts     ServerOpt\n\n\t// 用来保存结果\n\tapplication\n}\n\nfunc (t *target200) AlphaFuzz() {\n\tvar wg = &sync.WaitGroup{}\n\tvar mu = &sync.Mutex{}\n\tvar ThreadsChan chan struct{}\n\tvar length = len(t.opts.Paths)\n\n\t// 获取原子锁\n\tcounter := extra.NewCounter()\n\n\tThreadsChan = make(chan struct{}, t.opts.Threads)\n\n\tvar finishChan = make(chan struct{}, length)\n\tvar threadSlice = library.NewSlice()\n\n\t// 启动进度条goroutine\n\tgo library.HeartProgress(wg, finishChan, \"Alpha\")\n\n\tfor _, v := range t.opts.Paths {\n\n\t\tif relation.Engine.TimeSleep > 0 {\n\t\t\ttime.Sleep(time.Duration(relation.Engine.TimeSleep) * time.Second)\n\t\t}\n\n\t\tif !relation.Engine.StopFlag {\n\t\t\tThreadsChan <- struct{}{}\n\t\t\twg.Add(1)\n\n\t\t\tgo func(v relation.TagPath) {\n\n\t\t\t\tvar code int\n\t\t\t\tvar body []byte\n\t\t\t\tvar err error\n\n\t\t\t\ttargetAddress := t.request.Address + v.Path\n\t\t\t\t//code, _, body, err := director.UnitTest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent), t.request.Header, t.request.Cookies, t.request.Proxy, t.request.Timeout, t.request.Body)\n\n\t\t\t\tif len(t.request.Proxy) > 0 || len(t.request.Header) > 0 || len(t.request.Cookies) > 0 || t.request.Timeout > 3 || len(t.request.Body) > 0 {\n\t\t\t\t\tcode, _, body, err = director.UnitTest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent), t.request.Header, t.request.Cookies, t.request.Proxy, t.request.Timeout, t.request.Body)\n\n\t\t\t\t} else {\n\t\t\t\t\tcode, _, body, err = director.FastHttpRequest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent))\n\t\t\t\t}\n\n\t\t\t\tif err != nil {\n\n\t\t\t\t\t//超时时的处理\n\t\t\t\t\tcounter.AddErr()\n\t\t\t\t\trecord.Logger.Error(t.request.Address+\" \", err.Error())\n\n\t\t\t\t\tif counter.CountErr() >= relation.Engine.TimeoutCount && !relation.Engine.StopFlag {\n\t\t\t\t\t\tmu.Lock()\n\t\t\t\t\t\trelation.Engine.StopFlag = true\n\t\t\t\t\t\tmu.Unlock()\n\t\t\t\t\t}\n\n\t\t\t\t\twg.Done()\n\t\t\t\t\t<-ThreadsChan\n\t\t\t\t\tif !relation.Engine.StopFlag {\n\t\t\t\t\t\tfinishChan <- struct{}{}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn\n\n\t\t\t\t}\n\n\t\t\t\tif !(utils.ComputeLevenshteinPercentage(string(body), string(t.response.Body)) > relation.Engine.UpperRatioBound) {\n\n\t\t\t\t\tif utils.IntInSlice(code, relation.Engine.StatusCode) {\n\t\t\t\t\t\tvar title = \"\"\n\n\t\t\t\t\t\tif utils.MatchDynamic(v.Path) {\n\t\t\t\t\t\t\ttitle = utils.MatchTitle(string(body))\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\trecord.Logger.Info(targetAddress + \" \" + strconv.Itoa(code) + \" \" + title)\n\n\t\t\t\t\t\tresult := relation.ResultPtah{\n\t\t\t\t\t\t\tCode:    code,\n\t\t\t\t\t\t\tAddress: targetAddress,\n\t\t\t\t\t\t\tTitle:   title,\n\t\t\t\t\t\t\tLength:  len(body),\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\telement := relation.StorePath{\n\t\t\t\t\t\t\tTagPath:    v,\n\t\t\t\t\t\t\tResultPtah: result,\n\t\t\t\t\t\t}\n\t\t\t\t\t\tthreadSlice.Add(element)\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\twg.Done()\n\t\t\t\t<-ThreadsChan\n\t\t\t\tif !relation.Engine.StopFlag {\n\t\t\t\t\tfinishChan <- struct{}{}\n\t\t\t\t}\n\n\t\t\t}(v)\n\t\t} else {\n\n\t\t\tbreak\n\t\t}\n\t}\n\n\twg.Wait()\n\n\tif relation.Engine.StopFlag {\n\t\trelation.Engine.StopFlag = false\n\t\trecord.Logger.Error(t.request.Address + \" Connect timeout too many, stop\")\n\t}\n\n\tt.Store = threadSlice.Get()\n\n\tfor _, v := range threadSlice.Get() {\n\t\tt.Results = append(t.Results, v.ResultPtah)\n\t}\n\n}\n\nfunc (t *target200) BetaFuzz() {\n\n\tvar suffixString []string\n\tvar existsList []string\n\n\tfor _, v := range t.Store {\n\t\tsuffixString = append(suffixString, v.Path)\n\t\tfirstExists := strings.TrimSuffix(v.Address, \"/\") + strconv.Itoa(v.Code) + strconv.Itoa(v.Length)\n\t\texistsList = append(existsList, firstExists)\n\t}\n\n\tsuffixSlice := extra.CheckSuffix(suffixString)\n\n\tif !relation.Engine.StopFlag {\n\n\t\tlength := len(suffixSlice)\n\t\tfinishChan := make(chan struct{}, length)\n\t\twg := &sync.WaitGroup{}\n\n\t\t// 启动进度条goroutine\n\t\tgo library.HeartProgress(wg, finishChan, \"Beta\")\n\n\t\tfor _, v := range suffixSlice {\n\n\t\t\tif relation.Engine.TimeSleep > 0 {\n\t\t\t\ttime.Sleep(time.Duration(relation.Engine.TimeSleep) * time.Second)\n\t\t\t}\n\n\t\t\ttargetAddress := t.request.Address + v\n\t\t\t//code, _, body, _ := director.GenerateGet(targetAddress, false)\n\t\t\tcode, _, body, _ := director.UnitTest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent), t.request.Header, t.request.Cookies, t.request.Proxy, t.request.Timeout, t.request.Body)\n\n\t\t\tif !(utils.ComputeLevenshteinPercentage(string(body), string(t.response.Body)) > relation.Engine.UpperRatioBound) {\n\n\t\t\t\tif utils.IntInSlice(code, relation.Engine.StatusCode) {\n\t\t\t\t\trecord.Logger.Info(targetAddress + \" \" + strconv.Itoa(code))\n\n\t\t\t\t\texists := strings.TrimSuffix(targetAddress, \"/\") + strconv.Itoa(code) + strconv.Itoa(len(body))\n\n\t\t\t\t\tif !utils.StringInSlice(exists, existsList) {\n\n\t\t\t\t\t\tresult := relation.ResultPtah{\n\t\t\t\t\t\t\tCode:    code,\n\t\t\t\t\t\t\tAddress: targetAddress,\n\t\t\t\t\t\t\tTitle:   \" \",\n\t\t\t\t\t\t\tLength:  len(body),\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tt.Results = append(t.Results, result)\n\t\t\t\t\t\texistsList = append(existsList, exists)\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\t\t\t// 计算进度\n\t\t\tfinishChan <- struct{}{}\n\n\t\t}\n\n\t\twg.Wait()\n\n\t\t//\n\t\t//tmpl := `{{ red \"Beat\" }} {{ bar . \"<\" \"-\" (cycle . \"↖\" \"↗\" \"↘\" \"↙\" ) \".\" \">\"}} {{speed . | rndcolor }} {{percent .}} {{string . \"my_green_string\" | green}} {{string . \"my_blue_string\" | blue}}`\n\t\t//\n\t\t//bar := pb.ProgressBarTemplate(tmpl).Start64(int64(len(suffixSlice)))\n\t\t//\n\t\t//if relation.Engine.Silence {\n\t\t//\tfile, err := os.OpenFile(filepath.Join(relation.Paths.Result, \"progress.log\"), os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)\n\t\t//\tif err != nil {\n\t\t//\t\tbar.SetWriter(nil)\n\t\t//\t} else {\n\t\t//\t\tbar.SetWriter(file)\n\t\t//\t}\n\t\t//\n\t\t//\tdefer func() { _ = file.Close() }()\n\t\t//\n\t\t//}\n\t\t//\n\t\t//for _, v := range suffixSlice {\n\t\t//\n\t\t//\tif relation.Engine.TimeSleep > 0 {\n\t\t//\t\ttime.Sleep(time.Duration(relation.Engine.TimeSleep) * time.Second)\n\t\t//\t}\n\t\t//\n\t\t//\ttargetAddress := t.request.Address + v\n\t\t//\t//code, _, body, _ := director.GenerateGet(targetAddress, false)\n\t\t//\tcode, _, body, _ := director.UnitTest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent), t.request.Header, t.request.Cookies, t.request.Proxy, t.request.Timeout, t.request.Body)\n\t\t//\n\t\t//\tif !(utils.ComputeLevenshteinPercentage(string(body), string(t.response.Body)) > relation.Engine.UpperRatioBound) {\n\t\t//\n\t\t//\t\tif utils.IntInSlice(code, relation.Engine.StatusCode) {\n\t\t//\t\t\trecord.Logger.Info(targetAddress + \" \" + strconv.Itoa(code))\n\t\t//\n\t\t//\t\t\texists := strings.TrimSuffix(targetAddress, \"/\") + strconv.Itoa(code) + strconv.Itoa(len(body))\n\t\t//\n\t\t//\t\t\tif !utils.StringInSlice(exists, existsList) {\n\t\t//\n\t\t//\t\t\t\tresult := relation.ResultPtah{\n\t\t//\t\t\t\t\tCode:    code,\n\t\t//\t\t\t\t\tAddress: targetAddress,\n\t\t//\t\t\t\t\tTitle:   \" \",\n\t\t//\t\t\t\t\tLength:  len(body),\n\t\t//\t\t\t\t}\n\t\t//\n\t\t//\t\t\t\tt.Results = append(t.Results, result)\n\t\t//\t\t\t\texistsList = append(existsList, exists)\n\t\t//\n\t\t//\t\t\t}\n\t\t//\n\t\t//\t\t}\n\t\t//\t}\n\t\t//\n\t\t//\tbar.Increment()\n\t\t//\tbar.Set(\"my_green_string\", strconv.FormatInt(bar.Current(), 10)+\"/\"+strconv.FormatInt(bar.Total(), 10))\n\t\t//\n\t\t//}\n\t\t//\n\t\t//bar.Set(\"my_green_string\", strconv.FormatInt(bar.Current(), 10)+\"/\"+strconv.FormatInt(bar.Total(), 10))\n\t\t//bar.Finish()\n\t} else {\n\t\treturn\n\t}\n\n}\n\nfunc (t *target200) Aftermath() {\n\n\t// 将每个json数据按照Hits进行排序\n\tsort.Slice(t.Results,\n\t\tfunc(i, j int) bool {\n\t\t\treturn t.Results[i].Length > t.Results[j].Length\n\t\t})\n\n\trelation.Engine.CollectAssets[t.request.Address] = t.Results\n\n\tvar results = make(map[string][]string)\n\n\tfor _, v := range t.Store {\n\t\tresults[v.Tag] = append(results[v.Tag], v.Path)\n\t}\n\n\tfor key, value := range results {\n\t\tvar mapJson []relation.EachPath\n\t\tvar newJson []relation.EachPath\n\n\t\tdictPath := utils.GetValueFromList(key, relation.Paths.Dict)\n\t\tbytes, err := ioutil.ReadFile(dictPath)\n\t\tif err != nil {\n\t\t\trecord.Logger.Error(dictPath + \" open failed\")\n\t\t}\n\t\tif err1 := json.Unmarshal(bytes, &mapJson); err1 != nil {\n\t\t\trecord.Logger.Error(\"Write json \" + dictPath + \" failed\")\n\t\t}\n\n\t\t// 用来给hits加1的的地方\n\t\tfor _, m := range mapJson {\n\t\t\tif utils.StringInSlice(m.Path, value) {\n\t\t\t\tm.Hits += 1\n\t\t\t\tnewJson = append(newJson, m)\n\n\t\t\t} else {\n\t\t\t\tnewJson = append(newJson, m)\n\t\t\t}\n\t\t}\n\n\t\t// 最后面4个空格，让json格式更美观\n\t\t//result, errMarshall := json.MarshalIndent(newJson, \"\", \"    \")\n\t\t// 最后面4个空格，让json格式更美观\n\t\tresult, errMarshall := utils.CustomMarshal(newJson)\n\n\t\tif errMarshall != nil {\n\t\t\trecord.Logger.Error(errMarshall.Error())\n\t\t\treturn\n\t\t}\n\n\t\tif err := ioutil.WriteFile(dictPath, []byte(result), 0644); err != nil {\n\t\t\trecord.Logger.Error(\"Write file \" + dictPath + \" error!\")\n\t\t\treturn\n\t\t}\n\t}\n\n\treturn\n}\n\nfunc New200(req RequestInfo, resp ResponseInfo, opts ServerOpt) *target200 {\n\n\treturn &target200{\n\t\trequest:  req,\n\t\tresponse: resp,\n\t\topts:     opts,\n\n\t\tapplication: application{\n\t\t\tStore:   []relation.StorePath{},\n\t\t\tResults: []relation.ResultPtah{},\n\t\t},\n\t}\n\n}\n"
  },
  {
    "path": "internal/library/engine/status30x.go",
    "content": "package engine\n\nimport (\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"Caesar/internal/library\"\n\t\"Caesar/internal/library/director\"\n\t\"Caesar/internal/library/extra\"\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/record\"\n\t\"Caesar/pkg/utils\"\n)\n\ntype target30x struct {\n\trequest  RequestInfo\n\tresponse ResponseInfo\n\topts     ServerOpt\n\n\tapplication\n}\n\nfunc (t *target30x) AlphaFuzz() {\n\n\tvar wg = &sync.WaitGroup{}\n\tvar mu = &sync.Mutex{}\n\tvar ThreadsChan chan struct{}\n\tvar length = len(t.opts.Paths)\n\n\t// 获取原子锁\n\tcounter := extra.NewCounter()\n\n\tThreadsChan = make(chan struct{}, t.opts.Threads)\n\n\tvar finishChan = make(chan struct{}, length)\n\tvar threadSlice = library.NewSlice()\n\n\t// 启动进度条goroutine\n\tgo library.HeartProgress(wg, finishChan, \"Alpha\")\n\n\tfor _, v := range t.opts.Paths {\n\n\t\tif relation.Engine.TimeSleep > 0 {\n\t\t\ttime.Sleep(time.Duration(relation.Engine.TimeSleep) * time.Second)\n\t\t}\n\n\t\tif !relation.Engine.StopFlag {\n\t\t\tThreadsChan <- struct{}{}\n\t\t\twg.Add(1)\n\n\t\t\tgo func(v relation.TagPath) {\n\t\t\t\ttargetAddress := t.request.Address + v.Path\n\t\t\t\t//code, header, body, err := director.GenerateGet(targetAddress, false)\n\t\t\t\tcode, header, body, err := director.UnitTest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent), t.request.Header, t.request.Cookies, t.request.Proxy, t.request.Timeout, t.request.Body)\n\n\t\t\t\tif err != nil {\n\n\t\t\t\t\t//超时时的处理\n\t\t\t\t\tcounter.AddErr()\n\t\t\t\t\trecord.Logger.Error(t.request.Address+\" \", err.Error())\n\n\t\t\t\t\tif counter.CountErr() >= relation.Engine.TimeoutCount && !relation.Engine.StopFlag {\n\t\t\t\t\t\tmu.Lock()\n\t\t\t\t\t\trelation.Engine.StopFlag = true\n\t\t\t\t\t\tmu.Unlock()\n\t\t\t\t\t}\n\n\t\t\t\t\twg.Done()\n\t\t\t\t\t<-ThreadsChan\n\t\t\t\t\tif !relation.Engine.StopFlag {\n\t\t\t\t\t\tfinishChan <- struct{}{}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn\n\t\t\t\t}\n\n\t\t\t\t// 如果跳转地址相似度很低，确定存在页面\n\t\t\t\tif utils.ComputeLevenshteinPercentage(t.response.Header.Get(\"Location\"), header.Get(\"Location\")) < relation.Engine.UpperRatioBound {\n\n\t\t\t\t\tif utils.IntInSlice(code, relation.Engine.StatusCode) {\n\t\t\t\t\t\tvar title = \"\"\n\n\t\t\t\t\t\tif utils.MatchDynamic(v.Path) {\n\t\t\t\t\t\t\ttitle = utils.MatchTitle(string(body))\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\trecord.Logger.Info(targetAddress + \" \" + strconv.Itoa(code) + \" \" + title)\n\t\t\t\t\t\tresult := relation.ResultPtah{\n\t\t\t\t\t\t\tCode:    code,\n\t\t\t\t\t\t\tAddress: targetAddress,\n\t\t\t\t\t\t\tTitle:   title,\n\t\t\t\t\t\t\tLength:  len(body),\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\telement := relation.StorePath{\n\t\t\t\t\t\t\tTagPath:    v,\n\t\t\t\t\t\t\tResultPtah: result,\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tthreadSlice.Add(element)\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\twg.Done()\n\t\t\t\t<-ThreadsChan\n\t\t\t\tif !relation.Engine.StopFlag {\n\t\t\t\t\tfinishChan <- struct{}{}\n\t\t\t\t}\n\n\t\t\t}(v)\n\t\t} else {\n\n\t\t\tbreak\n\t\t}\n\t}\n\n\twg.Wait()\n\n\tif relation.Engine.StopFlag {\n\t\trelation.Engine.StopFlag = false\n\t\trecord.Logger.Error(t.request.Address + \" Connect timeout too many, stop\")\n\t}\n\n\tt.Store = threadSlice.Get()\n\n\tfor _, v := range threadSlice.Get() {\n\t\tt.Results = append(t.Results, v.ResultPtah)\n\t}\n\n}\n\nfunc (t *target30x) BetaFuzz() {\n\tvar suffixString []string\n\tvar existsList []string\n\n\tfor _, v := range t.Store {\n\t\tsuffixString = append(suffixString, v.Path)\n\n\t\tfirstExists := strings.TrimSuffix(v.Address, \"/\") + strconv.Itoa(v.Code) + strconv.Itoa(v.Length)\n\t\texistsList = append(existsList, firstExists)\n\t}\n\n\tsuffixSlice := extra.CheckSuffix(suffixString)\n\n\tif !relation.Engine.StopFlag {\n\n\t\tlength := len(suffixSlice)\n\t\tfinishChan := make(chan struct{}, length)\n\t\twg := &sync.WaitGroup{}\n\n\t\t// 启动进度条goroutine\n\t\tgo library.HeartProgress(wg, finishChan, \"Beta\")\n\n\t\tfor _, v := range suffixSlice {\n\n\t\t\tif relation.Engine.TimeSleep > 0 {\n\t\t\t\ttime.Sleep(time.Duration(relation.Engine.TimeSleep) * time.Second)\n\t\t\t}\n\n\t\t\ttargetAddress := t.request.Address + v\n\t\t\tcode, header, body, _ := director.GenerateGet(targetAddress, false)\n\n\t\t\tif t.response.Header.Get(\"Location\") != header.Get(\"Location\") {\n\n\t\t\t\tif utils.IntInSlice(code, relation.Engine.StatusCode) {\n\t\t\t\t\trecord.Logger.Info(targetAddress + \" \" + strconv.Itoa(code))\n\n\t\t\t\t\texists := strings.TrimSuffix(targetAddress, \"/\") + strconv.Itoa(code) + strconv.Itoa(len(body))\n\n\t\t\t\t\tif !utils.StringInSlice(exists, existsList) {\n\n\t\t\t\t\t\tresult := relation.ResultPtah{\n\t\t\t\t\t\t\tCode:    code,\n\t\t\t\t\t\t\tAddress: targetAddress,\n\t\t\t\t\t\t\tTitle:   \" \",\n\t\t\t\t\t\t\tLength:  len(body),\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tt.Results = append(t.Results, result)\n\t\t\t\t\t\texistsList = append(existsList, exists)\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfinishChan <- struct{}{}\n\t\t}\n\n\t\twg.Wait()\n\n\t\t//\n\t\t//tmpl := `{{ red \"Beat\" }} {{ bar . \"<\" \"-\" (cycle . \"↖\" \"↗\" \"↘\" \"↙\" ) \".\" \">\"}} {{speed . | rndcolor }} {{percent .}} {{string . \"my_green_string\" | green}} {{string . \"my_blue_string\" | blue}}`\n\t\t//\n\t\t//bar := pb.ProgressBarTemplate(tmpl).Start64(int64(len(suffixSlice)))\n\t\t//\n\t\t//if relation.Engine.Silence {\n\t\t//\tfile, err := os.OpenFile(filepath.Join(relation.Paths.Result, \"progress.log\"), os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)\n\t\t//\tif err != nil {\n\t\t//\t\tbar.SetWriter(nil)\n\t\t//\t} else {\n\t\t//\t\tbar.SetWriter(file)\n\t\t//\t}\n\t\t//\n\t\t//\tdefer func() { _ = file.Close() }()\n\t\t//\n\t\t//}\n\t\t//\n\t\t//for _, v := range suffixSlice {\n\t\t//\n\t\t//\tif relation.Engine.TimeSleep > 0 {\n\t\t//\t\ttime.Sleep(time.Duration(relation.Engine.TimeSleep) * time.Second)\n\t\t//\t}\n\t\t//\n\t\t//\ttargetAddress := t.request.Address + v\n\t\t//\tcode, header, body, _ := director.GenerateGet(targetAddress, false)\n\t\t//\n\t\t//\tif t.response.Header.Get(\"Location\") != header.Get(\"Location\") {\n\t\t//\n\t\t//\t\tif utils.IntInSlice(code, relation.Engine.StatusCode) {\n\t\t//\t\t\trecord.Logger.Info(targetAddress + \" \" + strconv.Itoa(code))\n\t\t//\n\t\t//\t\t\texists := strings.TrimSuffix(targetAddress, \"/\") + strconv.Itoa(code) + strconv.Itoa(len(body))\n\t\t//\n\t\t//\t\t\tif !utils.StringInSlice(exists, existsList) {\n\t\t//\n\t\t//\t\t\t\tresult := relation.ResultPtah{\n\t\t//\t\t\t\t\tCode:    code,\n\t\t//\t\t\t\t\tAddress: targetAddress,\n\t\t//\t\t\t\t\tTitle:   \" \",\n\t\t//\t\t\t\t\tLength:  len(body),\n\t\t//\t\t\t\t}\n\t\t//\n\t\t//\t\t\t\tt.Results = append(t.Results, result)\n\t\t//\t\t\t\texistsList = append(existsList, exists)\n\t\t//\n\t\t//\t\t\t}\n\t\t//\n\t\t//\t\t}\n\t\t//\t}\n\t\t//\n\t\t//\tbar.Increment()\n\t\t//\tbar.Set(\"my_green_string\", strconv.FormatInt(bar.Current(), 10)+\"/\"+strconv.FormatInt(bar.Total(), 10))\n\t\t//\n\t\t//}\n\t\t//\n\t\t//bar.Set(\"my_green_string\", strconv.FormatInt(bar.Current(), 10)+\"/\"+strconv.FormatInt(bar.Total(), 10))\n\t\t//bar.Finish()\n\t} else {\n\t\treturn\n\t}\n\n}\n\nfunc (t *target30x) Aftermath() {\n\n\t// 将每个json数据按照Hits进行排序\n\tsort.Slice(t.Results,\n\t\tfunc(i, j int) bool {\n\t\t\treturn t.Results[i].Length > t.Results[j].Length\n\t\t})\n\n\trelation.Engine.CollectAssets[t.request.Address] = t.Results\n\n\tvar results = make(map[string][]string)\n\n\t// 进行hits+1操作\n\tfor _, v := range t.Store {\n\t\tresults[v.Tag] = append(results[v.Tag], v.Path)\n\t}\n\n\tfor key, value := range results {\n\t\tvar mapJson []relation.EachPath\n\t\tvar newJson []relation.EachPath\n\t\tdictPath := utils.GetValueFromList(key, relation.Paths.Dict)\n\t\tbytes, err := ioutil.ReadFile(dictPath)\n\t\tif err != nil {\n\t\t\trecord.Logger.Error(dictPath + \" open failed\")\n\t\t}\n\t\tif err1 := json.Unmarshal(bytes, &mapJson); err1 != nil {\n\t\t\trecord.Logger.Error(\"Write json \" + dictPath + \" failed\")\n\t\t}\n\n\t\t// 用来给hits加1的的地方\n\t\tfor _, m := range mapJson {\n\t\t\tif utils.StringInSlice(m.Path, value) {\n\t\t\t\tm.Hits += 1\n\t\t\t\tnewJson = append(newJson, m)\n\n\t\t\t} else {\n\t\t\t\tnewJson = append(newJson, m)\n\t\t\t}\n\t\t}\n\n\t\t// 最后面4个空格，让json格式更美观\n\t\t//result, errMarshall := json.MarshalIndent(newJson, \"\", \"    \")\n\t\t// 最后面4个空格，让json格式更美观\n\t\tresult, errMarshall := utils.CustomMarshal(newJson)\n\n\t\tif errMarshall != nil {\n\t\t\trecord.Logger.Error(errMarshall.Error())\n\t\t\treturn\n\t\t}\n\n\t\tif err := ioutil.WriteFile(dictPath, []byte(result), 0644); err != nil {\n\t\t\trecord.Logger.Error(\"Write file \" + dictPath + \" error!\")\n\t\t\treturn\n\t\t}\n\t}\n\n\treturn\n\n}\n\nfunc New30x(req RequestInfo, resp ResponseInfo, opts ServerOpt) *target30x {\n\n\treturn &target30x{\n\t\trequest:  req,\n\t\tresponse: resp,\n\t\topts:     opts,\n\n\t\tapplication: application{\n\t\t\tStore:   []relation.StorePath{},\n\t\t\tResults: []relation.ResultPtah{},\n\t\t},\n\t}\n\n}\n"
  },
  {
    "path": "internal/library/engine/status404.go",
    "content": "package engine\n\nimport (\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"sort\"\n\t\"strconv\"\n\t\"sync\"\n\t\"time\"\n\n\t\"Caesar/internal/library\"\n\t\"Caesar/internal/library/director\"\n\t\"Caesar/internal/library/extra\"\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/record\"\n\t\"Caesar/pkg/utils\"\n)\n\ntype target404 struct {\n\trequest  RequestInfo\n\tresponse ResponseInfo\n\topts     ServerOpt\n\n\tapplication\n}\n\nfunc (t *target404) AlphaFuzz() {\n\n\tvar wg = &sync.WaitGroup{}\n\tvar mu = &sync.Mutex{}\n\tvar ThreadsChan chan struct{}\n\tvar length = len(t.opts.Paths)\n\n\t// 获取原子锁,用来计算连接超时的次数\n\tcounter := extra.NewCounter()\n\n\tThreadsChan = make(chan struct{}, t.opts.Threads)\n\tfinishChan := make(chan struct{}, length)\n\tthreadSlice := library.NewSlice()\n\n\t// 启动进度条goroutine\n\tgo library.HeartProgress(wg, finishChan, \"Alpha\")\n\n\tfor _, v := range t.opts.Paths {\n\n\t\tif relation.Engine.TimeSleep > 0 {\n\t\t\ttime.Sleep(time.Duration(relation.Engine.TimeSleep) * time.Second)\n\t\t}\n\n\t\tif !relation.Engine.StopFlag {\n\t\t\tThreadsChan <- struct{}{}\n\t\t\twg.Add(1)\n\n\t\t\tgo func(v relation.TagPath) {\n\t\t\t\tvar code int\n\t\t\t\tvar body []byte\n\t\t\t\tvar err error\n\n\t\t\t\ttargetAddress := t.request.Address + v.Path\n\n\t\t\t\t//code, _, body, err := director.GenerateGet(targetAddress, true)\n\n\t\t\t\tif len(t.request.Proxy) > 0 || len(t.request.Header) > 0 || len(t.request.Cookies) > 0 || t.request.Timeout > 3 || len(t.request.Body) > 0 {\n\t\t\t\t\tcode, _, body, err = director.UnitTest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent), t.request.Header, t.request.Cookies, t.request.Proxy, t.request.Timeout, t.request.Body)\n\n\t\t\t\t} else {\n\t\t\t\t\tcode, _, body, err = director.FastHttpRequest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent))\n\t\t\t\t}\n\t\t\t\t// code, _, body, err := director.UnitTest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent), t.request.Header, t.request.Cookies, t.request.Proxy, t.request.Timeout, t.request.Body)\n\n\t\t\t\tif err != nil {\n\n\t\t\t\t\t//超时时的处理\n\t\t\t\t\tcounter.AddErr()\n\t\t\t\t\trecord.Logger.Error(t.request.Address+\" \", err.Error())\n\n\t\t\t\t\tif counter.CountErr() >= relation.Engine.TimeoutCount && !relation.Engine.StopFlag {\n\t\t\t\t\t\tmu.Lock()\n\t\t\t\t\t\trelation.Engine.StopFlag = true\n\t\t\t\t\t\tmu.Unlock()\n\t\t\t\t\t}\n\n\t\t\t\t\twg.Done()\n\t\t\t\t\t<-ThreadsChan\n\t\t\t\t\tif !relation.Engine.StopFlag {\n\t\t\t\t\t\tfinishChan <- struct{}{}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn\n\t\t\t\t}\n\n\t\t\t\tif utils.IntInSlice(code, relation.Engine.StatusCode) {\n\t\t\t\t\tvar title = \"\"\n\n\t\t\t\t\tif utils.MatchDynamic(v.Path) {\n\t\t\t\t\t\ttitle = utils.MatchTitle(string(body))\n\t\t\t\t\t}\n\n\t\t\t\t\trecord.Logger.Info(targetAddress + \" \" + strconv.Itoa(code) + \" \" + title)\n\n\t\t\t\t\teach := relation.ResultPtah{\n\t\t\t\t\t\tCode:    code,\n\t\t\t\t\t\tAddress: targetAddress,\n\t\t\t\t\t\tTitle:   title,\n\t\t\t\t\t\tLength:  len(body),\n\t\t\t\t\t}\n\n\t\t\t\t\telement := relation.StorePath{\n\t\t\t\t\t\tTagPath:    v,\n\t\t\t\t\t\tResultPtah: each,\n\t\t\t\t\t}\n\n\t\t\t\t\tthreadSlice.Add(element)\n\t\t\t\t}\n\n\t\t\t\twg.Done()\n\t\t\t\t<-ThreadsChan\n\t\t\t\tif !relation.Engine.StopFlag {\n\t\t\t\t\tfinishChan <- struct{}{}\n\t\t\t\t}\n\t\t\t\treturn\n\n\t\t\t}(v)\n\t\t} else {\n\n\t\t\tbreak\n\t\t}\n\t}\n\n\twg.Wait()\n\n\tif relation.Engine.StopFlag {\n\t\trelation.Engine.StopFlag = false\n\t\trecord.Logger.Error(t.request.Address + \" Connect timeout too many, stop\")\n\t}\n\n\tt.Store = threadSlice.Get()\n\n\tfor _, v := range threadSlice.Get() {\n\t\tt.Results = append(t.Results, v.ResultPtah)\n\t}\n}\n\nfunc (t *target404) BetaFuzz() {\n\n\tvar suffixString []string\n\n\t// 用来避免一些不同路径返回相同信息的状况\n\tvar existsMap = map[string]bool{}\n\n\tfor _, v := range t.Store {\n\t\tsuffixString = append(suffixString, v.Path)\n\n\t\tfirstExists := strconv.Itoa(v.Code) + strconv.Itoa(v.Length)\n\t\t//existsList = append(existsList, firstExists)\n\t\tif _, ok := existsMap[firstExists]; !ok {\n\t\t\texistsMap[firstExists] = true\n\t\t}\n\t}\n\n\tsuffixSlice := extra.CheckSuffix(suffixString)\n\n\tif !relation.Engine.StopFlag {\n\t\tlength := len(suffixSlice)\n\t\tfinishChan := make(chan struct{}, length)\n\t\twg := &sync.WaitGroup{}\n\n\t\t// 启动进度条goroutine\n\t\tgo library.HeartProgress(wg, finishChan, \"Beta\")\n\n\t\tfor _, v := range suffixSlice {\n\n\t\t\tif relation.Engine.TimeSleep > 0 {\n\t\t\t\ttime.Sleep(time.Duration(relation.Engine.TimeSleep) * time.Second)\n\t\t\t}\n\n\t\t\ttargetAddress := t.request.Address + v\n\t\t\t//code, _, body, _ := director.GenerateNormalGet(targetAddress)\n\t\t\t//code, _, body, _ := director.GenerateGet(targetAddress, true)\n\t\t\tcode, _, body, _ := director.UnitTest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent), t.request.Header, t.request.Cookies, t.request.Proxy, t.request.Timeout, t.request.Body)\n\n\t\t\tif utils.IntInSlice(code, relation.Engine.StatusCode) {\n\t\t\t\trecord.Logger.Info(targetAddress + \" \" + strconv.Itoa(code) + \"  \" + strconv.Itoa(len(body)))\n\n\t\t\t\t// 避免 http://127.0.0.1/admin和 http://127.0.0.1/admin/返回结果相同的问题\n\t\t\t\t//exists := strings.TrimSuffix(targetAddress, \"/\") + strconv.Itoa(code) + strconv.Itoa(len(body))\n\n\t\t\t\tfirstExists := strconv.Itoa(code) + strconv.Itoa(len(body))\n\n\t\t\t\tif _, ok := existsMap[firstExists]; !ok {\n\n\t\t\t\t\tresult := relation.ResultPtah{\n\t\t\t\t\t\tCode:    code,\n\t\t\t\t\t\tAddress: targetAddress,\n\t\t\t\t\t\tTitle:   \" \",\n\t\t\t\t\t\tLength:  len(body),\n\t\t\t\t\t}\n\n\t\t\t\t\tt.Results = append(t.Results, result)\n\n\t\t\t\t\texistsMap[firstExists] = true\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t// 计算进度\n\t\t\tfinishChan <- struct{}{}\n\n\t\t}\n\n\t\twg.Wait()\n\t}\n\n\t//if !relation.Engine.StopFlag {\n\t//\ttmpl := `{{ red \"Beat\" }} {{ bar . \"<\" \"-\" (cycle . \"↖\" \"↗\" \"↘\" \"↙\" ) \".\" \">\"}} {{speed . | rndcolor }} {{percent .}} {{string . \"my_green_string\" | green}} {{string . \"my_blue_string\" | blue}}`\n\t//\n\t//\tbar := pb.ProgressBarTemplate(tmpl).Start64(int64(len(suffixSlice)))\n\t//\n\t//\tif relation.Engine.Silence {\n\t//\t\tfile, err := os.OpenFile(filepath.Join(relation.Paths.Result, \"progress.log\"), os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)\n\t//\t\tif err != nil {\n\t//\t\t\tbar.SetWriter(nil)\n\t//\t\t} else {\n\t//\t\t\tbar.SetWriter(file)\n\t//\t\t}\n\t//\t\tdefer func() { _ = file.Close() }()\n\t//\n\t//\t}\n\t//\n\t//\tfor _, v := range suffixSlice {\n\t//\n\t//\t\tif relation.Engine.TimeSleep > 0 {\n\t//\t\t\ttime.Sleep(time.Duration(relation.Engine.TimeSleep) * time.Second)\n\t//\t\t}\n\t//\n\t//\t\ttargetAddress := t.request.Address + v\n\t//\t\t//code, _, body, _ := director.GenerateNormalGet(targetAddress)\n\t//\t\t//code, _, body, _ := director.GenerateGet(targetAddress, true)\n\t//\t\tcode, _, body, _ := director.UnitTest(targetAddress, t.request.Method, utils.GetRandomElement(t.request.UserAgent), t.request.Header, t.request.Cookies, t.request.Proxy, t.request.Timeout, t.request.Body)\n\t//\n\t//\t\tif utils.IntInSlice(code, relation.Engine.StatusCode) {\n\t//\t\t\trecord.Logger.Info(targetAddress + \" \" + strconv.Itoa(code) + \"  \" + strconv.Itoa(len(body)))\n\t//\n\t//\t\t\t// 避免 http://127.0.0.1/admin和 http://127.0.0.1/admin/返回结果相同的问题\n\t//\t\t\t//exists := strings.TrimSuffix(targetAddress, \"/\") + strconv.Itoa(code) + strconv.Itoa(len(body))\n\t//\n\t//\t\t\tfirstExists := strconv.Itoa(code) + strconv.Itoa(len(body))\n\t//\n\t//\t\t\tif _, ok := existsMap[firstExists]; !ok {\n\t//\n\t//\t\t\t\tresult := relation.ResultPtah{\n\t//\t\t\t\t\tCode:    code,\n\t//\t\t\t\t\tAddress: targetAddress,\n\t//\t\t\t\t\tTitle:   \" \",\n\t//\t\t\t\t\tLength:  len(body),\n\t//\t\t\t\t}\n\t//\n\t//\t\t\t\tt.Results = append(t.Results, result)\n\t//\n\t//\t\t\t\texistsMap[firstExists] = true\n\t//\n\t//\t\t\t}\n\t//\n\t//\t\t}\n\t//\n\t//\t\tbar.Increment()\n\t//\t\tbar.Set(\"my_green_string\", strconv.FormatInt(bar.Current(), 10)+\"/\"+strconv.FormatInt(bar.Total(), 10))\n\t//\n\t//\t}\n\t//\n\t//\tbar.Set(\"my_green_string\", strconv.FormatInt(bar.Current(), 10)+\"/\"+strconv.FormatInt(bar.Total(), 10))\n\t//\tbar.Finish()\n\t//} else {\n\t//\treturn\n\t//}\n\n}\n\nfunc (t *target404) Aftermath() {\n\n\t// 将每个json数据按照Hits进行排序\n\tsort.Slice(t.Results,\n\t\tfunc(i, j int) bool {\n\t\t\treturn t.Results[i].Length > t.Results[j].Length\n\t\t})\n\trelation.Engine.CollectAssets[t.request.Address] = t.Results\n\n\tvar results = make(map[string][]string)\n\n\t// 进行hits+1操作\n\tfor _, v := range t.Store {\n\t\tresults[v.Tag] = append(results[v.Tag], v.Path)\n\t}\n\n\tfor key, value := range results {\n\t\tvar mapJson []relation.EachPath\n\t\tvar newJson []relation.EachPath\n\t\tdictPath := utils.GetValueFromList(key, relation.Paths.Dict)\n\t\tbytes, err := ioutil.ReadFile(dictPath)\n\t\tif err != nil {\n\t\t\trecord.Logger.Error(dictPath + \" open failed\")\n\t\t}\n\t\tif err1 := json.Unmarshal(bytes, &mapJson); err1 != nil {\n\t\t\trecord.Logger.Error(\"Write json \" + dictPath + \" failed\")\n\t\t}\n\n\t\t// 用来给hits加1的的地方\n\t\tfor _, m := range mapJson {\n\t\t\tif utils.StringInSlice(m.Path, value) {\n\t\t\t\tm.Hits += 1\n\t\t\t\tnewJson = append(newJson, m)\n\n\t\t\t} else {\n\t\t\t\tnewJson = append(newJson, m)\n\t\t\t}\n\t\t}\n\n\t\t// 序列化数据\n\t\tresult, errMarshall := utils.CustomMarshal(newJson)\n\n\t\tif errMarshall != nil {\n\t\t\trecord.Logger.Error(errMarshall.Error())\n\t\t\treturn\n\t\t}\n\n\t\tif err := ioutil.WriteFile(dictPath, []byte(result), 0644); err != nil {\n\t\t\trecord.Logger.Error(\"Write file \" + dictPath + \" error!\")\n\t\t\treturn\n\t\t}\n\t}\n\n\treturn\n}\n\nfunc New404(req RequestInfo, resp ResponseInfo, opts ServerOpt) *target404 {\n\n\treturn &target404{\n\t\trequest:  req,\n\t\tresponse: resp,\n\t\topts:     opts,\n\n\t\tapplication: application{\n\t\t\tStore:   []relation.StorePath{},\n\t\t\tResults: []relation.ResultPtah{},\n\t\t},\n\t}\n\n}\n"
  },
  {
    "path": "internal/library/extra/CHANGEME.md",
    "content": "\n### v1.0.1 2020/12/10\n* [CHANGE] 1. 增加filter.go文件，用来根据目标情况挑选过滤特定的路径."
  },
  {
    "path": "internal/library/extra/README.md",
    "content": "# filter.go "
  },
  {
    "path": "internal/library/extra/filter.go",
    "content": "package extra\n\nimport (\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc GetFilterPath(paths []relation.TagPath, mvc bool, Top int) []relation.TagPath {\n\tvar newPaths []relation.TagPath\n\n\tif mvc {\n\t\t// 如果是mvc模式的网站，则排除类似.jsp, .php, .zip的后缀路径\n\t\tfor _, v := range paths {\n\t\t\tif matchedDir := utils.MatchDir(v.Path); matchedDir {\n\t\t\t\tnewPaths = append(newPaths, v)\n\n\t\t\t}\n\t\t}\n\t} else {\n\t\tnewPaths = paths\n\t}\n\n\tif Top != 0 {\n\t\treturn newPaths[0:Top]\n\t} else {\n\t\treturn newPaths\n\t}\n\n}\n"
  },
  {
    "path": "internal/library/extra/suffix.go",
    "content": "package extra\n\nimport (\n\t\"strings\"\n\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc CheckSuffix(paths []string) []string {\n\tvar newPathSlice []string\n\tfor _, v := range paths {\n\t\t// 判断是否是动态文件\n\t\tmatchedFIle := utils.MatchDynamic(v)\n\t\tif matchedFIle {\n\t\t\t// index.php~\n\t\t\t//each := v + \"~\"\n\t\t\teach := v + \"~\"\n\t\t\tnewPathSlice = append(newPathSlice, each)\n\n\t\t\tfor _, k := range relation.Engine.DirectoryDirSuffix {\n\t\t\t\tfor _, m := range relation.Engine.SuffixSymbol {\n\t\t\t\t\tnewPath := v + m + k\n\t\t\t\t\tnewPathSlice = append(newPathSlice, newPath)\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// 判断是否是目录\n\t\t//matchedDir, _ := regexp.MatchString(`\\..{3,4}$`, v)\n\t\tmatchedDir := utils.MatchDir(v)\n\t\tif matchedDir {\n\t\t\tfor _, l := range relation.Engine.DynamicFileSuffix {\n\n\t\t\t\t// 下面的逻辑if判断是为了解决:\n\t\t\t\t// http://127.0.0.1/admin -> 200\n\t\t\t\t// http://127.0.0.1/admin/ -> 404\n\t\t\t\tif strings.HasSuffix(v, \"/\") {\n\t\t\t\t\tdirPath := strings.TrimSuffix(v, \"/\")\n\t\t\t\t\tnewPathSlice = append(newPathSlice, dirPath)\n\n\t\t\t\t} else {\n\t\t\t\t\tdirPath := v + \"/\"\n\t\t\t\t\tnewPathSlice = append(newPathSlice, dirPath)\n\t\t\t\t}\n\n\t\t\t\tnewPath := strings.TrimSuffix(v, \"/\") + \".\" + l\n\t\t\t\tnewPathSlice = append(newPathSlice, newPath)\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\treturn utils.RemoveDuplicateElement(newPathSlice)\n\n}\n"
  },
  {
    "path": "internal/library/extra/timer.go",
    "content": "package extra\n\nimport (\n\t\"sync/atomic\"\n)\n\ntype Counter struct {\n\tErr uint32\n}\n\n//生成原子计数器\nfunc NewCounter() *Counter {\n\n\treturn &Counter{0}\n}\n\nfunc (c *Counter) AddErr() {\n\tatomic.AddUint32(&c.Err, 1)\n}\n\nfunc (c *Counter) ClearErr() {\n\tatomic.StoreUint32(&c.Err, 0)\n}\n\nfunc (c *Counter) CountErr() int {\n\treturn int(atomic.LoadUint32(&c.Err))\n}\n"
  },
  {
    "path": "internal/library/progress.go",
    "content": "package library\n\nimport (\n\t\"os\"\n\t\"path/filepath\"\n\t\"strconv\"\n\t\"sync\"\n\t\"time\"\n\n\t\"Caesar/internal/relation\"\n\n\t\"github.com/cheggaaa/pb/v3\"\n)\n\nfunc HeartProgress(wg *sync.WaitGroup, finished chan struct{}, msg string) {\n\t/*\n\t\t心跳函数，主要用来打印进度条\n\t*/\n\twg.Add(1)\n\tdefer wg.Done()\n\n\ttotal := cap(finished)\n\n\ttmpl := `{{ red \"'` + msg + `'\" }} {{ bar . \"<\" \"-\" (cycle . \"↖\" \"↗\" \"↘\" \"↙\" ) \".\" \">\"}} {{speed . | rndcolor }} {{percent .}} {{string . \"my_green_string\" | green}} {{string . \"my_blue_string\" | blue}}`\n\t//start bar based on our template\n\tbar := pb.ProgressBarTemplate(tmpl).Start64(int64(total))\n\t// set values for string elements\n\tbar.Set(\"my_green_string\", \"count\")\n\t//\tSet(\"my_blue_string\", \"blue\")\n\n\tif relation.Engine.Silence {\n\t\t// file, err := os.Create(filepath.Join(relation.Paths.Result, \"progress.log\"))\n\t\tfile, err := os.OpenFile(filepath.Join(relation.Paths.Result, \"progress.log\"), os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)\n\t\tif err != nil {\n\t\t\tbar.SetWriter(nil)\n\t\t} else {\n\t\t\tbar.SetWriter(file)\n\t\t}\n\n\t\tdefer func() { _ = file.Close() }()\n\n\t}\n\n\tfor true {\n\n\t\tif relation.Engine.StopFlag {\n\t\t\tbar.Set(\"my_green_string\", strconv.Itoa(total)+\"/\"+strconv.Itoa(total))\n\t\t\tbar.SetCurrent(int64(total))\n\t\t\tbar.Finish()\n\n\t\t\tclose(finished)\n\t\t\tbreak\n\n\t\t}\n\n\t\tif len(finished) == total {\n\t\t\tbar.Set(\"my_green_string\", strconv.Itoa(total)+\"/\"+strconv.Itoa(total))\n\t\t\tbar.SetCurrent(int64(total))\n\t\t\tbar.Finish()\n\t\t\tclose(finished)\n\t\t\tbreak\n\t\t}\n\t\tbar.Set(\"my_green_string\", strconv.Itoa(len(finished))+\"/\"+strconv.Itoa(total))\n\t\tbar.SetCurrent(int64(len(finished)))\n\t\ttime.Sleep(400 * time.Millisecond)\n\n\t}\n\n}\n"
  },
  {
    "path": "internal/library/safes.go",
    "content": "package library\n\nimport (\n\t\"sync\"\n\n\t\"Caesar/internal/relation\"\n)\n\n/*\n实现一个线程安全的slice\n*/\n\ntype ThreadsSlice struct {\n\tlocker *sync.RWMutex\n\tslices []relation.StorePath\n}\n\nfunc (ts *ThreadsSlice) Add(element relation.StorePath) {\n\tts.locker.Lock()\n\tts.slices = append(ts.slices, element)\n\tts.locker.Unlock()\n}\n\nfunc (ts *ThreadsSlice) Get() []relation.StorePath {\n\treturn ts.slices\n}\n\nfunc NewSlice() *ThreadsSlice {\n\treturn &ThreadsSlice{\n\t\tlocker: &sync.RWMutex{},\n\t\tslices: []relation.StorePath{},\n\t}\n\n}\n"
  },
  {
    "path": "internal/library/targets.go",
    "content": "package library\n\nimport (\n\t\"bufio\"\n\t\"os\"\n\t\"strings\"\n\n\t\"Caesar/pkg/record\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc GetTargets(targetString string) []string {\n\t/*\n\t\t获取目标列表\n\t*/\n\tvar targetList []string\n\tif strings.HasSuffix(targetString, \".txt\") {\n\n\t\tfile, err := os.Open(targetString)\n\t\tif err != nil {\n\t\t\trecord.Logger.Error(\"can not open file \" + targetString)\n\t\t\tos.Exit(1)\n\t\t}\n\n\t\tdefer func() { _ = file.Close() }()\n\n\t\tscanner := bufio.NewScanner(file)\n\t\tfor scanner.Scan() {\n\t\t\tlineText := scanner.Text()\n\t\t\ttargetList = append(targetList, utils.ConvertAddress(lineText))\n\t\t}\n\n\t} else {\n\t\ttargetList = append(targetList, utils.ConvertAddress(targetString))\n\n\t}\n\n\treturn utils.RemoveDuplicateElement(targetList)\n\n}\n"
  },
  {
    "path": "internal/pkg/cdn/ip.go",
    "content": "package cdn\n\nimport (\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"net\"\n\t\"sync\"\n\n\t\"Caesar/pkg/record\"\n)\n\nvar (\n\tgoInstance *IPFile\n\tonce       sync.Once\n)\n\ntype ipCDN []string\n\n// IPFile 是读取CDN ip段的信息\ntype IPFile struct {\n\tName string\n}\n\nfunc (ifc *IPFile) getIP() (ipCDN, error) {\n\t// 读取json文件\n\tvar info ipCDN\n\n\t//ReadFile函数会读取文件的全部内容，并将结果以[]byte类型返回\n\tdata, err := ioutil.ReadFile(ifc.Name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t//读取的数据为json格式，需要进行解码\n\terr = json.Unmarshal(data, &info)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn info, nil\n}\n\n// CheckIPCDN 用来检查IP地址是否是CDN\nfunc (ifc *IPFile) CheckIPCDN(ip string) bool {\n\n\tipRange, err := ifc.getIP()\n\tif err != nil {\n\t\trecord.Logger.Error(\"CDN ip file read failed \" + err.Error())\n\t\treturn false\n\t}\n\n\tipFormat := net.ParseIP(ip)\n\tfor _, v := range ipRange {\n\t\t_, ipNet, _ := net.ParseCIDR(v)\n\t\tif ipNet.Contains(ipFormat) {\n\t\t\treturn true\n\t\t}\n\n\t}\n\n\treturn false\n}\n\n// NewIP 使用go 实现单例模式\nfunc NewIP(name string) *IPFile {\n\tif goInstance == nil {\n\t\tonce.Do(func() {\n\t\t\tgoInstance = &IPFile{\n\t\t\t\tName: name,\n\t\t\t}\n\t\t})\n\t}\n\treturn goInstance\n}\n"
  },
  {
    "path": "internal/pkg/finger/validation.go",
    "content": "package finger\n\nimport (\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"strings\"\n\t\"sync\"\n\n\t\"Caesar/pkg/record\"\n)\n\n// 单例模式变量\nvar (\n\tgoInstance *AppFinger\n\tonce       sync.Once\n)\n\n// Fingers 用来保存指纹数据\ntype Fingers []struct {\n\tName    string `json:\"name\"`\n\tKeyword string `json:\"keyword\"`\n}\n\n// AppFinger 指纹文件名\ntype AppFinger struct {\n\tfileName string\n}\n\n// 读取指纹\nfunc (a AppFinger) getFingers() (Fingers, error) {\n\tvar fingers Fingers\n\n\t//ReadFile函数会读取文件的全部内容，并将结果以[]byte类型返回\n\tdata, err := ioutil.ReadFile(a.fileName)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t//读取的数据为json格式，需要进行解码\n\terr = json.Unmarshal(data, &fingers)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn fingers, nil\n\n}\n\n// CheckFinger 识别程序\nfunc (a AppFinger) CheckFinger(html string) (result string, errs error) {\n\tfingersManager, err := a.getFingers()\n\tif err != nil {\n\t\trecord.Logger.Error(\"Finger file read failed \" + err.Error())\n\t\treturn result, err\n\t}\n\n\tfor _, v := range fingersManager {\n\t\tif strings.Contains(html, v.Keyword) {\n\t\t\treturn v.Name, nil\n\t\t}\n\n\t}\n\n\treturn result, nil\n\n}\n\n// NewLoads 单例模式生成对象\nfunc NewLoads(fileName string) *AppFinger {\n\n\tif goInstance == nil {\n\t\tonce.Do(func() {\n\t\t\tgoInstance = &AppFinger{fileName: fileName}\n\t\t})\n\t}\n\treturn goInstance\n\n}\n"
  },
  {
    "path": "internal/relation/CHANGEME.md",
    "content": "## v1.0.1 2020/12/11\n* variables.go的EngineMap增加CollectAssets参数，用来保存每个目标扫描的结果"
  },
  {
    "path": "internal/relation/dictionary.go",
    "content": "package relation\n\n//EachPath 对应的是路径字典的json格式.\ntype EachPath struct {\n\tHits int64  `json:\"hits\"`\n\tPath string `json:\"path\"`\n}\n\n//TagPath 用来存储hits.\ntype TagPath struct {\n\tEachPath\n\tTag string\n}\n\n// ResultPtah 获取到的http响应信息\ntype ResultPtah struct {\n\tCode    int\n\tAddress string\n\tTitle   string\n\tLength  int\n}\n\n// StorePath 为了hits保存的数据\ntype StorePath struct {\n\tTagPath\n\tResultPtah\n}\n"
  },
  {
    "path": "internal/relation/type.go",
    "content": "package relation\n\nvar Engine EngineMap\n\nvar Paths PathsMap\n\nvar Browser BrowserMap\n"
  },
  {
    "path": "internal/relation/variables.go",
    "content": "package relation\n\nimport \"time\"\n\ntype EngineMap struct {\n\t// about console print message\n\t// value from config.yml\n\tSilence bool\n\t// Page similarity parameter\n\t// value from config.yml\n\tUpperRatioBound float64\n\t// request  threads\n\t// value from argv\n\tThreads int\n\t// check paths num\n\t//value from config.yml\n\tWafTop int\n\t// Record the number of timeout requests\n\t// value from config.yml\n\tTimeoutCount int\n\t// The delay between two requests\n\t// default: 0\n\t// value from argv\n\tTimeSleep int\n\t// The dir extend\n\t// such as zip, tar, rar\n\t// value from config.yml\n\tDirectoryDirSuffix []string\n\t// The dynamic(asp, php, jsp, aspx) extend\n\t// such as txt, bak, swp\n\t// value from config.yml\n\tDynamicFileSuffix []string\n\t// Display http code on result\n\t// such as 200, 302, 301\n\t// value from config.yml\n\tStatusCode []int\n\t// Will check path\n\t// value from assets/*.json\n\t//PathDict []TagPath\n\t// Stop scanning or not\n\t// value from dynamic running\n\tStopFlag bool\n\t// Symbolic link\n\t// such as: index.php.txt or index.php_txt\n\t// value from config.yml\n\tSuffixSymbol []string\n\t//Found Assets num\n\t// default: 0\n\t// value from dynamic running\n\tNumbers int\n\t// Scan result\n\t// value from dynamic running\n\tCollectAssets map[string][]ResultPtah\n}\n\ntype PathsMap struct {\n\t//The program run dir\n\tBaseDir string\n\t// The path dir\n\t// default is : assets/directory\n\tDictDir string\n\t// The CDN  dir\n\t// default is : assets/cdn\n\tCdnPath string\n\n\t// The Finger  dir\n\t// default is : assets/fingerprint\n\tFingerPath string\n\n\t// Configuration file path\n\t// default is : configs/config.yml\n\tConfig string\n\t// Result file save path\n\t// default is : results/result.json\n\tResult string\n\n\t// path map info\n\t// such as [spring:assets/directory/php.json]\n\tDict []map[string]string\n}\n\ntype BrowserMap struct {\n\tTimeOut   time.Duration\n\tUserAgent []string\n\tProxy     string\n\tCookie    string\n\tHeaders   map[string]string\n}\n"
  },
  {
    "path": "internal/report/html.go",
    "content": "package report\n\nfunc ExportHtml(results []string, savePath string) {\n\t/*\n\t\t@param [\"http://127.0.0.1/index.php 200 示例\"]\n\t*/\n\n}\n"
  },
  {
    "path": "internal/report/json.go",
    "content": "package report\n\nimport (\n\t\"io/ioutil\"\n\t\"strconv\"\n\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/record\"\n\t\"Caesar/pkg/utils\"\n)\n\nfunc ExportJson(results []relation.ResultPtah, savePath string) {\n\n\t/*\n\t\t@param [\"http://127.0.0.1/index.php 200 示例\"]\n\t*/\n\n\tvar mapResults []map[string]string\n\n\tfor _, v := range results {\n\t\tvar result = make(map[string]string)\n\t\tresult[\"path\"] = v.Address\n\t\tresult[\"code\"] = strconv.Itoa(v.Code)\n\t\tresult[\"title\"] = v.Title\n\t\tresult[\"length\"] = strconv.Itoa(v.Length)\n\t\tmapResults = append(mapResults, result)\n\t}\n\n\t// 最后面4个空格，让json格式更美观\n\tresult, err := utils.CustomMarshal(mapResults)\n\n\tif err != nil {\n\t\trecord.Logger.Error(err.Error())\n\t\treturn\n\t}\n\n\tif err := ioutil.WriteFile(savePath, []byte(result), 0644); err != nil {\n\t\trecord.Logger.Error(\"Write file \" + savePath + err.Error() + \" error!\")\n\t\treturn\n\t}\n\n}\n"
  },
  {
    "path": "main.go",
    "content": "package main\n\nimport (\n\t\"Caesar/cmd\"\n\t\"Caesar/internal/library/boot\"\n)\n\nfunc init() {\n\t// 配置全局变量路径\n\tboot.SetPaths()\n\t// 配置基础参数\n\tboot.SetConf()\n\n}\n\nfunc main() {\n\tcmd.Execute()\n\n}\n"
  },
  {
    "path": "pkg/CHANGEME.md",
    "content": "# v1.0.1 2020/12/14\n* 添加包含常量的status.go\n* 添加stand包文件，用来存放常量信息\n\n\n# v1.0.2 2020/12/17\n* utils下面新添加files.go文件，用来实现-r参数\n\n\n# v1.0.3 2020/12/20\n* 用来读取文本获取请求的ParseRequestFromFile移动到builder/generated下的requests.go文件"
  },
  {
    "path": "pkg/README.md",
    "content": "# 一些常用但是不依赖具体程序的实现函数"
  },
  {
    "path": "pkg/builder/CHANGEME.md",
    "content": "# v1.0.1 2020/12/13\n* 增加http包，将会用于-r参数解析构造http请求的函数。\n\n# v1.0.2 2020/12/26\n* net目录下增加fasthttp文件，用来保存fasthttp的请求代码。\n粗略测试的结果，\n标准库 GET请求12线程下每秒700并发\nfasthttp GET请求12线程下每秒3000并发\n基准数据\ngo test -bench=. -benchmem\nfasthttp\n```shell script\nBenchmarkFastHttpRequest-12            1        16804582317 ns/op       736803176 B/op    536182 allocs/op\n```\n\ngolang标准库\n```shell script\nBenchmarkStandRequest-12               1        469205373888 ns/op      1580837544 B/op  5465476 allocs/op\n```\n\n*在fasthttp的默认请求头状况下，能实现每秒2000级并发，但是如果额外添加http请求头，比如Connection，则速度变得和golang原生库性能差异不大*"
  },
  {
    "path": "pkg/builder/generated/parse.go",
    "content": "package generated\n\nimport (\n\t\"regexp\"\n\t\"strings\"\n\n\t\"Caesar/pkg/buoys\"\n)\n\n// 从文本中获取http请求信息\nfunc ParseRequestFromFile(requests string) (target string, method string, userAgent string, cookies string, headers map[string]string, data string) {\n\n\tvar (\n\t\turi        = \"\"\n\t\tnewLine    string\n\t\tgetPostReq = false\n\t\tport       = \"\"\n\t\tparams     = false\n\t\tschema     = \"http://\"\n\t\thost       = \"\"\n\t)\n\n\t// 保存http头文件\n\theaders = make(map[string]string)\n\n\tif !strings.Contains(requests, \"HTTP/\") {\n\t\treturn\n\t}\n\n\tlines := strings.Split(requests, \"\\n\")\n\n\tfor index := 0; index < len(lines); index++ {\n\t\tline := lines[index]\n\n\t\tif strings.HasSuffix(line, \"\\r\") {\n\t\t\tnewLine = \"\\r\\n\"\n\t\t} else {\n\t\t\tnewLine = \"\\n\"\n\t\t}\n\n\t\t// http请求头第一行文件\n\t\tmatched := regexp.MustCompile(`^([A-Z]+) (.+) HTTP/[\\d.]+$`)\n\t\tresults := matched.FindStringSubmatch(line)\n\n\t\tif len(results) >= 3 {\n\t\t\t// 处理http请求的第一行 METHOD URI HTTPVersion\n\t\t\tmethod = results[1]\n\t\t\turi = results[2]\n\t\t\tgetPostReq = true\n\n\t\t} else if matched, _ := regexp.MatchString(`^\\S+:`, line); matched {\n\t\t\t// 处理头文件\n\t\t\tn := strings.SplitN(line, \":\", 2)\n\t\t\tkey := n[0]\n\t\t\tvalue := strings.TrimLeft(n[1], \" \")\n\n\t\t\tif strings.ToUpper(key) == strings.ToUpper(buoys.COOKIE) {\n\t\t\t\t// 处理cookie headers\n\t\t\t\tcookies = value\n\t\t\t} else if strings.ToUpper(key) == strings.ToUpper(buoys.HOST) {\n\t\t\t\t// 处理host headers\n\t\t\t\thost = value\n\t\t\t\ttemp := strings.Split(host, \":\")\n\t\t\t\t//address = temp[0]\n\t\t\t\tport = temp[1]\n\n\t\t\t} else if strings.ToUpper(key) == strings.ToUpper(buoys.UserAgent) {\n\t\t\t\t// 处理user-agent headers\n\t\t\t\tuserAgent = value\n\n\t\t\t} else if strings.ToUpper(key) == strings.ToUpper(buoys.ContentLength) {\n\t\t\t\t// Avoid to add a static content length header to\n\t\t\t\t// headers and consider the following lines as\n\t\t\t\t// POSTed data\n\n\t\t\t\tparams = true\n\t\t\t} else if strings.ToUpper(key) != strings.ToUpper(buoys.ProxyConnection) && strings.ToUpper(key) != strings.ToUpper(buoys.ContentLength) && strings.ToUpper(key) != strings.ToUpper(buoys.IfModifiedSince) && strings.ToUpper(key) != strings.ToUpper(buoys.IfNoneMatch) {\n\t\t\t\t// Avoid proxy and connection type related headers\n\t\t\t\theaders[key] = value\n\t\t\t}\n\n\t\t} else {\n\t\t\tline = strings.Trim(line, \"\\r\")\n\t\t\tline = strings.Trim(line, \"\\n\")\n\t\t\tif len(line) == 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tif getPostReq && params {\n\t\t\t\tdata = data + line + newLine\n\t\t\t}\n\t\t}\n\t}\n\n\tif port == \"443\" {\n\t\tschema = \"https://\"\n\t}\n\n\ttarget = schema + host + uri\n\n\treturn\n\n}\n"
  },
  {
    "path": "pkg/builder/net/fasthttp/chain.go",
    "content": "package fasthttp\n\nimport (\n\t\"net/http\"\n\t\"strings\"\n\t\"time\"\n\n\t\"Caesar/pkg/utils\"\n)\n\ntype clientBuilder struct {\n\t//请求方式\n\tmethod string\n\n\t//请求内容\n\tbody string\n\n\t//HTTP请求中的header信息\n\theader map[string]string\n\n\t//HTTP请求中,携带的cookies\n\tcookies []*http.Cookie\n\n\t//发起请求的client(go 自带的client)\n\tclient *http.Client\n\n\t// 连接超时设置\n\ttimeOut time.Duration\n\n\t//是否跳过HTTPS证书校验(默认跳过)\n\tskipVerify bool\n\n\t// 用户代理\n\tUserAgent string\n}\n\n// 设置请求方式\nfunc (cb *clientBuilder) SetMethod(method string) *clientBuilder {\n\tcb.method = method\n\n\tsupportMethod := []string{http.MethodGet, http.MethodPost, http.MethodConnect, http.MethodDelete, http.MethodHead, http.MethodOptions, http.MethodPatch, http.MethodPut, http.MethodTrace}\n\tif !utils.StringInSlice(method, supportMethod) {\n\t\tcb.method = http.MethodGet\n\t}\n\n\treturn cb\n\n}\n\nfunc (cb *clientBuilder) SetBody(body string) *clientBuilder {\n\tcb.body = body\n\treturn cb\n\n}\n\nfunc (cb *clientBuilder) SetSkipVerify(skip bool) *clientBuilder {\n\tcb.skipVerify = skip\n\treturn cb\n\n}\n\n// 设置超时\nfunc (cb *clientBuilder) SetTimeOut(t time.Duration) *clientBuilder {\n\tcb.timeOut = t\n\treturn cb\n}\n\n// cookie设置\nfunc (cb *clientBuilder) SetCookie(cookies string) *clientBuilder {\n\n\tif len(cookies) > 0 {\n\t\tif utils.MatchCookie(cookies) {\n\t\t\tnameList := strings.Split(cookies, \"; \")\n\n\t\t\tvar cookieSlice []*http.Cookie\n\n\t\t\tfor _, c := range nameList {\n\t\t\t\tcookie := strings.Split(c, \"=\")\n\t\t\t\tnewCookie := &http.Cookie{Name: cookie[0], Value: cookie[1]}\n\t\t\t\tcookieSlice = append(cookieSlice, newCookie)\n\t\t\t}\n\t\t\tcb.cookies = cookieSlice\n\n\t\t} else {\n\t\t\tcb.cookies = nil\n\t\t}\n\t} else {\n\t\tcb.cookies = nil\n\t}\n\n\treturn cb\n}\n\n// user-agent设置\nfunc (cb *clientBuilder) SetUserAgent(ua string) *clientBuilder {\n\tcb.UserAgent = ua\n\treturn cb\n}\n\n// 设置http请求头文件\nfunc (cb *clientBuilder) SetHeader(header map[string]string) *clientBuilder {\n\n\tcb.header = header\n\treturn cb\n}\n\nfunc (cb *clientBuilder) FastBuilder() *fastClient {\n\n\tc := &fastClient{\n\t\theader:    cb.header,\n\t\tcookies:   cb.cookies,\n\t\tuserAgent: cb.UserAgent,\n\t\tmethod:    cb.method,\n\t\tbody:      cb.body,\n\t}\n\treturn c\n}\n\n//NewClientBuilder 初始化\nfunc NewClientBuilder() *clientBuilder {\n\treturn &clientBuilder{\n\t\tskipVerify: true,\n\t}\n}\n"
  },
  {
    "path": "pkg/builder/net/fasthttp/produce.go",
    "content": "package fasthttp\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"io/ioutil\"\n\t\"net/http\"\n\n\t\"Caesar/pkg/buoys\"\n\t\"Caesar/pkg/utils\"\n\n\t\"github.com/valyala/fasthttp\"\n\t\"golang.org/x/text/transform\"\n)\n\ntype fastClient struct {\n\n\t//设置http请求方式\n\tmethod string\n\n\t// 请求内容\n\tbody string\n\n\t//HTTP请求中的header信息\n\theader map[string]string\n\n\t//HTTP请求中,携带的cookies\n\tcookies []*http.Cookie\n\n\t//设置UserAgent\n\tuserAgent string\n}\n\n//初始化一个 http.Request, 并填充属性\nfunc (c *fastClient) RawRequest(address string) (int, http.Header, []byte, error) {\n\trequest := fasthttp.AcquireRequest()\n\tdefer fasthttp.ReleaseRequest(request)\n\n\trequest.SetRequestURI(address)\n\trequest.Header.SetMethod(c.method)\n\n\trequest.SetBody([]byte(c.body))\n\t// fasthttp does not automatically request a gzipped response.\n\t// We must explicitly ask for it.\n\t//request.Header.Set(\"Accept-Encoding\", \"gzip\")\n\n\t//for k, v := range c.header {\n\t//\trequest.Header.Set(k, v)\n\t//}\n\n\t//for _, v := range c.cookies {\n\t//\trequest.Header.Cookie(c)\n\t//}\n\n\tif len(c.userAgent) > 0 {\n\t\trequest.Header.SetUserAgent(c.userAgent)\n\t}\n\n\tresponse := fasthttp.AcquireResponse()\n\tdefer fasthttp.ReleaseResponse(response)\n\n\t// Perform the request\n\tif err := fasthttp.Do(request, response); err != nil {\n\t\treturn buoys.StatusError, nil, nil, err\n\n\t}\n\n\t//  开始探测网页编码\n\tbodyReader := bufio.NewReader(bytes.NewReader(response.Body()))\n\te := utils.DetermineEncoding(bodyReader)\n\n\tutf8Reader := transform.NewReader(bodyReader, e.NewDecoder())\n\n\tbody, err := ioutil.ReadAll(utf8Reader)\n\treturn response.StatusCode(), nil, body, err\n}\n"
  },
  {
    "path": "pkg/builder/net/stand/chain.go",
    "content": "package stand\n\nimport (\n\t\"crypto/tls\"\n\t\"net\"\n\t\"net/http\"\n\t\"net/url\"\n\t\"strings\"\n\t\"time\"\n\n\t\"Caesar/pkg/utils\"\n)\n\ntype clientBuilder struct {\n\t//请求方式\n\tmethod string\n\n\t//请求内容\n\tbody string\n\n\t//HTTP请求中的header信息\n\theader map[string]string\n\n\t//HTTP请求中,携带的cookies\n\tcookies []*http.Cookie\n\n\t//发起请求的client(go 自带的client)\n\tclient *http.Client\n\n\t// 连接超时设置\n\ttimeOut time.Duration\n\n\t//是否跳过HTTPS证书校验(默认跳过)\n\tskipVerify bool\n\n\t//http代理\n\tProxy string\n\n\t// 用户代理\n\tUserAgent string\n}\n\n// 设置请求方式\nfunc (cb *clientBuilder) SetMethod(method string) *clientBuilder {\n\tcb.method = method\n\n\tsupportMethod := []string{http.MethodGet, http.MethodPost, http.MethodConnect, http.MethodDelete, http.MethodHead, http.MethodOptions, http.MethodPatch, http.MethodPut, http.MethodTrace}\n\tif !utils.StringInSlice(method, supportMethod) {\n\t\tcb.method = http.MethodGet\n\t}\n\n\treturn cb\n\n}\n\nfunc (cb *clientBuilder) SetBody(body string) *clientBuilder {\n\tcb.body = body\n\treturn cb\n\n}\n\nfunc (cb *clientBuilder) SetSkipVerify(skip bool) *clientBuilder {\n\tcb.skipVerify = skip\n\treturn cb\n\n}\n\n// 设置超时\nfunc (cb *clientBuilder) SetTimeOut(t time.Duration) *clientBuilder {\n\tcb.timeOut = t\n\treturn cb\n}\n\n// 设置代理\nfunc (cb *clientBuilder) SetProxy(u string) *clientBuilder {\n\tif len(u) > 0 {\n\t\tcb.Proxy = u\n\t} else {\n\t\tcb.Proxy = \"\"\n\t}\n\n\treturn cb\n}\n\n// cookie设置\nfunc (cb *clientBuilder) SetCookie(cookies string) *clientBuilder {\n\n\tif len(cookies) > 0 {\n\t\tif utils.MatchCookie(cookies) {\n\t\t\tnameList := strings.Split(cookies, \"; \")\n\n\t\t\tvar cookieSlice []*http.Cookie\n\n\t\t\tfor _, c := range nameList {\n\t\t\t\tcookie := strings.Split(c, \"=\")\n\t\t\t\tnewCookie := &http.Cookie{Name: cookie[0], Value: cookie[1]}\n\t\t\t\tcookieSlice = append(cookieSlice, newCookie)\n\t\t\t}\n\t\t\tcb.cookies = cookieSlice\n\n\t\t} else {\n\t\t\tcb.cookies = nil\n\t\t}\n\t} else {\n\t\tcb.cookies = nil\n\t}\n\n\treturn cb\n}\n\n// user-agent设置\nfunc (cb *clientBuilder) SetUserAgent(ua string) *clientBuilder {\n\tcb.UserAgent = ua\n\treturn cb\n}\n\n// 设置http请求头文件\nfunc (cb *clientBuilder) SetHeader(header map[string]string) *clientBuilder {\n\n\tcb.header = header\n\treturn cb\n}\n\nfunc (cb *clientBuilder) StandBuilder() *standClient {\n\n\t//tlsConfig := &tls.Config{\n\t//\tInsecureSkipVerify: cb.skipVerify,\n\t//}\n\n\ttransport := &http.Transport{\n\t\tDialContext: (&net.Dialer{\n\t\t\tTimeout:   cb.timeOut * time.Second,\n\t\t\tKeepAlive: 3 * time.Second,\n\t\t}).DialContext,\n\t\tMaxIdleConns:          100,\n\t\tIdleConnTimeout:       10 * time.Second,\n\t\tTLSHandshakeTimeout:   3 * time.Second,\n\t\tExpectContinueTimeout: 1 * time.Second,\n\t\t// TLSClientConfig:       tlsConfig,\n\t}\n\n\tif len(cb.Proxy) > 0 {\n\n\t\tif utils.MatchProxy(cb.Proxy) {\n\t\t\tproxy, err := url.Parse(cb.Proxy)\n\t\t\tif err == nil {\n\t\t\t\ttransport.Proxy = http.ProxyURL(proxy)\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\tc := &standClient{\n\t\tclient: &http.Client{\n\t\t\tTransport: transport,\n\t\t\tTimeout:   cb.timeOut * time.Second,\n\t\t},\n\t\theader:    cb.header,\n\t\tcookies:   cb.cookies,\n\t\tuserAgent: cb.UserAgent,\n\t\tmethod:    cb.method,\n\t\tbody:      cb.body,\n\t}\n\treturn c\n}\n\nfunc (cb *clientBuilder) FastBuilder() *standClient {\n\n\ttlsConfig := &tls.Config{\n\t\tInsecureSkipVerify: cb.skipVerify,\n\t}\n\n\ttransport := &http.Transport{\n\t\tDialContext: (&net.Dialer{\n\t\t\tTimeout:   cb.timeOut * time.Second,\n\t\t\tKeepAlive: 3 * time.Second,\n\t\t}).DialContext,\n\t\tMaxIdleConns:          100,\n\t\tIdleConnTimeout:       10 * time.Second,\n\t\tTLSHandshakeTimeout:   3 * time.Second,\n\t\tExpectContinueTimeout: 1 * time.Second,\n\t\tTLSClientConfig:       tlsConfig,\n\t}\n\n\tif len(cb.Proxy) > 0 {\n\n\t\tif utils.MatchProxy(cb.Proxy) {\n\t\t\tproxy, err := url.Parse(cb.Proxy)\n\t\t\tif err == nil {\n\t\t\t\ttransport.Proxy = http.ProxyURL(proxy)\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\tc := &standClient{\n\t\tclient: &http.Client{\n\t\t\tTransport: transport,\n\t\t\tTimeout:   cb.timeOut * time.Second,\n\t\t},\n\t\theader:    cb.header,\n\t\tcookies:   cb.cookies,\n\t\tuserAgent: cb.UserAgent,\n\t\tmethod:    cb.method,\n\t\tbody:      cb.body,\n\t}\n\treturn c\n}\n\n//初始化 clientBuilder\nfunc NewClientBuilder() *clientBuilder {\n\treturn &clientBuilder{\n\t\tskipVerify: true,\n\t}\n}\n"
  },
  {
    "path": "pkg/builder/net/stand/produce.go",
    "content": "package stand\n\nimport (\n\t\"bufio\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"net/http\"\n\t\"strings\"\n\n\t\"Caesar/pkg/buoys\"\n\t\"Caesar/pkg/utils\"\n\n\t\"golang.org/x/text/transform\"\n)\n\ntype standClient struct {\n\n\t//设置http请求方式\n\tmethod string\n\n\t// 请求内容\n\tbody string\n\n\t//HTTP请求中的header信息\n\theader map[string]string\n\n\t//HTTP请求中,携带的cookies\n\tcookies []*http.Cookie\n\n\t//发起请求的client(go 自带的client)\n\tclient *http.Client\n\n\t//设置UserAgent\n\tuserAgent string\n}\n\n//初始化一个 http.Request, 并填充属性\nfunc (c *standClient) getRequest(method, url string, body io.Reader) (*http.Request, error) {\n\trequest, err := http.NewRequest(method, url, body)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tfor k, v := range c.header {\n\t\trequest.Header.Set(k, v)\n\t}\n\n\tfor _, v := range c.cookies {\n\t\trequest.AddCookie(v)\n\t}\n\n\tif len(c.userAgent) > 0 {\n\t\trequest.Header[\"User-Agent\"] = []string{c.userAgent}\n\t}\n\n\treturn request, nil\n}\n\n//初始化一个 raw http.Request, 并填充属性\nfunc (c *standClient) rawRequest(url string) (*http.Request, error) {\n\tvar request *http.Request\n\tvar err error\n\n\tif len(c.body) == 0 {\n\t\trequest, err = http.NewRequest(c.method, url, nil)\n\t} else {\n\t\trequest, err = http.NewRequest(c.method, url, strings.NewReader(c.body))\n\t}\n\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tfor k, v := range c.header {\n\t\trequest.Header.Set(k, v)\n\t}\n\n\tif len(c.userAgent) > 0 {\n\t\trequest.Header[\"User-Agent\"] = []string{c.userAgent}\n\t}\n\n\tfor _, v := range c.cookies {\n\t\trequest.AddCookie(v)\n\t}\n\n\treturn request, nil\n}\n\nfunc (c *standClient) Get(address string) (int, http.Header, []byte, error) {\n\trequest, err := c.getRequest(http.MethodGet, address, nil)\n\tif err != nil {\n\t\treturn buoys.StatusError, nil, nil, err\n\t}\n\n\tresponse, err := c.client.Do(request)\n\tif err != nil {\n\t\treturn buoys.StatusError, nil, nil, err\n\t}\n\n\tdefer func() { _ = response.Body.Close() }()\n\n\t//  开始探测网页编码\n\tbodyReader := bufio.NewReader(response.Body)\n\te := utils.DetermineEncoding(bodyReader)\n\n\tutf8Reader := transform.NewReader(bodyReader, e.NewDecoder())\n\n\tbody, err := ioutil.ReadAll(utf8Reader)\n\treturn response.StatusCode, response.Header, body, err\n\n}\n\nfunc (c *standClient) RawHttp(address string) (int, http.Header, []byte, error) {\n\n\trequest, err := c.rawRequest(address)\n\tif err != nil {\n\t\treturn buoys.StatusError, nil, nil, err\n\t}\n\n\tresponse, err := c.client.Do(request)\n\tif err != nil {\n\t\treturn buoys.StatusError, nil, nil, err\n\t}\n\n\tdefer func() { _ = response.Body.Close() }()\n\n\t//  开始探测网页编码\n\tbodyReader := bufio.NewReader(response.Body)\n\te := utils.DetermineEncoding(bodyReader)\n\n\tutf8Reader := transform.NewReader(bodyReader, e.NewDecoder())\n\n\tbody, err := ioutil.ReadAll(utf8Reader)\n\treturn response.StatusCode, response.Header, body, err\n\n}\n"
  },
  {
    "path": "pkg/buoys/CHANGEME.md",
    "content": "#v1.0.1 2020/12/16\n* 添加header.go常量包，里面是http header的头"
  },
  {
    "path": "pkg/buoys/README.md",
    "content": "**存放一些通用常量**"
  },
  {
    "path": "pkg/buoys/header.go",
    "content": "package buoys\n\n// http头文件内容，来自于sqlmap\nconst (\n\tACCEPT             = \"Accept\"\n\tAcceptCharset      = \"Accept-Charset\"\n\tAcceptEncoding     = \"Accept-Encoding\"\n\tAcceptLanguage     = \"Accept-Language\"\n\tAUTHORIZATION      = \"Authorization\"\n\tCacheControl       = \"Cache-Control\"\n\tCONNECTION         = \"Connection\"\n\tContentEncoding    = \"Content-Encoding\"\n\tContentLength      = \"Content-Length\"\n\tContentRange       = \"Content-Range\"\n\tContentType        = \"Content-Type\"\n\tCOOKIE             = \"Cookie\"\n\tEXPIRES            = \"Expires\"\n\tHOST               = \"Host\"\n\tIfModifiedSince    = \"If-Modified-Since\"\n\tIfNoneMatch        = \"If-None-Match\"\n\tLastModified       = \"Last-Modified\"\n\tLOCATION           = \"Location\"\n\tPRAGMA             = \"Pragma\"\n\tProxyAuthorization = \"Proxy-Authorization\"\n\tProxyConnection    = \"Proxy-Connection\"\n\tRANGE              = \"Range\"\n\tREFERER            = \"Referer\"\n\tREFRESH            = \"Refresh\" // Reference: http://stackoverflow.com/a/283794\n\tSERVER             = \"Server\"\n\tSetCookie          = \"Set-Cookie\"\n\tTransferEncoding   = \"Transfer-Encoding\"\n\tURI                = \"URI\"\n\tUserAgent          = \"User-Agent\"\n\tVIA                = \"Via\"\n\tXPoweredBy         = \"X-Powered-By\"\n\tXDataOrigin        = \"X-Data-Origin\"\n)\n"
  },
  {
    "path": "pkg/buoys/status.go",
    "content": "package buoys\n\nconst (\n\tStatusFine  = 729\n\tStatusError = 730\n)\n\nconst (\n\tErrorFlag = \"ERROR\"\n\tFineFlag  = \"SUCCESS\"\n)\n"
  },
  {
    "path": "pkg/record/logs.go",
    "content": "package record\n\nimport (\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n\n\t\"github.com/sirupsen/logrus\"\n)\n\n/*\n标准的日志记录器\n*/\n\ntype WriterHook struct {\n\tWriter    io.Writer\n\tLogLevels []logrus.Level\n}\n\nfunc (hook *WriterHook) Fire(entry *logrus.Entry) error {\n\tline, err := entry.String()\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = hook.Writer.Write([]byte(line))\n\treturn err\n}\n\nfunc (hook *WriterHook) Levels() []logrus.Level {\n\treturn hook.LogLevels\n}\n\n// logrus提供了New()函数来创建一个logrus的实例。\n// 项目中，可以创建任意数量的logrus实例。\nvar Logger = logrus.New()\n\nfunc Logs(logPath string, silence bool) {\n\n\t// 为当前logrus实例设置消息输出格式为json格式。\n\tLogger.Formatter = &logrus.JSONFormatter{\n\t\tTimestampFormat:   \"2006-01-02 15:04:05\",\n\t\tDisableHTMLEscape: true,\n\t}\n\t// 是否记录日志位置\n\tLogger.SetReportCaller(false)\n\tLogger.SetLevel(logrus.TraceLevel)\n\n\tfile, err := os.Create(logPath)\n\t// os.OpenFile(\"logPath\", os.O_CREATE|os.O_APPEND|os.O_RDWR, 0660)\n\tif err == nil {\n\n\t\tLogger.SetOutput(ioutil.Discard)\n\t\tLogger.AddHook(&WriterHook{ // Send logs with level higher than warning to stderr\n\t\t\tWriter:    file,\n\t\t\tLogLevels: logrus.AllLevels,\n\t\t})\n\t\tif !silence {\n\t\t\tLogger.AddHook(&WriterHook{ // Send info and debug logs to stdout\n\t\t\t\tWriter: os.Stdout,\n\t\t\t\tLogLevels: []logrus.Level{\n\t\t\t\t\tlogrus.PanicLevel,\n\t\t\t\t\tlogrus.FatalLevel,\n\t\t\t\t\tlogrus.WarnLevel,\n\t\t\t\t\tlogrus.DebugLevel,\n\t\t\t\t},\n\t\t\t})\n\t\t}\n\n\t} else {\n\t\tLogger.Info(\"Failed to log to file, using default stderr\")\n\t}\n\n}\n"
  },
  {
    "path": "pkg/utils/address.go",
    "content": "package utils\n\nimport (\n\t\"net\"\n\t\"net/url\"\n\t\"regexp\"\n\t\"strings\"\n)\n\nfunc UrlToAddressAndPort(host string) (ip, port string) {\n\t/*\n\t\t从请求地址中获取ip和端口\n\t\t@param: http://127.0.0.1:8080\n\t\treturn: 127.0.0.1, 8080\n\t*/\n\tu, err := url.Parse(host)\n\tif err != nil {\n\t\treturn\n\t}\n\n\th := strings.Split(u.Host, \":\")\n\n\tif len(h) == 1 {\n\t\treturn h[0], \"80\"\n\t}\n\n\treturn h[0], h[1]\n\n}\n\nfunc GetNewHost(host string) string {\n\t/*\n\t\t从url路径中获取目标地址信息，\n\t\t次函数的主要目的是为了避免带路径和带参数的地址的干扰\n\t*/\n\tschema := \"http://\"\n\n\tip, port := UrlToAddressAndPort(host)\n\n\tif port == \"443\" {\n\t\tschema = \"https://\"\n\t}\n\n\treturn schema + ip + \":\" + port + \"/\"\n}\n\nfunc DomainToIP(host string) string {\n\t/*\n\t\t将输入的域名转换成ip地址格式\n\t\t@param: www.baidu.com\n\t\treturn: 180.101.49.11\n\t*/\n\n\taddr := strings.Trim(host, \" \")\n\n\tregStr := `^(([1-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.)(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){2}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$`\n\tif match, _ := regexp.MatchString(regStr, addr); match {\n\t\treturn host\n\t} else {\n\t\taddr, err := net.ResolveIPAddr(\"ip\", host)\n\t\tif err != nil {\n\t\t\treturn \"127.0.0.1\"\n\t\t}\n\n\t\treturn addr.String()\n\t}\n\n}\n"
  },
  {
    "path": "pkg/utils/compare.go",
    "content": "package utils\n\nimport (\n\t\"unicode/utf8\"\n)\n\n/*\n用来检查字符串相似度的函数\n*/\n\nfunc calculateLongestWord(a, b string) int {\n\tif len(a) >= len(b) {\n\t\treturn len(a)\n\t}\n\n\treturn len(b)\n}\n\nfunc min(a, b int) int {\n\tif a <= b {\n\t\treturn a\n\t}\n\n\treturn b\n}\n\nfunc computeLevenshteinValue(a, b string) int {\n\tf := make([]int, utf8.RuneCountInString(b)+1)\n\n\tfor j := range f {\n\t\tf[j] = j\n\t}\n\n\tfor _, ca := range a {\n\t\tj := 1\n\t\tfj1 := f[0]\n\t\tf[0]++\n\t\tfor _, cb := range b {\n\t\t\tmn := min(f[j]+1, f[j-1]+1)\n\t\t\tif cb != ca {\n\t\t\t\tmn = min(mn, fj1+1)\n\t\t\t} else {\n\t\t\t\tmn = min(mn, fj1)\n\t\t\t}\n\n\t\t\tfj1, f[j] = f[j], mn\n\t\t\tj++\n\t\t}\n\t}\n\n\treturn f[len(f)-1]\n}\n\nfunc ComputeLevenshteinPercentage(a, b string) float64 {\n\tdistance := computeLevenshteinValue(a, b)\n\tlength := calculateLongestWord(a, b)\n\n\tpercentFloat := 1.00 - float64(distance)/float64(length)\n\n\treturn percentFloat\n}\n"
  },
  {
    "path": "pkg/utils/document.go",
    "content": "package utils\n\nimport (\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n)\n\nfunc PathExists(path string) bool {\n\t_, err := os.Stat(path)\n\tif err == nil {\n\t\treturn true\n\t}\n\tif os.IsNotExist(err) {\n\t\treturn false\n\t}\n\treturn false\n}\n\n// 递归获取路径下的所有文件\nfunc GetFileFromDocument(rootPath string) []string {\n\tvar fileList []string\n\n\terr := filepath.Walk(rootPath,\n\t\tfunc(path string, info os.FileInfo, err error) error {\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tfileList = append(fileList, path)\n\n\t\t\treturn nil\n\t\t})\n\tif err != nil {\n\n\t\treturn nil\n\t}\n\n\treturn fileList\n}\n\n//利用装饰器增强一下读取目录下的文件的函数的功能\nfunc WrapFuncGetFile(f func(rootPath string) []string, path string, fileType string) (newList []string) {\n\t// 获取特定类型后缀的文件\n\tfileList := f(path)\n\n\tfor _, v := range fileList {\n\t\tif strings.HasSuffix(v, fileType) {\n\t\t\tnewList = append(newList, v)\n\t\t}\n\n\t}\n\n\treturn\n}\n"
  },
  {
    "path": "pkg/utils/files.go",
    "content": "package utils\n\nimport (\n\t\"io/ioutil\"\n\t\"os\"\n)\n\nfunc ReadFile(fileName string) string {\n\tb, err := ioutil.ReadFile(fileName) // just pass the file name\n\tif err != nil {\n\t\treturn \"\"\n\t}\n\n\tstr := string(b) // convert content to a 'string'\n\treturn str\n}\n\nfunc DeleteFile(path string) {\n\t// delete file\n\tif err := os.Remove(path); err != nil {\n\t\treturn\n\t}\n\n}\n"
  },
  {
    "path": "pkg/utils/match.go",
    "content": "package utils\n\nimport (\n\t\"net\"\n\t\"regexp\"\n\t\"strings\"\n)\n\n/*\n\t利用正则表达式检查路径是否是文件夹\n*/\nfunc MatchDir(name string) bool {\n\tmatchedDir, err := regexp.MatchString(`\\..{3,4}$`, name)\n\tif err != nil {\n\t\treturn false\n\t}\n\tif !matchedDir && !(strings.Contains(name, \"=\") && strings.Contains(name, \"&\")) {\n\t\treturn true\n\n\t} else {\n\t\treturn false\n\t}\n}\n\n/*\n\t检查path是否是动态文件\n*/\nfunc MatchDynamic(name string) bool {\n\tmatchedFIle, err := regexp.MatchString(`\\.(php|asp|aspx|jsp|jspx])$`, name)\n\tif err != nil {\n\t\treturn false\n\t}\n\tif matchedFIle {\n\t\treturn true\n\n\t} else {\n\t\treturn false\n\t}\n}\n\n/*\n\t正则校验socks5/http/https代理\n*/\nfunc MatchProxy(address string) bool {\n\n\tmatched, err := regexp.MatchString(`^(https?|socks5)://.*?:[0-9]{1,5}$`, address)\n\tif err != nil {\n\t\treturn false\n\t}\n\tif matched {\n\t\treturn true\n\n\t} else {\n\t\treturn false\n\t}\n\n}\n\n/*\n\t匹配cookie的规则，比如: username=admin; userid=1; PHPSESSID=9d1q9o4927a42p2thki1ql82p7\n*/\nfunc MatchCookie(cookies string) bool {\n\tmatched, err := regexp.MatchString(`^([\\w]*?=[\\w]*?; )*([\\w]*?=[\\w]*?)$`, cookies)\n\tif err != nil {\n\t\treturn false\n\t}\n\tif matched {\n\t\treturn true\n\n\t} else {\n\t\treturn false\n\t}\n}\n\n/*\n正则提取网站标题\n*/\nfunc MatchTitle(html string) string {\n\tmatched := regexp.MustCompile(`<title>([\\S\\s]*?)</title>`)\n\tresults := matched.FindStringSubmatch(html)\n\n\tif len(results) > 1 {\n\t\treturn results[1]\n\t}\n\n\treturn \"\"\n}\n\nfunc IsPrivateIP(ipAddress string) bool {\n\t/*\n\t\t用来判断IP地址是否是私有IP，是的话返回true\n\t*/\n\n\tvar ip net.IP\n\n\tip = net.ParseIP(ipAddress)\n\n\tvar privateIPBlocks []*net.IPNet\n\n\tfor _, cidr := range []string{\n\t\t\"127.0.0.0/8\",    // IPv4 loopback\n\t\t\"10.0.0.0/8\",     // RFC1918\n\t\t\"172.16.0.0/12\",  // RFC1918\n\t\t\"192.168.0.0/16\", // RFC1918\n\t\t\"169.254.0.0/16\", // RFC3927 link-local\n\t\t\"::1/128\",        // IPv6 loopback\n\t\t\"fe80::/10\",      // IPv6 link-local\n\t\t\"fc00::/7\",       // IPv6 unique local addr\n\t} {\n\t\t_, block, err := net.ParseCIDR(cidr)\n\t\tif err != nil {\n\t\t\treturn false\n\t\t}\n\n\t\tprivateIPBlocks = append(privateIPBlocks, block)\n\t}\n\n\tif ip.IsLoopback() || ip.IsLinkLocalUnicast() || ip.IsLinkLocalMulticast() {\n\t\treturn true\n\t}\n\n\tfor _, block := range privateIPBlocks {\n\t\tif block.Contains(ip) {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n"
  },
  {
    "path": "pkg/utils/strings.go",
    "content": "package utils\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"encoding/json\"\n\t\"math/rand\"\n\t\"os\"\n\t\"regexp\"\n\t\"strings\"\n\t\"time\"\n\n\t\"Caesar/pkg/buoys\"\n\n\t\"golang.org/x/net/html/charset\"\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/unicode\"\n)\n\n//生成随机字符串的函数\nfunc GenRandString(n int) string {\n\tconst letterBytes = \"abcdefghijklmnopqrstuvwxyz0123456789\"\n\n\tvar (\n\t\tletterIdxBits       = 6\n\t\tletterIdxMask int64 = 1<<letterIdxBits - 1\n\t\tletterIdxMax        = 63 / letterIdxBits\n\t\tsrc                 = rand.NewSource(time.Now().UnixNano())\n\t)\n\n\tb := make([]byte, n)\n\n\tfor i, cache, remain := n-1, src.Int63(), letterIdxMax; i >= 0; {\n\t\tif remain == 0 {\n\t\t\tcache, remain = src.Int63(), letterIdxMax\n\t\t}\n\t\tif idx := int(cache & letterIdxMask); idx < len(letterBytes) {\n\t\t\tb[i] = letterBytes[idx]\n\t\t\ti--\n\t\t}\n\t\tcache >>= letterIdxBits\n\t\tremain--\n\t}\n\n\treturn string(b)\n}\n\n//  判断字符是否在字符列表中\nfunc StringInSlice(a string, list []string) bool {\n\tfor _, b := range list {\n\t\tif b == a {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n//  判断数字是否在列表中\nfunc IntInSlice(a int, list []int) bool {\n\tfor _, b := range list {\n\t\tif b == a {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc ConvertAddress(target string) string {\n\t// 检查目标是否是 http://target的格式\n\t/*\n\t\t@param: http://127.0.0.1/ || 127.0.0.1\n\t\t@return: http://127.0.0.1\n\t*/\n\tNotLine := \"^(http://|https://).*\"\n\tmatch, _ := regexp.MatchString(NotLine, target)\n\n\tif !match {\n\t\ttarget = \"http://\" + target\n\t}\n\n\treturn strings.TrimSuffix(target, \"/\")\n}\n\nfunc GetValueFromList(key string, world []map[string]string) string {\n\t/*\n\t  从列表map中获取value\n\t  param: key1, [key1:value1, key2:value2, key3:value3]\n\t  return: value1\n\t*/\n\tfor _, v := range world {\n\n\t\tif v, ok := v[key]; ok {\n\t\t\treturn v\n\t\t}\n\n\t}\n\n\treturn \"\"\n\n}\n\nfunc Input() string {\n\t/*\n\t\t类似Python3的input()函数\n\t*/\n\tscanner := bufio.NewScanner(os.Stdin)\n\tscanner.Scan()\n\tif err := scanner.Err(); err != nil {\n\t\treturn \"n\"\n\t}\n\n\treturn strings.ToLower(scanner.Text())\n\n}\n\nfunc GetRandomElement(lists []string) string {\n\t/*\n\t\t从slice选取一个随机值\n\t*/\n\trand.Seed(time.Now().UnixNano())\n\telement := lists[rand.Intn(len(lists))]\n\treturn element\n}\n\n// 探测网页编码\nfunc DetermineEncoding(r *bufio.Reader) encoding.Encoding {\n\tbytesHtml, err := r.Peek(1024)\n\n\tif err != nil {\n\t\treturn unicode.UTF8\n\t}\n\n\te, _, _ := charset.DetermineEncoding(bytesHtml, \"\")\n\n\treturn e\n\n}\n\nfunc GenStrings(param ...string) string {\n\t/*\n\t\t拼接字符串，基准测试的时候发现效率不如 +\n\t*/\n\n\tvar build strings.Builder\n\n\tfor _, v := range param {\n\t\tbuild.WriteString(v)\n\n\t}\n\treturn build.String()\n\n}\n\nfunc CustomMarshal(message interface{}) (string, error) {\n\t/*\n\t\t自定义序列化函数，解决 \"&\"被转译的问题\n\t*/\n\n\tbf := bytes.NewBuffer([]byte{})\n\n\tjsonEncoder := json.NewEncoder(bf)\n\tjsonEncoder.SetEscapeHTML(false)\n\tjsonEncoder.SetIndent(\"\", \"    \")\n\n\tif err := jsonEncoder.Encode(message); err != nil {\n\t\treturn buoys.ErrorFlag, err\n\t}\n\n\treturn bf.String(), nil\n}\n\n// golang读取文件并且返回列表\nfunc ReadLines(path string) ([]string, error) {\n\tfile, err := os.Open(path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer func() { _ = file.Close() }()\n\n\tvar lines []string\n\tscanner := bufio.NewScanner(file)\n\tfor scanner.Scan() {\n\t\tlines = append(lines, scanner.Text())\n\t}\n\treturn lines, scanner.Err()\n}\n\n// 字符串列表去重函数\nfunc RemoveDuplicateElement(infos []string) []string {\n\tresult := make([]string, 0, len(infos))\n\ttemp := map[string]struct{}{}\n\tfor _, item := range infos {\n\t\tif _, ok := temp[item]; !ok {\n\t\t\ttemp[item] = struct{}{}\n\t\t\tresult = append(result, item)\n\t\t}\n\t}\n\treturn result\n}\n\n//获取当前时间的字符串形式\nfunc GenNowTime() string {\n\tdatetimeStr := time.Now().Format(\"2006-01-02 15:04:05\")\n\treturn datetimeStr\n}\n"
  },
  {
    "path": "scripts/build.sh",
    "content": "#!/bin/bash\n\nset -eux\n\n# 二进制文件名\nPROJECT=\"caesar\"\n# 启动文件PATH\nMAIN_PATH=\"main.go\"\n\n# build flag\nLDFLAGS=\"-s -w\"\n#\t\t\t   -X \"main.BuildVersion=${VERSION}\"\n#\t\t\t   -X \"main.BuildDate=$(shell /bin/date \"+%F %T\")\"\n\nfunction create() {\n  #判断文件夹是否存在，不存在则创建\n  if [ ! -d \"$1\" ]; then\n    mkdir -p \"$1\"\n  fi\n}\n\n#build\nfunction build() {\n  # 创建部署文件夹\n  create deployments\n\n  #build for windows\n  create deployments/windows\n  create deployments/windows/results\n  cp -r assets deployments/windows\n  cp configs/config.yml deployments/windows\n  CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -a -ldflags \"${LDFLAGS}\" -o deployments/windows/\"${PROJECT}\".exe \"${MAIN_PATH}\"\n  cd deployments\n  zip -r windows.zip ./windows\n  rm -r windows\n  cd ../\n\n  #build for Intel macOS\n  create \"deployments/darwin\"\n  create \"deployments/darwin/results\"\n  cp -r assets deployments/darwin\n  cp configs/config.yml deployments/darwin\n  CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -a -ldflags \"${LDFLAGS}\" -o deployments/darwin/\"${PROJECT}\" \"${MAIN_PATH}\"\n  cd deployments\n  zip -r darwinIntel.zip ./darwin\n  rm -r darwin\n  cd ../\n\n  #build for Arm macOS\n#  create \"deployments/darwin\"\n#  create \"deployments/darwin/results\"\n#  cp -r assets deployments/darwin\n#  cp configs/config.yml deployments/darwin\n#  CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -a -ldflags \"${LDFLAGS}\" -o deployments/darwin/\"${PROJECT}\" \"${MAIN_PATH}\"\n#  cd deployments\n#  zip -r darwinArm.zip ./darwin\n#  rm -r darwin\n#  cd ../\n\n  #build for linux\n  create \"deployments/linux\"\n  create \"deployments/linux/results\"\n  cp -r assets deployments/linux\n  cp configs/config.yml deployments/linux\n  CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -ldflags \"${LDFLAGS}\" -o deployments/linux/\"${PROJECT}\" \"${MAIN_PATH}\"\n  cd deployments\n  zip -r linux.zip ./linux\n  rm -r linux\n  cd ../\n\n}\n\nbuild\n"
  },
  {
    "path": "scripts/dockerfile.sh",
    "content": "#!/bin/bash\n\nset -eux\n\n# 二进制文件名\nPROJECT=\"caesar\"\n# 启动文件PATH\nMAIN_PATH=\"main.go\"\n\n# build flag\nLDFLAGS=\"-s -w\"\n#\t\t\t   -X \"main.BuildVersion=${VERSION}\"\n#\t\t\t   -X \"main.BuildDate=$(shell /bin/date \"+%F %T\")\"\n\nfunction create() {\n  #判断文件夹是否存在，不存在则创建\n  if [ ! -d \"$1\" ]; then\n    mkdir -p \"$1\"\n  fi\n}\n\nfunction delete() {\n  #判断文件夹是否存在，不存在则创建\n  if [ -d \"$1\" ]; then\n    rm -r \"$1\"\n  fi\n}\n\nfunction build() {\n\n  delete build/package/agent\n  delete build/package/caesar.tar\n  create build/package/agent\n  create build/package/agent/results\n  cp -r assets build/package/agent\n  cp configs/config.yml build/package/agent\n  CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -ldflags \"${LDFLAGS}\" -o build/package/agent/\"${PROJECT}\" \"${MAIN_PATH}\"\n  cd build/package/\n  docker build -t caesar .\n  docker save caesar:latest -o caesar.tar\n\n}\n\nbuild\n"
  },
  {
    "path": "scripts/variables.sh",
    "content": "#!/bin/bash\n\nset -eux\n\nexport VERSION=\"v0.0.1\""
  },
  {
    "path": "tests/benchmarks/README.md",
    "content": "# 基准测试目录"
  },
  {
    "path": "tests/benchmarks/format_test.go",
    "content": "package benchmarks\n\nimport (\n\t\"strconv\"\n\t\"testing\"\n)\n\nfunc BenchmarkFormat(b *testing.B) {\n\tnum := int64(10)\n\tb.ResetTimer()\n\n\tfor i := 0; i < b.N; i++ {\n\t\tstrconv.FormatInt(num, 10)\n\t}\n}\n\nfunc BenchmarkItoa(b *testing.B) {\n\tnum := 10\n\tb.ResetTimer()\n\tfor i := 0; i < b.N; i++ {\n\t\tstrconv.Itoa(num)\n\t}\n}\n"
  },
  {
    "path": "tests/benchmarks/main_test.go",
    "content": "package benchmarks\n\nimport \"testing\"\n\nfunc BenchmarkSort(b *testing.B) {\n\tarr := make([]int, 100000)\n\tfor i := 100000; i > 0; i-- {\n\t\tarr = append(arr, i)\n\t}\n\n\tb.ResetTimer()\n\tfor i := 0; i < b.N; i++ {\n\t\tbubbleSort(arr)\n\t}\n}\n\nfunc bubbleSort(nums []int) []int {\n\tlength := len(nums)\n\tfor i := 1; i < length; i++ {\n\t\tfor j := length - 1; j >= i; j-- {\n\t\t\tif nums[j] < nums[j-1] {\n\t\t\t\tnums[j], nums[j-1] = nums[j-1], nums[j]\n\t\t\t}\n\t\t}\n\t}\n\treturn nums\n}\n"
  },
  {
    "path": "tests/benchmarks/request_test.go",
    "content": "package benchmarks\n\nimport (\n\t\"Caesar/internal/library\"\n\t\"Caesar/internal/library/cores\"\n\t\"Caesar/internal/library/director\"\n\t\"Caesar/internal/relation\"\n\t\"net/http\"\n\t\"sync\"\n\t\"testing\"\n)\n\nfunc BenchmarkFastHttpRequest(b *testing.B) {\n\n\tvar tags []map[string]string\n\n\ttags = append(tags, map[string]string{\"common\": \"/Users/null/go/src/Caesar/assets/directory/common.json\"})\n\n\tpaths := cores.ReadDict([]string{\"common\"}, tags)\n\tThreadsChan := make(chan struct{}, 12)\n\twg := &sync.WaitGroup{}\n\tlength := len(paths)\n\tvar finishChan = make(chan struct{}, length)\n\t//println(length)\n\t// 启动进度条goroutine\n\tgo library.HeartProgress(wg, finishChan, \"demo\")\n\n\tb.ResetTimer()\n\tfor _, v := range paths {\n\t\tThreadsChan <- struct{}{}\n\t\twg.Add(1)\n\n\t\tgo func(t relation.TagPath) {\n\t\t\tdirector.FastHttpRequest(\"http://27.211.65.98:8081\"+t.Path, http.MethodGet, \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0\")\n\t\t\twg.Done()\n\t\t\t<-ThreadsChan\n\t\t\tfinishChan <- struct{}{}\n\n\t\t}(v)\n\n\t}\n\n\twg.Wait()\n\n}\n\nfunc BenchmarkStandRequest(b *testing.B) {\n\n\tvar tags []map[string]string\n\n\ttags = append(tags, map[string]string{\"common\": \"/Users/null/go/src/Caesar/assets/directory/common.json\"})\n\n\tpaths := cores.ReadDict([]string{\"common\"}, tags)\n\tThreadsChan := make(chan struct{}, 12)\n\twg := &sync.WaitGroup{}\n\tlength := len(paths)\n\tvar finishChan = make(chan struct{}, length)\n\t//println(length)\n\t// 启动进度条goroutine\n\tgo library.HeartProgress(wg, finishChan, \"demo\")\n\n\tb.ResetTimer()\n\tfor _, v := range paths {\n\t\tThreadsChan <- struct{}{}\n\t\twg.Add(1)\n\n\t\tgo func(t relation.TagPath) {\n\t\t\tdirector.GenerateNormalGet(\"http://27.211.65.98:8081\" + t.Path)\n\t\t\twg.Done()\n\t\t\t<-ThreadsChan\n\t\t\tfinishChan <- struct{}{}\n\n\t\t}(v)\n\n\t}\n\n\twg.Wait()\n\n}\n"
  },
  {
    "path": "tests/benchmarks/strings_test.go",
    "content": "package benchmarks\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"strings\"\n\t\"testing\"\n)\n\nfunc BenchmarkNormal(b *testing.B) {\n\tb.ResetTimer()\n\n\tfor i := 0; i < b.N; i++ {\n\n\t\t_ = \"a\" + \"b\"\n\t}\n\tb.StopTimer()\n\n}\n\nfunc BenchmarkBuffer(b *testing.B) {\n\tvar buf bytes.Buffer\n\tfor i := 0; i < b.N; i++ {\n\t\tfmt.Fprint(&buf, \"?\")\n\t\t_ = buf.String()\n\t}\n}\n\nfunc BenchmarkBuilder(b *testing.B) {\n\tvar builder strings.Builder\n\tfor i := 0; i < b.N; i++ {\n\t\tfmt.Fprint(&builder, \"?\")\n\t\t_ = builder.String()\n\t}\n}\n"
  },
  {
    "path": "tests/units/README.md",
    "content": "# 单元测试目录\n\nmap_test.go 将assets/directory目录下的所有路径文件hits置为0。慎用\nchange_test.go 此测试可以将普通路径文件转换成caesar能识别的路径格式"
  },
  {
    "path": "tests/units/cdn_test.go",
    "content": "package units\n\nimport (\n\t\"Caesar/internal/pkg/cdn\"\n\t\"Caesar/pkg/utils\"\n\t\"testing\"\n)\n\n/*\n检测CDN模块\n*/\nfunc TestCDN(t *testing.T) {\n\tf := cdn.NewIP(\"../../assets/cdn/cdn_ip_cidr.json\")\n\tprintln(f.CheckIPCDN(\"192.168.3.1\"))\n\tf2 := cdn.NewIP(\"../../assets/cdn/cdn_ip_cidr.json\")\n\tprintln(f2.CheckIPCDN(\"192.168.3.1\"))\n\n}\n\nfunc TestIP(t *testing.T) {\n\tprintln(utils.UrlToAddressAndPort(\"http://www.baidu.com:800\"))\n}\n"
  },
  {
    "path": "tests/units/change_test.go",
    "content": "package units\n\nimport (\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/utils\"\n\t\"testing\"\n)\n\n/*\n此测试方法可以讲普通路径文件转换成caesar能识别的字典\n*/\n\nfunc TestChange(t *testing.T) {\n\n\tvar newSlice []relation.EachPath\n\n\tinfos, err := utils.ReadLines(\"info.txt\")\n\tif err != nil {\n\t\treturn\n\t}\n\n\tfor _, v := range utils.RemoveDuplicateElement(infos) {\n\t\tnewTag := relation.EachPath{\n\t\t\tHits: 0,\n\t\t\tPath: v,\n\t\t}\n\t\tnewSlice = append(newSlice, newTag)\n\n\t}\n\n\tinfo, _ := utils.CustomMarshal(newSlice)\n\n\tprintln(info)\n}\n"
  },
  {
    "path": "tests/units/cookies_test.go",
    "content": "package units\n\nimport (\n\t\"Caesar/pkg/utils\"\n\t\"testing\"\n)\n\n/*\n用来测试cookie的正则表达式\n*/\nfunc TestCookies(t *testing.T) {\n\tmat := \"username=admin; userid=1; PHPSESSID=9d1q9o4927a42p2thki1ql82p7\"\n\tprintln(utils.MatchCookie(mat))\n}\n"
  },
  {
    "path": "tests/units/docuemtn_test.go",
    "content": "package units\n\nimport (\n\t\"Caesar/pkg/utils\"\n\t\"testing\"\n)\n\nfunc TestDocument(T *testing.T) {\n\tinfo := utils.WrapFuncGetFile(utils.GetFileFromDocument, \"/Users/null/Desktop/denmo\", \"txt\")\n\n\tfor _, v := range info {\n\n\t\tprintln(v)\n\t}\n}\n"
  },
  {
    "path": "tests/units/finger_test.go",
    "content": "package units\n\nimport (\n\t\"Caesar/internal/library/director\"\n\t\"testing\"\n\n\t\"Caesar/internal/pkg/finger\"\n)\n\n// 指纹识别单元测试\nfunc TestFinger(t *testing.T) {\n\tf3 := finger.NewLoads(\"../../assets/fingerprint/apps.json\")\n\n\t_, _, body, _ := director.GenerateNormalGet(\"http://www.qsbanks.cc:5050/back/ls\")\n\n\tprintln(f3.CheckFinger(string(body)))\n\n}\n"
  },
  {
    "path": "tests/units/html_test.go",
    "content": "package units\n\nimport (\n\t\"Caesar/pkg/utils\"\n\t\"testing\"\n)\n\n/*\n单元测试获取网站title\n*/\n\nfunc TestHtml(T *testing.T) {\n\thtml := \"<!DOCTYPE html PUBLIC \\\"-//W3C//DTD XHTML 1.0 Transitional//EN\\\" \\\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\\\">\\n<html xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<head>\\n<meta http-equiv=\\\"Content-Type\\\" content=\\\"text/html; charset=utf-8\\\" />\\n<title>文章管理系统</title>\\n<link href=\\\"images/css.css\\\" rel=\\\"stylesheet\\\" type=\\\"text/css\\\" />\\n</head>\\n<body>\\n<div class=\\\"main\\\">\\n<table width=\\\"100%\\\" border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\">\\n  <tr>\\n    <td width=\\\"443\\\" height=\\\"100\\\" align=\\\"center\\\" bgcolor=\\\"#182E43\\\"><a href=\\\"http://www.test.com\\\" target=\\\"_blank\\\"><img src=\\\"images/logo.gif\\\" width=\\\"396\\\" height=\\\"78\\\" border=\\\"0\\\" /></a></td>\\n    <td align=\\\"right\\\" valign=\\\"top\\\" bgcolor=\\\"#182E43\\\" class=\\\"white\\\" style=\\\"padding-top:5px\\\">\\n    <a href=\\\"http://www.test.com\\\" onClick=\\\"this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.test.com/');return(false);\\\" style=\\\"behavior: url(#default#homepage)\\\" class=\\\"white\\\">设为首页 </a>｜ \\n    <a href=\\\"javascript:window.external.addFavorite('http://www.test.com/',文章管理系统');\\\" class=\\\"white\\\">加入收藏 </a>｜ \\n    <a href=\\\"admin/\\\" class=\\\"white\\\">后台管理&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a> </td>\\n  </tr>\\n</table>\\n<table width=\\\"100%\\\" border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" class=\\\"navBg\\\">\\n  <tr>\\n    <td align=\\\"center\\\" valign=\\\"top\\\">\\n      <div class=\\\"nav\\\"><a href=\\\"index.php\\\">首  页</a></div>\\n            <div class=\\\"nav\\\"><a href=\\\"list.php?id=22\\\">国内新闻</a></div>\\n            <div class=\\\"nav\\\"><a href=\\\"list.php?id=23\\\">国际新闻</a></div>\\n            \\n            \\n      <div class=\\\"nav\\\"><a href=\\\"message.php\\\">留言板</a></div></td>\\n  </tr>\\n</table>\\n<table width=\\\"1000\\\" border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" class=\\\"mainBg\\\">\\n  <tr>\\n    <td width=\\\"236\\\" height=\\\"45\\\" align=\\\"center\\\" class=\\\"hui\\\">欢迎使用文章管理系统！</td>\\n    <td width=\\\"558\\\" class=\\\"blue\\\"><MARQUEE scrollAmount=1 scrollDelay=40 direction=left width=558 >\\n      <table width=\\\"528\\\" border=\\\"0\\\" align=\\\"center\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tr>\\n          <td width=\\\"28\\\" align=\\\"center\\\"><img src=\\\"images/ico.gif\\\" width=\\\"9\\\" height=\\\"13\\\" /></td>\\n          <td width=\\\"520\\\">CMS发布了！！</td>\\n        </tr>\\n      </table>\\n      </MARQUEE>\\n    </td>\\n  </tr>\\n  <tr>\\n    <td height=\\\"300\\\" rowspan=\\\"2\\\" valign=\\\"top\\\" class=\\\"leftBoxLine\\\"><table width=\\\"220\\\" border=\\\"0\\\" align=\\\"center\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n        <tr>\\n          <td height=\\\"40\\\" class=\\\"leftTitleBg\\\"><img src=\\\"images/img_03.gif\\\" width=\\\"114\\\" height=\\\"35\\\" /></td>\\n        </tr>\\n        <tr>\\n          <td height=\\\"40\\\" style=\\\"padding-left:20px;\\\"><marquee scrollamount=\\\"1\\\" scrolldelay=\\\"40\\\" direction=\\\"up\\\" width=\\\"220\\\" height=\\\"120\\\" onmouseover=\\\"this.stop()\\\" onmouseout=\\\"this.start()\\\">\\n                        <div class=\\\"divList\\\"><a href=\\\"notice.php?id=10\\\" class=\\\"hui12\\\" target=\\\"_blank\\\">祝大家2010新年快乐!..</a></div>\\n                        </MARQUEE>\\n          </td>\\n        </tr>\\n      </table>\\n\\t</td>\\n    <td rowspan=\\\"2\\\" valign=\\\"top\\\">\\n\\t      <table width=\\\"96%\\\" border=\\\"0\\\" align=\\\"center\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" >\\n        <tr>\\n          <td width=\\\"82%\\\" height=\\\"40\\\" align=\\\"left\\\" class=\\\"centerTitleBg\\\">国内新闻</td>\\n          <td width=\\\"18%\\\" align=\\\"right\\\" class=\\\"centerTitleBg\\\"><a href=\\\"list.php?id=16\\\"><img src=\\\"images/more.gif\\\" width=\\\"39\\\" height=\\\"7\\\" border=\\\"0\\\" /></a>&nbsp;&nbsp;</td>\\n        </tr>\\n        <tr>\\n          <td colspan=\\\"2\\\" align=\\\"left\\\" valign=\\\"top\\\" class=\\\"hui\\\"><table width=\\\"99%\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" class=\\\"news\\\">\\n            </table>\\n            <table width=\\\"99%\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" class=\\\"news\\\">\\n                           <tr>\\n                <td height=\\\"25\\\" align=\\\"left\\\"><a href=\\\"show.php?id=33\\\" target=\\\"_blank\\\">网游分级标准研究有初步成果 已上报至中央</a>&nbsp;</td>\\n                <td width=\\\"120\\\" align=\\\"left\\\">2010-01-14 14:42:25&nbsp;</td>\\n              </tr>\\n                            <tr>\\n                <td height=\\\"25\\\" align=\\\"left\\\"><a href=\\\"show.php?id=32\\\" target=\\\"_blank\\\">国民经济运行发布会或21日召开 公布09年数据</a>&nbsp;</td>\\n                <td width=\\\"120\\\" align=\\\"left\\\">2010-01-14 14:41:40&nbsp;</td>\\n              </tr>\\n                          </table></td>\\n        </tr>\\n      </table>\\n            <table width=\\\"96%\\\" border=\\\"0\\\" align=\\\"center\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" >\\n        <tr>\\n          <td width=\\\"82%\\\" height=\\\"40\\\" align=\\\"left\\\" class=\\\"centerTitleBg\\\">国际新闻</td>\\n          <td width=\\\"18%\\\" align=\\\"right\\\" class=\\\"centerTitleBg\\\"><a href=\\\"list.php?id=16\\\"><img src=\\\"images/more.gif\\\" width=\\\"39\\\" height=\\\"7\\\" border=\\\"0\\\" /></a>&nbsp;&nbsp;</td>\\n        </tr>\\n        <tr>\\n          <td colspan=\\\"2\\\" align=\\\"left\\\" valign=\\\"top\\\" class=\\\"hui\\\"><table width=\\\"99%\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" class=\\\"news\\\">\\n            </table>\\n            <table width=\\\"99%\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" class=\\\"news\\\">\\n                           <tr>\\n                <td height=\\\"25\\\" align=\\\"left\\\"><a href=\\\"show.php?id=35\\\" target=\\\"_blank\\\">美报盘点过去10年：美经济及打工仔失落十年</a>&nbsp;</td>\\n                <td width=\\\"120\\\" align=\\\"left\\\">2010-01-14 14:45:46&nbsp;</td>\\n              </tr>\\n                            <tr>\\n                <td height=\\\"25\\\" align=\\\"left\\\"><a href=\\\"show.php?id=34\\\" target=\\\"_blank\\\">以色列称“铁穹”反火箭弹系统试验成功</a>&nbsp;</td>\\n                <td width=\\\"120\\\" align=\\\"left\\\">2010-01-14 14:43:08&nbsp;</td>\\n              </tr>\\n                          </table></td>\\n        </tr>\\n      </table>\\n            </td>\\n    <td align=\\\"left\\\" valign=\\\"top\\\"><table width=\\\"192\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n      <tr>\\n        <td><img src=\\\"images/img_09.gif\\\" width=\\\"192\\\" height=\\\"9\\\" /></td>\\n      </tr>\\n      <tr>\\n        <th align=\\\"center\\\" class=\\\"ProductLine\\\"><form id=\\\"form1\\\" name=\\\"form1\\\" method=\\\"get\\\" action=\\\"search.php\\\">\\n            <p>\\n              本站搜索\\n                <br />\\n                <input type=\\\"text\\\" name=\\\"keywords\\\" id=\\\"keywords\\\" />\\n                <br />\\n                <input type=\\\"submit\\\" name=\\\"button\\\" id=\\\"button\\\" value=\\\"搜索\\\" />\\n            </p>\\n        </form></th>\\n      </tr>\\n      <tr>\\n        <td><img src=\\\"images/img_10.gif\\\" width=\\\"192\\\" height=\\\"9\\\" /></td>\\n      </tr>\\n    </table>      <br /></td>\\n  </tr>\\n  <tr>\\n    <td align=\\\"left\\\" valign=\\\"bottom\\\"><table width=\\\"192\\\" border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\">\\n      <tr>\\n        <td><img src=\\\"images/img_09.gif\\\" width=\\\"192\\\" height=\\\"9\\\" /></td>\\n      </tr>\\n      <tr>\\n        <th height=\\\"26\\\" class=\\\"ProductLine\\\" align=\\\"center\\\">友情链接</th>\\n      </tr>\\n      <tr>\\n        <td height=\\\"100\\\" align=\\\"left\\\" valign=\\\"top\\\" class=\\\"ProductLine padding\\\"></td>\\n      </tr>\\n      <tr>\\n        <td><img src=\\\"images/img_10.gif\\\" width=\\\"192\\\" height=\\\"9\\\" /></td>\\n      </tr>\\n    </table></td>\\n  </tr>\\n</table>\\n<table width=\\\"100%\\\" border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" class=\\\" bottomBg\\\">\\n<tr>\\n    <td height=\\\"70\\\" align=\\\"center\\\" class=\\\"hui\\\">\\n\\t  Copyright(C)2009 <a href=\\\"http://www.test.com\\\" class=\\\"hui12\\\" target=\\\"_blank\\\">test.com</a>  All Rights Reserved <br />\\n      邮箱：root@test.com<br /></td>\\n </tr>\\n</table>\\n</div>\\n</body>\\n</html>\"\n\tprintln(utils.MatchTitle(html))\n}\n"
  },
  {
    "path": "tests/units/main_test.go",
    "content": "package units\n\nimport (\n\t\"bytes\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"testing\"\n)\n\nfunc TestMainJson(t *testing.T) {\n\tvar info []map[int]string\n\n\tfor i := 0; i < 10; i++ {\n\t\tvar num = make(map[int]string)\n\t\tnum[i] = \"&lsl\"\n\t\tinfo = append(info, num)\n\t}\n\n\tbf := bytes.NewBuffer([]byte{})\n\tjsonEncoder := json.NewEncoder(bf)\n\tjsonEncoder.SetEscapeHTML(false)\n\tjsonEncoder.SetIndent(\"\", \"    \")\n\tjsonEncoder.Encode(info)\n\tfmt.Println(bf.String())\n\n}\n"
  },
  {
    "path": "tests/units/map_test.go",
    "content": "package units\n\nimport (\n\tmodels \"Caesar/internal/relation\"\n\t\"encoding/json\"\n\t\"io/ioutil\"\n\t\"testing\"\n)\n\n/*\n此单元测试可以将字典的hits重制为0, 慎用\n*/\nfunc TestMap(t *testing.T) {\n\n\tassetsDir := \"../../assets/directory/\"\n\n\t//获取文件或目录相关信息\n\tfileInfoList, err := ioutil.ReadDir(assetsDir)\n\tif err != nil {\n\t\tprintln(\"Can not open dir\")\n\t}\n\tfor i := range fileInfoList {\n\t\tfileName := assetsDir + fileInfoList[i].Name()\n\n\t\tvar eachJson []models.EachPath\n\t\tvar newJson []models.EachPath\n\n\t\tbytes, err := ioutil.ReadFile(fileName)\n\t\tif err != nil {\n\t\t\tprintln(fileName + \" open failed\")\n\t\t}\n\n\t\tif err := json.Unmarshal(bytes, &eachJson); err != nil {\n\t\t\tprintln(\"json Unmarshal is failed\")\n\t\t}\n\n\t\tfor _, v := range eachJson {\n\t\t\tv.Hits = 0\n\t\t\tnewJson = append(newJson, v)\n\t\t}\n\n\t\t// 最后面4个空格，让json格式更美观\n\t\tresult, _ := json.MarshalIndent(newJson, \"\", \"    \")\n\n\t\t_ = ioutil.WriteFile(fileName, result, 0644)\n\n\t}\n\n}\n"
  },
  {
    "path": "tests/units/random_test.go",
    "content": "package units\n\nimport (\n\t\"math/rand\"\n\t\"testing\"\n\t\"time\"\n)\n\nfunc TestRan(T *testing.T) {\n\tfor i := 0; i < 1000; i++ {\n\t\trand.Seed(time.Now().UnixNano())\n\t\tprintln(rand.Intn(100))\n\t}\n\n}\n"
  },
  {
    "path": "tests/units/similar_test.go",
    "content": "package units\n\nimport (\n\t\"Caesar/pkg/utils\"\n\t\"testing\"\n)\n\nfunc TestSimilar(T *testing.T) {\n\tratio := utils.ComputeLevenshteinPercentage(\"index.djangophp\", \"indexluffy.php\")\n\tprintln(ratio)\n}\n"
  },
  {
    "path": "tests/units/strings_test.go",
    "content": "package units\n\nimport (\n\t\"Caesar/pkg/utils\"\n\t\"testing\"\n)\n\nfunc TestRandom(t *testing.T) {\n\tdemo := []string{\"shadow\"}\n\tprintln(utils.GetRandomElement(demo))\n\tprintln(utils.GenRandString(4))\n}\n\nfunc TestIps(t *testing.T) {\n\tprintln(utils.DomainToIP(\"www.baidu.com\"))\n\tprintln(utils.DomainToIP(\"192.168.3.2\"))\n}\n"
  },
  {
    "path": "tests/units/tunnel_proxy_test.go",
    "content": "package units\n\nimport (\n\t\"Caesar/internal/relation\"\n\t\"Caesar/pkg/builder/net/stand\"\n\t\"testing\"\n)\n\nfunc TestProxy5u(t *testing.T) {\n\n\t// http://www.data5u.com/vipip/tunnel.html 无忧代理，动态转发\n\t// 5u的动态端口转发效率比较低，20个请求花费106.20s\n\n\t//proxyUsername := \"【这里替换成你的IP提取码】\"\n\tproxyUsername := \"\"\n\t//proxyPwd := \"【这里替换成你的动态转发密码】\"\n\tproxyPwd := \"\"\n\tproxyIp := \"tunnel.data5u.com:56789\"\n\tdynamicProxy := \"http://\" + proxyUsername + \":\" + proxyPwd + \"@\" + proxyIp\n\n\tproxy := []string{dynamicProxy}[0]\n\n\tfor i := 0; i < 20; i++ {\n\t\tbuild := stand.NewClientBuilder().SetUserAgent(\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:76.0) Gecko/20100101 Firefox/76.0\").SetHeader(relation.Browser.Headers).SetCookie(relation.Browser.Cookie).SetTimeOut(relation.Browser.TimeOut).SetProxy(proxy).SetSkipVerify(true).StandBuilder()\n\t\t_, _, body, _ := build.Get(\"http://myip.ipip.net/\")\n\t\tprintln(string(body))\n\t}\n\n}\n"
  },
  {
    "path": "vendor/github.com/VividCortex/ewma/.gitignore",
    "content": ".DS_Store\n.*.sw?\n"
  },
  {
    "path": "vendor/github.com/VividCortex/ewma/LICENSE",
    "content": "The MIT License\n\nCopyright (c) 2013 VividCortex\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/VividCortex/ewma/README.md",
    "content": "# EWMA [![GoDoc](https://godoc.org/github.com/VividCortex/ewma?status.svg)](https://godoc.org/github.com/VividCortex/ewma) ![Build Status](https://circleci.com/gh/VividCortex/moving_average.png?circle-token=1459fa37f9ca0e50cef05d1963146d96d47ea523)\n\nThis repo provides Exponentially Weighted Moving Average algorithms, or EWMAs for short, [based on our\nQuantifying Abnormal Behavior talk](https://vividcortex.com/blog/2013/07/23/a-fast-go-library-for-exponential-moving-averages/).\n\n### Exponentially Weighted Moving Average\n\nAn exponentially weighted moving average is a way to continuously compute a type of\naverage for a series of numbers, as the numbers arrive. After a value in the series is\nadded to the average, its weight in the average decreases exponentially over time. This\nbiases the average towards more recent data. EWMAs are useful for several reasons, chiefly\ntheir inexpensive computational and memory cost, as well as the fact that they represent\nthe recent central tendency of the series of values.\n\nThe EWMA algorithm requires a decay factor, alpha. The larger the alpha, the more the average\nis biased towards recent history. The alpha must be between 0 and 1, and is typically\na fairly small number, such as 0.04. We will discuss the choice of alpha later.\n\nThe algorithm works thus, in pseudocode:\n\n1. Multiply the next number in the series by alpha.\n2. Multiply the current value of the average by 1 minus alpha.\n3. Add the result of steps 1 and 2, and store it as the new current value of the average.\n4. Repeat for each number in the series.\n\nThere are special-case behaviors for how to initialize the current value, and these vary\nbetween implementations. One approach is to start with the first value in the series;\nanother is to average the first 10 or so values in the series using an arithmetic average,\nand then begin the incremental updating of the average. Each method has pros and cons.\n\nIt may help to look at it pictorially. Suppose the series has five numbers, and we choose\nalpha to be 0.50 for simplicity. Here's the series, with numbers in the neighborhood of 300.\n\n![Data Series](https://user-images.githubusercontent.com/279875/28242350-463289a2-6977-11e7-88ca-fd778ccef1f0.png)\n\nNow let's take the moving average of those numbers. First we set the average to the value\nof the first number.\n\n![EWMA Step 1](https://user-images.githubusercontent.com/279875/28242353-464c96bc-6977-11e7-9981-dc4e0789c7ba.png)\n\nNext we multiply the next number by alpha, multiply the current value by 1-alpha, and add\nthem to generate a new value.\n\n![EWMA Step 2](https://user-images.githubusercontent.com/279875/28242351-464abefa-6977-11e7-95d0-43900f29bef2.png)\n\nThis continues until we are done.\n\n![EWMA Step N](https://user-images.githubusercontent.com/279875/28242352-464c58f0-6977-11e7-8cd0-e01e4efaac7f.png)\n\nNotice how each of the values in the series decays by half each time a new value\nis added, and the top of the bars in the lower portion of the image represents the\nsize of the moving average. It is a smoothed, or low-pass, average of the original\nseries.\n\nFor further reading, see [Exponentially weighted moving average](http://en.wikipedia.org/wiki/Moving_average#Exponential_moving_average) on wikipedia.\n\n### Choosing Alpha\n\nConsider a fixed-size sliding-window moving average (not an exponentially weighted moving average)\nthat averages over the previous N samples. What is the average age of each sample? It is N/2.\n\nNow suppose that you wish to construct a EWMA whose samples have the same average age. The formula\nto compute the alpha required for this is: alpha = 2/(N+1). Proof is in the book\n\"Production and Operations Analysis\" by Steven Nahmias.\n\nSo, for example, if you have a time-series with samples once per second, and you want to get the\nmoving average over the previous minute, you should use an alpha of .032786885. This, by the way,\nis the constant alpha used for this repository's SimpleEWMA.\n\n### Implementations\n\nThis repository contains two implementations of the EWMA algorithm, with different properties.\n\nThe implementations all conform to the MovingAverage interface, and the constructor returns\nthat type.\n\nCurrent implementations assume an implicit time interval of 1.0 between every sample added.\nThat is, the passage of time is treated as though it's the same as the arrival of samples.\nIf you need time-based decay when samples are not arriving precisely at set intervals, then\nthis package will not support your needs at present.\n\n#### SimpleEWMA\n\nA SimpleEWMA is designed for low CPU and memory consumption. It **will** have different behavior than the VariableEWMA\nfor multiple reasons. It has no warm-up period and it uses a constant\ndecay.  These properties let it use less memory.  It will also behave\ndifferently when it's equal to zero, which is assumed to mean\nuninitialized, so if a value is likely to actually become zero over time,\nthen any non-zero value will cause a sharp jump instead of a small change.\n\n#### VariableEWMA\n\nUnlike SimpleEWMA, this supports a custom age which must be stored, and thus uses more memory.\nIt also has a \"warmup\" time when you start adding values to it. It will report a value of 0.0\nuntil you have added the required number of samples to it. It uses some memory to store the\nnumber of samples added to it. As a result it uses a little over twice the memory of SimpleEWMA.\n\n## Usage\n\n### API Documentation\n\nView the GoDoc generated documentation [here](http://godoc.org/github.com/VividCortex/ewma).\n\n```go\npackage main\nimport \"github.com/VividCortex/ewma\"\n\nfunc main() {\n  samples := [100]float64{\n    4599, 5711, 4746, 4621, 5037, 4218, 4925, 4281, 5207, 5203, 5594, 5149,\n  }\n\n  e := ewma.NewMovingAverage()       //=> Returns a SimpleEWMA if called without params\n  a := ewma.NewMovingAverage(5)      //=> returns a VariableEWMA with a decay of 2 / (5 + 1)\n\n  for _, f := range samples {\n    e.Add(f)\n    a.Add(f)\n  }\n\n  e.Value() //=> 13.577404704631077\n  a.Value() //=> 1.5806140565521463e-12\n}\n```\n\n## Contributing\n\nWe only accept pull requests for minor fixes or improvements. This includes:\n\n* Small bug fixes\n* Typos\n* Documentation or comments\n\nPlease open issues to discuss new features. Pull requests for new features will be rejected,\nso we recommend forking the repository and making changes in your fork for your use case.\n\n## License\n\nThis repository is Copyright (c) 2013 VividCortex, Inc. All rights reserved.\nIt is licensed under the MIT license. Please see the LICENSE file for applicable license terms.\n"
  },
  {
    "path": "vendor/github.com/VividCortex/ewma/ewma.go",
    "content": "// Package ewma implements exponentially weighted moving averages.\npackage ewma\n\n// Copyright (c) 2013 VividCortex, Inc. All rights reserved.\n// Please see the LICENSE file for applicable license terms.\n\nconst (\n\t// By default, we average over a one-minute period, which means the average\n\t// age of the metrics in the period is 30 seconds.\n\tAVG_METRIC_AGE float64 = 30.0\n\n\t// The formula for computing the decay factor from the average age comes\n\t// from \"Production and Operations Analysis\" by Steven Nahmias.\n\tDECAY float64 = 2 / (float64(AVG_METRIC_AGE) + 1)\n\n\t// For best results, the moving average should not be initialized to the\n\t// samples it sees immediately. The book \"Production and Operations\n\t// Analysis\" by Steven Nahmias suggests initializing the moving average to\n\t// the mean of the first 10 samples. Until the VariableEwma has seen this\n\t// many samples, it is not \"ready\" to be queried for the value of the\n\t// moving average. This adds some memory cost.\n\tWARMUP_SAMPLES uint8 = 10\n)\n\n// MovingAverage is the interface that computes a moving average over a time-\n// series stream of numbers. The average may be over a window or exponentially\n// decaying.\ntype MovingAverage interface {\n\tAdd(float64)\n\tValue() float64\n\tSet(float64)\n}\n\n// NewMovingAverage constructs a MovingAverage that computes an average with the\n// desired characteristics in the moving window or exponential decay. If no\n// age is given, it constructs a default exponentially weighted implementation\n// that consumes minimal memory. The age is related to the decay factor alpha\n// by the formula given for the DECAY constant. It signifies the average age\n// of the samples as time goes to infinity.\nfunc NewMovingAverage(age ...float64) MovingAverage {\n\tif len(age) == 0 || age[0] == AVG_METRIC_AGE {\n\t\treturn new(SimpleEWMA)\n\t}\n\treturn &VariableEWMA{\n\t\tdecay: 2 / (age[0] + 1),\n\t}\n}\n\n// A SimpleEWMA represents the exponentially weighted moving average of a\n// series of numbers. It WILL have different behavior than the VariableEWMA\n// for multiple reasons. It has no warm-up period and it uses a constant\n// decay.  These properties let it use less memory.  It will also behave\n// differently when it's equal to zero, which is assumed to mean\n// uninitialized, so if a value is likely to actually become zero over time,\n// then any non-zero value will cause a sharp jump instead of a small change.\n// However, note that this takes a long time, and the value may just\n// decays to a stable value that's close to zero, but which won't be mistaken\n// for uninitialized. See http://play.golang.org/p/litxBDr_RC for example.\ntype SimpleEWMA struct {\n\t// The current value of the average. After adding with Add(), this is\n\t// updated to reflect the average of all values seen thus far.\n\tvalue float64\n}\n\n// Add adds a value to the series and updates the moving average.\nfunc (e *SimpleEWMA) Add(value float64) {\n\tif e.value == 0 { // this is a proxy for \"uninitialized\"\n\t\te.value = value\n\t} else {\n\t\te.value = (value * DECAY) + (e.value * (1 - DECAY))\n\t}\n}\n\n// Value returns the current value of the moving average.\nfunc (e *SimpleEWMA) Value() float64 {\n\treturn e.value\n}\n\n// Set sets the EWMA's value.\nfunc (e *SimpleEWMA) Set(value float64) {\n\te.value = value\n}\n\n// VariableEWMA represents the exponentially weighted moving average of a series of\n// numbers. Unlike SimpleEWMA, it supports a custom age, and thus uses more memory.\ntype VariableEWMA struct {\n\t// The multiplier factor by which the previous samples decay.\n\tdecay float64\n\t// The current value of the average.\n\tvalue float64\n\t// The number of samples added to this instance.\n\tcount uint8\n}\n\n// Add adds a value to the series and updates the moving average.\nfunc (e *VariableEWMA) Add(value float64) {\n\tswitch {\n\tcase e.count < WARMUP_SAMPLES:\n\t\te.count++\n\t\te.value += value\n\tcase e.count == WARMUP_SAMPLES:\n\t\te.count++\n\t\te.value = e.value / float64(WARMUP_SAMPLES)\n\t\te.value = (value * e.decay) + (e.value * (1 - e.decay))\n\tdefault:\n\t\te.value = (value * e.decay) + (e.value * (1 - e.decay))\n\t}\n}\n\n// Value returns the current value of the average, or 0.0 if the series hasn't\n// warmed up yet.\nfunc (e *VariableEWMA) Value() float64 {\n\tif e.count <= WARMUP_SAMPLES {\n\t\treturn 0.0\n\t}\n\n\treturn e.value\n}\n\n// Set sets the EWMA's value.\nfunc (e *VariableEWMA) Set(value float64) {\n\te.value = value\n\tif e.count <= WARMUP_SAMPLES {\n\t\te.count = WARMUP_SAMPLES + 1\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/LICENSE",
    "content": "Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/README.md",
    "content": "This package is a brotli compressor and decompressor implemented in Go.\nIt was translated from the reference implementation (https://github.com/google/brotli)\nwith the `c2go` tool at https://github.com/andybalholm/c2go.\n\nI am using it in production with https://github.com/andybalholm/redwood.\n\nAPI documentation is found at https://pkg.go.dev/github.com/andybalholm/brotli?tab=doc.\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/backward_references.go",
    "content": "package brotli\n\nimport (\n\t\"sync\"\n)\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Function to find backward reference copies. */\n\nfunc computeDistanceCode(distance uint, max_distance uint, dist_cache []int) uint {\n\tif distance <= max_distance {\n\t\tvar distance_plus_3 uint = distance + 3\n\t\tvar offset0 uint = distance_plus_3 - uint(dist_cache[0])\n\t\tvar offset1 uint = distance_plus_3 - uint(dist_cache[1])\n\t\tif distance == uint(dist_cache[0]) {\n\t\t\treturn 0\n\t\t} else if distance == uint(dist_cache[1]) {\n\t\t\treturn 1\n\t\t} else if offset0 < 7 {\n\t\t\treturn (0x9750468 >> (4 * offset0)) & 0xF\n\t\t} else if offset1 < 7 {\n\t\t\treturn (0xFDB1ACE >> (4 * offset1)) & 0xF\n\t\t} else if distance == uint(dist_cache[2]) {\n\t\t\treturn 2\n\t\t} else if distance == uint(dist_cache[3]) {\n\t\t\treturn 3\n\t\t}\n\t}\n\n\treturn distance + numDistanceShortCodes - 1\n}\n\nvar hasherSearchResultPool sync.Pool\n\nfunc createBackwardReferences(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint, params *encoderParams, hasher hasherHandle, dist_cache []int, last_insert_len *uint, commands *[]command, num_literals *uint) {\n\tvar max_backward_limit uint = maxBackwardLimit(params.lgwin)\n\tvar insert_length uint = *last_insert_len\n\tvar pos_end uint = position + num_bytes\n\tvar store_end uint\n\tif num_bytes >= hasher.StoreLookahead() {\n\t\tstore_end = position + num_bytes - hasher.StoreLookahead() + 1\n\t} else {\n\t\tstore_end = position\n\t}\n\tvar random_heuristics_window_size uint = literalSpreeLengthForSparseSearch(params)\n\tvar apply_random_heuristics uint = position + random_heuristics_window_size\n\tvar gap uint = 0\n\t/* Set maximum distance, see section 9.1. of the spec. */\n\n\tconst kMinScore uint = scoreBase + 100\n\n\t/* For speed up heuristics for random data. */\n\n\t/* Minimum score to accept a backward reference. */\n\thasher.PrepareDistanceCache(dist_cache)\n\tsr2, _ := hasherSearchResultPool.Get().(*hasherSearchResult)\n\tif sr2 == nil {\n\t\tsr2 = &hasherSearchResult{}\n\t}\n\tsr, _ := hasherSearchResultPool.Get().(*hasherSearchResult)\n\tif sr == nil {\n\t\tsr = &hasherSearchResult{}\n\t}\n\n\tfor position+hasher.HashTypeLength() < pos_end {\n\t\tvar max_length uint = pos_end - position\n\t\tvar max_distance uint = brotli_min_size_t(position, max_backward_limit)\n\t\tsr.len = 0\n\t\tsr.len_code_delta = 0\n\t\tsr.distance = 0\n\t\tsr.score = kMinScore\n\t\thasher.FindLongestMatch(&params.dictionary, ringbuffer, ringbuffer_mask, dist_cache, position, max_length, max_distance, gap, params.dist.max_distance, sr)\n\t\tif sr.score > kMinScore {\n\t\t\t/* Found a match. Let's look for something even better ahead. */\n\t\t\tvar delayed_backward_references_in_row int = 0\n\t\t\tmax_length--\n\t\t\tfor ; ; max_length-- {\n\t\t\t\tvar cost_diff_lazy uint = 175\n\t\t\t\tif params.quality < minQualityForExtensiveReferenceSearch {\n\t\t\t\t\tsr2.len = brotli_min_size_t(sr.len-1, max_length)\n\t\t\t\t} else {\n\t\t\t\t\tsr2.len = 0\n\t\t\t\t}\n\t\t\t\tsr2.len_code_delta = 0\n\t\t\t\tsr2.distance = 0\n\t\t\t\tsr2.score = kMinScore\n\t\t\t\tmax_distance = brotli_min_size_t(position+1, max_backward_limit)\n\t\t\t\thasher.FindLongestMatch(&params.dictionary, ringbuffer, ringbuffer_mask, dist_cache, position+1, max_length, max_distance, gap, params.dist.max_distance, sr2)\n\t\t\t\tif sr2.score >= sr.score+cost_diff_lazy {\n\t\t\t\t\t/* Ok, let's just write one byte for now and start a match from the\n\t\t\t\t\t   next byte. */\n\t\t\t\t\tposition++\n\n\t\t\t\t\tinsert_length++\n\t\t\t\t\t*sr = *sr2\n\t\t\t\t\tdelayed_backward_references_in_row++\n\t\t\t\t\tif delayed_backward_references_in_row < 4 && position+hasher.HashTypeLength() < pos_end {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tapply_random_heuristics = position + 2*sr.len + random_heuristics_window_size\n\t\t\tmax_distance = brotli_min_size_t(position, max_backward_limit)\n\t\t\t{\n\t\t\t\t/* The first 16 codes are special short-codes,\n\t\t\t\t   and the minimum offset is 1. */\n\t\t\t\tvar distance_code uint = computeDistanceCode(sr.distance, max_distance+gap, dist_cache)\n\t\t\t\tif (sr.distance <= (max_distance + gap)) && distance_code > 0 {\n\t\t\t\t\tdist_cache[3] = dist_cache[2]\n\t\t\t\t\tdist_cache[2] = dist_cache[1]\n\t\t\t\t\tdist_cache[1] = dist_cache[0]\n\t\t\t\t\tdist_cache[0] = int(sr.distance)\n\t\t\t\t\thasher.PrepareDistanceCache(dist_cache)\n\t\t\t\t}\n\n\t\t\t\t*commands = append(*commands, makeCommand(&params.dist, insert_length, sr.len, sr.len_code_delta, distance_code))\n\t\t\t}\n\n\t\t\t*num_literals += insert_length\n\t\t\tinsert_length = 0\n\t\t\t/* Put the hash keys into the table, if there are enough bytes left.\n\t\t\t   Depending on the hasher implementation, it can push all positions\n\t\t\t   in the given range or only a subset of them.\n\t\t\t   Avoid hash poisoning with RLE data. */\n\t\t\t{\n\t\t\t\tvar range_start uint = position + 2\n\t\t\t\tvar range_end uint = brotli_min_size_t(position+sr.len, store_end)\n\t\t\t\tif sr.distance < sr.len>>2 {\n\t\t\t\t\trange_start = brotli_min_size_t(range_end, brotli_max_size_t(range_start, position+sr.len-(sr.distance<<2)))\n\t\t\t\t}\n\n\t\t\t\thasher.StoreRange(ringbuffer, ringbuffer_mask, range_start, range_end)\n\t\t\t}\n\n\t\t\tposition += sr.len\n\t\t} else {\n\t\t\tinsert_length++\n\t\t\tposition++\n\n\t\t\t/* If we have not seen matches for a long time, we can skip some\n\t\t\t   match lookups. Unsuccessful match lookups are very very expensive\n\t\t\t   and this kind of a heuristic speeds up compression quite\n\t\t\t   a lot. */\n\t\t\tif position > apply_random_heuristics {\n\t\t\t\t/* Going through uncompressible data, jump. */\n\t\t\t\tif position > apply_random_heuristics+4*random_heuristics_window_size {\n\t\t\t\t\tvar kMargin uint = brotli_max_size_t(hasher.StoreLookahead()-1, 4)\n\t\t\t\t\t/* It is quite a long time since we saw a copy, so we assume\n\t\t\t\t\t   that this data is not compressible, and store hashes less\n\t\t\t\t\t   often. Hashes of non compressible data are less likely to\n\t\t\t\t\t   turn out to be useful in the future, too, so we store less of\n\t\t\t\t\t   them to not to flood out the hash table of good compressible\n\t\t\t\t\t   data. */\n\n\t\t\t\t\tvar pos_jump uint = brotli_min_size_t(position+16, pos_end-kMargin)\n\t\t\t\t\tfor ; position < pos_jump; position += 4 {\n\t\t\t\t\t\thasher.Store(ringbuffer, ringbuffer_mask, position)\n\t\t\t\t\t\tinsert_length += 4\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tvar kMargin uint = brotli_max_size_t(hasher.StoreLookahead()-1, 2)\n\t\t\t\t\tvar pos_jump uint = brotli_min_size_t(position+8, pos_end-kMargin)\n\t\t\t\t\tfor ; position < pos_jump; position += 2 {\n\t\t\t\t\t\thasher.Store(ringbuffer, ringbuffer_mask, position)\n\t\t\t\t\t\tinsert_length += 2\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tinsert_length += pos_end - position\n\t*last_insert_len = insert_length\n\n\thasherSearchResultPool.Put(sr)\n\thasherSearchResultPool.Put(sr2)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/backward_references_hq.go",
    "content": "package brotli\n\nimport \"math\"\n\ntype zopfliNode struct {\n\tlength              uint32\n\tdistance            uint32\n\tdcode_insert_length uint32\n\tu                   struct {\n\t\tcost     float32\n\t\tnext     uint32\n\t\tshortcut uint32\n\t}\n}\n\nconst maxEffectiveDistanceAlphabetSize = 544\n\nconst kInfinity float32 = 1.7e38 /* ~= 2 ^ 127 */\n\nvar kDistanceCacheIndex = []uint32{0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1}\n\nvar kDistanceCacheOffset = []int{0, 0, 0, 0, -1, 1, -2, 2, -3, 3, -1, 1, -2, 2, -3, 3}\n\nfunc initZopfliNodes(array []zopfliNode, length uint) {\n\tvar stub zopfliNode\n\tvar i uint\n\tstub.length = 1\n\tstub.distance = 0\n\tstub.dcode_insert_length = 0\n\tstub.u.cost = kInfinity\n\tfor i = 0; i < length; i++ {\n\t\tarray[i] = stub\n\t}\n}\n\nfunc zopfliNodeCopyLength(self *zopfliNode) uint32 {\n\treturn self.length & 0x1FFFFFF\n}\n\nfunc zopfliNodeLengthCode(self *zopfliNode) uint32 {\n\tvar modifier uint32 = self.length >> 25\n\treturn zopfliNodeCopyLength(self) + 9 - modifier\n}\n\nfunc zopfliNodeCopyDistance(self *zopfliNode) uint32 {\n\treturn self.distance\n}\n\nfunc zopfliNodeDistanceCode(self *zopfliNode) uint32 {\n\tvar short_code uint32 = self.dcode_insert_length >> 27\n\tif short_code == 0 {\n\t\treturn zopfliNodeCopyDistance(self) + numDistanceShortCodes - 1\n\t} else {\n\t\treturn short_code - 1\n\t}\n}\n\nfunc zopfliNodeCommandLength(self *zopfliNode) uint32 {\n\treturn zopfliNodeCopyLength(self) + (self.dcode_insert_length & 0x7FFFFFF)\n}\n\n/* Histogram based cost model for zopflification. */\ntype zopfliCostModel struct {\n\tcost_cmd_               [numCommandSymbols]float32\n\tcost_dist_              []float32\n\tdistance_histogram_size uint32\n\tliteral_costs_          []float32\n\tmin_cost_cmd_           float32\n\tnum_bytes_              uint\n}\n\nfunc initZopfliCostModel(self *zopfliCostModel, dist *distanceParams, num_bytes uint) {\n\tvar distance_histogram_size uint32 = dist.alphabet_size\n\tif distance_histogram_size > maxEffectiveDistanceAlphabetSize {\n\t\tdistance_histogram_size = maxEffectiveDistanceAlphabetSize\n\t}\n\n\tself.num_bytes_ = num_bytes\n\tself.literal_costs_ = make([]float32, (num_bytes + 2))\n\tself.cost_dist_ = make([]float32, (dist.alphabet_size))\n\tself.distance_histogram_size = distance_histogram_size\n}\n\nfunc cleanupZopfliCostModel(self *zopfliCostModel) {\n\tself.literal_costs_ = nil\n\tself.cost_dist_ = nil\n}\n\nfunc setCost(histogram []uint32, histogram_size uint, literal_histogram bool, cost []float32) {\n\tvar sum uint = 0\n\tvar missing_symbol_sum uint\n\tvar log2sum float32\n\tvar missing_symbol_cost float32\n\tvar i uint\n\tfor i = 0; i < histogram_size; i++ {\n\t\tsum += uint(histogram[i])\n\t}\n\n\tlog2sum = float32(fastLog2(sum))\n\tmissing_symbol_sum = sum\n\tif !literal_histogram {\n\t\tfor i = 0; i < histogram_size; i++ {\n\t\t\tif histogram[i] == 0 {\n\t\t\t\tmissing_symbol_sum++\n\t\t\t}\n\t\t}\n\t}\n\n\tmissing_symbol_cost = float32(fastLog2(missing_symbol_sum)) + 2\n\tfor i = 0; i < histogram_size; i++ {\n\t\tif histogram[i] == 0 {\n\t\t\tcost[i] = missing_symbol_cost\n\t\t\tcontinue\n\t\t}\n\n\t\t/* Shannon bits for this symbol. */\n\t\tcost[i] = log2sum - float32(fastLog2(uint(histogram[i])))\n\n\t\t/* Cannot be coded with less than 1 bit */\n\t\tif cost[i] < 1 {\n\t\t\tcost[i] = 1\n\t\t}\n\t}\n}\n\nfunc zopfliCostModelSetFromCommands(self *zopfliCostModel, position uint, ringbuffer []byte, ringbuffer_mask uint, commands []command, last_insert_len uint) {\n\tvar histogram_literal [numLiteralSymbols]uint32\n\tvar histogram_cmd [numCommandSymbols]uint32\n\tvar histogram_dist [maxEffectiveDistanceAlphabetSize]uint32\n\tvar cost_literal [numLiteralSymbols]float32\n\tvar pos uint = position - last_insert_len\n\tvar min_cost_cmd float32 = kInfinity\n\tvar cost_cmd []float32 = self.cost_cmd_[:]\n\tvar literal_costs []float32\n\n\thistogram_literal = [numLiteralSymbols]uint32{}\n\thistogram_cmd = [numCommandSymbols]uint32{}\n\thistogram_dist = [maxEffectiveDistanceAlphabetSize]uint32{}\n\n\tfor i := range commands {\n\t\tvar inslength uint = uint(commands[i].insert_len_)\n\t\tvar copylength uint = uint(commandCopyLen(&commands[i]))\n\t\tvar distcode uint = uint(commands[i].dist_prefix_) & 0x3FF\n\t\tvar cmdcode uint = uint(commands[i].cmd_prefix_)\n\t\tvar j uint\n\n\t\thistogram_cmd[cmdcode]++\n\t\tif cmdcode >= 128 {\n\t\t\thistogram_dist[distcode]++\n\t\t}\n\n\t\tfor j = 0; j < inslength; j++ {\n\t\t\thistogram_literal[ringbuffer[(pos+j)&ringbuffer_mask]]++\n\t\t}\n\n\t\tpos += inslength + copylength\n\t}\n\n\tsetCost(histogram_literal[:], numLiteralSymbols, true, cost_literal[:])\n\tsetCost(histogram_cmd[:], numCommandSymbols, false, cost_cmd)\n\tsetCost(histogram_dist[:], uint(self.distance_histogram_size), false, self.cost_dist_)\n\n\tfor i := 0; i < numCommandSymbols; i++ {\n\t\tmin_cost_cmd = brotli_min_float(min_cost_cmd, cost_cmd[i])\n\t}\n\n\tself.min_cost_cmd_ = min_cost_cmd\n\t{\n\t\tliteral_costs = self.literal_costs_\n\t\tvar literal_carry float32 = 0.0\n\t\tnum_bytes := int(self.num_bytes_)\n\t\tliteral_costs[0] = 0.0\n\t\tfor i := 0; i < num_bytes; i++ {\n\t\t\tliteral_carry += cost_literal[ringbuffer[(position+uint(i))&ringbuffer_mask]]\n\t\t\tliteral_costs[i+1] = literal_costs[i] + literal_carry\n\t\t\tliteral_carry -= literal_costs[i+1] - literal_costs[i]\n\t\t}\n\t}\n}\n\nfunc zopfliCostModelSetFromLiteralCosts(self *zopfliCostModel, position uint, ringbuffer []byte, ringbuffer_mask uint) {\n\tvar literal_costs []float32 = self.literal_costs_\n\tvar literal_carry float32 = 0.0\n\tvar cost_dist []float32 = self.cost_dist_\n\tvar cost_cmd []float32 = self.cost_cmd_[:]\n\tvar num_bytes uint = self.num_bytes_\n\tvar i uint\n\testimateBitCostsForLiterals(position, num_bytes, ringbuffer_mask, ringbuffer, literal_costs[1:])\n\tliteral_costs[0] = 0.0\n\tfor i = 0; i < num_bytes; i++ {\n\t\tliteral_carry += literal_costs[i+1]\n\t\tliteral_costs[i+1] = literal_costs[i] + literal_carry\n\t\tliteral_carry -= literal_costs[i+1] - literal_costs[i]\n\t}\n\n\tfor i = 0; i < numCommandSymbols; i++ {\n\t\tcost_cmd[i] = float32(fastLog2(uint(11 + uint32(i))))\n\t}\n\n\tfor i = 0; uint32(i) < self.distance_histogram_size; i++ {\n\t\tcost_dist[i] = float32(fastLog2(uint(20 + uint32(i))))\n\t}\n\n\tself.min_cost_cmd_ = float32(fastLog2(11))\n}\n\nfunc zopfliCostModelGetCommandCost(self *zopfliCostModel, cmdcode uint16) float32 {\n\treturn self.cost_cmd_[cmdcode]\n}\n\nfunc zopfliCostModelGetDistanceCost(self *zopfliCostModel, distcode uint) float32 {\n\treturn self.cost_dist_[distcode]\n}\n\nfunc zopfliCostModelGetLiteralCosts(self *zopfliCostModel, from uint, to uint) float32 {\n\treturn self.literal_costs_[to] - self.literal_costs_[from]\n}\n\nfunc zopfliCostModelGetMinCostCmd(self *zopfliCostModel) float32 {\n\treturn self.min_cost_cmd_\n}\n\n/* REQUIRES: len >= 2, start_pos <= pos */\n/* REQUIRES: cost < kInfinity, nodes[start_pos].cost < kInfinity */\n/* Maintains the \"ZopfliNode array invariant\". */\nfunc updateZopfliNode(nodes []zopfliNode, pos uint, start_pos uint, len uint, len_code uint, dist uint, short_code uint, cost float32) {\n\tvar next *zopfliNode = &nodes[pos+len]\n\tnext.length = uint32(len | (len+9-len_code)<<25)\n\tnext.distance = uint32(dist)\n\tnext.dcode_insert_length = uint32(short_code<<27 | (pos - start_pos))\n\tnext.u.cost = cost\n}\n\ntype posData struct {\n\tpos            uint\n\tdistance_cache [4]int\n\tcostdiff       float32\n\tcost           float32\n}\n\n/* Maintains the smallest 8 cost difference together with their positions */\ntype startPosQueue struct {\n\tq_   [8]posData\n\tidx_ uint\n}\n\nfunc initStartPosQueue(self *startPosQueue) {\n\tself.idx_ = 0\n}\n\nfunc startPosQueueSize(self *startPosQueue) uint {\n\treturn brotli_min_size_t(self.idx_, 8)\n}\n\nfunc startPosQueuePush(self *startPosQueue, posdata *posData) {\n\tvar offset uint = ^(self.idx_) & 7\n\tself.idx_++\n\tvar len uint = startPosQueueSize(self)\n\tvar i uint\n\tvar q []posData = self.q_[:]\n\tq[offset] = *posdata\n\n\t/* Restore the sorted order. In the list of |len| items at most |len - 1|\n\t   adjacent element comparisons / swaps are required. */\n\tfor i = 1; i < len; i++ {\n\t\tif q[offset&7].costdiff > q[(offset+1)&7].costdiff {\n\t\t\tvar tmp posData = q[offset&7]\n\t\t\tq[offset&7] = q[(offset+1)&7]\n\t\t\tq[(offset+1)&7] = tmp\n\t\t}\n\n\t\toffset++\n\t}\n}\n\nfunc startPosQueueAt(self *startPosQueue, k uint) *posData {\n\treturn &self.q_[(k-self.idx_)&7]\n}\n\n/* Returns the minimum possible copy length that can improve the cost of any */\n/* future position. */\nfunc computeMinimumCopyLength(start_cost float32, nodes []zopfliNode, num_bytes uint, pos uint) uint {\n\tvar min_cost float32 = start_cost\n\tvar len uint = 2\n\tvar next_len_bucket uint = 4\n\t/* Compute the minimum possible cost of reaching any future position. */\n\n\tvar next_len_offset uint = 10\n\tfor pos+len <= num_bytes && nodes[pos+len].u.cost <= min_cost {\n\t\t/* We already reached (pos + len) with no more cost than the minimum\n\t\t   possible cost of reaching anything from this pos, so there is no point in\n\t\t   looking for lengths <= len. */\n\t\tlen++\n\n\t\tif len == next_len_offset {\n\t\t\t/* We reached the next copy length code bucket, so we add one more\n\t\t\t   extra bit to the minimum cost. */\n\t\t\tmin_cost += 1.0\n\n\t\t\tnext_len_offset += next_len_bucket\n\t\t\tnext_len_bucket *= 2\n\t\t}\n\t}\n\n\treturn uint(len)\n}\n\n/* REQUIRES: nodes[pos].cost < kInfinity\n   REQUIRES: nodes[0..pos] satisfies that \"ZopfliNode array invariant\". */\nfunc computeDistanceShortcut(block_start uint, pos uint, max_backward_limit uint, gap uint, nodes []zopfliNode) uint32 {\n\tvar clen uint = uint(zopfliNodeCopyLength(&nodes[pos]))\n\tvar ilen uint = uint(nodes[pos].dcode_insert_length & 0x7FFFFFF)\n\tvar dist uint = uint(zopfliNodeCopyDistance(&nodes[pos]))\n\n\t/* Since |block_start + pos| is the end position of the command, the copy part\n\t   starts from |block_start + pos - clen|. Distances that are greater than\n\t   this or greater than |max_backward_limit| + |gap| are static dictionary\n\t   references, and do not update the last distances.\n\t   Also distance code 0 (last distance) does not update the last distances. */\n\tif pos == 0 {\n\t\treturn 0\n\t} else if dist+clen <= block_start+pos+gap && dist <= max_backward_limit+gap && zopfliNodeDistanceCode(&nodes[pos]) > 0 {\n\t\treturn uint32(pos)\n\t} else {\n\t\treturn nodes[pos-clen-ilen].u.shortcut\n\t}\n}\n\n/* Fills in dist_cache[0..3] with the last four distances (as defined by\n   Section 4. of the Spec) that would be used at (block_start + pos) if we\n   used the shortest path of commands from block_start, computed from\n   nodes[0..pos]. The last four distances at block_start are in\n   starting_dist_cache[0..3].\n   REQUIRES: nodes[pos].cost < kInfinity\n   REQUIRES: nodes[0..pos] satisfies that \"ZopfliNode array invariant\". */\nfunc computeDistanceCache(pos uint, starting_dist_cache []int, nodes []zopfliNode, dist_cache []int) {\n\tvar idx int = 0\n\tvar p uint = uint(nodes[pos].u.shortcut)\n\tfor idx < 4 && p > 0 {\n\t\tvar ilen uint = uint(nodes[p].dcode_insert_length & 0x7FFFFFF)\n\t\tvar clen uint = uint(zopfliNodeCopyLength(&nodes[p]))\n\t\tvar dist uint = uint(zopfliNodeCopyDistance(&nodes[p]))\n\t\tdist_cache[idx] = int(dist)\n\t\tidx++\n\n\t\t/* Because of prerequisite, p >= clen + ilen >= 2. */\n\t\tp = uint(nodes[p-clen-ilen].u.shortcut)\n\t}\n\n\tfor ; idx < 4; idx++ {\n\t\tdist_cache[idx] = starting_dist_cache[0]\n\t\tstarting_dist_cache = starting_dist_cache[1:]\n\t}\n}\n\n/* Maintains \"ZopfliNode array invariant\" and pushes node to the queue, if it\n   is eligible. */\nfunc evaluateNode(block_start uint, pos uint, max_backward_limit uint, gap uint, starting_dist_cache []int, model *zopfliCostModel, queue *startPosQueue, nodes []zopfliNode) {\n\t/* Save cost, because ComputeDistanceCache invalidates it. */\n\tvar node_cost float32 = nodes[pos].u.cost\n\tnodes[pos].u.shortcut = computeDistanceShortcut(block_start, pos, max_backward_limit, gap, nodes)\n\tif node_cost <= zopfliCostModelGetLiteralCosts(model, 0, pos) {\n\t\tvar posdata posData\n\t\tposdata.pos = pos\n\t\tposdata.cost = node_cost\n\t\tposdata.costdiff = node_cost - zopfliCostModelGetLiteralCosts(model, 0, pos)\n\t\tcomputeDistanceCache(pos, starting_dist_cache, nodes, posdata.distance_cache[:])\n\t\tstartPosQueuePush(queue, &posdata)\n\t}\n}\n\n/* Returns longest copy length. */\nfunc updateNodes(num_bytes uint, block_start uint, pos uint, ringbuffer []byte, ringbuffer_mask uint, params *encoderParams, max_backward_limit uint, starting_dist_cache []int, num_matches uint, matches []backwardMatch, model *zopfliCostModel, queue *startPosQueue, nodes []zopfliNode) uint {\n\tvar cur_ix uint = block_start + pos\n\tvar cur_ix_masked uint = cur_ix & ringbuffer_mask\n\tvar max_distance uint = brotli_min_size_t(cur_ix, max_backward_limit)\n\tvar max_len uint = num_bytes - pos\n\tvar max_zopfli_len uint = maxZopfliLen(params)\n\tvar max_iters uint = maxZopfliCandidates(params)\n\tvar min_len uint\n\tvar result uint = 0\n\tvar k uint\n\tvar gap uint = 0\n\n\tevaluateNode(block_start, pos, max_backward_limit, gap, starting_dist_cache, model, queue, nodes)\n\t{\n\t\tvar posdata *posData = startPosQueueAt(queue, 0)\n\t\tvar min_cost float32 = (posdata.cost + zopfliCostModelGetMinCostCmd(model) + zopfliCostModelGetLiteralCosts(model, posdata.pos, pos))\n\t\tmin_len = computeMinimumCopyLength(min_cost, nodes, num_bytes, pos)\n\t}\n\n\t/* Go over the command starting positions in order of increasing cost\n\t   difference. */\n\tfor k = 0; k < max_iters && k < startPosQueueSize(queue); k++ {\n\t\tvar posdata *posData = startPosQueueAt(queue, k)\n\t\tvar start uint = posdata.pos\n\t\tvar inscode uint16 = getInsertLengthCode(pos - start)\n\t\tvar start_costdiff float32 = posdata.costdiff\n\t\tvar base_cost float32 = start_costdiff + float32(getInsertExtra(inscode)) + zopfliCostModelGetLiteralCosts(model, 0, pos)\n\t\tvar best_len uint = min_len - 1\n\t\tvar j uint = 0\n\t\t/* Look for last distance matches using the distance cache from this\n\t\t   starting position. */\n\t\tfor ; j < numDistanceShortCodes && best_len < max_len; j++ {\n\t\t\tvar idx uint = uint(kDistanceCacheIndex[j])\n\t\t\tvar backward uint = uint(posdata.distance_cache[idx] + kDistanceCacheOffset[j])\n\t\t\tvar prev_ix uint = cur_ix - backward\n\t\t\tvar len uint = 0\n\t\t\tvar continuation byte = ringbuffer[cur_ix_masked+best_len]\n\t\t\tif cur_ix_masked+best_len > ringbuffer_mask {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif backward > max_distance+gap {\n\t\t\t\t/* Word dictionary -> ignore. */\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tif backward <= max_distance {\n\t\t\t\t/* Regular backward reference. */\n\t\t\t\tif prev_ix >= cur_ix {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tprev_ix &= ringbuffer_mask\n\t\t\t\tif prev_ix+best_len > ringbuffer_mask || continuation != ringbuffer[prev_ix+best_len] {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tlen = findMatchLengthWithLimit(ringbuffer[prev_ix:], ringbuffer[cur_ix_masked:], max_len)\n\t\t\t} else {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t{\n\t\t\t\tvar dist_cost float32 = base_cost + zopfliCostModelGetDistanceCost(model, j)\n\t\t\t\tvar l uint\n\t\t\t\tfor l = best_len + 1; l <= len; l++ {\n\t\t\t\t\tvar copycode uint16 = getCopyLengthCode(l)\n\t\t\t\t\tvar cmdcode uint16 = combineLengthCodes(inscode, copycode, j == 0)\n\t\t\t\t\tvar tmp float32\n\t\t\t\t\tif cmdcode < 128 {\n\t\t\t\t\t\ttmp = base_cost\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = dist_cost\n\t\t\t\t\t}\n\t\t\t\t\tvar cost float32 = tmp + float32(getCopyExtra(copycode)) + zopfliCostModelGetCommandCost(model, cmdcode)\n\t\t\t\t\tif cost < nodes[pos+l].u.cost {\n\t\t\t\t\t\tupdateZopfliNode(nodes, pos, start, l, l, backward, j+1, cost)\n\t\t\t\t\t\tresult = brotli_max_size_t(result, l)\n\t\t\t\t\t}\n\n\t\t\t\t\tbest_len = l\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t/* At higher iterations look only for new last distance matches, since\n\t\t   looking only for new command start positions with the same distances\n\t\t   does not help much. */\n\t\tif k >= 2 {\n\t\t\tcontinue\n\t\t}\n\t\t{\n\t\t\t/* Loop through all possible copy lengths at this position. */\n\t\t\tvar len uint = min_len\n\t\t\tfor j = 0; j < num_matches; j++ {\n\t\t\t\tvar match backwardMatch = matches[j]\n\t\t\t\tvar dist uint = uint(match.distance)\n\t\t\t\tvar is_dictionary_match bool = (dist > max_distance+gap)\n\t\t\t\tvar dist_code uint = dist + numDistanceShortCodes - 1\n\t\t\t\tvar dist_symbol uint16\n\t\t\t\tvar distextra uint32\n\t\t\t\tvar distnumextra uint32\n\t\t\t\tvar dist_cost float32\n\t\t\t\tvar max_match_len uint\n\t\t\t\t/* We already tried all possible last distance matches, so we can use\n\t\t\t\t   normal distance code here. */\n\t\t\t\tprefixEncodeCopyDistance(dist_code, uint(params.dist.num_direct_distance_codes), uint(params.dist.distance_postfix_bits), &dist_symbol, &distextra)\n\n\t\t\t\tdistnumextra = uint32(dist_symbol) >> 10\n\t\t\t\tdist_cost = base_cost + float32(distnumextra) + zopfliCostModelGetDistanceCost(model, uint(dist_symbol)&0x3FF)\n\n\t\t\t\t/* Try all copy lengths up until the maximum copy length corresponding\n\t\t\t\t   to this distance. If the distance refers to the static dictionary, or\n\t\t\t\t   the maximum length is long enough, try only one maximum length. */\n\t\t\t\tmax_match_len = backwardMatchLength(&match)\n\n\t\t\t\tif len < max_match_len && (is_dictionary_match || max_match_len > max_zopfli_len) {\n\t\t\t\t\tlen = max_match_len\n\t\t\t\t}\n\n\t\t\t\tfor ; len <= max_match_len; len++ {\n\t\t\t\t\tvar len_code uint\n\t\t\t\t\tif is_dictionary_match {\n\t\t\t\t\t\tlen_code = backwardMatchLengthCode(&match)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tlen_code = len\n\t\t\t\t\t}\n\t\t\t\t\tvar copycode uint16 = getCopyLengthCode(len_code)\n\t\t\t\t\tvar cmdcode uint16 = combineLengthCodes(inscode, copycode, false)\n\t\t\t\t\tvar cost float32 = dist_cost + float32(getCopyExtra(copycode)) + zopfliCostModelGetCommandCost(model, cmdcode)\n\t\t\t\t\tif cost < nodes[pos+len].u.cost {\n\t\t\t\t\t\tupdateZopfliNode(nodes, pos, start, uint(len), len_code, dist, 0, cost)\n\t\t\t\t\t\tif len > result {\n\t\t\t\t\t\t\tresult = len\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result\n}\n\nfunc computeShortestPathFromNodes(num_bytes uint, nodes []zopfliNode) uint {\n\tvar index uint = num_bytes\n\tvar num_commands uint = 0\n\tfor nodes[index].dcode_insert_length&0x7FFFFFF == 0 && nodes[index].length == 1 {\n\t\tindex--\n\t}\n\tnodes[index].u.next = math.MaxUint32\n\tfor index != 0 {\n\t\tvar len uint = uint(zopfliNodeCommandLength(&nodes[index]))\n\t\tindex -= uint(len)\n\t\tnodes[index].u.next = uint32(len)\n\t\tnum_commands++\n\t}\n\n\treturn num_commands\n}\n\n/* REQUIRES: nodes != NULL and len(nodes) >= num_bytes + 1 */\nfunc zopfliCreateCommands(num_bytes uint, block_start uint, nodes []zopfliNode, dist_cache []int, last_insert_len *uint, params *encoderParams, commands *[]command, num_literals *uint) {\n\tvar max_backward_limit uint = maxBackwardLimit(params.lgwin)\n\tvar pos uint = 0\n\tvar offset uint32 = nodes[0].u.next\n\tvar i uint\n\tvar gap uint = 0\n\tfor i = 0; offset != math.MaxUint32; i++ {\n\t\tvar next *zopfliNode = &nodes[uint32(pos)+offset]\n\t\tvar copy_length uint = uint(zopfliNodeCopyLength(next))\n\t\tvar insert_length uint = uint(next.dcode_insert_length & 0x7FFFFFF)\n\t\tpos += insert_length\n\t\toffset = next.u.next\n\t\tif i == 0 {\n\t\t\tinsert_length += *last_insert_len\n\t\t\t*last_insert_len = 0\n\t\t}\n\t\t{\n\t\t\tvar distance uint = uint(zopfliNodeCopyDistance(next))\n\t\t\tvar len_code uint = uint(zopfliNodeLengthCode(next))\n\t\t\tvar max_distance uint = brotli_min_size_t(block_start+pos, max_backward_limit)\n\t\t\tvar is_dictionary bool = (distance > max_distance+gap)\n\t\t\tvar dist_code uint = uint(zopfliNodeDistanceCode(next))\n\t\t\t*commands = append(*commands, makeCommand(&params.dist, insert_length, copy_length, int(len_code)-int(copy_length), dist_code))\n\n\t\t\tif !is_dictionary && dist_code > 0 {\n\t\t\t\tdist_cache[3] = dist_cache[2]\n\t\t\t\tdist_cache[2] = dist_cache[1]\n\t\t\t\tdist_cache[1] = dist_cache[0]\n\t\t\t\tdist_cache[0] = int(distance)\n\t\t\t}\n\t\t}\n\n\t\t*num_literals += insert_length\n\t\tpos += copy_length\n\t}\n\n\t*last_insert_len += num_bytes - pos\n}\n\nfunc zopfliIterate(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint, params *encoderParams, gap uint, dist_cache []int, model *zopfliCostModel, num_matches []uint32, matches []backwardMatch, nodes []zopfliNode) uint {\n\tvar max_backward_limit uint = maxBackwardLimit(params.lgwin)\n\tvar max_zopfli_len uint = maxZopfliLen(params)\n\tvar queue startPosQueue\n\tvar cur_match_pos uint = 0\n\tvar i uint\n\tnodes[0].length = 0\n\tnodes[0].u.cost = 0\n\tinitStartPosQueue(&queue)\n\tfor i = 0; i+3 < num_bytes; i++ {\n\t\tvar skip uint = updateNodes(num_bytes, position, i, ringbuffer, ringbuffer_mask, params, max_backward_limit, dist_cache, uint(num_matches[i]), matches[cur_match_pos:], model, &queue, nodes)\n\t\tif skip < longCopyQuickStep {\n\t\t\tskip = 0\n\t\t}\n\t\tcur_match_pos += uint(num_matches[i])\n\t\tif num_matches[i] == 1 && backwardMatchLength(&matches[cur_match_pos-1]) > max_zopfli_len {\n\t\t\tskip = brotli_max_size_t(backwardMatchLength(&matches[cur_match_pos-1]), skip)\n\t\t}\n\n\t\tif skip > 1 {\n\t\t\tskip--\n\t\t\tfor skip != 0 {\n\t\t\t\ti++\n\t\t\t\tif i+3 >= num_bytes {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tevaluateNode(position, i, max_backward_limit, gap, dist_cache, model, &queue, nodes)\n\t\t\t\tcur_match_pos += uint(num_matches[i])\n\t\t\t\tskip--\n\t\t\t}\n\t\t}\n\t}\n\n\treturn computeShortestPathFromNodes(num_bytes, nodes)\n}\n\n/* Computes the shortest path of commands from position to at most\n   position + num_bytes.\n\n   On return, path->size() is the number of commands found and path[i] is the\n   length of the i-th command (copy length plus insert length).\n   Note that the sum of the lengths of all commands can be less than num_bytes.\n\n   On return, the nodes[0..num_bytes] array will have the following\n   \"ZopfliNode array invariant\":\n   For each i in [1..num_bytes], if nodes[i].cost < kInfinity, then\n     (1) nodes[i].copy_length() >= 2\n     (2) nodes[i].command_length() <= i and\n     (3) nodes[i - nodes[i].command_length()].cost < kInfinity\n\n REQUIRES: nodes != nil and len(nodes) >= num_bytes + 1 */\nfunc zopfliComputeShortestPath(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint, params *encoderParams, dist_cache []int, hasher *h10, nodes []zopfliNode) uint {\n\tvar max_backward_limit uint = maxBackwardLimit(params.lgwin)\n\tvar max_zopfli_len uint = maxZopfliLen(params)\n\tvar model zopfliCostModel\n\tvar queue startPosQueue\n\tvar matches [2 * (maxNumMatchesH10 + 64)]backwardMatch\n\tvar store_end uint\n\tif num_bytes >= hasher.StoreLookahead() {\n\t\tstore_end = position + num_bytes - hasher.StoreLookahead() + 1\n\t} else {\n\t\tstore_end = position\n\t}\n\tvar i uint\n\tvar gap uint = 0\n\tvar lz_matches_offset uint = 0\n\tnodes[0].length = 0\n\tnodes[0].u.cost = 0\n\tinitZopfliCostModel(&model, &params.dist, num_bytes)\n\tzopfliCostModelSetFromLiteralCosts(&model, position, ringbuffer, ringbuffer_mask)\n\tinitStartPosQueue(&queue)\n\tfor i = 0; i+hasher.HashTypeLength()-1 < num_bytes; i++ {\n\t\tvar pos uint = position + i\n\t\tvar max_distance uint = brotli_min_size_t(pos, max_backward_limit)\n\t\tvar skip uint\n\t\tvar num_matches uint\n\t\tnum_matches = findAllMatchesH10(hasher, &params.dictionary, ringbuffer, ringbuffer_mask, pos, num_bytes-i, max_distance, gap, params, matches[lz_matches_offset:])\n\t\tif num_matches > 0 && backwardMatchLength(&matches[num_matches-1]) > max_zopfli_len {\n\t\t\tmatches[0] = matches[num_matches-1]\n\t\t\tnum_matches = 1\n\t\t}\n\n\t\tskip = updateNodes(num_bytes, position, i, ringbuffer, ringbuffer_mask, params, max_backward_limit, dist_cache, num_matches, matches[:], &model, &queue, nodes)\n\t\tif skip < longCopyQuickStep {\n\t\t\tskip = 0\n\t\t}\n\t\tif num_matches == 1 && backwardMatchLength(&matches[0]) > max_zopfli_len {\n\t\t\tskip = brotli_max_size_t(backwardMatchLength(&matches[0]), skip)\n\t\t}\n\n\t\tif skip > 1 {\n\t\t\t/* Add the tail of the copy to the hasher. */\n\t\t\thasher.StoreRange(ringbuffer, ringbuffer_mask, pos+1, brotli_min_size_t(pos+skip, store_end))\n\n\t\t\tskip--\n\t\t\tfor skip != 0 {\n\t\t\t\ti++\n\t\t\t\tif i+hasher.HashTypeLength()-1 >= num_bytes {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tevaluateNode(position, i, max_backward_limit, gap, dist_cache, &model, &queue, nodes)\n\t\t\t\tskip--\n\t\t\t}\n\t\t}\n\t}\n\n\tcleanupZopfliCostModel(&model)\n\treturn computeShortestPathFromNodes(num_bytes, nodes)\n}\n\nfunc createZopfliBackwardReferences(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint, params *encoderParams, hasher *h10, dist_cache []int, last_insert_len *uint, commands *[]command, num_literals *uint) {\n\tvar nodes []zopfliNode\n\tnodes = make([]zopfliNode, (num_bytes + 1))\n\tinitZopfliNodes(nodes, num_bytes+1)\n\tzopfliComputeShortestPath(num_bytes, position, ringbuffer, ringbuffer_mask, params, dist_cache, hasher, nodes)\n\tzopfliCreateCommands(num_bytes, position, nodes, dist_cache, last_insert_len, params, commands, num_literals)\n\tnodes = nil\n}\n\nfunc createHqZopfliBackwardReferences(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint, params *encoderParams, hasher hasherHandle, dist_cache []int, last_insert_len *uint, commands *[]command, num_literals *uint) {\n\tvar max_backward_limit uint = maxBackwardLimit(params.lgwin)\n\tvar num_matches []uint32 = make([]uint32, num_bytes)\n\tvar matches_size uint = 4 * num_bytes\n\tvar store_end uint\n\tif num_bytes >= hasher.StoreLookahead() {\n\t\tstore_end = position + num_bytes - hasher.StoreLookahead() + 1\n\t} else {\n\t\tstore_end = position\n\t}\n\tvar cur_match_pos uint = 0\n\tvar i uint\n\tvar orig_num_literals uint\n\tvar orig_last_insert_len uint\n\tvar orig_dist_cache [4]int\n\tvar orig_num_commands int\n\tvar model zopfliCostModel\n\tvar nodes []zopfliNode\n\tvar matches []backwardMatch = make([]backwardMatch, matches_size)\n\tvar gap uint = 0\n\tvar shadow_matches uint = 0\n\tvar new_array []backwardMatch\n\tfor i = 0; i+hasher.HashTypeLength()-1 < num_bytes; i++ {\n\t\tvar pos uint = position + i\n\t\tvar max_distance uint = brotli_min_size_t(pos, max_backward_limit)\n\t\tvar max_length uint = num_bytes - i\n\t\tvar num_found_matches uint\n\t\tvar cur_match_end uint\n\t\tvar j uint\n\n\t\t/* Ensure that we have enough free slots. */\n\t\tif matches_size < cur_match_pos+maxNumMatchesH10+shadow_matches {\n\t\t\tvar new_size uint = matches_size\n\t\t\tif new_size == 0 {\n\t\t\t\tnew_size = cur_match_pos + maxNumMatchesH10 + shadow_matches\n\t\t\t}\n\n\t\t\tfor new_size < cur_match_pos+maxNumMatchesH10+shadow_matches {\n\t\t\t\tnew_size *= 2\n\t\t\t}\n\n\t\t\tnew_array = make([]backwardMatch, new_size)\n\t\t\tif matches_size != 0 {\n\t\t\t\tcopy(new_array, matches[:matches_size])\n\t\t\t}\n\n\t\t\tmatches = new_array\n\t\t\tmatches_size = new_size\n\t\t}\n\n\t\tnum_found_matches = findAllMatchesH10(hasher.(*h10), &params.dictionary, ringbuffer, ringbuffer_mask, pos, max_length, max_distance, gap, params, matches[cur_match_pos+shadow_matches:])\n\t\tcur_match_end = cur_match_pos + num_found_matches\n\t\tfor j = cur_match_pos; j+1 < cur_match_end; j++ {\n\t\t\tassert(backwardMatchLength(&matches[j]) <= backwardMatchLength(&matches[j+1]))\n\t\t}\n\n\t\tnum_matches[i] = uint32(num_found_matches)\n\t\tif num_found_matches > 0 {\n\t\t\tvar match_len uint = backwardMatchLength(&matches[cur_match_end-1])\n\t\t\tif match_len > maxZopfliLenQuality11 {\n\t\t\t\tvar skip uint = match_len - 1\n\t\t\t\tmatches[cur_match_pos] = matches[cur_match_end-1]\n\t\t\t\tcur_match_pos++\n\t\t\t\tnum_matches[i] = 1\n\n\t\t\t\t/* Add the tail of the copy to the hasher. */\n\t\t\t\thasher.StoreRange(ringbuffer, ringbuffer_mask, pos+1, brotli_min_size_t(pos+match_len, store_end))\n\t\t\t\tvar pos uint = i\n\t\t\t\tfor i := 0; i < int(skip); i++ {\n\t\t\t\t\tnum_matches[pos+1:][i] = 0\n\t\t\t\t}\n\t\t\t\ti += skip\n\t\t\t} else {\n\t\t\t\tcur_match_pos = cur_match_end\n\t\t\t}\n\t\t}\n\t}\n\n\torig_num_literals = *num_literals\n\torig_last_insert_len = *last_insert_len\n\tcopy(orig_dist_cache[:], dist_cache[:4])\n\torig_num_commands = len(*commands)\n\tnodes = make([]zopfliNode, (num_bytes + 1))\n\tinitZopfliCostModel(&model, &params.dist, num_bytes)\n\tfor i = 0; i < 2; i++ {\n\t\tinitZopfliNodes(nodes, num_bytes+1)\n\t\tif i == 0 {\n\t\t\tzopfliCostModelSetFromLiteralCosts(&model, position, ringbuffer, ringbuffer_mask)\n\t\t} else {\n\t\t\tzopfliCostModelSetFromCommands(&model, position, ringbuffer, ringbuffer_mask, (*commands)[orig_num_commands:], orig_last_insert_len)\n\t\t}\n\n\t\t*commands = (*commands)[:orig_num_commands]\n\t\t*num_literals = orig_num_literals\n\t\t*last_insert_len = orig_last_insert_len\n\t\tcopy(dist_cache, orig_dist_cache[:4])\n\t\tzopfliIterate(num_bytes, position, ringbuffer, ringbuffer_mask, params, gap, dist_cache, &model, num_matches, matches, nodes)\n\t\tzopfliCreateCommands(num_bytes, position, nodes, dist_cache, last_insert_len, params, commands, num_literals)\n\t}\n\n\tcleanupZopfliCostModel(&model)\n\tnodes = nil\n\tmatches = nil\n\tnum_matches = nil\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/bit_cost.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Functions to estimate the bit cost of Huffman trees. */\nfunc shannonEntropy(population []uint32, size uint, total *uint) float64 {\n\tvar sum uint = 0\n\tvar retval float64 = 0\n\tvar population_end []uint32 = population[size:]\n\tvar p uint\n\tfor -cap(population) < -cap(population_end) {\n\t\tp = uint(population[0])\n\t\tpopulation = population[1:]\n\t\tsum += p\n\t\tretval -= float64(p) * fastLog2(p)\n\t}\n\n\tif sum != 0 {\n\t\tretval += float64(sum) * fastLog2(sum)\n\t}\n\t*total = sum\n\treturn retval\n}\n\nfunc bitsEntropy(population []uint32, size uint) float64 {\n\tvar sum uint\n\tvar retval float64 = shannonEntropy(population, size, &sum)\n\tif retval < float64(sum) {\n\t\t/* At least one bit per literal is needed. */\n\t\tretval = float64(sum)\n\t}\n\n\treturn retval\n}\n\nconst kOneSymbolHistogramCost float64 = 12\nconst kTwoSymbolHistogramCost float64 = 20\nconst kThreeSymbolHistogramCost float64 = 28\nconst kFourSymbolHistogramCost float64 = 37\n\nfunc populationCostLiteral(histogram *histogramLiteral) float64 {\n\tvar data_size uint = histogramDataSizeLiteral()\n\tvar count int = 0\n\tvar s [5]uint\n\tvar bits float64 = 0.0\n\tvar i uint\n\tif histogram.total_count_ == 0 {\n\t\treturn kOneSymbolHistogramCost\n\t}\n\n\tfor i = 0; i < data_size; i++ {\n\t\tif histogram.data_[i] > 0 {\n\t\t\ts[count] = i\n\t\t\tcount++\n\t\t\tif count > 4 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\tif count == 1 {\n\t\treturn kOneSymbolHistogramCost\n\t}\n\n\tif count == 2 {\n\t\treturn kTwoSymbolHistogramCost + float64(histogram.total_count_)\n\t}\n\n\tif count == 3 {\n\t\tvar histo0 uint32 = histogram.data_[s[0]]\n\t\tvar histo1 uint32 = histogram.data_[s[1]]\n\t\tvar histo2 uint32 = histogram.data_[s[2]]\n\t\tvar histomax uint32 = brotli_max_uint32_t(histo0, brotli_max_uint32_t(histo1, histo2))\n\t\treturn kThreeSymbolHistogramCost + 2*(float64(histo0)+float64(histo1)+float64(histo2)) - float64(histomax)\n\t}\n\n\tif count == 4 {\n\t\tvar histo [4]uint32\n\t\tvar h23 uint32\n\t\tvar histomax uint32\n\t\tfor i = 0; i < 4; i++ {\n\t\t\thisto[i] = histogram.data_[s[i]]\n\t\t}\n\n\t\t/* Sort */\n\t\tfor i = 0; i < 4; i++ {\n\t\t\tvar j uint\n\t\t\tfor j = i + 1; j < 4; j++ {\n\t\t\t\tif histo[j] > histo[i] {\n\t\t\t\t\tvar tmp uint32 = histo[j]\n\t\t\t\t\thisto[j] = histo[i]\n\t\t\t\t\thisto[i] = tmp\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\th23 = histo[2] + histo[3]\n\t\thistomax = brotli_max_uint32_t(h23, histo[0])\n\t\treturn kFourSymbolHistogramCost + 3*float64(h23) + 2*(float64(histo[0])+float64(histo[1])) - float64(histomax)\n\t}\n\t{\n\t\tvar max_depth uint = 1\n\t\tvar depth_histo = [codeLengthCodes]uint32{0}\n\t\t/* In this loop we compute the entropy of the histogram and simultaneously\n\t\t   build a simplified histogram of the code length codes where we use the\n\t\t   zero repeat code 17, but we don't use the non-zero repeat code 16. */\n\n\t\tvar log2total float64 = fastLog2(histogram.total_count_)\n\t\tfor i = 0; i < data_size; {\n\t\t\tif histogram.data_[i] > 0 {\n\t\t\t\tvar log2p float64 = log2total - fastLog2(uint(histogram.data_[i]))\n\t\t\t\t/* Compute -log2(P(symbol)) = -log2(count(symbol)/total_count) =\n\t\t\t\t   = log2(total_count) - log2(count(symbol)) */\n\n\t\t\t\tvar depth uint = uint(log2p + 0.5)\n\t\t\t\t/* Approximate the bit depth by round(-log2(P(symbol))) */\n\t\t\t\tbits += float64(histogram.data_[i]) * log2p\n\n\t\t\t\tif depth > 15 {\n\t\t\t\t\tdepth = 15\n\t\t\t\t}\n\n\t\t\t\tif depth > max_depth {\n\t\t\t\t\tmax_depth = depth\n\t\t\t\t}\n\n\t\t\t\tdepth_histo[depth]++\n\t\t\t\ti++\n\t\t\t} else {\n\t\t\t\tvar reps uint32 = 1\n\t\t\t\t/* Compute the run length of zeros and add the appropriate number of 0\n\t\t\t\t   and 17 code length codes to the code length code histogram. */\n\n\t\t\t\tvar k uint\n\t\t\t\tfor k = i + 1; k < data_size && histogram.data_[k] == 0; k++ {\n\t\t\t\t\treps++\n\t\t\t\t}\n\n\t\t\t\ti += uint(reps)\n\t\t\t\tif i == data_size {\n\t\t\t\t\t/* Don't add any cost for the last zero run, since these are encoded\n\t\t\t\t\t   only implicitly. */\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tif reps < 3 {\n\t\t\t\t\tdepth_histo[0] += reps\n\t\t\t\t} else {\n\t\t\t\t\treps -= 2\n\t\t\t\t\tfor reps > 0 {\n\t\t\t\t\t\tdepth_histo[repeatZeroCodeLength]++\n\n\t\t\t\t\t\t/* Add the 3 extra bits for the 17 code length code. */\n\t\t\t\t\t\tbits += 3\n\n\t\t\t\t\t\treps >>= 3\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t/* Add the estimated encoding cost of the code length code histogram. */\n\t\tbits += float64(18 + 2*max_depth)\n\n\t\t/* Add the entropy of the code length code histogram. */\n\t\tbits += bitsEntropy(depth_histo[:], codeLengthCodes)\n\t}\n\n\treturn bits\n}\n\nfunc populationCostCommand(histogram *histogramCommand) float64 {\n\tvar data_size uint = histogramDataSizeCommand()\n\tvar count int = 0\n\tvar s [5]uint\n\tvar bits float64 = 0.0\n\tvar i uint\n\tif histogram.total_count_ == 0 {\n\t\treturn kOneSymbolHistogramCost\n\t}\n\n\tfor i = 0; i < data_size; i++ {\n\t\tif histogram.data_[i] > 0 {\n\t\t\ts[count] = i\n\t\t\tcount++\n\t\t\tif count > 4 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\tif count == 1 {\n\t\treturn kOneSymbolHistogramCost\n\t}\n\n\tif count == 2 {\n\t\treturn kTwoSymbolHistogramCost + float64(histogram.total_count_)\n\t}\n\n\tif count == 3 {\n\t\tvar histo0 uint32 = histogram.data_[s[0]]\n\t\tvar histo1 uint32 = histogram.data_[s[1]]\n\t\tvar histo2 uint32 = histogram.data_[s[2]]\n\t\tvar histomax uint32 = brotli_max_uint32_t(histo0, brotli_max_uint32_t(histo1, histo2))\n\t\treturn kThreeSymbolHistogramCost + 2*(float64(histo0)+float64(histo1)+float64(histo2)) - float64(histomax)\n\t}\n\n\tif count == 4 {\n\t\tvar histo [4]uint32\n\t\tvar h23 uint32\n\t\tvar histomax uint32\n\t\tfor i = 0; i < 4; i++ {\n\t\t\thisto[i] = histogram.data_[s[i]]\n\t\t}\n\n\t\t/* Sort */\n\t\tfor i = 0; i < 4; i++ {\n\t\t\tvar j uint\n\t\t\tfor j = i + 1; j < 4; j++ {\n\t\t\t\tif histo[j] > histo[i] {\n\t\t\t\t\tvar tmp uint32 = histo[j]\n\t\t\t\t\thisto[j] = histo[i]\n\t\t\t\t\thisto[i] = tmp\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\th23 = histo[2] + histo[3]\n\t\thistomax = brotli_max_uint32_t(h23, histo[0])\n\t\treturn kFourSymbolHistogramCost + 3*float64(h23) + 2*(float64(histo[0])+float64(histo[1])) - float64(histomax)\n\t}\n\t{\n\t\tvar max_depth uint = 1\n\t\tvar depth_histo = [codeLengthCodes]uint32{0}\n\t\t/* In this loop we compute the entropy of the histogram and simultaneously\n\t\t   build a simplified histogram of the code length codes where we use the\n\t\t   zero repeat code 17, but we don't use the non-zero repeat code 16. */\n\n\t\tvar log2total float64 = fastLog2(histogram.total_count_)\n\t\tfor i = 0; i < data_size; {\n\t\t\tif histogram.data_[i] > 0 {\n\t\t\t\tvar log2p float64 = log2total - fastLog2(uint(histogram.data_[i]))\n\t\t\t\t/* Compute -log2(P(symbol)) = -log2(count(symbol)/total_count) =\n\t\t\t\t   = log2(total_count) - log2(count(symbol)) */\n\n\t\t\t\tvar depth uint = uint(log2p + 0.5)\n\t\t\t\t/* Approximate the bit depth by round(-log2(P(symbol))) */\n\t\t\t\tbits += float64(histogram.data_[i]) * log2p\n\n\t\t\t\tif depth > 15 {\n\t\t\t\t\tdepth = 15\n\t\t\t\t}\n\n\t\t\t\tif depth > max_depth {\n\t\t\t\t\tmax_depth = depth\n\t\t\t\t}\n\n\t\t\t\tdepth_histo[depth]++\n\t\t\t\ti++\n\t\t\t} else {\n\t\t\t\tvar reps uint32 = 1\n\t\t\t\t/* Compute the run length of zeros and add the appropriate number of 0\n\t\t\t\t   and 17 code length codes to the code length code histogram. */\n\n\t\t\t\tvar k uint\n\t\t\t\tfor k = i + 1; k < data_size && histogram.data_[k] == 0; k++ {\n\t\t\t\t\treps++\n\t\t\t\t}\n\n\t\t\t\ti += uint(reps)\n\t\t\t\tif i == data_size {\n\t\t\t\t\t/* Don't add any cost for the last zero run, since these are encoded\n\t\t\t\t\t   only implicitly. */\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tif reps < 3 {\n\t\t\t\t\tdepth_histo[0] += reps\n\t\t\t\t} else {\n\t\t\t\t\treps -= 2\n\t\t\t\t\tfor reps > 0 {\n\t\t\t\t\t\tdepth_histo[repeatZeroCodeLength]++\n\n\t\t\t\t\t\t/* Add the 3 extra bits for the 17 code length code. */\n\t\t\t\t\t\tbits += 3\n\n\t\t\t\t\t\treps >>= 3\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t/* Add the estimated encoding cost of the code length code histogram. */\n\t\tbits += float64(18 + 2*max_depth)\n\n\t\t/* Add the entropy of the code length code histogram. */\n\t\tbits += bitsEntropy(depth_histo[:], codeLengthCodes)\n\t}\n\n\treturn bits\n}\n\nfunc populationCostDistance(histogram *histogramDistance) float64 {\n\tvar data_size uint = histogramDataSizeDistance()\n\tvar count int = 0\n\tvar s [5]uint\n\tvar bits float64 = 0.0\n\tvar i uint\n\tif histogram.total_count_ == 0 {\n\t\treturn kOneSymbolHistogramCost\n\t}\n\n\tfor i = 0; i < data_size; i++ {\n\t\tif histogram.data_[i] > 0 {\n\t\t\ts[count] = i\n\t\t\tcount++\n\t\t\tif count > 4 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\tif count == 1 {\n\t\treturn kOneSymbolHistogramCost\n\t}\n\n\tif count == 2 {\n\t\treturn kTwoSymbolHistogramCost + float64(histogram.total_count_)\n\t}\n\n\tif count == 3 {\n\t\tvar histo0 uint32 = histogram.data_[s[0]]\n\t\tvar histo1 uint32 = histogram.data_[s[1]]\n\t\tvar histo2 uint32 = histogram.data_[s[2]]\n\t\tvar histomax uint32 = brotli_max_uint32_t(histo0, brotli_max_uint32_t(histo1, histo2))\n\t\treturn kThreeSymbolHistogramCost + 2*(float64(histo0)+float64(histo1)+float64(histo2)) - float64(histomax)\n\t}\n\n\tif count == 4 {\n\t\tvar histo [4]uint32\n\t\tvar h23 uint32\n\t\tvar histomax uint32\n\t\tfor i = 0; i < 4; i++ {\n\t\t\thisto[i] = histogram.data_[s[i]]\n\t\t}\n\n\t\t/* Sort */\n\t\tfor i = 0; i < 4; i++ {\n\t\t\tvar j uint\n\t\t\tfor j = i + 1; j < 4; j++ {\n\t\t\t\tif histo[j] > histo[i] {\n\t\t\t\t\tvar tmp uint32 = histo[j]\n\t\t\t\t\thisto[j] = histo[i]\n\t\t\t\t\thisto[i] = tmp\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\th23 = histo[2] + histo[3]\n\t\thistomax = brotli_max_uint32_t(h23, histo[0])\n\t\treturn kFourSymbolHistogramCost + 3*float64(h23) + 2*(float64(histo[0])+float64(histo[1])) - float64(histomax)\n\t}\n\t{\n\t\tvar max_depth uint = 1\n\t\tvar depth_histo = [codeLengthCodes]uint32{0}\n\t\t/* In this loop we compute the entropy of the histogram and simultaneously\n\t\t   build a simplified histogram of the code length codes where we use the\n\t\t   zero repeat code 17, but we don't use the non-zero repeat code 16. */\n\n\t\tvar log2total float64 = fastLog2(histogram.total_count_)\n\t\tfor i = 0; i < data_size; {\n\t\t\tif histogram.data_[i] > 0 {\n\t\t\t\tvar log2p float64 = log2total - fastLog2(uint(histogram.data_[i]))\n\t\t\t\t/* Compute -log2(P(symbol)) = -log2(count(symbol)/total_count) =\n\t\t\t\t   = log2(total_count) - log2(count(symbol)) */\n\n\t\t\t\tvar depth uint = uint(log2p + 0.5)\n\t\t\t\t/* Approximate the bit depth by round(-log2(P(symbol))) */\n\t\t\t\tbits += float64(histogram.data_[i]) * log2p\n\n\t\t\t\tif depth > 15 {\n\t\t\t\t\tdepth = 15\n\t\t\t\t}\n\n\t\t\t\tif depth > max_depth {\n\t\t\t\t\tmax_depth = depth\n\t\t\t\t}\n\n\t\t\t\tdepth_histo[depth]++\n\t\t\t\ti++\n\t\t\t} else {\n\t\t\t\tvar reps uint32 = 1\n\t\t\t\t/* Compute the run length of zeros and add the appropriate number of 0\n\t\t\t\t   and 17 code length codes to the code length code histogram. */\n\n\t\t\t\tvar k uint\n\t\t\t\tfor k = i + 1; k < data_size && histogram.data_[k] == 0; k++ {\n\t\t\t\t\treps++\n\t\t\t\t}\n\n\t\t\t\ti += uint(reps)\n\t\t\t\tif i == data_size {\n\t\t\t\t\t/* Don't add any cost for the last zero run, since these are encoded\n\t\t\t\t\t   only implicitly. */\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tif reps < 3 {\n\t\t\t\t\tdepth_histo[0] += reps\n\t\t\t\t} else {\n\t\t\t\t\treps -= 2\n\t\t\t\t\tfor reps > 0 {\n\t\t\t\t\t\tdepth_histo[repeatZeroCodeLength]++\n\n\t\t\t\t\t\t/* Add the 3 extra bits for the 17 code length code. */\n\t\t\t\t\t\tbits += 3\n\n\t\t\t\t\t\treps >>= 3\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t/* Add the estimated encoding cost of the code length code histogram. */\n\t\tbits += float64(18 + 2*max_depth)\n\n\t\t/* Add the entropy of the code length code histogram. */\n\t\tbits += bitsEntropy(depth_histo[:], codeLengthCodes)\n\t}\n\n\treturn bits\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/bit_reader.go",
    "content": "package brotli\n\nimport \"encoding/binary\"\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Bit reading helpers */\n\nconst shortFillBitWindowRead = (8 >> 1)\n\nvar kBitMask = [33]uint32{\n\t0x00000000,\n\t0x00000001,\n\t0x00000003,\n\t0x00000007,\n\t0x0000000F,\n\t0x0000001F,\n\t0x0000003F,\n\t0x0000007F,\n\t0x000000FF,\n\t0x000001FF,\n\t0x000003FF,\n\t0x000007FF,\n\t0x00000FFF,\n\t0x00001FFF,\n\t0x00003FFF,\n\t0x00007FFF,\n\t0x0000FFFF,\n\t0x0001FFFF,\n\t0x0003FFFF,\n\t0x0007FFFF,\n\t0x000FFFFF,\n\t0x001FFFFF,\n\t0x003FFFFF,\n\t0x007FFFFF,\n\t0x00FFFFFF,\n\t0x01FFFFFF,\n\t0x03FFFFFF,\n\t0x07FFFFFF,\n\t0x0FFFFFFF,\n\t0x1FFFFFFF,\n\t0x3FFFFFFF,\n\t0x7FFFFFFF,\n\t0xFFFFFFFF,\n}\n\nfunc bitMask(n uint32) uint32 {\n\treturn kBitMask[n]\n}\n\ntype bitReader struct {\n\tval_      uint64\n\tbit_pos_  uint32\n\tinput     []byte\n\tinput_len uint\n\tbyte_pos  uint\n}\n\ntype bitReaderState struct {\n\tval_      uint64\n\tbit_pos_  uint32\n\tinput     []byte\n\tinput_len uint\n\tbyte_pos  uint\n}\n\n/* Initializes the BrotliBitReader fields. */\n\n/* Ensures that accumulator is not empty.\n   May consume up to sizeof(brotli_reg_t) - 1 bytes of input.\n   Returns false if data is required but there is no input available.\n   For BROTLI_ALIGNED_READ this function also prepares bit reader for aligned\n   reading. */\nfunc bitReaderSaveState(from *bitReader, to *bitReaderState) {\n\tto.val_ = from.val_\n\tto.bit_pos_ = from.bit_pos_\n\tto.input = from.input\n\tto.input_len = from.input_len\n\tto.byte_pos = from.byte_pos\n}\n\nfunc bitReaderRestoreState(to *bitReader, from *bitReaderState) {\n\tto.val_ = from.val_\n\tto.bit_pos_ = from.bit_pos_\n\tto.input = from.input\n\tto.input_len = from.input_len\n\tto.byte_pos = from.byte_pos\n}\n\nfunc getAvailableBits(br *bitReader) uint32 {\n\treturn 64 - br.bit_pos_\n}\n\n/* Returns amount of unread bytes the bit reader still has buffered from the\n   BrotliInput, including whole bytes in br->val_. */\nfunc getRemainingBytes(br *bitReader) uint {\n\treturn uint(uint32(br.input_len-br.byte_pos) + (getAvailableBits(br) >> 3))\n}\n\n/* Checks if there is at least |num| bytes left in the input ring-buffer\n   (excluding the bits remaining in br->val_). */\nfunc checkInputAmount(br *bitReader, num uint) bool {\n\treturn br.input_len-br.byte_pos >= num\n}\n\n/* Guarantees that there are at least |n_bits| + 1 bits in accumulator.\n   Precondition: accumulator contains at least 1 bit.\n   |n_bits| should be in the range [1..24] for regular build. For portable\n   non-64-bit little-endian build only 16 bits are safe to request. */\nfunc fillBitWindow(br *bitReader, n_bits uint32) {\n\tif br.bit_pos_ >= 32 {\n\t\tbr.val_ >>= 32\n\t\tbr.bit_pos_ ^= 32 /* here same as -= 32 because of the if condition */\n\t\tbr.val_ |= (uint64(binary.LittleEndian.Uint32(br.input[br.byte_pos:]))) << 32\n\t\tbr.byte_pos += 4\n\t}\n}\n\n/* Mostly like BrotliFillBitWindow, but guarantees only 16 bits and reads no\n   more than BROTLI_SHORT_FILL_BIT_WINDOW_READ bytes of input. */\nfunc fillBitWindow16(br *bitReader) {\n\tfillBitWindow(br, 17)\n}\n\n/* Tries to pull one byte of input to accumulator.\n   Returns false if there is no input available. */\nfunc pullByte(br *bitReader) bool {\n\tif br.byte_pos == br.input_len {\n\t\treturn false\n\t}\n\n\tbr.val_ >>= 8\n\tbr.val_ |= (uint64(br.input[br.byte_pos])) << 56\n\tbr.bit_pos_ -= 8\n\tbr.byte_pos++\n\treturn true\n}\n\n/* Returns currently available bits.\n   The number of valid bits could be calculated by BrotliGetAvailableBits. */\nfunc getBitsUnmasked(br *bitReader) uint64 {\n\treturn br.val_ >> br.bit_pos_\n}\n\n/* Like BrotliGetBits, but does not mask the result.\n   The result contains at least 16 valid bits. */\nfunc get16BitsUnmasked(br *bitReader) uint32 {\n\tfillBitWindow(br, 16)\n\treturn uint32(getBitsUnmasked(br))\n}\n\n/* Returns the specified number of bits from |br| without advancing bit\n   position. */\nfunc getBits(br *bitReader, n_bits uint32) uint32 {\n\tfillBitWindow(br, n_bits)\n\treturn uint32(getBitsUnmasked(br)) & bitMask(n_bits)\n}\n\n/* Tries to peek the specified amount of bits. Returns false, if there\n   is not enough input. */\nfunc safeGetBits(br *bitReader, n_bits uint32, val *uint32) bool {\n\tfor getAvailableBits(br) < n_bits {\n\t\tif !pullByte(br) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t*val = uint32(getBitsUnmasked(br)) & bitMask(n_bits)\n\treturn true\n}\n\n/* Advances the bit pos by |n_bits|. */\nfunc dropBits(br *bitReader, n_bits uint32) {\n\tbr.bit_pos_ += n_bits\n}\n\nfunc bitReaderUnload(br *bitReader) {\n\tvar unused_bytes uint32 = getAvailableBits(br) >> 3\n\tvar unused_bits uint32 = unused_bytes << 3\n\tbr.byte_pos -= uint(unused_bytes)\n\tif unused_bits == 64 {\n\t\tbr.val_ = 0\n\t} else {\n\t\tbr.val_ <<= unused_bits\n\t}\n\n\tbr.bit_pos_ += unused_bits\n}\n\n/* Reads the specified number of bits from |br| and advances the bit pos.\n   Precondition: accumulator MUST contain at least |n_bits|. */\nfunc takeBits(br *bitReader, n_bits uint32, val *uint32) {\n\t*val = uint32(getBitsUnmasked(br)) & bitMask(n_bits)\n\tdropBits(br, n_bits)\n}\n\n/* Reads the specified number of bits from |br| and advances the bit pos.\n   Assumes that there is enough input to perform BrotliFillBitWindow. */\nfunc readBits(br *bitReader, n_bits uint32) uint32 {\n\tvar val uint32\n\tfillBitWindow(br, n_bits)\n\ttakeBits(br, n_bits, &val)\n\treturn val\n}\n\n/* Tries to read the specified amount of bits. Returns false, if there\n   is not enough input. |n_bits| MUST be positive. */\nfunc safeReadBits(br *bitReader, n_bits uint32, val *uint32) bool {\n\tfor getAvailableBits(br) < n_bits {\n\t\tif !pullByte(br) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\ttakeBits(br, n_bits, val)\n\treturn true\n}\n\n/* Advances the bit reader position to the next byte boundary and verifies\n   that any skipped bits are set to zero. */\nfunc bitReaderJumpToByteBoundary(br *bitReader) bool {\n\tvar pad_bits_count uint32 = getAvailableBits(br) & 0x7\n\tvar pad_bits uint32 = 0\n\tif pad_bits_count != 0 {\n\t\ttakeBits(br, pad_bits_count, &pad_bits)\n\t}\n\n\treturn pad_bits == 0\n}\n\n/* Copies remaining input bytes stored in the bit reader to the output. Value\n   |num| may not be larger than BrotliGetRemainingBytes. The bit reader must be\n   warmed up again after this. */\nfunc copyBytes(dest []byte, br *bitReader, num uint) {\n\tfor getAvailableBits(br) >= 8 && num > 0 {\n\t\tdest[0] = byte(getBitsUnmasked(br))\n\t\tdropBits(br, 8)\n\t\tdest = dest[1:]\n\t\tnum--\n\t}\n\n\tcopy(dest, br.input[br.byte_pos:][:num])\n\tbr.byte_pos += num\n}\n\nfunc initBitReader(br *bitReader) {\n\tbr.val_ = 0\n\tbr.bit_pos_ = 64\n}\n\nfunc warmupBitReader(br *bitReader) bool {\n\t/* Fixing alignment after unaligned BrotliFillWindow would result accumulator\n\t   overflow. If unalignment is caused by BrotliSafeReadBits, then there is\n\t   enough space in accumulator to fix alignment. */\n\tif getAvailableBits(br) == 0 {\n\t\tif !pullByte(br) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\treturn true\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/block_splitter.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Block split point selection utilities. */\n\ntype blockSplit struct {\n\tnum_types          uint\n\tnum_blocks         uint\n\ttypes              []byte\n\tlengths            []uint32\n\ttypes_alloc_size   uint\n\tlengths_alloc_size uint\n}\n\nconst (\n\tkMaxLiteralHistograms        uint    = 100\n\tkMaxCommandHistograms        uint    = 50\n\tkLiteralBlockSwitchCost      float64 = 28.1\n\tkCommandBlockSwitchCost      float64 = 13.5\n\tkDistanceBlockSwitchCost     float64 = 14.6\n\tkLiteralStrideLength         uint    = 70\n\tkCommandStrideLength         uint    = 40\n\tkSymbolsPerLiteralHistogram  uint    = 544\n\tkSymbolsPerCommandHistogram  uint    = 530\n\tkSymbolsPerDistanceHistogram uint    = 544\n\tkMinLengthForBlockSplitting  uint    = 128\n\tkIterMulForRefining          uint    = 2\n\tkMinItersForRefining         uint    = 100\n)\n\nfunc countLiterals(cmds []command) uint {\n\tvar total_length uint = 0\n\t/* Count how many we have. */\n\n\tfor i := range cmds {\n\t\ttotal_length += uint(cmds[i].insert_len_)\n\t}\n\n\treturn total_length\n}\n\nfunc copyLiteralsToByteArray(cmds []command, data []byte, offset uint, mask uint, literals []byte) {\n\tvar pos uint = 0\n\tvar from_pos uint = offset & mask\n\tfor i := range cmds {\n\t\tvar insert_len uint = uint(cmds[i].insert_len_)\n\t\tif from_pos+insert_len > mask {\n\t\t\tvar head_size uint = mask + 1 - from_pos\n\t\t\tcopy(literals[pos:], data[from_pos:][:head_size])\n\t\t\tfrom_pos = 0\n\t\t\tpos += head_size\n\t\t\tinsert_len -= head_size\n\t\t}\n\n\t\tif insert_len > 0 {\n\t\t\tcopy(literals[pos:], data[from_pos:][:insert_len])\n\t\t\tpos += insert_len\n\t\t}\n\n\t\tfrom_pos = uint((uint32(from_pos+insert_len) + commandCopyLen(&cmds[i])) & uint32(mask))\n\t}\n}\n\nfunc myRand(seed *uint32) uint32 {\n\t/* Initial seed should be 7. In this case, loop length is (1 << 29). */\n\t*seed *= 16807\n\n\treturn *seed\n}\n\nfunc bitCost(count uint) float64 {\n\tif count == 0 {\n\t\treturn -2.0\n\t} else {\n\t\treturn fastLog2(count)\n\t}\n}\n\nconst histogramsPerBatch = 64\n\nconst clustersPerBatch = 16\n\nfunc initBlockSplit(self *blockSplit) {\n\tself.num_types = 0\n\tself.num_blocks = 0\n\tself.types = self.types[:0]\n\tself.lengths = self.lengths[:0]\n\tself.types_alloc_size = 0\n\tself.lengths_alloc_size = 0\n}\n\nfunc splitBlock(cmds []command, data []byte, pos uint, mask uint, params *encoderParams, literal_split *blockSplit, insert_and_copy_split *blockSplit, dist_split *blockSplit) {\n\t{\n\t\tvar literals_count uint = countLiterals(cmds)\n\t\tvar literals []byte = make([]byte, literals_count)\n\n\t\t/* Create a continuous array of literals. */\n\t\tcopyLiteralsToByteArray(cmds, data, pos, mask, literals)\n\n\t\t/* Create the block split on the array of literals.\n\t\t   Literal histograms have alphabet size 256. */\n\t\tsplitByteVectorLiteral(literals, literals_count, kSymbolsPerLiteralHistogram, kMaxLiteralHistograms, kLiteralStrideLength, kLiteralBlockSwitchCost, params, literal_split)\n\n\t\tliterals = nil\n\t}\n\t{\n\t\tvar insert_and_copy_codes []uint16 = make([]uint16, len(cmds))\n\t\t/* Compute prefix codes for commands. */\n\n\t\tfor i := range cmds {\n\t\t\tinsert_and_copy_codes[i] = cmds[i].cmd_prefix_\n\t\t}\n\n\t\t/* Create the block split on the array of command prefixes. */\n\t\tsplitByteVectorCommand(insert_and_copy_codes, kSymbolsPerCommandHistogram, kMaxCommandHistograms, kCommandStrideLength, kCommandBlockSwitchCost, params, insert_and_copy_split)\n\n\t\t/* TODO: reuse for distances? */\n\n\t\tinsert_and_copy_codes = nil\n\t}\n\t{\n\t\tvar distance_prefixes []uint16 = make([]uint16, len(cmds))\n\t\tvar j uint = 0\n\t\t/* Create a continuous array of distance prefixes. */\n\n\t\tfor i := range cmds {\n\t\t\tvar cmd *command = &cmds[i]\n\t\t\tif commandCopyLen(cmd) != 0 && cmd.cmd_prefix_ >= 128 {\n\t\t\t\tdistance_prefixes[j] = cmd.dist_prefix_ & 0x3FF\n\t\t\t\tj++\n\t\t\t}\n\t\t}\n\n\t\t/* Create the block split on the array of distance prefixes. */\n\t\tsplitByteVectorDistance(distance_prefixes, j, kSymbolsPerDistanceHistogram, kMaxCommandHistograms, kCommandStrideLength, kDistanceBlockSwitchCost, params, dist_split)\n\n\t\tdistance_prefixes = nil\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/block_splitter_command.go",
    "content": "package brotli\n\nimport \"math\"\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\nfunc initialEntropyCodesCommand(data []uint16, length uint, stride uint, num_histograms uint, histograms []histogramCommand) {\n\tvar seed uint32 = 7\n\tvar block_length uint = length / num_histograms\n\tvar i uint\n\tclearHistogramsCommand(histograms, num_histograms)\n\tfor i = 0; i < num_histograms; i++ {\n\t\tvar pos uint = length * i / num_histograms\n\t\tif i != 0 {\n\t\t\tpos += uint(myRand(&seed) % uint32(block_length))\n\t\t}\n\n\t\tif pos+stride >= length {\n\t\t\tpos = length - stride - 1\n\t\t}\n\n\t\thistogramAddVectorCommand(&histograms[i], data[pos:], stride)\n\t}\n}\n\nfunc randomSampleCommand(seed *uint32, data []uint16, length uint, stride uint, sample *histogramCommand) {\n\tvar pos uint = 0\n\tif stride >= length {\n\t\tstride = length\n\t} else {\n\t\tpos = uint(myRand(seed) % uint32(length-stride+1))\n\t}\n\n\thistogramAddVectorCommand(sample, data[pos:], stride)\n}\n\nfunc refineEntropyCodesCommand(data []uint16, length uint, stride uint, num_histograms uint, histograms []histogramCommand) {\n\tvar iters uint = kIterMulForRefining*length/stride + kMinItersForRefining\n\tvar seed uint32 = 7\n\tvar iter uint\n\titers = ((iters + num_histograms - 1) / num_histograms) * num_histograms\n\tfor iter = 0; iter < iters; iter++ {\n\t\tvar sample histogramCommand\n\t\thistogramClearCommand(&sample)\n\t\trandomSampleCommand(&seed, data, length, stride, &sample)\n\t\thistogramAddHistogramCommand(&histograms[iter%num_histograms], &sample)\n\t}\n}\n\n/* Assigns a block id from the range [0, num_histograms) to each data element\n   in data[0..length) and fills in block_id[0..length) with the assigned values.\n   Returns the number of blocks, i.e. one plus the number of block switches. */\nfunc findBlocksCommand(data []uint16, length uint, block_switch_bitcost float64, num_histograms uint, histograms []histogramCommand, insert_cost []float64, cost []float64, switch_signal []byte, block_id []byte) uint {\n\tvar data_size uint = histogramDataSizeCommand()\n\tvar bitmaplen uint = (num_histograms + 7) >> 3\n\tvar num_blocks uint = 1\n\tvar i uint\n\tvar j uint\n\tassert(num_histograms <= 256)\n\tif num_histograms <= 1 {\n\t\tfor i = 0; i < length; i++ {\n\t\t\tblock_id[i] = 0\n\t\t}\n\n\t\treturn 1\n\t}\n\n\tfor i := 0; i < int(data_size*num_histograms); i++ {\n\t\tinsert_cost[i] = 0\n\t}\n\tfor i = 0; i < num_histograms; i++ {\n\t\tinsert_cost[i] = fastLog2(uint(uint32(histograms[i].total_count_)))\n\t}\n\n\tfor i = data_size; i != 0; {\n\t\ti--\n\t\tfor j = 0; j < num_histograms; j++ {\n\t\t\tinsert_cost[i*num_histograms+j] = insert_cost[j] - bitCost(uint(histograms[j].data_[i]))\n\t\t}\n\t}\n\n\tfor i := 0; i < int(num_histograms); i++ {\n\t\tcost[i] = 0\n\t}\n\tfor i := 0; i < int(length*bitmaplen); i++ {\n\t\tswitch_signal[i] = 0\n\t}\n\n\t/* After each iteration of this loop, cost[k] will contain the difference\n\t   between the minimum cost of arriving at the current byte position using\n\t   entropy code k, and the minimum cost of arriving at the current byte\n\t   position. This difference is capped at the block switch cost, and if it\n\t   reaches block switch cost, it means that when we trace back from the last\n\t   position, we need to switch here. */\n\tfor i = 0; i < length; i++ {\n\t\tvar byte_ix uint = i\n\t\tvar ix uint = byte_ix * bitmaplen\n\t\tvar insert_cost_ix uint = uint(data[byte_ix]) * num_histograms\n\t\tvar min_cost float64 = 1e99\n\t\tvar block_switch_cost float64 = block_switch_bitcost\n\t\tvar k uint\n\t\tfor k = 0; k < num_histograms; k++ {\n\t\t\t/* We are coding the symbol in data[byte_ix] with entropy code k. */\n\t\t\tcost[k] += insert_cost[insert_cost_ix+k]\n\n\t\t\tif cost[k] < min_cost {\n\t\t\t\tmin_cost = cost[k]\n\t\t\t\tblock_id[byte_ix] = byte(k)\n\t\t\t}\n\t\t}\n\n\t\t/* More blocks for the beginning. */\n\t\tif byte_ix < 2000 {\n\t\t\tblock_switch_cost *= 0.77 + 0.07*float64(byte_ix)/2000\n\t\t}\n\n\t\tfor k = 0; k < num_histograms; k++ {\n\t\t\tcost[k] -= min_cost\n\t\t\tif cost[k] >= block_switch_cost {\n\t\t\t\tvar mask byte = byte(1 << (k & 7))\n\t\t\t\tcost[k] = block_switch_cost\n\t\t\t\tassert(k>>3 < bitmaplen)\n\t\t\t\tswitch_signal[ix+(k>>3)] |= mask\n\t\t\t\t/* Trace back from the last position and switch at the marked places. */\n\t\t\t}\n\t\t}\n\t}\n\t{\n\t\tvar byte_ix uint = length - 1\n\t\tvar ix uint = byte_ix * bitmaplen\n\t\tvar cur_id byte = block_id[byte_ix]\n\t\tfor byte_ix > 0 {\n\t\t\tvar mask byte = byte(1 << (cur_id & 7))\n\t\t\tassert(uint(cur_id)>>3 < bitmaplen)\n\t\t\tbyte_ix--\n\t\t\tix -= bitmaplen\n\t\t\tif switch_signal[ix+uint(cur_id>>3)]&mask != 0 {\n\t\t\t\tif cur_id != block_id[byte_ix] {\n\t\t\t\t\tcur_id = block_id[byte_ix]\n\t\t\t\t\tnum_blocks++\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tblock_id[byte_ix] = cur_id\n\t\t}\n\t}\n\n\treturn num_blocks\n}\n\nvar remapBlockIdsCommand_kInvalidId uint16 = 256\n\nfunc remapBlockIdsCommand(block_ids []byte, length uint, new_id []uint16, num_histograms uint) uint {\n\tvar next_id uint16 = 0\n\tvar i uint\n\tfor i = 0; i < num_histograms; i++ {\n\t\tnew_id[i] = remapBlockIdsCommand_kInvalidId\n\t}\n\n\tfor i = 0; i < length; i++ {\n\t\tassert(uint(block_ids[i]) < num_histograms)\n\t\tif new_id[block_ids[i]] == remapBlockIdsCommand_kInvalidId {\n\t\t\tnew_id[block_ids[i]] = next_id\n\t\t\tnext_id++\n\t\t}\n\t}\n\n\tfor i = 0; i < length; i++ {\n\t\tblock_ids[i] = byte(new_id[block_ids[i]])\n\t\tassert(uint(block_ids[i]) < num_histograms)\n\t}\n\n\tassert(uint(next_id) <= num_histograms)\n\treturn uint(next_id)\n}\n\nfunc buildBlockHistogramsCommand(data []uint16, length uint, block_ids []byte, num_histograms uint, histograms []histogramCommand) {\n\tvar i uint\n\tclearHistogramsCommand(histograms, num_histograms)\n\tfor i = 0; i < length; i++ {\n\t\thistogramAddCommand(&histograms[block_ids[i]], uint(data[i]))\n\t}\n}\n\nvar clusterBlocksCommand_kInvalidIndex uint32 = math.MaxUint32\n\nfunc clusterBlocksCommand(data []uint16, length uint, num_blocks uint, block_ids []byte, split *blockSplit) {\n\tvar histogram_symbols []uint32 = make([]uint32, num_blocks)\n\tvar block_lengths []uint32 = make([]uint32, num_blocks)\n\tvar expected_num_clusters uint = clustersPerBatch * (num_blocks + histogramsPerBatch - 1) / histogramsPerBatch\n\tvar all_histograms_size uint = 0\n\tvar all_histograms_capacity uint = expected_num_clusters\n\tvar all_histograms []histogramCommand = make([]histogramCommand, all_histograms_capacity)\n\tvar cluster_size_size uint = 0\n\tvar cluster_size_capacity uint = expected_num_clusters\n\tvar cluster_size []uint32 = make([]uint32, cluster_size_capacity)\n\tvar num_clusters uint = 0\n\tvar histograms []histogramCommand = make([]histogramCommand, brotli_min_size_t(num_blocks, histogramsPerBatch))\n\tvar max_num_pairs uint = histogramsPerBatch * histogramsPerBatch / 2\n\tvar pairs_capacity uint = max_num_pairs + 1\n\tvar pairs []histogramPair = make([]histogramPair, pairs_capacity)\n\tvar pos uint = 0\n\tvar clusters []uint32\n\tvar num_final_clusters uint\n\tvar new_index []uint32\n\tvar i uint\n\tvar sizes = [histogramsPerBatch]uint32{0}\n\tvar new_clusters = [histogramsPerBatch]uint32{0}\n\tvar symbols = [histogramsPerBatch]uint32{0}\n\tvar remap = [histogramsPerBatch]uint32{0}\n\n\tfor i := 0; i < int(num_blocks); i++ {\n\t\tblock_lengths[i] = 0\n\t}\n\t{\n\t\tvar block_idx uint = 0\n\t\tfor i = 0; i < length; i++ {\n\t\t\tassert(block_idx < num_blocks)\n\t\t\tblock_lengths[block_idx]++\n\t\t\tif i+1 == length || block_ids[i] != block_ids[i+1] {\n\t\t\t\tblock_idx++\n\t\t\t}\n\t\t}\n\n\t\tassert(block_idx == num_blocks)\n\t}\n\n\tfor i = 0; i < num_blocks; i += histogramsPerBatch {\n\t\tvar num_to_combine uint = brotli_min_size_t(num_blocks-i, histogramsPerBatch)\n\t\tvar num_new_clusters uint\n\t\tvar j uint\n\t\tfor j = 0; j < num_to_combine; j++ {\n\t\t\tvar k uint\n\t\t\thistogramClearCommand(&histograms[j])\n\t\t\tfor k = 0; uint32(k) < block_lengths[i+j]; k++ {\n\t\t\t\thistogramAddCommand(&histograms[j], uint(data[pos]))\n\t\t\t\tpos++\n\t\t\t}\n\n\t\t\thistograms[j].bit_cost_ = populationCostCommand(&histograms[j])\n\t\t\tnew_clusters[j] = uint32(j)\n\t\t\tsymbols[j] = uint32(j)\n\t\t\tsizes[j] = 1\n\t\t}\n\n\t\tnum_new_clusters = histogramCombineCommand(histograms, sizes[:], symbols[:], new_clusters[:], []histogramPair(pairs), num_to_combine, num_to_combine, histogramsPerBatch, max_num_pairs)\n\t\tif all_histograms_capacity < (all_histograms_size + num_new_clusters) {\n\t\t\tvar _new_size uint\n\t\t\tif all_histograms_capacity == 0 {\n\t\t\t\t_new_size = all_histograms_size + num_new_clusters\n\t\t\t} else {\n\t\t\t\t_new_size = all_histograms_capacity\n\t\t\t}\n\t\t\tvar new_array []histogramCommand\n\t\t\tfor _new_size < (all_histograms_size + num_new_clusters) {\n\t\t\t\t_new_size *= 2\n\t\t\t}\n\t\t\tnew_array = make([]histogramCommand, _new_size)\n\t\t\tif all_histograms_capacity != 0 {\n\t\t\t\tcopy(new_array, all_histograms[:all_histograms_capacity])\n\t\t\t}\n\n\t\t\tall_histograms = new_array\n\t\t\tall_histograms_capacity = _new_size\n\t\t}\n\n\t\tbrotli_ensure_capacity_uint32_t(&cluster_size, &cluster_size_capacity, cluster_size_size+num_new_clusters)\n\t\tfor j = 0; j < num_new_clusters; j++ {\n\t\t\tall_histograms[all_histograms_size] = histograms[new_clusters[j]]\n\t\t\tall_histograms_size++\n\t\t\tcluster_size[cluster_size_size] = sizes[new_clusters[j]]\n\t\t\tcluster_size_size++\n\t\t\tremap[new_clusters[j]] = uint32(j)\n\t\t}\n\n\t\tfor j = 0; j < num_to_combine; j++ {\n\t\t\thistogram_symbols[i+j] = uint32(num_clusters) + remap[symbols[j]]\n\t\t}\n\n\t\tnum_clusters += num_new_clusters\n\t\tassert(num_clusters == cluster_size_size)\n\t\tassert(num_clusters == all_histograms_size)\n\t}\n\n\thistograms = nil\n\n\tmax_num_pairs = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)\n\tif pairs_capacity < max_num_pairs+1 {\n\t\tpairs = nil\n\t\tpairs = make([]histogramPair, (max_num_pairs + 1))\n\t}\n\n\tclusters = make([]uint32, num_clusters)\n\tfor i = 0; i < num_clusters; i++ {\n\t\tclusters[i] = uint32(i)\n\t}\n\n\tnum_final_clusters = histogramCombineCommand(all_histograms, cluster_size, histogram_symbols, clusters, pairs, num_clusters, num_blocks, maxNumberOfBlockTypes, max_num_pairs)\n\tpairs = nil\n\tcluster_size = nil\n\n\tnew_index = make([]uint32, num_clusters)\n\tfor i = 0; i < num_clusters; i++ {\n\t\tnew_index[i] = clusterBlocksCommand_kInvalidIndex\n\t}\n\tpos = 0\n\t{\n\t\tvar next_index uint32 = 0\n\t\tfor i = 0; i < num_blocks; i++ {\n\t\t\tvar histo histogramCommand\n\t\t\tvar j uint\n\t\t\tvar best_out uint32\n\t\t\tvar best_bits float64\n\t\t\thistogramClearCommand(&histo)\n\t\t\tfor j = 0; uint32(j) < block_lengths[i]; j++ {\n\t\t\t\thistogramAddCommand(&histo, uint(data[pos]))\n\t\t\t\tpos++\n\t\t\t}\n\n\t\t\tif i == 0 {\n\t\t\t\tbest_out = histogram_symbols[0]\n\t\t\t} else {\n\t\t\t\tbest_out = histogram_symbols[i-1]\n\t\t\t}\n\t\t\tbest_bits = histogramBitCostDistanceCommand(&histo, &all_histograms[best_out])\n\t\t\tfor j = 0; j < num_final_clusters; j++ {\n\t\t\t\tvar cur_bits float64 = histogramBitCostDistanceCommand(&histo, &all_histograms[clusters[j]])\n\t\t\t\tif cur_bits < best_bits {\n\t\t\t\t\tbest_bits = cur_bits\n\t\t\t\t\tbest_out = clusters[j]\n\t\t\t\t}\n\t\t\t}\n\n\t\t\thistogram_symbols[i] = best_out\n\t\t\tif new_index[best_out] == clusterBlocksCommand_kInvalidIndex {\n\t\t\t\tnew_index[best_out] = next_index\n\t\t\t\tnext_index++\n\t\t\t}\n\t\t}\n\t}\n\n\tclusters = nil\n\tall_histograms = nil\n\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, num_blocks)\n\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, num_blocks)\n\t{\n\t\tvar cur_length uint32 = 0\n\t\tvar block_idx uint = 0\n\t\tvar max_type byte = 0\n\t\tfor i = 0; i < num_blocks; i++ {\n\t\t\tcur_length += block_lengths[i]\n\t\t\tif i+1 == num_blocks || histogram_symbols[i] != histogram_symbols[i+1] {\n\t\t\t\tvar id byte = byte(new_index[histogram_symbols[i]])\n\t\t\t\tsplit.types[block_idx] = id\n\t\t\t\tsplit.lengths[block_idx] = cur_length\n\t\t\t\tmax_type = brotli_max_uint8_t(max_type, id)\n\t\t\t\tcur_length = 0\n\t\t\t\tblock_idx++\n\t\t\t}\n\t\t}\n\n\t\tsplit.num_blocks = block_idx\n\t\tsplit.num_types = uint(max_type) + 1\n\t}\n\n\tnew_index = nil\n\tblock_lengths = nil\n\thistogram_symbols = nil\n}\n\nfunc splitByteVectorCommand(data []uint16, literals_per_histogram uint, max_histograms uint, sampling_stride_length uint, block_switch_cost float64, params *encoderParams, split *blockSplit) {\n\tlength := uint(len(data))\n\tvar data_size uint = histogramDataSizeCommand()\n\tvar num_histograms uint = length/literals_per_histogram + 1\n\tvar histograms []histogramCommand\n\tif num_histograms > max_histograms {\n\t\tnum_histograms = max_histograms\n\t}\n\n\tif length == 0 {\n\t\tsplit.num_types = 1\n\t\treturn\n\t} else if length < kMinLengthForBlockSplitting {\n\t\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, split.num_blocks+1)\n\t\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, split.num_blocks+1)\n\t\tsplit.num_types = 1\n\t\tsplit.types[split.num_blocks] = 0\n\t\tsplit.lengths[split.num_blocks] = uint32(length)\n\t\tsplit.num_blocks++\n\t\treturn\n\t}\n\n\thistograms = make([]histogramCommand, num_histograms)\n\n\t/* Find good entropy codes. */\n\tinitialEntropyCodesCommand(data, length, sampling_stride_length, num_histograms, histograms)\n\n\trefineEntropyCodesCommand(data, length, sampling_stride_length, num_histograms, histograms)\n\t{\n\t\tvar block_ids []byte = make([]byte, length)\n\t\tvar num_blocks uint = 0\n\t\tvar bitmaplen uint = (num_histograms + 7) >> 3\n\t\tvar insert_cost []float64 = make([]float64, (data_size * num_histograms))\n\t\tvar cost []float64 = make([]float64, num_histograms)\n\t\tvar switch_signal []byte = make([]byte, (length * bitmaplen))\n\t\tvar new_id []uint16 = make([]uint16, num_histograms)\n\t\tvar iters uint\n\t\tif params.quality < hqZopflificationQuality {\n\t\t\titers = 3\n\t\t} else {\n\t\t\titers = 10\n\t\t}\n\t\t/* Find a good path through literals with the good entropy codes. */\n\n\t\tvar i uint\n\t\tfor i = 0; i < iters; i++ {\n\t\t\tnum_blocks = findBlocksCommand(data, length, block_switch_cost, num_histograms, histograms, insert_cost, cost, switch_signal, block_ids)\n\t\t\tnum_histograms = remapBlockIdsCommand(block_ids, length, new_id, num_histograms)\n\t\t\tbuildBlockHistogramsCommand(data, length, block_ids, num_histograms, histograms)\n\t\t}\n\n\t\tinsert_cost = nil\n\t\tcost = nil\n\t\tswitch_signal = nil\n\t\tnew_id = nil\n\t\thistograms = nil\n\t\tclusterBlocksCommand(data, length, num_blocks, block_ids, split)\n\t\tblock_ids = nil\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/block_splitter_distance.go",
    "content": "package brotli\n\nimport \"math\"\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\nfunc initialEntropyCodesDistance(data []uint16, length uint, stride uint, num_histograms uint, histograms []histogramDistance) {\n\tvar seed uint32 = 7\n\tvar block_length uint = length / num_histograms\n\tvar i uint\n\tclearHistogramsDistance(histograms, num_histograms)\n\tfor i = 0; i < num_histograms; i++ {\n\t\tvar pos uint = length * i / num_histograms\n\t\tif i != 0 {\n\t\t\tpos += uint(myRand(&seed) % uint32(block_length))\n\t\t}\n\n\t\tif pos+stride >= length {\n\t\t\tpos = length - stride - 1\n\t\t}\n\n\t\thistogramAddVectorDistance(&histograms[i], data[pos:], stride)\n\t}\n}\n\nfunc randomSampleDistance(seed *uint32, data []uint16, length uint, stride uint, sample *histogramDistance) {\n\tvar pos uint = 0\n\tif stride >= length {\n\t\tstride = length\n\t} else {\n\t\tpos = uint(myRand(seed) % uint32(length-stride+1))\n\t}\n\n\thistogramAddVectorDistance(sample, data[pos:], stride)\n}\n\nfunc refineEntropyCodesDistance(data []uint16, length uint, stride uint, num_histograms uint, histograms []histogramDistance) {\n\tvar iters uint = kIterMulForRefining*length/stride + kMinItersForRefining\n\tvar seed uint32 = 7\n\tvar iter uint\n\titers = ((iters + num_histograms - 1) / num_histograms) * num_histograms\n\tfor iter = 0; iter < iters; iter++ {\n\t\tvar sample histogramDistance\n\t\thistogramClearDistance(&sample)\n\t\trandomSampleDistance(&seed, data, length, stride, &sample)\n\t\thistogramAddHistogramDistance(&histograms[iter%num_histograms], &sample)\n\t}\n}\n\n/* Assigns a block id from the range [0, num_histograms) to each data element\n   in data[0..length) and fills in block_id[0..length) with the assigned values.\n   Returns the number of blocks, i.e. one plus the number of block switches. */\nfunc findBlocksDistance(data []uint16, length uint, block_switch_bitcost float64, num_histograms uint, histograms []histogramDistance, insert_cost []float64, cost []float64, switch_signal []byte, block_id []byte) uint {\n\tvar data_size uint = histogramDataSizeDistance()\n\tvar bitmaplen uint = (num_histograms + 7) >> 3\n\tvar num_blocks uint = 1\n\tvar i uint\n\tvar j uint\n\tassert(num_histograms <= 256)\n\tif num_histograms <= 1 {\n\t\tfor i = 0; i < length; i++ {\n\t\t\tblock_id[i] = 0\n\t\t}\n\n\t\treturn 1\n\t}\n\n\tfor i := 0; i < int(data_size*num_histograms); i++ {\n\t\tinsert_cost[i] = 0\n\t}\n\tfor i = 0; i < num_histograms; i++ {\n\t\tinsert_cost[i] = fastLog2(uint(uint32(histograms[i].total_count_)))\n\t}\n\n\tfor i = data_size; i != 0; {\n\t\ti--\n\t\tfor j = 0; j < num_histograms; j++ {\n\t\t\tinsert_cost[i*num_histograms+j] = insert_cost[j] - bitCost(uint(histograms[j].data_[i]))\n\t\t}\n\t}\n\n\tfor i := 0; i < int(num_histograms); i++ {\n\t\tcost[i] = 0\n\t}\n\tfor i := 0; i < int(length*bitmaplen); i++ {\n\t\tswitch_signal[i] = 0\n\t}\n\n\t/* After each iteration of this loop, cost[k] will contain the difference\n\t   between the minimum cost of arriving at the current byte position using\n\t   entropy code k, and the minimum cost of arriving at the current byte\n\t   position. This difference is capped at the block switch cost, and if it\n\t   reaches block switch cost, it means that when we trace back from the last\n\t   position, we need to switch here. */\n\tfor i = 0; i < length; i++ {\n\t\tvar byte_ix uint = i\n\t\tvar ix uint = byte_ix * bitmaplen\n\t\tvar insert_cost_ix uint = uint(data[byte_ix]) * num_histograms\n\t\tvar min_cost float64 = 1e99\n\t\tvar block_switch_cost float64 = block_switch_bitcost\n\t\tvar k uint\n\t\tfor k = 0; k < num_histograms; k++ {\n\t\t\t/* We are coding the symbol in data[byte_ix] with entropy code k. */\n\t\t\tcost[k] += insert_cost[insert_cost_ix+k]\n\n\t\t\tif cost[k] < min_cost {\n\t\t\t\tmin_cost = cost[k]\n\t\t\t\tblock_id[byte_ix] = byte(k)\n\t\t\t}\n\t\t}\n\n\t\t/* More blocks for the beginning. */\n\t\tif byte_ix < 2000 {\n\t\t\tblock_switch_cost *= 0.77 + 0.07*float64(byte_ix)/2000\n\t\t}\n\n\t\tfor k = 0; k < num_histograms; k++ {\n\t\t\tcost[k] -= min_cost\n\t\t\tif cost[k] >= block_switch_cost {\n\t\t\t\tvar mask byte = byte(1 << (k & 7))\n\t\t\t\tcost[k] = block_switch_cost\n\t\t\t\tassert(k>>3 < bitmaplen)\n\t\t\t\tswitch_signal[ix+(k>>3)] |= mask\n\t\t\t\t/* Trace back from the last position and switch at the marked places. */\n\t\t\t}\n\t\t}\n\t}\n\t{\n\t\tvar byte_ix uint = length - 1\n\t\tvar ix uint = byte_ix * bitmaplen\n\t\tvar cur_id byte = block_id[byte_ix]\n\t\tfor byte_ix > 0 {\n\t\t\tvar mask byte = byte(1 << (cur_id & 7))\n\t\t\tassert(uint(cur_id)>>3 < bitmaplen)\n\t\t\tbyte_ix--\n\t\t\tix -= bitmaplen\n\t\t\tif switch_signal[ix+uint(cur_id>>3)]&mask != 0 {\n\t\t\t\tif cur_id != block_id[byte_ix] {\n\t\t\t\t\tcur_id = block_id[byte_ix]\n\t\t\t\t\tnum_blocks++\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tblock_id[byte_ix] = cur_id\n\t\t}\n\t}\n\n\treturn num_blocks\n}\n\nvar remapBlockIdsDistance_kInvalidId uint16 = 256\n\nfunc remapBlockIdsDistance(block_ids []byte, length uint, new_id []uint16, num_histograms uint) uint {\n\tvar next_id uint16 = 0\n\tvar i uint\n\tfor i = 0; i < num_histograms; i++ {\n\t\tnew_id[i] = remapBlockIdsDistance_kInvalidId\n\t}\n\n\tfor i = 0; i < length; i++ {\n\t\tassert(uint(block_ids[i]) < num_histograms)\n\t\tif new_id[block_ids[i]] == remapBlockIdsDistance_kInvalidId {\n\t\t\tnew_id[block_ids[i]] = next_id\n\t\t\tnext_id++\n\t\t}\n\t}\n\n\tfor i = 0; i < length; i++ {\n\t\tblock_ids[i] = byte(new_id[block_ids[i]])\n\t\tassert(uint(block_ids[i]) < num_histograms)\n\t}\n\n\tassert(uint(next_id) <= num_histograms)\n\treturn uint(next_id)\n}\n\nfunc buildBlockHistogramsDistance(data []uint16, length uint, block_ids []byte, num_histograms uint, histograms []histogramDistance) {\n\tvar i uint\n\tclearHistogramsDistance(histograms, num_histograms)\n\tfor i = 0; i < length; i++ {\n\t\thistogramAddDistance(&histograms[block_ids[i]], uint(data[i]))\n\t}\n}\n\nvar clusterBlocksDistance_kInvalidIndex uint32 = math.MaxUint32\n\nfunc clusterBlocksDistance(data []uint16, length uint, num_blocks uint, block_ids []byte, split *blockSplit) {\n\tvar histogram_symbols []uint32 = make([]uint32, num_blocks)\n\tvar block_lengths []uint32 = make([]uint32, num_blocks)\n\tvar expected_num_clusters uint = clustersPerBatch * (num_blocks + histogramsPerBatch - 1) / histogramsPerBatch\n\tvar all_histograms_size uint = 0\n\tvar all_histograms_capacity uint = expected_num_clusters\n\tvar all_histograms []histogramDistance = make([]histogramDistance, all_histograms_capacity)\n\tvar cluster_size_size uint = 0\n\tvar cluster_size_capacity uint = expected_num_clusters\n\tvar cluster_size []uint32 = make([]uint32, cluster_size_capacity)\n\tvar num_clusters uint = 0\n\tvar histograms []histogramDistance = make([]histogramDistance, brotli_min_size_t(num_blocks, histogramsPerBatch))\n\tvar max_num_pairs uint = histogramsPerBatch * histogramsPerBatch / 2\n\tvar pairs_capacity uint = max_num_pairs + 1\n\tvar pairs []histogramPair = make([]histogramPair, pairs_capacity)\n\tvar pos uint = 0\n\tvar clusters []uint32\n\tvar num_final_clusters uint\n\tvar new_index []uint32\n\tvar i uint\n\tvar sizes = [histogramsPerBatch]uint32{0}\n\tvar new_clusters = [histogramsPerBatch]uint32{0}\n\tvar symbols = [histogramsPerBatch]uint32{0}\n\tvar remap = [histogramsPerBatch]uint32{0}\n\n\tfor i := 0; i < int(num_blocks); i++ {\n\t\tblock_lengths[i] = 0\n\t}\n\t{\n\t\tvar block_idx uint = 0\n\t\tfor i = 0; i < length; i++ {\n\t\t\tassert(block_idx < num_blocks)\n\t\t\tblock_lengths[block_idx]++\n\t\t\tif i+1 == length || block_ids[i] != block_ids[i+1] {\n\t\t\t\tblock_idx++\n\t\t\t}\n\t\t}\n\n\t\tassert(block_idx == num_blocks)\n\t}\n\n\tfor i = 0; i < num_blocks; i += histogramsPerBatch {\n\t\tvar num_to_combine uint = brotli_min_size_t(num_blocks-i, histogramsPerBatch)\n\t\tvar num_new_clusters uint\n\t\tvar j uint\n\t\tfor j = 0; j < num_to_combine; j++ {\n\t\t\tvar k uint\n\t\t\thistogramClearDistance(&histograms[j])\n\t\t\tfor k = 0; uint32(k) < block_lengths[i+j]; k++ {\n\t\t\t\thistogramAddDistance(&histograms[j], uint(data[pos]))\n\t\t\t\tpos++\n\t\t\t}\n\n\t\t\thistograms[j].bit_cost_ = populationCostDistance(&histograms[j])\n\t\t\tnew_clusters[j] = uint32(j)\n\t\t\tsymbols[j] = uint32(j)\n\t\t\tsizes[j] = 1\n\t\t}\n\n\t\tnum_new_clusters = histogramCombineDistance(histograms, sizes[:], symbols[:], new_clusters[:], []histogramPair(pairs), num_to_combine, num_to_combine, histogramsPerBatch, max_num_pairs)\n\t\tif all_histograms_capacity < (all_histograms_size + num_new_clusters) {\n\t\t\tvar _new_size uint\n\t\t\tif all_histograms_capacity == 0 {\n\t\t\t\t_new_size = all_histograms_size + num_new_clusters\n\t\t\t} else {\n\t\t\t\t_new_size = all_histograms_capacity\n\t\t\t}\n\t\t\tvar new_array []histogramDistance\n\t\t\tfor _new_size < (all_histograms_size + num_new_clusters) {\n\t\t\t\t_new_size *= 2\n\t\t\t}\n\t\t\tnew_array = make([]histogramDistance, _new_size)\n\t\t\tif all_histograms_capacity != 0 {\n\t\t\t\tcopy(new_array, all_histograms[:all_histograms_capacity])\n\t\t\t}\n\n\t\t\tall_histograms = new_array\n\t\t\tall_histograms_capacity = _new_size\n\t\t}\n\n\t\tbrotli_ensure_capacity_uint32_t(&cluster_size, &cluster_size_capacity, cluster_size_size+num_new_clusters)\n\t\tfor j = 0; j < num_new_clusters; j++ {\n\t\t\tall_histograms[all_histograms_size] = histograms[new_clusters[j]]\n\t\t\tall_histograms_size++\n\t\t\tcluster_size[cluster_size_size] = sizes[new_clusters[j]]\n\t\t\tcluster_size_size++\n\t\t\tremap[new_clusters[j]] = uint32(j)\n\t\t}\n\n\t\tfor j = 0; j < num_to_combine; j++ {\n\t\t\thistogram_symbols[i+j] = uint32(num_clusters) + remap[symbols[j]]\n\t\t}\n\n\t\tnum_clusters += num_new_clusters\n\t\tassert(num_clusters == cluster_size_size)\n\t\tassert(num_clusters == all_histograms_size)\n\t}\n\n\thistograms = nil\n\n\tmax_num_pairs = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)\n\tif pairs_capacity < max_num_pairs+1 {\n\t\tpairs = nil\n\t\tpairs = make([]histogramPair, (max_num_pairs + 1))\n\t}\n\n\tclusters = make([]uint32, num_clusters)\n\tfor i = 0; i < num_clusters; i++ {\n\t\tclusters[i] = uint32(i)\n\t}\n\n\tnum_final_clusters = histogramCombineDistance(all_histograms, cluster_size, histogram_symbols, clusters, pairs, num_clusters, num_blocks, maxNumberOfBlockTypes, max_num_pairs)\n\tpairs = nil\n\tcluster_size = nil\n\n\tnew_index = make([]uint32, num_clusters)\n\tfor i = 0; i < num_clusters; i++ {\n\t\tnew_index[i] = clusterBlocksDistance_kInvalidIndex\n\t}\n\tpos = 0\n\t{\n\t\tvar next_index uint32 = 0\n\t\tfor i = 0; i < num_blocks; i++ {\n\t\t\tvar histo histogramDistance\n\t\t\tvar j uint\n\t\t\tvar best_out uint32\n\t\t\tvar best_bits float64\n\t\t\thistogramClearDistance(&histo)\n\t\t\tfor j = 0; uint32(j) < block_lengths[i]; j++ {\n\t\t\t\thistogramAddDistance(&histo, uint(data[pos]))\n\t\t\t\tpos++\n\t\t\t}\n\n\t\t\tif i == 0 {\n\t\t\t\tbest_out = histogram_symbols[0]\n\t\t\t} else {\n\t\t\t\tbest_out = histogram_symbols[i-1]\n\t\t\t}\n\t\t\tbest_bits = histogramBitCostDistanceDistance(&histo, &all_histograms[best_out])\n\t\t\tfor j = 0; j < num_final_clusters; j++ {\n\t\t\t\tvar cur_bits float64 = histogramBitCostDistanceDistance(&histo, &all_histograms[clusters[j]])\n\t\t\t\tif cur_bits < best_bits {\n\t\t\t\t\tbest_bits = cur_bits\n\t\t\t\t\tbest_out = clusters[j]\n\t\t\t\t}\n\t\t\t}\n\n\t\t\thistogram_symbols[i] = best_out\n\t\t\tif new_index[best_out] == clusterBlocksDistance_kInvalidIndex {\n\t\t\t\tnew_index[best_out] = next_index\n\t\t\t\tnext_index++\n\t\t\t}\n\t\t}\n\t}\n\n\tclusters = nil\n\tall_histograms = nil\n\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, num_blocks)\n\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, num_blocks)\n\t{\n\t\tvar cur_length uint32 = 0\n\t\tvar block_idx uint = 0\n\t\tvar max_type byte = 0\n\t\tfor i = 0; i < num_blocks; i++ {\n\t\t\tcur_length += block_lengths[i]\n\t\t\tif i+1 == num_blocks || histogram_symbols[i] != histogram_symbols[i+1] {\n\t\t\t\tvar id byte = byte(new_index[histogram_symbols[i]])\n\t\t\t\tsplit.types[block_idx] = id\n\t\t\t\tsplit.lengths[block_idx] = cur_length\n\t\t\t\tmax_type = brotli_max_uint8_t(max_type, id)\n\t\t\t\tcur_length = 0\n\t\t\t\tblock_idx++\n\t\t\t}\n\t\t}\n\n\t\tsplit.num_blocks = block_idx\n\t\tsplit.num_types = uint(max_type) + 1\n\t}\n\n\tnew_index = nil\n\tblock_lengths = nil\n\thistogram_symbols = nil\n}\n\nfunc splitByteVectorDistance(data []uint16, length uint, literals_per_histogram uint, max_histograms uint, sampling_stride_length uint, block_switch_cost float64, params *encoderParams, split *blockSplit) {\n\tvar data_size uint = histogramDataSizeDistance()\n\tvar num_histograms uint = length/literals_per_histogram + 1\n\tvar histograms []histogramDistance\n\tif num_histograms > max_histograms {\n\t\tnum_histograms = max_histograms\n\t}\n\n\tif length == 0 {\n\t\tsplit.num_types = 1\n\t\treturn\n\t} else if length < kMinLengthForBlockSplitting {\n\t\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, split.num_blocks+1)\n\t\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, split.num_blocks+1)\n\t\tsplit.num_types = 1\n\t\tsplit.types[split.num_blocks] = 0\n\t\tsplit.lengths[split.num_blocks] = uint32(length)\n\t\tsplit.num_blocks++\n\t\treturn\n\t}\n\n\thistograms = make([]histogramDistance, num_histograms)\n\n\t/* Find good entropy codes. */\n\tinitialEntropyCodesDistance(data, length, sampling_stride_length, num_histograms, histograms)\n\n\trefineEntropyCodesDistance(data, length, sampling_stride_length, num_histograms, histograms)\n\t{\n\t\tvar block_ids []byte = make([]byte, length)\n\t\tvar num_blocks uint = 0\n\t\tvar bitmaplen uint = (num_histograms + 7) >> 3\n\t\tvar insert_cost []float64 = make([]float64, (data_size * num_histograms))\n\t\tvar cost []float64 = make([]float64, num_histograms)\n\t\tvar switch_signal []byte = make([]byte, (length * bitmaplen))\n\t\tvar new_id []uint16 = make([]uint16, num_histograms)\n\t\tvar iters uint\n\t\tif params.quality < hqZopflificationQuality {\n\t\t\titers = 3\n\t\t} else {\n\t\t\titers = 10\n\t\t}\n\t\t/* Find a good path through literals with the good entropy codes. */\n\n\t\tvar i uint\n\t\tfor i = 0; i < iters; i++ {\n\t\t\tnum_blocks = findBlocksDistance(data, length, block_switch_cost, num_histograms, histograms, insert_cost, cost, switch_signal, block_ids)\n\t\t\tnum_histograms = remapBlockIdsDistance(block_ids, length, new_id, num_histograms)\n\t\t\tbuildBlockHistogramsDistance(data, length, block_ids, num_histograms, histograms)\n\t\t}\n\n\t\tinsert_cost = nil\n\t\tcost = nil\n\t\tswitch_signal = nil\n\t\tnew_id = nil\n\t\thistograms = nil\n\t\tclusterBlocksDistance(data, length, num_blocks, block_ids, split)\n\t\tblock_ids = nil\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/block_splitter_literal.go",
    "content": "package brotli\n\nimport \"math\"\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\nfunc initialEntropyCodesLiteral(data []byte, length uint, stride uint, num_histograms uint, histograms []histogramLiteral) {\n\tvar seed uint32 = 7\n\tvar block_length uint = length / num_histograms\n\tvar i uint\n\tclearHistogramsLiteral(histograms, num_histograms)\n\tfor i = 0; i < num_histograms; i++ {\n\t\tvar pos uint = length * i / num_histograms\n\t\tif i != 0 {\n\t\t\tpos += uint(myRand(&seed) % uint32(block_length))\n\t\t}\n\n\t\tif pos+stride >= length {\n\t\t\tpos = length - stride - 1\n\t\t}\n\n\t\thistogramAddVectorLiteral(&histograms[i], data[pos:], stride)\n\t}\n}\n\nfunc randomSampleLiteral(seed *uint32, data []byte, length uint, stride uint, sample *histogramLiteral) {\n\tvar pos uint = 0\n\tif stride >= length {\n\t\tstride = length\n\t} else {\n\t\tpos = uint(myRand(seed) % uint32(length-stride+1))\n\t}\n\n\thistogramAddVectorLiteral(sample, data[pos:], stride)\n}\n\nfunc refineEntropyCodesLiteral(data []byte, length uint, stride uint, num_histograms uint, histograms []histogramLiteral) {\n\tvar iters uint = kIterMulForRefining*length/stride + kMinItersForRefining\n\tvar seed uint32 = 7\n\tvar iter uint\n\titers = ((iters + num_histograms - 1) / num_histograms) * num_histograms\n\tfor iter = 0; iter < iters; iter++ {\n\t\tvar sample histogramLiteral\n\t\thistogramClearLiteral(&sample)\n\t\trandomSampleLiteral(&seed, data, length, stride, &sample)\n\t\thistogramAddHistogramLiteral(&histograms[iter%num_histograms], &sample)\n\t}\n}\n\n/* Assigns a block id from the range [0, num_histograms) to each data element\n   in data[0..length) and fills in block_id[0..length) with the assigned values.\n   Returns the number of blocks, i.e. one plus the number of block switches. */\nfunc findBlocksLiteral(data []byte, length uint, block_switch_bitcost float64, num_histograms uint, histograms []histogramLiteral, insert_cost []float64, cost []float64, switch_signal []byte, block_id []byte) uint {\n\tvar data_size uint = histogramDataSizeLiteral()\n\tvar bitmaplen uint = (num_histograms + 7) >> 3\n\tvar num_blocks uint = 1\n\tvar i uint\n\tvar j uint\n\tassert(num_histograms <= 256)\n\tif num_histograms <= 1 {\n\t\tfor i = 0; i < length; i++ {\n\t\t\tblock_id[i] = 0\n\t\t}\n\n\t\treturn 1\n\t}\n\n\tfor i := 0; i < int(data_size*num_histograms); i++ {\n\t\tinsert_cost[i] = 0\n\t}\n\tfor i = 0; i < num_histograms; i++ {\n\t\tinsert_cost[i] = fastLog2(uint(uint32(histograms[i].total_count_)))\n\t}\n\n\tfor i = data_size; i != 0; {\n\t\ti--\n\t\tfor j = 0; j < num_histograms; j++ {\n\t\t\tinsert_cost[i*num_histograms+j] = insert_cost[j] - bitCost(uint(histograms[j].data_[i]))\n\t\t}\n\t}\n\n\tfor i := 0; i < int(num_histograms); i++ {\n\t\tcost[i] = 0\n\t}\n\tfor i := 0; i < int(length*bitmaplen); i++ {\n\t\tswitch_signal[i] = 0\n\t}\n\n\t/* After each iteration of this loop, cost[k] will contain the difference\n\t   between the minimum cost of arriving at the current byte position using\n\t   entropy code k, and the minimum cost of arriving at the current byte\n\t   position. This difference is capped at the block switch cost, and if it\n\t   reaches block switch cost, it means that when we trace back from the last\n\t   position, we need to switch here. */\n\tfor i = 0; i < length; i++ {\n\t\tvar byte_ix uint = i\n\t\tvar ix uint = byte_ix * bitmaplen\n\t\tvar insert_cost_ix uint = uint(data[byte_ix]) * num_histograms\n\t\tvar min_cost float64 = 1e99\n\t\tvar block_switch_cost float64 = block_switch_bitcost\n\t\tvar k uint\n\t\tfor k = 0; k < num_histograms; k++ {\n\t\t\t/* We are coding the symbol in data[byte_ix] with entropy code k. */\n\t\t\tcost[k] += insert_cost[insert_cost_ix+k]\n\n\t\t\tif cost[k] < min_cost {\n\t\t\t\tmin_cost = cost[k]\n\t\t\t\tblock_id[byte_ix] = byte(k)\n\t\t\t}\n\t\t}\n\n\t\t/* More blocks for the beginning. */\n\t\tif byte_ix < 2000 {\n\t\t\tblock_switch_cost *= 0.77 + 0.07*float64(byte_ix)/2000\n\t\t}\n\n\t\tfor k = 0; k < num_histograms; k++ {\n\t\t\tcost[k] -= min_cost\n\t\t\tif cost[k] >= block_switch_cost {\n\t\t\t\tvar mask byte = byte(1 << (k & 7))\n\t\t\t\tcost[k] = block_switch_cost\n\t\t\t\tassert(k>>3 < bitmaplen)\n\t\t\t\tswitch_signal[ix+(k>>3)] |= mask\n\t\t\t\t/* Trace back from the last position and switch at the marked places. */\n\t\t\t}\n\t\t}\n\t}\n\t{\n\t\tvar byte_ix uint = length - 1\n\t\tvar ix uint = byte_ix * bitmaplen\n\t\tvar cur_id byte = block_id[byte_ix]\n\t\tfor byte_ix > 0 {\n\t\t\tvar mask byte = byte(1 << (cur_id & 7))\n\t\t\tassert(uint(cur_id)>>3 < bitmaplen)\n\t\t\tbyte_ix--\n\t\t\tix -= bitmaplen\n\t\t\tif switch_signal[ix+uint(cur_id>>3)]&mask != 0 {\n\t\t\t\tif cur_id != block_id[byte_ix] {\n\t\t\t\t\tcur_id = block_id[byte_ix]\n\t\t\t\t\tnum_blocks++\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tblock_id[byte_ix] = cur_id\n\t\t}\n\t}\n\n\treturn num_blocks\n}\n\nvar remapBlockIdsLiteral_kInvalidId uint16 = 256\n\nfunc remapBlockIdsLiteral(block_ids []byte, length uint, new_id []uint16, num_histograms uint) uint {\n\tvar next_id uint16 = 0\n\tvar i uint\n\tfor i = 0; i < num_histograms; i++ {\n\t\tnew_id[i] = remapBlockIdsLiteral_kInvalidId\n\t}\n\n\tfor i = 0; i < length; i++ {\n\t\tassert(uint(block_ids[i]) < num_histograms)\n\t\tif new_id[block_ids[i]] == remapBlockIdsLiteral_kInvalidId {\n\t\t\tnew_id[block_ids[i]] = next_id\n\t\t\tnext_id++\n\t\t}\n\t}\n\n\tfor i = 0; i < length; i++ {\n\t\tblock_ids[i] = byte(new_id[block_ids[i]])\n\t\tassert(uint(block_ids[i]) < num_histograms)\n\t}\n\n\tassert(uint(next_id) <= num_histograms)\n\treturn uint(next_id)\n}\n\nfunc buildBlockHistogramsLiteral(data []byte, length uint, block_ids []byte, num_histograms uint, histograms []histogramLiteral) {\n\tvar i uint\n\tclearHistogramsLiteral(histograms, num_histograms)\n\tfor i = 0; i < length; i++ {\n\t\thistogramAddLiteral(&histograms[block_ids[i]], uint(data[i]))\n\t}\n}\n\nvar clusterBlocksLiteral_kInvalidIndex uint32 = math.MaxUint32\n\nfunc clusterBlocksLiteral(data []byte, length uint, num_blocks uint, block_ids []byte, split *blockSplit) {\n\tvar histogram_symbols []uint32 = make([]uint32, num_blocks)\n\tvar block_lengths []uint32 = make([]uint32, num_blocks)\n\tvar expected_num_clusters uint = clustersPerBatch * (num_blocks + histogramsPerBatch - 1) / histogramsPerBatch\n\tvar all_histograms_size uint = 0\n\tvar all_histograms_capacity uint = expected_num_clusters\n\tvar all_histograms []histogramLiteral = make([]histogramLiteral, all_histograms_capacity)\n\tvar cluster_size_size uint = 0\n\tvar cluster_size_capacity uint = expected_num_clusters\n\tvar cluster_size []uint32 = make([]uint32, cluster_size_capacity)\n\tvar num_clusters uint = 0\n\tvar histograms []histogramLiteral = make([]histogramLiteral, brotli_min_size_t(num_blocks, histogramsPerBatch))\n\tvar max_num_pairs uint = histogramsPerBatch * histogramsPerBatch / 2\n\tvar pairs_capacity uint = max_num_pairs + 1\n\tvar pairs []histogramPair = make([]histogramPair, pairs_capacity)\n\tvar pos uint = 0\n\tvar clusters []uint32\n\tvar num_final_clusters uint\n\tvar new_index []uint32\n\tvar i uint\n\tvar sizes = [histogramsPerBatch]uint32{0}\n\tvar new_clusters = [histogramsPerBatch]uint32{0}\n\tvar symbols = [histogramsPerBatch]uint32{0}\n\tvar remap = [histogramsPerBatch]uint32{0}\n\n\tfor i := 0; i < int(num_blocks); i++ {\n\t\tblock_lengths[i] = 0\n\t}\n\t{\n\t\tvar block_idx uint = 0\n\t\tfor i = 0; i < length; i++ {\n\t\t\tassert(block_idx < num_blocks)\n\t\t\tblock_lengths[block_idx]++\n\t\t\tif i+1 == length || block_ids[i] != block_ids[i+1] {\n\t\t\t\tblock_idx++\n\t\t\t}\n\t\t}\n\n\t\tassert(block_idx == num_blocks)\n\t}\n\n\tfor i = 0; i < num_blocks; i += histogramsPerBatch {\n\t\tvar num_to_combine uint = brotli_min_size_t(num_blocks-i, histogramsPerBatch)\n\t\tvar num_new_clusters uint\n\t\tvar j uint\n\t\tfor j = 0; j < num_to_combine; j++ {\n\t\t\tvar k uint\n\t\t\thistogramClearLiteral(&histograms[j])\n\t\t\tfor k = 0; uint32(k) < block_lengths[i+j]; k++ {\n\t\t\t\thistogramAddLiteral(&histograms[j], uint(data[pos]))\n\t\t\t\tpos++\n\t\t\t}\n\n\t\t\thistograms[j].bit_cost_ = populationCostLiteral(&histograms[j])\n\t\t\tnew_clusters[j] = uint32(j)\n\t\t\tsymbols[j] = uint32(j)\n\t\t\tsizes[j] = 1\n\t\t}\n\n\t\tnum_new_clusters = histogramCombineLiteral(histograms, sizes[:], symbols[:], new_clusters[:], []histogramPair(pairs), num_to_combine, num_to_combine, histogramsPerBatch, max_num_pairs)\n\t\tif all_histograms_capacity < (all_histograms_size + num_new_clusters) {\n\t\t\tvar _new_size uint\n\t\t\tif all_histograms_capacity == 0 {\n\t\t\t\t_new_size = all_histograms_size + num_new_clusters\n\t\t\t} else {\n\t\t\t\t_new_size = all_histograms_capacity\n\t\t\t}\n\t\t\tvar new_array []histogramLiteral\n\t\t\tfor _new_size < (all_histograms_size + num_new_clusters) {\n\t\t\t\t_new_size *= 2\n\t\t\t}\n\t\t\tnew_array = make([]histogramLiteral, _new_size)\n\t\t\tif all_histograms_capacity != 0 {\n\t\t\t\tcopy(new_array, all_histograms[:all_histograms_capacity])\n\t\t\t}\n\n\t\t\tall_histograms = new_array\n\t\t\tall_histograms_capacity = _new_size\n\t\t}\n\n\t\tbrotli_ensure_capacity_uint32_t(&cluster_size, &cluster_size_capacity, cluster_size_size+num_new_clusters)\n\t\tfor j = 0; j < num_new_clusters; j++ {\n\t\t\tall_histograms[all_histograms_size] = histograms[new_clusters[j]]\n\t\t\tall_histograms_size++\n\t\t\tcluster_size[cluster_size_size] = sizes[new_clusters[j]]\n\t\t\tcluster_size_size++\n\t\t\tremap[new_clusters[j]] = uint32(j)\n\t\t}\n\n\t\tfor j = 0; j < num_to_combine; j++ {\n\t\t\thistogram_symbols[i+j] = uint32(num_clusters) + remap[symbols[j]]\n\t\t}\n\n\t\tnum_clusters += num_new_clusters\n\t\tassert(num_clusters == cluster_size_size)\n\t\tassert(num_clusters == all_histograms_size)\n\t}\n\n\thistograms = nil\n\n\tmax_num_pairs = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)\n\tif pairs_capacity < max_num_pairs+1 {\n\t\tpairs = nil\n\t\tpairs = make([]histogramPair, (max_num_pairs + 1))\n\t}\n\n\tclusters = make([]uint32, num_clusters)\n\tfor i = 0; i < num_clusters; i++ {\n\t\tclusters[i] = uint32(i)\n\t}\n\n\tnum_final_clusters = histogramCombineLiteral(all_histograms, cluster_size, histogram_symbols, clusters, pairs, num_clusters, num_blocks, maxNumberOfBlockTypes, max_num_pairs)\n\tpairs = nil\n\tcluster_size = nil\n\n\tnew_index = make([]uint32, num_clusters)\n\tfor i = 0; i < num_clusters; i++ {\n\t\tnew_index[i] = clusterBlocksLiteral_kInvalidIndex\n\t}\n\tpos = 0\n\t{\n\t\tvar next_index uint32 = 0\n\t\tfor i = 0; i < num_blocks; i++ {\n\t\t\tvar histo histogramLiteral\n\t\t\tvar j uint\n\t\t\tvar best_out uint32\n\t\t\tvar best_bits float64\n\t\t\thistogramClearLiteral(&histo)\n\t\t\tfor j = 0; uint32(j) < block_lengths[i]; j++ {\n\t\t\t\thistogramAddLiteral(&histo, uint(data[pos]))\n\t\t\t\tpos++\n\t\t\t}\n\n\t\t\tif i == 0 {\n\t\t\t\tbest_out = histogram_symbols[0]\n\t\t\t} else {\n\t\t\t\tbest_out = histogram_symbols[i-1]\n\t\t\t}\n\t\t\tbest_bits = histogramBitCostDistanceLiteral(&histo, &all_histograms[best_out])\n\t\t\tfor j = 0; j < num_final_clusters; j++ {\n\t\t\t\tvar cur_bits float64 = histogramBitCostDistanceLiteral(&histo, &all_histograms[clusters[j]])\n\t\t\t\tif cur_bits < best_bits {\n\t\t\t\t\tbest_bits = cur_bits\n\t\t\t\t\tbest_out = clusters[j]\n\t\t\t\t}\n\t\t\t}\n\n\t\t\thistogram_symbols[i] = best_out\n\t\t\tif new_index[best_out] == clusterBlocksLiteral_kInvalidIndex {\n\t\t\t\tnew_index[best_out] = next_index\n\t\t\t\tnext_index++\n\t\t\t}\n\t\t}\n\t}\n\n\tclusters = nil\n\tall_histograms = nil\n\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, num_blocks)\n\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, num_blocks)\n\t{\n\t\tvar cur_length uint32 = 0\n\t\tvar block_idx uint = 0\n\t\tvar max_type byte = 0\n\t\tfor i = 0; i < num_blocks; i++ {\n\t\t\tcur_length += block_lengths[i]\n\t\t\tif i+1 == num_blocks || histogram_symbols[i] != histogram_symbols[i+1] {\n\t\t\t\tvar id byte = byte(new_index[histogram_symbols[i]])\n\t\t\t\tsplit.types[block_idx] = id\n\t\t\t\tsplit.lengths[block_idx] = cur_length\n\t\t\t\tmax_type = brotli_max_uint8_t(max_type, id)\n\t\t\t\tcur_length = 0\n\t\t\t\tblock_idx++\n\t\t\t}\n\t\t}\n\n\t\tsplit.num_blocks = block_idx\n\t\tsplit.num_types = uint(max_type) + 1\n\t}\n\n\tnew_index = nil\n\tblock_lengths = nil\n\thistogram_symbols = nil\n}\n\nfunc splitByteVectorLiteral(data []byte, length uint, literals_per_histogram uint, max_histograms uint, sampling_stride_length uint, block_switch_cost float64, params *encoderParams, split *blockSplit) {\n\tvar data_size uint = histogramDataSizeLiteral()\n\tvar num_histograms uint = length/literals_per_histogram + 1\n\tvar histograms []histogramLiteral\n\tif num_histograms > max_histograms {\n\t\tnum_histograms = max_histograms\n\t}\n\n\tif length == 0 {\n\t\tsplit.num_types = 1\n\t\treturn\n\t} else if length < kMinLengthForBlockSplitting {\n\t\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, split.num_blocks+1)\n\t\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, split.num_blocks+1)\n\t\tsplit.num_types = 1\n\t\tsplit.types[split.num_blocks] = 0\n\t\tsplit.lengths[split.num_blocks] = uint32(length)\n\t\tsplit.num_blocks++\n\t\treturn\n\t}\n\n\thistograms = make([]histogramLiteral, num_histograms)\n\n\t/* Find good entropy codes. */\n\tinitialEntropyCodesLiteral(data, length, sampling_stride_length, num_histograms, histograms)\n\n\trefineEntropyCodesLiteral(data, length, sampling_stride_length, num_histograms, histograms)\n\t{\n\t\tvar block_ids []byte = make([]byte, length)\n\t\tvar num_blocks uint = 0\n\t\tvar bitmaplen uint = (num_histograms + 7) >> 3\n\t\tvar insert_cost []float64 = make([]float64, (data_size * num_histograms))\n\t\tvar cost []float64 = make([]float64, num_histograms)\n\t\tvar switch_signal []byte = make([]byte, (length * bitmaplen))\n\t\tvar new_id []uint16 = make([]uint16, num_histograms)\n\t\tvar iters uint\n\t\tif params.quality < hqZopflificationQuality {\n\t\t\titers = 3\n\t\t} else {\n\t\t\titers = 10\n\t\t}\n\t\t/* Find a good path through literals with the good entropy codes. */\n\n\t\tvar i uint\n\t\tfor i = 0; i < iters; i++ {\n\t\t\tnum_blocks = findBlocksLiteral(data, length, block_switch_cost, num_histograms, histograms, insert_cost, cost, switch_signal, block_ids)\n\t\t\tnum_histograms = remapBlockIdsLiteral(block_ids, length, new_id, num_histograms)\n\t\t\tbuildBlockHistogramsLiteral(data, length, block_ids, num_histograms, histograms)\n\t\t}\n\n\t\tinsert_cost = nil\n\t\tcost = nil\n\t\tswitch_signal = nil\n\t\tnew_id = nil\n\t\thistograms = nil\n\t\tclusterBlocksLiteral(data, length, num_blocks, block_ids, split)\n\t\tblock_ids = nil\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/brotli_bit_stream.go",
    "content": "package brotli\n\nimport (\n\t\"math\"\n\t\"sync\"\n)\n\nconst maxHuffmanTreeSize = (2*numCommandSymbols + 1)\n\n/* The maximum size of Huffman dictionary for distances assuming that\n   NPOSTFIX = 0 and NDIRECT = 0. */\nconst maxSimpleDistanceAlphabetSize = 140\n\n/* Represents the range of values belonging to a prefix code:\n   [offset, offset + 2^nbits) */\ntype prefixCodeRange struct {\n\toffset uint32\n\tnbits  uint32\n}\n\nvar kBlockLengthPrefixCode = [numBlockLenSymbols]prefixCodeRange{\n\tprefixCodeRange{1, 2},\n\tprefixCodeRange{5, 2},\n\tprefixCodeRange{9, 2},\n\tprefixCodeRange{13, 2},\n\tprefixCodeRange{17, 3},\n\tprefixCodeRange{25, 3},\n\tprefixCodeRange{33, 3},\n\tprefixCodeRange{41, 3},\n\tprefixCodeRange{49, 4},\n\tprefixCodeRange{65, 4},\n\tprefixCodeRange{81, 4},\n\tprefixCodeRange{97, 4},\n\tprefixCodeRange{113, 5},\n\tprefixCodeRange{145, 5},\n\tprefixCodeRange{177, 5},\n\tprefixCodeRange{209, 5},\n\tprefixCodeRange{241, 6},\n\tprefixCodeRange{305, 6},\n\tprefixCodeRange{369, 7},\n\tprefixCodeRange{497, 8},\n\tprefixCodeRange{753, 9},\n\tprefixCodeRange{1265, 10},\n\tprefixCodeRange{2289, 11},\n\tprefixCodeRange{4337, 12},\n\tprefixCodeRange{8433, 13},\n\tprefixCodeRange{16625, 24},\n}\n\nfunc blockLengthPrefixCode(len uint32) uint32 {\n\tvar code uint32\n\tif len >= 177 {\n\t\tif len >= 753 {\n\t\t\tcode = 20\n\t\t} else {\n\t\t\tcode = 14\n\t\t}\n\t} else if len >= 41 {\n\t\tcode = 7\n\t} else {\n\t\tcode = 0\n\t}\n\tfor code < (numBlockLenSymbols-1) && len >= kBlockLengthPrefixCode[code+1].offset {\n\t\tcode++\n\t}\n\treturn code\n}\n\nfunc getBlockLengthPrefixCode(len uint32, code *uint, n_extra *uint32, extra *uint32) {\n\t*code = uint(blockLengthPrefixCode(uint32(len)))\n\t*n_extra = kBlockLengthPrefixCode[*code].nbits\n\t*extra = len - kBlockLengthPrefixCode[*code].offset\n}\n\ntype blockTypeCodeCalculator struct {\n\tlast_type        uint\n\tsecond_last_type uint\n}\n\nfunc initBlockTypeCodeCalculator(self *blockTypeCodeCalculator) {\n\tself.last_type = 1\n\tself.second_last_type = 0\n}\n\nfunc nextBlockTypeCode(calculator *blockTypeCodeCalculator, type_ byte) uint {\n\tvar type_code uint\n\tif uint(type_) == calculator.last_type+1 {\n\t\ttype_code = 1\n\t} else if uint(type_) == calculator.second_last_type {\n\t\ttype_code = 0\n\t} else {\n\t\ttype_code = uint(type_) + 2\n\t}\n\tcalculator.second_last_type = calculator.last_type\n\tcalculator.last_type = uint(type_)\n\treturn type_code\n}\n\n/* |nibblesbits| represents the 2 bits to encode MNIBBLES (0-3)\n   REQUIRES: length > 0\n   REQUIRES: length <= (1 << 24) */\nfunc encodeMlen(length uint, bits *uint64, numbits *uint, nibblesbits *uint64) {\n\tvar lg uint\n\tif length == 1 {\n\t\tlg = 1\n\t} else {\n\t\tlg = uint(log2FloorNonZero(uint(uint32(length-1)))) + 1\n\t}\n\tvar tmp uint\n\tif lg < 16 {\n\t\ttmp = 16\n\t} else {\n\t\ttmp = (lg + 3)\n\t}\n\tvar mnibbles uint = tmp / 4\n\tassert(length > 0)\n\tassert(length <= 1<<24)\n\tassert(lg <= 24)\n\t*nibblesbits = uint64(mnibbles) - 4\n\t*numbits = mnibbles * 4\n\t*bits = uint64(length) - 1\n}\n\nfunc storeCommandExtra(cmd *command, bw *bitWriter) {\n\tvar copylen_code uint32 = commandCopyLenCode(cmd)\n\tvar inscode uint16 = getInsertLengthCode(uint(cmd.insert_len_))\n\tvar copycode uint16 = getCopyLengthCode(uint(copylen_code))\n\tvar insnumextra uint32 = getInsertExtra(inscode)\n\tvar insextraval uint64 = uint64(cmd.insert_len_) - uint64(getInsertBase(inscode))\n\tvar copyextraval uint64 = uint64(copylen_code) - uint64(getCopyBase(copycode))\n\tvar bits uint64 = copyextraval<<insnumextra | insextraval\n\tbw.writeBits(uint(insnumextra+getCopyExtra(copycode)), bits)\n}\n\n/* Data structure that stores almost everything that is needed to encode each\n   block switch command. */\ntype blockSplitCode struct {\n\ttype_code_calculator blockTypeCodeCalculator\n\ttype_depths          [maxBlockTypeSymbols]byte\n\ttype_bits            [maxBlockTypeSymbols]uint16\n\tlength_depths        [numBlockLenSymbols]byte\n\tlength_bits          [numBlockLenSymbols]uint16\n}\n\n/* Stores a number between 0 and 255. */\nfunc storeVarLenUint8(n uint, bw *bitWriter) {\n\tif n == 0 {\n\t\tbw.writeBits(1, 0)\n\t} else {\n\t\tvar nbits uint = uint(log2FloorNonZero(n))\n\t\tbw.writeBits(1, 1)\n\t\tbw.writeBits(3, uint64(nbits))\n\t\tbw.writeBits(nbits, uint64(n)-(uint64(uint(1))<<nbits))\n\t}\n}\n\n/* Stores the compressed meta-block header.\n   REQUIRES: length > 0\n   REQUIRES: length <= (1 << 24) */\nfunc storeCompressedMetaBlockHeader(is_final_block bool, length uint, bw *bitWriter) {\n\tvar lenbits uint64\n\tvar nlenbits uint\n\tvar nibblesbits uint64\n\tvar is_final uint64\n\tif is_final_block {\n\t\tis_final = 1\n\t} else {\n\t\tis_final = 0\n\t}\n\n\t/* Write ISLAST bit. */\n\tbw.writeBits(1, is_final)\n\n\t/* Write ISEMPTY bit. */\n\tif is_final_block {\n\t\tbw.writeBits(1, 0)\n\t}\n\n\tencodeMlen(length, &lenbits, &nlenbits, &nibblesbits)\n\tbw.writeBits(2, nibblesbits)\n\tbw.writeBits(nlenbits, lenbits)\n\n\tif !is_final_block {\n\t\t/* Write ISUNCOMPRESSED bit. */\n\t\tbw.writeBits(1, 0)\n\t}\n}\n\n/* Stores the uncompressed meta-block header.\n   REQUIRES: length > 0\n   REQUIRES: length <= (1 << 24) */\nfunc storeUncompressedMetaBlockHeader(length uint, bw *bitWriter) {\n\tvar lenbits uint64\n\tvar nlenbits uint\n\tvar nibblesbits uint64\n\n\t/* Write ISLAST bit.\n\t   Uncompressed block cannot be the last one, so set to 0. */\n\tbw.writeBits(1, 0)\n\n\tencodeMlen(length, &lenbits, &nlenbits, &nibblesbits)\n\tbw.writeBits(2, nibblesbits)\n\tbw.writeBits(nlenbits, lenbits)\n\n\t/* Write ISUNCOMPRESSED bit. */\n\tbw.writeBits(1, 1)\n}\n\nvar storeHuffmanTreeOfHuffmanTreeToBitMask_kStorageOrder = [codeLengthCodes]byte{1, 2, 3, 4, 0, 5, 17, 6, 16, 7, 8, 9, 10, 11, 12, 13, 14, 15}\n\nvar storeHuffmanTreeOfHuffmanTreeToBitMask_kHuffmanBitLengthHuffmanCodeSymbols = [6]byte{0, 7, 3, 2, 1, 15}\nvar storeHuffmanTreeOfHuffmanTreeToBitMask_kHuffmanBitLengthHuffmanCodeBitLengths = [6]byte{2, 4, 3, 2, 2, 4}\n\nfunc storeHuffmanTreeOfHuffmanTreeToBitMask(num_codes int, code_length_bitdepth []byte, bw *bitWriter) {\n\tvar skip_some uint = 0\n\tvar codes_to_store uint = codeLengthCodes\n\t/* The bit lengths of the Huffman code over the code length alphabet\n\t   are compressed with the following static Huffman code:\n\t     Symbol   Code\n\t     ------   ----\n\t     0          00\n\t     1        1110\n\t     2         110\n\t     3          01\n\t     4          10\n\t     5        1111 */\n\n\t/* Throw away trailing zeros: */\n\tif num_codes > 1 {\n\t\tfor ; codes_to_store > 0; codes_to_store-- {\n\t\t\tif code_length_bitdepth[storeHuffmanTreeOfHuffmanTreeToBitMask_kStorageOrder[codes_to_store-1]] != 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\tif code_length_bitdepth[storeHuffmanTreeOfHuffmanTreeToBitMask_kStorageOrder[0]] == 0 && code_length_bitdepth[storeHuffmanTreeOfHuffmanTreeToBitMask_kStorageOrder[1]] == 0 {\n\t\tskip_some = 2 /* skips two. */\n\t\tif code_length_bitdepth[storeHuffmanTreeOfHuffmanTreeToBitMask_kStorageOrder[2]] == 0 {\n\t\t\tskip_some = 3 /* skips three. */\n\t\t}\n\t}\n\n\tbw.writeBits(2, uint64(skip_some))\n\t{\n\t\tvar i uint\n\t\tfor i = skip_some; i < codes_to_store; i++ {\n\t\t\tvar l uint = uint(code_length_bitdepth[storeHuffmanTreeOfHuffmanTreeToBitMask_kStorageOrder[i]])\n\t\t\tbw.writeBits(uint(storeHuffmanTreeOfHuffmanTreeToBitMask_kHuffmanBitLengthHuffmanCodeBitLengths[l]), uint64(storeHuffmanTreeOfHuffmanTreeToBitMask_kHuffmanBitLengthHuffmanCodeSymbols[l]))\n\t\t}\n\t}\n}\n\nfunc storeHuffmanTreeToBitMask(huffman_tree_size uint, huffman_tree []byte, huffman_tree_extra_bits []byte, code_length_bitdepth []byte, code_length_bitdepth_symbols []uint16, bw *bitWriter) {\n\tvar i uint\n\tfor i = 0; i < huffman_tree_size; i++ {\n\t\tvar ix uint = uint(huffman_tree[i])\n\t\tbw.writeBits(uint(code_length_bitdepth[ix]), uint64(code_length_bitdepth_symbols[ix]))\n\n\t\t/* Extra bits */\n\t\tswitch ix {\n\t\tcase repeatPreviousCodeLength:\n\t\t\tbw.writeBits(2, uint64(huffman_tree_extra_bits[i]))\n\n\t\tcase repeatZeroCodeLength:\n\t\t\tbw.writeBits(3, uint64(huffman_tree_extra_bits[i]))\n\t\t}\n\t}\n}\n\nfunc storeSimpleHuffmanTree(depths []byte, symbols []uint, num_symbols uint, max_bits uint, bw *bitWriter) {\n\t/* value of 1 indicates a simple Huffman code */\n\tbw.writeBits(2, 1)\n\n\tbw.writeBits(2, uint64(num_symbols)-1) /* NSYM - 1 */\n\t{\n\t\t/* Sort */\n\t\tvar i uint\n\t\tfor i = 0; i < num_symbols; i++ {\n\t\t\tvar j uint\n\t\t\tfor j = i + 1; j < num_symbols; j++ {\n\t\t\t\tif depths[symbols[j]] < depths[symbols[i]] {\n\t\t\t\t\tvar tmp uint = symbols[j]\n\t\t\t\t\tsymbols[j] = symbols[i]\n\t\t\t\t\tsymbols[i] = tmp\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif num_symbols == 2 {\n\t\tbw.writeBits(max_bits, uint64(symbols[0]))\n\t\tbw.writeBits(max_bits, uint64(symbols[1]))\n\t} else if num_symbols == 3 {\n\t\tbw.writeBits(max_bits, uint64(symbols[0]))\n\t\tbw.writeBits(max_bits, uint64(symbols[1]))\n\t\tbw.writeBits(max_bits, uint64(symbols[2]))\n\t} else {\n\t\tbw.writeBits(max_bits, uint64(symbols[0]))\n\t\tbw.writeBits(max_bits, uint64(symbols[1]))\n\t\tbw.writeBits(max_bits, uint64(symbols[2]))\n\t\tbw.writeBits(max_bits, uint64(symbols[3]))\n\n\t\t/* tree-select */\n\t\tvar tmp int\n\t\tif depths[symbols[0]] == 1 {\n\t\t\ttmp = 1\n\t\t} else {\n\t\t\ttmp = 0\n\t\t}\n\t\tbw.writeBits(1, uint64(tmp))\n\t}\n}\n\n/* num = alphabet size\n   depths = symbol depths */\nfunc storeHuffmanTree(depths []byte, num uint, tree []huffmanTree, bw *bitWriter) {\n\tvar huffman_tree [numCommandSymbols]byte\n\tvar huffman_tree_extra_bits [numCommandSymbols]byte\n\tvar huffman_tree_size uint = 0\n\tvar code_length_bitdepth = [codeLengthCodes]byte{0}\n\tvar code_length_bitdepth_symbols [codeLengthCodes]uint16\n\tvar huffman_tree_histogram = [codeLengthCodes]uint32{0}\n\tvar i uint\n\tvar num_codes int = 0\n\t/* Write the Huffman tree into the brotli-representation.\n\t   The command alphabet is the largest, so this allocation will fit all\n\t   alphabets. */\n\n\tvar code uint = 0\n\n\tassert(num <= numCommandSymbols)\n\n\twriteHuffmanTree(depths, num, &huffman_tree_size, huffman_tree[:], huffman_tree_extra_bits[:])\n\n\t/* Calculate the statistics of the Huffman tree in brotli-representation. */\n\tfor i = 0; i < huffman_tree_size; i++ {\n\t\thuffman_tree_histogram[huffman_tree[i]]++\n\t}\n\n\tfor i = 0; i < codeLengthCodes; i++ {\n\t\tif huffman_tree_histogram[i] != 0 {\n\t\t\tif num_codes == 0 {\n\t\t\t\tcode = i\n\t\t\t\tnum_codes = 1\n\t\t\t} else if num_codes == 1 {\n\t\t\t\tnum_codes = 2\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\t/* Calculate another Huffman tree to use for compressing both the\n\t   earlier Huffman tree with. */\n\tcreateHuffmanTree(huffman_tree_histogram[:], codeLengthCodes, 5, tree, code_length_bitdepth[:])\n\n\tconvertBitDepthsToSymbols(code_length_bitdepth[:], codeLengthCodes, code_length_bitdepth_symbols[:])\n\n\t/* Now, we have all the data, let's start storing it */\n\tstoreHuffmanTreeOfHuffmanTreeToBitMask(num_codes, code_length_bitdepth[:], bw)\n\n\tif num_codes == 1 {\n\t\tcode_length_bitdepth[code] = 0\n\t}\n\n\t/* Store the real Huffman tree now. */\n\tstoreHuffmanTreeToBitMask(huffman_tree_size, huffman_tree[:], huffman_tree_extra_bits[:], code_length_bitdepth[:], code_length_bitdepth_symbols[:], bw)\n}\n\n/* Builds a Huffman tree from histogram[0:length] into depth[0:length] and\n   bits[0:length] and stores the encoded tree to the bit stream. */\nfunc buildAndStoreHuffmanTree(histogram []uint32, histogram_length uint, alphabet_size uint, tree []huffmanTree, depth []byte, bits []uint16, bw *bitWriter) {\n\tvar count uint = 0\n\tvar s4 = [4]uint{0}\n\tvar i uint\n\tvar max_bits uint = 0\n\tfor i = 0; i < histogram_length; i++ {\n\t\tif histogram[i] != 0 {\n\t\t\tif count < 4 {\n\t\t\t\ts4[count] = i\n\t\t\t} else if count > 4 {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tcount++\n\t\t}\n\t}\n\t{\n\t\tvar max_bits_counter uint = alphabet_size - 1\n\t\tfor max_bits_counter != 0 {\n\t\t\tmax_bits_counter >>= 1\n\t\t\tmax_bits++\n\t\t}\n\t}\n\n\tif count <= 1 {\n\t\tbw.writeBits(4, 1)\n\t\tbw.writeBits(max_bits, uint64(s4[0]))\n\t\tdepth[s4[0]] = 0\n\t\tbits[s4[0]] = 0\n\t\treturn\n\t}\n\n\tfor i := 0; i < int(histogram_length); i++ {\n\t\tdepth[i] = 0\n\t}\n\tcreateHuffmanTree(histogram, histogram_length, 15, tree, depth)\n\tconvertBitDepthsToSymbols(depth, histogram_length, bits)\n\n\tif count <= 4 {\n\t\tstoreSimpleHuffmanTree(depth, s4[:], count, max_bits, bw)\n\t} else {\n\t\tstoreHuffmanTree(depth, histogram_length, tree, bw)\n\t}\n}\n\nfunc sortHuffmanTree1(v0 huffmanTree, v1 huffmanTree) bool {\n\treturn v0.total_count_ < v1.total_count_\n}\n\nvar huffmanTreePool sync.Pool\n\nfunc buildAndStoreHuffmanTreeFast(histogram []uint32, histogram_total uint, max_bits uint, depth []byte, bits []uint16, bw *bitWriter) {\n\tvar count uint = 0\n\tvar symbols = [4]uint{0}\n\tvar length uint = 0\n\tvar total uint = histogram_total\n\tfor total != 0 {\n\t\tif histogram[length] != 0 {\n\t\t\tif count < 4 {\n\t\t\t\tsymbols[count] = length\n\t\t\t}\n\n\t\t\tcount++\n\t\t\ttotal -= uint(histogram[length])\n\t\t}\n\n\t\tlength++\n\t}\n\n\tif count <= 1 {\n\t\tbw.writeBits(4, 1)\n\t\tbw.writeBits(max_bits, uint64(symbols[0]))\n\t\tdepth[symbols[0]] = 0\n\t\tbits[symbols[0]] = 0\n\t\treturn\n\t}\n\n\tfor i := 0; i < int(length); i++ {\n\t\tdepth[i] = 0\n\t}\n\t{\n\t\tvar max_tree_size uint = 2*length + 1\n\t\ttree, _ := huffmanTreePool.Get().(*[]huffmanTree)\n\t\tif tree == nil || cap(*tree) < int(max_tree_size) {\n\t\t\ttmp := make([]huffmanTree, max_tree_size)\n\t\t\ttree = &tmp\n\t\t} else {\n\t\t\t*tree = (*tree)[:max_tree_size]\n\t\t}\n\t\tvar count_limit uint32\n\t\tfor count_limit = 1; ; count_limit *= 2 {\n\t\t\tvar node int = 0\n\t\t\tvar l uint\n\t\t\tfor l = length; l != 0; {\n\t\t\t\tl--\n\t\t\t\tif histogram[l] != 0 {\n\t\t\t\t\tif histogram[l] >= count_limit {\n\t\t\t\t\t\tinitHuffmanTree(&(*tree)[node:][0], histogram[l], -1, int16(l))\n\t\t\t\t\t} else {\n\t\t\t\t\t\tinitHuffmanTree(&(*tree)[node:][0], count_limit, -1, int16(l))\n\t\t\t\t\t}\n\n\t\t\t\t\tnode++\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tvar n int = node\n\t\t\t\t/* Points to the next leaf node. */ /* Points to the next non-leaf node. */\n\t\t\t\tvar sentinel huffmanTree\n\t\t\t\tvar i int = 0\n\t\t\t\tvar j int = n + 1\n\t\t\t\tvar k int\n\n\t\t\t\tsortHuffmanTreeItems(*tree, uint(n), huffmanTreeComparator(sortHuffmanTree1))\n\n\t\t\t\t/* The nodes are:\n\t\t\t\t   [0, n): the sorted leaf nodes that we start with.\n\t\t\t\t   [n]: we add a sentinel here.\n\t\t\t\t   [n + 1, 2n): new parent nodes are added here, starting from\n\t\t\t\t                (n+1). These are naturally in ascending order.\n\t\t\t\t   [2n]: we add a sentinel at the end as well.\n\t\t\t\t   There will be (2n+1) elements at the end. */\n\t\t\t\tinitHuffmanTree(&sentinel, math.MaxUint32, -1, -1)\n\n\t\t\t\t(*tree)[node] = sentinel\n\t\t\t\tnode++\n\t\t\t\t(*tree)[node] = sentinel\n\t\t\t\tnode++\n\n\t\t\t\tfor k = n - 1; k > 0; k-- {\n\t\t\t\t\tvar left int\n\t\t\t\t\tvar right int\n\t\t\t\t\tif (*tree)[i].total_count_ <= (*tree)[j].total_count_ {\n\t\t\t\t\t\tleft = i\n\t\t\t\t\t\ti++\n\t\t\t\t\t} else {\n\t\t\t\t\t\tleft = j\n\t\t\t\t\t\tj++\n\t\t\t\t\t}\n\n\t\t\t\t\tif (*tree)[i].total_count_ <= (*tree)[j].total_count_ {\n\t\t\t\t\t\tright = i\n\t\t\t\t\t\ti++\n\t\t\t\t\t} else {\n\t\t\t\t\t\tright = j\n\t\t\t\t\t\tj++\n\t\t\t\t\t}\n\n\t\t\t\t\t/* The sentinel node becomes the parent node. */\n\t\t\t\t\t(*tree)[node-1].total_count_ = (*tree)[left].total_count_ + (*tree)[right].total_count_\n\n\t\t\t\t\t(*tree)[node-1].index_left_ = int16(left)\n\t\t\t\t\t(*tree)[node-1].index_right_or_value_ = int16(right)\n\n\t\t\t\t\t/* Add back the last sentinel node. */\n\t\t\t\t\t(*tree)[node] = sentinel\n\t\t\t\t\tnode++\n\t\t\t\t}\n\n\t\t\t\tif setDepth(2*n-1, *tree, depth, 14) {\n\t\t\t\t\t/* We need to pack the Huffman tree in 14 bits. If this was not\n\t\t\t\t\t   successful, add fake entities to the lowest values and retry. */\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\thuffmanTreePool.Put(tree)\n\t}\n\n\tconvertBitDepthsToSymbols(depth, length, bits)\n\tif count <= 4 {\n\t\tvar i uint\n\n\t\t/* value of 1 indicates a simple Huffman code */\n\t\tbw.writeBits(2, 1)\n\n\t\tbw.writeBits(2, uint64(count)-1) /* NSYM - 1 */\n\n\t\t/* Sort */\n\t\tfor i = 0; i < count; i++ {\n\t\t\tvar j uint\n\t\t\tfor j = i + 1; j < count; j++ {\n\t\t\t\tif depth[symbols[j]] < depth[symbols[i]] {\n\t\t\t\t\tvar tmp uint = symbols[j]\n\t\t\t\t\tsymbols[j] = symbols[i]\n\t\t\t\t\tsymbols[i] = tmp\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif count == 2 {\n\t\t\tbw.writeBits(max_bits, uint64(symbols[0]))\n\t\t\tbw.writeBits(max_bits, uint64(symbols[1]))\n\t\t} else if count == 3 {\n\t\t\tbw.writeBits(max_bits, uint64(symbols[0]))\n\t\t\tbw.writeBits(max_bits, uint64(symbols[1]))\n\t\t\tbw.writeBits(max_bits, uint64(symbols[2]))\n\t\t} else {\n\t\t\tbw.writeBits(max_bits, uint64(symbols[0]))\n\t\t\tbw.writeBits(max_bits, uint64(symbols[1]))\n\t\t\tbw.writeBits(max_bits, uint64(symbols[2]))\n\t\t\tbw.writeBits(max_bits, uint64(symbols[3]))\n\n\t\t\t/* tree-select */\n\t\t\tbw.writeSingleBit(depth[symbols[0]] == 1)\n\t\t}\n\t} else {\n\t\tvar previous_value byte = 8\n\t\tvar i uint\n\n\t\t/* Complex Huffman Tree */\n\t\tstoreStaticCodeLengthCode(bw)\n\n\t\t/* Actual RLE coding. */\n\t\tfor i = 0; i < length; {\n\t\t\tvar value byte = depth[i]\n\t\t\tvar reps uint = 1\n\t\t\tvar k uint\n\t\t\tfor k = i + 1; k < length && depth[k] == value; k++ {\n\t\t\t\treps++\n\t\t\t}\n\n\t\t\ti += reps\n\t\t\tif value == 0 {\n\t\t\t\tbw.writeBits(uint(kZeroRepsDepth[reps]), kZeroRepsBits[reps])\n\t\t\t} else {\n\t\t\t\tif previous_value != value {\n\t\t\t\t\tbw.writeBits(uint(kCodeLengthDepth[value]), uint64(kCodeLengthBits[value]))\n\t\t\t\t\treps--\n\t\t\t\t}\n\n\t\t\t\tif reps < 3 {\n\t\t\t\t\tfor reps != 0 {\n\t\t\t\t\t\treps--\n\t\t\t\t\t\tbw.writeBits(uint(kCodeLengthDepth[value]), uint64(kCodeLengthBits[value]))\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\treps -= 3\n\t\t\t\t\tbw.writeBits(uint(kNonZeroRepsDepth[reps]), kNonZeroRepsBits[reps])\n\t\t\t\t}\n\n\t\t\t\tprevious_value = value\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc indexOf(v []byte, v_size uint, value byte) uint {\n\tvar i uint = 0\n\tfor ; i < v_size; i++ {\n\t\tif v[i] == value {\n\t\t\treturn i\n\t\t}\n\t}\n\n\treturn i\n}\n\nfunc moveToFront(v []byte, index uint) {\n\tvar value byte = v[index]\n\tvar i uint\n\tfor i = index; i != 0; i-- {\n\t\tv[i] = v[i-1]\n\t}\n\n\tv[0] = value\n}\n\nfunc moveToFrontTransform(v_in []uint32, v_size uint, v_out []uint32) {\n\tvar i uint\n\tvar mtf [256]byte\n\tvar max_value uint32\n\tif v_size == 0 {\n\t\treturn\n\t}\n\n\tmax_value = v_in[0]\n\tfor i = 1; i < v_size; i++ {\n\t\tif v_in[i] > max_value {\n\t\t\tmax_value = v_in[i]\n\t\t}\n\t}\n\n\tassert(max_value < 256)\n\tfor i = 0; uint32(i) <= max_value; i++ {\n\t\tmtf[i] = byte(i)\n\t}\n\t{\n\t\tvar mtf_size uint = uint(max_value + 1)\n\t\tfor i = 0; i < v_size; i++ {\n\t\t\tvar index uint = indexOf(mtf[:], mtf_size, byte(v_in[i]))\n\t\t\tassert(index < mtf_size)\n\t\t\tv_out[i] = uint32(index)\n\t\t\tmoveToFront(mtf[:], index)\n\t\t}\n\t}\n}\n\n/* Finds runs of zeros in v[0..in_size) and replaces them with a prefix code of\n   the run length plus extra bits (lower 9 bits is the prefix code and the rest\n   are the extra bits). Non-zero values in v[] are shifted by\n   *max_length_prefix. Will not create prefix codes bigger than the initial\n   value of *max_run_length_prefix. The prefix code of run length L is simply\n   Log2Floor(L) and the number of extra bits is the same as the prefix code. */\nfunc runLengthCodeZeros(in_size uint, v []uint32, out_size *uint, max_run_length_prefix *uint32) {\n\tvar max_reps uint32 = 0\n\tvar i uint\n\tvar max_prefix uint32\n\tfor i = 0; i < in_size; {\n\t\tvar reps uint32 = 0\n\t\tfor ; i < in_size && v[i] != 0; i++ {\n\t\t}\n\t\tfor ; i < in_size && v[i] == 0; i++ {\n\t\t\treps++\n\t\t}\n\n\t\tmax_reps = brotli_max_uint32_t(reps, max_reps)\n\t}\n\n\tif max_reps > 0 {\n\t\tmax_prefix = log2FloorNonZero(uint(max_reps))\n\t} else {\n\t\tmax_prefix = 0\n\t}\n\tmax_prefix = brotli_min_uint32_t(max_prefix, *max_run_length_prefix)\n\t*max_run_length_prefix = max_prefix\n\t*out_size = 0\n\tfor i = 0; i < in_size; {\n\t\tassert(*out_size <= i)\n\t\tif v[i] != 0 {\n\t\t\tv[*out_size] = v[i] + *max_run_length_prefix\n\t\t\ti++\n\t\t\t(*out_size)++\n\t\t} else {\n\t\t\tvar reps uint32 = 1\n\t\t\tvar k uint\n\t\t\tfor k = i + 1; k < in_size && v[k] == 0; k++ {\n\t\t\t\treps++\n\t\t\t}\n\n\t\t\ti += uint(reps)\n\t\t\tfor reps != 0 {\n\t\t\t\tif reps < 2<<max_prefix {\n\t\t\t\t\tvar run_length_prefix uint32 = log2FloorNonZero(uint(reps))\n\t\t\t\t\tvar extra_bits uint32 = reps - (1 << run_length_prefix)\n\t\t\t\t\tv[*out_size] = run_length_prefix + (extra_bits << 9)\n\t\t\t\t\t(*out_size)++\n\t\t\t\t\tbreak\n\t\t\t\t} else {\n\t\t\t\t\tvar extra_bits uint32 = (1 << max_prefix) - 1\n\t\t\t\t\tv[*out_size] = max_prefix + (extra_bits << 9)\n\t\t\t\t\treps -= (2 << max_prefix) - 1\n\t\t\t\t\t(*out_size)++\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nconst symbolBits = 9\n\nvar encodeContextMap_kSymbolMask uint32 = (1 << symbolBits) - 1\n\nfunc encodeContextMap(context_map []uint32, context_map_size uint, num_clusters uint, tree []huffmanTree, bw *bitWriter) {\n\tvar i uint\n\tvar rle_symbols []uint32\n\tvar max_run_length_prefix uint32 = 6\n\tvar num_rle_symbols uint = 0\n\tvar histogram [maxContextMapSymbols]uint32\n\tvar depths [maxContextMapSymbols]byte\n\tvar bits [maxContextMapSymbols]uint16\n\n\tstoreVarLenUint8(num_clusters-1, bw)\n\n\tif num_clusters == 1 {\n\t\treturn\n\t}\n\n\trle_symbols = make([]uint32, context_map_size)\n\tmoveToFrontTransform(context_map, context_map_size, rle_symbols)\n\trunLengthCodeZeros(context_map_size, rle_symbols, &num_rle_symbols, &max_run_length_prefix)\n\thistogram = [maxContextMapSymbols]uint32{}\n\tfor i = 0; i < num_rle_symbols; i++ {\n\t\thistogram[rle_symbols[i]&encodeContextMap_kSymbolMask]++\n\t}\n\t{\n\t\tvar use_rle bool = (max_run_length_prefix > 0)\n\t\tbw.writeSingleBit(use_rle)\n\t\tif use_rle {\n\t\t\tbw.writeBits(4, uint64(max_run_length_prefix)-1)\n\t\t}\n\t}\n\n\tbuildAndStoreHuffmanTree(histogram[:], uint(uint32(num_clusters)+max_run_length_prefix), uint(uint32(num_clusters)+max_run_length_prefix), tree, depths[:], bits[:], bw)\n\tfor i = 0; i < num_rle_symbols; i++ {\n\t\tvar rle_symbol uint32 = rle_symbols[i] & encodeContextMap_kSymbolMask\n\t\tvar extra_bits_val uint32 = rle_symbols[i] >> symbolBits\n\t\tbw.writeBits(uint(depths[rle_symbol]), uint64(bits[rle_symbol]))\n\t\tif rle_symbol > 0 && rle_symbol <= max_run_length_prefix {\n\t\t\tbw.writeBits(uint(rle_symbol), uint64(extra_bits_val))\n\t\t}\n\t}\n\n\tbw.writeBits(1, 1) /* use move-to-front */\n\trle_symbols = nil\n}\n\n/* Stores the block switch command with index block_ix to the bit stream. */\nfunc storeBlockSwitch(code *blockSplitCode, block_len uint32, block_type byte, is_first_block bool, bw *bitWriter) {\n\tvar typecode uint = nextBlockTypeCode(&code.type_code_calculator, block_type)\n\tvar lencode uint\n\tvar len_nextra uint32\n\tvar len_extra uint32\n\tif !is_first_block {\n\t\tbw.writeBits(uint(code.type_depths[typecode]), uint64(code.type_bits[typecode]))\n\t}\n\n\tgetBlockLengthPrefixCode(block_len, &lencode, &len_nextra, &len_extra)\n\n\tbw.writeBits(uint(code.length_depths[lencode]), uint64(code.length_bits[lencode]))\n\tbw.writeBits(uint(len_nextra), uint64(len_extra))\n}\n\n/* Builds a BlockSplitCode data structure from the block split given by the\n   vector of block types and block lengths and stores it to the bit stream. */\nfunc buildAndStoreBlockSplitCode(types []byte, lengths []uint32, num_blocks uint, num_types uint, tree []huffmanTree, code *blockSplitCode, bw *bitWriter) {\n\tvar type_histo [maxBlockTypeSymbols]uint32\n\tvar length_histo [numBlockLenSymbols]uint32\n\tvar i uint\n\tvar type_code_calculator blockTypeCodeCalculator\n\tfor i := 0; i < int(num_types+2); i++ {\n\t\ttype_histo[i] = 0\n\t}\n\tlength_histo = [numBlockLenSymbols]uint32{}\n\tinitBlockTypeCodeCalculator(&type_code_calculator)\n\tfor i = 0; i < num_blocks; i++ {\n\t\tvar type_code uint = nextBlockTypeCode(&type_code_calculator, types[i])\n\t\tif i != 0 {\n\t\t\ttype_histo[type_code]++\n\t\t}\n\t\tlength_histo[blockLengthPrefixCode(lengths[i])]++\n\t}\n\n\tstoreVarLenUint8(num_types-1, bw)\n\tif num_types > 1 { /* TODO: else? could StoreBlockSwitch occur? */\n\t\tbuildAndStoreHuffmanTree(type_histo[0:], num_types+2, num_types+2, tree, code.type_depths[0:], code.type_bits[0:], bw)\n\t\tbuildAndStoreHuffmanTree(length_histo[0:], numBlockLenSymbols, numBlockLenSymbols, tree, code.length_depths[0:], code.length_bits[0:], bw)\n\t\tstoreBlockSwitch(code, lengths[0], types[0], true, bw)\n\t}\n}\n\n/* Stores a context map where the histogram type is always the block type. */\nfunc storeTrivialContextMap(num_types uint, context_bits uint, tree []huffmanTree, bw *bitWriter) {\n\tstoreVarLenUint8(num_types-1, bw)\n\tif num_types > 1 {\n\t\tvar repeat_code uint = context_bits - 1\n\t\tvar repeat_bits uint = (1 << repeat_code) - 1\n\t\tvar alphabet_size uint = num_types + repeat_code\n\t\tvar histogram [maxContextMapSymbols]uint32\n\t\tvar depths [maxContextMapSymbols]byte\n\t\tvar bits [maxContextMapSymbols]uint16\n\t\tvar i uint\n\t\tfor i := 0; i < int(alphabet_size); i++ {\n\t\t\thistogram[i] = 0\n\t\t}\n\n\t\t/* Write RLEMAX. */\n\t\tbw.writeBits(1, 1)\n\n\t\tbw.writeBits(4, uint64(repeat_code)-1)\n\t\thistogram[repeat_code] = uint32(num_types)\n\t\thistogram[0] = 1\n\t\tfor i = context_bits; i < alphabet_size; i++ {\n\t\t\thistogram[i] = 1\n\t\t}\n\n\t\tbuildAndStoreHuffmanTree(histogram[:], alphabet_size, alphabet_size, tree, depths[:], bits[:], bw)\n\t\tfor i = 0; i < num_types; i++ {\n\t\t\tvar tmp uint\n\t\t\tif i == 0 {\n\t\t\t\ttmp = 0\n\t\t\t} else {\n\t\t\t\ttmp = i + context_bits - 1\n\t\t\t}\n\t\t\tvar code uint = tmp\n\t\t\tbw.writeBits(uint(depths[code]), uint64(bits[code]))\n\t\t\tbw.writeBits(uint(depths[repeat_code]), uint64(bits[repeat_code]))\n\t\t\tbw.writeBits(repeat_code, uint64(repeat_bits))\n\t\t}\n\n\t\t/* Write IMTF (inverse-move-to-front) bit. */\n\t\tbw.writeBits(1, 1)\n\t}\n}\n\n/* Manages the encoding of one block category (literal, command or distance). */\ntype blockEncoder struct {\n\thistogram_length_ uint\n\tnum_block_types_  uint\n\tblock_types_      []byte\n\tblock_lengths_    []uint32\n\tnum_blocks_       uint\n\tblock_split_code_ blockSplitCode\n\tblock_ix_         uint\n\tblock_len_        uint\n\tentropy_ix_       uint\n\tdepths_           []byte\n\tbits_             []uint16\n}\n\nvar blockEncoderPool sync.Pool\n\nfunc getBlockEncoder(histogram_length uint, num_block_types uint, block_types []byte, block_lengths []uint32, num_blocks uint) *blockEncoder {\n\tself, _ := blockEncoderPool.Get().(*blockEncoder)\n\n\tif self != nil {\n\t\tself.block_ix_ = 0\n\t\tself.entropy_ix_ = 0\n\t\tself.depths_ = self.depths_[:0]\n\t\tself.bits_ = self.bits_[:0]\n\t} else {\n\t\tself = &blockEncoder{}\n\t}\n\n\tself.histogram_length_ = histogram_length\n\tself.num_block_types_ = num_block_types\n\tself.block_types_ = block_types\n\tself.block_lengths_ = block_lengths\n\tself.num_blocks_ = num_blocks\n\tinitBlockTypeCodeCalculator(&self.block_split_code_.type_code_calculator)\n\tif num_blocks == 0 {\n\t\tself.block_len_ = 0\n\t} else {\n\t\tself.block_len_ = uint(block_lengths[0])\n\t}\n\n\treturn self\n}\n\nfunc cleanupBlockEncoder(self *blockEncoder) {\n\tblockEncoderPool.Put(self)\n}\n\n/* Creates entropy codes of block lengths and block types and stores them\n   to the bit stream. */\nfunc buildAndStoreBlockSwitchEntropyCodes(self *blockEncoder, tree []huffmanTree, bw *bitWriter) {\n\tbuildAndStoreBlockSplitCode(self.block_types_, self.block_lengths_, self.num_blocks_, self.num_block_types_, tree, &self.block_split_code_, bw)\n}\n\n/* Stores the next symbol with the entropy code of the current block type.\n   Updates the block type and block length at block boundaries. */\nfunc storeSymbol(self *blockEncoder, symbol uint, bw *bitWriter) {\n\tif self.block_len_ == 0 {\n\t\tself.block_ix_++\n\t\tvar block_ix uint = self.block_ix_\n\t\tvar block_len uint32 = self.block_lengths_[block_ix]\n\t\tvar block_type byte = self.block_types_[block_ix]\n\t\tself.block_len_ = uint(block_len)\n\t\tself.entropy_ix_ = uint(block_type) * self.histogram_length_\n\t\tstoreBlockSwitch(&self.block_split_code_, block_len, block_type, false, bw)\n\t}\n\n\tself.block_len_--\n\t{\n\t\tvar ix uint = self.entropy_ix_ + symbol\n\t\tbw.writeBits(uint(self.depths_[ix]), uint64(self.bits_[ix]))\n\t}\n}\n\n/* Stores the next symbol with the entropy code of the current block type and\n   context value.\n   Updates the block type and block length at block boundaries. */\nfunc storeSymbolWithContext(self *blockEncoder, symbol uint, context uint, context_map []uint32, bw *bitWriter, context_bits uint) {\n\tif self.block_len_ == 0 {\n\t\tself.block_ix_++\n\t\tvar block_ix uint = self.block_ix_\n\t\tvar block_len uint32 = self.block_lengths_[block_ix]\n\t\tvar block_type byte = self.block_types_[block_ix]\n\t\tself.block_len_ = uint(block_len)\n\t\tself.entropy_ix_ = uint(block_type) << context_bits\n\t\tstoreBlockSwitch(&self.block_split_code_, block_len, block_type, false, bw)\n\t}\n\n\tself.block_len_--\n\t{\n\t\tvar histo_ix uint = uint(context_map[self.entropy_ix_+context])\n\t\tvar ix uint = histo_ix*self.histogram_length_ + symbol\n\t\tbw.writeBits(uint(self.depths_[ix]), uint64(self.bits_[ix]))\n\t}\n}\n\nfunc buildAndStoreEntropyCodesLiteral(self *blockEncoder, histograms []histogramLiteral, histograms_size uint, alphabet_size uint, tree []huffmanTree, bw *bitWriter) {\n\tvar table_size uint = histograms_size * self.histogram_length_\n\tif cap(self.depths_) < int(table_size) {\n\t\tself.depths_ = make([]byte, table_size)\n\t} else {\n\t\tself.depths_ = self.depths_[:table_size]\n\t}\n\tif cap(self.bits_) < int(table_size) {\n\t\tself.bits_ = make([]uint16, table_size)\n\t} else {\n\t\tself.bits_ = self.bits_[:table_size]\n\t}\n\t{\n\t\tvar i uint\n\t\tfor i = 0; i < histograms_size; i++ {\n\t\t\tvar ix uint = i * self.histogram_length_\n\t\t\tbuildAndStoreHuffmanTree(histograms[i].data_[0:], self.histogram_length_, alphabet_size, tree, self.depths_[ix:], self.bits_[ix:], bw)\n\t\t}\n\t}\n}\n\nfunc buildAndStoreEntropyCodesCommand(self *blockEncoder, histograms []histogramCommand, histograms_size uint, alphabet_size uint, tree []huffmanTree, bw *bitWriter) {\n\tvar table_size uint = histograms_size * self.histogram_length_\n\tif cap(self.depths_) < int(table_size) {\n\t\tself.depths_ = make([]byte, table_size)\n\t} else {\n\t\tself.depths_ = self.depths_[:table_size]\n\t}\n\tif cap(self.bits_) < int(table_size) {\n\t\tself.bits_ = make([]uint16, table_size)\n\t} else {\n\t\tself.bits_ = self.bits_[:table_size]\n\t}\n\t{\n\t\tvar i uint\n\t\tfor i = 0; i < histograms_size; i++ {\n\t\t\tvar ix uint = i * self.histogram_length_\n\t\t\tbuildAndStoreHuffmanTree(histograms[i].data_[0:], self.histogram_length_, alphabet_size, tree, self.depths_[ix:], self.bits_[ix:], bw)\n\t\t}\n\t}\n}\n\nfunc buildAndStoreEntropyCodesDistance(self *blockEncoder, histograms []histogramDistance, histograms_size uint, alphabet_size uint, tree []huffmanTree, bw *bitWriter) {\n\tvar table_size uint = histograms_size * self.histogram_length_\n\tif cap(self.depths_) < int(table_size) {\n\t\tself.depths_ = make([]byte, table_size)\n\t} else {\n\t\tself.depths_ = self.depths_[:table_size]\n\t}\n\tif cap(self.bits_) < int(table_size) {\n\t\tself.bits_ = make([]uint16, table_size)\n\t} else {\n\t\tself.bits_ = self.bits_[:table_size]\n\t}\n\t{\n\t\tvar i uint\n\t\tfor i = 0; i < histograms_size; i++ {\n\t\t\tvar ix uint = i * self.histogram_length_\n\t\t\tbuildAndStoreHuffmanTree(histograms[i].data_[0:], self.histogram_length_, alphabet_size, tree, self.depths_[ix:], self.bits_[ix:], bw)\n\t\t}\n\t}\n}\n\nfunc storeMetaBlock(input []byte, start_pos uint, length uint, mask uint, prev_byte byte, prev_byte2 byte, is_last bool, params *encoderParams, literal_context_mode int, commands []command, mb *metaBlockSplit, bw *bitWriter) {\n\tvar pos uint = start_pos\n\tvar i uint\n\tvar num_distance_symbols uint32 = params.dist.alphabet_size\n\tvar num_effective_distance_symbols uint32 = num_distance_symbols\n\tvar tree []huffmanTree\n\tvar literal_context_lut contextLUT = getContextLUT(literal_context_mode)\n\tvar dist *distanceParams = &params.dist\n\tif params.large_window && num_effective_distance_symbols > numHistogramDistanceSymbols {\n\t\tnum_effective_distance_symbols = numHistogramDistanceSymbols\n\t}\n\n\tstoreCompressedMetaBlockHeader(is_last, length, bw)\n\n\ttree = make([]huffmanTree, maxHuffmanTreeSize)\n\tliteral_enc := getBlockEncoder(numLiteralSymbols, mb.literal_split.num_types, mb.literal_split.types, mb.literal_split.lengths, mb.literal_split.num_blocks)\n\tcommand_enc := getBlockEncoder(numCommandSymbols, mb.command_split.num_types, mb.command_split.types, mb.command_split.lengths, mb.command_split.num_blocks)\n\tdistance_enc := getBlockEncoder(uint(num_effective_distance_symbols), mb.distance_split.num_types, mb.distance_split.types, mb.distance_split.lengths, mb.distance_split.num_blocks)\n\n\tbuildAndStoreBlockSwitchEntropyCodes(literal_enc, tree, bw)\n\tbuildAndStoreBlockSwitchEntropyCodes(command_enc, tree, bw)\n\tbuildAndStoreBlockSwitchEntropyCodes(distance_enc, tree, bw)\n\n\tbw.writeBits(2, uint64(dist.distance_postfix_bits))\n\tbw.writeBits(4, uint64(dist.num_direct_distance_codes)>>dist.distance_postfix_bits)\n\tfor i = 0; i < mb.literal_split.num_types; i++ {\n\t\tbw.writeBits(2, uint64(literal_context_mode))\n\t}\n\n\tif mb.literal_context_map_size == 0 {\n\t\tstoreTrivialContextMap(mb.literal_histograms_size, literalContextBits, tree, bw)\n\t} else {\n\t\tencodeContextMap(mb.literal_context_map, mb.literal_context_map_size, mb.literal_histograms_size, tree, bw)\n\t}\n\n\tif mb.distance_context_map_size == 0 {\n\t\tstoreTrivialContextMap(mb.distance_histograms_size, distanceContextBits, tree, bw)\n\t} else {\n\t\tencodeContextMap(mb.distance_context_map, mb.distance_context_map_size, mb.distance_histograms_size, tree, bw)\n\t}\n\n\tbuildAndStoreEntropyCodesLiteral(literal_enc, mb.literal_histograms, mb.literal_histograms_size, numLiteralSymbols, tree, bw)\n\tbuildAndStoreEntropyCodesCommand(command_enc, mb.command_histograms, mb.command_histograms_size, numCommandSymbols, tree, bw)\n\tbuildAndStoreEntropyCodesDistance(distance_enc, mb.distance_histograms, mb.distance_histograms_size, uint(num_distance_symbols), tree, bw)\n\ttree = nil\n\n\tfor _, cmd := range commands {\n\t\tvar cmd_code uint = uint(cmd.cmd_prefix_)\n\t\tstoreSymbol(command_enc, cmd_code, bw)\n\t\tstoreCommandExtra(&cmd, bw)\n\t\tif mb.literal_context_map_size == 0 {\n\t\t\tvar j uint\n\t\t\tfor j = uint(cmd.insert_len_); j != 0; j-- {\n\t\t\t\tstoreSymbol(literal_enc, uint(input[pos&mask]), bw)\n\t\t\t\tpos++\n\t\t\t}\n\t\t} else {\n\t\t\tvar j uint\n\t\t\tfor j = uint(cmd.insert_len_); j != 0; j-- {\n\t\t\t\tvar context uint = uint(getContext(prev_byte, prev_byte2, literal_context_lut))\n\t\t\t\tvar literal byte = input[pos&mask]\n\t\t\t\tstoreSymbolWithContext(literal_enc, uint(literal), context, mb.literal_context_map, bw, literalContextBits)\n\t\t\t\tprev_byte2 = prev_byte\n\t\t\t\tprev_byte = literal\n\t\t\t\tpos++\n\t\t\t}\n\t\t}\n\n\t\tpos += uint(commandCopyLen(&cmd))\n\t\tif commandCopyLen(&cmd) != 0 {\n\t\t\tprev_byte2 = input[(pos-2)&mask]\n\t\t\tprev_byte = input[(pos-1)&mask]\n\t\t\tif cmd.cmd_prefix_ >= 128 {\n\t\t\t\tvar dist_code uint = uint(cmd.dist_prefix_) & 0x3FF\n\t\t\t\tvar distnumextra uint32 = uint32(cmd.dist_prefix_) >> 10\n\t\t\t\tvar distextra uint64 = uint64(cmd.dist_extra_)\n\t\t\t\tif mb.distance_context_map_size == 0 {\n\t\t\t\t\tstoreSymbol(distance_enc, dist_code, bw)\n\t\t\t\t} else {\n\t\t\t\t\tvar context uint = uint(commandDistanceContext(&cmd))\n\t\t\t\t\tstoreSymbolWithContext(distance_enc, dist_code, context, mb.distance_context_map, bw, distanceContextBits)\n\t\t\t\t}\n\n\t\t\t\tbw.writeBits(uint(distnumextra), distextra)\n\t\t\t}\n\t\t}\n\t}\n\n\tcleanupBlockEncoder(distance_enc)\n\tcleanupBlockEncoder(command_enc)\n\tcleanupBlockEncoder(literal_enc)\n\tif is_last {\n\t\tbw.jumpToByteBoundary()\n\t}\n}\n\nfunc buildHistograms(input []byte, start_pos uint, mask uint, commands []command, lit_histo *histogramLiteral, cmd_histo *histogramCommand, dist_histo *histogramDistance) {\n\tvar pos uint = start_pos\n\tfor _, cmd := range commands {\n\t\tvar j uint\n\t\thistogramAddCommand(cmd_histo, uint(cmd.cmd_prefix_))\n\t\tfor j = uint(cmd.insert_len_); j != 0; j-- {\n\t\t\thistogramAddLiteral(lit_histo, uint(input[pos&mask]))\n\t\t\tpos++\n\t\t}\n\n\t\tpos += uint(commandCopyLen(&cmd))\n\t\tif commandCopyLen(&cmd) != 0 && cmd.cmd_prefix_ >= 128 {\n\t\t\thistogramAddDistance(dist_histo, uint(cmd.dist_prefix_)&0x3FF)\n\t\t}\n\t}\n}\n\nfunc storeDataWithHuffmanCodes(input []byte, start_pos uint, mask uint, commands []command, lit_depth []byte, lit_bits []uint16, cmd_depth []byte, cmd_bits []uint16, dist_depth []byte, dist_bits []uint16, bw *bitWriter) {\n\tvar pos uint = start_pos\n\tfor _, cmd := range commands {\n\t\tvar cmd_code uint = uint(cmd.cmd_prefix_)\n\t\tvar j uint\n\t\tbw.writeBits(uint(cmd_depth[cmd_code]), uint64(cmd_bits[cmd_code]))\n\t\tstoreCommandExtra(&cmd, bw)\n\t\tfor j = uint(cmd.insert_len_); j != 0; j-- {\n\t\t\tvar literal byte = input[pos&mask]\n\t\t\tbw.writeBits(uint(lit_depth[literal]), uint64(lit_bits[literal]))\n\t\t\tpos++\n\t\t}\n\n\t\tpos += uint(commandCopyLen(&cmd))\n\t\tif commandCopyLen(&cmd) != 0 && cmd.cmd_prefix_ >= 128 {\n\t\t\tvar dist_code uint = uint(cmd.dist_prefix_) & 0x3FF\n\t\t\tvar distnumextra uint32 = uint32(cmd.dist_prefix_) >> 10\n\t\t\tvar distextra uint32 = cmd.dist_extra_\n\t\t\tbw.writeBits(uint(dist_depth[dist_code]), uint64(dist_bits[dist_code]))\n\t\t\tbw.writeBits(uint(distnumextra), uint64(distextra))\n\t\t}\n\t}\n}\n\nfunc storeMetaBlockTrivial(input []byte, start_pos uint, length uint, mask uint, is_last bool, params *encoderParams, commands []command, bw *bitWriter) {\n\tvar lit_histo histogramLiteral\n\tvar cmd_histo histogramCommand\n\tvar dist_histo histogramDistance\n\tvar lit_depth [numLiteralSymbols]byte\n\tvar lit_bits [numLiteralSymbols]uint16\n\tvar cmd_depth [numCommandSymbols]byte\n\tvar cmd_bits [numCommandSymbols]uint16\n\tvar dist_depth [maxSimpleDistanceAlphabetSize]byte\n\tvar dist_bits [maxSimpleDistanceAlphabetSize]uint16\n\tvar tree []huffmanTree\n\tvar num_distance_symbols uint32 = params.dist.alphabet_size\n\n\tstoreCompressedMetaBlockHeader(is_last, length, bw)\n\n\thistogramClearLiteral(&lit_histo)\n\thistogramClearCommand(&cmd_histo)\n\thistogramClearDistance(&dist_histo)\n\n\tbuildHistograms(input, start_pos, mask, commands, &lit_histo, &cmd_histo, &dist_histo)\n\n\tbw.writeBits(13, 0)\n\n\ttree = make([]huffmanTree, maxHuffmanTreeSize)\n\tbuildAndStoreHuffmanTree(lit_histo.data_[:], numLiteralSymbols, numLiteralSymbols, tree, lit_depth[:], lit_bits[:], bw)\n\tbuildAndStoreHuffmanTree(cmd_histo.data_[:], numCommandSymbols, numCommandSymbols, tree, cmd_depth[:], cmd_bits[:], bw)\n\tbuildAndStoreHuffmanTree(dist_histo.data_[:], maxSimpleDistanceAlphabetSize, uint(num_distance_symbols), tree, dist_depth[:], dist_bits[:], bw)\n\ttree = nil\n\tstoreDataWithHuffmanCodes(input, start_pos, mask, commands, lit_depth[:], lit_bits[:], cmd_depth[:], cmd_bits[:], dist_depth[:], dist_bits[:], bw)\n\tif is_last {\n\t\tbw.jumpToByteBoundary()\n\t}\n}\n\nfunc storeMetaBlockFast(input []byte, start_pos uint, length uint, mask uint, is_last bool, params *encoderParams, commands []command, bw *bitWriter) {\n\tvar num_distance_symbols uint32 = params.dist.alphabet_size\n\tvar distance_alphabet_bits uint32 = log2FloorNonZero(uint(num_distance_symbols-1)) + 1\n\n\tstoreCompressedMetaBlockHeader(is_last, length, bw)\n\n\tbw.writeBits(13, 0)\n\n\tif len(commands) <= 128 {\n\t\tvar histogram = [numLiteralSymbols]uint32{0}\n\t\tvar pos uint = start_pos\n\t\tvar num_literals uint = 0\n\t\tvar lit_depth [numLiteralSymbols]byte\n\t\tvar lit_bits [numLiteralSymbols]uint16\n\t\tfor _, cmd := range commands {\n\t\t\tvar j uint\n\t\t\tfor j = uint(cmd.insert_len_); j != 0; j-- {\n\t\t\t\thistogram[input[pos&mask]]++\n\t\t\t\tpos++\n\t\t\t}\n\n\t\t\tnum_literals += uint(cmd.insert_len_)\n\t\t\tpos += uint(commandCopyLen(&cmd))\n\t\t}\n\n\t\tbuildAndStoreHuffmanTreeFast(histogram[:], num_literals, /* max_bits = */\n\t\t\t8, lit_depth[:], lit_bits[:], bw)\n\n\t\tstoreStaticCommandHuffmanTree(bw)\n\t\tstoreStaticDistanceHuffmanTree(bw)\n\t\tstoreDataWithHuffmanCodes(input, start_pos, mask, commands, lit_depth[:], lit_bits[:], kStaticCommandCodeDepth[:], kStaticCommandCodeBits[:], kStaticDistanceCodeDepth[:], kStaticDistanceCodeBits[:], bw)\n\t} else {\n\t\tvar lit_histo histogramLiteral\n\t\tvar cmd_histo histogramCommand\n\t\tvar dist_histo histogramDistance\n\t\tvar lit_depth [numLiteralSymbols]byte\n\t\tvar lit_bits [numLiteralSymbols]uint16\n\t\tvar cmd_depth [numCommandSymbols]byte\n\t\tvar cmd_bits [numCommandSymbols]uint16\n\t\tvar dist_depth [maxSimpleDistanceAlphabetSize]byte\n\t\tvar dist_bits [maxSimpleDistanceAlphabetSize]uint16\n\t\thistogramClearLiteral(&lit_histo)\n\t\thistogramClearCommand(&cmd_histo)\n\t\thistogramClearDistance(&dist_histo)\n\t\tbuildHistograms(input, start_pos, mask, commands, &lit_histo, &cmd_histo, &dist_histo)\n\t\tbuildAndStoreHuffmanTreeFast(lit_histo.data_[:], lit_histo.total_count_, /* max_bits = */\n\t\t\t8, lit_depth[:], lit_bits[:], bw)\n\n\t\tbuildAndStoreHuffmanTreeFast(cmd_histo.data_[:], cmd_histo.total_count_, /* max_bits = */\n\t\t\t10, cmd_depth[:], cmd_bits[:], bw)\n\n\t\tbuildAndStoreHuffmanTreeFast(dist_histo.data_[:], dist_histo.total_count_, /* max_bits = */\n\t\t\tuint(distance_alphabet_bits), dist_depth[:], dist_bits[:], bw)\n\n\t\tstoreDataWithHuffmanCodes(input, start_pos, mask, commands, lit_depth[:], lit_bits[:], cmd_depth[:], cmd_bits[:], dist_depth[:], dist_bits[:], bw)\n\t}\n\n\tif is_last {\n\t\tbw.jumpToByteBoundary()\n\t}\n}\n\n/* This is for storing uncompressed blocks (simple raw storage of\n   bytes-as-bytes). */\nfunc storeUncompressedMetaBlock(is_final_block bool, input []byte, position uint, mask uint, len uint, bw *bitWriter) {\n\tvar masked_pos uint = position & mask\n\tstoreUncompressedMetaBlockHeader(uint(len), bw)\n\tbw.jumpToByteBoundary()\n\n\tif masked_pos+len > mask+1 {\n\t\tvar len1 uint = mask + 1 - masked_pos\n\t\tbw.writeBytes(input[masked_pos:][:len1])\n\t\tlen -= len1\n\t\tmasked_pos = 0\n\t}\n\n\tbw.writeBytes(input[masked_pos:][:len])\n\n\t/* Since the uncompressed block itself may not be the final block, add an\n\t   empty one after this. */\n\tif is_final_block {\n\t\tbw.writeBits(1, 1) /* islast */\n\t\tbw.writeBits(1, 1) /* isempty */\n\t\tbw.jumpToByteBoundary()\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/cluster.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Functions for clustering similar histograms together. */\n\ntype histogramPair struct {\n\tidx1       uint32\n\tidx2       uint32\n\tcost_combo float64\n\tcost_diff  float64\n}\n\nfunc histogramPairIsLess(p1 *histogramPair, p2 *histogramPair) bool {\n\tif p1.cost_diff != p2.cost_diff {\n\t\treturn p1.cost_diff > p2.cost_diff\n\t}\n\n\treturn (p1.idx2 - p1.idx1) > (p2.idx2 - p2.idx1)\n}\n\n/* Returns entropy reduction of the context map when we combine two clusters. */\nfunc clusterCostDiff(size_a uint, size_b uint) float64 {\n\tvar size_c uint = size_a + size_b\n\treturn float64(size_a)*fastLog2(size_a) + float64(size_b)*fastLog2(size_b) - float64(size_c)*fastLog2(size_c)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/cluster_command.go",
    "content": "package brotli\n\nimport \"math\"\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Computes the bit cost reduction by combining out[idx1] and out[idx2] and if\n   it is below a threshold, stores the pair (idx1, idx2) in the *pairs queue. */\nfunc compareAndPushToQueueCommand(out []histogramCommand, cluster_size []uint32, idx1 uint32, idx2 uint32, max_num_pairs uint, pairs []histogramPair, num_pairs *uint) {\n\tvar is_good_pair bool = false\n\tvar p histogramPair\n\tp.idx2 = 0\n\tp.idx1 = p.idx2\n\tp.cost_combo = 0\n\tp.cost_diff = p.cost_combo\n\tif idx1 == idx2 {\n\t\treturn\n\t}\n\n\tif idx2 < idx1 {\n\t\tvar t uint32 = idx2\n\t\tidx2 = idx1\n\t\tidx1 = t\n\t}\n\n\tp.idx1 = idx1\n\tp.idx2 = idx2\n\tp.cost_diff = 0.5 * clusterCostDiff(uint(cluster_size[idx1]), uint(cluster_size[idx2]))\n\tp.cost_diff -= out[idx1].bit_cost_\n\tp.cost_diff -= out[idx2].bit_cost_\n\n\tif out[idx1].total_count_ == 0 {\n\t\tp.cost_combo = out[idx2].bit_cost_\n\t\tis_good_pair = true\n\t} else if out[idx2].total_count_ == 0 {\n\t\tp.cost_combo = out[idx1].bit_cost_\n\t\tis_good_pair = true\n\t} else {\n\t\tvar threshold float64\n\t\tif *num_pairs == 0 {\n\t\t\tthreshold = 1e99\n\t\t} else {\n\t\t\tthreshold = brotli_max_double(0.0, pairs[0].cost_diff)\n\t\t}\n\t\tvar combo histogramCommand = out[idx1]\n\t\tvar cost_combo float64\n\t\thistogramAddHistogramCommand(&combo, &out[idx2])\n\t\tcost_combo = populationCostCommand(&combo)\n\t\tif cost_combo < threshold-p.cost_diff {\n\t\t\tp.cost_combo = cost_combo\n\t\t\tis_good_pair = true\n\t\t}\n\t}\n\n\tif is_good_pair {\n\t\tp.cost_diff += p.cost_combo\n\t\tif *num_pairs > 0 && histogramPairIsLess(&pairs[0], &p) {\n\t\t\t/* Replace the top of the queue if needed. */\n\t\t\tif *num_pairs < max_num_pairs {\n\t\t\t\tpairs[*num_pairs] = pairs[0]\n\t\t\t\t(*num_pairs)++\n\t\t\t}\n\n\t\t\tpairs[0] = p\n\t\t} else if *num_pairs < max_num_pairs {\n\t\t\tpairs[*num_pairs] = p\n\t\t\t(*num_pairs)++\n\t\t}\n\t}\n}\n\nfunc histogramCombineCommand(out []histogramCommand, cluster_size []uint32, symbols []uint32, clusters []uint32, pairs []histogramPair, num_clusters uint, symbols_size uint, max_clusters uint, max_num_pairs uint) uint {\n\tvar cost_diff_threshold float64 = 0.0\n\tvar min_cluster_size uint = 1\n\tvar num_pairs uint = 0\n\t{\n\t\t/* We maintain a vector of histogram pairs, with the property that the pair\n\t\t   with the maximum bit cost reduction is the first. */\n\t\tvar idx1 uint\n\t\tfor idx1 = 0; idx1 < num_clusters; idx1++ {\n\t\t\tvar idx2 uint\n\t\t\tfor idx2 = idx1 + 1; idx2 < num_clusters; idx2++ {\n\t\t\t\tcompareAndPushToQueueCommand(out, cluster_size, clusters[idx1], clusters[idx2], max_num_pairs, pairs[0:], &num_pairs)\n\t\t\t}\n\t\t}\n\t}\n\n\tfor num_clusters > min_cluster_size {\n\t\tvar best_idx1 uint32\n\t\tvar best_idx2 uint32\n\t\tvar i uint\n\t\tif pairs[0].cost_diff >= cost_diff_threshold {\n\t\t\tcost_diff_threshold = 1e99\n\t\t\tmin_cluster_size = max_clusters\n\t\t\tcontinue\n\t\t}\n\n\t\t/* Take the best pair from the top of heap. */\n\t\tbest_idx1 = pairs[0].idx1\n\n\t\tbest_idx2 = pairs[0].idx2\n\t\thistogramAddHistogramCommand(&out[best_idx1], &out[best_idx2])\n\t\tout[best_idx1].bit_cost_ = pairs[0].cost_combo\n\t\tcluster_size[best_idx1] += cluster_size[best_idx2]\n\t\tfor i = 0; i < symbols_size; i++ {\n\t\t\tif symbols[i] == best_idx2 {\n\t\t\t\tsymbols[i] = best_idx1\n\t\t\t}\n\t\t}\n\n\t\tfor i = 0; i < num_clusters; i++ {\n\t\t\tif clusters[i] == best_idx2 {\n\t\t\t\tcopy(clusters[i:], clusters[i+1:][:num_clusters-i-1])\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tnum_clusters--\n\t\t{\n\t\t\t/* Remove pairs intersecting the just combined best pair. */\n\t\t\tvar copy_to_idx uint = 0\n\t\t\tfor i = 0; i < num_pairs; i++ {\n\t\t\t\tvar p *histogramPair = &pairs[i]\n\t\t\t\tif p.idx1 == best_idx1 || p.idx2 == best_idx1 || p.idx1 == best_idx2 || p.idx2 == best_idx2 {\n\t\t\t\t\t/* Remove invalid pair from the queue. */\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tif histogramPairIsLess(&pairs[0], p) {\n\t\t\t\t\t/* Replace the top of the queue if needed. */\n\t\t\t\t\tvar front histogramPair = pairs[0]\n\t\t\t\t\tpairs[0] = *p\n\t\t\t\t\tpairs[copy_to_idx] = front\n\t\t\t\t} else {\n\t\t\t\t\tpairs[copy_to_idx] = *p\n\t\t\t\t}\n\n\t\t\t\tcopy_to_idx++\n\t\t\t}\n\n\t\t\tnum_pairs = copy_to_idx\n\t\t}\n\n\t\t/* Push new pairs formed with the combined histogram to the heap. */\n\t\tfor i = 0; i < num_clusters; i++ {\n\t\t\tcompareAndPushToQueueCommand(out, cluster_size, best_idx1, clusters[i], max_num_pairs, pairs[0:], &num_pairs)\n\t\t}\n\t}\n\n\treturn num_clusters\n}\n\n/* What is the bit cost of moving histogram from cur_symbol to candidate. */\nfunc histogramBitCostDistanceCommand(histogram *histogramCommand, candidate *histogramCommand) float64 {\n\tif histogram.total_count_ == 0 {\n\t\treturn 0.0\n\t} else {\n\t\tvar tmp histogramCommand = *histogram\n\t\thistogramAddHistogramCommand(&tmp, candidate)\n\t\treturn populationCostCommand(&tmp) - candidate.bit_cost_\n\t}\n}\n\n/* Find the best 'out' histogram for each of the 'in' histograms.\n   When called, clusters[0..num_clusters) contains the unique values from\n   symbols[0..in_size), but this property is not preserved in this function.\n   Note: we assume that out[]->bit_cost_ is already up-to-date. */\nfunc histogramRemapCommand(in []histogramCommand, in_size uint, clusters []uint32, num_clusters uint, out []histogramCommand, symbols []uint32) {\n\tvar i uint\n\tfor i = 0; i < in_size; i++ {\n\t\tvar best_out uint32\n\t\tif i == 0 {\n\t\t\tbest_out = symbols[0]\n\t\t} else {\n\t\t\tbest_out = symbols[i-1]\n\t\t}\n\t\tvar best_bits float64 = histogramBitCostDistanceCommand(&in[i], &out[best_out])\n\t\tvar j uint\n\t\tfor j = 0; j < num_clusters; j++ {\n\t\t\tvar cur_bits float64 = histogramBitCostDistanceCommand(&in[i], &out[clusters[j]])\n\t\t\tif cur_bits < best_bits {\n\t\t\t\tbest_bits = cur_bits\n\t\t\t\tbest_out = clusters[j]\n\t\t\t}\n\t\t}\n\n\t\tsymbols[i] = best_out\n\t}\n\n\t/* Recompute each out based on raw and symbols. */\n\tfor i = 0; i < num_clusters; i++ {\n\t\thistogramClearCommand(&out[clusters[i]])\n\t}\n\n\tfor i = 0; i < in_size; i++ {\n\t\thistogramAddHistogramCommand(&out[symbols[i]], &in[i])\n\t}\n}\n\n/* Reorders elements of the out[0..length) array and changes values in\n   symbols[0..length) array in the following way:\n     * when called, symbols[] contains indexes into out[], and has N unique\n       values (possibly N < length)\n     * on return, symbols'[i] = f(symbols[i]) and\n                  out'[symbols'[i]] = out[symbols[i]], for each 0 <= i < length,\n       where f is a bijection between the range of symbols[] and [0..N), and\n       the first occurrences of values in symbols'[i] come in consecutive\n       increasing order.\n   Returns N, the number of unique values in symbols[]. */\n\nvar histogramReindexCommand_kInvalidIndex uint32 = math.MaxUint32\n\nfunc histogramReindexCommand(out []histogramCommand, symbols []uint32, length uint) uint {\n\tvar new_index []uint32 = make([]uint32, length)\n\tvar next_index uint32\n\tvar tmp []histogramCommand\n\tvar i uint\n\tfor i = 0; i < length; i++ {\n\t\tnew_index[i] = histogramReindexCommand_kInvalidIndex\n\t}\n\n\tnext_index = 0\n\tfor i = 0; i < length; i++ {\n\t\tif new_index[symbols[i]] == histogramReindexCommand_kInvalidIndex {\n\t\t\tnew_index[symbols[i]] = next_index\n\t\t\tnext_index++\n\t\t}\n\t}\n\n\t/* TODO: by using idea of \"cycle-sort\" we can avoid allocation of\n\t   tmp and reduce the number of copying by the factor of 2. */\n\ttmp = make([]histogramCommand, next_index)\n\n\tnext_index = 0\n\tfor i = 0; i < length; i++ {\n\t\tif new_index[symbols[i]] == next_index {\n\t\t\ttmp[next_index] = out[symbols[i]]\n\t\t\tnext_index++\n\t\t}\n\n\t\tsymbols[i] = new_index[symbols[i]]\n\t}\n\n\tnew_index = nil\n\tfor i = 0; uint32(i) < next_index; i++ {\n\t\tout[i] = tmp[i]\n\t}\n\n\ttmp = nil\n\treturn uint(next_index)\n}\n\nfunc clusterHistogramsCommand(in []histogramCommand, in_size uint, max_histograms uint, out []histogramCommand, out_size *uint, histogram_symbols []uint32) {\n\tvar cluster_size []uint32 = make([]uint32, in_size)\n\tvar clusters []uint32 = make([]uint32, in_size)\n\tvar num_clusters uint = 0\n\tvar max_input_histograms uint = 64\n\tvar pairs_capacity uint = max_input_histograms * max_input_histograms / 2\n\tvar pairs []histogramPair = make([]histogramPair, (pairs_capacity + 1))\n\tvar i uint\n\n\t/* For the first pass of clustering, we allow all pairs. */\n\tfor i = 0; i < in_size; i++ {\n\t\tcluster_size[i] = 1\n\t}\n\n\tfor i = 0; i < in_size; i++ {\n\t\tout[i] = in[i]\n\t\tout[i].bit_cost_ = populationCostCommand(&in[i])\n\t\thistogram_symbols[i] = uint32(i)\n\t}\n\n\tfor i = 0; i < in_size; i += max_input_histograms {\n\t\tvar num_to_combine uint = brotli_min_size_t(in_size-i, max_input_histograms)\n\t\tvar num_new_clusters uint\n\t\tvar j uint\n\t\tfor j = 0; j < num_to_combine; j++ {\n\t\t\tclusters[num_clusters+j] = uint32(i + j)\n\t\t}\n\n\t\tnum_new_clusters = histogramCombineCommand(out, cluster_size, histogram_symbols[i:], clusters[num_clusters:], pairs, num_to_combine, num_to_combine, max_histograms, pairs_capacity)\n\t\tnum_clusters += num_new_clusters\n\t}\n\t{\n\t\t/* For the second pass, we limit the total number of histogram pairs.\n\t\t   After this limit is reached, we only keep searching for the best pair. */\n\t\tvar max_num_pairs uint = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)\n\t\tif pairs_capacity < (max_num_pairs + 1) {\n\t\t\tvar _new_size uint\n\t\t\tif pairs_capacity == 0 {\n\t\t\t\t_new_size = max_num_pairs + 1\n\t\t\t} else {\n\t\t\t\t_new_size = pairs_capacity\n\t\t\t}\n\t\t\tvar new_array []histogramPair\n\t\t\tfor _new_size < (max_num_pairs + 1) {\n\t\t\t\t_new_size *= 2\n\t\t\t}\n\t\t\tnew_array = make([]histogramPair, _new_size)\n\t\t\tif pairs_capacity != 0 {\n\t\t\t\tcopy(new_array, pairs[:pairs_capacity])\n\t\t\t}\n\n\t\t\tpairs = new_array\n\t\t\tpairs_capacity = _new_size\n\t\t}\n\n\t\t/* Collapse similar histograms. */\n\t\tnum_clusters = histogramCombineCommand(out, cluster_size, histogram_symbols, clusters, pairs, num_clusters, in_size, max_histograms, max_num_pairs)\n\t}\n\n\tpairs = nil\n\tcluster_size = nil\n\n\t/* Find the optimal map from original histograms to the final ones. */\n\thistogramRemapCommand(in, in_size, clusters, num_clusters, out, histogram_symbols)\n\n\tclusters = nil\n\n\t/* Convert the context map to a canonical form. */\n\t*out_size = histogramReindexCommand(out, histogram_symbols, in_size)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/cluster_distance.go",
    "content": "package brotli\n\nimport \"math\"\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Computes the bit cost reduction by combining out[idx1] and out[idx2] and if\n   it is below a threshold, stores the pair (idx1, idx2) in the *pairs queue. */\nfunc compareAndPushToQueueDistance(out []histogramDistance, cluster_size []uint32, idx1 uint32, idx2 uint32, max_num_pairs uint, pairs []histogramPair, num_pairs *uint) {\n\tvar is_good_pair bool = false\n\tvar p histogramPair\n\tp.idx2 = 0\n\tp.idx1 = p.idx2\n\tp.cost_combo = 0\n\tp.cost_diff = p.cost_combo\n\tif idx1 == idx2 {\n\t\treturn\n\t}\n\n\tif idx2 < idx1 {\n\t\tvar t uint32 = idx2\n\t\tidx2 = idx1\n\t\tidx1 = t\n\t}\n\n\tp.idx1 = idx1\n\tp.idx2 = idx2\n\tp.cost_diff = 0.5 * clusterCostDiff(uint(cluster_size[idx1]), uint(cluster_size[idx2]))\n\tp.cost_diff -= out[idx1].bit_cost_\n\tp.cost_diff -= out[idx2].bit_cost_\n\n\tif out[idx1].total_count_ == 0 {\n\t\tp.cost_combo = out[idx2].bit_cost_\n\t\tis_good_pair = true\n\t} else if out[idx2].total_count_ == 0 {\n\t\tp.cost_combo = out[idx1].bit_cost_\n\t\tis_good_pair = true\n\t} else {\n\t\tvar threshold float64\n\t\tif *num_pairs == 0 {\n\t\t\tthreshold = 1e99\n\t\t} else {\n\t\t\tthreshold = brotli_max_double(0.0, pairs[0].cost_diff)\n\t\t}\n\t\tvar combo histogramDistance = out[idx1]\n\t\tvar cost_combo float64\n\t\thistogramAddHistogramDistance(&combo, &out[idx2])\n\t\tcost_combo = populationCostDistance(&combo)\n\t\tif cost_combo < threshold-p.cost_diff {\n\t\t\tp.cost_combo = cost_combo\n\t\t\tis_good_pair = true\n\t\t}\n\t}\n\n\tif is_good_pair {\n\t\tp.cost_diff += p.cost_combo\n\t\tif *num_pairs > 0 && histogramPairIsLess(&pairs[0], &p) {\n\t\t\t/* Replace the top of the queue if needed. */\n\t\t\tif *num_pairs < max_num_pairs {\n\t\t\t\tpairs[*num_pairs] = pairs[0]\n\t\t\t\t(*num_pairs)++\n\t\t\t}\n\n\t\t\tpairs[0] = p\n\t\t} else if *num_pairs < max_num_pairs {\n\t\t\tpairs[*num_pairs] = p\n\t\t\t(*num_pairs)++\n\t\t}\n\t}\n}\n\nfunc histogramCombineDistance(out []histogramDistance, cluster_size []uint32, symbols []uint32, clusters []uint32, pairs []histogramPair, num_clusters uint, symbols_size uint, max_clusters uint, max_num_pairs uint) uint {\n\tvar cost_diff_threshold float64 = 0.0\n\tvar min_cluster_size uint = 1\n\tvar num_pairs uint = 0\n\t{\n\t\t/* We maintain a vector of histogram pairs, with the property that the pair\n\t\t   with the maximum bit cost reduction is the first. */\n\t\tvar idx1 uint\n\t\tfor idx1 = 0; idx1 < num_clusters; idx1++ {\n\t\t\tvar idx2 uint\n\t\t\tfor idx2 = idx1 + 1; idx2 < num_clusters; idx2++ {\n\t\t\t\tcompareAndPushToQueueDistance(out, cluster_size, clusters[idx1], clusters[idx2], max_num_pairs, pairs[0:], &num_pairs)\n\t\t\t}\n\t\t}\n\t}\n\n\tfor num_clusters > min_cluster_size {\n\t\tvar best_idx1 uint32\n\t\tvar best_idx2 uint32\n\t\tvar i uint\n\t\tif pairs[0].cost_diff >= cost_diff_threshold {\n\t\t\tcost_diff_threshold = 1e99\n\t\t\tmin_cluster_size = max_clusters\n\t\t\tcontinue\n\t\t}\n\n\t\t/* Take the best pair from the top of heap. */\n\t\tbest_idx1 = pairs[0].idx1\n\n\t\tbest_idx2 = pairs[0].idx2\n\t\thistogramAddHistogramDistance(&out[best_idx1], &out[best_idx2])\n\t\tout[best_idx1].bit_cost_ = pairs[0].cost_combo\n\t\tcluster_size[best_idx1] += cluster_size[best_idx2]\n\t\tfor i = 0; i < symbols_size; i++ {\n\t\t\tif symbols[i] == best_idx2 {\n\t\t\t\tsymbols[i] = best_idx1\n\t\t\t}\n\t\t}\n\n\t\tfor i = 0; i < num_clusters; i++ {\n\t\t\tif clusters[i] == best_idx2 {\n\t\t\t\tcopy(clusters[i:], clusters[i+1:][:num_clusters-i-1])\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tnum_clusters--\n\t\t{\n\t\t\t/* Remove pairs intersecting the just combined best pair. */\n\t\t\tvar copy_to_idx uint = 0\n\t\t\tfor i = 0; i < num_pairs; i++ {\n\t\t\t\tvar p *histogramPair = &pairs[i]\n\t\t\t\tif p.idx1 == best_idx1 || p.idx2 == best_idx1 || p.idx1 == best_idx2 || p.idx2 == best_idx2 {\n\t\t\t\t\t/* Remove invalid pair from the queue. */\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tif histogramPairIsLess(&pairs[0], p) {\n\t\t\t\t\t/* Replace the top of the queue if needed. */\n\t\t\t\t\tvar front histogramPair = pairs[0]\n\t\t\t\t\tpairs[0] = *p\n\t\t\t\t\tpairs[copy_to_idx] = front\n\t\t\t\t} else {\n\t\t\t\t\tpairs[copy_to_idx] = *p\n\t\t\t\t}\n\n\t\t\t\tcopy_to_idx++\n\t\t\t}\n\n\t\t\tnum_pairs = copy_to_idx\n\t\t}\n\n\t\t/* Push new pairs formed with the combined histogram to the heap. */\n\t\tfor i = 0; i < num_clusters; i++ {\n\t\t\tcompareAndPushToQueueDistance(out, cluster_size, best_idx1, clusters[i], max_num_pairs, pairs[0:], &num_pairs)\n\t\t}\n\t}\n\n\treturn num_clusters\n}\n\n/* What is the bit cost of moving histogram from cur_symbol to candidate. */\nfunc histogramBitCostDistanceDistance(histogram *histogramDistance, candidate *histogramDistance) float64 {\n\tif histogram.total_count_ == 0 {\n\t\treturn 0.0\n\t} else {\n\t\tvar tmp histogramDistance = *histogram\n\t\thistogramAddHistogramDistance(&tmp, candidate)\n\t\treturn populationCostDistance(&tmp) - candidate.bit_cost_\n\t}\n}\n\n/* Find the best 'out' histogram for each of the 'in' histograms.\n   When called, clusters[0..num_clusters) contains the unique values from\n   symbols[0..in_size), but this property is not preserved in this function.\n   Note: we assume that out[]->bit_cost_ is already up-to-date. */\nfunc histogramRemapDistance(in []histogramDistance, in_size uint, clusters []uint32, num_clusters uint, out []histogramDistance, symbols []uint32) {\n\tvar i uint\n\tfor i = 0; i < in_size; i++ {\n\t\tvar best_out uint32\n\t\tif i == 0 {\n\t\t\tbest_out = symbols[0]\n\t\t} else {\n\t\t\tbest_out = symbols[i-1]\n\t\t}\n\t\tvar best_bits float64 = histogramBitCostDistanceDistance(&in[i], &out[best_out])\n\t\tvar j uint\n\t\tfor j = 0; j < num_clusters; j++ {\n\t\t\tvar cur_bits float64 = histogramBitCostDistanceDistance(&in[i], &out[clusters[j]])\n\t\t\tif cur_bits < best_bits {\n\t\t\t\tbest_bits = cur_bits\n\t\t\t\tbest_out = clusters[j]\n\t\t\t}\n\t\t}\n\n\t\tsymbols[i] = best_out\n\t}\n\n\t/* Recompute each out based on raw and symbols. */\n\tfor i = 0; i < num_clusters; i++ {\n\t\thistogramClearDistance(&out[clusters[i]])\n\t}\n\n\tfor i = 0; i < in_size; i++ {\n\t\thistogramAddHistogramDistance(&out[symbols[i]], &in[i])\n\t}\n}\n\n/* Reorders elements of the out[0..length) array and changes values in\n   symbols[0..length) array in the following way:\n     * when called, symbols[] contains indexes into out[], and has N unique\n       values (possibly N < length)\n     * on return, symbols'[i] = f(symbols[i]) and\n                  out'[symbols'[i]] = out[symbols[i]], for each 0 <= i < length,\n       where f is a bijection between the range of symbols[] and [0..N), and\n       the first occurrences of values in symbols'[i] come in consecutive\n       increasing order.\n   Returns N, the number of unique values in symbols[]. */\n\nvar histogramReindexDistance_kInvalidIndex uint32 = math.MaxUint32\n\nfunc histogramReindexDistance(out []histogramDistance, symbols []uint32, length uint) uint {\n\tvar new_index []uint32 = make([]uint32, length)\n\tvar next_index uint32\n\tvar tmp []histogramDistance\n\tvar i uint\n\tfor i = 0; i < length; i++ {\n\t\tnew_index[i] = histogramReindexDistance_kInvalidIndex\n\t}\n\n\tnext_index = 0\n\tfor i = 0; i < length; i++ {\n\t\tif new_index[symbols[i]] == histogramReindexDistance_kInvalidIndex {\n\t\t\tnew_index[symbols[i]] = next_index\n\t\t\tnext_index++\n\t\t}\n\t}\n\n\t/* TODO: by using idea of \"cycle-sort\" we can avoid allocation of\n\t   tmp and reduce the number of copying by the factor of 2. */\n\ttmp = make([]histogramDistance, next_index)\n\n\tnext_index = 0\n\tfor i = 0; i < length; i++ {\n\t\tif new_index[symbols[i]] == next_index {\n\t\t\ttmp[next_index] = out[symbols[i]]\n\t\t\tnext_index++\n\t\t}\n\n\t\tsymbols[i] = new_index[symbols[i]]\n\t}\n\n\tnew_index = nil\n\tfor i = 0; uint32(i) < next_index; i++ {\n\t\tout[i] = tmp[i]\n\t}\n\n\ttmp = nil\n\treturn uint(next_index)\n}\n\nfunc clusterHistogramsDistance(in []histogramDistance, in_size uint, max_histograms uint, out []histogramDistance, out_size *uint, histogram_symbols []uint32) {\n\tvar cluster_size []uint32 = make([]uint32, in_size)\n\tvar clusters []uint32 = make([]uint32, in_size)\n\tvar num_clusters uint = 0\n\tvar max_input_histograms uint = 64\n\tvar pairs_capacity uint = max_input_histograms * max_input_histograms / 2\n\tvar pairs []histogramPair = make([]histogramPair, (pairs_capacity + 1))\n\tvar i uint\n\n\t/* For the first pass of clustering, we allow all pairs. */\n\tfor i = 0; i < in_size; i++ {\n\t\tcluster_size[i] = 1\n\t}\n\n\tfor i = 0; i < in_size; i++ {\n\t\tout[i] = in[i]\n\t\tout[i].bit_cost_ = populationCostDistance(&in[i])\n\t\thistogram_symbols[i] = uint32(i)\n\t}\n\n\tfor i = 0; i < in_size; i += max_input_histograms {\n\t\tvar num_to_combine uint = brotli_min_size_t(in_size-i, max_input_histograms)\n\t\tvar num_new_clusters uint\n\t\tvar j uint\n\t\tfor j = 0; j < num_to_combine; j++ {\n\t\t\tclusters[num_clusters+j] = uint32(i + j)\n\t\t}\n\n\t\tnum_new_clusters = histogramCombineDistance(out, cluster_size, histogram_symbols[i:], clusters[num_clusters:], pairs, num_to_combine, num_to_combine, max_histograms, pairs_capacity)\n\t\tnum_clusters += num_new_clusters\n\t}\n\t{\n\t\t/* For the second pass, we limit the total number of histogram pairs.\n\t\t   After this limit is reached, we only keep searching for the best pair. */\n\t\tvar max_num_pairs uint = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)\n\t\tif pairs_capacity < (max_num_pairs + 1) {\n\t\t\tvar _new_size uint\n\t\t\tif pairs_capacity == 0 {\n\t\t\t\t_new_size = max_num_pairs + 1\n\t\t\t} else {\n\t\t\t\t_new_size = pairs_capacity\n\t\t\t}\n\t\t\tvar new_array []histogramPair\n\t\t\tfor _new_size < (max_num_pairs + 1) {\n\t\t\t\t_new_size *= 2\n\t\t\t}\n\t\t\tnew_array = make([]histogramPair, _new_size)\n\t\t\tif pairs_capacity != 0 {\n\t\t\t\tcopy(new_array, pairs[:pairs_capacity])\n\t\t\t}\n\n\t\t\tpairs = new_array\n\t\t\tpairs_capacity = _new_size\n\t\t}\n\n\t\t/* Collapse similar histograms. */\n\t\tnum_clusters = histogramCombineDistance(out, cluster_size, histogram_symbols, clusters, pairs, num_clusters, in_size, max_histograms, max_num_pairs)\n\t}\n\n\tpairs = nil\n\tcluster_size = nil\n\n\t/* Find the optimal map from original histograms to the final ones. */\n\thistogramRemapDistance(in, in_size, clusters, num_clusters, out, histogram_symbols)\n\n\tclusters = nil\n\n\t/* Convert the context map to a canonical form. */\n\t*out_size = histogramReindexDistance(out, histogram_symbols, in_size)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/cluster_literal.go",
    "content": "package brotli\n\nimport \"math\"\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Computes the bit cost reduction by combining out[idx1] and out[idx2] and if\n   it is below a threshold, stores the pair (idx1, idx2) in the *pairs queue. */\nfunc compareAndPushToQueueLiteral(out []histogramLiteral, cluster_size []uint32, idx1 uint32, idx2 uint32, max_num_pairs uint, pairs []histogramPair, num_pairs *uint) {\n\tvar is_good_pair bool = false\n\tvar p histogramPair\n\tp.idx2 = 0\n\tp.idx1 = p.idx2\n\tp.cost_combo = 0\n\tp.cost_diff = p.cost_combo\n\tif idx1 == idx2 {\n\t\treturn\n\t}\n\n\tif idx2 < idx1 {\n\t\tvar t uint32 = idx2\n\t\tidx2 = idx1\n\t\tidx1 = t\n\t}\n\n\tp.idx1 = idx1\n\tp.idx2 = idx2\n\tp.cost_diff = 0.5 * clusterCostDiff(uint(cluster_size[idx1]), uint(cluster_size[idx2]))\n\tp.cost_diff -= out[idx1].bit_cost_\n\tp.cost_diff -= out[idx2].bit_cost_\n\n\tif out[idx1].total_count_ == 0 {\n\t\tp.cost_combo = out[idx2].bit_cost_\n\t\tis_good_pair = true\n\t} else if out[idx2].total_count_ == 0 {\n\t\tp.cost_combo = out[idx1].bit_cost_\n\t\tis_good_pair = true\n\t} else {\n\t\tvar threshold float64\n\t\tif *num_pairs == 0 {\n\t\t\tthreshold = 1e99\n\t\t} else {\n\t\t\tthreshold = brotli_max_double(0.0, pairs[0].cost_diff)\n\t\t}\n\t\tvar combo histogramLiteral = out[idx1]\n\t\tvar cost_combo float64\n\t\thistogramAddHistogramLiteral(&combo, &out[idx2])\n\t\tcost_combo = populationCostLiteral(&combo)\n\t\tif cost_combo < threshold-p.cost_diff {\n\t\t\tp.cost_combo = cost_combo\n\t\t\tis_good_pair = true\n\t\t}\n\t}\n\n\tif is_good_pair {\n\t\tp.cost_diff += p.cost_combo\n\t\tif *num_pairs > 0 && histogramPairIsLess(&pairs[0], &p) {\n\t\t\t/* Replace the top of the queue if needed. */\n\t\t\tif *num_pairs < max_num_pairs {\n\t\t\t\tpairs[*num_pairs] = pairs[0]\n\t\t\t\t(*num_pairs)++\n\t\t\t}\n\n\t\t\tpairs[0] = p\n\t\t} else if *num_pairs < max_num_pairs {\n\t\t\tpairs[*num_pairs] = p\n\t\t\t(*num_pairs)++\n\t\t}\n\t}\n}\n\nfunc histogramCombineLiteral(out []histogramLiteral, cluster_size []uint32, symbols []uint32, clusters []uint32, pairs []histogramPair, num_clusters uint, symbols_size uint, max_clusters uint, max_num_pairs uint) uint {\n\tvar cost_diff_threshold float64 = 0.0\n\tvar min_cluster_size uint = 1\n\tvar num_pairs uint = 0\n\t{\n\t\t/* We maintain a vector of histogram pairs, with the property that the pair\n\t\t   with the maximum bit cost reduction is the first. */\n\t\tvar idx1 uint\n\t\tfor idx1 = 0; idx1 < num_clusters; idx1++ {\n\t\t\tvar idx2 uint\n\t\t\tfor idx2 = idx1 + 1; idx2 < num_clusters; idx2++ {\n\t\t\t\tcompareAndPushToQueueLiteral(out, cluster_size, clusters[idx1], clusters[idx2], max_num_pairs, pairs[0:], &num_pairs)\n\t\t\t}\n\t\t}\n\t}\n\n\tfor num_clusters > min_cluster_size {\n\t\tvar best_idx1 uint32\n\t\tvar best_idx2 uint32\n\t\tvar i uint\n\t\tif pairs[0].cost_diff >= cost_diff_threshold {\n\t\t\tcost_diff_threshold = 1e99\n\t\t\tmin_cluster_size = max_clusters\n\t\t\tcontinue\n\t\t}\n\n\t\t/* Take the best pair from the top of heap. */\n\t\tbest_idx1 = pairs[0].idx1\n\n\t\tbest_idx2 = pairs[0].idx2\n\t\thistogramAddHistogramLiteral(&out[best_idx1], &out[best_idx2])\n\t\tout[best_idx1].bit_cost_ = pairs[0].cost_combo\n\t\tcluster_size[best_idx1] += cluster_size[best_idx2]\n\t\tfor i = 0; i < symbols_size; i++ {\n\t\t\tif symbols[i] == best_idx2 {\n\t\t\t\tsymbols[i] = best_idx1\n\t\t\t}\n\t\t}\n\n\t\tfor i = 0; i < num_clusters; i++ {\n\t\t\tif clusters[i] == best_idx2 {\n\t\t\t\tcopy(clusters[i:], clusters[i+1:][:num_clusters-i-1])\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tnum_clusters--\n\t\t{\n\t\t\t/* Remove pairs intersecting the just combined best pair. */\n\t\t\tvar copy_to_idx uint = 0\n\t\t\tfor i = 0; i < num_pairs; i++ {\n\t\t\t\tvar p *histogramPair = &pairs[i]\n\t\t\t\tif p.idx1 == best_idx1 || p.idx2 == best_idx1 || p.idx1 == best_idx2 || p.idx2 == best_idx2 {\n\t\t\t\t\t/* Remove invalid pair from the queue. */\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tif histogramPairIsLess(&pairs[0], p) {\n\t\t\t\t\t/* Replace the top of the queue if needed. */\n\t\t\t\t\tvar front histogramPair = pairs[0]\n\t\t\t\t\tpairs[0] = *p\n\t\t\t\t\tpairs[copy_to_idx] = front\n\t\t\t\t} else {\n\t\t\t\t\tpairs[copy_to_idx] = *p\n\t\t\t\t}\n\n\t\t\t\tcopy_to_idx++\n\t\t\t}\n\n\t\t\tnum_pairs = copy_to_idx\n\t\t}\n\n\t\t/* Push new pairs formed with the combined histogram to the heap. */\n\t\tfor i = 0; i < num_clusters; i++ {\n\t\t\tcompareAndPushToQueueLiteral(out, cluster_size, best_idx1, clusters[i], max_num_pairs, pairs[0:], &num_pairs)\n\t\t}\n\t}\n\n\treturn num_clusters\n}\n\n/* What is the bit cost of moving histogram from cur_symbol to candidate. */\nfunc histogramBitCostDistanceLiteral(histogram *histogramLiteral, candidate *histogramLiteral) float64 {\n\tif histogram.total_count_ == 0 {\n\t\treturn 0.0\n\t} else {\n\t\tvar tmp histogramLiteral = *histogram\n\t\thistogramAddHistogramLiteral(&tmp, candidate)\n\t\treturn populationCostLiteral(&tmp) - candidate.bit_cost_\n\t}\n}\n\n/* Find the best 'out' histogram for each of the 'in' histograms.\n   When called, clusters[0..num_clusters) contains the unique values from\n   symbols[0..in_size), but this property is not preserved in this function.\n   Note: we assume that out[]->bit_cost_ is already up-to-date. */\nfunc histogramRemapLiteral(in []histogramLiteral, in_size uint, clusters []uint32, num_clusters uint, out []histogramLiteral, symbols []uint32) {\n\tvar i uint\n\tfor i = 0; i < in_size; i++ {\n\t\tvar best_out uint32\n\t\tif i == 0 {\n\t\t\tbest_out = symbols[0]\n\t\t} else {\n\t\t\tbest_out = symbols[i-1]\n\t\t}\n\t\tvar best_bits float64 = histogramBitCostDistanceLiteral(&in[i], &out[best_out])\n\t\tvar j uint\n\t\tfor j = 0; j < num_clusters; j++ {\n\t\t\tvar cur_bits float64 = histogramBitCostDistanceLiteral(&in[i], &out[clusters[j]])\n\t\t\tif cur_bits < best_bits {\n\t\t\t\tbest_bits = cur_bits\n\t\t\t\tbest_out = clusters[j]\n\t\t\t}\n\t\t}\n\n\t\tsymbols[i] = best_out\n\t}\n\n\t/* Recompute each out based on raw and symbols. */\n\tfor i = 0; i < num_clusters; i++ {\n\t\thistogramClearLiteral(&out[clusters[i]])\n\t}\n\n\tfor i = 0; i < in_size; i++ {\n\t\thistogramAddHistogramLiteral(&out[symbols[i]], &in[i])\n\t}\n}\n\n/* Reorders elements of the out[0..length) array and changes values in\n   symbols[0..length) array in the following way:\n     * when called, symbols[] contains indexes into out[], and has N unique\n       values (possibly N < length)\n     * on return, symbols'[i] = f(symbols[i]) and\n                  out'[symbols'[i]] = out[symbols[i]], for each 0 <= i < length,\n       where f is a bijection between the range of symbols[] and [0..N), and\n       the first occurrences of values in symbols'[i] come in consecutive\n       increasing order.\n   Returns N, the number of unique values in symbols[]. */\n\nvar histogramReindexLiteral_kInvalidIndex uint32 = math.MaxUint32\n\nfunc histogramReindexLiteral(out []histogramLiteral, symbols []uint32, length uint) uint {\n\tvar new_index []uint32 = make([]uint32, length)\n\tvar next_index uint32\n\tvar tmp []histogramLiteral\n\tvar i uint\n\tfor i = 0; i < length; i++ {\n\t\tnew_index[i] = histogramReindexLiteral_kInvalidIndex\n\t}\n\n\tnext_index = 0\n\tfor i = 0; i < length; i++ {\n\t\tif new_index[symbols[i]] == histogramReindexLiteral_kInvalidIndex {\n\t\t\tnew_index[symbols[i]] = next_index\n\t\t\tnext_index++\n\t\t}\n\t}\n\n\t/* TODO: by using idea of \"cycle-sort\" we can avoid allocation of\n\t   tmp and reduce the number of copying by the factor of 2. */\n\ttmp = make([]histogramLiteral, next_index)\n\n\tnext_index = 0\n\tfor i = 0; i < length; i++ {\n\t\tif new_index[symbols[i]] == next_index {\n\t\t\ttmp[next_index] = out[symbols[i]]\n\t\t\tnext_index++\n\t\t}\n\n\t\tsymbols[i] = new_index[symbols[i]]\n\t}\n\n\tnew_index = nil\n\tfor i = 0; uint32(i) < next_index; i++ {\n\t\tout[i] = tmp[i]\n\t}\n\n\ttmp = nil\n\treturn uint(next_index)\n}\n\nfunc clusterHistogramsLiteral(in []histogramLiteral, in_size uint, max_histograms uint, out []histogramLiteral, out_size *uint, histogram_symbols []uint32) {\n\tvar cluster_size []uint32 = make([]uint32, in_size)\n\tvar clusters []uint32 = make([]uint32, in_size)\n\tvar num_clusters uint = 0\n\tvar max_input_histograms uint = 64\n\tvar pairs_capacity uint = max_input_histograms * max_input_histograms / 2\n\tvar pairs []histogramPair = make([]histogramPair, (pairs_capacity + 1))\n\tvar i uint\n\n\t/* For the first pass of clustering, we allow all pairs. */\n\tfor i = 0; i < in_size; i++ {\n\t\tcluster_size[i] = 1\n\t}\n\n\tfor i = 0; i < in_size; i++ {\n\t\tout[i] = in[i]\n\t\tout[i].bit_cost_ = populationCostLiteral(&in[i])\n\t\thistogram_symbols[i] = uint32(i)\n\t}\n\n\tfor i = 0; i < in_size; i += max_input_histograms {\n\t\tvar num_to_combine uint = brotli_min_size_t(in_size-i, max_input_histograms)\n\t\tvar num_new_clusters uint\n\t\tvar j uint\n\t\tfor j = 0; j < num_to_combine; j++ {\n\t\t\tclusters[num_clusters+j] = uint32(i + j)\n\t\t}\n\n\t\tnum_new_clusters = histogramCombineLiteral(out, cluster_size, histogram_symbols[i:], clusters[num_clusters:], pairs, num_to_combine, num_to_combine, max_histograms, pairs_capacity)\n\t\tnum_clusters += num_new_clusters\n\t}\n\t{\n\t\t/* For the second pass, we limit the total number of histogram pairs.\n\t\t   After this limit is reached, we only keep searching for the best pair. */\n\t\tvar max_num_pairs uint = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)\n\t\tif pairs_capacity < (max_num_pairs + 1) {\n\t\t\tvar _new_size uint\n\t\t\tif pairs_capacity == 0 {\n\t\t\t\t_new_size = max_num_pairs + 1\n\t\t\t} else {\n\t\t\t\t_new_size = pairs_capacity\n\t\t\t}\n\t\t\tvar new_array []histogramPair\n\t\t\tfor _new_size < (max_num_pairs + 1) {\n\t\t\t\t_new_size *= 2\n\t\t\t}\n\t\t\tnew_array = make([]histogramPair, _new_size)\n\t\t\tif pairs_capacity != 0 {\n\t\t\t\tcopy(new_array, pairs[:pairs_capacity])\n\t\t\t}\n\n\t\t\tpairs = new_array\n\t\t\tpairs_capacity = _new_size\n\t\t}\n\n\t\t/* Collapse similar histograms. */\n\t\tnum_clusters = histogramCombineLiteral(out, cluster_size, histogram_symbols, clusters, pairs, num_clusters, in_size, max_histograms, max_num_pairs)\n\t}\n\n\tpairs = nil\n\tcluster_size = nil\n\n\t/* Find the optimal map from original histograms to the final ones. */\n\thistogramRemapLiteral(in, in_size, clusters, num_clusters, out, histogram_symbols)\n\n\tclusters = nil\n\n\t/* Convert the context map to a canonical form. */\n\t*out_size = histogramReindexLiteral(out, histogram_symbols, in_size)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/command.go",
    "content": "package brotli\n\nvar kInsBase = []uint32{\n\t0,\n\t1,\n\t2,\n\t3,\n\t4,\n\t5,\n\t6,\n\t8,\n\t10,\n\t14,\n\t18,\n\t26,\n\t34,\n\t50,\n\t66,\n\t98,\n\t130,\n\t194,\n\t322,\n\t578,\n\t1090,\n\t2114,\n\t6210,\n\t22594,\n}\n\nvar kInsExtra = []uint32{\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1,\n\t1,\n\t2,\n\t2,\n\t3,\n\t3,\n\t4,\n\t4,\n\t5,\n\t5,\n\t6,\n\t7,\n\t8,\n\t9,\n\t10,\n\t12,\n\t14,\n\t24,\n}\n\nvar kCopyBase = []uint32{\n\t2,\n\t3,\n\t4,\n\t5,\n\t6,\n\t7,\n\t8,\n\t9,\n\t10,\n\t12,\n\t14,\n\t18,\n\t22,\n\t30,\n\t38,\n\t54,\n\t70,\n\t102,\n\t134,\n\t198,\n\t326,\n\t582,\n\t1094,\n\t2118,\n}\n\nvar kCopyExtra = []uint32{\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1,\n\t1,\n\t2,\n\t2,\n\t3,\n\t3,\n\t4,\n\t4,\n\t5,\n\t5,\n\t6,\n\t7,\n\t8,\n\t9,\n\t10,\n\t24,\n}\n\nfunc getInsertLengthCode(insertlen uint) uint16 {\n\tif insertlen < 6 {\n\t\treturn uint16(insertlen)\n\t} else if insertlen < 130 {\n\t\tvar nbits uint32 = log2FloorNonZero(insertlen-2) - 1\n\t\treturn uint16((nbits << 1) + uint32((insertlen-2)>>nbits) + 2)\n\t} else if insertlen < 2114 {\n\t\treturn uint16(log2FloorNonZero(insertlen-66) + 10)\n\t} else if insertlen < 6210 {\n\t\treturn 21\n\t} else if insertlen < 22594 {\n\t\treturn 22\n\t} else {\n\t\treturn 23\n\t}\n}\n\nfunc getCopyLengthCode(copylen uint) uint16 {\n\tif copylen < 10 {\n\t\treturn uint16(copylen - 2)\n\t} else if copylen < 134 {\n\t\tvar nbits uint32 = log2FloorNonZero(copylen-6) - 1\n\t\treturn uint16((nbits << 1) + uint32((copylen-6)>>nbits) + 4)\n\t} else if copylen < 2118 {\n\t\treturn uint16(log2FloorNonZero(copylen-70) + 12)\n\t} else {\n\t\treturn 23\n\t}\n}\n\nfunc combineLengthCodes(inscode uint16, copycode uint16, use_last_distance bool) uint16 {\n\tvar bits64 uint16 = uint16(copycode&0x7 | (inscode&0x7)<<3)\n\tif use_last_distance && inscode < 8 && copycode < 16 {\n\t\tif copycode < 8 {\n\t\t\treturn bits64\n\t\t} else {\n\t\t\treturn bits64 | 64\n\t\t}\n\t} else {\n\t\t/* Specification: 5 Encoding of ... (last table) */\n\t\t/* offset = 2 * index, where index is in range [0..8] */\n\t\tvar offset uint32 = 2 * ((uint32(copycode) >> 3) + 3*(uint32(inscode)>>3))\n\n\t\t/* All values in specification are K * 64,\n\t\t   where   K = [2, 3, 6, 4, 5, 8, 7, 9, 10],\n\t\t       i + 1 = [1, 2, 3, 4, 5, 6, 7, 8,  9],\n\t\t   K - i - 1 = [1, 1, 3, 0, 0, 2, 0, 1,  2] = D.\n\t\t   All values in D require only 2 bits to encode.\n\t\t   Magic constant is shifted 6 bits left, to avoid final multiplication. */\n\t\toffset = (offset << 5) + 0x40 + ((0x520D40 >> offset) & 0xC0)\n\n\t\treturn uint16(offset | uint32(bits64))\n\t}\n}\n\nfunc getLengthCode(insertlen uint, copylen uint, use_last_distance bool, code *uint16) {\n\tvar inscode uint16 = getInsertLengthCode(insertlen)\n\tvar copycode uint16 = getCopyLengthCode(copylen)\n\t*code = combineLengthCodes(inscode, copycode, use_last_distance)\n}\n\nfunc getInsertBase(inscode uint16) uint32 {\n\treturn kInsBase[inscode]\n}\n\nfunc getInsertExtra(inscode uint16) uint32 {\n\treturn kInsExtra[inscode]\n}\n\nfunc getCopyBase(copycode uint16) uint32 {\n\treturn kCopyBase[copycode]\n}\n\nfunc getCopyExtra(copycode uint16) uint32 {\n\treturn kCopyExtra[copycode]\n}\n\ntype command struct {\n\tinsert_len_  uint32\n\tcopy_len_    uint32\n\tdist_extra_  uint32\n\tcmd_prefix_  uint16\n\tdist_prefix_ uint16\n}\n\n/* distance_code is e.g. 0 for same-as-last short code, or 16 for offset 1. */\nfunc makeCommand(dist *distanceParams, insertlen uint, copylen uint, copylen_code_delta int, distance_code uint) (cmd command) {\n\t/* Don't rely on signed int representation, use honest casts. */\n\tvar delta uint32 = uint32(byte(int8(copylen_code_delta)))\n\tcmd.insert_len_ = uint32(insertlen)\n\tcmd.copy_len_ = uint32(uint32(copylen) | delta<<25)\n\n\t/* The distance prefix and extra bits are stored in this Command as if\n\t   npostfix and ndirect were 0, they are only recomputed later after the\n\t   clustering if needed. */\n\tprefixEncodeCopyDistance(distance_code, uint(dist.num_direct_distance_codes), uint(dist.distance_postfix_bits), &cmd.dist_prefix_, &cmd.dist_extra_)\n\tgetLengthCode(insertlen, uint(int(copylen)+copylen_code_delta), (cmd.dist_prefix_&0x3FF == 0), &cmd.cmd_prefix_)\n\n\treturn cmd\n}\n\nfunc makeInsertCommand(insertlen uint) (cmd command) {\n\tcmd.insert_len_ = uint32(insertlen)\n\tcmd.copy_len_ = 4 << 25\n\tcmd.dist_extra_ = 0\n\tcmd.dist_prefix_ = numDistanceShortCodes\n\tgetLengthCode(insertlen, 4, false, &cmd.cmd_prefix_)\n\treturn cmd\n}\n\nfunc commandRestoreDistanceCode(self *command, dist *distanceParams) uint32 {\n\tif uint32(self.dist_prefix_&0x3FF) < numDistanceShortCodes+dist.num_direct_distance_codes {\n\t\treturn uint32(self.dist_prefix_) & 0x3FF\n\t} else {\n\t\tvar dcode uint32 = uint32(self.dist_prefix_) & 0x3FF\n\t\tvar nbits uint32 = uint32(self.dist_prefix_) >> 10\n\t\tvar extra uint32 = self.dist_extra_\n\t\tvar postfix_mask uint32 = (1 << dist.distance_postfix_bits) - 1\n\t\tvar hcode uint32 = (dcode - dist.num_direct_distance_codes - numDistanceShortCodes) >> dist.distance_postfix_bits\n\t\tvar lcode uint32 = (dcode - dist.num_direct_distance_codes - numDistanceShortCodes) & postfix_mask\n\t\tvar offset uint32 = ((2 + (hcode & 1)) << nbits) - 4\n\t\treturn ((offset + extra) << dist.distance_postfix_bits) + lcode + dist.num_direct_distance_codes + numDistanceShortCodes\n\t}\n}\n\nfunc commandDistanceContext(self *command) uint32 {\n\tvar r uint32 = uint32(self.cmd_prefix_) >> 6\n\tvar c uint32 = uint32(self.cmd_prefix_) & 7\n\tif (r == 0 || r == 2 || r == 4 || r == 7) && (c <= 2) {\n\t\treturn c\n\t}\n\n\treturn 3\n}\n\nfunc commandCopyLen(self *command) uint32 {\n\treturn self.copy_len_ & 0x1FFFFFF\n}\n\nfunc commandCopyLenCode(self *command) uint32 {\n\tvar modifier uint32 = self.copy_len_ >> 25\n\tvar delta int32 = int32(int8(byte(modifier | (modifier&0x40)<<1)))\n\treturn uint32(int32(self.copy_len_&0x1FFFFFF) + delta)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/compress_fragment.go",
    "content": "package brotli\n\nimport \"encoding/binary\"\n\n/* Copyright 2015 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Function for fast encoding of an input fragment, independently from the input\n   history. This function uses one-pass processing: when we find a backward\n   match, we immediately emit the corresponding command and literal codes to\n   the bit stream.\n\n   Adapted from the CompressFragment() function in\n   https://github.com/google/snappy/blob/master/snappy.cc */\n\nconst maxDistance_compress_fragment = 262128\n\nfunc hash5(p []byte, shift uint) uint32 {\n\tvar h uint64 = (binary.LittleEndian.Uint64(p) << 24) * uint64(kHashMul32)\n\treturn uint32(h >> shift)\n}\n\nfunc hashBytesAtOffset5(v uint64, offset int, shift uint) uint32 {\n\tassert(offset >= 0)\n\tassert(offset <= 3)\n\t{\n\t\tvar h uint64 = ((v >> uint(8*offset)) << 24) * uint64(kHashMul32)\n\t\treturn uint32(h >> shift)\n\t}\n}\n\nfunc isMatch5(p1 []byte, p2 []byte) bool {\n\treturn binary.LittleEndian.Uint32(p1) == binary.LittleEndian.Uint32(p2) &&\n\t\tp1[4] == p2[4]\n}\n\n/* Builds a literal prefix code into \"depths\" and \"bits\" based on the statistics\n   of the \"input\" string and stores it into the bit stream.\n   Note that the prefix code here is built from the pre-LZ77 input, therefore\n   we can only approximate the statistics of the actual literal stream.\n   Moreover, for long inputs we build a histogram from a sample of the input\n   and thus have to assign a non-zero depth for each literal.\n   Returns estimated compression ratio millibytes/char for encoding given input\n   with generated code. */\nfunc buildAndStoreLiteralPrefixCode(input []byte, input_size uint, depths []byte, bits []uint16, bw *bitWriter) uint {\n\tvar histogram = [256]uint32{0}\n\tvar histogram_total uint\n\tvar i uint\n\tif input_size < 1<<15 {\n\t\tfor i = 0; i < input_size; i++ {\n\t\t\thistogram[input[i]]++\n\t\t}\n\n\t\thistogram_total = input_size\n\t\tfor i = 0; i < 256; i++ {\n\t\t\t/* We weigh the first 11 samples with weight 3 to account for the\n\t\t\t   balancing effect of the LZ77 phase on the histogram. */\n\t\t\tvar adjust uint32 = 2 * brotli_min_uint32_t(histogram[i], 11)\n\t\t\thistogram[i] += adjust\n\t\t\thistogram_total += uint(adjust)\n\t\t}\n\t} else {\n\t\tconst kSampleRate uint = 29\n\t\tfor i = 0; i < input_size; i += kSampleRate {\n\t\t\thistogram[input[i]]++\n\t\t}\n\n\t\thistogram_total = (input_size + kSampleRate - 1) / kSampleRate\n\t\tfor i = 0; i < 256; i++ {\n\t\t\t/* We add 1 to each population count to avoid 0 bit depths (since this is\n\t\t\t   only a sample and we don't know if the symbol appears or not), and we\n\t\t\t   weigh the first 11 samples with weight 3 to account for the balancing\n\t\t\t   effect of the LZ77 phase on the histogram (more frequent symbols are\n\t\t\t   more likely to be in backward references instead as literals). */\n\t\t\tvar adjust uint32 = 1 + 2*brotli_min_uint32_t(histogram[i], 11)\n\t\t\thistogram[i] += adjust\n\t\t\thistogram_total += uint(adjust)\n\t\t}\n\t}\n\n\tbuildAndStoreHuffmanTreeFast(histogram[:], histogram_total, /* max_bits = */\n\t\t8, depths, bits, bw)\n\t{\n\t\tvar literal_ratio uint = 0\n\t\tfor i = 0; i < 256; i++ {\n\t\t\tif histogram[i] != 0 {\n\t\t\t\tliteral_ratio += uint(histogram[i] * uint32(depths[i]))\n\t\t\t}\n\t\t}\n\n\t\t/* Estimated encoding ratio, millibytes per symbol. */\n\t\treturn (literal_ratio * 125) / histogram_total\n\t}\n}\n\n/* Builds a command and distance prefix code (each 64 symbols) into \"depth\" and\n   \"bits\" based on \"histogram\" and stores it into the bit stream. */\nfunc buildAndStoreCommandPrefixCode1(histogram []uint32, depth []byte, bits []uint16, bw *bitWriter) {\n\tvar tree [129]huffmanTree\n\tvar cmd_depth = [numCommandSymbols]byte{0}\n\t/* Tree size for building a tree over 64 symbols is 2 * 64 + 1. */\n\n\tvar cmd_bits [64]uint16\n\n\tcreateHuffmanTree(histogram, 64, 15, tree[:], depth)\n\tcreateHuffmanTree(histogram[64:], 64, 14, tree[:], depth[64:])\n\n\t/* We have to jump through a few hoops here in order to compute\n\t   the command bits because the symbols are in a different order than in\n\t   the full alphabet. This looks complicated, but having the symbols\n\t   in this order in the command bits saves a few branches in the Emit*\n\t   functions. */\n\tcopy(cmd_depth[:], depth[:24])\n\n\tcopy(cmd_depth[24:][:], depth[40:][:8])\n\tcopy(cmd_depth[32:][:], depth[24:][:8])\n\tcopy(cmd_depth[40:][:], depth[48:][:8])\n\tcopy(cmd_depth[48:][:], depth[32:][:8])\n\tcopy(cmd_depth[56:][:], depth[56:][:8])\n\tconvertBitDepthsToSymbols(cmd_depth[:], 64, cmd_bits[:])\n\tcopy(bits, cmd_bits[:24])\n\tcopy(bits[24:], cmd_bits[32:][:8])\n\tcopy(bits[32:], cmd_bits[48:][:8])\n\tcopy(bits[40:], cmd_bits[24:][:8])\n\tcopy(bits[48:], cmd_bits[40:][:8])\n\tcopy(bits[56:], cmd_bits[56:][:8])\n\tconvertBitDepthsToSymbols(depth[64:], 64, bits[64:])\n\t{\n\t\t/* Create the bit length array for the full command alphabet. */\n\t\tvar i uint\n\t\tfor i := 0; i < int(64); i++ {\n\t\t\tcmd_depth[i] = 0\n\t\t} /* only 64 first values were used */\n\t\tcopy(cmd_depth[:], depth[:8])\n\t\tcopy(cmd_depth[64:][:], depth[8:][:8])\n\t\tcopy(cmd_depth[128:][:], depth[16:][:8])\n\t\tcopy(cmd_depth[192:][:], depth[24:][:8])\n\t\tcopy(cmd_depth[384:][:], depth[32:][:8])\n\t\tfor i = 0; i < 8; i++ {\n\t\t\tcmd_depth[128+8*i] = depth[40+i]\n\t\t\tcmd_depth[256+8*i] = depth[48+i]\n\t\t\tcmd_depth[448+8*i] = depth[56+i]\n\t\t}\n\n\t\tstoreHuffmanTree(cmd_depth[:], numCommandSymbols, tree[:], bw)\n\t}\n\n\tstoreHuffmanTree(depth[64:], 64, tree[:], bw)\n}\n\n/* REQUIRES: insertlen < 6210 */\nfunc emitInsertLen1(insertlen uint, depth []byte, bits []uint16, histo []uint32, bw *bitWriter) {\n\tif insertlen < 6 {\n\t\tvar code uint = insertlen + 40\n\t\tbw.writeBits(uint(depth[code]), uint64(bits[code]))\n\t\thisto[code]++\n\t} else if insertlen < 130 {\n\t\tvar tail uint = insertlen - 2\n\t\tvar nbits uint32 = log2FloorNonZero(tail) - 1\n\t\tvar prefix uint = tail >> nbits\n\t\tvar inscode uint = uint((nbits << 1) + uint32(prefix) + 42)\n\t\tbw.writeBits(uint(depth[inscode]), uint64(bits[inscode]))\n\t\tbw.writeBits(uint(nbits), uint64(tail)-(uint64(prefix)<<nbits))\n\t\thisto[inscode]++\n\t} else if insertlen < 2114 {\n\t\tvar tail uint = insertlen - 66\n\t\tvar nbits uint32 = log2FloorNonZero(tail)\n\t\tvar code uint = uint(nbits + 50)\n\t\tbw.writeBits(uint(depth[code]), uint64(bits[code]))\n\t\tbw.writeBits(uint(nbits), uint64(tail)-(uint64(uint(1))<<nbits))\n\t\thisto[code]++\n\t} else {\n\t\tbw.writeBits(uint(depth[61]), uint64(bits[61]))\n\t\tbw.writeBits(12, uint64(insertlen)-2114)\n\t\thisto[61]++\n\t}\n}\n\nfunc emitLongInsertLen(insertlen uint, depth []byte, bits []uint16, histo []uint32, bw *bitWriter) {\n\tif insertlen < 22594 {\n\t\tbw.writeBits(uint(depth[62]), uint64(bits[62]))\n\t\tbw.writeBits(14, uint64(insertlen)-6210)\n\t\thisto[62]++\n\t} else {\n\t\tbw.writeBits(uint(depth[63]), uint64(bits[63]))\n\t\tbw.writeBits(24, uint64(insertlen)-22594)\n\t\thisto[63]++\n\t}\n}\n\nfunc emitCopyLen1(copylen uint, depth []byte, bits []uint16, histo []uint32, bw *bitWriter) {\n\tif copylen < 10 {\n\t\tbw.writeBits(uint(depth[copylen+14]), uint64(bits[copylen+14]))\n\t\thisto[copylen+14]++\n\t} else if copylen < 134 {\n\t\tvar tail uint = copylen - 6\n\t\tvar nbits uint32 = log2FloorNonZero(tail) - 1\n\t\tvar prefix uint = tail >> nbits\n\t\tvar code uint = uint((nbits << 1) + uint32(prefix) + 20)\n\t\tbw.writeBits(uint(depth[code]), uint64(bits[code]))\n\t\tbw.writeBits(uint(nbits), uint64(tail)-(uint64(prefix)<<nbits))\n\t\thisto[code]++\n\t} else if copylen < 2118 {\n\t\tvar tail uint = copylen - 70\n\t\tvar nbits uint32 = log2FloorNonZero(tail)\n\t\tvar code uint = uint(nbits + 28)\n\t\tbw.writeBits(uint(depth[code]), uint64(bits[code]))\n\t\tbw.writeBits(uint(nbits), uint64(tail)-(uint64(uint(1))<<nbits))\n\t\thisto[code]++\n\t} else {\n\t\tbw.writeBits(uint(depth[39]), uint64(bits[39]))\n\t\tbw.writeBits(24, uint64(copylen)-2118)\n\t\thisto[39]++\n\t}\n}\n\nfunc emitCopyLenLastDistance1(copylen uint, depth []byte, bits []uint16, histo []uint32, bw *bitWriter) {\n\tif copylen < 12 {\n\t\tbw.writeBits(uint(depth[copylen-4]), uint64(bits[copylen-4]))\n\t\thisto[copylen-4]++\n\t} else if copylen < 72 {\n\t\tvar tail uint = copylen - 8\n\t\tvar nbits uint32 = log2FloorNonZero(tail) - 1\n\t\tvar prefix uint = tail >> nbits\n\t\tvar code uint = uint((nbits << 1) + uint32(prefix) + 4)\n\t\tbw.writeBits(uint(depth[code]), uint64(bits[code]))\n\t\tbw.writeBits(uint(nbits), uint64(tail)-(uint64(prefix)<<nbits))\n\t\thisto[code]++\n\t} else if copylen < 136 {\n\t\tvar tail uint = copylen - 8\n\t\tvar code uint = (tail >> 5) + 30\n\t\tbw.writeBits(uint(depth[code]), uint64(bits[code]))\n\t\tbw.writeBits(5, uint64(tail)&31)\n\t\tbw.writeBits(uint(depth[64]), uint64(bits[64]))\n\t\thisto[code]++\n\t\thisto[64]++\n\t} else if copylen < 2120 {\n\t\tvar tail uint = copylen - 72\n\t\tvar nbits uint32 = log2FloorNonZero(tail)\n\t\tvar code uint = uint(nbits + 28)\n\t\tbw.writeBits(uint(depth[code]), uint64(bits[code]))\n\t\tbw.writeBits(uint(nbits), uint64(tail)-(uint64(uint(1))<<nbits))\n\t\tbw.writeBits(uint(depth[64]), uint64(bits[64]))\n\t\thisto[code]++\n\t\thisto[64]++\n\t} else {\n\t\tbw.writeBits(uint(depth[39]), uint64(bits[39]))\n\t\tbw.writeBits(24, uint64(copylen)-2120)\n\t\tbw.writeBits(uint(depth[64]), uint64(bits[64]))\n\t\thisto[39]++\n\t\thisto[64]++\n\t}\n}\n\nfunc emitDistance1(distance uint, depth []byte, bits []uint16, histo []uint32, bw *bitWriter) {\n\tvar d uint = distance + 3\n\tvar nbits uint32 = log2FloorNonZero(d) - 1\n\tvar prefix uint = (d >> nbits) & 1\n\tvar offset uint = (2 + prefix) << nbits\n\tvar distcode uint = uint(2*(nbits-1) + uint32(prefix) + 80)\n\tbw.writeBits(uint(depth[distcode]), uint64(bits[distcode]))\n\tbw.writeBits(uint(nbits), uint64(d)-uint64(offset))\n\thisto[distcode]++\n}\n\nfunc emitLiterals(input []byte, len uint, depth []byte, bits []uint16, bw *bitWriter) {\n\tvar j uint\n\tfor j = 0; j < len; j++ {\n\t\tvar lit byte = input[j]\n\t\tbw.writeBits(uint(depth[lit]), uint64(bits[lit]))\n\t}\n}\n\n/* REQUIRES: len <= 1 << 24. */\nfunc storeMetaBlockHeader1(len uint, is_uncompressed bool, bw *bitWriter) {\n\tvar nibbles uint = 6\n\n\t/* ISLAST */\n\tbw.writeBits(1, 0)\n\n\tif len <= 1<<16 {\n\t\tnibbles = 4\n\t} else if len <= 1<<20 {\n\t\tnibbles = 5\n\t}\n\n\tbw.writeBits(2, uint64(nibbles)-4)\n\tbw.writeBits(nibbles*4, uint64(len)-1)\n\n\t/* ISUNCOMPRESSED */\n\tbw.writeSingleBit(is_uncompressed)\n}\n\nvar shouldMergeBlock_kSampleRate uint = 43\n\nfunc shouldMergeBlock(data []byte, len uint, depths []byte) bool {\n\tvar histo = [256]uint{0}\n\tvar i uint\n\tfor i = 0; i < len; i += shouldMergeBlock_kSampleRate {\n\t\thisto[data[i]]++\n\t}\n\t{\n\t\tvar total uint = (len + shouldMergeBlock_kSampleRate - 1) / shouldMergeBlock_kSampleRate\n\t\tvar r float64 = (fastLog2(total)+0.5)*float64(total) + 200\n\t\tfor i = 0; i < 256; i++ {\n\t\t\tr -= float64(histo[i]) * (float64(depths[i]) + fastLog2(histo[i]))\n\t\t}\n\n\t\treturn r >= 0.0\n\t}\n}\n\nfunc shouldUseUncompressedMode(metablock_start []byte, next_emit []byte, insertlen uint, literal_ratio uint) bool {\n\tvar compressed uint = uint(-cap(next_emit) + cap(metablock_start))\n\tif compressed*50 > insertlen {\n\t\treturn false\n\t} else {\n\t\treturn literal_ratio > 980\n\t}\n}\n\nfunc emitUncompressedMetaBlock1(data []byte, storage_ix_start uint, bw *bitWriter) {\n\tbw.rewind(storage_ix_start)\n\tstoreMetaBlockHeader1(uint(len(data)), true, bw)\n\tbw.jumpToByteBoundary()\n\tbw.writeBytes(data)\n}\n\nvar kCmdHistoSeed = [128]uint32{\n\t0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1,\n\t1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1,\n\t1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0,\n\t0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,\n\t1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,\n\t1, 1, 1, 1, 0, 0, 0, 0,\n}\n\nvar compressFragmentFastImpl_kFirstBlockSize uint = 3 << 15\nvar compressFragmentFastImpl_kMergeBlockSize uint = 1 << 16\n\nfunc compressFragmentFastImpl(in []byte, input_size uint, is_last bool, table []int, table_bits uint, cmd_depth []byte, cmd_bits []uint16, cmd_code_numbits *uint, cmd_code []byte, bw *bitWriter) {\n\tvar cmd_histo [128]uint32\n\tvar ip_end int\n\tvar next_emit int = 0\n\tvar base_ip int = 0\n\tvar input int = 0\n\tconst kInputMarginBytes uint = windowGap\n\tconst kMinMatchLen uint = 5\n\tvar metablock_start int = input\n\tvar block_size uint = brotli_min_size_t(input_size, compressFragmentFastImpl_kFirstBlockSize)\n\tvar total_block_size uint = block_size\n\tvar mlen_storage_ix uint = bw.getPos() + 3\n\tvar lit_depth [256]byte\n\tvar lit_bits [256]uint16\n\tvar literal_ratio uint\n\tvar ip int\n\tvar last_distance int\n\tvar shift uint = 64 - table_bits\n\n\t/* \"next_emit\" is a pointer to the first byte that is not covered by a\n\t   previous copy. Bytes between \"next_emit\" and the start of the next copy or\n\t   the end of the input will be emitted as literal bytes. */\n\n\t/* Save the start of the first block for position and distance computations.\n\t */\n\n\t/* Save the bit position of the MLEN field of the meta-block header, so that\n\t   we can update it later if we decide to extend this meta-block. */\n\tstoreMetaBlockHeader1(block_size, false, bw)\n\n\t/* No block splits, no contexts. */\n\tbw.writeBits(13, 0)\n\n\tliteral_ratio = buildAndStoreLiteralPrefixCode(in[input:], block_size, lit_depth[:], lit_bits[:], bw)\n\t{\n\t\t/* Store the pre-compressed command and distance prefix codes. */\n\t\tvar i uint\n\t\tfor i = 0; i+7 < *cmd_code_numbits; i += 8 {\n\t\t\tbw.writeBits(8, uint64(cmd_code[i>>3]))\n\t\t}\n\t}\n\n\tbw.writeBits(*cmd_code_numbits&7, uint64(cmd_code[*cmd_code_numbits>>3]))\n\n\t/* Initialize the command and distance histograms. We will gather\n\t   statistics of command and distance codes during the processing\n\t   of this block and use it to update the command and distance\n\t   prefix codes for the next block. */\nemit_commands:\n\tcopy(cmd_histo[:], kCmdHistoSeed[:])\n\n\t/* \"ip\" is the input pointer. */\n\tip = input\n\n\tlast_distance = -1\n\tip_end = int(uint(input) + block_size)\n\n\tif block_size >= kInputMarginBytes {\n\t\tvar len_limit uint = brotli_min_size_t(block_size-kMinMatchLen, input_size-kInputMarginBytes)\n\t\tvar ip_limit int = int(uint(input) + len_limit)\n\t\t/* For the last block, we need to keep a 16 bytes margin so that we can be\n\t\t   sure that all distances are at most window size - 16.\n\t\t   For all other blocks, we only need to keep a margin of 5 bytes so that\n\t\t   we don't go over the block size with a copy. */\n\n\t\tvar next_hash uint32\n\t\tip++\n\t\tfor next_hash = hash5(in[ip:], shift); ; {\n\t\t\tvar skip uint32 = 32\n\t\t\tvar next_ip int = ip\n\t\t\t/* Step 1: Scan forward in the input looking for a 5-byte-long match.\n\t\t\t   If we get close to exhausting the input then goto emit_remainder.\n\n\t\t\t   Heuristic match skipping: If 32 bytes are scanned with no matches\n\t\t\t   found, start looking only at every other byte. If 32 more bytes are\n\t\t\t   scanned, look at every third byte, etc.. When a match is found,\n\t\t\t   immediately go back to looking at every byte. This is a small loss\n\t\t\t   (~5% performance, ~0.1% density) for compressible data due to more\n\t\t\t   bookkeeping, but for non-compressible data (such as JPEG) it's a huge\n\t\t\t   win since the compressor quickly \"realizes\" the data is incompressible\n\t\t\t   and doesn't bother looking for matches everywhere.\n\n\t\t\t   The \"skip\" variable keeps track of how many bytes there are since the\n\t\t\t   last match; dividing it by 32 (i.e. right-shifting by five) gives the\n\t\t\t   number of bytes to move ahead for each iteration. */\n\n\t\t\tvar candidate int\n\t\t\tassert(next_emit < ip)\n\n\t\ttrawl:\n\t\t\tfor {\n\t\t\t\tvar hash uint32 = next_hash\n\t\t\t\tvar bytes_between_hash_lookups uint32 = skip >> 5\n\t\t\t\tskip++\n\t\t\t\tassert(hash == hash5(in[next_ip:], shift))\n\t\t\t\tip = next_ip\n\t\t\t\tnext_ip = int(uint32(ip) + bytes_between_hash_lookups)\n\t\t\t\tif next_ip > ip_limit {\n\t\t\t\t\tgoto emit_remainder\n\t\t\t\t}\n\n\t\t\t\tnext_hash = hash5(in[next_ip:], shift)\n\t\t\t\tcandidate = ip - last_distance\n\t\t\t\tif isMatch5(in[ip:], in[candidate:]) {\n\t\t\t\t\tif candidate < ip {\n\t\t\t\t\t\ttable[hash] = int(ip - base_ip)\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcandidate = base_ip + table[hash]\n\t\t\t\tassert(candidate >= base_ip)\n\t\t\t\tassert(candidate < ip)\n\n\t\t\t\ttable[hash] = int(ip - base_ip)\n\t\t\t\tif !(!isMatch5(in[ip:], in[candidate:])) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/* Check copy distance. If candidate is not feasible, continue search.\n\t\t\t   Checking is done outside of hot loop to reduce overhead. */\n\t\t\tif ip-candidate > maxDistance_compress_fragment {\n\t\t\t\tgoto trawl\n\t\t\t}\n\n\t\t\t/* Step 2: Emit the found match together with the literal bytes from\n\t\t\t   \"next_emit\" to the bit stream, and then see if we can find a next match\n\t\t\t   immediately afterwards. Repeat until we find no match for the input\n\t\t\t   without emitting some literal bytes. */\n\t\t\t{\n\t\t\t\tvar base int = ip\n\t\t\t\t/* > 0 */\n\t\t\t\tvar matched uint = 5 + findMatchLengthWithLimit(in[candidate+5:], in[ip+5:], uint(ip_end-ip)-5)\n\t\t\t\tvar distance int = int(base - candidate)\n\t\t\t\t/* We have a 5-byte match at ip, and we need to emit bytes in\n\t\t\t\t   [next_emit, ip). */\n\n\t\t\t\tvar insert uint = uint(base - next_emit)\n\t\t\t\tip += int(matched)\n\t\t\t\tif insert < 6210 {\n\t\t\t\t\temitInsertLen1(insert, cmd_depth, cmd_bits, cmd_histo[:], bw)\n\t\t\t\t} else if shouldUseUncompressedMode(in[metablock_start:], in[next_emit:], insert, literal_ratio) {\n\t\t\t\t\temitUncompressedMetaBlock1(in[metablock_start:base], mlen_storage_ix-3, bw)\n\t\t\t\t\tinput_size -= uint(base - input)\n\t\t\t\t\tinput = base\n\t\t\t\t\tnext_emit = input\n\t\t\t\t\tgoto next_block\n\t\t\t\t} else {\n\t\t\t\t\temitLongInsertLen(insert, cmd_depth, cmd_bits, cmd_histo[:], bw)\n\t\t\t\t}\n\n\t\t\t\temitLiterals(in[next_emit:], insert, lit_depth[:], lit_bits[:], bw)\n\t\t\t\tif distance == last_distance {\n\t\t\t\t\tbw.writeBits(uint(cmd_depth[64]), uint64(cmd_bits[64]))\n\t\t\t\t\tcmd_histo[64]++\n\t\t\t\t} else {\n\t\t\t\t\temitDistance1(uint(distance), cmd_depth, cmd_bits, cmd_histo[:], bw)\n\t\t\t\t\tlast_distance = distance\n\t\t\t\t}\n\n\t\t\t\temitCopyLenLastDistance1(matched, cmd_depth, cmd_bits, cmd_histo[:], bw)\n\n\t\t\t\tnext_emit = ip\n\t\t\t\tif ip >= ip_limit {\n\t\t\t\t\tgoto emit_remainder\n\t\t\t\t}\n\n\t\t\t\t/* We could immediately start working at ip now, but to improve\n\t\t\t\t   compression we first update \"table\" with the hashes of some positions\n\t\t\t\t   within the last copy. */\n\t\t\t\t{\n\t\t\t\t\tvar input_bytes uint64 = binary.LittleEndian.Uint64(in[ip-3:])\n\t\t\t\t\tvar prev_hash uint32 = hashBytesAtOffset5(input_bytes, 0, shift)\n\t\t\t\t\tvar cur_hash uint32 = hashBytesAtOffset5(input_bytes, 3, shift)\n\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 3)\n\t\t\t\t\tprev_hash = hashBytesAtOffset5(input_bytes, 1, shift)\n\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 2)\n\t\t\t\t\tprev_hash = hashBytesAtOffset5(input_bytes, 2, shift)\n\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 1)\n\n\t\t\t\t\tcandidate = base_ip + table[cur_hash]\n\t\t\t\t\ttable[cur_hash] = int(ip - base_ip)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor isMatch5(in[ip:], in[candidate:]) {\n\t\t\t\tvar base int = ip\n\t\t\t\t/* We have a 5-byte match at ip, and no need to emit any literal bytes\n\t\t\t\t   prior to ip. */\n\n\t\t\t\tvar matched uint = 5 + findMatchLengthWithLimit(in[candidate+5:], in[ip+5:], uint(ip_end-ip)-5)\n\t\t\t\tif ip-candidate > maxDistance_compress_fragment {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tip += int(matched)\n\t\t\t\tlast_distance = int(base - candidate) /* > 0 */\n\t\t\t\temitCopyLen1(matched, cmd_depth, cmd_bits, cmd_histo[:], bw)\n\t\t\t\temitDistance1(uint(last_distance), cmd_depth, cmd_bits, cmd_histo[:], bw)\n\n\t\t\t\tnext_emit = ip\n\t\t\t\tif ip >= ip_limit {\n\t\t\t\t\tgoto emit_remainder\n\t\t\t\t}\n\n\t\t\t\t/* We could immediately start working at ip now, but to improve\n\t\t\t\t   compression we first update \"table\" with the hashes of some positions\n\t\t\t\t   within the last copy. */\n\t\t\t\t{\n\t\t\t\t\tvar input_bytes uint64 = binary.LittleEndian.Uint64(in[ip-3:])\n\t\t\t\t\tvar prev_hash uint32 = hashBytesAtOffset5(input_bytes, 0, shift)\n\t\t\t\t\tvar cur_hash uint32 = hashBytesAtOffset5(input_bytes, 3, shift)\n\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 3)\n\t\t\t\t\tprev_hash = hashBytesAtOffset5(input_bytes, 1, shift)\n\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 2)\n\t\t\t\t\tprev_hash = hashBytesAtOffset5(input_bytes, 2, shift)\n\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 1)\n\n\t\t\t\t\tcandidate = base_ip + table[cur_hash]\n\t\t\t\t\ttable[cur_hash] = int(ip - base_ip)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tip++\n\t\t\tnext_hash = hash5(in[ip:], shift)\n\t\t}\n\t}\n\nemit_remainder:\n\tassert(next_emit <= ip_end)\n\tinput += int(block_size)\n\tinput_size -= block_size\n\tblock_size = brotli_min_size_t(input_size, compressFragmentFastImpl_kMergeBlockSize)\n\n\t/* Decide if we want to continue this meta-block instead of emitting the\n\t   last insert-only command. */\n\tif input_size > 0 && total_block_size+block_size <= 1<<20 && shouldMergeBlock(in[input:], block_size, lit_depth[:]) {\n\t\tassert(total_block_size > 1<<16)\n\n\t\t/* Update the size of the current meta-block and continue emitting commands.\n\t\t   We can do this because the current size and the new size both have 5\n\t\t   nibbles. */\n\t\ttotal_block_size += block_size\n\n\t\tbw.updateBits(20, uint32(total_block_size-1), mlen_storage_ix)\n\t\tgoto emit_commands\n\t}\n\n\t/* Emit the remaining bytes as literals. */\n\tif next_emit < ip_end {\n\t\tvar insert uint = uint(ip_end - next_emit)\n\t\tif insert < 6210 {\n\t\t\temitInsertLen1(insert, cmd_depth, cmd_bits, cmd_histo[:], bw)\n\t\t\temitLiterals(in[next_emit:], insert, lit_depth[:], lit_bits[:], bw)\n\t\t} else if shouldUseUncompressedMode(in[metablock_start:], in[next_emit:], insert, literal_ratio) {\n\t\t\temitUncompressedMetaBlock1(in[metablock_start:ip_end], mlen_storage_ix-3, bw)\n\t\t} else {\n\t\t\temitLongInsertLen(insert, cmd_depth, cmd_bits, cmd_histo[:], bw)\n\t\t\temitLiterals(in[next_emit:], insert, lit_depth[:], lit_bits[:], bw)\n\t\t}\n\t}\n\n\tnext_emit = ip_end\n\n\t/* If we have more data, write a new meta-block header and prefix codes and\n\t   then continue emitting commands. */\nnext_block:\n\tif input_size > 0 {\n\t\tmetablock_start = input\n\t\tblock_size = brotli_min_size_t(input_size, compressFragmentFastImpl_kFirstBlockSize)\n\t\ttotal_block_size = block_size\n\n\t\t/* Save the bit position of the MLEN field of the meta-block header, so that\n\t\t   we can update it later if we decide to extend this meta-block. */\n\t\tmlen_storage_ix = bw.getPos() + 3\n\n\t\tstoreMetaBlockHeader1(block_size, false, bw)\n\n\t\t/* No block splits, no contexts. */\n\t\tbw.writeBits(13, 0)\n\n\t\tliteral_ratio = buildAndStoreLiteralPrefixCode(in[input:], block_size, lit_depth[:], lit_bits[:], bw)\n\t\tbuildAndStoreCommandPrefixCode1(cmd_histo[:], cmd_depth, cmd_bits, bw)\n\t\tgoto emit_commands\n\t}\n\n\tif !is_last {\n\t\t/* If this is not the last block, update the command and distance prefix\n\t\t   codes for the next block and store the compressed forms. */\n\t\tvar bw bitWriter\n\t\tbw.dst = cmd_code\n\t\tbuildAndStoreCommandPrefixCode1(cmd_histo[:], cmd_depth, cmd_bits, &bw)\n\t\t*cmd_code_numbits = bw.getPos()\n\t}\n}\n\n/* Compresses \"input\" string to bw as one or more complete meta-blocks.\n\n   If \"is_last\" is 1, emits an additional empty last meta-block.\n\n   \"cmd_depth\" and \"cmd_bits\" contain the command and distance prefix codes\n   (see comment in encode.h) used for the encoding of this input fragment.\n   If \"is_last\" is 0, they are updated to reflect the statistics\n   of this input fragment, to be used for the encoding of the next fragment.\n\n   \"*cmd_code_numbits\" is the number of bits of the compressed representation\n   of the command and distance prefix codes, and \"cmd_code\" is an array of\n   at least \"(*cmd_code_numbits + 7) >> 3\" size that contains the compressed\n   command and distance prefix codes. If \"is_last\" is 0, these are also\n   updated to represent the updated \"cmd_depth\" and \"cmd_bits\".\n\n   REQUIRES: \"input_size\" is greater than zero, or \"is_last\" is 1.\n   REQUIRES: \"input_size\" is less or equal to maximal metablock size (1 << 24).\n   REQUIRES: All elements in \"table[0..table_size-1]\" are initialized to zero.\n   REQUIRES: \"table_size\" is an odd (9, 11, 13, 15) power of two\n   OUTPUT: maximal copy distance <= |input_size|\n   OUTPUT: maximal copy distance <= BROTLI_MAX_BACKWARD_LIMIT(18) */\nfunc compressFragmentFast(input []byte, input_size uint, is_last bool, table []int, table_size uint, cmd_depth []byte, cmd_bits []uint16, cmd_code_numbits *uint, cmd_code []byte, bw *bitWriter) {\n\tvar initial_storage_ix uint = bw.getPos()\n\tvar table_bits uint = uint(log2FloorNonZero(table_size))\n\n\tif input_size == 0 {\n\t\tassert(is_last)\n\t\tbw.writeBits(1, 1) /* islast */\n\t\tbw.writeBits(1, 1) /* isempty */\n\t\tbw.jumpToByteBoundary()\n\t\treturn\n\t}\n\n\tcompressFragmentFastImpl(input, input_size, is_last, table, table_bits, cmd_depth, cmd_bits, cmd_code_numbits, cmd_code, bw)\n\n\t/* If output is larger than single uncompressed block, rewrite it. */\n\tif bw.getPos()-initial_storage_ix > 31+(input_size<<3) {\n\t\temitUncompressedMetaBlock1(input[:input_size], initial_storage_ix, bw)\n\t}\n\n\tif is_last {\n\t\tbw.writeBits(1, 1) /* islast */\n\t\tbw.writeBits(1, 1) /* isempty */\n\t\tbw.jumpToByteBoundary()\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/compress_fragment_two_pass.go",
    "content": "package brotli\n\nimport \"encoding/binary\"\n\n/* Copyright 2015 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Function for fast encoding of an input fragment, independently from the input\n   history. This function uses two-pass processing: in the first pass we save\n   the found backward matches and literal bytes into a buffer, and in the\n   second pass we emit them into the bit stream using prefix codes built based\n   on the actual command and literal byte histograms. */\n\nconst kCompressFragmentTwoPassBlockSize uint = 1 << 17\n\nfunc hash1(p []byte, shift uint, length uint) uint32 {\n\tvar h uint64 = (binary.LittleEndian.Uint64(p) << ((8 - length) * 8)) * uint64(kHashMul32)\n\treturn uint32(h >> shift)\n}\n\nfunc hashBytesAtOffset(v uint64, offset uint, shift uint, length uint) uint32 {\n\tassert(offset <= 8-length)\n\t{\n\t\tvar h uint64 = ((v >> (8 * offset)) << ((8 - length) * 8)) * uint64(kHashMul32)\n\t\treturn uint32(h >> shift)\n\t}\n}\n\nfunc isMatch1(p1 []byte, p2 []byte, length uint) bool {\n\tif binary.LittleEndian.Uint32(p1) != binary.LittleEndian.Uint32(p2) {\n\t\treturn false\n\t}\n\tif length == 4 {\n\t\treturn true\n\t}\n\treturn p1[4] == p2[4] && p1[5] == p2[5]\n}\n\n/* Builds a command and distance prefix code (each 64 symbols) into \"depth\" and\n   \"bits\" based on \"histogram\" and stores it into the bit stream. */\nfunc buildAndStoreCommandPrefixCode(histogram []uint32, depth []byte, bits []uint16, bw *bitWriter) {\n\tvar tree [129]huffmanTree\n\tvar cmd_depth = [numCommandSymbols]byte{0}\n\t/* Tree size for building a tree over 64 symbols is 2 * 64 + 1. */\n\n\tvar cmd_bits [64]uint16\n\tcreateHuffmanTree(histogram, 64, 15, tree[:], depth)\n\tcreateHuffmanTree(histogram[64:], 64, 14, tree[:], depth[64:])\n\n\t/* We have to jump through a few hoops here in order to compute\n\t   the command bits because the symbols are in a different order than in\n\t   the full alphabet. This looks complicated, but having the symbols\n\t   in this order in the command bits saves a few branches in the Emit*\n\t   functions. */\n\tcopy(cmd_depth[:], depth[24:][:24])\n\n\tcopy(cmd_depth[24:][:], depth[:8])\n\tcopy(cmd_depth[32:][:], depth[48:][:8])\n\tcopy(cmd_depth[40:][:], depth[8:][:8])\n\tcopy(cmd_depth[48:][:], depth[56:][:8])\n\tcopy(cmd_depth[56:][:], depth[16:][:8])\n\tconvertBitDepthsToSymbols(cmd_depth[:], 64, cmd_bits[:])\n\tcopy(bits, cmd_bits[24:][:8])\n\tcopy(bits[8:], cmd_bits[40:][:8])\n\tcopy(bits[16:], cmd_bits[56:][:8])\n\tcopy(bits[24:], cmd_bits[:24])\n\tcopy(bits[48:], cmd_bits[32:][:8])\n\tcopy(bits[56:], cmd_bits[48:][:8])\n\tconvertBitDepthsToSymbols(depth[64:], 64, bits[64:])\n\t{\n\t\t/* Create the bit length array for the full command alphabet. */\n\t\tvar i uint\n\t\tfor i := 0; i < int(64); i++ {\n\t\t\tcmd_depth[i] = 0\n\t\t} /* only 64 first values were used */\n\t\tcopy(cmd_depth[:], depth[24:][:8])\n\t\tcopy(cmd_depth[64:][:], depth[32:][:8])\n\t\tcopy(cmd_depth[128:][:], depth[40:][:8])\n\t\tcopy(cmd_depth[192:][:], depth[48:][:8])\n\t\tcopy(cmd_depth[384:][:], depth[56:][:8])\n\t\tfor i = 0; i < 8; i++ {\n\t\t\tcmd_depth[128+8*i] = depth[i]\n\t\t\tcmd_depth[256+8*i] = depth[8+i]\n\t\t\tcmd_depth[448+8*i] = depth[16+i]\n\t\t}\n\n\t\tstoreHuffmanTree(cmd_depth[:], numCommandSymbols, tree[:], bw)\n\t}\n\n\tstoreHuffmanTree(depth[64:], 64, tree[:], bw)\n}\n\nfunc emitInsertLen(insertlen uint32, commands *[]uint32) {\n\tif insertlen < 6 {\n\t\t(*commands)[0] = insertlen\n\t} else if insertlen < 130 {\n\t\tvar tail uint32 = insertlen - 2\n\t\tvar nbits uint32 = log2FloorNonZero(uint(tail)) - 1\n\t\tvar prefix uint32 = tail >> nbits\n\t\tvar inscode uint32 = (nbits << 1) + prefix + 2\n\t\tvar extra uint32 = tail - (prefix << nbits)\n\t\t(*commands)[0] = inscode | extra<<8\n\t} else if insertlen < 2114 {\n\t\tvar tail uint32 = insertlen - 66\n\t\tvar nbits uint32 = log2FloorNonZero(uint(tail))\n\t\tvar code uint32 = nbits + 10\n\t\tvar extra uint32 = tail - (1 << nbits)\n\t\t(*commands)[0] = code | extra<<8\n\t} else if insertlen < 6210 {\n\t\tvar extra uint32 = insertlen - 2114\n\t\t(*commands)[0] = 21 | extra<<8\n\t} else if insertlen < 22594 {\n\t\tvar extra uint32 = insertlen - 6210\n\t\t(*commands)[0] = 22 | extra<<8\n\t} else {\n\t\tvar extra uint32 = insertlen - 22594\n\t\t(*commands)[0] = 23 | extra<<8\n\t}\n\n\t*commands = (*commands)[1:]\n}\n\nfunc emitCopyLen(copylen uint, commands *[]uint32) {\n\tif copylen < 10 {\n\t\t(*commands)[0] = uint32(copylen + 38)\n\t} else if copylen < 134 {\n\t\tvar tail uint = copylen - 6\n\t\tvar nbits uint = uint(log2FloorNonZero(tail) - 1)\n\t\tvar prefix uint = tail >> nbits\n\t\tvar code uint = (nbits << 1) + prefix + 44\n\t\tvar extra uint = tail - (prefix << nbits)\n\t\t(*commands)[0] = uint32(code | extra<<8)\n\t} else if copylen < 2118 {\n\t\tvar tail uint = copylen - 70\n\t\tvar nbits uint = uint(log2FloorNonZero(tail))\n\t\tvar code uint = nbits + 52\n\t\tvar extra uint = tail - (uint(1) << nbits)\n\t\t(*commands)[0] = uint32(code | extra<<8)\n\t} else {\n\t\tvar extra uint = copylen - 2118\n\t\t(*commands)[0] = uint32(63 | extra<<8)\n\t}\n\n\t*commands = (*commands)[1:]\n}\n\nfunc emitCopyLenLastDistance(copylen uint, commands *[]uint32) {\n\tif copylen < 12 {\n\t\t(*commands)[0] = uint32(copylen + 20)\n\t\t*commands = (*commands)[1:]\n\t} else if copylen < 72 {\n\t\tvar tail uint = copylen - 8\n\t\tvar nbits uint = uint(log2FloorNonZero(tail) - 1)\n\t\tvar prefix uint = tail >> nbits\n\t\tvar code uint = (nbits << 1) + prefix + 28\n\t\tvar extra uint = tail - (prefix << nbits)\n\t\t(*commands)[0] = uint32(code | extra<<8)\n\t\t*commands = (*commands)[1:]\n\t} else if copylen < 136 {\n\t\tvar tail uint = copylen - 8\n\t\tvar code uint = (tail >> 5) + 54\n\t\tvar extra uint = tail & 31\n\t\t(*commands)[0] = uint32(code | extra<<8)\n\t\t*commands = (*commands)[1:]\n\t\t(*commands)[0] = 64\n\t\t*commands = (*commands)[1:]\n\t} else if copylen < 2120 {\n\t\tvar tail uint = copylen - 72\n\t\tvar nbits uint = uint(log2FloorNonZero(tail))\n\t\tvar code uint = nbits + 52\n\t\tvar extra uint = tail - (uint(1) << nbits)\n\t\t(*commands)[0] = uint32(code | extra<<8)\n\t\t*commands = (*commands)[1:]\n\t\t(*commands)[0] = 64\n\t\t*commands = (*commands)[1:]\n\t} else {\n\t\tvar extra uint = copylen - 2120\n\t\t(*commands)[0] = uint32(63 | extra<<8)\n\t\t*commands = (*commands)[1:]\n\t\t(*commands)[0] = 64\n\t\t*commands = (*commands)[1:]\n\t}\n}\n\nfunc emitDistance(distance uint32, commands *[]uint32) {\n\tvar d uint32 = distance + 3\n\tvar nbits uint32 = log2FloorNonZero(uint(d)) - 1\n\tvar prefix uint32 = (d >> nbits) & 1\n\tvar offset uint32 = (2 + prefix) << nbits\n\tvar distcode uint32 = 2*(nbits-1) + prefix + 80\n\tvar extra uint32 = d - offset\n\t(*commands)[0] = distcode | extra<<8\n\t*commands = (*commands)[1:]\n}\n\n/* REQUIRES: len <= 1 << 24. */\nfunc storeMetaBlockHeader(len uint, is_uncompressed bool, bw *bitWriter) {\n\tvar nibbles uint = 6\n\n\t/* ISLAST */\n\tbw.writeBits(1, 0)\n\n\tif len <= 1<<16 {\n\t\tnibbles = 4\n\t} else if len <= 1<<20 {\n\t\tnibbles = 5\n\t}\n\n\tbw.writeBits(2, uint64(nibbles)-4)\n\tbw.writeBits(nibbles*4, uint64(len)-1)\n\n\t/* ISUNCOMPRESSED */\n\tbw.writeSingleBit(is_uncompressed)\n}\n\nfunc createCommands(input []byte, block_size uint, input_size uint, base_ip_ptr []byte, table []int, table_bits uint, min_match uint, literals *[]byte, commands *[]uint32) {\n\tvar ip int = 0\n\tvar shift uint = 64 - table_bits\n\tvar ip_end int = int(block_size)\n\tvar base_ip int = -cap(base_ip_ptr) + cap(input)\n\tvar next_emit int = 0\n\tvar last_distance int = -1\n\t/* \"ip\" is the input pointer. */\n\n\tconst kInputMarginBytes uint = windowGap\n\n\t/* \"next_emit\" is a pointer to the first byte that is not covered by a\n\t   previous copy. Bytes between \"next_emit\" and the start of the next copy or\n\t   the end of the input will be emitted as literal bytes. */\n\tif block_size >= kInputMarginBytes {\n\t\tvar len_limit uint = brotli_min_size_t(block_size-min_match, input_size-kInputMarginBytes)\n\t\tvar ip_limit int = int(len_limit)\n\t\t/* For the last block, we need to keep a 16 bytes margin so that we can be\n\t\t   sure that all distances are at most window size - 16.\n\t\t   For all other blocks, we only need to keep a margin of 5 bytes so that\n\t\t   we don't go over the block size with a copy. */\n\n\t\tvar next_hash uint32\n\t\tip++\n\t\tfor next_hash = hash1(input[ip:], shift, min_match); ; {\n\t\t\tvar skip uint32 = 32\n\t\t\tvar next_ip int = ip\n\t\t\t/* Step 1: Scan forward in the input looking for a 6-byte-long match.\n\t\t\t   If we get close to exhausting the input then goto emit_remainder.\n\n\t\t\t   Heuristic match skipping: If 32 bytes are scanned with no matches\n\t\t\t   found, start looking only at every other byte. If 32 more bytes are\n\t\t\t   scanned, look at every third byte, etc.. When a match is found,\n\t\t\t   immediately go back to looking at every byte. This is a small loss\n\t\t\t   (~5% performance, ~0.1% density) for compressible data due to more\n\t\t\t   bookkeeping, but for non-compressible data (such as JPEG) it's a huge\n\t\t\t   win since the compressor quickly \"realizes\" the data is incompressible\n\t\t\t   and doesn't bother looking for matches everywhere.\n\n\t\t\t   The \"skip\" variable keeps track of how many bytes there are since the\n\t\t\t   last match; dividing it by 32 (ie. right-shifting by five) gives the\n\t\t\t   number of bytes to move ahead for each iteration. */\n\n\t\t\tvar candidate int\n\n\t\t\tassert(next_emit < ip)\n\n\t\ttrawl:\n\t\t\tfor {\n\t\t\t\tvar hash uint32 = next_hash\n\t\t\t\tvar bytes_between_hash_lookups uint32 = skip >> 5\n\t\t\t\tskip++\n\t\t\t\tip = next_ip\n\t\t\t\tassert(hash == hash1(input[ip:], shift, min_match))\n\t\t\t\tnext_ip = int(uint32(ip) + bytes_between_hash_lookups)\n\t\t\t\tif next_ip > ip_limit {\n\t\t\t\t\tgoto emit_remainder\n\t\t\t\t}\n\n\t\t\t\tnext_hash = hash1(input[next_ip:], shift, min_match)\n\t\t\t\tcandidate = ip - last_distance\n\t\t\t\tif isMatch1(input[ip:], base_ip_ptr[candidate-base_ip:], min_match) {\n\t\t\t\t\tif candidate < ip {\n\t\t\t\t\t\ttable[hash] = int(ip - base_ip)\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcandidate = base_ip + table[hash]\n\t\t\t\tassert(candidate >= base_ip)\n\t\t\t\tassert(candidate < ip)\n\n\t\t\t\ttable[hash] = int(ip - base_ip)\n\t\t\t\tif isMatch1(input[ip:], base_ip_ptr[candidate-base_ip:], min_match) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/* Check copy distance. If candidate is not feasible, continue search.\n\t\t\t   Checking is done outside of hot loop to reduce overhead. */\n\t\t\tif ip-candidate > maxDistance_compress_fragment {\n\t\t\t\tgoto trawl\n\t\t\t}\n\n\t\t\t/* Step 2: Emit the found match together with the literal bytes from\n\t\t\t   \"next_emit\", and then see if we can find a next match immediately\n\t\t\t   afterwards. Repeat until we find no match for the input\n\t\t\t   without emitting some literal bytes. */\n\t\t\t{\n\t\t\t\tvar base int = ip\n\t\t\t\t/* > 0 */\n\t\t\t\tvar matched uint = min_match + findMatchLengthWithLimit(base_ip_ptr[uint(candidate-base_ip)+min_match:], input[uint(ip)+min_match:], uint(ip_end-ip)-min_match)\n\t\t\t\tvar distance int = int(base - candidate)\n\t\t\t\t/* We have a 6-byte match at ip, and we need to emit bytes in\n\t\t\t\t   [next_emit, ip). */\n\n\t\t\t\tvar insert int = int(base - next_emit)\n\t\t\t\tip += int(matched)\n\t\t\t\temitInsertLen(uint32(insert), commands)\n\t\t\t\tcopy(*literals, input[next_emit:][:uint(insert)])\n\t\t\t\t*literals = (*literals)[insert:]\n\t\t\t\tif distance == last_distance {\n\t\t\t\t\t(*commands)[0] = 64\n\t\t\t\t\t*commands = (*commands)[1:]\n\t\t\t\t} else {\n\t\t\t\t\temitDistance(uint32(distance), commands)\n\t\t\t\t\tlast_distance = distance\n\t\t\t\t}\n\n\t\t\t\temitCopyLenLastDistance(matched, commands)\n\n\t\t\t\tnext_emit = ip\n\t\t\t\tif ip >= ip_limit {\n\t\t\t\t\tgoto emit_remainder\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tvar input_bytes uint64\n\t\t\t\t\tvar cur_hash uint32\n\t\t\t\t\t/* We could immediately start working at ip now, but to improve\n\t\t\t\t\t   compression we first update \"table\" with the hashes of some\n\t\t\t\t\t   positions within the last copy. */\n\n\t\t\t\t\tvar prev_hash uint32\n\t\t\t\t\tif min_match == 4 {\n\t\t\t\t\t\tinput_bytes = binary.LittleEndian.Uint64(input[ip-3:])\n\t\t\t\t\t\tcur_hash = hashBytesAtOffset(input_bytes, 3, shift, min_match)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 0, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 3)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 1, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 2)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 0, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 1)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tinput_bytes = binary.LittleEndian.Uint64(input[ip-5:])\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 0, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 5)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 1, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 4)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 2, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 3)\n\t\t\t\t\t\tinput_bytes = binary.LittleEndian.Uint64(input[ip-2:])\n\t\t\t\t\t\tcur_hash = hashBytesAtOffset(input_bytes, 2, shift, min_match)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 0, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 2)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 1, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 1)\n\t\t\t\t\t}\n\n\t\t\t\t\tcandidate = base_ip + table[cur_hash]\n\t\t\t\t\ttable[cur_hash] = int(ip - base_ip)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ip-candidate <= maxDistance_compress_fragment && isMatch1(input[ip:], base_ip_ptr[candidate-base_ip:], min_match) {\n\t\t\t\tvar base int = ip\n\t\t\t\t/* We have a 6-byte match at ip, and no need to emit any\n\t\t\t\t   literal bytes prior to ip. */\n\n\t\t\t\tvar matched uint = min_match + findMatchLengthWithLimit(base_ip_ptr[uint(candidate-base_ip)+min_match:], input[uint(ip)+min_match:], uint(ip_end-ip)-min_match)\n\t\t\t\tip += int(matched)\n\t\t\t\tlast_distance = int(base - candidate) /* > 0 */\n\t\t\t\temitCopyLen(matched, commands)\n\t\t\t\temitDistance(uint32(last_distance), commands)\n\n\t\t\t\tnext_emit = ip\n\t\t\t\tif ip >= ip_limit {\n\t\t\t\t\tgoto emit_remainder\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tvar input_bytes uint64\n\t\t\t\t\tvar cur_hash uint32\n\t\t\t\t\t/* We could immediately start working at ip now, but to improve\n\t\t\t\t\t   compression we first update \"table\" with the hashes of some\n\t\t\t\t\t   positions within the last copy. */\n\n\t\t\t\t\tvar prev_hash uint32\n\t\t\t\t\tif min_match == 4 {\n\t\t\t\t\t\tinput_bytes = binary.LittleEndian.Uint64(input[ip-3:])\n\t\t\t\t\t\tcur_hash = hashBytesAtOffset(input_bytes, 3, shift, min_match)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 0, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 3)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 1, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 2)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 2, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 1)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tinput_bytes = binary.LittleEndian.Uint64(input[ip-5:])\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 0, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 5)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 1, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 4)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 2, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 3)\n\t\t\t\t\t\tinput_bytes = binary.LittleEndian.Uint64(input[ip-2:])\n\t\t\t\t\t\tcur_hash = hashBytesAtOffset(input_bytes, 2, shift, min_match)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 0, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 2)\n\t\t\t\t\t\tprev_hash = hashBytesAtOffset(input_bytes, 1, shift, min_match)\n\t\t\t\t\t\ttable[prev_hash] = int(ip - base_ip - 1)\n\t\t\t\t\t}\n\n\t\t\t\t\tcandidate = base_ip + table[cur_hash]\n\t\t\t\t\ttable[cur_hash] = int(ip - base_ip)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tip++\n\t\t\tnext_hash = hash1(input[ip:], shift, min_match)\n\t\t}\n\t}\n\nemit_remainder:\n\tassert(next_emit <= ip_end)\n\n\t/* Emit the remaining bytes as literals. */\n\tif next_emit < ip_end {\n\t\tvar insert uint32 = uint32(ip_end - next_emit)\n\t\temitInsertLen(insert, commands)\n\t\tcopy(*literals, input[next_emit:][:insert])\n\t\t*literals = (*literals)[insert:]\n\t}\n}\n\nvar storeCommands_kNumExtraBits = [128]uint32{\n\t0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 12, 14, 24,\n\t0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4,\n\t0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 24,\n\t0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8,\n\t9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 16, 16,\n\t17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, 24, 24,\n}\nvar storeCommands_kInsertOffset = [24]uint32{\n\t0, 1, 2, 3, 4, 5, 6, 8, 10, 14, 18, 26, 34, 50, 66, 98, 130, 194, 322, 578,\n\t1090, 2114, 6210, 22594,\n}\n\nfunc storeCommands(literals []byte, num_literals uint, commands []uint32, num_commands uint, bw *bitWriter) {\n\tvar lit_depths [256]byte\n\tvar lit_bits [256]uint16\n\tvar lit_histo = [256]uint32{0}\n\tvar cmd_depths = [128]byte{0}\n\tvar cmd_bits = [128]uint16{0}\n\tvar cmd_histo = [128]uint32{0}\n\tvar i uint\n\tfor i = 0; i < num_literals; i++ {\n\t\tlit_histo[literals[i]]++\n\t}\n\n\tbuildAndStoreHuffmanTreeFast(lit_histo[:], num_literals, /* max_bits = */\n\t\t8, lit_depths[:], lit_bits[:], bw)\n\n\tfor i = 0; i < num_commands; i++ {\n\t\tvar code uint32 = commands[i] & 0xFF\n\t\tassert(code < 128)\n\t\tcmd_histo[code]++\n\t}\n\n\tcmd_histo[1] += 1\n\tcmd_histo[2] += 1\n\tcmd_histo[64] += 1\n\tcmd_histo[84] += 1\n\tbuildAndStoreCommandPrefixCode(cmd_histo[:], cmd_depths[:], cmd_bits[:], bw)\n\n\tfor i = 0; i < num_commands; i++ {\n\t\tvar cmd uint32 = commands[i]\n\t\tvar code uint32 = cmd & 0xFF\n\t\tvar extra uint32 = cmd >> 8\n\t\tassert(code < 128)\n\t\tbw.writeBits(uint(cmd_depths[code]), uint64(cmd_bits[code]))\n\t\tbw.writeBits(uint(storeCommands_kNumExtraBits[code]), uint64(extra))\n\t\tif code < 24 {\n\t\t\tvar insert uint32 = storeCommands_kInsertOffset[code] + extra\n\t\t\tvar j uint32\n\t\t\tfor j = 0; j < insert; j++ {\n\t\t\t\tvar lit byte = literals[0]\n\t\t\t\tbw.writeBits(uint(lit_depths[lit]), uint64(lit_bits[lit]))\n\t\t\t\tliterals = literals[1:]\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* Acceptable loss for uncompressible speedup is 2% */\nconst minRatio = 0.98\n\nconst sampleRate = 43\n\nfunc shouldCompress(input []byte, input_size uint, num_literals uint) bool {\n\tvar corpus_size float64 = float64(input_size)\n\tif float64(num_literals) < minRatio*corpus_size {\n\t\treturn true\n\t} else {\n\t\tvar literal_histo = [256]uint32{0}\n\t\tvar max_total_bit_cost float64 = corpus_size * 8 * minRatio / sampleRate\n\t\tvar i uint\n\t\tfor i = 0; i < input_size; i += sampleRate {\n\t\t\tliteral_histo[input[i]]++\n\t\t}\n\n\t\treturn bitsEntropy(literal_histo[:], 256) < max_total_bit_cost\n\t}\n}\n\nfunc emitUncompressedMetaBlock(input []byte, input_size uint, bw *bitWriter) {\n\tstoreMetaBlockHeader(input_size, true, bw)\n\tbw.jumpToByteBoundary()\n\tbw.writeBytes(input[:input_size])\n}\n\nfunc compressFragmentTwoPassImpl(input []byte, input_size uint, is_last bool, command_buf []uint32, literal_buf []byte, table []int, table_bits uint, min_match uint, bw *bitWriter) {\n\t/* Save the start of the first block for position and distance computations.\n\t */\n\tvar base_ip []byte = input\n\n\tfor input_size > 0 {\n\t\tvar block_size uint = brotli_min_size_t(input_size, kCompressFragmentTwoPassBlockSize)\n\t\tvar commands []uint32 = command_buf\n\t\tvar literals []byte = literal_buf\n\t\tvar num_literals uint\n\t\tcreateCommands(input, block_size, input_size, base_ip, table, table_bits, min_match, &literals, &commands)\n\t\tnum_literals = uint(-cap(literals) + cap(literal_buf))\n\t\tif shouldCompress(input, block_size, num_literals) {\n\t\t\tvar num_commands uint = uint(-cap(commands) + cap(command_buf))\n\t\t\tstoreMetaBlockHeader(block_size, false, bw)\n\n\t\t\t/* No block splits, no contexts. */\n\t\t\tbw.writeBits(13, 0)\n\n\t\t\tstoreCommands(literal_buf, num_literals, command_buf, num_commands, bw)\n\t\t} else {\n\t\t\t/* Since we did not find many backward references and the entropy of\n\t\t\t   the data is close to 8 bits, we can simply emit an uncompressed block.\n\t\t\t   This makes compression speed of uncompressible data about 3x faster. */\n\t\t\temitUncompressedMetaBlock(input, block_size, bw)\n\t\t}\n\n\t\tinput = input[block_size:]\n\t\tinput_size -= block_size\n\t}\n}\n\n/* Compresses \"input\" string to bw as one or more complete meta-blocks.\n\n   If \"is_last\" is 1, emits an additional empty last meta-block.\n\n   REQUIRES: \"input_size\" is greater than zero, or \"is_last\" is 1.\n   REQUIRES: \"input_size\" is less or equal to maximal metablock size (1 << 24).\n   REQUIRES: \"command_buf\" and \"literal_buf\" point to at least\n              kCompressFragmentTwoPassBlockSize long arrays.\n   REQUIRES: All elements in \"table[0..table_size-1]\" are initialized to zero.\n   REQUIRES: \"table_size\" is a power of two\n   OUTPUT: maximal copy distance <= |input_size|\n   OUTPUT: maximal copy distance <= BROTLI_MAX_BACKWARD_LIMIT(18) */\nfunc compressFragmentTwoPass(input []byte, input_size uint, is_last bool, command_buf []uint32, literal_buf []byte, table []int, table_size uint, bw *bitWriter) {\n\tvar initial_storage_ix uint = bw.getPos()\n\tvar table_bits uint = uint(log2FloorNonZero(table_size))\n\tvar min_match uint\n\tif table_bits <= 15 {\n\t\tmin_match = 4\n\t} else {\n\t\tmin_match = 6\n\t}\n\tcompressFragmentTwoPassImpl(input, input_size, is_last, command_buf, literal_buf, table, table_bits, min_match, bw)\n\n\t/* If output is larger than single uncompressed block, rewrite it. */\n\tif bw.getPos()-initial_storage_ix > 31+(input_size<<3) {\n\t\tbw.rewind(initial_storage_ix)\n\t\temitUncompressedMetaBlock(input, input_size, bw)\n\t}\n\n\tif is_last {\n\t\tbw.writeBits(1, 1) /* islast */\n\t\tbw.writeBits(1, 1) /* isempty */\n\t\tbw.jumpToByteBoundary()\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/constants.go",
    "content": "package brotli\n\n/* Copyright 2016 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Specification: 7.3. Encoding of the context map */\nconst contextMapMaxRle = 16\n\n/* Specification: 2. Compressed representation overview */\nconst maxNumberOfBlockTypes = 256\n\n/* Specification: 3.3. Alphabet sizes: insert-and-copy length */\nconst numLiteralSymbols = 256\n\nconst numCommandSymbols = 704\n\nconst numBlockLenSymbols = 26\n\nconst maxContextMapSymbols = (maxNumberOfBlockTypes + contextMapMaxRle)\n\nconst maxBlockTypeSymbols = (maxNumberOfBlockTypes + 2)\n\n/* Specification: 3.5. Complex prefix codes */\nconst repeatPreviousCodeLength = 16\n\nconst repeatZeroCodeLength = 17\n\nconst codeLengthCodes = (repeatZeroCodeLength + 1)\n\n/* \"code length of 8 is repeated\" */\nconst initialRepeatedCodeLength = 8\n\n/* \"Large Window Brotli\" */\nconst largeMaxDistanceBits = 62\n\nconst largeMinWbits = 10\n\nconst largeMaxWbits = 30\n\n/* Specification: 4. Encoding of distances */\nconst numDistanceShortCodes = 16\n\nconst maxNpostfix = 3\n\nconst maxNdirect = 120\n\nconst maxDistanceBits = 24\n\nfunc distanceAlphabetSize(NPOSTFIX uint, NDIRECT uint, MAXNBITS uint) uint {\n\treturn numDistanceShortCodes + NDIRECT + uint(MAXNBITS<<(NPOSTFIX+1))\n}\n\n/* numDistanceSymbols == 1128 */\nconst numDistanceSymbols = 1128\n\nconst maxDistance = 0x3FFFFFC\n\nconst maxAllowedDistance = 0x7FFFFFFC\n\n/* 7.1. Context modes and context ID lookup for literals */\n/* \"context IDs for literals are in the range of 0..63\" */\nconst literalContextBits = 6\n\n/* 7.2. Context ID for distances */\nconst distanceContextBits = 2\n\n/* 9.1. Format of the Stream Header */\n/* Number of slack bytes for window size. Don't confuse\n   with BROTLI_NUM_DISTANCE_SHORT_CODES. */\nconst windowGap = 16\n\nfunc maxBackwardLimit(W uint) uint {\n\treturn (uint(1) << W) - windowGap\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/context.go",
    "content": "package brotli\n\n/* Lookup table to map the previous two bytes to a context id.\n\nThere are four different context modeling modes defined here:\n  contextLSB6: context id is the least significant 6 bits of the last byte,\n  contextMSB6: context id is the most significant 6 bits of the last byte,\n  contextUTF8: second-order context model tuned for UTF8-encoded text,\n  contextSigned: second-order context model tuned for signed integers.\n\nIf |p1| and |p2| are the previous two bytes, and |mode| is current context\nmode, we calculate the context as:\n\n  context = ContextLut(mode)[p1] | ContextLut(mode)[p2 + 256].\n\nFor contextUTF8 mode, if the previous two bytes are ASCII characters\n(i.e. < 128), this will be equivalent to\n\n  context = 4 * context1(p1) + context2(p2),\n\nwhere context1 is based on the previous byte in the following way:\n\n  0  : non-ASCII control\n  1  : \\t, \\n, \\r\n  2  : space\n  3  : other punctuation\n  4  : \" '\n  5  : %\n  6  : ( < [ {\n  7  : ) > ] }\n  8  : , ; :\n  9  : .\n  10 : =\n  11 : number\n  12 : upper-case vowel\n  13 : upper-case consonant\n  14 : lower-case vowel\n  15 : lower-case consonant\n\nand context2 is based on the second last byte:\n\n  0 : control, space\n  1 : punctuation\n  2 : upper-case letter, number\n  3 : lower-case letter\n\nIf the last byte is ASCII, and the second last byte is not (in a valid UTF8\nstream it will be a continuation byte, value between 128 and 191), the\ncontext is the same as if the second last byte was an ASCII control or space.\n\nIf the last byte is a UTF8 lead byte (value >= 192), then the next byte will\nbe a continuation byte and the context id is 2 or 3 depending on the LSB of\nthe last byte and to a lesser extent on the second last byte if it is ASCII.\n\nIf the last byte is a UTF8 continuation byte, the second last byte can be:\n  - continuation byte: the next byte is probably ASCII or lead byte (assuming\n    4-byte UTF8 characters are rare) and the context id is 0 or 1.\n  - lead byte (192 - 207): next byte is ASCII or lead byte, context is 0 or 1\n  - lead byte (208 - 255): next byte is continuation byte, context is 2 or 3\n\nThe possible value combinations of the previous two bytes, the range of\ncontext ids and the type of the next byte is summarized in the table below:\n\n|--------\\-----------------------------------------------------------------|\n|         \\                         Last byte                              |\n| Second   \\---------------------------------------------------------------|\n| last byte \\    ASCII            |   cont. byte        |   lead byte      |\n|            \\   (0-127)          |   (128-191)         |   (192-)         |\n|=============|===================|=====================|==================|\n|  ASCII      | next: ASCII/lead  |  not valid          |  next: cont.     |\n|  (0-127)    | context: 4 - 63   |                     |  context: 2 - 3  |\n|-------------|-------------------|---------------------|------------------|\n|  cont. byte | next: ASCII/lead  |  next: ASCII/lead   |  next: cont.     |\n|  (128-191)  | context: 4 - 63   |  context: 0 - 1     |  context: 2 - 3  |\n|-------------|-------------------|---------------------|------------------|\n|  lead byte  | not valid         |  next: ASCII/lead   |  not valid       |\n|  (192-207)  |                   |  context: 0 - 1     |                  |\n|-------------|-------------------|---------------------|------------------|\n|  lead byte  | not valid         |  next: cont.        |  not valid       |\n|  (208-)     |                   |  context: 2 - 3     |                  |\n|-------------|-------------------|---------------------|------------------|\n*/\n\nconst (\n\tcontextLSB6   = 0\n\tcontextMSB6   = 1\n\tcontextUTF8   = 2\n\tcontextSigned = 3\n)\n\n/* Common context lookup table for all context modes. */\nvar kContextLookup = [2048]byte{\n\t/* CONTEXT_LSB6, last byte. */\n\t0,\n\t1,\n\t2,\n\t3,\n\t4,\n\t5,\n\t6,\n\t7,\n\t8,\n\t9,\n\t10,\n\t11,\n\t12,\n\t13,\n\t14,\n\t15,\n\t16,\n\t17,\n\t18,\n\t19,\n\t20,\n\t21,\n\t22,\n\t23,\n\t24,\n\t25,\n\t26,\n\t27,\n\t28,\n\t29,\n\t30,\n\t31,\n\t32,\n\t33,\n\t34,\n\t35,\n\t36,\n\t37,\n\t38,\n\t39,\n\t40,\n\t41,\n\t42,\n\t43,\n\t44,\n\t45,\n\t46,\n\t47,\n\t48,\n\t49,\n\t50,\n\t51,\n\t52,\n\t53,\n\t54,\n\t55,\n\t56,\n\t57,\n\t58,\n\t59,\n\t60,\n\t61,\n\t62,\n\t63,\n\t0,\n\t1,\n\t2,\n\t3,\n\t4,\n\t5,\n\t6,\n\t7,\n\t8,\n\t9,\n\t10,\n\t11,\n\t12,\n\t13,\n\t14,\n\t15,\n\t16,\n\t17,\n\t18,\n\t19,\n\t20,\n\t21,\n\t22,\n\t23,\n\t24,\n\t25,\n\t26,\n\t27,\n\t28,\n\t29,\n\t30,\n\t31,\n\t32,\n\t33,\n\t34,\n\t35,\n\t36,\n\t37,\n\t38,\n\t39,\n\t40,\n\t41,\n\t42,\n\t43,\n\t44,\n\t45,\n\t46,\n\t47,\n\t48,\n\t49,\n\t50,\n\t51,\n\t52,\n\t53,\n\t54,\n\t55,\n\t56,\n\t57,\n\t58,\n\t59,\n\t60,\n\t61,\n\t62,\n\t63,\n\t0,\n\t1,\n\t2,\n\t3,\n\t4,\n\t5,\n\t6,\n\t7,\n\t8,\n\t9,\n\t10,\n\t11,\n\t12,\n\t13,\n\t14,\n\t15,\n\t16,\n\t17,\n\t18,\n\t19,\n\t20,\n\t21,\n\t22,\n\t23,\n\t24,\n\t25,\n\t26,\n\t27,\n\t28,\n\t29,\n\t30,\n\t31,\n\t32,\n\t33,\n\t34,\n\t35,\n\t36,\n\t37,\n\t38,\n\t39,\n\t40,\n\t41,\n\t42,\n\t43,\n\t44,\n\t45,\n\t46,\n\t47,\n\t48,\n\t49,\n\t50,\n\t51,\n\t52,\n\t53,\n\t54,\n\t55,\n\t56,\n\t57,\n\t58,\n\t59,\n\t60,\n\t61,\n\t62,\n\t63,\n\t0,\n\t1,\n\t2,\n\t3,\n\t4,\n\t5,\n\t6,\n\t7,\n\t8,\n\t9,\n\t10,\n\t11,\n\t12,\n\t13,\n\t14,\n\t15,\n\t16,\n\t17,\n\t18,\n\t19,\n\t20,\n\t21,\n\t22,\n\t23,\n\t24,\n\t25,\n\t26,\n\t27,\n\t28,\n\t29,\n\t30,\n\t31,\n\t32,\n\t33,\n\t34,\n\t35,\n\t36,\n\t37,\n\t38,\n\t39,\n\t40,\n\t41,\n\t42,\n\t43,\n\t44,\n\t45,\n\t46,\n\t47,\n\t48,\n\t49,\n\t50,\n\t51,\n\t52,\n\t53,\n\t54,\n\t55,\n\t56,\n\t57,\n\t58,\n\t59,\n\t60,\n\t61,\n\t62,\n\t63,\n\n\t/* CONTEXT_LSB6, second last byte, */\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\n\t/* CONTEXT_MSB6, last byte. */\n\t0,\n\t0,\n\t0,\n\t0,\n\t1,\n\t1,\n\t1,\n\t1,\n\t2,\n\t2,\n\t2,\n\t2,\n\t3,\n\t3,\n\t3,\n\t3,\n\t4,\n\t4,\n\t4,\n\t4,\n\t5,\n\t5,\n\t5,\n\t5,\n\t6,\n\t6,\n\t6,\n\t6,\n\t7,\n\t7,\n\t7,\n\t7,\n\t8,\n\t8,\n\t8,\n\t8,\n\t9,\n\t9,\n\t9,\n\t9,\n\t10,\n\t10,\n\t10,\n\t10,\n\t11,\n\t11,\n\t11,\n\t11,\n\t12,\n\t12,\n\t12,\n\t12,\n\t13,\n\t13,\n\t13,\n\t13,\n\t14,\n\t14,\n\t14,\n\t14,\n\t15,\n\t15,\n\t15,\n\t15,\n\t16,\n\t16,\n\t16,\n\t16,\n\t17,\n\t17,\n\t17,\n\t17,\n\t18,\n\t18,\n\t18,\n\t18,\n\t19,\n\t19,\n\t19,\n\t19,\n\t20,\n\t20,\n\t20,\n\t20,\n\t21,\n\t21,\n\t21,\n\t21,\n\t22,\n\t22,\n\t22,\n\t22,\n\t23,\n\t23,\n\t23,\n\t23,\n\t24,\n\t24,\n\t24,\n\t24,\n\t25,\n\t25,\n\t25,\n\t25,\n\t26,\n\t26,\n\t26,\n\t26,\n\t27,\n\t27,\n\t27,\n\t27,\n\t28,\n\t28,\n\t28,\n\t28,\n\t29,\n\t29,\n\t29,\n\t29,\n\t30,\n\t30,\n\t30,\n\t30,\n\t31,\n\t31,\n\t31,\n\t31,\n\t32,\n\t32,\n\t32,\n\t32,\n\t33,\n\t33,\n\t33,\n\t33,\n\t34,\n\t34,\n\t34,\n\t34,\n\t35,\n\t35,\n\t35,\n\t35,\n\t36,\n\t36,\n\t36,\n\t36,\n\t37,\n\t37,\n\t37,\n\t37,\n\t38,\n\t38,\n\t38,\n\t38,\n\t39,\n\t39,\n\t39,\n\t39,\n\t40,\n\t40,\n\t40,\n\t40,\n\t41,\n\t41,\n\t41,\n\t41,\n\t42,\n\t42,\n\t42,\n\t42,\n\t43,\n\t43,\n\t43,\n\t43,\n\t44,\n\t44,\n\t44,\n\t44,\n\t45,\n\t45,\n\t45,\n\t45,\n\t46,\n\t46,\n\t46,\n\t46,\n\t47,\n\t47,\n\t47,\n\t47,\n\t48,\n\t48,\n\t48,\n\t48,\n\t49,\n\t49,\n\t49,\n\t49,\n\t50,\n\t50,\n\t50,\n\t50,\n\t51,\n\t51,\n\t51,\n\t51,\n\t52,\n\t52,\n\t52,\n\t52,\n\t53,\n\t53,\n\t53,\n\t53,\n\t54,\n\t54,\n\t54,\n\t54,\n\t55,\n\t55,\n\t55,\n\t55,\n\t56,\n\t56,\n\t56,\n\t56,\n\t57,\n\t57,\n\t57,\n\t57,\n\t58,\n\t58,\n\t58,\n\t58,\n\t59,\n\t59,\n\t59,\n\t59,\n\t60,\n\t60,\n\t60,\n\t60,\n\t61,\n\t61,\n\t61,\n\t61,\n\t62,\n\t62,\n\t62,\n\t62,\n\t63,\n\t63,\n\t63,\n\t63,\n\n\t/* CONTEXT_MSB6, second last byte, */\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\n\t/* CONTEXT_UTF8, last byte. */\n\t/* ASCII range. */\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4,\n\t4,\n\t0,\n\t0,\n\t4,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8,\n\t12,\n\t16,\n\t12,\n\t12,\n\t20,\n\t12,\n\t16,\n\t24,\n\t28,\n\t12,\n\t12,\n\t32,\n\t12,\n\t36,\n\t12,\n\t44,\n\t44,\n\t44,\n\t44,\n\t44,\n\t44,\n\t44,\n\t44,\n\t44,\n\t44,\n\t32,\n\t32,\n\t24,\n\t40,\n\t28,\n\t12,\n\t12,\n\t48,\n\t52,\n\t52,\n\t52,\n\t48,\n\t52,\n\t52,\n\t52,\n\t48,\n\t52,\n\t52,\n\t52,\n\t52,\n\t52,\n\t48,\n\t52,\n\t52,\n\t52,\n\t52,\n\t52,\n\t48,\n\t52,\n\t52,\n\t52,\n\t52,\n\t52,\n\t24,\n\t12,\n\t28,\n\t12,\n\t12,\n\t12,\n\t56,\n\t60,\n\t60,\n\t60,\n\t56,\n\t60,\n\t60,\n\t60,\n\t56,\n\t60,\n\t60,\n\t60,\n\t60,\n\t60,\n\t56,\n\t60,\n\t60,\n\t60,\n\t60,\n\t60,\n\t56,\n\t60,\n\t60,\n\t60,\n\t60,\n\t60,\n\t24,\n\t12,\n\t28,\n\t12,\n\t0,\n\n\t/* UTF8 continuation byte range. */\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\n\t/* UTF8 lead byte range. */\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\t2,\n\t3,\n\n\t/* CONTEXT_UTF8 second last byte. */\n\t/* ASCII range. */\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t1,\n\t1,\n\t1,\n\t1,\n\t0,\n\n\t/* UTF8 continuation byte range. */\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\n\t/* UTF8 lead byte range. */\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\n\t/* CONTEXT_SIGNED, last byte, same as the above values shifted by 3 bits. */\n\t0,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t8,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t16,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t32,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t40,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t56,\n\n\t/* CONTEXT_SIGNED, second last byte. */\n\t0,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t1,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t2,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t3,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t4,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t5,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t7,\n}\n\ntype contextLUT []byte\n\nfunc getContextLUT(mode int) contextLUT {\n\treturn kContextLookup[mode<<9:]\n}\n\nfunc getContext(p1 byte, p2 byte, lut contextLUT) byte {\n\treturn lut[p1] | lut[256+int(p2)]\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/decode.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\nconst (\n\tdecoderResultError           = 0\n\tdecoderResultSuccess         = 1\n\tdecoderResultNeedsMoreInput  = 2\n\tdecoderResultNeedsMoreOutput = 3\n)\n\n/**\n * Error code for detailed logging / production debugging.\n *\n * See ::BrotliDecoderGetErrorCode and ::BROTLI_LAST_ERROR_CODE.\n */\nconst (\n\tdecoderNoError                          = 0\n\tdecoderSuccess                          = 1\n\tdecoderNeedsMoreInput                   = 2\n\tdecoderNeedsMoreOutput                  = 3\n\tdecoderErrorFormatExuberantNibble       = -1\n\tdecoderErrorFormatReserved              = -2\n\tdecoderErrorFormatExuberantMetaNibble   = -3\n\tdecoderErrorFormatSimpleHuffmanAlphabet = -4\n\tdecoderErrorFormatSimpleHuffmanSame     = -5\n\tdecoderErrorFormatClSpace               = -6\n\tdecoderErrorFormatHuffmanSpace          = -7\n\tdecoderErrorFormatContextMapRepeat      = -8\n\tdecoderErrorFormatBlockLength1          = -9\n\tdecoderErrorFormatBlockLength2          = -10\n\tdecoderErrorFormatTransform             = -11\n\tdecoderErrorFormatDictionary            = -12\n\tdecoderErrorFormatWindowBits            = -13\n\tdecoderErrorFormatPadding1              = -14\n\tdecoderErrorFormatPadding2              = -15\n\tdecoderErrorFormatDistance              = -16\n\tdecoderErrorDictionaryNotSet            = -19\n\tdecoderErrorInvalidArguments            = -20\n\tdecoderErrorAllocContextModes           = -21\n\tdecoderErrorAllocTreeGroups             = -22\n\tdecoderErrorAllocContextMap             = -25\n\tdecoderErrorAllocRingBuffer1            = -26\n\tdecoderErrorAllocRingBuffer2            = -27\n\tdecoderErrorAllocBlockTypeTrees         = -30\n\tdecoderErrorUnreachable                 = -31\n)\n\n/**\n * The value of the last error code, negative integer.\n *\n * All other error code values are in the range from ::lastErrorCode\n * to @c -1. There are also 4 other possible non-error codes @c 0 .. @c 3 in\n * ::BrotliDecoderErrorCode enumeration.\n */\nconst lastErrorCode = decoderErrorUnreachable\n\n/** Options to be used with ::BrotliDecoderSetParameter. */\nconst (\n\tdecoderParamDisableRingBufferReallocation = 0\n\tdecoderParamLargeWindow                   = 1\n)\n\nconst huffmanTableBits = 8\n\nconst huffmanTableMask = 0xFF\n\n/* We need the slack region for the following reasons:\n   - doing up to two 16-byte copies for fast backward copying\n   - inserting transformed dictionary word (5 prefix + 24 base + 8 suffix) */\nconst kRingBufferWriteAheadSlack uint32 = 42\n\nvar kCodeLengthCodeOrder = [codeLengthCodes]byte{1, 2, 3, 4, 0, 5, 17, 6, 16, 7, 8, 9, 10, 11, 12, 13, 14, 15}\n\n/* Static prefix code for the complex code length code lengths. */\nvar kCodeLengthPrefixLength = [16]byte{2, 2, 2, 3, 2, 2, 2, 4, 2, 2, 2, 3, 2, 2, 2, 4}\n\nvar kCodeLengthPrefixValue = [16]byte{0, 4, 3, 2, 0, 4, 3, 1, 0, 4, 3, 2, 0, 4, 3, 5}\n\nfunc decoderSetParameter(state *Reader, p int, value uint32) bool {\n\tif state.state != stateUninited {\n\t\treturn false\n\t}\n\tswitch p {\n\tcase decoderParamDisableRingBufferReallocation:\n\t\tif !(value == 0) {\n\t\t\tstate.canny_ringbuffer_allocation = 0\n\t\t} else {\n\t\t\tstate.canny_ringbuffer_allocation = 1\n\t\t}\n\t\treturn true\n\n\tcase decoderParamLargeWindow:\n\t\tstate.large_window = (!(value == 0))\n\t\treturn true\n\n\tdefault:\n\t\treturn false\n\t}\n}\n\n/* Saves error code and converts it to BrotliDecoderResult. */\nfunc saveErrorCode(s *Reader, e int) int {\n\ts.error_code = int(e)\n\tswitch e {\n\tcase decoderSuccess:\n\t\treturn decoderResultSuccess\n\n\tcase decoderNeedsMoreInput:\n\t\treturn decoderResultNeedsMoreInput\n\n\tcase decoderNeedsMoreOutput:\n\t\treturn decoderResultNeedsMoreOutput\n\n\tdefault:\n\t\treturn decoderResultError\n\t}\n}\n\n/* Decodes WBITS by reading 1 - 7 bits, or 0x11 for \"Large Window Brotli\".\n   Precondition: bit-reader accumulator has at least 8 bits. */\nfunc decodeWindowBits(s *Reader, br *bitReader) int {\n\tvar n uint32\n\tvar large_window bool = s.large_window\n\ts.large_window = false\n\ttakeBits(br, 1, &n)\n\tif n == 0 {\n\t\ts.window_bits = 16\n\t\treturn decoderSuccess\n\t}\n\n\ttakeBits(br, 3, &n)\n\tif n != 0 {\n\t\ts.window_bits = 17 + n\n\t\treturn decoderSuccess\n\t}\n\n\ttakeBits(br, 3, &n)\n\tif n == 1 {\n\t\tif large_window {\n\t\t\ttakeBits(br, 1, &n)\n\t\t\tif n == 1 {\n\t\t\t\treturn decoderErrorFormatWindowBits\n\t\t\t}\n\n\t\t\ts.large_window = true\n\t\t\treturn decoderSuccess\n\t\t} else {\n\t\t\treturn decoderErrorFormatWindowBits\n\t\t}\n\t}\n\n\tif n != 0 {\n\t\ts.window_bits = 8 + n\n\t\treturn decoderSuccess\n\t}\n\n\ts.window_bits = 17\n\treturn decoderSuccess\n}\n\n/* Decodes a number in the range [0..255], by reading 1 - 11 bits. */\nfunc decodeVarLenUint8(s *Reader, br *bitReader, value *uint32) int {\n\tvar bits uint32\n\tswitch s.substate_decode_uint8 {\n\tcase stateDecodeUint8None:\n\t\tif !safeReadBits(br, 1, &bits) {\n\t\t\treturn decoderNeedsMoreInput\n\t\t}\n\n\t\tif bits == 0 {\n\t\t\t*value = 0\n\t\t\treturn decoderSuccess\n\t\t}\n\t\tfallthrough\n\n\t\t/* Fall through. */\n\tcase stateDecodeUint8Short:\n\t\tif !safeReadBits(br, 3, &bits) {\n\t\t\ts.substate_decode_uint8 = stateDecodeUint8Short\n\t\t\treturn decoderNeedsMoreInput\n\t\t}\n\n\t\tif bits == 0 {\n\t\t\t*value = 1\n\t\t\ts.substate_decode_uint8 = stateDecodeUint8None\n\t\t\treturn decoderSuccess\n\t\t}\n\n\t\t/* Use output value as a temporary storage. It MUST be persisted. */\n\t\t*value = bits\n\t\tfallthrough\n\n\t\t/* Fall through. */\n\tcase stateDecodeUint8Long:\n\t\tif !safeReadBits(br, *value, &bits) {\n\t\t\ts.substate_decode_uint8 = stateDecodeUint8Long\n\t\t\treturn decoderNeedsMoreInput\n\t\t}\n\n\t\t*value = (1 << *value) + bits\n\t\ts.substate_decode_uint8 = stateDecodeUint8None\n\t\treturn decoderSuccess\n\n\tdefault:\n\t\treturn decoderErrorUnreachable\n\t}\n}\n\n/* Decodes a metablock length and flags by reading 2 - 31 bits. */\nfunc decodeMetaBlockLength(s *Reader, br *bitReader) int {\n\tvar bits uint32\n\tvar i int\n\tfor {\n\t\tswitch s.substate_metablock_header {\n\t\tcase stateMetablockHeaderNone:\n\t\t\tif !safeReadBits(br, 1, &bits) {\n\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t}\n\n\t\t\tif bits != 0 {\n\t\t\t\ts.is_last_metablock = 1\n\t\t\t} else {\n\t\t\t\ts.is_last_metablock = 0\n\t\t\t}\n\t\t\ts.meta_block_remaining_len = 0\n\t\t\ts.is_uncompressed = 0\n\t\t\ts.is_metadata = 0\n\t\t\tif s.is_last_metablock == 0 {\n\t\t\t\ts.substate_metablock_header = stateMetablockHeaderNibbles\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.substate_metablock_header = stateMetablockHeaderEmpty\n\t\t\tfallthrough\n\n\t\t\t/* Fall through. */\n\t\tcase stateMetablockHeaderEmpty:\n\t\t\tif !safeReadBits(br, 1, &bits) {\n\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t}\n\n\t\t\tif bits != 0 {\n\t\t\t\ts.substate_metablock_header = stateMetablockHeaderNone\n\t\t\t\treturn decoderSuccess\n\t\t\t}\n\n\t\t\ts.substate_metablock_header = stateMetablockHeaderNibbles\n\t\t\tfallthrough\n\n\t\t\t/* Fall through. */\n\t\tcase stateMetablockHeaderNibbles:\n\t\t\tif !safeReadBits(br, 2, &bits) {\n\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t}\n\n\t\t\ts.size_nibbles = uint(byte(bits + 4))\n\t\t\ts.loop_counter = 0\n\t\t\tif bits == 3 {\n\t\t\t\ts.is_metadata = 1\n\t\t\t\ts.substate_metablock_header = stateMetablockHeaderReserved\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.substate_metablock_header = stateMetablockHeaderSize\n\t\t\tfallthrough\n\n\t\t\t/* Fall through. */\n\t\tcase stateMetablockHeaderSize:\n\t\t\ti = s.loop_counter\n\n\t\t\tfor ; i < int(s.size_nibbles); i++ {\n\t\t\t\tif !safeReadBits(br, 4, &bits) {\n\t\t\t\t\ts.loop_counter = i\n\t\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t\t}\n\n\t\t\t\tif uint(i+1) == s.size_nibbles && s.size_nibbles > 4 && bits == 0 {\n\t\t\t\t\treturn decoderErrorFormatExuberantNibble\n\t\t\t\t}\n\n\t\t\t\ts.meta_block_remaining_len |= int(bits << uint(i*4))\n\t\t\t}\n\n\t\t\ts.substate_metablock_header = stateMetablockHeaderUncompressed\n\t\t\tfallthrough\n\n\t\t\t/* Fall through. */\n\t\tcase stateMetablockHeaderUncompressed:\n\t\t\tif s.is_last_metablock == 0 {\n\t\t\t\tif !safeReadBits(br, 1, &bits) {\n\t\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t\t}\n\n\t\t\t\tif bits != 0 {\n\t\t\t\t\ts.is_uncompressed = 1\n\t\t\t\t} else {\n\t\t\t\t\ts.is_uncompressed = 0\n\t\t\t\t}\n\t\t\t}\n\n\t\t\ts.meta_block_remaining_len++\n\t\t\ts.substate_metablock_header = stateMetablockHeaderNone\n\t\t\treturn decoderSuccess\n\n\t\tcase stateMetablockHeaderReserved:\n\t\t\tif !safeReadBits(br, 1, &bits) {\n\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t}\n\n\t\t\tif bits != 0 {\n\t\t\t\treturn decoderErrorFormatReserved\n\t\t\t}\n\n\t\t\ts.substate_metablock_header = stateMetablockHeaderBytes\n\t\t\tfallthrough\n\n\t\t\t/* Fall through. */\n\t\tcase stateMetablockHeaderBytes:\n\t\t\tif !safeReadBits(br, 2, &bits) {\n\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t}\n\n\t\t\tif bits == 0 {\n\t\t\t\ts.substate_metablock_header = stateMetablockHeaderNone\n\t\t\t\treturn decoderSuccess\n\t\t\t}\n\n\t\t\ts.size_nibbles = uint(byte(bits))\n\t\t\ts.substate_metablock_header = stateMetablockHeaderMetadata\n\t\t\tfallthrough\n\n\t\t\t/* Fall through. */\n\t\tcase stateMetablockHeaderMetadata:\n\t\t\ti = s.loop_counter\n\n\t\t\tfor ; i < int(s.size_nibbles); i++ {\n\t\t\t\tif !safeReadBits(br, 8, &bits) {\n\t\t\t\t\ts.loop_counter = i\n\t\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t\t}\n\n\t\t\t\tif uint(i+1) == s.size_nibbles && s.size_nibbles > 1 && bits == 0 {\n\t\t\t\t\treturn decoderErrorFormatExuberantMetaNibble\n\t\t\t\t}\n\n\t\t\t\ts.meta_block_remaining_len |= int(bits << uint(i*8))\n\t\t\t}\n\n\t\t\ts.meta_block_remaining_len++\n\t\t\ts.substate_metablock_header = stateMetablockHeaderNone\n\t\t\treturn decoderSuccess\n\n\t\tdefault:\n\t\t\treturn decoderErrorUnreachable\n\t\t}\n\t}\n}\n\n/* Decodes the Huffman code.\n   This method doesn't read data from the bit reader, BUT drops the amount of\n   bits that correspond to the decoded symbol.\n   bits MUST contain at least 15 (BROTLI_HUFFMAN_MAX_CODE_LENGTH) valid bits. */\nfunc decodeSymbol(bits uint32, table []huffmanCode, br *bitReader) uint32 {\n\ttable = table[bits&huffmanTableMask:]\n\tif table[0].bits > huffmanTableBits {\n\t\tvar nbits uint32 = uint32(table[0].bits) - huffmanTableBits\n\t\tdropBits(br, huffmanTableBits)\n\t\ttable = table[uint32(table[0].value)+((bits>>huffmanTableBits)&bitMask(nbits)):]\n\t}\n\n\tdropBits(br, uint32(table[0].bits))\n\treturn uint32(table[0].value)\n}\n\n/* Reads and decodes the next Huffman code from bit-stream.\n   This method peeks 16 bits of input and drops 0 - 15 of them. */\nfunc readSymbol(table []huffmanCode, br *bitReader) uint32 {\n\treturn decodeSymbol(get16BitsUnmasked(br), table, br)\n}\n\n/* Same as DecodeSymbol, but it is known that there is less than 15 bits of\n   input are currently available. */\nfunc safeDecodeSymbol(table []huffmanCode, br *bitReader, result *uint32) bool {\n\tvar val uint32\n\tvar available_bits uint32 = getAvailableBits(br)\n\tif available_bits == 0 {\n\t\tif table[0].bits == 0 {\n\t\t\t*result = uint32(table[0].value)\n\t\t\treturn true\n\t\t}\n\n\t\treturn false /* No valid bits at all. */\n\t}\n\n\tval = uint32(getBitsUnmasked(br))\n\ttable = table[val&huffmanTableMask:]\n\tif table[0].bits <= huffmanTableBits {\n\t\tif uint32(table[0].bits) <= available_bits {\n\t\t\tdropBits(br, uint32(table[0].bits))\n\t\t\t*result = uint32(table[0].value)\n\t\t\treturn true\n\t\t} else {\n\t\t\treturn false /* Not enough bits for the first level. */\n\t\t}\n\t}\n\n\tif available_bits <= huffmanTableBits {\n\t\treturn false /* Not enough bits to move to the second level. */\n\t}\n\n\t/* Speculatively drop HUFFMAN_TABLE_BITS. */\n\tval = (val & bitMask(uint32(table[0].bits))) >> huffmanTableBits\n\n\tavailable_bits -= huffmanTableBits\n\ttable = table[uint32(table[0].value)+val:]\n\tif available_bits < uint32(table[0].bits) {\n\t\treturn false /* Not enough bits for the second level. */\n\t}\n\n\tdropBits(br, huffmanTableBits+uint32(table[0].bits))\n\t*result = uint32(table[0].value)\n\treturn true\n}\n\nfunc safeReadSymbol(table []huffmanCode, br *bitReader, result *uint32) bool {\n\tvar val uint32\n\tif safeGetBits(br, 15, &val) {\n\t\t*result = decodeSymbol(val, table, br)\n\t\treturn true\n\t}\n\n\treturn safeDecodeSymbol(table, br, result)\n}\n\n/* Makes a look-up in first level Huffman table. Peeks 8 bits. */\nfunc preloadSymbol(safe int, table []huffmanCode, br *bitReader, bits *uint32, value *uint32) {\n\tif safe != 0 {\n\t\treturn\n\t}\n\n\ttable = table[getBits(br, huffmanTableBits):]\n\t*bits = uint32(table[0].bits)\n\t*value = uint32(table[0].value)\n}\n\n/* Decodes the next Huffman code using data prepared by PreloadSymbol.\n   Reads 0 - 15 bits. Also peeks 8 following bits. */\nfunc readPreloadedSymbol(table []huffmanCode, br *bitReader, bits *uint32, value *uint32) uint32 {\n\tvar result uint32 = *value\n\tvar ext []huffmanCode\n\tif *bits > huffmanTableBits {\n\t\tvar val uint32 = get16BitsUnmasked(br)\n\t\text = table[val&huffmanTableMask:][*value:]\n\t\tvar mask uint32 = bitMask((*bits - huffmanTableBits))\n\t\tdropBits(br, huffmanTableBits)\n\t\text = ext[(val>>huffmanTableBits)&mask:]\n\t\tdropBits(br, uint32(ext[0].bits))\n\t\tresult = uint32(ext[0].value)\n\t} else {\n\t\tdropBits(br, *bits)\n\t}\n\n\tpreloadSymbol(0, table, br, bits, value)\n\treturn result\n}\n\nfunc log2Floor(x uint32) uint32 {\n\tvar result uint32 = 0\n\tfor x != 0 {\n\t\tx >>= 1\n\t\tresult++\n\t}\n\n\treturn result\n}\n\n/* Reads (s->symbol + 1) symbols.\n   Totally 1..4 symbols are read, 1..11 bits each.\n   The list of symbols MUST NOT contain duplicates. */\nfunc readSimpleHuffmanSymbols(alphabet_size uint32, max_symbol uint32, s *Reader) int {\n\tvar br *bitReader = &s.br\n\tvar max_bits uint32 = log2Floor(alphabet_size - 1)\n\tvar i uint32 = s.sub_loop_counter\n\t/* max_bits == 1..11; symbol == 0..3; 1..44 bits will be read. */\n\n\tvar num_symbols uint32 = s.symbol\n\tfor i <= num_symbols {\n\t\tvar v uint32\n\t\tif !safeReadBits(br, max_bits, &v) {\n\t\t\ts.sub_loop_counter = i\n\t\t\ts.substate_huffman = stateHuffmanSimpleRead\n\t\t\treturn decoderNeedsMoreInput\n\t\t}\n\n\t\tif v >= max_symbol {\n\t\t\treturn decoderErrorFormatSimpleHuffmanAlphabet\n\t\t}\n\n\t\ts.symbols_lists_array[i] = uint16(v)\n\t\ti++\n\t}\n\n\tfor i = 0; i < num_symbols; i++ {\n\t\tvar k uint32 = i + 1\n\t\tfor ; k <= num_symbols; k++ {\n\t\t\tif s.symbols_lists_array[i] == s.symbols_lists_array[k] {\n\t\t\t\treturn decoderErrorFormatSimpleHuffmanSame\n\t\t\t}\n\t\t}\n\t}\n\n\treturn decoderSuccess\n}\n\n/* Process single decoded symbol code length:\n   A) reset the repeat variable\n   B) remember code length (if it is not 0)\n   C) extend corresponding index-chain\n   D) reduce the Huffman space\n   E) update the histogram */\nfunc processSingleCodeLength(code_len uint32, symbol *uint32, repeat *uint32, space *uint32, prev_code_len *uint32, symbol_lists symbolList, code_length_histo []uint16, next_symbol []int) {\n\t*repeat = 0\n\tif code_len != 0 { /* code_len == 1..15 */\n\t\tsymbolListPut(symbol_lists, next_symbol[code_len], uint16(*symbol))\n\t\tnext_symbol[code_len] = int(*symbol)\n\t\t*prev_code_len = code_len\n\t\t*space -= 32768 >> code_len\n\t\tcode_length_histo[code_len]++\n\t}\n\n\t(*symbol)++\n}\n\n/* Process repeated symbol code length.\n    A) Check if it is the extension of previous repeat sequence; if the decoded\n       value is not BROTLI_REPEAT_PREVIOUS_CODE_LENGTH, then it is a new\n       symbol-skip\n    B) Update repeat variable\n    C) Check if operation is feasible (fits alphabet)\n    D) For each symbol do the same operations as in ProcessSingleCodeLength\n\n   PRECONDITION: code_len == BROTLI_REPEAT_PREVIOUS_CODE_LENGTH or\n                 code_len == BROTLI_REPEAT_ZERO_CODE_LENGTH */\nfunc processRepeatedCodeLength(code_len uint32, repeat_delta uint32, alphabet_size uint32, symbol *uint32, repeat *uint32, space *uint32, prev_code_len *uint32, repeat_code_len *uint32, symbol_lists symbolList, code_length_histo []uint16, next_symbol []int) {\n\tvar old_repeat uint32 /* for BROTLI_REPEAT_ZERO_CODE_LENGTH */ /* for BROTLI_REPEAT_ZERO_CODE_LENGTH */\n\tvar extra_bits uint32 = 3\n\tvar new_len uint32 = 0\n\tif code_len == repeatPreviousCodeLength {\n\t\tnew_len = *prev_code_len\n\t\textra_bits = 2\n\t}\n\n\tif *repeat_code_len != new_len {\n\t\t*repeat = 0\n\t\t*repeat_code_len = new_len\n\t}\n\n\told_repeat = *repeat\n\tif *repeat > 0 {\n\t\t*repeat -= 2\n\t\t*repeat <<= extra_bits\n\t}\n\n\t*repeat += repeat_delta + 3\n\trepeat_delta = *repeat - old_repeat\n\tif *symbol+repeat_delta > alphabet_size {\n\t\t*symbol = alphabet_size\n\t\t*space = 0xFFFFF\n\t\treturn\n\t}\n\n\tif *repeat_code_len != 0 {\n\t\tvar last uint = uint(*symbol + repeat_delta)\n\t\tvar next int = next_symbol[*repeat_code_len]\n\t\tfor {\n\t\t\tsymbolListPut(symbol_lists, next, uint16(*symbol))\n\t\t\tnext = int(*symbol)\n\t\t\t(*symbol)++\n\t\t\tif (*symbol) == uint32(last) {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tnext_symbol[*repeat_code_len] = next\n\t\t*space -= repeat_delta << (15 - *repeat_code_len)\n\t\tcode_length_histo[*repeat_code_len] = uint16(uint32(code_length_histo[*repeat_code_len]) + repeat_delta)\n\t} else {\n\t\t*symbol += repeat_delta\n\t}\n}\n\n/* Reads and decodes symbol codelengths. */\nfunc readSymbolCodeLengths(alphabet_size uint32, s *Reader) int {\n\tvar br *bitReader = &s.br\n\tvar symbol uint32 = s.symbol\n\tvar repeat uint32 = s.repeat\n\tvar space uint32 = s.space\n\tvar prev_code_len uint32 = s.prev_code_len\n\tvar repeat_code_len uint32 = s.repeat_code_len\n\tvar symbol_lists symbolList = s.symbol_lists\n\tvar code_length_histo []uint16 = s.code_length_histo[:]\n\tvar next_symbol []int = s.next_symbol[:]\n\tif !warmupBitReader(br) {\n\t\treturn decoderNeedsMoreInput\n\t}\n\tvar p []huffmanCode\n\tfor symbol < alphabet_size && space > 0 {\n\t\tp = s.table[:]\n\t\tvar code_len uint32\n\t\tif !checkInputAmount(br, shortFillBitWindowRead) {\n\t\t\ts.symbol = symbol\n\t\t\ts.repeat = repeat\n\t\t\ts.prev_code_len = prev_code_len\n\t\t\ts.repeat_code_len = repeat_code_len\n\t\t\ts.space = space\n\t\t\treturn decoderNeedsMoreInput\n\t\t}\n\n\t\tfillBitWindow16(br)\n\t\tp = p[getBitsUnmasked(br)&uint64(bitMask(huffmanMaxCodeLengthCodeLength)):]\n\t\tdropBits(br, uint32(p[0].bits)) /* Use 1..5 bits. */\n\t\tcode_len = uint32(p[0].value)   /* code_len == 0..17 */\n\t\tif code_len < repeatPreviousCodeLength {\n\t\t\tprocessSingleCodeLength(code_len, &symbol, &repeat, &space, &prev_code_len, symbol_lists, code_length_histo, next_symbol) /* code_len == 16..17, extra_bits == 2..3 */\n\t\t} else {\n\t\t\tvar extra_bits uint32\n\t\t\tif code_len == repeatPreviousCodeLength {\n\t\t\t\textra_bits = 2\n\t\t\t} else {\n\t\t\t\textra_bits = 3\n\t\t\t}\n\t\t\tvar repeat_delta uint32 = uint32(getBitsUnmasked(br)) & bitMask(extra_bits)\n\t\t\tdropBits(br, extra_bits)\n\t\t\tprocessRepeatedCodeLength(code_len, repeat_delta, alphabet_size, &symbol, &repeat, &space, &prev_code_len, &repeat_code_len, symbol_lists, code_length_histo, next_symbol)\n\t\t}\n\t}\n\n\ts.space = space\n\treturn decoderSuccess\n}\n\nfunc safeReadSymbolCodeLengths(alphabet_size uint32, s *Reader) int {\n\tvar br *bitReader = &s.br\n\tvar get_byte bool = false\n\tvar p []huffmanCode\n\tfor s.symbol < alphabet_size && s.space > 0 {\n\t\tp = s.table[:]\n\t\tvar code_len uint32\n\t\tvar available_bits uint32\n\t\tvar bits uint32 = 0\n\t\tif get_byte && !pullByte(br) {\n\t\t\treturn decoderNeedsMoreInput\n\t\t}\n\t\tget_byte = false\n\t\tavailable_bits = getAvailableBits(br)\n\t\tif available_bits != 0 {\n\t\t\tbits = uint32(getBitsUnmasked(br))\n\t\t}\n\n\t\tp = p[bits&bitMask(huffmanMaxCodeLengthCodeLength):]\n\t\tif uint32(p[0].bits) > available_bits {\n\t\t\tget_byte = true\n\t\t\tcontinue\n\t\t}\n\n\t\tcode_len = uint32(p[0].value) /* code_len == 0..17 */\n\t\tif code_len < repeatPreviousCodeLength {\n\t\t\tdropBits(br, uint32(p[0].bits))\n\t\t\tprocessSingleCodeLength(code_len, &s.symbol, &s.repeat, &s.space, &s.prev_code_len, s.symbol_lists, s.code_length_histo[:], s.next_symbol[:]) /* code_len == 16..17, extra_bits == 2..3 */\n\t\t} else {\n\t\t\tvar extra_bits uint32 = code_len - 14\n\t\t\tvar repeat_delta uint32 = (bits >> p[0].bits) & bitMask(extra_bits)\n\t\t\tif available_bits < uint32(p[0].bits)+extra_bits {\n\t\t\t\tget_byte = true\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tdropBits(br, uint32(p[0].bits)+extra_bits)\n\t\t\tprocessRepeatedCodeLength(code_len, repeat_delta, alphabet_size, &s.symbol, &s.repeat, &s.space, &s.prev_code_len, &s.repeat_code_len, s.symbol_lists, s.code_length_histo[:], s.next_symbol[:])\n\t\t}\n\t}\n\n\treturn decoderSuccess\n}\n\n/* Reads and decodes 15..18 codes using static prefix code.\n   Each code is 2..4 bits long. In total 30..72 bits are used. */\nfunc readCodeLengthCodeLengths(s *Reader) int {\n\tvar br *bitReader = &s.br\n\tvar num_codes uint32 = s.repeat\n\tvar space uint32 = s.space\n\tvar i uint32 = s.sub_loop_counter\n\tfor ; i < codeLengthCodes; i++ {\n\t\tvar code_len_idx byte = kCodeLengthCodeOrder[i]\n\t\tvar ix uint32\n\t\tvar v uint32\n\t\tif !safeGetBits(br, 4, &ix) {\n\t\t\tvar available_bits uint32 = getAvailableBits(br)\n\t\t\tif available_bits != 0 {\n\t\t\t\tix = uint32(getBitsUnmasked(br) & 0xF)\n\t\t\t} else {\n\t\t\t\tix = 0\n\t\t\t}\n\n\t\t\tif uint32(kCodeLengthPrefixLength[ix]) > available_bits {\n\t\t\t\ts.sub_loop_counter = i\n\t\t\t\ts.repeat = num_codes\n\t\t\t\ts.space = space\n\t\t\t\ts.substate_huffman = stateHuffmanComplex\n\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t}\n\t\t}\n\n\t\tv = uint32(kCodeLengthPrefixValue[ix])\n\t\tdropBits(br, uint32(kCodeLengthPrefixLength[ix]))\n\t\ts.code_length_code_lengths[code_len_idx] = byte(v)\n\t\tif v != 0 {\n\t\t\tspace = space - (32 >> v)\n\t\t\tnum_codes++\n\t\t\ts.code_length_histo[v]++\n\t\t\tif space-1 >= 32 {\n\t\t\t\t/* space is 0 or wrapped around. */\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\tif num_codes != 1 && space != 0 {\n\t\treturn decoderErrorFormatClSpace\n\t}\n\n\treturn decoderSuccess\n}\n\n/* Decodes the Huffman tables.\n   There are 2 scenarios:\n    A) Huffman code contains only few symbols (1..4). Those symbols are read\n       directly; their code lengths are defined by the number of symbols.\n       For this scenario 4 - 49 bits will be read.\n\n    B) 2-phase decoding:\n    B.1) Small Huffman table is decoded; it is specified with code lengths\n         encoded with predefined entropy code. 32 - 74 bits are used.\n    B.2) Decoded table is used to decode code lengths of symbols in resulting\n         Huffman table. In worst case 3520 bits are read. */\nfunc readHuffmanCode(alphabet_size uint32, max_symbol uint32, table []huffmanCode, opt_table_size *uint32, s *Reader) int {\n\tvar br *bitReader = &s.br\n\n\t/* Unnecessary masking, but might be good for safety. */\n\talphabet_size &= 0x7FF\n\n\t/* State machine. */\n\tfor {\n\t\tswitch s.substate_huffman {\n\t\tcase stateHuffmanNone:\n\t\t\tif !safeReadBits(br, 2, &s.sub_loop_counter) {\n\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t}\n\n\t\t\t/* The value is used as follows:\n\t\t\t   1 for simple code;\n\t\t\t   0 for no skipping, 2 skips 2 code lengths, 3 skips 3 code lengths */\n\t\t\tif s.sub_loop_counter != 1 {\n\t\t\t\ts.space = 32\n\t\t\t\ts.repeat = 0 /* num_codes */\n\t\t\t\tvar i int\n\t\t\t\tfor i = 0; i <= huffmanMaxCodeLengthCodeLength; i++ {\n\t\t\t\t\ts.code_length_histo[i] = 0\n\t\t\t\t}\n\n\t\t\t\tfor i = 0; i < codeLengthCodes; i++ {\n\t\t\t\t\ts.code_length_code_lengths[i] = 0\n\t\t\t\t}\n\n\t\t\t\ts.substate_huffman = stateHuffmanComplex\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tfallthrough\n\n\t\t\t/* Read symbols, codes & code lengths directly. */\n\t\tcase stateHuffmanSimpleSize:\n\t\t\tif !safeReadBits(br, 2, &s.symbol) { /* num_symbols */\n\t\t\t\ts.substate_huffman = stateHuffmanSimpleSize\n\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t}\n\n\t\t\ts.sub_loop_counter = 0\n\t\t\tfallthrough\n\n\t\tcase stateHuffmanSimpleRead:\n\t\t\t{\n\t\t\t\tvar result int = readSimpleHuffmanSymbols(alphabet_size, max_symbol, s)\n\t\t\t\tif result != decoderSuccess {\n\t\t\t\t\treturn result\n\t\t\t\t}\n\t\t\t}\n\t\t\tfallthrough\n\n\t\tcase stateHuffmanSimpleBuild:\n\t\t\tvar table_size uint32\n\t\t\tif s.symbol == 3 {\n\t\t\t\tvar bits uint32\n\t\t\t\tif !safeReadBits(br, 1, &bits) {\n\t\t\t\t\ts.substate_huffman = stateHuffmanSimpleBuild\n\t\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t\t}\n\n\t\t\t\ts.symbol += bits\n\t\t\t}\n\n\t\t\ttable_size = buildSimpleHuffmanTable(table, huffmanTableBits, s.symbols_lists_array[:], s.symbol)\n\t\t\tif opt_table_size != nil {\n\t\t\t\t*opt_table_size = table_size\n\t\t\t}\n\n\t\t\ts.substate_huffman = stateHuffmanNone\n\t\t\treturn decoderSuccess\n\n\t\t\t/* Decode Huffman-coded code lengths. */\n\t\tcase stateHuffmanComplex:\n\t\t\t{\n\t\t\t\tvar i uint32\n\t\t\t\tvar result int = readCodeLengthCodeLengths(s)\n\t\t\t\tif result != decoderSuccess {\n\t\t\t\t\treturn result\n\t\t\t\t}\n\n\t\t\t\tbuildCodeLengthsHuffmanTable(s.table[:], s.code_length_code_lengths[:], s.code_length_histo[:])\n\t\t\t\tfor i = 0; i < 16; i++ {\n\t\t\t\t\ts.code_length_histo[i] = 0\n\t\t\t\t}\n\n\t\t\t\tfor i = 0; i <= huffmanMaxCodeLength; i++ {\n\t\t\t\t\ts.next_symbol[i] = int(i) - (huffmanMaxCodeLength + 1)\n\t\t\t\t\tsymbolListPut(s.symbol_lists, s.next_symbol[i], 0xFFFF)\n\t\t\t\t}\n\n\t\t\t\ts.symbol = 0\n\t\t\t\ts.prev_code_len = initialRepeatedCodeLength\n\t\t\t\ts.repeat = 0\n\t\t\t\ts.repeat_code_len = 0\n\t\t\t\ts.space = 32768\n\t\t\t\ts.substate_huffman = stateHuffmanLengthSymbols\n\t\t\t}\n\t\t\tfallthrough\n\n\t\tcase stateHuffmanLengthSymbols:\n\t\t\tvar table_size uint32\n\t\t\tvar result int = readSymbolCodeLengths(max_symbol, s)\n\t\t\tif result == decoderNeedsMoreInput {\n\t\t\t\tresult = safeReadSymbolCodeLengths(max_symbol, s)\n\t\t\t}\n\n\t\t\tif result != decoderSuccess {\n\t\t\t\treturn result\n\t\t\t}\n\n\t\t\tif s.space != 0 {\n\t\t\t\treturn decoderErrorFormatHuffmanSpace\n\t\t\t}\n\n\t\t\ttable_size = buildHuffmanTable(table, huffmanTableBits, s.symbol_lists, s.code_length_histo[:])\n\t\t\tif opt_table_size != nil {\n\t\t\t\t*opt_table_size = table_size\n\t\t\t}\n\n\t\t\ts.substate_huffman = stateHuffmanNone\n\t\t\treturn decoderSuccess\n\n\t\tdefault:\n\t\t\treturn decoderErrorUnreachable\n\t\t}\n\t}\n}\n\n/* Decodes a block length by reading 3..39 bits. */\nfunc readBlockLength(table []huffmanCode, br *bitReader) uint32 {\n\tvar code uint32\n\tvar nbits uint32\n\tcode = readSymbol(table, br)\n\tnbits = kBlockLengthPrefixCode[code].nbits /* nbits == 2..24 */\n\treturn kBlockLengthPrefixCode[code].offset + readBits(br, nbits)\n}\n\n/* WARNING: if state is not BROTLI_STATE_READ_BLOCK_LENGTH_NONE, then\n   reading can't be continued with ReadBlockLength. */\nfunc safeReadBlockLength(s *Reader, result *uint32, table []huffmanCode, br *bitReader) bool {\n\tvar index uint32\n\tif s.substate_read_block_length == stateReadBlockLengthNone {\n\t\tif !safeReadSymbol(table, br, &index) {\n\t\t\treturn false\n\t\t}\n\t} else {\n\t\tindex = s.block_length_index\n\t}\n\t{\n\t\tvar bits uint32 /* nbits == 2..24 */\n\t\tvar nbits uint32 = kBlockLengthPrefixCode[index].nbits\n\t\tif !safeReadBits(br, nbits, &bits) {\n\t\t\ts.block_length_index = index\n\t\t\ts.substate_read_block_length = stateReadBlockLengthSuffix\n\t\t\treturn false\n\t\t}\n\n\t\t*result = kBlockLengthPrefixCode[index].offset + bits\n\t\ts.substate_read_block_length = stateReadBlockLengthNone\n\t\treturn true\n\t}\n}\n\n/* Transform:\n    1) initialize list L with values 0, 1,... 255\n    2) For each input element X:\n    2.1) let Y = L[X]\n    2.2) remove X-th element from L\n    2.3) prepend Y to L\n    2.4) append Y to output\n\n   In most cases max(Y) <= 7, so most of L remains intact.\n   To reduce the cost of initialization, we reuse L, remember the upper bound\n   of Y values, and reinitialize only first elements in L.\n\n   Most of input values are 0 and 1. To reduce number of branches, we replace\n   inner for loop with do-while. */\nfunc inverseMoveToFrontTransform(v []byte, v_len uint32, state *Reader) {\n\tvar mtf [256]byte\n\tvar i int\n\tfor i = 1; i < 256; i++ {\n\t\tmtf[i] = byte(i)\n\t}\n\tvar mtf_1 byte\n\n\t/* Transform the input. */\n\tfor i = 0; uint32(i) < v_len; i++ {\n\t\tvar index int = int(v[i])\n\t\tvar value byte = mtf[index]\n\t\tv[i] = value\n\t\tmtf_1 = value\n\t\tfor index >= 1 {\n\t\t\tindex--\n\t\t\tmtf[index+1] = mtf[index]\n\t\t}\n\n\t\tmtf[0] = mtf_1\n\t}\n}\n\n/* Decodes a series of Huffman table using ReadHuffmanCode function. */\nfunc huffmanTreeGroupDecode(group *huffmanTreeGroup, s *Reader) int {\n\tif s.substate_tree_group != stateTreeGroupLoop {\n\t\ts.next = group.codes\n\t\ts.htree_index = 0\n\t\ts.substate_tree_group = stateTreeGroupLoop\n\t}\n\n\tfor s.htree_index < int(group.num_htrees) {\n\t\tvar table_size uint32\n\t\tvar result int = readHuffmanCode(uint32(group.alphabet_size), uint32(group.max_symbol), s.next, &table_size, s)\n\t\tif result != decoderSuccess {\n\t\t\treturn result\n\t\t}\n\t\tgroup.htrees[s.htree_index] = s.next\n\t\ts.next = s.next[table_size:]\n\t\ts.htree_index++\n\t}\n\n\ts.substate_tree_group = stateTreeGroupNone\n\treturn decoderSuccess\n}\n\n/* Decodes a context map.\n   Decoding is done in 4 phases:\n    1) Read auxiliary information (6..16 bits) and allocate memory.\n       In case of trivial context map, decoding is finished at this phase.\n    2) Decode Huffman table using ReadHuffmanCode function.\n       This table will be used for reading context map items.\n    3) Read context map items; \"0\" values could be run-length encoded.\n    4) Optionally, apply InverseMoveToFront transform to the resulting map. */\nfunc decodeContextMap(context_map_size uint32, num_htrees *uint32, context_map_arg *[]byte, s *Reader) int {\n\tvar br *bitReader = &s.br\n\tvar result int = decoderSuccess\n\n\tswitch int(s.substate_context_map) {\n\tcase stateContextMapNone:\n\t\tresult = decodeVarLenUint8(s, br, num_htrees)\n\t\tif result != decoderSuccess {\n\t\t\treturn result\n\t\t}\n\n\t\t(*num_htrees)++\n\t\ts.context_index = 0\n\t\t*context_map_arg = make([]byte, uint(context_map_size))\n\t\tif *context_map_arg == nil {\n\t\t\treturn decoderErrorAllocContextMap\n\t\t}\n\n\t\tif *num_htrees <= 1 {\n\t\t\tfor i := 0; i < int(context_map_size); i++ {\n\t\t\t\t(*context_map_arg)[i] = 0\n\t\t\t}\n\t\t\treturn decoderSuccess\n\t\t}\n\n\t\ts.substate_context_map = stateContextMapReadPrefix\n\t\tfallthrough\n\t/* Fall through. */\n\tcase stateContextMapReadPrefix:\n\t\t{\n\t\t\tvar bits uint32\n\n\t\t\t/* In next stage ReadHuffmanCode uses at least 4 bits, so it is safe\n\t\t\t   to peek 4 bits ahead. */\n\t\t\tif !safeGetBits(br, 5, &bits) {\n\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t}\n\n\t\t\tif bits&1 != 0 { /* Use RLE for zeros. */\n\t\t\t\ts.max_run_length_prefix = (bits >> 1) + 1\n\t\t\t\tdropBits(br, 5)\n\t\t\t} else {\n\t\t\t\ts.max_run_length_prefix = 0\n\t\t\t\tdropBits(br, 1)\n\t\t\t}\n\n\t\t\ts.substate_context_map = stateContextMapHuffman\n\t\t}\n\t\tfallthrough\n\n\t\t/* Fall through. */\n\tcase stateContextMapHuffman:\n\t\t{\n\t\t\tvar alphabet_size uint32 = *num_htrees + s.max_run_length_prefix\n\t\t\tresult = readHuffmanCode(alphabet_size, alphabet_size, s.context_map_table[:], nil, s)\n\t\t\tif result != decoderSuccess {\n\t\t\t\treturn result\n\t\t\t}\n\t\t\ts.code = 0xFFFF\n\t\t\ts.substate_context_map = stateContextMapDecode\n\t\t}\n\t\tfallthrough\n\n\t\t/* Fall through. */\n\tcase stateContextMapDecode:\n\t\t{\n\t\t\tvar context_index uint32 = s.context_index\n\t\t\tvar max_run_length_prefix uint32 = s.max_run_length_prefix\n\t\t\tvar context_map []byte = *context_map_arg\n\t\t\tvar code uint32 = s.code\n\t\t\tvar skip_preamble bool = (code != 0xFFFF)\n\t\t\tfor context_index < context_map_size || skip_preamble {\n\t\t\t\tif !skip_preamble {\n\t\t\t\t\tif !safeReadSymbol(s.context_map_table[:], br, &code) {\n\t\t\t\t\t\ts.code = 0xFFFF\n\t\t\t\t\t\ts.context_index = context_index\n\t\t\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t\t\t}\n\n\t\t\t\t\tif code == 0 {\n\t\t\t\t\t\tcontext_map[context_index] = 0\n\t\t\t\t\t\tcontext_index++\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\n\t\t\t\t\tif code > max_run_length_prefix {\n\t\t\t\t\t\tcontext_map[context_index] = byte(code - max_run_length_prefix)\n\t\t\t\t\t\tcontext_index++\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tskip_preamble = false\n\t\t\t\t}\n\n\t\t\t\t/* RLE sub-stage. */\n\t\t\t\t{\n\t\t\t\t\tvar reps uint32\n\t\t\t\t\tif !safeReadBits(br, code, &reps) {\n\t\t\t\t\t\ts.code = code\n\t\t\t\t\t\ts.context_index = context_index\n\t\t\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t\t\t}\n\n\t\t\t\t\treps += 1 << code\n\t\t\t\t\tif context_index+reps > context_map_size {\n\t\t\t\t\t\treturn decoderErrorFormatContextMapRepeat\n\t\t\t\t\t}\n\n\t\t\t\t\tfor {\n\t\t\t\t\t\tcontext_map[context_index] = 0\n\t\t\t\t\t\tcontext_index++\n\t\t\t\t\t\treps--\n\t\t\t\t\t\tif reps == 0 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tfallthrough\n\n\tcase stateContextMapTransform:\n\t\tvar bits uint32\n\t\tif !safeReadBits(br, 1, &bits) {\n\t\t\ts.substate_context_map = stateContextMapTransform\n\t\t\treturn decoderNeedsMoreInput\n\t\t}\n\n\t\tif bits != 0 {\n\t\t\tinverseMoveToFrontTransform(*context_map_arg, context_map_size, s)\n\t\t}\n\n\t\ts.substate_context_map = stateContextMapNone\n\t\treturn decoderSuccess\n\n\tdefault:\n\t\treturn decoderErrorUnreachable\n\t}\n}\n\n/* Decodes a command or literal and updates block type ring-buffer.\n   Reads 3..54 bits. */\nfunc decodeBlockTypeAndLength(safe int, s *Reader, tree_type int) bool {\n\tvar max_block_type uint32 = s.num_block_types[tree_type]\n\tvar type_tree []huffmanCode\n\ttype_tree = s.block_type_trees[tree_type*huffmanMaxSize258:]\n\tvar len_tree []huffmanCode\n\tlen_tree = s.block_len_trees[tree_type*huffmanMaxSize26:]\n\tvar br *bitReader = &s.br\n\tvar ringbuffer []uint32 = s.block_type_rb[tree_type*2:]\n\tvar block_type uint32\n\tif max_block_type <= 1 {\n\t\treturn false\n\t}\n\n\t/* Read 0..15 + 3..39 bits. */\n\tif safe == 0 {\n\t\tblock_type = readSymbol(type_tree, br)\n\t\ts.block_length[tree_type] = readBlockLength(len_tree, br)\n\t} else {\n\t\tvar memento bitReaderState\n\t\tbitReaderSaveState(br, &memento)\n\t\tif !safeReadSymbol(type_tree, br, &block_type) {\n\t\t\treturn false\n\t\t}\n\t\tif !safeReadBlockLength(s, &s.block_length[tree_type], len_tree, br) {\n\t\t\ts.substate_read_block_length = stateReadBlockLengthNone\n\t\t\tbitReaderRestoreState(br, &memento)\n\t\t\treturn false\n\t\t}\n\t}\n\n\tif block_type == 1 {\n\t\tblock_type = ringbuffer[1] + 1\n\t} else if block_type == 0 {\n\t\tblock_type = ringbuffer[0]\n\t} else {\n\t\tblock_type -= 2\n\t}\n\n\tif block_type >= max_block_type {\n\t\tblock_type -= max_block_type\n\t}\n\n\tringbuffer[0] = ringbuffer[1]\n\tringbuffer[1] = block_type\n\treturn true\n}\n\nfunc detectTrivialLiteralBlockTypes(s *Reader) {\n\tvar i uint\n\tfor i = 0; i < 8; i++ {\n\t\ts.trivial_literal_contexts[i] = 0\n\t}\n\tfor i = 0; uint32(i) < s.num_block_types[0]; i++ {\n\t\tvar offset uint = i << literalContextBits\n\t\tvar error uint = 0\n\t\tvar sample uint = uint(s.context_map[offset])\n\t\tvar j uint\n\t\tfor j = 0; j < 1<<literalContextBits; {\n\t\t\tvar k int\n\t\t\tfor k = 0; k < 4; k++ {\n\t\t\t\terror |= uint(s.context_map[offset+j]) ^ sample\n\t\t\t\tj++\n\t\t\t}\n\t\t}\n\n\t\tif error == 0 {\n\t\t\ts.trivial_literal_contexts[i>>5] |= 1 << (i & 31)\n\t\t}\n\t}\n}\n\nfunc prepareLiteralDecoding(s *Reader) {\n\tvar context_mode byte\n\tvar trivial uint\n\tvar block_type uint32 = s.block_type_rb[1]\n\tvar context_offset uint32 = block_type << literalContextBits\n\ts.context_map_slice = s.context_map[context_offset:]\n\ttrivial = uint(s.trivial_literal_contexts[block_type>>5])\n\ts.trivial_literal_context = int((trivial >> (block_type & 31)) & 1)\n\ts.literal_htree = []huffmanCode(s.literal_hgroup.htrees[s.context_map_slice[0]])\n\tcontext_mode = s.context_modes[block_type] & 3\n\ts.context_lookup = getContextLUT(int(context_mode))\n}\n\n/* Decodes the block type and updates the state for literal context.\n   Reads 3..54 bits. */\nfunc decodeLiteralBlockSwitchInternal(safe int, s *Reader) bool {\n\tif !decodeBlockTypeAndLength(safe, s, 0) {\n\t\treturn false\n\t}\n\n\tprepareLiteralDecoding(s)\n\treturn true\n}\n\nfunc decodeLiteralBlockSwitch(s *Reader) {\n\tdecodeLiteralBlockSwitchInternal(0, s)\n}\n\nfunc safeDecodeLiteralBlockSwitch(s *Reader) bool {\n\treturn decodeLiteralBlockSwitchInternal(1, s)\n}\n\n/* Block switch for insert/copy length.\n   Reads 3..54 bits. */\nfunc decodeCommandBlockSwitchInternal(safe int, s *Reader) bool {\n\tif !decodeBlockTypeAndLength(safe, s, 1) {\n\t\treturn false\n\t}\n\n\ts.htree_command = []huffmanCode(s.insert_copy_hgroup.htrees[s.block_type_rb[3]])\n\treturn true\n}\n\nfunc decodeCommandBlockSwitch(s *Reader) {\n\tdecodeCommandBlockSwitchInternal(0, s)\n}\n\nfunc safeDecodeCommandBlockSwitch(s *Reader) bool {\n\treturn decodeCommandBlockSwitchInternal(1, s)\n}\n\n/* Block switch for distance codes.\n   Reads 3..54 bits. */\nfunc decodeDistanceBlockSwitchInternal(safe int, s *Reader) bool {\n\tif !decodeBlockTypeAndLength(safe, s, 2) {\n\t\treturn false\n\t}\n\n\ts.dist_context_map_slice = s.dist_context_map[s.block_type_rb[5]<<distanceContextBits:]\n\ts.dist_htree_index = s.dist_context_map_slice[s.distance_context]\n\treturn true\n}\n\nfunc decodeDistanceBlockSwitch(s *Reader) {\n\tdecodeDistanceBlockSwitchInternal(0, s)\n}\n\nfunc safeDecodeDistanceBlockSwitch(s *Reader) bool {\n\treturn decodeDistanceBlockSwitchInternal(1, s)\n}\n\nfunc unwrittenBytes(s *Reader, wrap bool) uint {\n\tvar pos uint\n\tif wrap && s.pos > s.ringbuffer_size {\n\t\tpos = uint(s.ringbuffer_size)\n\t} else {\n\t\tpos = uint(s.pos)\n\t}\n\tvar partial_pos_rb uint = (s.rb_roundtrips * uint(s.ringbuffer_size)) + pos\n\treturn partial_pos_rb - s.partial_pos_out\n}\n\n/* Dumps output.\n   Returns BROTLI_DECODER_NEEDS_MORE_OUTPUT only if there is more output to push\n   and either ring-buffer is as big as window size, or |force| is true. */\nfunc writeRingBuffer(s *Reader, available_out *uint, next_out *[]byte, total_out *uint, force bool) int {\n\tvar start []byte\n\tstart = s.ringbuffer[s.partial_pos_out&uint(s.ringbuffer_mask):]\n\tvar to_write uint = unwrittenBytes(s, true)\n\tvar num_written uint = *available_out\n\tif num_written > to_write {\n\t\tnum_written = to_write\n\t}\n\n\tif s.meta_block_remaining_len < 0 {\n\t\treturn decoderErrorFormatBlockLength1\n\t}\n\n\tif next_out != nil && *next_out == nil {\n\t\t*next_out = start\n\t} else {\n\t\tif next_out != nil {\n\t\t\tcopy(*next_out, start[:num_written])\n\t\t\t*next_out = (*next_out)[num_written:]\n\t\t}\n\t}\n\n\t*available_out -= num_written\n\ts.partial_pos_out += num_written\n\tif total_out != nil {\n\t\t*total_out = s.partial_pos_out\n\t}\n\n\tif num_written < to_write {\n\t\tif s.ringbuffer_size == 1<<s.window_bits || force {\n\t\t\treturn decoderNeedsMoreOutput\n\t\t} else {\n\t\t\treturn decoderSuccess\n\t\t}\n\t}\n\n\t/* Wrap ring buffer only if it has reached its maximal size. */\n\tif s.ringbuffer_size == 1<<s.window_bits && s.pos >= s.ringbuffer_size {\n\t\ts.pos -= s.ringbuffer_size\n\t\ts.rb_roundtrips++\n\t\tif uint(s.pos) != 0 {\n\t\t\ts.should_wrap_ringbuffer = 1\n\t\t} else {\n\t\t\ts.should_wrap_ringbuffer = 0\n\t\t}\n\t}\n\n\treturn decoderSuccess\n}\n\nfunc wrapRingBuffer(s *Reader) {\n\tif s.should_wrap_ringbuffer != 0 {\n\t\tcopy(s.ringbuffer, s.ringbuffer_end[:uint(s.pos)])\n\t\ts.should_wrap_ringbuffer = 0\n\t}\n}\n\n/* Allocates ring-buffer.\n\n   s->ringbuffer_size MUST be updated by BrotliCalculateRingBufferSize before\n   this function is called.\n\n   Last two bytes of ring-buffer are initialized to 0, so context calculation\n   could be done uniformly for the first two and all other positions. */\nfunc ensureRingBuffer(s *Reader) bool {\n\tvar old_ringbuffer []byte = s.ringbuffer\n\tif s.ringbuffer_size == s.new_ringbuffer_size {\n\t\treturn true\n\t}\n\n\ts.ringbuffer = make([]byte, uint(s.new_ringbuffer_size)+uint(kRingBufferWriteAheadSlack))\n\tif s.ringbuffer == nil {\n\t\t/* Restore previous value. */\n\t\ts.ringbuffer = old_ringbuffer\n\n\t\treturn false\n\t}\n\n\ts.ringbuffer[s.new_ringbuffer_size-2] = 0\n\ts.ringbuffer[s.new_ringbuffer_size-1] = 0\n\n\tif !(old_ringbuffer == nil) {\n\t\tcopy(s.ringbuffer, old_ringbuffer[:uint(s.pos)])\n\n\t\told_ringbuffer = nil\n\t}\n\n\ts.ringbuffer_size = s.new_ringbuffer_size\n\ts.ringbuffer_mask = s.new_ringbuffer_size - 1\n\ts.ringbuffer_end = s.ringbuffer[s.ringbuffer_size:]\n\n\treturn true\n}\n\nfunc copyUncompressedBlockToOutput(available_out *uint, next_out *[]byte, total_out *uint, s *Reader) int {\n\t/* TODO: avoid allocation for single uncompressed block. */\n\tif !ensureRingBuffer(s) {\n\t\treturn decoderErrorAllocRingBuffer1\n\t}\n\n\t/* State machine */\n\tfor {\n\t\tswitch s.substate_uncompressed {\n\t\tcase stateUncompressedNone:\n\t\t\t{\n\t\t\t\tvar nbytes int = int(getRemainingBytes(&s.br))\n\t\t\t\tif nbytes > s.meta_block_remaining_len {\n\t\t\t\t\tnbytes = s.meta_block_remaining_len\n\t\t\t\t}\n\n\t\t\t\tif s.pos+nbytes > s.ringbuffer_size {\n\t\t\t\t\tnbytes = s.ringbuffer_size - s.pos\n\t\t\t\t}\n\n\t\t\t\t/* Copy remaining bytes from s->br.buf_ to ring-buffer. */\n\t\t\t\tcopyBytes(s.ringbuffer[s.pos:], &s.br, uint(nbytes))\n\n\t\t\t\ts.pos += nbytes\n\t\t\t\ts.meta_block_remaining_len -= nbytes\n\t\t\t\tif s.pos < 1<<s.window_bits {\n\t\t\t\t\tif s.meta_block_remaining_len == 0 {\n\t\t\t\t\t\treturn decoderSuccess\n\t\t\t\t\t}\n\n\t\t\t\t\treturn decoderNeedsMoreInput\n\t\t\t\t}\n\n\t\t\t\ts.substate_uncompressed = stateUncompressedWrite\n\t\t\t}\n\t\t\tfallthrough\n\n\t\tcase stateUncompressedWrite:\n\t\t\t{\n\t\t\t\tvar result int\n\t\t\t\tresult = writeRingBuffer(s, available_out, next_out, total_out, false)\n\t\t\t\tif result != decoderSuccess {\n\t\t\t\t\treturn result\n\t\t\t\t}\n\n\t\t\t\tif s.ringbuffer_size == 1<<s.window_bits {\n\t\t\t\t\ts.max_distance = s.max_backward_distance\n\t\t\t\t}\n\n\t\t\t\ts.substate_uncompressed = stateUncompressedNone\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* Calculates the smallest feasible ring buffer.\n\n   If we know the data size is small, do not allocate more ring buffer\n   size than needed to reduce memory usage.\n\n   When this method is called, metablock size and flags MUST be decoded. */\nfunc calculateRingBufferSize(s *Reader) {\n\tvar window_size int = 1 << s.window_bits\n\tvar new_ringbuffer_size int = window_size\n\tvar min_size int\n\t/* We need at least 2 bytes of ring buffer size to get the last two\n\t   bytes for context from there */\n\tif s.ringbuffer_size != 0 {\n\t\tmin_size = s.ringbuffer_size\n\t} else {\n\t\tmin_size = 1024\n\t}\n\tvar output_size int\n\n\t/* If maximum is already reached, no further extension is retired. */\n\tif s.ringbuffer_size == window_size {\n\t\treturn\n\t}\n\n\t/* Metadata blocks does not touch ring buffer. */\n\tif s.is_metadata != 0 {\n\t\treturn\n\t}\n\n\tif s.ringbuffer == nil {\n\t\toutput_size = 0\n\t} else {\n\t\toutput_size = s.pos\n\t}\n\n\toutput_size += s.meta_block_remaining_len\n\tif min_size < output_size {\n\t\tmin_size = output_size\n\t}\n\n\tif !(s.canny_ringbuffer_allocation == 0) {\n\t\t/* Reduce ring buffer size to save memory when server is unscrupulous.\n\t\t   In worst case memory usage might be 1.5x bigger for a short period of\n\t\t   ring buffer reallocation. */\n\t\tfor new_ringbuffer_size>>1 >= min_size {\n\t\t\tnew_ringbuffer_size >>= 1\n\t\t}\n\t}\n\n\ts.new_ringbuffer_size = new_ringbuffer_size\n}\n\n/* Reads 1..256 2-bit context modes. */\nfunc readContextModes(s *Reader) int {\n\tvar br *bitReader = &s.br\n\tvar i int = s.loop_counter\n\n\tfor i < int(s.num_block_types[0]) {\n\t\tvar bits uint32\n\t\tif !safeReadBits(br, 2, &bits) {\n\t\t\ts.loop_counter = i\n\t\t\treturn decoderNeedsMoreInput\n\t\t}\n\n\t\ts.context_modes[i] = byte(bits)\n\t\ti++\n\t}\n\n\treturn decoderSuccess\n}\n\nfunc takeDistanceFromRingBuffer(s *Reader) {\n\tif s.distance_code == 0 {\n\t\ts.dist_rb_idx--\n\t\ts.distance_code = s.dist_rb[s.dist_rb_idx&3]\n\n\t\t/* Compensate double distance-ring-buffer roll for dictionary items. */\n\t\ts.distance_context = 1\n\t} else {\n\t\tvar distance_code int = s.distance_code << 1\n\t\tconst kDistanceShortCodeIndexOffset uint32 = 0xAAAFFF1B\n\t\tconst kDistanceShortCodeValueOffset uint32 = 0xFA5FA500\n\t\tvar v int = (s.dist_rb_idx + int(kDistanceShortCodeIndexOffset>>uint(distance_code))) & 0x3\n\t\t/* kDistanceShortCodeIndexOffset has 2-bit values from LSB:\n\t\t   3, 2, 1, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2 */\n\n\t\t/* kDistanceShortCodeValueOffset has 2-bit values from LSB:\n\t\t   -0, 0,-0, 0,-1, 1,-2, 2,-3, 3,-1, 1,-2, 2,-3, 3 */\n\t\ts.distance_code = s.dist_rb[v]\n\n\t\tv = int(kDistanceShortCodeValueOffset>>uint(distance_code)) & 0x3\n\t\tif distance_code&0x3 != 0 {\n\t\t\ts.distance_code += v\n\t\t} else {\n\t\t\ts.distance_code -= v\n\t\t\tif s.distance_code <= 0 {\n\t\t\t\t/* A huge distance will cause a () soon.\n\t\t\t\t   This is a little faster than failing here. */\n\t\t\t\ts.distance_code = 0x7FFFFFFF\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc safeReadBitsMaybeZero(br *bitReader, n_bits uint32, val *uint32) bool {\n\tif n_bits != 0 {\n\t\treturn safeReadBits(br, n_bits, val)\n\t} else {\n\t\t*val = 0\n\t\treturn true\n\t}\n}\n\n/* Precondition: s->distance_code < 0. */\nfunc readDistanceInternal(safe int, s *Reader, br *bitReader) bool {\n\tvar distval int\n\tvar memento bitReaderState\n\tvar distance_tree []huffmanCode = []huffmanCode(s.distance_hgroup.htrees[s.dist_htree_index])\n\tif safe == 0 {\n\t\ts.distance_code = int(readSymbol(distance_tree, br))\n\t} else {\n\t\tvar code uint32\n\t\tbitReaderSaveState(br, &memento)\n\t\tif !safeReadSymbol(distance_tree, br, &code) {\n\t\t\treturn false\n\t\t}\n\n\t\ts.distance_code = int(code)\n\t}\n\n\t/* Convert the distance code to the actual distance by possibly\n\t   looking up past distances from the s->ringbuffer. */\n\ts.distance_context = 0\n\n\tif s.distance_code&^0xF == 0 {\n\t\ttakeDistanceFromRingBuffer(s)\n\t\ts.block_length[2]--\n\t\treturn true\n\t}\n\n\tdistval = s.distance_code - int(s.num_direct_distance_codes)\n\tif distval >= 0 {\n\t\tvar nbits uint32\n\t\tvar postfix int\n\t\tvar offset int\n\t\tif safe == 0 && (s.distance_postfix_bits == 0) {\n\t\t\tnbits = (uint32(distval) >> 1) + 1\n\t\t\toffset = ((2 + (distval & 1)) << nbits) - 4\n\t\t\ts.distance_code = int(s.num_direct_distance_codes) + offset + int(readBits(br, nbits))\n\t\t} else {\n\t\t\t/* This branch also works well when s->distance_postfix_bits == 0. */\n\t\t\tvar bits uint32\n\t\t\tpostfix = distval & s.distance_postfix_mask\n\t\t\tdistval >>= s.distance_postfix_bits\n\t\t\tnbits = (uint32(distval) >> 1) + 1\n\t\t\tif safe != 0 {\n\t\t\t\tif !safeReadBitsMaybeZero(br, nbits, &bits) {\n\t\t\t\t\ts.distance_code = -1 /* Restore precondition. */\n\t\t\t\t\tbitReaderRestoreState(br, &memento)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tbits = readBits(br, nbits)\n\t\t\t}\n\n\t\t\toffset = ((2 + (distval & 1)) << nbits) - 4\n\t\t\ts.distance_code = int(s.num_direct_distance_codes) + ((offset + int(bits)) << s.distance_postfix_bits) + postfix\n\t\t}\n\t}\n\n\ts.distance_code = s.distance_code - numDistanceShortCodes + 1\n\ts.block_length[2]--\n\treturn true\n}\n\nfunc readDistance(s *Reader, br *bitReader) {\n\treadDistanceInternal(0, s, br)\n}\n\nfunc safeReadDistance(s *Reader, br *bitReader) bool {\n\treturn readDistanceInternal(1, s, br)\n}\n\nfunc readCommandInternal(safe int, s *Reader, br *bitReader, insert_length *int) bool {\n\tvar cmd_code uint32\n\tvar insert_len_extra uint32 = 0\n\tvar copy_length uint32\n\tvar v cmdLutElement\n\tvar memento bitReaderState\n\tif safe == 0 {\n\t\tcmd_code = readSymbol(s.htree_command, br)\n\t} else {\n\t\tbitReaderSaveState(br, &memento)\n\t\tif !safeReadSymbol(s.htree_command, br, &cmd_code) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tv = kCmdLut[cmd_code]\n\ts.distance_code = int(v.distance_code)\n\ts.distance_context = int(v.context)\n\ts.dist_htree_index = s.dist_context_map_slice[s.distance_context]\n\t*insert_length = int(v.insert_len_offset)\n\tif safe == 0 {\n\t\tif v.insert_len_extra_bits != 0 {\n\t\t\tinsert_len_extra = readBits(br, uint32(v.insert_len_extra_bits))\n\t\t}\n\n\t\tcopy_length = readBits(br, uint32(v.copy_len_extra_bits))\n\t} else {\n\t\tif !safeReadBitsMaybeZero(br, uint32(v.insert_len_extra_bits), &insert_len_extra) || !safeReadBitsMaybeZero(br, uint32(v.copy_len_extra_bits), &copy_length) {\n\t\t\tbitReaderRestoreState(br, &memento)\n\t\t\treturn false\n\t\t}\n\t}\n\n\ts.copy_length = int(copy_length) + int(v.copy_len_offset)\n\ts.block_length[1]--\n\t*insert_length += int(insert_len_extra)\n\treturn true\n}\n\nfunc readCommand(s *Reader, br *bitReader, insert_length *int) {\n\treadCommandInternal(0, s, br, insert_length)\n}\n\nfunc safeReadCommand(s *Reader, br *bitReader, insert_length *int) bool {\n\treturn readCommandInternal(1, s, br, insert_length)\n}\n\nfunc checkInputAmountMaybeSafe(safe int, br *bitReader, num uint) bool {\n\tif safe != 0 {\n\t\treturn true\n\t}\n\n\treturn checkInputAmount(br, num)\n}\n\nfunc processCommandsInternal(safe int, s *Reader) int {\n\tvar pos int = s.pos\n\tvar i int = s.loop_counter\n\tvar result int = decoderSuccess\n\tvar br *bitReader = &s.br\n\tvar hc []huffmanCode\n\n\tif !checkInputAmountMaybeSafe(safe, br, 28) {\n\t\tresult = decoderNeedsMoreInput\n\t\tgoto saveStateAndReturn\n\t}\n\n\tif safe == 0 {\n\t\twarmupBitReader(br)\n\t}\n\n\t/* Jump into state machine. */\n\tif s.state == stateCommandBegin {\n\t\tgoto CommandBegin\n\t} else if s.state == stateCommandInner {\n\t\tgoto CommandInner\n\t} else if s.state == stateCommandPostDecodeLiterals {\n\t\tgoto CommandPostDecodeLiterals\n\t} else if s.state == stateCommandPostWrapCopy {\n\t\tgoto CommandPostWrapCopy\n\t} else {\n\t\treturn decoderErrorUnreachable\n\t}\n\nCommandBegin:\n\tif safe != 0 {\n\t\ts.state = stateCommandBegin\n\t}\n\n\tif !checkInputAmountMaybeSafe(safe, br, 28) { /* 156 bits + 7 bytes */\n\t\ts.state = stateCommandBegin\n\t\tresult = decoderNeedsMoreInput\n\t\tgoto saveStateAndReturn\n\t}\n\n\tif s.block_length[1] == 0 {\n\t\tif safe != 0 {\n\t\t\tif !safeDecodeCommandBlockSwitch(s) {\n\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\tgoto saveStateAndReturn\n\t\t\t}\n\t\t} else {\n\t\t\tdecodeCommandBlockSwitch(s)\n\t\t}\n\n\t\tgoto CommandBegin\n\t}\n\n\t/* Read the insert/copy length in the command. */\n\tif safe != 0 {\n\t\tif !safeReadCommand(s, br, &i) {\n\t\t\tresult = decoderNeedsMoreInput\n\t\t\tgoto saveStateAndReturn\n\t\t}\n\t} else {\n\t\treadCommand(s, br, &i)\n\t}\n\n\tif i == 0 {\n\t\tgoto CommandPostDecodeLiterals\n\t}\n\n\ts.meta_block_remaining_len -= i\n\nCommandInner:\n\tif safe != 0 {\n\t\ts.state = stateCommandInner\n\t}\n\n\t/* Read the literals in the command. */\n\tif s.trivial_literal_context != 0 {\n\t\tvar bits uint32\n\t\tvar value uint32\n\t\tpreloadSymbol(safe, s.literal_htree, br, &bits, &value)\n\t\tfor {\n\t\t\tif !checkInputAmountMaybeSafe(safe, br, 28) { /* 162 bits + 7 bytes */\n\t\t\t\ts.state = stateCommandInner\n\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\tgoto saveStateAndReturn\n\t\t\t}\n\n\t\t\tif s.block_length[0] == 0 {\n\t\t\t\tif safe != 0 {\n\t\t\t\t\tif !safeDecodeLiteralBlockSwitch(s) {\n\t\t\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\t\t\tgoto saveStateAndReturn\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tdecodeLiteralBlockSwitch(s)\n\t\t\t\t}\n\n\t\t\t\tpreloadSymbol(safe, s.literal_htree, br, &bits, &value)\n\t\t\t\tif s.trivial_literal_context == 0 {\n\t\t\t\t\tgoto CommandInner\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif safe == 0 {\n\t\t\t\ts.ringbuffer[pos] = byte(readPreloadedSymbol(s.literal_htree, br, &bits, &value))\n\t\t\t} else {\n\t\t\t\tvar literal uint32\n\t\t\t\tif !safeReadSymbol(s.literal_htree, br, &literal) {\n\t\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\t\tgoto saveStateAndReturn\n\t\t\t\t}\n\n\t\t\t\ts.ringbuffer[pos] = byte(literal)\n\t\t\t}\n\n\t\t\ts.block_length[0]--\n\t\t\tpos++\n\t\t\tif pos == s.ringbuffer_size {\n\t\t\t\ts.state = stateCommandInnerWrite\n\t\t\t\ti--\n\t\t\t\tgoto saveStateAndReturn\n\t\t\t}\n\t\t\ti--\n\t\t\tif i == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t} else {\n\t\tvar p1 byte = s.ringbuffer[(pos-1)&s.ringbuffer_mask]\n\t\tvar p2 byte = s.ringbuffer[(pos-2)&s.ringbuffer_mask]\n\t\tfor {\n\t\t\tvar context byte\n\t\t\tif !checkInputAmountMaybeSafe(safe, br, 28) { /* 162 bits + 7 bytes */\n\t\t\t\ts.state = stateCommandInner\n\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\tgoto saveStateAndReturn\n\t\t\t}\n\n\t\t\tif s.block_length[0] == 0 {\n\t\t\t\tif safe != 0 {\n\t\t\t\t\tif !safeDecodeLiteralBlockSwitch(s) {\n\t\t\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\t\t\tgoto saveStateAndReturn\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tdecodeLiteralBlockSwitch(s)\n\t\t\t\t}\n\n\t\t\t\tif s.trivial_literal_context != 0 {\n\t\t\t\t\tgoto CommandInner\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tcontext = getContext(p1, p2, s.context_lookup)\n\t\t\thc = []huffmanCode(s.literal_hgroup.htrees[s.context_map_slice[context]])\n\t\t\tp2 = p1\n\t\t\tif safe == 0 {\n\t\t\t\tp1 = byte(readSymbol(hc, br))\n\t\t\t} else {\n\t\t\t\tvar literal uint32\n\t\t\t\tif !safeReadSymbol(hc, br, &literal) {\n\t\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\t\tgoto saveStateAndReturn\n\t\t\t\t}\n\n\t\t\t\tp1 = byte(literal)\n\t\t\t}\n\n\t\t\ts.ringbuffer[pos] = p1\n\t\t\ts.block_length[0]--\n\t\t\tpos++\n\t\t\tif pos == s.ringbuffer_size {\n\t\t\t\ts.state = stateCommandInnerWrite\n\t\t\t\ti--\n\t\t\t\tgoto saveStateAndReturn\n\t\t\t}\n\t\t\ti--\n\t\t\tif i == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\tif s.meta_block_remaining_len <= 0 {\n\t\ts.state = stateMetablockDone\n\t\tgoto saveStateAndReturn\n\t}\n\nCommandPostDecodeLiterals:\n\tif safe != 0 {\n\t\ts.state = stateCommandPostDecodeLiterals\n\t}\n\n\tif s.distance_code >= 0 {\n\t\t/* Implicit distance case. */\n\t\tif s.distance_code != 0 {\n\t\t\ts.distance_context = 0\n\t\t} else {\n\t\t\ts.distance_context = 1\n\t\t}\n\n\t\ts.dist_rb_idx--\n\t\ts.distance_code = s.dist_rb[s.dist_rb_idx&3]\n\t} else {\n\t\t/* Read distance code in the command, unless it was implicitly zero. */\n\t\tif s.block_length[2] == 0 {\n\t\t\tif safe != 0 {\n\t\t\t\tif !safeDecodeDistanceBlockSwitch(s) {\n\t\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\t\tgoto saveStateAndReturn\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdecodeDistanceBlockSwitch(s)\n\t\t\t}\n\t\t}\n\n\t\tif safe != 0 {\n\t\t\tif !safeReadDistance(s, br) {\n\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\tgoto saveStateAndReturn\n\t\t\t}\n\t\t} else {\n\t\t\treadDistance(s, br)\n\t\t}\n\t}\n\n\tif s.max_distance != s.max_backward_distance {\n\t\tif pos < s.max_backward_distance {\n\t\t\ts.max_distance = pos\n\t\t} else {\n\t\t\ts.max_distance = s.max_backward_distance\n\t\t}\n\t}\n\n\ti = s.copy_length\n\n\t/* Apply copy of LZ77 back-reference, or static dictionary reference if\n\t   the distance is larger than the max LZ77 distance */\n\tif s.distance_code > s.max_distance {\n\t\t/* The maximum allowed distance is BROTLI_MAX_ALLOWED_DISTANCE = 0x7FFFFFFC.\n\t\t   With this choice, no signed overflow can occur after decoding\n\t\t   a special distance code (e.g., after adding 3 to the last distance). */\n\t\tif s.distance_code > maxAllowedDistance {\n\t\t\treturn decoderErrorFormatDistance\n\t\t}\n\n\t\tif i >= minDictionaryWordLength && i <= maxDictionaryWordLength {\n\t\t\tvar address int = s.distance_code - s.max_distance - 1\n\t\t\tvar words *dictionary = s.dictionary\n\t\t\tvar trans *transforms = s.transforms\n\t\t\tvar offset int = int(s.dictionary.offsets_by_length[i])\n\t\t\tvar shift uint32 = uint32(s.dictionary.size_bits_by_length[i])\n\t\t\tvar mask int = int(bitMask(shift))\n\t\t\tvar word_idx int = address & mask\n\t\t\tvar transform_idx int = address >> shift\n\n\t\t\t/* Compensate double distance-ring-buffer roll. */\n\t\t\ts.dist_rb_idx += s.distance_context\n\n\t\t\toffset += word_idx * i\n\t\t\tif words.data == nil {\n\t\t\t\treturn decoderErrorDictionaryNotSet\n\t\t\t}\n\n\t\t\tif transform_idx < int(trans.num_transforms) {\n\t\t\t\tvar word []byte\n\t\t\t\tword = words.data[offset:]\n\t\t\t\tvar len int = i\n\t\t\t\tif transform_idx == int(trans.cutOffTransforms[0]) {\n\t\t\t\t\tcopy(s.ringbuffer[pos:], word[:uint(len)])\n\t\t\t\t} else {\n\t\t\t\t\tlen = transformDictionaryWord(s.ringbuffer[pos:], word, int(len), trans, transform_idx)\n\t\t\t\t}\n\n\t\t\t\tpos += int(len)\n\t\t\t\ts.meta_block_remaining_len -= int(len)\n\t\t\t\tif pos >= s.ringbuffer_size {\n\t\t\t\t\ts.state = stateCommandPostWrite1\n\t\t\t\t\tgoto saveStateAndReturn\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\treturn decoderErrorFormatTransform\n\t\t\t}\n\t\t} else {\n\t\t\treturn decoderErrorFormatDictionary\n\t\t}\n\t} else {\n\t\tvar src_start int = (pos - s.distance_code) & s.ringbuffer_mask\n\t\tvar copy_dst []byte\n\t\tcopy_dst = s.ringbuffer[pos:]\n\t\tvar copy_src []byte\n\t\tcopy_src = s.ringbuffer[src_start:]\n\t\tvar dst_end int = pos + i\n\t\tvar src_end int = src_start + i\n\n\t\t/* Update the recent distances cache. */\n\t\ts.dist_rb[s.dist_rb_idx&3] = s.distance_code\n\n\t\ts.dist_rb_idx++\n\t\ts.meta_block_remaining_len -= i\n\n\t\t/* There are 32+ bytes of slack in the ring-buffer allocation.\n\t\t   Also, we have 16 short codes, that make these 16 bytes irrelevant\n\t\t   in the ring-buffer. Let's copy over them as a first guess. */\n\t\tcopy(copy_dst, copy_src[:16])\n\n\t\tif src_end > pos && dst_end > src_start {\n\t\t\t/* Regions intersect. */\n\t\t\tgoto CommandPostWrapCopy\n\t\t}\n\n\t\tif dst_end >= s.ringbuffer_size || src_end >= s.ringbuffer_size {\n\t\t\t/* At least one region wraps. */\n\t\t\tgoto CommandPostWrapCopy\n\t\t}\n\n\t\tpos += i\n\t\tif i > 16 {\n\t\t\tif i > 32 {\n\t\t\t\tcopy(copy_dst[16:], copy_src[16:][:uint(i-16)])\n\t\t\t} else {\n\t\t\t\t/* This branch covers about 45% cases.\n\t\t\t\t   Fixed size short copy allows more compiler optimizations. */\n\t\t\t\tcopy(copy_dst[16:], copy_src[16:][:16])\n\t\t\t}\n\t\t}\n\t}\n\n\tif s.meta_block_remaining_len <= 0 {\n\t\t/* Next metablock, if any. */\n\t\ts.state = stateMetablockDone\n\n\t\tgoto saveStateAndReturn\n\t} else {\n\t\tgoto CommandBegin\n\t}\nCommandPostWrapCopy:\n\t{\n\t\tvar wrap_guard int = s.ringbuffer_size - pos\n\t\tfor {\n\t\t\ti--\n\t\t\tif i < 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\ts.ringbuffer[pos] = s.ringbuffer[(pos-s.distance_code)&s.ringbuffer_mask]\n\t\t\tpos++\n\t\t\twrap_guard--\n\t\t\tif wrap_guard == 0 {\n\t\t\t\ts.state = stateCommandPostWrite2\n\t\t\t\tgoto saveStateAndReturn\n\t\t\t}\n\t\t}\n\t}\n\n\tif s.meta_block_remaining_len <= 0 {\n\t\t/* Next metablock, if any. */\n\t\ts.state = stateMetablockDone\n\n\t\tgoto saveStateAndReturn\n\t} else {\n\t\tgoto CommandBegin\n\t}\n\nsaveStateAndReturn:\n\ts.pos = pos\n\ts.loop_counter = i\n\treturn result\n}\n\nfunc processCommands(s *Reader) int {\n\treturn processCommandsInternal(0, s)\n}\n\nfunc safeProcessCommands(s *Reader) int {\n\treturn processCommandsInternal(1, s)\n}\n\n/* Returns the maximum number of distance symbols which can only represent\n   distances not exceeding BROTLI_MAX_ALLOWED_DISTANCE. */\n\nvar maxDistanceSymbol_bound = [maxNpostfix + 1]uint32{0, 4, 12, 28}\nvar maxDistanceSymbol_diff = [maxNpostfix + 1]uint32{73, 126, 228, 424}\n\nfunc maxDistanceSymbol(ndirect uint32, npostfix uint32) uint32 {\n\tvar postfix uint32 = 1 << npostfix\n\tif ndirect < maxDistanceSymbol_bound[npostfix] {\n\t\treturn ndirect + maxDistanceSymbol_diff[npostfix] + postfix\n\t} else if ndirect > maxDistanceSymbol_bound[npostfix]+postfix {\n\t\treturn ndirect + maxDistanceSymbol_diff[npostfix]\n\t} else {\n\t\treturn maxDistanceSymbol_bound[npostfix] + maxDistanceSymbol_diff[npostfix] + postfix\n\t}\n}\n\n/* Invariant: input stream is never overconsumed:\n   - invalid input implies that the whole stream is invalid -> any amount of\n     input could be read and discarded\n   - when result is \"needs more input\", then at least one more byte is REQUIRED\n     to complete decoding; all input data MUST be consumed by decoder, so\n     client could swap the input buffer\n   - when result is \"needs more output\" decoder MUST ensure that it doesn't\n     hold more than 7 bits in bit reader; this saves client from swapping input\n     buffer ahead of time\n   - when result is \"success\" decoder MUST return all unused data back to input\n     buffer; this is possible because the invariant is held on enter */\nfunc decoderDecompressStream(s *Reader, available_in *uint, next_in *[]byte, available_out *uint, next_out *[]byte) int {\n\tvar result int = decoderSuccess\n\tvar br *bitReader = &s.br\n\n\t/* Do not try to process further in a case of unrecoverable error. */\n\tif int(s.error_code) < 0 {\n\t\treturn decoderResultError\n\t}\n\n\tif *available_out != 0 && (next_out == nil || *next_out == nil) {\n\t\treturn saveErrorCode(s, decoderErrorInvalidArguments)\n\t}\n\n\tif *available_out == 0 {\n\t\tnext_out = nil\n\t}\n\tif s.buffer_length == 0 { /* Just connect bit reader to input stream. */\n\t\tbr.input_len = *available_in\n\t\tbr.input = *next_in\n\t\tbr.byte_pos = 0\n\t} else {\n\t\t/* At least one byte of input is required. More than one byte of input may\n\t\t   be required to complete the transaction -> reading more data must be\n\t\t   done in a loop -> do it in a main loop. */\n\t\tresult = decoderNeedsMoreInput\n\n\t\tbr.input = s.buffer.u8[:]\n\t\tbr.byte_pos = 0\n\t}\n\n\t/* State machine */\n\tfor {\n\t\tif result != decoderSuccess {\n\t\t\t/* Error, needs more input/output. */\n\t\t\tif result == decoderNeedsMoreInput {\n\t\t\t\tif s.ringbuffer != nil { /* Pro-actively push output. */\n\t\t\t\t\tvar intermediate_result int = writeRingBuffer(s, available_out, next_out, nil, true)\n\n\t\t\t\t\t/* WriteRingBuffer checks s->meta_block_remaining_len validity. */\n\t\t\t\t\tif int(intermediate_result) < 0 {\n\t\t\t\t\t\tresult = intermediate_result\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif s.buffer_length != 0 { /* Used with internal buffer. */\n\t\t\t\t\tif br.byte_pos == br.input_len {\n\t\t\t\t\t\t/* Successfully finished read transaction.\n\t\t\t\t\t\t   Accumulator contains less than 8 bits, because internal buffer\n\t\t\t\t\t\t   is expanded byte-by-byte until it is enough to complete read. */\n\t\t\t\t\t\ts.buffer_length = 0\n\n\t\t\t\t\t\t/* Switch to input stream and restart. */\n\t\t\t\t\t\tresult = decoderSuccess\n\n\t\t\t\t\t\tbr.input_len = *available_in\n\t\t\t\t\t\tbr.input = *next_in\n\t\t\t\t\t\tbr.byte_pos = 0\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t} else if *available_in != 0 {\n\t\t\t\t\t\t/* Not enough data in buffer, but can take one more byte from\n\t\t\t\t\t\t   input stream. */\n\t\t\t\t\t\tresult = decoderSuccess\n\n\t\t\t\t\t\ts.buffer.u8[s.buffer_length] = (*next_in)[0]\n\t\t\t\t\t\ts.buffer_length++\n\t\t\t\t\t\tbr.input_len = uint(s.buffer_length)\n\t\t\t\t\t\t*next_in = (*next_in)[1:]\n\t\t\t\t\t\t(*available_in)--\n\n\t\t\t\t\t\t/* Retry with more data in buffer. */\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\n\t\t\t\t\t/* Can't finish reading and no more input. */\n\t\t\t\t\tbreak\n\t\t\t\t\t/* Input stream doesn't contain enough input. */\n\t\t\t\t} else {\n\t\t\t\t\t/* Copy tail to internal buffer and return. */\n\t\t\t\t\t*next_in = br.input[br.byte_pos:]\n\n\t\t\t\t\t*available_in = br.input_len - br.byte_pos\n\t\t\t\t\tfor *available_in != 0 {\n\t\t\t\t\t\ts.buffer.u8[s.buffer_length] = (*next_in)[0]\n\t\t\t\t\t\ts.buffer_length++\n\t\t\t\t\t\t*next_in = (*next_in)[1:]\n\t\t\t\t\t\t(*available_in)--\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/* Unreachable. */\n\n\t\t\t/* Fail or needs more output. */\n\t\t\tif s.buffer_length != 0 {\n\t\t\t\t/* Just consumed the buffered input and produced some output. Otherwise\n\t\t\t\t   it would result in \"needs more input\". Reset internal buffer. */\n\t\t\t\ts.buffer_length = 0\n\t\t\t} else {\n\t\t\t\t/* Using input stream in last iteration. When decoder switches to input\n\t\t\t\t   stream it has less than 8 bits in accumulator, so it is safe to\n\t\t\t\t   return unused accumulator bits there. */\n\t\t\t\tbitReaderUnload(br)\n\n\t\t\t\t*available_in = br.input_len - br.byte_pos\n\t\t\t\t*next_in = br.input[br.byte_pos:]\n\t\t\t}\n\n\t\t\tbreak\n\t\t}\n\n\t\tswitch s.state {\n\t\t/* Prepare to the first read. */\n\t\tcase stateUninited:\n\t\t\tif !warmupBitReader(br) {\n\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t/* Decode window size. */\n\t\t\tresult = decodeWindowBits(s, br) /* Reads 1..8 bits. */\n\t\t\tif result != decoderSuccess {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif s.large_window {\n\t\t\t\ts.state = stateLargeWindowBits\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.state = stateInitialize\n\n\t\tcase stateLargeWindowBits:\n\t\t\tif !safeReadBits(br, 6, &s.window_bits) {\n\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif s.window_bits < largeMinWbits || s.window_bits > largeMaxWbits {\n\t\t\t\tresult = decoderErrorFormatWindowBits\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.state = stateInitialize\n\t\t\tfallthrough\n\n\t\t\t/* Maximum distance, see section 9.1. of the spec. */\n\t\t/* Fall through. */\n\t\tcase stateInitialize:\n\t\t\ts.max_backward_distance = (1 << s.window_bits) - windowGap\n\n\t\t\t/* Allocate memory for both block_type_trees and block_len_trees. */\n\t\t\ts.block_type_trees = make([]huffmanCode, (3 * (huffmanMaxSize258 + huffmanMaxSize26)))\n\n\t\t\tif s.block_type_trees == nil {\n\t\t\t\tresult = decoderErrorAllocBlockTypeTrees\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.block_len_trees = s.block_type_trees[3*huffmanMaxSize258:]\n\n\t\t\ts.state = stateMetablockBegin\n\t\t\tfallthrough\n\n\t\t\t/* Fall through. */\n\t\tcase stateMetablockBegin:\n\t\t\tdecoderStateMetablockBegin(s)\n\n\t\t\ts.state = stateMetablockHeader\n\t\t\tfallthrough\n\n\t\t\t/* Fall through. */\n\t\tcase stateMetablockHeader:\n\t\t\tresult = decodeMetaBlockLength(s, br)\n\t\t\t/* Reads 2 - 31 bits. */\n\t\t\tif result != decoderSuccess {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif s.is_metadata != 0 || s.is_uncompressed != 0 {\n\t\t\t\tif !bitReaderJumpToByteBoundary(br) {\n\t\t\t\t\tresult = decoderErrorFormatPadding1\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif s.is_metadata != 0 {\n\t\t\t\ts.state = stateMetadata\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif s.meta_block_remaining_len == 0 {\n\t\t\t\ts.state = stateMetablockDone\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tcalculateRingBufferSize(s)\n\t\t\tif s.is_uncompressed != 0 {\n\t\t\t\ts.state = stateUncompressed\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.loop_counter = 0\n\t\t\ts.state = stateHuffmanCode0\n\n\t\tcase stateUncompressed:\n\t\t\tresult = copyUncompressedBlockToOutput(available_out, next_out, nil, s)\n\t\t\tif result == decoderSuccess {\n\t\t\t\ts.state = stateMetablockDone\n\t\t\t}\n\n\t\tcase stateMetadata:\n\t\t\tfor ; s.meta_block_remaining_len > 0; s.meta_block_remaining_len-- {\n\t\t\t\tvar bits uint32\n\n\t\t\t\t/* Read one byte and ignore it. */\n\t\t\t\tif !safeReadBits(br, 8, &bits) {\n\t\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif result == decoderSuccess {\n\t\t\t\ts.state = stateMetablockDone\n\t\t\t}\n\n\t\tcase stateHuffmanCode0:\n\t\t\tif s.loop_counter >= 3 {\n\t\t\t\ts.state = stateMetablockHeader2\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t/* Reads 1..11 bits. */\n\t\t\tresult = decodeVarLenUint8(s, br, &s.num_block_types[s.loop_counter])\n\n\t\t\tif result != decoderSuccess {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.num_block_types[s.loop_counter]++\n\t\t\tif s.num_block_types[s.loop_counter] < 2 {\n\t\t\t\ts.loop_counter++\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.state = stateHuffmanCode1\n\t\t\tfallthrough\n\n\t\tcase stateHuffmanCode1:\n\t\t\t{\n\t\t\t\tvar alphabet_size uint32 = s.num_block_types[s.loop_counter] + 2\n\t\t\t\tvar tree_offset int = s.loop_counter * huffmanMaxSize258\n\t\t\t\tresult = readHuffmanCode(alphabet_size, alphabet_size, s.block_type_trees[tree_offset:], nil, s)\n\t\t\t\tif result != decoderSuccess {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\ts.state = stateHuffmanCode2\n\t\t\t}\n\t\t\tfallthrough\n\n\t\tcase stateHuffmanCode2:\n\t\t\t{\n\t\t\t\tvar alphabet_size uint32 = numBlockLenSymbols\n\t\t\t\tvar tree_offset int = s.loop_counter * huffmanMaxSize26\n\t\t\t\tresult = readHuffmanCode(alphabet_size, alphabet_size, s.block_len_trees[tree_offset:], nil, s)\n\t\t\t\tif result != decoderSuccess {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\ts.state = stateHuffmanCode3\n\t\t\t}\n\t\t\tfallthrough\n\n\t\tcase stateHuffmanCode3:\n\t\t\tvar tree_offset int = s.loop_counter * huffmanMaxSize26\n\t\t\tif !safeReadBlockLength(s, &s.block_length[s.loop_counter], s.block_len_trees[tree_offset:], br) {\n\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.loop_counter++\n\t\t\ts.state = stateHuffmanCode0\n\n\t\tcase stateMetablockHeader2:\n\t\t\t{\n\t\t\t\tvar bits uint32\n\t\t\t\tif !safeReadBits(br, 6, &bits) {\n\t\t\t\t\tresult = decoderNeedsMoreInput\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\ts.distance_postfix_bits = bits & bitMask(2)\n\t\t\t\tbits >>= 2\n\t\t\t\ts.num_direct_distance_codes = numDistanceShortCodes + (bits << s.distance_postfix_bits)\n\t\t\t\ts.distance_postfix_mask = int(bitMask(s.distance_postfix_bits))\n\t\t\t\ts.context_modes = make([]byte, uint(s.num_block_types[0]))\n\t\t\t\tif s.context_modes == nil {\n\t\t\t\t\tresult = decoderErrorAllocContextModes\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\ts.loop_counter = 0\n\t\t\t\ts.state = stateContextModes\n\t\t\t}\n\t\t\tfallthrough\n\n\t\tcase stateContextModes:\n\t\t\tresult = readContextModes(s)\n\n\t\t\tif result != decoderSuccess {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\ts.state = stateContextMap1\n\t\t\tfallthrough\n\n\t\tcase stateContextMap1:\n\t\t\tresult = decodeContextMap(s.num_block_types[0]<<literalContextBits, &s.num_literal_htrees, &s.context_map, s)\n\n\t\t\tif result != decoderSuccess {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tdetectTrivialLiteralBlockTypes(s)\n\t\t\ts.state = stateContextMap2\n\t\t\tfallthrough\n\n\t\tcase stateContextMap2:\n\t\t\t{\n\t\t\t\tvar num_direct_codes uint32 = s.num_direct_distance_codes - numDistanceShortCodes\n\t\t\t\tvar num_distance_codes uint32\n\t\t\t\tvar max_distance_symbol uint32\n\t\t\t\tif s.large_window {\n\t\t\t\t\tnum_distance_codes = uint32(distanceAlphabetSize(uint(s.distance_postfix_bits), uint(num_direct_codes), largeMaxDistanceBits))\n\t\t\t\t\tmax_distance_symbol = maxDistanceSymbol(num_direct_codes, s.distance_postfix_bits)\n\t\t\t\t} else {\n\t\t\t\t\tnum_distance_codes = uint32(distanceAlphabetSize(uint(s.distance_postfix_bits), uint(num_direct_codes), maxDistanceBits))\n\t\t\t\t\tmax_distance_symbol = num_distance_codes\n\t\t\t\t}\n\t\t\t\tvar allocation_success bool = true\n\t\t\t\tresult = decodeContextMap(s.num_block_types[2]<<distanceContextBits, &s.num_dist_htrees, &s.dist_context_map, s)\n\t\t\t\tif result != decoderSuccess {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tif !decoderHuffmanTreeGroupInit(s, &s.literal_hgroup, numLiteralSymbols, numLiteralSymbols, s.num_literal_htrees) {\n\t\t\t\t\tallocation_success = false\n\t\t\t\t}\n\n\t\t\t\tif !decoderHuffmanTreeGroupInit(s, &s.insert_copy_hgroup, numCommandSymbols, numCommandSymbols, s.num_block_types[1]) {\n\t\t\t\t\tallocation_success = false\n\t\t\t\t}\n\n\t\t\t\tif !decoderHuffmanTreeGroupInit(s, &s.distance_hgroup, num_distance_codes, max_distance_symbol, s.num_dist_htrees) {\n\t\t\t\t\tallocation_success = false\n\t\t\t\t}\n\n\t\t\t\tif !allocation_success {\n\t\t\t\t\treturn saveErrorCode(s, decoderErrorAllocTreeGroups)\n\t\t\t\t}\n\n\t\t\t\ts.loop_counter = 0\n\t\t\t\ts.state = stateTreeGroup\n\t\t\t}\n\t\t\tfallthrough\n\n\t\tcase stateTreeGroup:\n\t\t\tvar hgroup *huffmanTreeGroup = nil\n\t\t\tswitch s.loop_counter {\n\t\t\tcase 0:\n\t\t\t\thgroup = &s.literal_hgroup\n\t\t\tcase 1:\n\t\t\t\thgroup = &s.insert_copy_hgroup\n\t\t\tcase 2:\n\t\t\t\thgroup = &s.distance_hgroup\n\t\t\tdefault:\n\t\t\t\treturn saveErrorCode(s, decoderErrorUnreachable)\n\t\t\t}\n\n\t\t\tresult = huffmanTreeGroupDecode(hgroup, s)\n\t\t\tif result != decoderSuccess {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\ts.loop_counter++\n\t\t\tif s.loop_counter >= 3 {\n\t\t\t\tprepareLiteralDecoding(s)\n\t\t\t\ts.dist_context_map_slice = s.dist_context_map\n\t\t\t\ts.htree_command = []huffmanCode(s.insert_copy_hgroup.htrees[0])\n\t\t\t\tif !ensureRingBuffer(s) {\n\t\t\t\t\tresult = decoderErrorAllocRingBuffer2\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\ts.state = stateCommandBegin\n\t\t\t}\n\n\t\tcase stateCommandBegin, stateCommandInner, stateCommandPostDecodeLiterals, stateCommandPostWrapCopy:\n\t\t\tresult = processCommands(s)\n\n\t\t\tif result == decoderNeedsMoreInput {\n\t\t\t\tresult = safeProcessCommands(s)\n\t\t\t}\n\n\t\tcase stateCommandInnerWrite, stateCommandPostWrite1, stateCommandPostWrite2:\n\t\t\tresult = writeRingBuffer(s, available_out, next_out, nil, false)\n\n\t\t\tif result != decoderSuccess {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\twrapRingBuffer(s)\n\t\t\tif s.ringbuffer_size == 1<<s.window_bits {\n\t\t\t\ts.max_distance = s.max_backward_distance\n\t\t\t}\n\n\t\t\tif s.state == stateCommandPostWrite1 {\n\t\t\t\tif s.meta_block_remaining_len == 0 {\n\t\t\t\t\t/* Next metablock, if any. */\n\t\t\t\t\ts.state = stateMetablockDone\n\t\t\t\t} else {\n\t\t\t\t\ts.state = stateCommandBegin\n\t\t\t\t}\n\n\t\t\t\tbreak\n\t\t\t} else if s.state == stateCommandPostWrite2 {\n\t\t\t\ts.state = stateCommandPostWrapCopy /* BROTLI_STATE_COMMAND_INNER_WRITE */\n\t\t\t} else {\n\t\t\t\tif s.loop_counter == 0 {\n\t\t\t\t\tif s.meta_block_remaining_len == 0 {\n\t\t\t\t\t\ts.state = stateMetablockDone\n\t\t\t\t\t} else {\n\t\t\t\t\t\ts.state = stateCommandPostDecodeLiterals\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\ts.state = stateCommandInner\n\t\t\t}\n\n\t\tcase stateMetablockDone:\n\t\t\tif s.meta_block_remaining_len < 0 {\n\t\t\t\tresult = decoderErrorFormatBlockLength2\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tdecoderStateCleanupAfterMetablock(s)\n\t\t\tif s.is_last_metablock == 0 {\n\t\t\t\ts.state = stateMetablockBegin\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif !bitReaderJumpToByteBoundary(br) {\n\t\t\t\tresult = decoderErrorFormatPadding2\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif s.buffer_length == 0 {\n\t\t\t\tbitReaderUnload(br)\n\t\t\t\t*available_in = br.input_len - br.byte_pos\n\t\t\t\t*next_in = br.input[br.byte_pos:]\n\t\t\t}\n\n\t\t\ts.state = stateDone\n\t\t\tfallthrough\n\n\t\tcase stateDone:\n\t\t\tif s.ringbuffer != nil {\n\t\t\t\tresult = writeRingBuffer(s, available_out, next_out, nil, true)\n\t\t\t\tif result != decoderSuccess {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn saveErrorCode(s, result)\n\t\t}\n\t}\n\n\treturn saveErrorCode(s, result)\n}\n\nfunc decoderHasMoreOutput(s *Reader) bool {\n\t/* After unrecoverable error remaining output is considered nonsensical. */\n\tif int(s.error_code) < 0 {\n\t\treturn false\n\t}\n\n\treturn s.ringbuffer != nil && unwrittenBytes(s, false) != 0\n}\n\nfunc decoderGetErrorCode(s *Reader) int {\n\treturn int(s.error_code)\n}\n\nfunc decoderErrorString(c int) string {\n\tswitch c {\n\tcase decoderNoError:\n\t\treturn \"NO_ERROR\"\n\tcase decoderSuccess:\n\t\treturn \"SUCCESS\"\n\tcase decoderNeedsMoreInput:\n\t\treturn \"NEEDS_MORE_INPUT\"\n\tcase decoderNeedsMoreOutput:\n\t\treturn \"NEEDS_MORE_OUTPUT\"\n\tcase decoderErrorFormatExuberantNibble:\n\t\treturn \"EXUBERANT_NIBBLE\"\n\tcase decoderErrorFormatReserved:\n\t\treturn \"RESERVED\"\n\tcase decoderErrorFormatExuberantMetaNibble:\n\t\treturn \"EXUBERANT_META_NIBBLE\"\n\tcase decoderErrorFormatSimpleHuffmanAlphabet:\n\t\treturn \"SIMPLE_HUFFMAN_ALPHABET\"\n\tcase decoderErrorFormatSimpleHuffmanSame:\n\t\treturn \"SIMPLE_HUFFMAN_SAME\"\n\tcase decoderErrorFormatClSpace:\n\t\treturn \"CL_SPACE\"\n\tcase decoderErrorFormatHuffmanSpace:\n\t\treturn \"HUFFMAN_SPACE\"\n\tcase decoderErrorFormatContextMapRepeat:\n\t\treturn \"CONTEXT_MAP_REPEAT\"\n\tcase decoderErrorFormatBlockLength1:\n\t\treturn \"BLOCK_LENGTH_1\"\n\tcase decoderErrorFormatBlockLength2:\n\t\treturn \"BLOCK_LENGTH_2\"\n\tcase decoderErrorFormatTransform:\n\t\treturn \"TRANSFORM\"\n\tcase decoderErrorFormatDictionary:\n\t\treturn \"DICTIONARY\"\n\tcase decoderErrorFormatWindowBits:\n\t\treturn \"WINDOW_BITS\"\n\tcase decoderErrorFormatPadding1:\n\t\treturn \"PADDING_1\"\n\tcase decoderErrorFormatPadding2:\n\t\treturn \"PADDING_2\"\n\tcase decoderErrorFormatDistance:\n\t\treturn \"DISTANCE\"\n\tcase decoderErrorDictionaryNotSet:\n\t\treturn \"DICTIONARY_NOT_SET\"\n\tcase decoderErrorInvalidArguments:\n\t\treturn \"INVALID_ARGUMENTS\"\n\tcase decoderErrorAllocContextModes:\n\t\treturn \"CONTEXT_MODES\"\n\tcase decoderErrorAllocTreeGroups:\n\t\treturn \"TREE_GROUPS\"\n\tcase decoderErrorAllocContextMap:\n\t\treturn \"CONTEXT_MAP\"\n\tcase decoderErrorAllocRingBuffer1:\n\t\treturn \"RING_BUFFER_1\"\n\tcase decoderErrorAllocRingBuffer2:\n\t\treturn \"RING_BUFFER_2\"\n\tcase decoderErrorAllocBlockTypeTrees:\n\t\treturn \"BLOCK_TYPE_TREES\"\n\tcase decoderErrorUnreachable:\n\t\treturn \"UNREACHABLE\"\n\tdefault:\n\t\treturn \"INVALID\"\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/dictionary.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Collection of static dictionary words. */\ntype dictionary struct {\n\tsize_bits_by_length [32]byte\n\toffsets_by_length   [32]uint32\n\tdata_size           uint\n\tdata                []byte\n}\n\nconst minDictionaryWordLength = 4\n\nconst maxDictionaryWordLength = 24\n\nvar kBrotliDictionaryData = []byte{\n\t116,\n\t105,\n\t109,\n\t101,\n\t100,\n\t111,\n\t119,\n\t110,\n\t108,\n\t105,\n\t102,\n\t101,\n\t108,\n\t101,\n\t102,\n\t116,\n\t98,\n\t97,\n\t99,\n\t107,\n\t99,\n\t111,\n\t100,\n\t101,\n\t100,\n\t97,\n\t116,\n\t97,\n\t115,\n\t104,\n\t111,\n\t119,\n\t111,\n\t110,\n\t108,\n\t121,\n\t115,\n\t105,\n\t116,\n\t101,\n\t99,\n\t105,\n\t116,\n\t121,\n\t111,\n\t112,\n\t101,\n\t110,\n\t106,\n\t117,\n\t115,\n\t116,\n\t108,\n\t105,\n\t107,\n\t101,\n\t102,\n\t114,\n\t101,\n\t101,\n\t119,\n\t111,\n\t114,\n\t107,\n\t116,\n\t101,\n\t120,\n\t116,\n\t121,\n\t101,\n\t97,\n\t114,\n\t111,\n\t118,\n\t101,\n\t114,\n\t98,\n\t111,\n\t100,\n\t121,\n\t108,\n\t111,\n\t118,\n\t101,\n\t102,\n\t111,\n\t114,\n\t109,\n\t98,\n\t111,\n\t111,\n\t107,\n\t112,\n\t108,\n\t97,\n\t121,\n\t108,\n\t105,\n\t118,\n\t101,\n\t108,\n\t105,\n\t110,\n\t101,\n\t104,\n\t101,\n\t108,\n\t112,\n\t104,\n\t111,\n\t109,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t109,\n\t111,\n\t114,\n\t101,\n\t119,\n\t111,\n\t114,\n\t100,\n\t108,\n\t111,\n\t110,\n\t103,\n\t116,\n\t104,\n\t101,\n\t109,\n\t118,\n\t105,\n\t101,\n\t119,\n\t102,\n\t105,\n\t110,\n\t100,\n\t112,\n\t97,\n\t103,\n\t101,\n\t100,\n\t97,\n\t121,\n\t115,\n\t102,\n\t117,\n\t108,\n\t108,\n\t104,\n\t101,\n\t97,\n\t100,\n\t116,\n\t101,\n\t114,\n\t109,\n\t101,\n\t97,\n\t99,\n\t104,\n\t97,\n\t114,\n\t101,\n\t97,\n\t102,\n\t114,\n\t111,\n\t109,\n\t116,\n\t114,\n\t117,\n\t101,\n\t109,\n\t97,\n\t114,\n\t107,\n\t97,\n\t98,\n\t108,\n\t101,\n\t117,\n\t112,\n\t111,\n\t110,\n\t104,\n\t105,\n\t103,\n\t104,\n\t100,\n\t97,\n\t116,\n\t101,\n\t108,\n\t97,\n\t110,\n\t100,\n\t110,\n\t101,\n\t119,\n\t115,\n\t101,\n\t118,\n\t101,\n\t110,\n\t110,\n\t101,\n\t120,\n\t116,\n\t99,\n\t97,\n\t115,\n\t101,\n\t98,\n\t111,\n\t116,\n\t104,\n\t112,\n\t111,\n\t115,\n\t116,\n\t117,\n\t115,\n\t101,\n\t100,\n\t109,\n\t97,\n\t100,\n\t101,\n\t104,\n\t97,\n\t110,\n\t100,\n\t104,\n\t101,\n\t114,\n\t101,\n\t119,\n\t104,\n\t97,\n\t116,\n\t110,\n\t97,\n\t109,\n\t101,\n\t76,\n\t105,\n\t110,\n\t107,\n\t98,\n\t108,\n\t111,\n\t103,\n\t115,\n\t105,\n\t122,\n\t101,\n\t98,\n\t97,\n\t115,\n\t101,\n\t104,\n\t101,\n\t108,\n\t100,\n\t109,\n\t97,\n\t107,\n\t101,\n\t109,\n\t97,\n\t105,\n\t110,\n\t117,\n\t115,\n\t101,\n\t114,\n\t39,\n\t41,\n\t32,\n\t43,\n\t104,\n\t111,\n\t108,\n\t100,\n\t101,\n\t110,\n\t100,\n\t115,\n\t119,\n\t105,\n\t116,\n\t104,\n\t78,\n\t101,\n\t119,\n\t115,\n\t114,\n\t101,\n\t97,\n\t100,\n\t119,\n\t101,\n\t114,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t116,\n\t97,\n\t107,\n\t101,\n\t104,\n\t97,\n\t118,\n\t101,\n\t103,\n\t97,\n\t109,\n\t101,\n\t115,\n\t101,\n\t101,\n\t110,\n\t99,\n\t97,\n\t108,\n\t108,\n\t112,\n\t97,\n\t116,\n\t104,\n\t119,\n\t101,\n\t108,\n\t108,\n\t112,\n\t108,\n\t117,\n\t115,\n\t109,\n\t101,\n\t110,\n\t117,\n\t102,\n\t105,\n\t108,\n\t109,\n\t112,\n\t97,\n\t114,\n\t116,\n\t106,\n\t111,\n\t105,\n\t110,\n\t116,\n\t104,\n\t105,\n\t115,\n\t108,\n\t105,\n\t115,\n\t116,\n\t103,\n\t111,\n\t111,\n\t100,\n\t110,\n\t101,\n\t101,\n\t100,\n\t119,\n\t97,\n\t121,\n\t115,\n\t119,\n\t101,\n\t115,\n\t116,\n\t106,\n\t111,\n\t98,\n\t115,\n\t109,\n\t105,\n\t110,\n\t100,\n\t97,\n\t108,\n\t115,\n\t111,\n\t108,\n\t111,\n\t103,\n\t111,\n\t114,\n\t105,\n\t99,\n\t104,\n\t117,\n\t115,\n\t101,\n\t115,\n\t108,\n\t97,\n\t115,\n\t116,\n\t116,\n\t101,\n\t97,\n\t109,\n\t97,\n\t114,\n\t109,\n\t121,\n\t102,\n\t111,\n\t111,\n\t100,\n\t107,\n\t105,\n\t110,\n\t103,\n\t119,\n\t105,\n\t108,\n\t108,\n\t101,\n\t97,\n\t115,\n\t116,\n\t119,\n\t97,\n\t114,\n\t100,\n\t98,\n\t101,\n\t115,\n\t116,\n\t102,\n\t105,\n\t114,\n\t101,\n\t80,\n\t97,\n\t103,\n\t101,\n\t107,\n\t110,\n\t111,\n\t119,\n\t97,\n\t119,\n\t97,\n\t121,\n\t46,\n\t112,\n\t110,\n\t103,\n\t109,\n\t111,\n\t118,\n\t101,\n\t116,\n\t104,\n\t97,\n\t110,\n\t108,\n\t111,\n\t97,\n\t100,\n\t103,\n\t105,\n\t118,\n\t101,\n\t115,\n\t101,\n\t108,\n\t102,\n\t110,\n\t111,\n\t116,\n\t101,\n\t109,\n\t117,\n\t99,\n\t104,\n\t102,\n\t101,\n\t101,\n\t100,\n\t109,\n\t97,\n\t110,\n\t121,\n\t114,\n\t111,\n\t99,\n\t107,\n\t105,\n\t99,\n\t111,\n\t110,\n\t111,\n\t110,\n\t99,\n\t101,\n\t108,\n\t111,\n\t111,\n\t107,\n\t104,\n\t105,\n\t100,\n\t101,\n\t100,\n\t105,\n\t101,\n\t100,\n\t72,\n\t111,\n\t109,\n\t101,\n\t114,\n\t117,\n\t108,\n\t101,\n\t104,\n\t111,\n\t115,\n\t116,\n\t97,\n\t106,\n\t97,\n\t120,\n\t105,\n\t110,\n\t102,\n\t111,\n\t99,\n\t108,\n\t117,\n\t98,\n\t108,\n\t97,\n\t119,\n\t115,\n\t108,\n\t101,\n\t115,\n\t115,\n\t104,\n\t97,\n\t108,\n\t102,\n\t115,\n\t111,\n\t109,\n\t101,\n\t115,\n\t117,\n\t99,\n\t104,\n\t122,\n\t111,\n\t110,\n\t101,\n\t49,\n\t48,\n\t48,\n\t37,\n\t111,\n\t110,\n\t101,\n\t115,\n\t99,\n\t97,\n\t114,\n\t101,\n\t84,\n\t105,\n\t109,\n\t101,\n\t114,\n\t97,\n\t99,\n\t101,\n\t98,\n\t108,\n\t117,\n\t101,\n\t102,\n\t111,\n\t117,\n\t114,\n\t119,\n\t101,\n\t101,\n\t107,\n\t102,\n\t97,\n\t99,\n\t101,\n\t104,\n\t111,\n\t112,\n\t101,\n\t103,\n\t97,\n\t118,\n\t101,\n\t104,\n\t97,\n\t114,\n\t100,\n\t108,\n\t111,\n\t115,\n\t116,\n\t119,\n\t104,\n\t101,\n\t110,\n\t112,\n\t97,\n\t114,\n\t107,\n\t107,\n\t101,\n\t112,\n\t116,\n\t112,\n\t97,\n\t115,\n\t115,\n\t115,\n\t104,\n\t105,\n\t112,\n\t114,\n\t111,\n\t111,\n\t109,\n\t72,\n\t84,\n\t77,\n\t76,\n\t112,\n\t108,\n\t97,\n\t110,\n\t84,\n\t121,\n\t112,\n\t101,\n\t100,\n\t111,\n\t110,\n\t101,\n\t115,\n\t97,\n\t118,\n\t101,\n\t107,\n\t101,\n\t101,\n\t112,\n\t102,\n\t108,\n\t97,\n\t103,\n\t108,\n\t105,\n\t110,\n\t107,\n\t115,\n\t111,\n\t108,\n\t100,\n\t102,\n\t105,\n\t118,\n\t101,\n\t116,\n\t111,\n\t111,\n\t107,\n\t114,\n\t97,\n\t116,\n\t101,\n\t116,\n\t111,\n\t119,\n\t110,\n\t106,\n\t117,\n\t109,\n\t112,\n\t116,\n\t104,\n\t117,\n\t115,\n\t100,\n\t97,\n\t114,\n\t107,\n\t99,\n\t97,\n\t114,\n\t100,\n\t102,\n\t105,\n\t108,\n\t101,\n\t102,\n\t101,\n\t97,\n\t114,\n\t115,\n\t116,\n\t97,\n\t121,\n\t107,\n\t105,\n\t108,\n\t108,\n\t116,\n\t104,\n\t97,\n\t116,\n\t102,\n\t97,\n\t108,\n\t108,\n\t97,\n\t117,\n\t116,\n\t111,\n\t101,\n\t118,\n\t101,\n\t114,\n\t46,\n\t99,\n\t111,\n\t109,\n\t116,\n\t97,\n\t108,\n\t107,\n\t115,\n\t104,\n\t111,\n\t112,\n\t118,\n\t111,\n\t116,\n\t101,\n\t100,\n\t101,\n\t101,\n\t112,\n\t109,\n\t111,\n\t100,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t116,\n\t117,\n\t114,\n\t110,\n\t98,\n\t111,\n\t114,\n\t110,\n\t98,\n\t97,\n\t110,\n\t100,\n\t102,\n\t101,\n\t108,\n\t108,\n\t114,\n\t111,\n\t115,\n\t101,\n\t117,\n\t114,\n\t108,\n\t40,\n\t115,\n\t107,\n\t105,\n\t110,\n\t114,\n\t111,\n\t108,\n\t101,\n\t99,\n\t111,\n\t109,\n\t101,\n\t97,\n\t99,\n\t116,\n\t115,\n\t97,\n\t103,\n\t101,\n\t115,\n\t109,\n\t101,\n\t101,\n\t116,\n\t103,\n\t111,\n\t108,\n\t100,\n\t46,\n\t106,\n\t112,\n\t103,\n\t105,\n\t116,\n\t101,\n\t109,\n\t118,\n\t97,\n\t114,\n\t121,\n\t102,\n\t101,\n\t108,\n\t116,\n\t116,\n\t104,\n\t101,\n\t110,\n\t115,\n\t101,\n\t110,\n\t100,\n\t100,\n\t114,\n\t111,\n\t112,\n\t86,\n\t105,\n\t101,\n\t119,\n\t99,\n\t111,\n\t112,\n\t121,\n\t49,\n\t46,\n\t48,\n\t34,\n\t60,\n\t47,\n\t97,\n\t62,\n\t115,\n\t116,\n\t111,\n\t112,\n\t101,\n\t108,\n\t115,\n\t101,\n\t108,\n\t105,\n\t101,\n\t115,\n\t116,\n\t111,\n\t117,\n\t114,\n\t112,\n\t97,\n\t99,\n\t107,\n\t46,\n\t103,\n\t105,\n\t102,\n\t112,\n\t97,\n\t115,\n\t116,\n\t99,\n\t115,\n\t115,\n\t63,\n\t103,\n\t114,\n\t97,\n\t121,\n\t109,\n\t101,\n\t97,\n\t110,\n\t38,\n\t103,\n\t116,\n\t59,\n\t114,\n\t105,\n\t100,\n\t101,\n\t115,\n\t104,\n\t111,\n\t116,\n\t108,\n\t97,\n\t116,\n\t101,\n\t115,\n\t97,\n\t105,\n\t100,\n\t114,\n\t111,\n\t97,\n\t100,\n\t118,\n\t97,\n\t114,\n\t32,\n\t102,\n\t101,\n\t101,\n\t108,\n\t106,\n\t111,\n\t104,\n\t110,\n\t114,\n\t105,\n\t99,\n\t107,\n\t112,\n\t111,\n\t114,\n\t116,\n\t102,\n\t97,\n\t115,\n\t116,\n\t39,\n\t85,\n\t65,\n\t45,\n\t100,\n\t101,\n\t97,\n\t100,\n\t60,\n\t47,\n\t98,\n\t62,\n\t112,\n\t111,\n\t111,\n\t114,\n\t98,\n\t105,\n\t108,\n\t108,\n\t116,\n\t121,\n\t112,\n\t101,\n\t85,\n\t46,\n\t83,\n\t46,\n\t119,\n\t111,\n\t111,\n\t100,\n\t109,\n\t117,\n\t115,\n\t116,\n\t50,\n\t112,\n\t120,\n\t59,\n\t73,\n\t110,\n\t102,\n\t111,\n\t114,\n\t97,\n\t110,\n\t107,\n\t119,\n\t105,\n\t100,\n\t101,\n\t119,\n\t97,\n\t110,\n\t116,\n\t119,\n\t97,\n\t108,\n\t108,\n\t108,\n\t101,\n\t97,\n\t100,\n\t91,\n\t48,\n\t93,\n\t59,\n\t112,\n\t97,\n\t117,\n\t108,\n\t119,\n\t97,\n\t118,\n\t101,\n\t115,\n\t117,\n\t114,\n\t101,\n\t36,\n\t40,\n\t39,\n\t35,\n\t119,\n\t97,\n\t105,\n\t116,\n\t109,\n\t97,\n\t115,\n\t115,\n\t97,\n\t114,\n\t109,\n\t115,\n\t103,\n\t111,\n\t101,\n\t115,\n\t103,\n\t97,\n\t105,\n\t110,\n\t108,\n\t97,\n\t110,\n\t103,\n\t112,\n\t97,\n\t105,\n\t100,\n\t33,\n\t45,\n\t45,\n\t32,\n\t108,\n\t111,\n\t99,\n\t107,\n\t117,\n\t110,\n\t105,\n\t116,\n\t114,\n\t111,\n\t111,\n\t116,\n\t119,\n\t97,\n\t108,\n\t107,\n\t102,\n\t105,\n\t114,\n\t109,\n\t119,\n\t105,\n\t102,\n\t101,\n\t120,\n\t109,\n\t108,\n\t34,\n\t115,\n\t111,\n\t110,\n\t103,\n\t116,\n\t101,\n\t115,\n\t116,\n\t50,\n\t48,\n\t112,\n\t120,\n\t107,\n\t105,\n\t110,\n\t100,\n\t114,\n\t111,\n\t119,\n\t115,\n\t116,\n\t111,\n\t111,\n\t108,\n\t102,\n\t111,\n\t110,\n\t116,\n\t109,\n\t97,\n\t105,\n\t108,\n\t115,\n\t97,\n\t102,\n\t101,\n\t115,\n\t116,\n\t97,\n\t114,\n\t109,\n\t97,\n\t112,\n\t115,\n\t99,\n\t111,\n\t114,\n\t101,\n\t114,\n\t97,\n\t105,\n\t110,\n\t102,\n\t108,\n\t111,\n\t119,\n\t98,\n\t97,\n\t98,\n\t121,\n\t115,\n\t112,\n\t97,\n\t110,\n\t115,\n\t97,\n\t121,\n\t115,\n\t52,\n\t112,\n\t120,\n\t59,\n\t54,\n\t112,\n\t120,\n\t59,\n\t97,\n\t114,\n\t116,\n\t115,\n\t102,\n\t111,\n\t111,\n\t116,\n\t114,\n\t101,\n\t97,\n\t108,\n\t119,\n\t105,\n\t107,\n\t105,\n\t104,\n\t101,\n\t97,\n\t116,\n\t115,\n\t116,\n\t101,\n\t112,\n\t116,\n\t114,\n\t105,\n\t112,\n\t111,\n\t114,\n\t103,\n\t47,\n\t108,\n\t97,\n\t107,\n\t101,\n\t119,\n\t101,\n\t97,\n\t107,\n\t116,\n\t111,\n\t108,\n\t100,\n\t70,\n\t111,\n\t114,\n\t109,\n\t99,\n\t97,\n\t115,\n\t116,\n\t102,\n\t97,\n\t110,\n\t115,\n\t98,\n\t97,\n\t110,\n\t107,\n\t118,\n\t101,\n\t114,\n\t121,\n\t114,\n\t117,\n\t110,\n\t115,\n\t106,\n\t117,\n\t108,\n\t121,\n\t116,\n\t97,\n\t115,\n\t107,\n\t49,\n\t112,\n\t120,\n\t59,\n\t103,\n\t111,\n\t97,\n\t108,\n\t103,\n\t114,\n\t101,\n\t119,\n\t115,\n\t108,\n\t111,\n\t119,\n\t101,\n\t100,\n\t103,\n\t101,\n\t105,\n\t100,\n\t61,\n\t34,\n\t115,\n\t101,\n\t116,\n\t115,\n\t53,\n\t112,\n\t120,\n\t59,\n\t46,\n\t106,\n\t115,\n\t63,\n\t52,\n\t48,\n\t112,\n\t120,\n\t105,\n\t102,\n\t32,\n\t40,\n\t115,\n\t111,\n\t111,\n\t110,\n\t115,\n\t101,\n\t97,\n\t116,\n\t110,\n\t111,\n\t110,\n\t101,\n\t116,\n\t117,\n\t98,\n\t101,\n\t122,\n\t101,\n\t114,\n\t111,\n\t115,\n\t101,\n\t110,\n\t116,\n\t114,\n\t101,\n\t101,\n\t100,\n\t102,\n\t97,\n\t99,\n\t116,\n\t105,\n\t110,\n\t116,\n\t111,\n\t103,\n\t105,\n\t102,\n\t116,\n\t104,\n\t97,\n\t114,\n\t109,\n\t49,\n\t56,\n\t112,\n\t120,\n\t99,\n\t97,\n\t109,\n\t101,\n\t104,\n\t105,\n\t108,\n\t108,\n\t98,\n\t111,\n\t108,\n\t100,\n\t122,\n\t111,\n\t111,\n\t109,\n\t118,\n\t111,\n\t105,\n\t100,\n\t101,\n\t97,\n\t115,\n\t121,\n\t114,\n\t105,\n\t110,\n\t103,\n\t102,\n\t105,\n\t108,\n\t108,\n\t112,\n\t101,\n\t97,\n\t107,\n\t105,\n\t110,\n\t105,\n\t116,\n\t99,\n\t111,\n\t115,\n\t116,\n\t51,\n\t112,\n\t120,\n\t59,\n\t106,\n\t97,\n\t99,\n\t107,\n\t116,\n\t97,\n\t103,\n\t115,\n\t98,\n\t105,\n\t116,\n\t115,\n\t114,\n\t111,\n\t108,\n\t108,\n\t101,\n\t100,\n\t105,\n\t116,\n\t107,\n\t110,\n\t101,\n\t119,\n\t110,\n\t101,\n\t97,\n\t114,\n\t60,\n\t33,\n\t45,\n\t45,\n\t103,\n\t114,\n\t111,\n\t119,\n\t74,\n\t83,\n\t79,\n\t78,\n\t100,\n\t117,\n\t116,\n\t121,\n\t78,\n\t97,\n\t109,\n\t101,\n\t115,\n\t97,\n\t108,\n\t101,\n\t121,\n\t111,\n\t117,\n\t32,\n\t108,\n\t111,\n\t116,\n\t115,\n\t112,\n\t97,\n\t105,\n\t110,\n\t106,\n\t97,\n\t122,\n\t122,\n\t99,\n\t111,\n\t108,\n\t100,\n\t101,\n\t121,\n\t101,\n\t115,\n\t102,\n\t105,\n\t115,\n\t104,\n\t119,\n\t119,\n\t119,\n\t46,\n\t114,\n\t105,\n\t115,\n\t107,\n\t116,\n\t97,\n\t98,\n\t115,\n\t112,\n\t114,\n\t101,\n\t118,\n\t49,\n\t48,\n\t112,\n\t120,\n\t114,\n\t105,\n\t115,\n\t101,\n\t50,\n\t53,\n\t112,\n\t120,\n\t66,\n\t108,\n\t117,\n\t101,\n\t100,\n\t105,\n\t110,\n\t103,\n\t51,\n\t48,\n\t48,\n\t44,\n\t98,\n\t97,\n\t108,\n\t108,\n\t102,\n\t111,\n\t114,\n\t100,\n\t101,\n\t97,\n\t114,\n\t110,\n\t119,\n\t105,\n\t108,\n\t100,\n\t98,\n\t111,\n\t120,\n\t46,\n\t102,\n\t97,\n\t105,\n\t114,\n\t108,\n\t97,\n\t99,\n\t107,\n\t118,\n\t101,\n\t114,\n\t115,\n\t112,\n\t97,\n\t105,\n\t114,\n\t106,\n\t117,\n\t110,\n\t101,\n\t116,\n\t101,\n\t99,\n\t104,\n\t105,\n\t102,\n\t40,\n\t33,\n\t112,\n\t105,\n\t99,\n\t107,\n\t101,\n\t118,\n\t105,\n\t108,\n\t36,\n\t40,\n\t34,\n\t35,\n\t119,\n\t97,\n\t114,\n\t109,\n\t108,\n\t111,\n\t114,\n\t100,\n\t100,\n\t111,\n\t101,\n\t115,\n\t112,\n\t117,\n\t108,\n\t108,\n\t44,\n\t48,\n\t48,\n\t48,\n\t105,\n\t100,\n\t101,\n\t97,\n\t100,\n\t114,\n\t97,\n\t119,\n\t104,\n\t117,\n\t103,\n\t101,\n\t115,\n\t112,\n\t111,\n\t116,\n\t102,\n\t117,\n\t110,\n\t100,\n\t98,\n\t117,\n\t114,\n\t110,\n\t104,\n\t114,\n\t101,\n\t102,\n\t99,\n\t101,\n\t108,\n\t108,\n\t107,\n\t101,\n\t121,\n\t115,\n\t116,\n\t105,\n\t99,\n\t107,\n\t104,\n\t111,\n\t117,\n\t114,\n\t108,\n\t111,\n\t115,\n\t115,\n\t102,\n\t117,\n\t101,\n\t108,\n\t49,\n\t50,\n\t112,\n\t120,\n\t115,\n\t117,\n\t105,\n\t116,\n\t100,\n\t101,\n\t97,\n\t108,\n\t82,\n\t83,\n\t83,\n\t34,\n\t97,\n\t103,\n\t101,\n\t100,\n\t103,\n\t114,\n\t101,\n\t121,\n\t71,\n\t69,\n\t84,\n\t34,\n\t101,\n\t97,\n\t115,\n\t101,\n\t97,\n\t105,\n\t109,\n\t115,\n\t103,\n\t105,\n\t114,\n\t108,\n\t97,\n\t105,\n\t100,\n\t115,\n\t56,\n\t112,\n\t120,\n\t59,\n\t110,\n\t97,\n\t118,\n\t121,\n\t103,\n\t114,\n\t105,\n\t100,\n\t116,\n\t105,\n\t112,\n\t115,\n\t35,\n\t57,\n\t57,\n\t57,\n\t119,\n\t97,\n\t114,\n\t115,\n\t108,\n\t97,\n\t100,\n\t121,\n\t99,\n\t97,\n\t114,\n\t115,\n\t41,\n\t59,\n\t32,\n\t125,\n\t112,\n\t104,\n\t112,\n\t63,\n\t104,\n\t101,\n\t108,\n\t108,\n\t116,\n\t97,\n\t108,\n\t108,\n\t119,\n\t104,\n\t111,\n\t109,\n\t122,\n\t104,\n\t58,\n\t229,\n\t42,\n\t47,\n\t13,\n\t10,\n\t32,\n\t49,\n\t48,\n\t48,\n\t104,\n\t97,\n\t108,\n\t108,\n\t46,\n\t10,\n\t10,\n\t65,\n\t55,\n\t112,\n\t120,\n\t59,\n\t112,\n\t117,\n\t115,\n\t104,\n\t99,\n\t104,\n\t97,\n\t116,\n\t48,\n\t112,\n\t120,\n\t59,\n\t99,\n\t114,\n\t101,\n\t119,\n\t42,\n\t47,\n\t60,\n\t47,\n\t104,\n\t97,\n\t115,\n\t104,\n\t55,\n\t53,\n\t112,\n\t120,\n\t102,\n\t108,\n\t97,\n\t116,\n\t114,\n\t97,\n\t114,\n\t101,\n\t32,\n\t38,\n\t38,\n\t32,\n\t116,\n\t101,\n\t108,\n\t108,\n\t99,\n\t97,\n\t109,\n\t112,\n\t111,\n\t110,\n\t116,\n\t111,\n\t108,\n\t97,\n\t105,\n\t100,\n\t109,\n\t105,\n\t115,\n\t115,\n\t115,\n\t107,\n\t105,\n\t112,\n\t116,\n\t101,\n\t110,\n\t116,\n\t102,\n\t105,\n\t110,\n\t101,\n\t109,\n\t97,\n\t108,\n\t101,\n\t103,\n\t101,\n\t116,\n\t115,\n\t112,\n\t108,\n\t111,\n\t116,\n\t52,\n\t48,\n\t48,\n\t44,\n\t13,\n\t10,\n\t13,\n\t10,\n\t99,\n\t111,\n\t111,\n\t108,\n\t102,\n\t101,\n\t101,\n\t116,\n\t46,\n\t112,\n\t104,\n\t112,\n\t60,\n\t98,\n\t114,\n\t62,\n\t101,\n\t114,\n\t105,\n\t99,\n\t109,\n\t111,\n\t115,\n\t116,\n\t103,\n\t117,\n\t105,\n\t100,\n\t98,\n\t101,\n\t108,\n\t108,\n\t100,\n\t101,\n\t115,\n\t99,\n\t104,\n\t97,\n\t105,\n\t114,\n\t109,\n\t97,\n\t116,\n\t104,\n\t97,\n\t116,\n\t111,\n\t109,\n\t47,\n\t105,\n\t109,\n\t103,\n\t38,\n\t35,\n\t56,\n\t50,\n\t108,\n\t117,\n\t99,\n\t107,\n\t99,\n\t101,\n\t110,\n\t116,\n\t48,\n\t48,\n\t48,\n\t59,\n\t116,\n\t105,\n\t110,\n\t121,\n\t103,\n\t111,\n\t110,\n\t101,\n\t104,\n\t116,\n\t109,\n\t108,\n\t115,\n\t101,\n\t108,\n\t108,\n\t100,\n\t114,\n\t117,\n\t103,\n\t70,\n\t82,\n\t69,\n\t69,\n\t110,\n\t111,\n\t100,\n\t101,\n\t110,\n\t105,\n\t99,\n\t107,\n\t63,\n\t105,\n\t100,\n\t61,\n\t108,\n\t111,\n\t115,\n\t101,\n\t110,\n\t117,\n\t108,\n\t108,\n\t118,\n\t97,\n\t115,\n\t116,\n\t119,\n\t105,\n\t110,\n\t100,\n\t82,\n\t83,\n\t83,\n\t32,\n\t119,\n\t101,\n\t97,\n\t114,\n\t114,\n\t101,\n\t108,\n\t121,\n\t98,\n\t101,\n\t101,\n\t110,\n\t115,\n\t97,\n\t109,\n\t101,\n\t100,\n\t117,\n\t107,\n\t101,\n\t110,\n\t97,\n\t115,\n\t97,\n\t99,\n\t97,\n\t112,\n\t101,\n\t119,\n\t105,\n\t115,\n\t104,\n\t103,\n\t117,\n\t108,\n\t102,\n\t84,\n\t50,\n\t51,\n\t58,\n\t104,\n\t105,\n\t116,\n\t115,\n\t115,\n\t108,\n\t111,\n\t116,\n\t103,\n\t97,\n\t116,\n\t101,\n\t107,\n\t105,\n\t99,\n\t107,\n\t98,\n\t108,\n\t117,\n\t114,\n\t116,\n\t104,\n\t101,\n\t121,\n\t49,\n\t53,\n\t112,\n\t120,\n\t39,\n\t39,\n\t41,\n\t59,\n\t41,\n\t59,\n\t34,\n\t62,\n\t109,\n\t115,\n\t105,\n\t101,\n\t119,\n\t105,\n\t110,\n\t115,\n\t98,\n\t105,\n\t114,\n\t100,\n\t115,\n\t111,\n\t114,\n\t116,\n\t98,\n\t101,\n\t116,\n\t97,\n\t115,\n\t101,\n\t101,\n\t107,\n\t84,\n\t49,\n\t56,\n\t58,\n\t111,\n\t114,\n\t100,\n\t115,\n\t116,\n\t114,\n\t101,\n\t101,\n\t109,\n\t97,\n\t108,\n\t108,\n\t54,\n\t48,\n\t112,\n\t120,\n\t102,\n\t97,\n\t114,\n\t109,\n\t226,\n\t128,\n\t153,\n\t115,\n\t98,\n\t111,\n\t121,\n\t115,\n\t91,\n\t48,\n\t93,\n\t46,\n\t39,\n\t41,\n\t59,\n\t34,\n\t80,\n\t79,\n\t83,\n\t84,\n\t98,\n\t101,\n\t97,\n\t114,\n\t107,\n\t105,\n\t100,\n\t115,\n\t41,\n\t59,\n\t125,\n\t125,\n\t109,\n\t97,\n\t114,\n\t121,\n\t116,\n\t101,\n\t110,\n\t100,\n\t40,\n\t85,\n\t75,\n\t41,\n\t113,\n\t117,\n\t97,\n\t100,\n\t122,\n\t104,\n\t58,\n\t230,\n\t45,\n\t115,\n\t105,\n\t122,\n\t45,\n\t45,\n\t45,\n\t45,\n\t112,\n\t114,\n\t111,\n\t112,\n\t39,\n\t41,\n\t59,\n\t13,\n\t108,\n\t105,\n\t102,\n\t116,\n\t84,\n\t49,\n\t57,\n\t58,\n\t118,\n\t105,\n\t99,\n\t101,\n\t97,\n\t110,\n\t100,\n\t121,\n\t100,\n\t101,\n\t98,\n\t116,\n\t62,\n\t82,\n\t83,\n\t83,\n\t112,\n\t111,\n\t111,\n\t108,\n\t110,\n\t101,\n\t99,\n\t107,\n\t98,\n\t108,\n\t111,\n\t119,\n\t84,\n\t49,\n\t54,\n\t58,\n\t100,\n\t111,\n\t111,\n\t114,\n\t101,\n\t118,\n\t97,\n\t108,\n\t84,\n\t49,\n\t55,\n\t58,\n\t108,\n\t101,\n\t116,\n\t115,\n\t102,\n\t97,\n\t105,\n\t108,\n\t111,\n\t114,\n\t97,\n\t108,\n\t112,\n\t111,\n\t108,\n\t108,\n\t110,\n\t111,\n\t118,\n\t97,\n\t99,\n\t111,\n\t108,\n\t115,\n\t103,\n\t101,\n\t110,\n\t101,\n\t32,\n\t226,\n\t128,\n\t148,\n\t115,\n\t111,\n\t102,\n\t116,\n\t114,\n\t111,\n\t109,\n\t101,\n\t116,\n\t105,\n\t108,\n\t108,\n\t114,\n\t111,\n\t115,\n\t115,\n\t60,\n\t104,\n\t51,\n\t62,\n\t112,\n\t111,\n\t117,\n\t114,\n\t102,\n\t97,\n\t100,\n\t101,\n\t112,\n\t105,\n\t110,\n\t107,\n\t60,\n\t116,\n\t114,\n\t62,\n\t109,\n\t105,\n\t110,\n\t105,\n\t41,\n\t124,\n\t33,\n\t40,\n\t109,\n\t105,\n\t110,\n\t101,\n\t122,\n\t104,\n\t58,\n\t232,\n\t98,\n\t97,\n\t114,\n\t115,\n\t104,\n\t101,\n\t97,\n\t114,\n\t48,\n\t48,\n\t41,\n\t59,\n\t109,\n\t105,\n\t108,\n\t107,\n\t32,\n\t45,\n\t45,\n\t62,\n\t105,\n\t114,\n\t111,\n\t110,\n\t102,\n\t114,\n\t101,\n\t100,\n\t100,\n\t105,\n\t115,\n\t107,\n\t119,\n\t101,\n\t110,\n\t116,\n\t115,\n\t111,\n\t105,\n\t108,\n\t112,\n\t117,\n\t116,\n\t115,\n\t47,\n\t106,\n\t115,\n\t47,\n\t104,\n\t111,\n\t108,\n\t121,\n\t84,\n\t50,\n\t50,\n\t58,\n\t73,\n\t83,\n\t66,\n\t78,\n\t84,\n\t50,\n\t48,\n\t58,\n\t97,\n\t100,\n\t97,\n\t109,\n\t115,\n\t101,\n\t101,\n\t115,\n\t60,\n\t104,\n\t50,\n\t62,\n\t106,\n\t115,\n\t111,\n\t110,\n\t39,\n\t44,\n\t32,\n\t39,\n\t99,\n\t111,\n\t110,\n\t116,\n\t84,\n\t50,\n\t49,\n\t58,\n\t32,\n\t82,\n\t83,\n\t83,\n\t108,\n\t111,\n\t111,\n\t112,\n\t97,\n\t115,\n\t105,\n\t97,\n\t109,\n\t111,\n\t111,\n\t110,\n\t60,\n\t47,\n\t112,\n\t62,\n\t115,\n\t111,\n\t117,\n\t108,\n\t76,\n\t73,\n\t78,\n\t69,\n\t102,\n\t111,\n\t114,\n\t116,\n\t99,\n\t97,\n\t114,\n\t116,\n\t84,\n\t49,\n\t52,\n\t58,\n\t60,\n\t104,\n\t49,\n\t62,\n\t56,\n\t48,\n\t112,\n\t120,\n\t33,\n\t45,\n\t45,\n\t60,\n\t57,\n\t112,\n\t120,\n\t59,\n\t84,\n\t48,\n\t52,\n\t58,\n\t109,\n\t105,\n\t107,\n\t101,\n\t58,\n\t52,\n\t54,\n\t90,\n\t110,\n\t105,\n\t99,\n\t101,\n\t105,\n\t110,\n\t99,\n\t104,\n\t89,\n\t111,\n\t114,\n\t107,\n\t114,\n\t105,\n\t99,\n\t101,\n\t122,\n\t104,\n\t58,\n\t228,\n\t39,\n\t41,\n\t41,\n\t59,\n\t112,\n\t117,\n\t114,\n\t101,\n\t109,\n\t97,\n\t103,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t111,\n\t110,\n\t101,\n\t98,\n\t111,\n\t110,\n\t100,\n\t58,\n\t51,\n\t55,\n\t90,\n\t95,\n\t111,\n\t102,\n\t95,\n\t39,\n\t93,\n\t41,\n\t59,\n\t48,\n\t48,\n\t48,\n\t44,\n\t122,\n\t104,\n\t58,\n\t231,\n\t116,\n\t97,\n\t110,\n\t107,\n\t121,\n\t97,\n\t114,\n\t100,\n\t98,\n\t111,\n\t119,\n\t108,\n\t98,\n\t117,\n\t115,\n\t104,\n\t58,\n\t53,\n\t54,\n\t90,\n\t74,\n\t97,\n\t118,\n\t97,\n\t51,\n\t48,\n\t112,\n\t120,\n\t10,\n\t124,\n\t125,\n\t10,\n\t37,\n\t67,\n\t51,\n\t37,\n\t58,\n\t51,\n\t52,\n\t90,\n\t106,\n\t101,\n\t102,\n\t102,\n\t69,\n\t88,\n\t80,\n\t73,\n\t99,\n\t97,\n\t115,\n\t104,\n\t118,\n\t105,\n\t115,\n\t97,\n\t103,\n\t111,\n\t108,\n\t102,\n\t115,\n\t110,\n\t111,\n\t119,\n\t122,\n\t104,\n\t58,\n\t233,\n\t113,\n\t117,\n\t101,\n\t114,\n\t46,\n\t99,\n\t115,\n\t115,\n\t115,\n\t105,\n\t99,\n\t107,\n\t109,\n\t101,\n\t97,\n\t116,\n\t109,\n\t105,\n\t110,\n\t46,\n\t98,\n\t105,\n\t110,\n\t100,\n\t100,\n\t101,\n\t108,\n\t108,\n\t104,\n\t105,\n\t114,\n\t101,\n\t112,\n\t105,\n\t99,\n\t115,\n\t114,\n\t101,\n\t110,\n\t116,\n\t58,\n\t51,\n\t54,\n\t90,\n\t72,\n\t84,\n\t84,\n\t80,\n\t45,\n\t50,\n\t48,\n\t49,\n\t102,\n\t111,\n\t116,\n\t111,\n\t119,\n\t111,\n\t108,\n\t102,\n\t69,\n\t78,\n\t68,\n\t32,\n\t120,\n\t98,\n\t111,\n\t120,\n\t58,\n\t53,\n\t52,\n\t90,\n\t66,\n\t79,\n\t68,\n\t89,\n\t100,\n\t105,\n\t99,\n\t107,\n\t59,\n\t10,\n\t125,\n\t10,\n\t101,\n\t120,\n\t105,\n\t116,\n\t58,\n\t51,\n\t53,\n\t90,\n\t118,\n\t97,\n\t114,\n\t115,\n\t98,\n\t101,\n\t97,\n\t116,\n\t39,\n\t125,\n\t41,\n\t59,\n\t100,\n\t105,\n\t101,\n\t116,\n\t57,\n\t57,\n\t57,\n\t59,\n\t97,\n\t110,\n\t110,\n\t101,\n\t125,\n\t125,\n\t60,\n\t47,\n\t91,\n\t105,\n\t93,\n\t46,\n\t76,\n\t97,\n\t110,\n\t103,\n\t107,\n\t109,\n\t194,\n\t178,\n\t119,\n\t105,\n\t114,\n\t101,\n\t116,\n\t111,\n\t121,\n\t115,\n\t97,\n\t100,\n\t100,\n\t115,\n\t115,\n\t101,\n\t97,\n\t108,\n\t97,\n\t108,\n\t101,\n\t120,\n\t59,\n\t10,\n\t9,\n\t125,\n\t101,\n\t99,\n\t104,\n\t111,\n\t110,\n\t105,\n\t110,\n\t101,\n\t46,\n\t111,\n\t114,\n\t103,\n\t48,\n\t48,\n\t53,\n\t41,\n\t116,\n\t111,\n\t110,\n\t121,\n\t106,\n\t101,\n\t119,\n\t115,\n\t115,\n\t97,\n\t110,\n\t100,\n\t108,\n\t101,\n\t103,\n\t115,\n\t114,\n\t111,\n\t111,\n\t102,\n\t48,\n\t48,\n\t48,\n\t41,\n\t32,\n\t50,\n\t48,\n\t48,\n\t119,\n\t105,\n\t110,\n\t101,\n\t103,\n\t101,\n\t97,\n\t114,\n\t100,\n\t111,\n\t103,\n\t115,\n\t98,\n\t111,\n\t111,\n\t116,\n\t103,\n\t97,\n\t114,\n\t121,\n\t99,\n\t117,\n\t116,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t120,\n\t109,\n\t108,\n\t99,\n\t111,\n\t99,\n\t107,\n\t103,\n\t97,\n\t110,\n\t103,\n\t36,\n\t40,\n\t39,\n\t46,\n\t53,\n\t48,\n\t112,\n\t120,\n\t80,\n\t104,\n\t46,\n\t68,\n\t109,\n\t105,\n\t115,\n\t99,\n\t97,\n\t108,\n\t97,\n\t110,\n\t108,\n\t111,\n\t97,\n\t110,\n\t100,\n\t101,\n\t115,\n\t107,\n\t109,\n\t105,\n\t108,\n\t101,\n\t114,\n\t121,\n\t97,\n\t110,\n\t117,\n\t110,\n\t105,\n\t120,\n\t100,\n\t105,\n\t115,\n\t99,\n\t41,\n\t59,\n\t125,\n\t10,\n\t100,\n\t117,\n\t115,\n\t116,\n\t99,\n\t108,\n\t105,\n\t112,\n\t41,\n\t46,\n\t10,\n\t10,\n\t55,\n\t48,\n\t112,\n\t120,\n\t45,\n\t50,\n\t48,\n\t48,\n\t68,\n\t86,\n\t68,\n\t115,\n\t55,\n\t93,\n\t62,\n\t60,\n\t116,\n\t97,\n\t112,\n\t101,\n\t100,\n\t101,\n\t109,\n\t111,\n\t105,\n\t43,\n\t43,\n\t41,\n\t119,\n\t97,\n\t103,\n\t101,\n\t101,\n\t117,\n\t114,\n\t111,\n\t112,\n\t104,\n\t105,\n\t108,\n\t111,\n\t112,\n\t116,\n\t115,\n\t104,\n\t111,\n\t108,\n\t101,\n\t70,\n\t65,\n\t81,\n\t115,\n\t97,\n\t115,\n\t105,\n\t110,\n\t45,\n\t50,\n\t54,\n\t84,\n\t108,\n\t97,\n\t98,\n\t115,\n\t112,\n\t101,\n\t116,\n\t115,\n\t85,\n\t82,\n\t76,\n\t32,\n\t98,\n\t117,\n\t108,\n\t107,\n\t99,\n\t111,\n\t111,\n\t107,\n\t59,\n\t125,\n\t13,\n\t10,\n\t72,\n\t69,\n\t65,\n\t68,\n\t91,\n\t48,\n\t93,\n\t41,\n\t97,\n\t98,\n\t98,\n\t114,\n\t106,\n\t117,\n\t97,\n\t110,\n\t40,\n\t49,\n\t57,\n\t56,\n\t108,\n\t101,\n\t115,\n\t104,\n\t116,\n\t119,\n\t105,\n\t110,\n\t60,\n\t47,\n\t105,\n\t62,\n\t115,\n\t111,\n\t110,\n\t121,\n\t103,\n\t117,\n\t121,\n\t115,\n\t102,\n\t117,\n\t99,\n\t107,\n\t112,\n\t105,\n\t112,\n\t101,\n\t124,\n\t45,\n\t10,\n\t33,\n\t48,\n\t48,\n\t50,\n\t41,\n\t110,\n\t100,\n\t111,\n\t119,\n\t91,\n\t49,\n\t93,\n\t59,\n\t91,\n\t93,\n\t59,\n\t10,\n\t76,\n\t111,\n\t103,\n\t32,\n\t115,\n\t97,\n\t108,\n\t116,\n\t13,\n\t10,\n\t9,\n\t9,\n\t98,\n\t97,\n\t110,\n\t103,\n\t116,\n\t114,\n\t105,\n\t109,\n\t98,\n\t97,\n\t116,\n\t104,\n\t41,\n\t123,\n\t13,\n\t10,\n\t48,\n\t48,\n\t112,\n\t120,\n\t10,\n\t125,\n\t41,\n\t59,\n\t107,\n\t111,\n\t58,\n\t236,\n\t102,\n\t101,\n\t101,\n\t115,\n\t97,\n\t100,\n\t62,\n\t13,\n\t115,\n\t58,\n\t47,\n\t47,\n\t32,\n\t91,\n\t93,\n\t59,\n\t116,\n\t111,\n\t108,\n\t108,\n\t112,\n\t108,\n\t117,\n\t103,\n\t40,\n\t41,\n\t123,\n\t10,\n\t123,\n\t13,\n\t10,\n\t32,\n\t46,\n\t106,\n\t115,\n\t39,\n\t50,\n\t48,\n\t48,\n\t112,\n\t100,\n\t117,\n\t97,\n\t108,\n\t98,\n\t111,\n\t97,\n\t116,\n\t46,\n\t74,\n\t80,\n\t71,\n\t41,\n\t59,\n\t10,\n\t125,\n\t113,\n\t117,\n\t111,\n\t116,\n\t41,\n\t59,\n\t10,\n\t10,\n\t39,\n\t41,\n\t59,\n\t10,\n\t13,\n\t10,\n\t125,\n\t13,\n\t50,\n\t48,\n\t49,\n\t52,\n\t50,\n\t48,\n\t49,\n\t53,\n\t50,\n\t48,\n\t49,\n\t54,\n\t50,\n\t48,\n\t49,\n\t55,\n\t50,\n\t48,\n\t49,\n\t56,\n\t50,\n\t48,\n\t49,\n\t57,\n\t50,\n\t48,\n\t50,\n\t48,\n\t50,\n\t48,\n\t50,\n\t49,\n\t50,\n\t48,\n\t50,\n\t50,\n\t50,\n\t48,\n\t50,\n\t51,\n\t50,\n\t48,\n\t50,\n\t52,\n\t50,\n\t48,\n\t50,\n\t53,\n\t50,\n\t48,\n\t50,\n\t54,\n\t50,\n\t48,\n\t50,\n\t55,\n\t50,\n\t48,\n\t50,\n\t56,\n\t50,\n\t48,\n\t50,\n\t57,\n\t50,\n\t48,\n\t51,\n\t48,\n\t50,\n\t48,\n\t51,\n\t49,\n\t50,\n\t48,\n\t51,\n\t50,\n\t50,\n\t48,\n\t51,\n\t51,\n\t50,\n\t48,\n\t51,\n\t52,\n\t50,\n\t48,\n\t51,\n\t53,\n\t50,\n\t48,\n\t51,\n\t54,\n\t50,\n\t48,\n\t51,\n\t55,\n\t50,\n\t48,\n\t49,\n\t51,\n\t50,\n\t48,\n\t49,\n\t50,\n\t50,\n\t48,\n\t49,\n\t49,\n\t50,\n\t48,\n\t49,\n\t48,\n\t50,\n\t48,\n\t48,\n\t57,\n\t50,\n\t48,\n\t48,\n\t56,\n\t50,\n\t48,\n\t48,\n\t55,\n\t50,\n\t48,\n\t48,\n\t54,\n\t50,\n\t48,\n\t48,\n\t53,\n\t50,\n\t48,\n\t48,\n\t52,\n\t50,\n\t48,\n\t48,\n\t51,\n\t50,\n\t48,\n\t48,\n\t50,\n\t50,\n\t48,\n\t48,\n\t49,\n\t50,\n\t48,\n\t48,\n\t48,\n\t49,\n\t57,\n\t57,\n\t57,\n\t49,\n\t57,\n\t57,\n\t56,\n\t49,\n\t57,\n\t57,\n\t55,\n\t49,\n\t57,\n\t57,\n\t54,\n\t49,\n\t57,\n\t57,\n\t53,\n\t49,\n\t57,\n\t57,\n\t52,\n\t49,\n\t57,\n\t57,\n\t51,\n\t49,\n\t57,\n\t57,\n\t50,\n\t49,\n\t57,\n\t57,\n\t49,\n\t49,\n\t57,\n\t57,\n\t48,\n\t49,\n\t57,\n\t56,\n\t57,\n\t49,\n\t57,\n\t56,\n\t56,\n\t49,\n\t57,\n\t56,\n\t55,\n\t49,\n\t57,\n\t56,\n\t54,\n\t49,\n\t57,\n\t56,\n\t53,\n\t49,\n\t57,\n\t56,\n\t52,\n\t49,\n\t57,\n\t56,\n\t51,\n\t49,\n\t57,\n\t56,\n\t50,\n\t49,\n\t57,\n\t56,\n\t49,\n\t49,\n\t57,\n\t56,\n\t48,\n\t49,\n\t57,\n\t55,\n\t57,\n\t49,\n\t57,\n\t55,\n\t56,\n\t49,\n\t57,\n\t55,\n\t55,\n\t49,\n\t57,\n\t55,\n\t54,\n\t49,\n\t57,\n\t55,\n\t53,\n\t49,\n\t57,\n\t55,\n\t52,\n\t49,\n\t57,\n\t55,\n\t51,\n\t49,\n\t57,\n\t55,\n\t50,\n\t49,\n\t57,\n\t55,\n\t49,\n\t49,\n\t57,\n\t55,\n\t48,\n\t49,\n\t57,\n\t54,\n\t57,\n\t49,\n\t57,\n\t54,\n\t56,\n\t49,\n\t57,\n\t54,\n\t55,\n\t49,\n\t57,\n\t54,\n\t54,\n\t49,\n\t57,\n\t54,\n\t53,\n\t49,\n\t57,\n\t54,\n\t52,\n\t49,\n\t57,\n\t54,\n\t51,\n\t49,\n\t57,\n\t54,\n\t50,\n\t49,\n\t57,\n\t54,\n\t49,\n\t49,\n\t57,\n\t54,\n\t48,\n\t49,\n\t57,\n\t53,\n\t57,\n\t49,\n\t57,\n\t53,\n\t56,\n\t49,\n\t57,\n\t53,\n\t55,\n\t49,\n\t57,\n\t53,\n\t54,\n\t49,\n\t57,\n\t53,\n\t53,\n\t49,\n\t57,\n\t53,\n\t52,\n\t49,\n\t57,\n\t53,\n\t51,\n\t49,\n\t57,\n\t53,\n\t50,\n\t49,\n\t57,\n\t53,\n\t49,\n\t49,\n\t57,\n\t53,\n\t48,\n\t49,\n\t48,\n\t48,\n\t48,\n\t49,\n\t48,\n\t50,\n\t52,\n\t49,\n\t51,\n\t57,\n\t52,\n\t48,\n\t48,\n\t48,\n\t48,\n\t57,\n\t57,\n\t57,\n\t57,\n\t99,\n\t111,\n\t109,\n\t111,\n\t109,\n\t195,\n\t161,\n\t115,\n\t101,\n\t115,\n\t116,\n\t101,\n\t101,\n\t115,\n\t116,\n\t97,\n\t112,\n\t101,\n\t114,\n\t111,\n\t116,\n\t111,\n\t100,\n\t111,\n\t104,\n\t97,\n\t99,\n\t101,\n\t99,\n\t97,\n\t100,\n\t97,\n\t97,\n\t195,\n\t177,\n\t111,\n\t98,\n\t105,\n\t101,\n\t110,\n\t100,\n\t195,\n\t173,\n\t97,\n\t97,\n\t115,\n\t195,\n\t173,\n\t118,\n\t105,\n\t100,\n\t97,\n\t99,\n\t97,\n\t115,\n\t111,\n\t111,\n\t116,\n\t114,\n\t111,\n\t102,\n\t111,\n\t114,\n\t111,\n\t115,\n\t111,\n\t108,\n\t111,\n\t111,\n\t116,\n\t114,\n\t97,\n\t99,\n\t117,\n\t97,\n\t108,\n\t100,\n\t105,\n\t106,\n\t111,\n\t115,\n\t105,\n\t100,\n\t111,\n\t103,\n\t114,\n\t97,\n\t110,\n\t116,\n\t105,\n\t112,\n\t111,\n\t116,\n\t101,\n\t109,\n\t97,\n\t100,\n\t101,\n\t98,\n\t101,\n\t97,\n\t108,\n\t103,\n\t111,\n\t113,\n\t117,\n\t195,\n\t169,\n\t101,\n\t115,\n\t116,\n\t111,\n\t110,\n\t97,\n\t100,\n\t97,\n\t116,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t99,\n\t111,\n\t99,\n\t97,\n\t115,\n\t97,\n\t98,\n\t97,\n\t106,\n\t111,\n\t116,\n\t111,\n\t100,\n\t97,\n\t115,\n\t105,\n\t110,\n\t111,\n\t97,\n\t103,\n\t117,\n\t97,\n\t112,\n\t117,\n\t101,\n\t115,\n\t117,\n\t110,\n\t111,\n\t115,\n\t97,\n\t110,\n\t116,\n\t101,\n\t100,\n\t105,\n\t99,\n\t101,\n\t108,\n\t117,\n\t105,\n\t115,\n\t101,\n\t108,\n\t108,\n\t97,\n\t109,\n\t97,\n\t121,\n\t111,\n\t122,\n\t111,\n\t110,\n\t97,\n\t97,\n\t109,\n\t111,\n\t114,\n\t112,\n\t105,\n\t115,\n\t111,\n\t111,\n\t98,\n\t114,\n\t97,\n\t99,\n\t108,\n\t105,\n\t99,\n\t101,\n\t108,\n\t108,\n\t111,\n\t100,\n\t105,\n\t111,\n\t115,\n\t104,\n\t111,\n\t114,\n\t97,\n\t99,\n\t97,\n\t115,\n\t105,\n\t208,\n\t183,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t190,\n\t208,\n\t188,\n\t209,\n\t128,\n\t208,\n\t176,\n\t209,\n\t128,\n\t209,\n\t131,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t183,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t182,\n\t208,\n\t181,\n\t208,\n\t190,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t133,\n\t208,\n\t157,\n\t208,\n\t176,\n\t208,\n\t181,\n\t208,\n\t181,\n\t208,\n\t177,\n\t209,\n\t139,\n\t208,\n\t188,\n\t209,\n\t139,\n\t208,\n\t146,\n\t209,\n\t139,\n\t209,\n\t129,\n\t208,\n\t190,\n\t208,\n\t178,\n\t209,\n\t139,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t157,\n\t208,\n\t190,\n\t208,\n\t190,\n\t208,\n\t177,\n\t208,\n\t159,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t184,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t160,\n\t208,\n\t164,\n\t208,\n\t157,\n\t208,\n\t181,\n\t208,\n\t156,\n\t209,\n\t139,\n\t209,\n\t130,\n\t209,\n\t139,\n\t208,\n\t158,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t151,\n\t208,\n\t176,\n\t208,\n\t148,\n\t208,\n\t176,\n\t208,\n\t157,\n\t209,\n\t131,\n\t208,\n\t158,\n\t208,\n\t177,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t152,\n\t208,\n\t183,\n\t208,\n\t181,\n\t208,\n\t185,\n\t208,\n\t189,\n\t209,\n\t131,\n\t208,\n\t188,\n\t208,\n\t188,\n\t208,\n\t162,\n\t209,\n\t139,\n\t209,\n\t131,\n\t208,\n\t182,\n\t217,\n\t129,\n\t217,\n\t138,\n\t216,\n\t163,\n\t217,\n\t134,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t185,\n\t217,\n\t131,\n\t217,\n\t132,\n\t216,\n\t163,\n\t217,\n\t136,\n\t216,\n\t177,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t167,\n\t217,\n\t129,\n\t217,\n\t137,\n\t217,\n\t135,\n\t217,\n\t136,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t132,\n\t217,\n\t131,\n\t216,\n\t167,\n\t217,\n\t136,\n\t217,\n\t132,\n\t217,\n\t135,\n\t216,\n\t168,\n\t216,\n\t179,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t165,\n\t217,\n\t134,\n\t217,\n\t135,\n\t217,\n\t138,\n\t216,\n\t163,\n\t217,\n\t138,\n\t217,\n\t130,\n\t216,\n\t175,\n\t217,\n\t135,\n\t217,\n\t132,\n\t216,\n\t171,\n\t217,\n\t133,\n\t216,\n\t168,\n\t217,\n\t135,\n\t217,\n\t132,\n\t217,\n\t136,\n\t217,\n\t132,\n\t217,\n\t138,\n\t216,\n\t168,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t138,\n\t216,\n\t168,\n\t217,\n\t131,\n\t216,\n\t180,\n\t217,\n\t138,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t163,\n\t217,\n\t133,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t168,\n\t217,\n\t138,\n\t217,\n\t132,\n\t217,\n\t134,\n\t216,\n\t173,\n\t216,\n\t168,\n\t217,\n\t135,\n\t217,\n\t133,\n\t217,\n\t133,\n\t216,\n\t180,\n\t217,\n\t136,\n\t216,\n\t180,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t118,\n\t105,\n\t100,\n\t101,\n\t111,\n\t108,\n\t105,\n\t103,\n\t104,\n\t116,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t119,\n\t104,\n\t105,\n\t116,\n\t101,\n\t99,\n\t108,\n\t111,\n\t115,\n\t101,\n\t98,\n\t108,\n\t97,\n\t99,\n\t107,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t115,\n\t109,\n\t97,\n\t108,\n\t108,\n\t98,\n\t111,\n\t111,\n\t107,\n\t115,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t109,\n\t117,\n\t115,\n\t105,\n\t99,\n\t102,\n\t105,\n\t101,\n\t108,\n\t100,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t108,\n\t101,\n\t118,\n\t101,\n\t108,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t98,\n\t111,\n\t97,\n\t114,\n\t100,\n\t104,\n\t111,\n\t117,\n\t115,\n\t101,\n\t103,\n\t114,\n\t111,\n\t117,\n\t112,\n\t119,\n\t111,\n\t114,\n\t107,\n\t115,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t116,\n\t111,\n\t100,\n\t97,\n\t121,\n\t119,\n\t97,\n\t116,\n\t101,\n\t114,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t100,\n\t101,\n\t97,\n\t116,\n\t104,\n\t112,\n\t111,\n\t119,\n\t101,\n\t114,\n\t112,\n\t104,\n\t111,\n\t110,\n\t101,\n\t110,\n\t105,\n\t103,\n\t104,\n\t116,\n\t101,\n\t114,\n\t114,\n\t111,\n\t114,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t97,\n\t98,\n\t111,\n\t117,\n\t116,\n\t116,\n\t101,\n\t114,\n\t109,\n\t115,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t116,\n\t111,\n\t111,\n\t108,\n\t115,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t108,\n\t111,\n\t99,\n\t97,\n\t108,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t119,\n\t111,\n\t114,\n\t100,\n\t115,\n\t103,\n\t97,\n\t109,\n\t101,\n\t115,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t115,\n\t112,\n\t97,\n\t99,\n\t101,\n\t102,\n\t111,\n\t99,\n\t117,\n\t115,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t109,\n\t111,\n\t100,\n\t101,\n\t108,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t103,\n\t117,\n\t105,\n\t100,\n\t101,\n\t114,\n\t97,\n\t100,\n\t105,\n\t111,\n\t115,\n\t104,\n\t97,\n\t114,\n\t101,\n\t119,\n\t111,\n\t109,\n\t101,\n\t110,\n\t97,\n\t103,\n\t97,\n\t105,\n\t110,\n\t109,\n\t111,\n\t110,\n\t101,\n\t121,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t110,\n\t97,\n\t109,\n\t101,\n\t115,\n\t121,\n\t111,\n\t117,\n\t110,\n\t103,\n\t108,\n\t105,\n\t110,\n\t101,\n\t115,\n\t108,\n\t97,\n\t116,\n\t101,\n\t114,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t103,\n\t114,\n\t101,\n\t101,\n\t110,\n\t102,\n\t114,\n\t111,\n\t110,\n\t116,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t119,\n\t97,\n\t116,\n\t99,\n\t104,\n\t102,\n\t111,\n\t114,\n\t99,\n\t101,\n\t112,\n\t114,\n\t105,\n\t99,\n\t101,\n\t114,\n\t117,\n\t108,\n\t101,\n\t115,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t118,\n\t105,\n\t115,\n\t105,\n\t116,\n\t105,\n\t115,\n\t115,\n\t117,\n\t101,\n\t97,\n\t114,\n\t101,\n\t97,\n\t115,\n\t98,\n\t101,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t116,\n\t111,\n\t116,\n\t97,\n\t108,\n\t104,\n\t111,\n\t117,\n\t114,\n\t115,\n\t108,\n\t97,\n\t98,\n\t101,\n\t108,\n\t112,\n\t114,\n\t105,\n\t110,\n\t116,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t98,\n\t117,\n\t105,\n\t108,\n\t116,\n\t108,\n\t105,\n\t110,\n\t107,\n\t115,\n\t115,\n\t112,\n\t101,\n\t101,\n\t100,\n\t115,\n\t116,\n\t117,\n\t100,\n\t121,\n\t116,\n\t114,\n\t97,\n\t100,\n\t101,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t115,\n\t101,\n\t110,\n\t115,\n\t101,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t115,\n\t104,\n\t111,\n\t119,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t115,\n\t114,\n\t97,\n\t110,\n\t103,\n\t101,\n\t97,\n\t100,\n\t100,\n\t101,\n\t100,\n\t115,\n\t116,\n\t105,\n\t108,\n\t108,\n\t109,\n\t111,\n\t118,\n\t101,\n\t100,\n\t116,\n\t97,\n\t107,\n\t101,\n\t110,\n\t97,\n\t98,\n\t111,\n\t118,\n\t101,\n\t102,\n\t108,\n\t97,\n\t115,\n\t104,\n\t102,\n\t105,\n\t120,\n\t101,\n\t100,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t118,\n\t105,\n\t101,\n\t119,\n\t115,\n\t99,\n\t104,\n\t101,\n\t99,\n\t107,\n\t108,\n\t101,\n\t103,\n\t97,\n\t108,\n\t114,\n\t105,\n\t118,\n\t101,\n\t114,\n\t105,\n\t116,\n\t101,\n\t109,\n\t115,\n\t113,\n\t117,\n\t105,\n\t99,\n\t107,\n\t115,\n\t104,\n\t97,\n\t112,\n\t101,\n\t104,\n\t117,\n\t109,\n\t97,\n\t110,\n\t101,\n\t120,\n\t105,\n\t115,\n\t116,\n\t103,\n\t111,\n\t105,\n\t110,\n\t103,\n\t109,\n\t111,\n\t118,\n\t105,\n\t101,\n\t116,\n\t104,\n\t105,\n\t114,\n\t100,\n\t98,\n\t97,\n\t115,\n\t105,\n\t99,\n\t112,\n\t101,\n\t97,\n\t99,\n\t101,\n\t115,\n\t116,\n\t97,\n\t103,\n\t101,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t108,\n\t111,\n\t103,\n\t105,\n\t110,\n\t105,\n\t100,\n\t101,\n\t97,\n\t115,\n\t119,\n\t114,\n\t111,\n\t116,\n\t101,\n\t112,\n\t97,\n\t103,\n\t101,\n\t115,\n\t117,\n\t115,\n\t101,\n\t114,\n\t115,\n\t100,\n\t114,\n\t105,\n\t118,\n\t101,\n\t115,\n\t116,\n\t111,\n\t114,\n\t101,\n\t98,\n\t114,\n\t101,\n\t97,\n\t107,\n\t115,\n\t111,\n\t117,\n\t116,\n\t104,\n\t118,\n\t111,\n\t105,\n\t99,\n\t101,\n\t115,\n\t105,\n\t116,\n\t101,\n\t115,\n\t109,\n\t111,\n\t110,\n\t116,\n\t104,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t98,\n\t117,\n\t105,\n\t108,\n\t100,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t101,\n\t97,\n\t114,\n\t116,\n\t104,\n\t102,\n\t111,\n\t114,\n\t117,\n\t109,\n\t116,\n\t104,\n\t114,\n\t101,\n\t101,\n\t115,\n\t112,\n\t111,\n\t114,\n\t116,\n\t112,\n\t97,\n\t114,\n\t116,\n\t121,\n\t67,\n\t108,\n\t105,\n\t99,\n\t107,\n\t108,\n\t111,\n\t119,\n\t101,\n\t114,\n\t108,\n\t105,\n\t118,\n\t101,\n\t115,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t108,\n\t97,\n\t121,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t114,\n\t121,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t117,\n\t115,\n\t97,\n\t103,\n\t101,\n\t115,\n\t111,\n\t117,\n\t110,\n\t100,\n\t99,\n\t111,\n\t117,\n\t114,\n\t116,\n\t121,\n\t111,\n\t117,\n\t114,\n\t32,\n\t98,\n\t105,\n\t114,\n\t116,\n\t104,\n\t112,\n\t111,\n\t112,\n\t117,\n\t112,\n\t116,\n\t121,\n\t112,\n\t101,\n\t115,\n\t97,\n\t112,\n\t112,\n\t108,\n\t121,\n\t73,\n\t109,\n\t97,\n\t103,\n\t101,\n\t98,\n\t101,\n\t105,\n\t110,\n\t103,\n\t117,\n\t112,\n\t112,\n\t101,\n\t114,\n\t110,\n\t111,\n\t116,\n\t101,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t121,\n\t115,\n\t104,\n\t111,\n\t119,\n\t115,\n\t109,\n\t101,\n\t97,\n\t110,\n\t115,\n\t101,\n\t120,\n\t116,\n\t114,\n\t97,\n\t109,\n\t97,\n\t116,\n\t99,\n\t104,\n\t116,\n\t114,\n\t97,\n\t99,\n\t107,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t101,\n\t97,\n\t114,\n\t108,\n\t121,\n\t98,\n\t101,\n\t103,\n\t97,\n\t110,\n\t115,\n\t117,\n\t112,\n\t101,\n\t114,\n\t112,\n\t97,\n\t112,\n\t101,\n\t114,\n\t110,\n\t111,\n\t114,\n\t116,\n\t104,\n\t108,\n\t101,\n\t97,\n\t114,\n\t110,\n\t103,\n\t105,\n\t118,\n\t101,\n\t110,\n\t110,\n\t97,\n\t109,\n\t101,\n\t100,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t84,\n\t101,\n\t114,\n\t109,\n\t115,\n\t112,\n\t97,\n\t114,\n\t116,\n\t115,\n\t71,\n\t114,\n\t111,\n\t117,\n\t112,\n\t98,\n\t114,\n\t97,\n\t110,\n\t100,\n\t117,\n\t115,\n\t105,\n\t110,\n\t103,\n\t119,\n\t111,\n\t109,\n\t97,\n\t110,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t114,\n\t101,\n\t97,\n\t100,\n\t121,\n\t97,\n\t117,\n\t100,\n\t105,\n\t111,\n\t116,\n\t97,\n\t107,\n\t101,\n\t115,\n\t119,\n\t104,\n\t105,\n\t108,\n\t101,\n\t46,\n\t99,\n\t111,\n\t109,\n\t47,\n\t108,\n\t105,\n\t118,\n\t101,\n\t100,\n\t99,\n\t97,\n\t115,\n\t101,\n\t115,\n\t100,\n\t97,\n\t105,\n\t108,\n\t121,\n\t99,\n\t104,\n\t105,\n\t108,\n\t100,\n\t103,\n\t114,\n\t101,\n\t97,\n\t116,\n\t106,\n\t117,\n\t100,\n\t103,\n\t101,\n\t116,\n\t104,\n\t111,\n\t115,\n\t101,\n\t117,\n\t110,\n\t105,\n\t116,\n\t115,\n\t110,\n\t101,\n\t118,\n\t101,\n\t114,\n\t98,\n\t114,\n\t111,\n\t97,\n\t100,\n\t99,\n\t111,\n\t97,\n\t115,\n\t116,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t97,\n\t112,\n\t112,\n\t108,\n\t101,\n\t102,\n\t105,\n\t108,\n\t101,\n\t115,\n\t99,\n\t121,\n\t99,\n\t108,\n\t101,\n\t115,\n\t99,\n\t101,\n\t110,\n\t101,\n\t112,\n\t108,\n\t97,\n\t110,\n\t115,\n\t99,\n\t108,\n\t105,\n\t99,\n\t107,\n\t119,\n\t114,\n\t105,\n\t116,\n\t101,\n\t113,\n\t117,\n\t101,\n\t101,\n\t110,\n\t112,\n\t105,\n\t101,\n\t99,\n\t101,\n\t101,\n\t109,\n\t97,\n\t105,\n\t108,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t111,\n\t108,\n\t100,\n\t101,\n\t114,\n\t112,\n\t104,\n\t111,\n\t116,\n\t111,\n\t108,\n\t105,\n\t109,\n\t105,\n\t116,\n\t99,\n\t97,\n\t99,\n\t104,\n\t101,\n\t99,\n\t105,\n\t118,\n\t105,\n\t108,\n\t115,\n\t99,\n\t97,\n\t108,\n\t101,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t116,\n\t104,\n\t101,\n\t109,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t116,\n\t111,\n\t117,\n\t99,\n\t104,\n\t98,\n\t111,\n\t117,\n\t110,\n\t100,\n\t114,\n\t111,\n\t121,\n\t97,\n\t108,\n\t97,\n\t115,\n\t107,\n\t101,\n\t100,\n\t119,\n\t104,\n\t111,\n\t108,\n\t101,\n\t115,\n\t105,\n\t110,\n\t99,\n\t101,\n\t115,\n\t116,\n\t111,\n\t99,\n\t107,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t102,\n\t97,\n\t105,\n\t116,\n\t104,\n\t104,\n\t101,\n\t97,\n\t114,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t121,\n\t111,\n\t102,\n\t102,\n\t101,\n\t114,\n\t115,\n\t99,\n\t111,\n\t112,\n\t101,\n\t111,\n\t119,\n\t110,\n\t101,\n\t100,\n\t109,\n\t105,\n\t103,\n\t104,\n\t116,\n\t97,\n\t108,\n\t98,\n\t117,\n\t109,\n\t116,\n\t104,\n\t105,\n\t110,\n\t107,\n\t98,\n\t108,\n\t111,\n\t111,\n\t100,\n\t97,\n\t114,\n\t114,\n\t97,\n\t121,\n\t109,\n\t97,\n\t106,\n\t111,\n\t114,\n\t116,\n\t114,\n\t117,\n\t115,\n\t116,\n\t99,\n\t97,\n\t110,\n\t111,\n\t110,\n\t117,\n\t110,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t118,\n\t97,\n\t108,\n\t105,\n\t100,\n\t115,\n\t116,\n\t111,\n\t110,\n\t101,\n\t83,\n\t116,\n\t121,\n\t108,\n\t101,\n\t76,\n\t111,\n\t103,\n\t105,\n\t110,\n\t104,\n\t97,\n\t112,\n\t112,\n\t121,\n\t111,\n\t99,\n\t99,\n\t117,\n\t114,\n\t108,\n\t101,\n\t102,\n\t116,\n\t58,\n\t102,\n\t114,\n\t101,\n\t115,\n\t104,\n\t113,\n\t117,\n\t105,\n\t116,\n\t101,\n\t102,\n\t105,\n\t108,\n\t109,\n\t115,\n\t103,\n\t114,\n\t97,\n\t100,\n\t101,\n\t110,\n\t101,\n\t101,\n\t100,\n\t115,\n\t117,\n\t114,\n\t98,\n\t97,\n\t110,\n\t102,\n\t105,\n\t103,\n\t104,\n\t116,\n\t98,\n\t97,\n\t115,\n\t105,\n\t115,\n\t104,\n\t111,\n\t118,\n\t101,\n\t114,\n\t97,\n\t117,\n\t116,\n\t111,\n\t59,\n\t114,\n\t111,\n\t117,\n\t116,\n\t101,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t109,\n\t105,\n\t120,\n\t101,\n\t100,\n\t102,\n\t105,\n\t110,\n\t97,\n\t108,\n\t89,\n\t111,\n\t117,\n\t114,\n\t32,\n\t115,\n\t108,\n\t105,\n\t100,\n\t101,\n\t116,\n\t111,\n\t112,\n\t105,\n\t99,\n\t98,\n\t114,\n\t111,\n\t119,\n\t110,\n\t97,\n\t108,\n\t111,\n\t110,\n\t101,\n\t100,\n\t114,\n\t97,\n\t119,\n\t110,\n\t115,\n\t112,\n\t108,\n\t105,\n\t116,\n\t114,\n\t101,\n\t97,\n\t99,\n\t104,\n\t82,\n\t105,\n\t103,\n\t104,\n\t116,\n\t100,\n\t97,\n\t116,\n\t101,\n\t115,\n\t109,\n\t97,\n\t114,\n\t99,\n\t104,\n\t113,\n\t117,\n\t111,\n\t116,\n\t101,\n\t103,\n\t111,\n\t111,\n\t100,\n\t115,\n\t76,\n\t105,\n\t110,\n\t107,\n\t115,\n\t100,\n\t111,\n\t117,\n\t98,\n\t116,\n\t97,\n\t115,\n\t121,\n\t110,\n\t99,\n\t116,\n\t104,\n\t117,\n\t109,\n\t98,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t99,\n\t104,\n\t105,\n\t101,\n\t102,\n\t121,\n\t111,\n\t117,\n\t116,\n\t104,\n\t110,\n\t111,\n\t118,\n\t101,\n\t108,\n\t49,\n\t48,\n\t112,\n\t120,\n\t59,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t117,\n\t110,\n\t116,\n\t105,\n\t108,\n\t104,\n\t97,\n\t110,\n\t100,\n\t115,\n\t67,\n\t104,\n\t101,\n\t99,\n\t107,\n\t83,\n\t112,\n\t97,\n\t99,\n\t101,\n\t113,\n\t117,\n\t101,\n\t114,\n\t121,\n\t106,\n\t97,\n\t109,\n\t101,\n\t115,\n\t101,\n\t113,\n\t117,\n\t97,\n\t108,\n\t116,\n\t119,\n\t105,\n\t99,\n\t101,\n\t48,\n\t44,\n\t48,\n\t48,\n\t48,\n\t83,\n\t116,\n\t97,\n\t114,\n\t116,\n\t112,\n\t97,\n\t110,\n\t101,\n\t108,\n\t115,\n\t111,\n\t110,\n\t103,\n\t115,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t115,\n\t104,\n\t105,\n\t102,\n\t116,\n\t119,\n\t111,\n\t114,\n\t116,\n\t104,\n\t112,\n\t111,\n\t115,\n\t116,\n\t115,\n\t108,\n\t101,\n\t97,\n\t100,\n\t115,\n\t119,\n\t101,\n\t101,\n\t107,\n\t115,\n\t97,\n\t118,\n\t111,\n\t105,\n\t100,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t109,\n\t105,\n\t108,\n\t101,\n\t115,\n\t112,\n\t108,\n\t97,\n\t110,\n\t101,\n\t115,\n\t109,\n\t97,\n\t114,\n\t116,\n\t97,\n\t108,\n\t112,\n\t104,\n\t97,\n\t112,\n\t108,\n\t97,\n\t110,\n\t116,\n\t109,\n\t97,\n\t114,\n\t107,\n\t115,\n\t114,\n\t97,\n\t116,\n\t101,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t115,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t115,\n\t97,\n\t108,\n\t101,\n\t115,\n\t116,\n\t101,\n\t120,\n\t116,\n\t115,\n\t115,\n\t116,\n\t97,\n\t114,\n\t115,\n\t119,\n\t114,\n\t111,\n\t110,\n\t103,\n\t60,\n\t47,\n\t104,\n\t51,\n\t62,\n\t116,\n\t104,\n\t105,\n\t110,\n\t103,\n\t46,\n\t111,\n\t114,\n\t103,\n\t47,\n\t109,\n\t117,\n\t108,\n\t116,\n\t105,\n\t104,\n\t101,\n\t97,\n\t114,\n\t100,\n\t80,\n\t111,\n\t119,\n\t101,\n\t114,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t116,\n\t111,\n\t107,\n\t101,\n\t110,\n\t115,\n\t111,\n\t108,\n\t105,\n\t100,\n\t40,\n\t116,\n\t104,\n\t105,\n\t115,\n\t98,\n\t114,\n\t105,\n\t110,\n\t103,\n\t115,\n\t104,\n\t105,\n\t112,\n\t115,\n\t115,\n\t116,\n\t97,\n\t102,\n\t102,\n\t116,\n\t114,\n\t105,\n\t101,\n\t100,\n\t99,\n\t97,\n\t108,\n\t108,\n\t115,\n\t102,\n\t117,\n\t108,\n\t108,\n\t121,\n\t102,\n\t97,\n\t99,\n\t116,\n\t115,\n\t97,\n\t103,\n\t101,\n\t110,\n\t116,\n\t84,\n\t104,\n\t105,\n\t115,\n\t32,\n\t47,\n\t47,\n\t45,\n\t45,\n\t62,\n\t97,\n\t100,\n\t109,\n\t105,\n\t110,\n\t101,\n\t103,\n\t121,\n\t112,\n\t116,\n\t69,\n\t118,\n\t101,\n\t110,\n\t116,\n\t49,\n\t53,\n\t112,\n\t120,\n\t59,\n\t69,\n\t109,\n\t97,\n\t105,\n\t108,\n\t116,\n\t114,\n\t117,\n\t101,\n\t34,\n\t99,\n\t114,\n\t111,\n\t115,\n\t115,\n\t115,\n\t112,\n\t101,\n\t110,\n\t116,\n\t98,\n\t108,\n\t111,\n\t103,\n\t115,\n\t98,\n\t111,\n\t120,\n\t34,\n\t62,\n\t110,\n\t111,\n\t116,\n\t101,\n\t100,\n\t108,\n\t101,\n\t97,\n\t118,\n\t101,\n\t99,\n\t104,\n\t105,\n\t110,\n\t97,\n\t115,\n\t105,\n\t122,\n\t101,\n\t115,\n\t103,\n\t117,\n\t101,\n\t115,\n\t116,\n\t60,\n\t47,\n\t104,\n\t52,\n\t62,\n\t114,\n\t111,\n\t98,\n\t111,\n\t116,\n\t104,\n\t101,\n\t97,\n\t118,\n\t121,\n\t116,\n\t114,\n\t117,\n\t101,\n\t44,\n\t115,\n\t101,\n\t118,\n\t101,\n\t110,\n\t103,\n\t114,\n\t97,\n\t110,\n\t100,\n\t99,\n\t114,\n\t105,\n\t109,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t115,\n\t97,\n\t119,\n\t97,\n\t114,\n\t101,\n\t100,\n\t97,\n\t110,\n\t99,\n\t101,\n\t112,\n\t104,\n\t97,\n\t115,\n\t101,\n\t62,\n\t60,\n\t33,\n\t45,\n\t45,\n\t101,\n\t110,\n\t95,\n\t85,\n\t83,\n\t38,\n\t35,\n\t51,\n\t57,\n\t59,\n\t50,\n\t48,\n\t48,\n\t112,\n\t120,\n\t95,\n\t110,\n\t97,\n\t109,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t110,\n\t101,\n\t110,\n\t106,\n\t111,\n\t121,\n\t97,\n\t106,\n\t97,\n\t120,\n\t46,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t109,\n\t105,\n\t116,\n\t104,\n\t85,\n\t46,\n\t83,\n\t46,\n\t32,\n\t104,\n\t111,\n\t108,\n\t100,\n\t115,\n\t112,\n\t101,\n\t116,\n\t101,\n\t114,\n\t105,\n\t110,\n\t100,\n\t105,\n\t97,\n\t110,\n\t97,\n\t118,\n\t34,\n\t62,\n\t99,\n\t104,\n\t97,\n\t105,\n\t110,\n\t115,\n\t99,\n\t111,\n\t114,\n\t101,\n\t99,\n\t111,\n\t109,\n\t101,\n\t115,\n\t100,\n\t111,\n\t105,\n\t110,\n\t103,\n\t112,\n\t114,\n\t105,\n\t111,\n\t114,\n\t83,\n\t104,\n\t97,\n\t114,\n\t101,\n\t49,\n\t57,\n\t57,\n\t48,\n\t115,\n\t114,\n\t111,\n\t109,\n\t97,\n\t110,\n\t108,\n\t105,\n\t115,\n\t116,\n\t115,\n\t106,\n\t97,\n\t112,\n\t97,\n\t110,\n\t102,\n\t97,\n\t108,\n\t108,\n\t115,\n\t116,\n\t114,\n\t105,\n\t97,\n\t108,\n\t111,\n\t119,\n\t110,\n\t101,\n\t114,\n\t97,\n\t103,\n\t114,\n\t101,\n\t101,\n\t60,\n\t47,\n\t104,\n\t50,\n\t62,\n\t97,\n\t98,\n\t117,\n\t115,\n\t101,\n\t97,\n\t108,\n\t101,\n\t114,\n\t116,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t34,\n\t45,\n\t47,\n\t47,\n\t87,\n\t99,\n\t97,\n\t114,\n\t100,\n\t115,\n\t104,\n\t105,\n\t108,\n\t108,\n\t115,\n\t116,\n\t101,\n\t97,\n\t109,\n\t115,\n\t80,\n\t104,\n\t111,\n\t116,\n\t111,\n\t116,\n\t114,\n\t117,\n\t116,\n\t104,\n\t99,\n\t108,\n\t101,\n\t97,\n\t110,\n\t46,\n\t112,\n\t104,\n\t112,\n\t63,\n\t115,\n\t97,\n\t105,\n\t110,\n\t116,\n\t109,\n\t101,\n\t116,\n\t97,\n\t108,\n\t108,\n\t111,\n\t117,\n\t105,\n\t115,\n\t109,\n\t101,\n\t97,\n\t110,\n\t116,\n\t112,\n\t114,\n\t111,\n\t111,\n\t102,\n\t98,\n\t114,\n\t105,\n\t101,\n\t102,\n\t114,\n\t111,\n\t119,\n\t34,\n\t62,\n\t103,\n\t101,\n\t110,\n\t114,\n\t101,\n\t116,\n\t114,\n\t117,\n\t99,\n\t107,\n\t108,\n\t111,\n\t111,\n\t107,\n\t115,\n\t86,\n\t97,\n\t108,\n\t117,\n\t101,\n\t70,\n\t114,\n\t97,\n\t109,\n\t101,\n\t46,\n\t110,\n\t101,\n\t116,\n\t47,\n\t45,\n\t45,\n\t62,\n\t10,\n\t60,\n\t116,\n\t114,\n\t121,\n\t32,\n\t123,\n\t10,\n\t118,\n\t97,\n\t114,\n\t32,\n\t109,\n\t97,\n\t107,\n\t101,\n\t115,\n\t99,\n\t111,\n\t115,\n\t116,\n\t115,\n\t112,\n\t108,\n\t97,\n\t105,\n\t110,\n\t97,\n\t100,\n\t117,\n\t108,\n\t116,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t116,\n\t114,\n\t97,\n\t105,\n\t110,\n\t108,\n\t97,\n\t98,\n\t111,\n\t114,\n\t104,\n\t101,\n\t108,\n\t112,\n\t115,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t109,\n\t97,\n\t103,\n\t105,\n\t99,\n\t109,\n\t111,\n\t116,\n\t111,\n\t114,\n\t116,\n\t104,\n\t101,\n\t105,\n\t114,\n\t50,\n\t53,\n\t48,\n\t112,\n\t120,\n\t108,\n\t101,\n\t97,\n\t115,\n\t116,\n\t115,\n\t116,\n\t101,\n\t112,\n\t115,\n\t67,\n\t111,\n\t117,\n\t110,\n\t116,\n\t99,\n\t111,\n\t117,\n\t108,\n\t100,\n\t103,\n\t108,\n\t97,\n\t115,\n\t115,\n\t115,\n\t105,\n\t100,\n\t101,\n\t115,\n\t102,\n\t117,\n\t110,\n\t100,\n\t115,\n\t104,\n\t111,\n\t116,\n\t101,\n\t108,\n\t97,\n\t119,\n\t97,\n\t114,\n\t100,\n\t109,\n\t111,\n\t117,\n\t116,\n\t104,\n\t109,\n\t111,\n\t118,\n\t101,\n\t115,\n\t112,\n\t97,\n\t114,\n\t105,\n\t115,\n\t103,\n\t105,\n\t118,\n\t101,\n\t115,\n\t100,\n\t117,\n\t116,\n\t99,\n\t104,\n\t116,\n\t101,\n\t120,\n\t97,\n\t115,\n\t102,\n\t114,\n\t117,\n\t105,\n\t116,\n\t110,\n\t117,\n\t108,\n\t108,\n\t44,\n\t124,\n\t124,\n\t91,\n\t93,\n\t59,\n\t116,\n\t111,\n\t112,\n\t34,\n\t62,\n\t10,\n\t60,\n\t33,\n\t45,\n\t45,\n\t80,\n\t79,\n\t83,\n\t84,\n\t34,\n\t111,\n\t99,\n\t101,\n\t97,\n\t110,\n\t60,\n\t98,\n\t114,\n\t47,\n\t62,\n\t102,\n\t108,\n\t111,\n\t111,\n\t114,\n\t115,\n\t112,\n\t101,\n\t97,\n\t107,\n\t100,\n\t101,\n\t112,\n\t116,\n\t104,\n\t32,\n\t115,\n\t105,\n\t122,\n\t101,\n\t98,\n\t97,\n\t110,\n\t107,\n\t115,\n\t99,\n\t97,\n\t116,\n\t99,\n\t104,\n\t99,\n\t104,\n\t97,\n\t114,\n\t116,\n\t50,\n\t48,\n\t112,\n\t120,\n\t59,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t100,\n\t101,\n\t97,\n\t108,\n\t115,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t53,\n\t48,\n\t112,\n\t120,\n\t59,\n\t117,\n\t114,\n\t108,\n\t61,\n\t34,\n\t112,\n\t97,\n\t114,\n\t107,\n\t115,\n\t109,\n\t111,\n\t117,\n\t115,\n\t101,\n\t77,\n\t111,\n\t115,\n\t116,\n\t32,\n\t46,\n\t46,\n\t46,\n\t60,\n\t47,\n\t97,\n\t109,\n\t111,\n\t110,\n\t103,\n\t98,\n\t114,\n\t97,\n\t105,\n\t110,\n\t98,\n\t111,\n\t100,\n\t121,\n\t32,\n\t110,\n\t111,\n\t110,\n\t101,\n\t59,\n\t98,\n\t97,\n\t115,\n\t101,\n\t100,\n\t99,\n\t97,\n\t114,\n\t114,\n\t121,\n\t100,\n\t114,\n\t97,\n\t102,\n\t116,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t112,\n\t97,\n\t103,\n\t101,\n\t95,\n\t104,\n\t111,\n\t109,\n\t101,\n\t46,\n\t109,\n\t101,\n\t116,\n\t101,\n\t114,\n\t100,\n\t101,\n\t108,\n\t97,\n\t121,\n\t100,\n\t114,\n\t101,\n\t97,\n\t109,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t106,\n\t111,\n\t105,\n\t110,\n\t116,\n\t60,\n\t47,\n\t116,\n\t114,\n\t62,\n\t100,\n\t114,\n\t117,\n\t103,\n\t115,\n\t60,\n\t33,\n\t45,\n\t45,\n\t32,\n\t97,\n\t112,\n\t114,\n\t105,\n\t108,\n\t105,\n\t100,\n\t101,\n\t97,\n\t108,\n\t97,\n\t108,\n\t108,\n\t101,\n\t110,\n\t101,\n\t120,\n\t97,\n\t99,\n\t116,\n\t102,\n\t111,\n\t114,\n\t116,\n\t104,\n\t99,\n\t111,\n\t100,\n\t101,\n\t115,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t86,\n\t105,\n\t101,\n\t119,\n\t32,\n\t115,\n\t101,\n\t101,\n\t109,\n\t115,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t112,\n\t111,\n\t114,\n\t116,\n\t115,\n\t32,\n\t40,\n\t50,\n\t48,\n\t48,\n\t115,\n\t97,\n\t118,\n\t101,\n\t100,\n\t95,\n\t108,\n\t105,\n\t110,\n\t107,\n\t103,\n\t111,\n\t97,\n\t108,\n\t115,\n\t103,\n\t114,\n\t97,\n\t110,\n\t116,\n\t103,\n\t114,\n\t101,\n\t101,\n\t107,\n\t104,\n\t111,\n\t109,\n\t101,\n\t115,\n\t114,\n\t105,\n\t110,\n\t103,\n\t115,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t51,\n\t48,\n\t112,\n\t120,\n\t59,\n\t119,\n\t104,\n\t111,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t115,\n\t101,\n\t40,\n\t41,\n\t59,\n\t34,\n\t32,\n\t66,\n\t108,\n\t111,\n\t99,\n\t107,\n\t108,\n\t105,\n\t110,\n\t117,\n\t120,\n\t106,\n\t111,\n\t110,\n\t101,\n\t115,\n\t112,\n\t105,\n\t120,\n\t101,\n\t108,\n\t39,\n\t41,\n\t59,\n\t34,\n\t62,\n\t41,\n\t59,\n\t105,\n\t102,\n\t40,\n\t45,\n\t108,\n\t101,\n\t102,\n\t116,\n\t100,\n\t97,\n\t118,\n\t105,\n\t100,\n\t104,\n\t111,\n\t114,\n\t115,\n\t101,\n\t70,\n\t111,\n\t99,\n\t117,\n\t115,\n\t114,\n\t97,\n\t105,\n\t115,\n\t101,\n\t98,\n\t111,\n\t120,\n\t101,\n\t115,\n\t84,\n\t114,\n\t97,\n\t99,\n\t107,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t60,\n\t47,\n\t101,\n\t109,\n\t62,\n\t98,\n\t97,\n\t114,\n\t34,\n\t62,\n\t46,\n\t115,\n\t114,\n\t99,\n\t61,\n\t116,\n\t111,\n\t119,\n\t101,\n\t114,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t99,\n\t97,\n\t98,\n\t108,\n\t101,\n\t104,\n\t101,\n\t110,\n\t114,\n\t121,\n\t50,\n\t52,\n\t112,\n\t120,\n\t59,\n\t115,\n\t101,\n\t116,\n\t117,\n\t112,\n\t105,\n\t116,\n\t97,\n\t108,\n\t121,\n\t115,\n\t104,\n\t97,\n\t114,\n\t112,\n\t109,\n\t105,\n\t110,\n\t111,\n\t114,\n\t116,\n\t97,\n\t115,\n\t116,\n\t101,\n\t119,\n\t97,\n\t110,\n\t116,\n\t115,\n\t116,\n\t104,\n\t105,\n\t115,\n\t46,\n\t114,\n\t101,\n\t115,\n\t101,\n\t116,\n\t119,\n\t104,\n\t101,\n\t101,\n\t108,\n\t103,\n\t105,\n\t114,\n\t108,\n\t115,\n\t47,\n\t99,\n\t115,\n\t115,\n\t47,\n\t49,\n\t48,\n\t48,\n\t37,\n\t59,\n\t99,\n\t108,\n\t117,\n\t98,\n\t115,\n\t115,\n\t116,\n\t117,\n\t102,\n\t102,\n\t98,\n\t105,\n\t98,\n\t108,\n\t101,\n\t118,\n\t111,\n\t116,\n\t101,\n\t115,\n\t32,\n\t49,\n\t48,\n\t48,\n\t48,\n\t107,\n\t111,\n\t114,\n\t101,\n\t97,\n\t125,\n\t41,\n\t59,\n\t13,\n\t10,\n\t98,\n\t97,\n\t110,\n\t100,\n\t115,\n\t113,\n\t117,\n\t101,\n\t117,\n\t101,\n\t61,\n\t32,\n\t123,\n\t125,\n\t59,\n\t56,\n\t48,\n\t112,\n\t120,\n\t59,\n\t99,\n\t107,\n\t105,\n\t110,\n\t103,\n\t123,\n\t13,\n\t10,\n\t9,\n\t9,\n\t97,\n\t104,\n\t101,\n\t97,\n\t100,\n\t99,\n\t108,\n\t111,\n\t99,\n\t107,\n\t105,\n\t114,\n\t105,\n\t115,\n\t104,\n\t108,\n\t105,\n\t107,\n\t101,\n\t32,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t115,\n\t116,\n\t97,\n\t116,\n\t115,\n\t70,\n\t111,\n\t114,\n\t109,\n\t34,\n\t121,\n\t97,\n\t104,\n\t111,\n\t111,\n\t41,\n\t91,\n\t48,\n\t93,\n\t59,\n\t65,\n\t98,\n\t111,\n\t117,\n\t116,\n\t102,\n\t105,\n\t110,\n\t100,\n\t115,\n\t60,\n\t47,\n\t104,\n\t49,\n\t62,\n\t100,\n\t101,\n\t98,\n\t117,\n\t103,\n\t116,\n\t97,\n\t115,\n\t107,\n\t115,\n\t85,\n\t82,\n\t76,\n\t32,\n\t61,\n\t99,\n\t101,\n\t108,\n\t108,\n\t115,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t49,\n\t50,\n\t112,\n\t120,\n\t59,\n\t112,\n\t114,\n\t105,\n\t109,\n\t101,\n\t116,\n\t101,\n\t108,\n\t108,\n\t115,\n\t116,\n\t117,\n\t114,\n\t110,\n\t115,\n\t48,\n\t120,\n\t54,\n\t48,\n\t48,\n\t46,\n\t106,\n\t112,\n\t103,\n\t34,\n\t115,\n\t112,\n\t97,\n\t105,\n\t110,\n\t98,\n\t101,\n\t97,\n\t99,\n\t104,\n\t116,\n\t97,\n\t120,\n\t101,\n\t115,\n\t109,\n\t105,\n\t99,\n\t114,\n\t111,\n\t97,\n\t110,\n\t103,\n\t101,\n\t108,\n\t45,\n\t45,\n\t62,\n\t60,\n\t47,\n\t103,\n\t105,\n\t102,\n\t116,\n\t115,\n\t115,\n\t116,\n\t101,\n\t118,\n\t101,\n\t45,\n\t108,\n\t105,\n\t110,\n\t107,\n\t98,\n\t111,\n\t100,\n\t121,\n\t46,\n\t125,\n\t41,\n\t59,\n\t10,\n\t9,\n\t109,\n\t111,\n\t117,\n\t110,\n\t116,\n\t32,\n\t40,\n\t49,\n\t57,\n\t57,\n\t70,\n\t65,\n\t81,\n\t60,\n\t47,\n\t114,\n\t111,\n\t103,\n\t101,\n\t114,\n\t102,\n\t114,\n\t97,\n\t110,\n\t107,\n\t67,\n\t108,\n\t97,\n\t115,\n\t115,\n\t50,\n\t56,\n\t112,\n\t120,\n\t59,\n\t102,\n\t101,\n\t101,\n\t100,\n\t115,\n\t60,\n\t104,\n\t49,\n\t62,\n\t60,\n\t115,\n\t99,\n\t111,\n\t116,\n\t116,\n\t116,\n\t101,\n\t115,\n\t116,\n\t115,\n\t50,\n\t50,\n\t112,\n\t120,\n\t59,\n\t100,\n\t114,\n\t105,\n\t110,\n\t107,\n\t41,\n\t32,\n\t124,\n\t124,\n\t32,\n\t108,\n\t101,\n\t119,\n\t105,\n\t115,\n\t115,\n\t104,\n\t97,\n\t108,\n\t108,\n\t35,\n\t48,\n\t51,\n\t57,\n\t59,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t108,\n\t111,\n\t118,\n\t101,\n\t100,\n\t119,\n\t97,\n\t115,\n\t116,\n\t101,\n\t48,\n\t48,\n\t112,\n\t120,\n\t59,\n\t106,\n\t97,\n\t58,\n\t227,\n\t130,\n\t115,\n\t105,\n\t109,\n\t111,\n\t110,\n\t60,\n\t102,\n\t111,\n\t110,\n\t116,\n\t114,\n\t101,\n\t112,\n\t108,\n\t121,\n\t109,\n\t101,\n\t101,\n\t116,\n\t115,\n\t117,\n\t110,\n\t116,\n\t101,\n\t114,\n\t99,\n\t104,\n\t101,\n\t97,\n\t112,\n\t116,\n\t105,\n\t103,\n\t104,\n\t116,\n\t66,\n\t114,\n\t97,\n\t110,\n\t100,\n\t41,\n\t32,\n\t33,\n\t61,\n\t32,\n\t100,\n\t114,\n\t101,\n\t115,\n\t115,\n\t99,\n\t108,\n\t105,\n\t112,\n\t115,\n\t114,\n\t111,\n\t111,\n\t109,\n\t115,\n\t111,\n\t110,\n\t107,\n\t101,\n\t121,\n\t109,\n\t111,\n\t98,\n\t105,\n\t108,\n\t109,\n\t97,\n\t105,\n\t110,\n\t46,\n\t78,\n\t97,\n\t109,\n\t101,\n\t32,\n\t112,\n\t108,\n\t97,\n\t116,\n\t101,\n\t102,\n\t117,\n\t110,\n\t110,\n\t121,\n\t116,\n\t114,\n\t101,\n\t101,\n\t115,\n\t99,\n\t111,\n\t109,\n\t47,\n\t34,\n\t49,\n\t46,\n\t106,\n\t112,\n\t103,\n\t119,\n\t109,\n\t111,\n\t100,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t109,\n\t83,\n\t84,\n\t65,\n\t82,\n\t84,\n\t108,\n\t101,\n\t102,\n\t116,\n\t32,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t44,\n\t32,\n\t50,\n\t48,\n\t49,\n\t41,\n\t59,\n\t10,\n\t125,\n\t10,\n\t102,\n\t111,\n\t114,\n\t109,\n\t46,\n\t118,\n\t105,\n\t114,\n\t117,\n\t115,\n\t99,\n\t104,\n\t97,\n\t105,\n\t114,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t119,\n\t111,\n\t114,\n\t115,\n\t116,\n\t80,\n\t97,\n\t103,\n\t101,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t97,\n\t116,\n\t99,\n\t104,\n\t60,\n\t33,\n\t45,\n\t45,\n\t10,\n\t111,\n\t45,\n\t99,\n\t97,\n\t99,\n\t102,\n\t105,\n\t114,\n\t109,\n\t115,\n\t116,\n\t111,\n\t117,\n\t114,\n\t115,\n\t44,\n\t48,\n\t48,\n\t48,\n\t32,\n\t97,\n\t115,\n\t105,\n\t97,\n\t110,\n\t105,\n\t43,\n\t43,\n\t41,\n\t123,\n\t97,\n\t100,\n\t111,\n\t98,\n\t101,\n\t39,\n\t41,\n\t91,\n\t48,\n\t93,\n\t105,\n\t100,\n\t61,\n\t49,\n\t48,\n\t98,\n\t111,\n\t116,\n\t104,\n\t59,\n\t109,\n\t101,\n\t110,\n\t117,\n\t32,\n\t46,\n\t50,\n\t46,\n\t109,\n\t105,\n\t46,\n\t112,\n\t110,\n\t103,\n\t34,\n\t107,\n\t101,\n\t118,\n\t105,\n\t110,\n\t99,\n\t111,\n\t97,\n\t99,\n\t104,\n\t67,\n\t104,\n\t105,\n\t108,\n\t100,\n\t98,\n\t114,\n\t117,\n\t99,\n\t101,\n\t50,\n\t46,\n\t106,\n\t112,\n\t103,\n\t85,\n\t82,\n\t76,\n\t41,\n\t43,\n\t46,\n\t106,\n\t112,\n\t103,\n\t124,\n\t115,\n\t117,\n\t105,\n\t116,\n\t101,\n\t115,\n\t108,\n\t105,\n\t99,\n\t101,\n\t104,\n\t97,\n\t114,\n\t114,\n\t121,\n\t49,\n\t50,\n\t48,\n\t34,\n\t32,\n\t115,\n\t119,\n\t101,\n\t101,\n\t116,\n\t116,\n\t114,\n\t62,\n\t13,\n\t10,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t100,\n\t105,\n\t101,\n\t103,\n\t111,\n\t112,\n\t97,\n\t103,\n\t101,\n\t32,\n\t115,\n\t119,\n\t105,\n\t115,\n\t115,\n\t45,\n\t45,\n\t62,\n\t10,\n\t10,\n\t35,\n\t102,\n\t102,\n\t102,\n\t59,\n\t34,\n\t62,\n\t76,\n\t111,\n\t103,\n\t46,\n\t99,\n\t111,\n\t109,\n\t34,\n\t116,\n\t114,\n\t101,\n\t97,\n\t116,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t41,\n\t32,\n\t38,\n\t38,\n\t32,\n\t49,\n\t52,\n\t112,\n\t120,\n\t59,\n\t115,\n\t108,\n\t101,\n\t101,\n\t112,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t102,\n\t105,\n\t108,\n\t101,\n\t100,\n\t106,\n\t97,\n\t58,\n\t227,\n\t131,\n\t105,\n\t100,\n\t61,\n\t34,\n\t99,\n\t78,\n\t97,\n\t109,\n\t101,\n\t34,\n\t119,\n\t111,\n\t114,\n\t115,\n\t101,\n\t115,\n\t104,\n\t111,\n\t116,\n\t115,\n\t45,\n\t98,\n\t111,\n\t120,\n\t45,\n\t100,\n\t101,\n\t108,\n\t116,\n\t97,\n\t10,\n\t38,\n\t108,\n\t116,\n\t59,\n\t98,\n\t101,\n\t97,\n\t114,\n\t115,\n\t58,\n\t52,\n\t56,\n\t90,\n\t60,\n\t100,\n\t97,\n\t116,\n\t97,\n\t45,\n\t114,\n\t117,\n\t114,\n\t97,\n\t108,\n\t60,\n\t47,\n\t97,\n\t62,\n\t32,\n\t115,\n\t112,\n\t101,\n\t110,\n\t100,\n\t98,\n\t97,\n\t107,\n\t101,\n\t114,\n\t115,\n\t104,\n\t111,\n\t112,\n\t115,\n\t61,\n\t32,\n\t34,\n\t34,\n\t59,\n\t112,\n\t104,\n\t112,\n\t34,\n\t62,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t49,\n\t51,\n\t112,\n\t120,\n\t59,\n\t98,\n\t114,\n\t105,\n\t97,\n\t110,\n\t104,\n\t101,\n\t108,\n\t108,\n\t111,\n\t115,\n\t105,\n\t122,\n\t101,\n\t61,\n\t111,\n\t61,\n\t37,\n\t50,\n\t70,\n\t32,\n\t106,\n\t111,\n\t105,\n\t110,\n\t109,\n\t97,\n\t121,\n\t98,\n\t101,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t105,\n\t109,\n\t103,\n\t34,\n\t62,\n\t44,\n\t32,\n\t102,\n\t106,\n\t115,\n\t105,\n\t109,\n\t103,\n\t34,\n\t32,\n\t34,\n\t41,\n\t91,\n\t48,\n\t93,\n\t77,\n\t84,\n\t111,\n\t112,\n\t66,\n\t84,\n\t121,\n\t112,\n\t101,\n\t34,\n\t110,\n\t101,\n\t119,\n\t108,\n\t121,\n\t68,\n\t97,\n\t110,\n\t115,\n\t107,\n\t99,\n\t122,\n\t101,\n\t99,\n\t104,\n\t116,\n\t114,\n\t97,\n\t105,\n\t108,\n\t107,\n\t110,\n\t111,\n\t119,\n\t115,\n\t60,\n\t47,\n\t104,\n\t53,\n\t62,\n\t102,\n\t97,\n\t113,\n\t34,\n\t62,\n\t122,\n\t104,\n\t45,\n\t99,\n\t110,\n\t49,\n\t48,\n\t41,\n\t59,\n\t10,\n\t45,\n\t49,\n\t34,\n\t41,\n\t59,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t98,\n\t108,\n\t117,\n\t101,\n\t115,\n\t116,\n\t114,\n\t117,\n\t108,\n\t121,\n\t100,\n\t97,\n\t118,\n\t105,\n\t115,\n\t46,\n\t106,\n\t115,\n\t39,\n\t59,\n\t62,\n\t13,\n\t10,\n\t60,\n\t33,\n\t115,\n\t116,\n\t101,\n\t101,\n\t108,\n\t32,\n\t121,\n\t111,\n\t117,\n\t32,\n\t104,\n\t50,\n\t62,\n\t13,\n\t10,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t106,\n\t101,\n\t115,\n\t117,\n\t115,\n\t49,\n\t48,\n\t48,\n\t37,\n\t32,\n\t109,\n\t101,\n\t110,\n\t117,\n\t46,\n\t13,\n\t10,\n\t9,\n\t13,\n\t10,\n\t119,\n\t97,\n\t108,\n\t101,\n\t115,\n\t114,\n\t105,\n\t115,\n\t107,\n\t115,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t98,\n\t45,\n\t108,\n\t105,\n\t107,\n\t116,\n\t101,\n\t97,\n\t99,\n\t104,\n\t103,\n\t105,\n\t102,\n\t34,\n\t32,\n\t118,\n\t101,\n\t103,\n\t97,\n\t115,\n\t100,\n\t97,\n\t110,\n\t115,\n\t107,\n\t101,\n\t101,\n\t115,\n\t116,\n\t105,\n\t115,\n\t104,\n\t113,\n\t105,\n\t112,\n\t115,\n\t117,\n\t111,\n\t109,\n\t105,\n\t115,\n\t111,\n\t98,\n\t114,\n\t101,\n\t100,\n\t101,\n\t115,\n\t100,\n\t101,\n\t101,\n\t110,\n\t116,\n\t114,\n\t101,\n\t116,\n\t111,\n\t100,\n\t111,\n\t115,\n\t112,\n\t117,\n\t101,\n\t100,\n\t101,\n\t97,\n\t195,\n\t177,\n\t111,\n\t115,\n\t101,\n\t115,\n\t116,\n\t195,\n\t161,\n\t116,\n\t105,\n\t101,\n\t110,\n\t101,\n\t104,\n\t97,\n\t115,\n\t116,\n\t97,\n\t111,\n\t116,\n\t114,\n\t111,\n\t115,\n\t112,\n\t97,\n\t114,\n\t116,\n\t101,\n\t100,\n\t111,\n\t110,\n\t100,\n\t101,\n\t110,\n\t117,\n\t101,\n\t118,\n\t111,\n\t104,\n\t97,\n\t99,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t109,\n\t105,\n\t115,\n\t109,\n\t111,\n\t109,\n\t101,\n\t106,\n\t111,\n\t114,\n\t109,\n\t117,\n\t110,\n\t100,\n\t111,\n\t97,\n\t113,\n\t117,\n\t195,\n\t173,\n\t100,\n\t195,\n\t173,\n\t97,\n\t115,\n\t115,\n\t195,\n\t179,\n\t108,\n\t111,\n\t97,\n\t121,\n\t117,\n\t100,\n\t97,\n\t102,\n\t101,\n\t99,\n\t104,\n\t97,\n\t116,\n\t111,\n\t100,\n\t97,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t111,\n\t109,\n\t101,\n\t110,\n\t111,\n\t115,\n\t100,\n\t97,\n\t116,\n\t111,\n\t115,\n\t111,\n\t116,\n\t114,\n\t97,\n\t115,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t109,\n\t117,\n\t99,\n\t104,\n\t111,\n\t97,\n\t104,\n\t111,\n\t114,\n\t97,\n\t108,\n\t117,\n\t103,\n\t97,\n\t114,\n\t109,\n\t97,\n\t121,\n\t111,\n\t114,\n\t101,\n\t115,\n\t116,\n\t111,\n\t115,\n\t104,\n\t111,\n\t114,\n\t97,\n\t115,\n\t116,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t110,\n\t116,\n\t101,\n\t115,\n\t102,\n\t111,\n\t116,\n\t111,\n\t115,\n\t101,\n\t115,\n\t116,\n\t97,\n\t115,\n\t112,\n\t97,\n\t195,\n\t173,\n\t115,\n\t110,\n\t117,\n\t101,\n\t118,\n\t97,\n\t115,\n\t97,\n\t108,\n\t117,\n\t100,\n\t102,\n\t111,\n\t114,\n\t111,\n\t115,\n\t109,\n\t101,\n\t100,\n\t105,\n\t111,\n\t113,\n\t117,\n\t105,\n\t101,\n\t110,\n\t109,\n\t101,\n\t115,\n\t101,\n\t115,\n\t112,\n\t111,\n\t100,\n\t101,\n\t114,\n\t99,\n\t104,\n\t105,\n\t108,\n\t101,\n\t115,\n\t101,\n\t114,\n\t195,\n\t161,\n\t118,\n\t101,\n\t99,\n\t101,\n\t115,\n\t100,\n\t101,\n\t99,\n\t105,\n\t114,\n\t106,\n\t111,\n\t115,\n\t195,\n\t169,\n\t101,\n\t115,\n\t116,\n\t97,\n\t114,\n\t118,\n\t101,\n\t110,\n\t116,\n\t97,\n\t103,\n\t114,\n\t117,\n\t112,\n\t111,\n\t104,\n\t101,\n\t99,\n\t104,\n\t111,\n\t101,\n\t108,\n\t108,\n\t111,\n\t115,\n\t116,\n\t101,\n\t110,\n\t103,\n\t111,\n\t97,\n\t109,\n\t105,\n\t103,\n\t111,\n\t99,\n\t111,\n\t115,\n\t97,\n\t115,\n\t110,\n\t105,\n\t118,\n\t101,\n\t108,\n\t103,\n\t101,\n\t110,\n\t116,\n\t101,\n\t109,\n\t105,\n\t115,\n\t109,\n\t97,\n\t97,\n\t105,\n\t114,\n\t101,\n\t115,\n\t106,\n\t117,\n\t108,\n\t105,\n\t111,\n\t116,\n\t101,\n\t109,\n\t97,\n\t115,\n\t104,\n\t97,\n\t99,\n\t105,\n\t97,\n\t102,\n\t97,\n\t118,\n\t111,\n\t114,\n\t106,\n\t117,\n\t110,\n\t105,\n\t111,\n\t108,\n\t105,\n\t98,\n\t114,\n\t101,\n\t112,\n\t117,\n\t110,\n\t116,\n\t111,\n\t98,\n\t117,\n\t101,\n\t110,\n\t111,\n\t97,\n\t117,\n\t116,\n\t111,\n\t114,\n\t97,\n\t98,\n\t114,\n\t105,\n\t108,\n\t98,\n\t117,\n\t101,\n\t110,\n\t97,\n\t116,\n\t101,\n\t120,\n\t116,\n\t111,\n\t109,\n\t97,\n\t114,\n\t122,\n\t111,\n\t115,\n\t97,\n\t98,\n\t101,\n\t114,\n\t108,\n\t105,\n\t115,\n\t116,\n\t97,\n\t108,\n\t117,\n\t101,\n\t103,\n\t111,\n\t99,\n\t195,\n\t179,\n\t109,\n\t111,\n\t101,\n\t110,\n\t101,\n\t114,\n\t111,\n\t106,\n\t117,\n\t101,\n\t103,\n\t111,\n\t112,\n\t101,\n\t114,\n\t195,\n\t186,\n\t104,\n\t97,\n\t98,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t111,\n\t121,\n\t110,\n\t117,\n\t110,\n\t99,\n\t97,\n\t109,\n\t117,\n\t106,\n\t101,\n\t114,\n\t118,\n\t97,\n\t108,\n\t111,\n\t114,\n\t102,\n\t117,\n\t101,\n\t114,\n\t97,\n\t108,\n\t105,\n\t98,\n\t114,\n\t111,\n\t103,\n\t117,\n\t115,\n\t116,\n\t97,\n\t105,\n\t103,\n\t117,\n\t97,\n\t108,\n\t118,\n\t111,\n\t116,\n\t111,\n\t115,\n\t99,\n\t97,\n\t115,\n\t111,\n\t115,\n\t103,\n\t117,\n\t195,\n\t173,\n\t97,\n\t112,\n\t117,\n\t101,\n\t100,\n\t111,\n\t115,\n\t111,\n\t109,\n\t111,\n\t115,\n\t97,\n\t118,\n\t105,\n\t115,\n\t111,\n\t117,\n\t115,\n\t116,\n\t101,\n\t100,\n\t100,\n\t101,\n\t98,\n\t101,\n\t110,\n\t110,\n\t111,\n\t99,\n\t104,\n\t101,\n\t98,\n\t117,\n\t115,\n\t99,\n\t97,\n\t102,\n\t97,\n\t108,\n\t116,\n\t97,\n\t101,\n\t117,\n\t114,\n\t111,\n\t115,\n\t115,\n\t101,\n\t114,\n\t105,\n\t101,\n\t100,\n\t105,\n\t99,\n\t104,\n\t111,\n\t99,\n\t117,\n\t114,\n\t115,\n\t111,\n\t99,\n\t108,\n\t97,\n\t118,\n\t101,\n\t99,\n\t97,\n\t115,\n\t97,\n\t115,\n\t108,\n\t101,\n\t195,\n\t179,\n\t110,\n\t112,\n\t108,\n\t97,\n\t122,\n\t111,\n\t108,\n\t97,\n\t114,\n\t103,\n\t111,\n\t111,\n\t98,\n\t114,\n\t97,\n\t115,\n\t118,\n\t105,\n\t115,\n\t116,\n\t97,\n\t97,\n\t112,\n\t111,\n\t121,\n\t111,\n\t106,\n\t117,\n\t110,\n\t116,\n\t111,\n\t116,\n\t114,\n\t97,\n\t116,\n\t97,\n\t118,\n\t105,\n\t115,\n\t116,\n\t111,\n\t99,\n\t114,\n\t101,\n\t97,\n\t114,\n\t99,\n\t97,\n\t109,\n\t112,\n\t111,\n\t104,\n\t101,\n\t109,\n\t111,\n\t115,\n\t99,\n\t105,\n\t110,\n\t99,\n\t111,\n\t99,\n\t97,\n\t114,\n\t103,\n\t111,\n\t112,\n\t105,\n\t115,\n\t111,\n\t115,\n\t111,\n\t114,\n\t100,\n\t101,\n\t110,\n\t104,\n\t97,\n\t99,\n\t101,\n\t110,\n\t195,\n\t161,\n\t114,\n\t101,\n\t97,\n\t100,\n\t105,\n\t115,\n\t99,\n\t111,\n\t112,\n\t101,\n\t100,\n\t114,\n\t111,\n\t99,\n\t101,\n\t114,\n\t99,\n\t97,\n\t112,\n\t117,\n\t101,\n\t100,\n\t97,\n\t112,\n\t97,\n\t112,\n\t101,\n\t108,\n\t109,\n\t101,\n\t110,\n\t111,\n\t114,\n\t195,\n\t186,\n\t116,\n\t105,\n\t108,\n\t99,\n\t108,\n\t97,\n\t114,\n\t111,\n\t106,\n\t111,\n\t114,\n\t103,\n\t101,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t112,\n\t111,\n\t110,\n\t101,\n\t114,\n\t116,\n\t97,\n\t114,\n\t100,\n\t101,\n\t110,\n\t97,\n\t100,\n\t105,\n\t101,\n\t109,\n\t97,\n\t114,\n\t99,\n\t97,\n\t115,\n\t105,\n\t103,\n\t117,\n\t101,\n\t101,\n\t108,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t103,\n\t108,\n\t111,\n\t99,\n\t111,\n\t99,\n\t104,\n\t101,\n\t109,\n\t111,\n\t116,\n\t111,\n\t115,\n\t109,\n\t97,\n\t100,\n\t114,\n\t101,\n\t99,\n\t108,\n\t97,\n\t115,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t111,\n\t110,\n\t105,\n\t195,\n\t177,\n\t111,\n\t113,\n\t117,\n\t101,\n\t100,\n\t97,\n\t112,\n\t97,\n\t115,\n\t97,\n\t114,\n\t98,\n\t97,\n\t110,\n\t99,\n\t111,\n\t104,\n\t105,\n\t106,\n\t111,\n\t115,\n\t118,\n\t105,\n\t97,\n\t106,\n\t101,\n\t112,\n\t97,\n\t98,\n\t108,\n\t111,\n\t195,\n\t169,\n\t115,\n\t116,\n\t101,\n\t118,\n\t105,\n\t101,\n\t110,\n\t101,\n\t114,\n\t101,\n\t105,\n\t110,\n\t111,\n\t100,\n\t101,\n\t106,\n\t97,\n\t114,\n\t102,\n\t111,\n\t110,\n\t100,\n\t111,\n\t99,\n\t97,\n\t110,\n\t97,\n\t108,\n\t110,\n\t111,\n\t114,\n\t116,\n\t101,\n\t108,\n\t101,\n\t116,\n\t114,\n\t97,\n\t99,\n\t97,\n\t117,\n\t115,\n\t97,\n\t116,\n\t111,\n\t109,\n\t97,\n\t114,\n\t109,\n\t97,\n\t110,\n\t111,\n\t115,\n\t108,\n\t117,\n\t110,\n\t101,\n\t115,\n\t97,\n\t117,\n\t116,\n\t111,\n\t115,\n\t118,\n\t105,\n\t108,\n\t108,\n\t97,\n\t118,\n\t101,\n\t110,\n\t100,\n\t111,\n\t112,\n\t101,\n\t115,\n\t97,\n\t114,\n\t116,\n\t105,\n\t112,\n\t111,\n\t115,\n\t116,\n\t101,\n\t110,\n\t103,\n\t97,\n\t109,\n\t97,\n\t114,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t118,\n\t97,\n\t112,\n\t97,\n\t100,\n\t114,\n\t101,\n\t117,\n\t110,\n\t105,\n\t100,\n\t111,\n\t118,\n\t97,\n\t109,\n\t111,\n\t115,\n\t122,\n\t111,\n\t110,\n\t97,\n\t115,\n\t97,\n\t109,\n\t98,\n\t111,\n\t115,\n\t98,\n\t97,\n\t110,\n\t100,\n\t97,\n\t109,\n\t97,\n\t114,\n\t105,\n\t97,\n\t97,\n\t98,\n\t117,\n\t115,\n\t111,\n\t109,\n\t117,\n\t99,\n\t104,\n\t97,\n\t115,\n\t117,\n\t98,\n\t105,\n\t114,\n\t114,\n\t105,\n\t111,\n\t106,\n\t97,\n\t118,\n\t105,\n\t118,\n\t105,\n\t114,\n\t103,\n\t114,\n\t97,\n\t100,\n\t111,\n\t99,\n\t104,\n\t105,\n\t99,\n\t97,\n\t97,\n\t108,\n\t108,\n\t195,\n\t173,\n\t106,\n\t111,\n\t118,\n\t101,\n\t110,\n\t100,\n\t105,\n\t99,\n\t104,\n\t97,\n\t101,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t97,\n\t108,\n\t101,\n\t115,\n\t115,\n\t97,\n\t108,\n\t105,\n\t114,\n\t115,\n\t117,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t115,\n\t111,\n\t115,\n\t102,\n\t105,\n\t110,\n\t101,\n\t115,\n\t108,\n\t108,\n\t97,\n\t109,\n\t97,\n\t98,\n\t117,\n\t115,\n\t99,\n\t111,\n\t195,\n\t169,\n\t115,\n\t116,\n\t97,\n\t108,\n\t108,\n\t101,\n\t103,\n\t97,\n\t110,\n\t101,\n\t103,\n\t114,\n\t111,\n\t112,\n\t108,\n\t97,\n\t122,\n\t97,\n\t104,\n\t117,\n\t109,\n\t111,\n\t114,\n\t112,\n\t97,\n\t103,\n\t97,\n\t114,\n\t106,\n\t117,\n\t110,\n\t116,\n\t97,\n\t100,\n\t111,\n\t98,\n\t108,\n\t101,\n\t105,\n\t115,\n\t108,\n\t97,\n\t115,\n\t98,\n\t111,\n\t108,\n\t115,\n\t97,\n\t98,\n\t97,\n\t195,\n\t177,\n\t111,\n\t104,\n\t97,\n\t98,\n\t108,\n\t97,\n\t108,\n\t117,\n\t99,\n\t104,\n\t97,\n\t195,\n\t129,\n\t114,\n\t101,\n\t97,\n\t100,\n\t105,\n\t99,\n\t101,\n\t110,\n\t106,\n\t117,\n\t103,\n\t97,\n\t114,\n\t110,\n\t111,\n\t116,\n\t97,\n\t115,\n\t118,\n\t97,\n\t108,\n\t108,\n\t101,\n\t97,\n\t108,\n\t108,\n\t195,\n\t161,\n\t99,\n\t97,\n\t114,\n\t103,\n\t97,\n\t100,\n\t111,\n\t108,\n\t111,\n\t114,\n\t97,\n\t98,\n\t97,\n\t106,\n\t111,\n\t101,\n\t115,\n\t116,\n\t195,\n\t169,\n\t103,\n\t117,\n\t115,\n\t116,\n\t111,\n\t109,\n\t101,\n\t110,\n\t116,\n\t101,\n\t109,\n\t97,\n\t114,\n\t105,\n\t111,\n\t102,\n\t105,\n\t114,\n\t109,\n\t97,\n\t99,\n\t111,\n\t115,\n\t116,\n\t111,\n\t102,\n\t105,\n\t99,\n\t104,\n\t97,\n\t112,\n\t108,\n\t97,\n\t116,\n\t97,\n\t104,\n\t111,\n\t103,\n\t97,\n\t114,\n\t97,\n\t114,\n\t116,\n\t101,\n\t115,\n\t108,\n\t101,\n\t121,\n\t101,\n\t115,\n\t97,\n\t113,\n\t117,\n\t101,\n\t108,\n\t109,\n\t117,\n\t115,\n\t101,\n\t111,\n\t98,\n\t97,\n\t115,\n\t101,\n\t115,\n\t112,\n\t111,\n\t99,\n\t111,\n\t115,\n\t109,\n\t105,\n\t116,\n\t97,\n\t100,\n\t99,\n\t105,\n\t101,\n\t108,\n\t111,\n\t99,\n\t104,\n\t105,\n\t99,\n\t111,\n\t109,\n\t105,\n\t101,\n\t100,\n\t111,\n\t103,\n\t97,\n\t110,\n\t97,\n\t114,\n\t115,\n\t97,\n\t110,\n\t116,\n\t111,\n\t101,\n\t116,\n\t97,\n\t112,\n\t97,\n\t100,\n\t101,\n\t98,\n\t101,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t97,\n\t114,\n\t101,\n\t100,\n\t101,\n\t115,\n\t115,\n\t105,\n\t101,\n\t116,\n\t101,\n\t99,\n\t111,\n\t114,\n\t116,\n\t101,\n\t99,\n\t111,\n\t114,\n\t101,\n\t97,\n\t100,\n\t117,\n\t100,\n\t97,\n\t115,\n\t100,\n\t101,\n\t115,\n\t101,\n\t111,\n\t118,\n\t105,\n\t101,\n\t106,\n\t111,\n\t100,\n\t101,\n\t115,\n\t101,\n\t97,\n\t97,\n\t103,\n\t117,\n\t97,\n\t115,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t100,\n\t111,\n\t109,\n\t97,\n\t105,\n\t110,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t115,\n\t116,\n\t97,\n\t116,\n\t117,\n\t115,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t115,\n\t109,\n\t97,\n\t115,\n\t116,\n\t101,\n\t114,\n\t115,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t97,\n\t110,\n\t110,\n\t101,\n\t114,\n\t114,\n\t101,\n\t109,\n\t111,\n\t118,\n\t101,\n\t115,\n\t99,\n\t114,\n\t111,\n\t108,\n\t108,\n\t117,\n\t112,\n\t100,\n\t97,\n\t116,\n\t101,\n\t103,\n\t108,\n\t111,\n\t98,\n\t97,\n\t108,\n\t109,\n\t101,\n\t100,\n\t105,\n\t117,\n\t109,\n\t102,\n\t105,\n\t108,\n\t116,\n\t101,\n\t114,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t115,\n\t99,\n\t114,\n\t101,\n\t101,\n\t110,\n\t99,\n\t104,\n\t111,\n\t111,\n\t115,\n\t101,\n\t110,\n\t111,\n\t114,\n\t109,\n\t97,\n\t108,\n\t116,\n\t114,\n\t97,\n\t118,\n\t101,\n\t108,\n\t105,\n\t115,\n\t115,\n\t117,\n\t101,\n\t115,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t115,\n\t112,\n\t114,\n\t105,\n\t110,\n\t103,\n\t109,\n\t111,\n\t100,\n\t117,\n\t108,\n\t101,\n\t109,\n\t111,\n\t98,\n\t105,\n\t108,\n\t101,\n\t115,\n\t119,\n\t105,\n\t116,\n\t99,\n\t104,\n\t112,\n\t104,\n\t111,\n\t116,\n\t111,\n\t115,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t114,\n\t101,\n\t103,\n\t105,\n\t111,\n\t110,\n\t105,\n\t116,\n\t115,\n\t101,\n\t108,\n\t102,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t108,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t99,\n\t111,\n\t108,\n\t117,\n\t109,\n\t110,\n\t114,\n\t101,\n\t99,\n\t111,\n\t114,\n\t100,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t101,\n\t105,\n\t116,\n\t104,\n\t101,\n\t114,\n\t108,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t121,\n\t102,\n\t114,\n\t105,\n\t101,\n\t110,\n\t100,\n\t108,\n\t97,\n\t121,\n\t111,\n\t117,\n\t116,\n\t97,\n\t117,\n\t116,\n\t104,\n\t111,\n\t114,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t114,\n\t101,\n\t118,\n\t105,\n\t101,\n\t119,\n\t115,\n\t117,\n\t109,\n\t109,\n\t101,\n\t114,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t114,\n\t112,\n\t108,\n\t97,\n\t121,\n\t101,\n\t100,\n\t112,\n\t108,\n\t97,\n\t121,\n\t101,\n\t114,\n\t101,\n\t120,\n\t112,\n\t97,\n\t110,\n\t100,\n\t112,\n\t111,\n\t108,\n\t105,\n\t99,\n\t121,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t100,\n\t111,\n\t117,\n\t98,\n\t108,\n\t101,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t115,\n\t115,\n\t101,\n\t114,\n\t105,\n\t101,\n\t115,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t108,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t109,\n\t111,\n\t110,\n\t116,\n\t104,\n\t115,\n\t102,\n\t111,\n\t114,\n\t99,\n\t101,\n\t115,\n\t117,\n\t110,\n\t105,\n\t113,\n\t117,\n\t101,\n\t119,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t101,\n\t110,\n\t101,\n\t114,\n\t103,\n\t121,\n\t110,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t102,\n\t105,\n\t103,\n\t117,\n\t114,\n\t101,\n\t104,\n\t97,\n\t118,\n\t105,\n\t110,\n\t103,\n\t99,\n\t117,\n\t115,\n\t116,\n\t111,\n\t109,\n\t111,\n\t102,\n\t102,\n\t115,\n\t101,\n\t116,\n\t108,\n\t101,\n\t116,\n\t116,\n\t101,\n\t114,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t114,\n\t101,\n\t110,\n\t100,\n\t101,\n\t114,\n\t103,\n\t114,\n\t111,\n\t117,\n\t112,\n\t115,\n\t117,\n\t112,\n\t108,\n\t111,\n\t97,\n\t100,\n\t104,\n\t101,\n\t97,\n\t108,\n\t116,\n\t104,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t118,\n\t105,\n\t100,\n\t101,\n\t111,\n\t115,\n\t115,\n\t99,\n\t104,\n\t111,\n\t111,\n\t108,\n\t102,\n\t117,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t104,\n\t97,\n\t100,\n\t111,\n\t119,\n\t100,\n\t101,\n\t98,\n\t97,\n\t116,\n\t101,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t115,\n\t79,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t115,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t115,\n\t108,\n\t101,\n\t97,\n\t103,\n\t117,\n\t101,\n\t99,\n\t104,\n\t114,\n\t111,\n\t109,\n\t101,\n\t115,\n\t105,\n\t109,\n\t112,\n\t108,\n\t101,\n\t110,\n\t111,\n\t116,\n\t105,\n\t99,\n\t101,\n\t115,\n\t104,\n\t97,\n\t114,\n\t101,\n\t100,\n\t101,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t115,\n\t101,\n\t97,\n\t115,\n\t111,\n\t110,\n\t114,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t111,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t115,\n\t113,\n\t117,\n\t97,\n\t114,\n\t101,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t115,\n\t101,\n\t110,\n\t97,\n\t98,\n\t108,\n\t101,\n\t109,\n\t111,\n\t118,\n\t105,\n\t110,\n\t103,\n\t108,\n\t97,\n\t116,\n\t101,\n\t115,\n\t116,\n\t119,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t70,\n\t114,\n\t97,\n\t110,\n\t99,\n\t101,\n\t112,\n\t101,\n\t114,\n\t105,\n\t111,\n\t100,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t114,\n\t101,\n\t112,\n\t101,\n\t97,\n\t116,\n\t76,\n\t111,\n\t110,\n\t100,\n\t111,\n\t110,\n\t100,\n\t101,\n\t116,\n\t97,\n\t105,\n\t108,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t100,\n\t100,\n\t101,\n\t109,\n\t97,\n\t110,\n\t100,\n\t115,\n\t101,\n\t99,\n\t117,\n\t114,\n\t101,\n\t112,\n\t97,\n\t115,\n\t115,\n\t101,\n\t100,\n\t116,\n\t111,\n\t103,\n\t103,\n\t108,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t115,\n\t100,\n\t101,\n\t118,\n\t105,\n\t99,\n\t101,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t99,\n\t99,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t115,\n\t116,\n\t114,\n\t101,\n\t97,\n\t109,\n\t121,\n\t101,\n\t108,\n\t108,\n\t111,\n\t119,\n\t97,\n\t116,\n\t116,\n\t97,\n\t99,\n\t107,\n\t115,\n\t116,\n\t114,\n\t101,\n\t101,\n\t116,\n\t102,\n\t108,\n\t105,\n\t103,\n\t104,\n\t116,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t105,\n\t110,\n\t102,\n\t111,\n\t34,\n\t62,\n\t111,\n\t112,\n\t101,\n\t110,\n\t101,\n\t100,\n\t117,\n\t115,\n\t101,\n\t102,\n\t117,\n\t108,\n\t118,\n\t97,\n\t108,\n\t108,\n\t101,\n\t121,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t115,\n\t108,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t115,\n\t101,\n\t99,\n\t114,\n\t101,\n\t116,\n\t115,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t100,\n\t97,\n\t109,\n\t97,\n\t103,\n\t101,\n\t115,\n\t112,\n\t111,\n\t114,\n\t116,\n\t115,\n\t101,\n\t120,\n\t99,\n\t101,\n\t112,\n\t116,\n\t114,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t116,\n\t104,\n\t105,\n\t110,\n\t103,\n\t115,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t102,\n\t105,\n\t101,\n\t108,\n\t100,\n\t115,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t115,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t101,\n\t118,\n\t105,\n\t115,\n\t117,\n\t97,\n\t108,\n\t101,\n\t100,\n\t105,\n\t116,\n\t111,\n\t114,\n\t118,\n\t111,\n\t108,\n\t117,\n\t109,\n\t101,\n\t82,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t109,\n\t117,\n\t115,\n\t101,\n\t117,\n\t109,\n\t109,\n\t111,\n\t118,\n\t105,\n\t101,\n\t115,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t116,\n\t97,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t109,\n\t111,\n\t115,\n\t116,\n\t108,\n\t121,\n\t109,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t34,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t109,\n\t97,\n\t114,\n\t107,\n\t101,\n\t116,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t99,\n\t104,\n\t97,\n\t110,\n\t99,\n\t101,\n\t115,\n\t117,\n\t114,\n\t118,\n\t101,\n\t121,\n\t98,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t115,\n\t121,\n\t109,\n\t98,\n\t111,\n\t108,\n\t109,\n\t111,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t112,\n\t101,\n\t101,\n\t99,\n\t104,\n\t109,\n\t111,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t109,\n\t97,\n\t116,\n\t116,\n\t101,\n\t114,\n\t67,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t101,\n\t120,\n\t105,\n\t115,\n\t116,\n\t115,\n\t109,\n\t105,\n\t100,\n\t100,\n\t108,\n\t101,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t103,\n\t114,\n\t111,\n\t119,\n\t116,\n\t104,\n\t108,\n\t101,\n\t103,\n\t97,\n\t99,\n\t121,\n\t109,\n\t97,\n\t110,\n\t110,\n\t101,\n\t114,\n\t101,\n\t110,\n\t111,\n\t117,\n\t103,\n\t104,\n\t99,\n\t97,\n\t114,\n\t101,\n\t101,\n\t114,\n\t97,\n\t110,\n\t115,\n\t119,\n\t101,\n\t114,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t108,\n\t99,\n\t108,\n\t105,\n\t101,\n\t110,\n\t116,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t97,\n\t110,\n\t100,\n\t111,\n\t109,\n\t99,\n\t108,\n\t111,\n\t115,\n\t101,\n\t100,\n\t116,\n\t111,\n\t112,\n\t105,\n\t99,\n\t115,\n\t99,\n\t111,\n\t109,\n\t105,\n\t110,\n\t103,\n\t102,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t105,\n\t109,\n\t112,\n\t108,\n\t121,\n\t114,\n\t97,\n\t105,\n\t115,\n\t101,\n\t100,\n\t101,\n\t115,\n\t99,\n\t97,\n\t112,\n\t101,\n\t99,\n\t104,\n\t111,\n\t115,\n\t101,\n\t110,\n\t99,\n\t104,\n\t117,\n\t114,\n\t99,\n\t104,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t101,\n\t114,\n\t101,\n\t97,\n\t115,\n\t111,\n\t110,\n\t99,\n\t111,\n\t114,\n\t110,\n\t101,\n\t114,\n\t111,\n\t117,\n\t116,\n\t112,\n\t117,\n\t116,\n\t109,\n\t101,\n\t109,\n\t111,\n\t114,\n\t121,\n\t105,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t112,\n\t111,\n\t108,\n\t105,\n\t99,\n\t101,\n\t109,\n\t111,\n\t100,\n\t101,\n\t108,\n\t115,\n\t78,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t100,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t111,\n\t102,\n\t102,\n\t101,\n\t114,\n\t115,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t107,\n\t105,\n\t108,\n\t108,\n\t101,\n\t100,\n\t108,\n\t105,\n\t115,\n\t116,\n\t101,\n\t100,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t115,\n\t105,\n\t108,\n\t118,\n\t101,\n\t114,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t100,\n\t101,\n\t108,\n\t101,\n\t116,\n\t101,\n\t98,\n\t101,\n\t116,\n\t116,\n\t101,\n\t114,\n\t98,\n\t114,\n\t111,\n\t119,\n\t115,\n\t101,\n\t108,\n\t105,\n\t109,\n\t105,\n\t116,\n\t115,\n\t71,\n\t108,\n\t111,\n\t98,\n\t97,\n\t108,\n\t115,\n\t105,\n\t110,\n\t103,\n\t108,\n\t101,\n\t119,\n\t105,\n\t100,\n\t103,\n\t101,\n\t116,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t98,\n\t117,\n\t100,\n\t103,\n\t101,\n\t116,\n\t110,\n\t111,\n\t119,\n\t114,\n\t97,\n\t112,\n\t99,\n\t114,\n\t101,\n\t100,\n\t105,\n\t116,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t115,\n\t101,\n\t110,\n\t103,\n\t105,\n\t110,\n\t101,\n\t115,\n\t97,\n\t102,\n\t101,\n\t116,\n\t121,\n\t99,\n\t104,\n\t111,\n\t105,\n\t99,\n\t101,\n\t115,\n\t112,\n\t105,\n\t114,\n\t105,\n\t116,\n\t45,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t112,\n\t114,\n\t101,\n\t97,\n\t100,\n\t109,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t110,\n\t101,\n\t101,\n\t100,\n\t101,\n\t100,\n\t114,\n\t117,\n\t115,\n\t115,\n\t105,\n\t97,\n\t112,\n\t108,\n\t101,\n\t97,\n\t115,\n\t101,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t116,\n\t83,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t98,\n\t114,\n\t111,\n\t107,\n\t101,\n\t110,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t115,\n\t99,\n\t104,\n\t97,\n\t114,\n\t103,\n\t101,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t101,\n\t102,\n\t97,\n\t99,\n\t116,\n\t111,\n\t114,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t45,\n\t98,\n\t97,\n\t115,\n\t101,\n\t100,\n\t116,\n\t104,\n\t101,\n\t111,\n\t114,\n\t121,\n\t99,\n\t111,\n\t110,\n\t102,\n\t105,\n\t103,\n\t97,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t119,\n\t111,\n\t114,\n\t107,\n\t101,\n\t100,\n\t104,\n\t101,\n\t108,\n\t112,\n\t101,\n\t100,\n\t67,\n\t104,\n\t117,\n\t114,\n\t99,\n\t104,\n\t105,\n\t109,\n\t112,\n\t97,\n\t99,\n\t116,\n\t115,\n\t104,\n\t111,\n\t117,\n\t108,\n\t100,\n\t97,\n\t108,\n\t119,\n\t97,\n\t121,\n\t115,\n\t108,\n\t111,\n\t103,\n\t111,\n\t34,\n\t32,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t108,\n\t105,\n\t115,\n\t116,\n\t34,\n\t62,\n\t41,\n\t123,\n\t118,\n\t97,\n\t114,\n\t32,\n\t112,\n\t114,\n\t101,\n\t102,\n\t105,\n\t120,\n\t111,\n\t114,\n\t97,\n\t110,\n\t103,\n\t101,\n\t72,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t46,\n\t112,\n\t117,\n\t115,\n\t104,\n\t40,\n\t99,\n\t111,\n\t117,\n\t112,\n\t108,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t101,\n\t110,\n\t98,\n\t114,\n\t105,\n\t100,\n\t103,\n\t101,\n\t108,\n\t97,\n\t117,\n\t110,\n\t99,\n\t104,\n\t82,\n\t101,\n\t118,\n\t105,\n\t101,\n\t119,\n\t116,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t108,\n\t105,\n\t116,\n\t116,\n\t108,\n\t101,\n\t100,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t66,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t98,\n\t101,\n\t97,\n\t117,\n\t116,\n\t121,\n\t116,\n\t104,\n\t101,\n\t109,\n\t101,\n\t115,\n\t102,\n\t111,\n\t114,\n\t103,\n\t111,\n\t116,\n\t83,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t97,\n\t110,\n\t99,\n\t104,\n\t111,\n\t114,\n\t97,\n\t108,\n\t109,\n\t111,\n\t115,\n\t116,\n\t108,\n\t111,\n\t97,\n\t100,\n\t101,\n\t100,\n\t67,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t115,\n\t116,\n\t114,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t108,\n\t111,\n\t97,\n\t100,\n\t77,\n\t111,\n\t98,\n\t105,\n\t108,\n\t101,\n\t105,\n\t110,\n\t99,\n\t111,\n\t109,\n\t101,\n\t115,\n\t117,\n\t112,\n\t112,\n\t108,\n\t121,\n\t83,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t115,\n\t118,\n\t105,\n\t101,\n\t119,\n\t101,\n\t100,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t99,\n\t111,\n\t117,\n\t114,\n\t115,\n\t101,\n\t65,\n\t98,\n\t111,\n\t117,\n\t116,\n\t32,\n\t105,\n\t115,\n\t108,\n\t97,\n\t110,\n\t100,\n\t60,\n\t104,\n\t116,\n\t109,\n\t108,\n\t32,\n\t99,\n\t111,\n\t111,\n\t107,\n\t105,\n\t101,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t97,\n\t109,\n\t97,\n\t122,\n\t111,\n\t110,\n\t109,\n\t111,\n\t100,\n\t101,\n\t114,\n\t110,\n\t97,\n\t100,\n\t118,\n\t105,\n\t99,\n\t101,\n\t105,\n\t110,\n\t60,\n\t47,\n\t97,\n\t62,\n\t58,\n\t32,\n\t84,\n\t104,\n\t101,\n\t32,\n\t100,\n\t105,\n\t97,\n\t108,\n\t111,\n\t103,\n\t104,\n\t111,\n\t117,\n\t115,\n\t101,\n\t115,\n\t66,\n\t69,\n\t71,\n\t73,\n\t78,\n\t32,\n\t77,\n\t101,\n\t120,\n\t105,\n\t99,\n\t111,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t115,\n\t99,\n\t101,\n\t110,\n\t116,\n\t114,\n\t101,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t73,\n\t115,\n\t108,\n\t97,\n\t110,\n\t100,\n\t97,\n\t115,\n\t115,\n\t101,\n\t116,\n\t115,\n\t69,\n\t109,\n\t112,\n\t105,\n\t114,\n\t101,\n\t83,\n\t99,\n\t104,\n\t111,\n\t111,\n\t108,\n\t101,\n\t102,\n\t102,\n\t111,\n\t114,\n\t116,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t110,\n\t101,\n\t97,\n\t114,\n\t108,\n\t121,\n\t109,\n\t97,\n\t110,\n\t117,\n\t97,\n\t108,\n\t83,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t46,\n\t10,\n\t10,\n\t79,\n\t110,\n\t101,\n\t106,\n\t111,\n\t105,\n\t110,\n\t101,\n\t100,\n\t109,\n\t101,\n\t110,\n\t117,\n\t34,\n\t62,\n\t80,\n\t104,\n\t105,\n\t108,\n\t105,\n\t112,\n\t97,\n\t119,\n\t97,\n\t114,\n\t100,\n\t115,\n\t104,\n\t97,\n\t110,\n\t100,\n\t108,\n\t101,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t79,\n\t102,\n\t102,\n\t105,\n\t99,\n\t101,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t115,\n\t107,\n\t105,\n\t108,\n\t108,\n\t115,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t83,\n\t112,\n\t111,\n\t114,\n\t116,\n\t115,\n\t100,\n\t101,\n\t103,\n\t114,\n\t101,\n\t101,\n\t119,\n\t101,\n\t101,\n\t107,\n\t108,\n\t121,\n\t32,\n\t40,\n\t101,\n\t46,\n\t103,\n\t46,\n\t98,\n\t101,\n\t104,\n\t105,\n\t110,\n\t100,\n\t100,\n\t111,\n\t99,\n\t116,\n\t111,\n\t114,\n\t108,\n\t111,\n\t103,\n\t103,\n\t101,\n\t100,\n\t117,\n\t110,\n\t105,\n\t116,\n\t101,\n\t100,\n\t60,\n\t47,\n\t98,\n\t62,\n\t60,\n\t47,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t115,\n\t112,\n\t108,\n\t97,\n\t110,\n\t116,\n\t115,\n\t97,\n\t115,\n\t115,\n\t105,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t105,\n\t115,\n\t116,\n\t105,\n\t115,\n\t115,\n\t117,\n\t101,\n\t100,\n\t51,\n\t48,\n\t48,\n\t112,\n\t120,\n\t124,\n\t99,\n\t97,\n\t110,\n\t97,\n\t100,\n\t97,\n\t97,\n\t103,\n\t101,\n\t110,\n\t99,\n\t121,\n\t115,\n\t99,\n\t104,\n\t101,\n\t109,\n\t101,\n\t114,\n\t101,\n\t109,\n\t97,\n\t105,\n\t110,\n\t66,\n\t114,\n\t97,\n\t122,\n\t105,\n\t108,\n\t115,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t108,\n\t111,\n\t103,\n\t111,\n\t34,\n\t62,\n\t98,\n\t101,\n\t121,\n\t111,\n\t110,\n\t100,\n\t45,\n\t115,\n\t99,\n\t97,\n\t108,\n\t101,\n\t97,\n\t99,\n\t99,\n\t101,\n\t112,\n\t116,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t100,\n\t109,\n\t97,\n\t114,\n\t105,\n\t110,\n\t101,\n\t70,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t99,\n\t97,\n\t109,\n\t101,\n\t114,\n\t97,\n\t60,\n\t47,\n\t104,\n\t49,\n\t62,\n\t10,\n\t95,\n\t102,\n\t111,\n\t114,\n\t109,\n\t34,\n\t108,\n\t101,\n\t97,\n\t118,\n\t101,\n\t115,\n\t115,\n\t116,\n\t114,\n\t101,\n\t115,\n\t115,\n\t34,\n\t32,\n\t47,\n\t62,\n\t13,\n\t10,\n\t46,\n\t103,\n\t105,\n\t102,\n\t34,\n\t32,\n\t111,\n\t110,\n\t108,\n\t111,\n\t97,\n\t100,\n\t108,\n\t111,\n\t97,\n\t100,\n\t101,\n\t114,\n\t79,\n\t120,\n\t102,\n\t111,\n\t114,\n\t100,\n\t115,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t115,\n\t117,\n\t114,\n\t118,\n\t105,\n\t118,\n\t108,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t102,\n\t101,\n\t109,\n\t97,\n\t108,\n\t101,\n\t68,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t115,\n\t105,\n\t122,\n\t101,\n\t61,\n\t34,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t108,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t62,\n\t108,\n\t101,\n\t118,\n\t101,\n\t108,\n\t115,\n\t116,\n\t104,\n\t97,\n\t110,\n\t107,\n\t115,\n\t104,\n\t105,\n\t103,\n\t104,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t99,\n\t101,\n\t100,\n\t97,\n\t110,\n\t105,\n\t109,\n\t97,\n\t108,\n\t97,\n\t110,\n\t121,\n\t111,\n\t110,\n\t101,\n\t65,\n\t102,\n\t114,\n\t105,\n\t99,\n\t97,\n\t97,\n\t103,\n\t114,\n\t101,\n\t101,\n\t100,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t80,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t60,\n\t98,\n\t114,\n\t32,\n\t47,\n\t62,\n\t119,\n\t111,\n\t110,\n\t100,\n\t101,\n\t114,\n\t112,\n\t114,\n\t105,\n\t99,\n\t101,\n\t115,\n\t116,\n\t117,\n\t114,\n\t110,\n\t101,\n\t100,\n\t124,\n\t124,\n\t32,\n\t123,\n\t125,\n\t59,\n\t109,\n\t97,\n\t105,\n\t110,\n\t34,\n\t62,\n\t105,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t115,\n\t117,\n\t110,\n\t100,\n\t97,\n\t121,\n\t119,\n\t114,\n\t97,\n\t112,\n\t34,\n\t62,\n\t102,\n\t97,\n\t105,\n\t108,\n\t101,\n\t100,\n\t99,\n\t101,\n\t110,\n\t115,\n\t117,\n\t115,\n\t109,\n\t105,\n\t110,\n\t117,\n\t116,\n\t101,\n\t98,\n\t101,\n\t97,\n\t99,\n\t111,\n\t110,\n\t113,\n\t117,\n\t111,\n\t116,\n\t101,\n\t115,\n\t49,\n\t53,\n\t48,\n\t112,\n\t120,\n\t124,\n\t101,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t114,\n\t101,\n\t109,\n\t111,\n\t116,\n\t101,\n\t101,\n\t109,\n\t97,\n\t105,\n\t108,\n\t34,\n\t108,\n\t105,\n\t110,\n\t107,\n\t101,\n\t100,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t59,\n\t115,\n\t105,\n\t103,\n\t110,\n\t97,\n\t108,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t108,\n\t49,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t115,\n\t105,\n\t103,\n\t110,\n\t117,\n\t112,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t101,\n\t102,\n\t108,\n\t111,\n\t97,\n\t116,\n\t58,\n\t46,\n\t112,\n\t110,\n\t103,\n\t34,\n\t32,\n\t102,\n\t111,\n\t114,\n\t117,\n\t109,\n\t46,\n\t65,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t112,\n\t97,\n\t112,\n\t101,\n\t114,\n\t115,\n\t115,\n\t111,\n\t117,\n\t110,\n\t100,\n\t115,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t100,\n\t72,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t115,\n\t108,\n\t105,\n\t100,\n\t101,\n\t114,\n\t85,\n\t84,\n\t70,\n\t45,\n\t56,\n\t34,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t32,\n\t66,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t46,\n\t32,\n\t87,\n\t105,\n\t116,\n\t104,\n\t115,\n\t116,\n\t117,\n\t100,\n\t105,\n\t111,\n\t111,\n\t119,\n\t110,\n\t101,\n\t114,\n\t115,\n\t109,\n\t97,\n\t110,\n\t97,\n\t103,\n\t101,\n\t112,\n\t114,\n\t111,\n\t102,\n\t105,\n\t116,\n\t106,\n\t81,\n\t117,\n\t101,\n\t114,\n\t121,\n\t97,\n\t110,\n\t110,\n\t117,\n\t97,\n\t108,\n\t112,\n\t97,\n\t114,\n\t97,\n\t109,\n\t115,\n\t98,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t102,\n\t97,\n\t109,\n\t111,\n\t117,\n\t115,\n\t103,\n\t111,\n\t111,\n\t103,\n\t108,\n\t101,\n\t108,\n\t111,\n\t110,\n\t103,\n\t101,\n\t114,\n\t105,\n\t43,\n\t43,\n\t41,\n\t32,\n\t123,\n\t105,\n\t115,\n\t114,\n\t97,\n\t101,\n\t108,\n\t115,\n\t97,\n\t121,\n\t105,\n\t110,\n\t103,\n\t100,\n\t101,\n\t99,\n\t105,\n\t100,\n\t101,\n\t104,\n\t111,\n\t109,\n\t101,\n\t34,\n\t62,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t101,\n\t110,\n\t115,\n\t117,\n\t114,\n\t101,\n\t98,\n\t114,\n\t97,\n\t110,\n\t99,\n\t104,\n\t112,\n\t105,\n\t101,\n\t99,\n\t101,\n\t115,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t59,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t100,\n\t116,\n\t111,\n\t112,\n\t34,\n\t62,\n\t60,\n\t114,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t115,\n\t105,\n\t122,\n\t101,\n\t45,\n\t45,\n\t38,\n\t103,\n\t116,\n\t59,\n\t112,\n\t97,\n\t99,\n\t105,\n\t116,\n\t121,\n\t115,\n\t101,\n\t120,\n\t117,\n\t97,\n\t108,\n\t98,\n\t117,\n\t114,\n\t101,\n\t97,\n\t117,\n\t46,\n\t106,\n\t112,\n\t103,\n\t34,\n\t32,\n\t49,\n\t48,\n\t44,\n\t48,\n\t48,\n\t48,\n\t111,\n\t98,\n\t116,\n\t97,\n\t105,\n\t110,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t115,\n\t97,\n\t109,\n\t111,\n\t117,\n\t110,\n\t116,\n\t44,\n\t32,\n\t73,\n\t110,\n\t99,\n\t46,\n\t99,\n\t111,\n\t109,\n\t101,\n\t100,\n\t121,\n\t109,\n\t101,\n\t110,\n\t117,\n\t34,\n\t32,\n\t108,\n\t121,\n\t114,\n\t105,\n\t99,\n\t115,\n\t116,\n\t111,\n\t100,\n\t97,\n\t121,\n\t46,\n\t105,\n\t110,\n\t100,\n\t101,\n\t101,\n\t100,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t121,\n\t95,\n\t108,\n\t111,\n\t103,\n\t111,\n\t46,\n\t70,\n\t97,\n\t109,\n\t105,\n\t108,\n\t121,\n\t108,\n\t111,\n\t111,\n\t107,\n\t101,\n\t100,\n\t77,\n\t97,\n\t114,\n\t107,\n\t101,\n\t116,\n\t108,\n\t115,\n\t101,\n\t32,\n\t105,\n\t102,\n\t80,\n\t108,\n\t97,\n\t121,\n\t101,\n\t114,\n\t116,\n\t117,\n\t114,\n\t107,\n\t101,\n\t121,\n\t41,\n\t59,\n\t118,\n\t97,\n\t114,\n\t32,\n\t102,\n\t111,\n\t114,\n\t101,\n\t115,\n\t116,\n\t103,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t101,\n\t114,\n\t114,\n\t111,\n\t114,\n\t115,\n\t68,\n\t111,\n\t109,\n\t97,\n\t105,\n\t110,\n\t125,\n\t101,\n\t108,\n\t115,\n\t101,\n\t123,\n\t105,\n\t110,\n\t115,\n\t101,\n\t114,\n\t116,\n\t66,\n\t108,\n\t111,\n\t103,\n\t60,\n\t47,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t108,\n\t111,\n\t103,\n\t105,\n\t110,\n\t46,\n\t102,\n\t97,\n\t115,\n\t116,\n\t101,\n\t114,\n\t97,\n\t103,\n\t101,\n\t110,\n\t116,\n\t115,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t32,\n\t49,\n\t48,\n\t112,\n\t120,\n\t32,\n\t48,\n\t112,\n\t114,\n\t97,\n\t103,\n\t109,\n\t97,\n\t102,\n\t114,\n\t105,\n\t100,\n\t97,\n\t121,\n\t106,\n\t117,\n\t110,\n\t105,\n\t111,\n\t114,\n\t100,\n\t111,\n\t108,\n\t108,\n\t97,\n\t114,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t100,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t115,\n\t112,\n\t108,\n\t117,\n\t103,\n\t105,\n\t110,\n\t53,\n\t44,\n\t48,\n\t48,\n\t48,\n\t32,\n\t112,\n\t97,\n\t103,\n\t101,\n\t34,\n\t62,\n\t98,\n\t111,\n\t115,\n\t116,\n\t111,\n\t110,\n\t46,\n\t116,\n\t101,\n\t115,\n\t116,\n\t40,\n\t97,\n\t118,\n\t97,\n\t116,\n\t97,\n\t114,\n\t116,\n\t101,\n\t115,\n\t116,\n\t101,\n\t100,\n\t95,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t102,\n\t111,\n\t114,\n\t117,\n\t109,\n\t115,\n\t115,\n\t99,\n\t104,\n\t101,\n\t109,\n\t97,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t44,\n\t102,\n\t105,\n\t108,\n\t108,\n\t101,\n\t100,\n\t115,\n\t104,\n\t97,\n\t114,\n\t101,\n\t115,\n\t114,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t97,\n\t108,\n\t101,\n\t114,\n\t116,\n\t40,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t83,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t108,\n\t105,\n\t110,\n\t101,\n\t34,\n\t62,\n\t98,\n\t111,\n\t100,\n\t121,\n\t34,\n\t62,\n\t10,\n\t42,\n\t32,\n\t84,\n\t104,\n\t101,\n\t84,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t115,\n\t101,\n\t101,\n\t105,\n\t110,\n\t103,\n\t106,\n\t101,\n\t114,\n\t115,\n\t101,\n\t121,\n\t78,\n\t101,\n\t119,\n\t115,\n\t60,\n\t47,\n\t118,\n\t101,\n\t114,\n\t105,\n\t102,\n\t121,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t116,\n\t105,\n\t110,\n\t106,\n\t117,\n\t114,\n\t121,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t67,\n\t111,\n\t111,\n\t107,\n\t105,\n\t101,\n\t83,\n\t84,\n\t65,\n\t82,\n\t84,\n\t32,\n\t97,\n\t99,\n\t114,\n\t111,\n\t115,\n\t115,\n\t95,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t116,\n\t104,\n\t114,\n\t101,\n\t97,\n\t100,\n\t110,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t112,\n\t111,\n\t99,\n\t107,\n\t101,\n\t116,\n\t98,\n\t111,\n\t120,\n\t34,\n\t62,\n\t10,\n\t83,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t32,\n\t68,\n\t97,\n\t118,\n\t105,\n\t100,\n\t99,\n\t97,\n\t110,\n\t99,\n\t101,\n\t114,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t115,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t100,\n\t65,\n\t112,\n\t114,\n\t105,\n\t108,\n\t32,\n\t114,\n\t101,\n\t97,\n\t108,\n\t108,\n\t121,\n\t100,\n\t114,\n\t105,\n\t118,\n\t101,\n\t114,\n\t105,\n\t116,\n\t101,\n\t109,\n\t34,\n\t62,\n\t109,\n\t111,\n\t114,\n\t101,\n\t34,\n\t62,\n\t98,\n\t111,\n\t97,\n\t114,\n\t100,\n\t115,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t115,\n\t99,\n\t97,\n\t109,\n\t112,\n\t117,\n\t115,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t32,\n\t124,\n\t124,\n\t32,\n\t91,\n\t93,\n\t59,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t46,\n\t103,\n\t117,\n\t105,\n\t116,\n\t97,\n\t114,\n\t102,\n\t105,\n\t110,\n\t105,\n\t115,\n\t104,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t115,\n\t104,\n\t111,\n\t119,\n\t101,\n\t100,\n\t79,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t46,\n\t112,\n\t104,\n\t112,\n\t34,\n\t32,\n\t97,\n\t115,\n\t115,\n\t117,\n\t109,\n\t101,\n\t108,\n\t97,\n\t121,\n\t101,\n\t114,\n\t115,\n\t119,\n\t105,\n\t108,\n\t115,\n\t111,\n\t110,\n\t115,\n\t116,\n\t111,\n\t114,\n\t101,\n\t115,\n\t114,\n\t101,\n\t108,\n\t105,\n\t101,\n\t102,\n\t115,\n\t119,\n\t101,\n\t100,\n\t101,\n\t110,\n\t67,\n\t117,\n\t115,\n\t116,\n\t111,\n\t109,\n\t101,\n\t97,\n\t115,\n\t105,\n\t108,\n\t121,\n\t32,\n\t121,\n\t111,\n\t117,\n\t114,\n\t32,\n\t83,\n\t116,\n\t114,\n\t105,\n\t110,\n\t103,\n\t10,\n\t10,\n\t87,\n\t104,\n\t105,\n\t108,\n\t116,\n\t97,\n\t121,\n\t108,\n\t111,\n\t114,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t58,\n\t114,\n\t101,\n\t115,\n\t111,\n\t114,\n\t116,\n\t102,\n\t114,\n\t101,\n\t110,\n\t99,\n\t104,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t34,\n\t41,\n\t32,\n\t43,\n\t32,\n\t34,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t98,\n\t117,\n\t121,\n\t105,\n\t110,\n\t103,\n\t98,\n\t114,\n\t97,\n\t110,\n\t100,\n\t115,\n\t77,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t110,\n\t97,\n\t109,\n\t101,\n\t34,\n\t62,\n\t111,\n\t112,\n\t112,\n\t105,\n\t110,\n\t103,\n\t115,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t53,\n\t112,\n\t120,\n\t59,\n\t34,\n\t62,\n\t118,\n\t115,\n\t112,\n\t97,\n\t99,\n\t101,\n\t112,\n\t111,\n\t115,\n\t116,\n\t101,\n\t114,\n\t109,\n\t97,\n\t106,\n\t111,\n\t114,\n\t32,\n\t99,\n\t111,\n\t102,\n\t102,\n\t101,\n\t101,\n\t109,\n\t97,\n\t114,\n\t116,\n\t105,\n\t110,\n\t109,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t104,\n\t97,\n\t112,\n\t112,\n\t101,\n\t110,\n\t60,\n\t47,\n\t110,\n\t97,\n\t118,\n\t62,\n\t107,\n\t97,\n\t110,\n\t115,\n\t97,\n\t115,\n\t108,\n\t105,\n\t110,\n\t107,\n\t34,\n\t62,\n\t73,\n\t109,\n\t97,\n\t103,\n\t101,\n\t115,\n\t61,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t119,\n\t104,\n\t105,\n\t108,\n\t101,\n\t32,\n\t104,\n\t115,\n\t112,\n\t97,\n\t99,\n\t101,\n\t48,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t32,\n\t10,\n\t10,\n\t73,\n\t110,\n\t32,\n\t32,\n\t112,\n\t111,\n\t119,\n\t101,\n\t114,\n\t80,\n\t111,\n\t108,\n\t115,\n\t107,\n\t105,\n\t45,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t106,\n\t111,\n\t114,\n\t100,\n\t97,\n\t110,\n\t66,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t83,\n\t116,\n\t97,\n\t114,\n\t116,\n\t32,\n\t45,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t50,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t110,\n\t101,\n\t119,\n\t115,\n\t34,\n\t62,\n\t48,\n\t49,\n\t46,\n\t106,\n\t112,\n\t103,\n\t79,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t45,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t109,\n\t105,\n\t108,\n\t108,\n\t101,\n\t114,\n\t115,\n\t101,\n\t110,\n\t105,\n\t111,\n\t114,\n\t73,\n\t83,\n\t66,\n\t78,\n\t32,\n\t48,\n\t48,\n\t44,\n\t48,\n\t48,\n\t48,\n\t32,\n\t103,\n\t117,\n\t105,\n\t100,\n\t101,\n\t115,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t41,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t112,\n\t97,\n\t105,\n\t114,\n\t46,\n\t120,\n\t109,\n\t108,\n\t34,\n\t32,\n\t32,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t115,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t45,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t114,\n\t101,\n\t103,\n\t69,\n\t120,\n\t112,\n\t58,\n\t104,\n\t111,\n\t118,\n\t101,\n\t114,\n\t119,\n\t105,\n\t116,\n\t104,\n\t105,\n\t110,\n\t118,\n\t105,\n\t114,\n\t103,\n\t105,\n\t110,\n\t112,\n\t104,\n\t111,\n\t110,\n\t101,\n\t115,\n\t60,\n\t47,\n\t116,\n\t114,\n\t62,\n\t13,\n\t117,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t10,\n\t9,\n\t118,\n\t97,\n\t114,\n\t32,\n\t62,\n\t39,\n\t41,\n\t59,\n\t10,\n\t9,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t10,\n\t60,\n\t47,\n\t116,\n\t114,\n\t62,\n\t10,\n\t98,\n\t97,\n\t104,\n\t97,\n\t115,\n\t97,\n\t98,\n\t114,\n\t97,\n\t115,\n\t105,\n\t108,\n\t103,\n\t97,\n\t108,\n\t101,\n\t103,\n\t111,\n\t109,\n\t97,\n\t103,\n\t121,\n\t97,\n\t114,\n\t112,\n\t111,\n\t108,\n\t115,\n\t107,\n\t105,\n\t115,\n\t114,\n\t112,\n\t115,\n\t107,\n\t105,\n\t216,\n\t177,\n\t216,\n\t175,\n\t217,\n\t136,\n\t228,\n\t184,\n\t173,\n\t230,\n\t150,\n\t135,\n\t231,\n\t174,\n\t128,\n\t228,\n\t189,\n\t147,\n\t231,\n\t185,\n\t129,\n\t233,\n\t171,\n\t148,\n\t228,\n\t191,\n\t161,\n\t230,\n\t129,\n\t175,\n\t228,\n\t184,\n\t173,\n\t229,\n\t155,\n\t189,\n\t230,\n\t136,\n\t145,\n\t228,\n\t187,\n\t172,\n\t228,\n\t184,\n\t128,\n\t228,\n\t184,\n\t170,\n\t229,\n\t133,\n\t172,\n\t229,\n\t143,\n\t184,\n\t231,\n\t174,\n\t161,\n\t231,\n\t144,\n\t134,\n\t232,\n\t174,\n\t186,\n\t229,\n\t157,\n\t155,\n\t229,\n\t143,\n\t175,\n\t228,\n\t187,\n\t165,\n\t230,\n\t156,\n\t141,\n\t229,\n\t138,\n\t161,\n\t230,\n\t151,\n\t182,\n\t233,\n\t151,\n\t180,\n\t228,\n\t184,\n\t170,\n\t228,\n\t186,\n\t186,\n\t228,\n\t186,\n\t167,\n\t229,\n\t147,\n\t129,\n\t232,\n\t135,\n\t170,\n\t229,\n\t183,\n\t177,\n\t228,\n\t188,\n\t129,\n\t228,\n\t184,\n\t154,\n\t230,\n\t159,\n\t165,\n\t231,\n\t156,\n\t139,\n\t229,\n\t183,\n\t165,\n\t228,\n\t189,\n\t156,\n\t232,\n\t129,\n\t148,\n\t231,\n\t179,\n\t187,\n\t230,\n\t178,\n\t161,\n\t230,\n\t156,\n\t137,\n\t231,\n\t189,\n\t145,\n\t231,\n\t171,\n\t153,\n\t230,\n\t137,\n\t128,\n\t230,\n\t156,\n\t137,\n\t232,\n\t175,\n\t132,\n\t232,\n\t174,\n\t186,\n\t228,\n\t184,\n\t173,\n\t229,\n\t191,\n\t131,\n\t230,\n\t150,\n\t135,\n\t231,\n\t171,\n\t160,\n\t231,\n\t148,\n\t168,\n\t230,\n\t136,\n\t183,\n\t233,\n\t166,\n\t150,\n\t233,\n\t161,\n\t181,\n\t228,\n\t189,\n\t156,\n\t232,\n\t128,\n\t133,\n\t230,\n\t138,\n\t128,\n\t230,\n\t156,\n\t175,\n\t233,\n\t151,\n\t174,\n\t233,\n\t162,\n\t152,\n\t231,\n\t155,\n\t184,\n\t229,\n\t133,\n\t179,\n\t228,\n\t184,\n\t139,\n\t232,\n\t189,\n\t189,\n\t230,\n\t144,\n\t156,\n\t231,\n\t180,\n\t162,\n\t228,\n\t189,\n\t191,\n\t231,\n\t148,\n\t168,\n\t232,\n\t189,\n\t175,\n\t228,\n\t187,\n\t182,\n\t229,\n\t156,\n\t168,\n\t231,\n\t186,\n\t191,\n\t228,\n\t184,\n\t187,\n\t233,\n\t162,\n\t152,\n\t232,\n\t181,\n\t132,\n\t230,\n\t150,\n\t153,\n\t232,\n\t167,\n\t134,\n\t233,\n\t162,\n\t145,\n\t229,\n\t155,\n\t158,\n\t229,\n\t164,\n\t141,\n\t230,\n\t179,\n\t168,\n\t229,\n\t134,\n\t140,\n\t231,\n\t189,\n\t145,\n\t231,\n\t187,\n\t156,\n\t230,\n\t148,\n\t182,\n\t232,\n\t151,\n\t143,\n\t229,\n\t134,\n\t133,\n\t229,\n\t174,\n\t185,\n\t230,\n\t142,\n\t168,\n\t232,\n\t141,\n\t144,\n\t229,\n\t184,\n\t130,\n\t229,\n\t156,\n\t186,\n\t230,\n\t182,\n\t136,\n\t230,\n\t129,\n\t175,\n\t231,\n\t169,\n\t186,\n\t233,\n\t151,\n\t180,\n\t229,\n\t143,\n\t145,\n\t229,\n\t184,\n\t131,\n\t228,\n\t187,\n\t128,\n\t228,\n\t185,\n\t136,\n\t229,\n\t165,\n\t189,\n\t229,\n\t143,\n\t139,\n\t231,\n\t148,\n\t159,\n\t230,\n\t180,\n\t187,\n\t229,\n\t155,\n\t190,\n\t231,\n\t137,\n\t135,\n\t229,\n\t143,\n\t145,\n\t229,\n\t177,\n\t149,\n\t229,\n\t166,\n\t130,\n\t230,\n\t158,\n\t156,\n\t230,\n\t137,\n\t139,\n\t230,\n\t156,\n\t186,\n\t230,\n\t150,\n\t176,\n\t233,\n\t151,\n\t187,\n\t230,\n\t156,\n\t128,\n\t230,\n\t150,\n\t176,\n\t230,\n\t150,\n\t185,\n\t229,\n\t188,\n\t143,\n\t229,\n\t140,\n\t151,\n\t228,\n\t186,\n\t172,\n\t230,\n\t143,\n\t144,\n\t228,\n\t190,\n\t155,\n\t229,\n\t133,\n\t179,\n\t228,\n\t186,\n\t142,\n\t230,\n\t155,\n\t180,\n\t229,\n\t164,\n\t154,\n\t232,\n\t191,\n\t153,\n\t228,\n\t184,\n\t170,\n\t231,\n\t179,\n\t187,\n\t231,\n\t187,\n\t159,\n\t231,\n\t159,\n\t165,\n\t233,\n\t129,\n\t147,\n\t230,\n\t184,\n\t184,\n\t230,\n\t136,\n\t143,\n\t229,\n\t185,\n\t191,\n\t229,\n\t145,\n\t138,\n\t229,\n\t133,\n\t182,\n\t228,\n\t187,\n\t150,\n\t229,\n\t143,\n\t145,\n\t232,\n\t161,\n\t168,\n\t229,\n\t174,\n\t137,\n\t229,\n\t133,\n\t168,\n\t231,\n\t172,\n\t172,\n\t228,\n\t184,\n\t128,\n\t228,\n\t188,\n\t154,\n\t229,\n\t145,\n\t152,\n\t232,\n\t191,\n\t155,\n\t232,\n\t161,\n\t140,\n\t231,\n\t130,\n\t185,\n\t229,\n\t135,\n\t187,\n\t231,\n\t137,\n\t136,\n\t230,\n\t157,\n\t131,\n\t231,\n\t148,\n\t181,\n\t229,\n\t173,\n\t144,\n\t228,\n\t184,\n\t150,\n\t231,\n\t149,\n\t140,\n\t232,\n\t174,\n\t190,\n\t232,\n\t174,\n\t161,\n\t229,\n\t133,\n\t141,\n\t232,\n\t180,\n\t185,\n\t230,\n\t149,\n\t153,\n\t232,\n\t130,\n\t178,\n\t229,\n\t138,\n\t160,\n\t229,\n\t133,\n\t165,\n\t230,\n\t180,\n\t187,\n\t229,\n\t138,\n\t168,\n\t228,\n\t187,\n\t150,\n\t228,\n\t187,\n\t172,\n\t229,\n\t149,\n\t134,\n\t229,\n\t147,\n\t129,\n\t229,\n\t141,\n\t154,\n\t229,\n\t174,\n\t162,\n\t231,\n\t142,\n\t176,\n\t229,\n\t156,\n\t168,\n\t228,\n\t184,\n\t138,\n\t230,\n\t181,\n\t183,\n\t229,\n\t166,\n\t130,\n\t228,\n\t189,\n\t149,\n\t229,\n\t183,\n\t178,\n\t231,\n\t187,\n\t143,\n\t231,\n\t149,\n\t153,\n\t232,\n\t168,\n\t128,\n\t232,\n\t175,\n\t166,\n\t231,\n\t187,\n\t134,\n\t231,\n\t164,\n\t190,\n\t229,\n\t140,\n\t186,\n\t231,\n\t153,\n\t187,\n\t229,\n\t189,\n\t149,\n\t230,\n\t156,\n\t172,\n\t231,\n\t171,\n\t153,\n\t233,\n\t156,\n\t128,\n\t232,\n\t166,\n\t129,\n\t228,\n\t187,\n\t183,\n\t230,\n\t160,\n\t188,\n\t230,\n\t148,\n\t175,\n\t230,\n\t140,\n\t129,\n\t229,\n\t155,\n\t189,\n\t233,\n\t153,\n\t133,\n\t233,\n\t147,\n\t190,\n\t230,\n\t142,\n\t165,\n\t229,\n\t155,\n\t189,\n\t229,\n\t174,\n\t182,\n\t229,\n\t187,\n\t186,\n\t232,\n\t174,\n\t190,\n\t230,\n\t156,\n\t139,\n\t229,\n\t143,\n\t139,\n\t233,\n\t152,\n\t133,\n\t232,\n\t175,\n\t187,\n\t230,\n\t179,\n\t149,\n\t229,\n\t190,\n\t139,\n\t228,\n\t189,\n\t141,\n\t231,\n\t189,\n\t174,\n\t231,\n\t187,\n\t143,\n\t230,\n\t181,\n\t142,\n\t233,\n\t128,\n\t137,\n\t230,\n\t139,\n\t169,\n\t232,\n\t191,\n\t153,\n\t230,\n\t160,\n\t183,\n\t229,\n\t189,\n\t147,\n\t229,\n\t137,\n\t141,\n\t229,\n\t136,\n\t134,\n\t231,\n\t177,\n\t187,\n\t230,\n\t142,\n\t146,\n\t232,\n\t161,\n\t140,\n\t229,\n\t155,\n\t160,\n\t228,\n\t184,\n\t186,\n\t228,\n\t186,\n\t164,\n\t230,\n\t152,\n\t147,\n\t230,\n\t156,\n\t128,\n\t229,\n\t144,\n\t142,\n\t233,\n\t159,\n\t179,\n\t228,\n\t185,\n\t144,\n\t228,\n\t184,\n\t141,\n\t232,\n\t131,\n\t189,\n\t233,\n\t128,\n\t154,\n\t232,\n\t191,\n\t135,\n\t232,\n\t161,\n\t140,\n\t228,\n\t184,\n\t154,\n\t231,\n\t167,\n\t145,\n\t230,\n\t138,\n\t128,\n\t229,\n\t143,\n\t175,\n\t232,\n\t131,\n\t189,\n\t232,\n\t174,\n\t190,\n\t229,\n\t164,\n\t135,\n\t229,\n\t144,\n\t136,\n\t228,\n\t189,\n\t156,\n\t229,\n\t164,\n\t167,\n\t229,\n\t174,\n\t182,\n\t231,\n\t164,\n\t190,\n\t228,\n\t188,\n\t154,\n\t231,\n\t160,\n\t148,\n\t231,\n\t169,\n\t182,\n\t228,\n\t184,\n\t147,\n\t228,\n\t184,\n\t154,\n\t229,\n\t133,\n\t168,\n\t233,\n\t131,\n\t168,\n\t233,\n\t161,\n\t185,\n\t231,\n\t155,\n\t174,\n\t232,\n\t191,\n\t153,\n\t233,\n\t135,\n\t140,\n\t232,\n\t191,\n\t152,\n\t230,\n\t152,\n\t175,\n\t229,\n\t188,\n\t128,\n\t229,\n\t167,\n\t139,\n\t230,\n\t131,\n\t133,\n\t229,\n\t134,\n\t181,\n\t231,\n\t148,\n\t181,\n\t232,\n\t132,\n\t145,\n\t230,\n\t150,\n\t135,\n\t228,\n\t187,\n\t182,\n\t229,\n\t147,\n\t129,\n\t231,\n\t137,\n\t140,\n\t229,\n\t184,\n\t174,\n\t229,\n\t138,\n\t169,\n\t230,\n\t150,\n\t135,\n\t229,\n\t140,\n\t150,\n\t232,\n\t181,\n\t132,\n\t230,\n\t186,\n\t144,\n\t229,\n\t164,\n\t167,\n\t229,\n\t173,\n\t166,\n\t229,\n\t173,\n\t166,\n\t228,\n\t185,\n\t160,\n\t229,\n\t156,\n\t176,\n\t229,\n\t157,\n\t128,\n\t230,\n\t181,\n\t143,\n\t232,\n\t167,\n\t136,\n\t230,\n\t138,\n\t149,\n\t232,\n\t181,\n\t132,\n\t229,\n\t183,\n\t165,\n\t231,\n\t168,\n\t139,\n\t232,\n\t166,\n\t129,\n\t230,\n\t177,\n\t130,\n\t230,\n\t128,\n\t142,\n\t228,\n\t185,\n\t136,\n\t230,\n\t151,\n\t182,\n\t229,\n\t128,\n\t153,\n\t229,\n\t138,\n\t159,\n\t232,\n\t131,\n\t189,\n\t228,\n\t184,\n\t187,\n\t232,\n\t166,\n\t129,\n\t231,\n\t155,\n\t174,\n\t229,\n\t137,\n\t141,\n\t232,\n\t181,\n\t132,\n\t232,\n\t174,\n\t175,\n\t229,\n\t159,\n\t142,\n\t229,\n\t184,\n\t130,\n\t230,\n\t150,\n\t185,\n\t230,\n\t179,\n\t149,\n\t231,\n\t148,\n\t181,\n\t229,\n\t189,\n\t177,\n\t230,\n\t139,\n\t155,\n\t232,\n\t129,\n\t152,\n\t229,\n\t163,\n\t176,\n\t230,\n\t152,\n\t142,\n\t228,\n\t187,\n\t187,\n\t228,\n\t189,\n\t149,\n\t229,\n\t129,\n\t165,\n\t229,\n\t186,\n\t183,\n\t230,\n\t149,\n\t176,\n\t230,\n\t141,\n\t174,\n\t231,\n\t190,\n\t142,\n\t229,\n\t155,\n\t189,\n\t230,\n\t177,\n\t189,\n\t232,\n\t189,\n\t166,\n\t228,\n\t187,\n\t139,\n\t231,\n\t187,\n\t141,\n\t228,\n\t189,\n\t134,\n\t230,\n\t152,\n\t175,\n\t228,\n\t186,\n\t164,\n\t230,\n\t181,\n\t129,\n\t231,\n\t148,\n\t159,\n\t228,\n\t186,\n\t167,\n\t230,\n\t137,\n\t128,\n\t228,\n\t187,\n\t165,\n\t231,\n\t148,\n\t181,\n\t232,\n\t175,\n\t157,\n\t230,\n\t152,\n\t190,\n\t231,\n\t164,\n\t186,\n\t228,\n\t184,\n\t128,\n\t228,\n\t186,\n\t155,\n\t229,\n\t141,\n\t149,\n\t228,\n\t189,\n\t141,\n\t228,\n\t186,\n\t186,\n\t229,\n\t145,\n\t152,\n\t229,\n\t136,\n\t134,\n\t230,\n\t158,\n\t144,\n\t229,\n\t156,\n\t176,\n\t229,\n\t155,\n\t190,\n\t230,\n\t151,\n\t133,\n\t230,\n\t184,\n\t184,\n\t229,\n\t183,\n\t165,\n\t229,\n\t133,\n\t183,\n\t229,\n\t173,\n\t166,\n\t231,\n\t148,\n\t159,\n\t231,\n\t179,\n\t187,\n\t229,\n\t136,\n\t151,\n\t231,\n\t189,\n\t145,\n\t229,\n\t143,\n\t139,\n\t229,\n\t184,\n\t150,\n\t229,\n\t173,\n\t144,\n\t229,\n\t175,\n\t134,\n\t231,\n\t160,\n\t129,\n\t233,\n\t162,\n\t145,\n\t233,\n\t129,\n\t147,\n\t230,\n\t142,\n\t167,\n\t229,\n\t136,\n\t182,\n\t229,\n\t156,\n\t176,\n\t229,\n\t140,\n\t186,\n\t229,\n\t159,\n\t186,\n\t230,\n\t156,\n\t172,\n\t229,\n\t133,\n\t168,\n\t229,\n\t155,\n\t189,\n\t231,\n\t189,\n\t145,\n\t228,\n\t184,\n\t138,\n\t233,\n\t135,\n\t141,\n\t232,\n\t166,\n\t129,\n\t231,\n\t172,\n\t172,\n\t228,\n\t186,\n\t140,\n\t229,\n\t150,\n\t156,\n\t230,\n\t172,\n\t162,\n\t232,\n\t191,\n\t155,\n\t229,\n\t133,\n\t165,\n\t229,\n\t143,\n\t139,\n\t230,\n\t131,\n\t133,\n\t232,\n\t191,\n\t153,\n\t228,\n\t186,\n\t155,\n\t232,\n\t128,\n\t131,\n\t232,\n\t175,\n\t149,\n\t229,\n\t143,\n\t145,\n\t231,\n\t142,\n\t176,\n\t229,\n\t159,\n\t185,\n\t232,\n\t174,\n\t173,\n\t228,\n\t187,\n\t165,\n\t228,\n\t184,\n\t138,\n\t230,\n\t148,\n\t191,\n\t229,\n\t186,\n\t156,\n\t230,\n\t136,\n\t144,\n\t228,\n\t184,\n\t186,\n\t231,\n\t142,\n\t175,\n\t229,\n\t162,\n\t131,\n\t233,\n\t166,\n\t153,\n\t230,\n\t184,\n\t175,\n\t229,\n\t144,\n\t140,\n\t230,\n\t151,\n\t182,\n\t229,\n\t168,\n\t177,\n\t228,\n\t185,\n\t144,\n\t229,\n\t143,\n\t145,\n\t233,\n\t128,\n\t129,\n\t228,\n\t184,\n\t128,\n\t229,\n\t174,\n\t154,\n\t229,\n\t188,\n\t128,\n\t229,\n\t143,\n\t145,\n\t228,\n\t189,\n\t156,\n\t229,\n\t147,\n\t129,\n\t230,\n\t160,\n\t135,\n\t229,\n\t135,\n\t134,\n\t230,\n\t172,\n\t162,\n\t232,\n\t191,\n\t142,\n\t232,\n\t167,\n\t163,\n\t229,\n\t134,\n\t179,\n\t229,\n\t156,\n\t176,\n\t230,\n\t150,\n\t185,\n\t228,\n\t184,\n\t128,\n\t228,\n\t184,\n\t139,\n\t228,\n\t187,\n\t165,\n\t229,\n\t143,\n\t138,\n\t232,\n\t180,\n\t163,\n\t228,\n\t187,\n\t187,\n\t230,\n\t136,\n\t150,\n\t232,\n\t128,\n\t133,\n\t229,\n\t174,\n\t162,\n\t230,\n\t136,\n\t183,\n\t228,\n\t187,\n\t163,\n\t232,\n\t161,\n\t168,\n\t231,\n\t167,\n\t175,\n\t229,\n\t136,\n\t134,\n\t229,\n\t165,\n\t179,\n\t228,\n\t186,\n\t186,\n\t230,\n\t149,\n\t176,\n\t231,\n\t160,\n\t129,\n\t233,\n\t148,\n\t128,\n\t229,\n\t148,\n\t174,\n\t229,\n\t135,\n\t186,\n\t231,\n\t142,\n\t176,\n\t231,\n\t166,\n\t187,\n\t231,\n\t186,\n\t191,\n\t229,\n\t186,\n\t148,\n\t231,\n\t148,\n\t168,\n\t229,\n\t136,\n\t151,\n\t232,\n\t161,\n\t168,\n\t228,\n\t184,\n\t141,\n\t229,\n\t144,\n\t140,\n\t231,\n\t188,\n\t150,\n\t232,\n\t190,\n\t145,\n\t231,\n\t187,\n\t159,\n\t232,\n\t174,\n\t161,\n\t230,\n\t159,\n\t165,\n\t232,\n\t175,\n\t162,\n\t228,\n\t184,\n\t141,\n\t232,\n\t166,\n\t129,\n\t230,\n\t156,\n\t137,\n\t229,\n\t133,\n\t179,\n\t230,\n\t156,\n\t186,\n\t230,\n\t158,\n\t132,\n\t229,\n\t190,\n\t136,\n\t229,\n\t164,\n\t154,\n\t230,\n\t146,\n\t173,\n\t230,\n\t148,\n\t190,\n\t231,\n\t187,\n\t132,\n\t231,\n\t187,\n\t135,\n\t230,\n\t148,\n\t191,\n\t231,\n\t173,\n\t150,\n\t231,\n\t155,\n\t180,\n\t230,\n\t142,\n\t165,\n\t232,\n\t131,\n\t189,\n\t229,\n\t138,\n\t155,\n\t230,\n\t157,\n\t165,\n\t230,\n\t186,\n\t144,\n\t230,\n\t153,\n\t130,\n\t233,\n\t150,\n\t147,\n\t231,\n\t156,\n\t139,\n\t229,\n\t136,\n\t176,\n\t231,\n\t131,\n\t173,\n\t233,\n\t151,\n\t168,\n\t229,\n\t133,\n\t179,\n\t233,\n\t148,\n\t174,\n\t228,\n\t184,\n\t147,\n\t229,\n\t140,\n\t186,\n\t233,\n\t157,\n\t158,\n\t229,\n\t184,\n\t184,\n\t232,\n\t139,\n\t177,\n\t232,\n\t175,\n\t173,\n\t231,\n\t153,\n\t190,\n\t229,\n\t186,\n\t166,\n\t229,\n\t184,\n\t140,\n\t230,\n\t156,\n\t155,\n\t231,\n\t190,\n\t142,\n\t229,\n\t165,\n\t179,\n\t230,\n\t175,\n\t148,\n\t232,\n\t190,\n\t131,\n\t231,\n\t159,\n\t165,\n\t232,\n\t175,\n\t134,\n\t232,\n\t167,\n\t132,\n\t229,\n\t174,\n\t154,\n\t229,\n\t187,\n\t186,\n\t232,\n\t174,\n\t174,\n\t233,\n\t131,\n\t168,\n\t233,\n\t151,\n\t168,\n\t230,\n\t132,\n\t143,\n\t232,\n\t167,\n\t129,\n\t231,\n\t178,\n\t190,\n\t229,\n\t189,\n\t169,\n\t230,\n\t151,\n\t165,\n\t230,\n\t156,\n\t172,\n\t230,\n\t143,\n\t144,\n\t233,\n\t171,\n\t152,\n\t229,\n\t143,\n\t145,\n\t232,\n\t168,\n\t128,\n\t230,\n\t150,\n\t185,\n\t233,\n\t157,\n\t162,\n\t229,\n\t159,\n\t186,\n\t233,\n\t135,\n\t145,\n\t229,\n\t164,\n\t132,\n\t231,\n\t144,\n\t134,\n\t230,\n\t157,\n\t131,\n\t233,\n\t153,\n\t144,\n\t229,\n\t189,\n\t177,\n\t231,\n\t137,\n\t135,\n\t233,\n\t147,\n\t182,\n\t232,\n\t161,\n\t140,\n\t232,\n\t191,\n\t152,\n\t230,\n\t156,\n\t137,\n\t229,\n\t136,\n\t134,\n\t228,\n\t186,\n\t171,\n\t231,\n\t137,\n\t169,\n\t229,\n\t147,\n\t129,\n\t231,\n\t187,\n\t143,\n\t232,\n\t144,\n\t165,\n\t230,\n\t183,\n\t187,\n\t229,\n\t138,\n\t160,\n\t228,\n\t184,\n\t147,\n\t229,\n\t174,\n\t182,\n\t232,\n\t191,\n\t153,\n\t231,\n\t167,\n\t141,\n\t232,\n\t175,\n\t157,\n\t233,\n\t162,\n\t152,\n\t232,\n\t181,\n\t183,\n\t230,\n\t157,\n\t165,\n\t228,\n\t184,\n\t154,\n\t229,\n\t138,\n\t161,\n\t229,\n\t133,\n\t172,\n\t229,\n\t145,\n\t138,\n\t232,\n\t174,\n\t176,\n\t229,\n\t189,\n\t149,\n\t231,\n\t174,\n\t128,\n\t228,\n\t187,\n\t139,\n\t232,\n\t180,\n\t168,\n\t233,\n\t135,\n\t143,\n\t231,\n\t148,\n\t183,\n\t228,\n\t186,\n\t186,\n\t229,\n\t189,\n\t177,\n\t229,\n\t147,\n\t141,\n\t229,\n\t188,\n\t149,\n\t231,\n\t148,\n\t168,\n\t230,\n\t138,\n\t165,\n\t229,\n\t145,\n\t138,\n\t233,\n\t131,\n\t168,\n\t229,\n\t136,\n\t134,\n\t229,\n\t191,\n\t171,\n\t233,\n\t128,\n\t159,\n\t229,\n\t146,\n\t168,\n\t232,\n\t175,\n\t162,\n\t230,\n\t151,\n\t182,\n\t229,\n\t176,\n\t154,\n\t230,\n\t179,\n\t168,\n\t230,\n\t132,\n\t143,\n\t231,\n\t148,\n\t179,\n\t232,\n\t175,\n\t183,\n\t229,\n\t173,\n\t166,\n\t230,\n\t160,\n\t161,\n\t229,\n\t186,\n\t148,\n\t232,\n\t175,\n\t165,\n\t229,\n\t142,\n\t134,\n\t229,\n\t143,\n\t178,\n\t229,\n\t143,\n\t170,\n\t230,\n\t152,\n\t175,\n\t232,\n\t191,\n\t148,\n\t229,\n\t155,\n\t158,\n\t232,\n\t180,\n\t173,\n\t228,\n\t185,\n\t176,\n\t229,\n\t144,\n\t141,\n\t231,\n\t167,\n\t176,\n\t228,\n\t184,\n\t186,\n\t228,\n\t186,\n\t134,\n\t230,\n\t136,\n\t144,\n\t229,\n\t138,\n\t159,\n\t232,\n\t175,\n\t180,\n\t230,\n\t152,\n\t142,\n\t228,\n\t190,\n\t155,\n\t229,\n\t186,\n\t148,\n\t229,\n\t173,\n\t169,\n\t229,\n\t173,\n\t144,\n\t228,\n\t184,\n\t147,\n\t233,\n\t162,\n\t152,\n\t231,\n\t168,\n\t139,\n\t229,\n\t186,\n\t143,\n\t228,\n\t184,\n\t128,\n\t232,\n\t136,\n\t172,\n\t230,\n\t156,\n\t131,\n\t229,\n\t147,\n\t161,\n\t229,\n\t143,\n\t170,\n\t230,\n\t156,\n\t137,\n\t229,\n\t133,\n\t182,\n\t229,\n\t174,\n\t131,\n\t228,\n\t191,\n\t157,\n\t230,\n\t138,\n\t164,\n\t232,\n\t128,\n\t140,\n\t228,\n\t184,\n\t148,\n\t228,\n\t187,\n\t138,\n\t229,\n\t164,\n\t169,\n\t231,\n\t170,\n\t151,\n\t229,\n\t143,\n\t163,\n\t229,\n\t138,\n\t168,\n\t230,\n\t128,\n\t129,\n\t231,\n\t138,\n\t182,\n\t230,\n\t128,\n\t129,\n\t231,\n\t137,\n\t185,\n\t229,\n\t136,\n\t171,\n\t232,\n\t174,\n\t164,\n\t228,\n\t184,\n\t186,\n\t229,\n\t191,\n\t133,\n\t233,\n\t161,\n\t187,\n\t230,\n\t155,\n\t180,\n\t230,\n\t150,\n\t176,\n\t229,\n\t176,\n\t143,\n\t232,\n\t175,\n\t180,\n\t230,\n\t136,\n\t145,\n\t229,\n\t128,\n\t145,\n\t228,\n\t189,\n\t156,\n\t228,\n\t184,\n\t186,\n\t229,\n\t170,\n\t146,\n\t228,\n\t189,\n\t147,\n\t229,\n\t140,\n\t133,\n\t230,\n\t139,\n\t172,\n\t233,\n\t130,\n\t163,\n\t228,\n\t185,\n\t136,\n\t228,\n\t184,\n\t128,\n\t230,\n\t160,\n\t183,\n\t229,\n\t155,\n\t189,\n\t229,\n\t134,\n\t133,\n\t230,\n\t152,\n\t175,\n\t229,\n\t144,\n\t166,\n\t230,\n\t160,\n\t185,\n\t230,\n\t141,\n\t174,\n\t231,\n\t148,\n\t181,\n\t232,\n\t167,\n\t134,\n\t229,\n\t173,\n\t166,\n\t233,\n\t153,\n\t162,\n\t229,\n\t133,\n\t183,\n\t230,\n\t156,\n\t137,\n\t232,\n\t191,\n\t135,\n\t231,\n\t168,\n\t139,\n\t231,\n\t148,\n\t177,\n\t228,\n\t186,\n\t142,\n\t228,\n\t186,\n\t186,\n\t230,\n\t137,\n\t141,\n\t229,\n\t135,\n\t186,\n\t230,\n\t157,\n\t165,\n\t228,\n\t184,\n\t141,\n\t232,\n\t191,\n\t135,\n\t230,\n\t173,\n\t163,\n\t229,\n\t156,\n\t168,\n\t230,\n\t152,\n\t142,\n\t230,\n\t152,\n\t159,\n\t230,\n\t149,\n\t133,\n\t228,\n\t186,\n\t139,\n\t229,\n\t133,\n\t179,\n\t231,\n\t179,\n\t187,\n\t230,\n\t160,\n\t135,\n\t233,\n\t162,\n\t152,\n\t229,\n\t149,\n\t134,\n\t229,\n\t138,\n\t161,\n\t232,\n\t190,\n\t147,\n\t229,\n\t133,\n\t165,\n\t228,\n\t184,\n\t128,\n\t231,\n\t155,\n\t180,\n\t229,\n\t159,\n\t186,\n\t231,\n\t161,\n\t128,\n\t230,\n\t149,\n\t153,\n\t229,\n\t173,\n\t166,\n\t228,\n\t186,\n\t134,\n\t232,\n\t167,\n\t163,\n\t229,\n\t187,\n\t186,\n\t231,\n\t173,\n\t145,\n\t231,\n\t187,\n\t147,\n\t230,\n\t158,\n\t156,\n\t229,\n\t133,\n\t168,\n\t231,\n\t144,\n\t131,\n\t233,\n\t128,\n\t154,\n\t231,\n\t159,\n\t165,\n\t232,\n\t174,\n\t161,\n\t229,\n\t136,\n\t146,\n\t229,\n\t175,\n\t185,\n\t228,\n\t186,\n\t142,\n\t232,\n\t137,\n\t186,\n\t230,\n\t156,\n\t175,\n\t231,\n\t155,\n\t184,\n\t229,\n\t134,\n\t140,\n\t229,\n\t143,\n\t145,\n\t231,\n\t148,\n\t159,\n\t231,\n\t156,\n\t159,\n\t231,\n\t154,\n\t132,\n\t229,\n\t187,\n\t186,\n\t231,\n\t171,\n\t139,\n\t231,\n\t173,\n\t137,\n\t231,\n\t186,\n\t167,\n\t231,\n\t177,\n\t187,\n\t229,\n\t158,\n\t139,\n\t231,\n\t187,\n\t143,\n\t233,\n\t170,\n\t140,\n\t229,\n\t174,\n\t158,\n\t231,\n\t142,\n\t176,\n\t229,\n\t136,\n\t182,\n\t228,\n\t189,\n\t156,\n\t230,\n\t157,\n\t165,\n\t232,\n\t135,\n\t170,\n\t230,\n\t160,\n\t135,\n\t231,\n\t173,\n\t190,\n\t228,\n\t187,\n\t165,\n\t228,\n\t184,\n\t139,\n\t229,\n\t142,\n\t159,\n\t229,\n\t136,\n\t155,\n\t230,\n\t151,\n\t160,\n\t230,\n\t179,\n\t149,\n\t229,\n\t133,\n\t182,\n\t228,\n\t184,\n\t173,\n\t229,\n\t128,\n\t139,\n\t228,\n\t186,\n\t186,\n\t228,\n\t184,\n\t128,\n\t229,\n\t136,\n\t135,\n\t230,\n\t140,\n\t135,\n\t229,\n\t141,\n\t151,\n\t229,\n\t133,\n\t179,\n\t233,\n\t151,\n\t173,\n\t233,\n\t155,\n\t134,\n\t229,\n\t155,\n\t162,\n\t231,\n\t172,\n\t172,\n\t228,\n\t184,\n\t137,\n\t229,\n\t133,\n\t179,\n\t230,\n\t179,\n\t168,\n\t229,\n\t155,\n\t160,\n\t230,\n\t173,\n\t164,\n\t231,\n\t133,\n\t167,\n\t231,\n\t137,\n\t135,\n\t230,\n\t183,\n\t177,\n\t229,\n\t156,\n\t179,\n\t229,\n\t149,\n\t134,\n\t228,\n\t184,\n\t154,\n\t229,\n\t185,\n\t191,\n\t229,\n\t183,\n\t158,\n\t230,\n\t151,\n\t165,\n\t230,\n\t156,\n\t159,\n\t233,\n\t171,\n\t152,\n\t231,\n\t186,\n\t167,\n\t230,\n\t156,\n\t128,\n\t232,\n\t191,\n\t145,\n\t231,\n\t187,\n\t188,\n\t229,\n\t144,\n\t136,\n\t232,\n\t161,\n\t168,\n\t231,\n\t164,\n\t186,\n\t228,\n\t184,\n\t147,\n\t232,\n\t190,\n\t145,\n\t232,\n\t161,\n\t140,\n\t228,\n\t184,\n\t186,\n\t228,\n\t186,\n\t164,\n\t233,\n\t128,\n\t154,\n\t232,\n\t175,\n\t132,\n\t228,\n\t187,\n\t183,\n\t232,\n\t167,\n\t137,\n\t229,\n\t190,\n\t151,\n\t231,\n\t178,\n\t190,\n\t229,\n\t141,\n\t142,\n\t229,\n\t174,\n\t182,\n\t229,\n\t186,\n\t173,\n\t229,\n\t174,\n\t140,\n\t230,\n\t136,\n\t144,\n\t230,\n\t132,\n\t159,\n\t232,\n\t167,\n\t137,\n\t229,\n\t174,\n\t137,\n\t232,\n\t163,\n\t133,\n\t229,\n\t190,\n\t151,\n\t229,\n\t136,\n\t176,\n\t233,\n\t130,\n\t174,\n\t228,\n\t187,\n\t182,\n\t229,\n\t136,\n\t182,\n\t229,\n\t186,\n\t166,\n\t233,\n\t163,\n\t159,\n\t229,\n\t147,\n\t129,\n\t232,\n\t153,\n\t189,\n\t231,\n\t132,\n\t182,\n\t232,\n\t189,\n\t172,\n\t232,\n\t189,\n\t189,\n\t230,\n\t138,\n\t165,\n\t228,\n\t187,\n\t183,\n\t232,\n\t174,\n\t176,\n\t232,\n\t128,\n\t133,\n\t230,\n\t150,\n\t185,\n\t230,\n\t161,\n\t136,\n\t232,\n\t161,\n\t140,\n\t230,\n\t148,\n\t191,\n\t228,\n\t186,\n\t186,\n\t230,\n\t176,\n\t145,\n\t231,\n\t148,\n\t168,\n\t229,\n\t147,\n\t129,\n\t228,\n\t184,\n\t156,\n\t232,\n\t165,\n\t191,\n\t230,\n\t143,\n\t144,\n\t229,\n\t135,\n\t186,\n\t233,\n\t133,\n\t146,\n\t229,\n\t186,\n\t151,\n\t231,\n\t132,\n\t182,\n\t229,\n\t144,\n\t142,\n\t228,\n\t187,\n\t152,\n\t230,\n\t172,\n\t190,\n\t231,\n\t131,\n\t173,\n\t231,\n\t130,\n\t185,\n\t228,\n\t187,\n\t165,\n\t229,\n\t137,\n\t141,\n\t229,\n\t174,\n\t140,\n\t229,\n\t133,\n\t168,\n\t229,\n\t143,\n\t145,\n\t229,\n\t184,\n\t150,\n\t232,\n\t174,\n\t190,\n\t231,\n\t189,\n\t174,\n\t233,\n\t162,\n\t134,\n\t229,\n\t175,\n\t188,\n\t229,\n\t183,\n\t165,\n\t228,\n\t184,\n\t154,\n\t229,\n\t140,\n\t187,\n\t233,\n\t153,\n\t162,\n\t231,\n\t156,\n\t139,\n\t231,\n\t156,\n\t139,\n\t231,\n\t187,\n\t143,\n\t229,\n\t133,\n\t184,\n\t229,\n\t142,\n\t159,\n\t229,\n\t155,\n\t160,\n\t229,\n\t185,\n\t179,\n\t229,\n\t143,\n\t176,\n\t229,\n\t144,\n\t132,\n\t231,\n\t167,\n\t141,\n\t229,\n\t162,\n\t158,\n\t229,\n\t138,\n\t160,\n\t230,\n\t157,\n\t144,\n\t230,\n\t150,\n\t153,\n\t230,\n\t150,\n\t176,\n\t229,\n\t162,\n\t158,\n\t228,\n\t185,\n\t139,\n\t229,\n\t144,\n\t142,\n\t232,\n\t129,\n\t140,\n\t228,\n\t184,\n\t154,\n\t230,\n\t149,\n\t136,\n\t230,\n\t158,\n\t156,\n\t228,\n\t187,\n\t138,\n\t229,\n\t185,\n\t180,\n\t232,\n\t174,\n\t186,\n\t230,\n\t150,\n\t135,\n\t230,\n\t136,\n\t145,\n\t229,\n\t155,\n\t189,\n\t229,\n\t145,\n\t138,\n\t232,\n\t175,\n\t137,\n\t231,\n\t137,\n\t136,\n\t228,\n\t184,\n\t187,\n\t228,\n\t191,\n\t174,\n\t230,\n\t148,\n\t185,\n\t229,\n\t143,\n\t130,\n\t228,\n\t184,\n\t142,\n\t230,\n\t137,\n\t147,\n\t229,\n\t141,\n\t176,\n\t229,\n\t191,\n\t171,\n\t228,\n\t185,\n\t144,\n\t230,\n\t156,\n\t186,\n\t230,\n\t162,\n\t176,\n\t232,\n\t167,\n\t130,\n\t231,\n\t130,\n\t185,\n\t229,\n\t173,\n\t152,\n\t229,\n\t156,\n\t168,\n\t231,\n\t178,\n\t190,\n\t231,\n\t165,\n\t158,\n\t232,\n\t142,\n\t183,\n\t229,\n\t190,\n\t151,\n\t229,\n\t136,\n\t169,\n\t231,\n\t148,\n\t168,\n\t231,\n\t187,\n\t167,\n\t231,\n\t187,\n\t173,\n\t228,\n\t189,\n\t160,\n\t228,\n\t187,\n\t172,\n\t232,\n\t191,\n\t153,\n\t228,\n\t185,\n\t136,\n\t230,\n\t168,\n\t161,\n\t229,\n\t188,\n\t143,\n\t232,\n\t175,\n\t173,\n\t232,\n\t168,\n\t128,\n\t232,\n\t131,\n\t189,\n\t229,\n\t164,\n\t159,\n\t233,\n\t155,\n\t133,\n\t232,\n\t153,\n\t142,\n\t230,\n\t147,\n\t141,\n\t228,\n\t189,\n\t156,\n\t233,\n\t163,\n\t142,\n\t230,\n\t160,\n\t188,\n\t228,\n\t184,\n\t128,\n\t232,\n\t181,\n\t183,\n\t231,\n\t167,\n\t145,\n\t229,\n\t173,\n\t166,\n\t228,\n\t189,\n\t147,\n\t232,\n\t130,\n\t178,\n\t231,\n\t159,\n\t173,\n\t228,\n\t191,\n\t161,\n\t230,\n\t157,\n\t161,\n\t228,\n\t187,\n\t182,\n\t230,\n\t178,\n\t187,\n\t231,\n\t150,\n\t151,\n\t232,\n\t191,\n\t144,\n\t229,\n\t138,\n\t168,\n\t228,\n\t186,\n\t167,\n\t228,\n\t184,\n\t154,\n\t228,\n\t188,\n\t154,\n\t232,\n\t174,\n\t174,\n\t229,\n\t175,\n\t188,\n\t232,\n\t136,\n\t170,\n\t229,\n\t133,\n\t136,\n\t231,\n\t148,\n\t159,\n\t232,\n\t129,\n\t148,\n\t231,\n\t155,\n\t159,\n\t229,\n\t143,\n\t175,\n\t230,\n\t152,\n\t175,\n\t229,\n\t149,\n\t143,\n\t233,\n\t161,\n\t140,\n\t231,\n\t187,\n\t147,\n\t230,\n\t158,\n\t132,\n\t228,\n\t189,\n\t156,\n\t231,\n\t148,\n\t168,\n\t232,\n\t176,\n\t131,\n\t230,\n\t159,\n\t165,\n\t232,\n\t179,\n\t135,\n\t230,\n\t150,\n\t153,\n\t232,\n\t135,\n\t170,\n\t229,\n\t138,\n\t168,\n\t232,\n\t180,\n\t159,\n\t232,\n\t180,\n\t163,\n\t229,\n\t134,\n\t156,\n\t228,\n\t184,\n\t154,\n\t232,\n\t174,\n\t191,\n\t233,\n\t151,\n\t174,\n\t229,\n\t174,\n\t158,\n\t230,\n\t150,\n\t189,\n\t230,\n\t142,\n\t165,\n\t229,\n\t143,\n\t151,\n\t232,\n\t174,\n\t168,\n\t232,\n\t174,\n\t186,\n\t233,\n\t130,\n\t163,\n\t228,\n\t184,\n\t170,\n\t229,\n\t143,\n\t141,\n\t233,\n\t166,\n\t136,\n\t229,\n\t138,\n\t160,\n\t229,\n\t188,\n\t186,\n\t229,\n\t165,\n\t179,\n\t230,\n\t128,\n\t167,\n\t232,\n\t140,\n\t131,\n\t229,\n\t155,\n\t180,\n\t230,\n\t156,\n\t141,\n\t229,\n\t139,\n\t153,\n\t228,\n\t188,\n\t145,\n\t233,\n\t151,\n\t178,\n\t228,\n\t187,\n\t138,\n\t230,\n\t151,\n\t165,\n\t229,\n\t174,\n\t162,\n\t230,\n\t156,\n\t141,\n\t232,\n\t167,\n\t128,\n\t231,\n\t156,\n\t139,\n\t229,\n\t143,\n\t130,\n\t229,\n\t138,\n\t160,\n\t231,\n\t154,\n\t132,\n\t232,\n\t175,\n\t157,\n\t228,\n\t184,\n\t128,\n\t231,\n\t130,\n\t185,\n\t228,\n\t191,\n\t157,\n\t232,\n\t175,\n\t129,\n\t229,\n\t155,\n\t190,\n\t228,\n\t185,\n\t166,\n\t230,\n\t156,\n\t137,\n\t230,\n\t149,\n\t136,\n\t230,\n\t181,\n\t139,\n\t232,\n\t175,\n\t149,\n\t231,\n\t167,\n\t187,\n\t229,\n\t138,\n\t168,\n\t230,\n\t137,\n\t141,\n\t232,\n\t131,\n\t189,\n\t229,\n\t134,\n\t179,\n\t229,\n\t174,\n\t154,\n\t232,\n\t130,\n\t161,\n\t231,\n\t165,\n\t168,\n\t228,\n\t184,\n\t141,\n\t230,\n\t150,\n\t173,\n\t233,\n\t156,\n\t128,\n\t230,\n\t177,\n\t130,\n\t228,\n\t184,\n\t141,\n\t229,\n\t190,\n\t151,\n\t229,\n\t138,\n\t158,\n\t230,\n\t179,\n\t149,\n\t228,\n\t185,\n\t139,\n\t233,\n\t151,\n\t180,\n\t233,\n\t135,\n\t135,\n\t231,\n\t148,\n\t168,\n\t232,\n\t144,\n\t165,\n\t233,\n\t148,\n\t128,\n\t230,\n\t138,\n\t149,\n\t232,\n\t175,\n\t137,\n\t231,\n\t155,\n\t174,\n\t230,\n\t160,\n\t135,\n\t231,\n\t136,\n\t177,\n\t230,\n\t131,\n\t133,\n\t230,\n\t145,\n\t132,\n\t229,\n\t189,\n\t177,\n\t230,\n\t156,\n\t137,\n\t228,\n\t186,\n\t155,\n\t232,\n\t164,\n\t135,\n\t232,\n\t163,\n\t189,\n\t230,\n\t150,\n\t135,\n\t229,\n\t173,\n\t166,\n\t230,\n\t156,\n\t186,\n\t228,\n\t188,\n\t154,\n\t230,\n\t149,\n\t176,\n\t229,\n\t173,\n\t151,\n\t232,\n\t163,\n\t133,\n\t228,\n\t191,\n\t174,\n\t232,\n\t180,\n\t173,\n\t231,\n\t137,\n\t169,\n\t229,\n\t134,\n\t156,\n\t230,\n\t157,\n\t145,\n\t229,\n\t133,\n\t168,\n\t233,\n\t157,\n\t162,\n\t231,\n\t178,\n\t190,\n\t229,\n\t147,\n\t129,\n\t229,\n\t133,\n\t182,\n\t229,\n\t174,\n\t158,\n\t228,\n\t186,\n\t139,\n\t230,\n\t131,\n\t133,\n\t230,\n\t176,\n\t180,\n\t229,\n\t185,\n\t179,\n\t230,\n\t143,\n\t144,\n\t231,\n\t164,\n\t186,\n\t228,\n\t184,\n\t138,\n\t229,\n\t184,\n\t130,\n\t232,\n\t176,\n\t162,\n\t232,\n\t176,\n\t162,\n\t230,\n\t153,\n\t174,\n\t233,\n\t128,\n\t154,\n\t230,\n\t149,\n\t153,\n\t229,\n\t184,\n\t136,\n\t228,\n\t184,\n\t138,\n\t228,\n\t188,\n\t160,\n\t231,\n\t177,\n\t187,\n\t229,\n\t136,\n\t171,\n\t230,\n\t173,\n\t140,\n\t230,\n\t155,\n\t178,\n\t230,\n\t139,\n\t165,\n\t230,\n\t156,\n\t137,\n\t229,\n\t136,\n\t155,\n\t230,\n\t150,\n\t176,\n\t233,\n\t133,\n\t141,\n\t228,\n\t187,\n\t182,\n\t229,\n\t143,\n\t170,\n\t232,\n\t166,\n\t129,\n\t230,\n\t151,\n\t182,\n\t228,\n\t187,\n\t163,\n\t232,\n\t179,\n\t135,\n\t232,\n\t168,\n\t138,\n\t232,\n\t190,\n\t190,\n\t229,\n\t136,\n\t176,\n\t228,\n\t186,\n\t186,\n\t231,\n\t148,\n\t159,\n\t232,\n\t174,\n\t162,\n\t233,\n\t152,\n\t133,\n\t232,\n\t128,\n\t129,\n\t229,\n\t184,\n\t136,\n\t229,\n\t177,\n\t149,\n\t231,\n\t164,\n\t186,\n\t229,\n\t191,\n\t131,\n\t231,\n\t144,\n\t134,\n\t232,\n\t180,\n\t180,\n\t229,\n\t173,\n\t144,\n\t231,\n\t182,\n\t178,\n\t231,\n\t171,\n\t153,\n\t228,\n\t184,\n\t187,\n\t233,\n\t161,\n\t140,\n\t232,\n\t135,\n\t170,\n\t231,\n\t132,\n\t182,\n\t231,\n\t186,\n\t167,\n\t229,\n\t136,\n\t171,\n\t231,\n\t174,\n\t128,\n\t229,\n\t141,\n\t149,\n\t230,\n\t148,\n\t185,\n\t233,\n\t157,\n\t169,\n\t233,\n\t130,\n\t163,\n\t228,\n\t186,\n\t155,\n\t230,\n\t157,\n\t165,\n\t232,\n\t175,\n\t180,\n\t230,\n\t137,\n\t147,\n\t229,\n\t188,\n\t128,\n\t228,\n\t187,\n\t163,\n\t231,\n\t160,\n\t129,\n\t229,\n\t136,\n\t160,\n\t233,\n\t153,\n\t164,\n\t232,\n\t175,\n\t129,\n\t229,\n\t136,\n\t184,\n\t232,\n\t138,\n\t130,\n\t231,\n\t155,\n\t174,\n\t233,\n\t135,\n\t141,\n\t231,\n\t130,\n\t185,\n\t230,\n\t172,\n\t161,\n\t230,\n\t149,\n\t184,\n\t229,\n\t164,\n\t154,\n\t229,\n\t176,\n\t145,\n\t232,\n\t167,\n\t132,\n\t229,\n\t136,\n\t146,\n\t232,\n\t181,\n\t132,\n\t233,\n\t135,\n\t145,\n\t230,\n\t137,\n\t190,\n\t229,\n\t136,\n\t176,\n\t228,\n\t187,\n\t165,\n\t229,\n\t144,\n\t142,\n\t229,\n\t164,\n\t167,\n\t229,\n\t133,\n\t168,\n\t228,\n\t184,\n\t187,\n\t233,\n\t161,\n\t181,\n\t230,\n\t156,\n\t128,\n\t228,\n\t189,\n\t179,\n\t229,\n\t155,\n\t158,\n\t231,\n\t173,\n\t148,\n\t229,\n\t164,\n\t169,\n\t228,\n\t184,\n\t139,\n\t228,\n\t191,\n\t157,\n\t233,\n\t154,\n\t156,\n\t231,\n\t142,\n\t176,\n\t228,\n\t187,\n\t163,\n\t230,\n\t163,\n\t128,\n\t230,\n\t159,\n\t165,\n\t230,\n\t138,\n\t149,\n\t231,\n\t165,\n\t168,\n\t229,\n\t176,\n\t143,\n\t230,\n\t151,\n\t182,\n\t230,\n\t178,\n\t146,\n\t230,\n\t156,\n\t137,\n\t230,\n\t173,\n\t163,\n\t229,\n\t184,\n\t184,\n\t231,\n\t148,\n\t154,\n\t232,\n\t135,\n\t179,\n\t228,\n\t187,\n\t163,\n\t231,\n\t144,\n\t134,\n\t231,\n\t155,\n\t174,\n\t229,\n\t189,\n\t149,\n\t229,\n\t133,\n\t172,\n\t229,\n\t188,\n\t128,\n\t229,\n\t164,\n\t141,\n\t229,\n\t136,\n\t182,\n\t233,\n\t135,\n\t145,\n\t232,\n\t158,\n\t141,\n\t229,\n\t185,\n\t184,\n\t231,\n\t166,\n\t143,\n\t231,\n\t137,\n\t136,\n\t230,\n\t156,\n\t172,\n\t229,\n\t189,\n\t162,\n\t230,\n\t136,\n\t144,\n\t229,\n\t135,\n\t134,\n\t229,\n\t164,\n\t135,\n\t232,\n\t161,\n\t140,\n\t230,\n\t131,\n\t133,\n\t229,\n\t155,\n\t158,\n\t229,\n\t136,\n\t176,\n\t230,\n\t128,\n\t157,\n\t230,\n\t131,\n\t179,\n\t230,\n\t128,\n\t142,\n\t230,\n\t160,\n\t183,\n\t229,\n\t141,\n\t143,\n\t232,\n\t174,\n\t174,\n\t232,\n\t174,\n\t164,\n\t232,\n\t175,\n\t129,\n\t230,\n\t156,\n\t128,\n\t229,\n\t165,\n\t189,\n\t228,\n\t186,\n\t167,\n\t231,\n\t148,\n\t159,\n\t230,\n\t140,\n\t137,\n\t231,\n\t133,\n\t167,\n\t230,\n\t156,\n\t141,\n\t232,\n\t163,\n\t133,\n\t229,\n\t185,\n\t191,\n\t228,\n\t184,\n\t156,\n\t229,\n\t138,\n\t168,\n\t230,\n\t188,\n\t171,\n\t233,\n\t135,\n\t135,\n\t232,\n\t180,\n\t173,\n\t230,\n\t150,\n\t176,\n\t230,\n\t137,\n\t139,\n\t231,\n\t187,\n\t132,\n\t229,\n\t155,\n\t190,\n\t233,\n\t157,\n\t162,\n\t230,\n\t157,\n\t191,\n\t229,\n\t143,\n\t130,\n\t232,\n\t128,\n\t131,\n\t230,\n\t148,\n\t191,\n\t230,\n\t178,\n\t187,\n\t229,\n\t174,\n\t185,\n\t230,\n\t152,\n\t147,\n\t229,\n\t164,\n\t169,\n\t229,\n\t156,\n\t176,\n\t229,\n\t138,\n\t170,\n\t229,\n\t138,\n\t155,\n\t228,\n\t186,\n\t186,\n\t228,\n\t187,\n\t172,\n\t229,\n\t141,\n\t135,\n\t231,\n\t186,\n\t167,\n\t233,\n\t128,\n\t159,\n\t229,\n\t186,\n\t166,\n\t228,\n\t186,\n\t186,\n\t231,\n\t137,\n\t169,\n\t232,\n\t176,\n\t131,\n\t230,\n\t149,\n\t180,\n\t230,\n\t181,\n\t129,\n\t232,\n\t161,\n\t140,\n\t233,\n\t128,\n\t160,\n\t230,\n\t136,\n\t144,\n\t230,\n\t150,\n\t135,\n\t229,\n\t173,\n\t151,\n\t233,\n\t159,\n\t169,\n\t229,\n\t155,\n\t189,\n\t232,\n\t180,\n\t184,\n\t230,\n\t152,\n\t147,\n\t229,\n\t188,\n\t128,\n\t229,\n\t177,\n\t149,\n\t231,\n\t155,\n\t184,\n\t233,\n\t151,\n\t156,\n\t232,\n\t161,\n\t168,\n\t231,\n\t142,\n\t176,\n\t229,\n\t189,\n\t177,\n\t232,\n\t167,\n\t134,\n\t229,\n\t166,\n\t130,\n\t230,\n\t173,\n\t164,\n\t231,\n\t190,\n\t142,\n\t229,\n\t174,\n\t185,\n\t229,\n\t164,\n\t167,\n\t229,\n\t176,\n\t143,\n\t230,\n\t138,\n\t165,\n\t233,\n\t129,\n\t147,\n\t230,\n\t157,\n\t161,\n\t230,\n\t172,\n\t190,\n\t229,\n\t191,\n\t131,\n\t230,\n\t131,\n\t133,\n\t232,\n\t174,\n\t184,\n\t229,\n\t164,\n\t154,\n\t230,\n\t179,\n\t149,\n\t232,\n\t167,\n\t132,\n\t229,\n\t174,\n\t182,\n\t229,\n\t177,\n\t133,\n\t228,\n\t185,\n\t166,\n\t229,\n\t186,\n\t151,\n\t232,\n\t191,\n\t158,\n\t230,\n\t142,\n\t165,\n\t231,\n\t171,\n\t139,\n\t229,\n\t141,\n\t179,\n\t228,\n\t184,\n\t190,\n\t230,\n\t138,\n\t165,\n\t230,\n\t138,\n\t128,\n\t229,\n\t183,\n\t167,\n\t229,\n\t165,\n\t165,\n\t232,\n\t191,\n\t144,\n\t231,\n\t153,\n\t187,\n\t229,\n\t133,\n\t165,\n\t228,\n\t187,\n\t165,\n\t230,\n\t157,\n\t165,\n\t231,\n\t144,\n\t134,\n\t232,\n\t174,\n\t186,\n\t228,\n\t186,\n\t139,\n\t228,\n\t187,\n\t182,\n\t232,\n\t135,\n\t170,\n\t231,\n\t148,\n\t177,\n\t228,\n\t184,\n\t173,\n\t229,\n\t141,\n\t142,\n\t229,\n\t138,\n\t158,\n\t229,\n\t133,\n\t172,\n\t229,\n\t166,\n\t136,\n\t229,\n\t166,\n\t136,\n\t231,\n\t156,\n\t159,\n\t230,\n\t173,\n\t163,\n\t228,\n\t184,\n\t141,\n\t233,\n\t148,\n\t153,\n\t229,\n\t133,\n\t168,\n\t230,\n\t150,\n\t135,\n\t229,\n\t144,\n\t136,\n\t229,\n\t144,\n\t140,\n\t228,\n\t187,\n\t183,\n\t229,\n\t128,\n\t188,\n\t229,\n\t136,\n\t171,\n\t228,\n\t186,\n\t186,\n\t231,\n\t155,\n\t145,\n\t231,\n\t157,\n\t163,\n\t229,\n\t133,\n\t183,\n\t228,\n\t189,\n\t147,\n\t228,\n\t184,\n\t150,\n\t231,\n\t186,\n\t170,\n\t229,\n\t155,\n\t162,\n\t233,\n\t152,\n\t159,\n\t229,\n\t136,\n\t155,\n\t228,\n\t184,\n\t154,\n\t230,\n\t137,\n\t191,\n\t230,\n\t139,\n\t133,\n\t229,\n\t162,\n\t158,\n\t233,\n\t149,\n\t191,\n\t230,\n\t156,\n\t137,\n\t228,\n\t186,\n\t186,\n\t228,\n\t191,\n\t157,\n\t230,\n\t140,\n\t129,\n\t229,\n\t149,\n\t134,\n\t229,\n\t174,\n\t182,\n\t231,\n\t187,\n\t180,\n\t228,\n\t191,\n\t174,\n\t229,\n\t143,\n\t176,\n\t230,\n\t185,\n\t190,\n\t229,\n\t183,\n\t166,\n\t229,\n\t143,\n\t179,\n\t232,\n\t130,\n\t161,\n\t228,\n\t187,\n\t189,\n\t231,\n\t173,\n\t148,\n\t230,\n\t161,\n\t136,\n\t229,\n\t174,\n\t158,\n\t233,\n\t153,\n\t133,\n\t231,\n\t148,\n\t181,\n\t228,\n\t191,\n\t161,\n\t231,\n\t187,\n\t143,\n\t231,\n\t144,\n\t134,\n\t231,\n\t148,\n\t159,\n\t229,\n\t145,\n\t189,\n\t229,\n\t174,\n\t163,\n\t228,\n\t188,\n\t160,\n\t228,\n\t187,\n\t187,\n\t229,\n\t138,\n\t161,\n\t230,\n\t173,\n\t163,\n\t229,\n\t188,\n\t143,\n\t231,\n\t137,\n\t185,\n\t232,\n\t137,\n\t178,\n\t228,\n\t184,\n\t139,\n\t230,\n\t157,\n\t165,\n\t229,\n\t141,\n\t143,\n\t228,\n\t188,\n\t154,\n\t229,\n\t143,\n\t170,\n\t232,\n\t131,\n\t189,\n\t229,\n\t189,\n\t147,\n\t231,\n\t132,\n\t182,\n\t233,\n\t135,\n\t141,\n\t230,\n\t150,\n\t176,\n\t229,\n\t133,\n\t167,\n\t229,\n\t174,\n\t185,\n\t230,\n\t140,\n\t135,\n\t229,\n\t175,\n\t188,\n\t232,\n\t191,\n\t144,\n\t232,\n\t161,\n\t140,\n\t230,\n\t151,\n\t165,\n\t229,\n\t191,\n\t151,\n\t232,\n\t179,\n\t163,\n\t229,\n\t174,\n\t182,\n\t232,\n\t182,\n\t133,\n\t232,\n\t191,\n\t135,\n\t229,\n\t156,\n\t159,\n\t229,\n\t156,\n\t176,\n\t230,\n\t181,\n\t153,\n\t230,\n\t177,\n\t159,\n\t230,\n\t148,\n\t175,\n\t228,\n\t187,\n\t152,\n\t230,\n\t142,\n\t168,\n\t229,\n\t135,\n\t186,\n\t231,\n\t171,\n\t153,\n\t233,\n\t149,\n\t191,\n\t230,\n\t157,\n\t173,\n\t229,\n\t183,\n\t158,\n\t230,\n\t137,\n\t167,\n\t232,\n\t161,\n\t140,\n\t229,\n\t136,\n\t182,\n\t233,\n\t128,\n\t160,\n\t228,\n\t185,\n\t139,\n\t228,\n\t184,\n\t128,\n\t230,\n\t142,\n\t168,\n\t229,\n\t185,\n\t191,\n\t231,\n\t142,\n\t176,\n\t229,\n\t156,\n\t186,\n\t230,\n\t143,\n\t143,\n\t232,\n\t191,\n\t176,\n\t229,\n\t143,\n\t152,\n\t229,\n\t140,\n\t150,\n\t228,\n\t188,\n\t160,\n\t231,\n\t187,\n\t159,\n\t230,\n\t173,\n\t140,\n\t230,\n\t137,\n\t139,\n\t228,\n\t191,\n\t157,\n\t233,\n\t153,\n\t169,\n\t232,\n\t175,\n\t190,\n\t231,\n\t168,\n\t139,\n\t229,\n\t140,\n\t187,\n\t231,\n\t150,\n\t151,\n\t231,\n\t187,\n\t143,\n\t232,\n\t191,\n\t135,\n\t232,\n\t191,\n\t135,\n\t229,\n\t142,\n\t187,\n\t228,\n\t185,\n\t139,\n\t229,\n\t137,\n\t141,\n\t230,\n\t148,\n\t182,\n\t229,\n\t133,\n\t165,\n\t229,\n\t185,\n\t180,\n\t229,\n\t186,\n\t166,\n\t230,\n\t157,\n\t130,\n\t229,\n\t191,\n\t151,\n\t231,\n\t190,\n\t142,\n\t228,\n\t184,\n\t189,\n\t230,\n\t156,\n\t128,\n\t233,\n\t171,\n\t152,\n\t231,\n\t153,\n\t187,\n\t233,\n\t153,\n\t134,\n\t230,\n\t156,\n\t170,\n\t230,\n\t157,\n\t165,\n\t229,\n\t138,\n\t160,\n\t229,\n\t183,\n\t165,\n\t229,\n\t133,\n\t141,\n\t232,\n\t180,\n\t163,\n\t230,\n\t149,\n\t153,\n\t231,\n\t168,\n\t139,\n\t231,\n\t137,\n\t136,\n\t229,\n\t157,\n\t151,\n\t232,\n\t186,\n\t171,\n\t228,\n\t189,\n\t147,\n\t233,\n\t135,\n\t141,\n\t229,\n\t186,\n\t134,\n\t229,\n\t135,\n\t186,\n\t229,\n\t148,\n\t174,\n\t230,\n\t136,\n\t144,\n\t230,\n\t156,\n\t172,\n\t229,\n\t189,\n\t162,\n\t229,\n\t188,\n\t143,\n\t229,\n\t156,\n\t159,\n\t232,\n\t177,\n\t134,\n\t229,\n\t135,\n\t186,\n\t229,\n\t131,\n\t185,\n\t228,\n\t184,\n\t156,\n\t230,\n\t150,\n\t185,\n\t233,\n\t130,\n\t174,\n\t231,\n\t174,\n\t177,\n\t229,\n\t141,\n\t151,\n\t228,\n\t186,\n\t172,\n\t230,\n\t177,\n\t130,\n\t232,\n\t129,\n\t140,\n\t229,\n\t143,\n\t150,\n\t229,\n\t190,\n\t151,\n\t232,\n\t129,\n\t140,\n\t228,\n\t189,\n\t141,\n\t231,\n\t155,\n\t184,\n\t228,\n\t191,\n\t161,\n\t233,\n\t161,\n\t181,\n\t233,\n\t157,\n\t162,\n\t229,\n\t136,\n\t134,\n\t233,\n\t146,\n\t159,\n\t231,\n\t189,\n\t145,\n\t233,\n\t161,\n\t181,\n\t231,\n\t161,\n\t174,\n\t229,\n\t174,\n\t154,\n\t229,\n\t155,\n\t190,\n\t228,\n\t190,\n\t139,\n\t231,\n\t189,\n\t145,\n\t229,\n\t157,\n\t128,\n\t231,\n\t167,\n\t175,\n\t230,\n\t158,\n\t129,\n\t233,\n\t148,\n\t153,\n\t232,\n\t175,\n\t175,\n\t231,\n\t155,\n\t174,\n\t231,\n\t154,\n\t132,\n\t229,\n\t174,\n\t157,\n\t232,\n\t180,\n\t157,\n\t230,\n\t156,\n\t186,\n\t229,\n\t133,\n\t179,\n\t233,\n\t163,\n\t142,\n\t233,\n\t153,\n\t169,\n\t230,\n\t142,\n\t136,\n\t230,\n\t157,\n\t131,\n\t231,\n\t151,\n\t133,\n\t230,\n\t175,\n\t146,\n\t229,\n\t174,\n\t160,\n\t231,\n\t137,\n\t169,\n\t233,\n\t153,\n\t164,\n\t228,\n\t186,\n\t134,\n\t232,\n\t169,\n\t149,\n\t232,\n\t171,\n\t150,\n\t231,\n\t150,\n\t190,\n\t231,\n\t151,\n\t133,\n\t229,\n\t143,\n\t138,\n\t230,\n\t151,\n\t182,\n\t230,\n\t177,\n\t130,\n\t232,\n\t180,\n\t173,\n\t231,\n\t171,\n\t153,\n\t231,\n\t130,\n\t185,\n\t229,\n\t132,\n\t191,\n\t231,\n\t171,\n\t165,\n\t230,\n\t175,\n\t143,\n\t229,\n\t164,\n\t169,\n\t228,\n\t184,\n\t173,\n\t229,\n\t164,\n\t174,\n\t232,\n\t174,\n\t164,\n\t232,\n\t175,\n\t134,\n\t230,\n\t175,\n\t143,\n\t228,\n\t184,\n\t170,\n\t229,\n\t164,\n\t169,\n\t230,\n\t180,\n\t165,\n\t229,\n\t173,\n\t151,\n\t228,\n\t189,\n\t147,\n\t229,\n\t143,\n\t176,\n\t231,\n\t129,\n\t163,\n\t231,\n\t187,\n\t180,\n\t230,\n\t138,\n\t164,\n\t230,\n\t156,\n\t172,\n\t233,\n\t161,\n\t181,\n\t228,\n\t184,\n\t170,\n\t230,\n\t128,\n\t167,\n\t229,\n\t174,\n\t152,\n\t230,\n\t150,\n\t185,\n\t229,\n\t184,\n\t184,\n\t232,\n\t167,\n\t129,\n\t231,\n\t155,\n\t184,\n\t230,\n\t156,\n\t186,\n\t230,\n\t136,\n\t152,\n\t231,\n\t149,\n\t165,\n\t229,\n\t186,\n\t148,\n\t229,\n\t189,\n\t147,\n\t229,\n\t190,\n\t139,\n\t229,\n\t184,\n\t136,\n\t230,\n\t150,\n\t185,\n\t228,\n\t190,\n\t191,\n\t230,\n\t160,\n\t161,\n\t229,\n\t155,\n\t173,\n\t232,\n\t130,\n\t161,\n\t229,\n\t184,\n\t130,\n\t230,\n\t136,\n\t191,\n\t229,\n\t177,\n\t139,\n\t230,\n\t160,\n\t143,\n\t231,\n\t155,\n\t174,\n\t229,\n\t145,\n\t152,\n\t229,\n\t183,\n\t165,\n\t229,\n\t175,\n\t188,\n\t232,\n\t135,\n\t180,\n\t231,\n\t170,\n\t129,\n\t231,\n\t132,\n\t182,\n\t233,\n\t129,\n\t147,\n\t229,\n\t133,\n\t183,\n\t230,\n\t156,\n\t172,\n\t231,\n\t189,\n\t145,\n\t231,\n\t187,\n\t147,\n\t229,\n\t144,\n\t136,\n\t230,\n\t161,\n\t163,\n\t230,\n\t161,\n\t136,\n\t229,\n\t138,\n\t179,\n\t229,\n\t138,\n\t168,\n\t229,\n\t143,\n\t166,\n\t229,\n\t164,\n\t150,\n\t231,\n\t190,\n\t142,\n\t229,\n\t133,\n\t131,\n\t229,\n\t188,\n\t149,\n\t232,\n\t181,\n\t183,\n\t230,\n\t148,\n\t185,\n\t229,\n\t143,\n\t152,\n\t231,\n\t172,\n\t172,\n\t229,\n\t155,\n\t155,\n\t228,\n\t188,\n\t154,\n\t232,\n\t174,\n\t161,\n\t232,\n\t170,\n\t170,\n\t230,\n\t152,\n\t142,\n\t233,\n\t154,\n\t144,\n\t231,\n\t167,\n\t129,\n\t229,\n\t174,\n\t157,\n\t229,\n\t174,\n\t157,\n\t232,\n\t167,\n\t132,\n\t232,\n\t140,\n\t131,\n\t230,\n\t182,\n\t136,\n\t232,\n\t180,\n\t185,\n\t229,\n\t133,\n\t177,\n\t229,\n\t144,\n\t140,\n\t229,\n\t191,\n\t152,\n\t232,\n\t174,\n\t176,\n\t228,\n\t189,\n\t147,\n\t231,\n\t179,\n\t187,\n\t229,\n\t184,\n\t166,\n\t230,\n\t157,\n\t165,\n\t229,\n\t144,\n\t141,\n\t229,\n\t173,\n\t151,\n\t231,\n\t153,\n\t188,\n\t232,\n\t161,\n\t168,\n\t229,\n\t188,\n\t128,\n\t230,\n\t148,\n\t190,\n\t229,\n\t138,\n\t160,\n\t231,\n\t155,\n\t159,\n\t229,\n\t143,\n\t151,\n\t229,\n\t136,\n\t176,\n\t228,\n\t186,\n\t140,\n\t230,\n\t137,\n\t139,\n\t229,\n\t164,\n\t167,\n\t233,\n\t135,\n\t143,\n\t230,\n\t136,\n\t144,\n\t228,\n\t186,\n\t186,\n\t230,\n\t149,\n\t176,\n\t233,\n\t135,\n\t143,\n\t229,\n\t133,\n\t177,\n\t228,\n\t186,\n\t171,\n\t229,\n\t140,\n\t186,\n\t229,\n\t159,\n\t159,\n\t229,\n\t165,\n\t179,\n\t229,\n\t173,\n\t169,\n\t229,\n\t142,\n\t159,\n\t229,\n\t136,\n\t153,\n\t230,\n\t137,\n\t128,\n\t229,\n\t156,\n\t168,\n\t231,\n\t187,\n\t147,\n\t230,\n\t157,\n\t159,\n\t233,\n\t128,\n\t154,\n\t228,\n\t191,\n\t161,\n\t232,\n\t182,\n\t133,\n\t231,\n\t186,\n\t167,\n\t233,\n\t133,\n\t141,\n\t231,\n\t189,\n\t174,\n\t229,\n\t189,\n\t147,\n\t230,\n\t151,\n\t182,\n\t228,\n\t188,\n\t152,\n\t231,\n\t167,\n\t128,\n\t230,\n\t128,\n\t167,\n\t230,\n\t132,\n\t159,\n\t230,\n\t136,\n\t191,\n\t228,\n\t186,\n\t167,\n\t233,\n\t129,\n\t138,\n\t230,\n\t136,\n\t178,\n\t229,\n\t135,\n\t186,\n\t229,\n\t143,\n\t163,\n\t230,\n\t143,\n\t144,\n\t228,\n\t186,\n\t164,\n\t229,\n\t176,\n\t177,\n\t228,\n\t184,\n\t154,\n\t228,\n\t191,\n\t157,\n\t229,\n\t129,\n\t165,\n\t231,\n\t168,\n\t139,\n\t229,\n\t186,\n\t166,\n\t229,\n\t143,\n\t130,\n\t230,\n\t149,\n\t176,\n\t228,\n\t186,\n\t139,\n\t228,\n\t184,\n\t154,\n\t230,\n\t149,\n\t180,\n\t228,\n\t184,\n\t170,\n\t229,\n\t177,\n\t177,\n\t228,\n\t184,\n\t156,\n\t230,\n\t131,\n\t133,\n\t230,\n\t132,\n\t159,\n\t231,\n\t137,\n\t185,\n\t230,\n\t174,\n\t138,\n\t229,\n\t136,\n\t134,\n\t233,\n\t161,\n\t158,\n\t230,\n\t144,\n\t156,\n\t229,\n\t176,\n\t139,\n\t229,\n\t177,\n\t158,\n\t228,\n\t186,\n\t142,\n\t233,\n\t151,\n\t168,\n\t230,\n\t136,\n\t183,\n\t232,\n\t180,\n\t162,\n\t229,\n\t138,\n\t161,\n\t229,\n\t163,\n\t176,\n\t233,\n\t159,\n\t179,\n\t229,\n\t143,\n\t138,\n\t229,\n\t133,\n\t182,\n\t232,\n\t180,\n\t162,\n\t231,\n\t187,\n\t143,\n\t229,\n\t157,\n\t154,\n\t230,\n\t140,\n\t129,\n\t229,\n\t185,\n\t178,\n\t233,\n\t131,\n\t168,\n\t230,\n\t136,\n\t144,\n\t231,\n\t171,\n\t139,\n\t229,\n\t136,\n\t169,\n\t231,\n\t155,\n\t138,\n\t232,\n\t128,\n\t131,\n\t232,\n\t153,\n\t145,\n\t230,\n\t136,\n\t144,\n\t233,\n\t131,\n\t189,\n\t229,\n\t140,\n\t133,\n\t232,\n\t163,\n\t133,\n\t231,\n\t148,\n\t168,\n\t230,\n\t136,\n\t182,\n\t230,\n\t175,\n\t148,\n\t232,\n\t181,\n\t155,\n\t230,\n\t150,\n\t135,\n\t230,\n\t152,\n\t142,\n\t230,\n\t139,\n\t155,\n\t229,\n\t149,\n\t134,\n\t229,\n\t174,\n\t140,\n\t230,\n\t149,\n\t180,\n\t231,\n\t156,\n\t159,\n\t230,\n\t152,\n\t175,\n\t231,\n\t156,\n\t188,\n\t231,\n\t157,\n\t155,\n\t228,\n\t188,\n\t153,\n\t228,\n\t188,\n\t180,\n\t229,\n\t168,\n\t129,\n\t230,\n\t156,\n\t155,\n\t233,\n\t162,\n\t134,\n\t229,\n\t159,\n\t159,\n\t229,\n\t141,\n\t171,\n\t231,\n\t148,\n\t159,\n\t228,\n\t188,\n\t152,\n\t230,\n\t131,\n\t160,\n\t232,\n\t171,\n\t150,\n\t229,\n\t163,\n\t135,\n\t229,\n\t133,\n\t172,\n\t229,\n\t133,\n\t177,\n\t232,\n\t137,\n\t175,\n\t229,\n\t165,\n\t189,\n\t229,\n\t133,\n\t133,\n\t229,\n\t136,\n\t134,\n\t231,\n\t172,\n\t166,\n\t229,\n\t144,\n\t136,\n\t233,\n\t153,\n\t132,\n\t228,\n\t187,\n\t182,\n\t231,\n\t137,\n\t185,\n\t231,\n\t130,\n\t185,\n\t228,\n\t184,\n\t141,\n\t229,\n\t143,\n\t175,\n\t232,\n\t139,\n\t177,\n\t230,\n\t150,\n\t135,\n\t232,\n\t181,\n\t132,\n\t228,\n\t186,\n\t167,\n\t230,\n\t160,\n\t185,\n\t230,\n\t156,\n\t172,\n\t230,\n\t152,\n\t142,\n\t230,\n\t152,\n\t190,\n\t229,\n\t175,\n\t134,\n\t231,\n\t162,\n\t188,\n\t229,\n\t133,\n\t172,\n\t228,\n\t188,\n\t151,\n\t230,\n\t176,\n\t145,\n\t230,\n\t151,\n\t143,\n\t230,\n\t155,\n\t180,\n\t229,\n\t138,\n\t160,\n\t228,\n\t186,\n\t171,\n\t229,\n\t143,\n\t151,\n\t229,\n\t144,\n\t140,\n\t229,\n\t173,\n\t166,\n\t229,\n\t144,\n\t175,\n\t229,\n\t138,\n\t168,\n\t233,\n\t128,\n\t130,\n\t229,\n\t144,\n\t136,\n\t229,\n\t142,\n\t159,\n\t230,\n\t157,\n\t165,\n\t233,\n\t151,\n\t174,\n\t231,\n\t173,\n\t148,\n\t230,\n\t156,\n\t172,\n\t230,\n\t150,\n\t135,\n\t231,\n\t190,\n\t142,\n\t233,\n\t163,\n\t159,\n\t231,\n\t187,\n\t191,\n\t232,\n\t137,\n\t178,\n\t231,\n\t168,\n\t179,\n\t229,\n\t174,\n\t154,\n\t231,\n\t187,\n\t136,\n\t228,\n\t186,\n\t142,\n\t231,\n\t148,\n\t159,\n\t231,\n\t137,\n\t169,\n\t228,\n\t190,\n\t155,\n\t230,\n\t177,\n\t130,\n\t230,\n\t144,\n\t156,\n\t231,\n\t139,\n\t144,\n\t229,\n\t138,\n\t155,\n\t233,\n\t135,\n\t143,\n\t228,\n\t184,\n\t165,\n\t233,\n\t135,\n\t141,\n\t230,\n\t176,\n\t184,\n\t232,\n\t191,\n\t156,\n\t229,\n\t134,\n\t153,\n\t231,\n\t156,\n\t159,\n\t230,\n\t156,\n\t137,\n\t233,\n\t153,\n\t144,\n\t231,\n\t171,\n\t158,\n\t228,\n\t186,\n\t137,\n\t229,\n\t175,\n\t185,\n\t232,\n\t177,\n\t161,\n\t232,\n\t180,\n\t185,\n\t231,\n\t148,\n\t168,\n\t228,\n\t184,\n\t141,\n\t229,\n\t165,\n\t189,\n\t231,\n\t187,\n\t157,\n\t229,\n\t175,\n\t185,\n\t229,\n\t141,\n\t129,\n\t229,\n\t136,\n\t134,\n\t228,\n\t191,\n\t131,\n\t232,\n\t191,\n\t155,\n\t231,\n\t130,\n\t185,\n\t232,\n\t175,\n\t132,\n\t229,\n\t189,\n\t177,\n\t233,\n\t159,\n\t179,\n\t228,\n\t188,\n\t152,\n\t229,\n\t138,\n\t191,\n\t228,\n\t184,\n\t141,\n\t229,\n\t176,\n\t145,\n\t230,\n\t172,\n\t163,\n\t232,\n\t181,\n\t143,\n\t229,\n\t185,\n\t182,\n\t228,\n\t184,\n\t148,\n\t230,\n\t156,\n\t137,\n\t231,\n\t130,\n\t185,\n\t230,\n\t150,\n\t185,\n\t229,\n\t144,\n\t145,\n\t229,\n\t133,\n\t168,\n\t230,\n\t150,\n\t176,\n\t228,\n\t191,\n\t161,\n\t231,\n\t148,\n\t168,\n\t232,\n\t174,\n\t190,\n\t230,\n\t150,\n\t189,\n\t229,\n\t189,\n\t162,\n\t232,\n\t177,\n\t161,\n\t232,\n\t181,\n\t132,\n\t230,\n\t160,\n\t188,\n\t231,\n\t170,\n\t129,\n\t231,\n\t160,\n\t180,\n\t233,\n\t154,\n\t143,\n\t231,\n\t157,\n\t128,\n\t233,\n\t135,\n\t141,\n\t229,\n\t164,\n\t167,\n\t228,\n\t186,\n\t142,\n\t230,\n\t152,\n\t175,\n\t230,\n\t175,\n\t149,\n\t228,\n\t184,\n\t154,\n\t230,\n\t153,\n\t186,\n\t232,\n\t131,\n\t189,\n\t229,\n\t140,\n\t150,\n\t229,\n\t183,\n\t165,\n\t229,\n\t174,\n\t140,\n\t231,\n\t190,\n\t142,\n\t229,\n\t149,\n\t134,\n\t229,\n\t159,\n\t142,\n\t231,\n\t187,\n\t159,\n\t228,\n\t184,\n\t128,\n\t229,\n\t135,\n\t186,\n\t231,\n\t137,\n\t136,\n\t230,\n\t137,\n\t147,\n\t233,\n\t128,\n\t160,\n\t231,\n\t148,\n\t162,\n\t229,\n\t147,\n\t129,\n\t230,\n\t166,\n\t130,\n\t229,\n\t134,\n\t181,\n\t231,\n\t148,\n\t168,\n\t228,\n\t186,\n\t142,\n\t228,\n\t191,\n\t157,\n\t231,\n\t149,\n\t153,\n\t229,\n\t155,\n\t160,\n\t231,\n\t180,\n\t160,\n\t228,\n\t184,\n\t173,\n\t229,\n\t156,\n\t139,\n\t229,\n\t173,\n\t152,\n\t229,\n\t130,\n\t168,\n\t232,\n\t180,\n\t180,\n\t229,\n\t155,\n\t190,\n\t230,\n\t156,\n\t128,\n\t230,\n\t132,\n\t155,\n\t233,\n\t149,\n\t191,\n\t230,\n\t156,\n\t159,\n\t229,\n\t143,\n\t163,\n\t228,\n\t187,\n\t183,\n\t231,\n\t144,\n\t134,\n\t232,\n\t180,\n\t162,\n\t229,\n\t159,\n\t186,\n\t229,\n\t156,\n\t176,\n\t229,\n\t174,\n\t137,\n\t230,\n\t142,\n\t146,\n\t230,\n\t173,\n\t166,\n\t230,\n\t177,\n\t137,\n\t233,\n\t135,\n\t140,\n\t233,\n\t157,\n\t162,\n\t229,\n\t136,\n\t155,\n\t229,\n\t187,\n\t186,\n\t229,\n\t164,\n\t169,\n\t231,\n\t169,\n\t186,\n\t233,\n\t166,\n\t150,\n\t229,\n\t133,\n\t136,\n\t229,\n\t174,\n\t140,\n\t229,\n\t150,\n\t132,\n\t233,\n\t169,\n\t177,\n\t229,\n\t138,\n\t168,\n\t228,\n\t184,\n\t139,\n\t233,\n\t157,\n\t162,\n\t228,\n\t184,\n\t141,\n\t229,\n\t134,\n\t141,\n\t232,\n\t175,\n\t154,\n\t228,\n\t191,\n\t161,\n\t230,\n\t132,\n\t143,\n\t228,\n\t185,\n\t137,\n\t233,\n\t152,\n\t179,\n\t229,\n\t133,\n\t137,\n\t232,\n\t139,\n\t177,\n\t229,\n\t155,\n\t189,\n\t230,\n\t188,\n\t130,\n\t228,\n\t186,\n\t174,\n\t229,\n\t134,\n\t155,\n\t228,\n\t186,\n\t139,\n\t231,\n\t142,\n\t169,\n\t229,\n\t174,\n\t182,\n\t231,\n\t190,\n\t164,\n\t228,\n\t188,\n\t151,\n\t229,\n\t134,\n\t156,\n\t230,\n\t176,\n\t145,\n\t229,\n\t141,\n\t179,\n\t229,\n\t143,\n\t175,\n\t229,\n\t144,\n\t141,\n\t231,\n\t168,\n\t177,\n\t229,\n\t174,\n\t182,\n\t229,\n\t133,\n\t183,\n\t229,\n\t138,\n\t168,\n\t231,\n\t148,\n\t187,\n\t230,\n\t131,\n\t179,\n\t229,\n\t136,\n\t176,\n\t230,\n\t179,\n\t168,\n\t230,\n\t152,\n\t142,\n\t229,\n\t176,\n\t143,\n\t229,\n\t173,\n\t166,\n\t230,\n\t128,\n\t167,\n\t232,\n\t131,\n\t189,\n\t232,\n\t128,\n\t131,\n\t231,\n\t160,\n\t148,\n\t231,\n\t161,\n\t172,\n\t228,\n\t187,\n\t182,\n\t232,\n\t167,\n\t130,\n\t231,\n\t156,\n\t139,\n\t230,\n\t184,\n\t133,\n\t230,\n\t165,\n\t154,\n\t230,\n\t144,\n\t158,\n\t231,\n\t172,\n\t145,\n\t233,\n\t166,\n\t150,\n\t233,\n\t160,\n\t129,\n\t233,\n\t187,\n\t132,\n\t233,\n\t135,\n\t145,\n\t233,\n\t128,\n\t130,\n\t231,\n\t148,\n\t168,\n\t230,\n\t177,\n\t159,\n\t232,\n\t139,\n\t143,\n\t231,\n\t156,\n\t159,\n\t229,\n\t174,\n\t158,\n\t228,\n\t184,\n\t187,\n\t231,\n\t174,\n\t161,\n\t233,\n\t152,\n\t182,\n\t230,\n\t174,\n\t181,\n\t232,\n\t168,\n\t187,\n\t229,\n\t134,\n\t138,\n\t231,\n\t191,\n\t187,\n\t232,\n\t175,\n\t145,\n\t230,\n\t157,\n\t131,\n\t229,\n\t136,\n\t169,\n\t229,\n\t129,\n\t154,\n\t229,\n\t165,\n\t189,\n\t228,\n\t188,\n\t188,\n\t228,\n\t185,\n\t142,\n\t233,\n\t128,\n\t154,\n\t232,\n\t174,\n\t175,\n\t230,\n\t150,\n\t189,\n\t229,\n\t183,\n\t165,\n\t231,\n\t139,\n\t128,\n\t230,\n\t133,\n\t139,\n\t228,\n\t185,\n\t159,\n\t232,\n\t174,\n\t184,\n\t231,\n\t142,\n\t175,\n\t228,\n\t191,\n\t157,\n\t229,\n\t159,\n\t185,\n\t229,\n\t133,\n\t187,\n\t230,\n\t166,\n\t130,\n\t229,\n\t191,\n\t181,\n\t229,\n\t164,\n\t167,\n\t229,\n\t158,\n\t139,\n\t230,\n\t156,\n\t186,\n\t231,\n\t165,\n\t168,\n\t231,\n\t144,\n\t134,\n\t232,\n\t167,\n\t163,\n\t229,\n\t140,\n\t191,\n\t229,\n\t144,\n\t141,\n\t99,\n\t117,\n\t97,\n\t110,\n\t100,\n\t111,\n\t101,\n\t110,\n\t118,\n\t105,\n\t97,\n\t114,\n\t109,\n\t97,\n\t100,\n\t114,\n\t105,\n\t100,\n\t98,\n\t117,\n\t115,\n\t99,\n\t97,\n\t114,\n\t105,\n\t110,\n\t105,\n\t99,\n\t105,\n\t111,\n\t116,\n\t105,\n\t101,\n\t109,\n\t112,\n\t111,\n\t112,\n\t111,\n\t114,\n\t113,\n\t117,\n\t101,\n\t99,\n\t117,\n\t101,\n\t110,\n\t116,\n\t97,\n\t101,\n\t115,\n\t116,\n\t97,\n\t100,\n\t111,\n\t112,\n\t117,\n\t101,\n\t100,\n\t101,\n\t110,\n\t106,\n\t117,\n\t101,\n\t103,\n\t111,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t101,\n\t115,\n\t116,\n\t195,\n\t161,\n\t110,\n\t110,\n\t111,\n\t109,\n\t98,\n\t114,\n\t101,\n\t116,\n\t105,\n\t101,\n\t110,\n\t101,\n\t110,\n\t112,\n\t101,\n\t114,\n\t102,\n\t105,\n\t108,\n\t109,\n\t97,\n\t110,\n\t101,\n\t114,\n\t97,\n\t97,\n\t109,\n\t105,\n\t103,\n\t111,\n\t115,\n\t99,\n\t105,\n\t117,\n\t100,\n\t97,\n\t100,\n\t99,\n\t101,\n\t110,\n\t116,\n\t114,\n\t111,\n\t97,\n\t117,\n\t110,\n\t113,\n\t117,\n\t101,\n\t112,\n\t117,\n\t101,\n\t100,\n\t101,\n\t115,\n\t100,\n\t101,\n\t110,\n\t116,\n\t114,\n\t111,\n\t112,\n\t114,\n\t105,\n\t109,\n\t101,\n\t114,\n\t112,\n\t114,\n\t101,\n\t99,\n\t105,\n\t111,\n\t115,\n\t101,\n\t103,\n\t195,\n\t186,\n\t110,\n\t98,\n\t117,\n\t101,\n\t110,\n\t111,\n\t115,\n\t118,\n\t111,\n\t108,\n\t118,\n\t101,\n\t114,\n\t112,\n\t117,\n\t110,\n\t116,\n\t111,\n\t115,\n\t115,\n\t101,\n\t109,\n\t97,\n\t110,\n\t97,\n\t104,\n\t97,\n\t98,\n\t195,\n\t173,\n\t97,\n\t97,\n\t103,\n\t111,\n\t115,\n\t116,\n\t111,\n\t110,\n\t117,\n\t101,\n\t118,\n\t111,\n\t115,\n\t117,\n\t110,\n\t105,\n\t100,\n\t111,\n\t115,\n\t99,\n\t97,\n\t114,\n\t108,\n\t111,\n\t115,\n\t101,\n\t113,\n\t117,\n\t105,\n\t112,\n\t111,\n\t110,\n\t105,\n\t195,\n\t177,\n\t111,\n\t115,\n\t109,\n\t117,\n\t99,\n\t104,\n\t111,\n\t115,\n\t97,\n\t108,\n\t103,\n\t117,\n\t110,\n\t97,\n\t99,\n\t111,\n\t114,\n\t114,\n\t101,\n\t111,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t110,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t114,\n\t97,\n\t114,\n\t114,\n\t105,\n\t98,\n\t97,\n\t109,\n\t97,\n\t114,\n\t195,\n\t173,\n\t97,\n\t104,\n\t111,\n\t109,\n\t98,\n\t114,\n\t101,\n\t101,\n\t109,\n\t112,\n\t108,\n\t101,\n\t111,\n\t118,\n\t101,\n\t114,\n\t100,\n\t97,\n\t100,\n\t99,\n\t97,\n\t109,\n\t98,\n\t105,\n\t111,\n\t109,\n\t117,\n\t99,\n\t104,\n\t97,\n\t115,\n\t102,\n\t117,\n\t101,\n\t114,\n\t111,\n\t110,\n\t112,\n\t97,\n\t115,\n\t97,\n\t100,\n\t111,\n\t108,\n\t195,\n\t173,\n\t110,\n\t101,\n\t97,\n\t112,\n\t97,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t117,\n\t101,\n\t118,\n\t97,\n\t115,\n\t99,\n\t117,\n\t114,\n\t115,\n\t111,\n\t115,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t97,\n\t113,\n\t117,\n\t105,\n\t101,\n\t114,\n\t111,\n\t108,\n\t105,\n\t98,\n\t114,\n\t111,\n\t115,\n\t99,\n\t117,\n\t97,\n\t110,\n\t116,\n\t111,\n\t97,\n\t99,\n\t99,\n\t101,\n\t115,\n\t111,\n\t109,\n\t105,\n\t103,\n\t117,\n\t101,\n\t108,\n\t118,\n\t97,\n\t114,\n\t105,\n\t111,\n\t115,\n\t99,\n\t117,\n\t97,\n\t116,\n\t114,\n\t111,\n\t116,\n\t105,\n\t101,\n\t110,\n\t101,\n\t115,\n\t103,\n\t114,\n\t117,\n\t112,\n\t111,\n\t115,\n\t115,\n\t101,\n\t114,\n\t195,\n\t161,\n\t110,\n\t101,\n\t117,\n\t114,\n\t111,\n\t112,\n\t97,\n\t109,\n\t101,\n\t100,\n\t105,\n\t111,\n\t115,\n\t102,\n\t114,\n\t101,\n\t110,\n\t116,\n\t101,\n\t97,\n\t99,\n\t101,\n\t114,\n\t99,\n\t97,\n\t100,\n\t101,\n\t109,\n\t195,\n\t161,\n\t115,\n\t111,\n\t102,\n\t101,\n\t114,\n\t116,\n\t97,\n\t99,\n\t111,\n\t99,\n\t104,\n\t101,\n\t115,\n\t109,\n\t111,\n\t100,\n\t101,\n\t108,\n\t111,\n\t105,\n\t116,\n\t97,\n\t108,\n\t105,\n\t97,\n\t108,\n\t101,\n\t116,\n\t114,\n\t97,\n\t115,\n\t97,\n\t108,\n\t103,\n\t195,\n\t186,\n\t110,\n\t99,\n\t111,\n\t109,\n\t112,\n\t114,\n\t97,\n\t99,\n\t117,\n\t97,\n\t108,\n\t101,\n\t115,\n\t101,\n\t120,\n\t105,\n\t115,\n\t116,\n\t101,\n\t99,\n\t117,\n\t101,\n\t114,\n\t112,\n\t111,\n\t115,\n\t105,\n\t101,\n\t110,\n\t100,\n\t111,\n\t112,\n\t114,\n\t101,\n\t110,\n\t115,\n\t97,\n\t108,\n\t108,\n\t101,\n\t103,\n\t97,\n\t114,\n\t118,\n\t105,\n\t97,\n\t106,\n\t101,\n\t115,\n\t100,\n\t105,\n\t110,\n\t101,\n\t114,\n\t111,\n\t109,\n\t117,\n\t114,\n\t99,\n\t105,\n\t97,\n\t112,\n\t111,\n\t100,\n\t114,\n\t195,\n\t161,\n\t112,\n\t117,\n\t101,\n\t115,\n\t116,\n\t111,\n\t100,\n\t105,\n\t97,\n\t114,\n\t105,\n\t111,\n\t112,\n\t117,\n\t101,\n\t98,\n\t108,\n\t111,\n\t113,\n\t117,\n\t105,\n\t101,\n\t114,\n\t101,\n\t109,\n\t97,\n\t110,\n\t117,\n\t101,\n\t108,\n\t112,\n\t114,\n\t111,\n\t112,\n\t105,\n\t111,\n\t99,\n\t114,\n\t105,\n\t115,\n\t105,\n\t115,\n\t99,\n\t105,\n\t101,\n\t114,\n\t116,\n\t111,\n\t115,\n\t101,\n\t103,\n\t117,\n\t114,\n\t111,\n\t109,\n\t117,\n\t101,\n\t114,\n\t116,\n\t101,\n\t102,\n\t117,\n\t101,\n\t110,\n\t116,\n\t101,\n\t99,\n\t101,\n\t114,\n\t114,\n\t97,\n\t114,\n\t103,\n\t114,\n\t97,\n\t110,\n\t100,\n\t101,\n\t101,\n\t102,\n\t101,\n\t99,\n\t116,\n\t111,\n\t112,\n\t97,\n\t114,\n\t116,\n\t101,\n\t115,\n\t109,\n\t101,\n\t100,\n\t105,\n\t100,\n\t97,\n\t112,\n\t114,\n\t111,\n\t112,\n\t105,\n\t97,\n\t111,\n\t102,\n\t114,\n\t101,\n\t99,\n\t101,\n\t116,\n\t105,\n\t101,\n\t114,\n\t114,\n\t97,\n\t101,\n\t45,\n\t109,\n\t97,\n\t105,\n\t108,\n\t118,\n\t97,\n\t114,\n\t105,\n\t97,\n\t115,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t115,\n\t102,\n\t117,\n\t116,\n\t117,\n\t114,\n\t111,\n\t111,\n\t98,\n\t106,\n\t101,\n\t116,\n\t111,\n\t115,\n\t101,\n\t103,\n\t117,\n\t105,\n\t114,\n\t114,\n\t105,\n\t101,\n\t115,\n\t103,\n\t111,\n\t110,\n\t111,\n\t114,\n\t109,\n\t97,\n\t115,\n\t109,\n\t105,\n\t115,\n\t109,\n\t111,\n\t115,\n\t195,\n\t186,\n\t110,\n\t105,\n\t99,\n\t111,\n\t99,\n\t97,\n\t109,\n\t105,\n\t110,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t115,\n\t114,\n\t97,\n\t122,\n\t195,\n\t179,\n\t110,\n\t100,\n\t101,\n\t98,\n\t105,\n\t100,\n\t111,\n\t112,\n\t114,\n\t117,\n\t101,\n\t98,\n\t97,\n\t116,\n\t111,\n\t108,\n\t101,\n\t100,\n\t111,\n\t116,\n\t101,\n\t110,\n\t195,\n\t173,\n\t97,\n\t106,\n\t101,\n\t115,\n\t195,\n\t186,\n\t115,\n\t101,\n\t115,\n\t112,\n\t101,\n\t114,\n\t111,\n\t99,\n\t111,\n\t99,\n\t105,\n\t110,\n\t97,\n\t111,\n\t114,\n\t105,\n\t103,\n\t101,\n\t110,\n\t116,\n\t105,\n\t101,\n\t110,\n\t100,\n\t97,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t111,\n\t99,\n\t195,\n\t161,\n\t100,\n\t105,\n\t122,\n\t104,\n\t97,\n\t98,\n\t108,\n\t97,\n\t114,\n\t115,\n\t101,\n\t114,\n\t195,\n\t173,\n\t97,\n\t108,\n\t97,\n\t116,\n\t105,\n\t110,\n\t97,\n\t102,\n\t117,\n\t101,\n\t114,\n\t122,\n\t97,\n\t101,\n\t115,\n\t116,\n\t105,\n\t108,\n\t111,\n\t103,\n\t117,\n\t101,\n\t114,\n\t114,\n\t97,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t114,\n\t195,\n\t169,\n\t120,\n\t105,\n\t116,\n\t111,\n\t108,\n\t195,\n\t179,\n\t112,\n\t101,\n\t122,\n\t97,\n\t103,\n\t101,\n\t110,\n\t100,\n\t97,\n\t118,\n\t195,\n\t173,\n\t100,\n\t101,\n\t111,\n\t101,\n\t118,\n\t105,\n\t116,\n\t97,\n\t114,\n\t112,\n\t97,\n\t103,\n\t105,\n\t110,\n\t97,\n\t109,\n\t101,\n\t116,\n\t114,\n\t111,\n\t115,\n\t106,\n\t97,\n\t118,\n\t105,\n\t101,\n\t114,\n\t112,\n\t97,\n\t100,\n\t114,\n\t101,\n\t115,\n\t102,\n\t195,\n\t161,\n\t99,\n\t105,\n\t108,\n\t99,\n\t97,\n\t98,\n\t101,\n\t122,\n\t97,\n\t195,\n\t161,\n\t114,\n\t101,\n\t97,\n\t115,\n\t115,\n\t97,\n\t108,\n\t105,\n\t100,\n\t97,\n\t101,\n\t110,\n\t118,\n\t195,\n\t173,\n\t111,\n\t106,\n\t97,\n\t112,\n\t195,\n\t179,\n\t110,\n\t97,\n\t98,\n\t117,\n\t115,\n\t111,\n\t115,\n\t98,\n\t105,\n\t101,\n\t110,\n\t101,\n\t115,\n\t116,\n\t101,\n\t120,\n\t116,\n\t111,\n\t115,\n\t108,\n\t108,\n\t101,\n\t118,\n\t97,\n\t114,\n\t112,\n\t117,\n\t101,\n\t100,\n\t97,\n\t110,\n\t102,\n\t117,\n\t101,\n\t114,\n\t116,\n\t101,\n\t99,\n\t111,\n\t109,\n\t195,\n\t186,\n\t110,\n\t99,\n\t108,\n\t97,\n\t115,\n\t101,\n\t115,\n\t104,\n\t117,\n\t109,\n\t97,\n\t110,\n\t111,\n\t116,\n\t101,\n\t110,\n\t105,\n\t100,\n\t111,\n\t98,\n\t105,\n\t108,\n\t98,\n\t97,\n\t111,\n\t117,\n\t110,\n\t105,\n\t100,\n\t97,\n\t100,\n\t101,\n\t115,\n\t116,\n\t195,\n\t161,\n\t115,\n\t101,\n\t100,\n\t105,\n\t116,\n\t97,\n\t114,\n\t99,\n\t114,\n\t101,\n\t97,\n\t100,\n\t111,\n\t208,\n\t180,\n\t208,\n\t187,\n\t209,\n\t143,\n\t209,\n\t135,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t186,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t187,\n\t208,\n\t184,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t178,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t184,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t181,\n\t209,\n\t137,\n\t208,\n\t181,\n\t209,\n\t131,\n\t208,\n\t182,\n\t208,\n\t181,\n\t208,\n\t154,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t177,\n\t208,\n\t181,\n\t208,\n\t183,\n\t208,\n\t177,\n\t209,\n\t139,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t146,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t173,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t188,\n\t209,\n\t135,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t189,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t187,\n\t208,\n\t181,\n\t209,\n\t130,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t190,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t179,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t148,\n\t208,\n\t187,\n\t209,\n\t143,\n\t208,\n\t159,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t133,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t186,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t178,\n\t208,\n\t190,\n\t209,\n\t130,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t188,\n\t208,\n\t161,\n\t208,\n\t168,\n\t208,\n\t144,\n\t208,\n\t188,\n\t208,\n\t176,\n\t209,\n\t143,\n\t208,\n\t167,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t176,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t188,\n\t209,\n\t131,\n\t208,\n\t162,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t180,\n\t208,\n\t178,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t188,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t184,\n\t209,\n\t141,\n\t209,\n\t130,\n\t209,\n\t131,\n\t208,\n\t146,\n\t208,\n\t176,\n\t208,\n\t188,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t133,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t209,\n\t130,\n\t209,\n\t131,\n\t209,\n\t130,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t180,\n\t208,\n\t180,\n\t208,\n\t189,\n\t209,\n\t143,\n\t208,\n\t146,\n\t208,\n\t190,\n\t209,\n\t130,\n\t209,\n\t130,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t185,\n\t208,\n\t146,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t188,\n\t209,\n\t129,\n\t208,\n\t176,\n\t208,\n\t188,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t130,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t177,\n\t208,\n\t158,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t184,\n\t209,\n\t128,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t181,\n\t208,\n\t158,\n\t208,\n\t158,\n\t208,\n\t158,\n\t208,\n\t187,\n\t208,\n\t184,\n\t209,\n\t134,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t158,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t180,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t180,\n\t208,\n\t178,\n\t208,\n\t181,\n\t208,\n\t190,\n\t208,\n\t189,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t131,\n\t208,\n\t180,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t148,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t173,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t190,\n\t106,\n\t97,\n\t103,\n\t114,\n\t97,\n\t110,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t165,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t165,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t152,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t181,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t181,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t147,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t128,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t137,\n\t216,\n\t165,\n\t217,\n\t132,\n\t217,\n\t137,\n\t217,\n\t135,\n\t216,\n\t176,\n\t216,\n\t167,\n\t216,\n\t162,\n\t216,\n\t174,\n\t216,\n\t177,\n\t216,\n\t185,\n\t216,\n\t175,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t137,\n\t217,\n\t135,\n\t216,\n\t176,\n\t217,\n\t135,\n\t216,\n\t181,\n\t217,\n\t136,\n\t216,\n\t177,\n\t216,\n\t186,\n\t217,\n\t138,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t167,\n\t217,\n\t134,\n\t217,\n\t136,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t168,\n\t217,\n\t138,\n\t217,\n\t134,\n\t216,\n\t185,\n\t216,\n\t177,\n\t216,\n\t182,\n\t216,\n\t176,\n\t217,\n\t132,\n\t217,\n\t131,\n\t217,\n\t135,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t138,\n\t217,\n\t136,\n\t217,\n\t133,\n\t217,\n\t130,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t138,\n\t216,\n\t167,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t131,\n\t217,\n\t134,\n\t216,\n\t173,\n\t216,\n\t170,\n\t217,\n\t137,\n\t217,\n\t130,\n\t216,\n\t168,\n\t217,\n\t132,\n\t217,\n\t136,\n\t216,\n\t173,\n\t216,\n\t169,\n\t216,\n\t167,\n\t216,\n\t174,\n\t216,\n\t177,\n\t217,\n\t129,\n\t217,\n\t130,\n\t216,\n\t183,\n\t216,\n\t185,\n\t216,\n\t168,\n\t216,\n\t175,\n\t216,\n\t177,\n\t217,\n\t131,\n\t217,\n\t134,\n\t216,\n\t165,\n\t216,\n\t176,\n\t216,\n\t167,\n\t217,\n\t131,\n\t217,\n\t133,\n\t216,\n\t167,\n\t216,\n\t167,\n\t216,\n\t173,\n\t216,\n\t175,\n\t216,\n\t165,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t129,\n\t217,\n\t138,\n\t217,\n\t135,\n\t216,\n\t168,\n\t216,\n\t185,\n\t216,\n\t182,\n\t217,\n\t131,\n\t217,\n\t138,\n\t217,\n\t129,\n\t216,\n\t168,\n\t216,\n\t173,\n\t216,\n\t171,\n\t217,\n\t136,\n\t217,\n\t133,\n\t217,\n\t134,\n\t217,\n\t136,\n\t217,\n\t135,\n\t217,\n\t136,\n\t216,\n\t163,\n\t217,\n\t134,\n\t216,\n\t167,\n\t216,\n\t172,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t135,\n\t216,\n\t167,\n\t216,\n\t179,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t185,\n\t217,\n\t134,\n\t216,\n\t175,\n\t217,\n\t132,\n\t217,\n\t138,\n\t216,\n\t179,\n\t216,\n\t185,\n\t216,\n\t168,\n\t216,\n\t177,\n\t216,\n\t181,\n\t217,\n\t132,\n\t217,\n\t137,\n\t217,\n\t133,\n\t217,\n\t134,\n\t216,\n\t176,\n\t216,\n\t168,\n\t217,\n\t135,\n\t216,\n\t167,\n\t216,\n\t163,\n\t217,\n\t134,\n\t217,\n\t135,\n\t217,\n\t133,\n\t216,\n\t171,\n\t217,\n\t132,\n\t217,\n\t131,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t173,\n\t217,\n\t138,\n\t216,\n\t171,\n\t217,\n\t133,\n\t216,\n\t181,\n\t216,\n\t177,\n\t216,\n\t180,\n\t216,\n\t177,\n\t216,\n\t173,\n\t216,\n\t173,\n\t217,\n\t136,\n\t217,\n\t132,\n\t217,\n\t136,\n\t217,\n\t129,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t176,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t131,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t177,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t129,\n\t216,\n\t163,\n\t216,\n\t168,\n\t217,\n\t136,\n\t216,\n\t174,\n\t216,\n\t167,\n\t216,\n\t181,\n\t216,\n\t163,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t134,\n\t217,\n\t135,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t138,\n\t216,\n\t185,\n\t216,\n\t182,\n\t217,\n\t136,\n\t217,\n\t136,\n\t217,\n\t130,\n\t216,\n\t175,\n\t216,\n\t167,\n\t216,\n\t168,\n\t217,\n\t134,\n\t216,\n\t174,\n\t217,\n\t138,\n\t216,\n\t177,\n\t216,\n\t168,\n\t217,\n\t134,\n\t216,\n\t170,\n\t217,\n\t132,\n\t217,\n\t131,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t216,\n\t161,\n\t217,\n\t136,\n\t217,\n\t135,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t168,\n\t217,\n\t136,\n\t217,\n\t130,\n\t216,\n\t181,\n\t216,\n\t181,\n\t217,\n\t136,\n\t217,\n\t133,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t130,\n\t217,\n\t133,\n\t216,\n\t163,\n\t216,\n\t173,\n\t216,\n\t175,\n\t217,\n\t134,\n\t216,\n\t173,\n\t217,\n\t134,\n\t216,\n\t185,\n\t216,\n\t175,\n\t217,\n\t133,\n\t216,\n\t177,\n\t216,\n\t163,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t173,\n\t216,\n\t169,\n\t217,\n\t131,\n\t216,\n\t170,\n\t216,\n\t168,\n\t216,\n\t175,\n\t217,\n\t136,\n\t217,\n\t134,\n\t217,\n\t138,\n\t216,\n\t172,\n\t216,\n\t168,\n\t217,\n\t133,\n\t217,\n\t134,\n\t217,\n\t135,\n\t216,\n\t170,\n\t216,\n\t173,\n\t216,\n\t170,\n\t216,\n\t172,\n\t217,\n\t135,\n\t216,\n\t169,\n\t216,\n\t179,\n\t217,\n\t134,\n\t216,\n\t169,\n\t217,\n\t138,\n\t216,\n\t170,\n\t217,\n\t133,\n\t217,\n\t131,\n\t216,\n\t177,\n\t216,\n\t169,\n\t216,\n\t186,\n\t216,\n\t178,\n\t216,\n\t169,\n\t217,\n\t134,\n\t217,\n\t129,\n\t216,\n\t179,\n\t216,\n\t168,\n\t217,\n\t138,\n\t216,\n\t170,\n\t217,\n\t132,\n\t217,\n\t132,\n\t217,\n\t135,\n\t217,\n\t132,\n\t217,\n\t134,\n\t216,\n\t167,\n\t216,\n\t170,\n\t217,\n\t132,\n\t217,\n\t131,\n\t217,\n\t130,\n\t217,\n\t132,\n\t216,\n\t168,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t167,\n\t216,\n\t185,\n\t217,\n\t134,\n\t217,\n\t135,\n\t216,\n\t163,\n\t217,\n\t136,\n\t217,\n\t132,\n\t216,\n\t180,\n\t217,\n\t138,\n\t216,\n\t161,\n\t217,\n\t134,\n\t217,\n\t136,\n\t216,\n\t177,\n\t216,\n\t163,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t129,\n\t217,\n\t138,\n\t217,\n\t131,\n\t216,\n\t168,\n\t217,\n\t131,\n\t217,\n\t132,\n\t216,\n\t176,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t177,\n\t216,\n\t170,\n\t216,\n\t168,\n\t216,\n\t168,\n\t216,\n\t163,\n\t217,\n\t134,\n\t217,\n\t135,\n\t217,\n\t133,\n\t216,\n\t179,\n\t216,\n\t167,\n\t217,\n\t134,\n\t217,\n\t131,\n\t216,\n\t168,\n\t217,\n\t138,\n\t216,\n\t185,\n\t217,\n\t129,\n\t217,\n\t130,\n\t216,\n\t175,\n\t216,\n\t173,\n\t216,\n\t179,\n\t217,\n\t134,\n\t217,\n\t132,\n\t217,\n\t135,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t185,\n\t216,\n\t177,\n\t216,\n\t163,\n\t217,\n\t135,\n\t217,\n\t132,\n\t216,\n\t180,\n\t217,\n\t135,\n\t216,\n\t177,\n\t217,\n\t130,\n\t216,\n\t183,\n\t216,\n\t177,\n\t216,\n\t183,\n\t217,\n\t132,\n\t216,\n\t168,\n\t112,\n\t114,\n\t111,\n\t102,\n\t105,\n\t108,\n\t101,\n\t115,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t101,\n\t100,\n\t101,\n\t102,\n\t97,\n\t117,\n\t108,\n\t116,\n\t104,\n\t105,\n\t109,\n\t115,\n\t101,\n\t108,\n\t102,\n\t100,\n\t101,\n\t116,\n\t97,\n\t105,\n\t108,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t101,\n\t100,\n\t109,\n\t101,\n\t115,\n\t115,\n\t97,\n\t103,\n\t101,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t102,\n\t97,\n\t115,\n\t104,\n\t105,\n\t111,\n\t110,\n\t60,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t121,\n\t97,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t100,\n\t115,\n\t116,\n\t111,\n\t114,\n\t105,\n\t101,\n\t115,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t115,\n\t114,\n\t117,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t115,\n\t119,\n\t114,\n\t105,\n\t116,\n\t105,\n\t110,\n\t103,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t115,\n\t118,\n\t105,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t119,\n\t101,\n\t108,\n\t99,\n\t111,\n\t109,\n\t101,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t117,\n\t110,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t110,\n\t101,\n\t116,\n\t119,\n\t111,\n\t114,\n\t107,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t110,\n\t121,\n\t100,\n\t121,\n\t110,\n\t97,\n\t109,\n\t105,\n\t99,\n\t98,\n\t114,\n\t111,\n\t119,\n\t115,\n\t101,\n\t114,\n\t112,\n\t114,\n\t105,\n\t118,\n\t97,\n\t99,\n\t121,\n\t112,\n\t114,\n\t111,\n\t98,\n\t108,\n\t101,\n\t109,\n\t83,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t101,\n\t114,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t114,\n\t101,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t114,\n\t101,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t119,\n\t101,\n\t98,\n\t115,\n\t105,\n\t116,\n\t101,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t102,\n\t114,\n\t105,\n\t101,\n\t110,\n\t100,\n\t115,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t119,\n\t111,\n\t114,\n\t107,\n\t105,\n\t110,\n\t103,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t109,\n\t105,\n\t108,\n\t108,\n\t105,\n\t111,\n\t110,\n\t99,\n\t104,\n\t97,\n\t110,\n\t110,\n\t101,\n\t108,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t46,\n\t97,\n\t100,\n\t100,\n\t114,\n\t101,\n\t115,\n\t115,\n\t118,\n\t105,\n\t115,\n\t105,\n\t116,\n\t101,\n\t100,\n\t119,\n\t101,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t99,\n\t111,\n\t114,\n\t114,\n\t101,\n\t99,\n\t116,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t101,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t102,\n\t111,\n\t114,\n\t119,\n\t97,\n\t114,\n\t100,\n\t121,\n\t111,\n\t117,\n\t32,\n\t99,\n\t97,\n\t110,\n\t114,\n\t101,\n\t109,\n\t111,\n\t118,\n\t101,\n\t100,\n\t115,\n\t117,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t108,\n\t97,\n\t114,\n\t99,\n\t104,\n\t105,\n\t118,\n\t101,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t114,\n\t101,\n\t97,\n\t100,\n\t105,\n\t110,\n\t103,\n\t108,\n\t105,\n\t98,\n\t114,\n\t97,\n\t114,\n\t121,\n\t108,\n\t105,\n\t109,\n\t105,\n\t116,\n\t101,\n\t100,\n\t109,\n\t97,\n\t110,\n\t97,\n\t103,\n\t101,\n\t114,\n\t102,\n\t117,\n\t114,\n\t116,\n\t104,\n\t101,\n\t114,\n\t115,\n\t117,\n\t109,\n\t109,\n\t97,\n\t114,\n\t121,\n\t109,\n\t97,\n\t99,\n\t104,\n\t105,\n\t110,\n\t101,\n\t109,\n\t105,\n\t110,\n\t117,\n\t116,\n\t101,\n\t115,\n\t112,\n\t114,\n\t105,\n\t118,\n\t97,\n\t116,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t120,\n\t116,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t115,\n\t111,\n\t99,\n\t105,\n\t101,\n\t116,\n\t121,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t115,\n\t119,\n\t114,\n\t105,\n\t116,\n\t116,\n\t101,\n\t110,\n\t101,\n\t110,\n\t97,\n\t98,\n\t108,\n\t101,\n\t100,\n\t116,\n\t114,\n\t105,\n\t103,\n\t103,\n\t101,\n\t114,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t115,\n\t108,\n\t111,\n\t97,\n\t100,\n\t105,\n\t110,\n\t103,\n\t101,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t112,\n\t97,\n\t114,\n\t116,\n\t110,\n\t101,\n\t114,\n\t102,\n\t105,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t112,\n\t101,\n\t114,\n\t102,\n\t101,\n\t99,\n\t116,\n\t109,\n\t101,\n\t97,\n\t110,\n\t105,\n\t110,\n\t103,\n\t115,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t115,\n\t107,\n\t101,\n\t101,\n\t112,\n\t105,\n\t110,\n\t103,\n\t99,\n\t117,\n\t108,\n\t116,\n\t117,\n\t114,\n\t101,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t44,\n\t106,\n\t111,\n\t117,\n\t114,\n\t110,\n\t97,\n\t108,\n\t112,\n\t114,\n\t111,\n\t106,\n\t101,\n\t99,\n\t116,\n\t115,\n\t117,\n\t114,\n\t102,\n\t97,\n\t99,\n\t101,\n\t115,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t101,\n\t120,\n\t112,\n\t105,\n\t114,\n\t101,\n\t115,\n\t114,\n\t101,\n\t118,\n\t105,\n\t101,\n\t119,\n\t115,\n\t98,\n\t97,\n\t108,\n\t97,\n\t110,\n\t99,\n\t101,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t67,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t80,\n\t108,\n\t101,\n\t97,\n\t115,\n\t101,\n\t32,\n\t111,\n\t112,\n\t105,\n\t110,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t97,\n\t118,\n\t101,\n\t114,\n\t97,\n\t103,\n\t101,\n\t112,\n\t114,\n\t105,\n\t109,\n\t97,\n\t114,\n\t121,\n\t118,\n\t105,\n\t108,\n\t108,\n\t97,\n\t103,\n\t101,\n\t83,\n\t112,\n\t97,\n\t110,\n\t105,\n\t115,\n\t104,\n\t103,\n\t97,\n\t108,\n\t108,\n\t101,\n\t114,\n\t121,\n\t100,\n\t101,\n\t99,\n\t108,\n\t105,\n\t110,\n\t101,\n\t109,\n\t101,\n\t101,\n\t116,\n\t105,\n\t110,\n\t103,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t113,\n\t117,\n\t97,\n\t108,\n\t105,\n\t116,\n\t121,\n\t109,\n\t101,\n\t97,\n\t115,\n\t117,\n\t114,\n\t101,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t101,\n\t115,\n\t115,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t119,\n\t114,\n\t105,\n\t116,\n\t101,\n\t114,\n\t115,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t101,\n\t114,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t97,\n\t108,\n\t114,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t115,\n\t102,\n\t105,\n\t103,\n\t117,\n\t114,\n\t101,\n\t115,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t115,\n\t104,\n\t111,\n\t108,\n\t100,\n\t105,\n\t110,\n\t103,\n\t100,\n\t105,\n\t115,\n\t112,\n\t117,\n\t116,\n\t101,\n\t101,\n\t97,\n\t114,\n\t108,\n\t105,\n\t101,\n\t114,\n\t101,\n\t120,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t100,\n\t105,\n\t103,\n\t105,\n\t116,\n\t97,\n\t108,\n\t112,\n\t105,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t65,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t109,\n\t97,\n\t114,\n\t114,\n\t105,\n\t101,\n\t100,\n\t116,\n\t114,\n\t97,\n\t102,\n\t102,\n\t105,\n\t99,\n\t108,\n\t101,\n\t97,\n\t100,\n\t105,\n\t110,\n\t103,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t100,\n\t99,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t108,\n\t118,\n\t105,\n\t99,\n\t116,\n\t111,\n\t114,\n\t121,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t115,\n\t47,\n\t114,\n\t101,\n\t97,\n\t115,\n\t111,\n\t110,\n\t115,\n\t115,\n\t116,\n\t117,\n\t100,\n\t105,\n\t101,\n\t115,\n\t102,\n\t101,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t108,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t109,\n\t117,\n\t115,\n\t116,\n\t32,\n\t98,\n\t101,\n\t115,\n\t99,\n\t104,\n\t111,\n\t111,\n\t108,\n\t115,\n\t86,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t117,\n\t115,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t101,\n\t112,\n\t105,\n\t115,\n\t111,\n\t100,\n\t101,\n\t112,\n\t108,\n\t97,\n\t121,\n\t105,\n\t110,\n\t103,\n\t103,\n\t114,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t111,\n\t98,\n\t118,\n\t105,\n\t111,\n\t117,\n\t115,\n\t111,\n\t118,\n\t101,\n\t114,\n\t108,\n\t97,\n\t121,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t60,\n\t47,\n\t117,\n\t108,\n\t62,\n\t13,\n\t10,\n\t119,\n\t114,\n\t97,\n\t112,\n\t112,\n\t101,\n\t114,\n\t97,\n\t108,\n\t114,\n\t101,\n\t97,\n\t100,\n\t121,\n\t99,\n\t101,\n\t114,\n\t116,\n\t97,\n\t105,\n\t110,\n\t114,\n\t101,\n\t97,\n\t108,\n\t105,\n\t116,\n\t121,\n\t115,\n\t116,\n\t111,\n\t114,\n\t97,\n\t103,\n\t101,\n\t97,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t100,\n\t101,\n\t115,\n\t107,\n\t116,\n\t111,\n\t112,\n\t111,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t100,\n\t112,\n\t97,\n\t116,\n\t116,\n\t101,\n\t114,\n\t110,\n\t117,\n\t110,\n\t117,\n\t115,\n\t117,\n\t97,\n\t108,\n\t68,\n\t105,\n\t103,\n\t105,\n\t116,\n\t97,\n\t108,\n\t99,\n\t97,\n\t112,\n\t105,\n\t116,\n\t97,\n\t108,\n\t87,\n\t101,\n\t98,\n\t115,\n\t105,\n\t116,\n\t101,\n\t102,\n\t97,\n\t105,\n\t108,\n\t117,\n\t114,\n\t101,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t114,\n\t101,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t65,\n\t110,\n\t100,\n\t114,\n\t111,\n\t105,\n\t100,\n\t100,\n\t101,\n\t99,\n\t97,\n\t100,\n\t101,\n\t115,\n\t114,\n\t101,\n\t103,\n\t117,\n\t108,\n\t97,\n\t114,\n\t32,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t32,\n\t97,\n\t110,\n\t105,\n\t109,\n\t97,\n\t108,\n\t115,\n\t114,\n\t101,\n\t108,\n\t101,\n\t97,\n\t115,\n\t101,\n\t65,\n\t117,\n\t116,\n\t111,\n\t109,\n\t97,\n\t116,\n\t103,\n\t101,\n\t116,\n\t116,\n\t105,\n\t110,\n\t103,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t115,\n\t110,\n\t111,\n\t116,\n\t104,\n\t105,\n\t110,\n\t103,\n\t80,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t99,\n\t97,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t108,\n\t101,\n\t116,\n\t116,\n\t101,\n\t114,\n\t115,\n\t99,\n\t97,\n\t112,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t108,\n\t105,\n\t99,\n\t101,\n\t110,\n\t115,\n\t101,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t115,\n\t69,\n\t110,\n\t103,\n\t108,\n\t97,\n\t110,\n\t100,\n\t61,\n\t49,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t72,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t61,\n\t32,\n\t110,\n\t101,\n\t119,\n\t32,\n\t67,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t108,\n\t117,\n\t112,\n\t100,\n\t97,\n\t116,\n\t101,\n\t100,\n\t83,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t78,\n\t101,\n\t116,\n\t119,\n\t111,\n\t114,\n\t107,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t101,\n\t110,\n\t116,\n\t119,\n\t97,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t67,\n\t111,\n\t108,\n\t108,\n\t101,\n\t103,\n\t101,\n\t116,\n\t111,\n\t111,\n\t108,\n\t98,\n\t97,\n\t114,\n\t114,\n\t101,\n\t109,\n\t97,\n\t105,\n\t110,\n\t115,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t68,\n\t101,\n\t117,\n\t116,\n\t115,\n\t99,\n\t104,\n\t102,\n\t105,\n\t110,\n\t97,\n\t110,\n\t99,\n\t101,\n\t119,\n\t111,\n\t114,\n\t107,\n\t101,\n\t114,\n\t115,\n\t113,\n\t117,\n\t105,\n\t99,\n\t107,\n\t108,\n\t121,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t101,\n\t120,\n\t97,\n\t99,\n\t116,\n\t108,\n\t121,\n\t115,\n\t101,\n\t116,\n\t116,\n\t105,\n\t110,\n\t103,\n\t100,\n\t105,\n\t115,\n\t101,\n\t97,\n\t115,\n\t101,\n\t83,\n\t111,\n\t99,\n\t105,\n\t101,\n\t116,\n\t121,\n\t119,\n\t101,\n\t97,\n\t112,\n\t111,\n\t110,\n\t115,\n\t101,\n\t120,\n\t104,\n\t105,\n\t98,\n\t105,\n\t116,\n\t38,\n\t108,\n\t116,\n\t59,\n\t33,\n\t45,\n\t45,\n\t67,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t108,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t101,\n\t115,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t101,\n\t100,\n\t111,\n\t117,\n\t116,\n\t108,\n\t105,\n\t110,\n\t101,\n\t97,\n\t116,\n\t116,\n\t97,\n\t99,\n\t107,\n\t115,\n\t100,\n\t101,\n\t118,\n\t105,\n\t99,\n\t101,\n\t115,\n\t40,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t112,\n\t117,\n\t114,\n\t112,\n\t111,\n\t115,\n\t101,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t61,\n\t34,\n\t77,\n\t111,\n\t98,\n\t105,\n\t108,\n\t101,\n\t32,\n\t107,\n\t105,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t115,\n\t104,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t73,\n\t116,\n\t97,\n\t108,\n\t105,\n\t97,\n\t110,\n\t100,\n\t114,\n\t111,\n\t112,\n\t112,\n\t101,\n\t100,\n\t104,\n\t101,\n\t97,\n\t118,\n\t105,\n\t108,\n\t121,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t115,\n\t45,\n\t49,\n\t39,\n\t93,\n\t41,\n\t59,\n\t10,\n\t99,\n\t111,\n\t110,\n\t102,\n\t105,\n\t114,\n\t109,\n\t67,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t97,\n\t100,\n\t118,\n\t97,\n\t110,\n\t99,\n\t101,\n\t115,\n\t104,\n\t97,\n\t114,\n\t105,\n\t110,\n\t103,\n\t111,\n\t112,\n\t101,\n\t110,\n\t105,\n\t110,\n\t103,\n\t100,\n\t114,\n\t97,\n\t119,\n\t105,\n\t110,\n\t103,\n\t98,\n\t105,\n\t108,\n\t108,\n\t105,\n\t111,\n\t110,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t71,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t121,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t60,\n\t47,\n\t102,\n\t111,\n\t114,\n\t109,\n\t62,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t119,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t101,\n\t100,\n\t83,\n\t99,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t99,\n\t97,\n\t116,\n\t97,\n\t108,\n\t111,\n\t103,\n\t65,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t115,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t115,\n\t116,\n\t117,\n\t110,\n\t105,\n\t102,\n\t111,\n\t114,\n\t109,\n\t106,\n\t111,\n\t117,\n\t114,\n\t110,\n\t101,\n\t121,\n\t115,\n\t105,\n\t100,\n\t101,\n\t98,\n\t97,\n\t114,\n\t67,\n\t104,\n\t105,\n\t99,\n\t97,\n\t103,\n\t111,\n\t104,\n\t111,\n\t108,\n\t105,\n\t100,\n\t97,\n\t121,\n\t71,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t112,\n\t97,\n\t115,\n\t115,\n\t97,\n\t103,\n\t101,\n\t44,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t97,\n\t110,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t102,\n\t101,\n\t101,\n\t108,\n\t105,\n\t110,\n\t103,\n\t97,\n\t114,\n\t114,\n\t105,\n\t118,\n\t101,\n\t100,\n\t112,\n\t97,\n\t115,\n\t115,\n\t105,\n\t110,\n\t103,\n\t110,\n\t97,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t108,\n\t121,\n\t46,\n\t10,\n\t10,\n\t84,\n\t104,\n\t101,\n\t32,\n\t98,\n\t117,\n\t116,\n\t32,\n\t110,\n\t111,\n\t116,\n\t100,\n\t101,\n\t110,\n\t115,\n\t105,\n\t116,\n\t121,\n\t66,\n\t114,\n\t105,\n\t116,\n\t97,\n\t105,\n\t110,\n\t67,\n\t104,\n\t105,\n\t110,\n\t101,\n\t115,\n\t101,\n\t108,\n\t97,\n\t99,\n\t107,\n\t32,\n\t111,\n\t102,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t101,\n\t73,\n\t114,\n\t101,\n\t108,\n\t97,\n\t110,\n\t100,\n\t34,\n\t32,\n\t100,\n\t97,\n\t116,\n\t97,\n\t45,\n\t102,\n\t97,\n\t99,\n\t116,\n\t111,\n\t114,\n\t115,\n\t114,\n\t101,\n\t99,\n\t101,\n\t105,\n\t118,\n\t101,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t105,\n\t115,\n\t76,\n\t105,\n\t98,\n\t114,\n\t97,\n\t114,\n\t121,\n\t104,\n\t117,\n\t115,\n\t98,\n\t97,\n\t110,\n\t100,\n\t105,\n\t110,\n\t32,\n\t102,\n\t97,\n\t99,\n\t116,\n\t97,\n\t102,\n\t102,\n\t97,\n\t105,\n\t114,\n\t115,\n\t67,\n\t104,\n\t97,\n\t114,\n\t108,\n\t101,\n\t115,\n\t114,\n\t97,\n\t100,\n\t105,\n\t99,\n\t97,\n\t108,\n\t98,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t102,\n\t105,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t108,\n\t97,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t58,\n\t108,\n\t97,\n\t110,\n\t103,\n\t61,\n\t34,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t108,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t115,\n\t112,\n\t108,\n\t97,\n\t110,\n\t110,\n\t101,\n\t100,\n\t112,\n\t114,\n\t101,\n\t109,\n\t105,\n\t117,\n\t109,\n\t112,\n\t97,\n\t99,\n\t107,\n\t97,\n\t103,\n\t101,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t69,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t93,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t77,\n\t101,\n\t115,\n\t115,\n\t97,\n\t103,\n\t101,\n\t110,\n\t101,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t120,\n\t108,\n\t111,\n\t111,\n\t107,\n\t105,\n\t110,\n\t103,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t118,\n\t101,\n\t115,\n\t109,\n\t97,\n\t108,\n\t108,\n\t101,\n\t114,\n\t45,\n\t109,\n\t111,\n\t98,\n\t105,\n\t108,\n\t101,\n\t114,\n\t101,\n\t99,\n\t111,\n\t114,\n\t100,\n\t115,\n\t119,\n\t97,\n\t110,\n\t116,\n\t32,\n\t116,\n\t111,\n\t107,\n\t105,\n\t110,\n\t100,\n\t32,\n\t111,\n\t102,\n\t70,\n\t105,\n\t114,\n\t101,\n\t102,\n\t111,\n\t120,\n\t121,\n\t111,\n\t117,\n\t32,\n\t97,\n\t114,\n\t101,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t115,\n\t116,\n\t117,\n\t100,\n\t105,\n\t101,\n\t100,\n\t109,\n\t97,\n\t120,\n\t105,\n\t109,\n\t117,\n\t109,\n\t104,\n\t101,\n\t97,\n\t100,\n\t105,\n\t110,\n\t103,\n\t114,\n\t97,\n\t112,\n\t105,\n\t100,\n\t108,\n\t121,\n\t99,\n\t108,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t107,\n\t105,\n\t110,\n\t103,\n\t100,\n\t111,\n\t109,\n\t101,\n\t109,\n\t101,\n\t114,\n\t103,\n\t101,\n\t100,\n\t97,\n\t109,\n\t111,\n\t117,\n\t110,\n\t116,\n\t115,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t100,\n\t112,\n\t105,\n\t111,\n\t110,\n\t101,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t117,\n\t108,\n\t97,\n\t100,\n\t121,\n\t110,\n\t97,\n\t115,\n\t116,\n\t121,\n\t104,\n\t111,\n\t119,\n\t32,\n\t116,\n\t111,\n\t32,\n\t83,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t114,\n\t101,\n\t118,\n\t101,\n\t110,\n\t117,\n\t101,\n\t101,\n\t99,\n\t111,\n\t110,\n\t111,\n\t109,\n\t121,\n\t82,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t115,\n\t98,\n\t114,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t115,\n\t111,\n\t108,\n\t100,\n\t105,\n\t101,\n\t114,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t108,\n\t121,\n\t99,\n\t97,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t46,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t65,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t69,\n\t100,\n\t119,\n\t97,\n\t114,\n\t100,\n\t32,\n\t115,\n\t101,\n\t103,\n\t109,\n\t101,\n\t110,\n\t116,\n\t82,\n\t111,\n\t98,\n\t101,\n\t114,\n\t116,\n\t32,\n\t101,\n\t102,\n\t102,\n\t111,\n\t114,\n\t116,\n\t115,\n\t80,\n\t97,\n\t99,\n\t105,\n\t102,\n\t105,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t110,\n\t101,\n\t100,\n\t117,\n\t112,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t119,\n\t101,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t65,\n\t110,\n\t103,\n\t101,\n\t108,\n\t101,\n\t115,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t95,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t101,\n\t100,\n\t97,\n\t99,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t109,\n\t97,\n\t115,\n\t115,\n\t105,\n\t118,\n\t101,\n\t103,\n\t114,\n\t97,\n\t110,\n\t116,\n\t101,\n\t100,\n\t58,\n\t32,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t116,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t100,\n\t98,\n\t105,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t98,\n\t101,\n\t110,\n\t101,\n\t102,\n\t105,\n\t116,\n\t100,\n\t114,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t83,\n\t116,\n\t117,\n\t100,\n\t105,\n\t101,\n\t115,\n\t109,\n\t105,\n\t110,\n\t105,\n\t109,\n\t117,\n\t109,\n\t112,\n\t101,\n\t114,\n\t104,\n\t97,\n\t112,\n\t115,\n\t109,\n\t111,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t115,\n\t101,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t105,\n\t115,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t114,\n\t101,\n\t118,\n\t101,\n\t114,\n\t115,\n\t101,\n\t118,\n\t97,\n\t114,\n\t105,\n\t97,\n\t110,\n\t116,\n\t32,\n\t114,\n\t111,\n\t108,\n\t101,\n\t61,\n\t34,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t110,\n\t103,\n\t97,\n\t99,\n\t104,\n\t105,\n\t101,\n\t118,\n\t101,\n\t112,\n\t114,\n\t111,\n\t109,\n\t111,\n\t116,\n\t101,\n\t115,\n\t116,\n\t117,\n\t100,\n\t101,\n\t110,\n\t116,\n\t115,\n\t111,\n\t109,\n\t101,\n\t111,\n\t110,\n\t101,\n\t101,\n\t120,\n\t116,\n\t114,\n\t101,\n\t109,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t111,\n\t114,\n\t101,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t58,\n\t101,\n\t118,\n\t111,\n\t108,\n\t118,\n\t101,\n\t100,\n\t97,\n\t108,\n\t108,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t105,\n\t116,\n\t101,\n\t109,\n\t97,\n\t112,\n\t101,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t119,\n\t97,\n\t121,\n\t32,\n\t116,\n\t111,\n\t32,\n\t32,\n\t65,\n\t117,\n\t103,\n\t117,\n\t115,\n\t116,\n\t115,\n\t121,\n\t109,\n\t98,\n\t111,\n\t108,\n\t115,\n\t67,\n\t111,\n\t109,\n\t112,\n\t97,\n\t110,\n\t121,\n\t109,\n\t97,\n\t116,\n\t116,\n\t101,\n\t114,\n\t115,\n\t109,\n\t117,\n\t115,\n\t105,\n\t99,\n\t97,\n\t108,\n\t97,\n\t103,\n\t97,\n\t105,\n\t110,\n\t115,\n\t116,\n\t115,\n\t101,\n\t114,\n\t118,\n\t105,\n\t110,\n\t103,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t13,\n\t10,\n\t112,\n\t97,\n\t121,\n\t109,\n\t101,\n\t110,\n\t116,\n\t116,\n\t114,\n\t111,\n\t117,\n\t98,\n\t108,\n\t101,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t112,\n\t116,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t114,\n\t101,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t116,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t101,\n\t114,\n\t115,\n\t114,\n\t101,\n\t103,\n\t105,\n\t111,\n\t110,\n\t115,\n\t109,\n\t111,\n\t110,\n\t105,\n\t116,\n\t111,\n\t114,\n\t32,\n\t39,\n\t39,\n\t84,\n\t104,\n\t101,\n\t32,\n\t119,\n\t105,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t101,\n\t120,\n\t112,\n\t108,\n\t111,\n\t114,\n\t101,\n\t97,\n\t100,\n\t97,\n\t112,\n\t116,\n\t101,\n\t100,\n\t71,\n\t97,\n\t108,\n\t108,\n\t101,\n\t114,\n\t121,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t101,\n\t110,\n\t104,\n\t97,\n\t110,\n\t99,\n\t101,\n\t99,\n\t97,\n\t114,\n\t101,\n\t101,\n\t114,\n\t115,\n\t41,\n\t46,\n\t32,\n\t84,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t83,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t32,\n\t97,\n\t110,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t120,\n\t105,\n\t115,\n\t116,\n\t101,\n\t100,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t32,\n\t104,\n\t97,\n\t110,\n\t100,\n\t108,\n\t101,\n\t114,\n\t112,\n\t114,\n\t105,\n\t110,\n\t116,\n\t101,\n\t100,\n\t99,\n\t111,\n\t110,\n\t115,\n\t111,\n\t108,\n\t101,\n\t69,\n\t97,\n\t115,\n\t116,\n\t101,\n\t114,\n\t110,\n\t101,\n\t120,\n\t112,\n\t111,\n\t114,\n\t116,\n\t115,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t115,\n\t67,\n\t104,\n\t97,\n\t110,\n\t110,\n\t101,\n\t108,\n\t105,\n\t108,\n\t108,\n\t101,\n\t103,\n\t97,\n\t108,\n\t110,\n\t101,\n\t117,\n\t116,\n\t114,\n\t97,\n\t108,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t95,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t115,\n\t105,\n\t103,\n\t110,\n\t105,\n\t110,\n\t103,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t34,\n\t62,\n\t115,\n\t101,\n\t116,\n\t116,\n\t108,\n\t101,\n\t100,\n\t119,\n\t101,\n\t115,\n\t116,\n\t101,\n\t114,\n\t110,\n\t99,\n\t97,\n\t117,\n\t115,\n\t105,\n\t110,\n\t103,\n\t45,\n\t119,\n\t101,\n\t98,\n\t107,\n\t105,\n\t116,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t101,\n\t100,\n\t74,\n\t117,\n\t115,\n\t116,\n\t105,\n\t99,\n\t101,\n\t99,\n\t104,\n\t97,\n\t112,\n\t116,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t116,\n\t105,\n\t109,\n\t115,\n\t84,\n\t104,\n\t111,\n\t109,\n\t97,\n\t115,\n\t32,\n\t109,\n\t111,\n\t122,\n\t105,\n\t108,\n\t108,\n\t97,\n\t112,\n\t114,\n\t111,\n\t109,\n\t105,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t101,\n\t115,\n\t101,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t111,\n\t117,\n\t116,\n\t115,\n\t105,\n\t100,\n\t101,\n\t58,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t44,\n\t104,\n\t117,\n\t110,\n\t100,\n\t114,\n\t101,\n\t100,\n\t79,\n\t108,\n\t121,\n\t109,\n\t112,\n\t105,\n\t99,\n\t95,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t97,\n\t117,\n\t116,\n\t104,\n\t111,\n\t114,\n\t115,\n\t114,\n\t101,\n\t97,\n\t99,\n\t104,\n\t101,\n\t100,\n\t99,\n\t104,\n\t114,\n\t111,\n\t110,\n\t105,\n\t99,\n\t100,\n\t101,\n\t109,\n\t97,\n\t110,\n\t100,\n\t115,\n\t115,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t115,\n\t112,\n\t114,\n\t111,\n\t116,\n\t101,\n\t99,\n\t116,\n\t97,\n\t100,\n\t111,\n\t112,\n\t116,\n\t101,\n\t100,\n\t112,\n\t114,\n\t101,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t101,\n\t105,\n\t116,\n\t104,\n\t101,\n\t114,\n\t103,\n\t114,\n\t101,\n\t97,\n\t116,\n\t108,\n\t121,\n\t103,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t114,\n\t111,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t108,\n\t105,\n\t109,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t97,\n\t110,\n\t100,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t46,\n\t119,\n\t111,\n\t114,\n\t115,\n\t104,\n\t105,\n\t112,\n\t102,\n\t117,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t104,\n\t105,\n\t103,\n\t104,\n\t101,\n\t115,\n\t116,\n\t105,\n\t110,\n\t115,\n\t116,\n\t101,\n\t97,\n\t100,\n\t117,\n\t116,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t113,\n\t117,\n\t97,\n\t114,\n\t116,\n\t101,\n\t114,\n\t67,\n\t117,\n\t108,\n\t116,\n\t117,\n\t114,\n\t101,\n\t116,\n\t101,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t108,\n\t121,\n\t101,\n\t120,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t66,\n\t114,\n\t111,\n\t119,\n\t115,\n\t101,\n\t114,\n\t108,\n\t105,\n\t98,\n\t101,\n\t114,\n\t97,\n\t108,\n\t125,\n\t32,\n\t99,\n\t97,\n\t116,\n\t99,\n\t104,\n\t80,\n\t114,\n\t111,\n\t106,\n\t101,\n\t99,\n\t116,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t104,\n\t105,\n\t100,\n\t101,\n\t40,\n\t41,\n\t59,\n\t70,\n\t108,\n\t111,\n\t114,\n\t105,\n\t100,\n\t97,\n\t97,\n\t110,\n\t115,\n\t119,\n\t101,\n\t114,\n\t115,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t101,\n\t100,\n\t69,\n\t109,\n\t112,\n\t101,\n\t114,\n\t111,\n\t114,\n\t100,\n\t101,\n\t102,\n\t101,\n\t110,\n\t115,\n\t101,\n\t115,\n\t101,\n\t114,\n\t105,\n\t111,\n\t117,\n\t115,\n\t102,\n\t114,\n\t101,\n\t101,\n\t100,\n\t111,\n\t109,\n\t83,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t45,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t70,\n\t117,\n\t114,\n\t116,\n\t104,\n\t101,\n\t114,\n\t111,\n\t117,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t33,\n\t61,\n\t32,\n\t110,\n\t117,\n\t108,\n\t108,\n\t116,\n\t114,\n\t97,\n\t105,\n\t110,\n\t101,\n\t100,\n\t68,\n\t101,\n\t110,\n\t109,\n\t97,\n\t114,\n\t107,\n\t118,\n\t111,\n\t105,\n\t100,\n\t40,\n\t48,\n\t41,\n\t47,\n\t97,\n\t108,\n\t108,\n\t46,\n\t106,\n\t115,\n\t112,\n\t114,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t82,\n\t101,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t83,\n\t116,\n\t101,\n\t112,\n\t104,\n\t101,\n\t110,\n\t10,\n\t10,\n\t87,\n\t104,\n\t101,\n\t110,\n\t32,\n\t111,\n\t98,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t60,\n\t47,\n\t104,\n\t50,\n\t62,\n\t13,\n\t10,\n\t77,\n\t111,\n\t100,\n\t101,\n\t114,\n\t110,\n\t32,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t101,\n\t34,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t115,\n\t46,\n\t10,\n\t10,\n\t70,\n\t111,\n\t114,\n\t32,\n\t10,\n\t10,\n\t77,\n\t97,\n\t110,\n\t121,\n\t32,\n\t97,\n\t114,\n\t116,\n\t105,\n\t115,\n\t116,\n\t115,\n\t112,\n\t111,\n\t119,\n\t101,\n\t114,\n\t101,\n\t100,\n\t112,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t102,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t121,\n\t112,\n\t101,\n\t32,\n\t111,\n\t102,\n\t109,\n\t101,\n\t100,\n\t105,\n\t99,\n\t97,\n\t108,\n\t116,\n\t105,\n\t99,\n\t107,\n\t101,\n\t116,\n\t115,\n\t111,\n\t112,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t67,\n\t111,\n\t117,\n\t110,\n\t99,\n\t105,\n\t108,\n\t119,\n\t105,\n\t116,\n\t110,\n\t101,\n\t115,\n\t115,\n\t106,\n\t117,\n\t115,\n\t116,\n\t105,\n\t99,\n\t101,\n\t71,\n\t101,\n\t111,\n\t114,\n\t103,\n\t101,\n\t32,\n\t66,\n\t101,\n\t108,\n\t103,\n\t105,\n\t117,\n\t109,\n\t46,\n\t46,\n\t46,\n\t60,\n\t47,\n\t97,\n\t62,\n\t116,\n\t119,\n\t105,\n\t116,\n\t116,\n\t101,\n\t114,\n\t110,\n\t111,\n\t116,\n\t97,\n\t98,\n\t108,\n\t121,\n\t119,\n\t97,\n\t105,\n\t116,\n\t105,\n\t110,\n\t103,\n\t119,\n\t97,\n\t114,\n\t102,\n\t97,\n\t114,\n\t101,\n\t32,\n\t79,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t114,\n\t97,\n\t110,\n\t107,\n\t105,\n\t110,\n\t103,\n\t112,\n\t104,\n\t114,\n\t97,\n\t115,\n\t101,\n\t115,\n\t109,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t117,\n\t114,\n\t118,\n\t105,\n\t118,\n\t101,\n\t115,\n\t99,\n\t104,\n\t111,\n\t108,\n\t97,\n\t114,\n\t60,\n\t47,\n\t112,\n\t62,\n\t13,\n\t10,\n\t32,\n\t67,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t121,\n\t105,\n\t103,\n\t110,\n\t111,\n\t114,\n\t101,\n\t100,\n\t108,\n\t111,\n\t115,\n\t115,\n\t32,\n\t111,\n\t102,\n\t106,\n\t117,\n\t115,\n\t116,\n\t32,\n\t97,\n\t115,\n\t71,\n\t101,\n\t111,\n\t114,\n\t103,\n\t105,\n\t97,\n\t115,\n\t116,\n\t114,\n\t97,\n\t110,\n\t103,\n\t101,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t60,\n\t115,\n\t116,\n\t111,\n\t112,\n\t112,\n\t101,\n\t100,\n\t49,\n\t39,\n\t93,\n\t41,\n\t59,\n\t13,\n\t10,\n\t105,\n\t115,\n\t108,\n\t97,\n\t110,\n\t100,\n\t115,\n\t110,\n\t111,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t58,\n\t108,\n\t105,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t99,\n\t97,\n\t114,\n\t114,\n\t105,\n\t101,\n\t100,\n\t49,\n\t48,\n\t48,\n\t44,\n\t48,\n\t48,\n\t48,\n\t60,\n\t47,\n\t104,\n\t51,\n\t62,\n\t10,\n\t32,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t98,\n\t101,\n\t99,\n\t111,\n\t109,\n\t101,\n\t115,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t32,\n\t119,\n\t101,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t48,\n\t48,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t109,\n\t111,\n\t110,\n\t97,\n\t114,\n\t99,\n\t104,\n\t111,\n\t102,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t101,\n\t97,\n\t99,\n\t104,\n\t101,\n\t114,\n\t104,\n\t105,\n\t103,\n\t104,\n\t108,\n\t121,\n\t32,\n\t98,\n\t105,\n\t111,\n\t108,\n\t111,\n\t103,\n\t121,\n\t108,\n\t105,\n\t102,\n\t101,\n\t32,\n\t111,\n\t102,\n\t111,\n\t114,\n\t32,\n\t101,\n\t118,\n\t101,\n\t110,\n\t114,\n\t105,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t38,\n\t114,\n\t97,\n\t113,\n\t117,\n\t111,\n\t59,\n\t112,\n\t108,\n\t117,\n\t115,\n\t111,\n\t110,\n\t101,\n\t104,\n\t117,\n\t110,\n\t116,\n\t105,\n\t110,\n\t103,\n\t40,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t68,\n\t111,\n\t117,\n\t103,\n\t108,\n\t97,\n\t115,\n\t106,\n\t111,\n\t105,\n\t110,\n\t105,\n\t110,\n\t103,\n\t99,\n\t105,\n\t114,\n\t99,\n\t108,\n\t101,\n\t115,\n\t70,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t65,\n\t110,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t86,\n\t105,\n\t101,\n\t116,\n\t110,\n\t97,\n\t109,\n\t118,\n\t101,\n\t104,\n\t105,\n\t99,\n\t108,\n\t101,\n\t115,\n\t117,\n\t99,\n\t104,\n\t32,\n\t97,\n\t115,\n\t99,\n\t114,\n\t121,\n\t115,\n\t116,\n\t97,\n\t108,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t32,\n\t61,\n\t87,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t115,\n\t101,\n\t110,\n\t106,\n\t111,\n\t121,\n\t101,\n\t100,\n\t97,\n\t32,\n\t115,\n\t109,\n\t97,\n\t108,\n\t108,\n\t97,\n\t115,\n\t115,\n\t117,\n\t109,\n\t101,\n\t100,\n\t60,\n\t97,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t102,\n\t111,\n\t114,\n\t101,\n\t105,\n\t103,\n\t110,\n\t32,\n\t65,\n\t108,\n\t108,\n\t32,\n\t114,\n\t105,\n\t104,\n\t111,\n\t119,\n\t32,\n\t116,\n\t104,\n\t101,\n\t68,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t114,\n\t101,\n\t116,\n\t105,\n\t114,\n\t101,\n\t100,\n\t104,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t59,\n\t98,\n\t97,\n\t116,\n\t116,\n\t108,\n\t101,\n\t115,\n\t115,\n\t101,\n\t101,\n\t107,\n\t105,\n\t110,\n\t103,\n\t99,\n\t97,\n\t98,\n\t105,\n\t110,\n\t101,\n\t116,\n\t119,\n\t97,\n\t115,\n\t32,\n\t110,\n\t111,\n\t116,\n\t108,\n\t111,\n\t111,\n\t107,\n\t32,\n\t97,\n\t116,\n\t99,\n\t111,\n\t110,\n\t100,\n\t117,\n\t99,\n\t116,\n\t103,\n\t101,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t74,\n\t97,\n\t110,\n\t117,\n\t97,\n\t114,\n\t121,\n\t104,\n\t97,\n\t112,\n\t112,\n\t101,\n\t110,\n\t115,\n\t116,\n\t117,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t97,\n\t58,\n\t104,\n\t111,\n\t118,\n\t101,\n\t114,\n\t79,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t32,\n\t70,\n\t114,\n\t101,\n\t110,\n\t99,\n\t104,\n\t32,\n\t108,\n\t97,\n\t99,\n\t107,\n\t105,\n\t110,\n\t103,\n\t116,\n\t121,\n\t112,\n\t105,\n\t99,\n\t97,\n\t108,\n\t101,\n\t120,\n\t116,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t110,\n\t101,\n\t109,\n\t105,\n\t101,\n\t115,\n\t101,\n\t118,\n\t101,\n\t110,\n\t32,\n\t105,\n\t102,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t116,\n\t100,\n\t101,\n\t99,\n\t105,\n\t100,\n\t101,\n\t100,\n\t97,\n\t114,\n\t101,\n\t32,\n\t110,\n\t111,\n\t116,\n\t47,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t102,\n\t115,\n\t45,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t58,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t99,\n\t46,\n\t108,\n\t111,\n\t103,\n\t105,\n\t110,\n\t34,\n\t62,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t116,\n\t118,\n\t105,\n\t111,\n\t108,\n\t101,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t100,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t34,\n\t62,\n\t99,\n\t105,\n\t114,\n\t99,\n\t117,\n\t105,\n\t116,\n\t70,\n\t105,\n\t110,\n\t108,\n\t97,\n\t110,\n\t100,\n\t99,\n\t104,\n\t101,\n\t109,\n\t105,\n\t115,\n\t116,\n\t115,\n\t104,\n\t101,\n\t32,\n\t119,\n\t97,\n\t115,\n\t49,\n\t48,\n\t112,\n\t120,\n\t59,\n\t34,\n\t62,\n\t97,\n\t115,\n\t32,\n\t115,\n\t117,\n\t99,\n\t104,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t101,\n\t100,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t119,\n\t105,\n\t108,\n\t108,\n\t32,\n\t98,\n\t101,\n\t108,\n\t105,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t97,\n\t32,\n\t103,\n\t114,\n\t101,\n\t97,\n\t116,\n\t109,\n\t121,\n\t115,\n\t116,\n\t101,\n\t114,\n\t121,\n\t47,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t46,\n\t102,\n\t97,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t100,\n\t117,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t114,\n\t97,\n\t105,\n\t108,\n\t119,\n\t97,\n\t121,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t103,\n\t101,\n\t109,\n\t111,\n\t110,\n\t115,\n\t116,\n\t101,\n\t114,\n\t100,\n\t101,\n\t115,\n\t99,\n\t101,\n\t110,\n\t116,\n\t105,\n\t116,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t110,\n\t117,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t74,\n\t101,\n\t119,\n\t105,\n\t115,\n\t104,\n\t32,\n\t112,\n\t114,\n\t111,\n\t116,\n\t101,\n\t115,\n\t116,\n\t66,\n\t114,\n\t105,\n\t116,\n\t105,\n\t115,\n\t104,\n\t102,\n\t108,\n\t111,\n\t119,\n\t101,\n\t114,\n\t115,\n\t112,\n\t114,\n\t101,\n\t100,\n\t105,\n\t99,\n\t116,\n\t114,\n\t101,\n\t102,\n\t111,\n\t114,\n\t109,\n\t115,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t32,\n\t119,\n\t104,\n\t111,\n\t32,\n\t119,\n\t97,\n\t115,\n\t108,\n\t101,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t115,\n\t117,\n\t105,\n\t99,\n\t105,\n\t100,\n\t101,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t105,\n\t99,\n\t112,\n\t101,\n\t114,\n\t105,\n\t111,\n\t100,\n\t115,\n\t109,\n\t97,\n\t114,\n\t107,\n\t101,\n\t116,\n\t115,\n\t83,\n\t111,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t102,\n\t105,\n\t115,\n\t104,\n\t105,\n\t110,\n\t103,\n\t99,\n\t111,\n\t109,\n\t98,\n\t105,\n\t110,\n\t101,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t105,\n\t99,\n\t119,\n\t105,\n\t110,\n\t110,\n\t101,\n\t114,\n\t115,\n\t60,\n\t98,\n\t114,\n\t32,\n\t47,\n\t62,\n\t60,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t78,\n\t97,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t80,\n\t114,\n\t105,\n\t118,\n\t97,\n\t99,\n\t121,\n\t99,\n\t111,\n\t111,\n\t107,\n\t105,\n\t101,\n\t115,\n\t111,\n\t117,\n\t116,\n\t99,\n\t111,\n\t109,\n\t101,\n\t114,\n\t101,\n\t115,\n\t111,\n\t108,\n\t118,\n\t101,\n\t83,\n\t119,\n\t101,\n\t100,\n\t105,\n\t115,\n\t104,\n\t98,\n\t114,\n\t105,\n\t101,\n\t102,\n\t108,\n\t121,\n\t80,\n\t101,\n\t114,\n\t115,\n\t105,\n\t97,\n\t110,\n\t115,\n\t111,\n\t32,\n\t109,\n\t117,\n\t99,\n\t104,\n\t67,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t100,\n\t101,\n\t112,\n\t105,\n\t99,\n\t116,\n\t115,\n\t99,\n\t111,\n\t108,\n\t117,\n\t109,\n\t110,\n\t115,\n\t104,\n\t111,\n\t117,\n\t115,\n\t105,\n\t110,\n\t103,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t115,\n\t110,\n\t101,\n\t120,\n\t116,\n\t32,\n\t116,\n\t111,\n\t98,\n\t101,\n\t97,\n\t114,\n\t105,\n\t110,\n\t103,\n\t109,\n\t97,\n\t112,\n\t112,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t118,\n\t105,\n\t115,\n\t101,\n\t100,\n\t106,\n\t81,\n\t117,\n\t101,\n\t114,\n\t121,\n\t40,\n\t45,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t34,\n\t62,\n\t116,\n\t111,\n\t111,\n\t108,\n\t116,\n\t105,\n\t112,\n\t83,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t115,\n\t84,\n\t117,\n\t114,\n\t107,\n\t105,\n\t115,\n\t104,\n\t121,\n\t111,\n\t117,\n\t110,\n\t103,\n\t101,\n\t114,\n\t46,\n\t109,\n\t97,\n\t116,\n\t99,\n\t104,\n\t40,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t10,\n\t10,\n\t98,\n\t117,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t101,\n\t103,\n\t114,\n\t101,\n\t101,\n\t115,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t61,\n\t82,\n\t105,\n\t99,\n\t104,\n\t97,\n\t114,\n\t100,\n\t99,\n\t108,\n\t111,\n\t115,\n\t101,\n\t108,\n\t121,\n\t112,\n\t108,\n\t97,\n\t115,\n\t116,\n\t105,\n\t99,\n\t101,\n\t110,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t60,\n\t47,\n\t116,\n\t114,\n\t62,\n\t13,\n\t10,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t35,\n\t117,\n\t108,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t112,\n\t111,\n\t115,\n\t115,\n\t101,\n\t115,\n\t115,\n\t114,\n\t111,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t112,\n\t104,\n\t121,\n\t115,\n\t105,\n\t99,\n\t115,\n\t102,\n\t97,\n\t105,\n\t108,\n\t105,\n\t110,\n\t103,\n\t101,\n\t120,\n\t101,\n\t99,\n\t117,\n\t116,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t115,\n\t116,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t116,\n\t111,\n\t68,\n\t101,\n\t102,\n\t97,\n\t117,\n\t108,\n\t116,\n\t60,\n\t98,\n\t114,\n\t32,\n\t47,\n\t62,\n\t10,\n\t58,\n\t32,\n\t116,\n\t114,\n\t117,\n\t101,\n\t44,\n\t99,\n\t104,\n\t97,\n\t114,\n\t116,\n\t101,\n\t114,\n\t116,\n\t111,\n\t117,\n\t114,\n\t105,\n\t115,\n\t109,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t99,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t101,\n\t100,\n\t101,\n\t120,\n\t112,\n\t108,\n\t97,\n\t105,\n\t110,\n\t60,\n\t47,\n\t104,\n\t49,\n\t62,\n\t13,\n\t10,\n\t111,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t46,\n\t63,\n\t120,\n\t109,\n\t108,\n\t32,\n\t118,\n\t101,\n\t104,\n\t101,\n\t108,\n\t112,\n\t105,\n\t110,\n\t103,\n\t100,\n\t105,\n\t97,\n\t109,\n\t111,\n\t110,\n\t100,\n\t117,\n\t115,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t105,\n\t114,\n\t108,\n\t105,\n\t110,\n\t101,\n\t101,\n\t110,\n\t100,\n\t32,\n\t45,\n\t45,\n\t62,\n\t41,\n\t46,\n\t97,\n\t116,\n\t116,\n\t114,\n\t40,\n\t114,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t115,\n\t104,\n\t111,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t35,\n\t102,\n\t102,\n\t102,\n\t102,\n\t102,\n\t102,\n\t114,\n\t101,\n\t97,\n\t108,\n\t105,\n\t122,\n\t101,\n\t86,\n\t105,\n\t110,\n\t99,\n\t101,\n\t110,\n\t116,\n\t115,\n\t105,\n\t103,\n\t110,\n\t97,\n\t108,\n\t115,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t47,\n\t80,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t100,\n\t101,\n\t115,\n\t112,\n\t105,\n\t116,\n\t101,\n\t100,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t101,\n\t116,\n\t101,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t80,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t32,\n\t104,\n\t101,\n\t108,\n\t100,\n\t32,\n\t105,\n\t110,\n\t74,\n\t111,\n\t115,\n\t101,\n\t112,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t116,\n\t114,\n\t101,\n\t97,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t115,\n\t60,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t62,\n\t97,\n\t32,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t100,\n\t111,\n\t101,\n\t115,\n\t110,\n\t39,\n\t116,\n\t108,\n\t97,\n\t116,\n\t101,\n\t114,\n\t44,\n\t32,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t102,\n\t97,\n\t118,\n\t105,\n\t99,\n\t111,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t111,\n\t114,\n\t72,\n\t117,\n\t110,\n\t103,\n\t97,\n\t114,\n\t121,\n\t65,\n\t105,\n\t114,\n\t112,\n\t111,\n\t114,\n\t116,\n\t115,\n\t101,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t111,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t77,\n\t105,\n\t99,\n\t104,\n\t97,\n\t101,\n\t108,\n\t83,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t115,\n\t80,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t115,\n\t44,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t101,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t116,\n\t114,\n\t97,\n\t100,\n\t105,\n\t110,\n\t103,\n\t108,\n\t101,\n\t102,\n\t116,\n\t34,\n\t62,\n\t10,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t115,\n\t71,\n\t111,\n\t108,\n\t100,\n\t101,\n\t110,\n\t32,\n\t65,\n\t102,\n\t102,\n\t97,\n\t105,\n\t114,\n\t115,\n\t103,\n\t114,\n\t97,\n\t109,\n\t109,\n\t97,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t105,\n\t110,\n\t103,\n\t100,\n\t101,\n\t115,\n\t116,\n\t114,\n\t111,\n\t121,\n\t105,\n\t100,\n\t101,\n\t97,\n\t32,\n\t111,\n\t102,\n\t99,\n\t97,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t111,\n\t108,\n\t100,\n\t101,\n\t115,\n\t116,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t105,\n\t115,\n\t46,\n\t115,\n\t114,\n\t99,\n\t32,\n\t61,\n\t32,\n\t99,\n\t97,\n\t114,\n\t116,\n\t111,\n\t111,\n\t110,\n\t114,\n\t101,\n\t103,\n\t105,\n\t115,\n\t116,\n\t114,\n\t67,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t115,\n\t77,\n\t117,\n\t115,\n\t108,\n\t105,\n\t109,\n\t115,\n\t87,\n\t104,\n\t97,\n\t116,\n\t32,\n\t105,\n\t115,\n\t105,\n\t110,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t109,\n\t97,\n\t114,\n\t107,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t118,\n\t101,\n\t97,\n\t108,\n\t115,\n\t73,\n\t110,\n\t100,\n\t101,\n\t101,\n\t100,\n\t44,\n\t101,\n\t113,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t47,\n\t115,\n\t104,\n\t111,\n\t119,\n\t95,\n\t97,\n\t111,\n\t117,\n\t116,\n\t100,\n\t111,\n\t111,\n\t114,\n\t101,\n\t115,\n\t99,\n\t97,\n\t112,\n\t101,\n\t40,\n\t65,\n\t117,\n\t115,\n\t116,\n\t114,\n\t105,\n\t97,\n\t103,\n\t101,\n\t110,\n\t101,\n\t116,\n\t105,\n\t99,\n\t115,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t44,\n\t73,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t105,\n\t116,\n\t116,\n\t105,\n\t110,\n\t103,\n\t72,\n\t101,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t73,\n\t115,\n\t108,\n\t97,\n\t110,\n\t100,\n\t115,\n\t65,\n\t99,\n\t97,\n\t100,\n\t101,\n\t109,\n\t121,\n\t10,\n\t9,\n\t9,\n\t60,\n\t33,\n\t45,\n\t45,\n\t68,\n\t97,\n\t110,\n\t105,\n\t101,\n\t108,\n\t32,\n\t98,\n\t105,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t34,\n\t62,\n\t105,\n\t109,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t117,\n\t116,\n\t105,\n\t108,\n\t105,\n\t122,\n\t101,\n\t65,\n\t98,\n\t114,\n\t97,\n\t104,\n\t97,\n\t109,\n\t40,\n\t101,\n\t120,\n\t99,\n\t101,\n\t112,\n\t116,\n\t123,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t112,\n\t117,\n\t116,\n\t116,\n\t105,\n\t110,\n\t103,\n\t41,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t40,\n\t124,\n\t124,\n\t32,\n\t91,\n\t93,\n\t59,\n\t10,\n\t68,\n\t65,\n\t84,\n\t65,\n\t91,\n\t32,\n\t42,\n\t107,\n\t105,\n\t116,\n\t99,\n\t104,\n\t101,\n\t110,\n\t109,\n\t111,\n\t117,\n\t110,\n\t116,\n\t101,\n\t100,\n\t97,\n\t99,\n\t116,\n\t117,\n\t97,\n\t108,\n\t32,\n\t100,\n\t105,\n\t97,\n\t108,\n\t101,\n\t99,\n\t116,\n\t109,\n\t97,\n\t105,\n\t110,\n\t108,\n\t121,\n\t32,\n\t95,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t39,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t108,\n\t108,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t116,\n\t115,\n\t105,\n\t102,\n\t40,\n\t116,\n\t121,\n\t112,\n\t101,\n\t73,\n\t116,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t38,\n\t99,\n\t111,\n\t112,\n\t121,\n\t59,\n\t32,\n\t34,\n\t62,\n\t84,\n\t101,\n\t114,\n\t109,\n\t115,\n\t98,\n\t111,\n\t114,\n\t110,\n\t32,\n\t105,\n\t110,\n\t79,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t97,\n\t115,\n\t116,\n\t101,\n\t114,\n\t110,\n\t116,\n\t97,\n\t108,\n\t107,\n\t105,\n\t110,\n\t103,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t114,\n\t110,\n\t103,\n\t97,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t103,\n\t111,\n\t105,\n\t110,\n\t103,\n\t106,\n\t117,\n\t115,\n\t116,\n\t105,\n\t102,\n\t121,\n\t99,\n\t114,\n\t105,\n\t116,\n\t105,\n\t99,\n\t115,\n\t102,\n\t97,\n\t99,\n\t116,\n\t111,\n\t114,\n\t121,\n\t105,\n\t116,\n\t115,\n\t32,\n\t111,\n\t119,\n\t110,\n\t97,\n\t115,\n\t115,\n\t97,\n\t117,\n\t108,\n\t116,\n\t105,\n\t110,\n\t118,\n\t105,\n\t116,\n\t101,\n\t100,\n\t108,\n\t97,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t104,\n\t105,\n\t115,\n\t32,\n\t111,\n\t119,\n\t110,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t34,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t114,\n\t116,\n\t100,\n\t105,\n\t97,\n\t103,\n\t114,\n\t97,\n\t109,\n\t100,\n\t111,\n\t108,\n\t108,\n\t97,\n\t114,\n\t115,\n\t99,\n\t108,\n\t117,\n\t115,\n\t116,\n\t101,\n\t114,\n\t112,\n\t104,\n\t112,\n\t63,\n\t105,\n\t100,\n\t61,\n\t97,\n\t108,\n\t99,\n\t111,\n\t104,\n\t111,\n\t108,\n\t41,\n\t59,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t117,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t97,\n\t62,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t118,\n\t101,\n\t115,\n\t115,\n\t101,\n\t108,\n\t115,\n\t114,\n\t101,\n\t118,\n\t105,\n\t118,\n\t97,\n\t108,\n\t65,\n\t100,\n\t100,\n\t114,\n\t101,\n\t115,\n\t115,\n\t97,\n\t109,\n\t97,\n\t116,\n\t101,\n\t117,\n\t114,\n\t97,\n\t110,\n\t100,\n\t114,\n\t111,\n\t105,\n\t100,\n\t97,\n\t108,\n\t108,\n\t101,\n\t103,\n\t101,\n\t100,\n\t105,\n\t108,\n\t108,\n\t110,\n\t101,\n\t115,\n\t115,\n\t119,\n\t97,\n\t108,\n\t107,\n\t105,\n\t110,\n\t103,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t115,\n\t113,\n\t117,\n\t97,\n\t108,\n\t105,\n\t102,\n\t121,\n\t109,\n\t97,\n\t116,\n\t99,\n\t104,\n\t101,\n\t115,\n\t117,\n\t110,\n\t105,\n\t102,\n\t105,\n\t101,\n\t100,\n\t101,\n\t120,\n\t116,\n\t105,\n\t110,\n\t99,\n\t116,\n\t68,\n\t101,\n\t102,\n\t101,\n\t110,\n\t115,\n\t101,\n\t100,\n\t105,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t10,\n\t9,\n\t60,\n\t33,\n\t45,\n\t45,\n\t32,\n\t99,\n\t117,\n\t115,\n\t116,\n\t111,\n\t109,\n\t115,\n\t108,\n\t105,\n\t110,\n\t107,\n\t105,\n\t110,\n\t103,\n\t76,\n\t105,\n\t116,\n\t116,\n\t108,\n\t101,\n\t32,\n\t66,\n\t111,\n\t111,\n\t107,\n\t32,\n\t111,\n\t102,\n\t101,\n\t118,\n\t101,\n\t110,\n\t105,\n\t110,\n\t103,\n\t109,\n\t105,\n\t110,\n\t46,\n\t106,\n\t115,\n\t63,\n\t97,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t107,\n\t111,\n\t110,\n\t116,\n\t97,\n\t107,\n\t116,\n\t116,\n\t111,\n\t100,\n\t97,\n\t121,\n\t39,\n\t115,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t34,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t119,\n\t101,\n\t97,\n\t114,\n\t105,\n\t110,\n\t103,\n\t65,\n\t108,\n\t108,\n\t32,\n\t82,\n\t105,\n\t103,\n\t59,\n\t10,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t114,\n\t97,\n\t105,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t65,\n\t108,\n\t115,\n\t111,\n\t44,\n\t32,\n\t99,\n\t114,\n\t117,\n\t99,\n\t105,\n\t97,\n\t108,\n\t97,\n\t98,\n\t111,\n\t117,\n\t116,\n\t34,\n\t62,\n\t100,\n\t101,\n\t99,\n\t108,\n\t97,\n\t114,\n\t101,\n\t45,\n\t45,\n\t62,\n\t10,\n\t60,\n\t115,\n\t99,\n\t102,\n\t105,\n\t114,\n\t101,\n\t102,\n\t111,\n\t120,\n\t97,\n\t115,\n\t32,\n\t109,\n\t117,\n\t99,\n\t104,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t101,\n\t115,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t44,\n\t32,\n\t115,\n\t44,\n\t32,\n\t98,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t32,\n\t61,\n\t32,\n\t10,\n\t13,\n\t10,\n\t60,\n\t33,\n\t45,\n\t45,\n\t116,\n\t111,\n\t119,\n\t97,\n\t114,\n\t100,\n\t115,\n\t82,\n\t101,\n\t99,\n\t111,\n\t114,\n\t100,\n\t115,\n\t80,\n\t114,\n\t105,\n\t118,\n\t97,\n\t116,\n\t101,\n\t70,\n\t111,\n\t114,\n\t101,\n\t105,\n\t103,\n\t110,\n\t80,\n\t114,\n\t101,\n\t109,\n\t105,\n\t101,\n\t114,\n\t99,\n\t104,\n\t111,\n\t105,\n\t99,\n\t101,\n\t115,\n\t86,\n\t105,\n\t114,\n\t116,\n\t117,\n\t97,\n\t108,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t115,\n\t67,\n\t111,\n\t109,\n\t109,\n\t101,\n\t110,\n\t116,\n\t80,\n\t111,\n\t119,\n\t101,\n\t114,\n\t101,\n\t100,\n\t105,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t59,\n\t112,\n\t111,\n\t118,\n\t101,\n\t114,\n\t116,\n\t121,\n\t99,\n\t104,\n\t97,\n\t109,\n\t98,\n\t101,\n\t114,\n\t76,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t118,\n\t111,\n\t108,\n\t117,\n\t109,\n\t101,\n\t115,\n\t65,\n\t110,\n\t116,\n\t104,\n\t111,\n\t110,\n\t121,\n\t108,\n\t111,\n\t103,\n\t105,\n\t110,\n\t34,\n\t32,\n\t82,\n\t101,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t69,\n\t99,\n\t111,\n\t110,\n\t111,\n\t109,\n\t121,\n\t114,\n\t101,\n\t97,\n\t99,\n\t104,\n\t101,\n\t115,\n\t99,\n\t117,\n\t116,\n\t116,\n\t105,\n\t110,\n\t103,\n\t103,\n\t114,\n\t97,\n\t118,\n\t105,\n\t116,\n\t121,\n\t108,\n\t105,\n\t102,\n\t101,\n\t32,\n\t105,\n\t110,\n\t67,\n\t104,\n\t97,\n\t112,\n\t116,\n\t101,\n\t114,\n\t45,\n\t115,\n\t104,\n\t97,\n\t100,\n\t111,\n\t119,\n\t78,\n\t111,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t13,\n\t10,\n\t32,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t115,\n\t116,\n\t97,\n\t100,\n\t105,\n\t117,\n\t109,\n\t119,\n\t105,\n\t100,\n\t103,\n\t101,\n\t116,\n\t115,\n\t118,\n\t97,\n\t114,\n\t121,\n\t105,\n\t110,\n\t103,\n\t116,\n\t114,\n\t97,\n\t118,\n\t101,\n\t108,\n\t115,\n\t104,\n\t101,\n\t108,\n\t100,\n\t32,\n\t98,\n\t121,\n\t119,\n\t104,\n\t111,\n\t32,\n\t97,\n\t114,\n\t101,\n\t119,\n\t111,\n\t114,\n\t107,\n\t32,\n\t105,\n\t110,\n\t102,\n\t97,\n\t99,\n\t117,\n\t108,\n\t116,\n\t121,\n\t97,\n\t110,\n\t103,\n\t117,\n\t108,\n\t97,\n\t114,\n\t119,\n\t104,\n\t111,\n\t32,\n\t104,\n\t97,\n\t100,\n\t97,\n\t105,\n\t114,\n\t112,\n\t111,\n\t114,\n\t116,\n\t116,\n\t111,\n\t119,\n\t110,\n\t32,\n\t111,\n\t102,\n\t10,\n\t10,\n\t83,\n\t111,\n\t109,\n\t101,\n\t32,\n\t39,\n\t99,\n\t108,\n\t105,\n\t99,\n\t107,\n\t39,\n\t99,\n\t104,\n\t97,\n\t114,\n\t103,\n\t101,\n\t115,\n\t107,\n\t101,\n\t121,\n\t119,\n\t111,\n\t114,\n\t100,\n\t105,\n\t116,\n\t32,\n\t119,\n\t105,\n\t108,\n\t108,\n\t99,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t40,\n\t116,\n\t104,\n\t105,\n\t115,\n\t41,\n\t59,\n\t65,\n\t110,\n\t100,\n\t114,\n\t101,\n\t119,\n\t32,\n\t117,\n\t110,\n\t105,\n\t113,\n\t117,\n\t101,\n\t32,\n\t99,\n\t104,\n\t101,\n\t99,\n\t107,\n\t101,\n\t100,\n\t111,\n\t114,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t51,\n\t48,\n\t48,\n\t112,\n\t120,\n\t59,\n\t32,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t59,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t112,\n\t108,\n\t117,\n\t103,\n\t105,\n\t110,\n\t115,\n\t119,\n\t105,\n\t116,\n\t104,\n\t105,\n\t110,\n\t32,\n\t104,\n\t101,\n\t114,\n\t115,\n\t101,\n\t108,\n\t102,\n\t83,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t70,\n\t101,\n\t100,\n\t101,\n\t114,\n\t97,\n\t108,\n\t118,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t115,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t111,\n\t116,\n\t101,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t99,\n\t116,\n\t114,\n\t101,\n\t115,\n\t115,\n\t99,\n\t111,\n\t109,\n\t101,\n\t32,\n\t116,\n\t111,\n\t102,\n\t105,\n\t110,\n\t103,\n\t101,\n\t114,\n\t115,\n\t68,\n\t117,\n\t107,\n\t101,\n\t32,\n\t111,\n\t102,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t44,\n\t101,\n\t120,\n\t112,\n\t108,\n\t111,\n\t105,\n\t116,\n\t119,\n\t104,\n\t97,\n\t116,\n\t32,\n\t105,\n\t115,\n\t104,\n\t97,\n\t114,\n\t109,\n\t111,\n\t110,\n\t121,\n\t97,\n\t32,\n\t109,\n\t97,\n\t106,\n\t111,\n\t114,\n\t34,\n\t58,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t105,\n\t110,\n\t32,\n\t104,\n\t105,\n\t115,\n\t32,\n\t109,\n\t101,\n\t110,\n\t117,\n\t34,\n\t62,\n\t10,\n\t109,\n\t111,\n\t110,\n\t116,\n\t104,\n\t108,\n\t121,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t101,\n\t114,\n\t99,\n\t111,\n\t117,\n\t110,\n\t99,\n\t105,\n\t108,\n\t103,\n\t97,\n\t105,\n\t110,\n\t105,\n\t110,\n\t103,\n\t101,\n\t118,\n\t101,\n\t110,\n\t32,\n\t105,\n\t110,\n\t83,\n\t117,\n\t109,\n\t109,\n\t97,\n\t114,\n\t121,\n\t100,\n\t97,\n\t116,\n\t101,\n\t32,\n\t111,\n\t102,\n\t108,\n\t111,\n\t121,\n\t97,\n\t108,\n\t116,\n\t121,\n\t102,\n\t105,\n\t116,\n\t110,\n\t101,\n\t115,\n\t115,\n\t97,\n\t110,\n\t100,\n\t32,\n\t119,\n\t97,\n\t115,\n\t101,\n\t109,\n\t112,\n\t101,\n\t114,\n\t111,\n\t114,\n\t115,\n\t117,\n\t112,\n\t114,\n\t101,\n\t109,\n\t101,\n\t83,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t32,\n\t104,\n\t101,\n\t97,\n\t114,\n\t105,\n\t110,\n\t103,\n\t82,\n\t117,\n\t115,\n\t115,\n\t105,\n\t97,\n\t110,\n\t108,\n\t111,\n\t110,\n\t103,\n\t101,\n\t115,\n\t116,\n\t65,\n\t108,\n\t98,\n\t101,\n\t114,\n\t116,\n\t97,\n\t108,\n\t97,\n\t116,\n\t101,\n\t114,\n\t97,\n\t108,\n\t115,\n\t101,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t115,\n\t109,\n\t97,\n\t108,\n\t108,\n\t34,\n\t62,\n\t46,\n\t97,\n\t112,\n\t112,\n\t101,\n\t110,\n\t100,\n\t100,\n\t111,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t102,\n\t101,\n\t100,\n\t101,\n\t114,\n\t97,\n\t108,\n\t98,\n\t97,\n\t110,\n\t107,\n\t32,\n\t111,\n\t102,\n\t98,\n\t101,\n\t110,\n\t101,\n\t97,\n\t116,\n\t104,\n\t68,\n\t101,\n\t115,\n\t112,\n\t105,\n\t116,\n\t101,\n\t67,\n\t97,\n\t112,\n\t105,\n\t116,\n\t97,\n\t108,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t115,\n\t41,\n\t44,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t112,\n\t101,\n\t114,\n\t99,\n\t101,\n\t110,\n\t116,\n\t105,\n\t116,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t99,\n\t108,\n\t111,\n\t115,\n\t105,\n\t110,\n\t103,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t73,\n\t110,\n\t115,\n\t116,\n\t101,\n\t97,\n\t100,\n\t102,\n\t105,\n\t102,\n\t116,\n\t101,\n\t101,\n\t110,\n\t97,\n\t115,\n\t32,\n\t119,\n\t101,\n\t108,\n\t108,\n\t46,\n\t121,\n\t97,\n\t104,\n\t111,\n\t111,\n\t46,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t100,\n\t102,\n\t105,\n\t103,\n\t104,\n\t116,\n\t101,\n\t114,\n\t111,\n\t98,\n\t115,\n\t99,\n\t117,\n\t114,\n\t101,\n\t114,\n\t101,\n\t102,\n\t108,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t99,\n\t61,\n\t32,\n\t77,\n\t97,\n\t116,\n\t104,\n\t46,\n\t101,\n\t100,\n\t105,\n\t116,\n\t105,\n\t110,\n\t103,\n\t111,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t32,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t97,\n\t32,\n\t119,\n\t104,\n\t111,\n\t108,\n\t101,\n\t111,\n\t110,\n\t101,\n\t114,\n\t114,\n\t111,\n\t114,\n\t121,\n\t101,\n\t97,\n\t114,\n\t32,\n\t111,\n\t102,\n\t101,\n\t110,\n\t100,\n\t32,\n\t111,\n\t102,\n\t32,\n\t98,\n\t97,\n\t114,\n\t114,\n\t105,\n\t101,\n\t114,\n\t119,\n\t104,\n\t101,\n\t110,\n\t32,\n\t105,\n\t116,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t32,\n\t104,\n\t111,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t115,\n\t117,\n\t109,\n\t101,\n\t100,\n\t114,\n\t101,\n\t110,\n\t97,\n\t109,\n\t101,\n\t100,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t62,\n\t104,\n\t101,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t116,\n\t97,\n\t105,\n\t110,\n\t115,\n\t99,\n\t108,\n\t111,\n\t117,\n\t100,\n\t102,\n\t114,\n\t119,\n\t97,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t77,\n\t97,\n\t114,\n\t99,\n\t104,\n\t32,\n\t49,\n\t107,\n\t110,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t105,\n\t110,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t66,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t108,\n\t101,\n\t115,\n\t115,\n\t111,\n\t110,\n\t115,\n\t99,\n\t108,\n\t111,\n\t115,\n\t101,\n\t115,\n\t116,\n\t118,\n\t105,\n\t114,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t105,\n\t110,\n\t107,\n\t115,\n\t34,\n\t62,\n\t99,\n\t114,\n\t111,\n\t115,\n\t115,\n\t101,\n\t100,\n\t69,\n\t78,\n\t68,\n\t32,\n\t45,\n\t45,\n\t62,\n\t102,\n\t97,\n\t109,\n\t111,\n\t117,\n\t115,\n\t32,\n\t97,\n\t119,\n\t97,\n\t114,\n\t100,\n\t101,\n\t100,\n\t76,\n\t105,\n\t99,\n\t101,\n\t110,\n\t115,\n\t101,\n\t72,\n\t101,\n\t97,\n\t108,\n\t116,\n\t104,\n\t32,\n\t102,\n\t97,\n\t105,\n\t114,\n\t108,\n\t121,\n\t32,\n\t119,\n\t101,\n\t97,\n\t108,\n\t116,\n\t104,\n\t121,\n\t109,\n\t105,\n\t110,\n\t105,\n\t109,\n\t97,\n\t108,\n\t65,\n\t102,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t99,\n\t111,\n\t109,\n\t112,\n\t101,\n\t116,\n\t101,\n\t108,\n\t97,\n\t98,\n\t101,\n\t108,\n\t34,\n\t62,\n\t115,\n\t105,\n\t110,\n\t103,\n\t105,\n\t110,\n\t103,\n\t102,\n\t97,\n\t114,\n\t109,\n\t101,\n\t114,\n\t115,\n\t66,\n\t114,\n\t97,\n\t115,\n\t105,\n\t108,\n\t41,\n\t100,\n\t105,\n\t115,\n\t99,\n\t117,\n\t115,\n\t115,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t71,\n\t114,\n\t101,\n\t103,\n\t111,\n\t114,\n\t121,\n\t102,\n\t111,\n\t110,\n\t116,\n\t32,\n\t99,\n\t111,\n\t112,\n\t117,\n\t114,\n\t115,\n\t117,\n\t101,\n\t100,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t115,\n\t109,\n\t97,\n\t107,\n\t101,\n\t32,\n\t117,\n\t112,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t100,\n\t98,\n\t111,\n\t116,\n\t104,\n\t32,\n\t111,\n\t102,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t101,\n\t100,\n\t115,\n\t97,\n\t119,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t101,\n\t115,\n\t99,\n\t111,\n\t108,\n\t111,\n\t117,\n\t114,\n\t115,\n\t105,\n\t102,\n\t40,\n\t100,\n\t111,\n\t99,\n\t117,\n\t119,\n\t104,\n\t101,\n\t110,\n\t32,\n\t104,\n\t101,\n\t101,\n\t110,\n\t102,\n\t111,\n\t114,\n\t99,\n\t101,\n\t112,\n\t117,\n\t115,\n\t104,\n\t40,\n\t102,\n\t117,\n\t65,\n\t117,\n\t103,\n\t117,\n\t115,\n\t116,\n\t32,\n\t85,\n\t84,\n\t70,\n\t45,\n\t56,\n\t34,\n\t62,\n\t70,\n\t97,\n\t110,\n\t116,\n\t97,\n\t115,\n\t121,\n\t105,\n\t110,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t105,\n\t110,\n\t106,\n\t117,\n\t114,\n\t101,\n\t100,\n\t85,\n\t115,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t102,\n\t97,\n\t114,\n\t109,\n\t105,\n\t110,\n\t103,\n\t99,\n\t108,\n\t111,\n\t115,\n\t117,\n\t114,\n\t101,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t32,\n\t100,\n\t101,\n\t102,\n\t101,\n\t110,\n\t99,\n\t101,\n\t117,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t77,\n\t101,\n\t100,\n\t105,\n\t99,\n\t97,\n\t108,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t10,\n\t101,\n\t118,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t98,\n\t101,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t107,\n\t101,\n\t121,\n\t67,\n\t111,\n\t100,\n\t101,\n\t115,\n\t105,\n\t120,\n\t116,\n\t101,\n\t101,\n\t110,\n\t73,\n\t115,\n\t108,\n\t97,\n\t109,\n\t105,\n\t99,\n\t35,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t48,\n\t101,\n\t110,\n\t116,\n\t105,\n\t114,\n\t101,\n\t32,\n\t119,\n\t105,\n\t100,\n\t101,\n\t108,\n\t121,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t32,\n\t40,\n\t116,\n\t121,\n\t112,\n\t101,\n\t111,\n\t102,\n\t111,\n\t110,\n\t101,\n\t32,\n\t99,\n\t97,\n\t110,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t32,\n\t61,\n\t115,\n\t112,\n\t101,\n\t97,\n\t107,\n\t101,\n\t114,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t100,\n\t115,\n\t80,\n\t104,\n\t121,\n\t115,\n\t105,\n\t99,\n\t115,\n\t116,\n\t101,\n\t114,\n\t114,\n\t97,\n\t105,\n\t110,\n\t60,\n\t116,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t102,\n\t117,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t118,\n\t105,\n\t101,\n\t119,\n\t105,\n\t110,\n\t103,\n\t109,\n\t105,\n\t100,\n\t100,\n\t108,\n\t101,\n\t32,\n\t99,\n\t114,\n\t105,\n\t99,\n\t107,\n\t101,\n\t116,\n\t112,\n\t114,\n\t111,\n\t112,\n\t104,\n\t101,\n\t116,\n\t115,\n\t104,\n\t105,\n\t102,\n\t116,\n\t101,\n\t100,\n\t100,\n\t111,\n\t99,\n\t116,\n\t111,\n\t114,\n\t115,\n\t82,\n\t117,\n\t115,\n\t115,\n\t101,\n\t108,\n\t108,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t99,\n\t116,\n\t97,\n\t108,\n\t103,\n\t101,\n\t98,\n\t114,\n\t97,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t108,\n\t45,\n\t98,\n\t117,\n\t108,\n\t107,\n\t32,\n\t111,\n\t102,\n\t109,\n\t97,\n\t110,\n\t32,\n\t97,\n\t110,\n\t100,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t10,\n\t32,\n\t104,\n\t101,\n\t32,\n\t108,\n\t101,\n\t102,\n\t116,\n\t41,\n\t46,\n\t118,\n\t97,\n\t108,\n\t40,\n\t41,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t41,\n\t59,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t97,\n\t108,\n\t98,\n\t97,\n\t110,\n\t107,\n\t105,\n\t110,\n\t103,\n\t104,\n\t111,\n\t109,\n\t101,\n\t32,\n\t116,\n\t111,\n\t110,\n\t97,\n\t109,\n\t105,\n\t110,\n\t103,\n\t32,\n\t65,\n\t114,\n\t105,\n\t122,\n\t111,\n\t110,\n\t97,\n\t99,\n\t114,\n\t101,\n\t100,\n\t105,\n\t116,\n\t115,\n\t41,\n\t59,\n\t10,\n\t125,\n\t41,\n\t59,\n\t10,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t105,\n\t110,\n\t32,\n\t116,\n\t117,\n\t114,\n\t110,\n\t67,\n\t111,\n\t108,\n\t108,\n\t105,\n\t110,\n\t115,\n\t98,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t32,\n\t66,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t104,\n\t97,\n\t114,\n\t103,\n\t101,\n\t100,\n\t84,\n\t105,\n\t116,\n\t108,\n\t101,\n\t34,\n\t62,\n\t67,\n\t97,\n\t112,\n\t116,\n\t97,\n\t105,\n\t110,\n\t115,\n\t112,\n\t101,\n\t108,\n\t108,\n\t101,\n\t100,\n\t103,\n\t111,\n\t100,\n\t100,\n\t101,\n\t115,\n\t115,\n\t84,\n\t97,\n\t103,\n\t32,\n\t45,\n\t45,\n\t62,\n\t65,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t58,\n\t98,\n\t117,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t82,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t32,\n\t112,\n\t97,\n\t116,\n\t105,\n\t101,\n\t110,\n\t116,\n\t98,\n\t97,\n\t99,\n\t107,\n\t32,\n\t105,\n\t110,\n\t61,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t38,\n\t76,\n\t105,\n\t110,\n\t99,\n\t111,\n\t108,\n\t110,\n\t119,\n\t101,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t67,\n\t111,\n\t117,\n\t110,\n\t116,\n\t101,\n\t114,\n\t74,\n\t117,\n\t100,\n\t97,\n\t105,\n\t115,\n\t109,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t97,\n\t108,\n\t116,\n\t101,\n\t114,\n\t101,\n\t100,\n\t39,\n\t93,\n\t41,\n\t59,\n\t10,\n\t32,\n\t32,\n\t104,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t117,\n\t110,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t69,\n\t118,\n\t101,\n\t110,\n\t116,\n\t39,\n\t44,\n\t98,\n\t111,\n\t116,\n\t104,\n\t32,\n\t105,\n\t110,\n\t110,\n\t111,\n\t116,\n\t32,\n\t97,\n\t108,\n\t108,\n\t10,\n\t10,\n\t60,\n\t33,\n\t45,\n\t45,\n\t32,\n\t112,\n\t108,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t104,\n\t97,\n\t114,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t115,\n\t111,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t99,\n\t108,\n\t105,\n\t101,\n\t110,\n\t116,\n\t115,\n\t115,\n\t116,\n\t114,\n\t101,\n\t101,\n\t116,\n\t115,\n\t66,\n\t101,\n\t114,\n\t110,\n\t97,\n\t114,\n\t100,\n\t97,\n\t115,\n\t115,\n\t101,\n\t114,\n\t116,\n\t115,\n\t116,\n\t101,\n\t110,\n\t100,\n\t32,\n\t116,\n\t111,\n\t102,\n\t97,\n\t110,\n\t116,\n\t97,\n\t115,\n\t121,\n\t100,\n\t111,\n\t119,\n\t110,\n\t32,\n\t105,\n\t110,\n\t104,\n\t97,\n\t114,\n\t98,\n\t111,\n\t117,\n\t114,\n\t70,\n\t114,\n\t101,\n\t101,\n\t100,\n\t111,\n\t109,\n\t106,\n\t101,\n\t119,\n\t101,\n\t108,\n\t114,\n\t121,\n\t47,\n\t97,\n\t98,\n\t111,\n\t117,\n\t116,\n\t46,\n\t46,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t108,\n\t101,\n\t103,\n\t101,\n\t110,\n\t100,\n\t115,\n\t105,\n\t115,\n\t32,\n\t109,\n\t97,\n\t100,\n\t101,\n\t109,\n\t111,\n\t100,\n\t101,\n\t114,\n\t110,\n\t32,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t111,\n\t110,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t116,\n\t111,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t34,\n\t32,\n\t108,\n\t105,\n\t110,\n\t101,\n\t97,\n\t114,\n\t32,\n\t112,\n\t97,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t97,\n\t110,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t114,\n\t97,\n\t114,\n\t101,\n\t108,\n\t121,\n\t32,\n\t97,\n\t99,\n\t114,\n\t111,\n\t110,\n\t121,\n\t109,\n\t100,\n\t101,\n\t108,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t101,\n\t114,\n\t48,\n\t48,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t97,\n\t115,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t47,\n\t42,\n\t32,\n\t60,\n\t33,\n\t91,\n\t67,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t32,\n\t61,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t108,\n\t111,\n\t119,\n\t101,\n\t115,\n\t116,\n\t32,\n\t112,\n\t105,\n\t99,\n\t107,\n\t101,\n\t100,\n\t32,\n\t101,\n\t115,\n\t99,\n\t97,\n\t112,\n\t101,\n\t100,\n\t117,\n\t115,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t115,\n\t32,\n\t80,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t77,\n\t97,\n\t116,\n\t116,\n\t104,\n\t101,\n\t119,\n\t116,\n\t97,\n\t99,\n\t116,\n\t105,\n\t99,\n\t115,\n\t100,\n\t97,\n\t109,\n\t97,\n\t103,\n\t101,\n\t100,\n\t119,\n\t97,\n\t121,\n\t32,\n\t102,\n\t111,\n\t114,\n\t108,\n\t97,\n\t119,\n\t115,\n\t32,\n\t111,\n\t102,\n\t101,\n\t97,\n\t115,\n\t121,\n\t32,\n\t116,\n\t111,\n\t32,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t32,\n\t32,\n\t115,\n\t105,\n\t109,\n\t112,\n\t108,\n\t101,\n\t125,\n\t99,\n\t97,\n\t116,\n\t99,\n\t104,\n\t40,\n\t115,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t104,\n\t105,\n\t110,\n\t102,\n\t111,\n\t98,\n\t111,\n\t120,\n\t119,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t111,\n\t112,\n\t97,\n\t105,\n\t110,\n\t116,\n\t101,\n\t100,\n\t99,\n\t105,\n\t116,\n\t105,\n\t122,\n\t101,\n\t110,\n\t73,\n\t32,\n\t100,\n\t111,\n\t110,\n\t39,\n\t116,\n\t114,\n\t101,\n\t116,\n\t114,\n\t101,\n\t97,\n\t116,\n\t46,\n\t32,\n\t83,\n\t111,\n\t109,\n\t101,\n\t32,\n\t119,\n\t119,\n\t46,\n\t34,\n\t41,\n\t59,\n\t10,\n\t98,\n\t111,\n\t109,\n\t98,\n\t105,\n\t110,\n\t103,\n\t109,\n\t97,\n\t105,\n\t108,\n\t116,\n\t111,\n\t58,\n\t109,\n\t97,\n\t100,\n\t101,\n\t32,\n\t105,\n\t110,\n\t46,\n\t32,\n\t77,\n\t97,\n\t110,\n\t121,\n\t32,\n\t99,\n\t97,\n\t114,\n\t114,\n\t105,\n\t101,\n\t115,\n\t124,\n\t124,\n\t123,\n\t125,\n\t59,\n\t119,\n\t105,\n\t119,\n\t111,\n\t114,\n\t107,\n\t32,\n\t111,\n\t102,\n\t115,\n\t121,\n\t110,\n\t111,\n\t110,\n\t121,\n\t109,\n\t100,\n\t101,\n\t102,\n\t101,\n\t97,\n\t116,\n\t115,\n\t102,\n\t97,\n\t118,\n\t111,\n\t114,\n\t101,\n\t100,\n\t111,\n\t112,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t112,\n\t97,\n\t103,\n\t101,\n\t84,\n\t114,\n\t97,\n\t117,\n\t110,\n\t108,\n\t101,\n\t115,\n\t115,\n\t32,\n\t115,\n\t101,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t108,\n\t101,\n\t102,\n\t116,\n\t34,\n\t62,\n\t60,\n\t99,\n\t111,\n\t109,\n\t83,\n\t99,\n\t111,\n\t114,\n\t65,\n\t108,\n\t108,\n\t32,\n\t116,\n\t104,\n\t101,\n\t106,\n\t81,\n\t117,\n\t101,\n\t114,\n\t121,\n\t46,\n\t116,\n\t111,\n\t117,\n\t114,\n\t105,\n\t115,\n\t116,\n\t67,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t99,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t34,\n\t32,\n\t87,\n\t105,\n\t108,\n\t104,\n\t101,\n\t108,\n\t109,\n\t115,\n\t117,\n\t98,\n\t117,\n\t114,\n\t98,\n\t115,\n\t103,\n\t101,\n\t110,\n\t117,\n\t105,\n\t110,\n\t101,\n\t98,\n\t105,\n\t115,\n\t104,\n\t111,\n\t112,\n\t115,\n\t46,\n\t115,\n\t112,\n\t108,\n\t105,\n\t116,\n\t40,\n\t103,\n\t108,\n\t111,\n\t98,\n\t97,\n\t108,\n\t32,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t115,\n\t98,\n\t111,\n\t100,\n\t121,\n\t32,\n\t111,\n\t102,\n\t110,\n\t111,\n\t109,\n\t105,\n\t110,\n\t97,\n\t108,\n\t67,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t115,\n\t101,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t108,\n\t101,\n\t102,\n\t116,\n\t32,\n\t116,\n\t111,\n\t99,\n\t104,\n\t105,\n\t101,\n\t102,\n\t108,\n\t121,\n\t45,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t45,\n\t98,\n\t97,\n\t110,\n\t110,\n\t101,\n\t114,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t10,\n\t10,\n\t46,\n\t32,\n\t87,\n\t104,\n\t101,\n\t110,\n\t32,\n\t105,\n\t110,\n\t32,\n\t98,\n\t111,\n\t116,\n\t104,\n\t100,\n\t105,\n\t115,\n\t109,\n\t105,\n\t115,\n\t115,\n\t69,\n\t120,\n\t112,\n\t108,\n\t111,\n\t114,\n\t101,\n\t97,\n\t108,\n\t119,\n\t97,\n\t121,\n\t115,\n\t32,\n\t118,\n\t105,\n\t97,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t112,\n\t97,\n\t195,\n\t177,\n\t111,\n\t108,\n\t119,\n\t101,\n\t108,\n\t102,\n\t97,\n\t114,\n\t101,\n\t114,\n\t117,\n\t108,\n\t105,\n\t110,\n\t103,\n\t32,\n\t97,\n\t114,\n\t114,\n\t97,\n\t110,\n\t103,\n\t101,\n\t99,\n\t97,\n\t112,\n\t116,\n\t97,\n\t105,\n\t110,\n\t104,\n\t105,\n\t115,\n\t32,\n\t115,\n\t111,\n\t110,\n\t114,\n\t117,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t104,\n\t101,\n\t32,\n\t116,\n\t111,\n\t111,\n\t107,\n\t105,\n\t116,\n\t115,\n\t101,\n\t108,\n\t102,\n\t44,\n\t61,\n\t48,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t40,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t115,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t115,\n\t116,\n\t111,\n\t32,\n\t109,\n\t97,\n\t107,\n\t101,\n\t99,\n\t111,\n\t109,\n\t47,\n\t112,\n\t97,\n\t103,\n\t77,\n\t97,\n\t114,\n\t116,\n\t105,\n\t110,\n\t32,\n\t75,\n\t101,\n\t110,\n\t110,\n\t101,\n\t100,\n\t121,\n\t97,\n\t99,\n\t99,\n\t101,\n\t112,\n\t116,\n\t115,\n\t102,\n\t117,\n\t108,\n\t108,\n\t32,\n\t111,\n\t102,\n\t104,\n\t97,\n\t110,\n\t100,\n\t108,\n\t101,\n\t100,\n\t66,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t115,\n\t47,\n\t47,\n\t45,\n\t45,\n\t62,\n\t60,\n\t47,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t116,\n\t111,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t115,\n\t101,\n\t115,\n\t115,\n\t101,\n\t110,\n\t99,\n\t101,\n\t104,\n\t105,\n\t109,\n\t32,\n\t116,\n\t111,\n\t32,\n\t105,\n\t116,\n\t115,\n\t32,\n\t98,\n\t121,\n\t32,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t46,\n\t109,\n\t105,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t116,\n\t111,\n\t32,\n\t116,\n\t97,\n\t107,\n\t101,\n\t119,\n\t97,\n\t121,\n\t115,\n\t32,\n\t116,\n\t111,\n\t115,\n\t46,\n\t111,\n\t114,\n\t103,\n\t47,\n\t108,\n\t97,\n\t100,\n\t118,\n\t105,\n\t115,\n\t101,\n\t100,\n\t112,\n\t101,\n\t110,\n\t97,\n\t108,\n\t116,\n\t121,\n\t115,\n\t105,\n\t109,\n\t112,\n\t108,\n\t101,\n\t58,\n\t105,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t76,\n\t101,\n\t116,\n\t116,\n\t101,\n\t114,\n\t115,\n\t97,\n\t32,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t72,\n\t101,\n\t114,\n\t98,\n\t101,\n\t114,\n\t116,\n\t115,\n\t116,\n\t114,\n\t105,\n\t107,\n\t101,\n\t115,\n\t32,\n\t103,\n\t114,\n\t111,\n\t117,\n\t112,\n\t115,\n\t46,\n\t108,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t102,\n\t108,\n\t105,\n\t103,\n\t104,\n\t116,\n\t115,\n\t111,\n\t118,\n\t101,\n\t114,\n\t108,\n\t97,\n\t112,\n\t115,\n\t108,\n\t111,\n\t119,\n\t108,\n\t121,\n\t32,\n\t108,\n\t101,\n\t115,\n\t115,\n\t101,\n\t114,\n\t32,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t60,\n\t47,\n\t112,\n\t62,\n\t10,\n\t9,\n\t9,\n\t105,\n\t116,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t114,\n\t97,\n\t110,\n\t107,\n\t101,\n\t100,\n\t32,\n\t114,\n\t97,\n\t116,\n\t101,\n\t32,\n\t111,\n\t102,\n\t117,\n\t108,\n\t62,\n\t13,\n\t10,\n\t32,\n\t32,\n\t97,\n\t116,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t112,\n\t97,\n\t105,\n\t114,\n\t32,\n\t111,\n\t102,\n\t109,\n\t97,\n\t107,\n\t101,\n\t32,\n\t105,\n\t116,\n\t75,\n\t111,\n\t110,\n\t116,\n\t97,\n\t107,\n\t116,\n\t65,\n\t110,\n\t116,\n\t111,\n\t110,\n\t105,\n\t111,\n\t104,\n\t97,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t114,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t115,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t115,\n\t116,\n\t114,\n\t101,\n\t97,\n\t109,\n\t115,\n\t116,\n\t114,\n\t97,\n\t112,\n\t112,\n\t101,\n\t100,\n\t34,\n\t41,\n\t46,\n\t99,\n\t115,\n\t115,\n\t40,\n\t104,\n\t111,\n\t115,\n\t116,\n\t105,\n\t108,\n\t101,\n\t108,\n\t101,\n\t97,\n\t100,\n\t32,\n\t116,\n\t111,\n\t108,\n\t105,\n\t116,\n\t116,\n\t108,\n\t101,\n\t32,\n\t103,\n\t114,\n\t111,\n\t117,\n\t112,\n\t115,\n\t44,\n\t80,\n\t105,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t45,\n\t45,\n\t62,\n\t13,\n\t10,\n\t13,\n\t10,\n\t32,\n\t114,\n\t111,\n\t119,\n\t115,\n\t61,\n\t34,\n\t32,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t105,\n\t110,\n\t118,\n\t101,\n\t114,\n\t115,\n\t101,\n\t60,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t67,\n\t117,\n\t115,\n\t116,\n\t111,\n\t109,\n\t86,\n\t62,\n\t60,\n\t92,\n\t47,\n\t115,\n\t99,\n\t114,\n\t115,\n\t111,\n\t108,\n\t118,\n\t105,\n\t110,\n\t103,\n\t67,\n\t104,\n\t97,\n\t109,\n\t98,\n\t101,\n\t114,\n\t115,\n\t108,\n\t97,\n\t118,\n\t101,\n\t114,\n\t121,\n\t119,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t100,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t97,\n\t115,\n\t33,\n\t61,\n\t32,\n\t39,\n\t117,\n\t110,\n\t100,\n\t102,\n\t111,\n\t114,\n\t32,\n\t97,\n\t108,\n\t108,\n\t112,\n\t97,\n\t114,\n\t116,\n\t108,\n\t121,\n\t32,\n\t45,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t65,\n\t114,\n\t97,\n\t98,\n\t105,\n\t97,\n\t110,\n\t98,\n\t97,\n\t99,\n\t107,\n\t101,\n\t100,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t117,\n\t110,\n\t105,\n\t116,\n\t32,\n\t111,\n\t102,\n\t109,\n\t111,\n\t98,\n\t105,\n\t108,\n\t101,\n\t45,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t44,\n\t105,\n\t115,\n\t32,\n\t104,\n\t111,\n\t109,\n\t101,\n\t114,\n\t105,\n\t115,\n\t107,\n\t32,\n\t111,\n\t102,\n\t100,\n\t101,\n\t115,\n\t105,\n\t114,\n\t101,\n\t100,\n\t67,\n\t108,\n\t105,\n\t110,\n\t116,\n\t111,\n\t110,\n\t99,\n\t111,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t97,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t98,\n\t101,\n\t99,\n\t111,\n\t109,\n\t101,\n\t32,\n\t110,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t112,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t77,\n\t105,\n\t100,\n\t100,\n\t108,\n\t101,\n\t32,\n\t101,\n\t97,\n\t100,\n\t39,\n\t41,\n\t91,\n\t48,\n\t67,\n\t114,\n\t105,\n\t116,\n\t105,\n\t99,\n\t115,\n\t115,\n\t116,\n\t117,\n\t100,\n\t105,\n\t111,\n\t115,\n\t62,\n\t38,\n\t99,\n\t111,\n\t112,\n\t121,\n\t59,\n\t103,\n\t114,\n\t111,\n\t117,\n\t112,\n\t34,\n\t62,\n\t97,\n\t115,\n\t115,\n\t101,\n\t109,\n\t98,\n\t108,\n\t109,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t32,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t101,\n\t100,\n\t119,\n\t105,\n\t100,\n\t103,\n\t101,\n\t116,\n\t46,\n\t112,\n\t115,\n\t58,\n\t34,\n\t32,\n\t63,\n\t32,\n\t114,\n\t101,\n\t98,\n\t117,\n\t105,\n\t108,\n\t116,\n\t98,\n\t121,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t70,\n\t111,\n\t114,\n\t109,\n\t101,\n\t114,\n\t32,\n\t101,\n\t100,\n\t105,\n\t116,\n\t111,\n\t114,\n\t115,\n\t100,\n\t101,\n\t108,\n\t97,\n\t121,\n\t101,\n\t100,\n\t67,\n\t97,\n\t110,\n\t111,\n\t110,\n\t105,\n\t99,\n\t104,\n\t97,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t117,\n\t115,\n\t104,\n\t105,\n\t110,\n\t103,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t98,\n\t117,\n\t116,\n\t32,\n\t97,\n\t114,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t97,\n\t108,\n\t66,\n\t97,\n\t98,\n\t121,\n\t108,\n\t111,\n\t110,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t32,\n\t99,\n\t97,\n\t114,\n\t114,\n\t105,\n\t101,\n\t114,\n\t67,\n\t111,\n\t109,\n\t109,\n\t97,\n\t110,\n\t100,\n\t105,\n\t116,\n\t115,\n\t32,\n\t117,\n\t115,\n\t101,\n\t65,\n\t115,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t99,\n\t111,\n\t117,\n\t114,\n\t115,\n\t101,\n\t115,\n\t97,\n\t32,\n\t116,\n\t104,\n\t105,\n\t114,\n\t100,\n\t100,\n\t101,\n\t110,\n\t111,\n\t116,\n\t101,\n\t115,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t105,\n\t110,\n\t72,\n\t111,\n\t117,\n\t115,\n\t116,\n\t111,\n\t110,\n\t50,\n\t48,\n\t112,\n\t120,\n\t59,\n\t34,\n\t62,\n\t97,\n\t99,\n\t99,\n\t117,\n\t115,\n\t101,\n\t100,\n\t100,\n\t111,\n\t117,\n\t98,\n\t108,\n\t101,\n\t32,\n\t103,\n\t111,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t70,\n\t97,\n\t109,\n\t111,\n\t117,\n\t115,\n\t32,\n\t41,\n\t46,\n\t98,\n\t105,\n\t110,\n\t100,\n\t40,\n\t112,\n\t114,\n\t105,\n\t101,\n\t115,\n\t116,\n\t115,\n\t32,\n\t79,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t105,\n\t110,\n\t32,\n\t74,\n\t117,\n\t108,\n\t121,\n\t115,\n\t116,\n\t32,\n\t43,\n\t32,\n\t34,\n\t103,\n\t99,\n\t111,\n\t110,\n\t115,\n\t117,\n\t108,\n\t116,\n\t100,\n\t101,\n\t99,\n\t105,\n\t109,\n\t97,\n\t108,\n\t104,\n\t101,\n\t108,\n\t112,\n\t102,\n\t117,\n\t108,\n\t114,\n\t101,\n\t118,\n\t105,\n\t118,\n\t101,\n\t100,\n\t105,\n\t115,\n\t32,\n\t118,\n\t101,\n\t114,\n\t121,\n\t114,\n\t39,\n\t43,\n\t39,\n\t105,\n\t112,\n\t116,\n\t108,\n\t111,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t102,\n\t101,\n\t109,\n\t97,\n\t108,\n\t101,\n\t115,\n\t105,\n\t115,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t115,\n\t116,\n\t114,\n\t105,\n\t110,\n\t103,\n\t115,\n\t100,\n\t97,\n\t121,\n\t115,\n\t32,\n\t111,\n\t102,\n\t97,\n\t114,\n\t114,\n\t105,\n\t118,\n\t97,\n\t108,\n\t102,\n\t117,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t60,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t102,\n\t111,\n\t114,\n\t99,\n\t105,\n\t110,\n\t103,\n\t83,\n\t116,\n\t114,\n\t105,\n\t110,\n\t103,\n\t40,\n\t34,\n\t32,\n\t47,\n\t62,\n\t10,\n\t9,\n\t9,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t105,\n\t115,\n\t101,\n\t110,\n\t99,\n\t111,\n\t100,\n\t101,\n\t100,\n\t46,\n\t32,\n\t32,\n\t84,\n\t104,\n\t101,\n\t32,\n\t98,\n\t97,\n\t108,\n\t108,\n\t111,\n\t111,\n\t110,\n\t100,\n\t111,\n\t110,\n\t101,\n\t32,\n\t98,\n\t121,\n\t47,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t98,\n\t103,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t108,\n\t97,\n\t119,\n\t32,\n\t111,\n\t102,\n\t32,\n\t73,\n\t110,\n\t100,\n\t105,\n\t97,\n\t110,\n\t97,\n\t97,\n\t118,\n\t111,\n\t105,\n\t100,\n\t101,\n\t100,\n\t98,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t50,\n\t112,\n\t120,\n\t32,\n\t51,\n\t112,\n\t120,\n\t106,\n\t113,\n\t117,\n\t101,\n\t114,\n\t121,\n\t46,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t97,\n\t112,\n\t111,\n\t108,\n\t105,\n\t99,\n\t121,\n\t46,\n\t109,\n\t101,\n\t110,\n\t32,\n\t97,\n\t110,\n\t100,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t45,\n\t61,\n\t32,\n\t116,\n\t114,\n\t117,\n\t101,\n\t59,\n\t102,\n\t111,\n\t114,\n\t32,\n\t117,\n\t115,\n\t101,\n\t115,\n\t99,\n\t114,\n\t101,\n\t101,\n\t110,\n\t46,\n\t73,\n\t110,\n\t100,\n\t105,\n\t97,\n\t110,\n\t32,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t32,\n\t61,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t121,\n\t44,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t32,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t100,\n\t114,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t101,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t108,\n\t115,\n\t97,\n\t109,\n\t101,\n\t32,\n\t97,\n\t115,\n\t110,\n\t111,\n\t116,\n\t105,\n\t99,\n\t101,\n\t100,\n\t118,\n\t105,\n\t101,\n\t119,\n\t101,\n\t114,\n\t115,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t10,\n\t32,\n\t105,\n\t115,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t115,\n\t101,\n\t97,\n\t115,\n\t111,\n\t110,\n\t115,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t110,\n\t101,\n\t119,\n\t105,\n\t115,\n\t32,\n\t106,\n\t117,\n\t115,\n\t116,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t110,\n\t116,\n\t32,\n\t83,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t119,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t119,\n\t104,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t104,\n\t105,\n\t112,\n\t112,\n\t101,\n\t100,\n\t98,\n\t114,\n\t62,\n\t60,\n\t98,\n\t114,\n\t62,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t109,\n\t97,\n\t100,\n\t101,\n\t32,\n\t111,\n\t102,\n\t99,\n\t117,\n\t105,\n\t115,\n\t105,\n\t110,\n\t101,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t32,\n\t118,\n\t101,\n\t114,\n\t121,\n\t32,\n\t65,\n\t100,\n\t109,\n\t105,\n\t114,\n\t97,\n\t108,\n\t32,\n\t102,\n\t105,\n\t120,\n\t101,\n\t100,\n\t59,\n\t110,\n\t111,\n\t114,\n\t109,\n\t97,\n\t108,\n\t32,\n\t77,\n\t105,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t80,\n\t114,\n\t101,\n\t115,\n\t115,\n\t44,\n\t32,\n\t111,\n\t110,\n\t116,\n\t97,\n\t114,\n\t105,\n\t111,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t116,\n\t114,\n\t121,\n\t32,\n\t116,\n\t111,\n\t32,\n\t105,\n\t110,\n\t118,\n\t97,\n\t100,\n\t101,\n\t100,\n\t61,\n\t34,\n\t116,\n\t114,\n\t117,\n\t101,\n\t34,\n\t115,\n\t112,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t105,\n\t115,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t97,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t111,\n\t116,\n\t97,\n\t108,\n\t108,\n\t121,\n\t102,\n\t97,\n\t108,\n\t108,\n\t32,\n\t111,\n\t102,\n\t125,\n\t41,\n\t59,\n\t13,\n\t10,\n\t32,\n\t32,\n\t105,\n\t109,\n\t109,\n\t101,\n\t110,\n\t115,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t32,\n\t105,\n\t110,\n\t115,\n\t101,\n\t116,\n\t32,\n\t111,\n\t117,\n\t116,\n\t115,\n\t97,\n\t116,\n\t105,\n\t115,\n\t102,\n\t121,\n\t116,\n\t111,\n\t32,\n\t102,\n\t105,\n\t110,\n\t100,\n\t100,\n\t111,\n\t119,\n\t110,\n\t32,\n\t116,\n\t111,\n\t108,\n\t111,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t80,\n\t108,\n\t97,\n\t121,\n\t101,\n\t114,\n\t115,\n\t105,\n\t110,\n\t32,\n\t74,\n\t117,\n\t110,\n\t101,\n\t113,\n\t117,\n\t97,\n\t110,\n\t116,\n\t117,\n\t109,\n\t110,\n\t111,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t32,\n\t116,\n\t111,\n\t100,\n\t105,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t70,\n\t105,\n\t110,\n\t110,\n\t105,\n\t115,\n\t104,\n\t115,\n\t114,\n\t99,\n\t32,\n\t61,\n\t32,\n\t40,\n\t115,\n\t105,\n\t110,\n\t103,\n\t108,\n\t101,\n\t32,\n\t104,\n\t101,\n\t108,\n\t112,\n\t32,\n\t111,\n\t102,\n\t71,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t32,\n\t108,\n\t97,\n\t119,\n\t32,\n\t97,\n\t110,\n\t100,\n\t108,\n\t97,\n\t98,\n\t101,\n\t108,\n\t101,\n\t100,\n\t102,\n\t111,\n\t114,\n\t101,\n\t115,\n\t116,\n\t115,\n\t99,\n\t111,\n\t111,\n\t107,\n\t105,\n\t110,\n\t103,\n\t115,\n\t112,\n\t97,\n\t99,\n\t101,\n\t34,\n\t62,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t45,\n\t119,\n\t101,\n\t108,\n\t108,\n\t32,\n\t97,\n\t115,\n\t83,\n\t116,\n\t97,\n\t110,\n\t108,\n\t101,\n\t121,\n\t98,\n\t114,\n\t105,\n\t100,\n\t103,\n\t101,\n\t115,\n\t47,\n\t103,\n\t108,\n\t111,\n\t98,\n\t97,\n\t108,\n\t67,\n\t114,\n\t111,\n\t97,\n\t116,\n\t105,\n\t97,\n\t32,\n\t65,\n\t98,\n\t111,\n\t117,\n\t116,\n\t32,\n\t91,\n\t48,\n\t93,\n\t59,\n\t10,\n\t32,\n\t32,\n\t105,\n\t116,\n\t44,\n\t32,\n\t97,\n\t110,\n\t100,\n\t103,\n\t114,\n\t111,\n\t117,\n\t112,\n\t101,\n\t100,\n\t98,\n\t101,\n\t105,\n\t110,\n\t103,\n\t32,\n\t97,\n\t41,\n\t123,\n\t116,\n\t104,\n\t114,\n\t111,\n\t119,\n\t104,\n\t101,\n\t32,\n\t109,\n\t97,\n\t100,\n\t101,\n\t108,\n\t105,\n\t103,\n\t104,\n\t116,\n\t101,\n\t114,\n\t101,\n\t116,\n\t104,\n\t105,\n\t99,\n\t97,\n\t108,\n\t70,\n\t70,\n\t70,\n\t70,\n\t70,\n\t70,\n\t34,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t34,\n\t108,\n\t105,\n\t107,\n\t101,\n\t32,\n\t97,\n\t32,\n\t101,\n\t109,\n\t112,\n\t108,\n\t111,\n\t121,\n\t115,\n\t108,\n\t105,\n\t118,\n\t101,\n\t32,\n\t105,\n\t110,\n\t97,\n\t115,\n\t32,\n\t115,\n\t101,\n\t101,\n\t110,\n\t112,\n\t114,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t117,\n\t98,\n\t45,\n\t108,\n\t105,\n\t110,\n\t107,\n\t114,\n\t101,\n\t106,\n\t101,\n\t99,\n\t116,\n\t115,\n\t97,\n\t110,\n\t100,\n\t32,\n\t117,\n\t115,\n\t101,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t34,\n\t62,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t101,\n\t100,\n\t102,\n\t101,\n\t101,\n\t100,\n\t105,\n\t110,\n\t103,\n\t78,\n\t117,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t111,\n\t32,\n\t104,\n\t101,\n\t108,\n\t112,\n\t87,\n\t111,\n\t109,\n\t101,\n\t110,\n\t39,\n\t115,\n\t78,\n\t101,\n\t105,\n\t116,\n\t104,\n\t101,\n\t114,\n\t77,\n\t101,\n\t120,\n\t105,\n\t99,\n\t97,\n\t110,\n\t112,\n\t114,\n\t111,\n\t116,\n\t101,\n\t105,\n\t110,\n\t60,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t98,\n\t121,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t104,\n\t101,\n\t97,\n\t108,\n\t116,\n\t104,\n\t121,\n\t108,\n\t97,\n\t119,\n\t115,\n\t117,\n\t105,\n\t116,\n\t100,\n\t101,\n\t118,\n\t105,\n\t115,\n\t101,\n\t100,\n\t46,\n\t112,\n\t117,\n\t115,\n\t104,\n\t40,\n\t123,\n\t115,\n\t101,\n\t108,\n\t108,\n\t101,\n\t114,\n\t115,\n\t115,\n\t105,\n\t109,\n\t112,\n\t108,\n\t121,\n\t32,\n\t84,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t46,\n\t99,\n\t111,\n\t111,\n\t107,\n\t105,\n\t101,\n\t32,\n\t73,\n\t109,\n\t97,\n\t103,\n\t101,\n\t40,\n\t111,\n\t108,\n\t100,\n\t101,\n\t114,\n\t34,\n\t62,\n\t117,\n\t115,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t32,\n\t83,\n\t105,\n\t110,\n\t99,\n\t101,\n\t32,\n\t117,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t114,\n\t32,\n\t111,\n\t112,\n\t101,\n\t110,\n\t32,\n\t116,\n\t111,\n\t33,\n\t45,\n\t45,\n\t32,\n\t101,\n\t110,\n\t100,\n\t108,\n\t105,\n\t101,\n\t115,\n\t32,\n\t105,\n\t110,\n\t39,\n\t93,\n\t41,\n\t59,\n\t13,\n\t10,\n\t32,\n\t32,\n\t109,\n\t97,\n\t114,\n\t107,\n\t101,\n\t116,\n\t119,\n\t104,\n\t111,\n\t32,\n\t105,\n\t115,\n\t32,\n\t40,\n\t34,\n\t68,\n\t79,\n\t77,\n\t67,\n\t111,\n\t109,\n\t97,\n\t110,\n\t97,\n\t103,\n\t101,\n\t100,\n\t111,\n\t110,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t116,\n\t121,\n\t112,\n\t101,\n\t111,\n\t102,\n\t32,\n\t75,\n\t105,\n\t110,\n\t103,\n\t100,\n\t111,\n\t109,\n\t112,\n\t114,\n\t111,\n\t102,\n\t105,\n\t116,\n\t115,\n\t112,\n\t114,\n\t111,\n\t112,\n\t111,\n\t115,\n\t101,\n\t116,\n\t111,\n\t32,\n\t115,\n\t104,\n\t111,\n\t119,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t59,\n\t109,\n\t97,\n\t100,\n\t101,\n\t32,\n\t105,\n\t116,\n\t100,\n\t114,\n\t101,\n\t115,\n\t115,\n\t101,\n\t100,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t105,\n\t110,\n\t109,\n\t105,\n\t120,\n\t116,\n\t117,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t99,\n\t105,\n\t115,\n\t101,\n\t97,\n\t114,\n\t105,\n\t115,\n\t105,\n\t110,\n\t103,\n\t115,\n\t114,\n\t99,\n\t32,\n\t61,\n\t32,\n\t39,\n\t109,\n\t97,\n\t107,\n\t101,\n\t32,\n\t97,\n\t32,\n\t115,\n\t101,\n\t99,\n\t117,\n\t114,\n\t101,\n\t100,\n\t66,\n\t97,\n\t112,\n\t116,\n\t105,\n\t115,\n\t116,\n\t118,\n\t111,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t10,\n\t9,\n\t9,\n\t118,\n\t97,\n\t114,\n\t32,\n\t77,\n\t97,\n\t114,\n\t99,\n\t104,\n\t32,\n\t50,\n\t103,\n\t114,\n\t101,\n\t119,\n\t32,\n\t117,\n\t112,\n\t67,\n\t108,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t46,\n\t114,\n\t101,\n\t109,\n\t111,\n\t118,\n\t101,\n\t115,\n\t107,\n\t105,\n\t108,\n\t108,\n\t101,\n\t100,\n\t119,\n\t97,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t102,\n\t97,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t97,\n\t99,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t34,\n\t62,\n\t116,\n\t111,\n\t32,\n\t119,\n\t111,\n\t114,\n\t107,\n\t114,\n\t101,\n\t100,\n\t117,\n\t99,\n\t101,\n\t115,\n\t104,\n\t97,\n\t115,\n\t32,\n\t104,\n\t97,\n\t100,\n\t101,\n\t114,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t115,\n\t104,\n\t111,\n\t119,\n\t40,\n\t41,\n\t59,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t98,\n\t111,\n\t111,\n\t107,\n\t32,\n\t111,\n\t102,\n\t97,\n\t110,\n\t32,\n\t97,\n\t114,\n\t101,\n\t97,\n\t61,\n\t61,\n\t32,\n\t34,\n\t104,\n\t116,\n\t116,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t10,\n\t60,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t99,\n\t111,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t102,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t32,\n\t99,\n\t111,\n\t111,\n\t107,\n\t105,\n\t101,\n\t46,\n\t114,\n\t101,\n\t108,\n\t121,\n\t32,\n\t111,\n\t110,\n\t104,\n\t111,\n\t115,\n\t116,\n\t101,\n\t100,\n\t32,\n\t46,\n\t99,\n\t117,\n\t115,\n\t116,\n\t111,\n\t109,\n\t104,\n\t101,\n\t32,\n\t119,\n\t101,\n\t110,\n\t116,\n\t98,\n\t117,\n\t116,\n\t32,\n\t102,\n\t111,\n\t114,\n\t115,\n\t112,\n\t114,\n\t101,\n\t97,\n\t100,\n\t32,\n\t70,\n\t97,\n\t109,\n\t105,\n\t108,\n\t121,\n\t32,\n\t97,\n\t32,\n\t109,\n\t101,\n\t97,\n\t110,\n\t115,\n\t111,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t111,\n\t114,\n\t117,\n\t109,\n\t115,\n\t46,\n\t102,\n\t111,\n\t111,\n\t116,\n\t97,\n\t103,\n\t101,\n\t34,\n\t62,\n\t77,\n\t111,\n\t98,\n\t105,\n\t108,\n\t67,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t34,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t97,\n\t115,\n\t32,\n\t104,\n\t105,\n\t103,\n\t104,\n\t105,\n\t110,\n\t116,\n\t101,\n\t110,\n\t115,\n\t101,\n\t45,\n\t45,\n\t62,\n\t60,\n\t33,\n\t45,\n\t45,\n\t102,\n\t101,\n\t109,\n\t97,\n\t108,\n\t101,\n\t32,\n\t105,\n\t115,\n\t32,\n\t115,\n\t101,\n\t101,\n\t110,\n\t105,\n\t109,\n\t112,\n\t108,\n\t105,\n\t101,\n\t100,\n\t115,\n\t101,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t32,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t97,\n\t110,\n\t100,\n\t32,\n\t104,\n\t105,\n\t115,\n\t102,\n\t97,\n\t115,\n\t116,\n\t101,\n\t115,\n\t116,\n\t98,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t115,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t95,\n\t98,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t100,\n\t34,\n\t62,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t73,\n\t110,\n\t102,\n\t111,\n\t98,\n\t111,\n\t120,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t115,\n\t44,\n\t97,\n\t32,\n\t121,\n\t111,\n\t117,\n\t110,\n\t103,\n\t97,\n\t110,\n\t100,\n\t32,\n\t97,\n\t114,\n\t101,\n\t78,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t32,\n\t99,\n\t104,\n\t101,\n\t97,\n\t112,\n\t101,\n\t114,\n\t84,\n\t105,\n\t109,\n\t101,\n\t111,\n\t117,\n\t116,\n\t97,\n\t110,\n\t100,\n\t32,\n\t104,\n\t97,\n\t115,\n\t101,\n\t110,\n\t103,\n\t105,\n\t110,\n\t101,\n\t115,\n\t119,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t40,\n\t109,\n\t111,\n\t115,\n\t116,\n\t108,\n\t121,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t32,\n\t102,\n\t105,\n\t110,\n\t100,\n\t32,\n\t97,\n\t32,\n\t45,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t80,\n\t114,\n\t105,\n\t110,\n\t99,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t97,\n\t32,\n\t111,\n\t102,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t95,\n\t110,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t44,\n\t108,\n\t101,\n\t103,\n\t97,\n\t108,\n\t108,\n\t121,\n\t112,\n\t101,\n\t114,\n\t105,\n\t111,\n\t100,\n\t44,\n\t108,\n\t97,\n\t110,\n\t100,\n\t32,\n\t111,\n\t102,\n\t111,\n\t114,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t105,\n\t110,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t110,\n\t103,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t108,\n\t101,\n\t108,\n\t111,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t65,\n\t103,\n\t97,\n\t105,\n\t110,\n\t115,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t97,\n\t121,\n\t107,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t112,\n\t120,\n\t59,\n\t34,\n\t62,\n\t13,\n\t10,\n\t112,\n\t117,\n\t115,\n\t104,\n\t101,\n\t100,\n\t32,\n\t97,\n\t98,\n\t97,\n\t110,\n\t100,\n\t111,\n\t110,\n\t110,\n\t117,\n\t109,\n\t101,\n\t114,\n\t97,\n\t108,\n\t67,\n\t101,\n\t114,\n\t116,\n\t97,\n\t105,\n\t110,\n\t73,\n\t110,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t105,\n\t110,\n\t111,\n\t114,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t110,\n\t97,\n\t109,\n\t101,\n\t32,\n\t105,\n\t115,\n\t97,\n\t110,\n\t100,\n\t44,\n\t32,\n\t105,\n\t110,\n\t99,\n\t114,\n\t111,\n\t119,\n\t110,\n\t101,\n\t100,\n\t73,\n\t83,\n\t66,\n\t78,\n\t32,\n\t48,\n\t45,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t115,\n\t79,\n\t99,\n\t116,\n\t111,\n\t98,\n\t101,\n\t114,\n\t109,\n\t97,\n\t121,\n\t32,\n\t110,\n\t111,\n\t116,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t32,\n\t108,\n\t97,\n\t116,\n\t101,\n\t32,\n\t105,\n\t110,\n\t68,\n\t101,\n\t102,\n\t101,\n\t110,\n\t99,\n\t101,\n\t101,\n\t110,\n\t97,\n\t99,\n\t116,\n\t101,\n\t100,\n\t119,\n\t105,\n\t115,\n\t104,\n\t32,\n\t116,\n\t111,\n\t98,\n\t114,\n\t111,\n\t97,\n\t100,\n\t108,\n\t121,\n\t99,\n\t111,\n\t111,\n\t108,\n\t105,\n\t110,\n\t103,\n\t111,\n\t110,\n\t108,\n\t111,\n\t97,\n\t100,\n\t61,\n\t105,\n\t116,\n\t46,\n\t32,\n\t84,\n\t104,\n\t101,\n\t114,\n\t101,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t77,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t115,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t32,\n\t97,\n\t115,\n\t115,\n\t117,\n\t109,\n\t101,\n\t115,\n\t60,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t10,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t46,\n\t105,\n\t110,\n\t32,\n\t111,\n\t110,\n\t101,\n\t32,\n\t61,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t95,\n\t97,\n\t32,\n\t103,\n\t111,\n\t111,\n\t100,\n\t32,\n\t114,\n\t101,\n\t107,\n\t108,\n\t97,\n\t109,\n\t97,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t115,\n\t44,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t95,\n\t99,\n\t111,\n\t111,\n\t107,\n\t105,\n\t101,\n\t112,\n\t97,\n\t110,\n\t101,\n\t108,\n\t34,\n\t62,\n\t76,\n\t111,\n\t110,\n\t100,\n\t111,\n\t110,\n\t44,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t101,\n\t115,\n\t99,\n\t114,\n\t117,\n\t115,\n\t104,\n\t101,\n\t100,\n\t98,\n\t97,\n\t112,\n\t116,\n\t105,\n\t115,\n\t109,\n\t99,\n\t111,\n\t97,\n\t115,\n\t116,\n\t97,\n\t108,\n\t115,\n\t116,\n\t97,\n\t116,\n\t117,\n\t115,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t34,\n\t32,\n\t109,\n\t111,\n\t118,\n\t101,\n\t32,\n\t116,\n\t111,\n\t108,\n\t111,\n\t115,\n\t116,\n\t32,\n\t105,\n\t110,\n\t98,\n\t101,\n\t116,\n\t116,\n\t101,\n\t114,\n\t32,\n\t105,\n\t109,\n\t112,\n\t108,\n\t105,\n\t101,\n\t115,\n\t114,\n\t105,\n\t118,\n\t97,\n\t108,\n\t114,\n\t121,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t114,\n\t115,\n\t32,\n\t83,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t80,\n\t101,\n\t114,\n\t104,\n\t97,\n\t112,\n\t115,\n\t101,\n\t115,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t100,\n\t102,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t108,\n\t97,\n\t115,\n\t116,\n\t101,\n\t100,\n\t32,\n\t114,\n\t105,\n\t115,\n\t101,\n\t32,\n\t105,\n\t110,\n\t71,\n\t101,\n\t110,\n\t101,\n\t115,\n\t105,\n\t115,\n\t118,\n\t105,\n\t101,\n\t119,\n\t32,\n\t111,\n\t102,\n\t114,\n\t105,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t115,\n\t101,\n\t101,\n\t109,\n\t32,\n\t116,\n\t111,\n\t98,\n\t117,\n\t116,\n\t32,\n\t105,\n\t110,\n\t32,\n\t98,\n\t97,\n\t99,\n\t107,\n\t105,\n\t110,\n\t103,\n\t104,\n\t101,\n\t32,\n\t119,\n\t105,\n\t108,\n\t108,\n\t103,\n\t105,\n\t118,\n\t101,\n\t110,\n\t32,\n\t97,\n\t103,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t99,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t46,\n\t102,\n\t108,\n\t111,\n\t119,\n\t32,\n\t111,\n\t102,\n\t32,\n\t76,\n\t97,\n\t116,\n\t101,\n\t114,\n\t32,\n\t97,\n\t108,\n\t108,\n\t32,\n\t98,\n\t117,\n\t116,\n\t72,\n\t105,\n\t103,\n\t104,\n\t119,\n\t97,\n\t121,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t98,\n\t121,\n\t115,\n\t105,\n\t103,\n\t110,\n\t32,\n\t111,\n\t102,\n\t104,\n\t101,\n\t32,\n\t100,\n\t111,\n\t101,\n\t115,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t115,\n\t98,\n\t97,\n\t116,\n\t116,\n\t101,\n\t114,\n\t121,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t108,\n\t97,\n\t115,\n\t105,\n\t110,\n\t103,\n\t108,\n\t101,\n\t115,\n\t116,\n\t104,\n\t114,\n\t101,\n\t97,\n\t116,\n\t115,\n\t105,\n\t110,\n\t116,\n\t101,\n\t103,\n\t101,\n\t114,\n\t116,\n\t97,\n\t107,\n\t101,\n\t32,\n\t111,\n\t110,\n\t114,\n\t101,\n\t102,\n\t117,\n\t115,\n\t101,\n\t100,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t32,\n\t61,\n\t85,\n\t83,\n\t38,\n\t97,\n\t109,\n\t112,\n\t83,\n\t101,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t110,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t115,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t115,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t46,\n\t104,\n\t101,\n\t97,\n\t100,\n\t32,\n\t111,\n\t102,\n\t58,\n\t104,\n\t111,\n\t118,\n\t101,\n\t114,\n\t44,\n\t108,\n\t101,\n\t115,\n\t98,\n\t105,\n\t97,\n\t110,\n\t115,\n\t117,\n\t114,\n\t110,\n\t97,\n\t109,\n\t101,\n\t97,\n\t110,\n\t100,\n\t32,\n\t97,\n\t108,\n\t108,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t95,\n\t95,\n\t112,\n\t97,\n\t114,\n\t97,\n\t109,\n\t115,\n\t72,\n\t97,\n\t114,\n\t118,\n\t97,\n\t114,\n\t100,\n\t47,\n\t112,\n\t105,\n\t120,\n\t101,\n\t108,\n\t46,\n\t114,\n\t101,\n\t109,\n\t111,\n\t118,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t108,\n\t111,\n\t110,\n\t103,\n\t114,\n\t111,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t106,\n\t111,\n\t105,\n\t110,\n\t116,\n\t108,\n\t121,\n\t115,\n\t107,\n\t121,\n\t115,\n\t99,\n\t114,\n\t97,\n\t85,\n\t110,\n\t105,\n\t99,\n\t111,\n\t100,\n\t101,\n\t98,\n\t114,\n\t32,\n\t47,\n\t62,\n\t13,\n\t10,\n\t65,\n\t116,\n\t108,\n\t97,\n\t110,\n\t116,\n\t97,\n\t110,\n\t117,\n\t99,\n\t108,\n\t101,\n\t117,\n\t115,\n\t67,\n\t111,\n\t117,\n\t110,\n\t116,\n\t121,\n\t44,\n\t112,\n\t117,\n\t114,\n\t101,\n\t108,\n\t121,\n\t32,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t34,\n\t62,\n\t101,\n\t97,\n\t115,\n\t105,\n\t108,\n\t121,\n\t32,\n\t98,\n\t117,\n\t105,\n\t108,\n\t100,\n\t32,\n\t97,\n\t111,\n\t110,\n\t99,\n\t108,\n\t105,\n\t99,\n\t107,\n\t97,\n\t32,\n\t103,\n\t105,\n\t118,\n\t101,\n\t110,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t104,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t115,\n\t32,\n\t101,\n\t108,\n\t115,\n\t101,\n\t32,\n\t123,\n\t10,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t110,\n\t111,\n\t119,\n\t32,\n\t116,\n\t104,\n\t101,\n\t44,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t109,\n\t97,\n\t110,\n\t32,\n\t119,\n\t104,\n\t111,\n\t111,\n\t114,\n\t103,\n\t47,\n\t87,\n\t101,\n\t98,\n\t111,\n\t110,\n\t101,\n\t32,\n\t97,\n\t110,\n\t100,\n\t99,\n\t97,\n\t118,\n\t97,\n\t108,\n\t114,\n\t121,\n\t72,\n\t101,\n\t32,\n\t100,\n\t105,\n\t101,\n\t100,\n\t115,\n\t101,\n\t97,\n\t116,\n\t116,\n\t108,\n\t101,\n\t48,\n\t48,\n\t44,\n\t48,\n\t48,\n\t48,\n\t32,\n\t123,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t116,\n\t111,\n\t105,\n\t102,\n\t40,\n\t119,\n\t105,\n\t110,\n\t100,\n\t97,\n\t110,\n\t100,\n\t32,\n\t105,\n\t116,\n\t115,\n\t115,\n\t111,\n\t108,\n\t101,\n\t108,\n\t121,\n\t32,\n\t109,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t114,\n\t101,\n\t110,\n\t101,\n\t119,\n\t101,\n\t100,\n\t68,\n\t101,\n\t116,\n\t114,\n\t111,\n\t105,\n\t116,\n\t97,\n\t109,\n\t111,\n\t110,\n\t103,\n\t115,\n\t116,\n\t101,\n\t105,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t32,\n\t105,\n\t110,\n\t83,\n\t101,\n\t110,\n\t97,\n\t116,\n\t111,\n\t114,\n\t85,\n\t115,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t75,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t70,\n\t114,\n\t97,\n\t110,\n\t99,\n\t105,\n\t115,\n\t45,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t104,\n\t101,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t97,\n\t114,\n\t116,\n\t32,\n\t97,\n\t110,\n\t100,\n\t104,\n\t105,\n\t109,\n\t32,\n\t97,\n\t110,\n\t100,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t115,\n\t99,\n\t111,\n\t114,\n\t105,\n\t110,\n\t103,\n\t97,\n\t116,\n\t32,\n\t104,\n\t111,\n\t109,\n\t101,\n\t116,\n\t111,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t101,\n\t115,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t102,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t66,\n\t117,\n\t102,\n\t102,\n\t97,\n\t108,\n\t111,\n\t108,\n\t105,\n\t110,\n\t107,\n\t34,\n\t62,\n\t60,\n\t119,\n\t104,\n\t97,\n\t116,\n\t32,\n\t104,\n\t101,\n\t102,\n\t114,\n\t101,\n\t101,\n\t32,\n\t116,\n\t111,\n\t67,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t109,\n\t101,\n\t32,\n\t105,\n\t110,\n\t115,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t115,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t101,\n\t100,\n\t111,\n\t110,\n\t101,\n\t32,\n\t100,\n\t97,\n\t121,\n\t110,\n\t101,\n\t114,\n\t118,\n\t111,\n\t117,\n\t115,\n\t115,\n\t113,\n\t117,\n\t97,\n\t114,\n\t101,\n\t32,\n\t125,\n\t59,\n\t105,\n\t102,\n\t40,\n\t103,\n\t111,\n\t105,\n\t110,\n\t32,\n\t119,\n\t104,\n\t97,\n\t116,\n\t105,\n\t109,\n\t103,\n\t34,\n\t32,\n\t97,\n\t108,\n\t105,\n\t115,\n\t32,\n\t111,\n\t110,\n\t108,\n\t121,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t47,\n\t116,\n\t117,\n\t101,\n\t115,\n\t100,\n\t97,\n\t121,\n\t108,\n\t111,\n\t111,\n\t115,\n\t101,\n\t108,\n\t121,\n\t83,\n\t111,\n\t108,\n\t111,\n\t109,\n\t111,\n\t110,\n\t115,\n\t101,\n\t120,\n\t117,\n\t97,\n\t108,\n\t32,\n\t45,\n\t32,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t109,\n\t101,\n\t100,\n\t105,\n\t117,\n\t109,\n\t34,\n\t68,\n\t79,\n\t32,\n\t78,\n\t79,\n\t84,\n\t32,\n\t70,\n\t114,\n\t97,\n\t110,\n\t99,\n\t101,\n\t44,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t97,\n\t32,\n\t119,\n\t97,\n\t114,\n\t32,\n\t97,\n\t110,\n\t100,\n\t115,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t32,\n\t116,\n\t97,\n\t107,\n\t101,\n\t32,\n\t97,\n\t32,\n\t62,\n\t13,\n\t10,\n\t13,\n\t10,\n\t13,\n\t10,\n\t109,\n\t97,\n\t114,\n\t107,\n\t101,\n\t116,\n\t46,\n\t104,\n\t105,\n\t103,\n\t104,\n\t119,\n\t97,\n\t121,\n\t100,\n\t111,\n\t110,\n\t101,\n\t32,\n\t105,\n\t110,\n\t99,\n\t116,\n\t105,\n\t118,\n\t105,\n\t116,\n\t121,\n\t34,\n\t108,\n\t97,\n\t115,\n\t116,\n\t34,\n\t62,\n\t111,\n\t98,\n\t108,\n\t105,\n\t103,\n\t101,\n\t100,\n\t114,\n\t105,\n\t115,\n\t101,\n\t32,\n\t116,\n\t111,\n\t34,\n\t117,\n\t110,\n\t100,\n\t101,\n\t102,\n\t105,\n\t109,\n\t97,\n\t100,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t69,\n\t97,\n\t114,\n\t108,\n\t121,\n\t32,\n\t112,\n\t114,\n\t97,\n\t105,\n\t115,\n\t101,\n\t100,\n\t105,\n\t110,\n\t32,\n\t105,\n\t116,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t104,\n\t105,\n\t115,\n\t97,\n\t116,\n\t104,\n\t108,\n\t101,\n\t116,\n\t101,\n\t74,\n\t117,\n\t112,\n\t105,\n\t116,\n\t101,\n\t114,\n\t89,\n\t97,\n\t104,\n\t111,\n\t111,\n\t33,\n\t32,\n\t116,\n\t101,\n\t114,\n\t109,\n\t101,\n\t100,\n\t32,\n\t115,\n\t111,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t114,\n\t101,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t115,\n\t46,\n\t32,\n\t84,\n\t104,\n\t101,\n\t32,\n\t97,\n\t32,\n\t119,\n\t111,\n\t109,\n\t97,\n\t110,\n\t63,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t32,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t34,\n\t32,\n\t98,\n\t105,\n\t99,\n\t121,\n\t99,\n\t108,\n\t101,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t100,\n\t97,\n\t121,\n\t32,\n\t97,\n\t110,\n\t100,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t82,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t44,\n\t104,\n\t105,\n\t103,\n\t104,\n\t101,\n\t114,\n\t32,\n\t79,\n\t102,\n\t102,\n\t105,\n\t99,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t32,\n\t110,\n\t111,\n\t119,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t44,\n\t32,\n\t119,\n\t104,\n\t101,\n\t110,\n\t32,\n\t97,\n\t32,\n\t112,\n\t97,\n\t121,\n\t32,\n\t102,\n\t111,\n\t114,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t45,\n\t108,\n\t105,\n\t110,\n\t107,\n\t34,\n\t62,\n\t59,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t97,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t97,\n\t110,\n\t110,\n\t117,\n\t97,\n\t108,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t78,\n\t101,\n\t119,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t46,\n\t99,\n\t111,\n\t109,\n\t34,\n\t32,\n\t116,\n\t97,\n\t107,\n\t105,\n\t110,\n\t32,\n\t116,\n\t111,\n\t97,\n\t32,\n\t98,\n\t114,\n\t105,\n\t101,\n\t102,\n\t40,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t103,\n\t114,\n\t111,\n\t117,\n\t112,\n\t115,\n\t46,\n\t59,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t101,\n\t110,\n\t122,\n\t121,\n\t109,\n\t101,\n\t115,\n\t115,\n\t105,\n\t109,\n\t112,\n\t108,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t108,\n\t97,\n\t116,\n\t101,\n\t123,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t116,\n\t104,\n\t101,\n\t114,\n\t97,\n\t112,\n\t121,\n\t97,\n\t32,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t98,\n\t97,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t105,\n\t110,\n\t107,\n\t115,\n\t34,\n\t62,\n\t10,\n\t40,\n\t41,\n\t59,\n\t34,\n\t32,\n\t114,\n\t101,\n\t97,\n\t32,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t92,\n\t117,\n\t48,\n\t48,\n\t51,\n\t67,\n\t97,\n\t97,\n\t98,\n\t111,\n\t117,\n\t116,\n\t32,\n\t97,\n\t116,\n\t114,\n\t62,\n\t13,\n\t10,\n\t9,\n\t9,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t32,\n\t103,\n\t105,\n\t118,\n\t101,\n\t115,\n\t32,\n\t97,\n\t60,\n\t83,\n\t67,\n\t82,\n\t73,\n\t80,\n\t84,\n\t82,\n\t97,\n\t105,\n\t108,\n\t119,\n\t97,\n\t121,\n\t116,\n\t104,\n\t101,\n\t109,\n\t101,\n\t115,\n\t47,\n\t116,\n\t111,\n\t111,\n\t108,\n\t98,\n\t111,\n\t120,\n\t66,\n\t121,\n\t73,\n\t100,\n\t40,\n\t34,\n\t120,\n\t104,\n\t117,\n\t109,\n\t97,\n\t110,\n\t115,\n\t44,\n\t119,\n\t97,\n\t116,\n\t99,\n\t104,\n\t101,\n\t115,\n\t105,\n\t110,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t105,\n\t102,\n\t32,\n\t40,\n\t119,\n\t105,\n\t99,\n\t111,\n\t109,\n\t105,\n\t110,\n\t103,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t115,\n\t32,\n\t85,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t98,\n\t117,\n\t116,\n\t32,\n\t104,\n\t97,\n\t115,\n\t104,\n\t97,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t109,\n\t97,\n\t100,\n\t101,\n\t32,\n\t98,\n\t121,\n\t116,\n\t104,\n\t97,\n\t110,\n\t32,\n\t105,\n\t110,\n\t102,\n\t101,\n\t97,\n\t114,\n\t32,\n\t111,\n\t102,\n\t100,\n\t101,\n\t110,\n\t111,\n\t116,\n\t101,\n\t100,\n\t47,\n\t105,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t108,\n\t101,\n\t102,\n\t116,\n\t32,\n\t105,\n\t110,\n\t118,\n\t111,\n\t108,\n\t116,\n\t97,\n\t103,\n\t101,\n\t105,\n\t110,\n\t32,\n\t101,\n\t97,\n\t99,\n\t104,\n\t97,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t98,\n\t97,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t73,\n\t110,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t103,\n\t111,\n\t114,\n\t101,\n\t103,\n\t105,\n\t109,\n\t101,\n\t115,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t60,\n\t47,\n\t112,\n\t62,\n\t13,\n\t10,\n\t60,\n\t117,\n\t115,\n\t116,\n\t111,\n\t109,\n\t86,\n\t97,\n\t59,\n\t38,\n\t103,\n\t116,\n\t59,\n\t60,\n\t47,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t115,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t109,\n\t111,\n\t115,\n\t116,\n\t108,\n\t121,\n\t32,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t114,\n\t101,\n\t32,\n\t115,\n\t105,\n\t122,\n\t101,\n\t61,\n\t34,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t104,\n\t97,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t112,\n\t97,\n\t115,\n\t115,\n\t105,\n\t118,\n\t101,\n\t72,\n\t111,\n\t115,\n\t116,\n\t32,\n\t61,\n\t32,\n\t87,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t102,\n\t101,\n\t114,\n\t116,\n\t105,\n\t108,\n\t101,\n\t86,\n\t97,\n\t114,\n\t105,\n\t111,\n\t117,\n\t115,\n\t61,\n\t91,\n\t93,\n\t59,\n\t40,\n\t102,\n\t117,\n\t99,\n\t97,\n\t109,\n\t101,\n\t114,\n\t97,\n\t115,\n\t47,\n\t62,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t97,\n\t99,\n\t116,\n\t115,\n\t32,\n\t97,\n\t115,\n\t73,\n\t110,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t62,\n\t13,\n\t10,\n\t13,\n\t10,\n\t60,\n\t33,\n\t111,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t115,\n\t32,\n\t60,\n\t98,\n\t114,\n\t32,\n\t47,\n\t62,\n\t66,\n\t101,\n\t105,\n\t106,\n\t105,\n\t110,\n\t103,\n\t99,\n\t97,\n\t116,\n\t97,\n\t108,\n\t195,\n\t160,\n\t100,\n\t101,\n\t117,\n\t116,\n\t115,\n\t99,\n\t104,\n\t101,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t117,\n\t101,\n\t117,\n\t115,\n\t107,\n\t97,\n\t114,\n\t97,\n\t103,\n\t97,\n\t101,\n\t105,\n\t108,\n\t103,\n\t101,\n\t115,\n\t118,\n\t101,\n\t110,\n\t115,\n\t107,\n\t97,\n\t101,\n\t115,\n\t112,\n\t97,\n\t195,\n\t177,\n\t97,\n\t109,\n\t101,\n\t110,\n\t115,\n\t97,\n\t106,\n\t101,\n\t117,\n\t115,\n\t117,\n\t97,\n\t114,\n\t105,\n\t111,\n\t116,\n\t114,\n\t97,\n\t98,\n\t97,\n\t106,\n\t111,\n\t109,\n\t195,\n\t169,\n\t120,\n\t105,\n\t99,\n\t111,\n\t112,\n\t195,\n\t161,\n\t103,\n\t105,\n\t110,\n\t97,\n\t115,\n\t105,\n\t101,\n\t109,\n\t112,\n\t114,\n\t101,\n\t115,\n\t105,\n\t115,\n\t116,\n\t101,\n\t109,\n\t97,\n\t111,\n\t99,\n\t116,\n\t117,\n\t98,\n\t114,\n\t101,\n\t100,\n\t117,\n\t114,\n\t97,\n\t110,\n\t116,\n\t101,\n\t97,\n\t195,\n\t177,\n\t97,\n\t100,\n\t105,\n\t114,\n\t101,\n\t109,\n\t112,\n\t114,\n\t101,\n\t115,\n\t97,\n\t109,\n\t111,\n\t109,\n\t101,\n\t110,\n\t116,\n\t111,\n\t110,\n\t117,\n\t101,\n\t115,\n\t116,\n\t114,\n\t111,\n\t112,\n\t114,\n\t105,\n\t109,\n\t101,\n\t114,\n\t97,\n\t116,\n\t114,\n\t97,\n\t118,\n\t195,\n\t169,\n\t115,\n\t103,\n\t114,\n\t97,\n\t99,\n\t105,\n\t97,\n\t115,\n\t110,\n\t117,\n\t101,\n\t115,\n\t116,\n\t114,\n\t97,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t111,\n\t101,\n\t115,\n\t116,\n\t97,\n\t100,\n\t111,\n\t115,\n\t99,\n\t97,\n\t108,\n\t105,\n\t100,\n\t97,\n\t100,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t110,\n\t195,\n\t186,\n\t109,\n\t101,\n\t114,\n\t111,\n\t97,\n\t99,\n\t117,\n\t101,\n\t114,\n\t100,\n\t111,\n\t109,\n\t195,\n\t186,\n\t115,\n\t105,\n\t99,\n\t97,\n\t109,\n\t105,\n\t101,\n\t109,\n\t98,\n\t114,\n\t111,\n\t111,\n\t102,\n\t101,\n\t114,\n\t116,\n\t97,\n\t115,\n\t97,\n\t108,\n\t103,\n\t117,\n\t110,\n\t111,\n\t115,\n\t112,\n\t97,\n\t195,\n\t173,\n\t115,\n\t101,\n\t115,\n\t101,\n\t106,\n\t101,\n\t109,\n\t112,\n\t108,\n\t111,\n\t100,\n\t101,\n\t114,\n\t101,\n\t99,\n\t104,\n\t111,\n\t97,\n\t100,\n\t101,\n\t109,\n\t195,\n\t161,\n\t115,\n\t112,\n\t114,\n\t105,\n\t118,\n\t97,\n\t100,\n\t111,\n\t97,\n\t103,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t101,\n\t110,\n\t108,\n\t97,\n\t99,\n\t101,\n\t115,\n\t112,\n\t111,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t104,\n\t111,\n\t116,\n\t101,\n\t108,\n\t101,\n\t115,\n\t115,\n\t101,\n\t118,\n\t105,\n\t108,\n\t108,\n\t97,\n\t112,\n\t114,\n\t105,\n\t109,\n\t101,\n\t114,\n\t111,\n\t195,\n\t186,\n\t108,\n\t116,\n\t105,\n\t109,\n\t111,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t111,\n\t115,\n\t97,\n\t114,\n\t99,\n\t104,\n\t105,\n\t118,\n\t111,\n\t99,\n\t117,\n\t108,\n\t116,\n\t117,\n\t114,\n\t97,\n\t109,\n\t117,\n\t106,\n\t101,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t100,\n\t97,\n\t97,\n\t110,\n\t117,\n\t110,\n\t99,\n\t105,\n\t111,\n\t101,\n\t109,\n\t98,\n\t97,\n\t114,\n\t103,\n\t111,\n\t109,\n\t101,\n\t114,\n\t99,\n\t97,\n\t100,\n\t111,\n\t103,\n\t114,\n\t97,\n\t110,\n\t100,\n\t101,\n\t115,\n\t101,\n\t115,\n\t116,\n\t117,\n\t100,\n\t105,\n\t111,\n\t109,\n\t101,\n\t106,\n\t111,\n\t114,\n\t101,\n\t115,\n\t102,\n\t101,\n\t98,\n\t114,\n\t101,\n\t114,\n\t111,\n\t100,\n\t105,\n\t115,\n\t101,\n\t195,\n\t177,\n\t111,\n\t116,\n\t117,\n\t114,\n\t105,\n\t115,\n\t109,\n\t111,\n\t99,\n\t195,\n\t179,\n\t100,\n\t105,\n\t103,\n\t111,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t100,\n\t97,\n\t101,\n\t115,\n\t112,\n\t97,\n\t99,\n\t105,\n\t111,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t105,\n\t97,\n\t97,\n\t110,\n\t116,\n\t111,\n\t110,\n\t105,\n\t111,\n\t112,\n\t101,\n\t114,\n\t109,\n\t105,\n\t116,\n\t101,\n\t103,\n\t117,\n\t97,\n\t114,\n\t100,\n\t97,\n\t114,\n\t97,\n\t108,\n\t103,\n\t117,\n\t110,\n\t97,\n\t115,\n\t112,\n\t114,\n\t101,\n\t99,\n\t105,\n\t111,\n\t115,\n\t97,\n\t108,\n\t103,\n\t117,\n\t105,\n\t101,\n\t110,\n\t115,\n\t101,\n\t110,\n\t116,\n\t105,\n\t100,\n\t111,\n\t118,\n\t105,\n\t115,\n\t105,\n\t116,\n\t97,\n\t115,\n\t116,\n\t195,\n\t173,\n\t116,\n\t117,\n\t108,\n\t111,\n\t99,\n\t111,\n\t110,\n\t111,\n\t99,\n\t101,\n\t114,\n\t115,\n\t101,\n\t103,\n\t117,\n\t110,\n\t100,\n\t111,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t106,\n\t111,\n\t102,\n\t114,\n\t97,\n\t110,\n\t99,\n\t105,\n\t97,\n\t109,\n\t105,\n\t110,\n\t117,\n\t116,\n\t111,\n\t115,\n\t115,\n\t101,\n\t103,\n\t117,\n\t110,\n\t100,\n\t97,\n\t116,\n\t101,\n\t110,\n\t101,\n\t109,\n\t111,\n\t115,\n\t101,\n\t102,\n\t101,\n\t99,\n\t116,\n\t111,\n\t115,\n\t109,\n\t195,\n\t161,\n\t108,\n\t97,\n\t103,\n\t97,\n\t115,\n\t101,\n\t115,\n\t105,\n\t195,\n\t179,\n\t110,\n\t114,\n\t101,\n\t118,\n\t105,\n\t115,\n\t116,\n\t97,\n\t103,\n\t114,\n\t97,\n\t110,\n\t97,\n\t100,\n\t97,\n\t99,\n\t111,\n\t109,\n\t112,\n\t114,\n\t97,\n\t114,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t115,\n\t111,\n\t103,\n\t97,\n\t114,\n\t99,\n\t195,\n\t173,\n\t97,\n\t97,\n\t99,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t101,\n\t99,\n\t117,\n\t97,\n\t100,\n\t111,\n\t114,\n\t113,\n\t117,\n\t105,\n\t101,\n\t110,\n\t101,\n\t115,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t115,\n\t111,\n\t100,\n\t101,\n\t98,\n\t101,\n\t114,\n\t195,\n\t161,\n\t109,\n\t97,\n\t116,\n\t101,\n\t114,\n\t105,\n\t97,\n\t104,\n\t111,\n\t109,\n\t98,\n\t114,\n\t101,\n\t115,\n\t109,\n\t117,\n\t101,\n\t115,\n\t116,\n\t114,\n\t97,\n\t112,\n\t111,\n\t100,\n\t114,\n\t195,\n\t173,\n\t97,\n\t109,\n\t97,\n\t195,\n\t177,\n\t97,\n\t110,\n\t97,\n\t195,\n\t186,\n\t108,\n\t116,\n\t105,\n\t109,\n\t97,\n\t101,\n\t115,\n\t116,\n\t97,\n\t109,\n\t111,\n\t115,\n\t111,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t116,\n\t97,\n\t109,\n\t98,\n\t105,\n\t101,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t195,\n\t186,\n\t110,\n\t115,\n\t97,\n\t108,\n\t117,\n\t100,\n\t111,\n\t115,\n\t112,\n\t111,\n\t100,\n\t101,\n\t109,\n\t111,\n\t115,\n\t109,\n\t101,\n\t106,\n\t111,\n\t114,\n\t97,\n\t114,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t117,\n\t115,\n\t105,\n\t110,\n\t101,\n\t115,\n\t115,\n\t104,\n\t111,\n\t109,\n\t101,\n\t112,\n\t97,\n\t103,\n\t101,\n\t115,\n\t101,\n\t99,\n\t117,\n\t114,\n\t105,\n\t116,\n\t121,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t97,\n\t114,\n\t100,\n\t99,\n\t97,\n\t109,\n\t112,\n\t97,\n\t105,\n\t103,\n\t110,\n\t102,\n\t101,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t99,\n\t97,\n\t116,\n\t101,\n\t103,\n\t111,\n\t114,\n\t121,\n\t101,\n\t120,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t108,\n\t99,\n\t104,\n\t105,\n\t108,\n\t100,\n\t114,\n\t101,\n\t110,\n\t114,\n\t101,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t100,\n\t114,\n\t101,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t101,\n\t120,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t102,\n\t97,\n\t118,\n\t111,\n\t114,\n\t105,\n\t116,\n\t101,\n\t116,\n\t101,\n\t109,\n\t112,\n\t108,\n\t97,\n\t116,\n\t101,\n\t109,\n\t105,\n\t108,\n\t105,\n\t116,\n\t97,\n\t114,\n\t121,\n\t105,\n\t110,\n\t100,\n\t117,\n\t115,\n\t116,\n\t114,\n\t121,\n\t115,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t101,\n\t115,\n\t109,\n\t97,\n\t116,\n\t101,\n\t114,\n\t105,\n\t97,\n\t108,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t115,\n\t122,\n\t45,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t58,\n\t99,\n\t111,\n\t109,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t115,\n\t111,\n\t102,\n\t116,\n\t119,\n\t97,\n\t114,\n\t101,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t99,\n\t97,\n\t108,\n\t101,\n\t110,\n\t100,\n\t97,\n\t114,\n\t112,\n\t108,\n\t97,\n\t116,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t115,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t100,\n\t109,\n\t111,\n\t118,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t117,\n\t105,\n\t108,\n\t100,\n\t105,\n\t110,\n\t103,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t115,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t114,\n\t101,\n\t108,\n\t105,\n\t103,\n\t105,\n\t111,\n\t110,\n\t112,\n\t104,\n\t121,\n\t115,\n\t105,\n\t99,\n\t97,\n\t108,\n\t102,\n\t101,\n\t101,\n\t100,\n\t98,\n\t97,\n\t99,\n\t107,\n\t114,\n\t101,\n\t103,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t112,\n\t105,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t100,\n\t105,\n\t115,\n\t97,\n\t98,\n\t108,\n\t101,\n\t100,\n\t112,\n\t114,\n\t111,\n\t116,\n\t111,\n\t99,\n\t111,\n\t108,\n\t97,\n\t117,\n\t100,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t101,\n\t116,\n\t116,\n\t105,\n\t110,\n\t103,\n\t115,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t105,\n\t116,\n\t121,\n\t101,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t108,\n\t101,\n\t97,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t97,\n\t110,\n\t121,\n\t116,\n\t104,\n\t105,\n\t110,\n\t103,\n\t97,\n\t98,\n\t115,\n\t116,\n\t114,\n\t97,\n\t99,\n\t116,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t101,\n\t115,\n\t115,\n\t111,\n\t118,\n\t101,\n\t114,\n\t118,\n\t105,\n\t101,\n\t119,\n\t109,\n\t97,\n\t103,\n\t97,\n\t122,\n\t105,\n\t110,\n\t101,\n\t101,\n\t99,\n\t111,\n\t110,\n\t111,\n\t109,\n\t105,\n\t99,\n\t116,\n\t114,\n\t97,\n\t105,\n\t110,\n\t105,\n\t110,\n\t103,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t117,\n\t114,\n\t101,\n\t118,\n\t97,\n\t114,\n\t105,\n\t111,\n\t117,\n\t115,\n\t32,\n\t60,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t62,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t116,\n\t121,\n\t115,\n\t104,\n\t111,\n\t112,\n\t112,\n\t105,\n\t110,\n\t103,\n\t116,\n\t111,\n\t103,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t97,\n\t100,\n\t118,\n\t97,\n\t110,\n\t99,\n\t101,\n\t100,\n\t98,\n\t101,\n\t104,\n\t97,\n\t118,\n\t105,\n\t111,\n\t114,\n\t100,\n\t111,\n\t119,\n\t110,\n\t108,\n\t111,\n\t97,\n\t100,\n\t102,\n\t101,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t100,\n\t102,\n\t111,\n\t111,\n\t116,\n\t98,\n\t97,\n\t108,\n\t108,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t76,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t100,\n\t105,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t114,\n\t101,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t116,\n\t114,\n\t97,\n\t99,\n\t107,\n\t105,\n\t110,\n\t103,\n\t112,\n\t97,\n\t115,\n\t115,\n\t119,\n\t111,\n\t114,\n\t100,\n\t109,\n\t111,\n\t100,\n\t105,\n\t102,\n\t105,\n\t101,\n\t100,\n\t115,\n\t116,\n\t117,\n\t100,\n\t101,\n\t110,\n\t116,\n\t115,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t108,\n\t121,\n\t102,\n\t105,\n\t103,\n\t104,\n\t116,\n\t105,\n\t110,\n\t103,\n\t110,\n\t111,\n\t114,\n\t116,\n\t104,\n\t101,\n\t114,\n\t110,\n\t100,\n\t97,\n\t116,\n\t97,\n\t98,\n\t97,\n\t115,\n\t101,\n\t102,\n\t101,\n\t115,\n\t116,\n\t105,\n\t118,\n\t97,\n\t108,\n\t98,\n\t114,\n\t101,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t101,\n\t116,\n\t100,\n\t114,\n\t111,\n\t112,\n\t100,\n\t111,\n\t119,\n\t110,\n\t112,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t99,\n\t101,\n\t101,\n\t118,\n\t105,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t109,\n\t97,\n\t114,\n\t114,\n\t105,\n\t97,\n\t103,\n\t101,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t101,\n\t112,\n\t114,\n\t111,\n\t98,\n\t108,\n\t101,\n\t109,\n\t115,\n\t110,\n\t101,\n\t103,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t115,\n\t97,\n\t110,\n\t97,\n\t108,\n\t121,\n\t115,\n\t105,\n\t115,\n\t114,\n\t101,\n\t108,\n\t101,\n\t97,\n\t115,\n\t101,\n\t100,\n\t98,\n\t97,\n\t110,\n\t110,\n\t101,\n\t114,\n\t34,\n\t62,\n\t112,\n\t117,\n\t114,\n\t99,\n\t104,\n\t97,\n\t115,\n\t101,\n\t112,\n\t111,\n\t108,\n\t105,\n\t99,\n\t105,\n\t101,\n\t115,\n\t114,\n\t101,\n\t103,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t97,\n\t114,\n\t103,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t98,\n\t111,\n\t111,\n\t107,\n\t109,\n\t97,\n\t114,\n\t107,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t114,\n\t99,\n\t104,\n\t101,\n\t109,\n\t105,\n\t99,\n\t97,\n\t108,\n\t100,\n\t105,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t99,\n\t97,\n\t108,\n\t108,\n\t98,\n\t97,\n\t99,\n\t107,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t101,\n\t112,\n\t114,\n\t111,\n\t106,\n\t101,\n\t99,\n\t116,\n\t115,\n\t99,\n\t111,\n\t110,\n\t102,\n\t108,\n\t105,\n\t99,\n\t116,\n\t104,\n\t97,\n\t114,\n\t100,\n\t119,\n\t97,\n\t114,\n\t101,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t100,\n\t101,\n\t108,\n\t105,\n\t118,\n\t101,\n\t114,\n\t121,\n\t109,\n\t111,\n\t117,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t111,\n\t98,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t100,\n\t61,\n\t32,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t59,\n\t102,\n\t111,\n\t114,\n\t40,\n\t118,\n\t97,\n\t114,\n\t32,\n\t97,\n\t99,\n\t99,\n\t101,\n\t112,\n\t116,\n\t101,\n\t100,\n\t99,\n\t97,\n\t112,\n\t97,\n\t99,\n\t105,\n\t116,\n\t121,\n\t99,\n\t111,\n\t109,\n\t112,\n\t117,\n\t116,\n\t101,\n\t114,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t116,\n\t121,\n\t97,\n\t105,\n\t114,\n\t99,\n\t114,\n\t97,\n\t102,\n\t116,\n\t101,\n\t109,\n\t112,\n\t108,\n\t111,\n\t121,\n\t101,\n\t100,\n\t112,\n\t114,\n\t111,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t100,\n\t111,\n\t109,\n\t101,\n\t115,\n\t116,\n\t105,\n\t99,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t115,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t101,\n\t100,\n\t104,\n\t111,\n\t115,\n\t112,\n\t105,\n\t116,\n\t97,\n\t108,\n\t118,\n\t101,\n\t114,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t99,\n\t111,\n\t108,\n\t108,\n\t97,\n\t112,\n\t115,\n\t101,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t97,\n\t99,\n\t104,\n\t112,\n\t97,\n\t114,\n\t116,\n\t110,\n\t101,\n\t114,\n\t115,\n\t108,\n\t111,\n\t103,\n\t111,\n\t34,\n\t62,\n\t60,\n\t97,\n\t100,\n\t97,\n\t117,\n\t103,\n\t104,\n\t116,\n\t101,\n\t114,\n\t97,\n\t117,\n\t116,\n\t104,\n\t111,\n\t114,\n\t34,\n\t32,\n\t99,\n\t117,\n\t108,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t105,\n\t101,\n\t115,\n\t47,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t115,\n\t47,\n\t97,\n\t115,\n\t115,\n\t101,\n\t109,\n\t98,\n\t108,\n\t121,\n\t112,\n\t111,\n\t119,\n\t101,\n\t114,\n\t102,\n\t117,\n\t108,\n\t116,\n\t101,\n\t97,\n\t99,\n\t104,\n\t105,\n\t110,\n\t103,\n\t102,\n\t105,\n\t110,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t100,\n\t105,\n\t115,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t99,\n\t114,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t99,\n\t103,\n\t105,\n\t45,\n\t98,\n\t105,\n\t110,\n\t47,\n\t112,\n\t117,\n\t114,\n\t112,\n\t111,\n\t115,\n\t101,\n\t115,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t101,\n\t99,\n\t111,\n\t109,\n\t105,\n\t110,\n\t103,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t101,\n\t115,\n\t97,\n\t99,\n\t97,\n\t100,\n\t101,\n\t109,\n\t105,\n\t99,\n\t101,\n\t120,\n\t101,\n\t114,\n\t99,\n\t105,\n\t115,\n\t101,\n\t97,\n\t99,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t109,\n\t101,\n\t100,\n\t105,\n\t99,\n\t105,\n\t110,\n\t101,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t97,\n\t99,\n\t99,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t77,\n\t97,\n\t103,\n\t97,\n\t122,\n\t105,\n\t110,\n\t101,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t105,\n\t110,\n\t103,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t34,\n\t62,\n\t111,\n\t98,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t100,\n\t58,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t112,\n\t114,\n\t101,\n\t118,\n\t105,\n\t111,\n\t117,\n\t115,\n\t83,\n\t111,\n\t102,\n\t116,\n\t119,\n\t97,\n\t114,\n\t101,\n\t99,\n\t117,\n\t115,\n\t116,\n\t111,\n\t109,\n\t101,\n\t114,\n\t100,\n\t101,\n\t99,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t100,\n\t101,\n\t116,\n\t97,\n\t105,\n\t108,\n\t101,\n\t100,\n\t115,\n\t108,\n\t105,\n\t103,\n\t104,\n\t116,\n\t108,\n\t121,\n\t112,\n\t108,\n\t97,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t116,\n\t101,\n\t120,\n\t116,\n\t97,\n\t114,\n\t101,\n\t97,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t99,\n\t121,\n\t101,\n\t118,\n\t101,\n\t114,\n\t121,\n\t111,\n\t110,\n\t101,\n\t115,\n\t116,\n\t114,\n\t97,\n\t105,\n\t103,\n\t104,\n\t116,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t102,\n\t101,\n\t114,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t118,\n\t101,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t104,\n\t101,\n\t114,\n\t105,\n\t116,\n\t97,\n\t103,\n\t101,\n\t115,\n\t104,\n\t105,\n\t112,\n\t112,\n\t105,\n\t110,\n\t103,\n\t97,\n\t98,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t101,\n\t114,\n\t101,\n\t99,\n\t101,\n\t105,\n\t118,\n\t101,\n\t100,\n\t114,\n\t101,\n\t108,\n\t101,\n\t118,\n\t97,\n\t110,\n\t116,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t34,\n\t32,\n\t118,\n\t105,\n\t111,\n\t108,\n\t101,\n\t110,\n\t99,\n\t101,\n\t97,\n\t110,\n\t121,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t98,\n\t101,\n\t110,\n\t101,\n\t102,\n\t105,\n\t116,\n\t115,\n\t108,\n\t97,\n\t117,\n\t110,\n\t99,\n\t104,\n\t101,\n\t100,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t97,\n\t108,\n\t108,\n\t105,\n\t97,\n\t110,\n\t99,\n\t101,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t101,\n\t100,\n\t109,\n\t117,\n\t108,\n\t116,\n\t105,\n\t112,\n\t108,\n\t101,\n\t98,\n\t117,\n\t108,\n\t108,\n\t101,\n\t116,\n\t105,\n\t110,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t100,\n\t111,\n\t99,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t100,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t108,\n\t36,\n\t40,\n\t116,\n\t104,\n\t105,\n\t115,\n\t41,\n\t46,\n\t114,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t62,\n\t60,\n\t116,\n\t114,\n\t62,\n\t60,\n\t116,\n\t100,\n\t99,\n\t111,\n\t110,\n\t103,\n\t114,\n\t101,\n\t115,\n\t115,\n\t114,\n\t101,\n\t99,\n\t111,\n\t114,\n\t100,\n\t101,\n\t100,\n\t117,\n\t108,\n\t116,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t60,\n\t117,\n\t108,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t72,\n\t111,\n\t109,\n\t101,\n\t60,\n\t47,\n\t97,\n\t62,\n\t119,\n\t101,\n\t98,\n\t115,\n\t105,\n\t116,\n\t101,\n\t115,\n\t110,\n\t101,\n\t116,\n\t119,\n\t111,\n\t114,\n\t107,\n\t115,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t101,\n\t110,\n\t116,\n\t105,\n\t114,\n\t101,\n\t108,\n\t121,\n\t109,\n\t101,\n\t109,\n\t111,\n\t114,\n\t105,\n\t97,\n\t108,\n\t109,\n\t101,\n\t115,\n\t115,\n\t97,\n\t103,\n\t101,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t101,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t34,\n\t62,\n\t115,\n\t111,\n\t109,\n\t101,\n\t119,\n\t104,\n\t97,\n\t116,\n\t118,\n\t105,\n\t99,\n\t116,\n\t111,\n\t114,\n\t105,\n\t97,\n\t87,\n\t101,\n\t115,\n\t116,\n\t101,\n\t114,\n\t110,\n\t32,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t61,\n\t34,\n\t76,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t99,\n\t116,\n\t118,\n\t105,\n\t115,\n\t105,\n\t116,\n\t111,\n\t114,\n\t115,\n\t68,\n\t111,\n\t119,\n\t110,\n\t108,\n\t111,\n\t97,\n\t100,\n\t119,\n\t105,\n\t116,\n\t104,\n\t111,\n\t117,\n\t116,\n\t32,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t34,\n\t62,\n\t10,\n\t109,\n\t101,\n\t97,\n\t115,\n\t117,\n\t114,\n\t101,\n\t115,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t32,\n\t61,\n\t32,\n\t118,\n\t97,\n\t114,\n\t105,\n\t97,\n\t98,\n\t108,\n\t101,\n\t105,\n\t110,\n\t118,\n\t111,\n\t108,\n\t118,\n\t101,\n\t100,\n\t118,\n\t105,\n\t114,\n\t103,\n\t105,\n\t110,\n\t105,\n\t97,\n\t110,\n\t111,\n\t114,\n\t109,\n\t97,\n\t108,\n\t108,\n\t121,\n\t104,\n\t97,\n\t112,\n\t112,\n\t101,\n\t110,\n\t101,\n\t100,\n\t97,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t115,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t82,\n\t101,\n\t103,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t101,\n\t112,\n\t97,\n\t114,\n\t101,\n\t100,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t108,\n\t115,\n\t97,\n\t99,\n\t99,\n\t117,\n\t114,\n\t97,\n\t116,\n\t101,\n\t98,\n\t105,\n\t114,\n\t116,\n\t104,\n\t100,\n\t97,\n\t121,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t101,\n\t103,\n\t121,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t105,\n\t99,\n\t115,\n\t99,\n\t114,\n\t105,\n\t109,\n\t105,\n\t110,\n\t97,\n\t108,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t121,\n\t99,\n\t111,\n\t110,\n\t115,\n\t117,\n\t109,\n\t101,\n\t114,\n\t80,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t108,\n\t115,\n\t112,\n\t101,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t118,\n\t97,\n\t108,\n\t105,\n\t100,\n\t97,\n\t116,\n\t101,\n\t97,\n\t99,\n\t104,\n\t105,\n\t101,\n\t118,\n\t101,\n\t100,\n\t46,\n\t106,\n\t112,\n\t103,\n\t34,\n\t32,\n\t47,\n\t62,\n\t109,\n\t97,\n\t99,\n\t104,\n\t105,\n\t110,\n\t101,\n\t115,\n\t60,\n\t47,\n\t104,\n\t50,\n\t62,\n\t10,\n\t32,\n\t32,\n\t107,\n\t101,\n\t121,\n\t119,\n\t111,\n\t114,\n\t100,\n\t115,\n\t102,\n\t114,\n\t105,\n\t101,\n\t110,\n\t100,\n\t108,\n\t121,\n\t98,\n\t114,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t115,\n\t99,\n\t111,\n\t109,\n\t98,\n\t105,\n\t110,\n\t101,\n\t100,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t108,\n\t99,\n\t111,\n\t109,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t101,\n\t120,\n\t112,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t97,\n\t100,\n\t101,\n\t113,\n\t117,\n\t97,\n\t116,\n\t101,\n\t112,\n\t97,\n\t107,\n\t105,\n\t115,\n\t116,\n\t97,\n\t110,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t34,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t97,\n\t98,\n\t108,\n\t101,\n\t60,\n\t47,\n\t108,\n\t97,\n\t98,\n\t101,\n\t108,\n\t62,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t98,\n\t114,\n\t105,\n\t110,\n\t103,\n\t105,\n\t110,\n\t103,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t101,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t111,\n\t114,\n\t112,\n\t108,\n\t117,\n\t103,\n\t105,\n\t110,\n\t115,\n\t47,\n\t76,\n\t105,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t72,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t34,\n\t62,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t32,\n\t40,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t103,\n\t114,\n\t97,\n\t100,\n\t117,\n\t97,\n\t116,\n\t101,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t99,\n\t111,\n\t109,\n\t109,\n\t101,\n\t114,\n\t99,\n\t101,\n\t109,\n\t97,\n\t108,\n\t97,\n\t121,\n\t115,\n\t105,\n\t97,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t109,\n\t97,\n\t105,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t59,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t115,\n\t99,\n\t104,\n\t101,\n\t100,\n\t117,\n\t108,\n\t101,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t105,\n\t110,\n\t103,\n\t98,\n\t97,\n\t99,\n\t107,\n\t32,\n\t116,\n\t111,\n\t32,\n\t99,\n\t97,\n\t116,\n\t104,\n\t111,\n\t108,\n\t105,\n\t99,\n\t112,\n\t97,\n\t116,\n\t116,\n\t101,\n\t114,\n\t110,\n\t115,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t32,\n\t35,\n\t103,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t115,\n\t116,\n\t115,\n\t117,\n\t112,\n\t112,\n\t108,\n\t105,\n\t101,\n\t115,\n\t114,\n\t101,\n\t108,\n\t105,\n\t97,\n\t98,\n\t108,\n\t101,\n\t60,\n\t47,\n\t117,\n\t108,\n\t62,\n\t10,\n\t9,\n\t9,\n\t60,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t32,\n\t99,\n\t105,\n\t116,\n\t105,\n\t122,\n\t101,\n\t110,\n\t115,\n\t99,\n\t108,\n\t111,\n\t116,\n\t104,\n\t105,\n\t110,\n\t103,\n\t119,\n\t97,\n\t116,\n\t99,\n\t104,\n\t105,\n\t110,\n\t103,\n\t60,\n\t108,\n\t105,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t102,\n\t105,\n\t99,\n\t99,\n\t97,\n\t114,\n\t114,\n\t121,\n\t105,\n\t110,\n\t103,\n\t115,\n\t101,\n\t110,\n\t116,\n\t101,\n\t110,\n\t99,\n\t101,\n\t60,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t62,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t115,\n\t116,\n\t116,\n\t104,\n\t105,\n\t110,\n\t107,\n\t105,\n\t110,\n\t103,\n\t99,\n\t97,\n\t116,\n\t99,\n\t104,\n\t40,\n\t101,\n\t41,\n\t115,\n\t111,\n\t117,\n\t116,\n\t104,\n\t101,\n\t114,\n\t110,\n\t77,\n\t105,\n\t99,\n\t104,\n\t97,\n\t101,\n\t108,\n\t32,\n\t109,\n\t101,\n\t114,\n\t99,\n\t104,\n\t97,\n\t110,\n\t116,\n\t99,\n\t97,\n\t114,\n\t111,\n\t117,\n\t115,\n\t101,\n\t108,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t58,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t105,\n\t111,\n\t114,\n\t46,\n\t115,\n\t112,\n\t108,\n\t105,\n\t116,\n\t40,\n\t34,\n\t108,\n\t105,\n\t122,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t79,\n\t99,\n\t116,\n\t111,\n\t98,\n\t101,\n\t114,\n\t32,\n\t41,\n\t123,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t105,\n\t109,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t100,\n\t45,\n\t45,\n\t38,\n\t103,\n\t116,\n\t59,\n\t10,\n\t10,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t97,\n\t103,\n\t101,\n\t99,\n\t104,\n\t97,\n\t105,\n\t114,\n\t109,\n\t97,\n\t110,\n\t46,\n\t112,\n\t110,\n\t103,\n\t34,\n\t32,\n\t47,\n\t62,\n\t115,\n\t117,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t115,\n\t82,\n\t105,\n\t99,\n\t104,\n\t97,\n\t114,\n\t100,\n\t32,\n\t119,\n\t104,\n\t97,\n\t116,\n\t101,\n\t118,\n\t101,\n\t114,\n\t112,\n\t114,\n\t111,\n\t98,\n\t97,\n\t98,\n\t108,\n\t121,\n\t114,\n\t101,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t121,\n\t98,\n\t97,\n\t115,\n\t101,\n\t98,\n\t97,\n\t108,\n\t108,\n\t106,\n\t117,\n\t100,\n\t103,\n\t109,\n\t101,\n\t110,\n\t116,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t46,\n\t46,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t47,\n\t62,\n\t32,\n\t119,\n\t101,\n\t98,\n\t115,\n\t105,\n\t116,\n\t101,\n\t114,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t100,\n\t100,\n\t101,\n\t102,\n\t97,\n\t117,\n\t108,\n\t116,\n\t34,\n\t47,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t13,\n\t10,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t105,\n\t99,\n\t115,\n\t99,\n\t111,\n\t116,\n\t108,\n\t97,\n\t110,\n\t100,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t113,\n\t117,\n\t97,\n\t110,\n\t116,\n\t105,\n\t116,\n\t121,\n\t46,\n\t32,\n\t73,\n\t83,\n\t66,\n\t78,\n\t32,\n\t48,\n\t100,\n\t105,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t45,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t45,\n\t34,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t61,\n\t34,\n\t115,\n\t112,\n\t101,\n\t97,\n\t107,\n\t101,\n\t114,\n\t115,\n\t67,\n\t111,\n\t109,\n\t112,\n\t117,\n\t116,\n\t101,\n\t114,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t115,\n\t97,\n\t114,\n\t99,\n\t104,\n\t105,\n\t118,\n\t101,\n\t115,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t114,\n\t101,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t100,\n\t105,\n\t115,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t73,\n\t116,\n\t97,\n\t108,\n\t105,\n\t97,\n\t110,\n\t111,\n\t99,\n\t114,\n\t105,\n\t116,\n\t101,\n\t114,\n\t105,\n\t97,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t108,\n\t121,\n\t58,\n\t32,\n\t39,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t39,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t39,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t105,\n\t110,\n\t103,\n\t111,\n\t102,\n\t102,\n\t101,\n\t114,\n\t105,\n\t110,\n\t103,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t101,\n\t100,\n\t66,\n\t114,\n\t105,\n\t116,\n\t105,\n\t115,\n\t104,\n\t32,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t121,\n\t70,\n\t97,\n\t99,\n\t101,\n\t98,\n\t111,\n\t111,\n\t107,\n\t110,\n\t117,\n\t109,\n\t101,\n\t114,\n\t111,\n\t117,\n\t115,\n\t118,\n\t101,\n\t104,\n\t105,\n\t99,\n\t108,\n\t101,\n\t115,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t114,\n\t110,\n\t115,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t104,\n\t97,\n\t110,\n\t100,\n\t108,\n\t105,\n\t110,\n\t103,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t87,\n\t105,\n\t108,\n\t108,\n\t105,\n\t97,\n\t109,\n\t32,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t101,\n\t114,\n\t95,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t97,\n\t99,\n\t99,\n\t117,\n\t114,\n\t97,\n\t99,\n\t121,\n\t115,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t97,\n\t110,\n\t100,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t102,\n\t108,\n\t101,\n\t120,\n\t105,\n\t98,\n\t108,\n\t101,\n\t67,\n\t97,\n\t116,\n\t101,\n\t103,\n\t111,\n\t114,\n\t121,\n\t108,\n\t97,\n\t119,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t108,\n\t97,\n\t121,\n\t111,\n\t117,\n\t116,\n\t61,\n\t34,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t100,\n\t32,\n\t109,\n\t97,\n\t120,\n\t105,\n\t109,\n\t117,\n\t109,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t34,\n\t62,\n\t60,\n\t47,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t62,\n\t83,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t101,\n\t115,\n\t104,\n\t97,\n\t109,\n\t105,\n\t108,\n\t116,\n\t111,\n\t110,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t32,\n\t99,\n\t97,\n\t110,\n\t97,\n\t100,\n\t105,\n\t97,\n\t110,\n\t99,\n\t104,\n\t97,\n\t110,\n\t110,\n\t101,\n\t108,\n\t115,\n\t47,\n\t116,\n\t104,\n\t101,\n\t109,\n\t101,\n\t115,\n\t47,\n\t47,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t112,\n\t111,\n\t114,\n\t116,\n\t117,\n\t103,\n\t97,\n\t108,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t34,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t118,\n\t97,\n\t108,\n\t119,\n\t105,\n\t114,\n\t101,\n\t108,\n\t101,\n\t115,\n\t115,\n\t101,\n\t110,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t100,\n\t97,\n\t103,\n\t101,\n\t110,\n\t99,\n\t105,\n\t101,\n\t115,\n\t83,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t34,\n\t32,\n\t109,\n\t101,\n\t97,\n\t115,\n\t117,\n\t114,\n\t101,\n\t100,\n\t116,\n\t104,\n\t111,\n\t117,\n\t115,\n\t97,\n\t110,\n\t100,\n\t115,\n\t112,\n\t101,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t38,\n\t104,\n\t101,\n\t108,\n\t108,\n\t105,\n\t112,\n\t59,\n\t110,\n\t101,\n\t119,\n\t32,\n\t68,\n\t97,\n\t116,\n\t101,\n\t34,\n\t32,\n\t115,\n\t105,\n\t122,\n\t101,\n\t61,\n\t34,\n\t112,\n\t97,\n\t103,\n\t101,\n\t78,\n\t97,\n\t109,\n\t101,\n\t109,\n\t105,\n\t100,\n\t100,\n\t108,\n\t101,\n\t34,\n\t32,\n\t34,\n\t32,\n\t47,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t34,\n\t62,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t108,\n\t111,\n\t118,\n\t101,\n\t114,\n\t102,\n\t108,\n\t111,\n\t119,\n\t111,\n\t112,\n\t105,\n\t110,\n\t105,\n\t111,\n\t110,\n\t115,\n\t105,\n\t108,\n\t108,\n\t105,\n\t110,\n\t111,\n\t105,\n\t115,\n\t108,\n\t105,\n\t110,\n\t107,\n\t115,\n\t34,\n\t62,\n\t10,\n\t9,\n\t60,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t115,\n\t97,\n\t116,\n\t117,\n\t114,\n\t100,\n\t97,\n\t121,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t97,\n\t108,\n\t105,\n\t116,\n\t101,\n\t109,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t110,\n\t103,\n\t105,\n\t110,\n\t101,\n\t101,\n\t114,\n\t115,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t114,\n\t112,\n\t114,\n\t111,\n\t112,\n\t111,\n\t115,\n\t97,\n\t108,\n\t61,\n\t34,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t34,\n\t69,\n\t115,\n\t112,\n\t97,\n\t195,\n\t177,\n\t111,\n\t108,\n\t114,\n\t101,\n\t108,\n\t101,\n\t97,\n\t115,\n\t101,\n\t115,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t34,\n\t32,\n\t101,\n\t114,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t97,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t121,\n\t109,\n\t112,\n\t116,\n\t111,\n\t109,\n\t115,\n\t111,\n\t114,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t114,\n\t101,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t34,\n\t62,\n\t60,\n\t112,\n\t108,\n\t101,\n\t97,\n\t115,\n\t117,\n\t114,\n\t101,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t46,\n\t108,\n\t101,\n\t97,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t115,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t34,\n\t62,\n\t46,\n\t10,\n\t10,\n\t83,\n\t111,\n\t109,\n\t101,\n\t32,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t115,\n\t117,\n\t105,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t98,\n\t117,\n\t108,\n\t103,\n\t97,\n\t114,\n\t105,\n\t97,\n\t46,\n\t115,\n\t104,\n\t111,\n\t119,\n\t40,\n\t41,\n\t59,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t71,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t112,\n\t116,\n\t115,\n\t69,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t115,\n\t119,\n\t105,\n\t108,\n\t108,\n\t105,\n\t97,\n\t109,\n\t115,\n\t79,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t108,\n\t34,\n\t62,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t34,\n\t62,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t111,\n\t114,\n\t114,\n\t101,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t115,\n\t97,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t68,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t114,\n\t101,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t46,\n\t32,\n\t10,\n\t10,\n\t84,\n\t104,\n\t101,\n\t32,\n\t121,\n\t111,\n\t117,\n\t114,\n\t115,\n\t101,\n\t108,\n\t102,\n\t67,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t32,\n\t109,\n\t105,\n\t99,\n\t104,\n\t105,\n\t103,\n\t97,\n\t110,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t32,\n\t99,\n\t111,\n\t108,\n\t117,\n\t109,\n\t98,\n\t105,\n\t97,\n\t112,\n\t114,\n\t105,\n\t111,\n\t114,\n\t105,\n\t116,\n\t121,\n\t112,\n\t114,\n\t105,\n\t110,\n\t116,\n\t105,\n\t110,\n\t103,\n\t100,\n\t114,\n\t105,\n\t110,\n\t107,\n\t105,\n\t110,\n\t103,\n\t102,\n\t97,\n\t99,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t101,\n\t100,\n\t67,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t101,\n\t114,\n\t115,\n\t82,\n\t117,\n\t115,\n\t115,\n\t105,\n\t97,\n\t110,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t116,\n\t101,\n\t45,\n\t56,\n\t56,\n\t53,\n\t57,\n\t45,\n\t49,\n\t34,\n\t105,\n\t110,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t105,\n\t97,\n\t114,\n\t32,\n\t113,\n\t117,\n\t97,\n\t108,\n\t105,\n\t116,\n\t121,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t58,\n\t48,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t118,\n\t105,\n\t101,\n\t119,\n\t112,\n\t111,\n\t114,\n\t116,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t115,\n\t45,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t34,\n\t62,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t46,\n\t108,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t32,\n\t101,\n\t108,\n\t105,\n\t103,\n\t105,\n\t98,\n\t108,\n\t101,\n\t105,\n\t110,\n\t118,\n\t111,\n\t108,\n\t118,\n\t101,\n\t115,\n\t97,\n\t116,\n\t108,\n\t97,\n\t110,\n\t116,\n\t105,\n\t99,\n\t111,\n\t110,\n\t108,\n\t111,\n\t97,\n\t100,\n\t61,\n\t34,\n\t100,\n\t101,\n\t102,\n\t97,\n\t117,\n\t108,\n\t116,\n\t46,\n\t115,\n\t117,\n\t112,\n\t112,\n\t108,\n\t105,\n\t101,\n\t100,\n\t112,\n\t97,\n\t121,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t103,\n\t108,\n\t111,\n\t115,\n\t115,\n\t97,\n\t114,\n\t121,\n\t10,\n\t10,\n\t65,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t103,\n\t117,\n\t105,\n\t100,\n\t97,\n\t110,\n\t99,\n\t101,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t60,\n\t116,\n\t100,\n\t101,\n\t110,\n\t99,\n\t111,\n\t100,\n\t105,\n\t110,\n\t103,\n\t109,\n\t105,\n\t100,\n\t100,\n\t108,\n\t101,\n\t34,\n\t62,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t115,\n\t115,\n\t99,\n\t111,\n\t116,\n\t116,\n\t105,\n\t115,\n\t104,\n\t106,\n\t111,\n\t110,\n\t97,\n\t116,\n\t104,\n\t97,\n\t110,\n\t109,\n\t97,\n\t106,\n\t111,\n\t114,\n\t105,\n\t116,\n\t121,\n\t119,\n\t105,\n\t100,\n\t103,\n\t101,\n\t116,\n\t115,\n\t46,\n\t99,\n\t108,\n\t105,\n\t110,\n\t105,\n\t99,\n\t97,\n\t108,\n\t116,\n\t104,\n\t97,\n\t105,\n\t108,\n\t97,\n\t110,\n\t100,\n\t116,\n\t101,\n\t97,\n\t99,\n\t104,\n\t101,\n\t114,\n\t115,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t9,\n\t97,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t115,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t59,\n\t116,\n\t111,\n\t83,\n\t116,\n\t114,\n\t105,\n\t110,\n\t103,\n\t60,\n\t47,\n\t115,\n\t109,\n\t97,\n\t108,\n\t108,\n\t62,\n\t111,\n\t107,\n\t108,\n\t97,\n\t104,\n\t111,\n\t109,\n\t97,\n\t119,\n\t105,\n\t108,\n\t108,\n\t32,\n\t98,\n\t101,\n\t32,\n\t105,\n\t110,\n\t118,\n\t101,\n\t115,\n\t116,\n\t111,\n\t114,\n\t48,\n\t34,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t104,\n\t111,\n\t108,\n\t105,\n\t100,\n\t97,\n\t121,\n\t115,\n\t82,\n\t101,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t108,\n\t105,\n\t99,\n\t101,\n\t110,\n\t115,\n\t101,\n\t100,\n\t32,\n\t40,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t46,\n\t32,\n\t65,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t118,\n\t105,\n\t115,\n\t105,\n\t116,\n\t105,\n\t110,\n\t103,\n\t101,\n\t120,\n\t112,\n\t108,\n\t111,\n\t114,\n\t101,\n\t114,\n\t112,\n\t114,\n\t105,\n\t109,\n\t97,\n\t114,\n\t121,\n\t32,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t34,\n\t32,\n\t97,\n\t110,\n\t100,\n\t114,\n\t111,\n\t105,\n\t100,\n\t34,\n\t113,\n\t117,\n\t105,\n\t99,\n\t107,\n\t108,\n\t121,\n\t32,\n\t109,\n\t101,\n\t101,\n\t116,\n\t105,\n\t110,\n\t103,\n\t115,\n\t101,\n\t115,\n\t116,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t59,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t59,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t35,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t118,\n\t97,\n\t108,\n\t44,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t32,\n\t99,\n\t104,\n\t101,\n\t99,\n\t107,\n\t101,\n\t100,\n\t46,\n\t109,\n\t105,\n\t110,\n\t46,\n\t106,\n\t115,\n\t34,\n\t109,\n\t97,\n\t103,\n\t110,\n\t101,\n\t116,\n\t105,\n\t99,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t104,\n\t102,\n\t111,\n\t114,\n\t101,\n\t99,\n\t97,\n\t115,\n\t116,\n\t46,\n\t32,\n\t87,\n\t104,\n\t105,\n\t108,\n\t101,\n\t32,\n\t116,\n\t104,\n\t117,\n\t114,\n\t115,\n\t100,\n\t97,\n\t121,\n\t100,\n\t118,\n\t101,\n\t114,\n\t116,\n\t105,\n\t115,\n\t101,\n\t38,\n\t101,\n\t97,\n\t99,\n\t117,\n\t116,\n\t101,\n\t59,\n\t104,\n\t97,\n\t115,\n\t67,\n\t108,\n\t97,\n\t115,\n\t115,\n\t101,\n\t118,\n\t97,\n\t108,\n\t117,\n\t97,\n\t116,\n\t101,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t105,\n\t110,\n\t103,\n\t101,\n\t120,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t112,\n\t97,\n\t116,\n\t105,\n\t101,\n\t110,\n\t116,\n\t115,\n\t32,\n\t79,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t32,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t97,\n\t100,\n\t111,\n\t79,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t34,\n\t99,\n\t97,\n\t109,\n\t112,\n\t98,\n\t101,\n\t108,\n\t108,\n\t60,\n\t33,\n\t45,\n\t45,\n\t32,\n\t101,\n\t110,\n\t100,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t60,\n\t98,\n\t114,\n\t32,\n\t47,\n\t62,\n\t13,\n\t10,\n\t95,\n\t112,\n\t111,\n\t112,\n\t117,\n\t112,\n\t115,\n\t124,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t44,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t32,\n\t113,\n\t117,\n\t97,\n\t108,\n\t105,\n\t116,\n\t121,\n\t32,\n\t87,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t115,\n\t32,\n\t97,\n\t115,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t32,\n\t60,\n\t98,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t108,\n\t101,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t32,\n\t67,\n\t111,\n\t109,\n\t112,\n\t97,\n\t110,\n\t121,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t115,\n\t60,\n\t105,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t32,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t118,\n\t101,\n\t115,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t115,\n\t109,\n\t97,\n\t114,\n\t115,\n\t104,\n\t97,\n\t108,\n\t108,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t108,\n\t121,\n\t41,\n\t46,\n\t10,\n\t10,\n\t84,\n\t104,\n\t101,\n\t32,\n\t116,\n\t97,\n\t120,\n\t111,\n\t110,\n\t111,\n\t109,\n\t121,\n\t109,\n\t117,\n\t99,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t10,\n\t34,\n\t32,\n\t100,\n\t97,\n\t116,\n\t97,\n\t45,\n\t115,\n\t114,\n\t116,\n\t117,\n\t103,\n\t117,\n\t195,\n\t170,\n\t115,\n\t115,\n\t99,\n\t114,\n\t111,\n\t108,\n\t108,\n\t84,\n\t111,\n\t32,\n\t112,\n\t114,\n\t111,\n\t106,\n\t101,\n\t99,\n\t116,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t13,\n\t10,\n\t97,\n\t116,\n\t116,\n\t111,\n\t114,\n\t110,\n\t101,\n\t121,\n\t101,\n\t109,\n\t112,\n\t104,\n\t97,\n\t115,\n\t105,\n\t115,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t111,\n\t114,\n\t115,\n\t102,\n\t97,\n\t110,\n\t99,\n\t121,\n\t98,\n\t111,\n\t120,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t39,\n\t115,\n\t32,\n\t119,\n\t105,\n\t108,\n\t100,\n\t108,\n\t105,\n\t102,\n\t101,\n\t99,\n\t104,\n\t101,\n\t99,\n\t107,\n\t101,\n\t100,\n\t61,\n\t115,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t109,\n\t112,\n\t120,\n\t59,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t32,\n\t80,\n\t114,\n\t111,\n\t106,\n\t101,\n\t99,\n\t116,\n\t106,\n\t111,\n\t117,\n\t114,\n\t110,\n\t97,\n\t108,\n\t115,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t118,\n\t101,\n\t100,\n\t118,\n\t97,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t104,\n\t111,\n\t109,\n\t112,\n\t115,\n\t111,\n\t110,\n\t108,\n\t105,\n\t103,\n\t104,\n\t116,\n\t105,\n\t110,\n\t103,\n\t97,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t48,\n\t99,\n\t104,\n\t101,\n\t99,\n\t107,\n\t105,\n\t110,\n\t103,\n\t60,\n\t47,\n\t116,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t60,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t32,\n\t67,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t102,\n\t105,\n\t120,\n\t10,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t32,\n\t60,\n\t115,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t102,\n\t105,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t115,\n\t114,\n\t111,\n\t108,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t32,\n\t32,\n\t79,\n\t99,\n\t116,\n\t111,\n\t98,\n\t101,\n\t114,\n\t119,\n\t101,\n\t98,\n\t115,\n\t105,\n\t116,\n\t101,\n\t32,\n\t101,\n\t120,\n\t112,\n\t111,\n\t115,\n\t117,\n\t114,\n\t101,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t32,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t115,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t99,\n\t108,\n\t105,\n\t99,\n\t107,\n\t105,\n\t110,\n\t103,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t105,\n\t110,\n\t103,\n\t99,\n\t111,\n\t109,\n\t109,\n\t97,\n\t110,\n\t100,\n\t115,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t100,\n\t32,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t115,\n\t32,\n\t32,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t111,\n\t110,\n\t83,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t109,\n\t97,\n\t114,\n\t121,\n\t108,\n\t97,\n\t110,\n\t100,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t103,\n\t101,\n\t115,\n\t97,\n\t110,\n\t97,\n\t108,\n\t121,\n\t116,\n\t105,\n\t99,\n\t108,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t46,\n\t108,\n\t111,\n\t103,\n\t103,\n\t101,\n\t100,\n\t73,\n\t110,\n\t97,\n\t100,\n\t118,\n\t105,\n\t115,\n\t111,\n\t114,\n\t121,\n\t115,\n\t105,\n\t98,\n\t108,\n\t105,\n\t110,\n\t103,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t34,\n\t115,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t41,\n\t115,\n\t46,\n\t32,\n\t84,\n\t104,\n\t105,\n\t115,\n\t32,\n\t112,\n\t97,\n\t99,\n\t107,\n\t97,\n\t103,\n\t101,\n\t115,\n\t99,\n\t104,\n\t101,\n\t99,\n\t107,\n\t98,\n\t111,\n\t120,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t115,\n\t112,\n\t114,\n\t101,\n\t103,\n\t110,\n\t97,\n\t110,\n\t116,\n\t116,\n\t111,\n\t109,\n\t111,\n\t114,\n\t114,\n\t111,\n\t119,\n\t115,\n\t112,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t61,\n\t105,\n\t99,\n\t111,\n\t110,\n\t46,\n\t112,\n\t110,\n\t103,\n\t106,\n\t97,\n\t112,\n\t97,\n\t110,\n\t101,\n\t115,\n\t101,\n\t99,\n\t111,\n\t100,\n\t101,\n\t98,\n\t97,\n\t115,\n\t101,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t34,\n\t62,\n\t103,\n\t97,\n\t109,\n\t98,\n\t108,\n\t105,\n\t110,\n\t103,\n\t115,\n\t117,\n\t99,\n\t104,\n\t32,\n\t97,\n\t115,\n\t32,\n\t44,\n\t32,\n\t119,\n\t104,\n\t105,\n\t108,\n\t101,\n\t32,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t32,\n\t109,\n\t105,\n\t115,\n\t115,\n\t111,\n\t117,\n\t114,\n\t105,\n\t115,\n\t112,\n\t111,\n\t114,\n\t116,\n\t105,\n\t110,\n\t103,\n\t116,\n\t111,\n\t112,\n\t58,\n\t49,\n\t112,\n\t120,\n\t32,\n\t46,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t116,\n\t101,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t50,\n\t108,\n\t97,\n\t122,\n\t121,\n\t108,\n\t111,\n\t97,\n\t100,\n\t110,\n\t111,\n\t118,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t62,\n\t10,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t47,\n\t60,\n\t116,\n\t114,\n\t62,\n\t60,\n\t116,\n\t100,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t50,\n\t47,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t121,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t32,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t34,\n\t32,\n\t38,\n\t108,\n\t116,\n\t59,\n\t33,\n\t45,\n\t45,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t34,\n\t62,\n\t60,\n\t47,\n\t106,\n\t113,\n\t117,\n\t101,\n\t114,\n\t121,\n\t46,\n\t60,\n\t47,\n\t102,\n\t111,\n\t114,\n\t109,\n\t62,\n\t10,\n\t40,\n\t231,\n\t174,\n\t128,\n\t228,\n\t189,\n\t147,\n\t41,\n\t40,\n\t231,\n\t185,\n\t129,\n\t233,\n\t171,\n\t148,\n\t41,\n\t104,\n\t114,\n\t118,\n\t97,\n\t116,\n\t115,\n\t107,\n\t105,\n\t105,\n\t116,\n\t97,\n\t108,\n\t105,\n\t97,\n\t110,\n\t111,\n\t114,\n\t111,\n\t109,\n\t195,\n\t162,\n\t110,\n\t196,\n\t131,\n\t116,\n\t195,\n\t188,\n\t114,\n\t107,\n\t195,\n\t167,\n\t101,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t175,\n\t217,\n\t136,\n\t116,\n\t97,\n\t109,\n\t98,\n\t105,\n\t195,\n\t169,\n\t110,\n\t110,\n\t111,\n\t116,\n\t105,\n\t99,\n\t105,\n\t97,\n\t115,\n\t109,\n\t101,\n\t110,\n\t115,\n\t97,\n\t106,\n\t101,\n\t115,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t115,\n\t100,\n\t101,\n\t114,\n\t101,\n\t99,\n\t104,\n\t111,\n\t115,\n\t110,\n\t97,\n\t99,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t115,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t105,\n\t111,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t111,\n\t117,\n\t115,\n\t117,\n\t97,\n\t114,\n\t105,\n\t111,\n\t115,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t97,\n\t103,\n\t111,\n\t98,\n\t105,\n\t101,\n\t114,\n\t110,\n\t111,\n\t101,\n\t109,\n\t112,\n\t114,\n\t101,\n\t115,\n\t97,\n\t115,\n\t97,\n\t110,\n\t117,\n\t110,\n\t99,\n\t105,\n\t111,\n\t115,\n\t118,\n\t97,\n\t108,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t99,\n\t111,\n\t108,\n\t111,\n\t109,\n\t98,\n\t105,\n\t97,\n\t100,\n\t101,\n\t115,\n\t112,\n\t117,\n\t195,\n\t169,\n\t115,\n\t100,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t115,\n\t112,\n\t114,\n\t111,\n\t121,\n\t101,\n\t99,\n\t116,\n\t111,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t111,\n\t112,\n\t195,\n\t186,\n\t98,\n\t108,\n\t105,\n\t99,\n\t111,\n\t110,\n\t111,\n\t115,\n\t111,\n\t116,\n\t114,\n\t111,\n\t115,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t105,\n\t97,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t101,\n\t109,\n\t105,\n\t108,\n\t108,\n\t111,\n\t110,\n\t101,\n\t115,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t110,\n\t116,\n\t101,\n\t112,\n\t114,\n\t101,\n\t103,\n\t117,\n\t110,\n\t116,\n\t97,\n\t97,\n\t110,\n\t116,\n\t101,\n\t114,\n\t105,\n\t111,\n\t114,\n\t114,\n\t101,\n\t99,\n\t117,\n\t114,\n\t115,\n\t111,\n\t115,\n\t112,\n\t114,\n\t111,\n\t98,\n\t108,\n\t101,\n\t109,\n\t97,\n\t115,\n\t97,\n\t110,\n\t116,\n\t105,\n\t97,\n\t103,\n\t111,\n\t110,\n\t117,\n\t101,\n\t115,\n\t116,\n\t114,\n\t111,\n\t115,\n\t111,\n\t112,\n\t105,\n\t110,\n\t105,\n\t195,\n\t179,\n\t110,\n\t105,\n\t109,\n\t112,\n\t114,\n\t105,\n\t109,\n\t105,\n\t114,\n\t109,\n\t105,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t115,\n\t97,\n\t109,\n\t195,\n\t169,\n\t114,\n\t105,\n\t99,\n\t97,\n\t118,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t111,\n\t114,\n\t115,\n\t111,\n\t99,\n\t105,\n\t101,\n\t100,\n\t97,\n\t100,\n\t114,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t101,\n\t97,\n\t108,\n\t105,\n\t122,\n\t97,\n\t114,\n\t114,\n\t101,\n\t103,\n\t105,\n\t115,\n\t116,\n\t114,\n\t111,\n\t112,\n\t97,\n\t108,\n\t97,\n\t98,\n\t114,\n\t97,\n\t115,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t195,\n\t169,\n\t115,\n\t101,\n\t110,\n\t116,\n\t111,\n\t110,\n\t99,\n\t101,\n\t115,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t109,\n\t105,\n\t101,\n\t109,\n\t98,\n\t114,\n\t111,\n\t115,\n\t114,\n\t101,\n\t97,\n\t108,\n\t105,\n\t100,\n\t97,\n\t100,\n\t99,\n\t195,\n\t179,\n\t114,\n\t100,\n\t111,\n\t98,\n\t97,\n\t122,\n\t97,\n\t114,\n\t97,\n\t103,\n\t111,\n\t122,\n\t97,\n\t112,\n\t195,\n\t161,\n\t103,\n\t105,\n\t110,\n\t97,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t108,\n\t101,\n\t115,\n\t98,\n\t108,\n\t111,\n\t113,\n\t117,\n\t101,\n\t97,\n\t114,\n\t103,\n\t101,\n\t115,\n\t116,\n\t105,\n\t195,\n\t179,\n\t110,\n\t97,\n\t108,\n\t113,\n\t117,\n\t105,\n\t108,\n\t101,\n\t114,\n\t115,\n\t105,\n\t115,\n\t116,\n\t101,\n\t109,\n\t97,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t115,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t111,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t97,\n\t101,\n\t115,\n\t116,\n\t117,\n\t100,\n\t105,\n\t111,\n\t115,\n\t112,\n\t195,\n\t186,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t111,\n\t98,\n\t106,\n\t101,\n\t116,\n\t105,\n\t118,\n\t111,\n\t97,\n\t108,\n\t105,\n\t99,\n\t97,\n\t110,\n\t116,\n\t101,\n\t98,\n\t117,\n\t115,\n\t99,\n\t97,\n\t100,\n\t111,\n\t114,\n\t99,\n\t97,\n\t110,\n\t116,\n\t105,\n\t100,\n\t97,\n\t100,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t100,\n\t97,\n\t115,\n\t97,\n\t99,\n\t99,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t97,\n\t114,\n\t99,\n\t104,\n\t105,\n\t118,\n\t111,\n\t115,\n\t115,\n\t117,\n\t112,\n\t101,\n\t114,\n\t105,\n\t111,\n\t114,\n\t109,\n\t97,\n\t121,\n\t111,\n\t114,\n\t195,\n\t173,\n\t97,\n\t97,\n\t108,\n\t101,\n\t109,\n\t97,\n\t110,\n\t105,\n\t97,\n\t102,\n\t117,\n\t110,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t195,\n\t186,\n\t108,\n\t116,\n\t105,\n\t109,\n\t111,\n\t115,\n\t104,\n\t97,\n\t99,\n\t105,\n\t101,\n\t110,\n\t100,\n\t111,\n\t97,\n\t113,\n\t117,\n\t101,\n\t108,\n\t108,\n\t111,\n\t115,\n\t101,\n\t100,\n\t105,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t102,\n\t101,\n\t114,\n\t110,\n\t97,\n\t110,\n\t100,\n\t111,\n\t97,\n\t109,\n\t98,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t102,\n\t97,\n\t99,\n\t101,\n\t98,\n\t111,\n\t111,\n\t107,\n\t110,\n\t117,\n\t101,\n\t115,\n\t116,\n\t114,\n\t97,\n\t115,\n\t99,\n\t108,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t115,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t111,\n\t115,\n\t98,\n\t97,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t114,\n\t99,\n\t111,\n\t110,\n\t103,\n\t114,\n\t101,\n\t115,\n\t111,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t114,\n\t99,\n\t111,\n\t109,\n\t101,\n\t114,\n\t99,\n\t105,\n\t111,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t116,\n\t111,\n\t106,\n\t195,\n\t179,\n\t118,\n\t101,\n\t110,\n\t101,\n\t115,\n\t100,\n\t105,\n\t115,\n\t116,\n\t114,\n\t105,\n\t116,\n\t111,\n\t116,\n\t195,\n\t169,\n\t99,\n\t110,\n\t105,\n\t99,\n\t97,\n\t99,\n\t111,\n\t110,\n\t106,\n\t117,\n\t110,\n\t116,\n\t111,\n\t101,\n\t110,\n\t101,\n\t114,\n\t103,\n\t195,\n\t173,\n\t97,\n\t116,\n\t114,\n\t97,\n\t98,\n\t97,\n\t106,\n\t97,\n\t114,\n\t97,\n\t115,\n\t116,\n\t117,\n\t114,\n\t105,\n\t97,\n\t115,\n\t114,\n\t101,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t117,\n\t116,\n\t105,\n\t108,\n\t105,\n\t122,\n\t97,\n\t114,\n\t98,\n\t111,\n\t108,\n\t101,\n\t116,\n\t195,\n\t173,\n\t110,\n\t115,\n\t97,\n\t108,\n\t118,\n\t97,\n\t100,\n\t111,\n\t114,\n\t99,\n\t111,\n\t114,\n\t114,\n\t101,\n\t99,\n\t116,\n\t97,\n\t116,\n\t114,\n\t97,\n\t98,\n\t97,\n\t106,\n\t111,\n\t115,\n\t112,\n\t114,\n\t105,\n\t109,\n\t101,\n\t114,\n\t111,\n\t115,\n\t110,\n\t101,\n\t103,\n\t111,\n\t99,\n\t105,\n\t111,\n\t115,\n\t108,\n\t105,\n\t98,\n\t101,\n\t114,\n\t116,\n\t97,\n\t100,\n\t100,\n\t101,\n\t116,\n\t97,\n\t108,\n\t108,\n\t101,\n\t115,\n\t112,\n\t97,\n\t110,\n\t116,\n\t97,\n\t108,\n\t108,\n\t97,\n\t112,\n\t114,\n\t195,\n\t179,\n\t120,\n\t105,\n\t109,\n\t111,\n\t97,\n\t108,\n\t109,\n\t101,\n\t114,\n\t195,\n\t173,\n\t97,\n\t97,\n\t110,\n\t105,\n\t109,\n\t97,\n\t108,\n\t101,\n\t115,\n\t113,\n\t117,\n\t105,\n\t195,\n\t169,\n\t110,\n\t101,\n\t115,\n\t99,\n\t111,\n\t114,\n\t97,\n\t122,\n\t195,\n\t179,\n\t110,\n\t115,\n\t101,\n\t99,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t98,\n\t117,\n\t115,\n\t99,\n\t97,\n\t110,\n\t100,\n\t111,\n\t111,\n\t112,\n\t99,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t101,\n\t120,\n\t116,\n\t101,\n\t114,\n\t105,\n\t111,\n\t114,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t112,\n\t116,\n\t111,\n\t116,\n\t111,\n\t100,\n\t97,\n\t118,\n\t195,\n\t173,\n\t97,\n\t103,\n\t97,\n\t108,\n\t101,\n\t114,\n\t195,\n\t173,\n\t97,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t105,\n\t114,\n\t109,\n\t101,\n\t100,\n\t105,\n\t99,\n\t105,\n\t110,\n\t97,\n\t108,\n\t105,\n\t99,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t99,\n\t111,\n\t110,\n\t115,\n\t117,\n\t108,\n\t116,\n\t97,\n\t97,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t111,\n\t115,\n\t99,\n\t114,\n\t195,\n\t173,\n\t116,\n\t105,\n\t99,\n\t97,\n\t100,\n\t195,\n\t179,\n\t108,\n\t97,\n\t114,\n\t101,\n\t115,\n\t106,\n\t117,\n\t115,\n\t116,\n\t105,\n\t99,\n\t105,\n\t97,\n\t100,\n\t101,\n\t98,\n\t101,\n\t114,\n\t195,\n\t161,\n\t110,\n\t112,\n\t101,\n\t114,\n\t195,\n\t173,\n\t111,\n\t100,\n\t111,\n\t110,\n\t101,\n\t99,\n\t101,\n\t115,\n\t105,\n\t116,\n\t97,\n\t109,\n\t97,\n\t110,\n\t116,\n\t101,\n\t110,\n\t101,\n\t114,\n\t112,\n\t101,\n\t113,\n\t117,\n\t101,\n\t195,\n\t177,\n\t111,\n\t114,\n\t101,\n\t99,\n\t105,\n\t98,\n\t105,\n\t100,\n\t97,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t110,\n\t97,\n\t108,\n\t116,\n\t101,\n\t110,\n\t101,\n\t114,\n\t105,\n\t102,\n\t101,\n\t99,\n\t97,\n\t110,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t97,\n\t110,\n\t97,\n\t114,\n\t105,\n\t97,\n\t115,\n\t100,\n\t101,\n\t115,\n\t99,\n\t97,\n\t114,\n\t103,\n\t97,\n\t100,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t111,\n\t115,\n\t109,\n\t97,\n\t108,\n\t108,\n\t111,\n\t114,\n\t99,\n\t97,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t101,\n\t114,\n\t101,\n\t116,\n\t195,\n\t169,\n\t99,\n\t110,\n\t105,\n\t99,\n\t111,\n\t100,\n\t101,\n\t98,\n\t101,\n\t114,\n\t195,\n\t173,\n\t97,\n\t118,\n\t105,\n\t118,\n\t105,\n\t101,\n\t110,\n\t100,\n\t97,\n\t102,\n\t105,\n\t110,\n\t97,\n\t110,\n\t122,\n\t97,\n\t115,\n\t97,\n\t100,\n\t101,\n\t108,\n\t97,\n\t110,\n\t116,\n\t101,\n\t102,\n\t117,\n\t110,\n\t99,\n\t105,\n\t111,\n\t110,\n\t97,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t106,\n\t111,\n\t115,\n\t100,\n\t105,\n\t102,\n\t195,\n\t173,\n\t99,\n\t105,\n\t108,\n\t99,\n\t105,\n\t117,\n\t100,\n\t97,\n\t100,\n\t101,\n\t115,\n\t97,\n\t110,\n\t116,\n\t105,\n\t103,\n\t117,\n\t97,\n\t115,\n\t97,\n\t118,\n\t97,\n\t110,\n\t122,\n\t97,\n\t100,\n\t97,\n\t116,\n\t195,\n\t169,\n\t114,\n\t109,\n\t105,\n\t110,\n\t111,\n\t117,\n\t110,\n\t105,\n\t100,\n\t97,\n\t100,\n\t101,\n\t115,\n\t115,\n\t195,\n\t161,\n\t110,\n\t99,\n\t104,\n\t101,\n\t122,\n\t99,\n\t97,\n\t109,\n\t112,\n\t97,\n\t195,\n\t177,\n\t97,\n\t115,\n\t111,\n\t102,\n\t116,\n\t111,\n\t110,\n\t105,\n\t99,\n\t114,\n\t101,\n\t118,\n\t105,\n\t115,\n\t116,\n\t97,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t101,\n\t110,\n\t101,\n\t115,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t101,\n\t115,\n\t109,\n\t111,\n\t109,\n\t101,\n\t110,\n\t116,\n\t111,\n\t115,\n\t102,\n\t97,\n\t99,\n\t117,\n\t108,\n\t116,\n\t97,\n\t100,\n\t99,\n\t114,\n\t195,\n\t169,\n\t100,\n\t105,\n\t116,\n\t111,\n\t100,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t97,\n\t115,\n\t115,\n\t117,\n\t112,\n\t117,\n\t101,\n\t115,\n\t116,\n\t111,\n\t102,\n\t97,\n\t99,\n\t116,\n\t111,\n\t114,\n\t101,\n\t115,\n\t115,\n\t101,\n\t103,\n\t117,\n\t110,\n\t100,\n\t111,\n\t115,\n\t112,\n\t101,\n\t113,\n\t117,\n\t101,\n\t195,\n\t177,\n\t97,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t181,\n\t209,\n\t129,\n\t208,\n\t187,\n\t208,\n\t184,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t177,\n\t209,\n\t139,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t139,\n\t209,\n\t130,\n\t209,\n\t140,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t149,\n\t209,\n\t129,\n\t208,\n\t187,\n\t208,\n\t184,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t189,\n\t209,\n\t143,\n\t208,\n\t178,\n\t209,\n\t129,\n\t208,\n\t181,\n\t209,\n\t133,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t182,\n\t208,\n\t181,\n\t208,\n\t177,\n\t209,\n\t139,\n\t208,\n\t187,\n\t208,\n\t184,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t180,\n\t209,\n\t131,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t189,\n\t209,\n\t140,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t177,\n\t209,\n\t139,\n\t208,\n\t187,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t177,\n\t209,\n\t143,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t184,\n\t208,\n\t189,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t177,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t180,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t176,\n\t208,\n\t185,\n\t209,\n\t130,\n\t209,\n\t132,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t184,\n\t208,\n\t179,\n\t209,\n\t128,\n\t209,\n\t139,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t182,\n\t208,\n\t181,\n\t208,\n\t178,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t188,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t190,\n\t209,\n\t142,\n\t208,\n\t187,\n\t208,\n\t184,\n\t209,\n\t136,\n\t209,\n\t140,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t184,\n\t209,\n\t133,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t186,\n\t208,\n\t176,\n\t208,\n\t180,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t185,\n\t208,\n\t180,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t176,\n\t208,\n\t188,\n\t208,\n\t184,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t187,\n\t208,\n\t184,\n\t208,\n\t177,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t188,\n\t209,\n\t131,\n\t209,\n\t133,\n\t208,\n\t190,\n\t209,\n\t130,\n\t209,\n\t143,\n\t208,\n\t180,\n\t208,\n\t178,\n\t209,\n\t131,\n\t209,\n\t133,\n\t209,\n\t129,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t187,\n\t209,\n\t142,\n\t208,\n\t180,\n\t208,\n\t184,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t184,\n\t209,\n\t128,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t177,\n\t209,\n\t143,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t181,\n\t208,\n\t178,\n\t208,\n\t184,\n\t208,\n\t180,\n\t208,\n\t181,\n\t209,\n\t135,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t188,\n\t209,\n\t129,\n\t209,\n\t135,\n\t208,\n\t181,\n\t209,\n\t130,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t188,\n\t209,\n\t139,\n\t209,\n\t134,\n\t208,\n\t181,\n\t208,\n\t189,\n\t209,\n\t139,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t187,\n\t208,\n\t178,\n\t208,\n\t181,\n\t208,\n\t180,\n\t209,\n\t140,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t180,\n\t209,\n\t139,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t177,\n\t208,\n\t181,\n\t208,\n\t178,\n\t209,\n\t139,\n\t209,\n\t136,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t188,\n\t208,\n\t184,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t191,\n\t208,\n\t176,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t188,\n\t209,\n\t131,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t178,\n\t208,\n\t187,\n\t208,\n\t184,\n\t209,\n\t134,\n\t208,\n\t176,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t180,\n\t209,\n\t139,\n\t208,\n\t183,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t142,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t179,\n\t209,\n\t131,\n\t208,\n\t180,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t179,\n\t208,\n\t178,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t185,\n\t208,\n\t184,\n\t208,\n\t180,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t187,\n\t208,\n\t176,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t187,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t186,\n\t208,\n\t184,\n\t209,\n\t142,\n\t208,\n\t189,\n\t209,\n\t143,\n\t208,\n\t178,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t140,\n\t208,\n\t149,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t140,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t136,\n\t208,\n\t184,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t132,\n\t217,\n\t135,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t170,\n\t217,\n\t138,\n\t216,\n\t172,\n\t217,\n\t133,\n\t217,\n\t138,\n\t216,\n\t185,\n\t216,\n\t174,\n\t216,\n\t167,\n\t216,\n\t181,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t176,\n\t217,\n\t138,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t138,\n\t217,\n\t135,\n\t216,\n\t172,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t162,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t175,\n\t216,\n\t170,\n\t216,\n\t173,\n\t217,\n\t131,\n\t217,\n\t133,\n\t216,\n\t181,\n\t217,\n\t129,\n\t216,\n\t173,\n\t216,\n\t169,\n\t217,\n\t131,\n\t216,\n\t167,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t132,\n\t217,\n\t138,\n\t217,\n\t138,\n\t217,\n\t131,\n\t217,\n\t136,\n\t217,\n\t134,\n\t216,\n\t180,\n\t216,\n\t168,\n\t217,\n\t131,\n\t216,\n\t169,\n\t217,\n\t129,\n\t217,\n\t138,\n\t217,\n\t135,\n\t216,\n\t167,\n\t216,\n\t168,\n\t217,\n\t134,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t173,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t161,\n\t216,\n\t163,\n\t217,\n\t131,\n\t216,\n\t171,\n\t216,\n\t177,\n\t216,\n\t174,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t173,\n\t216,\n\t168,\n\t216,\n\t175,\n\t217,\n\t132,\n\t217,\n\t138,\n\t217,\n\t132,\n\t216,\n\t175,\n\t216,\n\t177,\n\t217,\n\t136,\n\t216,\n\t179,\n\t216,\n\t167,\n\t216,\n\t182,\n\t216,\n\t186,\n\t216,\n\t183,\n\t216,\n\t170,\n\t217,\n\t131,\n\t217,\n\t136,\n\t217,\n\t134,\n\t217,\n\t135,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t131,\n\t216,\n\t179,\n\t216,\n\t167,\n\t216,\n\t173,\n\t216,\n\t169,\n\t217,\n\t134,\n\t216,\n\t167,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t183,\n\t216,\n\t168,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t138,\n\t217,\n\t131,\n\t216,\n\t180,\n\t217,\n\t131,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t138,\n\t217,\n\t133,\n\t217,\n\t131,\n\t217,\n\t134,\n\t217,\n\t133,\n\t217,\n\t134,\n\t217,\n\t135,\n\t216,\n\t167,\n\t216,\n\t180,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t169,\n\t216,\n\t177,\n\t216,\n\t166,\n\t217,\n\t138,\n\t216,\n\t179,\n\t217,\n\t134,\n\t216,\n\t180,\n\t217,\n\t138,\n\t216,\n\t183,\n\t217,\n\t133,\n\t216,\n\t167,\n\t216,\n\t176,\n\t216,\n\t167,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t129,\n\t217,\n\t134,\n\t216,\n\t180,\n\t216,\n\t168,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t170,\n\t216,\n\t185,\n\t216,\n\t168,\n\t216,\n\t177,\n\t216,\n\t177,\n\t216,\n\t173,\n\t217,\n\t133,\n\t216,\n\t169,\n\t217,\n\t131,\n\t216,\n\t167,\n\t217,\n\t129,\n\t216,\n\t169,\n\t217,\n\t138,\n\t217,\n\t130,\n\t217,\n\t136,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t178,\n\t217,\n\t131,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t169,\n\t216,\n\t163,\n\t216,\n\t173,\n\t217,\n\t133,\n\t216,\n\t175,\n\t217,\n\t130,\n\t217,\n\t132,\n\t216,\n\t168,\n\t217,\n\t138,\n\t217,\n\t138,\n\t216,\n\t185,\n\t217,\n\t134,\n\t217,\n\t138,\n\t216,\n\t181,\n\t217,\n\t136,\n\t216,\n\t177,\n\t216,\n\t169,\n\t216,\n\t183,\n\t216,\n\t177,\n\t217,\n\t138,\n\t217,\n\t130,\n\t216,\n\t180,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t172,\n\t217,\n\t136,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t216,\n\t174,\n\t216,\n\t177,\n\t217,\n\t137,\n\t217,\n\t133,\n\t216,\n\t185,\n\t217,\n\t134,\n\t216,\n\t167,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t173,\n\t216,\n\t171,\n\t216,\n\t185,\n\t216,\n\t177,\n\t217,\n\t136,\n\t216,\n\t182,\n\t216,\n\t168,\n\t216,\n\t180,\n\t217,\n\t131,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t179,\n\t216,\n\t172,\n\t217,\n\t132,\n\t216,\n\t168,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t134,\n\t216,\n\t174,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t175,\n\t217,\n\t131,\n\t216,\n\t170,\n\t216,\n\t167,\n\t216,\n\t168,\n\t217,\n\t131,\n\t217,\n\t132,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t168,\n\t216,\n\t175,\n\t217,\n\t136,\n\t217,\n\t134,\n\t216,\n\t163,\n\t217,\n\t138,\n\t216,\n\t182,\n\t216,\n\t167,\n\t217,\n\t138,\n\t217,\n\t136,\n\t216,\n\t172,\n\t216,\n\t175,\n\t217,\n\t129,\n\t216,\n\t177,\n\t217,\n\t138,\n\t217,\n\t130,\n\t217,\n\t131,\n\t216,\n\t170,\n\t216,\n\t168,\n\t216,\n\t170,\n\t216,\n\t163,\n\t217,\n\t129,\n\t216,\n\t182,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t183,\n\t216,\n\t168,\n\t216,\n\t174,\n\t216,\n\t167,\n\t217,\n\t131,\n\t216,\n\t171,\n\t216,\n\t177,\n\t216,\n\t168,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t167,\n\t217,\n\t129,\n\t216,\n\t182,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t173,\n\t217,\n\t132,\n\t217,\n\t137,\n\t217,\n\t134,\n\t217,\n\t129,\n\t216,\n\t179,\n\t217,\n\t135,\n\t216,\n\t163,\n\t217,\n\t138,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t177,\n\t216,\n\t175,\n\t217,\n\t136,\n\t216,\n\t175,\n\t216,\n\t163,\n\t217,\n\t134,\n\t217,\n\t135,\n\t216,\n\t167,\n\t216,\n\t175,\n\t217,\n\t138,\n\t217,\n\t134,\n\t216,\n\t167,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t134,\n\t217,\n\t133,\n\t216,\n\t185,\n\t216,\n\t177,\n\t216,\n\t182,\n\t216,\n\t170,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t175,\n\t216,\n\t167,\n\t216,\n\t174,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t133,\n\t217,\n\t131,\n\t217,\n\t134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t1,\n\t0,\n\t2,\n\t0,\n\t2,\n\t0,\n\t2,\n\t0,\n\t2,\n\t0,\n\t4,\n\t0,\n\t4,\n\t0,\n\t4,\n\t0,\n\t4,\n\t0,\n\t0,\n\t1,\n\t2,\n\t3,\n\t4,\n\t5,\n\t6,\n\t7,\n\t7,\n\t6,\n\t5,\n\t4,\n\t3,\n\t2,\n\t1,\n\t0,\n\t8,\n\t9,\n\t10,\n\t11,\n\t12,\n\t13,\n\t14,\n\t15,\n\t15,\n\t14,\n\t13,\n\t12,\n\t11,\n\t10,\n\t9,\n\t8,\n\t16,\n\t17,\n\t18,\n\t19,\n\t20,\n\t21,\n\t22,\n\t23,\n\t23,\n\t22,\n\t21,\n\t20,\n\t19,\n\t18,\n\t17,\n\t16,\n\t24,\n\t25,\n\t26,\n\t27,\n\t28,\n\t29,\n\t30,\n\t31,\n\t31,\n\t30,\n\t29,\n\t28,\n\t27,\n\t26,\n\t25,\n\t24,\n\t255,\n\t255,\n\t255,\n\t255,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t255,\n\t255,\n\t255,\n\t255,\n\t1,\n\t0,\n\t0,\n\t0,\n\t2,\n\t0,\n\t0,\n\t0,\n\t2,\n\t0,\n\t0,\n\t0,\n\t1,\n\t0,\n\t0,\n\t0,\n\t1,\n\t0,\n\t0,\n\t0,\n\t3,\n\t0,\n\t0,\n\t0,\n\t255,\n\t255,\n\t0,\n\t1,\n\t0,\n\t0,\n\t0,\n\t1,\n\t0,\n\t0,\n\t255,\n\t255,\n\t0,\n\t1,\n\t0,\n\t0,\n\t0,\n\t8,\n\t0,\n\t8,\n\t0,\n\t8,\n\t0,\n\t8,\n\t0,\n\t0,\n\t0,\n\t1,\n\t0,\n\t2,\n\t0,\n\t3,\n\t0,\n\t4,\n\t0,\n\t5,\n\t0,\n\t6,\n\t0,\n\t7,\n\t114,\n\t101,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t115,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t113,\n\t117,\n\t105,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t99,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t116,\n\t121,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t108,\n\t101,\n\t104,\n\t105,\n\t103,\n\t104,\n\t108,\n\t105,\n\t103,\n\t104,\n\t116,\n\t68,\n\t84,\n\t68,\n\t47,\n\t120,\n\t104,\n\t116,\n\t109,\n\t108,\n\t109,\n\t97,\n\t114,\n\t107,\n\t101,\n\t116,\n\t105,\n\t110,\n\t103,\n\t107,\n\t110,\n\t111,\n\t119,\n\t108,\n\t101,\n\t100,\n\t103,\n\t101,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t104,\n\t105,\n\t110,\n\t103,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t114,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t117,\n\t98,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t101,\n\t97,\n\t100,\n\t118,\n\t101,\n\t114,\n\t116,\n\t105,\n\t115,\n\t101,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t34,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t60,\n\t47,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t62,\n\t65,\n\t117,\n\t115,\n\t116,\n\t114,\n\t97,\n\t108,\n\t105,\n\t97,\n\t34,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t115,\n\t105,\n\t116,\n\t117,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t117,\n\t116,\n\t104,\n\t111,\n\t114,\n\t105,\n\t116,\n\t121,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t112,\n\t114,\n\t105,\n\t109,\n\t97,\n\t114,\n\t105,\n\t108,\n\t121,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t104,\n\t97,\n\t108,\n\t108,\n\t101,\n\t110,\n\t103,\n\t101,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t97,\n\t110,\n\t111,\n\t110,\n\t121,\n\t109,\n\t111,\n\t117,\n\t115,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t110,\n\t105,\n\t101,\n\t115,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t97,\n\t103,\n\t114,\n\t101,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t34,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t61,\n\t34,\n\t112,\n\t111,\n\t116,\n\t101,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t101,\n\t100,\n\t117,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t114,\n\t103,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t115,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t97,\n\t114,\n\t121,\n\t99,\n\t111,\n\t112,\n\t121,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t115,\n\t101,\n\t120,\n\t99,\n\t108,\n\t117,\n\t115,\n\t105,\n\t118,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t60,\n\t47,\n\t102,\n\t111,\n\t114,\n\t109,\n\t62,\n\t13,\n\t10,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t116,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t66,\n\t105,\n\t111,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t121,\n\t125,\n\t32,\n\t101,\n\t108,\n\t115,\n\t101,\n\t32,\n\t123,\n\t10,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t119,\n\t104,\n\t101,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t65,\n\t110,\n\t97,\n\t108,\n\t121,\n\t116,\n\t105,\n\t99,\n\t115,\n\t116,\n\t101,\n\t109,\n\t112,\n\t108,\n\t97,\n\t116,\n\t101,\n\t115,\n\t100,\n\t97,\n\t110,\n\t103,\n\t101,\n\t114,\n\t111,\n\t117,\n\t115,\n\t115,\n\t97,\n\t116,\n\t101,\n\t108,\n\t108,\n\t105,\n\t116,\n\t101,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t114,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t112,\n\t114,\n\t111,\n\t116,\n\t111,\n\t116,\n\t121,\n\t112,\n\t101,\n\t105,\n\t110,\n\t102,\n\t108,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t38,\n\t114,\n\t97,\n\t113,\n\t117,\n\t111,\n\t59,\n\t60,\n\t47,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t108,\n\t121,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t102,\n\t111,\n\t114,\n\t109,\n\t98,\n\t101,\n\t97,\n\t117,\n\t116,\n\t105,\n\t102,\n\t117,\n\t108,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t112,\n\t111,\n\t114,\n\t116,\n\t111,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t122,\n\t101,\n\t100,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t112,\n\t114,\n\t111,\n\t109,\n\t105,\n\t110,\n\t101,\n\t110,\n\t116,\n\t117,\n\t110,\n\t116,\n\t105,\n\t108,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t117,\n\t109,\n\t98,\n\t110,\n\t97,\n\t105,\n\t108,\n\t78,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t46,\n\t102,\n\t111,\n\t99,\n\t117,\n\t115,\n\t40,\n\t41,\n\t59,\n\t111,\n\t118,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t105,\n\t103,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t110,\n\t110,\n\t111,\n\t117,\n\t110,\n\t99,\n\t101,\n\t100,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t34,\n\t62,\n\t10,\n\t101,\n\t120,\n\t99,\n\t101,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t108,\n\t101,\n\t115,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t101,\n\t120,\n\t112,\n\t101,\n\t110,\n\t115,\n\t105,\n\t118,\n\t101,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t119,\n\t111,\n\t114,\n\t107,\n\t116,\n\t101,\n\t114,\n\t114,\n\t105,\n\t116,\n\t111,\n\t114,\n\t121,\n\t110,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t78,\n\t97,\n\t109,\n\t101,\n\t99,\n\t114,\n\t105,\n\t116,\n\t105,\n\t99,\n\t105,\n\t115,\n\t109,\n\t116,\n\t114,\n\t97,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t108,\n\t115,\n\t101,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t65,\n\t108,\n\t101,\n\t120,\n\t97,\n\t110,\n\t100,\n\t101,\n\t114,\n\t97,\n\t112,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t101,\n\t100,\n\t109,\n\t97,\n\t116,\n\t101,\n\t114,\n\t105,\n\t97,\n\t108,\n\t115,\n\t98,\n\t114,\n\t111,\n\t97,\n\t100,\n\t99,\n\t97,\n\t115,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t100,\n\t97,\n\t102,\n\t102,\n\t105,\n\t108,\n\t105,\n\t97,\n\t116,\n\t101,\n\t60,\n\t47,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t62,\n\t116,\n\t114,\n\t101,\n\t97,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t47,\n\t100,\n\t101,\n\t102,\n\t97,\n\t117,\n\t108,\n\t116,\n\t46,\n\t80,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t111,\n\t110,\n\t99,\n\t108,\n\t105,\n\t99,\n\t107,\n\t61,\n\t34,\n\t98,\n\t105,\n\t111,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t121,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t119,\n\t105,\n\t115,\n\t101,\n\t112,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t101,\n\t110,\n\t116,\n\t70,\n\t114,\n\t97,\n\t110,\n\t195,\n\t167,\n\t97,\n\t105,\n\t115,\n\t72,\n\t111,\n\t108,\n\t108,\n\t121,\n\t119,\n\t111,\n\t111,\n\t100,\n\t101,\n\t120,\n\t112,\n\t97,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t97,\n\t114,\n\t100,\n\t115,\n\t60,\n\t47,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t62,\n\t10,\n\t114,\n\t101,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t68,\n\t101,\n\t99,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t112,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t67,\n\t97,\n\t109,\n\t98,\n\t114,\n\t105,\n\t100,\n\t103,\n\t101,\n\t111,\n\t112,\n\t112,\n\t111,\n\t110,\n\t101,\n\t110,\n\t116,\n\t115,\n\t66,\n\t117,\n\t115,\n\t105,\n\t110,\n\t101,\n\t115,\n\t115,\n\t32,\n\t99,\n\t111,\n\t110,\n\t102,\n\t117,\n\t115,\n\t105,\n\t111,\n\t110,\n\t62,\n\t10,\n\t60,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t101,\n\t120,\n\t112,\n\t108,\n\t97,\n\t105,\n\t110,\n\t101,\n\t100,\n\t100,\n\t111,\n\t101,\n\t115,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t119,\n\t105,\n\t100,\n\t101,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t102,\n\t97,\n\t99,\n\t101,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t110,\n\t101,\n\t119,\n\t115,\n\t112,\n\t97,\n\t112,\n\t101,\n\t114,\n\t60,\n\t47,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t62,\n\t10,\n\t109,\n\t111,\n\t117,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t115,\n\t108,\n\t105,\n\t107,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t115,\n\t115,\n\t101,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t102,\n\t105,\n\t110,\n\t97,\n\t110,\n\t99,\n\t105,\n\t97,\n\t108,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t47,\n\t97,\n\t98,\n\t97,\n\t110,\n\t100,\n\t111,\n\t110,\n\t101,\n\t100,\n\t69,\n\t100,\n\t117,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t97,\n\t114,\n\t115,\n\t101,\n\t73,\n\t110,\n\t116,\n\t40,\n\t115,\n\t116,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t117,\n\t110,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t116,\n\t111,\n\t60,\n\t47,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t10,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t78,\n\t111,\n\t116,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t101,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t112,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t100,\n\t116,\n\t119,\n\t111,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t83,\n\t105,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t119,\n\t114,\n\t97,\n\t112,\n\t112,\n\t101,\n\t114,\n\t34,\n\t62,\n\t97,\n\t108,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t101,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t101,\n\t100,\n\t66,\n\t97,\n\t116,\n\t116,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t112,\n\t101,\n\t114,\n\t99,\n\t101,\n\t105,\n\t118,\n\t101,\n\t100,\n\t116,\n\t114,\n\t121,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t110,\n\t101,\n\t99,\n\t101,\n\t115,\n\t115,\n\t97,\n\t114,\n\t121,\n\t112,\n\t111,\n\t114,\n\t116,\n\t114,\n\t97,\n\t121,\n\t101,\n\t100,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t69,\n\t108,\n\t105,\n\t122,\n\t97,\n\t98,\n\t101,\n\t116,\n\t104,\n\t60,\n\t47,\n\t105,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t62,\n\t100,\n\t105,\n\t115,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t121,\n\t105,\n\t110,\n\t115,\n\t117,\n\t114,\n\t97,\n\t110,\n\t99,\n\t101,\n\t115,\n\t46,\n\t108,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t59,\n\t108,\n\t101,\n\t103,\n\t101,\n\t110,\n\t100,\n\t97,\n\t114,\n\t121,\n\t71,\n\t101,\n\t111,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t121,\n\t99,\n\t97,\n\t110,\n\t100,\n\t105,\n\t100,\n\t97,\n\t116,\n\t101,\n\t99,\n\t111,\n\t114,\n\t112,\n\t111,\n\t114,\n\t97,\n\t116,\n\t101,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t115,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t101,\n\t115,\n\t46,\n\t105,\n\t110,\n\t104,\n\t101,\n\t114,\n\t105,\n\t116,\n\t101,\n\t100,\n\t60,\n\t47,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t62,\n\t67,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t116,\n\t121,\n\t114,\n\t101,\n\t108,\n\t105,\n\t103,\n\t105,\n\t111,\n\t117,\n\t115,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t67,\n\t111,\n\t109,\n\t109,\n\t105,\n\t116,\n\t116,\n\t101,\n\t101,\n\t98,\n\t117,\n\t105,\n\t108,\n\t100,\n\t105,\n\t110,\n\t103,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t110,\n\t111,\n\t32,\n\t108,\n\t111,\n\t110,\n\t103,\n\t101,\n\t114,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t99,\n\t97,\n\t110,\n\t110,\n\t111,\n\t116,\n\t32,\n\t98,\n\t101,\n\t102,\n\t114,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t99,\n\t121,\n\t116,\n\t121,\n\t112,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t105,\n\t110,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t59,\n\t114,\n\t101,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t112,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t116,\n\t101,\n\t99,\n\t104,\n\t110,\n\t105,\n\t113,\n\t117,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t105,\n\t116,\n\t32,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t101,\n\t120,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t99,\n\t101,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t108,\n\t105,\n\t110,\n\t101,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t116,\n\t101,\n\t108,\n\t101,\n\t112,\n\t104,\n\t111,\n\t110,\n\t101,\n\t105,\n\t116,\n\t101,\n\t109,\n\t115,\n\t99,\n\t111,\n\t112,\n\t101,\n\t112,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t99,\n\t101,\n\t115,\n\t97,\n\t100,\n\t118,\n\t97,\n\t110,\n\t116,\n\t97,\n\t103,\n\t101,\n\t41,\n\t59,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t70,\n\t111,\n\t114,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t105,\n\t110,\n\t103,\n\t100,\n\t101,\n\t109,\n\t111,\n\t99,\n\t114,\n\t97,\n\t99,\n\t121,\n\t98,\n\t111,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t115,\n\t105,\n\t118,\n\t101,\n\t115,\n\t117,\n\t102,\n\t102,\n\t101,\n\t114,\n\t105,\n\t110,\n\t103,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t100,\n\t99,\n\t111,\n\t109,\n\t112,\n\t117,\n\t116,\n\t101,\n\t114,\n\t115,\n\t32,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t115,\n\t97,\n\t105,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t105,\n\t116,\n\t32,\n\t109,\n\t97,\n\t121,\n\t32,\n\t98,\n\t101,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t60,\n\t47,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t99,\n\t104,\n\t101,\n\t100,\n\t117,\n\t108,\n\t101,\n\t100,\n\t100,\n\t111,\n\t119,\n\t110,\n\t108,\n\t111,\n\t97,\n\t100,\n\t115,\n\t60,\n\t47,\n\t108,\n\t97,\n\t98,\n\t101,\n\t108,\n\t62,\n\t10,\n\t115,\n\t117,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t58,\n\t32,\n\t48,\n\t115,\n\t112,\n\t105,\n\t114,\n\t105,\n\t116,\n\t117,\n\t97,\n\t108,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t10,\n\t109,\n\t105,\n\t99,\n\t114,\n\t111,\n\t115,\n\t111,\n\t102,\n\t116,\n\t103,\n\t114,\n\t97,\n\t100,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t100,\n\t105,\n\t115,\n\t99,\n\t117,\n\t115,\n\t115,\n\t101,\n\t100,\n\t104,\n\t101,\n\t32,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t101,\n\t120,\n\t101,\n\t99,\n\t117,\n\t116,\n\t105,\n\t118,\n\t101,\n\t106,\n\t113,\n\t117,\n\t101,\n\t114,\n\t121,\n\t46,\n\t106,\n\t115,\n\t104,\n\t111,\n\t117,\n\t115,\n\t101,\n\t104,\n\t111,\n\t108,\n\t100,\n\t99,\n\t111,\n\t110,\n\t102,\n\t105,\n\t114,\n\t109,\n\t101,\n\t100,\n\t112,\n\t117,\n\t114,\n\t99,\n\t104,\n\t97,\n\t115,\n\t101,\n\t100,\n\t108,\n\t105,\n\t116,\n\t101,\n\t114,\n\t97,\n\t108,\n\t108,\n\t121,\n\t100,\n\t101,\n\t115,\n\t116,\n\t114,\n\t111,\n\t121,\n\t101,\n\t100,\n\t117,\n\t112,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t118,\n\t97,\n\t114,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t109,\n\t97,\n\t105,\n\t110,\n\t105,\n\t110,\n\t103,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t110,\n\t111,\n\t116,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t105,\n\t101,\n\t115,\n\t74,\n\t97,\n\t112,\n\t97,\n\t110,\n\t101,\n\t115,\n\t101,\n\t32,\n\t97,\n\t109,\n\t111,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t100,\n\t97,\n\t108,\n\t103,\n\t111,\n\t114,\n\t105,\n\t116,\n\t104,\n\t109,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t115,\n\t114,\n\t101,\n\t98,\n\t101,\n\t108,\n\t108,\n\t105,\n\t111,\n\t110,\n\t117,\n\t110,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t101,\n\t100,\n\t101,\n\t110,\n\t99,\n\t111,\n\t117,\n\t114,\n\t97,\n\t103,\n\t101,\n\t114,\n\t101,\n\t115,\n\t105,\n\t122,\n\t97,\n\t98,\n\t108,\n\t101,\n\t105,\n\t110,\n\t118,\n\t111,\n\t108,\n\t118,\n\t105,\n\t110,\n\t103,\n\t115,\n\t101,\n\t110,\n\t115,\n\t105,\n\t116,\n\t105,\n\t118,\n\t101,\n\t117,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t97,\n\t108,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t40,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t102,\n\t101,\n\t97,\n\t116,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t99,\n\t111,\n\t110,\n\t100,\n\t117,\n\t99,\n\t116,\n\t101,\n\t100,\n\t41,\n\t44,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t101,\n\t100,\n\t45,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t34,\n\t62,\n\t70,\n\t101,\n\t98,\n\t114,\n\t117,\n\t97,\n\t114,\n\t121,\n\t32,\n\t110,\n\t117,\n\t109,\n\t101,\n\t114,\n\t111,\n\t117,\n\t115,\n\t32,\n\t111,\n\t118,\n\t101,\n\t114,\n\t102,\n\t108,\n\t111,\n\t119,\n\t58,\n\t99,\n\t111,\n\t109,\n\t112,\n\t111,\n\t110,\n\t101,\n\t110,\n\t116,\n\t102,\n\t114,\n\t97,\n\t103,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t101,\n\t120,\n\t99,\n\t101,\n\t108,\n\t108,\n\t101,\n\t110,\n\t116,\n\t99,\n\t111,\n\t108,\n\t115,\n\t112,\n\t97,\n\t110,\n\t61,\n\t34,\n\t116,\n\t101,\n\t99,\n\t104,\n\t110,\n\t105,\n\t99,\n\t97,\n\t108,\n\t110,\n\t101,\n\t97,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t65,\n\t100,\n\t118,\n\t97,\n\t110,\n\t99,\n\t101,\n\t100,\n\t32,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t101,\n\t120,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t101,\n\t100,\n\t72,\n\t111,\n\t110,\n\t103,\n\t32,\n\t75,\n\t111,\n\t110,\n\t103,\n\t32,\n\t70,\n\t97,\n\t99,\n\t101,\n\t98,\n\t111,\n\t111,\n\t107,\n\t109,\n\t117,\n\t108,\n\t116,\n\t105,\n\t112,\n\t108,\n\t101,\n\t32,\n\t109,\n\t101,\n\t99,\n\t104,\n\t97,\n\t110,\n\t105,\n\t115,\n\t109,\n\t101,\n\t108,\n\t101,\n\t118,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t111,\n\t102,\n\t102,\n\t101,\n\t110,\n\t115,\n\t105,\n\t118,\n\t101,\n\t60,\n\t47,\n\t102,\n\t111,\n\t114,\n\t109,\n\t62,\n\t10,\n\t9,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t111,\n\t114,\n\t101,\n\t100,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t111,\n\t114,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t116,\n\t104,\n\t111,\n\t115,\n\t101,\n\t32,\n\t119,\n\t104,\n\t111,\n\t109,\n\t111,\n\t118,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t115,\n\t101,\n\t115,\n\t100,\n\t105,\n\t102,\n\t102,\n\t105,\n\t99,\n\t117,\n\t108,\n\t116,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t116,\n\t101,\n\t100,\n\t114,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t101,\n\t110,\n\t100,\n\t99,\n\t111,\n\t110,\n\t118,\n\t105,\n\t110,\n\t99,\n\t101,\n\t100,\n\t112,\n\t114,\n\t111,\n\t109,\n\t111,\n\t116,\n\t105,\n\t110,\n\t103,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t46,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t40,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t99,\n\t97,\n\t108,\n\t99,\n\t111,\n\t97,\n\t108,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t104,\n\t105,\n\t115,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t100,\n\t101,\n\t99,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t97,\n\t115,\n\t115,\n\t105,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t105,\n\t110,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t101,\n\t118,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t45,\n\t119,\n\t114,\n\t97,\n\t112,\n\t112,\n\t101,\n\t114,\n\t34,\n\t101,\n\t110,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t111,\n\t97,\n\t108,\n\t111,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t101,\n\t108,\n\t105,\n\t118,\n\t101,\n\t114,\n\t101,\n\t100,\n\t45,\n\t45,\n\t62,\n\t13,\n\t10,\n\t60,\n\t33,\n\t45,\n\t45,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t32,\n\t112,\n\t114,\n\t111,\n\t116,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t78,\n\t111,\n\t118,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t60,\n\t47,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t62,\n\t60,\n\t102,\n\t117,\n\t114,\n\t110,\n\t105,\n\t116,\n\t117,\n\t114,\n\t101,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t101,\n\t116,\n\t32,\n\t32,\n\t111,\n\t110,\n\t98,\n\t108,\n\t117,\n\t114,\n\t61,\n\t34,\n\t115,\n\t117,\n\t115,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t114,\n\t101,\n\t99,\n\t105,\n\t112,\n\t105,\n\t101,\n\t110,\n\t116,\n\t98,\n\t97,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t32,\n\t77,\n\t111,\n\t114,\n\t101,\n\t111,\n\t118,\n\t101,\n\t114,\n\t44,\n\t97,\n\t98,\n\t111,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t109,\n\t97,\n\t100,\n\t101,\n\t101,\n\t109,\n\t111,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t101,\n\t109,\n\t101,\n\t114,\n\t103,\n\t101,\n\t110,\n\t99,\n\t121,\n\t110,\n\t97,\n\t114,\n\t114,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t97,\n\t100,\n\t118,\n\t111,\n\t99,\n\t97,\n\t116,\n\t101,\n\t115,\n\t112,\n\t120,\n\t59,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t99,\n\t111,\n\t109,\n\t109,\n\t105,\n\t116,\n\t116,\n\t101,\n\t100,\n\t100,\n\t105,\n\t114,\n\t61,\n\t34,\n\t108,\n\t116,\n\t114,\n\t34,\n\t101,\n\t109,\n\t112,\n\t108,\n\t111,\n\t121,\n\t101,\n\t101,\n\t115,\n\t114,\n\t101,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t46,\n\t32,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t111,\n\t114,\n\t99,\n\t117,\n\t115,\n\t116,\n\t111,\n\t109,\n\t101,\n\t114,\n\t115,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t101,\n\t100,\n\t83,\n\t101,\n\t112,\n\t116,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t97,\n\t100,\n\t100,\n\t67,\n\t108,\n\t97,\n\t115,\n\t115,\n\t40,\n\t70,\n\t97,\n\t99,\n\t101,\n\t98,\n\t111,\n\t111,\n\t107,\n\t32,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t101,\n\t100,\n\t97,\n\t110,\n\t100,\n\t32,\n\t108,\n\t97,\n\t116,\n\t101,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t101,\n\t108,\n\t97,\n\t98,\n\t111,\n\t114,\n\t97,\n\t116,\n\t101,\n\t83,\n\t111,\n\t109,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t73,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t101,\n\t99,\n\t101,\n\t114,\n\t116,\n\t97,\n\t105,\n\t110,\n\t108,\n\t121,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t101,\n\t114,\n\t115,\n\t74,\n\t101,\n\t114,\n\t117,\n\t115,\n\t97,\n\t108,\n\t101,\n\t109,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t99,\n\t111,\n\t109,\n\t112,\n\t117,\n\t116,\n\t105,\n\t110,\n\t103,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t110,\n\t99,\n\t101,\n\t115,\n\t103,\n\t117,\n\t97,\n\t114,\n\t97,\n\t110,\n\t116,\n\t101,\n\t101,\n\t97,\n\t114,\n\t98,\n\t105,\n\t116,\n\t114,\n\t97,\n\t114,\n\t121,\n\t114,\n\t101,\n\t99,\n\t111,\n\t103,\n\t110,\n\t105,\n\t122,\n\t101,\n\t119,\n\t97,\n\t110,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t112,\n\t120,\n\t59,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t116,\n\t104,\n\t101,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t98,\n\t101,\n\t104,\n\t97,\n\t118,\n\t105,\n\t111,\n\t117,\n\t114,\n\t87,\n\t104,\n\t105,\n\t108,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t115,\n\t116,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t100,\n\t98,\n\t101,\n\t103,\n\t97,\n\t110,\n\t32,\n\t116,\n\t111,\n\t32,\n\t105,\n\t116,\n\t32,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t109,\n\t97,\n\t103,\n\t110,\n\t105,\n\t116,\n\t117,\n\t100,\n\t101,\n\t109,\n\t117,\n\t115,\n\t116,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t68,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t121,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t99,\n\t114,\n\t101,\n\t116,\n\t97,\n\t114,\n\t121,\n\t110,\n\t97,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t108,\n\t121,\n\t111,\n\t99,\n\t99,\n\t117,\n\t114,\n\t114,\n\t105,\n\t110,\n\t103,\n\t118,\n\t97,\n\t114,\n\t105,\n\t97,\n\t98,\n\t108,\n\t101,\n\t115,\n\t103,\n\t105,\n\t118,\n\t101,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t108,\n\t97,\n\t116,\n\t102,\n\t111,\n\t114,\n\t109,\n\t46,\n\t60,\n\t47,\n\t108,\n\t97,\n\t98,\n\t101,\n\t108,\n\t62,\n\t60,\n\t102,\n\t97,\n\t105,\n\t108,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t99,\n\t111,\n\t109,\n\t112,\n\t111,\n\t117,\n\t110,\n\t100,\n\t115,\n\t107,\n\t105,\n\t110,\n\t100,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t115,\n\t111,\n\t99,\n\t105,\n\t101,\n\t116,\n\t105,\n\t101,\n\t115,\n\t97,\n\t108,\n\t111,\n\t110,\n\t103,\n\t115,\n\t105,\n\t100,\n\t101,\n\t32,\n\t45,\n\t45,\n\t38,\n\t103,\n\t116,\n\t59,\n\t10,\n\t10,\n\t115,\n\t111,\n\t117,\n\t116,\n\t104,\n\t119,\n\t101,\n\t115,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t114,\n\t97,\n\t100,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t109,\n\t97,\n\t121,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t117,\n\t110,\n\t101,\n\t115,\n\t99,\n\t97,\n\t112,\n\t101,\n\t40,\n\t115,\n\t112,\n\t111,\n\t107,\n\t101,\n\t110,\n\t32,\n\t105,\n\t110,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t109,\n\t101,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t109,\n\t101,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t121,\n\t98,\n\t117,\n\t114,\n\t105,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t97,\n\t32,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t119,\n\t101,\n\t114,\n\t101,\n\t60,\n\t47,\n\t102,\n\t111,\n\t110,\n\t116,\n\t62,\n\t60,\n\t47,\n\t78,\n\t111,\n\t114,\n\t119,\n\t101,\n\t103,\n\t105,\n\t97,\n\t110,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t102,\n\t105,\n\t101,\n\t100,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t105,\n\t110,\n\t103,\n\t112,\n\t97,\n\t115,\n\t115,\n\t101,\n\t110,\n\t103,\n\t101,\n\t114,\n\t40,\n\t110,\n\t101,\n\t119,\n\t32,\n\t68,\n\t97,\n\t116,\n\t101,\n\t116,\n\t101,\n\t109,\n\t112,\n\t111,\n\t114,\n\t97,\n\t114,\n\t121,\n\t102,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t65,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t113,\n\t117,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t100,\n\t111,\n\t119,\n\t110,\n\t108,\n\t111,\n\t97,\n\t100,\n\t46,\n\t114,\n\t101,\n\t103,\n\t117,\n\t108,\n\t97,\n\t114,\n\t108,\n\t121,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t98,\n\t111,\n\t118,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t108,\n\t105,\n\t110,\n\t107,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t112,\n\t104,\n\t101,\n\t110,\n\t111,\n\t109,\n\t101,\n\t110,\n\t97,\n\t112,\n\t101,\n\t114,\n\t105,\n\t111,\n\t100,\n\t32,\n\t111,\n\t102,\n\t116,\n\t111,\n\t111,\n\t108,\n\t116,\n\t105,\n\t112,\n\t34,\n\t62,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t97,\n\t117,\n\t116,\n\t111,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t97,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t32,\n\t111,\n\t102,\n\t65,\n\t109,\n\t111,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t101,\n\t115,\n\t116,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t115,\n\t65,\n\t105,\n\t114,\n\t32,\n\t70,\n\t111,\n\t114,\n\t99,\n\t101,\n\t115,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t32,\n\t111,\n\t102,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t105,\n\t109,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t116,\n\t101,\n\t109,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t116,\n\t112,\n\t97,\n\t105,\n\t110,\n\t116,\n\t105,\n\t110,\n\t103,\n\t115,\n\t99,\n\t111,\n\t110,\n\t113,\n\t117,\n\t101,\n\t114,\n\t101,\n\t100,\n\t97,\n\t114,\n\t101,\n\t32,\n\t115,\n\t116,\n\t105,\n\t108,\n\t108,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t100,\n\t117,\n\t114,\n\t101,\n\t103,\n\t114,\n\t111,\n\t119,\n\t116,\n\t104,\n\t32,\n\t111,\n\t102,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t97,\n\t110,\n\t32,\n\t100,\n\t105,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t109,\n\t111,\n\t108,\n\t101,\n\t99,\n\t117,\n\t108,\n\t101,\n\t115,\n\t102,\n\t114,\n\t97,\n\t110,\n\t99,\n\t104,\n\t105,\n\t115,\n\t101,\n\t105,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t116,\n\t116,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t100,\n\t99,\n\t104,\n\t105,\n\t108,\n\t100,\n\t104,\n\t111,\n\t111,\n\t100,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t100,\n\t101,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t115,\n\t105,\n\t110,\n\t103,\n\t97,\n\t112,\n\t111,\n\t114,\n\t101,\n\t100,\n\t101,\n\t103,\n\t114,\n\t101,\n\t101,\n\t32,\n\t111,\n\t102,\n\t102,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t110,\n\t102,\n\t108,\n\t105,\n\t99,\n\t116,\n\t115,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t112,\n\t62,\n\t10,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t110,\n\t111,\n\t116,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t114,\n\t101,\n\t99,\n\t101,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t69,\n\t120,\n\t101,\n\t99,\n\t117,\n\t116,\n\t105,\n\t118,\n\t101,\n\t101,\n\t118,\n\t101,\n\t110,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t97,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t32,\n\t116,\n\t111,\n\t99,\n\t111,\n\t109,\n\t109,\n\t97,\n\t110,\n\t100,\n\t101,\n\t114,\n\t80,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t109,\n\t117,\n\t115,\n\t105,\n\t99,\n\t105,\n\t97,\n\t110,\n\t115,\n\t100,\n\t101,\n\t108,\n\t105,\n\t99,\n\t105,\n\t111,\n\t117,\n\t115,\n\t112,\n\t114,\n\t105,\n\t115,\n\t111,\n\t110,\n\t101,\n\t114,\n\t115,\n\t97,\n\t100,\n\t118,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t85,\n\t84,\n\t70,\n\t45,\n\t56,\n\t34,\n\t32,\n\t47,\n\t62,\n\t60,\n\t33,\n\t91,\n\t67,\n\t68,\n\t65,\n\t84,\n\t65,\n\t91,\n\t34,\n\t62,\n\t67,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t83,\n\t111,\n\t117,\n\t116,\n\t104,\n\t101,\n\t114,\n\t110,\n\t32,\n\t98,\n\t103,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t61,\n\t34,\n\t115,\n\t101,\n\t114,\n\t105,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t46,\n\t32,\n\t73,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t105,\n\t110,\n\t32,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t112,\n\t101,\n\t114,\n\t109,\n\t105,\n\t116,\n\t116,\n\t101,\n\t100,\n\t118,\n\t97,\n\t108,\n\t105,\n\t100,\n\t97,\n\t116,\n\t101,\n\t46,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t105,\n\t110,\n\t103,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t115,\n\t115,\n\t101,\n\t114,\n\t105,\n\t111,\n\t117,\n\t115,\n\t108,\n\t121,\n\t45,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t97,\n\t116,\n\t101,\n\t100,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t108,\n\t111,\n\t110,\n\t103,\n\t45,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t102,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t117,\n\t99,\n\t104,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t103,\n\t101,\n\t116,\n\t67,\n\t111,\n\t111,\n\t107,\n\t105,\n\t101,\n\t109,\n\t97,\n\t114,\n\t107,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t60,\n\t47,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t62,\n\t105,\n\t109,\n\t112,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t98,\n\t117,\n\t116,\n\t32,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t101,\n\t115,\n\t100,\n\t111,\n\t119,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t105,\n\t110,\n\t103,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t116,\n\t45,\n\t45,\n\t62,\n\t10,\n\t60,\n\t33,\n\t45,\n\t45,\n\t32,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t118,\n\t105,\n\t101,\n\t119,\n\t87,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t112,\n\t105,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t110,\n\t115,\n\t117,\n\t115,\n\t119,\n\t97,\n\t115,\n\t32,\n\t98,\n\t117,\n\t105,\n\t108,\n\t116,\n\t86,\n\t101,\n\t110,\n\t101,\n\t122,\n\t117,\n\t101,\n\t108,\n\t97,\n\t40,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t114,\n\t108,\n\t121,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t110,\n\t101,\n\t108,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t101,\n\t103,\n\t105,\n\t99,\n\t102,\n\t97,\n\t118,\n\t111,\n\t117,\n\t114,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t118,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t87,\n\t105,\n\t107,\n\t105,\n\t112,\n\t101,\n\t100,\n\t105,\n\t97,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t101,\n\t110,\n\t116,\n\t118,\n\t105,\n\t114,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t119,\n\t97,\n\t115,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t105,\n\t112,\n\t108,\n\t101,\n\t67,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t32,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t115,\n\t104,\n\t111,\n\t119,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t112,\n\t114,\n\t105,\n\t109,\n\t105,\n\t116,\n\t105,\n\t118,\n\t101,\n\t97,\n\t119,\n\t97,\n\t121,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t109,\n\t111,\n\t108,\n\t101,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t112,\n\t114,\n\t101,\n\t99,\n\t105,\n\t115,\n\t101,\n\t108,\n\t121,\n\t100,\n\t105,\n\t115,\n\t115,\n\t111,\n\t108,\n\t118,\n\t101,\n\t100,\n\t85,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t62,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t47,\n\t73,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t84,\n\t104,\n\t105,\n\t115,\n\t32,\n\t105,\n\t115,\n\t32,\n\t119,\n\t105,\n\t108,\n\t108,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t111,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t115,\n\t109,\n\t115,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t70,\n\t114,\n\t105,\n\t101,\n\t100,\n\t114,\n\t105,\n\t99,\n\t104,\n\t119,\n\t97,\n\t115,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t102,\n\t97,\n\t99,\n\t116,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t112,\n\t114,\n\t101,\n\t99,\n\t101,\n\t100,\n\t105,\n\t110,\n\t103,\n\t84,\n\t101,\n\t99,\n\t104,\n\t110,\n\t105,\n\t99,\n\t97,\n\t108,\n\t112,\n\t104,\n\t121,\n\t115,\n\t105,\n\t99,\n\t105,\n\t115,\n\t116,\n\t111,\n\t99,\n\t99,\n\t117,\n\t114,\n\t115,\n\t32,\n\t105,\n\t110,\n\t110,\n\t97,\n\t118,\n\t105,\n\t103,\n\t97,\n\t116,\n\t111,\n\t114,\n\t115,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t34,\n\t62,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t115,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t32,\n\t116,\n\t111,\n\t98,\n\t101,\n\t108,\n\t111,\n\t119,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t117,\n\t114,\n\t118,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t125,\n\t60,\n\t47,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t62,\n\t104,\n\t105,\n\t115,\n\t32,\n\t100,\n\t101,\n\t97,\n\t116,\n\t104,\n\t97,\n\t115,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t101,\n\t120,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t117,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t119,\n\t97,\n\t115,\n\t32,\n\t103,\n\t105,\n\t118,\n\t101,\n\t110,\n\t97,\n\t32,\n\t108,\n\t105,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t108,\n\t101,\n\t118,\n\t101,\n\t108,\n\t115,\n\t32,\n\t111,\n\t102,\n\t110,\n\t111,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t79,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t100,\n\t105,\n\t115,\n\t109,\n\t105,\n\t115,\n\t115,\n\t101,\n\t100,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t105,\n\t115,\n\t116,\n\t114,\n\t101,\n\t115,\n\t101,\n\t109,\n\t98,\n\t108,\n\t101,\n\t115,\n\t100,\n\t117,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t101,\n\t120,\n\t112,\n\t108,\n\t111,\n\t115,\n\t105,\n\t118,\n\t101,\n\t114,\n\t101,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t101,\n\t100,\n\t97,\n\t108,\n\t108,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t103,\n\t97,\n\t108,\n\t108,\n\t101,\n\t114,\n\t105,\n\t101,\n\t115,\n\t123,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t58,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t103,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t97,\n\t100,\n\t100,\n\t114,\n\t101,\n\t115,\n\t115,\n\t101,\n\t115,\n\t97,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t116,\n\t101,\n\t105,\n\t109,\n\t103,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t105,\n\t110,\n\t32,\n\t109,\n\t111,\n\t100,\n\t101,\n\t114,\n\t110,\n\t115,\n\t104,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t98,\n\t101,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t105,\n\t110,\n\t103,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t116,\n\t97,\n\t109,\n\t112,\n\t110,\n\t101,\n\t101,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t116,\n\t104,\n\t101,\n\t32,\n\t71,\n\t114,\n\t101,\n\t97,\n\t116,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t115,\n\t101,\n\t101,\n\t109,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t118,\n\t105,\n\t101,\n\t119,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t105,\n\t109,\n\t112,\n\t97,\n\t99,\n\t116,\n\t32,\n\t111,\n\t110,\n\t105,\n\t100,\n\t101,\n\t97,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t87,\n\t111,\n\t114,\n\t108,\n\t100,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t32,\n\t111,\n\t102,\n\t101,\n\t120,\n\t112,\n\t97,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t84,\n\t104,\n\t101,\n\t115,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t34,\n\t62,\n\t99,\n\t97,\n\t114,\n\t101,\n\t102,\n\t117,\n\t108,\n\t108,\n\t121,\n\t109,\n\t97,\n\t105,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t115,\n\t99,\n\t104,\n\t97,\n\t114,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t67,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t99,\n\t97,\n\t108,\n\t97,\n\t100,\n\t100,\n\t114,\n\t101,\n\t115,\n\t115,\n\t101,\n\t100,\n\t112,\n\t114,\n\t101,\n\t100,\n\t105,\n\t99,\n\t116,\n\t101,\n\t100,\n\t111,\n\t119,\n\t110,\n\t101,\n\t114,\n\t115,\n\t104,\n\t105,\n\t112,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t34,\n\t62,\n\t13,\n\t10,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t108,\n\t101,\n\t97,\n\t118,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t34,\n\t62,\n\t97,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t32,\n\t32,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t13,\n\t10,\n\t112,\n\t114,\n\t111,\n\t98,\n\t97,\n\t98,\n\t108,\n\t121,\n\t32,\n\t80,\n\t114,\n\t111,\n\t102,\n\t101,\n\t115,\n\t115,\n\t111,\n\t114,\n\t45,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t34,\n\t32,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t100,\n\t101,\n\t100,\n\t115,\n\t97,\n\t121,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t104,\n\t97,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t72,\n\t117,\n\t110,\n\t103,\n\t97,\n\t114,\n\t105,\n\t97,\n\t110,\n\t115,\n\t116,\n\t97,\n\t116,\n\t117,\n\t115,\n\t32,\n\t111,\n\t102,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t115,\n\t32,\n\t97,\n\t115,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t97,\n\t108,\n\t101,\n\t120,\n\t101,\n\t99,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t103,\n\t103,\n\t114,\n\t101,\n\t103,\n\t97,\n\t116,\n\t101,\n\t102,\n\t111,\n\t114,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t105,\n\t110,\n\t102,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t103,\n\t114,\n\t101,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t104,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t34,\n\t62,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t97,\n\t108,\n\t115,\n\t121,\n\t109,\n\t98,\n\t111,\n\t108,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t116,\n\t111,\n\t97,\n\t114,\n\t99,\n\t104,\n\t105,\n\t116,\n\t101,\n\t99,\n\t116,\n\t67,\n\t104,\n\t114,\n\t105,\n\t115,\n\t116,\n\t105,\n\t97,\n\t110,\n\t112,\n\t114,\n\t101,\n\t118,\n\t105,\n\t111,\n\t117,\n\t115,\n\t32,\n\t108,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t101,\n\t97,\n\t115,\n\t105,\n\t101,\n\t114,\n\t32,\n\t116,\n\t111,\n\t112,\n\t114,\n\t111,\n\t102,\n\t101,\n\t115,\n\t115,\n\t111,\n\t114,\n\t10,\n\t38,\n\t108,\n\t116,\n\t59,\n\t33,\n\t45,\n\t45,\n\t32,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t32,\n\t111,\n\t102,\n\t97,\n\t110,\n\t97,\n\t108,\n\t121,\n\t116,\n\t105,\n\t99,\n\t115,\n\t119,\n\t97,\n\t115,\n\t32,\n\t116,\n\t97,\n\t107,\n\t101,\n\t110,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t111,\n\t111,\n\t107,\n\t32,\n\t111,\n\t118,\n\t101,\n\t114,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t102,\n\t32,\n\t105,\n\t110,\n\t65,\n\t102,\n\t114,\n\t105,\n\t107,\n\t97,\n\t97,\n\t110,\n\t115,\n\t97,\n\t115,\n\t32,\n\t102,\n\t97,\n\t114,\n\t32,\n\t97,\n\t115,\n\t112,\n\t114,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t119,\n\t111,\n\t114,\n\t107,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t97,\n\t32,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t60,\n\t102,\n\t105,\n\t101,\n\t108,\n\t100,\n\t115,\n\t101,\n\t116,\n\t67,\n\t104,\n\t114,\n\t105,\n\t115,\n\t116,\n\t109,\n\t97,\n\t115,\n\t82,\n\t101,\n\t116,\n\t114,\n\t105,\n\t101,\n\t118,\n\t101,\n\t100,\n\t10,\n\t10,\n\t73,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t98,\n\t97,\n\t99,\n\t107,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t110,\n\t111,\n\t114,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t116,\n\t109,\n\t97,\n\t103,\n\t97,\n\t122,\n\t105,\n\t110,\n\t101,\n\t115,\n\t62,\n\t60,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t62,\n\t99,\n\t111,\n\t109,\n\t109,\n\t105,\n\t116,\n\t116,\n\t101,\n\t101,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t103,\n\t114,\n\t111,\n\t117,\n\t112,\n\t115,\n\t32,\n\t111,\n\t102,\n\t115,\n\t116,\n\t111,\n\t114,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t97,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t105,\n\t116,\n\t115,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t116,\n\t104,\n\t101,\n\t105,\n\t114,\n\t32,\n\t111,\n\t119,\n\t110,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t97,\n\t110,\n\t32,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t67,\n\t97,\n\t114,\n\t105,\n\t98,\n\t98,\n\t101,\n\t97,\n\t110,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t105,\n\t115,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t115,\n\t119,\n\t105,\n\t115,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t110,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t59,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t32,\n\t105,\n\t110,\n\t104,\n\t97,\n\t98,\n\t105,\n\t116,\n\t101,\n\t100,\n\t83,\n\t111,\n\t99,\n\t105,\n\t97,\n\t108,\n\t105,\n\t115,\n\t116,\n\t74,\n\t97,\n\t110,\n\t117,\n\t97,\n\t114,\n\t121,\n\t32,\n\t49,\n\t60,\n\t47,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t62,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t108,\n\t121,\n\t99,\n\t104,\n\t111,\n\t105,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t97,\n\t109,\n\t101,\n\t32,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t102,\n\t105,\n\t99,\n\t32,\n\t98,\n\t117,\n\t115,\n\t105,\n\t110,\n\t101,\n\t115,\n\t115,\n\t32,\n\t84,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t46,\n\t108,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t59,\n\t32,\n\t100,\n\t101,\n\t115,\n\t105,\n\t114,\n\t101,\n\t32,\n\t116,\n\t111,\n\t100,\n\t101,\n\t97,\n\t108,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t115,\n\t105,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t117,\n\t115,\n\t101,\n\t114,\n\t65,\n\t103,\n\t101,\n\t110,\n\t116,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t105,\n\t118,\n\t101,\n\t100,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t46,\n\t112,\n\t104,\n\t112,\n\t97,\n\t115,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t101,\n\t110,\n\t103,\n\t97,\n\t103,\n\t101,\n\t32,\n\t105,\n\t110,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t44,\n\t102,\n\t101,\n\t119,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t10,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t60,\n\t101,\n\t100,\n\t105,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t114,\n\t101,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t99,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t32,\n\t105,\n\t110,\n\t97,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t107,\n\t101,\n\t121,\n\t99,\n\t111,\n\t110,\n\t100,\n\t101,\n\t109,\n\t110,\n\t101,\n\t100,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t115,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t101,\n\t115,\n\t44,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t121,\n\t32,\n\t111,\n\t102,\n\t83,\n\t99,\n\t104,\n\t111,\n\t111,\n\t108,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t116,\n\t101,\n\t100,\n\t110,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t115,\n\t60,\n\t47,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t62,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t105,\n\t115,\n\t32,\n\t97,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t97,\n\t100,\n\t118,\n\t111,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t84,\n\t104,\n\t101,\n\t121,\n\t32,\n\t119,\n\t101,\n\t114,\n\t101,\n\t97,\n\t110,\n\t121,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t117,\n\t99,\n\t104,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t114,\n\t101,\n\t102,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t119,\n\t97,\n\t115,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t100,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t108,\n\t32,\n\t97,\n\t32,\n\t116,\n\t121,\n\t112,\n\t105,\n\t99,\n\t97,\n\t108,\n\t119,\n\t104,\n\t101,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t101,\n\t110,\n\t103,\n\t105,\n\t110,\n\t101,\n\t101,\n\t114,\n\t115,\n\t99,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t115,\n\t119,\n\t101,\n\t100,\n\t110,\n\t101,\n\t115,\n\t100,\n\t97,\n\t121,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t104,\n\t105,\n\t114,\n\t100,\n\t32,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t115,\n\t74,\n\t97,\n\t110,\n\t117,\n\t97,\n\t114,\n\t121,\n\t32,\n\t50,\n\t119,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t97,\n\t32,\n\t99,\n\t101,\n\t114,\n\t116,\n\t97,\n\t105,\n\t110,\n\t114,\n\t101,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t115,\n\t111,\n\t114,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t104,\n\t105,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t108,\n\t97,\n\t115,\n\t116,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t100,\n\t34,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t32,\n\t111,\n\t110,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t34,\n\t62,\n\t10,\n\t112,\n\t105,\n\t101,\n\t99,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t109,\n\t112,\n\t101,\n\t116,\n\t105,\n\t110,\n\t103,\n\t82,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t116,\n\t101,\n\t110,\n\t110,\n\t101,\n\t115,\n\t115,\n\t101,\n\t101,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t104,\n\t97,\n\t115,\n\t32,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t61,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t32,\n\t60,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t62,\n\t103,\n\t105,\n\t118,\n\t101,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t105,\n\t97,\n\t110,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t34,\n\t62,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t58,\n\t48,\n\t118,\n\t105,\n\t101,\n\t119,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t116,\n\t111,\n\t103,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t44,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t115,\n\t117,\n\t98,\n\t115,\n\t101,\n\t116,\n\t32,\n\t111,\n\t102,\n\t97,\n\t116,\n\t116,\n\t97,\n\t99,\n\t107,\n\t32,\n\t111,\n\t110,\n\t99,\n\t104,\n\t105,\n\t108,\n\t100,\n\t114,\n\t101,\n\t110,\n\t44,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t97,\n\t108,\n\t108,\n\t101,\n\t103,\n\t101,\n\t100,\n\t108,\n\t121,\n\t67,\n\t108,\n\t101,\n\t118,\n\t101,\n\t108,\n\t97,\n\t110,\n\t100,\n\t119,\n\t97,\n\t115,\n\t32,\n\t108,\n\t97,\n\t116,\n\t101,\n\t114,\n\t97,\n\t110,\n\t100,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t97,\n\t114,\n\t101,\n\t32,\n\t103,\n\t105,\n\t118,\n\t101,\n\t110,\n\t119,\n\t97,\n\t115,\n\t32,\n\t115,\n\t116,\n\t105,\n\t108,\n\t108,\n\t115,\n\t99,\n\t114,\n\t111,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t32,\n\t111,\n\t102,\n\t109,\n\t97,\n\t107,\n\t101,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t117,\n\t99,\n\t104,\n\t32,\n\t108,\n\t101,\n\t115,\n\t115,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t115,\n\t46,\n\t10,\n\t10,\n\t65,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t44,\n\t32,\n\t98,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t77,\n\t117,\n\t115,\n\t101,\n\t117,\n\t109,\n\t32,\n\t111,\n\t102,\n\t108,\n\t111,\n\t117,\n\t105,\n\t115,\n\t105,\n\t97,\n\t110,\n\t97,\n\t40,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t105,\n\t110,\n\t110,\n\t101,\n\t115,\n\t111,\n\t116,\n\t97,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t115,\n\t97,\n\t32,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t115,\n\t68,\n\t111,\n\t109,\n\t105,\n\t110,\n\t105,\n\t99,\n\t97,\n\t110,\n\t118,\n\t111,\n\t108,\n\t117,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t100,\n\t101,\n\t102,\n\t101,\n\t110,\n\t115,\n\t105,\n\t118,\n\t101,\n\t48,\n\t48,\n\t112,\n\t120,\n\t124,\n\t114,\n\t105,\n\t103,\n\t104,\n\t109,\n\t97,\n\t100,\n\t101,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t109,\n\t111,\n\t117,\n\t115,\n\t101,\n\t111,\n\t118,\n\t101,\n\t114,\n\t34,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t40,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t105,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t101,\n\t115,\n\t70,\n\t114,\n\t97,\n\t110,\n\t99,\n\t105,\n\t115,\n\t99,\n\t111,\n\t98,\n\t117,\n\t105,\n\t108,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t111,\n\t117,\n\t116,\n\t32,\n\t97,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t119,\n\t104,\n\t111,\n\t32,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t97,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t111,\n\t102,\n\t97,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t98,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t32,\n\t105,\n\t116,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t32,\n\t32,\n\t83,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t101,\n\t115,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t109,\n\t101,\n\t97,\n\t115,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t97,\n\t110,\n\t100,\n\t32,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t112,\n\t97,\n\t112,\n\t101,\n\t114,\n\t98,\n\t97,\n\t99,\n\t107,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t13,\n\t10,\n\t60,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t61,\n\t32,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t46,\n\t100,\n\t101,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t101,\n\t101,\n\t114,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t32,\n\t112,\n\t108,\n\t97,\n\t121,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t110,\n\t100,\n\t32,\n\t101,\n\t97,\n\t114,\n\t108,\n\t121,\n\t60,\n\t47,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t62,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t104,\n\t114,\n\t101,\n\t101,\n\t112,\n\t111,\n\t119,\n\t101,\n\t114,\n\t32,\n\t97,\n\t110,\n\t100,\n\t111,\n\t102,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t105,\n\t110,\n\t110,\n\t101,\n\t114,\n\t72,\n\t84,\n\t77,\n\t76,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t121,\n\t58,\n\t105,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t59,\n\t67,\n\t104,\n\t117,\n\t114,\n\t99,\n\t104,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t118,\n\t101,\n\t114,\n\t121,\n\t32,\n\t104,\n\t105,\n\t103,\n\t104,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t45,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t47,\n\t99,\n\t103,\n\t105,\n\t45,\n\t98,\n\t105,\n\t110,\n\t47,\n\t116,\n\t111,\n\t32,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t97,\n\t102,\n\t114,\n\t105,\n\t107,\n\t97,\n\t97,\n\t110,\n\t115,\n\t101,\n\t115,\n\t112,\n\t101,\n\t114,\n\t97,\n\t110,\n\t116,\n\t111,\n\t102,\n\t114,\n\t97,\n\t110,\n\t195,\n\t167,\n\t97,\n\t105,\n\t115,\n\t108,\n\t97,\n\t116,\n\t118,\n\t105,\n\t101,\n\t197,\n\t161,\n\t117,\n\t108,\n\t105,\n\t101,\n\t116,\n\t117,\n\t118,\n\t105,\n\t197,\n\t179,\n\t196,\n\t140,\n\t101,\n\t197,\n\t161,\n\t116,\n\t105,\n\t110,\n\t97,\n\t196,\n\t141,\n\t101,\n\t197,\n\t161,\n\t116,\n\t105,\n\t110,\n\t97,\n\t224,\n\t185,\n\t132,\n\t224,\n\t184,\n\t151,\n\t224,\n\t184,\n\t162,\n\t230,\n\t151,\n\t165,\n\t230,\n\t156,\n\t172,\n\t232,\n\t170,\n\t158,\n\t231,\n\t174,\n\t128,\n\t228,\n\t189,\n\t147,\n\t229,\n\t173,\n\t151,\n\t231,\n\t185,\n\t129,\n\t233,\n\t171,\n\t148,\n\t229,\n\t173,\n\t151,\n\t237,\n\t149,\n\t156,\n\t234,\n\t181,\n\t173,\n\t236,\n\t150,\n\t180,\n\t228,\n\t184,\n\t186,\n\t228,\n\t187,\n\t128,\n\t228,\n\t185,\n\t136,\n\t232,\n\t174,\n\t161,\n\t231,\n\t174,\n\t151,\n\t230,\n\t156,\n\t186,\n\t231,\n\t172,\n\t148,\n\t232,\n\t174,\n\t176,\n\t230,\n\t156,\n\t172,\n\t232,\n\t168,\n\t142,\n\t232,\n\t171,\n\t150,\n\t229,\n\t141,\n\t128,\n\t230,\n\t156,\n\t141,\n\t229,\n\t138,\n\t161,\n\t229,\n\t153,\n\t168,\n\t228,\n\t186,\n\t146,\n\t232,\n\t129,\n\t148,\n\t231,\n\t189,\n\t145,\n\t230,\n\t136,\n\t191,\n\t229,\n\t156,\n\t176,\n\t228,\n\t186,\n\t167,\n\t228,\n\t191,\n\t177,\n\t228,\n\t185,\n\t144,\n\t233,\n\t131,\n\t168,\n\t229,\n\t135,\n\t186,\n\t231,\n\t137,\n\t136,\n\t231,\n\t164,\n\t190,\n\t230,\n\t142,\n\t146,\n\t232,\n\t161,\n\t140,\n\t230,\n\t166,\n\t156,\n\t233,\n\t131,\n\t168,\n\t232,\n\t144,\n\t189,\n\t230,\n\t160,\n\t188,\n\t232,\n\t191,\n\t155,\n\t228,\n\t184,\n\t128,\n\t230,\n\t173,\n\t165,\n\t230,\n\t148,\n\t175,\n\t228,\n\t187,\n\t152,\n\t229,\n\t174,\n\t157,\n\t233,\n\t170,\n\t140,\n\t232,\n\t175,\n\t129,\n\t231,\n\t160,\n\t129,\n\t229,\n\t167,\n\t148,\n\t229,\n\t145,\n\t152,\n\t228,\n\t188,\n\t154,\n\t230,\n\t149,\n\t176,\n\t230,\n\t141,\n\t174,\n\t229,\n\t186,\n\t147,\n\t230,\n\t182,\n\t136,\n\t232,\n\t180,\n\t185,\n\t232,\n\t128,\n\t133,\n\t229,\n\t138,\n\t158,\n\t229,\n\t133,\n\t172,\n\t229,\n\t174,\n\t164,\n\t232,\n\t174,\n\t168,\n\t232,\n\t174,\n\t186,\n\t229,\n\t140,\n\t186,\n\t230,\n\t183,\n\t177,\n\t229,\n\t156,\n\t179,\n\t229,\n\t184,\n\t130,\n\t230,\n\t146,\n\t173,\n\t230,\n\t148,\n\t190,\n\t229,\n\t153,\n\t168,\n\t229,\n\t140,\n\t151,\n\t228,\n\t186,\n\t172,\n\t229,\n\t184,\n\t130,\n\t229,\n\t164,\n\t167,\n\t229,\n\t173,\n\t166,\n\t231,\n\t148,\n\t159,\n\t232,\n\t182,\n\t138,\n\t230,\n\t157,\n\t165,\n\t232,\n\t182,\n\t138,\n\t231,\n\t174,\n\t161,\n\t231,\n\t144,\n\t134,\n\t229,\n\t145,\n\t152,\n\t228,\n\t191,\n\t161,\n\t230,\n\t129,\n\t175,\n\t231,\n\t189,\n\t145,\n\t115,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t105,\n\t111,\n\t115,\n\t97,\n\t114,\n\t116,\n\t195,\n\t173,\n\t99,\n\t117,\n\t108,\n\t111,\n\t97,\n\t114,\n\t103,\n\t101,\n\t110,\n\t116,\n\t105,\n\t110,\n\t97,\n\t98,\n\t97,\n\t114,\n\t99,\n\t101,\n\t108,\n\t111,\n\t110,\n\t97,\n\t99,\n\t117,\n\t97,\n\t108,\n\t113,\n\t117,\n\t105,\n\t101,\n\t114,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t100,\n\t111,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t111,\n\t115,\n\t112,\n\t111,\n\t108,\n\t195,\n\t173,\n\t116,\n\t105,\n\t99,\n\t97,\n\t114,\n\t101,\n\t115,\n\t112,\n\t117,\n\t101,\n\t115,\n\t116,\n\t97,\n\t119,\n\t105,\n\t107,\n\t105,\n\t112,\n\t101,\n\t100,\n\t105,\n\t97,\n\t115,\n\t105,\n\t103,\n\t117,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t98,\n\t195,\n\t186,\n\t115,\n\t113,\n\t117,\n\t101,\n\t100,\n\t97,\n\t99,\n\t111,\n\t109,\n\t117,\n\t110,\n\t105,\n\t100,\n\t97,\n\t100,\n\t115,\n\t101,\n\t103,\n\t117,\n\t114,\n\t105,\n\t100,\n\t97,\n\t100,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t105,\n\t112,\n\t97,\n\t108,\n\t112,\n\t114,\n\t101,\n\t103,\n\t117,\n\t110,\n\t116,\n\t97,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t105,\n\t100,\n\t111,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t100,\n\t101,\n\t114,\n\t118,\n\t101,\n\t110,\n\t101,\n\t122,\n\t117,\n\t101,\n\t108,\n\t97,\n\t112,\n\t114,\n\t111,\n\t98,\n\t108,\n\t101,\n\t109,\n\t97,\n\t115,\n\t100,\n\t105,\n\t99,\n\t105,\n\t101,\n\t109,\n\t98,\n\t114,\n\t101,\n\t114,\n\t101,\n\t108,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t110,\n\t111,\n\t118,\n\t105,\n\t101,\n\t109,\n\t98,\n\t114,\n\t101,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t101,\n\t115,\n\t112,\n\t114,\n\t111,\n\t121,\n\t101,\n\t99,\n\t116,\n\t111,\n\t115,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t97,\n\t115,\n\t105,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t111,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t105,\n\t100,\n\t97,\n\t100,\n\t101,\n\t110,\n\t99,\n\t117,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t101,\n\t99,\n\t111,\n\t110,\n\t111,\n\t109,\n\t195,\n\t173,\n\t97,\n\t105,\n\t109,\n\t195,\n\t161,\n\t103,\n\t101,\n\t110,\n\t101,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t97,\n\t114,\n\t100,\n\t101,\n\t115,\n\t99,\n\t97,\n\t114,\n\t103,\n\t97,\n\t114,\n\t110,\n\t101,\n\t99,\n\t101,\n\t115,\n\t97,\n\t114,\n\t105,\n\t111,\n\t97,\n\t116,\n\t101,\n\t110,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t116,\n\t101,\n\t108,\n\t195,\n\t169,\n\t102,\n\t111,\n\t110,\n\t111,\n\t99,\n\t111,\n\t109,\n\t105,\n\t115,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t97,\n\t110,\n\t99,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t99,\n\t97,\n\t112,\n\t97,\n\t99,\n\t105,\n\t100,\n\t97,\n\t100,\n\t101,\n\t110,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t114,\n\t97,\n\t110,\n\t195,\n\t161,\n\t108,\n\t105,\n\t115,\n\t105,\n\t115,\n\t102,\n\t97,\n\t118,\n\t111,\n\t114,\n\t105,\n\t116,\n\t111,\n\t115,\n\t116,\n\t195,\n\t169,\n\t114,\n\t109,\n\t105,\n\t110,\n\t111,\n\t115,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t110,\n\t99,\n\t105,\n\t97,\n\t101,\n\t116,\n\t105,\n\t113,\n\t117,\n\t101,\n\t116,\n\t97,\n\t115,\n\t101,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t111,\n\t115,\n\t102,\n\t117,\n\t110,\n\t99,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t97,\n\t100,\n\t111,\n\t99,\n\t97,\n\t114,\n\t195,\n\t161,\n\t99,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t111,\n\t112,\n\t105,\n\t101,\n\t100,\n\t97,\n\t100,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t105,\n\t112,\n\t105,\n\t111,\n\t110,\n\t101,\n\t99,\n\t101,\n\t115,\n\t105,\n\t100,\n\t97,\n\t100,\n\t109,\n\t117,\n\t110,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t108,\n\t99,\n\t114,\n\t101,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t100,\n\t101,\n\t115,\n\t99,\n\t97,\n\t114,\n\t103,\n\t97,\n\t115,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t99,\n\t111,\n\t109,\n\t101,\n\t114,\n\t99,\n\t105,\n\t97,\n\t108,\n\t111,\n\t112,\n\t105,\n\t110,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t101,\n\t106,\n\t101,\n\t114,\n\t99,\n\t105,\n\t99,\n\t105,\n\t111,\n\t101,\n\t100,\n\t105,\n\t116,\n\t111,\n\t114,\n\t105,\n\t97,\n\t108,\n\t115,\n\t97,\n\t108,\n\t97,\n\t109,\n\t97,\n\t110,\n\t99,\n\t97,\n\t103,\n\t111,\n\t110,\n\t122,\n\t195,\n\t161,\n\t108,\n\t101,\n\t122,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t111,\n\t112,\n\t101,\n\t108,\n\t195,\n\t173,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t101,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t115,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t101,\n\t115,\n\t116,\n\t97,\n\t114,\n\t114,\n\t97,\n\t103,\n\t111,\n\t110,\n\t97,\n\t112,\n\t114,\n\t195,\n\t161,\n\t99,\n\t116,\n\t105,\n\t99,\n\t97,\n\t110,\n\t111,\n\t118,\n\t101,\n\t100,\n\t97,\n\t100,\n\t101,\n\t115,\n\t112,\n\t114,\n\t111,\n\t112,\n\t117,\n\t101,\n\t115,\n\t116,\n\t97,\n\t112,\n\t97,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t115,\n\t116,\n\t195,\n\t169,\n\t99,\n\t110,\n\t105,\n\t99,\n\t97,\n\t115,\n\t111,\n\t98,\n\t106,\n\t101,\n\t116,\n\t105,\n\t118,\n\t111,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t111,\n\t115,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t155,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t173,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t100,\n\t105,\n\t112,\n\t108,\n\t111,\n\t100,\n\t111,\n\t99,\n\t115,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t171,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t148,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t150,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t181,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t172,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t140,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t137,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t173,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t129,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t150,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t173,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t181,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t144,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t138,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t144,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t137,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t160,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t129,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t140,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t150,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t128,\n\t99,\n\t97,\n\t116,\n\t101,\n\t103,\n\t111,\n\t114,\n\t105,\n\t101,\n\t115,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t60,\n\t47,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t13,\n\t10,\n\t67,\n\t111,\n\t112,\n\t121,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t32,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t99,\n\t111,\n\t110,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t121,\n\t116,\n\t104,\n\t105,\n\t110,\n\t103,\n\t60,\n\t112,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t116,\n\t101,\n\t99,\n\t104,\n\t110,\n\t111,\n\t108,\n\t111,\n\t103,\n\t121,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t60,\n\t97,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t109,\n\t97,\n\t110,\n\t97,\n\t103,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t38,\n\t99,\n\t111,\n\t112,\n\t121,\n\t59,\n\t32,\n\t50,\n\t48,\n\t49,\n\t106,\n\t97,\n\t118,\n\t97,\n\t83,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t115,\n\t98,\n\t114,\n\t101,\n\t97,\n\t100,\n\t99,\n\t114,\n\t117,\n\t109,\n\t98,\n\t116,\n\t104,\n\t101,\n\t109,\n\t115,\n\t101,\n\t108,\n\t118,\n\t101,\n\t115,\n\t104,\n\t111,\n\t114,\n\t105,\n\t122,\n\t111,\n\t110,\n\t116,\n\t97,\n\t108,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t67,\n\t97,\n\t108,\n\t105,\n\t102,\n\t111,\n\t114,\n\t110,\n\t105,\n\t97,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t100,\n\t105,\n\t115,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t101,\n\t100,\n\t78,\n\t97,\n\t118,\n\t105,\n\t103,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t110,\n\t97,\n\t118,\n\t105,\n\t103,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t97,\n\t110,\n\t99,\n\t101,\n\t60,\n\t47,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t60,\n\t109,\n\t99,\n\t104,\n\t101,\n\t99,\n\t107,\n\t98,\n\t111,\n\t120,\n\t34,\n\t32,\n\t116,\n\t101,\n\t99,\n\t104,\n\t110,\n\t105,\n\t113,\n\t117,\n\t101,\n\t115,\n\t112,\n\t114,\n\t111,\n\t116,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t112,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t97,\n\t115,\n\t32,\n\t119,\n\t101,\n\t108,\n\t108,\n\t32,\n\t97,\n\t115,\n\t117,\n\t110,\n\t116,\n\t39,\n\t44,\n\t32,\n\t39,\n\t85,\n\t65,\n\t45,\n\t114,\n\t101,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t101,\n\t108,\n\t101,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t87,\n\t97,\n\t115,\n\t104,\n\t105,\n\t110,\n\t103,\n\t116,\n\t111,\n\t110,\n\t110,\n\t97,\n\t118,\n\t105,\n\t103,\n\t97,\n\t116,\n\t111,\n\t114,\n\t46,\n\t32,\n\t61,\n\t32,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t46,\n\t105,\n\t109,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t38,\n\t108,\n\t116,\n\t59,\n\t98,\n\t114,\n\t38,\n\t103,\n\t116,\n\t59,\n\t108,\n\t105,\n\t116,\n\t101,\n\t114,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t103,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t61,\n\t34,\n\t35,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t110,\n\t101,\n\t119,\n\t115,\n\t108,\n\t101,\n\t116,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t116,\n\t105,\n\t101,\n\t115,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t108,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t115,\n\t104,\n\t105,\n\t112,\n\t84,\n\t101,\n\t99,\n\t104,\n\t110,\n\t111,\n\t108,\n\t111,\n\t103,\n\t121,\n\t80,\n\t97,\n\t114,\n\t108,\n\t105,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t114,\n\t105,\n\t115,\n\t111,\n\t110,\n\t117,\n\t108,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t46,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t79,\n\t102,\n\t40,\n\t34,\n\t99,\n\t111,\n\t110,\n\t99,\n\t108,\n\t117,\n\t115,\n\t105,\n\t111,\n\t110,\n\t100,\n\t105,\n\t115,\n\t99,\n\t117,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t109,\n\t112,\n\t111,\n\t110,\n\t101,\n\t110,\n\t116,\n\t115,\n\t98,\n\t105,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t97,\n\t108,\n\t82,\n\t101,\n\t118,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t95,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t114,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t115,\n\t116,\n\t111,\n\t111,\n\t100,\n\t110,\n\t111,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t60,\n\t112,\n\t101,\n\t114,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t101,\n\t97,\n\t99,\n\t104,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t97,\n\t116,\n\t109,\n\t111,\n\t115,\n\t112,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t111,\n\t110,\n\t102,\n\t111,\n\t99,\n\t117,\n\t115,\n\t61,\n\t34,\n\t60,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t115,\n\t105,\n\t110,\n\t103,\n\t116,\n\t104,\n\t105,\n\t115,\n\t46,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t67,\n\t111,\n\t110,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t117,\n\t98,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t119,\n\t101,\n\t108,\n\t108,\n\t45,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t118,\n\t97,\n\t114,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t114,\n\t101,\n\t112,\n\t117,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t104,\n\t101,\n\t110,\n\t111,\n\t109,\n\t101,\n\t110,\n\t111,\n\t110,\n\t100,\n\t105,\n\t115,\n\t99,\n\t105,\n\t112,\n\t108,\n\t105,\n\t110,\n\t101,\n\t108,\n\t111,\n\t103,\n\t111,\n\t46,\n\t112,\n\t110,\n\t103,\n\t34,\n\t32,\n\t40,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t44,\n\t98,\n\t111,\n\t117,\n\t110,\n\t100,\n\t97,\n\t114,\n\t105,\n\t101,\n\t115,\n\t101,\n\t120,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t116,\n\t116,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t66,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t111,\n\t117,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t105,\n\t115,\n\t101,\n\t40,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t115,\n\t58,\n\t34,\n\t32,\n\t117,\n\t110,\n\t101,\n\t115,\n\t99,\n\t97,\n\t112,\n\t101,\n\t40,\n\t34,\n\t112,\n\t97,\n\t115,\n\t115,\n\t119,\n\t111,\n\t114,\n\t100,\n\t34,\n\t32,\n\t100,\n\t101,\n\t109,\n\t111,\n\t99,\n\t114,\n\t97,\n\t116,\n\t105,\n\t99,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t119,\n\t114,\n\t97,\n\t112,\n\t112,\n\t101,\n\t114,\n\t34,\n\t62,\n\t10,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t115,\n\t104,\n\t105,\n\t112,\n\t108,\n\t105,\n\t110,\n\t103,\n\t117,\n\t105,\n\t115,\n\t116,\n\t105,\n\t99,\n\t112,\n\t120,\n\t59,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t112,\n\t104,\n\t105,\n\t108,\n\t111,\n\t115,\n\t111,\n\t112,\n\t104,\n\t121,\n\t97,\n\t115,\n\t115,\n\t105,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t117,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t102,\n\t97,\n\t99,\n\t105,\n\t108,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t114,\n\t101,\n\t99,\n\t111,\n\t103,\n\t110,\n\t105,\n\t122,\n\t101,\n\t100,\n\t112,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t105,\n\t102,\n\t32,\n\t40,\n\t116,\n\t121,\n\t112,\n\t101,\n\t111,\n\t102,\n\t109,\n\t97,\n\t105,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t100,\n\t118,\n\t111,\n\t99,\n\t97,\n\t98,\n\t117,\n\t108,\n\t97,\n\t114,\n\t121,\n\t104,\n\t121,\n\t112,\n\t111,\n\t116,\n\t104,\n\t101,\n\t115,\n\t105,\n\t115,\n\t46,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t40,\n\t41,\n\t59,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t97,\n\t110,\n\t110,\n\t111,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t101,\n\t104,\n\t105,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t70,\n\t111,\n\t117,\n\t110,\n\t100,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t114,\n\t34,\n\t97,\n\t115,\n\t115,\n\t117,\n\t109,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t99,\n\t111,\n\t114,\n\t114,\n\t117,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t105,\n\t115,\n\t116,\n\t115,\n\t101,\n\t120,\n\t112,\n\t108,\n\t105,\n\t99,\n\t105,\n\t116,\n\t108,\n\t121,\n\t105,\n\t110,\n\t115,\n\t116,\n\t101,\n\t97,\n\t100,\n\t32,\n\t111,\n\t102,\n\t100,\n\t105,\n\t109,\n\t101,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t110,\n\t67,\n\t108,\n\t105,\n\t99,\n\t107,\n\t61,\n\t34,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t100,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t111,\n\t99,\n\t99,\n\t117,\n\t112,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t111,\n\t111,\n\t110,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t105,\n\t110,\n\t118,\n\t101,\n\t115,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t112,\n\t114,\n\t111,\n\t110,\n\t111,\n\t117,\n\t110,\n\t99,\n\t101,\n\t100,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t105,\n\t101,\n\t100,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t109,\n\t101,\n\t110,\n\t116,\n\t77,\n\t97,\n\t110,\n\t97,\n\t103,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t103,\n\t101,\n\t111,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t105,\n\t99,\n\t34,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t46,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t40,\n\t47,\n\t100,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t110,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t112,\n\t117,\n\t110,\n\t105,\n\t115,\n\t104,\n\t109,\n\t101,\n\t110,\n\t116,\n\t101,\n\t108,\n\t105,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t101,\n\t100,\n\t114,\n\t101,\n\t115,\n\t105,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t97,\n\t100,\n\t97,\n\t112,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t111,\n\t112,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t119,\n\t101,\n\t108,\n\t108,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t115,\n\t117,\n\t112,\n\t112,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t100,\n\t101,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t101,\n\t100,\n\t104,\n\t49,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t48,\n\t112,\n\t120,\n\t59,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t109,\n\t101,\n\t99,\n\t104,\n\t97,\n\t110,\n\t105,\n\t99,\n\t97,\n\t108,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t115,\n\t116,\n\t105,\n\t99,\n\t115,\n\t99,\n\t101,\n\t108,\n\t101,\n\t98,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t71,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t10,\n\t10,\n\t68,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t114,\n\t115,\n\t97,\n\t114,\n\t116,\n\t105,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t97,\n\t108,\n\t101,\n\t110,\n\t116,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t116,\n\t101,\n\t100,\n\t67,\n\t111,\n\t109,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t116,\n\t116,\n\t97,\n\t99,\n\t104,\n\t109,\n\t101,\n\t110,\n\t116,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t119,\n\t101,\n\t114,\n\t101,\n\t78,\n\t101,\n\t100,\n\t101,\n\t114,\n\t108,\n\t97,\n\t110,\n\t100,\n\t115,\n\t98,\n\t101,\n\t121,\n\t111,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t103,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t101,\n\t100,\n\t106,\n\t111,\n\t117,\n\t114,\n\t110,\n\t97,\n\t108,\n\t105,\n\t115,\n\t116,\n\t102,\n\t114,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t97,\n\t108,\n\t108,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t108,\n\t97,\n\t110,\n\t103,\n\t61,\n\t34,\n\t101,\n\t110,\n\t34,\n\t32,\n\t60,\n\t47,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t62,\n\t13,\n\t10,\n\t97,\n\t98,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t101,\n\t59,\n\t32,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t105,\n\t110,\n\t103,\n\t101,\n\t120,\n\t116,\n\t114,\n\t101,\n\t109,\n\t101,\n\t108,\n\t121,\n\t32,\n\t109,\n\t97,\n\t105,\n\t110,\n\t115,\n\t116,\n\t114,\n\t101,\n\t97,\n\t109,\n\t60,\n\t47,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t62,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t105,\n\t116,\n\t121,\n\t101,\n\t109,\n\t112,\n\t108,\n\t111,\n\t121,\n\t109,\n\t101,\n\t110,\n\t116,\n\t60,\n\t47,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t62,\n\t13,\n\t10,\n\t32,\n\t99,\n\t111,\n\t108,\n\t115,\n\t112,\n\t97,\n\t110,\n\t61,\n\t34,\n\t60,\n\t47,\n\t102,\n\t111,\n\t114,\n\t109,\n\t62,\n\t10,\n\t32,\n\t32,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t98,\n\t111,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t60,\n\t47,\n\t112,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t105,\n\t110,\n\t116,\n\t101,\n\t103,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t34,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t61,\n\t34,\n\t101,\n\t110,\n\t80,\n\t111,\n\t114,\n\t116,\n\t117,\n\t103,\n\t117,\n\t101,\n\t115,\n\t101,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t101,\n\t105,\n\t110,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t117,\n\t97,\n\t108,\n\t105,\n\t109,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t109,\n\t117,\n\t108,\n\t116,\n\t105,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t97,\n\t108,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t97,\n\t108,\n\t108,\n\t112,\n\t120,\n\t32,\n\t115,\n\t111,\n\t108,\n\t105,\n\t100,\n\t32,\n\t35,\n\t97,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t115,\n\t117,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t32,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t99,\n\t114,\n\t105,\n\t116,\n\t105,\n\t99,\n\t105,\n\t122,\n\t101,\n\t100,\n\t101,\n\t120,\n\t99,\n\t101,\n\t112,\n\t116,\n\t32,\n\t102,\n\t111,\n\t114,\n\t103,\n\t117,\n\t105,\n\t100,\n\t101,\n\t108,\n\t105,\n\t110,\n\t101,\n\t115,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t114,\n\t101,\n\t109,\n\t97,\n\t114,\n\t107,\n\t97,\n\t98,\n\t108,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t104,\n\t50,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t60,\n\t97,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t61,\n\t34,\n\t40,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t105,\n\t110,\n\t103,\n\t112,\n\t97,\n\t114,\n\t97,\n\t109,\n\t101,\n\t116,\n\t101,\n\t114,\n\t115,\n\t112,\n\t114,\n\t111,\n\t104,\n\t105,\n\t98,\n\t105,\n\t116,\n\t101,\n\t100,\n\t61,\n\t32,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t100,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t114,\n\t121,\n\t112,\n\t101,\n\t114,\n\t99,\n\t101,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t118,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t120,\n\t59,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t102,\n\t117,\n\t108,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t114,\n\t115,\n\t109,\n\t105,\n\t108,\n\t108,\n\t101,\n\t110,\n\t110,\n\t105,\n\t117,\n\t109,\n\t104,\n\t105,\n\t115,\n\t32,\n\t102,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t116,\n\t104,\n\t101,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t110,\n\t111,\n\t45,\n\t114,\n\t101,\n\t112,\n\t101,\n\t97,\n\t116,\n\t59,\n\t99,\n\t111,\n\t109,\n\t109,\n\t101,\n\t114,\n\t99,\n\t105,\n\t97,\n\t108,\n\t105,\n\t110,\n\t100,\n\t117,\n\t115,\n\t116,\n\t114,\n\t105,\n\t97,\n\t108,\n\t101,\n\t110,\n\t99,\n\t111,\n\t117,\n\t114,\n\t97,\n\t103,\n\t101,\n\t100,\n\t97,\n\t109,\n\t111,\n\t117,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t117,\n\t110,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t101,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t101,\n\t110,\n\t99,\n\t121,\n\t82,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t99,\n\t111,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t97,\n\t116,\n\t101,\n\t100,\n\t105,\n\t115,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t101,\n\t114,\n\t101,\n\t120,\n\t112,\n\t101,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t105,\n\t110,\n\t103,\n\t99,\n\t97,\n\t108,\n\t99,\n\t117,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t115,\n\t105,\n\t109,\n\t112,\n\t108,\n\t105,\n\t102,\n\t105,\n\t101,\n\t100,\n\t108,\n\t101,\n\t103,\n\t105,\n\t116,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t114,\n\t105,\n\t110,\n\t103,\n\t40,\n\t48,\n\t34,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t108,\n\t121,\n\t105,\n\t108,\n\t108,\n\t117,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t101,\n\t102,\n\t105,\n\t118,\n\t101,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t105,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t80,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t105,\n\t110,\n\t103,\n\t49,\n\t34,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t112,\n\t115,\n\t121,\n\t99,\n\t104,\n\t111,\n\t108,\n\t111,\n\t103,\n\t121,\n\t99,\n\t111,\n\t110,\n\t102,\n\t105,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t97,\n\t98,\n\t115,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t102,\n\t111,\n\t99,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t106,\n\t111,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t112,\n\t114,\n\t101,\n\t118,\n\t105,\n\t111,\n\t117,\n\t115,\n\t108,\n\t121,\n\t62,\n\t60,\n\t47,\n\t105,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t62,\n\t111,\n\t110,\n\t99,\n\t101,\n\t32,\n\t97,\n\t103,\n\t97,\n\t105,\n\t110,\n\t98,\n\t117,\n\t116,\n\t32,\n\t114,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t105,\n\t109,\n\t109,\n\t105,\n\t103,\n\t114,\n\t97,\n\t110,\n\t116,\n\t115,\n\t111,\n\t102,\n\t32,\n\t99,\n\t111,\n\t117,\n\t114,\n\t115,\n\t101,\n\t44,\n\t97,\n\t32,\n\t103,\n\t114,\n\t111,\n\t117,\n\t112,\n\t32,\n\t111,\n\t102,\n\t76,\n\t105,\n\t116,\n\t101,\n\t114,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t85,\n\t110,\n\t108,\n\t105,\n\t107,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t47,\n\t97,\n\t62,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t10,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t105,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t67,\n\t111,\n\t110,\n\t118,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t117,\n\t116,\n\t111,\n\t109,\n\t111,\n\t98,\n\t105,\n\t108,\n\t101,\n\t80,\n\t114,\n\t111,\n\t116,\n\t101,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t97,\n\t103,\n\t103,\n\t114,\n\t101,\n\t115,\n\t115,\n\t105,\n\t118,\n\t101,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t83,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t108,\n\t121,\n\t44,\n\t34,\n\t32,\n\t47,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t13,\n\t10,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t118,\n\t105,\n\t115,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t116,\n\t104,\n\t101,\n\t32,\n\t117,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t118,\n\t111,\n\t108,\n\t117,\n\t110,\n\t116,\n\t101,\n\t101,\n\t114,\n\t115,\n\t97,\n\t116,\n\t116,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t104,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t110,\n\t101,\n\t100,\n\t42,\n\t60,\n\t33,\n\t91,\n\t67,\n\t68,\n\t65,\n\t84,\n\t65,\n\t91,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t105,\n\t110,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t116,\n\t104,\n\t101,\n\t32,\n\t108,\n\t97,\n\t116,\n\t116,\n\t101,\n\t114,\n\t60,\n\t47,\n\t102,\n\t111,\n\t114,\n\t109,\n\t62,\n\t10,\n\t60,\n\t47,\n\t46,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t79,\n\t102,\n\t40,\n\t39,\n\t105,\n\t32,\n\t61,\n\t32,\n\t48,\n\t59,\n\t32,\n\t105,\n\t32,\n\t60,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t100,\n\t101,\n\t118,\n\t111,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t116,\n\t114,\n\t97,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t32,\n\t102,\n\t111,\n\t114,\n\t117,\n\t108,\n\t116,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t116,\n\t111,\n\t117,\n\t114,\n\t110,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t101,\n\t115,\n\t115,\n\t111,\n\t45,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t32,\n\t125,\n\t10,\n\t60,\n\t47,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t62,\n\t101,\n\t118,\n\t97,\n\t108,\n\t117,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t109,\n\t112,\n\t104,\n\t97,\n\t115,\n\t105,\n\t122,\n\t101,\n\t100,\n\t97,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t60,\n\t47,\n\t115,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t62,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t111,\n\t110,\n\t103,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t77,\n\t101,\n\t97,\n\t110,\n\t119,\n\t104,\n\t105,\n\t108,\n\t101,\n\t44,\n\t105,\n\t110,\n\t100,\n\t117,\n\t115,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t98,\n\t114,\n\t32,\n\t47,\n\t62,\n\t104,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t99,\n\t111,\n\t109,\n\t101,\n\t97,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t84,\n\t101,\n\t108,\n\t101,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t117,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t98,\n\t97,\n\t115,\n\t107,\n\t101,\n\t116,\n\t98,\n\t97,\n\t108,\n\t108,\n\t98,\n\t111,\n\t116,\n\t104,\n\t32,\n\t115,\n\t105,\n\t100,\n\t101,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t105,\n\t110,\n\t103,\n\t97,\n\t110,\n\t32,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t97,\n\t100,\n\t118,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t104,\n\t105,\n\t115,\n\t32,\n\t109,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t99,\n\t104,\n\t101,\n\t115,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t105,\n\t112,\n\t108,\n\t101,\n\t115,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t99,\n\t111,\n\t109,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t121,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t100,\n\t101,\n\t99,\n\t105,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t34,\n\t62,\n\t60,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t62,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t114,\n\t115,\n\t74,\n\t111,\n\t117,\n\t114,\n\t110,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t100,\n\t105,\n\t102,\n\t102,\n\t105,\n\t99,\n\t117,\n\t108,\n\t116,\n\t121,\n\t102,\n\t97,\n\t99,\n\t105,\n\t108,\n\t105,\n\t116,\n\t97,\n\t116,\n\t101,\n\t97,\n\t99,\n\t99,\n\t101,\n\t112,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t46,\n\t99,\n\t115,\n\t115,\n\t34,\n\t9,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t105,\n\t110,\n\t110,\n\t111,\n\t118,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t62,\n\t67,\n\t111,\n\t112,\n\t121,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t115,\n\t105,\n\t116,\n\t117,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t98,\n\t117,\n\t115,\n\t105,\n\t110,\n\t101,\n\t115,\n\t115,\n\t101,\n\t115,\n\t68,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t114,\n\t121,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t112,\n\t101,\n\t114,\n\t115,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t116,\n\t105,\n\t110,\n\t32,\n\t74,\n\t97,\n\t110,\n\t117,\n\t97,\n\t114,\n\t121,\n\t99,\n\t111,\n\t109,\n\t112,\n\t114,\n\t105,\n\t115,\n\t105,\n\t110,\n\t103,\n\t60,\n\t47,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t10,\n\t9,\n\t100,\n\t105,\n\t112,\n\t108,\n\t111,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t105,\n\t110,\n\t103,\n\t112,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t105,\n\t110,\n\t103,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t109,\n\t97,\n\t121,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t98,\n\t101,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t112,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t111,\n\t110,\n\t99,\n\t108,\n\t105,\n\t99,\n\t107,\n\t61,\n\t34,\n\t73,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t102,\n\t105,\n\t110,\n\t97,\n\t110,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t109,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t76,\n\t117,\n\t120,\n\t101,\n\t109,\n\t98,\n\t111,\n\t117,\n\t114,\n\t103,\n\t97,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t97,\n\t114,\n\t101,\n\t32,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t101,\n\t110,\n\t103,\n\t97,\n\t103,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t34,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t41,\n\t59,\n\t98,\n\t117,\n\t116,\n\t32,\n\t105,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t111,\n\t110,\n\t105,\n\t99,\n\t111,\n\t110,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t61,\n\t34,\n\t10,\n\t60,\n\t33,\n\t45,\n\t45,\n\t32,\n\t69,\n\t110,\n\t100,\n\t32,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t105,\n\t99,\n\t97,\n\t108,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t111,\n\t112,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t117,\n\t110,\n\t108,\n\t105,\n\t107,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t65,\n\t117,\n\t115,\n\t116,\n\t114,\n\t97,\n\t108,\n\t105,\n\t97,\n\t110,\n\t79,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t10,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t13,\n\t10,\n\t114,\n\t101,\n\t99,\n\t111,\n\t103,\n\t110,\n\t105,\n\t115,\n\t101,\n\t100,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t97,\n\t108,\n\t105,\n\t122,\n\t101,\n\t108,\n\t105,\n\t109,\n\t105,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t65,\n\t108,\n\t101,\n\t120,\n\t97,\n\t110,\n\t100,\n\t114,\n\t105,\n\t97,\n\t114,\n\t101,\n\t116,\n\t105,\n\t114,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t65,\n\t100,\n\t118,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t102,\n\t111,\n\t117,\n\t114,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t10,\n\t10,\n\t38,\n\t108,\n\t116,\n\t59,\n\t33,\n\t45,\n\t45,\n\t32,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t105,\n\t110,\n\t103,\n\t100,\n\t101,\n\t99,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t104,\n\t51,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t111,\n\t98,\n\t108,\n\t105,\n\t103,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t103,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t102,\n\t105,\n\t101,\n\t100,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t97,\n\t100,\n\t118,\n\t97,\n\t110,\n\t116,\n\t97,\n\t103,\n\t101,\n\t115,\n\t98,\n\t101,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t105,\n\t97,\n\t110,\n\t115,\n\t60,\n\t98,\n\t97,\n\t115,\n\t101,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t114,\n\t101,\n\t112,\n\t101,\n\t97,\n\t116,\n\t101,\n\t100,\n\t108,\n\t121,\n\t119,\n\t105,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t114,\n\t97,\n\t98,\n\t108,\n\t101,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t97,\n\t116,\n\t101,\n\t100,\n\t110,\n\t111,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t105,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t118,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t110,\n\t100,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t117,\n\t116,\n\t104,\n\t111,\n\t114,\n\t105,\n\t122,\n\t101,\n\t100,\n\t114,\n\t101,\n\t102,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t116,\n\t97,\n\t107,\n\t101,\n\t32,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t97,\n\t117,\n\t116,\n\t111,\n\t110,\n\t111,\n\t109,\n\t111,\n\t117,\n\t115,\n\t99,\n\t111,\n\t109,\n\t112,\n\t114,\n\t111,\n\t109,\n\t105,\n\t115,\n\t101,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t114,\n\t101,\n\t115,\n\t116,\n\t97,\n\t117,\n\t114,\n\t97,\n\t110,\n\t116,\n\t116,\n\t119,\n\t111,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t70,\n\t101,\n\t98,\n\t114,\n\t117,\n\t97,\n\t114,\n\t121,\n\t32,\n\t50,\n\t113,\n\t117,\n\t97,\n\t108,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t115,\n\t119,\n\t102,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t46,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t110,\n\t101,\n\t97,\n\t114,\n\t108,\n\t121,\n\t32,\n\t97,\n\t108,\n\t108,\n\t119,\n\t114,\n\t105,\n\t116,\n\t116,\n\t101,\n\t110,\n\t32,\n\t98,\n\t121,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t118,\n\t105,\n\t101,\n\t119,\n\t115,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t49,\n\t119,\n\t105,\n\t116,\n\t104,\n\t100,\n\t114,\n\t97,\n\t119,\n\t97,\n\t108,\n\t102,\n\t108,\n\t111,\n\t97,\n\t116,\n\t58,\n\t108,\n\t101,\n\t102,\n\t116,\n\t105,\n\t115,\n\t32,\n\t117,\n\t115,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t99,\n\t97,\n\t110,\n\t100,\n\t105,\n\t100,\n\t97,\n\t116,\n\t101,\n\t115,\n\t110,\n\t101,\n\t119,\n\t115,\n\t112,\n\t97,\n\t112,\n\t101,\n\t114,\n\t115,\n\t109,\n\t121,\n\t115,\n\t116,\n\t101,\n\t114,\n\t105,\n\t111,\n\t117,\n\t115,\n\t68,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t98,\n\t101,\n\t115,\n\t116,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t112,\n\t97,\n\t114,\n\t108,\n\t105,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t117,\n\t112,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t101,\n\t100,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t110,\n\t105,\n\t101,\n\t110,\n\t116,\n\t114,\n\t101,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t101,\n\t100,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t32,\n\t115,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t104,\n\t97,\n\t115,\n\t32,\n\t108,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t112,\n\t114,\n\t111,\n\t112,\n\t97,\n\t103,\n\t97,\n\t110,\n\t100,\n\t97,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t108,\n\t108,\n\t101,\n\t100,\n\t105,\n\t110,\n\t102,\n\t108,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t99,\n\t101,\n\t114,\n\t101,\n\t109,\n\t111,\n\t110,\n\t105,\n\t97,\n\t108,\n\t112,\n\t114,\n\t111,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t101,\n\t100,\n\t80,\n\t114,\n\t111,\n\t116,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t108,\n\t105,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t83,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t105,\n\t99,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t110,\n\t111,\n\t45,\n\t116,\n\t114,\n\t97,\n\t100,\n\t101,\n\t109,\n\t97,\n\t114,\n\t107,\n\t115,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t32,\n\t119,\n\t105,\n\t100,\n\t101,\n\t115,\n\t112,\n\t114,\n\t101,\n\t97,\n\t100,\n\t76,\n\t105,\n\t98,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t111,\n\t111,\n\t107,\n\t32,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t100,\n\t97,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t32,\n\t108,\n\t111,\n\t110,\n\t103,\n\t32,\n\t97,\n\t115,\n\t105,\n\t109,\n\t112,\n\t114,\n\t105,\n\t115,\n\t111,\n\t110,\n\t101,\n\t100,\n\t65,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t10,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t60,\n\t109,\n\t76,\n\t97,\n\t98,\n\t111,\n\t114,\n\t97,\n\t116,\n\t111,\n\t114,\n\t121,\n\t78,\n\t111,\n\t118,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t50,\n\t101,\n\t120,\n\t99,\n\t101,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t73,\n\t110,\n\t100,\n\t117,\n\t115,\n\t116,\n\t114,\n\t105,\n\t97,\n\t108,\n\t118,\n\t97,\n\t114,\n\t105,\n\t101,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t102,\n\t108,\n\t111,\n\t97,\n\t116,\n\t58,\n\t32,\n\t108,\n\t101,\n\t102,\n\t68,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t115,\n\t101,\n\t115,\n\t115,\n\t109,\n\t101,\n\t110,\n\t116,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t32,\n\t100,\n\t101,\n\t97,\n\t108,\n\t115,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t83,\n\t116,\n\t97,\n\t116,\n\t105,\n\t115,\n\t116,\n\t105,\n\t99,\n\t115,\n\t111,\n\t99,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t47,\n\t117,\n\t108,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t102,\n\t105,\n\t120,\n\t34,\n\t62,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t119,\n\t101,\n\t114,\n\t101,\n\t111,\n\t118,\n\t101,\n\t114,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t44,\n\t115,\n\t121,\n\t110,\n\t111,\n\t110,\n\t121,\n\t109,\n\t111,\n\t117,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t34,\n\t62,\n\t10,\n\t112,\n\t114,\n\t101,\n\t115,\n\t117,\n\t109,\n\t97,\n\t98,\n\t108,\n\t121,\n\t104,\n\t105,\n\t115,\n\t32,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t121,\n\t117,\n\t115,\n\t101,\n\t114,\n\t65,\n\t103,\n\t101,\n\t110,\n\t116,\n\t46,\n\t117,\n\t110,\n\t101,\n\t120,\n\t112,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t99,\n\t104,\n\t97,\n\t108,\n\t108,\n\t101,\n\t110,\n\t103,\n\t101,\n\t100,\n\t97,\n\t32,\n\t109,\n\t105,\n\t110,\n\t111,\n\t114,\n\t105,\n\t116,\n\t121,\n\t117,\n\t110,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t101,\n\t100,\n\t34,\n\t98,\n\t101,\n\t108,\n\t111,\n\t110,\n\t103,\n\t115,\n\t32,\n\t116,\n\t111,\n\t116,\n\t97,\n\t107,\n\t101,\n\t110,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t105,\n\t110,\n\t32,\n\t79,\n\t99,\n\t116,\n\t111,\n\t98,\n\t101,\n\t114,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t32,\n\t115,\n\t97,\n\t105,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t114,\n\t101,\n\t108,\n\t105,\n\t103,\n\t105,\n\t111,\n\t117,\n\t115,\n\t32,\n\t70,\n\t101,\n\t100,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t114,\n\t111,\n\t119,\n\t115,\n\t112,\n\t97,\n\t110,\n\t61,\n\t34,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t97,\n\t32,\n\t102,\n\t101,\n\t119,\n\t109,\n\t101,\n\t97,\n\t110,\n\t116,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t108,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t45,\n\t45,\n\t62,\n\t13,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t60,\n\t102,\n\t105,\n\t101,\n\t108,\n\t100,\n\t115,\n\t101,\n\t116,\n\t62,\n\t65,\n\t114,\n\t99,\n\t104,\n\t98,\n\t105,\n\t115,\n\t104,\n\t111,\n\t112,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t110,\n\t111,\n\t98,\n\t101,\n\t105,\n\t110,\n\t103,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t97,\n\t99,\n\t104,\n\t101,\n\t115,\n\t112,\n\t114,\n\t105,\n\t118,\n\t105,\n\t108,\n\t101,\n\t103,\n\t101,\n\t115,\n\t110,\n\t111,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t115,\n\t32,\n\t105,\n\t110,\n\t109,\n\t97,\n\t121,\n\t32,\n\t98,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t69,\n\t97,\n\t115,\n\t116,\n\t101,\n\t114,\n\t32,\n\t101,\n\t103,\n\t103,\n\t109,\n\t101,\n\t99,\n\t104,\n\t97,\n\t110,\n\t105,\n\t115,\n\t109,\n\t115,\n\t114,\n\t101,\n\t97,\n\t115,\n\t111,\n\t110,\n\t97,\n\t98,\n\t108,\n\t101,\n\t80,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t67,\n\t111,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t34,\n\t62,\n\t110,\n\t111,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t47,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t46,\n\t112,\n\t104,\n\t112,\n\t97,\n\t114,\n\t114,\n\t105,\n\t118,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t45,\n\t106,\n\t115,\n\t115,\n\t100,\n\t107,\n\t39,\n\t41,\n\t41,\n\t59,\n\t109,\n\t97,\n\t110,\n\t97,\n\t103,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t99,\n\t97,\n\t115,\n\t117,\n\t97,\n\t108,\n\t116,\n\t105,\n\t101,\n\t115,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t105,\n\t111,\n\t110,\n\t67,\n\t104,\n\t114,\n\t105,\n\t115,\n\t116,\n\t105,\n\t97,\n\t110,\n\t115,\n\t83,\n\t101,\n\t112,\n\t116,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t97,\n\t114,\n\t105,\n\t116,\n\t104,\n\t109,\n\t101,\n\t116,\n\t105,\n\t99,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t100,\n\t117,\n\t114,\n\t101,\n\t115,\n\t109,\n\t105,\n\t103,\n\t104,\n\t116,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t80,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t116,\n\t32,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t115,\n\t80,\n\t104,\n\t105,\n\t108,\n\t111,\n\t115,\n\t111,\n\t112,\n\t104,\n\t121,\n\t102,\n\t114,\n\t105,\n\t101,\n\t110,\n\t100,\n\t115,\n\t104,\n\t105,\n\t112,\n\t108,\n\t101,\n\t97,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t103,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t111,\n\t119,\n\t97,\n\t114,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t103,\n\t117,\n\t97,\n\t114,\n\t97,\n\t110,\n\t116,\n\t101,\n\t101,\n\t100,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t35,\n\t48,\n\t48,\n\t48,\n\t118,\n\t105,\n\t100,\n\t101,\n\t111,\n\t32,\n\t103,\n\t97,\n\t109,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t102,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t110,\n\t103,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t116,\n\t101,\n\t100,\n\t115,\n\t97,\n\t110,\n\t115,\n\t45,\n\t115,\n\t101,\n\t114,\n\t105,\n\t102,\n\t111,\n\t110,\n\t107,\n\t101,\n\t121,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t59,\n\t32,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t58,\n\t72,\n\t101,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t108,\n\t121,\n\t105,\n\t110,\n\t103,\n\t116,\n\t121,\n\t112,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t44,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t114,\n\t99,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t105,\n\t118,\n\t101,\n\t115,\n\t105,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t104,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t98,\n\t101,\n\t32,\n\t110,\n\t101,\n\t116,\n\t119,\n\t111,\n\t114,\n\t107,\n\t105,\n\t110,\n\t103,\n\t97,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t105,\n\t110,\n\t103,\n\t117,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t108,\n\t111,\n\t119,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t115,\n\t104,\n\t111,\n\t119,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t10,\n\t9,\n\t9,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t97,\n\t105,\n\t110,\n\t116,\n\t115,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t111,\n\t117,\n\t115,\n\t113,\n\t117,\n\t97,\n\t110,\n\t116,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t97,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t111,\n\t109,\n\t101,\n\t114,\n\t104,\n\t101,\n\t32,\n\t100,\n\t105,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t100,\n\t117,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t105,\n\t116,\n\t115,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t97,\n\t110,\n\t32,\n\t97,\n\t118,\n\t101,\n\t114,\n\t97,\n\t103,\n\t101,\n\t101,\n\t102,\n\t102,\n\t111,\n\t114,\n\t116,\n\t115,\n\t32,\n\t116,\n\t111,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t117,\n\t116,\n\t117,\n\t114,\n\t101,\n\t97,\n\t116,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t32,\n\t116,\n\t111,\n\t84,\n\t104,\n\t101,\n\t114,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t44,\n\t99,\n\t97,\n\t112,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t82,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t110,\n\t119,\n\t97,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t100,\n\t69,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t111,\n\t110,\n\t105,\n\t99,\n\t107,\n\t105,\n\t108,\n\t111,\n\t109,\n\t101,\n\t116,\n\t101,\n\t114,\n\t115,\n\t99,\n\t104,\n\t97,\n\t108,\n\t108,\n\t101,\n\t110,\n\t103,\n\t101,\n\t115,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t105,\n\t110,\n\t103,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t114,\n\t105,\n\t110,\n\t100,\n\t105,\n\t103,\n\t101,\n\t110,\n\t111,\n\t117,\n\t115,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t115,\n\t117,\n\t98,\n\t115,\n\t105,\n\t100,\n\t105,\n\t97,\n\t114,\n\t121,\n\t99,\n\t111,\n\t110,\n\t115,\n\t112,\n\t105,\n\t114,\n\t97,\n\t99,\n\t121,\n\t100,\n\t101,\n\t116,\n\t97,\n\t105,\n\t108,\n\t115,\n\t32,\n\t111,\n\t102,\n\t97,\n\t110,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t102,\n\t102,\n\t111,\n\t114,\n\t100,\n\t97,\n\t98,\n\t108,\n\t101,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t115,\n\t114,\n\t101,\n\t97,\n\t115,\n\t111,\n\t110,\n\t32,\n\t102,\n\t111,\n\t114,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t116,\n\t101,\n\t109,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t97,\n\t98,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t101,\n\t108,\n\t121,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t108,\n\t121,\n\t114,\n\t101,\n\t109,\n\t97,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t97,\n\t97,\n\t116,\n\t116,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t116,\n\t114,\n\t97,\n\t118,\n\t101,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t102,\n\t111,\n\t99,\n\t117,\n\t115,\n\t101,\n\t115,\n\t32,\n\t111,\n\t110,\n\t101,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t121,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t98,\n\t108,\n\t101,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t109,\n\t97,\n\t110,\n\t117,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t110,\n\t111,\n\t45,\n\t114,\n\t101,\n\t112,\n\t101,\n\t97,\n\t116,\n\t40,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t67,\n\t111,\n\t109,\n\t109,\n\t101,\n\t114,\n\t99,\n\t105,\n\t97,\n\t108,\n\t105,\n\t110,\n\t32,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t116,\n\t97,\n\t107,\n\t101,\n\t110,\n\t113,\n\t117,\n\t97,\n\t114,\n\t116,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t97,\n\t110,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t46,\n\t112,\n\t104,\n\t112,\n\t63,\n\t60,\n\t47,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t62,\n\t10,\n\t112,\n\t101,\n\t114,\n\t99,\n\t101,\n\t110,\n\t116,\n\t97,\n\t103,\n\t101,\n\t98,\n\t101,\n\t115,\n\t116,\n\t45,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t97,\n\t34,\n\t32,\n\t100,\n\t105,\n\t114,\n\t61,\n\t34,\n\t108,\n\t116,\n\t114,\n\t76,\n\t105,\n\t101,\n\t117,\n\t116,\n\t101,\n\t110,\n\t97,\n\t110,\n\t116,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t109,\n\t97,\n\t100,\n\t101,\n\t32,\n\t117,\n\t112,\n\t32,\n\t111,\n\t102,\n\t110,\n\t111,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t114,\n\t103,\n\t117,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t116,\n\t111,\n\t32,\n\t97,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t99,\n\t104,\n\t105,\n\t108,\n\t100,\n\t114,\n\t101,\n\t110,\n\t39,\n\t115,\n\t112,\n\t117,\n\t114,\n\t112,\n\t111,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t102,\n\t111,\n\t114,\n\t109,\n\t117,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t98,\n\t97,\n\t115,\n\t101,\n\t100,\n\t32,\n\t117,\n\t112,\n\t111,\n\t110,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t103,\n\t105,\n\t111,\n\t110,\n\t115,\n\t117,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t32,\n\t111,\n\t102,\n\t112,\n\t97,\n\t115,\n\t115,\n\t101,\n\t110,\n\t103,\n\t101,\n\t114,\n\t115,\n\t112,\n\t111,\n\t115,\n\t115,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t46,\n\t10,\n\t10,\n\t73,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t66,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t119,\n\t97,\n\t114,\n\t100,\n\t115,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t32,\n\t97,\n\t99,\n\t114,\n\t111,\n\t115,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t105,\n\t99,\n\t99,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t116,\n\t121,\n\t46,\n\t99,\n\t97,\n\t112,\n\t105,\n\t116,\n\t97,\n\t108,\n\t105,\n\t115,\n\t109,\n\t105,\n\t110,\n\t32,\n\t71,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t121,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t45,\n\t119,\n\t105,\n\t110,\n\t103,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t83,\n\t111,\n\t99,\n\t105,\n\t101,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t105,\n\t97,\n\t110,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t119,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t114,\n\t101,\n\t109,\n\t111,\n\t118,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t32,\n\t78,\n\t101,\n\t119,\n\t32,\n\t89,\n\t111,\n\t114,\n\t107,\n\t32,\n\t97,\n\t112,\n\t97,\n\t114,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t105,\n\t110,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t100,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t117,\n\t110,\n\t108,\n\t101,\n\t115,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t105,\n\t99,\n\t97,\n\t108,\n\t104,\n\t97,\n\t100,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t32,\n\t97,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t118,\n\t101,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t100,\n\t105,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t116,\n\t101,\n\t110,\n\t100,\n\t97,\n\t110,\n\t99,\n\t101,\n\t67,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t32,\n\t102,\n\t111,\n\t114,\n\t112,\n\t114,\n\t111,\n\t109,\n\t105,\n\t110,\n\t101,\n\t110,\n\t99,\n\t101,\n\t114,\n\t101,\n\t97,\n\t100,\n\t121,\n\t83,\n\t116,\n\t97,\n\t116,\n\t101,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t101,\n\t103,\n\t105,\n\t101,\n\t115,\n\t98,\n\t117,\n\t116,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t101,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t108,\n\t97,\n\t98,\n\t111,\n\t114,\n\t97,\n\t116,\n\t111,\n\t114,\n\t121,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t116,\n\t105,\n\t98,\n\t108,\n\t101,\n\t102,\n\t97,\n\t105,\n\t108,\n\t117,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t44,\n\t32,\n\t115,\n\t117,\n\t99,\n\t104,\n\t32,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t103,\n\t97,\n\t110,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t117,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t101,\n\t102,\n\t101,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t47,\n\t34,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t103,\n\t101,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t97,\n\t108,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t100,\n\t101,\n\t108,\n\t105,\n\t98,\n\t101,\n\t114,\n\t97,\n\t116,\n\t101,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t32,\n\t104,\n\t111,\n\t108,\n\t100,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t32,\n\t118,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t116,\n\t111,\n\t112,\n\t116,\n\t104,\n\t101,\n\t32,\n\t71,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t111,\n\t117,\n\t116,\n\t115,\n\t105,\n\t100,\n\t101,\n\t32,\n\t111,\n\t102,\n\t110,\n\t101,\n\t103,\n\t111,\n\t116,\n\t105,\n\t97,\n\t116,\n\t101,\n\t100,\n\t104,\n\t105,\n\t115,\n\t32,\n\t99,\n\t97,\n\t114,\n\t101,\n\t101,\n\t114,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t100,\n\t61,\n\t34,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t119,\n\t97,\n\t115,\n\t32,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t111,\n\t117,\n\t114,\n\t116,\n\t104,\n\t114,\n\t101,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t112,\n\t114,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t119,\n\t104,\n\t105,\n\t108,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t100,\n\t117,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t44,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t105,\n\t110,\n\t103,\n\t97,\n\t99,\n\t99,\n\t117,\n\t114,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t98,\n\t117,\n\t105,\n\t108,\n\t116,\n\t119,\n\t97,\n\t115,\n\t32,\n\t107,\n\t105,\n\t108,\n\t108,\n\t101,\n\t100,\n\t97,\n\t103,\n\t114,\n\t101,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t109,\n\t117,\n\t99,\n\t104,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t68,\n\t117,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t32,\n\t49,\n\t48,\n\t48,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t75,\n\t105,\n\t110,\n\t103,\n\t100,\n\t111,\n\t109,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t110,\n\t116,\n\t105,\n\t114,\n\t101,\n\t102,\n\t97,\n\t109,\n\t111,\n\t117,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t116,\n\t111,\n\t32,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t111,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t70,\n\t114,\n\t101,\n\t110,\n\t99,\n\t104,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t32,\n\t97,\n\t110,\n\t100,\n\t102,\n\t101,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t100,\n\t34,\n\t62,\n\t105,\n\t115,\n\t32,\n\t115,\n\t97,\n\t105,\n\t100,\n\t32,\n\t116,\n\t111,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t100,\n\t117,\n\t109,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t97,\n\t32,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t101,\n\t45,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t32,\n\t79,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t119,\n\t105,\n\t100,\n\t101,\n\t46,\n\t97,\n\t114,\n\t105,\n\t97,\n\t45,\n\t108,\n\t97,\n\t98,\n\t101,\n\t108,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t108,\n\t97,\n\t110,\n\t101,\n\t116,\n\t97,\n\t110,\n\t100,\n\t32,\n\t105,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t100,\n\t34,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t108,\n\t111,\n\t111,\n\t107,\n\t105,\n\t110,\n\t103,\n\t32,\n\t97,\n\t116,\n\t98,\n\t101,\n\t110,\n\t101,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t97,\n\t114,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t111,\n\t110,\n\t105,\n\t116,\n\t111,\n\t114,\n\t105,\n\t110,\n\t103,\n\t114,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t100,\n\t108,\n\t121,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t100,\n\t101,\n\t114,\n\t110,\n\t119,\n\t111,\n\t114,\n\t107,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t110,\n\t111,\n\t118,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t115,\n\t111,\n\t117,\n\t110,\n\t100,\n\t116,\n\t114,\n\t97,\n\t99,\n\t107,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t70,\n\t111,\n\t114,\n\t109,\n\t116,\n\t101,\n\t110,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t111,\n\t112,\n\t101,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t115,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t101,\n\t100,\n\t97,\n\t100,\n\t111,\n\t112,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t100,\n\t100,\n\t114,\n\t101,\n\t115,\n\t115,\n\t105,\n\t110,\n\t103,\n\t116,\n\t104,\n\t101,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t97,\n\t110,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t115,\n\t32,\n\t111,\n\t102,\n\t118,\n\t97,\n\t114,\n\t105,\n\t97,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t67,\n\t104,\n\t114,\n\t105,\n\t115,\n\t116,\n\t105,\n\t97,\n\t110,\n\t32,\n\t118,\n\t101,\n\t114,\n\t121,\n\t32,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t97,\n\t117,\n\t116,\n\t111,\n\t109,\n\t111,\n\t116,\n\t105,\n\t118,\n\t101,\n\t98,\n\t121,\n\t32,\n\t102,\n\t97,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t97,\n\t110,\n\t103,\n\t101,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t112,\n\t117,\n\t114,\n\t115,\n\t117,\n\t105,\n\t116,\n\t32,\n\t111,\n\t102,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t32,\n\t116,\n\t104,\n\t101,\n\t98,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t32,\n\t69,\n\t110,\n\t103,\n\t108,\n\t97,\n\t110,\n\t100,\n\t97,\n\t103,\n\t114,\n\t101,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t99,\n\t99,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t109,\n\t101,\n\t115,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t112,\n\t114,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t105,\n\t110,\n\t103,\n\t100,\n\t105,\n\t118,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t104,\n\t105,\n\t115,\n\t32,\n\t111,\n\t114,\n\t32,\n\t104,\n\t101,\n\t114,\n\t116,\n\t114,\n\t101,\n\t109,\n\t101,\n\t110,\n\t100,\n\t111,\n\t117,\n\t115,\n\t102,\n\t114,\n\t101,\n\t101,\n\t100,\n\t111,\n\t109,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t48,\n\t32,\n\t49,\n\t101,\n\t109,\n\t32,\n\t49,\n\t101,\n\t109,\n\t59,\n\t66,\n\t97,\n\t115,\n\t107,\n\t101,\n\t116,\n\t98,\n\t97,\n\t108,\n\t108,\n\t47,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t46,\n\t99,\n\t115,\n\t115,\n\t97,\n\t110,\n\t32,\n\t101,\n\t97,\n\t114,\n\t108,\n\t105,\n\t101,\n\t114,\n\t101,\n\t118,\n\t101,\n\t110,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t47,\n\t34,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t61,\n\t34,\n\t46,\n\t99,\n\t111,\n\t109,\n\t47,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t116,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t105,\n\t116,\n\t116,\n\t115,\n\t98,\n\t117,\n\t114,\n\t103,\n\t104,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t34,\n\t62,\n\t13,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t40,\n\t102,\n\t116,\n\t117,\n\t114,\n\t110,\n\t101,\n\t100,\n\t32,\n\t111,\n\t117,\n\t116,\n\t104,\n\t97,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t13,\n\t10,\n\t32,\n\t111,\n\t99,\n\t99,\n\t97,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t105,\n\t116,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t112,\n\t104,\n\t121,\n\t115,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t32,\n\t32,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t67,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t44,\n\t32,\n\t98,\n\t103,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t61,\n\t34,\n\t116,\n\t97,\n\t98,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t97,\n\t115,\n\t116,\n\t114,\n\t111,\n\t117,\n\t115,\n\t65,\n\t110,\n\t97,\n\t108,\n\t121,\n\t116,\n\t105,\n\t99,\n\t115,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t104,\n\t97,\n\t115,\n\t32,\n\t97,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t60,\n\t47,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t62,\n\t10,\n\t60,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t32,\n\t102,\n\t111,\n\t114,\n\t115,\n\t105,\n\t110,\n\t103,\n\t101,\n\t114,\n\t32,\n\t97,\n\t110,\n\t100,\n\t46,\n\t115,\n\t114,\n\t99,\n\t32,\n\t61,\n\t32,\n\t34,\n\t47,\n\t47,\n\t118,\n\t105,\n\t111,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t108,\n\t121,\n\t105,\n\t115,\n\t32,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t114,\n\t101,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t115,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t110,\n\t101,\n\t100,\n\t101,\n\t114,\n\t108,\n\t97,\n\t110,\n\t100,\n\t115,\n\t112,\n\t111,\n\t114,\n\t116,\n\t117,\n\t103,\n\t117,\n\t195,\n\t170,\n\t115,\n\t215,\n\t162,\n\t215,\n\t145,\n\t215,\n\t168,\n\t215,\n\t153,\n\t215,\n\t170,\n\t217,\n\t129,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t179,\n\t219,\n\t140,\n\t100,\n\t101,\n\t115,\n\t97,\n\t114,\n\t114,\n\t111,\n\t108,\n\t108,\n\t111,\n\t99,\n\t111,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t105,\n\t111,\n\t101,\n\t100,\n\t117,\n\t99,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t115,\n\t101,\n\t112,\n\t116,\n\t105,\n\t101,\n\t109,\n\t98,\n\t114,\n\t101,\n\t114,\n\t101,\n\t103,\n\t105,\n\t115,\n\t116,\n\t114,\n\t97,\n\t100,\n\t111,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t117,\n\t98,\n\t105,\n\t99,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t105,\n\t100,\n\t97,\n\t100,\n\t114,\n\t101,\n\t115,\n\t112,\n\t117,\n\t101,\n\t115,\n\t116,\n\t97,\n\t115,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t97,\n\t100,\n\t111,\n\t115,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t101,\n\t114,\n\t118,\n\t97,\n\t100,\n\t111,\n\t115,\n\t97,\n\t114,\n\t116,\n\t195,\n\t173,\n\t99,\n\t117,\n\t108,\n\t111,\n\t115,\n\t100,\n\t105,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t101,\n\t115,\n\t115,\n\t105,\n\t103,\n\t117,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t115,\n\t114,\n\t101,\n\t112,\n\t195,\n\t186,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t115,\n\t105,\n\t116,\n\t117,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t105,\n\t111,\n\t112,\n\t114,\n\t105,\n\t118,\n\t97,\n\t99,\n\t105,\n\t100,\n\t97,\n\t100,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t105,\n\t111,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t112,\n\t111,\n\t98,\n\t108,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t112,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t105,\n\t100,\n\t111,\n\t115,\n\t97,\n\t99,\n\t99,\n\t101,\n\t115,\n\t111,\n\t114,\n\t105,\n\t111,\n\t115,\n\t116,\n\t101,\n\t99,\n\t104,\n\t110,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t108,\n\t101,\n\t115,\n\t99,\n\t97,\n\t116,\n\t101,\n\t103,\n\t111,\n\t114,\n\t195,\n\t173,\n\t97,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t101,\n\t115,\n\t100,\n\t105,\n\t115,\n\t112,\n\t111,\n\t110,\n\t105,\n\t98,\n\t108,\n\t101,\n\t97,\n\t99,\n\t116,\n\t117,\n\t97,\n\t108,\n\t105,\n\t100,\n\t97,\n\t100,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t118,\n\t97,\n\t108,\n\t108,\n\t97,\n\t100,\n\t111,\n\t108,\n\t105,\n\t100,\n\t98,\n\t105,\n\t98,\n\t108,\n\t105,\n\t111,\n\t116,\n\t101,\n\t99,\n\t97,\n\t114,\n\t101,\n\t108,\n\t97,\n\t99,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t99,\n\t97,\n\t108,\n\t101,\n\t110,\n\t100,\n\t97,\n\t114,\n\t105,\n\t111,\n\t112,\n\t111,\n\t108,\n\t195,\n\t173,\n\t116,\n\t105,\n\t99,\n\t97,\n\t115,\n\t97,\n\t110,\n\t116,\n\t101,\n\t114,\n\t105,\n\t111,\n\t114,\n\t101,\n\t115,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t111,\n\t115,\n\t110,\n\t97,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t101,\n\t122,\n\t97,\n\t109,\n\t97,\n\t116,\n\t101,\n\t114,\n\t105,\n\t97,\n\t108,\n\t101,\n\t115,\n\t100,\n\t105,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t101,\n\t99,\n\t111,\n\t110,\n\t195,\n\t179,\n\t109,\n\t105,\n\t99,\n\t97,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t114,\n\t111,\n\t100,\n\t114,\n\t195,\n\t173,\n\t103,\n\t117,\n\t101,\n\t122,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t99,\n\t117,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t110,\n\t100,\n\t105,\n\t115,\n\t99,\n\t117,\n\t115,\n\t105,\n\t195,\n\t179,\n\t110,\n\t101,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t117,\n\t114,\n\t97,\n\t102,\n\t117,\n\t110,\n\t100,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t102,\n\t114,\n\t101,\n\t99,\n\t117,\n\t101,\n\t110,\n\t116,\n\t101,\n\t115,\n\t112,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t101,\n\t110,\n\t116,\n\t101,\n\t116,\n\t111,\n\t116,\n\t97,\n\t108,\n\t109,\n\t101,\n\t110,\n\t116,\n\t101,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t182,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t131,\n\t208,\n\t180,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t182,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t178,\n\t209,\n\t128,\n\t208,\n\t181,\n\t208,\n\t188,\n\t209,\n\t143,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t182,\n\t208,\n\t181,\n\t209,\n\t135,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t139,\n\t208,\n\t177,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t181,\n\t208,\n\t190,\n\t209,\n\t135,\n\t208,\n\t181,\n\t208,\n\t189,\n\t209,\n\t140,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t191,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t178,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t176,\n\t208,\n\t185,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t135,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t181,\n\t208,\n\t183,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t179,\n\t209,\n\t131,\n\t209,\n\t130,\n\t209,\n\t129,\n\t208,\n\t176,\n\t208,\n\t185,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t182,\n\t208,\n\t184,\n\t208,\n\t183,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t182,\n\t208,\n\t180,\n\t209,\n\t131,\n\t208,\n\t177,\n\t209,\n\t131,\n\t208,\n\t180,\n\t209,\n\t131,\n\t209,\n\t130,\n\t208,\n\t159,\n\t208,\n\t190,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t183,\n\t208,\n\t180,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t140,\n\t208,\n\t178,\n\t208,\n\t184,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t178,\n\t209,\n\t143,\n\t208,\n\t183,\n\t208,\n\t184,\n\t208,\n\t189,\n\t209,\n\t131,\n\t208,\n\t182,\n\t208,\n\t189,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t181,\n\t208,\n\t185,\n\t208,\n\t187,\n\t209,\n\t142,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t185,\n\t208,\n\t191,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t185,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t184,\n\t209,\n\t133,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t178,\n\t208,\n\t176,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t182,\n\t208,\n\t184,\n\t208,\n\t183,\n\t208,\n\t189,\n\t209,\n\t140,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t187,\n\t209,\n\t131,\n\t209,\n\t135,\n\t209,\n\t136,\n\t208,\n\t181,\n\t208,\n\t191,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t181,\n\t208,\n\t180,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t184,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t140,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t177,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t178,\n\t209,\n\t139,\n\t209,\n\t133,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t178,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t190,\n\t208,\n\t177,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t191,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t181,\n\t209,\n\t135,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t178,\n\t209,\n\t139,\n\t208,\n\t181,\n\t209,\n\t131,\n\t209,\n\t129,\n\t208,\n\t187,\n\t209,\n\t131,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t176,\n\t208,\n\t180,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t191,\n\t208,\n\t190,\n\t209,\n\t135,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t159,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t187,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t178,\n\t209,\n\t139,\n\t208,\n\t185,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t184,\n\t209,\n\t130,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t184,\n\t209,\n\t133,\n\t209,\n\t129,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t183,\n\t209,\n\t131,\n\t208,\n\t161,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t186,\n\t209,\n\t130,\n\t209,\n\t132,\n\t208,\n\t190,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t188,\n\t208,\n\t154,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t179,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t136,\n\t208,\n\t181,\n\t208,\n\t185,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t185,\n\t209,\n\t130,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t184,\n\t208,\n\t188,\n\t209,\n\t129,\n\t208,\n\t178,\n\t209,\n\t143,\n\t208,\n\t183,\n\t209,\n\t140,\n\t208,\n\t187,\n\t209,\n\t142,\n\t208,\n\t177,\n\t208,\n\t190,\n\t208,\n\t185,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t128,\n\t208,\n\t181,\n\t208,\n\t180,\n\t208,\n\t184,\n\t208,\n\t154,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t164,\n\t208,\n\t190,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t188,\n\t209,\n\t128,\n\t209,\n\t139,\n\t208,\n\t189,\n\t208,\n\t186,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t187,\n\t208,\n\t184,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t186,\n\t209,\n\t130,\n\t209,\n\t139,\n\t209,\n\t129,\n\t209,\n\t143,\n\t209,\n\t135,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t143,\n\t209,\n\t134,\n\t209,\n\t134,\n\t208,\n\t181,\n\t208,\n\t189,\n\t209,\n\t130,\n\t209,\n\t128,\n\t209,\n\t130,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t180,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t176,\n\t208,\n\t188,\n\t209,\n\t139,\n\t209,\n\t133,\n\t209,\n\t128,\n\t209,\n\t139,\n\t208,\n\t189,\n\t208,\n\t186,\n\t208,\n\t176,\n\t208,\n\t157,\n\t208,\n\t190,\n\t208,\n\t178,\n\t209,\n\t139,\n\t208,\n\t185,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t176,\n\t209,\n\t132,\n\t208,\n\t184,\n\t208,\n\t187,\n\t209,\n\t140,\n\t208,\n\t188,\n\t208,\n\t188,\n\t208,\n\t176,\n\t209,\n\t128,\n\t209,\n\t130,\n\t208,\n\t176,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t186,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t136,\n\t208,\n\t184,\n\t209,\n\t133,\n\t208,\n\t188,\n\t208,\n\t184,\n\t208,\n\t189,\n\t209,\n\t131,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t142,\n\t209,\n\t130,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t180,\n\t209,\n\t129,\n\t208,\n\t176,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t188,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t188,\n\t209,\n\t131,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t189,\n\t209,\n\t134,\n\t208,\n\t181,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t186,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t144,\n\t209,\n\t128,\n\t209,\n\t133,\n\t208,\n\t184,\n\t208,\n\t178,\n\t217,\n\t133,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t175,\n\t217,\n\t137,\n\t216,\n\t165,\n\t216,\n\t177,\n\t216,\n\t179,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t179,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t133,\n\t217,\n\t131,\n\t216,\n\t170,\n\t216,\n\t168,\n\t217,\n\t135,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t172,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t138,\n\t217,\n\t136,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t181,\n\t217,\n\t136,\n\t216,\n\t177,\n\t216,\n\t172,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t175,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t182,\n\t217,\n\t136,\n\t216,\n\t165,\n\t216,\n\t182,\n\t216,\n\t167,\n\t217,\n\t129,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t130,\n\t216,\n\t179,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t170,\n\t216,\n\t173,\n\t217,\n\t133,\n\t217,\n\t138,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t132,\n\t217,\n\t129,\n\t216,\n\t167,\n\t216,\n\t170,\n\t217,\n\t133,\n\t217,\n\t132,\n\t216,\n\t170,\n\t217,\n\t130,\n\t217,\n\t137,\n\t216,\n\t170,\n\t216,\n\t185,\n\t216,\n\t175,\n\t217,\n\t138,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t180,\n\t216,\n\t185,\n\t216,\n\t177,\n\t216,\n\t163,\n\t216,\n\t174,\n\t216,\n\t168,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t170,\n\t216,\n\t183,\n\t217,\n\t136,\n\t217,\n\t138,\n\t216,\n\t177,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t138,\n\t217,\n\t131,\n\t217,\n\t133,\n\t216,\n\t165,\n\t216,\n\t177,\n\t217,\n\t129,\n\t216,\n\t167,\n\t217,\n\t130,\n\t216,\n\t183,\n\t217,\n\t132,\n\t216,\n\t168,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t132,\n\t216,\n\t186,\n\t216,\n\t169,\n\t216,\n\t170,\n\t216,\n\t177,\n\t216,\n\t170,\n\t217,\n\t138,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t134,\n\t216,\n\t167,\n\t216,\n\t179,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t180,\n\t217,\n\t138,\n\t216,\n\t174,\n\t217,\n\t133,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t177,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t130,\n\t216,\n\t181,\n\t216,\n\t181,\n\t216,\n\t167,\n\t217,\n\t129,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t138,\n\t217,\n\t135,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t173,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t171,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t132,\n\t217,\n\t135,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t217,\n\t133,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t131,\n\t216,\n\t170,\n\t216,\n\t168,\n\t216,\n\t169,\n\t217,\n\t138,\n\t217,\n\t133,\n\t217,\n\t131,\n\t217,\n\t134,\n\t217,\n\t131,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t183,\n\t217,\n\t129,\n\t217,\n\t132,\n\t217,\n\t129,\n\t217,\n\t138,\n\t216,\n\t175,\n\t217,\n\t138,\n\t217,\n\t136,\n\t216,\n\t165,\n\t216,\n\t175,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t169,\n\t216,\n\t170,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t138,\n\t216,\n\t174,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t181,\n\t216,\n\t173,\n\t216,\n\t169,\n\t216,\n\t170,\n\t216,\n\t179,\n\t216,\n\t172,\n\t217,\n\t138,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t136,\n\t217,\n\t130,\n\t216,\n\t170,\n\t216,\n\t185,\n\t217,\n\t134,\n\t216,\n\t175,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t175,\n\t217,\n\t138,\n\t217,\n\t134,\n\t216,\n\t169,\n\t216,\n\t170,\n\t216,\n\t181,\n\t217,\n\t133,\n\t217,\n\t138,\n\t217,\n\t133,\n\t216,\n\t163,\n\t216,\n\t177,\n\t216,\n\t180,\n\t217,\n\t138,\n\t217,\n\t129,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t176,\n\t217,\n\t138,\n\t217,\n\t134,\n\t216,\n\t185,\n\t216,\n\t177,\n\t216,\n\t168,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t168,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t169,\n\t216,\n\t163,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t179,\n\t217,\n\t129,\n\t216,\n\t177,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t217,\n\t131,\n\t217,\n\t132,\n\t216,\n\t170,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t137,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t217,\n\t136,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t179,\n\t217,\n\t134,\n\t216,\n\t169,\n\t216,\n\t172,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t185,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t181,\n\t216,\n\t173,\n\t217,\n\t129,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t175,\n\t217,\n\t138,\n\t217,\n\t134,\n\t217,\n\t131,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t174,\n\t216,\n\t167,\n\t216,\n\t181,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t132,\n\t217,\n\t129,\n\t216,\n\t163,\n\t216,\n\t185,\n\t216,\n\t182,\n\t216,\n\t167,\n\t216,\n\t161,\n\t217,\n\t131,\n\t216,\n\t170,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t174,\n\t217,\n\t138,\n\t216,\n\t177,\n\t216,\n\t177,\n\t216,\n\t179,\n\t216,\n\t167,\n\t216,\n\t166,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t130,\n\t217,\n\t132,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t216,\n\t175,\n\t216,\n\t168,\n\t217,\n\t133,\n\t217,\n\t130,\n\t216,\n\t167,\n\t216,\n\t183,\n\t216,\n\t185,\n\t217,\n\t133,\n\t216,\n\t177,\n\t216,\n\t167,\n\t216,\n\t179,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t134,\n\t216,\n\t183,\n\t217,\n\t130,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t131,\n\t216,\n\t170,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t172,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t180,\n\t216,\n\t170,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t130,\n\t216,\n\t175,\n\t217,\n\t133,\n\t217,\n\t138,\n\t216,\n\t185,\n\t216,\n\t183,\n\t217,\n\t138,\n\t217,\n\t131,\n\t115,\n\t66,\n\t121,\n\t84,\n\t97,\n\t103,\n\t78,\n\t97,\n\t109,\n\t101,\n\t40,\n\t46,\n\t106,\n\t112,\n\t103,\n\t34,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t49,\n\t112,\n\t120,\n\t32,\n\t115,\n\t111,\n\t108,\n\t105,\n\t100,\n\t32,\n\t35,\n\t46,\n\t103,\n\t105,\n\t102,\n\t34,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t116,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t34,\n\t32,\n\t111,\n\t110,\n\t99,\n\t108,\n\t105,\n\t99,\n\t107,\n\t61,\n\t34,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t97,\n\t100,\n\t118,\n\t101,\n\t114,\n\t116,\n\t105,\n\t115,\n\t105,\n\t110,\n\t103,\n\t46,\n\t112,\n\t110,\n\t103,\n\t34,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t101,\n\t110,\n\t118,\n\t105,\n\t114,\n\t111,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t112,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t110,\n\t99,\n\t101,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t112,\n\t114,\n\t105,\n\t97,\n\t116,\n\t101,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t109,\n\t100,\n\t97,\n\t115,\n\t104,\n\t59,\n\t105,\n\t109,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t60,\n\t47,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t62,\n\t60,\n\t47,\n\t114,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t116,\n\t101,\n\t109,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t99,\n\t111,\n\t109,\n\t112,\n\t101,\n\t116,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t104,\n\t111,\n\t108,\n\t100,\n\t101,\n\t114,\n\t118,\n\t105,\n\t115,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t58,\n\t99,\n\t111,\n\t112,\n\t121,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t34,\n\t62,\n\t48,\n\t34,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t101,\n\t118,\n\t101,\n\t110,\n\t32,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t100,\n\t101,\n\t115,\n\t116,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t67,\n\t111,\n\t114,\n\t112,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t60,\n\t117,\n\t108,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t65,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t117,\n\t97,\n\t108,\n\t115,\n\t112,\n\t101,\n\t114,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t115,\n\t101,\n\t116,\n\t84,\n\t105,\n\t109,\n\t101,\n\t111,\n\t117,\n\t116,\n\t40,\n\t117,\n\t114,\n\t108,\n\t40,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t109,\n\t97,\n\t116,\n\t104,\n\t101,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t115,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t116,\n\t111,\n\t112,\n\t58,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t41,\n\t32,\n\t110,\n\t111,\n\t45,\n\t114,\n\t101,\n\t112,\n\t101,\n\t97,\n\t116,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t46,\n\t74,\n\t80,\n\t71,\n\t124,\n\t116,\n\t104,\n\t117,\n\t109,\n\t98,\n\t124,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t116,\n\t101,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t102,\n\t108,\n\t111,\n\t97,\n\t116,\n\t58,\n\t108,\n\t101,\n\t102,\n\t116,\n\t59,\n\t60,\n\t108,\n\t105,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t104,\n\t117,\n\t110,\n\t100,\n\t114,\n\t101,\n\t100,\n\t115,\n\t32,\n\t111,\n\t102,\n\t10,\n\t10,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t58,\n\t98,\n\t111,\n\t116,\n\t104,\n\t59,\n\t99,\n\t111,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t119,\n\t105,\n\t116,\n\t104,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t108,\n\t97,\n\t98,\n\t101,\n\t108,\n\t32,\n\t102,\n\t111,\n\t114,\n\t61,\n\t34,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t45,\n\t116,\n\t111,\n\t112,\n\t58,\n\t78,\n\t101,\n\t119,\n\t32,\n\t90,\n\t101,\n\t97,\n\t108,\n\t97,\n\t110,\n\t100,\n\t114,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t112,\n\t104,\n\t111,\n\t116,\n\t111,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t121,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t38,\n\t108,\n\t116,\n\t59,\n\t115,\n\t117,\n\t112,\n\t38,\n\t103,\n\t116,\n\t59,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t118,\n\t101,\n\t114,\n\t115,\n\t121,\n\t78,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t108,\n\t97,\n\t110,\n\t100,\n\t115,\n\t97,\n\t108,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t109,\n\t97,\n\t120,\n\t108,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t61,\n\t34,\n\t115,\n\t119,\n\t105,\n\t116,\n\t122,\n\t101,\n\t114,\n\t108,\n\t97,\n\t110,\n\t100,\n\t68,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t101,\n\t115,\n\t115,\n\t101,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t10,\n\t10,\n\t65,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t60,\n\t47,\n\t116,\n\t101,\n\t120,\n\t116,\n\t97,\n\t114,\n\t101,\n\t97,\n\t62,\n\t116,\n\t104,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t98,\n\t105,\n\t114,\n\t100,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t110,\n\t100,\n\t97,\n\t115,\n\t104,\n\t59,\n\t115,\n\t112,\n\t101,\n\t99,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t108,\n\t101,\n\t103,\n\t105,\n\t115,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t111,\n\t110,\n\t105,\n\t99,\n\t115,\n\t10,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t105,\n\t108,\n\t108,\n\t117,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t101,\n\t110,\n\t103,\n\t105,\n\t110,\n\t101,\n\t101,\n\t114,\n\t105,\n\t110,\n\t103,\n\t116,\n\t101,\n\t114,\n\t114,\n\t105,\n\t116,\n\t111,\n\t114,\n\t105,\n\t101,\n\t115,\n\t97,\n\t117,\n\t116,\n\t104,\n\t111,\n\t114,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t100,\n\t105,\n\t115,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t101,\n\t100,\n\t54,\n\t34,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t115,\n\t97,\n\t110,\n\t115,\n\t45,\n\t115,\n\t101,\n\t114,\n\t105,\n\t102,\n\t59,\n\t99,\n\t97,\n\t112,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t100,\n\t105,\n\t115,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t101,\n\t100,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t108,\n\t111,\n\t111,\n\t107,\n\t105,\n\t110,\n\t103,\n\t32,\n\t102,\n\t111,\n\t114,\n\t105,\n\t116,\n\t32,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t98,\n\t101,\n\t65,\n\t102,\n\t103,\n\t104,\n\t97,\n\t110,\n\t105,\n\t115,\n\t116,\n\t97,\n\t110,\n\t119,\n\t97,\n\t115,\n\t32,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t100,\n\t77,\n\t97,\n\t116,\n\t104,\n\t46,\n\t102,\n\t108,\n\t111,\n\t111,\n\t114,\n\t40,\n\t115,\n\t117,\n\t114,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t99,\n\t97,\n\t110,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t98,\n\t101,\n\t111,\n\t98,\n\t115,\n\t101,\n\t114,\n\t118,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t109,\n\t97,\n\t105,\n\t110,\n\t116,\n\t101,\n\t110,\n\t97,\n\t110,\n\t99,\n\t101,\n\t101,\n\t110,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t100,\n\t60,\n\t104,\n\t50,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t105,\n\t116,\n\t32,\n\t104,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t105,\n\t110,\n\t118,\n\t97,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t41,\n\t46,\n\t103,\n\t101,\n\t116,\n\t84,\n\t105,\n\t109,\n\t101,\n\t40,\n\t41,\n\t102,\n\t117,\n\t110,\n\t100,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t68,\n\t101,\n\t115,\n\t112,\n\t105,\n\t116,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t34,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t105,\n\t110,\n\t115,\n\t112,\n\t105,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t120,\n\t97,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t114,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t120,\n\t112,\n\t108,\n\t97,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t98,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t32,\n\t61,\n\t32,\n\t39,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t68,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t32,\n\t46,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t114,\n\t105,\n\t110,\n\t103,\n\t40,\n\t101,\n\t97,\n\t99,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t105,\n\t110,\n\t102,\n\t108,\n\t117,\n\t101,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t105,\n\t110,\n\t116,\n\t101,\n\t103,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t100,\n\t117,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t109,\n\t98,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t100,\n\t111,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t77,\n\t105,\n\t100,\n\t100,\n\t108,\n\t101,\n\t32,\n\t69,\n\t97,\n\t115,\n\t116,\n\t60,\n\t110,\n\t111,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t60,\n\t99,\n\t111,\n\t112,\n\t121,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t34,\n\t32,\n\t112,\n\t101,\n\t114,\n\t104,\n\t97,\n\t112,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t32,\n\t68,\n\t101,\n\t99,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t97,\n\t114,\n\t114,\n\t97,\n\t110,\n\t103,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t102,\n\t97,\n\t109,\n\t111,\n\t117,\n\t115,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t108,\n\t105,\n\t116,\n\t121,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t108,\n\t105,\n\t109,\n\t105,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t120,\n\t99,\n\t108,\n\t117,\n\t115,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t115,\n\t111,\n\t118,\n\t101,\n\t114,\n\t101,\n\t105,\n\t103,\n\t110,\n\t116,\n\t121,\n\t45,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t34,\n\t62,\n\t10,\n\t60,\n\t116,\n\t100,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t112,\n\t97,\n\t114,\n\t97,\n\t108,\n\t108,\n\t101,\n\t108,\n\t32,\n\t116,\n\t111,\n\t100,\n\t111,\n\t99,\n\t116,\n\t114,\n\t105,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t111,\n\t99,\n\t99,\n\t117,\n\t112,\n\t105,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t111,\n\t108,\n\t111,\n\t103,\n\t121,\n\t82,\n\t101,\n\t110,\n\t97,\n\t105,\n\t115,\n\t115,\n\t97,\n\t110,\n\t99,\n\t101,\n\t97,\n\t32,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t32,\n\t102,\n\t111,\n\t114,\n\t101,\n\t120,\n\t112,\n\t108,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t99,\n\t111,\n\t103,\n\t110,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t114,\n\t101,\n\t100,\n\t101,\n\t99,\n\t101,\n\t115,\n\t115,\n\t111,\n\t114,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t47,\n\t60,\n\t104,\n\t49,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t109,\n\t97,\n\t121,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t98,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t105,\n\t122,\n\t101,\n\t100,\n\t60,\n\t47,\n\t102,\n\t105,\n\t101,\n\t108,\n\t100,\n\t115,\n\t101,\n\t116,\n\t62,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t101,\n\t115,\n\t115,\n\t105,\n\t118,\n\t101,\n\t109,\n\t105,\n\t108,\n\t108,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t101,\n\t110,\n\t102,\n\t111,\n\t114,\n\t99,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t110,\n\t101,\n\t32,\n\t97,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t46,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t116,\n\t78,\n\t111,\n\t100,\n\t101,\n\t97,\n\t103,\n\t114,\n\t105,\n\t99,\n\t117,\n\t108,\n\t116,\n\t117,\n\t114,\n\t101,\n\t65,\n\t108,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t114,\n\t101,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t101,\n\t114,\n\t115,\n\t116,\n\t111,\n\t119,\n\t97,\n\t114,\n\t100,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t77,\n\t111,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t40,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t60,\n\t116,\n\t100,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t59,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t49,\n\t48,\n\t48,\n\t37,\n\t105,\n\t110,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t116,\n\t60,\n\t104,\n\t51,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t32,\n\t111,\n\t110,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t61,\n\t34,\n\t41,\n\t46,\n\t97,\n\t100,\n\t100,\n\t67,\n\t108,\n\t97,\n\t115,\n\t115,\n\t40,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t79,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t97,\n\t117,\n\t103,\n\t104,\n\t116,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t97,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t111,\n\t114,\n\t105,\n\t101,\n\t115,\n\t98,\n\t114,\n\t97,\n\t110,\n\t99,\n\t104,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t13,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t32,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t115,\n\t116,\n\t100,\n\t101,\n\t99,\n\t108,\n\t97,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t103,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t73,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t121,\n\t105,\n\t110,\n\t32,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t32,\n\t116,\n\t111,\n\t34,\n\t62,\n\t10,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t60,\n\t34,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t49,\n\t97,\n\t99,\n\t114,\n\t111,\n\t115,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t114,\n\t105,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t41,\n\t59,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t105,\n\t109,\n\t112,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t32,\n\t115,\n\t101,\n\t101,\n\t110,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t97,\n\t100,\n\t101,\n\t109,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t114,\n\t34,\n\t62,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t66,\n\t114,\n\t105,\n\t116,\n\t105,\n\t115,\n\t104,\n\t119,\n\t97,\n\t115,\n\t32,\n\t119,\n\t114,\n\t105,\n\t116,\n\t116,\n\t101,\n\t110,\n\t33,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t59,\n\t112,\n\t120,\n\t59,\n\t32,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t32,\n\t116,\n\t111,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t100,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t109,\n\t109,\n\t105,\n\t103,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t60,\n\t104,\n\t52,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t32,\n\t78,\n\t111,\n\t118,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t119,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t47,\n\t112,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t97,\n\t99,\n\t113,\n\t117,\n\t105,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t101,\n\t114,\n\t115,\n\t101,\n\t99,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t123,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t105,\n\t110,\n\t118,\n\t101,\n\t115,\n\t116,\n\t105,\n\t103,\n\t97,\n\t116,\n\t101,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t100,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t108,\n\t105,\n\t107,\n\t101,\n\t108,\n\t121,\n\t119,\n\t105,\n\t100,\n\t101,\n\t108,\n\t121,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t100,\n\t105,\n\t115,\n\t99,\n\t117,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t40,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t115,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t73,\n\t116,\n\t32,\n\t104,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t105,\n\t116,\n\t32,\n\t100,\n\t111,\n\t101,\n\t115,\n\t32,\n\t110,\n\t111,\n\t116,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t114,\n\t121,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t104,\n\t97,\n\t98,\n\t105,\n\t116,\n\t97,\n\t110,\n\t116,\n\t115,\n\t105,\n\t109,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t99,\n\t104,\n\t111,\n\t108,\n\t97,\n\t114,\n\t115,\n\t104,\n\t105,\n\t112,\n\t99,\n\t111,\n\t110,\n\t115,\n\t117,\n\t109,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t102,\n\t111,\n\t114,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t114,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t112,\n\t120,\n\t59,\n\t32,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t97,\n\t32,\n\t115,\n\t101,\n\t114,\n\t105,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t97,\n\t114,\n\t101,\n\t32,\n\t117,\n\t115,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t114,\n\t111,\n\t108,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t114,\n\t101,\n\t118,\n\t105,\n\t111,\n\t117,\n\t115,\n\t108,\n\t121,\n\t32,\n\t100,\n\t101,\n\t114,\n\t105,\n\t118,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t115,\n\t101,\n\t118,\n\t105,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t115,\n\t99,\n\t104,\n\t101,\n\t109,\n\t101,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t99,\n\t101,\n\t114,\n\t116,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t32,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t61,\n\t34,\n\t104,\n\t105,\n\t103,\n\t104,\n\t32,\n\t115,\n\t99,\n\t104,\n\t111,\n\t111,\n\t108,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t101,\n\t32,\n\t116,\n\t111,\n\t99,\n\t111,\n\t109,\n\t102,\n\t111,\n\t114,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t97,\n\t100,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t114,\n\t101,\n\t101,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t121,\n\t105,\n\t110,\n\t32,\n\t70,\n\t101,\n\t98,\n\t114,\n\t117,\n\t97,\n\t114,\n\t121,\n\t115,\n\t111,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t32,\n\t119,\n\t104,\n\t111,\n\t32,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t60,\n\t112,\n\t97,\n\t114,\n\t97,\n\t109,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t97,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t105,\n\t110,\n\t32,\n\t116,\n\t101,\n\t114,\n\t109,\n\t115,\n\t32,\n\t111,\n\t102,\n\t97,\n\t112,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t73,\n\t83,\n\t79,\n\t45,\n\t56,\n\t56,\n\t53,\n\t57,\n\t45,\n\t49,\n\t34,\n\t119,\n\t97,\n\t115,\n\t32,\n\t98,\n\t111,\n\t114,\n\t110,\n\t32,\n\t105,\n\t110,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t109,\n\t101,\n\t97,\n\t115,\n\t117,\n\t114,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t105,\n\t115,\n\t32,\n\t98,\n\t97,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t58,\n\t32,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t115,\n\t105,\n\t103,\n\t110,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t110,\n\t116,\n\t99,\n\t101,\n\t108,\n\t101,\n\t98,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t109,\n\t105,\n\t116,\n\t116,\n\t101,\n\t100,\n\t47,\n\t106,\n\t115,\n\t47,\n\t106,\n\t113,\n\t117,\n\t101,\n\t114,\n\t121,\n\t46,\n\t105,\n\t115,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t116,\n\t104,\n\t101,\n\t111,\n\t114,\n\t101,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t116,\n\t97,\n\t98,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t61,\n\t34,\n\t105,\n\t116,\n\t32,\n\t99,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t98,\n\t101,\n\t60,\n\t110,\n\t111,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t104,\n\t97,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t13,\n\t10,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t13,\n\t10,\n\t60,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t84,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t105,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t104,\n\t101,\n\t32,\n\t104,\n\t97,\n\t100,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t112,\n\t104,\n\t105,\n\t108,\n\t111,\n\t115,\n\t111,\n\t112,\n\t104,\n\t101,\n\t114,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t101,\n\t100,\n\t105,\n\t110,\n\t116,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t97,\n\t109,\n\t111,\n\t110,\n\t103,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t116,\n\t111,\n\t32,\n\t115,\n\t97,\n\t121,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t69,\n\t110,\n\t103,\n\t105,\n\t110,\n\t101,\n\t101,\n\t114,\n\t105,\n\t110,\n\t103,\n\t97,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t102,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t112,\n\t104,\n\t111,\n\t116,\n\t111,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t121,\n\t105,\n\t110,\n\t103,\n\t72,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t82,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t32,\n\t111,\n\t102,\n\t110,\n\t101,\n\t99,\n\t101,\n\t115,\n\t115,\n\t97,\n\t114,\n\t105,\n\t108,\n\t121,\n\t112,\n\t114,\n\t111,\n\t98,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t116,\n\t101,\n\t99,\n\t104,\n\t110,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t108,\n\t101,\n\t97,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t97,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t102,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t105,\n\t99,\n\t105,\n\t116,\n\t121,\n\t104,\n\t101,\n\t97,\n\t100,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t97,\n\t117,\n\t114,\n\t97,\n\t110,\n\t116,\n\t115,\n\t112,\n\t97,\n\t114,\n\t116,\n\t110,\n\t101,\n\t114,\n\t115,\n\t104,\n\t105,\n\t112,\n\t101,\n\t109,\n\t112,\n\t104,\n\t97,\n\t115,\n\t105,\n\t115,\n\t32,\n\t111,\n\t110,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t115,\n\t104,\n\t97,\n\t114,\n\t101,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t115,\n\t97,\n\t121,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t102,\n\t105,\n\t108,\n\t108,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t34,\n\t62,\n\t60,\n\t47,\n\t105,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t62,\n\t97,\n\t115,\n\t32,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t115,\n\t58,\n\t109,\n\t101,\n\t114,\n\t103,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t101,\n\t114,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t101,\n\t100,\n\t32,\n\t111,\n\t117,\n\t116,\n\t111,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t117,\n\t110,\n\t105,\n\t116,\n\t121,\n\t118,\n\t105,\n\t101,\n\t119,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t100,\n\t105,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t109,\n\t105,\n\t110,\n\t103,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t99,\n\t101,\n\t105,\n\t118,\n\t101,\n\t100,\n\t115,\n\t101,\n\t116,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t118,\n\t97,\n\t108,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t105,\n\t110,\n\t32,\n\t78,\n\t101,\n\t119,\n\t32,\n\t89,\n\t111,\n\t114,\n\t107,\n\t97,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t10,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t105,\n\t110,\n\t99,\n\t111,\n\t114,\n\t112,\n\t111,\n\t114,\n\t97,\n\t116,\n\t101,\n\t59,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t60,\n\t97,\n\t116,\n\t116,\n\t97,\n\t99,\n\t104,\n\t69,\n\t118,\n\t101,\n\t110,\n\t116,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t34,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t34,\n\t95,\n\t99,\n\t97,\n\t114,\n\t114,\n\t105,\n\t101,\n\t100,\n\t32,\n\t111,\n\t117,\n\t116,\n\t83,\n\t111,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t97,\n\t110,\n\t100,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t67,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t114,\n\t34,\n\t62,\n\t109,\n\t97,\n\t105,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t105,\n\t110,\n\t103,\n\t67,\n\t104,\n\t114,\n\t105,\n\t115,\n\t116,\n\t111,\n\t112,\n\t104,\n\t101,\n\t114,\n\t77,\n\t117,\n\t99,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t119,\n\t114,\n\t105,\n\t116,\n\t105,\n\t110,\n\t103,\n\t115,\n\t32,\n\t111,\n\t102,\n\t34,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t50,\n\t115,\n\t105,\n\t122,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t109,\n\t105,\n\t120,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t69,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t101,\n\t100,\n\t117,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t99,\n\t111,\n\t109,\n\t112,\n\t101,\n\t116,\n\t105,\n\t116,\n\t105,\n\t118,\n\t101,\n\t32,\n\t111,\n\t110,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t61,\n\t34,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t32,\n\t111,\n\t102,\n\t100,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t47,\n\t68,\n\t84,\n\t68,\n\t32,\n\t88,\n\t72,\n\t84,\n\t77,\n\t76,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t116,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t99,\n\t121,\n\t32,\n\t116,\n\t111,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t100,\n\t101,\n\t115,\n\t112,\n\t105,\n\t116,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t105,\n\t99,\n\t32,\n\t108,\n\t101,\n\t103,\n\t105,\n\t115,\n\t108,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t46,\n\t105,\n\t110,\n\t110,\n\t101,\n\t114,\n\t72,\n\t84,\n\t77,\n\t76,\n\t32,\n\t97,\n\t108,\n\t108,\n\t101,\n\t103,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t65,\n\t103,\n\t114,\n\t105,\n\t99,\n\t117,\n\t108,\n\t116,\n\t117,\n\t114,\n\t101,\n\t119,\n\t97,\n\t115,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t97,\n\t99,\n\t104,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t116,\n\t101,\n\t108,\n\t108,\n\t105,\n\t103,\n\t101,\n\t110,\n\t116,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t32,\n\t108,\n\t97,\n\t116,\n\t101,\n\t114,\n\t44,\n\t115,\n\t97,\n\t110,\n\t115,\n\t45,\n\t115,\n\t101,\n\t114,\n\t105,\n\t102,\n\t100,\n\t101,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t105,\n\t110,\n\t103,\n\t80,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t110,\n\t99,\n\t101,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t97,\n\t110,\n\t99,\n\t101,\n\t115,\n\t44,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t105,\n\t115,\n\t32,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t97,\n\t98,\n\t98,\n\t114,\n\t101,\n\t118,\n\t105,\n\t97,\n\t116,\n\t101,\n\t100,\n\t104,\n\t105,\n\t103,\n\t104,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t115,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t117,\n\t97,\n\t108,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t102,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t116,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t49,\n\t101,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t72,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t104,\n\t105,\n\t115,\n\t32,\n\t98,\n\t114,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t97,\n\t110,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t97,\n\t114,\n\t121,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t117,\n\t108,\n\t116,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t32,\n\t105,\n\t110,\n\t110,\n\t111,\n\t118,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t115,\n\t116,\n\t105,\n\t108,\n\t108,\n\t99,\n\t97,\n\t110,\n\t32,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t98,\n\t101,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t111,\n\t71,\n\t77,\n\t84,\n\t83,\n\t116,\n\t114,\n\t105,\n\t110,\n\t103,\n\t65,\n\t32,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t105,\n\t109,\n\t103,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t69,\n\t118,\n\t101,\n\t110,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t44,\n\t119,\n\t97,\n\t115,\n\t32,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t100,\n\t111,\n\t99,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t110,\n\t101,\n\t105,\n\t103,\n\t104,\n\t98,\n\t111,\n\t114,\n\t105,\n\t110,\n\t103,\n\t100,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t117,\n\t105,\n\t115,\n\t104,\n\t119,\n\t104,\n\t101,\n\t110,\n\t32,\n\t104,\n\t101,\n\t32,\n\t119,\n\t97,\n\t115,\n\t105,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t105,\n\t110,\n\t103,\n\t116,\n\t101,\n\t114,\n\t114,\n\t101,\n\t115,\n\t116,\n\t114,\n\t105,\n\t97,\n\t108,\n\t77,\n\t97,\n\t110,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t114,\n\t103,\n\t117,\n\t101,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t110,\n\t32,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t99,\n\t111,\n\t110,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t119,\n\t105,\n\t100,\n\t101,\n\t115,\n\t112,\n\t114,\n\t101,\n\t97,\n\t100,\n\t32,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t107,\n\t105,\n\t108,\n\t108,\n\t101,\n\t100,\n\t115,\n\t99,\n\t114,\n\t101,\n\t101,\n\t110,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t73,\n\t110,\n\t32,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t32,\n\t116,\n\t111,\n\t101,\n\t120,\n\t112,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t100,\n\t101,\n\t115,\n\t99,\n\t101,\n\t110,\n\t100,\n\t97,\n\t110,\n\t116,\n\t115,\n\t97,\n\t114,\n\t101,\n\t32,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t108,\n\t101,\n\t103,\n\t105,\n\t115,\n\t108,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t105,\n\t115,\n\t32,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t32,\n\t104,\n\t105,\n\t103,\n\t104,\n\t101,\n\t115,\n\t116,\n\t102,\n\t114,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t100,\n\t111,\n\t32,\n\t110,\n\t111,\n\t116,\n\t97,\n\t114,\n\t103,\n\t117,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t115,\n\t104,\n\t111,\n\t119,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t112,\n\t114,\n\t101,\n\t100,\n\t111,\n\t109,\n\t105,\n\t110,\n\t97,\n\t110,\n\t116,\n\t116,\n\t104,\n\t101,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t97,\n\t108,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t105,\n\t110,\n\t103,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t45,\n\t108,\n\t105,\n\t118,\n\t101,\n\t100,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t118,\n\t101,\n\t114,\n\t121,\n\t32,\n\t108,\n\t105,\n\t116,\n\t116,\n\t108,\n\t101,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t104,\n\t97,\n\t100,\n\t32,\n\t97,\n\t108,\n\t114,\n\t101,\n\t97,\n\t100,\n\t121,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t101,\n\t116,\n\t101,\n\t100,\n\t99,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t102,\n\t101,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t44,\n\t60,\n\t47,\n\t110,\n\t111,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t34,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t51,\n\t73,\n\t110,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t116,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t45,\n\t115,\n\t99,\n\t97,\n\t108,\n\t101,\n\t46,\n\t32,\n\t65,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t101,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t116,\n\t119,\n\t111,\n\t32,\n\t111,\n\t114,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t101,\n\t120,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t115,\n\t117,\n\t98,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t97,\n\t116,\n\t101,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t97,\n\t110,\n\t100,\n\t60,\n\t47,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t62,\n\t13,\n\t10,\n\t67,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t101,\n\t108,\n\t105,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t119,\n\t105,\n\t108,\n\t108,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t98,\n\t101,\n\t112,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t32,\n\t102,\n\t114,\n\t111,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t115,\n\t105,\n\t116,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t110,\n\t115,\n\t117,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t116,\n\t111,\n\t32,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t32,\n\t97,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t115,\n\t115,\n\t105,\n\t112,\n\t112,\n\t105,\n\t112,\n\t111,\n\t116,\n\t101,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t111,\n\t117,\n\t116,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t98,\n\t101,\n\t116,\n\t116,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t119,\n\t104,\n\t97,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t110,\n\t111,\n\t119,\n\t115,\n\t105,\n\t116,\n\t117,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t84,\n\t114,\n\t97,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t84,\n\t114,\n\t97,\n\t110,\n\t115,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t111,\n\t102,\n\t97,\n\t116,\n\t109,\n\t111,\n\t115,\n\t112,\n\t104,\n\t101,\n\t114,\n\t105,\n\t99,\n\t105,\n\t100,\n\t101,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t97,\n\t108,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t105,\n\t115,\n\t101,\n\t115,\n\t99,\n\t97,\n\t108,\n\t99,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t101,\n\t97,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t109,\n\t110,\n\t97,\n\t110,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t112,\n\t108,\n\t117,\n\t103,\n\t105,\n\t110,\n\t115,\n\t112,\n\t97,\n\t103,\n\t101,\n\t47,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t46,\n\t112,\n\t104,\n\t112,\n\t63,\n\t114,\n\t101,\n\t109,\n\t97,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t100,\n\t72,\n\t101,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t119,\n\t97,\n\t115,\n\t32,\n\t97,\n\t108,\n\t114,\n\t101,\n\t97,\n\t100,\n\t121,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t115,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t105,\n\t110,\n\t32,\n\t102,\n\t97,\n\t118,\n\t111,\n\t114,\n\t32,\n\t111,\n\t102,\n\t77,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t109,\n\t111,\n\t118,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t102,\n\t111,\n\t114,\n\t109,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t115,\n\t32,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t100,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t84,\n\t104,\n\t105,\n\t115,\n\t32,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t105,\n\t122,\n\t101,\n\t100,\n\t105,\n\t110,\n\t118,\n\t111,\n\t108,\n\t118,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t97,\n\t114,\n\t101,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t97,\n\t110,\n\t100,\n\t32,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t109,\n\t97,\n\t100,\n\t101,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t101,\n\t109,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t108,\n\t105,\n\t107,\n\t101,\n\t108,\n\t121,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t80,\n\t97,\n\t108,\n\t101,\n\t115,\n\t116,\n\t105,\n\t110,\n\t105,\n\t97,\n\t110,\n\t110,\n\t97,\n\t109,\n\t101,\n\t100,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t105,\n\t116,\n\t32,\n\t104,\n\t97,\n\t100,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t116,\n\t111,\n\t32,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t32,\n\t116,\n\t111,\n\t98,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t105,\n\t115,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t99,\n\t117,\n\t116,\n\t105,\n\t118,\n\t101,\n\t116,\n\t101,\n\t109,\n\t112,\n\t111,\n\t114,\n\t97,\n\t114,\n\t105,\n\t108,\n\t121,\n\t73,\n\t110,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t44,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t97,\n\t107,\n\t101,\n\t115,\n\t32,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t115,\n\t117,\n\t98,\n\t100,\n\t105,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t116,\n\t101,\n\t114,\n\t114,\n\t105,\n\t116,\n\t111,\n\t114,\n\t105,\n\t97,\n\t108,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t112,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t119,\n\t97,\n\t115,\n\t32,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t108,\n\t121,\n\t111,\n\t117,\n\t116,\n\t98,\n\t114,\n\t101,\n\t97,\n\t107,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t97,\n\t115,\n\t116,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t32,\n\t97,\n\t32,\n\t120,\n\t109,\n\t108,\n\t110,\n\t115,\n\t58,\n\t111,\n\t103,\n\t61,\n\t34,\n\t62,\n\t60,\n\t97,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t67,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t109,\n\t97,\n\t121,\n\t32,\n\t98,\n\t101,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t109,\n\t97,\n\t110,\n\t117,\n\t102,\n\t97,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t98,\n\t101,\n\t105,\n\t110,\n\t103,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t102,\n\t105,\n\t120,\n\t34,\n\t62,\n\t10,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t119,\n\t97,\n\t115,\n\t32,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t99,\n\t111,\n\t109,\n\t101,\n\t32,\n\t97,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t105,\n\t110,\n\t115,\n\t112,\n\t105,\n\t114,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t102,\n\t117,\n\t108,\n\t32,\n\t97,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t32,\n\t119,\n\t104,\n\t101,\n\t110,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t97,\n\t109,\n\t111,\n\t110,\n\t103,\n\t115,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t110,\n\t32,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t49,\n\t48,\n\t48,\n\t37,\n\t59,\n\t116,\n\t101,\n\t99,\n\t104,\n\t110,\n\t111,\n\t108,\n\t111,\n\t103,\n\t121,\n\t44,\n\t119,\n\t97,\n\t115,\n\t32,\n\t97,\n\t100,\n\t111,\n\t112,\n\t116,\n\t101,\n\t100,\n\t116,\n\t111,\n\t32,\n\t107,\n\t101,\n\t101,\n\t112,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t116,\n\t116,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t108,\n\t105,\n\t118,\n\t101,\n\t32,\n\t98,\n\t105,\n\t114,\n\t116,\n\t104,\n\t115,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t34,\n\t67,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t105,\n\t99,\n\t117,\n\t116,\n\t97,\n\t115,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t59,\n\t97,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t32,\n\t102,\n\t111,\n\t114,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t110,\n\t121,\n\t97,\n\t108,\n\t119,\n\t97,\n\t121,\n\t115,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t118,\n\t111,\n\t108,\n\t118,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t66,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t112,\n\t101,\n\t114,\n\t105,\n\t111,\n\t100,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t113,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t102,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t97,\n\t32,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t32,\n\t111,\n\t102,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t34,\n\t32,\n\t47,\n\t62,\n\t105,\n\t115,\n\t32,\n\t97,\n\t99,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t69,\n\t110,\n\t118,\n\t105,\n\t114,\n\t111,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t13,\n\t10,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t13,\n\t10,\n\t67,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t115,\n\t101,\n\t108,\n\t121,\n\t44,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t49,\n\t105,\n\t115,\n\t32,\n\t112,\n\t114,\n\t111,\n\t98,\n\t97,\n\t98,\n\t108,\n\t121,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t99,\n\t111,\n\t109,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t111,\n\t98,\n\t108,\n\t101,\n\t109,\n\t99,\n\t105,\n\t116,\n\t105,\n\t122,\n\t101,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t105,\n\t97,\n\t110,\n\t115,\n\t114,\n\t101,\n\t97,\n\t99,\n\t104,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t32,\n\t101,\n\t97,\n\t114,\n\t108,\n\t121,\n\t32,\n\t97,\n\t115,\n\t58,\n\t110,\n\t111,\n\t110,\n\t101,\n\t59,\n\t32,\n\t111,\n\t118,\n\t101,\n\t114,\n\t60,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t118,\n\t97,\n\t108,\n\t105,\n\t100,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t108,\n\t121,\n\t32,\n\t116,\n\t111,\n\t111,\n\t110,\n\t109,\n\t111,\n\t117,\n\t115,\n\t101,\n\t100,\n\t111,\n\t119,\n\t110,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t119,\n\t104,\n\t101,\n\t110,\n\t32,\n\t105,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t97,\n\t99,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t100,\n\t97,\n\t116,\n\t101,\n\t97,\n\t108,\n\t111,\n\t110,\n\t103,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t73,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t108,\n\t97,\n\t116,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t100,\n\t101,\n\t108,\n\t105,\n\t99,\n\t105,\n\t111,\n\t117,\n\t115,\n\t34,\n\t62,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t105,\n\t115,\n\t32,\n\t110,\n\t111,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t97,\n\t114,\n\t101,\n\t97,\n\t110,\n\t100,\n\t32,\n\t102,\n\t105,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t97,\n\t32,\n\t109,\n\t97,\n\t116,\n\t116,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t13,\n\t10,\n\t9,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t13,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t102,\n\t97,\n\t115,\n\t116,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t109,\n\t97,\n\t106,\n\t111,\n\t114,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t116,\n\t111,\n\t32,\n\t109,\n\t97,\n\t105,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t105,\n\t109,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t119,\n\t97,\n\t114,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t114,\n\t34,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t114,\n\t101,\n\t115,\n\t116,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t97,\n\t109,\n\t101,\n\t97,\n\t110,\n\t97,\n\t108,\n\t121,\n\t115,\n\t105,\n\t115,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t105,\n\t114,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t68,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t123,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t32,\n\t119,\n\t111,\n\t114,\n\t107,\n\t32,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t60,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t115,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t58,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t101,\n\t110,\n\t116,\n\t119,\n\t97,\n\t115,\n\t32,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t100,\n\t101,\n\t113,\n\t117,\n\t105,\n\t108,\n\t105,\n\t98,\n\t114,\n\t105,\n\t117,\n\t109,\n\t97,\n\t115,\n\t115,\n\t117,\n\t109,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t105,\n\t115,\n\t32,\n\t103,\n\t105,\n\t118,\n\t101,\n\t110,\n\t32,\n\t98,\n\t121,\n\t110,\n\t101,\n\t101,\n\t100,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t99,\n\t111,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t97,\n\t116,\n\t101,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t118,\n\t97,\n\t114,\n\t105,\n\t111,\n\t117,\n\t115,\n\t97,\n\t114,\n\t101,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t105,\n\t115,\n\t32,\n\t97,\n\t32,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t116,\n\t104,\n\t101,\n\t111,\n\t114,\n\t105,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t100,\n\t105,\n\t115,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t105,\n\t101,\n\t115,\n\t97,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t100,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t116,\n\t114,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t32,\n\t111,\n\t102,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t105,\n\t110,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t45,\n\t100,\n\t97,\n\t121,\n\t117,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t97,\n\t108,\n\t108,\n\t121,\n\t116,\n\t111,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t98,\n\t117,\n\t116,\n\t32,\n\t105,\n\t110,\n\t115,\n\t116,\n\t101,\n\t97,\n\t100,\n\t99,\n\t111,\n\t114,\n\t112,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t116,\n\t116,\n\t97,\n\t99,\n\t104,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t105,\n\t115,\n\t32,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t108,\n\t121,\n\t114,\n\t101,\n\t97,\n\t115,\n\t111,\n\t110,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t32,\n\t109,\n\t97,\n\t100,\n\t101,\n\t119,\n\t97,\n\t115,\n\t32,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t116,\n\t111,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t109,\n\t101,\n\t97,\n\t110,\n\t115,\n\t98,\n\t117,\n\t116,\n\t32,\n\t100,\n\t105,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t111,\n\t110,\n\t77,\n\t111,\n\t117,\n\t115,\n\t101,\n\t79,\n\t118,\n\t101,\n\t114,\n\t97,\n\t115,\n\t32,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t99,\n\t111,\n\t109,\n\t105,\n\t110,\n\t103,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t105,\n\t109,\n\t97,\n\t114,\n\t121,\n\t97,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t102,\n\t111,\n\t114,\n\t32,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t97,\n\t32,\n\t112,\n\t101,\n\t114,\n\t105,\n\t111,\n\t100,\n\t32,\n\t111,\n\t102,\n\t97,\n\t114,\n\t101,\n\t32,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t116,\n\t111,\n\t104,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t105,\n\t116,\n\t115,\n\t104,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t109,\n\t117,\n\t99,\n\t104,\n\t32,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t114,\n\t10,\n\t9,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t97,\n\t100,\n\t111,\n\t112,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t119,\n\t97,\n\t115,\n\t32,\n\t98,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t99,\n\t104,\n\t105,\n\t108,\n\t100,\n\t114,\n\t101,\n\t110,\n\t32,\n\t111,\n\t102,\n\t80,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t109,\n\t105,\n\t110,\n\t103,\n\t108,\n\t111,\n\t110,\n\t103,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t109,\n\t97,\n\t110,\n\t117,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t115,\n\t119,\n\t97,\n\t114,\n\t32,\n\t97,\n\t103,\n\t97,\n\t105,\n\t110,\n\t115,\n\t116,\n\t98,\n\t121,\n\t32,\n\t109,\n\t101,\n\t97,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t97,\n\t110,\n\t100,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t32,\n\t116,\n\t111,\n\t32,\n\t112,\n\t114,\n\t111,\n\t112,\n\t114,\n\t105,\n\t101,\n\t116,\n\t97,\n\t114,\n\t121,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t112,\n\t114,\n\t101,\n\t115,\n\t116,\n\t105,\n\t103,\n\t105,\n\t111,\n\t117,\n\t115,\n\t103,\n\t114,\n\t97,\n\t109,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t46,\n\t116,\n\t111,\n\t32,\n\t109,\n\t97,\n\t107,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t73,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t105,\n\t115,\n\t32,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t105,\n\t110,\n\t99,\n\t111,\n\t109,\n\t112,\n\t101,\n\t116,\n\t105,\n\t116,\n\t111,\n\t114,\n\t115,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t85,\n\t46,\n\t83,\n\t46,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t98,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t97,\n\t108,\n\t99,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t102,\n\t97,\n\t108,\n\t108,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t112,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t105,\n\t110,\n\t32,\n\t104,\n\t111,\n\t110,\n\t111,\n\t114,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t108,\n\t101,\n\t97,\n\t115,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t97,\n\t110,\n\t100,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t107,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t49,\n\t115,\n\t116,\n\t32,\n\t69,\n\t97,\n\t114,\n\t108,\n\t32,\n\t111,\n\t102,\n\t99,\n\t117,\n\t108,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t97,\n\t110,\n\t100,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t105,\n\t112,\n\t97,\n\t108,\n\t108,\n\t121,\n\t60,\n\t47,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t10,\n\t32,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t98,\n\t97,\n\t99,\n\t107,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t104,\n\t105,\n\t115,\n\t101,\n\t120,\n\t112,\n\t111,\n\t115,\n\t117,\n\t114,\n\t101,\n\t32,\n\t116,\n\t111,\n\t97,\n\t114,\n\t101,\n\t32,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t100,\n\t100,\n\t70,\n\t97,\n\t118,\n\t111,\n\t114,\n\t105,\n\t116,\n\t101,\n\t99,\n\t105,\n\t116,\n\t105,\n\t122,\n\t101,\n\t110,\n\t115,\n\t104,\n\t105,\n\t112,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t105,\n\t110,\n\t32,\n\t112,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t99,\n\t101,\n\t116,\n\t111,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t101,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t109,\n\t105,\n\t110,\n\t117,\n\t115,\n\t59,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t32,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t110,\n\t100,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t103,\n\t112,\n\t108,\n\t97,\n\t121,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t105,\n\t110,\n\t32,\n\t104,\n\t105,\n\t115,\n\t32,\n\t98,\n\t111,\n\t111,\n\t107,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t32,\n\t97,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t105,\n\t110,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t105,\n\t115,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t100,\n\t101,\n\t97,\n\t32,\n\t111,\n\t102,\n\t97,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t99,\n\t101,\n\t100,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t98,\n\t116,\n\t110,\n\t100,\n\t97,\n\t121,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t101,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t115,\n\t104,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t32,\n\t105,\n\t110,\n\t105,\n\t110,\n\t32,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t104,\n\t101,\n\t97,\n\t100,\n\t32,\n\t111,\n\t102,\n\t76,\n\t111,\n\t114,\n\t100,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t104,\n\t97,\n\t115,\n\t32,\n\t105,\n\t116,\n\t115,\n\t32,\n\t111,\n\t119,\n\t110,\n\t69,\n\t100,\n\t117,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t118,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t97,\n\t99,\n\t104,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t44,\n\t98,\n\t101,\n\t104,\n\t97,\n\t118,\n\t105,\n\t111,\n\t114,\n\t32,\n\t111,\n\t102,\n\t97,\n\t110,\n\t100,\n\t32,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t97,\n\t110,\n\t100,\n\t32,\n\t97,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t114,\n\t101,\n\t99,\n\t111,\n\t114,\n\t100,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t98,\n\t108,\n\t97,\n\t99,\n\t107,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t109,\n\t97,\n\t121,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t39,\n\t115,\n\t99,\n\t97,\n\t110,\n\t32,\n\t108,\n\t101,\n\t97,\n\t100,\n\t32,\n\t116,\n\t111,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t97,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t119,\n\t105,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t119,\n\t104,\n\t105,\n\t108,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t87,\n\t97,\n\t115,\n\t104,\n\t105,\n\t110,\n\t103,\n\t116,\n\t111,\n\t110,\n\t44,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t117,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t99,\n\t105,\n\t116,\n\t121,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t9,\n\t9,\n\t114,\n\t101,\n\t102,\n\t108,\n\t101,\n\t99,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t111,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t114,\n\t97,\n\t100,\n\t105,\n\t111,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t114,\n\t101,\n\t106,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t119,\n\t105,\n\t116,\n\t104,\n\t111,\n\t117,\n\t116,\n\t32,\n\t97,\n\t110,\n\t121,\n\t104,\n\t105,\n\t115,\n\t32,\n\t102,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t44,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t99,\n\t111,\n\t117,\n\t108,\n\t100,\n\t99,\n\t111,\n\t112,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t111,\n\t32,\n\t105,\n\t110,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t97,\n\t32,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t97,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t101,\n\t115,\n\t119,\n\t111,\n\t114,\n\t107,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t101,\n\t114,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t111,\n\t102,\n\t32,\n\t104,\n\t105,\n\t115,\n\t32,\n\t108,\n\t105,\n\t102,\n\t101,\n\t97,\n\t99,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t110,\n\t105,\n\t101,\n\t100,\n\t99,\n\t108,\n\t105,\n\t101,\n\t110,\n\t116,\n\t87,\n\t105,\n\t100,\n\t116,\n\t104,\n\t112,\n\t114,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t76,\n\t101,\n\t103,\n\t105,\n\t115,\n\t108,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t116,\n\t111,\n\t103,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t105,\n\t110,\n\t104,\n\t97,\n\t115,\n\t32,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t102,\n\t111,\n\t114,\n\t32,\n\t97,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t116,\n\t101,\n\t120,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t115,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t102,\n\t111,\n\t114,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t117,\n\t115,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t32,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t62,\n\t32,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t34,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t109,\n\t115,\n\t101,\n\t108,\n\t118,\n\t101,\n\t115,\n\t44,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t104,\n\t101,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t116,\n\t114,\n\t97,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t114,\n\t111,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t32,\n\t97,\n\t32,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t114,\n\t101,\n\t109,\n\t111,\n\t118,\n\t101,\n\t67,\n\t104,\n\t105,\n\t108,\n\t100,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t119,\n\t101,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t83,\n\t111,\n\t109,\n\t101,\n\t32,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t44,\n\t115,\n\t105,\n\t100,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t110,\n\t101,\n\t119,\n\t115,\n\t108,\n\t101,\n\t116,\n\t116,\n\t101,\n\t114,\n\t115,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t111,\n\t119,\n\t110,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t99,\n\t99,\n\t101,\n\t112,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t108,\n\t105,\n\t118,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t116,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t115,\n\t32,\n\t116,\n\t111,\n\t111,\n\t117,\n\t116,\n\t115,\n\t105,\n\t100,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t114,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t99,\n\t105,\n\t101,\n\t115,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t105,\n\t110,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t109,\n\t101,\n\t114,\n\t115,\n\t97,\n\t116,\n\t32,\n\t108,\n\t101,\n\t97,\n\t115,\n\t116,\n\t32,\n\t105,\n\t110,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t120,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t105,\n\t116,\n\t119,\n\t97,\n\t115,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t97,\n\t110,\n\t100,\n\t32,\n\t118,\n\t97,\n\t114,\n\t105,\n\t111,\n\t117,\n\t115,\n\t71,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t111,\n\t114,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t99,\n\t111,\n\t110,\n\t111,\n\t109,\n\t121,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t119,\n\t105,\n\t100,\n\t101,\n\t108,\n\t121,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t108,\n\t97,\n\t116,\n\t101,\n\t114,\n\t97,\n\t110,\n\t100,\n\t32,\n\t112,\n\t101,\n\t114,\n\t104,\n\t97,\n\t112,\n\t115,\n\t114,\n\t105,\n\t115,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t99,\n\t99,\n\t117,\n\t114,\n\t115,\n\t32,\n\t119,\n\t104,\n\t101,\n\t110,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t99,\n\t111,\n\t110,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t46,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t101,\n\t115,\n\t116,\n\t101,\n\t114,\n\t110,\n\t116,\n\t104,\n\t101,\n\t111,\n\t114,\n\t121,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t105,\n\t115,\n\t32,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t104,\n\t101,\n\t115,\n\t101,\n\t101,\n\t110,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t108,\n\t98,\n\t117,\n\t105,\n\t108,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t104,\n\t105,\n\t115,\n\t97,\n\t114,\n\t101,\n\t97,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t110,\n\t108,\n\t121,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t87,\n\t101,\n\t115,\n\t116,\n\t101,\n\t114,\n\t110,\n\t84,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t105,\n\t115,\n\t32,\n\t110,\n\t111,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t83,\n\t116,\n\t97,\n\t116,\n\t105,\n\t115,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t99,\n\t111,\n\t108,\n\t115,\n\t112,\n\t97,\n\t110,\n\t61,\n\t50,\n\t32,\n\t124,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t32,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t32,\n\t116,\n\t111,\n\t116,\n\t111,\n\t112,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t97,\n\t108,\n\t99,\n\t114,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t97,\n\t32,\n\t67,\n\t104,\n\t114,\n\t105,\n\t115,\n\t116,\n\t105,\n\t97,\n\t110,\n\t100,\n\t101,\n\t99,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t105,\n\t115,\n\t32,\n\t101,\n\t113,\n\t117,\n\t97,\n\t108,\n\t32,\n\t116,\n\t111,\n\t112,\n\t114,\n\t111,\n\t98,\n\t108,\n\t101,\n\t109,\n\t115,\n\t32,\n\t111,\n\t102,\n\t84,\n\t104,\n\t105,\n\t115,\n\t32,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t109,\n\t101,\n\t114,\n\t99,\n\t104,\n\t97,\n\t110,\n\t100,\n\t105,\n\t115,\n\t101,\n\t102,\n\t111,\n\t114,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t110,\n\t111,\n\t32,\n\t101,\n\t118,\n\t105,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t101,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t101,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t32,\n\t105,\n\t110,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t46,\n\t32,\n\t84,\n\t104,\n\t101,\n\t99,\n\t111,\n\t109,\n\t47,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t115,\n\t47,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t109,\n\t97,\n\t107,\n\t101,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t115,\n\t114,\n\t101,\n\t109,\n\t97,\n\t105,\n\t110,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t108,\n\t105,\n\t116,\n\t101,\n\t114,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t44,\n\t105,\n\t115,\n\t32,\n\t97,\n\t32,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t110,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t112,\n\t114,\n\t111,\n\t98,\n\t108,\n\t101,\n\t109,\n\t115,\n\t32,\n\t105,\n\t110,\n\t116,\n\t105,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t101,\n\t102,\n\t101,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t98,\n\t111,\n\t100,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t32,\n\t102,\n\t101,\n\t119,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t109,\n\t117,\n\t99,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t111,\n\t114,\n\t107,\n\t32,\n\t111,\n\t102,\n\t67,\n\t97,\n\t108,\n\t105,\n\t102,\n\t111,\n\t114,\n\t110,\n\t105,\n\t97,\n\t44,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t32,\n\t97,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t112,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t109,\n\t111,\n\t118,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t105,\n\t110,\n\t9,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t105,\n\t116,\n\t34,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t97,\n\t114,\n\t101,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t120,\n\t112,\n\t108,\n\t97,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t108,\n\t101,\n\t97,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t9,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t119,\n\t97,\n\t115,\n\t32,\n\t103,\n\t114,\n\t97,\n\t110,\n\t116,\n\t101,\n\t100,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t119,\n\t97,\n\t115,\n\t32,\n\t115,\n\t101,\n\t101,\n\t110,\n\t32,\n\t97,\n\t115,\n\t97,\n\t110,\n\t100,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t111,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t112,\n\t114,\n\t111,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t98,\n\t101,\n\t115,\n\t116,\n\t101,\n\t97,\n\t99,\n\t104,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t46,\n\t67,\n\t111,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t105,\n\t110,\n\t101,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t100,\n\t105,\n\t97,\n\t108,\n\t101,\n\t99,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t116,\n\t111,\n\t32,\n\t114,\n\t101,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t119,\n\t97,\n\t115,\n\t32,\n\t114,\n\t101,\n\t110,\n\t97,\n\t109,\n\t101,\n\t100,\n\t97,\n\t32,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t97,\n\t108,\n\t108,\n\t97,\n\t117,\n\t110,\n\t99,\n\t104,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t101,\n\t115,\n\t116,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t97,\n\t110,\n\t100,\n\t32,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t32,\n\t116,\n\t119,\n\t111,\n\t105,\n\t115,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t32,\n\t97,\n\t110,\n\t100,\n\t99,\n\t111,\n\t110,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t44,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t105,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t101,\n\t110,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t116,\n\t104,\n\t101,\n\t109,\n\t115,\n\t101,\n\t108,\n\t118,\n\t101,\n\t115,\n\t46,\n\t113,\n\t117,\n\t97,\n\t110,\n\t116,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t114,\n\t97,\n\t110,\n\t115,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t99,\n\t121,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t97,\n\t109,\n\t101,\n\t32,\n\t97,\n\t115,\n\t116,\n\t111,\n\t32,\n\t106,\n\t111,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t121,\n\t32,\n\t97,\n\t110,\n\t100,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t84,\n\t104,\n\t105,\n\t115,\n\t32,\n\t108,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t97,\n\t32,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t115,\n\t116,\n\t32,\n\t116,\n\t111,\n\t108,\n\t97,\n\t115,\n\t116,\n\t73,\n\t110,\n\t100,\n\t101,\n\t120,\n\t79,\n\t102,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t104,\n\t105,\n\t115,\n\t105,\n\t115,\n\t32,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t101,\n\t114,\n\t109,\n\t32,\n\t105,\n\t115,\n\t105,\n\t115,\n\t32,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t101,\n\t100,\n\t112,\n\t114,\n\t111,\n\t116,\n\t101,\n\t99,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t110,\n\t103,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t84,\n\t104,\n\t101,\n\t32,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t105,\n\t116,\n\t101,\n\t32,\n\t111,\n\t102,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t44,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t87,\n\t101,\n\t115,\n\t116,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t115,\n\t104,\n\t111,\n\t117,\n\t108,\n\t100,\n\t115,\n\t108,\n\t111,\n\t118,\n\t101,\n\t110,\n\t196,\n\t141,\n\t105,\n\t110,\n\t97,\n\t99,\n\t111,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t105,\n\t111,\n\t115,\n\t117,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t100,\n\t97,\n\t100,\n\t99,\n\t111,\n\t110,\n\t100,\n\t105,\n\t99,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t97,\n\t99,\n\t116,\n\t105,\n\t118,\n\t105,\n\t100,\n\t97,\n\t100,\n\t101,\n\t115,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t116,\n\t101,\n\t99,\n\t110,\n\t111,\n\t108,\n\t111,\n\t103,\n\t195,\n\t173,\n\t97,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t112,\n\t117,\n\t110,\n\t116,\n\t117,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t97,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t115,\n\t101,\n\t195,\n\t177,\n\t97,\n\t99,\n\t97,\n\t116,\n\t101,\n\t103,\n\t111,\n\t114,\n\t195,\n\t173,\n\t97,\n\t115,\n\t114,\n\t101,\n\t103,\n\t105,\n\t115,\n\t116,\n\t114,\n\t97,\n\t114,\n\t115,\n\t101,\n\t112,\n\t114,\n\t111,\n\t102,\n\t101,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t116,\n\t114,\n\t97,\n\t116,\n\t97,\n\t109,\n\t105,\n\t101,\n\t110,\n\t116,\n\t111,\n\t114,\n\t101,\n\t103,\n\t195,\n\t173,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t101,\n\t115,\n\t101,\n\t99,\n\t114,\n\t101,\n\t116,\n\t97,\n\t114,\n\t195,\n\t173,\n\t97,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t105,\n\t112,\n\t97,\n\t108,\n\t101,\n\t115,\n\t112,\n\t114,\n\t111,\n\t116,\n\t101,\n\t99,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t101,\n\t115,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t99,\n\t105,\n\t97,\n\t112,\n\t111,\n\t115,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t100,\n\t97,\n\t100,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t97,\n\t110,\n\t116,\n\t101,\n\t99,\n\t114,\n\t101,\n\t99,\n\t105,\n\t109,\n\t105,\n\t101,\n\t110,\n\t116,\n\t111,\n\t110,\n\t101,\n\t99,\n\t101,\n\t115,\n\t105,\n\t100,\n\t97,\n\t100,\n\t101,\n\t115,\n\t115,\n\t117,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t105,\n\t114,\n\t115,\n\t101,\n\t97,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t100,\n\t105,\n\t115,\n\t112,\n\t111,\n\t110,\n\t105,\n\t98,\n\t108,\n\t101,\n\t115,\n\t101,\n\t118,\n\t97,\n\t108,\n\t117,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t101,\n\t115,\n\t116,\n\t117,\n\t100,\n\t105,\n\t97,\n\t110,\n\t116,\n\t101,\n\t115,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t97,\n\t98,\n\t108,\n\t101,\n\t114,\n\t101,\n\t115,\n\t111,\n\t108,\n\t117,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t103,\n\t117,\n\t97,\n\t100,\n\t97,\n\t108,\n\t97,\n\t106,\n\t97,\n\t114,\n\t97,\n\t114,\n\t101,\n\t103,\n\t105,\n\t115,\n\t116,\n\t114,\n\t97,\n\t100,\n\t111,\n\t115,\n\t111,\n\t112,\n\t111,\n\t114,\n\t116,\n\t117,\n\t110,\n\t105,\n\t100,\n\t97,\n\t100,\n\t99,\n\t111,\n\t109,\n\t101,\n\t114,\n\t99,\n\t105,\n\t97,\n\t108,\n\t101,\n\t115,\n\t102,\n\t111,\n\t116,\n\t111,\n\t103,\n\t114,\n\t97,\n\t102,\n\t195,\n\t173,\n\t97,\n\t97,\n\t117,\n\t116,\n\t111,\n\t114,\n\t105,\n\t100,\n\t97,\n\t100,\n\t101,\n\t115,\n\t105,\n\t110,\n\t103,\n\t101,\n\t110,\n\t105,\n\t101,\n\t114,\n\t195,\n\t173,\n\t97,\n\t116,\n\t101,\n\t108,\n\t101,\n\t118,\n\t105,\n\t115,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t111,\n\t109,\n\t112,\n\t101,\n\t116,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t99,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t99,\n\t105,\n\t100,\n\t111,\n\t115,\n\t105,\n\t109,\n\t112,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t101,\n\t97,\n\t99,\n\t116,\n\t117,\n\t97,\n\t108,\n\t109,\n\t101,\n\t110,\n\t116,\n\t101,\n\t110,\n\t97,\n\t118,\n\t101,\n\t103,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t111,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t105,\n\t100,\n\t97,\n\t100,\n\t108,\n\t105,\n\t110,\n\t101,\n\t45,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t121,\n\t58,\n\t34,\n\t32,\n\t58,\n\t32,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t108,\n\t105,\n\t110,\n\t107,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t47,\n\t47,\n\t60,\n\t33,\n\t91,\n\t67,\n\t68,\n\t65,\n\t84,\n\t65,\n\t91,\n\t10,\n\t79,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t122,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t100,\n\t105,\n\t115,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t48,\n\t112,\n\t120,\n\t59,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t104,\n\t105,\n\t112,\n\t100,\n\t101,\n\t118,\n\t105,\n\t99,\n\t101,\n\t45,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t60,\n\t108,\n\t97,\n\t98,\n\t101,\n\t108,\n\t32,\n\t102,\n\t111,\n\t114,\n\t61,\n\t34,\n\t114,\n\t101,\n\t103,\n\t105,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t60,\n\t47,\n\t110,\n\t111,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t47,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t34,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t46,\n\t111,\n\t112,\n\t101,\n\t110,\n\t40,\n\t32,\n\t33,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t59,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t47,\n\t105,\n\t110,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t103,\n\t111,\n\t111,\n\t103,\n\t108,\n\t101,\n\t111,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t122,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t117,\n\t116,\n\t111,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t114,\n\t118,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t60,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t105,\n\t110,\n\t116,\n\t101,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t117,\n\t97,\n\t108,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t108,\n\t101,\n\t102,\n\t116,\n\t58,\n\t49,\n\t56,\n\t116,\n\t104,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t97,\n\t110,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t105,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t97,\n\t98,\n\t98,\n\t114,\n\t101,\n\t118,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t111,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t115,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t105,\n\t118,\n\t105,\n\t108,\n\t105,\n\t122,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t49,\n\t57,\n\t116,\n\t104,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t97,\n\t114,\n\t99,\n\t104,\n\t105,\n\t116,\n\t101,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t105,\n\t110,\n\t99,\n\t111,\n\t114,\n\t112,\n\t111,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t50,\n\t48,\n\t116,\n\t104,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t45,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t114,\n\t34,\n\t62,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t110,\n\t111,\n\t116,\n\t97,\n\t98,\n\t108,\n\t121,\n\t47,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t110,\n\t111,\n\t116,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t39,\n\t117,\n\t110,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t101,\n\t100,\n\t39,\n\t41,\n\t70,\n\t117,\n\t114,\n\t116,\n\t104,\n\t101,\n\t114,\n\t109,\n\t111,\n\t114,\n\t101,\n\t44,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t118,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t105,\n\t110,\n\t110,\n\t101,\n\t114,\n\t72,\n\t84,\n\t77,\n\t76,\n\t32,\n\t61,\n\t32,\n\t112,\n\t114,\n\t105,\n\t111,\n\t114,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t114,\n\t97,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t110,\n\t101,\n\t103,\n\t111,\n\t116,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t104,\n\t101,\n\t97,\n\t100,\n\t113,\n\t117,\n\t97,\n\t114,\n\t116,\n\t101,\n\t114,\n\t115,\n\t83,\n\t111,\n\t117,\n\t116,\n\t104,\n\t32,\n\t65,\n\t102,\n\t114,\n\t105,\n\t99,\n\t97,\n\t117,\n\t110,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t102,\n\t117,\n\t108,\n\t80,\n\t101,\n\t110,\n\t110,\n\t115,\n\t121,\n\t108,\n\t118,\n\t97,\n\t110,\n\t105,\n\t97,\n\t65,\n\t115,\n\t32,\n\t97,\n\t32,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t44,\n\t60,\n\t104,\n\t116,\n\t109,\n\t108,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t61,\n\t34,\n\t38,\n\t108,\n\t116,\n\t59,\n\t47,\n\t115,\n\t117,\n\t112,\n\t38,\n\t103,\n\t116,\n\t59,\n\t100,\n\t101,\n\t97,\n\t108,\n\t105,\n\t110,\n\t103,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t112,\n\t104,\n\t105,\n\t108,\n\t97,\n\t100,\n\t101,\n\t108,\n\t112,\n\t104,\n\t105,\n\t97,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t41,\n\t59,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t45,\n\t116,\n\t111,\n\t112,\n\t58,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t103,\n\t101,\n\t116,\n\t65,\n\t116,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t101,\n\t105,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t101,\n\t99,\n\t104,\n\t110,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t101,\n\t115,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t61,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t123,\n\t115,\n\t117,\n\t98,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t108,\n\t46,\n\t100,\n\t116,\n\t100,\n\t34,\n\t62,\n\t13,\n\t10,\n\t60,\n\t104,\n\t116,\n\t103,\n\t101,\n\t111,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t105,\n\t99,\n\t97,\n\t108,\n\t67,\n\t111,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t39,\n\t44,\n\t32,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t103,\n\t114,\n\t105,\n\t99,\n\t117,\n\t108,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t32,\n\t49,\n\t97,\n\t32,\n\t118,\n\t97,\n\t114,\n\t105,\n\t101,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t69,\n\t110,\n\t99,\n\t121,\n\t99,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t105,\n\t97,\n\t105,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t100,\n\t101,\n\t109,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t97,\n\t99,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t117,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t68,\n\t101,\n\t109,\n\t111,\n\t103,\n\t114,\n\t97,\n\t112,\n\t104,\n\t105,\n\t99,\n\t115,\n\t41,\n\t59,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t60,\n\t100,\n\t101,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t107,\n\t110,\n\t111,\n\t119,\n\t108,\n\t101,\n\t100,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t115,\n\t97,\n\t116,\n\t105,\n\t115,\n\t102,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t108,\n\t121,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t32,\n\t40,\n\t85,\n\t83,\n\t41,\n\t97,\n\t112,\n\t112,\n\t101,\n\t110,\n\t100,\n\t67,\n\t104,\n\t105,\n\t108,\n\t100,\n\t40,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t46,\n\t32,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t105,\n\t110,\n\t116,\n\t101,\n\t108,\n\t108,\n\t105,\n\t103,\n\t101,\n\t110,\n\t99,\n\t101,\n\t34,\n\t32,\n\t116,\n\t97,\n\t98,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t61,\n\t34,\n\t102,\n\t108,\n\t111,\n\t97,\n\t116,\n\t58,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t59,\n\t67,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t119,\n\t101,\n\t97,\n\t108,\n\t116,\n\t104,\n\t114,\n\t97,\n\t110,\n\t103,\n\t105,\n\t110,\n\t103,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t105,\n\t110,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t116,\n\t32,\n\t108,\n\t101,\n\t97,\n\t115,\n\t116,\n\t32,\n\t111,\n\t110,\n\t101,\n\t114,\n\t101,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t110,\n\t99,\n\t121,\n\t99,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t105,\n\t97,\n\t59,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t49,\n\t106,\n\t117,\n\t114,\n\t105,\n\t115,\n\t100,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t34,\n\t62,\n\t60,\n\t97,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t73,\n\t110,\n\t32,\n\t97,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t44,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t43,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t115,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t99,\n\t116,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t108,\n\t121,\n\t114,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t105,\n\t110,\n\t103,\n\t38,\n\t108,\n\t116,\n\t59,\n\t109,\n\t97,\n\t116,\n\t104,\n\t38,\n\t103,\n\t116,\n\t59,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t111,\n\t99,\n\t99,\n\t97,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t110,\n\t97,\n\t118,\n\t105,\n\t103,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t34,\n\t62,\n\t99,\n\t111,\n\t109,\n\t112,\n\t101,\n\t110,\n\t115,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t104,\n\t97,\n\t109,\n\t112,\n\t105,\n\t111,\n\t110,\n\t115,\n\t104,\n\t105,\n\t112,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t61,\n\t34,\n\t97,\n\t108,\n\t108,\n\t34,\n\t32,\n\t118,\n\t105,\n\t111,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t111,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t116,\n\t114,\n\t117,\n\t101,\n\t59,\n\t83,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t47,\n\t47,\n\t69,\n\t78,\n\t34,\n\t32,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t118,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t73,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t105,\n\t99,\n\t117,\n\t108,\n\t116,\n\t105,\n\t101,\n\t115,\n\t67,\n\t104,\n\t97,\n\t109,\n\t112,\n\t105,\n\t111,\n\t110,\n\t115,\n\t104,\n\t105,\n\t112,\n\t99,\n\t97,\n\t112,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t60,\n\t33,\n\t91,\n\t101,\n\t110,\n\t100,\n\t105,\n\t102,\n\t93,\n\t45,\n\t45,\n\t62,\n\t125,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t67,\n\t104,\n\t114,\n\t105,\n\t115,\n\t116,\n\t105,\n\t97,\n\t110,\n\t105,\n\t116,\n\t121,\n\t102,\n\t111,\n\t114,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t44,\n\t80,\n\t114,\n\t111,\n\t102,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t114,\n\t101,\n\t115,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t119,\n\t97,\n\t115,\n\t32,\n\t114,\n\t101,\n\t108,\n\t101,\n\t97,\n\t115,\n\t101,\n\t100,\n\t40,\n\t115,\n\t117,\n\t99,\n\t104,\n\t32,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t109,\n\t111,\n\t118,\n\t101,\n\t67,\n\t108,\n\t97,\n\t115,\n\t115,\n\t40,\n\t117,\n\t110,\n\t101,\n\t109,\n\t112,\n\t108,\n\t111,\n\t121,\n\t109,\n\t101,\n\t110,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t47,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t32,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t34,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t105,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t101,\n\t108,\n\t111,\n\t110,\n\t103,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t71,\n\t117,\n\t105,\n\t100,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t118,\n\t101,\n\t114,\n\t119,\n\t104,\n\t101,\n\t108,\n\t109,\n\t105,\n\t110,\n\t103,\n\t97,\n\t103,\n\t97,\n\t105,\n\t110,\n\t115,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t44,\n\t10,\n\t46,\n\t110,\n\t111,\n\t110,\n\t116,\n\t111,\n\t117,\n\t99,\n\t104,\n\t32,\n\t111,\n\t98,\n\t115,\n\t101,\n\t114,\n\t118,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t60,\n\t47,\n\t97,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t102,\n\t32,\n\t40,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t58,\n\t32,\n\t49,\n\t112,\n\t120,\n\t32,\n\t123,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t49,\n\t116,\n\t114,\n\t101,\n\t97,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t48,\n\t34,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t49,\n\t109,\n\t111,\n\t100,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t73,\n\t110,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t103,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t97,\n\t99,\n\t104,\n\t105,\n\t101,\n\t118,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t105,\n\t110,\n\t103,\n\t74,\n\t97,\n\t118,\n\t97,\n\t83,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t32,\n\t110,\n\t101,\n\t118,\n\t101,\n\t114,\n\t116,\n\t104,\n\t101,\n\t108,\n\t101,\n\t115,\n\t115,\n\t115,\n\t105,\n\t103,\n\t110,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t110,\n\t99,\n\t101,\n\t66,\n\t114,\n\t111,\n\t97,\n\t100,\n\t99,\n\t97,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t62,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t114,\n\t34,\n\t62,\n\t10,\n\t115,\n\t117,\n\t99,\n\t104,\n\t32,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t102,\n\t108,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t97,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t115,\n\t114,\n\t99,\n\t61,\n\t39,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t110,\n\t97,\n\t118,\n\t105,\n\t103,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t34,\n\t32,\n\t104,\n\t97,\n\t108,\n\t102,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t32,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t97,\n\t100,\n\t118,\n\t97,\n\t110,\n\t116,\n\t97,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t100,\n\t105,\n\t115,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t102,\n\t117,\n\t110,\n\t100,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t32,\n\t109,\n\t101,\n\t116,\n\t114,\n\t111,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t97,\n\t110,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t112,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t101,\n\t34,\n\t32,\n\t120,\n\t109,\n\t108,\n\t58,\n\t108,\n\t97,\n\t110,\n\t103,\n\t61,\n\t34,\n\t100,\n\t101,\n\t108,\n\t105,\n\t98,\n\t101,\n\t114,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t118,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t114,\n\t118,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t109,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t74,\n\t101,\n\t115,\n\t117,\n\t115,\n\t32,\n\t67,\n\t104,\n\t114,\n\t105,\n\t115,\n\t116,\n\t80,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t100,\n\t105,\n\t115,\n\t97,\n\t103,\n\t114,\n\t101,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t114,\n\t44,\n\t32,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t105,\n\t115,\n\t32,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t97,\n\t108,\n\t112,\n\t104,\n\t97,\n\t98,\n\t101,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t105,\n\t115,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t47,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t108,\n\t111,\n\t119,\n\t58,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t59,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t105,\n\t110,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t120,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t97,\n\t108,\n\t108,\n\t32,\n\t111,\n\t118,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t101,\n\t116,\n\t9,\n\t60,\n\t117,\n\t108,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t108,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t110,\n\t101,\n\t105,\n\t103,\n\t104,\n\t98,\n\t111,\n\t114,\n\t104,\n\t111,\n\t111,\n\t100,\n\t97,\n\t114,\n\t109,\n\t101,\n\t100,\n\t32,\n\t102,\n\t111,\n\t114,\n\t99,\n\t101,\n\t115,\n\t114,\n\t101,\n\t100,\n\t117,\n\t99,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t101,\n\t115,\n\t32,\n\t116,\n\t111,\n\t78,\n\t111,\n\t110,\n\t101,\n\t116,\n\t104,\n\t101,\n\t108,\n\t101,\n\t115,\n\t115,\n\t44,\n\t116,\n\t101,\n\t109,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t10,\n\t9,\n\t9,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t99,\n\t108,\n\t111,\n\t115,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t105,\n\t115,\n\t32,\n\t97,\n\t98,\n\t111,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t40,\n\t115,\n\t101,\n\t101,\n\t32,\n\t98,\n\t101,\n\t108,\n\t111,\n\t119,\n\t41,\n\t46,\n\t34,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t112,\n\t114,\n\t111,\n\t102,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t105,\n\t115,\n\t32,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t108,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t9,\n\t9,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t10,\n\t9,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t97,\n\t99,\n\t99,\n\t101,\n\t108,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t72,\n\t97,\n\t108,\n\t108,\n\t32,\n\t111,\n\t102,\n\t32,\n\t70,\n\t97,\n\t109,\n\t101,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t39,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t118,\n\t101,\n\t114,\n\t121,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t123,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t58,\n\t116,\n\t114,\n\t97,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t101,\n\t120,\n\t112,\n\t108,\n\t111,\n\t105,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t109,\n\t101,\n\t114,\n\t103,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t65,\n\t32,\n\t72,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t115,\n\t105,\n\t103,\n\t110,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t110,\n\t116,\n\t32,\n\t109,\n\t97,\n\t110,\n\t117,\n\t102,\n\t97,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t100,\n\t101,\n\t120,\n\t112,\n\t101,\n\t99,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t62,\n\t60,\n\t110,\n\t111,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t60,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t32,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t104,\n\t97,\n\t115,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t110,\n\t101,\n\t105,\n\t103,\n\t104,\n\t98,\n\t111,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t119,\n\t105,\n\t116,\n\t104,\n\t111,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t100,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t9,\n\t60,\n\t108,\n\t105,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t105,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t83,\n\t111,\n\t118,\n\t105,\n\t101,\n\t116,\n\t32,\n\t85,\n\t110,\n\t105,\n\t111,\n\t110,\n\t97,\n\t99,\n\t107,\n\t110,\n\t111,\n\t119,\n\t108,\n\t101,\n\t100,\n\t103,\n\t101,\n\t100,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t110,\n\t97,\n\t109,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t116,\n\t116,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t97,\n\t116,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t73,\n\t110,\n\t32,\n\t102,\n\t97,\n\t99,\n\t116,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t108,\n\t105,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t97,\n\t105,\n\t109,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t115,\n\t117,\n\t105,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t117,\n\t99,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t108,\n\t111,\n\t110,\n\t105,\n\t122,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t99,\n\t97,\n\t110,\n\t99,\n\t101,\n\t108,\n\t66,\n\t117,\n\t98,\n\t98,\n\t108,\n\t101,\n\t32,\n\t73,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t115,\n\t32,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t101,\n\t100,\n\t114,\n\t101,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t111,\n\t114,\n\t32,\n\t108,\n\t101,\n\t115,\n\t115,\n\t105,\n\t110,\n\t32,\n\t83,\n\t101,\n\t112,\n\t116,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t73,\n\t110,\n\t116,\n\t101,\n\t108,\n\t108,\n\t105,\n\t103,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t112,\n\t120,\n\t59,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t32,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t116,\n\t111,\n\t109,\n\t97,\n\t110,\n\t117,\n\t102,\n\t97,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t114,\n\t104,\n\t117,\n\t109,\n\t97,\n\t110,\n\t32,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t115,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t112,\n\t114,\n\t111,\n\t112,\n\t111,\n\t114,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t111,\n\t117,\n\t116,\n\t115,\n\t105,\n\t100,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t111,\n\t109,\n\t105,\n\t99,\n\t97,\n\t108,\n\t104,\n\t117,\n\t109,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t105,\n\t110,\n\t103,\n\t115,\n\t110,\n\t97,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t32,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t105,\n\t110,\n\t97,\n\t114,\n\t101,\n\t32,\n\t98,\n\t97,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t115,\n\t109,\n\t97,\n\t108,\n\t108,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t97,\n\t32,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t32,\n\t119,\n\t104,\n\t111,\n\t101,\n\t120,\n\t112,\n\t97,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t97,\n\t114,\n\t103,\n\t117,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t110,\n\t111,\n\t119,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t73,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t97,\n\t114,\n\t108,\n\t121,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t116,\n\t101,\n\t100,\n\t101,\n\t114,\n\t105,\n\t118,\n\t101,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t83,\n\t99,\n\t97,\n\t110,\n\t100,\n\t105,\n\t110,\n\t97,\n\t118,\n\t105,\n\t97,\n\t110,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t110,\n\t32,\n\t101,\n\t115,\n\t116,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t100,\n\t116,\n\t104,\n\t101,\n\t32,\n\t78,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t112,\n\t97,\n\t103,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t99,\n\t111,\n\t109,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t101,\n\t100,\n\t97,\n\t110,\n\t97,\n\t108,\n\t111,\n\t103,\n\t111,\n\t117,\n\t115,\n\t32,\n\t116,\n\t111,\n\t97,\n\t114,\n\t101,\n\t32,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t100,\n\t47,\n\t117,\n\t108,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t119,\n\t97,\n\t115,\n\t32,\n\t98,\n\t97,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t97,\n\t110,\n\t100,\n\t32,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t97,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t116,\n\t34,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t34,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t99,\n\t97,\n\t112,\n\t116,\n\t117,\n\t114,\n\t101,\n\t100,\n\t110,\n\t111,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t114,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t62,\n\t13,\n\t10,\n\t60,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t13,\n\t10,\n\t60,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t100,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t73,\n\t109,\n\t112,\n\t101,\n\t114,\n\t105,\n\t97,\n\t108,\n\t99,\n\t111,\n\t109,\n\t112,\n\t111,\n\t110,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t110,\n\t111,\n\t114,\n\t116,\n\t104,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t67,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t98,\n\t101,\n\t102,\n\t111,\n\t114,\n\t32,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t105,\n\t110,\n\t118,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t120,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t58,\n\t32,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t32,\n\t105,\n\t116,\n\t115,\n\t32,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t108,\n\t105,\n\t110,\n\t116,\n\t111,\n\t32,\n\t97,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t115,\n\t97,\n\t110,\n\t32,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t115,\n\t105,\n\t118,\n\t101,\n\t104,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t97,\n\t114,\n\t101,\n\t32,\n\t110,\n\t111,\n\t116,\n\t114,\n\t101,\n\t106,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t114,\n\t105,\n\t116,\n\t105,\n\t99,\n\t105,\n\t115,\n\t109,\n\t32,\n\t111,\n\t102,\n\t100,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t112,\n\t114,\n\t111,\n\t98,\n\t97,\n\t98,\n\t108,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t123,\n\t73,\n\t116,\n\t32,\n\t115,\n\t104,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t98,\n\t101,\n\t97,\n\t110,\n\t32,\n\t97,\n\t103,\n\t114,\n\t101,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t99,\n\t99,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t108,\n\t121,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t115,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t65,\n\t114,\n\t99,\n\t104,\n\t105,\n\t116,\n\t101,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t98,\n\t101,\n\t116,\n\t116,\n\t101,\n\t114,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t97,\n\t114,\n\t114,\n\t97,\n\t110,\n\t103,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t105,\n\t110,\n\t102,\n\t108,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t110,\n\t97,\n\t116,\n\t116,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t116,\n\t111,\n\t115,\n\t111,\n\t117,\n\t116,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t97,\n\t115,\n\t115,\n\t32,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t120,\n\t109,\n\t108,\n\t34,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t61,\n\t34,\n\t119,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t98,\n\t111,\n\t108,\n\t100,\n\t59,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t110,\n\t111,\n\t110,\n\t101,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t47,\n\t105,\n\t104,\n\t116,\n\t116,\n\t112,\n\t115,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t87,\n\t111,\n\t114,\n\t108,\n\t100,\n\t32,\n\t87,\n\t97,\n\t114,\n\t32,\n\t73,\n\t73,\n\t116,\n\t101,\n\t115,\n\t116,\n\t105,\n\t109,\n\t111,\n\t110,\n\t105,\n\t97,\n\t108,\n\t115,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t115,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t97,\n\t98,\n\t108,\n\t121,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t116,\n\t104,\n\t101,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t67,\n\t111,\n\t110,\n\t115,\n\t101,\n\t114,\n\t118,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t115,\n\t116,\n\t101,\n\t100,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t98,\n\t97,\n\t99,\n\t107,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t61,\n\t34,\n\t80,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t111,\n\t110,\n\t112,\n\t114,\n\t111,\n\t118,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t34,\n\t119,\n\t97,\n\t115,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t118,\n\t97,\n\t114,\n\t105,\n\t101,\n\t116,\n\t105,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t108,\n\t105,\n\t107,\n\t101,\n\t108,\n\t121,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t99,\n\t111,\n\t109,\n\t112,\n\t114,\n\t105,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t102,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t104,\n\t97,\n\t110,\n\t100,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t117,\n\t112,\n\t108,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t58,\n\t110,\n\t111,\n\t110,\n\t101,\n\t59,\n\t112,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t110,\n\t99,\n\t101,\n\t115,\n\t98,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t32,\n\t98,\n\t101,\n\t105,\n\t110,\n\t103,\n\t108,\n\t97,\n\t116,\n\t101,\n\t114,\n\t32,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t99,\n\t97,\n\t108,\n\t99,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t32,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t109,\n\t101,\n\t97,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t62,\n\t60,\n\t108,\n\t105,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t101,\n\t118,\n\t105,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t101,\n\t120,\n\t112,\n\t108,\n\t97,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t110,\n\t118,\n\t105,\n\t114,\n\t111,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t115,\n\t73,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t32,\n\t119,\n\t105,\n\t100,\n\t101,\n\t32,\n\t114,\n\t97,\n\t110,\n\t103,\n\t101,\n\t111,\n\t110,\n\t32,\n\t98,\n\t101,\n\t104,\n\t97,\n\t108,\n\t102,\n\t32,\n\t111,\n\t102,\n\t118,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t116,\n\t111,\n\t112,\n\t34,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t105,\n\t112,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t44,\n\t60,\n\t47,\n\t110,\n\t111,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t115,\n\t97,\n\t105,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t119,\n\t104,\n\t105,\n\t108,\n\t101,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t115,\n\t104,\n\t121,\n\t112,\n\t111,\n\t116,\n\t104,\n\t101,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t112,\n\t104,\n\t105,\n\t108,\n\t111,\n\t115,\n\t111,\n\t112,\n\t104,\n\t101,\n\t114,\n\t115,\n\t112,\n\t111,\n\t119,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t112,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t105,\n\t110,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t32,\n\t116,\n\t111,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t119,\n\t114,\n\t105,\n\t116,\n\t116,\n\t101,\n\t110,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t32,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t116,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t102,\n\t111,\n\t114,\n\t114,\n\t101,\n\t106,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t105,\n\t109,\n\t112,\n\t108,\n\t105,\n\t101,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t105,\n\t110,\n\t118,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t97,\n\t114,\n\t100,\n\t119,\n\t97,\n\t115,\n\t32,\n\t112,\n\t114,\n\t111,\n\t98,\n\t97,\n\t98,\n\t108,\n\t121,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t112,\n\t114,\n\t111,\n\t102,\n\t101,\n\t115,\n\t115,\n\t111,\n\t114,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t73,\n\t110,\n\t100,\n\t105,\n\t97,\n\t110,\n\t32,\n\t79,\n\t99,\n\t101,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t108,\n\t97,\n\t115,\n\t116,\n\t119,\n\t111,\n\t114,\n\t107,\n\t105,\n\t110,\n\t103,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t39,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t32,\n\t98,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t84,\n\t104,\n\t105,\n\t115,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t101,\n\t97,\n\t115,\n\t117,\n\t114,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t97,\n\t110,\n\t32,\n\t101,\n\t120,\n\t116,\n\t114,\n\t101,\n\t109,\n\t101,\n\t108,\n\t121,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t10,\n\t97,\n\t110,\n\t32,\n\t101,\n\t102,\n\t102,\n\t111,\n\t114,\n\t116,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t111,\n\t117,\n\t116,\n\t104,\n\t115,\n\t112,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t48,\n\t34,\n\t62,\n\t115,\n\t117,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t116,\n\t104,\n\t101,\n\t32,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t97,\n\t110,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t84,\n\t105,\n\t109,\n\t101,\n\t111,\n\t117,\n\t116,\n\t100,\n\t105,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t102,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t110,\n\t101,\n\t120,\n\t116,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t101,\n\t99,\n\t111,\n\t110,\n\t111,\n\t109,\n\t105,\n\t99,\n\t32,\n\t97,\n\t110,\n\t100,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t114,\n\t101,\n\t32,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t97,\n\t110,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t115,\n\t117,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t103,\n\t105,\n\t118,\n\t101,\n\t110,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t101,\n\t120,\n\t112,\n\t101,\n\t110,\n\t100,\n\t105,\n\t116,\n\t117,\n\t114,\n\t101,\n\t115,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t10,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t98,\n\t97,\n\t115,\n\t105,\n\t115,\n\t99,\n\t101,\n\t108,\n\t108,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t61,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t44,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t115,\n\t115,\n\t97,\n\t115,\n\t115,\n\t105,\n\t110,\n\t97,\n\t116,\n\t101,\n\t100,\n\t115,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t97,\n\t117,\n\t116,\n\t104,\n\t111,\n\t114,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t110,\n\t111,\n\t114,\n\t116,\n\t104,\n\t119,\n\t101,\n\t115,\n\t116,\n\t101,\n\t114,\n\t110,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t34,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t32,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t117,\n\t108,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t105,\n\t116,\n\t32,\n\t115,\n\t104,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t98,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t110,\n\t116,\n\t115,\n\t32,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t108,\n\t101,\n\t102,\n\t116,\n\t116,\n\t104,\n\t101,\n\t32,\n\t103,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t115,\n\t116,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t115,\n\t117,\n\t112,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t110,\n\t105,\n\t115,\n\t32,\n\t109,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t100,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t119,\n\t97,\n\t115,\n\t32,\n\t105,\n\t110,\n\t118,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t97,\n\t99,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t110,\n\t121,\n\t105,\n\t110,\n\t103,\n\t104,\n\t105,\n\t115,\n\t32,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t108,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t97,\n\t116,\n\t115,\n\t116,\n\t117,\n\t100,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t120,\n\t101,\n\t99,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t72,\n\t117,\n\t109,\n\t97,\n\t110,\n\t32,\n\t82,\n\t105,\n\t103,\n\t104,\n\t116,\n\t115,\n\t116,\n\t101,\n\t114,\n\t109,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t114,\n\t101,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t32,\n\t97,\n\t110,\n\t100,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t101,\n\t100,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t100,\n\t101,\n\t102,\n\t101,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t110,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t98,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t97,\n\t114,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t97,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t97,\n\t103,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t116,\n\t117,\n\t100,\n\t121,\n\t32,\n\t111,\n\t102,\n\t60,\n\t117,\n\t108,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t115,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t119,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t104,\n\t101,\n\t32,\n\t119,\n\t97,\n\t115,\n\t60,\n\t108,\n\t105,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t102,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t32,\n\t110,\n\t111,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t104,\n\t101,\n\t32,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t101,\n\t120,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t105,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t101,\n\t114,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t119,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t116,\n\t101,\n\t114,\n\t114,\n\t105,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t101,\n\t120,\n\t116,\n\t101,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t34,\n\t62,\n\t82,\n\t111,\n\t109,\n\t97,\n\t110,\n\t32,\n\t69,\n\t109,\n\t112,\n\t105,\n\t114,\n\t101,\n\t101,\n\t113,\n\t117,\n\t97,\n\t108,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t73,\n\t110,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t115,\n\t116,\n\t44,\n\t104,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t97,\n\t110,\n\t100,\n\t105,\n\t115,\n\t32,\n\t116,\n\t121,\n\t112,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t97,\n\t110,\n\t100,\n\t32,\n\t104,\n\t105,\n\t115,\n\t32,\n\t119,\n\t105,\n\t102,\n\t101,\n\t40,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t62,\n\t60,\n\t117,\n\t108,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t32,\n\t101,\n\t118,\n\t111,\n\t108,\n\t118,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t115,\n\t101,\n\t101,\n\t109,\n\t32,\n\t116,\n\t111,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t110,\n\t111,\n\t97,\n\t110,\n\t32,\n\t101,\n\t120,\n\t99,\n\t101,\n\t108,\n\t108,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t108,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t73,\n\t110,\n\t32,\n\t112,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t99,\n\t101,\n\t44,\n\t98,\n\t114,\n\t111,\n\t97,\n\t100,\n\t99,\n\t97,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t99,\n\t104,\n\t97,\n\t114,\n\t103,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t114,\n\t101,\n\t102,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t115,\n\t117,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t109,\n\t105,\n\t108,\n\t105,\n\t116,\n\t97,\n\t114,\n\t121,\n\t32,\n\t97,\n\t110,\n\t100,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t101,\n\t99,\n\t111,\n\t110,\n\t111,\n\t109,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t115,\n\t101,\n\t116,\n\t84,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t105,\n\t110,\n\t103,\n\t97,\n\t114,\n\t101,\n\t32,\n\t97,\n\t99,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t118,\n\t105,\n\t99,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t118,\n\t101,\n\t114,\n\t40,\n\t41,\n\t59,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t111,\n\t117,\n\t115,\n\t108,\n\t121,\n\t114,\n\t101,\n\t113,\n\t117,\n\t105,\n\t114,\n\t101,\n\t100,\n\t32,\n\t102,\n\t111,\n\t114,\n\t101,\n\t118,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t114,\n\t121,\n\t97,\n\t110,\n\t32,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t110,\n\t111,\n\t114,\n\t116,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t44,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t102,\n\t114,\n\t111,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t114,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t119,\n\t105,\n\t115,\n\t101,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t111,\n\t102,\n\t104,\n\t97,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t112,\n\t101,\n\t114,\n\t109,\n\t105,\n\t116,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t44,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t101,\n\t118,\n\t105,\n\t111,\n\t117,\n\t115,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t97,\n\t114,\n\t101,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t101,\n\t108,\n\t100,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t32,\n\t111,\n\t102,\n\t103,\n\t105,\n\t118,\n\t101,\n\t110,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t110,\n\t111,\n\t114,\n\t116,\n\t104,\n\t100,\n\t117,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t114,\n\t97,\n\t114,\n\t101,\n\t32,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t99,\n\t111,\n\t114,\n\t112,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t119,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t101,\n\t100,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t105,\n\t110,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t100,\n\t111,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t100,\n\t101,\n\t115,\n\t105,\n\t103,\n\t110,\n\t101,\n\t100,\n\t32,\n\t102,\n\t111,\n\t114,\n\t111,\n\t119,\n\t110,\n\t101,\n\t114,\n\t115,\n\t104,\n\t105,\n\t112,\n\t32,\n\t111,\n\t102,\n\t97,\n\t110,\n\t100,\n\t32,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t121,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t97,\n\t114,\n\t100,\n\t105,\n\t122,\n\t101,\n\t100,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t101,\n\t84,\n\t101,\n\t120,\n\t116,\n\t119,\n\t97,\n\t115,\n\t32,\n\t105,\n\t110,\n\t116,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t114,\n\t101,\n\t99,\n\t101,\n\t105,\n\t118,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t115,\n\t117,\n\t109,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t114,\n\t101,\n\t97,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t114,\n\t105,\n\t109,\n\t97,\n\t114,\n\t105,\n\t108,\n\t121,\n\t32,\n\t105,\n\t110,\n\t116,\n\t104,\n\t101,\n\t32,\n\t98,\n\t97,\n\t115,\n\t105,\n\t115,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t101,\n\t110,\n\t115,\n\t101,\n\t97,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t100,\n\t101,\n\t115,\n\t116,\n\t114,\n\t111,\n\t121,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t116,\n\t32,\n\t108,\n\t101,\n\t97,\n\t115,\n\t116,\n\t32,\n\t116,\n\t119,\n\t111,\n\t119,\n\t97,\n\t115,\n\t32,\n\t100,\n\t101,\n\t99,\n\t108,\n\t97,\n\t114,\n\t101,\n\t100,\n\t99,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t98,\n\t101,\n\t83,\n\t101,\n\t99,\n\t114,\n\t101,\n\t116,\n\t97,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t116,\n\t111,\n\t112,\n\t58,\n\t49,\n\t47,\n\t94,\n\t92,\n\t115,\n\t43,\n\t124,\n\t92,\n\t115,\n\t43,\n\t36,\n\t47,\n\t103,\n\t101,\n\t41,\n\t123,\n\t116,\n\t104,\n\t114,\n\t111,\n\t119,\n\t32,\n\t101,\n\t125,\n\t59,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t116,\n\t119,\n\t111,\n\t32,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t101,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t32,\n\t97,\n\t110,\n\t100,\n\t119,\n\t104,\n\t111,\n\t32,\n\t104,\n\t97,\n\t100,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t100,\n\t101,\n\t97,\n\t116,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t97,\n\t108,\n\t32,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t115,\n\t9,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t112,\n\t114,\n\t111,\n\t118,\n\t105,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t109,\n\t112,\n\t101,\n\t116,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t101,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t32,\n\t40,\n\t85,\n\t75,\n\t41,\n\t101,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t32,\n\t40,\n\t85,\n\t83,\n\t41,\n\t208,\n\t156,\n\t208,\n\t190,\n\t208,\n\t189,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t161,\n\t209,\n\t128,\n\t208,\n\t191,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t184,\n\t209,\n\t129,\n\t209,\n\t128,\n\t208,\n\t191,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t184,\n\t209,\n\t129,\n\t209,\n\t128,\n\t208,\n\t191,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t190,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t177,\n\t216,\n\t168,\n\t217,\n\t138,\n\t216,\n\t169,\n\t230,\n\t173,\n\t163,\n\t233,\n\t171,\n\t148,\n\t228,\n\t184,\n\t173,\n\t230,\n\t150,\n\t135,\n\t231,\n\t174,\n\t128,\n\t228,\n\t189,\n\t147,\n\t228,\n\t184,\n\t173,\n\t230,\n\t150,\n\t135,\n\t231,\n\t185,\n\t129,\n\t228,\n\t189,\n\t147,\n\t228,\n\t184,\n\t173,\n\t230,\n\t150,\n\t135,\n\t230,\n\t156,\n\t137,\n\t233,\n\t153,\n\t144,\n\t229,\n\t133,\n\t172,\n\t229,\n\t143,\n\t184,\n\t228,\n\t186,\n\t186,\n\t230,\n\t176,\n\t145,\n\t230,\n\t148,\n\t191,\n\t229,\n\t186,\n\t156,\n\t233,\n\t152,\n\t191,\n\t233,\n\t135,\n\t140,\n\t229,\n\t183,\n\t180,\n\t229,\n\t183,\n\t180,\n\t231,\n\t164,\n\t190,\n\t228,\n\t188,\n\t154,\n\t228,\n\t184,\n\t187,\n\t228,\n\t185,\n\t137,\n\t230,\n\t147,\n\t141,\n\t228,\n\t189,\n\t156,\n\t231,\n\t179,\n\t187,\n\t231,\n\t187,\n\t159,\n\t230,\n\t148,\n\t191,\n\t231,\n\t173,\n\t150,\n\t230,\n\t179,\n\t149,\n\t232,\n\t167,\n\t132,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t104,\n\t101,\n\t114,\n\t114,\n\t97,\n\t109,\n\t105,\n\t101,\n\t110,\n\t116,\n\t97,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t195,\n\t179,\n\t110,\n\t105,\n\t99,\n\t111,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t108,\n\t97,\n\t115,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t100,\n\t111,\n\t115,\n\t99,\n\t111,\n\t110,\n\t111,\n\t99,\n\t105,\n\t109,\n\t105,\n\t101,\n\t110,\n\t116,\n\t111,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t114,\n\t101,\n\t108,\n\t97,\n\t99,\n\t105,\n\t111,\n\t110,\n\t97,\n\t100,\n\t97,\n\t115,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t195,\n\t161,\n\t116,\n\t105,\n\t99,\n\t97,\n\t114,\n\t101,\n\t108,\n\t97,\n\t99,\n\t105,\n\t111,\n\t110,\n\t97,\n\t100,\n\t111,\n\t115,\n\t100,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t111,\n\t116,\n\t114,\n\t97,\n\t98,\n\t97,\n\t106,\n\t97,\n\t100,\n\t111,\n\t114,\n\t101,\n\t115,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t101,\n\t97,\n\t121,\n\t117,\n\t110,\n\t116,\n\t97,\n\t109,\n\t105,\n\t101,\n\t110,\n\t116,\n\t111,\n\t109,\n\t101,\n\t114,\n\t99,\n\t97,\n\t100,\n\t111,\n\t76,\n\t105,\n\t98,\n\t114,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t195,\n\t161,\n\t99,\n\t116,\n\t101,\n\t110,\n\t111,\n\t115,\n\t104,\n\t97,\n\t98,\n\t105,\n\t116,\n\t97,\n\t99,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t99,\n\t117,\n\t109,\n\t112,\n\t108,\n\t105,\n\t109,\n\t105,\n\t101,\n\t110,\n\t116,\n\t111,\n\t114,\n\t101,\n\t115,\n\t116,\n\t97,\n\t117,\n\t114,\n\t97,\n\t110,\n\t116,\n\t101,\n\t115,\n\t100,\n\t105,\n\t115,\n\t112,\n\t111,\n\t115,\n\t105,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t99,\n\t117,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t195,\n\t179,\n\t110,\n\t105,\n\t99,\n\t97,\n\t97,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t99,\n\t105,\n\t111,\n\t110,\n\t101,\n\t115,\n\t100,\n\t101,\n\t115,\n\t99,\n\t111,\n\t110,\n\t101,\n\t99,\n\t116,\n\t97,\n\t100,\n\t111,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t108,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t114,\n\t101,\n\t97,\n\t108,\n\t105,\n\t122,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t117,\n\t116,\n\t105,\n\t108,\n\t105,\n\t122,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t101,\n\t110,\n\t99,\n\t105,\n\t99,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t105,\n\t97,\n\t101,\n\t110,\n\t102,\n\t101,\n\t114,\n\t109,\n\t101,\n\t100,\n\t97,\n\t100,\n\t101,\n\t115,\n\t105,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t111,\n\t115,\n\t101,\n\t120,\n\t112,\n\t101,\n\t114,\n\t105,\n\t101,\n\t110,\n\t99,\n\t105,\n\t97,\n\t115,\n\t105,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t101,\n\t115,\n\t115,\n\t117,\n\t98,\n\t99,\n\t97,\n\t116,\n\t101,\n\t103,\n\t111,\n\t114,\n\t105,\n\t97,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t187,\n\t209,\n\t140,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t160,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t129,\n\t208,\n\t184,\n\t208,\n\t184,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t177,\n\t208,\n\t190,\n\t209,\n\t130,\n\t209,\n\t139,\n\t208,\n\t177,\n\t208,\n\t190,\n\t208,\n\t187,\n\t209,\n\t140,\n\t209,\n\t136,\n\t208,\n\t181,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t182,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t180,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t179,\n\t208,\n\t184,\n\t209,\n\t133,\n\t209,\n\t129,\n\t208,\n\t187,\n\t209,\n\t131,\n\t209,\n\t135,\n\t208,\n\t176,\n\t208,\n\t181,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t185,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t178,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t160,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t129,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t156,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t178,\n\t208,\n\t181,\n\t208,\n\t180,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t179,\n\t208,\n\t184,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t189,\n\t209,\n\t139,\n\t209,\n\t133,\n\t208,\n\t180,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t182,\n\t208,\n\t189,\n\t209,\n\t139,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t156,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t178,\n\t209,\n\t139,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t177,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t185,\n\t208,\n\t156,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t178,\n\t208,\n\t176,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t189,\n\t209,\n\t139,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t135,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t177,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t180,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t182,\n\t208,\n\t181,\n\t208,\n\t189,\n\t209,\n\t131,\n\t209,\n\t129,\n\t208,\n\t187,\n\t209,\n\t131,\n\t208,\n\t179,\n\t208,\n\t184,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t191,\n\t208,\n\t181,\n\t209,\n\t128,\n\t209,\n\t140,\n\t208,\n\t158,\n\t208,\n\t180,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t191,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t188,\n\t209,\n\t131,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t177,\n\t208,\n\t190,\n\t209,\n\t130,\n\t209,\n\t131,\n\t208,\n\t176,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t181,\n\t208,\n\t187,\n\t209,\n\t143,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t137,\n\t208,\n\t181,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t176,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t184,\n\t208,\n\t180,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t185,\n\t209,\n\t132,\n\t208,\n\t190,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t133,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t209,\n\t136,\n\t208,\n\t190,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t178,\n\t209,\n\t129,\n\t209,\n\t129,\n\t209,\n\t139,\n\t208,\n\t187,\n\t208,\n\t186,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t176,\n\t208,\n\t182,\n\t208,\n\t180,\n\t209,\n\t139,\n\t208,\n\t185,\n\t208,\n\t178,\n\t208,\n\t187,\n\t208,\n\t176,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t179,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t191,\n\t208,\n\t191,\n\t209,\n\t139,\n\t208,\n\t178,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t177,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t176,\n\t208,\n\t187,\n\t208,\n\t191,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t178,\n\t209,\n\t139,\n\t208,\n\t185,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t187,\n\t208,\n\t176,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t189,\n\t209,\n\t140,\n\t208,\n\t179,\n\t208,\n\t184,\n\t208,\n\t191,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t177,\n\t208,\n\t184,\n\t208,\n\t183,\n\t208,\n\t189,\n\t208,\n\t181,\n\t209,\n\t129,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t189,\n\t209,\n\t130,\n\t208,\n\t186,\n\t209,\n\t131,\n\t208,\n\t191,\n\t208,\n\t184,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t180,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t182,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t188,\n\t208,\n\t186,\n\t208,\n\t176,\n\t209,\n\t133,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t135,\n\t208,\n\t176,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t160,\n\t208,\n\t176,\n\t208,\n\t177,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t162,\n\t208,\n\t190,\n\t208,\n\t187,\n\t209,\n\t140,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t190,\n\t208,\n\t178,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t178,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t135,\n\t208,\n\t176,\n\t208,\n\t187,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t191,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t190,\n\t208,\n\t186,\n\t209,\n\t129,\n\t208,\n\t187,\n\t209,\n\t131,\n\t208,\n\t182,\n\t208,\n\t177,\n\t209,\n\t139,\n\t209,\n\t129,\n\t208,\n\t184,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t191,\n\t208,\n\t181,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t190,\n\t209,\n\t137,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t176,\n\t208,\n\t185,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t191,\n\t208,\n\t190,\n\t209,\n\t135,\n\t208,\n\t181,\n\t208,\n\t188,\n\t209,\n\t131,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t190,\n\t209,\n\t137,\n\t209,\n\t140,\n\t208,\n\t180,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t182,\n\t208,\n\t189,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t129,\n\t209,\n\t139,\n\t208,\n\t187,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t177,\n\t209,\n\t139,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t189,\n\t209,\n\t139,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t184,\n\t208,\n\t181,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t181,\n\t208,\n\t186,\n\t209,\n\t130,\n\t208,\n\t161,\n\t208,\n\t181,\n\t208,\n\t185,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t187,\n\t208,\n\t184,\n\t209,\n\t130,\n\t208,\n\t176,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t190,\n\t208,\n\t189,\n\t208,\n\t187,\n\t208,\n\t176,\n\t208,\n\t185,\n\t208,\n\t189,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t178,\n\t208,\n\t181,\n\t209,\n\t128,\n\t209,\n\t129,\n\t208,\n\t184,\n\t209,\n\t143,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t181,\n\t209,\n\t132,\n\t208,\n\t184,\n\t208,\n\t187,\n\t209,\n\t140,\n\t208,\n\t188,\n\t209,\n\t139,\n\t209,\n\t131,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t189,\n\t209,\n\t143,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t189,\n\t209,\n\t139,\n\t209,\n\t133,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t176,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t187,\n\t209,\n\t142,\n\t209,\n\t143,\n\t208,\n\t189,\n\t208,\n\t178,\n\t208,\n\t176,\n\t209,\n\t128,\n\t209,\n\t143,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t189,\n\t209,\n\t140,\n\t209,\n\t136,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t184,\n\t209,\n\t133,\n\t208,\n\t180,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t183,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t135,\n\t208,\n\t184,\n\t209,\n\t130,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t187,\n\t209,\n\t140,\n\t208,\n\t183,\n\t209,\n\t143,\n\t209,\n\t132,\n\t208,\n\t190,\n\t209,\n\t128,\n\t209,\n\t131,\n\t208,\n\t188,\n\t208,\n\t176,\n\t208,\n\t162,\n\t208,\n\t181,\n\t208,\n\t191,\n\t208,\n\t181,\n\t209,\n\t128,\n\t209,\n\t140,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t143,\n\t209,\n\t134,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t176,\n\t209,\n\t137,\n\t208,\n\t184,\n\t209,\n\t130,\n\t209,\n\t139,\n\t208,\n\t155,\n\t209,\n\t131,\n\t209,\n\t135,\n\t209,\n\t136,\n\t208,\n\t184,\n\t208,\n\t181,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t129,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t183,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t182,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t152,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t167,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t157,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t163,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t188,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t172,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t172,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t160,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t183,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t154,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t152,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t154,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t188,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t152,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t182,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t188,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t188,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t172,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t171,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t188,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t188,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t140,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t182,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t183,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t216,\n\t170,\n\t216,\n\t179,\n\t216,\n\t170,\n\t216,\n\t183,\n\t217,\n\t138,\n\t216,\n\t185,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t169,\n\t216,\n\t168,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t179,\n\t216,\n\t183,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t181,\n\t217,\n\t129,\n\t216,\n\t173,\n\t216,\n\t169,\n\t217,\n\t133,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t182,\n\t217,\n\t138,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t174,\n\t216,\n\t167,\n\t216,\n\t181,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t178,\n\t217,\n\t138,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t131,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t175,\n\t217,\n\t136,\n\t216,\n\t175,\n\t216,\n\t168,\n\t216,\n\t177,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t172,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t175,\n\t217,\n\t136,\n\t217,\n\t132,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t136,\n\t217,\n\t130,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t177,\n\t216,\n\t168,\n\t217,\n\t138,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t179,\n\t216,\n\t177,\n\t217,\n\t138,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t172,\n\t217,\n\t136,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t176,\n\t217,\n\t135,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t173,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t173,\n\t217,\n\t130,\n\t217,\n\t136,\n\t217,\n\t130,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t131,\n\t216,\n\t177,\n\t217,\n\t138,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t130,\n\t217,\n\t133,\n\t216,\n\t173,\n\t217,\n\t129,\n\t217,\n\t136,\n\t216,\n\t184,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t171,\n\t216,\n\t167,\n\t217,\n\t134,\n\t217,\n\t138,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t217,\n\t135,\n\t216,\n\t175,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t177,\n\t216,\n\t163,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t130,\n\t216,\n\t177,\n\t216,\n\t162,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t180,\n\t216,\n\t168,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t173,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t172,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t216,\n\t179,\n\t216,\n\t177,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t136,\n\t217,\n\t133,\n\t217,\n\t133,\n\t216,\n\t172,\n\t217,\n\t133,\n\t217,\n\t136,\n\t216,\n\t185,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t173,\n\t217,\n\t133,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t134,\n\t217,\n\t130,\n\t216,\n\t167,\n\t216,\n\t183,\n\t217,\n\t129,\n\t217,\n\t132,\n\t216,\n\t179,\n\t216,\n\t183,\n\t217,\n\t138,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t131,\n\t217,\n\t136,\n\t217,\n\t138,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t175,\n\t217,\n\t134,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t167,\n\t216,\n\t170,\n\t217,\n\t135,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t182,\n\t216,\n\t170,\n\t216,\n\t173,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t170,\n\t217,\n\t138,\n\t216,\n\t168,\n\t216,\n\t170,\n\t217,\n\t136,\n\t217,\n\t130,\n\t217,\n\t138,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t217,\n\t136,\n\t217,\n\t132,\n\t217,\n\t137,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t168,\n\t216,\n\t177,\n\t217,\n\t138,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t131,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t183,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t180,\n\t216,\n\t174,\n\t216,\n\t181,\n\t217,\n\t138,\n\t216,\n\t179,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t171,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t171,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t181,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t173,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t171,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t178,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t174,\n\t217,\n\t132,\n\t217,\n\t138,\n\t216,\n\t172,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t172,\n\t217,\n\t133,\n\t217,\n\t138,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t133,\n\t217,\n\t135,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t172,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t179,\n\t216,\n\t167,\n\t216,\n\t185,\n\t216,\n\t169,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t217,\n\t135,\n\t216,\n\t175,\n\t217,\n\t135,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t166,\n\t217,\n\t138,\n\t216,\n\t179,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t175,\n\t216,\n\t174,\n\t217,\n\t136,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t129,\n\t217,\n\t134,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t131,\n\t216,\n\t170,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t175,\n\t217,\n\t136,\n\t216,\n\t177,\n\t217,\n\t138,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t175,\n\t216,\n\t177,\n\t217,\n\t136,\n\t216,\n\t179,\n\t216,\n\t167,\n\t216,\n\t179,\n\t216,\n\t170,\n\t216,\n\t186,\n\t216,\n\t177,\n\t217,\n\t130,\n\t216,\n\t170,\n\t216,\n\t181,\n\t216,\n\t167,\n\t217,\n\t133,\n\t217,\n\t138,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t168,\n\t217,\n\t134,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t184,\n\t217,\n\t138,\n\t217,\n\t133,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t116,\n\t97,\n\t105,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t61,\n\t32,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t46,\n\t106,\n\t112,\n\t103,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t99,\n\t111,\n\t110,\n\t102,\n\t105,\n\t103,\n\t117,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t112,\n\t110,\n\t103,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t77,\n\t97,\n\t116,\n\t104,\n\t46,\n\t114,\n\t97,\n\t110,\n\t100,\n\t111,\n\t109,\n\t40,\n\t41,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t109,\n\t112,\n\t111,\n\t114,\n\t97,\n\t114,\n\t121,\n\t32,\n\t85,\n\t110,\n\t105,\n\t116,\n\t101,\n\t100,\n\t32,\n\t83,\n\t116,\n\t97,\n\t116,\n\t101,\n\t115,\n\t99,\n\t105,\n\t114,\n\t99,\n\t117,\n\t109,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t115,\n\t46,\n\t97,\n\t112,\n\t112,\n\t101,\n\t110,\n\t100,\n\t67,\n\t104,\n\t105,\n\t108,\n\t100,\n\t40,\n\t111,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t122,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t34,\n\t62,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t47,\n\t100,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t117,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t116,\n\t104,\n\t111,\n\t117,\n\t115,\n\t97,\n\t110,\n\t100,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t99,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t34,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t105,\n\t110,\n\t118,\n\t101,\n\t115,\n\t116,\n\t105,\n\t103,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t102,\n\t97,\n\t118,\n\t105,\n\t99,\n\t111,\n\t110,\n\t46,\n\t105,\n\t99,\n\t111,\n\t34,\n\t32,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t98,\n\t97,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t77,\n\t97,\n\t115,\n\t115,\n\t97,\n\t99,\n\t104,\n\t117,\n\t115,\n\t101,\n\t116,\n\t116,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t112,\n\t114,\n\t111,\n\t110,\n\t117,\n\t110,\n\t99,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t58,\n\t35,\n\t102,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t45,\n\t108,\n\t101,\n\t102,\n\t116,\n\t58,\n\t70,\n\t111,\n\t114,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t44,\n\t32,\n\t109,\n\t105,\n\t115,\n\t99,\n\t101,\n\t108,\n\t108,\n\t97,\n\t110,\n\t101,\n\t111,\n\t117,\n\t115,\n\t38,\n\t108,\n\t116,\n\t59,\n\t47,\n\t109,\n\t97,\n\t116,\n\t104,\n\t38,\n\t103,\n\t116,\n\t59,\n\t112,\n\t115,\n\t121,\n\t99,\n\t104,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t97,\n\t108,\n\t105,\n\t110,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t61,\n\t34,\n\t97,\n\t115,\n\t32,\n\t111,\n\t112,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t83,\n\t117,\n\t112,\n\t114,\n\t101,\n\t109,\n\t101,\n\t32,\n\t67,\n\t111,\n\t117,\n\t114,\n\t116,\n\t111,\n\t99,\n\t99,\n\t97,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t65,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t44,\n\t78,\n\t111,\n\t114,\n\t116,\n\t104,\n\t32,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t112,\n\t120,\n\t59,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t111,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t117,\n\t110,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t69,\n\t110,\n\t116,\n\t101,\n\t114,\n\t116,\n\t97,\n\t105,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t116,\n\t111,\n\t76,\n\t111,\n\t119,\n\t101,\n\t114,\n\t67,\n\t97,\n\t115,\n\t101,\n\t40,\n\t109,\n\t97,\n\t110,\n\t117,\n\t102,\n\t97,\n\t99,\n\t116,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t112,\n\t114,\n\t111,\n\t102,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t99,\n\t111,\n\t109,\n\t98,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t70,\n\t111,\n\t114,\n\t32,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t44,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t34,\n\t32,\n\t109,\n\t97,\n\t120,\n\t108,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t61,\n\t34,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t59,\n\t99,\n\t111,\n\t110,\n\t115,\n\t99,\n\t105,\n\t111,\n\t117,\n\t115,\n\t110,\n\t101,\n\t115,\n\t115,\n\t77,\n\t101,\n\t100,\n\t105,\n\t116,\n\t101,\n\t114,\n\t114,\n\t97,\n\t110,\n\t101,\n\t97,\n\t110,\n\t101,\n\t120,\n\t116,\n\t114,\n\t97,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t97,\n\t114,\n\t121,\n\t97,\n\t115,\n\t115,\n\t97,\n\t115,\n\t115,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t117,\n\t98,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t32,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t32,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t108,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t114,\n\t101,\n\t104,\n\t101,\n\t110,\n\t115,\n\t105,\n\t118,\n\t101,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t47,\n\t117,\n\t108,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t112,\n\t104,\n\t105,\n\t108,\n\t111,\n\t115,\n\t111,\n\t112,\n\t104,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t104,\n\t114,\n\t101,\n\t102,\n\t119,\n\t97,\n\t115,\n\t32,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t83,\n\t97,\n\t110,\n\t32,\n\t70,\n\t114,\n\t97,\n\t110,\n\t99,\n\t105,\n\t115,\n\t99,\n\t111,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t123,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t109,\n\t97,\n\t105,\n\t110,\n\t115,\n\t111,\n\t112,\n\t104,\n\t105,\n\t115,\n\t116,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t109,\n\t97,\n\t116,\n\t104,\n\t101,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t13,\n\t10,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t104,\n\t105,\n\t112,\n\t115,\n\t109,\n\t97,\n\t121,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t40,\n\t102,\n\t111,\n\t114,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t44,\n\t84,\n\t104,\n\t105,\n\t115,\n\t32,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t108,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t99,\n\t97,\n\t115,\n\t101,\n\t115,\n\t112,\n\t97,\n\t114,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t71,\n\t114,\n\t101,\n\t97,\n\t116,\n\t32,\n\t66,\n\t114,\n\t105,\n\t116,\n\t97,\n\t105,\n\t110,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t61,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t97,\n\t108,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t111,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t104,\n\t111,\n\t108,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t59,\n\t32,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t32,\n\t106,\n\t117,\n\t115,\n\t116,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t118,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t115,\n\t117,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t97,\n\t116,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t108,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t47,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t32,\n\t123,\n\t97,\n\t114,\n\t101,\n\t32,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t108,\n\t101,\n\t10,\n\t9,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t39,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t34,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t34,\n\t32,\n\t47,\n\t62,\n\t60,\n\t47,\n\t97,\n\t114,\n\t101,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t108,\n\t121,\n\t104,\n\t97,\n\t115,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t32,\n\t99,\n\t111,\n\t114,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t99,\n\t114,\n\t101,\n\t100,\n\t105,\n\t116,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t58,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t46,\n\t103,\n\t105,\n\t102,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t60,\n\t105,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t105,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t45,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t59,\n\t97,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t111,\n\t103,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t120,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t112,\n\t97,\n\t114,\n\t108,\n\t105,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t121,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t110,\n\t111,\n\t110,\n\t101,\n\t59,\n\t116,\n\t114,\n\t97,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t112,\n\t114,\n\t101,\n\t100,\n\t111,\n\t109,\n\t105,\n\t110,\n\t97,\n\t110,\n\t116,\n\t108,\n\t121,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t124,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t115,\n\t112,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t61,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t111,\n\t114,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t97,\n\t108,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t116,\n\t121,\n\t61,\n\t34,\n\t111,\n\t103,\n\t58,\n\t47,\n\t120,\n\t45,\n\t115,\n\t104,\n\t111,\n\t99,\n\t107,\n\t119,\n\t97,\n\t118,\n\t101,\n\t45,\n\t100,\n\t101,\n\t109,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t117,\n\t114,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t78,\n\t101,\n\t118,\n\t101,\n\t114,\n\t116,\n\t104,\n\t101,\n\t108,\n\t101,\n\t115,\n\t115,\n\t44,\n\t119,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t65,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t108,\n\t108,\n\t97,\n\t98,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t104,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t98,\n\t101,\n\t112,\n\t114,\n\t111,\n\t112,\n\t111,\n\t114,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t108,\n\t121,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t32,\n\t105,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t44,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t32,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t32,\n\t115,\n\t116,\n\t97,\n\t114,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t105,\n\t110,\n\t103,\n\t108,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t97,\n\t99,\n\t116,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t100,\n\t105,\n\t115,\n\t99,\n\t117,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t109,\n\t105,\n\t100,\n\t100,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t110,\n\t32,\n\t105,\n\t110,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t117,\n\t97,\n\t108,\n\t100,\n\t105,\n\t102,\n\t102,\n\t105,\n\t99,\n\t117,\n\t108,\n\t116,\n\t32,\n\t116,\n\t111,\n\t32,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t118,\n\t105,\n\t101,\n\t119,\n\t104,\n\t111,\n\t109,\n\t111,\n\t115,\n\t101,\n\t120,\n\t117,\n\t97,\n\t108,\n\t105,\n\t116,\n\t121,\n\t97,\n\t99,\n\t99,\n\t101,\n\t112,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t109,\n\t97,\n\t110,\n\t117,\n\t102,\n\t97,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t114,\n\t115,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t100,\n\t101,\n\t110,\n\t111,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t58,\n\t32,\n\t35,\n\t108,\n\t101,\n\t110,\n\t103,\n\t116,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t101,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t32,\n\t115,\n\t105,\n\t103,\n\t110,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t110,\n\t116,\n\t34,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t62,\n\t114,\n\t101,\n\t118,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t114,\n\t121,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t105,\n\t112,\n\t108,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t105,\n\t115,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t119,\n\t97,\n\t115,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t73,\n\t110,\n\t100,\n\t111,\n\t45,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t97,\n\t110,\n\t118,\n\t117,\n\t108,\n\t110,\n\t101,\n\t114,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t116,\n\t111,\n\t112,\n\t114,\n\t111,\n\t112,\n\t111,\n\t110,\n\t101,\n\t110,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t97,\n\t114,\n\t101,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t99,\n\t108,\n\t111,\n\t115,\n\t101,\n\t114,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t78,\n\t101,\n\t119,\n\t32,\n\t89,\n\t111,\n\t114,\n\t107,\n\t32,\n\t67,\n\t105,\n\t116,\n\t121,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t97,\n\t116,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t99,\n\t111,\n\t117,\n\t114,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t97,\n\t116,\n\t104,\n\t101,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t105,\n\t97,\n\t110,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t110,\n\t100,\n\t32,\n\t111,\n\t102,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t110,\n\t100,\n\t32,\n\t111,\n\t102,\n\t34,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t116,\n\t101,\n\t99,\n\t104,\n\t110,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t97,\n\t108,\n\t46,\n\t114,\n\t101,\n\t109,\n\t111,\n\t118,\n\t101,\n\t67,\n\t108,\n\t97,\n\t115,\n\t115,\n\t40,\n\t98,\n\t114,\n\t97,\n\t110,\n\t99,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t118,\n\t105,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t33,\n\t91,\n\t101,\n\t110,\n\t100,\n\t105,\n\t102,\n\t93,\n\t45,\n\t45,\n\t62,\n\t13,\n\t10,\n\t73,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t32,\n\t97,\n\t32,\n\t115,\n\t105,\n\t110,\n\t103,\n\t108,\n\t101,\n\t114,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t46,\n\t97,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t116,\n\t105,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t105,\n\t115,\n\t32,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t84,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t105,\n\t115,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t110,\n\t100,\n\t97,\n\t115,\n\t104,\n\t59,\n\t32,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t101,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t117,\n\t116,\n\t104,\n\t111,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t101,\n\t113,\n\t117,\n\t105,\n\t112,\n\t112,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t100,\n\t111,\n\t101,\n\t115,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t99,\n\t111,\n\t110,\n\t102,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t84,\n\t104,\n\t101,\n\t115,\n\t101,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t108,\n\t101,\n\t115,\n\t115,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t98,\n\t101,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t10,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t112,\n\t101,\n\t114,\n\t99,\n\t101,\n\t110,\n\t116,\n\t97,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t97,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t110,\n\t32,\n\t97,\n\t116,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t32,\n\t116,\n\t111,\n\t112,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t106,\n\t113,\n\t117,\n\t101,\n\t114,\n\t121,\n\t47,\n\t106,\n\t113,\n\t117,\n\t101,\n\t114,\n\t121,\n\t116,\n\t119,\n\t111,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t98,\n\t101,\n\t108,\n\t111,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t109,\n\t101,\n\t110,\n\t116,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t34,\n\t32,\n\t100,\n\t101,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t65,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t119,\n\t105,\n\t100,\n\t101,\n\t32,\n\t114,\n\t97,\n\t110,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t108,\n\t121,\n\t111,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t115,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t105,\n\t116,\n\t121,\n\t119,\n\t97,\n\t115,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t100,\n\t32,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t109,\n\t100,\n\t97,\n\t115,\n\t104,\n\t59,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t97,\n\t110,\n\t32,\n\t97,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t102,\n\t97,\n\t99,\n\t116,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t110,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t115,\n\t105,\n\t103,\n\t110,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t110,\n\t116,\n\t108,\n\t121,\n\t111,\n\t110,\n\t109,\n\t111,\n\t117,\n\t115,\n\t101,\n\t111,\n\t118,\n\t101,\n\t114,\n\t61,\n\t34,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t32,\n\t97,\n\t115,\n\t121,\n\t110,\n\t99,\n\t32,\n\t61,\n\t32,\n\t116,\n\t114,\n\t117,\n\t101,\n\t59,\n\t112,\n\t114,\n\t111,\n\t98,\n\t108,\n\t101,\n\t109,\n\t115,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t115,\n\t101,\n\t101,\n\t109,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t105,\n\t97,\n\t114,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t112,\n\t111,\n\t115,\n\t115,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t40,\n\t41,\n\t32,\n\t123,\n\t116,\n\t111,\n\t111,\n\t107,\n\t32,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t32,\n\t105,\n\t110,\n\t97,\n\t110,\n\t100,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t105,\n\t115,\n\t32,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t105,\n\t110,\n\t32,\n\t97,\n\t110,\n\t32,\n\t97,\n\t116,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t103,\n\t114,\n\t101,\n\t97,\n\t116,\n\t32,\n\t100,\n\t101,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t69,\n\t110,\n\t118,\n\t105,\n\t114,\n\t111,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t102,\n\t117,\n\t108,\n\t108,\n\t121,\n\t32,\n\t118,\n\t105,\n\t114,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t97,\n\t108,\n\t108,\n\t50,\n\t48,\n\t116,\n\t104,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t44,\n\t112,\n\t114,\n\t111,\n\t102,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t115,\n\t110,\n\t101,\n\t99,\n\t101,\n\t115,\n\t115,\n\t97,\n\t114,\n\t121,\n\t32,\n\t116,\n\t111,\n\t32,\n\t100,\n\t101,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t116,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t68,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t109,\n\t111,\n\t100,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t84,\n\t104,\n\t101,\n\t32,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t109,\n\t97,\n\t121,\n\t32,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t32,\n\t116,\n\t111,\n\t58,\n\t67,\n\t111,\n\t110,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t44,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t98,\n\t101,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t39,\n\t115,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t102,\n\t105,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t40,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t108,\n\t121,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t108,\n\t101,\n\t102,\n\t116,\n\t34,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t108,\n\t121,\n\t98,\n\t97,\n\t115,\n\t105,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t111,\n\t32,\n\t114,\n\t101,\n\t100,\n\t117,\n\t99,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t106,\n\t117,\n\t114,\n\t105,\n\t115,\n\t100,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t120,\n\t105,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t110,\n\t109,\n\t111,\n\t117,\n\t115,\n\t101,\n\t111,\n\t117,\n\t116,\n\t61,\n\t34,\n\t78,\n\t101,\n\t119,\n\t32,\n\t84,\n\t101,\n\t115,\n\t116,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t85,\n\t110,\n\t105,\n\t116,\n\t101,\n\t100,\n\t102,\n\t105,\n\t108,\n\t109,\n\t32,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t45,\n\t115,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t46,\n\t100,\n\t116,\n\t100,\n\t34,\n\t62,\n\t104,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t98,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t117,\n\t110,\n\t112,\n\t114,\n\t101,\n\t99,\n\t101,\n\t100,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t105,\n\t115,\n\t32,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t32,\n\t116,\n\t111,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t105,\n\t110,\n\t119,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t32,\n\t98,\n\t111,\n\t108,\n\t100,\n\t59,\n\t105,\n\t115,\n\t32,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t109,\n\t112,\n\t117,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t105,\n\t110,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t114,\n\t101,\n\t115,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t9,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t97,\n\t114,\n\t101,\n\t32,\n\t116,\n\t121,\n\t112,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t99,\n\t111,\n\t110,\n\t102,\n\t108,\n\t105,\n\t99,\n\t116,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t65,\n\t110,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t114,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t113,\n\t117,\n\t97,\n\t110,\n\t116,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t114,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t32,\n\t97,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t101,\n\t108,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t101,\n\t115,\n\t115,\n\t97,\n\t114,\n\t121,\n\t32,\n\t102,\n\t111,\n\t114,\n\t114,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t97,\n\t110,\n\t100,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t32,\n\t116,\n\t111,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t97,\n\t109,\n\t101,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t71,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t99,\n\t111,\n\t109,\n\t109,\n\t105,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t111,\n\t9,\n\t9,\n\t60,\n\t117,\n\t108,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t118,\n\t105,\n\t115,\n\t117,\n\t97,\n\t108,\n\t105,\n\t122,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t49,\n\t57,\n\t116,\n\t104,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t44,\n\t112,\n\t114,\n\t97,\n\t99,\n\t116,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t101,\n\t114,\n\t115,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t104,\n\t101,\n\t32,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t97,\n\t110,\n\t100,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t101,\n\t100,\n\t111,\n\t99,\n\t99,\n\t117,\n\t112,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t105,\n\t115,\n\t32,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t99,\n\t101,\n\t110,\n\t116,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t109,\n\t111,\n\t117,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t97,\n\t108,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t105,\n\t97,\n\t116,\n\t101,\n\t98,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t32,\n\t97,\n\t98,\n\t111,\n\t117,\n\t116,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t108,\n\t101,\n\t102,\n\t116,\n\t58,\n\t32,\n\t97,\n\t117,\n\t116,\n\t111,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t97,\n\t115,\n\t83,\n\t111,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t100,\n\t117,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t97,\n\t110,\n\t100,\n\t105,\n\t110,\n\t102,\n\t108,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t114,\n\t101,\n\t112,\n\t117,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t97,\n\t115,\n\t10,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t97,\n\t99,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t100,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t73,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t111,\n\t45,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t32,\n\t97,\n\t103,\n\t97,\n\t105,\n\t110,\n\t115,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t73,\n\t110,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t99,\n\t97,\n\t115,\n\t101,\n\t44,\n\t119,\n\t97,\n\t115,\n\t32,\n\t97,\n\t112,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t101,\n\t100,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t68,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t109,\n\t97,\n\t105,\n\t110,\n\t105,\n\t110,\n\t103,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t32,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t108,\n\t121,\n\t32,\n\t100,\n\t101,\n\t97,\n\t108,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t97,\n\t108,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t97,\n\t108,\n\t119,\n\t97,\n\t121,\n\t115,\n\t97,\n\t114,\n\t101,\n\t32,\n\t99,\n\t117,\n\t114,\n\t114,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t101,\n\t120,\n\t112,\n\t114,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t112,\n\t104,\n\t105,\n\t108,\n\t111,\n\t115,\n\t111,\n\t112,\n\t104,\n\t121,\n\t32,\n\t111,\n\t102,\n\t102,\n\t111,\n\t114,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t99,\n\t105,\n\t118,\n\t105,\n\t108,\n\t105,\n\t122,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t115,\n\t108,\n\t97,\n\t110,\n\t100,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t73,\n\t110,\n\t100,\n\t101,\n\t120,\n\t99,\n\t97,\n\t110,\n\t32,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t32,\n\t105,\n\t110,\n\t34,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t34,\n\t32,\n\t47,\n\t62,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t47,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t77,\n\t97,\n\t110,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t85,\n\t110,\n\t105,\n\t116,\n\t101,\n\t100,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t109,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t32,\n\t116,\n\t114,\n\t97,\n\t99,\n\t101,\n\t100,\n\t105,\n\t115,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t105,\n\t115,\n\t32,\n\t102,\n\t114,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t108,\n\t105,\n\t118,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t111,\n\t114,\n\t101,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t70,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t82,\n\t101,\n\t118,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t114,\n\t121,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t105,\n\t110,\n\t105,\n\t115,\n\t32,\n\t100,\n\t101,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t101,\n\t100,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t105,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t115,\n\t117,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t111,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t34,\n\t62,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t32,\n\t115,\n\t116,\n\t111,\n\t114,\n\t105,\n\t101,\n\t115,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t97,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t119,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t105,\n\t116,\n\t115,\n\t119,\n\t97,\n\t115,\n\t32,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t105,\n\t115,\n\t32,\n\t97,\n\t110,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t105,\n\t110,\n\t99,\n\t105,\n\t112,\n\t97,\n\t108,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t115,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t97,\n\t114,\n\t101,\n\t99,\n\t111,\n\t103,\n\t110,\n\t105,\n\t122,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t97,\n\t32,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t114,\n\t101,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t101,\n\t100,\n\t104,\n\t101,\n\t97,\n\t100,\n\t32,\n\t111,\n\t102,\n\t32,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t105,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t103,\n\t114,\n\t97,\n\t100,\n\t117,\n\t97,\n\t116,\n\t101,\n\t84,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t32,\n\t116,\n\t119,\n\t111,\n\t103,\n\t114,\n\t97,\n\t118,\n\t105,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t97,\n\t114,\n\t101,\n\t32,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t101,\n\t100,\n\t105,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t115,\n\t101,\n\t114,\n\t118,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t111,\n\t112,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t102,\n\t117,\n\t110,\n\t100,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t108,\n\t121,\n\t100,\n\t111,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t97,\n\t108,\n\t108,\n\t105,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t119,\n\t97,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t99,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t114,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t44,\n\t97,\n\t110,\n\t100,\n\t32,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t105,\n\t110,\n\t32,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t50,\n\t48,\n\t116,\n\t104,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t46,\n\t97,\n\t110,\n\t100,\n\t32,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t108,\n\t111,\n\t97,\n\t100,\n\t67,\n\t104,\n\t97,\n\t114,\n\t116,\n\t98,\n\t101,\n\t97,\n\t116,\n\t116,\n\t111,\n\t32,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t115,\n\t101,\n\t110,\n\t118,\n\t105,\n\t114,\n\t111,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t32,\n\t104,\n\t97,\n\t108,\n\t102,\n\t32,\n\t111,\n\t102,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t32,\n\t97,\n\t110,\n\t100,\n\t97,\n\t114,\n\t99,\n\t104,\n\t105,\n\t116,\n\t101,\n\t99,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t98,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t105,\n\t122,\n\t101,\n\t100,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t118,\n\t97,\n\t108,\n\t97,\n\t117,\n\t116,\n\t104,\n\t111,\n\t114,\n\t105,\n\t116,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t70,\n\t101,\n\t100,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t119,\n\t97,\n\t115,\n\t32,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t101,\n\t100,\n\t101,\n\t100,\n\t97,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t97,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t80,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t100,\n\t102,\n\t114,\n\t101,\n\t101,\n\t32,\n\t115,\n\t111,\n\t102,\n\t116,\n\t119,\n\t97,\n\t114,\n\t101,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t119,\n\t97,\n\t115,\n\t32,\n\t100,\n\t101,\n\t115,\n\t116,\n\t114,\n\t111,\n\t121,\n\t101,\n\t100,\n\t97,\n\t119,\n\t97,\n\t121,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t59,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t60,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t97,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t112,\n\t111,\n\t119,\n\t101,\n\t114,\n\t102,\n\t117,\n\t108,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t97,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t116,\n\t32,\n\t116,\n\t111,\n\t117,\n\t110,\n\t116,\n\t105,\n\t108,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t110,\n\t100,\n\t119,\n\t97,\n\t115,\n\t32,\n\t97,\n\t110,\n\t110,\n\t111,\n\t117,\n\t110,\n\t99,\n\t101,\n\t100,\n\t97,\n\t114,\n\t101,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t115,\n\t62,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t68,\n\t79,\n\t32,\n\t78,\n\t79,\n\t84,\n\t32,\n\t65,\n\t76,\n\t84,\n\t69,\n\t82,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t116,\n\t104,\n\t101,\n\t109,\n\t101,\n\t115,\n\t47,\n\t63,\n\t115,\n\t111,\n\t114,\n\t116,\n\t61,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t104,\n\t97,\n\t100,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t116,\n\t104,\n\t101,\n\t32,\n\t98,\n\t97,\n\t115,\n\t105,\n\t115,\n\t32,\n\t102,\n\t111,\n\t114,\n\t104,\n\t97,\n\t115,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t117,\n\t109,\n\t109,\n\t101,\n\t114,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t117,\n\t99,\n\t104,\n\t32,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t111,\n\t115,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t105,\n\t110,\n\t103,\n\t105,\n\t115,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t118,\n\t97,\n\t114,\n\t105,\n\t111,\n\t117,\n\t115,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t83,\n\t111,\n\t117,\n\t116,\n\t104,\n\t32,\n\t65,\n\t102,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t97,\n\t109,\n\t101,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t110,\n\t101,\n\t115,\n\t115,\n\t105,\n\t110,\n\t32,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t99,\n\t97,\n\t115,\n\t101,\n\t59,\n\t32,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t97,\n\t110,\n\t100,\n\t59,\n\t32,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t58,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t115,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t98,\n\t97,\n\t104,\n\t97,\n\t115,\n\t97,\n\t32,\n\t77,\n\t101,\n\t108,\n\t97,\n\t121,\n\t117,\n\t110,\n\t111,\n\t114,\n\t115,\n\t107,\n\t32,\n\t98,\n\t111,\n\t107,\n\t109,\n\t195,\n\t165,\n\t108,\n\t110,\n\t111,\n\t114,\n\t115,\n\t107,\n\t32,\n\t110,\n\t121,\n\t110,\n\t111,\n\t114,\n\t115,\n\t107,\n\t115,\n\t108,\n\t111,\n\t118,\n\t101,\n\t110,\n\t197,\n\t161,\n\t196,\n\t141,\n\t105,\n\t110,\n\t97,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t99,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t99,\n\t97,\n\t108,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t111,\n\t109,\n\t117,\n\t110,\n\t105,\n\t99,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t34,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t97,\n\t109,\n\t98,\n\t105,\n\t103,\n\t117,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t68,\n\t111,\n\t109,\n\t97,\n\t105,\n\t110,\n\t78,\n\t97,\n\t109,\n\t101,\n\t39,\n\t44,\n\t32,\n\t39,\n\t97,\n\t100,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t105,\n\t109,\n\t117,\n\t108,\n\t116,\n\t97,\n\t110,\n\t101,\n\t111,\n\t117,\n\t115,\n\t108,\n\t121,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t58,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t60,\n\t33,\n\t91,\n\t101,\n\t110,\n\t100,\n\t105,\n\t102,\n\t93,\n\t45,\n\t45,\n\t62,\n\t10,\n\t60,\n\t47,\n\t62,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t105,\n\t109,\n\t112,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t102,\n\t114,\n\t97,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t45,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t58,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t61,\n\t104,\n\t116,\n\t116,\n\t112,\n\t37,\n\t51,\n\t65,\n\t37,\n\t50,\n\t70,\n\t37,\n\t50,\n\t70,\n\t60,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t61,\n\t34,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t61,\n\t34,\n\t112,\n\t111,\n\t115,\n\t116,\n\t34,\n\t32,\n\t47,\n\t102,\n\t97,\n\t118,\n\t105,\n\t99,\n\t111,\n\t110,\n\t46,\n\t105,\n\t99,\n\t111,\n\t34,\n\t32,\n\t125,\n\t41,\n\t59,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t46,\n\t115,\n\t101,\n\t116,\n\t65,\n\t116,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t101,\n\t40,\n\t65,\n\t100,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t32,\n\t110,\n\t101,\n\t119,\n\t32,\n\t65,\n\t114,\n\t114,\n\t97,\n\t121,\n\t40,\n\t41,\n\t59,\n\t60,\n\t33,\n\t91,\n\t101,\n\t110,\n\t100,\n\t105,\n\t102,\n\t93,\n\t45,\n\t45,\n\t62,\n\t13,\n\t10,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t59,\n\t85,\n\t110,\n\t102,\n\t111,\n\t114,\n\t116,\n\t117,\n\t110,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t44,\n\t34,\n\t62,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t47,\n\t102,\n\t97,\n\t118,\n\t105,\n\t99,\n\t111,\n\t110,\n\t46,\n\t105,\n\t99,\n\t111,\n\t34,\n\t62,\n\t61,\n\t39,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t39,\n\t32,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t44,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t44,\n\t60,\n\t108,\n\t105,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t97,\n\t110,\n\t32,\n\t97,\n\t108,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t97,\n\t115,\n\t32,\n\t97,\n\t32,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t32,\n\t111,\n\t102,\n\t112,\n\t116,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t34,\n\t32,\n\t10,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t32,\n\t123,\n\t114,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t101,\n\t110,\n\t100,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t47,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t46,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t32,\n\t65,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t97,\n\t108,\n\t111,\n\t110,\n\t103,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t98,\n\t111,\n\t100,\n\t121,\n\t46,\n\t97,\n\t112,\n\t112,\n\t114,\n\t111,\n\t120,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t32,\n\t67,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t112,\n\t111,\n\t115,\n\t116,\n\t34,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t109,\n\t101,\n\t97,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t45,\n\t45,\n\t60,\n\t33,\n\t91,\n\t101,\n\t110,\n\t100,\n\t105,\n\t102,\n\t93,\n\t45,\n\t45,\n\t62,\n\t80,\n\t114,\n\t105,\n\t109,\n\t101,\n\t32,\n\t77,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t105,\n\t115,\n\t116,\n\t105,\n\t99,\n\t60,\n\t47,\n\t97,\n\t62,\n\t32,\n\t60,\n\t97,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t116,\n\t104,\n\t101,\n\t32,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t111,\n\t110,\n\t109,\n\t111,\n\t117,\n\t115,\n\t101,\n\t111,\n\t118,\n\t101,\n\t114,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t32,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t115,\n\t58,\n\t47,\n\t47,\n\t119,\n\t97,\n\t115,\n\t32,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t119,\n\t97,\n\t115,\n\t32,\n\t105,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t97,\n\t114,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t60,\n\t33,\n\t91,\n\t101,\n\t110,\n\t100,\n\t105,\n\t102,\n\t93,\n\t45,\n\t45,\n\t62,\n\t10,\n\t10,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t115,\n\t32,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t105,\n\t110,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t97,\n\t115,\n\t116,\n\t32,\n\t116,\n\t111,\n\t32,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t104,\n\t111,\n\t108,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t97,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t105,\n\t116,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t45,\n\t58,\n\t32,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t32,\n\t123,\n\t66,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t45,\n\t115,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t46,\n\t100,\n\t116,\n\t100,\n\t34,\n\t62,\n\t10,\n\t60,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t97,\n\t99,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t110,\n\t105,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t99,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t47,\n\t110,\n\t97,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t105,\n\t110,\n\t32,\n\t97,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t115,\n\t41,\n\t59,\n\t32,\n\t106,\n\t115,\n\t46,\n\t105,\n\t100,\n\t32,\n\t61,\n\t32,\n\t105,\n\t100,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t49,\n\t48,\n\t48,\n\t37,\n\t34,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t82,\n\t111,\n\t109,\n\t97,\n\t110,\n\t32,\n\t67,\n\t97,\n\t116,\n\t104,\n\t111,\n\t108,\n\t105,\n\t99,\n\t97,\n\t110,\n\t32,\n\t105,\n\t110,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t101,\n\t110,\n\t116,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t46,\n\t103,\n\t105,\n\t102,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t49,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t32,\n\t100,\n\t105,\n\t115,\n\t99,\n\t114,\n\t105,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t114,\n\t99,\n\t104,\n\t97,\n\t101,\n\t111,\n\t108,\n\t111,\n\t103,\n\t105,\n\t99,\n\t97,\n\t108,\n\t112,\n\t114,\n\t105,\n\t109,\n\t101,\n\t32,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t99,\n\t111,\n\t109,\n\t98,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t40,\n\t119,\n\t46,\n\t97,\n\t116,\n\t116,\n\t97,\n\t99,\n\t104,\n\t69,\n\t118,\n\t101,\n\t110,\n\t116,\n\t40,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t60,\n\t47,\n\t116,\n\t114,\n\t62,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t115,\n\t58,\n\t47,\n\t47,\n\t97,\n\t73,\n\t110,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t44,\n\t32,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t108,\n\t101,\n\t102,\n\t116,\n\t34,\n\t32,\n\t67,\n\t122,\n\t101,\n\t99,\n\t104,\n\t32,\n\t82,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t85,\n\t110,\n\t105,\n\t116,\n\t101,\n\t100,\n\t32,\n\t75,\n\t105,\n\t110,\n\t103,\n\t100,\n\t111,\n\t109,\n\t99,\n\t111,\n\t114,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t100,\n\t101,\n\t110,\n\t99,\n\t101,\n\t99,\n\t111,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t46,\n\t104,\n\t116,\n\t109,\n\t108,\n\t34,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t61,\n\t34,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t40,\n\t41,\n\t32,\n\t123,\n\t99,\n\t111,\n\t109,\n\t101,\n\t115,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t115,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t118,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t40,\n\t39,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t39,\n\t60,\n\t47,\n\t97,\n\t62,\n\t10,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t10,\n\t60,\n\t108,\n\t105,\n\t118,\n\t101,\n\t114,\n\t121,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t62,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t40,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t9,\n\t60,\n\t108,\n\t105,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t62,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t97,\n\t115,\n\t32,\n\t118,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t116,\n\t111,\n\t112,\n\t34,\n\t62,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t116,\n\t116,\n\t101,\n\t109,\n\t112,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t99,\n\t97,\n\t114,\n\t98,\n\t111,\n\t110,\n\t32,\n\t100,\n\t105,\n\t111,\n\t120,\n\t105,\n\t100,\n\t101,\n\t10,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t45,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t10,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t111,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t117,\n\t110,\n\t105,\n\t116,\n\t121,\n\t32,\n\t116,\n\t111,\n\t99,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t13,\n\t10,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t84,\n\t105,\n\t225,\n\t186,\n\t191,\n\t110,\n\t103,\n\t32,\n\t86,\n\t105,\n\t225,\n\t187,\n\t135,\n\t116,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t115,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t45,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t35,\n\t48,\n\t34,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t119,\n\t97,\n\t115,\n\t32,\n\t100,\n\t105,\n\t115,\n\t99,\n\t111,\n\t118,\n\t101,\n\t114,\n\t101,\n\t100,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t41,\n\t59,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t10,\n\t68,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t101,\n\t99,\n\t99,\n\t108,\n\t101,\n\t115,\n\t105,\n\t97,\n\t115,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t104,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t60,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t104,\n\t97,\n\t115,\n\t32,\n\t110,\n\t101,\n\t118,\n\t101,\n\t114,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t105,\n\t110,\n\t32,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t101,\n\t32,\n\t116,\n\t111,\n\t97,\n\t117,\n\t116,\n\t111,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t119,\n\t97,\n\t115,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t112,\n\t101,\n\t114,\n\t99,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t34,\n\t32,\n\t47,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t100,\n\t101,\n\t115,\n\t99,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t115,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t99,\n\t99,\n\t101,\n\t112,\n\t116,\n\t45,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t102,\n\t117,\n\t115,\n\t101,\n\t100,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t45,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t101,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t39,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t111,\n\t114,\n\t32,\n\t110,\n\t111,\n\t116,\n\t84,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t97,\n\t32,\n\t115,\n\t109,\n\t97,\n\t108,\n\t108,\n\t32,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t105,\n\t109,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t46,\n\t32,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t110,\n\t100,\n\t32,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t65,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t110,\n\t100,\n\t32,\n\t111,\n\t102,\n\t32,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t105,\n\t116,\n\t115,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t32,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t61,\n\t34,\n\t112,\n\t111,\n\t115,\n\t116,\n\t34,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t108,\n\t105,\n\t107,\n\t101,\n\t108,\n\t121,\n\t32,\n\t116,\n\t111,\n\t97,\n\t110,\n\t32,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t101,\n\t32,\n\t105,\n\t110,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t99,\n\t111,\n\t114,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t100,\n\t115,\n\t32,\n\t116,\n\t111,\n\t97,\n\t110,\n\t110,\n\t111,\n\t117,\n\t110,\n\t99,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t34,\n\t62,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t102,\n\t111,\n\t114,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t101,\n\t97,\n\t114,\n\t108,\n\t105,\n\t101,\n\t115,\n\t116,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t105,\n\t116,\n\t32,\n\t119,\n\t97,\n\t115,\n\t112,\n\t116,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t32,\n\t118,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t116,\n\t111,\n\t112,\n\t34,\n\t32,\n\t105,\n\t110,\n\t104,\n\t97,\n\t98,\n\t105,\n\t116,\n\t97,\n\t110,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t13,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t109,\n\t105,\n\t108,\n\t108,\n\t105,\n\t111,\n\t110,\n\t32,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t97,\n\t108,\n\t32,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t114,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t114,\n\t103,\n\t117,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t97,\n\t110,\n\t100,\n\t97,\n\t32,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t111,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t98,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t98,\n\t101,\n\t115,\n\t116,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t102,\n\t111,\n\t114,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t109,\n\t117,\n\t108,\n\t116,\n\t105,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t32,\n\t111,\n\t110,\n\t101,\n\t32,\n\t114,\n\t101,\n\t99,\n\t111,\n\t103,\n\t110,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t67,\n\t111,\n\t117,\n\t110,\n\t99,\n\t105,\n\t108,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t32,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t69,\n\t110,\n\t116,\n\t101,\n\t114,\n\t116,\n\t97,\n\t105,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t97,\n\t119,\n\t97,\n\t121,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t59,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t118,\n\t101,\n\t115,\n\t116,\n\t105,\n\t103,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t99,\n\t111,\n\t110,\n\t110,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t97,\n\t110,\n\t100,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t97,\n\t108,\n\t116,\n\t104,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t100,\n\t101,\n\t115,\n\t99,\n\t101,\n\t110,\n\t100,\n\t97,\n\t110,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t105,\n\t32,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t34,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t32,\n\t97,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t97,\n\t115,\n\t32,\n\t115,\n\t105,\n\t110,\n\t99,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t97,\n\t110,\n\t32,\n\t85,\n\t110,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t99,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t105,\n\t99,\n\t117,\n\t108,\n\t116,\n\t86,\n\t105,\n\t99,\n\t101,\n\t32,\n\t80,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t99,\n\t111,\n\t109,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t112,\n\t97,\n\t115,\n\t115,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t49,\n\t49,\n\t112,\n\t120,\n\t101,\n\t120,\n\t112,\n\t108,\n\t97,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t112,\n\t116,\n\t32,\n\t111,\n\t102,\n\t119,\n\t114,\n\t105,\n\t116,\n\t116,\n\t101,\n\t110,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t9,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t105,\n\t115,\n\t32,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t115,\n\t101,\n\t109,\n\t98,\n\t108,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t111,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t115,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t115,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t109,\n\t101,\n\t97,\n\t110,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t117,\n\t116,\n\t115,\n\t105,\n\t100,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t116,\n\t40,\n\t77,\n\t97,\n\t116,\n\t104,\n\t46,\n\t114,\n\t97,\n\t110,\n\t100,\n\t111,\n\t109,\n\t40,\n\t41,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t112,\n\t114,\n\t111,\n\t109,\n\t105,\n\t110,\n\t101,\n\t110,\n\t116,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t67,\n\t111,\n\t110,\n\t115,\n\t116,\n\t97,\n\t110,\n\t116,\n\t105,\n\t110,\n\t111,\n\t112,\n\t108,\n\t101,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t115,\n\t101,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t115,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t49,\n\t34,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t49,\n\t34,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t115,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t104,\n\t97,\n\t100,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t100,\n\t101,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t10,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t32,\n\t116,\n\t111,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t116,\n\t101,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t58,\n\t98,\n\t13,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t60,\n\t119,\n\t97,\n\t115,\n\t32,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t118,\n\t105,\n\t101,\n\t119,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t95,\n\t105,\n\t100,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t99,\n\t97,\n\t112,\n\t105,\n\t116,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t13,\n\t10,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t114,\n\t101,\n\t108,\n\t101,\n\t97,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t32,\n\t111,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t120,\n\t77,\n\t76,\n\t72,\n\t116,\n\t116,\n\t112,\n\t82,\n\t101,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t32,\n\t115,\n\t117,\n\t98,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t115,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t32,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t115,\n\t116,\n\t118,\n\t101,\n\t114,\n\t121,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t115,\n\t117,\n\t114,\n\t102,\n\t97,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t105,\n\t103,\n\t110,\n\t32,\n\t112,\n\t111,\n\t108,\n\t105,\n\t99,\n\t121,\n\t95,\n\t115,\n\t101,\n\t116,\n\t68,\n\t111,\n\t109,\n\t97,\n\t105,\n\t110,\n\t78,\n\t97,\n\t109,\n\t101,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t105,\n\t115,\n\t32,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t118,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t73,\n\t110,\n\t32,\n\t97,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t109,\n\t101,\n\t97,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t115,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t100,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t116,\n\t111,\n\t32,\n\t112,\n\t114,\n\t111,\n\t116,\n\t101,\n\t99,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t115,\n\t32,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t68,\n\t101,\n\t99,\n\t108,\n\t97,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t101,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t67,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t115,\n\t32,\n\t111,\n\t102,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t112,\n\t101,\n\t114,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t32,\n\t123,\n\t13,\n\t105,\n\t102,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t105,\n\t102,\n\t114,\n\t101,\n\t103,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t108,\n\t101,\n\t97,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t85,\n\t110,\n\t105,\n\t116,\n\t101,\n\t100,\n\t32,\n\t78,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t121,\n\t112,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t65,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t10,\n\t60,\n\t47,\n\t104,\n\t101,\n\t97,\n\t100,\n\t62,\n\t10,\n\t60,\n\t98,\n\t111,\n\t100,\n\t121,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t115,\n\t32,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t40,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t110,\n\t116,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t117,\n\t97,\n\t108,\n\t97,\n\t109,\n\t111,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t116,\n\t104,\n\t97,\n\t110,\n\t32,\n\t97,\n\t110,\n\t121,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t47,\n\t62,\n\t10,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t32,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t59,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t117,\n\t114,\n\t112,\n\t111,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t32,\n\t116,\n\t111,\n\t59,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t35,\n\t102,\n\t102,\n\t102,\n\t125,\n\t10,\n\t46,\n\t10,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t117,\n\t98,\n\t106,\n\t101,\n\t99,\n\t116,\n\t32,\n\t111,\n\t102,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t62,\n\t13,\n\t10,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t60,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t99,\n\t101,\n\t108,\n\t101,\n\t98,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t70,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t100,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t117,\n\t105,\n\t115,\n\t104,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t98,\n\t116,\n\t97,\n\t107,\n\t101,\n\t115,\n\t32,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t32,\n\t105,\n\t110,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t110,\n\t111,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t62,\n\t60,\n\t33,\n\t91,\n\t101,\n\t110,\n\t100,\n\t105,\n\t102,\n\t93,\n\t45,\n\t45,\n\t62,\n\t10,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t105,\n\t110,\n\t115,\n\t116,\n\t101,\n\t97,\n\t100,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t115,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t32,\n\t105,\n\t110,\n\t101,\n\t115,\n\t116,\n\t105,\n\t109,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t119,\n\t97,\n\t115,\n\t32,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t111,\n\t117,\n\t116,\n\t32,\n\t104,\n\t105,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t104,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t115,\n\t105,\n\t103,\n\t110,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t110,\n\t116,\n\t108,\n\t121,\n\t32,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t13,\n\t10,\n\t101,\n\t110,\n\t118,\n\t105,\n\t114,\n\t111,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t97,\n\t108,\n\t32,\n\t116,\n\t111,\n\t32,\n\t112,\n\t114,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t102,\n\t111,\n\t114,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t115,\n\t32,\n\t101,\n\t115,\n\t115,\n\t101,\n\t110,\n\t116,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t115,\n\t116,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t32,\n\t109,\n\t97,\n\t100,\n\t101,\n\t34,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t101,\n\t116,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t115,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t32,\n\t104,\n\t97,\n\t108,\n\t102,\n\t32,\n\t111,\n\t102,\n\t99,\n\t114,\n\t111,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t110,\n\t111,\n\t34,\n\t32,\n\t105,\n\t115,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t32,\n\t111,\n\t102,\n\t73,\n\t73,\n\t44,\n\t32,\n\t72,\n\t111,\n\t108,\n\t121,\n\t32,\n\t82,\n\t111,\n\t109,\n\t97,\n\t110,\n\t105,\n\t115,\n\t32,\n\t101,\n\t120,\n\t112,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t114,\n\t32,\n\t111,\n\t119,\n\t110,\n\t100,\n\t101,\n\t102,\n\t105,\n\t110,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t114,\n\t97,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t116,\n\t111,\n\t32,\n\t101,\n\t110,\n\t115,\n\t117,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t103,\n\t114,\n\t101,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t99,\n\t111,\n\t110,\n\t116,\n\t97,\n\t105,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t114,\n\t101,\n\t32,\n\t102,\n\t114,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t110,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t32,\n\t105,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t32,\n\t97,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t60,\n\t47,\n\t117,\n\t108,\n\t62,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t97,\n\t110,\n\t100,\n\t32,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t98,\n\t117,\n\t116,\n\t116,\n\t111,\n\t110,\n\t34,\n\t32,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t100,\n\t62,\n\t10,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t97,\n\t114,\n\t114,\n\t105,\n\t101,\n\t100,\n\t32,\n\t111,\n\t117,\n\t116,\n\t32,\n\t98,\n\t121,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t97,\n\t112,\n\t105,\n\t116,\n\t97,\n\t108,\n\t32,\n\t111,\n\t102,\n\t119,\n\t97,\n\t115,\n\t32,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t119,\n\t104,\n\t105,\n\t99,\n\t104,\n\t32,\n\t104,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t116,\n\t104,\n\t101,\n\t32,\n\t72,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t97,\n\t108,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t32,\n\t116,\n\t111,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t116,\n\t111,\n\t32,\n\t115,\n\t117,\n\t112,\n\t112,\n\t111,\n\t114,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t111,\n\t99,\n\t101,\n\t115,\n\t115,\n\t32,\n\t32,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t104,\n\t105,\n\t115,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t114,\n\t110,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t116,\n\t104,\n\t101,\n\t32,\n\t117,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t111,\n\t112,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t120,\n\t116,\n\t32,\n\t111,\n\t102,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t112,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t113,\n\t34,\n\t9,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t105,\n\t99,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t109,\n\t97,\n\t116,\n\t104,\n\t101,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t105,\n\t97,\n\t110,\n\t115,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t105,\n\t110,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t44,\n\t99,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t41,\n\t59,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t60,\n\t112,\n\t104,\n\t105,\n\t108,\n\t111,\n\t115,\n\t111,\n\t112,\n\t104,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t115,\n\t114,\n\t112,\n\t115,\n\t107,\n\t111,\n\t104,\n\t114,\n\t118,\n\t97,\n\t116,\n\t115,\n\t107,\n\t105,\n\t116,\n\t105,\n\t225,\n\t186,\n\t191,\n\t110,\n\t103,\n\t32,\n\t86,\n\t105,\n\t225,\n\t187,\n\t135,\n\t116,\n\t208,\n\t160,\n\t209,\n\t131,\n\t209,\n\t129,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t185,\n\t209,\n\t128,\n\t209,\n\t131,\n\t209,\n\t129,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t185,\n\t105,\n\t110,\n\t118,\n\t101,\n\t115,\n\t116,\n\t105,\n\t103,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t209,\n\t139,\n\t208,\n\t181,\n\t208,\n\t190,\n\t208,\n\t177,\n\t208,\n\t187,\n\t208,\n\t176,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t209,\n\t139,\n\t208,\n\t185,\n\t209,\n\t135,\n\t208,\n\t181,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t181,\n\t208,\n\t186,\n\t209,\n\t129,\n\t208,\n\t184,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t188,\n\t209,\n\t139,\n\t208,\n\t157,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t209,\n\t139,\n\t209,\n\t133,\n\t208,\n\t190,\n\t208,\n\t177,\n\t208,\n\t187,\n\t208,\n\t176,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t178,\n\t209,\n\t128,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t176,\n\t209,\n\t143,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t189,\n\t209,\n\t143,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t176,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t163,\n\t208,\n\t186,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t184,\n\t208,\n\t189,\n\t209,\n\t139,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t139,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t185,\n\t209,\n\t129,\n\t208,\n\t180,\n\t208,\n\t181,\n\t208,\n\t187,\n\t208,\n\t176,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t190,\n\t209,\n\t137,\n\t209,\n\t140,\n\t209,\n\t142,\n\t209,\n\t129,\n\t209,\n\t128,\n\t208,\n\t181,\n\t208,\n\t180,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t190,\n\t208,\n\t188,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t189,\n\t209,\n\t139,\n\t209,\n\t131,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t135,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t181,\n\t208,\n\t147,\n\t208,\n\t187,\n\t208,\n\t176,\n\t208,\n\t178,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t143,\n\t208,\n\t184,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t184,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t188,\n\t208,\n\t176,\n\t209,\n\t128,\n\t208,\n\t181,\n\t209,\n\t136,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t161,\n\t208,\n\t186,\n\t208,\n\t176,\n\t209,\n\t135,\n\t208,\n\t176,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t191,\n\t208,\n\t190,\n\t209,\n\t141,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t188,\n\t209,\n\t131,\n\t209,\n\t129,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t180,\n\t209,\n\t131,\n\t208,\n\t181,\n\t209,\n\t130,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t176,\n\t209,\n\t130,\n\t209,\n\t140,\n\t209,\n\t130,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t176,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t189,\n\t208,\n\t181,\n\t209,\n\t135,\n\t208,\n\t189,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t181,\n\t209,\n\t136,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t181,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t181,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t179,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t160,\n\t208,\n\t181,\n\t208,\n\t186,\n\t208,\n\t187,\n\t208,\n\t176,\n\t208,\n\t188,\n\t208,\n\t176,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t175,\n\t217,\n\t137,\n\t217,\n\t133,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t136,\n\t216,\n\t182,\n\t217,\n\t136,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t168,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t172,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t136,\n\t216,\n\t167,\n\t217,\n\t130,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t179,\n\t216,\n\t167,\n\t216,\n\t166,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t216,\n\t185,\n\t216,\n\t182,\n\t216,\n\t167,\n\t216,\n\t161,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t182,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t170,\n\t216,\n\t181,\n\t217,\n\t133,\n\t217,\n\t138,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t185,\n\t216,\n\t182,\n\t216,\n\t167,\n\t216,\n\t161,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t167,\n\t216,\n\t166,\n\t216,\n\t172,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t170,\n\t216,\n\t179,\n\t216,\n\t172,\n\t217,\n\t138,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t217,\n\t130,\n\t216,\n\t179,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t182,\n\t216,\n\t186,\n\t216,\n\t183,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t129,\n\t217,\n\t138,\n\t216,\n\t175,\n\t217,\n\t138,\n\t217,\n\t136,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t170,\n\t216,\n\t177,\n\t216,\n\t173,\n\t217,\n\t138,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t172,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t175,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t170,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t138,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t216,\n\t174,\n\t216,\n\t168,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t129,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t217,\n\t129,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t170,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t138,\n\t216,\n\t174,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t170,\n\t217,\n\t130,\n\t217,\n\t134,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t174,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t183,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t172,\n\t216,\n\t170,\n\t217,\n\t133,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t175,\n\t217,\n\t138,\n\t217,\n\t131,\n\t217,\n\t136,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t179,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t173,\n\t216,\n\t169,\n\t216,\n\t185,\n\t216,\n\t168,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t132,\n\t217,\n\t135,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t170,\n\t216,\n\t177,\n\t216,\n\t168,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t168,\n\t216,\n\t183,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t163,\n\t216,\n\t175,\n\t216,\n\t168,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t174,\n\t216,\n\t168,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t170,\n\t216,\n\t173,\n\t216,\n\t175,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t186,\n\t216,\n\t167,\n\t217,\n\t134,\n\t217,\n\t138,\n\t99,\n\t117,\n\t114,\n\t115,\n\t111,\n\t114,\n\t58,\n\t112,\n\t111,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t59,\n\t60,\n\t47,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t62,\n\t10,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t34,\n\t62,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t46,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t118,\n\t101,\n\t114,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t47,\n\t97,\n\t62,\n\t32,\n\t124,\n\t32,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t60,\n\t33,\n\t100,\n\t111,\n\t99,\n\t116,\n\t121,\n\t112,\n\t101,\n\t32,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t61,\n\t34,\n\t115,\n\t99,\n\t114,\n\t101,\n\t101,\n\t110,\n\t34,\n\t32,\n\t60,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t102,\n\t97,\n\t118,\n\t105,\n\t99,\n\t111,\n\t110,\n\t46,\n\t105,\n\t99,\n\t111,\n\t34,\n\t32,\n\t47,\n\t62,\n\t10,\n\t9,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t105,\n\t115,\n\t116,\n\t105,\n\t99,\n\t115,\n\t34,\n\t32,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t61,\n\t34,\n\t103,\n\t101,\n\t116,\n\t34,\n\t32,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t10,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t10,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t99,\n\t117,\n\t116,\n\t32,\n\t105,\n\t99,\n\t111,\n\t110,\n\t34,\n\t32,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t119,\n\t114,\n\t105,\n\t116,\n\t101,\n\t40,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t45,\n\t98,\n\t111,\n\t116,\n\t116,\n\t111,\n\t109,\n\t58,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t115,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t34,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t34,\n\t32,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t111,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t102,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t10,\n\t32,\n\t32,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t34,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t118,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t116,\n\t111,\n\t112,\n\t34,\n\t62,\n\t60,\n\t119,\n\t97,\n\t115,\n\t32,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t41,\n\t59,\n\t13,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t59,\n\t34,\n\t62,\n\t41,\n\t46,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t46,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t98,\n\t101,\n\t99,\n\t97,\n\t117,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t99,\n\t111,\n\t111,\n\t107,\n\t105,\n\t101,\n\t60,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t47,\n\t125,\n\t98,\n\t111,\n\t100,\n\t121,\n\t123,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t58,\n\t48,\n\t59,\n\t69,\n\t110,\n\t99,\n\t121,\n\t99,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t105,\n\t97,\n\t32,\n\t111,\n\t102,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t46,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t40,\n\t110,\n\t97,\n\t109,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t10,\n\t97,\n\t100,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t114,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t32,\n\t60,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t10,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t104,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t34,\n\t62,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t112,\n\t111,\n\t114,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t115,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t34,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t73,\n\t110,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t119,\n\t111,\n\t114,\n\t100,\n\t115,\n\t44,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t32,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t59,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t108,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t47,\n\t62,\n\t10,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t97,\n\t115,\n\t32,\n\t119,\n\t101,\n\t108,\n\t108,\n\t32,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t13,\n\t10,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t9,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t105,\n\t110,\n\t115,\n\t112,\n\t105,\n\t114,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t110,\n\t100,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t116,\n\t105,\n\t98,\n\t108,\n\t101,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t58,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t60,\n\t32,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t71,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t35,\n\t67,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t115,\n\t116,\n\t32,\n\t80,\n\t97,\n\t114,\n\t116,\n\t121,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t116,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t32,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t97,\n\t106,\n\t111,\n\t114,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t34,\n\t32,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t97,\n\t110,\n\t121,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t32,\n\t79,\n\t114,\n\t116,\n\t104,\n\t111,\n\t100,\n\t111,\n\t120,\n\t32,\n\t67,\n\t104,\n\t117,\n\t114,\n\t99,\n\t104,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t47,\n\t62,\n\t10,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t119,\n\t97,\n\t115,\n\t32,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t117,\n\t110,\n\t116,\n\t105,\n\t108,\n\t32,\n\t104,\n\t105,\n\t115,\n\t32,\n\t100,\n\t101,\n\t97,\n\t116,\n\t104,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t115,\n\t99,\n\t111,\n\t109,\n\t112,\n\t97,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t111,\n\t114,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t78,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t108,\n\t97,\n\t110,\n\t100,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t58,\n\t117,\n\t114,\n\t108,\n\t40,\n\t97,\n\t114,\n\t103,\n\t117,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t99,\n\t114,\n\t111,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t110,\n\t111,\n\t34,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t78,\n\t111,\n\t114,\n\t116,\n\t104,\n\t32,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t101,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t114,\n\t97,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t102,\n\t114,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t97,\n\t32,\n\t99,\n\t111,\n\t108,\n\t108,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t118,\n\t101,\n\t114,\n\t121,\n\t32,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t32,\n\t116,\n\t111,\n\t115,\n\t117,\n\t114,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t34,\n\t62,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t95,\n\t99,\n\t97,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t61,\n\t97,\n\t116,\n\t116,\n\t97,\n\t99,\n\t104,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t111,\n\t102,\n\t32,\n\t105,\n\t110,\n\t118,\n\t111,\n\t108,\n\t118,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t115,\n\t32,\n\t100,\n\t101,\n\t114,\n\t105,\n\t118,\n\t101,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t110,\n\t97,\n\t109,\n\t101,\n\t100,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t73,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t114,\n\t101,\n\t115,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t110,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t32,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t32,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t97,\n\t110,\n\t100,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t108,\n\t108,\n\t97,\n\t112,\n\t115,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t84,\n\t104,\n\t105,\n\t115,\n\t32,\n\t109,\n\t101,\n\t97,\n\t110,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t101,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t119,\n\t97,\n\t115,\n\t32,\n\t114,\n\t101,\n\t112,\n\t108,\n\t97,\n\t99,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t97,\n\t110,\n\t97,\n\t108,\n\t121,\n\t115,\n\t105,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t115,\n\t112,\n\t105,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t102,\n\t111,\n\t114,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t115,\n\t117,\n\t99,\n\t99,\n\t101,\n\t115,\n\t115,\n\t102,\n\t117,\n\t108,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t97,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t114,\n\t101,\n\t104,\n\t101,\n\t110,\n\t115,\n\t105,\n\t118,\n\t101,\n\t72,\n\t105,\n\t115,\n\t116,\n\t111,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t101,\n\t114,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t114,\n\t101,\n\t32,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t85,\n\t110,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t100,\n\t32,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t62,\n\t10,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t115,\n\t116,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t116,\n\t111,\n\t112,\n\t80,\n\t114,\n\t111,\n\t112,\n\t97,\n\t103,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t116,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t101,\n\t108,\n\t101,\n\t99,\n\t116,\n\t114,\n\t111,\n\t109,\n\t97,\n\t103,\n\t110,\n\t101,\n\t116,\n\t105,\n\t99,\n\t101,\n\t110,\n\t97,\n\t98,\n\t108,\n\t101,\n\t83,\n\t101,\n\t114,\n\t118,\n\t105,\n\t99,\n\t101,\n\t115,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t73,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t123,\n\t118,\n\t97,\n\t114,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t115,\n\t32,\n\t97,\n\t32,\n\t114,\n\t101,\n\t115,\n\t117,\n\t108,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t70,\n\t111,\n\t114,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t44,\n\t32,\n\t105,\n\t110,\n\t32,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t61,\n\t34,\n\t112,\n\t111,\n\t115,\n\t116,\n\t34,\n\t32,\n\t119,\n\t97,\n\t115,\n\t32,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t109,\n\t100,\n\t97,\n\t115,\n\t104,\n\t59,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t117,\n\t108,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t101,\n\t97,\n\t116,\n\t104,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t114,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t116,\n\t32,\n\t116,\n\t111,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t58,\n\t105,\n\t115,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t108,\n\t121,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t105,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t59,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t34,\n\t32,\n\t105,\n\t115,\n\t32,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t228,\n\t184,\n\t173,\n\t230,\n\t150,\n\t135,\n\t32,\n\t40,\n\t231,\n\t174,\n\t128,\n\t228,\n\t189,\n\t147,\n\t41,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t100,\n\t97,\n\t100,\n\t97,\n\t100,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t114,\n\t97,\n\t99,\n\t105,\n\t195,\n\t179,\n\t110,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t99,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t101,\n\t115,\n\t99,\n\t111,\n\t114,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t100,\n\t105,\n\t101,\n\t110,\n\t116,\n\t101,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t154,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t150,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t173,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t163,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t172,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t137,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t131,\n\t224,\n\t164,\n\t183,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t160,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t162,\n\t224,\n\t164,\n\t188,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t171,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t140,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t129,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t155,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t182,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t183,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t163,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t162,\n\t224,\n\t164,\n\t188,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t171,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t150,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t154,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t155,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t155,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t152,\n\t224,\n\t164,\n\t163,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t167,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t182,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t183,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t188,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t131,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t152,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t150,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t130,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t135,\n\t114,\n\t115,\n\t115,\n\t43,\n\t120,\n\t109,\n\t108,\n\t34,\n\t32,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t61,\n\t34,\n\t45,\n\t116,\n\t121,\n\t112,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t116,\n\t105,\n\t116,\n\t108,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t115,\n\t97,\n\t109,\n\t101,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t60,\n\t34,\n\t32,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t61,\n\t34,\n\t112,\n\t111,\n\t115,\n\t116,\n\t34,\n\t32,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t118,\n\t101,\n\t114,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t116,\n\t47,\n\t106,\n\t113,\n\t117,\n\t101,\n\t114,\n\t121,\n\t46,\n\t109,\n\t105,\n\t110,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t46,\n\t99,\n\t108,\n\t105,\n\t99,\n\t107,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t45,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t41,\n\t59,\n\t32,\n\t114,\n\t101,\n\t116,\n\t117,\n\t114,\n\t110,\n\t32,\n\t102,\n\t97,\n\t108,\n\t115,\n\t101,\n\t59,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t100,\n\t101,\n\t99,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t32,\n\t115,\n\t99,\n\t114,\n\t111,\n\t108,\n\t108,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t110,\n\t111,\n\t34,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t45,\n\t99,\n\t111,\n\t108,\n\t108,\n\t97,\n\t112,\n\t115,\n\t101,\n\t58,\n\t97,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t66,\n\t97,\n\t104,\n\t97,\n\t115,\n\t97,\n\t32,\n\t73,\n\t110,\n\t100,\n\t111,\n\t110,\n\t101,\n\t115,\n\t105,\n\t97,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t60,\n\t116,\n\t101,\n\t120,\n\t116,\n\t32,\n\t120,\n\t109,\n\t108,\n\t58,\n\t115,\n\t112,\n\t97,\n\t99,\n\t101,\n\t61,\n\t46,\n\t103,\n\t105,\n\t102,\n\t34,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t60,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t10,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t10,\n\t111,\n\t118,\n\t101,\n\t114,\n\t102,\n\t108,\n\t111,\n\t119,\n\t58,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t59,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t97,\n\t100,\n\t100,\n\t69,\n\t118,\n\t101,\n\t110,\n\t116,\n\t76,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t101,\n\t114,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t115,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t47,\n\t102,\n\t97,\n\t118,\n\t105,\n\t99,\n\t111,\n\t110,\n\t46,\n\t105,\n\t99,\n\t111,\n\t34,\n\t32,\n\t47,\n\t62,\n\t111,\n\t112,\n\t101,\n\t114,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t115,\n\t121,\n\t115,\n\t116,\n\t101,\n\t109,\n\t34,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t49,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t34,\n\t95,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t34,\n\t62,\n\t83,\n\t116,\n\t97,\n\t116,\n\t101,\n\t32,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t108,\n\t101,\n\t102,\n\t116,\n\t59,\n\t10,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t119,\n\t114,\n\t105,\n\t116,\n\t101,\n\t40,\n\t44,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t41,\n\t59,\n\t13,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t60,\n\t34,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t59,\n\t111,\n\t118,\n\t101,\n\t114,\n\t102,\n\t108,\n\t111,\n\t119,\n\t58,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t110,\n\t32,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t97,\n\t32,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t32,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t9,\n\t9,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t32,\n\t110,\n\t111,\n\t110,\n\t101,\n\t59,\n\t34,\n\t62,\n\t34,\n\t32,\n\t47,\n\t62,\n\t10,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t10,\n\t32,\n\t32,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t32,\n\t123,\n\t116,\n\t104,\n\t101,\n\t32,\n\t49,\n\t53,\n\t116,\n\t104,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t46,\n\t112,\n\t114,\n\t101,\n\t118,\n\t101,\n\t110,\n\t116,\n\t68,\n\t101,\n\t102,\n\t97,\n\t117,\n\t108,\n\t116,\n\t40,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t32,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t66,\n\t121,\n\t122,\n\t97,\n\t110,\n\t116,\n\t105,\n\t110,\n\t101,\n\t32,\n\t69,\n\t109,\n\t112,\n\t105,\n\t114,\n\t101,\n\t46,\n\t106,\n\t112,\n\t103,\n\t124,\n\t116,\n\t104,\n\t117,\n\t109,\n\t98,\n\t124,\n\t108,\n\t101,\n\t102,\n\t116,\n\t124,\n\t118,\n\t97,\n\t115,\n\t116,\n\t32,\n\t109,\n\t97,\n\t106,\n\t111,\n\t114,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t109,\n\t97,\n\t106,\n\t111,\n\t114,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t32,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t61,\n\t34,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t34,\n\t62,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t32,\n\t80,\n\t114,\n\t101,\n\t115,\n\t115,\n\t100,\n\t111,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t83,\n\t101,\n\t99,\n\t111,\n\t110,\n\t100,\n\t32,\n\t87,\n\t111,\n\t114,\n\t108,\n\t100,\n\t32,\n\t87,\n\t97,\n\t114,\n\t100,\n\t105,\n\t115,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t115,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t105,\n\t122,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t110,\n\t111,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t34,\n\t62,\n\t100,\n\t101,\n\t114,\n\t105,\n\t118,\n\t101,\n\t115,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t97,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t97,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t32,\n\t99,\n\t111,\n\t109,\n\t98,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t58,\n\t49,\n\t48,\n\t48,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t45,\n\t115,\n\t112,\n\t101,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t99,\n\t111,\n\t109,\n\t112,\n\t117,\n\t116,\n\t101,\n\t114,\n\t32,\n\t115,\n\t99,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t120,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t68,\n\t101,\n\t109,\n\t111,\n\t99,\n\t114,\n\t97,\n\t116,\n\t105,\n\t99,\n\t32,\n\t80,\n\t97,\n\t114,\n\t116,\n\t121,\n\t34,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t70,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t114,\n\t101,\n\t97,\n\t115,\n\t111,\n\t110,\n\t44,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t9,\n\t115,\n\t66,\n\t121,\n\t84,\n\t97,\n\t103,\n\t78,\n\t97,\n\t109,\n\t101,\n\t40,\n\t115,\n\t41,\n\t91,\n\t48,\n\t93,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t60,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t105,\n\t99,\n\t111,\n\t110,\n\t34,\n\t32,\n\t39,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t39,\n\t39,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t39,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t47,\n\t112,\n\t97,\n\t103,\n\t101,\n\t62,\n\t10,\n\t32,\n\t32,\n\t60,\n\t112,\n\t97,\n\t103,\n\t101,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t111,\n\t110,\n\t116,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t98,\n\t97,\n\t104,\n\t97,\n\t115,\n\t97,\n\t32,\n\t73,\n\t110,\n\t100,\n\t111,\n\t110,\n\t101,\n\t115,\n\t105,\n\t97,\n\t101,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t32,\n\t40,\n\t115,\n\t105,\n\t109,\n\t112,\n\t108,\n\t101,\n\t41,\n\t206,\n\t149,\n\t206,\n\t187,\n\t206,\n\t187,\n\t206,\n\t183,\n\t206,\n\t189,\n\t206,\n\t185,\n\t206,\n\t186,\n\t206,\n\t172,\n\t209,\n\t133,\n\t209,\n\t128,\n\t208,\n\t178,\n\t208,\n\t176,\n\t209,\n\t130,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t191,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t178,\n\t208,\n\t187,\n\t209,\n\t143,\n\t208,\n\t181,\n\t209,\n\t130,\n\t209,\n\t129,\n\t209,\n\t143,\n\t208,\n\t148,\n\t208,\n\t190,\n\t208,\n\t177,\n\t208,\n\t176,\n\t208,\n\t178,\n\t208,\n\t184,\n\t209,\n\t130,\n\t209,\n\t140,\n\t209,\n\t135,\n\t208,\n\t181,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t181,\n\t208,\n\t186,\n\t208,\n\t176,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t178,\n\t208,\n\t184,\n\t209,\n\t130,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t152,\n\t208,\n\t189,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t189,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t158,\n\t209,\n\t130,\n\t208,\n\t178,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t184,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t189,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t189,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t134,\n\t209,\n\t139,\n\t208,\n\t186,\n\t208,\n\t176,\n\t209,\n\t135,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t178,\n\t208,\n\t181,\n\t209,\n\t131,\n\t209,\n\t129,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t184,\n\t209,\n\t143,\n\t209,\n\t133,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t177,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t188,\n\t209,\n\t139,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t187,\n\t209,\n\t131,\n\t209,\n\t135,\n\t208,\n\t184,\n\t209,\n\t130,\n\t209,\n\t140,\n\t209,\n\t143,\n\t208,\n\t178,\n\t208,\n\t187,\n\t209,\n\t143,\n\t209,\n\t142,\n\t209,\n\t130,\n\t209,\n\t129,\n\t209,\n\t143,\n\t208,\n\t189,\n\t208,\n\t176,\n\t208,\n\t184,\n\t208,\n\t177,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t181,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t191,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t178,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t128,\n\t208,\n\t181,\n\t208,\n\t180,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t178,\n\t208,\n\t176,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t182,\n\t217,\n\t138,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t166,\n\t217,\n\t138,\n\t216,\n\t179,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t134,\n\t216,\n\t170,\n\t217,\n\t130,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t167,\n\t216,\n\t170,\n\t217,\n\t131,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t179,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t131,\n\t216,\n\t170,\n\t217,\n\t136,\n\t216,\n\t168,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t179,\n\t216,\n\t185,\n\t217,\n\t136,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t167,\n\t216,\n\t173,\n\t216,\n\t181,\n\t216,\n\t167,\n\t216,\n\t166,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t185,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t181,\n\t217,\n\t136,\n\t216,\n\t170,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t177,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t170,\n\t216,\n\t181,\n\t216,\n\t167,\n\t217,\n\t133,\n\t217,\n\t138,\n\t217,\n\t133,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t165,\n\t216,\n\t179,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t133,\n\t217,\n\t138,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t177,\n\t216,\n\t166,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t170,\n\t114,\n\t111,\n\t98,\n\t111,\n\t116,\n\t115,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t34,\n\t62,\n\t116,\n\t104,\n\t101,\n\t32,\n\t85,\n\t110,\n\t105,\n\t116,\n\t101,\n\t100,\n\t32,\n\t83,\n\t116,\n\t97,\n\t116,\n\t101,\n\t115,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t46,\n\t106,\n\t112,\n\t103,\n\t124,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t124,\n\t116,\n\t104,\n\t117,\n\t109,\n\t98,\n\t124,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t60,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t112,\n\t114,\n\t111,\n\t116,\n\t111,\n\t99,\n\t111,\n\t108,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t115,\n\t34,\n\t32,\n\t47,\n\t62,\n\t10,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t119,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t98,\n\t111,\n\t108,\n\t100,\n\t59,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t58,\n\t48,\n\t59,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t58,\n\t34,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t110,\n\t111,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t34,\n\t32,\n\t80,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t119,\n\t101,\n\t110,\n\t116,\n\t105,\n\t101,\n\t116,\n\t104,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t101,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t62,\n\t10,\n\t32,\n\t32,\n\t60,\n\t47,\n\t112,\n\t97,\n\t103,\n\t101,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t101,\n\t116,\n\t32,\n\t69,\n\t120,\n\t112,\n\t108,\n\t111,\n\t114,\n\t101,\n\t114,\n\t97,\n\t46,\n\t97,\n\t115,\n\t121,\n\t110,\n\t99,\n\t32,\n\t61,\n\t32,\n\t116,\n\t114,\n\t117,\n\t101,\n\t59,\n\t13,\n\t10,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t97,\n\t98,\n\t111,\n\t117,\n\t116,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t34,\n\t62,\n\t34,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t115,\n\t58,\n\t47,\n\t47,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t34,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t34,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t60,\n\t100,\n\t101,\n\t114,\n\t105,\n\t118,\n\t101,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t39,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t97,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t10,\n\t60,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t10,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t10,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t61,\n\t34,\n\t65,\n\t114,\n\t105,\n\t97,\n\t108,\n\t44,\n\t32,\n\t72,\n\t101,\n\t108,\n\t118,\n\t101,\n\t116,\n\t105,\n\t99,\n\t97,\n\t44,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t101,\n\t115,\n\t116,\n\t100,\n\t62,\n\t60,\n\t47,\n\t116,\n\t114,\n\t62,\n\t60,\n\t47,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t62,\n\t60,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t112,\n\t114,\n\t101,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t32,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t119,\n\t114,\n\t105,\n\t116,\n\t101,\n\t40,\n\t39,\n\t60,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t34,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t34,\n\t62,\n\t10,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t114,\n\t101,\n\t118,\n\t101,\n\t97,\n\t108,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t101,\n\t108,\n\t101,\n\t118,\n\t105,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t115,\n\t101,\n\t114,\n\t105,\n\t101,\n\t115,\n\t34,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t110,\n\t111,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t34,\n\t62,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t34,\n\t95,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t34,\n\t62,\n\t99,\n\t108,\n\t97,\n\t105,\n\t109,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t116,\n\t116,\n\t112,\n\t37,\n\t51,\n\t65,\n\t37,\n\t50,\n\t70,\n\t37,\n\t50,\n\t70,\n\t119,\n\t119,\n\t119,\n\t46,\n\t109,\n\t97,\n\t110,\n\t105,\n\t102,\n\t101,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t80,\n\t114,\n\t105,\n\t109,\n\t101,\n\t32,\n\t77,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t102,\n\t108,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t102,\n\t105,\n\t120,\n\t34,\n\t62,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t13,\n\t10,\n\t116,\n\t104,\n\t114,\n\t101,\n\t101,\n\t45,\n\t100,\n\t105,\n\t109,\n\t101,\n\t110,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t67,\n\t104,\n\t117,\n\t114,\n\t99,\n\t104,\n\t32,\n\t111,\n\t102,\n\t32,\n\t69,\n\t110,\n\t103,\n\t108,\n\t97,\n\t110,\n\t100,\n\t111,\n\t102,\n\t32,\n\t78,\n\t111,\n\t114,\n\t116,\n\t104,\n\t32,\n\t67,\n\t97,\n\t114,\n\t111,\n\t108,\n\t105,\n\t110,\n\t97,\n\t115,\n\t113,\n\t117,\n\t97,\n\t114,\n\t101,\n\t32,\n\t107,\n\t105,\n\t108,\n\t111,\n\t109,\n\t101,\n\t116,\n\t114,\n\t101,\n\t115,\n\t46,\n\t97,\n\t100,\n\t100,\n\t69,\n\t118,\n\t101,\n\t110,\n\t116,\n\t76,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t101,\n\t114,\n\t100,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t99,\n\t116,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t108,\n\t121,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t80,\n\t104,\n\t111,\n\t110,\n\t101,\n\t116,\n\t105,\n\t99,\n\t32,\n\t65,\n\t108,\n\t112,\n\t104,\n\t97,\n\t98,\n\t101,\n\t116,\n\t100,\n\t101,\n\t99,\n\t108,\n\t97,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t108,\n\t108,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t66,\n\t101,\n\t110,\n\t106,\n\t97,\n\t109,\n\t105,\n\t110,\n\t32,\n\t70,\n\t114,\n\t97,\n\t110,\n\t107,\n\t108,\n\t105,\n\t110,\n\t114,\n\t111,\n\t108,\n\t101,\n\t45,\n\t112,\n\t108,\n\t97,\n\t121,\n\t105,\n\t110,\n\t103,\n\t32,\n\t103,\n\t97,\n\t109,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t32,\n\t87,\n\t101,\n\t115,\n\t116,\n\t101,\n\t114,\n\t110,\n\t32,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t112,\n\t101,\n\t114,\n\t115,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t99,\n\t111,\n\t109,\n\t112,\n\t117,\n\t116,\n\t101,\n\t114,\n\t80,\n\t114,\n\t111,\n\t106,\n\t101,\n\t99,\n\t116,\n\t32,\n\t71,\n\t117,\n\t116,\n\t101,\n\t110,\n\t98,\n\t101,\n\t114,\n\t103,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t108,\n\t101,\n\t115,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t32,\n\t112,\n\t114,\n\t111,\n\t112,\n\t111,\n\t115,\n\t101,\n\t100,\n\t116,\n\t111,\n\t103,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t60,\n\t108,\n\t105,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t105,\n\t110,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t32,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t109,\n\t105,\n\t110,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t111,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t115,\n\t47,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t105,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t110,\n\t97,\n\t116,\n\t117,\n\t114,\n\t97,\n\t108,\n\t32,\n\t114,\n\t101,\n\t115,\n\t111,\n\t117,\n\t114,\n\t99,\n\t101,\n\t115,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t105,\n\t102,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t99,\n\t97,\n\t110,\n\t32,\n\t98,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t113,\n\t117,\n\t97,\n\t110,\n\t116,\n\t117,\n\t109,\n\t32,\n\t109,\n\t101,\n\t99,\n\t104,\n\t97,\n\t110,\n\t105,\n\t99,\n\t115,\n\t78,\n\t101,\n\t118,\n\t101,\n\t114,\n\t116,\n\t104,\n\t101,\n\t108,\n\t101,\n\t115,\n\t115,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t105,\n\t108,\n\t108,\n\t105,\n\t111,\n\t110,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t32,\n\t97,\n\t103,\n\t111,\n\t60,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t13,\n\t10,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t13,\n\t206,\n\t149,\n\t206,\n\t187,\n\t206,\n\t187,\n\t206,\n\t183,\n\t206,\n\t189,\n\t206,\n\t185,\n\t206,\n\t186,\n\t206,\n\t172,\n\t10,\n\t116,\n\t97,\n\t107,\n\t101,\n\t32,\n\t97,\n\t100,\n\t118,\n\t97,\n\t110,\n\t116,\n\t97,\n\t103,\n\t101,\n\t32,\n\t111,\n\t102,\n\t97,\n\t110,\n\t100,\n\t44,\n\t32,\n\t97,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t97,\n\t116,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t77,\n\t105,\n\t99,\n\t114,\n\t111,\n\t115,\n\t111,\n\t102,\n\t116,\n\t32,\n\t87,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t115,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t111,\n\t108,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t108,\n\t121,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t110,\n\t111,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t101,\n\t120,\n\t99,\n\t101,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t111,\n\t117,\n\t115,\n\t97,\n\t110,\n\t100,\n\t115,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t97,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t46,\n\t114,\n\t101,\n\t97,\n\t99,\n\t104,\n\t105,\n\t110,\n\t103,\n\t32,\n\t109,\n\t105,\n\t108,\n\t105,\n\t116,\n\t97,\n\t114,\n\t121,\n\t105,\n\t115,\n\t111,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t112,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t79,\n\t108,\n\t100,\n\t32,\n\t84,\n\t101,\n\t115,\n\t116,\n\t97,\n\t109,\n\t101,\n\t110,\n\t116,\n\t65,\n\t102,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t32,\n\t65,\n\t109,\n\t101,\n\t114,\n\t105,\n\t99,\n\t97,\n\t110,\n\t115,\n\t105,\n\t110,\n\t115,\n\t101,\n\t114,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t101,\n\t112,\n\t97,\n\t114,\n\t97,\n\t116,\n\t101,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t109,\n\t101,\n\t116,\n\t114,\n\t111,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t97,\n\t110,\n\t32,\n\t97,\n\t114,\n\t101,\n\t97,\n\t109,\n\t97,\n\t107,\n\t101,\n\t115,\n\t32,\n\t105,\n\t116,\n\t32,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t97,\n\t99,\n\t107,\n\t110,\n\t111,\n\t119,\n\t108,\n\t101,\n\t100,\n\t103,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t114,\n\t103,\n\t117,\n\t97,\n\t98,\n\t108,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t62,\n\t10,\n\t116,\n\t104,\n\t101,\n\t32,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t65,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t47,\n\t62,\n\t10,\n\t99,\n\t111,\n\t105,\n\t110,\n\t99,\n\t105,\n\t100,\n\t101,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t119,\n\t111,\n\t45,\n\t116,\n\t104,\n\t105,\n\t114,\n\t100,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t68,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t44,\n\t100,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t101,\n\t114,\n\t105,\n\t111,\n\t100,\n\t97,\n\t110,\n\t110,\n\t111,\n\t117,\n\t110,\n\t99,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t97,\n\t110,\n\t100,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t108,\n\t121,\n\t98,\n\t101,\n\t108,\n\t105,\n\t101,\n\t118,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t115,\n\t99,\n\t105,\n\t111,\n\t117,\n\t115,\n\t110,\n\t101,\n\t115,\n\t115,\n\t32,\n\t97,\n\t110,\n\t100,\n\t102,\n\t111,\n\t114,\n\t109,\n\t101,\n\t114,\n\t108,\n\t121,\n\t32,\n\t107,\n\t110,\n\t111,\n\t119,\n\t110,\n\t32,\n\t97,\n\t115,\n\t115,\n\t117,\n\t114,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t32,\n\t97,\n\t112,\n\t112,\n\t101,\n\t97,\n\t114,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t111,\n\t99,\n\t99,\n\t97,\n\t115,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t117,\n\t115,\n\t101,\n\t100,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t97,\n\t98,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t101,\n\t59,\n\t34,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t34,\n\t95,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t34,\n\t32,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t118,\n\t101,\n\t59,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t59,\n\t106,\n\t97,\n\t120,\n\t47,\n\t108,\n\t105,\n\t98,\n\t115,\n\t47,\n\t106,\n\t113,\n\t117,\n\t101,\n\t114,\n\t121,\n\t47,\n\t49,\n\t46,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t45,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t35,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t47,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t104,\n\t116,\n\t116,\n\t112,\n\t45,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t61,\n\t34,\n\t80,\n\t114,\n\t105,\n\t118,\n\t97,\n\t99,\n\t121,\n\t32,\n\t80,\n\t111,\n\t108,\n\t105,\n\t99,\n\t121,\n\t60,\n\t47,\n\t97,\n\t62,\n\t101,\n\t40,\n\t34,\n\t37,\n\t51,\n\t67,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t39,\n\t34,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t34,\n\t95,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t34,\n\t62,\n\t79,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t104,\n\t97,\n\t110,\n\t100,\n\t44,\n\t46,\n\t106,\n\t112,\n\t103,\n\t124,\n\t116,\n\t104,\n\t117,\n\t109,\n\t98,\n\t124,\n\t114,\n\t105,\n\t103,\n\t104,\n\t116,\n\t124,\n\t50,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t102,\n\t108,\n\t111,\n\t97,\n\t116,\n\t58,\n\t110,\n\t105,\n\t110,\n\t101,\n\t116,\n\t101,\n\t101,\n\t110,\n\t116,\n\t104,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t117,\n\t114,\n\t121,\n\t60,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t13,\n\t10,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t13,\n\t10,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t115,\n\t59,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t119,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t32,\n\t98,\n\t111,\n\t108,\n\t100,\n\t59,\n\t32,\n\t65,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t34,\n\t32,\n\t102,\n\t114,\n\t97,\n\t109,\n\t101,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t34,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t52,\n\t47,\n\t108,\n\t111,\n\t111,\n\t115,\n\t101,\n\t46,\n\t100,\n\t116,\n\t100,\n\t34,\n\t62,\n\t10,\n\t100,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t105,\n\t115,\n\t32,\n\t112,\n\t101,\n\t114,\n\t105,\n\t111,\n\t100,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t60,\n\t47,\n\t116,\n\t114,\n\t62,\n\t60,\n\t47,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t62,\n\t99,\n\t108,\n\t111,\n\t115,\n\t101,\n\t108,\n\t121,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t102,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t32,\n\t116,\n\t105,\n\t109,\n\t101,\n\t59,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t119,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t98,\n\t111,\n\t108,\n\t100,\n\t59,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t111,\n\t110,\n\t114,\n\t101,\n\t97,\n\t100,\n\t121,\n\t115,\n\t116,\n\t97,\n\t116,\n\t101,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t9,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t32,\n\t70,\n\t111,\n\t114,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t32,\n\t119,\n\t105,\n\t100,\n\t101,\n\t32,\n\t118,\n\t97,\n\t114,\n\t105,\n\t101,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t60,\n\t33,\n\t68,\n\t79,\n\t67,\n\t84,\n\t89,\n\t80,\n\t69,\n\t32,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t13,\n\t10,\n\t60,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t34,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t102,\n\t108,\n\t111,\n\t97,\n\t116,\n\t58,\n\t108,\n\t101,\n\t102,\n\t116,\n\t59,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t114,\n\t110,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t61,\n\t104,\n\t116,\n\t116,\n\t112,\n\t37,\n\t51,\n\t65,\n\t37,\n\t50,\n\t70,\n\t37,\n\t50,\n\t70,\n\t119,\n\t119,\n\t119,\n\t46,\n\t105,\n\t110,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t114,\n\t32,\n\t99,\n\t117,\n\t108,\n\t116,\n\t117,\n\t114,\n\t101,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t47,\n\t62,\n\t105,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t32,\n\t116,\n\t111,\n\t32,\n\t72,\n\t97,\n\t114,\n\t118,\n\t97,\n\t114,\n\t100,\n\t32,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t97,\n\t105,\n\t110,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t79,\n\t120,\n\t102,\n\t111,\n\t114,\n\t100,\n\t32,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t32,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t107,\n\t101,\n\t121,\n\t119,\n\t111,\n\t114,\n\t100,\n\t115,\n\t34,\n\t32,\n\t99,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t116,\n\t104,\n\t101,\n\t32,\n\t85,\n\t110,\n\t105,\n\t116,\n\t101,\n\t100,\n\t32,\n\t75,\n\t105,\n\t110,\n\t103,\n\t100,\n\t111,\n\t109,\n\t102,\n\t101,\n\t100,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t103,\n\t111,\n\t118,\n\t101,\n\t114,\n\t110,\n\t109,\n\t101,\n\t110,\n\t116,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t32,\n\t100,\n\t101,\n\t112,\n\t101,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t104,\n\t101,\n\t97,\n\t100,\n\t101,\n\t114,\n\t46,\n\t109,\n\t105,\n\t110,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t100,\n\t101,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t108,\n\t105,\n\t103,\n\t104,\n\t116,\n\t108,\n\t121,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t105,\n\t110,\n\t32,\n\t97,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t116,\n\t101,\n\t108,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t105,\n\t110,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t101,\n\t115,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t108,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t101,\n\t115,\n\t112,\n\t101,\n\t99,\n\t105,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t97,\n\t110,\n\t32,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t115,\n\t116,\n\t97,\n\t116,\n\t105,\n\t99,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t34,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t97,\n\t32,\n\t108,\n\t97,\n\t114,\n\t103,\n\t101,\n\t32,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t84,\n\t101,\n\t108,\n\t101,\n\t99,\n\t111,\n\t109,\n\t109,\n\t117,\n\t110,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t34,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t110,\n\t111,\n\t102,\n\t111,\n\t108,\n\t108,\n\t111,\n\t119,\n\t34,\n\t32,\n\t116,\n\t72,\n\t111,\n\t108,\n\t121,\n\t32,\n\t82,\n\t111,\n\t109,\n\t97,\n\t110,\n\t32,\n\t69,\n\t109,\n\t112,\n\t101,\n\t114,\n\t111,\n\t114,\n\t97,\n\t108,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t101,\n\t120,\n\t99,\n\t108,\n\t117,\n\t115,\n\t105,\n\t118,\n\t101,\n\t108,\n\t121,\n\t34,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t97,\n\t108,\n\t116,\n\t61,\n\t34,\n\t83,\n\t101,\n\t99,\n\t114,\n\t101,\n\t116,\n\t97,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t83,\n\t116,\n\t97,\n\t116,\n\t101,\n\t99,\n\t117,\n\t108,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t67,\n\t73,\n\t65,\n\t32,\n\t87,\n\t111,\n\t114,\n\t108,\n\t100,\n\t32,\n\t70,\n\t97,\n\t99,\n\t116,\n\t98,\n\t111,\n\t111,\n\t107,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t97,\n\t110,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t97,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t45,\n\t60,\n\t108,\n\t105,\n\t62,\n\t60,\n\t101,\n\t109,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t116,\n\t104,\n\t101,\n\t32,\n\t65,\n\t116,\n\t108,\n\t97,\n\t110,\n\t116,\n\t105,\n\t99,\n\t32,\n\t79,\n\t99,\n\t101,\n\t97,\n\t110,\n\t115,\n\t116,\n\t114,\n\t105,\n\t99,\n\t116,\n\t108,\n\t121,\n\t32,\n\t115,\n\t112,\n\t101,\n\t97,\n\t107,\n\t105,\n\t110,\n\t103,\n\t44,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t108,\n\t121,\n\t32,\n\t98,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t116,\n\t104,\n\t101,\n\t32,\n\t79,\n\t116,\n\t116,\n\t111,\n\t109,\n\t97,\n\t110,\n\t32,\n\t69,\n\t109,\n\t112,\n\t105,\n\t114,\n\t101,\n\t62,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t65,\n\t110,\n\t32,\n\t73,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t99,\n\t111,\n\t110,\n\t115,\n\t101,\n\t113,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t117,\n\t114,\n\t101,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t67,\n\t111,\n\t110,\n\t102,\n\t101,\n\t100,\n\t101,\n\t114,\n\t97,\n\t116,\n\t101,\n\t32,\n\t83,\n\t116,\n\t97,\n\t116,\n\t101,\n\t115,\n\t105,\n\t110,\n\t100,\n\t105,\n\t103,\n\t101,\n\t110,\n\t111,\n\t117,\n\t115,\n\t32,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t115,\n\t80,\n\t114,\n\t111,\n\t99,\n\t101,\n\t101,\n\t100,\n\t105,\n\t110,\n\t103,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t111,\n\t114,\n\t105,\n\t101,\n\t115,\n\t32,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t105,\n\t110,\n\t118,\n\t111,\n\t108,\n\t118,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t105,\n\t118,\n\t105,\n\t100,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t114,\n\t101,\n\t101,\n\t97,\n\t100,\n\t106,\n\t97,\n\t99,\n\t101,\n\t110,\n\t116,\n\t32,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t105,\n\t115,\n\t32,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t100,\n\t105,\n\t115,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t108,\n\t108,\n\t97,\n\t98,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t119,\n\t105,\n\t100,\n\t101,\n\t108,\n\t121,\n\t32,\n\t114,\n\t101,\n\t103,\n\t97,\n\t114,\n\t100,\n\t101,\n\t100,\n\t32,\n\t97,\n\t115,\n\t104,\n\t105,\n\t115,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t109,\n\t112,\n\t111,\n\t114,\n\t97,\n\t114,\n\t105,\n\t101,\n\t115,\n\t102,\n\t111,\n\t117,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t109,\n\t101,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t68,\n\t111,\n\t109,\n\t105,\n\t110,\n\t105,\n\t99,\n\t97,\n\t110,\n\t32,\n\t82,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t97,\n\t99,\n\t99,\n\t101,\n\t112,\n\t116,\n\t101,\n\t100,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t111,\n\t115,\n\t115,\n\t105,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t121,\n\t32,\n\t111,\n\t102,\n\t97,\n\t114,\n\t101,\n\t32,\n\t97,\n\t108,\n\t115,\n\t111,\n\t32,\n\t97,\n\t118,\n\t97,\n\t105,\n\t108,\n\t97,\n\t98,\n\t108,\n\t101,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t114,\n\t101,\n\t115,\n\t116,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t105,\n\t115,\n\t32,\n\t97,\n\t108,\n\t109,\n\t111,\n\t115,\n\t116,\n\t32,\n\t101,\n\t110,\n\t116,\n\t105,\n\t114,\n\t101,\n\t108,\n\t121,\n\t112,\n\t97,\n\t115,\n\t115,\n\t101,\n\t115,\n\t32,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t32,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t101,\n\t100,\n\t99,\n\t111,\n\t109,\n\t112,\n\t117,\n\t116,\n\t101,\n\t114,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t118,\n\t105,\n\t100,\n\t101,\n\t111,\n\t71,\n\t101,\n\t114,\n\t109,\n\t97,\n\t110,\n\t105,\n\t99,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t115,\n\t32,\n\t97,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t108,\n\t121,\n\t32,\n\t97,\n\t102,\n\t116,\n\t101,\n\t114,\n\t119,\n\t97,\n\t114,\n\t100,\n\t115,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t115,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t114,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t66,\n\t111,\n\t97,\n\t114,\n\t100,\n\t32,\n\t111,\n\t102,\n\t32,\n\t68,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t111,\n\t114,\n\t115,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t115,\n\t101,\n\t97,\n\t114,\n\t99,\n\t104,\n\t124,\n\t32,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t73,\n\t110,\n\t32,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t77,\n\t117,\n\t108,\n\t116,\n\t105,\n\t112,\n\t108,\n\t101,\n\t32,\n\t102,\n\t111,\n\t111,\n\t116,\n\t110,\n\t111,\n\t116,\n\t101,\n\t115,\n\t111,\n\t114,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t115,\n\t117,\n\t98,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t116,\n\t104,\n\t111,\n\t117,\n\t115,\n\t97,\n\t110,\n\t100,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t121,\n\t101,\n\t97,\n\t114,\n\t115,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t13,\n\t10,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t105,\n\t110,\n\t100,\n\t101,\n\t120,\n\t46,\n\t112,\n\t104,\n\t112,\n\t119,\n\t97,\n\t115,\n\t32,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t109,\n\t105,\n\t110,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t116,\n\t101,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t32,\n\t115,\n\t116,\n\t114,\n\t111,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t102,\n\t108,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t116,\n\t111,\n\t112,\n\t58,\n\t114,\n\t101,\n\t112,\n\t114,\n\t101,\n\t115,\n\t101,\n\t110,\n\t116,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t103,\n\t114,\n\t97,\n\t100,\n\t117,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t32,\n\t116,\n\t104,\n\t101,\n\t84,\n\t114,\n\t97,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t40,\n\t34,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t41,\n\t59,\n\t72,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t115,\n\t105,\n\t110,\n\t99,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t108,\n\t101,\n\t102,\n\t116,\n\t59,\n\t32,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t108,\n\t101,\n\t102,\n\t116,\n\t58,\n\t112,\n\t114,\n\t111,\n\t116,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t97,\n\t103,\n\t97,\n\t105,\n\t110,\n\t115,\n\t116,\n\t48,\n\t59,\n\t32,\n\t118,\n\t101,\n\t114,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t85,\n\t110,\n\t102,\n\t111,\n\t114,\n\t116,\n\t117,\n\t110,\n\t97,\n\t116,\n\t101,\n\t108,\n\t121,\n\t44,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t47,\n\t120,\n\t45,\n\t105,\n\t99,\n\t111,\n\t110,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t108,\n\t101,\n\t97,\n\t114,\n\t102,\n\t105,\n\t120,\n\t34,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t102,\n\t111,\n\t111,\n\t116,\n\t101,\n\t114,\n\t9,\n\t9,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t9,\n\t9,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t116,\n\t104,\n\t101,\n\t32,\n\t109,\n\t111,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t112,\n\t105,\n\t99,\n\t116,\n\t117,\n\t114,\n\t101,\n\t208,\n\t145,\n\t209,\n\t138,\n\t208,\n\t187,\n\t208,\n\t179,\n\t208,\n\t176,\n\t209,\n\t128,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t177,\n\t209,\n\t138,\n\t208,\n\t187,\n\t208,\n\t179,\n\t208,\n\t176,\n\t209,\n\t128,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t164,\n\t208,\n\t181,\n\t208,\n\t180,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t176,\n\t209,\n\t134,\n\t208,\n\t184,\n\t208,\n\t184,\n\t208,\n\t189,\n\t208,\n\t181,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t187,\n\t209,\n\t140,\n\t208,\n\t186,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t190,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t137,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t181,\n\t209,\n\t129,\n\t208,\n\t190,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t137,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t179,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t188,\n\t208,\n\t188,\n\t209,\n\t139,\n\t208,\n\t158,\n\t209,\n\t130,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t178,\n\t208,\n\t184,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t177,\n\t208,\n\t181,\n\t209,\n\t129,\n\t208,\n\t191,\n\t208,\n\t187,\n\t208,\n\t176,\n\t209,\n\t130,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t188,\n\t208,\n\t176,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t176,\n\t208,\n\t187,\n\t209,\n\t139,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t183,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t187,\n\t209,\n\t143,\n\t208,\n\t181,\n\t209,\n\t130,\n\t208,\n\t191,\n\t208,\n\t190,\n\t209,\n\t129,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t180,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t187,\n\t208,\n\t184,\n\t209,\n\t135,\n\t208,\n\t189,\n\t209,\n\t139,\n\t209,\n\t133,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t180,\n\t209,\n\t131,\n\t208,\n\t186,\n\t209,\n\t134,\n\t208,\n\t184,\n\t208,\n\t184,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t179,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t188,\n\t208,\n\t188,\n\t208,\n\t176,\n\t208,\n\t191,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t189,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t140,\n\t209,\n\t142,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t133,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t184,\n\t209,\n\t130,\n\t209,\n\t129,\n\t209,\n\t143,\n\t208,\n\t184,\n\t208,\n\t183,\n\t208,\n\t177,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t189,\n\t208,\n\t190,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t181,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t184,\n\t208,\n\t183,\n\t208,\n\t188,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t186,\n\t208,\n\t176,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t184,\n\t208,\n\t144,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t186,\n\t209,\n\t129,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t180,\n\t209,\n\t128,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t167,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t181,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t160,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t145,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t171,\n\t224,\n\t164,\n\t188,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t136,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t160,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t188,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t182,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t163,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t183,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t163,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t172,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t154,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t154,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t172,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t167,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t166,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t167,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t185,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t172,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t143,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t150,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t167,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t188,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t181,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t150,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t182,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t134,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t216,\n\t177,\n\t217,\n\t131,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t217,\n\t134,\n\t216,\n\t170,\n\t216,\n\t175,\n\t217,\n\t138,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t131,\n\t217,\n\t133,\n\t216,\n\t168,\n\t217,\n\t138,\n\t217,\n\t136,\n\t216,\n\t170,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t180,\n\t216,\n\t167,\n\t217,\n\t135,\n\t216,\n\t175,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t185,\n\t216,\n\t175,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t178,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t177,\n\t216,\n\t185,\n\t216,\n\t175,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t177,\n\t216,\n\t175,\n\t217,\n\t136,\n\t216,\n\t175,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t165,\n\t216,\n\t179,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t133,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t129,\n\t217,\n\t136,\n\t216,\n\t170,\n\t217,\n\t136,\n\t216,\n\t180,\n\t217,\n\t136,\n\t216,\n\t168,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t179,\n\t216,\n\t167,\n\t216,\n\t168,\n\t217,\n\t130,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t185,\n\t217,\n\t132,\n\t217,\n\t136,\n\t217,\n\t133,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t179,\n\t217,\n\t132,\n\t216,\n\t179,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t172,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t129,\n\t217,\n\t138,\n\t217,\n\t131,\n\t216,\n\t179,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t179,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t133,\n\t217,\n\t138,\n\t216,\n\t169,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t181,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t170,\n\t107,\n\t101,\n\t121,\n\t119,\n\t111,\n\t114,\n\t100,\n\t115,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t119,\n\t51,\n\t46,\n\t111,\n\t114,\n\t103,\n\t47,\n\t49,\n\t57,\n\t57,\n\t57,\n\t47,\n\t120,\n\t104,\n\t116,\n\t109,\n\t108,\n\t34,\n\t62,\n\t60,\n\t97,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t34,\n\t95,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t34,\n\t32,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t59,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t34,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t34,\n\t95,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t34,\n\t62,\n\t60,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t97,\n\t117,\n\t116,\n\t111,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t61,\n\t34,\n\t111,\n\t102,\n\t102,\n\t34,\n\t32,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t32,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t59,\n\t116,\n\t111,\n\t32,\n\t108,\n\t97,\n\t115,\n\t116,\n\t32,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t111,\n\t110,\n\t32,\n\t98,\n\t121,\n\t32,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t45,\n\t99,\n\t111,\n\t108,\n\t111,\n\t114,\n\t58,\n\t32,\n\t35,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t105,\n\t100,\n\t61,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t35,\n\t34,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t34,\n\t62,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t61,\n\t34,\n\t47,\n\t47,\n\t69,\n\t78,\n\t34,\n\t32,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t119,\n\t101,\n\t110,\n\t99,\n\t111,\n\t100,\n\t101,\n\t85,\n\t82,\n\t73,\n\t67,\n\t111,\n\t109,\n\t112,\n\t111,\n\t110,\n\t101,\n\t110,\n\t116,\n\t40,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t58,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t119,\n\t114,\n\t105,\n\t116,\n\t101,\n\t40,\n\t39,\n\t60,\n\t115,\n\t99,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t32,\n\t97,\n\t98,\n\t115,\n\t111,\n\t108,\n\t117,\n\t116,\n\t101,\n\t59,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t45,\n\t116,\n\t111,\n\t112,\n\t58,\n\t46,\n\t109,\n\t105,\n\t110,\n\t46,\n\t106,\n\t115,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t119,\n\t51,\n\t46,\n\t111,\n\t114,\n\t103,\n\t47,\n\t49,\n\t57,\n\t57,\n\t57,\n\t47,\n\t120,\n\t104,\n\t116,\n\t109,\n\t108,\n\t34,\n\t32,\n\t10,\n\t13,\n\t10,\n\t60,\n\t47,\n\t98,\n\t111,\n\t100,\n\t121,\n\t62,\n\t13,\n\t10,\n\t60,\n\t47,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t100,\n\t105,\n\t115,\n\t116,\n\t105,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t47,\n\t34,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t34,\n\t95,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t34,\n\t62,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t101,\n\t110,\n\t99,\n\t111,\n\t100,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t34,\n\t63,\n\t62,\n\t10,\n\t119,\n\t46,\n\t97,\n\t100,\n\t100,\n\t69,\n\t118,\n\t101,\n\t110,\n\t116,\n\t76,\n\t105,\n\t115,\n\t116,\n\t101,\n\t110,\n\t101,\n\t114,\n\t63,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t105,\n\t99,\n\t111,\n\t110,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t58,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t47,\n\t62,\n\t10,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t116,\n\t121,\n\t61,\n\t34,\n\t111,\n\t103,\n\t58,\n\t116,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t97,\n\t108,\n\t105,\n\t103,\n\t110,\n\t58,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t104,\n\t116,\n\t109,\n\t108,\n\t59,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t105,\n\t115,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t98,\n\t101,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t49,\n\t48,\n\t48,\n\t37,\n\t34,\n\t32,\n\t73,\n\t110,\n\t32,\n\t97,\n\t100,\n\t100,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t32,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t73,\n\t116,\n\t32,\n\t105,\n\t115,\n\t32,\n\t105,\n\t109,\n\t112,\n\t111,\n\t114,\n\t116,\n\t97,\n\t110,\n\t116,\n\t32,\n\t116,\n\t111,\n\t32,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t102,\n\t111,\n\t110,\n\t116,\n\t45,\n\t115,\n\t105,\n\t122,\n\t101,\n\t58,\n\t49,\n\t62,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t105,\n\t100,\n\t61,\n\t103,\n\t98,\n\t76,\n\t105,\n\t98,\n\t114,\n\t97,\n\t114,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t67,\n\t111,\n\t110,\n\t103,\n\t114,\n\t101,\n\t115,\n\t115,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t105,\n\t109,\n\t69,\n\t110,\n\t103,\n\t108,\n\t105,\n\t115,\n\t104,\n\t32,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t65,\n\t99,\n\t97,\n\t100,\n\t101,\n\t109,\n\t121,\n\t32,\n\t111,\n\t102,\n\t32,\n\t83,\n\t99,\n\t105,\n\t101,\n\t110,\n\t99,\n\t101,\n\t115,\n\t100,\n\t105,\n\t118,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t99,\n\t111,\n\t110,\n\t115,\n\t116,\n\t114,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t46,\n\t103,\n\t101,\n\t116,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t66,\n\t121,\n\t73,\n\t100,\n\t40,\n\t105,\n\t100,\n\t41,\n\t105,\n\t110,\n\t32,\n\t99,\n\t111,\n\t110,\n\t106,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t40,\n\t39,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t39,\n\t41,\n\t59,\n\t32,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t116,\n\t121,\n\t61,\n\t34,\n\t111,\n\t103,\n\t58,\n\t208,\n\t145,\n\t209,\n\t138,\n\t208,\n\t187,\n\t208,\n\t179,\n\t208,\n\t176,\n\t209,\n\t128,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t184,\n\t10,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t62,\n\t80,\n\t114,\n\t105,\n\t118,\n\t97,\n\t99,\n\t121,\n\t32,\n\t80,\n\t111,\n\t108,\n\t105,\n\t99,\n\t121,\n\t60,\n\t47,\n\t97,\n\t62,\n\t97,\n\t100,\n\t109,\n\t105,\n\t110,\n\t105,\n\t115,\n\t116,\n\t101,\n\t114,\n\t101,\n\t100,\n\t32,\n\t98,\n\t121,\n\t32,\n\t116,\n\t104,\n\t101,\n\t101,\n\t110,\n\t97,\n\t98,\n\t108,\n\t101,\n\t83,\n\t105,\n\t110,\n\t103,\n\t108,\n\t101,\n\t82,\n\t101,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t109,\n\t97,\n\t114,\n\t103,\n\t105,\n\t110,\n\t58,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t62,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t105,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t38,\n\t113,\n\t117,\n\t111,\n\t116,\n\t59,\n\t102,\n\t108,\n\t111,\n\t97,\n\t116,\n\t58,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t97,\n\t115,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t111,\n\t116,\n\t97,\n\t108,\n\t32,\n\t112,\n\t111,\n\t112,\n\t117,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t105,\n\t110,\n\t32,\n\t87,\n\t97,\n\t115,\n\t104,\n\t105,\n\t110,\n\t103,\n\t116,\n\t111,\n\t110,\n\t44,\n\t32,\n\t68,\n\t46,\n\t67,\n\t46,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t45,\n\t97,\n\t109,\n\t111,\n\t110,\n\t103,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t105,\n\t110,\n\t103,\n\t115,\n\t44,\n\t111,\n\t114,\n\t103,\n\t97,\n\t110,\n\t105,\n\t122,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t116,\n\t114,\n\t111,\n\t100,\n\t117,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t105,\n\t100,\n\t101,\n\t110,\n\t116,\n\t105,\n\t102,\n\t105,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t105,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t97,\n\t99,\n\t116,\n\t101,\n\t114,\n\t32,\n\t79,\n\t120,\n\t102,\n\t111,\n\t114,\n\t100,\n\t32,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t32,\n\t109,\n\t105,\n\t115,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t115,\n\t116,\n\t97,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t84,\n\t104,\n\t101,\n\t114,\n\t101,\n\t32,\n\t97,\n\t114,\n\t101,\n\t44,\n\t32,\n\t104,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t47,\n\t67,\n\t111,\n\t108,\n\t117,\n\t109,\n\t98,\n\t105,\n\t97,\n\t32,\n\t85,\n\t110,\n\t105,\n\t118,\n\t101,\n\t114,\n\t115,\n\t105,\n\t116,\n\t121,\n\t101,\n\t120,\n\t112,\n\t97,\n\t110,\n\t100,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t117,\n\t115,\n\t117,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t105,\n\t110,\n\t100,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t115,\n\t117,\n\t103,\n\t103,\n\t101,\n\t115,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t97,\n\t102,\n\t102,\n\t105,\n\t108,\n\t105,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t114,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t32,\n\t111,\n\t102,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t62,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t60,\n\t47,\n\t116,\n\t114,\n\t62,\n\t60,\n\t47,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t62,\n\t82,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t32,\n\t111,\n\t102,\n\t32,\n\t73,\n\t114,\n\t101,\n\t108,\n\t97,\n\t110,\n\t100,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t105,\n\t110,\n\t102,\n\t108,\n\t117,\n\t101,\n\t110,\n\t99,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t79,\n\t102,\n\t102,\n\t105,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t119,\n\t101,\n\t98,\n\t115,\n\t105,\n\t116,\n\t101,\n\t32,\n\t111,\n\t102,\n\t104,\n\t101,\n\t97,\n\t100,\n\t113,\n\t117,\n\t97,\n\t114,\n\t116,\n\t101,\n\t114,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t101,\n\t110,\n\t116,\n\t101,\n\t114,\n\t101,\n\t100,\n\t32,\n\t97,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t105,\n\t109,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t70,\n\t101,\n\t100,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t82,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t32,\n\t111,\n\t102,\n\t98,\n\t101,\n\t99,\n\t97,\n\t109,\n\t101,\n\t32,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t105,\n\t110,\n\t103,\n\t108,\n\t121,\n\t99,\n\t111,\n\t110,\n\t116,\n\t105,\n\t110,\n\t117,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t78,\n\t111,\n\t116,\n\t101,\n\t44,\n\t32,\n\t104,\n\t111,\n\t119,\n\t101,\n\t118,\n\t101,\n\t114,\n\t44,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t115,\n\t105,\n\t109,\n\t105,\n\t108,\n\t97,\n\t114,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t99,\n\t97,\n\t112,\n\t97,\n\t98,\n\t105,\n\t108,\n\t105,\n\t116,\n\t105,\n\t101,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t97,\n\t99,\n\t99,\n\t111,\n\t114,\n\t100,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t110,\n\t116,\n\t115,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t117,\n\t114,\n\t116,\n\t104,\n\t101,\n\t114,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t105,\n\t115,\n\t32,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t104,\n\t105,\n\t115,\n\t32,\n\t121,\n\t111,\n\t117,\n\t110,\n\t103,\n\t101,\n\t114,\n\t32,\n\t98,\n\t114,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t60,\n\t47,\n\t116,\n\t100,\n\t62,\n\t60,\n\t47,\n\t116,\n\t114,\n\t62,\n\t60,\n\t47,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t116,\n\t116,\n\t112,\n\t45,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t61,\n\t34,\n\t88,\n\t45,\n\t85,\n\t65,\n\t45,\n\t112,\n\t104,\n\t121,\n\t115,\n\t105,\n\t99,\n\t97,\n\t108,\n\t32,\n\t112,\n\t114,\n\t111,\n\t112,\n\t101,\n\t114,\n\t116,\n\t105,\n\t101,\n\t115,\n\t111,\n\t102,\n\t32,\n\t66,\n\t114,\n\t105,\n\t116,\n\t105,\n\t115,\n\t104,\n\t32,\n\t67,\n\t111,\n\t108,\n\t117,\n\t109,\n\t98,\n\t105,\n\t97,\n\t104,\n\t97,\n\t115,\n\t32,\n\t98,\n\t101,\n\t101,\n\t110,\n\t32,\n\t99,\n\t114,\n\t105,\n\t116,\n\t105,\n\t99,\n\t105,\n\t122,\n\t101,\n\t100,\n\t40,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t120,\n\t99,\n\t101,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t113,\n\t117,\n\t101,\n\t115,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t97,\n\t98,\n\t111,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t112,\n\t97,\n\t115,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t48,\n\t34,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t116,\n\t104,\n\t111,\n\t117,\n\t115,\n\t97,\n\t110,\n\t100,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t112,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t114,\n\t101,\n\t100,\n\t105,\n\t114,\n\t101,\n\t99,\n\t116,\n\t115,\n\t32,\n\t104,\n\t101,\n\t114,\n\t101,\n\t46,\n\t32,\n\t70,\n\t111,\n\t114,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t99,\n\t104,\n\t105,\n\t108,\n\t100,\n\t114,\n\t101,\n\t110,\n\t32,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t37,\n\t51,\n\t69,\n\t37,\n\t51,\n\t67,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t37,\n\t51,\n\t69,\n\t34,\n\t41,\n\t41,\n\t59,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t60,\n\t108,\n\t105,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t115,\n\t105,\n\t116,\n\t101,\n\t95,\n\t110,\n\t97,\n\t109,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t100,\n\t101,\n\t99,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t110,\n\t111,\n\t110,\n\t101,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t32,\n\t110,\n\t111,\n\t110,\n\t101,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t104,\n\t116,\n\t116,\n\t112,\n\t45,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t61,\n\t34,\n\t88,\n\t45,\n\t110,\n\t101,\n\t119,\n\t32,\n\t68,\n\t97,\n\t116,\n\t101,\n\t40,\n\t41,\n\t46,\n\t103,\n\t101,\n\t116,\n\t84,\n\t105,\n\t109,\n\t101,\n\t40,\n\t41,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t47,\n\t120,\n\t45,\n\t105,\n\t99,\n\t111,\n\t110,\n\t34,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t61,\n\t34,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t119,\n\t105,\n\t110,\n\t100,\n\t111,\n\t119,\n\t46,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t104,\n\t114,\n\t101,\n\t102,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t58,\n\t45,\n\t45,\n\t62,\n\t13,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t39,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t104,\n\t111,\n\t114,\n\t116,\n\t99,\n\t117,\n\t116,\n\t32,\n\t105,\n\t99,\n\t111,\n\t110,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t13,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t34,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t32,\n\t116,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t47,\n\t97,\n\t62,\n\t32,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t32,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t84,\n\t114,\n\t97,\n\t110,\n\t115,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t99,\n\t121,\n\t61,\n\t34,\n\t88,\n\t45,\n\t85,\n\t65,\n\t45,\n\t67,\n\t111,\n\t109,\n\t112,\n\t97,\n\t116,\n\t105,\n\t98,\n\t108,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t104,\n\t105,\n\t112,\n\t32,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t60,\n\t47,\n\t117,\n\t108,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t97,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t109,\n\t105,\n\t110,\n\t103,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t60,\n\t108,\n\t105,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t113,\n\t34,\n\t60,\n\t116,\n\t97,\n\t98,\n\t108,\n\t101,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t49,\n\t48,\n\t48,\n\t37,\n\t34,\n\t32,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t45,\n\t112,\n\t111,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t34,\n\t32,\n\t98,\n\t111,\n\t114,\n\t100,\n\t101,\n\t114,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t99,\n\t117,\n\t116,\n\t32,\n\t105,\n\t99,\n\t111,\n\t110,\n\t34,\n\t32,\n\t104,\n\t54,\n\t62,\n\t60,\n\t117,\n\t108,\n\t62,\n\t60,\n\t108,\n\t105,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t32,\n\t32,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t104,\n\t116,\n\t116,\n\t112,\n\t45,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t61,\n\t34,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t61,\n\t34,\n\t115,\n\t99,\n\t114,\n\t101,\n\t101,\n\t110,\n\t34,\n\t32,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t115,\n\t105,\n\t98,\n\t108,\n\t101,\n\t32,\n\t102,\n\t111,\n\t114,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t47,\n\t34,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t45,\n\t104,\n\t116,\n\t109,\n\t108,\n\t59,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t34,\n\t32,\n\t97,\n\t108,\n\t108,\n\t111,\n\t119,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t99,\n\t121,\n\t61,\n\t34,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t13,\n\t10,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t104,\n\t116,\n\t116,\n\t112,\n\t45,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t61,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t112,\n\t97,\n\t110,\n\t62,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t115,\n\t112,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t48,\n\t34,\n\t62,\n\t59,\n\t10,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t115,\n\t111,\n\t109,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t115,\n\t32,\n\t99,\n\t97,\n\t108,\n\t108,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t100,\n\t111,\n\t101,\n\t115,\n\t32,\n\t110,\n\t111,\n\t116,\n\t32,\n\t110,\n\t101,\n\t99,\n\t101,\n\t115,\n\t115,\n\t97,\n\t114,\n\t105,\n\t108,\n\t121,\n\t70,\n\t111,\n\t114,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t32,\n\t60,\n\t33,\n\t68,\n\t79,\n\t67,\n\t84,\n\t89,\n\t80,\n\t69,\n\t32,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t60,\n\t104,\n\t116,\n\t109,\n\t108,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t108,\n\t121,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t58,\n\t118,\n\t111,\n\t105,\n\t100,\n\t40,\n\t48,\n\t41,\n\t59,\n\t34,\n\t101,\n\t102,\n\t102,\n\t101,\n\t99,\n\t116,\n\t105,\n\t118,\n\t101,\n\t110,\n\t101,\n\t115,\n\t115,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t97,\n\t117,\n\t116,\n\t111,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t61,\n\t34,\n\t111,\n\t102,\n\t102,\n\t34,\n\t32,\n\t103,\n\t101,\n\t110,\n\t101,\n\t114,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t62,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t34,\n\t62,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t13,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t116,\n\t104,\n\t114,\n\t111,\n\t117,\n\t103,\n\t104,\n\t111,\n\t117,\n\t116,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t119,\n\t111,\n\t114,\n\t108,\n\t100,\n\t99,\n\t111,\n\t109,\n\t109,\n\t111,\n\t110,\n\t32,\n\t109,\n\t105,\n\t115,\n\t99,\n\t111,\n\t110,\n\t99,\n\t101,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t115,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t100,\n\t117,\n\t114,\n\t105,\n\t110,\n\t103,\n\t32,\n\t104,\n\t105,\n\t115,\n\t32,\n\t108,\n\t105,\n\t102,\n\t101,\n\t116,\n\t105,\n\t109,\n\t101,\n\t44,\n\t99,\n\t111,\n\t114,\n\t114,\n\t101,\n\t115,\n\t112,\n\t111,\n\t110,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t47,\n\t120,\n\t45,\n\t105,\n\t99,\n\t111,\n\t110,\n\t34,\n\t32,\n\t97,\n\t110,\n\t32,\n\t105,\n\t110,\n\t99,\n\t114,\n\t101,\n\t97,\n\t115,\n\t105,\n\t110,\n\t103,\n\t32,\n\t110,\n\t117,\n\t109,\n\t98,\n\t101,\n\t114,\n\t100,\n\t105,\n\t112,\n\t108,\n\t111,\n\t109,\n\t97,\n\t116,\n\t105,\n\t99,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t97,\n\t114,\n\t101,\n\t32,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t34,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t34,\n\t32,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t101,\n\t120,\n\t97,\n\t109,\n\t112,\n\t108,\n\t101,\n\t115,\n\t32,\n\t105,\n\t110,\n\t99,\n\t108,\n\t117,\n\t100,\n\t101,\n\t32,\n\t116,\n\t104,\n\t101,\n\t34,\n\t62,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t105,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t38,\n\t97,\n\t109,\n\t112,\n\t59,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t116,\n\t111,\n\t32,\n\t100,\n\t101,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t101,\n\t32,\n\t119,\n\t104,\n\t101,\n\t116,\n\t104,\n\t101,\n\t114,\n\t113,\n\t117,\n\t105,\n\t116,\n\t101,\n\t32,\n\t100,\n\t105,\n\t102,\n\t102,\n\t101,\n\t114,\n\t101,\n\t110,\n\t116,\n\t32,\n\t102,\n\t114,\n\t111,\n\t109,\n\t109,\n\t97,\n\t114,\n\t107,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t100,\n\t105,\n\t115,\n\t116,\n\t97,\n\t110,\n\t99,\n\t101,\n\t32,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t116,\n\t114,\n\t105,\n\t98,\n\t117,\n\t116,\n\t105,\n\t111,\n\t110,\n\t115,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t99,\n\t111,\n\t110,\n\t102,\n\t108,\n\t105,\n\t99,\n\t116,\n\t32,\n\t98,\n\t101,\n\t116,\n\t119,\n\t101,\n\t101,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t119,\n\t105,\n\t100,\n\t101,\n\t108,\n\t121,\n\t32,\n\t99,\n\t111,\n\t110,\n\t115,\n\t105,\n\t100,\n\t101,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t119,\n\t97,\n\t115,\n\t32,\n\t111,\n\t110,\n\t101,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t102,\n\t105,\n\t114,\n\t115,\n\t116,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t118,\n\t97,\n\t114,\n\t121,\n\t105,\n\t110,\n\t103,\n\t32,\n\t100,\n\t101,\n\t103,\n\t114,\n\t101,\n\t101,\n\t115,\n\t104,\n\t97,\n\t118,\n\t101,\n\t32,\n\t115,\n\t112,\n\t101,\n\t99,\n\t117,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t32,\n\t116,\n\t104,\n\t97,\n\t116,\n\t40,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t103,\n\t101,\n\t116,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t112,\n\t97,\n\t114,\n\t116,\n\t105,\n\t99,\n\t105,\n\t112,\n\t97,\n\t116,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t32,\n\t116,\n\t104,\n\t101,\n\t111,\n\t114,\n\t105,\n\t103,\n\t105,\n\t110,\n\t97,\n\t108,\n\t108,\n\t121,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t101,\n\t100,\n\t101,\n\t116,\n\t97,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t34,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t34,\n\t62,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t47,\n\t62,\n\t10,\n\t105,\n\t110,\n\t116,\n\t101,\n\t114,\n\t99,\n\t104,\n\t97,\n\t110,\n\t103,\n\t101,\n\t97,\n\t98,\n\t108,\n\t121,\n\t32,\n\t119,\n\t105,\n\t116,\n\t104,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t99,\n\t108,\n\t111,\n\t115,\n\t101,\n\t108,\n\t121,\n\t32,\n\t114,\n\t101,\n\t108,\n\t97,\n\t116,\n\t101,\n\t100,\n\t115,\n\t111,\n\t99,\n\t105,\n\t97,\n\t108,\n\t32,\n\t97,\n\t110,\n\t100,\n\t32,\n\t112,\n\t111,\n\t108,\n\t105,\n\t116,\n\t105,\n\t99,\n\t97,\n\t108,\n\t116,\n\t104,\n\t97,\n\t116,\n\t32,\n\t119,\n\t111,\n\t117,\n\t108,\n\t100,\n\t32,\n\t111,\n\t116,\n\t104,\n\t101,\n\t114,\n\t119,\n\t105,\n\t115,\n\t101,\n\t112,\n\t101,\n\t114,\n\t112,\n\t101,\n\t110,\n\t100,\n\t105,\n\t99,\n\t117,\n\t108,\n\t97,\n\t114,\n\t32,\n\t116,\n\t111,\n\t32,\n\t116,\n\t104,\n\t101,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t102,\n\t97,\n\t109,\n\t105,\n\t108,\n\t105,\n\t101,\n\t115,\n\t32,\n\t114,\n\t101,\n\t115,\n\t105,\n\t100,\n\t105,\n\t110,\n\t103,\n\t32,\n\t105,\n\t110,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t105,\n\t110,\n\t103,\n\t32,\n\t99,\n\t111,\n\t117,\n\t110,\n\t116,\n\t114,\n\t105,\n\t101,\n\t115,\n\t99,\n\t111,\n\t109,\n\t112,\n\t117,\n\t116,\n\t101,\n\t114,\n\t32,\n\t112,\n\t114,\n\t111,\n\t103,\n\t114,\n\t97,\n\t109,\n\t109,\n\t105,\n\t110,\n\t103,\n\t101,\n\t99,\n\t111,\n\t110,\n\t111,\n\t109,\n\t105,\n\t99,\n\t32,\n\t100,\n\t101,\n\t118,\n\t101,\n\t108,\n\t111,\n\t112,\n\t109,\n\t101,\n\t110,\n\t116,\n\t100,\n\t101,\n\t116,\n\t101,\n\t114,\n\t109,\n\t105,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t102,\n\t111,\n\t114,\n\t32,\n\t109,\n\t111,\n\t114,\n\t101,\n\t32,\n\t105,\n\t110,\n\t102,\n\t111,\n\t114,\n\t109,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t111,\n\t110,\n\t32,\n\t115,\n\t101,\n\t118,\n\t101,\n\t114,\n\t97,\n\t108,\n\t32,\n\t111,\n\t99,\n\t99,\n\t97,\n\t115,\n\t105,\n\t111,\n\t110,\n\t115,\n\t112,\n\t111,\n\t114,\n\t116,\n\t117,\n\t103,\n\t117,\n\t195,\n\t170,\n\t115,\n\t32,\n\t40,\n\t69,\n\t117,\n\t114,\n\t111,\n\t112,\n\t101,\n\t117,\n\t41,\n\t208,\n\t163,\n\t208,\n\t186,\n\t209,\n\t128,\n\t208,\n\t176,\n\t209,\n\t151,\n\t208,\n\t189,\n\t209,\n\t129,\n\t209,\n\t140,\n\t208,\n\t186,\n\t208,\n\t176,\n\t209,\n\t131,\n\t208,\n\t186,\n\t209,\n\t128,\n\t208,\n\t176,\n\t209,\n\t151,\n\t208,\n\t189,\n\t209,\n\t129,\n\t209,\n\t140,\n\t208,\n\t186,\n\t208,\n\t176,\n\t208,\n\t160,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t129,\n\t208,\n\t184,\n\t208,\n\t185,\n\t209,\n\t129,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t185,\n\t208,\n\t188,\n\t208,\n\t176,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t176,\n\t208,\n\t187,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t184,\n\t208,\n\t189,\n\t209,\n\t132,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t188,\n\t208,\n\t176,\n\t209,\n\t134,\n\t208,\n\t184,\n\t208,\n\t184,\n\t209,\n\t131,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t178,\n\t208,\n\t187,\n\t208,\n\t181,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t189,\n\t208,\n\t181,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t133,\n\t208,\n\t190,\n\t208,\n\t180,\n\t208,\n\t184,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t184,\n\t208,\n\t189,\n\t209,\n\t132,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t188,\n\t208,\n\t176,\n\t209,\n\t134,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t152,\n\t208,\n\t189,\n\t209,\n\t132,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t188,\n\t208,\n\t176,\n\t209,\n\t134,\n\t208,\n\t184,\n\t209,\n\t143,\n\t208,\n\t160,\n\t208,\n\t181,\n\t209,\n\t129,\n\t208,\n\t191,\n\t209,\n\t131,\n\t208,\n\t177,\n\t208,\n\t187,\n\t208,\n\t184,\n\t208,\n\t186,\n\t208,\n\t184,\n\t208,\n\t186,\n\t208,\n\t190,\n\t208,\n\t187,\n\t208,\n\t184,\n\t209,\n\t135,\n\t208,\n\t181,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t184,\n\t208,\n\t189,\n\t209,\n\t132,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t188,\n\t208,\n\t176,\n\t209,\n\t134,\n\t208,\n\t184,\n\t209,\n\t142,\n\t209,\n\t130,\n\t208,\n\t181,\n\t209,\n\t128,\n\t209,\n\t128,\n\t208,\n\t184,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t184,\n\t208,\n\t184,\n\t208,\n\t180,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t176,\n\t209,\n\t130,\n\t208,\n\t190,\n\t209,\n\t135,\n\t208,\n\t189,\n\t208,\n\t190,\n\t216,\n\t167,\n\t217,\n\t132,\n\t217,\n\t133,\n\t216,\n\t170,\n\t217,\n\t136,\n\t216,\n\t167,\n\t216,\n\t172,\n\t216,\n\t175,\n\t217,\n\t136,\n\t217,\n\t134,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t216,\n\t180,\n\t216,\n\t170,\n\t216,\n\t177,\n\t216,\n\t167,\n\t217,\n\t131,\n\t216,\n\t167,\n\t216,\n\t170,\n\t216,\n\t167,\n\t217,\n\t132,\n\t216,\n\t167,\n\t217,\n\t130,\n\t216,\n\t170,\n\t216,\n\t177,\n\t216,\n\t167,\n\t216,\n\t173,\n\t216,\n\t167,\n\t216,\n\t170,\n\t104,\n\t116,\n\t109,\n\t108,\n\t59,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t85,\n\t84,\n\t70,\n\t45,\n\t56,\n\t34,\n\t32,\n\t115,\n\t101,\n\t116,\n\t84,\n\t105,\n\t109,\n\t101,\n\t111,\n\t117,\n\t116,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t105,\n\t110,\n\t108,\n\t105,\n\t110,\n\t101,\n\t45,\n\t98,\n\t108,\n\t111,\n\t99,\n\t107,\n\t59,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t115,\n\t117,\n\t98,\n\t109,\n\t105,\n\t116,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t32,\n\t61,\n\t32,\n\t39,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t60,\n\t105,\n\t109,\n\t103,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t34,\n\t32,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t119,\n\t51,\n\t46,\n\t111,\n\t114,\n\t103,\n\t47,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t99,\n\t117,\n\t116,\n\t32,\n\t105,\n\t99,\n\t111,\n\t110,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t34,\n\t32,\n\t97,\n\t117,\n\t116,\n\t111,\n\t99,\n\t111,\n\t109,\n\t112,\n\t108,\n\t101,\n\t116,\n\t101,\n\t61,\n\t34,\n\t111,\n\t102,\n\t102,\n\t34,\n\t32,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t10,\n\t60,\n\t108,\n\t105,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t34,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t60,\n\t102,\n\t111,\n\t114,\n\t109,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t97,\n\t108,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t101,\n\t34,\n\t32,\n\t13,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t32,\n\t111,\n\t110,\n\t99,\n\t108,\n\t105,\n\t99,\n\t107,\n\t61,\n\t34,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t58,\n\t40,\n\t110,\n\t101,\n\t119,\n\t32,\n\t68,\n\t97,\n\t116,\n\t101,\n\t41,\n\t46,\n\t103,\n\t101,\n\t116,\n\t84,\n\t105,\n\t109,\n\t101,\n\t40,\n\t41,\n\t125,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t49,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t49,\n\t34,\n\t32,\n\t80,\n\t101,\n\t111,\n\t112,\n\t108,\n\t101,\n\t39,\n\t115,\n\t32,\n\t82,\n\t101,\n\t112,\n\t117,\n\t98,\n\t108,\n\t105,\n\t99,\n\t32,\n\t111,\n\t102,\n\t32,\n\t32,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t116,\n\t101,\n\t120,\n\t116,\n\t45,\n\t100,\n\t101,\n\t99,\n\t111,\n\t114,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t58,\n\t117,\n\t110,\n\t100,\n\t101,\n\t114,\n\t116,\n\t104,\n\t101,\n\t32,\n\t98,\n\t101,\n\t103,\n\t105,\n\t110,\n\t110,\n\t105,\n\t110,\n\t103,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t10,\n\t101,\n\t115,\n\t116,\n\t97,\n\t98,\n\t108,\n\t105,\n\t115,\n\t104,\n\t109,\n\t101,\n\t110,\n\t116,\n\t32,\n\t111,\n\t102,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t35,\n\t118,\n\t105,\n\t101,\n\t119,\n\t112,\n\t111,\n\t114,\n\t116,\n\t123,\n\t109,\n\t105,\n\t110,\n\t45,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t58,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t115,\n\t114,\n\t99,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t62,\n\t60,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t111,\n\t102,\n\t116,\n\t101,\n\t110,\n\t32,\n\t114,\n\t101,\n\t102,\n\t101,\n\t114,\n\t114,\n\t101,\n\t100,\n\t32,\n\t116,\n\t111,\n\t32,\n\t97,\n\t115,\n\t32,\n\t47,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t62,\n\t10,\n\t60,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t60,\n\t33,\n\t68,\n\t79,\n\t67,\n\t84,\n\t89,\n\t80,\n\t69,\n\t32,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t10,\n\t60,\n\t33,\n\t45,\n\t45,\n\t91,\n\t73,\n\t110,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t32,\n\t65,\n\t105,\n\t114,\n\t112,\n\t111,\n\t114,\n\t116,\n\t62,\n\t10,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t224,\n\t184,\n\t160,\n\t224,\n\t184,\n\t178,\n\t224,\n\t184,\n\t169,\n\t224,\n\t184,\n\t178,\n\t224,\n\t185,\n\t132,\n\t224,\n\t184,\n\t151,\n\t224,\n\t184,\n\t162,\n\t225,\n\t131,\n\t165,\n\t225,\n\t131,\n\t144,\n\t225,\n\t131,\n\t160,\n\t225,\n\t131,\n\t151,\n\t225,\n\t131,\n\t163,\n\t225,\n\t131,\n\t154,\n\t225,\n\t131,\n\t152,\n\t230,\n\t173,\n\t163,\n\t233,\n\t171,\n\t148,\n\t228,\n\t184,\n\t173,\n\t230,\n\t150,\n\t135,\n\t32,\n\t40,\n\t231,\n\t185,\n\t129,\n\t233,\n\t171,\n\t148,\n\t41,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t166,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t182,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t178,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t183,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t156,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t167,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t165,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t181,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t163,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t160,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t158,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t133,\n\t224,\n\t164,\n\t174,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t161,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t129,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t175,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t183,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t129,\n\t224,\n\t164,\n\t154,\n\t224,\n\t164,\n\t164,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t172,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t167,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t163,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t171,\n\t224,\n\t164,\n\t188,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t163,\n\t224,\n\t164,\n\t178,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t174,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t159,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t161,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t108,\n\t111,\n\t99,\n\t97,\n\t116,\n\t105,\n\t111,\n\t110,\n\t46,\n\t112,\n\t114,\n\t111,\n\t116,\n\t46,\n\t103,\n\t101,\n\t116,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t66,\n\t121,\n\t84,\n\t97,\n\t103,\n\t78,\n\t97,\n\t109,\n\t101,\n\t40,\n\t60,\n\t33,\n\t68,\n\t79,\n\t67,\n\t84,\n\t89,\n\t80,\n\t69,\n\t32,\n\t104,\n\t116,\n\t109,\n\t108,\n\t62,\n\t10,\n\t60,\n\t104,\n\t116,\n\t109,\n\t108,\n\t32,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t34,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t34,\n\t62,\n\t58,\n\t117,\n\t114,\n\t108,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t46,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t62,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t119,\n\t51,\n\t46,\n\t111,\n\t114,\n\t103,\n\t47,\n\t49,\n\t57,\n\t57,\n\t57,\n\t47,\n\t120,\n\t104,\n\t116,\n\t109,\n\t108,\n\t34,\n\t32,\n\t120,\n\t109,\n\t108,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t32,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t61,\n\t34,\n\t103,\n\t101,\n\t116,\n\t34,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t32,\n\t32,\n\t61,\n\t32,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t103,\n\t101,\n\t116,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t47,\n\t120,\n\t45,\n\t105,\n\t99,\n\t111,\n\t110,\n\t34,\n\t32,\n\t47,\n\t62,\n\t99,\n\t101,\n\t108,\n\t108,\n\t112,\n\t97,\n\t100,\n\t100,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t115,\n\t112,\n\t46,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t60,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t60,\n\t108,\n\t105,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t49,\n\t34,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t49,\n\t34,\n\t34,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t110,\n\t111,\n\t110,\n\t101,\n\t59,\n\t34,\n\t62,\n\t97,\n\t108,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t101,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t97,\n\t112,\n\t112,\n\t108,\n\t105,\n\t45,\n\t47,\n\t47,\n\t87,\n\t51,\n\t67,\n\t47,\n\t47,\n\t68,\n\t84,\n\t68,\n\t32,\n\t88,\n\t72,\n\t84,\n\t77,\n\t76,\n\t32,\n\t49,\n\t46,\n\t48,\n\t32,\n\t101,\n\t108,\n\t108,\n\t115,\n\t112,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t112,\n\t97,\n\t100,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t34,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t61,\n\t34,\n\t47,\n\t97,\n\t62,\n\t38,\n\t110,\n\t98,\n\t115,\n\t112,\n\t59,\n\t60,\n\t115,\n\t112,\n\t97,\n\t110,\n\t32,\n\t114,\n\t111,\n\t108,\n\t101,\n\t61,\n\t34,\n\t115,\n\t10,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t34,\n\t32,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t61,\n\t34,\n\t74,\n\t97,\n\t118,\n\t97,\n\t83,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t32,\n\t32,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t103,\n\t101,\n\t116,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t66,\n\t103,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t115,\n\t112,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t109,\n\t101,\n\t100,\n\t105,\n\t97,\n\t61,\n\t34,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t39,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t39,\n\t119,\n\t105,\n\t116,\n\t104,\n\t32,\n\t116,\n\t104,\n\t101,\n\t32,\n\t101,\n\t120,\n\t99,\n\t101,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t111,\n\t102,\n\t32,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t116,\n\t32,\n\t104,\n\t101,\n\t105,\n\t103,\n\t104,\n\t116,\n\t61,\n\t34,\n\t49,\n\t34,\n\t32,\n\t119,\n\t105,\n\t100,\n\t116,\n\t104,\n\t61,\n\t34,\n\t49,\n\t34,\n\t32,\n\t61,\n\t39,\n\t43,\n\t101,\n\t110,\n\t99,\n\t111,\n\t100,\n\t101,\n\t85,\n\t82,\n\t73,\n\t67,\n\t111,\n\t109,\n\t112,\n\t111,\n\t110,\n\t101,\n\t110,\n\t116,\n\t40,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t97,\n\t108,\n\t116,\n\t101,\n\t114,\n\t110,\n\t97,\n\t116,\n\t101,\n\t34,\n\t32,\n\t10,\n\t98,\n\t111,\n\t100,\n\t121,\n\t44,\n\t32,\n\t116,\n\t114,\n\t44,\n\t32,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t44,\n\t32,\n\t116,\n\t101,\n\t120,\n\t116,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t114,\n\t111,\n\t98,\n\t111,\n\t116,\n\t115,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t109,\n\t101,\n\t116,\n\t104,\n\t111,\n\t100,\n\t61,\n\t34,\n\t112,\n\t111,\n\t115,\n\t116,\n\t34,\n\t32,\n\t97,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t61,\n\t34,\n\t62,\n\t10,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t99,\n\t115,\n\t115,\n\t34,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t32,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t61,\n\t34,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t62,\n\t97,\n\t114,\n\t105,\n\t97,\n\t45,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t61,\n\t34,\n\t116,\n\t114,\n\t117,\n\t101,\n\t34,\n\t62,\n\t194,\n\t183,\n\t60,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t108,\n\t61,\n\t48,\n\t59,\n\t125,\n\t41,\n\t40,\n\t41,\n\t59,\n\t10,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t111,\n\t110,\n\t40,\n\t41,\n\t123,\n\t98,\n\t97,\n\t99,\n\t107,\n\t103,\n\t114,\n\t111,\n\t117,\n\t110,\n\t100,\n\t45,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t58,\n\t32,\n\t117,\n\t114,\n\t108,\n\t40,\n\t47,\n\t97,\n\t62,\n\t60,\n\t47,\n\t108,\n\t105,\n\t62,\n\t60,\n\t108,\n\t105,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t9,\n\t9,\n\t60,\n\t108,\n\t105,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t97,\n\t116,\n\t111,\n\t114,\n\t34,\n\t32,\n\t97,\n\t114,\n\t105,\n\t97,\n\t45,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t61,\n\t34,\n\t116,\n\t114,\n\t117,\n\t62,\n\t32,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t108,\n\t97,\n\t110,\n\t103,\n\t117,\n\t97,\n\t103,\n\t101,\n\t61,\n\t34,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t34,\n\t32,\n\t47,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t62,\n\t10,\n\t60,\n\t111,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t32,\n\t118,\n\t97,\n\t108,\n\t117,\n\t101,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t47,\n\t100,\n\t105,\n\t118,\n\t62,\n\t60,\n\t100,\n\t105,\n\t118,\n\t32,\n\t99,\n\t108,\n\t97,\n\t115,\n\t115,\n\t61,\n\t114,\n\t97,\n\t116,\n\t111,\n\t114,\n\t34,\n\t32,\n\t97,\n\t114,\n\t105,\n\t97,\n\t45,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t61,\n\t34,\n\t116,\n\t114,\n\t101,\n\t61,\n\t40,\n\t110,\n\t101,\n\t119,\n\t32,\n\t68,\n\t97,\n\t116,\n\t101,\n\t41,\n\t46,\n\t103,\n\t101,\n\t116,\n\t84,\n\t105,\n\t109,\n\t101,\n\t40,\n\t41,\n\t112,\n\t111,\n\t114,\n\t116,\n\t117,\n\t103,\n\t117,\n\t195,\n\t170,\n\t115,\n\t32,\n\t40,\n\t100,\n\t111,\n\t32,\n\t66,\n\t114,\n\t97,\n\t115,\n\t105,\n\t108,\n\t41,\n\t208,\n\t190,\n\t209,\n\t128,\n\t208,\n\t179,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t184,\n\t208,\n\t183,\n\t208,\n\t176,\n\t209,\n\t134,\n\t208,\n\t184,\n\t208,\n\t184,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t183,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t182,\n\t208,\n\t189,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t140,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t128,\n\t208,\n\t176,\n\t208,\n\t183,\n\t208,\n\t190,\n\t208,\n\t178,\n\t208,\n\t176,\n\t208,\n\t189,\n\t208,\n\t184,\n\t209,\n\t143,\n\t209,\n\t128,\n\t208,\n\t181,\n\t208,\n\t179,\n\t208,\n\t184,\n\t209,\n\t129,\n\t209,\n\t130,\n\t209,\n\t128,\n\t208,\n\t176,\n\t209,\n\t134,\n\t208,\n\t184,\n\t208,\n\t184,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t183,\n\t208,\n\t188,\n\t208,\n\t190,\n\t208,\n\t182,\n\t208,\n\t189,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t184,\n\t208,\n\t190,\n\t208,\n\t177,\n\t209,\n\t143,\n\t208,\n\t183,\n\t208,\n\t176,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t187,\n\t209,\n\t140,\n\t208,\n\t189,\n\t208,\n\t176,\n\t60,\n\t33,\n\t68,\n\t79,\n\t67,\n\t84,\n\t89,\n\t80,\n\t69,\n\t32,\n\t104,\n\t116,\n\t109,\n\t108,\n\t32,\n\t80,\n\t85,\n\t66,\n\t76,\n\t73,\n\t67,\n\t32,\n\t34,\n\t110,\n\t116,\n\t45,\n\t84,\n\t121,\n\t112,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t104,\n\t116,\n\t116,\n\t112,\n\t45,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t61,\n\t34,\n\t67,\n\t111,\n\t110,\n\t116,\n\t101,\n\t114,\n\t97,\n\t110,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t47,\n\t47,\n\t69,\n\t78,\n\t34,\n\t32,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t60,\n\t104,\n\t116,\n\t109,\n\t108,\n\t32,\n\t120,\n\t109,\n\t108,\n\t110,\n\t115,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t45,\n\t47,\n\t47,\n\t87,\n\t51,\n\t67,\n\t47,\n\t47,\n\t68,\n\t84,\n\t68,\n\t32,\n\t88,\n\t72,\n\t84,\n\t77,\n\t76,\n\t32,\n\t49,\n\t46,\n\t48,\n\t32,\n\t84,\n\t68,\n\t84,\n\t68,\n\t47,\n\t120,\n\t104,\n\t116,\n\t109,\n\t108,\n\t49,\n\t45,\n\t116,\n\t114,\n\t97,\n\t110,\n\t115,\n\t105,\n\t116,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t119,\n\t51,\n\t46,\n\t111,\n\t114,\n\t103,\n\t47,\n\t84,\n\t82,\n\t47,\n\t120,\n\t104,\n\t116,\n\t109,\n\t108,\n\t49,\n\t47,\n\t112,\n\t101,\n\t32,\n\t61,\n\t32,\n\t39,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t39,\n\t59,\n\t60,\n\t109,\n\t101,\n\t116,\n\t97,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t100,\n\t101,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t105,\n\t111,\n\t110,\n\t112,\n\t97,\n\t114,\n\t101,\n\t110,\n\t116,\n\t78,\n\t111,\n\t100,\n\t101,\n\t46,\n\t105,\n\t110,\n\t115,\n\t101,\n\t114,\n\t116,\n\t66,\n\t101,\n\t102,\n\t111,\n\t114,\n\t101,\n\t60,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t34,\n\t32,\n\t110,\n\t97,\n\t106,\n\t115,\n\t34,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t40,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t41,\n\t46,\n\t114,\n\t101,\n\t97,\n\t100,\n\t121,\n\t40,\n\t102,\n\t117,\n\t110,\n\t99,\n\t116,\n\t105,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t105,\n\t109,\n\t97,\n\t103,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t85,\n\t65,\n\t45,\n\t67,\n\t111,\n\t109,\n\t112,\n\t97,\n\t116,\n\t105,\n\t98,\n\t108,\n\t101,\n\t34,\n\t32,\n\t99,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t61,\n\t116,\n\t109,\n\t108,\n\t59,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t34,\n\t32,\n\t47,\n\t62,\n\t10,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t104,\n\t111,\n\t114,\n\t116,\n\t99,\n\t117,\n\t116,\n\t32,\n\t105,\n\t99,\n\t111,\n\t110,\n\t60,\n\t108,\n\t105,\n\t110,\n\t107,\n\t32,\n\t114,\n\t101,\n\t108,\n\t61,\n\t34,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t115,\n\t104,\n\t101,\n\t101,\n\t116,\n\t34,\n\t32,\n\t60,\n\t47,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t62,\n\t10,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t61,\n\t32,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t60,\n\t97,\n\t32,\n\t116,\n\t97,\n\t114,\n\t103,\n\t101,\n\t116,\n\t61,\n\t34,\n\t95,\n\t98,\n\t108,\n\t97,\n\t110,\n\t107,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t32,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t103,\n\t101,\n\t116,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t66,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t97,\n\t46,\n\t116,\n\t121,\n\t112,\n\t101,\n\t32,\n\t61,\n\t32,\n\t39,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t104,\n\t116,\n\t109,\n\t108,\n\t59,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t34,\n\t32,\n\t47,\n\t62,\n\t100,\n\t116,\n\t100,\n\t34,\n\t62,\n\t10,\n\t60,\n\t104,\n\t116,\n\t109,\n\t108,\n\t32,\n\t120,\n\t109,\n\t108,\n\t110,\n\t115,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t45,\n\t47,\n\t47,\n\t87,\n\t51,\n\t67,\n\t47,\n\t47,\n\t68,\n\t84,\n\t68,\n\t32,\n\t72,\n\t84,\n\t77,\n\t76,\n\t32,\n\t52,\n\t46,\n\t48,\n\t49,\n\t32,\n\t84,\n\t101,\n\t110,\n\t116,\n\t115,\n\t66,\n\t121,\n\t84,\n\t97,\n\t103,\n\t78,\n\t97,\n\t109,\n\t101,\n\t40,\n\t39,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t39,\n\t41,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t104,\n\t105,\n\t100,\n\t100,\n\t101,\n\t110,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t60,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t34,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t110,\n\t111,\n\t110,\n\t101,\n\t59,\n\t34,\n\t62,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t103,\n\t101,\n\t116,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t66,\n\t121,\n\t73,\n\t100,\n\t40,\n\t61,\n\t100,\n\t111,\n\t99,\n\t117,\n\t109,\n\t101,\n\t110,\n\t116,\n\t46,\n\t99,\n\t114,\n\t101,\n\t97,\n\t116,\n\t101,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t40,\n\t39,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t39,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t39,\n\t105,\n\t110,\n\t112,\n\t117,\n\t116,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t34,\n\t32,\n\t110,\n\t97,\n\t109,\n\t101,\n\t61,\n\t34,\n\t100,\n\t46,\n\t103,\n\t101,\n\t116,\n\t69,\n\t108,\n\t101,\n\t109,\n\t101,\n\t110,\n\t116,\n\t115,\n\t66,\n\t121,\n\t84,\n\t97,\n\t103,\n\t78,\n\t97,\n\t109,\n\t101,\n\t40,\n\t115,\n\t110,\n\t105,\n\t99,\n\t97,\n\t108,\n\t34,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t67,\n\t47,\n\t47,\n\t68,\n\t84,\n\t68,\n\t32,\n\t72,\n\t84,\n\t77,\n\t76,\n\t32,\n\t52,\n\t46,\n\t48,\n\t49,\n\t32,\n\t84,\n\t114,\n\t97,\n\t110,\n\t115,\n\t105,\n\t116,\n\t60,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t62,\n\t10,\n\t10,\n\t60,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t34,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t99,\n\t115,\n\t115,\n\t34,\n\t62,\n\t105,\n\t111,\n\t110,\n\t97,\n\t108,\n\t46,\n\t100,\n\t116,\n\t100,\n\t34,\n\t62,\n\t10,\n\t60,\n\t104,\n\t116,\n\t109,\n\t108,\n\t32,\n\t120,\n\t109,\n\t108,\n\t110,\n\t115,\n\t61,\n\t104,\n\t116,\n\t116,\n\t112,\n\t45,\n\t101,\n\t113,\n\t117,\n\t105,\n\t118,\n\t61,\n\t34,\n\t67,\n\t111,\n\t110,\n\t116,\n\t101,\n\t110,\n\t116,\n\t45,\n\t84,\n\t121,\n\t112,\n\t101,\n\t100,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t48,\n\t34,\n\t32,\n\t99,\n\t101,\n\t108,\n\t108,\n\t115,\n\t112,\n\t97,\n\t99,\n\t105,\n\t110,\n\t103,\n\t61,\n\t34,\n\t48,\n\t34,\n\t104,\n\t116,\n\t109,\n\t108,\n\t59,\n\t32,\n\t99,\n\t104,\n\t97,\n\t114,\n\t115,\n\t101,\n\t116,\n\t61,\n\t117,\n\t116,\n\t102,\n\t45,\n\t56,\n\t34,\n\t32,\n\t47,\n\t62,\n\t10,\n\t32,\n\t115,\n\t116,\n\t121,\n\t108,\n\t101,\n\t61,\n\t34,\n\t100,\n\t105,\n\t115,\n\t112,\n\t108,\n\t97,\n\t121,\n\t58,\n\t110,\n\t111,\n\t110,\n\t101,\n\t59,\n\t34,\n\t62,\n\t60,\n\t60,\n\t108,\n\t105,\n\t62,\n\t60,\n\t97,\n\t32,\n\t104,\n\t114,\n\t101,\n\t102,\n\t61,\n\t34,\n\t104,\n\t116,\n\t116,\n\t112,\n\t58,\n\t47,\n\t47,\n\t119,\n\t119,\n\t119,\n\t46,\n\t32,\n\t116,\n\t121,\n\t112,\n\t101,\n\t61,\n\t39,\n\t116,\n\t101,\n\t120,\n\t116,\n\t47,\n\t106,\n\t97,\n\t118,\n\t97,\n\t115,\n\t99,\n\t114,\n\t105,\n\t112,\n\t116,\n\t39,\n\t62,\n\t208,\n\t180,\n\t208,\n\t181,\n\t209,\n\t143,\n\t209,\n\t130,\n\t208,\n\t181,\n\t208,\n\t187,\n\t209,\n\t140,\n\t208,\n\t189,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t184,\n\t209,\n\t129,\n\t208,\n\t190,\n\t208,\n\t190,\n\t209,\n\t130,\n\t208,\n\t178,\n\t208,\n\t181,\n\t209,\n\t130,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t178,\n\t208,\n\t184,\n\t208,\n\t184,\n\t208,\n\t191,\n\t209,\n\t128,\n\t208,\n\t190,\n\t208,\n\t184,\n\t208,\n\t183,\n\t208,\n\t178,\n\t208,\n\t190,\n\t208,\n\t180,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t178,\n\t208,\n\t176,\n\t208,\n\t177,\n\t208,\n\t181,\n\t208,\n\t183,\n\t208,\n\t190,\n\t208,\n\t191,\n\t208,\n\t176,\n\t209,\n\t129,\n\t208,\n\t189,\n\t208,\n\t190,\n\t209,\n\t129,\n\t209,\n\t130,\n\t208,\n\t184,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t151,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t137,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t185,\n\t224,\n\t165,\n\t139,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t168,\n\t224,\n\t165,\n\t135,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t167,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t173,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t171,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t130,\n\t224,\n\t164,\n\t151,\n\t224,\n\t164,\n\t184,\n\t224,\n\t165,\n\t129,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t183,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t137,\n\t224,\n\t164,\n\t170,\n\t224,\n\t165,\n\t128,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t135,\n\t224,\n\t164,\n\t159,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t156,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t158,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t170,\n\t224,\n\t164,\n\t168,\n\t224,\n\t164,\n\t149,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t176,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t181,\n\t224,\n\t164,\n\t190,\n\t224,\n\t164,\n\t136,\n\t224,\n\t164,\n\t184,\n\t224,\n\t164,\n\t149,\n\t224,\n\t165,\n\t141,\n\t224,\n\t164,\n\t176,\n\t224,\n\t164,\n\t191,\n\t224,\n\t164,\n\t175,\n\t224,\n\t164,\n\t164,\n\t224,\n\t164,\n\t190,\n}\n\nvar kBrotliDictionary = dictionary{\n\t/* size_bits_by_length */\n\t[32]byte{\n\t\t0,\n\t\t0,\n\t\t0,\n\t\t0,\n\t\t10,\n\t\t10,\n\t\t11,\n\t\t11,\n\t\t10,\n\t\t10,\n\t\t10,\n\t\t10,\n\t\t10,\n\t\t9,\n\t\t9,\n\t\t8,\n\t\t7,\n\t\t7,\n\t\t8,\n\t\t7,\n\t\t7,\n\t\t6,\n\t\t6,\n\t\t5,\n\t\t5,\n\t\t0,\n\t\t0,\n\t\t0,\n\t\t0,\n\t\t0,\n\t\t0,\n\t\t0,\n\t},\n\n\t/* offsets_by_length */\n\t[32]uint32{\n\t\t0,\n\t\t0,\n\t\t0,\n\t\t0,\n\t\t0,\n\t\t4096,\n\t\t9216,\n\t\t21504,\n\t\t35840,\n\t\t44032,\n\t\t53248,\n\t\t63488,\n\t\t74752,\n\t\t87040,\n\t\t93696,\n\t\t100864,\n\t\t104704,\n\t\t106752,\n\t\t108928,\n\t\t113536,\n\t\t115968,\n\t\t118528,\n\t\t119872,\n\t\t121280,\n\t\t122016,\n\t\t122784,\n\t\t122784,\n\t\t122784,\n\t\t122784,\n\t\t122784,\n\t\t122784,\n\t\t122784,\n\t},\n\n\t/* data_size ==  sizeof(kBrotliDictionaryData) */\n\t122784,\n\n\t/* data */\n\tkBrotliDictionaryData,\n}\n\nfunc getDictionary() *dictionary {\n\treturn &kBrotliDictionary\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/dictionary_hash.go",
    "content": "package brotli\n\n/* Copyright 2015 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Hash table on the 4-byte prefixes of static dictionary words. */\nvar kStaticDictionaryHash = [32768]uint16{\n\t32072,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21860,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40486,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45798,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4964,\n\t278,\n\t23717,\n\t0,\n\t19972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2126,\n\t16102,\n\t0,\n\t0,\n\t0,\n\t14437,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26727,\n\t2253,\n\t0,\n\t0,\n\t17252,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3622,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22984,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16647,\n\t0,\n\t34247,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48486,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2511,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19532,\n\t0,\n\t0,\n\t24004,\n\t0,\n\t0,\n\t0,\n\t9828,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30853,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20650,\n\t2404,\n\t0,\n\t20773,\n\t1677,\n\t9031,\n\t0,\n\t6404,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51879,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6761,\n\t7206,\n\t0,\n\t0,\n\t21992,\n\t22983,\n\t0,\n\t0,\n\t3529,\n\t0,\n\t1864,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11046,\n\t0,\n\t0,\n\t9641,\n\t0,\n\t0,\n\t0,\n\t6507,\n\t0,\n\t0,\n\t36934,\n\t21576,\n\t62375,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8294,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40807,\n\t0,\n\t0,\n\t0,\n\t39398,\n\t8136,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8875,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7941,\n\t0,\n\t0,\n\t25609,\n\t0,\n\t0,\n\t0,\n\t936,\n\t3716,\n\t3213,\n\t15687,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t52519,\n\t0,\n\t17381,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1320,\n\t5797,\n\t0,\n\t21029,\n\t0,\n\t0,\n\t6472,\n\t807,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13545,\n\t0,\n\t0,\n\t0,\n\t3624,\n\t0,\n\t0,\n\t0,\n\t29674,\n\t30820,\n\t0,\n\t31237,\n\t0,\n\t6596,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22278,\n\t0,\n\t37446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7240,\n\t423,\n\t0,\n\t24612,\n\t21705,\n\t17636,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1833,\n\t0,\n\t0,\n\t0,\n\t328,\n\t6021,\n\t0,\n\t0,\n\t0,\n\t19974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62119,\n\t4178,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12100,\n\t8617,\n\t0,\n\t0,\n\t16900,\n\t0,\n\t36678,\n\t0,\n\t0,\n\t0,\n\t35366,\n\t0,\n\t51718,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20998,\n\t0,\n\t62086,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5542,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14629,\n\t10952,\n\t25927,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19849,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30952,\n\t3046,\n\t14314,\n\t12998,\n\t0,\n\t0,\n\t0,\n\t15268,\n\t0,\n\t40582,\n\t30216,\n\t62118,\n\t0,\n\t0,\n\t0,\n\t20132,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12005,\n\t0,\n\t0,\n\t0,\n\t52358,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24778,\n\t0,\n\t44,\n\t33095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26372,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3781,\n\t0,\n\t0,\n\t17928,\n\t9479,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32297,\n\t28613,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47174,\n\t11723,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2536,\n\t55143,\n\t0,\n\t0,\n\t6410,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56294,\n\t11914,\n\t0,\n\t529,\n\t0,\n\t30184,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8261,\n\t0,\n\t0,\n\t28808,\n\t58854,\n\t22633,\n\t965,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64135,\n\t0,\n\t0,\n\t331,\n\t3684,\n\t0,\n\t1605,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16650,\n\t37,\n\t0,\n\t23622,\n\t3144,\n\t15429,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22443,\n\t69,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17832,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11113,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18309,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26630,\n\t0,\n\t0,\n\t25512,\n\t25895,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16901,\n\t0,\n\t0,\n\t0,\n\t27558,\n\t0,\n\t0,\n\t9418,\n\t0,\n\t0,\n\t0,\n\t3508,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37990,\n\t9289,\n\t8517,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1578,\n\t1604,\n\t23944,\n\t0,\n\t0,\n\t14916,\n\t12781,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12105,\n\t0,\n\t16617,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21348,\n\t11240,\n\t28870,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5772,\n\t0,\n\t0,\n\t27812,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8324,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16748,\n\t1157,\n\t0,\n\t0,\n\t18794,\n\t16324,\n\t25898,\n\t935,\n\t8333,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18246,\n\t0,\n\t18086,\n\t0,\n\t46854,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t339,\n\t0,\n\t0,\n\t25188,\n\t12780,\n\t12166,\n\t6409,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16516,\n\t0,\n\t27012,\n\t28395,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1420,\n\t0,\n\t0,\n\t0,\n\t9768,\n\t52967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25163,\n\t324,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64998,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21893,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47366,\n\t0,\n\t0,\n\t0,\n\t870,\n\t0,\n\t0,\n\t0,\n\t12646,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26020,\n\t16360,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1809,\n\t0,\n\t0,\n\t0,\n\t6601,\n\t15878,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29092,\n\t0,\n\t28516,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21988,\n\t0,\n\t0,\n\t0,\n\t42950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5133,\n\t1318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t54982,\n\t24904,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51526,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3685,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10062,\n\t9412,\n\t0,\n\t0,\n\t0,\n\t31460,\n\t5708,\n\t6181,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5575,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27144,\n\t57478,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7084,\n\t0,\n\t21993,\n\t53126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8397,\n\t0,\n\t0,\n\t5733,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2116,\n\t0,\n\t24742,\n\t0,\n\t11271,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1133,\n\t0,\n\t4873,\n\t0,\n\t0,\n\t38310,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17932,\n\t0,\n\t0,\n\t18053,\n\t0,\n\t0,\n\t0,\n\t25510,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17798,\n\t0,\n\t26214,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23016,\n\t17415,\n\t20392,\n\t164,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3239,\n\t0,\n\t46119,\n\t0,\n\t0,\n\t0,\n\t28580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7621,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41478,\n\t0,\n\t0,\n\t31016,\n\t55334,\n\t10056,\n\t1924,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36614,\n\t0,\n\t36711,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13994,\n\t59303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26501,\n\t0,\n\t5639,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13897,\n\t1253,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5095,\n\t0,\n\t0,\n\t0,\n\t28869,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8646,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25641,\n\t17796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13316,\n\t620,\n\t6309,\n\t11819,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t904,\n\t1095,\n\t0,\n\t24229,\n\t0,\n\t0,\n\t28744,\n\t49703,\n\t0,\n\t23077,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32392,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35271,\n\t0,\n\t28740,\n\t5866,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4361,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7917,\n\t8869,\n\t0,\n\t0,\n\t0,\n\t13924,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6766,\n\t13989,\n\t0,\n\t0,\n\t0,\n\t903,\n\t0,\n\t0,\n\t24010,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64390,\n\t0,\n\t22468,\n\t0,\n\t25861,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23656,\n\t5317,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23017,\n\t5445,\n\t16009,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48006,\n\t10473,\n\t0,\n\t0,\n\t14404,\n\t0,\n\t0,\n\t0,\n\t42183,\n\t0,\n\t0,\n\t0,\n\t51270,\n\t0,\n\t0,\n\t10602,\n\t24132,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43782,\n\t0,\n\t0,\n\t17834,\n\t0,\n\t0,\n\t0,\n\t25576,\n\t27205,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29066,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t626,\n\t1988,\n\t14700,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t57670,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44710,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3848,\n\t7623,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19272,\n\t6436,\n\t0,\n\t0,\n\t5256,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19685,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39783,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30984,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28230,\n\t0,\n\t0,\n\t0,\n\t29028,\n\t10538,\n\t3205,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5636,\n\t840,\n\t295,\n\t0,\n\t0,\n\t8488,\n\t8198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4074,\n\t19526,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31144,\n\t64038,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16716,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17706,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50630,\n\t0,\n\t50503,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25446,\n\t0,\n\t0,\n\t0,\n\t13831,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2696,\n\t4039,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25288,\n\t0,\n\t12076,\n\t2054,\n\t0,\n\t48934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16969,\n\t59431,\n\t17259,\n\t35335,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31275,\n\t0,\n\t0,\n\t0,\n\t1097,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t776,\n\t839,\n\t0,\n\t0,\n\t29386,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5864,\n\t12134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25349,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t61447,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24678,\n\t0,\n\t0,\n\t0,\n\t63335,\n\t0,\n\t28836,\n\t8142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14088,\n\t1188,\n\t0,\n\t16260,\n\t0,\n\t0,\n\t0,\n\t16421,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t276,\n\t0,\n\t0,\n\t17060,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24076,\n\t29445,\n\t0,\n\t33543,\n\t0,\n\t4901,\n\t0,\n\t0,\n\t12522,\n\t0,\n\t0,\n\t62471,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4046,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20486,\n\t0,\n\t15460,\n\t2217,\n\t51719,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23495,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15370,\n\t0,\n\t15849,\n\t0,\n\t15113,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27972,\n\t7337,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32299,\n\t23940,\n\t0,\n\t17766,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6184,\n\t0,\n\t20904,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31492,\n\t0,\n\t0,\n\t0,\n\t5509,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2669,\n\t50182,\n\t0,\n\t0,\n\t12299,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5257,\n\t28167,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11750,\n\t3890,\n\t0,\n\t0,\n\t26500,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10981,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17961,\n\t1831,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29638,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26473,\n\t0,\n\t6216,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t711,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28683,\n\t39975,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51654,\n\t0,\n\t0,\n\t0,\n\t27527,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30859,\n\t3268,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28772,\n\t0,\n\t18212,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25448,\n\t65446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3337,\n\t1670,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19332,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24936,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1043,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15814,\n\t0,\n\t21670,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16263,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32454,\n\t0,\n\t30630,\n\t0,\n\t0,\n\t20170,\n\t9926,\n\t0,\n\t0,\n\t0,\n\t18247,\n\t0,\n\t0,\n\t14376,\n\t0,\n\t2056,\n\t17191,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7812,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22474,\n\t52806,\n\t1588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10825,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28677,\n\t0,\n\t0,\n\t5714,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25865,\n\t22246,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17256,\n\t35751,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8236,\n\t0,\n\t32108,\n\t0,\n\t0,\n\t0,\n\t43,\n\t14342,\n\t0,\n\t16517,\n\t0,\n\t0,\n\t30732,\n\t0,\n\t4012,\n\t133,\n\t0,\n\t40583,\n\t971,\n\t23942,\n\t0,\n\t0,\n\t27275,\n\t0,\n\t0,\n\t0,\n\t204,\n\t0,\n\t0,\n\t27140,\n\t7564,\n\t44327,\n\t27592,\n\t57958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22344,\n\t25701,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19524,\n\t31755,\n\t0,\n\t0,\n\t28102,\n\t0,\n\t59111,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12261,\n\t0,\n\t44934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31560,\n\t0,\n\t11114,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18953,\n\t18311,\n\t0,\n\t45159,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2059,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19399,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22411,\n\t23943,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11690,\n\t0,\n\t0,\n\t4069,\n\t0,\n\t0,\n\t2668,\n\t6342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27658,\n\t1766,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23240,\n\t56070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34119,\n\t0,\n\t24453,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21867,\n\t0,\n\t17610,\n\t9894,\n\t0,\n\t0,\n\t27976,\n\t38790,\n\t0,\n\t0,\n\t0,\n\t43654,\n\t0,\n\t31559,\n\t12202,\n\t23142,\n\t0,\n\t0,\n\t0,\n\t50343,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32806,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49895,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15786,\n\t4263,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4746,\n\t3814,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17192,\n\t453,\n\t17323,\n\t0,\n\t20328,\n\t4036,\n\t0,\n\t0,\n\t0,\n\t15844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27561,\n\t31940,\n\t32296,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11499,\n\t11782,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9738,\n\t50471,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35430,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29734,\n\t0,\n\t0,\n\t0,\n\t36551,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9257,\n\t5606,\n\t0,\n\t13829,\n\t0,\n\t7015,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25127,\n\t0,\n\t0,\n\t19051,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2572,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29797,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9293,\n\t0,\n\t17896,\n\t56038,\n\t4077,\n\t0,\n\t0,\n\t0,\n\t29899,\n\t37351,\n\t0,\n\t30823,\n\t0,\n\t8326,\n\t0,\n\t0,\n\t0,\n\t18342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18569,\n\t54054,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37254,\n\t0,\n\t0,\n\t31433,\n\t61510,\n\t0,\n\t2022,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25381,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2149,\n\t25289,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12516,\n\t14185,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36486,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10889,\n\t9607,\n\t0,\n\t28711,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28490,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26181,\n\t10283,\n\t1701,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14980,\n\t0,\n\t7783,\n\t0,\n\t27846,\n\t0,\n\t0,\n\t0,\n\t56486,\n\t3892,\n\t0,\n\t0,\n\t0,\n\t5770,\n\t16583,\n\t0,\n\t26309,\n\t13422,\n\t20292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28742,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14536,\n\t1158,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25801,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42438,\n\t0,\n\t3332,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8327,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17353,\n\t1447,\n\t0,\n\t0,\n\t8427,\n\t48518,\n\t1359,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14986,\n\t0,\n\t32168,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9230,\n\t2791,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16073,\n\t31623,\n\t4269,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4519,\n\t0,\n\t0,\n\t27912,\n\t58950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8361,\n\t19812,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6056,\n\t7877,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21701,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9128,\n\t1125,\n\t0,\n\t16548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17292,\n\t6854,\n\t21352,\n\t0,\n\t2380,\n\t0,\n\t0,\n\t4007,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24357,\n\t4202,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10664,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42823,\n\t3022,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14373,\n\t0,\n\t20677,\n\t3304,\n\t2759,\n\t20522,\n\t64903,\n\t0,\n\t0,\n\t0,\n\t38,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27814,\n\t2802,\n\t8870,\n\t3758,\n\t1255,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30027,\n\t9510,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17864,\n\t14855,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23404,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51462,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45734,\n\t0,\n\t0,\n\t23467,\n\t32327,\n\t0,\n\t0,\n\t10826,\n\t52999,\n\t0,\n\t0,\n\t0,\n\t33222,\n\t31336,\n\t64326,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32166,\n\t0,\n\t0,\n\t3891,\n\t0,\n\t0,\n\t0,\n\t7017,\n\t645,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27915,\n\t46087,\n\t0,\n\t0,\n\t0,\n\t21863,\n\t0,\n\t34246,\n\t0,\n\t0,\n\t16715,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14052,\n\t21416,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38982,\n\t0,\n\t0,\n\t17512,\n\t7460,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15428,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28356,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25445,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11879,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19911,\n\t0,\n\t20007,\n\t0,\n\t0,\n\t0,\n\t10855,\n\t943,\n\t0,\n\t0,\n\t10821,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4170,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9836,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t65415,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9865,\n\t24646,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40519,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12804,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22091,\n\t23655,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31686,\n\t0,\n\t0,\n\t0,\n\t58599,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19620,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24421,\n\t0,\n\t28100,\n\t0,\n\t0,\n\t0,\n\t31268,\n\t0,\n\t3204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14822,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19947,\n\t10182,\n\t0,\n\t0,\n\t9480,\n\t14821,\n\t4398,\n\t0,\n\t0,\n\t14532,\n\t0,\n\t0,\n\t0,\n\t48871,\n\t1873,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t589,\n\t1541,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23333,\n\t0,\n\t0,\n\t0,\n\t14149,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1296,\n\t14374,\n\t0,\n\t27300,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7276,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47718,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5164,\n\t1765,\n\t0,\n\t14405,\n\t0,\n\t37574,\n\t1994,\n\t0,\n\t6636,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27815,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2568,\n\t6820,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11336,\n\t26247,\n\t0,\n\t0,\n\t23912,\n\t0,\n\t0,\n\t0,\n\t30536,\n\t0,\n\t0,\n\t34342,\n\t0,\n\t17799,\n\t0,\n\t0,\n\t0,\n\t22149,\n\t0,\n\t6118,\n\t0,\n\t25732,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26600,\n\t5190,\n\t0,\n\t0,\n\t1142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39527,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3085,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4786,\n\t0,\n\t0,\n\t0,\n\t28873,\n\t6532,\n\t0,\n\t0,\n\t26664,\n\t0,\n\t9193,\n\t11719,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31752,\n\t64646,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11397,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25094,\n\t0,\n\t0,\n\t18153,\n\t20167,\n\t0,\n\t0,\n\t0,\n\t17254,\n\t0,\n\t0,\n\t878,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24166,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26059,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31592,\n\t0,\n\t0,\n\t8167,\n\t24362,\n\t6212,\n\t0,\n\t34758,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32520,\n\t0,\n\t0,\n\t44679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17989,\n\t8681,\n\t29222,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10251,\n\t4902,\n\t1452,\n\t15207,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22822,\n\t0,\n\t10469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19337,\n\t17670,\n\t107,\n\t11494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27305,\n\t2565,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64518,\n\t200,\n\t28389,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31208,\n\t0,\n\t30762,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29321,\n\t60518,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3209,\n\t3237,\n\t12490,\n\t22663,\n\t0,\n\t0,\n\t0,\n\t18789,\n\t31464,\n\t16391,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20646,\n\t0,\n\t0,\n\t0,\n\t27238,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15940,\n\t4488,\n\t6951,\n\t0,\n\t0,\n\t0,\n\t46342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28965,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20584,\n\t3367,\n\t0,\n\t25350,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1814,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17125,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55943,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24133,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2929,\n\t0,\n\t0,\n\t50086,\n\t0,\n\t2918,\n\t25356,\n\t30052,\n\t115,\n\t11846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3056,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17639,\n\t239,\n\t19815,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36806,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21479,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28420,\n\t11786,\n\t4772,\n\t0,\n\t0,\n\t3368,\n\t36295,\n\t0,\n\t31463,\n\t0,\n\t0,\n\t14665,\n\t996,\n\t0,\n\t20582,\n\t0,\n\t0,\n\t0,\n\t9988,\n\t0,\n\t23685,\n\t0,\n\t0,\n\t0,\n\t52551,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7556,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1895,\n\t2186,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27755,\n\t25447,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31052,\n\t63270,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36742,\n\t0,\n\t24804,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31048,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21290,\n\t2276,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26475,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15332,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3176,\n\t19431,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62726,\n\t0,\n\t0,\n\t0,\n\t25380,\n\t0,\n\t0,\n\t27883,\n\t1316,\n\t0,\n\t0,\n\t7724,\n\t3015,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6697,\n\t0,\n\t0,\n\t47910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3141,\n\t0,\n\t0,\n\t0,\n\t14820,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9326,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31493,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6569,\n\t1348,\n\t0,\n\t25638,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20324,\n\t0,\n\t0,\n\t17067,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11876,\n\t0,\n\t41030,\n\t0,\n\t0,\n\t0,\n\t26405,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11431,\n\t28137,\n\t14950,\n\t0,\n\t10151,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27176,\n\t57446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28650,\n\t57574,\n\t1387,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58247,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16805,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3526,\n\t0,\n\t15781,\n\t0,\n\t5572,\n\t13352,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18665,\n\t23463,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15405,\n\t6885,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15272,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9861,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9512,\n\t4037,\n\t0,\n\t0,\n\t11563,\n\t49639,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27880,\n\t57830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41831,\n\t0,\n\t21924,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25509,\n\t0,\n\t27462,\n\t0,\n\t18085,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13898,\n\t8068,\n\t26441,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25316,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16298,\n\t7397,\n\t5706,\n\t19239,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1392,\n\t50919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t53863,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1451,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35847,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17801,\n\t15813,\n\t0,\n\t12740,\n\t0,\n\t0,\n\t0,\n\t32967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5389,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31143,\n\t0,\n\t20548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51686,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12109,\n\t19015,\n\t0,\n\t34983,\n\t0,\n\t21732,\n\t3600,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47750,\n\t17288,\n\t43975,\n\t22857,\n\t47559,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26408,\n\t48358,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30470,\n\t0,\n\t0,\n\t23560,\n\t4581,\n\t0,\n\t22404,\n\t0,\n\t49286,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49831,\n\t0,\n\t0,\n\t0,\n\t27525,\n\t31691,\n\t7,\n\t0,\n\t0,\n\t25835,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4201,\n\t16485,\n\t0,\n\t20676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3753,\n\t23303,\n\t16264,\n\t3878,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11434,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7589,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t57095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22820,\n\t11146,\n\t49158,\n\t0,\n\t23623,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13893,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11722,\n\t60071,\n\t1258,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18564,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27945,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5479,\n\t0,\n\t20006,\n\t17608,\n\t3431,\n\t10988,\n\t30180,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24581,\n\t14,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25572,\n\t0,\n\t0,\n\t0,\n\t28612,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t53543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33670,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8710,\n\t0,\n\t14116,\n\t0,\n\t0,\n\t116,\n\t292,\n\t0,\n\t0,\n\t0,\n\t37831,\n\t0,\n\t43078,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21832,\n\t0,\n\t0,\n\t32134,\n\t783,\n\t0,\n\t0,\n\t30982,\n\t0,\n\t0,\n\t0,\n\t68,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5932,\n\t0,\n\t0,\n\t0,\n\t18505,\n\t15175,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3630,\n\t16965,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17797,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t520,\n\t42150,\n\t0,\n\t0,\n\t3122,\n\t0,\n\t0,\n\t0,\n\t22506,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28550,\n\t0,\n\t0,\n\t0,\n\t50278,\n\t0,\n\t0,\n\t13641,\n\t5958,\n\t0,\n\t35238,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29993,\n\t18724,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20619,\n\t9319,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23977,\n\t0,\n\t5193,\n\t0,\n\t0,\n\t12196,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20105,\n\t677,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29419,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20266,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10631,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47655,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26628,\n\t12744,\n\t0,\n\t20648,\n\t0,\n\t0,\n\t0,\n\t432,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t646,\n\t0,\n\t25604,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t63782,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24616,\n\t0,\n\t0,\n\t0,\n\t21291,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45638,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1931,\n\t0,\n\t0,\n\t0,\n\t20521,\n\t59975,\n\t0,\n\t20614,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56231,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29991,\n\t0,\n\t52871,\n\t0,\n\t20934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16871,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7237,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47558,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10406,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43046,\n\t0,\n\t0,\n\t2930,\n\t0,\n\t12936,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31141,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37639,\n\t0,\n\t17572,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31240,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t688,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1648,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t146,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6345,\n\t199,\n\t0,\n\t34982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56839,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48902,\n\t0,\n\t13412,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2441,\n\t4420,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20428,\n\t933,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45383,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t54726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17036,\n\t741,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27589,\n\t0,\n\t0,\n\t30282,\n\t18950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2248,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25993,\n\t0,\n\t0,\n\t0,\n\t2443,\n\t0,\n\t0,\n\t31622,\n\t0,\n\t14150,\n\t0,\n\t0,\n\t0,\n\t28679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15464,\n\t0,\n\t0,\n\t0,\n\t0,\n\t54694,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3827,\n\t0,\n\t0,\n\t0,\n\t3756,\n\t0,\n\t9897,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19082,\n\t31239,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27625,\n\t0,\n\t0,\n\t0,\n\t784,\n\t4647,\n\t32652,\n\t0,\n\t0,\n\t63494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21062,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3404,\n\t58470,\n\t0,\n\t32325,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18634,\n\t2789,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8548,\n\t0,\n\t0,\n\t0,\n\t22501,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15881,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35879,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7978,\n\t17956,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24324,\n\t0,\n\t0,\n\t4937,\n\t0,\n\t0,\n\t0,\n\t8168,\n\t0,\n\t13420,\n\t10340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11780,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16712,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17640,\n\t17991,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2953,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9100,\n\t16806,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30667,\n\t0,\n\t0,\n\t19013,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t205,\n\t15334,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1969,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26248,\n\t52518,\n\t0,\n\t49798,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9668,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4742,\n\t0,\n\t0,\n\t21641,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t53574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5707,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3018,\n\t12454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2920,\n\t262,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3593,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55879,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t775,\n\t0,\n\t43270,\n\t5066,\n\t48967,\n\t0,\n\t0,\n\t22986,\n\t4165,\n\t8971,\n\t44838,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62279,\n\t272,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51430,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28234,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13349,\n\t0,\n\t0,\n\t0,\n\t51111,\n\t20265,\n\t13861,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t585,\n\t7494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21768,\n\t62407,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7979,\n\t166,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38918,\n\t0,\n\t56742,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16296,\n\t5767,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32068,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23916,\n\t30183,\n\t0,\n\t58791,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20518,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8969,\n\t0,\n\t0,\n\t0,\n\t183,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2314,\n\t17445,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23748,\n\t0,\n\t0,\n\t8139,\n\t4839,\n\t27914,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29478,\n\t0,\n\t0,\n\t16552,\n\t26663,\n\t0,\n\t53767,\n\t0,\n\t0,\n\t13960,\n\t8039,\n\t18696,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t782,\n\t16005,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6258,\n\t56806,\n\t16456,\n\t12455,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23780,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9355,\n\t0,\n\t0,\n\t0,\n\t7273,\n\t41063,\n\t24780,\n\t57766,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3820,\n\t2597,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29225,\n\t61126,\n\t0,\n\t0,\n\t0,\n\t58439,\n\t15691,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37190,\n\t22408,\n\t967,\n\t0,\n\t0,\n\t0,\n\t23078,\n\t26858,\n\t0,\n\t0,\n\t0,\n\t19753,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5416,\n\t13702,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t52742,\n\t20394,\n\t38567,\n\t0,\n\t0,\n\t0,\n\t51079,\n\t0,\n\t0,\n\t136,\n\t8516,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t531,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8936,\n\t5031,\n\t12520,\n\t19334,\n\t0,\n\t0,\n\t22827,\n\t30247,\n\t28074,\n\t31140,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27497,\n\t18148,\n\t20104,\n\t59079,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24389,\n\t0,\n\t0,\n\t6125,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9541,\n\t0,\n\t0,\n\t24553,\n\t29095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25444,\n\t0,\n\t0,\n\t9643,\n\t0,\n\t0,\n\t63047,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39558,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20620,\n\t11815,\n\t499,\n\t0,\n\t5128,\n\t2278,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46310,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23530,\n\t40166,\n\t2440,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26922,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26758,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51911,\n\t0,\n\t0,\n\t23532,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51238,\n\t25737,\n\t44486,\n\t12622,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3078,\n\t0,\n\t9253,\n\t0,\n\t0,\n\t1128,\n\t22023,\n\t0,\n\t0,\n\t0,\n\t21350,\n\t0,\n\t16420,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t65094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22532,\n\t0,\n\t48774,\n\t0,\n\t34503,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9797,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13797,\n\t0,\n\t38279,\n\t0,\n\t0,\n\t1738,\n\t0,\n\t489,\n\t46343,\n\t0,\n\t45382,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6220,\n\t56550,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26885,\n\t0,\n\t28806,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20553,\n\t49927,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3019,\n\t12358,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26571,\n\t13319,\n\t0,\n\t0,\n\t653,\n\t23399,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22316,\n\t0,\n\t0,\n\t21188,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27556,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27878,\n\t21483,\n\t27653,\n\t0,\n\t29701,\n\t237,\n\t0,\n\t10632,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33766,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31563,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1416,\n\t2439,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9611,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5611,\n\t16581,\n\t26601,\n\t35462,\n\t0,\n\t0,\n\t0,\n\t26756,\n\t0,\n\t59271,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26984,\n\t57734,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7882,\n\t0,\n\t0,\n\t0,\n\t19528,\n\t6469,\n\t0,\n\t0,\n\t1161,\n\t0,\n\t0,\n\t0,\n\t7688,\n\t20935,\n\t425,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12519,\n\t0,\n\t12902,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2411,\n\t0,\n\t11725,\n\t26086,\n\t0,\n\t0,\n\t20201,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11045,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30471,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21541,\n\t1141,\n\t21190,\n\t0,\n\t9188,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t184,\n\t1093,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4842,\n\t0,\n\t13672,\n\t0,\n\t0,\n\t12230,\n\t0,\n\t0,\n\t0,\n\t10532,\n\t0,\n\t0,\n\t8937,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28996,\n\t0,\n\t0,\n\t11720,\n\t26982,\n\t0,\n\t46182,\n\t0,\n\t43911,\n\t31754,\n\t0,\n\t1160,\n\t3940,\n\t0,\n\t20772,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24549,\n\t0,\n\t32582,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2310,\n\t11788,\n\t0,\n\t0,\n\t43047,\n\t0,\n\t0,\n\t0,\n\t18853,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t63622,\n\t0,\n\t0,\n\t7048,\n\t17318,\n\t0,\n\t0,\n\t0,\n\t21957,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1039,\n\t6279,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12197,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46470,\n\t0,\n\t0,\n\t24,\n\t19719,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39335,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21353,\n\t3846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11268,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9382,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29926,\n\t0,\n\t33606,\n\t0,\n\t4708,\n\t2828,\n\t0,\n\t0,\n\t29543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29893,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3663,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10920,\n\t7111,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9384,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20388,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37094,\n\t0,\n\t0,\n\t0,\n\t27110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21865,\n\t0,\n\t27753,\n\t30214,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t57895,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12648,\n\t5446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19784,\n\t17124,\n\t0,\n\t52007,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t758,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24900,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1476,\n\t0,\n\t65031,\n\t0,\n\t0,\n\t1205,\n\t46663,\n\t0,\n\t30023,\n\t11625,\n\t1094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10058,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28455,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14788,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16808,\n\t0,\n\t0,\n\t742,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21636,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15944,\n\t23207,\n\t0,\n\t0,\n\t0,\n\t0,\n\t247,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24743,\n\t0,\n\t0,\n\t0,\n\t5252,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29961,\n\t18660,\n\t21099,\n\t46791,\n\t0,\n\t7045,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25707,\n\t0,\n\t0,\n\t17412,\n\t3828,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5803,\n\t5637,\n\t0,\n\t38151,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t60103,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t853,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30215,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8741,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27366,\n\t0,\n\t0,\n\t0,\n\t0,\n\t171,\n\t4070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24073,\n\t7366,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2184,\n\t5189,\n\t0,\n\t20932,\n\t1545,\n\t4996,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7684,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6313,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30826,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27463,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21640,\n\t63303,\n\t0,\n\t0,\n\t3275,\n\t31111,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11556,\n\t0,\n\t14756,\n\t0,\n\t0,\n\t0,\n\t15108,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23914,\n\t28966,\n\t0,\n\t0,\n\t0,\n\t4965,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10216,\n\t5223,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27142,\n\t0,\n\t0,\n\t1173,\n\t20198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56614,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4612,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11822,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17769,\n\t7910,\n\t0,\n\t0,\n\t31880,\n\t0,\n\t0,\n\t6055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8970,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16840,\n\t23879,\n\t0,\n\t0,\n\t11051,\n\t0,\n\t0,\n\t0,\n\t32552,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20842,\n\t13701,\n\t0,\n\t0,\n\t0,\n\t37191,\n\t7373,\n\t10471,\n\t17482,\n\t25348,\n\t0,\n\t0,\n\t0,\n\t38502,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21509,\n\t6058,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3173,\n\t0,\n\t0,\n\t0,\n\t9543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17768,\n\t12708,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12748,\n\t48743,\n\t0,\n\t11718,\n\t0,\n\t0,\n\t25194,\n\t0,\n\t0,\n\t0,\n\t9033,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5028,\n\t0,\n\t30118,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42759,\n\t0,\n\t0,\n\t3720,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25190,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5450,\n\t5125,\n\t0,\n\t58086,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27716,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22052,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26249,\n\t0,\n\t15947,\n\t3460,\n\t0,\n\t0,\n\t0,\n\t35814,\n\t0,\n\t0,\n\t0,\n\t7813,\n\t19500,\n\t32167,\n\t0,\n\t18597,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28644,\n\t0,\n\t0,\n\t0,\n\t60743,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29636,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17220,\n\t15885,\n\t9414,\n\t9642,\n\t0,\n\t0,\n\t0,\n\t593,\n\t0,\n\t0,\n\t24228,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40422,\n\t0,\n\t26244,\n\t0,\n\t23109,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64902,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3979,\n\t60007,\n\t0,\n\t0,\n\t0,\n\t28199,\n\t0,\n\t0,\n\t0,\n\t43142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29158,\n\t0,\n\t30532,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13256,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16549,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26116,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22825,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1065,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18985,\n\t4805,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17702,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3468,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13447,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56871,\n\t0,\n\t0,\n\t1776,\n\t15780,\n\t0,\n\t0,\n\t2603,\n\t0,\n\t10280,\n\t31366,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11592,\n\t3591,\n\t0,\n\t2372,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20004,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12072,\n\t518,\n\t0,\n\t0,\n\t1960,\n\t8999,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7178,\n\t32999,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1641,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6764,\n\t9893,\n\t490,\n\t4005,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25258,\n\t5541,\n\t0,\n\t14053,\n\t306,\n\t20743,\n\t0,\n\t0,\n\t9422,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11977,\n\t260,\n\t0,\n\t35175,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18405,\n\t0,\n\t0,\n\t0,\n\t16582,\n\t0,\n\t0,\n\t0,\n\t22470,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2792,\n\t0,\n\t0,\n\t0,\n\t14026,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14858,\n\t3909,\n\t0,\n\t0,\n\t0,\n\t57671,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15979,\n\t0,\n\t0,\n\t0,\n\t2794,\n\t15239,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26884,\n\t9070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19499,\n\t37127,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19205,\n\t10350,\n\t11910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15083,\n\t23108,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t169,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15274,\n\t41735,\n\t0,\n\t56774,\n\t0,\n\t0,\n\t2825,\n\t0,\n\t14025,\n\t389,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21482,\n\t31910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20456,\n\t710,\n\t0,\n\t0,\n\t25032,\n\t21797,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32427,\n\t21252,\n\t0,\n\t30150,\n\t0,\n\t43174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11403,\n\t0,\n\t0,\n\t1029,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6892,\n\t9252,\n\t0,\n\t63206,\n\t3496,\n\t14406,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22568,\n\t0,\n\t0,\n\t21253,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39623,\n\t0,\n\t0,\n\t10189,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30729,\n\t59910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3305,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7660,\n\t24871,\n\t0,\n\t838,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12013,\n\t13252,\n\t0,\n\t551,\n\t0,\n\t0,\n\t0,\n\t43207,\n\t0,\n\t30567,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28394,\n\t30724,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22665,\n\t22725,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29414,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16074,\n\t8966,\n\t245,\n\t1445,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24872,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13124,\n\t0,\n\t35527,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13259,\n\t10917,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25191,\n\t0,\n\t0,\n\t0,\n\t13956,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t54631,\n\t19625,\n\t12070,\n\t3083,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14436,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21766,\n\t0,\n\t15463,\n\t29322,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23653,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2643,\n\t0,\n\t0,\n\t21223,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4114,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34790,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16103,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t297,\n\t3620,\n\t3338,\n\t10372,\n\t0,\n\t14727,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29924,\n\t22473,\n\t13895,\n\t15529,\n\t32455,\n\t30378,\n\t13540,\n\t0,\n\t28807,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64582,\n\t18380,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38598,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1236,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32710,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4590,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64935,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16744,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20005,\n\t0,\n\t0,\n\t13608,\n\t1191,\n\t0,\n\t0,\n\t0,\n\t62183,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24484,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17643,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5380,\n\t0,\n\t0,\n\t32328,\n\t0,\n\t0,\n\t63814,\n\t0,\n\t0,\n\t0,\n\t2919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17034,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t60295,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7690,\n\t486,\n\t0,\n\t0,\n\t0,\n\t39270,\n\t0,\n\t49094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12555,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20967,\n\t17993,\n\t12647,\n\t0,\n\t0,\n\t0,\n\t16036,\n\t32616,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16294,\n\t8555,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30346,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14797,\n\t3652,\n\t0,\n\t0,\n\t8268,\n\t12934,\n\t0,\n\t54950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2632,\n\t33959,\n\t0,\n\t23175,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36262,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32684,\n\t26918,\n\t0,\n\t32676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15625,\n\t11943,\n\t1206,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18052,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16422,\n\t0,\n\t0,\n\t0,\n\t26404,\n\t0,\n\t0,\n\t28777,\n\t0,\n\t0,\n\t24902,\n\t0,\n\t0,\n\t408,\n\t45351,\n\t0,\n\t35719,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3658,\n\t17446,\n\t0,\n\t165,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6151,\n\t0,\n\t0,\n\t24424,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24170,\n\t24293,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11847,\n\t0,\n\t39591,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9549,\n\t2788,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1010,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26055,\n\t31724,\n\t0,\n\t24233,\n\t1828,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17284,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19464,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32452,\n\t0,\n\t0,\n\t0,\n\t28871,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17704,\n\t53383,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17892,\n\t1938,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16362,\n\t0,\n\t0,\n\t21605,\n\t0,\n\t0,\n\t5003,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22693,\n\t0,\n\t22342,\n\t0,\n\t0,\n\t0,\n\t55846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22853,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6600,\n\t263,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24836,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40711,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33894,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13000,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5386,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17740,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25093,\n\t29064,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12680,\n\t11462,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t84,\n\t7303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27044,\n\t457,\n\t0,\n\t22924,\n\t58246,\n\t19016,\n\t0,\n\t2606,\n\t45703,\n\t0,\n\t5157,\n\t0,\n\t25028,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2065,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31946,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33382,\n\t0,\n\t47878,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25004,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26153,\n\t35654,\n\t0,\n\t58055,\n\t30668,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25988,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4456,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7560,\n\t20583,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37510,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42822,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1733,\n\t0,\n\t0,\n\t0,\n\t8196,\n\t0,\n\t0,\n\t11241,\n\t0,\n\t30572,\n\t60326,\n\t0,\n\t15013,\n\t0,\n\t0,\n\t0,\n\t40646,\n\t0,\n\t23812,\n\t0,\n\t10022,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12874,\n\t31015,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1608,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27114,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7944,\n\t1382,\n\t0,\n\t11813,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24517,\n\t0,\n\t11621,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21702,\n\t0,\n\t0,\n\t13100,\n\t8262,\n\t2644,\n\t7973,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1033,\n\t12581,\n\t0,\n\t25221,\n\t0,\n\t0,\n\t0,\n\t40998,\n\t16301,\n\t62983,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1263,\n\t9318,\n\t0,\n\t0,\n\t0,\n\t18854,\n\t0,\n\t0,\n\t1741,\n\t33895,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26377,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32165,\n\t0,\n\t51143,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29412,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1674,\n\t4230,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10502,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5545,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2099,\n\t45158,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14157,\n\t0,\n\t26955,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17096,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27050,\n\t6726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28554,\n\t0,\n\t0,\n\t7142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16936,\n\t0,\n\t0,\n\t0,\n\t25833,\n\t0,\n\t4399,\n\t6980,\n\t0,\n\t46214,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10630,\n\t21164,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2446,\n\t48551,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13381,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15400,\n\t12135,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4774,\n\t586,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23751,\n\t9736,\n\t4548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25577,\n\t29607,\n\t6250,\n\t1637,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22024,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37414,\n\t24044,\n\t0,\n\t0,\n\t0,\n\t14474,\n\t29735,\n\t0,\n\t7077,\n\t0,\n\t45990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30568,\n\t40039,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6150,\n\t0,\n\t4228,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27687,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24548,\n\t21513,\n\t1350,\n\t0,\n\t0,\n\t0,\n\t33607,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11784,\n\t1414,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18244,\n\t940,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7270,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16709,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48935,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23660,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t53350,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4236,\n\t16358,\n\t0,\n\t4422,\n\t6665,\n\t32644,\n\t0,\n\t0,\n\t744,\n\t18084,\n\t0,\n\t11014,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29508,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7686,\n\t0,\n\t0,\n\t13289,\n\t5478,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12872,\n\t0,\n\t0,\n\t24134,\n\t1005,\n\t22916,\n\t0,\n\t31429,\n\t23400,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28424,\n\t0,\n\t0,\n\t0,\n\t25706,\n\t27109,\n\t0,\n\t0,\n\t26345,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25126,\n\t0,\n\t0,\n\t88,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17032,\n\t0,\n\t0,\n\t21799,\n\t0,\n\t0,\n\t10060,\n\t0,\n\t12296,\n\t21892,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20777,\n\t14311,\n\t0,\n\t58182,\n\t32232,\n\t0,\n\t10282,\n\t0,\n\t2121,\n\t11527,\n\t0,\n\t0,\n\t0,\n\t12325,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28804,\n\t2344,\n\t8133,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21864,\n\t62695,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2771,\n\t0,\n\t0,\n\t23204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6278,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26597,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23144,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31816,\n\t20070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24456,\n\t2118,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6570,\n\t1156,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30406,\n\t0,\n\t0,\n\t0,\n\t28388,\n\t3572,\n\t0,\n\t0,\n\t26599,\n\t12426,\n\t5286,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24970,\n\t24167,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28745,\n\t4678,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1444,\n\t236,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19428,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2092,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2827,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19881,\n\t19204,\n\t0,\n\t11749,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17958,\n\t0,\n\t17894,\n\t0,\n\t18726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9190,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21510,\n\t5033,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22855,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14598,\n\t0,\n\t29605,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t617,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3627,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2225,\n\t14823,\n\t0,\n\t0,\n\t2637,\n\t6182,\n\t78,\n\t15078,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20264,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36743,\n\t4140,\n\t44551,\n\t17352,\n\t25703,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14024,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28004,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2087,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18028,\n\t0,\n\t0,\n\t0,\n\t300,\n\t14212,\n\t0,\n\t0,\n\t1386,\n\t40327,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31082,\n\t0,\n\t0,\n\t22374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35718,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26532,\n\t7756,\n\t0,\n\t0,\n\t18982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6440,\n\t1159,\n\t7180,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45766,\n\t0,\n\t57798,\n\t0,\n\t16740,\n\t0,\n\t0,\n\t6802,\n\t60454,\n\t0,\n\t0,\n\t0,\n\t26470,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t65382,\n\t4362,\n\t7750,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9096,\n\t4743,\n\t334,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39974,\n\t0,\n\t0,\n\t0,\n\t25828,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3027,\n\t0,\n\t0,\n\t0,\n\t15816,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48327,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16168,\n\t41799,\n\t0,\n\t0,\n\t24458,\n\t8581,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t54503,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5097,\n\t30852,\n\t18664,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16484,\n\t0,\n\t0,\n\t27337,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4356,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t57030,\n\t0,\n\t0,\n\t1417,\n\t41191,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23429,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10024,\n\t21735,\n\t0,\n\t0,\n\t10126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19046,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24105,\n\t4710,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4394,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13253,\n\t0,\n\t56391,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55974,\n\t0,\n\t0,\n\t0,\n\t52070,\n\t0,\n\t15620,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2660,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21644,\n\t0,\n\t0,\n\t52455,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8902,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3116,\n\t0,\n\t464,\n\t34726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25003,\n\t12423,\n\t0,\n\t27172,\n\t1896,\n\t7335,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35686,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3472,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22406,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45254,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21124,\n\t23594,\n\t33127,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16684,\n\t22087,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8714,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55814,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4109,\n\t23460,\n\t0,\n\t0,\n\t8874,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t147,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29960,\n\t63398,\n\t1302,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24806,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9799,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31333,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19557,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5701,\n\t0,\n\t0,\n\t0,\n\t63014,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21254,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12484,\n\t0,\n\t0,\n\t0,\n\t48326,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15783,\n\t0,\n\t0,\n\t1202,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3086,\n\t49191,\n\t0,\n\t0,\n\t5387,\n\t15141,\n\t0,\n\t0,\n\t0,\n\t3365,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20076,\n\t14021,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t376,\n\t40198,\n\t0,\n\t0,\n\t0,\n\t52039,\n\t0,\n\t24932,\n\t0,\n\t0,\n\t0,\n\t0,\n\t808,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9860,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23719,\n\t0,\n\t21476,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20776,\n\t4807,\n\t0,\n\t0,\n\t3177,\n\t16678,\n\t0,\n\t0,\n\t110,\n\t10853,\n\t0,\n\t0,\n\t0,\n\t17382,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43462,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7500,\n\t4966,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t52102,\n\t0,\n\t24516,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26535,\n\t0,\n\t0,\n\t0,\n\t46247,\n\t0,\n\t0,\n\t0,\n\t15557,\n\t0,\n\t0,\n\t0,\n\t0,\n\t76,\n\t52327,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17866,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46758,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19173,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44038,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2985,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14310,\n\t0,\n\t0,\n\t2125,\n\t45831,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9838,\n\t0,\n\t13227,\n\t19492,\n\t0,\n\t0,\n\t0,\n\t29764,\n\t0,\n\t0,\n\t0,\n\t0,\n\t686,\n\t30053,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30789,\n\t139,\n\t20837,\n\t0,\n\t0,\n\t0,\n\t0,\n\t502,\n\t18533,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19111,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31396,\n\t0,\n\t0,\n\t0,\n\t17444,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49862,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25610,\n\t550,\n\t0,\n\t0,\n\t561,\n\t0,\n\t29034,\n\t0,\n\t0,\n\t0,\n\t3528,\n\t0,\n\t0,\n\t0,\n\t1715,\n\t14661,\n\t18,\n\t63463,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14186,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29578,\n\t59014,\n\t0,\n\t39430,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2250,\n\t16612,\n\t0,\n\t31780,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t462,\n\t16967,\n\t0,\n\t29029,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23462,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1768,\n\t0,\n\t6025,\n\t16998,\n\t1804,\n\t0,\n\t0,\n\t54182,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14124,\n\t0,\n\t6154,\n\t29702,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7716,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48807,\n\t0,\n\t8292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16389,\n\t5933,\n\t0,\n\t14857,\n\t51303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35623,\n\t9097,\n\t23047,\n\t0,\n\t0,\n\t23112,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t438,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t151,\n\t9254,\n\t1390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t54215,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6187,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9866,\n\t0,\n\t0,\n\t59622,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25286,\n\t0,\n\t0,\n\t23848,\n\t32069,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9255,\n\t2187,\n\t15270,\n\t437,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19493,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11748,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16902,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22212,\n\t1865,\n\t17543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21996,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55975,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32138,\n\t21156,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14249,\n\t0,\n\t0,\n\t0,\n\t2388,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6823,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26694,\n\t0,\n\t0,\n\t6059,\n\t53511,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49542,\n\t6159,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1036,\n\t24036,\n\t0,\n\t2501,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17419,\n\t51271,\n\t3377,\n\t15142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5007,\n\t62374,\n\t0,\n\t56935,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24422,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28263,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15622,\n\t0,\n\t19749,\n\t0,\n\t0,\n\t1611,\n\t0,\n\t22219,\n\t48583,\n\t25129,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17476,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t721,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32518,\n\t0,\n\t0,\n\t0,\n\t18469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5896,\n\t29927,\n\t3657,\n\t23046,\n\t0,\n\t0,\n\t3214,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t112,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3048,\n\t455,\n\t0,\n\t31012,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23270,\n\t0,\n\t32677,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38086,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4900,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25541,\n\t0,\n\t18788,\n\t0,\n\t0,\n\t22248,\n\t1351,\n\t0,\n\t61734,\n\t4524,\n\t30629,\n\t0,\n\t14887,\n\t242,\n\t29063,\n\t0,\n\t0,\n\t14408,\n\t4741,\n\t0,\n\t0,\n\t0,\n\t37318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8106,\n\t0,\n\t32107,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1481,\n\t0,\n\t0,\n\t28132,\n\t0,\n\t25798,\n\t0,\n\t59783,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t59078,\n\t0,\n\t0,\n\t0,\n\t23366,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30887,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16200,\n\t0,\n\t0,\n\t0,\n\t335,\n\t0,\n\t0,\n\t0,\n\t714,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30730,\n\t9478,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18790,\n\t0,\n\t0,\n\t0,\n\t0,\n\t663,\n\t0,\n\t0,\n\t0,\n\t1034,\n\t31431,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30120,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13925,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2280,\n\t13414,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22028,\n\t23687,\n\t3017,\n\t11047,\n\t0,\n\t0,\n\t21738,\n\t18630,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30246,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17257,\n\t0,\n\t21896,\n\t63783,\n\t0,\n\t0,\n\t0,\n\t21094,\n\t0,\n\t18662,\n\t0,\n\t25700,\n\t0,\n\t22533,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6341,\n\t5800,\n\t11111,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15399,\n\t12970,\n\t6501,\n\t0,\n\t0,\n\t3179,\n\t26438,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15750,\n\t0,\n\t13062,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21284,\n\t11177,\n\t4391,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19595,\n\t40647,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11877,\n\t0,\n\t0,\n\t0,\n\t26439,\n\t0,\n\t0,\n\t0,\n\t0,\n\t695,\n\t49126,\n\t27467,\n\t11972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9961,\n\t0,\n\t0,\n\t0,\n\t31722,\n\t62982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15817,\n\t52710,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24614,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20550,\n\t0,\n\t0,\n\t5034,\n\t3942,\n\t0,\n\t0,\n\t0,\n\t45927,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45606,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3405,\n\t12582,\n\t15563,\n\t54087,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24202,\n\t5893,\n\t0,\n\t0,\n\t0,\n\t44230,\n\t0,\n\t0,\n\t0,\n\t5605,\n\t0,\n\t47782,\n\t0,\n\t32230,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7014,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16488,\n\t3175,\n\t0,\n\t27237,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40902,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32004,\n\t31434,\n\t0,\n\t24392,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29130,\n\t58214,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29002,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55366,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37926,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1290,\n\t0,\n\t0,\n\t0,\n\t4713,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20812,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1803,\n\t966,\n\t0,\n\t17700,\n\t0,\n\t0,\n\t654,\n\t19109,\n\t0,\n\t51655,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10470,\n\t1584,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2506,\n\t0,\n\t0,\n\t25159,\n\t4303,\n\t0,\n\t0,\n\t0,\n\t395,\n\t15879,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1352,\n\t6535,\n\t0,\n\t19652,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4722,\n\t7909,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30152,\n\t0,\n\t0,\n\t64742,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2153,\n\t9125,\n\t0,\n\t0,\n\t279,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41894,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1328,\n\t17030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t54151,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1775,\n\t54535,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31624,\n\t0,\n\t0,\n\t0,\n\t7150,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1840,\n\t35943,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56455,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64486,\n\t0,\n\t0,\n\t0,\n\t51174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17092,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12,\n\t16134,\n\t19883,\n\t39943,\n\t10281,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44711,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14125,\n\t2407,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26921,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22188,\n\t0,\n\t20810,\n\t10053,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29220,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28170,\n\t0,\n\t15208,\n\t0,\n\t0,\n\t32517,\n\t5736,\n\t19271,\n\t3562,\n\t10534,\n\t0,\n\t0,\n\t0,\n\t59655,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27084,\n\t60422,\n\t0,\n\t0,\n\t24969,\n\t0,\n\t0,\n\t0,\n\t2636,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26277,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30596,\n\t3594,\n\t0,\n\t0,\n\t0,\n\t8362,\n\t14565,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10793,\n\t12326,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5906,\n\t59686,\n\t0,\n\t0,\n\t23081,\n\t517,\n\t0,\n\t15556,\n\t0,\n\t0,\n\t0,\n\t8486,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19877,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7497,\n\t0,\n\t0,\n\t26085,\n\t0,\n\t0,\n\t23784,\n\t63591,\n\t6568,\n\t6310,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10054,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7018,\n\t14470,\n\t18858,\n\t0,\n\t5641,\n\t10660,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35526,\n\t1515,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27656,\n\t0,\n\t0,\n\t9606,\n\t0,\n\t39590,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t53926,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t232,\n\t4327,\n\t12649,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20199,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26730,\n\t0,\n\t0,\n\t0,\n\t19400,\n\t14695,\n\t0,\n\t31334,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19589,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5064,\n\t11908,\n\t0,\n\t27333,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47751,\n\t0,\n\t0,\n\t0,\n\t26662,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55655,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6245,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23368,\n\t63911,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8520,\n\t24037,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26279,\n\t0,\n\t0,\n\t0,\n\t22886,\n\t0,\n\t0,\n\t0,\n\t27782,\n\t0,\n\t30694,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33703,\n\t0,\n\t0,\n\t0,\n\t30405,\n\t0,\n\t34598,\n\t0,\n\t51047,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1908,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1511,\n\t21897,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51398,\n\t0,\n\t24870,\n\t0,\n\t32647,\n\t0,\n\t0,\n\t0,\n\t35015,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7758,\n\t57991,\n\t0,\n\t0,\n\t0,\n\t30949,\n\t0,\n\t0,\n\t22,\n\t15140,\n\t9162,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25540,\n\t20136,\n\t7108,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16427,\n\t10789,\n\t9805,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4680,\n\t0,\n\t0,\n\t52679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14884,\n\t0,\n\t0,\n\t0,\n\t16804,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9578,\n\t5287,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34054,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19076,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7627,\n\t55719,\n\t0,\n\t39463,\n\t14446,\n\t58374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23465,\n\t15845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38534,\n\t0,\n\t0,\n\t0,\n\t17893,\n\t10922,\n\t0,\n\t7176,\n\t678,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3113,\n\t46279,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23334,\n\t0,\n\t0,\n\t18088,\n\t23268,\n\t0,\n\t62342,\n\t0,\n\t0,\n\t0,\n\t16613,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38182,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10344,\n\t71,\n\t6446,\n\t0,\n\t0,\n\t1893,\n\t0,\n\t0,\n\t1106,\n\t0,\n\t28680,\n\t30756,\n\t0,\n\t41126,\n\t0,\n\t0,\n\t1492,\n\t0,\n\t15341,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17575,\n\t0,\n\t21220,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25060,\n\t2088,\n\t21828,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t358,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16708,\n\t0,\n\t0,\n\t0,\n\t1668,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12260,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4078,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12713,\n\t6215,\n\t0,\n\t0,\n\t20329,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3732,\n\t0,\n\t1646,\n\t0,\n\t0,\n\t27460,\n\t0,\n\t34406,\n\t17128,\n\t14341,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19527,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6120,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8551,\n\t21546,\n\t10212,\n\t3020,\n\t2951,\n\t0,\n\t17638,\n\t0,\n\t0,\n\t6985,\n\t44999,\n\t2218,\n\t8197,\n\t0,\n\t0,\n\t30472,\n\t63366,\n\t0,\n\t26660,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1265,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2610,\n\t0,\n\t0,\n\t0,\n\t11278,\n\t20295,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19780,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2353,\n\t10852,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5421,\n\t24292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34407,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15432,\n\t20774,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12360,\n\t10757,\n\t0,\n\t0,\n\t0,\n\t33126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29573,\n\t0,\n\t2343,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t63079,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43015,\n\t0,\n\t16038,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1480,\n\t25573,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8839,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24645,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5063,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t823,\n\t0,\n\t0,\n\t64039,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15300,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2924,\n\t46759,\n\t6760,\n\t19268,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34182,\n\t0,\n\t0,\n\t3977,\n\t18149,\n\t0,\n\t0,\n\t0,\n\t32199,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23524,\n\t25994,\n\t0,\n\t0,\n\t10343,\n\t0,\n\t0,\n\t0,\n\t9733,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4740,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16741,\n\t0,\n\t0,\n\t4626,\n\t23367,\n\t0,\n\t0,\n\t31400,\n\t0,\n\t0,\n\t3557,\n\t0,\n\t0,\n\t4234,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28486,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14213,\n\t0,\n\t57191,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t240,\n\t0,\n\t0,\n\t0,\n\t0,\n\t65318,\n\t29832,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29989,\n\t0,\n\t31846,\n\t0,\n\t0,\n\t8170,\n\t0,\n\t0,\n\t4421,\n\t27626,\n\t30884,\n\t0,\n\t0,\n\t20204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44614,\n\t534,\n\t20868,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28710,\n\t0,\n\t10277,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29511,\n\t0,\n\t19813,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27020,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t53094,\n\t0,\n\t35207,\n\t0,\n\t0,\n\t0,\n\t37542,\n\t0,\n\t61766,\n\t8584,\n\t8037,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12488,\n\t22757,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23814,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19973,\n\t0,\n\t0,\n\t0,\n\t63943,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36006,\n\t0,\n\t0,\n\t0,\n\t19012,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18021,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t80,\n\t1254,\n\t0,\n\t0,\n\t0,\n\t42630,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16262,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2124,\n\t25479,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16873,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3142,\n\t0,\n\t0,\n\t18443,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3917,\n\t0,\n\t8841,\n\t1190,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20645,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9284,\n\t0,\n\t0,\n\t24394,\n\t41351,\n\t0,\n\t0,\n\t0,\n\t42087,\n\t0,\n\t62566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6728,\n\t4199,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25515,\n\t0,\n\t1231,\n\t0,\n\t374,\n\t15623,\n\t0,\n\t29956,\n\t0,\n\t14118,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19047,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31718,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20900,\n\t0,\n\t16743,\n\t0,\n\t0,\n\t0,\n\t28902,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2578,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13838,\n\t0,\n\t0,\n\t10052,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7432,\n\t43783,\n\t17097,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t873,\n\t0,\n\t0,\n\t0,\n\t398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8459,\n\t23559,\n\t0,\n\t53030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35750,\n\t0,\n\t4071,\n\t0,\n\t0,\n\t0,\n\t38662,\n\t0,\n\t41414,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11656,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4011,\n\t42695,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25353,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27177,\n\t22372,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30980,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46278,\n\t3976,\n\t12711,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20517,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4072,\n\t11078,\n\t0,\n\t0,\n\t16553,\n\t2405,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2670,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32998,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47046,\n\t0,\n\t30533,\n\t0,\n\t0,\n\t11050,\n\t9734,\n\t13129,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58310,\n\t0,\n\t0,\n\t0,\n\t57543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5163,\n\t59687,\n\t2220,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29510,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17316,\n\t0,\n\t20069,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5319,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22949,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19208,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20933,\n\t0,\n\t0,\n\t6026,\n\t8742,\n\t0,\n\t0,\n\t0,\n\t17380,\n\t0,\n\t13127,\n\t2797,\n\t0,\n\t0,\n\t30116,\n\t0,\n\t0,\n\t5963,\n\t8004,\n\t0,\n\t57126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42854,\n\t14792,\n\t30759,\n\t0,\n\t24964,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16933,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15176,\n\t40839,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t788,\n\t30341,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21036,\n\t24102,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30123,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22597,\n\t31531,\n\t26789,\n\t0,\n\t59559,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9352,\n\t29863,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24551,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20516,\n\t0,\n\t0,\n\t0,\n\t39462,\n\t3665,\n\t0,\n\t28265,\n\t0,\n\t8778,\n\t64262,\n\t0,\n\t57414,\n\t9132,\n\t0,\n\t0,\n\t18276,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26344,\n\t30725,\n\t524,\n\t19751,\n\t0,\n\t13796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18155,\n\t0,\n\t12841,\n\t0,\n\t74,\n\t24998,\n\t13579,\n\t1061,\n\t0,\n\t64199,\n\t0,\n\t0,\n\t8776,\n\t0,\n\t0,\n\t60231,\n\t0,\n\t25412,\n\t0,\n\t0,\n\t0,\n\t59143,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14344,\n\t1510,\n\t0,\n\t0,\n\t0,\n\t38374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13353,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32613,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14859,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6662,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14154,\n\t0,\n\t29770,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16520,\n\t2182,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36102,\n\t3340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25189,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15720,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22758,\n\t0,\n\t0,\n\t304,\n\t0,\n\t3243,\n\t14117,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5130,\n\t12679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21733,\n\t10441,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36103,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23590,\n\t0,\n\t57479,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10824,\n\t18372,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35078,\n\t15722,\n\t12967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34599,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t53639,\n\t0,\n\t38630,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31017,\n\t11333,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19144,\n\t0,\n\t9513,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56711,\n\t24042,\n\t0,\n\t1197,\n\t0,\n\t0,\n\t58502,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8230,\n\t6121,\n\t18628,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25290,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1514,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14378,\n\t9798,\n\t32363,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9577,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26788,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t330,\n\t10533,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42246,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5074,\n\t21028,\n\t0,\n\t38119,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t248,\n\t0,\n\t31176,\n\t62054,\n\t0,\n\t53287,\n\t0,\n\t0,\n\t0,\n\t0,\n\t271,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9224,\n\t2117,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15818,\n\t5607,\n\t0,\n\t52582,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18248,\n\t24005,\n\t23018,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t427,\n\t0,\n\t0,\n\t39910,\n\t0,\n\t0,\n\t7080,\n\t11399,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22220,\n\t57894,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13156,\n\t0,\n\t1413,\n\t1007,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21415,\n\t0,\n\t21543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41702,\n\t22538,\n\t9573,\n\t0,\n\t0,\n\t0,\n\t8806,\n\t0,\n\t0,\n\t6920,\n\t56359,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42215,\n\t0,\n\t0,\n\t13708,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16453,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1582,\n\t1764,\n\t3282,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11653,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12139,\n\t0,\n\t29482,\n\t31076,\n\t1673,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40262,\n\t0,\n\t0,\n\t0,\n\t33862,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20996,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4615,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43943,\n\t333,\n\t19367,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26821,\n\t0,\n\t32389,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4936,\n\t11687,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10885,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25926,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15851,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8360,\n\t0,\n\t17130,\n\t7942,\n\t0,\n\t11460,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18150,\n\t14248,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22310,\n\t0,\n\t0,\n\t0,\n\t42758,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29354,\n\t5574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31109,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11236,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9156,\n\t0,\n\t0,\n\t1801,\n\t14023,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62406,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23620,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31018,\n\t65510,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26182,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27717,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31108,\n\t0,\n\t11366,\n\t0,\n\t0,\n\t0,\n\t3717,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8552,\n\t6054,\n\t3339,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51622,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3718,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28358,\n\t0,\n\t2756,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1462,\n\t0,\n\t0,\n\t27622,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62502,\n\t14410,\n\t56743,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12206,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36550,\n\t0,\n\t38054,\n\t0,\n\t0,\n\t0,\n\t21221,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27077,\n\t0,\n\t0,\n\t16906,\n\t0,\n\t12587,\n\t12101,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10414,\n\t28775,\n\t21769,\n\t60167,\n\t0,\n\t56646,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20740,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5931,\n\t5351,\n\t0,\n\t65478,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7977,\n\t52647,\n\t0,\n\t4868,\n\t0,\n\t0,\n\t0,\n\t55463,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32197,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13445,\n\t0,\n\t0,\n\t0,\n\t26631,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11237,\n\t0,\n\t0,\n\t0,\n\t0,\n\t209,\n\t1285,\n\t0,\n\t0,\n\t1928,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43334,\n\t23849,\n\t23172,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24712,\n\t62439,\n\t8811,\n\t3463,\n\t20457,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16008,\n\t56263,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t60358,\n\t22761,\n\t6565,\n\t0,\n\t0,\n\t30888,\n\t27686,\n\t0,\n\t0,\n\t0,\n\t17093,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22121,\n\t0,\n\t0,\n\t0,\n\t7593,\n\t14182,\n\t0,\n\t28103,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18500,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28202,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26308,\n\t0,\n\t29541,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29572,\n\t0,\n\t0,\n\t0,\n\t21285,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t60839,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30407,\n\t15949,\n\t2981,\n\t0,\n\t0,\n\t0,\n\t46439,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23911,\n\t26505,\n\t25222,\n\t12811,\n\t5895,\n\t0,\n\t6343,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31815,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19688,\n\t10245,\n\t0,\n\t0,\n\t0,\n\t31301,\n\t26985,\n\t28964,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27208,\n\t31172,\n\t0,\n\t0,\n\t0,\n\t0,\n\t216,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8743,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6438,\n\t0,\n\t0,\n\t0,\n\t33319,\n\t0,\n\t0,\n\t0,\n\t33286,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22181,\n\t7499,\n\t24774,\n\t0,\n\t10756,\n\t0,\n\t44775,\n\t724,\n\t0,\n\t25768,\n\t25669,\n\t24873,\n\t5349,\n\t25257,\n\t0,\n\t0,\n\t54566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t327,\n\t439,\n\t357,\n\t0,\n\t0,\n\t6536,\n\t8452,\n\t0,\n\t0,\n\t1802,\n\t0,\n\t0,\n\t61350,\n\t0,\n\t15045,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38343,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32491,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22885,\n\t0,\n\t0,\n\t32073,\n\t0,\n\t0,\n\t0,\n\t9546,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27748,\n\t0,\n\t0,\n\t23176,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24583,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34118,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2158,\n\t0,\n\t5586,\n\t30340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24452,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2409,\n\t4390,\n\t0,\n\t24196,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32264,\n\t26948,\n\t20587,\n\t0,\n\t0,\n\t0,\n\t2155,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4328,\n\t26276,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23564,\n\t0,\n\t12458,\n\t11367,\n\t0,\n\t0,\n\t25162,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t65414,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32966,\n\t0,\n\t0,\n\t0,\n\t34662,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39238,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11400,\n\t10214,\n\t266,\n\t12452,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15173,\n\t0,\n\t0,\n\t0,\n\t13668,\n\t0,\n\t13222,\n\t0,\n\t23364,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11941,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25575,\n\t0,\n\t0,\n\t0,\n\t57383,\n\t0,\n\t0,\n\t0,\n\t10308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2865,\n\t9287,\n\t75,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21508,\n\t22380,\n\t59526,\n\t0,\n\t0,\n\t0,\n\t23589,\n\t0,\n\t0,\n\t0,\n\t51590,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4645,\n\t3980,\n\t28295,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12388,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21734,\n\t0,\n\t17607,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41767,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18436,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21958,\n\t0,\n\t19430,\n\t0,\n\t0,\n\t1204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3240,\n\t55239,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30660,\n\t0,\n\t0,\n\t0,\n\t28901,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4716,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11754,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22086,\n\t0,\n\t22564,\n\t8749,\n\t0,\n\t0,\n\t28391,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2886,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29062,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40358,\n\t0,\n\t0,\n\t15916,\n\t39526,\n\t0,\n\t13735,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28938,\n\t0,\n\t407,\n\t4006,\n\t0,\n\t0,\n\t0,\n\t26916,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27526,\n\t30280,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24586,\n\t0,\n\t24649,\n\t5126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8684,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23019,\n\t0,\n\t22377,\n\t18599,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27593,\n\t9735,\n\t0,\n\t20196,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28168,\n\t48423,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31399,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13892,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17606,\n\t0,\n\t0,\n\t15242,\n\t29767,\n\t26378,\n\t17701,\n\t0,\n\t0,\n\t14472,\n\t0,\n\t4840,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24708,\n\t0,\n\t9349,\n\t4330,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16137,\n\t0,\n\t0,\n\t34854,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25063,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6603,\n\t12583,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7433,\n\t29188,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31270,\n\t0,\n\t0,\n\t22920,\n\t3143,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23461,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t618,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21381,\n\t0,\n\t11524,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21004,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t312,\n\t23239,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2313,\n\t0,\n\t0,\n\t40614,\n\t0,\n\t0,\n\t14825,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46535,\n\t0,\n\t41190,\n\t7853,\n\t0,\n\t31656,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3433,\n\t5255,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t72,\n\t15493,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14724,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29828,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18822,\n\t20008,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2438,\n\t2952,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24420,\n\t0,\n\t19908,\n\t0,\n\t0,\n\t0,\n\t8101,\n\t0,\n\t17479,\n\t0,\n\t0,\n\t3530,\n\t0,\n\t8202,\n\t29319,\n\t0,\n\t0,\n\t1132,\n\t6789,\n\t0,\n\t0,\n\t23881,\n\t0,\n\t0,\n\t0,\n\t4810,\n\t0,\n\t0,\n\t46918,\n\t0,\n\t0,\n\t0,\n\t41574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48582,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39334,\n\t0,\n\t0,\n\t0,\n\t26117,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5100,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23496,\n\t27813,\n\t4045,\n\t54918,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6473,\n\t7428,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6792,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3560,\n\t32103,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t54790,\n\t0,\n\t0,\n\t6926,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16518,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20806,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1841,\n\t3174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9612,\n\t18374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32744,\n\t0,\n\t0,\n\t9671,\n\t0,\n\t59879,\n\t0,\n\t23300,\n\t8073,\n\t0,\n\t0,\n\t14758,\n\t0,\n\t0,\n\t0,\n\t10342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24808,\n\t14759,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5515,\n\t0,\n\t0,\n\t14852,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2354,\n\t23271,\n\t0,\n\t32740,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18472,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33190,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8972,\n\t21669,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5096,\n\t0,\n\t14283,\n\t55367,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12644,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4651,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t661,\n\t0,\n\t0,\n\t13638,\n\t19466,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31273,\n\t0,\n\t8010,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3211,\n\t0,\n\t0,\n\t0,\n\t0,\n\t63430,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15237,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19018,\n\t2437,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14312,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16836,\n\t0,\n\t0,\n\t471,\n\t35975,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6023,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11593,\n\t9639,\n\t0,\n\t0,\n\t0,\n\t55783,\n\t0,\n\t5700,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27908,\n\t0,\n\t26598,\n\t0,\n\t0,\n\t6667,\n\t6470,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16522,\n\t27911,\n\t0,\n\t0,\n\t10025,\n\t7172,\n\t0,\n\t0,\n\t779,\n\t0,\n\t360,\n\t17477,\n\t0,\n\t0,\n\t0,\n\t61991,\n\t7752,\n\t7717,\n\t1494,\n\t0,\n\t0,\n\t0,\n\t26569,\n\t40742,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26406,\n\t10474,\n\t32196,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50567,\n\t16521,\n\t11716,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55558,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t61926,\n\t0,\n\t26436,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4459,\n\t10598,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9223,\n\t0,\n\t29318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t60423,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47078,\n\t0,\n\t50246,\n\t0,\n\t12612,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t61799,\n\t0,\n\t55015,\n\t0,\n\t21060,\n\t7309,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11976,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23527,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10347,\n\t15942,\n\t0,\n\t34023,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4969,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28997,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3466,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19716,\n\t28872,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22152,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26342,\n\t0,\n\t0,\n\t0,\n\t9764,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21798,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13,\n\t6853,\n\t32136,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t750,\n\t0,\n\t0,\n\t54502,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46183,\n\t0,\n\t0,\n\t625,\n\t22854,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2061,\n\t23588,\n\t0,\n\t0,\n\t11049,\n\t56262,\n\t0,\n\t0,\n\t18538,\n\t1509,\n\t0,\n\t0,\n\t17258,\n\t4453,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12429,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8102,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8074,\n\t0,\n\t23852,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16136,\n\t3428,\n\t0,\n\t27876,\n\t0,\n\t0,\n\t0,\n\t7332,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28900,\n\t0,\n\t0,\n\t2284,\n\t0,\n\t0,\n\t17573,\n\t201,\n\t1508,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31365,\n\t27688,\n\t22565,\n\t0,\n\t0,\n\t0,\n\t5159,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4584,\n\t42599,\n\t0,\n\t0,\n\t0,\n\t44422,\n\t1068,\n\t23173,\n\t0,\n\t0,\n\t0,\n\t613,\n\t0,\n\t0,\n\t0,\n\t12645,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27076,\n\t6732,\n\t0,\n\t0,\n\t0,\n\t3913,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22244,\n\t29992,\n\t15911,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50598,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5161,\n\t1574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19108,\n\t0,\n\t0,\n\t0,\n\t35014,\n\t0,\n\t0,\n\t0,\n\t25956,\n\t29067,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47079,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1356,\n\t61927,\n\t0,\n\t0,\n\t0,\n\t64455,\n\t2122,\n\t64231,\n\t0,\n\t0,\n\t18763,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t907,\n\t34471,\n\t0,\n\t0,\n\t0,\n\t39078,\n\t0,\n\t0,\n\t1995,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56518,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t822,\n\t0,\n\t15978,\n\t44423,\n\t0,\n\t0,\n\t3112,\n\t325,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15397,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1193,\n\t4294,\n\t4968,\n\t15559,\n\t0,\n\t46150,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18917,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9928,\n\t37543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13097,\n\t36999,\n\t0,\n\t0,\n\t0,\n\t15430,\n\t0,\n\t0,\n\t8424,\n\t29639,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25734,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40487,\n\t0,\n\t13284,\n\t0,\n\t11141,\n\t0,\n\t0,\n\t0,\n\t32388,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5298,\n\t57702,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13060,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8233,\n\t42278,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36422,\n\t0,\n\t0,\n\t0,\n\t7972,\n\t0,\n\t0,\n\t0,\n\t18437,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7406,\n\t0,\n\t0,\n\t0,\n\t9225,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13865,\n\t47591,\n\t18220,\n\t53703,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24940,\n\t17223,\n\t0,\n\t0,\n\t0,\n\t13221,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15848,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6122,\n\t1735,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16968,\n\t18151,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26089,\n\t19494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28809,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42727,\n\t0,\n\t55174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20485,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58598,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15172,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35302,\n\t0,\n\t48135,\n\t20972,\n\t33094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9765,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39559,\n\t0,\n\t0,\n\t13736,\n\t6950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23658,\n\t8903,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22662,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58886,\n\t7468,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64550,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47622,\n\t0,\n\t0,\n\t0,\n\t50886,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t57606,\n\t912,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1449,\n\t0,\n\t1169,\n\t0,\n\t718,\n\t46151,\n\t12104,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48230,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1259,\n\t0,\n\t0,\n\t33734,\n\t23208,\n\t62567,\n\t0,\n\t65158,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28684,\n\t59878,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25769,\n\t0,\n\t0,\n\t0,\n\t0,\n\t65479,\n\t0,\n\t0,\n\t0,\n\t0,\n\t555,\n\t22789,\n\t0,\n\t19748,\n\t1769,\n\t10246,\n\t8680,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14250,\n\t0,\n\t5899,\n\t3303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21097,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21638,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10795,\n\t0,\n\t0,\n\t0,\n\t16204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26986,\n\t2469,\n\t0,\n\t14660,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45447,\n\t12234,\n\t3494,\n\t4555,\n\t10566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2801,\n\t0,\n\t0,\n\t0,\n\t15755,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39654,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6763,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33574,\n\t0,\n\t10279,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t63527,\n\t0,\n\t0,\n\t3912,\n\t0,\n\t0,\n\t7492,\n\t0,\n\t0,\n\t0,\n\t35142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17576,\n\t8103,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16713,\n\t4198,\n\t0,\n\t0,\n\t4782,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16228,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25961,\n\t20166,\n\t0,\n\t0,\n\t0,\n\t10980,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14340,\n\t18922,\n\t14567,\n\t0,\n\t44199,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18406,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37606,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20902,\n\t0,\n\t0,\n\t0,\n\t56358,\n\t0,\n\t38342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9514,\n\t36071,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21700,\n\t0,\n\t0,\n\t5266,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1134,\n\t0,\n\t1453,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3882,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4004,\n\t0,\n\t0,\n\t0,\n\t51910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23076,\n\t4648,\n\t0,\n\t0,\n\t0,\n\t31051,\n\t25351,\n\t0,\n\t0,\n\t0,\n\t22884,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t63975,\n\t0,\n\t0,\n\t2376,\n\t16997,\n\t0,\n\t0,\n\t2096,\n\t0,\n\t0,\n\t0,\n\t3373,\n\t7046,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20,\n\t0,\n\t13707,\n\t614,\n\t0,\n\t0,\n\t12840,\n\t3079,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51046,\n\t3729,\n\t0,\n\t32680,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24008,\n\t62759,\n\t0,\n\t0,\n\t4745,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2414,\n\t0,\n\t0,\n\t44262,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24937,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19140,\n\t0,\n\t13575,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39110,\n\t0,\n\t0,\n\t0,\n\t28036,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4261,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5992,\n\t0,\n\t264,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13739,\n\t0,\n\t21928,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4232,\n\t15110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30022,\n\t0,\n\t0,\n\t27977,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24776,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2962,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26564,\n\t22441,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13640,\n\t11205,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19305,\n\t1894,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9389,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14119,\n\t5224,\n\t135,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7470,\n\t0,\n\t0,\n\t0,\n\t0,\n\t63815,\n\t0,\n\t55654,\n\t0,\n\t0,\n\t12584,\n\t0,\n\t1524,\n\t33223,\n\t0,\n\t0,\n\t0,\n\t9895,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11624,\n\t0,\n\t0,\n\t0,\n\t5614,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21320,\n\t0,\n\t0,\n\t53607,\n\t0,\n\t51206,\n\t0,\n\t0,\n\t0,\n\t25863,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8964,\n\t1740,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13476,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7975,\n\t0,\n\t0,\n\t3306,\n\t8134,\n\t0,\n\t8389,\n\t48,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25766,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t52166,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21477,\n\t31112,\n\t31652,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28452,\n\t0,\n\t0,\n\t0,\n\t44231,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24805,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12428,\n\t6471,\n\t0,\n\t0,\n\t0,\n\t0,\n\t525,\n\t17926,\n\t0,\n\t0,\n\t0,\n\t26919,\n\t0,\n\t0,\n\t18120,\n\t0,\n\t0,\n\t0,\n\t30024,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29189,\n\t0,\n\t0,\n\t0,\n\t43559,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19787,\n\t7557,\n\t0,\n\t59334,\n\t0,\n\t0,\n\t10184,\n\t6085,\n\t0,\n\t44039,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11175,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30440,\n\t63110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11017,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t622,\n\t0,\n\t5226,\n\t2727,\n\t0,\n\t15588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4650,\n\t0,\n\t2675,\n\t0,\n\t0,\n\t32420,\n\t0,\n\t0,\n\t0,\n\t61511,\n\t0,\n\t0,\n\t5419,\n\t17829,\n\t2123,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38183,\n\t2640,\n\t0,\n\t11274,\n\t14533,\n\t1842,\n\t0,\n\t0,\n\t42663,\n\t12681,\n\t3430,\n\t0,\n\t11845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6533,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t54598,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12616,\n\t38535,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32229,\n\t0,\n\t0,\n\t0,\n\t54279,\n\t0,\n\t48614,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31401,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34310,\n\t0,\n\t0,\n\t0,\n\t22788,\n\t0,\n\t52134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23302,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40678,\n\t0,\n\t0,\n\t0,\n\t51463,\n\t535,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15525,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4904,\n\t869,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t63718,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1678,\n\t0,\n\t692,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26216,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29355,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4335,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14538,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27273,\n\t55014,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27271,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30468,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18186,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14345,\n\t0,\n\t0,\n\t0,\n\t2152,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58438,\n\t21034,\n\t0,\n\t23339,\n\t21318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21412,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12869,\n\t0,\n\t0,\n\t4875,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29191,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1640,\n\t10247,\n\t0,\n\t14244,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9867,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12363,\n\t0,\n\t0,\n\t7653,\n\t0,\n\t0,\n\t4168,\n\t2663,\n\t0,\n\t4580,\n\t0,\n\t11143,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30662,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6724,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13764,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t234,\n\t6821,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25639,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29958,\n\t0,\n\t3461,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28324,\n\t18795,\n\t7013,\n\t12746,\n\t11655,\n\t0,\n\t37287,\n\t0,\n\t0,\n\t10953,\n\t7718,\n\t9705,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8137,\n\t17988,\n\t0,\n\t25156,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41415,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15784,\n\t6918,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7019,\n\t10919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4171,\n\t55495,\n\t4940,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22440,\n\t19333,\n\t0,\n\t0,\n\t28136,\n\t0,\n\t6249,\n\t21317,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t53414,\n\t0,\n\t0,\n\t0,\n\t57318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19940,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2698,\n\t3911,\n\t0,\n\t0,\n\t0,\n\t26790,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32424,\n\t0,\n\t0,\n\t18470,\n\t0,\n\t0,\n\t0,\n\t14726,\n\t29834,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1000,\n\t4197,\n\t0,\n\t0,\n\t0,\n\t19366,\n\t0,\n\t0,\n\t0,\n\t39878,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2185,\n\t8901,\n\t5288,\n\t9829,\n\t25000,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1062,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35622,\n\t0,\n\t0,\n\t23048,\n\t62503,\n\t6506,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13609,\n\t10438,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7723,\n\t42119,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13317,\n\t0,\n\t0,\n\t0,\n\t41606,\n\t0,\n\t27111,\n\t0,\n\t0,\n\t21194,\n\t11461,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26856,\n\t58342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20940,\n\t48710,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5227,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10061,\n\t31300,\n\t0,\n\t0,\n\t0,\n\t19236,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30277,\n\t13896,\n\t0,\n\t0,\n\t0,\n\t12876,\n\t13159,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t428,\n\t46951,\n\t13134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15462,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21668,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2249,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3465,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24868,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23909,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2190,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16164,\n\t0,\n\t10437,\n\t0,\n\t0,\n\t5263,\n\t20102,\n\t20938,\n\t0,\n\t0,\n\t0,\n\t1192,\n\t1030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21385,\n\t4870,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18596,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1422,\n\t4038,\n\t2858,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48998,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6508,\n\t37350,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17001,\n\t39431,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30182,\n\t0,\n\t21445,\n\t7403,\n\t28164,\n\t0,\n\t51750,\n\t0,\n\t0,\n\t0,\n\t62631,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31206,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7751,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13477,\n\t0,\n\t0,\n\t456,\n\t26693,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14890,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26697,\n\t22022,\n\t13225,\n\t27364,\n\t0,\n\t0,\n\t0,\n\t18884,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3659,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1448,\n\t5413,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6340,\n\t0,\n\t0,\n\t18091,\n\t18725,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22118,\n\t0,\n\t0,\n\t0,\n\t18981,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29223,\n\t3724,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43526,\n\t0,\n\t0,\n\t0,\n\t25668,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21545,\n\t9862,\n\t0,\n\t22692,\n\t32201,\n\t60646,\n\t0,\n\t7300,\n\t0,\n\t0,\n\t0,\n\t58887,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19460,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50342,\n\t0,\n\t65255,\n\t4360,\n\t17286,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28708,\n\t0,\n\t0,\n\t30025,\n\t60102,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47014,\n\t0,\n\t31973,\n\t0,\n\t9572,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18501,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14597,\n\t0,\n\t0,\n\t0,\n\t53735,\n\t5228,\n\t22183,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1554,\n\t24164,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10827,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34918,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22252,\n\t0,\n\t0,\n\t46855,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31207,\n\t0,\n\t0,\n\t10733,\n\t0,\n\t0,\n\t63334,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8616,\n\t50119,\n\t20169,\n\t12678,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58087,\n\t20298,\n\t5,\n\t0,\n\t0,\n\t30920,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t296,\n\t13190,\n\t0,\n\t30663,\n\t0,\n\t0,\n\t18536,\n\t12228,\n\t0,\n\t6788,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30890,\n\t21796,\n\t0,\n\t0,\n\t526,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20965,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2161,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24038,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13544,\n\t7398,\n\t0,\n\t0,\n\t32522,\n\t9605,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3208,\n\t7590,\n\t0,\n\t0,\n\t0,\n\t43846,\n\t0,\n\t0,\n\t0,\n\t38663,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39014,\n\t4142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6373,\n\t0,\n\t0,\n\t13676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30374,\n\t21288,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22791,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9452,\n\t9990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4841,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18820,\n\t152,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13260,\n\t3334,\n\t0,\n\t0,\n\t24234,\n\t8422,\n\t0,\n\t17957,\n\t0,\n\t0,\n\t0,\n\t10244,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1201,\n\t26151,\n\t0,\n\t31173,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64838,\n\t4203,\n\t7525,\n\t521,\n\t0,\n\t18888,\n\t37031,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7082,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4490,\n\t12487,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36615,\n\t0,\n\t0,\n\t0,\n\t14854,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6539,\n\t13029,\n\t9704,\n\t38983,\n\t0,\n\t0,\n\t0,\n\t0,\n\t168,\n\t10405,\n\t0,\n\t0,\n\t0,\n\t0,\n\t394,\n\t25607,\n\t0,\n\t57063,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16141,\n\t19878,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29446,\n\t0,\n\t12036,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6982,\n\t18572,\n\t0,\n\t24584,\n\t14535,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16,\n\t0,\n\t21642,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5254,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1622,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3853,\n\t9126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7241,\n\t10982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t950,\n\t0,\n\t0,\n\t57990,\n\t0,\n\t0,\n\t277,\n\t0,\n\t0,\n\t0,\n\t694,\n\t36007,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42470,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18409,\n\t51142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28646,\n\t0,\n\t0,\n\t0,\n\t30693,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56295,\n\t5544,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8518,\n\t8366,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45670,\n\t0,\n\t0,\n\t9608,\n\t33062,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18694,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1672,\n\t23493,\n\t0,\n\t0,\n\t6955,\n\t7655,\n\t0,\n\t36134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23432,\n\t647,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13382,\n\t0,\n\t0,\n\t0,\n\t19621,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20228,\n\t0,\n\t0,\n\t2728,\n\t31495,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29096,\n\t22213,\n\t235,\n\t35495,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5348,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8968,\n\t1989,\n\t0,\n\t0,\n\t1066,\n\t0,\n\t0,\n\t11492,\n\t5965,\n\t31367,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18727,\n\t0,\n\t0,\n\t0,\n\t6757,\n\t0,\n\t0,\n\t10765,\n\t4646,\n\t0,\n\t36166,\n\t0,\n\t27943,\n\t0,\n\t0,\n\t26888,\n\t8420,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29316,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4975,\n\t0,\n\t0,\n\t0,\n\t14762,\n\t3111,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43399,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18980,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44550,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4051,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37734,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5188,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24486,\n\t0,\n\t5989,\n\t0,\n\t41159,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20326,\n\t0,\n\t0,\n\t747,\n\t6884,\n\t0,\n\t0,\n\t0,\n\t41798,\n\t0,\n\t0,\n\t3117,\n\t22919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21032,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4302,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21068,\n\t34630,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64071,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26667,\n\t7943,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t52934,\n\t0,\n\t0,\n\t17002,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20294,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27301,\n\t18347,\n\t7974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16874,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45414,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t648,\n\t1575,\n\t0,\n\t0,\n\t0,\n\t31749,\n\t0,\n\t0,\n\t0,\n\t23301,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15912,\n\t50535,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1993,\n\t8582,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38438,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15850,\n\t6183,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3402,\n\t0,\n\t0,\n\t27494,\n\t0,\n\t0,\n\t749,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26025,\n\t29606,\n\t0,\n\t0,\n\t7144,\n\t19622,\n\t30504,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21316,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21444,\n\t0,\n\t0,\n\t1289,\n\t6919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8299,\n\t0,\n\t0,\n\t0,\n\t14090,\n\t35655,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2377,\n\t15206,\n\t0,\n\t0,\n\t6028,\n\t4452,\n\t0,\n\t25508,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50310,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1269,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51014,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9286,\n\t0,\n\t7429,\n\t0,\n\t0,\n\t28393,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16680,\n\t452,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23718,\n\t0,\n\t0,\n\t0,\n\t31750,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3568,\n\t0,\n\t0,\n\t13604,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25255,\n\t0,\n\t0,\n\t0,\n\t50982,\n\t0,\n\t56582,\n\t0,\n\t0,\n\t7467,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30181,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30564,\n\t7208,\n\t7845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62182,\n\t0,\n\t0,\n\t0,\n\t41094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22695,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17736,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50054,\n\t0,\n\t0,\n\t0,\n\t14180,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23332,\n\t0,\n\t0,\n\t0,\n\t11140,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24262,\n\t27145,\n\t9540,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26537,\n\t45510,\n\t6062,\n\t3879,\n\t0,\n\t0,\n\t20233,\n\t25991,\n\t0,\n\t0,\n\t17803,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13962,\n\t5508,\n\t16971,\n\t27013,\n\t7437,\n\t31494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4714,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17189,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27492,\n\t0,\n\t0,\n\t26953,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41319,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47430,\n\t19596,\n\t12549,\n\t0,\n\t0,\n\t0,\n\t8390,\n\t1006,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24100,\n\t17577,\n\t4,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22277,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26692,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29477,\n\t0,\n\t0,\n\t0,\n\t21573,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9864,\n\t14214,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25771,\n\t5766,\n\t0,\n\t0,\n\t8909,\n\t8679,\n\t0,\n\t0,\n\t6861,\n\t16166,\n\t0,\n\t38887,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12392,\n\t8678,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t52646,\n\t1354,\n\t2950,\n\t0,\n\t14692,\n\t0,\n\t0,\n\t10572,\n\t49830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3626,\n\t582,\n\t0,\n\t0,\n\t0,\n\t55750,\n\t0,\n\t0,\n\t0,\n\t30885,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5830,\n\t0,\n\t0,\n\t2090,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10503,\n\t0,\n\t0,\n\t18825,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t57158,\n\t0,\n\t0,\n\t30792,\n\t63526,\n\t0,\n\t0,\n\t0,\n\t9863,\n\t16267,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18824,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19653,\n\t25388,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36358,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25480,\n\t23015,\n\t0,\n\t0,\n\t10440,\n\t6725,\n\t0,\n\t0,\n\t0,\n\t22436,\n\t24265,\n\t15109,\n\t0,\n\t0,\n\t0,\n\t62311,\n\t8906,\n\t34534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15913,\n\t1319,\n\t0,\n\t0,\n\t20296,\n\t1477,\n\t30760,\n\t0,\n\t25928,\n\t16772,\n\t0,\n\t0,\n\t1069,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17029,\n\t0,\n\t31909,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41638,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41542,\n\t0,\n\t21478,\n\t0,\n\t0,\n\t0,\n\t9796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22187,\n\t58343,\n\t0,\n\t0,\n\t0,\n\t24295,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t61831,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2833,\n\t5829,\n\t0,\n\t0,\n\t0,\n\t62855,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13577,\n\t27431,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21480,\n\t10501,\n\t0,\n\t16932,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22918,\n\t0,\n\t48294,\n\t2574,\n\t2150,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1897,\n\t4518,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25064,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10990,\n\t13767,\n\t25705,\n\t37863,\n\t21672,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43430,\n\t1712,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18886,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10535,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15012,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14734,\n\t0,\n\t0,\n\t55782,\n\t0,\n\t0,\n\t30824,\n\t10886,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51302,\n\t0,\n\t0,\n\t8012,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20680,\n\t6981,\n\t0,\n\t57415,\n\t11,\n\t0,\n\t0,\n\t18277,\n\t0,\n\t14564,\n\t0,\n\t0,\n\t0,\n\t32390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19113,\n\t5158,\n\t0,\n\t11172,\n\t0,\n\t16774,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10315,\n\t13830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10410,\n\t7141,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18116,\n\t0,\n\t0,\n\t0,\n\t44615,\n\t15403,\n\t13958,\n\t0,\n\t1540,\n\t14632,\n\t19525,\n\t24201,\n\t19781,\n\t0,\n\t0,\n\t0,\n\t24165,\n\t0,\n\t38951,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17416,\n\t15749,\n\t3438,\n\t13255,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32228,\n\t0,\n\t0,\n\t0,\n\t0,\n\t176,\n\t0,\n\t0,\n\t50566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21540,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5284,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25897,\n\t28326,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15945,\n\t0,\n\t0,\n\t0,\n\t9804,\n\t293,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13988,\n\t23082,\n\t4677,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5670,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6405,\n\t0,\n\t30692,\n\t0,\n\t0,\n\t0,\n\t61702,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45926,\n\t0,\n\t15398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4554,\n\t2692,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32485,\n\t0,\n\t0,\n\t0,\n\t10084,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24297,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22790,\n\t0,\n\t0,\n\t0,\n\t55110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7112,\n\t0,\n\t31530,\n\t45255,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40743,\n\t17226,\n\t22599,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3695,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56999,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13799,\n\t3114,\n\t21287,\n\t1353,\n\t7591,\n\t0,\n\t0,\n\t0,\n\t8455,\n\t0,\n\t0,\n\t6824,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14569,\n\t0,\n\t0,\n\t0,\n\t29000,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19979,\n\t0,\n\t18376,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11332,\n\t0,\n\t0,\n\t0,\n\t49863,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2191,\n\t7527,\n\t23148,\n\t58022,\n\t0,\n\t0,\n\t0,\n\t30631,\n\t0,\n\t26565,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t754,\n\t0,\n\t0,\n\t15877,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17510,\n\t7657,\n\t2821,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41927,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2569,\n\t34439,\n\t0,\n\t0,\n\t3790,\n\t0,\n\t0,\n\t0,\n\t15339,\n\t8775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15908,\n\t0,\n\t0,\n\t21419,\n\t8359,\n\t0,\n\t0,\n\t0,\n\t0,\n\t424,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25318,\n\t8008,\n\t20551,\n\t0,\n\t0,\n\t0,\n\t45735,\n\t30058,\n\t30372,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26180,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31432,\n\t10567,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17450,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30310,\n\t0,\n\t38022,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28932,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22180,\n\t12075,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22247,\n\t0,\n\t0,\n\t22826,\n\t12359,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4105,\n\t50407,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13581,\n\t28583,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28936,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17673,\n\t10310,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t905,\n\t57862,\n\t1580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58630,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13479,\n\t0,\n\t0,\n\t14153,\n\t13286,\n\t0,\n\t0,\n\t9259,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6606,\n\t3524,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6567,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t631,\n\t49255,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42886,\n\t0,\n\t38215,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55046,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10213,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3604,\n\t37767,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62087,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23528,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28715,\n\t4229,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1226,\n\t26820,\n\t0,\n\t0,\n\t0,\n\t12133,\n\t6984,\n\t261,\n\t21130,\n\t32548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3565,\n\t12390,\n\t20713,\n\t28071,\n\t0,\n\t0,\n\t1706,\n\t25287,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14670,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30534,\n\t0,\n\t0,\n\t0,\n\t12615,\n\t0,\n\t43750,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28228,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1224,\n\t3975,\n\t10954,\n\t6375,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23180,\n\t20100,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25736,\n\t8519,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6663,\n\t0,\n\t2534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23720,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19398,\n\t0,\n\t47814,\n\t26281,\n\t49702,\n\t0,\n\t0,\n\t4332,\n\t12965,\n\t0,\n\t0,\n\t5704,\n\t3206,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15396,\n\t0,\n\t0,\n\t0,\n\t44102,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25317,\n\t1064,\n\t39271,\n\t27433,\n\t0,\n\t14952,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2763,\n\t4100,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18792,\n\t0,\n\t0,\n\t0,\n\t22154,\n\t32583,\n\t0,\n\t6244,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49478,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21894,\n\t0,\n\t0,\n\t11048,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11685,\n\t0,\n\t53862,\n\t0,\n\t0,\n\t15114,\n\t0,\n\t13870,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t919,\n\t0,\n\t0,\n\t0,\n\t31916,\n\t0,\n\t22570,\n\t101,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7333,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3272,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27718,\n\t32712,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1782,\n\t0,\n\t3688,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29862,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55302,\n\t850,\n\t15492,\n\t0,\n\t0,\n\t0,\n\t5927,\n\t19786,\n\t13350,\n\t0,\n\t25702,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20260,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15335,\n\t8394,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t843,\n\t2245,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6959,\n\t0,\n\t20488,\n\t1638,\n\t0,\n\t0,\n\t11533,\n\t50759,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20871,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24519,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9544,\n\t23591,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20969,\n\t7109,\n\t29001,\n\t0,\n\t0,\n\t32422,\n\t31720,\n\t64294,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16106,\n\t0,\n\t0,\n\t0,\n\t6930,\n\t4933,\n\t0,\n\t0,\n\t0,\n\t22917,\n\t0,\n\t27015,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19880,\n\t8070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23945,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3310,\n\t0,\n\t87,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18439,\n\t0,\n\t0,\n\t0,\n\t20742,\n\t0,\n\t0,\n\t0,\n\t10597,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20236,\n\t0,\n\t0,\n\t0,\n\t16584,\n\t3429,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27241,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16132,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t244,\n\t28261,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29509,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2921,\n\t31781,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6408,\n\t4196,\n\t344,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11689,\n\t45863,\n\t0,\n\t0,\n\t0,\n\t0,\n\t906,\n\t3301,\n\t0,\n\t0,\n\t25544,\n\t32421,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1260,\n\t61607,\n\t0,\n\t27302,\n\t0,\n\t0,\n\t8682,\n\t16614,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10830,\n\t0,\n\t0,\n\t9604,\n\t15049,\n\t13413,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26761,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t61990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12580,\n\t0,\n\t0,\n\t11432,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22507,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12389,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2408,\n\t22661,\n\t14507,\n\t43239,\n\t0,\n\t9700,\n\t0,\n\t0,\n\t24714,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34086,\n\t0,\n\t0,\n\t22955,\n\t7238,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28485,\n\t13806,\n\t20038,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22602,\n\t0,\n\t0,\n\t0,\n\t1645,\n\t22340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26502,\n\t0,\n\t0,\n\t554,\n\t0,\n\t0,\n\t0,\n\t0,\n\t61735,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2694,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t883,\n\t27879,\n\t15948,\n\t0,\n\t3242,\n\t57382,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13930,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30922,\n\t0,\n\t4137,\n\t52615,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31911,\n\t16072,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26340,\n\t0,\n\t61671,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3145,\n\t56199,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t280,\n\t0,\n\t5131,\n\t33479,\n\t0,\n\t15751,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4136,\n\t1446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11304,\n\t17863,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25125,\n\t0,\n\t0,\n\t0,\n\t36646,\n\t6057,\n\t0,\n\t0,\n\t0,\n\t855,\n\t11301,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64774,\n\t0,\n\t0,\n\t0,\n\t19397,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1040,\n\t27367,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64358,\n\t0,\n\t0,\n\t178,\n\t132,\n\t0,\n\t0,\n\t14763,\n\t24455,\n\t0,\n\t0,\n\t0,\n\t46374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46246,\n\t0,\n\t0,\n\t0,\n\t37382,\n\t0,\n\t0,\n\t0,\n\t7462,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8166,\n\t0,\n\t0,\n\t6921,\n\t0,\n\t0,\n\t0,\n\t9163,\n\t0,\n\t0,\n\t0,\n\t119,\n\t0,\n\t0,\n\t0,\n\t23146,\n\t17156,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9127,\n\t0,\n\t0,\n\t0,\n\t17927,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22084,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39879,\n\t0,\n\t0,\n\t2035,\n\t0,\n\t1067,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16652,\n\t59591,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20171,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17733,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32037,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14277,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42022,\n\t0,\n\t0,\n\t26793,\n\t20358,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8907,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27780,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32330,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39399,\n\t0,\n\t9732,\n\t0,\n\t16199,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t854,\n\t0,\n\t2984,\n\t45063,\n\t25418,\n\t26980,\n\t22539,\n\t0,\n\t9133,\n\t3653,\n\t15528,\n\t28743,\n\t4649,\n\t0,\n\t616,\n\t65127,\n\t0,\n\t0,\n\t0,\n\t61863,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23880,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31848,\n\t62854,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49606,\n\t0,\n\t27974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32580,\n\t0,\n\t0,\n\t0,\n\t26052,\n\t4043,\n\t0,\n\t0,\n\t40454,\n\t0,\n\t0,\n\t26056,\n\t30565,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29288,\n\t1797,\n\t0,\n\t0,\n\t3220,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20427,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23621,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24261,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35591,\n\t0,\n\t0,\n\t6862,\n\t0,\n\t0,\n\t0,\n\t4265,\n\t0,\n\t6285,\n\t5383,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36870,\n\t0,\n\t39847,\n\t0,\n\t0,\n\t17224,\n\t5414,\n\t27882,\n\t58118,\n\t0,\n\t0,\n\t13224,\n\t4262,\n\t0,\n\t0,\n\t0,\n\t31302,\n\t0,\n\t0,\n\t1388,\n\t2982,\n\t11881,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16837,\n\t809,\n\t0,\n\t24140,\n\t10724,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5835,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1256,\n\t19237,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5796,\n\t11848,\n\t0,\n\t0,\n\t52870,\n\t11464,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5645,\n\t9158,\n\t0,\n\t25223,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39142,\n\t24968,\n\t8135,\n\t32104,\n\t28678,\n\t0,\n\t0,\n\t0,\n\t46311,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23820,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4050,\n\t0,\n\t1323,\n\t25220,\n\t0,\n\t0,\n\t0,\n\t20133,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9381,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13444,\n\t1198,\n\t60806,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17356,\n\t50247,\n\t30632,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11944,\n\t999,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4010,\n\t10404,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10346,\n\t0,\n\t0,\n\t49510,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6351,\n\t60966,\n\t20137,\n\t487,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t655,\n\t2406,\n\t17387,\n\t43303,\n\t0,\n\t0,\n\t0,\n\t17063,\n\t0,\n\t0,\n\t213,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17221,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10820,\n\t0,\n\t0,\n\t0,\n\t0,\n\t369,\n\t6,\n\t0,\n\t0,\n\t9098,\n\t21093,\n\t0,\n\t31653,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27143,\n\t0,\n\t0,\n\t16234,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6020,\n\t31723,\n\t28293,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1936,\n\t30695,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t52902,\n\t0,\n\t0,\n\t29512,\n\t10791,\n\t0,\n\t20420,\n\t0,\n\t0,\n\t16010,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5324,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13383,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24328,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40870,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24648,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7786,\n\t2852,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44678,\n\t0,\n\t17925,\n\t0,\n\t0,\n\t105,\n\t53062,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18762,\n\t0,\n\t0,\n\t40679,\n\t0,\n\t0,\n\t0,\n\t16165,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62310,\n\t1322,\n\t14247,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1832,\n\t6052,\n\t0,\n\t0,\n\t11882,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17668,\n\t0,\n\t28262,\n\t0,\n\t29542,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28007,\n\t0,\n\t0,\n\t0,\n\t57223,\n\t1585,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21162,\n\t0,\n\t0,\n\t62247,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25414,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36326,\n\t0,\n\t0,\n\t0,\n\t23845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2693,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13125,\n\t0,\n\t31236,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22502,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5994,\n\t10309,\n\t0,\n\t0,\n\t0,\n\t7269,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17929,\n\t0,\n\t1011,\n\t44647,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20586,\n\t5350,\n\t0,\n\t0,\n\t0,\n\t45702,\n\t0,\n\t13189,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35782,\n\t17992,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8203,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56678,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38087,\n\t4233,\n\t0,\n\t2127,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10148,\n\t0,\n\t0,\n\t0,\n\t2021,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47206,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9220,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19465,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t39206,\n\t0,\n\t38055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22054,\n\t3850,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55,\n\t0,\n\t10542,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7239,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t59367,\n\t0,\n\t0,\n\t14761,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43079,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2726,\n\t0,\n\t0,\n\t9582,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t37478,\n\t0,\n\t0,\n\t0,\n\t31364,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20393,\n\t8933,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9380,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16905,\n\t549,\n\t0,\n\t0,\n\t0,\n\t0,\n\t182,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1558,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19242,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24933,\n\t0,\n\t6276,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42310,\n\t23595,\n\t24068,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13191,\n\t6158,\n\t2567,\n\t0,\n\t0,\n\t268,\n\t47047,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27940,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8200,\n\t1222,\n\t31562,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2922,\n\t8231,\n\t8904,\n\t29157,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23976,\n\t4836,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31658,\n\t0,\n\t0,\n\t31685,\n\t0,\n\t0,\n\t2889,\n\t6213,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13605,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24772,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20684,\n\t26468,\n\t24075,\n\t0,\n\t0,\n\t0,\n\t21193,\n\t0,\n\t715,\n\t679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3050,\n\t7654,\n\t0,\n\t0,\n\t0,\n\t13798,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15,\n\t27973,\n\t0,\n\t0,\n\t8491,\n\t2086,\n\t0,\n\t0,\n\t0,\n\t43206,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t60391,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25892,\n\t0,\n\t22276,\n\t0,\n\t34374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20165,\n\t0,\n\t0,\n\t25672,\n\t0,\n\t0,\n\t0,\n\t1811,\n\t24839,\n\t0,\n\t31044,\n\t0,\n\t0,\n\t25513,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12810,\n\t0,\n\t0,\n\t62438,\n\t0,\n\t0,\n\t1325,\n\t0,\n\t364,\n\t3782,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8042,\n\t19687,\n\t0,\n\t0,\n\t0,\n\t33415,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7205,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3341,\n\t1543,\n\t6698,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29766,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41158,\n\t0,\n\t24294,\n\t0,\n\t3844,\n\t12329,\n\t0,\n\t0,\n\t0,\n\t13738,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26245,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6378,\n\t0,\n\t343,\n\t4838,\n\t0,\n\t0,\n\t0,\n\t24358,\n\t11688,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1489,\n\t34759,\n\t0,\n\t0,\n\t0,\n\t0,\n\t363,\n\t51974,\n\t1878,\n\t11013,\n\t0,\n\t0,\n\t32265,\n\t59782,\n\t0,\n\t0,\n\t0,\n\t28421,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22756,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14089,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29257,\n\t61222,\n\t0,\n\t30661,\n\t0,\n\t28327,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27108,\n\t8843,\n\t0,\n\t9673,\n\t2084,\n\t0,\n\t0,\n\t0,\n\t16327,\n\t0,\n\t48455,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4876,\n\t9316,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9035,\n\t18852,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4164,\n\t0,\n\t0,\n\t14827,\n\t1349,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11909,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21765,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31272,\n\t63910,\n\t0,\n\t0,\n\t0,\n\t25924,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44487,\n\t0,\n\t0,\n\t0,\n\t20612,\n\t0,\n\t0,\n\t27754,\n\t31428,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17287,\n\t0,\n\t3943,\n\t0,\n\t0,\n\t0,\n\t63302,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25256,\n\t19942,\n\t0,\n\t55142,\n\t0,\n\t39046,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15367,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28422,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9576,\n\t63847,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25226,\n\t5734,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13801,\n\t4997,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43942,\n\t1270,\n\t2566,\n\t6284,\n\t0,\n\t0,\n\t16230,\n\t0,\n\t0,\n\t0,\n\t20678,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38855,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29643,\n\t0,\n\t0,\n\t0,\n\t41,\n\t3655,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14276,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15686,\n\t0,\n\t0,\n\t0,\n\t15718,\n\t0,\n\t50694,\n\t0,\n\t0,\n\t16232,\n\t8007,\n\t0,\n\t0,\n\t0,\n\t5060,\n\t329,\n\t11591,\n\t51,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13065,\n\t7302,\n\t27530,\n\t15366,\n\t0,\n\t24934,\n\t0,\n\t0,\n\t0,\n\t17828,\n\t0,\n\t0,\n\t4552,\n\t6311,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47686,\n\t368,\n\t12103,\n\t10122,\n\t33830,\n\t0,\n\t0,\n\t599,\n\t18534,\n\t9579,\n\t49479,\n\t0,\n\t5668,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13157,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23274,\n\t14055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48903,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1871,\n\t0,\n\t15434,\n\t0,\n\t0,\n\t0,\n\t16174,\n\t62470,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7749,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30501,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25675,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9285,\n\t0,\n\t0,\n\t25323,\n\t1669,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32902,\n\t0,\n\t0,\n\t4426,\n\t0,\n\t0,\n\t0,\n\t0,\n\t57959,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29898,\n\t58278,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11880,\n\t1220,\n\t0,\n\t0,\n\t0,\n\t41479,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23141,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40167,\n\t9484,\n\t3493,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8649,\n\t18918,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34886,\n\t2601,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12518,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7976,\n\t10311,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45190,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16842,\n\t20229,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7528,\n\t4614,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30086,\n\t0,\n\t0,\n\t0,\n\t1671,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9896,\n\t6277,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t61191,\n\t0,\n\t41287,\n\t0,\n\t21956,\n\t0,\n\t0,\n\t20010,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13195,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1381,\n\t0,\n\t0,\n\t0,\n\t0,\n\t365,\n\t30951,\n\t24268,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7044,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27944,\n\t359,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28487,\n\t0,\n\t0,\n\t77,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t56775,\n\t12586,\n\t8421,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26185,\n\t14599,\n\t0,\n\t0,\n\t8040,\n\t5702,\n\t12585,\n\t3109,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21574,\n\t5388,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5106,\n\t52454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1907,\n\t29895,\n\t0,\n\t6116,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11081,\n\t5285,\n\t0,\n\t28069,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4104,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41511,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5262,\n\t0,\n\t0,\n\t0,\n\t503,\n\t4231,\n\t7720,\n\t34343,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7304,\n\t10374,\n\t1718,\n\t0,\n\t0,\n\t29127,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23497,\n\t22567,\n\t6952,\n\t2340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20360,\n\t12453,\n\t0,\n\t45094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28582,\n\t0,\n\t0,\n\t0,\n\t0,\n\t680,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23084,\n\t0,\n\t0,\n\t0,\n\t30696,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45862,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5580,\n\t6053,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t712,\n\t70,\n\t0,\n\t0,\n\t26091,\n\t11335,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13612,\n\t0,\n\t13160,\n\t1926,\n\t435,\n\t51559,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47302,\n\t19083,\n\t0,\n\t0,\n\t12742,\n\t0,\n\t1607,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6155,\n\t37095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18948,\n\t7146,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7848,\n\t2055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8910,\n\t0,\n\t19336,\n\t0,\n\t0,\n\t48070,\n\t8490,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9932,\n\t56423,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4133,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16173,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32011,\n\t0,\n\t0,\n\t30918,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26854,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20389,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18889,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8965,\n\t0,\n\t0,\n\t0,\n\t44358,\n\t0,\n\t0,\n\t0,\n\t8997,\n\t0,\n\t34055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29350,\n\t0,\n\t0,\n\t501,\n\t17767,\n\t0,\n\t0,\n\t32457,\n\t60262,\n\t0,\n\t0,\n\t0,\n\t30886,\n\t0,\n\t0,\n\t3757,\n\t1063,\n\t0,\n\t0,\n\t0,\n\t25637,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28068,\n\t0,\n\t26374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11684,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24779,\n\t229,\n\t0,\n\t13766,\n\t0,\n\t0,\n\t7402,\n\t11525,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26313,\n\t23686,\n\t0,\n\t0,\n\t29736,\n\t47527,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27268,\n\t0,\n\t0,\n\t0,\n\t0,\n\t553,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32038,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1135,\n\t26596,\n\t0,\n\t0,\n\t12300,\n\t14631,\n\t0,\n\t0,\n\t0,\n\t43238,\n\t0,\n\t871,\n\t0,\n\t0,\n\t31496,\n\t0,\n\t8457,\n\t17669,\n\t0,\n\t12836,\n\t0,\n\t0,\n\t0,\n\t22726,\n\t0,\n\t38758,\n\t0,\n\t0,\n\t375,\n\t6564,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t170,\n\t18535,\n\t0,\n\t22948,\n\t0,\n\t0,\n\t32360,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25764,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15652,\n\t0,\n\t0,\n\t0,\n\t32774,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28551,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15145,\n\t0,\n\t0,\n\t0,\n\t21100,\n\t27654,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4874,\n\t26215,\n\t0,\n\t1639,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4169,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7336,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21572,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24644,\n\t1675,\n\t2533,\n\t0,\n\t0,\n\t0,\n\t53318,\n\t0,\n\t13094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6246,\n\t0,\n\t22020,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28453,\n\t5576,\n\t5124,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27910,\n\t0,\n\t29382,\n\t18216,\n\t8583,\n\t0,\n\t0,\n\t0,\n\t39174,\n\t0,\n\t43558,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11973,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23397,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6091,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6474,\n\t16197,\n\t14217,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26728,\n\t0,\n\t567,\n\t48839,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15271,\n\t0,\n\t0,\n\t31818,\n\t43974,\n\t2450,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11368,\n\t9191,\n\t0,\n\t44454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14568,\n\t12293,\n\t0,\n\t0,\n\t0,\n\t8453,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32040,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t902,\n\t0,\n\t0,\n\t0,\n\t27236,\n\t5612,\n\t11495,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9194,\n\t23684,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27430,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26217,\n\t44870,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5581,\n\t7173,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t52775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20968,\n\t18340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4107,\n\t11239,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29381,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48806,\n\t0,\n\t0,\n\t0,\n\t32292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10884,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27562,\n\t0,\n\t5643,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3089,\n\t31525,\n\t0,\n\t19684,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t61415,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7908,\n\t0,\n\t0,\n\t0,\n\t0,\n\t872,\n\t743,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1229,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32484,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34822,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7274,\n\t0,\n\t0,\n\t0,\n\t15304,\n\t11526,\n\t0,\n\t0,\n\t0,\n\t3047,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22376,\n\t0,\n\t0,\n\t0,\n\t846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35815,\n\t0,\n\t0,\n\t0,\n\t23652,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23721,\n\t2148,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14856,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1358,\n\t0,\n\t3082,\n\t0,\n\t0,\n\t0,\n\t848,\n\t10949,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6504,\n\t0,\n\t0,\n\t14372,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8201,\n\t9958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24266,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18604,\n\t2053,\n\t0,\n\t33511,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9222,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44006,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41895,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12044,\n\t390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4935,\n\t0,\n\t48646,\n\t0,\n\t56102,\n\t3052,\n\t16070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8612,\n\t9320,\n\t38311,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t500,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42918,\n\t0,\n\t32550,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27434,\n\t57926,\n\t17064,\n\t0,\n\t0,\n\t46502,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26760,\n\t6756,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t624,\n\t0,\n\t5000,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32293,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26246,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23,\n\t7301,\n\t0,\n\t0,\n\t0,\n\t36199,\n\t0,\n\t40838,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27178,\n\t57350,\n\t0,\n\t0,\n\t12457,\n\t9317,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16810,\n\t0,\n\t0,\n\t0,\n\t14510,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21319,\n\t0,\n\t0,\n\t0,\n\t13508,\n\t17,\n\t11365,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5291,\n\t0,\n\t8329,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27685,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t52006,\n\t0,\n\t0,\n\t0,\n\t7493,\n\t0,\n\t44263,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9800,\n\t0,\n\t0,\n\t0,\n\t25676,\n\t61478,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5773,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41991,\n\t26057,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22629,\n\t0,\n\t0,\n\t0,\n\t47783,\n\t362,\n\t1959,\n\t23468,\n\t0,\n\t0,\n\t0,\n\t10921,\n\t0,\n\t0,\n\t0,\n\t3150,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32456,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4559,\n\t3270,\n\t0,\n\t0,\n\t983,\n\t0,\n\t0,\n\t26343,\n\t0,\n\t33446,\n\t0,\n\t0,\n\t0,\n\t61767,\n\t0,\n\t48390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2790,\n\t0,\n\t39782,\n\t7849,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1544,\n\t2183,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4040,\n\t2471,\n\t20009,\n\t30020,\n\t0,\n\t0,\n\t11242,\n\t0,\n\t0,\n\t0,\n\t5578,\n\t53382,\n\t0,\n\t22631,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12901,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t215,\n\t0,\n\t0,\n\t9030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t265,\n\t1412,\n\t0,\n\t0,\n\t11626,\n\t3687,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17449,\n\t24359,\n\t0,\n\t0,\n\t26729,\n\t40134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29768,\n\t61958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20908,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11016,\n\t0,\n\t0,\n\t47462,\n\t21547,\n\t5926,\n\t0,\n\t0,\n\t14728,\n\t2983,\n\t24104,\n\t15301,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32645,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3300,\n\t0,\n\t0,\n\t0,\n\t15972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6634,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3076,\n\t0,\n\t30983,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t106,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7177,\n\t18022,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49894,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27560,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30278,\n\t10668,\n\t23877,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29124,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20870,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t44582,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6442,\n\t0,\n\t16330,\n\t22951,\n\t0,\n\t0,\n\t16904,\n\t0,\n\t0,\n\t0,\n\t0,\n\t644,\n\t0,\n\t0,\n\t0,\n\t40038,\n\t0,\n\t0,\n\t0,\n\t37222,\n\t0,\n\t0,\n\t0,\n\t9830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13733,\n\t0,\n\t0,\n\t0,\n\t28196,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19876,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23558,\n\t0,\n\t11142,\n\t0,\n\t27781,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13864,\n\t0,\n\t0,\n\t0,\n\t24682,\n\t47847,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6890,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3981,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1772,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3603,\n\t1991,\n\t0,\n\t27396,\n\t8652,\n\t0,\n\t18312,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30054,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11270,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20708,\n\t0,\n\t0,\n\t0,\n\t0,\n\t338,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7050,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14862,\n\t0,\n\t0,\n\t3492,\n\t0,\n\t0,\n\t0,\n\t55878,\n\t0,\n\t0,\n\t0,\n\t16486,\n\t0,\n\t0,\n\t0,\n\t18119,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2154,\n\t1284,\n\t0,\n\t0,\n\t23113,\n\t31751,\n\t0,\n\t0,\n\t29547,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36647,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18183,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7913,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20644,\n\t0,\n\t0,\n\t10508,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43622,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40966,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t246,\n\t901,\n\t11529,\n\t5191,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24454,\n\t0,\n\t0,\n\t26665,\n\t27590,\n\t0,\n\t27397,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23562,\n\t2949,\n\t0,\n\t0,\n\t30344,\n\t62214,\n\t0,\n\t47334,\n\t2026,\n\t18885,\n\t0,\n\t0,\n\t0,\n\t48678,\n\t0,\n\t0,\n\t0,\n\t22694,\n\t0,\n\t0,\n\t1972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15465,\n\t0,\n\t0,\n\t0,\n\t0,\n\t38822,\n\t0,\n\t0,\n\t0,\n\t0,\n\t945,\n\t32708,\n\t0,\n\t54791,\n\t0,\n\t14918,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23396,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5486,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7722,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30856,\n\t64166,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35206,\n\t0,\n\t0,\n\t0,\n\t30535,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62663,\n\t0,\n\t0,\n\t1096,\n\t17574,\n\t31820,\n\t0,\n\t0,\n\t14375,\n\t4402,\n\t27207,\n\t0,\n\t0,\n\t21448,\n\t4676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16585,\n\t5094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4845,\n\t0,\n\t0,\n\t32870,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31466,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31783,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4522,\n\t16039,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7464,\n\t4773,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18636,\n\t0,\n\t0,\n\t0,\n\t25640,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2244,\n\t0,\n\t0,\n\t11818,\n\t0,\n\t1168,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6540,\n\t23079,\n\t13770,\n\t7719,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58150,\n\t528,\n\t34502,\n\t32682,\n\t0,\n\t0,\n\t12997,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2214,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58567,\n\t0,\n\t0,\n\t0,\n\t26375,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26437,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26121,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32005,\n\t22952,\n\t59047,\n\t0,\n\t13543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16328,\n\t0,\n\t0,\n\t33542,\n\t0,\n\t0,\n\t0,\n\t19782,\n\t0,\n\t0,\n\t0,\n\t16644,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31688,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10276,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36327,\n\t0,\n\t0,\n\t29480,\n\t0,\n\t0,\n\t0,\n\t777,\n\t12709,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27398,\n\t0,\n\t0,\n\t0,\n\t4455,\n\t9037,\n\t31397,\n\t0,\n\t9221,\n\t0,\n\t0,\n\t0,\n\t60487,\n\t20840,\n\t1796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8364,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19752,\n\t44902,\n\t0,\n\t38566,\n\t0,\n\t0,\n\t18027,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10662,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11812,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19910,\n\t0,\n\t0,\n\t0,\n\t45030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19978,\n\t5127,\n\t0,\n\t11620,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19817,\n\t0,\n\t5579,\n\t9350,\n\t0,\n\t0,\n\t21002,\n\t19718,\n\t0,\n\t0,\n\t0,\n\t21926,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20711,\n\t0,\n\t0,\n\t0,\n\t20197,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40550,\n\t0,\n\t0,\n\t0,\n\t57510,\n\t0,\n\t0,\n\t0,\n\t53895,\n\t0,\n\t0,\n\t15017,\n\t0,\n\t17000,\n\t39367,\n\t2347,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3273,\n\t17862,\n\t3498,\n\t2085,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19048,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11978,\n\t58631,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t523,\n\t0,\n\t12969,\n\t198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28197,\n\t0,\n\t47846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4549,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t687,\n\t14917,\n\t748,\n\t8229,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2476,\n\t12935,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22792,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27528,\n\t59142,\n\t0,\n\t0,\n\t20876,\n\t20134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t440,\n\t12068,\n\t0,\n\t58951,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48038,\n\t0,\n\t0,\n\t0,\n\t60999,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15716,\n\t7498,\n\t5476,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20202,\n\t37959,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29801,\n\t0,\n\t5451,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50790,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24485,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13573,\n\t0,\n\t0,\n\t22856,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21927,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9130,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13732,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2282,\n\t583,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3726,\n\t26503,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9258,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21604,\n\t0,\n\t0,\n\t0,\n\t45574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20710,\n\t0,\n\t0,\n\t0,\n\t42694,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1163,\n\t6694,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10948,\n\t0,\n\t0,\n\t0,\n\t29700,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58823,\n\t3796,\n\t27399,\n\t20939,\n\t10180,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19,\n\t29287,\n\t28649,\n\t14534,\n\t0,\n\t0,\n\t16428,\n\t45607,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25322,\n\t0,\n\t4908,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25476,\n\t29097,\n\t14246,\n\t11053,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18502,\n\t0,\n\t0,\n\t0,\n\t44390,\n\t0,\n\t0,\n\t0,\n\t17765,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24520,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17319,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28166,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48198,\n\t0,\n\t0,\n\t31467,\n\t0,\n\t24585,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18692,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23596,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7236,\n\t968,\n\t13637,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3763,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14791,\n\t0,\n\t0,\n\t0,\n\t12324,\n\t0,\n\t12741,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11108,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4009,\n\t40295,\n\t20616,\n\t4357,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15015,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t43751,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23013,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45542,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17480,\n\t20647,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8876,\n\t0,\n\t0,\n\t40806,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14502,\n\t17160,\n\t17764,\n\t0,\n\t0,\n\t31594,\n\t35431,\n\t0,\n\t0,\n\t2890,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27524,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8228,\n\t0,\n\t56583,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t34278,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2662,\n\t0,\n\t26724,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22281,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3049,\n\t54983,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t837,\n\t0,\n\t17604,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28838,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26312,\n\t0,\n\t0,\n\t3910,\n\t0,\n\t0,\n\t0,\n\t25830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8391,\n\t0,\n\t19845,\n\t19240,\n\t1092,\n\t0,\n\t0,\n\t5449,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17188,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10629,\n\t0,\n\t0,\n\t6671,\n\t61094,\n\t5832,\n\t8358,\n\t0,\n\t0,\n\t0,\n\t55078,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29860,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51494,\n\t0,\n\t28647,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25989,\n\t0,\n\t0,\n\t30153,\n\t61318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24903,\n\t0,\n\t0,\n\t0,\n\t4388,\n\t0,\n\t42054,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t53158,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50918,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26251,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5929,\n\t2853,\n\t0,\n\t37126,\n\t7372,\n\t197,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2027,\n\t934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55686,\n\t0,\n\t0,\n\t5672,\n\t5447,\n\t0,\n\t62758,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2923,\n\t0,\n\t556,\n\t1415,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8645,\n\t0,\n\t9477,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t48742,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24235,\n\t228,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16970,\n\t18823,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25158,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18567,\n\t20072,\n\t2823,\n\t14313,\n\t1830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27048,\n\t23526,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t997,\n\t492,\n\t0,\n\t14730,\n\t16677,\n\t396,\n\t13574,\n\t0,\n\t0,\n\t0,\n\t41671,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19045,\n\t0,\n\t0,\n\t0,\n\t421,\n\t17545,\n\t3110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t47111,\n\t14475,\n\t56551,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3697,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49382,\n\t0,\n\t35559,\n\t0,\n\t0,\n\t0,\n\t0,\n\t40,\n\t0,\n\t11496,\n\t15621,\n\t0,\n\t8550,\n\t0,\n\t0,\n\t0,\n\t63462,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t36966,\n\t0,\n\t50406,\n\t0,\n\t46022,\n\t1001,\n\t0,\n\t0,\n\t12069,\n\t3249,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15241,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t64743,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t58759,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1136,\n\t26981,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17732,\n\t0,\n\t0,\n\t0,\n\t17157,\n\t20011,\n\t6629,\n\t0,\n\t43879,\n\t0,\n\t0,\n\t0,\n\t13572,\n\t25128,\n\t10759,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t875,\n\t24007,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7628,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12268,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19300,\n\t23210,\n\t356,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15236,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49670,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21764,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13931,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t45799,\n\t0,\n\t0,\n\t436,\n\t3589,\n\t0,\n\t0,\n\t11402,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t62822,\n\t0,\n\t0,\n\t0,\n\t39814,\n\t588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27750,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1609,\n\t22660,\n\t2346,\n\t18951,\n\t0,\n\t16068,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5162,\n\t11110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15048,\n\t1060,\n\t0,\n\t7879,\n\t18280,\n\t326,\n\t0,\n\t14886,\n\t19656,\n\t0,\n\t7594,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t781,\n\t581,\n\t0,\n\t16198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1078,\n\t9892,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4489,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33798,\n\t0,\n\t0,\n\t0,\n\t54534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t33158,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t42086,\n\t13834,\n\t2757,\n\t8456,\n\t16773,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3434,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3946,\n\t29668,\n\t0,\n\t0,\n\t30634,\n\t36775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24901,\n\t0,\n\t16069,\n\t6280,\n\t0,\n\t0,\n\t0,\n\t0,\n\t41990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27365,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1450,\n\t44807,\n\t0,\n\t0,\n\t0,\n\t32100,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t35110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17448,\n\t19591,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1739,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5511,\n\t0,\n\t0,\n\t0,\n\t32934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18180,\n\t0,\n\t0,\n\t0,\n\t23428,\n\t19754,\n\t0,\n\t0,\n\t31174,\n\t3021,\n\t31655,\n\t23464,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t57255,\n\t0,\n\t0,\n\t21292,\n\t64487,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25802,\n\t9189,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t49254,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5837,\n\t50023,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15495,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t51942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28104,\n\t58662,\n\t0,\n\t50214,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2988,\n\t0,\n\t22888,\n\t31812,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2020,\n\t0,\n\t18916,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23973,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17516,\n\t11717,\n\t0,\n\t0,\n\t0,\n\t55911,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2855,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46822,\n\t0,\n\t24710,\n\t28586,\n\t0,\n\t0,\n\t0,\n\t1556,\n\t0,\n\t0,\n\t30117,\n\t0,\n\t0,\n\t22090,\n\t57127,\n\t3403,\n\t14087,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1041,\n\t0,\n\t10633,\n\t6916,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27269,\n\t0,\n\t0,\n\t13322,\n\t18055,\n\t0,\n\t29380,\n\t0,\n\t56454,\n\t0,\n\t0,\n\t120,\n\t0,\n\t0,\n\t8773,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16040,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27242,\n\t23781,\n\t0,\n\t1572,\n\t0,\n\t28134,\n\t0,\n\t0,\n\t1512,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27684,\n\t0,\n\t38470,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1513,\n\t8709,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28521,\n\t61159,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24356,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13028,\n\t0,\n\t5863,\n\t0,\n\t0,\n\t15693,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1131,\n\t23398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26212,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18404,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1457,\n\t26183,\n\t0,\n\t0,\n\t2475,\n\t7110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27180,\n\t60166,\n\t0,\n\t0,\n\t0,\n\t20262,\n\t0,\n\t41862,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2762,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26148,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28229,\n\t0,\n\t0,\n\t0,\n\t29254,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27690,\n\t0,\n\t0,\n\t13636,\n\t12776,\n\t1862,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17225,\n\t3271,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28039,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4457,\n\t18117,\n\t0,\n\t2023,\n\t402,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t104,\n\t3654,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18440,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29861,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22150,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24074,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12004,\n\t0,\n\t32358,\n\t0,\n\t0,\n\t3081,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4749,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10792,\n\t1799,\n\t21322,\n\t0,\n\t7880,\n\t12613,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13993,\n\t0,\n\t0,\n\t0,\n\t16202,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32102,\n\t0,\n\t37223,\n\t0,\n\t10500,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t32008,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23816,\n\t3236,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23237,\n\t0,\n\t0,\n\t5642,\n\t0,\n\t4684,\n\t294,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26852,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7148,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7890,\n\t61798,\n\t939,\n\t0,\n\t0,\n\t56679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27078,\n\t202,\n\t5029,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28005,\n\t0,\n\t0,\n\t15273,\n\t24741,\n\t5676,\n\t20452,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5069,\n\t27942,\n\t0,\n\t21092,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12517,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21384,\n\t28260,\n\t0,\n\t2502,\n\t20108,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t46726,\n\t0,\n\t30790,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14725,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1099,\n\t6372,\n\t0,\n\t0,\n\t0,\n\t12422,\n\t15182,\n\t0,\n\t8683,\n\t0,\n\t10665,\n\t19462,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1590,\n\t0,\n\t31628,\n\t0,\n\t22632,\n\t19750,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t50662,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9131,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11015,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16490,\n\t54695,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12937,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16004,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2181,\n\t6923,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15624,\n\t11302,\n\t0,\n\t0,\n\t5673,\n\t7559,\n\t0,\n\t0,\n\t14668,\n\t15684,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24204,\n\t48134,\n\t0,\n\t24230,\n\t0,\n\t55527,\n\t0,\n\t0,\n\t3464,\n\t19141,\n\t0,\n\t0,\n\t0,\n\t0,\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/encode.go",
    "content": "package brotli\n\nimport (\n\t\"io\"\n\t\"math\"\n)\n\n/* Copyright 2016 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/** Minimal value for ::BROTLI_PARAM_LGWIN parameter. */\nconst minWindowBits = 10\n\n/**\n * Maximal value for ::BROTLI_PARAM_LGWIN parameter.\n *\n * @note equal to @c BROTLI_MAX_DISTANCE_BITS constant.\n */\nconst maxWindowBits = 24\n\n/**\n * Maximal value for ::BROTLI_PARAM_LGWIN parameter\n * in \"Large Window Brotli\" (32-bit).\n */\nconst largeMaxWindowBits = 30\n\n/** Minimal value for ::BROTLI_PARAM_LGBLOCK parameter. */\nconst minInputBlockBits = 16\n\n/** Maximal value for ::BROTLI_PARAM_LGBLOCK parameter. */\nconst maxInputBlockBits = 24\n\n/** Minimal value for ::BROTLI_PARAM_QUALITY parameter. */\nconst minQuality = 0\n\n/** Maximal value for ::BROTLI_PARAM_QUALITY parameter. */\nconst maxQuality = 11\n\n/** Options for ::BROTLI_PARAM_MODE parameter. */\nconst (\n\tmodeGeneric = 0\n\tmodeText    = 1\n\tmodeFont    = 2\n)\n\n/** Default value for ::BROTLI_PARAM_QUALITY parameter. */\nconst defaultQuality = 11\n\n/** Default value for ::BROTLI_PARAM_LGWIN parameter. */\nconst defaultWindow = 22\n\n/** Default value for ::BROTLI_PARAM_MODE parameter. */\nconst defaultMode = modeGeneric\n\n/** Operations that can be performed by streaming encoder. */\nconst (\n\toperationProcess      = 0\n\toperationFlush        = 1\n\toperationFinish       = 2\n\toperationEmitMetadata = 3\n)\n\nconst (\n\tstreamProcessing     = 0\n\tstreamFlushRequested = 1\n\tstreamFinished       = 2\n\tstreamMetadataHead   = 3\n\tstreamMetadataBody   = 4\n)\n\ntype Writer struct {\n\tdst     io.Writer\n\toptions WriterOptions\n\terr     error\n\n\tparams              encoderParams\n\thasher_             hasherHandle\n\tinput_pos_          uint64\n\tringbuffer_         ringBuffer\n\tcommands            []command\n\tnum_literals_       uint\n\tlast_insert_len_    uint\n\tlast_flush_pos_     uint64\n\tlast_processed_pos_ uint64\n\tdist_cache_         [numDistanceShortCodes]int\n\tsaved_dist_cache_   [4]int\n\tprev_byte_          byte\n\tprev_byte2_         byte\n\tbw                  bitWriter\n\tsmall_table_        [1 << 10]int\n\tlarge_table_        []int\n\tlarge_table_size_   uint\n\tcmd_depths_         [128]byte\n\tcmd_bits_           [128]uint16\n\tcmd_code_           [512]byte\n\tcmd_code_numbits_   uint\n\tcommand_buf_        []uint32\n\tliteral_buf_        []byte\n\ttiny_buf_           struct {\n\t\tu64 [2]uint64\n\t\tu8  [16]byte\n\t}\n\tremaining_metadata_bytes_ uint32\n\tstream_state_             int\n\tis_last_block_emitted_    bool\n\tis_initialized_           bool\n}\n\nfunc inputBlockSize(s *Writer) uint {\n\treturn uint(1) << uint(s.params.lgblock)\n}\n\nfunc unprocessedInputSize(s *Writer) uint64 {\n\treturn s.input_pos_ - s.last_processed_pos_\n}\n\nfunc remainingInputBlockSize(s *Writer) uint {\n\tvar delta uint64 = unprocessedInputSize(s)\n\tvar block_size uint = inputBlockSize(s)\n\tif delta >= uint64(block_size) {\n\t\treturn 0\n\t}\n\treturn block_size - uint(delta)\n}\n\n/* Wraps 64-bit input position to 32-bit ring-buffer position preserving\n   \"not-a-first-lap\" feature. */\nfunc wrapPosition(position uint64) uint32 {\n\tvar result uint32 = uint32(position)\n\tvar gb uint64 = position >> 30\n\tif gb > 2 {\n\t\t/* Wrap every 2GiB; The first 3GB are continuous. */\n\t\tresult = result&((1<<30)-1) | (uint32((gb-1)&1)+1)<<30\n\t}\n\n\treturn result\n}\n\nfunc hashTableSize(max_table_size uint, input_size uint) uint {\n\tvar htsize uint = 256\n\tfor htsize < max_table_size && htsize < input_size {\n\t\thtsize <<= 1\n\t}\n\n\treturn htsize\n}\n\nfunc getHashTable(s *Writer, quality int, input_size uint, table_size *uint) []int {\n\tvar max_table_size uint = maxHashTableSize(quality)\n\tvar htsize uint = hashTableSize(max_table_size, input_size)\n\t/* Use smaller hash table when input.size() is smaller, since we\n\t   fill the table, incurring O(hash table size) overhead for\n\t   compression, and if the input is short, we won't need that\n\t   many hash table entries anyway. */\n\n\tvar table []int\n\tassert(max_table_size >= 256)\n\tif quality == fastOnePassCompressionQuality {\n\t\t/* Only odd shifts are supported by fast-one-pass. */\n\t\tif htsize&0xAAAAA == 0 {\n\t\t\thtsize <<= 1\n\t\t}\n\t}\n\n\tif htsize <= uint(len(s.small_table_)) {\n\t\ttable = s.small_table_[:]\n\t} else {\n\t\tif htsize > s.large_table_size_ {\n\t\t\ts.large_table_size_ = htsize\n\t\t\ts.large_table_ = nil\n\t\t\ts.large_table_ = make([]int, htsize)\n\t\t}\n\n\t\ttable = s.large_table_\n\t}\n\n\t*table_size = htsize\n\tfor i := 0; i < int(htsize); i++ {\n\t\ttable[i] = 0\n\t}\n\treturn table\n}\n\nfunc encodeWindowBits(lgwin int, large_window bool, bw *bitWriter) {\n\tif large_window {\n\t\tbw.writeBits(14, uint64((lgwin&0x3F)<<8|0x11))\n\t} else {\n\t\tif lgwin == 16 {\n\t\t\tbw.writeBits(1, 0)\n\t\t} else if lgwin == 17 {\n\t\t\tbw.writeBits(7, 1)\n\t\t} else if lgwin > 17 {\n\t\t\tbw.writeBits(4, uint64((lgwin-17)<<1|0x01))\n\t\t} else {\n\t\t\tbw.writeBits(7, uint64((lgwin-8)<<4|0x01))\n\t\t}\n\t}\n}\n\n/* Decide about the context map based on the ability of the prediction\n   ability of the previous byte UTF8-prefix on the next byte. The\n   prediction ability is calculated as Shannon entropy. Here we need\n   Shannon entropy instead of 'BitsEntropy' since the prefix will be\n   encoded with the remaining 6 bits of the following byte, and\n   BitsEntropy will assume that symbol to be stored alone using Huffman\n   coding. */\n\nvar kStaticContextMapContinuation = [64]uint32{\n\t1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n}\nvar kStaticContextMapSimpleUTF8 = [64]uint32{\n\t0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n}\n\nfunc chooseContextMap(quality int, bigram_histo []uint32, num_literal_contexts *uint, literal_context_map *[]uint32) {\n\tvar monogram_histo = [3]uint32{0}\n\tvar two_prefix_histo = [6]uint32{0}\n\tvar total uint\n\tvar i uint\n\tvar dummy uint\n\tvar entropy [4]float64\n\tfor i = 0; i < 9; i++ {\n\t\tmonogram_histo[i%3] += bigram_histo[i]\n\t\ttwo_prefix_histo[i%6] += bigram_histo[i]\n\t}\n\n\tentropy[1] = shannonEntropy(monogram_histo[:], 3, &dummy)\n\tentropy[2] = (shannonEntropy(two_prefix_histo[:], 3, &dummy) + shannonEntropy(two_prefix_histo[3:], 3, &dummy))\n\tentropy[3] = 0\n\tfor i = 0; i < 3; i++ {\n\t\tentropy[3] += shannonEntropy(bigram_histo[3*i:], 3, &dummy)\n\t}\n\n\ttotal = uint(monogram_histo[0] + monogram_histo[1] + monogram_histo[2])\n\tassert(total != 0)\n\tentropy[0] = 1.0 / float64(total)\n\tentropy[1] *= entropy[0]\n\tentropy[2] *= entropy[0]\n\tentropy[3] *= entropy[0]\n\n\tif quality < minQualityForHqContextModeling {\n\t\t/* 3 context models is a bit slower, don't use it at lower qualities. */\n\t\tentropy[3] = entropy[1] * 10\n\t}\n\n\t/* If expected savings by symbol are less than 0.2 bits, skip the\n\t   context modeling -- in exchange for faster decoding speed. */\n\tif entropy[1]-entropy[2] < 0.2 && entropy[1]-entropy[3] < 0.2 {\n\t\t*num_literal_contexts = 1\n\t} else if entropy[2]-entropy[3] < 0.02 {\n\t\t*num_literal_contexts = 2\n\t\t*literal_context_map = kStaticContextMapSimpleUTF8[:]\n\t} else {\n\t\t*num_literal_contexts = 3\n\t\t*literal_context_map = kStaticContextMapContinuation[:]\n\t}\n}\n\n/* Decide if we want to use a more complex static context map containing 13\n   context values, based on the entropy reduction of histograms over the\n   first 5 bits of literals. */\n\nvar kStaticContextMapComplexUTF8 = [64]uint32{\n\t11, 11, 12, 12, /* 0 special */\n\t0, 0, 0, 0, /* 4 lf */\n\t1, 1, 9, 9, /* 8 space */\n\t2, 2, 2, 2, /* !, first after space/lf and after something else. */\n\t1, 1, 1, 1, /* \" */\n\t8, 3, 3, 3, /* % */\n\t1, 1, 1, 1, /* ({[ */\n\t2, 2, 2, 2, /* }]) */\n\t8, 4, 4, 4, /* :; */\n\t8, 7, 4, 4, /* . */\n\t8, 0, 0, 0, /* > */\n\t3, 3, 3, 3, /* [0..9] */\n\t5, 5, 10, 5, /* [A-Z] */\n\t5, 5, 10, 5,\n\t6, 6, 6, 6, /* [a-z] */\n\t6, 6, 6, 6,\n}\n\nfunc shouldUseComplexStaticContextMap(input []byte, start_pos uint, length uint, mask uint, quality int, size_hint uint, num_literal_contexts *uint, literal_context_map *[]uint32) bool {\n\t/* Try the more complex static context map only for long data. */\n\tif size_hint < 1<<20 {\n\t\treturn false\n\t} else {\n\t\tvar end_pos uint = start_pos + length\n\t\tvar combined_histo = [32]uint32{0}\n\t\tvar context_histo = [13][32]uint32{[32]uint32{0}}\n\t\tvar total uint32 = 0\n\t\tvar entropy [3]float64\n\t\tvar dummy uint\n\t\tvar i uint\n\t\tvar utf8_lut contextLUT = getContextLUT(contextUTF8)\n\t\t/* To make entropy calculations faster and to fit on the stack, we collect\n\t\t   histograms over the 5 most significant bits of literals. One histogram\n\t\t   without context and 13 additional histograms for each context value. */\n\t\tfor ; start_pos+64 <= end_pos; start_pos += 4096 {\n\t\t\tvar stride_end_pos uint = start_pos + 64\n\t\t\tvar prev2 byte = input[start_pos&mask]\n\t\t\tvar prev1 byte = input[(start_pos+1)&mask]\n\t\t\tvar pos uint\n\n\t\t\t/* To make the analysis of the data faster we only examine 64 byte long\n\t\t\t   strides at every 4kB intervals. */\n\t\t\tfor pos = start_pos + 2; pos < stride_end_pos; pos++ {\n\t\t\t\tvar literal byte = input[pos&mask]\n\t\t\t\tvar context byte = byte(kStaticContextMapComplexUTF8[getContext(prev1, prev2, utf8_lut)])\n\t\t\t\ttotal++\n\t\t\t\tcombined_histo[literal>>3]++\n\t\t\t\tcontext_histo[context][literal>>3]++\n\t\t\t\tprev2 = prev1\n\t\t\t\tprev1 = literal\n\t\t\t}\n\t\t}\n\n\t\tentropy[1] = shannonEntropy(combined_histo[:], 32, &dummy)\n\t\tentropy[2] = 0\n\t\tfor i = 0; i < 13; i++ {\n\t\t\tentropy[2] += shannonEntropy(context_histo[i][0:], 32, &dummy)\n\t\t}\n\n\t\tentropy[0] = 1.0 / float64(total)\n\t\tentropy[1] *= entropy[0]\n\t\tentropy[2] *= entropy[0]\n\n\t\t/* The triggering heuristics below were tuned by compressing the individual\n\t\t   files of the silesia corpus. If we skip this kind of context modeling\n\t\t   for not very well compressible input (i.e. entropy using context modeling\n\t\t   is 60% of maximal entropy) or if expected savings by symbol are less\n\t\t   than 0.2 bits, then in every case when it triggers, the final compression\n\t\t   ratio is improved. Note however that this heuristics might be too strict\n\t\t   for some cases and could be tuned further. */\n\t\tif entropy[2] > 3.0 || entropy[1]-entropy[2] < 0.2 {\n\t\t\treturn false\n\t\t} else {\n\t\t\t*num_literal_contexts = 13\n\t\t\t*literal_context_map = kStaticContextMapComplexUTF8[:]\n\t\t\treturn true\n\t\t}\n\t}\n}\n\nfunc decideOverLiteralContextModeling(input []byte, start_pos uint, length uint, mask uint, quality int, size_hint uint, num_literal_contexts *uint, literal_context_map *[]uint32) {\n\tif quality < minQualityForContextModeling || length < 64 {\n\t\treturn\n\t} else if shouldUseComplexStaticContextMap(input, start_pos, length, mask, quality, size_hint, num_literal_contexts, literal_context_map) {\n\t} else /* Context map was already set, nothing else to do. */\n\t{\n\t\tvar end_pos uint = start_pos + length\n\t\t/* Gather bi-gram data of the UTF8 byte prefixes. To make the analysis of\n\t\t   UTF8 data faster we only examine 64 byte long strides at every 4kB\n\t\t   intervals. */\n\n\t\tvar bigram_prefix_histo = [9]uint32{0}\n\t\tfor ; start_pos+64 <= end_pos; start_pos += 4096 {\n\t\t\tvar lut = [4]int{0, 0, 1, 2}\n\t\t\tvar stride_end_pos uint = start_pos + 64\n\t\t\tvar prev int = lut[input[start_pos&mask]>>6] * 3\n\t\t\tvar pos uint\n\t\t\tfor pos = start_pos + 1; pos < stride_end_pos; pos++ {\n\t\t\t\tvar literal byte = input[pos&mask]\n\t\t\t\tbigram_prefix_histo[prev+lut[literal>>6]]++\n\t\t\t\tprev = lut[literal>>6] * 3\n\t\t\t}\n\t\t}\n\n\t\tchooseContextMap(quality, bigram_prefix_histo[0:], num_literal_contexts, literal_context_map)\n\t}\n}\n\nfunc shouldCompress_encode(data []byte, mask uint, last_flush_pos uint64, bytes uint, num_literals uint, num_commands uint) bool {\n\t/* TODO: find more precise minimal block overhead. */\n\tif bytes <= 2 {\n\t\treturn false\n\t}\n\tif num_commands < (bytes>>8)+2 {\n\t\tif float64(num_literals) > 0.99*float64(bytes) {\n\t\t\tvar literal_histo = [256]uint32{0}\n\t\t\tconst kSampleRate uint32 = 13\n\t\t\tconst kMinEntropy float64 = 7.92\n\t\t\tvar bit_cost_threshold float64 = float64(bytes) * kMinEntropy / float64(kSampleRate)\n\t\t\tvar t uint = uint((uint32(bytes) + kSampleRate - 1) / kSampleRate)\n\t\t\tvar pos uint32 = uint32(last_flush_pos)\n\t\t\tvar i uint\n\t\t\tfor i = 0; i < t; i++ {\n\t\t\t\tliteral_histo[data[pos&uint32(mask)]]++\n\t\t\t\tpos += kSampleRate\n\t\t\t}\n\n\t\t\tif bitsEntropy(literal_histo[:], 256) > bit_cost_threshold {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\n\treturn true\n}\n\n/* Chooses the literal context mode for a metablock */\nfunc chooseContextMode(params *encoderParams, data []byte, pos uint, mask uint, length uint) int {\n\t/* We only do the computation for the option of something else than\n\t   CONTEXT_UTF8 for the highest qualities */\n\tif params.quality >= minQualityForHqBlockSplitting && !isMostlyUTF8(data, pos, mask, length, kMinUTF8Ratio) {\n\t\treturn contextSigned\n\t}\n\n\treturn contextUTF8\n}\n\nfunc writeMetaBlockInternal(data []byte, mask uint, last_flush_pos uint64, bytes uint, is_last bool, literal_context_mode int, params *encoderParams, prev_byte byte, prev_byte2 byte, num_literals uint, commands []command, saved_dist_cache []int, dist_cache []int, bw *bitWriter) {\n\tvar wrapped_last_flush_pos uint32 = wrapPosition(last_flush_pos)\n\tvar literal_context_lut contextLUT = getContextLUT(literal_context_mode)\n\tvar block_params encoderParams = *params\n\n\tif bytes == 0 {\n\t\t/* Write the ISLAST and ISEMPTY bits. */\n\t\tbw.writeBits(2, 3)\n\t\tbw.jumpToByteBoundary()\n\t\treturn\n\t}\n\n\tif !shouldCompress_encode(data, mask, last_flush_pos, bytes, num_literals, uint(len(commands))) {\n\t\t/* Restore the distance cache, as its last update by\n\t\t   CreateBackwardReferences is now unused. */\n\t\tcopy(dist_cache, saved_dist_cache[:4])\n\n\t\tstoreUncompressedMetaBlock(is_last, data, uint(wrapped_last_flush_pos), mask, bytes, bw)\n\t\treturn\n\t}\n\n\tsavedPos := bw.getPos()\n\tif params.quality <= maxQualityForStaticEntropyCodes {\n\t\tstoreMetaBlockFast(data, uint(wrapped_last_flush_pos), bytes, mask, is_last, params, commands, bw)\n\t} else if params.quality < minQualityForBlockSplit {\n\t\tstoreMetaBlockTrivial(data, uint(wrapped_last_flush_pos), bytes, mask, is_last, params, commands, bw)\n\t} else {\n\t\tmb := getMetaBlockSplit()\n\t\tif params.quality < minQualityForHqBlockSplitting {\n\t\t\tvar num_literal_contexts uint = 1\n\t\t\tvar literal_context_map []uint32 = nil\n\t\t\tif !params.disable_literal_context_modeling {\n\t\t\t\tdecideOverLiteralContextModeling(data, uint(wrapped_last_flush_pos), bytes, mask, params.quality, params.size_hint, &num_literal_contexts, &literal_context_map)\n\t\t\t}\n\n\t\t\tbuildMetaBlockGreedy(data, uint(wrapped_last_flush_pos), mask, prev_byte, prev_byte2, literal_context_lut, num_literal_contexts, literal_context_map, commands, mb)\n\t\t} else {\n\t\t\tbuildMetaBlock(data, uint(wrapped_last_flush_pos), mask, &block_params, prev_byte, prev_byte2, commands, literal_context_mode, mb)\n\t\t}\n\n\t\tif params.quality >= minQualityForOptimizeHistograms {\n\t\t\t/* The number of distance symbols effectively used for distance\n\t\t\t   histograms. It might be less than distance alphabet size\n\t\t\t   for \"Large Window Brotli\" (32-bit). */\n\t\t\tvar num_effective_dist_codes uint32 = block_params.dist.alphabet_size\n\t\t\tif num_effective_dist_codes > numHistogramDistanceSymbols {\n\t\t\t\tnum_effective_dist_codes = numHistogramDistanceSymbols\n\t\t\t}\n\n\t\t\toptimizeHistograms(num_effective_dist_codes, mb)\n\t\t}\n\n\t\tstoreMetaBlock(data, uint(wrapped_last_flush_pos), bytes, mask, prev_byte, prev_byte2, is_last, &block_params, literal_context_mode, commands, mb, bw)\n\t\tfreeMetaBlockSplit(mb)\n\t}\n\n\tif bytes+4 < bw.getPos()>>3 {\n\t\t/* Restore the distance cache and last byte. */\n\t\tcopy(dist_cache, saved_dist_cache[:4])\n\t\tbw.rewind(savedPos)\n\t\tstoreUncompressedMetaBlock(is_last, data, uint(wrapped_last_flush_pos), mask, bytes, bw)\n\t}\n}\n\nfunc chooseDistanceParams(params *encoderParams) {\n\tvar distance_postfix_bits uint32 = 0\n\tvar num_direct_distance_codes uint32 = 0\n\n\tif params.quality >= minQualityForNonzeroDistanceParams {\n\t\tvar ndirect_msb uint32\n\t\tif params.mode == modeFont {\n\t\t\tdistance_postfix_bits = 1\n\t\t\tnum_direct_distance_codes = 12\n\t\t} else {\n\t\t\tdistance_postfix_bits = params.dist.distance_postfix_bits\n\t\t\tnum_direct_distance_codes = params.dist.num_direct_distance_codes\n\t\t}\n\n\t\tndirect_msb = (num_direct_distance_codes >> distance_postfix_bits) & 0x0F\n\t\tif distance_postfix_bits > maxNpostfix || num_direct_distance_codes > maxNdirect || ndirect_msb<<distance_postfix_bits != num_direct_distance_codes {\n\t\t\tdistance_postfix_bits = 0\n\t\t\tnum_direct_distance_codes = 0\n\t\t}\n\t}\n\n\tinitDistanceParams(params, distance_postfix_bits, num_direct_distance_codes)\n}\n\nfunc ensureInitialized(s *Writer) bool {\n\tif s.is_initialized_ {\n\t\treturn true\n\t}\n\n\ts.bw.bits = 0\n\ts.bw.nbits = 0\n\ts.bw.dst = s.bw.dst[:0]\n\n\ts.remaining_metadata_bytes_ = math.MaxUint32\n\n\tsanitizeParams(&s.params)\n\ts.params.lgblock = computeLgBlock(&s.params)\n\tchooseDistanceParams(&s.params)\n\n\tringBufferSetup(&s.params, &s.ringbuffer_)\n\n\t/* Initialize last byte with stream header. */\n\t{\n\t\tvar lgwin int = int(s.params.lgwin)\n\t\tif s.params.quality == fastOnePassCompressionQuality || s.params.quality == fastTwoPassCompressionQuality {\n\t\t\tlgwin = brotli_max_int(lgwin, 18)\n\t\t}\n\n\t\tencodeWindowBits(lgwin, s.params.large_window, &s.bw)\n\t}\n\n\tif s.params.quality == fastOnePassCompressionQuality {\n\t\ts.cmd_depths_ = [128]byte{\n\t\t\t0, 4, 4, 5, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8,\n\t\t\t0, 0, 0, 4, 4, 4, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7,\n\t\t\t7, 7, 10, 10, 10, 10, 10, 10, 0, 4, 4, 5, 5, 5, 6, 6,\n\t\t\t7, 8, 8, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,\n\t\t\t5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t\t\t6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4,\n\t\t\t4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 7, 7, 7, 8, 10,\n\t\t\t12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,\n\t\t}\n\t\ts.cmd_bits_ = [128]uint16{\n\t\t\t0, 0, 8, 9, 3, 35, 7, 71,\n\t\t\t39, 103, 23, 47, 175, 111, 239, 31,\n\t\t\t0, 0, 0, 4, 12, 2, 10, 6,\n\t\t\t13, 29, 11, 43, 27, 59, 87, 55,\n\t\t\t15, 79, 319, 831, 191, 703, 447, 959,\n\t\t\t0, 14, 1, 25, 5, 21, 19, 51,\n\t\t\t119, 159, 95, 223, 479, 991, 63, 575,\n\t\t\t127, 639, 383, 895, 255, 767, 511, 1023,\n\t\t\t14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n\t\t\t27, 59, 7, 39, 23, 55, 30, 1, 17, 9, 25, 5, 0, 8, 4, 12,\n\t\t\t2, 10, 6, 21, 13, 29, 3, 19, 11, 15, 47, 31, 95, 63, 127, 255,\n\t\t\t767, 2815, 1791, 3839, 511, 2559, 1535, 3583, 1023, 3071, 2047, 4095,\n\t\t}\n\t\ts.cmd_code_ = [512]byte{\n\t\t\t0xff, 0x77, 0xd5, 0xbf, 0xe7, 0xde, 0xea, 0x9e, 0x51, 0x5d, 0xde, 0xc6,\n\t\t\t0x70, 0x57, 0xbc, 0x58, 0x58, 0x58, 0xd8, 0xd8, 0x58, 0xd5, 0xcb, 0x8c,\n\t\t\t0xea, 0xe0, 0xc3, 0x87, 0x1f, 0x83, 0xc1, 0x60, 0x1c, 0x67, 0xb2, 0xaa,\n\t\t\t0x06, 0x83, 0xc1, 0x60, 0x30, 0x18, 0xcc, 0xa1, 0xce, 0x88, 0x54, 0x94,\n\t\t\t0x46, 0xe1, 0xb0, 0xd0, 0x4e, 0xb2, 0xf7, 0x04, 0x00,\n\t\t}\n\t\ts.cmd_code_numbits_ = 448\n\t}\n\n\ts.is_initialized_ = true\n\treturn true\n}\n\nfunc encoderInitParams(params *encoderParams) {\n\tparams.mode = defaultMode\n\tparams.large_window = false\n\tparams.quality = defaultQuality\n\tparams.lgwin = defaultWindow\n\tparams.lgblock = 0\n\tparams.size_hint = 0\n\tparams.disable_literal_context_modeling = false\n\tinitEncoderDictionary(&params.dictionary)\n\tparams.dist.distance_postfix_bits = 0\n\tparams.dist.num_direct_distance_codes = 0\n\tparams.dist.alphabet_size = uint32(distanceAlphabetSize(0, 0, maxDistanceBits))\n\tparams.dist.max_distance = maxDistance\n}\n\nfunc encoderInitState(s *Writer) {\n\tencoderInitParams(&s.params)\n\ts.input_pos_ = 0\n\ts.commands = s.commands[:0]\n\ts.num_literals_ = 0\n\ts.last_insert_len_ = 0\n\ts.last_flush_pos_ = 0\n\ts.last_processed_pos_ = 0\n\ts.prev_byte_ = 0\n\ts.prev_byte2_ = 0\n\tif s.hasher_ != nil {\n\t\ts.hasher_.Common().is_prepared_ = false\n\t}\n\ts.cmd_code_numbits_ = 0\n\ts.stream_state_ = streamProcessing\n\ts.is_last_block_emitted_ = false\n\ts.is_initialized_ = false\n\n\tringBufferInit(&s.ringbuffer_)\n\n\t/* Initialize distance cache. */\n\ts.dist_cache_[0] = 4\n\n\ts.dist_cache_[1] = 11\n\ts.dist_cache_[2] = 15\n\ts.dist_cache_[3] = 16\n\n\t/* Save the state of the distance cache in case we need to restore it for\n\t   emitting an uncompressed block. */\n\tcopy(s.saved_dist_cache_[:], s.dist_cache_[:])\n}\n\n/*\n   Copies the given input data to the internal ring buffer of the compressor.\n   No processing of the data occurs at this time and this function can be\n   called multiple times before calling WriteBrotliData() to process the\n   accumulated input. At most input_block_size() bytes of input data can be\n   copied to the ring buffer, otherwise the next WriteBrotliData() will fail.\n*/\nfunc copyInputToRingBuffer(s *Writer, input_size uint, input_buffer []byte) {\n\tvar ringbuffer_ *ringBuffer = &s.ringbuffer_\n\tringBufferWrite(input_buffer, input_size, ringbuffer_)\n\ts.input_pos_ += uint64(input_size)\n\n\t/* TL;DR: If needed, initialize 7 more bytes in the ring buffer to make the\n\t   hashing not depend on uninitialized data. This makes compression\n\t   deterministic and it prevents uninitialized memory warnings in Valgrind.\n\t   Even without erasing, the output would be valid (but nondeterministic).\n\n\t   Background information: The compressor stores short (at most 8 bytes)\n\t   substrings of the input already read in a hash table, and detects\n\t   repetitions by looking up such substrings in the hash table. If it\n\t   can find a substring, it checks whether the substring is really there\n\t   in the ring buffer (or it's just a hash collision). Should the hash\n\t   table become corrupt, this check makes sure that the output is\n\t   still valid, albeit the compression ratio would be bad.\n\n\t   The compressor populates the hash table from the ring buffer as it's\n\t   reading new bytes from the input. However, at the last few indexes of\n\t   the ring buffer, there are not enough bytes to build full-length\n\t   substrings from. Since the hash table always contains full-length\n\t   substrings, we erase with dummy zeros here to make sure that those\n\t   substrings will contain zeros at the end instead of uninitialized\n\t   data.\n\n\t   Please note that erasing is not necessary (because the\n\t   memory region is already initialized since he ring buffer\n\t   has a `tail' that holds a copy of the beginning,) so we\n\t   skip erasing if we have already gone around at least once in\n\t   the ring buffer.\n\n\t   Only clear during the first round of ring-buffer writes. On\n\t   subsequent rounds data in the ring-buffer would be affected. */\n\tif ringbuffer_.pos_ <= ringbuffer_.mask_ {\n\t\t/* This is the first time when the ring buffer is being written.\n\t\t   We clear 7 bytes just after the bytes that have been copied from\n\t\t   the input buffer.\n\n\t\t   The ring-buffer has a \"tail\" that holds a copy of the beginning,\n\t\t   but only once the ring buffer has been fully written once, i.e.,\n\t\t   pos <= mask. For the first time, we need to write values\n\t\t   in this tail (where index may be larger than mask), so that\n\t\t   we have exactly defined behavior and don't read uninitialized\n\t\t   memory. Due to performance reasons, hashing reads data using a\n\t\t   LOAD64, which can go 7 bytes beyond the bytes written in the\n\t\t   ring-buffer. */\n\t\tfor i := 0; i < int(7); i++ {\n\t\t\tringbuffer_.buffer_[ringbuffer_.pos_:][i] = 0\n\t\t}\n\t}\n}\n\n/* Marks all input as processed.\n   Returns true if position wrapping occurs. */\nfunc updateLastProcessedPos(s *Writer) bool {\n\tvar wrapped_last_processed_pos uint32 = wrapPosition(s.last_processed_pos_)\n\tvar wrapped_input_pos uint32 = wrapPosition(s.input_pos_)\n\ts.last_processed_pos_ = s.input_pos_\n\treturn wrapped_input_pos < wrapped_last_processed_pos\n}\n\nfunc extendLastCommand(s *Writer, bytes *uint32, wrapped_last_processed_pos *uint32) {\n\tvar last_command *command = &s.commands[len(s.commands)-1]\n\tvar data []byte = s.ringbuffer_.buffer_\n\tvar mask uint32 = s.ringbuffer_.mask_\n\tvar max_backward_distance uint64 = ((uint64(1)) << s.params.lgwin) - windowGap\n\tvar last_copy_len uint64 = uint64(last_command.copy_len_) & 0x1FFFFFF\n\tvar last_processed_pos uint64 = s.last_processed_pos_ - last_copy_len\n\tvar max_distance uint64\n\tif last_processed_pos < max_backward_distance {\n\t\tmax_distance = last_processed_pos\n\t} else {\n\t\tmax_distance = max_backward_distance\n\t}\n\tvar cmd_dist uint64 = uint64(s.dist_cache_[0])\n\tvar distance_code uint32 = commandRestoreDistanceCode(last_command, &s.params.dist)\n\tif distance_code < numDistanceShortCodes || uint64(distance_code-(numDistanceShortCodes-1)) == cmd_dist {\n\t\tif cmd_dist <= max_distance {\n\t\t\tfor *bytes != 0 && data[*wrapped_last_processed_pos&mask] == data[(uint64(*wrapped_last_processed_pos)-cmd_dist)&uint64(mask)] {\n\t\t\t\tlast_command.copy_len_++\n\t\t\t\t(*bytes)--\n\t\t\t\t(*wrapped_last_processed_pos)++\n\t\t\t}\n\t\t}\n\n\t\t/* The copy length is at most the metablock size, and thus expressible. */\n\t\tgetLengthCode(uint(last_command.insert_len_), uint(int(last_command.copy_len_&0x1FFFFFF)+int(last_command.copy_len_>>25)), (last_command.dist_prefix_&0x3FF == 0), &last_command.cmd_prefix_)\n\t}\n}\n\n/*\n   Processes the accumulated input data and writes\n   the new output meta-block to s.dest, if one has been\n   created (otherwise the processed input data is buffered internally).\n   If |is_last| or |force_flush| is true, an output meta-block is\n   always created. However, until |is_last| is true encoder may retain up\n   to 7 bits of the last byte of output. To force encoder to dump the remaining\n   bits use WriteMetadata() to append an empty meta-data block.\n   Returns false if the size of the input data is larger than\n   input_block_size().\n*/\nfunc encodeData(s *Writer, is_last bool, force_flush bool) bool {\n\tvar delta uint64 = unprocessedInputSize(s)\n\tvar bytes uint32 = uint32(delta)\n\tvar wrapped_last_processed_pos uint32 = wrapPosition(s.last_processed_pos_)\n\tvar data []byte\n\tvar mask uint32\n\tvar literal_context_mode int\n\n\tdata = s.ringbuffer_.buffer_\n\tmask = s.ringbuffer_.mask_\n\n\t/* Adding more blocks after \"last\" block is forbidden. */\n\tif s.is_last_block_emitted_ {\n\t\treturn false\n\t}\n\tif is_last {\n\t\ts.is_last_block_emitted_ = true\n\t}\n\n\tif delta > uint64(inputBlockSize(s)) {\n\t\treturn false\n\t}\n\n\tif s.params.quality == fastTwoPassCompressionQuality {\n\t\tif s.command_buf_ == nil || cap(s.command_buf_) < int(kCompressFragmentTwoPassBlockSize) {\n\t\t\ts.command_buf_ = make([]uint32, kCompressFragmentTwoPassBlockSize)\n\t\t\ts.literal_buf_ = make([]byte, kCompressFragmentTwoPassBlockSize)\n\t\t} else {\n\t\t\ts.command_buf_ = s.command_buf_[:kCompressFragmentTwoPassBlockSize]\n\t\t\ts.literal_buf_ = s.literal_buf_[:kCompressFragmentTwoPassBlockSize]\n\t\t}\n\t}\n\n\tif s.params.quality == fastOnePassCompressionQuality || s.params.quality == fastTwoPassCompressionQuality {\n\t\tvar table_size uint\n\t\tvar table []int\n\n\t\tif delta == 0 && !is_last {\n\t\t\t/* We have no new input data and we don't have to finish the stream, so\n\t\t\t   nothing to do. */\n\t\t\treturn true\n\t\t}\n\n\t\ttable = getHashTable(s, s.params.quality, uint(bytes), &table_size)\n\t\tif s.params.quality == fastOnePassCompressionQuality {\n\t\t\tcompressFragmentFast(data[wrapped_last_processed_pos&mask:], uint(bytes), is_last, table, table_size, s.cmd_depths_[:], s.cmd_bits_[:], &s.cmd_code_numbits_, s.cmd_code_[:], &s.bw)\n\t\t} else {\n\t\t\tcompressFragmentTwoPass(data[wrapped_last_processed_pos&mask:], uint(bytes), is_last, s.command_buf_, s.literal_buf_, table, table_size, &s.bw)\n\t\t}\n\n\t\tupdateLastProcessedPos(s)\n\t\ts.writeOutput(s.bw.dst)\n\t\ts.bw.dst = s.bw.dst[:0]\n\t\treturn true\n\t}\n\t{\n\t\t/* Theoretical max number of commands is 1 per 2 bytes. */\n\t\tnewsize := len(s.commands) + int(bytes)/2 + 1\n\t\tif newsize > cap(s.commands) {\n\t\t\t/* Reserve a bit more memory to allow merging with a next block\n\t\t\t   without reallocation: that would impact speed. */\n\t\t\tnewsize += int(bytes/4) + 16\n\n\t\t\tnew_commands := make([]command, len(s.commands), newsize)\n\t\t\tif s.commands != nil {\n\t\t\t\tcopy(new_commands, s.commands)\n\t\t\t}\n\n\t\t\ts.commands = new_commands\n\t\t}\n\t}\n\n\tinitOrStitchToPreviousBlock(&s.hasher_, data, uint(mask), &s.params, uint(wrapped_last_processed_pos), uint(bytes), is_last)\n\n\tliteral_context_mode = chooseContextMode(&s.params, data, uint(wrapPosition(s.last_flush_pos_)), uint(mask), uint(s.input_pos_-s.last_flush_pos_))\n\n\tif len(s.commands) != 0 && s.last_insert_len_ == 0 {\n\t\textendLastCommand(s, &bytes, &wrapped_last_processed_pos)\n\t}\n\n\tif s.params.quality == zopflificationQuality {\n\t\tassert(s.params.hasher.type_ == 10)\n\t\tcreateZopfliBackwardReferences(uint(bytes), uint(wrapped_last_processed_pos), data, uint(mask), &s.params, s.hasher_.(*h10), s.dist_cache_[:], &s.last_insert_len_, &s.commands, &s.num_literals_)\n\t} else if s.params.quality == hqZopflificationQuality {\n\t\tassert(s.params.hasher.type_ == 10)\n\t\tcreateHqZopfliBackwardReferences(uint(bytes), uint(wrapped_last_processed_pos), data, uint(mask), &s.params, s.hasher_, s.dist_cache_[:], &s.last_insert_len_, &s.commands, &s.num_literals_)\n\t} else {\n\t\tcreateBackwardReferences(uint(bytes), uint(wrapped_last_processed_pos), data, uint(mask), &s.params, s.hasher_, s.dist_cache_[:], &s.last_insert_len_, &s.commands, &s.num_literals_)\n\t}\n\t{\n\t\tvar max_length uint = maxMetablockSize(&s.params)\n\t\tvar max_literals uint = max_length / 8\n\t\tmax_commands := int(max_length / 8)\n\t\tvar processed_bytes uint = uint(s.input_pos_ - s.last_flush_pos_)\n\t\tvar next_input_fits_metablock bool = (processed_bytes+inputBlockSize(s) <= max_length)\n\t\tvar should_flush bool = (s.params.quality < minQualityForBlockSplit && s.num_literals_+uint(len(s.commands)) >= maxNumDelayedSymbols)\n\t\t/* If maximal possible additional block doesn't fit metablock, flush now. */\n\t\t/* TODO: Postpone decision until next block arrives? */\n\n\t\t/* If block splitting is not used, then flush as soon as there is some\n\t\t   amount of commands / literals produced. */\n\t\tif !is_last && !force_flush && !should_flush && next_input_fits_metablock && s.num_literals_ < max_literals && len(s.commands) < max_commands {\n\t\t\t/* Merge with next input block. Everything will happen later. */\n\t\t\tif updateLastProcessedPos(s) {\n\t\t\t\thasherReset(s.hasher_)\n\t\t\t}\n\n\t\t\treturn true\n\t\t}\n\t}\n\n\t/* Create the last insert-only command. */\n\tif s.last_insert_len_ > 0 {\n\t\ts.commands = append(s.commands, makeInsertCommand(s.last_insert_len_))\n\t\ts.num_literals_ += s.last_insert_len_\n\t\ts.last_insert_len_ = 0\n\t}\n\n\tif !is_last && s.input_pos_ == s.last_flush_pos_ {\n\t\t/* We have no new input data and we don't have to finish the stream, so\n\t\t   nothing to do. */\n\t\treturn true\n\t}\n\n\tassert(s.input_pos_ >= s.last_flush_pos_)\n\tassert(s.input_pos_ > s.last_flush_pos_ || is_last)\n\tassert(s.input_pos_-s.last_flush_pos_ <= 1<<24)\n\t{\n\t\tvar metablock_size uint32 = uint32(s.input_pos_ - s.last_flush_pos_)\n\t\twriteMetaBlockInternal(data, uint(mask), s.last_flush_pos_, uint(metablock_size), is_last, literal_context_mode, &s.params, s.prev_byte_, s.prev_byte2_, s.num_literals_, s.commands, s.saved_dist_cache_[:], s.dist_cache_[:], &s.bw)\n\t\ts.last_flush_pos_ = s.input_pos_\n\t\tif updateLastProcessedPos(s) {\n\t\t\thasherReset(s.hasher_)\n\t\t}\n\n\t\tif s.last_flush_pos_ > 0 {\n\t\t\ts.prev_byte_ = data[(uint32(s.last_flush_pos_)-1)&mask]\n\t\t}\n\n\t\tif s.last_flush_pos_ > 1 {\n\t\t\ts.prev_byte2_ = data[uint32(s.last_flush_pos_-2)&mask]\n\t\t}\n\n\t\ts.commands = s.commands[:0]\n\t\ts.num_literals_ = 0\n\n\t\t/* Save the state of the distance cache in case we need to restore it for\n\t\t   emitting an uncompressed block. */\n\t\tcopy(s.saved_dist_cache_[:], s.dist_cache_[:])\n\n\t\ts.writeOutput(s.bw.dst)\n\t\ts.bw.dst = s.bw.dst[:0]\n\t\treturn true\n\t}\n}\n\n/* Dumps remaining output bits and metadata header to s.bw.\n   REQUIRED: |block_size| <= (1 << 24). */\nfunc writeMetadataHeader(s *Writer, block_size uint) {\n\tbw := &s.bw\n\n\tbw.writeBits(1, 0)\n\tbw.writeBits(2, 3)\n\tbw.writeBits(1, 0)\n\tif block_size == 0 {\n\t\tbw.writeBits(2, 0)\n\t} else {\n\t\tvar nbits uint32\n\t\tif block_size == 1 {\n\t\t\tnbits = 0\n\t\t} else {\n\t\t\tnbits = log2FloorNonZero(uint(uint32(block_size)-1)) + 1\n\t\t}\n\t\tvar nbytes uint32 = (nbits + 7) / 8\n\t\tbw.writeBits(2, uint64(nbytes))\n\t\tbw.writeBits(uint(8*nbytes), uint64(block_size)-1)\n\t}\n\n\tbw.jumpToByteBoundary()\n}\n\nfunc injectBytePaddingBlock(s *Writer) {\n\t/* is_last = 0, data_nibbles = 11, reserved = 0, meta_nibbles = 00 */\n\ts.bw.writeBits(6, 0x6)\n\ts.bw.jumpToByteBoundary()\n\ts.writeOutput(s.bw.dst)\n\ts.bw.dst = s.bw.dst[:0]\n}\n\nfunc checkFlushComplete(s *Writer) {\n\tif s.stream_state_ == streamFlushRequested && s.err == nil {\n\t\ts.stream_state_ = streamProcessing\n\t}\n}\n\nfunc encoderCompressStreamFast(s *Writer, op int, available_in *uint, next_in *[]byte) bool {\n\tvar block_size_limit uint = uint(1) << s.params.lgwin\n\tvar buf_size uint = brotli_min_size_t(kCompressFragmentTwoPassBlockSize, brotli_min_size_t(*available_in, block_size_limit))\n\tvar command_buf []uint32 = nil\n\tvar literal_buf []byte = nil\n\tif s.params.quality != fastOnePassCompressionQuality && s.params.quality != fastTwoPassCompressionQuality {\n\t\treturn false\n\t}\n\n\tif s.params.quality == fastTwoPassCompressionQuality {\n\t\tif s.command_buf_ == nil || cap(s.command_buf_) < int(buf_size) {\n\t\t\ts.command_buf_ = make([]uint32, buf_size)\n\t\t\ts.literal_buf_ = make([]byte, buf_size)\n\t\t} else {\n\t\t\ts.command_buf_ = s.command_buf_[:buf_size]\n\t\t\ts.literal_buf_ = s.literal_buf_[:buf_size]\n\t\t}\n\n\t\tcommand_buf = s.command_buf_\n\t\tliteral_buf = s.literal_buf_\n\t}\n\n\tfor {\n\t\tif s.stream_state_ == streamFlushRequested && s.bw.nbits&7 != 0 {\n\t\t\tinjectBytePaddingBlock(s)\n\t\t\tcontinue\n\t\t}\n\n\t\t/* Compress block only when stream is not\n\t\t   finished, there is no pending flush request, and there is either\n\t\t   additional input or pending operation. */\n\t\tif s.stream_state_ == streamProcessing && (*available_in != 0 || op != int(operationProcess)) {\n\t\t\tvar block_size uint = brotli_min_size_t(block_size_limit, *available_in)\n\t\t\tvar is_last bool = (*available_in == block_size) && (op == int(operationFinish))\n\t\t\tvar force_flush bool = (*available_in == block_size) && (op == int(operationFlush))\n\t\t\tvar table_size uint\n\t\t\tvar table []int\n\n\t\t\tif force_flush && block_size == 0 {\n\t\t\t\ts.stream_state_ = streamFlushRequested\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\ttable = getHashTable(s, s.params.quality, block_size, &table_size)\n\n\t\t\tif s.params.quality == fastOnePassCompressionQuality {\n\t\t\t\tcompressFragmentFast(*next_in, block_size, is_last, table, table_size, s.cmd_depths_[:], s.cmd_bits_[:], &s.cmd_code_numbits_, s.cmd_code_[:], &s.bw)\n\t\t\t} else {\n\t\t\t\tcompressFragmentTwoPass(*next_in, block_size, is_last, command_buf, literal_buf, table, table_size, &s.bw)\n\t\t\t}\n\n\t\t\t*next_in = (*next_in)[block_size:]\n\t\t\t*available_in -= block_size\n\t\t\ts.writeOutput(s.bw.dst)\n\t\t\ts.bw.dst = s.bw.dst[:0]\n\n\t\t\tif force_flush {\n\t\t\t\ts.stream_state_ = streamFlushRequested\n\t\t\t}\n\t\t\tif is_last {\n\t\t\t\ts.stream_state_ = streamFinished\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tbreak\n\t}\n\n\tcheckFlushComplete(s)\n\treturn true\n}\n\nfunc processMetadata(s *Writer, available_in *uint, next_in *[]byte) bool {\n\tif *available_in > 1<<24 {\n\t\treturn false\n\t}\n\n\t/* Switch to metadata block workflow, if required. */\n\tif s.stream_state_ == streamProcessing {\n\t\ts.remaining_metadata_bytes_ = uint32(*available_in)\n\t\ts.stream_state_ = streamMetadataHead\n\t}\n\n\tif s.stream_state_ != streamMetadataHead && s.stream_state_ != streamMetadataBody {\n\t\treturn false\n\t}\n\n\tfor {\n\t\tif s.stream_state_ == streamFlushRequested && s.bw.nbits&7 != 0 {\n\t\t\tinjectBytePaddingBlock(s)\n\t\t\tcontinue\n\t\t}\n\n\t\tif s.input_pos_ != s.last_flush_pos_ {\n\t\t\tvar result bool = encodeData(s, false, true)\n\t\t\tif !result {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tif s.stream_state_ == streamMetadataHead {\n\t\t\twriteMetadataHeader(s, uint(s.remaining_metadata_bytes_))\n\t\t\ts.writeOutput(s.bw.dst)\n\t\t\ts.bw.dst = s.bw.dst[:0]\n\t\t\ts.stream_state_ = streamMetadataBody\n\t\t\tcontinue\n\t\t} else {\n\t\t\t/* Exit workflow only when there is no more input and no more output.\n\t\t\t   Otherwise client may continue producing empty metadata blocks. */\n\t\t\tif s.remaining_metadata_bytes_ == 0 {\n\t\t\t\ts.remaining_metadata_bytes_ = math.MaxUint32\n\t\t\t\ts.stream_state_ = streamProcessing\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t/* This guarantees progress in \"TakeOutput\" workflow. */\n\t\t\tvar c uint32 = brotli_min_uint32_t(s.remaining_metadata_bytes_, 16)\n\t\t\tcopy(s.tiny_buf_.u8[:], (*next_in)[:c])\n\t\t\t*next_in = (*next_in)[c:]\n\t\t\t*available_in -= uint(c)\n\t\t\ts.remaining_metadata_bytes_ -= c\n\t\t\ts.writeOutput(s.tiny_buf_.u8[:c])\n\n\t\t\tcontinue\n\t\t}\n\t}\n\n\treturn true\n}\n\nfunc updateSizeHint(s *Writer, available_in uint) {\n\tif s.params.size_hint == 0 {\n\t\tvar delta uint64 = unprocessedInputSize(s)\n\t\tvar tail uint64 = uint64(available_in)\n\t\tvar limit uint32 = 1 << 30\n\t\tvar total uint32\n\t\tif (delta >= uint64(limit)) || (tail >= uint64(limit)) || ((delta + tail) >= uint64(limit)) {\n\t\t\ttotal = limit\n\t\t} else {\n\t\t\ttotal = uint32(delta + tail)\n\t\t}\n\n\t\ts.params.size_hint = uint(total)\n\t}\n}\n\nfunc encoderCompressStream(s *Writer, op int, available_in *uint, next_in *[]byte) bool {\n\tif !ensureInitialized(s) {\n\t\treturn false\n\t}\n\n\t/* Unfinished metadata block; check requirements. */\n\tif s.remaining_metadata_bytes_ != math.MaxUint32 {\n\t\tif uint32(*available_in) != s.remaining_metadata_bytes_ {\n\t\t\treturn false\n\t\t}\n\t\tif op != int(operationEmitMetadata) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tif op == int(operationEmitMetadata) {\n\t\tupdateSizeHint(s, 0) /* First data metablock might be emitted here. */\n\t\treturn processMetadata(s, available_in, next_in)\n\t}\n\n\tif s.stream_state_ == streamMetadataHead || s.stream_state_ == streamMetadataBody {\n\t\treturn false\n\t}\n\n\tif s.stream_state_ != streamProcessing && *available_in != 0 {\n\t\treturn false\n\t}\n\n\tif s.params.quality == fastOnePassCompressionQuality || s.params.quality == fastTwoPassCompressionQuality {\n\t\treturn encoderCompressStreamFast(s, op, available_in, next_in)\n\t}\n\n\tfor {\n\t\tvar remaining_block_size uint = remainingInputBlockSize(s)\n\n\t\tif remaining_block_size != 0 && *available_in != 0 {\n\t\t\tvar copy_input_size uint = brotli_min_size_t(remaining_block_size, *available_in)\n\t\t\tcopyInputToRingBuffer(s, copy_input_size, *next_in)\n\t\t\t*next_in = (*next_in)[copy_input_size:]\n\t\t\t*available_in -= copy_input_size\n\t\t\tcontinue\n\t\t}\n\n\t\tif s.stream_state_ == streamFlushRequested && s.bw.nbits&7 != 0 {\n\t\t\tinjectBytePaddingBlock(s)\n\t\t\tcontinue\n\t\t}\n\n\t\t/* Compress data only when stream is not\n\t\t   finished and there is no pending flush request. */\n\t\tif s.stream_state_ == streamProcessing {\n\t\t\tif remaining_block_size == 0 || op != int(operationProcess) {\n\t\t\t\tvar is_last bool = ((*available_in == 0) && op == int(operationFinish))\n\t\t\t\tvar force_flush bool = ((*available_in == 0) && op == int(operationFlush))\n\t\t\t\tvar result bool\n\t\t\t\tupdateSizeHint(s, *available_in)\n\t\t\t\tresult = encodeData(s, is_last, force_flush)\n\t\t\t\tif !result {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif force_flush {\n\t\t\t\t\ts.stream_state_ = streamFlushRequested\n\t\t\t\t}\n\t\t\t\tif is_last {\n\t\t\t\t\ts.stream_state_ = streamFinished\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\tbreak\n\t}\n\n\tcheckFlushComplete(s)\n\treturn true\n}\n\nfunc (w *Writer) writeOutput(data []byte) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\n\t_, w.err = w.dst.Write(data)\n\tif w.err == nil {\n\t\tcheckFlushComplete(w)\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/encoder_dict.go",
    "content": "package brotli\n\n/* Dictionary data (words and transforms) for 1 possible context */\ntype encoderDictionary struct {\n\twords                 *dictionary\n\tcutoffTransformsCount uint32\n\tcutoffTransforms      uint64\n\thash_table            []uint16\n\tbuckets               []uint16\n\tdict_words            []dictWord\n}\n\nfunc initEncoderDictionary(dict *encoderDictionary) {\n\tdict.words = getDictionary()\n\n\tdict.hash_table = kStaticDictionaryHash[:]\n\tdict.buckets = kStaticDictionaryBuckets[:]\n\tdict.dict_words = kStaticDictionaryWords[:]\n\n\tdict.cutoffTransformsCount = kCutoffTransformsCount\n\tdict.cutoffTransforms = kCutoffTransforms\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/entropy_encode.go",
    "content": "package brotli\n\nimport \"math\"\n\n/* Copyright 2010 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Entropy encoding (Huffman) utilities. */\n\n/* A node of a Huffman tree. */\ntype huffmanTree struct {\n\ttotal_count_          uint32\n\tindex_left_           int16\n\tindex_right_or_value_ int16\n}\n\nfunc initHuffmanTree(self *huffmanTree, count uint32, left int16, right int16) {\n\tself.total_count_ = count\n\tself.index_left_ = left\n\tself.index_right_or_value_ = right\n}\n\n/* Input size optimized Shell sort. */\ntype huffmanTreeComparator func(huffmanTree, huffmanTree) bool\n\nvar sortHuffmanTreeItems_gaps = []uint{132, 57, 23, 10, 4, 1}\n\nfunc sortHuffmanTreeItems(items []huffmanTree, n uint, comparator huffmanTreeComparator) {\n\tif n < 13 {\n\t\t/* Insertion sort. */\n\t\tvar i uint\n\t\tfor i = 1; i < n; i++ {\n\t\t\tvar tmp huffmanTree = items[i]\n\t\t\tvar k uint = i\n\t\t\tvar j uint = i - 1\n\t\t\tfor comparator(tmp, items[j]) {\n\t\t\t\titems[k] = items[j]\n\t\t\t\tk = j\n\t\t\t\tif j == 0 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tj--\n\t\t\t}\n\n\t\t\titems[k] = tmp\n\t\t}\n\n\t\treturn\n\t} else {\n\t\tvar g int\n\t\tif n < 57 {\n\t\t\tg = 2\n\t\t} else {\n\t\t\tg = 0\n\t\t}\n\t\tfor ; g < 6; g++ {\n\t\t\tvar gap uint = sortHuffmanTreeItems_gaps[g]\n\t\t\tvar i uint\n\t\t\tfor i = gap; i < n; i++ {\n\t\t\t\tvar j uint = i\n\t\t\t\tvar tmp huffmanTree = items[i]\n\t\t\t\tfor ; j >= gap && comparator(tmp, items[j-gap]); j -= gap {\n\t\t\t\t\titems[j] = items[j-gap]\n\t\t\t\t}\n\n\t\t\t\titems[j] = tmp\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* Returns 1 if assignment of depths succeeded, otherwise 0. */\nfunc setDepth(p0 int, pool []huffmanTree, depth []byte, max_depth int) bool {\n\tvar stack [16]int\n\tvar level int = 0\n\tvar p int = p0\n\tassert(max_depth <= 15)\n\tstack[0] = -1\n\tfor {\n\t\tif pool[p].index_left_ >= 0 {\n\t\t\tlevel++\n\t\t\tif level > max_depth {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tstack[level] = int(pool[p].index_right_or_value_)\n\t\t\tp = int(pool[p].index_left_)\n\t\t\tcontinue\n\t\t} else {\n\t\t\tdepth[pool[p].index_right_or_value_] = byte(level)\n\t\t}\n\n\t\tfor level >= 0 && stack[level] == -1 {\n\t\t\tlevel--\n\t\t}\n\t\tif level < 0 {\n\t\t\treturn true\n\t\t}\n\t\tp = stack[level]\n\t\tstack[level] = -1\n\t}\n}\n\n/* Sort the root nodes, least popular first. */\nfunc sortHuffmanTree(v0 huffmanTree, v1 huffmanTree) bool {\n\tif v0.total_count_ != v1.total_count_ {\n\t\treturn v0.total_count_ < v1.total_count_\n\t}\n\n\treturn v0.index_right_or_value_ > v1.index_right_or_value_\n}\n\n/* This function will create a Huffman tree.\n\n   The catch here is that the tree cannot be arbitrarily deep.\n   Brotli specifies a maximum depth of 15 bits for \"code trees\"\n   and 7 bits for \"code length code trees.\"\n\n   count_limit is the value that is to be faked as the minimum value\n   and this minimum value is raised until the tree matches the\n   maximum length requirement.\n\n   This algorithm is not of excellent performance for very long data blocks,\n   especially when population counts are longer than 2**tree_limit, but\n   we are not planning to use this with extremely long blocks.\n\n   See http://en.wikipedia.org/wiki/Huffman_coding */\nfunc createHuffmanTree(data []uint32, length uint, tree_limit int, tree []huffmanTree, depth []byte) {\n\tvar count_limit uint32\n\tvar sentinel huffmanTree\n\tinitHuffmanTree(&sentinel, math.MaxUint32, -1, -1)\n\n\t/* For block sizes below 64 kB, we never need to do a second iteration\n\t   of this loop. Probably all of our block sizes will be smaller than\n\t   that, so this loop is mostly of academic interest. If we actually\n\t   would need this, we would be better off with the Katajainen algorithm. */\n\tfor count_limit = 1; ; count_limit *= 2 {\n\t\tvar n uint = 0\n\t\tvar i uint\n\t\tvar j uint\n\t\tvar k uint\n\t\tfor i = length; i != 0; {\n\t\t\ti--\n\t\t\tif data[i] != 0 {\n\t\t\t\tvar count uint32 = brotli_max_uint32_t(data[i], count_limit)\n\t\t\t\tinitHuffmanTree(&tree[n], count, -1, int16(i))\n\t\t\t\tn++\n\t\t\t}\n\t\t}\n\n\t\tif n == 1 {\n\t\t\tdepth[tree[0].index_right_or_value_] = 1 /* Only one element. */\n\t\t\tbreak\n\t\t}\n\n\t\tsortHuffmanTreeItems(tree, n, huffmanTreeComparator(sortHuffmanTree))\n\n\t\t/* The nodes are:\n\t\t   [0, n): the sorted leaf nodes that we start with.\n\t\t   [n]: we add a sentinel here.\n\t\t   [n + 1, 2n): new parent nodes are added here, starting from\n\t\t                (n+1). These are naturally in ascending order.\n\t\t   [2n]: we add a sentinel at the end as well.\n\t\t   There will be (2n+1) elements at the end. */\n\t\ttree[n] = sentinel\n\n\t\ttree[n+1] = sentinel\n\n\t\ti = 0     /* Points to the next leaf node. */\n\t\tj = n + 1 /* Points to the next non-leaf node. */\n\t\tfor k = n - 1; k != 0; k-- {\n\t\t\tvar left uint\n\t\t\tvar right uint\n\t\t\tif tree[i].total_count_ <= tree[j].total_count_ {\n\t\t\t\tleft = i\n\t\t\t\ti++\n\t\t\t} else {\n\t\t\t\tleft = j\n\t\t\t\tj++\n\t\t\t}\n\n\t\t\tif tree[i].total_count_ <= tree[j].total_count_ {\n\t\t\t\tright = i\n\t\t\t\ti++\n\t\t\t} else {\n\t\t\t\tright = j\n\t\t\t\tj++\n\t\t\t}\n\t\t\t{\n\t\t\t\t/* The sentinel node becomes the parent node. */\n\t\t\t\tvar j_end uint = 2*n - k\n\t\t\t\ttree[j_end].total_count_ = tree[left].total_count_ + tree[right].total_count_\n\t\t\t\ttree[j_end].index_left_ = int16(left)\n\t\t\t\ttree[j_end].index_right_or_value_ = int16(right)\n\n\t\t\t\t/* Add back the last sentinel node. */\n\t\t\t\ttree[j_end+1] = sentinel\n\t\t\t}\n\t\t}\n\n\t\tif setDepth(int(2*n-1), tree[0:], depth, tree_limit) {\n\t\t\t/* We need to pack the Huffman tree in tree_limit bits. If this was not\n\t\t\t   successful, add fake entities to the lowest values and retry. */\n\t\t\tbreak\n\t\t}\n\t}\n}\n\nfunc reverse(v []byte, start uint, end uint) {\n\tend--\n\tfor start < end {\n\t\tvar tmp byte = v[start]\n\t\tv[start] = v[end]\n\t\tv[end] = tmp\n\t\tstart++\n\t\tend--\n\t}\n}\n\nfunc writeHuffmanTreeRepetitions(previous_value byte, value byte, repetitions uint, tree_size *uint, tree []byte, extra_bits_data []byte) {\n\tassert(repetitions > 0)\n\tif previous_value != value {\n\t\ttree[*tree_size] = value\n\t\textra_bits_data[*tree_size] = 0\n\t\t(*tree_size)++\n\t\trepetitions--\n\t}\n\n\tif repetitions == 7 {\n\t\ttree[*tree_size] = value\n\t\textra_bits_data[*tree_size] = 0\n\t\t(*tree_size)++\n\t\trepetitions--\n\t}\n\n\tif repetitions < 3 {\n\t\tvar i uint\n\t\tfor i = 0; i < repetitions; i++ {\n\t\t\ttree[*tree_size] = value\n\t\t\textra_bits_data[*tree_size] = 0\n\t\t\t(*tree_size)++\n\t\t}\n\t} else {\n\t\tvar start uint = *tree_size\n\t\trepetitions -= 3\n\t\tfor {\n\t\t\ttree[*tree_size] = repeatPreviousCodeLength\n\t\t\textra_bits_data[*tree_size] = byte(repetitions & 0x3)\n\t\t\t(*tree_size)++\n\t\t\trepetitions >>= 2\n\t\t\tif repetitions == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\trepetitions--\n\t\t}\n\n\t\treverse(tree, start, *tree_size)\n\t\treverse(extra_bits_data, start, *tree_size)\n\t}\n}\n\nfunc writeHuffmanTreeRepetitionsZeros(repetitions uint, tree_size *uint, tree []byte, extra_bits_data []byte) {\n\tif repetitions == 11 {\n\t\ttree[*tree_size] = 0\n\t\textra_bits_data[*tree_size] = 0\n\t\t(*tree_size)++\n\t\trepetitions--\n\t}\n\n\tif repetitions < 3 {\n\t\tvar i uint\n\t\tfor i = 0; i < repetitions; i++ {\n\t\t\ttree[*tree_size] = 0\n\t\t\textra_bits_data[*tree_size] = 0\n\t\t\t(*tree_size)++\n\t\t}\n\t} else {\n\t\tvar start uint = *tree_size\n\t\trepetitions -= 3\n\t\tfor {\n\t\t\ttree[*tree_size] = repeatZeroCodeLength\n\t\t\textra_bits_data[*tree_size] = byte(repetitions & 0x7)\n\t\t\t(*tree_size)++\n\t\t\trepetitions >>= 3\n\t\t\tif repetitions == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\trepetitions--\n\t\t}\n\n\t\treverse(tree, start, *tree_size)\n\t\treverse(extra_bits_data, start, *tree_size)\n\t}\n}\n\n/* Change the population counts in a way that the consequent\n   Huffman tree compression, especially its RLE-part will be more\n   likely to compress this data more efficiently.\n\n   length contains the size of the histogram.\n   counts contains the population counts.\n   good_for_rle is a buffer of at least length size */\nfunc optimizeHuffmanCountsForRLE(length uint, counts []uint32, good_for_rle []byte) {\n\tvar nonzero_count uint = 0\n\tvar stride uint\n\tvar limit uint\n\tvar sum uint\n\tvar streak_limit uint = 1240\n\tvar i uint\n\t/* Let's make the Huffman code more compatible with RLE encoding. */\n\tfor i = 0; i < length; i++ {\n\t\tif counts[i] != 0 {\n\t\t\tnonzero_count++\n\t\t}\n\t}\n\n\tif nonzero_count < 16 {\n\t\treturn\n\t}\n\n\tfor length != 0 && counts[length-1] == 0 {\n\t\tlength--\n\t}\n\n\tif length == 0 {\n\t\treturn /* All zeros. */\n\t}\n\n\t/* Now counts[0..length - 1] does not have trailing zeros. */\n\t{\n\t\tvar nonzeros uint = 0\n\t\tvar smallest_nonzero uint32 = 1 << 30\n\t\tfor i = 0; i < length; i++ {\n\t\t\tif counts[i] != 0 {\n\t\t\t\tnonzeros++\n\t\t\t\tif smallest_nonzero > counts[i] {\n\t\t\t\t\tsmallest_nonzero = counts[i]\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif nonzeros < 5 {\n\t\t\t/* Small histogram will model it well. */\n\t\t\treturn\n\t\t}\n\n\t\tif smallest_nonzero < 4 {\n\t\t\tvar zeros uint = length - nonzeros\n\t\t\tif zeros < 6 {\n\t\t\t\tfor i = 1; i < length-1; i++ {\n\t\t\t\t\tif counts[i-1] != 0 && counts[i] == 0 && counts[i+1] != 0 {\n\t\t\t\t\t\tcounts[i] = 1\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif nonzeros < 28 {\n\t\t\treturn\n\t\t}\n\t}\n\n\t/* 2) Let's mark all population counts that already can be encoded\n\t   with an RLE code. */\n\tfor i := 0; i < int(length); i++ {\n\t\tgood_for_rle[i] = 0\n\t}\n\t{\n\t\tvar symbol uint32 = counts[0]\n\t\t/* Let's not spoil any of the existing good RLE codes.\n\t\t   Mark any seq of 0's that is longer as 5 as a good_for_rle.\n\t\t   Mark any seq of non-0's that is longer as 7 as a good_for_rle. */\n\n\t\tvar step uint = 0\n\t\tfor i = 0; i <= length; i++ {\n\t\t\tif i == length || counts[i] != symbol {\n\t\t\t\tif (symbol == 0 && step >= 5) || (symbol != 0 && step >= 7) {\n\t\t\t\t\tvar k uint\n\t\t\t\t\tfor k = 0; k < step; k++ {\n\t\t\t\t\t\tgood_for_rle[i-k-1] = 1\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tstep = 1\n\t\t\t\tif i != length {\n\t\t\t\t\tsymbol = counts[i]\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tstep++\n\t\t\t}\n\t\t}\n\t}\n\n\t/* 3) Let's replace those population counts that lead to more RLE codes.\n\t   Math here is in 24.8 fixed point representation. */\n\tstride = 0\n\n\tlimit = uint(256*(counts[0]+counts[1]+counts[2])/3 + 420)\n\tsum = 0\n\tfor i = 0; i <= length; i++ {\n\t\tif i == length || good_for_rle[i] != 0 || (i != 0 && good_for_rle[i-1] != 0) || (256*counts[i]-uint32(limit)+uint32(streak_limit)) >= uint32(2*streak_limit) {\n\t\t\tif stride >= 4 || (stride >= 3 && sum == 0) {\n\t\t\t\tvar k uint\n\t\t\t\tvar count uint = (sum + stride/2) / stride\n\t\t\t\t/* The stride must end, collapse what we have, if we have enough (4). */\n\t\t\t\tif count == 0 {\n\t\t\t\t\tcount = 1\n\t\t\t\t}\n\n\t\t\t\tif sum == 0 {\n\t\t\t\t\t/* Don't make an all zeros stride to be upgraded to ones. */\n\t\t\t\t\tcount = 0\n\t\t\t\t}\n\n\t\t\t\tfor k = 0; k < stride; k++ {\n\t\t\t\t\t/* We don't want to change value at counts[i],\n\t\t\t\t\t   that is already belonging to the next stride. Thus - 1. */\n\t\t\t\t\tcounts[i-k-1] = uint32(count)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tstride = 0\n\t\t\tsum = 0\n\t\t\tif i < length-2 {\n\t\t\t\t/* All interesting strides have a count of at least 4, */\n\t\t\t\t/* at least when non-zeros. */\n\t\t\t\tlimit = uint(256*(counts[i]+counts[i+1]+counts[i+2])/3 + 420)\n\t\t\t} else if i < length {\n\t\t\t\tlimit = uint(256 * counts[i])\n\t\t\t} else {\n\t\t\t\tlimit = 0\n\t\t\t}\n\t\t}\n\n\t\tstride++\n\t\tif i != length {\n\t\t\tsum += uint(counts[i])\n\t\t\tif stride >= 4 {\n\t\t\t\tlimit = (256*sum + stride/2) / stride\n\t\t\t}\n\n\t\t\tif stride == 4 {\n\t\t\t\tlimit += 120\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc decideOverRLEUse(depth []byte, length uint, use_rle_for_non_zero *bool, use_rle_for_zero *bool) {\n\tvar total_reps_zero uint = 0\n\tvar total_reps_non_zero uint = 0\n\tvar count_reps_zero uint = 1\n\tvar count_reps_non_zero uint = 1\n\tvar i uint\n\tfor i = 0; i < length; {\n\t\tvar value byte = depth[i]\n\t\tvar reps uint = 1\n\t\tvar k uint\n\t\tfor k = i + 1; k < length && depth[k] == value; k++ {\n\t\t\treps++\n\t\t}\n\n\t\tif reps >= 3 && value == 0 {\n\t\t\ttotal_reps_zero += reps\n\t\t\tcount_reps_zero++\n\t\t}\n\n\t\tif reps >= 4 && value != 0 {\n\t\t\ttotal_reps_non_zero += reps\n\t\t\tcount_reps_non_zero++\n\t\t}\n\n\t\ti += reps\n\t}\n\n\t*use_rle_for_non_zero = total_reps_non_zero > count_reps_non_zero*2\n\t*use_rle_for_zero = total_reps_zero > count_reps_zero*2\n}\n\n/* Write a Huffman tree from bit depths into the bit-stream representation\n   of a Huffman tree. The generated Huffman tree is to be compressed once\n   more using a Huffman tree */\nfunc writeHuffmanTree(depth []byte, length uint, tree_size *uint, tree []byte, extra_bits_data []byte) {\n\tvar previous_value byte = initialRepeatedCodeLength\n\tvar i uint\n\tvar use_rle_for_non_zero bool = false\n\tvar use_rle_for_zero bool = false\n\tvar new_length uint = length\n\t/* Throw away trailing zeros. */\n\tfor i = 0; i < length; i++ {\n\t\tif depth[length-i-1] == 0 {\n\t\t\tnew_length--\n\t\t} else {\n\t\t\tbreak\n\t\t}\n\t}\n\n\t/* First gather statistics on if it is a good idea to do RLE. */\n\tif length > 50 {\n\t\t/* Find RLE coding for longer codes.\n\t\t   Shorter codes seem not to benefit from RLE. */\n\t\tdecideOverRLEUse(depth, new_length, &use_rle_for_non_zero, &use_rle_for_zero)\n\t}\n\n\t/* Actual RLE coding. */\n\tfor i = 0; i < new_length; {\n\t\tvar value byte = depth[i]\n\t\tvar reps uint = 1\n\t\tif (value != 0 && use_rle_for_non_zero) || (value == 0 && use_rle_for_zero) {\n\t\t\tvar k uint\n\t\t\tfor k = i + 1; k < new_length && depth[k] == value; k++ {\n\t\t\t\treps++\n\t\t\t}\n\t\t}\n\n\t\tif value == 0 {\n\t\t\twriteHuffmanTreeRepetitionsZeros(reps, tree_size, tree, extra_bits_data)\n\t\t} else {\n\t\t\twriteHuffmanTreeRepetitions(previous_value, value, reps, tree_size, tree, extra_bits_data)\n\t\t\tprevious_value = value\n\t\t}\n\n\t\ti += reps\n\t}\n}\n\nvar reverseBits_kLut = [16]uint{\n\t0x00,\n\t0x08,\n\t0x04,\n\t0x0C,\n\t0x02,\n\t0x0A,\n\t0x06,\n\t0x0E,\n\t0x01,\n\t0x09,\n\t0x05,\n\t0x0D,\n\t0x03,\n\t0x0B,\n\t0x07,\n\t0x0F,\n}\n\nfunc reverseBits(num_bits uint, bits uint16) uint16 {\n\tvar retval uint = reverseBits_kLut[bits&0x0F]\n\tvar i uint\n\tfor i = 4; i < num_bits; i += 4 {\n\t\tretval <<= 4\n\t\tbits = uint16(bits >> 4)\n\t\tretval |= reverseBits_kLut[bits&0x0F]\n\t}\n\n\tretval >>= ((0 - num_bits) & 0x03)\n\treturn uint16(retval)\n}\n\n/* 0..15 are values for bits */\nconst maxHuffmanBits = 16\n\n/* Get the actual bit values for a tree of bit depths. */\nfunc convertBitDepthsToSymbols(depth []byte, len uint, bits []uint16) {\n\tvar bl_count = [maxHuffmanBits]uint16{0}\n\tvar next_code [maxHuffmanBits]uint16\n\tvar i uint\n\t/* In Brotli, all bit depths are [1..15]\n\t   0 bit depth means that the symbol does not exist. */\n\n\tvar code int = 0\n\tfor i = 0; i < len; i++ {\n\t\tbl_count[depth[i]]++\n\t}\n\n\tbl_count[0] = 0\n\tnext_code[0] = 0\n\tfor i = 1; i < maxHuffmanBits; i++ {\n\t\tcode = (code + int(bl_count[i-1])) << 1\n\t\tnext_code[i] = uint16(code)\n\t}\n\n\tfor i = 0; i < len; i++ {\n\t\tif depth[i] != 0 {\n\t\t\tbits[i] = reverseBits(uint(depth[i]), next_code[depth[i]])\n\t\t\tnext_code[depth[i]]++\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/entropy_encode_static.go",
    "content": "package brotli\n\nvar kCodeLengthDepth = [18]byte{4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 0, 4, 4}\n\nvar kStaticCommandCodeDepth = [numCommandSymbols]byte{\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t9,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n\t11,\n}\n\nvar kStaticDistanceCodeDepth = [64]byte{\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n\t6,\n}\n\nvar kCodeLengthBits = [18]uint32{0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 15, 31, 0, 11, 7}\n\nfunc storeStaticCodeLengthCode(bw *bitWriter) {\n\tbw.writeBits(32, 0x55555554)\n\tbw.writeBits(8, 0xFF)\n}\n\nvar kZeroRepsBits = [numCommandSymbols]uint64{\n\t0x00000000,\n\t0x00000000,\n\t0x00000000,\n\t0x00000007,\n\t0x00000017,\n\t0x00000027,\n\t0x00000037,\n\t0x00000047,\n\t0x00000057,\n\t0x00000067,\n\t0x00000077,\n\t0x00000770,\n\t0x00000b87,\n\t0x00001387,\n\t0x00001b87,\n\t0x00002387,\n\t0x00002b87,\n\t0x00003387,\n\t0x00003b87,\n\t0x00000397,\n\t0x00000b97,\n\t0x00001397,\n\t0x00001b97,\n\t0x00002397,\n\t0x00002b97,\n\t0x00003397,\n\t0x00003b97,\n\t0x000003a7,\n\t0x00000ba7,\n\t0x000013a7,\n\t0x00001ba7,\n\t0x000023a7,\n\t0x00002ba7,\n\t0x000033a7,\n\t0x00003ba7,\n\t0x000003b7,\n\t0x00000bb7,\n\t0x000013b7,\n\t0x00001bb7,\n\t0x000023b7,\n\t0x00002bb7,\n\t0x000033b7,\n\t0x00003bb7,\n\t0x000003c7,\n\t0x00000bc7,\n\t0x000013c7,\n\t0x00001bc7,\n\t0x000023c7,\n\t0x00002bc7,\n\t0x000033c7,\n\t0x00003bc7,\n\t0x000003d7,\n\t0x00000bd7,\n\t0x000013d7,\n\t0x00001bd7,\n\t0x000023d7,\n\t0x00002bd7,\n\t0x000033d7,\n\t0x00003bd7,\n\t0x000003e7,\n\t0x00000be7,\n\t0x000013e7,\n\t0x00001be7,\n\t0x000023e7,\n\t0x00002be7,\n\t0x000033e7,\n\t0x00003be7,\n\t0x000003f7,\n\t0x00000bf7,\n\t0x000013f7,\n\t0x00001bf7,\n\t0x000023f7,\n\t0x00002bf7,\n\t0x000033f7,\n\t0x00003bf7,\n\t0x0001c387,\n\t0x0005c387,\n\t0x0009c387,\n\t0x000dc387,\n\t0x0011c387,\n\t0x0015c387,\n\t0x0019c387,\n\t0x001dc387,\n\t0x0001cb87,\n\t0x0005cb87,\n\t0x0009cb87,\n\t0x000dcb87,\n\t0x0011cb87,\n\t0x0015cb87,\n\t0x0019cb87,\n\t0x001dcb87,\n\t0x0001d387,\n\t0x0005d387,\n\t0x0009d387,\n\t0x000dd387,\n\t0x0011d387,\n\t0x0015d387,\n\t0x0019d387,\n\t0x001dd387,\n\t0x0001db87,\n\t0x0005db87,\n\t0x0009db87,\n\t0x000ddb87,\n\t0x0011db87,\n\t0x0015db87,\n\t0x0019db87,\n\t0x001ddb87,\n\t0x0001e387,\n\t0x0005e387,\n\t0x0009e387,\n\t0x000de387,\n\t0x0011e387,\n\t0x0015e387,\n\t0x0019e387,\n\t0x001de387,\n\t0x0001eb87,\n\t0x0005eb87,\n\t0x0009eb87,\n\t0x000deb87,\n\t0x0011eb87,\n\t0x0015eb87,\n\t0x0019eb87,\n\t0x001deb87,\n\t0x0001f387,\n\t0x0005f387,\n\t0x0009f387,\n\t0x000df387,\n\t0x0011f387,\n\t0x0015f387,\n\t0x0019f387,\n\t0x001df387,\n\t0x0001fb87,\n\t0x0005fb87,\n\t0x0009fb87,\n\t0x000dfb87,\n\t0x0011fb87,\n\t0x0015fb87,\n\t0x0019fb87,\n\t0x001dfb87,\n\t0x0001c397,\n\t0x0005c397,\n\t0x0009c397,\n\t0x000dc397,\n\t0x0011c397,\n\t0x0015c397,\n\t0x0019c397,\n\t0x001dc397,\n\t0x0001cb97,\n\t0x0005cb97,\n\t0x0009cb97,\n\t0x000dcb97,\n\t0x0011cb97,\n\t0x0015cb97,\n\t0x0019cb97,\n\t0x001dcb97,\n\t0x0001d397,\n\t0x0005d397,\n\t0x0009d397,\n\t0x000dd397,\n\t0x0011d397,\n\t0x0015d397,\n\t0x0019d397,\n\t0x001dd397,\n\t0x0001db97,\n\t0x0005db97,\n\t0x0009db97,\n\t0x000ddb97,\n\t0x0011db97,\n\t0x0015db97,\n\t0x0019db97,\n\t0x001ddb97,\n\t0x0001e397,\n\t0x0005e397,\n\t0x0009e397,\n\t0x000de397,\n\t0x0011e397,\n\t0x0015e397,\n\t0x0019e397,\n\t0x001de397,\n\t0x0001eb97,\n\t0x0005eb97,\n\t0x0009eb97,\n\t0x000deb97,\n\t0x0011eb97,\n\t0x0015eb97,\n\t0x0019eb97,\n\t0x001deb97,\n\t0x0001f397,\n\t0x0005f397,\n\t0x0009f397,\n\t0x000df397,\n\t0x0011f397,\n\t0x0015f397,\n\t0x0019f397,\n\t0x001df397,\n\t0x0001fb97,\n\t0x0005fb97,\n\t0x0009fb97,\n\t0x000dfb97,\n\t0x0011fb97,\n\t0x0015fb97,\n\t0x0019fb97,\n\t0x001dfb97,\n\t0x0001c3a7,\n\t0x0005c3a7,\n\t0x0009c3a7,\n\t0x000dc3a7,\n\t0x0011c3a7,\n\t0x0015c3a7,\n\t0x0019c3a7,\n\t0x001dc3a7,\n\t0x0001cba7,\n\t0x0005cba7,\n\t0x0009cba7,\n\t0x000dcba7,\n\t0x0011cba7,\n\t0x0015cba7,\n\t0x0019cba7,\n\t0x001dcba7,\n\t0x0001d3a7,\n\t0x0005d3a7,\n\t0x0009d3a7,\n\t0x000dd3a7,\n\t0x0011d3a7,\n\t0x0015d3a7,\n\t0x0019d3a7,\n\t0x001dd3a7,\n\t0x0001dba7,\n\t0x0005dba7,\n\t0x0009dba7,\n\t0x000ddba7,\n\t0x0011dba7,\n\t0x0015dba7,\n\t0x0019dba7,\n\t0x001ddba7,\n\t0x0001e3a7,\n\t0x0005e3a7,\n\t0x0009e3a7,\n\t0x000de3a7,\n\t0x0011e3a7,\n\t0x0015e3a7,\n\t0x0019e3a7,\n\t0x001de3a7,\n\t0x0001eba7,\n\t0x0005eba7,\n\t0x0009eba7,\n\t0x000deba7,\n\t0x0011eba7,\n\t0x0015eba7,\n\t0x0019eba7,\n\t0x001deba7,\n\t0x0001f3a7,\n\t0x0005f3a7,\n\t0x0009f3a7,\n\t0x000df3a7,\n\t0x0011f3a7,\n\t0x0015f3a7,\n\t0x0019f3a7,\n\t0x001df3a7,\n\t0x0001fba7,\n\t0x0005fba7,\n\t0x0009fba7,\n\t0x000dfba7,\n\t0x0011fba7,\n\t0x0015fba7,\n\t0x0019fba7,\n\t0x001dfba7,\n\t0x0001c3b7,\n\t0x0005c3b7,\n\t0x0009c3b7,\n\t0x000dc3b7,\n\t0x0011c3b7,\n\t0x0015c3b7,\n\t0x0019c3b7,\n\t0x001dc3b7,\n\t0x0001cbb7,\n\t0x0005cbb7,\n\t0x0009cbb7,\n\t0x000dcbb7,\n\t0x0011cbb7,\n\t0x0015cbb7,\n\t0x0019cbb7,\n\t0x001dcbb7,\n\t0x0001d3b7,\n\t0x0005d3b7,\n\t0x0009d3b7,\n\t0x000dd3b7,\n\t0x0011d3b7,\n\t0x0015d3b7,\n\t0x0019d3b7,\n\t0x001dd3b7,\n\t0x0001dbb7,\n\t0x0005dbb7,\n\t0x0009dbb7,\n\t0x000ddbb7,\n\t0x0011dbb7,\n\t0x0015dbb7,\n\t0x0019dbb7,\n\t0x001ddbb7,\n\t0x0001e3b7,\n\t0x0005e3b7,\n\t0x0009e3b7,\n\t0x000de3b7,\n\t0x0011e3b7,\n\t0x0015e3b7,\n\t0x0019e3b7,\n\t0x001de3b7,\n\t0x0001ebb7,\n\t0x0005ebb7,\n\t0x0009ebb7,\n\t0x000debb7,\n\t0x0011ebb7,\n\t0x0015ebb7,\n\t0x0019ebb7,\n\t0x001debb7,\n\t0x0001f3b7,\n\t0x0005f3b7,\n\t0x0009f3b7,\n\t0x000df3b7,\n\t0x0011f3b7,\n\t0x0015f3b7,\n\t0x0019f3b7,\n\t0x001df3b7,\n\t0x0001fbb7,\n\t0x0005fbb7,\n\t0x0009fbb7,\n\t0x000dfbb7,\n\t0x0011fbb7,\n\t0x0015fbb7,\n\t0x0019fbb7,\n\t0x001dfbb7,\n\t0x0001c3c7,\n\t0x0005c3c7,\n\t0x0009c3c7,\n\t0x000dc3c7,\n\t0x0011c3c7,\n\t0x0015c3c7,\n\t0x0019c3c7,\n\t0x001dc3c7,\n\t0x0001cbc7,\n\t0x0005cbc7,\n\t0x0009cbc7,\n\t0x000dcbc7,\n\t0x0011cbc7,\n\t0x0015cbc7,\n\t0x0019cbc7,\n\t0x001dcbc7,\n\t0x0001d3c7,\n\t0x0005d3c7,\n\t0x0009d3c7,\n\t0x000dd3c7,\n\t0x0011d3c7,\n\t0x0015d3c7,\n\t0x0019d3c7,\n\t0x001dd3c7,\n\t0x0001dbc7,\n\t0x0005dbc7,\n\t0x0009dbc7,\n\t0x000ddbc7,\n\t0x0011dbc7,\n\t0x0015dbc7,\n\t0x0019dbc7,\n\t0x001ddbc7,\n\t0x0001e3c7,\n\t0x0005e3c7,\n\t0x0009e3c7,\n\t0x000de3c7,\n\t0x0011e3c7,\n\t0x0015e3c7,\n\t0x0019e3c7,\n\t0x001de3c7,\n\t0x0001ebc7,\n\t0x0005ebc7,\n\t0x0009ebc7,\n\t0x000debc7,\n\t0x0011ebc7,\n\t0x0015ebc7,\n\t0x0019ebc7,\n\t0x001debc7,\n\t0x0001f3c7,\n\t0x0005f3c7,\n\t0x0009f3c7,\n\t0x000df3c7,\n\t0x0011f3c7,\n\t0x0015f3c7,\n\t0x0019f3c7,\n\t0x001df3c7,\n\t0x0001fbc7,\n\t0x0005fbc7,\n\t0x0009fbc7,\n\t0x000dfbc7,\n\t0x0011fbc7,\n\t0x0015fbc7,\n\t0x0019fbc7,\n\t0x001dfbc7,\n\t0x0001c3d7,\n\t0x0005c3d7,\n\t0x0009c3d7,\n\t0x000dc3d7,\n\t0x0011c3d7,\n\t0x0015c3d7,\n\t0x0019c3d7,\n\t0x001dc3d7,\n\t0x0001cbd7,\n\t0x0005cbd7,\n\t0x0009cbd7,\n\t0x000dcbd7,\n\t0x0011cbd7,\n\t0x0015cbd7,\n\t0x0019cbd7,\n\t0x001dcbd7,\n\t0x0001d3d7,\n\t0x0005d3d7,\n\t0x0009d3d7,\n\t0x000dd3d7,\n\t0x0011d3d7,\n\t0x0015d3d7,\n\t0x0019d3d7,\n\t0x001dd3d7,\n\t0x0001dbd7,\n\t0x0005dbd7,\n\t0x0009dbd7,\n\t0x000ddbd7,\n\t0x0011dbd7,\n\t0x0015dbd7,\n\t0x0019dbd7,\n\t0x001ddbd7,\n\t0x0001e3d7,\n\t0x0005e3d7,\n\t0x0009e3d7,\n\t0x000de3d7,\n\t0x0011e3d7,\n\t0x0015e3d7,\n\t0x0019e3d7,\n\t0x001de3d7,\n\t0x0001ebd7,\n\t0x0005ebd7,\n\t0x0009ebd7,\n\t0x000debd7,\n\t0x0011ebd7,\n\t0x0015ebd7,\n\t0x0019ebd7,\n\t0x001debd7,\n\t0x0001f3d7,\n\t0x0005f3d7,\n\t0x0009f3d7,\n\t0x000df3d7,\n\t0x0011f3d7,\n\t0x0015f3d7,\n\t0x0019f3d7,\n\t0x001df3d7,\n\t0x0001fbd7,\n\t0x0005fbd7,\n\t0x0009fbd7,\n\t0x000dfbd7,\n\t0x0011fbd7,\n\t0x0015fbd7,\n\t0x0019fbd7,\n\t0x001dfbd7,\n\t0x0001c3e7,\n\t0x0005c3e7,\n\t0x0009c3e7,\n\t0x000dc3e7,\n\t0x0011c3e7,\n\t0x0015c3e7,\n\t0x0019c3e7,\n\t0x001dc3e7,\n\t0x0001cbe7,\n\t0x0005cbe7,\n\t0x0009cbe7,\n\t0x000dcbe7,\n\t0x0011cbe7,\n\t0x0015cbe7,\n\t0x0019cbe7,\n\t0x001dcbe7,\n\t0x0001d3e7,\n\t0x0005d3e7,\n\t0x0009d3e7,\n\t0x000dd3e7,\n\t0x0011d3e7,\n\t0x0015d3e7,\n\t0x0019d3e7,\n\t0x001dd3e7,\n\t0x0001dbe7,\n\t0x0005dbe7,\n\t0x0009dbe7,\n\t0x000ddbe7,\n\t0x0011dbe7,\n\t0x0015dbe7,\n\t0x0019dbe7,\n\t0x001ddbe7,\n\t0x0001e3e7,\n\t0x0005e3e7,\n\t0x0009e3e7,\n\t0x000de3e7,\n\t0x0011e3e7,\n\t0x0015e3e7,\n\t0x0019e3e7,\n\t0x001de3e7,\n\t0x0001ebe7,\n\t0x0005ebe7,\n\t0x0009ebe7,\n\t0x000debe7,\n\t0x0011ebe7,\n\t0x0015ebe7,\n\t0x0019ebe7,\n\t0x001debe7,\n\t0x0001f3e7,\n\t0x0005f3e7,\n\t0x0009f3e7,\n\t0x000df3e7,\n\t0x0011f3e7,\n\t0x0015f3e7,\n\t0x0019f3e7,\n\t0x001df3e7,\n\t0x0001fbe7,\n\t0x0005fbe7,\n\t0x0009fbe7,\n\t0x000dfbe7,\n\t0x0011fbe7,\n\t0x0015fbe7,\n\t0x0019fbe7,\n\t0x001dfbe7,\n\t0x0001c3f7,\n\t0x0005c3f7,\n\t0x0009c3f7,\n\t0x000dc3f7,\n\t0x0011c3f7,\n\t0x0015c3f7,\n\t0x0019c3f7,\n\t0x001dc3f7,\n\t0x0001cbf7,\n\t0x0005cbf7,\n\t0x0009cbf7,\n\t0x000dcbf7,\n\t0x0011cbf7,\n\t0x0015cbf7,\n\t0x0019cbf7,\n\t0x001dcbf7,\n\t0x0001d3f7,\n\t0x0005d3f7,\n\t0x0009d3f7,\n\t0x000dd3f7,\n\t0x0011d3f7,\n\t0x0015d3f7,\n\t0x0019d3f7,\n\t0x001dd3f7,\n\t0x0001dbf7,\n\t0x0005dbf7,\n\t0x0009dbf7,\n\t0x000ddbf7,\n\t0x0011dbf7,\n\t0x0015dbf7,\n\t0x0019dbf7,\n\t0x001ddbf7,\n\t0x0001e3f7,\n\t0x0005e3f7,\n\t0x0009e3f7,\n\t0x000de3f7,\n\t0x0011e3f7,\n\t0x0015e3f7,\n\t0x0019e3f7,\n\t0x001de3f7,\n\t0x0001ebf7,\n\t0x0005ebf7,\n\t0x0009ebf7,\n\t0x000debf7,\n\t0x0011ebf7,\n\t0x0015ebf7,\n\t0x0019ebf7,\n\t0x001debf7,\n\t0x0001f3f7,\n\t0x0005f3f7,\n\t0x0009f3f7,\n\t0x000df3f7,\n\t0x0011f3f7,\n\t0x0015f3f7,\n\t0x0019f3f7,\n\t0x001df3f7,\n\t0x0001fbf7,\n\t0x0005fbf7,\n\t0x0009fbf7,\n\t0x000dfbf7,\n\t0x0011fbf7,\n\t0x0015fbf7,\n\t0x0019fbf7,\n\t0x001dfbf7,\n\t0x00e1c387,\n\t0x02e1c387,\n\t0x04e1c387,\n\t0x06e1c387,\n\t0x08e1c387,\n\t0x0ae1c387,\n\t0x0ce1c387,\n\t0x0ee1c387,\n\t0x00e5c387,\n\t0x02e5c387,\n\t0x04e5c387,\n\t0x06e5c387,\n\t0x08e5c387,\n\t0x0ae5c387,\n\t0x0ce5c387,\n\t0x0ee5c387,\n\t0x00e9c387,\n\t0x02e9c387,\n\t0x04e9c387,\n\t0x06e9c387,\n\t0x08e9c387,\n\t0x0ae9c387,\n\t0x0ce9c387,\n\t0x0ee9c387,\n\t0x00edc387,\n\t0x02edc387,\n\t0x04edc387,\n\t0x06edc387,\n\t0x08edc387,\n\t0x0aedc387,\n\t0x0cedc387,\n\t0x0eedc387,\n\t0x00f1c387,\n\t0x02f1c387,\n\t0x04f1c387,\n\t0x06f1c387,\n\t0x08f1c387,\n\t0x0af1c387,\n\t0x0cf1c387,\n\t0x0ef1c387,\n\t0x00f5c387,\n\t0x02f5c387,\n\t0x04f5c387,\n\t0x06f5c387,\n\t0x08f5c387,\n\t0x0af5c387,\n\t0x0cf5c387,\n\t0x0ef5c387,\n\t0x00f9c387,\n\t0x02f9c387,\n\t0x04f9c387,\n\t0x06f9c387,\n\t0x08f9c387,\n\t0x0af9c387,\n\t0x0cf9c387,\n\t0x0ef9c387,\n\t0x00fdc387,\n\t0x02fdc387,\n\t0x04fdc387,\n\t0x06fdc387,\n\t0x08fdc387,\n\t0x0afdc387,\n\t0x0cfdc387,\n\t0x0efdc387,\n\t0x00e1cb87,\n\t0x02e1cb87,\n\t0x04e1cb87,\n\t0x06e1cb87,\n\t0x08e1cb87,\n\t0x0ae1cb87,\n\t0x0ce1cb87,\n\t0x0ee1cb87,\n\t0x00e5cb87,\n\t0x02e5cb87,\n\t0x04e5cb87,\n\t0x06e5cb87,\n\t0x08e5cb87,\n\t0x0ae5cb87,\n\t0x0ce5cb87,\n\t0x0ee5cb87,\n\t0x00e9cb87,\n\t0x02e9cb87,\n\t0x04e9cb87,\n\t0x06e9cb87,\n\t0x08e9cb87,\n\t0x0ae9cb87,\n\t0x0ce9cb87,\n\t0x0ee9cb87,\n\t0x00edcb87,\n\t0x02edcb87,\n\t0x04edcb87,\n\t0x06edcb87,\n\t0x08edcb87,\n\t0x0aedcb87,\n\t0x0cedcb87,\n\t0x0eedcb87,\n\t0x00f1cb87,\n\t0x02f1cb87,\n\t0x04f1cb87,\n\t0x06f1cb87,\n\t0x08f1cb87,\n\t0x0af1cb87,\n\t0x0cf1cb87,\n\t0x0ef1cb87,\n\t0x00f5cb87,\n\t0x02f5cb87,\n\t0x04f5cb87,\n\t0x06f5cb87,\n\t0x08f5cb87,\n\t0x0af5cb87,\n\t0x0cf5cb87,\n\t0x0ef5cb87,\n\t0x00f9cb87,\n\t0x02f9cb87,\n\t0x04f9cb87,\n\t0x06f9cb87,\n\t0x08f9cb87,\n}\n\nvar kZeroRepsDepth = [numCommandSymbols]uint32{\n\t0,\n\t4,\n\t8,\n\t7,\n\t7,\n\t7,\n\t7,\n\t7,\n\t7,\n\t7,\n\t7,\n\t11,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t14,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t21,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n\t28,\n}\n\nvar kNonZeroRepsBits = [numCommandSymbols]uint64{\n\t0x0000000b,\n\t0x0000001b,\n\t0x0000002b,\n\t0x0000003b,\n\t0x000002cb,\n\t0x000006cb,\n\t0x00000acb,\n\t0x00000ecb,\n\t0x000002db,\n\t0x000006db,\n\t0x00000adb,\n\t0x00000edb,\n\t0x000002eb,\n\t0x000006eb,\n\t0x00000aeb,\n\t0x00000eeb,\n\t0x000002fb,\n\t0x000006fb,\n\t0x00000afb,\n\t0x00000efb,\n\t0x0000b2cb,\n\t0x0001b2cb,\n\t0x0002b2cb,\n\t0x0003b2cb,\n\t0x0000b6cb,\n\t0x0001b6cb,\n\t0x0002b6cb,\n\t0x0003b6cb,\n\t0x0000bacb,\n\t0x0001bacb,\n\t0x0002bacb,\n\t0x0003bacb,\n\t0x0000becb,\n\t0x0001becb,\n\t0x0002becb,\n\t0x0003becb,\n\t0x0000b2db,\n\t0x0001b2db,\n\t0x0002b2db,\n\t0x0003b2db,\n\t0x0000b6db,\n\t0x0001b6db,\n\t0x0002b6db,\n\t0x0003b6db,\n\t0x0000badb,\n\t0x0001badb,\n\t0x0002badb,\n\t0x0003badb,\n\t0x0000bedb,\n\t0x0001bedb,\n\t0x0002bedb,\n\t0x0003bedb,\n\t0x0000b2eb,\n\t0x0001b2eb,\n\t0x0002b2eb,\n\t0x0003b2eb,\n\t0x0000b6eb,\n\t0x0001b6eb,\n\t0x0002b6eb,\n\t0x0003b6eb,\n\t0x0000baeb,\n\t0x0001baeb,\n\t0x0002baeb,\n\t0x0003baeb,\n\t0x0000beeb,\n\t0x0001beeb,\n\t0x0002beeb,\n\t0x0003beeb,\n\t0x0000b2fb,\n\t0x0001b2fb,\n\t0x0002b2fb,\n\t0x0003b2fb,\n\t0x0000b6fb,\n\t0x0001b6fb,\n\t0x0002b6fb,\n\t0x0003b6fb,\n\t0x0000bafb,\n\t0x0001bafb,\n\t0x0002bafb,\n\t0x0003bafb,\n\t0x0000befb,\n\t0x0001befb,\n\t0x0002befb,\n\t0x0003befb,\n\t0x002cb2cb,\n\t0x006cb2cb,\n\t0x00acb2cb,\n\t0x00ecb2cb,\n\t0x002db2cb,\n\t0x006db2cb,\n\t0x00adb2cb,\n\t0x00edb2cb,\n\t0x002eb2cb,\n\t0x006eb2cb,\n\t0x00aeb2cb,\n\t0x00eeb2cb,\n\t0x002fb2cb,\n\t0x006fb2cb,\n\t0x00afb2cb,\n\t0x00efb2cb,\n\t0x002cb6cb,\n\t0x006cb6cb,\n\t0x00acb6cb,\n\t0x00ecb6cb,\n\t0x002db6cb,\n\t0x006db6cb,\n\t0x00adb6cb,\n\t0x00edb6cb,\n\t0x002eb6cb,\n\t0x006eb6cb,\n\t0x00aeb6cb,\n\t0x00eeb6cb,\n\t0x002fb6cb,\n\t0x006fb6cb,\n\t0x00afb6cb,\n\t0x00efb6cb,\n\t0x002cbacb,\n\t0x006cbacb,\n\t0x00acbacb,\n\t0x00ecbacb,\n\t0x002dbacb,\n\t0x006dbacb,\n\t0x00adbacb,\n\t0x00edbacb,\n\t0x002ebacb,\n\t0x006ebacb,\n\t0x00aebacb,\n\t0x00eebacb,\n\t0x002fbacb,\n\t0x006fbacb,\n\t0x00afbacb,\n\t0x00efbacb,\n\t0x002cbecb,\n\t0x006cbecb,\n\t0x00acbecb,\n\t0x00ecbecb,\n\t0x002dbecb,\n\t0x006dbecb,\n\t0x00adbecb,\n\t0x00edbecb,\n\t0x002ebecb,\n\t0x006ebecb,\n\t0x00aebecb,\n\t0x00eebecb,\n\t0x002fbecb,\n\t0x006fbecb,\n\t0x00afbecb,\n\t0x00efbecb,\n\t0x002cb2db,\n\t0x006cb2db,\n\t0x00acb2db,\n\t0x00ecb2db,\n\t0x002db2db,\n\t0x006db2db,\n\t0x00adb2db,\n\t0x00edb2db,\n\t0x002eb2db,\n\t0x006eb2db,\n\t0x00aeb2db,\n\t0x00eeb2db,\n\t0x002fb2db,\n\t0x006fb2db,\n\t0x00afb2db,\n\t0x00efb2db,\n\t0x002cb6db,\n\t0x006cb6db,\n\t0x00acb6db,\n\t0x00ecb6db,\n\t0x002db6db,\n\t0x006db6db,\n\t0x00adb6db,\n\t0x00edb6db,\n\t0x002eb6db,\n\t0x006eb6db,\n\t0x00aeb6db,\n\t0x00eeb6db,\n\t0x002fb6db,\n\t0x006fb6db,\n\t0x00afb6db,\n\t0x00efb6db,\n\t0x002cbadb,\n\t0x006cbadb,\n\t0x00acbadb,\n\t0x00ecbadb,\n\t0x002dbadb,\n\t0x006dbadb,\n\t0x00adbadb,\n\t0x00edbadb,\n\t0x002ebadb,\n\t0x006ebadb,\n\t0x00aebadb,\n\t0x00eebadb,\n\t0x002fbadb,\n\t0x006fbadb,\n\t0x00afbadb,\n\t0x00efbadb,\n\t0x002cbedb,\n\t0x006cbedb,\n\t0x00acbedb,\n\t0x00ecbedb,\n\t0x002dbedb,\n\t0x006dbedb,\n\t0x00adbedb,\n\t0x00edbedb,\n\t0x002ebedb,\n\t0x006ebedb,\n\t0x00aebedb,\n\t0x00eebedb,\n\t0x002fbedb,\n\t0x006fbedb,\n\t0x00afbedb,\n\t0x00efbedb,\n\t0x002cb2eb,\n\t0x006cb2eb,\n\t0x00acb2eb,\n\t0x00ecb2eb,\n\t0x002db2eb,\n\t0x006db2eb,\n\t0x00adb2eb,\n\t0x00edb2eb,\n\t0x002eb2eb,\n\t0x006eb2eb,\n\t0x00aeb2eb,\n\t0x00eeb2eb,\n\t0x002fb2eb,\n\t0x006fb2eb,\n\t0x00afb2eb,\n\t0x00efb2eb,\n\t0x002cb6eb,\n\t0x006cb6eb,\n\t0x00acb6eb,\n\t0x00ecb6eb,\n\t0x002db6eb,\n\t0x006db6eb,\n\t0x00adb6eb,\n\t0x00edb6eb,\n\t0x002eb6eb,\n\t0x006eb6eb,\n\t0x00aeb6eb,\n\t0x00eeb6eb,\n\t0x002fb6eb,\n\t0x006fb6eb,\n\t0x00afb6eb,\n\t0x00efb6eb,\n\t0x002cbaeb,\n\t0x006cbaeb,\n\t0x00acbaeb,\n\t0x00ecbaeb,\n\t0x002dbaeb,\n\t0x006dbaeb,\n\t0x00adbaeb,\n\t0x00edbaeb,\n\t0x002ebaeb,\n\t0x006ebaeb,\n\t0x00aebaeb,\n\t0x00eebaeb,\n\t0x002fbaeb,\n\t0x006fbaeb,\n\t0x00afbaeb,\n\t0x00efbaeb,\n\t0x002cbeeb,\n\t0x006cbeeb,\n\t0x00acbeeb,\n\t0x00ecbeeb,\n\t0x002dbeeb,\n\t0x006dbeeb,\n\t0x00adbeeb,\n\t0x00edbeeb,\n\t0x002ebeeb,\n\t0x006ebeeb,\n\t0x00aebeeb,\n\t0x00eebeeb,\n\t0x002fbeeb,\n\t0x006fbeeb,\n\t0x00afbeeb,\n\t0x00efbeeb,\n\t0x002cb2fb,\n\t0x006cb2fb,\n\t0x00acb2fb,\n\t0x00ecb2fb,\n\t0x002db2fb,\n\t0x006db2fb,\n\t0x00adb2fb,\n\t0x00edb2fb,\n\t0x002eb2fb,\n\t0x006eb2fb,\n\t0x00aeb2fb,\n\t0x00eeb2fb,\n\t0x002fb2fb,\n\t0x006fb2fb,\n\t0x00afb2fb,\n\t0x00efb2fb,\n\t0x002cb6fb,\n\t0x006cb6fb,\n\t0x00acb6fb,\n\t0x00ecb6fb,\n\t0x002db6fb,\n\t0x006db6fb,\n\t0x00adb6fb,\n\t0x00edb6fb,\n\t0x002eb6fb,\n\t0x006eb6fb,\n\t0x00aeb6fb,\n\t0x00eeb6fb,\n\t0x002fb6fb,\n\t0x006fb6fb,\n\t0x00afb6fb,\n\t0x00efb6fb,\n\t0x002cbafb,\n\t0x006cbafb,\n\t0x00acbafb,\n\t0x00ecbafb,\n\t0x002dbafb,\n\t0x006dbafb,\n\t0x00adbafb,\n\t0x00edbafb,\n\t0x002ebafb,\n\t0x006ebafb,\n\t0x00aebafb,\n\t0x00eebafb,\n\t0x002fbafb,\n\t0x006fbafb,\n\t0x00afbafb,\n\t0x00efbafb,\n\t0x002cbefb,\n\t0x006cbefb,\n\t0x00acbefb,\n\t0x00ecbefb,\n\t0x002dbefb,\n\t0x006dbefb,\n\t0x00adbefb,\n\t0x00edbefb,\n\t0x002ebefb,\n\t0x006ebefb,\n\t0x00aebefb,\n\t0x00eebefb,\n\t0x002fbefb,\n\t0x006fbefb,\n\t0x00afbefb,\n\t0x00efbefb,\n\t0x0b2cb2cb,\n\t0x1b2cb2cb,\n\t0x2b2cb2cb,\n\t0x3b2cb2cb,\n\t0x0b6cb2cb,\n\t0x1b6cb2cb,\n\t0x2b6cb2cb,\n\t0x3b6cb2cb,\n\t0x0bacb2cb,\n\t0x1bacb2cb,\n\t0x2bacb2cb,\n\t0x3bacb2cb,\n\t0x0becb2cb,\n\t0x1becb2cb,\n\t0x2becb2cb,\n\t0x3becb2cb,\n\t0x0b2db2cb,\n\t0x1b2db2cb,\n\t0x2b2db2cb,\n\t0x3b2db2cb,\n\t0x0b6db2cb,\n\t0x1b6db2cb,\n\t0x2b6db2cb,\n\t0x3b6db2cb,\n\t0x0badb2cb,\n\t0x1badb2cb,\n\t0x2badb2cb,\n\t0x3badb2cb,\n\t0x0bedb2cb,\n\t0x1bedb2cb,\n\t0x2bedb2cb,\n\t0x3bedb2cb,\n\t0x0b2eb2cb,\n\t0x1b2eb2cb,\n\t0x2b2eb2cb,\n\t0x3b2eb2cb,\n\t0x0b6eb2cb,\n\t0x1b6eb2cb,\n\t0x2b6eb2cb,\n\t0x3b6eb2cb,\n\t0x0baeb2cb,\n\t0x1baeb2cb,\n\t0x2baeb2cb,\n\t0x3baeb2cb,\n\t0x0beeb2cb,\n\t0x1beeb2cb,\n\t0x2beeb2cb,\n\t0x3beeb2cb,\n\t0x0b2fb2cb,\n\t0x1b2fb2cb,\n\t0x2b2fb2cb,\n\t0x3b2fb2cb,\n\t0x0b6fb2cb,\n\t0x1b6fb2cb,\n\t0x2b6fb2cb,\n\t0x3b6fb2cb,\n\t0x0bafb2cb,\n\t0x1bafb2cb,\n\t0x2bafb2cb,\n\t0x3bafb2cb,\n\t0x0befb2cb,\n\t0x1befb2cb,\n\t0x2befb2cb,\n\t0x3befb2cb,\n\t0x0b2cb6cb,\n\t0x1b2cb6cb,\n\t0x2b2cb6cb,\n\t0x3b2cb6cb,\n\t0x0b6cb6cb,\n\t0x1b6cb6cb,\n\t0x2b6cb6cb,\n\t0x3b6cb6cb,\n\t0x0bacb6cb,\n\t0x1bacb6cb,\n\t0x2bacb6cb,\n\t0x3bacb6cb,\n\t0x0becb6cb,\n\t0x1becb6cb,\n\t0x2becb6cb,\n\t0x3becb6cb,\n\t0x0b2db6cb,\n\t0x1b2db6cb,\n\t0x2b2db6cb,\n\t0x3b2db6cb,\n\t0x0b6db6cb,\n\t0x1b6db6cb,\n\t0x2b6db6cb,\n\t0x3b6db6cb,\n\t0x0badb6cb,\n\t0x1badb6cb,\n\t0x2badb6cb,\n\t0x3badb6cb,\n\t0x0bedb6cb,\n\t0x1bedb6cb,\n\t0x2bedb6cb,\n\t0x3bedb6cb,\n\t0x0b2eb6cb,\n\t0x1b2eb6cb,\n\t0x2b2eb6cb,\n\t0x3b2eb6cb,\n\t0x0b6eb6cb,\n\t0x1b6eb6cb,\n\t0x2b6eb6cb,\n\t0x3b6eb6cb,\n\t0x0baeb6cb,\n\t0x1baeb6cb,\n\t0x2baeb6cb,\n\t0x3baeb6cb,\n\t0x0beeb6cb,\n\t0x1beeb6cb,\n\t0x2beeb6cb,\n\t0x3beeb6cb,\n\t0x0b2fb6cb,\n\t0x1b2fb6cb,\n\t0x2b2fb6cb,\n\t0x3b2fb6cb,\n\t0x0b6fb6cb,\n\t0x1b6fb6cb,\n\t0x2b6fb6cb,\n\t0x3b6fb6cb,\n\t0x0bafb6cb,\n\t0x1bafb6cb,\n\t0x2bafb6cb,\n\t0x3bafb6cb,\n\t0x0befb6cb,\n\t0x1befb6cb,\n\t0x2befb6cb,\n\t0x3befb6cb,\n\t0x0b2cbacb,\n\t0x1b2cbacb,\n\t0x2b2cbacb,\n\t0x3b2cbacb,\n\t0x0b6cbacb,\n\t0x1b6cbacb,\n\t0x2b6cbacb,\n\t0x3b6cbacb,\n\t0x0bacbacb,\n\t0x1bacbacb,\n\t0x2bacbacb,\n\t0x3bacbacb,\n\t0x0becbacb,\n\t0x1becbacb,\n\t0x2becbacb,\n\t0x3becbacb,\n\t0x0b2dbacb,\n\t0x1b2dbacb,\n\t0x2b2dbacb,\n\t0x3b2dbacb,\n\t0x0b6dbacb,\n\t0x1b6dbacb,\n\t0x2b6dbacb,\n\t0x3b6dbacb,\n\t0x0badbacb,\n\t0x1badbacb,\n\t0x2badbacb,\n\t0x3badbacb,\n\t0x0bedbacb,\n\t0x1bedbacb,\n\t0x2bedbacb,\n\t0x3bedbacb,\n\t0x0b2ebacb,\n\t0x1b2ebacb,\n\t0x2b2ebacb,\n\t0x3b2ebacb,\n\t0x0b6ebacb,\n\t0x1b6ebacb,\n\t0x2b6ebacb,\n\t0x3b6ebacb,\n\t0x0baebacb,\n\t0x1baebacb,\n\t0x2baebacb,\n\t0x3baebacb,\n\t0x0beebacb,\n\t0x1beebacb,\n\t0x2beebacb,\n\t0x3beebacb,\n\t0x0b2fbacb,\n\t0x1b2fbacb,\n\t0x2b2fbacb,\n\t0x3b2fbacb,\n\t0x0b6fbacb,\n\t0x1b6fbacb,\n\t0x2b6fbacb,\n\t0x3b6fbacb,\n\t0x0bafbacb,\n\t0x1bafbacb,\n\t0x2bafbacb,\n\t0x3bafbacb,\n\t0x0befbacb,\n\t0x1befbacb,\n\t0x2befbacb,\n\t0x3befbacb,\n\t0x0b2cbecb,\n\t0x1b2cbecb,\n\t0x2b2cbecb,\n\t0x3b2cbecb,\n\t0x0b6cbecb,\n\t0x1b6cbecb,\n\t0x2b6cbecb,\n\t0x3b6cbecb,\n\t0x0bacbecb,\n\t0x1bacbecb,\n\t0x2bacbecb,\n\t0x3bacbecb,\n\t0x0becbecb,\n\t0x1becbecb,\n\t0x2becbecb,\n\t0x3becbecb,\n\t0x0b2dbecb,\n\t0x1b2dbecb,\n\t0x2b2dbecb,\n\t0x3b2dbecb,\n\t0x0b6dbecb,\n\t0x1b6dbecb,\n\t0x2b6dbecb,\n\t0x3b6dbecb,\n\t0x0badbecb,\n\t0x1badbecb,\n\t0x2badbecb,\n\t0x3badbecb,\n\t0x0bedbecb,\n\t0x1bedbecb,\n\t0x2bedbecb,\n\t0x3bedbecb,\n\t0x0b2ebecb,\n\t0x1b2ebecb,\n\t0x2b2ebecb,\n\t0x3b2ebecb,\n\t0x0b6ebecb,\n\t0x1b6ebecb,\n\t0x2b6ebecb,\n\t0x3b6ebecb,\n\t0x0baebecb,\n\t0x1baebecb,\n\t0x2baebecb,\n\t0x3baebecb,\n\t0x0beebecb,\n\t0x1beebecb,\n\t0x2beebecb,\n\t0x3beebecb,\n\t0x0b2fbecb,\n\t0x1b2fbecb,\n\t0x2b2fbecb,\n\t0x3b2fbecb,\n\t0x0b6fbecb,\n\t0x1b6fbecb,\n\t0x2b6fbecb,\n\t0x3b6fbecb,\n\t0x0bafbecb,\n\t0x1bafbecb,\n\t0x2bafbecb,\n\t0x3bafbecb,\n\t0x0befbecb,\n\t0x1befbecb,\n\t0x2befbecb,\n\t0x3befbecb,\n\t0x0b2cb2db,\n\t0x1b2cb2db,\n\t0x2b2cb2db,\n\t0x3b2cb2db,\n\t0x0b6cb2db,\n\t0x1b6cb2db,\n\t0x2b6cb2db,\n\t0x3b6cb2db,\n\t0x0bacb2db,\n\t0x1bacb2db,\n\t0x2bacb2db,\n\t0x3bacb2db,\n\t0x0becb2db,\n\t0x1becb2db,\n\t0x2becb2db,\n\t0x3becb2db,\n\t0x0b2db2db,\n\t0x1b2db2db,\n\t0x2b2db2db,\n\t0x3b2db2db,\n\t0x0b6db2db,\n\t0x1b6db2db,\n\t0x2b6db2db,\n\t0x3b6db2db,\n\t0x0badb2db,\n\t0x1badb2db,\n\t0x2badb2db,\n\t0x3badb2db,\n\t0x0bedb2db,\n\t0x1bedb2db,\n\t0x2bedb2db,\n\t0x3bedb2db,\n\t0x0b2eb2db,\n\t0x1b2eb2db,\n\t0x2b2eb2db,\n\t0x3b2eb2db,\n\t0x0b6eb2db,\n\t0x1b6eb2db,\n\t0x2b6eb2db,\n\t0x3b6eb2db,\n\t0x0baeb2db,\n\t0x1baeb2db,\n\t0x2baeb2db,\n\t0x3baeb2db,\n\t0x0beeb2db,\n\t0x1beeb2db,\n\t0x2beeb2db,\n\t0x3beeb2db,\n\t0x0b2fb2db,\n\t0x1b2fb2db,\n\t0x2b2fb2db,\n\t0x3b2fb2db,\n\t0x0b6fb2db,\n\t0x1b6fb2db,\n\t0x2b6fb2db,\n\t0x3b6fb2db,\n\t0x0bafb2db,\n\t0x1bafb2db,\n\t0x2bafb2db,\n\t0x3bafb2db,\n\t0x0befb2db,\n\t0x1befb2db,\n\t0x2befb2db,\n\t0x3befb2db,\n\t0x0b2cb6db,\n\t0x1b2cb6db,\n\t0x2b2cb6db,\n\t0x3b2cb6db,\n\t0x0b6cb6db,\n\t0x1b6cb6db,\n\t0x2b6cb6db,\n\t0x3b6cb6db,\n\t0x0bacb6db,\n\t0x1bacb6db,\n\t0x2bacb6db,\n\t0x3bacb6db,\n\t0x0becb6db,\n\t0x1becb6db,\n\t0x2becb6db,\n\t0x3becb6db,\n\t0x0b2db6db,\n\t0x1b2db6db,\n\t0x2b2db6db,\n\t0x3b2db6db,\n\t0x0b6db6db,\n\t0x1b6db6db,\n\t0x2b6db6db,\n\t0x3b6db6db,\n\t0x0badb6db,\n\t0x1badb6db,\n\t0x2badb6db,\n\t0x3badb6db,\n\t0x0bedb6db,\n\t0x1bedb6db,\n\t0x2bedb6db,\n\t0x3bedb6db,\n\t0x0b2eb6db,\n\t0x1b2eb6db,\n\t0x2b2eb6db,\n\t0x3b2eb6db,\n\t0x0b6eb6db,\n\t0x1b6eb6db,\n\t0x2b6eb6db,\n\t0x3b6eb6db,\n\t0x0baeb6db,\n\t0x1baeb6db,\n\t0x2baeb6db,\n\t0x3baeb6db,\n}\n\nvar kNonZeroRepsDepth = [numCommandSymbols]uint32{\n\t6,\n\t6,\n\t6,\n\t6,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t12,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t18,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t24,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n\t30,\n}\n\nvar kStaticCommandCodeBits = [numCommandSymbols]uint16{\n\t0,\n\t256,\n\t128,\n\t384,\n\t64,\n\t320,\n\t192,\n\t448,\n\t32,\n\t288,\n\t160,\n\t416,\n\t96,\n\t352,\n\t224,\n\t480,\n\t16,\n\t272,\n\t144,\n\t400,\n\t80,\n\t336,\n\t208,\n\t464,\n\t48,\n\t304,\n\t176,\n\t432,\n\t112,\n\t368,\n\t240,\n\t496,\n\t8,\n\t264,\n\t136,\n\t392,\n\t72,\n\t328,\n\t200,\n\t456,\n\t40,\n\t296,\n\t168,\n\t424,\n\t104,\n\t360,\n\t232,\n\t488,\n\t24,\n\t280,\n\t152,\n\t408,\n\t88,\n\t344,\n\t216,\n\t472,\n\t56,\n\t312,\n\t184,\n\t440,\n\t120,\n\t376,\n\t248,\n\t504,\n\t4,\n\t260,\n\t132,\n\t388,\n\t68,\n\t324,\n\t196,\n\t452,\n\t36,\n\t292,\n\t164,\n\t420,\n\t100,\n\t356,\n\t228,\n\t484,\n\t20,\n\t276,\n\t148,\n\t404,\n\t84,\n\t340,\n\t212,\n\t468,\n\t52,\n\t308,\n\t180,\n\t436,\n\t116,\n\t372,\n\t244,\n\t500,\n\t12,\n\t268,\n\t140,\n\t396,\n\t76,\n\t332,\n\t204,\n\t460,\n\t44,\n\t300,\n\t172,\n\t428,\n\t108,\n\t364,\n\t236,\n\t492,\n\t28,\n\t284,\n\t156,\n\t412,\n\t92,\n\t348,\n\t220,\n\t476,\n\t60,\n\t316,\n\t188,\n\t444,\n\t124,\n\t380,\n\t252,\n\t508,\n\t2,\n\t258,\n\t130,\n\t386,\n\t66,\n\t322,\n\t194,\n\t450,\n\t34,\n\t290,\n\t162,\n\t418,\n\t98,\n\t354,\n\t226,\n\t482,\n\t18,\n\t274,\n\t146,\n\t402,\n\t82,\n\t338,\n\t210,\n\t466,\n\t50,\n\t306,\n\t178,\n\t434,\n\t114,\n\t370,\n\t242,\n\t498,\n\t10,\n\t266,\n\t138,\n\t394,\n\t74,\n\t330,\n\t202,\n\t458,\n\t42,\n\t298,\n\t170,\n\t426,\n\t106,\n\t362,\n\t234,\n\t490,\n\t26,\n\t282,\n\t154,\n\t410,\n\t90,\n\t346,\n\t218,\n\t474,\n\t58,\n\t314,\n\t186,\n\t442,\n\t122,\n\t378,\n\t250,\n\t506,\n\t6,\n\t262,\n\t134,\n\t390,\n\t70,\n\t326,\n\t198,\n\t454,\n\t38,\n\t294,\n\t166,\n\t422,\n\t102,\n\t358,\n\t230,\n\t486,\n\t22,\n\t278,\n\t150,\n\t406,\n\t86,\n\t342,\n\t214,\n\t470,\n\t54,\n\t310,\n\t182,\n\t438,\n\t118,\n\t374,\n\t246,\n\t502,\n\t14,\n\t270,\n\t142,\n\t398,\n\t78,\n\t334,\n\t206,\n\t462,\n\t46,\n\t302,\n\t174,\n\t430,\n\t110,\n\t366,\n\t238,\n\t494,\n\t30,\n\t286,\n\t158,\n\t414,\n\t94,\n\t350,\n\t222,\n\t478,\n\t62,\n\t318,\n\t190,\n\t446,\n\t126,\n\t382,\n\t254,\n\t510,\n\t1,\n\t257,\n\t129,\n\t385,\n\t65,\n\t321,\n\t193,\n\t449,\n\t33,\n\t289,\n\t161,\n\t417,\n\t97,\n\t353,\n\t225,\n\t481,\n\t17,\n\t273,\n\t145,\n\t401,\n\t81,\n\t337,\n\t209,\n\t465,\n\t49,\n\t305,\n\t177,\n\t433,\n\t113,\n\t369,\n\t241,\n\t497,\n\t9,\n\t265,\n\t137,\n\t393,\n\t73,\n\t329,\n\t201,\n\t457,\n\t41,\n\t297,\n\t169,\n\t425,\n\t105,\n\t361,\n\t233,\n\t489,\n\t25,\n\t281,\n\t153,\n\t409,\n\t89,\n\t345,\n\t217,\n\t473,\n\t57,\n\t313,\n\t185,\n\t441,\n\t121,\n\t377,\n\t249,\n\t505,\n\t5,\n\t261,\n\t133,\n\t389,\n\t69,\n\t325,\n\t197,\n\t453,\n\t37,\n\t293,\n\t165,\n\t421,\n\t101,\n\t357,\n\t229,\n\t485,\n\t21,\n\t277,\n\t149,\n\t405,\n\t85,\n\t341,\n\t213,\n\t469,\n\t53,\n\t309,\n\t181,\n\t437,\n\t117,\n\t373,\n\t245,\n\t501,\n\t13,\n\t269,\n\t141,\n\t397,\n\t77,\n\t333,\n\t205,\n\t461,\n\t45,\n\t301,\n\t173,\n\t429,\n\t109,\n\t365,\n\t237,\n\t493,\n\t29,\n\t285,\n\t157,\n\t413,\n\t93,\n\t349,\n\t221,\n\t477,\n\t61,\n\t317,\n\t189,\n\t445,\n\t125,\n\t381,\n\t253,\n\t509,\n\t3,\n\t259,\n\t131,\n\t387,\n\t67,\n\t323,\n\t195,\n\t451,\n\t35,\n\t291,\n\t163,\n\t419,\n\t99,\n\t355,\n\t227,\n\t483,\n\t19,\n\t275,\n\t147,\n\t403,\n\t83,\n\t339,\n\t211,\n\t467,\n\t51,\n\t307,\n\t179,\n\t435,\n\t115,\n\t371,\n\t243,\n\t499,\n\t11,\n\t267,\n\t139,\n\t395,\n\t75,\n\t331,\n\t203,\n\t459,\n\t43,\n\t299,\n\t171,\n\t427,\n\t107,\n\t363,\n\t235,\n\t491,\n\t27,\n\t283,\n\t155,\n\t411,\n\t91,\n\t347,\n\t219,\n\t475,\n\t59,\n\t315,\n\t187,\n\t443,\n\t123,\n\t379,\n\t251,\n\t507,\n\t7,\n\t1031,\n\t519,\n\t1543,\n\t263,\n\t1287,\n\t775,\n\t1799,\n\t135,\n\t1159,\n\t647,\n\t1671,\n\t391,\n\t1415,\n\t903,\n\t1927,\n\t71,\n\t1095,\n\t583,\n\t1607,\n\t327,\n\t1351,\n\t839,\n\t1863,\n\t199,\n\t1223,\n\t711,\n\t1735,\n\t455,\n\t1479,\n\t967,\n\t1991,\n\t39,\n\t1063,\n\t551,\n\t1575,\n\t295,\n\t1319,\n\t807,\n\t1831,\n\t167,\n\t1191,\n\t679,\n\t1703,\n\t423,\n\t1447,\n\t935,\n\t1959,\n\t103,\n\t1127,\n\t615,\n\t1639,\n\t359,\n\t1383,\n\t871,\n\t1895,\n\t231,\n\t1255,\n\t743,\n\t1767,\n\t487,\n\t1511,\n\t999,\n\t2023,\n\t23,\n\t1047,\n\t535,\n\t1559,\n\t279,\n\t1303,\n\t791,\n\t1815,\n\t151,\n\t1175,\n\t663,\n\t1687,\n\t407,\n\t1431,\n\t919,\n\t1943,\n\t87,\n\t1111,\n\t599,\n\t1623,\n\t343,\n\t1367,\n\t855,\n\t1879,\n\t215,\n\t1239,\n\t727,\n\t1751,\n\t471,\n\t1495,\n\t983,\n\t2007,\n\t55,\n\t1079,\n\t567,\n\t1591,\n\t311,\n\t1335,\n\t823,\n\t1847,\n\t183,\n\t1207,\n\t695,\n\t1719,\n\t439,\n\t1463,\n\t951,\n\t1975,\n\t119,\n\t1143,\n\t631,\n\t1655,\n\t375,\n\t1399,\n\t887,\n\t1911,\n\t247,\n\t1271,\n\t759,\n\t1783,\n\t503,\n\t1527,\n\t1015,\n\t2039,\n\t15,\n\t1039,\n\t527,\n\t1551,\n\t271,\n\t1295,\n\t783,\n\t1807,\n\t143,\n\t1167,\n\t655,\n\t1679,\n\t399,\n\t1423,\n\t911,\n\t1935,\n\t79,\n\t1103,\n\t591,\n\t1615,\n\t335,\n\t1359,\n\t847,\n\t1871,\n\t207,\n\t1231,\n\t719,\n\t1743,\n\t463,\n\t1487,\n\t975,\n\t1999,\n\t47,\n\t1071,\n\t559,\n\t1583,\n\t303,\n\t1327,\n\t815,\n\t1839,\n\t175,\n\t1199,\n\t687,\n\t1711,\n\t431,\n\t1455,\n\t943,\n\t1967,\n\t111,\n\t1135,\n\t623,\n\t1647,\n\t367,\n\t1391,\n\t879,\n\t1903,\n\t239,\n\t1263,\n\t751,\n\t1775,\n\t495,\n\t1519,\n\t1007,\n\t2031,\n\t31,\n\t1055,\n\t543,\n\t1567,\n\t287,\n\t1311,\n\t799,\n\t1823,\n\t159,\n\t1183,\n\t671,\n\t1695,\n\t415,\n\t1439,\n\t927,\n\t1951,\n\t95,\n\t1119,\n\t607,\n\t1631,\n\t351,\n\t1375,\n\t863,\n\t1887,\n\t223,\n\t1247,\n\t735,\n\t1759,\n\t479,\n\t1503,\n\t991,\n\t2015,\n\t63,\n\t1087,\n\t575,\n\t1599,\n\t319,\n\t1343,\n\t831,\n\t1855,\n\t191,\n\t1215,\n\t703,\n\t1727,\n\t447,\n\t1471,\n\t959,\n\t1983,\n\t127,\n\t1151,\n\t639,\n\t1663,\n\t383,\n\t1407,\n\t895,\n\t1919,\n\t255,\n\t1279,\n\t767,\n\t1791,\n\t511,\n\t1535,\n\t1023,\n\t2047,\n}\n\nfunc storeStaticCommandHuffmanTree(bw *bitWriter) {\n\tbw.writeBits(32, 0x16307003)\n\tbw.writeBits(24, 0x926244)\n\tbw.writeBits(3, 0x00000000)\n}\n\nvar kStaticDistanceCodeBits = [64]uint16{\n\t0,\n\t32,\n\t16,\n\t48,\n\t8,\n\t40,\n\t24,\n\t56,\n\t4,\n\t36,\n\t20,\n\t52,\n\t12,\n\t44,\n\t28,\n\t60,\n\t2,\n\t34,\n\t18,\n\t50,\n\t10,\n\t42,\n\t26,\n\t58,\n\t6,\n\t38,\n\t22,\n\t54,\n\t14,\n\t46,\n\t30,\n\t62,\n\t1,\n\t33,\n\t17,\n\t49,\n\t9,\n\t41,\n\t25,\n\t57,\n\t5,\n\t37,\n\t21,\n\t53,\n\t13,\n\t45,\n\t29,\n\t61,\n\t3,\n\t35,\n\t19,\n\t51,\n\t11,\n\t43,\n\t27,\n\t59,\n\t7,\n\t39,\n\t23,\n\t55,\n\t15,\n\t47,\n\t31,\n\t63,\n}\n\nfunc storeStaticDistanceHuffmanTree(bw *bitWriter) {\n\tbw.writeBits(28, 0x0369DC03)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/fast_log.go",
    "content": "package brotli\n\nimport \"math\"\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Utilities for fast computation of logarithms. */\n\nfunc log2FloorNonZero(n uint) uint32 {\n\t/* TODO: generalize and move to platform.h */\n\tvar result uint32 = 0\n\tfor {\n\t\tn >>= 1\n\t\tif n == 0 {\n\t\t\tbreak\n\t\t}\n\t\tresult++\n\t}\n\treturn result\n}\n\n/* A lookup table for small values of log2(int) to be used in entropy\n   computation.\n\n   \", \".join([\"%.16ff\" % x for x in [0.0]+[log2(x) for x in range(1, 256)]]) */\nvar kLog2Table = []float32{\n\t0.0000000000000000,\n\t0.0000000000000000,\n\t1.0000000000000000,\n\t1.5849625007211563,\n\t2.0000000000000000,\n\t2.3219280948873622,\n\t2.5849625007211561,\n\t2.8073549220576042,\n\t3.0000000000000000,\n\t3.1699250014423126,\n\t3.3219280948873626,\n\t3.4594316186372978,\n\t3.5849625007211565,\n\t3.7004397181410922,\n\t3.8073549220576037,\n\t3.9068905956085187,\n\t4.0000000000000000,\n\t4.0874628412503400,\n\t4.1699250014423122,\n\t4.2479275134435852,\n\t4.3219280948873626,\n\t4.3923174227787607,\n\t4.4594316186372973,\n\t4.5235619560570131,\n\t4.5849625007211570,\n\t4.6438561897747244,\n\t4.7004397181410926,\n\t4.7548875021634691,\n\t4.8073549220576037,\n\t4.8579809951275728,\n\t4.9068905956085187,\n\t4.9541963103868758,\n\t5.0000000000000000,\n\t5.0443941193584534,\n\t5.0874628412503400,\n\t5.1292830169449664,\n\t5.1699250014423122,\n\t5.2094533656289501,\n\t5.2479275134435852,\n\t5.2854022188622487,\n\t5.3219280948873626,\n\t5.3575520046180838,\n\t5.3923174227787607,\n\t5.4262647547020979,\n\t5.4594316186372973,\n\t5.4918530963296748,\n\t5.5235619560570131,\n\t5.5545888516776376,\n\t5.5849625007211570,\n\t5.6147098441152083,\n\t5.6438561897747244,\n\t5.6724253419714961,\n\t5.7004397181410926,\n\t5.7279204545631996,\n\t5.7548875021634691,\n\t5.7813597135246599,\n\t5.8073549220576046,\n\t5.8328900141647422,\n\t5.8579809951275719,\n\t5.8826430493618416,\n\t5.9068905956085187,\n\t5.9307373375628867,\n\t5.9541963103868758,\n\t5.9772799234999168,\n\t6.0000000000000000,\n\t6.0223678130284544,\n\t6.0443941193584534,\n\t6.0660891904577721,\n\t6.0874628412503400,\n\t6.1085244567781700,\n\t6.1292830169449672,\n\t6.1497471195046822,\n\t6.1699250014423122,\n\t6.1898245588800176,\n\t6.2094533656289510,\n\t6.2288186904958804,\n\t6.2479275134435861,\n\t6.2667865406949019,\n\t6.2854022188622487,\n\t6.3037807481771031,\n\t6.3219280948873617,\n\t6.3398500028846252,\n\t6.3575520046180847,\n\t6.3750394313469254,\n\t6.3923174227787598,\n\t6.4093909361377026,\n\t6.4262647547020979,\n\t6.4429434958487288,\n\t6.4594316186372982,\n\t6.4757334309663976,\n\t6.4918530963296748,\n\t6.5077946401986964,\n\t6.5235619560570131,\n\t6.5391588111080319,\n\t6.5545888516776376,\n\t6.5698556083309478,\n\t6.5849625007211561,\n\t6.5999128421871278,\n\t6.6147098441152092,\n\t6.6293566200796095,\n\t6.6438561897747253,\n\t6.6582114827517955,\n\t6.6724253419714952,\n\t6.6865005271832185,\n\t6.7004397181410917,\n\t6.7142455176661224,\n\t6.7279204545631988,\n\t6.7414669864011465,\n\t6.7548875021634691,\n\t6.7681843247769260,\n\t6.7813597135246599,\n\t6.7944158663501062,\n\t6.8073549220576037,\n\t6.8201789624151887,\n\t6.8328900141647422,\n\t6.8454900509443757,\n\t6.8579809951275719,\n\t6.8703647195834048,\n\t6.8826430493618416,\n\t6.8948177633079437,\n\t6.9068905956085187,\n\t6.9188632372745955,\n\t6.9307373375628867,\n\t6.9425145053392399,\n\t6.9541963103868758,\n\t6.9657842846620879,\n\t6.9772799234999168,\n\t6.9886846867721664,\n\t7.0000000000000000,\n\t7.0112272554232540,\n\t7.0223678130284544,\n\t7.0334230015374501,\n\t7.0443941193584534,\n\t7.0552824355011898,\n\t7.0660891904577721,\n\t7.0768155970508317,\n\t7.0874628412503400,\n\t7.0980320829605272,\n\t7.1085244567781700,\n\t7.1189410727235076,\n\t7.1292830169449664,\n\t7.1395513523987937,\n\t7.1497471195046822,\n\t7.1598713367783891,\n\t7.1699250014423130,\n\t7.1799090900149345,\n\t7.1898245588800176,\n\t7.1996723448363644,\n\t7.2094533656289492,\n\t7.2191685204621621,\n\t7.2288186904958804,\n\t7.2384047393250794,\n\t7.2479275134435861,\n\t7.2573878426926521,\n\t7.2667865406949019,\n\t7.2761244052742384,\n\t7.2854022188622487,\n\t7.2946207488916270,\n\t7.3037807481771031,\n\t7.3128829552843557,\n\t7.3219280948873617,\n\t7.3309168781146177,\n\t7.3398500028846243,\n\t7.3487281542310781,\n\t7.3575520046180847,\n\t7.3663222142458151,\n\t7.3750394313469254,\n\t7.3837042924740528,\n\t7.3923174227787607,\n\t7.4008794362821844,\n\t7.4093909361377026,\n\t7.4178525148858991,\n\t7.4262647547020979,\n\t7.4346282276367255,\n\t7.4429434958487288,\n\t7.4512111118323299,\n\t7.4594316186372973,\n\t7.4676055500829976,\n\t7.4757334309663976,\n\t7.4838157772642564,\n\t7.4918530963296748,\n\t7.4998458870832057,\n\t7.5077946401986964,\n\t7.5156998382840436,\n\t7.5235619560570131,\n\t7.5313814605163119,\n\t7.5391588111080319,\n\t7.5468944598876373,\n\t7.5545888516776376,\n\t7.5622424242210728,\n\t7.5698556083309478,\n\t7.5774288280357487,\n\t7.5849625007211561,\n\t7.5924570372680806,\n\t7.5999128421871278,\n\t7.6073303137496113,\n\t7.6147098441152075,\n\t7.6220518194563764,\n\t7.6293566200796095,\n\t7.6366246205436488,\n\t7.6438561897747244,\n\t7.6510516911789290,\n\t7.6582114827517955,\n\t7.6653359171851765,\n\t7.6724253419714952,\n\t7.6794800995054464,\n\t7.6865005271832185,\n\t7.6934869574993252,\n\t7.7004397181410926,\n\t7.7073591320808825,\n\t7.7142455176661224,\n\t7.7210991887071856,\n\t7.7279204545631996,\n\t7.7347096202258392,\n\t7.7414669864011465,\n\t7.7481928495894596,\n\t7.7548875021634691,\n\t7.7615512324444795,\n\t7.7681843247769260,\n\t7.7747870596011737,\n\t7.7813597135246608,\n\t7.7879025593914317,\n\t7.7944158663501062,\n\t7.8008998999203047,\n\t7.8073549220576037,\n\t7.8137811912170374,\n\t7.8201789624151887,\n\t7.8265484872909159,\n\t7.8328900141647422,\n\t7.8392037880969445,\n\t7.8454900509443757,\n\t7.8517490414160571,\n\t7.8579809951275719,\n\t7.8641861446542798,\n\t7.8703647195834048,\n\t7.8765169465650002,\n\t7.8826430493618425,\n\t7.8887432488982601,\n\t7.8948177633079446,\n\t7.9008668079807496,\n\t7.9068905956085187,\n\t7.9128893362299619,\n\t7.9188632372745955,\n\t7.9248125036057813,\n\t7.9307373375628867,\n\t7.9366379390025719,\n\t7.9425145053392399,\n\t7.9483672315846778,\n\t7.9541963103868758,\n\t7.9600019320680806,\n\t7.9657842846620870,\n\t7.9715435539507720,\n\t7.9772799234999168,\n\t7.9829935746943104,\n\t7.9886846867721664,\n\t7.9943534368588578,\n}\n\n/* Faster logarithm for small integers, with the property of log2(0) == 0. */\nfunc fastLog2(v uint) float64 {\n\tif v < uint(len(kLog2Table)) {\n\t\treturn float64(kLog2Table[v])\n\t}\n\n\treturn math.Log2(float64(v))\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/find_match_length.go",
    "content": "package brotli\n\nimport (\n\t\"encoding/binary\"\n\t\"math/bits\"\n\t\"runtime\"\n)\n\n/* Copyright 2010 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Function to find maximal matching prefixes of strings. */\nfunc findMatchLengthWithLimit(s1 []byte, s2 []byte, limit uint) uint {\n\tvar matched uint = 0\n\t_, _ = s1[limit-1], s2[limit-1] // bounds check\n\tswitch runtime.GOARCH {\n\tcase \"amd64\":\n\t\t// Compare 8 bytes at at time.\n\t\tfor matched+8 <= limit {\n\t\t\tw1 := binary.LittleEndian.Uint64(s1[matched:])\n\t\t\tw2 := binary.LittleEndian.Uint64(s2[matched:])\n\t\t\tif w1 != w2 {\n\t\t\t\treturn matched + uint(bits.TrailingZeros64(w1^w2)>>3)\n\t\t\t}\n\t\t\tmatched += 8\n\t\t}\n\tcase \"386\":\n\t\t// Compare 4 bytes at at time.\n\t\tfor matched+4 <= limit {\n\t\t\tw1 := binary.LittleEndian.Uint32(s1[matched:])\n\t\t\tw2 := binary.LittleEndian.Uint32(s2[matched:])\n\t\t\tif w1 != w2 {\n\t\t\t\treturn matched + uint(bits.TrailingZeros32(w1^w2)>>3)\n\t\t\t}\n\t\t\tmatched += 4\n\t\t}\n\t}\n\tfor matched < limit && s1[matched] == s2[matched] {\n\t\tmatched++\n\t}\n\treturn matched\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/go.mod",
    "content": "module github.com/andybalholm/brotli\n\ngo 1.12\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/go.sum",
    "content": ""
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/h10.go",
    "content": "package brotli\n\nimport \"encoding/binary\"\n\n/* Copyright 2016 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\nfunc (*h10) HashTypeLength() uint {\n\treturn 4\n}\n\nfunc (*h10) StoreLookahead() uint {\n\treturn 128\n}\n\nfunc hashBytesH10(data []byte) uint32 {\n\tvar h uint32 = binary.LittleEndian.Uint32(data) * kHashMul32\n\n\t/* The higher bits contain more mixture from the multiplication,\n\t   so we take our results from there. */\n\treturn h >> (32 - 17)\n}\n\n/* A (forgetful) hash table where each hash bucket contains a binary tree of\n   sequences whose first 4 bytes share the same hash code.\n   Each sequence is 128 long and is identified by its starting\n   position in the input data. The binary tree is sorted by the lexicographic\n   order of the sequences, and it is also a max-heap with respect to the\n   starting positions. */\ntype h10 struct {\n\thasherCommon\n\twindow_mask_ uint\n\tbuckets_     [1 << 17]uint32\n\tinvalid_pos_ uint32\n\tforest       []uint32\n}\n\nfunc (h *h10) Initialize(params *encoderParams) {\n\th.window_mask_ = (1 << params.lgwin) - 1\n\th.invalid_pos_ = uint32(0 - h.window_mask_)\n\tvar num_nodes uint = uint(1) << params.lgwin\n\th.forest = make([]uint32, 2*num_nodes)\n}\n\nfunc (h *h10) Prepare(one_shot bool, input_size uint, data []byte) {\n\tvar invalid_pos uint32 = h.invalid_pos_\n\tvar i uint32\n\tfor i = 0; i < 1<<17; i++ {\n\t\th.buckets_[i] = invalid_pos\n\t}\n}\n\nfunc leftChildIndexH10(self *h10, pos uint) uint {\n\treturn 2 * (pos & self.window_mask_)\n}\n\nfunc rightChildIndexH10(self *h10, pos uint) uint {\n\treturn 2*(pos&self.window_mask_) + 1\n}\n\n/* Stores the hash of the next 4 bytes and in a single tree-traversal, the\n   hash bucket's binary tree is searched for matches and is re-rooted at the\n   current position.\n\n   If less than 128 data is available, the hash bucket of the\n   current position is searched for matches, but the state of the hash table\n   is not changed, since we can not know the final sorting order of the\n   current (incomplete) sequence.\n\n   This function must be called with increasing cur_ix positions. */\nfunc storeAndFindMatchesH10(self *h10, data []byte, cur_ix uint, ring_buffer_mask uint, max_length uint, max_backward uint, best_len *uint, matches []backwardMatch) []backwardMatch {\n\tvar cur_ix_masked uint = cur_ix & ring_buffer_mask\n\tvar max_comp_len uint = brotli_min_size_t(max_length, 128)\n\tvar should_reroot_tree bool = (max_length >= 128)\n\tvar key uint32 = hashBytesH10(data[cur_ix_masked:])\n\tvar forest []uint32 = self.forest\n\tvar prev_ix uint = uint(self.buckets_[key])\n\tvar node_left uint = leftChildIndexH10(self, cur_ix)\n\tvar node_right uint = rightChildIndexH10(self, cur_ix)\n\tvar best_len_left uint = 0\n\tvar best_len_right uint = 0\n\tvar depth_remaining uint\n\t/* The forest index of the rightmost node of the left subtree of the new\n\t   root, updated as we traverse and re-root the tree of the hash bucket. */\n\n\t/* The forest index of the leftmost node of the right subtree of the new\n\t   root, updated as we traverse and re-root the tree of the hash bucket. */\n\n\t/* The match length of the rightmost node of the left subtree of the new\n\t   root, updated as we traverse and re-root the tree of the hash bucket. */\n\n\t/* The match length of the leftmost node of the right subtree of the new\n\t   root, updated as we traverse and re-root the tree of the hash bucket. */\n\tif should_reroot_tree {\n\t\tself.buckets_[key] = uint32(cur_ix)\n\t}\n\n\tfor depth_remaining = 64; ; depth_remaining-- {\n\t\tvar backward uint = cur_ix - prev_ix\n\t\tvar prev_ix_masked uint = prev_ix & ring_buffer_mask\n\t\tif backward == 0 || backward > max_backward || depth_remaining == 0 {\n\t\t\tif should_reroot_tree {\n\t\t\t\tforest[node_left] = self.invalid_pos_\n\t\t\t\tforest[node_right] = self.invalid_pos_\n\t\t\t}\n\n\t\t\tbreak\n\t\t}\n\t\t{\n\t\t\tvar cur_len uint = brotli_min_size_t(best_len_left, best_len_right)\n\t\t\tvar len uint\n\t\t\tassert(cur_len <= 128)\n\t\t\tlen = cur_len + findMatchLengthWithLimit(data[cur_ix_masked+cur_len:], data[prev_ix_masked+cur_len:], max_length-cur_len)\n\t\t\tif matches != nil && len > *best_len {\n\t\t\t\t*best_len = uint(len)\n\t\t\t\tinitBackwardMatch(&matches[0], backward, uint(len))\n\t\t\t\tmatches = matches[1:]\n\t\t\t}\n\n\t\t\tif len >= max_comp_len {\n\t\t\t\tif should_reroot_tree {\n\t\t\t\t\tforest[node_left] = forest[leftChildIndexH10(self, prev_ix)]\n\t\t\t\t\tforest[node_right] = forest[rightChildIndexH10(self, prev_ix)]\n\t\t\t\t}\n\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif data[cur_ix_masked+len] > data[prev_ix_masked+len] {\n\t\t\t\tbest_len_left = uint(len)\n\t\t\t\tif should_reroot_tree {\n\t\t\t\t\tforest[node_left] = uint32(prev_ix)\n\t\t\t\t}\n\n\t\t\t\tnode_left = rightChildIndexH10(self, prev_ix)\n\t\t\t\tprev_ix = uint(forest[node_left])\n\t\t\t} else {\n\t\t\t\tbest_len_right = uint(len)\n\t\t\t\tif should_reroot_tree {\n\t\t\t\t\tforest[node_right] = uint32(prev_ix)\n\t\t\t\t}\n\n\t\t\t\tnode_right = leftChildIndexH10(self, prev_ix)\n\t\t\t\tprev_ix = uint(forest[node_right])\n\t\t\t}\n\t\t}\n\t}\n\n\treturn matches\n}\n\n/* Finds all backward matches of &data[cur_ix & ring_buffer_mask] up to the\n   length of max_length and stores the position cur_ix in the hash table.\n\n   Sets *num_matches to the number of matches found, and stores the found\n   matches in matches[0] to matches[*num_matches - 1]. The matches will be\n   sorted by strictly increasing length and (non-strictly) increasing\n   distance. */\nfunc findAllMatchesH10(handle *h10, dictionary *encoderDictionary, data []byte, ring_buffer_mask uint, cur_ix uint, max_length uint, max_backward uint, gap uint, params *encoderParams, matches []backwardMatch) uint {\n\tvar orig_matches []backwardMatch = matches\n\tvar cur_ix_masked uint = cur_ix & ring_buffer_mask\n\tvar best_len uint = 1\n\tvar short_match_max_backward uint\n\tif params.quality != hqZopflificationQuality {\n\t\tshort_match_max_backward = 16\n\t} else {\n\t\tshort_match_max_backward = 64\n\t}\n\tvar stop uint = cur_ix - short_match_max_backward\n\tvar dict_matches [maxStaticDictionaryMatchLen + 1]uint32\n\tvar i uint\n\tif cur_ix < short_match_max_backward {\n\t\tstop = 0\n\t}\n\tfor i = cur_ix - 1; i > stop && best_len <= 2; i-- {\n\t\tvar prev_ix uint = i\n\t\tvar backward uint = cur_ix - prev_ix\n\t\tif backward > max_backward {\n\t\t\tbreak\n\t\t}\n\n\t\tprev_ix &= ring_buffer_mask\n\t\tif data[cur_ix_masked] != data[prev_ix] || data[cur_ix_masked+1] != data[prev_ix+1] {\n\t\t\tcontinue\n\t\t}\n\t\t{\n\t\t\tvar len uint = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\t\tif len > best_len {\n\t\t\t\tbest_len = uint(len)\n\t\t\t\tinitBackwardMatch(&matches[0], backward, uint(len))\n\t\t\t\tmatches = matches[1:]\n\t\t\t}\n\t\t}\n\t}\n\n\tif best_len < max_length {\n\t\tmatches = storeAndFindMatchesH10(handle, data, cur_ix, ring_buffer_mask, max_length, max_backward, &best_len, matches)\n\t}\n\n\tfor i = 0; i <= maxStaticDictionaryMatchLen; i++ {\n\t\tdict_matches[i] = kInvalidMatch\n\t}\n\t{\n\t\tvar minlen uint = brotli_max_size_t(4, best_len+1)\n\t\tif findAllStaticDictionaryMatches(dictionary, data[cur_ix_masked:], minlen, max_length, dict_matches[0:]) {\n\t\t\tvar maxlen uint = brotli_min_size_t(maxStaticDictionaryMatchLen, max_length)\n\t\t\tvar l uint\n\t\t\tfor l = minlen; l <= maxlen; l++ {\n\t\t\t\tvar dict_id uint32 = dict_matches[l]\n\t\t\t\tif dict_id < kInvalidMatch {\n\t\t\t\t\tvar distance uint = max_backward + gap + uint(dict_id>>5) + 1\n\t\t\t\t\tif distance <= params.dist.max_distance {\n\t\t\t\t\t\tinitDictionaryBackwardMatch(&matches[0], distance, l, uint(dict_id&31))\n\t\t\t\t\t\tmatches = matches[1:]\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn uint(-cap(matches) + cap(orig_matches))\n}\n\n/* Stores the hash of the next 4 bytes and re-roots the binary tree at the\n   current sequence, without returning any matches.\n   REQUIRES: ix + 128 <= end-of-current-block */\nfunc (h *h10) Store(data []byte, mask uint, ix uint) {\n\tvar max_backward uint = h.window_mask_ - windowGap + 1\n\t/* Maximum distance is window size - 16, see section 9.1. of the spec. */\n\tstoreAndFindMatchesH10(h, data, ix, mask, 128, max_backward, nil, nil)\n}\n\nfunc (h *h10) StoreRange(data []byte, mask uint, ix_start uint, ix_end uint) {\n\tvar i uint = ix_start\n\tvar j uint = ix_start\n\tif ix_start+63 <= ix_end {\n\t\ti = ix_end - 63\n\t}\n\n\tif ix_start+512 <= i {\n\t\tfor ; j < i; j += 8 {\n\t\t\th.Store(data, mask, j)\n\t\t}\n\t}\n\n\tfor ; i < ix_end; i++ {\n\t\th.Store(data, mask, i)\n\t}\n}\n\nfunc (h *h10) StitchToPreviousBlock(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint) {\n\tif num_bytes >= h.HashTypeLength()-1 && position >= 128 {\n\t\tvar i_start uint = position - 128 + 1\n\t\tvar i_end uint = brotli_min_size_t(position, i_start+num_bytes)\n\t\t/* Store the last `128 - 1` positions in the hasher.\n\t\t   These could not be calculated before, since they require knowledge\n\t\t   of both the previous and the current block. */\n\n\t\tvar i uint\n\t\tfor i = i_start; i < i_end; i++ {\n\t\t\t/* Maximum distance is window size - 16, see section 9.1. of the spec.\n\t\t\t   Furthermore, we have to make sure that we don't look further back\n\t\t\t   from the start of the next block than the window size, otherwise we\n\t\t\t   could access already overwritten areas of the ring-buffer. */\n\t\t\tvar max_backward uint = h.window_mask_ - brotli_max_size_t(windowGap-1, position-i)\n\n\t\t\t/* We know that i + 128 <= position + num_bytes, i.e. the\n\t\t\t   end of the current block and that we have at least\n\t\t\t   128 tail in the ring-buffer. */\n\t\t\tstoreAndFindMatchesH10(h, ringbuffer, i, ringbuffer_mask, 128, max_backward, nil, nil)\n\t\t}\n\t}\n}\n\n/* MAX_NUM_MATCHES == 64 + MAX_TREE_SEARCH_DEPTH */\nconst maxNumMatchesH10 = 128\n\nfunc (*h10) FindLongestMatch(dictionary *encoderDictionary, data []byte, ring_buffer_mask uint, distance_cache []int, cur_ix uint, max_length uint, max_backward uint, gap uint, max_distance uint, out *hasherSearchResult) {\n\tpanic(\"unimplemented\")\n}\n\nfunc (*h10) PrepareDistanceCache(distance_cache []int) {\n\tpanic(\"unimplemented\")\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/h5.go",
    "content": "package brotli\n\nimport \"encoding/binary\"\n\n/* Copyright 2010 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* A (forgetful) hash table to the data seen by the compressor, to\n   help create backward references to previous data.\n\n   This is a hash map of fixed size (bucket_size_) to a ring buffer of\n   fixed size (block_size_). The ring buffer contains the last block_size_\n   index positions of the given hash key in the compressed data. */\nfunc (*h5) HashTypeLength() uint {\n\treturn 4\n}\n\nfunc (*h5) StoreLookahead() uint {\n\treturn 4\n}\n\n/* HashBytes is the function that chooses the bucket to place the address in. */\nfunc hashBytesH5(data []byte, shift int) uint32 {\n\tvar h uint32 = binary.LittleEndian.Uint32(data) * kHashMul32\n\n\t/* The higher bits contain more mixture from the multiplication,\n\t   so we take our results from there. */\n\treturn uint32(h >> uint(shift))\n}\n\ntype h5 struct {\n\thasherCommon\n\tbucket_size_ uint\n\tblock_size_  uint\n\thash_shift_  int\n\tblock_mask_  uint32\n\tnum          []uint16\n\tbuckets      []uint32\n}\n\nfunc (h *h5) Initialize(params *encoderParams) {\n\th.hash_shift_ = 32 - h.params.bucket_bits\n\th.bucket_size_ = uint(1) << uint(h.params.bucket_bits)\n\th.block_size_ = uint(1) << uint(h.params.block_bits)\n\th.block_mask_ = uint32(h.block_size_ - 1)\n\th.num = make([]uint16, h.bucket_size_)\n\th.buckets = make([]uint32, h.block_size_*h.bucket_size_)\n}\n\nfunc (h *h5) Prepare(one_shot bool, input_size uint, data []byte) {\n\tvar num []uint16 = h.num\n\tvar partial_prepare_threshold uint = h.bucket_size_ >> 6\n\t/* Partial preparation is 100 times slower (per socket). */\n\tif one_shot && input_size <= partial_prepare_threshold {\n\t\tvar i uint\n\t\tfor i = 0; i < input_size; i++ {\n\t\t\tvar key uint32 = hashBytesH5(data[i:], h.hash_shift_)\n\t\t\tnum[key] = 0\n\t\t}\n\t} else {\n\t\tfor i := 0; i < int(h.bucket_size_); i++ {\n\t\t\tnum[i] = 0\n\t\t}\n\t}\n}\n\n/* Look at 4 bytes at &data[ix & mask].\n   Compute a hash from these, and store the value of ix at that position. */\nfunc (h *h5) Store(data []byte, mask uint, ix uint) {\n\tvar num []uint16 = h.num\n\tvar key uint32 = hashBytesH5(data[ix&mask:], h.hash_shift_)\n\tvar minor_ix uint = uint(num[key]) & uint(h.block_mask_)\n\tvar offset uint = minor_ix + uint(key<<uint(h.params.block_bits))\n\th.buckets[offset] = uint32(ix)\n\tnum[key]++\n}\n\nfunc (h *h5) StoreRange(data []byte, mask uint, ix_start uint, ix_end uint) {\n\tvar i uint\n\tfor i = ix_start; i < ix_end; i++ {\n\t\th.Store(data, mask, i)\n\t}\n}\n\nfunc (h *h5) StitchToPreviousBlock(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint) {\n\tif num_bytes >= h.HashTypeLength()-1 && position >= 3 {\n\t\t/* Prepare the hashes for three last bytes of the last write.\n\t\t   These could not be calculated before, since they require knowledge\n\t\t   of both the previous and the current block. */\n\t\th.Store(ringbuffer, ringbuffer_mask, position-3)\n\t\th.Store(ringbuffer, ringbuffer_mask, position-2)\n\t\th.Store(ringbuffer, ringbuffer_mask, position-1)\n\t}\n}\n\nfunc (h *h5) PrepareDistanceCache(distance_cache []int) {\n\tprepareDistanceCache(distance_cache, h.params.num_last_distances_to_check)\n}\n\n/* Find a longest backward match of &data[cur_ix] up to the length of\n   max_length and stores the position cur_ix in the hash table.\n\n   REQUIRES: PrepareDistanceCacheH5 must be invoked for current distance cache\n             values; if this method is invoked repeatedly with the same distance\n             cache values, it is enough to invoke PrepareDistanceCacheH5 once.\n\n   Does not look for matches longer than max_length.\n   Does not look for matches further away than max_backward.\n   Writes the best match into |out|.\n   |out|->score is updated only if a better match is found. */\nfunc (h *h5) FindLongestMatch(dictionary *encoderDictionary, data []byte, ring_buffer_mask uint, distance_cache []int, cur_ix uint, max_length uint, max_backward uint, gap uint, max_distance uint, out *hasherSearchResult) {\n\tvar num []uint16 = h.num\n\tvar buckets []uint32 = h.buckets\n\tvar cur_ix_masked uint = cur_ix & ring_buffer_mask\n\tvar min_score uint = out.score\n\tvar best_score uint = out.score\n\tvar best_len uint = out.len\n\tvar i uint\n\tvar bucket []uint32\n\t/* Don't accept a short copy from far away. */\n\tout.len = 0\n\n\tout.len_code_delta = 0\n\n\t/* Try last distance first. */\n\tfor i = 0; i < uint(h.params.num_last_distances_to_check); i++ {\n\t\tvar backward uint = uint(distance_cache[i])\n\t\tvar prev_ix uint = uint(cur_ix - backward)\n\t\tif prev_ix >= cur_ix {\n\t\t\tcontinue\n\t\t}\n\n\t\tif backward > max_backward {\n\t\t\tcontinue\n\t\t}\n\n\t\tprev_ix &= ring_buffer_mask\n\n\t\tif cur_ix_masked+best_len > ring_buffer_mask || prev_ix+best_len > ring_buffer_mask || data[cur_ix_masked+best_len] != data[prev_ix+best_len] {\n\t\t\tcontinue\n\t\t}\n\t\t{\n\t\t\tvar len uint = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\t\tif len >= 3 || (len == 2 && i < 2) {\n\t\t\t\t/* Comparing for >= 2 does not change the semantics, but just saves for\n\t\t\t\t   a few unnecessary binary logarithms in backward reference score,\n\t\t\t\t   since we are not interested in such short matches. */\n\t\t\t\tvar score uint = backwardReferenceScoreUsingLastDistance(uint(len))\n\t\t\t\tif best_score < score {\n\t\t\t\t\tif i != 0 {\n\t\t\t\t\t\tscore -= backwardReferencePenaltyUsingLastDistance(i)\n\t\t\t\t\t}\n\t\t\t\t\tif best_score < score {\n\t\t\t\t\t\tbest_score = score\n\t\t\t\t\t\tbest_len = uint(len)\n\t\t\t\t\t\tout.len = best_len\n\t\t\t\t\t\tout.distance = backward\n\t\t\t\t\t\tout.score = best_score\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t{\n\t\tvar key uint32 = hashBytesH5(data[cur_ix_masked:], h.hash_shift_)\n\t\tbucket = buckets[key<<uint(h.params.block_bits):]\n\t\tvar down uint\n\t\tif uint(num[key]) > h.block_size_ {\n\t\t\tdown = uint(num[key]) - h.block_size_\n\t\t} else {\n\t\t\tdown = 0\n\t\t}\n\t\tfor i = uint(num[key]); i > down; {\n\t\t\tvar prev_ix uint\n\t\t\ti--\n\t\t\tprev_ix = uint(bucket[uint32(i)&h.block_mask_])\n\t\t\tvar backward uint = cur_ix - prev_ix\n\t\t\tif backward > max_backward {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tprev_ix &= ring_buffer_mask\n\t\t\tif cur_ix_masked+best_len > ring_buffer_mask || prev_ix+best_len > ring_buffer_mask || data[cur_ix_masked+best_len] != data[prev_ix+best_len] {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t{\n\t\t\t\tvar len uint = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\t\t\tif len >= 4 {\n\t\t\t\t\t/* Comparing for >= 3 does not change the semantics, but just saves\n\t\t\t\t\t   for a few unnecessary binary logarithms in backward reference\n\t\t\t\t\t   score, since we are not interested in such short matches. */\n\t\t\t\t\tvar score uint = backwardReferenceScore(uint(len), backward)\n\t\t\t\t\tif best_score < score {\n\t\t\t\t\t\tbest_score = score\n\t\t\t\t\t\tbest_len = uint(len)\n\t\t\t\t\t\tout.len = best_len\n\t\t\t\t\t\tout.distance = backward\n\t\t\t\t\t\tout.score = best_score\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tbucket[uint32(num[key])&h.block_mask_] = uint32(cur_ix)\n\t\tnum[key]++\n\t}\n\n\tif min_score == out.score {\n\t\tsearchInStaticDictionary(dictionary, h, data[cur_ix_masked:], max_length, max_backward+gap, max_distance, out, false)\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/h6.go",
    "content": "package brotli\n\nimport \"encoding/binary\"\n\n/* Copyright 2010 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* A (forgetful) hash table to the data seen by the compressor, to\n   help create backward references to previous data.\n\n   This is a hash map of fixed size (bucket_size_) to a ring buffer of\n   fixed size (block_size_). The ring buffer contains the last block_size_\n   index positions of the given hash key in the compressed data. */\nfunc (*h6) HashTypeLength() uint {\n\treturn 8\n}\n\nfunc (*h6) StoreLookahead() uint {\n\treturn 8\n}\n\n/* HashBytes is the function that chooses the bucket to place the address in. */\nfunc hashBytesH6(data []byte, mask uint64, shift int) uint32 {\n\tvar h uint64 = (binary.LittleEndian.Uint64(data) & mask) * kHashMul64Long\n\n\t/* The higher bits contain more mixture from the multiplication,\n\t   so we take our results from there. */\n\treturn uint32(h >> uint(shift))\n}\n\ntype h6 struct {\n\thasherCommon\n\tbucket_size_ uint\n\tblock_size_  uint\n\thash_shift_  int\n\thash_mask_   uint64\n\tblock_mask_  uint32\n\tnum          []uint16\n\tbuckets      []uint32\n}\n\nfunc (h *h6) Initialize(params *encoderParams) {\n\th.hash_shift_ = 64 - h.params.bucket_bits\n\th.hash_mask_ = (^(uint64(0))) >> uint(64-8*h.params.hash_len)\n\th.bucket_size_ = uint(1) << uint(h.params.bucket_bits)\n\th.block_size_ = uint(1) << uint(h.params.block_bits)\n\th.block_mask_ = uint32(h.block_size_ - 1)\n\th.num = make([]uint16, h.bucket_size_)\n\th.buckets = make([]uint32, h.block_size_*h.bucket_size_)\n}\n\nfunc (h *h6) Prepare(one_shot bool, input_size uint, data []byte) {\n\tvar num []uint16 = h.num\n\tvar partial_prepare_threshold uint = h.bucket_size_ >> 6\n\t/* Partial preparation is 100 times slower (per socket). */\n\tif one_shot && input_size <= partial_prepare_threshold {\n\t\tvar i uint\n\t\tfor i = 0; i < input_size; i++ {\n\t\t\tvar key uint32 = hashBytesH6(data[i:], h.hash_mask_, h.hash_shift_)\n\t\t\tnum[key] = 0\n\t\t}\n\t} else {\n\t\tfor i := 0; i < int(h.bucket_size_); i++ {\n\t\t\tnum[i] = 0\n\t\t}\n\t}\n}\n\n/* Look at 4 bytes at &data[ix & mask].\n   Compute a hash from these, and store the value of ix at that position. */\nfunc (h *h6) Store(data []byte, mask uint, ix uint) {\n\tvar num []uint16 = h.num\n\tvar key uint32 = hashBytesH6(data[ix&mask:], h.hash_mask_, h.hash_shift_)\n\tvar minor_ix uint = uint(num[key]) & uint(h.block_mask_)\n\tvar offset uint = minor_ix + uint(key<<uint(h.params.block_bits))\n\th.buckets[offset] = uint32(ix)\n\tnum[key]++\n}\n\nfunc (h *h6) StoreRange(data []byte, mask uint, ix_start uint, ix_end uint) {\n\tvar i uint\n\tfor i = ix_start; i < ix_end; i++ {\n\t\th.Store(data, mask, i)\n\t}\n}\n\nfunc (h *h6) StitchToPreviousBlock(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint) {\n\tif num_bytes >= h.HashTypeLength()-1 && position >= 3 {\n\t\t/* Prepare the hashes for three last bytes of the last write.\n\t\t   These could not be calculated before, since they require knowledge\n\t\t   of both the previous and the current block. */\n\t\th.Store(ringbuffer, ringbuffer_mask, position-3)\n\t\th.Store(ringbuffer, ringbuffer_mask, position-2)\n\t\th.Store(ringbuffer, ringbuffer_mask, position-1)\n\t}\n}\n\nfunc (h *h6) PrepareDistanceCache(distance_cache []int) {\n\tprepareDistanceCache(distance_cache, h.params.num_last_distances_to_check)\n}\n\n/* Find a longest backward match of &data[cur_ix] up to the length of\n   max_length and stores the position cur_ix in the hash table.\n\n   REQUIRES: PrepareDistanceCacheH6 must be invoked for current distance cache\n             values; if this method is invoked repeatedly with the same distance\n             cache values, it is enough to invoke PrepareDistanceCacheH6 once.\n\n   Does not look for matches longer than max_length.\n   Does not look for matches further away than max_backward.\n   Writes the best match into |out|.\n   |out|->score is updated only if a better match is found. */\nfunc (h *h6) FindLongestMatch(dictionary *encoderDictionary, data []byte, ring_buffer_mask uint, distance_cache []int, cur_ix uint, max_length uint, max_backward uint, gap uint, max_distance uint, out *hasherSearchResult) {\n\tvar num []uint16 = h.num\n\tvar buckets []uint32 = h.buckets\n\tvar cur_ix_masked uint = cur_ix & ring_buffer_mask\n\tvar min_score uint = out.score\n\tvar best_score uint = out.score\n\tvar best_len uint = out.len\n\tvar i uint\n\tvar bucket []uint32\n\t/* Don't accept a short copy from far away. */\n\tout.len = 0\n\n\tout.len_code_delta = 0\n\n\t/* Try last distance first. */\n\tfor i = 0; i < uint(h.params.num_last_distances_to_check); i++ {\n\t\tvar backward uint = uint(distance_cache[i])\n\t\tvar prev_ix uint = uint(cur_ix - backward)\n\t\tif prev_ix >= cur_ix {\n\t\t\tcontinue\n\t\t}\n\n\t\tif backward > max_backward {\n\t\t\tcontinue\n\t\t}\n\n\t\tprev_ix &= ring_buffer_mask\n\n\t\tif cur_ix_masked+best_len > ring_buffer_mask || prev_ix+best_len > ring_buffer_mask || data[cur_ix_masked+best_len] != data[prev_ix+best_len] {\n\t\t\tcontinue\n\t\t}\n\t\t{\n\t\t\tvar len uint = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\t\tif len >= 3 || (len == 2 && i < 2) {\n\t\t\t\t/* Comparing for >= 2 does not change the semantics, but just saves for\n\t\t\t\t   a few unnecessary binary logarithms in backward reference score,\n\t\t\t\t   since we are not interested in such short matches. */\n\t\t\t\tvar score uint = backwardReferenceScoreUsingLastDistance(uint(len))\n\t\t\t\tif best_score < score {\n\t\t\t\t\tif i != 0 {\n\t\t\t\t\t\tscore -= backwardReferencePenaltyUsingLastDistance(i)\n\t\t\t\t\t}\n\t\t\t\t\tif best_score < score {\n\t\t\t\t\t\tbest_score = score\n\t\t\t\t\t\tbest_len = uint(len)\n\t\t\t\t\t\tout.len = best_len\n\t\t\t\t\t\tout.distance = backward\n\t\t\t\t\t\tout.score = best_score\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t{\n\t\tvar key uint32 = hashBytesH6(data[cur_ix_masked:], h.hash_mask_, h.hash_shift_)\n\t\tbucket = buckets[key<<uint(h.params.block_bits):]\n\t\tvar down uint\n\t\tif uint(num[key]) > h.block_size_ {\n\t\t\tdown = uint(num[key]) - h.block_size_\n\t\t} else {\n\t\t\tdown = 0\n\t\t}\n\t\tfor i = uint(num[key]); i > down; {\n\t\t\tvar prev_ix uint\n\t\t\ti--\n\t\t\tprev_ix = uint(bucket[uint32(i)&h.block_mask_])\n\t\t\tvar backward uint = cur_ix - prev_ix\n\t\t\tif backward > max_backward {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tprev_ix &= ring_buffer_mask\n\t\t\tif cur_ix_masked+best_len > ring_buffer_mask || prev_ix+best_len > ring_buffer_mask || data[cur_ix_masked+best_len] != data[prev_ix+best_len] {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t{\n\t\t\t\tvar len uint = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\t\t\tif len >= 4 {\n\t\t\t\t\t/* Comparing for >= 3 does not change the semantics, but just saves\n\t\t\t\t\t   for a few unnecessary binary logarithms in backward reference\n\t\t\t\t\t   score, since we are not interested in such short matches. */\n\t\t\t\t\tvar score uint = backwardReferenceScore(uint(len), backward)\n\t\t\t\t\tif best_score < score {\n\t\t\t\t\t\tbest_score = score\n\t\t\t\t\t\tbest_len = uint(len)\n\t\t\t\t\t\tout.len = best_len\n\t\t\t\t\t\tout.distance = backward\n\t\t\t\t\t\tout.score = best_score\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tbucket[uint32(num[key])&h.block_mask_] = uint32(cur_ix)\n\t\tnum[key]++\n\t}\n\n\tif min_score == out.score {\n\t\tsearchInStaticDictionary(dictionary, h, data[cur_ix_masked:], max_length, max_backward+gap, max_distance, out, false)\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/hash.go",
    "content": "package brotli\n\nimport (\n\t\"encoding/binary\"\n\t\"fmt\"\n)\n\ntype hasherCommon struct {\n\tparams           hasherParams\n\tis_prepared_     bool\n\tdict_num_lookups uint\n\tdict_num_matches uint\n}\n\nfunc (h *hasherCommon) Common() *hasherCommon {\n\treturn h\n}\n\ntype hasherHandle interface {\n\tCommon() *hasherCommon\n\tInitialize(params *encoderParams)\n\tPrepare(one_shot bool, input_size uint, data []byte)\n\tStitchToPreviousBlock(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint)\n\tHashTypeLength() uint\n\tStoreLookahead() uint\n\tPrepareDistanceCache(distance_cache []int)\n\tFindLongestMatch(dictionary *encoderDictionary, data []byte, ring_buffer_mask uint, distance_cache []int, cur_ix uint, max_length uint, max_backward uint, gap uint, max_distance uint, out *hasherSearchResult)\n\tStoreRange(data []byte, mask uint, ix_start uint, ix_end uint)\n\tStore(data []byte, mask uint, ix uint)\n}\n\ntype score_t uint\n\nconst kCutoffTransformsCount uint32 = 10\n\n/*   0,  12,   27,    23,    42,    63,    56,    48,    59,    64 */\n/* 0+0, 4+8, 8+19, 12+11, 16+26, 20+43, 24+32, 28+20, 32+27, 36+28 */\nconst kCutoffTransforms uint64 = 0x071B520ADA2D3200\n\ntype hasherSearchResult struct {\n\tlen            uint\n\tdistance       uint\n\tscore          uint\n\tlen_code_delta int\n}\n\n/* kHashMul32 multiplier has these properties:\n   * The multiplier must be odd. Otherwise we may lose the highest bit.\n   * No long streaks of ones or zeros.\n   * There is no effort to ensure that it is a prime, the oddity is enough\n     for this use.\n   * The number has been tuned heuristically against compression benchmarks. */\nconst kHashMul32 uint32 = 0x1E35A7BD\n\nconst kHashMul64 uint64 = 0x1E35A7BD1E35A7BD\n\nconst kHashMul64Long uint64 = 0x1FE35A7BD3579BD3\n\nfunc hash14(data []byte) uint32 {\n\tvar h uint32 = binary.LittleEndian.Uint32(data) * kHashMul32\n\n\t/* The higher bits contain more mixture from the multiplication,\n\t   so we take our results from there. */\n\treturn h >> (32 - 14)\n}\n\nfunc prepareDistanceCache(distance_cache []int, num_distances int) {\n\tif num_distances > 4 {\n\t\tvar last_distance int = distance_cache[0]\n\t\tdistance_cache[4] = last_distance - 1\n\t\tdistance_cache[5] = last_distance + 1\n\t\tdistance_cache[6] = last_distance - 2\n\t\tdistance_cache[7] = last_distance + 2\n\t\tdistance_cache[8] = last_distance - 3\n\t\tdistance_cache[9] = last_distance + 3\n\t\tif num_distances > 10 {\n\t\t\tvar next_last_distance int = distance_cache[1]\n\t\t\tdistance_cache[10] = next_last_distance - 1\n\t\t\tdistance_cache[11] = next_last_distance + 1\n\t\t\tdistance_cache[12] = next_last_distance - 2\n\t\t\tdistance_cache[13] = next_last_distance + 2\n\t\t\tdistance_cache[14] = next_last_distance - 3\n\t\t\tdistance_cache[15] = next_last_distance + 3\n\t\t}\n\t}\n}\n\nconst literalByteScore = 135\n\nconst distanceBitPenalty = 30\n\n/* Score must be positive after applying maximal penalty. */\nconst scoreBase = (distanceBitPenalty * 8 * 8)\n\n/* Usually, we always choose the longest backward reference. This function\n   allows for the exception of that rule.\n\n   If we choose a backward reference that is further away, it will\n   usually be coded with more bits. We approximate this by assuming\n   log2(distance). If the distance can be expressed in terms of the\n   last four distances, we use some heuristic constants to estimate\n   the bits cost. For the first up to four literals we use the bit\n   cost of the literals from the literal cost model, after that we\n   use the average bit cost of the cost model.\n\n   This function is used to sometimes discard a longer backward reference\n   when it is not much longer and the bit cost for encoding it is more\n   than the saved literals.\n\n   backward_reference_offset MUST be positive. */\nfunc backwardReferenceScore(copy_length uint, backward_reference_offset uint) uint {\n\treturn scoreBase + literalByteScore*uint(copy_length) - distanceBitPenalty*uint(log2FloorNonZero(backward_reference_offset))\n}\n\nfunc backwardReferenceScoreUsingLastDistance(copy_length uint) uint {\n\treturn literalByteScore*uint(copy_length) + scoreBase + 15\n}\n\nfunc backwardReferencePenaltyUsingLastDistance(distance_short_code uint) uint {\n\treturn uint(39) + ((0x1CA10 >> (distance_short_code & 0xE)) & 0xE)\n}\n\nfunc testStaticDictionaryItem(dictionary *encoderDictionary, item uint, data []byte, max_length uint, max_backward uint, max_distance uint, out *hasherSearchResult) bool {\n\tvar len uint\n\tvar word_idx uint\n\tvar offset uint\n\tvar matchlen uint\n\tvar backward uint\n\tvar score uint\n\tlen = item & 0x1F\n\tword_idx = item >> 5\n\toffset = uint(dictionary.words.offsets_by_length[len]) + len*word_idx\n\tif len > max_length {\n\t\treturn false\n\t}\n\n\tmatchlen = findMatchLengthWithLimit(data, dictionary.words.data[offset:], uint(len))\n\tif matchlen+uint(dictionary.cutoffTransformsCount) <= len || matchlen == 0 {\n\t\treturn false\n\t}\n\t{\n\t\tvar cut uint = len - matchlen\n\t\tvar transform_id uint = (cut << 2) + uint((dictionary.cutoffTransforms>>(cut*6))&0x3F)\n\t\tbackward = max_backward + 1 + word_idx + (transform_id << dictionary.words.size_bits_by_length[len])\n\t}\n\n\tif backward > max_distance {\n\t\treturn false\n\t}\n\n\tscore = backwardReferenceScore(matchlen, backward)\n\tif score < out.score {\n\t\treturn false\n\t}\n\n\tout.len = matchlen\n\tout.len_code_delta = int(len) - int(matchlen)\n\tout.distance = backward\n\tout.score = score\n\treturn true\n}\n\nfunc searchInStaticDictionary(dictionary *encoderDictionary, handle hasherHandle, data []byte, max_length uint, max_backward uint, max_distance uint, out *hasherSearchResult, shallow bool) {\n\tvar key uint\n\tvar i uint\n\tvar self *hasherCommon = handle.Common()\n\tif self.dict_num_matches < self.dict_num_lookups>>7 {\n\t\treturn\n\t}\n\n\tkey = uint(hash14(data) << 1)\n\tfor i = 0; ; (func() { i++; key++ })() {\n\t\tvar tmp uint\n\t\tif shallow {\n\t\t\ttmp = 1\n\t\t} else {\n\t\t\ttmp = 2\n\t\t}\n\t\tif i >= tmp {\n\t\t\tbreak\n\t\t}\n\t\tvar item uint = uint(dictionary.hash_table[key])\n\t\tself.dict_num_lookups++\n\t\tif item != 0 {\n\t\t\tvar item_matches bool = testStaticDictionaryItem(dictionary, item, data, max_length, max_backward, max_distance, out)\n\t\t\tif item_matches {\n\t\t\t\tself.dict_num_matches++\n\t\t\t}\n\t\t}\n\t}\n}\n\ntype backwardMatch struct {\n\tdistance        uint32\n\tlength_and_code uint32\n}\n\nfunc initBackwardMatch(self *backwardMatch, dist uint, len uint) {\n\tself.distance = uint32(dist)\n\tself.length_and_code = uint32(len << 5)\n}\n\nfunc initDictionaryBackwardMatch(self *backwardMatch, dist uint, len uint, len_code uint) {\n\tself.distance = uint32(dist)\n\tvar tmp uint\n\tif len == len_code {\n\t\ttmp = 0\n\t} else {\n\t\ttmp = len_code\n\t}\n\tself.length_and_code = uint32(len<<5 | tmp)\n}\n\nfunc backwardMatchLength(self *backwardMatch) uint {\n\treturn uint(self.length_and_code >> 5)\n}\n\nfunc backwardMatchLengthCode(self *backwardMatch) uint {\n\tvar code uint = uint(self.length_and_code) & 31\n\tif code != 0 {\n\t\treturn code\n\t} else {\n\t\treturn backwardMatchLength(self)\n\t}\n}\n\nfunc hasherReset(handle hasherHandle) {\n\tif handle == nil {\n\t\treturn\n\t}\n\thandle.Common().is_prepared_ = false\n}\n\nfunc newHasher(typ int) hasherHandle {\n\tswitch typ {\n\tcase 2:\n\t\treturn &hashLongestMatchQuickly{\n\t\t\tbucketBits:    16,\n\t\t\tbucketSweep:   1,\n\t\t\thashLen:       5,\n\t\t\tuseDictionary: true,\n\t\t}\n\tcase 3:\n\t\treturn &hashLongestMatchQuickly{\n\t\t\tbucketBits:    16,\n\t\t\tbucketSweep:   2,\n\t\t\thashLen:       5,\n\t\t\tuseDictionary: false,\n\t\t}\n\tcase 4:\n\t\treturn &hashLongestMatchQuickly{\n\t\t\tbucketBits:    17,\n\t\t\tbucketSweep:   4,\n\t\t\thashLen:       5,\n\t\t\tuseDictionary: true,\n\t\t}\n\tcase 5:\n\t\treturn new(h5)\n\tcase 6:\n\t\treturn new(h6)\n\tcase 10:\n\t\treturn new(h10)\n\tcase 35:\n\t\treturn &hashComposite{\n\t\t\tha: newHasher(3),\n\t\t\thb: &hashRolling{jump: 4},\n\t\t}\n\tcase 40:\n\t\treturn &hashForgetfulChain{\n\t\t\tbucketBits:              15,\n\t\t\tnumBanks:                1,\n\t\t\tbankBits:                16,\n\t\t\tnumLastDistancesToCheck: 4,\n\t\t}\n\tcase 41:\n\t\treturn &hashForgetfulChain{\n\t\t\tbucketBits:              15,\n\t\t\tnumBanks:                1,\n\t\t\tbankBits:                16,\n\t\t\tnumLastDistancesToCheck: 10,\n\t\t}\n\tcase 42:\n\t\treturn &hashForgetfulChain{\n\t\t\tbucketBits:              15,\n\t\t\tnumBanks:                512,\n\t\t\tbankBits:                9,\n\t\t\tnumLastDistancesToCheck: 16,\n\t\t}\n\tcase 54:\n\t\treturn &hashLongestMatchQuickly{\n\t\t\tbucketBits:    20,\n\t\t\tbucketSweep:   4,\n\t\t\thashLen:       7,\n\t\t\tuseDictionary: false,\n\t\t}\n\tcase 55:\n\t\treturn &hashComposite{\n\t\t\tha: newHasher(54),\n\t\t\thb: &hashRolling{jump: 4},\n\t\t}\n\tcase 65:\n\t\treturn &hashComposite{\n\t\t\tha: newHasher(6),\n\t\t\thb: &hashRolling{jump: 1},\n\t\t}\n\t}\n\n\tpanic(fmt.Sprintf(\"unknown hasher type: %d\", typ))\n}\n\nfunc hasherSetup(handle *hasherHandle, params *encoderParams, data []byte, position uint, input_size uint, is_last bool) {\n\tvar self hasherHandle = nil\n\tvar common *hasherCommon = nil\n\tvar one_shot bool = (position == 0 && is_last)\n\tif *handle == nil {\n\t\tchooseHasher(params, &params.hasher)\n\t\tself = newHasher(params.hasher.type_)\n\n\t\t*handle = self\n\t\tcommon = self.Common()\n\t\tcommon.params = params.hasher\n\t\tself.Initialize(params)\n\t}\n\n\tself = *handle\n\tcommon = self.Common()\n\tif !common.is_prepared_ {\n\t\tself.Prepare(one_shot, input_size, data)\n\n\t\tif position == 0 {\n\t\t\tcommon.dict_num_lookups = 0\n\t\t\tcommon.dict_num_matches = 0\n\t\t}\n\n\t\tcommon.is_prepared_ = true\n\t}\n}\n\nfunc initOrStitchToPreviousBlock(handle *hasherHandle, data []byte, mask uint, params *encoderParams, position uint, input_size uint, is_last bool) {\n\tvar self hasherHandle\n\thasherSetup(handle, params, data, position, input_size, is_last)\n\tself = *handle\n\tself.StitchToPreviousBlock(input_size, position, data, mask)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/hash_composite.go",
    "content": "package brotli\n\n/* Copyright 2018 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\nfunc (h *hashComposite) HashTypeLength() uint {\n\tvar a uint = h.ha.HashTypeLength()\n\tvar b uint = h.hb.HashTypeLength()\n\tif a > b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc (h *hashComposite) StoreLookahead() uint {\n\tvar a uint = h.ha.StoreLookahead()\n\tvar b uint = h.hb.StoreLookahead()\n\tif a > b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\n/* Composite hasher: This hasher allows to combine two other hashers, HASHER_A\n   and HASHER_B. */\ntype hashComposite struct {\n\thasherCommon\n\tha     hasherHandle\n\thb     hasherHandle\n\tparams *encoderParams\n}\n\nfunc (h *hashComposite) Initialize(params *encoderParams) {\n\th.params = params\n}\n\n/* TODO: Initialize of the hashers is defered to Prepare (and params\n   remembered here) because we don't get the one_shot and input_size params\n   here that are needed to know the memory size of them. Instead provide\n   those params to all hashers InitializehashComposite */\nfunc (h *hashComposite) Prepare(one_shot bool, input_size uint, data []byte) {\n\tif h.ha == nil {\n\t\tvar common_a *hasherCommon\n\t\tvar common_b *hasherCommon\n\n\t\tcommon_a = h.ha.Common()\n\t\tcommon_a.params = h.params.hasher\n\t\tcommon_a.is_prepared_ = false\n\t\tcommon_a.dict_num_lookups = 0\n\t\tcommon_a.dict_num_matches = 0\n\t\th.ha.Initialize(h.params)\n\n\t\tcommon_b = h.hb.Common()\n\t\tcommon_b.params = h.params.hasher\n\t\tcommon_b.is_prepared_ = false\n\t\tcommon_b.dict_num_lookups = 0\n\t\tcommon_b.dict_num_matches = 0\n\t\th.hb.Initialize(h.params)\n\t}\n\n\th.ha.Prepare(one_shot, input_size, data)\n\th.hb.Prepare(one_shot, input_size, data)\n}\n\nfunc (h *hashComposite) Store(data []byte, mask uint, ix uint) {\n\th.ha.Store(data, mask, ix)\n\th.hb.Store(data, mask, ix)\n}\n\nfunc (h *hashComposite) StoreRange(data []byte, mask uint, ix_start uint, ix_end uint) {\n\th.ha.StoreRange(data, mask, ix_start, ix_end)\n\th.hb.StoreRange(data, mask, ix_start, ix_end)\n}\n\nfunc (h *hashComposite) StitchToPreviousBlock(num_bytes uint, position uint, ringbuffer []byte, ring_buffer_mask uint) {\n\th.ha.StitchToPreviousBlock(num_bytes, position, ringbuffer, ring_buffer_mask)\n\th.hb.StitchToPreviousBlock(num_bytes, position, ringbuffer, ring_buffer_mask)\n}\n\nfunc (h *hashComposite) PrepareDistanceCache(distance_cache []int) {\n\th.ha.PrepareDistanceCache(distance_cache)\n\th.hb.PrepareDistanceCache(distance_cache)\n}\n\nfunc (h *hashComposite) FindLongestMatch(dictionary *encoderDictionary, data []byte, ring_buffer_mask uint, distance_cache []int, cur_ix uint, max_length uint, max_backward uint, gap uint, max_distance uint, out *hasherSearchResult) {\n\th.ha.FindLongestMatch(dictionary, data, ring_buffer_mask, distance_cache, cur_ix, max_length, max_backward, gap, max_distance, out)\n\th.hb.FindLongestMatch(dictionary, data, ring_buffer_mask, distance_cache, cur_ix, max_length, max_backward, gap, max_distance, out)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/hash_forgetful_chain.go",
    "content": "package brotli\n\nimport \"encoding/binary\"\n\n/* Copyright 2016 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\nfunc (*hashForgetfulChain) HashTypeLength() uint {\n\treturn 4\n}\n\nfunc (*hashForgetfulChain) StoreLookahead() uint {\n\treturn 4\n}\n\n/* HashBytes is the function that chooses the bucket to place the address in.*/\nfunc (h *hashForgetfulChain) HashBytes(data []byte) uint {\n\tvar hash uint32 = binary.LittleEndian.Uint32(data) * kHashMul32\n\n\t/* The higher bits contain more mixture from the multiplication,\n\t   so we take our results from there. */\n\treturn uint(hash >> (32 - h.bucketBits))\n}\n\ntype slot struct {\n\tdelta uint16\n\tnext  uint16\n}\n\n/* A (forgetful) hash table to the data seen by the compressor, to\n   help create backward references to previous data.\n\n   Hashes are stored in chains which are bucketed to groups. Group of chains\n   share a storage \"bank\". When more than \"bank size\" chain nodes are added,\n   oldest nodes are replaced; this way several chains may share a tail. */\ntype hashForgetfulChain struct {\n\thasherCommon\n\n\tbucketBits              uint\n\tnumBanks                uint\n\tbankBits                uint\n\tnumLastDistancesToCheck int\n\n\taddr          []uint32\n\thead          []uint16\n\ttiny_hash     [65536]byte\n\tbanks         [][]slot\n\tfree_slot_idx []uint16\n\tmax_hops      uint\n}\n\nfunc (h *hashForgetfulChain) Initialize(params *encoderParams) {\n\tvar q uint\n\tif params.quality > 6 {\n\t\tq = 7\n\t} else {\n\t\tq = 8\n\t}\n\th.max_hops = q << uint(params.quality-4)\n\n\tbankSize := 1 << h.bankBits\n\tbucketSize := 1 << h.bucketBits\n\n\th.addr = make([]uint32, bucketSize)\n\th.head = make([]uint16, bucketSize)\n\th.banks = make([][]slot, h.numBanks)\n\tfor i := range h.banks {\n\t\th.banks[i] = make([]slot, bankSize)\n\t}\n\th.free_slot_idx = make([]uint16, h.numBanks)\n}\n\nfunc (h *hashForgetfulChain) Prepare(one_shot bool, input_size uint, data []byte) {\n\tvar partial_prepare_threshold uint = (1 << h.bucketBits) >> 6\n\t/* Partial preparation is 100 times slower (per socket). */\n\tif one_shot && input_size <= partial_prepare_threshold {\n\t\tvar i uint\n\t\tfor i = 0; i < input_size; i++ {\n\t\t\tvar bucket uint = h.HashBytes(data[i:])\n\n\t\t\t/* See InitEmpty comment. */\n\t\t\th.addr[bucket] = 0xCCCCCCCC\n\n\t\t\th.head[bucket] = 0xCCCC\n\t\t}\n\t} else {\n\t\t/* Fill |addr| array with 0xCCCCCCCC value. Because of wrapping, position\n\t\t   processed by hasher never reaches 3GB + 64M; this makes all new chains\n\t\t   to be terminated after the first node. */\n\t\tfor i := range h.addr {\n\t\t\th.addr[i] = 0xCCCCCCCC\n\t\t}\n\n\t\tfor i := range h.head {\n\t\t\th.head[i] = 0\n\t\t}\n\t}\n\n\th.tiny_hash = [65536]byte{}\n\tfor i := range h.free_slot_idx {\n\t\th.free_slot_idx[i] = 0\n\t}\n}\n\n/* Look at 4 bytes at &data[ix & mask]. Compute a hash from these, and prepend\n   node to corresponding chain; also update tiny_hash for current position. */\nfunc (h *hashForgetfulChain) Store(data []byte, mask uint, ix uint) {\n\tvar key uint = h.HashBytes(data[ix&mask:])\n\tvar bank uint = key & (h.numBanks - 1)\n\tvar idx uint\n\tidx = uint(h.free_slot_idx[bank]) & ((1 << h.bankBits) - 1)\n\th.free_slot_idx[bank]++\n\tvar delta uint = ix - uint(h.addr[key])\n\th.tiny_hash[uint16(ix)] = byte(key)\n\tif delta > 0xFFFF {\n\t\tdelta = 0xFFFF\n\t}\n\th.banks[bank][idx].delta = uint16(delta)\n\th.banks[bank][idx].next = h.head[key]\n\th.addr[key] = uint32(ix)\n\th.head[key] = uint16(idx)\n}\n\nfunc (h *hashForgetfulChain) StoreRange(data []byte, mask uint, ix_start uint, ix_end uint) {\n\tvar i uint\n\tfor i = ix_start; i < ix_end; i++ {\n\t\th.Store(data, mask, i)\n\t}\n}\n\nfunc (h *hashForgetfulChain) StitchToPreviousBlock(num_bytes uint, position uint, ringbuffer []byte, ring_buffer_mask uint) {\n\tif num_bytes >= h.HashTypeLength()-1 && position >= 3 {\n\t\t/* Prepare the hashes for three last bytes of the last write.\n\t\t   These could not be calculated before, since they require knowledge\n\t\t   of both the previous and the current block. */\n\t\th.Store(ringbuffer, ring_buffer_mask, position-3)\n\t\th.Store(ringbuffer, ring_buffer_mask, position-2)\n\t\th.Store(ringbuffer, ring_buffer_mask, position-1)\n\t}\n}\n\nfunc (h *hashForgetfulChain) PrepareDistanceCache(distance_cache []int) {\n\tprepareDistanceCache(distance_cache, h.numLastDistancesToCheck)\n}\n\n/* Find a longest backward match of &data[cur_ix] up to the length of\n   max_length and stores the position cur_ix in the hash table.\n\n   REQUIRES: PrepareDistanceCachehashForgetfulChain must be invoked for current distance cache\n             values; if this method is invoked repeatedly with the same distance\n             cache values, it is enough to invoke PrepareDistanceCachehashForgetfulChain once.\n\n   Does not look for matches longer than max_length.\n   Does not look for matches further away than max_backward.\n   Writes the best match into |out|.\n   |out|->score is updated only if a better match is found. */\nfunc (h *hashForgetfulChain) FindLongestMatch(dictionary *encoderDictionary, data []byte, ring_buffer_mask uint, distance_cache []int, cur_ix uint, max_length uint, max_backward uint, gap uint, max_distance uint, out *hasherSearchResult) {\n\tvar cur_ix_masked uint = cur_ix & ring_buffer_mask\n\tvar min_score uint = out.score\n\tvar best_score uint = out.score\n\tvar best_len uint = out.len\n\tvar key uint = h.HashBytes(data[cur_ix_masked:])\n\tvar tiny_hash byte = byte(key)\n\t/* Don't accept a short copy from far away. */\n\tout.len = 0\n\n\tout.len_code_delta = 0\n\n\t/* Try last distance first. */\n\tfor i := 0; i < h.numLastDistancesToCheck; i++ {\n\t\tvar backward uint = uint(distance_cache[i])\n\t\tvar prev_ix uint = (cur_ix - backward)\n\n\t\t/* For distance code 0 we want to consider 2-byte matches. */\n\t\tif i > 0 && h.tiny_hash[uint16(prev_ix)] != tiny_hash {\n\t\t\tcontinue\n\t\t}\n\t\tif prev_ix >= cur_ix || backward > max_backward {\n\t\t\tcontinue\n\t\t}\n\n\t\tprev_ix &= ring_buffer_mask\n\t\t{\n\t\t\tvar len uint = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\t\tif len >= 2 {\n\t\t\t\tvar score uint = backwardReferenceScoreUsingLastDistance(uint(len))\n\t\t\t\tif best_score < score {\n\t\t\t\t\tif i != 0 {\n\t\t\t\t\t\tscore -= backwardReferencePenaltyUsingLastDistance(uint(i))\n\t\t\t\t\t}\n\t\t\t\t\tif best_score < score {\n\t\t\t\t\t\tbest_score = score\n\t\t\t\t\t\tbest_len = uint(len)\n\t\t\t\t\t\tout.len = best_len\n\t\t\t\t\t\tout.distance = backward\n\t\t\t\t\t\tout.score = best_score\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t{\n\t\tvar bank uint = key & (h.numBanks - 1)\n\t\tvar backward uint = 0\n\t\tvar hops uint = h.max_hops\n\t\tvar delta uint = cur_ix - uint(h.addr[key])\n\t\tvar slot uint = uint(h.head[key])\n\t\tfor {\n\t\t\ttmp6 := hops\n\t\t\thops--\n\t\t\tif tmp6 == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tvar prev_ix uint\n\t\t\tvar last uint = slot\n\t\t\tbackward += delta\n\t\t\tif backward > max_backward {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tprev_ix = (cur_ix - backward) & ring_buffer_mask\n\t\t\tslot = uint(h.banks[bank][last].next)\n\t\t\tdelta = uint(h.banks[bank][last].delta)\n\t\t\tif cur_ix_masked+best_len > ring_buffer_mask || prev_ix+best_len > ring_buffer_mask || data[cur_ix_masked+best_len] != data[prev_ix+best_len] {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t{\n\t\t\t\tvar len uint = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\t\t\tif len >= 4 {\n\t\t\t\t\t/* Comparing for >= 3 does not change the semantics, but just saves\n\t\t\t\t\t   for a few unnecessary binary logarithms in backward reference\n\t\t\t\t\t   score, since we are not interested in such short matches. */\n\t\t\t\t\tvar score uint = backwardReferenceScore(uint(len), backward)\n\t\t\t\t\tif best_score < score {\n\t\t\t\t\t\tbest_score = score\n\t\t\t\t\t\tbest_len = uint(len)\n\t\t\t\t\t\tout.len = best_len\n\t\t\t\t\t\tout.distance = backward\n\t\t\t\t\t\tout.score = best_score\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\th.Store(data, ring_buffer_mask, cur_ix)\n\t}\n\n\tif out.score == min_score {\n\t\tsearchInStaticDictionary(dictionary, h, data[cur_ix_masked:], max_length, max_backward+gap, max_distance, out, false)\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/hash_longest_match_quickly.go",
    "content": "package brotli\n\nimport \"encoding/binary\"\n\n/* Copyright 2010 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* For BUCKET_SWEEP == 1, enabling the dictionary lookup makes compression\n   a little faster (0.5% - 1%) and it compresses 0.15% better on small text\n   and HTML inputs. */\n\nfunc (*hashLongestMatchQuickly) HashTypeLength() uint {\n\treturn 8\n}\n\nfunc (*hashLongestMatchQuickly) StoreLookahead() uint {\n\treturn 8\n}\n\n/* HashBytes is the function that chooses the bucket to place\n   the address in. The HashLongestMatch and hashLongestMatchQuickly\n   classes have separate, different implementations of hashing. */\nfunc (h *hashLongestMatchQuickly) HashBytes(data []byte) uint32 {\n\tvar hash uint64 = ((binary.LittleEndian.Uint64(data) << (64 - 8*h.hashLen)) * kHashMul64)\n\n\t/* The higher bits contain more mixture from the multiplication,\n\t   so we take our results from there. */\n\treturn uint32(hash >> (64 - h.bucketBits))\n}\n\n/* A (forgetful) hash table to the data seen by the compressor, to\n   help create backward references to previous data.\n\n   This is a hash map of fixed size (1 << 16). Starting from the\n   given index, 1 buckets are used to store values of a key. */\ntype hashLongestMatchQuickly struct {\n\thasherCommon\n\n\tbucketBits    uint\n\tbucketSweep   int\n\thashLen       uint\n\tuseDictionary bool\n\n\tbuckets []uint32\n}\n\nfunc (h *hashLongestMatchQuickly) Initialize(params *encoderParams) {\n\th.buckets = make([]uint32, 1<<h.bucketBits+h.bucketSweep)\n}\n\nfunc (h *hashLongestMatchQuickly) Prepare(one_shot bool, input_size uint, data []byte) {\n\tvar partial_prepare_threshold uint = (4 << h.bucketBits) >> 7\n\t/* Partial preparation is 100 times slower (per socket). */\n\tif one_shot && input_size <= partial_prepare_threshold {\n\t\tvar i uint\n\t\tfor i = 0; i < input_size; i++ {\n\t\t\tvar key uint32 = h.HashBytes(data[i:])\n\t\t\tfor j := 0; j < h.bucketSweep; j++ {\n\t\t\t\th.buckets[key+uint32(j)] = 0\n\t\t\t}\n\t\t}\n\t} else {\n\t\t/* It is not strictly necessary to fill this buffer here, but\n\t\t   not filling will make the results of the compression stochastic\n\t\t   (but correct). This is because random data would cause the\n\t\t   system to find accidentally good backward references here and there. */\n\t\tfor i := range h.buckets {\n\t\t\th.buckets[i] = 0\n\t\t}\n\t}\n}\n\n/* Look at 5 bytes at &data[ix & mask].\n   Compute a hash from these, and store the value somewhere within\n   [ix .. ix+3]. */\nfunc (h *hashLongestMatchQuickly) Store(data []byte, mask uint, ix uint) {\n\tvar key uint32 = h.HashBytes(data[ix&mask:])\n\tvar off uint32 = uint32(ix>>3) % uint32(h.bucketSweep)\n\t/* Wiggle the value with the bucket sweep range. */\n\th.buckets[key+off] = uint32(ix)\n}\n\nfunc (h *hashLongestMatchQuickly) StoreRange(data []byte, mask uint, ix_start uint, ix_end uint) {\n\tvar i uint\n\tfor i = ix_start; i < ix_end; i++ {\n\t\th.Store(data, mask, i)\n\t}\n}\n\nfunc (h *hashLongestMatchQuickly) StitchToPreviousBlock(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint) {\n\tif num_bytes >= h.HashTypeLength()-1 && position >= 3 {\n\t\t/* Prepare the hashes for three last bytes of the last write.\n\t\t   These could not be calculated before, since they require knowledge\n\t\t   of both the previous and the current block. */\n\t\th.Store(ringbuffer, ringbuffer_mask, position-3)\n\t\th.Store(ringbuffer, ringbuffer_mask, position-2)\n\t\th.Store(ringbuffer, ringbuffer_mask, position-1)\n\t}\n}\n\nfunc (*hashLongestMatchQuickly) PrepareDistanceCache(distance_cache []int) {\n}\n\n/* Find a longest backward match of &data[cur_ix & ring_buffer_mask]\n   up to the length of max_length and stores the position cur_ix in the\n   hash table.\n\n   Does not look for matches longer than max_length.\n   Does not look for matches further away than max_backward.\n   Writes the best match into |out|.\n   |out|->score is updated only if a better match is found. */\nfunc (h *hashLongestMatchQuickly) FindLongestMatch(dictionary *encoderDictionary, data []byte, ring_buffer_mask uint, distance_cache []int, cur_ix uint, max_length uint, max_backward uint, gap uint, max_distance uint, out *hasherSearchResult) {\n\tvar best_len_in uint = out.len\n\tvar cur_ix_masked uint = cur_ix & ring_buffer_mask\n\tvar key uint32 = h.HashBytes(data[cur_ix_masked:])\n\tvar compare_char int = int(data[cur_ix_masked+best_len_in])\n\tvar min_score uint = out.score\n\tvar best_score uint = out.score\n\tvar best_len uint = best_len_in\n\tvar cached_backward uint = uint(distance_cache[0])\n\tvar prev_ix uint = cur_ix - cached_backward\n\tvar bucket []uint32\n\tout.len_code_delta = 0\n\tif prev_ix < cur_ix {\n\t\tprev_ix &= uint(uint32(ring_buffer_mask))\n\t\tif compare_char == int(data[prev_ix+best_len]) {\n\t\t\tvar len uint = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\t\tif len >= 4 {\n\t\t\t\tvar score uint = backwardReferenceScoreUsingLastDistance(uint(len))\n\t\t\t\tif best_score < score {\n\t\t\t\t\tbest_score = score\n\t\t\t\t\tbest_len = uint(len)\n\t\t\t\t\tout.len = uint(len)\n\t\t\t\t\tout.distance = cached_backward\n\t\t\t\t\tout.score = best_score\n\t\t\t\t\tcompare_char = int(data[cur_ix_masked+best_len])\n\t\t\t\t\tif h.bucketSweep == 1 {\n\t\t\t\t\t\th.buckets[key] = uint32(cur_ix)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif h.bucketSweep == 1 {\n\t\tvar backward uint\n\t\tvar len uint\n\n\t\t/* Only one to look for, don't bother to prepare for a loop. */\n\t\tprev_ix = uint(h.buckets[key])\n\n\t\th.buckets[key] = uint32(cur_ix)\n\t\tbackward = cur_ix - prev_ix\n\t\tprev_ix &= uint(uint32(ring_buffer_mask))\n\t\tif compare_char != int(data[prev_ix+best_len_in]) {\n\t\t\treturn\n\t\t}\n\n\t\tif backward == 0 || backward > max_backward {\n\t\t\treturn\n\t\t}\n\n\t\tlen = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\tif len >= 4 {\n\t\t\tvar score uint = backwardReferenceScore(uint(len), backward)\n\t\t\tif best_score < score {\n\t\t\t\tout.len = uint(len)\n\t\t\t\tout.distance = backward\n\t\t\t\tout.score = score\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t} else {\n\t\tbucket = h.buckets[key:]\n\t\tvar i int\n\t\tprev_ix = uint(bucket[0])\n\t\tbucket = bucket[1:]\n\t\tfor i = 0; i < h.bucketSweep; (func() { i++; tmp3 := bucket; bucket = bucket[1:]; prev_ix = uint(tmp3[0]) })() {\n\t\t\tvar backward uint = cur_ix - prev_ix\n\t\t\tvar len uint\n\t\t\tprev_ix &= uint(uint32(ring_buffer_mask))\n\t\t\tif compare_char != int(data[prev_ix+best_len]) {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tif backward == 0 || backward > max_backward {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tlen = findMatchLengthWithLimit(data[prev_ix:], data[cur_ix_masked:], max_length)\n\t\t\tif len >= 4 {\n\t\t\t\tvar score uint = backwardReferenceScore(uint(len), backward)\n\t\t\t\tif best_score < score {\n\t\t\t\t\tbest_score = score\n\t\t\t\t\tbest_len = uint(len)\n\t\t\t\t\tout.len = best_len\n\t\t\t\t\tout.distance = backward\n\t\t\t\t\tout.score = score\n\t\t\t\t\tcompare_char = int(data[cur_ix_masked+best_len])\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif h.useDictionary && min_score == out.score {\n\t\tsearchInStaticDictionary(dictionary, h, data[cur_ix_masked:], max_length, max_backward+gap, max_distance, out, true)\n\t}\n\n\th.buckets[key+uint32((cur_ix>>3)%uint(h.bucketSweep))] = uint32(cur_ix)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/hash_rolling.go",
    "content": "package brotli\n\n/* Copyright 2018 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* NOTE: this hasher does not search in the dictionary. It is used as\n   backup-hasher, the main hasher already searches in it. */\n\nconst kRollingHashMul32 uint32 = 69069\n\nconst kInvalidPosHashRolling uint32 = 0xffffffff\n\n/* This hasher uses a longer forward length, but returning a higher value here\n   will hurt compression by the main hasher when combined with a composite\n   hasher. The hasher tests for forward itself instead. */\nfunc (*hashRolling) HashTypeLength() uint {\n\treturn 4\n}\n\nfunc (*hashRolling) StoreLookahead() uint {\n\treturn 4\n}\n\n/* Computes a code from a single byte. A lookup table of 256 values could be\n   used, but simply adding 1 works about as good. */\nfunc (*hashRolling) HashByte(b byte) uint32 {\n\treturn uint32(b) + 1\n}\n\nfunc (h *hashRolling) HashRollingFunctionInitial(state uint32, add byte, factor uint32) uint32 {\n\treturn uint32(factor*state + h.HashByte(add))\n}\n\nfunc (h *hashRolling) HashRollingFunction(state uint32, add byte, rem byte, factor uint32, factor_remove uint32) uint32 {\n\treturn uint32(factor*state + h.HashByte(add) - factor_remove*h.HashByte(rem))\n}\n\n/* Rolling hash for long distance long string matches. Stores one position\n   per bucket, bucket key is computed over a long region. */\ntype hashRolling struct {\n\thasherCommon\n\n\tjump int\n\n\tstate         uint32\n\ttable         []uint32\n\tnext_ix       uint\n\tchunk_len     uint32\n\tfactor        uint32\n\tfactor_remove uint32\n}\n\nfunc (h *hashRolling) Initialize(params *encoderParams) {\n\th.state = 0\n\th.next_ix = 0\n\n\th.factor = kRollingHashMul32\n\n\t/* Compute the factor of the oldest byte to remove: factor**steps modulo\n\t   0xffffffff (the multiplications rely on 32-bit overflow) */\n\th.factor_remove = 1\n\n\tfor i := 0; i < 32; i += h.jump {\n\t\th.factor_remove *= h.factor\n\t}\n\n\th.table = make([]uint32, 16777216)\n\tfor i := 0; i < 16777216; i++ {\n\t\th.table[i] = kInvalidPosHashRolling\n\t}\n}\n\nfunc (h *hashRolling) Prepare(one_shot bool, input_size uint, data []byte) {\n\t/* Too small size, cannot use this hasher. */\n\tif input_size < 32 {\n\t\treturn\n\t}\n\th.state = 0\n\tfor i := 0; i < 32; i += h.jump {\n\t\th.state = h.HashRollingFunctionInitial(h.state, data[i], h.factor)\n\t}\n}\n\nfunc (*hashRolling) Store(data []byte, mask uint, ix uint) {\n}\n\nfunc (*hashRolling) StoreRange(data []byte, mask uint, ix_start uint, ix_end uint) {\n}\n\nfunc (h *hashRolling) StitchToPreviousBlock(num_bytes uint, position uint, ringbuffer []byte, ring_buffer_mask uint) {\n\tvar position_masked uint\n\t/* In this case we must re-initialize the hasher from scratch from the\n\t   current position. */\n\n\tvar available uint = num_bytes\n\tif position&uint(h.jump-1) != 0 {\n\t\tvar diff uint = uint(h.jump) - (position & uint(h.jump-1))\n\t\tif diff > available {\n\t\t\tavailable = 0\n\t\t} else {\n\t\t\tavailable = available - diff\n\t\t}\n\t\tposition += diff\n\t}\n\n\tposition_masked = position & ring_buffer_mask\n\n\t/* wrapping around ringbuffer not handled. */\n\tif available > ring_buffer_mask-position_masked {\n\t\tavailable = ring_buffer_mask - position_masked\n\t}\n\n\th.Prepare(false, available, ringbuffer[position&ring_buffer_mask:])\n\th.next_ix = position\n}\n\nfunc (*hashRolling) PrepareDistanceCache(distance_cache []int) {\n}\n\nfunc (h *hashRolling) FindLongestMatch(dictionary *encoderDictionary, data []byte, ring_buffer_mask uint, distance_cache []int, cur_ix uint, max_length uint, max_backward uint, gap uint, max_distance uint, out *hasherSearchResult) {\n\tvar cur_ix_masked uint = cur_ix & ring_buffer_mask\n\tvar pos uint = h.next_ix\n\n\tif cur_ix&uint(h.jump-1) != 0 {\n\t\treturn\n\t}\n\n\t/* Not enough lookahead */\n\tif max_length < 32 {\n\t\treturn\n\t}\n\n\tfor pos = h.next_ix; pos <= cur_ix; pos += uint(h.jump) {\n\t\tvar code uint32 = h.state & ((16777216 * 64) - 1)\n\t\tvar rem byte = data[pos&ring_buffer_mask]\n\t\tvar add byte = data[(pos+32)&ring_buffer_mask]\n\t\tvar found_ix uint = uint(kInvalidPosHashRolling)\n\n\t\th.state = h.HashRollingFunction(h.state, add, rem, h.factor, h.factor_remove)\n\n\t\tif code < 16777216 {\n\t\t\tfound_ix = uint(h.table[code])\n\t\t\th.table[code] = uint32(pos)\n\t\t\tif pos == cur_ix && uint32(found_ix) != kInvalidPosHashRolling {\n\t\t\t\t/* The cast to 32-bit makes backward distances up to 4GB work even\n\t\t\t\t   if cur_ix is above 4GB, despite using 32-bit values in the table. */\n\t\t\t\tvar backward uint = uint(uint32(cur_ix - found_ix))\n\t\t\t\tif backward <= max_backward {\n\t\t\t\t\tvar found_ix_masked uint = found_ix & ring_buffer_mask\n\t\t\t\t\tvar len uint = findMatchLengthWithLimit(data[found_ix_masked:], data[cur_ix_masked:], max_length)\n\t\t\t\t\tif len >= 4 && len > out.len {\n\t\t\t\t\t\tvar score uint = backwardReferenceScore(uint(len), backward)\n\t\t\t\t\t\tif score > out.score {\n\t\t\t\t\t\t\tout.len = uint(len)\n\t\t\t\t\t\t\tout.distance = backward\n\t\t\t\t\t\t\tout.score = score\n\t\t\t\t\t\t\tout.len_code_delta = 0\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\th.next_ix = cur_ix + uint(h.jump)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/histogram.go",
    "content": "package brotli\n\nimport \"math\"\n\n/* The distance symbols effectively used by \"Large Window Brotli\" (32-bit). */\nconst numHistogramDistanceSymbols = 544\n\ntype histogramLiteral struct {\n\tdata_        [numLiteralSymbols]uint32\n\ttotal_count_ uint\n\tbit_cost_    float64\n}\n\nfunc histogramClearLiteral(self *histogramLiteral) {\n\tself.data_ = [numLiteralSymbols]uint32{}\n\tself.total_count_ = 0\n\tself.bit_cost_ = math.MaxFloat64\n}\n\nfunc clearHistogramsLiteral(array []histogramLiteral, length uint) {\n\tvar i uint\n\tfor i = 0; i < length; i++ {\n\t\thistogramClearLiteral(&array[i:][0])\n\t}\n}\n\nfunc histogramAddLiteral(self *histogramLiteral, val uint) {\n\tself.data_[val]++\n\tself.total_count_++\n}\n\nfunc histogramAddVectorLiteral(self *histogramLiteral, p []byte, n uint) {\n\tself.total_count_ += n\n\tn += 1\n\tfor {\n\t\tn--\n\t\tif n == 0 {\n\t\t\tbreak\n\t\t}\n\t\tself.data_[p[0]]++\n\t\tp = p[1:]\n\t}\n}\n\nfunc histogramAddHistogramLiteral(self *histogramLiteral, v *histogramLiteral) {\n\tvar i uint\n\tself.total_count_ += v.total_count_\n\tfor i = 0; i < numLiteralSymbols; i++ {\n\t\tself.data_[i] += v.data_[i]\n\t}\n}\n\nfunc histogramDataSizeLiteral() uint {\n\treturn numLiteralSymbols\n}\n\ntype histogramCommand struct {\n\tdata_        [numCommandSymbols]uint32\n\ttotal_count_ uint\n\tbit_cost_    float64\n}\n\nfunc histogramClearCommand(self *histogramCommand) {\n\tself.data_ = [numCommandSymbols]uint32{}\n\tself.total_count_ = 0\n\tself.bit_cost_ = math.MaxFloat64\n}\n\nfunc clearHistogramsCommand(array []histogramCommand, length uint) {\n\tvar i uint\n\tfor i = 0; i < length; i++ {\n\t\thistogramClearCommand(&array[i:][0])\n\t}\n}\n\nfunc histogramAddCommand(self *histogramCommand, val uint) {\n\tself.data_[val]++\n\tself.total_count_++\n}\n\nfunc histogramAddVectorCommand(self *histogramCommand, p []uint16, n uint) {\n\tself.total_count_ += n\n\tn += 1\n\tfor {\n\t\tn--\n\t\tif n == 0 {\n\t\t\tbreak\n\t\t}\n\t\tself.data_[p[0]]++\n\t\tp = p[1:]\n\t}\n}\n\nfunc histogramAddHistogramCommand(self *histogramCommand, v *histogramCommand) {\n\tvar i uint\n\tself.total_count_ += v.total_count_\n\tfor i = 0; i < numCommandSymbols; i++ {\n\t\tself.data_[i] += v.data_[i]\n\t}\n}\n\nfunc histogramDataSizeCommand() uint {\n\treturn numCommandSymbols\n}\n\ntype histogramDistance struct {\n\tdata_        [numDistanceSymbols]uint32\n\ttotal_count_ uint\n\tbit_cost_    float64\n}\n\nfunc histogramClearDistance(self *histogramDistance) {\n\tself.data_ = [numDistanceSymbols]uint32{}\n\tself.total_count_ = 0\n\tself.bit_cost_ = math.MaxFloat64\n}\n\nfunc clearHistogramsDistance(array []histogramDistance, length uint) {\n\tvar i uint\n\tfor i = 0; i < length; i++ {\n\t\thistogramClearDistance(&array[i:][0])\n\t}\n}\n\nfunc histogramAddDistance(self *histogramDistance, val uint) {\n\tself.data_[val]++\n\tself.total_count_++\n}\n\nfunc histogramAddVectorDistance(self *histogramDistance, p []uint16, n uint) {\n\tself.total_count_ += n\n\tn += 1\n\tfor {\n\t\tn--\n\t\tif n == 0 {\n\t\t\tbreak\n\t\t}\n\t\tself.data_[p[0]]++\n\t\tp = p[1:]\n\t}\n}\n\nfunc histogramAddHistogramDistance(self *histogramDistance, v *histogramDistance) {\n\tvar i uint\n\tself.total_count_ += v.total_count_\n\tfor i = 0; i < numDistanceSymbols; i++ {\n\t\tself.data_[i] += v.data_[i]\n\t}\n}\n\nfunc histogramDataSizeDistance() uint {\n\treturn numDistanceSymbols\n}\n\ntype blockSplitIterator struct {\n\tsplit_  *blockSplit\n\tidx_    uint\n\ttype_   uint\n\tlength_ uint\n}\n\nfunc initBlockSplitIterator(self *blockSplitIterator, split *blockSplit) {\n\tself.split_ = split\n\tself.idx_ = 0\n\tself.type_ = 0\n\tif len(split.lengths) > 0 {\n\t\tself.length_ = uint(split.lengths[0])\n\t} else {\n\t\tself.length_ = 0\n\t}\n}\n\nfunc blockSplitIteratorNext(self *blockSplitIterator) {\n\tif self.length_ == 0 {\n\t\tself.idx_++\n\t\tself.type_ = uint(self.split_.types[self.idx_])\n\t\tself.length_ = uint(self.split_.lengths[self.idx_])\n\t}\n\n\tself.length_--\n}\n\nfunc buildHistogramsWithContext(cmds []command, literal_split *blockSplit, insert_and_copy_split *blockSplit, dist_split *blockSplit, ringbuffer []byte, start_pos uint, mask uint, prev_byte byte, prev_byte2 byte, context_modes []int, literal_histograms []histogramLiteral, insert_and_copy_histograms []histogramCommand, copy_dist_histograms []histogramDistance) {\n\tvar pos uint = start_pos\n\tvar literal_it blockSplitIterator\n\tvar insert_and_copy_it blockSplitIterator\n\tvar dist_it blockSplitIterator\n\n\tinitBlockSplitIterator(&literal_it, literal_split)\n\tinitBlockSplitIterator(&insert_and_copy_it, insert_and_copy_split)\n\tinitBlockSplitIterator(&dist_it, dist_split)\n\tfor i := range cmds {\n\t\tvar cmd *command = &cmds[i]\n\t\tvar j uint\n\t\tblockSplitIteratorNext(&insert_and_copy_it)\n\t\thistogramAddCommand(&insert_and_copy_histograms[insert_and_copy_it.type_], uint(cmd.cmd_prefix_))\n\n\t\t/* TODO: unwrap iterator blocks. */\n\t\tfor j = uint(cmd.insert_len_); j != 0; j-- {\n\t\t\tvar context uint\n\t\t\tblockSplitIteratorNext(&literal_it)\n\t\t\tcontext = literal_it.type_\n\t\t\tif context_modes != nil {\n\t\t\t\tvar lut contextLUT = getContextLUT(context_modes[context])\n\t\t\t\tcontext = (context << literalContextBits) + uint(getContext(prev_byte, prev_byte2, lut))\n\t\t\t}\n\n\t\t\thistogramAddLiteral(&literal_histograms[context], uint(ringbuffer[pos&mask]))\n\t\t\tprev_byte2 = prev_byte\n\t\t\tprev_byte = ringbuffer[pos&mask]\n\t\t\tpos++\n\t\t}\n\n\t\tpos += uint(commandCopyLen(cmd))\n\t\tif commandCopyLen(cmd) != 0 {\n\t\t\tprev_byte2 = ringbuffer[(pos-2)&mask]\n\t\t\tprev_byte = ringbuffer[(pos-1)&mask]\n\t\t\tif cmd.cmd_prefix_ >= 128 {\n\t\t\t\tvar context uint\n\t\t\t\tblockSplitIteratorNext(&dist_it)\n\t\t\t\tcontext = uint(uint32(dist_it.type_<<distanceContextBits) + commandDistanceContext(cmd))\n\t\t\t\thistogramAddDistance(&copy_dist_histograms[context], uint(cmd.dist_prefix_)&0x3FF)\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/http.go",
    "content": "package brotli\n\nimport (\n\t\"compress/gzip\"\n\t\"io\"\n\t\"net/http\"\n\t\"strings\"\n)\n\n// HTTPCompressor chooses a compression method (brotli, gzip, or none) based on\n// the Accept-Encoding header, sets the Content-Encoding header, and returns a\n// WriteCloser that implements that compression. The Close method must be called\n// before the current HTTP handler returns.\n//\n// Due to https://github.com/golang/go/issues/31753, the response will not be\n// compressed unless you set a Content-Type header before you call\n// HTTPCompressor.\nfunc HTTPCompressor(w http.ResponseWriter, r *http.Request) io.WriteCloser {\n\tif w.Header().Get(\"Content-Type\") == \"\" {\n\t\treturn nopCloser{w}\n\t}\n\n\tif w.Header().Get(\"Vary\") == \"\" {\n\t\tw.Header().Set(\"Vary\", \"Accept-Encoding\")\n\t}\n\n\tencoding := negotiateContentEncoding(r, []string{\"br\", \"gzip\"})\n\tswitch encoding {\n\tcase \"br\":\n\t\tw.Header().Set(\"Content-Encoding\", \"br\")\n\t\treturn NewWriter(w)\n\tcase \"gzip\":\n\t\tw.Header().Set(\"Content-Encoding\", \"gzip\")\n\t\treturn gzip.NewWriter(w)\n\t}\n\treturn nopCloser{w}\n}\n\n// negotiateContentEncoding returns the best offered content encoding for the\n// request's Accept-Encoding header. If two offers match with equal weight and\n// then the offer earlier in the list is preferred. If no offers are\n// acceptable, then \"\" is returned.\nfunc negotiateContentEncoding(r *http.Request, offers []string) string {\n\tbestOffer := \"identity\"\n\tbestQ := -1.0\n\tspecs := parseAccept(r.Header, \"Accept-Encoding\")\n\tfor _, offer := range offers {\n\t\tfor _, spec := range specs {\n\t\t\tif spec.Q > bestQ &&\n\t\t\t\t(spec.Value == \"*\" || spec.Value == offer) {\n\t\t\t\tbestQ = spec.Q\n\t\t\t\tbestOffer = offer\n\t\t\t}\n\t\t}\n\t}\n\tif bestQ == 0 {\n\t\tbestOffer = \"\"\n\t}\n\treturn bestOffer\n}\n\n// acceptSpec describes an Accept* header.\ntype acceptSpec struct {\n\tValue string\n\tQ     float64\n}\n\n// parseAccept parses Accept* headers.\nfunc parseAccept(header http.Header, key string) (specs []acceptSpec) {\nloop:\n\tfor _, s := range header[key] {\n\t\tfor {\n\t\t\tvar spec acceptSpec\n\t\t\tspec.Value, s = expectTokenSlash(s)\n\t\t\tif spec.Value == \"\" {\n\t\t\t\tcontinue loop\n\t\t\t}\n\t\t\tspec.Q = 1.0\n\t\t\ts = skipSpace(s)\n\t\t\tif strings.HasPrefix(s, \";\") {\n\t\t\t\ts = skipSpace(s[1:])\n\t\t\t\tif !strings.HasPrefix(s, \"q=\") {\n\t\t\t\t\tcontinue loop\n\t\t\t\t}\n\t\t\t\tspec.Q, s = expectQuality(s[2:])\n\t\t\t\tif spec.Q < 0.0 {\n\t\t\t\t\tcontinue loop\n\t\t\t\t}\n\t\t\t}\n\t\t\tspecs = append(specs, spec)\n\t\t\ts = skipSpace(s)\n\t\t\tif !strings.HasPrefix(s, \",\") {\n\t\t\t\tcontinue loop\n\t\t\t}\n\t\t\ts = skipSpace(s[1:])\n\t\t}\n\t}\n\treturn\n}\n\nfunc skipSpace(s string) (rest string) {\n\ti := 0\n\tfor ; i < len(s); i++ {\n\t\tif octetTypes[s[i]]&isSpace == 0 {\n\t\t\tbreak\n\t\t}\n\t}\n\treturn s[i:]\n}\n\nfunc expectTokenSlash(s string) (token, rest string) {\n\ti := 0\n\tfor ; i < len(s); i++ {\n\t\tb := s[i]\n\t\tif (octetTypes[b]&isToken == 0) && b != '/' {\n\t\t\tbreak\n\t\t}\n\t}\n\treturn s[:i], s[i:]\n}\n\nfunc expectQuality(s string) (q float64, rest string) {\n\tswitch {\n\tcase len(s) == 0:\n\t\treturn -1, \"\"\n\tcase s[0] == '0':\n\t\tq = 0\n\tcase s[0] == '1':\n\t\tq = 1\n\tdefault:\n\t\treturn -1, \"\"\n\t}\n\ts = s[1:]\n\tif !strings.HasPrefix(s, \".\") {\n\t\treturn q, s\n\t}\n\ts = s[1:]\n\ti := 0\n\tn := 0\n\td := 1\n\tfor ; i < len(s); i++ {\n\t\tb := s[i]\n\t\tif b < '0' || b > '9' {\n\t\t\tbreak\n\t\t}\n\t\tn = n*10 + int(b) - '0'\n\t\td *= 10\n\t}\n\treturn q + float64(n)/float64(d), s[i:]\n}\n\n// Octet types from RFC 2616.\nvar octetTypes [256]octetType\n\ntype octetType byte\n\nconst (\n\tisToken octetType = 1 << iota\n\tisSpace\n)\n\nfunc init() {\n\t// OCTET      = <any 8-bit sequence of data>\n\t// CHAR       = <any US-ASCII character (octets 0 - 127)>\n\t// CTL        = <any US-ASCII control character (octets 0 - 31) and DEL (127)>\n\t// CR         = <US-ASCII CR, carriage return (13)>\n\t// LF         = <US-ASCII LF, linefeed (10)>\n\t// SP         = <US-ASCII SP, space (32)>\n\t// HT         = <US-ASCII HT, horizontal-tab (9)>\n\t// <\">        = <US-ASCII double-quote mark (34)>\n\t// CRLF       = CR LF\n\t// LWS        = [CRLF] 1*( SP | HT )\n\t// TEXT       = <any OCTET except CTLs, but including LWS>\n\t// separators = \"(\" | \")\" | \"<\" | \">\" | \"@\" | \",\" | \";\" | \":\" | \"\\\" | <\">\n\t//              | \"/\" | \"[\" | \"]\" | \"?\" | \"=\" | \"{\" | \"}\" | SP | HT\n\t// token      = 1*<any CHAR except CTLs or separators>\n\t// qdtext     = <any TEXT except <\">>\n\n\tfor c := 0; c < 256; c++ {\n\t\tvar t octetType\n\t\tisCtl := c <= 31 || c == 127\n\t\tisChar := 0 <= c && c <= 127\n\t\tisSeparator := strings.IndexRune(\" \\t\\\"(),/:;<=>?@[]\\\\{}\", rune(c)) >= 0\n\t\tif strings.IndexRune(\" \\t\\r\\n\", rune(c)) >= 0 {\n\t\t\tt |= isSpace\n\t\t}\n\t\tif isChar && !isCtl && !isSeparator {\n\t\t\tt |= isToken\n\t\t}\n\t\toctetTypes[c] = t\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/huffman.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Utilities for building Huffman decoding tables. */\n\nconst huffmanMaxCodeLength = 15\n\n/* Maximum possible Huffman table size for an alphabet size of (index * 32),\n   max code length 15 and root table bits 8. */\nvar kMaxHuffmanTableSize = []uint16{\n\t256,\n\t402,\n\t436,\n\t468,\n\t500,\n\t534,\n\t566,\n\t598,\n\t630,\n\t662,\n\t694,\n\t726,\n\t758,\n\t790,\n\t822,\n\t854,\n\t886,\n\t920,\n\t952,\n\t984,\n\t1016,\n\t1048,\n\t1080,\n\t1112,\n\t1144,\n\t1176,\n\t1208,\n\t1240,\n\t1272,\n\t1304,\n\t1336,\n\t1368,\n\t1400,\n\t1432,\n\t1464,\n\t1496,\n\t1528,\n}\n\n/* BROTLI_NUM_BLOCK_LEN_SYMBOLS == 26 */\nconst huffmanMaxSize26 = 396\n\n/* BROTLI_MAX_BLOCK_TYPE_SYMBOLS == 258 */\nconst huffmanMaxSize258 = 632\n\n/* BROTLI_MAX_CONTEXT_MAP_SYMBOLS == 272 */\nconst huffmanMaxSize272 = 646\n\nconst huffmanMaxCodeLengthCodeLength = 5\n\n/* Do not create this struct directly - use the ConstructHuffmanCode\n * constructor below! */\ntype huffmanCode struct {\n\tbits  byte\n\tvalue uint16\n}\n\nfunc constructHuffmanCode(bits byte, value uint16) huffmanCode {\n\tvar h huffmanCode\n\th.bits = bits\n\th.value = value\n\treturn h\n}\n\n/* Builds Huffman lookup table assuming code lengths are in symbol order. */\n\n/* Builds Huffman lookup table assuming code lengths are in symbol order.\n   Returns size of resulting table. */\n\n/* Builds a simple Huffman table. The |num_symbols| parameter is to be\n   interpreted as follows: 0 means 1 symbol, 1 means 2 symbols,\n   2 means 3 symbols, 3 means 4 symbols with lengths [2, 2, 2, 2],\n   4 means 4 symbols with lengths [1, 2, 3, 3]. */\n\n/* Contains a collection of Huffman trees with the same alphabet size. */\n/* max_symbol is needed due to simple codes since log2(alphabet_size) could be\n   greater than log2(max_symbol). */\ntype huffmanTreeGroup struct {\n\thtrees        [][]huffmanCode\n\tcodes         []huffmanCode\n\talphabet_size uint16\n\tmax_symbol    uint16\n\tnum_htrees    uint16\n}\n\nconst reverseBitsMax = 8\n\nconst reverseBitsBase = 0\n\nvar kReverseBits = [1 << reverseBitsMax]byte{\n\t0x00,\n\t0x80,\n\t0x40,\n\t0xC0,\n\t0x20,\n\t0xA0,\n\t0x60,\n\t0xE0,\n\t0x10,\n\t0x90,\n\t0x50,\n\t0xD0,\n\t0x30,\n\t0xB0,\n\t0x70,\n\t0xF0,\n\t0x08,\n\t0x88,\n\t0x48,\n\t0xC8,\n\t0x28,\n\t0xA8,\n\t0x68,\n\t0xE8,\n\t0x18,\n\t0x98,\n\t0x58,\n\t0xD8,\n\t0x38,\n\t0xB8,\n\t0x78,\n\t0xF8,\n\t0x04,\n\t0x84,\n\t0x44,\n\t0xC4,\n\t0x24,\n\t0xA4,\n\t0x64,\n\t0xE4,\n\t0x14,\n\t0x94,\n\t0x54,\n\t0xD4,\n\t0x34,\n\t0xB4,\n\t0x74,\n\t0xF4,\n\t0x0C,\n\t0x8C,\n\t0x4C,\n\t0xCC,\n\t0x2C,\n\t0xAC,\n\t0x6C,\n\t0xEC,\n\t0x1C,\n\t0x9C,\n\t0x5C,\n\t0xDC,\n\t0x3C,\n\t0xBC,\n\t0x7C,\n\t0xFC,\n\t0x02,\n\t0x82,\n\t0x42,\n\t0xC2,\n\t0x22,\n\t0xA2,\n\t0x62,\n\t0xE2,\n\t0x12,\n\t0x92,\n\t0x52,\n\t0xD2,\n\t0x32,\n\t0xB2,\n\t0x72,\n\t0xF2,\n\t0x0A,\n\t0x8A,\n\t0x4A,\n\t0xCA,\n\t0x2A,\n\t0xAA,\n\t0x6A,\n\t0xEA,\n\t0x1A,\n\t0x9A,\n\t0x5A,\n\t0xDA,\n\t0x3A,\n\t0xBA,\n\t0x7A,\n\t0xFA,\n\t0x06,\n\t0x86,\n\t0x46,\n\t0xC6,\n\t0x26,\n\t0xA6,\n\t0x66,\n\t0xE6,\n\t0x16,\n\t0x96,\n\t0x56,\n\t0xD6,\n\t0x36,\n\t0xB6,\n\t0x76,\n\t0xF6,\n\t0x0E,\n\t0x8E,\n\t0x4E,\n\t0xCE,\n\t0x2E,\n\t0xAE,\n\t0x6E,\n\t0xEE,\n\t0x1E,\n\t0x9E,\n\t0x5E,\n\t0xDE,\n\t0x3E,\n\t0xBE,\n\t0x7E,\n\t0xFE,\n\t0x01,\n\t0x81,\n\t0x41,\n\t0xC1,\n\t0x21,\n\t0xA1,\n\t0x61,\n\t0xE1,\n\t0x11,\n\t0x91,\n\t0x51,\n\t0xD1,\n\t0x31,\n\t0xB1,\n\t0x71,\n\t0xF1,\n\t0x09,\n\t0x89,\n\t0x49,\n\t0xC9,\n\t0x29,\n\t0xA9,\n\t0x69,\n\t0xE9,\n\t0x19,\n\t0x99,\n\t0x59,\n\t0xD9,\n\t0x39,\n\t0xB9,\n\t0x79,\n\t0xF9,\n\t0x05,\n\t0x85,\n\t0x45,\n\t0xC5,\n\t0x25,\n\t0xA5,\n\t0x65,\n\t0xE5,\n\t0x15,\n\t0x95,\n\t0x55,\n\t0xD5,\n\t0x35,\n\t0xB5,\n\t0x75,\n\t0xF5,\n\t0x0D,\n\t0x8D,\n\t0x4D,\n\t0xCD,\n\t0x2D,\n\t0xAD,\n\t0x6D,\n\t0xED,\n\t0x1D,\n\t0x9D,\n\t0x5D,\n\t0xDD,\n\t0x3D,\n\t0xBD,\n\t0x7D,\n\t0xFD,\n\t0x03,\n\t0x83,\n\t0x43,\n\t0xC3,\n\t0x23,\n\t0xA3,\n\t0x63,\n\t0xE3,\n\t0x13,\n\t0x93,\n\t0x53,\n\t0xD3,\n\t0x33,\n\t0xB3,\n\t0x73,\n\t0xF3,\n\t0x0B,\n\t0x8B,\n\t0x4B,\n\t0xCB,\n\t0x2B,\n\t0xAB,\n\t0x6B,\n\t0xEB,\n\t0x1B,\n\t0x9B,\n\t0x5B,\n\t0xDB,\n\t0x3B,\n\t0xBB,\n\t0x7B,\n\t0xFB,\n\t0x07,\n\t0x87,\n\t0x47,\n\t0xC7,\n\t0x27,\n\t0xA7,\n\t0x67,\n\t0xE7,\n\t0x17,\n\t0x97,\n\t0x57,\n\t0xD7,\n\t0x37,\n\t0xB7,\n\t0x77,\n\t0xF7,\n\t0x0F,\n\t0x8F,\n\t0x4F,\n\t0xCF,\n\t0x2F,\n\t0xAF,\n\t0x6F,\n\t0xEF,\n\t0x1F,\n\t0x9F,\n\t0x5F,\n\t0xDF,\n\t0x3F,\n\t0xBF,\n\t0x7F,\n\t0xFF,\n}\n\nconst reverseBitsLowest = (uint64(1) << (reverseBitsMax - 1 + reverseBitsBase))\n\n/* Returns reverse(num >> BROTLI_REVERSE_BITS_BASE, BROTLI_REVERSE_BITS_MAX),\n   where reverse(value, len) is the bit-wise reversal of the len least\n   significant bits of value. */\nfunc reverseBits8(num uint64) uint64 {\n\treturn uint64(kReverseBits[num])\n}\n\n/* Stores code in table[0], table[step], table[2*step], ..., table[end] */\n/* Assumes that end is an integer multiple of step */\nfunc replicateValue(table []huffmanCode, step int, end int, code huffmanCode) {\n\tfor {\n\t\tend -= step\n\t\ttable[end] = code\n\t\tif end <= 0 {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n/* Returns the table width of the next 2nd level table. |count| is the histogram\n   of bit lengths for the remaining symbols, |len| is the code length of the\n   next processed symbol. */\nfunc nextTableBitSize(count []uint16, len int, root_bits int) int {\n\tvar left int = 1 << uint(len-root_bits)\n\tfor len < huffmanMaxCodeLength {\n\t\tleft -= int(count[len])\n\t\tif left <= 0 {\n\t\t\tbreak\n\t\t}\n\t\tlen++\n\t\tleft <<= 1\n\t}\n\n\treturn len - root_bits\n}\n\nfunc buildCodeLengthsHuffmanTable(table []huffmanCode, code_lengths []byte, count []uint16) {\n\tvar code huffmanCode /* current table entry */ /* symbol index in original or sorted table */ /* prefix code */ /* prefix code addend */ /* step size to replicate values in current table */ /* size of current table */ /* symbols sorted by code length */\n\tvar symbol int\n\tvar key uint64\n\tvar key_step uint64\n\tvar step int\n\tvar table_size int\n\tvar sorted [codeLengthCodes]int\n\tvar offset [huffmanMaxCodeLengthCodeLength + 1]int\n\tvar bits int\n\tvar bits_count int\n\t/* offsets in sorted table for each length */\n\tassert(huffmanMaxCodeLengthCodeLength <= reverseBitsMax)\n\n\t/* Generate offsets into sorted symbol table by code length. */\n\tsymbol = -1\n\n\tbits = 1\n\tvar i int\n\tfor i = 0; i < huffmanMaxCodeLengthCodeLength; i++ {\n\t\tsymbol += int(count[bits])\n\t\toffset[bits] = symbol\n\t\tbits++\n\t}\n\n\t/* Symbols with code length 0 are placed after all other symbols. */\n\toffset[0] = codeLengthCodes - 1\n\n\t/* Sort symbols by length, by symbol order within each length. */\n\tsymbol = codeLengthCodes\n\n\tfor {\n\t\tvar i int\n\t\tfor i = 0; i < 6; i++ {\n\t\t\tsymbol--\n\t\t\tsorted[offset[code_lengths[symbol]]] = symbol\n\t\t\toffset[code_lengths[symbol]]--\n\t\t}\n\t\tif symbol == 0 {\n\t\t\tbreak\n\t\t}\n\t}\n\n\ttable_size = 1 << huffmanMaxCodeLengthCodeLength\n\n\t/* Special case: all symbols but one have 0 code length. */\n\tif offset[0] == 0 {\n\t\tcode = constructHuffmanCode(0, uint16(sorted[0]))\n\t\tfor key = 0; key < uint64(table_size); key++ {\n\t\t\ttable[key] = code\n\t\t}\n\n\t\treturn\n\t}\n\n\t/* Fill in table. */\n\tkey = 0\n\n\tkey_step = reverseBitsLowest\n\tsymbol = 0\n\tbits = 1\n\tstep = 2\n\tfor {\n\t\tfor bits_count = int(count[bits]); bits_count != 0; bits_count-- {\n\t\t\tcode = constructHuffmanCode(byte(bits), uint16(sorted[symbol]))\n\t\t\tsymbol++\n\t\t\treplicateValue(table[reverseBits8(key):], step, table_size, code)\n\t\t\tkey += key_step\n\t\t}\n\n\t\tstep <<= 1\n\t\tkey_step >>= 1\n\t\tbits++\n\t\tif bits > huffmanMaxCodeLengthCodeLength {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\nfunc buildHuffmanTable(root_table []huffmanCode, root_bits int, symbol_lists symbolList, count []uint16) uint32 {\n\tvar code huffmanCode /* current table entry */ /* next available space in table */ /* current code length */ /* symbol index in original or sorted table */ /* prefix code */ /* prefix code addend */ /* 2nd level table prefix code */ /* 2nd level table prefix code addend */ /* step size to replicate values in current table */ /* key length of current table */ /* size of current table */ /* sum of root table size and 2nd level table sizes */\n\tvar table []huffmanCode\n\tvar len int\n\tvar symbol int\n\tvar key uint64\n\tvar key_step uint64\n\tvar sub_key uint64\n\tvar sub_key_step uint64\n\tvar step int\n\tvar table_bits int\n\tvar table_size int\n\tvar total_size int\n\tvar max_length int = -1\n\tvar bits int\n\tvar bits_count int\n\n\tassert(root_bits <= reverseBitsMax)\n\tassert(huffmanMaxCodeLength-root_bits <= reverseBitsMax)\n\n\tfor symbolListGet(symbol_lists, max_length) == 0xFFFF {\n\t\tmax_length--\n\t}\n\tmax_length += huffmanMaxCodeLength + 1\n\n\ttable = root_table\n\ttable_bits = root_bits\n\ttable_size = 1 << uint(table_bits)\n\ttotal_size = table_size\n\n\t/* Fill in the root table. Reduce the table size to if possible,\n\t   and create the repetitions by memcpy. */\n\tif table_bits > max_length {\n\t\ttable_bits = max_length\n\t\ttable_size = 1 << uint(table_bits)\n\t}\n\n\tkey = 0\n\tkey_step = reverseBitsLowest\n\tbits = 1\n\tstep = 2\n\tfor {\n\t\tsymbol = bits - (huffmanMaxCodeLength + 1)\n\t\tfor bits_count = int(count[bits]); bits_count != 0; bits_count-- {\n\t\t\tsymbol = int(symbolListGet(symbol_lists, symbol))\n\t\t\tcode = constructHuffmanCode(byte(bits), uint16(symbol))\n\t\t\treplicateValue(table[reverseBits8(key):], step, table_size, code)\n\t\t\tkey += key_step\n\t\t}\n\n\t\tstep <<= 1\n\t\tkey_step >>= 1\n\t\tbits++\n\t\tif bits > table_bits {\n\t\t\tbreak\n\t\t}\n\t}\n\n\t/* If root_bits != table_bits then replicate to fill the remaining slots. */\n\tfor total_size != table_size {\n\t\tcopy(table[table_size:], table[:uint(table_size)])\n\t\ttable_size <<= 1\n\t}\n\n\t/* Fill in 2nd level tables and add pointers to root table. */\n\tkey_step = reverseBitsLowest >> uint(root_bits-1)\n\n\tsub_key = reverseBitsLowest << 1\n\tsub_key_step = reverseBitsLowest\n\tlen = root_bits + 1\n\tstep = 2\n\tfor ; len <= max_length; len++ {\n\t\tsymbol = len - (huffmanMaxCodeLength + 1)\n\t\tfor ; count[len] != 0; count[len]-- {\n\t\t\tif sub_key == reverseBitsLowest<<1 {\n\t\t\t\ttable = table[table_size:]\n\t\t\t\ttable_bits = nextTableBitSize(count, int(len), root_bits)\n\t\t\t\ttable_size = 1 << uint(table_bits)\n\t\t\t\ttotal_size += table_size\n\t\t\t\tsub_key = reverseBits8(key)\n\t\t\t\tkey += key_step\n\t\t\t\troot_table[sub_key] = constructHuffmanCode(byte(table_bits+root_bits), uint16(uint64(uint(-cap(table)+cap(root_table)))-sub_key))\n\t\t\t\tsub_key = 0\n\t\t\t}\n\n\t\t\tsymbol = int(symbolListGet(symbol_lists, symbol))\n\t\t\tcode = constructHuffmanCode(byte(len-root_bits), uint16(symbol))\n\t\t\treplicateValue(table[reverseBits8(sub_key):], step, table_size, code)\n\t\t\tsub_key += sub_key_step\n\t\t}\n\n\t\tstep <<= 1\n\t\tsub_key_step >>= 1\n\t}\n\n\treturn uint32(total_size)\n}\n\nfunc buildSimpleHuffmanTable(table []huffmanCode, root_bits int, val []uint16, num_symbols uint32) uint32 {\n\tvar table_size uint32 = 1\n\tvar goal_size uint32 = 1 << uint(root_bits)\n\tswitch num_symbols {\n\tcase 0:\n\t\ttable[0] = constructHuffmanCode(0, val[0])\n\n\tcase 1:\n\t\tif val[1] > val[0] {\n\t\t\ttable[0] = constructHuffmanCode(1, val[0])\n\t\t\ttable[1] = constructHuffmanCode(1, val[1])\n\t\t} else {\n\t\t\ttable[0] = constructHuffmanCode(1, val[1])\n\t\t\ttable[1] = constructHuffmanCode(1, val[0])\n\t\t}\n\n\t\ttable_size = 2\n\n\tcase 2:\n\t\ttable[0] = constructHuffmanCode(1, val[0])\n\t\ttable[2] = constructHuffmanCode(1, val[0])\n\t\tif val[2] > val[1] {\n\t\t\ttable[1] = constructHuffmanCode(2, val[1])\n\t\t\ttable[3] = constructHuffmanCode(2, val[2])\n\t\t} else {\n\t\t\ttable[1] = constructHuffmanCode(2, val[2])\n\t\t\ttable[3] = constructHuffmanCode(2, val[1])\n\t\t}\n\n\t\ttable_size = 4\n\n\tcase 3:\n\t\tvar i int\n\t\tvar k int\n\t\tfor i = 0; i < 3; i++ {\n\t\t\tfor k = i + 1; k < 4; k++ {\n\t\t\t\tif val[k] < val[i] {\n\t\t\t\t\tvar t uint16 = val[k]\n\t\t\t\t\tval[k] = val[i]\n\t\t\t\t\tval[i] = t\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttable[0] = constructHuffmanCode(2, val[0])\n\t\ttable[2] = constructHuffmanCode(2, val[1])\n\t\ttable[1] = constructHuffmanCode(2, val[2])\n\t\ttable[3] = constructHuffmanCode(2, val[3])\n\t\ttable_size = 4\n\n\tcase 4:\n\t\tif val[3] < val[2] {\n\t\t\tvar t uint16 = val[3]\n\t\t\tval[3] = val[2]\n\t\t\tval[2] = t\n\t\t}\n\n\t\ttable[0] = constructHuffmanCode(1, val[0])\n\t\ttable[1] = constructHuffmanCode(2, val[1])\n\t\ttable[2] = constructHuffmanCode(1, val[0])\n\t\ttable[3] = constructHuffmanCode(3, val[2])\n\t\ttable[4] = constructHuffmanCode(1, val[0])\n\t\ttable[5] = constructHuffmanCode(2, val[1])\n\t\ttable[6] = constructHuffmanCode(1, val[0])\n\t\ttable[7] = constructHuffmanCode(3, val[3])\n\t\ttable_size = 8\n\t}\n\n\tfor table_size != goal_size {\n\t\tcopy(table[table_size:], table[:uint(table_size)])\n\t\ttable_size <<= 1\n\t}\n\n\treturn goal_size\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/literal_cost.go",
    "content": "package brotli\n\nfunc utf8Position(last uint, c uint, clamp uint) uint {\n\tif c < 128 {\n\t\treturn 0 /* Next one is the 'Byte 1' again. */\n\t} else if c >= 192 { /* Next one is the 'Byte 2' of utf-8 encoding. */\n\t\treturn brotli_min_size_t(1, clamp)\n\t} else {\n\t\t/* Let's decide over the last byte if this ends the sequence. */\n\t\tif last < 0xE0 {\n\t\t\treturn 0 /* Completed two or three byte coding. */ /* Next one is the 'Byte 3' of utf-8 encoding. */\n\t\t} else {\n\t\t\treturn brotli_min_size_t(2, clamp)\n\t\t}\n\t}\n}\n\nfunc decideMultiByteStatsLevel(pos uint, len uint, mask uint, data []byte) uint {\n\tvar counts = [3]uint{0} /* should be 2, but 1 compresses better. */\n\tvar max_utf8 uint = 1\n\tvar last_c uint = 0\n\tvar i uint\n\tfor i = 0; i < len; i++ {\n\t\tvar c uint = uint(data[(pos+i)&mask])\n\t\tcounts[utf8Position(last_c, c, 2)]++\n\t\tlast_c = c\n\t}\n\n\tif counts[2] < 500 {\n\t\tmax_utf8 = 1\n\t}\n\n\tif counts[1]+counts[2] < 25 {\n\t\tmax_utf8 = 0\n\t}\n\n\treturn max_utf8\n}\n\nfunc estimateBitCostsForLiteralsUTF8(pos uint, len uint, mask uint, data []byte, cost []float32) {\n\tvar max_utf8 uint = decideMultiByteStatsLevel(pos, uint(len), mask, data)\n\t/* Bootstrap histograms. */\n\tvar histogram = [3][256]uint{[256]uint{0}}\n\tvar window_half uint = 495\n\tvar in_window uint = brotli_min_size_t(window_half, uint(len))\n\tvar in_window_utf8 = [3]uint{0}\n\t/* max_utf8 is 0 (normal ASCII single byte modeling),\n\t   1 (for 2-byte UTF-8 modeling), or 2 (for 3-byte UTF-8 modeling). */\n\n\tvar i uint\n\t{\n\t\tvar last_c uint = 0\n\t\tvar utf8_pos uint = 0\n\t\tfor i = 0; i < in_window; i++ {\n\t\t\tvar c uint = uint(data[(pos+i)&mask])\n\t\t\thistogram[utf8_pos][c]++\n\t\t\tin_window_utf8[utf8_pos]++\n\t\t\tutf8_pos = utf8Position(last_c, c, max_utf8)\n\t\t\tlast_c = c\n\t\t}\n\t}\n\n\t/* Compute bit costs with sliding window. */\n\tfor i = 0; i < len; i++ {\n\t\tif i >= window_half {\n\t\t\tvar c uint\n\t\t\tvar last_c uint\n\t\t\tif i < window_half+1 {\n\t\t\t\tc = 0\n\t\t\t} else {\n\t\t\t\tc = uint(data[(pos+i-window_half-1)&mask])\n\t\t\t}\n\t\t\tif i < window_half+2 {\n\t\t\t\tlast_c = 0\n\t\t\t} else {\n\t\t\t\tlast_c = uint(data[(pos+i-window_half-2)&mask])\n\t\t\t}\n\t\t\t/* Remove a byte in the past. */\n\n\t\t\tvar utf8_pos2 uint = utf8Position(last_c, c, max_utf8)\n\t\t\thistogram[utf8_pos2][data[(pos+i-window_half)&mask]]--\n\t\t\tin_window_utf8[utf8_pos2]--\n\t\t}\n\n\t\tif i+window_half < len {\n\t\t\tvar c uint = uint(data[(pos+i+window_half-1)&mask])\n\t\t\tvar last_c uint = uint(data[(pos+i+window_half-2)&mask])\n\t\t\t/* Add a byte in the future. */\n\n\t\t\tvar utf8_pos2 uint = utf8Position(last_c, c, max_utf8)\n\t\t\thistogram[utf8_pos2][data[(pos+i+window_half)&mask]]++\n\t\t\tin_window_utf8[utf8_pos2]++\n\t\t}\n\t\t{\n\t\t\tvar c uint\n\t\t\tvar last_c uint\n\t\t\tif i < 1 {\n\t\t\t\tc = 0\n\t\t\t} else {\n\t\t\t\tc = uint(data[(pos+i-1)&mask])\n\t\t\t}\n\t\t\tif i < 2 {\n\t\t\t\tlast_c = 0\n\t\t\t} else {\n\t\t\t\tlast_c = uint(data[(pos+i-2)&mask])\n\t\t\t}\n\t\t\tvar utf8_pos uint = utf8Position(last_c, c, max_utf8)\n\t\t\tvar masked_pos uint = (pos + i) & mask\n\t\t\tvar histo uint = histogram[utf8_pos][data[masked_pos]]\n\t\t\tvar lit_cost float64\n\t\t\tif histo == 0 {\n\t\t\t\thisto = 1\n\t\t\t}\n\n\t\t\tlit_cost = fastLog2(in_window_utf8[utf8_pos]) - fastLog2(histo)\n\t\t\tlit_cost += 0.02905\n\t\t\tif lit_cost < 1.0 {\n\t\t\t\tlit_cost *= 0.5\n\t\t\t\tlit_cost += 0.5\n\t\t\t}\n\n\t\t\t/* Make the first bytes more expensive -- seems to help, not sure why.\n\t\t\t   Perhaps because the entropy source is changing its properties\n\t\t\t   rapidly in the beginning of the file, perhaps because the beginning\n\t\t\t   of the data is a statistical \"anomaly\". */\n\t\t\tif i < 2000 {\n\t\t\t\tlit_cost += 0.7 - (float64(2000-i) / 2000.0 * 0.35)\n\t\t\t}\n\n\t\t\tcost[i] = float32(lit_cost)\n\t\t}\n\t}\n}\n\nfunc estimateBitCostsForLiterals(pos uint, len uint, mask uint, data []byte, cost []float32) {\n\tif isMostlyUTF8(data, pos, mask, uint(len), kMinUTF8Ratio) {\n\t\testimateBitCostsForLiteralsUTF8(pos, uint(len), mask, data, cost)\n\t\treturn\n\t} else {\n\t\tvar histogram = [256]uint{0}\n\t\tvar window_half uint = 2000\n\t\tvar in_window uint = brotli_min_size_t(window_half, uint(len))\n\t\tvar i uint\n\t\t/* Bootstrap histogram. */\n\t\tfor i = 0; i < in_window; i++ {\n\t\t\thistogram[data[(pos+i)&mask]]++\n\t\t}\n\n\t\t/* Compute bit costs with sliding window. */\n\t\tfor i = 0; i < len; i++ {\n\t\t\tvar histo uint\n\t\t\tif i >= window_half {\n\t\t\t\t/* Remove a byte in the past. */\n\t\t\t\thistogram[data[(pos+i-window_half)&mask]]--\n\n\t\t\t\tin_window--\n\t\t\t}\n\n\t\t\tif i+window_half < len {\n\t\t\t\t/* Add a byte in the future. */\n\t\t\t\thistogram[data[(pos+i+window_half)&mask]]++\n\n\t\t\t\tin_window++\n\t\t\t}\n\n\t\t\thisto = histogram[data[(pos+i)&mask]]\n\t\t\tif histo == 0 {\n\t\t\t\thisto = 1\n\t\t\t}\n\t\t\t{\n\t\t\t\tvar lit_cost float64 = fastLog2(in_window) - fastLog2(histo)\n\t\t\t\tlit_cost += 0.029\n\t\t\t\tif lit_cost < 1.0 {\n\t\t\t\t\tlit_cost *= 0.5\n\t\t\t\t\tlit_cost += 0.5\n\t\t\t\t}\n\n\t\t\t\tcost[i] = float32(lit_cost)\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/memory.go",
    "content": "package brotli\n\n/* Copyright 2016 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/*\nDynamically grows array capacity to at least the requested size\nT: data type\nA: array\nC: capacity\nR: requested size\n*/\nfunc brotli_ensure_capacity_uint8_t(a *[]byte, c *uint, r uint) {\n\tif *c < r {\n\t\tvar new_size uint = *c\n\t\tif new_size == 0 {\n\t\t\tnew_size = r\n\t\t}\n\n\t\tfor new_size < r {\n\t\t\tnew_size *= 2\n\t\t}\n\n\t\tif cap(*a) < int(new_size) {\n\t\t\tvar new_array []byte = make([]byte, new_size)\n\t\t\tif *c != 0 {\n\t\t\t\tcopy(new_array, (*a)[:*c])\n\t\t\t}\n\n\t\t\t*a = new_array\n\t\t} else {\n\t\t\t*a = (*a)[:new_size]\n\t\t}\n\n\t\t*c = new_size\n\t}\n}\n\nfunc brotli_ensure_capacity_uint32_t(a *[]uint32, c *uint, r uint) {\n\tvar new_array []uint32\n\tif *c < r {\n\t\tvar new_size uint = *c\n\t\tif new_size == 0 {\n\t\t\tnew_size = r\n\t\t}\n\n\t\tfor new_size < r {\n\t\t\tnew_size *= 2\n\t\t}\n\n\t\tif cap(*a) < int(new_size) {\n\t\t\tnew_array = make([]uint32, new_size)\n\t\t\tif *c != 0 {\n\t\t\t\tcopy(new_array, (*a)[:*c])\n\t\t\t}\n\n\t\t\t*a = new_array\n\t\t} else {\n\t\t\t*a = (*a)[:new_size]\n\t\t}\n\t\t*c = new_size\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/metablock.go",
    "content": "package brotli\n\nimport (\n\t\"sync\"\n)\n\n/* Copyright 2014 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Algorithms for distributing the literals and commands of a metablock between\n   block types and contexts. */\n\ntype metaBlockSplit struct {\n\tliteral_split             blockSplit\n\tcommand_split             blockSplit\n\tdistance_split            blockSplit\n\tliteral_context_map       []uint32\n\tliteral_context_map_size  uint\n\tdistance_context_map      []uint32\n\tdistance_context_map_size uint\n\tliteral_histograms        []histogramLiteral\n\tliteral_histograms_size   uint\n\tcommand_histograms        []histogramCommand\n\tcommand_histograms_size   uint\n\tdistance_histograms       []histogramDistance\n\tdistance_histograms_size  uint\n}\n\nvar metaBlockPool sync.Pool\n\nfunc getMetaBlockSplit() *metaBlockSplit {\n\tmb, _ := metaBlockPool.Get().(*metaBlockSplit)\n\n\tif mb == nil {\n\t\tmb = &metaBlockSplit{}\n\t} else {\n\t\tinitBlockSplit(&mb.literal_split)\n\t\tinitBlockSplit(&mb.command_split)\n\t\tinitBlockSplit(&mb.distance_split)\n\t\tmb.literal_context_map = mb.literal_context_map[:0]\n\t\tmb.literal_context_map_size = 0\n\t\tmb.distance_context_map = mb.distance_context_map[:0]\n\t\tmb.distance_context_map_size = 0\n\t\tmb.literal_histograms = mb.literal_histograms[:0]\n\t\tmb.command_histograms = mb.command_histograms[:0]\n\t\tmb.distance_histograms = mb.distance_histograms[:0]\n\t}\n\treturn mb\n}\n\nfunc freeMetaBlockSplit(mb *metaBlockSplit) {\n\tmetaBlockPool.Put(mb)\n}\n\nfunc initDistanceParams(params *encoderParams, npostfix uint32, ndirect uint32) {\n\tvar dist_params *distanceParams = &params.dist\n\tvar alphabet_size uint32\n\tvar max_distance uint32\n\n\tdist_params.distance_postfix_bits = npostfix\n\tdist_params.num_direct_distance_codes = ndirect\n\n\talphabet_size = uint32(distanceAlphabetSize(uint(npostfix), uint(ndirect), maxDistanceBits))\n\tmax_distance = ndirect + (1 << (maxDistanceBits + npostfix + 2)) - (1 << (npostfix + 2))\n\n\tif params.large_window {\n\t\tvar bound = [maxNpostfix + 1]uint32{0, 4, 12, 28}\n\t\tvar postfix uint32 = 1 << npostfix\n\t\talphabet_size = uint32(distanceAlphabetSize(uint(npostfix), uint(ndirect), largeMaxDistanceBits))\n\n\t\t/* The maximum distance is set so that no distance symbol used can encode\n\t\t   a distance larger than BROTLI_MAX_ALLOWED_DISTANCE with all\n\t\t   its extra bits set. */\n\t\tif ndirect < bound[npostfix] {\n\t\t\tmax_distance = maxAllowedDistance - (bound[npostfix] - ndirect)\n\t\t} else if ndirect >= bound[npostfix]+postfix {\n\t\t\tmax_distance = (3 << 29) - 4 + (ndirect - bound[npostfix])\n\t\t} else {\n\t\t\tmax_distance = maxAllowedDistance\n\t\t}\n\t}\n\n\tdist_params.alphabet_size = alphabet_size\n\tdist_params.max_distance = uint(max_distance)\n}\n\nfunc recomputeDistancePrefixes(cmds []command, orig_params *distanceParams, new_params *distanceParams) {\n\tif orig_params.distance_postfix_bits == new_params.distance_postfix_bits && orig_params.num_direct_distance_codes == new_params.num_direct_distance_codes {\n\t\treturn\n\t}\n\n\tfor i := range cmds {\n\t\tvar cmd *command = &cmds[i]\n\t\tif commandCopyLen(cmd) != 0 && cmd.cmd_prefix_ >= 128 {\n\t\t\tprefixEncodeCopyDistance(uint(commandRestoreDistanceCode(cmd, orig_params)), uint(new_params.num_direct_distance_codes), uint(new_params.distance_postfix_bits), &cmd.dist_prefix_, &cmd.dist_extra_)\n\t\t}\n\t}\n}\n\nfunc computeDistanceCost(cmds []command, orig_params *distanceParams, new_params *distanceParams, cost *float64) bool {\n\tvar equal_params bool = false\n\tvar dist_prefix uint16\n\tvar dist_extra uint32\n\tvar extra_bits float64 = 0.0\n\tvar histo histogramDistance\n\thistogramClearDistance(&histo)\n\n\tif orig_params.distance_postfix_bits == new_params.distance_postfix_bits && orig_params.num_direct_distance_codes == new_params.num_direct_distance_codes {\n\t\tequal_params = true\n\t}\n\n\tfor i := range cmds {\n\t\tcmd := &cmds[i]\n\t\tif commandCopyLen(cmd) != 0 && cmd.cmd_prefix_ >= 128 {\n\t\t\tif equal_params {\n\t\t\t\tdist_prefix = cmd.dist_prefix_\n\t\t\t} else {\n\t\t\t\tvar distance uint32 = commandRestoreDistanceCode(cmd, orig_params)\n\t\t\t\tif distance > uint32(new_params.max_distance) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\n\t\t\t\tprefixEncodeCopyDistance(uint(distance), uint(new_params.num_direct_distance_codes), uint(new_params.distance_postfix_bits), &dist_prefix, &dist_extra)\n\t\t\t}\n\n\t\t\thistogramAddDistance(&histo, uint(dist_prefix)&0x3FF)\n\t\t\textra_bits += float64(dist_prefix >> 10)\n\t\t}\n\t}\n\n\t*cost = populationCostDistance(&histo) + extra_bits\n\treturn true\n}\n\nvar buildMetaBlock_kMaxNumberOfHistograms uint = 256\n\nfunc buildMetaBlock(ringbuffer []byte, pos uint, mask uint, params *encoderParams, prev_byte byte, prev_byte2 byte, cmds []command, literal_context_mode int, mb *metaBlockSplit) {\n\tvar distance_histograms []histogramDistance\n\tvar literal_histograms []histogramLiteral\n\tvar literal_context_modes []int = nil\n\tvar literal_histograms_size uint\n\tvar distance_histograms_size uint\n\tvar i uint\n\tvar literal_context_multiplier uint = 1\n\tvar npostfix uint32\n\tvar ndirect_msb uint32 = 0\n\tvar check_orig bool = true\n\tvar best_dist_cost float64 = 1e99\n\tvar orig_params encoderParams = *params\n\t/* Histogram ids need to fit in one byte. */\n\n\tvar new_params encoderParams = *params\n\n\tfor npostfix = 0; npostfix <= maxNpostfix; npostfix++ {\n\t\tfor ; ndirect_msb < 16; ndirect_msb++ {\n\t\t\tvar ndirect uint32 = ndirect_msb << npostfix\n\t\t\tvar skip bool\n\t\t\tvar dist_cost float64\n\t\t\tinitDistanceParams(&new_params, npostfix, ndirect)\n\t\t\tif npostfix == orig_params.dist.distance_postfix_bits && ndirect == orig_params.dist.num_direct_distance_codes {\n\t\t\t\tcheck_orig = false\n\t\t\t}\n\n\t\t\tskip = !computeDistanceCost(cmds, &orig_params.dist, &new_params.dist, &dist_cost)\n\t\t\tif skip || (dist_cost > best_dist_cost) {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tbest_dist_cost = dist_cost\n\t\t\tparams.dist = new_params.dist\n\t\t}\n\n\t\tif ndirect_msb > 0 {\n\t\t\tndirect_msb--\n\t\t}\n\t\tndirect_msb /= 2\n\t}\n\n\tif check_orig {\n\t\tvar dist_cost float64\n\t\tcomputeDistanceCost(cmds, &orig_params.dist, &orig_params.dist, &dist_cost)\n\t\tif dist_cost < best_dist_cost {\n\t\t\t/* NB: currently unused; uncomment when more param tuning is added. */\n\t\t\t/* best_dist_cost = dist_cost; */\n\t\t\tparams.dist = orig_params.dist\n\t\t}\n\t}\n\n\trecomputeDistancePrefixes(cmds, &orig_params.dist, &params.dist)\n\n\tsplitBlock(cmds, ringbuffer, pos, mask, params, &mb.literal_split, &mb.command_split, &mb.distance_split)\n\n\tif !params.disable_literal_context_modeling {\n\t\tliteral_context_multiplier = 1 << literalContextBits\n\t\tliteral_context_modes = make([]int, (mb.literal_split.num_types))\n\t\tfor i = 0; i < mb.literal_split.num_types; i++ {\n\t\t\tliteral_context_modes[i] = literal_context_mode\n\t\t}\n\t}\n\n\tliteral_histograms_size = mb.literal_split.num_types * literal_context_multiplier\n\tliteral_histograms = make([]histogramLiteral, literal_histograms_size)\n\tclearHistogramsLiteral(literal_histograms, literal_histograms_size)\n\n\tdistance_histograms_size = mb.distance_split.num_types << distanceContextBits\n\tdistance_histograms = make([]histogramDistance, distance_histograms_size)\n\tclearHistogramsDistance(distance_histograms, distance_histograms_size)\n\n\tmb.command_histograms_size = mb.command_split.num_types\n\tif cap(mb.command_histograms) < int(mb.command_histograms_size) {\n\t\tmb.command_histograms = make([]histogramCommand, (mb.command_histograms_size))\n\t} else {\n\t\tmb.command_histograms = mb.command_histograms[:mb.command_histograms_size]\n\t}\n\tclearHistogramsCommand(mb.command_histograms, mb.command_histograms_size)\n\n\tbuildHistogramsWithContext(cmds, &mb.literal_split, &mb.command_split, &mb.distance_split, ringbuffer, pos, mask, prev_byte, prev_byte2, literal_context_modes, literal_histograms, mb.command_histograms, distance_histograms)\n\tliteral_context_modes = nil\n\n\tmb.literal_context_map_size = mb.literal_split.num_types << literalContextBits\n\tif cap(mb.literal_context_map) < int(mb.literal_context_map_size) {\n\t\tmb.literal_context_map = make([]uint32, (mb.literal_context_map_size))\n\t} else {\n\t\tmb.literal_context_map = mb.literal_context_map[:mb.literal_context_map_size]\n\t}\n\n\tmb.literal_histograms_size = mb.literal_context_map_size\n\tif cap(mb.literal_histograms) < int(mb.literal_histograms_size) {\n\t\tmb.literal_histograms = make([]histogramLiteral, (mb.literal_histograms_size))\n\t} else {\n\t\tmb.literal_histograms = mb.literal_histograms[:mb.literal_histograms_size]\n\t}\n\n\tclusterHistogramsLiteral(literal_histograms, literal_histograms_size, buildMetaBlock_kMaxNumberOfHistograms, mb.literal_histograms, &mb.literal_histograms_size, mb.literal_context_map)\n\tliteral_histograms = nil\n\n\tif params.disable_literal_context_modeling {\n\t\t/* Distribute assignment to all contexts. */\n\t\tfor i = mb.literal_split.num_types; i != 0; {\n\t\t\tvar j uint = 0\n\t\t\ti--\n\t\t\tfor ; j < 1<<literalContextBits; j++ {\n\t\t\t\tmb.literal_context_map[(i<<literalContextBits)+j] = mb.literal_context_map[i]\n\t\t\t}\n\t\t}\n\t}\n\n\tmb.distance_context_map_size = mb.distance_split.num_types << distanceContextBits\n\tif cap(mb.distance_context_map) < int(mb.distance_context_map_size) {\n\t\tmb.distance_context_map = make([]uint32, (mb.distance_context_map_size))\n\t} else {\n\t\tmb.distance_context_map = mb.distance_context_map[:mb.distance_context_map_size]\n\t}\n\n\tmb.distance_histograms_size = mb.distance_context_map_size\n\tif cap(mb.distance_histograms) < int(mb.distance_histograms_size) {\n\t\tmb.distance_histograms = make([]histogramDistance, (mb.distance_histograms_size))\n\t} else {\n\t\tmb.distance_histograms = mb.distance_histograms[:mb.distance_histograms_size]\n\t}\n\n\tclusterHistogramsDistance(distance_histograms, mb.distance_context_map_size, buildMetaBlock_kMaxNumberOfHistograms, mb.distance_histograms, &mb.distance_histograms_size, mb.distance_context_map)\n\tdistance_histograms = nil\n}\n\nconst maxStaticContexts = 13\n\n/* Greedy block splitter for one block category (literal, command or distance).\n   Gathers histograms for all context buckets. */\ntype contextBlockSplitter struct {\n\talphabet_size_     uint\n\tnum_contexts_      uint\n\tmax_block_types_   uint\n\tmin_block_size_    uint\n\tsplit_threshold_   float64\n\tnum_blocks_        uint\n\tsplit_             *blockSplit\n\thistograms_        []histogramLiteral\n\thistograms_size_   *uint\n\ttarget_block_size_ uint\n\tblock_size_        uint\n\tcurr_histogram_ix_ uint\n\tlast_histogram_ix_ [2]uint\n\tlast_entropy_      [2 * maxStaticContexts]float64\n\tmerge_last_count_  uint\n}\n\nfunc initContextBlockSplitter(self *contextBlockSplitter, alphabet_size uint, num_contexts uint, min_block_size uint, split_threshold float64, num_symbols uint, split *blockSplit, histograms *[]histogramLiteral, histograms_size *uint) {\n\tvar max_num_blocks uint = num_symbols/min_block_size + 1\n\tvar max_num_types uint\n\tassert(num_contexts <= maxStaticContexts)\n\n\tself.alphabet_size_ = alphabet_size\n\tself.num_contexts_ = num_contexts\n\tself.max_block_types_ = maxNumberOfBlockTypes / num_contexts\n\tself.min_block_size_ = min_block_size\n\tself.split_threshold_ = split_threshold\n\tself.num_blocks_ = 0\n\tself.split_ = split\n\tself.histograms_size_ = histograms_size\n\tself.target_block_size_ = min_block_size\n\tself.block_size_ = 0\n\tself.curr_histogram_ix_ = 0\n\tself.merge_last_count_ = 0\n\n\t/* We have to allocate one more histogram than the maximum number of block\n\t   types for the current histogram when the meta-block is too big. */\n\tmax_num_types = brotli_min_size_t(max_num_blocks, self.max_block_types_+1)\n\n\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, max_num_blocks)\n\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, max_num_blocks)\n\tsplit.num_blocks = max_num_blocks\n\t*histograms_size = max_num_types * num_contexts\n\tif histograms == nil || cap(*histograms) < int(*histograms_size) {\n\t\t*histograms = make([]histogramLiteral, (*histograms_size))\n\t} else {\n\t\t*histograms = (*histograms)[:*histograms_size]\n\t}\n\tself.histograms_ = *histograms\n\n\t/* Clear only current histogram. */\n\tclearHistogramsLiteral(self.histograms_[0:], num_contexts)\n\n\tself.last_histogram_ix_[1] = 0\n\tself.last_histogram_ix_[0] = self.last_histogram_ix_[1]\n}\n\n/* Does either of three things:\n   (1) emits the current block with a new block type;\n   (2) emits the current block with the type of the second last block;\n   (3) merges the current block with the last block. */\nfunc contextBlockSplitterFinishBlock(self *contextBlockSplitter, is_final bool) {\n\tvar split *blockSplit = self.split_\n\tvar num_contexts uint = self.num_contexts_\n\tvar last_entropy []float64 = self.last_entropy_[:]\n\tvar histograms []histogramLiteral = self.histograms_\n\n\tif self.block_size_ < self.min_block_size_ {\n\t\tself.block_size_ = self.min_block_size_\n\t}\n\n\tif self.num_blocks_ == 0 {\n\t\tvar i uint\n\n\t\t/* Create first block. */\n\t\tsplit.lengths[0] = uint32(self.block_size_)\n\n\t\tsplit.types[0] = 0\n\n\t\tfor i = 0; i < num_contexts; i++ {\n\t\t\tlast_entropy[i] = bitsEntropy(histograms[i].data_[:], self.alphabet_size_)\n\t\t\tlast_entropy[num_contexts+i] = last_entropy[i]\n\t\t}\n\n\t\tself.num_blocks_++\n\t\tsplit.num_types++\n\t\tself.curr_histogram_ix_ += num_contexts\n\t\tif self.curr_histogram_ix_ < *self.histograms_size_ {\n\t\t\tclearHistogramsLiteral(self.histograms_[self.curr_histogram_ix_:], self.num_contexts_)\n\t\t}\n\n\t\tself.block_size_ = 0\n\t} else if self.block_size_ > 0 {\n\t\tvar entropy [maxStaticContexts]float64\n\t\tvar combined_histo []histogramLiteral = make([]histogramLiteral, (2 * num_contexts))\n\t\tvar combined_entropy [2 * maxStaticContexts]float64\n\t\tvar diff = [2]float64{0.0}\n\t\t/* Try merging the set of histograms for the current block type with the\n\t\t   respective set of histograms for the last and second last block types.\n\t\t   Decide over the split based on the total reduction of entropy across\n\t\t   all contexts. */\n\n\t\tvar i uint\n\t\tfor i = 0; i < num_contexts; i++ {\n\t\t\tvar curr_histo_ix uint = self.curr_histogram_ix_ + i\n\t\t\tvar j uint\n\t\t\tentropy[i] = bitsEntropy(histograms[curr_histo_ix].data_[:], self.alphabet_size_)\n\t\t\tfor j = 0; j < 2; j++ {\n\t\t\t\tvar jx uint = j*num_contexts + i\n\t\t\t\tvar last_histogram_ix uint = self.last_histogram_ix_[j] + i\n\t\t\t\tcombined_histo[jx] = histograms[curr_histo_ix]\n\t\t\t\thistogramAddHistogramLiteral(&combined_histo[jx], &histograms[last_histogram_ix])\n\t\t\t\tcombined_entropy[jx] = bitsEntropy(combined_histo[jx].data_[0:], self.alphabet_size_)\n\t\t\t\tdiff[j] += combined_entropy[jx] - entropy[i] - last_entropy[jx]\n\t\t\t}\n\t\t}\n\n\t\tif split.num_types < self.max_block_types_ && diff[0] > self.split_threshold_ && diff[1] > self.split_threshold_ {\n\t\t\t/* Create new block. */\n\t\t\tsplit.lengths[self.num_blocks_] = uint32(self.block_size_)\n\n\t\t\tsplit.types[self.num_blocks_] = byte(split.num_types)\n\t\t\tself.last_histogram_ix_[1] = self.last_histogram_ix_[0]\n\t\t\tself.last_histogram_ix_[0] = split.num_types * num_contexts\n\t\t\tfor i = 0; i < num_contexts; i++ {\n\t\t\t\tlast_entropy[num_contexts+i] = last_entropy[i]\n\t\t\t\tlast_entropy[i] = entropy[i]\n\t\t\t}\n\n\t\t\tself.num_blocks_++\n\t\t\tsplit.num_types++\n\t\t\tself.curr_histogram_ix_ += num_contexts\n\t\t\tif self.curr_histogram_ix_ < *self.histograms_size_ {\n\t\t\t\tclearHistogramsLiteral(self.histograms_[self.curr_histogram_ix_:], self.num_contexts_)\n\t\t\t}\n\n\t\t\tself.block_size_ = 0\n\t\t\tself.merge_last_count_ = 0\n\t\t\tself.target_block_size_ = self.min_block_size_\n\t\t} else if diff[1] < diff[0]-20.0 {\n\t\t\tsplit.lengths[self.num_blocks_] = uint32(self.block_size_)\n\t\t\tsplit.types[self.num_blocks_] = split.types[self.num_blocks_-2]\n\t\t\t/* Combine this block with second last block. */\n\n\t\t\tvar tmp uint = self.last_histogram_ix_[0]\n\t\t\tself.last_histogram_ix_[0] = self.last_histogram_ix_[1]\n\t\t\tself.last_histogram_ix_[1] = tmp\n\t\t\tfor i = 0; i < num_contexts; i++ {\n\t\t\t\thistograms[self.last_histogram_ix_[0]+i] = combined_histo[num_contexts+i]\n\t\t\t\tlast_entropy[num_contexts+i] = last_entropy[i]\n\t\t\t\tlast_entropy[i] = combined_entropy[num_contexts+i]\n\t\t\t\thistogramClearLiteral(&histograms[self.curr_histogram_ix_+i])\n\t\t\t}\n\n\t\t\tself.num_blocks_++\n\t\t\tself.block_size_ = 0\n\t\t\tself.merge_last_count_ = 0\n\t\t\tself.target_block_size_ = self.min_block_size_\n\t\t} else {\n\t\t\t/* Combine this block with last block. */\n\t\t\tsplit.lengths[self.num_blocks_-1] += uint32(self.block_size_)\n\n\t\t\tfor i = 0; i < num_contexts; i++ {\n\t\t\t\thistograms[self.last_histogram_ix_[0]+i] = combined_histo[i]\n\t\t\t\tlast_entropy[i] = combined_entropy[i]\n\t\t\t\tif split.num_types == 1 {\n\t\t\t\t\tlast_entropy[num_contexts+i] = last_entropy[i]\n\t\t\t\t}\n\n\t\t\t\thistogramClearLiteral(&histograms[self.curr_histogram_ix_+i])\n\t\t\t}\n\n\t\t\tself.block_size_ = 0\n\t\t\tself.merge_last_count_++\n\t\t\tif self.merge_last_count_ > 1 {\n\t\t\t\tself.target_block_size_ += self.min_block_size_\n\t\t\t}\n\t\t}\n\n\t\tcombined_histo = nil\n\t}\n\n\tif is_final {\n\t\t*self.histograms_size_ = split.num_types * num_contexts\n\t\tsplit.num_blocks = self.num_blocks_\n\t}\n}\n\n/* Adds the next symbol to the current block type and context. When the\n   current block reaches the target size, decides on merging the block. */\nfunc contextBlockSplitterAddSymbol(self *contextBlockSplitter, symbol uint, context uint) {\n\thistogramAddLiteral(&self.histograms_[self.curr_histogram_ix_+context], symbol)\n\tself.block_size_++\n\tif self.block_size_ == self.target_block_size_ {\n\t\tcontextBlockSplitterFinishBlock(self, false) /* is_final = */\n\t}\n}\n\nfunc mapStaticContexts(num_contexts uint, static_context_map []uint32, mb *metaBlockSplit) {\n\tvar i uint\n\tmb.literal_context_map_size = mb.literal_split.num_types << literalContextBits\n\tif cap(mb.literal_context_map) < int(mb.literal_context_map_size) {\n\t\tmb.literal_context_map = make([]uint32, (mb.literal_context_map_size))\n\t} else {\n\t\tmb.literal_context_map = mb.literal_context_map[:mb.literal_context_map_size]\n\t}\n\n\tfor i = 0; i < mb.literal_split.num_types; i++ {\n\t\tvar offset uint32 = uint32(i * num_contexts)\n\t\tvar j uint\n\t\tfor j = 0; j < 1<<literalContextBits; j++ {\n\t\t\tmb.literal_context_map[(i<<literalContextBits)+j] = offset + static_context_map[j]\n\t\t}\n\t}\n}\n\nfunc buildMetaBlockGreedyInternal(ringbuffer []byte, pos uint, mask uint, prev_byte byte, prev_byte2 byte, literal_context_lut contextLUT, num_contexts uint, static_context_map []uint32, commands []command, mb *metaBlockSplit) {\n\tvar lit_blocks struct {\n\t\tplain blockSplitterLiteral\n\t\tctx   contextBlockSplitter\n\t}\n\tvar cmd_blocks blockSplitterCommand\n\tvar dist_blocks blockSplitterDistance\n\tvar num_literals uint = 0\n\tfor i := range commands {\n\t\tnum_literals += uint(commands[i].insert_len_)\n\t}\n\n\tif num_contexts == 1 {\n\t\tinitBlockSplitterLiteral(&lit_blocks.plain, 256, 512, 400.0, num_literals, &mb.literal_split, &mb.literal_histograms, &mb.literal_histograms_size)\n\t} else {\n\t\tinitContextBlockSplitter(&lit_blocks.ctx, 256, num_contexts, 512, 400.0, num_literals, &mb.literal_split, &mb.literal_histograms, &mb.literal_histograms_size)\n\t}\n\n\tinitBlockSplitterCommand(&cmd_blocks, numCommandSymbols, 1024, 500.0, uint(len(commands)), &mb.command_split, &mb.command_histograms, &mb.command_histograms_size)\n\tinitBlockSplitterDistance(&dist_blocks, 64, 512, 100.0, uint(len(commands)), &mb.distance_split, &mb.distance_histograms, &mb.distance_histograms_size)\n\n\tfor _, cmd := range commands {\n\t\tvar j uint\n\t\tblockSplitterAddSymbolCommand(&cmd_blocks, uint(cmd.cmd_prefix_))\n\t\tfor j = uint(cmd.insert_len_); j != 0; j-- {\n\t\t\tvar literal byte = ringbuffer[pos&mask]\n\t\t\tif num_contexts == 1 {\n\t\t\t\tblockSplitterAddSymbolLiteral(&lit_blocks.plain, uint(literal))\n\t\t\t} else {\n\t\t\t\tvar context uint = uint(getContext(prev_byte, prev_byte2, literal_context_lut))\n\t\t\t\tcontextBlockSplitterAddSymbol(&lit_blocks.ctx, uint(literal), uint(static_context_map[context]))\n\t\t\t}\n\n\t\t\tprev_byte2 = prev_byte\n\t\t\tprev_byte = literal\n\t\t\tpos++\n\t\t}\n\n\t\tpos += uint(commandCopyLen(&cmd))\n\t\tif commandCopyLen(&cmd) != 0 {\n\t\t\tprev_byte2 = ringbuffer[(pos-2)&mask]\n\t\t\tprev_byte = ringbuffer[(pos-1)&mask]\n\t\t\tif cmd.cmd_prefix_ >= 128 {\n\t\t\t\tblockSplitterAddSymbolDistance(&dist_blocks, uint(cmd.dist_prefix_)&0x3FF)\n\t\t\t}\n\t\t}\n\t}\n\n\tif num_contexts == 1 {\n\t\tblockSplitterFinishBlockLiteral(&lit_blocks.plain, true) /* is_final = */\n\t} else {\n\t\tcontextBlockSplitterFinishBlock(&lit_blocks.ctx, true) /* is_final = */\n\t}\n\n\tblockSplitterFinishBlockCommand(&cmd_blocks, true)   /* is_final = */\n\tblockSplitterFinishBlockDistance(&dist_blocks, true) /* is_final = */\n\n\tif num_contexts > 1 {\n\t\tmapStaticContexts(num_contexts, static_context_map, mb)\n\t}\n}\n\nfunc buildMetaBlockGreedy(ringbuffer []byte, pos uint, mask uint, prev_byte byte, prev_byte2 byte, literal_context_lut contextLUT, num_contexts uint, static_context_map []uint32, commands []command, mb *metaBlockSplit) {\n\tif num_contexts == 1 {\n\t\tbuildMetaBlockGreedyInternal(ringbuffer, pos, mask, prev_byte, prev_byte2, literal_context_lut, 1, nil, commands, mb)\n\t} else {\n\t\tbuildMetaBlockGreedyInternal(ringbuffer, pos, mask, prev_byte, prev_byte2, literal_context_lut, num_contexts, static_context_map, commands, mb)\n\t}\n}\n\nfunc optimizeHistograms(num_distance_codes uint32, mb *metaBlockSplit) {\n\tvar good_for_rle [numCommandSymbols]byte\n\tvar i uint\n\tfor i = 0; i < mb.literal_histograms_size; i++ {\n\t\toptimizeHuffmanCountsForRLE(256, mb.literal_histograms[i].data_[:], good_for_rle[:])\n\t}\n\n\tfor i = 0; i < mb.command_histograms_size; i++ {\n\t\toptimizeHuffmanCountsForRLE(numCommandSymbols, mb.command_histograms[i].data_[:], good_for_rle[:])\n\t}\n\n\tfor i = 0; i < mb.distance_histograms_size; i++ {\n\t\toptimizeHuffmanCountsForRLE(uint(num_distance_codes), mb.distance_histograms[i].data_[:], good_for_rle[:])\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/metablock_command.go",
    "content": "package brotli\n\n/* Copyright 2015 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Greedy block splitter for one block category (literal, command or distance).\n */\ntype blockSplitterCommand struct {\n\talphabet_size_     uint\n\tmin_block_size_    uint\n\tsplit_threshold_   float64\n\tnum_blocks_        uint\n\tsplit_             *blockSplit\n\thistograms_        []histogramCommand\n\thistograms_size_   *uint\n\ttarget_block_size_ uint\n\tblock_size_        uint\n\tcurr_histogram_ix_ uint\n\tlast_histogram_ix_ [2]uint\n\tlast_entropy_      [2]float64\n\tmerge_last_count_  uint\n}\n\nfunc initBlockSplitterCommand(self *blockSplitterCommand, alphabet_size uint, min_block_size uint, split_threshold float64, num_symbols uint, split *blockSplit, histograms *[]histogramCommand, histograms_size *uint) {\n\tvar max_num_blocks uint = num_symbols/min_block_size + 1\n\tvar max_num_types uint = brotli_min_size_t(max_num_blocks, maxNumberOfBlockTypes+1)\n\t/* We have to allocate one more histogram than the maximum number of block\n\t   types for the current histogram when the meta-block is too big. */\n\tself.alphabet_size_ = alphabet_size\n\n\tself.min_block_size_ = min_block_size\n\tself.split_threshold_ = split_threshold\n\tself.num_blocks_ = 0\n\tself.split_ = split\n\tself.histograms_size_ = histograms_size\n\tself.target_block_size_ = min_block_size\n\tself.block_size_ = 0\n\tself.curr_histogram_ix_ = 0\n\tself.merge_last_count_ = 0\n\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, max_num_blocks)\n\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, max_num_blocks)\n\tself.split_.num_blocks = max_num_blocks\n\t*histograms_size = max_num_types\n\tif histograms == nil || cap(*histograms) < int(*histograms_size) {\n\t\t*histograms = make([]histogramCommand, (*histograms_size))\n\t} else {\n\t\t*histograms = (*histograms)[:*histograms_size]\n\t}\n\tself.histograms_ = *histograms\n\n\t/* Clear only current histogram. */\n\thistogramClearCommand(&self.histograms_[0])\n\n\tself.last_histogram_ix_[1] = 0\n\tself.last_histogram_ix_[0] = self.last_histogram_ix_[1]\n}\n\n/* Does either of three things:\n   (1) emits the current block with a new block type;\n   (2) emits the current block with the type of the second last block;\n   (3) merges the current block with the last block. */\nfunc blockSplitterFinishBlockCommand(self *blockSplitterCommand, is_final bool) {\n\tvar split *blockSplit = self.split_\n\tvar last_entropy []float64 = self.last_entropy_[:]\n\tvar histograms []histogramCommand = self.histograms_\n\tself.block_size_ = brotli_max_size_t(self.block_size_, self.min_block_size_)\n\tif self.num_blocks_ == 0 {\n\t\t/* Create first block. */\n\t\tsplit.lengths[0] = uint32(self.block_size_)\n\n\t\tsplit.types[0] = 0\n\t\tlast_entropy[0] = bitsEntropy(histograms[0].data_[:], self.alphabet_size_)\n\t\tlast_entropy[1] = last_entropy[0]\n\t\tself.num_blocks_++\n\t\tsplit.num_types++\n\t\tself.curr_histogram_ix_++\n\t\tif self.curr_histogram_ix_ < *self.histograms_size_ {\n\t\t\thistogramClearCommand(&histograms[self.curr_histogram_ix_])\n\t\t}\n\t\tself.block_size_ = 0\n\t} else if self.block_size_ > 0 {\n\t\tvar entropy float64 = bitsEntropy(histograms[self.curr_histogram_ix_].data_[:], self.alphabet_size_)\n\t\tvar combined_histo [2]histogramCommand\n\t\tvar combined_entropy [2]float64\n\t\tvar diff [2]float64\n\t\tvar j uint\n\t\tfor j = 0; j < 2; j++ {\n\t\t\tvar last_histogram_ix uint = self.last_histogram_ix_[j]\n\t\t\tcombined_histo[j] = histograms[self.curr_histogram_ix_]\n\t\t\thistogramAddHistogramCommand(&combined_histo[j], &histograms[last_histogram_ix])\n\t\t\tcombined_entropy[j] = bitsEntropy(combined_histo[j].data_[0:], self.alphabet_size_)\n\t\t\tdiff[j] = combined_entropy[j] - entropy - last_entropy[j]\n\t\t}\n\n\t\tif split.num_types < maxNumberOfBlockTypes && diff[0] > self.split_threshold_ && diff[1] > self.split_threshold_ {\n\t\t\t/* Create new block. */\n\t\t\tsplit.lengths[self.num_blocks_] = uint32(self.block_size_)\n\n\t\t\tsplit.types[self.num_blocks_] = byte(split.num_types)\n\t\t\tself.last_histogram_ix_[1] = self.last_histogram_ix_[0]\n\t\t\tself.last_histogram_ix_[0] = uint(byte(split.num_types))\n\t\t\tlast_entropy[1] = last_entropy[0]\n\t\t\tlast_entropy[0] = entropy\n\t\t\tself.num_blocks_++\n\t\t\tsplit.num_types++\n\t\t\tself.curr_histogram_ix_++\n\t\t\tif self.curr_histogram_ix_ < *self.histograms_size_ {\n\t\t\t\thistogramClearCommand(&histograms[self.curr_histogram_ix_])\n\t\t\t}\n\t\t\tself.block_size_ = 0\n\t\t\tself.merge_last_count_ = 0\n\t\t\tself.target_block_size_ = self.min_block_size_\n\t\t} else if diff[1] < diff[0]-20.0 {\n\t\t\tsplit.lengths[self.num_blocks_] = uint32(self.block_size_)\n\t\t\tsplit.types[self.num_blocks_] = split.types[self.num_blocks_-2]\n\t\t\t/* Combine this block with second last block. */\n\n\t\t\tvar tmp uint = self.last_histogram_ix_[0]\n\t\t\tself.last_histogram_ix_[0] = self.last_histogram_ix_[1]\n\t\t\tself.last_histogram_ix_[1] = tmp\n\t\t\thistograms[self.last_histogram_ix_[0]] = combined_histo[1]\n\t\t\tlast_entropy[1] = last_entropy[0]\n\t\t\tlast_entropy[0] = combined_entropy[1]\n\t\t\tself.num_blocks_++\n\t\t\tself.block_size_ = 0\n\t\t\thistogramClearCommand(&histograms[self.curr_histogram_ix_])\n\t\t\tself.merge_last_count_ = 0\n\t\t\tself.target_block_size_ = self.min_block_size_\n\t\t} else {\n\t\t\t/* Combine this block with last block. */\n\t\t\tsplit.lengths[self.num_blocks_-1] += uint32(self.block_size_)\n\n\t\t\thistograms[self.last_histogram_ix_[0]] = combined_histo[0]\n\t\t\tlast_entropy[0] = combined_entropy[0]\n\t\t\tif split.num_types == 1 {\n\t\t\t\tlast_entropy[1] = last_entropy[0]\n\t\t\t}\n\n\t\t\tself.block_size_ = 0\n\t\t\thistogramClearCommand(&histograms[self.curr_histogram_ix_])\n\t\t\tself.merge_last_count_++\n\t\t\tif self.merge_last_count_ > 1 {\n\t\t\t\tself.target_block_size_ += self.min_block_size_\n\t\t\t}\n\t\t}\n\t}\n\n\tif is_final {\n\t\t*self.histograms_size_ = split.num_types\n\t\tsplit.num_blocks = self.num_blocks_\n\t}\n}\n\n/* Adds the next symbol to the current histogram. When the current histogram\n   reaches the target size, decides on merging the block. */\nfunc blockSplitterAddSymbolCommand(self *blockSplitterCommand, symbol uint) {\n\thistogramAddCommand(&self.histograms_[self.curr_histogram_ix_], symbol)\n\tself.block_size_++\n\tif self.block_size_ == self.target_block_size_ {\n\t\tblockSplitterFinishBlockCommand(self, false) /* is_final = */\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/metablock_distance.go",
    "content": "package brotli\n\n/* Copyright 2015 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Greedy block splitter for one block category (literal, command or distance).\n */\ntype blockSplitterDistance struct {\n\talphabet_size_     uint\n\tmin_block_size_    uint\n\tsplit_threshold_   float64\n\tnum_blocks_        uint\n\tsplit_             *blockSplit\n\thistograms_        []histogramDistance\n\thistograms_size_   *uint\n\ttarget_block_size_ uint\n\tblock_size_        uint\n\tcurr_histogram_ix_ uint\n\tlast_histogram_ix_ [2]uint\n\tlast_entropy_      [2]float64\n\tmerge_last_count_  uint\n}\n\nfunc initBlockSplitterDistance(self *blockSplitterDistance, alphabet_size uint, min_block_size uint, split_threshold float64, num_symbols uint, split *blockSplit, histograms *[]histogramDistance, histograms_size *uint) {\n\tvar max_num_blocks uint = num_symbols/min_block_size + 1\n\tvar max_num_types uint = brotli_min_size_t(max_num_blocks, maxNumberOfBlockTypes+1)\n\t/* We have to allocate one more histogram than the maximum number of block\n\t   types for the current histogram when the meta-block is too big. */\n\tself.alphabet_size_ = alphabet_size\n\n\tself.min_block_size_ = min_block_size\n\tself.split_threshold_ = split_threshold\n\tself.num_blocks_ = 0\n\tself.split_ = split\n\tself.histograms_size_ = histograms_size\n\tself.target_block_size_ = min_block_size\n\tself.block_size_ = 0\n\tself.curr_histogram_ix_ = 0\n\tself.merge_last_count_ = 0\n\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, max_num_blocks)\n\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, max_num_blocks)\n\tself.split_.num_blocks = max_num_blocks\n\t*histograms_size = max_num_types\n\tif histograms == nil || cap(*histograms) < int(*histograms_size) {\n\t\t*histograms = make([]histogramDistance, *histograms_size)\n\t} else {\n\t\t*histograms = (*histograms)[:*histograms_size]\n\t}\n\tself.histograms_ = *histograms\n\n\t/* Clear only current histogram. */\n\thistogramClearDistance(&self.histograms_[0])\n\n\tself.last_histogram_ix_[1] = 0\n\tself.last_histogram_ix_[0] = self.last_histogram_ix_[1]\n}\n\n/* Does either of three things:\n   (1) emits the current block with a new block type;\n   (2) emits the current block with the type of the second last block;\n   (3) merges the current block with the last block. */\nfunc blockSplitterFinishBlockDistance(self *blockSplitterDistance, is_final bool) {\n\tvar split *blockSplit = self.split_\n\tvar last_entropy []float64 = self.last_entropy_[:]\n\tvar histograms []histogramDistance = self.histograms_\n\tself.block_size_ = brotli_max_size_t(self.block_size_, self.min_block_size_)\n\tif self.num_blocks_ == 0 {\n\t\t/* Create first block. */\n\t\tsplit.lengths[0] = uint32(self.block_size_)\n\n\t\tsplit.types[0] = 0\n\t\tlast_entropy[0] = bitsEntropy(histograms[0].data_[:], self.alphabet_size_)\n\t\tlast_entropy[1] = last_entropy[0]\n\t\tself.num_blocks_++\n\t\tsplit.num_types++\n\t\tself.curr_histogram_ix_++\n\t\tif self.curr_histogram_ix_ < *self.histograms_size_ {\n\t\t\thistogramClearDistance(&histograms[self.curr_histogram_ix_])\n\t\t}\n\t\tself.block_size_ = 0\n\t} else if self.block_size_ > 0 {\n\t\tvar entropy float64 = bitsEntropy(histograms[self.curr_histogram_ix_].data_[:], self.alphabet_size_)\n\t\tvar combined_histo [2]histogramDistance\n\t\tvar combined_entropy [2]float64\n\t\tvar diff [2]float64\n\t\tvar j uint\n\t\tfor j = 0; j < 2; j++ {\n\t\t\tvar last_histogram_ix uint = self.last_histogram_ix_[j]\n\t\t\tcombined_histo[j] = histograms[self.curr_histogram_ix_]\n\t\t\thistogramAddHistogramDistance(&combined_histo[j], &histograms[last_histogram_ix])\n\t\t\tcombined_entropy[j] = bitsEntropy(combined_histo[j].data_[0:], self.alphabet_size_)\n\t\t\tdiff[j] = combined_entropy[j] - entropy - last_entropy[j]\n\t\t}\n\n\t\tif split.num_types < maxNumberOfBlockTypes && diff[0] > self.split_threshold_ && diff[1] > self.split_threshold_ {\n\t\t\t/* Create new block. */\n\t\t\tsplit.lengths[self.num_blocks_] = uint32(self.block_size_)\n\n\t\t\tsplit.types[self.num_blocks_] = byte(split.num_types)\n\t\t\tself.last_histogram_ix_[1] = self.last_histogram_ix_[0]\n\t\t\tself.last_histogram_ix_[0] = uint(byte(split.num_types))\n\t\t\tlast_entropy[1] = last_entropy[0]\n\t\t\tlast_entropy[0] = entropy\n\t\t\tself.num_blocks_++\n\t\t\tsplit.num_types++\n\t\t\tself.curr_histogram_ix_++\n\t\t\tif self.curr_histogram_ix_ < *self.histograms_size_ {\n\t\t\t\thistogramClearDistance(&histograms[self.curr_histogram_ix_])\n\t\t\t}\n\t\t\tself.block_size_ = 0\n\t\t\tself.merge_last_count_ = 0\n\t\t\tself.target_block_size_ = self.min_block_size_\n\t\t} else if diff[1] < diff[0]-20.0 {\n\t\t\tsplit.lengths[self.num_blocks_] = uint32(self.block_size_)\n\t\t\tsplit.types[self.num_blocks_] = split.types[self.num_blocks_-2]\n\t\t\t/* Combine this block with second last block. */\n\n\t\t\tvar tmp uint = self.last_histogram_ix_[0]\n\t\t\tself.last_histogram_ix_[0] = self.last_histogram_ix_[1]\n\t\t\tself.last_histogram_ix_[1] = tmp\n\t\t\thistograms[self.last_histogram_ix_[0]] = combined_histo[1]\n\t\t\tlast_entropy[1] = last_entropy[0]\n\t\t\tlast_entropy[0] = combined_entropy[1]\n\t\t\tself.num_blocks_++\n\t\t\tself.block_size_ = 0\n\t\t\thistogramClearDistance(&histograms[self.curr_histogram_ix_])\n\t\t\tself.merge_last_count_ = 0\n\t\t\tself.target_block_size_ = self.min_block_size_\n\t\t} else {\n\t\t\t/* Combine this block with last block. */\n\t\t\tsplit.lengths[self.num_blocks_-1] += uint32(self.block_size_)\n\n\t\t\thistograms[self.last_histogram_ix_[0]] = combined_histo[0]\n\t\t\tlast_entropy[0] = combined_entropy[0]\n\t\t\tif split.num_types == 1 {\n\t\t\t\tlast_entropy[1] = last_entropy[0]\n\t\t\t}\n\n\t\t\tself.block_size_ = 0\n\t\t\thistogramClearDistance(&histograms[self.curr_histogram_ix_])\n\t\t\tself.merge_last_count_++\n\t\t\tif self.merge_last_count_ > 1 {\n\t\t\t\tself.target_block_size_ += self.min_block_size_\n\t\t\t}\n\t\t}\n\t}\n\n\tif is_final {\n\t\t*self.histograms_size_ = split.num_types\n\t\tsplit.num_blocks = self.num_blocks_\n\t}\n}\n\n/* Adds the next symbol to the current histogram. When the current histogram\n   reaches the target size, decides on merging the block. */\nfunc blockSplitterAddSymbolDistance(self *blockSplitterDistance, symbol uint) {\n\thistogramAddDistance(&self.histograms_[self.curr_histogram_ix_], symbol)\n\tself.block_size_++\n\tif self.block_size_ == self.target_block_size_ {\n\t\tblockSplitterFinishBlockDistance(self, false) /* is_final = */\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/metablock_literal.go",
    "content": "package brotli\n\n/* Copyright 2015 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Greedy block splitter for one block category (literal, command or distance).\n */\ntype blockSplitterLiteral struct {\n\talphabet_size_     uint\n\tmin_block_size_    uint\n\tsplit_threshold_   float64\n\tnum_blocks_        uint\n\tsplit_             *blockSplit\n\thistograms_        []histogramLiteral\n\thistograms_size_   *uint\n\ttarget_block_size_ uint\n\tblock_size_        uint\n\tcurr_histogram_ix_ uint\n\tlast_histogram_ix_ [2]uint\n\tlast_entropy_      [2]float64\n\tmerge_last_count_  uint\n}\n\nfunc initBlockSplitterLiteral(self *blockSplitterLiteral, alphabet_size uint, min_block_size uint, split_threshold float64, num_symbols uint, split *blockSplit, histograms *[]histogramLiteral, histograms_size *uint) {\n\tvar max_num_blocks uint = num_symbols/min_block_size + 1\n\tvar max_num_types uint = brotli_min_size_t(max_num_blocks, maxNumberOfBlockTypes+1)\n\t/* We have to allocate one more histogram than the maximum number of block\n\t   types for the current histogram when the meta-block is too big. */\n\tself.alphabet_size_ = alphabet_size\n\n\tself.min_block_size_ = min_block_size\n\tself.split_threshold_ = split_threshold\n\tself.num_blocks_ = 0\n\tself.split_ = split\n\tself.histograms_size_ = histograms_size\n\tself.target_block_size_ = min_block_size\n\tself.block_size_ = 0\n\tself.curr_histogram_ix_ = 0\n\tself.merge_last_count_ = 0\n\tbrotli_ensure_capacity_uint8_t(&split.types, &split.types_alloc_size, max_num_blocks)\n\tbrotli_ensure_capacity_uint32_t(&split.lengths, &split.lengths_alloc_size, max_num_blocks)\n\tself.split_.num_blocks = max_num_blocks\n\t*histograms_size = max_num_types\n\tif histograms == nil || cap(*histograms) < int(*histograms_size) {\n\t\t*histograms = make([]histogramLiteral, *histograms_size)\n\t} else {\n\t\t*histograms = (*histograms)[:*histograms_size]\n\t}\n\tself.histograms_ = *histograms\n\n\t/* Clear only current histogram. */\n\thistogramClearLiteral(&self.histograms_[0])\n\n\tself.last_histogram_ix_[1] = 0\n\tself.last_histogram_ix_[0] = self.last_histogram_ix_[1]\n}\n\n/* Does either of three things:\n   (1) emits the current block with a new block type;\n   (2) emits the current block with the type of the second last block;\n   (3) merges the current block with the last block. */\nfunc blockSplitterFinishBlockLiteral(self *blockSplitterLiteral, is_final bool) {\n\tvar split *blockSplit = self.split_\n\tvar last_entropy []float64 = self.last_entropy_[:]\n\tvar histograms []histogramLiteral = self.histograms_\n\tself.block_size_ = brotli_max_size_t(self.block_size_, self.min_block_size_)\n\tif self.num_blocks_ == 0 {\n\t\t/* Create first block. */\n\t\tsplit.lengths[0] = uint32(self.block_size_)\n\n\t\tsplit.types[0] = 0\n\t\tlast_entropy[0] = bitsEntropy(histograms[0].data_[:], self.alphabet_size_)\n\t\tlast_entropy[1] = last_entropy[0]\n\t\tself.num_blocks_++\n\t\tsplit.num_types++\n\t\tself.curr_histogram_ix_++\n\t\tif self.curr_histogram_ix_ < *self.histograms_size_ {\n\t\t\thistogramClearLiteral(&histograms[self.curr_histogram_ix_])\n\t\t}\n\t\tself.block_size_ = 0\n\t} else if self.block_size_ > 0 {\n\t\tvar entropy float64 = bitsEntropy(histograms[self.curr_histogram_ix_].data_[:], self.alphabet_size_)\n\t\tvar combined_histo [2]histogramLiteral\n\t\tvar combined_entropy [2]float64\n\t\tvar diff [2]float64\n\t\tvar j uint\n\t\tfor j = 0; j < 2; j++ {\n\t\t\tvar last_histogram_ix uint = self.last_histogram_ix_[j]\n\t\t\tcombined_histo[j] = histograms[self.curr_histogram_ix_]\n\t\t\thistogramAddHistogramLiteral(&combined_histo[j], &histograms[last_histogram_ix])\n\t\t\tcombined_entropy[j] = bitsEntropy(combined_histo[j].data_[0:], self.alphabet_size_)\n\t\t\tdiff[j] = combined_entropy[j] - entropy - last_entropy[j]\n\t\t}\n\n\t\tif split.num_types < maxNumberOfBlockTypes && diff[0] > self.split_threshold_ && diff[1] > self.split_threshold_ {\n\t\t\t/* Create new block. */\n\t\t\tsplit.lengths[self.num_blocks_] = uint32(self.block_size_)\n\n\t\t\tsplit.types[self.num_blocks_] = byte(split.num_types)\n\t\t\tself.last_histogram_ix_[1] = self.last_histogram_ix_[0]\n\t\t\tself.last_histogram_ix_[0] = uint(byte(split.num_types))\n\t\t\tlast_entropy[1] = last_entropy[0]\n\t\t\tlast_entropy[0] = entropy\n\t\t\tself.num_blocks_++\n\t\t\tsplit.num_types++\n\t\t\tself.curr_histogram_ix_++\n\t\t\tif self.curr_histogram_ix_ < *self.histograms_size_ {\n\t\t\t\thistogramClearLiteral(&histograms[self.curr_histogram_ix_])\n\t\t\t}\n\t\t\tself.block_size_ = 0\n\t\t\tself.merge_last_count_ = 0\n\t\t\tself.target_block_size_ = self.min_block_size_\n\t\t} else if diff[1] < diff[0]-20.0 {\n\t\t\tsplit.lengths[self.num_blocks_] = uint32(self.block_size_)\n\t\t\tsplit.types[self.num_blocks_] = split.types[self.num_blocks_-2]\n\t\t\t/* Combine this block with second last block. */\n\n\t\t\tvar tmp uint = self.last_histogram_ix_[0]\n\t\t\tself.last_histogram_ix_[0] = self.last_histogram_ix_[1]\n\t\t\tself.last_histogram_ix_[1] = tmp\n\t\t\thistograms[self.last_histogram_ix_[0]] = combined_histo[1]\n\t\t\tlast_entropy[1] = last_entropy[0]\n\t\t\tlast_entropy[0] = combined_entropy[1]\n\t\t\tself.num_blocks_++\n\t\t\tself.block_size_ = 0\n\t\t\thistogramClearLiteral(&histograms[self.curr_histogram_ix_])\n\t\t\tself.merge_last_count_ = 0\n\t\t\tself.target_block_size_ = self.min_block_size_\n\t\t} else {\n\t\t\t/* Combine this block with last block. */\n\t\t\tsplit.lengths[self.num_blocks_-1] += uint32(self.block_size_)\n\n\t\t\thistograms[self.last_histogram_ix_[0]] = combined_histo[0]\n\t\t\tlast_entropy[0] = combined_entropy[0]\n\t\t\tif split.num_types == 1 {\n\t\t\t\tlast_entropy[1] = last_entropy[0]\n\t\t\t}\n\n\t\t\tself.block_size_ = 0\n\t\t\thistogramClearLiteral(&histograms[self.curr_histogram_ix_])\n\t\t\tself.merge_last_count_++\n\t\t\tif self.merge_last_count_ > 1 {\n\t\t\t\tself.target_block_size_ += self.min_block_size_\n\t\t\t}\n\t\t}\n\t}\n\n\tif is_final {\n\t\t*self.histograms_size_ = split.num_types\n\t\tsplit.num_blocks = self.num_blocks_\n\t}\n}\n\n/* Adds the next symbol to the current histogram. When the current histogram\n   reaches the target size, decides on merging the block. */\nfunc blockSplitterAddSymbolLiteral(self *blockSplitterLiteral, symbol uint) {\n\thistogramAddLiteral(&self.histograms_[self.curr_histogram_ix_], symbol)\n\tself.block_size_++\n\tif self.block_size_ == self.target_block_size_ {\n\t\tblockSplitterFinishBlockLiteral(self, false) /* is_final = */\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/params.go",
    "content": "package brotli\n\n/* Copyright 2017 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Parameters for the Brotli encoder with chosen quality levels. */\ntype hasherParams struct {\n\ttype_                       int\n\tbucket_bits                 int\n\tblock_bits                  int\n\thash_len                    int\n\tnum_last_distances_to_check int\n}\n\ntype distanceParams struct {\n\tdistance_postfix_bits     uint32\n\tnum_direct_distance_codes uint32\n\talphabet_size             uint32\n\tmax_distance              uint\n}\n\n/* Encoding parameters */\ntype encoderParams struct {\n\tmode                             int\n\tquality                          int\n\tlgwin                            uint\n\tlgblock                          int\n\tsize_hint                        uint\n\tdisable_literal_context_modeling bool\n\tlarge_window                     bool\n\thasher                           hasherParams\n\tdist                             distanceParams\n\tdictionary                       encoderDictionary\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/platform.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\nfunc brotli_min_double(a float64, b float64) float64 {\n\tif a < b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_max_double(a float64, b float64) float64 {\n\tif a > b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_min_float(a float32, b float32) float32 {\n\tif a < b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_max_float(a float32, b float32) float32 {\n\tif a > b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_min_int(a int, b int) int {\n\tif a < b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_max_int(a int, b int) int {\n\tif a > b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_min_size_t(a uint, b uint) uint {\n\tif a < b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_max_size_t(a uint, b uint) uint {\n\tif a > b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_min_uint32_t(a uint32, b uint32) uint32 {\n\tif a < b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_max_uint32_t(a uint32, b uint32) uint32 {\n\tif a > b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_min_uint8_t(a byte, b byte) byte {\n\tif a < b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n\nfunc brotli_max_uint8_t(a byte, b byte) byte {\n\tif a > b {\n\t\treturn a\n\t} else {\n\t\treturn b\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/prefix.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Functions for encoding of integers into prefix codes the amount of extra\n   bits, and the actual values of the extra bits. */\n\n/* Here distance_code is an intermediate code, i.e. one of the special codes or\n   the actual distance increased by BROTLI_NUM_DISTANCE_SHORT_CODES - 1. */\nfunc prefixEncodeCopyDistance(distance_code uint, num_direct_codes uint, postfix_bits uint, code *uint16, extra_bits *uint32) {\n\tif distance_code < numDistanceShortCodes+num_direct_codes {\n\t\t*code = uint16(distance_code)\n\t\t*extra_bits = 0\n\t\treturn\n\t} else {\n\t\tvar dist uint = (uint(1) << (postfix_bits + 2)) + (distance_code - numDistanceShortCodes - num_direct_codes)\n\t\tvar bucket uint = uint(log2FloorNonZero(dist) - 1)\n\t\tvar postfix_mask uint = (1 << postfix_bits) - 1\n\t\tvar postfix uint = dist & postfix_mask\n\t\tvar prefix uint = (dist >> bucket) & 1\n\t\tvar offset uint = (2 + prefix) << bucket\n\t\tvar nbits uint = bucket - postfix_bits\n\t\t*code = uint16(nbits<<10 | (numDistanceShortCodes + num_direct_codes + ((2*(nbits-1) + prefix) << postfix_bits) + postfix))\n\t\t*extra_bits = uint32((dist - offset) >> postfix_bits)\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/prefix_dec.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\ntype cmdLutElement struct {\n\tinsert_len_extra_bits byte\n\tcopy_len_extra_bits   byte\n\tdistance_code         int8\n\tcontext               byte\n\tinsert_len_offset     uint16\n\tcopy_len_offset       uint16\n}\n\nvar kCmdLut = [numCommandSymbols]cmdLutElement{\n\tcmdLutElement{0x00, 0x00, 0, 0x00, 0x0000, 0x0002},\n\tcmdLutElement{0x00, 0x00, 0, 0x01, 0x0000, 0x0003},\n\tcmdLutElement{0x00, 0x00, 0, 0x02, 0x0000, 0x0004},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0000, 0x0005},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0000, 0x0006},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0000, 0x0007},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0000, 0x0008},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0000, 0x0009},\n\tcmdLutElement{0x00, 0x00, 0, 0x00, 0x0001, 0x0002},\n\tcmdLutElement{0x00, 0x00, 0, 0x01, 0x0001, 0x0003},\n\tcmdLutElement{0x00, 0x00, 0, 0x02, 0x0001, 0x0004},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0001, 0x0005},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0001, 0x0006},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0001, 0x0007},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0001, 0x0008},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0001, 0x0009},\n\tcmdLutElement{0x00, 0x00, 0, 0x00, 0x0002, 0x0002},\n\tcmdLutElement{0x00, 0x00, 0, 0x01, 0x0002, 0x0003},\n\tcmdLutElement{0x00, 0x00, 0, 0x02, 0x0002, 0x0004},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0002, 0x0005},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0002, 0x0006},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0002, 0x0007},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0002, 0x0008},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0002, 0x0009},\n\tcmdLutElement{0x00, 0x00, 0, 0x00, 0x0003, 0x0002},\n\tcmdLutElement{0x00, 0x00, 0, 0x01, 0x0003, 0x0003},\n\tcmdLutElement{0x00, 0x00, 0, 0x02, 0x0003, 0x0004},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0003, 0x0005},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0003, 0x0006},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0003, 0x0007},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0003, 0x0008},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0003, 0x0009},\n\tcmdLutElement{0x00, 0x00, 0, 0x00, 0x0004, 0x0002},\n\tcmdLutElement{0x00, 0x00, 0, 0x01, 0x0004, 0x0003},\n\tcmdLutElement{0x00, 0x00, 0, 0x02, 0x0004, 0x0004},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0004, 0x0005},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0004, 0x0006},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0004, 0x0007},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0004, 0x0008},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0004, 0x0009},\n\tcmdLutElement{0x00, 0x00, 0, 0x00, 0x0005, 0x0002},\n\tcmdLutElement{0x00, 0x00, 0, 0x01, 0x0005, 0x0003},\n\tcmdLutElement{0x00, 0x00, 0, 0x02, 0x0005, 0x0004},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0005, 0x0005},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0005, 0x0006},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0005, 0x0007},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0005, 0x0008},\n\tcmdLutElement{0x00, 0x00, 0, 0x03, 0x0005, 0x0009},\n\tcmdLutElement{0x01, 0x00, 0, 0x00, 0x0006, 0x0002},\n\tcmdLutElement{0x01, 0x00, 0, 0x01, 0x0006, 0x0003},\n\tcmdLutElement{0x01, 0x00, 0, 0x02, 0x0006, 0x0004},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0006, 0x0005},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0006, 0x0006},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0006, 0x0007},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0006, 0x0008},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0006, 0x0009},\n\tcmdLutElement{0x01, 0x00, 0, 0x00, 0x0008, 0x0002},\n\tcmdLutElement{0x01, 0x00, 0, 0x01, 0x0008, 0x0003},\n\tcmdLutElement{0x01, 0x00, 0, 0x02, 0x0008, 0x0004},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0008, 0x0005},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0008, 0x0006},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0008, 0x0007},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0008, 0x0008},\n\tcmdLutElement{0x01, 0x00, 0, 0x03, 0x0008, 0x0009},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0000, 0x000a},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0000, 0x000c},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0000, 0x000e},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0000, 0x0012},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0000, 0x0016},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0000, 0x001e},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0000, 0x0026},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0000, 0x0036},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0001, 0x000a},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0001, 0x000c},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0001, 0x000e},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0001, 0x0012},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0001, 0x0016},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0001, 0x001e},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0001, 0x0026},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0001, 0x0036},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0002, 0x000a},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0002, 0x000c},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0002, 0x000e},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0002, 0x0012},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0002, 0x0016},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0002, 0x001e},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0002, 0x0026},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0002, 0x0036},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0003, 0x000a},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0003, 0x000c},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0003, 0x000e},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0003, 0x0012},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0003, 0x0016},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0003, 0x001e},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0003, 0x0026},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0003, 0x0036},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0004, 0x000a},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0004, 0x000c},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0004, 0x000e},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0004, 0x0012},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0004, 0x0016},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0004, 0x001e},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0004, 0x0026},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0004, 0x0036},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0005, 0x000a},\n\tcmdLutElement{0x00, 0x01, 0, 0x03, 0x0005, 0x000c},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0005, 0x000e},\n\tcmdLutElement{0x00, 0x02, 0, 0x03, 0x0005, 0x0012},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0005, 0x0016},\n\tcmdLutElement{0x00, 0x03, 0, 0x03, 0x0005, 0x001e},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0005, 0x0026},\n\tcmdLutElement{0x00, 0x04, 0, 0x03, 0x0005, 0x0036},\n\tcmdLutElement{0x01, 0x01, 0, 0x03, 0x0006, 0x000a},\n\tcmdLutElement{0x01, 0x01, 0, 0x03, 0x0006, 0x000c},\n\tcmdLutElement{0x01, 0x02, 0, 0x03, 0x0006, 0x000e},\n\tcmdLutElement{0x01, 0x02, 0, 0x03, 0x0006, 0x0012},\n\tcmdLutElement{0x01, 0x03, 0, 0x03, 0x0006, 0x0016},\n\tcmdLutElement{0x01, 0x03, 0, 0x03, 0x0006, 0x001e},\n\tcmdLutElement{0x01, 0x04, 0, 0x03, 0x0006, 0x0026},\n\tcmdLutElement{0x01, 0x04, 0, 0x03, 0x0006, 0x0036},\n\tcmdLutElement{0x01, 0x01, 0, 0x03, 0x0008, 0x000a},\n\tcmdLutElement{0x01, 0x01, 0, 0x03, 0x0008, 0x000c},\n\tcmdLutElement{0x01, 0x02, 0, 0x03, 0x0008, 0x000e},\n\tcmdLutElement{0x01, 0x02, 0, 0x03, 0x0008, 0x0012},\n\tcmdLutElement{0x01, 0x03, 0, 0x03, 0x0008, 0x0016},\n\tcmdLutElement{0x01, 0x03, 0, 0x03, 0x0008, 0x001e},\n\tcmdLutElement{0x01, 0x04, 0, 0x03, 0x0008, 0x0026},\n\tcmdLutElement{0x01, 0x04, 0, 0x03, 0x0008, 0x0036},\n\tcmdLutElement{0x00, 0x00, -1, 0x00, 0x0000, 0x0002},\n\tcmdLutElement{0x00, 0x00, -1, 0x01, 0x0000, 0x0003},\n\tcmdLutElement{0x00, 0x00, -1, 0x02, 0x0000, 0x0004},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0000, 0x0005},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0000, 0x0006},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0000, 0x0007},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0000, 0x0008},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0000, 0x0009},\n\tcmdLutElement{0x00, 0x00, -1, 0x00, 0x0001, 0x0002},\n\tcmdLutElement{0x00, 0x00, -1, 0x01, 0x0001, 0x0003},\n\tcmdLutElement{0x00, 0x00, -1, 0x02, 0x0001, 0x0004},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0001, 0x0005},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0001, 0x0006},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0001, 0x0007},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0001, 0x0008},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0001, 0x0009},\n\tcmdLutElement{0x00, 0x00, -1, 0x00, 0x0002, 0x0002},\n\tcmdLutElement{0x00, 0x00, -1, 0x01, 0x0002, 0x0003},\n\tcmdLutElement{0x00, 0x00, -1, 0x02, 0x0002, 0x0004},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0002, 0x0005},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0002, 0x0006},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0002, 0x0007},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0002, 0x0008},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0002, 0x0009},\n\tcmdLutElement{0x00, 0x00, -1, 0x00, 0x0003, 0x0002},\n\tcmdLutElement{0x00, 0x00, -1, 0x01, 0x0003, 0x0003},\n\tcmdLutElement{0x00, 0x00, -1, 0x02, 0x0003, 0x0004},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0003, 0x0005},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0003, 0x0006},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0003, 0x0007},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0003, 0x0008},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0003, 0x0009},\n\tcmdLutElement{0x00, 0x00, -1, 0x00, 0x0004, 0x0002},\n\tcmdLutElement{0x00, 0x00, -1, 0x01, 0x0004, 0x0003},\n\tcmdLutElement{0x00, 0x00, -1, 0x02, 0x0004, 0x0004},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0004, 0x0005},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0004, 0x0006},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0004, 0x0007},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0004, 0x0008},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0004, 0x0009},\n\tcmdLutElement{0x00, 0x00, -1, 0x00, 0x0005, 0x0002},\n\tcmdLutElement{0x00, 0x00, -1, 0x01, 0x0005, 0x0003},\n\tcmdLutElement{0x00, 0x00, -1, 0x02, 0x0005, 0x0004},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0005, 0x0005},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0005, 0x0006},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0005, 0x0007},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0005, 0x0008},\n\tcmdLutElement{0x00, 0x00, -1, 0x03, 0x0005, 0x0009},\n\tcmdLutElement{0x01, 0x00, -1, 0x00, 0x0006, 0x0002},\n\tcmdLutElement{0x01, 0x00, -1, 0x01, 0x0006, 0x0003},\n\tcmdLutElement{0x01, 0x00, -1, 0x02, 0x0006, 0x0004},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0006, 0x0005},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0006, 0x0006},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0006, 0x0007},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0006, 0x0008},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0006, 0x0009},\n\tcmdLutElement{0x01, 0x00, -1, 0x00, 0x0008, 0x0002},\n\tcmdLutElement{0x01, 0x00, -1, 0x01, 0x0008, 0x0003},\n\tcmdLutElement{0x01, 0x00, -1, 0x02, 0x0008, 0x0004},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0008, 0x0005},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0008, 0x0006},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0008, 0x0007},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0008, 0x0008},\n\tcmdLutElement{0x01, 0x00, -1, 0x03, 0x0008, 0x0009},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0000, 0x000a},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0000, 0x000c},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0000, 0x000e},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0000, 0x0012},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0000, 0x0016},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0000, 0x001e},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0000, 0x0026},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0000, 0x0036},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0001, 0x000a},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0001, 0x000c},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0001, 0x000e},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0001, 0x0012},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0001, 0x0016},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0001, 0x001e},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0001, 0x0026},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0001, 0x0036},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0002, 0x000a},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0002, 0x000c},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0002, 0x000e},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0002, 0x0012},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0002, 0x0016},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0002, 0x001e},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0002, 0x0026},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0002, 0x0036},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0003, 0x000a},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0003, 0x000c},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0003, 0x000e},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0003, 0x0012},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0003, 0x0016},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0003, 0x001e},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0003, 0x0026},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0003, 0x0036},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0004, 0x000a},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0004, 0x000c},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0004, 0x000e},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0004, 0x0012},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0004, 0x0016},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0004, 0x001e},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0004, 0x0026},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0004, 0x0036},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0005, 0x000a},\n\tcmdLutElement{0x00, 0x01, -1, 0x03, 0x0005, 0x000c},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0005, 0x000e},\n\tcmdLutElement{0x00, 0x02, -1, 0x03, 0x0005, 0x0012},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0005, 0x0016},\n\tcmdLutElement{0x00, 0x03, -1, 0x03, 0x0005, 0x001e},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0005, 0x0026},\n\tcmdLutElement{0x00, 0x04, -1, 0x03, 0x0005, 0x0036},\n\tcmdLutElement{0x01, 0x01, -1, 0x03, 0x0006, 0x000a},\n\tcmdLutElement{0x01, 0x01, -1, 0x03, 0x0006, 0x000c},\n\tcmdLutElement{0x01, 0x02, -1, 0x03, 0x0006, 0x000e},\n\tcmdLutElement{0x01, 0x02, -1, 0x03, 0x0006, 0x0012},\n\tcmdLutElement{0x01, 0x03, -1, 0x03, 0x0006, 0x0016},\n\tcmdLutElement{0x01, 0x03, -1, 0x03, 0x0006, 0x001e},\n\tcmdLutElement{0x01, 0x04, -1, 0x03, 0x0006, 0x0026},\n\tcmdLutElement{0x01, 0x04, -1, 0x03, 0x0006, 0x0036},\n\tcmdLutElement{0x01, 0x01, -1, 0x03, 0x0008, 0x000a},\n\tcmdLutElement{0x01, 0x01, -1, 0x03, 0x0008, 0x000c},\n\tcmdLutElement{0x01, 0x02, -1, 0x03, 0x0008, 0x000e},\n\tcmdLutElement{0x01, 0x02, -1, 0x03, 0x0008, 0x0012},\n\tcmdLutElement{0x01, 0x03, -1, 0x03, 0x0008, 0x0016},\n\tcmdLutElement{0x01, 0x03, -1, 0x03, 0x0008, 0x001e},\n\tcmdLutElement{0x01, 0x04, -1, 0x03, 0x0008, 0x0026},\n\tcmdLutElement{0x01, 0x04, -1, 0x03, 0x0008, 0x0036},\n\tcmdLutElement{0x02, 0x00, -1, 0x00, 0x000a, 0x0002},\n\tcmdLutElement{0x02, 0x00, -1, 0x01, 0x000a, 0x0003},\n\tcmdLutElement{0x02, 0x00, -1, 0x02, 0x000a, 0x0004},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000a, 0x0005},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000a, 0x0006},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000a, 0x0007},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000a, 0x0008},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000a, 0x0009},\n\tcmdLutElement{0x02, 0x00, -1, 0x00, 0x000e, 0x0002},\n\tcmdLutElement{0x02, 0x00, -1, 0x01, 0x000e, 0x0003},\n\tcmdLutElement{0x02, 0x00, -1, 0x02, 0x000e, 0x0004},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000e, 0x0005},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000e, 0x0006},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000e, 0x0007},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000e, 0x0008},\n\tcmdLutElement{0x02, 0x00, -1, 0x03, 0x000e, 0x0009},\n\tcmdLutElement{0x03, 0x00, -1, 0x00, 0x0012, 0x0002},\n\tcmdLutElement{0x03, 0x00, -1, 0x01, 0x0012, 0x0003},\n\tcmdLutElement{0x03, 0x00, -1, 0x02, 0x0012, 0x0004},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x0012, 0x0005},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x0012, 0x0006},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x0012, 0x0007},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x0012, 0x0008},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x0012, 0x0009},\n\tcmdLutElement{0x03, 0x00, -1, 0x00, 0x001a, 0x0002},\n\tcmdLutElement{0x03, 0x00, -1, 0x01, 0x001a, 0x0003},\n\tcmdLutElement{0x03, 0x00, -1, 0x02, 0x001a, 0x0004},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x001a, 0x0005},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x001a, 0x0006},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x001a, 0x0007},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x001a, 0x0008},\n\tcmdLutElement{0x03, 0x00, -1, 0x03, 0x001a, 0x0009},\n\tcmdLutElement{0x04, 0x00, -1, 0x00, 0x0022, 0x0002},\n\tcmdLutElement{0x04, 0x00, -1, 0x01, 0x0022, 0x0003},\n\tcmdLutElement{0x04, 0x00, -1, 0x02, 0x0022, 0x0004},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0022, 0x0005},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0022, 0x0006},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0022, 0x0007},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0022, 0x0008},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0022, 0x0009},\n\tcmdLutElement{0x04, 0x00, -1, 0x00, 0x0032, 0x0002},\n\tcmdLutElement{0x04, 0x00, -1, 0x01, 0x0032, 0x0003},\n\tcmdLutElement{0x04, 0x00, -1, 0x02, 0x0032, 0x0004},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0032, 0x0005},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0032, 0x0006},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0032, 0x0007},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0032, 0x0008},\n\tcmdLutElement{0x04, 0x00, -1, 0x03, 0x0032, 0x0009},\n\tcmdLutElement{0x05, 0x00, -1, 0x00, 0x0042, 0x0002},\n\tcmdLutElement{0x05, 0x00, -1, 0x01, 0x0042, 0x0003},\n\tcmdLutElement{0x05, 0x00, -1, 0x02, 0x0042, 0x0004},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0042, 0x0005},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0042, 0x0006},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0042, 0x0007},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0042, 0x0008},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0042, 0x0009},\n\tcmdLutElement{0x05, 0x00, -1, 0x00, 0x0062, 0x0002},\n\tcmdLutElement{0x05, 0x00, -1, 0x01, 0x0062, 0x0003},\n\tcmdLutElement{0x05, 0x00, -1, 0x02, 0x0062, 0x0004},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0062, 0x0005},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0062, 0x0006},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0062, 0x0007},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0062, 0x0008},\n\tcmdLutElement{0x05, 0x00, -1, 0x03, 0x0062, 0x0009},\n\tcmdLutElement{0x02, 0x01, -1, 0x03, 0x000a, 0x000a},\n\tcmdLutElement{0x02, 0x01, -1, 0x03, 0x000a, 0x000c},\n\tcmdLutElement{0x02, 0x02, -1, 0x03, 0x000a, 0x000e},\n\tcmdLutElement{0x02, 0x02, -1, 0x03, 0x000a, 0x0012},\n\tcmdLutElement{0x02, 0x03, -1, 0x03, 0x000a, 0x0016},\n\tcmdLutElement{0x02, 0x03, -1, 0x03, 0x000a, 0x001e},\n\tcmdLutElement{0x02, 0x04, -1, 0x03, 0x000a, 0x0026},\n\tcmdLutElement{0x02, 0x04, -1, 0x03, 0x000a, 0x0036},\n\tcmdLutElement{0x02, 0x01, -1, 0x03, 0x000e, 0x000a},\n\tcmdLutElement{0x02, 0x01, -1, 0x03, 0x000e, 0x000c},\n\tcmdLutElement{0x02, 0x02, -1, 0x03, 0x000e, 0x000e},\n\tcmdLutElement{0x02, 0x02, -1, 0x03, 0x000e, 0x0012},\n\tcmdLutElement{0x02, 0x03, -1, 0x03, 0x000e, 0x0016},\n\tcmdLutElement{0x02, 0x03, -1, 0x03, 0x000e, 0x001e},\n\tcmdLutElement{0x02, 0x04, -1, 0x03, 0x000e, 0x0026},\n\tcmdLutElement{0x02, 0x04, -1, 0x03, 0x000e, 0x0036},\n\tcmdLutElement{0x03, 0x01, -1, 0x03, 0x0012, 0x000a},\n\tcmdLutElement{0x03, 0x01, -1, 0x03, 0x0012, 0x000c},\n\tcmdLutElement{0x03, 0x02, -1, 0x03, 0x0012, 0x000e},\n\tcmdLutElement{0x03, 0x02, -1, 0x03, 0x0012, 0x0012},\n\tcmdLutElement{0x03, 0x03, -1, 0x03, 0x0012, 0x0016},\n\tcmdLutElement{0x03, 0x03, -1, 0x03, 0x0012, 0x001e},\n\tcmdLutElement{0x03, 0x04, -1, 0x03, 0x0012, 0x0026},\n\tcmdLutElement{0x03, 0x04, -1, 0x03, 0x0012, 0x0036},\n\tcmdLutElement{0x03, 0x01, -1, 0x03, 0x001a, 0x000a},\n\tcmdLutElement{0x03, 0x01, -1, 0x03, 0x001a, 0x000c},\n\tcmdLutElement{0x03, 0x02, -1, 0x03, 0x001a, 0x000e},\n\tcmdLutElement{0x03, 0x02, -1, 0x03, 0x001a, 0x0012},\n\tcmdLutElement{0x03, 0x03, -1, 0x03, 0x001a, 0x0016},\n\tcmdLutElement{0x03, 0x03, -1, 0x03, 0x001a, 0x001e},\n\tcmdLutElement{0x03, 0x04, -1, 0x03, 0x001a, 0x0026},\n\tcmdLutElement{0x03, 0x04, -1, 0x03, 0x001a, 0x0036},\n\tcmdLutElement{0x04, 0x01, -1, 0x03, 0x0022, 0x000a},\n\tcmdLutElement{0x04, 0x01, -1, 0x03, 0x0022, 0x000c},\n\tcmdLutElement{0x04, 0x02, -1, 0x03, 0x0022, 0x000e},\n\tcmdLutElement{0x04, 0x02, -1, 0x03, 0x0022, 0x0012},\n\tcmdLutElement{0x04, 0x03, -1, 0x03, 0x0022, 0x0016},\n\tcmdLutElement{0x04, 0x03, -1, 0x03, 0x0022, 0x001e},\n\tcmdLutElement{0x04, 0x04, -1, 0x03, 0x0022, 0x0026},\n\tcmdLutElement{0x04, 0x04, -1, 0x03, 0x0022, 0x0036},\n\tcmdLutElement{0x04, 0x01, -1, 0x03, 0x0032, 0x000a},\n\tcmdLutElement{0x04, 0x01, -1, 0x03, 0x0032, 0x000c},\n\tcmdLutElement{0x04, 0x02, -1, 0x03, 0x0032, 0x000e},\n\tcmdLutElement{0x04, 0x02, -1, 0x03, 0x0032, 0x0012},\n\tcmdLutElement{0x04, 0x03, -1, 0x03, 0x0032, 0x0016},\n\tcmdLutElement{0x04, 0x03, -1, 0x03, 0x0032, 0x001e},\n\tcmdLutElement{0x04, 0x04, -1, 0x03, 0x0032, 0x0026},\n\tcmdLutElement{0x04, 0x04, -1, 0x03, 0x0032, 0x0036},\n\tcmdLutElement{0x05, 0x01, -1, 0x03, 0x0042, 0x000a},\n\tcmdLutElement{0x05, 0x01, -1, 0x03, 0x0042, 0x000c},\n\tcmdLutElement{0x05, 0x02, -1, 0x03, 0x0042, 0x000e},\n\tcmdLutElement{0x05, 0x02, -1, 0x03, 0x0042, 0x0012},\n\tcmdLutElement{0x05, 0x03, -1, 0x03, 0x0042, 0x0016},\n\tcmdLutElement{0x05, 0x03, -1, 0x03, 0x0042, 0x001e},\n\tcmdLutElement{0x05, 0x04, -1, 0x03, 0x0042, 0x0026},\n\tcmdLutElement{0x05, 0x04, -1, 0x03, 0x0042, 0x0036},\n\tcmdLutElement{0x05, 0x01, -1, 0x03, 0x0062, 0x000a},\n\tcmdLutElement{0x05, 0x01, -1, 0x03, 0x0062, 0x000c},\n\tcmdLutElement{0x05, 0x02, -1, 0x03, 0x0062, 0x000e},\n\tcmdLutElement{0x05, 0x02, -1, 0x03, 0x0062, 0x0012},\n\tcmdLutElement{0x05, 0x03, -1, 0x03, 0x0062, 0x0016},\n\tcmdLutElement{0x05, 0x03, -1, 0x03, 0x0062, 0x001e},\n\tcmdLutElement{0x05, 0x04, -1, 0x03, 0x0062, 0x0026},\n\tcmdLutElement{0x05, 0x04, -1, 0x03, 0x0062, 0x0036},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0000, 0x0046},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0000, 0x0066},\n\tcmdLutElement{0x00, 0x06, -1, 0x03, 0x0000, 0x0086},\n\tcmdLutElement{0x00, 0x07, -1, 0x03, 0x0000, 0x00c6},\n\tcmdLutElement{0x00, 0x08, -1, 0x03, 0x0000, 0x0146},\n\tcmdLutElement{0x00, 0x09, -1, 0x03, 0x0000, 0x0246},\n\tcmdLutElement{0x00, 0x0a, -1, 0x03, 0x0000, 0x0446},\n\tcmdLutElement{0x00, 0x18, -1, 0x03, 0x0000, 0x0846},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0001, 0x0046},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0001, 0x0066},\n\tcmdLutElement{0x00, 0x06, -1, 0x03, 0x0001, 0x0086},\n\tcmdLutElement{0x00, 0x07, -1, 0x03, 0x0001, 0x00c6},\n\tcmdLutElement{0x00, 0x08, -1, 0x03, 0x0001, 0x0146},\n\tcmdLutElement{0x00, 0x09, -1, 0x03, 0x0001, 0x0246},\n\tcmdLutElement{0x00, 0x0a, -1, 0x03, 0x0001, 0x0446},\n\tcmdLutElement{0x00, 0x18, -1, 0x03, 0x0001, 0x0846},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0002, 0x0046},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0002, 0x0066},\n\tcmdLutElement{0x00, 0x06, -1, 0x03, 0x0002, 0x0086},\n\tcmdLutElement{0x00, 0x07, -1, 0x03, 0x0002, 0x00c6},\n\tcmdLutElement{0x00, 0x08, -1, 0x03, 0x0002, 0x0146},\n\tcmdLutElement{0x00, 0x09, -1, 0x03, 0x0002, 0x0246},\n\tcmdLutElement{0x00, 0x0a, -1, 0x03, 0x0002, 0x0446},\n\tcmdLutElement{0x00, 0x18, -1, 0x03, 0x0002, 0x0846},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0003, 0x0046},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0003, 0x0066},\n\tcmdLutElement{0x00, 0x06, -1, 0x03, 0x0003, 0x0086},\n\tcmdLutElement{0x00, 0x07, -1, 0x03, 0x0003, 0x00c6},\n\tcmdLutElement{0x00, 0x08, -1, 0x03, 0x0003, 0x0146},\n\tcmdLutElement{0x00, 0x09, -1, 0x03, 0x0003, 0x0246},\n\tcmdLutElement{0x00, 0x0a, -1, 0x03, 0x0003, 0x0446},\n\tcmdLutElement{0x00, 0x18, -1, 0x03, 0x0003, 0x0846},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0004, 0x0046},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0004, 0x0066},\n\tcmdLutElement{0x00, 0x06, -1, 0x03, 0x0004, 0x0086},\n\tcmdLutElement{0x00, 0x07, -1, 0x03, 0x0004, 0x00c6},\n\tcmdLutElement{0x00, 0x08, -1, 0x03, 0x0004, 0x0146},\n\tcmdLutElement{0x00, 0x09, -1, 0x03, 0x0004, 0x0246},\n\tcmdLutElement{0x00, 0x0a, -1, 0x03, 0x0004, 0x0446},\n\tcmdLutElement{0x00, 0x18, -1, 0x03, 0x0004, 0x0846},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0005, 0x0046},\n\tcmdLutElement{0x00, 0x05, -1, 0x03, 0x0005, 0x0066},\n\tcmdLutElement{0x00, 0x06, -1, 0x03, 0x0005, 0x0086},\n\tcmdLutElement{0x00, 0x07, -1, 0x03, 0x0005, 0x00c6},\n\tcmdLutElement{0x00, 0x08, -1, 0x03, 0x0005, 0x0146},\n\tcmdLutElement{0x00, 0x09, -1, 0x03, 0x0005, 0x0246},\n\tcmdLutElement{0x00, 0x0a, -1, 0x03, 0x0005, 0x0446},\n\tcmdLutElement{0x00, 0x18, -1, 0x03, 0x0005, 0x0846},\n\tcmdLutElement{0x01, 0x05, -1, 0x03, 0x0006, 0x0046},\n\tcmdLutElement{0x01, 0x05, -1, 0x03, 0x0006, 0x0066},\n\tcmdLutElement{0x01, 0x06, -1, 0x03, 0x0006, 0x0086},\n\tcmdLutElement{0x01, 0x07, -1, 0x03, 0x0006, 0x00c6},\n\tcmdLutElement{0x01, 0x08, -1, 0x03, 0x0006, 0x0146},\n\tcmdLutElement{0x01, 0x09, -1, 0x03, 0x0006, 0x0246},\n\tcmdLutElement{0x01, 0x0a, -1, 0x03, 0x0006, 0x0446},\n\tcmdLutElement{0x01, 0x18, -1, 0x03, 0x0006, 0x0846},\n\tcmdLutElement{0x01, 0x05, -1, 0x03, 0x0008, 0x0046},\n\tcmdLutElement{0x01, 0x05, -1, 0x03, 0x0008, 0x0066},\n\tcmdLutElement{0x01, 0x06, -1, 0x03, 0x0008, 0x0086},\n\tcmdLutElement{0x01, 0x07, -1, 0x03, 0x0008, 0x00c6},\n\tcmdLutElement{0x01, 0x08, -1, 0x03, 0x0008, 0x0146},\n\tcmdLutElement{0x01, 0x09, -1, 0x03, 0x0008, 0x0246},\n\tcmdLutElement{0x01, 0x0a, -1, 0x03, 0x0008, 0x0446},\n\tcmdLutElement{0x01, 0x18, -1, 0x03, 0x0008, 0x0846},\n\tcmdLutElement{0x06, 0x00, -1, 0x00, 0x0082, 0x0002},\n\tcmdLutElement{0x06, 0x00, -1, 0x01, 0x0082, 0x0003},\n\tcmdLutElement{0x06, 0x00, -1, 0x02, 0x0082, 0x0004},\n\tcmdLutElement{0x06, 0x00, -1, 0x03, 0x0082, 0x0005},\n\tcmdLutElement{0x06, 0x00, -1, 0x03, 0x0082, 0x0006},\n\tcmdLutElement{0x06, 0x00, -1, 0x03, 0x0082, 0x0007},\n\tcmdLutElement{0x06, 0x00, -1, 0x03, 0x0082, 0x0008},\n\tcmdLutElement{0x06, 0x00, -1, 0x03, 0x0082, 0x0009},\n\tcmdLutElement{0x07, 0x00, -1, 0x00, 0x00c2, 0x0002},\n\tcmdLutElement{0x07, 0x00, -1, 0x01, 0x00c2, 0x0003},\n\tcmdLutElement{0x07, 0x00, -1, 0x02, 0x00c2, 0x0004},\n\tcmdLutElement{0x07, 0x00, -1, 0x03, 0x00c2, 0x0005},\n\tcmdLutElement{0x07, 0x00, -1, 0x03, 0x00c2, 0x0006},\n\tcmdLutElement{0x07, 0x00, -1, 0x03, 0x00c2, 0x0007},\n\tcmdLutElement{0x07, 0x00, -1, 0x03, 0x00c2, 0x0008},\n\tcmdLutElement{0x07, 0x00, -1, 0x03, 0x00c2, 0x0009},\n\tcmdLutElement{0x08, 0x00, -1, 0x00, 0x0142, 0x0002},\n\tcmdLutElement{0x08, 0x00, -1, 0x01, 0x0142, 0x0003},\n\tcmdLutElement{0x08, 0x00, -1, 0x02, 0x0142, 0x0004},\n\tcmdLutElement{0x08, 0x00, -1, 0x03, 0x0142, 0x0005},\n\tcmdLutElement{0x08, 0x00, -1, 0x03, 0x0142, 0x0006},\n\tcmdLutElement{0x08, 0x00, -1, 0x03, 0x0142, 0x0007},\n\tcmdLutElement{0x08, 0x00, -1, 0x03, 0x0142, 0x0008},\n\tcmdLutElement{0x08, 0x00, -1, 0x03, 0x0142, 0x0009},\n\tcmdLutElement{0x09, 0x00, -1, 0x00, 0x0242, 0x0002},\n\tcmdLutElement{0x09, 0x00, -1, 0x01, 0x0242, 0x0003},\n\tcmdLutElement{0x09, 0x00, -1, 0x02, 0x0242, 0x0004},\n\tcmdLutElement{0x09, 0x00, -1, 0x03, 0x0242, 0x0005},\n\tcmdLutElement{0x09, 0x00, -1, 0x03, 0x0242, 0x0006},\n\tcmdLutElement{0x09, 0x00, -1, 0x03, 0x0242, 0x0007},\n\tcmdLutElement{0x09, 0x00, -1, 0x03, 0x0242, 0x0008},\n\tcmdLutElement{0x09, 0x00, -1, 0x03, 0x0242, 0x0009},\n\tcmdLutElement{0x0a, 0x00, -1, 0x00, 0x0442, 0x0002},\n\tcmdLutElement{0x0a, 0x00, -1, 0x01, 0x0442, 0x0003},\n\tcmdLutElement{0x0a, 0x00, -1, 0x02, 0x0442, 0x0004},\n\tcmdLutElement{0x0a, 0x00, -1, 0x03, 0x0442, 0x0005},\n\tcmdLutElement{0x0a, 0x00, -1, 0x03, 0x0442, 0x0006},\n\tcmdLutElement{0x0a, 0x00, -1, 0x03, 0x0442, 0x0007},\n\tcmdLutElement{0x0a, 0x00, -1, 0x03, 0x0442, 0x0008},\n\tcmdLutElement{0x0a, 0x00, -1, 0x03, 0x0442, 0x0009},\n\tcmdLutElement{0x0c, 0x00, -1, 0x00, 0x0842, 0x0002},\n\tcmdLutElement{0x0c, 0x00, -1, 0x01, 0x0842, 0x0003},\n\tcmdLutElement{0x0c, 0x00, -1, 0x02, 0x0842, 0x0004},\n\tcmdLutElement{0x0c, 0x00, -1, 0x03, 0x0842, 0x0005},\n\tcmdLutElement{0x0c, 0x00, -1, 0x03, 0x0842, 0x0006},\n\tcmdLutElement{0x0c, 0x00, -1, 0x03, 0x0842, 0x0007},\n\tcmdLutElement{0x0c, 0x00, -1, 0x03, 0x0842, 0x0008},\n\tcmdLutElement{0x0c, 0x00, -1, 0x03, 0x0842, 0x0009},\n\tcmdLutElement{0x0e, 0x00, -1, 0x00, 0x1842, 0x0002},\n\tcmdLutElement{0x0e, 0x00, -1, 0x01, 0x1842, 0x0003},\n\tcmdLutElement{0x0e, 0x00, -1, 0x02, 0x1842, 0x0004},\n\tcmdLutElement{0x0e, 0x00, -1, 0x03, 0x1842, 0x0005},\n\tcmdLutElement{0x0e, 0x00, -1, 0x03, 0x1842, 0x0006},\n\tcmdLutElement{0x0e, 0x00, -1, 0x03, 0x1842, 0x0007},\n\tcmdLutElement{0x0e, 0x00, -1, 0x03, 0x1842, 0x0008},\n\tcmdLutElement{0x0e, 0x00, -1, 0x03, 0x1842, 0x0009},\n\tcmdLutElement{0x18, 0x00, -1, 0x00, 0x5842, 0x0002},\n\tcmdLutElement{0x18, 0x00, -1, 0x01, 0x5842, 0x0003},\n\tcmdLutElement{0x18, 0x00, -1, 0x02, 0x5842, 0x0004},\n\tcmdLutElement{0x18, 0x00, -1, 0x03, 0x5842, 0x0005},\n\tcmdLutElement{0x18, 0x00, -1, 0x03, 0x5842, 0x0006},\n\tcmdLutElement{0x18, 0x00, -1, 0x03, 0x5842, 0x0007},\n\tcmdLutElement{0x18, 0x00, -1, 0x03, 0x5842, 0x0008},\n\tcmdLutElement{0x18, 0x00, -1, 0x03, 0x5842, 0x0009},\n\tcmdLutElement{0x02, 0x05, -1, 0x03, 0x000a, 0x0046},\n\tcmdLutElement{0x02, 0x05, -1, 0x03, 0x000a, 0x0066},\n\tcmdLutElement{0x02, 0x06, -1, 0x03, 0x000a, 0x0086},\n\tcmdLutElement{0x02, 0x07, -1, 0x03, 0x000a, 0x00c6},\n\tcmdLutElement{0x02, 0x08, -1, 0x03, 0x000a, 0x0146},\n\tcmdLutElement{0x02, 0x09, -1, 0x03, 0x000a, 0x0246},\n\tcmdLutElement{0x02, 0x0a, -1, 0x03, 0x000a, 0x0446},\n\tcmdLutElement{0x02, 0x18, -1, 0x03, 0x000a, 0x0846},\n\tcmdLutElement{0x02, 0x05, -1, 0x03, 0x000e, 0x0046},\n\tcmdLutElement{0x02, 0x05, -1, 0x03, 0x000e, 0x0066},\n\tcmdLutElement{0x02, 0x06, -1, 0x03, 0x000e, 0x0086},\n\tcmdLutElement{0x02, 0x07, -1, 0x03, 0x000e, 0x00c6},\n\tcmdLutElement{0x02, 0x08, -1, 0x03, 0x000e, 0x0146},\n\tcmdLutElement{0x02, 0x09, -1, 0x03, 0x000e, 0x0246},\n\tcmdLutElement{0x02, 0x0a, -1, 0x03, 0x000e, 0x0446},\n\tcmdLutElement{0x02, 0x18, -1, 0x03, 0x000e, 0x0846},\n\tcmdLutElement{0x03, 0x05, -1, 0x03, 0x0012, 0x0046},\n\tcmdLutElement{0x03, 0x05, -1, 0x03, 0x0012, 0x0066},\n\tcmdLutElement{0x03, 0x06, -1, 0x03, 0x0012, 0x0086},\n\tcmdLutElement{0x03, 0x07, -1, 0x03, 0x0012, 0x00c6},\n\tcmdLutElement{0x03, 0x08, -1, 0x03, 0x0012, 0x0146},\n\tcmdLutElement{0x03, 0x09, -1, 0x03, 0x0012, 0x0246},\n\tcmdLutElement{0x03, 0x0a, -1, 0x03, 0x0012, 0x0446},\n\tcmdLutElement{0x03, 0x18, -1, 0x03, 0x0012, 0x0846},\n\tcmdLutElement{0x03, 0x05, -1, 0x03, 0x001a, 0x0046},\n\tcmdLutElement{0x03, 0x05, -1, 0x03, 0x001a, 0x0066},\n\tcmdLutElement{0x03, 0x06, -1, 0x03, 0x001a, 0x0086},\n\tcmdLutElement{0x03, 0x07, -1, 0x03, 0x001a, 0x00c6},\n\tcmdLutElement{0x03, 0x08, -1, 0x03, 0x001a, 0x0146},\n\tcmdLutElement{0x03, 0x09, -1, 0x03, 0x001a, 0x0246},\n\tcmdLutElement{0x03, 0x0a, -1, 0x03, 0x001a, 0x0446},\n\tcmdLutElement{0x03, 0x18, -1, 0x03, 0x001a, 0x0846},\n\tcmdLutElement{0x04, 0x05, -1, 0x03, 0x0022, 0x0046},\n\tcmdLutElement{0x04, 0x05, -1, 0x03, 0x0022, 0x0066},\n\tcmdLutElement{0x04, 0x06, -1, 0x03, 0x0022, 0x0086},\n\tcmdLutElement{0x04, 0x07, -1, 0x03, 0x0022, 0x00c6},\n\tcmdLutElement{0x04, 0x08, -1, 0x03, 0x0022, 0x0146},\n\tcmdLutElement{0x04, 0x09, -1, 0x03, 0x0022, 0x0246},\n\tcmdLutElement{0x04, 0x0a, -1, 0x03, 0x0022, 0x0446},\n\tcmdLutElement{0x04, 0x18, -1, 0x03, 0x0022, 0x0846},\n\tcmdLutElement{0x04, 0x05, -1, 0x03, 0x0032, 0x0046},\n\tcmdLutElement{0x04, 0x05, -1, 0x03, 0x0032, 0x0066},\n\tcmdLutElement{0x04, 0x06, -1, 0x03, 0x0032, 0x0086},\n\tcmdLutElement{0x04, 0x07, -1, 0x03, 0x0032, 0x00c6},\n\tcmdLutElement{0x04, 0x08, -1, 0x03, 0x0032, 0x0146},\n\tcmdLutElement{0x04, 0x09, -1, 0x03, 0x0032, 0x0246},\n\tcmdLutElement{0x04, 0x0a, -1, 0x03, 0x0032, 0x0446},\n\tcmdLutElement{0x04, 0x18, -1, 0x03, 0x0032, 0x0846},\n\tcmdLutElement{0x05, 0x05, -1, 0x03, 0x0042, 0x0046},\n\tcmdLutElement{0x05, 0x05, -1, 0x03, 0x0042, 0x0066},\n\tcmdLutElement{0x05, 0x06, -1, 0x03, 0x0042, 0x0086},\n\tcmdLutElement{0x05, 0x07, -1, 0x03, 0x0042, 0x00c6},\n\tcmdLutElement{0x05, 0x08, -1, 0x03, 0x0042, 0x0146},\n\tcmdLutElement{0x05, 0x09, -1, 0x03, 0x0042, 0x0246},\n\tcmdLutElement{0x05, 0x0a, -1, 0x03, 0x0042, 0x0446},\n\tcmdLutElement{0x05, 0x18, -1, 0x03, 0x0042, 0x0846},\n\tcmdLutElement{0x05, 0x05, -1, 0x03, 0x0062, 0x0046},\n\tcmdLutElement{0x05, 0x05, -1, 0x03, 0x0062, 0x0066},\n\tcmdLutElement{0x05, 0x06, -1, 0x03, 0x0062, 0x0086},\n\tcmdLutElement{0x05, 0x07, -1, 0x03, 0x0062, 0x00c6},\n\tcmdLutElement{0x05, 0x08, -1, 0x03, 0x0062, 0x0146},\n\tcmdLutElement{0x05, 0x09, -1, 0x03, 0x0062, 0x0246},\n\tcmdLutElement{0x05, 0x0a, -1, 0x03, 0x0062, 0x0446},\n\tcmdLutElement{0x05, 0x18, -1, 0x03, 0x0062, 0x0846},\n\tcmdLutElement{0x06, 0x01, -1, 0x03, 0x0082, 0x000a},\n\tcmdLutElement{0x06, 0x01, -1, 0x03, 0x0082, 0x000c},\n\tcmdLutElement{0x06, 0x02, -1, 0x03, 0x0082, 0x000e},\n\tcmdLutElement{0x06, 0x02, -1, 0x03, 0x0082, 0x0012},\n\tcmdLutElement{0x06, 0x03, -1, 0x03, 0x0082, 0x0016},\n\tcmdLutElement{0x06, 0x03, -1, 0x03, 0x0082, 0x001e},\n\tcmdLutElement{0x06, 0x04, -1, 0x03, 0x0082, 0x0026},\n\tcmdLutElement{0x06, 0x04, -1, 0x03, 0x0082, 0x0036},\n\tcmdLutElement{0x07, 0x01, -1, 0x03, 0x00c2, 0x000a},\n\tcmdLutElement{0x07, 0x01, -1, 0x03, 0x00c2, 0x000c},\n\tcmdLutElement{0x07, 0x02, -1, 0x03, 0x00c2, 0x000e},\n\tcmdLutElement{0x07, 0x02, -1, 0x03, 0x00c2, 0x0012},\n\tcmdLutElement{0x07, 0x03, -1, 0x03, 0x00c2, 0x0016},\n\tcmdLutElement{0x07, 0x03, -1, 0x03, 0x00c2, 0x001e},\n\tcmdLutElement{0x07, 0x04, -1, 0x03, 0x00c2, 0x0026},\n\tcmdLutElement{0x07, 0x04, -1, 0x03, 0x00c2, 0x0036},\n\tcmdLutElement{0x08, 0x01, -1, 0x03, 0x0142, 0x000a},\n\tcmdLutElement{0x08, 0x01, -1, 0x03, 0x0142, 0x000c},\n\tcmdLutElement{0x08, 0x02, -1, 0x03, 0x0142, 0x000e},\n\tcmdLutElement{0x08, 0x02, -1, 0x03, 0x0142, 0x0012},\n\tcmdLutElement{0x08, 0x03, -1, 0x03, 0x0142, 0x0016},\n\tcmdLutElement{0x08, 0x03, -1, 0x03, 0x0142, 0x001e},\n\tcmdLutElement{0x08, 0x04, -1, 0x03, 0x0142, 0x0026},\n\tcmdLutElement{0x08, 0x04, -1, 0x03, 0x0142, 0x0036},\n\tcmdLutElement{0x09, 0x01, -1, 0x03, 0x0242, 0x000a},\n\tcmdLutElement{0x09, 0x01, -1, 0x03, 0x0242, 0x000c},\n\tcmdLutElement{0x09, 0x02, -1, 0x03, 0x0242, 0x000e},\n\tcmdLutElement{0x09, 0x02, -1, 0x03, 0x0242, 0x0012},\n\tcmdLutElement{0x09, 0x03, -1, 0x03, 0x0242, 0x0016},\n\tcmdLutElement{0x09, 0x03, -1, 0x03, 0x0242, 0x001e},\n\tcmdLutElement{0x09, 0x04, -1, 0x03, 0x0242, 0x0026},\n\tcmdLutElement{0x09, 0x04, -1, 0x03, 0x0242, 0x0036},\n\tcmdLutElement{0x0a, 0x01, -1, 0x03, 0x0442, 0x000a},\n\tcmdLutElement{0x0a, 0x01, -1, 0x03, 0x0442, 0x000c},\n\tcmdLutElement{0x0a, 0x02, -1, 0x03, 0x0442, 0x000e},\n\tcmdLutElement{0x0a, 0x02, -1, 0x03, 0x0442, 0x0012},\n\tcmdLutElement{0x0a, 0x03, -1, 0x03, 0x0442, 0x0016},\n\tcmdLutElement{0x0a, 0x03, -1, 0x03, 0x0442, 0x001e},\n\tcmdLutElement{0x0a, 0x04, -1, 0x03, 0x0442, 0x0026},\n\tcmdLutElement{0x0a, 0x04, -1, 0x03, 0x0442, 0x0036},\n\tcmdLutElement{0x0c, 0x01, -1, 0x03, 0x0842, 0x000a},\n\tcmdLutElement{0x0c, 0x01, -1, 0x03, 0x0842, 0x000c},\n\tcmdLutElement{0x0c, 0x02, -1, 0x03, 0x0842, 0x000e},\n\tcmdLutElement{0x0c, 0x02, -1, 0x03, 0x0842, 0x0012},\n\tcmdLutElement{0x0c, 0x03, -1, 0x03, 0x0842, 0x0016},\n\tcmdLutElement{0x0c, 0x03, -1, 0x03, 0x0842, 0x001e},\n\tcmdLutElement{0x0c, 0x04, -1, 0x03, 0x0842, 0x0026},\n\tcmdLutElement{0x0c, 0x04, -1, 0x03, 0x0842, 0x0036},\n\tcmdLutElement{0x0e, 0x01, -1, 0x03, 0x1842, 0x000a},\n\tcmdLutElement{0x0e, 0x01, -1, 0x03, 0x1842, 0x000c},\n\tcmdLutElement{0x0e, 0x02, -1, 0x03, 0x1842, 0x000e},\n\tcmdLutElement{0x0e, 0x02, -1, 0x03, 0x1842, 0x0012},\n\tcmdLutElement{0x0e, 0x03, -1, 0x03, 0x1842, 0x0016},\n\tcmdLutElement{0x0e, 0x03, -1, 0x03, 0x1842, 0x001e},\n\tcmdLutElement{0x0e, 0x04, -1, 0x03, 0x1842, 0x0026},\n\tcmdLutElement{0x0e, 0x04, -1, 0x03, 0x1842, 0x0036},\n\tcmdLutElement{0x18, 0x01, -1, 0x03, 0x5842, 0x000a},\n\tcmdLutElement{0x18, 0x01, -1, 0x03, 0x5842, 0x000c},\n\tcmdLutElement{0x18, 0x02, -1, 0x03, 0x5842, 0x000e},\n\tcmdLutElement{0x18, 0x02, -1, 0x03, 0x5842, 0x0012},\n\tcmdLutElement{0x18, 0x03, -1, 0x03, 0x5842, 0x0016},\n\tcmdLutElement{0x18, 0x03, -1, 0x03, 0x5842, 0x001e},\n\tcmdLutElement{0x18, 0x04, -1, 0x03, 0x5842, 0x0026},\n\tcmdLutElement{0x18, 0x04, -1, 0x03, 0x5842, 0x0036},\n\tcmdLutElement{0x06, 0x05, -1, 0x03, 0x0082, 0x0046},\n\tcmdLutElement{0x06, 0x05, -1, 0x03, 0x0082, 0x0066},\n\tcmdLutElement{0x06, 0x06, -1, 0x03, 0x0082, 0x0086},\n\tcmdLutElement{0x06, 0x07, -1, 0x03, 0x0082, 0x00c6},\n\tcmdLutElement{0x06, 0x08, -1, 0x03, 0x0082, 0x0146},\n\tcmdLutElement{0x06, 0x09, -1, 0x03, 0x0082, 0x0246},\n\tcmdLutElement{0x06, 0x0a, -1, 0x03, 0x0082, 0x0446},\n\tcmdLutElement{0x06, 0x18, -1, 0x03, 0x0082, 0x0846},\n\tcmdLutElement{0x07, 0x05, -1, 0x03, 0x00c2, 0x0046},\n\tcmdLutElement{0x07, 0x05, -1, 0x03, 0x00c2, 0x0066},\n\tcmdLutElement{0x07, 0x06, -1, 0x03, 0x00c2, 0x0086},\n\tcmdLutElement{0x07, 0x07, -1, 0x03, 0x00c2, 0x00c6},\n\tcmdLutElement{0x07, 0x08, -1, 0x03, 0x00c2, 0x0146},\n\tcmdLutElement{0x07, 0x09, -1, 0x03, 0x00c2, 0x0246},\n\tcmdLutElement{0x07, 0x0a, -1, 0x03, 0x00c2, 0x0446},\n\tcmdLutElement{0x07, 0x18, -1, 0x03, 0x00c2, 0x0846},\n\tcmdLutElement{0x08, 0x05, -1, 0x03, 0x0142, 0x0046},\n\tcmdLutElement{0x08, 0x05, -1, 0x03, 0x0142, 0x0066},\n\tcmdLutElement{0x08, 0x06, -1, 0x03, 0x0142, 0x0086},\n\tcmdLutElement{0x08, 0x07, -1, 0x03, 0x0142, 0x00c6},\n\tcmdLutElement{0x08, 0x08, -1, 0x03, 0x0142, 0x0146},\n\tcmdLutElement{0x08, 0x09, -1, 0x03, 0x0142, 0x0246},\n\tcmdLutElement{0x08, 0x0a, -1, 0x03, 0x0142, 0x0446},\n\tcmdLutElement{0x08, 0x18, -1, 0x03, 0x0142, 0x0846},\n\tcmdLutElement{0x09, 0x05, -1, 0x03, 0x0242, 0x0046},\n\tcmdLutElement{0x09, 0x05, -1, 0x03, 0x0242, 0x0066},\n\tcmdLutElement{0x09, 0x06, -1, 0x03, 0x0242, 0x0086},\n\tcmdLutElement{0x09, 0x07, -1, 0x03, 0x0242, 0x00c6},\n\tcmdLutElement{0x09, 0x08, -1, 0x03, 0x0242, 0x0146},\n\tcmdLutElement{0x09, 0x09, -1, 0x03, 0x0242, 0x0246},\n\tcmdLutElement{0x09, 0x0a, -1, 0x03, 0x0242, 0x0446},\n\tcmdLutElement{0x09, 0x18, -1, 0x03, 0x0242, 0x0846},\n\tcmdLutElement{0x0a, 0x05, -1, 0x03, 0x0442, 0x0046},\n\tcmdLutElement{0x0a, 0x05, -1, 0x03, 0x0442, 0x0066},\n\tcmdLutElement{0x0a, 0x06, -1, 0x03, 0x0442, 0x0086},\n\tcmdLutElement{0x0a, 0x07, -1, 0x03, 0x0442, 0x00c6},\n\tcmdLutElement{0x0a, 0x08, -1, 0x03, 0x0442, 0x0146},\n\tcmdLutElement{0x0a, 0x09, -1, 0x03, 0x0442, 0x0246},\n\tcmdLutElement{0x0a, 0x0a, -1, 0x03, 0x0442, 0x0446},\n\tcmdLutElement{0x0a, 0x18, -1, 0x03, 0x0442, 0x0846},\n\tcmdLutElement{0x0c, 0x05, -1, 0x03, 0x0842, 0x0046},\n\tcmdLutElement{0x0c, 0x05, -1, 0x03, 0x0842, 0x0066},\n\tcmdLutElement{0x0c, 0x06, -1, 0x03, 0x0842, 0x0086},\n\tcmdLutElement{0x0c, 0x07, -1, 0x03, 0x0842, 0x00c6},\n\tcmdLutElement{0x0c, 0x08, -1, 0x03, 0x0842, 0x0146},\n\tcmdLutElement{0x0c, 0x09, -1, 0x03, 0x0842, 0x0246},\n\tcmdLutElement{0x0c, 0x0a, -1, 0x03, 0x0842, 0x0446},\n\tcmdLutElement{0x0c, 0x18, -1, 0x03, 0x0842, 0x0846},\n\tcmdLutElement{0x0e, 0x05, -1, 0x03, 0x1842, 0x0046},\n\tcmdLutElement{0x0e, 0x05, -1, 0x03, 0x1842, 0x0066},\n\tcmdLutElement{0x0e, 0x06, -1, 0x03, 0x1842, 0x0086},\n\tcmdLutElement{0x0e, 0x07, -1, 0x03, 0x1842, 0x00c6},\n\tcmdLutElement{0x0e, 0x08, -1, 0x03, 0x1842, 0x0146},\n\tcmdLutElement{0x0e, 0x09, -1, 0x03, 0x1842, 0x0246},\n\tcmdLutElement{0x0e, 0x0a, -1, 0x03, 0x1842, 0x0446},\n\tcmdLutElement{0x0e, 0x18, -1, 0x03, 0x1842, 0x0846},\n\tcmdLutElement{0x18, 0x05, -1, 0x03, 0x5842, 0x0046},\n\tcmdLutElement{0x18, 0x05, -1, 0x03, 0x5842, 0x0066},\n\tcmdLutElement{0x18, 0x06, -1, 0x03, 0x5842, 0x0086},\n\tcmdLutElement{0x18, 0x07, -1, 0x03, 0x5842, 0x00c6},\n\tcmdLutElement{0x18, 0x08, -1, 0x03, 0x5842, 0x0146},\n\tcmdLutElement{0x18, 0x09, -1, 0x03, 0x5842, 0x0246},\n\tcmdLutElement{0x18, 0x0a, -1, 0x03, 0x5842, 0x0446},\n\tcmdLutElement{0x18, 0x18, -1, 0x03, 0x5842, 0x0846},\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/quality.go",
    "content": "package brotli\n\nconst fastOnePassCompressionQuality = 0\n\nconst fastTwoPassCompressionQuality = 1\n\nconst zopflificationQuality = 10\n\nconst hqZopflificationQuality = 11\n\nconst maxQualityForStaticEntropyCodes = 2\n\nconst minQualityForBlockSplit = 4\n\nconst minQualityForNonzeroDistanceParams = 4\n\nconst minQualityForOptimizeHistograms = 4\n\nconst minQualityForExtensiveReferenceSearch = 5\n\nconst minQualityForContextModeling = 5\n\nconst minQualityForHqContextModeling = 7\n\nconst minQualityForHqBlockSplitting = 10\n\n/* For quality below MIN_QUALITY_FOR_BLOCK_SPLIT there is no block splitting,\n   so we buffer at most this much literals and commands. */\nconst maxNumDelayedSymbols = 0x2FFF\n\n/* Returns hash-table size for quality levels 0 and 1. */\nfunc maxHashTableSize(quality int) uint {\n\tif quality == fastOnePassCompressionQuality {\n\t\treturn 1 << 15\n\t} else {\n\t\treturn 1 << 17\n\t}\n}\n\n/* The maximum length for which the zopflification uses distinct distances. */\nconst maxZopfliLenQuality10 = 150\n\nconst maxZopfliLenQuality11 = 325\n\n/* Do not thoroughly search when a long copy is found. */\nconst longCopyQuickStep = 16384\n\nfunc maxZopfliLen(params *encoderParams) uint {\n\tif params.quality <= 10 {\n\t\treturn maxZopfliLenQuality10\n\t} else {\n\t\treturn maxZopfliLenQuality11\n\t}\n}\n\n/* Number of best candidates to evaluate to expand Zopfli chain. */\nfunc maxZopfliCandidates(params *encoderParams) uint {\n\tif params.quality <= 10 {\n\t\treturn 1\n\t} else {\n\t\treturn 5\n\t}\n}\n\nfunc sanitizeParams(params *encoderParams) {\n\tparams.quality = brotli_min_int(maxQuality, brotli_max_int(minQuality, params.quality))\n\tif params.quality <= maxQualityForStaticEntropyCodes {\n\t\tparams.large_window = false\n\t}\n\n\tif params.lgwin < minWindowBits {\n\t\tparams.lgwin = minWindowBits\n\t} else {\n\t\tvar max_lgwin int\n\t\tif params.large_window {\n\t\t\tmax_lgwin = largeMaxWindowBits\n\t\t} else {\n\t\t\tmax_lgwin = maxWindowBits\n\t\t}\n\t\tif params.lgwin > uint(max_lgwin) {\n\t\t\tparams.lgwin = uint(max_lgwin)\n\t\t}\n\t}\n}\n\n/* Returns optimized lg_block value. */\nfunc computeLgBlock(params *encoderParams) int {\n\tvar lgblock int = params.lgblock\n\tif params.quality == fastOnePassCompressionQuality || params.quality == fastTwoPassCompressionQuality {\n\t\tlgblock = int(params.lgwin)\n\t} else if params.quality < minQualityForBlockSplit {\n\t\tlgblock = 14\n\t} else if lgblock == 0 {\n\t\tlgblock = 16\n\t\tif params.quality >= 9 && params.lgwin > uint(lgblock) {\n\t\t\tlgblock = brotli_min_int(18, int(params.lgwin))\n\t\t}\n\t} else {\n\t\tlgblock = brotli_min_int(maxInputBlockBits, brotli_max_int(minInputBlockBits, lgblock))\n\t}\n\n\treturn lgblock\n}\n\n/* Returns log2 of the size of main ring buffer area.\n   Allocate at least lgwin + 1 bits for the ring buffer so that the newly\n   added block fits there completely and we still get lgwin bits and at least\n   read_block_size_bits + 1 bits because the copy tail length needs to be\n   smaller than ring-buffer size. */\nfunc computeRbBits(params *encoderParams) int {\n\treturn 1 + brotli_max_int(int(params.lgwin), params.lgblock)\n}\n\nfunc maxMetablockSize(params *encoderParams) uint {\n\tvar bits int = brotli_min_int(computeRbBits(params), maxInputBlockBits)\n\treturn uint(1) << uint(bits)\n}\n\n/* When searching for backward references and have not seen matches for a long\n   time, we can skip some match lookups. Unsuccessful match lookups are very\n   expensive and this kind of a heuristic speeds up compression quite a lot.\n   At first 8 byte strides are taken and every second byte is put to hasher.\n   After 4x more literals stride by 16 bytes, every put 4-th byte to hasher.\n   Applied only to qualities 2 to 9. */\nfunc literalSpreeLengthForSparseSearch(params *encoderParams) uint {\n\tif params.quality < 9 {\n\t\treturn 64\n\t} else {\n\t\treturn 512\n\t}\n}\n\nfunc chooseHasher(params *encoderParams, hparams *hasherParams) {\n\tif params.quality > 9 {\n\t\thparams.type_ = 10\n\t} else if params.quality == 4 && params.size_hint >= 1<<20 {\n\t\thparams.type_ = 54\n\t} else if params.quality < 5 {\n\t\thparams.type_ = params.quality\n\t} else if params.lgwin <= 16 {\n\t\tif params.quality < 7 {\n\t\t\thparams.type_ = 40\n\t\t} else if params.quality < 9 {\n\t\t\thparams.type_ = 41\n\t\t} else {\n\t\t\thparams.type_ = 42\n\t\t}\n\t} else if params.size_hint >= 1<<20 && params.lgwin >= 19 {\n\t\thparams.type_ = 6\n\t\thparams.block_bits = params.quality - 1\n\t\thparams.bucket_bits = 15\n\t\thparams.hash_len = 5\n\t\tif params.quality < 7 {\n\t\t\thparams.num_last_distances_to_check = 4\n\t\t} else if params.quality < 9 {\n\t\t\thparams.num_last_distances_to_check = 10\n\t\t} else {\n\t\t\thparams.num_last_distances_to_check = 16\n\t\t}\n\t} else {\n\t\thparams.type_ = 5\n\t\thparams.block_bits = params.quality - 1\n\t\tif params.quality < 7 {\n\t\t\thparams.bucket_bits = 14\n\t\t} else {\n\t\t\thparams.bucket_bits = 15\n\t\t}\n\t\tif params.quality < 7 {\n\t\t\thparams.num_last_distances_to_check = 4\n\t\t} else if params.quality < 9 {\n\t\t\thparams.num_last_distances_to_check = 10\n\t\t} else {\n\t\t\thparams.num_last_distances_to_check = 16\n\t\t}\n\t}\n\n\tif params.lgwin > 24 {\n\t\t/* Different hashers for large window brotli: not for qualities <= 2,\n\t\t   these are too fast for large window. Not for qualities >= 10: their\n\t\t   hasher already works well with large window. So the changes are:\n\t\t   H3 --> H35: for quality 3.\n\t\t   H54 --> H55: for quality 4 with size hint > 1MB\n\t\t   H6 --> H65: for qualities 5, 6, 7, 8, 9. */\n\t\tif hparams.type_ == 3 {\n\t\t\thparams.type_ = 35\n\t\t}\n\n\t\tif hparams.type_ == 54 {\n\t\t\thparams.type_ = 55\n\t\t}\n\n\t\tif hparams.type_ == 6 {\n\t\t\thparams.type_ = 65\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/reader.go",
    "content": "package brotli\n\nimport (\n\t\"errors\"\n\t\"io\"\n)\n\ntype decodeError int\n\nfunc (err decodeError) Error() string {\n\treturn \"brotli: \" + string(decoderErrorString(int(err)))\n}\n\nvar errExcessiveInput = errors.New(\"brotli: excessive input\")\nvar errInvalidState = errors.New(\"brotli: invalid state\")\n\n// readBufSize is a \"good\" buffer size that avoids excessive round-trips\n// between C and Go but doesn't waste too much memory on buffering.\n// It is arbitrarily chosen to be equal to the constant used in io.Copy.\nconst readBufSize = 32 * 1024\n\n// NewReader creates a new Reader reading the given reader.\nfunc NewReader(src io.Reader) *Reader {\n\tr := new(Reader)\n\tr.Reset(src)\n\treturn r\n}\n\n// Reset discards the Reader's state and makes it equivalent to the result of\n// its original state from NewReader, but writing to src instead.\n// This permits reusing a Reader rather than allocating a new one.\n// Error is always nil\nfunc (r *Reader) Reset(src io.Reader) error {\n\tdecoderStateInit(r)\n\tr.src = src\n\tr.buf = make([]byte, readBufSize)\n\treturn nil\n}\n\nfunc (r *Reader) Read(p []byte) (n int, err error) {\n\tif !decoderHasMoreOutput(r) && len(r.in) == 0 {\n\t\tm, readErr := r.src.Read(r.buf)\n\t\tif m == 0 {\n\t\t\t// If readErr is `nil`, we just proxy underlying stream behavior.\n\t\t\treturn 0, readErr\n\t\t}\n\t\tr.in = r.buf[:m]\n\t}\n\n\tif len(p) == 0 {\n\t\treturn 0, nil\n\t}\n\n\tfor {\n\t\tvar written uint\n\t\tin_len := uint(len(r.in))\n\t\tout_len := uint(len(p))\n\t\tin_remaining := in_len\n\t\tout_remaining := out_len\n\t\tresult := decoderDecompressStream(r, &in_remaining, &r.in, &out_remaining, &p)\n\t\twritten = out_len - out_remaining\n\t\tn = int(written)\n\n\t\tswitch result {\n\t\tcase decoderResultSuccess:\n\t\t\tif len(r.in) > 0 {\n\t\t\t\treturn n, errExcessiveInput\n\t\t\t}\n\t\t\treturn n, nil\n\t\tcase decoderResultError:\n\t\t\treturn n, decodeError(decoderGetErrorCode(r))\n\t\tcase decoderResultNeedsMoreOutput:\n\t\t\tif n == 0 {\n\t\t\t\treturn 0, io.ErrShortBuffer\n\t\t\t}\n\t\t\treturn n, nil\n\t\tcase decoderNeedsMoreInput:\n\t\t}\n\n\t\tif len(r.in) != 0 {\n\t\t\treturn 0, errInvalidState\n\t\t}\n\n\t\t// Calling r.src.Read may block. Don't block if we have data to return.\n\t\tif n > 0 {\n\t\t\treturn n, nil\n\t\t}\n\n\t\t// Top off the buffer.\n\t\tencN, err := r.src.Read(r.buf)\n\t\tif encN == 0 {\n\t\t\t// Not enough data to complete decoding.\n\t\t\tif err == io.EOF {\n\t\t\t\treturn 0, io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\treturn 0, err\n\t\t}\n\t\tr.in = r.buf[:encN]\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/ringbuffer.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* A ringBuffer(window_bits, tail_bits) contains `1 << window_bits' bytes of\n   data in a circular manner: writing a byte writes it to:\n     `position() % (1 << window_bits)'.\n   For convenience, the ringBuffer array contains another copy of the\n   first `1 << tail_bits' bytes:\n     buffer_[i] == buffer_[i + (1 << window_bits)], if i < (1 << tail_bits),\n   and another copy of the last two bytes:\n     buffer_[-1] == buffer_[(1 << window_bits) - 1] and\n     buffer_[-2] == buffer_[(1 << window_bits) - 2]. */\ntype ringBuffer struct {\n\tsize_       uint32\n\tmask_       uint32\n\ttail_size_  uint32\n\ttotal_size_ uint32\n\tcur_size_   uint32\n\tpos_        uint32\n\tdata_       []byte\n\tbuffer_     []byte\n}\n\nfunc ringBufferInit(rb *ringBuffer) {\n\trb.pos_ = 0\n}\n\nfunc ringBufferSetup(params *encoderParams, rb *ringBuffer) {\n\tvar window_bits int = computeRbBits(params)\n\tvar tail_bits int = params.lgblock\n\t*(*uint32)(&rb.size_) = 1 << uint(window_bits)\n\t*(*uint32)(&rb.mask_) = (1 << uint(window_bits)) - 1\n\t*(*uint32)(&rb.tail_size_) = 1 << uint(tail_bits)\n\t*(*uint32)(&rb.total_size_) = rb.size_ + rb.tail_size_\n}\n\nconst kSlackForEightByteHashingEverywhere uint = 7\n\n/* Allocates or re-allocates data_ to the given length + plus some slack\n   region before and after. Fills the slack regions with zeros. */\nfunc ringBufferInitBuffer(buflen uint32, rb *ringBuffer) {\n\tvar new_data []byte\n\tvar i uint\n\tsize := 2 + int(buflen) + int(kSlackForEightByteHashingEverywhere)\n\tif cap(rb.data_) < size {\n\t\tnew_data = make([]byte, size)\n\t} else {\n\t\tnew_data = rb.data_[:size]\n\t}\n\tif rb.data_ != nil {\n\t\tcopy(new_data, rb.data_[:2+rb.cur_size_+uint32(kSlackForEightByteHashingEverywhere)])\n\t}\n\n\trb.data_ = new_data\n\trb.cur_size_ = buflen\n\trb.buffer_ = rb.data_[2:]\n\trb.data_[1] = 0\n\trb.data_[0] = rb.data_[1]\n\tfor i = 0; i < kSlackForEightByteHashingEverywhere; i++ {\n\t\trb.buffer_[rb.cur_size_+uint32(i)] = 0\n\t}\n}\n\nfunc ringBufferWriteTail(bytes []byte, n uint, rb *ringBuffer) {\n\tvar masked_pos uint = uint(rb.pos_ & rb.mask_)\n\tif uint32(masked_pos) < rb.tail_size_ {\n\t\t/* Just fill the tail buffer with the beginning data. */\n\t\tvar p uint = uint(rb.size_ + uint32(masked_pos))\n\t\tcopy(rb.buffer_[p:], bytes[:brotli_min_size_t(n, uint(rb.tail_size_-uint32(masked_pos)))])\n\t}\n}\n\n/* Push bytes into the ring buffer. */\nfunc ringBufferWrite(bytes []byte, n uint, rb *ringBuffer) {\n\tif rb.pos_ == 0 && uint32(n) < rb.tail_size_ {\n\t\t/* Special case for the first write: to process the first block, we don't\n\t\t   need to allocate the whole ring-buffer and we don't need the tail\n\t\t   either. However, we do this memory usage optimization only if the\n\t\t   first write is less than the tail size, which is also the input block\n\t\t   size, otherwise it is likely that other blocks will follow and we\n\t\t   will need to reallocate to the full size anyway. */\n\t\trb.pos_ = uint32(n)\n\n\t\tringBufferInitBuffer(rb.pos_, rb)\n\t\tcopy(rb.buffer_, bytes[:n])\n\t\treturn\n\t}\n\n\tif rb.cur_size_ < rb.total_size_ {\n\t\t/* Lazily allocate the full buffer. */\n\t\tringBufferInitBuffer(rb.total_size_, rb)\n\n\t\t/* Initialize the last two bytes to zero, so that we don't have to worry\n\t\t   later when we copy the last two bytes to the first two positions. */\n\t\trb.buffer_[rb.size_-2] = 0\n\n\t\trb.buffer_[rb.size_-1] = 0\n\t}\n\t{\n\t\tvar masked_pos uint = uint(rb.pos_ & rb.mask_)\n\n\t\t/* The length of the writes is limited so that we do not need to worry\n\t\t   about a write */\n\t\tringBufferWriteTail(bytes, n, rb)\n\n\t\tif uint32(masked_pos+n) <= rb.size_ {\n\t\t\t/* A single write fits. */\n\t\t\tcopy(rb.buffer_[masked_pos:], bytes[:n])\n\t\t} else {\n\t\t\t/* Split into two writes.\n\t\t\t   Copy into the end of the buffer, including the tail buffer. */\n\t\t\tcopy(rb.buffer_[masked_pos:], bytes[:brotli_min_size_t(n, uint(rb.total_size_-uint32(masked_pos)))])\n\n\t\t\t/* Copy into the beginning of the buffer */\n\t\t\tcopy(rb.buffer_, bytes[rb.size_-uint32(masked_pos):][:uint32(n)-(rb.size_-uint32(masked_pos))])\n\t\t}\n\t}\n\t{\n\t\tvar not_first_lap bool = rb.pos_&(1<<31) != 0\n\t\tvar rb_pos_mask uint32 = (1 << 31) - 1\n\t\trb.data_[0] = rb.buffer_[rb.size_-2]\n\t\trb.data_[1] = rb.buffer_[rb.size_-1]\n\t\trb.pos_ = (rb.pos_ & rb_pos_mask) + uint32(uint32(n)&rb_pos_mask)\n\t\tif not_first_lap {\n\t\t\t/* Wrap, but preserve not-a-first-lap feature. */\n\t\t\trb.pos_ |= 1 << 31\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/state.go",
    "content": "package brotli\n\nimport \"io\"\n\n/* Copyright 2015 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Brotli state for partial streaming decoding. */\nconst (\n\tstateUninited = iota\n\tstateLargeWindowBits\n\tstateInitialize\n\tstateMetablockBegin\n\tstateMetablockHeader\n\tstateMetablockHeader2\n\tstateContextModes\n\tstateCommandBegin\n\tstateCommandInner\n\tstateCommandPostDecodeLiterals\n\tstateCommandPostWrapCopy\n\tstateUncompressed\n\tstateMetadata\n\tstateCommandInnerWrite\n\tstateMetablockDone\n\tstateCommandPostWrite1\n\tstateCommandPostWrite2\n\tstateHuffmanCode0\n\tstateHuffmanCode1\n\tstateHuffmanCode2\n\tstateHuffmanCode3\n\tstateContextMap1\n\tstateContextMap2\n\tstateTreeGroup\n\tstateDone\n)\n\nconst (\n\tstateMetablockHeaderNone = iota\n\tstateMetablockHeaderEmpty\n\tstateMetablockHeaderNibbles\n\tstateMetablockHeaderSize\n\tstateMetablockHeaderUncompressed\n\tstateMetablockHeaderReserved\n\tstateMetablockHeaderBytes\n\tstateMetablockHeaderMetadata\n)\n\nconst (\n\tstateUncompressedNone = iota\n\tstateUncompressedWrite\n)\n\nconst (\n\tstateTreeGroupNone = iota\n\tstateTreeGroupLoop\n)\n\nconst (\n\tstateContextMapNone = iota\n\tstateContextMapReadPrefix\n\tstateContextMapHuffman\n\tstateContextMapDecode\n\tstateContextMapTransform\n)\n\nconst (\n\tstateHuffmanNone = iota\n\tstateHuffmanSimpleSize\n\tstateHuffmanSimpleRead\n\tstateHuffmanSimpleBuild\n\tstateHuffmanComplex\n\tstateHuffmanLengthSymbols\n)\n\nconst (\n\tstateDecodeUint8None = iota\n\tstateDecodeUint8Short\n\tstateDecodeUint8Long\n)\n\nconst (\n\tstateReadBlockLengthNone = iota\n\tstateReadBlockLengthSuffix\n)\n\ntype Reader struct {\n\tsrc io.Reader\n\tbuf []byte // scratch space for reading from src\n\tin  []byte // current chunk to decode; usually aliases buf\n\n\tstate        int\n\tloop_counter int\n\tbr           bitReader\n\tbuffer       struct {\n\t\tu64 uint64\n\t\tu8  [8]byte\n\t}\n\tbuffer_length               uint32\n\tpos                         int\n\tmax_backward_distance       int\n\tmax_distance                int\n\tringbuffer_size             int\n\tringbuffer_mask             int\n\tdist_rb_idx                 int\n\tdist_rb                     [4]int\n\terror_code                  int\n\tsub_loop_counter            uint32\n\tringbuffer                  []byte\n\tringbuffer_end              []byte\n\thtree_command               []huffmanCode\n\tcontext_lookup              []byte\n\tcontext_map_slice           []byte\n\tdist_context_map_slice      []byte\n\tliteral_hgroup              huffmanTreeGroup\n\tinsert_copy_hgroup          huffmanTreeGroup\n\tdistance_hgroup             huffmanTreeGroup\n\tblock_type_trees            []huffmanCode\n\tblock_len_trees             []huffmanCode\n\ttrivial_literal_context     int\n\tdistance_context            int\n\tmeta_block_remaining_len    int\n\tblock_length_index          uint32\n\tblock_length                [3]uint32\n\tnum_block_types             [3]uint32\n\tblock_type_rb               [6]uint32\n\tdistance_postfix_bits       uint32\n\tnum_direct_distance_codes   uint32\n\tdistance_postfix_mask       int\n\tnum_dist_htrees             uint32\n\tdist_context_map            []byte\n\tliteral_htree               []huffmanCode\n\tdist_htree_index            byte\n\trepeat_code_len             uint32\n\tprev_code_len               uint32\n\tcopy_length                 int\n\tdistance_code               int\n\trb_roundtrips               uint\n\tpartial_pos_out             uint\n\tsymbol                      uint32\n\trepeat                      uint32\n\tspace                       uint32\n\ttable                       [32]huffmanCode\n\tsymbol_lists                symbolList\n\tsymbols_lists_array         [huffmanMaxCodeLength + 1 + numCommandSymbols]uint16\n\tnext_symbol                 [32]int\n\tcode_length_code_lengths    [codeLengthCodes]byte\n\tcode_length_histo           [16]uint16\n\thtree_index                 int\n\tnext                        []huffmanCode\n\tcontext_index               uint32\n\tmax_run_length_prefix       uint32\n\tcode                        uint32\n\tcontext_map_table           [huffmanMaxSize272]huffmanCode\n\tsubstate_metablock_header   int\n\tsubstate_tree_group         int\n\tsubstate_context_map        int\n\tsubstate_uncompressed       int\n\tsubstate_huffman            int\n\tsubstate_decode_uint8       int\n\tsubstate_read_block_length  int\n\tis_last_metablock           uint\n\tis_uncompressed             uint\n\tis_metadata                 uint\n\tshould_wrap_ringbuffer      uint\n\tcanny_ringbuffer_allocation uint\n\tlarge_window                bool\n\tsize_nibbles                uint\n\twindow_bits                 uint32\n\tnew_ringbuffer_size         int\n\tnum_literal_htrees          uint32\n\tcontext_map                 []byte\n\tcontext_modes               []byte\n\tdictionary                  *dictionary\n\ttransforms                  *transforms\n\ttrivial_literal_contexts    [8]uint32\n}\n\nfunc decoderStateInit(s *Reader) bool {\n\ts.error_code = 0 /* BROTLI_DECODER_NO_ERROR */\n\n\tinitBitReader(&s.br)\n\ts.state = stateUninited\n\ts.large_window = false\n\ts.substate_metablock_header = stateMetablockHeaderNone\n\ts.substate_tree_group = stateTreeGroupNone\n\ts.substate_context_map = stateContextMapNone\n\ts.substate_uncompressed = stateUncompressedNone\n\ts.substate_huffman = stateHuffmanNone\n\ts.substate_decode_uint8 = stateDecodeUint8None\n\ts.substate_read_block_length = stateReadBlockLengthNone\n\n\ts.buffer_length = 0\n\ts.loop_counter = 0\n\ts.pos = 0\n\ts.rb_roundtrips = 0\n\ts.partial_pos_out = 0\n\n\ts.block_type_trees = nil\n\ts.block_len_trees = nil\n\ts.ringbuffer = nil\n\ts.ringbuffer_size = 0\n\ts.new_ringbuffer_size = 0\n\ts.ringbuffer_mask = 0\n\n\ts.context_map = nil\n\ts.context_modes = nil\n\ts.dist_context_map = nil\n\ts.context_map_slice = nil\n\ts.dist_context_map_slice = nil\n\n\ts.sub_loop_counter = 0\n\n\ts.literal_hgroup.codes = nil\n\ts.literal_hgroup.htrees = nil\n\ts.insert_copy_hgroup.codes = nil\n\ts.insert_copy_hgroup.htrees = nil\n\ts.distance_hgroup.codes = nil\n\ts.distance_hgroup.htrees = nil\n\n\ts.is_last_metablock = 0\n\ts.is_uncompressed = 0\n\ts.is_metadata = 0\n\ts.should_wrap_ringbuffer = 0\n\ts.canny_ringbuffer_allocation = 1\n\n\ts.window_bits = 0\n\ts.max_distance = 0\n\ts.dist_rb[0] = 16\n\ts.dist_rb[1] = 15\n\ts.dist_rb[2] = 11\n\ts.dist_rb[3] = 4\n\ts.dist_rb_idx = 0\n\ts.block_type_trees = nil\n\ts.block_len_trees = nil\n\n\ts.symbol_lists.storage = s.symbols_lists_array[:]\n\ts.symbol_lists.offset = huffmanMaxCodeLength + 1\n\n\ts.dictionary = getDictionary()\n\ts.transforms = getTransforms()\n\n\treturn true\n}\n\nfunc decoderStateMetablockBegin(s *Reader) {\n\ts.meta_block_remaining_len = 0\n\ts.block_length[0] = 1 << 24\n\ts.block_length[1] = 1 << 24\n\ts.block_length[2] = 1 << 24\n\ts.num_block_types[0] = 1\n\ts.num_block_types[1] = 1\n\ts.num_block_types[2] = 1\n\ts.block_type_rb[0] = 1\n\ts.block_type_rb[1] = 0\n\ts.block_type_rb[2] = 1\n\ts.block_type_rb[3] = 0\n\ts.block_type_rb[4] = 1\n\ts.block_type_rb[5] = 0\n\ts.context_map = nil\n\ts.context_modes = nil\n\ts.dist_context_map = nil\n\ts.context_map_slice = nil\n\ts.literal_htree = nil\n\ts.dist_context_map_slice = nil\n\ts.dist_htree_index = 0\n\ts.context_lookup = nil\n\ts.literal_hgroup.codes = nil\n\ts.literal_hgroup.htrees = nil\n\ts.insert_copy_hgroup.codes = nil\n\ts.insert_copy_hgroup.htrees = nil\n\ts.distance_hgroup.codes = nil\n\ts.distance_hgroup.htrees = nil\n}\n\nfunc decoderStateCleanupAfterMetablock(s *Reader) {\n\ts.context_modes = nil\n\ts.context_map = nil\n\ts.dist_context_map = nil\n\ts.literal_hgroup.htrees = nil\n\ts.insert_copy_hgroup.htrees = nil\n\ts.distance_hgroup.htrees = nil\n}\n\nfunc decoderHuffmanTreeGroupInit(s *Reader, group *huffmanTreeGroup, alphabet_size uint32, max_symbol uint32, ntrees uint32) bool {\n\tvar max_table_size uint = uint(kMaxHuffmanTableSize[(alphabet_size+31)>>5])\n\tgroup.alphabet_size = uint16(alphabet_size)\n\tgroup.max_symbol = uint16(max_symbol)\n\tgroup.num_htrees = uint16(ntrees)\n\tgroup.htrees = make([][]huffmanCode, ntrees)\n\tgroup.codes = make([]huffmanCode, (uint(ntrees) * max_table_size))\n\treturn !(group.codes == nil)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/static_dict.go",
    "content": "package brotli\n\nimport \"encoding/binary\"\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Class to model the static dictionary. */\n\nconst maxStaticDictionaryMatchLen = 37\n\nconst kInvalidMatch uint32 = 0xFFFFFFF\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\nfunc hash(data []byte) uint32 {\n\tvar h uint32 = binary.LittleEndian.Uint32(data) * kDictHashMul32\n\n\t/* The higher bits contain more mixture from the multiplication,\n\t   so we take our results from there. */\n\treturn h >> uint(32-kDictNumBits)\n}\n\nfunc addMatch(distance uint, len uint, len_code uint, matches []uint32) {\n\tvar match uint32 = uint32((distance << 5) + len_code)\n\tmatches[len] = brotli_min_uint32_t(matches[len], match)\n}\n\nfunc dictMatchLength(dict *dictionary, data []byte, id uint, len uint, maxlen uint) uint {\n\tvar offset uint = uint(dict.offsets_by_length[len]) + len*id\n\treturn findMatchLengthWithLimit(dict.data[offset:], data, brotli_min_size_t(uint(len), maxlen))\n}\n\nfunc isMatch(d *dictionary, w dictWord, data []byte, max_length uint) bool {\n\tif uint(w.len) > max_length {\n\t\treturn false\n\t} else {\n\t\tvar offset uint = uint(d.offsets_by_length[w.len]) + uint(w.len)*uint(w.idx)\n\t\tvar dict []byte = d.data[offset:]\n\t\tif w.transform == 0 {\n\t\t\t/* Match against base dictionary word. */\n\t\t\treturn findMatchLengthWithLimit(dict, data, uint(w.len)) == uint(w.len)\n\t\t} else if w.transform == 10 {\n\t\t\t/* Match against uppercase first transform.\n\t\t\t   Note that there are only ASCII uppercase words in the lookup table. */\n\t\t\treturn dict[0] >= 'a' && dict[0] <= 'z' && (dict[0]^32) == data[0] && findMatchLengthWithLimit(dict[1:], data[1:], uint(w.len)-1) == uint(w.len-1)\n\t\t} else {\n\t\t\t/* Match against uppercase all transform.\n\t\t\t   Note that there are only ASCII uppercase words in the lookup table. */\n\t\t\tvar i uint\n\t\t\tfor i = 0; i < uint(w.len); i++ {\n\t\t\t\tif dict[i] >= 'a' && dict[i] <= 'z' {\n\t\t\t\t\tif (dict[i] ^ 32) != data[i] {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif dict[i] != data[i] {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn true\n\t\t}\n\t}\n}\n\nfunc findAllStaticDictionaryMatches(dict *encoderDictionary, data []byte, min_length uint, max_length uint, matches []uint32) bool {\n\tvar has_found_match bool = false\n\t{\n\t\tvar offset uint = uint(dict.buckets[hash(data)])\n\t\tvar end bool = offset == 0\n\t\tfor !end {\n\t\t\tvar w dictWord\n\t\t\tw = dict.dict_words[offset]\n\t\t\toffset++\n\t\t\tvar l uint = uint(w.len) & 0x1F\n\t\t\tvar n uint = uint(1) << dict.words.size_bits_by_length[l]\n\t\t\tvar id uint = uint(w.idx)\n\t\t\tend = !(w.len&0x80 == 0)\n\t\t\tw.len = byte(l)\n\t\t\tif w.transform == 0 {\n\t\t\t\tvar matchlen uint = dictMatchLength(dict.words, data, id, l, max_length)\n\t\t\t\tvar s []byte\n\t\t\t\tvar minlen uint\n\t\t\t\tvar maxlen uint\n\t\t\t\tvar len uint\n\n\t\t\t\t/* Transform \"\" + BROTLI_TRANSFORM_IDENTITY + \"\" */\n\t\t\t\tif matchlen == l {\n\t\t\t\t\taddMatch(id, l, l, matches)\n\t\t\t\t\thas_found_match = true\n\t\t\t\t}\n\n\t\t\t\t/* Transforms \"\" + BROTLI_TRANSFORM_OMIT_LAST_1 + \"\" and\n\t\t\t\t   \"\" + BROTLI_TRANSFORM_OMIT_LAST_1 + \"ing \" */\n\t\t\t\tif matchlen >= l-1 {\n\t\t\t\t\taddMatch(id+12*n, l-1, l, matches)\n\t\t\t\t\tif l+2 < max_length && data[l-1] == 'i' && data[l] == 'n' && data[l+1] == 'g' && data[l+2] == ' ' {\n\t\t\t\t\t\taddMatch(id+49*n, l+3, l, matches)\n\t\t\t\t\t}\n\n\t\t\t\t\thas_found_match = true\n\t\t\t\t}\n\n\t\t\t\t/* Transform \"\" + BROTLI_TRANSFORM_OMIT_LAST_# + \"\" (# = 2 .. 9) */\n\t\t\t\tminlen = min_length\n\n\t\t\t\tif l > 9 {\n\t\t\t\t\tminlen = brotli_max_size_t(minlen, l-9)\n\t\t\t\t}\n\t\t\t\tmaxlen = brotli_min_size_t(matchlen, l-2)\n\t\t\t\tfor len = minlen; len <= maxlen; len++ {\n\t\t\t\t\tvar cut uint = l - len\n\t\t\t\t\tvar transform_id uint = (cut << 2) + uint((dict.cutoffTransforms>>(cut*6))&0x3F)\n\t\t\t\t\taddMatch(id+transform_id*n, uint(len), l, matches)\n\t\t\t\t\thas_found_match = true\n\t\t\t\t}\n\n\t\t\t\tif matchlen < l || l+6 >= max_length {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\ts = data[l:]\n\n\t\t\t\t/* Transforms \"\" + BROTLI_TRANSFORM_IDENTITY + <suffix> */\n\t\t\t\tif s[0] == ' ' {\n\t\t\t\t\taddMatch(id+n, l+1, l, matches)\n\t\t\t\t\tif s[1] == 'a' {\n\t\t\t\t\t\tif s[2] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+28*n, l+3, l, matches)\n\t\t\t\t\t\t} else if s[2] == 's' {\n\t\t\t\t\t\t\tif s[3] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+46*n, l+4, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if s[2] == 't' {\n\t\t\t\t\t\t\tif s[3] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+60*n, l+4, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if s[2] == 'n' {\n\t\t\t\t\t\t\tif s[3] == 'd' && s[4] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+10*n, l+5, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 'b' {\n\t\t\t\t\t\tif s[2] == 'y' && s[3] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+38*n, l+4, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 'i' {\n\t\t\t\t\t\tif s[2] == 'n' {\n\t\t\t\t\t\t\tif s[3] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+16*n, l+4, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if s[2] == 's' {\n\t\t\t\t\t\t\tif s[3] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+47*n, l+4, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 'f' {\n\t\t\t\t\t\tif s[2] == 'o' {\n\t\t\t\t\t\t\tif s[3] == 'r' && s[4] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+25*n, l+5, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if s[2] == 'r' {\n\t\t\t\t\t\t\tif s[3] == 'o' && s[4] == 'm' && s[5] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+37*n, l+6, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 'o' {\n\t\t\t\t\t\tif s[2] == 'f' {\n\t\t\t\t\t\t\tif s[3] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+8*n, l+4, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if s[2] == 'n' {\n\t\t\t\t\t\t\tif s[3] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+45*n, l+4, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 'n' {\n\t\t\t\t\t\tif s[2] == 'o' && s[3] == 't' && s[4] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+80*n, l+5, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 't' {\n\t\t\t\t\t\tif s[2] == 'h' {\n\t\t\t\t\t\t\tif s[3] == 'e' {\n\t\t\t\t\t\t\t\tif s[4] == ' ' {\n\t\t\t\t\t\t\t\t\taddMatch(id+5*n, l+5, l, matches)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if s[3] == 'a' {\n\t\t\t\t\t\t\t\tif s[4] == 't' && s[5] == ' ' {\n\t\t\t\t\t\t\t\t\taddMatch(id+29*n, l+6, l, matches)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if s[2] == 'o' {\n\t\t\t\t\t\t\tif s[3] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+17*n, l+4, l, matches)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 'w' {\n\t\t\t\t\t\tif s[2] == 'i' && s[3] == 't' && s[4] == 'h' && s[5] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+35*n, l+6, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == '\"' {\n\t\t\t\t\taddMatch(id+19*n, l+1, l, matches)\n\t\t\t\t\tif s[1] == '>' {\n\t\t\t\t\t\taddMatch(id+21*n, l+2, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == '.' {\n\t\t\t\t\taddMatch(id+20*n, l+1, l, matches)\n\t\t\t\t\tif s[1] == ' ' {\n\t\t\t\t\t\taddMatch(id+31*n, l+2, l, matches)\n\t\t\t\t\t\tif s[2] == 'T' && s[3] == 'h' {\n\t\t\t\t\t\t\tif s[4] == 'e' {\n\t\t\t\t\t\t\t\tif s[5] == ' ' {\n\t\t\t\t\t\t\t\t\taddMatch(id+43*n, l+6, l, matches)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if s[4] == 'i' {\n\t\t\t\t\t\t\t\tif s[5] == 's' && s[6] == ' ' {\n\t\t\t\t\t\t\t\t\taddMatch(id+75*n, l+7, l, matches)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == ',' {\n\t\t\t\t\taddMatch(id+76*n, l+1, l, matches)\n\t\t\t\t\tif s[1] == ' ' {\n\t\t\t\t\t\taddMatch(id+14*n, l+2, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == '\\n' {\n\t\t\t\t\taddMatch(id+22*n, l+1, l, matches)\n\t\t\t\t\tif s[1] == '\\t' {\n\t\t\t\t\t\taddMatch(id+50*n, l+2, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == ']' {\n\t\t\t\t\taddMatch(id+24*n, l+1, l, matches)\n\t\t\t\t} else if s[0] == '\\'' {\n\t\t\t\t\taddMatch(id+36*n, l+1, l, matches)\n\t\t\t\t} else if s[0] == ':' {\n\t\t\t\t\taddMatch(id+51*n, l+1, l, matches)\n\t\t\t\t} else if s[0] == '(' {\n\t\t\t\t\taddMatch(id+57*n, l+1, l, matches)\n\t\t\t\t} else if s[0] == '=' {\n\t\t\t\t\tif s[1] == '\"' {\n\t\t\t\t\t\taddMatch(id+70*n, l+2, l, matches)\n\t\t\t\t\t} else if s[1] == '\\'' {\n\t\t\t\t\t\taddMatch(id+86*n, l+2, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == 'a' {\n\t\t\t\t\tif s[1] == 'l' && s[2] == ' ' {\n\t\t\t\t\t\taddMatch(id+84*n, l+3, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == 'e' {\n\t\t\t\t\tif s[1] == 'd' {\n\t\t\t\t\t\tif s[2] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+53*n, l+3, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 'r' {\n\t\t\t\t\t\tif s[2] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+82*n, l+3, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 's' {\n\t\t\t\t\t\tif s[2] == 't' && s[3] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+95*n, l+4, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == 'f' {\n\t\t\t\t\tif s[1] == 'u' && s[2] == 'l' && s[3] == ' ' {\n\t\t\t\t\t\taddMatch(id+90*n, l+4, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == 'i' {\n\t\t\t\t\tif s[1] == 'v' {\n\t\t\t\t\t\tif s[2] == 'e' && s[3] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+92*n, l+4, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 'z' {\n\t\t\t\t\t\tif s[2] == 'e' && s[3] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+100*n, l+4, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == 'l' {\n\t\t\t\t\tif s[1] == 'e' {\n\t\t\t\t\t\tif s[2] == 's' && s[3] == 's' && s[4] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+93*n, l+5, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[1] == 'y' {\n\t\t\t\t\t\tif s[2] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+61*n, l+3, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == 'o' {\n\t\t\t\t\tif s[1] == 'u' && s[2] == 's' && s[3] == ' ' {\n\t\t\t\t\t\taddMatch(id+106*n, l+4, l, matches)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tvar is_all_caps bool = (w.transform != transformUppercaseFirst)\n\t\t\t\t/* Set is_all_caps=0 for BROTLI_TRANSFORM_UPPERCASE_FIRST and\n\t\t\t\t    is_all_caps=1 otherwise (BROTLI_TRANSFORM_UPPERCASE_ALL)\n\t\t\t\ttransform. */\n\n\t\t\t\tvar s []byte\n\t\t\t\tif !isMatch(dict.words, w, data, max_length) {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\t/* Transform \"\" + kUppercase{First,All} + \"\" */\n\t\t\t\tvar tmp int\n\t\t\t\tif is_all_caps {\n\t\t\t\t\ttmp = 44\n\t\t\t\t} else {\n\t\t\t\t\ttmp = 9\n\t\t\t\t}\n\t\t\t\taddMatch(id+uint(tmp)*n, l, l, matches)\n\n\t\t\t\thas_found_match = true\n\t\t\t\tif l+1 >= max_length {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\t/* Transforms \"\" + kUppercase{First,All} + <suffix> */\n\t\t\t\ts = data[l:]\n\n\t\t\t\tif s[0] == ' ' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\ttmp = 68\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 4\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+1, l, matches)\n\t\t\t\t} else if s[0] == '\"' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\ttmp = 87\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 66\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+1, l, matches)\n\t\t\t\t\tif s[1] == '>' {\n\t\t\t\t\t\tvar tmp int\n\t\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\t\ttmp = 97\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttmp = 69\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+uint(tmp)*n, l+2, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == '.' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\ttmp = 101\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 79\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+1, l, matches)\n\t\t\t\t\tif s[1] == ' ' {\n\t\t\t\t\t\tvar tmp int\n\t\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\t\ttmp = 114\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttmp = 88\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+uint(tmp)*n, l+2, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == ',' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\ttmp = 112\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 99\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+1, l, matches)\n\t\t\t\t\tif s[1] == ' ' {\n\t\t\t\t\t\tvar tmp int\n\t\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\t\ttmp = 107\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttmp = 58\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+uint(tmp)*n, l+2, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == '\\'' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\ttmp = 94\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 74\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+1, l, matches)\n\t\t\t\t} else if s[0] == '(' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\ttmp = 113\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 78\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+1, l, matches)\n\t\t\t\t} else if s[0] == '=' {\n\t\t\t\t\tif s[1] == '\"' {\n\t\t\t\t\t\tvar tmp int\n\t\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\t\ttmp = 105\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttmp = 104\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+uint(tmp)*n, l+2, l, matches)\n\t\t\t\t\t} else if s[1] == '\\'' {\n\t\t\t\t\t\tvar tmp int\n\t\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\t\ttmp = 116\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttmp = 108\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+uint(tmp)*n, l+2, l, matches)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/* Transforms with prefixes \" \" and \".\" */\n\tif max_length >= 5 && (data[0] == ' ' || data[0] == '.') {\n\t\tvar is_space bool = (data[0] == ' ')\n\t\tvar offset uint = uint(dict.buckets[hash(data[1:])])\n\t\tvar end bool = offset == 0\n\t\tfor !end {\n\t\t\tvar w dictWord\n\t\t\tw = dict.dict_words[offset]\n\t\t\toffset++\n\t\t\tvar l uint = uint(w.len) & 0x1F\n\t\t\tvar n uint = uint(1) << dict.words.size_bits_by_length[l]\n\t\t\tvar id uint = uint(w.idx)\n\t\t\tend = !(w.len&0x80 == 0)\n\t\t\tw.len = byte(l)\n\t\t\tif w.transform == 0 {\n\t\t\t\tvar s []byte\n\t\t\t\tif !isMatch(dict.words, w, data[1:], max_length-1) {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\t/* Transforms \" \" + BROTLI_TRANSFORM_IDENTITY + \"\" and\n\t\t\t\t   \".\" + BROTLI_TRANSFORM_IDENTITY + \"\" */\n\t\t\t\tvar tmp int\n\t\t\t\tif is_space {\n\t\t\t\t\ttmp = 6\n\t\t\t\t} else {\n\t\t\t\t\ttmp = 32\n\t\t\t\t}\n\t\t\t\taddMatch(id+uint(tmp)*n, l+1, l, matches)\n\n\t\t\t\thas_found_match = true\n\t\t\t\tif l+2 >= max_length {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\t/* Transforms \" \" + BROTLI_TRANSFORM_IDENTITY + <suffix> and\n\t\t\t\t   \".\" + BROTLI_TRANSFORM_IDENTITY + <suffix>\n\t\t\t\t*/\n\t\t\t\ts = data[l+1:]\n\n\t\t\t\tif s[0] == ' ' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_space {\n\t\t\t\t\t\ttmp = 2\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 77\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+2, l, matches)\n\t\t\t\t} else if s[0] == '(' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_space {\n\t\t\t\t\t\ttmp = 89\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 67\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+2, l, matches)\n\t\t\t\t} else if is_space {\n\t\t\t\t\tif s[0] == ',' {\n\t\t\t\t\t\taddMatch(id+103*n, l+2, l, matches)\n\t\t\t\t\t\tif s[1] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+33*n, l+3, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[0] == '.' {\n\t\t\t\t\t\taddMatch(id+71*n, l+2, l, matches)\n\t\t\t\t\t\tif s[1] == ' ' {\n\t\t\t\t\t\t\taddMatch(id+52*n, l+3, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if s[0] == '=' {\n\t\t\t\t\t\tif s[1] == '\"' {\n\t\t\t\t\t\t\taddMatch(id+81*n, l+3, l, matches)\n\t\t\t\t\t\t} else if s[1] == '\\'' {\n\t\t\t\t\t\t\taddMatch(id+98*n, l+3, l, matches)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if is_space {\n\t\t\t\tvar is_all_caps bool = (w.transform != transformUppercaseFirst)\n\t\t\t\t/* Set is_all_caps=0 for BROTLI_TRANSFORM_UPPERCASE_FIRST and\n\t\t\t\t    is_all_caps=1 otherwise (BROTLI_TRANSFORM_UPPERCASE_ALL)\n\t\t\t\ttransform. */\n\n\t\t\t\tvar s []byte\n\t\t\t\tif !isMatch(dict.words, w, data[1:], max_length-1) {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\t/* Transforms \" \" + kUppercase{First,All} + \"\" */\n\t\t\t\tvar tmp int\n\t\t\t\tif is_all_caps {\n\t\t\t\t\ttmp = 85\n\t\t\t\t} else {\n\t\t\t\t\ttmp = 30\n\t\t\t\t}\n\t\t\t\taddMatch(id+uint(tmp)*n, l+1, l, matches)\n\n\t\t\t\thas_found_match = true\n\t\t\t\tif l+2 >= max_length {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\t/* Transforms \" \" + kUppercase{First,All} + <suffix> */\n\t\t\t\ts = data[l+1:]\n\n\t\t\t\tif s[0] == ' ' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\ttmp = 83\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 15\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+2, l, matches)\n\t\t\t\t} else if s[0] == ',' {\n\t\t\t\t\tif !is_all_caps {\n\t\t\t\t\t\taddMatch(id+109*n, l+2, l, matches)\n\t\t\t\t\t}\n\n\t\t\t\t\tif s[1] == ' ' {\n\t\t\t\t\t\tvar tmp int\n\t\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\t\ttmp = 111\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttmp = 65\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+uint(tmp)*n, l+3, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == '.' {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\ttmp = 115\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 96\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+2, l, matches)\n\t\t\t\t\tif s[1] == ' ' {\n\t\t\t\t\t\tvar tmp int\n\t\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\t\ttmp = 117\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttmp = 91\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+uint(tmp)*n, l+3, l, matches)\n\t\t\t\t\t}\n\t\t\t\t} else if s[0] == '=' {\n\t\t\t\t\tif s[1] == '\"' {\n\t\t\t\t\t\tvar tmp int\n\t\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\t\ttmp = 110\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttmp = 118\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+uint(tmp)*n, l+3, l, matches)\n\t\t\t\t\t} else if s[1] == '\\'' {\n\t\t\t\t\t\tvar tmp int\n\t\t\t\t\t\tif is_all_caps {\n\t\t\t\t\t\t\ttmp = 119\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttmp = 120\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+uint(tmp)*n, l+3, l, matches)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif max_length >= 6 {\n\t\t/* Transforms with prefixes \"e \", \"s \", \", \" and \"\\xC2\\xA0\" */\n\t\tif (data[1] == ' ' && (data[0] == 'e' || data[0] == 's' || data[0] == ',')) || (data[0] == 0xC2 && data[1] == 0xA0) {\n\t\t\tvar offset uint = uint(dict.buckets[hash(data[2:])])\n\t\t\tvar end bool = offset == 0\n\t\t\tfor !end {\n\t\t\t\tvar w dictWord\n\t\t\t\tw = dict.dict_words[offset]\n\t\t\t\toffset++\n\t\t\t\tvar l uint = uint(w.len) & 0x1F\n\t\t\t\tvar n uint = uint(1) << dict.words.size_bits_by_length[l]\n\t\t\t\tvar id uint = uint(w.idx)\n\t\t\t\tend = !(w.len&0x80 == 0)\n\t\t\t\tw.len = byte(l)\n\t\t\t\tif w.transform == 0 && isMatch(dict.words, w, data[2:], max_length-2) {\n\t\t\t\t\tif data[0] == 0xC2 {\n\t\t\t\t\t\taddMatch(id+102*n, l+2, l, matches)\n\t\t\t\t\t\thas_found_match = true\n\t\t\t\t\t} else if l+2 < max_length && data[l+2] == ' ' {\n\t\t\t\t\t\tvar t uint = 13\n\t\t\t\t\t\tif data[0] == 'e' {\n\t\t\t\t\t\t\tt = 18\n\t\t\t\t\t\t} else if data[0] == 's' {\n\t\t\t\t\t\t\tt = 7\n\t\t\t\t\t\t}\n\t\t\t\t\t\taddMatch(id+t*n, l+3, l, matches)\n\t\t\t\t\t\thas_found_match = true\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif max_length >= 9 {\n\t\t/* Transforms with prefixes \" the \" and \".com/\" */\n\t\tif (data[0] == ' ' && data[1] == 't' && data[2] == 'h' && data[3] == 'e' && data[4] == ' ') || (data[0] == '.' && data[1] == 'c' && data[2] == 'o' && data[3] == 'm' && data[4] == '/') {\n\t\t\tvar offset uint = uint(dict.buckets[hash(data[5:])])\n\t\t\tvar end bool = offset == 0\n\t\t\tfor !end {\n\t\t\t\tvar w dictWord\n\t\t\t\tw = dict.dict_words[offset]\n\t\t\t\toffset++\n\t\t\t\tvar l uint = uint(w.len) & 0x1F\n\t\t\t\tvar n uint = uint(1) << dict.words.size_bits_by_length[l]\n\t\t\t\tvar id uint = uint(w.idx)\n\t\t\t\tend = !(w.len&0x80 == 0)\n\t\t\t\tw.len = byte(l)\n\t\t\t\tif w.transform == 0 && isMatch(dict.words, w, data[5:], max_length-5) {\n\t\t\t\t\tvar tmp int\n\t\t\t\t\tif data[0] == ' ' {\n\t\t\t\t\t\ttmp = 41\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmp = 72\n\t\t\t\t\t}\n\t\t\t\t\taddMatch(id+uint(tmp)*n, l+5, l, matches)\n\t\t\t\t\thas_found_match = true\n\t\t\t\t\tif l+5 < max_length {\n\t\t\t\t\t\tvar s []byte = data[l+5:]\n\t\t\t\t\t\tif data[0] == ' ' {\n\t\t\t\t\t\t\tif l+8 < max_length && s[0] == ' ' && s[1] == 'o' && s[2] == 'f' && s[3] == ' ' {\n\t\t\t\t\t\t\t\taddMatch(id+62*n, l+9, l, matches)\n\t\t\t\t\t\t\t\tif l+12 < max_length && s[4] == 't' && s[5] == 'h' && s[6] == 'e' && s[7] == ' ' {\n\t\t\t\t\t\t\t\t\taddMatch(id+73*n, l+13, l, matches)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn has_found_match\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/static_dict_lut.go",
    "content": "package brotli\n\n/* Copyright 2017 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Lookup table for static dictionary and transforms. */\n\ntype dictWord struct {\n\tlen       byte\n\ttransform byte\n\tidx       uint16\n}\n\nconst kDictNumBits int = 15\n\nconst kDictHashMul32 uint32 = 0x1E35A7BD\n\nvar kStaticDictionaryBuckets = [32768]uint16{\n\t1,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3,\n\t6,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20,\n\t0,\n\t0,\n\t0,\n\t21,\n\t0,\n\t22,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23,\n\t0,\n\t0,\n\t25,\n\t0,\n\t29,\n\t0,\n\t53,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t55,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t61,\n\t76,\n\t0,\n\t0,\n\t0,\n\t94,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t96,\n\t0,\n\t97,\n\t0,\n\t98,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t99,\n\t101,\n\t106,\n\t108,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t110,\n\t0,\n\t111,\n\t112,\n\t0,\n\t113,\n\t118,\n\t124,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t125,\n\t128,\n\t0,\n\t0,\n\t0,\n\t0,\n\t129,\n\t0,\n\t0,\n\t131,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t132,\n\t0,\n\t0,\n\t135,\n\t0,\n\t0,\n\t0,\n\t137,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t138,\n\t139,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t142,\n\t143,\n\t144,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t145,\n\t0,\n\t0,\n\t0,\n\t146,\n\t149,\n\t151,\n\t152,\n\t0,\n\t0,\n\t153,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t154,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t155,\n\t0,\n\t0,\n\t0,\n\t0,\n\t160,\n\t182,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t183,\n\t0,\n\t0,\n\t0,\n\t188,\n\t189,\n\t0,\n\t0,\n\t192,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t194,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t197,\n\t202,\n\t209,\n\t0,\n\t0,\n\t210,\n\t0,\n\t224,\n\t0,\n\t0,\n\t0,\n\t225,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t231,\n\t0,\n\t0,\n\t0,\n\t232,\n\t0,\n\t240,\n\t0,\n\t0,\n\t242,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t244,\n\t0,\n\t0,\n\t0,\n\t246,\n\t0,\n\t0,\n\t249,\n\t251,\n\t253,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t258,\n\t0,\n\t0,\n\t261,\n\t263,\n\t0,\n\t0,\n\t0,\n\t267,\n\t0,\n\t0,\n\t268,\n\t0,\n\t269,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t271,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t272,\n\t0,\n\t273,\n\t0,\n\t277,\n\t0,\n\t278,\n\t286,\n\t0,\n\t0,\n\t0,\n\t0,\n\t287,\n\t0,\n\t289,\n\t290,\n\t291,\n\t0,\n\t0,\n\t0,\n\t295,\n\t0,\n\t0,\n\t296,\n\t297,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t298,\n\t0,\n\t0,\n\t0,\n\t299,\n\t0,\n\t0,\n\t305,\n\t0,\n\t324,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t327,\n\t0,\n\t328,\n\t329,\n\t0,\n\t0,\n\t0,\n\t0,\n\t336,\n\t0,\n\t0,\n\t340,\n\t0,\n\t341,\n\t342,\n\t343,\n\t0,\n\t0,\n\t346,\n\t0,\n\t348,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t349,\n\t351,\n\t0,\n\t0,\n\t355,\n\t0,\n\t363,\n\t0,\n\t364,\n\t0,\n\t368,\n\t369,\n\t0,\n\t370,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t372,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t373,\n\t0,\n\t375,\n\t0,\n\t0,\n\t0,\n\t0,\n\t376,\n\t377,\n\t0,\n\t0,\n\t394,\n\t395,\n\t396,\n\t0,\n\t0,\n\t398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t400,\n\t0,\n\t0,\n\t408,\n\t0,\n\t0,\n\t0,\n\t0,\n\t420,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t421,\n\t0,\n\t0,\n\t422,\n\t423,\n\t0,\n\t0,\n\t429,\n\t435,\n\t436,\n\t442,\n\t0,\n\t0,\n\t443,\n\t0,\n\t444,\n\t445,\n\t453,\n\t456,\n\t0,\n\t457,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t458,\n\t0,\n\t0,\n\t0,\n\t459,\n\t0,\n\t0,\n\t0,\n\t460,\n\t0,\n\t462,\n\t463,\n\t465,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t466,\n\t469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t470,\n\t0,\n\t0,\n\t0,\n\t474,\n\t0,\n\t476,\n\t0,\n\t0,\n\t0,\n\t0,\n\t483,\n\t0,\n\t485,\n\t0,\n\t0,\n\t0,\n\t486,\n\t0,\n\t0,\n\t488,\n\t491,\n\t492,\n\t0,\n\t0,\n\t497,\n\t499,\n\t500,\n\t0,\n\t501,\n\t0,\n\t0,\n\t0,\n\t505,\n\t0,\n\t0,\n\t506,\n\t0,\n\t0,\n\t0,\n\t507,\n\t0,\n\t0,\n\t0,\n\t509,\n\t0,\n\t0,\n\t0,\n\t0,\n\t511,\n\t512,\n\t519,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t529,\n\t530,\n\t0,\n\t0,\n\t0,\n\t534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t553,\n\t0,\n\t0,\n\t0,\n\t0,\n\t557,\n\t560,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t561,\n\t0,\n\t564,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t565,\n\t566,\n\t0,\n\t575,\n\t0,\n\t619,\n\t0,\n\t620,\n\t0,\n\t0,\n\t623,\n\t624,\n\t0,\n\t0,\n\t0,\n\t625,\n\t0,\n\t0,\n\t626,\n\t627,\n\t0,\n\t0,\n\t628,\n\t0,\n\t0,\n\t0,\n\t0,\n\t630,\n\t0,\n\t631,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t641,\n\t0,\n\t0,\n\t0,\n\t0,\n\t643,\n\t656,\n\t668,\n\t0,\n\t0,\n\t0,\n\t673,\n\t0,\n\t0,\n\t0,\n\t674,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t682,\n\t0,\n\t687,\n\t0,\n\t690,\n\t0,\n\t693,\n\t699,\n\t700,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t704,\n\t705,\n\t0,\n\t0,\n\t0,\n\t0,\n\t707,\n\t710,\n\t0,\n\t711,\n\t0,\n\t0,\n\t0,\n\t0,\n\t726,\n\t0,\n\t0,\n\t729,\n\t0,\n\t0,\n\t0,\n\t730,\n\t731,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t752,\n\t0,\n\t0,\n\t0,\n\t762,\n\t0,\n\t763,\n\t0,\n\t0,\n\t767,\n\t0,\n\t0,\n\t0,\n\t770,\n\t774,\n\t0,\n\t0,\n\t775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t776,\n\t0,\n\t0,\n\t0,\n\t777,\n\t783,\n\t0,\n\t0,\n\t0,\n\t785,\n\t788,\n\t0,\n\t0,\n\t0,\n\t0,\n\t790,\n\t0,\n\t0,\n\t0,\n\t793,\n\t0,\n\t0,\n\t0,\n\t0,\n\t794,\n\t0,\n\t0,\n\t804,\n\t819,\n\t821,\n\t0,\n\t827,\n\t0,\n\t0,\n\t0,\n\t834,\n\t0,\n\t0,\n\t835,\n\t0,\n\t0,\n\t0,\n\t841,\n\t0,\n\t844,\n\t0,\n\t850,\n\t851,\n\t859,\n\t0,\n\t860,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t874,\n\t0,\n\t876,\n\t0,\n\t877,\n\t890,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t893,\n\t894,\n\t898,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t899,\n\t0,\n\t0,\n\t0,\n\t900,\n\t904,\n\t906,\n\t0,\n\t0,\n\t0,\n\t907,\n\t0,\n\t908,\n\t909,\n\t0,\n\t910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t911,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t916,\n\t0,\n\t0,\n\t0,\n\t922,\n\t925,\n\t0,\n\t930,\n\t0,\n\t934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t943,\n\t0,\n\t0,\n\t944,\n\t0,\n\t953,\n\t954,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t955,\n\t0,\n\t962,\n\t963,\n\t0,\n\t0,\n\t976,\n\t0,\n\t0,\n\t977,\n\t978,\n\t979,\n\t980,\n\t0,\n\t981,\n\t0,\n\t0,\n\t0,\n\t0,\n\t984,\n\t0,\n\t0,\n\t985,\n\t0,\n\t0,\n\t987,\n\t989,\n\t991,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t992,\n\t0,\n\t0,\n\t0,\n\t993,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t996,\n\t0,\n\t0,\n\t0,\n\t1000,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1002,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1005,\n\t1007,\n\t0,\n\t0,\n\t0,\n\t1009,\n\t0,\n\t0,\n\t0,\n\t1010,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1011,\n\t0,\n\t1012,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1014,\n\t1016,\n\t0,\n\t0,\n\t0,\n\t1020,\n\t0,\n\t1021,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1022,\n\t0,\n\t0,\n\t0,\n\t1024,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1025,\n\t0,\n\t0,\n\t1026,\n\t1027,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1031,\n\t0,\n\t1033,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1034,\n\t0,\n\t0,\n\t0,\n\t1037,\n\t1040,\n\t0,\n\t0,\n\t0,\n\t1042,\n\t1043,\n\t0,\n\t0,\n\t1053,\n\t0,\n\t1054,\n\t0,\n\t0,\n\t1057,\n\t0,\n\t0,\n\t0,\n\t1058,\n\t0,\n\t0,\n\t1060,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1061,\n\t0,\n\t0,\n\t1062,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1063,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1064,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1065,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1066,\n\t1067,\n\t0,\n\t0,\n\t0,\n\t1069,\n\t1070,\n\t1072,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1073,\n\t0,\n\t1075,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1080,\n\t1084,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1088,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1094,\n\t0,\n\t1095,\n\t0,\n\t1107,\n\t0,\n\t0,\n\t0,\n\t1112,\n\t1114,\n\t0,\n\t1119,\n\t0,\n\t1122,\n\t0,\n\t0,\n\t1126,\n\t0,\n\t1129,\n\t0,\n\t1130,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1132,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1144,\n\t0,\n\t0,\n\t1145,\n\t1146,\n\t0,\n\t1148,\n\t1149,\n\t0,\n\t0,\n\t1150,\n\t1151,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1152,\n\t0,\n\t1153,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1154,\n\t0,\n\t1163,\n\t0,\n\t0,\n\t0,\n\t1164,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1165,\n\t0,\n\t1167,\n\t0,\n\t1170,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1171,\n\t1172,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1173,\n\t1175,\n\t1177,\n\t0,\n\t1186,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1195,\n\t0,\n\t0,\n\t1221,\n\t0,\n\t0,\n\t1224,\n\t0,\n\t0,\n\t1227,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1228,\n\t1229,\n\t0,\n\t0,\n\t1230,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1231,\n\t0,\n\t0,\n\t0,\n\t1233,\n\t0,\n\t0,\n\t1243,\n\t1244,\n\t1246,\n\t1248,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1254,\n\t1255,\n\t1258,\n\t1259,\n\t0,\n\t0,\n\t0,\n\t1260,\n\t0,\n\t0,\n\t1261,\n\t0,\n\t0,\n\t0,\n\t1262,\n\t1264,\n\t0,\n\t0,\n\t1265,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1266,\n\t0,\n\t1267,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1273,\n\t1274,\n\t1276,\n\t1289,\n\t0,\n\t0,\n\t1291,\n\t1292,\n\t1293,\n\t0,\n\t0,\n\t1294,\n\t1295,\n\t1296,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1302,\n\t0,\n\t1304,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1311,\n\t1312,\n\t0,\n\t1314,\n\t0,\n\t1316,\n\t1320,\n\t1321,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1322,\n\t1323,\n\t1324,\n\t0,\n\t1335,\n\t0,\n\t1336,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1341,\n\t1342,\n\t0,\n\t1346,\n\t0,\n\t1357,\n\t0,\n\t0,\n\t0,\n\t1358,\n\t1360,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1361,\n\t0,\n\t0,\n\t0,\n\t1362,\n\t1365,\n\t0,\n\t1366,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1379,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1386,\n\t0,\n\t1388,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1395,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1403,\n\t0,\n\t1405,\n\t0,\n\t0,\n\t1407,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1408,\n\t1409,\n\t0,\n\t1410,\n\t0,\n\t0,\n\t0,\n\t1412,\n\t1413,\n\t1416,\n\t0,\n\t0,\n\t1429,\n\t1451,\n\t0,\n\t0,\n\t1454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1455,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1456,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1459,\n\t1460,\n\t1461,\n\t1475,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1477,\n\t0,\n\t1480,\n\t0,\n\t1481,\n\t0,\n\t0,\n\t1486,\n\t0,\n\t0,\n\t1495,\n\t0,\n\t0,\n\t0,\n\t1496,\n\t0,\n\t0,\n\t1498,\n\t1499,\n\t1501,\n\t1520,\n\t1521,\n\t0,\n\t0,\n\t0,\n\t1526,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1528,\n\t1529,\n\t0,\n\t1533,\n\t1536,\n\t0,\n\t0,\n\t0,\n\t1537,\n\t1538,\n\t1549,\n\t0,\n\t1550,\n\t1558,\n\t1559,\n\t1572,\n\t0,\n\t1573,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1575,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1579,\n\t0,\n\t1599,\n\t0,\n\t1603,\n\t0,\n\t1604,\n\t0,\n\t1605,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1608,\n\t1610,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1611,\n\t0,\n\t1615,\n\t0,\n\t1616,\n\t1618,\n\t0,\n\t1619,\n\t0,\n\t0,\n\t1622,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1634,\n\t0,\n\t0,\n\t0,\n\t1635,\n\t0,\n\t0,\n\t0,\n\t1641,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1643,\n\t0,\n\t0,\n\t0,\n\t1650,\n\t0,\n\t0,\n\t1652,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1653,\n\t0,\n\t0,\n\t0,\n\t1654,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1655,\n\t0,\n\t1662,\n\t0,\n\t0,\n\t1663,\n\t1664,\n\t0,\n\t0,\n\t1668,\n\t0,\n\t0,\n\t1669,\n\t1670,\n\t0,\n\t1672,\n\t1673,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1674,\n\t0,\n\t0,\n\t0,\n\t1675,\n\t1676,\n\t1680,\n\t0,\n\t1682,\n\t0,\n\t0,\n\t1687,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1704,\n\t0,\n\t0,\n\t1705,\n\t0,\n\t0,\n\t1721,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1734,\n\t1735,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1737,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1739,\n\t0,\n\t0,\n\t1740,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1741,\n\t1743,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1745,\n\t0,\n\t0,\n\t0,\n\t1749,\n\t0,\n\t0,\n\t0,\n\t1751,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1760,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1765,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1784,\n\t0,\n\t1785,\n\t1787,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1788,\n\t1789,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1790,\n\t1791,\n\t1793,\n\t0,\n\t1798,\n\t1799,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1801,\n\t0,\n\t1803,\n\t1805,\n\t0,\n\t0,\n\t0,\n\t1806,\n\t1811,\n\t0,\n\t1812,\n\t1814,\n\t0,\n\t1821,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1822,\n\t1833,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1848,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1857,\n\t0,\n\t0,\n\t0,\n\t1859,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1861,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1866,\n\t0,\n\t1921,\n\t1925,\n\t0,\n\t0,\n\t0,\n\t1929,\n\t1930,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1931,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1932,\n\t0,\n\t0,\n\t0,\n\t1934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1946,\n\t0,\n\t0,\n\t1948,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1950,\n\t0,\n\t1957,\n\t0,\n\t1958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1965,\n\t1967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1968,\n\t0,\n\t1969,\n\t0,\n\t1971,\n\t1972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1973,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1975,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1976,\n\t1979,\n\t0,\n\t1982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1984,\n\t1988,\n\t0,\n\t0,\n\t0,\n\t0,\n\t1990,\n\t2004,\n\t2008,\n\t0,\n\t0,\n\t0,\n\t2012,\n\t2013,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2015,\n\t0,\n\t2016,\n\t2017,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2021,\n\t0,\n\t0,\n\t2025,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2029,\n\t2036,\n\t2040,\n\t0,\n\t2042,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2043,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2045,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2046,\n\t2047,\n\t0,\n\t2048,\n\t2049,\n\t0,\n\t2059,\n\t0,\n\t0,\n\t2063,\n\t0,\n\t2064,\n\t2065,\n\t0,\n\t0,\n\t2066,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2069,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2070,\n\t0,\n\t2071,\n\t0,\n\t2072,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2080,\n\t2082,\n\t2083,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2085,\n\t0,\n\t2086,\n\t2088,\n\t2089,\n\t2105,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2107,\n\t0,\n\t0,\n\t2116,\n\t2117,\n\t0,\n\t2120,\n\t0,\n\t0,\n\t2122,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2123,\n\t0,\n\t0,\n\t2125,\n\t2127,\n\t2128,\n\t0,\n\t0,\n\t0,\n\t2130,\n\t0,\n\t0,\n\t0,\n\t2137,\n\t2139,\n\t2140,\n\t2141,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2144,\n\t2145,\n\t0,\n\t0,\n\t2146,\n\t2149,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2150,\n\t0,\n\t0,\n\t2151,\n\t2158,\n\t0,\n\t2159,\n\t0,\n\t2160,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2161,\n\t2162,\n\t0,\n\t0,\n\t2194,\n\t2202,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2205,\n\t2217,\n\t0,\n\t2220,\n\t0,\n\t2221,\n\t0,\n\t2222,\n\t2224,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2237,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2238,\n\t0,\n\t2239,\n\t2241,\n\t0,\n\t0,\n\t2242,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2243,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2252,\n\t0,\n\t0,\n\t2253,\n\t0,\n\t0,\n\t0,\n\t2257,\n\t2258,\n\t0,\n\t0,\n\t0,\n\t2260,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2262,\n\t0,\n\t2264,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2269,\n\t2270,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2271,\n\t0,\n\t2273,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2277,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2278,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2279,\n\t0,\n\t2280,\n\t0,\n\t2283,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2287,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2289,\n\t2290,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2291,\n\t0,\n\t2292,\n\t0,\n\t0,\n\t0,\n\t2293,\n\t2295,\n\t2296,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2298,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2303,\n\t0,\n\t2305,\n\t0,\n\t0,\n\t2306,\n\t0,\n\t2307,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2313,\n\t2314,\n\t2315,\n\t2316,\n\t0,\n\t0,\n\t2318,\n\t0,\n\t2319,\n\t0,\n\t2322,\n\t0,\n\t0,\n\t2323,\n\t0,\n\t2324,\n\t0,\n\t2326,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2335,\n\t0,\n\t2336,\n\t2338,\n\t2339,\n\t0,\n\t2340,\n\t0,\n\t0,\n\t0,\n\t2355,\n\t0,\n\t2375,\n\t0,\n\t2382,\n\t2386,\n\t0,\n\t2387,\n\t0,\n\t0,\n\t2394,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2395,\n\t0,\n\t2397,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2399,\n\t2402,\n\t2404,\n\t2408,\n\t2411,\n\t0,\n\t0,\n\t0,\n\t2413,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2415,\n\t0,\n\t0,\n\t2416,\n\t2417,\n\t2419,\n\t0,\n\t2420,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2425,\n\t0,\n\t0,\n\t0,\n\t2426,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2427,\n\t2428,\n\t0,\n\t2429,\n\t0,\n\t0,\n\t2430,\n\t2434,\n\t0,\n\t2436,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2441,\n\t2442,\n\t0,\n\t2445,\n\t0,\n\t0,\n\t2446,\n\t2457,\n\t0,\n\t2459,\n\t0,\n\t0,\n\t2462,\n\t0,\n\t2464,\n\t0,\n\t2477,\n\t0,\n\t2478,\n\t2486,\n\t0,\n\t0,\n\t0,\n\t2491,\n\t0,\n\t0,\n\t2493,\n\t0,\n\t0,\n\t2494,\n\t0,\n\t2495,\n\t0,\n\t2513,\n\t2523,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2524,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2528,\n\t2529,\n\t2530,\n\t0,\n\t0,\n\t2531,\n\t0,\n\t2533,\n\t0,\n\t0,\n\t2534,\n\t2535,\n\t0,\n\t2536,\n\t2537,\n\t0,\n\t2538,\n\t0,\n\t2539,\n\t2540,\n\t0,\n\t0,\n\t0,\n\t2545,\n\t2546,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2548,\n\t0,\n\t0,\n\t2549,\n\t0,\n\t2550,\n\t2555,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2557,\n\t0,\n\t2560,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2561,\n\t0,\n\t2576,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2577,\n\t2578,\n\t0,\n\t0,\n\t0,\n\t2579,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2581,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2583,\n\t0,\n\t2584,\n\t0,\n\t2588,\n\t2590,\n\t0,\n\t0,\n\t0,\n\t2591,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2593,\n\t2594,\n\t0,\n\t2595,\n\t0,\n\t2601,\n\t2602,\n\t0,\n\t0,\n\t2603,\n\t0,\n\t2605,\n\t0,\n\t0,\n\t0,\n\t2606,\n\t2607,\n\t2611,\n\t0,\n\t2615,\n\t0,\n\t0,\n\t0,\n\t2617,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2619,\n\t0,\n\t0,\n\t2620,\n\t0,\n\t0,\n\t0,\n\t2621,\n\t0,\n\t2623,\n\t0,\n\t2625,\n\t0,\n\t0,\n\t2628,\n\t2629,\n\t0,\n\t0,\n\t2635,\n\t2636,\n\t2637,\n\t0,\n\t0,\n\t2639,\n\t0,\n\t0,\n\t0,\n\t2642,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2643,\n\t0,\n\t2644,\n\t0,\n\t2649,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2655,\n\t2656,\n\t0,\n\t0,\n\t2657,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2658,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2659,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2664,\n\t2685,\n\t0,\n\t2687,\n\t0,\n\t2688,\n\t0,\n\t0,\n\t2689,\n\t0,\n\t0,\n\t2694,\n\t0,\n\t2695,\n\t0,\n\t0,\n\t2698,\n\t0,\n\t2701,\n\t2706,\n\t0,\n\t0,\n\t0,\n\t2707,\n\t0,\n\t2709,\n\t2710,\n\t2711,\n\t0,\n\t0,\n\t0,\n\t2720,\n\t2730,\n\t2735,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2738,\n\t2740,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2747,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2748,\n\t0,\n\t0,\n\t2749,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2750,\n\t0,\n\t0,\n\t2752,\n\t2754,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2758,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2762,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2763,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2764,\n\t2767,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2768,\n\t0,\n\t0,\n\t2770,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2771,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2772,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2773,\n\t2776,\n\t0,\n\t0,\n\t2783,\n\t0,\n\t0,\n\t2784,\n\t0,\n\t2789,\n\t0,\n\t2790,\n\t0,\n\t0,\n\t0,\n\t2792,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2793,\n\t2795,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2797,\n\t2799,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2803,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2806,\n\t0,\n\t2807,\n\t2808,\n\t2817,\n\t2819,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2821,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2822,\n\t2823,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2824,\n\t0,\n\t0,\n\t2828,\n\t0,\n\t2834,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2836,\n\t0,\n\t2838,\n\t0,\n\t0,\n\t2839,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2841,\n\t0,\n\t0,\n\t0,\n\t2842,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2843,\n\t2844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2846,\n\t0,\n\t0,\n\t2847,\n\t0,\n\t2849,\n\t0,\n\t2853,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2857,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2858,\n\t0,\n\t2859,\n\t0,\n\t0,\n\t2860,\n\t0,\n\t2862,\n\t2868,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2875,\n\t0,\n\t2876,\n\t0,\n\t0,\n\t2877,\n\t2878,\n\t2884,\n\t2889,\n\t2890,\n\t0,\n\t0,\n\t2891,\n\t0,\n\t0,\n\t2892,\n\t0,\n\t0,\n\t0,\n\t2906,\n\t2912,\n\t0,\n\t2913,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2916,\n\t0,\n\t2934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2935,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2939,\n\t0,\n\t2940,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2941,\n\t0,\n\t0,\n\t0,\n\t2946,\n\t0,\n\t2949,\n\t0,\n\t0,\n\t2950,\n\t2954,\n\t2955,\n\t0,\n\t0,\n\t0,\n\t2959,\n\t2961,\n\t0,\n\t0,\n\t2962,\n\t0,\n\t2963,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2964,\n\t2965,\n\t2966,\n\t2967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2969,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2970,\n\t2975,\n\t0,\n\t2982,\n\t2983,\n\t2984,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2989,\n\t0,\n\t0,\n\t2990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2991,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t2998,\n\t0,\n\t3000,\n\t3001,\n\t0,\n\t0,\n\t3002,\n\t0,\n\t0,\n\t0,\n\t3003,\n\t0,\n\t0,\n\t3012,\n\t0,\n\t0,\n\t3022,\n\t0,\n\t0,\n\t3024,\n\t0,\n\t0,\n\t3025,\n\t3027,\n\t0,\n\t0,\n\t0,\n\t3030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3034,\n\t3035,\n\t0,\n\t0,\n\t3036,\n\t0,\n\t3039,\n\t0,\n\t3049,\n\t0,\n\t0,\n\t3050,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3051,\n\t0,\n\t3053,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3057,\n\t0,\n\t3058,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3063,\n\t0,\n\t0,\n\t3073,\n\t3074,\n\t3078,\n\t3079,\n\t0,\n\t3080,\n\t3086,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3087,\n\t0,\n\t3092,\n\t0,\n\t3095,\n\t0,\n\t3099,\n\t0,\n\t0,\n\t0,\n\t3100,\n\t0,\n\t3101,\n\t3102,\n\t0,\n\t3122,\n\t0,\n\t0,\n\t0,\n\t3124,\n\t0,\n\t3125,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3132,\n\t3134,\n\t0,\n\t0,\n\t3136,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3147,\n\t0,\n\t0,\n\t3149,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3150,\n\t3151,\n\t3152,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3158,\n\t0,\n\t0,\n\t3160,\n\t0,\n\t0,\n\t3161,\n\t0,\n\t0,\n\t3162,\n\t0,\n\t3163,\n\t3166,\n\t3168,\n\t0,\n\t0,\n\t3169,\n\t3170,\n\t0,\n\t0,\n\t3171,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3182,\n\t0,\n\t3184,\n\t0,\n\t0,\n\t3188,\n\t0,\n\t0,\n\t3194,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3209,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3216,\n\t3217,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3219,\n\t0,\n\t0,\n\t3220,\n\t3222,\n\t0,\n\t3223,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3224,\n\t0,\n\t3225,\n\t3226,\n\t0,\n\t3228,\n\t3233,\n\t0,\n\t3239,\n\t3241,\n\t3242,\n\t0,\n\t0,\n\t3251,\n\t3252,\n\t3253,\n\t3255,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3260,\n\t0,\n\t0,\n\t3261,\n\t0,\n\t0,\n\t0,\n\t3267,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3271,\n\t0,\n\t0,\n\t0,\n\t3278,\n\t0,\n\t3282,\n\t0,\n\t0,\n\t0,\n\t3284,\n\t0,\n\t0,\n\t0,\n\t3285,\n\t3286,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3287,\n\t3292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3294,\n\t3296,\n\t0,\n\t0,\n\t3299,\n\t3300,\n\t3301,\n\t0,\n\t3302,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3304,\n\t3306,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3311,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3312,\n\t3314,\n\t3315,\n\t0,\n\t3318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3319,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3321,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3322,\n\t0,\n\t0,\n\t3324,\n\t3325,\n\t0,\n\t0,\n\t3326,\n\t0,\n\t0,\n\t3328,\n\t3329,\n\t3331,\n\t0,\n\t0,\n\t3335,\n\t0,\n\t0,\n\t3337,\n\t0,\n\t3338,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3343,\n\t3347,\n\t0,\n\t0,\n\t0,\n\t3348,\n\t0,\n\t0,\n\t3351,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3354,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3355,\n\t0,\n\t0,\n\t3365,\n\t3366,\n\t3367,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3368,\n\t3369,\n\t0,\n\t3370,\n\t0,\n\t0,\n\t3373,\n\t0,\n\t0,\n\t3376,\n\t0,\n\t0,\n\t3377,\n\t0,\n\t3379,\n\t3387,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3402,\n\t0,\n\t3403,\n\t3436,\n\t3437,\n\t3439,\n\t0,\n\t0,\n\t3441,\n\t0,\n\t0,\n\t0,\n\t3442,\n\t0,\n\t0,\n\t3449,\n\t0,\n\t0,\n\t0,\n\t3450,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3451,\n\t0,\n\t0,\n\t3452,\n\t0,\n\t3453,\n\t3456,\n\t0,\n\t3457,\n\t0,\n\t0,\n\t3458,\n\t0,\n\t3459,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3460,\n\t0,\n\t0,\n\t3469,\n\t3470,\n\t0,\n\t0,\n\t3475,\n\t0,\n\t0,\n\t0,\n\t3480,\n\t3487,\n\t3489,\n\t0,\n\t3490,\n\t0,\n\t0,\n\t3491,\n\t3499,\n\t0,\n\t3500,\n\t0,\n\t0,\n\t3501,\n\t0,\n\t0,\n\t0,\n\t3502,\n\t0,\n\t3514,\n\t0,\n\t0,\n\t0,\n\t3516,\n\t3517,\n\t0,\n\t0,\n\t0,\n\t3518,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3520,\n\t3521,\n\t3522,\n\t0,\n\t0,\n\t3526,\n\t3530,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3531,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3536,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3539,\n\t3541,\n\t0,\n\t0,\n\t3542,\n\t3544,\n\t0,\n\t3547,\n\t3548,\n\t0,\n\t0,\n\t3550,\n\t0,\n\t3553,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3554,\n\t0,\n\t3555,\n\t0,\n\t3558,\n\t0,\n\t3559,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3563,\n\t0,\n\t3581,\n\t0,\n\t0,\n\t0,\n\t3599,\n\t0,\n\t0,\n\t0,\n\t3600,\n\t0,\n\t3601,\n\t0,\n\t3602,\n\t3603,\n\t0,\n\t0,\n\t3606,\n\t3608,\n\t0,\n\t3610,\n\t3611,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3612,\n\t3616,\n\t3619,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3624,\n\t3628,\n\t0,\n\t3629,\n\t3634,\n\t3635,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3636,\n\t0,\n\t3637,\n\t0,\n\t0,\n\t3638,\n\t3651,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3652,\n\t3653,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3656,\n\t3657,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3658,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3659,\n\t0,\n\t3661,\n\t3663,\n\t3664,\n\t0,\n\t3665,\n\t0,\n\t3692,\n\t0,\n\t0,\n\t0,\n\t3694,\n\t3696,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3698,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3700,\n\t0,\n\t0,\n\t3701,\n\t0,\n\t0,\n\t0,\n\t3708,\n\t3709,\n\t0,\n\t0,\n\t0,\n\t3711,\n\t3712,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3723,\n\t0,\n\t3724,\n\t3725,\n\t0,\n\t0,\n\t3726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3728,\n\t3729,\n\t0,\n\t3734,\n\t3735,\n\t3737,\n\t0,\n\t0,\n\t0,\n\t3743,\n\t0,\n\t3745,\n\t0,\n\t0,\n\t3746,\n\t0,\n\t0,\n\t3747,\n\t3748,\n\t0,\n\t3757,\n\t0,\n\t3759,\n\t3766,\n\t3767,\n\t0,\n\t3768,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3769,\n\t0,\n\t0,\n\t3771,\n\t0,\n\t3774,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3776,\n\t0,\n\t3777,\n\t3786,\n\t0,\n\t3788,\n\t3789,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3791,\n\t0,\n\t3811,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3814,\n\t3815,\n\t3816,\n\t3820,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3821,\n\t0,\n\t0,\n\t3825,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3835,\n\t0,\n\t0,\n\t3848,\n\t3849,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3850,\n\t3851,\n\t3853,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3859,\n\t0,\n\t3860,\n\t3862,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3863,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3873,\n\t0,\n\t3874,\n\t0,\n\t3875,\n\t3886,\n\t0,\n\t3887,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3892,\n\t3913,\n\t0,\n\t3914,\n\t0,\n\t0,\n\t0,\n\t3925,\n\t3931,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3934,\n\t3941,\n\t3942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3943,\n\t0,\n\t0,\n\t0,\n\t3944,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3945,\n\t0,\n\t3947,\n\t0,\n\t0,\n\t0,\n\t3956,\n\t3957,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3958,\n\t0,\n\t3959,\n\t3965,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3966,\n\t0,\n\t0,\n\t0,\n\t3967,\n\t0,\n\t0,\n\t0,\n\t3968,\n\t3974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3975,\n\t3977,\n\t3978,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3980,\n\t0,\n\t3985,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t3986,\n\t4011,\n\t0,\n\t0,\n\t4017,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4018,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4019,\n\t0,\n\t4023,\n\t0,\n\t0,\n\t0,\n\t4027,\n\t4028,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4031,\n\t4034,\n\t0,\n\t0,\n\t4035,\n\t4037,\n\t4039,\n\t4040,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4059,\n\t0,\n\t4060,\n\t4061,\n\t0,\n\t4062,\n\t4063,\n\t4066,\n\t0,\n\t0,\n\t4072,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4088,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4091,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4094,\n\t4095,\n\t0,\n\t0,\n\t4096,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4098,\n\t4099,\n\t0,\n\t0,\n\t0,\n\t4101,\n\t0,\n\t4104,\n\t0,\n\t0,\n\t0,\n\t4105,\n\t4108,\n\t0,\n\t4113,\n\t0,\n\t0,\n\t4115,\n\t4116,\n\t0,\n\t4126,\n\t0,\n\t0,\n\t4127,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4128,\n\t4132,\n\t4133,\n\t0,\n\t4134,\n\t0,\n\t0,\n\t0,\n\t4137,\n\t0,\n\t0,\n\t4141,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4144,\n\t4146,\n\t4147,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4148,\n\t0,\n\t0,\n\t4311,\n\t0,\n\t0,\n\t0,\n\t4314,\n\t4329,\n\t0,\n\t4331,\n\t4332,\n\t0,\n\t4333,\n\t0,\n\t4334,\n\t0,\n\t0,\n\t0,\n\t4335,\n\t0,\n\t4336,\n\t0,\n\t0,\n\t0,\n\t4337,\n\t0,\n\t0,\n\t0,\n\t4342,\n\t4345,\n\t4346,\n\t4350,\n\t0,\n\t4351,\n\t4352,\n\t0,\n\t4354,\n\t4355,\n\t0,\n\t0,\n\t4364,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4369,\n\t0,\n\t0,\n\t0,\n\t4373,\n\t0,\n\t4374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4377,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4378,\n\t0,\n\t0,\n\t0,\n\t4380,\n\t0,\n\t0,\n\t0,\n\t4381,\n\t4382,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4384,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4385,\n\t0,\n\t0,\n\t0,\n\t4386,\n\t0,\n\t0,\n\t0,\n\t4391,\n\t4398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4407,\n\t4409,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4410,\n\t0,\n\t0,\n\t4411,\n\t0,\n\t4414,\n\t4415,\n\t4418,\n\t0,\n\t4427,\n\t4428,\n\t4430,\n\t0,\n\t4431,\n\t0,\n\t4448,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4449,\n\t0,\n\t0,\n\t0,\n\t4451,\n\t4452,\n\t0,\n\t4453,\n\t4454,\n\t0,\n\t4456,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4459,\n\t0,\n\t4463,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4466,\n\t0,\n\t4467,\n\t0,\n\t4469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4470,\n\t4471,\n\t0,\n\t4473,\n\t0,\n\t0,\n\t4475,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4477,\n\t4478,\n\t0,\n\t0,\n\t0,\n\t4479,\n\t4481,\n\t0,\n\t4482,\n\t0,\n\t4484,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4486,\n\t0,\n\t0,\n\t4488,\n\t0,\n\t0,\n\t4497,\n\t0,\n\t4508,\n\t0,\n\t0,\n\t4510,\n\t4511,\n\t0,\n\t4520,\n\t4523,\n\t0,\n\t4524,\n\t0,\n\t4525,\n\t0,\n\t4527,\n\t0,\n\t0,\n\t4528,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4530,\n\t0,\n\t4531,\n\t0,\n\t0,\n\t4532,\n\t0,\n\t0,\n\t0,\n\t4533,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4535,\n\t0,\n\t0,\n\t0,\n\t4536,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4541,\n\t4543,\n\t4544,\n\t4545,\n\t4547,\n\t0,\n\t4548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4550,\n\t4551,\n\t0,\n\t4553,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4562,\n\t0,\n\t0,\n\t4571,\n\t0,\n\t0,\n\t0,\n\t4574,\n\t0,\n\t0,\n\t0,\n\t4575,\n\t0,\n\t4576,\n\t0,\n\t4577,\n\t0,\n\t0,\n\t0,\n\t4581,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4582,\n\t0,\n\t0,\n\t4586,\n\t0,\n\t0,\n\t0,\n\t4588,\n\t0,\n\t0,\n\t4597,\n\t0,\n\t4598,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4616,\n\t4617,\n\t0,\n\t4618,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4619,\n\t0,\n\t4620,\n\t0,\n\t0,\n\t4621,\n\t0,\n\t4624,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4625,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4657,\n\t0,\n\t4659,\n\t0,\n\t4667,\n\t0,\n\t0,\n\t0,\n\t4668,\n\t4670,\n\t0,\n\t4672,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4673,\n\t4676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4687,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4697,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4699,\n\t0,\n\t4701,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4702,\n\t0,\n\t0,\n\t4706,\n\t0,\n\t0,\n\t4713,\n\t0,\n\t0,\n\t0,\n\t4714,\n\t4715,\n\t4716,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4717,\n\t0,\n\t0,\n\t4720,\n\t0,\n\t4721,\n\t4729,\n\t4735,\n\t0,\n\t0,\n\t0,\n\t4737,\n\t0,\n\t0,\n\t0,\n\t4739,\n\t0,\n\t0,\n\t0,\n\t4740,\n\t0,\n\t0,\n\t0,\n\t4741,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4742,\n\t0,\n\t4745,\n\t4746,\n\t4747,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4748,\n\t0,\n\t0,\n\t0,\n\t4749,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4751,\n\t4786,\n\t0,\n\t4787,\n\t0,\n\t4788,\n\t4796,\n\t0,\n\t0,\n\t4797,\n\t4798,\n\t0,\n\t4799,\n\t4806,\n\t4807,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4809,\n\t4810,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4811,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4812,\n\t0,\n\t4813,\n\t0,\n\t0,\n\t4815,\n\t0,\n\t4821,\n\t4822,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4823,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4824,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4826,\n\t0,\n\t0,\n\t0,\n\t4828,\n\t0,\n\t4829,\n\t0,\n\t0,\n\t0,\n\t4843,\n\t0,\n\t0,\n\t4847,\n\t0,\n\t4853,\n\t4855,\n\t4858,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4859,\n\t0,\n\t4864,\n\t0,\n\t0,\n\t4879,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4880,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4881,\n\t0,\n\t4882,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4883,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4884,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4886,\n\t4887,\n\t4888,\n\t4894,\n\t4896,\n\t0,\n\t4902,\n\t0,\n\t0,\n\t4905,\n\t0,\n\t0,\n\t4915,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4916,\n\t4917,\n\t4919,\n\t4921,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4926,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4927,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t4929,\n\t0,\n\t4930,\n\t4931,\n\t0,\n\t4938,\n\t0,\n\t4952,\n\t0,\n\t4953,\n\t4957,\n\t4960,\n\t4964,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5019,\n\t5020,\n\t5022,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5023,\n\t0,\n\t0,\n\t0,\n\t5024,\n\t0,\n\t0,\n\t0,\n\t5025,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5028,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5029,\n\t5030,\n\t5031,\n\t0,\n\t5033,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5034,\n\t5035,\n\t0,\n\t5036,\n\t0,\n\t0,\n\t5037,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5038,\n\t0,\n\t0,\n\t5039,\n\t0,\n\t0,\n\t0,\n\t5041,\n\t5042,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5044,\n\t5049,\n\t5054,\n\t0,\n\t5055,\n\t0,\n\t5057,\n\t0,\n\t0,\n\t0,\n\t5060,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5063,\n\t0,\n\t5064,\n\t5065,\n\t0,\n\t5067,\n\t0,\n\t0,\n\t0,\n\t5068,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5076,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5077,\n\t0,\n\t0,\n\t5078,\n\t5080,\n\t0,\n\t0,\n\t5083,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5085,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5098,\n\t5099,\n\t5101,\n\t5105,\n\t5107,\n\t0,\n\t5108,\n\t0,\n\t5109,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5117,\n\t5118,\n\t0,\n\t5121,\n\t0,\n\t5122,\n\t0,\n\t0,\n\t5130,\n\t0,\n\t0,\n\t0,\n\t5137,\n\t0,\n\t0,\n\t0,\n\t5148,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5151,\n\t5154,\n\t0,\n\t0,\n\t0,\n\t5155,\n\t0,\n\t0,\n\t5156,\n\t5159,\n\t5161,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5162,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5163,\n\t5164,\n\t0,\n\t5166,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5167,\n\t0,\n\t0,\n\t0,\n\t5172,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5178,\n\t5179,\n\t0,\n\t0,\n\t5190,\n\t0,\n\t0,\n\t5191,\n\t5192,\n\t5194,\n\t0,\n\t0,\n\t5198,\n\t5201,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5203,\n\t0,\n\t5206,\n\t5209,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5213,\n\t0,\n\t5214,\n\t5216,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5217,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5218,\n\t5219,\n\t0,\n\t5231,\n\t0,\n\t0,\n\t5244,\n\t5249,\n\t0,\n\t5254,\n\t0,\n\t5255,\n\t0,\n\t0,\n\t5257,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5258,\n\t0,\n\t5260,\n\t5270,\n\t0,\n\t5277,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5280,\n\t5281,\n\t5282,\n\t5283,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5284,\n\t0,\n\t5285,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5287,\n\t5288,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5289,\n\t5291,\n\t0,\n\t0,\n\t5294,\n\t0,\n\t0,\n\t5295,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5304,\n\t0,\n\t0,\n\t5306,\n\t5307,\n\t5308,\n\t0,\n\t5309,\n\t0,\n\t0,\n\t5310,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5311,\n\t5312,\n\t0,\n\t5313,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5316,\n\t0,\n\t0,\n\t0,\n\t5317,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5325,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5326,\n\t0,\n\t5327,\n\t5329,\n\t0,\n\t5332,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5338,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5340,\n\t0,\n\t0,\n\t5341,\n\t0,\n\t0,\n\t0,\n\t5342,\n\t0,\n\t5343,\n\t5344,\n\t0,\n\t0,\n\t5345,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5347,\n\t5348,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5349,\n\t0,\n\t5350,\n\t0,\n\t5354,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5358,\n\t0,\n\t0,\n\t5359,\n\t0,\n\t0,\n\t5361,\n\t0,\n\t0,\n\t5365,\n\t0,\n\t5367,\n\t0,\n\t5373,\n\t0,\n\t0,\n\t0,\n\t5379,\n\t0,\n\t0,\n\t0,\n\t5380,\n\t0,\n\t0,\n\t0,\n\t5382,\n\t0,\n\t5384,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5385,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5387,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5388,\n\t5390,\n\t5393,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5396,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5397,\n\t5402,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5403,\n\t0,\n\t0,\n\t0,\n\t5404,\n\t5405,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5406,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5410,\n\t0,\n\t0,\n\t5411,\n\t0,\n\t5415,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5416,\n\t5434,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5438,\n\t0,\n\t5440,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5441,\n\t5442,\n\t0,\n\t0,\n\t0,\n\t5443,\n\t5444,\n\t5447,\n\t0,\n\t0,\n\t5448,\n\t5449,\n\t5451,\n\t0,\n\t0,\n\t0,\n\t5456,\n\t5457,\n\t0,\n\t0,\n\t0,\n\t5459,\n\t0,\n\t0,\n\t0,\n\t5461,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5464,\n\t0,\n\t5466,\n\t0,\n\t0,\n\t5467,\n\t0,\n\t5470,\n\t0,\n\t0,\n\t5473,\n\t0,\n\t0,\n\t5474,\n\t0,\n\t0,\n\t5476,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5477,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5484,\n\t0,\n\t0,\n\t5485,\n\t5486,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5488,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5489,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5507,\n\t0,\n\t0,\n\t0,\n\t5510,\n\t0,\n\t5511,\n\t0,\n\t0,\n\t5512,\n\t0,\n\t0,\n\t0,\n\t5513,\n\t0,\n\t5515,\n\t0,\n\t0,\n\t5516,\n\t5517,\n\t0,\n\t5518,\n\t0,\n\t0,\n\t5522,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5534,\n\t5535,\n\t0,\n\t0,\n\t5536,\n\t0,\n\t5538,\n\t0,\n\t0,\n\t5543,\n\t0,\n\t5544,\n\t0,\n\t0,\n\t5545,\n\t0,\n\t5547,\n\t0,\n\t5557,\n\t0,\n\t0,\n\t5558,\n\t0,\n\t5560,\n\t5567,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5568,\n\t0,\n\t0,\n\t0,\n\t5571,\n\t5573,\n\t0,\n\t5574,\n\t0,\n\t5575,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5577,\n\t0,\n\t0,\n\t5598,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5600,\n\t5609,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5610,\n\t0,\n\t0,\n\t5612,\n\t0,\n\t5624,\n\t0,\n\t5625,\n\t0,\n\t0,\n\t0,\n\t5629,\n\t0,\n\t5641,\n\t0,\n\t5642,\n\t5643,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5651,\n\t0,\n\t0,\n\t0,\n\t5652,\n\t5653,\n\t0,\n\t5661,\n\t5662,\n\t5678,\n\t0,\n\t5679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5685,\n\t5686,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5690,\n\t5692,\n\t0,\n\t5703,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5706,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5707,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5708,\n\t0,\n\t0,\n\t5709,\n\t0,\n\t5710,\n\t0,\n\t0,\n\t0,\n\t5712,\n\t0,\n\t5733,\n\t0,\n\t5734,\n\t5735,\n\t0,\n\t0,\n\t5744,\n\t5751,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5752,\n\t0,\n\t5754,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5757,\n\t5758,\n\t0,\n\t5760,\n\t5761,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5763,\n\t5764,\n\t5765,\n\t0,\n\t5766,\n\t0,\n\t5767,\n\t5768,\n\t0,\n\t5770,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5776,\n\t5780,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5782,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5784,\n\t0,\n\t0,\n\t5788,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5797,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5799,\n\t0,\n\t0,\n\t5801,\n\t0,\n\t0,\n\t0,\n\t5811,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5816,\n\t0,\n\t0,\n\t5827,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5830,\n\t5831,\n\t0,\n\t0,\n\t5832,\n\t0,\n\t0,\n\t5833,\n\t0,\n\t5835,\n\t5844,\n\t5845,\n\t0,\n\t5846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5850,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5852,\n\t0,\n\t5855,\n\t5857,\n\t0,\n\t0,\n\t5859,\n\t0,\n\t5861,\n\t0,\n\t0,\n\t5863,\n\t0,\n\t5865,\n\t0,\n\t0,\n\t0,\n\t5873,\n\t5875,\n\t0,\n\t0,\n\t0,\n\t5877,\n\t0,\n\t5879,\n\t0,\n\t0,\n\t0,\n\t5888,\n\t0,\n\t0,\n\t5889,\n\t5891,\n\t0,\n\t5894,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5895,\n\t0,\n\t5897,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5907,\n\t0,\n\t5911,\n\t0,\n\t0,\n\t5912,\n\t0,\n\t5913,\n\t5922,\n\t5924,\n\t0,\n\t5927,\n\t5928,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5929,\n\t5930,\n\t0,\n\t5933,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5949,\n\t0,\n\t0,\n\t5951,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5953,\n\t0,\n\t0,\n\t5954,\n\t0,\n\t5959,\n\t5960,\n\t5961,\n\t0,\n\t5964,\n\t0,\n\t0,\n\t0,\n\t5976,\n\t5978,\n\t5987,\n\t5990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t5991,\n\t0,\n\t5992,\n\t0,\n\t0,\n\t0,\n\t5994,\n\t5995,\n\t0,\n\t0,\n\t5996,\n\t0,\n\t0,\n\t6001,\n\t6003,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6007,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6008,\n\t0,\n\t0,\n\t6009,\n\t0,\n\t6010,\n\t0,\n\t0,\n\t0,\n\t6011,\n\t6015,\n\t0,\n\t6017,\n\t0,\n\t6019,\n\t0,\n\t6023,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6025,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6026,\n\t0,\n\t6030,\n\t0,\n\t0,\n\t6032,\n\t0,\n\t0,\n\t0,\n\t6033,\n\t6038,\n\t6040,\n\t0,\n\t0,\n\t0,\n\t6041,\n\t6045,\n\t0,\n\t0,\n\t6046,\n\t0,\n\t0,\n\t6053,\n\t0,\n\t0,\n\t6054,\n\t0,\n\t6055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6057,\n\t0,\n\t6063,\n\t0,\n\t0,\n\t0,\n\t6064,\n\t0,\n\t6066,\n\t6071,\n\t6072,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6075,\n\t6076,\n\t0,\n\t0,\n\t6077,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6078,\n\t6079,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6080,\n\t0,\n\t6083,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6084,\n\t0,\n\t0,\n\t6088,\n\t0,\n\t6089,\n\t0,\n\t0,\n\t6093,\n\t6105,\n\t0,\n\t0,\n\t6107,\n\t0,\n\t6110,\n\t0,\n\t0,\n\t0,\n\t6111,\n\t6125,\n\t6126,\n\t0,\n\t0,\n\t0,\n\t6129,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6130,\n\t0,\n\t0,\n\t0,\n\t6131,\n\t6134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6144,\n\t0,\n\t0,\n\t6146,\n\t6151,\n\t6153,\n\t0,\n\t6156,\n\t0,\n\t6163,\n\t0,\n\t6180,\n\t6181,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6182,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6184,\n\t6195,\n\t0,\n\t0,\n\t6206,\n\t0,\n\t6208,\n\t0,\n\t0,\n\t6212,\n\t6213,\n\t6214,\n\t0,\n\t6215,\n\t0,\n\t0,\n\t0,\n\t6228,\n\t0,\n\t0,\n\t0,\n\t6234,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6235,\n\t6240,\n\t0,\n\t6242,\n\t6243,\n\t6244,\n\t0,\n\t6250,\n\t6255,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6257,\n\t0,\n\t0,\n\t0,\n\t6258,\n\t6278,\n\t0,\n\t6284,\n\t0,\n\t0,\n\t0,\n\t6285,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6286,\n\t0,\n\t0,\n\t0,\n\t6320,\n\t0,\n\t0,\n\t6322,\n\t6332,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6334,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6335,\n\t0,\n\t0,\n\t6337,\n\t0,\n\t6338,\n\t0,\n\t6339,\n\t6340,\n\t0,\n\t0,\n\t6356,\n\t6357,\n\t6369,\n\t0,\n\t0,\n\t0,\n\t6370,\n\t6371,\n\t6372,\n\t0,\n\t6373,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6376,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6382,\n\t6383,\n\t6384,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6386,\n\t0,\n\t6389,\n\t6397,\n\t6400,\n\t6411,\n\t0,\n\t6414,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6415,\n\t6416,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6417,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6418,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6420,\n\t0,\n\t6421,\n\t6423,\n\t6425,\n\t0,\n\t6429,\n\t6430,\n\t0,\n\t6433,\n\t6438,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6439,\n\t6440,\n\t0,\n\t0,\n\t6441,\n\t0,\n\t0,\n\t6444,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6447,\n\t6448,\n\t0,\n\t0,\n\t6450,\n\t0,\n\t0,\n\t0,\n\t6454,\n\t0,\n\t0,\n\t6455,\n\t0,\n\t6461,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6462,\n\t0,\n\t0,\n\t6463,\n\t0,\n\t6464,\n\t0,\n\t6465,\n\t6467,\n\t0,\n\t0,\n\t0,\n\t6468,\n\t0,\n\t6479,\n\t6480,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6481,\n\t0,\n\t0,\n\t6485,\n\t6487,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6493,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6494,\n\t6495,\n\t6496,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6498,\n\t0,\n\t0,\n\t0,\n\t6507,\n\t6508,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6511,\n\t6512,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6513,\n\t0,\n\t0,\n\t0,\n\t6514,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6516,\n\t0,\n\t0,\n\t6517,\n\t6518,\n\t0,\n\t0,\n\t0,\n\t6519,\n\t6520,\n\t6521,\n\t0,\n\t6523,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6524,\n\t6528,\n\t0,\n\t6530,\n\t0,\n\t0,\n\t6532,\n\t0,\n\t6578,\n\t0,\n\t0,\n\t0,\n\t6583,\n\t0,\n\t6584,\n\t0,\n\t0,\n\t0,\n\t6587,\n\t0,\n\t0,\n\t0,\n\t6590,\n\t0,\n\t6591,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6592,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6593,\n\t6594,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6599,\n\t6600,\n\t0,\n\t0,\n\t6601,\n\t6602,\n\t6604,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6608,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6610,\n\t6611,\n\t0,\n\t6615,\n\t0,\n\t6616,\n\t6618,\n\t6620,\n\t0,\n\t6637,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6639,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6641,\n\t0,\n\t6642,\n\t0,\n\t0,\n\t0,\n\t6647,\n\t0,\n\t6660,\n\t6663,\n\t0,\n\t6664,\n\t0,\n\t6666,\n\t6669,\n\t0,\n\t6675,\n\t6676,\n\t6677,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6678,\n\t0,\n\t0,\n\t0,\n\t6679,\n\t0,\n\t6680,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6693,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6704,\n\t6705,\n\t6706,\n\t0,\n\t0,\n\t6711,\n\t6713,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6716,\n\t0,\n\t0,\n\t0,\n\t6717,\n\t0,\n\t6719,\n\t6724,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6725,\n\t6726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6728,\n\t6729,\n\t6735,\n\t0,\n\t6737,\n\t6742,\n\t0,\n\t0,\n\t6743,\n\t6750,\n\t0,\n\t6751,\n\t0,\n\t0,\n\t6752,\n\t6753,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6754,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6756,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6763,\n\t0,\n\t0,\n\t6764,\n\t6765,\n\t0,\n\t0,\n\t0,\n\t6770,\n\t0,\n\t0,\n\t0,\n\t6776,\n\t6780,\n\t0,\n\t6781,\n\t0,\n\t0,\n\t0,\n\t6783,\n\t0,\n\t6784,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6785,\n\t0,\n\t0,\n\t0,\n\t6792,\n\t0,\n\t0,\n\t0,\n\t6793,\n\t0,\n\t0,\n\t6802,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6803,\n\t0,\n\t0,\n\t0,\n\t6804,\n\t0,\n\t0,\n\t0,\n\t6812,\n\t0,\n\t0,\n\t6823,\n\t0,\n\t6824,\n\t6839,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6852,\n\t0,\n\t0,\n\t6854,\n\t0,\n\t6856,\n\t6857,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6867,\n\t0,\n\t6868,\n\t6870,\n\t6872,\n\t0,\n\t0,\n\t0,\n\t6873,\n\t6874,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6875,\n\t0,\n\t0,\n\t6877,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6878,\n\t0,\n\t0,\n\t0,\n\t6879,\n\t0,\n\t6880,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6887,\n\t0,\n\t6888,\n\t6891,\n\t6893,\n\t0,\n\t6895,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6899,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6901,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6910,\n\t0,\n\t6911,\n\t0,\n\t0,\n\t6912,\n\t0,\n\t0,\n\t6913,\n\t6914,\n\t0,\n\t0,\n\t0,\n\t6915,\n\t0,\n\t0,\n\t0,\n\t6916,\n\t6919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6924,\n\t0,\n\t6925,\n\t0,\n\t0,\n\t0,\n\t6926,\n\t6927,\n\t6928,\n\t0,\n\t6929,\n\t0,\n\t6930,\n\t0,\n\t0,\n\t6931,\n\t6935,\n\t0,\n\t6936,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6939,\n\t6940,\n\t6941,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6942,\n\t6948,\n\t6949,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6952,\n\t6954,\n\t6963,\n\t6965,\n\t6966,\n\t0,\n\t0,\n\t6967,\n\t6968,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6969,\n\t0,\n\t0,\n\t6970,\n\t6979,\n\t0,\n\t0,\n\t6980,\n\t0,\n\t0,\n\t6983,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6984,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6988,\n\t6990,\n\t6992,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t6995,\n\t0,\n\t0,\n\t0,\n\t7012,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7019,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7021,\n\t0,\n\t0,\n\t7022,\n\t7023,\n\t7028,\n\t0,\n\t7030,\n\t7033,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7038,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7039,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7046,\n\t0,\n\t7047,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7048,\n\t7052,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7054,\n\t0,\n\t7060,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7061,\n\t0,\n\t7065,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7067,\n\t7069,\n\t0,\n\t7070,\n\t7071,\n\t7072,\n\t0,\n\t0,\n\t7078,\n\t0,\n\t7080,\n\t7081,\n\t0,\n\t7083,\n\t0,\n\t0,\n\t0,\n\t7084,\n\t7087,\n\t7088,\n\t0,\n\t0,\n\t7090,\n\t0,\n\t7093,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7107,\n\t0,\n\t0,\n\t7108,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7110,\n\t0,\n\t7114,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7115,\n\t0,\n\t7116,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7117,\n\t0,\n\t0,\n\t7118,\n\t0,\n\t0,\n\t7124,\n\t0,\n\t7125,\n\t0,\n\t0,\n\t7126,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7128,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7129,\n\t0,\n\t7130,\n\t0,\n\t7132,\n\t7133,\n\t0,\n\t0,\n\t7134,\n\t0,\n\t0,\n\t7139,\n\t0,\n\t7148,\n\t7150,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7152,\n\t0,\n\t0,\n\t0,\n\t7153,\n\t7156,\n\t7157,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7158,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7163,\n\t7165,\n\t7169,\n\t0,\n\t7171,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7172,\n\t0,\n\t7173,\n\t7181,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7182,\n\t7185,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7187,\n\t0,\n\t7201,\n\t7204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7206,\n\t7207,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7211,\n\t7216,\n\t0,\n\t7218,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7226,\n\t7228,\n\t7230,\n\t7232,\n\t7233,\n\t7235,\n\t7237,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7238,\n\t7241,\n\t0,\n\t7242,\n\t0,\n\t0,\n\t7247,\n\t0,\n\t0,\n\t0,\n\t7266,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7289,\n\t0,\n\t0,\n\t7290,\n\t7291,\n\t0,\n\t0,\n\t7292,\n\t0,\n\t7297,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7300,\n\t0,\n\t7301,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7302,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7305,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7307,\n\t0,\n\t7308,\n\t0,\n\t7310,\n\t0,\n\t7335,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7337,\n\t0,\n\t7343,\n\t7347,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7348,\n\t0,\n\t7349,\n\t7350,\n\t7352,\n\t7354,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7357,\n\t0,\n\t7358,\n\t7366,\n\t0,\n\t7367,\n\t7368,\n\t0,\n\t0,\n\t7373,\n\t0,\n\t0,\n\t0,\n\t7374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7376,\n\t0,\n\t0,\n\t0,\n\t7377,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7378,\n\t0,\n\t7379,\n\t7380,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7383,\n\t0,\n\t0,\n\t7386,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7398,\n\t0,\n\t0,\n\t0,\n\t7399,\n\t7400,\n\t0,\n\t7401,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7402,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7405,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7406,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7421,\n\t7427,\n\t7429,\n\t0,\n\t0,\n\t0,\n\t7435,\n\t0,\n\t0,\n\t7436,\n\t0,\n\t0,\n\t0,\n\t7437,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7438,\n\t7443,\n\t0,\n\t7446,\n\t0,\n\t7448,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7456,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7457,\n\t0,\n\t0,\n\t7461,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7462,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7463,\n\t7466,\n\t7472,\n\t0,\n\t7476,\n\t0,\n\t0,\n\t7490,\n\t0,\n\t7491,\n\t0,\n\t0,\n\t7493,\n\t0,\n\t0,\n\t0,\n\t7498,\n\t7499,\n\t0,\n\t0,\n\t7508,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7512,\n\t0,\n\t0,\n\t0,\n\t7513,\n\t7514,\n\t7516,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7518,\n\t0,\n\t0,\n\t7519,\n\t7521,\n\t7522,\n\t0,\n\t0,\n\t0,\n\t7526,\n\t0,\n\t0,\n\t7529,\n\t0,\n\t0,\n\t7531,\n\t0,\n\t7536,\n\t0,\n\t7538,\n\t0,\n\t7539,\n\t0,\n\t0,\n\t7541,\n\t7542,\n\t7546,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7547,\n\t0,\n\t7548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7550,\n\t0,\n\t0,\n\t7552,\n\t7553,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7554,\n\t7563,\n\t0,\n\t7573,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7574,\n\t7576,\n\t0,\n\t7578,\n\t7581,\n\t7583,\n\t0,\n\t0,\n\t0,\n\t7584,\n\t0,\n\t7587,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7589,\n\t0,\n\t0,\n\t0,\n\t7594,\n\t0,\n\t0,\n\t7595,\n\t0,\n\t0,\n\t7600,\n\t7602,\n\t7610,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7612,\n\t0,\n\t7613,\n\t7614,\n\t0,\n\t0,\n\t7615,\n\t0,\n\t0,\n\t7616,\n\t0,\n\t7620,\n\t0,\n\t7621,\n\t7622,\n\t0,\n\t7623,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7626,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7627,\n\t7629,\n\t7631,\n\t0,\n\t0,\n\t7633,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7639,\n\t0,\n\t7640,\n\t7642,\n\t0,\n\t0,\n\t7643,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7644,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7645,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7661,\n\t7662,\n\t7663,\n\t7665,\n\t0,\n\t7666,\n\t0,\n\t7667,\n\t0,\n\t7684,\n\t7688,\n\t7690,\n\t0,\n\t7691,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7692,\n\t0,\n\t0,\n\t7700,\n\t0,\n\t7707,\n\t0,\n\t7708,\n\t0,\n\t7709,\n\t0,\n\t7721,\n\t0,\n\t0,\n\t0,\n\t7722,\n\t0,\n\t7724,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7729,\n\t7731,\n\t0,\n\t7732,\n\t0,\n\t7733,\n\t7735,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7739,\n\t0,\n\t0,\n\t7741,\n\t7745,\n\t0,\n\t7748,\n\t0,\n\t0,\n\t0,\n\t7751,\n\t0,\n\t0,\n\t0,\n\t7752,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7753,\n\t0,\n\t0,\n\t7756,\n\t0,\n\t7757,\n\t0,\n\t7759,\n\t0,\n\t7760,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7761,\n\t7768,\n\t0,\n\t0,\n\t7769,\n\t0,\n\t0,\n\t7770,\n\t0,\n\t0,\n\t7771,\n\t0,\n\t0,\n\t7772,\n\t0,\n\t0,\n\t7773,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7778,\n\t7783,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7784,\n\t7785,\n\t0,\n\t7790,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7792,\n\t0,\n\t7798,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7799,\n\t0,\n\t7810,\n\t0,\n\t0,\n\t7813,\n\t0,\n\t7814,\n\t0,\n\t7816,\n\t0,\n\t7818,\n\t7824,\n\t7825,\n\t7826,\n\t0,\n\t7828,\n\t7830,\n\t0,\n\t0,\n\t0,\n\t7840,\n\t0,\n\t7842,\n\t0,\n\t7843,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7856,\n\t7857,\n\t7858,\n\t7862,\n\t0,\n\t7865,\n\t0,\n\t0,\n\t7866,\n\t0,\n\t0,\n\t7913,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7914,\n\t0,\n\t0,\n\t7915,\n\t7917,\n\t7918,\n\t7919,\n\t0,\n\t7920,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7921,\n\t7922,\n\t0,\n\t7924,\n\t0,\n\t0,\n\t7925,\n\t0,\n\t0,\n\t7927,\n\t0,\n\t7930,\n\t7935,\n\t0,\n\t0,\n\t7937,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7939,\n\t0,\n\t7940,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7941,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7945,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7949,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7950,\n\t0,\n\t7953,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7968,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7969,\n\t7972,\n\t7992,\n\t0,\n\t7993,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t7994,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8007,\n\t8008,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8010,\n\t0,\n\t0,\n\t0,\n\t8012,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8018,\n\t0,\n\t8028,\n\t8029,\n\t0,\n\t0,\n\t8030,\n\t0,\n\t0,\n\t8032,\n\t8033,\n\t0,\n\t0,\n\t8034,\n\t8036,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8037,\n\t0,\n\t0,\n\t0,\n\t8043,\n\t8052,\n\t8059,\n\t8060,\n\t0,\n\t0,\n\t8061,\n\t0,\n\t0,\n\t0,\n\t8062,\n\t0,\n\t8063,\n\t0,\n\t8064,\n\t0,\n\t8066,\n\t8068,\n\t0,\n\t0,\n\t0,\n\t8080,\n\t8081,\n\t0,\n\t8089,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8092,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8093,\n\t8110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8111,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8112,\n\t8115,\n\t0,\n\t8117,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8120,\n\t8121,\n\t8122,\n\t8128,\n\t8129,\n\t8130,\n\t8131,\n\t0,\n\t0,\n\t8139,\n\t0,\n\t0,\n\t8144,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8145,\n\t8146,\n\t8153,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8154,\n\t0,\n\t8157,\n\t8160,\n\t8162,\n\t0,\n\t8164,\n\t8165,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8166,\n\t8167,\n\t0,\n\t0,\n\t8179,\n\t0,\n\t0,\n\t0,\n\t8185,\n\t0,\n\t0,\n\t0,\n\t8186,\n\t0,\n\t0,\n\t8187,\n\t0,\n\t0,\n\t0,\n\t8188,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8210,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8213,\n\t0,\n\t8214,\n\t0,\n\t0,\n\t8215,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8218,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8219,\n\t0,\n\t8221,\n\t0,\n\t0,\n\t8222,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8225,\n\t0,\n\t0,\n\t0,\n\t8233,\n\t0,\n\t0,\n\t8242,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8247,\n\t0,\n\t8248,\n\t8252,\n\t0,\n\t8256,\n\t8257,\n\t0,\n\t0,\n\t8261,\n\t0,\n\t8264,\n\t8265,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8267,\n\t0,\n\t0,\n\t0,\n\t8269,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8270,\n\t0,\n\t0,\n\t0,\n\t8278,\n\t0,\n\t8279,\n\t8283,\n\t0,\n\t0,\n\t8285,\n\t8286,\n\t8289,\n\t8292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8293,\n\t8295,\n\t8299,\n\t8300,\n\t8301,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8304,\n\t8307,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8321,\n\t0,\n\t0,\n\t0,\n\t8322,\n\t8323,\n\t8325,\n\t8326,\n\t8327,\n\t0,\n\t0,\n\t8332,\n\t8338,\n\t0,\n\t0,\n\t8340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8350,\n\t0,\n\t0,\n\t8351,\n\t0,\n\t8354,\n\t8355,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8360,\n\t8372,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8377,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8380,\n\t0,\n\t0,\n\t0,\n\t8383,\n\t0,\n\t8384,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8386,\n\t8392,\n\t0,\n\t0,\n\t8394,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8396,\n\t8397,\n\t0,\n\t8398,\n\t0,\n\t8399,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8400,\n\t0,\n\t8401,\n\t8410,\n\t8411,\n\t0,\n\t8412,\n\t8413,\n\t8422,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8423,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8424,\n\t0,\n\t0,\n\t8425,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8441,\n\t8442,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8443,\n\t0,\n\t0,\n\t8444,\n\t0,\n\t8447,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8451,\n\t0,\n\t8458,\n\t0,\n\t8462,\n\t0,\n\t0,\n\t8468,\n\t0,\n\t8469,\n\t0,\n\t0,\n\t0,\n\t8470,\n\t0,\n\t8473,\n\t8479,\n\t8480,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8481,\n\t8483,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8484,\n\t0,\n\t0,\n\t8490,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8491,\n\t8493,\n\t8494,\n\t0,\n\t8528,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8530,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8534,\n\t8538,\n\t8540,\n\t0,\n\t0,\n\t8541,\n\t0,\n\t0,\n\t8545,\n\t0,\n\t8557,\n\t0,\n\t0,\n\t8569,\n\t8570,\n\t0,\n\t0,\n\t8571,\n\t8574,\n\t8575,\n\t8579,\n\t0,\n\t8583,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8591,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8606,\n\t0,\n\t8607,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8608,\n\t0,\n\t0,\n\t8609,\n\t0,\n\t0,\n\t0,\n\t8610,\n\t0,\n\t0,\n\t0,\n\t8611,\n\t0,\n\t0,\n\t8613,\n\t8617,\n\t8621,\n\t0,\n\t0,\n\t8622,\n\t0,\n\t8623,\n\t0,\n\t8624,\n\t8625,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8637,\n\t8638,\n\t8639,\n\t8650,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8652,\n\t8654,\n\t8655,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8656,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8657,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8658,\n\t0,\n\t0,\n\t8659,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8660,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8661,\n\t8663,\n\t8664,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8665,\n\t0,\n\t8669,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8671,\n\t8674,\n\t0,\n\t8684,\n\t0,\n\t8686,\n\t0,\n\t0,\n\t0,\n\t8689,\n\t0,\n\t0,\n\t0,\n\t8690,\n\t0,\n\t8706,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8710,\n\t0,\n\t8711,\n\t8713,\n\t8714,\n\t8724,\n\t8727,\n\t8728,\n\t8733,\n\t8736,\n\t0,\n\t8737,\n\t8739,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8742,\n\t8743,\n\t8745,\n\t8754,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8756,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8757,\n\t8760,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8762,\n\t8763,\n\t8764,\n\t0,\n\t8766,\n\t8769,\n\t8770,\n\t8773,\n\t0,\n\t8774,\n\t0,\n\t8779,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8780,\n\t0,\n\t0,\n\t8781,\n\t0,\n\t0,\n\t8783,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8784,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8785,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8786,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8788,\n\t8790,\n\t0,\n\t0,\n\t0,\n\t8803,\n\t0,\n\t8813,\n\t8814,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8815,\n\t8816,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8818,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8822,\n\t8828,\n\t8829,\n\t0,\n\t8831,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8833,\n\t0,\n\t0,\n\t0,\n\t8834,\n\t0,\n\t0,\n\t0,\n\t8835,\n\t0,\n\t8836,\n\t0,\n\t0,\n\t0,\n\t8837,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8838,\n\t8839,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8840,\n\t0,\n\t0,\n\t0,\n\t8841,\n\t0,\n\t8842,\n\t0,\n\t0,\n\t0,\n\t8846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8847,\n\t0,\n\t8848,\n\t0,\n\t0,\n\t8864,\n\t0,\n\t0,\n\t8866,\n\t0,\n\t0,\n\t8870,\n\t8872,\n\t0,\n\t0,\n\t8873,\n\t8874,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8875,\n\t0,\n\t8876,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8896,\n\t8900,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8901,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8904,\n\t0,\n\t8907,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8911,\n\t8912,\n\t8913,\n\t0,\n\t0,\n\t0,\n\t8914,\n\t0,\n\t8915,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8916,\n\t0,\n\t0,\n\t0,\n\t8929,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8930,\n\t0,\n\t8932,\n\t0,\n\t8943,\n\t0,\n\t0,\n\t0,\n\t8945,\n\t8947,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8949,\n\t0,\n\t8950,\n\t0,\n\t8954,\n\t8957,\n\t0,\n\t0,\n\t8970,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8971,\n\t0,\n\t8996,\n\t0,\n\t0,\n\t0,\n\t0,\n\t8997,\n\t9000,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9001,\n\t9002,\n\t0,\n\t9004,\n\t9009,\n\t9024,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9027,\n\t9082,\n\t0,\n\t0,\n\t9083,\n\t9089,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9090,\n\t0,\n\t0,\n\t0,\n\t9092,\n\t0,\n\t0,\n\t9093,\n\t0,\n\t9095,\n\t0,\n\t0,\n\t9096,\n\t9097,\n\t9101,\n\t9102,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9112,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9114,\n\t0,\n\t0,\n\t9120,\n\t0,\n\t9121,\n\t9122,\n\t0,\n\t0,\n\t0,\n\t9123,\n\t9124,\n\t0,\n\t0,\n\t9125,\n\t0,\n\t0,\n\t9126,\n\t0,\n\t9127,\n\t0,\n\t0,\n\t9129,\n\t9131,\n\t0,\n\t0,\n\t0,\n\t9132,\n\t0,\n\t0,\n\t9136,\n\t0,\n\t9144,\n\t0,\n\t0,\n\t9148,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9149,\n\t0,\n\t9152,\n\t9163,\n\t0,\n\t0,\n\t9165,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9166,\n\t0,\n\t9169,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9170,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9172,\n\t0,\n\t9174,\n\t9175,\n\t9176,\n\t0,\n\t9177,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9186,\n\t0,\n\t9187,\n\t0,\n\t0,\n\t0,\n\t9188,\n\t9189,\n\t0,\n\t0,\n\t9190,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9191,\n\t0,\n\t0,\n\t0,\n\t9193,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9197,\n\t9198,\n\t0,\n\t0,\n\t0,\n\t9208,\n\t9211,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9216,\n\t9217,\n\t0,\n\t9220,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9221,\n\t9222,\n\t9223,\n\t0,\n\t9224,\n\t9225,\n\t0,\n\t0,\n\t9227,\n\t0,\n\t9228,\n\t9229,\n\t0,\n\t0,\n\t9230,\n\t0,\n\t9232,\n\t0,\n\t9233,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9234,\n\t9235,\n\t0,\n\t0,\n\t9237,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9238,\n\t9240,\n\t0,\n\t0,\n\t9241,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9244,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9247,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9248,\n\t0,\n\t0,\n\t0,\n\t9249,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9250,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9251,\n\t0,\n\t0,\n\t9252,\n\t9255,\n\t0,\n\t0,\n\t0,\n\t9256,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9257,\n\t0,\n\t0,\n\t9258,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9259,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9262,\n\t9263,\n\t0,\n\t0,\n\t9265,\n\t9266,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9268,\n\t9271,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9273,\n\t0,\n\t0,\n\t0,\n\t9276,\n\t9277,\n\t9279,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9280,\n\t0,\n\t0,\n\t9293,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9297,\n\t9301,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9308,\n\t9309,\n\t9313,\n\t9321,\n\t9322,\n\t0,\n\t9326,\n\t9327,\n\t0,\n\t0,\n\t9477,\n\t0,\n\t9479,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9482,\n\t0,\n\t0,\n\t0,\n\t9483,\n\t0,\n\t9484,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9485,\n\t0,\n\t0,\n\t9486,\n\t0,\n\t0,\n\t0,\n\t9489,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9490,\n\t9491,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9493,\n\t0,\n\t9495,\n\t9496,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9500,\n\t0,\n\t9502,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9504,\n\t9507,\n\t0,\n\t9509,\n\t0,\n\t9511,\n\t0,\n\t0,\n\t9513,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9515,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9516,\n\t9517,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9532,\n\t0,\n\t0,\n\t9533,\n\t0,\n\t0,\n\t9538,\n\t0,\n\t9539,\n\t9540,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9541,\n\t0,\n\t0,\n\t0,\n\t9542,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9544,\n\t9545,\n\t0,\n\t9546,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9547,\n\t9548,\n\t0,\n\t0,\n\t0,\n\t9550,\n\t0,\n\t9557,\n\t0,\n\t9558,\n\t0,\n\t9561,\n\t0,\n\t9563,\n\t9570,\n\t0,\n\t9572,\n\t9574,\n\t9575,\n\t0,\n\t0,\n\t0,\n\t9577,\n\t9592,\n\t0,\n\t0,\n\t9596,\n\t0,\n\t0,\n\t0,\n\t9598,\n\t0,\n\t9600,\n\t0,\n\t9601,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9608,\n\t0,\n\t9638,\n\t9639,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9641,\n\t0,\n\t0,\n\t9643,\n\t9644,\n\t9645,\n\t9646,\n\t0,\n\t0,\n\t0,\n\t9648,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9650,\n\t9654,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9655,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9656,\n\t0,\n\t9657,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9658,\n\t0,\n\t0,\n\t9659,\n\t0,\n\t0,\n\t9664,\n\t0,\n\t0,\n\t9665,\n\t0,\n\t9667,\n\t9669,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9671,\n\t0,\n\t9673,\n\t9681,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9682,\n\t9683,\n\t9684,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9686,\n\t9698,\n\t0,\n\t0,\n\t9700,\n\t9701,\n\t9702,\n\t0,\n\t9703,\n\t9717,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9718,\n\t0,\n\t9726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9727,\n\t0,\n\t0,\n\t0,\n\t9728,\n\t0,\n\t9742,\n\t0,\n\t9744,\n\t0,\n\t0,\n\t0,\n\t9750,\n\t0,\n\t9754,\n\t9755,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9756,\n\t0,\n\t9757,\n\t9768,\n\t0,\n\t9769,\n\t0,\n\t0,\n\t0,\n\t9770,\n\t9771,\n\t0,\n\t9773,\n\t0,\n\t9774,\n\t0,\n\t9775,\n\t0,\n\t0,\n\t0,\n\t9776,\n\t9777,\n\t9784,\n\t0,\n\t0,\n\t0,\n\t9786,\n\t0,\n\t9789,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9793,\n\t9794,\n\t0,\n\t0,\n\t0,\n\t9808,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9811,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9812,\n\t0,\n\t9820,\n\t0,\n\t9823,\n\t0,\n\t9828,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9830,\n\t0,\n\t0,\n\t9833,\n\t9836,\n\t0,\n\t0,\n\t0,\n\t9840,\n\t0,\n\t0,\n\t0,\n\t9841,\n\t0,\n\t0,\n\t9842,\n\t0,\n\t9845,\n\t0,\n\t0,\n\t0,\n\t9847,\n\t9848,\n\t0,\n\t0,\n\t9855,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9856,\n\t9863,\n\t9865,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9866,\n\t9867,\n\t9868,\n\t9873,\n\t9875,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9880,\n\t0,\n\t9886,\n\t0,\n\t0,\n\t0,\n\t9887,\n\t0,\n\t0,\n\t9891,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9906,\n\t9907,\n\t9908,\n\t0,\n\t0,\n\t0,\n\t9909,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9913,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9914,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9922,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9923,\n\t9925,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9930,\n\t0,\n\t0,\n\t0,\n\t9931,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9932,\n\t0,\n\t9939,\n\t0,\n\t0,\n\t9940,\n\t9962,\n\t9966,\n\t0,\n\t9969,\n\t9970,\n\t0,\n\t0,\n\t9974,\n\t0,\n\t9979,\n\t9981,\n\t9982,\n\t0,\n\t0,\n\t0,\n\t9985,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9987,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t9988,\n\t9993,\n\t0,\n\t0,\n\t9994,\n\t0,\n\t0,\n\t0,\n\t9997,\n\t0,\n\t10004,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10007,\n\t10019,\n\t10020,\n\t10022,\n\t0,\n\t0,\n\t0,\n\t10031,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10032,\n\t0,\n\t0,\n\t10034,\n\t0,\n\t10036,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10038,\n\t0,\n\t10039,\n\t10040,\n\t10041,\n\t10042,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10043,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10045,\n\t10054,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10055,\n\t0,\n\t0,\n\t10057,\n\t10058,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10059,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10060,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10063,\n\t0,\n\t10066,\n\t0,\n\t0,\n\t0,\n\t10070,\n\t0,\n\t10072,\n\t0,\n\t0,\n\t10076,\n\t10077,\n\t0,\n\t0,\n\t10084,\n\t0,\n\t10087,\n\t10090,\n\t10091,\n\t0,\n\t0,\n\t0,\n\t10094,\n\t10097,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10098,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10103,\n\t0,\n\t10104,\n\t0,\n\t10108,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10120,\n\t0,\n\t0,\n\t0,\n\t10122,\n\t0,\n\t0,\n\t10125,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10127,\n\t10128,\n\t0,\n\t0,\n\t10134,\n\t0,\n\t10135,\n\t10136,\n\t0,\n\t10137,\n\t0,\n\t0,\n\t10147,\n\t0,\n\t10149,\n\t10150,\n\t0,\n\t0,\n\t10156,\n\t0,\n\t10158,\n\t10159,\n\t10160,\n\t10168,\n\t0,\n\t0,\n\t10171,\n\t0,\n\t10173,\n\t0,\n\t0,\n\t0,\n\t10176,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10177,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10178,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10194,\n\t0,\n\t10202,\n\t0,\n\t0,\n\t10203,\n\t10204,\n\t0,\n\t10205,\n\t10206,\n\t0,\n\t10207,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10209,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10213,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10217,\n\t0,\n\t10229,\n\t0,\n\t10230,\n\t10231,\n\t0,\n\t0,\n\t10232,\n\t0,\n\t0,\n\t10237,\n\t10238,\n\t10244,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10250,\n\t0,\n\t10252,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10255,\n\t0,\n\t0,\n\t10257,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10258,\n\t0,\n\t10259,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10260,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10284,\n\t10288,\n\t10289,\n\t0,\n\t0,\n\t0,\n\t10290,\n\t0,\n\t10296,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10297,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10298,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10299,\n\t10303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10306,\n\t0,\n\t0,\n\t0,\n\t10307,\n\t0,\n\t10308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10311,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10315,\n\t10317,\n\t0,\n\t0,\n\t0,\n\t10318,\n\t10319,\n\t0,\n\t10321,\n\t0,\n\t10326,\n\t0,\n\t10328,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10329,\n\t0,\n\t0,\n\t10331,\n\t0,\n\t10332,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10334,\n\t0,\n\t0,\n\t10335,\n\t10338,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10339,\n\t10349,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10351,\n\t0,\n\t10353,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10362,\n\t0,\n\t10368,\n\t0,\n\t10369,\n\t0,\n\t0,\n\t0,\n\t10372,\n\t10373,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10374,\n\t0,\n\t0,\n\t0,\n\t10375,\n\t0,\n\t10376,\n\t0,\n\t0,\n\t10386,\n\t10388,\n\t10390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10391,\n\t0,\n\t0,\n\t10392,\n\t10394,\n\t0,\n\t0,\n\t10396,\n\t0,\n\t10397,\n\t0,\n\t10403,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10404,\n\t0,\n\t10405,\n\t10410,\n\t0,\n\t0,\n\t10411,\n\t0,\n\t10412,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10421,\n\t10422,\n\t10423,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10425,\n\t0,\n\t0,\n\t10427,\n\t0,\n\t0,\n\t10430,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10432,\n\t0,\n\t10433,\n\t10434,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10436,\n\t10437,\n\t0,\n\t10438,\n\t0,\n\t10439,\n\t0,\n\t10444,\n\t10446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10448,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10449,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10451,\n\t0,\n\t10453,\n\t0,\n\t0,\n\t0,\n\t10454,\n\t10457,\n\t0,\n\t0,\n\t10459,\n\t0,\n\t10469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10472,\n\t10481,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10482,\n\t10483,\n\t0,\n\t10492,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10499,\n\t0,\n\t0,\n\t0,\n\t10502,\n\t0,\n\t0,\n\t10510,\n\t0,\n\t10521,\n\t10524,\n\t0,\n\t0,\n\t10525,\n\t10526,\n\t10528,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10530,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10533,\n\t0,\n\t10534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10535,\n\t10536,\n\t0,\n\t0,\n\t10544,\n\t0,\n\t10553,\n\t10556,\n\t0,\n\t10557,\n\t10559,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10562,\n\t10563,\n\t10564,\n\t0,\n\t10565,\n\t0,\n\t0,\n\t0,\n\t10566,\n\t0,\n\t10567,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10575,\n\t0,\n\t0,\n\t10576,\n\t0,\n\t10578,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10585,\n\t10586,\n\t10587,\n\t10589,\n\t0,\n\t10590,\n\t0,\n\t0,\n\t10594,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10598,\n\t0,\n\t0,\n\t10601,\n\t0,\n\t0,\n\t0,\n\t10602,\n\t0,\n\t10603,\n\t0,\n\t10604,\n\t0,\n\t10605,\n\t0,\n\t0,\n\t10607,\n\t0,\n\t10626,\n\t0,\n\t10627,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10629,\n\t10630,\n\t10631,\n\t0,\n\t0,\n\t0,\n\t10646,\n\t0,\n\t0,\n\t0,\n\t10647,\n\t0,\n\t10650,\n\t0,\n\t10651,\n\t0,\n\t0,\n\t0,\n\t10652,\n\t10653,\n\t10655,\n\t0,\n\t10658,\n\t0,\n\t0,\n\t10659,\n\t0,\n\t10667,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10669,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10670,\n\t0,\n\t0,\n\t0,\n\t10671,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10672,\n\t10673,\n\t0,\n\t10674,\n\t0,\n\t0,\n\t0,\n\t10676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10678,\n\t0,\n\t10682,\n\t0,\n\t0,\n\t10692,\n\t0,\n\t10697,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10698,\n\t0,\n\t0,\n\t0,\n\t10700,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10703,\n\t0,\n\t10704,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10705,\n\t0,\n\t10715,\n\t10718,\n\t10720,\n\t0,\n\t0,\n\t10722,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10723,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10727,\n\t10730,\n\t10743,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10744,\n\t0,\n\t0,\n\t10745,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10748,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10750,\n\t0,\n\t0,\n\t10752,\n\t10753,\n\t0,\n\t0,\n\t0,\n\t10756,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10758,\n\t0,\n\t0,\n\t0,\n\t10759,\n\t0,\n\t10769,\n\t0,\n\t0,\n\t10772,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10773,\n\t0,\n\t0,\n\t0,\n\t10777,\n\t0,\n\t0,\n\t10779,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10780,\n\t10784,\n\t0,\n\t0,\n\t0,\n\t10789,\n\t0,\n\t0,\n\t0,\n\t10791,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10795,\n\t0,\n\t0,\n\t10796,\n\t0,\n\t10808,\n\t0,\n\t10809,\n\t0,\n\t0,\n\t0,\n\t10810,\n\t0,\n\t0,\n\t0,\n\t10812,\n\t0,\n\t0,\n\t10814,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10815,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10816,\n\t10817,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10819,\n\t0,\n\t10820,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10821,\n\t10822,\n\t10823,\n\t0,\n\t10826,\n\t10849,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10850,\n\t0,\n\t0,\n\t10852,\n\t0,\n\t10853,\n\t0,\n\t0,\n\t10856,\n\t0,\n\t0,\n\t10857,\n\t10858,\n\t10859,\n\t10860,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10863,\n\t0,\n\t10866,\n\t10867,\n\t10872,\n\t10890,\n\t0,\n\t0,\n\t10891,\n\t10892,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10893,\n\t0,\n\t0,\n\t0,\n\t10896,\n\t10899,\n\t0,\n\t0,\n\t10900,\n\t10902,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10903,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10905,\n\t0,\n\t10906,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10908,\n\t10911,\n\t0,\n\t10912,\n\t0,\n\t0,\n\t10916,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10917,\n\t0,\n\t10918,\n\t0,\n\t0,\n\t0,\n\t10923,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10924,\n\t0,\n\t0,\n\t10928,\n\t10929,\n\t0,\n\t0,\n\t10930,\n\t0,\n\t0,\n\t0,\n\t10932,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10939,\n\t0,\n\t0,\n\t10945,\n\t0,\n\t0,\n\t0,\n\t10947,\n\t0,\n\t0,\n\t10948,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10958,\n\t0,\n\t10960,\n\t10962,\n\t0,\n\t0,\n\t10964,\n\t0,\n\t0,\n\t0,\n\t10966,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10967,\n\t0,\n\t0,\n\t0,\n\t10968,\n\t0,\n\t0,\n\t0,\n\t10973,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10975,\n\t0,\n\t0,\n\t0,\n\t10976,\n\t10978,\n\t0,\n\t0,\n\t10982,\n\t10984,\n\t10987,\n\t0,\n\t0,\n\t10988,\n\t0,\n\t10989,\n\t0,\n\t0,\n\t10991,\n\t0,\n\t0,\n\t0,\n\t0,\n\t10992,\n\t0,\n\t0,\n\t0,\n\t10993,\n\t0,\n\t10995,\n\t0,\n\t0,\n\t0,\n\t10996,\n\t10997,\n\t0,\n\t0,\n\t0,\n\t10998,\n\t0,\n\t10999,\n\t0,\n\t11001,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11010,\n\t11012,\n\t0,\n\t11013,\n\t11016,\n\t11017,\n\t0,\n\t0,\n\t11019,\n\t11020,\n\t11021,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11022,\n\t0,\n\t0,\n\t11023,\n\t11029,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11031,\n\t0,\n\t0,\n\t0,\n\t11034,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11056,\n\t11060,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11061,\n\t0,\n\t0,\n\t11064,\n\t11065,\n\t0,\n\t11066,\n\t0,\n\t11069,\n\t0,\n\t11085,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11086,\n\t0,\n\t0,\n\t0,\n\t11088,\n\t0,\n\t0,\n\t0,\n\t11094,\n\t0,\n\t0,\n\t0,\n\t11095,\n\t11096,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11097,\n\t11098,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11099,\n\t0,\n\t0,\n\t11102,\n\t11108,\n\t0,\n\t0,\n\t0,\n\t11109,\n\t0,\n\t11114,\n\t11119,\n\t0,\n\t11131,\n\t0,\n\t0,\n\t0,\n\t11142,\n\t0,\n\t0,\n\t11143,\n\t0,\n\t11146,\n\t0,\n\t11147,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11148,\n\t0,\n\t11149,\n\t11152,\n\t11153,\n\t11154,\n\t0,\n\t11156,\n\t0,\n\t11157,\n\t0,\n\t0,\n\t0,\n\t11158,\n\t0,\n\t0,\n\t11159,\n\t11160,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11163,\n\t0,\n\t0,\n\t11164,\n\t11166,\n\t0,\n\t0,\n\t0,\n\t11172,\n\t11174,\n\t0,\n\t0,\n\t0,\n\t11176,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11182,\n\t11183,\n\t0,\n\t0,\n\t0,\n\t11184,\n\t11187,\n\t0,\n\t0,\n\t11188,\n\t11189,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11194,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11200,\n\t11202,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11203,\n\t0,\n\t11204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11205,\n\t0,\n\t0,\n\t0,\n\t11206,\n\t0,\n\t11207,\n\t0,\n\t0,\n\t11209,\n\t0,\n\t11211,\n\t0,\n\t11214,\n\t0,\n\t0,\n\t11231,\n\t0,\n\t0,\n\t0,\n\t11293,\n\t11295,\n\t0,\n\t0,\n\t11296,\n\t11297,\n\t11302,\n\t0,\n\t0,\n\t0,\n\t11307,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11309,\n\t11310,\n\t0,\n\t11311,\n\t0,\n\t0,\n\t0,\n\t11313,\n\t0,\n\t11314,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11334,\n\t0,\n\t11338,\n\t0,\n\t0,\n\t0,\n\t11339,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11340,\n\t0,\n\t11341,\n\t11342,\n\t0,\n\t11344,\n\t0,\n\t11345,\n\t0,\n\t0,\n\t0,\n\t11348,\n\t11349,\n\t0,\n\t0,\n\t11350,\n\t0,\n\t0,\n\t0,\n\t11355,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11356,\n\t0,\n\t11357,\n\t11370,\n\t0,\n\t0,\n\t11371,\n\t0,\n\t11374,\n\t11376,\n\t0,\n\t0,\n\t0,\n\t11377,\n\t0,\n\t0,\n\t11378,\n\t11383,\n\t0,\n\t11386,\n\t11399,\n\t0,\n\t11400,\n\t11406,\n\t0,\n\t0,\n\t0,\n\t11408,\n\t0,\n\t0,\n\t11409,\n\t11412,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11417,\n\t0,\n\t0,\n\t0,\n\t11418,\n\t0,\n\t11421,\n\t0,\n\t11426,\n\t11429,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11430,\n\t0,\n\t11437,\n\t0,\n\t11438,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11440,\n\t11453,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11455,\n\t0,\n\t0,\n\t11456,\n\t11460,\n\t11461,\n\t11463,\n\t0,\n\t11469,\n\t0,\n\t11473,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11474,\n\t0,\n\t0,\n\t0,\n\t11475,\n\t0,\n\t11476,\n\t11477,\n\t11480,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11481,\n\t0,\n\t0,\n\t11484,\n\t0,\n\t0,\n\t11487,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11497,\n\t0,\n\t0,\n\t11502,\n\t0,\n\t11509,\n\t0,\n\t0,\n\t11510,\n\t11511,\n\t11513,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11515,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11516,\n\t0,\n\t11520,\n\t11521,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11529,\n\t11530,\n\t11531,\n\t11534,\n\t0,\n\t0,\n\t11543,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11547,\n\t0,\n\t11548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11552,\n\t11556,\n\t0,\n\t11557,\n\t0,\n\t0,\n\t11559,\n\t0,\n\t11560,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11561,\n\t0,\n\t0,\n\t11563,\n\t11564,\n\t0,\n\t11565,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11567,\n\t0,\n\t0,\n\t0,\n\t11569,\n\t0,\n\t11574,\n\t0,\n\t11575,\n\t0,\n\t0,\n\t0,\n\t11577,\n\t0,\n\t11578,\n\t0,\n\t0,\n\t0,\n\t11580,\n\t11581,\n\t0,\n\t0,\n\t0,\n\t11582,\n\t11584,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11587,\n\t0,\n\t11588,\n\t11591,\n\t0,\n\t11595,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11596,\n\t0,\n\t11597,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11598,\n\t11601,\n\t0,\n\t0,\n\t0,\n\t11602,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11603,\n\t11604,\n\t0,\n\t11606,\n\t0,\n\t0,\n\t11608,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11610,\n\t0,\n\t0,\n\t11611,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11613,\n\t0,\n\t11622,\n\t0,\n\t0,\n\t0,\n\t11623,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11625,\n\t0,\n\t0,\n\t11626,\n\t11627,\n\t11628,\n\t11630,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11639,\n\t0,\n\t0,\n\t11646,\n\t0,\n\t11648,\n\t11649,\n\t0,\n\t11650,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11651,\n\t0,\n\t0,\n\t11652,\n\t11653,\n\t11656,\n\t0,\n\t0,\n\t11677,\n\t11679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11680,\n\t0,\n\t0,\n\t11681,\n\t0,\n\t11685,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11688,\n\t0,\n\t0,\n\t0,\n\t11716,\n\t0,\n\t11719,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11721,\n\t0,\n\t0,\n\t11724,\n\t11743,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11745,\n\t11748,\n\t11750,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11751,\n\t0,\n\t0,\n\t0,\n\t11752,\n\t11754,\n\t0,\n\t11755,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11759,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11760,\n\t0,\n\t0,\n\t0,\n\t11761,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11766,\n\t11767,\n\t0,\n\t11772,\n\t11773,\n\t0,\n\t11774,\n\t0,\n\t0,\n\t11775,\n\t0,\n\t11777,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11778,\n\t11780,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11783,\n\t0,\n\t11784,\n\t0,\n\t0,\n\t0,\n\t11785,\n\t0,\n\t0,\n\t0,\n\t11786,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11788,\n\t0,\n\t0,\n\t11789,\n\t11791,\n\t11792,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11795,\n\t11834,\n\t11835,\n\t11836,\n\t0,\n\t0,\n\t11837,\n\t0,\n\t0,\n\t0,\n\t11838,\n\t0,\n\t0,\n\t11846,\n\t11851,\n\t0,\n\t11852,\n\t0,\n\t11869,\n\t0,\n\t0,\n\t0,\n\t11871,\n\t0,\n\t0,\n\t0,\n\t11872,\n\t11874,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11875,\n\t0,\n\t11876,\n\t11877,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11883,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11884,\n\t0,\n\t11885,\n\t0,\n\t11886,\n\t0,\n\t0,\n\t11887,\n\t0,\n\t11894,\n\t11895,\n\t11897,\n\t11909,\n\t11910,\n\t0,\n\t11912,\n\t11918,\n\t0,\n\t0,\n\t11920,\n\t0,\n\t11922,\n\t11924,\n\t11927,\n\t11928,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11929,\n\t0,\n\t11934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11941,\n\t11943,\n\t11944,\n\t0,\n\t11945,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11948,\n\t11949,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11953,\n\t0,\n\t11954,\n\t0,\n\t11955,\n\t0,\n\t11956,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11957,\n\t0,\n\t0,\n\t11959,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11961,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11978,\n\t0,\n\t0,\n\t0,\n\t11979,\n\t11980,\n\t11986,\n\t11987,\n\t0,\n\t11992,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t11993,\n\t0,\n\t0,\n\t0,\n\t11994,\n\t0,\n\t11999,\n\t12004,\n\t12005,\n\t12006,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12011,\n\t0,\n\t0,\n\t12012,\n\t12014,\n\t0,\n\t0,\n\t12015,\n\t0,\n\t0,\n\t12019,\n\t12028,\n\t0,\n\t0,\n\t12029,\n\t0,\n\t0,\n\t12032,\n\t12033,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12034,\n\t0,\n\t12041,\n\t12043,\n\t0,\n\t0,\n\t12044,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12046,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12054,\n\t12055,\n\t0,\n\t12056,\n\t0,\n\t0,\n\t0,\n\t12060,\n\t12064,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12065,\n\t12067,\n\t12068,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12074,\n\t0,\n\t0,\n\t0,\n\t12075,\n\t12076,\n\t0,\n\t0,\n\t0,\n\t12079,\n\t0,\n\t12081,\n\t12086,\n\t12087,\n\t0,\n\t0,\n\t12088,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12089,\n\t0,\n\t12092,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12097,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12098,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12102,\n\t12103,\n\t12104,\n\t12111,\n\t0,\n\t0,\n\t12114,\n\t12116,\n\t0,\n\t0,\n\t0,\n\t12118,\n\t0,\n\t0,\n\t0,\n\t12119,\n\t12120,\n\t12128,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12130,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12131,\n\t0,\n\t0,\n\t0,\n\t12132,\n\t12134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12137,\n\t0,\n\t12139,\n\t0,\n\t12141,\n\t0,\n\t0,\n\t12142,\n\t0,\n\t0,\n\t0,\n\t12144,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12145,\n\t0,\n\t12148,\n\t0,\n\t12153,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12154,\n\t12171,\n\t12173,\n\t0,\n\t0,\n\t0,\n\t12175,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12178,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12183,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12184,\n\t0,\n\t0,\n\t0,\n\t12186,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12187,\n\t12188,\n\t0,\n\t0,\n\t12189,\n\t0,\n\t12196,\n\t0,\n\t12197,\n\t0,\n\t0,\n\t12198,\n\t0,\n\t12201,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12203,\n\t0,\n\t12209,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12210,\n\t12211,\n\t12212,\n\t12213,\n\t0,\n\t12217,\n\t12218,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12222,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12223,\n\t0,\n\t0,\n\t12229,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12233,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12234,\n\t0,\n\t0,\n\t12236,\n\t12242,\n\t0,\n\t0,\n\t0,\n\t12243,\n\t0,\n\t0,\n\t0,\n\t12244,\n\t12253,\n\t0,\n\t12254,\n\t12256,\n\t0,\n\t12257,\n\t0,\n\t0,\n\t12275,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12277,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12278,\n\t0,\n\t12289,\n\t0,\n\t0,\n\t12290,\n\t0,\n\t12292,\n\t12293,\n\t0,\n\t0,\n\t12294,\n\t0,\n\t12295,\n\t0,\n\t0,\n\t12296,\n\t0,\n\t12297,\n\t0,\n\t12298,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12301,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12309,\n\t0,\n\t12338,\n\t12340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12341,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12342,\n\t12343,\n\t0,\n\t12344,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12345,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12346,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12348,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12350,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12351,\n\t0,\n\t12355,\n\t12356,\n\t12357,\n\t0,\n\t0,\n\t12367,\n\t12370,\n\t12371,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12372,\n\t12376,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12379,\n\t0,\n\t12382,\n\t0,\n\t12383,\n\t0,\n\t0,\n\t12384,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12393,\n\t0,\n\t0,\n\t12394,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12398,\n\t12403,\n\t0,\n\t0,\n\t12404,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12410,\n\t0,\n\t0,\n\t0,\n\t12411,\n\t0,\n\t0,\n\t0,\n\t12412,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12420,\n\t0,\n\t12421,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12423,\n\t0,\n\t12425,\n\t12429,\n\t0,\n\t0,\n\t0,\n\t12431,\n\t12432,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12434,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12435,\n\t12436,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12437,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12438,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12445,\n\t0,\n\t0,\n\t0,\n\t12450,\n\t12451,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12452,\n\t12475,\n\t0,\n\t0,\n\t12493,\n\t12494,\n\t0,\n\t0,\n\t0,\n\t12495,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12496,\n\t12502,\n\t12509,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12510,\n\t0,\n\t12512,\n\t12513,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12514,\n\t0,\n\t0,\n\t0,\n\t12515,\n\t0,\n\t12520,\n\t0,\n\t0,\n\t0,\n\t12524,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12527,\n\t0,\n\t0,\n\t0,\n\t12528,\n\t0,\n\t0,\n\t0,\n\t12529,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12530,\n\t0,\n\t12535,\n\t0,\n\t0,\n\t12536,\n\t0,\n\t12538,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12540,\n\t0,\n\t12548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12550,\n\t0,\n\t0,\n\t0,\n\t12551,\n\t12552,\n\t0,\n\t0,\n\t0,\n\t12554,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12555,\n\t0,\n\t0,\n\t12562,\n\t0,\n\t12565,\n\t0,\n\t12566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12569,\n\t0,\n\t0,\n\t0,\n\t12571,\n\t12574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12577,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12578,\n\t12579,\n\t12603,\n\t0,\n\t12608,\n\t0,\n\t0,\n\t12611,\n\t0,\n\t12612,\n\t0,\n\t12615,\n\t0,\n\t12625,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12627,\n\t12646,\n\t0,\n\t12648,\n\t0,\n\t0,\n\t12657,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12670,\n\t0,\n\t0,\n\t12671,\n\t0,\n\t12673,\n\t12677,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12679,\n\t0,\n\t12681,\n\t0,\n\t12682,\n\t12693,\n\t0,\n\t12694,\n\t0,\n\t12697,\n\t0,\n\t12701,\n\t0,\n\t0,\n\t0,\n\t12703,\n\t12704,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12707,\n\t12737,\n\t0,\n\t0,\n\t12739,\n\t0,\n\t0,\n\t12740,\n\t0,\n\t0,\n\t12742,\n\t12743,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12745,\n\t0,\n\t12746,\n\t12747,\n\t0,\n\t12748,\n\t0,\n\t0,\n\t12759,\n\t12767,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12773,\n\t0,\n\t12774,\n\t12778,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12779,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12780,\n\t12793,\n\t0,\n\t12824,\n\t0,\n\t12825,\n\t0,\n\t12836,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12839,\n\t0,\n\t12842,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12843,\n\t12845,\n\t0,\n\t12846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12847,\n\t0,\n\t0,\n\t12850,\n\t12852,\n\t12853,\n\t0,\n\t0,\n\t0,\n\t12854,\n\t0,\n\t0,\n\t0,\n\t12855,\n\t0,\n\t12856,\n\t0,\n\t12858,\n\t0,\n\t0,\n\t12859,\n\t0,\n\t12862,\n\t0,\n\t12863,\n\t0,\n\t0,\n\t12866,\n\t0,\n\t12869,\n\t12872,\n\t12873,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12875,\n\t0,\n\t12877,\n\t0,\n\t0,\n\t12878,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12884,\n\t12885,\n\t12888,\n\t0,\n\t12889,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12893,\n\t0,\n\t0,\n\t0,\n\t12895,\n\t12896,\n\t12898,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12902,\n\t0,\n\t12909,\n\t12910,\n\t0,\n\t12926,\n\t0,\n\t12928,\n\t0,\n\t0,\n\t0,\n\t12929,\n\t0,\n\t12930,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12931,\n\t0,\n\t12932,\n\t12933,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12934,\n\t0,\n\t12942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12944,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12946,\n\t0,\n\t0,\n\t12948,\n\t0,\n\t0,\n\t12949,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12951,\n\t0,\n\t12952,\n\t0,\n\t12953,\n\t0,\n\t0,\n\t0,\n\t12954,\n\t12958,\n\t12959,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12960,\n\t12964,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12966,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12970,\n\t0,\n\t12971,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t12972,\n\t0,\n\t0,\n\t12982,\n\t0,\n\t0,\n\t0,\n\t12984,\n\t12985,\n\t0,\n\t12986,\n\t12996,\n\t12997,\n\t13001,\n\t13002,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13004,\n\t0,\n\t0,\n\t13005,\n\t0,\n\t0,\n\t13007,\n\t13009,\n\t0,\n\t13017,\n\t0,\n\t0,\n\t0,\n\t13020,\n\t0,\n\t13021,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13022,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13024,\n\t13027,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13028,\n\t0,\n\t0,\n\t13029,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13032,\n\t0,\n\t13037,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13040,\n\t0,\n\t0,\n\t13041,\n\t0,\n\t0,\n\t0,\n\t13043,\n\t13044,\n\t13046,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13047,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13049,\n\t13054,\n\t0,\n\t13056,\n\t0,\n\t0,\n\t13060,\n\t13061,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13067,\n\t0,\n\t0,\n\t13068,\n\t0,\n\t13071,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13077,\n\t13078,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13079,\n\t13080,\n\t13081,\n\t0,\n\t13082,\n\t0,\n\t0,\n\t0,\n\t13085,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13086,\n\t0,\n\t13087,\n\t13088,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13094,\n\t0,\n\t13099,\n\t0,\n\t13100,\n\t0,\n\t0,\n\t0,\n\t13101,\n\t0,\n\t13125,\n\t13126,\n\t13128,\n\t13129,\n\t0,\n\t0,\n\t13130,\n\t0,\n\t13131,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13150,\n\t0,\n\t13168,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13169,\n\t0,\n\t0,\n\t13170,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13174,\n\t0,\n\t0,\n\t0,\n\t13176,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13177,\n\t0,\n\t13178,\n\t13183,\n\t13187,\n\t0,\n\t0,\n\t0,\n\t13189,\n\t0,\n\t0,\n\t13190,\n\t0,\n\t0,\n\t13191,\n\t0,\n\t0,\n\t13206,\n\t0,\n\t0,\n\t0,\n\t13207,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13212,\n\t0,\n\t0,\n\t13219,\n\t13232,\n\t0,\n\t0,\n\t0,\n\t13241,\n\t0,\n\t13249,\n\t13253,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13255,\n\t13259,\n\t0,\n\t13260,\n\t13261,\n\t0,\n\t13262,\n\t0,\n\t13272,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13276,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13277,\n\t13299,\n\t0,\n\t0,\n\t13301,\n\t13302,\n\t0,\n\t0,\n\t13303,\n\t0,\n\t0,\n\t13305,\n\t0,\n\t13310,\n\t0,\n\t0,\n\t0,\n\t13311,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13325,\n\t0,\n\t13328,\n\t0,\n\t0,\n\t0,\n\t13329,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13330,\n\t0,\n\t0,\n\t13331,\n\t0,\n\t13335,\n\t0,\n\t0,\n\t13342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13343,\n\t0,\n\t13354,\n\t0,\n\t13362,\n\t0,\n\t13366,\n\t13367,\n\t13369,\n\t0,\n\t0,\n\t13371,\n\t13372,\n\t0,\n\t13373,\n\t13374,\n\t0,\n\t13376,\n\t0,\n\t13380,\n\t13381,\n\t13386,\n\t0,\n\t13387,\n\t13388,\n\t0,\n\t13389,\n\t13391,\n\t13395,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13401,\n\t13409,\n\t0,\n\t13410,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13420,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13422,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13423,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13425,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13427,\n\t0,\n\t0,\n\t0,\n\t13428,\n\t0,\n\t0,\n\t13430,\n\t13438,\n\t0,\n\t13439,\n\t0,\n\t13445,\n\t0,\n\t13448,\n\t13449,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13451,\n\t0,\n\t13457,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13458,\n\t13459,\n\t0,\n\t13460,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13464,\n\t13465,\n\t13466,\n\t13470,\n\t0,\n\t13471,\n\t13472,\n\t13474,\n\t13475,\n\t0,\n\t13476,\n\t0,\n\t0,\n\t13478,\n\t13479,\n\t0,\n\t13481,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13487,\n\t0,\n\t13490,\n\t0,\n\t13493,\n\t0,\n\t0,\n\t13494,\n\t0,\n\t0,\n\t13495,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13496,\n\t13497,\n\t0,\n\t13500,\n\t0,\n\t0,\n\t13516,\n\t13522,\n\t0,\n\t0,\n\t13525,\n\t13528,\n\t0,\n\t0,\n\t0,\n\t13530,\n\t13535,\n\t0,\n\t13537,\n\t13539,\n\t0,\n\t13540,\n\t0,\n\t13543,\n\t0,\n\t13544,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13545,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13547,\n\t0,\n\t0,\n\t0,\n\t13549,\n\t13555,\n\t0,\n\t0,\n\t0,\n\t13556,\n\t13557,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13558,\n\t0,\n\t13563,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13564,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13569,\n\t0,\n\t0,\n\t13571,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13573,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13578,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13581,\n\t0,\n\t13586,\n\t0,\n\t13595,\n\t0,\n\t13600,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13601,\n\t13603,\n\t0,\n\t13604,\n\t13605,\n\t13606,\n\t13607,\n\t0,\n\t0,\n\t13617,\n\t13618,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13623,\n\t0,\n\t13625,\n\t13627,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13629,\n\t0,\n\t0,\n\t0,\n\t13634,\n\t0,\n\t0,\n\t0,\n\t13638,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13654,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13656,\n\t0,\n\t13659,\n\t0,\n\t0,\n\t13660,\n\t0,\n\t0,\n\t13662,\n\t0,\n\t0,\n\t0,\n\t13663,\n\t0,\n\t13664,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13668,\n\t0,\n\t13669,\n\t13671,\n\t0,\n\t0,\n\t13672,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13675,\n\t13685,\n\t0,\n\t13686,\n\t0,\n\t0,\n\t0,\n\t13687,\n\t0,\n\t0,\n\t0,\n\t13692,\n\t13694,\n\t13697,\n\t0,\n\t0,\n\t0,\n\t13702,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13705,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13707,\n\t0,\n\t0,\n\t0,\n\t13714,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13715,\n\t0,\n\t13716,\n\t13717,\n\t0,\n\t0,\n\t13719,\n\t13724,\n\t13730,\n\t13731,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13732,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13734,\n\t0,\n\t13736,\n\t0,\n\t0,\n\t13737,\n\t13738,\n\t13747,\n\t0,\n\t13751,\n\t0,\n\t0,\n\t13752,\n\t0,\n\t0,\n\t0,\n\t13753,\n\t0,\n\t13757,\n\t0,\n\t0,\n\t13762,\n\t13763,\n\t0,\n\t13764,\n\t13765,\n\t0,\n\t13766,\n\t0,\n\t0,\n\t13767,\n\t0,\n\t0,\n\t0,\n\t13768,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13769,\n\t0,\n\t0,\n\t13772,\n\t0,\n\t13775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13776,\n\t13778,\n\t13787,\n\t0,\n\t0,\n\t0,\n\t13797,\n\t0,\n\t13798,\n\t0,\n\t13801,\n\t0,\n\t13804,\n\t13806,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13816,\n\t13817,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13834,\n\t0,\n\t13836,\n\t0,\n\t0,\n\t13838,\n\t0,\n\t0,\n\t13839,\n\t0,\n\t13840,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13842,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13843,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13858,\n\t0,\n\t0,\n\t13860,\n\t0,\n\t0,\n\t13861,\n\t0,\n\t0,\n\t13862,\n\t13863,\n\t0,\n\t13868,\n\t0,\n\t13869,\n\t13870,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13872,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13873,\n\t13878,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13886,\n\t0,\n\t13888,\n\t13889,\n\t13890,\n\t0,\n\t0,\n\t13891,\n\t13894,\n\t0,\n\t13897,\n\t13899,\n\t13900,\n\t13904,\n\t0,\n\t0,\n\t13906,\n\t0,\n\t0,\n\t0,\n\t13909,\n\t0,\n\t0,\n\t0,\n\t13910,\n\t0,\n\t0,\n\t0,\n\t13911,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13912,\n\t13917,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13918,\n\t0,\n\t13919,\n\t0,\n\t0,\n\t13920,\n\t0,\n\t0,\n\t0,\n\t13921,\n\t0,\n\t0,\n\t13922,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13924,\n\t0,\n\t13927,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13932,\n\t0,\n\t13933,\n\t0,\n\t13934,\n\t0,\n\t0,\n\t13935,\n\t0,\n\t13944,\n\t0,\n\t0,\n\t0,\n\t13954,\n\t0,\n\t0,\n\t13955,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13956,\n\t0,\n\t13957,\n\t0,\n\t13967,\n\t13969,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13970,\n\t13990,\n\t0,\n\t13991,\n\t13994,\n\t0,\n\t13995,\n\t0,\n\t0,\n\t0,\n\t0,\n\t13996,\n\t0,\n\t0,\n\t13999,\n\t0,\n\t0,\n\t0,\n\t14018,\n\t0,\n\t14019,\n\t0,\n\t14021,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14041,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14043,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14046,\n\t0,\n\t0,\n\t0,\n\t14048,\n\t14049,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14051,\n\t0,\n\t0,\n\t14052,\n\t14056,\n\t0,\n\t14063,\n\t0,\n\t14064,\n\t14066,\n\t0,\n\t0,\n\t14067,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14068,\n\t0,\n\t0,\n\t0,\n\t14072,\n\t0,\n\t14074,\n\t14075,\n\t0,\n\t14076,\n\t14079,\n\t14085,\n\t14086,\n\t14087,\n\t14093,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14096,\n\t14097,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14098,\n\t0,\n\t14102,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14103,\n\t0,\n\t0,\n\t0,\n\t14104,\n\t0,\n\t0,\n\t14105,\n\t0,\n\t0,\n\t0,\n\t14107,\n\t14108,\n\t0,\n\t0,\n\t14109,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14117,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14118,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14119,\n\t0,\n\t0,\n\t14120,\n\t0,\n\t0,\n\t14121,\n\t0,\n\t14122,\n\t14127,\n\t0,\n\t14128,\n\t14136,\n\t0,\n\t0,\n\t14138,\n\t0,\n\t14140,\n\t0,\n\t0,\n\t0,\n\t14141,\n\t14142,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14146,\n\t0,\n\t0,\n\t14149,\n\t0,\n\t14151,\n\t0,\n\t0,\n\t0,\n\t14152,\n\t0,\n\t0,\n\t14153,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14154,\n\t0,\n\t14156,\n\t14157,\n\t0,\n\t0,\n\t14159,\n\t0,\n\t14161,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14162,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14163,\n\t0,\n\t0,\n\t14173,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14174,\n\t0,\n\t0,\n\t14176,\n\t0,\n\t0,\n\t14178,\n\t0,\n\t0,\n\t14179,\n\t14181,\n\t0,\n\t0,\n\t14182,\n\t14185,\n\t14187,\n\t0,\n\t14190,\n\t0,\n\t0,\n\t14197,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14199,\n\t14200,\n\t0,\n\t0,\n\t0,\n\t14204,\n\t0,\n\t0,\n\t14208,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14231,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14234,\n\t0,\n\t0,\n\t14235,\n\t0,\n\t0,\n\t0,\n\t14240,\n\t14241,\n\t0,\n\t0,\n\t0,\n\t14246,\n\t0,\n\t0,\n\t0,\n\t14247,\n\t0,\n\t14250,\n\t0,\n\t0,\n\t14251,\n\t0,\n\t0,\n\t14254,\n\t0,\n\t0,\n\t14256,\n\t0,\n\t0,\n\t0,\n\t14260,\n\t0,\n\t14261,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14262,\n\t14267,\n\t14269,\n\t0,\n\t0,\n\t14277,\n\t0,\n\t0,\n\t14278,\n\t0,\n\t14279,\n\t14282,\n\t0,\n\t0,\n\t0,\n\t14283,\n\t0,\n\t0,\n\t0,\n\t14284,\n\t14285,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14286,\n\t0,\n\t0,\n\t0,\n\t14288,\n\t0,\n\t0,\n\t0,\n\t14289,\n\t0,\n\t14290,\n\t0,\n\t14293,\n\t14301,\n\t14302,\n\t14304,\n\t14305,\n\t0,\n\t14307,\n\t0,\n\t14308,\n\t14309,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14311,\n\t14312,\n\t0,\n\t0,\n\t14317,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14320,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14321,\n\t14322,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14326,\n\t14329,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14330,\n\t14331,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14332,\n\t0,\n\t0,\n\t0,\n\t14333,\n\t0,\n\t0,\n\t14337,\n\t14340,\n\t0,\n\t14341,\n\t0,\n\t0,\n\t14342,\n\t0,\n\t14345,\n\t14346,\n\t0,\n\t0,\n\t14347,\n\t0,\n\t14362,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14364,\n\t14365,\n\t14371,\n\t0,\n\t14373,\n\t0,\n\t0,\n\t14374,\n\t0,\n\t14379,\n\t0,\n\t14400,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14401,\n\t0,\n\t0,\n\t14405,\n\t0,\n\t14406,\n\t0,\n\t14408,\n\t14409,\n\t0,\n\t0,\n\t0,\n\t14417,\n\t0,\n\t0,\n\t14424,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14430,\n\t0,\n\t0,\n\t0,\n\t14431,\n\t0,\n\t0,\n\t14435,\n\t0,\n\t14440,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14442,\n\t0,\n\t0,\n\t14443,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14454,\n\t0,\n\t14457,\n\t0,\n\t14460,\n\t0,\n\t0,\n\t14466,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14467,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14469,\n\t0,\n\t14477,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14478,\n\t14482,\n\t0,\n\t0,\n\t0,\n\t14483,\n\t0,\n\t0,\n\t0,\n\t14485,\n\t14486,\n\t0,\n\t0,\n\t0,\n\t14487,\n\t14488,\n\t14489,\n\t14492,\n\t14493,\n\t14494,\n\t14495,\n\t14496,\n\t14497,\n\t0,\n\t14499,\n\t0,\n\t14501,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14502,\n\t0,\n\t14507,\n\t14512,\n\t14513,\n\t14514,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14515,\n\t14526,\n\t14530,\n\t0,\n\t14537,\n\t0,\n\t14544,\n\t0,\n\t14547,\n\t0,\n\t0,\n\t14548,\n\t14550,\n\t14551,\n\t0,\n\t0,\n\t14552,\n\t0,\n\t0,\n\t0,\n\t14553,\n\t0,\n\t14554,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14556,\n\t14564,\n\t0,\n\t0,\n\t14565,\n\t14566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14568,\n\t0,\n\t0,\n\t14569,\n\t0,\n\t0,\n\t0,\n\t14571,\n\t14576,\n\t0,\n\t0,\n\t14577,\n\t14578,\n\t14579,\n\t0,\n\t0,\n\t14580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14582,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14583,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14587,\n\t0,\n\t14588,\n\t0,\n\t0,\n\t14600,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14601,\n\t0,\n\t0,\n\t14604,\n\t14605,\n\t14611,\n\t0,\n\t14613,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14615,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14627,\n\t0,\n\t14628,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14631,\n\t0,\n\t14633,\n\t14634,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14635,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14636,\n\t0,\n\t0,\n\t14639,\n\t14642,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14644,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14645,\n\t14646,\n\t0,\n\t14653,\n\t0,\n\t0,\n\t14654,\n\t0,\n\t14658,\n\t0,\n\t14661,\n\t0,\n\t0,\n\t0,\n\t14665,\n\t0,\n\t0,\n\t0,\n\t14668,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14669,\n\t0,\n\t0,\n\t14670,\n\t0,\n\t0,\n\t0,\n\t14680,\n\t0,\n\t0,\n\t14681,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14682,\n\t14683,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14686,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14687,\n\t14697,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14699,\n\t14705,\n\t14711,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14712,\n\t0,\n\t0,\n\t0,\n\t14713,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14719,\n\t0,\n\t14720,\n\t14721,\n\t14726,\n\t0,\n\t0,\n\t0,\n\t14728,\n\t14729,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14731,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14733,\n\t14736,\n\t14737,\n\t0,\n\t0,\n\t14740,\n\t14742,\n\t0,\n\t0,\n\t0,\n\t14744,\n\t14753,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14755,\n\t14758,\n\t14760,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14761,\n\t14762,\n\t14765,\n\t14771,\n\t0,\n\t14772,\n\t0,\n\t14773,\n\t14774,\n\t0,\n\t0,\n\t14775,\n\t0,\n\t0,\n\t14776,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14777,\n\t0,\n\t14779,\n\t0,\n\t0,\n\t14782,\n\t0,\n\t0,\n\t14785,\n\t14786,\n\t14788,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14795,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14798,\n\t0,\n\t14803,\n\t14804,\n\t14806,\n\t0,\n\t0,\n\t0,\n\t14809,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14810,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14811,\n\t0,\n\t14812,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14815,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14816,\n\t0,\n\t14818,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14819,\n\t0,\n\t14820,\n\t0,\n\t14823,\n\t0,\n\t0,\n\t0,\n\t14824,\n\t0,\n\t0,\n\t14826,\n\t14827,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14833,\n\t0,\n\t14845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14846,\n\t0,\n\t0,\n\t14847,\n\t14871,\n\t0,\n\t14873,\n\t0,\n\t14876,\n\t0,\n\t14877,\n\t14878,\n\t14880,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14881,\n\t0,\n\t14882,\n\t14894,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14895,\n\t0,\n\t14907,\n\t0,\n\t14908,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14911,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14920,\n\t0,\n\t0,\n\t14931,\n\t0,\n\t14932,\n\t14934,\n\t14935,\n\t0,\n\t0,\n\t14936,\n\t0,\n\t14945,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14947,\n\t0,\n\t0,\n\t14948,\n\t14949,\n\t14951,\n\t0,\n\t0,\n\t14952,\n\t0,\n\t0,\n\t0,\n\t14964,\n\t14973,\n\t0,\n\t0,\n\t14990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t14995,\n\t0,\n\t0,\n\t14998,\n\t15001,\n\t0,\n\t0,\n\t15002,\n\t15020,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15021,\n\t0,\n\t15022,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15023,\n\t0,\n\t0,\n\t15025,\n\t15029,\n\t15033,\n\t0,\n\t0,\n\t0,\n\t15034,\n\t0,\n\t0,\n\t0,\n\t15035,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15043,\n\t15044,\n\t0,\n\t0,\n\t0,\n\t15045,\n\t15046,\n\t15048,\n\t15050,\n\t0,\n\t15065,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15066,\n\t0,\n\t0,\n\t15075,\n\t15082,\n\t15084,\n\t0,\n\t0,\n\t15085,\n\t15086,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15088,\n\t0,\n\t0,\n\t0,\n\t15089,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15094,\n\t0,\n\t15096,\n\t0,\n\t15097,\n\t0,\n\t15100,\n\t0,\n\t0,\n\t15102,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15105,\n\t0,\n\t0,\n\t15106,\n\t0,\n\t15109,\n\t15113,\n\t0,\n\t0,\n\t0,\n\t15115,\n\t0,\n\t15118,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15119,\n\t0,\n\t0,\n\t15120,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15123,\n\t15129,\n\t0,\n\t0,\n\t0,\n\t15130,\n\t0,\n\t15131,\n\t0,\n\t0,\n\t15134,\n\t0,\n\t15135,\n\t0,\n\t0,\n\t0,\n\t15137,\n\t15138,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15139,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15140,\n\t0,\n\t0,\n\t15154,\n\t15162,\n\t0,\n\t15169,\n\t15170,\n\t0,\n\t15175,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15177,\n\t0,\n\t15178,\n\t15179,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15183,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15185,\n\t15187,\n\t0,\n\t15194,\n\t15195,\n\t15196,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15206,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15207,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15213,\n\t0,\n\t15214,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15232,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15234,\n\t0,\n\t15238,\n\t15240,\n\t0,\n\t15248,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15250,\n\t15251,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15252,\n\t0,\n\t0,\n\t0,\n\t15255,\n\t15262,\n\t15266,\n\t0,\n\t0,\n\t0,\n\t15267,\n\t0,\n\t0,\n\t0,\n\t15277,\n\t15279,\n\t0,\n\t0,\n\t0,\n\t15280,\n\t15281,\n\t15282,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15285,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15289,\n\t0,\n\t0,\n\t15291,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15296,\n\t15297,\n\t0,\n\t0,\n\t15304,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15306,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15307,\n\t15308,\n\t0,\n\t15309,\n\t0,\n\t0,\n\t15311,\n\t0,\n\t0,\n\t15312,\n\t15313,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15314,\n\t15317,\n\t0,\n\t0,\n\t0,\n\t15318,\n\t15319,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15320,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15321,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15324,\n\t0,\n\t15325,\n\t15326,\n\t0,\n\t15330,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15334,\n\t0,\n\t15335,\n\t0,\n\t15341,\n\t0,\n\t0,\n\t15342,\n\t0,\n\t0,\n\t15343,\n\t15344,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15345,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15347,\n\t0,\n\t0,\n\t15348,\n\t15349,\n\t15350,\n\t0,\n\t15356,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15357,\n\t0,\n\t15358,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15359,\n\t15360,\n\t15364,\n\t0,\n\t15380,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15392,\n\t0,\n\t0,\n\t15393,\n\t0,\n\t15395,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15396,\n\t0,\n\t0,\n\t15397,\n\t15398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15399,\n\t0,\n\t15400,\n\t0,\n\t0,\n\t0,\n\t15402,\n\t0,\n\t15405,\n\t15410,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15411,\n\t0,\n\t0,\n\t0,\n\t15412,\n\t0,\n\t15416,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15428,\n\t0,\n\t15435,\n\t0,\n\t0,\n\t15438,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15439,\n\t0,\n\t0,\n\t0,\n\t15440,\n\t0,\n\t0,\n\t0,\n\t15441,\n\t15449,\n\t15451,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15452,\n\t0,\n\t0,\n\t15455,\n\t0,\n\t0,\n\t0,\n\t15456,\n\t0,\n\t0,\n\t15458,\n\t0,\n\t15460,\n\t15461,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15462,\n\t15464,\n\t0,\n\t15465,\n\t0,\n\t0,\n\t15466,\n\t0,\n\t0,\n\t15467,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15468,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15481,\n\t0,\n\t0,\n\t15484,\n\t0,\n\t15485,\n\t15486,\n\t0,\n\t0,\n\t0,\n\t15487,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15488,\n\t0,\n\t15492,\n\t15498,\n\t0,\n\t0,\n\t0,\n\t15499,\n\t0,\n\t0,\n\t0,\n\t15500,\n\t0,\n\t15501,\n\t0,\n\t0,\n\t15512,\n\t0,\n\t15522,\n\t0,\n\t0,\n\t0,\n\t15524,\n\t0,\n\t15525,\n\t15526,\n\t0,\n\t0,\n\t15527,\n\t0,\n\t0,\n\t15545,\n\t15546,\n\t0,\n\t15548,\n\t15552,\n\t0,\n\t15553,\n\t0,\n\t0,\n\t0,\n\t15554,\n\t0,\n\t15555,\n\t0,\n\t15557,\n\t15565,\n\t15573,\n\t15577,\n\t15578,\n\t0,\n\t15582,\n\t0,\n\t15583,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15586,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15589,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15593,\n\t15594,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15595,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15596,\n\t0,\n\t0,\n\t0,\n\t15597,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15600,\n\t0,\n\t0,\n\t15601,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15602,\n\t15603,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15604,\n\t0,\n\t15609,\n\t0,\n\t0,\n\t15612,\n\t0,\n\t0,\n\t15613,\n\t0,\n\t0,\n\t15615,\n\t15617,\n\t15618,\n\t0,\n\t0,\n\t15620,\n\t0,\n\t15636,\n\t15637,\n\t0,\n\t0,\n\t15649,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15650,\n\t0,\n\t0,\n\t15651,\n\t0,\n\t0,\n\t0,\n\t15656,\n\t0,\n\t15658,\n\t0,\n\t0,\n\t0,\n\t15664,\n\t0,\n\t0,\n\t15665,\n\t0,\n\t0,\n\t15668,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15669,\n\t0,\n\t0,\n\t15674,\n\t0,\n\t0,\n\t15675,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15677,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15678,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15679,\n\t0,\n\t0,\n\t15681,\n\t0,\n\t15686,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15687,\n\t0,\n\t15688,\n\t0,\n\t0,\n\t15690,\n\t0,\n\t0,\n\t0,\n\t15697,\n\t0,\n\t15699,\n\t15700,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15701,\n\t0,\n\t15702,\n\t15703,\n\t0,\n\t15704,\n\t0,\n\t15705,\n\t0,\n\t15707,\n\t0,\n\t15709,\n\t0,\n\t15712,\n\t15716,\n\t0,\n\t15717,\n\t0,\n\t15718,\n\t15720,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15724,\n\t0,\n\t0,\n\t0,\n\t15725,\n\t0,\n\t15726,\n\t0,\n\t0,\n\t0,\n\t15740,\n\t0,\n\t15745,\n\t15746,\n\t0,\n\t0,\n\t15747,\n\t0,\n\t15748,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15749,\n\t0,\n\t0,\n\t0,\n\t15752,\n\t0,\n\t15753,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15759,\n\t0,\n\t0,\n\t0,\n\t15765,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15767,\n\t0,\n\t0,\n\t0,\n\t15771,\n\t0,\n\t0,\n\t15784,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15785,\n\t15790,\n\t15791,\n\t0,\n\t0,\n\t15792,\n\t0,\n\t0,\n\t0,\n\t15807,\n\t0,\n\t15811,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15818,\n\t0,\n\t0,\n\t0,\n\t15819,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15821,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15822,\n\t15824,\n\t0,\n\t0,\n\t15827,\n\t0,\n\t0,\n\t15829,\n\t15831,\n\t0,\n\t15832,\n\t0,\n\t0,\n\t15833,\n\t0,\n\t15835,\n\t15838,\n\t15839,\n\t15843,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15845,\n\t15851,\n\t15856,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15858,\n\t15860,\n\t0,\n\t15861,\n\t0,\n\t0,\n\t0,\n\t15864,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15865,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15866,\n\t0,\n\t15872,\n\t0,\n\t0,\n\t15876,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15877,\n\t15878,\n\t15883,\n\t15885,\n\t0,\n\t0,\n\t15888,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15889,\n\t15890,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15892,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15893,\n\t0,\n\t0,\n\t15894,\n\t0,\n\t0,\n\t0,\n\t15895,\n\t0,\n\t15896,\n\t15897,\n\t0,\n\t15898,\n\t15901,\n\t15902,\n\t0,\n\t15911,\n\t15915,\n\t0,\n\t15916,\n\t0,\n\t15924,\n\t15935,\n\t0,\n\t15937,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15958,\n\t0,\n\t0,\n\t0,\n\t15961,\n\t0,\n\t0,\n\t15966,\n\t0,\n\t15967,\n\t0,\n\t0,\n\t15977,\n\t0,\n\t0,\n\t15978,\n\t0,\n\t0,\n\t15981,\n\t15982,\n\t15983,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t15986,\n\t0,\n\t0,\n\t0,\n\t15990,\n\t0,\n\t15991,\n\t15995,\n\t15998,\n\t0,\n\t15999,\n\t0,\n\t16000,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16008,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16009,\n\t16011,\n\t0,\n\t16013,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16014,\n\t0,\n\t0,\n\t16015,\n\t16023,\n\t16024,\n\t16025,\n\t0,\n\t0,\n\t16026,\n\t0,\n\t16030,\n\t0,\n\t16032,\n\t0,\n\t16033,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16035,\n\t16036,\n\t16037,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16039,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16041,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16043,\n\t16044,\n\t0,\n\t0,\n\t16047,\n\t0,\n\t0,\n\t0,\n\t16048,\n\t0,\n\t0,\n\t16049,\n\t16050,\n\t16052,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16056,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16058,\n\t16060,\n\t16061,\n\t0,\n\t0,\n\t16063,\n\t0,\n\t0,\n\t16064,\n\t0,\n\t0,\n\t0,\n\t16067,\n\t16068,\n\t0,\n\t0,\n\t16069,\n\t16078,\n\t0,\n\t0,\n\t0,\n\t16079,\n\t0,\n\t0,\n\t0,\n\t16080,\n\t0,\n\t16081,\n\t0,\n\t0,\n\t0,\n\t16088,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16089,\n\t16093,\n\t0,\n\t16097,\n\t0,\n\t16103,\n\t0,\n\t16104,\n\t16105,\n\t0,\n\t0,\n\t16256,\n\t0,\n\t0,\n\t16259,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16260,\n\t16261,\n\t0,\n\t0,\n\t16262,\n\t0,\n\t0,\n\t16263,\n\t0,\n\t16268,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16269,\n\t0,\n\t0,\n\t16270,\n\t16273,\n\t0,\n\t16274,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16275,\n\t16276,\n\t16277,\n\t16280,\n\t0,\n\t0,\n\t0,\n\t16281,\n\t16284,\n\t0,\n\t0,\n\t0,\n\t16286,\n\t0,\n\t16289,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16290,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16291,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16293,\n\t16295,\n\t16297,\n\t0,\n\t16302,\n\t0,\n\t16304,\n\t0,\n\t16305,\n\t0,\n\t16306,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16307,\n\t16308,\n\t16312,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16313,\n\t16315,\n\t0,\n\t16318,\n\t0,\n\t0,\n\t0,\n\t16321,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16326,\n\t16333,\n\t16336,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16337,\n\t16340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16345,\n\t0,\n\t0,\n\t16346,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16347,\n\t0,\n\t0,\n\t16348,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16349,\n\t0,\n\t0,\n\t0,\n\t16350,\n\t0,\n\t16357,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16359,\n\t16360,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16362,\n\t16363,\n\t16364,\n\t16365,\n\t0,\n\t0,\n\t16366,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16367,\n\t16368,\n\t0,\n\t16369,\n\t16374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16376,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16378,\n\t16379,\n\t0,\n\t16380,\n\t0,\n\t0,\n\t0,\n\t16381,\n\t16383,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16390,\n\t0,\n\t0,\n\t0,\n\t16399,\n\t0,\n\t16402,\n\t16404,\n\t16406,\n\t16407,\n\t0,\n\t0,\n\t0,\n\t16409,\n\t16411,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16412,\n\t0,\n\t16413,\n\t16415,\n\t16423,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16424,\n\t0,\n\t0,\n\t0,\n\t16428,\n\t16434,\n\t16435,\n\t16449,\n\t0,\n\t16450,\n\t16451,\n\t0,\n\t0,\n\t0,\n\t16453,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16454,\n\t0,\n\t0,\n\t16456,\n\t16458,\n\t0,\n\t0,\n\t16459,\n\t0,\n\t0,\n\t16460,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16462,\n\t0,\n\t16463,\n\t0,\n\t0,\n\t16466,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16479,\n\t0,\n\t0,\n\t16480,\n\t0,\n\t16481,\n\t16484,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16485,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16489,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16491,\n\t0,\n\t0,\n\t16498,\n\t0,\n\t0,\n\t16503,\n\t0,\n\t16505,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16506,\n\t0,\n\t0,\n\t0,\n\t16508,\n\t16509,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16511,\n\t16513,\n\t0,\n\t0,\n\t0,\n\t16516,\n\t0,\n\t16517,\n\t0,\n\t16519,\n\t0,\n\t16529,\n\t0,\n\t0,\n\t16531,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16534,\n\t0,\n\t0,\n\t16541,\n\t16542,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16543,\n\t16547,\n\t16548,\n\t0,\n\t0,\n\t0,\n\t16551,\n\t0,\n\t16552,\n\t0,\n\t0,\n\t0,\n\t16553,\n\t0,\n\t0,\n\t16558,\n\t0,\n\t0,\n\t16562,\n\t16565,\n\t0,\n\t0,\n\t0,\n\t16570,\n\t0,\n\t0,\n\t0,\n\t16573,\n\t16585,\n\t0,\n\t0,\n\t0,\n\t16586,\n\t16587,\n\t16595,\n\t0,\n\t16596,\n\t0,\n\t16598,\n\t0,\n\t0,\n\t0,\n\t16600,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16601,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16603,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16604,\n\t16612,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16613,\n\t0,\n\t16618,\n\t0,\n\t0,\n\t0,\n\t16640,\n\t0,\n\t0,\n\t16641,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16645,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16646,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16651,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16653,\n\t16654,\n\t0,\n\t0,\n\t0,\n\t16655,\n\t0,\n\t0,\n\t16656,\n\t16667,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16671,\n\t0,\n\t16672,\n\t0,\n\t0,\n\t0,\n\t16673,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16676,\n\t0,\n\t16686,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16689,\n\t0,\n\t16690,\n\t0,\n\t16692,\n\t0,\n\t16693,\n\t0,\n\t16694,\n\t0,\n\t16696,\n\t0,\n\t0,\n\t0,\n\t16705,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16707,\n\t0,\n\t0,\n\t0,\n\t16709,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16711,\n\t0,\n\t16712,\n\t16713,\n\t0,\n\t0,\n\t0,\n\t16715,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16716,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16718,\n\t16724,\n\t0,\n\t0,\n\t16726,\n\t16727,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16728,\n\t0,\n\t16729,\n\t0,\n\t0,\n\t16730,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16731,\n\t0,\n\t0,\n\t0,\n\t16732,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16734,\n\t16738,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16743,\n\t0,\n\t0,\n\t16745,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16749,\n\t0,\n\t16752,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16756,\n\t0,\n\t0,\n\t16758,\n\t0,\n\t16759,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16760,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16762,\n\t0,\n\t16769,\n\t0,\n\t16770,\n\t0,\n\t16772,\n\t0,\n\t0,\n\t0,\n\t16777,\n\t16780,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16781,\n\t0,\n\t0,\n\t16782,\n\t0,\n\t16784,\n\t0,\n\t0,\n\t16785,\n\t16787,\n\t16792,\n\t0,\n\t0,\n\t16794,\n\t0,\n\t0,\n\t0,\n\t16798,\n\t0,\n\t0,\n\t16809,\n\t0,\n\t0,\n\t16814,\n\t16816,\n\t16817,\n\t0,\n\t16819,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16820,\n\t0,\n\t0,\n\t16836,\n\t16839,\n\t0,\n\t0,\n\t16841,\n\t16851,\n\t16857,\n\t0,\n\t0,\n\t16858,\n\t16859,\n\t0,\n\t0,\n\t16860,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16862,\n\t0,\n\t16863,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16864,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16876,\n\t0,\n\t16881,\n\t16882,\n\t0,\n\t16885,\n\t16886,\n\t0,\n\t16887,\n\t0,\n\t0,\n\t0,\n\t16889,\n\t16891,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16894,\n\t16895,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16897,\n\t0,\n\t16898,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16913,\n\t0,\n\t0,\n\t16924,\n\t16925,\n\t16926,\n\t0,\n\t0,\n\t16927,\n\t0,\n\t0,\n\t0,\n\t16937,\n\t16938,\n\t0,\n\t0,\n\t0,\n\t16940,\n\t16941,\n\t0,\n\t0,\n\t0,\n\t16942,\n\t16945,\n\t0,\n\t16946,\n\t16949,\n\t16950,\n\t0,\n\t0,\n\t0,\n\t16952,\n\t16955,\n\t0,\n\t0,\n\t0,\n\t16965,\n\t0,\n\t16969,\n\t0,\n\t0,\n\t16975,\n\t0,\n\t0,\n\t16976,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16978,\n\t0,\n\t0,\n\t16981,\n\t0,\n\t16983,\n\t16989,\n\t0,\n\t0,\n\t0,\n\t0,\n\t16990,\n\t0,\n\t0,\n\t16991,\n\t0,\n\t0,\n\t0,\n\t16993,\n\t0,\n\t16994,\n\t16996,\n\t17000,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17002,\n\t17004,\n\t0,\n\t17006,\n\t0,\n\t0,\n\t17007,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17008,\n\t17013,\n\t17014,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17021,\n\t0,\n\t17031,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17033,\n\t17036,\n\t0,\n\t17038,\n\t0,\n\t0,\n\t17039,\n\t0,\n\t17045,\n\t0,\n\t0,\n\t17046,\n\t17047,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17048,\n\t0,\n\t17049,\n\t17050,\n\t0,\n\t17051,\n\t17053,\n\t0,\n\t17054,\n\t0,\n\t17055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17063,\n\t0,\n\t0,\n\t17064,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17065,\n\t0,\n\t0,\n\t17068,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17072,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17073,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17074,\n\t0,\n\t17080,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17081,\n\t17083,\n\t17084,\n\t0,\n\t0,\n\t0,\n\t17085,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17092,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17093,\n\t0,\n\t17095,\n\t17102,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17103,\n\t0,\n\t0,\n\t17105,\n\t0,\n\t17107,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17114,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17115,\n\t17125,\n\t17127,\n\t0,\n\t0,\n\t17128,\n\t0,\n\t0,\n\t0,\n\t17129,\n\t17130,\n\t0,\n\t17131,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17132,\n\t17135,\n\t17145,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17146,\n\t0,\n\t17147,\n\t0,\n\t17148,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17149,\n\t17150,\n\t0,\n\t17151,\n\t17153,\n\t0,\n\t17155,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17163,\n\t17171,\n\t0,\n\t17174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17179,\n\t0,\n\t0,\n\t17182,\n\t17185,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17186,\n\t0,\n\t0,\n\t17188,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17189,\n\t17191,\n\t0,\n\t17194,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17195,\n\t17196,\n\t17203,\n\t17204,\n\t0,\n\t0,\n\t17205,\n\t17217,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17218,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17219,\n\t0,\n\t17220,\n\t0,\n\t17221,\n\t0,\n\t0,\n\t17230,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17236,\n\t0,\n\t17238,\n\t17239,\n\t0,\n\t0,\n\t0,\n\t17241,\n\t17244,\n\t0,\n\t0,\n\t17245,\n\t0,\n\t17248,\n\t0,\n\t0,\n\t17251,\n\t0,\n\t17252,\n\t0,\n\t0,\n\t17264,\n\t0,\n\t17266,\n\t0,\n\t0,\n\t0,\n\t17268,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17271,\n\t17272,\n\t0,\n\t17273,\n\t0,\n\t17295,\n\t0,\n\t17302,\n\t0,\n\t17305,\n\t0,\n\t0,\n\t0,\n\t17306,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17309,\n\t0,\n\t17310,\n\t17313,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17314,\n\t17315,\n\t0,\n\t17317,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17318,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17320,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17334,\n\t0,\n\t17344,\n\t17348,\n\t0,\n\t0,\n\t0,\n\t17350,\n\t17351,\n\t0,\n\t0,\n\t17353,\n\t0,\n\t0,\n\t17354,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17355,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17356,\n\t17357,\n\t0,\n\t0,\n\t17359,\n\t0,\n\t0,\n\t0,\n\t17371,\n\t0,\n\t17372,\n\t0,\n\t0,\n\t0,\n\t17393,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17394,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17395,\n\t0,\n\t0,\n\t17399,\n\t0,\n\t0,\n\t0,\n\t17401,\n\t17417,\n\t0,\n\t17418,\n\t0,\n\t17419,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17422,\n\t17423,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17424,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17428,\n\t17429,\n\t17433,\n\t0,\n\t0,\n\t0,\n\t17437,\n\t0,\n\t0,\n\t17441,\n\t0,\n\t0,\n\t17442,\n\t0,\n\t0,\n\t17453,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17454,\n\t17456,\n\t17462,\n\t0,\n\t0,\n\t17466,\n\t0,\n\t0,\n\t17468,\n\t0,\n\t0,\n\t17469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17470,\n\t0,\n\t17475,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17479,\n\t0,\n\t0,\n\t0,\n\t17483,\n\t17484,\n\t0,\n\t17485,\n\t0,\n\t17486,\n\t0,\n\t17491,\n\t17492,\n\t0,\n\t0,\n\t17493,\n\t0,\n\t17494,\n\t17495,\n\t0,\n\t0,\n\t0,\n\t17496,\n\t0,\n\t0,\n\t0,\n\t17497,\n\t0,\n\t0,\n\t0,\n\t17502,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17503,\n\t0,\n\t17505,\n\t0,\n\t17507,\n\t0,\n\t0,\n\t0,\n\t17512,\n\t17513,\n\t17514,\n\t0,\n\t0,\n\t17515,\n\t0,\n\t0,\n\t0,\n\t17519,\n\t0,\n\t0,\n\t0,\n\t17522,\n\t0,\n\t0,\n\t17523,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17527,\n\t0,\n\t0,\n\t0,\n\t17528,\n\t0,\n\t0,\n\t0,\n\t17534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17536,\n\t0,\n\t0,\n\t0,\n\t17539,\n\t0,\n\t17540,\n\t17543,\n\t17549,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17556,\n\t0,\n\t0,\n\t17558,\n\t0,\n\t17559,\n\t0,\n\t0,\n\t17560,\n\t0,\n\t0,\n\t0,\n\t17563,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17564,\n\t0,\n\t0,\n\t17565,\n\t17566,\n\t0,\n\t17567,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17569,\n\t17570,\n\t0,\n\t17575,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17581,\n\t0,\n\t0,\n\t0,\n\t17582,\n\t17583,\n\t0,\n\t17586,\n\t0,\n\t0,\n\t17587,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17596,\n\t17597,\n\t0,\n\t0,\n\t17598,\n\t17600,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17601,\n\t0,\n\t0,\n\t0,\n\t17604,\n\t0,\n\t0,\n\t17605,\n\t0,\n\t0,\n\t17607,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17612,\n\t0,\n\t0,\n\t17618,\n\t0,\n\t17621,\n\t17622,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17623,\n\t0,\n\t0,\n\t17624,\n\t0,\n\t0,\n\t17630,\n\t0,\n\t0,\n\t17631,\n\t17633,\n\t17634,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17635,\n\t0,\n\t0,\n\t17636,\n\t0,\n\t0,\n\t17637,\n\t0,\n\t17638,\n\t0,\n\t17640,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17641,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17643,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17645,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17646,\n\t17662,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17663,\n\t17664,\n\t0,\n\t17665,\n\t17666,\n\t0,\n\t0,\n\t0,\n\t17669,\n\t17671,\n\t17673,\n\t0,\n\t17679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17684,\n\t0,\n\t0,\n\t0,\n\t17686,\n\t0,\n\t17714,\n\t0,\n\t0,\n\t17720,\n\t17722,\n\t17726,\n\t0,\n\t0,\n\t17728,\n\t0,\n\t0,\n\t17729,\n\t0,\n\t0,\n\t0,\n\t17732,\n\t0,\n\t17733,\n\t0,\n\t17734,\n\t0,\n\t0,\n\t0,\n\t17735,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17737,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17739,\n\t0,\n\t0,\n\t0,\n\t17741,\n\t17742,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17743,\n\t17744,\n\t17745,\n\t0,\n\t0,\n\t0,\n\t17749,\n\t0,\n\t17750,\n\t17751,\n\t17752,\n\t17754,\n\t17761,\n\t17762,\n\t0,\n\t17763,\n\t0,\n\t17766,\n\t0,\n\t17772,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17776,\n\t0,\n\t0,\n\t17777,\n\t0,\n\t0,\n\t17778,\n\t17779,\n\t0,\n\t17782,\n\t17783,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17784,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17821,\n\t0,\n\t0,\n\t0,\n\t17822,\n\t0,\n\t0,\n\t0,\n\t17823,\n\t17825,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17826,\n\t17831,\n\t17832,\n\t17833,\n\t0,\n\t0,\n\t17845,\n\t0,\n\t0,\n\t0,\n\t17846,\n\t0,\n\t0,\n\t0,\n\t17848,\n\t17850,\n\t17854,\n\t0,\n\t17855,\n\t0,\n\t0,\n\t17859,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17860,\n\t17861,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17870,\n\t17871,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17872,\n\t0,\n\t0,\n\t0,\n\t17879,\n\t0,\n\t0,\n\t0,\n\t17881,\n\t17883,\n\t0,\n\t17884,\n\t0,\n\t17885,\n\t0,\n\t0,\n\t17886,\n\t0,\n\t0,\n\t17887,\n\t17891,\n\t17953,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17954,\n\t0,\n\t0,\n\t17955,\n\t0,\n\t17968,\n\t0,\n\t0,\n\t17972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t17976,\n\t17978,\n\t0,\n\t0,\n\t17983,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18003,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18007,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18009,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18010,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18012,\n\t0,\n\t0,\n\t18014,\n\t0,\n\t0,\n\t0,\n\t18015,\n\t0,\n\t0,\n\t0,\n\t18016,\n\t0,\n\t18017,\n\t0,\n\t0,\n\t0,\n\t18030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18031,\n\t0,\n\t0,\n\t18036,\n\t18037,\n\t18038,\n\t0,\n\t0,\n\t18049,\n\t18056,\n\t0,\n\t18057,\n\t18058,\n\t0,\n\t18059,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18062,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18064,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18067,\n\t0,\n\t0,\n\t0,\n\t18068,\n\t0,\n\t0,\n\t18075,\n\t0,\n\t0,\n\t18078,\n\t18093,\n\t18094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18097,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18098,\n\t18100,\n\t0,\n\t0,\n\t0,\n\t18108,\n\t0,\n\t18111,\n\t0,\n\t0,\n\t18112,\n\t0,\n\t18113,\n\t0,\n\t0,\n\t18115,\n\t18116,\n\t0,\n\t18118,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18121,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18123,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18124,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18125,\n\t18126,\n\t0,\n\t18127,\n\t0,\n\t0,\n\t18128,\n\t18135,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18150,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18151,\n\t18152,\n\t0,\n\t0,\n\t18156,\n\t18164,\n\t0,\n\t18166,\n\t18171,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18172,\n\t18183,\n\t0,\n\t18184,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18185,\n\t0,\n\t18187,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18188,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18189,\n\t0,\n\t0,\n\t18190,\n\t0,\n\t0,\n\t18191,\n\t18192,\n\t0,\n\t0,\n\t18194,\n\t18195,\n\t18196,\n\t0,\n\t0,\n\t0,\n\t18197,\n\t0,\n\t18203,\n\t0,\n\t18204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18205,\n\t0,\n\t0,\n\t0,\n\t18207,\n\t18208,\n\t0,\n\t0,\n\t18214,\n\t0,\n\t0,\n\t0,\n\t18215,\n\t18216,\n\t0,\n\t0,\n\t0,\n\t18220,\n\t0,\n\t0,\n\t18222,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18223,\n\t0,\n\t18225,\n\t18231,\n\t0,\n\t18234,\n\t0,\n\t18235,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18240,\n\t0,\n\t0,\n\t18241,\n\t18242,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18243,\n\t18251,\n\t0,\n\t18253,\n\t0,\n\t18254,\n\t0,\n\t0,\n\t0,\n\t18266,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18269,\n\t18270,\n\t18271,\n\t18273,\n\t18281,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18282,\n\t0,\n\t18283,\n\t0,\n\t18284,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18285,\n\t0,\n\t18287,\n\t18289,\n\t0,\n\t0,\n\t18290,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18308,\n\t0,\n\t0,\n\t0,\n\t18310,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18311,\n\t0,\n\t18312,\n\t18313,\n\t0,\n\t18315,\n\t0,\n\t0,\n\t18316,\n\t18320,\n\t0,\n\t18331,\n\t0,\n\t18332,\n\t0,\n\t18336,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18337,\n\t0,\n\t18340,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18341,\n\t0,\n\t18344,\n\t18345,\n\t0,\n\t18346,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18348,\n\t0,\n\t18351,\n\t0,\n\t0,\n\t18356,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18357,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18367,\n\t0,\n\t0,\n\t0,\n\t18368,\n\t0,\n\t18369,\n\t0,\n\t18370,\n\t18371,\n\t0,\n\t0,\n\t0,\n\t18437,\n\t18444,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18445,\n\t18450,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18451,\n\t0,\n\t18452,\n\t0,\n\t0,\n\t0,\n\t18453,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18455,\n\t0,\n\t0,\n\t0,\n\t18456,\n\t0,\n\t18457,\n\t0,\n\t18460,\n\t0,\n\t0,\n\t18461,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18466,\n\t0,\n\t0,\n\t18467,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18473,\n\t0,\n\t0,\n\t0,\n\t18476,\n\t0,\n\t18477,\n\t0,\n\t0,\n\t0,\n\t18478,\n\t18479,\n\t18480,\n\t0,\n\t0,\n\t0,\n\t18485,\n\t0,\n\t0,\n\t0,\n\t18486,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18488,\n\t18490,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18491,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18495,\n\t0,\n\t0,\n\t18496,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18505,\n\t0,\n\t18521,\n\t0,\n\t18522,\n\t18523,\n\t0,\n\t0,\n\t0,\n\t18525,\n\t18526,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18527,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18532,\n\t18533,\n\t0,\n\t18534,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18535,\n\t18537,\n\t0,\n\t18538,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18540,\n\t18541,\n\t18542,\n\t18543,\n\t0,\n\t18546,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18553,\n\t18556,\n\t0,\n\t0,\n\t18558,\n\t0,\n\t0,\n\t18569,\n\t18571,\n\t0,\n\t0,\n\t0,\n\t18572,\n\t0,\n\t18574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18586,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18588,\n\t0,\n\t0,\n\t18589,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18590,\n\t0,\n\t18592,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18594,\n\t0,\n\t0,\n\t0,\n\t18596,\n\t0,\n\t0,\n\t18597,\n\t18598,\n\t0,\n\t0,\n\t18601,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18602,\n\t0,\n\t0,\n\t0,\n\t18603,\n\t18604,\n\t0,\n\t18605,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18608,\n\t0,\n\t0,\n\t18611,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18612,\n\t0,\n\t18616,\n\t0,\n\t0,\n\t18617,\n\t18619,\n\t0,\n\t0,\n\t0,\n\t18628,\n\t0,\n\t0,\n\t0,\n\t18629,\n\t0,\n\t0,\n\t18630,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18631,\n\t0,\n\t18632,\n\t0,\n\t0,\n\t18635,\n\t18637,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18641,\n\t18643,\n\t18648,\n\t0,\n\t18652,\n\t0,\n\t0,\n\t18653,\n\t0,\n\t18655,\n\t18656,\n\t0,\n\t0,\n\t0,\n\t18657,\n\t0,\n\t0,\n\t18666,\n\t18674,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18677,\n\t18684,\n\t18685,\n\t0,\n\t0,\n\t18686,\n\t0,\n\t0,\n\t18690,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18695,\n\t18696,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18697,\n\t0,\n\t0,\n\t18700,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18702,\n\t0,\n\t18708,\n\t0,\n\t0,\n\t18709,\n\t0,\n\t18710,\n\t0,\n\t0,\n\t18711,\n\t0,\n\t18714,\n\t0,\n\t0,\n\t18718,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18719,\n\t0,\n\t0,\n\t18722,\n\t0,\n\t18726,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18731,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18739,\n\t18741,\n\t0,\n\t0,\n\t18742,\n\t0,\n\t18743,\n\t18744,\n\t18746,\n\t18748,\n\t0,\n\t18752,\n\t18753,\n\t0,\n\t0,\n\t18754,\n\t18763,\n\t0,\n\t18765,\n\t0,\n\t0,\n\t0,\n\t18766,\n\t0,\n\t0,\n\t0,\n\t18769,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18773,\n\t18778,\n\t18779,\n\t18781,\n\t0,\n\t0,\n\t18784,\n\t18787,\n\t0,\n\t18788,\n\t0,\n\t18793,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18795,\n\t0,\n\t0,\n\t18800,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18801,\n\t18804,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18806,\n\t0,\n\t0,\n\t0,\n\t18811,\n\t18815,\n\t18816,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18825,\n\t0,\n\t0,\n\t18827,\n\t18829,\n\t0,\n\t0,\n\t18830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18831,\n\t0,\n\t0,\n\t18832,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18833,\n\t0,\n\t18840,\n\t0,\n\t18841,\n\t0,\n\t18842,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18843,\n\t0,\n\t18844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18845,\n\t18846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18848,\n\t0,\n\t0,\n\t0,\n\t18853,\n\t18860,\n\t0,\n\t0,\n\t18862,\n\t18866,\n\t0,\n\t0,\n\t18867,\n\t18869,\n\t0,\n\t0,\n\t18874,\n\t18881,\n\t18891,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18892,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18895,\n\t0,\n\t18896,\n\t0,\n\t0,\n\t0,\n\t18900,\n\t0,\n\t0,\n\t0,\n\t18901,\n\t0,\n\t18902,\n\t18915,\n\t18916,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18920,\n\t0,\n\t0,\n\t0,\n\t18921,\n\t18929,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18930,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18932,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18934,\n\t18942,\n\t0,\n\t0,\n\t0,\n\t18951,\n\t18957,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18959,\n\t18960,\n\t0,\n\t0,\n\t18961,\n\t0,\n\t0,\n\t18962,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18963,\n\t18964,\n\t0,\n\t0,\n\t0,\n\t18965,\n\t0,\n\t18967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18968,\n\t0,\n\t18969,\n\t0,\n\t18970,\n\t18973,\n\t18976,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18977,\n\t0,\n\t0,\n\t0,\n\t18981,\n\t0,\n\t0,\n\t0,\n\t18990,\n\t0,\n\t18998,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t18999,\n\t19003,\n\t0,\n\t0,\n\t19005,\n\t0,\n\t0,\n\t0,\n\t19006,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19008,\n\t19011,\n\t0,\n\t0,\n\t19018,\n\t0,\n\t0,\n\t19019,\n\t0,\n\t19024,\n\t0,\n\t19031,\n\t19032,\n\t0,\n\t19039,\n\t0,\n\t19041,\n\t19050,\n\t0,\n\t0,\n\t0,\n\t19051,\n\t19055,\n\t19056,\n\t0,\n\t19059,\n\t19063,\n\t19064,\n\t0,\n\t0,\n\t19088,\n\t0,\n\t0,\n\t0,\n\t19093,\n\t19094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19095,\n\t0,\n\t19096,\n\t0,\n\t0,\n\t0,\n\t19097,\n\t0,\n\t0,\n\t19098,\n\t0,\n\t19099,\n\t19100,\n\t0,\n\t0,\n\t19103,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19111,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19112,\n\t0,\n\t0,\n\t0,\n\t19116,\n\t19117,\n\t0,\n\t19121,\n\t19122,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19123,\n\t19124,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19125,\n\t19126,\n\t0,\n\t19128,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19129,\n\t19130,\n\t19131,\n\t19132,\n\t0,\n\t0,\n\t19146,\n\t0,\n\t0,\n\t19147,\n\t19156,\n\t19158,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19182,\n\t19185,\n\t0,\n\t0,\n\t19187,\n\t0,\n\t0,\n\t0,\n\t19193,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19194,\n\t0,\n\t19197,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19202,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19203,\n\t0,\n\t19205,\n\t19210,\n\t0,\n\t0,\n\t0,\n\t19213,\n\t0,\n\t19218,\n\t0,\n\t0,\n\t0,\n\t19223,\n\t19229,\n\t0,\n\t0,\n\t19230,\n\t0,\n\t0,\n\t19231,\n\t19232,\n\t19233,\n\t19239,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19240,\n\t0,\n\t19248,\n\t19249,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19254,\n\t0,\n\t19256,\n\t19258,\n\t19259,\n\t0,\n\t0,\n\t19261,\n\t0,\n\t19266,\n\t0,\n\t0,\n\t0,\n\t19272,\n\t0,\n\t19278,\n\t19281,\n\t19282,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19283,\n\t0,\n\t0,\n\t19284,\n\t0,\n\t0,\n\t19285,\n\t19287,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19288,\n\t19291,\n\t0,\n\t19292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19297,\n\t0,\n\t19298,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19302,\n\t19303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19304,\n\t19305,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19314,\n\t0,\n\t0,\n\t19315,\n\t0,\n\t0,\n\t19321,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19322,\n\t0,\n\t19333,\n\t0,\n\t19334,\n\t19335,\n\t0,\n\t19336,\n\t19337,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19346,\n\t0,\n\t0,\n\t19353,\n\t0,\n\t19354,\n\t19362,\n\t0,\n\t19366,\n\t19367,\n\t0,\n\t0,\n\t19369,\n\t0,\n\t19375,\n\t0,\n\t19377,\n\t19380,\n\t19388,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19389,\n\t19390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19392,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19402,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19412,\n\t0,\n\t0,\n\t19413,\n\t19422,\n\t0,\n\t19424,\n\t0,\n\t0,\n\t0,\n\t19425,\n\t0,\n\t0,\n\t0,\n\t19428,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19431,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19432,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19448,\n\t19459,\n\t0,\n\t0,\n\t19461,\n\t0,\n\t19462,\n\t19463,\n\t0,\n\t19467,\n\t19474,\n\t19482,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19501,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19502,\n\t19504,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19505,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19506,\n\t19507,\n\t0,\n\t0,\n\t0,\n\t19508,\n\t0,\n\t0,\n\t19511,\n\t0,\n\t0,\n\t19514,\n\t0,\n\t19515,\n\t0,\n\t19516,\n\t0,\n\t19518,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19530,\n\t0,\n\t19537,\n\t19538,\n\t0,\n\t19543,\n\t19546,\n\t0,\n\t19547,\n\t19551,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19552,\n\t19553,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19555,\n\t0,\n\t0,\n\t19556,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19560,\n\t19561,\n\t0,\n\t0,\n\t19562,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19565,\n\t19567,\n\t0,\n\t19568,\n\t0,\n\t0,\n\t0,\n\t19569,\n\t19570,\n\t0,\n\t19578,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19580,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19581,\n\t19584,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19585,\n\t19586,\n\t0,\n\t0,\n\t0,\n\t19587,\n\t19588,\n\t0,\n\t19589,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19592,\n\t19593,\n\t19599,\n\t0,\n\t19600,\n\t0,\n\t0,\n\t19604,\n\t0,\n\t0,\n\t19605,\n\t0,\n\t19606,\n\t19608,\n\t19610,\n\t0,\n\t19613,\n\t19614,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19616,\n\t19617,\n\t0,\n\t0,\n\t19618,\n\t0,\n\t0,\n\t19619,\n\t0,\n\t0,\n\t0,\n\t19620,\n\t19621,\n\t19631,\n\t0,\n\t0,\n\t19632,\n\t19634,\n\t19636,\n\t0,\n\t19643,\n\t0,\n\t0,\n\t19644,\n\t19658,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19659,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19675,\n\t19677,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19679,\n\t0,\n\t19683,\n\t0,\n\t19684,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19687,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19688,\n\t19689,\n\t19692,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19695,\n\t19697,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19698,\n\t19699,\n\t0,\n\t0,\n\t19700,\n\t0,\n\t19702,\n\t0,\n\t0,\n\t19703,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19704,\n\t19708,\n\t0,\n\t19710,\n\t0,\n\t19713,\n\t0,\n\t0,\n\t0,\n\t19715,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19718,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19720,\n\t0,\n\t19722,\n\t0,\n\t0,\n\t19725,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19730,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19731,\n\t0,\n\t19734,\n\t19735,\n\t19739,\n\t0,\n\t0,\n\t19740,\n\t0,\n\t19741,\n\t0,\n\t0,\n\t0,\n\t19746,\n\t0,\n\t0,\n\t19747,\n\t0,\n\t19771,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19772,\n\t19775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19778,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19779,\n\t0,\n\t0,\n\t19780,\n\t19790,\n\t0,\n\t19791,\n\t0,\n\t0,\n\t19792,\n\t0,\n\t0,\n\t0,\n\t19793,\n\t0,\n\t0,\n\t19796,\n\t19797,\n\t0,\n\t0,\n\t0,\n\t19799,\n\t0,\n\t0,\n\t0,\n\t19801,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19803,\n\t0,\n\t19804,\n\t0,\n\t19805,\n\t0,\n\t0,\n\t19807,\n\t0,\n\t0,\n\t0,\n\t19808,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19809,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19816,\n\t0,\n\t19821,\n\t0,\n\t19822,\n\t19830,\n\t19831,\n\t0,\n\t0,\n\t0,\n\t19833,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19838,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19839,\n\t0,\n\t0,\n\t19843,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19847,\n\t0,\n\t0,\n\t19848,\n\t0,\n\t19849,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19851,\n\t0,\n\t0,\n\t0,\n\t19854,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19864,\n\t0,\n\t19865,\n\t0,\n\t19866,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19868,\n\t0,\n\t0,\n\t19870,\n\t0,\n\t0,\n\t19871,\n\t0,\n\t0,\n\t19872,\n\t19873,\n\t19875,\n\t0,\n\t19880,\n\t19882,\n\t19884,\n\t0,\n\t0,\n\t19885,\n\t19886,\n\t19888,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19890,\n\t19892,\n\t19893,\n\t0,\n\t0,\n\t19894,\n\t0,\n\t0,\n\t0,\n\t19895,\n\t0,\n\t19896,\n\t19902,\n\t0,\n\t0,\n\t19903,\n\t0,\n\t0,\n\t19905,\n\t0,\n\t0,\n\t0,\n\t19906,\n\t0,\n\t19908,\n\t0,\n\t19909,\n\t19911,\n\t0,\n\t0,\n\t0,\n\t19913,\n\t19920,\n\t0,\n\t19938,\n\t19939,\n\t19940,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19942,\n\t0,\n\t19943,\n\t0,\n\t19945,\n\t0,\n\t0,\n\t0,\n\t19951,\n\t19952,\n\t19954,\n\t19960,\n\t0,\n\t19965,\n\t0,\n\t19971,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t19975,\n\t0,\n\t19976,\n\t0,\n\t19990,\n\t0,\n\t0,\n\t19991,\n\t0,\n\t19993,\n\t0,\n\t19995,\n\t0,\n\t0,\n\t0,\n\t19998,\n\t19999,\n\t20001,\n\t0,\n\t20003,\n\t20005,\n\t0,\n\t20011,\n\t20012,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20014,\n\t0,\n\t20020,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20021,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20023,\n\t20024,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20025,\n\t0,\n\t0,\n\t20027,\n\t0,\n\t0,\n\t20029,\n\t0,\n\t0,\n\t20032,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20044,\n\t20045,\n\t0,\n\t20048,\n\t20049,\n\t0,\n\t0,\n\t20050,\n\t0,\n\t20052,\n\t0,\n\t0,\n\t20054,\n\t20057,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20059,\n\t0,\n\t0,\n\t20061,\n\t0,\n\t20062,\n\t0,\n\t20064,\n\t0,\n\t0,\n\t20066,\n\t0,\n\t0,\n\t20067,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20069,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20070,\n\t20071,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20072,\n\t0,\n\t0,\n\t20073,\n\t20074,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20075,\n\t0,\n\t20078,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20080,\n\t0,\n\t20081,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20095,\n\t0,\n\t20098,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20107,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20112,\n\t0,\n\t0,\n\t0,\n\t20113,\n\t20114,\n\t0,\n\t0,\n\t0,\n\t20115,\n\t20123,\n\t20124,\n\t0,\n\t0,\n\t0,\n\t20131,\n\t20133,\n\t20134,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20136,\n\t0,\n\t0,\n\t20137,\n\t20138,\n\t20150,\n\t0,\n\t20152,\n\t0,\n\t0,\n\t0,\n\t20153,\n\t0,\n\t0,\n\t20154,\n\t0,\n\t0,\n\t0,\n\t20158,\n\t0,\n\t20163,\n\t0,\n\t0,\n\t20164,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20166,\n\t0,\n\t20168,\n\t0,\n\t20170,\n\t0,\n\t20175,\n\t0,\n\t0,\n\t20178,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20223,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20224,\n\t0,\n\t20226,\n\t0,\n\t0,\n\t20230,\n\t0,\n\t20231,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20232,\n\t0,\n\t0,\n\t20233,\n\t20234,\n\t0,\n\t20244,\n\t0,\n\t20247,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20249,\n\t0,\n\t0,\n\t0,\n\t20250,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20251,\n\t0,\n\t20253,\n\t0,\n\t20254,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20256,\n\t0,\n\t0,\n\t20264,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20266,\n\t0,\n\t0,\n\t0,\n\t20278,\n\t0,\n\t0,\n\t20279,\n\t20282,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20283,\n\t0,\n\t20284,\n\t0,\n\t20285,\n\t0,\n\t20287,\n\t20290,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20293,\n\t20297,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20299,\n\t0,\n\t20300,\n\t20303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20307,\n\t0,\n\t0,\n\t20308,\n\t0,\n\t20309,\n\t0,\n\t20310,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20312,\n\t0,\n\t0,\n\t0,\n\t20314,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20315,\n\t20316,\n\t0,\n\t20322,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20339,\n\t0,\n\t0,\n\t0,\n\t20342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20352,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20362,\n\t0,\n\t0,\n\t20365,\n\t0,\n\t20375,\n\t20377,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20378,\n\t20379,\n\t0,\n\t20380,\n\t0,\n\t0,\n\t20381,\n\t0,\n\t20382,\n\t0,\n\t20383,\n\t0,\n\t20388,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20390,\n\t20392,\n\t20393,\n\t0,\n\t0,\n\t20395,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20396,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20398,\n\t20415,\n\t0,\n\t0,\n\t0,\n\t20417,\n\t0,\n\t0,\n\t20420,\n\t0,\n\t0,\n\t20426,\n\t20428,\n\t0,\n\t20431,\n\t0,\n\t0,\n\t20432,\n\t0,\n\t20433,\n\t20434,\n\t20435,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20440,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20442,\n\t0,\n\t20443,\n\t0,\n\t20446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20448,\n\t0,\n\t20451,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20452,\n\t20453,\n\t0,\n\t0,\n\t20454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20457,\n\t0,\n\t20458,\n\t0,\n\t0,\n\t0,\n\t20465,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20469,\n\t0,\n\t0,\n\t0,\n\t20473,\n\t0,\n\t20476,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20477,\n\t0,\n\t0,\n\t20485,\n\t0,\n\t0,\n\t20486,\n\t0,\n\t0,\n\t20487,\n\t0,\n\t20496,\n\t0,\n\t20497,\n\t0,\n\t0,\n\t20498,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20499,\n\t20500,\n\t0,\n\t20501,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20520,\n\t20527,\n\t0,\n\t20529,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20539,\n\t0,\n\t0,\n\t20540,\n\t0,\n\t0,\n\t0,\n\t20543,\n\t0,\n\t0,\n\t0,\n\t20546,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20548,\n\t0,\n\t0,\n\t20563,\n\t0,\n\t0,\n\t20564,\n\t0,\n\t20566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20589,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20590,\n\t0,\n\t0,\n\t20593,\n\t20594,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20595,\n\t0,\n\t20597,\n\t20598,\n\t0,\n\t0,\n\t0,\n\t20618,\n\t20620,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20621,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20627,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20628,\n\t0,\n\t0,\n\t0,\n\t20629,\n\t0,\n\t20630,\n\t0,\n\t0,\n\t20639,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20707,\n\t0,\n\t0,\n\t20709,\n\t0,\n\t0,\n\t0,\n\t20713,\n\t20714,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20724,\n\t20725,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20726,\n\t20728,\n\t20729,\n\t0,\n\t20733,\n\t0,\n\t20734,\n\t0,\n\t20735,\n\t20736,\n\t0,\n\t20737,\n\t0,\n\t0,\n\t20744,\n\t0,\n\t20745,\n\t0,\n\t20748,\n\t0,\n\t0,\n\t20749,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20750,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20754,\n\t0,\n\t0,\n\t0,\n\t20761,\n\t0,\n\t0,\n\t20763,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20766,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20767,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20768,\n\t0,\n\t20769,\n\t20777,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20785,\n\t0,\n\t0,\n\t0,\n\t20786,\n\t20795,\n\t20801,\n\t0,\n\t20802,\n\t0,\n\t20807,\n\t0,\n\t0,\n\t20808,\n\t0,\n\t0,\n\t20810,\n\t0,\n\t0,\n\t20811,\n\t0,\n\t20812,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20813,\n\t0,\n\t0,\n\t20818,\n\t20820,\n\t20821,\n\t0,\n\t0,\n\t0,\n\t20822,\n\t0,\n\t20823,\n\t0,\n\t0,\n\t0,\n\t20826,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20829,\n\t20830,\n\t20831,\n\t0,\n\t20832,\n\t20836,\n\t0,\n\t0,\n\t20839,\n\t0,\n\t0,\n\t20840,\n\t20842,\n\t0,\n\t20843,\n\t0,\n\t20844,\n\t0,\n\t20854,\n\t0,\n\t0,\n\t0,\n\t20855,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20856,\n\t0,\n\t0,\n\t0,\n\t20869,\n\t0,\n\t0,\n\t20871,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20873,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20876,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20880,\n\t0,\n\t0,\n\t20882,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20883,\n\t20884,\n\t0,\n\t0,\n\t20890,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20891,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20905,\n\t0,\n\t20906,\n\t20910,\n\t0,\n\t0,\n\t20912,\n\t20915,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20916,\n\t0,\n\t20917,\n\t0,\n\t20919,\n\t20920,\n\t20922,\n\t0,\n\t20927,\n\t0,\n\t20928,\n\t20929,\n\t20930,\n\t0,\n\t0,\n\t20935,\n\t0,\n\t0,\n\t20939,\n\t0,\n\t0,\n\t20941,\n\t0,\n\t0,\n\t0,\n\t20943,\n\t0,\n\t0,\n\t0,\n\t20946,\n\t20947,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20950,\n\t0,\n\t20954,\n\t0,\n\t0,\n\t20955,\n\t20964,\n\t0,\n\t0,\n\t20967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20973,\n\t20975,\n\t0,\n\t0,\n\t0,\n\t20984,\n\t0,\n\t20987,\n\t20988,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t20989,\n\t0,\n\t0,\n\t0,\n\t20995,\n\t0,\n\t20998,\n\t0,\n\t20999,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21000,\n\t21001,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21008,\n\t0,\n\t21010,\n\t0,\n\t21016,\n\t0,\n\t0,\n\t0,\n\t21017,\n\t21018,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21021,\n\t21026,\n\t21027,\n\t21028,\n\t0,\n\t0,\n\t21029,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21031,\n\t21032,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21037,\n\t0,\n\t0,\n\t21038,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21039,\n\t0,\n\t21041,\n\t0,\n\t21046,\n\t21047,\n\t0,\n\t0,\n\t0,\n\t21049,\n\t21053,\n\t0,\n\t0,\n\t21057,\n\t21064,\n\t21065,\n\t0,\n\t0,\n\t21066,\n\t21067,\n\t0,\n\t0,\n\t0,\n\t21069,\n\t0,\n\t0,\n\t0,\n\t21071,\n\t21072,\n\t0,\n\t0,\n\t21073,\n\t0,\n\t21074,\n\t0,\n\t0,\n\t21078,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21079,\n\t0,\n\t0,\n\t21080,\n\t21081,\n\t0,\n\t0,\n\t21086,\n\t21087,\n\t0,\n\t21089,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21091,\n\t0,\n\t21093,\n\t0,\n\t21094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21096,\n\t0,\n\t21098,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21099,\n\t0,\n\t0,\n\t21100,\n\t21101,\n\t21102,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21103,\n\t0,\n\t21104,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21105,\n\t21108,\n\t21109,\n\t0,\n\t0,\n\t21112,\n\t21113,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21115,\n\t21122,\n\t21123,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21125,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21129,\n\t21131,\n\t0,\n\t0,\n\t21134,\n\t0,\n\t0,\n\t0,\n\t21137,\n\t21142,\n\t0,\n\t21143,\n\t0,\n\t0,\n\t21144,\n\t0,\n\t21145,\n\t21146,\n\t0,\n\t21152,\n\t21154,\n\t21155,\n\t21156,\n\t0,\n\t0,\n\t0,\n\t21160,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21161,\n\t0,\n\t21164,\n\t0,\n\t21166,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21170,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21171,\n\t0,\n\t0,\n\t21172,\n\t0,\n\t21174,\n\t0,\n\t21175,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21176,\n\t21179,\n\t21188,\n\t0,\n\t0,\n\t0,\n\t21189,\n\t0,\n\t0,\n\t21190,\n\t0,\n\t0,\n\t0,\n\t21192,\n\t0,\n\t0,\n\t21193,\n\t0,\n\t0,\n\t0,\n\t21198,\n\t0,\n\t21212,\n\t0,\n\t0,\n\t21213,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21215,\n\t21216,\n\t0,\n\t0,\n\t21223,\n\t21225,\n\t0,\n\t21226,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21227,\n\t21228,\n\t0,\n\t0,\n\t21229,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21230,\n\t21236,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21237,\n\t0,\n\t0,\n\t21238,\n\t21239,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21256,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21257,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21259,\n\t0,\n\t0,\n\t0,\n\t21263,\n\t0,\n\t21272,\n\t0,\n\t21274,\n\t0,\n\t21282,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21283,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21294,\n\t0,\n\t0,\n\t21297,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21298,\n\t0,\n\t0,\n\t0,\n\t21299,\n\t0,\n\t21300,\n\t21302,\n\t0,\n\t21316,\n\t0,\n\t21318,\n\t21322,\n\t21323,\n\t0,\n\t21324,\n\t0,\n\t21326,\n\t0,\n\t0,\n\t0,\n\t21327,\n\t21328,\n\t0,\n\t0,\n\t0,\n\t21352,\n\t0,\n\t0,\n\t21354,\n\t21361,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21362,\n\t0,\n\t0,\n\t0,\n\t21363,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21366,\n\t0,\n\t0,\n\t21367,\n\t21372,\n\t21374,\n\t0,\n\t0,\n\t0,\n\t21375,\n\t21377,\n\t0,\n\t21378,\n\t0,\n\t0,\n\t0,\n\t21380,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21381,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21382,\n\t0,\n\t21383,\n\t0,\n\t0,\n\t21384,\n\t0,\n\t0,\n\t21385,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21389,\n\t21390,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21397,\n\t21398,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21399,\n\t0,\n\t21400,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21402,\n\t0,\n\t0,\n\t0,\n\t21403,\n\t21404,\n\t0,\n\t21405,\n\t21406,\n\t0,\n\t0,\n\t0,\n\t21407,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21408,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21409,\n\t0,\n\t21421,\n\t0,\n\t21422,\n\t0,\n\t0,\n\t0,\n\t21425,\n\t21428,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21429,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21433,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21434,\n\t0,\n\t21443,\n\t0,\n\t21444,\n\t21449,\n\t0,\n\t21452,\n\t0,\n\t21453,\n\t21454,\n\t0,\n\t0,\n\t0,\n\t21457,\n\t0,\n\t0,\n\t21458,\n\t0,\n\t0,\n\t0,\n\t21460,\n\t21461,\n\t0,\n\t0,\n\t21464,\n\t0,\n\t0,\n\t0,\n\t21473,\n\t21478,\n\t0,\n\t0,\n\t21479,\n\t0,\n\t0,\n\t21481,\n\t21483,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21484,\n\t0,\n\t0,\n\t21485,\n\t21486,\n\t0,\n\t0,\n\t21488,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21523,\n\t0,\n\t0,\n\t21525,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21526,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21529,\n\t21530,\n\t0,\n\t0,\n\t21531,\n\t0,\n\t0,\n\t21533,\n\t0,\n\t0,\n\t21539,\n\t21564,\n\t0,\n\t21567,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21575,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21577,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21591,\n\t0,\n\t0,\n\t21604,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21605,\n\t0,\n\t21606,\n\t0,\n\t0,\n\t21617,\n\t21618,\n\t21619,\n\t21620,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21623,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21631,\n\t0,\n\t21635,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21639,\n\t21646,\n\t21653,\n\t21662,\n\t0,\n\t0,\n\t21663,\n\t21664,\n\t0,\n\t21666,\n\t0,\n\t0,\n\t21667,\n\t0,\n\t21670,\n\t21672,\n\t21673,\n\t0,\n\t21674,\n\t21683,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21684,\n\t0,\n\t21694,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21695,\n\t21700,\n\t0,\n\t21703,\n\t0,\n\t21704,\n\t0,\n\t0,\n\t21709,\n\t0,\n\t0,\n\t0,\n\t21710,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21711,\n\t0,\n\t0,\n\t0,\n\t21712,\n\t0,\n\t21717,\n\t0,\n\t21730,\n\t0,\n\t0,\n\t0,\n\t21731,\n\t21733,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21737,\n\t21741,\n\t21742,\n\t0,\n\t21747,\n\t0,\n\t0,\n\t0,\n\t21749,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21750,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21752,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21753,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21755,\n\t21756,\n\t0,\n\t21757,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21760,\n\t0,\n\t0,\n\t21763,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21764,\n\t0,\n\t0,\n\t21766,\n\t0,\n\t0,\n\t21767,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21773,\n\t0,\n\t21774,\n\t0,\n\t0,\n\t21775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21776,\n\t0,\n\t0,\n\t21777,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21780,\n\t21787,\n\t21788,\n\t21791,\n\t0,\n\t0,\n\t0,\n\t21797,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21805,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21806,\n\t0,\n\t21807,\n\t21809,\n\t0,\n\t21810,\n\t21811,\n\t0,\n\t21817,\n\t21819,\n\t21820,\n\t0,\n\t21823,\n\t0,\n\t21824,\n\t0,\n\t0,\n\t21825,\n\t0,\n\t0,\n\t21826,\n\t21832,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21833,\n\t21848,\n\t21849,\n\t0,\n\t0,\n\t21867,\n\t21870,\n\t21871,\n\t21873,\n\t0,\n\t0,\n\t0,\n\t21874,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21875,\n\t0,\n\t21878,\n\t0,\n\t0,\n\t0,\n\t21879,\n\t0,\n\t21881,\n\t21886,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21887,\n\t0,\n\t0,\n\t21888,\n\t21894,\n\t21895,\n\t21897,\n\t0,\n\t21901,\n\t0,\n\t21904,\n\t0,\n\t0,\n\t21906,\n\t0,\n\t0,\n\t0,\n\t21909,\n\t21910,\n\t21911,\n\t0,\n\t0,\n\t21912,\n\t0,\n\t0,\n\t21913,\n\t21914,\n\t21915,\n\t0,\n\t21919,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21921,\n\t0,\n\t0,\n\t21922,\n\t21933,\n\t21939,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21944,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21945,\n\t0,\n\t21947,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21949,\n\t0,\n\t0,\n\t0,\n\t21950,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21951,\n\t0,\n\t21952,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21954,\n\t21957,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21958,\n\t0,\n\t21959,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21962,\n\t21963,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21964,\n\t21965,\n\t0,\n\t0,\n\t21969,\n\t21970,\n\t0,\n\t0,\n\t0,\n\t21974,\n\t0,\n\t0,\n\t21980,\n\t21981,\n\t0,\n\t21982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t21985,\n\t0,\n\t21988,\n\t0,\n\t21992,\n\t0,\n\t21999,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22001,\n\t0,\n\t22002,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22003,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22004,\n\t0,\n\t0,\n\t0,\n\t22008,\n\t0,\n\t22009,\n\t22015,\n\t0,\n\t0,\n\t22016,\n\t0,\n\t0,\n\t0,\n\t22017,\n\t22019,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22020,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22021,\n\t22037,\n\t0,\n\t22039,\n\t0,\n\t0,\n\t0,\n\t22040,\n\t0,\n\t0,\n\t0,\n\t22048,\n\t22049,\n\t0,\n\t0,\n\t22053,\n\t22055,\n\t22056,\n\t22059,\n\t0,\n\t0,\n\t22060,\n\t22061,\n\t0,\n\t0,\n\t22064,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22066,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22073,\n\t0,\n\t0,\n\t0,\n\t22074,\n\t22075,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22076,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22077,\n\t22084,\n\t22099,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22104,\n\t0,\n\t0,\n\t22107,\n\t0,\n\t22108,\n\t0,\n\t22109,\n\t0,\n\t22110,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22111,\n\t22119,\n\t0,\n\t22120,\n\t22122,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22125,\n\t0,\n\t0,\n\t0,\n\t22128,\n\t22129,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22141,\n\t0,\n\t0,\n\t0,\n\t22142,\n\t0,\n\t0,\n\t22144,\n\t22146,\n\t0,\n\t22148,\n\t22149,\n\t22151,\n\t22154,\n\t0,\n\t0,\n\t0,\n\t22162,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22164,\n\t22177,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22179,\n\t0,\n\t22182,\n\t22183,\n\t0,\n\t0,\n\t22184,\n\t22188,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22190,\n\t0,\n\t22194,\n\t22201,\n\t0,\n\t0,\n\t22208,\n\t0,\n\t22209,\n\t0,\n\t22212,\n\t0,\n\t0,\n\t22215,\n\t0,\n\t22223,\n\t22231,\n\t0,\n\t0,\n\t22232,\n\t0,\n\t22234,\n\t0,\n\t0,\n\t22235,\n\t22236,\n\t0,\n\t22237,\n\t0,\n\t22240,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22241,\n\t0,\n\t0,\n\t0,\n\t22242,\n\t22246,\n\t22247,\n\t0,\n\t0,\n\t0,\n\t22259,\n\t22268,\n\t0,\n\t22269,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22270,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22271,\n\t0,\n\t22272,\n\t0,\n\t22277,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22278,\n\t22280,\n\t22283,\n\t22286,\n\t0,\n\t0,\n\t22287,\n\t22289,\n\t0,\n\t0,\n\t22290,\n\t0,\n\t22293,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22295,\n\t0,\n\t22301,\n\t22302,\n\t0,\n\t0,\n\t0,\n\t22305,\n\t0,\n\t22308,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22315,\n\t0,\n\t0,\n\t0,\n\t22317,\n\t0,\n\t22334,\n\t0,\n\t0,\n\t0,\n\t22335,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22336,\n\t0,\n\t22338,\n\t22344,\n\t0,\n\t22347,\n\t22349,\n\t0,\n\t22350,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22357,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22358,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22359,\n\t22360,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22361,\n\t22366,\n\t0,\n\t0,\n\t22369,\n\t0,\n\t22370,\n\t22373,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22375,\n\t0,\n\t22377,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22378,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22381,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22382,\n\t0,\n\t22383,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22391,\n\t0,\n\t0,\n\t22392,\n\t22395,\n\t22396,\n\t22402,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22405,\n\t0,\n\t0,\n\t22406,\n\t0,\n\t0,\n\t22408,\n\t0,\n\t0,\n\t22409,\n\t22410,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22424,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22426,\n\t0,\n\t0,\n\t0,\n\t22427,\n\t0,\n\t22428,\n\t0,\n\t22432,\n\t0,\n\t22435,\n\t22442,\n\t22443,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22444,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22446,\n\t0,\n\t22454,\n\t0,\n\t22455,\n\t0,\n\t0,\n\t0,\n\t22465,\n\t0,\n\t22470,\n\t0,\n\t22471,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22472,\n\t22473,\n\t0,\n\t22487,\n\t0,\n\t0,\n\t0,\n\t22488,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22489,\n\t0,\n\t0,\n\t22499,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22514,\n\t0,\n\t0,\n\t22515,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22516,\n\t0,\n\t0,\n\t0,\n\t22517,\n\t22520,\n\t0,\n\t0,\n\t0,\n\t22534,\n\t0,\n\t0,\n\t22535,\n\t0,\n\t0,\n\t22536,\n\t0,\n\t22540,\n\t22553,\n\t0,\n\t22555,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22561,\n\t0,\n\t0,\n\t22562,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22567,\n\t22568,\n\t0,\n\t0,\n\t22575,\n\t0,\n\t22579,\n\t0,\n\t22582,\n\t22583,\n\t22585,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22586,\n\t0,\n\t0,\n\t22587,\n\t0,\n\t0,\n\t22590,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22591,\n\t0,\n\t22592,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22593,\n\t0,\n\t22602,\n\t0,\n\t0,\n\t22604,\n\t0,\n\t0,\n\t22609,\n\t0,\n\t0,\n\t22618,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22619,\n\t0,\n\t22624,\n\t22625,\n\t0,\n\t0,\n\t22638,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22639,\n\t0,\n\t0,\n\t22640,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22644,\n\t0,\n\t22645,\n\t22647,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22652,\n\t22653,\n\t0,\n\t0,\n\t0,\n\t22654,\n\t0,\n\t22655,\n\t0,\n\t0,\n\t0,\n\t22656,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22673,\n\t22675,\n\t22676,\n\t0,\n\t0,\n\t22678,\n\t22679,\n\t0,\n\t22691,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22693,\n\t0,\n\t0,\n\t22696,\n\t0,\n\t22699,\n\t22707,\n\t22708,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22718,\n\t0,\n\t22719,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22723,\n\t0,\n\t0,\n\t0,\n\t22724,\n\t22725,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22726,\n\t22728,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22729,\n\t0,\n\t0,\n\t22731,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22732,\n\t22735,\n\t22736,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22739,\n\t0,\n\t22749,\n\t0,\n\t0,\n\t22751,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22758,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22760,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22764,\n\t22765,\n\t22766,\n\t0,\n\t22768,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22769,\n\t22770,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22771,\n\t0,\n\t0,\n\t22772,\n\t22775,\n\t0,\n\t22776,\n\t22777,\n\t22780,\n\t0,\n\t0,\n\t22782,\n\t22784,\n\t0,\n\t22787,\n\t0,\n\t22789,\n\t22796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22798,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22802,\n\t0,\n\t22803,\n\t22804,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22805,\n\t0,\n\t0,\n\t22810,\n\t22811,\n\t22814,\n\t22816,\n\t0,\n\t22825,\n\t22826,\n\t0,\n\t22831,\n\t22833,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22834,\n\t0,\n\t22836,\n\t22838,\n\t0,\n\t22839,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22840,\n\t0,\n\t22847,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22856,\n\t22857,\n\t0,\n\t22858,\n\t22859,\n\t0,\n\t0,\n\t22862,\n\t0,\n\t0,\n\t22864,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22865,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22866,\n\t0,\n\t22867,\n\t22868,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22869,\n\t0,\n\t22871,\n\t0,\n\t22872,\n\t0,\n\t22873,\n\t22881,\n\t22882,\n\t22884,\n\t22885,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22886,\n\t22887,\n\t0,\n\t22894,\n\t0,\n\t22895,\n\t0,\n\t0,\n\t0,\n\t22900,\n\t0,\n\t22901,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22904,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22905,\n\t22907,\n\t0,\n\t0,\n\t0,\n\t22915,\n\t22917,\n\t0,\n\t0,\n\t22918,\n\t0,\n\t0,\n\t0,\n\t22920,\n\t0,\n\t0,\n\t0,\n\t22929,\n\t22930,\n\t0,\n\t0,\n\t0,\n\t22941,\n\t22942,\n\t0,\n\t0,\n\t0,\n\t22943,\n\t0,\n\t0,\n\t0,\n\t22944,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22946,\n\t0,\n\t22947,\n\t0,\n\t0,\n\t22954,\n\t0,\n\t22956,\n\t0,\n\t0,\n\t22962,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22963,\n\t0,\n\t0,\n\t22964,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22965,\n\t0,\n\t22968,\n\t0,\n\t0,\n\t0,\n\t22969,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22970,\n\t0,\n\t22971,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22978,\n\t0,\n\t0,\n\t22979,\n\t0,\n\t22987,\n\t0,\n\t0,\n\t22989,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t22990,\n\t0,\n\t23005,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23006,\n\t23007,\n\t23008,\n\t0,\n\t0,\n\t23023,\n\t23024,\n\t23029,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23032,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23035,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23038,\n\t0,\n\t0,\n\t0,\n\t23048,\n\t0,\n\t23049,\n\t23052,\n\t23053,\n\t23060,\n\t23061,\n\t0,\n\t23063,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23067,\n\t23068,\n\t0,\n\t0,\n\t0,\n\t23069,\n\t23073,\n\t0,\n\t0,\n\t0,\n\t23127,\n\t0,\n\t23128,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23129,\n\t0,\n\t23138,\n\t23141,\n\t0,\n\t23149,\n\t0,\n\t0,\n\t23150,\n\t0,\n\t0,\n\t0,\n\t23152,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23154,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23157,\n\t23159,\n\t23160,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23180,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23181,\n\t0,\n\t0,\n\t23188,\n\t0,\n\t23189,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23195,\n\t0,\n\t0,\n\t23196,\n\t23199,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23202,\n\t0,\n\t23204,\n\t0,\n\t23207,\n\t0,\n\t23209,\n\t23210,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23227,\n\t23229,\n\t0,\n\t0,\n\t23230,\n\t23234,\n\t23238,\n\t0,\n\t0,\n\t0,\n\t23245,\n\t23246,\n\t23248,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23249,\n\t23254,\n\t0,\n\t0,\n\t0,\n\t23265,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23268,\n\t0,\n\t23276,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23277,\n\t0,\n\t23297,\n\t0,\n\t23298,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23299,\n\t0,\n\t23302,\n\t0,\n\t0,\n\t23303,\n\t23312,\n\t0,\n\t0,\n\t23314,\n\t0,\n\t23320,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23324,\n\t0,\n\t23325,\n\t0,\n\t23328,\n\t0,\n\t23334,\n\t0,\n\t0,\n\t0,\n\t23337,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23343,\n\t23344,\n\t23346,\n\t0,\n\t23348,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23353,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23355,\n\t0,\n\t23356,\n\t23358,\n\t0,\n\t0,\n\t0,\n\t23359,\n\t23360,\n\t0,\n\t23361,\n\t0,\n\t23367,\n\t0,\n\t23369,\n\t0,\n\t0,\n\t23373,\n\t0,\n\t23378,\n\t23379,\n\t0,\n\t23382,\n\t23383,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23387,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23388,\n\t23390,\n\t0,\n\t0,\n\t23393,\n\t23398,\n\t0,\n\t0,\n\t0,\n\t23399,\n\t0,\n\t0,\n\t0,\n\t23400,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23401,\n\t0,\n\t0,\n\t0,\n\t23415,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23416,\n\t0,\n\t23422,\n\t0,\n\t23443,\n\t23444,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23448,\n\t0,\n\t23454,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23456,\n\t0,\n\t0,\n\t23458,\n\t23464,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23465,\n\t0,\n\t0,\n\t0,\n\t23470,\n\t23471,\n\t0,\n\t0,\n\t23472,\n\t0,\n\t0,\n\t0,\n\t23473,\n\t23496,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23497,\n\t0,\n\t23499,\n\t0,\n\t0,\n\t23502,\n\t0,\n\t0,\n\t23503,\n\t0,\n\t0,\n\t23513,\n\t0,\n\t0,\n\t23515,\n\t0,\n\t0,\n\t0,\n\t23517,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23518,\n\t23519,\n\t23521,\n\t23524,\n\t0,\n\t23525,\n\t23528,\n\t23539,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23541,\n\t0,\n\t0,\n\t23544,\n\t0,\n\t0,\n\t23556,\n\t0,\n\t0,\n\t23557,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23559,\n\t0,\n\t23560,\n\t0,\n\t0,\n\t23561,\n\t0,\n\t0,\n\t23566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23568,\n\t23569,\n\t23570,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23571,\n\t0,\n\t23574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23575,\n\t0,\n\t23579,\n\t0,\n\t0,\n\t23581,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23587,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23596,\n\t23598,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23602,\n\t23606,\n\t0,\n\t0,\n\t23607,\n\t0,\n\t23608,\n\t0,\n\t0,\n\t0,\n\t23614,\n\t23616,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23618,\n\t0,\n\t0,\n\t23619,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23621,\n\t23626,\n\t0,\n\t23627,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23629,\n\t0,\n\t23630,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23634,\n\t0,\n\t23636,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23638,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23640,\n\t23667,\n\t0,\n\t23669,\n\t0,\n\t0,\n\t0,\n\t23681,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23682,\n\t0,\n\t23683,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23684,\n\t0,\n\t0,\n\t0,\n\t23685,\n\t23689,\n\t0,\n\t23693,\n\t23694,\n\t23700,\n\t0,\n\t23702,\n\t0,\n\t23709,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23712,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23714,\n\t0,\n\t0,\n\t23715,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23718,\n\t0,\n\t0,\n\t23720,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23722,\n\t0,\n\t0,\n\t0,\n\t23726,\n\t23729,\n\t0,\n\t23741,\n\t23746,\n\t0,\n\t23748,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23749,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23750,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23751,\n\t0,\n\t23753,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23757,\n\t23765,\n\t0,\n\t0,\n\t0,\n\t23770,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23771,\n\t0,\n\t23772,\n\t23781,\n\t0,\n\t0,\n\t23796,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23798,\n\t0,\n\t23799,\n\t0,\n\t0,\n\t0,\n\t23802,\n\t0,\n\t0,\n\t23806,\n\t0,\n\t23807,\n\t0,\n\t0,\n\t23808,\n\t0,\n\t23809,\n\t0,\n\t23819,\n\t0,\n\t0,\n\t0,\n\t23821,\n\t0,\n\t23827,\n\t0,\n\t0,\n\t0,\n\t23829,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23830,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23832,\n\t23833,\n\t23834,\n\t23835,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23837,\n\t23838,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23846,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23847,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23879,\n\t23881,\n\t0,\n\t0,\n\t23882,\n\t23883,\n\t23895,\n\t0,\n\t23899,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23901,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23902,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23903,\n\t23905,\n\t0,\n\t23906,\n\t0,\n\t23907,\n\t23918,\n\t23919,\n\t23920,\n\t0,\n\t23922,\n\t0,\n\t23924,\n\t0,\n\t23927,\n\t0,\n\t23934,\n\t0,\n\t23937,\n\t23941,\n\t0,\n\t23942,\n\t23946,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23955,\n\t23956,\n\t23958,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23959,\n\t0,\n\t23962,\n\t23965,\n\t0,\n\t23966,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23967,\n\t23968,\n\t0,\n\t0,\n\t23973,\n\t0,\n\t0,\n\t23974,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23975,\n\t0,\n\t23976,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23977,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23980,\n\t0,\n\t0,\n\t23984,\n\t0,\n\t23985,\n\t0,\n\t0,\n\t23987,\n\t0,\n\t0,\n\t23988,\n\t23990,\n\t23991,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23992,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23994,\n\t0,\n\t0,\n\t0,\n\t23998,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t23999,\n\t0,\n\t0,\n\t24003,\n\t0,\n\t24004,\n\t0,\n\t24006,\n\t0,\n\t0,\n\t0,\n\t24007,\n\t0,\n\t0,\n\t24008,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24009,\n\t0,\n\t0,\n\t24010,\n\t0,\n\t0,\n\t24011,\n\t0,\n\t0,\n\t24013,\n\t24014,\n\t0,\n\t0,\n\t24015,\n\t24016,\n\t24027,\n\t0,\n\t24028,\n\t24029,\n\t0,\n\t24030,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24033,\n\t24034,\n\t0,\n\t24035,\n\t0,\n\t0,\n\t24036,\n\t0,\n\t0,\n\t24044,\n\t0,\n\t24048,\n\t24049,\n\t24063,\n\t24067,\n\t0,\n\t24068,\n\t24070,\n\t0,\n\t0,\n\t24071,\n\t24078,\n\t24087,\n\t0,\n\t24090,\n\t0,\n\t0,\n\t0,\n\t24095,\n\t0,\n\t24098,\n\t24101,\n\t24104,\n\t24106,\n\t0,\n\t24107,\n\t0,\n\t0,\n\t0,\n\t24108,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24110,\n\t24111,\n\t0,\n\t24113,\n\t0,\n\t0,\n\t24115,\n\t24120,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24124,\n\t0,\n\t24125,\n\t0,\n\t24126,\n\t0,\n\t24127,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24135,\n\t0,\n\t0,\n\t24136,\n\t0,\n\t24137,\n\t24142,\n\t0,\n\t0,\n\t0,\n\t24146,\n\t0,\n\t0,\n\t24147,\n\t24149,\n\t24154,\n\t0,\n\t24163,\n\t0,\n\t0,\n\t0,\n\t24165,\n\t24166,\n\t24167,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24169,\n\t24170,\n\t24175,\n\t0,\n\t0,\n\t0,\n\t24178,\n\t0,\n\t0,\n\t24179,\n\t0,\n\t0,\n\t24181,\n\t0,\n\t24184,\n\t24197,\n\t0,\n\t24201,\n\t24204,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24206,\n\t24212,\n\t24220,\n\t0,\n\t0,\n\t0,\n\t24224,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24226,\n\t0,\n\t24234,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24235,\n\t0,\n\t24236,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24239,\n\t24240,\n\t24241,\n\t0,\n\t0,\n\t24248,\n\t0,\n\t0,\n\t24249,\n\t0,\n\t24251,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24253,\n\t0,\n\t24268,\n\t0,\n\t0,\n\t0,\n\t24269,\n\t0,\n\t24271,\n\t24272,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24273,\n\t0,\n\t0,\n\t24274,\n\t0,\n\t0,\n\t24279,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24280,\n\t0,\n\t24293,\n\t24294,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24296,\n\t0,\n\t0,\n\t24323,\n\t0,\n\t0,\n\t0,\n\t24329,\n\t24330,\n\t24331,\n\t24339,\n\t0,\n\t24351,\n\t0,\n\t0,\n\t24369,\n\t24370,\n\t0,\n\t0,\n\t0,\n\t24371,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24372,\n\t24373,\n\t24374,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24378,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24379,\n\t0,\n\t24381,\n\t0,\n\t24383,\n\t24389,\n\t0,\n\t24390,\n\t0,\n\t0,\n\t24394,\n\t24395,\n\t24400,\n\t0,\n\t0,\n\t0,\n\t24401,\n\t24402,\n\t0,\n\t24406,\n\t0,\n\t0,\n\t0,\n\t24411,\n\t0,\n\t0,\n\t0,\n\t24415,\n\t0,\n\t24416,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24417,\n\t0,\n\t24419,\n\t0,\n\t24422,\n\t0,\n\t24423,\n\t24428,\n\t0,\n\t24435,\n\t0,\n\t0,\n\t0,\n\t24439,\n\t0,\n\t0,\n\t0,\n\t24440,\n\t24442,\n\t24446,\n\t0,\n\t0,\n\t0,\n\t24447,\n\t24448,\n\t24449,\n\t24452,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24453,\n\t24457,\n\t0,\n\t0,\n\t24458,\n\t24459,\n\t24460,\n\t0,\n\t24465,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24470,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24471,\n\t0,\n\t24473,\n\t24474,\n\t24475,\n\t24476,\n\t0,\n\t24478,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24480,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24481,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24482,\n\t24485,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24486,\n\t0,\n\t0,\n\t0,\n\t24488,\n\t0,\n\t0,\n\t0,\n\t24494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24497,\n\t0,\n\t0,\n\t24498,\n\t0,\n\t0,\n\t0,\n\t24499,\n\t24506,\n\t0,\n\t0,\n\t0,\n\t24507,\n\t0,\n\t0,\n\t24511,\n\t0,\n\t0,\n\t24513,\n\t24514,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24517,\n\t0,\n\t24518,\n\t0,\n\t24520,\n\t0,\n\t24521,\n\t24524,\n\t24525,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24527,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24528,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24537,\n\t24539,\n\t0,\n\t24540,\n\t0,\n\t0,\n\t0,\n\t24548,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24549,\n\t24550,\n\t0,\n\t0,\n\t0,\n\t24553,\n\t24554,\n\t0,\n\t24555,\n\t0,\n\t24556,\n\t0,\n\t24558,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24560,\n\t0,\n\t0,\n\t0,\n\t24561,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24562,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24567,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24569,\n\t0,\n\t0,\n\t0,\n\t24574,\n\t0,\n\t24575,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24577,\n\t24581,\n\t0,\n\t24584,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24585,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24586,\n\t0,\n\t0,\n\t24587,\n\t0,\n\t24588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24590,\n\t24591,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24592,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24594,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24596,\n\t24597,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24602,\n\t24603,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24604,\n\t0,\n\t0,\n\t24605,\n\t0,\n\t24610,\n\t0,\n\t0,\n\t24611,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24612,\n\t24615,\n\t24616,\n\t24624,\n\t0,\n\t0,\n\t0,\n\t24627,\n\t0,\n\t24638,\n\t24639,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24640,\n\t0,\n\t0,\n\t0,\n\t24655,\n\t24656,\n\t24657,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24662,\n\t0,\n\t24663,\n\t24664,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24665,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24667,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24668,\n\t24669,\n\t0,\n\t24670,\n\t24674,\n\t0,\n\t0,\n\t0,\n\t24675,\n\t0,\n\t24678,\n\t0,\n\t0,\n\t24679,\n\t0,\n\t0,\n\t0,\n\t24681,\n\t0,\n\t24683,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24684,\n\t0,\n\t24685,\n\t0,\n\t0,\n\t24686,\n\t0,\n\t0,\n\t24688,\n\t24689,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24690,\n\t24691,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24697,\n\t0,\n\t24698,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24709,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24710,\n\t0,\n\t24712,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24713,\n\t24714,\n\t0,\n\t24715,\n\t0,\n\t24716,\n\t24718,\n\t0,\n\t24719,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24720,\n\t0,\n\t0,\n\t24725,\n\t0,\n\t0,\n\t24738,\n\t0,\n\t24749,\n\t24750,\n\t0,\n\t0,\n\t0,\n\t24752,\n\t0,\n\t0,\n\t0,\n\t24753,\n\t0,\n\t0,\n\t0,\n\t24758,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24762,\n\t0,\n\t24763,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24764,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24765,\n\t24767,\n\t24768,\n\t0,\n\t24772,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24773,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24777,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24785,\n\t0,\n\t24786,\n\t24788,\n\t0,\n\t0,\n\t0,\n\t24789,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24794,\n\t24798,\n\t0,\n\t24799,\n\t24800,\n\t0,\n\t0,\n\t0,\n\t24803,\n\t0,\n\t24804,\n\t24806,\n\t0,\n\t24807,\n\t0,\n\t0,\n\t0,\n\t24810,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24827,\n\t24828,\n\t0,\n\t24835,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24836,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24839,\n\t0,\n\t24843,\n\t24844,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24847,\n\t0,\n\t0,\n\t24848,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24849,\n\t0,\n\t24850,\n\t24851,\n\t0,\n\t0,\n\t0,\n\t24852,\n\t0,\n\t24853,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24854,\n\t0,\n\t24855,\n\t0,\n\t0,\n\t24868,\n\t0,\n\t0,\n\t0,\n\t24883,\n\t0,\n\t0,\n\t0,\n\t24884,\n\t0,\n\t24895,\n\t24897,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24899,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24900,\n\t0,\n\t24913,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24914,\n\t0,\n\t0,\n\t24917,\n\t24930,\n\t24931,\n\t0,\n\t0,\n\t0,\n\t24932,\n\t0,\n\t0,\n\t24939,\n\t0,\n\t0,\n\t24942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24945,\n\t24950,\n\t0,\n\t24951,\n\t0,\n\t0,\n\t24953,\n\t0,\n\t0,\n\t0,\n\t24954,\n\t0,\n\t24959,\n\t0,\n\t0,\n\t0,\n\t24961,\n\t0,\n\t0,\n\t24962,\n\t0,\n\t24964,\n\t24968,\n\t24970,\n\t24972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t24976,\n\t0,\n\t0,\n\t0,\n\t24977,\n\t0,\n\t24982,\n\t0,\n\t0,\n\t24983,\n\t0,\n\t0,\n\t24984,\n\t0,\n\t0,\n\t0,\n\t24993,\n\t0,\n\t0,\n\t0,\n\t24994,\n\t0,\n\t0,\n\t25001,\n\t0,\n\t0,\n\t0,\n\t25003,\n\t0,\n\t0,\n\t25018,\n\t0,\n\t0,\n\t25023,\n\t0,\n\t0,\n\t0,\n\t25034,\n\t0,\n\t0,\n\t25035,\n\t25036,\n\t0,\n\t25037,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25039,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25040,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25042,\n\t0,\n\t0,\n\t25043,\n\t25045,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25049,\n\t0,\n\t0,\n\t25051,\n\t0,\n\t25052,\n\t25053,\n\t0,\n\t0,\n\t25054,\n\t0,\n\t0,\n\t0,\n\t25055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25057,\n\t25059,\n\t0,\n\t0,\n\t25060,\n\t25064,\n\t0,\n\t25065,\n\t25069,\n\t25070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25072,\n\t0,\n\t25073,\n\t0,\n\t25090,\n\t0,\n\t0,\n\t25092,\n\t25093,\n\t25101,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25105,\n\t25108,\n\t0,\n\t0,\n\t25113,\n\t0,\n\t0,\n\t25115,\n\t25116,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25117,\n\t0,\n\t0,\n\t0,\n\t25120,\n\t25121,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25125,\n\t0,\n\t0,\n\t0,\n\t25126,\n\t0,\n\t25130,\n\t25134,\n\t0,\n\t25139,\n\t0,\n\t25143,\n\t0,\n\t0,\n\t0,\n\t25151,\n\t0,\n\t25161,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25163,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25174,\n\t0,\n\t25175,\n\t0,\n\t25207,\n\t0,\n\t0,\n\t0,\n\t25209,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25213,\n\t0,\n\t25219,\n\t0,\n\t25223,\n\t0,\n\t25225,\n\t0,\n\t0,\n\t0,\n\t25227,\n\t0,\n\t0,\n\t0,\n\t25228,\n\t0,\n\t0,\n\t0,\n\t25229,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25231,\n\t25233,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25237,\n\t25239,\n\t0,\n\t0,\n\t0,\n\t25243,\n\t0,\n\t0,\n\t0,\n\t25252,\n\t0,\n\t25257,\n\t25258,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25260,\n\t25265,\n\t0,\n\t25268,\n\t0,\n\t0,\n\t25273,\n\t25324,\n\t0,\n\t25325,\n\t0,\n\t25326,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25327,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25328,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25332,\n\t0,\n\t0,\n\t0,\n\t25333,\n\t0,\n\t0,\n\t0,\n\t25336,\n\t25337,\n\t25338,\n\t0,\n\t0,\n\t25343,\n\t0,\n\t25350,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25352,\n\t0,\n\t25354,\n\t0,\n\t25375,\n\t0,\n\t25379,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25384,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25386,\n\t0,\n\t25388,\n\t0,\n\t25390,\n\t0,\n\t0,\n\t25399,\n\t0,\n\t0,\n\t25401,\n\t0,\n\t0,\n\t0,\n\t25402,\n\t0,\n\t0,\n\t0,\n\t25407,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25413,\n\t25415,\n\t0,\n\t0,\n\t25417,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25419,\n\t0,\n\t0,\n\t0,\n\t25421,\n\t0,\n\t0,\n\t0,\n\t25424,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25433,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25435,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25436,\n\t0,\n\t0,\n\t0,\n\t25437,\n\t0,\n\t0,\n\t25440,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25442,\n\t0,\n\t0,\n\t25443,\n\t0,\n\t25446,\n\t0,\n\t0,\n\t25449,\n\t0,\n\t0,\n\t0,\n\t25450,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25452,\n\t0,\n\t25453,\n\t25454,\n\t25455,\n\t0,\n\t0,\n\t0,\n\t25456,\n\t0,\n\t25457,\n\t0,\n\t0,\n\t0,\n\t25459,\n\t0,\n\t25461,\n\t0,\n\t25468,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25471,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25474,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25475,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25477,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25483,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25484,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25485,\n\t0,\n\t25497,\n\t0,\n\t0,\n\t25498,\n\t0,\n\t25504,\n\t0,\n\t25510,\n\t0,\n\t25512,\n\t0,\n\t0,\n\t25513,\n\t25514,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25517,\n\t25518,\n\t25519,\n\t0,\n\t25520,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25521,\n\t0,\n\t25522,\n\t25527,\n\t25534,\n\t0,\n\t25536,\n\t0,\n\t25537,\n\t0,\n\t0,\n\t25548,\n\t25550,\n\t0,\n\t0,\n\t25551,\n\t0,\n\t25552,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25554,\n\t0,\n\t25555,\n\t0,\n\t25556,\n\t25557,\n\t25568,\n\t0,\n\t0,\n\t0,\n\t25570,\n\t25571,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25574,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25579,\n\t0,\n\t0,\n\t0,\n\t25581,\n\t0,\n\t0,\n\t0,\n\t25582,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25588,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25589,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25590,\n\t0,\n\t25591,\n\t25592,\n\t25593,\n\t0,\n\t25594,\n\t0,\n\t0,\n\t0,\n\t25596,\n\t0,\n\t25597,\n\t25615,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25618,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25619,\n\t25623,\n\t0,\n\t0,\n\t25629,\n\t0,\n\t0,\n\t25631,\n\t0,\n\t0,\n\t0,\n\t25635,\n\t25636,\n\t0,\n\t0,\n\t25649,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25654,\n\t0,\n\t0,\n\t0,\n\t25661,\n\t25663,\n\t0,\n\t0,\n\t25671,\n\t0,\n\t0,\n\t25678,\n\t25698,\n\t0,\n\t25699,\n\t25702,\n\t25703,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25704,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25706,\n\t0,\n\t0,\n\t25710,\n\t0,\n\t25711,\n\t0,\n\t25712,\n\t0,\n\t25715,\n\t25716,\n\t25717,\n\t0,\n\t0,\n\t25718,\n\t25728,\n\t25732,\n\t0,\n\t0,\n\t0,\n\t25734,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25737,\n\t0,\n\t0,\n\t25739,\n\t0,\n\t0,\n\t0,\n\t25740,\n\t0,\n\t25741,\n\t25745,\n\t0,\n\t25746,\n\t0,\n\t25748,\n\t25772,\n\t25778,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25780,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25781,\n\t0,\n\t25782,\n\t25784,\n\t25785,\n\t0,\n\t0,\n\t0,\n\t25789,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25797,\n\t25801,\n\t0,\n\t0,\n\t0,\n\t25808,\n\t25809,\n\t0,\n\t0,\n\t25811,\n\t25814,\n\t25815,\n\t0,\n\t0,\n\t25817,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25820,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25832,\n\t25833,\n\t0,\n\t0,\n\t0,\n\t25846,\n\t0,\n\t0,\n\t0,\n\t25847,\n\t25848,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25849,\n\t25850,\n\t0,\n\t0,\n\t25851,\n\t0,\n\t0,\n\t25852,\n\t0,\n\t25862,\n\t0,\n\t0,\n\t0,\n\t25863,\n\t25865,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25867,\n\t25868,\n\t0,\n\t25869,\n\t25874,\n\t0,\n\t25875,\n\t0,\n\t25876,\n\t25877,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25878,\n\t25902,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25903,\n\t25904,\n\t25905,\n\t0,\n\t0,\n\t0,\n\t25908,\n\t25909,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25910,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25912,\n\t0,\n\t25913,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25914,\n\t0,\n\t0,\n\t25916,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25917,\n\t25927,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25928,\n\t0,\n\t0,\n\t25930,\n\t0,\n\t0,\n\t0,\n\t25933,\n\t0,\n\t0,\n\t25938,\n\t25942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25945,\n\t0,\n\t25950,\n\t0,\n\t25956,\n\t0,\n\t0,\n\t25961,\n\t25962,\n\t0,\n\t0,\n\t25963,\n\t0,\n\t25964,\n\t25965,\n\t25966,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25968,\n\t0,\n\t0,\n\t0,\n\t25969,\n\t25971,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25973,\n\t25975,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25978,\n\t0,\n\t25981,\n\t0,\n\t0,\n\t0,\n\t25982,\n\t0,\n\t0,\n\t0,\n\t25984,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t25993,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26002,\n\t0,\n\t0,\n\t0,\n\t26005,\n\t0,\n\t0,\n\t0,\n\t26006,\n\t26007,\n\t0,\n\t0,\n\t26014,\n\t26015,\n\t26016,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26017,\n\t26018,\n\t26020,\n\t0,\n\t26022,\n\t26023,\n\t0,\n\t0,\n\t0,\n\t26024,\n\t26028,\n\t0,\n\t26029,\n\t26033,\n\t26034,\n\t26044,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26046,\n\t0,\n\t0,\n\t26047,\n\t0,\n\t0,\n\t26049,\n\t0,\n\t26050,\n\t0,\n\t26051,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26053,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26054,\n\t26059,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26060,\n\t0,\n\t26066,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26067,\n\t0,\n\t26069,\n\t0,\n\t0,\n\t26071,\n\t0,\n\t0,\n\t0,\n\t26073,\n\t0,\n\t26074,\n\t26077,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26078,\n\t0,\n\t0,\n\t0,\n\t26079,\n\t0,\n\t26090,\n\t0,\n\t0,\n\t26094,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26095,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26096,\n\t26101,\n\t0,\n\t26107,\n\t26122,\n\t0,\n\t26124,\n\t0,\n\t0,\n\t26125,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26136,\n\t26141,\n\t26155,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26164,\n\t26166,\n\t0,\n\t0,\n\t0,\n\t26167,\n\t0,\n\t26170,\n\t26171,\n\t0,\n\t0,\n\t26172,\n\t0,\n\t0,\n\t26174,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26175,\n\t0,\n\t0,\n\t0,\n\t26176,\n\t26177,\n\t0,\n\t26321,\n\t26322,\n\t0,\n\t26323,\n\t0,\n\t0,\n\t26324,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26325,\n\t0,\n\t26331,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26335,\n\t0,\n\t0,\n\t0,\n\t26350,\n\t0,\n\t0,\n\t0,\n\t26379,\n\t0,\n\t0,\n\t26382,\n\t26383,\n\t26385,\n\t0,\n\t0,\n\t26392,\n\t26406,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26411,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26412,\n\t0,\n\t0,\n\t26420,\n\t0,\n\t0,\n\t26423,\n\t0,\n\t26424,\n\t26426,\n\t26432,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26435,\n\t0,\n\t26436,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26441,\n\t0,\n\t26444,\n\t0,\n\t0,\n\t0,\n\t26446,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26447,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26449,\n\t0,\n\t26450,\n\t26452,\n\t0,\n\t26453,\n\t26454,\n\t0,\n\t0,\n\t0,\n\t26455,\n\t0,\n\t0,\n\t0,\n\t26456,\n\t0,\n\t0,\n\t26458,\n\t0,\n\t0,\n\t26460,\n\t0,\n\t26463,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26464,\n\t26470,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26473,\n\t0,\n\t0,\n\t26474,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26475,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26477,\n\t0,\n\t26485,\n\t0,\n\t0,\n\t26486,\n\t0,\n\t26487,\n\t0,\n\t0,\n\t26488,\n\t26493,\n\t26494,\n\t0,\n\t0,\n\t26495,\n\t0,\n\t26497,\n\t26504,\n\t26506,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26507,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26509,\n\t0,\n\t0,\n\t26510,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26512,\n\t0,\n\t26513,\n\t26515,\n\t0,\n\t0,\n\t0,\n\t26518,\n\t0,\n\t0,\n\t0,\n\t26519,\n\t0,\n\t26524,\n\t26526,\n\t0,\n\t0,\n\t0,\n\t26527,\n\t0,\n\t26532,\n\t0,\n\t26533,\n\t26537,\n\t26558,\n\t0,\n\t0,\n\t0,\n\t26559,\n\t0,\n\t0,\n\t0,\n\t26571,\n\t0,\n\t0,\n\t26573,\n\t0,\n\t26588,\n\t0,\n\t26593,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26603,\n\t0,\n\t26604,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26606,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26607,\n\t26609,\n\t26611,\n\t26614,\n\t0,\n\t0,\n\t0,\n\t26616,\n\t26620,\n\t0,\n\t26621,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26627,\n\t0,\n\t26629,\n\t0,\n\t0,\n\t26630,\n\t0,\n\t0,\n\t26632,\n\t26643,\n\t0,\n\t0,\n\t0,\n\t26644,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26646,\n\t26647,\n\t0,\n\t0,\n\t0,\n\t26650,\n\t0,\n\t0,\n\t26656,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26663,\n\t26670,\n\t26671,\n\t0,\n\t0,\n\t0,\n\t26685,\n\t26686,\n\t26687,\n\t0,\n\t26689,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26744,\n\t0,\n\t26745,\n\t0,\n\t26747,\n\t26748,\n\t0,\n\t26749,\n\t26750,\n\t26751,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26752,\n\t26755,\n\t0,\n\t0,\n\t0,\n\t26756,\n\t26769,\n\t0,\n\t0,\n\t0,\n\t26774,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26775,\n\t0,\n\t26777,\n\t26778,\n\t0,\n\t26786,\n\t0,\n\t0,\n\t0,\n\t26787,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26788,\n\t0,\n\t0,\n\t26789,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26791,\n\t0,\n\t26792,\n\t26793,\n\t0,\n\t0,\n\t0,\n\t26794,\n\t0,\n\t26797,\n\t26798,\n\t0,\n\t0,\n\t0,\n\t26800,\n\t0,\n\t0,\n\t26803,\n\t0,\n\t26804,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26805,\n\t0,\n\t0,\n\t26808,\n\t0,\n\t0,\n\t26809,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26812,\n\t0,\n\t26825,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26826,\n\t0,\n\t0,\n\t26827,\n\t26829,\n\t26834,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26835,\n\t0,\n\t0,\n\t26849,\n\t0,\n\t26851,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26852,\n\t0,\n\t26853,\n\t26857,\n\t0,\n\t26858,\n\t0,\n\t26859,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26876,\n\t0,\n\t26878,\n\t26882,\n\t26883,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26890,\n\t26894,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26895,\n\t26896,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26900,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26911,\n\t26913,\n\t26914,\n\t26915,\n\t26916,\n\t26919,\n\t0,\n\t0,\n\t0,\n\t26921,\n\t26922,\n\t0,\n\t0,\n\t26925,\n\t0,\n\t0,\n\t0,\n\t26928,\n\t0,\n\t0,\n\t26929,\n\t26930,\n\t0,\n\t0,\n\t0,\n\t26931,\n\t0,\n\t26932,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26933,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26937,\n\t0,\n\t0,\n\t26943,\n\t0,\n\t0,\n\t26944,\n\t0,\n\t0,\n\t0,\n\t26946,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26956,\n\t0,\n\t26958,\n\t0,\n\t0,\n\t26963,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26965,\n\t0,\n\t26969,\n\t26970,\n\t26972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26973,\n\t0,\n\t26974,\n\t0,\n\t26978,\n\t0,\n\t26980,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t26982,\n\t0,\n\t26986,\n\t26987,\n\t0,\n\t26990,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27003,\n\t27006,\n\t0,\n\t0,\n\t27007,\n\t27010,\n\t27012,\n\t27013,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27014,\n\t27015,\n\t27018,\n\t0,\n\t27019,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27025,\n\t0,\n\t0,\n\t0,\n\t27026,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27029,\n\t27030,\n\t27031,\n\t27034,\n\t0,\n\t0,\n\t27036,\n\t27037,\n\t0,\n\t0,\n\t0,\n\t27038,\n\t27042,\n\t0,\n\t0,\n\t0,\n\t27044,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27045,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27046,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27047,\n\t27049,\n\t0,\n\t27050,\n\t0,\n\t0,\n\t0,\n\t27051,\n\t27052,\n\t0,\n\t27055,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27056,\n\t27058,\n\t27059,\n\t0,\n\t27061,\n\t0,\n\t27064,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27069,\n\t0,\n\t0,\n\t27070,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27072,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27076,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27078,\n\t0,\n\t27079,\n\t0,\n\t0,\n\t0,\n\t27081,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27082,\n\t0,\n\t27083,\n\t27086,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27087,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27088,\n\t27090,\n\t0,\n\t27094,\n\t0,\n\t0,\n\t27095,\n\t0,\n\t27099,\n\t27102,\n\t0,\n\t0,\n\t0,\n\t27103,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27105,\n\t0,\n\t0,\n\t0,\n\t27106,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27107,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27108,\n\t27117,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27118,\n\t0,\n\t0,\n\t27124,\n\t0,\n\t27126,\n\t0,\n\t0,\n\t27130,\n\t27131,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27147,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27148,\n\t27149,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27150,\n\t27151,\n\t0,\n\t27152,\n\t0,\n\t27159,\n\t0,\n\t0,\n\t0,\n\t27164,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27175,\n\t0,\n\t27189,\n\t0,\n\t0,\n\t27191,\n\t0,\n\t27193,\n\t0,\n\t27195,\n\t0,\n\t27198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27200,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27202,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27203,\n\t0,\n\t0,\n\t27204,\n\t0,\n\t0,\n\t27206,\n\t0,\n\t27207,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27209,\n\t0,\n\t0,\n\t0,\n\t27213,\n\t0,\n\t0,\n\t27216,\n\t27219,\n\t27220,\n\t27222,\n\t27223,\n\t0,\n\t27224,\n\t0,\n\t27225,\n\t27226,\n\t0,\n\t0,\n\t27233,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27235,\n\t0,\n\t27237,\n\t0,\n\t27238,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27239,\n\t0,\n\t27242,\n\t27243,\n\t0,\n\t27250,\n\t0,\n\t0,\n\t0,\n\t27251,\n\t0,\n\t27253,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27254,\n\t27255,\n\t27258,\n\t0,\n\t0,\n\t0,\n\t27259,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27267,\n\t0,\n\t27276,\n\t27278,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27296,\n\t27297,\n\t27301,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27302,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27312,\n\t27313,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27318,\n\t0,\n\t27320,\n\t0,\n\t27329,\n\t0,\n\t27330,\n\t27331,\n\t0,\n\t27332,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27340,\n\t0,\n\t0,\n\t0,\n\t27348,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27350,\n\t0,\n\t27351,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27355,\n\t0,\n\t0,\n\t27358,\n\t27359,\n\t27361,\n\t0,\n\t0,\n\t0,\n\t27365,\n\t0,\n\t27367,\n\t0,\n\t27376,\n\t27378,\n\t0,\n\t0,\n\t27379,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27396,\n\t0,\n\t27397,\n\t27404,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27408,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27453,\n\t0,\n\t0,\n\t0,\n\t27456,\n\t0,\n\t0,\n\t0,\n\t27458,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27459,\n\t0,\n\t0,\n\t0,\n\t27460,\n\t0,\n\t0,\n\t27461,\n\t0,\n\t27465,\n\t27467,\n\t0,\n\t0,\n\t27469,\n\t0,\n\t27470,\n\t0,\n\t27471,\n\t0,\n\t27477,\n\t27482,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27484,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27485,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27493,\n\t0,\n\t27494,\n\t27502,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27511,\n\t27532,\n\t0,\n\t0,\n\t0,\n\t27533,\n\t27545,\n\t0,\n\t0,\n\t0,\n\t27546,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27547,\n\t0,\n\t0,\n\t27549,\n\t27550,\n\t0,\n\t27551,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27555,\n\t0,\n\t0,\n\t27571,\n\t0,\n\t27573,\n\t27574,\n\t27575,\n\t27577,\n\t0,\n\t27578,\n\t0,\n\t0,\n\t27579,\n\t27585,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27586,\n\t0,\n\t0,\n\t27588,\n\t27589,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27596,\n\t0,\n\t0,\n\t27600,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27608,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27610,\n\t0,\n\t0,\n\t0,\n\t27618,\n\t0,\n\t0,\n\t27620,\n\t0,\n\t0,\n\t0,\n\t27631,\n\t0,\n\t0,\n\t27632,\n\t27634,\n\t0,\n\t27636,\n\t27638,\n\t0,\n\t0,\n\t0,\n\t27643,\n\t0,\n\t27644,\n\t27649,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27651,\n\t27660,\n\t0,\n\t27661,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27662,\n\t0,\n\t0,\n\t27664,\n\t0,\n\t27665,\n\t0,\n\t0,\n\t0,\n\t27669,\n\t0,\n\t27671,\n\t0,\n\t0,\n\t0,\n\t27673,\n\t27674,\n\t0,\n\t0,\n\t0,\n\t27682,\n\t0,\n\t0,\n\t0,\n\t27711,\n\t0,\n\t27712,\n\t27713,\n\t27719,\n\t27720,\n\t0,\n\t0,\n\t27728,\n\t0,\n\t27729,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27731,\n\t0,\n\t0,\n\t27732,\n\t0,\n\t27733,\n\t0,\n\t27738,\n\t0,\n\t0,\n\t0,\n\t27742,\n\t0,\n\t0,\n\t0,\n\t27743,\n\t27744,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27745,\n\t27746,\n\t0,\n\t0,\n\t0,\n\t27747,\n\t27748,\n\t27751,\n\t27752,\n\t0,\n\t0,\n\t0,\n\t27768,\n\t27770,\n\t0,\n\t0,\n\t0,\n\t27774,\n\t27775,\n\t0,\n\t27776,\n\t27777,\n\t0,\n\t0,\n\t27781,\n\t0,\n\t27784,\n\t0,\n\t27786,\n\t0,\n\t0,\n\t27791,\n\t0,\n\t27792,\n\t27793,\n\t27804,\n\t0,\n\t27812,\n\t27813,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27814,\n\t0,\n\t27825,\n\t0,\n\t27827,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27828,\n\t27861,\n\t27862,\n\t0,\n\t0,\n\t0,\n\t27864,\n\t0,\n\t0,\n\t0,\n\t27865,\n\t27884,\n\t0,\n\t27889,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27890,\n\t0,\n\t27891,\n\t0,\n\t0,\n\t0,\n\t27892,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27897,\n\t27898,\n\t0,\n\t0,\n\t27899,\n\t0,\n\t0,\n\t0,\n\t27901,\n\t27905,\n\t0,\n\t0,\n\t27920,\n\t0,\n\t0,\n\t27921,\n\t0,\n\t27922,\n\t0,\n\t0,\n\t0,\n\t27931,\n\t27934,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27941,\n\t0,\n\t27942,\n\t0,\n\t27945,\n\t0,\n\t27947,\n\t27954,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27960,\n\t27963,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t27964,\n\t27965,\n\t0,\n\t0,\n\t0,\n\t27967,\n\t0,\n\t27969,\n\t27975,\n\t0,\n\t27976,\n\t27977,\n\t0,\n\t27981,\n\t0,\n\t27983,\n\t28051,\n\t28052,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28056,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28058,\n\t28059,\n\t0,\n\t0,\n\t28061,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28063,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28066,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28069,\n\t28070,\n\t28072,\n\t0,\n\t28073,\n\t0,\n\t0,\n\t28074,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28075,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28078,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28085,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28086,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28088,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28090,\n\t0,\n\t28097,\n\t28114,\n\t28115,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28116,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28118,\n\t0,\n\t28129,\n\t0,\n\t28131,\n\t0,\n\t0,\n\t28135,\n\t0,\n\t0,\n\t0,\n\t28140,\n\t28141,\n\t0,\n\t0,\n\t0,\n\t28146,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28152,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28155,\n\t28157,\n\t28161,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28166,\n\t0,\n\t28167,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28172,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28173,\n\t0,\n\t0,\n\t28175,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28178,\n\t28188,\n\t0,\n\t28190,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28191,\n\t0,\n\t28193,\n\t28206,\n\t0,\n\t0,\n\t28207,\n\t28209,\n\t0,\n\t28211,\n\t0,\n\t28213,\n\t0,\n\t0,\n\t0,\n\t28215,\n\t28216,\n\t28217,\n\t0,\n\t28222,\n\t0,\n\t28223,\n\t28225,\n\t0,\n\t0,\n\t0,\n\t28226,\n\t0,\n\t28227,\n\t28229,\n\t28232,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28235,\n\t0,\n\t28241,\n\t0,\n\t0,\n\t28242,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28243,\n\t0,\n\t0,\n\t0,\n\t28245,\n\t0,\n\t0,\n\t0,\n\t28248,\n\t28250,\n\t0,\n\t28251,\n\t28252,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28253,\n\t0,\n\t0,\n\t28254,\n\t28255,\n\t0,\n\t0,\n\t28256,\n\t0,\n\t0,\n\t28258,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28259,\n\t0,\n\t0,\n\t28260,\n\t0,\n\t0,\n\t28261,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28262,\n\t28263,\n\t0,\n\t0,\n\t28264,\n\t0,\n\t0,\n\t0,\n\t28266,\n\t0,\n\t28268,\n\t28269,\n\t0,\n\t28270,\n\t28272,\n\t28274,\n\t0,\n\t28277,\n\t28278,\n\t0,\n\t0,\n\t0,\n\t28279,\n\t0,\n\t28280,\n\t28281,\n\t28283,\n\t0,\n\t28292,\n\t0,\n\t28294,\n\t0,\n\t28297,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28299,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28300,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28301,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28302,\n\t28303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28304,\n\t0,\n\t0,\n\t28305,\n\t0,\n\t28312,\n\t0,\n\t28313,\n\t28314,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28315,\n\t0,\n\t0,\n\t0,\n\t28320,\n\t28321,\n\t0,\n\t0,\n\t28328,\n\t0,\n\t0,\n\t0,\n\t28329,\n\t28338,\n\t0,\n\t28339,\n\t0,\n\t0,\n\t28344,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28347,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28348,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28411,\n\t0,\n\t28412,\n\t28413,\n\t0,\n\t28416,\n\t0,\n\t0,\n\t0,\n\t28420,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28421,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28423,\n\t0,\n\t0,\n\t0,\n\t28424,\n\t0,\n\t0,\n\t28428,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28429,\n\t0,\n\t0,\n\t0,\n\t28431,\n\t28434,\n\t0,\n\t28458,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28464,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28465,\n\t0,\n\t28467,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28471,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28474,\n\t0,\n\t28480,\n\t0,\n\t28481,\n\t0,\n\t0,\n\t28485,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28486,\n\t28488,\n\t0,\n\t0,\n\t28489,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28492,\n\t0,\n\t0,\n\t0,\n\t28495,\n\t0,\n\t28497,\n\t0,\n\t28499,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28500,\n\t0,\n\t0,\n\t28502,\n\t28503,\n\t0,\n\t0,\n\t0,\n\t28508,\n\t0,\n\t0,\n\t0,\n\t28510,\n\t0,\n\t0,\n\t28512,\n\t28513,\n\t28514,\n\t28521,\n\t0,\n\t28526,\n\t0,\n\t28527,\n\t28528,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28529,\n\t0,\n\t0,\n\t28532,\n\t0,\n\t0,\n\t28537,\n\t28538,\n\t0,\n\t0,\n\t0,\n\t28539,\n\t0,\n\t28548,\n\t0,\n\t28553,\n\t28554,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28560,\n\t28563,\n\t0,\n\t0,\n\t28564,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28565,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28566,\n\t28568,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28569,\n\t0,\n\t0,\n\t0,\n\t28570,\n\t0,\n\t28572,\n\t28573,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28575,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28576,\n\t28581,\n\t28588,\n\t0,\n\t0,\n\t28589,\n\t0,\n\t0,\n\t0,\n\t28590,\n\t28595,\n\t0,\n\t28598,\n\t0,\n\t0,\n\t28601,\n\t0,\n\t0,\n\t28605,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28614,\n\t28615,\n\t28619,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28620,\n\t0,\n\t28626,\n\t0,\n\t0,\n\t28628,\n\t0,\n\t28631,\n\t0,\n\t28632,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28635,\n\t0,\n\t0,\n\t0,\n\t28637,\n\t28638,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28639,\n\t0,\n\t28643,\n\t0,\n\t0,\n\t28652,\n\t0,\n\t0,\n\t0,\n\t28662,\n\t0,\n\t28670,\n\t28671,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28672,\n\t28673,\n\t28675,\n\t28676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28691,\n\t0,\n\t0,\n\t0,\n\t28695,\n\t0,\n\t0,\n\t0,\n\t28696,\n\t0,\n\t28697,\n\t28698,\n\t0,\n\t28705,\n\t0,\n\t28707,\n\t28708,\n\t28710,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28711,\n\t28728,\n\t0,\n\t0,\n\t0,\n\t28736,\n\t0,\n\t0,\n\t0,\n\t28737,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28738,\n\t0,\n\t28739,\n\t0,\n\t28741,\n\t0,\n\t0,\n\t28742,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28745,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28749,\n\t28750,\n\t28752,\n\t28754,\n\t28756,\n\t0,\n\t28757,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28759,\n\t28760,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28762,\n\t0,\n\t0,\n\t0,\n\t28764,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28766,\n\t0,\n\t28767,\n\t28768,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28769,\n\t28770,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28771,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28772,\n\t0,\n\t28773,\n\t0,\n\t28782,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28784,\n\t0,\n\t28785,\n\t0,\n\t28786,\n\t0,\n\t0,\n\t0,\n\t28787,\n\t0,\n\t0,\n\t0,\n\t28797,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28799,\n\t0,\n\t0,\n\t28801,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28802,\n\t0,\n\t28805,\n\t0,\n\t0,\n\t28806,\n\t0,\n\t0,\n\t28807,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28808,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28810,\n\t28812,\n\t0,\n\t0,\n\t28816,\n\t28819,\n\t0,\n\t0,\n\t28821,\n\t0,\n\t28826,\n\t0,\n\t0,\n\t0,\n\t28842,\n\t28852,\n\t0,\n\t0,\n\t28853,\n\t0,\n\t28854,\n\t28855,\n\t0,\n\t0,\n\t0,\n\t28857,\n\t0,\n\t0,\n\t0,\n\t28858,\n\t0,\n\t28867,\n\t28868,\n\t28869,\n\t0,\n\t0,\n\t0,\n\t28874,\n\t28880,\n\t28882,\n\t28890,\n\t28892,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28895,\n\t0,\n\t0,\n\t0,\n\t28898,\n\t28899,\n\t0,\n\t0,\n\t0,\n\t28900,\n\t0,\n\t0,\n\t28904,\n\t0,\n\t28906,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28907,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28908,\n\t0,\n\t0,\n\t0,\n\t28910,\n\t0,\n\t28914,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28915,\n\t28916,\n\t28919,\n\t0,\n\t0,\n\t28920,\n\t0,\n\t28921,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28924,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28926,\n\t28929,\n\t0,\n\t0,\n\t0,\n\t28930,\n\t0,\n\t28936,\n\t0,\n\t28939,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28956,\n\t0,\n\t0,\n\t0,\n\t28966,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28967,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28968,\n\t0,\n\t28971,\n\t0,\n\t28975,\n\t28976,\n\t0,\n\t28982,\n\t28983,\n\t0,\n\t0,\n\t28984,\n\t28989,\n\t28996,\n\t28997,\n\t28998,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t28999,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29000,\n\t0,\n\t29001,\n\t0,\n\t0,\n\t0,\n\t29009,\n\t0,\n\t0,\n\t29011,\n\t0,\n\t0,\n\t29021,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29024,\n\t0,\n\t29025,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29026,\n\t0,\n\t0,\n\t0,\n\t29036,\n\t0,\n\t0,\n\t0,\n\t29037,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29038,\n\t0,\n\t29045,\n\t0,\n\t29047,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29051,\n\t0,\n\t0,\n\t0,\n\t29054,\n\t29056,\n\t29062,\n\t0,\n\t29070,\n\t29082,\n\t0,\n\t0,\n\t0,\n\t29083,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29084,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29085,\n\t29088,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29090,\n\t29097,\n\t0,\n\t0,\n\t0,\n\t29103,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29105,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29107,\n\t0,\n\t29109,\n\t0,\n\t0,\n\t0,\n\t29115,\n\t0,\n\t0,\n\t29120,\n\t0,\n\t0,\n\t29138,\n\t29140,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29152,\n\t0,\n\t29160,\n\t29174,\n\t0,\n\t29176,\n\t0,\n\t0,\n\t29180,\n\t0,\n\t29181,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29228,\n\t0,\n\t0,\n\t29229,\n\t0,\n\t0,\n\t29230,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29234,\n\t0,\n\t0,\n\t0,\n\t29241,\n\t0,\n\t29245,\n\t0,\n\t29248,\n\t0,\n\t29250,\n\t29256,\n\t29280,\n\t0,\n\t29282,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29285,\n\t0,\n\t0,\n\t29286,\n\t29291,\n\t29292,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29294,\n\t0,\n\t29295,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29296,\n\t29297,\n\t29298,\n\t29300,\n\t0,\n\t29302,\n\t0,\n\t0,\n\t29304,\n\t29307,\n\t0,\n\t29312,\n\t0,\n\t0,\n\t0,\n\t29322,\n\t0,\n\t0,\n\t29323,\n\t0,\n\t0,\n\t29324,\n\t29326,\n\t29328,\n\t0,\n\t29335,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29338,\n\t29339,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29341,\n\t29343,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29344,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29345,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29346,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29347,\n\t29348,\n\t29349,\n\t0,\n\t0,\n\t29354,\n\t0,\n\t0,\n\t29355,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29357,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29364,\n\t0,\n\t29365,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29366,\n\t0,\n\t0,\n\t29368,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29378,\n\t0,\n\t29381,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29386,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29389,\n\t0,\n\t0,\n\t0,\n\t29390,\n\t0,\n\t0,\n\t29391,\n\t29397,\n\t0,\n\t29398,\n\t29412,\n\t29414,\n\t29418,\n\t29419,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29420,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29423,\n\t0,\n\t0,\n\t0,\n\t29435,\n\t0,\n\t0,\n\t0,\n\t29437,\n\t0,\n\t0,\n\t29439,\n\t0,\n\t29441,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29443,\n\t0,\n\t29446,\n\t29450,\n\t29452,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29456,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29461,\n\t0,\n\t0,\n\t0,\n\t29464,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29468,\n\t0,\n\t29473,\n\t0,\n\t0,\n\t0,\n\t29486,\n\t0,\n\t0,\n\t0,\n\t29490,\n\t0,\n\t0,\n\t0,\n\t29491,\n\t29492,\n\t0,\n\t0,\n\t29497,\n\t0,\n\t0,\n\t0,\n\t29498,\n\t0,\n\t29499,\n\t0,\n\t29502,\n\t29505,\n\t0,\n\t29509,\n\t0,\n\t0,\n\t0,\n\t29510,\n\t0,\n\t0,\n\t0,\n\t29512,\n\t0,\n\t0,\n\t0,\n\t29516,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29518,\n\t0,\n\t29519,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29520,\n\t29521,\n\t29529,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29530,\n\t0,\n\t0,\n\t29531,\n\t29538,\n\t0,\n\t29540,\n\t0,\n\t0,\n\t0,\n\t29542,\n\t0,\n\t29543,\n\t29544,\n\t29547,\n\t0,\n\t0,\n\t29548,\n\t0,\n\t0,\n\t0,\n\t29549,\n\t0,\n\t0,\n\t0,\n\t29550,\n\t0,\n\t0,\n\t29552,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29558,\n\t29561,\n\t0,\n\t29562,\n\t29564,\n\t0,\n\t0,\n\t29565,\n\t0,\n\t0,\n\t29566,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29578,\n\t29584,\n\t29586,\n\t29591,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29593,\n\t29594,\n\t0,\n\t0,\n\t29597,\n\t0,\n\t0,\n\t29613,\n\t0,\n\t29614,\n\t0,\n\t29615,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29616,\n\t29617,\n\t0,\n\t0,\n\t29625,\n\t0,\n\t0,\n\t0,\n\t29632,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29633,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29634,\n\t29635,\n\t29637,\n\t0,\n\t29638,\n\t0,\n\t29641,\n\t29643,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29644,\n\t0,\n\t29645,\n\t0,\n\t29649,\n\t0,\n\t0,\n\t0,\n\t29650,\n\t0,\n\t29653,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29656,\n\t29659,\n\t0,\n\t0,\n\t29660,\n\t0,\n\t0,\n\t0,\n\t29661,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29664,\n\t0,\n\t0,\n\t0,\n\t29671,\n\t29673,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29675,\n\t0,\n\t29677,\n\t29679,\n\t0,\n\t0,\n\t29684,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29685,\n\t0,\n\t0,\n\t0,\n\t29687,\n\t0,\n\t0,\n\t0,\n\t29688,\n\t0,\n\t29689,\n\t29690,\n\t29700,\n\t0,\n\t29701,\n\t0,\n\t0,\n\t0,\n\t29702,\n\t0,\n\t29706,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29720,\n\t0,\n\t29721,\n\t0,\n\t29727,\n\t0,\n\t29733,\n\t29734,\n\t0,\n\t29750,\n\t29761,\n\t0,\n\t29763,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29764,\n\t0,\n\t0,\n\t29765,\n\t0,\n\t0,\n\t0,\n\t29771,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29772,\n\t0,\n\t0,\n\t0,\n\t29773,\n\t29774,\n\t29775,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29822,\n\t0,\n\t0,\n\t0,\n\t29824,\n\t0,\n\t29825,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29827,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29829,\n\t0,\n\t29832,\n\t29834,\n\t0,\n\t0,\n\t29835,\n\t0,\n\t0,\n\t29837,\n\t29838,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29843,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29844,\n\t29845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29849,\n\t0,\n\t0,\n\t29869,\n\t29872,\n\t29890,\n\t29905,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29907,\n\t29921,\n\t0,\n\t29922,\n\t0,\n\t0,\n\t29923,\n\t29926,\n\t29944,\n\t29946,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29947,\n\t29948,\n\t0,\n\t0,\n\t0,\n\t29951,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29953,\n\t0,\n\t0,\n\t29956,\n\t0,\n\t29957,\n\t0,\n\t0,\n\t29962,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29971,\n\t0,\n\t0,\n\t0,\n\t29972,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t29978,\n\t0,\n\t29979,\n\t29992,\n\t30007,\n\t30008,\n\t30010,\n\t0,\n\t0,\n\t0,\n\t30013,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30014,\n\t30016,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30017,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30023,\n\t30031,\n\t0,\n\t0,\n\t30033,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30034,\n\t0,\n\t30038,\n\t0,\n\t30039,\n\t0,\n\t30040,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30067,\n\t30068,\n\t0,\n\t0,\n\t0,\n\t30069,\n\t0,\n\t30072,\n\t0,\n\t0,\n\t0,\n\t30073,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30075,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30079,\n\t0,\n\t0,\n\t30080,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30082,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30084,\n\t30090,\n\t0,\n\t0,\n\t30091,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30098,\n\t30118,\n\t0,\n\t30119,\n\t0,\n\t30121,\n\t30130,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30131,\n\t30132,\n\t30133,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30135,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30136,\n\t0,\n\t0,\n\t30137,\n\t30138,\n\t0,\n\t0,\n\t0,\n\t30139,\n\t30146,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30147,\n\t0,\n\t0,\n\t30148,\n\t30151,\n\t0,\n\t0,\n\t0,\n\t30168,\n\t0,\n\t30172,\n\t30173,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30180,\n\t30181,\n\t0,\n\t30192,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30194,\n\t30196,\n\t0,\n\t0,\n\t30199,\n\t0,\n\t0,\n\t30202,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30203,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30213,\n\t0,\n\t0,\n\t0,\n\t30216,\n\t0,\n\t0,\n\t30217,\n\t0,\n\t0,\n\t0,\n\t30218,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30219,\n\t0,\n\t30220,\n\t0,\n\t30222,\n\t30227,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30231,\n\t0,\n\t0,\n\t30233,\n\t30235,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30238,\n\t0,\n\t30240,\n\t30243,\n\t30245,\n\t0,\n\t30250,\n\t30252,\n\t0,\n\t0,\n\t0,\n\t30269,\n\t0,\n\t0,\n\t30271,\n\t30272,\n\t0,\n\t0,\n\t0,\n\t30278,\n\t30280,\n\t0,\n\t0,\n\t30282,\n\t0,\n\t30284,\n\t0,\n\t30294,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30295,\n\t30296,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30298,\n\t30299,\n\t30302,\n\t30304,\n\t30306,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30316,\n\t30317,\n\t0,\n\t0,\n\t0,\n\t30318,\n\t0,\n\t0,\n\t0,\n\t30319,\n\t0,\n\t30320,\n\t30322,\n\t30326,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30327,\n\t0,\n\t30332,\n\t30348,\n\t30349,\n\t0,\n\t0,\n\t30356,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30357,\n\t0,\n\t30358,\n\t0,\n\t30359,\n\t30360,\n\t0,\n\t0,\n\t30365,\n\t30366,\n\t30378,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30379,\n\t0,\n\t0,\n\t30381,\n\t0,\n\t30385,\n\t0,\n\t30388,\n\t30397,\n\t0,\n\t0,\n\t0,\n\t30401,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30403,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30404,\n\t0,\n\t0,\n\t30405,\n\t0,\n\t30406,\n\t30408,\n\t0,\n\t30409,\n\t0,\n\t30410,\n\t0,\n\t0,\n\t0,\n\t30417,\n\t0,\n\t0,\n\t30418,\n\t30419,\n\t0,\n\t30420,\n\t0,\n\t30424,\n\t0,\n\t0,\n\t0,\n\t30427,\n\t30430,\n\t30432,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30433,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30436,\n\t0,\n\t30437,\n\t30438,\n\t0,\n\t30441,\n\t30442,\n\t0,\n\t0,\n\t0,\n\t30445,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30452,\n\t30456,\n\t30457,\n\t0,\n\t0,\n\t0,\n\t30458,\n\t0,\n\t30464,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30467,\n\t0,\n\t30469,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30477,\n\t0,\n\t0,\n\t30484,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30485,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30486,\n\t30487,\n\t30497,\n\t30498,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30505,\n\t0,\n\t30508,\n\t0,\n\t0,\n\t0,\n\t30509,\n\t30510,\n\t0,\n\t30514,\n\t30516,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30523,\n\t0,\n\t30524,\n\t0,\n\t30525,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30537,\n\t0,\n\t0,\n\t30538,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30553,\n\t0,\n\t0,\n\t30555,\n\t30556,\n\t30558,\n\t30559,\n\t30560,\n\t0,\n\t0,\n\t30561,\n\t0,\n\t30562,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30563,\n\t30570,\n\t30571,\n\t0,\n\t30586,\n\t30587,\n\t0,\n\t0,\n\t30590,\n\t0,\n\t0,\n\t30594,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30611,\n\t30612,\n\t30623,\n\t30634,\n\t0,\n\t0,\n\t30636,\n\t30640,\n\t30655,\n\t30656,\n\t0,\n\t30657,\n\t0,\n\t0,\n\t30658,\n\t30669,\n\t0,\n\t30670,\n\t0,\n\t30676,\n\t30678,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30679,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30695,\n\t0,\n\t0,\n\t30698,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30700,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30701,\n\t0,\n\t30702,\n\t30703,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30707,\n\t0,\n\t0,\n\t0,\n\t30709,\n\t0,\n\t0,\n\t30710,\n\t30719,\n\t30729,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30731,\n\t0,\n\t0,\n\t30733,\n\t0,\n\t0,\n\t0,\n\t30734,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30736,\n\t30737,\n\t0,\n\t0,\n\t0,\n\t30740,\n\t0,\n\t0,\n\t0,\n\t30743,\n\t0,\n\t30746,\n\t0,\n\t30747,\n\t30748,\n\t0,\n\t0,\n\t30751,\n\t30752,\n\t30753,\n\t0,\n\t0,\n\t0,\n\t30754,\n\t0,\n\t0,\n\t30760,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30763,\n\t0,\n\t30764,\n\t0,\n\t0,\n\t30766,\n\t0,\n\t30769,\n\t30770,\n\t30771,\n\t30774,\n\t30777,\n\t0,\n\t0,\n\t30779,\n\t30780,\n\t30781,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30790,\n\t0,\n\t0,\n\t0,\n\t30792,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30810,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30812,\n\t30819,\n\t0,\n\t0,\n\t30823,\n\t30824,\n\t0,\n\t30825,\n\t0,\n\t30827,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30828,\n\t0,\n\t0,\n\t30830,\n\t0,\n\t0,\n\t0,\n\t30834,\n\t0,\n\t30835,\n\t0,\n\t30837,\n\t30838,\n\t0,\n\t30845,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30846,\n\t30847,\n\t0,\n\t0,\n\t30849,\n\t0,\n\t30851,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30852,\n\t30858,\n\t0,\n\t0,\n\t30859,\n\t0,\n\t30865,\n\t0,\n\t0,\n\t30866,\n\t0,\n\t0,\n\t30868,\n\t0,\n\t0,\n\t30869,\n\t0,\n\t0,\n\t0,\n\t30881,\n\t30883,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30889,\n\t0,\n\t30891,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30894,\n\t0,\n\t30895,\n\t0,\n\t30897,\n\t0,\n\t30898,\n\t0,\n\t0,\n\t0,\n\t30904,\n\t30906,\n\t0,\n\t30909,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30910,\n\t0,\n\t0,\n\t0,\n\t30915,\n\t30933,\n\t30942,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30943,\n\t0,\n\t0,\n\t30945,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30946,\n\t0,\n\t0,\n\t30947,\n\t0,\n\t0,\n\t30955,\n\t30956,\n\t0,\n\t0,\n\t30960,\n\t0,\n\t0,\n\t30961,\n\t30962,\n\t30966,\n\t0,\n\t0,\n\t30969,\n\t30974,\n\t0,\n\t0,\n\t0,\n\t30976,\n\t0,\n\t0,\n\t30977,\n\t0,\n\t30978,\n\t30982,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t30994,\n\t30995,\n\t30998,\n\t0,\n\t31000,\n\t0,\n\t0,\n\t31001,\n\t0,\n\t0,\n\t31003,\n\t31005,\n\t0,\n\t0,\n\t31006,\n\t31011,\n\t0,\n\t0,\n\t31014,\n\t0,\n\t31016,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31018,\n\t0,\n\t0,\n\t31020,\n\t31023,\n\t31024,\n\t31025,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31027,\n\t31028,\n\t31029,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31032,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31036,\n\t31037,\n\t31038,\n\t0,\n\t0,\n\t0,\n\t31041,\n\t31043,\n\t31045,\n\t0,\n\t31047,\n\t0,\n\t0,\n\t0,\n\t31048,\n\t0,\n\t31049,\n\t0,\n\t0,\n\t0,\n\t31053,\n\t31054,\n\t31055,\n\t0,\n\t0,\n\t31063,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31066,\n\t0,\n\t31068,\n\t31071,\n\t0,\n\t0,\n\t0,\n\t31072,\n\t31073,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31075,\n\t0,\n\t0,\n\t31076,\n\t0,\n\t0,\n\t0,\n\t31077,\n\t31079,\n\t0,\n\t31080,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31087,\n\t0,\n\t31142,\n\t0,\n\t31144,\n\t0,\n\t0,\n\t31145,\n\t31146,\n\t31147,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31149,\n\t0,\n\t31151,\n\t31152,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31162,\n\t31171,\n\t31174,\n\t31175,\n\t0,\n\t0,\n\t0,\n\t31176,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31179,\n\t0,\n\t0,\n\t0,\n\t31186,\n\t0,\n\t0,\n\t0,\n\t31192,\n\t31195,\n\t0,\n\t0,\n\t31196,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31198,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31199,\n\t0,\n\t0,\n\t0,\n\t31205,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31211,\n\t31215,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31231,\n\t0,\n\t31232,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31233,\n\t31236,\n\t31253,\n\t0,\n\t31254,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31255,\n\t0,\n\t0,\n\t31257,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31258,\n\t31259,\n\t0,\n\t0,\n\t31260,\n\t0,\n\t31261,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31262,\n\t31263,\n\t0,\n\t0,\n\t31264,\n\t0,\n\t31266,\n\t0,\n\t31267,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31281,\n\t0,\n\t31282,\n\t0,\n\t31284,\n\t0,\n\t0,\n\t31285,\n\t31287,\n\t31288,\n\t0,\n\t0,\n\t31290,\n\t0,\n\t0,\n\t0,\n\t31292,\n\t31295,\n\t0,\n\t31299,\n\t0,\n\t31300,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31302,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31303,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31304,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31305,\n\t31308,\n\t31309,\n\t31315,\n\t0,\n\t31317,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31323,\n\t0,\n\t31324,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31325,\n\t31327,\n\t0,\n\t0,\n\t31331,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31333,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31336,\n\t0,\n\t0,\n\t31337,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31338,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31339,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31342,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31345,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31347,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31348,\n\t0,\n\t0,\n\t31350,\n\t31351,\n\t0,\n\t31352,\n\t0,\n\t0,\n\t31354,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31355,\n\t0,\n\t0,\n\t31356,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31363,\n\t0,\n\t31372,\n\t0,\n\t0,\n\t31373,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31376,\n\t0,\n\t31388,\n\t0,\n\t31389,\n\t0,\n\t31392,\n\t0,\n\t31401,\n\t0,\n\t31405,\n\t31407,\n\t31408,\n\t0,\n\t31409,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31413,\n\t31415,\n\t0,\n\t0,\n\t0,\n\t31416,\n\t31418,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31422,\n\t31423,\n\t0,\n\t0,\n\t31424,\n\t0,\n\t31425,\n\t31432,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31433,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31434,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31435,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31438,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31442,\n\t0,\n\t31444,\n\t0,\n\t31448,\n\t0,\n\t0,\n\t31451,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31452,\n\t0,\n\t31461,\n\t31465,\n\t0,\n\t0,\n\t31466,\n\t0,\n\t0,\n\t31467,\n\t0,\n\t0,\n\t31468,\n\t0,\n\t0,\n\t0,\n\t31469,\n\t31473,\n\t0,\n\t31476,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31489,\n\t31490,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31492,\n\t31493,\n\t31494,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31501,\n\t31504,\n\t31505,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31509,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31510,\n\t0,\n\t0,\n\t31511,\n\t0,\n\t0,\n\t31513,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31514,\n\t0,\n\t31522,\n\t31536,\n\t31539,\n\t31540,\n\t0,\n\t31541,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31546,\n\t31553,\n\t31559,\n\t0,\n\t0,\n\t0,\n\t31560,\n\t31561,\n\t31562,\n\t0,\n\t0,\n\t31564,\n\t31567,\n\t0,\n\t31569,\n\t0,\n\t0,\n\t0,\n\t31570,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31571,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31572,\n\t31574,\n\t31580,\n\t31581,\n\t0,\n\t0,\n\t31582,\n\t31584,\n\t31585,\n\t31586,\n\t31595,\n\t0,\n\t31596,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31597,\n\t0,\n\t31599,\n\t0,\n\t31600,\n\t31601,\n\t0,\n\t0,\n\t31603,\n\t31604,\n\t0,\n\t0,\n\t31608,\n\t31610,\n\t0,\n\t0,\n\t0,\n\t31611,\n\t0,\n\t31615,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31616,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31617,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31618,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31621,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31622,\n\t31625,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31627,\n\t0,\n\t31641,\n\t0,\n\t0,\n\t31642,\n\t0,\n\t0,\n\t31643,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31644,\n\t0,\n\t31646,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31648,\n\t0,\n\t0,\n\t0,\n\t31652,\n\t0,\n\t0,\n\t0,\n\t31657,\n\t0,\n\t0,\n\t31676,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t0,\n\t31689,\n\t31691,\n\t31692,\n\t0,\n\t31694,\n\t0,\n\t0,\n\t0,\n\t31696,\n\t0,\n\t31702,\n\t0,\n\t31703,\n\t0,\n}\n\nvar kStaticDictionaryWords = [31705]dictWord{\n\tdictWord{0, 0, 0},\n\tdictWord{8, 0, 1002},\n\tdictWord{136, 0, 1015},\n\tdictWord{4, 0, 683},\n\tdictWord{4, 10, 325},\n\tdictWord{138, 10, 125},\n\tdictWord{7, 11, 572},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t592,\n\t},\n\tdictWord{11, 11, 680},\n\tdictWord{11, 11, 842},\n\tdictWord{11, 11, 924},\n\tdictWord{12, 11, 356},\n\tdictWord{12, 11, 550},\n\tdictWord{13, 11, 317},\n\tdictWord{13, 11, 370},\n\tdictWord{13, 11, 469},\n\tdictWord{13, 11, 471},\n\tdictWord{14, 11, 397},\n\tdictWord{18, 11, 69},\n\tdictWord{146, 11, 145},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1265,\n\t},\n\tdictWord{136, 11, 534},\n\tdictWord{134, 0, 1431},\n\tdictWord{11, 0, 138},\n\tdictWord{140, 0, 40},\n\tdictWord{4, 0, 155},\n\tdictWord{7, 0, 1689},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t718,\n\t},\n\tdictWord{135, 10, 1216},\n\tdictWord{4, 0, 245},\n\tdictWord{5, 0, 151},\n\tdictWord{5, 0, 741},\n\tdictWord{6, 0, 1147},\n\tdictWord{7, 0, 498},\n\tdictWord{7, 0, 870},\n\tdictWord{7, 0, 1542},\n\tdictWord{12, 0, 213},\n\tdictWord{14, 0, 36},\n\tdictWord{14, 0, 391},\n\tdictWord{17, 0, 111},\n\tdictWord{18, 0, 6},\n\tdictWord{18, 0, 46},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t151,\n\t},\n\tdictWord{19, 0, 36},\n\tdictWord{20, 0, 32},\n\tdictWord{20, 0, 56},\n\tdictWord{20, 0, 69},\n\tdictWord{20, 0, 102},\n\tdictWord{21, 0, 4},\n\tdictWord{22, 0, 8},\n\tdictWord{\n\t\t22,\n\t\t0,\n\t\t10,\n\t},\n\tdictWord{22, 0, 14},\n\tdictWord{150, 0, 31},\n\tdictWord{4, 0, 624},\n\tdictWord{135, 0, 1752},\n\tdictWord{5, 10, 124},\n\tdictWord{5, 10, 144},\n\tdictWord{6, 10, 548},\n\tdictWord{7, 10, 15},\n\tdictWord{7, 10, 153},\n\tdictWord{137, 10, 629},\n\tdictWord{6, 0, 503},\n\tdictWord{9, 0, 586},\n\tdictWord{13, 0, 468},\n\tdictWord{14, 0, 66},\n\tdictWord{\n\t\t16,\n\t\t0,\n\t\t58,\n\t},\n\tdictWord{7, 10, 1531},\n\tdictWord{8, 10, 416},\n\tdictWord{9, 10, 275},\n\tdictWord{10, 10, 100},\n\tdictWord{11, 10, 658},\n\tdictWord{11, 10, 979},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t86,\n\t},\n\tdictWord{14, 10, 207},\n\tdictWord{15, 10, 20},\n\tdictWord{143, 10, 25},\n\tdictWord{5, 0, 603},\n\tdictWord{7, 0, 1212},\n\tdictWord{9, 0, 565},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t301,\n\t},\n\tdictWord{5, 10, 915},\n\tdictWord{6, 10, 1783},\n\tdictWord{7, 10, 211},\n\tdictWord{7, 10, 1353},\n\tdictWord{9, 10, 83},\n\tdictWord{10, 10, 376},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t431,\n\t},\n\tdictWord{11, 10, 543},\n\tdictWord{12, 10, 664},\n\tdictWord{13, 10, 280},\n\tdictWord{13, 10, 428},\n\tdictWord{14, 10, 128},\n\tdictWord{17, 10, 52},\n\tdictWord{\n\t\t145,\n\t\t10,\n\t\t81,\n\t},\n\tdictWord{4, 0, 492},\n\tdictWord{133, 0, 451},\n\tdictWord{135, 0, 835},\n\tdictWord{141, 0, 70},\n\tdictWord{132, 0, 539},\n\tdictWord{7, 11, 748},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t700,\n\t},\n\tdictWord{7, 11, 1517},\n\tdictWord{11, 11, 597},\n\tdictWord{14, 11, 76},\n\tdictWord{14, 11, 335},\n\tdictWord{148, 11, 33},\n\tdictWord{6, 0, 113},\n\tdictWord{135, 0, 436},\n\tdictWord{4, 10, 338},\n\tdictWord{133, 10, 400},\n\tdictWord{136, 0, 718},\n\tdictWord{133, 11, 127},\n\tdictWord{133, 11, 418},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1505,\n\t},\n\tdictWord{7, 0, 520},\n\tdictWord{6, 11, 198},\n\tdictWord{11, 10, 892},\n\tdictWord{140, 11, 83},\n\tdictWord{4, 10, 221},\n\tdictWord{5, 10, 659},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t989,\n\t},\n\tdictWord{7, 10, 697},\n\tdictWord{7, 10, 1211},\n\tdictWord{138, 10, 284},\n\tdictWord{135, 0, 1070},\n\tdictWord{5, 11, 276},\n\tdictWord{6, 11, 55},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1369,\n\t},\n\tdictWord{134, 0, 1515},\n\tdictWord{6, 11, 1752},\n\tdictWord{136, 11, 726},\n\tdictWord{138, 10, 507},\n\tdictWord{15, 0, 78},\n\tdictWord{4, 10, 188},\n\tdictWord{135, 10, 805},\n\tdictWord{5, 10, 884},\n\tdictWord{139, 10, 991},\n\tdictWord{133, 11, 764},\n\tdictWord{134, 10, 1653},\n\tdictWord{6, 11, 309},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t331,\n\t},\n\tdictWord{138, 11, 550},\n\tdictWord{135, 11, 1861},\n\tdictWord{132, 11, 348},\n\tdictWord{135, 11, 986},\n\tdictWord{135, 11, 1573},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t610,\n\t},\n\tdictWord{13, 0, 431},\n\tdictWord{144, 0, 59},\n\tdictWord{9, 11, 799},\n\tdictWord{140, 10, 166},\n\tdictWord{134, 0, 1530},\n\tdictWord{132, 0, 750},\n\tdictWord{132, 0, 307},\n\tdictWord{133, 0, 964},\n\tdictWord{6, 11, 194},\n\tdictWord{7, 11, 133},\n\tdictWord{10, 11, 493},\n\tdictWord{10, 11, 570},\n\tdictWord{139, 11, 664},\n\tdictWord{5, 11, 24},\n\tdictWord{5, 11, 569},\n\tdictWord{6, 11, 3},\n\tdictWord{6, 11, 119},\n\tdictWord{6, 11, 143},\n\tdictWord{6, 11, 440},\n\tdictWord{7, 11, 295},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t599,\n\t},\n\tdictWord{7, 11, 1686},\n\tdictWord{7, 11, 1854},\n\tdictWord{8, 11, 424},\n\tdictWord{9, 11, 43},\n\tdictWord{9, 11, 584},\n\tdictWord{9, 11, 760},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t148,\n\t},\n\tdictWord{10, 11, 328},\n\tdictWord{11, 11, 159},\n\tdictWord{11, 11, 253},\n\tdictWord{11, 11, 506},\n\tdictWord{12, 11, 487},\n\tdictWord{12, 11, 531},\n\tdictWord{144, 11, 33},\n\tdictWord{136, 10, 760},\n\tdictWord{5, 11, 14},\n\tdictWord{5, 11, 892},\n\tdictWord{6, 11, 283},\n\tdictWord{7, 11, 234},\n\tdictWord{136, 11, 537},\n\tdictWord{135, 11, 1251},\n\tdictWord{4, 11, 126},\n\tdictWord{8, 11, 635},\n\tdictWord{147, 11, 34},\n\tdictWord{4, 11, 316},\n\tdictWord{135, 11, 1561},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t999,\n\t},\n\tdictWord{6, 0, 1310},\n\tdictWord{137, 11, 861},\n\tdictWord{4, 11, 64},\n\tdictWord{5, 11, 352},\n\tdictWord{5, 11, 720},\n\tdictWord{6, 11, 368},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t359,\n\t},\n\tdictWord{4, 0, 75},\n\tdictWord{5, 0, 180},\n\tdictWord{6, 0, 500},\n\tdictWord{7, 0, 58},\n\tdictWord{7, 0, 710},\n\tdictWord{10, 0, 645},\n\tdictWord{136, 10, 770},\n\tdictWord{133, 0, 649},\n\tdictWord{6, 0, 276},\n\tdictWord{7, 0, 282},\n\tdictWord{7, 0, 879},\n\tdictWord{7, 0, 924},\n\tdictWord{8, 0, 459},\n\tdictWord{9, 0, 599},\n\tdictWord{9, 0, 754},\n\tdictWord{11, 0, 574},\n\tdictWord{12, 0, 128},\n\tdictWord{12, 0, 494},\n\tdictWord{13, 0, 52},\n\tdictWord{13, 0, 301},\n\tdictWord{15, 0, 30},\n\tdictWord{143, 0, 132},\n\tdictWord{132, 0, 200},\n\tdictWord{4, 10, 89},\n\tdictWord{5, 10, 489},\n\tdictWord{6, 10, 315},\n\tdictWord{7, 10, 553},\n\tdictWord{7, 10, 1745},\n\tdictWord{138, 10, 243},\n\tdictWord{135, 11, 1050},\n\tdictWord{7, 0, 1621},\n\tdictWord{6, 10, 1658},\n\tdictWord{9, 10, 3},\n\tdictWord{10, 10, 154},\n\tdictWord{11, 10, 641},\n\tdictWord{13, 10, 85},\n\tdictWord{13, 10, 201},\n\tdictWord{141, 10, 346},\n\tdictWord{6, 11, 175},\n\tdictWord{137, 11, 289},\n\tdictWord{5, 11, 432},\n\tdictWord{133, 11, 913},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t225,\n\t},\n\tdictWord{137, 0, 211},\n\tdictWord{7, 0, 718},\n\tdictWord{8, 0, 687},\n\tdictWord{139, 0, 374},\n\tdictWord{4, 10, 166},\n\tdictWord{133, 10, 505},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t110,\n\t},\n\tdictWord{134, 10, 1670},\n\tdictWord{8, 0, 58},\n\tdictWord{9, 0, 724},\n\tdictWord{11, 0, 809},\n\tdictWord{13, 0, 113},\n\tdictWord{145, 0, 72},\n\tdictWord{6, 0, 345},\n\tdictWord{7, 0, 1247},\n\tdictWord{144, 11, 82},\n\tdictWord{5, 11, 931},\n\tdictWord{134, 11, 1698},\n\tdictWord{8, 0, 767},\n\tdictWord{8, 0, 803},\n\tdictWord{9, 0, 301},\n\tdictWord{137, 0, 903},\n\tdictWord{139, 0, 203},\n\tdictWord{134, 0, 1154},\n\tdictWord{7, 0, 1949},\n\tdictWord{136, 0, 674},\n\tdictWord{134, 0, 259},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1275,\n\t},\n\tdictWord{5, 11, 774},\n\tdictWord{6, 11, 1637},\n\tdictWord{6, 11, 1686},\n\tdictWord{134, 11, 1751},\n\tdictWord{134, 0, 1231},\n\tdictWord{7, 10, 445},\n\tdictWord{8, 10, 307},\n\tdictWord{8, 10, 704},\n\tdictWord{10, 10, 41},\n\tdictWord{10, 10, 439},\n\tdictWord{11, 10, 237},\n\tdictWord{11, 10, 622},\n\tdictWord{140, 10, 201},\n\tdictWord{136, 0, 254},\n\tdictWord{6, 11, 260},\n\tdictWord{135, 11, 1484},\n\tdictWord{139, 0, 277},\n\tdictWord{135, 10, 1977},\n\tdictWord{4, 10, 189},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t713,\n\t},\n\tdictWord{6, 11, 573},\n\tdictWord{136, 10, 57},\n\tdictWord{138, 10, 371},\n\tdictWord{132, 10, 552},\n\tdictWord{134, 11, 344},\n\tdictWord{133, 0, 248},\n\tdictWord{9, 0, 800},\n\tdictWord{10, 0, 693},\n\tdictWord{11, 0, 482},\n\tdictWord{11, 0, 734},\n\tdictWord{11, 0, 789},\n\tdictWord{134, 11, 240},\n\tdictWord{4, 0, 116},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t95,\n\t},\n\tdictWord{5, 0, 445},\n\tdictWord{7, 0, 1688},\n\tdictWord{8, 0, 29},\n\tdictWord{9, 0, 272},\n\tdictWord{11, 0, 509},\n\tdictWord{11, 0, 915},\n\tdictWord{4, 11, 292},\n\tdictWord{4, 11, 736},\n\tdictWord{5, 11, 871},\n\tdictWord{6, 11, 171},\n\tdictWord{6, 11, 1689},\n\tdictWord{7, 11, 1324},\n\tdictWord{7, 11, 1944},\n\tdictWord{9, 11, 415},\n\tdictWord{9, 11, 580},\n\tdictWord{14, 11, 230},\n\tdictWord{146, 11, 68},\n\tdictWord{7, 0, 490},\n\tdictWord{13, 0, 100},\n\tdictWord{143, 0, 75},\n\tdictWord{135, 0, 1641},\n\tdictWord{133, 0, 543},\n\tdictWord{7, 11, 209},\n\tdictWord{8, 11, 661},\n\tdictWord{10, 11, 42},\n\tdictWord{11, 11, 58},\n\tdictWord{12, 11, 58},\n\tdictWord{12, 11, 118},\n\tdictWord{141, 11, 32},\n\tdictWord{5, 0, 181},\n\tdictWord{8, 0, 41},\n\tdictWord{6, 11, 63},\n\tdictWord{135, 11, 920},\n\tdictWord{133, 0, 657},\n\tdictWord{133, 11, 793},\n\tdictWord{138, 0, 709},\n\tdictWord{7, 0, 25},\n\tdictWord{8, 0, 202},\n\tdictWord{138, 0, 536},\n\tdictWord{5, 11, 665},\n\tdictWord{135, 10, 1788},\n\tdictWord{145, 10, 49},\n\tdictWord{9, 0, 423},\n\tdictWord{140, 0, 89},\n\tdictWord{5, 11, 67},\n\tdictWord{6, 11, 62},\n\tdictWord{6, 11, 374},\n\tdictWord{135, 11, 1391},\n\tdictWord{8, 0, 113},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t877,\n\t},\n\tdictWord{10, 0, 554},\n\tdictWord{11, 0, 83},\n\tdictWord{12, 0, 136},\n\tdictWord{19, 0, 109},\n\tdictWord{9, 11, 790},\n\tdictWord{140, 11, 47},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t661,\n\t},\n\tdictWord{4, 0, 963},\n\tdictWord{10, 0, 927},\n\tdictWord{14, 0, 442},\n\tdictWord{135, 10, 1945},\n\tdictWord{133, 0, 976},\n\tdictWord{132, 0, 206},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t391,\n\t},\n\tdictWord{135, 11, 1169},\n\tdictWord{134, 0, 2002},\n\tdictWord{6, 0, 696},\n\tdictWord{134, 0, 1008},\n\tdictWord{134, 0, 1170},\n\tdictWord{132, 11, 271},\n\tdictWord{7, 0, 13},\n\tdictWord{8, 0, 226},\n\tdictWord{10, 0, 537},\n\tdictWord{11, 0, 570},\n\tdictWord{11, 0, 605},\n\tdictWord{11, 0, 799},\n\tdictWord{11, 0, 804},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t85,\n\t},\n\tdictWord{12, 0, 516},\n\tdictWord{12, 0, 623},\n\tdictWord{13, 0, 112},\n\tdictWord{13, 0, 361},\n\tdictWord{14, 0, 77},\n\tdictWord{14, 0, 78},\n\tdictWord{17, 0, 28},\n\tdictWord{19, 0, 110},\n\tdictWord{140, 11, 314},\n\tdictWord{132, 0, 769},\n\tdictWord{134, 0, 1544},\n\tdictWord{4, 0, 551},\n\tdictWord{137, 0, 678},\n\tdictWord{5, 10, 84},\n\tdictWord{134, 10, 163},\n\tdictWord{9, 0, 57},\n\tdictWord{9, 0, 459},\n\tdictWord{10, 0, 425},\n\tdictWord{11, 0, 119},\n\tdictWord{12, 0, 184},\n\tdictWord{12, 0, 371},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t358,\n\t},\n\tdictWord{145, 0, 51},\n\tdictWord{5, 0, 188},\n\tdictWord{5, 0, 814},\n\tdictWord{8, 0, 10},\n\tdictWord{9, 0, 421},\n\tdictWord{9, 0, 729},\n\tdictWord{10, 0, 609},\n\tdictWord{11, 0, 689},\n\tdictWord{4, 11, 253},\n\tdictWord{5, 10, 410},\n\tdictWord{5, 11, 544},\n\tdictWord{7, 11, 300},\n\tdictWord{137, 11, 340},\n\tdictWord{134, 0, 624},\n\tdictWord{138, 11, 321},\n\tdictWord{135, 0, 1941},\n\tdictWord{18, 0, 130},\n\tdictWord{5, 10, 322},\n\tdictWord{8, 10, 186},\n\tdictWord{9, 10, 262},\n\tdictWord{10, 10, 187},\n\tdictWord{142, 10, 208},\n\tdictWord{5, 11, 53},\n\tdictWord{5, 11, 541},\n\tdictWord{6, 11, 94},\n\tdictWord{6, 11, 499},\n\tdictWord{7, 11, 230},\n\tdictWord{139, 11, 321},\n\tdictWord{133, 10, 227},\n\tdictWord{4, 0, 378},\n\tdictWord{4, 11, 920},\n\tdictWord{5, 11, 25},\n\tdictWord{5, 11, 790},\n\tdictWord{6, 11, 457},\n\tdictWord{135, 11, 853},\n\tdictWord{137, 0, 269},\n\tdictWord{132, 0, 528},\n\tdictWord{134, 0, 1146},\n\tdictWord{7, 10, 1395},\n\tdictWord{8, 10, 486},\n\tdictWord{9, 10, 236},\n\tdictWord{9, 10, 878},\n\tdictWord{10, 10, 218},\n\tdictWord{11, 10, 95},\n\tdictWord{19, 10, 17},\n\tdictWord{147, 10, 31},\n\tdictWord{7, 10, 2043},\n\tdictWord{8, 10, 672},\n\tdictWord{\n\t\t141,\n\t\t10,\n\t\t448,\n\t},\n\tdictWord{134, 0, 1105},\n\tdictWord{134, 0, 1616},\n\tdictWord{134, 11, 1765},\n\tdictWord{140, 11, 163},\n\tdictWord{5, 10, 412},\n\tdictWord{133, 11, 822},\n\tdictWord{132, 11, 634},\n\tdictWord{6, 0, 656},\n\tdictWord{134, 11, 1730},\n\tdictWord{134, 0, 1940},\n\tdictWord{5, 0, 104},\n\tdictWord{6, 0, 173},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1631,\n\t},\n\tdictWord{136, 10, 562},\n\tdictWord{6, 11, 36},\n\tdictWord{7, 11, 658},\n\tdictWord{8, 11, 454},\n\tdictWord{147, 11, 86},\n\tdictWord{5, 0, 457},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1771,\n\t},\n\tdictWord{7, 0, 810},\n\tdictWord{8, 0, 138},\n\tdictWord{8, 0, 342},\n\tdictWord{9, 0, 84},\n\tdictWord{10, 0, 193},\n\tdictWord{11, 0, 883},\n\tdictWord{140, 0, 359},\n\tdictWord{9, 0, 620},\n\tdictWord{135, 10, 1190},\n\tdictWord{137, 10, 132},\n\tdictWord{7, 11, 975},\n\tdictWord{137, 11, 789},\n\tdictWord{6, 0, 95},\n\tdictWord{6, 0, 1934},\n\tdictWord{136, 0, 967},\n\tdictWord{141, 11, 335},\n\tdictWord{6, 0, 406},\n\tdictWord{10, 0, 409},\n\tdictWord{10, 0, 447},\n\tdictWord{11, 0, 44},\n\tdictWord{140, 0, 100},\n\tdictWord{4, 10, 317},\n\tdictWord{135, 10, 1279},\n\tdictWord{132, 0, 477},\n\tdictWord{134, 0, 1268},\n\tdictWord{6, 0, 1941},\n\tdictWord{8, 0, 944},\n\tdictWord{5, 10, 63},\n\tdictWord{133, 10, 509},\n\tdictWord{132, 0, 629},\n\tdictWord{132, 11, 104},\n\tdictWord{4, 0, 246},\n\tdictWord{133, 0, 375},\n\tdictWord{6, 0, 1636},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t288,\n\t},\n\tdictWord{135, 11, 1614},\n\tdictWord{9, 0, 49},\n\tdictWord{10, 0, 774},\n\tdictWord{8, 10, 89},\n\tdictWord{8, 10, 620},\n\tdictWord{11, 10, 628},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t322,\n\t},\n\tdictWord{143, 10, 124},\n\tdictWord{4, 0, 282},\n\tdictWord{7, 0, 1034},\n\tdictWord{11, 0, 398},\n\tdictWord{11, 0, 634},\n\tdictWord{12, 0, 1},\n\tdictWord{12, 0, 79},\n\tdictWord{12, 0, 544},\n\tdictWord{14, 0, 237},\n\tdictWord{17, 0, 10},\n\tdictWord{146, 0, 20},\n\tdictWord{132, 0, 824},\n\tdictWord{7, 11, 45},\n\tdictWord{9, 11, 542},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t566,\n\t},\n\tdictWord{138, 11, 728},\n\tdictWord{5, 0, 118},\n\tdictWord{5, 0, 499},\n\tdictWord{6, 0, 476},\n\tdictWord{6, 0, 665},\n\tdictWord{6, 0, 1176},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1196,\n\t},\n\tdictWord{7, 0, 600},\n\tdictWord{7, 0, 888},\n\tdictWord{135, 0, 1096},\n\tdictWord{7, 0, 296},\n\tdictWord{7, 0, 596},\n\tdictWord{8, 0, 560},\n\tdictWord{8, 0, 586},\n\tdictWord{9, 0, 612},\n\tdictWord{11, 0, 304},\n\tdictWord{12, 0, 46},\n\tdictWord{13, 0, 89},\n\tdictWord{14, 0, 112},\n\tdictWord{145, 0, 122},\n\tdictWord{5, 0, 894},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1772,\n\t},\n\tdictWord{9, 0, 1009},\n\tdictWord{138, 10, 120},\n\tdictWord{5, 11, 533},\n\tdictWord{7, 11, 755},\n\tdictWord{138, 11, 780},\n\tdictWord{151, 10, 1},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1474,\n\t},\n\tdictWord{7, 11, 87},\n\tdictWord{142, 11, 288},\n\tdictWord{139, 0, 366},\n\tdictWord{137, 10, 461},\n\tdictWord{7, 11, 988},\n\tdictWord{7, 11, 1939},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t64,\n\t},\n\tdictWord{9, 11, 502},\n\tdictWord{12, 11, 7},\n\tdictWord{12, 11, 34},\n\tdictWord{13, 11, 12},\n\tdictWord{13, 11, 234},\n\tdictWord{147, 11, 77},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1599,\n\t},\n\tdictWord{7, 0, 1723},\n\tdictWord{8, 0, 79},\n\tdictWord{8, 0, 106},\n\tdictWord{8, 0, 190},\n\tdictWord{8, 0, 302},\n\tdictWord{8, 0, 383},\n\tdictWord{8, 0, 713},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t119,\n\t},\n\tdictWord{9, 0, 233},\n\tdictWord{9, 0, 419},\n\tdictWord{9, 0, 471},\n\tdictWord{10, 0, 181},\n\tdictWord{10, 0, 406},\n\tdictWord{11, 0, 57},\n\tdictWord{11, 0, 85},\n\tdictWord{11, 0, 120},\n\tdictWord{11, 0, 177},\n\tdictWord{11, 0, 296},\n\tdictWord{11, 0, 382},\n\tdictWord{11, 0, 454},\n\tdictWord{11, 0, 758},\n\tdictWord{11, 0, 999},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t27,\n\t},\n\tdictWord{12, 0, 98},\n\tdictWord{12, 0, 131},\n\tdictWord{12, 0, 245},\n\tdictWord{12, 0, 312},\n\tdictWord{12, 0, 446},\n\tdictWord{12, 0, 454},\n\tdictWord{13, 0, 25},\n\tdictWord{13, 0, 98},\n\tdictWord{13, 0, 426},\n\tdictWord{13, 0, 508},\n\tdictWord{14, 0, 70},\n\tdictWord{14, 0, 163},\n\tdictWord{14, 0, 272},\n\tdictWord{14, 0, 277},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t370,\n\t},\n\tdictWord{15, 0, 95},\n\tdictWord{15, 0, 138},\n\tdictWord{15, 0, 167},\n\tdictWord{17, 0, 38},\n\tdictWord{148, 0, 96},\n\tdictWord{135, 10, 1346},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t200,\n\t},\n\tdictWord{19, 0, 2},\n\tdictWord{151, 0, 22},\n\tdictWord{135, 11, 141},\n\tdictWord{134, 10, 85},\n\tdictWord{134, 0, 1759},\n\tdictWord{138, 0, 372},\n\tdictWord{\n\t\t145,\n\t\t0,\n\t\t16,\n\t},\n\tdictWord{8, 0, 943},\n\tdictWord{132, 11, 619},\n\tdictWord{139, 11, 88},\n\tdictWord{5, 11, 246},\n\tdictWord{8, 11, 189},\n\tdictWord{9, 11, 355},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t512,\n\t},\n\tdictWord{10, 11, 124},\n\tdictWord{10, 11, 453},\n\tdictWord{11, 11, 143},\n\tdictWord{11, 11, 416},\n\tdictWord{11, 11, 859},\n\tdictWord{141, 11, 341},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t258,\n\t},\n\tdictWord{134, 0, 719},\n\tdictWord{6, 0, 1798},\n\tdictWord{6, 0, 1839},\n\tdictWord{8, 0, 900},\n\tdictWord{10, 0, 874},\n\tdictWord{10, 0, 886},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t698,\n\t},\n\tdictWord{12, 0, 732},\n\tdictWord{12, 0, 770},\n\tdictWord{16, 0, 106},\n\tdictWord{18, 0, 163},\n\tdictWord{18, 0, 170},\n\tdictWord{18, 0, 171},\n\tdictWord{152, 0, 20},\n\tdictWord{9, 0, 707},\n\tdictWord{11, 0, 326},\n\tdictWord{11, 0, 339},\n\tdictWord{12, 0, 423},\n\tdictWord{12, 0, 502},\n\tdictWord{20, 0, 62},\n\tdictWord{9, 11, 707},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t326,\n\t},\n\tdictWord{11, 11, 339},\n\tdictWord{12, 11, 423},\n\tdictWord{12, 11, 502},\n\tdictWord{148, 11, 62},\n\tdictWord{5, 0, 30},\n\tdictWord{7, 0, 495},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t134,\n\t},\n\tdictWord{9, 0, 788},\n\tdictWord{140, 0, 438},\n\tdictWord{133, 11, 678},\n\tdictWord{5, 10, 279},\n\tdictWord{6, 10, 235},\n\tdictWord{7, 10, 468},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t446,\n\t},\n\tdictWord{9, 10, 637},\n\tdictWord{10, 10, 717},\n\tdictWord{11, 10, 738},\n\tdictWord{140, 10, 514},\n\tdictWord{5, 11, 35},\n\tdictWord{6, 11, 287},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t862,\n\t},\n\tdictWord{7, 11, 1886},\n\tdictWord{138, 11, 179},\n\tdictWord{7, 0, 1948},\n\tdictWord{7, 0, 2004},\n\tdictWord{132, 11, 517},\n\tdictWord{5, 10, 17},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t371,\n\t},\n\tdictWord{137, 10, 528},\n\tdictWord{4, 0, 115},\n\tdictWord{5, 0, 669},\n\tdictWord{6, 0, 407},\n\tdictWord{8, 0, 311},\n\tdictWord{11, 0, 10},\n\tdictWord{141, 0, 5},\n\tdictWord{137, 0, 381},\n\tdictWord{5, 0, 50},\n\tdictWord{6, 0, 439},\n\tdictWord{7, 0, 780},\n\tdictWord{135, 0, 1040},\n\tdictWord{136, 11, 667},\n\tdictWord{11, 11, 403},\n\tdictWord{146, 11, 83},\n\tdictWord{5, 0, 1},\n\tdictWord{6, 0, 81},\n\tdictWord{138, 0, 520},\n\tdictWord{134, 0, 738},\n\tdictWord{5, 0, 482},\n\tdictWord{8, 0, 98},\n\tdictWord{9, 0, 172},\n\tdictWord{10, 0, 360},\n\tdictWord{10, 0, 700},\n\tdictWord{10, 0, 822},\n\tdictWord{11, 0, 302},\n\tdictWord{11, 0, 778},\n\tdictWord{12, 0, 50},\n\tdictWord{12, 0, 127},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t396,\n\t},\n\tdictWord{13, 0, 62},\n\tdictWord{13, 0, 328},\n\tdictWord{14, 0, 122},\n\tdictWord{147, 0, 72},\n\tdictWord{9, 11, 157},\n\tdictWord{10, 11, 131},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t72,\n\t},\n\tdictWord{135, 11, 714},\n\tdictWord{135, 11, 539},\n\tdictWord{5, 0, 2},\n\tdictWord{6, 0, 512},\n\tdictWord{7, 0, 797},\n\tdictWord{7, 0, 1494},\n\tdictWord{8, 0, 253},\n\tdictWord{8, 0, 589},\n\tdictWord{9, 0, 77},\n\tdictWord{10, 0, 1},\n\tdictWord{10, 0, 129},\n\tdictWord{10, 0, 225},\n\tdictWord{11, 0, 118},\n\tdictWord{11, 0, 226},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t251,\n\t},\n\tdictWord{11, 0, 430},\n\tdictWord{11, 0, 701},\n\tdictWord{11, 0, 974},\n\tdictWord{11, 0, 982},\n\tdictWord{12, 0, 64},\n\tdictWord{12, 0, 260},\n\tdictWord{12, 0, 488},\n\tdictWord{140, 0, 690},\n\tdictWord{5, 11, 394},\n\tdictWord{7, 11, 367},\n\tdictWord{7, 11, 487},\n\tdictWord{7, 11, 857},\n\tdictWord{7, 11, 1713},\n\tdictWord{8, 11, 246},\n\tdictWord{9, 11, 537},\n\tdictWord{10, 11, 165},\n\tdictWord{12, 11, 219},\n\tdictWord{140, 11, 561},\n\tdictWord{136, 0, 557},\n\tdictWord{5, 10, 779},\n\tdictWord{5, 10, 807},\n\tdictWord{6, 10, 1655},\n\tdictWord{134, 10, 1676},\n\tdictWord{4, 10, 196},\n\tdictWord{5, 10, 558},\n\tdictWord{133, 10, 949},\n\tdictWord{11, 11, 827},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t56,\n\t},\n\tdictWord{14, 11, 34},\n\tdictWord{143, 11, 148},\n\tdictWord{137, 0, 347},\n\tdictWord{133, 0, 572},\n\tdictWord{134, 0, 832},\n\tdictWord{4, 0, 12},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t504,\n\t},\n\tdictWord{7, 0, 522},\n\tdictWord{7, 0, 809},\n\tdictWord{8, 0, 797},\n\tdictWord{141, 0, 88},\n\tdictWord{4, 10, 752},\n\tdictWord{133, 11, 449},\n\tdictWord{7, 11, 86},\n\tdictWord{8, 11, 103},\n\tdictWord{145, 11, 69},\n\tdictWord{7, 11, 2028},\n\tdictWord{138, 11, 641},\n\tdictWord{5, 0, 528},\n\tdictWord{6, 11, 1},\n\tdictWord{142, 11, 2},\n\tdictWord{134, 0, 861},\n\tdictWord{10, 0, 294},\n\tdictWord{4, 10, 227},\n\tdictWord{5, 10, 159},\n\tdictWord{5, 10, 409},\n\tdictWord{7, 10, 80},\n\tdictWord{10, 10, 479},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t418,\n\t},\n\tdictWord{14, 10, 50},\n\tdictWord{14, 10, 249},\n\tdictWord{142, 10, 295},\n\tdictWord{7, 10, 1470},\n\tdictWord{8, 10, 66},\n\tdictWord{8, 10, 137},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t761,\n\t},\n\tdictWord{9, 10, 638},\n\tdictWord{11, 10, 80},\n\tdictWord{11, 10, 212},\n\tdictWord{11, 10, 368},\n\tdictWord{11, 10, 418},\n\tdictWord{12, 10, 8},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t15,\n\t},\n\tdictWord{16, 10, 61},\n\tdictWord{17, 10, 59},\n\tdictWord{19, 10, 28},\n\tdictWord{148, 10, 84},\n\tdictWord{20, 0, 109},\n\tdictWord{135, 11, 1148},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t277,\n\t},\n\tdictWord{7, 11, 1274},\n\tdictWord{7, 11, 1386},\n\tdictWord{7, 11, 1392},\n\tdictWord{12, 11, 129},\n\tdictWord{146, 11, 87},\n\tdictWord{6, 11, 187},\n\tdictWord{7, 11, 39},\n\tdictWord{7, 11, 1203},\n\tdictWord{8, 11, 380},\n\tdictWord{8, 11, 542},\n\tdictWord{14, 11, 117},\n\tdictWord{149, 11, 28},\n\tdictWord{134, 0, 1187},\n\tdictWord{5, 0, 266},\n\tdictWord{9, 0, 290},\n\tdictWord{9, 0, 364},\n\tdictWord{10, 0, 293},\n\tdictWord{11, 0, 606},\n\tdictWord{142, 0, 45},\n\tdictWord{6, 11, 297},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t793,\n\t},\n\tdictWord{139, 11, 938},\n\tdictWord{4, 0, 50},\n\tdictWord{6, 0, 594},\n\tdictWord{9, 0, 121},\n\tdictWord{10, 0, 49},\n\tdictWord{10, 0, 412},\n\tdictWord{139, 0, 834},\n\tdictWord{136, 0, 748},\n\tdictWord{7, 11, 464},\n\tdictWord{8, 11, 438},\n\tdictWord{11, 11, 105},\n\tdictWord{11, 11, 363},\n\tdictWord{12, 11, 231},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t386,\n\t},\n\tdictWord{15, 11, 102},\n\tdictWord{148, 11, 75},\n\tdictWord{132, 0, 466},\n\tdictWord{13, 0, 399},\n\tdictWord{14, 0, 337},\n\tdictWord{6, 10, 38},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1220,\n\t},\n\tdictWord{8, 10, 185},\n\tdictWord{8, 10, 256},\n\tdictWord{9, 10, 22},\n\tdictWord{9, 10, 331},\n\tdictWord{10, 10, 738},\n\tdictWord{11, 10, 205},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t540,\n\t},\n\tdictWord{11, 10, 746},\n\tdictWord{13, 10, 465},\n\tdictWord{142, 10, 194},\n\tdictWord{9, 0, 378},\n\tdictWord{141, 0, 162},\n\tdictWord{137, 0, 519},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t159,\n\t},\n\tdictWord{6, 10, 115},\n\tdictWord{7, 10, 252},\n\tdictWord{7, 10, 257},\n\tdictWord{7, 10, 1928},\n\tdictWord{8, 10, 69},\n\tdictWord{9, 10, 384},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t91,\n\t},\n\tdictWord{10, 10, 615},\n\tdictWord{12, 10, 375},\n\tdictWord{14, 10, 235},\n\tdictWord{18, 10, 117},\n\tdictWord{147, 10, 123},\n\tdictWord{5, 11, 604},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t911,\n\t},\n\tdictWord{136, 10, 278},\n\tdictWord{132, 0, 667},\n\tdictWord{8, 0, 351},\n\tdictWord{9, 0, 322},\n\tdictWord{4, 10, 151},\n\tdictWord{135, 10, 1567},\n\tdictWord{134, 0, 902},\n\tdictWord{133, 10, 990},\n\tdictWord{12, 0, 180},\n\tdictWord{5, 10, 194},\n\tdictWord{7, 10, 1662},\n\tdictWord{137, 10, 90},\n\tdictWord{4, 0, 869},\n\tdictWord{134, 0, 1996},\n\tdictWord{134, 0, 813},\n\tdictWord{133, 10, 425},\n\tdictWord{137, 11, 761},\n\tdictWord{132, 0, 260},\n\tdictWord{133, 10, 971},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t20,\n\t},\n\tdictWord{6, 11, 298},\n\tdictWord{7, 11, 659},\n\tdictWord{7, 11, 1366},\n\tdictWord{137, 11, 219},\n\tdictWord{4, 0, 39},\n\tdictWord{5, 0, 36},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1843,\n\t},\n\tdictWord{8, 0, 407},\n\tdictWord{11, 0, 144},\n\tdictWord{140, 0, 523},\n\tdictWord{4, 0, 510},\n\tdictWord{10, 0, 587},\n\tdictWord{139, 10, 752},\n\tdictWord{7, 0, 29},\n\tdictWord{7, 0, 66},\n\tdictWord{7, 0, 1980},\n\tdictWord{10, 0, 487},\n\tdictWord{138, 0, 809},\n\tdictWord{13, 0, 260},\n\tdictWord{14, 0, 82},\n\tdictWord{18, 0, 63},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t662,\n\t},\n\tdictWord{5, 10, 72},\n\tdictWord{6, 10, 264},\n\tdictWord{7, 10, 21},\n\tdictWord{7, 10, 46},\n\tdictWord{7, 10, 2013},\n\tdictWord{8, 10, 215},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t513,\n\t},\n\tdictWord{10, 10, 266},\n\tdictWord{139, 10, 22},\n\tdictWord{134, 0, 570},\n\tdictWord{6, 0, 565},\n\tdictWord{7, 0, 1667},\n\tdictWord{4, 11, 439},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t95,\n\t},\n\tdictWord{11, 10, 603},\n\tdictWord{12, 11, 242},\n\tdictWord{13, 10, 443},\n\tdictWord{14, 10, 160},\n\tdictWord{143, 10, 4},\n\tdictWord{134, 0, 1464},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t431,\n\t},\n\tdictWord{9, 0, 372},\n\tdictWord{15, 0, 2},\n\tdictWord{19, 0, 10},\n\tdictWord{19, 0, 18},\n\tdictWord{5, 10, 874},\n\tdictWord{6, 10, 1677},\n\tdictWord{143, 10, 0},\n\tdictWord{132, 0, 787},\n\tdictWord{6, 0, 380},\n\tdictWord{12, 0, 399},\n\tdictWord{21, 0, 19},\n\tdictWord{7, 10, 939},\n\tdictWord{7, 10, 1172},\n\tdictWord{7, 10, 1671},\n\tdictWord{9, 10, 540},\n\tdictWord{10, 10, 696},\n\tdictWord{11, 10, 265},\n\tdictWord{11, 10, 732},\n\tdictWord{11, 10, 928},\n\tdictWord{11, 10, 937},\n\tdictWord{\n\t\t141,\n\t\t10,\n\t\t438,\n\t},\n\tdictWord{137, 0, 200},\n\tdictWord{132, 11, 233},\n\tdictWord{132, 0, 516},\n\tdictWord{134, 11, 577},\n\tdictWord{132, 0, 844},\n\tdictWord{11, 0, 887},\n\tdictWord{14, 0, 365},\n\tdictWord{142, 0, 375},\n\tdictWord{132, 11, 482},\n\tdictWord{8, 0, 821},\n\tdictWord{140, 0, 44},\n\tdictWord{7, 0, 1655},\n\tdictWord{136, 0, 305},\n\tdictWord{5, 10, 682},\n\tdictWord{135, 10, 1887},\n\tdictWord{135, 11, 346},\n\tdictWord{132, 10, 696},\n\tdictWord{4, 0, 10},\n\tdictWord{7, 0, 917},\n\tdictWord{139, 0, 786},\n\tdictWord{5, 11, 795},\n\tdictWord{6, 11, 1741},\n\tdictWord{8, 11, 417},\n\tdictWord{137, 11, 782},\n\tdictWord{4, 0, 1016},\n\tdictWord{134, 0, 2031},\n\tdictWord{5, 0, 684},\n\tdictWord{4, 10, 726},\n\tdictWord{133, 10, 630},\n\tdictWord{6, 0, 1021},\n\tdictWord{134, 0, 1480},\n\tdictWord{8, 10, 802},\n\tdictWord{136, 10, 838},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t27,\n\t},\n\tdictWord{134, 0, 395},\n\tdictWord{135, 11, 622},\n\tdictWord{7, 11, 625},\n\tdictWord{135, 11, 1750},\n\tdictWord{4, 11, 203},\n\tdictWord{135, 11, 1936},\n\tdictWord{6, 10, 118},\n\tdictWord{7, 10, 215},\n\tdictWord{7, 10, 1521},\n\tdictWord{140, 10, 11},\n\tdictWord{132, 0, 813},\n\tdictWord{136, 0, 511},\n\tdictWord{7, 10, 615},\n\tdictWord{138, 10, 251},\n\tdictWord{135, 10, 1044},\n\tdictWord{145, 0, 56},\n\tdictWord{133, 10, 225},\n\tdictWord{6, 0, 342},\n\tdictWord{6, 0, 496},\n\tdictWord{8, 0, 275},\n\tdictWord{137, 0, 206},\n\tdictWord{4, 0, 909},\n\tdictWord{133, 0, 940},\n\tdictWord{132, 0, 891},\n\tdictWord{7, 11, 311},\n\tdictWord{9, 11, 308},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t255,\n\t},\n\tdictWord{4, 10, 370},\n\tdictWord{5, 10, 756},\n\tdictWord{135, 10, 1326},\n\tdictWord{4, 0, 687},\n\tdictWord{134, 0, 1596},\n\tdictWord{134, 0, 1342},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1662,\n\t},\n\tdictWord{7, 10, 48},\n\tdictWord{8, 10, 771},\n\tdictWord{10, 10, 116},\n\tdictWord{13, 10, 104},\n\tdictWord{14, 10, 105},\n\tdictWord{14, 10, 184},\n\tdictWord{15, 10, 168},\n\tdictWord{19, 10, 92},\n\tdictWord{148, 10, 68},\n\tdictWord{138, 10, 209},\n\tdictWord{4, 11, 400},\n\tdictWord{5, 11, 267},\n\tdictWord{135, 11, 232},\n\tdictWord{151, 11, 12},\n\tdictWord{6, 0, 41},\n\tdictWord{141, 0, 160},\n\tdictWord{141, 11, 314},\n\tdictWord{134, 0, 1718},\n\tdictWord{136, 0, 778},\n\tdictWord{\n\t\t142,\n\t\t11,\n\t\t261,\n\t},\n\tdictWord{134, 0, 1610},\n\tdictWord{133, 0, 115},\n\tdictWord{132, 0, 294},\n\tdictWord{14, 0, 314},\n\tdictWord{132, 10, 120},\n\tdictWord{132, 0, 983},\n\tdictWord{5, 0, 193},\n\tdictWord{140, 0, 178},\n\tdictWord{138, 10, 429},\n\tdictWord{5, 10, 820},\n\tdictWord{135, 10, 931},\n\tdictWord{6, 0, 994},\n\tdictWord{6, 0, 1051},\n\tdictWord{6, 0, 1439},\n\tdictWord{7, 0, 174},\n\tdictWord{133, 11, 732},\n\tdictWord{4, 11, 100},\n\tdictWord{7, 11, 679},\n\tdictWord{8, 11, 313},\n\tdictWord{138, 10, 199},\n\tdictWord{6, 10, 151},\n\tdictWord{6, 10, 1675},\n\tdictWord{7, 10, 383},\n\tdictWord{151, 10, 10},\n\tdictWord{6, 0, 1796},\n\tdictWord{8, 0, 848},\n\tdictWord{8, 0, 867},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t907,\n\t},\n\tdictWord{10, 0, 855},\n\tdictWord{140, 0, 703},\n\tdictWord{140, 0, 221},\n\tdictWord{4, 0, 122},\n\tdictWord{5, 0, 796},\n\tdictWord{5, 0, 952},\n\tdictWord{6, 0, 1660},\n\tdictWord{6, 0, 1671},\n\tdictWord{8, 0, 567},\n\tdictWord{9, 0, 687},\n\tdictWord{9, 0, 742},\n\tdictWord{10, 0, 686},\n\tdictWord{11, 0, 682},\n\tdictWord{11, 0, 909},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t281,\n\t},\n\tdictWord{5, 11, 362},\n\tdictWord{5, 11, 443},\n\tdictWord{6, 11, 318},\n\tdictWord{7, 11, 1019},\n\tdictWord{139, 11, 623},\n\tdictWord{5, 11, 463},\n\tdictWord{136, 11, 296},\n\tdictWord{11, 0, 583},\n\tdictWord{13, 0, 262},\n\tdictWord{6, 10, 1624},\n\tdictWord{12, 10, 422},\n\tdictWord{142, 10, 360},\n\tdictWord{5, 0, 179},\n\tdictWord{7, 0, 1095},\n\tdictWord{135, 0, 1213},\n\tdictWord{4, 10, 43},\n\tdictWord{4, 11, 454},\n\tdictWord{5, 10, 344},\n\tdictWord{133, 10, 357},\n\tdictWord{4, 0, 66},\n\tdictWord{7, 0, 722},\n\tdictWord{135, 0, 904},\n\tdictWord{134, 0, 773},\n\tdictWord{7, 0, 352},\n\tdictWord{133, 10, 888},\n\tdictWord{5, 11, 48},\n\tdictWord{5, 11, 404},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t557,\n\t},\n\tdictWord{7, 11, 458},\n\tdictWord{8, 11, 597},\n\tdictWord{10, 11, 455},\n\tdictWord{10, 11, 606},\n\tdictWord{11, 11, 49},\n\tdictWord{11, 11, 548},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t476,\n\t},\n\tdictWord{13, 11, 18},\n\tdictWord{141, 11, 450},\n\tdictWord{134, 11, 418},\n\tdictWord{132, 10, 711},\n\tdictWord{5, 11, 442},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1984,\n\t},\n\tdictWord{141, 0, 35},\n\tdictWord{137, 0, 152},\n\tdictWord{134, 0, 1197},\n\tdictWord{135, 11, 1093},\n\tdictWord{137, 11, 203},\n\tdictWord{137, 10, 440},\n\tdictWord{10, 0, 592},\n\tdictWord{10, 0, 753},\n\tdictWord{12, 0, 317},\n\tdictWord{12, 0, 355},\n\tdictWord{12, 0, 465},\n\tdictWord{12, 0, 469},\n\tdictWord{12, 0, 560},\n\tdictWord{12, 0, 578},\n\tdictWord{141, 0, 243},\n\tdictWord{133, 0, 564},\n\tdictWord{134, 0, 797},\n\tdictWord{5, 10, 958},\n\tdictWord{133, 10, 987},\n\tdictWord{5, 11, 55},\n\tdictWord{7, 11, 376},\n\tdictWord{140, 11, 161},\n\tdictWord{133, 11, 450},\n\tdictWord{134, 0, 556},\n\tdictWord{134, 0, 819},\n\tdictWord{11, 10, 276},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t293,\n\t},\n\tdictWord{7, 0, 544},\n\tdictWord{138, 0, 61},\n\tdictWord{8, 0, 719},\n\tdictWord{4, 10, 65},\n\tdictWord{5, 10, 479},\n\tdictWord{5, 10, 1004},\n\tdictWord{7, 10, 1913},\n\tdictWord{8, 10, 317},\n\tdictWord{9, 10, 302},\n\tdictWord{10, 10, 612},\n\tdictWord{141, 10, 22},\n\tdictWord{4, 0, 5},\n\tdictWord{5, 0, 498},\n\tdictWord{8, 0, 637},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t521,\n\t},\n\tdictWord{4, 11, 213},\n\tdictWord{4, 10, 261},\n\tdictWord{7, 11, 223},\n\tdictWord{7, 10, 510},\n\tdictWord{136, 11, 80},\n\tdictWord{5, 0, 927},\n\tdictWord{7, 0, 101},\n\tdictWord{4, 10, 291},\n\tdictWord{7, 11, 381},\n\tdictWord{7, 11, 806},\n\tdictWord{7, 11, 820},\n\tdictWord{8, 11, 354},\n\tdictWord{8, 11, 437},\n\tdictWord{8, 11, 787},\n\tdictWord{9, 10, 515},\n\tdictWord{9, 11, 657},\n\tdictWord{10, 11, 58},\n\tdictWord{10, 11, 339},\n\tdictWord{10, 11, 749},\n\tdictWord{11, 11, 914},\n\tdictWord{12, 10, 152},\n\tdictWord{12, 11, 162},\n\tdictWord{12, 10, 443},\n\tdictWord{13, 11, 75},\n\tdictWord{13, 10, 392},\n\tdictWord{14, 11, 106},\n\tdictWord{14, 11, 198},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t320,\n\t},\n\tdictWord{14, 10, 357},\n\tdictWord{14, 11, 413},\n\tdictWord{146, 11, 43},\n\tdictWord{6, 0, 1153},\n\tdictWord{7, 0, 1441},\n\tdictWord{136, 11, 747},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t893,\n\t},\n\tdictWord{5, 0, 780},\n\tdictWord{133, 0, 893},\n\tdictWord{138, 11, 654},\n\tdictWord{133, 11, 692},\n\tdictWord{133, 0, 238},\n\tdictWord{134, 11, 191},\n\tdictWord{4, 10, 130},\n\tdictWord{135, 10, 843},\n\tdictWord{6, 0, 1296},\n\tdictWord{5, 10, 42},\n\tdictWord{5, 10, 879},\n\tdictWord{7, 10, 245},\n\tdictWord{7, 10, 324},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1532,\n\t},\n\tdictWord{11, 10, 463},\n\tdictWord{11, 10, 472},\n\tdictWord{13, 10, 363},\n\tdictWord{144, 10, 52},\n\tdictWord{134, 0, 1729},\n\tdictWord{6, 0, 1999},\n\tdictWord{136, 0, 969},\n\tdictWord{4, 10, 134},\n\tdictWord{133, 10, 372},\n\tdictWord{4, 0, 60},\n\tdictWord{7, 0, 941},\n\tdictWord{7, 0, 1800},\n\tdictWord{8, 0, 314},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t700,\n\t},\n\tdictWord{139, 0, 487},\n\tdictWord{134, 0, 1144},\n\tdictWord{6, 11, 162},\n\tdictWord{7, 11, 1960},\n\tdictWord{136, 11, 831},\n\tdictWord{132, 11, 706},\n\tdictWord{135, 0, 1147},\n\tdictWord{138, 11, 426},\n\tdictWord{138, 11, 89},\n\tdictWord{7, 0, 1853},\n\tdictWord{138, 0, 437},\n\tdictWord{136, 0, 419},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1634,\n\t},\n\tdictWord{133, 0, 828},\n\tdictWord{5, 0, 806},\n\tdictWord{7, 0, 176},\n\tdictWord{7, 0, 178},\n\tdictWord{7, 0, 1240},\n\tdictWord{7, 0, 1976},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t644,\n\t},\n\tdictWord{135, 11, 1877},\n\tdictWord{5, 11, 420},\n\tdictWord{135, 11, 1449},\n\tdictWord{4, 0, 51},\n\tdictWord{5, 0, 39},\n\tdictWord{6, 0, 4},\n\tdictWord{7, 0, 591},\n\tdictWord{7, 0, 849},\n\tdictWord{7, 0, 951},\n\tdictWord{7, 0, 1613},\n\tdictWord{7, 0, 1760},\n\tdictWord{7, 0, 1988},\n\tdictWord{9, 0, 434},\n\tdictWord{10, 0, 754},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t25,\n\t},\n\tdictWord{139, 0, 37},\n\tdictWord{10, 11, 57},\n\tdictWord{138, 11, 277},\n\tdictWord{135, 10, 540},\n\tdictWord{132, 11, 204},\n\tdictWord{135, 0, 159},\n\tdictWord{139, 11, 231},\n\tdictWord{133, 0, 902},\n\tdictWord{7, 0, 928},\n\tdictWord{7, 11, 366},\n\tdictWord{9, 11, 287},\n\tdictWord{12, 11, 199},\n\tdictWord{12, 11, 556},\n\tdictWord{140, 11, 577},\n\tdictWord{6, 10, 623},\n\tdictWord{136, 10, 789},\n\tdictWord{4, 10, 908},\n\tdictWord{5, 10, 359},\n\tdictWord{5, 10, 508},\n\tdictWord{6, 10, 1723},\n\tdictWord{7, 10, 343},\n\tdictWord{7, 10, 1996},\n\tdictWord{135, 10, 2026},\n\tdictWord{134, 0, 270},\n\tdictWord{4, 10, 341},\n\tdictWord{135, 10, 480},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t356,\n\t},\n\tdictWord{135, 11, 224},\n\tdictWord{11, 11, 588},\n\tdictWord{11, 11, 864},\n\tdictWord{11, 11, 968},\n\tdictWord{143, 11, 160},\n\tdictWord{132, 0, 556},\n\tdictWord{137, 0, 801},\n\tdictWord{132, 0, 416},\n\tdictWord{142, 0, 372},\n\tdictWord{5, 0, 152},\n\tdictWord{5, 0, 197},\n\tdictWord{7, 0, 340},\n\tdictWord{7, 0, 867},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t548,\n\t},\n\tdictWord{10, 0, 581},\n\tdictWord{11, 0, 6},\n\tdictWord{12, 0, 3},\n\tdictWord{12, 0, 19},\n\tdictWord{14, 0, 110},\n\tdictWord{142, 0, 289},\n\tdictWord{139, 0, 369},\n\tdictWord{7, 11, 630},\n\tdictWord{9, 11, 567},\n\tdictWord{11, 11, 150},\n\tdictWord{11, 11, 444},\n\tdictWord{141, 11, 119},\n\tdictWord{134, 11, 539},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1995,\n\t},\n\tdictWord{8, 10, 299},\n\tdictWord{11, 10, 890},\n\tdictWord{140, 10, 674},\n\tdictWord{7, 0, 34},\n\tdictWord{7, 0, 190},\n\tdictWord{8, 0, 28},\n\tdictWord{8, 0, 141},\n\tdictWord{8, 0, 444},\n\tdictWord{8, 0, 811},\n\tdictWord{9, 0, 468},\n\tdictWord{11, 0, 334},\n\tdictWord{12, 0, 24},\n\tdictWord{12, 0, 386},\n\tdictWord{140, 0, 576},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t757,\n\t},\n\tdictWord{7, 0, 1553},\n\tdictWord{136, 0, 898},\n\tdictWord{133, 0, 721},\n\tdictWord{136, 0, 1012},\n\tdictWord{4, 0, 789},\n\tdictWord{5, 0, 647},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1102,\n\t},\n\tdictWord{132, 0, 898},\n\tdictWord{10, 0, 183},\n\tdictWord{4, 10, 238},\n\tdictWord{5, 10, 503},\n\tdictWord{6, 10, 179},\n\tdictWord{7, 10, 2003},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t381,\n\t},\n\tdictWord{8, 10, 473},\n\tdictWord{9, 10, 149},\n\tdictWord{10, 10, 788},\n\tdictWord{15, 10, 45},\n\tdictWord{15, 10, 86},\n\tdictWord{20, 10, 110},\n\tdictWord{\n\t\t150,\n\t\t10,\n\t\t57,\n\t},\n\tdictWord{9, 0, 136},\n\tdictWord{19, 0, 107},\n\tdictWord{4, 10, 121},\n\tdictWord{5, 10, 156},\n\tdictWord{5, 10, 349},\n\tdictWord{10, 10, 605},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t342,\n\t},\n\tdictWord{4, 11, 235},\n\tdictWord{135, 11, 255},\n\tdictWord{4, 11, 194},\n\tdictWord{5, 11, 584},\n\tdictWord{6, 11, 384},\n\tdictWord{7, 11, 583},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t761,\n\t},\n\tdictWord{11, 11, 760},\n\tdictWord{139, 11, 851},\n\tdictWord{6, 10, 80},\n\tdictWord{6, 10, 1694},\n\tdictWord{7, 10, 173},\n\tdictWord{7, 10, 1974},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t547,\n\t},\n\tdictWord{10, 10, 730},\n\tdictWord{14, 10, 18},\n\tdictWord{150, 10, 39},\n\tdictWord{4, 10, 923},\n\tdictWord{134, 10, 1711},\n\tdictWord{5, 0, 277},\n\tdictWord{141, 0, 247},\n\tdictWord{132, 0, 435},\n\tdictWord{133, 11, 562},\n\tdictWord{134, 0, 1311},\n\tdictWord{5, 11, 191},\n\tdictWord{137, 11, 271},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t595,\n\t},\n\tdictWord{7, 11, 1537},\n\tdictWord{14, 11, 96},\n\tdictWord{143, 11, 73},\n\tdictWord{5, 0, 437},\n\tdictWord{7, 0, 502},\n\tdictWord{7, 0, 519},\n\tdictWord{7, 0, 1122},\n\tdictWord{7, 0, 1751},\n\tdictWord{14, 0, 211},\n\tdictWord{6, 10, 459},\n\tdictWord{7, 10, 1753},\n\tdictWord{7, 10, 1805},\n\tdictWord{8, 10, 658},\n\tdictWord{9, 10, 1},\n\tdictWord{11, 10, 959},\n\tdictWord{141, 10, 446},\n\tdictWord{6, 0, 814},\n\tdictWord{4, 11, 470},\n\tdictWord{5, 11, 473},\n\tdictWord{6, 11, 153},\n\tdictWord{7, 11, 1503},\n\tdictWord{7, 11, 1923},\n\tdictWord{10, 11, 701},\n\tdictWord{11, 11, 132},\n\tdictWord{11, 11, 168},\n\tdictWord{11, 11, 227},\n\tdictWord{11, 11, 320},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t436,\n\t},\n\tdictWord{11, 11, 525},\n\tdictWord{11, 11, 855},\n\tdictWord{12, 11, 41},\n\tdictWord{12, 11, 286},\n\tdictWord{13, 11, 103},\n\tdictWord{13, 11, 284},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t255,\n\t},\n\tdictWord{14, 11, 262},\n\tdictWord{15, 11, 117},\n\tdictWord{143, 11, 127},\n\tdictWord{5, 0, 265},\n\tdictWord{6, 0, 212},\n\tdictWord{135, 0, 28},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t750,\n\t},\n\tdictWord{133, 11, 327},\n\tdictWord{6, 11, 552},\n\tdictWord{7, 11, 1754},\n\tdictWord{137, 11, 604},\n\tdictWord{134, 0, 2012},\n\tdictWord{132, 0, 702},\n\tdictWord{5, 11, 80},\n\tdictWord{6, 11, 405},\n\tdictWord{7, 11, 403},\n\tdictWord{7, 11, 1502},\n\tdictWord{7, 11, 1626},\n\tdictWord{8, 11, 456},\n\tdictWord{9, 11, 487},\n\tdictWord{9, 11, 853},\n\tdictWord{9, 11, 889},\n\tdictWord{10, 11, 309},\n\tdictWord{11, 11, 721},\n\tdictWord{11, 11, 994},\n\tdictWord{12, 11, 430},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t165,\n\t},\n\tdictWord{5, 0, 808},\n\tdictWord{135, 0, 2045},\n\tdictWord{5, 0, 166},\n\tdictWord{8, 0, 739},\n\tdictWord{140, 0, 511},\n\tdictWord{134, 10, 490},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t453,\n\t},\n\tdictWord{5, 11, 887},\n\tdictWord{6, 11, 535},\n\tdictWord{8, 11, 6},\n\tdictWord{136, 11, 543},\n\tdictWord{4, 0, 119},\n\tdictWord{5, 0, 170},\n\tdictWord{5, 0, 447},\n\tdictWord{7, 0, 1708},\n\tdictWord{7, 0, 1889},\n\tdictWord{9, 0, 357},\n\tdictWord{9, 0, 719},\n\tdictWord{12, 0, 486},\n\tdictWord{140, 0, 596},\n\tdictWord{137, 0, 500},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t250,\n\t},\n\tdictWord{136, 10, 507},\n\tdictWord{132, 10, 158},\n\tdictWord{6, 0, 809},\n\tdictWord{134, 0, 1500},\n\tdictWord{9, 0, 327},\n\tdictWord{11, 0, 350},\n\tdictWord{11, 0, 831},\n\tdictWord{13, 0, 352},\n\tdictWord{4, 10, 140},\n\tdictWord{7, 10, 362},\n\tdictWord{8, 10, 209},\n\tdictWord{9, 10, 10},\n\tdictWord{9, 10, 503},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t614,\n\t},\n\tdictWord{10, 10, 689},\n\tdictWord{11, 10, 327},\n\tdictWord{11, 10, 725},\n\tdictWord{12, 10, 252},\n\tdictWord{12, 10, 583},\n\tdictWord{13, 10, 192},\n\tdictWord{14, 10, 269},\n\tdictWord{14, 10, 356},\n\tdictWord{148, 10, 50},\n\tdictWord{135, 11, 741},\n\tdictWord{4, 0, 450},\n\tdictWord{7, 0, 1158},\n\tdictWord{19, 10, 1},\n\tdictWord{19, 10, 26},\n\tdictWord{150, 10, 9},\n\tdictWord{6, 0, 597},\n\tdictWord{135, 0, 1318},\n\tdictWord{134, 0, 1602},\n\tdictWord{6, 10, 228},\n\tdictWord{7, 10, 1341},\n\tdictWord{9, 10, 408},\n\tdictWord{138, 10, 343},\n\tdictWord{7, 0, 1375},\n\tdictWord{7, 0, 1466},\n\tdictWord{138, 0, 331},\n\tdictWord{132, 0, 754},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t557,\n\t},\n\tdictWord{5, 11, 101},\n\tdictWord{6, 11, 88},\n\tdictWord{6, 11, 543},\n\tdictWord{7, 11, 1677},\n\tdictWord{9, 11, 100},\n\tdictWord{10, 11, 677},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t169,\n\t},\n\tdictWord{14, 11, 302},\n\tdictWord{14, 11, 313},\n\tdictWord{15, 11, 48},\n\tdictWord{143, 11, 84},\n\tdictWord{134, 0, 1368},\n\tdictWord{4, 11, 310},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t795,\n\t},\n\tdictWord{10, 11, 733},\n\tdictWord{11, 11, 451},\n\tdictWord{12, 11, 249},\n\tdictWord{14, 11, 115},\n\tdictWord{14, 11, 286},\n\tdictWord{143, 11, 100},\n\tdictWord{132, 10, 548},\n\tdictWord{10, 0, 557},\n\tdictWord{7, 10, 197},\n\tdictWord{8, 10, 142},\n\tdictWord{8, 10, 325},\n\tdictWord{9, 10, 150},\n\tdictWord{9, 10, 596},\n\tdictWord{10, 10, 353},\n\tdictWord{11, 10, 74},\n\tdictWord{11, 10, 315},\n\tdictWord{12, 10, 662},\n\tdictWord{12, 10, 681},\n\tdictWord{14, 10, 423},\n\tdictWord{\n\t\t143,\n\t\t10,\n\t\t141,\n\t},\n\tdictWord{133, 11, 587},\n\tdictWord{5, 0, 850},\n\tdictWord{136, 0, 799},\n\tdictWord{10, 0, 908},\n\tdictWord{12, 0, 701},\n\tdictWord{12, 0, 757},\n\tdictWord{\n\t\t142,\n\t\t0,\n\t\t466,\n\t},\n\tdictWord{4, 0, 62},\n\tdictWord{5, 0, 275},\n\tdictWord{18, 0, 19},\n\tdictWord{6, 10, 399},\n\tdictWord{6, 10, 579},\n\tdictWord{7, 10, 692},\n\tdictWord{7, 10, 846},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1015,\n\t},\n\tdictWord{7, 10, 1799},\n\tdictWord{8, 10, 403},\n\tdictWord{9, 10, 394},\n\tdictWord{10, 10, 133},\n\tdictWord{12, 10, 4},\n\tdictWord{12, 10, 297},\n\tdictWord{12, 10, 452},\n\tdictWord{16, 10, 81},\n\tdictWord{18, 10, 25},\n\tdictWord{21, 10, 14},\n\tdictWord{22, 10, 12},\n\tdictWord{151, 10, 18},\n\tdictWord{12, 0, 459},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1546,\n\t},\n\tdictWord{11, 10, 299},\n\tdictWord{142, 10, 407},\n\tdictWord{132, 10, 177},\n\tdictWord{132, 11, 498},\n\tdictWord{7, 11, 217},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t140,\n\t},\n\tdictWord{138, 11, 610},\n\tdictWord{5, 10, 411},\n\tdictWord{135, 10, 653},\n\tdictWord{134, 0, 1802},\n\tdictWord{7, 10, 439},\n\tdictWord{10, 10, 727},\n\tdictWord{11, 10, 260},\n\tdictWord{139, 10, 684},\n\tdictWord{133, 11, 905},\n\tdictWord{11, 11, 580},\n\tdictWord{142, 11, 201},\n\tdictWord{134, 0, 1397},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t208,\n\t},\n\tdictWord{7, 10, 753},\n\tdictWord{135, 10, 1528},\n\tdictWord{7, 0, 238},\n\tdictWord{7, 0, 2033},\n\tdictWord{8, 0, 120},\n\tdictWord{8, 0, 188},\n\tdictWord{8, 0, 659},\n\tdictWord{9, 0, 598},\n\tdictWord{10, 0, 466},\n\tdictWord{12, 0, 342},\n\tdictWord{12, 0, 588},\n\tdictWord{13, 0, 503},\n\tdictWord{14, 0, 246},\n\tdictWord{143, 0, 92},\n\tdictWord{135, 11, 1041},\n\tdictWord{4, 11, 456},\n\tdictWord{7, 11, 105},\n\tdictWord{7, 11, 358},\n\tdictWord{7, 11, 1637},\n\tdictWord{8, 11, 643},\n\tdictWord{139, 11, 483},\n\tdictWord{6, 0, 1318},\n\tdictWord{134, 0, 1324},\n\tdictWord{4, 0, 201},\n\tdictWord{7, 0, 1744},\n\tdictWord{8, 0, 602},\n\tdictWord{11, 0, 247},\n\tdictWord{11, 0, 826},\n\tdictWord{17, 0, 65},\n\tdictWord{133, 10, 242},\n\tdictWord{8, 0, 164},\n\tdictWord{146, 0, 62},\n\tdictWord{133, 10, 953},\n\tdictWord{139, 10, 802},\n\tdictWord{133, 0, 615},\n\tdictWord{7, 11, 1566},\n\tdictWord{8, 11, 269},\n\tdictWord{9, 11, 212},\n\tdictWord{9, 11, 718},\n\tdictWord{14, 11, 15},\n\tdictWord{14, 11, 132},\n\tdictWord{142, 11, 227},\n\tdictWord{133, 10, 290},\n\tdictWord{132, 10, 380},\n\tdictWord{5, 10, 52},\n\tdictWord{7, 10, 277},\n\tdictWord{9, 10, 368},\n\tdictWord{139, 10, 791},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1243,\n\t},\n\tdictWord{133, 11, 539},\n\tdictWord{11, 11, 919},\n\tdictWord{141, 11, 409},\n\tdictWord{136, 0, 968},\n\tdictWord{133, 11, 470},\n\tdictWord{134, 0, 882},\n\tdictWord{132, 0, 907},\n\tdictWord{5, 0, 100},\n\tdictWord{10, 0, 329},\n\tdictWord{12, 0, 416},\n\tdictWord{149, 0, 29},\n\tdictWord{10, 10, 138},\n\tdictWord{139, 10, 476},\n\tdictWord{5, 10, 725},\n\tdictWord{5, 10, 727},\n\tdictWord{6, 11, 91},\n\tdictWord{7, 11, 435},\n\tdictWord{135, 10, 1811},\n\tdictWord{4, 11, 16},\n\tdictWord{5, 11, 316},\n\tdictWord{5, 11, 842},\n\tdictWord{6, 11, 370},\n\tdictWord{6, 11, 1778},\n\tdictWord{8, 11, 166},\n\tdictWord{11, 11, 812},\n\tdictWord{12, 11, 206},\n\tdictWord{12, 11, 351},\n\tdictWord{14, 11, 418},\n\tdictWord{16, 11, 15},\n\tdictWord{16, 11, 34},\n\tdictWord{18, 11, 3},\n\tdictWord{19, 11, 3},\n\tdictWord{19, 11, 7},\n\tdictWord{20, 11, 4},\n\tdictWord{\n\t\t149,\n\t\t11,\n\t\t21,\n\t},\n\tdictWord{132, 0, 176},\n\tdictWord{5, 0, 636},\n\tdictWord{5, 0, 998},\n\tdictWord{7, 0, 9},\n\tdictWord{7, 0, 1508},\n\tdictWord{8, 0, 26},\n\tdictWord{9, 0, 317},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t358,\n\t},\n\tdictWord{10, 0, 210},\n\tdictWord{10, 0, 292},\n\tdictWord{10, 0, 533},\n\tdictWord{11, 0, 555},\n\tdictWord{12, 0, 526},\n\tdictWord{12, 0, 607},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t263,\n\t},\n\tdictWord{13, 0, 459},\n\tdictWord{142, 0, 271},\n\tdictWord{6, 0, 256},\n\tdictWord{8, 0, 265},\n\tdictWord{4, 10, 38},\n\tdictWord{7, 10, 307},\n\tdictWord{7, 10, 999},\n\tdictWord{7, 10, 1481},\n\tdictWord{7, 10, 1732},\n\tdictWord{7, 10, 1738},\n\tdictWord{9, 10, 414},\n\tdictWord{11, 10, 316},\n\tdictWord{12, 10, 52},\n\tdictWord{13, 10, 420},\n\tdictWord{147, 10, 100},\n\tdictWord{135, 10, 1296},\n\tdictWord{4, 11, 611},\n\tdictWord{133, 11, 606},\n\tdictWord{4, 0, 643},\n\tdictWord{142, 11, 21},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t715,\n\t},\n\tdictWord{133, 10, 723},\n\tdictWord{6, 0, 610},\n\tdictWord{135, 11, 597},\n\tdictWord{10, 0, 127},\n\tdictWord{141, 0, 27},\n\tdictWord{6, 0, 1995},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t2001,\n\t},\n\tdictWord{8, 0, 119},\n\tdictWord{136, 0, 973},\n\tdictWord{4, 11, 149},\n\tdictWord{138, 11, 368},\n\tdictWord{12, 0, 522},\n\tdictWord{4, 11, 154},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t109,\n\t},\n\tdictWord{6, 10, 1784},\n\tdictWord{7, 11, 1134},\n\tdictWord{7, 10, 1895},\n\tdictWord{8, 11, 105},\n\tdictWord{12, 10, 296},\n\tdictWord{140, 10, 302},\n\tdictWord{4, 11, 31},\n\tdictWord{6, 11, 429},\n\tdictWord{7, 11, 962},\n\tdictWord{9, 11, 458},\n\tdictWord{139, 11, 691},\n\tdictWord{10, 0, 553},\n\tdictWord{11, 0, 876},\n\tdictWord{13, 0, 193},\n\tdictWord{13, 0, 423},\n\tdictWord{14, 0, 166},\n\tdictWord{19, 0, 84},\n\tdictWord{4, 11, 312},\n\tdictWord{5, 10, 216},\n\tdictWord{7, 10, 1879},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t141,\n\t},\n\tdictWord{9, 10, 270},\n\tdictWord{9, 10, 679},\n\tdictWord{10, 10, 159},\n\tdictWord{11, 10, 197},\n\tdictWord{12, 10, 538},\n\tdictWord{12, 10, 559},\n\tdictWord{14, 10, 144},\n\tdictWord{14, 10, 167},\n\tdictWord{143, 10, 67},\n\tdictWord{134, 0, 1582},\n\tdictWord{7, 0, 1578},\n\tdictWord{135, 11, 1578},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t81,\n\t},\n\tdictWord{132, 11, 236},\n\tdictWord{134, 10, 391},\n\tdictWord{134, 0, 795},\n\tdictWord{7, 10, 322},\n\tdictWord{136, 10, 249},\n\tdictWord{5, 11, 836},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t857,\n\t},\n\tdictWord{6, 11, 1680},\n\tdictWord{7, 11, 59},\n\tdictWord{147, 11, 53},\n\tdictWord{135, 0, 432},\n\tdictWord{10, 11, 68},\n\tdictWord{139, 11, 494},\n\tdictWord{4, 11, 81},\n\tdictWord{139, 11, 867},\n\tdictWord{7, 0, 126},\n\tdictWord{136, 0, 84},\n\tdictWord{142, 11, 280},\n\tdictWord{5, 11, 282},\n\tdictWord{8, 11, 650},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t295,\n\t},\n\tdictWord{9, 11, 907},\n\tdictWord{138, 11, 443},\n\tdictWord{136, 0, 790},\n\tdictWord{5, 10, 632},\n\tdictWord{138, 10, 526},\n\tdictWord{6, 0, 64},\n\tdictWord{12, 0, 377},\n\tdictWord{13, 0, 309},\n\tdictWord{14, 0, 141},\n\tdictWord{14, 0, 429},\n\tdictWord{14, 11, 141},\n\tdictWord{142, 11, 429},\n\tdictWord{134, 0, 1529},\n\tdictWord{6, 0, 321},\n\tdictWord{7, 0, 1857},\n\tdictWord{9, 0, 530},\n\tdictWord{19, 0, 99},\n\tdictWord{7, 10, 948},\n\tdictWord{7, 10, 1042},\n\tdictWord{8, 10, 235},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t461,\n\t},\n\tdictWord{9, 10, 453},\n\tdictWord{10, 10, 354},\n\tdictWord{145, 10, 77},\n\tdictWord{7, 0, 1104},\n\tdictWord{11, 0, 269},\n\tdictWord{11, 0, 539},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t627,\n\t},\n\tdictWord{11, 0, 706},\n\tdictWord{11, 0, 975},\n\tdictWord{12, 0, 248},\n\tdictWord{12, 0, 434},\n\tdictWord{12, 0, 600},\n\tdictWord{12, 0, 622},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t297,\n\t},\n\tdictWord{13, 0, 485},\n\tdictWord{14, 0, 69},\n\tdictWord{14, 0, 409},\n\tdictWord{143, 0, 108},\n\tdictWord{4, 10, 362},\n\tdictWord{7, 10, 52},\n\tdictWord{7, 10, 303},\n\tdictWord{10, 11, 70},\n\tdictWord{12, 11, 26},\n\tdictWord{14, 11, 17},\n\tdictWord{14, 11, 178},\n\tdictWord{15, 11, 34},\n\tdictWord{149, 11, 12},\n\tdictWord{11, 0, 977},\n\tdictWord{141, 0, 507},\n\tdictWord{9, 0, 34},\n\tdictWord{139, 0, 484},\n\tdictWord{5, 10, 196},\n\tdictWord{6, 10, 486},\n\tdictWord{7, 10, 212},\n\tdictWord{8, 10, 309},\n\tdictWord{136, 10, 346},\n\tdictWord{6, 0, 1700},\n\tdictWord{7, 0, 26},\n\tdictWord{7, 0, 293},\n\tdictWord{7, 0, 382},\n\tdictWord{7, 0, 1026},\n\tdictWord{7, 0, 1087},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t2027,\n\t},\n\tdictWord{8, 0, 24},\n\tdictWord{8, 0, 114},\n\tdictWord{8, 0, 252},\n\tdictWord{8, 0, 727},\n\tdictWord{8, 0, 729},\n\tdictWord{9, 0, 30},\n\tdictWord{9, 0, 199},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t231,\n\t},\n\tdictWord{9, 0, 251},\n\tdictWord{9, 0, 334},\n\tdictWord{9, 0, 361},\n\tdictWord{9, 0, 712},\n\tdictWord{10, 0, 55},\n\tdictWord{10, 0, 60},\n\tdictWord{10, 0, 232},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t332,\n\t},\n\tdictWord{10, 0, 384},\n\tdictWord{10, 0, 396},\n\tdictWord{10, 0, 504},\n\tdictWord{10, 0, 542},\n\tdictWord{10, 0, 652},\n\tdictWord{11, 0, 20},\n\tdictWord{11, 0, 48},\n\tdictWord{11, 0, 207},\n\tdictWord{11, 0, 291},\n\tdictWord{11, 0, 298},\n\tdictWord{11, 0, 342},\n\tdictWord{11, 0, 365},\n\tdictWord{11, 0, 394},\n\tdictWord{11, 0, 620},\n\tdictWord{11, 0, 705},\n\tdictWord{11, 0, 1017},\n\tdictWord{12, 0, 123},\n\tdictWord{12, 0, 340},\n\tdictWord{12, 0, 406},\n\tdictWord{12, 0, 643},\n\tdictWord{13, 0, 61},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t269,\n\t},\n\tdictWord{13, 0, 311},\n\tdictWord{13, 0, 319},\n\tdictWord{13, 0, 486},\n\tdictWord{14, 0, 234},\n\tdictWord{15, 0, 62},\n\tdictWord{15, 0, 85},\n\tdictWord{16, 0, 71},\n\tdictWord{18, 0, 119},\n\tdictWord{20, 0, 105},\n\tdictWord{135, 10, 1912},\n\tdictWord{4, 11, 71},\n\tdictWord{5, 11, 376},\n\tdictWord{7, 11, 119},\n\tdictWord{138, 11, 665},\n\tdictWord{10, 0, 918},\n\tdictWord{10, 0, 926},\n\tdictWord{4, 10, 686},\n\tdictWord{136, 11, 55},\n\tdictWord{138, 10, 625},\n\tdictWord{136, 10, 706},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t479,\n\t},\n\tdictWord{4, 10, 30},\n\tdictWord{133, 10, 43},\n\tdictWord{6, 0, 379},\n\tdictWord{7, 0, 270},\n\tdictWord{8, 0, 176},\n\tdictWord{8, 0, 183},\n\tdictWord{9, 0, 432},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t661,\n\t},\n\tdictWord{12, 0, 247},\n\tdictWord{12, 0, 617},\n\tdictWord{18, 0, 125},\n\tdictWord{7, 11, 607},\n\tdictWord{8, 11, 99},\n\tdictWord{152, 11, 4},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t792,\n\t},\n\tdictWord{133, 0, 900},\n\tdictWord{4, 11, 612},\n\tdictWord{133, 11, 561},\n\tdictWord{4, 11, 41},\n\tdictWord{4, 10, 220},\n\tdictWord{5, 11, 74},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1535,\n\t},\n\tdictWord{7, 11, 1627},\n\tdictWord{11, 11, 871},\n\tdictWord{140, 11, 619},\n\tdictWord{135, 0, 1920},\n\tdictWord{7, 11, 94},\n\tdictWord{11, 11, 329},\n\tdictWord{11, 11, 965},\n\tdictWord{12, 11, 241},\n\tdictWord{14, 11, 354},\n\tdictWord{15, 11, 22},\n\tdictWord{148, 11, 63},\n\tdictWord{9, 11, 209},\n\tdictWord{137, 11, 300},\n\tdictWord{134, 0, 771},\n\tdictWord{135, 0, 1979},\n\tdictWord{4, 0, 901},\n\tdictWord{133, 0, 776},\n\tdictWord{142, 0, 254},\n\tdictWord{133, 11, 98},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t16,\n\t},\n\tdictWord{141, 11, 386},\n\tdictWord{133, 11, 984},\n\tdictWord{4, 11, 182},\n\tdictWord{6, 11, 205},\n\tdictWord{135, 11, 220},\n\tdictWord{7, 10, 1725},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1774,\n\t},\n\tdictWord{138, 10, 393},\n\tdictWord{5, 10, 263},\n\tdictWord{134, 10, 414},\n\tdictWord{4, 11, 42},\n\tdictWord{9, 11, 205},\n\tdictWord{9, 11, 786},\n\tdictWord{138, 11, 659},\n\tdictWord{14, 0, 140},\n\tdictWord{148, 0, 41},\n\tdictWord{8, 0, 440},\n\tdictWord{10, 0, 359},\n\tdictWord{6, 10, 178},\n\tdictWord{6, 11, 289},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1750,\n\t},\n\tdictWord{7, 11, 1670},\n\tdictWord{9, 10, 690},\n\tdictWord{10, 10, 155},\n\tdictWord{10, 10, 373},\n\tdictWord{11, 10, 698},\n\tdictWord{12, 11, 57},\n\tdictWord{13, 10, 155},\n\tdictWord{20, 10, 93},\n\tdictWord{151, 11, 4},\n\tdictWord{4, 0, 37},\n\tdictWord{5, 0, 334},\n\tdictWord{7, 0, 1253},\n\tdictWord{151, 11, 25},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t508,\n\t},\n\tdictWord{4, 11, 635},\n\tdictWord{5, 10, 97},\n\tdictWord{137, 10, 393},\n\tdictWord{139, 11, 533},\n\tdictWord{4, 0, 640},\n\tdictWord{133, 0, 513},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1639,\n\t},\n\tdictWord{132, 11, 371},\n\tdictWord{4, 11, 272},\n\tdictWord{7, 11, 836},\n\tdictWord{7, 11, 1651},\n\tdictWord{145, 11, 89},\n\tdictWord{5, 11, 825},\n\tdictWord{6, 11, 444},\n\tdictWord{6, 11, 1640},\n\tdictWord{136, 11, 308},\n\tdictWord{4, 10, 191},\n\tdictWord{7, 10, 934},\n\tdictWord{8, 10, 647},\n\tdictWord{145, 10, 97},\n\tdictWord{12, 0, 246},\n\tdictWord{15, 0, 162},\n\tdictWord{19, 0, 64},\n\tdictWord{20, 0, 8},\n\tdictWord{20, 0, 95},\n\tdictWord{22, 0, 24},\n\tdictWord{152, 0, 17},\n\tdictWord{4, 0, 533},\n\tdictWord{5, 10, 165},\n\tdictWord{9, 10, 346},\n\tdictWord{138, 10, 655},\n\tdictWord{5, 11, 737},\n\tdictWord{139, 10, 885},\n\tdictWord{133, 10, 877},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t128,\n\t},\n\tdictWord{139, 10, 179},\n\tdictWord{137, 11, 307},\n\tdictWord{140, 0, 752},\n\tdictWord{133, 0, 920},\n\tdictWord{135, 0, 1048},\n\tdictWord{5, 0, 153},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t580,\n\t},\n\tdictWord{6, 10, 1663},\n\tdictWord{7, 10, 132},\n\tdictWord{7, 10, 1154},\n\tdictWord{7, 10, 1415},\n\tdictWord{7, 10, 1507},\n\tdictWord{12, 10, 493},\n\tdictWord{15, 10, 105},\n\tdictWord{151, 10, 15},\n\tdictWord{5, 10, 459},\n\tdictWord{7, 10, 1073},\n\tdictWord{8, 10, 241},\n\tdictWord{136, 10, 334},\n\tdictWord{138, 0, 391},\n\tdictWord{135, 0, 1952},\n\tdictWord{133, 11, 525},\n\tdictWord{8, 11, 641},\n\tdictWord{11, 11, 388},\n\tdictWord{140, 11, 580},\n\tdictWord{142, 0, 126},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t640,\n\t},\n\tdictWord{132, 0, 483},\n\tdictWord{7, 0, 1616},\n\tdictWord{9, 0, 69},\n\tdictWord{6, 10, 324},\n\tdictWord{6, 10, 520},\n\tdictWord{7, 10, 338},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1729,\n\t},\n\tdictWord{8, 10, 228},\n\tdictWord{139, 10, 750},\n\tdictWord{5, 11, 493},\n\tdictWord{134, 11, 528},\n\tdictWord{135, 0, 734},\n\tdictWord{4, 11, 174},\n\tdictWord{135, 11, 911},\n\tdictWord{138, 0, 480},\n\tdictWord{9, 0, 495},\n\tdictWord{146, 0, 104},\n\tdictWord{135, 10, 705},\n\tdictWord{9, 0, 472},\n\tdictWord{4, 10, 73},\n\tdictWord{6, 10, 612},\n\tdictWord{7, 10, 927},\n\tdictWord{7, 10, 1330},\n\tdictWord{7, 10, 1822},\n\tdictWord{8, 10, 217},\n\tdictWord{9, 10, 765},\n\tdictWord{9, 10, 766},\n\tdictWord{10, 10, 408},\n\tdictWord{11, 10, 51},\n\tdictWord{11, 10, 793},\n\tdictWord{12, 10, 266},\n\tdictWord{15, 10, 158},\n\tdictWord{20, 10, 89},\n\tdictWord{150, 10, 32},\n\tdictWord{7, 11, 548},\n\tdictWord{137, 11, 58},\n\tdictWord{4, 11, 32},\n\tdictWord{5, 11, 215},\n\tdictWord{6, 11, 269},\n\tdictWord{7, 11, 1782},\n\tdictWord{7, 11, 1892},\n\tdictWord{10, 11, 16},\n\tdictWord{11, 11, 822},\n\tdictWord{11, 11, 954},\n\tdictWord{141, 11, 481},\n\tdictWord{132, 0, 874},\n\tdictWord{9, 0, 229},\n\tdictWord{5, 10, 389},\n\tdictWord{136, 10, 636},\n\tdictWord{7, 11, 1749},\n\tdictWord{136, 11, 477},\n\tdictWord{134, 0, 948},\n\tdictWord{5, 11, 308},\n\tdictWord{135, 11, 1088},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t748,\n\t},\n\tdictWord{139, 0, 1009},\n\tdictWord{136, 10, 21},\n\tdictWord{6, 0, 555},\n\tdictWord{135, 0, 485},\n\tdictWord{5, 11, 126},\n\tdictWord{8, 11, 297},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t366,\n\t},\n\tdictWord{9, 11, 445},\n\tdictWord{12, 11, 53},\n\tdictWord{12, 11, 374},\n\tdictWord{141, 11, 492},\n\tdictWord{7, 11, 1551},\n\tdictWord{139, 11, 361},\n\tdictWord{136, 0, 193},\n\tdictWord{136, 0, 472},\n\tdictWord{8, 0, 653},\n\tdictWord{13, 0, 93},\n\tdictWord{147, 0, 14},\n\tdictWord{132, 0, 984},\n\tdictWord{132, 11, 175},\n\tdictWord{5, 0, 172},\n\tdictWord{6, 0, 1971},\n\tdictWord{132, 11, 685},\n\tdictWord{149, 11, 8},\n\tdictWord{133, 11, 797},\n\tdictWord{13, 0, 83},\n\tdictWord{5, 10, 189},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t442,\n\t},\n\tdictWord{7, 10, 443},\n\tdictWord{8, 10, 281},\n\tdictWord{12, 10, 174},\n\tdictWord{141, 10, 261},\n\tdictWord{134, 0, 1568},\n\tdictWord{133, 11, 565},\n\tdictWord{139, 0, 384},\n\tdictWord{133, 0, 260},\n\tdictWord{7, 0, 758},\n\tdictWord{7, 0, 880},\n\tdictWord{7, 0, 1359},\n\tdictWord{9, 0, 164},\n\tdictWord{9, 0, 167},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t156,\n\t},\n\tdictWord{10, 0, 588},\n\tdictWord{12, 0, 101},\n\tdictWord{14, 0, 48},\n\tdictWord{15, 0, 70},\n\tdictWord{6, 10, 2},\n\tdictWord{7, 10, 1262},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1737,\n\t},\n\tdictWord{8, 10, 22},\n\tdictWord{8, 10, 270},\n\tdictWord{8, 10, 612},\n\tdictWord{9, 10, 312},\n\tdictWord{9, 10, 436},\n\tdictWord{10, 10, 311},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t623,\n\t},\n\tdictWord{11, 10, 72},\n\tdictWord{11, 10, 330},\n\tdictWord{11, 10, 455},\n\tdictWord{12, 10, 321},\n\tdictWord{12, 10, 504},\n\tdictWord{12, 10, 530},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t543,\n\t},\n\tdictWord{13, 10, 17},\n\tdictWord{13, 10, 156},\n\tdictWord{13, 10, 334},\n\tdictWord{17, 10, 60},\n\tdictWord{148, 10, 64},\n\tdictWord{4, 11, 252},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1068,\n\t},\n\tdictWord{10, 11, 434},\n\tdictWord{11, 11, 228},\n\tdictWord{11, 11, 426},\n\tdictWord{13, 11, 231},\n\tdictWord{18, 11, 106},\n\tdictWord{148, 11, 87},\n\tdictWord{7, 10, 354},\n\tdictWord{10, 10, 410},\n\tdictWord{139, 10, 815},\n\tdictWord{6, 0, 367},\n\tdictWord{7, 10, 670},\n\tdictWord{7, 10, 1327},\n\tdictWord{8, 10, 411},\n\tdictWord{8, 10, 435},\n\tdictWord{9, 10, 653},\n\tdictWord{9, 10, 740},\n\tdictWord{10, 10, 385},\n\tdictWord{11, 10, 222},\n\tdictWord{11, 10, 324},\n\tdictWord{11, 10, 829},\n\tdictWord{140, 10, 611},\n\tdictWord{7, 0, 1174},\n\tdictWord{6, 10, 166},\n\tdictWord{135, 10, 374},\n\tdictWord{146, 0, 121},\n\tdictWord{132, 0, 828},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t231,\n\t},\n\tdictWord{138, 11, 509},\n\tdictWord{7, 11, 601},\n\tdictWord{9, 11, 277},\n\tdictWord{9, 11, 674},\n\tdictWord{10, 11, 178},\n\tdictWord{10, 11, 257},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t418,\n\t},\n\tdictWord{11, 11, 531},\n\tdictWord{11, 11, 544},\n\tdictWord{11, 11, 585},\n\tdictWord{12, 11, 113},\n\tdictWord{12, 11, 475},\n\tdictWord{13, 11, 99},\n\tdictWord{142, 11, 428},\n\tdictWord{134, 0, 1541},\n\tdictWord{135, 11, 1779},\n\tdictWord{5, 0, 343},\n\tdictWord{134, 10, 398},\n\tdictWord{135, 10, 50},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1683,\n\t},\n\tdictWord{4, 0, 440},\n\tdictWord{7, 0, 57},\n\tdictWord{8, 0, 167},\n\tdictWord{8, 0, 375},\n\tdictWord{9, 0, 82},\n\tdictWord{9, 0, 561},\n\tdictWord{9, 0, 744},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t620,\n\t},\n\tdictWord{137, 11, 744},\n\tdictWord{134, 0, 926},\n\tdictWord{6, 10, 517},\n\tdictWord{7, 10, 1159},\n\tdictWord{10, 10, 621},\n\tdictWord{139, 10, 192},\n\tdictWord{137, 0, 827},\n\tdictWord{8, 0, 194},\n\tdictWord{136, 0, 756},\n\tdictWord{10, 10, 223},\n\tdictWord{139, 10, 645},\n\tdictWord{7, 10, 64},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t245,\n\t},\n\tdictWord{4, 11, 399},\n\tdictWord{5, 11, 119},\n\tdictWord{5, 11, 494},\n\tdictWord{7, 11, 751},\n\tdictWord{137, 11, 556},\n\tdictWord{132, 0, 808},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t22,\n\t},\n\tdictWord{7, 10, 1763},\n\tdictWord{140, 10, 310},\n\tdictWord{5, 0, 639},\n\tdictWord{7, 0, 1249},\n\tdictWord{11, 0, 896},\n\tdictWord{134, 11, 584},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1614,\n\t},\n\tdictWord{135, 0, 860},\n\tdictWord{135, 11, 1121},\n\tdictWord{5, 10, 129},\n\tdictWord{6, 10, 61},\n\tdictWord{135, 10, 947},\n\tdictWord{4, 0, 102},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t815,\n\t},\n\tdictWord{7, 0, 1699},\n\tdictWord{139, 0, 964},\n\tdictWord{13, 10, 505},\n\tdictWord{141, 10, 506},\n\tdictWord{139, 10, 1000},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t679,\n\t},\n\tdictWord{132, 0, 899},\n\tdictWord{132, 0, 569},\n\tdictWord{5, 11, 694},\n\tdictWord{137, 11, 714},\n\tdictWord{136, 0, 795},\n\tdictWord{6, 0, 2045},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t7,\n\t},\n\tdictWord{6, 0, 52},\n\tdictWord{9, 0, 104},\n\tdictWord{9, 0, 559},\n\tdictWord{12, 0, 308},\n\tdictWord{147, 0, 87},\n\tdictWord{4, 0, 301},\n\tdictWord{132, 0, 604},\n\tdictWord{133, 10, 637},\n\tdictWord{136, 0, 779},\n\tdictWord{5, 11, 143},\n\tdictWord{5, 11, 769},\n\tdictWord{6, 11, 1760},\n\tdictWord{7, 11, 682},\n\tdictWord{7, 11, 1992},\n\tdictWord{136, 11, 736},\n\tdictWord{137, 10, 590},\n\tdictWord{147, 0, 32},\n\tdictWord{137, 11, 527},\n\tdictWord{5, 10, 280},\n\tdictWord{135, 10, 1226},\n\tdictWord{134, 0, 494},\n\tdictWord{6, 0, 677},\n\tdictWord{6, 0, 682},\n\tdictWord{134, 0, 1044},\n\tdictWord{133, 10, 281},\n\tdictWord{135, 10, 1064},\n\tdictWord{7, 0, 508},\n\tdictWord{133, 11, 860},\n\tdictWord{6, 11, 422},\n\tdictWord{7, 11, 0},\n\tdictWord{7, 11, 1544},\n\tdictWord{9, 11, 577},\n\tdictWord{11, 11, 990},\n\tdictWord{12, 11, 141},\n\tdictWord{12, 11, 453},\n\tdictWord{13, 11, 47},\n\tdictWord{141, 11, 266},\n\tdictWord{134, 0, 1014},\n\tdictWord{5, 11, 515},\n\tdictWord{137, 11, 131},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t957,\n\t},\n\tdictWord{132, 11, 646},\n\tdictWord{6, 0, 310},\n\tdictWord{7, 0, 1849},\n\tdictWord{8, 0, 72},\n\tdictWord{8, 0, 272},\n\tdictWord{8, 0, 431},\n\tdictWord{9, 0, 12},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t376,\n\t},\n\tdictWord{10, 0, 563},\n\tdictWord{10, 0, 630},\n\tdictWord{10, 0, 796},\n\tdictWord{10, 0, 810},\n\tdictWord{11, 0, 367},\n\tdictWord{11, 0, 599},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t686,\n\t},\n\tdictWord{140, 0, 672},\n\tdictWord{7, 0, 570},\n\tdictWord{4, 11, 396},\n\tdictWord{7, 10, 120},\n\tdictWord{7, 11, 728},\n\tdictWord{8, 10, 489},\n\tdictWord{9, 11, 117},\n\tdictWord{9, 10, 319},\n\tdictWord{10, 10, 820},\n\tdictWord{11, 10, 1004},\n\tdictWord{12, 10, 379},\n\tdictWord{12, 10, 679},\n\tdictWord{13, 10, 117},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t202,\n\t},\n\tdictWord{13, 10, 412},\n\tdictWord{14, 10, 25},\n\tdictWord{15, 10, 52},\n\tdictWord{15, 10, 161},\n\tdictWord{16, 10, 47},\n\tdictWord{20, 11, 51},\n\tdictWord{\n\t\t149,\n\t\t10,\n\t\t2,\n\t},\n\tdictWord{6, 11, 121},\n\tdictWord{6, 11, 124},\n\tdictWord{6, 11, 357},\n\tdictWord{7, 11, 1138},\n\tdictWord{7, 11, 1295},\n\tdictWord{8, 11, 162},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t655,\n\t},\n\tdictWord{8, 0, 449},\n\tdictWord{4, 10, 937},\n\tdictWord{5, 10, 801},\n\tdictWord{136, 11, 449},\n\tdictWord{139, 11, 958},\n\tdictWord{6, 0, 181},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t537,\n\t},\n\tdictWord{8, 0, 64},\n\tdictWord{9, 0, 127},\n\tdictWord{10, 0, 496},\n\tdictWord{12, 0, 510},\n\tdictWord{141, 0, 384},\n\tdictWord{138, 11, 253},\n\tdictWord{4, 0, 244},\n\tdictWord{135, 0, 233},\n\tdictWord{133, 11, 237},\n\tdictWord{132, 10, 365},\n\tdictWord{6, 0, 1650},\n\tdictWord{10, 0, 702},\n\tdictWord{139, 0, 245},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t7,\n\t},\n\tdictWord{139, 10, 774},\n\tdictWord{13, 0, 463},\n\tdictWord{20, 0, 49},\n\tdictWord{13, 11, 463},\n\tdictWord{148, 11, 49},\n\tdictWord{4, 10, 734},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t662,\n\t},\n\tdictWord{134, 10, 430},\n\tdictWord{4, 10, 746},\n\tdictWord{135, 10, 1090},\n\tdictWord{5, 10, 360},\n\tdictWord{136, 10, 237},\n\tdictWord{137, 0, 338},\n\tdictWord{143, 11, 10},\n\tdictWord{7, 11, 571},\n\tdictWord{138, 11, 366},\n\tdictWord{134, 0, 1279},\n\tdictWord{9, 11, 513},\n\tdictWord{10, 11, 22},\n\tdictWord{10, 11, 39},\n\tdictWord{12, 11, 122},\n\tdictWord{140, 11, 187},\n\tdictWord{133, 0, 896},\n\tdictWord{146, 0, 178},\n\tdictWord{134, 0, 695},\n\tdictWord{137, 0, 808},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t587,\n\t},\n\tdictWord{7, 11, 107},\n\tdictWord{7, 11, 838},\n\tdictWord{8, 11, 550},\n\tdictWord{138, 11, 401},\n\tdictWord{7, 0, 1117},\n\tdictWord{136, 0, 539},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t277,\n\t},\n\tdictWord{5, 10, 608},\n\tdictWord{6, 10, 493},\n\tdictWord{7, 10, 457},\n\tdictWord{140, 10, 384},\n\tdictWord{133, 11, 768},\n\tdictWord{12, 0, 257},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t27,\n\t},\n\tdictWord{135, 10, 316},\n\tdictWord{140, 0, 1003},\n\tdictWord{4, 0, 207},\n\tdictWord{5, 0, 586},\n\tdictWord{5, 0, 676},\n\tdictWord{6, 0, 448},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t244,\n\t},\n\tdictWord{11, 0, 1},\n\tdictWord{13, 0, 3},\n\tdictWord{16, 0, 54},\n\tdictWord{17, 0, 4},\n\tdictWord{18, 0, 13},\n\tdictWord{133, 10, 552},\n\tdictWord{4, 10, 401},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t264,\n\t},\n\tdictWord{5, 0, 516},\n\tdictWord{7, 0, 1883},\n\tdictWord{135, 11, 1883},\n\tdictWord{12, 0, 960},\n\tdictWord{132, 11, 894},\n\tdictWord{5, 0, 4},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t810,\n\t},\n\tdictWord{6, 0, 13},\n\tdictWord{6, 0, 538},\n\tdictWord{6, 0, 1690},\n\tdictWord{6, 0, 1726},\n\tdictWord{7, 0, 499},\n\tdictWord{7, 0, 1819},\n\tdictWord{8, 0, 148},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t696,\n\t},\n\tdictWord{8, 0, 791},\n\tdictWord{12, 0, 125},\n\tdictWord{143, 0, 9},\n\tdictWord{135, 0, 1268},\n\tdictWord{11, 0, 30},\n\tdictWord{14, 0, 315},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t543,\n\t},\n\tdictWord{10, 10, 524},\n\tdictWord{12, 10, 524},\n\tdictWord{16, 10, 18},\n\tdictWord{20, 10, 26},\n\tdictWord{148, 10, 65},\n\tdictWord{6, 0, 748},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t205,\n\t},\n\tdictWord{5, 10, 623},\n\tdictWord{7, 10, 104},\n\tdictWord{136, 10, 519},\n\tdictWord{11, 0, 542},\n\tdictWord{139, 0, 852},\n\tdictWord{140, 0, 6},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t848,\n\t},\n\tdictWord{7, 0, 1385},\n\tdictWord{11, 0, 582},\n\tdictWord{11, 0, 650},\n\tdictWord{11, 0, 901},\n\tdictWord{11, 0, 949},\n\tdictWord{12, 0, 232},\n\tdictWord{12, 0, 236},\n\tdictWord{13, 0, 413},\n\tdictWord{13, 0, 501},\n\tdictWord{18, 0, 116},\n\tdictWord{7, 10, 579},\n\tdictWord{9, 10, 41},\n\tdictWord{9, 10, 244},\n\tdictWord{9, 10, 669},\n\tdictWord{10, 10, 5},\n\tdictWord{11, 10, 861},\n\tdictWord{11, 10, 951},\n\tdictWord{139, 10, 980},\n\tdictWord{4, 0, 945},\n\tdictWord{6, 0, 1811},\n\tdictWord{6, 0, 1845},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1853,\n\t},\n\tdictWord{6, 0, 1858},\n\tdictWord{8, 0, 862},\n\tdictWord{12, 0, 782},\n\tdictWord{12, 0, 788},\n\tdictWord{18, 0, 160},\n\tdictWord{148, 0, 117},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t717,\n\t},\n\tdictWord{4, 0, 925},\n\tdictWord{5, 0, 803},\n\tdictWord{8, 0, 698},\n\tdictWord{138, 0, 828},\n\tdictWord{134, 0, 1416},\n\tdictWord{132, 0, 610},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t992,\n\t},\n\tdictWord{6, 0, 878},\n\tdictWord{134, 0, 1477},\n\tdictWord{135, 0, 1847},\n\tdictWord{138, 11, 531},\n\tdictWord{137, 11, 539},\n\tdictWord{134, 11, 272},\n\tdictWord{133, 0, 383},\n\tdictWord{134, 0, 1404},\n\tdictWord{132, 10, 489},\n\tdictWord{4, 11, 9},\n\tdictWord{5, 11, 128},\n\tdictWord{7, 11, 368},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t480,\n\t},\n\tdictWord{148, 11, 3},\n\tdictWord{136, 0, 986},\n\tdictWord{9, 0, 660},\n\tdictWord{138, 0, 347},\n\tdictWord{135, 10, 892},\n\tdictWord{136, 11, 682},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t572,\n\t},\n\tdictWord{9, 0, 592},\n\tdictWord{11, 0, 680},\n\tdictWord{12, 0, 356},\n\tdictWord{140, 0, 550},\n\tdictWord{7, 0, 1411},\n\tdictWord{138, 11, 527},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t2,\n\t},\n\tdictWord{7, 11, 545},\n\tdictWord{135, 11, 894},\n\tdictWord{137, 10, 473},\n\tdictWord{11, 0, 64},\n\tdictWord{7, 11, 481},\n\tdictWord{7, 10, 819},\n\tdictWord{9, 10, 26},\n\tdictWord{9, 10, 392},\n\tdictWord{9, 11, 792},\n\tdictWord{10, 10, 152},\n\tdictWord{10, 10, 226},\n\tdictWord{12, 10, 276},\n\tdictWord{12, 10, 426},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t589,\n\t},\n\tdictWord{13, 10, 460},\n\tdictWord{15, 10, 97},\n\tdictWord{19, 10, 48},\n\tdictWord{148, 10, 104},\n\tdictWord{135, 10, 51},\n\tdictWord{136, 11, 445},\n\tdictWord{136, 11, 646},\n\tdictWord{135, 0, 606},\n\tdictWord{132, 10, 674},\n\tdictWord{6, 0, 1829},\n\tdictWord{134, 0, 1830},\n\tdictWord{132, 10, 770},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t79,\n\t},\n\tdictWord{7, 10, 1027},\n\tdictWord{7, 10, 1477},\n\tdictWord{139, 10, 52},\n\tdictWord{5, 11, 530},\n\tdictWord{142, 11, 113},\n\tdictWord{134, 10, 1666},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t748,\n\t},\n\tdictWord{139, 0, 700},\n\tdictWord{134, 10, 195},\n\tdictWord{133, 10, 789},\n\tdictWord{9, 0, 87},\n\tdictWord{10, 0, 365},\n\tdictWord{4, 10, 251},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t688,\n\t},\n\tdictWord{7, 10, 513},\n\tdictWord{135, 10, 1284},\n\tdictWord{136, 11, 111},\n\tdictWord{133, 0, 127},\n\tdictWord{6, 0, 198},\n\tdictWord{140, 0, 83},\n\tdictWord{133, 11, 556},\n\tdictWord{133, 10, 889},\n\tdictWord{4, 10, 160},\n\tdictWord{5, 10, 330},\n\tdictWord{7, 10, 1434},\n\tdictWord{136, 10, 174},\n\tdictWord{5, 0, 276},\n\tdictWord{6, 0, 55},\n\tdictWord{7, 0, 1369},\n\tdictWord{138, 0, 864},\n\tdictWord{8, 11, 16},\n\tdictWord{140, 11, 568},\n\tdictWord{6, 0, 1752},\n\tdictWord{136, 0, 726},\n\tdictWord{135, 0, 1066},\n\tdictWord{133, 0, 764},\n\tdictWord{6, 11, 186},\n\tdictWord{137, 11, 426},\n\tdictWord{11, 0, 683},\n\tdictWord{139, 11, 683},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t309,\n\t},\n\tdictWord{7, 0, 331},\n\tdictWord{138, 0, 550},\n\tdictWord{133, 10, 374},\n\tdictWord{6, 0, 1212},\n\tdictWord{6, 0, 1852},\n\tdictWord{7, 0, 1062},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t874,\n\t},\n\tdictWord{8, 0, 882},\n\tdictWord{138, 0, 936},\n\tdictWord{132, 11, 585},\n\tdictWord{134, 0, 1364},\n\tdictWord{7, 0, 986},\n\tdictWord{133, 10, 731},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t723,\n\t},\n\tdictWord{6, 0, 1408},\n\tdictWord{138, 0, 381},\n\tdictWord{135, 0, 1573},\n\tdictWord{134, 0, 1025},\n\tdictWord{4, 10, 626},\n\tdictWord{5, 10, 642},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t425,\n\t},\n\tdictWord{10, 10, 202},\n\tdictWord{139, 10, 141},\n\tdictWord{4, 11, 93},\n\tdictWord{5, 11, 252},\n\tdictWord{6, 11, 229},\n\tdictWord{7, 11, 291},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t550,\n\t},\n\tdictWord{139, 11, 644},\n\tdictWord{137, 11, 749},\n\tdictWord{137, 11, 162},\n\tdictWord{132, 11, 381},\n\tdictWord{135, 0, 1559},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t194,\n\t},\n\tdictWord{7, 0, 133},\n\tdictWord{10, 0, 493},\n\tdictWord{10, 0, 570},\n\tdictWord{139, 0, 664},\n\tdictWord{5, 0, 24},\n\tdictWord{5, 0, 569},\n\tdictWord{6, 0, 3},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t119,\n\t},\n\tdictWord{6, 0, 143},\n\tdictWord{6, 0, 440},\n\tdictWord{7, 0, 295},\n\tdictWord{7, 0, 599},\n\tdictWord{7, 0, 1686},\n\tdictWord{7, 0, 1854},\n\tdictWord{8, 0, 424},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t43,\n\t},\n\tdictWord{9, 0, 584},\n\tdictWord{9, 0, 760},\n\tdictWord{10, 0, 148},\n\tdictWord{10, 0, 328},\n\tdictWord{11, 0, 159},\n\tdictWord{11, 0, 253},\n\tdictWord{11, 0, 506},\n\tdictWord{12, 0, 487},\n\tdictWord{140, 0, 531},\n\tdictWord{6, 0, 661},\n\tdictWord{134, 0, 1517},\n\tdictWord{136, 10, 835},\n\tdictWord{151, 10, 17},\n\tdictWord{5, 0, 14},\n\tdictWord{5, 0, 892},\n\tdictWord{6, 0, 283},\n\tdictWord{7, 0, 234},\n\tdictWord{136, 0, 537},\n\tdictWord{139, 0, 541},\n\tdictWord{4, 0, 126},\n\tdictWord{8, 0, 635},\n\tdictWord{\n\t\t147,\n\t\t0,\n\t\t34,\n\t},\n\tdictWord{4, 0, 316},\n\tdictWord{4, 0, 495},\n\tdictWord{135, 0, 1561},\n\tdictWord{4, 11, 187},\n\tdictWord{5, 11, 184},\n\tdictWord{5, 11, 690},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1869,\n\t},\n\tdictWord{138, 11, 756},\n\tdictWord{139, 11, 783},\n\tdictWord{4, 0, 998},\n\tdictWord{137, 0, 861},\n\tdictWord{136, 0, 1009},\n\tdictWord{139, 11, 292},\n\tdictWord{5, 11, 21},\n\tdictWord{6, 11, 77},\n\tdictWord{6, 11, 157},\n\tdictWord{7, 11, 974},\n\tdictWord{7, 11, 1301},\n\tdictWord{7, 11, 1339},\n\tdictWord{7, 11, 1490},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1873,\n\t},\n\tdictWord{137, 11, 628},\n\tdictWord{7, 11, 1283},\n\tdictWord{9, 11, 227},\n\tdictWord{9, 11, 499},\n\tdictWord{10, 11, 341},\n\tdictWord{11, 11, 325},\n\tdictWord{11, 11, 408},\n\tdictWord{14, 11, 180},\n\tdictWord{15, 11, 144},\n\tdictWord{18, 11, 47},\n\tdictWord{147, 11, 49},\n\tdictWord{4, 0, 64},\n\tdictWord{5, 0, 352},\n\tdictWord{5, 0, 720},\n\tdictWord{6, 0, 368},\n\tdictWord{139, 0, 359},\n\tdictWord{5, 10, 384},\n\tdictWord{8, 10, 455},\n\tdictWord{140, 10, 48},\n\tdictWord{5, 10, 264},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t184,\n\t},\n\tdictWord{7, 0, 1577},\n\tdictWord{10, 0, 304},\n\tdictWord{10, 0, 549},\n\tdictWord{12, 0, 365},\n\tdictWord{13, 0, 220},\n\tdictWord{13, 0, 240},\n\tdictWord{\n\t\t142,\n\t\t0,\n\t\t33,\n\t},\n\tdictWord{134, 0, 1107},\n\tdictWord{134, 0, 929},\n\tdictWord{135, 0, 1142},\n\tdictWord{6, 0, 175},\n\tdictWord{137, 0, 289},\n\tdictWord{5, 0, 432},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t913,\n\t},\n\tdictWord{6, 0, 279},\n\tdictWord{7, 0, 219},\n\tdictWord{5, 10, 633},\n\tdictWord{135, 10, 1323},\n\tdictWord{7, 0, 785},\n\tdictWord{7, 10, 359},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t243,\n\t},\n\tdictWord{140, 10, 175},\n\tdictWord{139, 0, 595},\n\tdictWord{132, 10, 105},\n\tdictWord{8, 11, 398},\n\tdictWord{9, 11, 681},\n\tdictWord{139, 11, 632},\n\tdictWord{140, 0, 80},\n\tdictWord{5, 0, 931},\n\tdictWord{134, 0, 1698},\n\tdictWord{142, 11, 241},\n\tdictWord{134, 11, 20},\n\tdictWord{134, 0, 1323},\n\tdictWord{11, 0, 526},\n\tdictWord{11, 0, 939},\n\tdictWord{141, 0, 290},\n\tdictWord{5, 0, 774},\n\tdictWord{6, 0, 780},\n\tdictWord{6, 0, 1637},\n\tdictWord{6, 0, 1686},\n\tdictWord{6, 0, 1751},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t559,\n\t},\n\tdictWord{141, 0, 109},\n\tdictWord{141, 0, 127},\n\tdictWord{7, 0, 1167},\n\tdictWord{11, 0, 934},\n\tdictWord{13, 0, 391},\n\tdictWord{17, 0, 76},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t709,\n\t},\n\tdictWord{135, 0, 963},\n\tdictWord{6, 0, 260},\n\tdictWord{135, 0, 1484},\n\tdictWord{134, 0, 573},\n\tdictWord{4, 10, 758},\n\tdictWord{139, 11, 941},\n\tdictWord{135, 10, 1649},\n\tdictWord{145, 11, 36},\n\tdictWord{4, 0, 292},\n\tdictWord{137, 0, 580},\n\tdictWord{4, 0, 736},\n\tdictWord{5, 0, 871},\n\tdictWord{6, 0, 1689},\n\tdictWord{135, 0, 1944},\n\tdictWord{7, 11, 945},\n\tdictWord{11, 11, 713},\n\tdictWord{139, 11, 744},\n\tdictWord{134, 0, 1164},\n\tdictWord{135, 11, 937},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1922,\n\t},\n\tdictWord{9, 0, 982},\n\tdictWord{15, 0, 173},\n\tdictWord{15, 0, 178},\n\tdictWord{15, 0, 200},\n\tdictWord{18, 0, 189},\n\tdictWord{18, 0, 207},\n\tdictWord{21, 0, 47},\n\tdictWord{135, 11, 1652},\n\tdictWord{7, 0, 1695},\n\tdictWord{139, 10, 128},\n\tdictWord{6, 0, 63},\n\tdictWord{135, 0, 920},\n\tdictWord{133, 0, 793},\n\tdictWord{\n\t\t143,\n\t\t11,\n\t\t134,\n\t},\n\tdictWord{133, 10, 918},\n\tdictWord{5, 0, 67},\n\tdictWord{6, 0, 62},\n\tdictWord{6, 0, 374},\n\tdictWord{135, 0, 1391},\n\tdictWord{9, 0, 790},\n\tdictWord{12, 0, 47},\n\tdictWord{4, 11, 579},\n\tdictWord{5, 11, 226},\n\tdictWord{5, 11, 323},\n\tdictWord{135, 11, 960},\n\tdictWord{10, 11, 784},\n\tdictWord{141, 11, 191},\n\tdictWord{4, 0, 391},\n\tdictWord{135, 0, 1169},\n\tdictWord{137, 0, 443},\n\tdictWord{13, 11, 232},\n\tdictWord{146, 11, 35},\n\tdictWord{132, 10, 340},\n\tdictWord{132, 0, 271},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t313,\n\t},\n\tdictWord{5, 11, 973},\n\tdictWord{137, 11, 659},\n\tdictWord{134, 0, 1140},\n\tdictWord{6, 11, 135},\n\tdictWord{135, 11, 1176},\n\tdictWord{4, 0, 253},\n\tdictWord{5, 0, 544},\n\tdictWord{7, 0, 300},\n\tdictWord{137, 0, 340},\n\tdictWord{7, 0, 897},\n\tdictWord{5, 10, 985},\n\tdictWord{7, 10, 509},\n\tdictWord{145, 10, 96},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t735,\n\t},\n\tdictWord{135, 10, 1919},\n\tdictWord{138, 0, 890},\n\tdictWord{5, 0, 818},\n\tdictWord{134, 0, 1122},\n\tdictWord{5, 0, 53},\n\tdictWord{5, 0, 541},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t94,\n\t},\n\tdictWord{6, 0, 499},\n\tdictWord{7, 0, 230},\n\tdictWord{139, 0, 321},\n\tdictWord{4, 0, 920},\n\tdictWord{5, 0, 25},\n\tdictWord{5, 0, 790},\n\tdictWord{6, 0, 457},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t853,\n\t},\n\tdictWord{8, 0, 788},\n\tdictWord{142, 11, 31},\n\tdictWord{132, 10, 247},\n\tdictWord{135, 11, 314},\n\tdictWord{132, 0, 468},\n\tdictWord{7, 0, 243},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t337,\n\t},\n\tdictWord{7, 10, 494},\n\tdictWord{8, 10, 27},\n\tdictWord{8, 10, 599},\n\tdictWord{138, 10, 153},\n\tdictWord{4, 10, 184},\n\tdictWord{5, 10, 390},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t618,\n\t},\n\tdictWord{7, 10, 1456},\n\tdictWord{139, 10, 710},\n\tdictWord{134, 0, 870},\n\tdictWord{134, 0, 1238},\n\tdictWord{134, 0, 1765},\n\tdictWord{10, 0, 853},\n\tdictWord{10, 0, 943},\n\tdictWord{14, 0, 437},\n\tdictWord{14, 0, 439},\n\tdictWord{14, 0, 443},\n\tdictWord{14, 0, 446},\n\tdictWord{14, 0, 452},\n\tdictWord{14, 0, 469},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t471,\n\t},\n\tdictWord{14, 0, 473},\n\tdictWord{16, 0, 93},\n\tdictWord{16, 0, 102},\n\tdictWord{16, 0, 110},\n\tdictWord{148, 0, 121},\n\tdictWord{4, 0, 605},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t518,\n\t},\n\tdictWord{7, 0, 1282},\n\tdictWord{7, 0, 1918},\n\tdictWord{10, 0, 180},\n\tdictWord{139, 0, 218},\n\tdictWord{133, 0, 822},\n\tdictWord{4, 0, 634},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t916,\n\t},\n\tdictWord{142, 0, 419},\n\tdictWord{6, 11, 281},\n\tdictWord{7, 11, 6},\n\tdictWord{8, 11, 282},\n\tdictWord{8, 11, 480},\n\tdictWord{8, 11, 499},\n\tdictWord{9, 11, 198},\n\tdictWord{10, 11, 143},\n\tdictWord{10, 11, 169},\n\tdictWord{10, 11, 211},\n\tdictWord{10, 11, 417},\n\tdictWord{10, 11, 574},\n\tdictWord{11, 11, 147},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t395,\n\t},\n\tdictWord{12, 11, 75},\n\tdictWord{12, 11, 407},\n\tdictWord{12, 11, 608},\n\tdictWord{13, 11, 500},\n\tdictWord{142, 11, 251},\n\tdictWord{134, 0, 898},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t36,\n\t},\n\tdictWord{7, 0, 658},\n\tdictWord{8, 0, 454},\n\tdictWord{150, 11, 48},\n\tdictWord{133, 11, 674},\n\tdictWord{135, 11, 1776},\n\tdictWord{4, 11, 419},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t227,\n\t},\n\tdictWord{11, 10, 497},\n\tdictWord{11, 10, 709},\n\tdictWord{140, 10, 415},\n\tdictWord{6, 10, 360},\n\tdictWord{7, 10, 1664},\n\tdictWord{136, 10, 478},\n\tdictWord{137, 0, 806},\n\tdictWord{12, 11, 508},\n\tdictWord{14, 11, 102},\n\tdictWord{14, 11, 226},\n\tdictWord{144, 11, 57},\n\tdictWord{135, 11, 1123},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t138,\n\t},\n\tdictWord{7, 11, 1012},\n\tdictWord{7, 11, 1280},\n\tdictWord{137, 11, 76},\n\tdictWord{5, 11, 29},\n\tdictWord{140, 11, 638},\n\tdictWord{136, 10, 699},\n\tdictWord{134, 0, 1326},\n\tdictWord{132, 0, 104},\n\tdictWord{135, 11, 735},\n\tdictWord{132, 10, 739},\n\tdictWord{134, 0, 1331},\n\tdictWord{7, 0, 260},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t260,\n\t},\n\tdictWord{135, 11, 1063},\n\tdictWord{7, 0, 45},\n\tdictWord{9, 0, 542},\n\tdictWord{9, 0, 566},\n\tdictWord{10, 0, 728},\n\tdictWord{137, 10, 869},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t67,\n\t},\n\tdictWord{5, 10, 422},\n\tdictWord{7, 10, 1037},\n\tdictWord{7, 10, 1289},\n\tdictWord{7, 10, 1555},\n\tdictWord{9, 10, 741},\n\tdictWord{145, 10, 108},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t263,\n\t},\n\tdictWord{134, 0, 1516},\n\tdictWord{14, 0, 146},\n\tdictWord{15, 0, 42},\n\tdictWord{16, 0, 23},\n\tdictWord{17, 0, 86},\n\tdictWord{146, 0, 17},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t468,\n\t},\n\tdictWord{136, 0, 1005},\n\tdictWord{4, 11, 17},\n\tdictWord{5, 11, 23},\n\tdictWord{7, 11, 995},\n\tdictWord{11, 11, 383},\n\tdictWord{11, 11, 437},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t460,\n\t},\n\tdictWord{140, 11, 532},\n\tdictWord{7, 0, 87},\n\tdictWord{142, 0, 288},\n\tdictWord{138, 10, 96},\n\tdictWord{135, 11, 626},\n\tdictWord{144, 10, 26},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t988,\n\t},\n\tdictWord{7, 0, 1939},\n\tdictWord{9, 0, 64},\n\tdictWord{9, 0, 502},\n\tdictWord{12, 0, 22},\n\tdictWord{12, 0, 34},\n\tdictWord{13, 0, 12},\n\tdictWord{13, 0, 234},\n\tdictWord{147, 0, 77},\n\tdictWord{13, 0, 133},\n\tdictWord{8, 10, 203},\n\tdictWord{11, 10, 823},\n\tdictWord{11, 10, 846},\n\tdictWord{12, 10, 482},\n\tdictWord{13, 10, 277},\n\tdictWord{13, 10, 302},\n\tdictWord{13, 10, 464},\n\tdictWord{14, 10, 205},\n\tdictWord{142, 10, 221},\n\tdictWord{4, 10, 449},\n\tdictWord{133, 10, 718},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t141,\n\t},\n\tdictWord{6, 0, 1842},\n\tdictWord{136, 0, 872},\n\tdictWord{8, 11, 70},\n\tdictWord{12, 11, 171},\n\tdictWord{141, 11, 272},\n\tdictWord{4, 10, 355},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t311,\n\t},\n\tdictWord{9, 10, 256},\n\tdictWord{138, 10, 404},\n\tdictWord{132, 0, 619},\n\tdictWord{137, 0, 261},\n\tdictWord{10, 11, 233},\n\tdictWord{10, 10, 758},\n\tdictWord{139, 11, 76},\n\tdictWord{5, 0, 246},\n\tdictWord{8, 0, 189},\n\tdictWord{9, 0, 355},\n\tdictWord{9, 0, 512},\n\tdictWord{10, 0, 124},\n\tdictWord{10, 0, 453},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t143,\n\t},\n\tdictWord{11, 0, 416},\n\tdictWord{11, 0, 859},\n\tdictWord{141, 0, 341},\n\tdictWord{134, 11, 442},\n\tdictWord{133, 10, 827},\n\tdictWord{5, 10, 64},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t581,\n\t},\n\tdictWord{4, 10, 442},\n\tdictWord{7, 10, 1047},\n\tdictWord{7, 10, 1352},\n\tdictWord{135, 10, 1643},\n\tdictWord{134, 11, 1709},\n\tdictWord{5, 0, 678},\n\tdictWord{6, 0, 305},\n\tdictWord{7, 0, 775},\n\tdictWord{7, 0, 1065},\n\tdictWord{133, 10, 977},\n\tdictWord{11, 11, 69},\n\tdictWord{12, 11, 105},\n\tdictWord{12, 11, 117},\n\tdictWord{13, 11, 213},\n\tdictWord{14, 11, 13},\n\tdictWord{14, 11, 62},\n\tdictWord{14, 11, 177},\n\tdictWord{14, 11, 421},\n\tdictWord{15, 11, 19},\n\tdictWord{146, 11, 141},\n\tdictWord{137, 11, 309},\n\tdictWord{5, 0, 35},\n\tdictWord{7, 0, 862},\n\tdictWord{7, 0, 1886},\n\tdictWord{138, 0, 179},\n\tdictWord{136, 0, 285},\n\tdictWord{132, 0, 517},\n\tdictWord{7, 11, 976},\n\tdictWord{9, 11, 146},\n\tdictWord{10, 11, 206},\n\tdictWord{10, 11, 596},\n\tdictWord{13, 11, 218},\n\tdictWord{142, 11, 153},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t254,\n\t},\n\tdictWord{6, 0, 214},\n\tdictWord{12, 0, 540},\n\tdictWord{4, 10, 275},\n\tdictWord{7, 10, 1219},\n\tdictWord{140, 10, 376},\n\tdictWord{8, 0, 667},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t403,\n\t},\n\tdictWord{146, 0, 83},\n\tdictWord{12, 0, 74},\n\tdictWord{10, 11, 648},\n\tdictWord{11, 11, 671},\n\tdictWord{143, 11, 46},\n\tdictWord{135, 0, 125},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1753,\n\t},\n\tdictWord{133, 0, 761},\n\tdictWord{6, 0, 912},\n\tdictWord{4, 11, 518},\n\tdictWord{6, 10, 369},\n\tdictWord{6, 10, 502},\n\tdictWord{7, 10, 1036},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1136,\n\t},\n\tdictWord{8, 10, 348},\n\tdictWord{9, 10, 452},\n\tdictWord{10, 10, 26},\n\tdictWord{11, 10, 224},\n\tdictWord{11, 10, 387},\n\tdictWord{11, 10, 772},\n\tdictWord{12, 10, 95},\n\tdictWord{12, 10, 629},\n\tdictWord{13, 10, 195},\n\tdictWord{13, 10, 207},\n\tdictWord{13, 10, 241},\n\tdictWord{14, 10, 260},\n\tdictWord{14, 10, 270},\n\tdictWord{143, 10, 140},\n\tdictWord{10, 0, 131},\n\tdictWord{140, 0, 72},\n\tdictWord{132, 10, 269},\n\tdictWord{5, 10, 480},\n\tdictWord{7, 10, 532},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1197,\n\t},\n\tdictWord{7, 10, 1358},\n\tdictWord{8, 10, 291},\n\tdictWord{11, 10, 349},\n\tdictWord{142, 10, 396},\n\tdictWord{8, 11, 689},\n\tdictWord{137, 11, 863},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t333,\n\t},\n\tdictWord{138, 0, 182},\n\tdictWord{4, 11, 18},\n\tdictWord{7, 11, 145},\n\tdictWord{7, 11, 444},\n\tdictWord{7, 11, 1278},\n\tdictWord{8, 11, 49},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t400,\n\t},\n\tdictWord{9, 11, 71},\n\tdictWord{9, 11, 250},\n\tdictWord{10, 11, 459},\n\tdictWord{12, 11, 160},\n\tdictWord{144, 11, 24},\n\tdictWord{14, 11, 35},\n\tdictWord{\n\t\t142,\n\t\t11,\n\t\t191,\n\t},\n\tdictWord{135, 11, 1864},\n\tdictWord{135, 0, 1338},\n\tdictWord{148, 10, 15},\n\tdictWord{14, 0, 94},\n\tdictWord{15, 0, 65},\n\tdictWord{16, 0, 4},\n\tdictWord{\n\t\t16,\n\t\t0,\n\t\t77,\n\t},\n\tdictWord{16, 0, 80},\n\tdictWord{145, 0, 5},\n\tdictWord{12, 11, 82},\n\tdictWord{143, 11, 36},\n\tdictWord{133, 11, 1010},\n\tdictWord{133, 0, 449},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t646,\n\t},\n\tdictWord{7, 0, 86},\n\tdictWord{8, 0, 103},\n\tdictWord{135, 10, 657},\n\tdictWord{7, 0, 2028},\n\tdictWord{138, 0, 641},\n\tdictWord{136, 10, 533},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1,\n\t},\n\tdictWord{139, 11, 970},\n\tdictWord{5, 11, 87},\n\tdictWord{7, 11, 313},\n\tdictWord{7, 11, 1103},\n\tdictWord{10, 11, 112},\n\tdictWord{10, 11, 582},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t389,\n\t},\n\tdictWord{11, 11, 813},\n\tdictWord{12, 11, 385},\n\tdictWord{13, 11, 286},\n\tdictWord{14, 11, 124},\n\tdictWord{146, 11, 108},\n\tdictWord{6, 0, 869},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t267,\n\t},\n\tdictWord{6, 0, 277},\n\tdictWord{7, 0, 1274},\n\tdictWord{7, 0, 1386},\n\tdictWord{146, 0, 87},\n\tdictWord{6, 0, 187},\n\tdictWord{7, 0, 39},\n\tdictWord{7, 0, 1203},\n\tdictWord{8, 0, 380},\n\tdictWord{14, 0, 117},\n\tdictWord{149, 0, 28},\n\tdictWord{4, 10, 211},\n\tdictWord{4, 10, 332},\n\tdictWord{5, 10, 335},\n\tdictWord{6, 10, 238},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t269,\n\t},\n\tdictWord{7, 10, 811},\n\tdictWord{7, 10, 1797},\n\tdictWord{8, 10, 836},\n\tdictWord{9, 10, 507},\n\tdictWord{141, 10, 242},\n\tdictWord{4, 0, 785},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t368,\n\t},\n\tdictWord{6, 0, 297},\n\tdictWord{7, 0, 793},\n\tdictWord{139, 0, 938},\n\tdictWord{7, 0, 464},\n\tdictWord{8, 0, 558},\n\tdictWord{11, 0, 105},\n\tdictWord{12, 0, 231},\n\tdictWord{14, 0, 386},\n\tdictWord{15, 0, 102},\n\tdictWord{148, 0, 75},\n\tdictWord{133, 10, 1009},\n\tdictWord{8, 0, 877},\n\tdictWord{140, 0, 731},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t289,\n\t},\n\tdictWord{10, 11, 249},\n\tdictWord{139, 11, 209},\n\tdictWord{132, 11, 561},\n\tdictWord{134, 0, 1608},\n\tdictWord{132, 11, 760},\n\tdictWord{134, 0, 1429},\n\tdictWord{9, 11, 154},\n\tdictWord{140, 11, 485},\n\tdictWord{5, 10, 228},\n\tdictWord{6, 10, 203},\n\tdictWord{7, 10, 156},\n\tdictWord{8, 10, 347},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t265,\n\t},\n\tdictWord{7, 0, 1010},\n\tdictWord{11, 0, 733},\n\tdictWord{11, 0, 759},\n\tdictWord{13, 0, 34},\n\tdictWord{14, 0, 427},\n\tdictWord{146, 0, 45},\n\tdictWord{7, 10, 1131},\n\tdictWord{135, 10, 1468},\n\tdictWord{136, 11, 255},\n\tdictWord{7, 0, 1656},\n\tdictWord{9, 0, 369},\n\tdictWord{10, 0, 338},\n\tdictWord{10, 0, 490},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t154,\n\t},\n\tdictWord{11, 0, 545},\n\tdictWord{11, 0, 775},\n\tdictWord{13, 0, 77},\n\tdictWord{141, 0, 274},\n\tdictWord{133, 11, 621},\n\tdictWord{134, 0, 1038},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t368,\n\t},\n\tdictWord{135, 11, 641},\n\tdictWord{6, 0, 2010},\n\tdictWord{8, 0, 979},\n\tdictWord{8, 0, 985},\n\tdictWord{10, 0, 951},\n\tdictWord{138, 0, 1011},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1005,\n\t},\n\tdictWord{19, 0, 121},\n\tdictWord{5, 10, 291},\n\tdictWord{5, 10, 318},\n\tdictWord{7, 10, 765},\n\tdictWord{9, 10, 389},\n\tdictWord{140, 10, 548},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t20,\n\t},\n\tdictWord{6, 0, 298},\n\tdictWord{7, 0, 659},\n\tdictWord{137, 0, 219},\n\tdictWord{7, 0, 1440},\n\tdictWord{11, 0, 854},\n\tdictWord{11, 0, 872},\n\tdictWord{11, 0, 921},\n\tdictWord{12, 0, 551},\n\tdictWord{13, 0, 472},\n\tdictWord{142, 0, 367},\n\tdictWord{5, 0, 490},\n\tdictWord{6, 0, 615},\n\tdictWord{6, 0, 620},\n\tdictWord{135, 0, 683},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1070,\n\t},\n\tdictWord{134, 0, 1597},\n\tdictWord{139, 0, 522},\n\tdictWord{132, 0, 439},\n\tdictWord{136, 0, 669},\n\tdictWord{6, 0, 766},\n\tdictWord{6, 0, 1143},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1245,\n\t},\n\tdictWord{10, 10, 525},\n\tdictWord{139, 10, 82},\n\tdictWord{9, 11, 92},\n\tdictWord{147, 11, 91},\n\tdictWord{6, 0, 668},\n\tdictWord{134, 0, 1218},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t525,\n\t},\n\tdictWord{9, 11, 876},\n\tdictWord{140, 11, 284},\n\tdictWord{132, 0, 233},\n\tdictWord{136, 0, 547},\n\tdictWord{132, 10, 422},\n\tdictWord{5, 10, 355},\n\tdictWord{145, 10, 0},\n\tdictWord{6, 11, 300},\n\tdictWord{135, 11, 1515},\n\tdictWord{4, 0, 482},\n\tdictWord{137, 10, 905},\n\tdictWord{4, 0, 886},\n\tdictWord{7, 0, 346},\n\tdictWord{133, 11, 594},\n\tdictWord{133, 10, 865},\n\tdictWord{5, 10, 914},\n\tdictWord{134, 10, 1625},\n\tdictWord{135, 0, 334},\n\tdictWord{5, 0, 795},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1741,\n\t},\n\tdictWord{133, 10, 234},\n\tdictWord{135, 10, 1383},\n\tdictWord{6, 11, 1641},\n\tdictWord{136, 11, 820},\n\tdictWord{135, 0, 371},\n\tdictWord{7, 11, 1313},\n\tdictWord{138, 11, 660},\n\tdictWord{135, 10, 1312},\n\tdictWord{135, 0, 622},\n\tdictWord{7, 0, 625},\n\tdictWord{135, 0, 1750},\n\tdictWord{135, 0, 339},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t203,\n\t},\n\tdictWord{135, 0, 1936},\n\tdictWord{15, 0, 29},\n\tdictWord{16, 0, 38},\n\tdictWord{15, 11, 29},\n\tdictWord{144, 11, 38},\n\tdictWord{5, 0, 338},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1256,\n\t},\n\tdictWord{135, 10, 1493},\n\tdictWord{10, 0, 130},\n\tdictWord{6, 10, 421},\n\tdictWord{7, 10, 61},\n\tdictWord{7, 10, 1540},\n\tdictWord{138, 10, 501},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t389,\n\t},\n\tdictWord{7, 11, 149},\n\tdictWord{9, 11, 142},\n\tdictWord{138, 11, 94},\n\tdictWord{137, 10, 341},\n\tdictWord{11, 0, 678},\n\tdictWord{12, 0, 307},\n\tdictWord{142, 10, 98},\n\tdictWord{6, 11, 8},\n\tdictWord{7, 11, 1881},\n\tdictWord{136, 11, 91},\n\tdictWord{135, 0, 2044},\n\tdictWord{6, 0, 770},\n\tdictWord{6, 0, 802},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t812,\n\t},\n\tdictWord{7, 0, 311},\n\tdictWord{9, 0, 308},\n\tdictWord{12, 0, 255},\n\tdictWord{6, 10, 102},\n\tdictWord{7, 10, 72},\n\tdictWord{15, 10, 142},\n\tdictWord{\n\t\t147,\n\t\t10,\n\t\t67,\n\t},\n\tdictWord{151, 10, 30},\n\tdictWord{135, 10, 823},\n\tdictWord{135, 0, 1266},\n\tdictWord{135, 11, 1746},\n\tdictWord{135, 10, 1870},\n\tdictWord{4, 0, 400},\n\tdictWord{5, 0, 267},\n\tdictWord{135, 0, 232},\n\tdictWord{7, 11, 24},\n\tdictWord{11, 11, 542},\n\tdictWord{139, 11, 852},\n\tdictWord{135, 11, 1739},\n\tdictWord{4, 11, 503},\n\tdictWord{135, 11, 1661},\n\tdictWord{5, 11, 130},\n\tdictWord{7, 11, 1314},\n\tdictWord{9, 11, 610},\n\tdictWord{10, 11, 718},\n\tdictWord{11, 11, 601},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t819,\n\t},\n\tdictWord{11, 11, 946},\n\tdictWord{140, 11, 536},\n\tdictWord{10, 11, 149},\n\tdictWord{11, 11, 280},\n\tdictWord{142, 11, 336},\n\tdictWord{7, 0, 739},\n\tdictWord{11, 0, 690},\n\tdictWord{7, 11, 1946},\n\tdictWord{8, 10, 48},\n\tdictWord{8, 10, 88},\n\tdictWord{8, 10, 582},\n\tdictWord{8, 10, 681},\n\tdictWord{9, 10, 373},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t864,\n\t},\n\tdictWord{11, 10, 157},\n\tdictWord{11, 10, 843},\n\tdictWord{148, 10, 27},\n\tdictWord{134, 0, 990},\n\tdictWord{4, 10, 88},\n\tdictWord{5, 10, 137},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t174,\n\t},\n\tdictWord{5, 10, 777},\n\tdictWord{6, 10, 1664},\n\tdictWord{6, 10, 1725},\n\tdictWord{7, 10, 77},\n\tdictWord{7, 10, 426},\n\tdictWord{7, 10, 1317},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1355,\n\t},\n\tdictWord{8, 10, 126},\n\tdictWord{8, 10, 563},\n\tdictWord{9, 10, 523},\n\tdictWord{9, 10, 750},\n\tdictWord{10, 10, 310},\n\tdictWord{10, 10, 836},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t42,\n\t},\n\tdictWord{11, 10, 318},\n\tdictWord{11, 10, 731},\n\tdictWord{12, 10, 68},\n\tdictWord{12, 10, 92},\n\tdictWord{12, 10, 507},\n\tdictWord{12, 10, 692},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t81,\n\t},\n\tdictWord{13, 10, 238},\n\tdictWord{13, 10, 374},\n\tdictWord{14, 10, 436},\n\tdictWord{18, 10, 138},\n\tdictWord{19, 10, 78},\n\tdictWord{19, 10, 111},\n\tdictWord{20, 10, 55},\n\tdictWord{20, 10, 77},\n\tdictWord{148, 10, 92},\n\tdictWord{141, 10, 418},\n\tdictWord{7, 0, 1831},\n\tdictWord{132, 10, 938},\n\tdictWord{6, 0, 776},\n\tdictWord{134, 0, 915},\n\tdictWord{138, 10, 351},\n\tdictWord{5, 11, 348},\n\tdictWord{6, 11, 522},\n\tdictWord{6, 10, 1668},\n\tdictWord{7, 10, 1499},\n\tdictWord{8, 10, 117},\n\tdictWord{9, 10, 314},\n\tdictWord{138, 10, 174},\n\tdictWord{135, 10, 707},\n\tdictWord{132, 0, 613},\n\tdictWord{133, 10, 403},\n\tdictWord{132, 11, 392},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t433,\n\t},\n\tdictWord{9, 11, 633},\n\tdictWord{139, 11, 629},\n\tdictWord{133, 0, 763},\n\tdictWord{132, 0, 878},\n\tdictWord{132, 0, 977},\n\tdictWord{132, 0, 100},\n\tdictWord{6, 0, 463},\n\tdictWord{4, 10, 44},\n\tdictWord{5, 10, 311},\n\tdictWord{7, 10, 639},\n\tdictWord{7, 10, 762},\n\tdictWord{7, 10, 1827},\n\tdictWord{9, 10, 8},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t462,\n\t},\n\tdictWord{148, 10, 83},\n\tdictWord{134, 11, 234},\n\tdictWord{4, 10, 346},\n\tdictWord{7, 10, 115},\n\tdictWord{9, 10, 180},\n\tdictWord{9, 10, 456},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t363,\n\t},\n\tdictWord{5, 0, 362},\n\tdictWord{5, 0, 443},\n\tdictWord{6, 0, 318},\n\tdictWord{7, 0, 1019},\n\tdictWord{139, 0, 623},\n\tdictWord{5, 0, 463},\n\tdictWord{8, 0, 296},\n\tdictWord{7, 11, 140},\n\tdictWord{7, 11, 1950},\n\tdictWord{8, 11, 680},\n\tdictWord{11, 11, 817},\n\tdictWord{147, 11, 88},\n\tdictWord{7, 11, 1222},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t386,\n\t},\n\tdictWord{142, 0, 137},\n\tdictWord{132, 0, 454},\n\tdictWord{7, 0, 1914},\n\tdictWord{6, 11, 5},\n\tdictWord{7, 10, 1051},\n\tdictWord{9, 10, 545},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t249,\n\t},\n\tdictWord{12, 11, 313},\n\tdictWord{16, 11, 66},\n\tdictWord{145, 11, 26},\n\tdictWord{135, 0, 1527},\n\tdictWord{145, 0, 58},\n\tdictWord{148, 11, 59},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t48,\n\t},\n\tdictWord{5, 0, 404},\n\tdictWord{6, 0, 557},\n\tdictWord{7, 0, 458},\n\tdictWord{8, 0, 597},\n\tdictWord{10, 0, 455},\n\tdictWord{10, 0, 606},\n\tdictWord{11, 0, 49},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t548,\n\t},\n\tdictWord{12, 0, 476},\n\tdictWord{13, 0, 18},\n\tdictWord{141, 0, 450},\n\tdictWord{5, 11, 963},\n\tdictWord{134, 11, 1773},\n\tdictWord{133, 0, 729},\n\tdictWord{138, 11, 586},\n\tdictWord{5, 0, 442},\n\tdictWord{135, 0, 1984},\n\tdictWord{134, 0, 449},\n\tdictWord{144, 0, 40},\n\tdictWord{4, 0, 853},\n\tdictWord{7, 11, 180},\n\tdictWord{8, 11, 509},\n\tdictWord{136, 11, 792},\n\tdictWord{6, 10, 185},\n\tdictWord{7, 10, 1899},\n\tdictWord{9, 10, 875},\n\tdictWord{139, 10, 673},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t524,\n\t},\n\tdictWord{12, 0, 227},\n\tdictWord{4, 10, 327},\n\tdictWord{5, 10, 478},\n\tdictWord{7, 10, 1332},\n\tdictWord{136, 10, 753},\n\tdictWord{6, 0, 1491},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t1020,\n\t},\n\tdictWord{133, 10, 1022},\n\tdictWord{4, 10, 103},\n\tdictWord{133, 10, 401},\n\tdictWord{132, 11, 931},\n\tdictWord{4, 10, 499},\n\tdictWord{135, 10, 1421},\n\tdictWord{5, 0, 55},\n\tdictWord{7, 0, 376},\n\tdictWord{140, 0, 161},\n\tdictWord{133, 0, 450},\n\tdictWord{6, 0, 1174},\n\tdictWord{134, 0, 1562},\n\tdictWord{10, 0, 62},\n\tdictWord{13, 0, 400},\n\tdictWord{135, 11, 1837},\n\tdictWord{140, 0, 207},\n\tdictWord{135, 0, 869},\n\tdictWord{4, 11, 773},\n\tdictWord{5, 11, 618},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t756,\n\t},\n\tdictWord{132, 10, 96},\n\tdictWord{4, 0, 213},\n\tdictWord{7, 0, 223},\n\tdictWord{8, 0, 80},\n\tdictWord{135, 10, 968},\n\tdictWord{4, 11, 90},\n\tdictWord{5, 11, 337},\n\tdictWord{5, 11, 545},\n\tdictWord{7, 11, 754},\n\tdictWord{9, 11, 186},\n\tdictWord{10, 11, 72},\n\tdictWord{10, 11, 782},\n\tdictWord{11, 11, 513},\n\tdictWord{11, 11, 577},\n\tdictWord{11, 11, 610},\n\tdictWord{11, 11, 889},\n\tdictWord{11, 11, 961},\n\tdictWord{12, 11, 354},\n\tdictWord{12, 11, 362},\n\tdictWord{12, 11, 461},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t595,\n\t},\n\tdictWord{13, 11, 79},\n\tdictWord{143, 11, 121},\n\tdictWord{7, 0, 381},\n\tdictWord{7, 0, 806},\n\tdictWord{7, 0, 820},\n\tdictWord{8, 0, 354},\n\tdictWord{8, 0, 437},\n\tdictWord{8, 0, 787},\n\tdictWord{9, 0, 657},\n\tdictWord{10, 0, 58},\n\tdictWord{10, 0, 339},\n\tdictWord{10, 0, 749},\n\tdictWord{11, 0, 914},\n\tdictWord{12, 0, 162},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t75,\n\t},\n\tdictWord{14, 0, 106},\n\tdictWord{14, 0, 198},\n\tdictWord{14, 0, 320},\n\tdictWord{14, 0, 413},\n\tdictWord{146, 0, 43},\n\tdictWord{136, 0, 747},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t954,\n\t},\n\tdictWord{134, 0, 1073},\n\tdictWord{135, 0, 556},\n\tdictWord{7, 11, 151},\n\tdictWord{9, 11, 329},\n\tdictWord{139, 11, 254},\n\tdictWord{5, 0, 692},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1395,\n\t},\n\tdictWord{6, 10, 563},\n\tdictWord{137, 10, 224},\n\tdictWord{134, 0, 191},\n\tdictWord{132, 0, 804},\n\tdictWord{9, 11, 187},\n\tdictWord{10, 11, 36},\n\tdictWord{17, 11, 44},\n\tdictWord{146, 11, 64},\n\tdictWord{7, 11, 165},\n\tdictWord{7, 11, 919},\n\tdictWord{136, 11, 517},\n\tdictWord{4, 11, 506},\n\tdictWord{5, 11, 295},\n\tdictWord{7, 11, 1680},\n\tdictWord{15, 11, 14},\n\tdictWord{144, 11, 5},\n\tdictWord{4, 0, 706},\n\tdictWord{6, 0, 162},\n\tdictWord{7, 0, 1960},\n\tdictWord{136, 0, 831},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1376,\n\t},\n\tdictWord{7, 11, 987},\n\tdictWord{9, 11, 688},\n\tdictWord{10, 11, 522},\n\tdictWord{11, 11, 788},\n\tdictWord{140, 11, 566},\n\tdictWord{150, 0, 35},\n\tdictWord{138, 0, 426},\n\tdictWord{135, 0, 1235},\n\tdictWord{135, 11, 1741},\n\tdictWord{7, 11, 389},\n\tdictWord{7, 11, 700},\n\tdictWord{7, 11, 940},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t514,\n\t},\n\tdictWord{9, 11, 116},\n\tdictWord{9, 11, 535},\n\tdictWord{10, 11, 118},\n\tdictWord{11, 11, 107},\n\tdictWord{11, 11, 148},\n\tdictWord{11, 11, 922},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t254,\n\t},\n\tdictWord{12, 11, 421},\n\tdictWord{142, 11, 238},\n\tdictWord{134, 0, 1234},\n\tdictWord{132, 11, 743},\n\tdictWord{4, 10, 910},\n\tdictWord{5, 10, 832},\n\tdictWord{135, 11, 1335},\n\tdictWord{141, 0, 96},\n\tdictWord{135, 11, 185},\n\tdictWord{146, 0, 149},\n\tdictWord{4, 0, 204},\n\tdictWord{137, 0, 902},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t784,\n\t},\n\tdictWord{133, 11, 745},\n\tdictWord{136, 0, 833},\n\tdictWord{136, 0, 949},\n\tdictWord{7, 0, 366},\n\tdictWord{9, 0, 287},\n\tdictWord{12, 0, 199},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t556,\n\t},\n\tdictWord{12, 0, 577},\n\tdictWord{5, 11, 81},\n\tdictWord{7, 11, 146},\n\tdictWord{7, 11, 1342},\n\tdictWord{7, 11, 1446},\n\tdictWord{8, 11, 53},\n\tdictWord{8, 11, 561},\n\tdictWord{8, 11, 694},\n\tdictWord{8, 11, 754},\n\tdictWord{9, 11, 97},\n\tdictWord{9, 11, 115},\n\tdictWord{9, 11, 894},\n\tdictWord{10, 11, 462},\n\tdictWord{10, 11, 813},\n\tdictWord{11, 11, 230},\n\tdictWord{11, 11, 657},\n\tdictWord{11, 11, 699},\n\tdictWord{11, 11, 748},\n\tdictWord{12, 11, 119},\n\tdictWord{12, 11, 200},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t283,\n\t},\n\tdictWord{14, 11, 273},\n\tdictWord{145, 11, 15},\n\tdictWord{5, 11, 408},\n\tdictWord{137, 11, 747},\n\tdictWord{9, 11, 498},\n\tdictWord{140, 11, 181},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t2020,\n\t},\n\tdictWord{136, 0, 992},\n\tdictWord{5, 0, 356},\n\tdictWord{135, 0, 224},\n\tdictWord{134, 0, 784},\n\tdictWord{7, 0, 630},\n\tdictWord{9, 0, 567},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t150,\n\t},\n\tdictWord{11, 0, 444},\n\tdictWord{13, 0, 119},\n\tdictWord{8, 10, 528},\n\tdictWord{137, 10, 348},\n\tdictWord{134, 0, 539},\n\tdictWord{4, 10, 20},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t616,\n\t},\n\tdictWord{142, 0, 27},\n\tdictWord{7, 11, 30},\n\tdictWord{8, 11, 86},\n\tdictWord{8, 11, 315},\n\tdictWord{8, 11, 700},\n\tdictWord{9, 11, 576},\n\tdictWord{9, 11, 858},\n\tdictWord{11, 11, 310},\n\tdictWord{11, 11, 888},\n\tdictWord{11, 11, 904},\n\tdictWord{12, 11, 361},\n\tdictWord{141, 11, 248},\n\tdictWord{138, 11, 839},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t755,\n\t},\n\tdictWord{134, 0, 1063},\n\tdictWord{7, 10, 1091},\n\tdictWord{135, 10, 1765},\n\tdictWord{134, 11, 428},\n\tdictWord{7, 11, 524},\n\tdictWord{8, 11, 169},\n\tdictWord{8, 11, 234},\n\tdictWord{9, 11, 480},\n\tdictWord{138, 11, 646},\n\tdictWord{139, 0, 814},\n\tdictWord{7, 11, 1462},\n\tdictWord{139, 11, 659},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t26,\n\t},\n\tdictWord{5, 10, 429},\n\tdictWord{6, 10, 245},\n\tdictWord{7, 10, 704},\n\tdictWord{7, 10, 1379},\n\tdictWord{135, 10, 1474},\n\tdictWord{7, 11, 1205},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t637,\n\t},\n\tdictWord{139, 11, 803},\n\tdictWord{132, 10, 621},\n\tdictWord{136, 0, 987},\n\tdictWord{4, 11, 266},\n\tdictWord{8, 11, 4},\n\tdictWord{9, 11, 39},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t166,\n\t},\n\tdictWord{11, 11, 918},\n\tdictWord{12, 11, 635},\n\tdictWord{20, 11, 10},\n\tdictWord{22, 11, 27},\n\tdictWord{150, 11, 43},\n\tdictWord{4, 0, 235},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t255,\n\t},\n\tdictWord{4, 0, 194},\n\tdictWord{5, 0, 584},\n\tdictWord{6, 0, 384},\n\tdictWord{7, 0, 583},\n\tdictWord{10, 0, 761},\n\tdictWord{11, 0, 760},\n\tdictWord{139, 0, 851},\n\tdictWord{133, 10, 542},\n\tdictWord{134, 0, 1086},\n\tdictWord{133, 10, 868},\n\tdictWord{8, 0, 1016},\n\tdictWord{136, 0, 1018},\n\tdictWord{7, 0, 1396},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1396,\n\t},\n\tdictWord{136, 10, 433},\n\tdictWord{135, 10, 1495},\n\tdictWord{138, 10, 215},\n\tdictWord{141, 10, 124},\n\tdictWord{7, 11, 157},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t279,\n\t},\n\tdictWord{9, 11, 759},\n\tdictWord{16, 11, 31},\n\tdictWord{16, 11, 39},\n\tdictWord{16, 11, 75},\n\tdictWord{18, 11, 24},\n\tdictWord{20, 11, 42},\n\tdictWord{152, 11, 1},\n\tdictWord{5, 0, 562},\n\tdictWord{134, 11, 604},\n\tdictWord{134, 0, 913},\n\tdictWord{5, 0, 191},\n\tdictWord{137, 0, 271},\n\tdictWord{4, 0, 470},\n\tdictWord{6, 0, 153},\n\tdictWord{7, 0, 1503},\n\tdictWord{7, 0, 1923},\n\tdictWord{10, 0, 701},\n\tdictWord{11, 0, 132},\n\tdictWord{11, 0, 227},\n\tdictWord{11, 0, 320},\n\tdictWord{11, 0, 436},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t525,\n\t},\n\tdictWord{11, 0, 855},\n\tdictWord{11, 0, 873},\n\tdictWord{12, 0, 41},\n\tdictWord{12, 0, 286},\n\tdictWord{13, 0, 103},\n\tdictWord{13, 0, 284},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t255,\n\t},\n\tdictWord{14, 0, 262},\n\tdictWord{15, 0, 117},\n\tdictWord{143, 0, 127},\n\tdictWord{7, 0, 475},\n\tdictWord{12, 0, 45},\n\tdictWord{147, 10, 112},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t567,\n\t},\n\tdictWord{137, 11, 859},\n\tdictWord{6, 0, 713},\n\tdictWord{6, 0, 969},\n\tdictWord{6, 0, 1290},\n\tdictWord{134, 0, 1551},\n\tdictWord{133, 0, 327},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t552,\n\t},\n\tdictWord{6, 0, 1292},\n\tdictWord{7, 0, 1754},\n\tdictWord{137, 0, 604},\n\tdictWord{4, 0, 223},\n\tdictWord{6, 0, 359},\n\tdictWord{11, 0, 3},\n\tdictWord{13, 0, 108},\n\tdictWord{14, 0, 89},\n\tdictWord{16, 0, 22},\n\tdictWord{5, 11, 762},\n\tdictWord{7, 11, 1880},\n\tdictWord{9, 11, 680},\n\tdictWord{139, 11, 798},\n\tdictWord{5, 0, 80},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t405,\n\t},\n\tdictWord{7, 0, 403},\n\tdictWord{7, 0, 1502},\n\tdictWord{8, 0, 456},\n\tdictWord{9, 0, 487},\n\tdictWord{9, 0, 853},\n\tdictWord{9, 0, 889},\n\tdictWord{10, 0, 309},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t721,\n\t},\n\tdictWord{11, 0, 994},\n\tdictWord{12, 0, 430},\n\tdictWord{141, 0, 165},\n\tdictWord{133, 11, 298},\n\tdictWord{132, 10, 647},\n\tdictWord{134, 0, 2016},\n\tdictWord{18, 10, 10},\n\tdictWord{146, 11, 10},\n\tdictWord{4, 0, 453},\n\tdictWord{5, 0, 887},\n\tdictWord{6, 0, 535},\n\tdictWord{8, 0, 6},\n\tdictWord{8, 0, 543},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t826,\n\t},\n\tdictWord{136, 0, 975},\n\tdictWord{10, 0, 961},\n\tdictWord{138, 0, 962},\n\tdictWord{138, 10, 220},\n\tdictWord{6, 0, 1891},\n\tdictWord{6, 0, 1893},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t916,\n\t},\n\tdictWord{9, 0, 965},\n\tdictWord{9, 0, 972},\n\tdictWord{12, 0, 801},\n\tdictWord{12, 0, 859},\n\tdictWord{12, 0, 883},\n\tdictWord{15, 0, 226},\n\tdictWord{149, 0, 51},\n\tdictWord{132, 10, 109},\n\tdictWord{135, 11, 267},\n\tdictWord{7, 11, 92},\n\tdictWord{7, 11, 182},\n\tdictWord{8, 11, 453},\n\tdictWord{9, 11, 204},\n\tdictWord{11, 11, 950},\n\tdictWord{12, 11, 94},\n\tdictWord{12, 11, 644},\n\tdictWord{16, 11, 20},\n\tdictWord{16, 11, 70},\n\tdictWord{16, 11, 90},\n\tdictWord{147, 11, 55},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1746,\n\t},\n\tdictWord{6, 11, 71},\n\tdictWord{7, 11, 845},\n\tdictWord{7, 11, 1308},\n\tdictWord{8, 11, 160},\n\tdictWord{137, 11, 318},\n\tdictWord{5, 0, 101},\n\tdictWord{6, 0, 88},\n\tdictWord{7, 0, 263},\n\tdictWord{7, 0, 628},\n\tdictWord{7, 0, 1677},\n\tdictWord{8, 0, 349},\n\tdictWord{9, 0, 100},\n\tdictWord{10, 0, 677},\n\tdictWord{14, 0, 169},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t302,\n\t},\n\tdictWord{14, 0, 313},\n\tdictWord{15, 0, 48},\n\tdictWord{15, 0, 84},\n\tdictWord{7, 11, 237},\n\tdictWord{8, 11, 664},\n\tdictWord{9, 11, 42},\n\tdictWord{9, 11, 266},\n\tdictWord{9, 11, 380},\n\tdictWord{9, 11, 645},\n\tdictWord{10, 11, 177},\n\tdictWord{138, 11, 276},\n\tdictWord{138, 11, 69},\n\tdictWord{4, 0, 310},\n\tdictWord{7, 0, 708},\n\tdictWord{7, 0, 996},\n\tdictWord{9, 0, 795},\n\tdictWord{10, 0, 390},\n\tdictWord{10, 0, 733},\n\tdictWord{11, 0, 451},\n\tdictWord{12, 0, 249},\n\tdictWord{14, 0, 115},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t286,\n\t},\n\tdictWord{143, 0, 100},\n\tdictWord{5, 0, 587},\n\tdictWord{4, 10, 40},\n\tdictWord{10, 10, 67},\n\tdictWord{11, 10, 117},\n\tdictWord{11, 10, 768},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t935,\n\t},\n\tdictWord{6, 0, 1942},\n\tdictWord{7, 0, 512},\n\tdictWord{136, 0, 983},\n\tdictWord{7, 10, 992},\n\tdictWord{8, 10, 301},\n\tdictWord{9, 10, 722},\n\tdictWord{12, 10, 63},\n\tdictWord{13, 10, 29},\n\tdictWord{14, 10, 161},\n\tdictWord{143, 10, 18},\n\tdictWord{136, 11, 76},\n\tdictWord{139, 10, 923},\n\tdictWord{134, 0, 645},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t851,\n\t},\n\tdictWord{4, 0, 498},\n\tdictWord{132, 11, 293},\n\tdictWord{7, 0, 217},\n\tdictWord{8, 0, 140},\n\tdictWord{10, 0, 610},\n\tdictWord{14, 11, 352},\n\tdictWord{\n\t\t17,\n\t\t11,\n\t\t53,\n\t},\n\tdictWord{18, 11, 146},\n\tdictWord{18, 11, 152},\n\tdictWord{19, 11, 11},\n\tdictWord{150, 11, 54},\n\tdictWord{134, 0, 1448},\n\tdictWord{138, 11, 841},\n\tdictWord{133, 0, 905},\n\tdictWord{4, 11, 605},\n\tdictWord{7, 11, 518},\n\tdictWord{7, 11, 1282},\n\tdictWord{7, 11, 1918},\n\tdictWord{10, 11, 180},\n\tdictWord{139, 11, 218},\n\tdictWord{139, 11, 917},\n\tdictWord{135, 10, 825},\n\tdictWord{140, 10, 328},\n\tdictWord{4, 0, 456},\n\tdictWord{7, 0, 105},\n\tdictWord{7, 0, 358},\n\tdictWord{7, 0, 1637},\n\tdictWord{8, 0, 643},\n\tdictWord{139, 0, 483},\n\tdictWord{134, 0, 792},\n\tdictWord{6, 11, 96},\n\tdictWord{135, 11, 1426},\n\tdictWord{137, 11, 691},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t651,\n\t},\n\tdictWord{133, 11, 289},\n\tdictWord{7, 11, 688},\n\tdictWord{8, 11, 35},\n\tdictWord{9, 11, 511},\n\tdictWord{10, 11, 767},\n\tdictWord{147, 11, 118},\n\tdictWord{\n\t\t150,\n\t\t0,\n\t\t56,\n\t},\n\tdictWord{5, 0, 243},\n\tdictWord{5, 0, 535},\n\tdictWord{6, 10, 204},\n\tdictWord{10, 10, 320},\n\tdictWord{10, 10, 583},\n\tdictWord{13, 10, 502},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t72,\n\t},\n\tdictWord{14, 10, 274},\n\tdictWord{14, 10, 312},\n\tdictWord{14, 10, 344},\n\tdictWord{15, 10, 159},\n\tdictWord{16, 10, 62},\n\tdictWord{16, 10, 69},\n\tdictWord{\n\t\t17,\n\t\t10,\n\t\t30,\n\t},\n\tdictWord{18, 10, 42},\n\tdictWord{18, 10, 53},\n\tdictWord{18, 10, 84},\n\tdictWord{18, 10, 140},\n\tdictWord{19, 10, 68},\n\tdictWord{19, 10, 85},\n\tdictWord{20, 10, 5},\n\tdictWord{20, 10, 45},\n\tdictWord{20, 10, 101},\n\tdictWord{22, 10, 7},\n\tdictWord{150, 10, 20},\n\tdictWord{4, 10, 558},\n\tdictWord{6, 10, 390},\n\tdictWord{7, 10, 162},\n\tdictWord{7, 10, 689},\n\tdictWord{9, 10, 360},\n\tdictWord{138, 10, 653},\n\tdictWord{146, 11, 23},\n\tdictWord{135, 0, 1748},\n\tdictWord{5, 10, 856},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1672,\n\t},\n\tdictWord{6, 10, 1757},\n\tdictWord{134, 10, 1781},\n\tdictWord{5, 0, 539},\n\tdictWord{5, 0, 754},\n\tdictWord{6, 0, 876},\n\tdictWord{132, 11, 704},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1078,\n\t},\n\tdictWord{5, 10, 92},\n\tdictWord{10, 10, 736},\n\tdictWord{140, 10, 102},\n\tdictWord{17, 0, 91},\n\tdictWord{5, 10, 590},\n\tdictWord{137, 10, 213},\n\tdictWord{134, 0, 1565},\n\tdictWord{6, 0, 91},\n\tdictWord{135, 0, 435},\n\tdictWord{4, 0, 939},\n\tdictWord{140, 0, 792},\n\tdictWord{134, 0, 1399},\n\tdictWord{4, 0, 16},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t316,\n\t},\n\tdictWord{5, 0, 842},\n\tdictWord{6, 0, 370},\n\tdictWord{6, 0, 1778},\n\tdictWord{8, 0, 166},\n\tdictWord{11, 0, 812},\n\tdictWord{12, 0, 206},\n\tdictWord{12, 0, 351},\n\tdictWord{14, 0, 418},\n\tdictWord{16, 0, 15},\n\tdictWord{16, 0, 34},\n\tdictWord{18, 0, 3},\n\tdictWord{19, 0, 3},\n\tdictWord{19, 0, 7},\n\tdictWord{20, 0, 4},\n\tdictWord{21, 0, 21},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t720,\n\t},\n\tdictWord{133, 11, 306},\n\tdictWord{144, 0, 95},\n\tdictWord{133, 11, 431},\n\tdictWord{132, 11, 234},\n\tdictWord{135, 0, 551},\n\tdictWord{4, 0, 999},\n\tdictWord{6, 0, 1966},\n\tdictWord{134, 0, 2042},\n\tdictWord{7, 0, 619},\n\tdictWord{10, 0, 547},\n\tdictWord{11, 0, 122},\n\tdictWord{12, 0, 601},\n\tdictWord{15, 0, 7},\n\tdictWord{148, 0, 20},\n\tdictWord{5, 11, 464},\n\tdictWord{6, 11, 236},\n\tdictWord{7, 11, 276},\n\tdictWord{7, 11, 696},\n\tdictWord{7, 11, 914},\n\tdictWord{7, 11, 1108},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1448,\n\t},\n\tdictWord{9, 11, 15},\n\tdictWord{9, 11, 564},\n\tdictWord{10, 11, 14},\n\tdictWord{12, 11, 565},\n\tdictWord{13, 11, 449},\n\tdictWord{14, 11, 53},\n\tdictWord{\n\t\t15,\n\t\t11,\n\t\t13,\n\t},\n\tdictWord{16, 11, 64},\n\tdictWord{145, 11, 41},\n\tdictWord{6, 0, 884},\n\tdictWord{6, 0, 1019},\n\tdictWord{134, 0, 1150},\n\tdictWord{6, 11, 1767},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t194,\n\t},\n\tdictWord{145, 11, 107},\n\tdictWord{136, 10, 503},\n\tdictWord{133, 11, 840},\n\tdictWord{7, 0, 671},\n\tdictWord{134, 10, 466},\n\tdictWord{132, 0, 888},\n\tdictWord{4, 0, 149},\n\tdictWord{138, 0, 368},\n\tdictWord{4, 0, 154},\n\tdictWord{7, 0, 1134},\n\tdictWord{136, 0, 105},\n\tdictWord{135, 0, 983},\n\tdictWord{9, 11, 642},\n\tdictWord{11, 11, 236},\n\tdictWord{142, 11, 193},\n\tdictWord{4, 0, 31},\n\tdictWord{6, 0, 429},\n\tdictWord{7, 0, 962},\n\tdictWord{9, 0, 458},\n\tdictWord{139, 0, 691},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t643,\n\t},\n\tdictWord{134, 0, 1102},\n\tdictWord{132, 0, 312},\n\tdictWord{4, 11, 68},\n\tdictWord{5, 11, 634},\n\tdictWord{6, 11, 386},\n\tdictWord{7, 11, 794},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t273,\n\t},\n\tdictWord{9, 11, 563},\n\tdictWord{10, 11, 105},\n\tdictWord{10, 11, 171},\n\tdictWord{11, 11, 94},\n\tdictWord{139, 11, 354},\n\tdictWord{133, 0, 740},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1642,\n\t},\n\tdictWord{4, 11, 95},\n\tdictWord{7, 11, 416},\n\tdictWord{8, 11, 211},\n\tdictWord{139, 11, 830},\n\tdictWord{132, 0, 236},\n\tdictWord{138, 10, 241},\n\tdictWord{7, 11, 731},\n\tdictWord{13, 11, 20},\n\tdictWord{143, 11, 11},\n\tdictWord{5, 0, 836},\n\tdictWord{5, 0, 857},\n\tdictWord{6, 0, 1680},\n\tdictWord{135, 0, 59},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t68,\n\t},\n\tdictWord{11, 0, 494},\n\tdictWord{152, 11, 6},\n\tdictWord{4, 0, 81},\n\tdictWord{139, 0, 867},\n\tdictWord{135, 0, 795},\n\tdictWord{133, 11, 689},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t1001,\n\t},\n\tdictWord{5, 0, 282},\n\tdictWord{6, 0, 1932},\n\tdictWord{6, 0, 1977},\n\tdictWord{6, 0, 1987},\n\tdictWord{6, 0, 1992},\n\tdictWord{8, 0, 650},\n\tdictWord{8, 0, 919},\n\tdictWord{8, 0, 920},\n\tdictWord{8, 0, 923},\n\tdictWord{8, 0, 926},\n\tdictWord{8, 0, 927},\n\tdictWord{8, 0, 931},\n\tdictWord{8, 0, 939},\n\tdictWord{8, 0, 947},\n\tdictWord{8, 0, 956},\n\tdictWord{8, 0, 997},\n\tdictWord{9, 0, 907},\n\tdictWord{10, 0, 950},\n\tdictWord{10, 0, 953},\n\tdictWord{10, 0, 954},\n\tdictWord{10, 0, 956},\n\tdictWord{10, 0, 958},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t959,\n\t},\n\tdictWord{10, 0, 964},\n\tdictWord{10, 0, 970},\n\tdictWord{10, 0, 972},\n\tdictWord{10, 0, 973},\n\tdictWord{10, 0, 975},\n\tdictWord{10, 0, 976},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t980,\n\t},\n\tdictWord{10, 0, 981},\n\tdictWord{10, 0, 984},\n\tdictWord{10, 0, 988},\n\tdictWord{10, 0, 990},\n\tdictWord{10, 0, 995},\n\tdictWord{10, 0, 999},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t1002,\n\t},\n\tdictWord{10, 0, 1003},\n\tdictWord{10, 0, 1005},\n\tdictWord{10, 0, 1006},\n\tdictWord{10, 0, 1008},\n\tdictWord{10, 0, 1009},\n\tdictWord{10, 0, 1012},\n\tdictWord{10, 0, 1014},\n\tdictWord{10, 0, 1015},\n\tdictWord{10, 0, 1019},\n\tdictWord{10, 0, 1020},\n\tdictWord{10, 0, 1022},\n\tdictWord{12, 0, 959},\n\tdictWord{12, 0, 961},\n\tdictWord{12, 0, 962},\n\tdictWord{12, 0, 963},\n\tdictWord{12, 0, 964},\n\tdictWord{12, 0, 965},\n\tdictWord{12, 0, 967},\n\tdictWord{12, 0, 968},\n\tdictWord{12, 0, 969},\n\tdictWord{12, 0, 970},\n\tdictWord{12, 0, 971},\n\tdictWord{12, 0, 972},\n\tdictWord{12, 0, 973},\n\tdictWord{12, 0, 974},\n\tdictWord{12, 0, 975},\n\tdictWord{12, 0, 976},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t977,\n\t},\n\tdictWord{12, 0, 979},\n\tdictWord{12, 0, 981},\n\tdictWord{12, 0, 982},\n\tdictWord{12, 0, 983},\n\tdictWord{12, 0, 984},\n\tdictWord{12, 0, 985},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t986,\n\t},\n\tdictWord{12, 0, 987},\n\tdictWord{12, 0, 989},\n\tdictWord{12, 0, 990},\n\tdictWord{12, 0, 992},\n\tdictWord{12, 0, 993},\n\tdictWord{12, 0, 995},\n\tdictWord{12, 0, 998},\n\tdictWord{12, 0, 999},\n\tdictWord{12, 0, 1000},\n\tdictWord{12, 0, 1001},\n\tdictWord{12, 0, 1002},\n\tdictWord{12, 0, 1004},\n\tdictWord{12, 0, 1005},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t1006,\n\t},\n\tdictWord{12, 0, 1007},\n\tdictWord{12, 0, 1008},\n\tdictWord{12, 0, 1009},\n\tdictWord{12, 0, 1010},\n\tdictWord{12, 0, 1011},\n\tdictWord{12, 0, 1012},\n\tdictWord{12, 0, 1014},\n\tdictWord{12, 0, 1015},\n\tdictWord{12, 0, 1016},\n\tdictWord{12, 0, 1017},\n\tdictWord{12, 0, 1018},\n\tdictWord{12, 0, 1019},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t1022,\n\t},\n\tdictWord{12, 0, 1023},\n\tdictWord{14, 0, 475},\n\tdictWord{14, 0, 477},\n\tdictWord{14, 0, 478},\n\tdictWord{14, 0, 479},\n\tdictWord{14, 0, 480},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t482,\n\t},\n\tdictWord{14, 0, 483},\n\tdictWord{14, 0, 484},\n\tdictWord{14, 0, 485},\n\tdictWord{14, 0, 486},\n\tdictWord{14, 0, 487},\n\tdictWord{14, 0, 488},\n\tdictWord{14, 0, 489},\n\tdictWord{14, 0, 490},\n\tdictWord{14, 0, 491},\n\tdictWord{14, 0, 492},\n\tdictWord{14, 0, 493},\n\tdictWord{14, 0, 494},\n\tdictWord{14, 0, 495},\n\tdictWord{14, 0, 496},\n\tdictWord{14, 0, 497},\n\tdictWord{14, 0, 498},\n\tdictWord{14, 0, 499},\n\tdictWord{14, 0, 500},\n\tdictWord{14, 0, 501},\n\tdictWord{14, 0, 502},\n\tdictWord{14, 0, 503},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t504,\n\t},\n\tdictWord{14, 0, 506},\n\tdictWord{14, 0, 507},\n\tdictWord{14, 0, 508},\n\tdictWord{14, 0, 509},\n\tdictWord{14, 0, 510},\n\tdictWord{14, 0, 511},\n\tdictWord{\n\t\t16,\n\t\t0,\n\t\t113,\n\t},\n\tdictWord{16, 0, 114},\n\tdictWord{16, 0, 115},\n\tdictWord{16, 0, 117},\n\tdictWord{16, 0, 118},\n\tdictWord{16, 0, 119},\n\tdictWord{16, 0, 121},\n\tdictWord{16, 0, 122},\n\tdictWord{16, 0, 123},\n\tdictWord{16, 0, 124},\n\tdictWord{16, 0, 125},\n\tdictWord{16, 0, 126},\n\tdictWord{16, 0, 127},\n\tdictWord{18, 0, 242},\n\tdictWord{18, 0, 243},\n\tdictWord{18, 0, 244},\n\tdictWord{18, 0, 245},\n\tdictWord{18, 0, 248},\n\tdictWord{18, 0, 249},\n\tdictWord{18, 0, 250},\n\tdictWord{18, 0, 251},\n\tdictWord{18, 0, 252},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t253,\n\t},\n\tdictWord{18, 0, 254},\n\tdictWord{18, 0, 255},\n\tdictWord{20, 0, 125},\n\tdictWord{20, 0, 126},\n\tdictWord{148, 0, 127},\n\tdictWord{7, 11, 1717},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1769,\n\t},\n\tdictWord{138, 11, 546},\n\tdictWord{7, 11, 1127},\n\tdictWord{7, 11, 1572},\n\tdictWord{10, 11, 297},\n\tdictWord{10, 11, 422},\n\tdictWord{11, 11, 764},\n\tdictWord{11, 11, 810},\n\tdictWord{12, 11, 264},\n\tdictWord{13, 11, 102},\n\tdictWord{13, 11, 300},\n\tdictWord{13, 11, 484},\n\tdictWord{14, 11, 147},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t229,\n\t},\n\tdictWord{17, 11, 71},\n\tdictWord{18, 11, 118},\n\tdictWord{147, 11, 120},\n\tdictWord{6, 0, 1148},\n\tdictWord{134, 0, 1586},\n\tdictWord{132, 0, 775},\n\tdictWord{135, 10, 954},\n\tdictWord{133, 11, 864},\n\tdictWord{133, 11, 928},\n\tdictWord{138, 11, 189},\n\tdictWord{135, 10, 1958},\n\tdictWord{6, 10, 549},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t34,\n\t},\n\tdictWord{8, 10, 283},\n\tdictWord{9, 10, 165},\n\tdictWord{138, 10, 475},\n\tdictWord{5, 10, 652},\n\tdictWord{5, 10, 701},\n\tdictWord{135, 10, 449},\n\tdictWord{135, 11, 695},\n\tdictWord{4, 10, 655},\n\tdictWord{7, 10, 850},\n\tdictWord{17, 10, 75},\n\tdictWord{146, 10, 137},\n\tdictWord{140, 11, 682},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t523,\n\t},\n\tdictWord{8, 0, 970},\n\tdictWord{136, 10, 670},\n\tdictWord{136, 11, 555},\n\tdictWord{7, 11, 76},\n\tdictWord{8, 11, 44},\n\tdictWord{9, 11, 884},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t580,\n\t},\n\tdictWord{11, 11, 399},\n\tdictWord{11, 11, 894},\n\tdictWord{15, 11, 122},\n\tdictWord{18, 11, 144},\n\tdictWord{147, 11, 61},\n\tdictWord{6, 10, 159},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t364,\n\t},\n\tdictWord{7, 10, 516},\n\tdictWord{7, 10, 1439},\n\tdictWord{137, 10, 518},\n\tdictWord{4, 0, 71},\n\tdictWord{5, 0, 376},\n\tdictWord{7, 0, 119},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t665,\n\t},\n\tdictWord{141, 10, 151},\n\tdictWord{11, 0, 827},\n\tdictWord{14, 0, 34},\n\tdictWord{143, 0, 148},\n\tdictWord{133, 11, 518},\n\tdictWord{4, 0, 479},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1787,\n\t},\n\tdictWord{135, 11, 1852},\n\tdictWord{135, 10, 993},\n\tdictWord{7, 0, 607},\n\tdictWord{136, 0, 99},\n\tdictWord{134, 0, 1960},\n\tdictWord{132, 0, 793},\n\tdictWord{4, 0, 41},\n\tdictWord{5, 0, 74},\n\tdictWord{7, 0, 1627},\n\tdictWord{11, 0, 871},\n\tdictWord{140, 0, 619},\n\tdictWord{7, 0, 94},\n\tdictWord{11, 0, 329},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t965,\n\t},\n\tdictWord{12, 0, 241},\n\tdictWord{14, 0, 354},\n\tdictWord{15, 0, 22},\n\tdictWord{148, 0, 63},\n\tdictWord{7, 10, 501},\n\tdictWord{9, 10, 111},\n\tdictWord{10, 10, 141},\n\tdictWord{11, 10, 332},\n\tdictWord{13, 10, 43},\n\tdictWord{13, 10, 429},\n\tdictWord{14, 10, 130},\n\tdictWord{14, 10, 415},\n\tdictWord{145, 10, 102},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t209,\n\t},\n\tdictWord{137, 0, 300},\n\tdictWord{134, 0, 1497},\n\tdictWord{138, 11, 255},\n\tdictWord{4, 11, 934},\n\tdictWord{5, 11, 138},\n\tdictWord{136, 11, 610},\n\tdictWord{133, 0, 98},\n\tdictWord{6, 0, 1316},\n\tdictWord{10, 11, 804},\n\tdictWord{138, 11, 832},\n\tdictWord{8, 11, 96},\n\tdictWord{9, 11, 36},\n\tdictWord{10, 11, 607},\n\tdictWord{11, 11, 423},\n\tdictWord{11, 11, 442},\n\tdictWord{12, 11, 309},\n\tdictWord{14, 11, 199},\n\tdictWord{15, 11, 90},\n\tdictWord{145, 11, 110},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t463,\n\t},\n\tdictWord{5, 10, 149},\n\tdictWord{136, 10, 233},\n\tdictWord{133, 10, 935},\n\tdictWord{4, 11, 652},\n\tdictWord{8, 11, 320},\n\tdictWord{9, 11, 13},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t398,\n\t},\n\tdictWord{9, 11, 727},\n\tdictWord{10, 11, 75},\n\tdictWord{10, 11, 184},\n\tdictWord{10, 11, 230},\n\tdictWord{10, 11, 564},\n\tdictWord{10, 11, 569},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t973,\n\t},\n\tdictWord{12, 11, 70},\n\tdictWord{12, 11, 189},\n\tdictWord{13, 11, 57},\n\tdictWord{13, 11, 257},\n\tdictWord{22, 11, 6},\n\tdictWord{150, 11, 16},\n\tdictWord{\n\t\t142,\n\t\t0,\n\t\t291,\n\t},\n\tdictWord{12, 10, 582},\n\tdictWord{146, 10, 131},\n\tdictWord{136, 10, 801},\n\tdictWord{133, 0, 984},\n\tdictWord{145, 11, 116},\n\tdictWord{4, 11, 692},\n\tdictWord{133, 11, 321},\n\tdictWord{4, 0, 182},\n\tdictWord{6, 0, 205},\n\tdictWord{135, 0, 220},\n\tdictWord{4, 0, 42},\n\tdictWord{9, 0, 205},\n\tdictWord{9, 0, 786},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t659,\n\t},\n\tdictWord{6, 0, 801},\n\tdictWord{11, 11, 130},\n\tdictWord{140, 11, 609},\n\tdictWord{132, 0, 635},\n\tdictWord{5, 11, 345},\n\tdictWord{135, 11, 1016},\n\tdictWord{139, 0, 533},\n\tdictWord{132, 0, 371},\n\tdictWord{4, 0, 272},\n\tdictWord{135, 0, 836},\n\tdictWord{6, 0, 1282},\n\tdictWord{135, 11, 1100},\n\tdictWord{5, 0, 825},\n\tdictWord{134, 0, 1640},\n\tdictWord{135, 11, 1325},\n\tdictWord{133, 11, 673},\n\tdictWord{4, 11, 287},\n\tdictWord{133, 11, 1018},\n\tdictWord{135, 0, 357},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t467,\n\t},\n\tdictWord{137, 0, 879},\n\tdictWord{7, 0, 317},\n\tdictWord{135, 0, 569},\n\tdictWord{6, 0, 924},\n\tdictWord{134, 0, 1588},\n\tdictWord{5, 11, 34},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t406,\n\t},\n\tdictWord{10, 11, 724},\n\tdictWord{12, 11, 444},\n\tdictWord{13, 11, 354},\n\tdictWord{18, 11, 32},\n\tdictWord{23, 11, 24},\n\tdictWord{23, 11, 31},\n\tdictWord{\n\t\t152,\n\t\t11,\n\t\t5,\n\t},\n\tdictWord{6, 0, 1795},\n\tdictWord{6, 0, 1835},\n\tdictWord{6, 0, 1836},\n\tdictWord{6, 0, 1856},\n\tdictWord{8, 0, 844},\n\tdictWord{8, 0, 849},\n\tdictWord{8, 0, 854},\n\tdictWord{8, 0, 870},\n\tdictWord{8, 0, 887},\n\tdictWord{10, 0, 852},\n\tdictWord{138, 0, 942},\n\tdictWord{6, 10, 69},\n\tdictWord{135, 10, 117},\n\tdictWord{137, 0, 307},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t944,\n\t},\n\tdictWord{6, 0, 1799},\n\tdictWord{6, 0, 1825},\n\tdictWord{10, 0, 848},\n\tdictWord{10, 0, 875},\n\tdictWord{10, 0, 895},\n\tdictWord{10, 0, 899},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t902,\n\t},\n\tdictWord{140, 0, 773},\n\tdictWord{11, 0, 43},\n\tdictWord{13, 0, 72},\n\tdictWord{141, 0, 142},\n\tdictWord{135, 10, 1830},\n\tdictWord{134, 11, 382},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t432,\n\t},\n\tdictWord{135, 10, 824},\n\tdictWord{132, 11, 329},\n\tdictWord{7, 0, 1820},\n\tdictWord{139, 11, 124},\n\tdictWord{133, 10, 826},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t525,\n\t},\n\tdictWord{132, 11, 906},\n\tdictWord{7, 11, 1940},\n\tdictWord{136, 11, 366},\n\tdictWord{138, 11, 10},\n\tdictWord{4, 11, 123},\n\tdictWord{4, 11, 649},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t605,\n\t},\n\tdictWord{7, 11, 1509},\n\tdictWord{136, 11, 36},\n\tdictWord{6, 0, 110},\n\tdictWord{135, 0, 1681},\n\tdictWord{133, 0, 493},\n\tdictWord{133, 11, 767},\n\tdictWord{4, 0, 174},\n\tdictWord{135, 0, 911},\n\tdictWord{138, 11, 786},\n\tdictWord{8, 0, 417},\n\tdictWord{137, 0, 782},\n\tdictWord{133, 10, 1000},\n\tdictWord{7, 0, 733},\n\tdictWord{137, 0, 583},\n\tdictWord{4, 10, 297},\n\tdictWord{6, 10, 529},\n\tdictWord{7, 10, 152},\n\tdictWord{7, 10, 713},\n\tdictWord{7, 10, 1845},\n\tdictWord{8, 10, 710},\n\tdictWord{8, 10, 717},\n\tdictWord{12, 10, 639},\n\tdictWord{140, 10, 685},\n\tdictWord{4, 0, 32},\n\tdictWord{5, 0, 215},\n\tdictWord{6, 0, 269},\n\tdictWord{7, 0, 1782},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1892,\n\t},\n\tdictWord{10, 0, 16},\n\tdictWord{11, 0, 822},\n\tdictWord{11, 0, 954},\n\tdictWord{141, 0, 481},\n\tdictWord{4, 11, 273},\n\tdictWord{5, 11, 658},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t995,\n\t},\n\tdictWord{136, 0, 477},\n\tdictWord{134, 11, 72},\n\tdictWord{135, 11, 1345},\n\tdictWord{5, 0, 308},\n\tdictWord{7, 0, 1088},\n\tdictWord{4, 10, 520},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t575,\n\t},\n\tdictWord{133, 11, 589},\n\tdictWord{5, 0, 126},\n\tdictWord{8, 0, 297},\n\tdictWord{9, 0, 366},\n\tdictWord{140, 0, 374},\n\tdictWord{7, 0, 1551},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t361,\n\t},\n\tdictWord{5, 11, 117},\n\tdictWord{6, 11, 514},\n\tdictWord{6, 11, 541},\n\tdictWord{7, 11, 1164},\n\tdictWord{7, 11, 1436},\n\tdictWord{8, 11, 220},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t648,\n\t},\n\tdictWord{10, 11, 688},\n\tdictWord{139, 11, 560},\n\tdictWord{133, 11, 686},\n\tdictWord{4, 0, 946},\n\tdictWord{6, 0, 1807},\n\tdictWord{8, 0, 871},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t854,\n\t},\n\tdictWord{10, 0, 870},\n\tdictWord{10, 0, 888},\n\tdictWord{10, 0, 897},\n\tdictWord{10, 0, 920},\n\tdictWord{12, 0, 722},\n\tdictWord{12, 0, 761},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t763,\n\t},\n\tdictWord{12, 0, 764},\n\tdictWord{14, 0, 454},\n\tdictWord{14, 0, 465},\n\tdictWord{16, 0, 107},\n\tdictWord{18, 0, 167},\n\tdictWord{18, 0, 168},\n\tdictWord{\n\t\t146,\n\t\t0,\n\t\t172,\n\t},\n\tdictWord{132, 0, 175},\n\tdictWord{135, 0, 1307},\n\tdictWord{132, 0, 685},\n\tdictWord{135, 11, 1834},\n\tdictWord{133, 0, 797},\n\tdictWord{6, 0, 745},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t858,\n\t},\n\tdictWord{134, 0, 963},\n\tdictWord{133, 0, 565},\n\tdictWord{5, 10, 397},\n\tdictWord{6, 10, 154},\n\tdictWord{7, 11, 196},\n\tdictWord{7, 10, 676},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t443,\n\t},\n\tdictWord{8, 10, 609},\n\tdictWord{9, 10, 24},\n\tdictWord{9, 10, 325},\n\tdictWord{10, 10, 35},\n\tdictWord{10, 11, 765},\n\tdictWord{11, 11, 347},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t535,\n\t},\n\tdictWord{11, 11, 552},\n\tdictWord{11, 11, 576},\n\tdictWord{11, 10, 672},\n\tdictWord{11, 11, 790},\n\tdictWord{11, 10, 1018},\n\tdictWord{12, 11, 263},\n\tdictWord{12, 10, 637},\n\tdictWord{13, 11, 246},\n\tdictWord{13, 11, 270},\n\tdictWord{13, 11, 395},\n\tdictWord{14, 11, 74},\n\tdictWord{14, 11, 176},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t190,\n\t},\n\tdictWord{14, 11, 398},\n\tdictWord{14, 11, 412},\n\tdictWord{15, 11, 32},\n\tdictWord{15, 11, 63},\n\tdictWord{16, 10, 30},\n\tdictWord{16, 11, 88},\n\tdictWord{\n\t\t147,\n\t\t11,\n\t\t105,\n\t},\n\tdictWord{13, 11, 84},\n\tdictWord{141, 11, 122},\n\tdictWord{4, 0, 252},\n\tdictWord{7, 0, 1068},\n\tdictWord{10, 0, 434},\n\tdictWord{11, 0, 228},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t426,\n\t},\n\tdictWord{13, 0, 231},\n\tdictWord{18, 0, 106},\n\tdictWord{148, 0, 87},\n\tdictWord{137, 0, 826},\n\tdictWord{4, 11, 589},\n\tdictWord{139, 11, 282},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t381,\n\t},\n\tdictWord{135, 11, 1792},\n\tdictWord{132, 0, 791},\n\tdictWord{5, 0, 231},\n\tdictWord{10, 0, 509},\n\tdictWord{133, 10, 981},\n\tdictWord{7, 0, 601},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t277,\n\t},\n\tdictWord{9, 0, 674},\n\tdictWord{10, 0, 178},\n\tdictWord{10, 0, 418},\n\tdictWord{10, 0, 571},\n\tdictWord{11, 0, 531},\n\tdictWord{12, 0, 113},\n\tdictWord{12, 0, 475},\n\tdictWord{13, 0, 99},\n\tdictWord{142, 0, 428},\n\tdictWord{4, 10, 56},\n\tdictWord{7, 11, 616},\n\tdictWord{7, 10, 1791},\n\tdictWord{8, 10, 607},\n\tdictWord{8, 10, 651},\n\tdictWord{10, 11, 413},\n\tdictWord{11, 10, 465},\n\tdictWord{11, 10, 835},\n\tdictWord{12, 10, 337},\n\tdictWord{141, 10, 480},\n\tdictWord{7, 0, 1591},\n\tdictWord{144, 0, 43},\n\tdictWord{9, 10, 158},\n\tdictWord{138, 10, 411},\n\tdictWord{135, 0, 1683},\n\tdictWord{8, 0, 289},\n\tdictWord{11, 0, 45},\n\tdictWord{12, 0, 278},\n\tdictWord{140, 0, 537},\n\tdictWord{6, 11, 120},\n\tdictWord{7, 11, 1188},\n\tdictWord{7, 11, 1710},\n\tdictWord{8, 11, 286},\n\tdictWord{9, 11, 667},\n\tdictWord{11, 11, 592},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t730,\n\t},\n\tdictWord{136, 10, 617},\n\tdictWord{135, 0, 1120},\n\tdictWord{135, 11, 1146},\n\tdictWord{139, 10, 563},\n\tdictWord{4, 11, 352},\n\tdictWord{4, 10, 369},\n\tdictWord{135, 11, 687},\n\tdictWord{143, 11, 38},\n\tdictWord{4, 0, 399},\n\tdictWord{5, 0, 119},\n\tdictWord{5, 0, 494},\n\tdictWord{7, 0, 751},\n\tdictWord{9, 0, 556},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t179,\n\t},\n\tdictWord{15, 11, 151},\n\tdictWord{150, 11, 11},\n\tdictWord{4, 11, 192},\n\tdictWord{5, 11, 49},\n\tdictWord{6, 11, 200},\n\tdictWord{6, 11, 293},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t1696,\n\t},\n\tdictWord{135, 11, 488},\n\tdictWord{4, 0, 398},\n\tdictWord{133, 0, 660},\n\tdictWord{7, 0, 1030},\n\tdictWord{134, 10, 622},\n\tdictWord{135, 11, 595},\n\tdictWord{141, 0, 168},\n\tdictWord{132, 11, 147},\n\tdictWord{7, 0, 973},\n\tdictWord{10, 10, 624},\n\tdictWord{142, 10, 279},\n\tdictWord{132, 10, 363},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t642,\n\t},\n\tdictWord{133, 11, 934},\n\tdictWord{134, 0, 1615},\n\tdictWord{7, 11, 505},\n\tdictWord{135, 11, 523},\n\tdictWord{7, 0, 594},\n\tdictWord{7, 0, 851},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1858,\n\t},\n\tdictWord{9, 0, 411},\n\tdictWord{9, 0, 574},\n\tdictWord{9, 0, 666},\n\tdictWord{9, 0, 737},\n\tdictWord{10, 0, 346},\n\tdictWord{10, 0, 712},\n\tdictWord{11, 0, 246},\n\tdictWord{11, 0, 432},\n\tdictWord{11, 0, 517},\n\tdictWord{11, 0, 647},\n\tdictWord{11, 0, 679},\n\tdictWord{11, 0, 727},\n\tdictWord{12, 0, 304},\n\tdictWord{12, 0, 305},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t323,\n\t},\n\tdictWord{12, 0, 483},\n\tdictWord{12, 0, 572},\n\tdictWord{12, 0, 593},\n\tdictWord{12, 0, 602},\n\tdictWord{13, 0, 95},\n\tdictWord{13, 0, 101},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t171,\n\t},\n\tdictWord{13, 0, 315},\n\tdictWord{13, 0, 378},\n\tdictWord{13, 0, 425},\n\tdictWord{13, 0, 475},\n\tdictWord{14, 0, 63},\n\tdictWord{14, 0, 380},\n\tdictWord{14, 0, 384},\n\tdictWord{15, 0, 133},\n\tdictWord{18, 0, 112},\n\tdictWord{148, 0, 72},\n\tdictWord{135, 0, 1093},\n\tdictWord{132, 0, 679},\n\tdictWord{8, 0, 913},\n\tdictWord{10, 0, 903},\n\tdictWord{10, 0, 915},\n\tdictWord{12, 0, 648},\n\tdictWord{12, 0, 649},\n\tdictWord{14, 0, 455},\n\tdictWord{16, 0, 112},\n\tdictWord{138, 11, 438},\n\tdictWord{137, 0, 203},\n\tdictWord{134, 10, 292},\n\tdictWord{134, 0, 1492},\n\tdictWord{7, 0, 1374},\n\tdictWord{8, 0, 540},\n\tdictWord{5, 10, 177},\n\tdictWord{6, 10, 616},\n\tdictWord{7, 10, 827},\n\tdictWord{9, 10, 525},\n\tdictWord{138, 10, 656},\n\tdictWord{135, 0, 1486},\n\tdictWord{9, 0, 714},\n\tdictWord{138, 10, 31},\n\tdictWord{136, 0, 825},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1511,\n\t},\n\tdictWord{132, 11, 637},\n\tdictWord{134, 0, 952},\n\tdictWord{4, 10, 161},\n\tdictWord{133, 10, 631},\n\tdictWord{5, 0, 143},\n\tdictWord{5, 0, 769},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1760,\n\t},\n\tdictWord{7, 0, 682},\n\tdictWord{7, 0, 1992},\n\tdictWord{136, 0, 736},\n\tdictWord{132, 0, 700},\n\tdictWord{134, 0, 1540},\n\tdictWord{132, 11, 777},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t867,\n\t},\n\tdictWord{138, 11, 837},\n\tdictWord{7, 0, 1557},\n\tdictWord{135, 10, 1684},\n\tdictWord{133, 0, 860},\n\tdictWord{6, 0, 422},\n\tdictWord{7, 0, 0},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1544,\n\t},\n\tdictWord{9, 0, 605},\n\tdictWord{11, 0, 990},\n\tdictWord{12, 0, 235},\n\tdictWord{12, 0, 453},\n\tdictWord{13, 0, 47},\n\tdictWord{13, 0, 266},\n\tdictWord{9, 10, 469},\n\tdictWord{9, 10, 709},\n\tdictWord{12, 10, 512},\n\tdictWord{14, 10, 65},\n\tdictWord{145, 10, 12},\n\tdictWord{11, 0, 807},\n\tdictWord{10, 10, 229},\n\tdictWord{11, 10, 73},\n\tdictWord{139, 10, 376},\n\tdictWord{6, 11, 170},\n\tdictWord{7, 11, 1080},\n\tdictWord{8, 11, 395},\n\tdictWord{8, 11, 487},\n\tdictWord{11, 11, 125},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t147,\n\t},\n\tdictWord{5, 0, 515},\n\tdictWord{137, 0, 131},\n\tdictWord{7, 0, 1605},\n\tdictWord{11, 0, 962},\n\tdictWord{146, 0, 139},\n\tdictWord{132, 0, 646},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t396,\n\t},\n\tdictWord{7, 0, 728},\n\tdictWord{9, 0, 117},\n\tdictWord{13, 0, 202},\n\tdictWord{148, 0, 51},\n\tdictWord{6, 0, 121},\n\tdictWord{6, 0, 124},\n\tdictWord{6, 0, 357},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1138,\n\t},\n\tdictWord{7, 0, 1295},\n\tdictWord{8, 0, 162},\n\tdictWord{8, 0, 508},\n\tdictWord{11, 0, 655},\n\tdictWord{4, 11, 535},\n\tdictWord{6, 10, 558},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t651,\n\t},\n\tdictWord{8, 11, 618},\n\tdictWord{9, 10, 0},\n\tdictWord{10, 10, 34},\n\tdictWord{139, 10, 1008},\n\tdictWord{135, 11, 1245},\n\tdictWord{138, 0, 357},\n\tdictWord{\n\t\t150,\n\t\t11,\n\t\t23,\n\t},\n\tdictWord{133, 0, 237},\n\tdictWord{135, 0, 1784},\n\tdictWord{7, 10, 1832},\n\tdictWord{138, 10, 374},\n\tdictWord{132, 0, 713},\n\tdictWord{132, 11, 46},\n\tdictWord{6, 0, 1536},\n\tdictWord{10, 0, 348},\n\tdictWord{5, 11, 811},\n\tdictWord{6, 11, 1679},\n\tdictWord{6, 11, 1714},\n\tdictWord{135, 11, 2032},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t182,\n\t},\n\tdictWord{142, 11, 195},\n\tdictWord{6, 0, 523},\n\tdictWord{7, 0, 738},\n\tdictWord{7, 10, 771},\n\tdictWord{7, 10, 1731},\n\tdictWord{9, 10, 405},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t421,\n\t},\n\tdictWord{7, 11, 1458},\n\tdictWord{9, 11, 407},\n\tdictWord{139, 11, 15},\n\tdictWord{6, 11, 34},\n\tdictWord{7, 11, 69},\n\tdictWord{7, 11, 640},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1089,\n\t},\n\tdictWord{8, 11, 708},\n\tdictWord{8, 11, 721},\n\tdictWord{9, 11, 363},\n\tdictWord{9, 11, 643},\n\tdictWord{10, 11, 628},\n\tdictWord{148, 11, 98},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t434,\n\t},\n\tdictWord{135, 0, 1877},\n\tdictWord{7, 0, 571},\n\tdictWord{138, 0, 366},\n\tdictWord{5, 10, 881},\n\tdictWord{133, 10, 885},\n\tdictWord{9, 0, 513},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t25,\n\t},\n\tdictWord{10, 0, 39},\n\tdictWord{12, 0, 122},\n\tdictWord{140, 0, 187},\n\tdictWord{132, 0, 580},\n\tdictWord{5, 10, 142},\n\tdictWord{134, 10, 546},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t462,\n\t},\n\tdictWord{137, 0, 873},\n\tdictWord{5, 10, 466},\n\tdictWord{11, 10, 571},\n\tdictWord{12, 10, 198},\n\tdictWord{13, 10, 283},\n\tdictWord{14, 10, 186},\n\tdictWord{15, 10, 21},\n\tdictWord{143, 10, 103},\n\tdictWord{7, 0, 171},\n\tdictWord{4, 10, 185},\n\tdictWord{5, 10, 257},\n\tdictWord{5, 10, 839},\n\tdictWord{5, 10, 936},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t399,\n\t},\n\tdictWord{10, 10, 258},\n\tdictWord{10, 10, 395},\n\tdictWord{10, 10, 734},\n\tdictWord{11, 10, 1014},\n\tdictWord{12, 10, 23},\n\tdictWord{13, 10, 350},\n\tdictWord{14, 10, 150},\n\tdictWord{147, 10, 6},\n\tdictWord{134, 0, 625},\n\tdictWord{7, 0, 107},\n\tdictWord{7, 0, 838},\n\tdictWord{8, 0, 550},\n\tdictWord{138, 0, 401},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t73,\n\t},\n\tdictWord{6, 11, 23},\n\tdictWord{134, 11, 338},\n\tdictWord{4, 0, 943},\n\tdictWord{6, 0, 1850},\n\tdictWord{12, 0, 713},\n\tdictWord{142, 0, 434},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t588,\n\t},\n\tdictWord{11, 0, 864},\n\tdictWord{11, 0, 936},\n\tdictWord{11, 0, 968},\n\tdictWord{12, 0, 73},\n\tdictWord{12, 0, 343},\n\tdictWord{12, 0, 394},\n\tdictWord{13, 0, 275},\n\tdictWord{14, 0, 257},\n\tdictWord{15, 0, 160},\n\tdictWord{7, 10, 404},\n\tdictWord{7, 10, 1377},\n\tdictWord{7, 10, 1430},\n\tdictWord{7, 10, 2017},\n\tdictWord{8, 10, 149},\n\tdictWord{8, 10, 239},\n\tdictWord{8, 10, 512},\n\tdictWord{8, 10, 793},\n\tdictWord{8, 10, 818},\n\tdictWord{9, 10, 474},\n\tdictWord{9, 10, 595},\n\tdictWord{10, 10, 122},\n\tdictWord{10, 10, 565},\n\tdictWord{10, 10, 649},\n\tdictWord{10, 10, 783},\n\tdictWord{11, 10, 239},\n\tdictWord{11, 10, 295},\n\tdictWord{11, 10, 447},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t528,\n\t},\n\tdictWord{11, 10, 639},\n\tdictWord{11, 10, 800},\n\tdictWord{12, 10, 25},\n\tdictWord{12, 10, 157},\n\tdictWord{12, 10, 316},\n\tdictWord{12, 10, 390},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t391,\n\t},\n\tdictWord{12, 10, 395},\n\tdictWord{12, 10, 478},\n\tdictWord{12, 10, 503},\n\tdictWord{12, 10, 592},\n\tdictWord{12, 10, 680},\n\tdictWord{13, 10, 50},\n\tdictWord{13, 10, 53},\n\tdictWord{13, 10, 132},\n\tdictWord{13, 10, 198},\n\tdictWord{13, 10, 322},\n\tdictWord{13, 10, 415},\n\tdictWord{13, 10, 511},\n\tdictWord{14, 10, 71},\n\tdictWord{14, 10, 395},\n\tdictWord{15, 10, 71},\n\tdictWord{15, 10, 136},\n\tdictWord{17, 10, 123},\n\tdictWord{18, 10, 93},\n\tdictWord{147, 10, 58},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t768,\n\t},\n\tdictWord{11, 0, 103},\n\tdictWord{142, 0, 0},\n\tdictWord{136, 10, 712},\n\tdictWord{132, 0, 799},\n\tdictWord{132, 0, 894},\n\tdictWord{7, 11, 725},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t498,\n\t},\n\tdictWord{139, 11, 268},\n\tdictWord{135, 11, 1798},\n\tdictWord{135, 11, 773},\n\tdictWord{141, 11, 360},\n\tdictWord{4, 10, 377},\n\tdictWord{152, 10, 13},\n\tdictWord{135, 0, 1673},\n\tdictWord{132, 11, 583},\n\tdictWord{134, 0, 1052},\n\tdictWord{133, 11, 220},\n\tdictWord{140, 11, 69},\n\tdictWord{132, 11, 544},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t180,\n\t},\n\tdictWord{135, 10, 1906},\n\tdictWord{134, 0, 272},\n\tdictWord{4, 0, 441},\n\tdictWord{134, 0, 1421},\n\tdictWord{4, 0, 9},\n\tdictWord{5, 0, 128},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t368,\n\t},\n\tdictWord{11, 0, 480},\n\tdictWord{148, 0, 3},\n\tdictWord{5, 11, 176},\n\tdictWord{6, 11, 437},\n\tdictWord{6, 11, 564},\n\tdictWord{11, 11, 181},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t183,\n\t},\n\tdictWord{132, 10, 491},\n\tdictWord{7, 0, 1182},\n\tdictWord{141, 11, 67},\n\tdictWord{6, 0, 1346},\n\tdictWord{4, 10, 171},\n\tdictWord{138, 10, 234},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t586,\n\t},\n\tdictWord{7, 10, 1186},\n\tdictWord{138, 10, 631},\n\tdictWord{136, 0, 682},\n\tdictWord{134, 0, 1004},\n\tdictWord{15, 0, 24},\n\tdictWord{143, 11, 24},\n\tdictWord{134, 0, 968},\n\tdictWord{4, 0, 2},\n\tdictWord{6, 0, 742},\n\tdictWord{6, 0, 793},\n\tdictWord{7, 0, 545},\n\tdictWord{7, 0, 894},\n\tdictWord{9, 10, 931},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t334,\n\t},\n\tdictWord{148, 10, 71},\n\tdictWord{136, 11, 600},\n\tdictWord{133, 10, 765},\n\tdictWord{9, 0, 769},\n\tdictWord{140, 0, 185},\n\tdictWord{4, 11, 790},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t273,\n\t},\n\tdictWord{134, 11, 394},\n\tdictWord{7, 0, 474},\n\tdictWord{137, 0, 578},\n\tdictWord{4, 11, 135},\n\tdictWord{6, 11, 127},\n\tdictWord{7, 11, 1185},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1511,\n\t},\n\tdictWord{8, 11, 613},\n\tdictWord{11, 11, 5},\n\tdictWord{12, 11, 133},\n\tdictWord{12, 11, 495},\n\tdictWord{12, 11, 586},\n\tdictWord{14, 11, 385},\n\tdictWord{15, 11, 118},\n\tdictWord{17, 11, 20},\n\tdictWord{146, 11, 98},\n\tdictWord{133, 10, 424},\n\tdictWord{5, 0, 530},\n\tdictWord{142, 0, 113},\n\tdictWord{6, 11, 230},\n\tdictWord{7, 11, 961},\n\tdictWord{7, 11, 1085},\n\tdictWord{136, 11, 462},\n\tdictWord{7, 11, 1954},\n\tdictWord{137, 11, 636},\n\tdictWord{136, 10, 714},\n\tdictWord{\n\t\t149,\n\t\t11,\n\t\t6,\n\t},\n\tdictWord{135, 10, 685},\n\tdictWord{9, 10, 420},\n\tdictWord{10, 10, 269},\n\tdictWord{10, 10, 285},\n\tdictWord{10, 10, 576},\n\tdictWord{11, 10, 397},\n\tdictWord{13, 10, 175},\n\tdictWord{145, 10, 90},\n\tdictWord{132, 10, 429},\n\tdictWord{5, 0, 556},\n\tdictWord{5, 11, 162},\n\tdictWord{136, 11, 68},\n\tdictWord{132, 11, 654},\n\tdictWord{4, 11, 156},\n\tdictWord{7, 11, 998},\n\tdictWord{7, 11, 1045},\n\tdictWord{7, 11, 1860},\n\tdictWord{9, 11, 48},\n\tdictWord{9, 11, 692},\n\tdictWord{11, 11, 419},\n\tdictWord{139, 11, 602},\n\tdictWord{6, 0, 1317},\n\tdictWord{8, 0, 16},\n\tdictWord{9, 0, 825},\n\tdictWord{12, 0, 568},\n\tdictWord{7, 11, 1276},\n\tdictWord{8, 11, 474},\n\tdictWord{137, 11, 652},\n\tdictWord{18, 0, 97},\n\tdictWord{7, 10, 18},\n\tdictWord{7, 10, 699},\n\tdictWord{7, 10, 1966},\n\tdictWord{8, 10, 752},\n\tdictWord{9, 10, 273},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t412,\n\t},\n\tdictWord{9, 10, 703},\n\tdictWord{10, 10, 71},\n\tdictWord{10, 10, 427},\n\tdictWord{138, 10, 508},\n\tdictWord{10, 0, 703},\n\tdictWord{7, 11, 1454},\n\tdictWord{138, 11, 703},\n\tdictWord{4, 10, 53},\n\tdictWord{5, 10, 186},\n\tdictWord{135, 10, 752},\n\tdictWord{134, 0, 892},\n\tdictWord{134, 0, 1571},\n\tdictWord{8, 10, 575},\n\tdictWord{10, 10, 289},\n\tdictWord{139, 10, 319},\n\tdictWord{6, 0, 186},\n\tdictWord{137, 0, 426},\n\tdictWord{134, 0, 1101},\n\tdictWord{132, 10, 675},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t585,\n\t},\n\tdictWord{6, 0, 1870},\n\tdictWord{137, 0, 937},\n\tdictWord{152, 11, 10},\n\tdictWord{9, 11, 197},\n\tdictWord{10, 11, 300},\n\tdictWord{12, 11, 473},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t90,\n\t},\n\tdictWord{141, 11, 405},\n\tdictWord{4, 0, 93},\n\tdictWord{5, 0, 252},\n\tdictWord{6, 0, 229},\n\tdictWord{7, 0, 291},\n\tdictWord{9, 0, 550},\n\tdictWord{139, 0, 644},\n\tdictWord{137, 0, 749},\n\tdictWord{9, 0, 162},\n\tdictWord{6, 10, 209},\n\tdictWord{8, 10, 468},\n\tdictWord{9, 10, 210},\n\tdictWord{11, 10, 36},\n\tdictWord{12, 10, 28},\n\tdictWord{12, 10, 630},\n\tdictWord{13, 10, 21},\n\tdictWord{13, 10, 349},\n\tdictWord{14, 10, 7},\n\tdictWord{145, 10, 13},\n\tdictWord{132, 0, 381},\n\tdictWord{132, 11, 606},\n\tdictWord{4, 10, 342},\n\tdictWord{135, 10, 1179},\n\tdictWord{7, 11, 1587},\n\tdictWord{7, 11, 1707},\n\tdictWord{10, 11, 528},\n\tdictWord{139, 11, 504},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t39,\n\t},\n\tdictWord{13, 11, 265},\n\tdictWord{141, 11, 439},\n\tdictWord{4, 10, 928},\n\tdictWord{133, 10, 910},\n\tdictWord{7, 10, 1838},\n\tdictWord{7, 11, 1978},\n\tdictWord{136, 11, 676},\n\tdictWord{6, 0, 762},\n\tdictWord{6, 0, 796},\n\tdictWord{134, 0, 956},\n\tdictWord{4, 10, 318},\n\tdictWord{4, 10, 496},\n\tdictWord{7, 10, 856},\n\tdictWord{139, 10, 654},\n\tdictWord{137, 11, 242},\n\tdictWord{4, 11, 361},\n\tdictWord{133, 11, 315},\n\tdictWord{132, 11, 461},\n\tdictWord{132, 11, 472},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t857,\n\t},\n\tdictWord{5, 0, 21},\n\tdictWord{6, 0, 77},\n\tdictWord{6, 0, 157},\n\tdictWord{7, 0, 974},\n\tdictWord{7, 0, 1301},\n\tdictWord{7, 0, 1339},\n\tdictWord{7, 0, 1490},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1873,\n\t},\n\tdictWord{9, 0, 628},\n\tdictWord{7, 10, 915},\n\tdictWord{8, 10, 247},\n\tdictWord{147, 10, 0},\n\tdictWord{4, 10, 202},\n\tdictWord{5, 10, 382},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t454,\n\t},\n\tdictWord{7, 10, 936},\n\tdictWord{7, 10, 1803},\n\tdictWord{8, 10, 758},\n\tdictWord{9, 10, 375},\n\tdictWord{9, 10, 895},\n\tdictWord{10, 10, 743},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t792,\n\t},\n\tdictWord{11, 10, 978},\n\tdictWord{11, 10, 1012},\n\tdictWord{142, 10, 109},\n\tdictWord{7, 11, 617},\n\tdictWord{10, 11, 498},\n\tdictWord{11, 11, 501},\n\tdictWord{12, 11, 16},\n\tdictWord{140, 11, 150},\n\tdictWord{7, 10, 1150},\n\tdictWord{7, 10, 1425},\n\tdictWord{7, 10, 1453},\n\tdictWord{10, 11, 747},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t513,\n\t},\n\tdictWord{133, 11, 155},\n\tdictWord{11, 0, 919},\n\tdictWord{141, 0, 409},\n\tdictWord{138, 10, 791},\n\tdictWord{10, 0, 633},\n\tdictWord{139, 11, 729},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t163,\n\t},\n\tdictWord{8, 11, 319},\n\tdictWord{9, 11, 402},\n\tdictWord{10, 11, 24},\n\tdictWord{10, 11, 681},\n\tdictWord{11, 11, 200},\n\tdictWord{11, 11, 567},\n\tdictWord{12, 11, 253},\n\tdictWord{12, 11, 410},\n\tdictWord{142, 11, 219},\n\tdictWord{5, 11, 475},\n\tdictWord{7, 11, 1780},\n\tdictWord{9, 11, 230},\n\tdictWord{11, 11, 297},\n\tdictWord{11, 11, 558},\n\tdictWord{14, 11, 322},\n\tdictWord{147, 11, 76},\n\tdictWord{7, 0, 332},\n\tdictWord{6, 10, 445},\n\tdictWord{137, 10, 909},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1956,\n\t},\n\tdictWord{136, 11, 274},\n\tdictWord{134, 10, 578},\n\tdictWord{135, 0, 1489},\n\tdictWord{135, 11, 1848},\n\tdictWord{5, 11, 944},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t1769,\n\t},\n\tdictWord{132, 11, 144},\n\tdictWord{136, 10, 766},\n\tdictWord{4, 0, 832},\n\tdictWord{135, 10, 541},\n\tdictWord{8, 0, 398},\n\tdictWord{9, 0, 681},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t632,\n\t},\n\tdictWord{136, 0, 645},\n\tdictWord{9, 0, 791},\n\tdictWord{10, 0, 93},\n\tdictWord{16, 0, 13},\n\tdictWord{17, 0, 23},\n\tdictWord{18, 0, 135},\n\tdictWord{19, 0, 12},\n\tdictWord{20, 0, 1},\n\tdictWord{20, 0, 12},\n\tdictWord{148, 0, 14},\n\tdictWord{6, 11, 247},\n\tdictWord{137, 11, 555},\n\tdictWord{134, 0, 20},\n\tdictWord{132, 0, 800},\n\tdictWord{135, 0, 1841},\n\tdictWord{139, 10, 983},\n\tdictWord{137, 10, 768},\n\tdictWord{132, 10, 584},\n\tdictWord{141, 11, 51},\n\tdictWord{6, 0, 1993},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t620,\n\t},\n\tdictWord{138, 11, 280},\n\tdictWord{136, 0, 769},\n\tdictWord{11, 0, 290},\n\tdictWord{11, 0, 665},\n\tdictWord{7, 11, 1810},\n\tdictWord{11, 11, 866},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t103,\n\t},\n\tdictWord{13, 11, 495},\n\tdictWord{17, 11, 67},\n\tdictWord{147, 11, 74},\n\tdictWord{134, 0, 1426},\n\tdictWord{139, 0, 60},\n\tdictWord{4, 10, 326},\n\tdictWord{135, 10, 1770},\n\tdictWord{7, 0, 1874},\n\tdictWord{9, 0, 641},\n\tdictWord{132, 10, 226},\n\tdictWord{6, 0, 644},\n\tdictWord{5, 10, 426},\n\tdictWord{8, 10, 30},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t2,\n\t},\n\tdictWord{11, 10, 549},\n\tdictWord{147, 10, 122},\n\tdictWord{5, 11, 428},\n\tdictWord{138, 11, 442},\n\tdictWord{135, 11, 1871},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1757,\n\t},\n\tdictWord{147, 10, 117},\n\tdictWord{135, 0, 937},\n\tdictWord{135, 0, 1652},\n\tdictWord{6, 0, 654},\n\tdictWord{134, 0, 1476},\n\tdictWord{133, 11, 99},\n\tdictWord{135, 0, 527},\n\tdictWord{132, 10, 345},\n\tdictWord{4, 10, 385},\n\tdictWord{4, 11, 397},\n\tdictWord{7, 10, 265},\n\tdictWord{135, 10, 587},\n\tdictWord{4, 0, 579},\n\tdictWord{5, 0, 226},\n\tdictWord{5, 0, 323},\n\tdictWord{135, 0, 960},\n\tdictWord{134, 0, 1486},\n\tdictWord{8, 11, 502},\n\tdictWord{144, 11, 9},\n\tdictWord{4, 10, 347},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t423,\n\t},\n\tdictWord{5, 10, 996},\n\tdictWord{135, 10, 1329},\n\tdictWord{7, 11, 727},\n\tdictWord{146, 11, 73},\n\tdictWord{4, 11, 485},\n\tdictWord{7, 11, 353},\n\tdictWord{7, 10, 1259},\n\tdictWord{7, 11, 1523},\n\tdictWord{9, 10, 125},\n\tdictWord{139, 10, 65},\n\tdictWord{6, 0, 325},\n\tdictWord{5, 10, 136},\n\tdictWord{6, 11, 366},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1384,\n\t},\n\tdictWord{7, 11, 1601},\n\tdictWord{136, 10, 644},\n\tdictWord{138, 11, 160},\n\tdictWord{6, 0, 1345},\n\tdictWord{137, 11, 282},\n\tdictWord{18, 0, 91},\n\tdictWord{147, 0, 70},\n\tdictWord{136, 0, 404},\n\tdictWord{4, 11, 157},\n\tdictWord{133, 11, 471},\n\tdictWord{133, 0, 973},\n\tdictWord{6, 0, 135},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1176,\n\t},\n\tdictWord{8, 11, 116},\n\tdictWord{11, 11, 551},\n\tdictWord{142, 11, 159},\n\tdictWord{4, 0, 549},\n\tdictWord{4, 10, 433},\n\tdictWord{133, 10, 719},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t976,\n\t},\n\tdictWord{5, 11, 160},\n\tdictWord{7, 11, 363},\n\tdictWord{7, 11, 589},\n\tdictWord{10, 11, 170},\n\tdictWord{141, 11, 55},\n\tdictWord{144, 0, 21},\n\tdictWord{\n\t\t144,\n\t\t0,\n\t\t51,\n\t},\n\tdictWord{135, 0, 314},\n\tdictWord{135, 10, 1363},\n\tdictWord{4, 11, 108},\n\tdictWord{7, 11, 405},\n\tdictWord{10, 11, 491},\n\tdictWord{139, 11, 498},\n\tdictWord{146, 0, 4},\n\tdictWord{4, 10, 555},\n\tdictWord{8, 10, 536},\n\tdictWord{10, 10, 288},\n\tdictWord{139, 10, 1005},\n\tdictWord{135, 11, 1005},\n\tdictWord{6, 0, 281},\n\tdictWord{7, 0, 6},\n\tdictWord{8, 0, 282},\n\tdictWord{8, 0, 480},\n\tdictWord{8, 0, 499},\n\tdictWord{9, 0, 198},\n\tdictWord{10, 0, 143},\n\tdictWord{10, 0, 169},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t211,\n\t},\n\tdictWord{10, 0, 417},\n\tdictWord{10, 0, 574},\n\tdictWord{11, 0, 147},\n\tdictWord{11, 0, 395},\n\tdictWord{12, 0, 75},\n\tdictWord{12, 0, 407},\n\tdictWord{12, 0, 608},\n\tdictWord{13, 0, 500},\n\tdictWord{142, 0, 251},\n\tdictWord{6, 0, 1093},\n\tdictWord{6, 0, 1405},\n\tdictWord{9, 10, 370},\n\tdictWord{138, 10, 90},\n\tdictWord{4, 11, 926},\n\tdictWord{133, 11, 983},\n\tdictWord{135, 0, 1776},\n\tdictWord{134, 0, 1528},\n\tdictWord{132, 0, 419},\n\tdictWord{132, 11, 538},\n\tdictWord{6, 11, 294},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1267,\n\t},\n\tdictWord{136, 11, 624},\n\tdictWord{135, 11, 1772},\n\tdictWord{138, 11, 301},\n\tdictWord{4, 10, 257},\n\tdictWord{135, 10, 2031},\n\tdictWord{4, 0, 138},\n\tdictWord{7, 0, 1012},\n\tdictWord{7, 0, 1280},\n\tdictWord{9, 0, 76},\n\tdictWord{135, 10, 1768},\n\tdictWord{132, 11, 757},\n\tdictWord{5, 0, 29},\n\tdictWord{140, 0, 638},\n\tdictWord{7, 11, 655},\n\tdictWord{135, 11, 1844},\n\tdictWord{7, 0, 1418},\n\tdictWord{6, 11, 257},\n\tdictWord{135, 11, 1522},\n\tdictWord{8, 11, 469},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t47,\n\t},\n\tdictWord{142, 11, 278},\n\tdictWord{6, 10, 83},\n\tdictWord{6, 10, 1733},\n\tdictWord{135, 10, 1389},\n\tdictWord{11, 11, 204},\n\tdictWord{11, 11, 243},\n\tdictWord{140, 11, 293},\n\tdictWord{135, 11, 1875},\n\tdictWord{6, 0, 1710},\n\tdictWord{135, 0, 2038},\n\tdictWord{137, 11, 299},\n\tdictWord{4, 0, 17},\n\tdictWord{5, 0, 23},\n\tdictWord{7, 0, 995},\n\tdictWord{11, 0, 383},\n\tdictWord{11, 0, 437},\n\tdictWord{12, 0, 460},\n\tdictWord{140, 0, 532},\n\tdictWord{133, 0, 862},\n\tdictWord{137, 10, 696},\n\tdictWord{6, 0, 592},\n\tdictWord{138, 0, 946},\n\tdictWord{138, 11, 599},\n\tdictWord{7, 10, 1718},\n\tdictWord{9, 10, 95},\n\tdictWord{9, 10, 274},\n\tdictWord{10, 10, 279},\n\tdictWord{10, 10, 317},\n\tdictWord{10, 10, 420},\n\tdictWord{11, 10, 303},\n\tdictWord{11, 10, 808},\n\tdictWord{12, 10, 134},\n\tdictWord{12, 10, 367},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t149,\n\t},\n\tdictWord{13, 10, 347},\n\tdictWord{14, 10, 349},\n\tdictWord{14, 10, 406},\n\tdictWord{18, 10, 22},\n\tdictWord{18, 10, 89},\n\tdictWord{18, 10, 122},\n\tdictWord{\n\t\t147,\n\t\t10,\n\t\t47,\n\t},\n\tdictWord{8, 0, 70},\n\tdictWord{12, 0, 171},\n\tdictWord{141, 0, 272},\n\tdictWord{133, 10, 26},\n\tdictWord{132, 10, 550},\n\tdictWord{137, 0, 812},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t233,\n\t},\n\tdictWord{139, 0, 76},\n\tdictWord{134, 0, 988},\n\tdictWord{134, 0, 442},\n\tdictWord{136, 10, 822},\n\tdictWord{7, 0, 896},\n\tdictWord{4, 10, 902},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t809,\n\t},\n\tdictWord{134, 10, 122},\n\tdictWord{5, 11, 150},\n\tdictWord{7, 11, 106},\n\tdictWord{8, 11, 603},\n\tdictWord{9, 11, 593},\n\tdictWord{9, 11, 634},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t44,\n\t},\n\tdictWord{10, 11, 173},\n\tdictWord{11, 11, 462},\n\tdictWord{11, 11, 515},\n\tdictWord{13, 11, 216},\n\tdictWord{13, 11, 288},\n\tdictWord{142, 11, 400},\n\tdictWord{136, 0, 483},\n\tdictWord{135, 10, 262},\n\tdictWord{6, 0, 1709},\n\tdictWord{133, 10, 620},\n\tdictWord{4, 10, 34},\n\tdictWord{5, 10, 574},\n\tdictWord{7, 10, 279},\n\tdictWord{7, 10, 1624},\n\tdictWord{136, 10, 601},\n\tdictWord{137, 10, 170},\n\tdictWord{147, 0, 119},\n\tdictWord{12, 11, 108},\n\tdictWord{141, 11, 291},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t69,\n\t},\n\tdictWord{12, 0, 105},\n\tdictWord{12, 0, 117},\n\tdictWord{13, 0, 213},\n\tdictWord{14, 0, 13},\n\tdictWord{14, 0, 62},\n\tdictWord{14, 0, 177},\n\tdictWord{14, 0, 421},\n\tdictWord{15, 0, 19},\n\tdictWord{146, 0, 141},\n\tdictWord{137, 0, 309},\n\tdictWord{11, 11, 278},\n\tdictWord{142, 11, 73},\n\tdictWord{7, 0, 608},\n\tdictWord{7, 0, 976},\n\tdictWord{9, 0, 146},\n\tdictWord{10, 0, 206},\n\tdictWord{10, 0, 596},\n\tdictWord{13, 0, 218},\n\tdictWord{142, 0, 153},\n\tdictWord{133, 10, 332},\n\tdictWord{6, 10, 261},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t182,\n\t},\n\tdictWord{139, 10, 943},\n\tdictWord{4, 11, 493},\n\tdictWord{144, 11, 55},\n\tdictWord{134, 10, 1721},\n\tdictWord{132, 0, 768},\n\tdictWord{4, 10, 933},\n\tdictWord{133, 10, 880},\n\tdictWord{7, 11, 555},\n\tdictWord{7, 11, 1316},\n\tdictWord{7, 11, 1412},\n\tdictWord{7, 11, 1839},\n\tdictWord{9, 11, 192},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t589,\n\t},\n\tdictWord{11, 11, 241},\n\tdictWord{11, 11, 676},\n\tdictWord{11, 11, 811},\n\tdictWord{11, 11, 891},\n\tdictWord{12, 11, 140},\n\tdictWord{12, 11, 346},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t479,\n\t},\n\tdictWord{13, 11, 30},\n\tdictWord{13, 11, 49},\n\tdictWord{13, 11, 381},\n\tdictWord{14, 11, 188},\n\tdictWord{15, 11, 150},\n\tdictWord{16, 11, 76},\n\tdictWord{18, 11, 30},\n\tdictWord{148, 11, 52},\n\tdictWord{4, 0, 518},\n\tdictWord{135, 0, 1136},\n\tdictWord{6, 11, 568},\n\tdictWord{7, 11, 112},\n\tdictWord{7, 11, 1804},\n\tdictWord{8, 11, 362},\n\tdictWord{8, 11, 410},\n\tdictWord{8, 11, 830},\n\tdictWord{9, 11, 514},\n\tdictWord{11, 11, 649},\n\tdictWord{142, 11, 157},\n\tdictWord{135, 11, 673},\n\tdictWord{8, 0, 689},\n\tdictWord{137, 0, 863},\n\tdictWord{4, 0, 18},\n\tdictWord{7, 0, 145},\n\tdictWord{7, 0, 444},\n\tdictWord{7, 0, 1278},\n\tdictWord{8, 0, 49},\n\tdictWord{8, 0, 400},\n\tdictWord{9, 0, 71},\n\tdictWord{9, 0, 250},\n\tdictWord{10, 0, 459},\n\tdictWord{12, 0, 160},\n\tdictWord{16, 0, 24},\n\tdictWord{132, 11, 625},\n\tdictWord{140, 0, 1020},\n\tdictWord{4, 0, 997},\n\tdictWord{6, 0, 1946},\n\tdictWord{6, 0, 1984},\n\tdictWord{134, 0, 1998},\n\tdictWord{6, 11, 16},\n\tdictWord{6, 11, 158},\n\tdictWord{7, 11, 43},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t129,\n\t},\n\tdictWord{7, 11, 181},\n\tdictWord{8, 11, 276},\n\tdictWord{8, 11, 377},\n\tdictWord{10, 11, 523},\n\tdictWord{11, 11, 816},\n\tdictWord{12, 11, 455},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t303,\n\t},\n\tdictWord{142, 11, 135},\n\tdictWord{133, 10, 812},\n\tdictWord{134, 0, 658},\n\tdictWord{4, 11, 1},\n\tdictWord{7, 11, 1143},\n\tdictWord{7, 11, 1463},\n\tdictWord{8, 11, 61},\n\tdictWord{9, 11, 207},\n\tdictWord{9, 11, 390},\n\tdictWord{9, 11, 467},\n\tdictWord{139, 11, 836},\n\tdictWord{150, 11, 26},\n\tdictWord{140, 0, 106},\n\tdictWord{6, 0, 1827},\n\tdictWord{10, 0, 931},\n\tdictWord{18, 0, 166},\n\tdictWord{20, 0, 114},\n\tdictWord{4, 10, 137},\n\tdictWord{7, 10, 1178},\n\tdictWord{7, 11, 1319},\n\tdictWord{135, 10, 1520},\n\tdictWord{133, 0, 1010},\n\tdictWord{4, 11, 723},\n\tdictWord{5, 11, 895},\n\tdictWord{7, 11, 1031},\n\tdictWord{8, 11, 199},\n\tdictWord{8, 11, 340},\n\tdictWord{9, 11, 153},\n\tdictWord{9, 11, 215},\n\tdictWord{10, 11, 21},\n\tdictWord{10, 11, 59},\n\tdictWord{10, 11, 80},\n\tdictWord{10, 11, 224},\n\tdictWord{11, 11, 229},\n\tdictWord{11, 11, 652},\n\tdictWord{12, 11, 192},\n\tdictWord{13, 11, 146},\n\tdictWord{142, 11, 91},\n\tdictWord{132, 11, 295},\n\tdictWord{6, 11, 619},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t898,\n\t},\n\tdictWord{7, 11, 1092},\n\tdictWord{8, 11, 485},\n\tdictWord{18, 11, 28},\n\tdictWord{147, 11, 116},\n\tdictWord{137, 11, 51},\n\tdictWord{6, 10, 1661},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1975,\n\t},\n\tdictWord{7, 10, 2009},\n\tdictWord{135, 10, 2011},\n\tdictWord{5, 11, 309},\n\tdictWord{140, 11, 211},\n\tdictWord{5, 0, 87},\n\tdictWord{7, 0, 313},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1103,\n\t},\n\tdictWord{10, 0, 208},\n\tdictWord{10, 0, 582},\n\tdictWord{11, 0, 389},\n\tdictWord{11, 0, 813},\n\tdictWord{12, 0, 385},\n\tdictWord{13, 0, 286},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t124,\n\t},\n\tdictWord{146, 0, 108},\n\tdictWord{5, 11, 125},\n\tdictWord{8, 11, 77},\n\tdictWord{138, 11, 15},\n\tdictWord{132, 0, 267},\n\tdictWord{133, 0, 703},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t155,\n\t},\n\tdictWord{133, 11, 439},\n\tdictWord{11, 11, 164},\n\tdictWord{140, 11, 76},\n\tdictWord{9, 0, 496},\n\tdictWord{5, 10, 89},\n\tdictWord{7, 10, 1915},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t185,\n\t},\n\tdictWord{9, 10, 235},\n\tdictWord{10, 10, 64},\n\tdictWord{10, 10, 270},\n\tdictWord{10, 10, 403},\n\tdictWord{10, 10, 469},\n\tdictWord{10, 10, 529},\n\tdictWord{10, 10, 590},\n\tdictWord{11, 10, 140},\n\tdictWord{11, 10, 860},\n\tdictWord{13, 10, 1},\n\tdictWord{13, 10, 422},\n\tdictWord{14, 10, 341},\n\tdictWord{14, 10, 364},\n\tdictWord{17, 10, 93},\n\tdictWord{18, 10, 113},\n\tdictWord{19, 10, 97},\n\tdictWord{147, 10, 113},\n\tdictWord{133, 10, 695},\n\tdictWord{135, 0, 1121},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t6,\n\t},\n\tdictWord{6, 10, 183},\n\tdictWord{7, 10, 680},\n\tdictWord{7, 10, 978},\n\tdictWord{7, 10, 1013},\n\tdictWord{7, 10, 1055},\n\tdictWord{12, 10, 230},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t172,\n\t},\n\tdictWord{146, 10, 29},\n\tdictWord{4, 11, 8},\n\tdictWord{7, 11, 1152},\n\tdictWord{7, 11, 1153},\n\tdictWord{7, 11, 1715},\n\tdictWord{9, 11, 374},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t478,\n\t},\n\tdictWord{139, 11, 648},\n\tdictWord{135, 11, 1099},\n\tdictWord{6, 10, 29},\n\tdictWord{139, 10, 63},\n\tdictWord{4, 0, 561},\n\tdictWord{10, 0, 249},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t209,\n\t},\n\tdictWord{132, 0, 760},\n\tdictWord{7, 11, 799},\n\tdictWord{138, 11, 511},\n\tdictWord{136, 11, 87},\n\tdictWord{9, 0, 154},\n\tdictWord{140, 0, 485},\n\tdictWord{136, 0, 255},\n\tdictWord{132, 0, 323},\n\tdictWord{140, 0, 419},\n\tdictWord{132, 10, 311},\n\tdictWord{134, 10, 1740},\n\tdictWord{4, 0, 368},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t641,\n\t},\n\tdictWord{7, 10, 170},\n\tdictWord{8, 10, 90},\n\tdictWord{8, 10, 177},\n\tdictWord{8, 10, 415},\n\tdictWord{11, 10, 714},\n\tdictWord{142, 10, 281},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t69,\n\t},\n\tdictWord{5, 11, 122},\n\tdictWord{9, 11, 656},\n\tdictWord{138, 11, 464},\n\tdictWord{5, 11, 849},\n\tdictWord{134, 11, 1633},\n\tdictWord{8, 0, 522},\n\tdictWord{\n\t\t142,\n\t\t0,\n\t\t328,\n\t},\n\tdictWord{11, 10, 91},\n\tdictWord{13, 10, 129},\n\tdictWord{15, 10, 101},\n\tdictWord{145, 10, 125},\n\tdictWord{7, 0, 562},\n\tdictWord{8, 0, 551},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t494,\n\t},\n\tdictWord{6, 10, 74},\n\tdictWord{7, 10, 44},\n\tdictWord{11, 11, 499},\n\tdictWord{12, 10, 17},\n\tdictWord{15, 10, 5},\n\tdictWord{148, 10, 11},\n\tdictWord{4, 10, 276},\n\tdictWord{133, 10, 296},\n\tdictWord{9, 0, 92},\n\tdictWord{147, 0, 91},\n\tdictWord{4, 10, 7},\n\tdictWord{5, 10, 90},\n\tdictWord{5, 10, 158},\n\tdictWord{6, 10, 542},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t221,\n\t},\n\tdictWord{7, 10, 1574},\n\tdictWord{9, 10, 490},\n\tdictWord{10, 10, 540},\n\tdictWord{11, 10, 443},\n\tdictWord{139, 10, 757},\n\tdictWord{6, 0, 525},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1976,\n\t},\n\tdictWord{8, 0, 806},\n\tdictWord{9, 0, 876},\n\tdictWord{140, 0, 284},\n\tdictWord{5, 11, 859},\n\tdictWord{7, 10, 588},\n\tdictWord{7, 11, 1160},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t107,\n\t},\n\tdictWord{9, 10, 175},\n\tdictWord{9, 11, 291},\n\tdictWord{9, 11, 439},\n\tdictWord{10, 10, 530},\n\tdictWord{10, 11, 663},\n\tdictWord{11, 11, 609},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t197,\n\t},\n\tdictWord{7, 11, 168},\n\tdictWord{13, 11, 196},\n\tdictWord{141, 11, 237},\n\tdictWord{139, 0, 958},\n\tdictWord{133, 0, 594},\n\tdictWord{135, 10, 580},\n\tdictWord{7, 10, 88},\n\tdictWord{136, 10, 627},\n\tdictWord{6, 0, 479},\n\tdictWord{6, 0, 562},\n\tdictWord{7, 0, 1060},\n\tdictWord{13, 0, 6},\n\tdictWord{5, 10, 872},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t57,\n\t},\n\tdictWord{7, 10, 471},\n\tdictWord{9, 10, 447},\n\tdictWord{137, 10, 454},\n\tdictWord{136, 11, 413},\n\tdictWord{145, 11, 19},\n\tdictWord{4, 11, 117},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t372,\n\t},\n\tdictWord{7, 11, 1905},\n\tdictWord{142, 11, 323},\n\tdictWord{4, 11, 722},\n\tdictWord{139, 11, 471},\n\tdictWord{17, 0, 61},\n\tdictWord{5, 10, 31},\n\tdictWord{134, 10, 614},\n\tdictWord{8, 10, 330},\n\tdictWord{140, 10, 477},\n\tdictWord{7, 10, 1200},\n\tdictWord{138, 10, 460},\n\tdictWord{6, 10, 424},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1866,\n\t},\n\tdictWord{6, 0, 1641},\n\tdictWord{136, 0, 820},\n\tdictWord{6, 0, 1556},\n\tdictWord{134, 0, 1618},\n\tdictWord{9, 11, 5},\n\tdictWord{12, 11, 216},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t294,\n\t},\n\tdictWord{12, 11, 298},\n\tdictWord{12, 11, 400},\n\tdictWord{12, 11, 518},\n\tdictWord{13, 11, 229},\n\tdictWord{143, 11, 139},\n\tdictWord{15, 11, 155},\n\tdictWord{144, 11, 79},\n\tdictWord{4, 0, 302},\n\tdictWord{135, 0, 1766},\n\tdictWord{5, 10, 13},\n\tdictWord{134, 10, 142},\n\tdictWord{6, 0, 148},\n\tdictWord{7, 0, 1313},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t116,\n\t},\n\tdictWord{8, 10, 322},\n\tdictWord{8, 10, 755},\n\tdictWord{9, 10, 548},\n\tdictWord{10, 10, 714},\n\tdictWord{11, 10, 884},\n\tdictWord{141, 10, 324},\n\tdictWord{137, 0, 676},\n\tdictWord{9, 11, 88},\n\tdictWord{139, 11, 270},\n\tdictWord{5, 11, 12},\n\tdictWord{7, 11, 375},\n\tdictWord{137, 11, 438},\n\tdictWord{134, 0, 1674},\n\tdictWord{7, 10, 1472},\n\tdictWord{135, 10, 1554},\n\tdictWord{11, 0, 178},\n\tdictWord{7, 10, 1071},\n\tdictWord{7, 10, 1541},\n\tdictWord{7, 10, 1767},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1806,\n\t},\n\tdictWord{11, 10, 162},\n\tdictWord{11, 10, 242},\n\tdictWord{12, 10, 605},\n\tdictWord{15, 10, 26},\n\tdictWord{144, 10, 44},\n\tdictWord{6, 0, 389},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t149,\n\t},\n\tdictWord{9, 0, 142},\n\tdictWord{138, 0, 94},\n\tdictWord{140, 11, 71},\n\tdictWord{145, 10, 115},\n\tdictWord{6, 0, 8},\n\tdictWord{7, 0, 1881},\n\tdictWord{8, 0, 91},\n\tdictWord{11, 11, 966},\n\tdictWord{12, 11, 287},\n\tdictWord{13, 11, 342},\n\tdictWord{13, 11, 402},\n\tdictWord{15, 11, 110},\n\tdictWord{143, 11, 163},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t258,\n\t},\n\tdictWord{136, 11, 639},\n\tdictWord{6, 11, 22},\n\tdictWord{7, 11, 903},\n\tdictWord{138, 11, 577},\n\tdictWord{133, 11, 681},\n\tdictWord{135, 10, 1111},\n\tdictWord{135, 11, 1286},\n\tdictWord{9, 0, 112},\n\tdictWord{8, 10, 1},\n\tdictWord{138, 10, 326},\n\tdictWord{5, 10, 488},\n\tdictWord{6, 10, 527},\n\tdictWord{7, 10, 489},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1636,\n\t},\n\tdictWord{8, 10, 121},\n\tdictWord{8, 10, 144},\n\tdictWord{8, 10, 359},\n\tdictWord{9, 10, 193},\n\tdictWord{9, 10, 241},\n\tdictWord{9, 10, 336},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t882,\n\t},\n\tdictWord{11, 10, 266},\n\tdictWord{11, 10, 372},\n\tdictWord{11, 10, 944},\n\tdictWord{12, 10, 401},\n\tdictWord{140, 10, 641},\n\tdictWord{4, 11, 664},\n\tdictWord{133, 11, 804},\n\tdictWord{6, 0, 747},\n\tdictWord{134, 0, 1015},\n\tdictWord{135, 0, 1746},\n\tdictWord{9, 10, 31},\n\tdictWord{10, 10, 244},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t699,\n\t},\n\tdictWord{12, 10, 149},\n\tdictWord{141, 10, 497},\n\tdictWord{133, 10, 377},\n\tdictWord{135, 0, 24},\n\tdictWord{6, 0, 1352},\n\tdictWord{5, 11, 32},\n\tdictWord{\n\t\t145,\n\t\t10,\n\t\t101,\n\t},\n\tdictWord{7, 0, 1530},\n\tdictWord{10, 0, 158},\n\tdictWord{13, 0, 13},\n\tdictWord{13, 0, 137},\n\tdictWord{13, 0, 258},\n\tdictWord{14, 0, 111},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t225,\n\t},\n\tdictWord{14, 0, 253},\n\tdictWord{14, 0, 304},\n\tdictWord{14, 0, 339},\n\tdictWord{14, 0, 417},\n\tdictWord{146, 0, 33},\n\tdictWord{4, 0, 503},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1661,\n\t},\n\tdictWord{5, 0, 130},\n\tdictWord{6, 0, 845},\n\tdictWord{7, 0, 1314},\n\tdictWord{9, 0, 610},\n\tdictWord{10, 0, 718},\n\tdictWord{11, 0, 601},\n\tdictWord{11, 0, 819},\n\tdictWord{11, 0, 946},\n\tdictWord{140, 0, 536},\n\tdictWord{10, 0, 149},\n\tdictWord{11, 0, 280},\n\tdictWord{142, 0, 336},\n\tdictWord{134, 0, 1401},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1946,\n\t},\n\tdictWord{8, 0, 663},\n\tdictWord{144, 0, 8},\n\tdictWord{134, 0, 1607},\n\tdictWord{135, 10, 2023},\n\tdictWord{4, 11, 289},\n\tdictWord{7, 11, 629},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1698,\n\t},\n\tdictWord{7, 11, 1711},\n\tdictWord{140, 11, 215},\n\tdictWord{6, 11, 450},\n\tdictWord{136, 11, 109},\n\tdictWord{10, 0, 882},\n\tdictWord{10, 0, 883},\n\tdictWord{10, 0, 914},\n\tdictWord{138, 0, 928},\n\tdictWord{133, 10, 843},\n\tdictWord{136, 11, 705},\n\tdictWord{132, 10, 554},\n\tdictWord{133, 10, 536},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t417,\n\t},\n\tdictWord{9, 10, 79},\n\tdictWord{11, 10, 625},\n\tdictWord{145, 10, 7},\n\tdictWord{7, 11, 1238},\n\tdictWord{142, 11, 37},\n\tdictWord{4, 0, 392},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1597,\n\t},\n\tdictWord{5, 0, 433},\n\tdictWord{9, 0, 633},\n\tdictWord{11, 0, 629},\n\tdictWord{132, 10, 424},\n\tdictWord{7, 10, 336},\n\tdictWord{136, 10, 785},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t355,\n\t},\n\tdictWord{6, 0, 234},\n\tdictWord{7, 0, 769},\n\tdictWord{9, 0, 18},\n\tdictWord{138, 0, 358},\n\tdictWord{4, 10, 896},\n\tdictWord{134, 10, 1777},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t323,\n\t},\n\tdictWord{7, 0, 140},\n\tdictWord{7, 0, 1950},\n\tdictWord{8, 0, 680},\n\tdictWord{11, 0, 817},\n\tdictWord{147, 0, 88},\n\tdictWord{7, 0, 1222},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t386,\n\t},\n\tdictWord{139, 11, 908},\n\tdictWord{11, 0, 249},\n\tdictWord{12, 0, 313},\n\tdictWord{16, 0, 66},\n\tdictWord{145, 0, 26},\n\tdictWord{134, 0, 5},\n\tdictWord{7, 10, 750},\n\tdictWord{9, 10, 223},\n\tdictWord{11, 10, 27},\n\tdictWord{11, 10, 466},\n\tdictWord{12, 10, 624},\n\tdictWord{14, 10, 265},\n\tdictWord{146, 10, 61},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t26,\n\t},\n\tdictWord{134, 0, 1216},\n\tdictWord{5, 0, 963},\n\tdictWord{134, 0, 1773},\n\tdictWord{4, 11, 414},\n\tdictWord{5, 11, 467},\n\tdictWord{9, 11, 654},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t451,\n\t},\n\tdictWord{12, 11, 59},\n\tdictWord{141, 11, 375},\n\tdictWord{135, 11, 17},\n\tdictWord{4, 10, 603},\n\tdictWord{133, 10, 661},\n\tdictWord{4, 10, 11},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t128,\n\t},\n\tdictWord{7, 10, 231},\n\tdictWord{7, 10, 1533},\n\tdictWord{138, 10, 725},\n\tdictWord{135, 11, 955},\n\tdictWord{7, 0, 180},\n\tdictWord{8, 0, 509},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t792,\n\t},\n\tdictWord{132, 10, 476},\n\tdictWord{132, 0, 1002},\n\tdictWord{133, 11, 538},\n\tdictWord{135, 10, 1807},\n\tdictWord{132, 0, 931},\n\tdictWord{7, 0, 943},\n\tdictWord{11, 0, 614},\n\tdictWord{140, 0, 747},\n\tdictWord{135, 0, 1837},\n\tdictWord{9, 10, 20},\n\tdictWord{10, 10, 324},\n\tdictWord{10, 10, 807},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t488,\n\t},\n\tdictWord{134, 0, 641},\n\tdictWord{6, 11, 280},\n\tdictWord{10, 11, 502},\n\tdictWord{11, 11, 344},\n\tdictWord{140, 11, 38},\n\tdictWord{5, 11, 45},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1161,\n\t},\n\tdictWord{11, 11, 448},\n\tdictWord{11, 11, 880},\n\tdictWord{13, 11, 139},\n\tdictWord{13, 11, 407},\n\tdictWord{15, 11, 16},\n\tdictWord{17, 11, 95},\n\tdictWord{\n\t\t18,\n\t\t11,\n\t\t66,\n\t},\n\tdictWord{18, 11, 88},\n\tdictWord{18, 11, 123},\n\tdictWord{149, 11, 7},\n\tdictWord{9, 0, 280},\n\tdictWord{138, 0, 134},\n\tdictWord{22, 0, 22},\n\tdictWord{23, 0, 5},\n\tdictWord{151, 0, 29},\n\tdictWord{136, 11, 777},\n\tdictWord{4, 0, 90},\n\tdictWord{5, 0, 545},\n\tdictWord{7, 0, 754},\n\tdictWord{9, 0, 186},\n\tdictWord{10, 0, 72},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t782,\n\t},\n\tdictWord{11, 0, 577},\n\tdictWord{11, 0, 610},\n\tdictWord{11, 0, 960},\n\tdictWord{12, 0, 354},\n\tdictWord{12, 0, 362},\n\tdictWord{12, 0, 595},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t410,\n\t},\n\tdictWord{135, 11, 521},\n\tdictWord{135, 11, 1778},\n\tdictWord{5, 10, 112},\n\tdictWord{6, 10, 103},\n\tdictWord{134, 10, 150},\n\tdictWord{138, 10, 356},\n\tdictWord{132, 0, 742},\n\tdictWord{7, 0, 151},\n\tdictWord{9, 0, 329},\n\tdictWord{139, 0, 254},\n\tdictWord{8, 0, 853},\n\tdictWord{8, 0, 881},\n\tdictWord{8, 0, 911},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t912,\n\t},\n\tdictWord{10, 0, 872},\n\tdictWord{12, 0, 741},\n\tdictWord{12, 0, 742},\n\tdictWord{152, 0, 18},\n\tdictWord{4, 11, 573},\n\tdictWord{136, 11, 655},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t921,\n\t},\n\tdictWord{134, 0, 934},\n\tdictWord{9, 0, 187},\n\tdictWord{10, 0, 36},\n\tdictWord{11, 0, 1016},\n\tdictWord{17, 0, 44},\n\tdictWord{146, 0, 64},\n\tdictWord{7, 0, 833},\n\tdictWord{136, 0, 517},\n\tdictWord{4, 0, 506},\n\tdictWord{5, 0, 295},\n\tdictWord{135, 0, 1680},\n\tdictWord{4, 10, 708},\n\tdictWord{8, 10, 15},\n\tdictWord{9, 10, 50},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t386,\n\t},\n\tdictWord{11, 10, 18},\n\tdictWord{11, 10, 529},\n\tdictWord{140, 10, 228},\n\tdictWord{7, 0, 251},\n\tdictWord{7, 0, 1701},\n\tdictWord{8, 0, 436},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t563,\n\t},\n\tdictWord{7, 10, 592},\n\tdictWord{7, 10, 637},\n\tdictWord{7, 10, 770},\n\tdictWord{8, 10, 463},\n\tdictWord{9, 10, 60},\n\tdictWord{9, 10, 335},\n\tdictWord{9, 10, 904},\n\tdictWord{10, 10, 73},\n\tdictWord{11, 10, 434},\n\tdictWord{12, 10, 585},\n\tdictWord{13, 10, 331},\n\tdictWord{18, 10, 110},\n\tdictWord{148, 10, 60},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t502,\n\t},\n\tdictWord{136, 0, 584},\n\tdictWord{6, 10, 347},\n\tdictWord{138, 10, 161},\n\tdictWord{7, 0, 987},\n\tdictWord{9, 0, 688},\n\tdictWord{10, 0, 522},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t788,\n\t},\n\tdictWord{12, 0, 137},\n\tdictWord{12, 0, 566},\n\tdictWord{14, 0, 9},\n\tdictWord{14, 0, 24},\n\tdictWord{14, 0, 64},\n\tdictWord{7, 11, 899},\n\tdictWord{142, 11, 325},\n\tdictWord{4, 0, 214},\n\tdictWord{5, 0, 500},\n\tdictWord{5, 10, 102},\n\tdictWord{6, 10, 284},\n\tdictWord{7, 10, 1079},\n\tdictWord{7, 10, 1423},\n\tdictWord{7, 10, 1702},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t470,\n\t},\n\tdictWord{9, 10, 554},\n\tdictWord{9, 10, 723},\n\tdictWord{139, 10, 333},\n\tdictWord{7, 10, 246},\n\tdictWord{135, 10, 840},\n\tdictWord{6, 10, 10},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t571,\n\t},\n\tdictWord{9, 10, 739},\n\tdictWord{143, 10, 91},\n\tdictWord{133, 10, 626},\n\tdictWord{146, 0, 195},\n\tdictWord{134, 0, 1775},\n\tdictWord{7, 0, 389},\n\tdictWord{7, 0, 700},\n\tdictWord{7, 0, 940},\n\tdictWord{8, 0, 514},\n\tdictWord{9, 0, 116},\n\tdictWord{9, 0, 535},\n\tdictWord{10, 0, 118},\n\tdictWord{11, 0, 107},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t148,\n\t},\n\tdictWord{11, 0, 922},\n\tdictWord{12, 0, 254},\n\tdictWord{12, 0, 421},\n\tdictWord{142, 0, 238},\n\tdictWord{5, 10, 18},\n\tdictWord{6, 10, 526},\n\tdictWord{13, 10, 24},\n\tdictWord{13, 10, 110},\n\tdictWord{19, 10, 5},\n\tdictWord{147, 10, 44},\n\tdictWord{132, 0, 743},\n\tdictWord{11, 0, 292},\n\tdictWord{4, 10, 309},\n\tdictWord{5, 10, 462},\n\tdictWord{7, 10, 970},\n\tdictWord{135, 10, 1097},\n\tdictWord{22, 10, 30},\n\tdictWord{150, 10, 33},\n\tdictWord{139, 11, 338},\n\tdictWord{135, 11, 1598},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1283,\n\t},\n\tdictWord{9, 0, 227},\n\tdictWord{11, 0, 325},\n\tdictWord{11, 0, 408},\n\tdictWord{14, 0, 180},\n\tdictWord{146, 0, 47},\n\tdictWord{4, 0, 953},\n\tdictWord{6, 0, 1805},\n\tdictWord{6, 0, 1814},\n\tdictWord{6, 0, 1862},\n\tdictWord{140, 0, 774},\n\tdictWord{6, 11, 611},\n\tdictWord{135, 11, 1733},\n\tdictWord{135, 11, 1464},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t81,\n\t},\n\tdictWord{7, 0, 146},\n\tdictWord{7, 0, 1342},\n\tdictWord{8, 0, 53},\n\tdictWord{8, 0, 561},\n\tdictWord{8, 0, 694},\n\tdictWord{8, 0, 754},\n\tdictWord{9, 0, 115},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t179,\n\t},\n\tdictWord{9, 0, 894},\n\tdictWord{10, 0, 462},\n\tdictWord{10, 0, 813},\n\tdictWord{11, 0, 230},\n\tdictWord{11, 0, 657},\n\tdictWord{11, 0, 699},\n\tdictWord{11, 0, 748},\n\tdictWord{12, 0, 119},\n\tdictWord{12, 0, 200},\n\tdictWord{12, 0, 283},\n\tdictWord{142, 0, 273},\n\tdictWord{5, 0, 408},\n\tdictWord{6, 0, 789},\n\tdictWord{6, 0, 877},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1253,\n\t},\n\tdictWord{6, 0, 1413},\n\tdictWord{137, 0, 747},\n\tdictWord{134, 10, 1704},\n\tdictWord{135, 11, 663},\n\tdictWord{6, 0, 1910},\n\tdictWord{6, 0, 1915},\n\tdictWord{6, 0, 1923},\n\tdictWord{9, 0, 913},\n\tdictWord{9, 0, 928},\n\tdictWord{9, 0, 950},\n\tdictWord{9, 0, 954},\n\tdictWord{9, 0, 978},\n\tdictWord{9, 0, 993},\n\tdictWord{12, 0, 812},\n\tdictWord{12, 0, 819},\n\tdictWord{12, 0, 831},\n\tdictWord{12, 0, 833},\n\tdictWord{12, 0, 838},\n\tdictWord{12, 0, 909},\n\tdictWord{12, 0, 928},\n\tdictWord{12, 0, 931},\n\tdictWord{12, 0, 950},\n\tdictWord{15, 0, 186},\n\tdictWord{15, 0, 187},\n\tdictWord{15, 0, 195},\n\tdictWord{15, 0, 196},\n\tdictWord{15, 0, 209},\n\tdictWord{15, 0, 215},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t236,\n\t},\n\tdictWord{15, 0, 241},\n\tdictWord{15, 0, 249},\n\tdictWord{15, 0, 253},\n\tdictWord{18, 0, 180},\n\tdictWord{18, 0, 221},\n\tdictWord{18, 0, 224},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t227,\n\t},\n\tdictWord{18, 0, 229},\n\tdictWord{149, 0, 60},\n\tdictWord{7, 0, 1826},\n\tdictWord{135, 0, 1938},\n\tdictWord{11, 0, 490},\n\tdictWord{18, 0, 143},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t86,\n\t},\n\tdictWord{7, 10, 743},\n\tdictWord{9, 10, 85},\n\tdictWord{10, 10, 281},\n\tdictWord{10, 10, 432},\n\tdictWord{12, 10, 251},\n\tdictWord{13, 10, 118},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t378,\n\t},\n\tdictWord{5, 10, 524},\n\tdictWord{133, 10, 744},\n\tdictWord{141, 11, 442},\n\tdictWord{10, 10, 107},\n\tdictWord{140, 10, 436},\n\tdictWord{135, 11, 503},\n\tdictWord{134, 0, 1162},\n\tdictWord{132, 10, 927},\n\tdictWord{7, 0, 30},\n\tdictWord{8, 0, 86},\n\tdictWord{8, 0, 315},\n\tdictWord{8, 0, 700},\n\tdictWord{9, 0, 576},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t858,\n\t},\n\tdictWord{10, 0, 414},\n\tdictWord{11, 0, 310},\n\tdictWord{11, 0, 888},\n\tdictWord{11, 0, 904},\n\tdictWord{12, 0, 361},\n\tdictWord{13, 0, 248},\n\tdictWord{13, 0, 371},\n\tdictWord{14, 0, 142},\n\tdictWord{12, 10, 670},\n\tdictWord{146, 10, 94},\n\tdictWord{134, 0, 721},\n\tdictWord{4, 11, 113},\n\tdictWord{5, 11, 163},\n\tdictWord{5, 11, 735},\n\tdictWord{7, 11, 1009},\n\tdictWord{7, 10, 1149},\n\tdictWord{9, 11, 9},\n\tdictWord{9, 10, 156},\n\tdictWord{9, 11, 771},\n\tdictWord{12, 11, 90},\n\tdictWord{13, 11, 138},\n\tdictWord{13, 11, 410},\n\tdictWord{143, 11, 128},\n\tdictWord{138, 0, 839},\n\tdictWord{133, 10, 778},\n\tdictWord{137, 0, 617},\n\tdictWord{133, 10, 502},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t196,\n\t},\n\tdictWord{10, 10, 283},\n\tdictWord{139, 10, 406},\n\tdictWord{6, 0, 428},\n\tdictWord{7, 0, 524},\n\tdictWord{8, 0, 169},\n\tdictWord{8, 0, 234},\n\tdictWord{9, 0, 480},\n\tdictWord{138, 0, 646},\n\tdictWord{133, 10, 855},\n\tdictWord{134, 0, 1648},\n\tdictWord{7, 0, 1205},\n\tdictWord{138, 0, 637},\n\tdictWord{7, 0, 1596},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t935,\n\t},\n\tdictWord{133, 11, 823},\n\tdictWord{5, 11, 269},\n\tdictWord{7, 11, 434},\n\tdictWord{7, 11, 891},\n\tdictWord{8, 11, 339},\n\tdictWord{9, 11, 702},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t594,\n\t},\n\tdictWord{11, 11, 718},\n\tdictWord{145, 11, 100},\n\tdictWord{7, 11, 878},\n\tdictWord{9, 11, 485},\n\tdictWord{141, 11, 264},\n\tdictWord{4, 0, 266},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t4,\n\t},\n\tdictWord{9, 0, 39},\n\tdictWord{10, 0, 166},\n\tdictWord{11, 0, 918},\n\tdictWord{12, 0, 635},\n\tdictWord{20, 0, 10},\n\tdictWord{22, 0, 27},\n\tdictWord{22, 0, 43},\n\tdictWord{\n\t\t22,\n\t\t0,\n\t\t52,\n\t},\n\tdictWord{134, 11, 1713},\n\tdictWord{7, 10, 1400},\n\tdictWord{9, 10, 446},\n\tdictWord{138, 10, 45},\n\tdictWord{135, 11, 900},\n\tdictWord{132, 0, 862},\n\tdictWord{134, 0, 1554},\n\tdictWord{135, 11, 1033},\n\tdictWord{19, 0, 16},\n\tdictWord{147, 11, 16},\n\tdictWord{135, 11, 1208},\n\tdictWord{7, 0, 157},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t279,\n\t},\n\tdictWord{6, 0, 604},\n\tdictWord{136, 0, 391},\n\tdictWord{13, 10, 455},\n\tdictWord{15, 10, 99},\n\tdictWord{15, 10, 129},\n\tdictWord{144, 10, 68},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t172,\n\t},\n\tdictWord{7, 0, 945},\n\tdictWord{11, 0, 713},\n\tdictWord{139, 0, 744},\n\tdictWord{4, 0, 973},\n\tdictWord{10, 0, 877},\n\tdictWord{10, 0, 937},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t938,\n\t},\n\tdictWord{140, 0, 711},\n\tdictWord{139, 0, 1022},\n\tdictWord{132, 10, 568},\n\tdictWord{142, 11, 143},\n\tdictWord{4, 0, 567},\n\tdictWord{9, 0, 859},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t732,\n\t},\n\tdictWord{7, 0, 1846},\n\tdictWord{136, 0, 628},\n\tdictWord{136, 10, 733},\n\tdictWord{133, 0, 762},\n\tdictWord{4, 10, 428},\n\tdictWord{135, 10, 1789},\n\tdictWord{10, 0, 784},\n\tdictWord{13, 0, 191},\n\tdictWord{7, 10, 2015},\n\tdictWord{140, 10, 665},\n\tdictWord{133, 0, 298},\n\tdictWord{7, 0, 633},\n\tdictWord{7, 0, 905},\n\tdictWord{7, 0, 909},\n\tdictWord{7, 0, 1538},\n\tdictWord{9, 0, 767},\n\tdictWord{140, 0, 636},\n\tdictWord{138, 10, 806},\n\tdictWord{132, 0, 795},\n\tdictWord{139, 0, 301},\n\tdictWord{135, 0, 1970},\n\tdictWord{5, 11, 625},\n\tdictWord{135, 11, 1617},\n\tdictWord{135, 11, 275},\n\tdictWord{7, 11, 37},\n\tdictWord{8, 11, 425},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t693,\n\t},\n\tdictWord{9, 11, 720},\n\tdictWord{10, 11, 380},\n\tdictWord{10, 11, 638},\n\tdictWord{11, 11, 273},\n\tdictWord{11, 11, 307},\n\tdictWord{11, 11, 473},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t61,\n\t},\n\tdictWord{143, 11, 43},\n\tdictWord{135, 11, 198},\n\tdictWord{134, 0, 1236},\n\tdictWord{7, 0, 369},\n\tdictWord{12, 0, 644},\n\tdictWord{12, 0, 645},\n\tdictWord{144, 0, 90},\n\tdictWord{19, 0, 15},\n\tdictWord{149, 0, 27},\n\tdictWord{6, 0, 71},\n\tdictWord{7, 0, 845},\n\tdictWord{8, 0, 160},\n\tdictWord{9, 0, 318},\n\tdictWord{6, 10, 1623},\n\tdictWord{134, 10, 1681},\n\tdictWord{134, 0, 1447},\n\tdictWord{134, 0, 1255},\n\tdictWord{138, 0, 735},\n\tdictWord{8, 0, 76},\n\tdictWord{132, 11, 168},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1748,\n\t},\n\tdictWord{8, 10, 715},\n\tdictWord{9, 10, 802},\n\tdictWord{10, 10, 46},\n\tdictWord{10, 10, 819},\n\tdictWord{13, 10, 308},\n\tdictWord{14, 10, 351},\n\tdictWord{14, 10, 363},\n\tdictWord{146, 10, 67},\n\tdictWord{135, 11, 91},\n\tdictWord{6, 0, 474},\n\tdictWord{4, 10, 63},\n\tdictWord{133, 10, 347},\n\tdictWord{133, 10, 749},\n\tdictWord{138, 0, 841},\n\tdictWord{133, 10, 366},\n\tdictWord{6, 0, 836},\n\tdictWord{132, 11, 225},\n\tdictWord{135, 0, 1622},\n\tdictWord{135, 10, 89},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t735,\n\t},\n\tdictWord{134, 0, 1601},\n\tdictWord{138, 11, 145},\n\tdictWord{6, 0, 1390},\n\tdictWord{137, 0, 804},\n\tdictWord{142, 0, 394},\n\tdictWord{6, 11, 15},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t70,\n\t},\n\tdictWord{10, 11, 240},\n\tdictWord{147, 11, 93},\n\tdictWord{6, 0, 96},\n\tdictWord{135, 0, 1426},\n\tdictWord{4, 0, 651},\n\tdictWord{133, 0, 289},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t956,\n\t},\n\tdictWord{7, 10, 977},\n\tdictWord{7, 11, 1157},\n\tdictWord{7, 11, 1506},\n\tdictWord{7, 11, 1606},\n\tdictWord{7, 11, 1615},\n\tdictWord{7, 11, 1619},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1736,\n\t},\n\tdictWord{7, 11, 1775},\n\tdictWord{8, 11, 590},\n\tdictWord{9, 11, 324},\n\tdictWord{9, 11, 736},\n\tdictWord{9, 11, 774},\n\tdictWord{9, 11, 776},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t784,\n\t},\n\tdictWord{10, 11, 567},\n\tdictWord{10, 11, 708},\n\tdictWord{11, 11, 518},\n\tdictWord{11, 11, 613},\n\tdictWord{11, 11, 695},\n\tdictWord{11, 11, 716},\n\tdictWord{11, 11, 739},\n\tdictWord{11, 11, 770},\n\tdictWord{11, 11, 771},\n\tdictWord{11, 11, 848},\n\tdictWord{11, 11, 857},\n\tdictWord{11, 11, 931},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t947,\n\t},\n\tdictWord{12, 11, 326},\n\tdictWord{12, 11, 387},\n\tdictWord{12, 11, 484},\n\tdictWord{12, 11, 528},\n\tdictWord{12, 11, 552},\n\tdictWord{12, 11, 613},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t189,\n\t},\n\tdictWord{13, 11, 256},\n\tdictWord{13, 11, 340},\n\tdictWord{13, 11, 432},\n\tdictWord{13, 11, 436},\n\tdictWord{13, 11, 440},\n\tdictWord{13, 11, 454},\n\tdictWord{14, 11, 174},\n\tdictWord{14, 11, 220},\n\tdictWord{14, 11, 284},\n\tdictWord{14, 11, 390},\n\tdictWord{145, 11, 121},\n\tdictWord{7, 0, 688},\n\tdictWord{8, 0, 35},\n\tdictWord{9, 0, 511},\n\tdictWord{10, 0, 767},\n\tdictWord{147, 0, 118},\n\tdictWord{134, 0, 667},\n\tdictWord{4, 0, 513},\n\tdictWord{5, 10, 824},\n\tdictWord{133, 10, 941},\n\tdictWord{7, 10, 440},\n\tdictWord{8, 10, 230},\n\tdictWord{139, 10, 106},\n\tdictWord{134, 0, 2034},\n\tdictWord{135, 11, 1399},\n\tdictWord{143, 11, 66},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1529,\n\t},\n\tdictWord{4, 11, 145},\n\tdictWord{6, 11, 176},\n\tdictWord{7, 11, 395},\n\tdictWord{9, 11, 562},\n\tdictWord{144, 11, 28},\n\tdictWord{132, 11, 501},\n\tdictWord{132, 0, 704},\n\tdictWord{134, 0, 1524},\n\tdictWord{7, 0, 1078},\n\tdictWord{134, 11, 464},\n\tdictWord{6, 11, 509},\n\tdictWord{10, 11, 82},\n\tdictWord{20, 11, 91},\n\tdictWord{151, 11, 13},\n\tdictWord{4, 0, 720},\n\tdictWord{133, 0, 306},\n\tdictWord{133, 0, 431},\n\tdictWord{7, 0, 1196},\n\tdictWord{4, 10, 914},\n\tdictWord{5, 10, 800},\n\tdictWord{133, 10, 852},\n\tdictWord{135, 11, 1189},\n\tdictWord{10, 0, 54},\n\tdictWord{141, 10, 115},\n\tdictWord{7, 10, 564},\n\tdictWord{142, 10, 168},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t464,\n\t},\n\tdictWord{6, 0, 236},\n\tdictWord{7, 0, 696},\n\tdictWord{7, 0, 914},\n\tdictWord{7, 0, 1108},\n\tdictWord{7, 0, 1448},\n\tdictWord{9, 0, 15},\n\tdictWord{9, 0, 564},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t14,\n\t},\n\tdictWord{12, 0, 565},\n\tdictWord{13, 0, 449},\n\tdictWord{14, 0, 53},\n\tdictWord{15, 0, 13},\n\tdictWord{16, 0, 64},\n\tdictWord{17, 0, 41},\n\tdictWord{4, 10, 918},\n\tdictWord{133, 10, 876},\n\tdictWord{6, 0, 1418},\n\tdictWord{134, 10, 1764},\n\tdictWord{4, 10, 92},\n\tdictWord{133, 10, 274},\n\tdictWord{134, 0, 907},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t114,\n\t},\n\tdictWord{8, 10, 501},\n\tdictWord{9, 11, 492},\n\tdictWord{13, 11, 462},\n\tdictWord{142, 11, 215},\n\tdictWord{4, 11, 77},\n\tdictWord{5, 11, 361},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t139,\n\t},\n\tdictWord{6, 11, 401},\n\tdictWord{6, 11, 404},\n\tdictWord{7, 11, 413},\n\tdictWord{7, 11, 715},\n\tdictWord{7, 11, 1716},\n\tdictWord{11, 11, 279},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t179,\n\t},\n\tdictWord{12, 11, 258},\n\tdictWord{13, 11, 244},\n\tdictWord{142, 11, 358},\n\tdictWord{6, 0, 1767},\n\tdictWord{12, 0, 194},\n\tdictWord{145, 0, 107},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t1717,\n\t},\n\tdictWord{5, 10, 743},\n\tdictWord{142, 11, 329},\n\tdictWord{4, 10, 49},\n\tdictWord{7, 10, 280},\n\tdictWord{135, 10, 1633},\n\tdictWord{5, 0, 840},\n\tdictWord{7, 11, 1061},\n\tdictWord{8, 11, 82},\n\tdictWord{11, 11, 250},\n\tdictWord{12, 11, 420},\n\tdictWord{141, 11, 184},\n\tdictWord{135, 11, 724},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t900,\n\t},\n\tdictWord{136, 10, 47},\n\tdictWord{134, 0, 1436},\n\tdictWord{144, 11, 0},\n\tdictWord{6, 0, 675},\n\tdictWord{7, 0, 1008},\n\tdictWord{7, 0, 1560},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t642,\n\t},\n\tdictWord{11, 0, 236},\n\tdictWord{14, 0, 193},\n\tdictWord{5, 10, 272},\n\tdictWord{5, 10, 908},\n\tdictWord{5, 10, 942},\n\tdictWord{8, 10, 197},\n\tdictWord{9, 10, 47},\n\tdictWord{11, 10, 538},\n\tdictWord{139, 10, 742},\n\tdictWord{4, 0, 68},\n\tdictWord{5, 0, 628},\n\tdictWord{5, 0, 634},\n\tdictWord{6, 0, 386},\n\tdictWord{7, 0, 794},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t273,\n\t},\n\tdictWord{9, 0, 563},\n\tdictWord{10, 0, 105},\n\tdictWord{10, 0, 171},\n\tdictWord{11, 0, 94},\n\tdictWord{139, 0, 354},\n\tdictWord{135, 10, 1911},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t891,\n\t},\n\tdictWord{4, 0, 95},\n\tdictWord{6, 0, 1297},\n\tdictWord{6, 0, 1604},\n\tdictWord{7, 0, 416},\n\tdictWord{139, 0, 830},\n\tdictWord{6, 11, 513},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1052,\n\t},\n\tdictWord{7, 0, 731},\n\tdictWord{13, 0, 20},\n\tdictWord{143, 0, 11},\n\tdictWord{137, 11, 899},\n\tdictWord{10, 0, 850},\n\tdictWord{140, 0, 697},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t662,\n\t},\n\tdictWord{7, 11, 1417},\n\tdictWord{12, 11, 382},\n\tdictWord{17, 11, 48},\n\tdictWord{152, 11, 12},\n\tdictWord{133, 0, 736},\n\tdictWord{132, 0, 861},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t407,\n\t},\n\tdictWord{132, 10, 560},\n\tdictWord{141, 10, 490},\n\tdictWord{6, 11, 545},\n\tdictWord{7, 11, 565},\n\tdictWord{7, 11, 1669},\n\tdictWord{10, 11, 114},\n\tdictWord{11, 11, 642},\n\tdictWord{140, 11, 618},\n\tdictWord{6, 0, 871},\n\tdictWord{134, 0, 1000},\n\tdictWord{5, 0, 864},\n\tdictWord{10, 0, 648},\n\tdictWord{11, 0, 671},\n\tdictWord{15, 0, 46},\n\tdictWord{133, 11, 5},\n\tdictWord{133, 0, 928},\n\tdictWord{11, 0, 90},\n\tdictWord{13, 0, 7},\n\tdictWord{4, 10, 475},\n\tdictWord{11, 10, 35},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t71,\n\t},\n\tdictWord{13, 10, 177},\n\tdictWord{142, 10, 422},\n\tdictWord{136, 0, 332},\n\tdictWord{135, 11, 192},\n\tdictWord{134, 0, 1055},\n\tdictWord{136, 11, 763},\n\tdictWord{11, 0, 986},\n\tdictWord{140, 0, 682},\n\tdictWord{7, 0, 76},\n\tdictWord{8, 0, 44},\n\tdictWord{9, 0, 884},\n\tdictWord{10, 0, 580},\n\tdictWord{11, 0, 399},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t894,\n\t},\n\tdictWord{143, 0, 122},\n\tdictWord{135, 11, 1237},\n\tdictWord{135, 10, 636},\n\tdictWord{11, 0, 300},\n\tdictWord{6, 10, 222},\n\tdictWord{7, 10, 1620},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t409,\n\t},\n\tdictWord{137, 10, 693},\n\tdictWord{4, 11, 87},\n\tdictWord{5, 11, 250},\n\tdictWord{10, 11, 601},\n\tdictWord{13, 11, 298},\n\tdictWord{13, 11, 353},\n\tdictWord{141, 11, 376},\n\tdictWord{5, 0, 518},\n\tdictWord{10, 0, 340},\n\tdictWord{11, 0, 175},\n\tdictWord{149, 0, 16},\n\tdictWord{140, 0, 771},\n\tdictWord{6, 0, 1108},\n\tdictWord{137, 0, 831},\n\tdictWord{132, 0, 836},\n\tdictWord{135, 0, 1852},\n\tdictWord{4, 0, 957},\n\tdictWord{6, 0, 1804},\n\tdictWord{8, 0, 842},\n\tdictWord{8, 0, 843},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t851,\n\t},\n\tdictWord{8, 0, 855},\n\tdictWord{140, 0, 767},\n\tdictWord{135, 11, 814},\n\tdictWord{4, 11, 57},\n\tdictWord{7, 11, 1195},\n\tdictWord{7, 11, 1438},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1548,\n\t},\n\tdictWord{7, 11, 1835},\n\tdictWord{7, 11, 1904},\n\tdictWord{9, 11, 757},\n\tdictWord{10, 11, 604},\n\tdictWord{139, 11, 519},\n\tdictWord{133, 10, 882},\n\tdictWord{138, 0, 246},\n\tdictWord{4, 0, 934},\n\tdictWord{5, 0, 202},\n\tdictWord{8, 0, 610},\n\tdictWord{7, 11, 1897},\n\tdictWord{12, 11, 290},\n\tdictWord{13, 11, 80},\n\tdictWord{13, 11, 437},\n\tdictWord{145, 11, 74},\n\tdictWord{8, 0, 96},\n\tdictWord{9, 0, 36},\n\tdictWord{10, 0, 607},\n\tdictWord{10, 0, 804},\n\tdictWord{10, 0, 832},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t423,\n\t},\n\tdictWord{11, 0, 442},\n\tdictWord{12, 0, 309},\n\tdictWord{14, 0, 199},\n\tdictWord{15, 0, 90},\n\tdictWord{145, 0, 110},\n\tdictWord{132, 10, 426},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t654,\n\t},\n\tdictWord{8, 0, 240},\n\tdictWord{6, 10, 58},\n\tdictWord{7, 10, 745},\n\tdictWord{7, 10, 1969},\n\tdictWord{8, 10, 675},\n\tdictWord{9, 10, 479},\n\tdictWord{9, 10, 731},\n\tdictWord{10, 10, 330},\n\tdictWord{10, 10, 593},\n\tdictWord{10, 10, 817},\n\tdictWord{11, 10, 32},\n\tdictWord{11, 10, 133},\n\tdictWord{11, 10, 221},\n\tdictWord{\n\t\t145,\n\t\t10,\n\t\t68,\n\t},\n\tdictWord{9, 0, 13},\n\tdictWord{9, 0, 398},\n\tdictWord{9, 0, 727},\n\tdictWord{10, 0, 75},\n\tdictWord{10, 0, 184},\n\tdictWord{10, 0, 230},\n\tdictWord{10, 0, 564},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t569,\n\t},\n\tdictWord{11, 0, 973},\n\tdictWord{12, 0, 70},\n\tdictWord{12, 0, 189},\n\tdictWord{13, 0, 57},\n\tdictWord{141, 0, 257},\n\tdictWord{4, 11, 209},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t902,\n\t},\n\tdictWord{7, 0, 391},\n\tdictWord{137, 10, 538},\n\tdictWord{134, 0, 403},\n\tdictWord{6, 11, 303},\n\tdictWord{7, 11, 335},\n\tdictWord{7, 11, 1437},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1668,\n\t},\n\tdictWord{8, 11, 553},\n\tdictWord{8, 11, 652},\n\tdictWord{8, 11, 656},\n\tdictWord{9, 11, 558},\n\tdictWord{11, 11, 743},\n\tdictWord{149, 11, 18},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t559,\n\t},\n\tdictWord{11, 0, 75},\n\tdictWord{142, 0, 267},\n\tdictWord{6, 0, 815},\n\tdictWord{141, 11, 2},\n\tdictWord{141, 0, 366},\n\tdictWord{137, 0, 631},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t1017,\n\t},\n\tdictWord{5, 0, 345},\n\tdictWord{135, 0, 1016},\n\tdictWord{133, 11, 709},\n\tdictWord{134, 11, 1745},\n\tdictWord{133, 10, 566},\n\tdictWord{7, 0, 952},\n\tdictWord{6, 10, 48},\n\tdictWord{9, 10, 139},\n\tdictWord{10, 10, 399},\n\tdictWord{11, 10, 469},\n\tdictWord{12, 10, 634},\n\tdictWord{141, 10, 223},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t673,\n\t},\n\tdictWord{9, 0, 850},\n\tdictWord{7, 11, 8},\n\tdictWord{136, 11, 206},\n\tdictWord{6, 0, 662},\n\tdictWord{149, 0, 35},\n\tdictWord{4, 0, 287},\n\tdictWord{133, 0, 1018},\n\tdictWord{6, 10, 114},\n\tdictWord{7, 10, 1224},\n\tdictWord{7, 10, 1556},\n\tdictWord{136, 10, 3},\n\tdictWord{8, 10, 576},\n\tdictWord{137, 10, 267},\n\tdictWord{4, 0, 884},\n\tdictWord{5, 0, 34},\n\tdictWord{10, 0, 724},\n\tdictWord{12, 0, 444},\n\tdictWord{13, 0, 354},\n\tdictWord{18, 0, 32},\n\tdictWord{23, 0, 24},\n\tdictWord{23, 0, 31},\n\tdictWord{\n\t\t152,\n\t\t0,\n\t\t5,\n\t},\n\tdictWord{133, 10, 933},\n\tdictWord{132, 11, 776},\n\tdictWord{138, 0, 151},\n\tdictWord{136, 0, 427},\n\tdictWord{134, 0, 382},\n\tdictWord{132, 0, 329},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t846,\n\t},\n\tdictWord{10, 0, 827},\n\tdictWord{138, 11, 33},\n\tdictWord{9, 0, 279},\n\tdictWord{10, 0, 407},\n\tdictWord{14, 0, 84},\n\tdictWord{22, 0, 18},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1297,\n\t},\n\tdictWord{136, 11, 406},\n\tdictWord{132, 0, 906},\n\tdictWord{136, 0, 366},\n\tdictWord{134, 0, 843},\n\tdictWord{134, 0, 1443},\n\tdictWord{135, 0, 1372},\n\tdictWord{138, 0, 992},\n\tdictWord{4, 0, 123},\n\tdictWord{5, 0, 605},\n\tdictWord{7, 0, 1509},\n\tdictWord{136, 0, 36},\n\tdictWord{132, 0, 649},\n\tdictWord{8, 11, 175},\n\tdictWord{10, 11, 168},\n\tdictWord{138, 11, 573},\n\tdictWord{133, 0, 767},\n\tdictWord{134, 0, 1018},\n\tdictWord{135, 11, 1305},\n\tdictWord{12, 10, 30},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t148,\n\t},\n\tdictWord{14, 10, 87},\n\tdictWord{14, 10, 182},\n\tdictWord{16, 10, 42},\n\tdictWord{148, 10, 70},\n\tdictWord{134, 11, 607},\n\tdictWord{4, 0, 273},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t658,\n\t},\n\tdictWord{133, 0, 995},\n\tdictWord{6, 0, 72},\n\tdictWord{139, 11, 174},\n\tdictWord{10, 0, 483},\n\tdictWord{12, 0, 368},\n\tdictWord{7, 10, 56},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1989,\n\t},\n\tdictWord{8, 10, 337},\n\tdictWord{8, 10, 738},\n\tdictWord{9, 10, 600},\n\tdictWord{13, 10, 447},\n\tdictWord{142, 10, 92},\n\tdictWord{5, 11, 784},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t666,\n\t},\n\tdictWord{135, 0, 1345},\n\tdictWord{139, 11, 882},\n\tdictWord{134, 0, 1293},\n\tdictWord{133, 0, 589},\n\tdictWord{134, 0, 1988},\n\tdictWord{5, 0, 117},\n\tdictWord{6, 0, 514},\n\tdictWord{6, 0, 541},\n\tdictWord{7, 0, 1164},\n\tdictWord{7, 0, 1436},\n\tdictWord{8, 0, 220},\n\tdictWord{8, 0, 648},\n\tdictWord{10, 0, 688},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t560,\n\t},\n\tdictWord{136, 0, 379},\n\tdictWord{5, 0, 686},\n\tdictWord{7, 10, 866},\n\tdictWord{135, 10, 1163},\n\tdictWord{132, 10, 328},\n\tdictWord{9, 11, 14},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t441,\n\t},\n\tdictWord{10, 11, 306},\n\tdictWord{139, 11, 9},\n\tdictWord{4, 10, 101},\n\tdictWord{135, 10, 1171},\n\tdictWord{5, 10, 833},\n\tdictWord{136, 10, 744},\n\tdictWord{5, 11, 161},\n\tdictWord{7, 11, 839},\n\tdictWord{135, 11, 887},\n\tdictWord{7, 0, 196},\n\tdictWord{10, 0, 765},\n\tdictWord{11, 0, 347},\n\tdictWord{11, 0, 552},\n\tdictWord{11, 0, 790},\n\tdictWord{12, 0, 263},\n\tdictWord{13, 0, 246},\n\tdictWord{13, 0, 270},\n\tdictWord{13, 0, 395},\n\tdictWord{14, 0, 176},\n\tdictWord{14, 0, 190},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t398,\n\t},\n\tdictWord{14, 0, 412},\n\tdictWord{15, 0, 32},\n\tdictWord{15, 0, 63},\n\tdictWord{16, 0, 88},\n\tdictWord{147, 0, 105},\n\tdictWord{6, 10, 9},\n\tdictWord{6, 10, 397},\n\tdictWord{7, 10, 53},\n\tdictWord{7, 10, 1742},\n\tdictWord{10, 10, 632},\n\tdictWord{11, 10, 828},\n\tdictWord{140, 10, 146},\n\tdictWord{5, 0, 381},\n\tdictWord{135, 0, 1792},\n\tdictWord{134, 0, 1452},\n\tdictWord{135, 11, 429},\n\tdictWord{8, 0, 367},\n\tdictWord{10, 0, 760},\n\tdictWord{14, 0, 79},\n\tdictWord{20, 0, 17},\n\tdictWord{152, 0, 0},\n\tdictWord{7, 0, 616},\n\tdictWord{138, 0, 413},\n\tdictWord{11, 10, 417},\n\tdictWord{12, 10, 223},\n\tdictWord{140, 10, 265},\n\tdictWord{7, 11, 1611},\n\tdictWord{13, 11, 14},\n\tdictWord{15, 11, 44},\n\tdictWord{19, 11, 13},\n\tdictWord{148, 11, 76},\n\tdictWord{135, 0, 1229},\n\tdictWord{6, 0, 120},\n\tdictWord{7, 0, 1188},\n\tdictWord{7, 0, 1710},\n\tdictWord{8, 0, 286},\n\tdictWord{9, 0, 667},\n\tdictWord{11, 0, 592},\n\tdictWord{139, 0, 730},\n\tdictWord{135, 11, 1814},\n\tdictWord{135, 0, 1146},\n\tdictWord{4, 10, 186},\n\tdictWord{5, 10, 157},\n\tdictWord{8, 10, 168},\n\tdictWord{138, 10, 6},\n\tdictWord{4, 0, 352},\n\tdictWord{135, 0, 687},\n\tdictWord{4, 0, 192},\n\tdictWord{5, 0, 49},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t200,\n\t},\n\tdictWord{6, 0, 293},\n\tdictWord{6, 0, 1696},\n\tdictWord{135, 0, 1151},\n\tdictWord{133, 10, 875},\n\tdictWord{5, 10, 773},\n\tdictWord{5, 10, 991},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1635,\n\t},\n\tdictWord{134, 10, 1788},\n\tdictWord{7, 10, 111},\n\tdictWord{136, 10, 581},\n\tdictWord{6, 0, 935},\n\tdictWord{134, 0, 1151},\n\tdictWord{134, 0, 1050},\n\tdictWord{132, 0, 650},\n\tdictWord{132, 0, 147},\n\tdictWord{11, 0, 194},\n\tdictWord{12, 0, 62},\n\tdictWord{12, 0, 88},\n\tdictWord{11, 11, 194},\n\tdictWord{12, 11, 62},\n\tdictWord{140, 11, 88},\n\tdictWord{6, 0, 339},\n\tdictWord{135, 0, 923},\n\tdictWord{134, 10, 1747},\n\tdictWord{7, 11, 643},\n\tdictWord{136, 11, 236},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t934,\n\t},\n\tdictWord{7, 10, 1364},\n\tdictWord{7, 10, 1907},\n\tdictWord{141, 10, 158},\n\tdictWord{132, 10, 659},\n\tdictWord{4, 10, 404},\n\tdictWord{135, 10, 675},\n\tdictWord{7, 11, 581},\n\tdictWord{9, 11, 644},\n\tdictWord{137, 11, 699},\n\tdictWord{13, 0, 211},\n\tdictWord{14, 0, 133},\n\tdictWord{14, 0, 204},\n\tdictWord{15, 0, 64},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t69,\n\t},\n\tdictWord{15, 0, 114},\n\tdictWord{16, 0, 10},\n\tdictWord{19, 0, 23},\n\tdictWord{19, 0, 35},\n\tdictWord{19, 0, 39},\n\tdictWord{19, 0, 51},\n\tdictWord{19, 0, 71},\n\tdictWord{19, 0, 75},\n\tdictWord{152, 0, 15},\n\tdictWord{133, 10, 391},\n\tdictWord{5, 11, 54},\n\tdictWord{135, 11, 1513},\n\tdictWord{7, 0, 222},\n\tdictWord{8, 0, 341},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t540,\n\t},\n\tdictWord{134, 10, 1697},\n\tdictWord{134, 10, 78},\n\tdictWord{132, 11, 744},\n\tdictWord{136, 0, 293},\n\tdictWord{137, 11, 701},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t930,\n\t},\n\tdictWord{10, 11, 402},\n\tdictWord{10, 11, 476},\n\tdictWord{13, 11, 452},\n\tdictWord{18, 11, 55},\n\tdictWord{147, 11, 104},\n\tdictWord{132, 0, 637},\n\tdictWord{133, 10, 460},\n\tdictWord{8, 11, 50},\n\tdictWord{137, 11, 624},\n\tdictWord{132, 11, 572},\n\tdictWord{134, 0, 1159},\n\tdictWord{4, 10, 199},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t34,\n\t},\n\tdictWord{134, 0, 847},\n\tdictWord{134, 10, 388},\n\tdictWord{6, 11, 43},\n\tdictWord{7, 11, 38},\n\tdictWord{8, 11, 248},\n\tdictWord{9, 11, 504},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t513,\n\t},\n\tdictWord{9, 0, 683},\n\tdictWord{4, 10, 511},\n\tdictWord{6, 10, 608},\n\tdictWord{9, 10, 333},\n\tdictWord{10, 10, 602},\n\tdictWord{11, 10, 441},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t723,\n\t},\n\tdictWord{11, 10, 976},\n\tdictWord{140, 10, 357},\n\tdictWord{9, 0, 867},\n\tdictWord{138, 0, 837},\n\tdictWord{6, 0, 944},\n\tdictWord{135, 11, 326},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1809,\n\t},\n\tdictWord{5, 10, 938},\n\tdictWord{7, 11, 783},\n\tdictWord{136, 10, 707},\n\tdictWord{133, 11, 766},\n\tdictWord{133, 11, 363},\n\tdictWord{6, 0, 170},\n\tdictWord{7, 0, 1080},\n\tdictWord{8, 0, 395},\n\tdictWord{8, 0, 487},\n\tdictWord{141, 0, 147},\n\tdictWord{6, 11, 258},\n\tdictWord{140, 11, 409},\n\tdictWord{4, 0, 535},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t618,\n\t},\n\tdictWord{5, 11, 249},\n\tdictWord{148, 11, 82},\n\tdictWord{6, 0, 1379},\n\tdictWord{149, 11, 15},\n\tdictWord{135, 0, 1625},\n\tdictWord{150, 0, 23},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t393,\n\t},\n\tdictWord{6, 11, 378},\n\tdictWord{7, 11, 1981},\n\tdictWord{9, 11, 32},\n\tdictWord{9, 11, 591},\n\tdictWord{10, 11, 685},\n\tdictWord{10, 11, 741},\n\tdictWord{\n\t\t142,\n\t\t11,\n\t\t382,\n\t},\n\tdictWord{133, 11, 788},\n\tdictWord{7, 11, 1968},\n\tdictWord{10, 11, 19},\n\tdictWord{139, 11, 911},\n\tdictWord{7, 11, 1401},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1476,\n\t},\n\tdictWord{4, 11, 61},\n\tdictWord{5, 11, 58},\n\tdictWord{5, 11, 171},\n\tdictWord{5, 11, 635},\n\tdictWord{5, 11, 683},\n\tdictWord{5, 11, 700},\n\tdictWord{6, 11, 291},\n\tdictWord{6, 11, 566},\n\tdictWord{7, 11, 1650},\n\tdictWord{11, 11, 523},\n\tdictWord{12, 11, 273},\n\tdictWord{12, 11, 303},\n\tdictWord{15, 11, 39},\n\tdictWord{\n\t\t143,\n\t\t11,\n\t\t111,\n\t},\n\tdictWord{6, 10, 469},\n\tdictWord{7, 10, 1709},\n\tdictWord{138, 10, 515},\n\tdictWord{4, 0, 778},\n\tdictWord{134, 11, 589},\n\tdictWord{132, 0, 46},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t811,\n\t},\n\tdictWord{6, 0, 1679},\n\tdictWord{6, 0, 1714},\n\tdictWord{135, 0, 2032},\n\tdictWord{7, 0, 1458},\n\tdictWord{9, 0, 407},\n\tdictWord{11, 0, 15},\n\tdictWord{12, 0, 651},\n\tdictWord{149, 0, 37},\n\tdictWord{7, 0, 938},\n\tdictWord{132, 10, 500},\n\tdictWord{6, 0, 34},\n\tdictWord{7, 0, 69},\n\tdictWord{7, 0, 1089},\n\tdictWord{7, 0, 1281},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t708,\n\t},\n\tdictWord{8, 0, 721},\n\tdictWord{9, 0, 363},\n\tdictWord{148, 0, 98},\n\tdictWord{10, 11, 231},\n\tdictWord{147, 11, 124},\n\tdictWord{7, 11, 726},\n\tdictWord{\n\t\t152,\n\t\t11,\n\t\t9,\n\t},\n\tdictWord{5, 10, 68},\n\tdictWord{134, 10, 383},\n\tdictWord{136, 11, 583},\n\tdictWord{4, 11, 917},\n\tdictWord{133, 11, 1005},\n\tdictWord{11, 10, 216},\n\tdictWord{139, 10, 340},\n\tdictWord{135, 11, 1675},\n\tdictWord{8, 0, 441},\n\tdictWord{10, 0, 314},\n\tdictWord{143, 0, 3},\n\tdictWord{132, 11, 919},\n\tdictWord{4, 10, 337},\n\tdictWord{6, 10, 353},\n\tdictWord{7, 10, 1934},\n\tdictWord{8, 10, 488},\n\tdictWord{137, 10, 429},\n\tdictWord{7, 0, 889},\n\tdictWord{7, 10, 1795},\n\tdictWord{8, 10, 259},\n\tdictWord{9, 10, 135},\n\tdictWord{9, 10, 177},\n\tdictWord{9, 10, 860},\n\tdictWord{10, 10, 825},\n\tdictWord{11, 10, 115},\n\tdictWord{11, 10, 370},\n\tdictWord{11, 10, 405},\n\tdictWord{11, 10, 604},\n\tdictWord{12, 10, 10},\n\tdictWord{12, 10, 667},\n\tdictWord{12, 10, 669},\n\tdictWord{13, 10, 76},\n\tdictWord{14, 10, 310},\n\tdictWord{\n\t\t15,\n\t\t10,\n\t\t76,\n\t},\n\tdictWord{15, 10, 147},\n\tdictWord{148, 10, 23},\n\tdictWord{4, 10, 15},\n\tdictWord{4, 11, 255},\n\tdictWord{5, 10, 22},\n\tdictWord{5, 11, 302},\n\tdictWord{6, 11, 132},\n\tdictWord{6, 10, 244},\n\tdictWord{7, 10, 40},\n\tdictWord{7, 11, 128},\n\tdictWord{7, 10, 200},\n\tdictWord{7, 11, 283},\n\tdictWord{7, 10, 906},\n\tdictWord{7, 10, 1199},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1299,\n\t},\n\tdictWord{9, 10, 616},\n\tdictWord{10, 11, 52},\n\tdictWord{10, 11, 514},\n\tdictWord{10, 10, 716},\n\tdictWord{11, 10, 635},\n\tdictWord{11, 10, 801},\n\tdictWord{11, 11, 925},\n\tdictWord{12, 10, 458},\n\tdictWord{13, 11, 92},\n\tdictWord{142, 11, 309},\n\tdictWord{132, 0, 462},\n\tdictWord{137, 11, 173},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1735,\n\t},\n\tdictWord{8, 0, 525},\n\tdictWord{5, 10, 598},\n\tdictWord{7, 10, 791},\n\tdictWord{8, 10, 108},\n\tdictWord{137, 10, 123},\n\tdictWord{5, 0, 73},\n\tdictWord{6, 0, 23},\n\tdictWord{134, 0, 338},\n\tdictWord{132, 0, 676},\n\tdictWord{132, 10, 683},\n\tdictWord{7, 0, 725},\n\tdictWord{8, 0, 498},\n\tdictWord{139, 0, 268},\n\tdictWord{12, 0, 21},\n\tdictWord{151, 0, 7},\n\tdictWord{135, 0, 773},\n\tdictWord{4, 10, 155},\n\tdictWord{135, 10, 1689},\n\tdictWord{4, 0, 164},\n\tdictWord{5, 0, 730},\n\tdictWord{5, 10, 151},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t741,\n\t},\n\tdictWord{6, 11, 210},\n\tdictWord{7, 10, 498},\n\tdictWord{7, 10, 870},\n\tdictWord{7, 10, 1542},\n\tdictWord{12, 10, 213},\n\tdictWord{14, 10, 36},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t391,\n\t},\n\tdictWord{17, 10, 111},\n\tdictWord{18, 10, 6},\n\tdictWord{18, 10, 46},\n\tdictWord{18, 10, 151},\n\tdictWord{19, 10, 36},\n\tdictWord{20, 10, 32},\n\tdictWord{\n\t\t20,\n\t\t10,\n\t\t56,\n\t},\n\tdictWord{20, 10, 69},\n\tdictWord{20, 10, 102},\n\tdictWord{21, 10, 4},\n\tdictWord{22, 10, 8},\n\tdictWord{22, 10, 10},\n\tdictWord{22, 10, 14},\n\tdictWord{\n\t\t150,\n\t\t10,\n\t\t31,\n\t},\n\tdictWord{4, 10, 624},\n\tdictWord{135, 10, 1752},\n\tdictWord{4, 0, 583},\n\tdictWord{9, 0, 936},\n\tdictWord{15, 0, 214},\n\tdictWord{18, 0, 199},\n\tdictWord{24, 0, 26},\n\tdictWord{134, 11, 588},\n\tdictWord{7, 0, 1462},\n\tdictWord{11, 0, 659},\n\tdictWord{4, 11, 284},\n\tdictWord{134, 11, 223},\n\tdictWord{133, 0, 220},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t803,\n\t},\n\tdictWord{132, 0, 544},\n\tdictWord{4, 10, 492},\n\tdictWord{133, 10, 451},\n\tdictWord{16, 0, 98},\n\tdictWord{148, 0, 119},\n\tdictWord{4, 11, 218},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t526,\n\t},\n\tdictWord{143, 11, 137},\n\tdictWord{135, 10, 835},\n\tdictWord{4, 11, 270},\n\tdictWord{5, 11, 192},\n\tdictWord{6, 11, 332},\n\tdictWord{7, 11, 1322},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t9,\n\t},\n\tdictWord{13, 10, 70},\n\tdictWord{14, 11, 104},\n\tdictWord{142, 11, 311},\n\tdictWord{132, 10, 539},\n\tdictWord{140, 11, 661},\n\tdictWord{5, 0, 176},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t437,\n\t},\n\tdictWord{6, 0, 564},\n\tdictWord{11, 0, 181},\n\tdictWord{141, 0, 183},\n\tdictWord{135, 0, 1192},\n\tdictWord{6, 10, 113},\n\tdictWord{135, 10, 436},\n\tdictWord{136, 10, 718},\n\tdictWord{135, 10, 520},\n\tdictWord{135, 0, 1878},\n\tdictWord{140, 11, 196},\n\tdictWord{7, 11, 379},\n\tdictWord{8, 11, 481},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t377,\n\t},\n\tdictWord{5, 11, 1003},\n\tdictWord{6, 11, 149},\n\tdictWord{137, 11, 746},\n\tdictWord{8, 11, 262},\n\tdictWord{9, 11, 627},\n\tdictWord{10, 11, 18},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t214,\n\t},\n\tdictWord{11, 11, 404},\n\tdictWord{11, 11, 457},\n\tdictWord{11, 11, 780},\n\tdictWord{11, 11, 849},\n\tdictWord{11, 11, 913},\n\tdictWord{13, 11, 330},\n\tdictWord{13, 11, 401},\n\tdictWord{142, 11, 200},\n\tdictWord{149, 0, 26},\n\tdictWord{136, 11, 304},\n\tdictWord{132, 11, 142},\n\tdictWord{135, 0, 944},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t790,\n\t},\n\tdictWord{5, 0, 273},\n\tdictWord{134, 0, 394},\n\tdictWord{134, 0, 855},\n\tdictWord{4, 0, 135},\n\tdictWord{6, 0, 127},\n\tdictWord{7, 0, 1185},\n\tdictWord{7, 0, 1511},\n\tdictWord{8, 0, 613},\n\tdictWord{11, 0, 5},\n\tdictWord{12, 0, 336},\n\tdictWord{12, 0, 495},\n\tdictWord{12, 0, 586},\n\tdictWord{12, 0, 660},\n\tdictWord{12, 0, 668},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t385,\n\t},\n\tdictWord{15, 0, 118},\n\tdictWord{17, 0, 20},\n\tdictWord{146, 0, 98},\n\tdictWord{6, 0, 230},\n\tdictWord{9, 0, 752},\n\tdictWord{18, 0, 109},\n\tdictWord{12, 10, 610},\n\tdictWord{13, 10, 431},\n\tdictWord{144, 10, 59},\n\tdictWord{7, 0, 1954},\n\tdictWord{135, 11, 925},\n\tdictWord{4, 11, 471},\n\tdictWord{5, 11, 51},\n\tdictWord{6, 11, 602},\n\tdictWord{8, 11, 484},\n\tdictWord{10, 11, 195},\n\tdictWord{140, 11, 159},\n\tdictWord{132, 10, 307},\n\tdictWord{136, 11, 688},\n\tdictWord{132, 11, 697},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t812,\n\t},\n\tdictWord{7, 11, 1261},\n\tdictWord{7, 11, 1360},\n\tdictWord{9, 11, 632},\n\tdictWord{140, 11, 352},\n\tdictWord{5, 0, 162},\n\tdictWord{8, 0, 68},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t964,\n\t},\n\tdictWord{4, 0, 654},\n\tdictWord{136, 11, 212},\n\tdictWord{4, 0, 156},\n\tdictWord{7, 0, 998},\n\tdictWord{7, 0, 1045},\n\tdictWord{7, 0, 1860},\n\tdictWord{9, 0, 48},\n\tdictWord{9, 0, 692},\n\tdictWord{11, 0, 419},\n\tdictWord{139, 0, 602},\n\tdictWord{133, 11, 221},\n\tdictWord{4, 11, 373},\n\tdictWord{5, 11, 283},\n\tdictWord{6, 11, 480},\n\tdictWord{135, 11, 609},\n\tdictWord{142, 11, 216},\n\tdictWord{132, 0, 240},\n\tdictWord{6, 11, 192},\n\tdictWord{9, 11, 793},\n\tdictWord{145, 11, 55},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t75,\n\t},\n\tdictWord{5, 10, 180},\n\tdictWord{6, 10, 500},\n\tdictWord{7, 10, 58},\n\tdictWord{7, 10, 710},\n\tdictWord{138, 10, 645},\n\tdictWord{4, 11, 132},\n\tdictWord{5, 11, 69},\n\tdictWord{5, 10, 649},\n\tdictWord{135, 11, 1242},\n\tdictWord{6, 10, 276},\n\tdictWord{7, 10, 282},\n\tdictWord{7, 10, 879},\n\tdictWord{7, 10, 924},\n\tdictWord{8, 10, 459},\n\tdictWord{9, 10, 599},\n\tdictWord{9, 10, 754},\n\tdictWord{11, 10, 574},\n\tdictWord{12, 10, 128},\n\tdictWord{12, 10, 494},\n\tdictWord{13, 10, 52},\n\tdictWord{13, 10, 301},\n\tdictWord{15, 10, 30},\n\tdictWord{143, 10, 132},\n\tdictWord{132, 10, 200},\n\tdictWord{4, 11, 111},\n\tdictWord{135, 11, 302},\n\tdictWord{9, 0, 197},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t300,\n\t},\n\tdictWord{12, 0, 473},\n\tdictWord{13, 0, 90},\n\tdictWord{141, 0, 405},\n\tdictWord{132, 11, 767},\n\tdictWord{6, 11, 42},\n\tdictWord{7, 11, 1416},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1590,\n\t},\n\tdictWord{7, 11, 2005},\n\tdictWord{8, 11, 131},\n\tdictWord{8, 11, 466},\n\tdictWord{9, 11, 672},\n\tdictWord{13, 11, 252},\n\tdictWord{148, 11, 103},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t958,\n\t},\n\tdictWord{8, 0, 999},\n\tdictWord{10, 0, 963},\n\tdictWord{138, 0, 1001},\n\tdictWord{135, 10, 1621},\n\tdictWord{135, 0, 858},\n\tdictWord{4, 0, 606},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t444,\n\t},\n\tdictWord{6, 11, 44},\n\tdictWord{136, 11, 368},\n\tdictWord{139, 11, 172},\n\tdictWord{4, 11, 570},\n\tdictWord{133, 11, 120},\n\tdictWord{139, 11, 624},\n\tdictWord{7, 0, 1978},\n\tdictWord{8, 0, 676},\n\tdictWord{6, 10, 225},\n\tdictWord{137, 10, 211},\n\tdictWord{7, 0, 972},\n\tdictWord{11, 0, 102},\n\tdictWord{136, 10, 687},\n\tdictWord{6, 11, 227},\n\tdictWord{135, 11, 1589},\n\tdictWord{8, 10, 58},\n\tdictWord{9, 10, 724},\n\tdictWord{11, 10, 809},\n\tdictWord{13, 10, 113},\n\tdictWord{\n\t\t145,\n\t\t10,\n\t\t72,\n\t},\n\tdictWord{4, 0, 361},\n\tdictWord{133, 0, 315},\n\tdictWord{132, 0, 461},\n\tdictWord{6, 10, 345},\n\tdictWord{135, 10, 1247},\n\tdictWord{132, 0, 472},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t767,\n\t},\n\tdictWord{8, 10, 803},\n\tdictWord{9, 10, 301},\n\tdictWord{137, 10, 903},\n\tdictWord{135, 11, 1333},\n\tdictWord{135, 11, 477},\n\tdictWord{7, 10, 1949},\n\tdictWord{136, 10, 674},\n\tdictWord{6, 0, 905},\n\tdictWord{138, 0, 747},\n\tdictWord{133, 0, 155},\n\tdictWord{134, 10, 259},\n\tdictWord{7, 0, 163},\n\tdictWord{8, 0, 319},\n\tdictWord{9, 0, 402},\n\tdictWord{10, 0, 24},\n\tdictWord{10, 0, 681},\n\tdictWord{11, 0, 200},\n\tdictWord{12, 0, 253},\n\tdictWord{12, 0, 410},\n\tdictWord{142, 0, 219},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t475,\n\t},\n\tdictWord{7, 0, 1780},\n\tdictWord{9, 0, 230},\n\tdictWord{11, 0, 297},\n\tdictWord{11, 0, 558},\n\tdictWord{14, 0, 322},\n\tdictWord{19, 0, 76},\n\tdictWord{6, 11, 1667},\n\tdictWord{7, 11, 2036},\n\tdictWord{138, 11, 600},\n\tdictWord{136, 10, 254},\n\tdictWord{6, 0, 848},\n\tdictWord{135, 0, 1956},\n\tdictWord{6, 11, 511},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t132,\n\t},\n\tdictWord{5, 11, 568},\n\tdictWord{6, 11, 138},\n\tdictWord{135, 11, 1293},\n\tdictWord{6, 0, 631},\n\tdictWord{137, 0, 838},\n\tdictWord{149, 0, 36},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t565,\n\t},\n\tdictWord{8, 11, 23},\n\tdictWord{136, 11, 827},\n\tdictWord{5, 0, 944},\n\tdictWord{134, 0, 1769},\n\tdictWord{4, 0, 144},\n\tdictWord{6, 0, 842},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1400,\n\t},\n\tdictWord{4, 11, 922},\n\tdictWord{133, 11, 1023},\n\tdictWord{133, 10, 248},\n\tdictWord{9, 10, 800},\n\tdictWord{10, 10, 693},\n\tdictWord{11, 10, 482},\n\tdictWord{11, 10, 734},\n\tdictWord{139, 10, 789},\n\tdictWord{7, 11, 1002},\n\tdictWord{139, 11, 145},\n\tdictWord{4, 10, 116},\n\tdictWord{5, 10, 95},\n\tdictWord{5, 10, 445},\n\tdictWord{7, 10, 1688},\n\tdictWord{8, 10, 29},\n\tdictWord{9, 10, 272},\n\tdictWord{11, 10, 509},\n\tdictWord{139, 10, 915},\n\tdictWord{14, 0, 369},\n\tdictWord{146, 0, 72},\n\tdictWord{135, 10, 1641},\n\tdictWord{132, 11, 740},\n\tdictWord{133, 10, 543},\n\tdictWord{140, 11, 116},\n\tdictWord{6, 0, 247},\n\tdictWord{9, 0, 555},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t181,\n\t},\n\tdictWord{136, 10, 41},\n\tdictWord{133, 10, 657},\n\tdictWord{136, 0, 996},\n\tdictWord{138, 10, 709},\n\tdictWord{7, 0, 189},\n\tdictWord{8, 10, 202},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t536,\n\t},\n\tdictWord{136, 11, 402},\n\tdictWord{4, 11, 716},\n\tdictWord{141, 11, 31},\n\tdictWord{10, 0, 280},\n\tdictWord{138, 0, 797},\n\tdictWord{9, 10, 423},\n\tdictWord{140, 10, 89},\n\tdictWord{8, 10, 113},\n\tdictWord{9, 10, 877},\n\tdictWord{10, 10, 554},\n\tdictWord{11, 10, 83},\n\tdictWord{12, 10, 136},\n\tdictWord{147, 10, 109},\n\tdictWord{133, 10, 976},\n\tdictWord{7, 0, 746},\n\tdictWord{132, 10, 206},\n\tdictWord{136, 0, 526},\n\tdictWord{139, 0, 345},\n\tdictWord{136, 0, 1017},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t152,\n\t},\n\tdictWord{9, 11, 53},\n\tdictWord{9, 11, 268},\n\tdictWord{9, 11, 901},\n\tdictWord{10, 11, 518},\n\tdictWord{10, 11, 829},\n\tdictWord{11, 11, 188},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t74,\n\t},\n\tdictWord{14, 11, 46},\n\tdictWord{15, 11, 17},\n\tdictWord{15, 11, 33},\n\tdictWord{17, 11, 40},\n\tdictWord{18, 11, 36},\n\tdictWord{19, 11, 20},\n\tdictWord{22, 11, 1},\n\tdictWord{152, 11, 2},\n\tdictWord{133, 11, 736},\n\tdictWord{136, 11, 532},\n\tdictWord{5, 0, 428},\n\tdictWord{138, 0, 651},\n\tdictWord{135, 11, 681},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1162,\n\t},\n\tdictWord{7, 0, 327},\n\tdictWord{13, 0, 230},\n\tdictWord{17, 0, 113},\n\tdictWord{8, 10, 226},\n\tdictWord{10, 10, 537},\n\tdictWord{11, 10, 570},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t605,\n\t},\n\tdictWord{11, 10, 799},\n\tdictWord{11, 10, 804},\n\tdictWord{12, 10, 85},\n\tdictWord{12, 10, 516},\n\tdictWord{12, 10, 623},\n\tdictWord{12, 11, 677},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t361,\n\t},\n\tdictWord{14, 10, 77},\n\tdictWord{14, 10, 78},\n\tdictWord{147, 10, 110},\n\tdictWord{4, 0, 792},\n\tdictWord{7, 0, 1717},\n\tdictWord{10, 0, 546},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t769,\n\t},\n\tdictWord{4, 11, 684},\n\tdictWord{136, 11, 384},\n\tdictWord{132, 10, 551},\n\tdictWord{134, 0, 1203},\n\tdictWord{9, 10, 57},\n\tdictWord{9, 10, 459},\n\tdictWord{10, 10, 425},\n\tdictWord{11, 10, 119},\n\tdictWord{12, 10, 184},\n\tdictWord{12, 10, 371},\n\tdictWord{13, 10, 358},\n\tdictWord{145, 10, 51},\n\tdictWord{5, 0, 672},\n\tdictWord{5, 10, 814},\n\tdictWord{8, 10, 10},\n\tdictWord{9, 10, 421},\n\tdictWord{9, 10, 729},\n\tdictWord{10, 10, 609},\n\tdictWord{139, 10, 689},\n\tdictWord{138, 0, 189},\n\tdictWord{134, 10, 624},\n\tdictWord{7, 11, 110},\n\tdictWord{7, 11, 188},\n\tdictWord{8, 11, 290},\n\tdictWord{8, 11, 591},\n\tdictWord{9, 11, 382},\n\tdictWord{9, 11, 649},\n\tdictWord{11, 11, 71},\n\tdictWord{11, 11, 155},\n\tdictWord{11, 11, 313},\n\tdictWord{12, 11, 5},\n\tdictWord{13, 11, 325},\n\tdictWord{142, 11, 287},\n\tdictWord{133, 0, 99},\n\tdictWord{6, 0, 1053},\n\tdictWord{135, 0, 298},\n\tdictWord{7, 11, 360},\n\tdictWord{7, 11, 425},\n\tdictWord{9, 11, 66},\n\tdictWord{9, 11, 278},\n\tdictWord{138, 11, 644},\n\tdictWord{4, 0, 397},\n\tdictWord{136, 0, 555},\n\tdictWord{137, 10, 269},\n\tdictWord{132, 10, 528},\n\tdictWord{4, 11, 900},\n\tdictWord{133, 11, 861},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1157,\n\t},\n\tdictWord{5, 11, 254},\n\tdictWord{7, 11, 985},\n\tdictWord{136, 11, 73},\n\tdictWord{7, 11, 1959},\n\tdictWord{136, 11, 683},\n\tdictWord{12, 0, 398},\n\tdictWord{\n\t\t20,\n\t\t0,\n\t\t39,\n\t},\n\tdictWord{21, 0, 11},\n\tdictWord{150, 0, 41},\n\tdictWord{4, 0, 485},\n\tdictWord{7, 0, 353},\n\tdictWord{135, 0, 1523},\n\tdictWord{6, 0, 366},\n\tdictWord{7, 0, 1384},\n\tdictWord{135, 0, 1601},\n\tdictWord{138, 0, 787},\n\tdictWord{137, 0, 282},\n\tdictWord{5, 10, 104},\n\tdictWord{6, 10, 173},\n\tdictWord{135, 10, 1631},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t146,\n\t},\n\tdictWord{4, 0, 157},\n\tdictWord{133, 0, 471},\n\tdictWord{134, 0, 941},\n\tdictWord{132, 11, 725},\n\tdictWord{7, 0, 1336},\n\tdictWord{8, 10, 138},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t342,\n\t},\n\tdictWord{9, 10, 84},\n\tdictWord{10, 10, 193},\n\tdictWord{11, 10, 883},\n\tdictWord{140, 10, 359},\n\tdictWord{134, 11, 196},\n\tdictWord{136, 0, 116},\n\tdictWord{133, 11, 831},\n\tdictWord{134, 0, 787},\n\tdictWord{134, 10, 95},\n\tdictWord{6, 10, 406},\n\tdictWord{10, 10, 409},\n\tdictWord{10, 10, 447},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t44,\n\t},\n\tdictWord{140, 10, 100},\n\tdictWord{5, 0, 160},\n\tdictWord{7, 0, 363},\n\tdictWord{7, 0, 589},\n\tdictWord{10, 0, 170},\n\tdictWord{141, 0, 55},\n\tdictWord{134, 0, 1815},\n\tdictWord{132, 0, 866},\n\tdictWord{6, 0, 889},\n\tdictWord{6, 0, 1067},\n\tdictWord{6, 0, 1183},\n\tdictWord{4, 11, 321},\n\tdictWord{134, 11, 569},\n\tdictWord{5, 11, 848},\n\tdictWord{134, 11, 66},\n\tdictWord{4, 11, 36},\n\tdictWord{6, 10, 1636},\n\tdictWord{7, 11, 1387},\n\tdictWord{10, 11, 205},\n\tdictWord{11, 11, 755},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t271,\n\t},\n\tdictWord{132, 0, 689},\n\tdictWord{9, 0, 820},\n\tdictWord{4, 10, 282},\n\tdictWord{7, 10, 1034},\n\tdictWord{11, 10, 398},\n\tdictWord{11, 10, 634},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t1,\n\t},\n\tdictWord{12, 10, 79},\n\tdictWord{12, 10, 544},\n\tdictWord{14, 10, 237},\n\tdictWord{17, 10, 10},\n\tdictWord{146, 10, 20},\n\tdictWord{4, 0, 108},\n\tdictWord{7, 0, 804},\n\tdictWord{139, 0, 498},\n\tdictWord{132, 11, 887},\n\tdictWord{6, 0, 1119},\n\tdictWord{135, 11, 620},\n\tdictWord{6, 11, 165},\n\tdictWord{138, 11, 388},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t244,\n\t},\n\tdictWord{5, 10, 499},\n\tdictWord{6, 10, 476},\n\tdictWord{7, 10, 600},\n\tdictWord{7, 10, 888},\n\tdictWord{135, 10, 1096},\n\tdictWord{140, 0, 609},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1005,\n\t},\n\tdictWord{4, 0, 412},\n\tdictWord{133, 0, 581},\n\tdictWord{4, 11, 719},\n\tdictWord{135, 11, 155},\n\tdictWord{7, 10, 296},\n\tdictWord{7, 10, 596},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t560,\n\t},\n\tdictWord{8, 10, 586},\n\tdictWord{9, 10, 612},\n\tdictWord{11, 10, 304},\n\tdictWord{12, 10, 46},\n\tdictWord{13, 10, 89},\n\tdictWord{14, 10, 112},\n\tdictWord{\n\t\t145,\n\t\t10,\n\t\t122,\n\t},\n\tdictWord{4, 0, 895},\n\tdictWord{133, 0, 772},\n\tdictWord{142, 11, 307},\n\tdictWord{135, 0, 1898},\n\tdictWord{4, 0, 926},\n\tdictWord{133, 0, 983},\n\tdictWord{4, 11, 353},\n\tdictWord{6, 11, 146},\n\tdictWord{6, 11, 1789},\n\tdictWord{7, 11, 288},\n\tdictWord{7, 11, 990},\n\tdictWord{7, 11, 1348},\n\tdictWord{9, 11, 665},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t898,\n\t},\n\tdictWord{11, 11, 893},\n\tdictWord{142, 11, 212},\n\tdictWord{132, 0, 538},\n\tdictWord{133, 11, 532},\n\tdictWord{6, 0, 294},\n\tdictWord{7, 0, 1267},\n\tdictWord{8, 0, 624},\n\tdictWord{141, 0, 496},\n\tdictWord{7, 0, 1325},\n\tdictWord{4, 11, 45},\n\tdictWord{135, 11, 1257},\n\tdictWord{138, 0, 301},\n\tdictWord{9, 0, 298},\n\tdictWord{12, 0, 291},\n\tdictWord{13, 0, 276},\n\tdictWord{14, 0, 6},\n\tdictWord{17, 0, 18},\n\tdictWord{21, 0, 32},\n\tdictWord{7, 10, 1599},\n\tdictWord{7, 10, 1723},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t79,\n\t},\n\tdictWord{8, 10, 106},\n\tdictWord{8, 10, 190},\n\tdictWord{8, 10, 302},\n\tdictWord{8, 10, 383},\n\tdictWord{8, 10, 713},\n\tdictWord{9, 10, 119},\n\tdictWord{9, 10, 233},\n\tdictWord{9, 10, 419},\n\tdictWord{9, 10, 471},\n\tdictWord{10, 10, 181},\n\tdictWord{10, 10, 406},\n\tdictWord{11, 10, 57},\n\tdictWord{11, 10, 85},\n\tdictWord{11, 10, 120},\n\tdictWord{11, 10, 177},\n\tdictWord{11, 10, 296},\n\tdictWord{11, 10, 382},\n\tdictWord{11, 10, 454},\n\tdictWord{11, 10, 758},\n\tdictWord{11, 10, 999},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t27,\n\t},\n\tdictWord{12, 10, 131},\n\tdictWord{12, 10, 245},\n\tdictWord{12, 10, 312},\n\tdictWord{12, 10, 446},\n\tdictWord{12, 10, 454},\n\tdictWord{13, 10, 98},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t426,\n\t},\n\tdictWord{13, 10, 508},\n\tdictWord{14, 10, 163},\n\tdictWord{14, 10, 272},\n\tdictWord{14, 10, 277},\n\tdictWord{14, 10, 370},\n\tdictWord{15, 10, 95},\n\tdictWord{15, 10, 138},\n\tdictWord{15, 10, 167},\n\tdictWord{17, 10, 38},\n\tdictWord{148, 10, 96},\n\tdictWord{132, 0, 757},\n\tdictWord{134, 0, 1263},\n\tdictWord{4, 0, 820},\n\tdictWord{134, 10, 1759},\n\tdictWord{133, 0, 722},\n\tdictWord{136, 11, 816},\n\tdictWord{138, 10, 372},\n\tdictWord{145, 10, 16},\n\tdictWord{134, 0, 1039},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t991,\n\t},\n\tdictWord{134, 0, 2028},\n\tdictWord{133, 10, 258},\n\tdictWord{7, 0, 1875},\n\tdictWord{139, 0, 124},\n\tdictWord{6, 11, 559},\n\tdictWord{6, 11, 1691},\n\tdictWord{135, 11, 586},\n\tdictWord{5, 0, 324},\n\tdictWord{7, 0, 881},\n\tdictWord{8, 10, 134},\n\tdictWord{9, 10, 788},\n\tdictWord{140, 10, 438},\n\tdictWord{7, 11, 1823},\n\tdictWord{139, 11, 693},\n\tdictWord{6, 0, 1348},\n\tdictWord{134, 0, 1545},\n\tdictWord{134, 0, 911},\n\tdictWord{132, 0, 954},\n\tdictWord{8, 0, 329},\n\tdictWord{8, 0, 414},\n\tdictWord{7, 10, 1948},\n\tdictWord{135, 10, 2004},\n\tdictWord{5, 0, 517},\n\tdictWord{6, 10, 439},\n\tdictWord{7, 10, 780},\n\tdictWord{135, 10, 1040},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t816,\n\t},\n\tdictWord{5, 10, 1},\n\tdictWord{6, 10, 81},\n\tdictWord{138, 10, 520},\n\tdictWord{9, 0, 713},\n\tdictWord{10, 0, 222},\n\tdictWord{5, 10, 482},\n\tdictWord{8, 10, 98},\n\tdictWord{10, 10, 700},\n\tdictWord{10, 10, 822},\n\tdictWord{11, 10, 302},\n\tdictWord{11, 10, 778},\n\tdictWord{12, 10, 50},\n\tdictWord{12, 10, 127},\n\tdictWord{12, 10, 396},\n\tdictWord{13, 10, 62},\n\tdictWord{13, 10, 328},\n\tdictWord{14, 10, 122},\n\tdictWord{147, 10, 72},\n\tdictWord{137, 0, 33},\n\tdictWord{5, 10, 2},\n\tdictWord{7, 10, 1494},\n\tdictWord{136, 10, 589},\n\tdictWord{6, 10, 512},\n\tdictWord{7, 10, 797},\n\tdictWord{8, 10, 253},\n\tdictWord{9, 10, 77},\n\tdictWord{10, 10, 1},\n\tdictWord{10, 11, 108},\n\tdictWord{10, 10, 129},\n\tdictWord{10, 10, 225},\n\tdictWord{11, 11, 116},\n\tdictWord{11, 10, 118},\n\tdictWord{11, 10, 226},\n\tdictWord{11, 10, 251},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t430,\n\t},\n\tdictWord{11, 10, 701},\n\tdictWord{11, 10, 974},\n\tdictWord{11, 10, 982},\n\tdictWord{12, 10, 64},\n\tdictWord{12, 10, 260},\n\tdictWord{12, 10, 488},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t690,\n\t},\n\tdictWord{134, 11, 456},\n\tdictWord{133, 11, 925},\n\tdictWord{5, 0, 150},\n\tdictWord{7, 0, 106},\n\tdictWord{7, 0, 774},\n\tdictWord{8, 0, 603},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t593,\n\t},\n\tdictWord{9, 0, 634},\n\tdictWord{10, 0, 44},\n\tdictWord{10, 0, 173},\n\tdictWord{11, 0, 462},\n\tdictWord{11, 0, 515},\n\tdictWord{13, 0, 216},\n\tdictWord{13, 0, 288},\n\tdictWord{142, 0, 400},\n\tdictWord{137, 10, 347},\n\tdictWord{5, 0, 748},\n\tdictWord{134, 0, 553},\n\tdictWord{12, 0, 108},\n\tdictWord{141, 0, 291},\n\tdictWord{7, 0, 420},\n\tdictWord{4, 10, 12},\n\tdictWord{7, 10, 522},\n\tdictWord{7, 10, 809},\n\tdictWord{8, 10, 797},\n\tdictWord{141, 10, 88},\n\tdictWord{6, 11, 193},\n\tdictWord{7, 11, 240},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1682,\n\t},\n\tdictWord{10, 11, 51},\n\tdictWord{10, 11, 640},\n\tdictWord{11, 11, 410},\n\tdictWord{13, 11, 82},\n\tdictWord{14, 11, 247},\n\tdictWord{14, 11, 331},\n\tdictWord{142, 11, 377},\n\tdictWord{133, 10, 528},\n\tdictWord{135, 0, 1777},\n\tdictWord{4, 0, 493},\n\tdictWord{144, 0, 55},\n\tdictWord{136, 11, 633},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t81,\n\t},\n\tdictWord{6, 0, 980},\n\tdictWord{136, 0, 321},\n\tdictWord{148, 10, 109},\n\tdictWord{5, 10, 266},\n\tdictWord{9, 10, 290},\n\tdictWord{9, 10, 364},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t293,\n\t},\n\tdictWord{11, 10, 606},\n\tdictWord{142, 10, 45},\n\tdictWord{6, 0, 568},\n\tdictWord{7, 0, 112},\n\tdictWord{7, 0, 1804},\n\tdictWord{8, 0, 362},\n\tdictWord{8, 0, 410},\n\tdictWord{8, 0, 830},\n\tdictWord{9, 0, 514},\n\tdictWord{11, 0, 649},\n\tdictWord{142, 0, 157},\n\tdictWord{4, 0, 74},\n\tdictWord{6, 0, 510},\n\tdictWord{6, 10, 594},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t121,\n\t},\n\tdictWord{10, 10, 49},\n\tdictWord{10, 10, 412},\n\tdictWord{139, 10, 834},\n\tdictWord{134, 0, 838},\n\tdictWord{136, 10, 748},\n\tdictWord{132, 10, 466},\n\tdictWord{132, 0, 625},\n\tdictWord{135, 11, 1443},\n\tdictWord{4, 11, 237},\n\tdictWord{135, 11, 514},\n\tdictWord{9, 10, 378},\n\tdictWord{141, 10, 162},\n\tdictWord{6, 0, 16},\n\tdictWord{6, 0, 158},\n\tdictWord{7, 0, 43},\n\tdictWord{7, 0, 129},\n\tdictWord{7, 0, 181},\n\tdictWord{8, 0, 276},\n\tdictWord{8, 0, 377},\n\tdictWord{10, 0, 523},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t816,\n\t},\n\tdictWord{12, 0, 455},\n\tdictWord{13, 0, 303},\n\tdictWord{142, 0, 135},\n\tdictWord{135, 0, 281},\n\tdictWord{4, 0, 1},\n\tdictWord{7, 0, 1143},\n\tdictWord{7, 0, 1463},\n\tdictWord{8, 0, 61},\n\tdictWord{9, 0, 207},\n\tdictWord{9, 0, 390},\n\tdictWord{9, 0, 467},\n\tdictWord{139, 0, 836},\n\tdictWord{6, 11, 392},\n\tdictWord{7, 11, 65},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t2019,\n\t},\n\tdictWord{132, 10, 667},\n\tdictWord{4, 0, 723},\n\tdictWord{5, 0, 895},\n\tdictWord{7, 0, 1031},\n\tdictWord{8, 0, 199},\n\tdictWord{8, 0, 340},\n\tdictWord{9, 0, 153},\n\tdictWord{9, 0, 215},\n\tdictWord{10, 0, 21},\n\tdictWord{10, 0, 59},\n\tdictWord{10, 0, 80},\n\tdictWord{10, 0, 224},\n\tdictWord{10, 0, 838},\n\tdictWord{11, 0, 229},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t652,\n\t},\n\tdictWord{12, 0, 192},\n\tdictWord{13, 0, 146},\n\tdictWord{142, 0, 91},\n\tdictWord{132, 0, 295},\n\tdictWord{137, 0, 51},\n\tdictWord{9, 11, 222},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t43,\n\t},\n\tdictWord{139, 11, 900},\n\tdictWord{5, 0, 309},\n\tdictWord{140, 0, 211},\n\tdictWord{5, 0, 125},\n\tdictWord{8, 0, 77},\n\tdictWord{138, 0, 15},\n\tdictWord{136, 11, 604},\n\tdictWord{138, 0, 789},\n\tdictWord{5, 0, 173},\n\tdictWord{4, 10, 39},\n\tdictWord{7, 10, 1843},\n\tdictWord{8, 10, 407},\n\tdictWord{11, 10, 144},\n\tdictWord{140, 10, 523},\n\tdictWord{138, 11, 265},\n\tdictWord{133, 0, 439},\n\tdictWord{132, 10, 510},\n\tdictWord{7, 0, 648},\n\tdictWord{7, 0, 874},\n\tdictWord{11, 0, 164},\n\tdictWord{12, 0, 76},\n\tdictWord{18, 0, 9},\n\tdictWord{7, 10, 1980},\n\tdictWord{10, 10, 487},\n\tdictWord{138, 10, 809},\n\tdictWord{12, 0, 111},\n\tdictWord{14, 0, 294},\n\tdictWord{19, 0, 45},\n\tdictWord{13, 10, 260},\n\tdictWord{146, 10, 63},\n\tdictWord{133, 11, 549},\n\tdictWord{134, 10, 570},\n\tdictWord{4, 0, 8},\n\tdictWord{7, 0, 1152},\n\tdictWord{7, 0, 1153},\n\tdictWord{7, 0, 1715},\n\tdictWord{9, 0, 374},\n\tdictWord{10, 0, 478},\n\tdictWord{139, 0, 648},\n\tdictWord{135, 0, 1099},\n\tdictWord{5, 0, 575},\n\tdictWord{6, 0, 354},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t701,\n\t},\n\tdictWord{7, 11, 36},\n\tdictWord{8, 11, 201},\n\tdictWord{136, 11, 605},\n\tdictWord{4, 10, 787},\n\tdictWord{136, 11, 156},\n\tdictWord{6, 0, 518},\n\tdictWord{\n\t\t149,\n\t\t11,\n\t\t13,\n\t},\n\tdictWord{140, 11, 224},\n\tdictWord{134, 0, 702},\n\tdictWord{132, 10, 516},\n\tdictWord{5, 11, 724},\n\tdictWord{10, 11, 305},\n\tdictWord{11, 11, 151},\n\tdictWord{12, 11, 33},\n\tdictWord{12, 11, 121},\n\tdictWord{12, 11, 381},\n\tdictWord{17, 11, 3},\n\tdictWord{17, 11, 27},\n\tdictWord{17, 11, 78},\n\tdictWord{18, 11, 18},\n\tdictWord{19, 11, 54},\n\tdictWord{149, 11, 5},\n\tdictWord{8, 0, 87},\n\tdictWord{4, 11, 523},\n\tdictWord{5, 11, 638},\n\tdictWord{11, 10, 887},\n\tdictWord{14, 10, 365},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t375,\n\t},\n\tdictWord{138, 0, 438},\n\tdictWord{136, 10, 821},\n\tdictWord{135, 11, 1908},\n\tdictWord{6, 11, 242},\n\tdictWord{7, 11, 227},\n\tdictWord{7, 11, 1581},\n\tdictWord{8, 11, 104},\n\tdictWord{9, 11, 113},\n\tdictWord{9, 11, 220},\n\tdictWord{9, 11, 427},\n\tdictWord{10, 11, 74},\n\tdictWord{10, 11, 239},\n\tdictWord{11, 11, 579},\n\tdictWord{11, 11, 1023},\n\tdictWord{13, 11, 4},\n\tdictWord{13, 11, 204},\n\tdictWord{13, 11, 316},\n\tdictWord{18, 11, 95},\n\tdictWord{148, 11, 86},\n\tdictWord{4, 0, 69},\n\tdictWord{5, 0, 122},\n\tdictWord{5, 0, 849},\n\tdictWord{6, 0, 1633},\n\tdictWord{9, 0, 656},\n\tdictWord{138, 0, 464},\n\tdictWord{7, 0, 1802},\n\tdictWord{4, 10, 10},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t786,\n\t},\n\tdictWord{135, 11, 861},\n\tdictWord{139, 0, 499},\n\tdictWord{7, 0, 476},\n\tdictWord{7, 0, 1592},\n\tdictWord{138, 0, 87},\n\tdictWord{133, 10, 684},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t840,\n\t},\n\tdictWord{134, 10, 27},\n\tdictWord{142, 0, 283},\n\tdictWord{6, 0, 1620},\n\tdictWord{7, 11, 1328},\n\tdictWord{136, 11, 494},\n\tdictWord{5, 0, 859},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1160,\n\t},\n\tdictWord{8, 0, 107},\n\tdictWord{9, 0, 291},\n\tdictWord{9, 0, 439},\n\tdictWord{10, 0, 663},\n\tdictWord{11, 0, 609},\n\tdictWord{140, 0, 197},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1306,\n\t},\n\tdictWord{8, 11, 505},\n\tdictWord{9, 11, 482},\n\tdictWord{10, 11, 126},\n\tdictWord{11, 11, 225},\n\tdictWord{12, 11, 347},\n\tdictWord{12, 11, 449},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t19,\n\t},\n\tdictWord{142, 11, 218},\n\tdictWord{5, 11, 268},\n\tdictWord{10, 11, 764},\n\tdictWord{12, 11, 120},\n\tdictWord{13, 11, 39},\n\tdictWord{145, 11, 127},\n\tdictWord{145, 10, 56},\n\tdictWord{7, 11, 1672},\n\tdictWord{10, 11, 472},\n\tdictWord{11, 11, 189},\n\tdictWord{143, 11, 51},\n\tdictWord{6, 10, 342},\n\tdictWord{6, 10, 496},\n\tdictWord{8, 10, 275},\n\tdictWord{137, 10, 206},\n\tdictWord{133, 0, 600},\n\tdictWord{4, 0, 117},\n\tdictWord{6, 0, 372},\n\tdictWord{7, 0, 1905},\n\tdictWord{142, 0, 323},\n\tdictWord{4, 10, 909},\n\tdictWord{5, 10, 940},\n\tdictWord{135, 11, 1471},\n\tdictWord{132, 10, 891},\n\tdictWord{4, 0, 722},\n\tdictWord{139, 0, 471},\n\tdictWord{4, 11, 384},\n\tdictWord{135, 11, 1022},\n\tdictWord{132, 10, 687},\n\tdictWord{9, 0, 5},\n\tdictWord{12, 0, 216},\n\tdictWord{12, 0, 294},\n\tdictWord{12, 0, 298},\n\tdictWord{12, 0, 400},\n\tdictWord{12, 0, 518},\n\tdictWord{13, 0, 229},\n\tdictWord{143, 0, 139},\n\tdictWord{135, 11, 1703},\n\tdictWord{7, 11, 1602},\n\tdictWord{10, 11, 698},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t212,\n\t},\n\tdictWord{141, 11, 307},\n\tdictWord{6, 10, 41},\n\tdictWord{141, 10, 160},\n\tdictWord{135, 11, 1077},\n\tdictWord{9, 11, 159},\n\tdictWord{11, 11, 28},\n\tdictWord{140, 11, 603},\n\tdictWord{4, 0, 514},\n\tdictWord{7, 0, 1304},\n\tdictWord{138, 0, 477},\n\tdictWord{134, 0, 1774},\n\tdictWord{9, 0, 88},\n\tdictWord{139, 0, 270},\n\tdictWord{5, 0, 12},\n\tdictWord{7, 0, 375},\n\tdictWord{9, 0, 438},\n\tdictWord{134, 10, 1718},\n\tdictWord{132, 11, 515},\n\tdictWord{136, 10, 778},\n\tdictWord{8, 11, 632},\n\tdictWord{8, 11, 697},\n\tdictWord{137, 11, 854},\n\tdictWord{6, 0, 362},\n\tdictWord{6, 0, 997},\n\tdictWord{146, 0, 51},\n\tdictWord{7, 0, 816},\n\tdictWord{7, 0, 1241},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t283,\n\t},\n\tdictWord{9, 0, 520},\n\tdictWord{10, 0, 213},\n\tdictWord{10, 0, 307},\n\tdictWord{10, 0, 463},\n\tdictWord{10, 0, 671},\n\tdictWord{10, 0, 746},\n\tdictWord{11, 0, 401},\n\tdictWord{11, 0, 794},\n\tdictWord{12, 0, 517},\n\tdictWord{18, 0, 107},\n\tdictWord{147, 0, 115},\n\tdictWord{133, 10, 115},\n\tdictWord{150, 11, 28},\n\tdictWord{4, 11, 136},\n\tdictWord{133, 11, 551},\n\tdictWord{142, 10, 314},\n\tdictWord{132, 0, 258},\n\tdictWord{6, 0, 22},\n\tdictWord{7, 0, 903},\n\tdictWord{7, 0, 1963},\n\tdictWord{8, 0, 639},\n\tdictWord{138, 0, 577},\n\tdictWord{5, 0, 681},\n\tdictWord{8, 0, 782},\n\tdictWord{13, 0, 130},\n\tdictWord{17, 0, 84},\n\tdictWord{5, 10, 193},\n\tdictWord{140, 10, 178},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t17,\n\t},\n\tdictWord{138, 11, 291},\n\tdictWord{7, 11, 1287},\n\tdictWord{9, 11, 44},\n\tdictWord{10, 11, 552},\n\tdictWord{10, 11, 642},\n\tdictWord{11, 11, 839},\n\tdictWord{12, 11, 274},\n\tdictWord{12, 11, 275},\n\tdictWord{12, 11, 372},\n\tdictWord{13, 11, 91},\n\tdictWord{142, 11, 125},\n\tdictWord{135, 10, 174},\n\tdictWord{4, 0, 664},\n\tdictWord{5, 0, 804},\n\tdictWord{139, 0, 1013},\n\tdictWord{134, 0, 942},\n\tdictWord{6, 0, 1349},\n\tdictWord{6, 0, 1353},\n\tdictWord{6, 0, 1450},\n\tdictWord{7, 11, 1518},\n\tdictWord{139, 11, 694},\n\tdictWord{11, 0, 356},\n\tdictWord{4, 10, 122},\n\tdictWord{5, 10, 796},\n\tdictWord{5, 10, 952},\n\tdictWord{6, 10, 1660},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1671,\n\t},\n\tdictWord{8, 10, 567},\n\tdictWord{9, 10, 687},\n\tdictWord{9, 10, 742},\n\tdictWord{10, 10, 686},\n\tdictWord{11, 10, 682},\n\tdictWord{140, 10, 281},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t32,\n\t},\n\tdictWord{6, 11, 147},\n\tdictWord{7, 11, 886},\n\tdictWord{9, 11, 753},\n\tdictWord{138, 11, 268},\n\tdictWord{5, 10, 179},\n\tdictWord{7, 10, 1095},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1213,\n\t},\n\tdictWord{4, 10, 66},\n\tdictWord{7, 10, 722},\n\tdictWord{135, 10, 904},\n\tdictWord{135, 10, 352},\n\tdictWord{9, 11, 245},\n\tdictWord{138, 11, 137},\n\tdictWord{4, 0, 289},\n\tdictWord{7, 0, 629},\n\tdictWord{7, 0, 1698},\n\tdictWord{7, 0, 1711},\n\tdictWord{12, 0, 215},\n\tdictWord{133, 11, 414},\n\tdictWord{6, 0, 1975},\n\tdictWord{135, 11, 1762},\n\tdictWord{6, 0, 450},\n\tdictWord{136, 0, 109},\n\tdictWord{141, 10, 35},\n\tdictWord{134, 11, 599},\n\tdictWord{136, 0, 705},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t664,\n\t},\n\tdictWord{134, 11, 1749},\n\tdictWord{11, 11, 402},\n\tdictWord{12, 11, 109},\n\tdictWord{12, 11, 431},\n\tdictWord{13, 11, 179},\n\tdictWord{13, 11, 206},\n\tdictWord{14, 11, 175},\n\tdictWord{14, 11, 217},\n\tdictWord{16, 11, 3},\n\tdictWord{148, 11, 53},\n\tdictWord{135, 0, 1238},\n\tdictWord{134, 11, 1627},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t488,\n\t},\n\tdictWord{13, 0, 318},\n\tdictWord{10, 10, 592},\n\tdictWord{10, 10, 753},\n\tdictWord{12, 10, 317},\n\tdictWord{12, 10, 355},\n\tdictWord{12, 10, 465},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t469,\n\t},\n\tdictWord{12, 10, 560},\n\tdictWord{140, 10, 578},\n\tdictWord{133, 10, 564},\n\tdictWord{132, 11, 83},\n\tdictWord{140, 11, 676},\n\tdictWord{6, 0, 1872},\n\tdictWord{6, 0, 1906},\n\tdictWord{6, 0, 1907},\n\tdictWord{9, 0, 934},\n\tdictWord{9, 0, 956},\n\tdictWord{9, 0, 960},\n\tdictWord{9, 0, 996},\n\tdictWord{12, 0, 794},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t876,\n\t},\n\tdictWord{12, 0, 880},\n\tdictWord{12, 0, 918},\n\tdictWord{15, 0, 230},\n\tdictWord{18, 0, 234},\n\tdictWord{18, 0, 238},\n\tdictWord{21, 0, 38},\n\tdictWord{149, 0, 62},\n\tdictWord{134, 10, 556},\n\tdictWord{134, 11, 278},\n\tdictWord{137, 0, 103},\n\tdictWord{7, 10, 544},\n\tdictWord{8, 10, 719},\n\tdictWord{138, 10, 61},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t5,\n\t},\n\tdictWord{5, 10, 498},\n\tdictWord{8, 10, 637},\n\tdictWord{137, 10, 521},\n\tdictWord{7, 0, 777},\n\tdictWord{12, 0, 229},\n\tdictWord{12, 0, 239},\n\tdictWord{15, 0, 12},\n\tdictWord{12, 11, 229},\n\tdictWord{12, 11, 239},\n\tdictWord{143, 11, 12},\n\tdictWord{6, 0, 26},\n\tdictWord{7, 11, 388},\n\tdictWord{7, 11, 644},\n\tdictWord{139, 11, 781},\n\tdictWord{7, 11, 229},\n\tdictWord{8, 11, 59},\n\tdictWord{9, 11, 190},\n\tdictWord{9, 11, 257},\n\tdictWord{10, 11, 378},\n\tdictWord{140, 11, 191},\n\tdictWord{133, 10, 927},\n\tdictWord{135, 10, 1441},\n\tdictWord{4, 10, 893},\n\tdictWord{5, 10, 780},\n\tdictWord{133, 10, 893},\n\tdictWord{4, 0, 414},\n\tdictWord{5, 0, 467},\n\tdictWord{9, 0, 654},\n\tdictWord{10, 0, 451},\n\tdictWord{12, 0, 59},\n\tdictWord{141, 0, 375},\n\tdictWord{142, 0, 173},\n\tdictWord{135, 0, 17},\n\tdictWord{7, 0, 1350},\n\tdictWord{133, 10, 238},\n\tdictWord{135, 0, 955},\n\tdictWord{4, 0, 960},\n\tdictWord{10, 0, 887},\n\tdictWord{12, 0, 753},\n\tdictWord{18, 0, 161},\n\tdictWord{18, 0, 162},\n\tdictWord{152, 0, 19},\n\tdictWord{136, 11, 344},\n\tdictWord{6, 10, 1729},\n\tdictWord{137, 11, 288},\n\tdictWord{132, 11, 660},\n\tdictWord{4, 0, 217},\n\tdictWord{5, 0, 710},\n\tdictWord{7, 0, 760},\n\tdictWord{7, 0, 1926},\n\tdictWord{9, 0, 428},\n\tdictWord{9, 0, 708},\n\tdictWord{10, 0, 254},\n\tdictWord{10, 0, 296},\n\tdictWord{10, 0, 720},\n\tdictWord{11, 0, 109},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t255,\n\t},\n\tdictWord{12, 0, 165},\n\tdictWord{12, 0, 315},\n\tdictWord{13, 0, 107},\n\tdictWord{13, 0, 203},\n\tdictWord{14, 0, 54},\n\tdictWord{14, 0, 99},\n\tdictWord{14, 0, 114},\n\tdictWord{14, 0, 388},\n\tdictWord{16, 0, 85},\n\tdictWord{17, 0, 9},\n\tdictWord{17, 0, 33},\n\tdictWord{20, 0, 25},\n\tdictWord{20, 0, 28},\n\tdictWord{20, 0, 29},\n\tdictWord{21, 0, 9},\n\tdictWord{21, 0, 10},\n\tdictWord{21, 0, 34},\n\tdictWord{22, 0, 17},\n\tdictWord{4, 10, 60},\n\tdictWord{7, 10, 1800},\n\tdictWord{8, 10, 314},\n\tdictWord{9, 10, 700},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t487,\n\t},\n\tdictWord{7, 11, 1035},\n\tdictWord{138, 11, 737},\n\tdictWord{7, 11, 690},\n\tdictWord{9, 11, 217},\n\tdictWord{9, 11, 587},\n\tdictWord{140, 11, 521},\n\tdictWord{6, 0, 919},\n\tdictWord{7, 11, 706},\n\tdictWord{7, 11, 1058},\n\tdictWord{138, 11, 538},\n\tdictWord{7, 10, 1853},\n\tdictWord{138, 10, 437},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t419,\n\t},\n\tdictWord{6, 0, 280},\n\tdictWord{10, 0, 502},\n\tdictWord{11, 0, 344},\n\tdictWord{140, 0, 38},\n\tdictWord{5, 0, 45},\n\tdictWord{7, 0, 1161},\n\tdictWord{11, 0, 448},\n\tdictWord{11, 0, 880},\n\tdictWord{13, 0, 139},\n\tdictWord{13, 0, 407},\n\tdictWord{15, 0, 16},\n\tdictWord{17, 0, 95},\n\tdictWord{18, 0, 66},\n\tdictWord{18, 0, 88},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t123,\n\t},\n\tdictWord{149, 0, 7},\n\tdictWord{11, 11, 92},\n\tdictWord{11, 11, 196},\n\tdictWord{11, 11, 409},\n\tdictWord{11, 11, 450},\n\tdictWord{11, 11, 666},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t777,\n\t},\n\tdictWord{12, 11, 262},\n\tdictWord{13, 11, 385},\n\tdictWord{13, 11, 393},\n\tdictWord{15, 11, 115},\n\tdictWord{16, 11, 45},\n\tdictWord{145, 11, 82},\n\tdictWord{136, 0, 777},\n\tdictWord{134, 11, 1744},\n\tdictWord{4, 0, 410},\n\tdictWord{7, 0, 521},\n\tdictWord{133, 10, 828},\n\tdictWord{134, 0, 673},\n\tdictWord{7, 0, 1110},\n\tdictWord{7, 0, 1778},\n\tdictWord{7, 10, 176},\n\tdictWord{135, 10, 178},\n\tdictWord{5, 10, 806},\n\tdictWord{7, 11, 268},\n\tdictWord{7, 10, 1976},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t569,\n\t},\n\tdictWord{4, 11, 733},\n\tdictWord{9, 11, 194},\n\tdictWord{10, 11, 92},\n\tdictWord{11, 11, 198},\n\tdictWord{12, 11, 84},\n\tdictWord{12, 11, 87},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t128,\n\t},\n\tdictWord{144, 11, 74},\n\tdictWord{5, 0, 341},\n\tdictWord{7, 0, 1129},\n\tdictWord{11, 0, 414},\n\tdictWord{4, 10, 51},\n\tdictWord{6, 10, 4},\n\tdictWord{7, 10, 591},\n\tdictWord{7, 10, 849},\n\tdictWord{7, 10, 951},\n\tdictWord{7, 10, 1613},\n\tdictWord{7, 10, 1760},\n\tdictWord{7, 10, 1988},\n\tdictWord{9, 10, 434},\n\tdictWord{10, 10, 754},\n\tdictWord{11, 10, 25},\n\tdictWord{139, 10, 37},\n\tdictWord{133, 10, 902},\n\tdictWord{135, 10, 928},\n\tdictWord{135, 0, 787},\n\tdictWord{132, 0, 436},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t270,\n\t},\n\tdictWord{7, 0, 1587},\n\tdictWord{135, 0, 1707},\n\tdictWord{6, 0, 377},\n\tdictWord{7, 0, 1025},\n\tdictWord{9, 0, 613},\n\tdictWord{145, 0, 104},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t982,\n\t},\n\tdictWord{7, 11, 1361},\n\tdictWord{10, 11, 32},\n\tdictWord{143, 11, 56},\n\tdictWord{139, 0, 96},\n\tdictWord{132, 0, 451},\n\tdictWord{132, 10, 416},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t372,\n\t},\n\tdictWord{5, 10, 152},\n\tdictWord{5, 10, 197},\n\tdictWord{7, 11, 306},\n\tdictWord{7, 10, 340},\n\tdictWord{7, 10, 867},\n\tdictWord{10, 10, 548},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t581,\n\t},\n\tdictWord{11, 10, 6},\n\tdictWord{12, 10, 3},\n\tdictWord{12, 10, 19},\n\tdictWord{14, 10, 110},\n\tdictWord{142, 10, 289},\n\tdictWord{134, 0, 680},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t609,\n\t},\n\tdictWord{7, 0, 483},\n\tdictWord{7, 10, 190},\n\tdictWord{8, 10, 28},\n\tdictWord{8, 10, 141},\n\tdictWord{8, 10, 444},\n\tdictWord{8, 10, 811},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t468,\n\t},\n\tdictWord{11, 10, 334},\n\tdictWord{12, 10, 24},\n\tdictWord{12, 10, 386},\n\tdictWord{140, 10, 576},\n\tdictWord{10, 0, 916},\n\tdictWord{133, 10, 757},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t721,\n\t},\n\tdictWord{135, 10, 1553},\n\tdictWord{133, 11, 178},\n\tdictWord{134, 0, 937},\n\tdictWord{132, 10, 898},\n\tdictWord{133, 0, 739},\n\tdictWord{\n\t\t147,\n\t\t0,\n\t\t82,\n\t},\n\tdictWord{135, 0, 663},\n\tdictWord{146, 0, 128},\n\tdictWord{5, 10, 277},\n\tdictWord{141, 10, 247},\n\tdictWord{134, 0, 1087},\n\tdictWord{132, 10, 435},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t381,\n\t},\n\tdictWord{7, 11, 645},\n\tdictWord{7, 11, 694},\n\tdictWord{136, 11, 546},\n\tdictWord{7, 0, 503},\n\tdictWord{135, 0, 1885},\n\tdictWord{6, 0, 1965},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t925,\n\t},\n\tdictWord{138, 0, 955},\n\tdictWord{4, 0, 113},\n\tdictWord{5, 0, 163},\n\tdictWord{5, 0, 735},\n\tdictWord{7, 0, 1009},\n\tdictWord{9, 0, 9},\n\tdictWord{9, 0, 771},\n\tdictWord{12, 0, 90},\n\tdictWord{13, 0, 138},\n\tdictWord{13, 0, 410},\n\tdictWord{143, 0, 128},\n\tdictWord{4, 0, 324},\n\tdictWord{138, 0, 104},\n\tdictWord{7, 0, 460},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t265,\n\t},\n\tdictWord{134, 10, 212},\n\tdictWord{133, 11, 105},\n\tdictWord{7, 11, 261},\n\tdictWord{7, 11, 1107},\n\tdictWord{7, 11, 1115},\n\tdictWord{7, 11, 1354},\n\tdictWord{7, 11, 1588},\n\tdictWord{7, 11, 1705},\n\tdictWord{7, 11, 1902},\n\tdictWord{9, 11, 465},\n\tdictWord{10, 11, 248},\n\tdictWord{10, 11, 349},\n\tdictWord{10, 11, 647},\n\tdictWord{11, 11, 527},\n\tdictWord{11, 11, 660},\n\tdictWord{11, 11, 669},\n\tdictWord{12, 11, 529},\n\tdictWord{141, 11, 305},\n\tdictWord{5, 11, 438},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t694,\n\t},\n\tdictWord{12, 11, 627},\n\tdictWord{141, 11, 210},\n\tdictWord{152, 11, 11},\n\tdictWord{4, 0, 935},\n\tdictWord{133, 0, 823},\n\tdictWord{132, 10, 702},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t269,\n\t},\n\tdictWord{7, 0, 434},\n\tdictWord{7, 0, 891},\n\tdictWord{8, 0, 339},\n\tdictWord{9, 0, 702},\n\tdictWord{11, 0, 594},\n\tdictWord{11, 0, 718},\n\tdictWord{17, 0, 100},\n\tdictWord{5, 10, 808},\n\tdictWord{135, 10, 2045},\n\tdictWord{7, 0, 1014},\n\tdictWord{9, 0, 485},\n\tdictWord{141, 0, 264},\n\tdictWord{134, 0, 1713},\n\tdictWord{7, 0, 1810},\n\tdictWord{11, 0, 866},\n\tdictWord{12, 0, 103},\n\tdictWord{13, 0, 495},\n\tdictWord{140, 11, 233},\n\tdictWord{4, 0, 423},\n\tdictWord{10, 0, 949},\n\tdictWord{138, 0, 1013},\n\tdictWord{135, 0, 900},\n\tdictWord{8, 11, 25},\n\tdictWord{138, 11, 826},\n\tdictWord{5, 10, 166},\n\tdictWord{8, 10, 739},\n\tdictWord{140, 10, 511},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t2018,\n\t},\n\tdictWord{7, 11, 1270},\n\tdictWord{139, 11, 612},\n\tdictWord{4, 10, 119},\n\tdictWord{5, 10, 170},\n\tdictWord{5, 10, 447},\n\tdictWord{7, 10, 1708},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1889,\n\t},\n\tdictWord{9, 10, 357},\n\tdictWord{9, 10, 719},\n\tdictWord{12, 10, 486},\n\tdictWord{140, 10, 596},\n\tdictWord{12, 0, 574},\n\tdictWord{140, 11, 574},\n\tdictWord{132, 11, 308},\n\tdictWord{6, 0, 964},\n\tdictWord{6, 0, 1206},\n\tdictWord{134, 0, 1302},\n\tdictWord{4, 10, 450},\n\tdictWord{135, 10, 1158},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t150,\n\t},\n\tdictWord{136, 11, 649},\n\tdictWord{14, 0, 213},\n\tdictWord{148, 0, 38},\n\tdictWord{9, 11, 45},\n\tdictWord{9, 11, 311},\n\tdictWord{141, 11, 42},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t521,\n\t},\n\tdictWord{7, 10, 1375},\n\tdictWord{7, 10, 1466},\n\tdictWord{138, 10, 331},\n\tdictWord{132, 10, 754},\n\tdictWord{5, 11, 339},\n\tdictWord{7, 11, 1442},\n\tdictWord{14, 11, 3},\n\tdictWord{15, 11, 41},\n\tdictWord{147, 11, 66},\n\tdictWord{136, 11, 378},\n\tdictWord{134, 0, 1022},\n\tdictWord{5, 10, 850},\n\tdictWord{136, 10, 799},\n\tdictWord{142, 0, 143},\n\tdictWord{135, 0, 2029},\n\tdictWord{134, 11, 1628},\n\tdictWord{8, 0, 523},\n\tdictWord{150, 0, 34},\n\tdictWord{5, 0, 625},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1617,\n\t},\n\tdictWord{7, 0, 275},\n\tdictWord{7, 10, 238},\n\tdictWord{7, 10, 2033},\n\tdictWord{8, 10, 120},\n\tdictWord{8, 10, 188},\n\tdictWord{8, 10, 659},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t598,\n\t},\n\tdictWord{10, 10, 466},\n\tdictWord{12, 10, 342},\n\tdictWord{12, 10, 588},\n\tdictWord{13, 10, 503},\n\tdictWord{14, 10, 246},\n\tdictWord{143, 10, 92},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t37,\n\t},\n\tdictWord{8, 0, 425},\n\tdictWord{8, 0, 693},\n\tdictWord{9, 0, 720},\n\tdictWord{10, 0, 380},\n\tdictWord{10, 0, 638},\n\tdictWord{11, 0, 273},\n\tdictWord{11, 0, 473},\n\tdictWord{12, 0, 61},\n\tdictWord{143, 0, 43},\n\tdictWord{135, 11, 829},\n\tdictWord{135, 0, 1943},\n\tdictWord{132, 0, 765},\n\tdictWord{5, 11, 486},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1349,\n\t},\n\tdictWord{7, 11, 1635},\n\tdictWord{8, 11, 17},\n\tdictWord{10, 11, 217},\n\tdictWord{138, 11, 295},\n\tdictWord{4, 10, 201},\n\tdictWord{7, 10, 1744},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t602,\n\t},\n\tdictWord{11, 10, 247},\n\tdictWord{11, 10, 826},\n\tdictWord{145, 10, 65},\n\tdictWord{138, 11, 558},\n\tdictWord{11, 0, 551},\n\tdictWord{142, 0, 159},\n\tdictWord{8, 10, 164},\n\tdictWord{146, 10, 62},\n\tdictWord{139, 11, 176},\n\tdictWord{132, 0, 168},\n\tdictWord{136, 0, 1010},\n\tdictWord{134, 0, 1994},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t91,\n\t},\n\tdictWord{138, 0, 532},\n\tdictWord{135, 10, 1243},\n\tdictWord{135, 0, 1884},\n\tdictWord{132, 10, 907},\n\tdictWord{5, 10, 100},\n\tdictWord{10, 10, 329},\n\tdictWord{12, 10, 416},\n\tdictWord{149, 10, 29},\n\tdictWord{134, 11, 447},\n\tdictWord{132, 10, 176},\n\tdictWord{5, 10, 636},\n\tdictWord{5, 10, 998},\n\tdictWord{7, 10, 9},\n\tdictWord{7, 10, 1508},\n\tdictWord{8, 10, 26},\n\tdictWord{9, 10, 317},\n\tdictWord{9, 10, 358},\n\tdictWord{10, 10, 210},\n\tdictWord{10, 10, 292},\n\tdictWord{10, 10, 533},\n\tdictWord{11, 10, 555},\n\tdictWord{12, 10, 526},\n\tdictWord{12, 10, 607},\n\tdictWord{13, 10, 263},\n\tdictWord{13, 10, 459},\n\tdictWord{142, 10, 271},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t609,\n\t},\n\tdictWord{135, 11, 756},\n\tdictWord{6, 0, 15},\n\tdictWord{7, 0, 70},\n\tdictWord{10, 0, 240},\n\tdictWord{147, 0, 93},\n\tdictWord{4, 11, 930},\n\tdictWord{133, 11, 947},\n\tdictWord{134, 0, 1227},\n\tdictWord{134, 0, 1534},\n\tdictWord{133, 11, 939},\n\tdictWord{133, 11, 962},\n\tdictWord{5, 11, 651},\n\tdictWord{8, 11, 170},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t61,\n\t},\n\tdictWord{9, 11, 63},\n\tdictWord{10, 11, 23},\n\tdictWord{10, 11, 37},\n\tdictWord{10, 11, 834},\n\tdictWord{11, 11, 4},\n\tdictWord{11, 11, 187},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t281,\n\t},\n\tdictWord{11, 11, 503},\n\tdictWord{11, 11, 677},\n\tdictWord{12, 11, 96},\n\tdictWord{12, 11, 130},\n\tdictWord{12, 11, 244},\n\tdictWord{14, 11, 5},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t40,\n\t},\n\tdictWord{14, 11, 162},\n\tdictWord{14, 11, 202},\n\tdictWord{146, 11, 133},\n\tdictWord{4, 11, 406},\n\tdictWord{5, 11, 579},\n\tdictWord{12, 11, 492},\n\tdictWord{\n\t\t150,\n\t\t11,\n\t\t15,\n\t},\n\tdictWord{139, 0, 392},\n\tdictWord{6, 10, 610},\n\tdictWord{10, 10, 127},\n\tdictWord{141, 10, 27},\n\tdictWord{7, 0, 655},\n\tdictWord{7, 0, 1844},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t119,\n\t},\n\tdictWord{4, 0, 145},\n\tdictWord{6, 0, 176},\n\tdictWord{7, 0, 395},\n\tdictWord{137, 0, 562},\n\tdictWord{132, 0, 501},\n\tdictWord{140, 11, 145},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t1019,\n\t},\n\tdictWord{134, 0, 509},\n\tdictWord{139, 0, 267},\n\tdictWord{6, 11, 17},\n\tdictWord{7, 11, 16},\n\tdictWord{7, 11, 1001},\n\tdictWord{7, 11, 1982},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t886,\n\t},\n\tdictWord{10, 11, 489},\n\tdictWord{10, 11, 800},\n\tdictWord{11, 11, 782},\n\tdictWord{12, 11, 320},\n\tdictWord{13, 11, 467},\n\tdictWord{14, 11, 145},\n\tdictWord{14, 11, 387},\n\tdictWord{143, 11, 119},\n\tdictWord{145, 11, 17},\n\tdictWord{6, 0, 1099},\n\tdictWord{133, 11, 458},\n\tdictWord{7, 11, 1983},\n\tdictWord{8, 11, 0},\n\tdictWord{8, 11, 171},\n\tdictWord{9, 11, 120},\n\tdictWord{9, 11, 732},\n\tdictWord{10, 11, 473},\n\tdictWord{11, 11, 656},\n\tdictWord{11, 11, 998},\n\tdictWord{18, 11, 0},\n\tdictWord{18, 11, 2},\n\tdictWord{147, 11, 21},\n\tdictWord{12, 11, 427},\n\tdictWord{146, 11, 38},\n\tdictWord{10, 0, 948},\n\tdictWord{138, 0, 968},\n\tdictWord{7, 10, 126},\n\tdictWord{136, 10, 84},\n\tdictWord{136, 10, 790},\n\tdictWord{4, 0, 114},\n\tdictWord{9, 0, 492},\n\tdictWord{13, 0, 462},\n\tdictWord{142, 0, 215},\n\tdictWord{6, 10, 64},\n\tdictWord{12, 10, 377},\n\tdictWord{141, 10, 309},\n\tdictWord{4, 0, 77},\n\tdictWord{5, 0, 361},\n\tdictWord{6, 0, 139},\n\tdictWord{6, 0, 401},\n\tdictWord{6, 0, 404},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t413,\n\t},\n\tdictWord{7, 0, 715},\n\tdictWord{7, 0, 1716},\n\tdictWord{11, 0, 279},\n\tdictWord{12, 0, 179},\n\tdictWord{12, 0, 258},\n\tdictWord{13, 0, 244},\n\tdictWord{142, 0, 358},\n\tdictWord{134, 0, 1717},\n\tdictWord{7, 0, 772},\n\tdictWord{7, 0, 1061},\n\tdictWord{7, 0, 1647},\n\tdictWord{8, 0, 82},\n\tdictWord{11, 0, 250},\n\tdictWord{11, 0, 607},\n\tdictWord{12, 0, 311},\n\tdictWord{12, 0, 420},\n\tdictWord{13, 0, 184},\n\tdictWord{13, 0, 367},\n\tdictWord{7, 10, 1104},\n\tdictWord{11, 10, 269},\n\tdictWord{11, 10, 539},\n\tdictWord{11, 10, 627},\n\tdictWord{11, 10, 706},\n\tdictWord{11, 10, 975},\n\tdictWord{12, 10, 248},\n\tdictWord{12, 10, 434},\n\tdictWord{12, 10, 600},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t622,\n\t},\n\tdictWord{13, 10, 297},\n\tdictWord{13, 10, 485},\n\tdictWord{14, 10, 69},\n\tdictWord{14, 10, 409},\n\tdictWord{143, 10, 108},\n\tdictWord{135, 0, 724},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t512,\n\t},\n\tdictWord{4, 11, 519},\n\tdictWord{133, 11, 342},\n\tdictWord{134, 0, 1133},\n\tdictWord{145, 11, 29},\n\tdictWord{11, 10, 977},\n\tdictWord{141, 10, 507},\n\tdictWord{6, 0, 841},\n\tdictWord{6, 0, 1042},\n\tdictWord{6, 0, 1194},\n\tdictWord{10, 0, 993},\n\tdictWord{140, 0, 1021},\n\tdictWord{6, 11, 31},\n\tdictWord{7, 11, 491},\n\tdictWord{7, 11, 530},\n\tdictWord{8, 11, 592},\n\tdictWord{9, 10, 34},\n\tdictWord{11, 11, 53},\n\tdictWord{11, 10, 484},\n\tdictWord{11, 11, 779},\n\tdictWord{12, 11, 167},\n\tdictWord{12, 11, 411},\n\tdictWord{14, 11, 14},\n\tdictWord{14, 11, 136},\n\tdictWord{15, 11, 72},\n\tdictWord{16, 11, 17},\n\tdictWord{144, 11, 72},\n\tdictWord{4, 0, 1021},\n\tdictWord{6, 0, 2037},\n\tdictWord{133, 11, 907},\n\tdictWord{7, 0, 373},\n\tdictWord{8, 0, 335},\n\tdictWord{8, 0, 596},\n\tdictWord{9, 0, 488},\n\tdictWord{6, 10, 1700},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t293,\n\t},\n\tdictWord{7, 10, 382},\n\tdictWord{7, 10, 1026},\n\tdictWord{7, 10, 1087},\n\tdictWord{7, 10, 2027},\n\tdictWord{8, 10, 252},\n\tdictWord{8, 10, 727},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t729,\n\t},\n\tdictWord{9, 10, 30},\n\tdictWord{9, 10, 199},\n\tdictWord{9, 10, 231},\n\tdictWord{9, 10, 251},\n\tdictWord{9, 10, 334},\n\tdictWord{9, 10, 361},\n\tdictWord{9, 10, 712},\n\tdictWord{10, 10, 55},\n\tdictWord{10, 10, 60},\n\tdictWord{10, 10, 232},\n\tdictWord{10, 10, 332},\n\tdictWord{10, 10, 384},\n\tdictWord{10, 10, 396},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t504,\n\t},\n\tdictWord{10, 10, 542},\n\tdictWord{10, 10, 652},\n\tdictWord{11, 10, 20},\n\tdictWord{11, 10, 48},\n\tdictWord{11, 10, 207},\n\tdictWord{11, 10, 291},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t298,\n\t},\n\tdictWord{11, 10, 342},\n\tdictWord{11, 10, 365},\n\tdictWord{11, 10, 394},\n\tdictWord{11, 10, 620},\n\tdictWord{11, 10, 705},\n\tdictWord{11, 10, 1017},\n\tdictWord{12, 10, 123},\n\tdictWord{12, 10, 340},\n\tdictWord{12, 10, 406},\n\tdictWord{12, 10, 643},\n\tdictWord{13, 10, 61},\n\tdictWord{13, 10, 269},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t311,\n\t},\n\tdictWord{13, 10, 319},\n\tdictWord{13, 10, 486},\n\tdictWord{14, 10, 234},\n\tdictWord{15, 10, 62},\n\tdictWord{15, 10, 85},\n\tdictWord{16, 10, 71},\n\tdictWord{\n\t\t18,\n\t\t10,\n\t\t119,\n\t},\n\tdictWord{148, 10, 105},\n\tdictWord{150, 0, 37},\n\tdictWord{4, 11, 208},\n\tdictWord{5, 11, 106},\n\tdictWord{6, 11, 531},\n\tdictWord{8, 11, 408},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t188,\n\t},\n\tdictWord{138, 11, 572},\n\tdictWord{132, 0, 564},\n\tdictWord{6, 0, 513},\n\tdictWord{135, 0, 1052},\n\tdictWord{132, 0, 825},\n\tdictWord{9, 0, 899},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t441,\n\t},\n\tdictWord{134, 0, 778},\n\tdictWord{133, 11, 379},\n\tdictWord{7, 0, 1417},\n\tdictWord{12, 0, 382},\n\tdictWord{17, 0, 48},\n\tdictWord{152, 0, 12},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t241,\n\t},\n\tdictWord{7, 0, 1116},\n\tdictWord{6, 10, 379},\n\tdictWord{7, 10, 270},\n\tdictWord{8, 10, 176},\n\tdictWord{8, 10, 183},\n\tdictWord{9, 10, 432},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t661,\n\t},\n\tdictWord{12, 10, 247},\n\tdictWord{12, 10, 617},\n\tdictWord{146, 10, 125},\n\tdictWord{5, 10, 792},\n\tdictWord{133, 10, 900},\n\tdictWord{6, 0, 545},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t565,\n\t},\n\tdictWord{7, 0, 1669},\n\tdictWord{10, 0, 114},\n\tdictWord{11, 0, 642},\n\tdictWord{140, 0, 618},\n\tdictWord{133, 0, 5},\n\tdictWord{138, 11, 7},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t259,\n\t},\n\tdictWord{135, 0, 192},\n\tdictWord{134, 0, 701},\n\tdictWord{136, 0, 763},\n\tdictWord{135, 10, 1979},\n\tdictWord{4, 10, 901},\n\tdictWord{133, 10, 776},\n\tdictWord{10, 0, 755},\n\tdictWord{147, 0, 29},\n\tdictWord{133, 0, 759},\n\tdictWord{4, 11, 173},\n\tdictWord{5, 11, 312},\n\tdictWord{5, 11, 512},\n\tdictWord{135, 11, 1285},\n\tdictWord{7, 11, 1603},\n\tdictWord{7, 11, 1691},\n\tdictWord{9, 11, 464},\n\tdictWord{11, 11, 195},\n\tdictWord{12, 11, 279},\n\tdictWord{12, 11, 448},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t11,\n\t},\n\tdictWord{147, 11, 102},\n\tdictWord{7, 0, 370},\n\tdictWord{7, 0, 1007},\n\tdictWord{7, 0, 1177},\n\tdictWord{135, 0, 1565},\n\tdictWord{135, 0, 1237},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t87,\n\t},\n\tdictWord{5, 0, 250},\n\tdictWord{141, 0, 298},\n\tdictWord{4, 11, 452},\n\tdictWord{5, 11, 583},\n\tdictWord{5, 11, 817},\n\tdictWord{6, 11, 433},\n\tdictWord{7, 11, 593},\n\tdictWord{7, 11, 720},\n\tdictWord{7, 11, 1378},\n\tdictWord{8, 11, 161},\n\tdictWord{9, 11, 284},\n\tdictWord{10, 11, 313},\n\tdictWord{139, 11, 886},\n\tdictWord{4, 11, 547},\n\tdictWord{135, 11, 1409},\n\tdictWord{136, 11, 722},\n\tdictWord{4, 10, 37},\n\tdictWord{5, 10, 334},\n\tdictWord{135, 10, 1253},\n\tdictWord{132, 10, 508},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t107,\n\t},\n\tdictWord{146, 0, 31},\n\tdictWord{8, 11, 420},\n\tdictWord{139, 11, 193},\n\tdictWord{135, 0, 814},\n\tdictWord{135, 11, 409},\n\tdictWord{140, 0, 991},\n\tdictWord{4, 0, 57},\n\tdictWord{7, 0, 1195},\n\tdictWord{7, 0, 1438},\n\tdictWord{7, 0, 1548},\n\tdictWord{7, 0, 1835},\n\tdictWord{7, 0, 1904},\n\tdictWord{9, 0, 757},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t604,\n\t},\n\tdictWord{139, 0, 519},\n\tdictWord{132, 0, 540},\n\tdictWord{138, 11, 308},\n\tdictWord{132, 10, 533},\n\tdictWord{136, 0, 608},\n\tdictWord{144, 11, 65},\n\tdictWord{4, 0, 1014},\n\tdictWord{134, 0, 2029},\n\tdictWord{4, 0, 209},\n\tdictWord{7, 0, 902},\n\tdictWord{5, 11, 1002},\n\tdictWord{136, 11, 745},\n\tdictWord{134, 0, 2030},\n\tdictWord{6, 0, 303},\n\tdictWord{7, 0, 335},\n\tdictWord{7, 0, 1437},\n\tdictWord{7, 0, 1668},\n\tdictWord{8, 0, 553},\n\tdictWord{8, 0, 652},\n\tdictWord{8, 0, 656},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t558,\n\t},\n\tdictWord{11, 0, 743},\n\tdictWord{149, 0, 18},\n\tdictWord{5, 11, 575},\n\tdictWord{6, 11, 354},\n\tdictWord{135, 11, 701},\n\tdictWord{4, 11, 239},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t477,\n\t},\n\tdictWord{7, 11, 1607},\n\tdictWord{11, 11, 68},\n\tdictWord{139, 11, 617},\n\tdictWord{132, 0, 559},\n\tdictWord{8, 0, 527},\n\tdictWord{18, 0, 60},\n\tdictWord{\n\t\t147,\n\t\t0,\n\t\t24,\n\t},\n\tdictWord{133, 10, 920},\n\tdictWord{138, 0, 511},\n\tdictWord{133, 0, 1017},\n\tdictWord{133, 0, 675},\n\tdictWord{138, 10, 391},\n\tdictWord{11, 0, 156},\n\tdictWord{135, 10, 1952},\n\tdictWord{138, 11, 369},\n\tdictWord{132, 11, 367},\n\tdictWord{133, 0, 709},\n\tdictWord{6, 0, 698},\n\tdictWord{134, 0, 887},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t126,\n\t},\n\tdictWord{134, 0, 1745},\n\tdictWord{132, 10, 483},\n\tdictWord{13, 11, 299},\n\tdictWord{142, 11, 75},\n\tdictWord{133, 0, 714},\n\tdictWord{7, 0, 8},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t206,\n\t},\n\tdictWord{138, 10, 480},\n\tdictWord{4, 11, 694},\n\tdictWord{9, 10, 495},\n\tdictWord{146, 10, 104},\n\tdictWord{7, 11, 1248},\n\tdictWord{11, 11, 621},\n\tdictWord{139, 11, 702},\n\tdictWord{140, 11, 687},\n\tdictWord{132, 0, 776},\n\tdictWord{139, 10, 1009},\n\tdictWord{135, 0, 1272},\n\tdictWord{134, 0, 1059},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t653,\n\t},\n\tdictWord{13, 10, 93},\n\tdictWord{147, 10, 14},\n\tdictWord{135, 11, 213},\n\tdictWord{136, 0, 406},\n\tdictWord{133, 10, 172},\n\tdictWord{132, 0, 947},\n\tdictWord{8, 0, 175},\n\tdictWord{10, 0, 168},\n\tdictWord{138, 0, 573},\n\tdictWord{132, 0, 870},\n\tdictWord{6, 0, 1567},\n\tdictWord{151, 11, 28},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t472,\n\t},\n\tdictWord{5, 10, 260},\n\tdictWord{136, 11, 132},\n\tdictWord{4, 11, 751},\n\tdictWord{11, 11, 390},\n\tdictWord{140, 11, 32},\n\tdictWord{4, 11, 409},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t78,\n\t},\n\tdictWord{12, 0, 554},\n\tdictWord{6, 11, 473},\n\tdictWord{145, 11, 105},\n\tdictWord{133, 0, 784},\n\tdictWord{8, 0, 908},\n\tdictWord{136, 11, 306},\n\tdictWord{139, 0, 882},\n\tdictWord{6, 0, 358},\n\tdictWord{7, 0, 1393},\n\tdictWord{8, 0, 396},\n\tdictWord{10, 0, 263},\n\tdictWord{14, 0, 154},\n\tdictWord{16, 0, 48},\n\tdictWord{\n\t\t17,\n\t\t0,\n\t\t8,\n\t},\n\tdictWord{7, 11, 1759},\n\tdictWord{8, 11, 396},\n\tdictWord{10, 11, 263},\n\tdictWord{14, 11, 154},\n\tdictWord{16, 11, 48},\n\tdictWord{145, 11, 8},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t163,\n\t},\n\tdictWord{13, 11, 180},\n\tdictWord{18, 11, 78},\n\tdictWord{148, 11, 35},\n\tdictWord{14, 0, 32},\n\tdictWord{18, 0, 85},\n\tdictWord{20, 0, 2},\n\tdictWord{152, 0, 16},\n\tdictWord{7, 0, 228},\n\tdictWord{10, 0, 770},\n\tdictWord{8, 10, 167},\n\tdictWord{8, 10, 375},\n\tdictWord{9, 10, 82},\n\tdictWord{9, 10, 561},\n\tdictWord{138, 10, 620},\n\tdictWord{132, 0, 845},\n\tdictWord{9, 0, 14},\n\tdictWord{9, 0, 441},\n\tdictWord{10, 0, 306},\n\tdictWord{139, 0, 9},\n\tdictWord{11, 0, 966},\n\tdictWord{12, 0, 287},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t342,\n\t},\n\tdictWord{13, 0, 402},\n\tdictWord{15, 0, 110},\n\tdictWord{15, 0, 163},\n\tdictWord{8, 10, 194},\n\tdictWord{136, 10, 756},\n\tdictWord{134, 0, 1578},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t967,\n\t},\n\tdictWord{6, 0, 1820},\n\tdictWord{6, 0, 1847},\n\tdictWord{140, 0, 716},\n\tdictWord{136, 0, 594},\n\tdictWord{7, 0, 1428},\n\tdictWord{7, 0, 1640},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1867,\n\t},\n\tdictWord{9, 0, 169},\n\tdictWord{9, 0, 182},\n\tdictWord{9, 0, 367},\n\tdictWord{9, 0, 478},\n\tdictWord{9, 0, 506},\n\tdictWord{9, 0, 551},\n\tdictWord{9, 0, 557},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t648,\n\t},\n\tdictWord{9, 0, 697},\n\tdictWord{9, 0, 705},\n\tdictWord{9, 0, 725},\n\tdictWord{9, 0, 787},\n\tdictWord{9, 0, 794},\n\tdictWord{10, 0, 198},\n\tdictWord{10, 0, 214},\n\tdictWord{10, 0, 267},\n\tdictWord{10, 0, 275},\n\tdictWord{10, 0, 456},\n\tdictWord{10, 0, 551},\n\tdictWord{10, 0, 561},\n\tdictWord{10, 0, 613},\n\tdictWord{10, 0, 627},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t668,\n\t},\n\tdictWord{10, 0, 675},\n\tdictWord{10, 0, 691},\n\tdictWord{10, 0, 695},\n\tdictWord{10, 0, 707},\n\tdictWord{10, 0, 715},\n\tdictWord{11, 0, 183},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t201,\n\t},\n\tdictWord{11, 0, 244},\n\tdictWord{11, 0, 262},\n\tdictWord{11, 0, 352},\n\tdictWord{11, 0, 439},\n\tdictWord{11, 0, 493},\n\tdictWord{11, 0, 572},\n\tdictWord{11, 0, 591},\n\tdictWord{11, 0, 608},\n\tdictWord{11, 0, 611},\n\tdictWord{11, 0, 646},\n\tdictWord{11, 0, 674},\n\tdictWord{11, 0, 711},\n\tdictWord{11, 0, 751},\n\tdictWord{11, 0, 761},\n\tdictWord{11, 0, 776},\n\tdictWord{11, 0, 785},\n\tdictWord{11, 0, 850},\n\tdictWord{11, 0, 853},\n\tdictWord{11, 0, 862},\n\tdictWord{11, 0, 865},\n\tdictWord{11, 0, 868},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t875,\n\t},\n\tdictWord{11, 0, 898},\n\tdictWord{11, 0, 902},\n\tdictWord{11, 0, 903},\n\tdictWord{11, 0, 910},\n\tdictWord{11, 0, 932},\n\tdictWord{11, 0, 942},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t957,\n\t},\n\tdictWord{11, 0, 967},\n\tdictWord{11, 0, 972},\n\tdictWord{12, 0, 148},\n\tdictWord{12, 0, 195},\n\tdictWord{12, 0, 220},\n\tdictWord{12, 0, 237},\n\tdictWord{12, 0, 318},\n\tdictWord{12, 0, 339},\n\tdictWord{12, 0, 393},\n\tdictWord{12, 0, 445},\n\tdictWord{12, 0, 450},\n\tdictWord{12, 0, 474},\n\tdictWord{12, 0, 505},\n\tdictWord{12, 0, 509},\n\tdictWord{12, 0, 533},\n\tdictWord{12, 0, 591},\n\tdictWord{12, 0, 594},\n\tdictWord{12, 0, 597},\n\tdictWord{12, 0, 621},\n\tdictWord{12, 0, 633},\n\tdictWord{12, 0, 642},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t59,\n\t},\n\tdictWord{13, 0, 60},\n\tdictWord{13, 0, 145},\n\tdictWord{13, 0, 239},\n\tdictWord{13, 0, 250},\n\tdictWord{13, 0, 329},\n\tdictWord{13, 0, 344},\n\tdictWord{13, 0, 365},\n\tdictWord{13, 0, 372},\n\tdictWord{13, 0, 387},\n\tdictWord{13, 0, 403},\n\tdictWord{13, 0, 414},\n\tdictWord{13, 0, 456},\n\tdictWord{13, 0, 470},\n\tdictWord{13, 0, 478},\n\tdictWord{13, 0, 483},\n\tdictWord{13, 0, 489},\n\tdictWord{14, 0, 55},\n\tdictWord{14, 0, 57},\n\tdictWord{14, 0, 81},\n\tdictWord{14, 0, 90},\n\tdictWord{14, 0, 148},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t239,\n\t},\n\tdictWord{14, 0, 266},\n\tdictWord{14, 0, 321},\n\tdictWord{14, 0, 326},\n\tdictWord{14, 0, 327},\n\tdictWord{14, 0, 330},\n\tdictWord{14, 0, 347},\n\tdictWord{14, 0, 355},\n\tdictWord{14, 0, 401},\n\tdictWord{14, 0, 404},\n\tdictWord{14, 0, 411},\n\tdictWord{14, 0, 414},\n\tdictWord{14, 0, 416},\n\tdictWord{14, 0, 420},\n\tdictWord{15, 0, 61},\n\tdictWord{15, 0, 74},\n\tdictWord{15, 0, 87},\n\tdictWord{15, 0, 88},\n\tdictWord{15, 0, 94},\n\tdictWord{15, 0, 96},\n\tdictWord{15, 0, 116},\n\tdictWord{15, 0, 149},\n\tdictWord{15, 0, 154},\n\tdictWord{16, 0, 50},\n\tdictWord{16, 0, 63},\n\tdictWord{16, 0, 73},\n\tdictWord{17, 0, 2},\n\tdictWord{17, 0, 66},\n\tdictWord{17, 0, 92},\n\tdictWord{17, 0, 103},\n\tdictWord{\n\t\t17,\n\t\t0,\n\t\t112,\n\t},\n\tdictWord{17, 0, 120},\n\tdictWord{18, 0, 50},\n\tdictWord{18, 0, 54},\n\tdictWord{18, 0, 82},\n\tdictWord{18, 0, 86},\n\tdictWord{18, 0, 90},\n\tdictWord{18, 0, 111},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t115,\n\t},\n\tdictWord{18, 0, 156},\n\tdictWord{19, 0, 40},\n\tdictWord{19, 0, 79},\n\tdictWord{20, 0, 78},\n\tdictWord{21, 0, 22},\n\tdictWord{135, 11, 883},\n\tdictWord{5, 0, 161},\n\tdictWord{135, 0, 839},\n\tdictWord{4, 0, 782},\n\tdictWord{13, 11, 293},\n\tdictWord{142, 11, 56},\n\tdictWord{133, 11, 617},\n\tdictWord{139, 11, 50},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t22,\n\t},\n\tdictWord{145, 0, 64},\n\tdictWord{5, 10, 639},\n\tdictWord{7, 10, 1249},\n\tdictWord{139, 10, 896},\n\tdictWord{138, 0, 998},\n\tdictWord{135, 11, 2042},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t546,\n\t},\n\tdictWord{142, 11, 233},\n\tdictWord{6, 0, 1043},\n\tdictWord{134, 0, 1574},\n\tdictWord{134, 0, 1496},\n\tdictWord{4, 10, 102},\n\tdictWord{7, 10, 815},\n\tdictWord{7, 10, 1699},\n\tdictWord{139, 10, 964},\n\tdictWord{12, 0, 781},\n\tdictWord{142, 0, 461},\n\tdictWord{4, 11, 313},\n\tdictWord{133, 11, 577},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t639,\n\t},\n\tdictWord{6, 0, 1114},\n\tdictWord{137, 0, 817},\n\tdictWord{8, 11, 184},\n\tdictWord{141, 11, 433},\n\tdictWord{7, 0, 1814},\n\tdictWord{135, 11, 935},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t997,\n\t},\n\tdictWord{140, 0, 958},\n\tdictWord{4, 0, 812},\n\tdictWord{137, 11, 625},\n\tdictWord{132, 10, 899},\n\tdictWord{136, 10, 795},\n\tdictWord{5, 11, 886},\n\tdictWord{6, 11, 46},\n\tdictWord{6, 11, 1790},\n\tdictWord{7, 11, 14},\n\tdictWord{7, 11, 732},\n\tdictWord{7, 11, 1654},\n\tdictWord{8, 11, 95},\n\tdictWord{8, 11, 327},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t616,\n\t},\n\tdictWord{10, 11, 598},\n\tdictWord{10, 11, 769},\n\tdictWord{11, 11, 134},\n\tdictWord{11, 11, 747},\n\tdictWord{12, 11, 378},\n\tdictWord{142, 11, 97},\n\tdictWord{136, 0, 139},\n\tdictWord{6, 10, 52},\n\tdictWord{9, 10, 104},\n\tdictWord{9, 10, 559},\n\tdictWord{12, 10, 308},\n\tdictWord{147, 10, 87},\n\tdictWord{133, 11, 1021},\n\tdictWord{132, 10, 604},\n\tdictWord{132, 10, 301},\n\tdictWord{136, 10, 779},\n\tdictWord{7, 0, 643},\n\tdictWord{136, 0, 236},\n\tdictWord{132, 11, 153},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1172,\n\t},\n\tdictWord{147, 10, 32},\n\tdictWord{133, 11, 798},\n\tdictWord{6, 0, 1338},\n\tdictWord{132, 11, 587},\n\tdictWord{6, 11, 598},\n\tdictWord{7, 11, 42},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t695,\n\t},\n\tdictWord{10, 11, 212},\n\tdictWord{11, 11, 158},\n\tdictWord{14, 11, 196},\n\tdictWord{145, 11, 85},\n\tdictWord{135, 10, 508},\n\tdictWord{5, 11, 957},\n\tdictWord{5, 11, 1008},\n\tdictWord{135, 11, 249},\n\tdictWord{4, 11, 129},\n\tdictWord{135, 11, 465},\n\tdictWord{5, 0, 54},\n\tdictWord{7, 11, 470},\n\tdictWord{7, 11, 1057},\n\tdictWord{7, 11, 1201},\n\tdictWord{9, 11, 755},\n\tdictWord{11, 11, 906},\n\tdictWord{140, 11, 527},\n\tdictWord{7, 11, 908},\n\tdictWord{146, 11, 7},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t148,\n\t},\n\tdictWord{136, 11, 450},\n\tdictWord{144, 11, 1},\n\tdictWord{4, 0, 256},\n\tdictWord{135, 0, 1488},\n\tdictWord{9, 0, 351},\n\tdictWord{6, 10, 310},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1849,\n\t},\n\tdictWord{8, 10, 72},\n\tdictWord{8, 10, 272},\n\tdictWord{8, 10, 431},\n\tdictWord{9, 10, 12},\n\tdictWord{10, 10, 563},\n\tdictWord{10, 10, 630},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t796,\n\t},\n\tdictWord{10, 10, 810},\n\tdictWord{11, 10, 367},\n\tdictWord{11, 10, 599},\n\tdictWord{11, 10, 686},\n\tdictWord{140, 10, 672},\n\tdictWord{6, 0, 1885},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1898,\n\t},\n\tdictWord{6, 0, 1899},\n\tdictWord{140, 0, 955},\n\tdictWord{4, 0, 714},\n\tdictWord{133, 0, 469},\n\tdictWord{6, 0, 1270},\n\tdictWord{134, 0, 1456},\n\tdictWord{132, 0, 744},\n\tdictWord{6, 0, 313},\n\tdictWord{7, 10, 537},\n\tdictWord{8, 10, 64},\n\tdictWord{9, 10, 127},\n\tdictWord{10, 10, 496},\n\tdictWord{12, 10, 510},\n\tdictWord{141, 10, 384},\n\tdictWord{4, 11, 217},\n\tdictWord{4, 10, 244},\n\tdictWord{5, 11, 710},\n\tdictWord{7, 10, 233},\n\tdictWord{7, 11, 1926},\n\tdictWord{9, 11, 428},\n\tdictWord{9, 11, 708},\n\tdictWord{10, 11, 254},\n\tdictWord{10, 11, 296},\n\tdictWord{10, 11, 720},\n\tdictWord{11, 11, 109},\n\tdictWord{11, 11, 255},\n\tdictWord{12, 11, 165},\n\tdictWord{12, 11, 315},\n\tdictWord{13, 11, 107},\n\tdictWord{13, 11, 203},\n\tdictWord{14, 11, 54},\n\tdictWord{14, 11, 99},\n\tdictWord{14, 11, 114},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t388,\n\t},\n\tdictWord{16, 11, 85},\n\tdictWord{17, 11, 9},\n\tdictWord{17, 11, 33},\n\tdictWord{20, 11, 25},\n\tdictWord{20, 11, 28},\n\tdictWord{20, 11, 29},\n\tdictWord{21, 11, 9},\n\tdictWord{21, 11, 10},\n\tdictWord{21, 11, 34},\n\tdictWord{150, 11, 17},\n\tdictWord{138, 0, 402},\n\tdictWord{7, 0, 969},\n\tdictWord{146, 0, 55},\n\tdictWord{8, 0, 50},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t624,\n\t},\n\tdictWord{134, 0, 1355},\n\tdictWord{132, 0, 572},\n\tdictWord{134, 10, 1650},\n\tdictWord{10, 10, 702},\n\tdictWord{139, 10, 245},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t847,\n\t},\n\tdictWord{142, 0, 445},\n\tdictWord{6, 0, 43},\n\tdictWord{7, 0, 38},\n\tdictWord{8, 0, 248},\n\tdictWord{138, 0, 513},\n\tdictWord{133, 0, 369},\n\tdictWord{137, 10, 338},\n\tdictWord{133, 0, 766},\n\tdictWord{133, 0, 363},\n\tdictWord{133, 10, 896},\n\tdictWord{8, 11, 392},\n\tdictWord{11, 11, 54},\n\tdictWord{13, 11, 173},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t294,\n\t},\n\tdictWord{148, 11, 7},\n\tdictWord{134, 0, 678},\n\tdictWord{7, 11, 1230},\n\tdictWord{136, 11, 531},\n\tdictWord{6, 0, 258},\n\tdictWord{140, 0, 409},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t249,\n\t},\n\tdictWord{148, 0, 82},\n\tdictWord{7, 10, 1117},\n\tdictWord{136, 10, 539},\n\tdictWord{5, 0, 393},\n\tdictWord{6, 0, 378},\n\tdictWord{7, 0, 1981},\n\tdictWord{9, 0, 32},\n\tdictWord{9, 0, 591},\n\tdictWord{10, 0, 685},\n\tdictWord{10, 0, 741},\n\tdictWord{142, 0, 382},\n\tdictWord{133, 0, 788},\n\tdictWord{134, 0, 1281},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1295,\n\t},\n\tdictWord{7, 0, 1968},\n\tdictWord{141, 0, 509},\n\tdictWord{4, 0, 61},\n\tdictWord{5, 0, 58},\n\tdictWord{5, 0, 171},\n\tdictWord{5, 0, 683},\n\tdictWord{6, 0, 291},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t566,\n\t},\n\tdictWord{7, 0, 1650},\n\tdictWord{11, 0, 523},\n\tdictWord{12, 0, 273},\n\tdictWord{12, 0, 303},\n\tdictWord{15, 0, 39},\n\tdictWord{143, 0, 111},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t706,\n\t},\n\tdictWord{134, 0, 1283},\n\tdictWord{134, 0, 589},\n\tdictWord{135, 11, 1433},\n\tdictWord{133, 11, 435},\n\tdictWord{7, 0, 1059},\n\tdictWord{13, 0, 54},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t4,\n\t},\n\tdictWord{5, 10, 810},\n\tdictWord{6, 10, 13},\n\tdictWord{6, 10, 538},\n\tdictWord{6, 10, 1690},\n\tdictWord{6, 10, 1726},\n\tdictWord{7, 10, 1819},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t148,\n\t},\n\tdictWord{8, 10, 696},\n\tdictWord{8, 10, 791},\n\tdictWord{12, 10, 125},\n\tdictWord{143, 10, 9},\n\tdictWord{135, 10, 1268},\n\tdictWord{5, 11, 85},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t419,\n\t},\n\tdictWord{7, 11, 134},\n\tdictWord{7, 11, 305},\n\tdictWord{7, 11, 361},\n\tdictWord{7, 11, 1337},\n\tdictWord{8, 11, 71},\n\tdictWord{140, 11, 519},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t824,\n\t},\n\tdictWord{140, 11, 688},\n\tdictWord{5, 11, 691},\n\tdictWord{7, 11, 345},\n\tdictWord{7, 10, 1385},\n\tdictWord{9, 11, 94},\n\tdictWord{11, 10, 582},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t650,\n\t},\n\tdictWord{11, 10, 901},\n\tdictWord{11, 10, 949},\n\tdictWord{12, 11, 169},\n\tdictWord{12, 10, 232},\n\tdictWord{12, 10, 236},\n\tdictWord{13, 10, 413},\n\tdictWord{13, 10, 501},\n\tdictWord{146, 10, 116},\n\tdictWord{4, 0, 917},\n\tdictWord{133, 0, 1005},\n\tdictWord{7, 0, 1598},\n\tdictWord{5, 11, 183},\n\tdictWord{6, 11, 582},\n\tdictWord{9, 11, 344},\n\tdictWord{10, 11, 679},\n\tdictWord{140, 11, 435},\n\tdictWord{4, 10, 925},\n\tdictWord{5, 10, 803},\n\tdictWord{8, 10, 698},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t828,\n\t},\n\tdictWord{132, 0, 919},\n\tdictWord{135, 11, 511},\n\tdictWord{139, 10, 992},\n\tdictWord{4, 0, 255},\n\tdictWord{5, 0, 302},\n\tdictWord{6, 0, 132},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t128,\n\t},\n\tdictWord{7, 0, 283},\n\tdictWord{7, 0, 1299},\n\tdictWord{10, 0, 52},\n\tdictWord{10, 0, 514},\n\tdictWord{11, 0, 925},\n\tdictWord{13, 0, 92},\n\tdictWord{142, 0, 309},\n\tdictWord{134, 0, 1369},\n\tdictWord{135, 10, 1847},\n\tdictWord{134, 0, 328},\n\tdictWord{7, 11, 1993},\n\tdictWord{136, 11, 684},\n\tdictWord{133, 10, 383},\n\tdictWord{137, 0, 173},\n\tdictWord{134, 11, 583},\n\tdictWord{134, 0, 1411},\n\tdictWord{19, 0, 65},\n\tdictWord{5, 11, 704},\n\tdictWord{8, 11, 357},\n\tdictWord{10, 11, 745},\n\tdictWord{14, 11, 426},\n\tdictWord{17, 11, 94},\n\tdictWord{147, 11, 57},\n\tdictWord{9, 10, 660},\n\tdictWord{138, 10, 347},\n\tdictWord{4, 11, 179},\n\tdictWord{5, 11, 198},\n\tdictWord{133, 11, 697},\n\tdictWord{7, 11, 347},\n\tdictWord{7, 11, 971},\n\tdictWord{8, 11, 181},\n\tdictWord{138, 11, 711},\n\tdictWord{141, 0, 442},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t842,\n\t},\n\tdictWord{11, 0, 924},\n\tdictWord{13, 0, 317},\n\tdictWord{13, 0, 370},\n\tdictWord{13, 0, 469},\n\tdictWord{13, 0, 471},\n\tdictWord{14, 0, 397},\n\tdictWord{18, 0, 69},\n\tdictWord{18, 0, 145},\n\tdictWord{7, 10, 572},\n\tdictWord{9, 10, 592},\n\tdictWord{11, 10, 680},\n\tdictWord{12, 10, 356},\n\tdictWord{140, 10, 550},\n\tdictWord{14, 11, 19},\n\tdictWord{14, 11, 28},\n\tdictWord{144, 11, 29},\n\tdictWord{136, 0, 534},\n\tdictWord{4, 11, 243},\n\tdictWord{5, 11, 203},\n\tdictWord{7, 11, 19},\n\tdictWord{7, 11, 71},\n\tdictWord{7, 11, 113},\n\tdictWord{10, 11, 405},\n\tdictWord{11, 11, 357},\n\tdictWord{142, 11, 240},\n\tdictWord{6, 0, 210},\n\tdictWord{10, 0, 845},\n\tdictWord{138, 0, 862},\n\tdictWord{7, 11, 1351},\n\tdictWord{9, 11, 581},\n\tdictWord{10, 11, 639},\n\tdictWord{11, 11, 453},\n\tdictWord{140, 11, 584},\n\tdictWord{7, 11, 1450},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t99,\n\t},\n\tdictWord{10, 0, 892},\n\tdictWord{12, 0, 719},\n\tdictWord{144, 0, 105},\n\tdictWord{4, 0, 284},\n\tdictWord{6, 0, 223},\n\tdictWord{134, 11, 492},\n\tdictWord{5, 11, 134},\n\tdictWord{6, 11, 408},\n\tdictWord{6, 11, 495},\n\tdictWord{135, 11, 1593},\n\tdictWord{136, 0, 529},\n\tdictWord{137, 0, 807},\n\tdictWord{4, 0, 218},\n\tdictWord{7, 0, 526},\n\tdictWord{143, 0, 137},\n\tdictWord{6, 0, 1444},\n\tdictWord{142, 11, 4},\n\tdictWord{132, 11, 665},\n\tdictWord{4, 0, 270},\n\tdictWord{5, 0, 192},\n\tdictWord{6, 0, 332},\n\tdictWord{7, 0, 1322},\n\tdictWord{4, 11, 248},\n\tdictWord{7, 11, 137},\n\tdictWord{137, 11, 349},\n\tdictWord{140, 0, 661},\n\tdictWord{7, 0, 1517},\n\tdictWord{11, 0, 597},\n\tdictWord{14, 0, 76},\n\tdictWord{14, 0, 335},\n\tdictWord{20, 0, 33},\n\tdictWord{7, 10, 748},\n\tdictWord{139, 10, 700},\n\tdictWord{5, 11, 371},\n\tdictWord{135, 11, 563},\n\tdictWord{146, 11, 57},\n\tdictWord{133, 10, 127},\n\tdictWord{133, 0, 418},\n\tdictWord{4, 11, 374},\n\tdictWord{7, 11, 547},\n\tdictWord{7, 11, 1700},\n\tdictWord{7, 11, 1833},\n\tdictWord{139, 11, 858},\n\tdictWord{6, 10, 198},\n\tdictWord{140, 10, 83},\n\tdictWord{7, 11, 1812},\n\tdictWord{13, 11, 259},\n\tdictWord{13, 11, 356},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t242,\n\t},\n\tdictWord{147, 11, 114},\n\tdictWord{7, 0, 379},\n\tdictWord{8, 0, 481},\n\tdictWord{9, 0, 377},\n\tdictWord{5, 10, 276},\n\tdictWord{6, 10, 55},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1369,\n\t},\n\tdictWord{138, 11, 286},\n\tdictWord{5, 0, 1003},\n\tdictWord{6, 0, 149},\n\tdictWord{6, 10, 1752},\n\tdictWord{136, 10, 726},\n\tdictWord{8, 0, 262},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t627,\n\t},\n\tdictWord{10, 0, 18},\n\tdictWord{11, 0, 214},\n\tdictWord{11, 0, 404},\n\tdictWord{11, 0, 457},\n\tdictWord{11, 0, 780},\n\tdictWord{11, 0, 913},\n\tdictWord{13, 0, 401},\n\tdictWord{14, 0, 200},\n\tdictWord{6, 11, 1647},\n\tdictWord{7, 11, 1552},\n\tdictWord{7, 11, 2010},\n\tdictWord{9, 11, 494},\n\tdictWord{137, 11, 509},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t742,\n\t},\n\tdictWord{136, 0, 304},\n\tdictWord{132, 0, 142},\n\tdictWord{133, 10, 764},\n\tdictWord{6, 10, 309},\n\tdictWord{7, 10, 331},\n\tdictWord{138, 10, 550},\n\tdictWord{135, 10, 1062},\n\tdictWord{6, 11, 123},\n\tdictWord{7, 11, 214},\n\tdictWord{7, 10, 986},\n\tdictWord{9, 11, 728},\n\tdictWord{10, 11, 157},\n\tdictWord{11, 11, 346},\n\tdictWord{11, 11, 662},\n\tdictWord{143, 11, 106},\n\tdictWord{135, 10, 1573},\n\tdictWord{7, 0, 925},\n\tdictWord{137, 0, 799},\n\tdictWord{4, 0, 471},\n\tdictWord{5, 0, 51},\n\tdictWord{6, 0, 602},\n\tdictWord{8, 0, 484},\n\tdictWord{138, 0, 195},\n\tdictWord{136, 0, 688},\n\tdictWord{132, 0, 697},\n\tdictWord{6, 0, 1169},\n\tdictWord{6, 0, 1241},\n\tdictWord{6, 10, 194},\n\tdictWord{7, 10, 133},\n\tdictWord{10, 10, 493},\n\tdictWord{10, 10, 570},\n\tdictWord{139, 10, 664},\n\tdictWord{140, 0, 751},\n\tdictWord{7, 0, 929},\n\tdictWord{10, 0, 452},\n\tdictWord{11, 0, 878},\n\tdictWord{16, 0, 33},\n\tdictWord{5, 10, 24},\n\tdictWord{5, 10, 569},\n\tdictWord{6, 10, 3},\n\tdictWord{6, 10, 119},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t143,\n\t},\n\tdictWord{6, 10, 440},\n\tdictWord{7, 10, 599},\n\tdictWord{7, 10, 1686},\n\tdictWord{7, 10, 1854},\n\tdictWord{8, 10, 424},\n\tdictWord{9, 10, 43},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t584,\n\t},\n\tdictWord{9, 10, 760},\n\tdictWord{10, 10, 328},\n\tdictWord{11, 10, 159},\n\tdictWord{11, 10, 253},\n\tdictWord{12, 10, 487},\n\tdictWord{140, 10, 531},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t707,\n\t},\n\tdictWord{13, 11, 106},\n\tdictWord{18, 11, 49},\n\tdictWord{147, 11, 41},\n\tdictWord{5, 0, 221},\n\tdictWord{5, 11, 588},\n\tdictWord{134, 11, 393},\n\tdictWord{134, 0, 1437},\n\tdictWord{6, 11, 211},\n\tdictWord{7, 11, 1690},\n\tdictWord{11, 11, 486},\n\tdictWord{140, 11, 369},\n\tdictWord{5, 10, 14},\n\tdictWord{5, 10, 892},\n\tdictWord{6, 10, 283},\n\tdictWord{7, 10, 234},\n\tdictWord{136, 10, 537},\n\tdictWord{4, 0, 988},\n\tdictWord{136, 0, 955},\n\tdictWord{135, 0, 1251},\n\tdictWord{4, 10, 126},\n\tdictWord{8, 10, 635},\n\tdictWord{147, 10, 34},\n\tdictWord{4, 10, 316},\n\tdictWord{135, 10, 1561},\n\tdictWord{137, 10, 861},\n\tdictWord{4, 10, 64},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t352,\n\t},\n\tdictWord{5, 10, 720},\n\tdictWord{6, 10, 368},\n\tdictWord{139, 10, 359},\n\tdictWord{134, 0, 192},\n\tdictWord{4, 0, 132},\n\tdictWord{5, 0, 69},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1242,\n\t},\n\tdictWord{7, 10, 1577},\n\tdictWord{10, 10, 304},\n\tdictWord{10, 10, 549},\n\tdictWord{12, 10, 365},\n\tdictWord{13, 10, 220},\n\tdictWord{13, 10, 240},\n\tdictWord{142, 10, 33},\n\tdictWord{4, 0, 111},\n\tdictWord{7, 0, 865},\n\tdictWord{134, 11, 219},\n\tdictWord{5, 11, 582},\n\tdictWord{6, 11, 1646},\n\tdictWord{7, 11, 99},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1962,\n\t},\n\tdictWord{7, 11, 1986},\n\tdictWord{8, 11, 515},\n\tdictWord{8, 11, 773},\n\tdictWord{9, 11, 23},\n\tdictWord{9, 11, 491},\n\tdictWord{12, 11, 620},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t52,\n\t},\n\tdictWord{145, 11, 50},\n\tdictWord{132, 0, 767},\n\tdictWord{7, 11, 568},\n\tdictWord{148, 11, 21},\n\tdictWord{6, 0, 42},\n\tdictWord{7, 0, 1416},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t2005,\n\t},\n\tdictWord{8, 0, 131},\n\tdictWord{8, 0, 466},\n\tdictWord{9, 0, 672},\n\tdictWord{13, 0, 252},\n\tdictWord{20, 0, 103},\n\tdictWord{133, 11, 851},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1050,\n\t},\n\tdictWord{6, 10, 175},\n\tdictWord{137, 10, 289},\n\tdictWord{5, 10, 432},\n\tdictWord{133, 10, 913},\n\tdictWord{6, 0, 44},\n\tdictWord{136, 0, 368},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t784,\n\t},\n\tdictWord{132, 0, 570},\n\tdictWord{133, 0, 120},\n\tdictWord{139, 10, 595},\n\tdictWord{140, 0, 29},\n\tdictWord{6, 0, 227},\n\tdictWord{135, 0, 1589},\n\tdictWord{4, 11, 98},\n\tdictWord{7, 11, 1365},\n\tdictWord{9, 11, 422},\n\tdictWord{9, 11, 670},\n\tdictWord{10, 11, 775},\n\tdictWord{11, 11, 210},\n\tdictWord{13, 11, 26},\n\tdictWord{13, 11, 457},\n\tdictWord{141, 11, 476},\n\tdictWord{140, 10, 80},\n\tdictWord{5, 10, 931},\n\tdictWord{134, 10, 1698},\n\tdictWord{133, 0, 522},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1120,\n\t},\n\tdictWord{135, 0, 1529},\n\tdictWord{12, 0, 739},\n\tdictWord{14, 0, 448},\n\tdictWord{142, 0, 467},\n\tdictWord{11, 10, 526},\n\tdictWord{11, 10, 939},\n\tdictWord{141, 10, 290},\n\tdictWord{5, 10, 774},\n\tdictWord{6, 10, 1637},\n\tdictWord{6, 10, 1686},\n\tdictWord{134, 10, 1751},\n\tdictWord{6, 0, 1667},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t2036,\n\t},\n\tdictWord{7, 10, 1167},\n\tdictWord{11, 10, 934},\n\tdictWord{13, 10, 391},\n\tdictWord{145, 10, 76},\n\tdictWord{137, 11, 147},\n\tdictWord{6, 10, 260},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1484,\n\t},\n\tdictWord{11, 11, 821},\n\tdictWord{12, 11, 110},\n\tdictWord{12, 11, 153},\n\tdictWord{18, 11, 41},\n\tdictWord{150, 11, 19},\n\tdictWord{6, 0, 511},\n\tdictWord{12, 0, 132},\n\tdictWord{134, 10, 573},\n\tdictWord{5, 0, 568},\n\tdictWord{6, 0, 138},\n\tdictWord{135, 0, 1293},\n\tdictWord{132, 0, 1020},\n\tdictWord{8, 0, 258},\n\tdictWord{9, 0, 208},\n\tdictWord{137, 0, 359},\n\tdictWord{4, 0, 565},\n\tdictWord{8, 0, 23},\n\tdictWord{136, 0, 827},\n\tdictWord{134, 0, 344},\n\tdictWord{4, 0, 922},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t1023,\n\t},\n\tdictWord{13, 11, 477},\n\tdictWord{14, 11, 120},\n\tdictWord{148, 11, 61},\n\tdictWord{134, 0, 240},\n\tdictWord{5, 11, 209},\n\tdictWord{6, 11, 30},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t56,\n\t},\n\tdictWord{139, 11, 305},\n\tdictWord{6, 0, 171},\n\tdictWord{7, 0, 1002},\n\tdictWord{7, 0, 1324},\n\tdictWord{9, 0, 415},\n\tdictWord{14, 0, 230},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t68,\n\t},\n\tdictWord{4, 10, 292},\n\tdictWord{4, 10, 736},\n\tdictWord{5, 10, 871},\n\tdictWord{6, 10, 1689},\n\tdictWord{7, 10, 1944},\n\tdictWord{137, 10, 580},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t635,\n\t},\n\tdictWord{139, 11, 559},\n\tdictWord{4, 11, 150},\n\tdictWord{5, 11, 303},\n\tdictWord{134, 11, 327},\n\tdictWord{6, 10, 63},\n\tdictWord{135, 10, 920},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t793,\n\t},\n\tdictWord{8, 11, 192},\n\tdictWord{10, 11, 78},\n\tdictWord{10, 11, 555},\n\tdictWord{11, 11, 308},\n\tdictWord{13, 11, 359},\n\tdictWord{147, 11, 95},\n\tdictWord{135, 11, 786},\n\tdictWord{135, 11, 1712},\n\tdictWord{136, 0, 402},\n\tdictWord{6, 0, 754},\n\tdictWord{6, 11, 1638},\n\tdictWord{7, 11, 79},\n\tdictWord{7, 11, 496},\n\tdictWord{9, 11, 138},\n\tdictWord{10, 11, 336},\n\tdictWord{11, 11, 12},\n\tdictWord{12, 11, 412},\n\tdictWord{12, 11, 440},\n\tdictWord{142, 11, 305},\n\tdictWord{4, 0, 716},\n\tdictWord{141, 0, 31},\n\tdictWord{133, 0, 982},\n\tdictWord{8, 0, 691},\n\tdictWord{8, 0, 731},\n\tdictWord{5, 10, 67},\n\tdictWord{6, 10, 62},\n\tdictWord{6, 10, 374},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1391,\n\t},\n\tdictWord{9, 10, 790},\n\tdictWord{140, 10, 47},\n\tdictWord{139, 11, 556},\n\tdictWord{151, 11, 1},\n\tdictWord{7, 11, 204},\n\tdictWord{7, 11, 415},\n\tdictWord{8, 11, 42},\n\tdictWord{10, 11, 85},\n\tdictWord{11, 11, 33},\n\tdictWord{11, 11, 564},\n\tdictWord{12, 11, 571},\n\tdictWord{149, 11, 1},\n\tdictWord{8, 0, 888},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t610,\n\t},\n\tdictWord{135, 11, 1501},\n\tdictWord{4, 10, 391},\n\tdictWord{135, 10, 1169},\n\tdictWord{5, 0, 847},\n\tdictWord{9, 0, 840},\n\tdictWord{138, 0, 803},\n\tdictWord{137, 0, 823},\n\tdictWord{134, 0, 785},\n\tdictWord{8, 0, 152},\n\tdictWord{9, 0, 53},\n\tdictWord{9, 0, 268},\n\tdictWord{9, 0, 901},\n\tdictWord{10, 0, 518},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t829,\n\t},\n\tdictWord{11, 0, 188},\n\tdictWord{13, 0, 74},\n\tdictWord{14, 0, 46},\n\tdictWord{15, 0, 17},\n\tdictWord{15, 0, 33},\n\tdictWord{17, 0, 40},\n\tdictWord{18, 0, 36},\n\tdictWord{\n\t\t19,\n\t\t0,\n\t\t20,\n\t},\n\tdictWord{22, 0, 1},\n\tdictWord{152, 0, 2},\n\tdictWord{4, 11, 3},\n\tdictWord{5, 11, 247},\n\tdictWord{5, 11, 644},\n\tdictWord{7, 11, 744},\n\tdictWord{7, 11, 1207},\n\tdictWord{7, 11, 1225},\n\tdictWord{7, 11, 1909},\n\tdictWord{146, 11, 147},\n\tdictWord{136, 0, 532},\n\tdictWord{135, 0, 681},\n\tdictWord{132, 10, 271},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t314,\n\t},\n\tdictWord{140, 0, 677},\n\tdictWord{4, 0, 684},\n\tdictWord{136, 0, 384},\n\tdictWord{5, 11, 285},\n\tdictWord{9, 11, 67},\n\tdictWord{13, 11, 473},\n\tdictWord{\n\t\t143,\n\t\t11,\n\t\t82,\n\t},\n\tdictWord{4, 10, 253},\n\tdictWord{5, 10, 544},\n\tdictWord{7, 10, 300},\n\tdictWord{137, 10, 340},\n\tdictWord{7, 0, 110},\n\tdictWord{7, 0, 447},\n\tdictWord{8, 0, 290},\n\tdictWord{8, 0, 591},\n\tdictWord{9, 0, 382},\n\tdictWord{9, 0, 649},\n\tdictWord{11, 0, 71},\n\tdictWord{11, 0, 155},\n\tdictWord{11, 0, 313},\n\tdictWord{12, 0, 5},\n\tdictWord{13, 0, 325},\n\tdictWord{142, 0, 287},\n\tdictWord{134, 0, 1818},\n\tdictWord{136, 0, 1007},\n\tdictWord{138, 0, 321},\n\tdictWord{7, 0, 360},\n\tdictWord{7, 0, 425},\n\tdictWord{9, 0, 66},\n\tdictWord{9, 0, 278},\n\tdictWord{138, 0, 644},\n\tdictWord{133, 10, 818},\n\tdictWord{5, 0, 385},\n\tdictWord{5, 10, 541},\n\tdictWord{6, 10, 94},\n\tdictWord{6, 10, 499},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t230,\n\t},\n\tdictWord{139, 10, 321},\n\tdictWord{4, 10, 920},\n\tdictWord{5, 10, 25},\n\tdictWord{5, 10, 790},\n\tdictWord{6, 10, 457},\n\tdictWord{7, 10, 853},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t788,\n\t},\n\tdictWord{4, 0, 900},\n\tdictWord{133, 0, 861},\n\tdictWord{5, 0, 254},\n\tdictWord{7, 0, 985},\n\tdictWord{136, 0, 73},\n\tdictWord{7, 0, 1959},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t683,\n\t},\n\tdictWord{134, 10, 1765},\n\tdictWord{133, 10, 822},\n\tdictWord{132, 10, 634},\n\tdictWord{4, 11, 29},\n\tdictWord{6, 11, 532},\n\tdictWord{7, 11, 1628},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1648,\n\t},\n\tdictWord{9, 11, 303},\n\tdictWord{9, 11, 350},\n\tdictWord{10, 11, 433},\n\tdictWord{11, 11, 97},\n\tdictWord{11, 11, 557},\n\tdictWord{11, 11, 745},\n\tdictWord{12, 11, 289},\n\tdictWord{12, 11, 335},\n\tdictWord{12, 11, 348},\n\tdictWord{12, 11, 606},\n\tdictWord{13, 11, 116},\n\tdictWord{13, 11, 233},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t466,\n\t},\n\tdictWord{14, 11, 181},\n\tdictWord{14, 11, 209},\n\tdictWord{14, 11, 232},\n\tdictWord{14, 11, 236},\n\tdictWord{14, 11, 300},\n\tdictWord{16, 11, 41},\n\tdictWord{\n\t\t148,\n\t\t11,\n\t\t97,\n\t},\n\tdictWord{19, 0, 86},\n\tdictWord{6, 10, 36},\n\tdictWord{7, 10, 658},\n\tdictWord{136, 10, 454},\n\tdictWord{135, 11, 1692},\n\tdictWord{132, 0, 725},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t501,\n\t},\n\tdictWord{7, 11, 1704},\n\tdictWord{9, 11, 553},\n\tdictWord{11, 11, 520},\n\tdictWord{12, 11, 557},\n\tdictWord{141, 11, 249},\n\tdictWord{134, 0, 196},\n\tdictWord{133, 0, 831},\n\tdictWord{136, 0, 723},\n\tdictWord{7, 0, 1897},\n\tdictWord{13, 0, 80},\n\tdictWord{13, 0, 437},\n\tdictWord{145, 0, 74},\n\tdictWord{4, 0, 992},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t627,\n\t},\n\tdictWord{136, 0, 994},\n\tdictWord{135, 11, 1294},\n\tdictWord{132, 10, 104},\n\tdictWord{5, 0, 848},\n\tdictWord{6, 0, 66},\n\tdictWord{136, 0, 764},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t36,\n\t},\n\tdictWord{7, 0, 1387},\n\tdictWord{10, 0, 205},\n\tdictWord{139, 0, 755},\n\tdictWord{6, 0, 1046},\n\tdictWord{134, 0, 1485},\n\tdictWord{134, 0, 950},\n\tdictWord{132, 0, 887},\n\tdictWord{14, 0, 450},\n\tdictWord{148, 0, 111},\n\tdictWord{7, 0, 620},\n\tdictWord{7, 0, 831},\n\tdictWord{9, 10, 542},\n\tdictWord{9, 10, 566},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t728,\n\t},\n\tdictWord{6, 0, 165},\n\tdictWord{138, 0, 388},\n\tdictWord{139, 10, 263},\n\tdictWord{4, 0, 719},\n\tdictWord{135, 0, 155},\n\tdictWord{138, 10, 468},\n\tdictWord{6, 11, 453},\n\tdictWord{144, 11, 36},\n\tdictWord{134, 11, 129},\n\tdictWord{5, 0, 533},\n\tdictWord{7, 0, 755},\n\tdictWord{138, 0, 780},\n\tdictWord{134, 0, 1465},\n\tdictWord{4, 0, 353},\n\tdictWord{6, 0, 146},\n\tdictWord{6, 0, 1789},\n\tdictWord{7, 0, 427},\n\tdictWord{7, 0, 990},\n\tdictWord{7, 0, 1348},\n\tdictWord{9, 0, 665},\n\tdictWord{9, 0, 898},\n\tdictWord{11, 0, 893},\n\tdictWord{142, 0, 212},\n\tdictWord{7, 10, 87},\n\tdictWord{142, 10, 288},\n\tdictWord{4, 0, 45},\n\tdictWord{135, 0, 1257},\n\tdictWord{12, 0, 7},\n\tdictWord{7, 10, 988},\n\tdictWord{7, 10, 1939},\n\tdictWord{9, 10, 64},\n\tdictWord{9, 10, 502},\n\tdictWord{12, 10, 34},\n\tdictWord{13, 10, 12},\n\tdictWord{13, 10, 234},\n\tdictWord{147, 10, 77},\n\tdictWord{4, 0, 607},\n\tdictWord{5, 11, 60},\n\tdictWord{6, 11, 504},\n\tdictWord{7, 11, 614},\n\tdictWord{7, 11, 1155},\n\tdictWord{140, 11, 0},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t141,\n\t},\n\tdictWord{8, 11, 198},\n\tdictWord{11, 11, 29},\n\tdictWord{140, 11, 534},\n\tdictWord{140, 0, 65},\n\tdictWord{136, 0, 816},\n\tdictWord{132, 10, 619},\n\tdictWord{139, 0, 88},\n\tdictWord{5, 10, 246},\n\tdictWord{8, 10, 189},\n\tdictWord{9, 10, 355},\n\tdictWord{9, 10, 512},\n\tdictWord{10, 10, 124},\n\tdictWord{10, 10, 453},\n\tdictWord{11, 10, 143},\n\tdictWord{11, 10, 416},\n\tdictWord{11, 10, 859},\n\tdictWord{141, 10, 341},\n\tdictWord{4, 11, 379},\n\tdictWord{135, 11, 1397},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t600,\n\t},\n\tdictWord{137, 0, 621},\n\tdictWord{133, 0, 367},\n\tdictWord{134, 0, 561},\n\tdictWord{6, 0, 559},\n\tdictWord{134, 0, 1691},\n\tdictWord{6, 0, 585},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t585,\n\t},\n\tdictWord{135, 11, 1228},\n\tdictWord{4, 11, 118},\n\tdictWord{5, 10, 678},\n\tdictWord{6, 11, 274},\n\tdictWord{6, 11, 361},\n\tdictWord{7, 11, 75},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t441,\n\t},\n\tdictWord{135, 11, 1818},\n\tdictWord{137, 11, 841},\n\tdictWord{5, 0, 573},\n\tdictWord{6, 0, 287},\n\tdictWord{7, 10, 862},\n\tdictWord{7, 10, 1886},\n\tdictWord{138, 10, 179},\n\tdictWord{132, 10, 517},\n\tdictWord{140, 11, 693},\n\tdictWord{5, 11, 314},\n\tdictWord{6, 11, 221},\n\tdictWord{7, 11, 419},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t650,\n\t},\n\tdictWord{11, 11, 396},\n\tdictWord{12, 11, 156},\n\tdictWord{13, 11, 369},\n\tdictWord{14, 11, 333},\n\tdictWord{145, 11, 47},\n\tdictWord{140, 10, 540},\n\tdictWord{136, 10, 667},\n\tdictWord{11, 10, 403},\n\tdictWord{146, 10, 83},\n\tdictWord{6, 0, 672},\n\tdictWord{133, 10, 761},\n\tdictWord{9, 0, 157},\n\tdictWord{10, 10, 131},\n\tdictWord{140, 10, 72},\n\tdictWord{7, 0, 714},\n\tdictWord{134, 11, 460},\n\tdictWord{134, 0, 456},\n\tdictWord{133, 0, 925},\n\tdictWord{5, 11, 682},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1887,\n\t},\n\tdictWord{136, 11, 510},\n\tdictWord{136, 11, 475},\n\tdictWord{133, 11, 1016},\n\tdictWord{9, 0, 19},\n\tdictWord{7, 11, 602},\n\tdictWord{8, 11, 179},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t781,\n\t},\n\tdictWord{140, 11, 126},\n\tdictWord{6, 11, 329},\n\tdictWord{138, 11, 111},\n\tdictWord{6, 0, 822},\n\tdictWord{134, 0, 1473},\n\tdictWord{144, 11, 86},\n\tdictWord{11, 0, 113},\n\tdictWord{139, 11, 113},\n\tdictWord{5, 11, 821},\n\tdictWord{134, 11, 1687},\n\tdictWord{133, 10, 449},\n\tdictWord{7, 0, 463},\n\tdictWord{\n\t\t17,\n\t\t0,\n\t\t69,\n\t},\n\tdictWord{136, 10, 103},\n\tdictWord{7, 10, 2028},\n\tdictWord{138, 10, 641},\n\tdictWord{6, 0, 193},\n\tdictWord{7, 0, 240},\n\tdictWord{7, 0, 1682},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t51,\n\t},\n\tdictWord{10, 0, 640},\n\tdictWord{11, 0, 410},\n\tdictWord{13, 0, 82},\n\tdictWord{14, 0, 247},\n\tdictWord{14, 0, 331},\n\tdictWord{142, 0, 377},\n\tdictWord{6, 0, 471},\n\tdictWord{11, 0, 411},\n\tdictWord{142, 0, 2},\n\tdictWord{5, 11, 71},\n\tdictWord{7, 11, 1407},\n\tdictWord{9, 11, 388},\n\tdictWord{9, 11, 704},\n\tdictWord{10, 11, 261},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t619,\n\t},\n\tdictWord{11, 11, 547},\n\tdictWord{11, 11, 619},\n\tdictWord{143, 11, 157},\n\tdictWord{136, 0, 633},\n\tdictWord{135, 0, 1148},\n\tdictWord{6, 0, 554},\n\tdictWord{7, 0, 1392},\n\tdictWord{12, 0, 129},\n\tdictWord{7, 10, 1274},\n\tdictWord{7, 10, 1386},\n\tdictWord{7, 11, 2008},\n\tdictWord{9, 11, 337},\n\tdictWord{10, 11, 517},\n\tdictWord{146, 10, 87},\n\tdictWord{7, 0, 803},\n\tdictWord{8, 0, 542},\n\tdictWord{6, 10, 187},\n\tdictWord{7, 10, 1203},\n\tdictWord{8, 10, 380},\n\tdictWord{14, 10, 117},\n\tdictWord{149, 10, 28},\n\tdictWord{6, 10, 297},\n\tdictWord{7, 10, 793},\n\tdictWord{139, 10, 938},\n\tdictWord{8, 0, 438},\n\tdictWord{11, 0, 363},\n\tdictWord{7, 10, 464},\n\tdictWord{11, 10, 105},\n\tdictWord{12, 10, 231},\n\tdictWord{14, 10, 386},\n\tdictWord{15, 10, 102},\n\tdictWord{148, 10, 75},\n\tdictWord{5, 11, 16},\n\tdictWord{6, 11, 86},\n\tdictWord{6, 11, 603},\n\tdictWord{7, 11, 292},\n\tdictWord{7, 11, 561},\n\tdictWord{8, 11, 257},\n\tdictWord{8, 11, 382},\n\tdictWord{9, 11, 721},\n\tdictWord{9, 11, 778},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t581,\n\t},\n\tdictWord{140, 11, 466},\n\tdictWord{6, 0, 717},\n\tdictWord{4, 11, 486},\n\tdictWord{133, 11, 491},\n\tdictWord{132, 0, 875},\n\tdictWord{132, 11, 72},\n\tdictWord{6, 11, 265},\n\tdictWord{135, 11, 847},\n\tdictWord{4, 0, 237},\n\tdictWord{135, 0, 514},\n\tdictWord{6, 0, 392},\n\tdictWord{7, 0, 65},\n\tdictWord{135, 0, 2019},\n\tdictWord{140, 11, 261},\n\tdictWord{135, 11, 922},\n\tdictWord{137, 11, 404},\n\tdictWord{12, 0, 563},\n\tdictWord{14, 0, 101},\n\tdictWord{18, 0, 129},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1010,\n\t},\n\tdictWord{11, 10, 733},\n\tdictWord{11, 10, 759},\n\tdictWord{13, 10, 34},\n\tdictWord{146, 10, 45},\n\tdictWord{7, 10, 1656},\n\tdictWord{9, 10, 369},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t338,\n\t},\n\tdictWord{10, 10, 490},\n\tdictWord{11, 10, 154},\n\tdictWord{11, 10, 545},\n\tdictWord{11, 10, 775},\n\tdictWord{13, 10, 77},\n\tdictWord{141, 10, 274},\n\tdictWord{4, 0, 444},\n\tdictWord{10, 0, 146},\n\tdictWord{140, 0, 9},\n\tdictWord{139, 11, 163},\n\tdictWord{7, 0, 1260},\n\tdictWord{135, 0, 1790},\n\tdictWord{9, 0, 222},\n\tdictWord{10, 0, 43},\n\tdictWord{139, 0, 900},\n\tdictWord{137, 11, 234},\n\tdictWord{138, 0, 971},\n\tdictWord{137, 0, 761},\n\tdictWord{134, 0, 699},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t434,\n\t},\n\tdictWord{6, 0, 1116},\n\tdictWord{7, 0, 1366},\n\tdictWord{5, 10, 20},\n\tdictWord{6, 11, 197},\n\tdictWord{6, 10, 298},\n\tdictWord{7, 10, 659},\n\tdictWord{8, 11, 205},\n\tdictWord{137, 10, 219},\n\tdictWord{132, 11, 490},\n\tdictWord{11, 11, 820},\n\tdictWord{150, 11, 51},\n\tdictWord{7, 10, 1440},\n\tdictWord{11, 10, 854},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t872,\n\t},\n\tdictWord{11, 10, 921},\n\tdictWord{12, 10, 551},\n\tdictWord{13, 10, 472},\n\tdictWord{142, 10, 367},\n\tdictWord{140, 11, 13},\n\tdictWord{132, 0, 829},\n\tdictWord{12, 0, 242},\n\tdictWord{132, 10, 439},\n\tdictWord{136, 10, 669},\n\tdictWord{6, 0, 593},\n\tdictWord{6, 11, 452},\n\tdictWord{7, 11, 312},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t219,\n\t},\n\tdictWord{4, 11, 333},\n\tdictWord{9, 11, 176},\n\tdictWord{12, 11, 353},\n\tdictWord{141, 11, 187},\n\tdictWord{7, 0, 36},\n\tdictWord{8, 0, 201},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t605,\n\t},\n\tdictWord{140, 0, 224},\n\tdictWord{132, 10, 233},\n\tdictWord{134, 0, 1430},\n\tdictWord{134, 0, 1806},\n\tdictWord{4, 0, 523},\n\tdictWord{133, 0, 638},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1889,\n\t},\n\tdictWord{9, 0, 958},\n\tdictWord{9, 0, 971},\n\tdictWord{9, 0, 976},\n\tdictWord{12, 0, 796},\n\tdictWord{12, 0, 799},\n\tdictWord{12, 0, 808},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t835,\n\t},\n\tdictWord{12, 0, 836},\n\tdictWord{12, 0, 914},\n\tdictWord{12, 0, 946},\n\tdictWord{15, 0, 216},\n\tdictWord{15, 0, 232},\n\tdictWord{18, 0, 183},\n\tdictWord{18, 0, 187},\n\tdictWord{18, 0, 194},\n\tdictWord{18, 0, 212},\n\tdictWord{18, 0, 232},\n\tdictWord{149, 0, 49},\n\tdictWord{132, 10, 482},\n\tdictWord{6, 0, 827},\n\tdictWord{134, 0, 1434},\n\tdictWord{135, 10, 346},\n\tdictWord{134, 0, 2043},\n\tdictWord{6, 0, 242},\n\tdictWord{7, 0, 227},\n\tdictWord{7, 0, 1581},\n\tdictWord{8, 0, 104},\n\tdictWord{9, 0, 113},\n\tdictWord{9, 0, 220},\n\tdictWord{9, 0, 427},\n\tdictWord{10, 0, 136},\n\tdictWord{10, 0, 239},\n\tdictWord{11, 0, 579},\n\tdictWord{11, 0, 1023},\n\tdictWord{13, 0, 4},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t204,\n\t},\n\tdictWord{13, 0, 316},\n\tdictWord{148, 0, 86},\n\tdictWord{134, 11, 1685},\n\tdictWord{7, 0, 148},\n\tdictWord{8, 0, 284},\n\tdictWord{141, 0, 63},\n\tdictWord{\n\t\t142,\n\t\t0,\n\t\t10,\n\t},\n\tdictWord{135, 11, 584},\n\tdictWord{134, 0, 1249},\n\tdictWord{7, 0, 861},\n\tdictWord{135, 10, 334},\n\tdictWord{5, 10, 795},\n\tdictWord{6, 10, 1741},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t70,\n\t},\n\tdictWord{132, 0, 807},\n\tdictWord{7, 11, 135},\n\tdictWord{8, 11, 7},\n\tdictWord{8, 11, 62},\n\tdictWord{9, 11, 243},\n\tdictWord{10, 11, 658},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t697,\n\t},\n\tdictWord{11, 11, 456},\n\tdictWord{139, 11, 756},\n\tdictWord{9, 11, 395},\n\tdictWord{138, 11, 79},\n\tdictWord{137, 11, 108},\n\tdictWord{147, 0, 94},\n\tdictWord{136, 0, 494},\n\tdictWord{135, 11, 631},\n\tdictWord{135, 10, 622},\n\tdictWord{7, 0, 1510},\n\tdictWord{135, 10, 1750},\n\tdictWord{4, 10, 203},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1936,\n\t},\n\tdictWord{7, 11, 406},\n\tdictWord{7, 11, 459},\n\tdictWord{8, 11, 606},\n\tdictWord{139, 11, 726},\n\tdictWord{7, 0, 1306},\n\tdictWord{8, 0, 505},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t482,\n\t},\n\tdictWord{10, 0, 126},\n\tdictWord{11, 0, 225},\n\tdictWord{12, 0, 347},\n\tdictWord{12, 0, 449},\n\tdictWord{13, 0, 19},\n\tdictWord{14, 0, 218},\n\tdictWord{142, 0, 435},\n\tdictWord{5, 0, 268},\n\tdictWord{10, 0, 764},\n\tdictWord{12, 0, 120},\n\tdictWord{13, 0, 39},\n\tdictWord{145, 0, 127},\n\tdictWord{142, 11, 68},\n\tdictWord{11, 10, 678},\n\tdictWord{140, 10, 307},\n\tdictWord{12, 11, 268},\n\tdictWord{12, 11, 640},\n\tdictWord{142, 11, 119},\n\tdictWord{135, 10, 2044},\n\tdictWord{133, 11, 612},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t372,\n\t},\n\tdictWord{7, 11, 482},\n\tdictWord{8, 11, 158},\n\tdictWord{9, 11, 602},\n\tdictWord{9, 11, 615},\n\tdictWord{10, 11, 245},\n\tdictWord{10, 11, 678},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t744,\n\t},\n\tdictWord{11, 11, 248},\n\tdictWord{139, 11, 806},\n\tdictWord{7, 10, 311},\n\tdictWord{9, 10, 308},\n\tdictWord{140, 10, 255},\n\tdictWord{4, 0, 384},\n\tdictWord{135, 0, 1022},\n\tdictWord{5, 11, 854},\n\tdictWord{135, 11, 1991},\n\tdictWord{135, 10, 1266},\n\tdictWord{4, 10, 400},\n\tdictWord{5, 10, 267},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t232,\n\t},\n\tdictWord{135, 0, 1703},\n\tdictWord{9, 0, 159},\n\tdictWord{11, 0, 661},\n\tdictWord{140, 0, 603},\n\tdictWord{4, 0, 964},\n\tdictWord{14, 0, 438},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t444,\n\t},\n\tdictWord{14, 0, 456},\n\tdictWord{22, 0, 60},\n\tdictWord{22, 0, 63},\n\tdictWord{9, 11, 106},\n\tdictWord{9, 11, 163},\n\tdictWord{9, 11, 296},\n\tdictWord{10, 11, 167},\n\tdictWord{10, 11, 172},\n\tdictWord{10, 11, 777},\n\tdictWord{139, 11, 16},\n\tdictWord{136, 0, 583},\n\tdictWord{132, 0, 515},\n\tdictWord{8, 0, 632},\n\tdictWord{8, 0, 697},\n\tdictWord{137, 0, 854},\n\tdictWord{5, 11, 195},\n\tdictWord{135, 11, 1685},\n\tdictWord{6, 0, 1123},\n\tdictWord{134, 0, 1365},\n\tdictWord{134, 11, 328},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1997,\n\t},\n\tdictWord{8, 11, 730},\n\tdictWord{139, 11, 1006},\n\tdictWord{4, 0, 136},\n\tdictWord{133, 0, 551},\n\tdictWord{134, 0, 1782},\n\tdictWord{7, 0, 1287},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t44,\n\t},\n\tdictWord{10, 0, 552},\n\tdictWord{10, 0, 642},\n\tdictWord{11, 0, 839},\n\tdictWord{12, 0, 274},\n\tdictWord{12, 0, 275},\n\tdictWord{12, 0, 372},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t91,\n\t},\n\tdictWord{142, 0, 125},\n\tdictWord{5, 11, 751},\n\tdictWord{11, 11, 797},\n\tdictWord{140, 11, 203},\n\tdictWord{133, 0, 732},\n\tdictWord{7, 0, 679},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t313,\n\t},\n\tdictWord{4, 10, 100},\n\tdictWord{135, 11, 821},\n\tdictWord{10, 0, 361},\n\tdictWord{142, 0, 316},\n\tdictWord{134, 0, 595},\n\tdictWord{6, 0, 147},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t886,\n\t},\n\tdictWord{9, 0, 753},\n\tdictWord{138, 0, 268},\n\tdictWord{5, 10, 362},\n\tdictWord{5, 10, 443},\n\tdictWord{6, 10, 318},\n\tdictWord{7, 10, 1019},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t623,\n\t},\n\tdictWord{5, 10, 463},\n\tdictWord{136, 10, 296},\n\tdictWord{4, 10, 454},\n\tdictWord{5, 11, 950},\n\tdictWord{5, 11, 994},\n\tdictWord{134, 11, 351},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t137,\n\t},\n\tdictWord{5, 10, 48},\n\tdictWord{5, 10, 404},\n\tdictWord{6, 10, 557},\n\tdictWord{7, 10, 458},\n\tdictWord{8, 10, 597},\n\tdictWord{10, 10, 455},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t606,\n\t},\n\tdictWord{11, 10, 49},\n\tdictWord{11, 10, 548},\n\tdictWord{12, 10, 476},\n\tdictWord{13, 10, 18},\n\tdictWord{141, 10, 450},\n\tdictWord{133, 0, 414},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1762,\n\t},\n\tdictWord{5, 11, 421},\n\tdictWord{135, 11, 47},\n\tdictWord{5, 10, 442},\n\tdictWord{135, 10, 1984},\n\tdictWord{134, 0, 599},\n\tdictWord{134, 0, 1749},\n\tdictWord{134, 0, 1627},\n\tdictWord{4, 0, 488},\n\tdictWord{132, 11, 350},\n\tdictWord{137, 11, 751},\n\tdictWord{132, 0, 83},\n\tdictWord{140, 0, 676},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t967,\n\t},\n\tdictWord{7, 0, 1639},\n\tdictWord{5, 10, 55},\n\tdictWord{140, 10, 161},\n\tdictWord{4, 11, 473},\n\tdictWord{7, 11, 623},\n\tdictWord{8, 11, 808},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t871,\n\t},\n\tdictWord{9, 11, 893},\n\tdictWord{11, 11, 38},\n\tdictWord{11, 11, 431},\n\tdictWord{12, 11, 112},\n\tdictWord{12, 11, 217},\n\tdictWord{12, 11, 243},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t562,\n\t},\n\tdictWord{12, 11, 683},\n\tdictWord{13, 11, 141},\n\tdictWord{13, 11, 197},\n\tdictWord{13, 11, 227},\n\tdictWord{13, 11, 406},\n\tdictWord{13, 11, 487},\n\tdictWord{14, 11, 156},\n\tdictWord{14, 11, 203},\n\tdictWord{14, 11, 224},\n\tdictWord{14, 11, 256},\n\tdictWord{18, 11, 58},\n\tdictWord{150, 11, 0},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t450,\n\t},\n\tdictWord{7, 11, 736},\n\tdictWord{139, 11, 264},\n\tdictWord{134, 0, 278},\n\tdictWord{4, 11, 222},\n\tdictWord{7, 11, 286},\n\tdictWord{136, 11, 629},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t869,\n\t},\n\tdictWord{140, 0, 97},\n\tdictWord{144, 0, 14},\n\tdictWord{134, 0, 1085},\n\tdictWord{4, 10, 213},\n\tdictWord{7, 10, 223},\n\tdictWord{136, 10, 80},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t388,\n\t},\n\tdictWord{7, 0, 644},\n\tdictWord{139, 0, 781},\n\tdictWord{132, 0, 849},\n\tdictWord{7, 0, 229},\n\tdictWord{8, 0, 59},\n\tdictWord{9, 0, 190},\n\tdictWord{10, 0, 378},\n\tdictWord{140, 0, 191},\n\tdictWord{7, 10, 381},\n\tdictWord{7, 10, 806},\n\tdictWord{7, 10, 820},\n\tdictWord{8, 10, 354},\n\tdictWord{8, 10, 437},\n\tdictWord{8, 10, 787},\n\tdictWord{9, 10, 657},\n\tdictWord{10, 10, 58},\n\tdictWord{10, 10, 339},\n\tdictWord{10, 10, 749},\n\tdictWord{11, 10, 914},\n\tdictWord{12, 10, 162},\n\tdictWord{13, 10, 75},\n\tdictWord{14, 10, 106},\n\tdictWord{14, 10, 198},\n\tdictWord{14, 10, 320},\n\tdictWord{14, 10, 413},\n\tdictWord{146, 10, 43},\n\tdictWord{141, 11, 306},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t747,\n\t},\n\tdictWord{134, 0, 1115},\n\tdictWord{16, 0, 94},\n\tdictWord{16, 0, 108},\n\tdictWord{136, 11, 146},\n\tdictWord{6, 0, 700},\n\tdictWord{6, 0, 817},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1002,\n\t},\n\tdictWord{133, 10, 692},\n\tdictWord{4, 11, 465},\n\tdictWord{135, 11, 1663},\n\tdictWord{134, 10, 191},\n\tdictWord{6, 0, 1414},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t913,\n\t},\n\tdictWord{132, 0, 660},\n\tdictWord{7, 0, 1035},\n\tdictWord{138, 0, 737},\n\tdictWord{6, 10, 162},\n\tdictWord{7, 10, 1960},\n\tdictWord{136, 10, 831},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t706,\n\t},\n\tdictWord{7, 0, 690},\n\tdictWord{9, 0, 217},\n\tdictWord{9, 0, 587},\n\tdictWord{140, 0, 521},\n\tdictWord{138, 10, 426},\n\tdictWord{135, 10, 1235},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t82,\n\t},\n\tdictWord{7, 11, 138},\n\tdictWord{7, 11, 517},\n\tdictWord{9, 11, 673},\n\tdictWord{139, 11, 238},\n\tdictWord{138, 0, 272},\n\tdictWord{5, 11, 495},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t834,\n\t},\n\tdictWord{9, 11, 733},\n\tdictWord{139, 11, 378},\n\tdictWord{134, 0, 1744},\n\tdictWord{132, 0, 1011},\n\tdictWord{7, 11, 828},\n\tdictWord{142, 11, 116},\n\tdictWord{4, 0, 733},\n\tdictWord{9, 0, 194},\n\tdictWord{10, 0, 92},\n\tdictWord{11, 0, 198},\n\tdictWord{12, 0, 84},\n\tdictWord{13, 0, 128},\n\tdictWord{133, 11, 559},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t57,\n\t},\n\tdictWord{10, 0, 277},\n\tdictWord{6, 11, 21},\n\tdictWord{6, 11, 1737},\n\tdictWord{7, 11, 1444},\n\tdictWord{136, 11, 224},\n\tdictWord{4, 10, 204},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t902,\n\t},\n\tdictWord{136, 10, 833},\n\tdictWord{11, 0, 348},\n\tdictWord{12, 0, 99},\n\tdictWord{18, 0, 1},\n\tdictWord{18, 0, 11},\n\tdictWord{19, 0, 4},\n\tdictWord{7, 10, 366},\n\tdictWord{9, 10, 287},\n\tdictWord{12, 10, 199},\n\tdictWord{12, 10, 556},\n\tdictWord{140, 10, 577},\n\tdictWord{6, 0, 1981},\n\tdictWord{136, 0, 936},\n\tdictWord{\n\t\t21,\n\t\t0,\n\t\t33,\n\t},\n\tdictWord{150, 0, 40},\n\tdictWord{5, 11, 519},\n\tdictWord{138, 11, 204},\n\tdictWord{5, 10, 356},\n\tdictWord{135, 10, 224},\n\tdictWord{134, 0, 775},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t306,\n\t},\n\tdictWord{7, 10, 630},\n\tdictWord{9, 10, 567},\n\tdictWord{11, 10, 150},\n\tdictWord{11, 10, 444},\n\tdictWord{141, 10, 119},\n\tdictWord{5, 0, 979},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t539,\n\t},\n\tdictWord{133, 0, 611},\n\tdictWord{4, 11, 402},\n\tdictWord{135, 11, 1679},\n\tdictWord{5, 0, 178},\n\tdictWord{7, 11, 2},\n\tdictWord{8, 11, 323},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t479,\n\t},\n\tdictWord{5, 11, 59},\n\tdictWord{135, 11, 672},\n\tdictWord{4, 0, 1010},\n\tdictWord{6, 0, 1969},\n\tdictWord{138, 11, 237},\n\tdictWord{133, 11, 412},\n\tdictWord{146, 11, 34},\n\tdictWord{7, 11, 1740},\n\tdictWord{146, 11, 48},\n\tdictWord{134, 0, 664},\n\tdictWord{139, 10, 814},\n\tdictWord{4, 11, 85},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t549,\n\t},\n\tdictWord{133, 11, 94},\n\tdictWord{133, 11, 457},\n\tdictWord{132, 0, 390},\n\tdictWord{134, 0, 1510},\n\tdictWord{4, 10, 235},\n\tdictWord{135, 10, 255},\n\tdictWord{4, 10, 194},\n\tdictWord{5, 10, 584},\n\tdictWord{6, 11, 11},\n\tdictWord{6, 10, 384},\n\tdictWord{7, 11, 187},\n\tdictWord{7, 10, 583},\n\tdictWord{10, 10, 761},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t760,\n\t},\n\tdictWord{139, 10, 851},\n\tdictWord{4, 11, 522},\n\tdictWord{139, 11, 802},\n\tdictWord{135, 0, 493},\n\tdictWord{10, 11, 776},\n\tdictWord{13, 11, 345},\n\tdictWord{142, 11, 425},\n\tdictWord{146, 0, 37},\n\tdictWord{4, 11, 52},\n\tdictWord{135, 11, 661},\n\tdictWord{134, 0, 724},\n\tdictWord{134, 0, 829},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t520,\n\t},\n\tdictWord{133, 10, 562},\n\tdictWord{4, 11, 281},\n\tdictWord{5, 11, 38},\n\tdictWord{7, 11, 194},\n\tdictWord{7, 11, 668},\n\tdictWord{7, 11, 1893},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t397,\n\t},\n\tdictWord{5, 10, 191},\n\tdictWord{137, 10, 271},\n\tdictWord{7, 0, 1537},\n\tdictWord{14, 0, 96},\n\tdictWord{143, 0, 73},\n\tdictWord{5, 0, 473},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t168,\n\t},\n\tdictWord{4, 10, 470},\n\tdictWord{6, 10, 153},\n\tdictWord{7, 10, 1503},\n\tdictWord{7, 10, 1923},\n\tdictWord{10, 10, 701},\n\tdictWord{11, 10, 132},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t227,\n\t},\n\tdictWord{11, 10, 320},\n\tdictWord{11, 10, 436},\n\tdictWord{11, 10, 525},\n\tdictWord{11, 10, 855},\n\tdictWord{12, 10, 41},\n\tdictWord{12, 10, 286},\n\tdictWord{13, 10, 103},\n\tdictWord{13, 10, 284},\n\tdictWord{14, 10, 255},\n\tdictWord{14, 10, 262},\n\tdictWord{15, 10, 117},\n\tdictWord{143, 10, 127},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t105,\n\t},\n\tdictWord{5, 0, 438},\n\tdictWord{9, 0, 694},\n\tdictWord{12, 0, 627},\n\tdictWord{141, 0, 210},\n\tdictWord{133, 10, 327},\n\tdictWord{6, 10, 552},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1754,\n\t},\n\tdictWord{137, 10, 604},\n\tdictWord{134, 0, 1256},\n\tdictWord{152, 0, 11},\n\tdictWord{5, 11, 448},\n\tdictWord{11, 11, 98},\n\tdictWord{139, 11, 524},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1626,\n\t},\n\tdictWord{5, 10, 80},\n\tdictWord{6, 10, 405},\n\tdictWord{7, 10, 403},\n\tdictWord{7, 10, 1502},\n\tdictWord{8, 10, 456},\n\tdictWord{9, 10, 487},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t853,\n\t},\n\tdictWord{9, 10, 889},\n\tdictWord{10, 10, 309},\n\tdictWord{11, 10, 721},\n\tdictWord{11, 10, 994},\n\tdictWord{12, 10, 430},\n\tdictWord{13, 10, 165},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t16,\n\t},\n\tdictWord{146, 11, 44},\n\tdictWord{132, 0, 779},\n\tdictWord{8, 0, 25},\n\tdictWord{138, 0, 826},\n\tdictWord{4, 10, 453},\n\tdictWord{5, 10, 887},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t535,\n\t},\n\tdictWord{8, 10, 6},\n\tdictWord{8, 10, 543},\n\tdictWord{136, 10, 826},\n\tdictWord{137, 11, 461},\n\tdictWord{140, 11, 632},\n\tdictWord{132, 0, 308},\n\tdictWord{135, 0, 741},\n\tdictWord{132, 0, 671},\n\tdictWord{7, 0, 150},\n\tdictWord{8, 0, 649},\n\tdictWord{136, 0, 1020},\n\tdictWord{9, 0, 99},\n\tdictWord{6, 11, 336},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t552,\n\t},\n\tdictWord{9, 11, 285},\n\tdictWord{10, 11, 99},\n\tdictWord{139, 11, 568},\n\tdictWord{134, 0, 521},\n\tdictWord{5, 0, 339},\n\tdictWord{14, 0, 3},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t41,\n\t},\n\tdictWord{15, 0, 166},\n\tdictWord{147, 0, 66},\n\tdictWord{6, 11, 423},\n\tdictWord{7, 11, 665},\n\tdictWord{7, 11, 1210},\n\tdictWord{9, 11, 218},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t222,\n\t},\n\tdictWord{6, 0, 543},\n\tdictWord{5, 10, 101},\n\tdictWord{5, 11, 256},\n\tdictWord{6, 10, 88},\n\tdictWord{7, 10, 1677},\n\tdictWord{9, 10, 100},\n\tdictWord{10, 10, 677},\n\tdictWord{14, 10, 169},\n\tdictWord{14, 10, 302},\n\tdictWord{14, 10, 313},\n\tdictWord{15, 10, 48},\n\tdictWord{143, 10, 84},\n\tdictWord{4, 10, 310},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t708,\n\t},\n\tdictWord{7, 10, 996},\n\tdictWord{9, 10, 795},\n\tdictWord{10, 10, 390},\n\tdictWord{10, 10, 733},\n\tdictWord{11, 10, 451},\n\tdictWord{12, 10, 249},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t115,\n\t},\n\tdictWord{14, 10, 286},\n\tdictWord{143, 10, 100},\n\tdictWord{133, 10, 587},\n\tdictWord{13, 11, 417},\n\tdictWord{14, 11, 129},\n\tdictWord{143, 11, 15},\n\tdictWord{134, 0, 1358},\n\tdictWord{136, 11, 554},\n\tdictWord{132, 10, 498},\n\tdictWord{7, 10, 217},\n\tdictWord{8, 10, 140},\n\tdictWord{138, 10, 610},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t989,\n\t},\n\tdictWord{135, 11, 634},\n\tdictWord{6, 0, 155},\n\tdictWord{140, 0, 234},\n\tdictWord{135, 11, 462},\n\tdictWord{132, 11, 618},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1628,\n\t},\n\tdictWord{132, 0, 766},\n\tdictWord{4, 11, 339},\n\tdictWord{5, 10, 905},\n\tdictWord{135, 11, 259},\n\tdictWord{135, 0, 829},\n\tdictWord{4, 11, 759},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t169,\n\t},\n\tdictWord{7, 0, 1445},\n\tdictWord{4, 10, 456},\n\tdictWord{7, 10, 358},\n\tdictWord{7, 10, 1637},\n\tdictWord{8, 10, 643},\n\tdictWord{139, 10, 483},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t486,\n\t},\n\tdictWord{135, 0, 1349},\n\tdictWord{5, 11, 688},\n\tdictWord{135, 11, 712},\n\tdictWord{7, 0, 1635},\n\tdictWord{8, 0, 17},\n\tdictWord{10, 0, 217},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t295,\n\t},\n\tdictWord{12, 0, 2},\n\tdictWord{140, 11, 2},\n\tdictWord{138, 0, 558},\n\tdictWord{150, 10, 56},\n\tdictWord{4, 11, 278},\n\tdictWord{5, 11, 465},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1367,\n\t},\n\tdictWord{136, 11, 482},\n\tdictWord{133, 10, 535},\n\tdictWord{6, 0, 1362},\n\tdictWord{6, 0, 1461},\n\tdictWord{10, 11, 274},\n\tdictWord{10, 11, 625},\n\tdictWord{139, 11, 530},\n\tdictWord{5, 0, 599},\n\tdictWord{5, 11, 336},\n\tdictWord{6, 11, 341},\n\tdictWord{6, 11, 478},\n\tdictWord{6, 11, 1763},\n\tdictWord{136, 11, 386},\n\tdictWord{7, 10, 1748},\n\tdictWord{137, 11, 151},\n\tdictWord{134, 0, 1376},\n\tdictWord{133, 10, 539},\n\tdictWord{135, 11, 73},\n\tdictWord{135, 11, 1971},\n\tdictWord{139, 11, 283},\n\tdictWord{9, 0, 93},\n\tdictWord{139, 0, 474},\n\tdictWord{6, 10, 91},\n\tdictWord{135, 10, 435},\n\tdictWord{6, 0, 447},\n\tdictWord{5, 11, 396},\n\tdictWord{134, 11, 501},\n\tdictWord{4, 10, 16},\n\tdictWord{5, 10, 316},\n\tdictWord{5, 10, 842},\n\tdictWord{6, 10, 370},\n\tdictWord{6, 10, 1778},\n\tdictWord{8, 10, 166},\n\tdictWord{11, 10, 812},\n\tdictWord{12, 10, 206},\n\tdictWord{12, 10, 351},\n\tdictWord{14, 10, 418},\n\tdictWord{16, 10, 15},\n\tdictWord{16, 10, 34},\n\tdictWord{18, 10, 3},\n\tdictWord{19, 10, 3},\n\tdictWord{19, 10, 7},\n\tdictWord{20, 10, 4},\n\tdictWord{149, 10, 21},\n\tdictWord{7, 0, 577},\n\tdictWord{7, 0, 1432},\n\tdictWord{9, 0, 475},\n\tdictWord{9, 0, 505},\n\tdictWord{9, 0, 526},\n\tdictWord{9, 0, 609},\n\tdictWord{9, 0, 689},\n\tdictWord{9, 0, 726},\n\tdictWord{9, 0, 735},\n\tdictWord{9, 0, 738},\n\tdictWord{10, 0, 556},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t674,\n\t},\n\tdictWord{10, 0, 684},\n\tdictWord{11, 0, 89},\n\tdictWord{11, 0, 202},\n\tdictWord{11, 0, 272},\n\tdictWord{11, 0, 380},\n\tdictWord{11, 0, 415},\n\tdictWord{11, 0, 505},\n\tdictWord{11, 0, 537},\n\tdictWord{11, 0, 550},\n\tdictWord{11, 0, 562},\n\tdictWord{11, 0, 640},\n\tdictWord{11, 0, 667},\n\tdictWord{11, 0, 688},\n\tdictWord{11, 0, 847},\n\tdictWord{11, 0, 927},\n\tdictWord{11, 0, 930},\n\tdictWord{11, 0, 940},\n\tdictWord{12, 0, 144},\n\tdictWord{12, 0, 325},\n\tdictWord{12, 0, 329},\n\tdictWord{12, 0, 389},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t403,\n\t},\n\tdictWord{12, 0, 451},\n\tdictWord{12, 0, 515},\n\tdictWord{12, 0, 604},\n\tdictWord{12, 0, 616},\n\tdictWord{12, 0, 626},\n\tdictWord{13, 0, 66},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t131,\n\t},\n\tdictWord{13, 0, 167},\n\tdictWord{13, 0, 236},\n\tdictWord{13, 0, 368},\n\tdictWord{13, 0, 411},\n\tdictWord{13, 0, 434},\n\tdictWord{13, 0, 453},\n\tdictWord{13, 0, 461},\n\tdictWord{13, 0, 474},\n\tdictWord{14, 0, 59},\n\tdictWord{14, 0, 60},\n\tdictWord{14, 0, 139},\n\tdictWord{14, 0, 152},\n\tdictWord{14, 0, 276},\n\tdictWord{14, 0, 353},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t402,\n\t},\n\tdictWord{15, 0, 28},\n\tdictWord{15, 0, 81},\n\tdictWord{15, 0, 123},\n\tdictWord{15, 0, 152},\n\tdictWord{18, 0, 136},\n\tdictWord{148, 0, 88},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t929,\n\t},\n\tdictWord{133, 11, 799},\n\tdictWord{136, 11, 46},\n\tdictWord{142, 0, 307},\n\tdictWord{4, 0, 609},\n\tdictWord{7, 0, 756},\n\tdictWord{9, 0, 544},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t413,\n\t},\n\tdictWord{144, 0, 25},\n\tdictWord{10, 0, 687},\n\tdictWord{7, 10, 619},\n\tdictWord{10, 10, 547},\n\tdictWord{11, 10, 122},\n\tdictWord{140, 10, 601},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t930,\n\t},\n\tdictWord{133, 0, 947},\n\tdictWord{133, 0, 939},\n\tdictWord{142, 0, 21},\n\tdictWord{4, 11, 892},\n\tdictWord{133, 11, 770},\n\tdictWord{133, 0, 962},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t651,\n\t},\n\tdictWord{8, 0, 170},\n\tdictWord{9, 0, 61},\n\tdictWord{9, 0, 63},\n\tdictWord{10, 0, 23},\n\tdictWord{10, 0, 37},\n\tdictWord{10, 0, 834},\n\tdictWord{11, 0, 4},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t187,\n\t},\n\tdictWord{11, 0, 281},\n\tdictWord{11, 0, 503},\n\tdictWord{11, 0, 677},\n\tdictWord{12, 0, 96},\n\tdictWord{12, 0, 130},\n\tdictWord{12, 0, 244},\n\tdictWord{14, 0, 5},\n\tdictWord{14, 0, 40},\n\tdictWord{14, 0, 162},\n\tdictWord{14, 0, 202},\n\tdictWord{146, 0, 133},\n\tdictWord{4, 0, 406},\n\tdictWord{5, 0, 579},\n\tdictWord{12, 0, 492},\n\tdictWord{\n\t\t150,\n\t\t0,\n\t\t15,\n\t},\n\tdictWord{135, 11, 158},\n\tdictWord{135, 0, 597},\n\tdictWord{132, 0, 981},\n\tdictWord{132, 10, 888},\n\tdictWord{4, 10, 149},\n\tdictWord{138, 10, 368},\n\tdictWord{132, 0, 545},\n\tdictWord{4, 10, 154},\n\tdictWord{7, 10, 1134},\n\tdictWord{136, 10, 105},\n\tdictWord{135, 11, 2001},\n\tdictWord{134, 0, 1558},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t31,\n\t},\n\tdictWord{6, 10, 429},\n\tdictWord{7, 10, 962},\n\tdictWord{9, 10, 458},\n\tdictWord{139, 10, 691},\n\tdictWord{132, 10, 312},\n\tdictWord{135, 10, 1642},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t17,\n\t},\n\tdictWord{6, 0, 1304},\n\tdictWord{7, 0, 16},\n\tdictWord{7, 0, 1001},\n\tdictWord{9, 0, 886},\n\tdictWord{10, 0, 489},\n\tdictWord{10, 0, 800},\n\tdictWord{11, 0, 782},\n\tdictWord{12, 0, 320},\n\tdictWord{13, 0, 467},\n\tdictWord{14, 0, 145},\n\tdictWord{14, 0, 387},\n\tdictWord{143, 0, 119},\n\tdictWord{135, 0, 1982},\n\tdictWord{17, 0, 17},\n\tdictWord{7, 11, 1461},\n\tdictWord{140, 11, 91},\n\tdictWord{4, 10, 236},\n\tdictWord{132, 11, 602},\n\tdictWord{138, 0, 907},\n\tdictWord{136, 0, 110},\n\tdictWord{7, 0, 272},\n\tdictWord{19, 0, 53},\n\tdictWord{5, 10, 836},\n\tdictWord{5, 10, 857},\n\tdictWord{134, 10, 1680},\n\tdictWord{5, 0, 458},\n\tdictWord{7, 11, 1218},\n\tdictWord{136, 11, 303},\n\tdictWord{7, 0, 1983},\n\tdictWord{8, 0, 0},\n\tdictWord{8, 0, 171},\n\tdictWord{9, 0, 120},\n\tdictWord{9, 0, 732},\n\tdictWord{10, 0, 473},\n\tdictWord{11, 0, 656},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t998,\n\t},\n\tdictWord{18, 0, 0},\n\tdictWord{18, 0, 2},\n\tdictWord{19, 0, 21},\n\tdictWord{10, 10, 68},\n\tdictWord{139, 10, 494},\n\tdictWord{137, 11, 662},\n\tdictWord{4, 11, 13},\n\tdictWord{5, 11, 567},\n\tdictWord{7, 11, 1498},\n\tdictWord{9, 11, 124},\n\tdictWord{11, 11, 521},\n\tdictWord{140, 11, 405},\n\tdictWord{4, 10, 81},\n\tdictWord{139, 10, 867},\n\tdictWord{135, 11, 1006},\n\tdictWord{7, 11, 800},\n\tdictWord{7, 11, 1783},\n\tdictWord{138, 11, 12},\n\tdictWord{9, 0, 295},\n\tdictWord{10, 0, 443},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t282,\n\t},\n\tdictWord{8, 10, 650},\n\tdictWord{137, 10, 907},\n\tdictWord{132, 11, 735},\n\tdictWord{4, 11, 170},\n\tdictWord{4, 10, 775},\n\tdictWord{135, 11, 323},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1844,\n\t},\n\tdictWord{10, 0, 924},\n\tdictWord{11, 11, 844},\n\tdictWord{12, 11, 104},\n\tdictWord{140, 11, 625},\n\tdictWord{5, 11, 304},\n\tdictWord{7, 11, 1403},\n\tdictWord{140, 11, 498},\n\tdictWord{134, 0, 1232},\n\tdictWord{4, 0, 519},\n\tdictWord{10, 0, 70},\n\tdictWord{12, 0, 26},\n\tdictWord{14, 0, 17},\n\tdictWord{14, 0, 178},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t34,\n\t},\n\tdictWord{149, 0, 12},\n\tdictWord{132, 0, 993},\n\tdictWord{4, 11, 148},\n\tdictWord{133, 11, 742},\n\tdictWord{6, 0, 31},\n\tdictWord{7, 0, 491},\n\tdictWord{7, 0, 530},\n\tdictWord{8, 0, 592},\n\tdictWord{11, 0, 53},\n\tdictWord{11, 0, 779},\n\tdictWord{12, 0, 167},\n\tdictWord{12, 0, 411},\n\tdictWord{14, 0, 14},\n\tdictWord{14, 0, 136},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t72,\n\t},\n\tdictWord{16, 0, 17},\n\tdictWord{144, 0, 72},\n\tdictWord{133, 0, 907},\n\tdictWord{134, 0, 733},\n\tdictWord{133, 11, 111},\n\tdictWord{4, 10, 71},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t376,\n\t},\n\tdictWord{7, 10, 119},\n\tdictWord{138, 10, 665},\n\tdictWord{136, 0, 55},\n\tdictWord{8, 0, 430},\n\tdictWord{136, 11, 430},\n\tdictWord{4, 0, 208},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t106,\n\t},\n\tdictWord{6, 0, 531},\n\tdictWord{8, 0, 408},\n\tdictWord{9, 0, 188},\n\tdictWord{138, 0, 572},\n\tdictWord{12, 0, 56},\n\tdictWord{11, 10, 827},\n\tdictWord{14, 10, 34},\n\tdictWord{143, 10, 148},\n\tdictWord{134, 0, 1693},\n\tdictWord{133, 11, 444},\n\tdictWord{132, 10, 479},\n\tdictWord{140, 0, 441},\n\tdictWord{9, 0, 449},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t192,\n\t},\n\tdictWord{138, 0, 740},\n\tdictWord{134, 0, 928},\n\tdictWord{4, 0, 241},\n\tdictWord{7, 10, 607},\n\tdictWord{136, 10, 99},\n\tdictWord{8, 11, 123},\n\tdictWord{\n\t\t15,\n\t\t11,\n\t\t6,\n\t},\n\tdictWord{144, 11, 7},\n\tdictWord{6, 11, 285},\n\tdictWord{8, 11, 654},\n\tdictWord{11, 11, 749},\n\tdictWord{12, 11, 190},\n\tdictWord{12, 11, 327},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t120,\n\t},\n\tdictWord{13, 11, 121},\n\tdictWord{13, 11, 327},\n\tdictWord{15, 11, 47},\n\tdictWord{146, 11, 40},\n\tdictWord{4, 10, 41},\n\tdictWord{5, 10, 74},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1627,\n\t},\n\tdictWord{11, 10, 871},\n\tdictWord{140, 10, 619},\n\tdictWord{7, 0, 1525},\n\tdictWord{11, 10, 329},\n\tdictWord{11, 10, 965},\n\tdictWord{12, 10, 241},\n\tdictWord{14, 10, 354},\n\tdictWord{15, 10, 22},\n\tdictWord{148, 10, 63},\n\tdictWord{132, 0, 259},\n\tdictWord{135, 11, 183},\n\tdictWord{9, 10, 209},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t300,\n\t},\n\tdictWord{5, 11, 937},\n\tdictWord{135, 11, 100},\n\tdictWord{133, 10, 98},\n\tdictWord{4, 0, 173},\n\tdictWord{5, 0, 312},\n\tdictWord{5, 0, 512},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1285,\n\t},\n\tdictWord{141, 0, 185},\n\tdictWord{7, 0, 1603},\n\tdictWord{7, 0, 1691},\n\tdictWord{9, 0, 464},\n\tdictWord{11, 0, 195},\n\tdictWord{12, 0, 279},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t448,\n\t},\n\tdictWord{14, 0, 11},\n\tdictWord{147, 0, 102},\n\tdictWord{135, 0, 1113},\n\tdictWord{133, 10, 984},\n\tdictWord{4, 0, 452},\n\tdictWord{5, 0, 583},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t720,\n\t},\n\tdictWord{4, 0, 547},\n\tdictWord{5, 0, 817},\n\tdictWord{6, 0, 433},\n\tdictWord{7, 0, 593},\n\tdictWord{7, 0, 1378},\n\tdictWord{8, 0, 161},\n\tdictWord{9, 0, 284},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t313,\n\t},\n\tdictWord{139, 0, 886},\n\tdictWord{8, 0, 722},\n\tdictWord{4, 10, 182},\n\tdictWord{6, 10, 205},\n\tdictWord{135, 10, 220},\n\tdictWord{150, 0, 13},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t42,\n\t},\n\tdictWord{9, 10, 205},\n\tdictWord{9, 10, 786},\n\tdictWord{138, 10, 659},\n\tdictWord{6, 0, 289},\n\tdictWord{7, 0, 1670},\n\tdictWord{12, 0, 57},\n\tdictWord{151, 0, 4},\n\tdictWord{132, 10, 635},\n\tdictWord{14, 0, 43},\n\tdictWord{146, 0, 21},\n\tdictWord{139, 10, 533},\n\tdictWord{135, 0, 1694},\n\tdictWord{8, 0, 420},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t193,\n\t},\n\tdictWord{135, 0, 409},\n\tdictWord{132, 10, 371},\n\tdictWord{4, 10, 272},\n\tdictWord{135, 10, 836},\n\tdictWord{5, 10, 825},\n\tdictWord{134, 10, 1640},\n\tdictWord{5, 11, 251},\n\tdictWord{5, 11, 956},\n\tdictWord{8, 11, 268},\n\tdictWord{9, 11, 214},\n\tdictWord{146, 11, 142},\n\tdictWord{138, 0, 308},\n\tdictWord{6, 0, 1863},\n\tdictWord{141, 11, 37},\n\tdictWord{137, 10, 879},\n\tdictWord{7, 10, 317},\n\tdictWord{135, 10, 569},\n\tdictWord{132, 11, 294},\n\tdictWord{134, 0, 790},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t1002,\n\t},\n\tdictWord{136, 0, 745},\n\tdictWord{5, 11, 346},\n\tdictWord{5, 11, 711},\n\tdictWord{136, 11, 390},\n\tdictWord{135, 0, 289},\n\tdictWord{5, 0, 504},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t68,\n\t},\n\tdictWord{137, 10, 307},\n\tdictWord{4, 0, 239},\n\tdictWord{6, 0, 477},\n\tdictWord{7, 0, 1607},\n\tdictWord{139, 0, 617},\n\tdictWord{149, 0, 13},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t609,\n\t},\n\tdictWord{133, 11, 624},\n\tdictWord{5, 11, 783},\n\tdictWord{7, 11, 1998},\n\tdictWord{135, 11, 2047},\n\tdictWord{133, 10, 525},\n\tdictWord{132, 0, 367},\n\tdictWord{132, 11, 594},\n\tdictWord{6, 0, 528},\n\tdictWord{133, 10, 493},\n\tdictWord{4, 10, 174},\n\tdictWord{135, 10, 911},\n\tdictWord{8, 10, 417},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t782,\n\t},\n\tdictWord{132, 0, 694},\n\tdictWord{7, 0, 548},\n\tdictWord{137, 0, 58},\n\tdictWord{4, 10, 32},\n\tdictWord{5, 10, 215},\n\tdictWord{6, 10, 269},\n\tdictWord{7, 10, 1782},\n\tdictWord{7, 10, 1892},\n\tdictWord{10, 10, 16},\n\tdictWord{11, 10, 822},\n\tdictWord{11, 10, 954},\n\tdictWord{141, 10, 481},\n\tdictWord{140, 0, 687},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1749,\n\t},\n\tdictWord{136, 10, 477},\n\tdictWord{132, 11, 569},\n\tdictWord{133, 10, 308},\n\tdictWord{135, 10, 1088},\n\tdictWord{4, 0, 661},\n\tdictWord{138, 0, 1004},\n\tdictWord{5, 11, 37},\n\tdictWord{6, 11, 39},\n\tdictWord{6, 11, 451},\n\tdictWord{7, 11, 218},\n\tdictWord{7, 11, 667},\n\tdictWord{7, 11, 1166},\n\tdictWord{7, 11, 1687},\n\tdictWord{8, 11, 662},\n\tdictWord{144, 11, 2},\n\tdictWord{9, 0, 445},\n\tdictWord{12, 0, 53},\n\tdictWord{13, 0, 492},\n\tdictWord{5, 10, 126},\n\tdictWord{8, 10, 297},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t366,\n\t},\n\tdictWord{140, 10, 374},\n\tdictWord{7, 10, 1551},\n\tdictWord{139, 10, 361},\n\tdictWord{148, 0, 74},\n\tdictWord{134, 11, 508},\n\tdictWord{135, 0, 213},\n\tdictWord{132, 10, 175},\n\tdictWord{132, 10, 685},\n\tdictWord{6, 0, 760},\n\tdictWord{6, 0, 834},\n\tdictWord{134, 0, 1248},\n\tdictWord{7, 11, 453},\n\tdictWord{7, 11, 635},\n\tdictWord{7, 11, 796},\n\tdictWord{8, 11, 331},\n\tdictWord{9, 11, 328},\n\tdictWord{9, 11, 330},\n\tdictWord{9, 11, 865},\n\tdictWord{10, 11, 119},\n\tdictWord{10, 11, 235},\n\tdictWord{11, 11, 111},\n\tdictWord{11, 11, 129},\n\tdictWord{11, 11, 240},\n\tdictWord{12, 11, 31},\n\tdictWord{12, 11, 66},\n\tdictWord{12, 11, 222},\n\tdictWord{12, 11, 269},\n\tdictWord{12, 11, 599},\n\tdictWord{12, 11, 689},\n\tdictWord{13, 11, 186},\n\tdictWord{13, 11, 364},\n\tdictWord{142, 11, 345},\n\tdictWord{7, 0, 1672},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t189,\n\t},\n\tdictWord{133, 10, 797},\n\tdictWord{133, 10, 565},\n\tdictWord{6, 0, 1548},\n\tdictWord{6, 11, 98},\n\tdictWord{7, 11, 585},\n\tdictWord{135, 11, 702},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t968,\n\t},\n\tdictWord{15, 0, 192},\n\tdictWord{149, 0, 56},\n\tdictWord{4, 10, 252},\n\tdictWord{6, 11, 37},\n\tdictWord{7, 11, 299},\n\tdictWord{7, 10, 1068},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1666,\n\t},\n\tdictWord{8, 11, 195},\n\tdictWord{8, 11, 316},\n\tdictWord{9, 11, 178},\n\tdictWord{9, 11, 276},\n\tdictWord{9, 11, 339},\n\tdictWord{9, 11, 536},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t102,\n\t},\n\tdictWord{10, 11, 362},\n\tdictWord{10, 10, 434},\n\tdictWord{10, 11, 785},\n\tdictWord{11, 11, 55},\n\tdictWord{11, 11, 149},\n\tdictWord{11, 10, 228},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t426,\n\t},\n\tdictWord{11, 11, 773},\n\tdictWord{13, 10, 231},\n\tdictWord{13, 11, 416},\n\tdictWord{13, 11, 419},\n\tdictWord{14, 11, 38},\n\tdictWord{14, 11, 41},\n\tdictWord{14, 11, 210},\n\tdictWord{18, 10, 106},\n\tdictWord{148, 10, 87},\n\tdictWord{4, 0, 751},\n\tdictWord{11, 0, 390},\n\tdictWord{140, 0, 32},\n\tdictWord{4, 0, 409},\n\tdictWord{133, 0, 78},\n\tdictWord{11, 11, 458},\n\tdictWord{12, 11, 15},\n\tdictWord{140, 11, 432},\n\tdictWord{7, 0, 1602},\n\tdictWord{10, 0, 257},\n\tdictWord{10, 0, 698},\n\tdictWord{11, 0, 544},\n\tdictWord{11, 0, 585},\n\tdictWord{12, 0, 212},\n\tdictWord{13, 0, 307},\n\tdictWord{5, 10, 231},\n\tdictWord{7, 10, 601},\n\tdictWord{9, 10, 277},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t674,\n\t},\n\tdictWord{10, 10, 178},\n\tdictWord{10, 10, 418},\n\tdictWord{10, 10, 509},\n\tdictWord{11, 10, 531},\n\tdictWord{12, 10, 113},\n\tdictWord{12, 10, 475},\n\tdictWord{13, 10, 99},\n\tdictWord{142, 10, 428},\n\tdictWord{6, 0, 473},\n\tdictWord{145, 0, 105},\n\tdictWord{6, 0, 1949},\n\tdictWord{15, 0, 156},\n\tdictWord{133, 11, 645},\n\tdictWord{7, 10, 1591},\n\tdictWord{144, 10, 43},\n\tdictWord{135, 0, 1779},\n\tdictWord{135, 10, 1683},\n\tdictWord{4, 11, 290},\n\tdictWord{135, 11, 1356},\n\tdictWord{134, 0, 763},\n\tdictWord{6, 11, 70},\n\tdictWord{7, 11, 1292},\n\tdictWord{10, 11, 762},\n\tdictWord{139, 11, 288},\n\tdictWord{142, 0, 29},\n\tdictWord{140, 11, 428},\n\tdictWord{7, 0, 883},\n\tdictWord{7, 11, 131},\n\tdictWord{7, 11, 422},\n\tdictWord{8, 11, 210},\n\tdictWord{140, 11, 573},\n\tdictWord{134, 0, 488},\n\tdictWord{4, 10, 399},\n\tdictWord{5, 10, 119},\n\tdictWord{5, 10, 494},\n\tdictWord{7, 10, 751},\n\tdictWord{137, 10, 556},\n\tdictWord{133, 0, 617},\n\tdictWord{132, 11, 936},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t50,\n\t},\n\tdictWord{7, 0, 1518},\n\tdictWord{139, 0, 694},\n\tdictWord{137, 0, 785},\n\tdictWord{4, 0, 546},\n\tdictWord{135, 0, 2042},\n\tdictWord{7, 11, 716},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t97,\n\t},\n\tdictWord{141, 11, 251},\n\tdictWord{132, 11, 653},\n\tdictWord{145, 0, 22},\n\tdictWord{134, 0, 1016},\n\tdictWord{4, 0, 313},\n\tdictWord{133, 0, 577},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t657,\n\t},\n\tdictWord{8, 0, 184},\n\tdictWord{141, 0, 433},\n\tdictWord{135, 0, 935},\n\tdictWord{6, 0, 720},\n\tdictWord{9, 0, 114},\n\tdictWord{146, 11, 80},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t186,\n\t},\n\tdictWord{12, 0, 292},\n\tdictWord{14, 0, 100},\n\tdictWord{18, 0, 70},\n\tdictWord{7, 10, 594},\n\tdictWord{7, 10, 851},\n\tdictWord{7, 10, 1858},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t411,\n\t},\n\tdictWord{9, 10, 574},\n\tdictWord{9, 10, 666},\n\tdictWord{9, 10, 737},\n\tdictWord{10, 10, 346},\n\tdictWord{10, 10, 712},\n\tdictWord{11, 10, 246},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t432,\n\t},\n\tdictWord{11, 10, 517},\n\tdictWord{11, 10, 647},\n\tdictWord{11, 10, 679},\n\tdictWord{11, 10, 727},\n\tdictWord{12, 10, 304},\n\tdictWord{12, 10, 305},\n\tdictWord{12, 10, 323},\n\tdictWord{12, 10, 483},\n\tdictWord{12, 10, 572},\n\tdictWord{12, 10, 593},\n\tdictWord{12, 10, 602},\n\tdictWord{13, 10, 95},\n\tdictWord{13, 10, 101},\n\tdictWord{13, 10, 171},\n\tdictWord{13, 10, 315},\n\tdictWord{13, 10, 378},\n\tdictWord{13, 10, 425},\n\tdictWord{13, 10, 475},\n\tdictWord{14, 10, 63},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t380,\n\t},\n\tdictWord{14, 10, 384},\n\tdictWord{15, 10, 133},\n\tdictWord{18, 10, 112},\n\tdictWord{148, 10, 72},\n\tdictWord{135, 10, 1093},\n\tdictWord{135, 11, 1836},\n\tdictWord{132, 10, 679},\n\tdictWord{137, 10, 203},\n\tdictWord{11, 0, 402},\n\tdictWord{12, 0, 109},\n\tdictWord{12, 0, 431},\n\tdictWord{13, 0, 179},\n\tdictWord{13, 0, 206},\n\tdictWord{14, 0, 217},\n\tdictWord{16, 0, 3},\n\tdictWord{148, 0, 53},\n\tdictWord{7, 11, 1368},\n\tdictWord{8, 11, 232},\n\tdictWord{8, 11, 361},\n\tdictWord{10, 11, 682},\n\tdictWord{138, 11, 742},\n\tdictWord{137, 10, 714},\n\tdictWord{5, 0, 886},\n\tdictWord{6, 0, 46},\n\tdictWord{6, 0, 1790},\n\tdictWord{7, 0, 14},\n\tdictWord{7, 0, 732},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1654,\n\t},\n\tdictWord{8, 0, 95},\n\tdictWord{8, 0, 327},\n\tdictWord{8, 0, 616},\n\tdictWord{9, 0, 892},\n\tdictWord{10, 0, 598},\n\tdictWord{10, 0, 769},\n\tdictWord{11, 0, 134},\n\tdictWord{11, 0, 747},\n\tdictWord{12, 0, 378},\n\tdictWord{14, 0, 97},\n\tdictWord{137, 11, 534},\n\tdictWord{4, 0, 969},\n\tdictWord{136, 10, 825},\n\tdictWord{137, 11, 27},\n\tdictWord{6, 0, 727},\n\tdictWord{142, 11, 12},\n\tdictWord{133, 0, 1021},\n\tdictWord{134, 0, 1190},\n\tdictWord{134, 11, 1657},\n\tdictWord{5, 10, 143},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t769,\n\t},\n\tdictWord{6, 10, 1760},\n\tdictWord{7, 10, 682},\n\tdictWord{7, 10, 1992},\n\tdictWord{136, 10, 736},\n\tdictWord{132, 0, 153},\n\tdictWord{135, 11, 127},\n\tdictWord{133, 0, 798},\n\tdictWord{132, 0, 587},\n\tdictWord{6, 0, 598},\n\tdictWord{7, 0, 42},\n\tdictWord{8, 0, 695},\n\tdictWord{10, 0, 212},\n\tdictWord{11, 0, 158},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t196,\n\t},\n\tdictWord{145, 0, 85},\n\tdictWord{133, 10, 860},\n\tdictWord{6, 0, 1929},\n\tdictWord{134, 0, 1933},\n\tdictWord{5, 0, 957},\n\tdictWord{5, 0, 1008},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t577,\n\t},\n\tdictWord{12, 0, 141},\n\tdictWord{6, 10, 422},\n\tdictWord{7, 10, 0},\n\tdictWord{7, 10, 1544},\n\tdictWord{8, 11, 364},\n\tdictWord{11, 10, 990},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t453,\n\t},\n\tdictWord{13, 10, 47},\n\tdictWord{141, 10, 266},\n\tdictWord{134, 0, 1319},\n\tdictWord{4, 0, 129},\n\tdictWord{135, 0, 465},\n\tdictWord{7, 0, 470},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1057,\n\t},\n\tdictWord{7, 0, 1201},\n\tdictWord{9, 0, 755},\n\tdictWord{11, 0, 906},\n\tdictWord{140, 0, 527},\n\tdictWord{7, 0, 908},\n\tdictWord{146, 0, 7},\n\tdictWord{5, 0, 148},\n\tdictWord{136, 0, 450},\n\tdictWord{5, 10, 515},\n\tdictWord{137, 10, 131},\n\tdictWord{7, 10, 1605},\n\tdictWord{11, 10, 962},\n\tdictWord{146, 10, 139},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t646,\n\t},\n\tdictWord{134, 0, 1166},\n\tdictWord{4, 10, 396},\n\tdictWord{7, 10, 728},\n\tdictWord{9, 10, 117},\n\tdictWord{13, 10, 202},\n\tdictWord{148, 10, 51},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t121,\n\t},\n\tdictWord{6, 10, 124},\n\tdictWord{6, 10, 357},\n\tdictWord{7, 10, 1138},\n\tdictWord{7, 10, 1295},\n\tdictWord{8, 10, 162},\n\tdictWord{139, 10, 655},\n\tdictWord{14, 0, 374},\n\tdictWord{142, 11, 374},\n\tdictWord{138, 0, 253},\n\tdictWord{139, 0, 1003},\n\tdictWord{5, 11, 909},\n\tdictWord{9, 11, 849},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t805,\n\t},\n\tdictWord{133, 10, 237},\n\tdictWord{7, 11, 525},\n\tdictWord{7, 11, 1579},\n\tdictWord{8, 11, 497},\n\tdictWord{136, 11, 573},\n\tdictWord{137, 0, 46},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t879,\n\t},\n\tdictWord{134, 0, 806},\n\tdictWord{135, 0, 1868},\n\tdictWord{6, 0, 1837},\n\tdictWord{134, 0, 1846},\n\tdictWord{6, 0, 730},\n\tdictWord{134, 0, 881},\n\tdictWord{7, 0, 965},\n\tdictWord{7, 0, 1460},\n\tdictWord{7, 0, 1604},\n\tdictWord{7, 11, 193},\n\tdictWord{7, 11, 397},\n\tdictWord{7, 11, 1105},\n\tdictWord{8, 11, 124},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t619,\n\t},\n\tdictWord{9, 11, 305},\n\tdictWord{10, 11, 264},\n\tdictWord{11, 11, 40},\n\tdictWord{12, 11, 349},\n\tdictWord{13, 11, 134},\n\tdictWord{13, 11, 295},\n\tdictWord{14, 11, 155},\n\tdictWord{15, 11, 120},\n\tdictWord{146, 11, 105},\n\tdictWord{136, 0, 506},\n\tdictWord{143, 0, 10},\n\tdictWord{4, 11, 262},\n\tdictWord{7, 11, 342},\n\tdictWord{7, 10, 571},\n\tdictWord{7, 10, 1877},\n\tdictWord{10, 10, 366},\n\tdictWord{141, 11, 23},\n\tdictWord{133, 11, 641},\n\tdictWord{10, 0, 22},\n\tdictWord{9, 10, 513},\n\tdictWord{10, 10, 39},\n\tdictWord{12, 10, 122},\n\tdictWord{140, 10, 187},\n\tdictWord{135, 11, 1431},\n\tdictWord{150, 11, 49},\n\tdictWord{4, 11, 99},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t250,\n\t},\n\tdictWord{6, 11, 346},\n\tdictWord{8, 11, 127},\n\tdictWord{138, 11, 81},\n\tdictWord{6, 0, 2014},\n\tdictWord{8, 0, 928},\n\tdictWord{10, 0, 960},\n\tdictWord{10, 0, 979},\n\tdictWord{140, 0, 996},\n\tdictWord{134, 0, 296},\n\tdictWord{132, 11, 915},\n\tdictWord{5, 11, 75},\n\tdictWord{9, 11, 517},\n\tdictWord{10, 11, 470},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t155,\n\t},\n\tdictWord{141, 11, 224},\n\tdictWord{137, 10, 873},\n\tdictWord{4, 0, 854},\n\tdictWord{140, 11, 18},\n\tdictWord{134, 0, 587},\n\tdictWord{7, 10, 107},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t838,\n\t},\n\tdictWord{8, 10, 550},\n\tdictWord{138, 10, 401},\n\tdictWord{11, 0, 636},\n\tdictWord{15, 0, 145},\n\tdictWord{17, 0, 34},\n\tdictWord{19, 0, 50},\n\tdictWord{\n\t\t23,\n\t\t0,\n\t\t20,\n\t},\n\tdictWord{11, 10, 588},\n\tdictWord{11, 10, 864},\n\tdictWord{11, 10, 968},\n\tdictWord{143, 10, 160},\n\tdictWord{135, 11, 216},\n\tdictWord{7, 0, 982},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t32,\n\t},\n\tdictWord{143, 0, 56},\n\tdictWord{133, 10, 768},\n\tdictWord{133, 11, 954},\n\tdictWord{6, 11, 304},\n\tdictWord{7, 11, 1114},\n\tdictWord{8, 11, 418},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t345,\n\t},\n\tdictWord{11, 11, 341},\n\tdictWord{11, 11, 675},\n\tdictWord{141, 11, 40},\n\tdictWord{9, 11, 410},\n\tdictWord{139, 11, 425},\n\tdictWord{136, 0, 941},\n\tdictWord{5, 0, 435},\n\tdictWord{132, 10, 894},\n\tdictWord{5, 0, 85},\n\tdictWord{6, 0, 419},\n\tdictWord{7, 0, 134},\n\tdictWord{7, 0, 305},\n\tdictWord{7, 0, 361},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1337,\n\t},\n\tdictWord{8, 0, 71},\n\tdictWord{140, 0, 519},\n\tdictWord{140, 0, 688},\n\tdictWord{135, 0, 740},\n\tdictWord{5, 0, 691},\n\tdictWord{7, 0, 345},\n\tdictWord{9, 0, 94},\n\tdictWord{140, 0, 169},\n\tdictWord{5, 0, 183},\n\tdictWord{6, 0, 582},\n\tdictWord{10, 0, 679},\n\tdictWord{140, 0, 435},\n\tdictWord{134, 11, 14},\n\tdictWord{6, 0, 945},\n\tdictWord{135, 0, 511},\n\tdictWord{134, 11, 1708},\n\tdictWord{5, 11, 113},\n\tdictWord{6, 11, 243},\n\tdictWord{7, 11, 1865},\n\tdictWord{11, 11, 161},\n\tdictWord{16, 11, 37},\n\tdictWord{145, 11, 99},\n\tdictWord{132, 11, 274},\n\tdictWord{137, 0, 539},\n\tdictWord{7, 0, 1993},\n\tdictWord{8, 0, 684},\n\tdictWord{134, 10, 272},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t659,\n\t},\n\tdictWord{134, 0, 982},\n\tdictWord{4, 10, 9},\n\tdictWord{5, 10, 128},\n\tdictWord{7, 10, 368},\n\tdictWord{11, 10, 480},\n\tdictWord{148, 10, 3},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t583,\n\t},\n\tdictWord{132, 0, 803},\n\tdictWord{133, 0, 704},\n\tdictWord{4, 0, 179},\n\tdictWord{5, 0, 198},\n\tdictWord{133, 0, 697},\n\tdictWord{7, 0, 347},\n\tdictWord{7, 0, 971},\n\tdictWord{8, 0, 181},\n\tdictWord{10, 0, 711},\n\tdictWord{135, 11, 166},\n\tdictWord{136, 10, 682},\n\tdictWord{4, 10, 2},\n\tdictWord{7, 10, 545},\n\tdictWord{7, 10, 894},\n\tdictWord{136, 11, 521},\n\tdictWord{135, 0, 481},\n\tdictWord{132, 0, 243},\n\tdictWord{5, 0, 203},\n\tdictWord{7, 0, 19},\n\tdictWord{7, 0, 71},\n\tdictWord{7, 0, 113},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t405,\n\t},\n\tdictWord{11, 0, 357},\n\tdictWord{142, 0, 240},\n\tdictWord{5, 11, 725},\n\tdictWord{5, 11, 727},\n\tdictWord{135, 11, 1811},\n\tdictWord{6, 0, 826},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t304,\n\t},\n\tdictWord{7, 0, 1450},\n\tdictWord{139, 0, 99},\n\tdictWord{133, 11, 654},\n\tdictWord{134, 0, 492},\n\tdictWord{5, 0, 134},\n\tdictWord{6, 0, 408},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t495,\n\t},\n\tdictWord{7, 0, 1593},\n\tdictWord{6, 11, 273},\n\tdictWord{10, 11, 188},\n\tdictWord{13, 11, 377},\n\tdictWord{146, 11, 77},\n\tdictWord{9, 10, 769},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t185,\n\t},\n\tdictWord{135, 11, 410},\n\tdictWord{142, 0, 4},\n\tdictWord{4, 0, 665},\n\tdictWord{134, 11, 1785},\n\tdictWord{4, 0, 248},\n\tdictWord{7, 0, 137},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t349,\n\t},\n\tdictWord{5, 10, 530},\n\tdictWord{142, 10, 113},\n\tdictWord{7, 0, 1270},\n\tdictWord{139, 0, 612},\n\tdictWord{132, 11, 780},\n\tdictWord{5, 0, 371},\n\tdictWord{135, 0, 563},\n\tdictWord{135, 0, 826},\n\tdictWord{6, 0, 1535},\n\tdictWord{23, 0, 21},\n\tdictWord{151, 0, 23},\n\tdictWord{4, 0, 374},\n\tdictWord{7, 0, 547},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1700,\n\t},\n\tdictWord{7, 0, 1833},\n\tdictWord{139, 0, 858},\n\tdictWord{133, 10, 556},\n\tdictWord{7, 11, 612},\n\tdictWord{8, 11, 545},\n\tdictWord{8, 11, 568},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t642,\n\t},\n\tdictWord{9, 11, 717},\n\tdictWord{10, 11, 541},\n\tdictWord{10, 11, 763},\n\tdictWord{11, 11, 449},\n\tdictWord{12, 11, 489},\n\tdictWord{13, 11, 153},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t296,\n\t},\n\tdictWord{14, 11, 138},\n\tdictWord{14, 11, 392},\n\tdictWord{15, 11, 50},\n\tdictWord{16, 11, 6},\n\tdictWord{16, 11, 12},\n\tdictWord{148, 11, 9},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t311,\n\t},\n\tdictWord{141, 0, 42},\n\tdictWord{8, 10, 16},\n\tdictWord{140, 10, 568},\n\tdictWord{6, 0, 1968},\n\tdictWord{6, 0, 2027},\n\tdictWord{138, 0, 991},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1647,\n\t},\n\tdictWord{7, 0, 1552},\n\tdictWord{7, 0, 2010},\n\tdictWord{9, 0, 494},\n\tdictWord{137, 0, 509},\n\tdictWord{133, 11, 948},\n\tdictWord{6, 10, 186},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t426,\n\t},\n\tdictWord{134, 0, 769},\n\tdictWord{134, 0, 642},\n\tdictWord{132, 10, 585},\n\tdictWord{6, 0, 123},\n\tdictWord{7, 0, 214},\n\tdictWord{9, 0, 728},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t157,\n\t},\n\tdictWord{11, 0, 346},\n\tdictWord{11, 0, 662},\n\tdictWord{143, 0, 106},\n\tdictWord{142, 11, 381},\n\tdictWord{135, 0, 1435},\n\tdictWord{4, 11, 532},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t706,\n\t},\n\tdictWord{135, 11, 662},\n\tdictWord{5, 11, 837},\n\tdictWord{134, 11, 1651},\n\tdictWord{4, 10, 93},\n\tdictWord{5, 10, 252},\n\tdictWord{6, 10, 229},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t291,\n\t},\n\tdictWord{9, 10, 550},\n\tdictWord{139, 10, 644},\n\tdictWord{148, 0, 79},\n\tdictWord{137, 10, 749},\n\tdictWord{134, 0, 1425},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t162,\n\t},\n\tdictWord{4, 11, 362},\n\tdictWord{7, 11, 52},\n\tdictWord{7, 11, 303},\n\tdictWord{140, 11, 166},\n\tdictWord{132, 10, 381},\n\tdictWord{4, 11, 330},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t933,\n\t},\n\tdictWord{7, 11, 2012},\n\tdictWord{136, 11, 292},\n\tdictWord{135, 11, 767},\n\tdictWord{4, 0, 707},\n\tdictWord{5, 0, 588},\n\tdictWord{6, 0, 393},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t106,\n\t},\n\tdictWord{18, 0, 49},\n\tdictWord{147, 0, 41},\n\tdictWord{6, 0, 211},\n\tdictWord{7, 0, 1690},\n\tdictWord{11, 0, 486},\n\tdictWord{140, 0, 369},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t883,\n\t},\n\tdictWord{4, 11, 703},\n\tdictWord{135, 11, 207},\n\tdictWord{4, 0, 187},\n\tdictWord{5, 0, 184},\n\tdictWord{5, 0, 690},\n\tdictWord{7, 0, 1869},\n\tdictWord{10, 0, 756},\n\tdictWord{139, 0, 783},\n\tdictWord{132, 11, 571},\n\tdictWord{134, 0, 1382},\n\tdictWord{5, 0, 175},\n\tdictWord{6, 10, 77},\n\tdictWord{6, 10, 157},\n\tdictWord{7, 10, 974},\n\tdictWord{7, 10, 1301},\n\tdictWord{7, 10, 1339},\n\tdictWord{7, 10, 1490},\n\tdictWord{7, 10, 1873},\n\tdictWord{137, 10, 628},\n\tdictWord{134, 0, 1493},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t873,\n\t},\n\tdictWord{133, 11, 960},\n\tdictWord{134, 0, 1007},\n\tdictWord{12, 11, 93},\n\tdictWord{12, 11, 501},\n\tdictWord{13, 11, 362},\n\tdictWord{14, 11, 151},\n\tdictWord{15, 11, 40},\n\tdictWord{15, 11, 59},\n\tdictWord{16, 11, 46},\n\tdictWord{17, 11, 25},\n\tdictWord{18, 11, 14},\n\tdictWord{18, 11, 134},\n\tdictWord{19, 11, 25},\n\tdictWord{\n\t\t19,\n\t\t11,\n\t\t69,\n\t},\n\tdictWord{20, 11, 16},\n\tdictWord{20, 11, 19},\n\tdictWord{20, 11, 66},\n\tdictWord{21, 11, 23},\n\tdictWord{21, 11, 25},\n\tdictWord{150, 11, 42},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t919,\n\t},\n\tdictWord{141, 10, 409},\n\tdictWord{134, 0, 219},\n\tdictWord{5, 0, 582},\n\tdictWord{6, 0, 1646},\n\tdictWord{7, 0, 99},\n\tdictWord{7, 0, 1962},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1986,\n\t},\n\tdictWord{8, 0, 515},\n\tdictWord{8, 0, 773},\n\tdictWord{9, 0, 23},\n\tdictWord{9, 0, 491},\n\tdictWord{12, 0, 620},\n\tdictWord{142, 0, 93},\n\tdictWord{133, 0, 851},\n\tdictWord{5, 11, 33},\n\tdictWord{134, 11, 470},\n\tdictWord{135, 11, 1291},\n\tdictWord{134, 0, 1278},\n\tdictWord{135, 11, 1882},\n\tdictWord{135, 10, 1489},\n\tdictWord{132, 0, 1000},\n\tdictWord{138, 0, 982},\n\tdictWord{8, 0, 762},\n\tdictWord{8, 0, 812},\n\tdictWord{137, 0, 910},\n\tdictWord{6, 11, 47},\n\tdictWord{7, 11, 90},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t664,\n\t},\n\tdictWord{7, 11, 830},\n\tdictWord{7, 11, 1380},\n\tdictWord{7, 11, 2025},\n\tdictWord{8, 11, 448},\n\tdictWord{136, 11, 828},\n\tdictWord{4, 0, 98},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t940,\n\t},\n\tdictWord{6, 0, 1819},\n\tdictWord{6, 0, 1834},\n\tdictWord{6, 0, 1841},\n\tdictWord{7, 0, 1365},\n\tdictWord{8, 0, 859},\n\tdictWord{8, 0, 897},\n\tdictWord{8, 0, 918},\n\tdictWord{9, 0, 422},\n\tdictWord{9, 0, 670},\n\tdictWord{10, 0, 775},\n\tdictWord{10, 0, 894},\n\tdictWord{10, 0, 909},\n\tdictWord{10, 0, 910},\n\tdictWord{10, 0, 935},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t210,\n\t},\n\tdictWord{12, 0, 750},\n\tdictWord{12, 0, 755},\n\tdictWord{13, 0, 26},\n\tdictWord{13, 0, 457},\n\tdictWord{13, 0, 476},\n\tdictWord{16, 0, 100},\n\tdictWord{16, 0, 109},\n\tdictWord{18, 0, 173},\n\tdictWord{18, 0, 175},\n\tdictWord{8, 10, 398},\n\tdictWord{9, 10, 681},\n\tdictWord{139, 10, 632},\n\tdictWord{9, 11, 417},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t493,\n\t},\n\tdictWord{136, 10, 645},\n\tdictWord{138, 0, 906},\n\tdictWord{134, 0, 1730},\n\tdictWord{134, 10, 20},\n\tdictWord{133, 11, 1019},\n\tdictWord{134, 0, 1185},\n\tdictWord{10, 0, 40},\n\tdictWord{136, 10, 769},\n\tdictWord{9, 0, 147},\n\tdictWord{134, 11, 208},\n\tdictWord{140, 0, 650},\n\tdictWord{5, 0, 209},\n\tdictWord{6, 0, 30},\n\tdictWord{11, 0, 56},\n\tdictWord{139, 0, 305},\n\tdictWord{132, 0, 553},\n\tdictWord{138, 11, 344},\n\tdictWord{6, 11, 68},\n\tdictWord{7, 11, 398},\n\tdictWord{7, 11, 448},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1629,\n\t},\n\tdictWord{7, 11, 1813},\n\tdictWord{8, 11, 387},\n\tdictWord{8, 11, 442},\n\tdictWord{9, 11, 710},\n\tdictWord{10, 11, 282},\n\tdictWord{138, 11, 722},\n\tdictWord{5, 0, 597},\n\tdictWord{14, 0, 20},\n\tdictWord{142, 11, 20},\n\tdictWord{135, 0, 1614},\n\tdictWord{135, 10, 1757},\n\tdictWord{4, 0, 150},\n\tdictWord{5, 0, 303},\n\tdictWord{6, 0, 327},\n\tdictWord{135, 10, 937},\n\tdictWord{16, 0, 49},\n\tdictWord{7, 10, 1652},\n\tdictWord{144, 11, 49},\n\tdictWord{8, 0, 192},\n\tdictWord{10, 0, 78},\n\tdictWord{\n\t\t141,\n\t\t0,\n\t\t359,\n\t},\n\tdictWord{135, 0, 786},\n\tdictWord{143, 0, 134},\n\tdictWord{6, 0, 1638},\n\tdictWord{7, 0, 79},\n\tdictWord{7, 0, 496},\n\tdictWord{9, 0, 138},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t336,\n\t},\n\tdictWord{11, 0, 12},\n\tdictWord{12, 0, 412},\n\tdictWord{12, 0, 440},\n\tdictWord{142, 0, 305},\n\tdictWord{136, 11, 491},\n\tdictWord{4, 10, 579},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t226,\n\t},\n\tdictWord{5, 10, 323},\n\tdictWord{135, 10, 960},\n\tdictWord{7, 0, 204},\n\tdictWord{7, 0, 415},\n\tdictWord{8, 0, 42},\n\tdictWord{10, 0, 85},\n\tdictWord{139, 0, 564},\n\tdictWord{132, 0, 614},\n\tdictWord{4, 11, 403},\n\tdictWord{5, 11, 441},\n\tdictWord{7, 11, 450},\n\tdictWord{11, 11, 101},\n\tdictWord{12, 11, 193},\n\tdictWord{141, 11, 430},\n\tdictWord{135, 11, 1927},\n\tdictWord{135, 11, 1330},\n\tdictWord{4, 0, 3},\n\tdictWord{5, 0, 247},\n\tdictWord{5, 0, 644},\n\tdictWord{7, 0, 744},\n\tdictWord{7, 0, 1207},\n\tdictWord{7, 0, 1225},\n\tdictWord{7, 0, 1909},\n\tdictWord{146, 0, 147},\n\tdictWord{136, 0, 942},\n\tdictWord{4, 0, 1019},\n\tdictWord{134, 0, 2023},\n\tdictWord{5, 11, 679},\n\tdictWord{133, 10, 973},\n\tdictWord{5, 0, 285},\n\tdictWord{9, 0, 67},\n\tdictWord{13, 0, 473},\n\tdictWord{143, 0, 82},\n\tdictWord{7, 11, 328},\n\tdictWord{137, 11, 326},\n\tdictWord{151, 0, 8},\n\tdictWord{6, 10, 135},\n\tdictWord{135, 10, 1176},\n\tdictWord{135, 11, 1128},\n\tdictWord{134, 0, 1309},\n\tdictWord{135, 11, 1796},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t314,\n\t},\n\tdictWord{4, 11, 574},\n\tdictWord{7, 11, 350},\n\tdictWord{7, 11, 1024},\n\tdictWord{8, 11, 338},\n\tdictWord{9, 11, 677},\n\tdictWord{10, 11, 808},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t508,\n\t},\n\tdictWord{7, 11, 818},\n\tdictWord{17, 11, 14},\n\tdictWord{17, 11, 45},\n\tdictWord{18, 11, 75},\n\tdictWord{148, 11, 18},\n\tdictWord{146, 10, 4},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1081,\n\t},\n\tdictWord{4, 0, 29},\n\tdictWord{6, 0, 532},\n\tdictWord{7, 0, 1628},\n\tdictWord{7, 0, 1648},\n\tdictWord{9, 0, 350},\n\tdictWord{10, 0, 433},\n\tdictWord{11, 0, 97},\n\tdictWord{11, 0, 557},\n\tdictWord{11, 0, 745},\n\tdictWord{12, 0, 289},\n\tdictWord{12, 0, 335},\n\tdictWord{12, 0, 348},\n\tdictWord{12, 0, 606},\n\tdictWord{13, 0, 116},\n\tdictWord{13, 0, 233},\n\tdictWord{13, 0, 466},\n\tdictWord{14, 0, 181},\n\tdictWord{14, 0, 209},\n\tdictWord{14, 0, 232},\n\tdictWord{14, 0, 236},\n\tdictWord{14, 0, 300},\n\tdictWord{\n\t\t16,\n\t\t0,\n\t\t41,\n\t},\n\tdictWord{148, 0, 97},\n\tdictWord{7, 0, 318},\n\tdictWord{6, 10, 281},\n\tdictWord{8, 10, 282},\n\tdictWord{8, 10, 480},\n\tdictWord{8, 10, 499},\n\tdictWord{9, 10, 198},\n\tdictWord{10, 10, 143},\n\tdictWord{10, 10, 169},\n\tdictWord{10, 10, 211},\n\tdictWord{10, 10, 417},\n\tdictWord{10, 10, 574},\n\tdictWord{11, 10, 147},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t395,\n\t},\n\tdictWord{12, 10, 75},\n\tdictWord{12, 10, 407},\n\tdictWord{12, 10, 608},\n\tdictWord{13, 10, 500},\n\tdictWord{142, 10, 251},\n\tdictWord{135, 11, 1676},\n\tdictWord{135, 11, 2037},\n\tdictWord{135, 0, 1692},\n\tdictWord{5, 0, 501},\n\tdictWord{7, 0, 1704},\n\tdictWord{9, 0, 553},\n\tdictWord{11, 0, 520},\n\tdictWord{12, 0, 557},\n\tdictWord{141, 0, 249},\n\tdictWord{6, 0, 1527},\n\tdictWord{14, 0, 324},\n\tdictWord{15, 0, 55},\n\tdictWord{15, 0, 80},\n\tdictWord{14, 11, 324},\n\tdictWord{15, 11, 55},\n\tdictWord{143, 11, 80},\n\tdictWord{135, 10, 1776},\n\tdictWord{8, 0, 988},\n\tdictWord{137, 11, 297},\n\tdictWord{132, 10, 419},\n\tdictWord{142, 0, 223},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t234,\n\t},\n\tdictWord{7, 0, 1123},\n\tdictWord{12, 0, 508},\n\tdictWord{14, 0, 102},\n\tdictWord{14, 0, 226},\n\tdictWord{144, 0, 57},\n\tdictWord{4, 10, 138},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1012,\n\t},\n\tdictWord{7, 10, 1280},\n\tdictWord{137, 10, 76},\n\tdictWord{7, 0, 1764},\n\tdictWord{5, 10, 29},\n\tdictWord{140, 10, 638},\n\tdictWord{134, 0, 2015},\n\tdictWord{134, 0, 1599},\n\tdictWord{138, 11, 56},\n\tdictWord{6, 11, 306},\n\tdictWord{7, 11, 1140},\n\tdictWord{7, 11, 1340},\n\tdictWord{8, 11, 133},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t449,\n\t},\n\tdictWord{139, 11, 1011},\n\tdictWord{6, 10, 1710},\n\tdictWord{135, 10, 2038},\n\tdictWord{7, 11, 1763},\n\tdictWord{140, 11, 310},\n\tdictWord{6, 0, 129},\n\tdictWord{4, 10, 17},\n\tdictWord{5, 10, 23},\n\tdictWord{7, 10, 995},\n\tdictWord{11, 10, 383},\n\tdictWord{11, 10, 437},\n\tdictWord{12, 10, 460},\n\tdictWord{140, 10, 532},\n\tdictWord{5, 11, 329},\n\tdictWord{136, 11, 260},\n\tdictWord{133, 10, 862},\n\tdictWord{132, 0, 534},\n\tdictWord{6, 0, 811},\n\tdictWord{135, 0, 626},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t657,\n\t},\n\tdictWord{4, 0, 25},\n\tdictWord{5, 0, 60},\n\tdictWord{6, 0, 504},\n\tdictWord{7, 0, 614},\n\tdictWord{7, 0, 1155},\n\tdictWord{12, 0, 0},\n\tdictWord{152, 11, 7},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1248,\n\t},\n\tdictWord{11, 0, 621},\n\tdictWord{139, 0, 702},\n\tdictWord{137, 0, 321},\n\tdictWord{8, 10, 70},\n\tdictWord{12, 10, 171},\n\tdictWord{141, 10, 272},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t233,\n\t},\n\tdictWord{139, 10, 76},\n\tdictWord{4, 0, 379},\n\tdictWord{7, 0, 1397},\n\tdictWord{134, 10, 442},\n\tdictWord{5, 11, 66},\n\tdictWord{7, 11, 1896},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t288,\n\t},\n\tdictWord{134, 11, 1643},\n\tdictWord{134, 10, 1709},\n\tdictWord{4, 11, 21},\n\tdictWord{5, 11, 91},\n\tdictWord{5, 11, 570},\n\tdictWord{5, 11, 648},\n\tdictWord{5, 11, 750},\n\tdictWord{5, 11, 781},\n\tdictWord{6, 11, 54},\n\tdictWord{6, 11, 112},\n\tdictWord{6, 11, 402},\n\tdictWord{6, 11, 1732},\n\tdictWord{7, 11, 315},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t749,\n\t},\n\tdictWord{7, 11, 1347},\n\tdictWord{7, 11, 1900},\n\tdictWord{9, 11, 78},\n\tdictWord{9, 11, 508},\n\tdictWord{10, 11, 611},\n\tdictWord{11, 11, 510},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t728,\n\t},\n\tdictWord{13, 11, 36},\n\tdictWord{14, 11, 39},\n\tdictWord{16, 11, 83},\n\tdictWord{17, 11, 124},\n\tdictWord{148, 11, 30},\n\tdictWord{4, 0, 118},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t274,\n\t},\n\tdictWord{6, 0, 361},\n\tdictWord{7, 0, 75},\n\tdictWord{141, 0, 441},\n\tdictWord{10, 11, 322},\n\tdictWord{10, 11, 719},\n\tdictWord{139, 11, 407},\n\tdictWord{\n\t\t147,\n\t\t10,\n\t\t119,\n\t},\n\tdictWord{12, 11, 549},\n\tdictWord{14, 11, 67},\n\tdictWord{147, 11, 60},\n\tdictWord{11, 10, 69},\n\tdictWord{12, 10, 105},\n\tdictWord{12, 10, 117},\n\tdictWord{13, 10, 213},\n\tdictWord{14, 10, 13},\n\tdictWord{14, 10, 62},\n\tdictWord{14, 10, 177},\n\tdictWord{14, 10, 421},\n\tdictWord{15, 10, 19},\n\tdictWord{146, 10, 141},\n\tdictWord{9, 0, 841},\n\tdictWord{137, 10, 309},\n\tdictWord{7, 10, 608},\n\tdictWord{7, 10, 976},\n\tdictWord{8, 11, 125},\n\tdictWord{8, 11, 369},\n\tdictWord{8, 11, 524},\n\tdictWord{9, 10, 146},\n\tdictWord{10, 10, 206},\n\tdictWord{10, 11, 486},\n\tdictWord{10, 10, 596},\n\tdictWord{11, 11, 13},\n\tdictWord{11, 11, 381},\n\tdictWord{11, 11, 736},\n\tdictWord{11, 11, 766},\n\tdictWord{11, 11, 845},\n\tdictWord{13, 11, 114},\n\tdictWord{13, 10, 218},\n\tdictWord{13, 11, 292},\n\tdictWord{14, 11, 47},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t153,\n\t},\n\tdictWord{12, 0, 693},\n\tdictWord{135, 11, 759},\n\tdictWord{5, 0, 314},\n\tdictWord{6, 0, 221},\n\tdictWord{7, 0, 419},\n\tdictWord{10, 0, 650},\n\tdictWord{11, 0, 396},\n\tdictWord{12, 0, 156},\n\tdictWord{13, 0, 369},\n\tdictWord{14, 0, 333},\n\tdictWord{145, 0, 47},\n\tdictWord{6, 11, 1684},\n\tdictWord{6, 11, 1731},\n\tdictWord{7, 11, 356},\n\tdictWord{7, 11, 1932},\n\tdictWord{8, 11, 54},\n\tdictWord{8, 11, 221},\n\tdictWord{9, 11, 225},\n\tdictWord{9, 11, 356},\n\tdictWord{10, 11, 77},\n\tdictWord{10, 11, 446},\n\tdictWord{10, 11, 731},\n\tdictWord{12, 11, 404},\n\tdictWord{141, 11, 491},\n\tdictWord{132, 11, 375},\n\tdictWord{4, 10, 518},\n\tdictWord{135, 10, 1136},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t913,\n\t},\n\tdictWord{4, 11, 411},\n\tdictWord{11, 11, 643},\n\tdictWord{140, 11, 115},\n\tdictWord{4, 11, 80},\n\tdictWord{133, 11, 44},\n\tdictWord{8, 10, 689},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t863,\n\t},\n\tdictWord{138, 0, 880},\n\tdictWord{4, 10, 18},\n\tdictWord{7, 10, 145},\n\tdictWord{7, 10, 444},\n\tdictWord{7, 10, 1278},\n\tdictWord{8, 10, 49},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t400,\n\t},\n\tdictWord{9, 10, 71},\n\tdictWord{9, 10, 250},\n\tdictWord{10, 10, 459},\n\tdictWord{12, 10, 160},\n\tdictWord{144, 10, 24},\n\tdictWord{136, 0, 475},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t1016,\n\t},\n\tdictWord{5, 11, 299},\n\tdictWord{135, 11, 1083},\n\tdictWord{7, 0, 602},\n\tdictWord{8, 0, 179},\n\tdictWord{10, 0, 781},\n\tdictWord{140, 0, 126},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t329,\n\t},\n\tdictWord{138, 0, 111},\n\tdictWord{135, 0, 1864},\n\tdictWord{4, 11, 219},\n\tdictWord{7, 11, 1761},\n\tdictWord{137, 11, 86},\n\tdictWord{6, 0, 1888},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1892,\n\t},\n\tdictWord{6, 0, 1901},\n\tdictWord{6, 0, 1904},\n\tdictWord{9, 0, 953},\n\tdictWord{9, 0, 985},\n\tdictWord{9, 0, 991},\n\tdictWord{9, 0, 1001},\n\tdictWord{12, 0, 818},\n\tdictWord{12, 0, 846},\n\tdictWord{12, 0, 847},\n\tdictWord{12, 0, 861},\n\tdictWord{12, 0, 862},\n\tdictWord{12, 0, 873},\n\tdictWord{12, 0, 875},\n\tdictWord{12, 0, 877},\n\tdictWord{12, 0, 879},\n\tdictWord{12, 0, 881},\n\tdictWord{12, 0, 884},\n\tdictWord{12, 0, 903},\n\tdictWord{12, 0, 915},\n\tdictWord{12, 0, 926},\n\tdictWord{12, 0, 939},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t182,\n\t},\n\tdictWord{15, 0, 219},\n\tdictWord{15, 0, 255},\n\tdictWord{18, 0, 191},\n\tdictWord{18, 0, 209},\n\tdictWord{18, 0, 211},\n\tdictWord{149, 0, 41},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t328,\n\t},\n\tdictWord{135, 11, 918},\n\tdictWord{137, 0, 780},\n\tdictWord{12, 0, 82},\n\tdictWord{143, 0, 36},\n\tdictWord{133, 10, 1010},\n\tdictWord{5, 0, 821},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1687,\n\t},\n\tdictWord{133, 11, 514},\n\tdictWord{132, 0, 956},\n\tdictWord{134, 0, 1180},\n\tdictWord{10, 0, 112},\n\tdictWord{5, 10, 87},\n\tdictWord{7, 10, 313},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1103,\n\t},\n\tdictWord{10, 10, 582},\n\tdictWord{11, 10, 389},\n\tdictWord{11, 10, 813},\n\tdictWord{12, 10, 385},\n\tdictWord{13, 10, 286},\n\tdictWord{14, 10, 124},\n\tdictWord{146, 10, 108},\n\tdictWord{5, 0, 71},\n\tdictWord{7, 0, 1407},\n\tdictWord{9, 0, 704},\n\tdictWord{10, 0, 261},\n\tdictWord{10, 0, 619},\n\tdictWord{11, 0, 547},\n\tdictWord{11, 0, 619},\n\tdictWord{143, 0, 157},\n\tdictWord{4, 0, 531},\n\tdictWord{5, 0, 455},\n\tdictWord{5, 11, 301},\n\tdictWord{6, 11, 571},\n\tdictWord{14, 11, 49},\n\tdictWord{\n\t\t146,\n\t\t11,\n\t\t102,\n\t},\n\tdictWord{132, 10, 267},\n\tdictWord{6, 0, 385},\n\tdictWord{7, 0, 2008},\n\tdictWord{9, 0, 337},\n\tdictWord{138, 0, 517},\n\tdictWord{133, 11, 726},\n\tdictWord{133, 11, 364},\n\tdictWord{4, 11, 76},\n\tdictWord{7, 11, 1550},\n\tdictWord{9, 11, 306},\n\tdictWord{9, 11, 430},\n\tdictWord{9, 11, 663},\n\tdictWord{10, 11, 683},\n\tdictWord{11, 11, 427},\n\tdictWord{11, 11, 753},\n\tdictWord{12, 11, 334},\n\tdictWord{12, 11, 442},\n\tdictWord{14, 11, 258},\n\tdictWord{14, 11, 366},\n\tdictWord{\n\t\t143,\n\t\t11,\n\t\t131,\n\t},\n\tdictWord{6, 0, 1865},\n\tdictWord{6, 0, 1879},\n\tdictWord{6, 0, 1881},\n\tdictWord{6, 0, 1894},\n\tdictWord{6, 0, 1908},\n\tdictWord{9, 0, 915},\n\tdictWord{9, 0, 926},\n\tdictWord{9, 0, 940},\n\tdictWord{9, 0, 943},\n\tdictWord{9, 0, 966},\n\tdictWord{9, 0, 980},\n\tdictWord{9, 0, 989},\n\tdictWord{9, 0, 1005},\n\tdictWord{9, 0, 1010},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t813,\n\t},\n\tdictWord{12, 0, 817},\n\tdictWord{12, 0, 840},\n\tdictWord{12, 0, 843},\n\tdictWord{12, 0, 855},\n\tdictWord{12, 0, 864},\n\tdictWord{12, 0, 871},\n\tdictWord{12, 0, 872},\n\tdictWord{12, 0, 899},\n\tdictWord{12, 0, 905},\n\tdictWord{12, 0, 924},\n\tdictWord{15, 0, 171},\n\tdictWord{15, 0, 181},\n\tdictWord{15, 0, 224},\n\tdictWord{15, 0, 235},\n\tdictWord{15, 0, 251},\n\tdictWord{146, 0, 184},\n\tdictWord{137, 11, 52},\n\tdictWord{5, 0, 16},\n\tdictWord{6, 0, 86},\n\tdictWord{6, 0, 603},\n\tdictWord{7, 0, 292},\n\tdictWord{7, 0, 561},\n\tdictWord{8, 0, 257},\n\tdictWord{8, 0, 382},\n\tdictWord{9, 0, 721},\n\tdictWord{9, 0, 778},\n\tdictWord{11, 0, 581},\n\tdictWord{140, 0, 466},\n\tdictWord{4, 0, 486},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t491,\n\t},\n\tdictWord{135, 10, 1121},\n\tdictWord{4, 0, 72},\n\tdictWord{6, 0, 265},\n\tdictWord{135, 0, 1300},\n\tdictWord{135, 11, 1183},\n\tdictWord{10, 10, 249},\n\tdictWord{139, 10, 209},\n\tdictWord{132, 10, 561},\n\tdictWord{137, 11, 519},\n\tdictWord{4, 11, 656},\n\tdictWord{4, 10, 760},\n\tdictWord{135, 11, 779},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t154,\n\t},\n\tdictWord{140, 10, 485},\n\tdictWord{135, 11, 1793},\n\tdictWord{135, 11, 144},\n\tdictWord{136, 10, 255},\n\tdictWord{133, 0, 621},\n\tdictWord{4, 10, 368},\n\tdictWord{135, 10, 641},\n\tdictWord{135, 11, 1373},\n\tdictWord{7, 11, 554},\n\tdictWord{7, 11, 605},\n\tdictWord{141, 11, 10},\n\tdictWord{137, 0, 234},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t815,\n\t},\n\tdictWord{6, 0, 1688},\n\tdictWord{134, 0, 1755},\n\tdictWord{5, 11, 838},\n\tdictWord{5, 11, 841},\n\tdictWord{134, 11, 1649},\n\tdictWord{7, 0, 1987},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t2040,\n\t},\n\tdictWord{136, 0, 743},\n\tdictWord{133, 11, 1012},\n\tdictWord{6, 0, 197},\n\tdictWord{136, 0, 205},\n\tdictWord{6, 0, 314},\n\tdictWord{134, 11, 314},\n\tdictWord{144, 11, 53},\n\tdictWord{6, 11, 251},\n\tdictWord{7, 11, 365},\n\tdictWord{7, 11, 1357},\n\tdictWord{7, 11, 1497},\n\tdictWord{8, 11, 154},\n\tdictWord{141, 11, 281},\n\tdictWord{133, 11, 340},\n\tdictWord{6, 0, 452},\n\tdictWord{7, 0, 312},\n\tdictWord{138, 0, 219},\n\tdictWord{138, 0, 589},\n\tdictWord{4, 0, 333},\n\tdictWord{9, 0, 176},\n\tdictWord{12, 0, 353},\n\tdictWord{141, 0, 187},\n\tdictWord{9, 10, 92},\n\tdictWord{147, 10, 91},\n\tdictWord{134, 0, 1110},\n\tdictWord{11, 0, 47},\n\tdictWord{139, 11, 495},\n\tdictWord{6, 10, 525},\n\tdictWord{8, 10, 806},\n\tdictWord{9, 10, 876},\n\tdictWord{140, 10, 284},\n\tdictWord{8, 11, 261},\n\tdictWord{9, 11, 144},\n\tdictWord{9, 11, 466},\n\tdictWord{10, 11, 370},\n\tdictWord{12, 11, 470},\n\tdictWord{13, 11, 144},\n\tdictWord{142, 11, 348},\n\tdictWord{137, 11, 897},\n\tdictWord{8, 0, 863},\n\tdictWord{8, 0, 864},\n\tdictWord{8, 0, 868},\n\tdictWord{8, 0, 884},\n\tdictWord{10, 0, 866},\n\tdictWord{10, 0, 868},\n\tdictWord{10, 0, 873},\n\tdictWord{10, 0, 911},\n\tdictWord{10, 0, 912},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t944,\n\t},\n\tdictWord{12, 0, 727},\n\tdictWord{6, 11, 248},\n\tdictWord{9, 11, 546},\n\tdictWord{10, 11, 535},\n\tdictWord{11, 11, 681},\n\tdictWord{141, 11, 135},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t300,\n\t},\n\tdictWord{135, 0, 1515},\n\tdictWord{134, 0, 1237},\n\tdictWord{139, 10, 958},\n\tdictWord{133, 10, 594},\n\tdictWord{140, 11, 250},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1685,\n\t},\n\tdictWord{134, 11, 567},\n\tdictWord{7, 0, 135},\n\tdictWord{8, 0, 7},\n\tdictWord{8, 0, 62},\n\tdictWord{9, 0, 243},\n\tdictWord{10, 0, 658},\n\tdictWord{10, 0, 697},\n\tdictWord{11, 0, 456},\n\tdictWord{139, 0, 756},\n\tdictWord{9, 0, 395},\n\tdictWord{138, 0, 79},\n\tdictWord{6, 10, 1641},\n\tdictWord{136, 10, 820},\n\tdictWord{4, 10, 302},\n\tdictWord{135, 10, 1766},\n\tdictWord{134, 11, 174},\n\tdictWord{135, 10, 1313},\n\tdictWord{135, 0, 631},\n\tdictWord{134, 10, 1674},\n\tdictWord{134, 11, 395},\n\tdictWord{138, 0, 835},\n\tdictWord{7, 0, 406},\n\tdictWord{7, 0, 459},\n\tdictWord{8, 0, 606},\n\tdictWord{139, 0, 726},\n\tdictWord{134, 11, 617},\n\tdictWord{134, 0, 979},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t389,\n\t},\n\tdictWord{7, 10, 149},\n\tdictWord{9, 10, 142},\n\tdictWord{138, 10, 94},\n\tdictWord{5, 11, 878},\n\tdictWord{133, 11, 972},\n\tdictWord{6, 10, 8},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1881,\n\t},\n\tdictWord{8, 10, 91},\n\tdictWord{136, 11, 511},\n\tdictWord{133, 0, 612},\n\tdictWord{132, 11, 351},\n\tdictWord{4, 0, 372},\n\tdictWord{7, 0, 482},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t158,\n\t},\n\tdictWord{9, 0, 602},\n\tdictWord{9, 0, 615},\n\tdictWord{10, 0, 245},\n\tdictWord{10, 0, 678},\n\tdictWord{10, 0, 744},\n\tdictWord{11, 0, 248},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t806,\n\t},\n\tdictWord{5, 0, 854},\n\tdictWord{135, 0, 1991},\n\tdictWord{132, 11, 286},\n\tdictWord{135, 11, 344},\n\tdictWord{7, 11, 438},\n\tdictWord{7, 11, 627},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1516,\n\t},\n\tdictWord{8, 11, 40},\n\tdictWord{9, 11, 56},\n\tdictWord{9, 11, 294},\n\tdictWord{10, 11, 30},\n\tdictWord{10, 11, 259},\n\tdictWord{11, 11, 969},\n\tdictWord{\n\t\t146,\n\t\t11,\n\t\t148,\n\t},\n\tdictWord{135, 0, 1492},\n\tdictWord{5, 11, 259},\n\tdictWord{7, 11, 414},\n\tdictWord{7, 11, 854},\n\tdictWord{142, 11, 107},\n\tdictWord{135, 10, 1746},\n\tdictWord{6, 0, 833},\n\tdictWord{134, 0, 998},\n\tdictWord{135, 10, 24},\n\tdictWord{6, 0, 750},\n\tdictWord{135, 0, 1739},\n\tdictWord{4, 10, 503},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1661,\n\t},\n\tdictWord{5, 10, 130},\n\tdictWord{7, 10, 1314},\n\tdictWord{9, 10, 610},\n\tdictWord{10, 10, 718},\n\tdictWord{11, 10, 601},\n\tdictWord{11, 10, 819},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t946,\n\t},\n\tdictWord{140, 10, 536},\n\tdictWord{10, 10, 149},\n\tdictWord{11, 10, 280},\n\tdictWord{142, 10, 336},\n\tdictWord{132, 11, 738},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1946,\n\t},\n\tdictWord{5, 0, 195},\n\tdictWord{135, 0, 1685},\n\tdictWord{7, 0, 1997},\n\tdictWord{8, 0, 730},\n\tdictWord{139, 0, 1006},\n\tdictWord{151, 11, 17},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t866,\n\t},\n\tdictWord{14, 0, 463},\n\tdictWord{14, 0, 470},\n\tdictWord{150, 0, 61},\n\tdictWord{5, 0, 751},\n\tdictWord{8, 0, 266},\n\tdictWord{11, 0, 578},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t392,\n\t},\n\tdictWord{135, 10, 1597},\n\tdictWord{5, 10, 433},\n\tdictWord{9, 10, 633},\n\tdictWord{139, 10, 629},\n\tdictWord{135, 0, 821},\n\tdictWord{6, 0, 715},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1325,\n\t},\n\tdictWord{133, 11, 116},\n\tdictWord{6, 0, 868},\n\tdictWord{132, 11, 457},\n\tdictWord{134, 0, 959},\n\tdictWord{6, 10, 234},\n\tdictWord{138, 11, 199},\n\tdictWord{7, 0, 1053},\n\tdictWord{7, 10, 1950},\n\tdictWord{8, 10, 680},\n\tdictWord{11, 10, 817},\n\tdictWord{147, 10, 88},\n\tdictWord{7, 10, 1222},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t386,\n\t},\n\tdictWord{5, 0, 950},\n\tdictWord{5, 0, 994},\n\tdictWord{6, 0, 351},\n\tdictWord{134, 0, 1124},\n\tdictWord{134, 0, 1081},\n\tdictWord{7, 0, 1595},\n\tdictWord{6, 10, 5},\n\tdictWord{11, 10, 249},\n\tdictWord{12, 10, 313},\n\tdictWord{16, 10, 66},\n\tdictWord{145, 10, 26},\n\tdictWord{148, 0, 59},\n\tdictWord{5, 11, 527},\n\tdictWord{6, 11, 189},\n\tdictWord{135, 11, 859},\n\tdictWord{5, 10, 963},\n\tdictWord{6, 10, 1773},\n\tdictWord{11, 11, 104},\n\tdictWord{11, 11, 554},\n\tdictWord{15, 11, 60},\n\tdictWord{\n\t\t143,\n\t\t11,\n\t\t125,\n\t},\n\tdictWord{135, 0, 47},\n\tdictWord{137, 0, 684},\n\tdictWord{134, 11, 116},\n\tdictWord{134, 0, 1606},\n\tdictWord{134, 0, 777},\n\tdictWord{7, 0, 1020},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t509,\n\t},\n\tdictWord{136, 10, 792},\n\tdictWord{135, 0, 1094},\n\tdictWord{132, 0, 350},\n\tdictWord{133, 11, 487},\n\tdictWord{4, 11, 86},\n\tdictWord{5, 11, 667},\n\tdictWord{5, 11, 753},\n\tdictWord{6, 11, 316},\n\tdictWord{6, 11, 455},\n\tdictWord{135, 11, 946},\n\tdictWord{7, 0, 1812},\n\tdictWord{13, 0, 259},\n\tdictWord{13, 0, 356},\n\tdictWord{14, 0, 242},\n\tdictWord{147, 0, 114},\n\tdictWord{132, 10, 931},\n\tdictWord{133, 0, 967},\n\tdictWord{4, 0, 473},\n\tdictWord{7, 0, 623},\n\tdictWord{8, 0, 808},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t871,\n\t},\n\tdictWord{9, 0, 893},\n\tdictWord{11, 0, 38},\n\tdictWord{11, 0, 431},\n\tdictWord{12, 0, 112},\n\tdictWord{12, 0, 217},\n\tdictWord{12, 0, 243},\n\tdictWord{12, 0, 562},\n\tdictWord{12, 0, 663},\n\tdictWord{12, 0, 683},\n\tdictWord{13, 0, 141},\n\tdictWord{13, 0, 197},\n\tdictWord{13, 0, 227},\n\tdictWord{13, 0, 406},\n\tdictWord{13, 0, 487},\n\tdictWord{14, 0, 156},\n\tdictWord{14, 0, 203},\n\tdictWord{14, 0, 224},\n\tdictWord{14, 0, 256},\n\tdictWord{18, 0, 58},\n\tdictWord{150, 0, 0},\n\tdictWord{138, 0, 286},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t943,\n\t},\n\tdictWord{139, 10, 614},\n\tdictWord{135, 10, 1837},\n\tdictWord{150, 11, 45},\n\tdictWord{132, 0, 798},\n\tdictWord{4, 0, 222},\n\tdictWord{7, 0, 286},\n\tdictWord{136, 0, 629},\n\tdictWord{4, 11, 79},\n\tdictWord{7, 11, 1773},\n\tdictWord{10, 11, 450},\n\tdictWord{11, 11, 589},\n\tdictWord{13, 11, 332},\n\tdictWord{13, 11, 493},\n\tdictWord{14, 11, 183},\n\tdictWord{14, 11, 334},\n\tdictWord{14, 11, 362},\n\tdictWord{14, 11, 368},\n\tdictWord{14, 11, 376},\n\tdictWord{14, 11, 379},\n\tdictWord{\n\t\t19,\n\t\t11,\n\t\t90,\n\t},\n\tdictWord{19, 11, 103},\n\tdictWord{19, 11, 127},\n\tdictWord{148, 11, 90},\n\tdictWord{5, 0, 337},\n\tdictWord{11, 0, 513},\n\tdictWord{11, 0, 889},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t961,\n\t},\n\tdictWord{12, 0, 461},\n\tdictWord{13, 0, 79},\n\tdictWord{15, 0, 121},\n\tdictWord{4, 10, 90},\n\tdictWord{5, 10, 545},\n\tdictWord{7, 10, 754},\n\tdictWord{9, 10, 186},\n\tdictWord{10, 10, 72},\n\tdictWord{10, 10, 782},\n\tdictWord{11, 10, 577},\n\tdictWord{11, 10, 610},\n\tdictWord{12, 10, 354},\n\tdictWord{12, 10, 362},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t595,\n\t},\n\tdictWord{141, 0, 306},\n\tdictWord{136, 0, 146},\n\tdictWord{7, 0, 1646},\n\tdictWord{9, 10, 329},\n\tdictWord{11, 10, 254},\n\tdictWord{141, 11, 124},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t465,\n\t},\n\tdictWord{135, 0, 1663},\n\tdictWord{132, 0, 525},\n\tdictWord{133, 11, 663},\n\tdictWord{10, 0, 299},\n\tdictWord{18, 0, 74},\n\tdictWord{9, 10, 187},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t1016,\n\t},\n\tdictWord{145, 10, 44},\n\tdictWord{7, 0, 165},\n\tdictWord{7, 0, 919},\n\tdictWord{4, 10, 506},\n\tdictWord{136, 10, 517},\n\tdictWord{5, 10, 295},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1680,\n\t},\n\tdictWord{133, 11, 846},\n\tdictWord{134, 0, 1064},\n\tdictWord{5, 11, 378},\n\tdictWord{7, 11, 1402},\n\tdictWord{7, 11, 1414},\n\tdictWord{8, 11, 465},\n\tdictWord{9, 11, 286},\n\tdictWord{10, 11, 185},\n\tdictWord{10, 11, 562},\n\tdictWord{10, 11, 635},\n\tdictWord{11, 11, 31},\n\tdictWord{11, 11, 393},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t456,\n\t},\n\tdictWord{13, 11, 312},\n\tdictWord{18, 11, 65},\n\tdictWord{18, 11, 96},\n\tdictWord{147, 11, 89},\n\tdictWord{132, 0, 596},\n\tdictWord{7, 10, 987},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t688,\n\t},\n\tdictWord{10, 10, 522},\n\tdictWord{11, 10, 788},\n\tdictWord{140, 10, 566},\n\tdictWord{6, 0, 82},\n\tdictWord{7, 0, 138},\n\tdictWord{7, 0, 517},\n\tdictWord{7, 0, 1741},\n\tdictWord{11, 0, 238},\n\tdictWord{4, 11, 648},\n\tdictWord{134, 10, 1775},\n\tdictWord{7, 0, 1233},\n\tdictWord{7, 10, 700},\n\tdictWord{7, 10, 940},\n\tdictWord{8, 10, 514},\n\tdictWord{9, 10, 116},\n\tdictWord{9, 10, 535},\n\tdictWord{10, 10, 118},\n\tdictWord{11, 10, 107},\n\tdictWord{11, 10, 148},\n\tdictWord{11, 10, 922},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t254,\n\t},\n\tdictWord{12, 10, 421},\n\tdictWord{142, 10, 238},\n\tdictWord{4, 0, 962},\n\tdictWord{6, 0, 1824},\n\tdictWord{8, 0, 894},\n\tdictWord{12, 0, 708},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t725,\n\t},\n\tdictWord{14, 0, 451},\n\tdictWord{20, 0, 94},\n\tdictWord{22, 0, 59},\n\tdictWord{150, 0, 62},\n\tdictWord{5, 11, 945},\n\tdictWord{6, 11, 1656},\n\tdictWord{6, 11, 1787},\n\tdictWord{7, 11, 167},\n\tdictWord{8, 11, 824},\n\tdictWord{9, 11, 391},\n\tdictWord{10, 11, 375},\n\tdictWord{139, 11, 185},\n\tdictWord{5, 0, 495},\n\tdictWord{7, 0, 834},\n\tdictWord{9, 0, 733},\n\tdictWord{139, 0, 378},\n\tdictWord{4, 10, 743},\n\tdictWord{135, 11, 1273},\n\tdictWord{6, 0, 1204},\n\tdictWord{7, 11, 1645},\n\tdictWord{8, 11, 352},\n\tdictWord{137, 11, 249},\n\tdictWord{139, 10, 292},\n\tdictWord{133, 0, 559},\n\tdictWord{132, 11, 152},\n\tdictWord{9, 0, 499},\n\tdictWord{10, 0, 341},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t144,\n\t},\n\tdictWord{19, 0, 49},\n\tdictWord{7, 10, 1283},\n\tdictWord{9, 10, 227},\n\tdictWord{11, 10, 325},\n\tdictWord{11, 10, 408},\n\tdictWord{14, 10, 180},\n\tdictWord{\n\t\t146,\n\t\t10,\n\t\t47,\n\t},\n\tdictWord{6, 0, 21},\n\tdictWord{6, 0, 1737},\n\tdictWord{7, 0, 1444},\n\tdictWord{136, 0, 224},\n\tdictWord{133, 11, 1006},\n\tdictWord{7, 0, 1446},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t97,\n\t},\n\tdictWord{17, 0, 15},\n\tdictWord{5, 10, 81},\n\tdictWord{7, 10, 146},\n\tdictWord{7, 10, 1342},\n\tdictWord{8, 10, 53},\n\tdictWord{8, 10, 561},\n\tdictWord{8, 10, 694},\n\tdictWord{8, 10, 754},\n\tdictWord{9, 10, 115},\n\tdictWord{9, 10, 894},\n\tdictWord{10, 10, 462},\n\tdictWord{10, 10, 813},\n\tdictWord{11, 10, 230},\n\tdictWord{11, 10, 657},\n\tdictWord{11, 10, 699},\n\tdictWord{11, 10, 748},\n\tdictWord{12, 10, 119},\n\tdictWord{12, 10, 200},\n\tdictWord{12, 10, 283},\n\tdictWord{142, 10, 273},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t408,\n\t},\n\tdictWord{137, 10, 747},\n\tdictWord{135, 11, 431},\n\tdictWord{135, 11, 832},\n\tdictWord{6, 0, 729},\n\tdictWord{134, 0, 953},\n\tdictWord{4, 0, 727},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t565,\n\t},\n\tdictWord{5, 11, 351},\n\tdictWord{7, 11, 264},\n\tdictWord{136, 11, 565},\n\tdictWord{134, 0, 1948},\n\tdictWord{5, 0, 519},\n\tdictWord{5, 11, 40},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t598,\n\t},\n\tdictWord{7, 11, 1638},\n\tdictWord{8, 11, 78},\n\tdictWord{9, 11, 166},\n\tdictWord{9, 11, 640},\n\tdictWord{9, 11, 685},\n\tdictWord{9, 11, 773},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t215,\n\t},\n\tdictWord{13, 11, 65},\n\tdictWord{14, 11, 172},\n\tdictWord{14, 11, 317},\n\tdictWord{145, 11, 6},\n\tdictWord{8, 11, 60},\n\tdictWord{9, 11, 343},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t769,\n\t},\n\tdictWord{137, 11, 455},\n\tdictWord{134, 0, 1193},\n\tdictWord{140, 0, 790},\n\tdictWord{7, 11, 1951},\n\tdictWord{8, 11, 765},\n\tdictWord{8, 11, 772},\n\tdictWord{140, 11, 671},\n\tdictWord{7, 11, 108},\n\tdictWord{8, 11, 219},\n\tdictWord{8, 11, 388},\n\tdictWord{9, 11, 639},\n\tdictWord{9, 11, 775},\n\tdictWord{11, 11, 275},\n\tdictWord{140, 11, 464},\n\tdictWord{132, 11, 468},\n\tdictWord{7, 10, 30},\n\tdictWord{8, 10, 86},\n\tdictWord{8, 10, 315},\n\tdictWord{8, 10, 700},\n\tdictWord{9, 10, 576},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t858,\n\t},\n\tdictWord{11, 10, 310},\n\tdictWord{11, 10, 888},\n\tdictWord{11, 10, 904},\n\tdictWord{12, 10, 361},\n\tdictWord{141, 10, 248},\n\tdictWord{5, 11, 15},\n\tdictWord{6, 11, 56},\n\tdictWord{7, 11, 1758},\n\tdictWord{8, 11, 500},\n\tdictWord{9, 11, 730},\n\tdictWord{11, 11, 331},\n\tdictWord{13, 11, 150},\n\tdictWord{142, 11, 282},\n\tdictWord{4, 0, 402},\n\tdictWord{7, 0, 2},\n\tdictWord{8, 0, 323},\n\tdictWord{136, 0, 479},\n\tdictWord{138, 10, 839},\n\tdictWord{11, 0, 580},\n\tdictWord{142, 0, 201},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t59,\n\t},\n\tdictWord{135, 0, 672},\n\tdictWord{137, 10, 617},\n\tdictWord{146, 0, 34},\n\tdictWord{134, 11, 1886},\n\tdictWord{4, 0, 961},\n\tdictWord{136, 0, 896},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1285,\n\t},\n\tdictWord{5, 11, 205},\n\tdictWord{6, 11, 438},\n\tdictWord{137, 11, 711},\n\tdictWord{134, 10, 428},\n\tdictWord{7, 10, 524},\n\tdictWord{8, 10, 169},\n\tdictWord{8, 10, 234},\n\tdictWord{9, 10, 480},\n\tdictWord{138, 10, 646},\n\tdictWord{148, 0, 46},\n\tdictWord{141, 0, 479},\n\tdictWord{133, 11, 534},\n\tdictWord{6, 0, 2019},\n\tdictWord{134, 10, 1648},\n\tdictWord{4, 0, 85},\n\tdictWord{7, 0, 549},\n\tdictWord{7, 10, 1205},\n\tdictWord{138, 10, 637},\n\tdictWord{4, 0, 663},\n\tdictWord{5, 0, 94},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t235,\n\t},\n\tdictWord{7, 11, 1475},\n\tdictWord{15, 11, 68},\n\tdictWord{146, 11, 120},\n\tdictWord{6, 11, 443},\n\tdictWord{9, 11, 237},\n\tdictWord{9, 11, 571},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t695,\n\t},\n\tdictWord{10, 11, 139},\n\tdictWord{11, 11, 715},\n\tdictWord{12, 11, 417},\n\tdictWord{141, 11, 421},\n\tdictWord{132, 0, 783},\n\tdictWord{4, 0, 682},\n\tdictWord{8, 0, 65},\n\tdictWord{9, 10, 39},\n\tdictWord{10, 10, 166},\n\tdictWord{11, 10, 918},\n\tdictWord{12, 10, 635},\n\tdictWord{20, 10, 10},\n\tdictWord{22, 10, 27},\n\tdictWord{\n\t\t22,\n\t\t10,\n\t\t43,\n\t},\n\tdictWord{150, 10, 52},\n\tdictWord{6, 0, 11},\n\tdictWord{135, 0, 187},\n\tdictWord{132, 0, 522},\n\tdictWord{4, 0, 52},\n\tdictWord{135, 0, 661},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t383,\n\t},\n\tdictWord{133, 0, 520},\n\tdictWord{135, 11, 546},\n\tdictWord{11, 0, 343},\n\tdictWord{142, 0, 127},\n\tdictWord{4, 11, 578},\n\tdictWord{7, 10, 157},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t624,\n\t},\n\tdictWord{7, 11, 916},\n\tdictWord{8, 10, 279},\n\tdictWord{10, 11, 256},\n\tdictWord{11, 11, 87},\n\tdictWord{139, 11, 703},\n\tdictWord{134, 10, 604},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t281,\n\t},\n\tdictWord{5, 0, 38},\n\tdictWord{7, 0, 194},\n\tdictWord{7, 0, 668},\n\tdictWord{7, 0, 1893},\n\tdictWord{137, 0, 397},\n\tdictWord{7, 10, 945},\n\tdictWord{11, 10, 713},\n\tdictWord{139, 10, 744},\n\tdictWord{139, 10, 1022},\n\tdictWord{9, 0, 635},\n\tdictWord{139, 0, 559},\n\tdictWord{5, 11, 923},\n\tdictWord{7, 11, 490},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t553,\n\t},\n\tdictWord{13, 11, 100},\n\tdictWord{14, 11, 118},\n\tdictWord{143, 11, 75},\n\tdictWord{132, 0, 975},\n\tdictWord{132, 10, 567},\n\tdictWord{137, 10, 859},\n\tdictWord{7, 10, 1846},\n\tdictWord{7, 11, 1846},\n\tdictWord{8, 10, 628},\n\tdictWord{136, 11, 628},\n\tdictWord{148, 0, 116},\n\tdictWord{138, 11, 750},\n\tdictWord{14, 0, 51},\n\tdictWord{14, 11, 51},\n\tdictWord{15, 11, 7},\n\tdictWord{148, 11, 20},\n\tdictWord{132, 0, 858},\n\tdictWord{134, 0, 1075},\n\tdictWord{4, 11, 924},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t762,\n\t},\n\tdictWord{136, 0, 535},\n\tdictWord{133, 0, 448},\n\tdictWord{10, 10, 784},\n\tdictWord{141, 10, 191},\n\tdictWord{133, 10, 298},\n\tdictWord{7, 0, 610},\n\tdictWord{135, 0, 1501},\n\tdictWord{7, 10, 633},\n\tdictWord{7, 10, 905},\n\tdictWord{7, 10, 909},\n\tdictWord{7, 10, 1538},\n\tdictWord{9, 10, 767},\n\tdictWord{140, 10, 636},\n\tdictWord{4, 11, 265},\n\tdictWord{7, 11, 807},\n\tdictWord{135, 11, 950},\n\tdictWord{5, 11, 93},\n\tdictWord{12, 11, 267},\n\tdictWord{144, 11, 26},\n\tdictWord{136, 0, 191},\n\tdictWord{139, 10, 301},\n\tdictWord{135, 10, 1970},\n\tdictWord{135, 0, 267},\n\tdictWord{4, 0, 319},\n\tdictWord{5, 0, 699},\n\tdictWord{138, 0, 673},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t336,\n\t},\n\tdictWord{7, 0, 92},\n\tdictWord{7, 0, 182},\n\tdictWord{8, 0, 453},\n\tdictWord{8, 0, 552},\n\tdictWord{9, 0, 204},\n\tdictWord{9, 0, 285},\n\tdictWord{10, 0, 99},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t568,\n\t},\n\tdictWord{11, 0, 950},\n\tdictWord{12, 0, 94},\n\tdictWord{16, 0, 20},\n\tdictWord{16, 0, 70},\n\tdictWord{19, 0, 55},\n\tdictWord{12, 10, 644},\n\tdictWord{144, 10, 90},\n\tdictWord{6, 0, 551},\n\tdictWord{7, 0, 1308},\n\tdictWord{7, 10, 845},\n\tdictWord{7, 11, 994},\n\tdictWord{8, 10, 160},\n\tdictWord{137, 10, 318},\n\tdictWord{19, 11, 1},\n\tdictWord{\n\t\t19,\n\t\t11,\n\t\t26,\n\t},\n\tdictWord{150, 11, 9},\n\tdictWord{7, 0, 1406},\n\tdictWord{9, 0, 218},\n\tdictWord{141, 0, 222},\n\tdictWord{5, 0, 256},\n\tdictWord{138, 0, 69},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t233,\n\t},\n\tdictWord{5, 11, 320},\n\tdictWord{6, 11, 140},\n\tdictWord{7, 11, 330},\n\tdictWord{136, 11, 295},\n\tdictWord{6, 0, 1980},\n\tdictWord{136, 0, 952},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t833,\n\t},\n\tdictWord{137, 11, 678},\n\tdictWord{133, 11, 978},\n\tdictWord{4, 11, 905},\n\tdictWord{6, 11, 1701},\n\tdictWord{137, 11, 843},\n\tdictWord{138, 10, 735},\n\tdictWord{136, 10, 76},\n\tdictWord{17, 0, 39},\n\tdictWord{148, 0, 36},\n\tdictWord{18, 0, 81},\n\tdictWord{146, 11, 81},\n\tdictWord{14, 0, 352},\n\tdictWord{17, 0, 53},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t146,\n\t},\n\tdictWord{18, 0, 152},\n\tdictWord{19, 0, 11},\n\tdictWord{150, 0, 54},\n\tdictWord{135, 0, 634},\n\tdictWord{138, 10, 841},\n\tdictWord{132, 0, 618},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t339,\n\t},\n\tdictWord{7, 0, 259},\n\tdictWord{17, 0, 73},\n\tdictWord{4, 11, 275},\n\tdictWord{140, 11, 376},\n\tdictWord{132, 11, 509},\n\tdictWord{7, 11, 273},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t377,\n\t},\n\tdictWord{4, 0, 759},\n\tdictWord{13, 0, 169},\n\tdictWord{137, 10, 804},\n\tdictWord{6, 10, 96},\n\tdictWord{135, 10, 1426},\n\tdictWord{4, 10, 651},\n\tdictWord{133, 10, 289},\n\tdictWord{7, 0, 1075},\n\tdictWord{8, 10, 35},\n\tdictWord{9, 10, 511},\n\tdictWord{10, 10, 767},\n\tdictWord{147, 10, 118},\n\tdictWord{6, 0, 649},\n\tdictWord{6, 0, 670},\n\tdictWord{136, 0, 482},\n\tdictWord{5, 0, 336},\n\tdictWord{6, 0, 341},\n\tdictWord{6, 0, 478},\n\tdictWord{6, 0, 1763},\n\tdictWord{136, 0, 386},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t802,\n\t},\n\tdictWord{7, 11, 2021},\n\tdictWord{8, 11, 805},\n\tdictWord{14, 11, 94},\n\tdictWord{15, 11, 65},\n\tdictWord{16, 11, 4},\n\tdictWord{16, 11, 77},\n\tdictWord{16, 11, 80},\n\tdictWord{145, 11, 5},\n\tdictWord{6, 0, 1035},\n\tdictWord{5, 11, 167},\n\tdictWord{5, 11, 899},\n\tdictWord{6, 11, 410},\n\tdictWord{137, 11, 777},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t1705,\n\t},\n\tdictWord{5, 0, 924},\n\tdictWord{133, 0, 969},\n\tdictWord{132, 10, 704},\n\tdictWord{135, 0, 73},\n\tdictWord{135, 11, 10},\n\tdictWord{135, 10, 1078},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t11,\n\t},\n\tdictWord{6, 11, 117},\n\tdictWord{6, 11, 485},\n\tdictWord{7, 11, 1133},\n\tdictWord{9, 11, 582},\n\tdictWord{9, 11, 594},\n\tdictWord{11, 11, 21},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t818,\n\t},\n\tdictWord{12, 11, 535},\n\tdictWord{141, 11, 86},\n\tdictWord{135, 0, 1971},\n\tdictWord{4, 11, 264},\n\tdictWord{7, 11, 1067},\n\tdictWord{8, 11, 204},\n\tdictWord{8, 11, 385},\n\tdictWord{139, 11, 953},\n\tdictWord{6, 0, 1458},\n\tdictWord{135, 0, 1344},\n\tdictWord{5, 0, 396},\n\tdictWord{134, 0, 501},\n\tdictWord{4, 10, 720},\n\tdictWord{133, 10, 306},\n\tdictWord{4, 0, 929},\n\tdictWord{5, 0, 799},\n\tdictWord{8, 0, 46},\n\tdictWord{8, 0, 740},\n\tdictWord{133, 10, 431},\n\tdictWord{7, 11, 646},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1730,\n\t},\n\tdictWord{11, 11, 446},\n\tdictWord{141, 11, 178},\n\tdictWord{7, 0, 276},\n\tdictWord{5, 10, 464},\n\tdictWord{6, 10, 236},\n\tdictWord{7, 10, 696},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t914,\n\t},\n\tdictWord{7, 10, 1108},\n\tdictWord{7, 10, 1448},\n\tdictWord{9, 10, 15},\n\tdictWord{9, 10, 564},\n\tdictWord{10, 10, 14},\n\tdictWord{12, 10, 565},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t449,\n\t},\n\tdictWord{14, 10, 53},\n\tdictWord{15, 10, 13},\n\tdictWord{16, 10, 64},\n\tdictWord{145, 10, 41},\n\tdictWord{4, 0, 892},\n\tdictWord{133, 0, 770},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1767,\n\t},\n\tdictWord{12, 10, 194},\n\tdictWord{145, 10, 107},\n\tdictWord{135, 0, 158},\n\tdictWord{5, 10, 840},\n\tdictWord{138, 11, 608},\n\tdictWord{134, 0, 1432},\n\tdictWord{138, 11, 250},\n\tdictWord{8, 11, 794},\n\tdictWord{9, 11, 400},\n\tdictWord{10, 11, 298},\n\tdictWord{142, 11, 228},\n\tdictWord{151, 0, 25},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1131,\n\t},\n\tdictWord{135, 11, 1468},\n\tdictWord{135, 0, 2001},\n\tdictWord{9, 10, 642},\n\tdictWord{11, 10, 236},\n\tdictWord{142, 10, 193},\n\tdictWord{4, 10, 68},\n\tdictWord{5, 10, 634},\n\tdictWord{6, 10, 386},\n\tdictWord{7, 10, 794},\n\tdictWord{8, 10, 273},\n\tdictWord{9, 10, 563},\n\tdictWord{10, 10, 105},\n\tdictWord{10, 10, 171},\n\tdictWord{11, 10, 94},\n\tdictWord{139, 10, 354},\n\tdictWord{136, 11, 724},\n\tdictWord{132, 0, 478},\n\tdictWord{11, 11, 512},\n\tdictWord{13, 11, 205},\n\tdictWord{\n\t\t19,\n\t\t11,\n\t\t30,\n\t},\n\tdictWord{22, 11, 36},\n\tdictWord{151, 11, 19},\n\tdictWord{7, 0, 1461},\n\tdictWord{140, 0, 91},\n\tdictWord{6, 11, 190},\n\tdictWord{7, 11, 768},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1170,\n\t},\n\tdictWord{4, 0, 602},\n\tdictWord{8, 0, 211},\n\tdictWord{4, 10, 95},\n\tdictWord{7, 10, 416},\n\tdictWord{139, 10, 830},\n\tdictWord{7, 10, 731},\n\tdictWord{13, 10, 20},\n\tdictWord{143, 10, 11},\n\tdictWord{6, 0, 1068},\n\tdictWord{135, 0, 1872},\n\tdictWord{4, 0, 13},\n\tdictWord{5, 0, 567},\n\tdictWord{7, 0, 1498},\n\tdictWord{9, 0, 124},\n\tdictWord{11, 0, 521},\n\tdictWord{12, 0, 405},\n\tdictWord{135, 11, 1023},\n\tdictWord{135, 0, 1006},\n\tdictWord{132, 0, 735},\n\tdictWord{138, 0, 812},\n\tdictWord{4, 0, 170},\n\tdictWord{135, 0, 323},\n\tdictWord{6, 11, 137},\n\tdictWord{9, 11, 75},\n\tdictWord{9, 11, 253},\n\tdictWord{10, 11, 194},\n\tdictWord{138, 11, 444},\n\tdictWord{5, 0, 304},\n\tdictWord{7, 0, 1403},\n\tdictWord{5, 10, 864},\n\tdictWord{10, 10, 648},\n\tdictWord{11, 10, 671},\n\tdictWord{143, 10, 46},\n\tdictWord{135, 11, 1180},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t928,\n\t},\n\tdictWord{4, 0, 148},\n\tdictWord{133, 0, 742},\n\tdictWord{11, 10, 986},\n\tdictWord{140, 10, 682},\n\tdictWord{133, 0, 523},\n\tdictWord{135, 11, 1743},\n\tdictWord{7, 0, 730},\n\tdictWord{18, 0, 144},\n\tdictWord{19, 0, 61},\n\tdictWord{8, 10, 44},\n\tdictWord{9, 10, 884},\n\tdictWord{10, 10, 580},\n\tdictWord{11, 10, 399},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t894,\n\t},\n\tdictWord{143, 10, 122},\n\tdictWord{5, 11, 760},\n\tdictWord{7, 11, 542},\n\tdictWord{8, 11, 135},\n\tdictWord{136, 11, 496},\n\tdictWord{136, 0, 981},\n\tdictWord{133, 0, 111},\n\tdictWord{10, 0, 132},\n\tdictWord{11, 0, 191},\n\tdictWord{11, 0, 358},\n\tdictWord{139, 0, 460},\n\tdictWord{7, 11, 319},\n\tdictWord{7, 11, 355},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t763,\n\t},\n\tdictWord{10, 11, 389},\n\tdictWord{145, 11, 43},\n\tdictWord{134, 0, 890},\n\tdictWord{134, 0, 1420},\n\tdictWord{136, 11, 557},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t518,\n\t},\n\tdictWord{133, 0, 444},\n\tdictWord{135, 0, 1787},\n\tdictWord{135, 10, 1852},\n\tdictWord{8, 0, 123},\n\tdictWord{15, 0, 6},\n\tdictWord{144, 0, 7},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t2041,\n\t},\n\tdictWord{10, 11, 38},\n\tdictWord{139, 11, 784},\n\tdictWord{136, 0, 932},\n\tdictWord{5, 0, 937},\n\tdictWord{135, 0, 100},\n\tdictWord{6, 0, 995},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t58,\n\t},\n\tdictWord{5, 11, 286},\n\tdictWord{6, 11, 319},\n\tdictWord{7, 11, 402},\n\tdictWord{7, 11, 1254},\n\tdictWord{7, 11, 1903},\n\tdictWord{8, 11, 356},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t408,\n\t},\n\tdictWord{4, 11, 389},\n\tdictWord{9, 11, 181},\n\tdictWord{9, 11, 255},\n\tdictWord{10, 11, 8},\n\tdictWord{10, 11, 29},\n\tdictWord{10, 11, 816},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t311,\n\t},\n\tdictWord{11, 11, 561},\n\tdictWord{12, 11, 67},\n\tdictWord{141, 11, 181},\n\tdictWord{138, 0, 255},\n\tdictWord{5, 0, 138},\n\tdictWord{4, 10, 934},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t610,\n\t},\n\tdictWord{4, 0, 965},\n\tdictWord{10, 0, 863},\n\tdictWord{138, 0, 898},\n\tdictWord{10, 10, 804},\n\tdictWord{138, 10, 832},\n\tdictWord{12, 0, 631},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t96,\n\t},\n\tdictWord{9, 10, 36},\n\tdictWord{10, 10, 607},\n\tdictWord{11, 10, 423},\n\tdictWord{11, 10, 442},\n\tdictWord{12, 10, 309},\n\tdictWord{14, 10, 199},\n\tdictWord{\n\t\t15,\n\t\t10,\n\t\t90,\n\t},\n\tdictWord{145, 10, 110},\n\tdictWord{134, 0, 1394},\n\tdictWord{4, 0, 652},\n\tdictWord{8, 0, 320},\n\tdictWord{22, 0, 6},\n\tdictWord{22, 0, 16},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t13,\n\t},\n\tdictWord{9, 10, 398},\n\tdictWord{9, 10, 727},\n\tdictWord{10, 10, 75},\n\tdictWord{10, 10, 184},\n\tdictWord{10, 10, 230},\n\tdictWord{10, 10, 564},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t569,\n\t},\n\tdictWord{11, 10, 973},\n\tdictWord{12, 10, 70},\n\tdictWord{12, 10, 189},\n\tdictWord{13, 10, 57},\n\tdictWord{141, 10, 257},\n\tdictWord{6, 0, 897},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1333,\n\t},\n\tdictWord{4, 0, 692},\n\tdictWord{133, 0, 321},\n\tdictWord{133, 11, 373},\n\tdictWord{135, 0, 922},\n\tdictWord{5, 0, 619},\n\tdictWord{133, 0, 698},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t631,\n\t},\n\tdictWord{5, 10, 345},\n\tdictWord{135, 10, 1016},\n\tdictWord{9, 0, 957},\n\tdictWord{9, 0, 1018},\n\tdictWord{12, 0, 828},\n\tdictWord{12, 0, 844},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t897,\n\t},\n\tdictWord{12, 0, 901},\n\tdictWord{12, 0, 943},\n\tdictWord{15, 0, 180},\n\tdictWord{18, 0, 197},\n\tdictWord{18, 0, 200},\n\tdictWord{18, 0, 213},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t214,\n\t},\n\tdictWord{146, 0, 226},\n\tdictWord{5, 0, 917},\n\tdictWord{134, 0, 1659},\n\tdictWord{135, 0, 1100},\n\tdictWord{134, 0, 1173},\n\tdictWord{134, 0, 1930},\n\tdictWord{5, 0, 251},\n\tdictWord{5, 0, 956},\n\tdictWord{8, 0, 268},\n\tdictWord{9, 0, 214},\n\tdictWord{146, 0, 142},\n\tdictWord{133, 10, 673},\n\tdictWord{137, 10, 850},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t287,\n\t},\n\tdictWord{133, 10, 1018},\n\tdictWord{132, 11, 672},\n\tdictWord{5, 0, 346},\n\tdictWord{5, 0, 711},\n\tdictWord{8, 0, 390},\n\tdictWord{11, 11, 752},\n\tdictWord{139, 11, 885},\n\tdictWord{5, 10, 34},\n\tdictWord{10, 10, 724},\n\tdictWord{12, 10, 444},\n\tdictWord{13, 10, 354},\n\tdictWord{18, 10, 32},\n\tdictWord{23, 10, 24},\n\tdictWord{23, 10, 31},\n\tdictWord{152, 10, 5},\n\tdictWord{4, 11, 710},\n\tdictWord{134, 11, 606},\n\tdictWord{134, 0, 744},\n\tdictWord{134, 10, 382},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t145,\n\t},\n\tdictWord{4, 10, 329},\n\tdictWord{7, 11, 884},\n\tdictWord{140, 11, 124},\n\tdictWord{4, 11, 467},\n\tdictWord{5, 11, 405},\n\tdictWord{134, 11, 544},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t846,\n\t},\n\tdictWord{138, 10, 827},\n\tdictWord{133, 0, 624},\n\tdictWord{9, 11, 372},\n\tdictWord{15, 11, 2},\n\tdictWord{19, 11, 10},\n\tdictWord{147, 11, 18},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t387,\n\t},\n\tdictWord{135, 11, 1288},\n\tdictWord{5, 0, 783},\n\tdictWord{7, 0, 1998},\n\tdictWord{135, 0, 2047},\n\tdictWord{132, 10, 906},\n\tdictWord{136, 10, 366},\n\tdictWord{135, 11, 550},\n\tdictWord{4, 10, 123},\n\tdictWord{4, 10, 649},\n\tdictWord{5, 10, 605},\n\tdictWord{7, 10, 1509},\n\tdictWord{136, 10, 36},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1125,\n\t},\n\tdictWord{132, 0, 594},\n\tdictWord{133, 10, 767},\n\tdictWord{135, 11, 1227},\n\tdictWord{136, 11, 467},\n\tdictWord{4, 11, 576},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1263,\n\t},\n\tdictWord{4, 0, 268},\n\tdictWord{7, 0, 1534},\n\tdictWord{135, 11, 1534},\n\tdictWord{4, 10, 273},\n\tdictWord{5, 10, 658},\n\tdictWord{5, 11, 919},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t995,\n\t},\n\tdictWord{134, 11, 1673},\n\tdictWord{133, 0, 563},\n\tdictWord{134, 10, 72},\n\tdictWord{135, 10, 1345},\n\tdictWord{4, 11, 82},\n\tdictWord{5, 11, 333},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t904,\n\t},\n\tdictWord{6, 11, 207},\n\tdictWord{7, 11, 325},\n\tdictWord{7, 11, 1726},\n\tdictWord{8, 11, 101},\n\tdictWord{10, 11, 778},\n\tdictWord{139, 11, 220},\n\tdictWord{5, 0, 37},\n\tdictWord{6, 0, 39},\n\tdictWord{6, 0, 451},\n\tdictWord{7, 0, 218},\n\tdictWord{7, 0, 667},\n\tdictWord{7, 0, 1166},\n\tdictWord{7, 0, 1687},\n\tdictWord{8, 0, 662},\n\tdictWord{16, 0, 2},\n\tdictWord{133, 10, 589},\n\tdictWord{134, 0, 1332},\n\tdictWord{133, 11, 903},\n\tdictWord{134, 0, 508},\n\tdictWord{5, 10, 117},\n\tdictWord{6, 10, 514},\n\tdictWord{6, 10, 541},\n\tdictWord{7, 10, 1164},\n\tdictWord{7, 10, 1436},\n\tdictWord{8, 10, 220},\n\tdictWord{8, 10, 648},\n\tdictWord{10, 10, 688},\n\tdictWord{11, 10, 560},\n\tdictWord{140, 11, 147},\n\tdictWord{6, 11, 555},\n\tdictWord{135, 11, 485},\n\tdictWord{133, 10, 686},\n\tdictWord{7, 0, 453},\n\tdictWord{7, 0, 635},\n\tdictWord{7, 0, 796},\n\tdictWord{8, 0, 331},\n\tdictWord{9, 0, 330},\n\tdictWord{9, 0, 865},\n\tdictWord{10, 0, 119},\n\tdictWord{10, 0, 235},\n\tdictWord{11, 0, 111},\n\tdictWord{11, 0, 129},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t240,\n\t},\n\tdictWord{12, 0, 31},\n\tdictWord{12, 0, 66},\n\tdictWord{12, 0, 222},\n\tdictWord{12, 0, 269},\n\tdictWord{12, 0, 599},\n\tdictWord{12, 0, 684},\n\tdictWord{12, 0, 689},\n\tdictWord{12, 0, 691},\n\tdictWord{142, 0, 345},\n\tdictWord{135, 0, 1834},\n\tdictWord{4, 11, 705},\n\tdictWord{7, 11, 615},\n\tdictWord{138, 11, 251},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t345,\n\t},\n\tdictWord{137, 0, 527},\n\tdictWord{6, 0, 98},\n\tdictWord{7, 0, 702},\n\tdictWord{135, 0, 991},\n\tdictWord{11, 0, 576},\n\tdictWord{14, 0, 74},\n\tdictWord{7, 10, 196},\n\tdictWord{10, 10, 765},\n\tdictWord{11, 10, 347},\n\tdictWord{11, 10, 552},\n\tdictWord{11, 10, 790},\n\tdictWord{12, 10, 263},\n\tdictWord{13, 10, 246},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t270,\n\t},\n\tdictWord{13, 10, 395},\n\tdictWord{14, 10, 176},\n\tdictWord{14, 10, 190},\n\tdictWord{14, 10, 398},\n\tdictWord{14, 10, 412},\n\tdictWord{15, 10, 32},\n\tdictWord{\n\t\t15,\n\t\t10,\n\t\t63,\n\t},\n\tdictWord{16, 10, 88},\n\tdictWord{147, 10, 105},\n\tdictWord{134, 11, 90},\n\tdictWord{13, 0, 84},\n\tdictWord{141, 0, 122},\n\tdictWord{6, 0, 37},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t299,\n\t},\n\tdictWord{7, 0, 1666},\n\tdictWord{8, 0, 195},\n\tdictWord{8, 0, 316},\n\tdictWord{9, 0, 178},\n\tdictWord{9, 0, 276},\n\tdictWord{9, 0, 339},\n\tdictWord{9, 0, 536},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t102,\n\t},\n\tdictWord{10, 0, 362},\n\tdictWord{10, 0, 785},\n\tdictWord{11, 0, 55},\n\tdictWord{11, 0, 149},\n\tdictWord{11, 0, 773},\n\tdictWord{13, 0, 416},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t419,\n\t},\n\tdictWord{14, 0, 38},\n\tdictWord{14, 0, 41},\n\tdictWord{142, 0, 210},\n\tdictWord{5, 10, 381},\n\tdictWord{135, 10, 1792},\n\tdictWord{7, 11, 813},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t497,\n\t},\n\tdictWord{141, 11, 56},\n\tdictWord{7, 10, 616},\n\tdictWord{138, 10, 413},\n\tdictWord{133, 0, 645},\n\tdictWord{6, 11, 125},\n\tdictWord{135, 11, 1277},\n\tdictWord{132, 0, 290},\n\tdictWord{6, 0, 70},\n\tdictWord{7, 0, 1292},\n\tdictWord{10, 0, 762},\n\tdictWord{139, 0, 288},\n\tdictWord{6, 10, 120},\n\tdictWord{7, 10, 1188},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1710,\n\t},\n\tdictWord{8, 10, 286},\n\tdictWord{9, 10, 667},\n\tdictWord{11, 10, 592},\n\tdictWord{139, 10, 730},\n\tdictWord{135, 11, 1784},\n\tdictWord{7, 0, 1315},\n\tdictWord{135, 11, 1315},\n\tdictWord{134, 0, 1955},\n\tdictWord{135, 10, 1146},\n\tdictWord{7, 0, 131},\n\tdictWord{7, 0, 422},\n\tdictWord{8, 0, 210},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t573,\n\t},\n\tdictWord{4, 10, 352},\n\tdictWord{135, 10, 687},\n\tdictWord{139, 0, 797},\n\tdictWord{143, 0, 38},\n\tdictWord{14, 0, 179},\n\tdictWord{15, 0, 151},\n\tdictWord{\n\t\t150,\n\t\t0,\n\t\t11,\n\t},\n\tdictWord{7, 0, 488},\n\tdictWord{4, 10, 192},\n\tdictWord{5, 10, 49},\n\tdictWord{6, 10, 200},\n\tdictWord{6, 10, 293},\n\tdictWord{134, 10, 1696},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t936,\n\t},\n\tdictWord{135, 11, 703},\n\tdictWord{6, 11, 160},\n\tdictWord{7, 11, 1106},\n\tdictWord{9, 11, 770},\n\tdictWord{10, 11, 618},\n\tdictWord{11, 11, 112},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t413,\n\t},\n\tdictWord{5, 0, 453},\n\tdictWord{134, 0, 441},\n\tdictWord{135, 0, 595},\n\tdictWord{132, 10, 650},\n\tdictWord{132, 10, 147},\n\tdictWord{6, 0, 991},\n\tdictWord{6, 0, 1182},\n\tdictWord{12, 11, 271},\n\tdictWord{145, 11, 109},\n\tdictWord{133, 10, 934},\n\tdictWord{140, 11, 221},\n\tdictWord{132, 0, 653},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t505,\n\t},\n\tdictWord{135, 0, 523},\n\tdictWord{134, 0, 903},\n\tdictWord{135, 11, 479},\n\tdictWord{7, 11, 304},\n\tdictWord{9, 11, 646},\n\tdictWord{9, 11, 862},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t262,\n\t},\n\tdictWord{11, 11, 696},\n\tdictWord{12, 11, 208},\n\tdictWord{15, 11, 79},\n\tdictWord{147, 11, 108},\n\tdictWord{146, 0, 80},\n\tdictWord{135, 11, 981},\n\tdictWord{142, 0, 432},\n\tdictWord{132, 0, 314},\n\tdictWord{137, 11, 152},\n\tdictWord{7, 0, 1368},\n\tdictWord{8, 0, 232},\n\tdictWord{8, 0, 361},\n\tdictWord{10, 0, 682},\n\tdictWord{138, 0, 742},\n\tdictWord{135, 11, 1586},\n\tdictWord{9, 0, 534},\n\tdictWord{4, 11, 434},\n\tdictWord{11, 11, 663},\n\tdictWord{12, 11, 210},\n\tdictWord{13, 11, 166},\n\tdictWord{13, 11, 310},\n\tdictWord{14, 11, 373},\n\tdictWord{147, 11, 43},\n\tdictWord{7, 11, 1091},\n\tdictWord{135, 11, 1765},\n\tdictWord{6, 11, 550},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t652,\n\t},\n\tdictWord{137, 0, 27},\n\tdictWord{142, 0, 12},\n\tdictWord{4, 10, 637},\n\tdictWord{5, 11, 553},\n\tdictWord{7, 11, 766},\n\tdictWord{138, 11, 824},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t737,\n\t},\n\tdictWord{8, 11, 298},\n\tdictWord{136, 11, 452},\n\tdictWord{7, 0, 736},\n\tdictWord{139, 0, 264},\n\tdictWord{134, 0, 1657},\n\tdictWord{133, 11, 292},\n\tdictWord{138, 11, 135},\n\tdictWord{6, 0, 844},\n\tdictWord{134, 0, 1117},\n\tdictWord{135, 0, 127},\n\tdictWord{9, 10, 867},\n\tdictWord{138, 10, 837},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1184,\n\t},\n\tdictWord{134, 0, 1208},\n\tdictWord{134, 0, 1294},\n\tdictWord{136, 0, 364},\n\tdictWord{6, 0, 1415},\n\tdictWord{7, 0, 1334},\n\tdictWord{11, 0, 125},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t170,\n\t},\n\tdictWord{7, 11, 393},\n\tdictWord{8, 10, 395},\n\tdictWord{8, 10, 487},\n\tdictWord{10, 11, 603},\n\tdictWord{11, 11, 206},\n\tdictWord{141, 10, 147},\n\tdictWord{137, 11, 748},\n\tdictWord{4, 11, 912},\n\tdictWord{137, 11, 232},\n\tdictWord{4, 10, 535},\n\tdictWord{136, 10, 618},\n\tdictWord{137, 0, 792},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1973,\n\t},\n\tdictWord{136, 11, 716},\n\tdictWord{135, 11, 98},\n\tdictWord{5, 0, 909},\n\tdictWord{9, 0, 849},\n\tdictWord{138, 0, 805},\n\tdictWord{4, 0, 630},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t699,\n\t},\n\tdictWord{5, 11, 733},\n\tdictWord{14, 11, 103},\n\tdictWord{150, 10, 23},\n\tdictWord{12, 11, 158},\n\tdictWord{18, 11, 8},\n\tdictWord{19, 11, 62},\n\tdictWord{\n\t\t20,\n\t\t11,\n\t\t6,\n\t},\n\tdictWord{22, 11, 4},\n\tdictWord{23, 11, 2},\n\tdictWord{151, 11, 9},\n\tdictWord{132, 0, 968},\n\tdictWord{132, 10, 778},\n\tdictWord{132, 10, 46},\n\tdictWord{5, 10, 811},\n\tdictWord{6, 10, 1679},\n\tdictWord{6, 10, 1714},\n\tdictWord{135, 10, 2032},\n\tdictWord{6, 0, 1446},\n\tdictWord{7, 10, 1458},\n\tdictWord{9, 10, 407},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t15,\n\t},\n\tdictWord{7, 0, 206},\n\tdictWord{7, 0, 397},\n\tdictWord{7, 0, 621},\n\tdictWord{7, 0, 640},\n\tdictWord{8, 0, 124},\n\tdictWord{8, 0, 619},\n\tdictWord{9, 0, 305},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t643,\n\t},\n\tdictWord{10, 0, 264},\n\tdictWord{10, 0, 628},\n\tdictWord{11, 0, 40},\n\tdictWord{12, 0, 349},\n\tdictWord{13, 0, 134},\n\tdictWord{13, 0, 295},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t155,\n\t},\n\tdictWord{15, 0, 120},\n\tdictWord{18, 0, 105},\n\tdictWord{6, 10, 34},\n\tdictWord{7, 10, 1089},\n\tdictWord{8, 10, 708},\n\tdictWord{8, 10, 721},\n\tdictWord{9, 10, 363},\n\tdictWord{148, 10, 98},\n\tdictWord{4, 0, 262},\n\tdictWord{5, 0, 641},\n\tdictWord{135, 0, 342},\n\tdictWord{137, 11, 72},\n\tdictWord{4, 0, 99},\n\tdictWord{6, 0, 250},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t346,\n\t},\n\tdictWord{8, 0, 127},\n\tdictWord{138, 0, 81},\n\tdictWord{132, 0, 915},\n\tdictWord{5, 0, 75},\n\tdictWord{9, 0, 517},\n\tdictWord{10, 0, 470},\n\tdictWord{12, 0, 155},\n\tdictWord{141, 0, 224},\n\tdictWord{132, 10, 462},\n\tdictWord{11, 11, 600},\n\tdictWord{11, 11, 670},\n\tdictWord{141, 11, 245},\n\tdictWord{142, 0, 83},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t73,\n\t},\n\tdictWord{6, 10, 23},\n\tdictWord{134, 10, 338},\n\tdictWord{6, 0, 1031},\n\tdictWord{139, 11, 923},\n\tdictWord{7, 11, 164},\n\tdictWord{7, 11, 1571},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t107,\n\t},\n\tdictWord{140, 11, 225},\n\tdictWord{134, 0, 1470},\n\tdictWord{133, 0, 954},\n\tdictWord{6, 0, 304},\n\tdictWord{8, 0, 418},\n\tdictWord{10, 0, 345},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t341,\n\t},\n\tdictWord{139, 0, 675},\n\tdictWord{9, 0, 410},\n\tdictWord{139, 0, 425},\n\tdictWord{4, 11, 27},\n\tdictWord{5, 11, 484},\n\tdictWord{5, 11, 510},\n\tdictWord{6, 11, 434},\n\tdictWord{7, 11, 1000},\n\tdictWord{7, 11, 1098},\n\tdictWord{8, 11, 2},\n\tdictWord{136, 11, 200},\n\tdictWord{134, 0, 734},\n\tdictWord{140, 11, 257},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t725,\n\t},\n\tdictWord{8, 10, 498},\n\tdictWord{139, 10, 268},\n\tdictWord{134, 0, 1822},\n\tdictWord{135, 0, 1798},\n\tdictWord{135, 10, 773},\n\tdictWord{132, 11, 460},\n\tdictWord{4, 11, 932},\n\tdictWord{133, 11, 891},\n\tdictWord{134, 0, 14},\n\tdictWord{132, 10, 583},\n\tdictWord{7, 10, 1462},\n\tdictWord{8, 11, 625},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t659,\n\t},\n\tdictWord{5, 0, 113},\n\tdictWord{6, 0, 243},\n\tdictWord{6, 0, 1708},\n\tdictWord{7, 0, 1865},\n\tdictWord{11, 0, 161},\n\tdictWord{16, 0, 37},\n\tdictWord{17, 0, 99},\n\tdictWord{133, 10, 220},\n\tdictWord{134, 11, 76},\n\tdictWord{5, 11, 461},\n\tdictWord{135, 11, 1925},\n\tdictWord{140, 0, 69},\n\tdictWord{8, 11, 92},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t221,\n\t},\n\tdictWord{139, 10, 803},\n\tdictWord{132, 10, 544},\n\tdictWord{4, 0, 274},\n\tdictWord{134, 0, 922},\n\tdictWord{132, 0, 541},\n\tdictWord{5, 0, 627},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t437,\n\t},\n\tdictWord{6, 10, 564},\n\tdictWord{11, 10, 181},\n\tdictWord{141, 10, 183},\n\tdictWord{135, 10, 1192},\n\tdictWord{7, 0, 166},\n\tdictWord{132, 11, 763},\n\tdictWord{133, 11, 253},\n\tdictWord{134, 0, 849},\n\tdictWord{9, 11, 73},\n\tdictWord{10, 11, 110},\n\tdictWord{14, 11, 185},\n\tdictWord{145, 11, 119},\n\tdictWord{5, 11, 212},\n\tdictWord{12, 11, 35},\n\tdictWord{141, 11, 382},\n\tdictWord{133, 0, 717},\n\tdictWord{137, 0, 304},\n\tdictWord{136, 0, 600},\n\tdictWord{133, 0, 654},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t273,\n\t},\n\tdictWord{10, 0, 188},\n\tdictWord{13, 0, 377},\n\tdictWord{146, 0, 77},\n\tdictWord{4, 10, 790},\n\tdictWord{5, 10, 273},\n\tdictWord{134, 10, 394},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t543,\n\t},\n\tdictWord{135, 0, 410},\n\tdictWord{11, 0, 98},\n\tdictWord{11, 0, 524},\n\tdictWord{141, 0, 87},\n\tdictWord{132, 0, 941},\n\tdictWord{135, 11, 1175},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t250,\n\t},\n\tdictWord{7, 0, 1612},\n\tdictWord{11, 0, 186},\n\tdictWord{12, 0, 133},\n\tdictWord{6, 10, 127},\n\tdictWord{7, 10, 1511},\n\tdictWord{8, 10, 613},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t495,\n\t},\n\tdictWord{12, 10, 586},\n\tdictWord{12, 10, 660},\n\tdictWord{12, 10, 668},\n\tdictWord{14, 10, 385},\n\tdictWord{15, 10, 118},\n\tdictWord{17, 10, 20},\n\tdictWord{\n\t\t146,\n\t\t10,\n\t\t98,\n\t},\n\tdictWord{6, 0, 1785},\n\tdictWord{133, 11, 816},\n\tdictWord{134, 0, 1339},\n\tdictWord{7, 0, 961},\n\tdictWord{7, 0, 1085},\n\tdictWord{7, 0, 1727},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t462,\n\t},\n\tdictWord{6, 10, 230},\n\tdictWord{135, 11, 1727},\n\tdictWord{9, 0, 636},\n\tdictWord{135, 10, 1954},\n\tdictWord{132, 0, 780},\n\tdictWord{5, 11, 869},\n\tdictWord{5, 11, 968},\n\tdictWord{6, 11, 1626},\n\tdictWord{8, 11, 734},\n\tdictWord{136, 11, 784},\n\tdictWord{4, 11, 542},\n\tdictWord{6, 11, 1716},\n\tdictWord{6, 11, 1727},\n\tdictWord{7, 11, 1082},\n\tdictWord{7, 11, 1545},\n\tdictWord{8, 11, 56},\n\tdictWord{8, 11, 118},\n\tdictWord{8, 11, 412},\n\tdictWord{8, 11, 564},\n\tdictWord{9, 11, 888},\n\tdictWord{9, 11, 908},\n\tdictWord{10, 11, 50},\n\tdictWord{10, 11, 423},\n\tdictWord{11, 11, 685},\n\tdictWord{11, 11, 697},\n\tdictWord{11, 11, 933},\n\tdictWord{12, 11, 299},\n\tdictWord{13, 11, 126},\n\tdictWord{13, 11, 136},\n\tdictWord{13, 11, 170},\n\tdictWord{141, 11, 190},\n\tdictWord{134, 11, 226},\n\tdictWord{4, 11, 232},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t202,\n\t},\n\tdictWord{10, 11, 474},\n\tdictWord{140, 11, 433},\n\tdictWord{137, 11, 500},\n\tdictWord{5, 0, 529},\n\tdictWord{136, 10, 68},\n\tdictWord{132, 10, 654},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t156,\n\t},\n\tdictWord{7, 10, 998},\n\tdictWord{7, 10, 1045},\n\tdictWord{7, 10, 1860},\n\tdictWord{9, 10, 48},\n\tdictWord{9, 10, 692},\n\tdictWord{11, 10, 419},\n\tdictWord{139, 10, 602},\n\tdictWord{7, 0, 1276},\n\tdictWord{8, 0, 474},\n\tdictWord{9, 0, 652},\n\tdictWord{6, 11, 108},\n\tdictWord{7, 11, 1003},\n\tdictWord{7, 11, 1181},\n\tdictWord{136, 11, 343},\n\tdictWord{7, 11, 1264},\n\tdictWord{7, 11, 1678},\n\tdictWord{11, 11, 945},\n\tdictWord{12, 11, 341},\n\tdictWord{12, 11, 471},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t569,\n\t},\n\tdictWord{134, 11, 1712},\n\tdictWord{5, 0, 948},\n\tdictWord{12, 0, 468},\n\tdictWord{19, 0, 96},\n\tdictWord{148, 0, 24},\n\tdictWord{4, 11, 133},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t711,\n\t},\n\tdictWord{7, 11, 1298},\n\tdictWord{7, 11, 1585},\n\tdictWord{135, 11, 1929},\n\tdictWord{6, 0, 753},\n\tdictWord{140, 0, 657},\n\tdictWord{139, 0, 941},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t99,\n\t},\n\tdictWord{7, 11, 1808},\n\tdictWord{145, 11, 57},\n\tdictWord{6, 11, 574},\n\tdictWord{7, 11, 428},\n\tdictWord{7, 11, 1250},\n\tdictWord{10, 11, 669},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t485,\n\t},\n\tdictWord{11, 11, 840},\n\tdictWord{12, 11, 300},\n\tdictWord{142, 11, 250},\n\tdictWord{4, 0, 532},\n\tdictWord{5, 0, 706},\n\tdictWord{135, 0, 662},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t837,\n\t},\n\tdictWord{6, 0, 1651},\n\tdictWord{139, 0, 985},\n\tdictWord{7, 0, 1861},\n\tdictWord{9, 10, 197},\n\tdictWord{10, 10, 300},\n\tdictWord{12, 10, 473},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t90,\n\t},\n\tdictWord{141, 10, 405},\n\tdictWord{137, 11, 252},\n\tdictWord{6, 11, 323},\n\tdictWord{135, 11, 1564},\n\tdictWord{4, 0, 330},\n\tdictWord{4, 0, 863},\n\tdictWord{7, 0, 933},\n\tdictWord{7, 0, 2012},\n\tdictWord{8, 0, 292},\n\tdictWord{7, 11, 461},\n\tdictWord{8, 11, 775},\n\tdictWord{138, 11, 435},\n\tdictWord{132, 10, 606},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t655,\n\t},\n\tdictWord{7, 11, 850},\n\tdictWord{17, 11, 75},\n\tdictWord{146, 11, 137},\n\tdictWord{135, 0, 767},\n\tdictWord{7, 10, 1978},\n\tdictWord{136, 10, 676},\n\tdictWord{132, 0, 641},\n\tdictWord{135, 11, 1559},\n\tdictWord{134, 0, 1233},\n\tdictWord{137, 0, 242},\n\tdictWord{17, 0, 114},\n\tdictWord{4, 10, 361},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t315,\n\t},\n\tdictWord{137, 0, 883},\n\tdictWord{132, 10, 461},\n\tdictWord{138, 0, 274},\n\tdictWord{134, 0, 2008},\n\tdictWord{134, 0, 1794},\n\tdictWord{4, 0, 703},\n\tdictWord{135, 0, 207},\n\tdictWord{12, 0, 285},\n\tdictWord{132, 10, 472},\n\tdictWord{132, 0, 571},\n\tdictWord{5, 0, 873},\n\tdictWord{5, 0, 960},\n\tdictWord{8, 0, 823},\n\tdictWord{9, 0, 881},\n\tdictWord{136, 11, 577},\n\tdictWord{7, 0, 617},\n\tdictWord{10, 0, 498},\n\tdictWord{11, 0, 501},\n\tdictWord{12, 0, 16},\n\tdictWord{140, 0, 150},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t747,\n\t},\n\tdictWord{132, 0, 431},\n\tdictWord{133, 10, 155},\n\tdictWord{11, 0, 283},\n\tdictWord{11, 0, 567},\n\tdictWord{7, 10, 163},\n\tdictWord{8, 10, 319},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t402,\n\t},\n\tdictWord{10, 10, 24},\n\tdictWord{10, 10, 681},\n\tdictWord{11, 10, 200},\n\tdictWord{12, 10, 253},\n\tdictWord{12, 10, 410},\n\tdictWord{142, 10, 219},\n\tdictWord{4, 11, 413},\n\tdictWord{5, 11, 677},\n\tdictWord{8, 11, 432},\n\tdictWord{140, 11, 280},\n\tdictWord{9, 0, 401},\n\tdictWord{5, 10, 475},\n\tdictWord{7, 10, 1780},\n\tdictWord{11, 10, 297},\n\tdictWord{11, 10, 558},\n\tdictWord{14, 10, 322},\n\tdictWord{147, 10, 76},\n\tdictWord{6, 0, 781},\n\tdictWord{9, 0, 134},\n\tdictWord{10, 0, 2},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t27,\n\t},\n\tdictWord{10, 0, 333},\n\tdictWord{11, 0, 722},\n\tdictWord{143, 0, 1},\n\tdictWord{5, 0, 33},\n\tdictWord{6, 0, 470},\n\tdictWord{139, 0, 424},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t2006,\n\t},\n\tdictWord{12, 0, 783},\n\tdictWord{135, 10, 1956},\n\tdictWord{136, 0, 274},\n\tdictWord{135, 0, 1882},\n\tdictWord{132, 0, 794},\n\tdictWord{135, 0, 1848},\n\tdictWord{5, 10, 944},\n\tdictWord{134, 10, 1769},\n\tdictWord{6, 0, 47},\n\tdictWord{7, 0, 90},\n\tdictWord{7, 0, 664},\n\tdictWord{7, 0, 830},\n\tdictWord{7, 0, 1380},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t2025,\n\t},\n\tdictWord{8, 0, 448},\n\tdictWord{136, 0, 828},\n\tdictWord{132, 10, 144},\n\tdictWord{134, 0, 1199},\n\tdictWord{4, 11, 395},\n\tdictWord{139, 11, 762},\n\tdictWord{135, 11, 1504},\n\tdictWord{9, 0, 417},\n\tdictWord{137, 0, 493},\n\tdictWord{9, 11, 174},\n\tdictWord{10, 11, 164},\n\tdictWord{11, 11, 440},\n\tdictWord{11, 11, 841},\n\tdictWord{143, 11, 98},\n\tdictWord{134, 11, 426},\n\tdictWord{139, 11, 1002},\n\tdictWord{134, 0, 295},\n\tdictWord{134, 0, 816},\n\tdictWord{6, 10, 247},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t555,\n\t},\n\tdictWord{133, 0, 1019},\n\tdictWord{4, 0, 620},\n\tdictWord{5, 11, 476},\n\tdictWord{10, 10, 280},\n\tdictWord{138, 10, 797},\n\tdictWord{139, 0, 464},\n\tdictWord{5, 11, 76},\n\tdictWord{6, 11, 458},\n\tdictWord{6, 11, 497},\n\tdictWord{7, 11, 764},\n\tdictWord{7, 11, 868},\n\tdictWord{9, 11, 658},\n\tdictWord{10, 11, 594},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t173,\n\t},\n\tdictWord{11, 11, 566},\n\tdictWord{12, 11, 20},\n\tdictWord{12, 11, 338},\n\tdictWord{141, 11, 200},\n\tdictWord{134, 0, 208},\n\tdictWord{4, 11, 526},\n\tdictWord{7, 11, 1029},\n\tdictWord{135, 11, 1054},\n\tdictWord{132, 11, 636},\n\tdictWord{6, 11, 233},\n\tdictWord{7, 11, 660},\n\tdictWord{7, 11, 1124},\n\tdictWord{\n\t\t17,\n\t\t11,\n\t\t31,\n\t},\n\tdictWord{19, 11, 22},\n\tdictWord{151, 11, 14},\n\tdictWord{10, 0, 442},\n\tdictWord{133, 10, 428},\n\tdictWord{10, 0, 930},\n\tdictWord{140, 0, 778},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t68,\n\t},\n\tdictWord{7, 0, 448},\n\tdictWord{7, 0, 1629},\n\tdictWord{7, 0, 1769},\n\tdictWord{7, 0, 1813},\n\tdictWord{8, 0, 442},\n\tdictWord{8, 0, 516},\n\tdictWord{9, 0, 710},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t282,\n\t},\n\tdictWord{10, 0, 722},\n\tdictWord{7, 10, 1717},\n\tdictWord{138, 10, 546},\n\tdictWord{134, 0, 1128},\n\tdictWord{11, 0, 844},\n\tdictWord{12, 0, 104},\n\tdictWord{140, 0, 625},\n\tdictWord{4, 11, 432},\n\tdictWord{135, 11, 824},\n\tdictWord{138, 10, 189},\n\tdictWord{133, 0, 787},\n\tdictWord{133, 10, 99},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t279,\n\t},\n\tdictWord{7, 11, 301},\n\tdictWord{137, 11, 362},\n\tdictWord{8, 0, 491},\n\tdictWord{4, 10, 397},\n\tdictWord{136, 10, 555},\n\tdictWord{4, 11, 178},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t399,\n\t},\n\tdictWord{134, 0, 711},\n\tdictWord{144, 0, 9},\n\tdictWord{4, 0, 403},\n\tdictWord{5, 0, 441},\n\tdictWord{7, 0, 450},\n\tdictWord{10, 0, 840},\n\tdictWord{11, 0, 101},\n\tdictWord{12, 0, 193},\n\tdictWord{141, 0, 430},\n\tdictWord{135, 11, 1246},\n\tdictWord{12, 10, 398},\n\tdictWord{20, 10, 39},\n\tdictWord{21, 10, 11},\n\tdictWord{\n\t\t150,\n\t\t10,\n\t\t41,\n\t},\n\tdictWord{4, 10, 485},\n\tdictWord{7, 10, 353},\n\tdictWord{135, 10, 1523},\n\tdictWord{6, 10, 366},\n\tdictWord{7, 10, 1384},\n\tdictWord{7, 10, 1601},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1912,\n\t},\n\tdictWord{7, 0, 396},\n\tdictWord{10, 0, 160},\n\tdictWord{135, 11, 396},\n\tdictWord{137, 10, 282},\n\tdictWord{134, 11, 1692},\n\tdictWord{4, 10, 157},\n\tdictWord{5, 10, 471},\n\tdictWord{6, 11, 202},\n\tdictWord{10, 11, 448},\n\tdictWord{11, 11, 208},\n\tdictWord{12, 11, 360},\n\tdictWord{17, 11, 117},\n\tdictWord{\n\t\t17,\n\t\t11,\n\t\t118,\n\t},\n\tdictWord{18, 11, 27},\n\tdictWord{148, 11, 67},\n\tdictWord{133, 0, 679},\n\tdictWord{137, 0, 326},\n\tdictWord{136, 10, 116},\n\tdictWord{7, 11, 872},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t516,\n\t},\n\tdictWord{139, 11, 167},\n\tdictWord{132, 11, 224},\n\tdictWord{5, 11, 546},\n\tdictWord{7, 11, 35},\n\tdictWord{8, 11, 11},\n\tdictWord{8, 11, 12},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t315,\n\t},\n\tdictWord{9, 11, 533},\n\tdictWord{10, 11, 802},\n\tdictWord{11, 11, 166},\n\tdictWord{12, 11, 525},\n\tdictWord{142, 11, 243},\n\tdictWord{7, 0, 1128},\n\tdictWord{135, 11, 1920},\n\tdictWord{5, 11, 241},\n\tdictWord{8, 11, 242},\n\tdictWord{9, 11, 451},\n\tdictWord{10, 11, 667},\n\tdictWord{11, 11, 598},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t429,\n\t},\n\tdictWord{6, 0, 737},\n\tdictWord{5, 10, 160},\n\tdictWord{7, 10, 363},\n\tdictWord{7, 10, 589},\n\tdictWord{10, 10, 170},\n\tdictWord{141, 10, 55},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1796,\n\t},\n\tdictWord{142, 11, 254},\n\tdictWord{4, 0, 574},\n\tdictWord{7, 0, 350},\n\tdictWord{7, 0, 1024},\n\tdictWord{8, 0, 338},\n\tdictWord{9, 0, 677},\n\tdictWord{138, 0, 808},\n\tdictWord{134, 0, 1096},\n\tdictWord{137, 11, 516},\n\tdictWord{7, 0, 405},\n\tdictWord{10, 0, 491},\n\tdictWord{4, 10, 108},\n\tdictWord{4, 11, 366},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t498,\n\t},\n\tdictWord{11, 11, 337},\n\tdictWord{142, 11, 303},\n\tdictWord{134, 11, 1736},\n\tdictWord{7, 0, 1081},\n\tdictWord{140, 11, 364},\n\tdictWord{7, 10, 1005},\n\tdictWord{140, 10, 609},\n\tdictWord{7, 0, 1676},\n\tdictWord{4, 10, 895},\n\tdictWord{133, 10, 772},\n\tdictWord{135, 0, 2037},\n\tdictWord{6, 0, 1207},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t916,\n\t},\n\tdictWord{142, 11, 419},\n\tdictWord{14, 11, 140},\n\tdictWord{148, 11, 41},\n\tdictWord{6, 11, 331},\n\tdictWord{136, 11, 623},\n\tdictWord{9, 0, 944},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t969,\n\t},\n\tdictWord{9, 0, 1022},\n\tdictWord{12, 0, 913},\n\tdictWord{12, 0, 936},\n\tdictWord{15, 0, 177},\n\tdictWord{15, 0, 193},\n\tdictWord{4, 10, 926},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t983,\n\t},\n\tdictWord{5, 0, 354},\n\tdictWord{135, 11, 506},\n\tdictWord{8, 0, 598},\n\tdictWord{9, 0, 664},\n\tdictWord{138, 0, 441},\n\tdictWord{4, 11, 640},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t513,\n\t},\n\tdictWord{137, 0, 297},\n\tdictWord{132, 10, 538},\n\tdictWord{6, 10, 294},\n\tdictWord{7, 10, 1267},\n\tdictWord{136, 10, 624},\n\tdictWord{7, 0, 1772},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1888,\n\t},\n\tdictWord{8, 11, 289},\n\tdictWord{11, 11, 45},\n\tdictWord{12, 11, 278},\n\tdictWord{140, 11, 537},\n\tdictWord{135, 10, 1325},\n\tdictWord{138, 0, 751},\n\tdictWord{141, 0, 37},\n\tdictWord{134, 0, 1828},\n\tdictWord{132, 10, 757},\n\tdictWord{132, 11, 394},\n\tdictWord{6, 0, 257},\n\tdictWord{135, 0, 1522},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t582,\n\t},\n\tdictWord{9, 0, 191},\n\tdictWord{135, 11, 1931},\n\tdictWord{7, 11, 574},\n\tdictWord{7, 11, 1719},\n\tdictWord{137, 11, 145},\n\tdictWord{132, 11, 658},\n\tdictWord{10, 0, 790},\n\tdictWord{132, 11, 369},\n\tdictWord{9, 11, 781},\n\tdictWord{10, 11, 144},\n\tdictWord{11, 11, 385},\n\tdictWord{13, 11, 161},\n\tdictWord{13, 11, 228},\n\tdictWord{13, 11, 268},\n\tdictWord{148, 11, 107},\n\tdictWord{8, 0, 469},\n\tdictWord{10, 0, 47},\n\tdictWord{136, 11, 374},\n\tdictWord{6, 0, 306},\n\tdictWord{7, 0, 1140},\n\tdictWord{7, 0, 1340},\n\tdictWord{8, 0, 133},\n\tdictWord{138, 0, 449},\n\tdictWord{139, 0, 1011},\n\tdictWord{7, 10, 1875},\n\tdictWord{139, 10, 124},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t344,\n\t},\n\tdictWord{6, 11, 498},\n\tdictWord{139, 11, 323},\n\tdictWord{137, 0, 299},\n\tdictWord{132, 0, 837},\n\tdictWord{133, 11, 906},\n\tdictWord{5, 0, 329},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t260,\n\t},\n\tdictWord{138, 0, 10},\n\tdictWord{134, 0, 1320},\n\tdictWord{4, 0, 657},\n\tdictWord{146, 0, 158},\n\tdictWord{135, 0, 1191},\n\tdictWord{152, 0, 7},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1939,\n\t},\n\tdictWord{8, 0, 974},\n\tdictWord{138, 0, 996},\n\tdictWord{135, 0, 1665},\n\tdictWord{11, 11, 126},\n\tdictWord{139, 11, 287},\n\tdictWord{143, 0, 8},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t149,\n\t},\n\tdictWord{14, 11, 399},\n\tdictWord{143, 11, 57},\n\tdictWord{5, 0, 66},\n\tdictWord{7, 0, 1896},\n\tdictWord{136, 0, 288},\n\tdictWord{7, 0, 175},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t494,\n\t},\n\tdictWord{5, 10, 150},\n\tdictWord{8, 10, 603},\n\tdictWord{9, 10, 593},\n\tdictWord{9, 10, 634},\n\tdictWord{10, 10, 173},\n\tdictWord{11, 10, 462},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t515,\n\t},\n\tdictWord{13, 10, 216},\n\tdictWord{13, 10, 288},\n\tdictWord{142, 10, 400},\n\tdictWord{134, 0, 1643},\n\tdictWord{136, 11, 21},\n\tdictWord{4, 0, 21},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t91,\n\t},\n\tdictWord{5, 0, 648},\n\tdictWord{5, 0, 750},\n\tdictWord{5, 0, 781},\n\tdictWord{6, 0, 54},\n\tdictWord{6, 0, 112},\n\tdictWord{6, 0, 402},\n\tdictWord{6, 0, 1732},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t315,\n\t},\n\tdictWord{7, 0, 749},\n\tdictWord{7, 0, 1427},\n\tdictWord{7, 0, 1900},\n\tdictWord{9, 0, 78},\n\tdictWord{9, 0, 508},\n\tdictWord{10, 0, 611},\n\tdictWord{10, 0, 811},\n\tdictWord{11, 0, 510},\n\tdictWord{11, 0, 728},\n\tdictWord{13, 0, 36},\n\tdictWord{14, 0, 39},\n\tdictWord{16, 0, 83},\n\tdictWord{17, 0, 124},\n\tdictWord{148, 0, 30},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t668,\n\t},\n\tdictWord{136, 0, 570},\n\tdictWord{10, 0, 322},\n\tdictWord{10, 0, 719},\n\tdictWord{139, 0, 407},\n\tdictWord{135, 11, 1381},\n\tdictWord{136, 11, 193},\n\tdictWord{12, 10, 108},\n\tdictWord{141, 10, 291},\n\tdictWord{132, 11, 616},\n\tdictWord{136, 11, 692},\n\tdictWord{8, 0, 125},\n\tdictWord{8, 0, 369},\n\tdictWord{8, 0, 524},\n\tdictWord{10, 0, 486},\n\tdictWord{11, 0, 13},\n\tdictWord{11, 0, 381},\n\tdictWord{11, 0, 736},\n\tdictWord{11, 0, 766},\n\tdictWord{11, 0, 845},\n\tdictWord{13, 0, 114},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t292,\n\t},\n\tdictWord{142, 0, 47},\n\tdictWord{134, 0, 1247},\n\tdictWord{6, 0, 1684},\n\tdictWord{6, 0, 1731},\n\tdictWord{7, 0, 356},\n\tdictWord{8, 0, 54},\n\tdictWord{8, 0, 221},\n\tdictWord{9, 0, 225},\n\tdictWord{9, 0, 356},\n\tdictWord{10, 0, 77},\n\tdictWord{10, 0, 446},\n\tdictWord{10, 0, 731},\n\tdictWord{12, 0, 404},\n\tdictWord{141, 0, 491},\n\tdictWord{135, 10, 1777},\n\tdictWord{4, 11, 305},\n\tdictWord{4, 10, 493},\n\tdictWord{144, 10, 55},\n\tdictWord{4, 0, 951},\n\tdictWord{6, 0, 1809},\n\tdictWord{6, 0, 1849},\n\tdictWord{8, 0, 846},\n\tdictWord{8, 0, 866},\n\tdictWord{8, 0, 899},\n\tdictWord{10, 0, 896},\n\tdictWord{12, 0, 694},\n\tdictWord{142, 0, 468},\n\tdictWord{5, 11, 214},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t603,\n\t},\n\tdictWord{8, 11, 611},\n\tdictWord{9, 11, 686},\n\tdictWord{10, 11, 88},\n\tdictWord{11, 11, 459},\n\tdictWord{11, 11, 496},\n\tdictWord{12, 11, 463},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t590,\n\t},\n\tdictWord{13, 11, 0},\n\tdictWord{142, 11, 214},\n\tdictWord{132, 0, 411},\n\tdictWord{4, 0, 80},\n\tdictWord{133, 0, 44},\n\tdictWord{140, 11, 74},\n\tdictWord{\n\t\t143,\n\t\t0,\n\t\t31,\n\t},\n\tdictWord{7, 0, 669},\n\tdictWord{6, 10, 568},\n\tdictWord{7, 10, 1804},\n\tdictWord{8, 10, 362},\n\tdictWord{8, 10, 410},\n\tdictWord{8, 10, 830},\n\tdictWord{9, 10, 514},\n\tdictWord{11, 10, 649},\n\tdictWord{142, 10, 157},\n\tdictWord{7, 0, 673},\n\tdictWord{134, 11, 1703},\n\tdictWord{132, 10, 625},\n\tdictWord{134, 0, 1303},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t299,\n\t},\n\tdictWord{135, 0, 1083},\n\tdictWord{138, 0, 704},\n\tdictWord{6, 0, 275},\n\tdictWord{7, 0, 408},\n\tdictWord{6, 10, 158},\n\tdictWord{7, 10, 129},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t181,\n\t},\n\tdictWord{8, 10, 276},\n\tdictWord{8, 10, 377},\n\tdictWord{10, 10, 523},\n\tdictWord{11, 10, 816},\n\tdictWord{12, 10, 455},\n\tdictWord{13, 10, 303},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t135,\n\t},\n\tdictWord{4, 0, 219},\n\tdictWord{7, 0, 367},\n\tdictWord{7, 0, 1713},\n\tdictWord{7, 0, 1761},\n\tdictWord{9, 0, 86},\n\tdictWord{9, 0, 537},\n\tdictWord{10, 0, 165},\n\tdictWord{12, 0, 219},\n\tdictWord{140, 0, 561},\n\tdictWord{8, 0, 216},\n\tdictWord{4, 10, 1},\n\tdictWord{4, 11, 737},\n\tdictWord{6, 11, 317},\n\tdictWord{7, 10, 1143},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1463,\n\t},\n\tdictWord{9, 10, 207},\n\tdictWord{9, 10, 390},\n\tdictWord{9, 10, 467},\n\tdictWord{10, 11, 98},\n\tdictWord{11, 11, 294},\n\tdictWord{11, 10, 836},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t60,\n\t},\n\tdictWord{12, 11, 437},\n\tdictWord{13, 11, 64},\n\tdictWord{13, 11, 380},\n\tdictWord{142, 11, 430},\n\tdictWord{6, 11, 1758},\n\tdictWord{8, 11, 520},\n\tdictWord{9, 11, 345},\n\tdictWord{9, 11, 403},\n\tdictWord{142, 11, 350},\n\tdictWord{5, 11, 47},\n\tdictWord{10, 11, 242},\n\tdictWord{138, 11, 579},\n\tdictWord{5, 11, 139},\n\tdictWord{7, 11, 1168},\n\tdictWord{138, 11, 539},\n\tdictWord{135, 0, 1319},\n\tdictWord{4, 10, 295},\n\tdictWord{4, 10, 723},\n\tdictWord{5, 10, 895},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1031,\n\t},\n\tdictWord{8, 10, 199},\n\tdictWord{8, 10, 340},\n\tdictWord{9, 10, 153},\n\tdictWord{9, 10, 215},\n\tdictWord{10, 10, 21},\n\tdictWord{10, 10, 59},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t80,\n\t},\n\tdictWord{10, 10, 224},\n\tdictWord{10, 10, 838},\n\tdictWord{11, 10, 229},\n\tdictWord{11, 10, 652},\n\tdictWord{12, 10, 192},\n\tdictWord{13, 10, 146},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t91,\n\t},\n\tdictWord{140, 0, 428},\n\tdictWord{137, 10, 51},\n\tdictWord{133, 0, 514},\n\tdictWord{5, 10, 309},\n\tdictWord{140, 10, 211},\n\tdictWord{6, 0, 1010},\n\tdictWord{5, 10, 125},\n\tdictWord{8, 10, 77},\n\tdictWord{138, 10, 15},\n\tdictWord{4, 0, 55},\n\tdictWord{5, 0, 301},\n\tdictWord{6, 0, 571},\n\tdictWord{142, 0, 49},\n\tdictWord{\n\t\t146,\n\t\t0,\n\t\t102,\n\t},\n\tdictWord{136, 11, 370},\n\tdictWord{4, 11, 107},\n\tdictWord{7, 11, 613},\n\tdictWord{8, 11, 358},\n\tdictWord{8, 11, 439},\n\tdictWord{8, 11, 504},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t501,\n\t},\n\tdictWord{10, 11, 383},\n\tdictWord{139, 11, 477},\n\tdictWord{132, 11, 229},\n\tdictWord{133, 0, 364},\n\tdictWord{133, 10, 439},\n\tdictWord{4, 11, 903},\n\tdictWord{135, 11, 1816},\n\tdictWord{11, 0, 379},\n\tdictWord{140, 10, 76},\n\tdictWord{4, 0, 76},\n\tdictWord{4, 0, 971},\n\tdictWord{7, 0, 1550},\n\tdictWord{9, 0, 306},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t430,\n\t},\n\tdictWord{9, 0, 663},\n\tdictWord{10, 0, 683},\n\tdictWord{10, 0, 921},\n\tdictWord{11, 0, 427},\n\tdictWord{11, 0, 753},\n\tdictWord{12, 0, 334},\n\tdictWord{12, 0, 442},\n\tdictWord{14, 0, 258},\n\tdictWord{14, 0, 366},\n\tdictWord{143, 0, 131},\n\tdictWord{137, 0, 52},\n\tdictWord{4, 11, 47},\n\tdictWord{6, 11, 373},\n\tdictWord{7, 11, 452},\n\tdictWord{7, 11, 543},\n\tdictWord{7, 11, 1714},\n\tdictWord{7, 11, 1856},\n\tdictWord{9, 11, 6},\n\tdictWord{11, 11, 257},\n\tdictWord{139, 11, 391},\n\tdictWord{4, 10, 8},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1152,\n\t},\n\tdictWord{7, 10, 1153},\n\tdictWord{7, 10, 1715},\n\tdictWord{9, 10, 374},\n\tdictWord{10, 10, 478},\n\tdictWord{139, 10, 648},\n\tdictWord{4, 11, 785},\n\tdictWord{133, 11, 368},\n\tdictWord{135, 10, 1099},\n\tdictWord{135, 11, 860},\n\tdictWord{5, 11, 980},\n\tdictWord{134, 11, 1754},\n\tdictWord{134, 0, 1258},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1058,\n\t},\n\tdictWord{6, 0, 1359},\n\tdictWord{7, 11, 536},\n\tdictWord{7, 11, 1331},\n\tdictWord{136, 11, 143},\n\tdictWord{4, 0, 656},\n\tdictWord{135, 0, 779},\n\tdictWord{136, 10, 87},\n\tdictWord{5, 11, 19},\n\tdictWord{6, 11, 533},\n\tdictWord{146, 11, 126},\n\tdictWord{7, 0, 144},\n\tdictWord{138, 10, 438},\n\tdictWord{5, 11, 395},\n\tdictWord{5, 11, 951},\n\tdictWord{134, 11, 1776},\n\tdictWord{135, 0, 1373},\n\tdictWord{7, 0, 554},\n\tdictWord{7, 0, 605},\n\tdictWord{141, 0, 10},\n\tdictWord{4, 10, 69},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t122,\n\t},\n\tdictWord{9, 10, 656},\n\tdictWord{138, 10, 464},\n\tdictWord{5, 10, 849},\n\tdictWord{134, 10, 1633},\n\tdictWord{5, 0, 838},\n\tdictWord{5, 0, 841},\n\tdictWord{134, 0, 1649},\n\tdictWord{133, 0, 1012},\n\tdictWord{139, 10, 499},\n\tdictWord{7, 10, 476},\n\tdictWord{7, 10, 1592},\n\tdictWord{138, 10, 87},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t251,\n\t},\n\tdictWord{7, 0, 365},\n\tdictWord{7, 0, 1357},\n\tdictWord{7, 0, 1497},\n\tdictWord{8, 0, 154},\n\tdictWord{141, 0, 281},\n\tdictWord{132, 11, 441},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t695,\n\t},\n\tdictWord{7, 11, 497},\n\tdictWord{9, 11, 387},\n\tdictWord{147, 11, 81},\n\tdictWord{133, 0, 340},\n\tdictWord{14, 10, 283},\n\tdictWord{142, 11, 283},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t810,\n\t},\n\tdictWord{135, 11, 1894},\n\tdictWord{139, 0, 495},\n\tdictWord{5, 11, 284},\n\tdictWord{6, 11, 49},\n\tdictWord{6, 11, 350},\n\tdictWord{7, 11, 1},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t377,\n\t},\n\tdictWord{7, 11, 1693},\n\tdictWord{8, 11, 18},\n\tdictWord{8, 11, 678},\n\tdictWord{9, 11, 161},\n\tdictWord{9, 11, 585},\n\tdictWord{9, 11, 671},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t839,\n\t},\n\tdictWord{11, 11, 912},\n\tdictWord{141, 11, 427},\n\tdictWord{5, 10, 859},\n\tdictWord{7, 10, 1160},\n\tdictWord{8, 10, 107},\n\tdictWord{9, 10, 291},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t439,\n\t},\n\tdictWord{10, 10, 663},\n\tdictWord{11, 10, 609},\n\tdictWord{140, 10, 197},\n\tdictWord{8, 0, 261},\n\tdictWord{9, 0, 144},\n\tdictWord{9, 0, 466},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t370,\n\t},\n\tdictWord{12, 0, 470},\n\tdictWord{13, 0, 144},\n\tdictWord{142, 0, 348},\n\tdictWord{137, 0, 897},\n\tdictWord{6, 0, 248},\n\tdictWord{9, 0, 546},\n\tdictWord{10, 0, 535},\n\tdictWord{11, 0, 681},\n\tdictWord{141, 0, 135},\n\tdictWord{4, 0, 358},\n\tdictWord{135, 0, 1496},\n\tdictWord{134, 0, 567},\n\tdictWord{136, 0, 445},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t117,\n\t},\n\tdictWord{6, 10, 372},\n\tdictWord{7, 10, 1905},\n\tdictWord{142, 10, 323},\n\tdictWord{4, 10, 722},\n\tdictWord{139, 10, 471},\n\tdictWord{6, 0, 697},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t996,\n\t},\n\tdictWord{7, 11, 2007},\n\tdictWord{9, 11, 101},\n\tdictWord{9, 11, 450},\n\tdictWord{10, 11, 66},\n\tdictWord{10, 11, 842},\n\tdictWord{11, 11, 536},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t587,\n\t},\n\tdictWord{132, 0, 577},\n\tdictWord{134, 0, 1336},\n\tdictWord{9, 10, 5},\n\tdictWord{12, 10, 216},\n\tdictWord{12, 10, 294},\n\tdictWord{12, 10, 298},\n\tdictWord{12, 10, 400},\n\tdictWord{12, 10, 518},\n\tdictWord{13, 10, 229},\n\tdictWord{143, 10, 139},\n\tdictWord{6, 0, 174},\n\tdictWord{138, 0, 917},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1774,\n\t},\n\tdictWord{5, 10, 12},\n\tdictWord{7, 10, 375},\n\tdictWord{9, 10, 88},\n\tdictWord{9, 10, 438},\n\tdictWord{11, 11, 62},\n\tdictWord{139, 10, 270},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t1766,\n\t},\n\tdictWord{6, 11, 0},\n\tdictWord{7, 11, 84},\n\tdictWord{7, 10, 816},\n\tdictWord{7, 10, 1241},\n\tdictWord{9, 10, 283},\n\tdictWord{9, 10, 520},\n\tdictWord{10, 10, 213},\n\tdictWord{10, 10, 307},\n\tdictWord{10, 10, 463},\n\tdictWord{10, 10, 671},\n\tdictWord{10, 10, 746},\n\tdictWord{11, 10, 401},\n\tdictWord{11, 10, 794},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t895,\n\t},\n\tdictWord{12, 10, 517},\n\tdictWord{17, 11, 11},\n\tdictWord{18, 10, 107},\n\tdictWord{147, 10, 115},\n\tdictWord{5, 0, 878},\n\tdictWord{133, 0, 972},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t1665,\n\t},\n\tdictWord{7, 11, 256},\n\tdictWord{7, 11, 1388},\n\tdictWord{138, 11, 499},\n\tdictWord{4, 10, 258},\n\tdictWord{136, 10, 639},\n\tdictWord{4, 11, 22},\n\tdictWord{5, 11, 10},\n\tdictWord{6, 10, 22},\n\tdictWord{7, 11, 848},\n\tdictWord{7, 10, 903},\n\tdictWord{7, 10, 1963},\n\tdictWord{8, 11, 97},\n\tdictWord{138, 10, 577},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t681,\n\t},\n\tdictWord{136, 10, 782},\n\tdictWord{133, 11, 481},\n\tdictWord{132, 0, 351},\n\tdictWord{4, 10, 664},\n\tdictWord{5, 10, 804},\n\tdictWord{139, 10, 1013},\n\tdictWord{6, 11, 134},\n\tdictWord{7, 11, 437},\n\tdictWord{7, 11, 959},\n\tdictWord{9, 11, 37},\n\tdictWord{14, 11, 285},\n\tdictWord{14, 11, 371},\n\tdictWord{144, 11, 60},\n\tdictWord{7, 11, 486},\n\tdictWord{8, 11, 155},\n\tdictWord{11, 11, 93},\n\tdictWord{140, 11, 164},\n\tdictWord{132, 0, 286},\n\tdictWord{7, 0, 438},\n\tdictWord{7, 0, 627},\n\tdictWord{7, 0, 1516},\n\tdictWord{8, 0, 40},\n\tdictWord{9, 0, 56},\n\tdictWord{9, 0, 294},\n\tdictWord{10, 0, 30},\n\tdictWord{11, 0, 969},\n\tdictWord{11, 0, 995},\n\tdictWord{146, 0, 148},\n\tdictWord{5, 11, 591},\n\tdictWord{135, 11, 337},\n\tdictWord{134, 0, 1950},\n\tdictWord{133, 10, 32},\n\tdictWord{138, 11, 500},\n\tdictWord{5, 11, 380},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t650,\n\t},\n\tdictWord{136, 11, 310},\n\tdictWord{4, 11, 364},\n\tdictWord{7, 11, 1156},\n\tdictWord{7, 11, 1187},\n\tdictWord{137, 11, 409},\n\tdictWord{4, 0, 738},\n\tdictWord{134, 11, 482},\n\tdictWord{4, 11, 781},\n\tdictWord{6, 11, 487},\n\tdictWord{7, 11, 926},\n\tdictWord{8, 11, 263},\n\tdictWord{139, 11, 500},\n\tdictWord{135, 11, 418},\n\tdictWord{6, 0, 2047},\n\tdictWord{10, 0, 969},\n\tdictWord{4, 10, 289},\n\tdictWord{7, 10, 629},\n\tdictWord{7, 10, 1698},\n\tdictWord{7, 10, 1711},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t215,\n\t},\n\tdictWord{6, 10, 450},\n\tdictWord{136, 10, 109},\n\tdictWord{134, 0, 818},\n\tdictWord{136, 10, 705},\n\tdictWord{133, 0, 866},\n\tdictWord{4, 11, 94},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1265,\n\t},\n\tdictWord{132, 11, 417},\n\tdictWord{134, 0, 1467},\n\tdictWord{135, 10, 1238},\n\tdictWord{4, 0, 972},\n\tdictWord{6, 0, 1851},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1857,\n\t},\n\tdictWord{134, 0, 355},\n\tdictWord{133, 0, 116},\n\tdictWord{132, 0, 457},\n\tdictWord{135, 11, 1411},\n\tdictWord{4, 11, 408},\n\tdictWord{4, 11, 741},\n\tdictWord{135, 11, 500},\n\tdictWord{134, 10, 26},\n\tdictWord{142, 11, 137},\n\tdictWord{5, 0, 527},\n\tdictWord{6, 0, 189},\n\tdictWord{7, 0, 859},\n\tdictWord{136, 0, 267},\n\tdictWord{11, 0, 104},\n\tdictWord{11, 0, 554},\n\tdictWord{15, 0, 60},\n\tdictWord{143, 0, 125},\n\tdictWord{134, 0, 1613},\n\tdictWord{4, 10, 414},\n\tdictWord{5, 10, 467},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t654,\n\t},\n\tdictWord{10, 10, 451},\n\tdictWord{12, 10, 59},\n\tdictWord{141, 10, 375},\n\tdictWord{135, 10, 17},\n\tdictWord{134, 0, 116},\n\tdictWord{135, 11, 541},\n\tdictWord{135, 10, 955},\n\tdictWord{6, 11, 73},\n\tdictWord{135, 11, 177},\n\tdictWord{133, 11, 576},\n\tdictWord{134, 0, 886},\n\tdictWord{133, 0, 487},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t86,\n\t},\n\tdictWord{5, 0, 667},\n\tdictWord{5, 0, 753},\n\tdictWord{6, 0, 316},\n\tdictWord{6, 0, 455},\n\tdictWord{135, 0, 946},\n\tdictWord{142, 11, 231},\n\tdictWord{150, 0, 45},\n\tdictWord{134, 0, 863},\n\tdictWord{134, 0, 1953},\n\tdictWord{6, 10, 280},\n\tdictWord{10, 10, 502},\n\tdictWord{11, 10, 344},\n\tdictWord{140, 10, 38},\n\tdictWord{4, 0, 79},\n\tdictWord{7, 0, 1773},\n\tdictWord{10, 0, 450},\n\tdictWord{11, 0, 589},\n\tdictWord{13, 0, 332},\n\tdictWord{13, 0, 493},\n\tdictWord{14, 0, 183},\n\tdictWord{14, 0, 334},\n\tdictWord{14, 0, 362},\n\tdictWord{14, 0, 368},\n\tdictWord{14, 0, 376},\n\tdictWord{14, 0, 379},\n\tdictWord{19, 0, 90},\n\tdictWord{19, 0, 103},\n\tdictWord{19, 0, 127},\n\tdictWord{\n\t\t148,\n\t\t0,\n\t\t90,\n\t},\n\tdictWord{5, 10, 45},\n\tdictWord{7, 10, 1161},\n\tdictWord{11, 10, 448},\n\tdictWord{11, 10, 880},\n\tdictWord{13, 10, 139},\n\tdictWord{13, 10, 407},\n\tdictWord{\n\t\t15,\n\t\t10,\n\t\t16,\n\t},\n\tdictWord{17, 10, 95},\n\tdictWord{18, 10, 66},\n\tdictWord{18, 10, 88},\n\tdictWord{18, 10, 123},\n\tdictWord{149, 10, 7},\n\tdictWord{136, 10, 777},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t410,\n\t},\n\tdictWord{135, 10, 521},\n\tdictWord{135, 10, 1778},\n\tdictWord{135, 11, 538},\n\tdictWord{142, 0, 381},\n\tdictWord{133, 11, 413},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1142,\n\t},\n\tdictWord{6, 0, 1189},\n\tdictWord{136, 11, 495},\n\tdictWord{5, 0, 663},\n\tdictWord{6, 0, 1962},\n\tdictWord{134, 0, 2003},\n\tdictWord{7, 11, 54},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t312,\n\t},\n\tdictWord{10, 11, 191},\n\tdictWord{10, 11, 614},\n\tdictWord{140, 11, 567},\n\tdictWord{132, 10, 436},\n\tdictWord{133, 0, 846},\n\tdictWord{10, 0, 528},\n\tdictWord{11, 0, 504},\n\tdictWord{7, 10, 1587},\n\tdictWord{135, 10, 1707},\n\tdictWord{5, 0, 378},\n\tdictWord{8, 0, 465},\n\tdictWord{9, 0, 286},\n\tdictWord{10, 0, 185},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t562,\n\t},\n\tdictWord{10, 0, 635},\n\tdictWord{11, 0, 31},\n\tdictWord{11, 0, 393},\n\tdictWord{13, 0, 312},\n\tdictWord{18, 0, 65},\n\tdictWord{18, 0, 96},\n\tdictWord{147, 0, 89},\n\tdictWord{7, 0, 899},\n\tdictWord{14, 0, 325},\n\tdictWord{6, 11, 468},\n\tdictWord{7, 11, 567},\n\tdictWord{7, 11, 1478},\n\tdictWord{8, 11, 530},\n\tdictWord{142, 11, 290},\n\tdictWord{7, 0, 1880},\n\tdictWord{9, 0, 680},\n\tdictWord{139, 0, 798},\n\tdictWord{134, 0, 1770},\n\tdictWord{132, 0, 648},\n\tdictWord{150, 11, 35},\n\tdictWord{5, 0, 945},\n\tdictWord{6, 0, 1656},\n\tdictWord{6, 0, 1787},\n\tdictWord{7, 0, 167},\n\tdictWord{8, 0, 824},\n\tdictWord{9, 0, 391},\n\tdictWord{10, 0, 375},\n\tdictWord{139, 0, 185},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t484,\n\t},\n\tdictWord{135, 11, 822},\n\tdictWord{134, 0, 2046},\n\tdictWord{7, 0, 1645},\n\tdictWord{8, 0, 352},\n\tdictWord{137, 0, 249},\n\tdictWord{132, 0, 152},\n\tdictWord{6, 0, 611},\n\tdictWord{135, 0, 1733},\n\tdictWord{6, 11, 1724},\n\tdictWord{135, 11, 2022},\n\tdictWord{133, 0, 1006},\n\tdictWord{141, 11, 96},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t420,\n\t},\n\tdictWord{135, 0, 1449},\n\tdictWord{146, 11, 149},\n\tdictWord{135, 0, 832},\n\tdictWord{135, 10, 663},\n\tdictWord{133, 0, 351},\n\tdictWord{5, 0, 40},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t598,\n\t},\n\tdictWord{7, 0, 1638},\n\tdictWord{8, 0, 78},\n\tdictWord{9, 0, 166},\n\tdictWord{9, 0, 640},\n\tdictWord{9, 0, 685},\n\tdictWord{9, 0, 773},\n\tdictWord{11, 0, 215},\n\tdictWord{13, 0, 65},\n\tdictWord{14, 0, 172},\n\tdictWord{14, 0, 317},\n\tdictWord{145, 0, 6},\n\tdictWord{8, 0, 60},\n\tdictWord{9, 0, 343},\n\tdictWord{139, 0, 769},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1354,\n\t},\n\tdictWord{132, 0, 724},\n\tdictWord{137, 0, 745},\n\tdictWord{132, 11, 474},\n\tdictWord{7, 0, 1951},\n\tdictWord{8, 0, 765},\n\tdictWord{8, 0, 772},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t671,\n\t},\n\tdictWord{7, 0, 108},\n\tdictWord{8, 0, 219},\n\tdictWord{8, 0, 388},\n\tdictWord{9, 0, 775},\n\tdictWord{11, 0, 275},\n\tdictWord{140, 0, 464},\n\tdictWord{137, 0, 639},\n\tdictWord{135, 10, 503},\n\tdictWord{133, 11, 366},\n\tdictWord{5, 0, 15},\n\tdictWord{6, 0, 56},\n\tdictWord{7, 0, 1758},\n\tdictWord{8, 0, 500},\n\tdictWord{9, 0, 730},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t331,\n\t},\n\tdictWord{13, 0, 150},\n\tdictWord{14, 0, 282},\n\tdictWord{5, 11, 305},\n\tdictWord{9, 11, 560},\n\tdictWord{141, 11, 208},\n\tdictWord{4, 10, 113},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t163,\n\t},\n\tdictWord{5, 10, 735},\n\tdictWord{7, 10, 1009},\n\tdictWord{9, 10, 9},\n\tdictWord{9, 10, 771},\n\tdictWord{12, 10, 90},\n\tdictWord{13, 10, 138},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t410,\n\t},\n\tdictWord{143, 10, 128},\n\tdictWord{4, 10, 324},\n\tdictWord{138, 10, 104},\n\tdictWord{135, 11, 466},\n\tdictWord{142, 11, 27},\n\tdictWord{134, 0, 1886},\n\tdictWord{5, 0, 205},\n\tdictWord{6, 0, 438},\n\tdictWord{9, 0, 711},\n\tdictWord{4, 11, 480},\n\tdictWord{6, 11, 167},\n\tdictWord{6, 11, 302},\n\tdictWord{6, 11, 1642},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t130,\n\t},\n\tdictWord{7, 11, 656},\n\tdictWord{7, 11, 837},\n\tdictWord{7, 11, 1547},\n\tdictWord{7, 11, 1657},\n\tdictWord{8, 11, 429},\n\tdictWord{9, 11, 228},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t643,\n\t},\n\tdictWord{13, 11, 289},\n\tdictWord{13, 11, 343},\n\tdictWord{147, 11, 101},\n\tdictWord{134, 0, 865},\n\tdictWord{6, 0, 2025},\n\tdictWord{136, 0, 965},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t278,\n\t},\n\tdictWord{10, 11, 739},\n\tdictWord{11, 11, 708},\n\tdictWord{141, 11, 348},\n\tdictWord{133, 0, 534},\n\tdictWord{135, 11, 1922},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t691,\n\t},\n\tdictWord{4, 10, 935},\n\tdictWord{133, 10, 823},\n\tdictWord{6, 0, 443},\n\tdictWord{9, 0, 237},\n\tdictWord{9, 0, 571},\n\tdictWord{9, 0, 695},\n\tdictWord{10, 0, 139},\n\tdictWord{11, 0, 715},\n\tdictWord{12, 0, 417},\n\tdictWord{141, 0, 421},\n\tdictWord{5, 10, 269},\n\tdictWord{7, 10, 434},\n\tdictWord{7, 10, 891},\n\tdictWord{8, 10, 339},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t702,\n\t},\n\tdictWord{11, 10, 594},\n\tdictWord{11, 10, 718},\n\tdictWord{145, 10, 100},\n\tdictWord{6, 0, 1555},\n\tdictWord{7, 0, 878},\n\tdictWord{9, 10, 485},\n\tdictWord{141, 10, 264},\n\tdictWord{134, 10, 1713},\n\tdictWord{7, 10, 1810},\n\tdictWord{11, 10, 866},\n\tdictWord{12, 10, 103},\n\tdictWord{141, 10, 495},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t900,\n\t},\n\tdictWord{6, 0, 1410},\n\tdictWord{9, 11, 316},\n\tdictWord{139, 11, 256},\n\tdictWord{4, 0, 995},\n\tdictWord{135, 0, 1033},\n\tdictWord{132, 0, 578},\n\tdictWord{10, 0, 881},\n\tdictWord{12, 0, 740},\n\tdictWord{12, 0, 743},\n\tdictWord{140, 0, 759},\n\tdictWord{132, 0, 822},\n\tdictWord{133, 0, 923},\n\tdictWord{142, 10, 143},\n\tdictWord{135, 11, 1696},\n\tdictWord{6, 11, 363},\n\tdictWord{7, 11, 1955},\n\tdictWord{136, 11, 725},\n\tdictWord{132, 0, 924},\n\tdictWord{133, 0, 665},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t2029,\n\t},\n\tdictWord{135, 0, 1901},\n\tdictWord{4, 0, 265},\n\tdictWord{6, 0, 1092},\n\tdictWord{6, 0, 1417},\n\tdictWord{7, 0, 807},\n\tdictWord{135, 0, 950},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t93,\n\t},\n\tdictWord{12, 0, 267},\n\tdictWord{141, 0, 498},\n\tdictWord{135, 0, 1451},\n\tdictWord{5, 11, 813},\n\tdictWord{135, 11, 2046},\n\tdictWord{5, 10, 625},\n\tdictWord{135, 10, 1617},\n\tdictWord{135, 0, 747},\n\tdictWord{6, 0, 788},\n\tdictWord{137, 0, 828},\n\tdictWord{7, 0, 184},\n\tdictWord{11, 0, 307},\n\tdictWord{11, 0, 400},\n\tdictWord{15, 0, 130},\n\tdictWord{5, 11, 712},\n\tdictWord{7, 11, 1855},\n\tdictWord{8, 10, 425},\n\tdictWord{8, 10, 693},\n\tdictWord{9, 10, 720},\n\tdictWord{10, 10, 380},\n\tdictWord{10, 10, 638},\n\tdictWord{11, 11, 17},\n\tdictWord{11, 10, 473},\n\tdictWord{12, 10, 61},\n\tdictWord{13, 11, 321},\n\tdictWord{144, 11, 67},\n\tdictWord{135, 0, 198},\n\tdictWord{6, 11, 320},\n\tdictWord{7, 11, 781},\n\tdictWord{7, 11, 1921},\n\tdictWord{9, 11, 55},\n\tdictWord{10, 11, 186},\n\tdictWord{10, 11, 273},\n\tdictWord{10, 11, 664},\n\tdictWord{10, 11, 801},\n\tdictWord{11, 11, 996},\n\tdictWord{11, 11, 997},\n\tdictWord{13, 11, 157},\n\tdictWord{142, 11, 170},\n\tdictWord{136, 11, 271},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t994,\n\t},\n\tdictWord{7, 11, 103},\n\tdictWord{7, 11, 863},\n\tdictWord{11, 11, 184},\n\tdictWord{14, 11, 299},\n\tdictWord{145, 11, 62},\n\tdictWord{11, 10, 551},\n\tdictWord{142, 10, 159},\n\tdictWord{5, 0, 233},\n\tdictWord{5, 0, 320},\n\tdictWord{6, 0, 140},\n\tdictWord{8, 0, 295},\n\tdictWord{8, 0, 615},\n\tdictWord{136, 11, 615},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t978,\n\t},\n\tdictWord{4, 0, 905},\n\tdictWord{6, 0, 1701},\n\tdictWord{137, 0, 843},\n\tdictWord{132, 10, 168},\n\tdictWord{4, 0, 974},\n\tdictWord{8, 0, 850},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t709,\n\t},\n\tdictWord{12, 0, 768},\n\tdictWord{140, 0, 786},\n\tdictWord{135, 10, 91},\n\tdictWord{152, 0, 6},\n\tdictWord{138, 10, 532},\n\tdictWord{135, 10, 1884},\n\tdictWord{132, 0, 509},\n\tdictWord{6, 0, 1307},\n\tdictWord{135, 0, 273},\n\tdictWord{5, 11, 77},\n\tdictWord{7, 11, 1455},\n\tdictWord{10, 11, 843},\n\tdictWord{19, 11, 73},\n\tdictWord{150, 11, 5},\n\tdictWord{132, 11, 458},\n\tdictWord{135, 11, 1420},\n\tdictWord{6, 11, 109},\n\tdictWord{138, 11, 382},\n\tdictWord{6, 0, 201},\n\tdictWord{6, 11, 330},\n\tdictWord{7, 10, 70},\n\tdictWord{7, 11, 1084},\n\tdictWord{10, 10, 240},\n\tdictWord{11, 11, 142},\n\tdictWord{147, 10, 93},\n\tdictWord{7, 0, 1041},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t328,\n\t},\n\tdictWord{133, 11, 354},\n\tdictWord{134, 0, 1040},\n\tdictWord{133, 0, 693},\n\tdictWord{134, 0, 774},\n\tdictWord{139, 0, 234},\n\tdictWord{132, 0, 336},\n\tdictWord{7, 0, 1399},\n\tdictWord{139, 10, 392},\n\tdictWord{20, 0, 22},\n\tdictWord{148, 11, 22},\n\tdictWord{5, 0, 802},\n\tdictWord{7, 0, 2021},\n\tdictWord{136, 0, 805},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t167,\n\t},\n\tdictWord{5, 0, 899},\n\tdictWord{6, 0, 410},\n\tdictWord{137, 0, 777},\n\tdictWord{137, 0, 789},\n\tdictWord{134, 0, 1705},\n\tdictWord{7, 10, 655},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1844,\n\t},\n\tdictWord{4, 10, 145},\n\tdictWord{6, 10, 176},\n\tdictWord{7, 10, 395},\n\tdictWord{137, 10, 562},\n\tdictWord{132, 10, 501},\n\tdictWord{135, 0, 10},\n\tdictWord{5, 0, 11},\n\tdictWord{6, 0, 117},\n\tdictWord{6, 0, 485},\n\tdictWord{7, 0, 1133},\n\tdictWord{9, 0, 582},\n\tdictWord{9, 0, 594},\n\tdictWord{10, 0, 82},\n\tdictWord{11, 0, 21},\n\tdictWord{11, 0, 818},\n\tdictWord{12, 0, 535},\n\tdictWord{13, 0, 86},\n\tdictWord{20, 0, 91},\n\tdictWord{23, 0, 13},\n\tdictWord{134, 10, 509},\n\tdictWord{4, 0, 264},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1067,\n\t},\n\tdictWord{8, 0, 204},\n\tdictWord{8, 0, 385},\n\tdictWord{139, 0, 953},\n\tdictWord{139, 11, 737},\n\tdictWord{138, 0, 56},\n\tdictWord{134, 0, 1917},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t470,\n\t},\n\tdictWord{10, 11, 657},\n\tdictWord{14, 11, 297},\n\tdictWord{142, 11, 361},\n\tdictWord{135, 11, 412},\n\tdictWord{7, 0, 1198},\n\tdictWord{7, 11, 1198},\n\tdictWord{8, 11, 556},\n\tdictWord{14, 11, 123},\n\tdictWord{14, 11, 192},\n\tdictWord{143, 11, 27},\n\tdictWord{7, 11, 1985},\n\tdictWord{14, 11, 146},\n\tdictWord{15, 11, 42},\n\tdictWord{16, 11, 23},\n\tdictWord{17, 11, 86},\n\tdictWord{146, 11, 17},\n\tdictWord{11, 0, 1015},\n\tdictWord{136, 11, 122},\n\tdictWord{4, 10, 114},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t492,\n\t},\n\tdictWord{13, 10, 462},\n\tdictWord{142, 10, 215},\n\tdictWord{4, 10, 77},\n\tdictWord{5, 10, 361},\n\tdictWord{6, 10, 139},\n\tdictWord{6, 10, 401},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t404,\n\t},\n\tdictWord{7, 10, 413},\n\tdictWord{7, 10, 715},\n\tdictWord{7, 10, 1716},\n\tdictWord{11, 10, 279},\n\tdictWord{12, 10, 179},\n\tdictWord{12, 10, 258},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t244,\n\t},\n\tdictWord{142, 10, 358},\n\tdictWord{134, 10, 1717},\n\tdictWord{7, 10, 1061},\n\tdictWord{8, 10, 82},\n\tdictWord{11, 10, 250},\n\tdictWord{12, 10, 420},\n\tdictWord{141, 10, 184},\n\tdictWord{133, 0, 715},\n\tdictWord{135, 10, 724},\n\tdictWord{9, 0, 919},\n\tdictWord{9, 0, 922},\n\tdictWord{9, 0, 927},\n\tdictWord{9, 0, 933},\n\tdictWord{9, 0, 962},\n\tdictWord{9, 0, 1000},\n\tdictWord{9, 0, 1002},\n\tdictWord{9, 0, 1021},\n\tdictWord{12, 0, 890},\n\tdictWord{12, 0, 907},\n\tdictWord{12, 0, 930},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t207,\n\t},\n\tdictWord{15, 0, 228},\n\tdictWord{15, 0, 238},\n\tdictWord{149, 0, 61},\n\tdictWord{8, 0, 794},\n\tdictWord{9, 0, 400},\n\tdictWord{10, 0, 298},\n\tdictWord{142, 0, 228},\n\tdictWord{5, 11, 430},\n\tdictWord{5, 11, 932},\n\tdictWord{6, 11, 131},\n\tdictWord{7, 11, 417},\n\tdictWord{9, 11, 522},\n\tdictWord{11, 11, 314},\n\tdictWord{141, 11, 390},\n\tdictWord{132, 0, 867},\n\tdictWord{8, 0, 724},\n\tdictWord{132, 11, 507},\n\tdictWord{137, 11, 261},\n\tdictWord{4, 11, 343},\n\tdictWord{133, 11, 511},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t190,\n\t},\n\tdictWord{7, 0, 768},\n\tdictWord{135, 0, 1170},\n\tdictWord{6, 10, 513},\n\tdictWord{135, 10, 1052},\n\tdictWord{7, 11, 455},\n\tdictWord{138, 11, 591},\n\tdictWord{134, 0, 1066},\n\tdictWord{137, 10, 899},\n\tdictWord{14, 0, 67},\n\tdictWord{147, 0, 60},\n\tdictWord{4, 0, 948},\n\tdictWord{18, 0, 174},\n\tdictWord{146, 0, 176},\n\tdictWord{135, 0, 1023},\n\tdictWord{7, 10, 1417},\n\tdictWord{12, 10, 382},\n\tdictWord{17, 10, 48},\n\tdictWord{152, 10, 12},\n\tdictWord{134, 11, 575},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t764,\n\t},\n\tdictWord{6, 10, 545},\n\tdictWord{7, 10, 565},\n\tdictWord{7, 10, 1669},\n\tdictWord{10, 10, 114},\n\tdictWord{11, 10, 642},\n\tdictWord{140, 10, 618},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t137,\n\t},\n\tdictWord{9, 0, 75},\n\tdictWord{9, 0, 253},\n\tdictWord{10, 0, 194},\n\tdictWord{138, 0, 444},\n\tdictWord{4, 0, 756},\n\tdictWord{133, 10, 5},\n\tdictWord{8, 0, 1008},\n\tdictWord{135, 10, 192},\n\tdictWord{132, 0, 842},\n\tdictWord{11, 0, 643},\n\tdictWord{12, 0, 115},\n\tdictWord{136, 10, 763},\n\tdictWord{139, 0, 67},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t759,\n\t},\n\tdictWord{4, 0, 821},\n\tdictWord{5, 0, 760},\n\tdictWord{7, 0, 542},\n\tdictWord{8, 0, 135},\n\tdictWord{8, 0, 496},\n\tdictWord{135, 11, 580},\n\tdictWord{7, 10, 370},\n\tdictWord{7, 10, 1007},\n\tdictWord{7, 10, 1177},\n\tdictWord{135, 10, 1565},\n\tdictWord{135, 10, 1237},\n\tdictWord{140, 0, 736},\n\tdictWord{7, 0, 319},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t355,\n\t},\n\tdictWord{7, 0, 763},\n\tdictWord{10, 0, 389},\n\tdictWord{145, 0, 43},\n\tdictWord{8, 11, 333},\n\tdictWord{138, 11, 182},\n\tdictWord{4, 10, 87},\n\tdictWord{5, 10, 250},\n\tdictWord{141, 10, 298},\n\tdictWord{138, 0, 786},\n\tdictWord{134, 0, 2044},\n\tdictWord{8, 11, 330},\n\tdictWord{140, 11, 477},\n\tdictWord{135, 11, 1338},\n\tdictWord{132, 11, 125},\n\tdictWord{134, 0, 1030},\n\tdictWord{134, 0, 1083},\n\tdictWord{132, 11, 721},\n\tdictWord{135, 10, 814},\n\tdictWord{7, 11, 776},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t145,\n\t},\n\tdictWord{147, 11, 56},\n\tdictWord{134, 0, 1226},\n\tdictWord{4, 10, 57},\n\tdictWord{7, 10, 1195},\n\tdictWord{7, 10, 1438},\n\tdictWord{7, 10, 1548},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1835,\n\t},\n\tdictWord{7, 10, 1904},\n\tdictWord{9, 10, 757},\n\tdictWord{10, 10, 604},\n\tdictWord{139, 10, 519},\n\tdictWord{7, 11, 792},\n\tdictWord{8, 11, 147},\n\tdictWord{10, 11, 821},\n\tdictWord{139, 11, 1021},\n\tdictWord{137, 11, 797},\n\tdictWord{4, 0, 58},\n\tdictWord{5, 0, 286},\n\tdictWord{6, 0, 319},\n\tdictWord{7, 0, 402},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1254,\n\t},\n\tdictWord{7, 0, 1903},\n\tdictWord{8, 0, 356},\n\tdictWord{140, 0, 408},\n\tdictWord{4, 0, 389},\n\tdictWord{4, 0, 815},\n\tdictWord{9, 0, 181},\n\tdictWord{9, 0, 255},\n\tdictWord{10, 0, 8},\n\tdictWord{10, 0, 29},\n\tdictWord{10, 0, 816},\n\tdictWord{11, 0, 311},\n\tdictWord{11, 0, 561},\n\tdictWord{12, 0, 67},\n\tdictWord{141, 0, 181},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1472,\n\t},\n\tdictWord{135, 11, 1554},\n\tdictWord{7, 11, 1071},\n\tdictWord{7, 11, 1541},\n\tdictWord{7, 11, 1767},\n\tdictWord{7, 11, 1806},\n\tdictWord{7, 11, 1999},\n\tdictWord{9, 11, 248},\n\tdictWord{10, 11, 400},\n\tdictWord{11, 11, 162},\n\tdictWord{11, 11, 178},\n\tdictWord{11, 11, 242},\n\tdictWord{12, 11, 605},\n\tdictWord{\n\t\t15,\n\t\t11,\n\t\t26,\n\t},\n\tdictWord{144, 11, 44},\n\tdictWord{5, 11, 168},\n\tdictWord{5, 11, 930},\n\tdictWord{8, 11, 74},\n\tdictWord{9, 11, 623},\n\tdictWord{12, 11, 500},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t579,\n\t},\n\tdictWord{13, 11, 41},\n\tdictWord{143, 11, 93},\n\tdictWord{6, 11, 220},\n\tdictWord{7, 11, 1101},\n\tdictWord{141, 11, 105},\n\tdictWord{5, 0, 474},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t507,\n\t},\n\tdictWord{4, 10, 209},\n\tdictWord{7, 11, 507},\n\tdictWord{135, 10, 902},\n\tdictWord{132, 0, 427},\n\tdictWord{6, 0, 413},\n\tdictWord{7, 10, 335},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1437,\n\t},\n\tdictWord{7, 10, 1668},\n\tdictWord{8, 10, 553},\n\tdictWord{8, 10, 652},\n\tdictWord{8, 10, 656},\n\tdictWord{9, 10, 558},\n\tdictWord{11, 10, 743},\n\tdictWord{\n\t\t149,\n\t\t10,\n\t\t18,\n\t},\n\tdictWord{132, 0, 730},\n\tdictWord{6, 11, 19},\n\tdictWord{7, 11, 1413},\n\tdictWord{139, 11, 428},\n\tdictWord{133, 0, 373},\n\tdictWord{132, 10, 559},\n\tdictWord{7, 11, 96},\n\tdictWord{8, 11, 401},\n\tdictWord{137, 11, 896},\n\tdictWord{7, 0, 799},\n\tdictWord{7, 0, 1972},\n\tdictWord{5, 10, 1017},\n\tdictWord{138, 10, 511},\n\tdictWord{135, 0, 1793},\n\tdictWord{7, 11, 1961},\n\tdictWord{7, 11, 1965},\n\tdictWord{8, 11, 702},\n\tdictWord{136, 11, 750},\n\tdictWord{8, 11, 150},\n\tdictWord{8, 11, 737},\n\tdictWord{140, 11, 366},\n\tdictWord{132, 0, 322},\n\tdictWord{133, 10, 709},\n\tdictWord{8, 11, 800},\n\tdictWord{9, 11, 148},\n\tdictWord{9, 11, 872},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t890,\n\t},\n\tdictWord{11, 11, 309},\n\tdictWord{11, 11, 1001},\n\tdictWord{13, 11, 267},\n\tdictWord{141, 11, 323},\n\tdictWord{134, 10, 1745},\n\tdictWord{7, 0, 290},\n\tdictWord{136, 10, 206},\n\tdictWord{7, 0, 1651},\n\tdictWord{145, 0, 89},\n\tdictWord{139, 0, 2},\n\tdictWord{132, 0, 672},\n\tdictWord{6, 0, 1860},\n\tdictWord{8, 0, 905},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t844,\n\t},\n\tdictWord{10, 0, 846},\n\tdictWord{10, 0, 858},\n\tdictWord{12, 0, 699},\n\tdictWord{12, 0, 746},\n\tdictWord{140, 0, 772},\n\tdictWord{135, 11, 424},\n\tdictWord{133, 11, 547},\n\tdictWord{133, 0, 737},\n\tdictWord{5, 11, 490},\n\tdictWord{6, 11, 615},\n\tdictWord{6, 11, 620},\n\tdictWord{135, 11, 683},\n\tdictWord{6, 0, 746},\n\tdictWord{134, 0, 1612},\n\tdictWord{132, 10, 776},\n\tdictWord{9, 11, 385},\n\tdictWord{149, 11, 17},\n\tdictWord{133, 0, 145},\n\tdictWord{135, 10, 1272},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t884,\n\t},\n\tdictWord{140, 0, 124},\n\tdictWord{4, 0, 387},\n\tdictWord{135, 0, 1288},\n\tdictWord{5, 11, 133},\n\tdictWord{136, 10, 406},\n\tdictWord{136, 11, 187},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t679,\n\t},\n\tdictWord{8, 11, 8},\n\tdictWord{138, 11, 0},\n\tdictWord{135, 0, 550},\n\tdictWord{135, 11, 798},\n\tdictWord{136, 11, 685},\n\tdictWord{7, 11, 1086},\n\tdictWord{145, 11, 46},\n\tdictWord{8, 10, 175},\n\tdictWord{10, 10, 168},\n\tdictWord{138, 10, 573},\n\tdictWord{135, 0, 1305},\n\tdictWord{4, 0, 576},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1263,\n\t},\n\tdictWord{6, 0, 686},\n\tdictWord{134, 0, 1563},\n\tdictWord{134, 0, 607},\n\tdictWord{5, 0, 919},\n\tdictWord{134, 0, 1673},\n\tdictWord{148, 0, 37},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t774,\n\t},\n\tdictWord{10, 11, 670},\n\tdictWord{140, 11, 51},\n\tdictWord{133, 10, 784},\n\tdictWord{139, 10, 882},\n\tdictWord{4, 0, 82},\n\tdictWord{5, 0, 333},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t904,\n\t},\n\tdictWord{6, 0, 207},\n\tdictWord{7, 0, 325},\n\tdictWord{7, 0, 1726},\n\tdictWord{8, 0, 101},\n\tdictWord{10, 0, 778},\n\tdictWord{139, 0, 220},\n\tdictWord{135, 11, 371},\n\tdictWord{132, 0, 958},\n\tdictWord{133, 0, 903},\n\tdictWord{4, 11, 127},\n\tdictWord{5, 11, 350},\n\tdictWord{6, 11, 356},\n\tdictWord{8, 11, 426},\n\tdictWord{9, 11, 572},\n\tdictWord{10, 11, 247},\n\tdictWord{139, 11, 312},\n\tdictWord{140, 0, 147},\n\tdictWord{6, 11, 59},\n\tdictWord{7, 11, 885},\n\tdictWord{9, 11, 603},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t397,\n\t},\n\tdictWord{10, 0, 367},\n\tdictWord{9, 10, 14},\n\tdictWord{9, 10, 441},\n\tdictWord{139, 10, 9},\n\tdictWord{11, 10, 966},\n\tdictWord{12, 10, 287},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t342,\n\t},\n\tdictWord{13, 10, 402},\n\tdictWord{15, 10, 110},\n\tdictWord{143, 10, 163},\n\tdictWord{134, 0, 690},\n\tdictWord{132, 0, 705},\n\tdictWord{9, 0, 651},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t971,\n\t},\n\tdictWord{13, 0, 273},\n\tdictWord{7, 10, 1428},\n\tdictWord{7, 10, 1640},\n\tdictWord{7, 10, 1867},\n\tdictWord{9, 10, 169},\n\tdictWord{9, 10, 182},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t367,\n\t},\n\tdictWord{9, 10, 478},\n\tdictWord{9, 10, 506},\n\tdictWord{9, 10, 551},\n\tdictWord{9, 10, 557},\n\tdictWord{9, 10, 648},\n\tdictWord{9, 10, 697},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t705,\n\t},\n\tdictWord{9, 10, 725},\n\tdictWord{9, 10, 787},\n\tdictWord{9, 10, 794},\n\tdictWord{10, 10, 198},\n\tdictWord{10, 10, 214},\n\tdictWord{10, 10, 267},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t275,\n\t},\n\tdictWord{10, 10, 456},\n\tdictWord{10, 10, 551},\n\tdictWord{10, 10, 561},\n\tdictWord{10, 10, 613},\n\tdictWord{10, 10, 627},\n\tdictWord{10, 10, 668},\n\tdictWord{10, 10, 675},\n\tdictWord{10, 10, 691},\n\tdictWord{10, 10, 695},\n\tdictWord{10, 10, 707},\n\tdictWord{10, 10, 715},\n\tdictWord{11, 10, 183},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t201,\n\t},\n\tdictWord{11, 10, 262},\n\tdictWord{11, 10, 352},\n\tdictWord{11, 10, 439},\n\tdictWord{11, 10, 493},\n\tdictWord{11, 10, 572},\n\tdictWord{11, 10, 591},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t608,\n\t},\n\tdictWord{11, 10, 611},\n\tdictWord{11, 10, 646},\n\tdictWord{11, 10, 674},\n\tdictWord{11, 10, 711},\n\tdictWord{11, 10, 751},\n\tdictWord{11, 10, 761},\n\tdictWord{11, 10, 776},\n\tdictWord{11, 10, 785},\n\tdictWord{11, 10, 850},\n\tdictWord{11, 10, 853},\n\tdictWord{11, 10, 862},\n\tdictWord{11, 10, 865},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t868,\n\t},\n\tdictWord{11, 10, 875},\n\tdictWord{11, 10, 898},\n\tdictWord{11, 10, 902},\n\tdictWord{11, 10, 903},\n\tdictWord{11, 10, 910},\n\tdictWord{11, 10, 932},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t942,\n\t},\n\tdictWord{11, 10, 957},\n\tdictWord{11, 10, 967},\n\tdictWord{11, 10, 972},\n\tdictWord{12, 10, 148},\n\tdictWord{12, 10, 195},\n\tdictWord{12, 10, 220},\n\tdictWord{12, 10, 237},\n\tdictWord{12, 10, 318},\n\tdictWord{12, 10, 339},\n\tdictWord{12, 10, 393},\n\tdictWord{12, 10, 445},\n\tdictWord{12, 10, 450},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t474,\n\t},\n\tdictWord{12, 10, 505},\n\tdictWord{12, 10, 509},\n\tdictWord{12, 10, 533},\n\tdictWord{12, 10, 591},\n\tdictWord{12, 10, 594},\n\tdictWord{12, 10, 597},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t621,\n\t},\n\tdictWord{12, 10, 633},\n\tdictWord{12, 10, 642},\n\tdictWord{13, 10, 59},\n\tdictWord{13, 10, 60},\n\tdictWord{13, 10, 145},\n\tdictWord{13, 10, 239},\n\tdictWord{13, 10, 250},\n\tdictWord{13, 10, 329},\n\tdictWord{13, 10, 344},\n\tdictWord{13, 10, 365},\n\tdictWord{13, 10, 372},\n\tdictWord{13, 10, 387},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t403,\n\t},\n\tdictWord{13, 10, 414},\n\tdictWord{13, 10, 456},\n\tdictWord{13, 10, 470},\n\tdictWord{13, 10, 478},\n\tdictWord{13, 10, 483},\n\tdictWord{13, 10, 489},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t55,\n\t},\n\tdictWord{14, 10, 57},\n\tdictWord{14, 10, 81},\n\tdictWord{14, 10, 90},\n\tdictWord{14, 10, 148},\n\tdictWord{14, 10, 239},\n\tdictWord{14, 10, 266},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t321,\n\t},\n\tdictWord{14, 10, 326},\n\tdictWord{14, 10, 327},\n\tdictWord{14, 10, 330},\n\tdictWord{14, 10, 347},\n\tdictWord{14, 10, 355},\n\tdictWord{14, 10, 401},\n\tdictWord{14, 10, 404},\n\tdictWord{14, 10, 411},\n\tdictWord{14, 10, 414},\n\tdictWord{14, 10, 416},\n\tdictWord{14, 10, 420},\n\tdictWord{15, 10, 61},\n\tdictWord{\n\t\t15,\n\t\t10,\n\t\t74,\n\t},\n\tdictWord{15, 10, 87},\n\tdictWord{15, 10, 88},\n\tdictWord{15, 10, 94},\n\tdictWord{15, 10, 96},\n\tdictWord{15, 10, 116},\n\tdictWord{15, 10, 149},\n\tdictWord{\n\t\t15,\n\t\t10,\n\t\t154,\n\t},\n\tdictWord{16, 10, 50},\n\tdictWord{16, 10, 63},\n\tdictWord{16, 10, 73},\n\tdictWord{17, 10, 2},\n\tdictWord{17, 10, 66},\n\tdictWord{17, 10, 92},\n\tdictWord{17, 10, 103},\n\tdictWord{17, 10, 112},\n\tdictWord{17, 10, 120},\n\tdictWord{18, 10, 50},\n\tdictWord{18, 10, 54},\n\tdictWord{18, 10, 82},\n\tdictWord{18, 10, 86},\n\tdictWord{18, 10, 90},\n\tdictWord{18, 10, 111},\n\tdictWord{18, 10, 115},\n\tdictWord{18, 10, 156},\n\tdictWord{19, 10, 40},\n\tdictWord{19, 10, 79},\n\tdictWord{20, 10, 78},\n\tdictWord{149, 10, 22},\n\tdictWord{7, 0, 887},\n\tdictWord{5, 10, 161},\n\tdictWord{135, 10, 839},\n\tdictWord{142, 11, 98},\n\tdictWord{134, 0, 90},\n\tdictWord{138, 11, 356},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t441,\n\t},\n\tdictWord{6, 11, 111},\n\tdictWord{7, 11, 4},\n\tdictWord{8, 11, 163},\n\tdictWord{8, 11, 776},\n\tdictWord{138, 11, 566},\n\tdictWord{134, 0, 908},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1261,\n\t},\n\tdictWord{7, 0, 813},\n\tdictWord{12, 0, 497},\n\tdictWord{141, 0, 56},\n\tdictWord{134, 0, 1235},\n\tdictWord{135, 0, 429},\n\tdictWord{135, 11, 1994},\n\tdictWord{138, 0, 904},\n\tdictWord{6, 0, 125},\n\tdictWord{7, 0, 1277},\n\tdictWord{137, 0, 772},\n\tdictWord{151, 0, 12},\n\tdictWord{4, 0, 841},\n\tdictWord{5, 0, 386},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t386,\n\t},\n\tdictWord{5, 11, 297},\n\tdictWord{135, 11, 1038},\n\tdictWord{6, 0, 860},\n\tdictWord{6, 0, 1069},\n\tdictWord{135, 11, 309},\n\tdictWord{136, 0, 946},\n\tdictWord{135, 10, 1814},\n\tdictWord{141, 11, 418},\n\tdictWord{136, 11, 363},\n\tdictWord{10, 0, 768},\n\tdictWord{139, 0, 787},\n\tdictWord{22, 11, 30},\n\tdictWord{\n\t\t150,\n\t\t11,\n\t\t33,\n\t},\n\tdictWord{6, 0, 160},\n\tdictWord{7, 0, 1106},\n\tdictWord{9, 0, 770},\n\tdictWord{11, 0, 112},\n\tdictWord{140, 0, 413},\n\tdictWord{11, 11, 216},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t340,\n\t},\n\tdictWord{136, 10, 139},\n\tdictWord{135, 11, 1390},\n\tdictWord{135, 11, 808},\n\tdictWord{132, 11, 280},\n\tdictWord{12, 0, 271},\n\tdictWord{17, 0, 109},\n\tdictWord{7, 10, 643},\n\tdictWord{136, 10, 236},\n\tdictWord{140, 11, 54},\n\tdictWord{4, 11, 421},\n\tdictWord{133, 11, 548},\n\tdictWord{11, 0, 719},\n\tdictWord{12, 0, 36},\n\tdictWord{141, 0, 337},\n\tdictWord{7, 0, 581},\n\tdictWord{9, 0, 644},\n\tdictWord{137, 0, 699},\n\tdictWord{11, 11, 511},\n\tdictWord{13, 11, 394},\n\tdictWord{14, 11, 298},\n\tdictWord{14, 11, 318},\n\tdictWord{146, 11, 103},\n\tdictWord{7, 0, 304},\n\tdictWord{9, 0, 646},\n\tdictWord{9, 0, 862},\n\tdictWord{11, 0, 696},\n\tdictWord{12, 0, 208},\n\tdictWord{15, 0, 79},\n\tdictWord{147, 0, 108},\n\tdictWord{4, 0, 631},\n\tdictWord{7, 0, 1126},\n\tdictWord{135, 0, 1536},\n\tdictWord{135, 11, 1527},\n\tdictWord{8, 0, 880},\n\tdictWord{10, 0, 869},\n\tdictWord{138, 0, 913},\n\tdictWord{7, 0, 1513},\n\tdictWord{5, 10, 54},\n\tdictWord{6, 11, 254},\n\tdictWord{9, 11, 109},\n\tdictWord{138, 11, 103},\n\tdictWord{135, 0, 981},\n\tdictWord{133, 11, 729},\n\tdictWord{132, 10, 744},\n\tdictWord{132, 0, 434},\n\tdictWord{134, 0, 550},\n\tdictWord{7, 0, 930},\n\tdictWord{10, 0, 476},\n\tdictWord{13, 0, 452},\n\tdictWord{19, 0, 104},\n\tdictWord{6, 11, 1630},\n\tdictWord{10, 10, 402},\n\tdictWord{146, 10, 55},\n\tdictWord{5, 0, 553},\n\tdictWord{138, 0, 824},\n\tdictWord{136, 0, 452},\n\tdictWord{8, 0, 151},\n\tdictWord{137, 10, 624},\n\tdictWord{132, 10, 572},\n\tdictWord{132, 0, 772},\n\tdictWord{133, 11, 671},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t292,\n\t},\n\tdictWord{138, 0, 135},\n\tdictWord{132, 11, 889},\n\tdictWord{140, 11, 207},\n\tdictWord{9, 0, 504},\n\tdictWord{6, 10, 43},\n\tdictWord{7, 10, 38},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t248,\n\t},\n\tdictWord{138, 10, 513},\n\tdictWord{6, 0, 1089},\n\tdictWord{135, 11, 1910},\n\tdictWord{4, 11, 627},\n\tdictWord{133, 11, 775},\n\tdictWord{135, 0, 783},\n\tdictWord{133, 10, 766},\n\tdictWord{133, 10, 363},\n\tdictWord{7, 0, 387},\n\tdictWord{135, 11, 387},\n\tdictWord{7, 0, 393},\n\tdictWord{10, 0, 603},\n\tdictWord{11, 0, 206},\n\tdictWord{7, 11, 202},\n\tdictWord{11, 11, 362},\n\tdictWord{11, 11, 948},\n\tdictWord{140, 11, 388},\n\tdictWord{6, 11, 507},\n\tdictWord{7, 11, 451},\n\tdictWord{8, 11, 389},\n\tdictWord{12, 11, 490},\n\tdictWord{13, 11, 16},\n\tdictWord{13, 11, 215},\n\tdictWord{13, 11, 351},\n\tdictWord{18, 11, 132},\n\tdictWord{147, 11, 125},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t912,\n\t},\n\tdictWord{9, 0, 232},\n\tdictWord{135, 11, 841},\n\tdictWord{6, 10, 258},\n\tdictWord{140, 10, 409},\n\tdictWord{5, 10, 249},\n\tdictWord{148, 10, 82},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t566,\n\t},\n\tdictWord{6, 0, 977},\n\tdictWord{135, 11, 1214},\n\tdictWord{7, 0, 1973},\n\tdictWord{136, 0, 716},\n\tdictWord{135, 0, 98},\n\tdictWord{133, 0, 733},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t912,\n\t},\n\tdictWord{134, 11, 1695},\n\tdictWord{5, 10, 393},\n\tdictWord{6, 10, 378},\n\tdictWord{7, 10, 1981},\n\tdictWord{9, 10, 32},\n\tdictWord{9, 10, 591},\n\tdictWord{10, 10, 685},\n\tdictWord{10, 10, 741},\n\tdictWord{142, 10, 382},\n\tdictWord{133, 10, 788},\n\tdictWord{10, 0, 19},\n\tdictWord{11, 0, 911},\n\tdictWord{7, 10, 1968},\n\tdictWord{141, 10, 509},\n\tdictWord{5, 0, 668},\n\tdictWord{5, 11, 236},\n\tdictWord{6, 11, 572},\n\tdictWord{8, 11, 492},\n\tdictWord{11, 11, 618},\n\tdictWord{144, 11, 56},\n\tdictWord{135, 11, 1789},\n\tdictWord{4, 0, 360},\n\tdictWord{5, 0, 635},\n\tdictWord{5, 0, 700},\n\tdictWord{5, 10, 58},\n\tdictWord{5, 10, 171},\n\tdictWord{5, 10, 683},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t291,\n\t},\n\tdictWord{6, 10, 566},\n\tdictWord{7, 10, 1650},\n\tdictWord{11, 10, 523},\n\tdictWord{12, 10, 273},\n\tdictWord{12, 10, 303},\n\tdictWord{15, 10, 39},\n\tdictWord{143, 10, 111},\n\tdictWord{133, 0, 901},\n\tdictWord{134, 10, 589},\n\tdictWord{5, 11, 190},\n\tdictWord{136, 11, 318},\n\tdictWord{140, 0, 656},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t726,\n\t},\n\tdictWord{152, 0, 9},\n\tdictWord{4, 10, 917},\n\tdictWord{133, 10, 1005},\n\tdictWord{135, 10, 1598},\n\tdictWord{134, 11, 491},\n\tdictWord{4, 10, 919},\n\tdictWord{133, 11, 434},\n\tdictWord{137, 0, 72},\n\tdictWord{6, 0, 1269},\n\tdictWord{6, 0, 1566},\n\tdictWord{134, 0, 1621},\n\tdictWord{9, 0, 463},\n\tdictWord{10, 0, 595},\n\tdictWord{4, 10, 255},\n\tdictWord{5, 10, 302},\n\tdictWord{6, 10, 132},\n\tdictWord{7, 10, 128},\n\tdictWord{7, 10, 283},\n\tdictWord{7, 10, 1299},\n\tdictWord{10, 10, 52},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t514,\n\t},\n\tdictWord{11, 10, 925},\n\tdictWord{13, 10, 92},\n\tdictWord{142, 10, 309},\n\tdictWord{135, 0, 1454},\n\tdictWord{134, 0, 1287},\n\tdictWord{11, 0, 600},\n\tdictWord{13, 0, 245},\n\tdictWord{137, 10, 173},\n\tdictWord{136, 0, 989},\n\tdictWord{7, 0, 164},\n\tdictWord{7, 0, 1571},\n\tdictWord{9, 0, 107},\n\tdictWord{140, 0, 225},\n\tdictWord{6, 0, 1061},\n\tdictWord{141, 10, 442},\n\tdictWord{4, 0, 27},\n\tdictWord{5, 0, 484},\n\tdictWord{5, 0, 510},\n\tdictWord{6, 0, 434},\n\tdictWord{7, 0, 1000},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1098,\n\t},\n\tdictWord{136, 0, 2},\n\tdictWord{7, 11, 85},\n\tdictWord{7, 11, 247},\n\tdictWord{8, 11, 585},\n\tdictWord{10, 11, 163},\n\tdictWord{138, 11, 316},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t103,\n\t},\n\tdictWord{142, 11, 0},\n\tdictWord{134, 0, 1127},\n\tdictWord{4, 0, 460},\n\tdictWord{134, 0, 852},\n\tdictWord{134, 10, 210},\n\tdictWord{4, 0, 932},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t891,\n\t},\n\tdictWord{6, 0, 588},\n\tdictWord{147, 11, 83},\n\tdictWord{8, 0, 625},\n\tdictWord{4, 10, 284},\n\tdictWord{134, 10, 223},\n\tdictWord{134, 0, 76},\n\tdictWord{8, 0, 92},\n\tdictWord{137, 0, 221},\n\tdictWord{4, 11, 124},\n\tdictWord{10, 11, 457},\n\tdictWord{11, 11, 121},\n\tdictWord{11, 11, 169},\n\tdictWord{11, 11, 422},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t870,\n\t},\n\tdictWord{12, 11, 214},\n\tdictWord{13, 11, 389},\n\tdictWord{14, 11, 187},\n\tdictWord{143, 11, 77},\n\tdictWord{9, 11, 618},\n\tdictWord{138, 11, 482},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t218,\n\t},\n\tdictWord{7, 10, 526},\n\tdictWord{143, 10, 137},\n\tdictWord{13, 0, 9},\n\tdictWord{14, 0, 104},\n\tdictWord{14, 0, 311},\n\tdictWord{4, 10, 270},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t192,\n\t},\n\tdictWord{6, 10, 332},\n\tdictWord{135, 10, 1322},\n\tdictWord{140, 10, 661},\n\tdictWord{135, 11, 1193},\n\tdictWord{6, 11, 107},\n\tdictWord{7, 11, 638},\n\tdictWord{7, 11, 1632},\n\tdictWord{137, 11, 396},\n\tdictWord{132, 0, 763},\n\tdictWord{4, 0, 622},\n\tdictWord{5, 11, 370},\n\tdictWord{134, 11, 1756},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t253,\n\t},\n\tdictWord{135, 0, 546},\n\tdictWord{9, 0, 73},\n\tdictWord{10, 0, 110},\n\tdictWord{14, 0, 185},\n\tdictWord{17, 0, 119},\n\tdictWord{133, 11, 204},\n\tdictWord{7, 0, 624},\n\tdictWord{7, 0, 916},\n\tdictWord{10, 0, 256},\n\tdictWord{139, 0, 87},\n\tdictWord{7, 10, 379},\n\tdictWord{8, 10, 481},\n\tdictWord{137, 10, 377},\n\tdictWord{5, 0, 212},\n\tdictWord{12, 0, 35},\n\tdictWord{13, 0, 382},\n\tdictWord{5, 11, 970},\n\tdictWord{134, 11, 1706},\n\tdictWord{9, 0, 746},\n\tdictWord{5, 10, 1003},\n\tdictWord{134, 10, 149},\n\tdictWord{10, 0, 150},\n\tdictWord{11, 0, 849},\n\tdictWord{13, 0, 330},\n\tdictWord{8, 10, 262},\n\tdictWord{9, 10, 627},\n\tdictWord{11, 10, 214},\n\tdictWord{11, 10, 404},\n\tdictWord{11, 10, 457},\n\tdictWord{11, 10, 780},\n\tdictWord{11, 10, 913},\n\tdictWord{13, 10, 401},\n\tdictWord{142, 10, 200},\n\tdictWord{134, 0, 1466},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t3,\n\t},\n\tdictWord{6, 0, 1299},\n\tdictWord{4, 11, 35},\n\tdictWord{5, 11, 121},\n\tdictWord{5, 11, 483},\n\tdictWord{5, 11, 685},\n\tdictWord{6, 11, 489},\n\tdictWord{7, 11, 1204},\n\tdictWord{136, 11, 394},\n\tdictWord{135, 10, 742},\n\tdictWord{4, 10, 142},\n\tdictWord{136, 10, 304},\n\tdictWord{4, 11, 921},\n\tdictWord{133, 11, 1007},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1518,\n\t},\n\tdictWord{6, 0, 1229},\n\tdictWord{135, 0, 1175},\n\tdictWord{133, 0, 816},\n\tdictWord{12, 0, 159},\n\tdictWord{4, 10, 471},\n\tdictWord{4, 11, 712},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t51,\n\t},\n\tdictWord{6, 10, 602},\n\tdictWord{7, 10, 925},\n\tdictWord{8, 10, 484},\n\tdictWord{138, 10, 195},\n\tdictWord{134, 11, 1629},\n\tdictWord{5, 0, 869},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t968,\n\t},\n\tdictWord{6, 0, 1626},\n\tdictWord{8, 0, 734},\n\tdictWord{136, 0, 784},\n\tdictWord{4, 0, 542},\n\tdictWord{6, 0, 1716},\n\tdictWord{6, 0, 1727},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1082,\n\t},\n\tdictWord{7, 0, 1545},\n\tdictWord{8, 0, 56},\n\tdictWord{8, 0, 118},\n\tdictWord{8, 0, 412},\n\tdictWord{8, 0, 564},\n\tdictWord{9, 0, 888},\n\tdictWord{9, 0, 908},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t50,\n\t},\n\tdictWord{10, 0, 423},\n\tdictWord{11, 0, 685},\n\tdictWord{11, 0, 697},\n\tdictWord{11, 0, 933},\n\tdictWord{12, 0, 299},\n\tdictWord{13, 0, 126},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t136,\n\t},\n\tdictWord{13, 0, 170},\n\tdictWord{13, 0, 190},\n\tdictWord{136, 10, 688},\n\tdictWord{132, 10, 697},\n\tdictWord{4, 0, 232},\n\tdictWord{9, 0, 202},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t474,\n\t},\n\tdictWord{140, 0, 433},\n\tdictWord{136, 0, 212},\n\tdictWord{6, 0, 108},\n\tdictWord{7, 0, 1003},\n\tdictWord{7, 0, 1181},\n\tdictWord{8, 0, 111},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t343,\n\t},\n\tdictWord{5, 10, 221},\n\tdictWord{135, 11, 1255},\n\tdictWord{133, 11, 485},\n\tdictWord{134, 0, 1712},\n\tdictWord{142, 0, 216},\n\tdictWord{5, 0, 643},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t516,\n\t},\n\tdictWord{4, 11, 285},\n\tdictWord{5, 11, 317},\n\tdictWord{6, 11, 301},\n\tdictWord{7, 11, 7},\n\tdictWord{8, 11, 153},\n\tdictWord{10, 11, 766},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t468,\n\t},\n\tdictWord{12, 11, 467},\n\tdictWord{141, 11, 143},\n\tdictWord{4, 0, 133},\n\tdictWord{7, 0, 711},\n\tdictWord{7, 0, 1298},\n\tdictWord{135, 0, 1585},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t650,\n\t},\n\tdictWord{135, 11, 512},\n\tdictWord{6, 0, 99},\n\tdictWord{7, 0, 1808},\n\tdictWord{145, 0, 57},\n\tdictWord{6, 0, 246},\n\tdictWord{6, 0, 574},\n\tdictWord{7, 0, 428},\n\tdictWord{9, 0, 793},\n\tdictWord{10, 0, 669},\n\tdictWord{11, 0, 485},\n\tdictWord{11, 0, 840},\n\tdictWord{12, 0, 300},\n\tdictWord{14, 0, 250},\n\tdictWord{145, 0, 55},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t132,\n\t},\n\tdictWord{5, 10, 69},\n\tdictWord{135, 10, 1242},\n\tdictWord{136, 0, 1023},\n\tdictWord{7, 0, 302},\n\tdictWord{132, 10, 111},\n\tdictWord{135, 0, 1871},\n\tdictWord{132, 0, 728},\n\tdictWord{9, 0, 252},\n\tdictWord{132, 10, 767},\n\tdictWord{6, 0, 461},\n\tdictWord{7, 0, 1590},\n\tdictWord{7, 10, 1416},\n\tdictWord{7, 10, 2005},\n\tdictWord{8, 10, 131},\n\tdictWord{8, 10, 466},\n\tdictWord{9, 10, 672},\n\tdictWord{13, 10, 252},\n\tdictWord{148, 10, 103},\n\tdictWord{6, 0, 323},\n\tdictWord{135, 0, 1564},\n\tdictWord{7, 0, 461},\n\tdictWord{136, 0, 775},\n\tdictWord{6, 10, 44},\n\tdictWord{136, 10, 368},\n\tdictWord{139, 0, 172},\n\tdictWord{132, 0, 464},\n\tdictWord{4, 10, 570},\n\tdictWord{133, 10, 120},\n\tdictWord{137, 11, 269},\n\tdictWord{6, 10, 227},\n\tdictWord{135, 10, 1589},\n\tdictWord{6, 11, 1719},\n\tdictWord{6, 11, 1735},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t2016,\n\t},\n\tdictWord{7, 11, 2020},\n\tdictWord{8, 11, 837},\n\tdictWord{137, 11, 852},\n\tdictWord{7, 0, 727},\n\tdictWord{146, 0, 73},\n\tdictWord{132, 0, 1023},\n\tdictWord{135, 11, 852},\n\tdictWord{135, 10, 1529},\n\tdictWord{136, 0, 577},\n\tdictWord{138, 11, 568},\n\tdictWord{134, 0, 1037},\n\tdictWord{8, 11, 67},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t419,\n\t},\n\tdictWord{4, 0, 413},\n\tdictWord{5, 0, 677},\n\tdictWord{8, 0, 432},\n\tdictWord{140, 0, 280},\n\tdictWord{10, 0, 600},\n\tdictWord{6, 10, 1667},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t967,\n\t},\n\tdictWord{7, 10, 2036},\n\tdictWord{141, 11, 11},\n\tdictWord{6, 10, 511},\n\tdictWord{140, 10, 132},\n\tdictWord{6, 0, 799},\n\tdictWord{5, 10, 568},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t138,\n\t},\n\tdictWord{135, 10, 1293},\n\tdictWord{8, 0, 159},\n\tdictWord{4, 10, 565},\n\tdictWord{136, 10, 827},\n\tdictWord{7, 0, 646},\n\tdictWord{7, 0, 1730},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t446,\n\t},\n\tdictWord{141, 0, 178},\n\tdictWord{4, 10, 922},\n\tdictWord{133, 10, 1023},\n\tdictWord{135, 11, 11},\n\tdictWord{132, 0, 395},\n\tdictWord{11, 0, 145},\n\tdictWord{135, 10, 1002},\n\tdictWord{9, 0, 174},\n\tdictWord{10, 0, 164},\n\tdictWord{11, 0, 440},\n\tdictWord{11, 0, 514},\n\tdictWord{11, 0, 841},\n\tdictWord{15, 0, 98},\n\tdictWord{149, 0, 20},\n\tdictWord{134, 0, 426},\n\tdictWord{10, 0, 608},\n\tdictWord{139, 0, 1002},\n\tdictWord{7, 11, 320},\n\tdictWord{8, 11, 51},\n\tdictWord{12, 11, 481},\n\tdictWord{12, 11, 570},\n\tdictWord{148, 11, 106},\n\tdictWord{9, 0, 977},\n\tdictWord{9, 0, 983},\n\tdictWord{132, 11, 445},\n\tdictWord{138, 0, 250},\n\tdictWord{139, 0, 100},\n\tdictWord{6, 0, 1982},\n\tdictWord{136, 10, 402},\n\tdictWord{133, 11, 239},\n\tdictWord{4, 10, 716},\n\tdictWord{141, 10, 31},\n\tdictWord{5, 0, 476},\n\tdictWord{7, 11, 83},\n\tdictWord{7, 11, 1990},\n\tdictWord{8, 11, 130},\n\tdictWord{139, 11, 720},\n\tdictWord{8, 10, 691},\n\tdictWord{136, 10, 731},\n\tdictWord{5, 11, 123},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t530,\n\t},\n\tdictWord{7, 11, 348},\n\tdictWord{135, 11, 1419},\n\tdictWord{5, 0, 76},\n\tdictWord{6, 0, 458},\n\tdictWord{6, 0, 497},\n\tdictWord{7, 0, 868},\n\tdictWord{9, 0, 658},\n\tdictWord{10, 0, 594},\n\tdictWord{11, 0, 173},\n\tdictWord{11, 0, 566},\n\tdictWord{12, 0, 20},\n\tdictWord{12, 0, 338},\n\tdictWord{141, 0, 200},\n\tdictWord{9, 11, 139},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t399,\n\t},\n\tdictWord{11, 11, 469},\n\tdictWord{12, 11, 634},\n\tdictWord{141, 11, 223},\n\tdictWord{9, 10, 840},\n\tdictWord{138, 10, 803},\n\tdictWord{133, 10, 847},\n\tdictWord{11, 11, 223},\n\tdictWord{140, 11, 168},\n\tdictWord{132, 11, 210},\n\tdictWord{8, 0, 447},\n\tdictWord{9, 10, 53},\n\tdictWord{9, 10, 268},\n\tdictWord{9, 10, 901},\n\tdictWord{10, 10, 518},\n\tdictWord{10, 10, 829},\n\tdictWord{11, 10, 188},\n\tdictWord{13, 10, 74},\n\tdictWord{14, 10, 46},\n\tdictWord{15, 10, 17},\n\tdictWord{15, 10, 33},\n\tdictWord{17, 10, 40},\n\tdictWord{18, 10, 36},\n\tdictWord{19, 10, 20},\n\tdictWord{22, 10, 1},\n\tdictWord{152, 10, 2},\n\tdictWord{4, 0, 526},\n\tdictWord{7, 0, 1029},\n\tdictWord{135, 0, 1054},\n\tdictWord{19, 11, 59},\n\tdictWord{150, 11, 2},\n\tdictWord{4, 0, 636},\n\tdictWord{6, 0, 1875},\n\tdictWord{6, 0, 1920},\n\tdictWord{9, 0, 999},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t807,\n\t},\n\tdictWord{12, 0, 825},\n\tdictWord{15, 0, 179},\n\tdictWord{15, 0, 190},\n\tdictWord{18, 0, 182},\n\tdictWord{136, 10, 532},\n\tdictWord{6, 0, 1699},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t660,\n\t},\n\tdictWord{7, 0, 1124},\n\tdictWord{17, 0, 31},\n\tdictWord{19, 0, 22},\n\tdictWord{151, 0, 14},\n\tdictWord{135, 10, 681},\n\tdictWord{132, 11, 430},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t677,\n\t},\n\tdictWord{4, 10, 684},\n\tdictWord{136, 10, 384},\n\tdictWord{132, 11, 756},\n\tdictWord{133, 11, 213},\n\tdictWord{7, 0, 188},\n\tdictWord{7, 10, 110},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t290,\n\t},\n\tdictWord{8, 10, 591},\n\tdictWord{9, 10, 382},\n\tdictWord{9, 10, 649},\n\tdictWord{11, 10, 71},\n\tdictWord{11, 10, 155},\n\tdictWord{11, 10, 313},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t5,\n\t},\n\tdictWord{13, 10, 325},\n\tdictWord{142, 10, 287},\n\tdictWord{7, 10, 360},\n\tdictWord{7, 10, 425},\n\tdictWord{9, 10, 66},\n\tdictWord{9, 10, 278},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t644,\n\t},\n\tdictWord{142, 11, 164},\n\tdictWord{4, 0, 279},\n\tdictWord{7, 0, 301},\n\tdictWord{137, 0, 362},\n\tdictWord{134, 11, 586},\n\tdictWord{135, 0, 1743},\n\tdictWord{4, 0, 178},\n\tdictWord{133, 0, 399},\n\tdictWord{4, 10, 900},\n\tdictWord{133, 10, 861},\n\tdictWord{5, 10, 254},\n\tdictWord{7, 10, 985},\n\tdictWord{136, 10, 73},\n\tdictWord{133, 11, 108},\n\tdictWord{7, 10, 1959},\n\tdictWord{136, 10, 683},\n\tdictWord{133, 11, 219},\n\tdictWord{4, 11, 193},\n\tdictWord{5, 11, 916},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t364,\n\t},\n\tdictWord{10, 11, 398},\n\tdictWord{10, 11, 726},\n\tdictWord{11, 11, 317},\n\tdictWord{11, 11, 626},\n\tdictWord{12, 11, 142},\n\tdictWord{12, 11, 288},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t678,\n\t},\n\tdictWord{13, 11, 313},\n\tdictWord{15, 11, 113},\n\tdictWord{18, 11, 114},\n\tdictWord{21, 11, 30},\n\tdictWord{150, 11, 53},\n\tdictWord{6, 11, 241},\n\tdictWord{7, 11, 907},\n\tdictWord{8, 11, 832},\n\tdictWord{9, 11, 342},\n\tdictWord{10, 11, 729},\n\tdictWord{11, 11, 284},\n\tdictWord{11, 11, 445},\n\tdictWord{11, 11, 651},\n\tdictWord{11, 11, 863},\n\tdictWord{13, 11, 398},\n\tdictWord{146, 11, 99},\n\tdictWord{132, 0, 872},\n\tdictWord{134, 0, 831},\n\tdictWord{134, 0, 1692},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t202,\n\t},\n\tdictWord{6, 0, 1006},\n\tdictWord{9, 0, 832},\n\tdictWord{10, 0, 636},\n\tdictWord{11, 0, 208},\n\tdictWord{12, 0, 360},\n\tdictWord{17, 0, 118},\n\tdictWord{18, 0, 27},\n\tdictWord{20, 0, 67},\n\tdictWord{137, 11, 734},\n\tdictWord{132, 10, 725},\n\tdictWord{7, 11, 993},\n\tdictWord{138, 11, 666},\n\tdictWord{134, 0, 1954},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t196,\n\t},\n\tdictWord{7, 0, 872},\n\tdictWord{10, 0, 516},\n\tdictWord{139, 0, 167},\n\tdictWord{133, 10, 831},\n\tdictWord{4, 11, 562},\n\tdictWord{9, 11, 254},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t879,\n\t},\n\tdictWord{137, 0, 313},\n\tdictWord{4, 0, 224},\n\tdictWord{132, 11, 786},\n\tdictWord{11, 0, 24},\n\tdictWord{12, 0, 170},\n\tdictWord{136, 10, 723},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t546,\n\t},\n\tdictWord{7, 0, 35},\n\tdictWord{8, 0, 11},\n\tdictWord{8, 0, 12},\n\tdictWord{9, 0, 315},\n\tdictWord{9, 0, 533},\n\tdictWord{10, 0, 802},\n\tdictWord{11, 0, 166},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t525,\n\t},\n\tdictWord{142, 0, 243},\n\tdictWord{7, 0, 1937},\n\tdictWord{13, 10, 80},\n\tdictWord{13, 10, 437},\n\tdictWord{145, 10, 74},\n\tdictWord{5, 0, 241},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t242,\n\t},\n\tdictWord{9, 0, 451},\n\tdictWord{10, 0, 667},\n\tdictWord{11, 0, 598},\n\tdictWord{140, 0, 429},\n\tdictWord{150, 0, 46},\n\tdictWord{6, 0, 1273},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t830,\n\t},\n\tdictWord{5, 10, 848},\n\tdictWord{6, 10, 66},\n\tdictWord{136, 10, 764},\n\tdictWord{6, 0, 825},\n\tdictWord{134, 0, 993},\n\tdictWord{4, 0, 1006},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t327,\n\t},\n\tdictWord{13, 0, 271},\n\tdictWord{4, 10, 36},\n\tdictWord{7, 10, 1387},\n\tdictWord{139, 10, 755},\n\tdictWord{134, 0, 1023},\n\tdictWord{135, 0, 1580},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t366,\n\t},\n\tdictWord{137, 0, 516},\n\tdictWord{132, 10, 887},\n\tdictWord{6, 0, 1736},\n\tdictWord{135, 0, 1891},\n\tdictWord{6, 11, 216},\n\tdictWord{7, 11, 901},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1343,\n\t},\n\tdictWord{136, 11, 493},\n\tdictWord{6, 10, 165},\n\tdictWord{138, 10, 388},\n\tdictWord{7, 11, 341},\n\tdictWord{139, 11, 219},\n\tdictWord{4, 10, 719},\n\tdictWord{135, 10, 155},\n\tdictWord{134, 0, 1935},\n\tdictWord{132, 0, 826},\n\tdictWord{6, 0, 331},\n\tdictWord{6, 0, 1605},\n\tdictWord{8, 0, 623},\n\tdictWord{11, 0, 139},\n\tdictWord{139, 0, 171},\n\tdictWord{135, 11, 1734},\n\tdictWord{10, 11, 115},\n\tdictWord{11, 11, 420},\n\tdictWord{12, 11, 154},\n\tdictWord{13, 11, 404},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t346,\n\t},\n\tdictWord{15, 11, 54},\n\tdictWord{143, 11, 112},\n\tdictWord{7, 0, 288},\n\tdictWord{4, 10, 353},\n\tdictWord{6, 10, 146},\n\tdictWord{6, 10, 1789},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t990,\n\t},\n\tdictWord{7, 10, 1348},\n\tdictWord{9, 10, 665},\n\tdictWord{9, 10, 898},\n\tdictWord{11, 10, 893},\n\tdictWord{142, 10, 212},\n\tdictWord{6, 0, 916},\n\tdictWord{134, 0, 1592},\n\tdictWord{7, 0, 1888},\n\tdictWord{4, 10, 45},\n\tdictWord{135, 10, 1257},\n\tdictWord{5, 11, 1011},\n\tdictWord{136, 11, 701},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t596,\n\t},\n\tdictWord{4, 11, 54},\n\tdictWord{5, 11, 666},\n\tdictWord{7, 11, 1039},\n\tdictWord{7, 11, 1130},\n\tdictWord{9, 11, 195},\n\tdictWord{138, 11, 302},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1471,\n\t},\n\tdictWord{134, 0, 1570},\n\tdictWord{132, 0, 394},\n\tdictWord{140, 10, 65},\n\tdictWord{136, 10, 816},\n\tdictWord{135, 0, 1931},\n\tdictWord{7, 0, 574},\n\tdictWord{135, 0, 1719},\n\tdictWord{134, 11, 467},\n\tdictWord{132, 0, 658},\n\tdictWord{9, 0, 781},\n\tdictWord{10, 0, 144},\n\tdictWord{11, 0, 385},\n\tdictWord{13, 0, 161},\n\tdictWord{13, 0, 228},\n\tdictWord{13, 0, 268},\n\tdictWord{20, 0, 107},\n\tdictWord{134, 11, 1669},\n\tdictWord{136, 0, 374},\n\tdictWord{135, 0, 735},\n\tdictWord{4, 0, 344},\n\tdictWord{6, 0, 498},\n\tdictWord{139, 0, 323},\n\tdictWord{7, 0, 586},\n\tdictWord{7, 0, 1063},\n\tdictWord{6, 10, 559},\n\tdictWord{134, 10, 1691},\n\tdictWord{137, 0, 155},\n\tdictWord{133, 0, 906},\n\tdictWord{7, 11, 122},\n\tdictWord{9, 11, 259},\n\tdictWord{10, 11, 84},\n\tdictWord{11, 11, 470},\n\tdictWord{12, 11, 541},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t379,\n\t},\n\tdictWord{134, 0, 1139},\n\tdictWord{10, 0, 108},\n\tdictWord{139, 0, 116},\n\tdictWord{134, 10, 456},\n\tdictWord{133, 10, 925},\n\tdictWord{5, 11, 82},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t131,\n\t},\n\tdictWord{7, 11, 1755},\n\tdictWord{8, 11, 31},\n\tdictWord{9, 11, 168},\n\tdictWord{9, 11, 764},\n\tdictWord{139, 11, 869},\n\tdictWord{134, 11, 605},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t278,\n\t},\n\tdictWord{137, 11, 68},\n\tdictWord{4, 11, 163},\n\tdictWord{5, 11, 201},\n\tdictWord{5, 11, 307},\n\tdictWord{5, 11, 310},\n\tdictWord{6, 11, 335},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t284,\n\t},\n\tdictWord{136, 11, 165},\n\tdictWord{135, 11, 1660},\n\tdictWord{6, 11, 33},\n\tdictWord{135, 11, 1244},\n\tdictWord{4, 0, 616},\n\tdictWord{136, 11, 483},\n\tdictWord{8, 0, 857},\n\tdictWord{8, 0, 902},\n\tdictWord{8, 0, 910},\n\tdictWord{10, 0, 879},\n\tdictWord{12, 0, 726},\n\tdictWord{4, 11, 199},\n\tdictWord{139, 11, 34},\n\tdictWord{136, 0, 692},\n\tdictWord{6, 10, 193},\n\tdictWord{7, 10, 240},\n\tdictWord{7, 10, 1682},\n\tdictWord{10, 10, 51},\n\tdictWord{10, 10, 640},\n\tdictWord{11, 10, 410},\n\tdictWord{13, 10, 82},\n\tdictWord{14, 10, 247},\n\tdictWord{14, 10, 331},\n\tdictWord{142, 10, 377},\n\tdictWord{6, 0, 823},\n\tdictWord{134, 0, 983},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t411,\n\t},\n\tdictWord{132, 0, 305},\n\tdictWord{136, 10, 633},\n\tdictWord{138, 11, 203},\n\tdictWord{134, 0, 681},\n\tdictWord{6, 11, 326},\n\tdictWord{7, 11, 677},\n\tdictWord{137, 11, 425},\n\tdictWord{5, 0, 214},\n\tdictWord{7, 0, 603},\n\tdictWord{8, 0, 611},\n\tdictWord{9, 0, 686},\n\tdictWord{10, 0, 88},\n\tdictWord{11, 0, 459},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t496,\n\t},\n\tdictWord{12, 0, 463},\n\tdictWord{12, 0, 590},\n\tdictWord{141, 0, 0},\n\tdictWord{136, 0, 1004},\n\tdictWord{142, 0, 23},\n\tdictWord{134, 0, 1703},\n\tdictWord{\n\t\t147,\n\t\t11,\n\t\t8,\n\t},\n\tdictWord{145, 11, 56},\n\tdictWord{135, 0, 1443},\n\tdictWord{4, 10, 237},\n\tdictWord{135, 10, 514},\n\tdictWord{6, 0, 714},\n\tdictWord{145, 0, 19},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t358,\n\t},\n\tdictWord{7, 11, 473},\n\tdictWord{7, 11, 1184},\n\tdictWord{10, 11, 662},\n\tdictWord{13, 11, 212},\n\tdictWord{13, 11, 304},\n\tdictWord{13, 11, 333},\n\tdictWord{145, 11, 98},\n\tdictWord{4, 0, 737},\n\tdictWord{10, 0, 98},\n\tdictWord{11, 0, 294},\n\tdictWord{12, 0, 60},\n\tdictWord{12, 0, 437},\n\tdictWord{13, 0, 64},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t380,\n\t},\n\tdictWord{142, 0, 430},\n\tdictWord{6, 10, 392},\n\tdictWord{7, 10, 65},\n\tdictWord{135, 10, 2019},\n\tdictWord{6, 0, 1758},\n\tdictWord{8, 0, 520},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t345,\n\t},\n\tdictWord{9, 0, 403},\n\tdictWord{142, 0, 350},\n\tdictWord{5, 0, 47},\n\tdictWord{10, 0, 242},\n\tdictWord{138, 0, 579},\n\tdictWord{5, 0, 139},\n\tdictWord{7, 0, 1168},\n\tdictWord{138, 0, 539},\n\tdictWord{134, 0, 1459},\n\tdictWord{13, 0, 388},\n\tdictWord{141, 11, 388},\n\tdictWord{134, 0, 253},\n\tdictWord{7, 10, 1260},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1790,\n\t},\n\tdictWord{10, 0, 252},\n\tdictWord{9, 10, 222},\n\tdictWord{139, 10, 900},\n\tdictWord{140, 0, 745},\n\tdictWord{133, 11, 946},\n\tdictWord{4, 0, 107},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t613,\n\t},\n\tdictWord{8, 0, 439},\n\tdictWord{8, 0, 504},\n\tdictWord{9, 0, 501},\n\tdictWord{10, 0, 383},\n\tdictWord{139, 0, 477},\n\tdictWord{135, 11, 1485},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t871,\n\t},\n\tdictWord{7, 11, 411},\n\tdictWord{7, 11, 590},\n\tdictWord{8, 11, 631},\n\tdictWord{9, 11, 323},\n\tdictWord{10, 11, 355},\n\tdictWord{11, 11, 491},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t143,\n\t},\n\tdictWord{12, 11, 402},\n\tdictWord{13, 11, 73},\n\tdictWord{14, 11, 408},\n\tdictWord{15, 11, 107},\n\tdictWord{146, 11, 71},\n\tdictWord{132, 0, 229},\n\tdictWord{132, 0, 903},\n\tdictWord{140, 0, 71},\n\tdictWord{133, 0, 549},\n\tdictWord{4, 0, 47},\n\tdictWord{6, 0, 373},\n\tdictWord{7, 0, 452},\n\tdictWord{7, 0, 543},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1828,\n\t},\n\tdictWord{7, 0, 1856},\n\tdictWord{9, 0, 6},\n\tdictWord{11, 0, 257},\n\tdictWord{139, 0, 391},\n\tdictWord{7, 11, 1467},\n\tdictWord{8, 11, 328},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t544,\n\t},\n\tdictWord{11, 11, 955},\n\tdictWord{13, 11, 320},\n\tdictWord{145, 11, 83},\n\tdictWord{5, 0, 980},\n\tdictWord{134, 0, 1754},\n\tdictWord{136, 0, 865},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t705,\n\t},\n\tdictWord{137, 0, 606},\n\tdictWord{7, 0, 161},\n\tdictWord{8, 10, 201},\n\tdictWord{136, 10, 605},\n\tdictWord{143, 11, 35},\n\tdictWord{5, 11, 835},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t483,\n\t},\n\tdictWord{140, 10, 224},\n\tdictWord{7, 0, 536},\n\tdictWord{7, 0, 1331},\n\tdictWord{136, 0, 143},\n\tdictWord{134, 0, 1388},\n\tdictWord{5, 0, 724},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t305,\n\t},\n\tdictWord{11, 0, 151},\n\tdictWord{12, 0, 33},\n\tdictWord{12, 0, 121},\n\tdictWord{12, 0, 381},\n\tdictWord{17, 0, 3},\n\tdictWord{17, 0, 27},\n\tdictWord{17, 0, 78},\n\tdictWord{18, 0, 18},\n\tdictWord{19, 0, 54},\n\tdictWord{149, 0, 5},\n\tdictWord{4, 10, 523},\n\tdictWord{133, 10, 638},\n\tdictWord{5, 0, 19},\n\tdictWord{134, 0, 533},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t395,\n\t},\n\tdictWord{5, 0, 951},\n\tdictWord{134, 0, 1776},\n\tdictWord{135, 0, 1908},\n\tdictWord{132, 0, 846},\n\tdictWord{10, 0, 74},\n\tdictWord{11, 0, 663},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t210,\n\t},\n\tdictWord{13, 0, 166},\n\tdictWord{13, 0, 310},\n\tdictWord{14, 0, 373},\n\tdictWord{18, 0, 95},\n\tdictWord{19, 0, 43},\n\tdictWord{6, 10, 242},\n\tdictWord{7, 10, 227},\n\tdictWord{7, 10, 1581},\n\tdictWord{8, 10, 104},\n\tdictWord{9, 10, 113},\n\tdictWord{9, 10, 220},\n\tdictWord{9, 10, 427},\n\tdictWord{10, 10, 239},\n\tdictWord{11, 10, 579},\n\tdictWord{11, 10, 1023},\n\tdictWord{13, 10, 4},\n\tdictWord{13, 10, 204},\n\tdictWord{13, 10, 316},\n\tdictWord{148, 10, 86},\n\tdictWord{9, 11, 716},\n\tdictWord{11, 11, 108},\n\tdictWord{13, 11, 123},\n\tdictWord{14, 11, 252},\n\tdictWord{19, 11, 38},\n\tdictWord{21, 11, 3},\n\tdictWord{151, 11, 11},\n\tdictWord{8, 0, 372},\n\tdictWord{9, 0, 122},\n\tdictWord{138, 0, 175},\n\tdictWord{132, 11, 677},\n\tdictWord{7, 11, 1374},\n\tdictWord{136, 11, 540},\n\tdictWord{135, 10, 861},\n\tdictWord{132, 0, 695},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t497,\n\t},\n\tdictWord{9, 0, 387},\n\tdictWord{147, 0, 81},\n\tdictWord{136, 0, 937},\n\tdictWord{134, 0, 718},\n\tdictWord{7, 0, 1328},\n\tdictWord{136, 10, 494},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t331,\n\t},\n\tdictWord{6, 0, 1581},\n\tdictWord{133, 11, 747},\n\tdictWord{5, 0, 284},\n\tdictWord{6, 0, 49},\n\tdictWord{6, 0, 350},\n\tdictWord{7, 0, 1},\n\tdictWord{7, 0, 377},\n\tdictWord{7, 0, 1693},\n\tdictWord{8, 0, 18},\n\tdictWord{8, 0, 678},\n\tdictWord{9, 0, 161},\n\tdictWord{9, 0, 585},\n\tdictWord{9, 0, 671},\n\tdictWord{9, 0, 839},\n\tdictWord{11, 0, 912},\n\tdictWord{141, 0, 427},\n\tdictWord{7, 10, 1306},\n\tdictWord{8, 10, 505},\n\tdictWord{9, 10, 482},\n\tdictWord{10, 10, 126},\n\tdictWord{11, 10, 225},\n\tdictWord{12, 10, 347},\n\tdictWord{12, 10, 449},\n\tdictWord{13, 10, 19},\n\tdictWord{14, 10, 218},\n\tdictWord{142, 10, 435},\n\tdictWord{10, 10, 764},\n\tdictWord{12, 10, 120},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t39,\n\t},\n\tdictWord{145, 10, 127},\n\tdictWord{4, 0, 597},\n\tdictWord{133, 10, 268},\n\tdictWord{134, 0, 1094},\n\tdictWord{4, 0, 1008},\n\tdictWord{134, 0, 1973},\n\tdictWord{132, 0, 811},\n\tdictWord{139, 0, 908},\n\tdictWord{135, 0, 1471},\n\tdictWord{133, 11, 326},\n\tdictWord{4, 10, 384},\n\tdictWord{135, 10, 1022},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1935,\n\t},\n\tdictWord{8, 0, 324},\n\tdictWord{12, 0, 42},\n\tdictWord{4, 11, 691},\n\tdictWord{7, 11, 1935},\n\tdictWord{8, 11, 324},\n\tdictWord{9, 11, 35},\n\tdictWord{10, 11, 680},\n\tdictWord{11, 11, 364},\n\tdictWord{12, 11, 42},\n\tdictWord{13, 11, 357},\n\tdictWord{146, 11, 16},\n\tdictWord{135, 0, 2014},\n\tdictWord{7, 0, 2007},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t101,\n\t},\n\tdictWord{9, 0, 450},\n\tdictWord{10, 0, 66},\n\tdictWord{10, 0, 842},\n\tdictWord{11, 0, 536},\n\tdictWord{12, 0, 587},\n\tdictWord{6, 11, 32},\n\tdictWord{7, 11, 385},\n\tdictWord{7, 11, 757},\n\tdictWord{7, 11, 1916},\n\tdictWord{8, 11, 37},\n\tdictWord{8, 11, 94},\n\tdictWord{8, 11, 711},\n\tdictWord{9, 11, 541},\n\tdictWord{10, 11, 162},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t795,\n\t},\n\tdictWord{11, 11, 989},\n\tdictWord{11, 11, 1010},\n\tdictWord{12, 11, 14},\n\tdictWord{142, 11, 308},\n\tdictWord{139, 0, 586},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1703,\n\t},\n\tdictWord{7, 0, 1077},\n\tdictWord{11, 0, 28},\n\tdictWord{9, 10, 159},\n\tdictWord{140, 10, 603},\n\tdictWord{6, 0, 1221},\n\tdictWord{136, 10, 583},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t152,\n\t},\n\tdictWord{6, 11, 349},\n\tdictWord{6, 11, 1682},\n\tdictWord{7, 11, 1252},\n\tdictWord{8, 11, 112},\n\tdictWord{9, 11, 435},\n\tdictWord{9, 11, 668},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t290,\n\t},\n\tdictWord{10, 11, 319},\n\tdictWord{10, 11, 815},\n\tdictWord{11, 11, 180},\n\tdictWord{11, 11, 837},\n\tdictWord{12, 11, 240},\n\tdictWord{13, 11, 152},\n\tdictWord{13, 11, 219},\n\tdictWord{142, 11, 158},\n\tdictWord{139, 0, 62},\n\tdictWord{132, 10, 515},\n\tdictWord{8, 10, 632},\n\tdictWord{8, 10, 697},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t854,\n\t},\n\tdictWord{134, 0, 1766},\n\tdictWord{132, 11, 581},\n\tdictWord{6, 11, 126},\n\tdictWord{7, 11, 573},\n\tdictWord{8, 11, 397},\n\tdictWord{142, 11, 44},\n\tdictWord{\n\t\t150,\n\t\t0,\n\t\t28,\n\t},\n\tdictWord{11, 0, 670},\n\tdictWord{22, 0, 25},\n\tdictWord{4, 10, 136},\n\tdictWord{133, 10, 551},\n\tdictWord{6, 0, 1665},\n\tdictWord{7, 0, 256},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1388,\n\t},\n\tdictWord{138, 0, 499},\n\tdictWord{4, 0, 22},\n\tdictWord{5, 0, 10},\n\tdictWord{7, 0, 1576},\n\tdictWord{136, 0, 97},\n\tdictWord{134, 10, 1782},\n\tdictWord{5, 0, 481},\n\tdictWord{7, 10, 1287},\n\tdictWord{9, 10, 44},\n\tdictWord{10, 10, 552},\n\tdictWord{10, 10, 642},\n\tdictWord{11, 10, 839},\n\tdictWord{12, 10, 274},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t275,\n\t},\n\tdictWord{12, 10, 372},\n\tdictWord{13, 10, 91},\n\tdictWord{142, 10, 125},\n\tdictWord{133, 11, 926},\n\tdictWord{7, 11, 1232},\n\tdictWord{137, 11, 531},\n\tdictWord{6, 0, 134},\n\tdictWord{7, 0, 437},\n\tdictWord{7, 0, 1824},\n\tdictWord{9, 0, 37},\n\tdictWord{14, 0, 285},\n\tdictWord{142, 0, 371},\n\tdictWord{7, 0, 486},\n\tdictWord{8, 0, 155},\n\tdictWord{11, 0, 93},\n\tdictWord{140, 0, 164},\n\tdictWord{6, 0, 1391},\n\tdictWord{134, 0, 1442},\n\tdictWord{133, 11, 670},\n\tdictWord{133, 0, 591},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t147,\n\t},\n\tdictWord{7, 10, 886},\n\tdictWord{7, 11, 1957},\n\tdictWord{9, 10, 753},\n\tdictWord{138, 10, 268},\n\tdictWord{5, 0, 380},\n\tdictWord{5, 0, 650},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1173,\n\t},\n\tdictWord{136, 0, 310},\n\tdictWord{4, 0, 364},\n\tdictWord{7, 0, 1156},\n\tdictWord{7, 0, 1187},\n\tdictWord{137, 0, 409},\n\tdictWord{135, 11, 1621},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t482,\n\t},\n\tdictWord{133, 11, 506},\n\tdictWord{4, 0, 781},\n\tdictWord{6, 0, 487},\n\tdictWord{7, 0, 926},\n\tdictWord{8, 0, 263},\n\tdictWord{139, 0, 500},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t137,\n\t},\n\tdictWord{135, 11, 242},\n\tdictWord{139, 11, 96},\n\tdictWord{133, 10, 414},\n\tdictWord{135, 10, 1762},\n\tdictWord{134, 0, 804},\n\tdictWord{5, 11, 834},\n\tdictWord{7, 11, 1202},\n\tdictWord{8, 11, 14},\n\tdictWord{9, 11, 481},\n\tdictWord{137, 11, 880},\n\tdictWord{134, 10, 599},\n\tdictWord{4, 0, 94},\n\tdictWord{135, 0, 1265},\n\tdictWord{4, 0, 415},\n\tdictWord{132, 0, 417},\n\tdictWord{5, 0, 348},\n\tdictWord{6, 0, 522},\n\tdictWord{6, 10, 1749},\n\tdictWord{7, 11, 1526},\n\tdictWord{138, 11, 465},\n\tdictWord{134, 10, 1627},\n\tdictWord{132, 0, 1012},\n\tdictWord{132, 10, 488},\n\tdictWord{4, 11, 357},\n\tdictWord{6, 11, 172},\n\tdictWord{7, 11, 143},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t413,\n\t},\n\tdictWord{4, 10, 83},\n\tdictWord{4, 11, 590},\n\tdictWord{146, 11, 76},\n\tdictWord{140, 10, 676},\n\tdictWord{7, 11, 287},\n\tdictWord{8, 11, 355},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t293,\n\t},\n\tdictWord{137, 11, 743},\n\tdictWord{134, 10, 278},\n\tdictWord{6, 0, 1803},\n\tdictWord{18, 0, 165},\n\tdictWord{24, 0, 21},\n\tdictWord{5, 11, 169},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t333,\n\t},\n\tdictWord{136, 11, 45},\n\tdictWord{12, 10, 97},\n\tdictWord{140, 11, 97},\n\tdictWord{4, 0, 408},\n\tdictWord{4, 0, 741},\n\tdictWord{135, 0, 500},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t198,\n\t},\n\tdictWord{7, 10, 388},\n\tdictWord{7, 10, 644},\n\tdictWord{139, 10, 781},\n\tdictWord{4, 11, 24},\n\tdictWord{5, 11, 140},\n\tdictWord{5, 11, 185},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1500,\n\t},\n\tdictWord{11, 11, 565},\n\tdictWord{139, 11, 838},\n\tdictWord{6, 0, 1321},\n\tdictWord{9, 0, 257},\n\tdictWord{7, 10, 229},\n\tdictWord{8, 10, 59},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t190,\n\t},\n\tdictWord{10, 10, 378},\n\tdictWord{140, 10, 191},\n\tdictWord{4, 11, 334},\n\tdictWord{133, 11, 593},\n\tdictWord{135, 11, 1885},\n\tdictWord{134, 0, 1138},\n\tdictWord{4, 0, 249},\n\tdictWord{6, 0, 73},\n\tdictWord{135, 0, 177},\n\tdictWord{133, 0, 576},\n\tdictWord{142, 0, 231},\n\tdictWord{137, 0, 288},\n\tdictWord{132, 10, 660},\n\tdictWord{7, 10, 1035},\n\tdictWord{138, 10, 737},\n\tdictWord{135, 0, 1487},\n\tdictWord{6, 0, 989},\n\tdictWord{9, 0, 433},\n\tdictWord{7, 10, 690},\n\tdictWord{9, 10, 587},\n\tdictWord{140, 10, 521},\n\tdictWord{7, 0, 1264},\n\tdictWord{7, 0, 1678},\n\tdictWord{11, 0, 945},\n\tdictWord{12, 0, 341},\n\tdictWord{12, 0, 471},\n\tdictWord{140, 0, 569},\n\tdictWord{132, 11, 709},\n\tdictWord{133, 11, 897},\n\tdictWord{5, 11, 224},\n\tdictWord{13, 11, 174},\n\tdictWord{146, 11, 52},\n\tdictWord{135, 11, 1840},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1744,\n\t},\n\tdictWord{12, 0, 87},\n\tdictWord{16, 0, 74},\n\tdictWord{4, 10, 733},\n\tdictWord{9, 10, 194},\n\tdictWord{10, 10, 92},\n\tdictWord{11, 10, 198},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t84,\n\t},\n\tdictWord{141, 10, 128},\n\tdictWord{140, 0, 779},\n\tdictWord{135, 0, 538},\n\tdictWord{4, 11, 608},\n\tdictWord{133, 11, 497},\n\tdictWord{133, 0, 413},\n\tdictWord{7, 11, 1375},\n\tdictWord{7, 11, 1466},\n\tdictWord{138, 11, 331},\n\tdictWord{136, 0, 495},\n\tdictWord{6, 11, 540},\n\tdictWord{136, 11, 136},\n\tdictWord{7, 0, 54},\n\tdictWord{8, 0, 312},\n\tdictWord{10, 0, 191},\n\tdictWord{10, 0, 614},\n\tdictWord{140, 0, 567},\n\tdictWord{6, 0, 468},\n\tdictWord{7, 0, 567},\n\tdictWord{7, 0, 1478},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t530,\n\t},\n\tdictWord{14, 0, 290},\n\tdictWord{133, 11, 999},\n\tdictWord{4, 11, 299},\n\tdictWord{7, 10, 306},\n\tdictWord{135, 11, 1004},\n\tdictWord{142, 11, 296},\n\tdictWord{134, 0, 1484},\n\tdictWord{133, 10, 979},\n\tdictWord{6, 0, 609},\n\tdictWord{9, 0, 815},\n\tdictWord{12, 11, 137},\n\tdictWord{14, 11, 9},\n\tdictWord{14, 11, 24},\n\tdictWord{142, 11, 64},\n\tdictWord{133, 11, 456},\n\tdictWord{6, 0, 484},\n\tdictWord{135, 0, 822},\n\tdictWord{133, 10, 178},\n\tdictWord{136, 11, 180},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t755,\n\t},\n\tdictWord{137, 0, 900},\n\tdictWord{135, 0, 1335},\n\tdictWord{6, 0, 1724},\n\tdictWord{135, 0, 2022},\n\tdictWord{135, 11, 1139},\n\tdictWord{5, 0, 640},\n\tdictWord{132, 10, 390},\n\tdictWord{6, 0, 1831},\n\tdictWord{138, 11, 633},\n\tdictWord{135, 11, 566},\n\tdictWord{4, 11, 890},\n\tdictWord{5, 11, 805},\n\tdictWord{5, 11, 819},\n\tdictWord{5, 11, 961},\n\tdictWord{6, 11, 396},\n\tdictWord{6, 11, 1631},\n\tdictWord{6, 11, 1678},\n\tdictWord{7, 11, 1967},\n\tdictWord{7, 11, 2041},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t630,\n\t},\n\tdictWord{11, 11, 8},\n\tdictWord{11, 11, 1019},\n\tdictWord{12, 11, 176},\n\tdictWord{13, 11, 225},\n\tdictWord{14, 11, 292},\n\tdictWord{149, 11, 24},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t474,\n\t},\n\tdictWord{134, 0, 1103},\n\tdictWord{135, 0, 1504},\n\tdictWord{134, 0, 1576},\n\tdictWord{6, 0, 961},\n\tdictWord{6, 0, 1034},\n\tdictWord{140, 0, 655},\n\tdictWord{11, 11, 514},\n\tdictWord{149, 11, 20},\n\tdictWord{5, 0, 305},\n\tdictWord{135, 11, 1815},\n\tdictWord{7, 11, 1505},\n\tdictWord{10, 11, 190},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t634,\n\t},\n\tdictWord{11, 11, 792},\n\tdictWord{12, 11, 358},\n\tdictWord{140, 11, 447},\n\tdictWord{5, 11, 0},\n\tdictWord{6, 11, 536},\n\tdictWord{7, 11, 604},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t445,\n\t},\n\tdictWord{145, 11, 126},\n\tdictWord{7, 0, 1236},\n\tdictWord{133, 10, 105},\n\tdictWord{4, 0, 480},\n\tdictWord{6, 0, 217},\n\tdictWord{6, 0, 302},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1642,\n\t},\n\tdictWord{7, 0, 130},\n\tdictWord{7, 0, 837},\n\tdictWord{7, 0, 1321},\n\tdictWord{7, 0, 1547},\n\tdictWord{7, 0, 1657},\n\tdictWord{8, 0, 429},\n\tdictWord{9, 0, 228},\n\tdictWord{13, 0, 289},\n\tdictWord{13, 0, 343},\n\tdictWord{19, 0, 101},\n\tdictWord{6, 11, 232},\n\tdictWord{6, 11, 412},\n\tdictWord{7, 11, 1074},\n\tdictWord{8, 11, 9},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t157,\n\t},\n\tdictWord{8, 11, 786},\n\tdictWord{9, 11, 196},\n\tdictWord{9, 11, 352},\n\tdictWord{9, 11, 457},\n\tdictWord{10, 11, 337},\n\tdictWord{11, 11, 232},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t877,\n\t},\n\tdictWord{12, 11, 480},\n\tdictWord{140, 11, 546},\n\tdictWord{5, 10, 438},\n\tdictWord{7, 11, 958},\n\tdictWord{9, 10, 694},\n\tdictWord{12, 10, 627},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t38,\n\t},\n\tdictWord{141, 10, 210},\n\tdictWord{4, 11, 382},\n\tdictWord{136, 11, 579},\n\tdictWord{7, 0, 278},\n\tdictWord{10, 0, 739},\n\tdictWord{11, 0, 708},\n\tdictWord{\n\t\t141,\n\t\t0,\n\t\t348,\n\t},\n\tdictWord{4, 11, 212},\n\tdictWord{135, 11, 1206},\n\tdictWord{135, 11, 1898},\n\tdictWord{6, 0, 708},\n\tdictWord{6, 0, 1344},\n\tdictWord{152, 10, 11},\n\tdictWord{137, 11, 768},\n\tdictWord{134, 0, 1840},\n\tdictWord{140, 0, 233},\n\tdictWord{8, 10, 25},\n\tdictWord{138, 10, 826},\n\tdictWord{6, 0, 2017},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t655,\n\t},\n\tdictWord{6, 0, 1488},\n\tdictWord{139, 11, 290},\n\tdictWord{132, 10, 308},\n\tdictWord{134, 0, 1590},\n\tdictWord{134, 0, 1800},\n\tdictWord{134, 0, 1259},\n\tdictWord{16, 0, 28},\n\tdictWord{6, 11, 231},\n\tdictWord{7, 11, 95},\n\tdictWord{136, 11, 423},\n\tdictWord{133, 11, 300},\n\tdictWord{135, 10, 150},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t649,\n\t},\n\tdictWord{7, 11, 1874},\n\tdictWord{137, 11, 641},\n\tdictWord{6, 11, 237},\n\tdictWord{7, 11, 611},\n\tdictWord{8, 11, 100},\n\tdictWord{9, 11, 416},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t335,\n\t},\n\tdictWord{12, 11, 173},\n\tdictWord{146, 11, 101},\n\tdictWord{137, 0, 45},\n\tdictWord{134, 10, 521},\n\tdictWord{17, 0, 36},\n\tdictWord{14, 11, 26},\n\tdictWord{\n\t\t146,\n\t\t11,\n\t\t150,\n\t},\n\tdictWord{7, 0, 1442},\n\tdictWord{14, 0, 22},\n\tdictWord{5, 10, 339},\n\tdictWord{15, 10, 41},\n\tdictWord{15, 10, 166},\n\tdictWord{147, 10, 66},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t378,\n\t},\n\tdictWord{6, 11, 581},\n\tdictWord{135, 11, 1119},\n\tdictWord{134, 0, 1507},\n\tdictWord{147, 11, 117},\n\tdictWord{139, 0, 39},\n\tdictWord{134, 0, 1054},\n\tdictWord{6, 0, 363},\n\tdictWord{7, 0, 1955},\n\tdictWord{136, 0, 725},\n\tdictWord{134, 0, 2036},\n\tdictWord{133, 11, 199},\n\tdictWord{6, 0, 1871},\n\tdictWord{9, 0, 935},\n\tdictWord{9, 0, 961},\n\tdictWord{9, 0, 1004},\n\tdictWord{9, 0, 1016},\n\tdictWord{12, 0, 805},\n\tdictWord{12, 0, 852},\n\tdictWord{12, 0, 853},\n\tdictWord{12, 0, 869},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t882,\n\t},\n\tdictWord{12, 0, 896},\n\tdictWord{12, 0, 906},\n\tdictWord{12, 0, 917},\n\tdictWord{12, 0, 940},\n\tdictWord{15, 0, 170},\n\tdictWord{15, 0, 176},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t188,\n\t},\n\tdictWord{15, 0, 201},\n\tdictWord{15, 0, 205},\n\tdictWord{15, 0, 212},\n\tdictWord{15, 0, 234},\n\tdictWord{15, 0, 244},\n\tdictWord{18, 0, 181},\n\tdictWord{18, 0, 193},\n\tdictWord{18, 0, 196},\n\tdictWord{18, 0, 201},\n\tdictWord{18, 0, 202},\n\tdictWord{18, 0, 210},\n\tdictWord{18, 0, 217},\n\tdictWord{18, 0, 235},\n\tdictWord{18, 0, 236},\n\tdictWord{18, 0, 237},\n\tdictWord{21, 0, 54},\n\tdictWord{21, 0, 55},\n\tdictWord{21, 0, 58},\n\tdictWord{21, 0, 59},\n\tdictWord{152, 0, 22},\n\tdictWord{134, 10, 1628},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t805,\n\t},\n\tdictWord{5, 0, 813},\n\tdictWord{135, 0, 2046},\n\tdictWord{142, 11, 42},\n\tdictWord{5, 0, 712},\n\tdictWord{6, 0, 1240},\n\tdictWord{11, 0, 17},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t321,\n\t},\n\tdictWord{144, 0, 67},\n\tdictWord{132, 0, 617},\n\tdictWord{135, 10, 829},\n\tdictWord{6, 0, 320},\n\tdictWord{7, 0, 781},\n\tdictWord{7, 0, 1921},\n\tdictWord{9, 0, 55},\n\tdictWord{10, 0, 186},\n\tdictWord{10, 0, 273},\n\tdictWord{10, 0, 664},\n\tdictWord{10, 0, 801},\n\tdictWord{11, 0, 996},\n\tdictWord{11, 0, 997},\n\tdictWord{13, 0, 157},\n\tdictWord{142, 0, 170},\n\tdictWord{136, 0, 271},\n\tdictWord{5, 10, 486},\n\tdictWord{135, 10, 1349},\n\tdictWord{18, 11, 91},\n\tdictWord{147, 11, 70},\n\tdictWord{10, 0, 445},\n\tdictWord{7, 10, 1635},\n\tdictWord{8, 10, 17},\n\tdictWord{138, 10, 295},\n\tdictWord{136, 11, 404},\n\tdictWord{7, 0, 103},\n\tdictWord{7, 0, 863},\n\tdictWord{11, 0, 184},\n\tdictWord{145, 0, 62},\n\tdictWord{138, 10, 558},\n\tdictWord{137, 0, 659},\n\tdictWord{6, 11, 312},\n\tdictWord{6, 11, 1715},\n\tdictWord{10, 11, 584},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t546,\n\t},\n\tdictWord{11, 11, 692},\n\tdictWord{12, 11, 259},\n\tdictWord{12, 11, 295},\n\tdictWord{13, 11, 46},\n\tdictWord{141, 11, 154},\n\tdictWord{134, 0, 676},\n\tdictWord{132, 11, 588},\n\tdictWord{4, 11, 231},\n\tdictWord{5, 11, 61},\n\tdictWord{6, 11, 104},\n\tdictWord{7, 11, 729},\n\tdictWord{7, 11, 964},\n\tdictWord{7, 11, 1658},\n\tdictWord{140, 11, 414},\n\tdictWord{6, 11, 263},\n\tdictWord{138, 11, 757},\n\tdictWord{11, 0, 337},\n\tdictWord{142, 0, 303},\n\tdictWord{135, 11, 1363},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t320,\n\t},\n\tdictWord{140, 0, 506},\n\tdictWord{134, 10, 447},\n\tdictWord{5, 0, 77},\n\tdictWord{7, 0, 1455},\n\tdictWord{10, 0, 843},\n\tdictWord{147, 0, 73},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t577,\n\t},\n\tdictWord{7, 10, 1432},\n\tdictWord{9, 10, 475},\n\tdictWord{9, 10, 505},\n\tdictWord{9, 10, 526},\n\tdictWord{9, 10, 609},\n\tdictWord{9, 10, 689},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t726,\n\t},\n\tdictWord{9, 10, 735},\n\tdictWord{9, 10, 738},\n\tdictWord{10, 10, 556},\n\tdictWord{10, 10, 674},\n\tdictWord{10, 10, 684},\n\tdictWord{11, 10, 89},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t202,\n\t},\n\tdictWord{11, 10, 272},\n\tdictWord{11, 10, 380},\n\tdictWord{11, 10, 415},\n\tdictWord{11, 10, 505},\n\tdictWord{11, 10, 537},\n\tdictWord{11, 10, 550},\n\tdictWord{11, 10, 562},\n\tdictWord{11, 10, 640},\n\tdictWord{11, 10, 667},\n\tdictWord{11, 10, 688},\n\tdictWord{11, 10, 847},\n\tdictWord{11, 10, 927},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t930,\n\t},\n\tdictWord{11, 10, 940},\n\tdictWord{12, 10, 144},\n\tdictWord{12, 10, 325},\n\tdictWord{12, 10, 329},\n\tdictWord{12, 10, 389},\n\tdictWord{12, 10, 403},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t451,\n\t},\n\tdictWord{12, 10, 515},\n\tdictWord{12, 10, 604},\n\tdictWord{12, 10, 616},\n\tdictWord{12, 10, 626},\n\tdictWord{13, 10, 66},\n\tdictWord{13, 10, 131},\n\tdictWord{13, 10, 167},\n\tdictWord{13, 10, 236},\n\tdictWord{13, 10, 368},\n\tdictWord{13, 10, 411},\n\tdictWord{13, 10, 434},\n\tdictWord{13, 10, 453},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t461,\n\t},\n\tdictWord{13, 10, 474},\n\tdictWord{14, 10, 59},\n\tdictWord{14, 10, 60},\n\tdictWord{14, 10, 139},\n\tdictWord{14, 10, 152},\n\tdictWord{14, 10, 276},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t353,\n\t},\n\tdictWord{14, 10, 402},\n\tdictWord{15, 10, 28},\n\tdictWord{15, 10, 81},\n\tdictWord{15, 10, 123},\n\tdictWord{15, 10, 152},\n\tdictWord{18, 10, 136},\n\tdictWord{148, 10, 88},\n\tdictWord{132, 0, 458},\n\tdictWord{135, 0, 1420},\n\tdictWord{6, 0, 109},\n\tdictWord{10, 0, 382},\n\tdictWord{4, 11, 405},\n\tdictWord{4, 10, 609},\n\tdictWord{7, 10, 756},\n\tdictWord{7, 11, 817},\n\tdictWord{9, 10, 544},\n\tdictWord{11, 10, 413},\n\tdictWord{14, 11, 58},\n\tdictWord{14, 10, 307},\n\tdictWord{16, 10, 25},\n\tdictWord{17, 11, 37},\n\tdictWord{146, 11, 124},\n\tdictWord{6, 0, 330},\n\tdictWord{7, 0, 1084},\n\tdictWord{11, 0, 142},\n\tdictWord{133, 11, 974},\n\tdictWord{4, 10, 930},\n\tdictWord{133, 10, 947},\n\tdictWord{5, 10, 939},\n\tdictWord{142, 11, 394},\n\tdictWord{16, 0, 91},\n\tdictWord{145, 0, 87},\n\tdictWord{5, 11, 235},\n\tdictWord{5, 10, 962},\n\tdictWord{7, 11, 1239},\n\tdictWord{11, 11, 131},\n\tdictWord{140, 11, 370},\n\tdictWord{11, 0, 492},\n\tdictWord{5, 10, 651},\n\tdictWord{8, 10, 170},\n\tdictWord{9, 10, 61},\n\tdictWord{9, 10, 63},\n\tdictWord{10, 10, 23},\n\tdictWord{10, 10, 37},\n\tdictWord{10, 10, 834},\n\tdictWord{11, 10, 4},\n\tdictWord{11, 10, 281},\n\tdictWord{11, 10, 503},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t677,\n\t},\n\tdictWord{12, 10, 96},\n\tdictWord{12, 10, 130},\n\tdictWord{12, 10, 244},\n\tdictWord{14, 10, 5},\n\tdictWord{14, 10, 40},\n\tdictWord{14, 10, 162},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t202,\n\t},\n\tdictWord{146, 10, 133},\n\tdictWord{4, 10, 406},\n\tdictWord{5, 10, 579},\n\tdictWord{12, 10, 492},\n\tdictWord{150, 10, 15},\n\tdictWord{9, 11, 137},\n\tdictWord{138, 11, 221},\n\tdictWord{134, 0, 1239},\n\tdictWord{11, 0, 211},\n\tdictWord{140, 0, 145},\n\tdictWord{7, 11, 390},\n\tdictWord{138, 11, 140},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1418,\n\t},\n\tdictWord{135, 11, 1144},\n\tdictWord{134, 0, 1049},\n\tdictWord{7, 0, 321},\n\tdictWord{6, 10, 17},\n\tdictWord{7, 10, 1001},\n\tdictWord{7, 10, 1982},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t886,\n\t},\n\tdictWord{10, 10, 489},\n\tdictWord{10, 10, 800},\n\tdictWord{11, 10, 782},\n\tdictWord{12, 10, 320},\n\tdictWord{13, 10, 467},\n\tdictWord{14, 10, 145},\n\tdictWord{14, 10, 387},\n\tdictWord{143, 10, 119},\n\tdictWord{145, 10, 17},\n\tdictWord{5, 11, 407},\n\tdictWord{11, 11, 489},\n\tdictWord{19, 11, 37},\n\tdictWord{20, 11, 73},\n\tdictWord{150, 11, 38},\n\tdictWord{133, 10, 458},\n\tdictWord{135, 0, 1985},\n\tdictWord{7, 10, 1983},\n\tdictWord{8, 10, 0},\n\tdictWord{8, 10, 171},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t120,\n\t},\n\tdictWord{9, 10, 732},\n\tdictWord{10, 10, 473},\n\tdictWord{11, 10, 656},\n\tdictWord{11, 10, 998},\n\tdictWord{18, 10, 0},\n\tdictWord{18, 10, 2},\n\tdictWord{\n\t\t147,\n\t\t10,\n\t\t21,\n\t},\n\tdictWord{5, 11, 325},\n\tdictWord{7, 11, 1483},\n\tdictWord{8, 11, 5},\n\tdictWord{8, 11, 227},\n\tdictWord{9, 11, 105},\n\tdictWord{10, 11, 585},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t614,\n\t},\n\tdictWord{136, 0, 122},\n\tdictWord{132, 0, 234},\n\tdictWord{135, 11, 1196},\n\tdictWord{6, 0, 976},\n\tdictWord{6, 0, 1098},\n\tdictWord{134, 0, 1441},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t253,\n\t},\n\tdictWord{136, 0, 549},\n\tdictWord{6, 11, 621},\n\tdictWord{13, 11, 504},\n\tdictWord{144, 11, 19},\n\tdictWord{132, 10, 519},\n\tdictWord{5, 0, 430},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t932,\n\t},\n\tdictWord{6, 0, 131},\n\tdictWord{7, 0, 417},\n\tdictWord{9, 0, 522},\n\tdictWord{11, 0, 314},\n\tdictWord{141, 0, 390},\n\tdictWord{14, 0, 149},\n\tdictWord{14, 0, 399},\n\tdictWord{143, 0, 57},\n\tdictWord{5, 10, 907},\n\tdictWord{6, 10, 31},\n\tdictWord{6, 11, 218},\n\tdictWord{7, 10, 491},\n\tdictWord{7, 10, 530},\n\tdictWord{8, 10, 592},\n\tdictWord{11, 10, 53},\n\tdictWord{11, 10, 779},\n\tdictWord{12, 10, 167},\n\tdictWord{12, 10, 411},\n\tdictWord{14, 10, 14},\n\tdictWord{14, 10, 136},\n\tdictWord{15, 10, 72},\n\tdictWord{16, 10, 17},\n\tdictWord{144, 10, 72},\n\tdictWord{140, 11, 330},\n\tdictWord{7, 11, 454},\n\tdictWord{7, 11, 782},\n\tdictWord{136, 11, 768},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t507,\n\t},\n\tdictWord{10, 11, 676},\n\tdictWord{140, 11, 462},\n\tdictWord{6, 0, 630},\n\tdictWord{9, 0, 811},\n\tdictWord{4, 10, 208},\n\tdictWord{5, 10, 106},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t531,\n\t},\n\tdictWord{8, 10, 408},\n\tdictWord{9, 10, 188},\n\tdictWord{138, 10, 572},\n\tdictWord{4, 0, 343},\n\tdictWord{5, 0, 511},\n\tdictWord{134, 10, 1693},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t164,\n\t},\n\tdictWord{132, 0, 448},\n\tdictWord{7, 0, 455},\n\tdictWord{138, 0, 591},\n\tdictWord{135, 0, 1381},\n\tdictWord{12, 10, 441},\n\tdictWord{150, 11, 50},\n\tdictWord{9, 10, 449},\n\tdictWord{10, 10, 192},\n\tdictWord{138, 10, 740},\n\tdictWord{6, 0, 575},\n\tdictWord{132, 10, 241},\n\tdictWord{134, 0, 1175},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t653,\n\t},\n\tdictWord{134, 0, 1761},\n\tdictWord{134, 0, 1198},\n\tdictWord{132, 10, 259},\n\tdictWord{6, 11, 343},\n\tdictWord{7, 11, 195},\n\tdictWord{9, 11, 226},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t197,\n\t},\n\tdictWord{10, 11, 575},\n\tdictWord{11, 11, 502},\n\tdictWord{139, 11, 899},\n\tdictWord{7, 0, 1127},\n\tdictWord{7, 0, 1572},\n\tdictWord{10, 0, 297},\n\tdictWord{10, 0, 422},\n\tdictWord{11, 0, 764},\n\tdictWord{11, 0, 810},\n\tdictWord{12, 0, 264},\n\tdictWord{13, 0, 102},\n\tdictWord{13, 0, 300},\n\tdictWord{13, 0, 484},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t147,\n\t},\n\tdictWord{14, 0, 229},\n\tdictWord{17, 0, 71},\n\tdictWord{18, 0, 118},\n\tdictWord{147, 0, 120},\n\tdictWord{135, 11, 666},\n\tdictWord{132, 0, 678},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t173,\n\t},\n\tdictWord{5, 10, 312},\n\tdictWord{5, 10, 512},\n\tdictWord{135, 10, 1285},\n\tdictWord{7, 10, 1603},\n\tdictWord{7, 10, 1691},\n\tdictWord{9, 10, 464},\n\tdictWord{11, 10, 195},\n\tdictWord{12, 10, 279},\n\tdictWord{12, 10, 448},\n\tdictWord{14, 10, 11},\n\tdictWord{147, 10, 102},\n\tdictWord{16, 0, 99},\n\tdictWord{146, 0, 164},\n\tdictWord{7, 11, 1125},\n\tdictWord{9, 11, 143},\n\tdictWord{11, 11, 61},\n\tdictWord{14, 11, 405},\n\tdictWord{150, 11, 21},\n\tdictWord{137, 11, 260},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t452,\n\t},\n\tdictWord{5, 10, 583},\n\tdictWord{5, 10, 817},\n\tdictWord{6, 10, 433},\n\tdictWord{7, 10, 593},\n\tdictWord{7, 10, 720},\n\tdictWord{7, 10, 1378},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t161,\n\t},\n\tdictWord{9, 10, 284},\n\tdictWord{10, 10, 313},\n\tdictWord{139, 10, 886},\n\tdictWord{132, 10, 547},\n\tdictWord{136, 10, 722},\n\tdictWord{14, 0, 35},\n\tdictWord{142, 0, 191},\n\tdictWord{141, 0, 45},\n\tdictWord{138, 0, 121},\n\tdictWord{132, 0, 125},\n\tdictWord{134, 0, 1622},\n\tdictWord{133, 11, 959},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t420,\n\t},\n\tdictWord{139, 10, 193},\n\tdictWord{132, 0, 721},\n\tdictWord{135, 10, 409},\n\tdictWord{136, 0, 145},\n\tdictWord{7, 0, 792},\n\tdictWord{8, 0, 147},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t821,\n\t},\n\tdictWord{11, 0, 970},\n\tdictWord{11, 0, 1021},\n\tdictWord{136, 11, 173},\n\tdictWord{134, 11, 266},\n\tdictWord{132, 0, 715},\n\tdictWord{7, 0, 1999},\n\tdictWord{138, 10, 308},\n\tdictWord{133, 0, 531},\n\tdictWord{5, 0, 168},\n\tdictWord{5, 0, 930},\n\tdictWord{8, 0, 74},\n\tdictWord{9, 0, 623},\n\tdictWord{12, 0, 500},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t579,\n\t},\n\tdictWord{144, 0, 65},\n\tdictWord{138, 11, 246},\n\tdictWord{6, 0, 220},\n\tdictWord{7, 0, 1101},\n\tdictWord{13, 0, 105},\n\tdictWord{142, 11, 314},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t1002,\n\t},\n\tdictWord{136, 10, 745},\n\tdictWord{134, 0, 960},\n\tdictWord{20, 0, 0},\n\tdictWord{148, 11, 0},\n\tdictWord{4, 0, 1005},\n\tdictWord{4, 10, 239},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t477,\n\t},\n\tdictWord{7, 10, 1607},\n\tdictWord{11, 10, 68},\n\tdictWord{139, 10, 617},\n\tdictWord{6, 0, 19},\n\tdictWord{7, 0, 1413},\n\tdictWord{139, 0, 428},\n\tdictWord{\n\t\t149,\n\t\t10,\n\t\t13,\n\t},\n\tdictWord{7, 0, 96},\n\tdictWord{8, 0, 401},\n\tdictWord{8, 0, 703},\n\tdictWord{9, 0, 896},\n\tdictWord{136, 11, 300},\n\tdictWord{134, 0, 1595},\n\tdictWord{145, 0, 116},\n\tdictWord{136, 0, 1021},\n\tdictWord{7, 0, 1961},\n\tdictWord{7, 0, 1965},\n\tdictWord{7, 0, 2030},\n\tdictWord{8, 0, 150},\n\tdictWord{8, 0, 702},\n\tdictWord{8, 0, 737},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t750,\n\t},\n\tdictWord{140, 0, 366},\n\tdictWord{11, 11, 75},\n\tdictWord{142, 11, 267},\n\tdictWord{132, 10, 367},\n\tdictWord{8, 0, 800},\n\tdictWord{9, 0, 148},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t872,\n\t},\n\tdictWord{9, 0, 890},\n\tdictWord{11, 0, 309},\n\tdictWord{11, 0, 1001},\n\tdictWord{13, 0, 267},\n\tdictWord{13, 0, 323},\n\tdictWord{5, 11, 427},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t734,\n\t},\n\tdictWord{7, 11, 478},\n\tdictWord{136, 11, 52},\n\tdictWord{7, 11, 239},\n\tdictWord{11, 11, 217},\n\tdictWord{142, 11, 165},\n\tdictWord{132, 11, 323},\n\tdictWord{140, 11, 419},\n\tdictWord{13, 0, 299},\n\tdictWord{142, 0, 75},\n\tdictWord{6, 11, 87},\n\tdictWord{6, 11, 1734},\n\tdictWord{7, 11, 20},\n\tdictWord{7, 11, 1056},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t732,\n\t},\n\tdictWord{9, 11, 406},\n\tdictWord{9, 11, 911},\n\tdictWord{138, 11, 694},\n\tdictWord{134, 0, 1383},\n\tdictWord{132, 10, 694},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t613,\n\t},\n\tdictWord{137, 0, 779},\n\tdictWord{4, 0, 598},\n\tdictWord{140, 10, 687},\n\tdictWord{6, 0, 970},\n\tdictWord{135, 0, 424},\n\tdictWord{133, 0, 547},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t32,\n\t},\n\tdictWord{7, 11, 984},\n\tdictWord{8, 11, 85},\n\tdictWord{8, 11, 709},\n\tdictWord{9, 11, 579},\n\tdictWord{9, 11, 847},\n\tdictWord{9, 11, 856},\n\tdictWord{10, 11, 799},\n\tdictWord{11, 11, 258},\n\tdictWord{11, 11, 1007},\n\tdictWord{12, 11, 331},\n\tdictWord{12, 11, 615},\n\tdictWord{13, 11, 188},\n\tdictWord{13, 11, 435},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t8,\n\t},\n\tdictWord{15, 11, 165},\n\tdictWord{16, 11, 27},\n\tdictWord{148, 11, 40},\n\tdictWord{6, 0, 1222},\n\tdictWord{134, 0, 1385},\n\tdictWord{132, 0, 876},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t151,\n\t},\n\tdictWord{135, 10, 213},\n\tdictWord{4, 11, 167},\n\tdictWord{135, 11, 82},\n\tdictWord{133, 0, 133},\n\tdictWord{6, 11, 24},\n\tdictWord{7, 11, 74},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t678,\n\t},\n\tdictWord{137, 11, 258},\n\tdictWord{5, 11, 62},\n\tdictWord{6, 11, 534},\n\tdictWord{7, 11, 684},\n\tdictWord{7, 11, 1043},\n\tdictWord{7, 11, 1072},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t280,\n\t},\n\tdictWord{8, 11, 541},\n\tdictWord{8, 11, 686},\n\tdictWord{10, 11, 519},\n\tdictWord{11, 11, 252},\n\tdictWord{140, 11, 282},\n\tdictWord{136, 0, 187},\n\tdictWord{8, 0, 8},\n\tdictWord{10, 0, 0},\n\tdictWord{10, 0, 818},\n\tdictWord{139, 0, 988},\n\tdictWord{132, 11, 359},\n\tdictWord{11, 0, 429},\n\tdictWord{15, 0, 51},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1672,\n\t},\n\tdictWord{136, 0, 685},\n\tdictWord{5, 11, 211},\n\tdictWord{7, 11, 88},\n\tdictWord{136, 11, 627},\n\tdictWord{134, 0, 472},\n\tdictWord{136, 0, 132},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t145,\n\t},\n\tdictWord{141, 11, 336},\n\tdictWord{4, 10, 751},\n\tdictWord{11, 10, 390},\n\tdictWord{140, 10, 32},\n\tdictWord{6, 0, 938},\n\tdictWord{6, 0, 1060},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t263,\n\t},\n\tdictWord{4, 10, 409},\n\tdictWord{133, 10, 78},\n\tdictWord{137, 0, 874},\n\tdictWord{8, 0, 774},\n\tdictWord{10, 0, 670},\n\tdictWord{12, 0, 51},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t916,\n\t},\n\tdictWord{6, 10, 473},\n\tdictWord{7, 10, 1602},\n\tdictWord{10, 10, 698},\n\tdictWord{12, 10, 212},\n\tdictWord{13, 10, 307},\n\tdictWord{145, 10, 105},\n\tdictWord{146, 0, 92},\n\tdictWord{143, 10, 156},\n\tdictWord{132, 0, 830},\n\tdictWord{137, 0, 701},\n\tdictWord{4, 11, 599},\n\tdictWord{6, 11, 1634},\n\tdictWord{7, 11, 5},\n\tdictWord{7, 11, 55},\n\tdictWord{7, 11, 67},\n\tdictWord{7, 11, 97},\n\tdictWord{7, 11, 691},\n\tdictWord{7, 11, 979},\n\tdictWord{7, 11, 1697},\n\tdictWord{8, 11, 207},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t214,\n\t},\n\tdictWord{8, 11, 231},\n\tdictWord{8, 11, 294},\n\tdictWord{8, 11, 336},\n\tdictWord{8, 11, 428},\n\tdictWord{8, 11, 451},\n\tdictWord{8, 11, 460},\n\tdictWord{8, 11, 471},\n\tdictWord{8, 11, 622},\n\tdictWord{8, 11, 626},\n\tdictWord{8, 11, 679},\n\tdictWord{8, 11, 759},\n\tdictWord{8, 11, 829},\n\tdictWord{9, 11, 11},\n\tdictWord{9, 11, 246},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t484,\n\t},\n\tdictWord{9, 11, 573},\n\tdictWord{9, 11, 706},\n\tdictWord{9, 11, 762},\n\tdictWord{9, 11, 798},\n\tdictWord{9, 11, 855},\n\tdictWord{9, 11, 870},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t912,\n\t},\n\tdictWord{10, 11, 303},\n\tdictWord{10, 11, 335},\n\tdictWord{10, 11, 424},\n\tdictWord{10, 11, 461},\n\tdictWord{10, 11, 543},\n\tdictWord{10, 11, 759},\n\tdictWord{10, 11, 814},\n\tdictWord{11, 11, 59},\n\tdictWord{11, 11, 199},\n\tdictWord{11, 11, 235},\n\tdictWord{11, 11, 475},\n\tdictWord{11, 11, 590},\n\tdictWord{11, 11, 929},\n\tdictWord{11, 11, 963},\n\tdictWord{12, 11, 114},\n\tdictWord{12, 11, 182},\n\tdictWord{12, 11, 226},\n\tdictWord{12, 11, 332},\n\tdictWord{12, 11, 439},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t575,\n\t},\n\tdictWord{12, 11, 598},\n\tdictWord{13, 11, 8},\n\tdictWord{13, 11, 125},\n\tdictWord{13, 11, 194},\n\tdictWord{13, 11, 287},\n\tdictWord{14, 11, 197},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t383,\n\t},\n\tdictWord{15, 11, 53},\n\tdictWord{17, 11, 63},\n\tdictWord{19, 11, 46},\n\tdictWord{19, 11, 98},\n\tdictWord{19, 11, 106},\n\tdictWord{148, 11, 85},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t127,\n\t},\n\tdictWord{5, 0, 350},\n\tdictWord{6, 0, 356},\n\tdictWord{8, 0, 426},\n\tdictWord{9, 0, 572},\n\tdictWord{10, 0, 247},\n\tdictWord{139, 0, 312},\n\tdictWord{134, 0, 1215},\n\tdictWord{6, 0, 59},\n\tdictWord{9, 0, 603},\n\tdictWord{13, 0, 397},\n\tdictWord{7, 11, 1853},\n\tdictWord{138, 11, 437},\n\tdictWord{134, 0, 1762},\n\tdictWord{\n\t\t147,\n\t\t11,\n\t\t126,\n\t},\n\tdictWord{135, 10, 883},\n\tdictWord{13, 0, 293},\n\tdictWord{142, 0, 56},\n\tdictWord{133, 10, 617},\n\tdictWord{139, 10, 50},\n\tdictWord{5, 11, 187},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1518,\n\t},\n\tdictWord{139, 10, 694},\n\tdictWord{135, 0, 441},\n\tdictWord{6, 0, 111},\n\tdictWord{7, 0, 4},\n\tdictWord{8, 0, 163},\n\tdictWord{8, 0, 776},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t566,\n\t},\n\tdictWord{132, 0, 806},\n\tdictWord{4, 11, 215},\n\tdictWord{9, 11, 38},\n\tdictWord{10, 11, 3},\n\tdictWord{11, 11, 23},\n\tdictWord{11, 11, 127},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t796,\n\t},\n\tdictWord{14, 0, 233},\n\tdictWord{4, 10, 546},\n\tdictWord{135, 10, 2042},\n\tdictWord{135, 0, 1994},\n\tdictWord{134, 0, 1739},\n\tdictWord{135, 11, 1530},\n\tdictWord{136, 0, 393},\n\tdictWord{5, 0, 297},\n\tdictWord{7, 0, 1038},\n\tdictWord{14, 0, 359},\n\tdictWord{19, 0, 52},\n\tdictWord{148, 0, 47},\n\tdictWord{135, 0, 309},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t313,\n\t},\n\tdictWord{133, 10, 577},\n\tdictWord{8, 10, 184},\n\tdictWord{141, 10, 433},\n\tdictWord{135, 10, 935},\n\tdictWord{12, 10, 186},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t292,\n\t},\n\tdictWord{14, 10, 100},\n\tdictWord{146, 10, 70},\n\tdictWord{136, 0, 363},\n\tdictWord{14, 0, 175},\n\tdictWord{11, 10, 402},\n\tdictWord{12, 10, 109},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t431,\n\t},\n\tdictWord{13, 10, 179},\n\tdictWord{13, 10, 206},\n\tdictWord{14, 10, 217},\n\tdictWord{16, 10, 3},\n\tdictWord{148, 10, 53},\n\tdictWord{5, 10, 886},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t46,\n\t},\n\tdictWord{6, 10, 1790},\n\tdictWord{7, 10, 14},\n\tdictWord{7, 10, 732},\n\tdictWord{7, 10, 1654},\n\tdictWord{8, 10, 95},\n\tdictWord{8, 10, 327},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t616,\n\t},\n\tdictWord{9, 10, 892},\n\tdictWord{10, 10, 598},\n\tdictWord{10, 10, 769},\n\tdictWord{11, 10, 134},\n\tdictWord{11, 10, 747},\n\tdictWord{12, 10, 378},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t97,\n\t},\n\tdictWord{136, 0, 666},\n\tdictWord{135, 0, 1675},\n\tdictWord{6, 0, 655},\n\tdictWord{134, 0, 1600},\n\tdictWord{135, 0, 808},\n\tdictWord{133, 10, 1021},\n\tdictWord{4, 11, 28},\n\tdictWord{5, 11, 440},\n\tdictWord{7, 11, 248},\n\tdictWord{11, 11, 833},\n\tdictWord{140, 11, 344},\n\tdictWord{134, 11, 1654},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t280,\n\t},\n\tdictWord{140, 0, 54},\n\tdictWord{4, 0, 421},\n\tdictWord{133, 0, 548},\n\tdictWord{132, 10, 153},\n\tdictWord{6, 11, 339},\n\tdictWord{135, 11, 923},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t853,\n\t},\n\tdictWord{133, 10, 798},\n\tdictWord{132, 10, 587},\n\tdictWord{6, 11, 249},\n\tdictWord{7, 11, 1234},\n\tdictWord{139, 11, 573},\n\tdictWord{6, 10, 598},\n\tdictWord{7, 10, 42},\n\tdictWord{8, 10, 695},\n\tdictWord{10, 10, 212},\n\tdictWord{11, 10, 158},\n\tdictWord{14, 10, 196},\n\tdictWord{145, 10, 85},\n\tdictWord{7, 0, 249},\n\tdictWord{5, 10, 957},\n\tdictWord{133, 10, 1008},\n\tdictWord{4, 10, 129},\n\tdictWord{135, 10, 465},\n\tdictWord{6, 0, 254},\n\tdictWord{7, 0, 842},\n\tdictWord{7, 0, 1659},\n\tdictWord{9, 0, 109},\n\tdictWord{10, 0, 103},\n\tdictWord{7, 10, 908},\n\tdictWord{7, 10, 1201},\n\tdictWord{9, 10, 755},\n\tdictWord{11, 10, 906},\n\tdictWord{12, 10, 527},\n\tdictWord{146, 10, 7},\n\tdictWord{5, 0, 262},\n\tdictWord{136, 10, 450},\n\tdictWord{144, 0, 1},\n\tdictWord{10, 11, 201},\n\tdictWord{142, 11, 319},\n\tdictWord{7, 11, 49},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t392,\n\t},\n\tdictWord{8, 11, 20},\n\tdictWord{8, 11, 172},\n\tdictWord{8, 11, 690},\n\tdictWord{9, 11, 383},\n\tdictWord{9, 11, 845},\n\tdictWord{10, 11, 48},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t293,\n\t},\n\tdictWord{11, 11, 832},\n\tdictWord{11, 11, 920},\n\tdictWord{141, 11, 221},\n\tdictWord{5, 11, 858},\n\tdictWord{133, 11, 992},\n\tdictWord{134, 0, 805},\n\tdictWord{139, 10, 1003},\n\tdictWord{6, 0, 1630},\n\tdictWord{134, 11, 307},\n\tdictWord{7, 11, 1512},\n\tdictWord{135, 11, 1794},\n\tdictWord{6, 11, 268},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t62,\n\t},\n\tdictWord{135, 10, 1868},\n\tdictWord{133, 0, 671},\n\tdictWord{4, 0, 989},\n\tdictWord{8, 0, 972},\n\tdictWord{136, 0, 998},\n\tdictWord{132, 11, 423},\n\tdictWord{132, 0, 889},\n\tdictWord{135, 0, 1382},\n\tdictWord{135, 0, 1910},\n\tdictWord{7, 10, 965},\n\tdictWord{7, 10, 1460},\n\tdictWord{135, 10, 1604},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t627,\n\t},\n\tdictWord{5, 0, 775},\n\tdictWord{138, 11, 106},\n\tdictWord{134, 11, 348},\n\tdictWord{7, 0, 202},\n\tdictWord{11, 0, 362},\n\tdictWord{11, 0, 948},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t388,\n\t},\n\tdictWord{138, 11, 771},\n\tdictWord{6, 11, 613},\n\tdictWord{136, 11, 223},\n\tdictWord{6, 0, 560},\n\tdictWord{7, 0, 451},\n\tdictWord{8, 0, 389},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t490,\n\t},\n\tdictWord{13, 0, 16},\n\tdictWord{13, 0, 215},\n\tdictWord{13, 0, 351},\n\tdictWord{18, 0, 132},\n\tdictWord{147, 0, 125},\n\tdictWord{135, 0, 841},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t566,\n\t},\n\tdictWord{136, 0, 938},\n\tdictWord{132, 11, 670},\n\tdictWord{5, 0, 912},\n\tdictWord{6, 0, 1695},\n\tdictWord{140, 11, 55},\n\tdictWord{9, 11, 40},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t136,\n\t},\n\tdictWord{7, 0, 1361},\n\tdictWord{7, 10, 982},\n\tdictWord{10, 10, 32},\n\tdictWord{143, 10, 56},\n\tdictWord{11, 11, 259},\n\tdictWord{140, 11, 270},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t236,\n\t},\n\tdictWord{6, 0, 572},\n\tdictWord{8, 0, 492},\n\tdictWord{11, 0, 618},\n\tdictWord{144, 0, 56},\n\tdictWord{8, 11, 572},\n\tdictWord{9, 11, 310},\n\tdictWord{9, 11, 682},\n\tdictWord{137, 11, 698},\n\tdictWord{134, 0, 1854},\n\tdictWord{5, 0, 190},\n\tdictWord{136, 0, 318},\n\tdictWord{133, 10, 435},\n\tdictWord{135, 0, 1376},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t296,\n\t},\n\tdictWord{6, 11, 352},\n\tdictWord{7, 11, 401},\n\tdictWord{7, 11, 1410},\n\tdictWord{7, 11, 1594},\n\tdictWord{7, 11, 1674},\n\tdictWord{8, 11, 63},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t660,\n\t},\n\tdictWord{137, 11, 74},\n\tdictWord{7, 0, 349},\n\tdictWord{5, 10, 85},\n\tdictWord{6, 10, 419},\n\tdictWord{7, 10, 305},\n\tdictWord{7, 10, 361},\n\tdictWord{7, 10, 1337},\n\tdictWord{8, 10, 71},\n\tdictWord{140, 10, 519},\n\tdictWord{4, 11, 139},\n\tdictWord{4, 11, 388},\n\tdictWord{140, 11, 188},\n\tdictWord{6, 0, 1972},\n\tdictWord{6, 0, 2013},\n\tdictWord{8, 0, 951},\n\tdictWord{10, 0, 947},\n\tdictWord{10, 0, 974},\n\tdictWord{10, 0, 1018},\n\tdictWord{142, 0, 476},\n\tdictWord{140, 10, 688},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t740,\n\t},\n\tdictWord{5, 10, 691},\n\tdictWord{7, 10, 345},\n\tdictWord{9, 10, 94},\n\tdictWord{140, 10, 169},\n\tdictWord{9, 0, 344},\n\tdictWord{5, 10, 183},\n\tdictWord{6, 10, 582},\n\tdictWord{10, 10, 679},\n\tdictWord{140, 10, 435},\n\tdictWord{135, 10, 511},\n\tdictWord{132, 0, 850},\n\tdictWord{8, 11, 441},\n\tdictWord{10, 11, 314},\n\tdictWord{\n\t\t143,\n\t\t11,\n\t\t3,\n\t},\n\tdictWord{7, 10, 1993},\n\tdictWord{136, 10, 684},\n\tdictWord{4, 11, 747},\n\tdictWord{6, 11, 290},\n\tdictWord{6, 10, 583},\n\tdictWord{7, 11, 649},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1479,\n\t},\n\tdictWord{135, 11, 1583},\n\tdictWord{133, 11, 232},\n\tdictWord{133, 10, 704},\n\tdictWord{134, 0, 910},\n\tdictWord{4, 10, 179},\n\tdictWord{5, 10, 198},\n\tdictWord{133, 10, 697},\n\tdictWord{7, 10, 347},\n\tdictWord{7, 10, 971},\n\tdictWord{8, 10, 181},\n\tdictWord{138, 10, 711},\n\tdictWord{136, 11, 525},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t19,\n\t},\n\tdictWord{14, 0, 28},\n\tdictWord{144, 0, 29},\n\tdictWord{7, 0, 85},\n\tdictWord{7, 0, 247},\n\tdictWord{8, 0, 585},\n\tdictWord{138, 0, 163},\n\tdictWord{4, 0, 487},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t472,\n\t},\n\tdictWord{7, 11, 1801},\n\tdictWord{10, 11, 748},\n\tdictWord{141, 11, 458},\n\tdictWord{4, 10, 243},\n\tdictWord{5, 10, 203},\n\tdictWord{7, 10, 19},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t71,\n\t},\n\tdictWord{7, 10, 113},\n\tdictWord{10, 10, 405},\n\tdictWord{11, 10, 357},\n\tdictWord{142, 10, 240},\n\tdictWord{7, 10, 1450},\n\tdictWord{139, 10, 99},\n\tdictWord{132, 11, 425},\n\tdictWord{138, 0, 145},\n\tdictWord{147, 0, 83},\n\tdictWord{6, 10, 492},\n\tdictWord{137, 11, 247},\n\tdictWord{4, 0, 1013},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t2033,\n\t},\n\tdictWord{5, 10, 134},\n\tdictWord{6, 10, 408},\n\tdictWord{6, 10, 495},\n\tdictWord{135, 10, 1593},\n\tdictWord{135, 0, 1922},\n\tdictWord{134, 11, 1768},\n\tdictWord{4, 0, 124},\n\tdictWord{10, 0, 457},\n\tdictWord{11, 0, 121},\n\tdictWord{11, 0, 169},\n\tdictWord{11, 0, 870},\n\tdictWord{11, 0, 874},\n\tdictWord{12, 0, 214},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t187,\n\t},\n\tdictWord{143, 0, 77},\n\tdictWord{5, 0, 557},\n\tdictWord{135, 0, 1457},\n\tdictWord{139, 0, 66},\n\tdictWord{5, 11, 943},\n\tdictWord{6, 11, 1779},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t4,\n\t},\n\tdictWord{4, 10, 248},\n\tdictWord{4, 10, 665},\n\tdictWord{7, 10, 137},\n\tdictWord{137, 10, 349},\n\tdictWord{7, 0, 1193},\n\tdictWord{5, 11, 245},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t576,\n\t},\n\tdictWord{7, 11, 582},\n\tdictWord{136, 11, 225},\n\tdictWord{144, 0, 82},\n\tdictWord{7, 10, 1270},\n\tdictWord{139, 10, 612},\n\tdictWord{5, 0, 454},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t352,\n\t},\n\tdictWord{138, 11, 352},\n\tdictWord{18, 0, 57},\n\tdictWord{5, 10, 371},\n\tdictWord{135, 10, 563},\n\tdictWord{135, 0, 1333},\n\tdictWord{6, 0, 107},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t638,\n\t},\n\tdictWord{7, 0, 1632},\n\tdictWord{9, 0, 396},\n\tdictWord{134, 11, 610},\n\tdictWord{5, 0, 370},\n\tdictWord{134, 0, 1756},\n\tdictWord{4, 10, 374},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t547,\n\t},\n\tdictWord{7, 10, 1700},\n\tdictWord{7, 10, 1833},\n\tdictWord{139, 10, 858},\n\tdictWord{133, 0, 204},\n\tdictWord{6, 0, 1305},\n\tdictWord{9, 10, 311},\n\tdictWord{\n\t\t141,\n\t\t10,\n\t\t42,\n\t},\n\tdictWord{5, 0, 970},\n\tdictWord{134, 0, 1706},\n\tdictWord{6, 10, 1647},\n\tdictWord{7, 10, 1552},\n\tdictWord{7, 10, 2010},\n\tdictWord{9, 10, 494},\n\tdictWord{137, 10, 509},\n\tdictWord{13, 11, 455},\n\tdictWord{15, 11, 99},\n\tdictWord{15, 11, 129},\n\tdictWord{144, 11, 68},\n\tdictWord{135, 0, 3},\n\tdictWord{4, 0, 35},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t121,\n\t},\n\tdictWord{5, 0, 483},\n\tdictWord{5, 0, 685},\n\tdictWord{6, 0, 489},\n\tdictWord{6, 0, 782},\n\tdictWord{6, 0, 1032},\n\tdictWord{7, 0, 1204},\n\tdictWord{136, 0, 394},\n\tdictWord{4, 0, 921},\n\tdictWord{133, 0, 1007},\n\tdictWord{8, 11, 360},\n\tdictWord{138, 11, 63},\n\tdictWord{135, 0, 1696},\n\tdictWord{134, 0, 1519},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t443,\n\t},\n\tdictWord{135, 11, 944},\n\tdictWord{6, 10, 123},\n\tdictWord{7, 10, 214},\n\tdictWord{9, 10, 728},\n\tdictWord{10, 10, 157},\n\tdictWord{11, 10, 346},\n\tdictWord{11, 10, 662},\n\tdictWord{143, 10, 106},\n\tdictWord{137, 0, 981},\n\tdictWord{135, 10, 1435},\n\tdictWord{134, 0, 1072},\n\tdictWord{132, 0, 712},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1629,\n\t},\n\tdictWord{134, 0, 728},\n\tdictWord{4, 11, 298},\n\tdictWord{137, 11, 483},\n\tdictWord{6, 0, 1177},\n\tdictWord{6, 0, 1271},\n\tdictWord{5, 11, 164},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t121,\n\t},\n\tdictWord{142, 11, 189},\n\tdictWord{7, 0, 1608},\n\tdictWord{4, 10, 707},\n\tdictWord{5, 10, 588},\n\tdictWord{6, 10, 393},\n\tdictWord{13, 10, 106},\n\tdictWord{\n\t\t18,\n\t\t10,\n\t\t49,\n\t},\n\tdictWord{147, 10, 41},\n\tdictWord{23, 0, 16},\n\tdictWord{151, 11, 16},\n\tdictWord{6, 10, 211},\n\tdictWord{7, 10, 1690},\n\tdictWord{11, 10, 486},\n\tdictWord{140, 10, 369},\n\tdictWord{133, 0, 485},\n\tdictWord{19, 11, 15},\n\tdictWord{149, 11, 27},\n\tdictWord{4, 11, 172},\n\tdictWord{9, 11, 611},\n\tdictWord{10, 11, 436},\n\tdictWord{12, 11, 673},\n\tdictWord{141, 11, 255},\n\tdictWord{5, 11, 844},\n\tdictWord{10, 11, 484},\n\tdictWord{11, 11, 754},\n\tdictWord{12, 11, 457},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t171,\n\t},\n\tdictWord{14, 11, 389},\n\tdictWord{146, 11, 153},\n\tdictWord{4, 0, 285},\n\tdictWord{5, 0, 27},\n\tdictWord{5, 0, 317},\n\tdictWord{6, 0, 301},\n\tdictWord{7, 0, 7},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t153,\n\t},\n\tdictWord{10, 0, 766},\n\tdictWord{11, 0, 468},\n\tdictWord{12, 0, 467},\n\tdictWord{141, 0, 143},\n\tdictWord{134, 0, 1462},\n\tdictWord{9, 11, 263},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t147,\n\t},\n\tdictWord{138, 11, 492},\n\tdictWord{133, 11, 537},\n\tdictWord{6, 0, 1945},\n\tdictWord{6, 0, 1986},\n\tdictWord{6, 0, 1991},\n\tdictWord{134, 0, 2038},\n\tdictWord{134, 10, 219},\n\tdictWord{137, 11, 842},\n\tdictWord{14, 0, 52},\n\tdictWord{17, 0, 50},\n\tdictWord{5, 10, 582},\n\tdictWord{6, 10, 1646},\n\tdictWord{7, 10, 99},\n\tdictWord{7, 10, 1962},\n\tdictWord{7, 10, 1986},\n\tdictWord{8, 10, 515},\n\tdictWord{8, 10, 773},\n\tdictWord{9, 10, 23},\n\tdictWord{9, 10, 491},\n\tdictWord{12, 10, 620},\n\tdictWord{142, 10, 93},\n\tdictWord{138, 11, 97},\n\tdictWord{20, 0, 21},\n\tdictWord{20, 0, 44},\n\tdictWord{133, 10, 851},\n\tdictWord{136, 0, 819},\n\tdictWord{139, 0, 917},\n\tdictWord{5, 11, 230},\n\tdictWord{5, 11, 392},\n\tdictWord{6, 11, 420},\n\tdictWord{8, 10, 762},\n\tdictWord{8, 10, 812},\n\tdictWord{9, 11, 568},\n\tdictWord{9, 10, 910},\n\tdictWord{140, 11, 612},\n\tdictWord{135, 0, 784},\n\tdictWord{15, 0, 135},\n\tdictWord{143, 11, 135},\n\tdictWord{10, 0, 454},\n\tdictWord{140, 0, 324},\n\tdictWord{4, 11, 0},\n\tdictWord{5, 11, 41},\n\tdictWord{7, 11, 1459},\n\tdictWord{7, 11, 1469},\n\tdictWord{7, 11, 1618},\n\tdictWord{7, 11, 1859},\n\tdictWord{9, 11, 549},\n\tdictWord{139, 11, 905},\n\tdictWord{4, 10, 98},\n\tdictWord{7, 10, 1365},\n\tdictWord{9, 10, 422},\n\tdictWord{9, 10, 670},\n\tdictWord{10, 10, 775},\n\tdictWord{11, 10, 210},\n\tdictWord{13, 10, 26},\n\tdictWord{13, 10, 457},\n\tdictWord{141, 10, 476},\n\tdictWord{6, 0, 1719},\n\tdictWord{6, 0, 1735},\n\tdictWord{7, 0, 2016},\n\tdictWord{7, 0, 2020},\n\tdictWord{8, 0, 837},\n\tdictWord{137, 0, 852},\n\tdictWord{133, 11, 696},\n\tdictWord{135, 0, 852},\n\tdictWord{132, 0, 952},\n\tdictWord{134, 10, 1730},\n\tdictWord{132, 11, 771},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t568,\n\t},\n\tdictWord{137, 0, 448},\n\tdictWord{139, 0, 146},\n\tdictWord{8, 0, 67},\n\tdictWord{138, 0, 419},\n\tdictWord{133, 11, 921},\n\tdictWord{137, 10, 147},\n\tdictWord{134, 0, 1826},\n\tdictWord{10, 0, 657},\n\tdictWord{14, 0, 297},\n\tdictWord{142, 0, 361},\n\tdictWord{6, 0, 666},\n\tdictWord{6, 0, 767},\n\tdictWord{134, 0, 1542},\n\tdictWord{139, 0, 729},\n\tdictWord{6, 11, 180},\n\tdictWord{7, 11, 1137},\n\tdictWord{8, 11, 751},\n\tdictWord{139, 11, 805},\n\tdictWord{4, 11, 183},\n\tdictWord{7, 11, 271},\n\tdictWord{11, 11, 824},\n\tdictWord{11, 11, 952},\n\tdictWord{13, 11, 278},\n\tdictWord{13, 11, 339},\n\tdictWord{13, 11, 482},\n\tdictWord{14, 11, 424},\n\tdictWord{\n\t\t148,\n\t\t11,\n\t\t99,\n\t},\n\tdictWord{4, 0, 669},\n\tdictWord{5, 11, 477},\n\tdictWord{5, 11, 596},\n\tdictWord{6, 11, 505},\n\tdictWord{7, 11, 1221},\n\tdictWord{11, 11, 907},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t209,\n\t},\n\tdictWord{141, 11, 214},\n\tdictWord{135, 11, 1215},\n\tdictWord{5, 0, 402},\n\tdictWord{6, 10, 30},\n\tdictWord{11, 10, 56},\n\tdictWord{139, 10, 305},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t564,\n\t},\n\tdictWord{142, 11, 168},\n\tdictWord{139, 0, 152},\n\tdictWord{7, 0, 912},\n\tdictWord{135, 10, 1614},\n\tdictWord{4, 10, 150},\n\tdictWord{5, 10, 303},\n\tdictWord{134, 10, 327},\n\tdictWord{7, 0, 320},\n\tdictWord{8, 0, 51},\n\tdictWord{9, 0, 868},\n\tdictWord{10, 0, 833},\n\tdictWord{12, 0, 481},\n\tdictWord{12, 0, 570},\n\tdictWord{\n\t\t148,\n\t\t0,\n\t\t106,\n\t},\n\tdictWord{132, 0, 445},\n\tdictWord{7, 11, 274},\n\tdictWord{11, 11, 263},\n\tdictWord{11, 11, 479},\n\tdictWord{11, 11, 507},\n\tdictWord{140, 11, 277},\n\tdictWord{10, 0, 555},\n\tdictWord{11, 0, 308},\n\tdictWord{19, 0, 95},\n\tdictWord{6, 11, 1645},\n\tdictWord{8, 10, 192},\n\tdictWord{10, 10, 78},\n\tdictWord{141, 10, 359},\n\tdictWord{135, 10, 786},\n\tdictWord{6, 11, 92},\n\tdictWord{6, 11, 188},\n\tdictWord{7, 11, 1269},\n\tdictWord{7, 11, 1524},\n\tdictWord{7, 11, 1876},\n\tdictWord{10, 11, 228},\n\tdictWord{139, 11, 1020},\n\tdictWord{4, 11, 459},\n\tdictWord{133, 11, 966},\n\tdictWord{11, 0, 386},\n\tdictWord{6, 10, 1638},\n\tdictWord{7, 10, 79},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t496,\n\t},\n\tdictWord{9, 10, 138},\n\tdictWord{10, 10, 336},\n\tdictWord{12, 10, 412},\n\tdictWord{12, 10, 440},\n\tdictWord{142, 10, 305},\n\tdictWord{133, 0, 239},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t83,\n\t},\n\tdictWord{7, 0, 1990},\n\tdictWord{8, 0, 130},\n\tdictWord{139, 0, 720},\n\tdictWord{138, 11, 709},\n\tdictWord{4, 0, 143},\n\tdictWord{5, 0, 550},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t752,\n\t},\n\tdictWord{5, 0, 123},\n\tdictWord{6, 0, 530},\n\tdictWord{7, 0, 348},\n\tdictWord{135, 0, 1419},\n\tdictWord{135, 0, 2024},\n\tdictWord{6, 11, 18},\n\tdictWord{7, 11, 179},\n\tdictWord{7, 11, 721},\n\tdictWord{7, 11, 932},\n\tdictWord{8, 11, 548},\n\tdictWord{8, 11, 757},\n\tdictWord{9, 11, 54},\n\tdictWord{9, 11, 65},\n\tdictWord{9, 11, 532},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t844,\n\t},\n\tdictWord{10, 11, 113},\n\tdictWord{10, 11, 117},\n\tdictWord{10, 11, 236},\n\tdictWord{10, 11, 315},\n\tdictWord{10, 11, 430},\n\tdictWord{10, 11, 798},\n\tdictWord{11, 11, 153},\n\tdictWord{11, 11, 351},\n\tdictWord{11, 11, 375},\n\tdictWord{12, 11, 78},\n\tdictWord{12, 11, 151},\n\tdictWord{12, 11, 392},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t248,\n\t},\n\tdictWord{143, 11, 23},\n\tdictWord{7, 10, 204},\n\tdictWord{7, 10, 415},\n\tdictWord{8, 10, 42},\n\tdictWord{10, 10, 85},\n\tdictWord{139, 10, 564},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t958,\n\t},\n\tdictWord{133, 11, 965},\n\tdictWord{132, 0, 210},\n\tdictWord{135, 11, 1429},\n\tdictWord{138, 11, 480},\n\tdictWord{134, 11, 182},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t345,\n\t},\n\tdictWord{10, 11, 65},\n\tdictWord{10, 11, 488},\n\tdictWord{138, 11, 497},\n\tdictWord{4, 10, 3},\n\tdictWord{5, 10, 247},\n\tdictWord{5, 10, 644},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t744,\n\t},\n\tdictWord{7, 10, 1207},\n\tdictWord{7, 10, 1225},\n\tdictWord{7, 10, 1909},\n\tdictWord{146, 10, 147},\n\tdictWord{132, 0, 430},\n\tdictWord{5, 10, 285},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t67,\n\t},\n\tdictWord{13, 10, 473},\n\tdictWord{143, 10, 82},\n\tdictWord{144, 11, 16},\n\tdictWord{7, 11, 1162},\n\tdictWord{9, 11, 588},\n\tdictWord{10, 11, 260},\n\tdictWord{151, 10, 8},\n\tdictWord{133, 0, 213},\n\tdictWord{138, 0, 7},\n\tdictWord{135, 0, 801},\n\tdictWord{134, 11, 1786},\n\tdictWord{135, 11, 308},\n\tdictWord{6, 0, 936},\n\tdictWord{134, 0, 1289},\n\tdictWord{133, 0, 108},\n\tdictWord{132, 0, 885},\n\tdictWord{133, 0, 219},\n\tdictWord{139, 0, 587},\n\tdictWord{4, 0, 193},\n\tdictWord{5, 0, 916},\n\tdictWord{6, 0, 1041},\n\tdictWord{7, 0, 364},\n\tdictWord{10, 0, 398},\n\tdictWord{10, 0, 726},\n\tdictWord{11, 0, 317},\n\tdictWord{11, 0, 626},\n\tdictWord{12, 0, 142},\n\tdictWord{12, 0, 288},\n\tdictWord{12, 0, 678},\n\tdictWord{13, 0, 313},\n\tdictWord{15, 0, 113},\n\tdictWord{146, 0, 114},\n\tdictWord{135, 0, 1165},\n\tdictWord{6, 0, 241},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t342,\n\t},\n\tdictWord{10, 0, 729},\n\tdictWord{11, 0, 284},\n\tdictWord{11, 0, 445},\n\tdictWord{11, 0, 651},\n\tdictWord{11, 0, 863},\n\tdictWord{13, 0, 398},\n\tdictWord{\n\t\t146,\n\t\t0,\n\t\t99,\n\t},\n\tdictWord{7, 0, 907},\n\tdictWord{136, 0, 832},\n\tdictWord{9, 0, 303},\n\tdictWord{4, 10, 29},\n\tdictWord{6, 10, 532},\n\tdictWord{7, 10, 1628},\n\tdictWord{7, 10, 1648},\n\tdictWord{9, 10, 350},\n\tdictWord{10, 10, 433},\n\tdictWord{11, 10, 97},\n\tdictWord{11, 10, 557},\n\tdictWord{11, 10, 745},\n\tdictWord{12, 10, 289},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t335,\n\t},\n\tdictWord{12, 10, 348},\n\tdictWord{12, 10, 606},\n\tdictWord{13, 10, 116},\n\tdictWord{13, 10, 233},\n\tdictWord{13, 10, 466},\n\tdictWord{14, 10, 181},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t209,\n\t},\n\tdictWord{14, 10, 232},\n\tdictWord{14, 10, 236},\n\tdictWord{14, 10, 300},\n\tdictWord{16, 10, 41},\n\tdictWord{148, 10, 97},\n\tdictWord{7, 11, 423},\n\tdictWord{7, 10, 1692},\n\tdictWord{136, 11, 588},\n\tdictWord{6, 0, 931},\n\tdictWord{134, 0, 1454},\n\tdictWord{5, 10, 501},\n\tdictWord{7, 10, 1704},\n\tdictWord{9, 10, 553},\n\tdictWord{11, 10, 520},\n\tdictWord{12, 10, 557},\n\tdictWord{141, 10, 249},\n\tdictWord{136, 11, 287},\n\tdictWord{4, 0, 562},\n\tdictWord{9, 0, 254},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t879,\n\t},\n\tdictWord{132, 0, 786},\n\tdictWord{14, 11, 32},\n\tdictWord{18, 11, 85},\n\tdictWord{20, 11, 2},\n\tdictWord{152, 11, 16},\n\tdictWord{135, 0, 1294},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t723,\n\t},\n\tdictWord{135, 11, 1135},\n\tdictWord{6, 0, 216},\n\tdictWord{7, 0, 901},\n\tdictWord{7, 0, 1343},\n\tdictWord{8, 0, 493},\n\tdictWord{134, 11, 403},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t719,\n\t},\n\tdictWord{8, 11, 809},\n\tdictWord{136, 11, 834},\n\tdictWord{5, 11, 210},\n\tdictWord{6, 11, 213},\n\tdictWord{7, 11, 60},\n\tdictWord{10, 11, 364},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t135,\n\t},\n\tdictWord{7, 0, 341},\n\tdictWord{11, 0, 219},\n\tdictWord{5, 11, 607},\n\tdictWord{8, 11, 326},\n\tdictWord{136, 11, 490},\n\tdictWord{4, 11, 701},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t472,\n\t},\n\tdictWord{5, 11, 639},\n\tdictWord{7, 11, 1249},\n\tdictWord{9, 11, 758},\n\tdictWord{139, 11, 896},\n\tdictWord{135, 11, 380},\n\tdictWord{135, 11, 1947},\n\tdictWord{139, 0, 130},\n\tdictWord{135, 0, 1734},\n\tdictWord{10, 0, 115},\n\tdictWord{11, 0, 420},\n\tdictWord{12, 0, 154},\n\tdictWord{13, 0, 404},\n\tdictWord{14, 0, 346},\n\tdictWord{143, 0, 54},\n\tdictWord{134, 10, 129},\n\tdictWord{4, 11, 386},\n\tdictWord{7, 11, 41},\n\tdictWord{8, 11, 405},\n\tdictWord{9, 11, 497},\n\tdictWord{11, 11, 110},\n\tdictWord{11, 11, 360},\n\tdictWord{15, 11, 37},\n\tdictWord{144, 11, 84},\n\tdictWord{141, 11, 282},\n\tdictWord{5, 11, 46},\n\tdictWord{7, 11, 1452},\n\tdictWord{7, 11, 1480},\n\tdictWord{8, 11, 634},\n\tdictWord{140, 11, 472},\n\tdictWord{4, 11, 524},\n\tdictWord{136, 11, 810},\n\tdictWord{10, 11, 238},\n\tdictWord{141, 11, 33},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t604,\n\t},\n\tdictWord{5, 0, 1011},\n\tdictWord{136, 0, 701},\n\tdictWord{8, 0, 856},\n\tdictWord{8, 0, 858},\n\tdictWord{8, 0, 879},\n\tdictWord{12, 0, 702},\n\tdictWord{142, 0, 447},\n\tdictWord{4, 0, 54},\n\tdictWord{5, 0, 666},\n\tdictWord{7, 0, 1039},\n\tdictWord{7, 0, 1130},\n\tdictWord{9, 0, 195},\n\tdictWord{138, 0, 302},\n\tdictWord{4, 10, 25},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t60,\n\t},\n\tdictWord{6, 10, 504},\n\tdictWord{7, 10, 614},\n\tdictWord{7, 10, 1155},\n\tdictWord{140, 10, 0},\n\tdictWord{7, 10, 1248},\n\tdictWord{11, 10, 621},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t702,\n\t},\n\tdictWord{133, 11, 997},\n\tdictWord{137, 10, 321},\n\tdictWord{134, 0, 1669},\n\tdictWord{134, 0, 1791},\n\tdictWord{4, 10, 379},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1397,\n\t},\n\tdictWord{138, 11, 372},\n\tdictWord{5, 11, 782},\n\tdictWord{5, 11, 829},\n\tdictWord{134, 11, 1738},\n\tdictWord{135, 0, 1228},\n\tdictWord{4, 10, 118},\n\tdictWord{6, 10, 274},\n\tdictWord{6, 10, 361},\n\tdictWord{7, 10, 75},\n\tdictWord{141, 10, 441},\n\tdictWord{132, 0, 623},\n\tdictWord{9, 11, 279},\n\tdictWord{10, 11, 407},\n\tdictWord{14, 11, 84},\n\tdictWord{150, 11, 18},\n\tdictWord{137, 10, 841},\n\tdictWord{135, 0, 798},\n\tdictWord{140, 10, 693},\n\tdictWord{5, 10, 314},\n\tdictWord{6, 10, 221},\n\tdictWord{7, 10, 419},\n\tdictWord{10, 10, 650},\n\tdictWord{11, 10, 396},\n\tdictWord{12, 10, 156},\n\tdictWord{13, 10, 369},\n\tdictWord{14, 10, 333},\n\tdictWord{\n\t\t145,\n\t\t10,\n\t\t47,\n\t},\n\tdictWord{135, 11, 1372},\n\tdictWord{7, 0, 122},\n\tdictWord{9, 0, 259},\n\tdictWord{10, 0, 84},\n\tdictWord{11, 0, 470},\n\tdictWord{12, 0, 541},\n\tdictWord{\n\t\t141,\n\t\t0,\n\t\t379,\n\t},\n\tdictWord{134, 0, 837},\n\tdictWord{8, 0, 1013},\n\tdictWord{4, 11, 78},\n\tdictWord{5, 11, 96},\n\tdictWord{5, 11, 182},\n\tdictWord{7, 11, 1724},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1825,\n\t},\n\tdictWord{10, 11, 394},\n\tdictWord{10, 11, 471},\n\tdictWord{11, 11, 532},\n\tdictWord{14, 11, 340},\n\tdictWord{145, 11, 88},\n\tdictWord{134, 0, 577},\n\tdictWord{135, 11, 1964},\n\tdictWord{132, 10, 913},\n\tdictWord{134, 0, 460},\n\tdictWord{8, 0, 891},\n\tdictWord{10, 0, 901},\n\tdictWord{10, 0, 919},\n\tdictWord{10, 0, 932},\n\tdictWord{12, 0, 715},\n\tdictWord{12, 0, 728},\n\tdictWord{12, 0, 777},\n\tdictWord{14, 0, 457},\n\tdictWord{144, 0, 103},\n\tdictWord{5, 0, 82},\n\tdictWord{5, 0, 131},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1755,\n\t},\n\tdictWord{8, 0, 31},\n\tdictWord{9, 0, 168},\n\tdictWord{9, 0, 764},\n\tdictWord{139, 0, 869},\n\tdictWord{136, 10, 475},\n\tdictWord{6, 0, 605},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t1016,\n\t},\n\tdictWord{9, 11, 601},\n\tdictWord{9, 11, 619},\n\tdictWord{10, 11, 505},\n\tdictWord{10, 11, 732},\n\tdictWord{11, 11, 355},\n\tdictWord{140, 11, 139},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t602,\n\t},\n\tdictWord{8, 10, 179},\n\tdictWord{10, 10, 781},\n\tdictWord{140, 10, 126},\n\tdictWord{134, 0, 1246},\n\tdictWord{6, 10, 329},\n\tdictWord{138, 10, 111},\n\tdictWord{6, 11, 215},\n\tdictWord{7, 11, 1028},\n\tdictWord{7, 11, 1473},\n\tdictWord{7, 11, 1721},\n\tdictWord{9, 11, 424},\n\tdictWord{138, 11, 779},\n\tdictWord{5, 0, 278},\n\tdictWord{137, 0, 68},\n\tdictWord{6, 0, 932},\n\tdictWord{6, 0, 1084},\n\tdictWord{144, 0, 86},\n\tdictWord{4, 0, 163},\n\tdictWord{5, 0, 201},\n\tdictWord{5, 0, 307},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t310,\n\t},\n\tdictWord{6, 0, 335},\n\tdictWord{7, 0, 284},\n\tdictWord{7, 0, 1660},\n\tdictWord{136, 0, 165},\n\tdictWord{136, 0, 781},\n\tdictWord{134, 0, 707},\n\tdictWord{6, 0, 33},\n\tdictWord{135, 0, 1244},\n\tdictWord{5, 10, 821},\n\tdictWord{6, 11, 67},\n\tdictWord{6, 10, 1687},\n\tdictWord{7, 11, 258},\n\tdictWord{7, 11, 1630},\n\tdictWord{9, 11, 354},\n\tdictWord{9, 11, 675},\n\tdictWord{10, 11, 830},\n\tdictWord{14, 11, 80},\n\tdictWord{145, 11, 80},\n\tdictWord{6, 11, 141},\n\tdictWord{7, 11, 225},\n\tdictWord{9, 11, 59},\n\tdictWord{9, 11, 607},\n\tdictWord{10, 11, 312},\n\tdictWord{11, 11, 687},\n\tdictWord{12, 11, 555},\n\tdictWord{13, 11, 373},\n\tdictWord{13, 11, 494},\n\tdictWord{148, 11, 58},\n\tdictWord{134, 0, 1113},\n\tdictWord{9, 0, 388},\n\tdictWord{5, 10, 71},\n\tdictWord{7, 10, 1407},\n\tdictWord{9, 10, 704},\n\tdictWord{10, 10, 261},\n\tdictWord{10, 10, 619},\n\tdictWord{11, 10, 547},\n\tdictWord{11, 10, 619},\n\tdictWord{143, 10, 157},\n\tdictWord{7, 0, 1953},\n\tdictWord{136, 0, 720},\n\tdictWord{138, 0, 203},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t2008,\n\t},\n\tdictWord{9, 10, 337},\n\tdictWord{138, 10, 517},\n\tdictWord{6, 0, 326},\n\tdictWord{7, 0, 677},\n\tdictWord{137, 0, 425},\n\tdictWord{139, 11, 81},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1316,\n\t},\n\tdictWord{7, 0, 1412},\n\tdictWord{7, 0, 1839},\n\tdictWord{9, 0, 589},\n\tdictWord{11, 0, 241},\n\tdictWord{11, 0, 676},\n\tdictWord{11, 0, 811},\n\tdictWord{11, 0, 891},\n\tdictWord{12, 0, 140},\n\tdictWord{12, 0, 346},\n\tdictWord{12, 0, 479},\n\tdictWord{13, 0, 140},\n\tdictWord{13, 0, 381},\n\tdictWord{14, 0, 188},\n\tdictWord{18, 0, 30},\n\tdictWord{148, 0, 108},\n\tdictWord{5, 0, 416},\n\tdictWord{6, 10, 86},\n\tdictWord{6, 10, 603},\n\tdictWord{7, 10, 292},\n\tdictWord{7, 10, 561},\n\tdictWord{8, 10, 257},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t382,\n\t},\n\tdictWord{9, 10, 721},\n\tdictWord{9, 10, 778},\n\tdictWord{11, 10, 581},\n\tdictWord{140, 10, 466},\n\tdictWord{4, 10, 486},\n\tdictWord{133, 10, 491},\n\tdictWord{134, 0, 1300},\n\tdictWord{132, 10, 72},\n\tdictWord{7, 0, 847},\n\tdictWord{6, 10, 265},\n\tdictWord{7, 11, 430},\n\tdictWord{139, 11, 46},\n\tdictWord{5, 11, 602},\n\tdictWord{6, 11, 106},\n\tdictWord{7, 11, 1786},\n\tdictWord{7, 11, 1821},\n\tdictWord{7, 11, 2018},\n\tdictWord{9, 11, 418},\n\tdictWord{137, 11, 763},\n\tdictWord{5, 0, 358},\n\tdictWord{7, 0, 535},\n\tdictWord{7, 0, 1184},\n\tdictWord{10, 0, 662},\n\tdictWord{13, 0, 212},\n\tdictWord{13, 0, 304},\n\tdictWord{13, 0, 333},\n\tdictWord{145, 0, 98},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t65,\n\t},\n\tdictWord{6, 11, 416},\n\tdictWord{7, 11, 1720},\n\tdictWord{7, 11, 1924},\n\tdictWord{8, 11, 677},\n\tdictWord{10, 11, 109},\n\tdictWord{11, 11, 14},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t70,\n\t},\n\tdictWord{11, 11, 569},\n\tdictWord{11, 11, 735},\n\tdictWord{15, 11, 153},\n\tdictWord{148, 11, 80},\n\tdictWord{6, 0, 1823},\n\tdictWord{8, 0, 839},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t852,\n\t},\n\tdictWord{8, 0, 903},\n\tdictWord{10, 0, 940},\n\tdictWord{12, 0, 707},\n\tdictWord{140, 0, 775},\n\tdictWord{135, 11, 1229},\n\tdictWord{6, 0, 1522},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t654,\n\t},\n\tdictWord{136, 11, 595},\n\tdictWord{139, 0, 163},\n\tdictWord{141, 0, 314},\n\tdictWord{132, 0, 978},\n\tdictWord{4, 0, 601},\n\tdictWord{6, 0, 2035},\n\tdictWord{137, 10, 234},\n\tdictWord{5, 10, 815},\n\tdictWord{6, 10, 1688},\n\tdictWord{134, 10, 1755},\n\tdictWord{133, 0, 946},\n\tdictWord{136, 0, 434},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t197,\n\t},\n\tdictWord{136, 10, 205},\n\tdictWord{7, 0, 411},\n\tdictWord{7, 0, 590},\n\tdictWord{8, 0, 631},\n\tdictWord{9, 0, 323},\n\tdictWord{10, 0, 355},\n\tdictWord{11, 0, 491},\n\tdictWord{12, 0, 143},\n\tdictWord{12, 0, 402},\n\tdictWord{13, 0, 73},\n\tdictWord{14, 0, 408},\n\tdictWord{15, 0, 107},\n\tdictWord{146, 0, 71},\n\tdictWord{7, 0, 1467},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t328,\n\t},\n\tdictWord{10, 0, 544},\n\tdictWord{11, 0, 955},\n\tdictWord{12, 0, 13},\n\tdictWord{13, 0, 320},\n\tdictWord{145, 0, 83},\n\tdictWord{142, 0, 410},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t511,\n\t},\n\tdictWord{13, 0, 394},\n\tdictWord{14, 0, 298},\n\tdictWord{14, 0, 318},\n\tdictWord{146, 0, 103},\n\tdictWord{6, 10, 452},\n\tdictWord{7, 10, 312},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t219,\n\t},\n\tdictWord{138, 10, 589},\n\tdictWord{4, 10, 333},\n\tdictWord{9, 10, 176},\n\tdictWord{12, 10, 353},\n\tdictWord{141, 10, 187},\n\tdictWord{135, 11, 329},\n\tdictWord{132, 11, 469},\n\tdictWord{5, 0, 835},\n\tdictWord{134, 0, 483},\n\tdictWord{134, 11, 1743},\n\tdictWord{5, 11, 929},\n\tdictWord{6, 11, 340},\n\tdictWord{8, 11, 376},\n\tdictWord{136, 11, 807},\n\tdictWord{134, 10, 1685},\n\tdictWord{132, 0, 677},\n\tdictWord{5, 11, 218},\n\tdictWord{7, 11, 1610},\n\tdictWord{138, 11, 83},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t571,\n\t},\n\tdictWord{135, 11, 1842},\n\tdictWord{132, 11, 455},\n\tdictWord{137, 0, 70},\n\tdictWord{135, 0, 1405},\n\tdictWord{7, 10, 135},\n\tdictWord{8, 10, 7},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t62,\n\t},\n\tdictWord{9, 10, 243},\n\tdictWord{10, 10, 658},\n\tdictWord{10, 10, 697},\n\tdictWord{11, 10, 456},\n\tdictWord{139, 10, 756},\n\tdictWord{9, 10, 395},\n\tdictWord{138, 10, 79},\n\tdictWord{137, 0, 108},\n\tdictWord{6, 11, 161},\n\tdictWord{7, 11, 372},\n\tdictWord{137, 11, 597},\n\tdictWord{132, 11, 349},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t777,\n\t},\n\tdictWord{132, 0, 331},\n\tdictWord{135, 10, 631},\n\tdictWord{133, 0, 747},\n\tdictWord{6, 11, 432},\n\tdictWord{6, 11, 608},\n\tdictWord{139, 11, 322},\n\tdictWord{138, 10, 835},\n\tdictWord{5, 11, 468},\n\tdictWord{7, 11, 1809},\n\tdictWord{10, 11, 325},\n\tdictWord{11, 11, 856},\n\tdictWord{12, 11, 345},\n\tdictWord{\n\t\t143,\n\t\t11,\n\t\t104,\n\t},\n\tdictWord{133, 11, 223},\n\tdictWord{7, 10, 406},\n\tdictWord{7, 10, 459},\n\tdictWord{8, 10, 606},\n\tdictWord{139, 10, 726},\n\tdictWord{132, 11, 566},\n\tdictWord{142, 0, 68},\n\tdictWord{4, 11, 59},\n\tdictWord{135, 11, 1394},\n\tdictWord{6, 11, 436},\n\tdictWord{139, 11, 481},\n\tdictWord{4, 11, 48},\n\tdictWord{5, 11, 271},\n\tdictWord{135, 11, 953},\n\tdictWord{139, 11, 170},\n\tdictWord{5, 11, 610},\n\tdictWord{136, 11, 457},\n\tdictWord{133, 11, 755},\n\tdictWord{135, 11, 1217},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t612,\n\t},\n\tdictWord{132, 11, 197},\n\tdictWord{132, 0, 505},\n\tdictWord{4, 10, 372},\n\tdictWord{7, 10, 482},\n\tdictWord{8, 10, 158},\n\tdictWord{9, 10, 602},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t615,\n\t},\n\tdictWord{10, 10, 245},\n\tdictWord{10, 10, 678},\n\tdictWord{10, 10, 744},\n\tdictWord{11, 10, 248},\n\tdictWord{139, 10, 806},\n\tdictWord{133, 0, 326},\n\tdictWord{5, 10, 854},\n\tdictWord{135, 10, 1991},\n\tdictWord{4, 0, 691},\n\tdictWord{146, 0, 16},\n\tdictWord{6, 0, 628},\n\tdictWord{9, 0, 35},\n\tdictWord{10, 0, 680},\n\tdictWord{10, 0, 793},\n\tdictWord{11, 0, 364},\n\tdictWord{13, 0, 357},\n\tdictWord{143, 0, 164},\n\tdictWord{138, 0, 654},\n\tdictWord{6, 0, 32},\n\tdictWord{7, 0, 385},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t757,\n\t},\n\tdictWord{7, 0, 1916},\n\tdictWord{8, 0, 37},\n\tdictWord{8, 0, 94},\n\tdictWord{8, 0, 711},\n\tdictWord{9, 0, 541},\n\tdictWord{10, 0, 162},\n\tdictWord{10, 0, 795},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t989,\n\t},\n\tdictWord{11, 0, 1010},\n\tdictWord{12, 0, 14},\n\tdictWord{142, 0, 308},\n\tdictWord{133, 11, 217},\n\tdictWord{6, 0, 152},\n\tdictWord{6, 0, 349},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1682,\n\t},\n\tdictWord{7, 0, 1252},\n\tdictWord{8, 0, 112},\n\tdictWord{9, 0, 435},\n\tdictWord{9, 0, 668},\n\tdictWord{10, 0, 290},\n\tdictWord{10, 0, 319},\n\tdictWord{10, 0, 815},\n\tdictWord{11, 0, 180},\n\tdictWord{11, 0, 837},\n\tdictWord{12, 0, 240},\n\tdictWord{13, 0, 152},\n\tdictWord{13, 0, 219},\n\tdictWord{142, 0, 158},\n\tdictWord{4, 0, 581},\n\tdictWord{134, 0, 726},\n\tdictWord{5, 10, 195},\n\tdictWord{135, 10, 1685},\n\tdictWord{6, 0, 126},\n\tdictWord{7, 0, 573},\n\tdictWord{8, 0, 397},\n\tdictWord{142, 0, 44},\n\tdictWord{138, 0, 89},\n\tdictWord{7, 10, 1997},\n\tdictWord{8, 10, 730},\n\tdictWord{139, 10, 1006},\n\tdictWord{134, 0, 1531},\n\tdictWord{134, 0, 1167},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t926,\n\t},\n\tdictWord{12, 0, 203},\n\tdictWord{133, 10, 751},\n\tdictWord{4, 11, 165},\n\tdictWord{7, 11, 1398},\n\tdictWord{135, 11, 1829},\n\tdictWord{7, 0, 1232},\n\tdictWord{137, 0, 531},\n\tdictWord{135, 10, 821},\n\tdictWord{134, 0, 943},\n\tdictWord{133, 0, 670},\n\tdictWord{4, 0, 880},\n\tdictWord{139, 0, 231},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1617,\n\t},\n\tdictWord{135, 0, 1957},\n\tdictWord{5, 11, 9},\n\tdictWord{7, 11, 297},\n\tdictWord{7, 11, 966},\n\tdictWord{140, 11, 306},\n\tdictWord{6, 0, 975},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t985,\n\t},\n\tdictWord{5, 10, 950},\n\tdictWord{5, 10, 994},\n\tdictWord{134, 10, 351},\n\tdictWord{12, 11, 21},\n\tdictWord{151, 11, 7},\n\tdictWord{5, 11, 146},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t411,\n\t},\n\tdictWord{138, 11, 721},\n\tdictWord{7, 0, 242},\n\tdictWord{135, 0, 1942},\n\tdictWord{6, 11, 177},\n\tdictWord{135, 11, 467},\n\tdictWord{5, 0, 421},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t47,\n\t},\n\tdictWord{137, 10, 684},\n\tdictWord{5, 0, 834},\n\tdictWord{7, 0, 1202},\n\tdictWord{8, 0, 14},\n\tdictWord{9, 0, 481},\n\tdictWord{137, 0, 880},\n\tdictWord{138, 0, 465},\n\tdictWord{6, 0, 688},\n\tdictWord{9, 0, 834},\n\tdictWord{132, 10, 350},\n\tdictWord{132, 0, 855},\n\tdictWord{4, 0, 357},\n\tdictWord{6, 0, 172},\n\tdictWord{7, 0, 143},\n\tdictWord{137, 0, 413},\n\tdictWord{133, 11, 200},\n\tdictWord{132, 0, 590},\n\tdictWord{7, 10, 1812},\n\tdictWord{13, 10, 259},\n\tdictWord{13, 10, 356},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t242,\n\t},\n\tdictWord{147, 10, 114},\n\tdictWord{133, 10, 967},\n\tdictWord{11, 0, 114},\n\tdictWord{4, 10, 473},\n\tdictWord{7, 10, 623},\n\tdictWord{8, 10, 808},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t871,\n\t},\n\tdictWord{9, 10, 893},\n\tdictWord{11, 10, 431},\n\tdictWord{12, 10, 112},\n\tdictWord{12, 10, 217},\n\tdictWord{12, 10, 243},\n\tdictWord{12, 10, 562},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t663,\n\t},\n\tdictWord{12, 10, 683},\n\tdictWord{13, 10, 141},\n\tdictWord{13, 10, 197},\n\tdictWord{13, 10, 227},\n\tdictWord{13, 10, 406},\n\tdictWord{13, 10, 487},\n\tdictWord{14, 10, 156},\n\tdictWord{14, 10, 203},\n\tdictWord{14, 10, 224},\n\tdictWord{14, 10, 256},\n\tdictWord{18, 10, 58},\n\tdictWord{150, 10, 0},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t286,\n\t},\n\tdictWord{4, 10, 222},\n\tdictWord{7, 10, 286},\n\tdictWord{136, 10, 629},\n\tdictWord{5, 0, 169},\n\tdictWord{7, 0, 333},\n\tdictWord{136, 0, 45},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t481,\n\t},\n\tdictWord{132, 0, 198},\n\tdictWord{4, 0, 24},\n\tdictWord{5, 0, 140},\n\tdictWord{5, 0, 185},\n\tdictWord{7, 0, 1500},\n\tdictWord{11, 0, 565},\n\tdictWord{11, 0, 838},\n\tdictWord{4, 11, 84},\n\tdictWord{7, 11, 1482},\n\tdictWord{10, 11, 76},\n\tdictWord{138, 11, 142},\n\tdictWord{133, 0, 585},\n\tdictWord{141, 10, 306},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t1015,\n\t},\n\tdictWord{4, 11, 315},\n\tdictWord{5, 11, 507},\n\tdictWord{135, 11, 1370},\n\tdictWord{136, 10, 146},\n\tdictWord{6, 0, 691},\n\tdictWord{134, 0, 1503},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t334,\n\t},\n\tdictWord{133, 0, 593},\n\tdictWord{4, 10, 465},\n\tdictWord{135, 10, 1663},\n\tdictWord{142, 11, 173},\n\tdictWord{135, 0, 913},\n\tdictWord{12, 0, 116},\n\tdictWord{134, 11, 1722},\n\tdictWord{134, 0, 1360},\n\tdictWord{132, 0, 802},\n\tdictWord{8, 11, 222},\n\tdictWord{8, 11, 476},\n\tdictWord{9, 11, 238},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t516,\n\t},\n\tdictWord{11, 11, 575},\n\tdictWord{15, 11, 109},\n\tdictWord{146, 11, 100},\n\tdictWord{6, 0, 308},\n\tdictWord{9, 0, 673},\n\tdictWord{7, 10, 138},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t517,\n\t},\n\tdictWord{139, 10, 238},\n\tdictWord{132, 0, 709},\n\tdictWord{6, 0, 1876},\n\tdictWord{6, 0, 1895},\n\tdictWord{9, 0, 994},\n\tdictWord{9, 0, 1006},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t829,\n\t},\n\tdictWord{12, 0, 888},\n\tdictWord{12, 0, 891},\n\tdictWord{146, 0, 185},\n\tdictWord{148, 10, 94},\n\tdictWord{4, 0, 228},\n\tdictWord{133, 0, 897},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1840,\n\t},\n\tdictWord{5, 10, 495},\n\tdictWord{7, 10, 834},\n\tdictWord{9, 10, 733},\n\tdictWord{139, 10, 378},\n\tdictWord{133, 10, 559},\n\tdictWord{6, 10, 21},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1737,\n\t},\n\tdictWord{7, 10, 1444},\n\tdictWord{136, 10, 224},\n\tdictWord{4, 0, 608},\n\tdictWord{133, 0, 497},\n\tdictWord{6, 11, 40},\n\tdictWord{135, 11, 1781},\n\tdictWord{134, 0, 1573},\n\tdictWord{135, 0, 2039},\n\tdictWord{6, 0, 540},\n\tdictWord{136, 0, 136},\n\tdictWord{4, 0, 897},\n\tdictWord{5, 0, 786},\n\tdictWord{133, 10, 519},\n\tdictWord{6, 0, 1878},\n\tdictWord{6, 0, 1884},\n\tdictWord{9, 0, 938},\n\tdictWord{9, 0, 948},\n\tdictWord{9, 0, 955},\n\tdictWord{9, 0, 973},\n\tdictWord{9, 0, 1012},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t895,\n\t},\n\tdictWord{12, 0, 927},\n\tdictWord{143, 0, 254},\n\tdictWord{134, 0, 1469},\n\tdictWord{133, 0, 999},\n\tdictWord{4, 0, 299},\n\tdictWord{135, 0, 1004},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t745,\n\t},\n\tdictWord{133, 0, 578},\n\tdictWord{136, 11, 574},\n\tdictWord{133, 0, 456},\n\tdictWord{134, 0, 1457},\n\tdictWord{7, 0, 1679},\n\tdictWord{132, 10, 402},\n\tdictWord{7, 0, 693},\n\tdictWord{8, 0, 180},\n\tdictWord{12, 0, 163},\n\tdictWord{8, 10, 323},\n\tdictWord{136, 10, 479},\n\tdictWord{11, 10, 580},\n\tdictWord{142, 10, 201},\n\tdictWord{5, 10, 59},\n\tdictWord{135, 10, 672},\n\tdictWord{132, 11, 354},\n\tdictWord{146, 10, 34},\n\tdictWord{4, 0, 755},\n\tdictWord{135, 11, 1558},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1740,\n\t},\n\tdictWord{146, 0, 48},\n\tdictWord{4, 10, 85},\n\tdictWord{135, 10, 549},\n\tdictWord{139, 0, 338},\n\tdictWord{133, 10, 94},\n\tdictWord{134, 0, 1091},\n\tdictWord{135, 11, 469},\n\tdictWord{12, 0, 695},\n\tdictWord{12, 0, 704},\n\tdictWord{20, 0, 113},\n\tdictWord{5, 11, 830},\n\tdictWord{14, 11, 338},\n\tdictWord{148, 11, 81},\n\tdictWord{135, 0, 1464},\n\tdictWord{6, 10, 11},\n\tdictWord{135, 10, 187},\n\tdictWord{135, 0, 975},\n\tdictWord{13, 0, 335},\n\tdictWord{132, 10, 522},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1979,\n\t},\n\tdictWord{5, 11, 496},\n\tdictWord{135, 11, 203},\n\tdictWord{4, 10, 52},\n\tdictWord{135, 10, 661},\n\tdictWord{7, 0, 1566},\n\tdictWord{8, 0, 269},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t212,\n\t},\n\tdictWord{9, 0, 718},\n\tdictWord{14, 0, 15},\n\tdictWord{14, 0, 132},\n\tdictWord{142, 0, 227},\n\tdictWord{4, 0, 890},\n\tdictWord{5, 0, 805},\n\tdictWord{5, 0, 819},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t961,\n\t},\n\tdictWord{6, 0, 396},\n\tdictWord{6, 0, 1631},\n\tdictWord{6, 0, 1678},\n\tdictWord{7, 0, 1967},\n\tdictWord{7, 0, 2041},\n\tdictWord{9, 0, 630},\n\tdictWord{11, 0, 8},\n\tdictWord{11, 0, 1019},\n\tdictWord{12, 0, 176},\n\tdictWord{13, 0, 225},\n\tdictWord{14, 0, 292},\n\tdictWord{21, 0, 24},\n\tdictWord{4, 10, 383},\n\tdictWord{133, 10, 520},\n\tdictWord{134, 11, 547},\n\tdictWord{135, 11, 1748},\n\tdictWord{5, 11, 88},\n\tdictWord{137, 11, 239},\n\tdictWord{146, 11, 128},\n\tdictWord{7, 11, 650},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1310,\n\t},\n\tdictWord{4, 10, 281},\n\tdictWord{5, 10, 38},\n\tdictWord{7, 10, 194},\n\tdictWord{7, 10, 668},\n\tdictWord{7, 10, 1893},\n\tdictWord{137, 10, 397},\n\tdictWord{135, 0, 1815},\n\tdictWord{9, 10, 635},\n\tdictWord{139, 10, 559},\n\tdictWord{7, 0, 1505},\n\tdictWord{10, 0, 190},\n\tdictWord{10, 0, 634},\n\tdictWord{11, 0, 792},\n\tdictWord{12, 0, 358},\n\tdictWord{140, 0, 447},\n\tdictWord{5, 0, 0},\n\tdictWord{6, 0, 536},\n\tdictWord{7, 0, 604},\n\tdictWord{13, 0, 445},\n\tdictWord{145, 0, 126},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1076,\n\t},\n\tdictWord{9, 11, 80},\n\tdictWord{11, 11, 78},\n\tdictWord{11, 11, 421},\n\tdictWord{11, 11, 534},\n\tdictWord{140, 11, 545},\n\tdictWord{8, 0, 966},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t1023,\n\t},\n\tdictWord{14, 11, 369},\n\tdictWord{146, 11, 72},\n\tdictWord{135, 11, 1641},\n\tdictWord{6, 0, 232},\n\tdictWord{6, 0, 412},\n\tdictWord{7, 0, 1074},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t9,\n\t},\n\tdictWord{8, 0, 157},\n\tdictWord{8, 0, 786},\n\tdictWord{9, 0, 196},\n\tdictWord{9, 0, 352},\n\tdictWord{9, 0, 457},\n\tdictWord{10, 0, 337},\n\tdictWord{11, 0, 232},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t877,\n\t},\n\tdictWord{12, 0, 480},\n\tdictWord{140, 0, 546},\n\tdictWord{135, 0, 958},\n\tdictWord{4, 0, 382},\n\tdictWord{136, 0, 579},\n\tdictWord{4, 0, 212},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1206,\n\t},\n\tdictWord{4, 11, 497},\n\tdictWord{5, 11, 657},\n\tdictWord{135, 11, 1584},\n\tdictWord{132, 0, 681},\n\tdictWord{8, 0, 971},\n\tdictWord{138, 0, 965},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t448,\n\t},\n\tdictWord{136, 10, 535},\n\tdictWord{14, 0, 16},\n\tdictWord{146, 0, 44},\n\tdictWord{11, 0, 584},\n\tdictWord{11, 0, 616},\n\tdictWord{14, 0, 275},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t584,\n\t},\n\tdictWord{11, 11, 616},\n\tdictWord{142, 11, 275},\n\tdictWord{136, 11, 13},\n\tdictWord{7, 10, 610},\n\tdictWord{135, 10, 1501},\n\tdictWord{7, 11, 642},\n\tdictWord{8, 11, 250},\n\tdictWord{11, 11, 123},\n\tdictWord{11, 11, 137},\n\tdictWord{13, 11, 48},\n\tdictWord{142, 11, 95},\n\tdictWord{133, 0, 655},\n\tdictWord{17, 0, 67},\n\tdictWord{147, 0, 74},\n\tdictWord{134, 0, 751},\n\tdictWord{134, 0, 1967},\n\tdictWord{6, 0, 231},\n\tdictWord{136, 0, 423},\n\tdictWord{5, 0, 300},\n\tdictWord{138, 0, 1016},\n\tdictWord{4, 10, 319},\n\tdictWord{5, 10, 699},\n\tdictWord{138, 10, 673},\n\tdictWord{6, 0, 237},\n\tdictWord{7, 0, 611},\n\tdictWord{8, 0, 100},\n\tdictWord{9, 0, 416},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t335,\n\t},\n\tdictWord{12, 0, 173},\n\tdictWord{18, 0, 101},\n\tdictWord{6, 10, 336},\n\tdictWord{8, 10, 552},\n\tdictWord{9, 10, 285},\n\tdictWord{10, 10, 99},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t568,\n\t},\n\tdictWord{134, 0, 1370},\n\tdictWord{7, 10, 1406},\n\tdictWord{9, 10, 218},\n\tdictWord{141, 10, 222},\n\tdictWord{133, 10, 256},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1208,\n\t},\n\tdictWord{14, 11, 213},\n\tdictWord{148, 11, 38},\n\tdictWord{6, 0, 1219},\n\tdictWord{135, 11, 1642},\n\tdictWord{13, 0, 417},\n\tdictWord{14, 0, 129},\n\tdictWord{143, 0, 15},\n\tdictWord{10, 11, 545},\n\tdictWord{140, 11, 301},\n\tdictWord{17, 10, 39},\n\tdictWord{148, 10, 36},\n\tdictWord{133, 0, 199},\n\tdictWord{4, 11, 904},\n\tdictWord{133, 11, 794},\n\tdictWord{12, 0, 427},\n\tdictWord{146, 0, 38},\n\tdictWord{134, 0, 949},\n\tdictWord{8, 0, 665},\n\tdictWord{135, 10, 634},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t618,\n\t},\n\tdictWord{135, 10, 259},\n\tdictWord{132, 10, 339},\n\tdictWord{133, 11, 761},\n\tdictWord{141, 10, 169},\n\tdictWord{132, 10, 759},\n\tdictWord{5, 0, 688},\n\tdictWord{7, 0, 539},\n\tdictWord{135, 0, 712},\n\tdictWord{7, 11, 386},\n\tdictWord{138, 11, 713},\n\tdictWord{134, 0, 1186},\n\tdictWord{6, 11, 7},\n\tdictWord{6, 11, 35},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t147,\n\t},\n\tdictWord{7, 11, 1069},\n\tdictWord{7, 11, 1568},\n\tdictWord{7, 11, 1575},\n\tdictWord{7, 11, 1917},\n\tdictWord{8, 11, 43},\n\tdictWord{8, 11, 208},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t128,\n\t},\n\tdictWord{9, 11, 866},\n\tdictWord{10, 11, 20},\n\tdictWord{11, 11, 981},\n\tdictWord{147, 11, 33},\n\tdictWord{7, 11, 893},\n\tdictWord{8, 10, 482},\n\tdictWord{141, 11, 424},\n\tdictWord{6, 0, 312},\n\tdictWord{6, 0, 1715},\n\tdictWord{10, 0, 584},\n\tdictWord{11, 0, 546},\n\tdictWord{11, 0, 692},\n\tdictWord{12, 0, 259},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t295,\n\t},\n\tdictWord{13, 0, 46},\n\tdictWord{141, 0, 154},\n\tdictWord{5, 10, 336},\n\tdictWord{6, 10, 341},\n\tdictWord{6, 10, 478},\n\tdictWord{6, 10, 1763},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t386,\n\t},\n\tdictWord{137, 0, 151},\n\tdictWord{132, 0, 588},\n\tdictWord{152, 0, 4},\n\tdictWord{6, 11, 322},\n\tdictWord{9, 11, 552},\n\tdictWord{11, 11, 274},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t209,\n\t},\n\tdictWord{13, 11, 499},\n\tdictWord{14, 11, 85},\n\tdictWord{15, 11, 126},\n\tdictWord{145, 11, 70},\n\tdictWord{135, 10, 73},\n\tdictWord{4, 0, 231},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t61,\n\t},\n\tdictWord{6, 0, 104},\n\tdictWord{7, 0, 729},\n\tdictWord{7, 0, 964},\n\tdictWord{7, 0, 1658},\n\tdictWord{140, 0, 414},\n\tdictWord{6, 0, 263},\n\tdictWord{138, 0, 757},\n\tdictWord{135, 10, 1971},\n\tdictWord{4, 0, 612},\n\tdictWord{133, 0, 561},\n\tdictWord{132, 0, 320},\n\tdictWord{135, 10, 1344},\n\tdictWord{8, 11, 83},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t817,\n\t},\n\tdictWord{9, 11, 28},\n\tdictWord{9, 11, 29},\n\tdictWord{9, 11, 885},\n\tdictWord{10, 11, 387},\n\tdictWord{11, 11, 633},\n\tdictWord{11, 11, 740},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t235,\n\t},\n\tdictWord{13, 11, 254},\n\tdictWord{15, 11, 143},\n\tdictWord{143, 11, 146},\n\tdictWord{5, 10, 396},\n\tdictWord{134, 10, 501},\n\tdictWord{140, 11, 49},\n\tdictWord{132, 0, 225},\n\tdictWord{4, 10, 929},\n\tdictWord{5, 10, 799},\n\tdictWord{8, 10, 46},\n\tdictWord{136, 10, 740},\n\tdictWord{4, 0, 405},\n\tdictWord{7, 0, 817},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t58,\n\t},\n\tdictWord{17, 0, 37},\n\tdictWord{146, 0, 124},\n\tdictWord{133, 0, 974},\n\tdictWord{4, 11, 412},\n\tdictWord{133, 11, 581},\n\tdictWord{4, 10, 892},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t770,\n\t},\n\tdictWord{4, 0, 996},\n\tdictWord{134, 0, 2026},\n\tdictWord{4, 0, 527},\n\tdictWord{5, 0, 235},\n\tdictWord{7, 0, 1239},\n\tdictWord{11, 0, 131},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t370,\n\t},\n\tdictWord{9, 0, 16},\n\tdictWord{13, 0, 386},\n\tdictWord{135, 11, 421},\n\tdictWord{7, 0, 956},\n\tdictWord{7, 0, 1157},\n\tdictWord{7, 0, 1506},\n\tdictWord{7, 0, 1606},\n\tdictWord{7, 0, 1615},\n\tdictWord{7, 0, 1619},\n\tdictWord{7, 0, 1736},\n\tdictWord{7, 0, 1775},\n\tdictWord{8, 0, 590},\n\tdictWord{9, 0, 324},\n\tdictWord{9, 0, 736},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t774,\n\t},\n\tdictWord{9, 0, 776},\n\tdictWord{9, 0, 784},\n\tdictWord{10, 0, 567},\n\tdictWord{10, 0, 708},\n\tdictWord{11, 0, 518},\n\tdictWord{11, 0, 613},\n\tdictWord{11, 0, 695},\n\tdictWord{11, 0, 716},\n\tdictWord{11, 0, 739},\n\tdictWord{11, 0, 770},\n\tdictWord{11, 0, 771},\n\tdictWord{11, 0, 848},\n\tdictWord{11, 0, 857},\n\tdictWord{11, 0, 931},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t947,\n\t},\n\tdictWord{12, 0, 326},\n\tdictWord{12, 0, 387},\n\tdictWord{12, 0, 484},\n\tdictWord{12, 0, 528},\n\tdictWord{12, 0, 552},\n\tdictWord{12, 0, 613},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t189,\n\t},\n\tdictWord{13, 0, 256},\n\tdictWord{13, 0, 340},\n\tdictWord{13, 0, 432},\n\tdictWord{13, 0, 436},\n\tdictWord{13, 0, 440},\n\tdictWord{13, 0, 454},\n\tdictWord{14, 0, 174},\n\tdictWord{14, 0, 220},\n\tdictWord{14, 0, 284},\n\tdictWord{14, 0, 390},\n\tdictWord{145, 0, 121},\n\tdictWord{135, 10, 158},\n\tdictWord{9, 0, 137},\n\tdictWord{138, 0, 221},\n\tdictWord{4, 11, 110},\n\tdictWord{10, 11, 415},\n\tdictWord{10, 11, 597},\n\tdictWord{142, 11, 206},\n\tdictWord{141, 11, 496},\n\tdictWord{135, 11, 205},\n\tdictWord{\n\t\t151,\n\t\t10,\n\t\t25,\n\t},\n\tdictWord{135, 11, 778},\n\tdictWord{7, 11, 1656},\n\tdictWord{7, 10, 2001},\n\tdictWord{9, 11, 369},\n\tdictWord{10, 11, 338},\n\tdictWord{10, 11, 490},\n\tdictWord{11, 11, 154},\n\tdictWord{11, 11, 545},\n\tdictWord{11, 11, 775},\n\tdictWord{13, 11, 77},\n\tdictWord{141, 11, 274},\n\tdictWord{4, 11, 444},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t146,\n\t},\n\tdictWord{140, 11, 9},\n\tdictWord{7, 0, 390},\n\tdictWord{138, 0, 140},\n\tdictWord{135, 0, 1144},\n\tdictWord{134, 0, 464},\n\tdictWord{7, 10, 1461},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t91,\n\t},\n\tdictWord{132, 10, 602},\n\tdictWord{4, 11, 283},\n\tdictWord{135, 11, 1194},\n\tdictWord{5, 0, 407},\n\tdictWord{11, 0, 204},\n\tdictWord{11, 0, 243},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t489,\n\t},\n\tdictWord{12, 0, 293},\n\tdictWord{19, 0, 37},\n\tdictWord{20, 0, 73},\n\tdictWord{150, 0, 38},\n\tdictWord{7, 0, 1218},\n\tdictWord{136, 0, 303},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t325,\n\t},\n\tdictWord{8, 0, 5},\n\tdictWord{8, 0, 227},\n\tdictWord{9, 0, 105},\n\tdictWord{10, 0, 585},\n\tdictWord{12, 0, 614},\n\tdictWord{4, 10, 13},\n\tdictWord{5, 10, 567},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1498,\n\t},\n\tdictWord{9, 10, 124},\n\tdictWord{11, 10, 521},\n\tdictWord{140, 10, 405},\n\tdictWord{135, 10, 1006},\n\tdictWord{7, 0, 800},\n\tdictWord{10, 0, 12},\n\tdictWord{134, 11, 1720},\n\tdictWord{135, 0, 1783},\n\tdictWord{132, 10, 735},\n\tdictWord{138, 10, 812},\n\tdictWord{4, 10, 170},\n\tdictWord{135, 10, 323},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t621,\n\t},\n\tdictWord{13, 0, 504},\n\tdictWord{144, 0, 89},\n\tdictWord{5, 10, 304},\n\tdictWord{135, 10, 1403},\n\tdictWord{137, 11, 216},\n\tdictWord{6, 0, 920},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1104,\n\t},\n\tdictWord{9, 11, 183},\n\tdictWord{139, 11, 286},\n\tdictWord{4, 0, 376},\n\tdictWord{133, 10, 742},\n\tdictWord{134, 0, 218},\n\tdictWord{8, 0, 641},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t388,\n\t},\n\tdictWord{140, 0, 580},\n\tdictWord{7, 0, 454},\n\tdictWord{7, 0, 782},\n\tdictWord{8, 0, 768},\n\tdictWord{140, 0, 686},\n\tdictWord{137, 11, 33},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t111,\n\t},\n\tdictWord{144, 0, 0},\n\tdictWord{10, 0, 676},\n\tdictWord{140, 0, 462},\n\tdictWord{6, 0, 164},\n\tdictWord{136, 11, 735},\n\tdictWord{133, 10, 444},\n\tdictWord{\n\t\t150,\n\t\t0,\n\t\t50,\n\t},\n\tdictWord{7, 11, 1862},\n\tdictWord{12, 11, 491},\n\tdictWord{12, 11, 520},\n\tdictWord{13, 11, 383},\n\tdictWord{14, 11, 244},\n\tdictWord{146, 11, 12},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t132,\n\t},\n\tdictWord{9, 11, 486},\n\tdictWord{9, 11, 715},\n\tdictWord{10, 11, 458},\n\tdictWord{11, 11, 373},\n\tdictWord{11, 11, 668},\n\tdictWord{11, 11, 795},\n\tdictWord{11, 11, 897},\n\tdictWord{12, 11, 272},\n\tdictWord{12, 11, 424},\n\tdictWord{12, 11, 539},\n\tdictWord{12, 11, 558},\n\tdictWord{14, 11, 245},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t263,\n\t},\n\tdictWord{14, 11, 264},\n\tdictWord{14, 11, 393},\n\tdictWord{142, 11, 403},\n\tdictWord{8, 10, 123},\n\tdictWord{15, 10, 6},\n\tdictWord{144, 10, 7},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t285,\n\t},\n\tdictWord{8, 0, 654},\n\tdictWord{11, 0, 749},\n\tdictWord{12, 0, 190},\n\tdictWord{12, 0, 327},\n\tdictWord{13, 0, 120},\n\tdictWord{13, 0, 121},\n\tdictWord{13, 0, 327},\n\tdictWord{15, 0, 47},\n\tdictWord{146, 0, 40},\n\tdictWord{5, 11, 8},\n\tdictWord{6, 11, 89},\n\tdictWord{6, 11, 400},\n\tdictWord{7, 11, 1569},\n\tdictWord{7, 11, 1623},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1850,\n\t},\n\tdictWord{8, 11, 218},\n\tdictWord{8, 11, 422},\n\tdictWord{9, 11, 570},\n\tdictWord{138, 11, 626},\n\tdictWord{6, 11, 387},\n\tdictWord{7, 11, 882},\n\tdictWord{141, 11, 111},\n\tdictWord{6, 0, 343},\n\tdictWord{7, 0, 195},\n\tdictWord{9, 0, 226},\n\tdictWord{10, 0, 197},\n\tdictWord{10, 0, 575},\n\tdictWord{11, 0, 502},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t899,\n\t},\n\tdictWord{6, 11, 224},\n\tdictWord{7, 11, 877},\n\tdictWord{137, 11, 647},\n\tdictWord{5, 10, 937},\n\tdictWord{135, 10, 100},\n\tdictWord{135, 11, 790},\n\tdictWord{150, 0, 29},\n\tdictWord{147, 0, 8},\n\tdictWord{134, 0, 1812},\n\tdictWord{149, 0, 8},\n\tdictWord{135, 11, 394},\n\tdictWord{7, 0, 1125},\n\tdictWord{9, 0, 143},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t61,\n\t},\n\tdictWord{14, 0, 405},\n\tdictWord{150, 0, 21},\n\tdictWord{10, 11, 755},\n\tdictWord{147, 11, 29},\n\tdictWord{9, 11, 378},\n\tdictWord{141, 11, 162},\n\tdictWord{135, 10, 922},\n\tdictWord{5, 10, 619},\n\tdictWord{133, 10, 698},\n\tdictWord{134, 0, 1327},\n\tdictWord{6, 0, 1598},\n\tdictWord{137, 0, 575},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t569,\n\t},\n\tdictWord{12, 11, 12},\n\tdictWord{12, 11, 81},\n\tdictWord{12, 11, 319},\n\tdictWord{13, 11, 69},\n\tdictWord{14, 11, 259},\n\tdictWord{16, 11, 87},\n\tdictWord{\n\t\t17,\n\t\t11,\n\t\t1,\n\t},\n\tdictWord{17, 11, 21},\n\tdictWord{17, 11, 24},\n\tdictWord{18, 11, 15},\n\tdictWord{18, 11, 56},\n\tdictWord{18, 11, 59},\n\tdictWord{18, 11, 127},\n\tdictWord{18, 11, 154},\n\tdictWord{19, 11, 19},\n\tdictWord{148, 11, 31},\n\tdictWord{6, 0, 895},\n\tdictWord{135, 11, 1231},\n\tdictWord{5, 0, 959},\n\tdictWord{7, 11, 124},\n\tdictWord{136, 11, 38},\n\tdictWord{5, 11, 261},\n\tdictWord{7, 11, 78},\n\tdictWord{7, 11, 199},\n\tdictWord{8, 11, 815},\n\tdictWord{9, 11, 126},\n\tdictWord{138, 11, 342},\n\tdictWord{5, 10, 917},\n\tdictWord{134, 10, 1659},\n\tdictWord{7, 0, 1759},\n\tdictWord{5, 11, 595},\n\tdictWord{135, 11, 1863},\n\tdictWord{136, 0, 173},\n\tdictWord{134, 0, 266},\n\tdictWord{\n\t\t142,\n\t\t0,\n\t\t261,\n\t},\n\tdictWord{132, 11, 628},\n\tdictWord{5, 10, 251},\n\tdictWord{5, 10, 956},\n\tdictWord{8, 10, 268},\n\tdictWord{9, 10, 214},\n\tdictWord{146, 10, 142},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t266,\n\t},\n\tdictWord{136, 11, 804},\n\tdictWord{135, 11, 208},\n\tdictWord{6, 11, 79},\n\tdictWord{7, 11, 1021},\n\tdictWord{135, 11, 1519},\n\tdictWord{11, 11, 704},\n\tdictWord{141, 11, 396},\n\tdictWord{5, 10, 346},\n\tdictWord{5, 10, 711},\n\tdictWord{136, 10, 390},\n\tdictWord{136, 11, 741},\n\tdictWord{134, 11, 376},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1427,\n\t},\n\tdictWord{6, 0, 1033},\n\tdictWord{6, 0, 1217},\n\tdictWord{136, 0, 300},\n\tdictWord{133, 10, 624},\n\tdictWord{6, 11, 100},\n\tdictWord{7, 11, 244},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t632,\n\t},\n\tdictWord{7, 11, 1609},\n\tdictWord{8, 11, 178},\n\tdictWord{8, 11, 638},\n\tdictWord{141, 11, 58},\n\tdictWord{6, 0, 584},\n\tdictWord{5, 10, 783},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1998,\n\t},\n\tdictWord{135, 10, 2047},\n\tdictWord{5, 0, 427},\n\tdictWord{5, 0, 734},\n\tdictWord{7, 0, 478},\n\tdictWord{136, 0, 52},\n\tdictWord{7, 0, 239},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t217,\n\t},\n\tdictWord{142, 0, 165},\n\tdictWord{134, 0, 1129},\n\tdictWord{6, 0, 168},\n\tdictWord{6, 0, 1734},\n\tdictWord{7, 0, 20},\n\tdictWord{7, 0, 1056},\n\tdictWord{8, 0, 732},\n\tdictWord{9, 0, 406},\n\tdictWord{9, 0, 911},\n\tdictWord{138, 0, 694},\n\tdictWord{132, 10, 594},\n\tdictWord{133, 11, 791},\n\tdictWord{7, 11, 686},\n\tdictWord{8, 11, 33},\n\tdictWord{8, 11, 238},\n\tdictWord{10, 11, 616},\n\tdictWord{11, 11, 467},\n\tdictWord{11, 11, 881},\n\tdictWord{13, 11, 217},\n\tdictWord{13, 11, 253},\n\tdictWord{\n\t\t142,\n\t\t11,\n\t\t268,\n\t},\n\tdictWord{137, 11, 476},\n\tdictWord{134, 0, 418},\n\tdictWord{133, 0, 613},\n\tdictWord{132, 0, 632},\n\tdictWord{132, 11, 447},\n\tdictWord{7, 0, 32},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t984,\n\t},\n\tdictWord{8, 0, 85},\n\tdictWord{8, 0, 709},\n\tdictWord{9, 0, 579},\n\tdictWord{9, 0, 847},\n\tdictWord{9, 0, 856},\n\tdictWord{10, 0, 799},\n\tdictWord{11, 0, 258},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t1007,\n\t},\n\tdictWord{12, 0, 331},\n\tdictWord{12, 0, 615},\n\tdictWord{13, 0, 188},\n\tdictWord{13, 0, 435},\n\tdictWord{14, 0, 8},\n\tdictWord{15, 0, 165},\n\tdictWord{\n\t\t16,\n\t\t0,\n\t\t27,\n\t},\n\tdictWord{20, 0, 40},\n\tdictWord{144, 11, 35},\n\tdictWord{4, 11, 128},\n\tdictWord{5, 11, 415},\n\tdictWord{6, 11, 462},\n\tdictWord{7, 11, 294},\n\tdictWord{7, 11, 578},\n\tdictWord{10, 11, 710},\n\tdictWord{139, 11, 86},\n\tdictWord{5, 0, 694},\n\tdictWord{136, 0, 909},\n\tdictWord{7, 0, 1109},\n\tdictWord{11, 0, 7},\n\tdictWord{5, 10, 37},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t39,\n\t},\n\tdictWord{6, 10, 451},\n\tdictWord{7, 10, 218},\n\tdictWord{7, 10, 1166},\n\tdictWord{7, 10, 1687},\n\tdictWord{8, 10, 662},\n\tdictWord{144, 10, 2},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t587,\n\t},\n\tdictWord{6, 11, 427},\n\tdictWord{7, 11, 1018},\n\tdictWord{138, 11, 692},\n\tdictWord{4, 11, 195},\n\tdictWord{6, 10, 508},\n\tdictWord{135, 11, 802},\n\tdictWord{4, 0, 167},\n\tdictWord{135, 0, 82},\n\tdictWord{5, 0, 62},\n\tdictWord{6, 0, 24},\n\tdictWord{6, 0, 534},\n\tdictWord{7, 0, 74},\n\tdictWord{7, 0, 678},\n\tdictWord{7, 0, 684},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1043,\n\t},\n\tdictWord{7, 0, 1072},\n\tdictWord{8, 0, 280},\n\tdictWord{8, 0, 541},\n\tdictWord{8, 0, 686},\n\tdictWord{9, 0, 258},\n\tdictWord{10, 0, 519},\n\tdictWord{11, 0, 252},\n\tdictWord{140, 0, 282},\n\tdictWord{138, 0, 33},\n\tdictWord{4, 0, 359},\n\tdictWord{133, 11, 738},\n\tdictWord{7, 0, 980},\n\tdictWord{9, 0, 328},\n\tdictWord{13, 0, 186},\n\tdictWord{13, 0, 364},\n\tdictWord{7, 10, 635},\n\tdictWord{7, 10, 796},\n\tdictWord{8, 10, 331},\n\tdictWord{9, 10, 330},\n\tdictWord{9, 10, 865},\n\tdictWord{10, 10, 119},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t235,\n\t},\n\tdictWord{11, 10, 111},\n\tdictWord{11, 10, 129},\n\tdictWord{11, 10, 240},\n\tdictWord{12, 10, 31},\n\tdictWord{12, 10, 66},\n\tdictWord{12, 10, 222},\n\tdictWord{12, 10, 269},\n\tdictWord{12, 10, 599},\n\tdictWord{12, 10, 684},\n\tdictWord{12, 10, 689},\n\tdictWord{12, 10, 691},\n\tdictWord{142, 10, 345},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t527,\n\t},\n\tdictWord{6, 0, 596},\n\tdictWord{7, 0, 585},\n\tdictWord{135, 10, 702},\n\tdictWord{134, 11, 1683},\n\tdictWord{133, 0, 211},\n\tdictWord{6, 0, 145},\n\tdictWord{\n\t\t141,\n\t\t0,\n\t\t336,\n\t},\n\tdictWord{134, 0, 1130},\n\tdictWord{7, 0, 873},\n\tdictWord{6, 10, 37},\n\tdictWord{7, 10, 1666},\n\tdictWord{8, 10, 195},\n\tdictWord{8, 10, 316},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t178,\n\t},\n\tdictWord{9, 10, 276},\n\tdictWord{9, 10, 339},\n\tdictWord{9, 10, 536},\n\tdictWord{10, 10, 102},\n\tdictWord{10, 10, 362},\n\tdictWord{10, 10, 785},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t55,\n\t},\n\tdictWord{11, 10, 149},\n\tdictWord{11, 10, 773},\n\tdictWord{13, 10, 416},\n\tdictWord{13, 10, 419},\n\tdictWord{14, 10, 38},\n\tdictWord{14, 10, 41},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t210,\n\t},\n\tdictWord{8, 0, 840},\n\tdictWord{136, 0, 841},\n\tdictWord{132, 0, 263},\n\tdictWord{5, 11, 3},\n\tdictWord{8, 11, 578},\n\tdictWord{9, 11, 118},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t705,\n\t},\n\tdictWord{12, 11, 383},\n\tdictWord{141, 11, 279},\n\tdictWord{132, 0, 916},\n\tdictWord{133, 11, 229},\n\tdictWord{133, 10, 645},\n\tdictWord{15, 0, 155},\n\tdictWord{16, 0, 79},\n\tdictWord{8, 11, 102},\n\tdictWord{10, 11, 578},\n\tdictWord{10, 11, 672},\n\tdictWord{12, 11, 496},\n\tdictWord{13, 11, 408},\n\tdictWord{14, 11, 121},\n\tdictWord{145, 11, 106},\n\tdictWord{4, 0, 599},\n\tdictWord{5, 0, 592},\n\tdictWord{6, 0, 1634},\n\tdictWord{7, 0, 5},\n\tdictWord{7, 0, 55},\n\tdictWord{7, 0, 67},\n\tdictWord{7, 0, 97},\n\tdictWord{7, 0, 691},\n\tdictWord{7, 0, 979},\n\tdictWord{7, 0, 1600},\n\tdictWord{7, 0, 1697},\n\tdictWord{8, 0, 207},\n\tdictWord{8, 0, 214},\n\tdictWord{8, 0, 231},\n\tdictWord{8, 0, 294},\n\tdictWord{8, 0, 336},\n\tdictWord{8, 0, 428},\n\tdictWord{8, 0, 471},\n\tdictWord{8, 0, 622},\n\tdictWord{8, 0, 626},\n\tdictWord{8, 0, 679},\n\tdictWord{8, 0, 759},\n\tdictWord{8, 0, 829},\n\tdictWord{9, 0, 11},\n\tdictWord{9, 0, 246},\n\tdictWord{9, 0, 484},\n\tdictWord{9, 0, 573},\n\tdictWord{9, 0, 706},\n\tdictWord{9, 0, 762},\n\tdictWord{9, 0, 798},\n\tdictWord{9, 0, 855},\n\tdictWord{9, 0, 870},\n\tdictWord{9, 0, 912},\n\tdictWord{10, 0, 303},\n\tdictWord{10, 0, 335},\n\tdictWord{10, 0, 424},\n\tdictWord{10, 0, 461},\n\tdictWord{10, 0, 543},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t759,\n\t},\n\tdictWord{10, 0, 814},\n\tdictWord{11, 0, 59},\n\tdictWord{11, 0, 199},\n\tdictWord{11, 0, 235},\n\tdictWord{11, 0, 590},\n\tdictWord{11, 0, 631},\n\tdictWord{11, 0, 929},\n\tdictWord{11, 0, 963},\n\tdictWord{11, 0, 987},\n\tdictWord{12, 0, 114},\n\tdictWord{12, 0, 182},\n\tdictWord{12, 0, 226},\n\tdictWord{12, 0, 332},\n\tdictWord{12, 0, 439},\n\tdictWord{12, 0, 575},\n\tdictWord{12, 0, 598},\n\tdictWord{12, 0, 675},\n\tdictWord{13, 0, 8},\n\tdictWord{13, 0, 125},\n\tdictWord{13, 0, 194},\n\tdictWord{13, 0, 287},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t197,\n\t},\n\tdictWord{14, 0, 383},\n\tdictWord{15, 0, 53},\n\tdictWord{17, 0, 63},\n\tdictWord{19, 0, 46},\n\tdictWord{19, 0, 98},\n\tdictWord{19, 0, 106},\n\tdictWord{148, 0, 85},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1356,\n\t},\n\tdictWord{132, 10, 290},\n\tdictWord{6, 10, 70},\n\tdictWord{7, 10, 1292},\n\tdictWord{10, 10, 762},\n\tdictWord{139, 10, 288},\n\tdictWord{150, 11, 55},\n\tdictWord{4, 0, 593},\n\tdictWord{8, 11, 115},\n\tdictWord{8, 11, 350},\n\tdictWord{9, 11, 489},\n\tdictWord{10, 11, 128},\n\tdictWord{11, 11, 306},\n\tdictWord{12, 11, 373},\n\tdictWord{14, 11, 30},\n\tdictWord{17, 11, 79},\n\tdictWord{147, 11, 80},\n\tdictWord{135, 11, 1235},\n\tdictWord{134, 0, 1392},\n\tdictWord{4, 11, 230},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t702,\n\t},\n\tdictWord{147, 0, 126},\n\tdictWord{7, 10, 131},\n\tdictWord{7, 10, 422},\n\tdictWord{8, 10, 210},\n\tdictWord{140, 10, 573},\n\tdictWord{134, 0, 1179},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t435,\n\t},\n\tdictWord{139, 10, 797},\n\tdictWord{134, 11, 1728},\n\tdictWord{4, 0, 162},\n\tdictWord{18, 11, 26},\n\tdictWord{19, 11, 42},\n\tdictWord{20, 11, 43},\n\tdictWord{21, 11, 0},\n\tdictWord{23, 11, 27},\n\tdictWord{152, 11, 14},\n\tdictWord{132, 10, 936},\n\tdictWord{6, 0, 765},\n\tdictWord{5, 10, 453},\n\tdictWord{134, 10, 441},\n\tdictWord{133, 0, 187},\n\tdictWord{135, 0, 1286},\n\tdictWord{6, 0, 635},\n\tdictWord{6, 0, 904},\n\tdictWord{6, 0, 1210},\n\tdictWord{134, 0, 1489},\n\tdictWord{4, 0, 215},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t890,\n\t},\n\tdictWord{9, 0, 38},\n\tdictWord{10, 0, 923},\n\tdictWord{11, 0, 23},\n\tdictWord{11, 0, 127},\n\tdictWord{139, 0, 796},\n\tdictWord{6, 0, 1165},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1306,\n\t},\n\tdictWord{7, 0, 716},\n\tdictWord{13, 0, 97},\n\tdictWord{141, 0, 251},\n\tdictWord{132, 10, 653},\n\tdictWord{136, 0, 657},\n\tdictWord{146, 10, 80},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t622,\n\t},\n\tdictWord{7, 11, 1032},\n\tdictWord{11, 11, 26},\n\tdictWord{11, 11, 213},\n\tdictWord{11, 11, 707},\n\tdictWord{12, 11, 380},\n\tdictWord{13, 11, 226},\n\tdictWord{141, 11, 355},\n\tdictWord{6, 0, 299},\n\tdictWord{5, 11, 70},\n\tdictWord{6, 11, 334},\n\tdictWord{9, 11, 171},\n\tdictWord{11, 11, 637},\n\tdictWord{12, 11, 202},\n\tdictWord{14, 11, 222},\n\tdictWord{145, 11, 42},\n\tdictWord{142, 0, 134},\n\tdictWord{4, 11, 23},\n\tdictWord{5, 11, 313},\n\tdictWord{5, 11, 1014},\n\tdictWord{6, 11, 50},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t51,\n\t},\n\tdictWord{7, 11, 142},\n\tdictWord{7, 11, 384},\n\tdictWord{9, 11, 783},\n\tdictWord{139, 11, 741},\n\tdictWord{4, 11, 141},\n\tdictWord{7, 11, 559},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t640,\n\t},\n\tdictWord{9, 11, 460},\n\tdictWord{12, 11, 183},\n\tdictWord{141, 11, 488},\n\tdictWord{136, 11, 614},\n\tdictWord{7, 10, 1368},\n\tdictWord{8, 10, 232},\n\tdictWord{8, 10, 361},\n\tdictWord{10, 10, 682},\n\tdictWord{138, 10, 742},\n\tdictWord{137, 10, 534},\n\tdictWord{6, 0, 1082},\n\tdictWord{140, 0, 658},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t27,\n\t},\n\tdictWord{135, 0, 2002},\n\tdictWord{142, 10, 12},\n\tdictWord{4, 0, 28},\n\tdictWord{5, 0, 440},\n\tdictWord{7, 0, 248},\n\tdictWord{11, 0, 833},\n\tdictWord{140, 0, 344},\n\tdictWord{7, 10, 736},\n\tdictWord{139, 10, 264},\n\tdictWord{134, 10, 1657},\n\tdictWord{134, 0, 1654},\n\tdictWord{138, 0, 531},\n\tdictWord{5, 11, 222},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t140,\n\t},\n\tdictWord{138, 11, 534},\n\tdictWord{6, 0, 634},\n\tdictWord{6, 0, 798},\n\tdictWord{134, 0, 840},\n\tdictWord{138, 11, 503},\n\tdictWord{135, 10, 127},\n\tdictWord{133, 0, 853},\n\tdictWord{5, 11, 154},\n\tdictWord{7, 11, 1491},\n\tdictWord{10, 11, 379},\n\tdictWord{138, 11, 485},\n\tdictWord{6, 0, 249},\n\tdictWord{7, 0, 1234},\n\tdictWord{139, 0, 573},\n\tdictWord{133, 11, 716},\n\tdictWord{7, 11, 1570},\n\tdictWord{140, 11, 542},\n\tdictWord{136, 10, 364},\n\tdictWord{138, 0, 527},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t91,\n\t},\n\tdictWord{5, 11, 388},\n\tdictWord{5, 11, 845},\n\tdictWord{6, 11, 206},\n\tdictWord{6, 11, 252},\n\tdictWord{6, 11, 365},\n\tdictWord{7, 11, 136},\n\tdictWord{7, 11, 531},\n\tdictWord{8, 11, 264},\n\tdictWord{136, 11, 621},\n\tdictWord{134, 0, 1419},\n\tdictWord{135, 11, 1441},\n\tdictWord{7, 0, 49},\n\tdictWord{7, 0, 392},\n\tdictWord{8, 0, 20},\n\tdictWord{8, 0, 172},\n\tdictWord{8, 0, 690},\n\tdictWord{9, 0, 383},\n\tdictWord{9, 0, 845},\n\tdictWord{10, 0, 48},\n\tdictWord{11, 0, 293},\n\tdictWord{11, 0, 832},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t920,\n\t},\n\tdictWord{11, 0, 984},\n\tdictWord{141, 0, 221},\n\tdictWord{5, 0, 858},\n\tdictWord{133, 0, 992},\n\tdictWord{5, 0, 728},\n\tdictWord{137, 10, 792},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t909,\n\t},\n\tdictWord{9, 10, 849},\n\tdictWord{138, 10, 805},\n\tdictWord{7, 0, 525},\n\tdictWord{7, 0, 1579},\n\tdictWord{8, 0, 497},\n\tdictWord{136, 0, 573},\n\tdictWord{6, 0, 268},\n\tdictWord{137, 0, 62},\n\tdictWord{135, 11, 576},\n\tdictWord{134, 0, 1201},\n\tdictWord{5, 11, 771},\n\tdictWord{5, 11, 863},\n\tdictWord{5, 11, 898},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t1632,\n\t},\n\tdictWord{6, 11, 1644},\n\tdictWord{134, 11, 1780},\n\tdictWord{133, 11, 331},\n\tdictWord{7, 0, 193},\n\tdictWord{7, 0, 1105},\n\tdictWord{10, 0, 495},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t397,\n\t},\n\tdictWord{8, 10, 124},\n\tdictWord{8, 10, 619},\n\tdictWord{9, 10, 305},\n\tdictWord{11, 10, 40},\n\tdictWord{12, 10, 349},\n\tdictWord{13, 10, 134},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t295,\n\t},\n\tdictWord{14, 10, 155},\n\tdictWord{15, 10, 120},\n\tdictWord{146, 10, 105},\n\tdictWord{138, 0, 106},\n\tdictWord{6, 0, 859},\n\tdictWord{5, 11, 107},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t201,\n\t},\n\tdictWord{136, 11, 518},\n\tdictWord{6, 11, 446},\n\tdictWord{135, 11, 1817},\n\tdictWord{13, 0, 23},\n\tdictWord{4, 10, 262},\n\tdictWord{135, 10, 342},\n\tdictWord{133, 10, 641},\n\tdictWord{137, 11, 851},\n\tdictWord{6, 0, 925},\n\tdictWord{137, 0, 813},\n\tdictWord{132, 11, 504},\n\tdictWord{6, 0, 613},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t223,\n\t},\n\tdictWord{4, 10, 99},\n\tdictWord{6, 10, 250},\n\tdictWord{6, 10, 346},\n\tdictWord{8, 10, 127},\n\tdictWord{138, 10, 81},\n\tdictWord{136, 0, 953},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t915,\n\t},\n\tdictWord{139, 11, 892},\n\tdictWord{5, 10, 75},\n\tdictWord{9, 10, 517},\n\tdictWord{10, 10, 470},\n\tdictWord{12, 10, 155},\n\tdictWord{141, 10, 224},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t666,\n\t},\n\tdictWord{7, 0, 1017},\n\tdictWord{7, 11, 996},\n\tdictWord{138, 11, 390},\n\tdictWord{5, 11, 883},\n\tdictWord{133, 11, 975},\n\tdictWord{14, 10, 83},\n\tdictWord{\n\t\t142,\n\t\t11,\n\t\t83,\n\t},\n\tdictWord{4, 0, 670},\n\tdictWord{5, 11, 922},\n\tdictWord{134, 11, 1707},\n\tdictWord{135, 0, 216},\n\tdictWord{9, 0, 40},\n\tdictWord{11, 0, 136},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t787,\n\t},\n\tdictWord{5, 10, 954},\n\tdictWord{5, 11, 993},\n\tdictWord{7, 11, 515},\n\tdictWord{137, 11, 91},\n\tdictWord{139, 0, 259},\n\tdictWord{7, 0, 1114},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t310,\n\t},\n\tdictWord{9, 0, 682},\n\tdictWord{10, 0, 440},\n\tdictWord{13, 0, 40},\n\tdictWord{6, 10, 304},\n\tdictWord{8, 10, 418},\n\tdictWord{11, 10, 341},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t675,\n\t},\n\tdictWord{14, 0, 296},\n\tdictWord{9, 10, 410},\n\tdictWord{139, 10, 425},\n\tdictWord{10, 11, 377},\n\tdictWord{12, 11, 363},\n\tdictWord{13, 11, 68},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t94,\n\t},\n\tdictWord{14, 11, 108},\n\tdictWord{142, 11, 306},\n\tdictWord{7, 0, 1401},\n\tdictWord{135, 0, 1476},\n\tdictWord{4, 0, 296},\n\tdictWord{6, 0, 475},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t401,\n\t},\n\tdictWord{7, 0, 1410},\n\tdictWord{7, 0, 1594},\n\tdictWord{7, 0, 1674},\n\tdictWord{8, 0, 63},\n\tdictWord{8, 0, 660},\n\tdictWord{137, 0, 74},\n\tdictWord{4, 0, 139},\n\tdictWord{4, 0, 388},\n\tdictWord{140, 0, 188},\n\tdictWord{132, 0, 797},\n\tdictWord{132, 11, 766},\n\tdictWord{5, 11, 103},\n\tdictWord{7, 11, 921},\n\tdictWord{8, 11, 580},\n\tdictWord{8, 11, 593},\n\tdictWord{8, 11, 630},\n\tdictWord{138, 11, 28},\n\tdictWord{4, 11, 911},\n\tdictWord{5, 11, 867},\n\tdictWord{133, 11, 1013},\n\tdictWord{134, 10, 14},\n\tdictWord{134, 0, 1572},\n\tdictWord{134, 10, 1708},\n\tdictWord{21, 0, 39},\n\tdictWord{5, 10, 113},\n\tdictWord{6, 10, 243},\n\tdictWord{7, 10, 1865},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t161,\n\t},\n\tdictWord{16, 10, 37},\n\tdictWord{145, 10, 99},\n\tdictWord{7, 11, 1563},\n\tdictWord{141, 11, 182},\n\tdictWord{5, 11, 135},\n\tdictWord{6, 11, 519},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1722,\n\t},\n\tdictWord{10, 11, 271},\n\tdictWord{11, 11, 261},\n\tdictWord{145, 11, 54},\n\tdictWord{132, 10, 274},\n\tdictWord{134, 0, 1594},\n\tdictWord{4, 11, 300},\n\tdictWord{5, 11, 436},\n\tdictWord{135, 11, 484},\n\tdictWord{4, 0, 747},\n\tdictWord{6, 0, 290},\n\tdictWord{7, 0, 649},\n\tdictWord{7, 0, 1479},\n\tdictWord{135, 0, 1583},\n\tdictWord{133, 11, 535},\n\tdictWord{147, 11, 82},\n\tdictWord{133, 0, 232},\n\tdictWord{137, 0, 887},\n\tdictWord{135, 10, 166},\n\tdictWord{136, 0, 521},\n\tdictWord{4, 0, 14},\n\tdictWord{7, 0, 472},\n\tdictWord{7, 0, 1801},\n\tdictWord{10, 0, 748},\n\tdictWord{141, 0, 458},\n\tdictWord{134, 0, 741},\n\tdictWord{134, 0, 992},\n\tdictWord{16, 0, 111},\n\tdictWord{137, 10, 304},\n\tdictWord{4, 0, 425},\n\tdictWord{5, 11, 387},\n\tdictWord{7, 11, 557},\n\tdictWord{12, 11, 547},\n\tdictWord{142, 11, 86},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1747,\n\t},\n\tdictWord{5, 10, 654},\n\tdictWord{135, 11, 1489},\n\tdictWord{7, 0, 789},\n\tdictWord{4, 11, 6},\n\tdictWord{5, 11, 708},\n\tdictWord{136, 11, 75},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t273,\n\t},\n\tdictWord{10, 10, 188},\n\tdictWord{13, 10, 377},\n\tdictWord{146, 10, 77},\n\tdictWord{6, 0, 1593},\n\tdictWord{4, 11, 303},\n\tdictWord{7, 11, 619},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t547,\n\t},\n\tdictWord{10, 11, 687},\n\tdictWord{11, 11, 122},\n\tdictWord{140, 11, 601},\n\tdictWord{134, 0, 1768},\n\tdictWord{135, 10, 410},\n\tdictWord{138, 11, 772},\n\tdictWord{11, 0, 233},\n\tdictWord{139, 10, 524},\n\tdictWord{5, 0, 943},\n\tdictWord{134, 0, 1779},\n\tdictWord{134, 10, 1785},\n\tdictWord{136, 11, 529},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t955,\n\t},\n\tdictWord{5, 0, 245},\n\tdictWord{6, 0, 576},\n\tdictWord{7, 0, 582},\n\tdictWord{136, 0, 225},\n\tdictWord{132, 10, 780},\n\tdictWord{142, 0, 241},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1943,\n\t},\n\tdictWord{4, 11, 106},\n\tdictWord{7, 11, 310},\n\tdictWord{7, 11, 1785},\n\tdictWord{10, 11, 690},\n\tdictWord{139, 11, 717},\n\tdictWord{134, 0, 1284},\n\tdictWord{5, 11, 890},\n\tdictWord{133, 11, 988},\n\tdictWord{6, 11, 626},\n\tdictWord{142, 11, 431},\n\tdictWord{10, 11, 706},\n\tdictWord{145, 11, 32},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t332,\n\t},\n\tdictWord{132, 11, 698},\n\tdictWord{135, 0, 709},\n\tdictWord{5, 10, 948},\n\tdictWord{138, 11, 17},\n\tdictWord{136, 0, 554},\n\tdictWord{134, 0, 1564},\n\tdictWord{139, 10, 941},\n\tdictWord{132, 0, 443},\n\tdictWord{134, 0, 909},\n\tdictWord{134, 11, 84},\n\tdictWord{142, 0, 280},\n\tdictWord{4, 10, 532},\n\tdictWord{5, 10, 706},\n\tdictWord{135, 10, 662},\n\tdictWord{132, 0, 729},\n\tdictWord{5, 10, 837},\n\tdictWord{6, 10, 1651},\n\tdictWord{139, 10, 985},\n\tdictWord{135, 10, 1861},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t348,\n\t},\n\tdictWord{152, 11, 3},\n\tdictWord{5, 11, 986},\n\tdictWord{6, 11, 130},\n\tdictWord{7, 11, 1582},\n\tdictWord{8, 11, 458},\n\tdictWord{10, 11, 101},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t318,\n\t},\n\tdictWord{138, 11, 823},\n\tdictWord{134, 0, 758},\n\tdictWord{4, 0, 298},\n\tdictWord{137, 0, 848},\n\tdictWord{4, 10, 330},\n\tdictWord{7, 10, 933},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t2012,\n\t},\n\tdictWord{136, 10, 292},\n\tdictWord{7, 11, 1644},\n\tdictWord{137, 11, 129},\n\tdictWord{6, 0, 1422},\n\tdictWord{9, 0, 829},\n\tdictWord{135, 10, 767},\n\tdictWord{5, 0, 164},\n\tdictWord{7, 0, 121},\n\tdictWord{142, 0, 189},\n\tdictWord{7, 0, 812},\n\tdictWord{7, 0, 1261},\n\tdictWord{7, 0, 1360},\n\tdictWord{9, 0, 632},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t352,\n\t},\n\tdictWord{135, 11, 1788},\n\tdictWord{139, 0, 556},\n\tdictWord{135, 11, 997},\n\tdictWord{145, 10, 114},\n\tdictWord{4, 0, 172},\n\tdictWord{9, 0, 611},\n\tdictWord{10, 0, 436},\n\tdictWord{12, 0, 673},\n\tdictWord{13, 0, 255},\n\tdictWord{137, 10, 883},\n\tdictWord{11, 0, 530},\n\tdictWord{138, 10, 274},\n\tdictWord{133, 0, 844},\n\tdictWord{134, 0, 984},\n\tdictWord{13, 0, 232},\n\tdictWord{18, 0, 35},\n\tdictWord{4, 10, 703},\n\tdictWord{135, 10, 207},\n\tdictWord{132, 10, 571},\n\tdictWord{9, 0, 263},\n\tdictWord{10, 0, 147},\n\tdictWord{138, 0, 492},\n\tdictWord{7, 11, 1756},\n\tdictWord{137, 11, 98},\n\tdictWord{5, 10, 873},\n\tdictWord{5, 10, 960},\n\tdictWord{8, 10, 823},\n\tdictWord{137, 10, 881},\n\tdictWord{133, 0, 537},\n\tdictWord{132, 0, 859},\n\tdictWord{7, 11, 1046},\n\tdictWord{139, 11, 160},\n\tdictWord{137, 0, 842},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t283,\n\t},\n\tdictWord{5, 10, 33},\n\tdictWord{6, 10, 470},\n\tdictWord{139, 10, 424},\n\tdictWord{6, 11, 45},\n\tdictWord{7, 11, 433},\n\tdictWord{8, 11, 129},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t21,\n\t},\n\tdictWord{10, 11, 392},\n\tdictWord{11, 11, 79},\n\tdictWord{12, 11, 499},\n\tdictWord{13, 11, 199},\n\tdictWord{141, 11, 451},\n\tdictWord{135, 0, 1291},\n\tdictWord{135, 10, 1882},\n\tdictWord{7, 11, 558},\n\tdictWord{136, 11, 353},\n\tdictWord{134, 0, 1482},\n\tdictWord{5, 0, 230},\n\tdictWord{5, 0, 392},\n\tdictWord{6, 0, 420},\n\tdictWord{9, 0, 568},\n\tdictWord{140, 0, 612},\n\tdictWord{6, 0, 262},\n\tdictWord{7, 10, 90},\n\tdictWord{7, 10, 664},\n\tdictWord{7, 10, 830},\n\tdictWord{7, 10, 1380},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t2025,\n\t},\n\tdictWord{8, 11, 81},\n\tdictWord{8, 10, 448},\n\tdictWord{8, 10, 828},\n\tdictWord{9, 11, 189},\n\tdictWord{9, 11, 201},\n\tdictWord{11, 11, 478},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t712,\n\t},\n\tdictWord{141, 11, 338},\n\tdictWord{142, 0, 31},\n\tdictWord{5, 11, 353},\n\tdictWord{151, 11, 26},\n\tdictWord{132, 0, 753},\n\tdictWord{4, 0, 0},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t41,\n\t},\n\tdictWord{7, 0, 1459},\n\tdictWord{7, 0, 1469},\n\tdictWord{7, 0, 1859},\n\tdictWord{9, 0, 549},\n\tdictWord{139, 0, 905},\n\tdictWord{9, 10, 417},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t493,\n\t},\n\tdictWord{135, 11, 1113},\n\tdictWord{133, 0, 696},\n\tdictWord{141, 11, 448},\n\tdictWord{134, 10, 295},\n\tdictWord{132, 0, 834},\n\tdictWord{4, 0, 771},\n\tdictWord{5, 10, 1019},\n\tdictWord{6, 11, 25},\n\tdictWord{7, 11, 855},\n\tdictWord{7, 11, 1258},\n\tdictWord{144, 11, 32},\n\tdictWord{134, 0, 1076},\n\tdictWord{133, 0, 921},\n\tdictWord{133, 0, 674},\n\tdictWord{4, 11, 4},\n\tdictWord{7, 11, 1118},\n\tdictWord{7, 11, 1320},\n\tdictWord{7, 11, 1706},\n\tdictWord{8, 11, 277},\n\tdictWord{9, 11, 622},\n\tdictWord{10, 11, 9},\n\tdictWord{11, 11, 724},\n\tdictWord{12, 11, 350},\n\tdictWord{12, 11, 397},\n\tdictWord{13, 11, 28},\n\tdictWord{13, 11, 159},\n\tdictWord{15, 11, 89},\n\tdictWord{18, 11, 5},\n\tdictWord{19, 11, 9},\n\tdictWord{20, 11, 34},\n\tdictWord{150, 11, 47},\n\tdictWord{134, 10, 208},\n\tdictWord{6, 0, 444},\n\tdictWord{136, 0, 308},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t180,\n\t},\n\tdictWord{7, 0, 1137},\n\tdictWord{8, 0, 751},\n\tdictWord{139, 0, 805},\n\tdictWord{4, 0, 183},\n\tdictWord{7, 0, 271},\n\tdictWord{11, 0, 824},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t952,\n\t},\n\tdictWord{13, 0, 278},\n\tdictWord{13, 0, 339},\n\tdictWord{13, 0, 482},\n\tdictWord{14, 0, 424},\n\tdictWord{148, 0, 99},\n\tdictWord{7, 11, 317},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t569,\n\t},\n\tdictWord{4, 0, 19},\n\tdictWord{5, 0, 477},\n\tdictWord{5, 0, 596},\n\tdictWord{6, 0, 505},\n\tdictWord{7, 0, 1221},\n\tdictWord{11, 0, 907},\n\tdictWord{12, 0, 209},\n\tdictWord{141, 0, 214},\n\tdictWord{135, 0, 1215},\n\tdictWord{6, 0, 271},\n\tdictWord{7, 0, 398},\n\tdictWord{8, 0, 387},\n\tdictWord{10, 0, 344},\n\tdictWord{7, 10, 448},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1629,\n\t},\n\tdictWord{7, 10, 1813},\n\tdictWord{8, 10, 442},\n\tdictWord{9, 10, 710},\n\tdictWord{10, 10, 282},\n\tdictWord{138, 10, 722},\n\tdictWord{11, 10, 844},\n\tdictWord{12, 10, 104},\n\tdictWord{140, 10, 625},\n\tdictWord{134, 11, 255},\n\tdictWord{133, 10, 787},\n\tdictWord{134, 0, 1645},\n\tdictWord{11, 11, 956},\n\tdictWord{\n\t\t151,\n\t\t11,\n\t\t3,\n\t},\n\tdictWord{6, 0, 92},\n\tdictWord{6, 0, 188},\n\tdictWord{7, 0, 209},\n\tdictWord{7, 0, 1269},\n\tdictWord{7, 0, 1524},\n\tdictWord{7, 0, 1876},\n\tdictWord{8, 0, 661},\n\tdictWord{10, 0, 42},\n\tdictWord{10, 0, 228},\n\tdictWord{11, 0, 58},\n\tdictWord{11, 0, 1020},\n\tdictWord{12, 0, 58},\n\tdictWord{12, 0, 118},\n\tdictWord{141, 0, 32},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t459,\n\t},\n\tdictWord{133, 0, 966},\n\tdictWord{4, 11, 536},\n\tdictWord{7, 11, 1141},\n\tdictWord{10, 11, 723},\n\tdictWord{139, 11, 371},\n\tdictWord{140, 0, 330},\n\tdictWord{134, 0, 1557},\n\tdictWord{7, 11, 285},\n\tdictWord{135, 11, 876},\n\tdictWord{136, 10, 491},\n\tdictWord{135, 11, 560},\n\tdictWord{6, 0, 18},\n\tdictWord{7, 0, 179},\n\tdictWord{7, 0, 932},\n\tdictWord{8, 0, 548},\n\tdictWord{8, 0, 757},\n\tdictWord{9, 0, 54},\n\tdictWord{9, 0, 65},\n\tdictWord{9, 0, 532},\n\tdictWord{9, 0, 844},\n\tdictWord{10, 0, 113},\n\tdictWord{10, 0, 117},\n\tdictWord{10, 0, 315},\n\tdictWord{10, 0, 560},\n\tdictWord{10, 0, 622},\n\tdictWord{10, 0, 798},\n\tdictWord{11, 0, 153},\n\tdictWord{11, 0, 351},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t375,\n\t},\n\tdictWord{12, 0, 78},\n\tdictWord{12, 0, 151},\n\tdictWord{12, 0, 392},\n\tdictWord{12, 0, 666},\n\tdictWord{14, 0, 248},\n\tdictWord{143, 0, 23},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1742,\n\t},\n\tdictWord{132, 11, 690},\n\tdictWord{4, 10, 403},\n\tdictWord{5, 10, 441},\n\tdictWord{7, 10, 450},\n\tdictWord{10, 10, 840},\n\tdictWord{11, 10, 101},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t193,\n\t},\n\tdictWord{141, 10, 430},\n\tdictWord{133, 0, 965},\n\tdictWord{134, 0, 182},\n\tdictWord{10, 0, 65},\n\tdictWord{10, 0, 488},\n\tdictWord{138, 0, 497},\n\tdictWord{135, 11, 1346},\n\tdictWord{6, 0, 973},\n\tdictWord{6, 0, 1158},\n\tdictWord{10, 11, 200},\n\tdictWord{19, 11, 2},\n\tdictWord{151, 11, 22},\n\tdictWord{4, 11, 190},\n\tdictWord{133, 11, 554},\n\tdictWord{133, 10, 679},\n\tdictWord{7, 0, 328},\n\tdictWord{137, 10, 326},\n\tdictWord{133, 11, 1001},\n\tdictWord{9, 0, 588},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t260,\n\t},\n\tdictWord{133, 11, 446},\n\tdictWord{135, 10, 1128},\n\tdictWord{135, 10, 1796},\n\tdictWord{147, 11, 119},\n\tdictWord{134, 0, 1786},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1328,\n\t},\n\tdictWord{6, 0, 1985},\n\tdictWord{8, 0, 962},\n\tdictWord{138, 0, 1017},\n\tdictWord{135, 0, 308},\n\tdictWord{11, 0, 508},\n\tdictWord{4, 10, 574},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t350,\n\t},\n\tdictWord{7, 10, 1024},\n\tdictWord{8, 10, 338},\n\tdictWord{9, 10, 677},\n\tdictWord{138, 10, 808},\n\tdictWord{138, 11, 752},\n\tdictWord{135, 10, 1081},\n\tdictWord{137, 11, 96},\n\tdictWord{7, 10, 1676},\n\tdictWord{135, 10, 2037},\n\tdictWord{136, 0, 588},\n\tdictWord{132, 11, 304},\n\tdictWord{133, 0, 614},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t793,\n\t},\n\tdictWord{136, 0, 287},\n\tdictWord{137, 10, 297},\n\tdictWord{141, 10, 37},\n\tdictWord{6, 11, 53},\n\tdictWord{6, 11, 199},\n\tdictWord{7, 11, 1408},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t32,\n\t},\n\tdictWord{8, 11, 93},\n\tdictWord{9, 11, 437},\n\tdictWord{10, 11, 397},\n\tdictWord{10, 11, 629},\n\tdictWord{11, 11, 593},\n\tdictWord{11, 11, 763},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t326,\n\t},\n\tdictWord{145, 11, 35},\n\tdictWord{134, 11, 105},\n\tdictWord{9, 11, 320},\n\tdictWord{10, 11, 506},\n\tdictWord{138, 11, 794},\n\tdictWord{5, 11, 114},\n\tdictWord{5, 11, 255},\n\tdictWord{141, 11, 285},\n\tdictWord{140, 0, 290},\n\tdictWord{7, 11, 2035},\n\tdictWord{8, 11, 19},\n\tdictWord{9, 11, 89},\n\tdictWord{138, 11, 831},\n\tdictWord{134, 0, 1136},\n\tdictWord{7, 0, 719},\n\tdictWord{8, 0, 796},\n\tdictWord{8, 0, 809},\n\tdictWord{8, 0, 834},\n\tdictWord{6, 10, 306},\n\tdictWord{7, 10, 1140},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1340,\n\t},\n\tdictWord{8, 10, 133},\n\tdictWord{138, 10, 449},\n\tdictWord{139, 10, 1011},\n\tdictWord{5, 0, 210},\n\tdictWord{6, 0, 213},\n\tdictWord{7, 0, 60},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t364,\n\t},\n\tdictWord{139, 0, 135},\n\tdictWord{5, 0, 607},\n\tdictWord{8, 0, 326},\n\tdictWord{136, 0, 490},\n\tdictWord{138, 11, 176},\n\tdictWord{132, 0, 701},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t472,\n\t},\n\tdictWord{7, 0, 380},\n\tdictWord{137, 0, 758},\n\tdictWord{135, 0, 1947},\n\tdictWord{6, 0, 1079},\n\tdictWord{138, 0, 278},\n\tdictWord{138, 11, 391},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t329,\n\t},\n\tdictWord{8, 10, 260},\n\tdictWord{139, 11, 156},\n\tdictWord{4, 0, 386},\n\tdictWord{7, 0, 41},\n\tdictWord{8, 0, 405},\n\tdictWord{8, 0, 728},\n\tdictWord{9, 0, 497},\n\tdictWord{11, 0, 110},\n\tdictWord{11, 0, 360},\n\tdictWord{15, 0, 37},\n\tdictWord{144, 0, 84},\n\tdictWord{5, 0, 46},\n\tdictWord{7, 0, 1452},\n\tdictWord{7, 0, 1480},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t634,\n\t},\n\tdictWord{140, 0, 472},\n\tdictWord{136, 0, 961},\n\tdictWord{4, 0, 524},\n\tdictWord{136, 0, 810},\n\tdictWord{10, 0, 238},\n\tdictWord{141, 0, 33},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t657,\n\t},\n\tdictWord{152, 10, 7},\n\tdictWord{133, 0, 532},\n\tdictWord{5, 0, 997},\n\tdictWord{135, 10, 1665},\n\tdictWord{7, 11, 594},\n\tdictWord{7, 11, 851},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1858,\n\t},\n\tdictWord{9, 11, 411},\n\tdictWord{9, 11, 574},\n\tdictWord{9, 11, 666},\n\tdictWord{9, 11, 737},\n\tdictWord{10, 11, 346},\n\tdictWord{10, 11, 712},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t246,\n\t},\n\tdictWord{11, 11, 432},\n\tdictWord{11, 11, 517},\n\tdictWord{11, 11, 647},\n\tdictWord{11, 11, 679},\n\tdictWord{11, 11, 727},\n\tdictWord{12, 11, 304},\n\tdictWord{12, 11, 305},\n\tdictWord{12, 11, 323},\n\tdictWord{12, 11, 483},\n\tdictWord{12, 11, 572},\n\tdictWord{12, 11, 593},\n\tdictWord{12, 11, 602},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t95,\n\t},\n\tdictWord{13, 11, 101},\n\tdictWord{13, 11, 171},\n\tdictWord{13, 11, 315},\n\tdictWord{13, 11, 378},\n\tdictWord{13, 11, 425},\n\tdictWord{13, 11, 475},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t63,\n\t},\n\tdictWord{14, 11, 380},\n\tdictWord{14, 11, 384},\n\tdictWord{15, 11, 133},\n\tdictWord{18, 11, 112},\n\tdictWord{148, 11, 72},\n\tdictWord{5, 11, 955},\n\tdictWord{136, 11, 814},\n\tdictWord{134, 0, 1301},\n\tdictWord{5, 10, 66},\n\tdictWord{7, 10, 1896},\n\tdictWord{136, 10, 288},\n\tdictWord{133, 11, 56},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1643,\n\t},\n\tdictWord{6, 0, 1298},\n\tdictWord{148, 11, 100},\n\tdictWord{5, 0, 782},\n\tdictWord{5, 0, 829},\n\tdictWord{6, 0, 671},\n\tdictWord{6, 0, 1156},\n\tdictWord{6, 0, 1738},\n\tdictWord{137, 11, 621},\n\tdictWord{4, 0, 306},\n\tdictWord{5, 0, 570},\n\tdictWord{7, 0, 1347},\n\tdictWord{5, 10, 91},\n\tdictWord{5, 10, 648},\n\tdictWord{5, 10, 750},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t781,\n\t},\n\tdictWord{6, 10, 54},\n\tdictWord{6, 10, 112},\n\tdictWord{6, 10, 402},\n\tdictWord{6, 10, 1732},\n\tdictWord{7, 10, 315},\n\tdictWord{7, 10, 749},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1900,\n\t},\n\tdictWord{9, 10, 78},\n\tdictWord{9, 10, 508},\n\tdictWord{10, 10, 611},\n\tdictWord{10, 10, 811},\n\tdictWord{11, 10, 510},\n\tdictWord{11, 10, 728},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t36,\n\t},\n\tdictWord{14, 10, 39},\n\tdictWord{16, 10, 83},\n\tdictWord{17, 10, 124},\n\tdictWord{148, 10, 30},\n\tdictWord{8, 10, 570},\n\tdictWord{9, 11, 477},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t78,\n\t},\n\tdictWord{4, 11, 639},\n\tdictWord{10, 11, 4},\n\tdictWord{10, 10, 322},\n\tdictWord{10, 10, 719},\n\tdictWord{11, 10, 407},\n\tdictWord{11, 11, 638},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t177,\n\t},\n\tdictWord{148, 11, 57},\n\tdictWord{7, 0, 1823},\n\tdictWord{139, 0, 693},\n\tdictWord{7, 0, 759},\n\tdictWord{5, 11, 758},\n\tdictWord{8, 10, 125},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t369,\n\t},\n\tdictWord{8, 10, 524},\n\tdictWord{10, 10, 486},\n\tdictWord{11, 10, 13},\n\tdictWord{11, 10, 381},\n\tdictWord{11, 10, 736},\n\tdictWord{11, 10, 766},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t845,\n\t},\n\tdictWord{13, 10, 114},\n\tdictWord{13, 10, 292},\n\tdictWord{142, 10, 47},\n\tdictWord{7, 0, 1932},\n\tdictWord{6, 10, 1684},\n\tdictWord{6, 10, 1731},\n\tdictWord{7, 10, 356},\n\tdictWord{8, 10, 54},\n\tdictWord{8, 10, 221},\n\tdictWord{9, 10, 225},\n\tdictWord{9, 10, 356},\n\tdictWord{10, 10, 77},\n\tdictWord{10, 10, 446},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t731,\n\t},\n\tdictWord{12, 10, 404},\n\tdictWord{141, 10, 491},\n\tdictWord{135, 11, 552},\n\tdictWord{135, 11, 1112},\n\tdictWord{4, 0, 78},\n\tdictWord{5, 0, 96},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t182,\n\t},\n\tdictWord{6, 0, 1257},\n\tdictWord{7, 0, 1724},\n\tdictWord{7, 0, 1825},\n\tdictWord{10, 0, 394},\n\tdictWord{10, 0, 471},\n\tdictWord{11, 0, 532},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t340,\n\t},\n\tdictWord{145, 0, 88},\n\tdictWord{139, 11, 328},\n\tdictWord{135, 0, 1964},\n\tdictWord{132, 10, 411},\n\tdictWord{4, 10, 80},\n\tdictWord{5, 10, 44},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t133,\n\t},\n\tdictWord{5, 11, 110},\n\tdictWord{6, 11, 169},\n\tdictWord{6, 11, 1702},\n\tdictWord{7, 11, 400},\n\tdictWord{8, 11, 538},\n\tdictWord{9, 11, 184},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t524,\n\t},\n\tdictWord{140, 11, 218},\n\tdictWord{4, 0, 521},\n\tdictWord{5, 10, 299},\n\tdictWord{7, 10, 1083},\n\tdictWord{140, 11, 554},\n\tdictWord{6, 11, 133},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t353,\n\t},\n\tdictWord{12, 11, 628},\n\tdictWord{146, 11, 79},\n\tdictWord{6, 0, 215},\n\tdictWord{7, 0, 584},\n\tdictWord{7, 0, 1028},\n\tdictWord{7, 0, 1473},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1721,\n\t},\n\tdictWord{9, 0, 424},\n\tdictWord{138, 0, 779},\n\tdictWord{7, 0, 857},\n\tdictWord{7, 0, 1209},\n\tdictWord{7, 10, 1713},\n\tdictWord{9, 10, 537},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t165,\n\t},\n\tdictWord{12, 10, 219},\n\tdictWord{140, 10, 561},\n\tdictWord{4, 10, 219},\n\tdictWord{6, 11, 93},\n\tdictWord{7, 11, 1422},\n\tdictWord{7, 10, 1761},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1851,\n\t},\n\tdictWord{8, 11, 673},\n\tdictWord{9, 10, 86},\n\tdictWord{9, 11, 529},\n\tdictWord{140, 11, 43},\n\tdictWord{137, 11, 371},\n\tdictWord{136, 0, 671},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t328,\n\t},\n\tdictWord{135, 0, 918},\n\tdictWord{132, 0, 529},\n\tdictWord{9, 11, 25},\n\tdictWord{10, 11, 467},\n\tdictWord{138, 11, 559},\n\tdictWord{4, 11, 335},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t942,\n\t},\n\tdictWord{134, 0, 716},\n\tdictWord{134, 0, 1509},\n\tdictWord{6, 0, 67},\n\tdictWord{7, 0, 258},\n\tdictWord{7, 0, 1630},\n\tdictWord{9, 0, 354},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t675,\n\t},\n\tdictWord{10, 0, 830},\n\tdictWord{14, 0, 80},\n\tdictWord{17, 0, 80},\n\tdictWord{140, 10, 428},\n\tdictWord{134, 0, 1112},\n\tdictWord{6, 0, 141},\n\tdictWord{7, 0, 225},\n\tdictWord{9, 0, 59},\n\tdictWord{9, 0, 607},\n\tdictWord{10, 0, 312},\n\tdictWord{11, 0, 687},\n\tdictWord{12, 0, 555},\n\tdictWord{13, 0, 373},\n\tdictWord{13, 0, 494},\n\tdictWord{\n\t\t148,\n\t\t0,\n\t\t58,\n\t},\n\tdictWord{133, 10, 514},\n\tdictWord{8, 11, 39},\n\tdictWord{10, 11, 773},\n\tdictWord{11, 11, 84},\n\tdictWord{12, 11, 205},\n\tdictWord{142, 11, 1},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t783,\n\t},\n\tdictWord{5, 11, 601},\n\tdictWord{133, 11, 870},\n\tdictWord{136, 11, 594},\n\tdictWord{4, 10, 55},\n\tdictWord{5, 10, 301},\n\tdictWord{6, 10, 571},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t49,\n\t},\n\tdictWord{146, 10, 102},\n\tdictWord{132, 11, 181},\n\tdictWord{134, 11, 1652},\n\tdictWord{133, 10, 364},\n\tdictWord{4, 11, 97},\n\tdictWord{5, 11, 147},\n\tdictWord{6, 11, 286},\n\tdictWord{7, 11, 1362},\n\tdictWord{141, 11, 176},\n\tdictWord{4, 10, 76},\n\tdictWord{7, 10, 1550},\n\tdictWord{9, 10, 306},\n\tdictWord{9, 10, 430},\n\tdictWord{9, 10, 663},\n\tdictWord{10, 10, 683},\n\tdictWord{11, 10, 427},\n\tdictWord{11, 10, 753},\n\tdictWord{12, 10, 334},\n\tdictWord{12, 10, 442},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t258,\n\t},\n\tdictWord{14, 10, 366},\n\tdictWord{143, 10, 131},\n\tdictWord{137, 10, 52},\n\tdictWord{6, 0, 955},\n\tdictWord{134, 0, 1498},\n\tdictWord{6, 11, 375},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t169,\n\t},\n\tdictWord{7, 11, 254},\n\tdictWord{136, 11, 780},\n\tdictWord{7, 0, 430},\n\tdictWord{11, 0, 46},\n\tdictWord{14, 0, 343},\n\tdictWord{142, 11, 343},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1183,\n\t},\n\tdictWord{5, 0, 602},\n\tdictWord{7, 0, 2018},\n\tdictWord{9, 0, 418},\n\tdictWord{9, 0, 803},\n\tdictWord{135, 11, 1447},\n\tdictWord{8, 0, 677},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1044,\n\t},\n\tdictWord{139, 11, 285},\n\tdictWord{4, 10, 656},\n\tdictWord{135, 10, 779},\n\tdictWord{135, 10, 144},\n\tdictWord{5, 11, 629},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1549,\n\t},\n\tdictWord{135, 10, 1373},\n\tdictWord{138, 11, 209},\n\tdictWord{7, 10, 554},\n\tdictWord{7, 10, 605},\n\tdictWord{141, 10, 10},\n\tdictWord{5, 10, 838},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t841,\n\t},\n\tdictWord{134, 10, 1649},\n\tdictWord{133, 10, 1012},\n\tdictWord{6, 0, 1357},\n\tdictWord{134, 0, 1380},\n\tdictWord{144, 0, 53},\n\tdictWord{6, 0, 590},\n\tdictWord{7, 10, 365},\n\tdictWord{7, 10, 1357},\n\tdictWord{7, 10, 1497},\n\tdictWord{8, 10, 154},\n\tdictWord{141, 10, 281},\n\tdictWord{133, 10, 340},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t420,\n\t},\n\tdictWord{135, 0, 329},\n\tdictWord{147, 11, 32},\n\tdictWord{4, 0, 469},\n\tdictWord{10, 11, 429},\n\tdictWord{139, 10, 495},\n\tdictWord{8, 10, 261},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t144,\n\t},\n\tdictWord{9, 10, 466},\n\tdictWord{10, 10, 370},\n\tdictWord{12, 10, 470},\n\tdictWord{13, 10, 144},\n\tdictWord{142, 10, 348},\n\tdictWord{142, 0, 460},\n\tdictWord{4, 11, 325},\n\tdictWord{9, 10, 897},\n\tdictWord{138, 11, 125},\n\tdictWord{6, 0, 1743},\n\tdictWord{6, 10, 248},\n\tdictWord{9, 10, 546},\n\tdictWord{10, 10, 535},\n\tdictWord{11, 10, 681},\n\tdictWord{141, 10, 135},\n\tdictWord{4, 0, 990},\n\tdictWord{5, 0, 929},\n\tdictWord{6, 0, 340},\n\tdictWord{8, 0, 376},\n\tdictWord{8, 0, 807},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t963,\n\t},\n\tdictWord{8, 0, 980},\n\tdictWord{138, 0, 1007},\n\tdictWord{134, 0, 1603},\n\tdictWord{140, 0, 250},\n\tdictWord{4, 11, 714},\n\tdictWord{133, 11, 469},\n\tdictWord{134, 10, 567},\n\tdictWord{136, 10, 445},\n\tdictWord{5, 0, 218},\n\tdictWord{7, 0, 1610},\n\tdictWord{8, 0, 646},\n\tdictWord{10, 0, 83},\n\tdictWord{11, 11, 138},\n\tdictWord{140, 11, 40},\n\tdictWord{7, 0, 1512},\n\tdictWord{135, 0, 1794},\n\tdictWord{135, 11, 1216},\n\tdictWord{11, 0, 0},\n\tdictWord{16, 0, 78},\n\tdictWord{132, 11, 718},\n\tdictWord{133, 0, 571},\n\tdictWord{132, 0, 455},\n\tdictWord{134, 0, 1012},\n\tdictWord{5, 11, 124},\n\tdictWord{5, 11, 144},\n\tdictWord{6, 11, 548},\n\tdictWord{7, 11, 15},\n\tdictWord{7, 11, 153},\n\tdictWord{137, 11, 629},\n\tdictWord{142, 11, 10},\n\tdictWord{6, 11, 75},\n\tdictWord{7, 11, 1531},\n\tdictWord{8, 11, 416},\n\tdictWord{9, 11, 240},\n\tdictWord{9, 11, 275},\n\tdictWord{10, 11, 100},\n\tdictWord{11, 11, 658},\n\tdictWord{11, 11, 979},\n\tdictWord{12, 11, 86},\n\tdictWord{13, 11, 468},\n\tdictWord{14, 11, 66},\n\tdictWord{14, 11, 207},\n\tdictWord{15, 11, 20},\n\tdictWord{15, 11, 25},\n\tdictWord{144, 11, 58},\n\tdictWord{132, 10, 577},\n\tdictWord{5, 11, 141},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t915,\n\t},\n\tdictWord{6, 11, 1783},\n\tdictWord{7, 11, 211},\n\tdictWord{7, 11, 698},\n\tdictWord{7, 11, 1353},\n\tdictWord{9, 11, 83},\n\tdictWord{9, 11, 281},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t376,\n\t},\n\tdictWord{10, 11, 431},\n\tdictWord{11, 11, 543},\n\tdictWord{12, 11, 664},\n\tdictWord{13, 11, 280},\n\tdictWord{13, 11, 428},\n\tdictWord{14, 11, 61},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t128,\n\t},\n\tdictWord{17, 11, 52},\n\tdictWord{145, 11, 81},\n\tdictWord{6, 0, 161},\n\tdictWord{7, 0, 372},\n\tdictWord{137, 0, 597},\n\tdictWord{132, 0, 349},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t702,\n\t},\n\tdictWord{139, 11, 245},\n\tdictWord{134, 0, 524},\n\tdictWord{134, 10, 174},\n\tdictWord{6, 0, 432},\n\tdictWord{9, 0, 751},\n\tdictWord{139, 0, 322},\n\tdictWord{147, 11, 94},\n\tdictWord{4, 11, 338},\n\tdictWord{133, 11, 400},\n\tdictWord{5, 0, 468},\n\tdictWord{10, 0, 325},\n\tdictWord{11, 0, 856},\n\tdictWord{12, 0, 345},\n\tdictWord{143, 0, 104},\n\tdictWord{133, 0, 223},\n\tdictWord{132, 0, 566},\n\tdictWord{4, 11, 221},\n\tdictWord{5, 11, 659},\n\tdictWord{5, 11, 989},\n\tdictWord{7, 11, 697},\n\tdictWord{7, 11, 1211},\n\tdictWord{138, 11, 284},\n\tdictWord{135, 11, 1070},\n\tdictWord{4, 0, 59},\n\tdictWord{135, 0, 1394},\n\tdictWord{6, 0, 436},\n\tdictWord{11, 0, 481},\n\tdictWord{5, 10, 878},\n\tdictWord{133, 10, 972},\n\tdictWord{4, 0, 48},\n\tdictWord{5, 0, 271},\n\tdictWord{135, 0, 953},\n\tdictWord{5, 0, 610},\n\tdictWord{136, 0, 457},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t773,\n\t},\n\tdictWord{5, 0, 618},\n\tdictWord{137, 0, 756},\n\tdictWord{133, 0, 755},\n\tdictWord{135, 0, 1217},\n\tdictWord{138, 11, 507},\n\tdictWord{132, 10, 351},\n\tdictWord{132, 0, 197},\n\tdictWord{143, 11, 78},\n\tdictWord{4, 11, 188},\n\tdictWord{7, 11, 805},\n\tdictWord{11, 11, 276},\n\tdictWord{142, 11, 293},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t884,\n\t},\n\tdictWord{139, 11, 991},\n\tdictWord{132, 10, 286},\n\tdictWord{10, 0, 259},\n\tdictWord{10, 0, 428},\n\tdictWord{7, 10, 438},\n\tdictWord{7, 10, 627},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1516,\n\t},\n\tdictWord{8, 10, 40},\n\tdictWord{9, 10, 56},\n\tdictWord{9, 10, 294},\n\tdictWord{11, 10, 969},\n\tdictWord{11, 10, 995},\n\tdictWord{146, 10, 148},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t356,\n\t},\n\tdictWord{5, 0, 217},\n\tdictWord{5, 0, 492},\n\tdictWord{5, 0, 656},\n\tdictWord{8, 0, 544},\n\tdictWord{136, 11, 544},\n\tdictWord{5, 0, 259},\n\tdictWord{6, 0, 1230},\n\tdictWord{7, 0, 414},\n\tdictWord{7, 0, 854},\n\tdictWord{142, 0, 107},\n\tdictWord{132, 0, 1007},\n\tdictWord{15, 0, 14},\n\tdictWord{144, 0, 5},\n\tdictWord{6, 0, 1580},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t738,\n\t},\n\tdictWord{132, 11, 596},\n\tdictWord{132, 0, 673},\n\tdictWord{133, 10, 866},\n\tdictWord{6, 0, 1843},\n\tdictWord{135, 11, 1847},\n\tdictWord{4, 0, 165},\n\tdictWord{7, 0, 1398},\n\tdictWord{135, 0, 1829},\n\tdictWord{135, 11, 1634},\n\tdictWord{147, 11, 65},\n\tdictWord{6, 0, 885},\n\tdictWord{6, 0, 1009},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t809,\n\t},\n\tdictWord{133, 10, 116},\n\tdictWord{132, 10, 457},\n\tdictWord{136, 11, 770},\n\tdictWord{9, 0, 498},\n\tdictWord{12, 0, 181},\n\tdictWord{10, 11, 361},\n\tdictWord{142, 11, 316},\n\tdictWord{134, 11, 595},\n\tdictWord{5, 0, 9},\n\tdictWord{7, 0, 297},\n\tdictWord{7, 0, 966},\n\tdictWord{140, 0, 306},\n\tdictWord{4, 11, 89},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t489,\n\t},\n\tdictWord{6, 11, 315},\n\tdictWord{7, 11, 553},\n\tdictWord{7, 11, 1745},\n\tdictWord{138, 11, 243},\n\tdictWord{134, 0, 1487},\n\tdictWord{132, 0, 437},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t146,\n\t},\n\tdictWord{6, 0, 411},\n\tdictWord{138, 0, 721},\n\tdictWord{5, 10, 527},\n\tdictWord{6, 10, 189},\n\tdictWord{135, 10, 859},\n\tdictWord{11, 10, 104},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t554,\n\t},\n\tdictWord{15, 10, 60},\n\tdictWord{143, 10, 125},\n\tdictWord{6, 11, 1658},\n\tdictWord{9, 11, 3},\n\tdictWord{10, 11, 154},\n\tdictWord{11, 11, 641},\n\tdictWord{13, 11, 85},\n\tdictWord{13, 11, 201},\n\tdictWord{141, 11, 346},\n\tdictWord{6, 0, 177},\n\tdictWord{135, 0, 467},\n\tdictWord{134, 0, 1377},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t116,\n\t},\n\tdictWord{136, 11, 645},\n\tdictWord{4, 11, 166},\n\tdictWord{5, 11, 505},\n\tdictWord{6, 11, 1670},\n\tdictWord{137, 11, 110},\n\tdictWord{133, 10, 487},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t86,\n\t},\n\tdictWord{5, 10, 667},\n\tdictWord{5, 10, 753},\n\tdictWord{6, 10, 316},\n\tdictWord{6, 10, 455},\n\tdictWord{135, 10, 946},\n\tdictWord{133, 0, 200},\n\tdictWord{132, 0, 959},\n\tdictWord{6, 0, 1928},\n\tdictWord{134, 0, 1957},\n\tdictWord{139, 11, 203},\n\tdictWord{150, 10, 45},\n\tdictWord{4, 10, 79},\n\tdictWord{7, 10, 1773},\n\tdictWord{10, 10, 450},\n\tdictWord{11, 10, 589},\n\tdictWord{13, 10, 332},\n\tdictWord{13, 10, 493},\n\tdictWord{14, 10, 183},\n\tdictWord{14, 10, 334},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t362,\n\t},\n\tdictWord{14, 10, 368},\n\tdictWord{14, 10, 376},\n\tdictWord{14, 10, 379},\n\tdictWord{19, 10, 90},\n\tdictWord{19, 10, 103},\n\tdictWord{19, 10, 127},\n\tdictWord{148, 10, 90},\n\tdictWord{6, 0, 1435},\n\tdictWord{135, 11, 1275},\n\tdictWord{134, 0, 481},\n\tdictWord{7, 11, 445},\n\tdictWord{8, 11, 307},\n\tdictWord{8, 11, 704},\n\tdictWord{10, 11, 41},\n\tdictWord{10, 11, 439},\n\tdictWord{11, 11, 237},\n\tdictWord{11, 11, 622},\n\tdictWord{140, 11, 201},\n\tdictWord{135, 11, 869},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t84,\n\t},\n\tdictWord{7, 0, 1482},\n\tdictWord{10, 0, 76},\n\tdictWord{138, 0, 142},\n\tdictWord{11, 11, 277},\n\tdictWord{144, 11, 14},\n\tdictWord{135, 11, 1977},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t189,\n\t},\n\tdictWord{5, 11, 713},\n\tdictWord{136, 11, 57},\n\tdictWord{133, 0, 1015},\n\tdictWord{138, 11, 371},\n\tdictWord{4, 0, 315},\n\tdictWord{5, 0, 507},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1370,\n\t},\n\tdictWord{4, 11, 552},\n\tdictWord{142, 10, 381},\n\tdictWord{9, 0, 759},\n\tdictWord{16, 0, 31},\n\tdictWord{16, 0, 39},\n\tdictWord{16, 0, 75},\n\tdictWord{18, 0, 24},\n\tdictWord{20, 0, 42},\n\tdictWord{152, 0, 1},\n\tdictWord{134, 0, 712},\n\tdictWord{134, 0, 1722},\n\tdictWord{133, 10, 663},\n\tdictWord{133, 10, 846},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t222,\n\t},\n\tdictWord{8, 0, 476},\n\tdictWord{9, 0, 238},\n\tdictWord{11, 0, 516},\n\tdictWord{11, 0, 575},\n\tdictWord{15, 0, 109},\n\tdictWord{146, 0, 100},\n\tdictWord{7, 0, 1402},\n\tdictWord{7, 0, 1414},\n\tdictWord{12, 0, 456},\n\tdictWord{5, 10, 378},\n\tdictWord{8, 10, 465},\n\tdictWord{9, 10, 286},\n\tdictWord{10, 10, 185},\n\tdictWord{10, 10, 562},\n\tdictWord{10, 10, 635},\n\tdictWord{11, 10, 31},\n\tdictWord{11, 10, 393},\n\tdictWord{13, 10, 312},\n\tdictWord{18, 10, 65},\n\tdictWord{18, 10, 96},\n\tdictWord{147, 10, 89},\n\tdictWord{4, 0, 986},\n\tdictWord{6, 0, 1958},\n\tdictWord{6, 0, 2032},\n\tdictWord{8, 0, 934},\n\tdictWord{138, 0, 985},\n\tdictWord{7, 10, 1880},\n\tdictWord{9, 10, 680},\n\tdictWord{139, 10, 798},\n\tdictWord{134, 10, 1770},\n\tdictWord{145, 11, 49},\n\tdictWord{132, 11, 614},\n\tdictWord{132, 10, 648},\n\tdictWord{5, 10, 945},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1656,\n\t},\n\tdictWord{6, 10, 1787},\n\tdictWord{7, 10, 167},\n\tdictWord{8, 10, 824},\n\tdictWord{9, 10, 391},\n\tdictWord{10, 10, 375},\n\tdictWord{139, 10, 185},\n\tdictWord{138, 11, 661},\n\tdictWord{7, 0, 1273},\n\tdictWord{135, 11, 1945},\n\tdictWord{7, 0, 706},\n\tdictWord{7, 0, 1058},\n\tdictWord{138, 0, 538},\n\tdictWord{7, 10, 1645},\n\tdictWord{8, 10, 352},\n\tdictWord{137, 10, 249},\n\tdictWord{132, 10, 152},\n\tdictWord{11, 0, 92},\n\tdictWord{11, 0, 196},\n\tdictWord{11, 0, 409},\n\tdictWord{11, 0, 450},\n\tdictWord{11, 0, 666},\n\tdictWord{11, 0, 777},\n\tdictWord{12, 0, 262},\n\tdictWord{13, 0, 385},\n\tdictWord{13, 0, 393},\n\tdictWord{15, 0, 115},\n\tdictWord{16, 0, 45},\n\tdictWord{145, 0, 82},\n\tdictWord{133, 10, 1006},\n\tdictWord{6, 0, 40},\n\tdictWord{135, 0, 1781},\n\tdictWord{9, 11, 614},\n\tdictWord{139, 11, 327},\n\tdictWord{5, 10, 420},\n\tdictWord{135, 10, 1449},\n\tdictWord{135, 0, 431},\n\tdictWord{10, 0, 97},\n\tdictWord{135, 10, 832},\n\tdictWord{6, 0, 423},\n\tdictWord{7, 0, 665},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1210,\n\t},\n\tdictWord{7, 0, 237},\n\tdictWord{8, 0, 664},\n\tdictWord{9, 0, 42},\n\tdictWord{9, 0, 266},\n\tdictWord{9, 0, 380},\n\tdictWord{9, 0, 645},\n\tdictWord{10, 0, 177},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t276,\n\t},\n\tdictWord{7, 0, 264},\n\tdictWord{133, 10, 351},\n\tdictWord{8, 0, 213},\n\tdictWord{5, 10, 40},\n\tdictWord{7, 10, 598},\n\tdictWord{7, 10, 1638},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t166,\n\t},\n\tdictWord{9, 10, 640},\n\tdictWord{9, 10, 685},\n\tdictWord{9, 10, 773},\n\tdictWord{11, 10, 215},\n\tdictWord{13, 10, 65},\n\tdictWord{14, 10, 172},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t317,\n\t},\n\tdictWord{145, 10, 6},\n\tdictWord{5, 11, 84},\n\tdictWord{134, 11, 163},\n\tdictWord{8, 10, 60},\n\tdictWord{9, 10, 343},\n\tdictWord{139, 10, 769},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t455,\n\t},\n\tdictWord{133, 11, 410},\n\tdictWord{8, 0, 906},\n\tdictWord{12, 0, 700},\n\tdictWord{12, 0, 706},\n\tdictWord{140, 0, 729},\n\tdictWord{21, 11, 33},\n\tdictWord{\n\t\t150,\n\t\t11,\n\t\t40,\n\t},\n\tdictWord{7, 10, 1951},\n\tdictWord{8, 10, 765},\n\tdictWord{8, 10, 772},\n\tdictWord{140, 10, 671},\n\tdictWord{7, 10, 108},\n\tdictWord{8, 10, 219},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t388,\n\t},\n\tdictWord{9, 10, 639},\n\tdictWord{9, 10, 775},\n\tdictWord{11, 10, 275},\n\tdictWord{140, 10, 464},\n\tdictWord{5, 11, 322},\n\tdictWord{7, 11, 1941},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t186,\n\t},\n\tdictWord{9, 11, 262},\n\tdictWord{10, 11, 187},\n\tdictWord{14, 11, 208},\n\tdictWord{146, 11, 130},\n\tdictWord{139, 0, 624},\n\tdictWord{8, 0, 574},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t227,\n\t},\n\tdictWord{140, 11, 29},\n\tdictWord{7, 11, 1546},\n\tdictWord{11, 11, 299},\n\tdictWord{142, 11, 407},\n\tdictWord{5, 10, 15},\n\tdictWord{6, 10, 56},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1758,\n\t},\n\tdictWord{8, 10, 500},\n\tdictWord{9, 10, 730},\n\tdictWord{11, 10, 331},\n\tdictWord{13, 10, 150},\n\tdictWord{142, 10, 282},\n\tdictWord{7, 11, 1395},\n\tdictWord{8, 11, 486},\n\tdictWord{9, 11, 236},\n\tdictWord{9, 11, 878},\n\tdictWord{10, 11, 218},\n\tdictWord{11, 11, 95},\n\tdictWord{19, 11, 17},\n\tdictWord{147, 11, 31},\n\tdictWord{135, 11, 2043},\n\tdictWord{4, 0, 354},\n\tdictWord{146, 11, 4},\n\tdictWord{140, 11, 80},\n\tdictWord{135, 0, 1558},\n\tdictWord{134, 10, 1886},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t205,\n\t},\n\tdictWord{6, 10, 438},\n\tdictWord{137, 10, 711},\n\tdictWord{133, 11, 522},\n\tdictWord{133, 10, 534},\n\tdictWord{7, 0, 235},\n\tdictWord{7, 0, 1475},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t68,\n\t},\n\tdictWord{146, 0, 120},\n\tdictWord{137, 10, 691},\n\tdictWord{4, 0, 942},\n\tdictWord{6, 0, 1813},\n\tdictWord{8, 0, 917},\n\tdictWord{10, 0, 884},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t696,\n\t},\n\tdictWord{12, 0, 717},\n\tdictWord{12, 0, 723},\n\tdictWord{12, 0, 738},\n\tdictWord{12, 0, 749},\n\tdictWord{12, 0, 780},\n\tdictWord{16, 0, 97},\n\tdictWord{146, 0, 169},\n\tdictWord{6, 10, 443},\n\tdictWord{8, 11, 562},\n\tdictWord{9, 10, 237},\n\tdictWord{9, 10, 571},\n\tdictWord{9, 10, 695},\n\tdictWord{10, 10, 139},\n\tdictWord{11, 10, 715},\n\tdictWord{12, 10, 417},\n\tdictWord{141, 10, 421},\n\tdictWord{135, 0, 957},\n\tdictWord{133, 0, 830},\n\tdictWord{134, 11, 1771},\n\tdictWord{146, 0, 23},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t496,\n\t},\n\tdictWord{6, 0, 694},\n\tdictWord{7, 0, 203},\n\tdictWord{7, 11, 1190},\n\tdictWord{137, 11, 620},\n\tdictWord{137, 11, 132},\n\tdictWord{6, 0, 547},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1549,\n\t},\n\tdictWord{8, 11, 258},\n\tdictWord{9, 11, 208},\n\tdictWord{137, 11, 359},\n\tdictWord{4, 0, 864},\n\tdictWord{5, 0, 88},\n\tdictWord{137, 0, 239},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t493,\n\t},\n\tdictWord{4, 11, 317},\n\tdictWord{135, 11, 1279},\n\tdictWord{132, 11, 477},\n\tdictWord{4, 10, 578},\n\tdictWord{5, 11, 63},\n\tdictWord{133, 11, 509},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t650,\n\t},\n\tdictWord{135, 0, 1310},\n\tdictWord{7, 0, 1076},\n\tdictWord{9, 0, 80},\n\tdictWord{11, 0, 78},\n\tdictWord{11, 0, 421},\n\tdictWord{11, 0, 534},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t545,\n\t},\n\tdictWord{132, 11, 288},\n\tdictWord{12, 0, 553},\n\tdictWord{14, 0, 118},\n\tdictWord{133, 10, 923},\n\tdictWord{7, 0, 274},\n\tdictWord{11, 0, 479},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t507,\n\t},\n\tdictWord{8, 11, 89},\n\tdictWord{8, 11, 620},\n\tdictWord{9, 11, 49},\n\tdictWord{10, 11, 774},\n\tdictWord{11, 11, 628},\n\tdictWord{12, 11, 322},\n\tdictWord{\n\t\t143,\n\t\t11,\n\t\t124,\n\t},\n\tdictWord{4, 0, 497},\n\tdictWord{135, 0, 1584},\n\tdictWord{7, 0, 261},\n\tdictWord{7, 0, 1115},\n\tdictWord{7, 0, 1354},\n\tdictWord{7, 0, 1404},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1588,\n\t},\n\tdictWord{7, 0, 1705},\n\tdictWord{7, 0, 1902},\n\tdictWord{9, 0, 465},\n\tdictWord{10, 0, 248},\n\tdictWord{10, 0, 349},\n\tdictWord{10, 0, 647},\n\tdictWord{11, 0, 527},\n\tdictWord{11, 0, 660},\n\tdictWord{11, 0, 669},\n\tdictWord{12, 0, 529},\n\tdictWord{13, 0, 305},\n\tdictWord{132, 10, 924},\n\tdictWord{133, 10, 665},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t13,\n\t},\n\tdictWord{6, 0, 791},\n\tdictWord{138, 11, 120},\n\tdictWord{7, 0, 642},\n\tdictWord{8, 0, 250},\n\tdictWord{11, 0, 123},\n\tdictWord{11, 0, 137},\n\tdictWord{13, 0, 48},\n\tdictWord{142, 0, 95},\n\tdictWord{4, 10, 265},\n\tdictWord{7, 10, 807},\n\tdictWord{135, 10, 950},\n\tdictWord{5, 10, 93},\n\tdictWord{140, 10, 267},\n\tdictWord{135, 0, 1429},\n\tdictWord{4, 0, 949},\n\tdictWord{10, 0, 885},\n\tdictWord{10, 0, 891},\n\tdictWord{10, 0, 900},\n\tdictWord{10, 0, 939},\n\tdictWord{12, 0, 760},\n\tdictWord{142, 0, 449},\n\tdictWord{139, 11, 366},\n\tdictWord{132, 0, 818},\n\tdictWord{134, 11, 85},\n\tdictWord{135, 10, 994},\n\tdictWord{7, 0, 330},\n\tdictWord{5, 10, 233},\n\tdictWord{5, 10, 320},\n\tdictWord{6, 10, 140},\n\tdictWord{136, 10, 295},\n\tdictWord{4, 0, 1004},\n\tdictWord{8, 0, 982},\n\tdictWord{136, 0, 993},\n\tdictWord{133, 10, 978},\n\tdictWord{4, 10, 905},\n\tdictWord{6, 10, 1701},\n\tdictWord{137, 10, 843},\n\tdictWord{10, 0, 545},\n\tdictWord{140, 0, 301},\n\tdictWord{6, 0, 947},\n\tdictWord{134, 0, 1062},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1188,\n\t},\n\tdictWord{4, 0, 904},\n\tdictWord{5, 0, 794},\n\tdictWord{152, 10, 6},\n\tdictWord{134, 0, 1372},\n\tdictWord{135, 11, 608},\n\tdictWord{5, 11, 279},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t235,\n\t},\n\tdictWord{7, 11, 468},\n\tdictWord{8, 11, 446},\n\tdictWord{9, 11, 637},\n\tdictWord{10, 11, 717},\n\tdictWord{11, 11, 738},\n\tdictWord{140, 11, 514},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t509,\n\t},\n\tdictWord{5, 11, 17},\n\tdictWord{6, 11, 371},\n\tdictWord{137, 11, 528},\n\tdictWord{132, 0, 693},\n\tdictWord{4, 11, 115},\n\tdictWord{5, 11, 669},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t407,\n\t},\n\tdictWord{8, 11, 311},\n\tdictWord{11, 11, 10},\n\tdictWord{141, 11, 5},\n\tdictWord{11, 0, 377},\n\tdictWord{7, 10, 273},\n\tdictWord{137, 11, 381},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t695,\n\t},\n\tdictWord{7, 0, 386},\n\tdictWord{138, 0, 713},\n\tdictWord{135, 10, 1041},\n\tdictWord{134, 0, 1291},\n\tdictWord{6, 0, 7},\n\tdictWord{6, 0, 35},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t147,\n\t},\n\tdictWord{7, 0, 1069},\n\tdictWord{7, 0, 1568},\n\tdictWord{7, 0, 1575},\n\tdictWord{7, 0, 1917},\n\tdictWord{8, 0, 43},\n\tdictWord{8, 0, 208},\n\tdictWord{9, 0, 128},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t866,\n\t},\n\tdictWord{10, 0, 20},\n\tdictWord{11, 0, 981},\n\tdictWord{147, 0, 33},\n\tdictWord{7, 0, 893},\n\tdictWord{141, 0, 424},\n\tdictWord{139, 10, 234},\n\tdictWord{\n\t\t150,\n\t\t11,\n\t\t56,\n\t},\n\tdictWord{5, 11, 779},\n\tdictWord{5, 11, 807},\n\tdictWord{6, 11, 1655},\n\tdictWord{134, 11, 1676},\n\tdictWord{5, 10, 802},\n\tdictWord{7, 10, 2021},\n\tdictWord{136, 10, 805},\n\tdictWord{4, 11, 196},\n\tdictWord{5, 10, 167},\n\tdictWord{5, 11, 558},\n\tdictWord{5, 10, 899},\n\tdictWord{5, 11, 949},\n\tdictWord{6, 10, 410},\n\tdictWord{137, 10, 777},\n\tdictWord{137, 10, 789},\n\tdictWord{134, 10, 1705},\n\tdictWord{8, 0, 904},\n\tdictWord{140, 0, 787},\n\tdictWord{6, 0, 322},\n\tdictWord{9, 0, 552},\n\tdictWord{11, 0, 274},\n\tdictWord{13, 0, 209},\n\tdictWord{13, 0, 499},\n\tdictWord{14, 0, 85},\n\tdictWord{15, 0, 126},\n\tdictWord{145, 0, 70},\n\tdictWord{135, 10, 10},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t11,\n\t},\n\tdictWord{6, 10, 117},\n\tdictWord{6, 10, 485},\n\tdictWord{7, 10, 1133},\n\tdictWord{9, 10, 582},\n\tdictWord{9, 10, 594},\n\tdictWord{11, 10, 21},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t818,\n\t},\n\tdictWord{12, 10, 535},\n\tdictWord{141, 10, 86},\n\tdictWord{4, 10, 264},\n\tdictWord{7, 10, 1067},\n\tdictWord{8, 10, 204},\n\tdictWord{8, 10, 385},\n\tdictWord{139, 10, 953},\n\tdictWord{132, 11, 752},\n\tdictWord{138, 10, 56},\n\tdictWord{133, 10, 470},\n\tdictWord{6, 0, 1808},\n\tdictWord{8, 0, 83},\n\tdictWord{8, 0, 742},\n\tdictWord{8, 0, 817},\n\tdictWord{9, 0, 28},\n\tdictWord{9, 0, 29},\n\tdictWord{9, 0, 885},\n\tdictWord{10, 0, 387},\n\tdictWord{11, 0, 633},\n\tdictWord{11, 0, 740},\n\tdictWord{13, 0, 235},\n\tdictWord{13, 0, 254},\n\tdictWord{15, 0, 143},\n\tdictWord{143, 0, 146},\n\tdictWord{140, 0, 49},\n\tdictWord{134, 0, 1832},\n\tdictWord{4, 11, 227},\n\tdictWord{5, 11, 159},\n\tdictWord{5, 11, 409},\n\tdictWord{7, 11, 80},\n\tdictWord{10, 11, 294},\n\tdictWord{10, 11, 479},\n\tdictWord{12, 11, 418},\n\tdictWord{14, 11, 50},\n\tdictWord{14, 11, 249},\n\tdictWord{142, 11, 295},\n\tdictWord{7, 11, 1470},\n\tdictWord{8, 11, 66},\n\tdictWord{8, 11, 137},\n\tdictWord{8, 11, 761},\n\tdictWord{9, 11, 638},\n\tdictWord{11, 11, 80},\n\tdictWord{11, 11, 212},\n\tdictWord{11, 11, 368},\n\tdictWord{11, 11, 418},\n\tdictWord{12, 11, 8},\n\tdictWord{13, 11, 15},\n\tdictWord{16, 11, 61},\n\tdictWord{17, 11, 59},\n\tdictWord{19, 11, 28},\n\tdictWord{148, 11, 84},\n\tdictWord{139, 10, 1015},\n\tdictWord{138, 11, 468},\n\tdictWord{135, 0, 421},\n\tdictWord{6, 0, 415},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1049,\n\t},\n\tdictWord{137, 0, 442},\n\tdictWord{6, 11, 38},\n\tdictWord{7, 11, 1220},\n\tdictWord{8, 11, 185},\n\tdictWord{8, 11, 256},\n\tdictWord{9, 11, 22},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t331,\n\t},\n\tdictWord{10, 11, 738},\n\tdictWord{11, 11, 205},\n\tdictWord{11, 11, 540},\n\tdictWord{11, 11, 746},\n\tdictWord{13, 11, 399},\n\tdictWord{13, 11, 465},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t88,\n\t},\n\tdictWord{142, 11, 194},\n\tdictWord{139, 0, 289},\n\tdictWord{133, 10, 715},\n\tdictWord{4, 0, 110},\n\tdictWord{10, 0, 415},\n\tdictWord{10, 0, 597},\n\tdictWord{142, 0, 206},\n\tdictWord{4, 11, 159},\n\tdictWord{6, 11, 115},\n\tdictWord{7, 11, 252},\n\tdictWord{7, 11, 257},\n\tdictWord{7, 11, 1928},\n\tdictWord{8, 11, 69},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t384,\n\t},\n\tdictWord{10, 11, 91},\n\tdictWord{10, 11, 615},\n\tdictWord{12, 11, 375},\n\tdictWord{14, 11, 235},\n\tdictWord{18, 11, 117},\n\tdictWord{147, 11, 123},\n\tdictWord{5, 11, 911},\n\tdictWord{136, 11, 278},\n\tdictWord{7, 0, 205},\n\tdictWord{7, 0, 2000},\n\tdictWord{8, 10, 794},\n\tdictWord{9, 10, 400},\n\tdictWord{10, 10, 298},\n\tdictWord{142, 10, 228},\n\tdictWord{135, 11, 1774},\n\tdictWord{4, 11, 151},\n\tdictWord{7, 11, 1567},\n\tdictWord{8, 11, 351},\n\tdictWord{137, 11, 322},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t724,\n\t},\n\tdictWord{133, 11, 990},\n\tdictWord{7, 0, 1539},\n\tdictWord{11, 0, 512},\n\tdictWord{13, 0, 205},\n\tdictWord{19, 0, 30},\n\tdictWord{22, 0, 36},\n\tdictWord{23, 0, 19},\n\tdictWord{135, 11, 1539},\n\tdictWord{5, 11, 194},\n\tdictWord{7, 11, 1662},\n\tdictWord{9, 11, 90},\n\tdictWord{140, 11, 180},\n\tdictWord{6, 10, 190},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t768,\n\t},\n\tdictWord{135, 10, 1170},\n\tdictWord{134, 0, 1340},\n\tdictWord{4, 0, 283},\n\tdictWord{135, 0, 1194},\n\tdictWord{133, 11, 425},\n\tdictWord{133, 11, 971},\n\tdictWord{12, 0, 549},\n\tdictWord{14, 10, 67},\n\tdictWord{147, 10, 60},\n\tdictWord{135, 10, 1023},\n\tdictWord{134, 0, 1720},\n\tdictWord{138, 11, 587},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t72,\n\t},\n\tdictWord{6, 11, 264},\n\tdictWord{7, 11, 21},\n\tdictWord{7, 11, 46},\n\tdictWord{7, 11, 2013},\n\tdictWord{8, 11, 215},\n\tdictWord{8, 11, 513},\n\tdictWord{10, 11, 266},\n\tdictWord{139, 11, 22},\n\tdictWord{5, 0, 319},\n\tdictWord{135, 0, 534},\n\tdictWord{6, 10, 137},\n\tdictWord{9, 10, 75},\n\tdictWord{9, 10, 253},\n\tdictWord{10, 10, 194},\n\tdictWord{138, 10, 444},\n\tdictWord{7, 0, 1180},\n\tdictWord{20, 0, 112},\n\tdictWord{6, 11, 239},\n\tdictWord{7, 11, 118},\n\tdictWord{10, 11, 95},\n\tdictWord{11, 11, 603},\n\tdictWord{13, 11, 443},\n\tdictWord{14, 11, 160},\n\tdictWord{143, 11, 4},\n\tdictWord{134, 11, 431},\n\tdictWord{5, 11, 874},\n\tdictWord{6, 11, 1677},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t643,\n\t},\n\tdictWord{12, 10, 115},\n\tdictWord{143, 11, 0},\n\tdictWord{134, 0, 967},\n\tdictWord{6, 11, 65},\n\tdictWord{7, 11, 939},\n\tdictWord{7, 11, 1172},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1671,\n\t},\n\tdictWord{9, 11, 540},\n\tdictWord{10, 11, 696},\n\tdictWord{11, 11, 265},\n\tdictWord{11, 11, 732},\n\tdictWord{11, 11, 928},\n\tdictWord{11, 11, 937},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t399,\n\t},\n\tdictWord{13, 11, 438},\n\tdictWord{149, 11, 19},\n\tdictWord{137, 11, 200},\n\tdictWord{135, 0, 1940},\n\tdictWord{5, 10, 760},\n\tdictWord{7, 10, 542},\n\tdictWord{8, 10, 135},\n\tdictWord{136, 10, 496},\n\tdictWord{140, 11, 44},\n\tdictWord{7, 11, 1655},\n\tdictWord{136, 11, 305},\n\tdictWord{7, 10, 319},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t355,\n\t},\n\tdictWord{7, 10, 763},\n\tdictWord{10, 10, 389},\n\tdictWord{145, 10, 43},\n\tdictWord{136, 0, 735},\n\tdictWord{138, 10, 786},\n\tdictWord{137, 11, 19},\n\tdictWord{132, 11, 696},\n\tdictWord{5, 0, 132},\n\tdictWord{9, 0, 486},\n\tdictWord{9, 0, 715},\n\tdictWord{10, 0, 458},\n\tdictWord{11, 0, 373},\n\tdictWord{11, 0, 668},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t795,\n\t},\n\tdictWord{11, 0, 897},\n\tdictWord{12, 0, 272},\n\tdictWord{12, 0, 424},\n\tdictWord{12, 0, 539},\n\tdictWord{12, 0, 558},\n\tdictWord{14, 0, 245},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t263,\n\t},\n\tdictWord{14, 0, 264},\n\tdictWord{14, 0, 393},\n\tdictWord{142, 0, 403},\n\tdictWord{10, 0, 38},\n\tdictWord{139, 0, 784},\n\tdictWord{132, 0, 838},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t302,\n\t},\n\tdictWord{135, 11, 1766},\n\tdictWord{133, 0, 379},\n\tdictWord{5, 0, 8},\n\tdictWord{6, 0, 89},\n\tdictWord{6, 0, 400},\n\tdictWord{7, 0, 1569},\n\tdictWord{7, 0, 1623},\n\tdictWord{7, 0, 1850},\n\tdictWord{8, 0, 218},\n\tdictWord{8, 0, 422},\n\tdictWord{9, 0, 570},\n\tdictWord{10, 0, 626},\n\tdictWord{4, 11, 726},\n\tdictWord{133, 11, 630},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t1017,\n\t},\n\tdictWord{138, 0, 660},\n\tdictWord{6, 0, 387},\n\tdictWord{7, 0, 882},\n\tdictWord{141, 0, 111},\n\tdictWord{6, 0, 224},\n\tdictWord{7, 0, 877},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t647,\n\t},\n\tdictWord{4, 10, 58},\n\tdictWord{5, 10, 286},\n\tdictWord{6, 10, 319},\n\tdictWord{7, 10, 402},\n\tdictWord{7, 10, 1254},\n\tdictWord{7, 10, 1903},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t356,\n\t},\n\tdictWord{140, 10, 408},\n\tdictWord{135, 0, 790},\n\tdictWord{9, 0, 510},\n\tdictWord{10, 0, 53},\n\tdictWord{4, 10, 389},\n\tdictWord{9, 10, 181},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t29,\n\t},\n\tdictWord{10, 10, 816},\n\tdictWord{11, 10, 311},\n\tdictWord{11, 10, 561},\n\tdictWord{12, 10, 67},\n\tdictWord{141, 10, 181},\n\tdictWord{142, 0, 458},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t118,\n\t},\n\tdictWord{7, 11, 215},\n\tdictWord{7, 11, 1521},\n\tdictWord{140, 11, 11},\n\tdictWord{134, 0, 954},\n\tdictWord{135, 0, 394},\n\tdictWord{134, 0, 1367},\n\tdictWord{5, 11, 225},\n\tdictWord{133, 10, 373},\n\tdictWord{132, 0, 882},\n\tdictWord{7, 0, 1409},\n\tdictWord{135, 10, 1972},\n\tdictWord{135, 10, 1793},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t370,\n\t},\n\tdictWord{5, 11, 756},\n\tdictWord{135, 11, 1326},\n\tdictWord{150, 11, 13},\n\tdictWord{7, 11, 354},\n\tdictWord{10, 11, 410},\n\tdictWord{139, 11, 815},\n\tdictWord{6, 11, 1662},\n\tdictWord{7, 11, 48},\n\tdictWord{8, 11, 771},\n\tdictWord{10, 11, 116},\n\tdictWord{13, 11, 104},\n\tdictWord{14, 11, 105},\n\tdictWord{14, 11, 184},\n\tdictWord{15, 11, 168},\n\tdictWord{19, 11, 92},\n\tdictWord{148, 11, 68},\n\tdictWord{7, 0, 124},\n\tdictWord{136, 0, 38},\n\tdictWord{5, 0, 261},\n\tdictWord{7, 0, 78},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t199,\n\t},\n\tdictWord{8, 0, 815},\n\tdictWord{9, 0, 126},\n\tdictWord{10, 0, 342},\n\tdictWord{140, 0, 647},\n\tdictWord{4, 0, 628},\n\tdictWord{140, 0, 724},\n\tdictWord{7, 0, 266},\n\tdictWord{8, 0, 804},\n\tdictWord{7, 10, 1651},\n\tdictWord{145, 10, 89},\n\tdictWord{135, 0, 208},\n\tdictWord{134, 0, 1178},\n\tdictWord{6, 0, 79},\n\tdictWord{135, 0, 1519},\n\tdictWord{132, 10, 672},\n\tdictWord{133, 10, 737},\n\tdictWord{136, 0, 741},\n\tdictWord{132, 11, 120},\n\tdictWord{4, 0, 710},\n\tdictWord{6, 0, 376},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t606,\n\t},\n\tdictWord{134, 0, 1347},\n\tdictWord{134, 0, 1494},\n\tdictWord{6, 0, 850},\n\tdictWord{6, 0, 1553},\n\tdictWord{137, 0, 821},\n\tdictWord{5, 10, 145},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t593,\n\t},\n\tdictWord{7, 0, 1311},\n\tdictWord{140, 0, 135},\n\tdictWord{4, 0, 467},\n\tdictWord{5, 0, 405},\n\tdictWord{134, 0, 544},\n\tdictWord{5, 11, 820},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t931,\n\t},\n\tdictWord{6, 0, 100},\n\tdictWord{7, 0, 244},\n\tdictWord{7, 0, 632},\n\tdictWord{7, 0, 1609},\n\tdictWord{8, 0, 178},\n\tdictWord{8, 0, 638},\n\tdictWord{141, 0, 58},\n\tdictWord{4, 10, 387},\n\tdictWord{135, 10, 1288},\n\tdictWord{6, 11, 151},\n\tdictWord{6, 11, 1675},\n\tdictWord{7, 11, 383},\n\tdictWord{151, 11, 10},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t481,\n\t},\n\tdictWord{135, 10, 550},\n\tdictWord{134, 0, 1378},\n\tdictWord{6, 11, 1624},\n\tdictWord{11, 11, 11},\n\tdictWord{12, 11, 422},\n\tdictWord{13, 11, 262},\n\tdictWord{142, 11, 360},\n\tdictWord{133, 0, 791},\n\tdictWord{4, 11, 43},\n\tdictWord{5, 11, 344},\n\tdictWord{133, 11, 357},\n\tdictWord{7, 0, 1227},\n\tdictWord{140, 0, 978},\n\tdictWord{7, 0, 686},\n\tdictWord{8, 0, 33},\n\tdictWord{8, 0, 238},\n\tdictWord{10, 0, 616},\n\tdictWord{11, 0, 467},\n\tdictWord{11, 0, 881},\n\tdictWord{13, 0, 217},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t253,\n\t},\n\tdictWord{142, 0, 268},\n\tdictWord{137, 0, 857},\n\tdictWord{8, 0, 467},\n\tdictWord{8, 0, 1006},\n\tdictWord{7, 11, 148},\n\tdictWord{8, 11, 284},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t63,\n\t},\n\tdictWord{4, 10, 576},\n\tdictWord{135, 10, 1263},\n\tdictWord{133, 11, 888},\n\tdictWord{5, 10, 919},\n\tdictWord{134, 10, 1673},\n\tdictWord{20, 10, 37},\n\tdictWord{148, 11, 37},\n\tdictWord{132, 0, 447},\n\tdictWord{132, 11, 711},\n\tdictWord{4, 0, 128},\n\tdictWord{5, 0, 415},\n\tdictWord{6, 0, 462},\n\tdictWord{7, 0, 294},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t578,\n\t},\n\tdictWord{10, 0, 710},\n\tdictWord{139, 0, 86},\n\tdictWord{4, 10, 82},\n\tdictWord{5, 10, 333},\n\tdictWord{5, 10, 904},\n\tdictWord{6, 10, 207},\n\tdictWord{7, 10, 325},\n\tdictWord{7, 10, 1726},\n\tdictWord{8, 10, 101},\n\tdictWord{10, 10, 778},\n\tdictWord{139, 10, 220},\n\tdictWord{136, 0, 587},\n\tdictWord{137, 11, 440},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t903,\n\t},\n\tdictWord{6, 0, 427},\n\tdictWord{7, 0, 1018},\n\tdictWord{138, 0, 692},\n\tdictWord{4, 0, 195},\n\tdictWord{135, 0, 802},\n\tdictWord{140, 10, 147},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1546,\n\t},\n\tdictWord{134, 0, 684},\n\tdictWord{132, 10, 705},\n\tdictWord{136, 0, 345},\n\tdictWord{11, 11, 678},\n\tdictWord{140, 11, 307},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t365,\n\t},\n\tdictWord{134, 0, 1683},\n\tdictWord{4, 11, 65},\n\tdictWord{5, 11, 479},\n\tdictWord{5, 11, 1004},\n\tdictWord{7, 11, 1913},\n\tdictWord{8, 11, 317},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t302,\n\t},\n\tdictWord{10, 11, 612},\n\tdictWord{141, 11, 22},\n\tdictWord{138, 0, 472},\n\tdictWord{4, 11, 261},\n\tdictWord{135, 11, 510},\n\tdictWord{134, 10, 90},\n\tdictWord{142, 0, 433},\n\tdictWord{151, 0, 28},\n\tdictWord{4, 11, 291},\n\tdictWord{7, 11, 101},\n\tdictWord{9, 11, 515},\n\tdictWord{12, 11, 152},\n\tdictWord{12, 11, 443},\n\tdictWord{13, 11, 392},\n\tdictWord{142, 11, 357},\n\tdictWord{140, 0, 997},\n\tdictWord{5, 0, 3},\n\tdictWord{8, 0, 578},\n\tdictWord{9, 0, 118},\n\tdictWord{10, 0, 705},\n\tdictWord{\n\t\t141,\n\t\t0,\n\t\t279,\n\t},\n\tdictWord{135, 11, 1266},\n\tdictWord{7, 10, 813},\n\tdictWord{12, 10, 497},\n\tdictWord{141, 10, 56},\n\tdictWord{133, 0, 229},\n\tdictWord{6, 10, 125},\n\tdictWord{135, 10, 1277},\n\tdictWord{8, 0, 102},\n\tdictWord{10, 0, 578},\n\tdictWord{10, 0, 672},\n\tdictWord{12, 0, 496},\n\tdictWord{13, 0, 408},\n\tdictWord{14, 0, 121},\n\tdictWord{17, 0, 106},\n\tdictWord{151, 10, 12},\n\tdictWord{6, 0, 866},\n\tdictWord{134, 0, 1080},\n\tdictWord{136, 0, 1022},\n\tdictWord{4, 11, 130},\n\tdictWord{135, 11, 843},\n\tdictWord{5, 11, 42},\n\tdictWord{5, 11, 879},\n\tdictWord{7, 11, 245},\n\tdictWord{7, 11, 324},\n\tdictWord{7, 11, 1532},\n\tdictWord{11, 11, 463},\n\tdictWord{11, 11, 472},\n\tdictWord{13, 11, 363},\n\tdictWord{144, 11, 52},\n\tdictWord{150, 0, 55},\n\tdictWord{8, 0, 115},\n\tdictWord{8, 0, 350},\n\tdictWord{9, 0, 489},\n\tdictWord{10, 0, 128},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t306,\n\t},\n\tdictWord{12, 0, 373},\n\tdictWord{14, 0, 30},\n\tdictWord{17, 0, 79},\n\tdictWord{19, 0, 80},\n\tdictWord{4, 11, 134},\n\tdictWord{133, 11, 372},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t657,\n\t},\n\tdictWord{134, 0, 933},\n\tdictWord{135, 11, 1147},\n\tdictWord{4, 0, 230},\n\tdictWord{133, 0, 702},\n\tdictWord{134, 0, 1728},\n\tdictWord{4, 0, 484},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t26,\n\t},\n\tdictWord{19, 0, 42},\n\tdictWord{20, 0, 43},\n\tdictWord{21, 0, 0},\n\tdictWord{23, 0, 27},\n\tdictWord{152, 0, 14},\n\tdictWord{7, 0, 185},\n\tdictWord{135, 0, 703},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t417,\n\t},\n\tdictWord{10, 0, 618},\n\tdictWord{7, 10, 1106},\n\tdictWord{9, 10, 770},\n\tdictWord{11, 10, 112},\n\tdictWord{140, 10, 413},\n\tdictWord{134, 0, 803},\n\tdictWord{132, 11, 644},\n\tdictWord{134, 0, 1262},\n\tdictWord{7, 11, 540},\n\tdictWord{12, 10, 271},\n\tdictWord{145, 10, 109},\n\tdictWord{135, 11, 123},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t633,\n\t},\n\tdictWord{134, 11, 623},\n\tdictWord{4, 11, 908},\n\tdictWord{5, 11, 359},\n\tdictWord{5, 11, 508},\n\tdictWord{6, 11, 1723},\n\tdictWord{7, 11, 343},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1996,\n\t},\n\tdictWord{135, 11, 2026},\n\tdictWord{135, 0, 479},\n\tdictWord{10, 0, 262},\n\tdictWord{7, 10, 304},\n\tdictWord{9, 10, 646},\n\tdictWord{9, 10, 862},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t696,\n\t},\n\tdictWord{12, 10, 208},\n\tdictWord{15, 10, 79},\n\tdictWord{147, 10, 108},\n\tdictWord{4, 11, 341},\n\tdictWord{135, 11, 480},\n\tdictWord{134, 0, 830},\n\tdictWord{5, 0, 70},\n\tdictWord{5, 0, 622},\n\tdictWord{6, 0, 334},\n\tdictWord{7, 0, 1032},\n\tdictWord{9, 0, 171},\n\tdictWord{11, 0, 26},\n\tdictWord{11, 0, 213},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t637,\n\t},\n\tdictWord{11, 0, 707},\n\tdictWord{12, 0, 202},\n\tdictWord{12, 0, 380},\n\tdictWord{13, 0, 226},\n\tdictWord{13, 0, 355},\n\tdictWord{14, 0, 222},\n\tdictWord{145, 0, 42},\n\tdictWord{135, 10, 981},\n\tdictWord{143, 0, 217},\n\tdictWord{137, 11, 114},\n\tdictWord{4, 0, 23},\n\tdictWord{4, 0, 141},\n\tdictWord{5, 0, 313},\n\tdictWord{5, 0, 1014},\n\tdictWord{6, 0, 50},\n\tdictWord{6, 0, 51},\n\tdictWord{7, 0, 142},\n\tdictWord{7, 0, 384},\n\tdictWord{7, 0, 559},\n\tdictWord{8, 0, 640},\n\tdictWord{9, 0, 460},\n\tdictWord{9, 0, 783},\n\tdictWord{11, 0, 741},\n\tdictWord{12, 0, 183},\n\tdictWord{141, 0, 488},\n\tdictWord{141, 0, 360},\n\tdictWord{7, 0, 1586},\n\tdictWord{7, 11, 1995},\n\tdictWord{8, 11, 299},\n\tdictWord{11, 11, 890},\n\tdictWord{140, 11, 674},\n\tdictWord{132, 10, 434},\n\tdictWord{7, 0, 652},\n\tdictWord{134, 10, 550},\n\tdictWord{7, 0, 766},\n\tdictWord{5, 10, 553},\n\tdictWord{138, 10, 824},\n\tdictWord{7, 0, 737},\n\tdictWord{8, 0, 298},\n\tdictWord{136, 10, 452},\n\tdictWord{4, 11, 238},\n\tdictWord{5, 11, 503},\n\tdictWord{6, 11, 179},\n\tdictWord{7, 11, 2003},\n\tdictWord{8, 11, 381},\n\tdictWord{8, 11, 473},\n\tdictWord{9, 11, 149},\n\tdictWord{10, 11, 183},\n\tdictWord{15, 11, 45},\n\tdictWord{143, 11, 86},\n\tdictWord{133, 10, 292},\n\tdictWord{5, 0, 222},\n\tdictWord{9, 0, 655},\n\tdictWord{138, 0, 534},\n\tdictWord{138, 10, 135},\n\tdictWord{4, 11, 121},\n\tdictWord{5, 11, 156},\n\tdictWord{5, 11, 349},\n\tdictWord{9, 11, 136},\n\tdictWord{10, 11, 605},\n\tdictWord{14, 11, 342},\n\tdictWord{147, 11, 107},\n\tdictWord{137, 0, 906},\n\tdictWord{6, 0, 1013},\n\tdictWord{134, 0, 1250},\n\tdictWord{6, 0, 1956},\n\tdictWord{6, 0, 2009},\n\tdictWord{8, 0, 991},\n\tdictWord{144, 0, 120},\n\tdictWord{135, 11, 1192},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t503,\n\t},\n\tdictWord{5, 0, 154},\n\tdictWord{7, 0, 1491},\n\tdictWord{10, 0, 379},\n\tdictWord{138, 0, 485},\n\tdictWord{6, 0, 1867},\n\tdictWord{6, 0, 1914},\n\tdictWord{6, 0, 1925},\n\tdictWord{9, 0, 917},\n\tdictWord{9, 0, 925},\n\tdictWord{9, 0, 932},\n\tdictWord{9, 0, 951},\n\tdictWord{9, 0, 1007},\n\tdictWord{9, 0, 1013},\n\tdictWord{12, 0, 806},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t810,\n\t},\n\tdictWord{12, 0, 814},\n\tdictWord{12, 0, 816},\n\tdictWord{12, 0, 824},\n\tdictWord{12, 0, 832},\n\tdictWord{12, 0, 837},\n\tdictWord{12, 0, 863},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t868,\n\t},\n\tdictWord{12, 0, 870},\n\tdictWord{12, 0, 889},\n\tdictWord{12, 0, 892},\n\tdictWord{12, 0, 900},\n\tdictWord{12, 0, 902},\n\tdictWord{12, 0, 908},\n\tdictWord{12, 0, 933},\n\tdictWord{12, 0, 942},\n\tdictWord{12, 0, 949},\n\tdictWord{12, 0, 954},\n\tdictWord{15, 0, 175},\n\tdictWord{15, 0, 203},\n\tdictWord{15, 0, 213},\n\tdictWord{15, 0, 218},\n\tdictWord{15, 0, 225},\n\tdictWord{15, 0, 231},\n\tdictWord{15, 0, 239},\n\tdictWord{15, 0, 248},\n\tdictWord{15, 0, 252},\n\tdictWord{18, 0, 190},\n\tdictWord{18, 0, 204},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t215,\n\t},\n\tdictWord{18, 0, 216},\n\tdictWord{18, 0, 222},\n\tdictWord{18, 0, 225},\n\tdictWord{18, 0, 230},\n\tdictWord{18, 0, 239},\n\tdictWord{18, 0, 241},\n\tdictWord{\n\t\t21,\n\t\t0,\n\t\t42,\n\t},\n\tdictWord{21, 0, 43},\n\tdictWord{21, 0, 44},\n\tdictWord{21, 0, 45},\n\tdictWord{21, 0, 46},\n\tdictWord{21, 0, 53},\n\tdictWord{24, 0, 27},\n\tdictWord{152, 0, 31},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t716,\n\t},\n\tdictWord{135, 0, 844},\n\tdictWord{4, 0, 91},\n\tdictWord{5, 0, 388},\n\tdictWord{5, 0, 845},\n\tdictWord{6, 0, 206},\n\tdictWord{6, 0, 252},\n\tdictWord{6, 0, 365},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t136,\n\t},\n\tdictWord{7, 0, 531},\n\tdictWord{136, 0, 621},\n\tdictWord{7, 10, 393},\n\tdictWord{10, 10, 603},\n\tdictWord{139, 10, 206},\n\tdictWord{6, 11, 80},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t1694,\n\t},\n\tdictWord{7, 11, 173},\n\tdictWord{7, 11, 1974},\n\tdictWord{9, 11, 547},\n\tdictWord{10, 11, 730},\n\tdictWord{14, 11, 18},\n\tdictWord{150, 11, 39},\n\tdictWord{137, 0, 748},\n\tdictWord{4, 11, 923},\n\tdictWord{134, 11, 1711},\n\tdictWord{4, 10, 912},\n\tdictWord{137, 10, 232},\n\tdictWord{7, 10, 98},\n\tdictWord{7, 10, 1973},\n\tdictWord{136, 10, 716},\n\tdictWord{14, 0, 103},\n\tdictWord{133, 10, 733},\n\tdictWord{132, 11, 595},\n\tdictWord{12, 0, 158},\n\tdictWord{18, 0, 8},\n\tdictWord{19, 0, 62},\n\tdictWord{20, 0, 6},\n\tdictWord{22, 0, 4},\n\tdictWord{23, 0, 2},\n\tdictWord{23, 0, 9},\n\tdictWord{5, 11, 240},\n\tdictWord{6, 11, 459},\n\tdictWord{7, 11, 12},\n\tdictWord{7, 11, 114},\n\tdictWord{7, 11, 502},\n\tdictWord{7, 11, 1751},\n\tdictWord{7, 11, 1753},\n\tdictWord{7, 11, 1805},\n\tdictWord{8, 11, 658},\n\tdictWord{9, 11, 1},\n\tdictWord{11, 11, 959},\n\tdictWord{13, 11, 446},\n\tdictWord{142, 11, 211},\n\tdictWord{135, 0, 576},\n\tdictWord{5, 0, 771},\n\tdictWord{5, 0, 863},\n\tdictWord{5, 0, 898},\n\tdictWord{6, 0, 648},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1632,\n\t},\n\tdictWord{6, 0, 1644},\n\tdictWord{134, 0, 1780},\n\tdictWord{133, 0, 331},\n\tdictWord{7, 11, 633},\n\tdictWord{7, 11, 905},\n\tdictWord{7, 11, 909},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1538,\n\t},\n\tdictWord{9, 11, 767},\n\tdictWord{140, 11, 636},\n\tdictWord{140, 0, 632},\n\tdictWord{5, 0, 107},\n\tdictWord{7, 0, 201},\n\tdictWord{136, 0, 518},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t446,\n\t},\n\tdictWord{7, 0, 1817},\n\tdictWord{134, 11, 490},\n\tdictWord{9, 0, 851},\n\tdictWord{141, 0, 510},\n\tdictWord{7, 11, 250},\n\tdictWord{8, 11, 506},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t507,\n\t},\n\tdictWord{4, 0, 504},\n\tdictWord{137, 10, 72},\n\tdictWord{132, 11, 158},\n\tdictWord{4, 11, 140},\n\tdictWord{7, 11, 362},\n\tdictWord{8, 11, 209},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t10,\n\t},\n\tdictWord{9, 11, 160},\n\tdictWord{9, 11, 503},\n\tdictWord{10, 11, 689},\n\tdictWord{11, 11, 350},\n\tdictWord{11, 11, 553},\n\tdictWord{11, 11, 725},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t252,\n\t},\n\tdictWord{12, 11, 583},\n\tdictWord{13, 11, 192},\n\tdictWord{13, 11, 352},\n\tdictWord{14, 11, 269},\n\tdictWord{14, 11, 356},\n\tdictWord{148, 11, 50},\n\tdictWord{6, 11, 597},\n\tdictWord{135, 11, 1318},\n\tdictWord{135, 10, 1454},\n\tdictWord{5, 0, 883},\n\tdictWord{5, 0, 975},\n\tdictWord{8, 0, 392},\n\tdictWord{148, 0, 7},\n\tdictWord{6, 11, 228},\n\tdictWord{7, 11, 1341},\n\tdictWord{9, 11, 408},\n\tdictWord{138, 11, 343},\n\tdictWord{11, 11, 348},\n\tdictWord{11, 10, 600},\n\tdictWord{12, 11, 99},\n\tdictWord{13, 10, 245},\n\tdictWord{18, 11, 1},\n\tdictWord{18, 11, 11},\n\tdictWord{147, 11, 4},\n\tdictWord{134, 11, 296},\n\tdictWord{5, 0, 922},\n\tdictWord{134, 0, 1707},\n\tdictWord{132, 11, 557},\n\tdictWord{4, 11, 548},\n\tdictWord{7, 10, 164},\n\tdictWord{7, 10, 1571},\n\tdictWord{9, 10, 107},\n\tdictWord{140, 10, 225},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t197,\n\t},\n\tdictWord{8, 11, 142},\n\tdictWord{8, 11, 325},\n\tdictWord{9, 11, 150},\n\tdictWord{9, 11, 596},\n\tdictWord{10, 11, 350},\n\tdictWord{10, 11, 353},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t74,\n\t},\n\tdictWord{11, 11, 315},\n\tdictWord{14, 11, 423},\n\tdictWord{143, 11, 141},\n\tdictWord{5, 0, 993},\n\tdictWord{7, 0, 515},\n\tdictWord{137, 0, 91},\n\tdictWord{4, 0, 131},\n\tdictWord{8, 0, 200},\n\tdictWord{5, 10, 484},\n\tdictWord{5, 10, 510},\n\tdictWord{6, 10, 434},\n\tdictWord{7, 10, 1000},\n\tdictWord{7, 10, 1098},\n\tdictWord{136, 10, 2},\n\tdictWord{152, 0, 10},\n\tdictWord{4, 11, 62},\n\tdictWord{5, 11, 83},\n\tdictWord{6, 11, 399},\n\tdictWord{6, 11, 579},\n\tdictWord{7, 11, 692},\n\tdictWord{7, 11, 846},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1015,\n\t},\n\tdictWord{7, 11, 1799},\n\tdictWord{8, 11, 403},\n\tdictWord{9, 11, 394},\n\tdictWord{10, 11, 133},\n\tdictWord{12, 11, 4},\n\tdictWord{12, 11, 297},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t452,\n\t},\n\tdictWord{16, 11, 81},\n\tdictWord{18, 11, 19},\n\tdictWord{18, 11, 25},\n\tdictWord{21, 11, 14},\n\tdictWord{22, 11, 12},\n\tdictWord{151, 11, 18},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t459,\n\t},\n\tdictWord{132, 11, 177},\n\tdictWord{7, 0, 1433},\n\tdictWord{9, 0, 365},\n\tdictWord{137, 11, 365},\n\tdictWord{132, 10, 460},\n\tdictWord{5, 0, 103},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t2004,\n\t},\n\tdictWord{7, 0, 921},\n\tdictWord{8, 0, 580},\n\tdictWord{8, 0, 593},\n\tdictWord{8, 0, 630},\n\tdictWord{10, 0, 28},\n\tdictWord{5, 11, 411},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t653,\n\t},\n\tdictWord{4, 10, 932},\n\tdictWord{133, 10, 891},\n\tdictWord{4, 0, 911},\n\tdictWord{5, 0, 867},\n\tdictWord{5, 0, 1013},\n\tdictWord{7, 0, 2034},\n\tdictWord{8, 0, 798},\n\tdictWord{136, 0, 813},\n\tdictWord{7, 11, 439},\n\tdictWord{10, 11, 727},\n\tdictWord{11, 11, 260},\n\tdictWord{139, 11, 684},\n\tdictWord{136, 10, 625},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t208,\n\t},\n\tdictWord{7, 11, 753},\n\tdictWord{135, 11, 1528},\n\tdictWord{5, 0, 461},\n\tdictWord{7, 0, 1925},\n\tdictWord{12, 0, 39},\n\tdictWord{13, 0, 265},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t439,\n\t},\n\tdictWord{134, 10, 76},\n\tdictWord{6, 0, 853},\n\tdictWord{8, 10, 92},\n\tdictWord{137, 10, 221},\n\tdictWord{5, 0, 135},\n\tdictWord{6, 0, 519},\n\tdictWord{7, 0, 1722},\n\tdictWord{10, 0, 271},\n\tdictWord{11, 0, 261},\n\tdictWord{145, 0, 54},\n\tdictWord{139, 11, 814},\n\tdictWord{14, 0, 338},\n\tdictWord{148, 0, 81},\n\tdictWord{4, 0, 300},\n\tdictWord{133, 0, 436},\n\tdictWord{5, 0, 419},\n\tdictWord{5, 0, 687},\n\tdictWord{7, 0, 864},\n\tdictWord{9, 0, 470},\n\tdictWord{135, 11, 864},\n\tdictWord{9, 0, 836},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t242,\n\t},\n\tdictWord{134, 0, 1937},\n\tdictWord{4, 10, 763},\n\tdictWord{133, 11, 953},\n\tdictWord{132, 10, 622},\n\tdictWord{132, 0, 393},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t253,\n\t},\n\tdictWord{8, 0, 357},\n\tdictWord{10, 0, 745},\n\tdictWord{14, 0, 426},\n\tdictWord{17, 0, 94},\n\tdictWord{19, 0, 57},\n\tdictWord{135, 10, 546},\n\tdictWord{5, 11, 615},\n\tdictWord{146, 11, 37},\n\tdictWord{9, 10, 73},\n\tdictWord{10, 10, 110},\n\tdictWord{14, 10, 185},\n\tdictWord{145, 10, 119},\n\tdictWord{11, 0, 703},\n\tdictWord{7, 10, 624},\n\tdictWord{7, 10, 916},\n\tdictWord{10, 10, 256},\n\tdictWord{139, 10, 87},\n\tdictWord{133, 11, 290},\n\tdictWord{5, 10, 212},\n\tdictWord{12, 10, 35},\n\tdictWord{\n\t\t141,\n\t\t10,\n\t\t382,\n\t},\n\tdictWord{132, 11, 380},\n\tdictWord{5, 11, 52},\n\tdictWord{7, 11, 277},\n\tdictWord{9, 11, 368},\n\tdictWord{139, 11, 791},\n\tdictWord{133, 0, 387},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t138,\n\t},\n\tdictWord{139, 11, 476},\n\tdictWord{4, 0, 6},\n\tdictWord{5, 0, 708},\n\tdictWord{136, 0, 75},\n\tdictWord{7, 0, 1351},\n\tdictWord{9, 0, 581},\n\tdictWord{10, 0, 639},\n\tdictWord{11, 0, 453},\n\tdictWord{140, 0, 584},\n\tdictWord{132, 0, 303},\n\tdictWord{138, 0, 772},\n\tdictWord{135, 10, 1175},\n\tdictWord{4, 0, 749},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t816,\n\t},\n\tdictWord{6, 11, 256},\n\tdictWord{7, 11, 307},\n\tdictWord{7, 11, 999},\n\tdictWord{7, 11, 1481},\n\tdictWord{7, 11, 1732},\n\tdictWord{7, 11, 1738},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t265,\n\t},\n\tdictWord{9, 11, 414},\n\tdictWord{11, 11, 316},\n\tdictWord{12, 11, 52},\n\tdictWord{13, 11, 420},\n\tdictWord{147, 11, 100},\n\tdictWord{135, 11, 1296},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1065,\n\t},\n\tdictWord{5, 10, 869},\n\tdictWord{5, 10, 968},\n\tdictWord{6, 10, 1626},\n\tdictWord{8, 10, 734},\n\tdictWord{136, 10, 784},\n\tdictWord{4, 10, 542},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t1716,\n\t},\n\tdictWord{6, 10, 1727},\n\tdictWord{7, 10, 1082},\n\tdictWord{7, 10, 1545},\n\tdictWord{8, 10, 56},\n\tdictWord{8, 10, 118},\n\tdictWord{8, 10, 412},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t564,\n\t},\n\tdictWord{9, 10, 888},\n\tdictWord{9, 10, 908},\n\tdictWord{10, 10, 50},\n\tdictWord{10, 10, 423},\n\tdictWord{11, 10, 685},\n\tdictWord{11, 10, 697},\n\tdictWord{11, 10, 933},\n\tdictWord{12, 10, 299},\n\tdictWord{13, 10, 126},\n\tdictWord{13, 10, 136},\n\tdictWord{13, 10, 170},\n\tdictWord{141, 10, 190},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t226,\n\t},\n\tdictWord{4, 0, 106},\n\tdictWord{7, 0, 310},\n\tdictWord{11, 0, 717},\n\tdictWord{133, 11, 723},\n\tdictWord{5, 0, 890},\n\tdictWord{5, 0, 988},\n\tdictWord{4, 10, 232},\n\tdictWord{9, 10, 202},\n\tdictWord{10, 10, 474},\n\tdictWord{140, 10, 433},\n\tdictWord{6, 0, 626},\n\tdictWord{142, 0, 431},\n\tdictWord{10, 0, 706},\n\tdictWord{150, 0, 44},\n\tdictWord{13, 0, 51},\n\tdictWord{6, 10, 108},\n\tdictWord{7, 10, 1003},\n\tdictWord{7, 10, 1181},\n\tdictWord{8, 10, 111},\n\tdictWord{136, 10, 343},\n\tdictWord{132, 0, 698},\n\tdictWord{5, 11, 109},\n\tdictWord{6, 11, 1784},\n\tdictWord{7, 11, 1895},\n\tdictWord{12, 11, 296},\n\tdictWord{140, 11, 302},\n\tdictWord{134, 0, 828},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1712,\n\t},\n\tdictWord{138, 0, 17},\n\tdictWord{7, 0, 1929},\n\tdictWord{4, 10, 133},\n\tdictWord{5, 11, 216},\n\tdictWord{7, 10, 711},\n\tdictWord{7, 10, 1298},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1585,\n\t},\n\tdictWord{7, 11, 1879},\n\tdictWord{9, 11, 141},\n\tdictWord{9, 11, 270},\n\tdictWord{9, 11, 679},\n\tdictWord{10, 11, 159},\n\tdictWord{10, 11, 553},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t197,\n\t},\n\tdictWord{11, 11, 438},\n\tdictWord{12, 11, 538},\n\tdictWord{12, 11, 559},\n\tdictWord{13, 11, 193},\n\tdictWord{13, 11, 423},\n\tdictWord{14, 11, 144},\n\tdictWord{14, 11, 166},\n\tdictWord{14, 11, 167},\n\tdictWord{15, 11, 67},\n\tdictWord{147, 11, 84},\n\tdictWord{141, 11, 127},\n\tdictWord{7, 11, 1872},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t81,\n\t},\n\tdictWord{6, 10, 99},\n\tdictWord{7, 10, 1808},\n\tdictWord{145, 10, 57},\n\tdictWord{134, 11, 391},\n\tdictWord{5, 0, 689},\n\tdictWord{6, 0, 84},\n\tdictWord{7, 0, 1250},\n\tdictWord{6, 10, 574},\n\tdictWord{7, 10, 428},\n\tdictWord{10, 10, 669},\n\tdictWord{11, 10, 485},\n\tdictWord{11, 10, 840},\n\tdictWord{12, 10, 300},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t250,\n\t},\n\tdictWord{7, 11, 322},\n\tdictWord{136, 11, 249},\n\tdictWord{7, 11, 432},\n\tdictWord{135, 11, 1649},\n\tdictWord{135, 10, 1871},\n\tdictWord{137, 10, 252},\n\tdictWord{6, 11, 155},\n\tdictWord{140, 11, 234},\n\tdictWord{7, 0, 871},\n\tdictWord{19, 0, 27},\n\tdictWord{147, 11, 27},\n\tdictWord{140, 0, 498},\n\tdictWord{5, 0, 986},\n\tdictWord{6, 0, 130},\n\tdictWord{138, 0, 823},\n\tdictWord{6, 0, 1793},\n\tdictWord{7, 0, 1582},\n\tdictWord{8, 0, 458},\n\tdictWord{10, 0, 101},\n\tdictWord{10, 0, 318},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t945,\n\t},\n\tdictWord{12, 0, 734},\n\tdictWord{16, 0, 104},\n\tdictWord{18, 0, 177},\n\tdictWord{6, 10, 323},\n\tdictWord{135, 10, 1564},\n\tdictWord{5, 11, 632},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t526,\n\t},\n\tdictWord{10, 0, 435},\n\tdictWord{7, 10, 461},\n\tdictWord{136, 10, 775},\n\tdictWord{6, 11, 144},\n\tdictWord{7, 11, 948},\n\tdictWord{7, 11, 1042},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1857,\n\t},\n\tdictWord{8, 11, 235},\n\tdictWord{8, 11, 461},\n\tdictWord{9, 11, 453},\n\tdictWord{9, 11, 530},\n\tdictWord{10, 11, 354},\n\tdictWord{17, 11, 77},\n\tdictWord{\n\t\t19,\n\t\t11,\n\t\t99,\n\t},\n\tdictWord{148, 11, 79},\n\tdictWord{138, 0, 966},\n\tdictWord{7, 0, 1644},\n\tdictWord{137, 0, 129},\n\tdictWord{135, 0, 997},\n\tdictWord{136, 0, 502},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t196,\n\t},\n\tdictWord{6, 11, 486},\n\tdictWord{7, 11, 212},\n\tdictWord{8, 11, 309},\n\tdictWord{136, 11, 346},\n\tdictWord{7, 10, 727},\n\tdictWord{146, 10, 73},\n\tdictWord{132, 0, 823},\n\tdictWord{132, 11, 686},\n\tdictWord{135, 0, 1927},\n\tdictWord{4, 0, 762},\n\tdictWord{7, 0, 1756},\n\tdictWord{137, 0, 98},\n\tdictWord{136, 10, 577},\n\tdictWord{24, 0, 8},\n\tdictWord{4, 11, 30},\n\tdictWord{5, 11, 43},\n\tdictWord{152, 11, 8},\n\tdictWord{7, 0, 1046},\n\tdictWord{139, 0, 160},\n\tdictWord{7, 0, 492},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t413,\n\t},\n\tdictWord{5, 10, 677},\n\tdictWord{7, 11, 492},\n\tdictWord{8, 10, 432},\n\tdictWord{140, 10, 280},\n\tdictWord{6, 0, 45},\n\tdictWord{7, 0, 433},\n\tdictWord{8, 0, 129},\n\tdictWord{9, 0, 21},\n\tdictWord{10, 0, 392},\n\tdictWord{11, 0, 79},\n\tdictWord{12, 0, 499},\n\tdictWord{13, 0, 199},\n\tdictWord{141, 0, 451},\n\tdictWord{7, 0, 558},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t353,\n\t},\n\tdictWord{4, 11, 220},\n\tdictWord{7, 11, 1535},\n\tdictWord{9, 11, 93},\n\tdictWord{139, 11, 474},\n\tdictWord{7, 10, 646},\n\tdictWord{7, 10, 1730},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t446,\n\t},\n\tdictWord{141, 10, 178},\n\tdictWord{133, 0, 785},\n\tdictWord{134, 0, 1145},\n\tdictWord{8, 0, 81},\n\tdictWord{9, 0, 189},\n\tdictWord{9, 0, 201},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t478,\n\t},\n\tdictWord{11, 0, 712},\n\tdictWord{141, 0, 338},\n\tdictWord{5, 0, 353},\n\tdictWord{151, 0, 26},\n\tdictWord{11, 0, 762},\n\tdictWord{132, 10, 395},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t2024,\n\t},\n\tdictWord{4, 0, 611},\n\tdictWord{133, 0, 606},\n\tdictWord{9, 10, 174},\n\tdictWord{10, 10, 164},\n\tdictWord{11, 10, 440},\n\tdictWord{11, 10, 841},\n\tdictWord{\n\t\t143,\n\t\t10,\n\t\t98,\n\t},\n\tdictWord{134, 10, 426},\n\tdictWord{10, 10, 608},\n\tdictWord{139, 10, 1002},\n\tdictWord{138, 10, 250},\n\tdictWord{6, 0, 25},\n\tdictWord{7, 0, 855},\n\tdictWord{7, 0, 1258},\n\tdictWord{144, 0, 32},\n\tdictWord{7, 11, 1725},\n\tdictWord{138, 11, 393},\n\tdictWord{5, 11, 263},\n\tdictWord{134, 11, 414},\n\tdictWord{6, 0, 2011},\n\tdictWord{133, 10, 476},\n\tdictWord{4, 0, 4},\n\tdictWord{7, 0, 1118},\n\tdictWord{7, 0, 1320},\n\tdictWord{7, 0, 1706},\n\tdictWord{8, 0, 277},\n\tdictWord{9, 0, 622},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t9,\n\t},\n\tdictWord{11, 0, 724},\n\tdictWord{12, 0, 350},\n\tdictWord{12, 0, 397},\n\tdictWord{13, 0, 28},\n\tdictWord{13, 0, 159},\n\tdictWord{15, 0, 89},\n\tdictWord{18, 0, 5},\n\tdictWord{\n\t\t19,\n\t\t0,\n\t\t9,\n\t},\n\tdictWord{20, 0, 34},\n\tdictWord{22, 0, 47},\n\tdictWord{6, 11, 178},\n\tdictWord{6, 11, 1750},\n\tdictWord{8, 11, 251},\n\tdictWord{9, 11, 690},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t155,\n\t},\n\tdictWord{10, 11, 196},\n\tdictWord{10, 11, 373},\n\tdictWord{11, 11, 698},\n\tdictWord{13, 11, 155},\n\tdictWord{148, 11, 93},\n\tdictWord{5, 11, 97},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t393,\n\t},\n\tdictWord{7, 0, 764},\n\tdictWord{11, 0, 461},\n\tdictWord{12, 0, 172},\n\tdictWord{5, 10, 76},\n\tdictWord{6, 10, 458},\n\tdictWord{6, 10, 497},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t868,\n\t},\n\tdictWord{9, 10, 658},\n\tdictWord{10, 10, 594},\n\tdictWord{11, 10, 566},\n\tdictWord{12, 10, 338},\n\tdictWord{141, 10, 200},\n\tdictWord{134, 0, 1449},\n\tdictWord{138, 11, 40},\n\tdictWord{134, 11, 1639},\n\tdictWord{134, 0, 1445},\n\tdictWord{6, 0, 1168},\n\tdictWord{4, 10, 526},\n\tdictWord{7, 10, 1029},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1054,\n\t},\n\tdictWord{4, 11, 191},\n\tdictWord{7, 11, 934},\n\tdictWord{8, 11, 647},\n\tdictWord{145, 11, 97},\n\tdictWord{132, 10, 636},\n\tdictWord{6, 0, 233},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t660,\n\t},\n\tdictWord{7, 10, 1124},\n\tdictWord{17, 10, 31},\n\tdictWord{19, 10, 22},\n\tdictWord{151, 10, 14},\n\tdictWord{6, 10, 1699},\n\tdictWord{136, 11, 110},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t246,\n\t},\n\tdictWord{15, 11, 162},\n\tdictWord{19, 11, 64},\n\tdictWord{20, 11, 8},\n\tdictWord{20, 11, 95},\n\tdictWord{22, 11, 24},\n\tdictWord{152, 11, 17},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t165,\n\t},\n\tdictWord{9, 11, 346},\n\tdictWord{138, 11, 655},\n\tdictWord{5, 11, 319},\n\tdictWord{135, 11, 534},\n\tdictWord{134, 0, 255},\n\tdictWord{9, 0, 216},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t128,\n\t},\n\tdictWord{139, 11, 179},\n\tdictWord{9, 0, 183},\n\tdictWord{139, 0, 286},\n\tdictWord{11, 0, 956},\n\tdictWord{151, 0, 3},\n\tdictWord{4, 0, 536},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1141,\n\t},\n\tdictWord{10, 0, 723},\n\tdictWord{139, 0, 371},\n\tdictWord{4, 10, 279},\n\tdictWord{7, 10, 301},\n\tdictWord{137, 10, 362},\n\tdictWord{7, 0, 285},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t57,\n\t},\n\tdictWord{6, 11, 101},\n\tdictWord{6, 11, 1663},\n\tdictWord{7, 11, 132},\n\tdictWord{7, 11, 1048},\n\tdictWord{7, 11, 1154},\n\tdictWord{7, 11, 1415},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1507,\n\t},\n\tdictWord{12, 11, 493},\n\tdictWord{15, 11, 105},\n\tdictWord{151, 11, 15},\n\tdictWord{5, 11, 459},\n\tdictWord{7, 11, 1073},\n\tdictWord{7, 10, 1743},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t241,\n\t},\n\tdictWord{136, 11, 334},\n\tdictWord{4, 10, 178},\n\tdictWord{133, 10, 399},\n\tdictWord{135, 0, 560},\n\tdictWord{132, 0, 690},\n\tdictWord{135, 0, 1246},\n\tdictWord{18, 0, 157},\n\tdictWord{147, 0, 63},\n\tdictWord{10, 0, 599},\n\tdictWord{11, 0, 33},\n\tdictWord{12, 0, 571},\n\tdictWord{149, 0, 1},\n\tdictWord{6, 11, 324},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t520,\n\t},\n\tdictWord{7, 11, 338},\n\tdictWord{7, 11, 1616},\n\tdictWord{7, 11, 1729},\n\tdictWord{8, 11, 228},\n\tdictWord{9, 11, 69},\n\tdictWord{139, 11, 750},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1862,\n\t},\n\tdictWord{12, 0, 491},\n\tdictWord{12, 0, 520},\n\tdictWord{13, 0, 383},\n\tdictWord{142, 0, 244},\n\tdictWord{135, 11, 734},\n\tdictWord{134, 10, 1692},\n\tdictWord{10, 0, 448},\n\tdictWord{11, 0, 630},\n\tdictWord{17, 0, 117},\n\tdictWord{6, 10, 202},\n\tdictWord{7, 11, 705},\n\tdictWord{12, 10, 360},\n\tdictWord{17, 10, 118},\n\tdictWord{18, 10, 27},\n\tdictWord{148, 10, 67},\n\tdictWord{4, 11, 73},\n\tdictWord{6, 11, 612},\n\tdictWord{7, 11, 927},\n\tdictWord{7, 11, 1822},\n\tdictWord{8, 11, 217},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t472,\n\t},\n\tdictWord{9, 11, 765},\n\tdictWord{9, 11, 766},\n\tdictWord{10, 11, 408},\n\tdictWord{11, 11, 51},\n\tdictWord{11, 11, 793},\n\tdictWord{12, 11, 266},\n\tdictWord{\n\t\t15,\n\t\t11,\n\t\t158,\n\t},\n\tdictWord{20, 11, 89},\n\tdictWord{150, 11, 32},\n\tdictWord{4, 0, 190},\n\tdictWord{133, 0, 554},\n\tdictWord{133, 0, 1001},\n\tdictWord{5, 11, 389},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t636,\n\t},\n\tdictWord{137, 11, 229},\n\tdictWord{5, 0, 446},\n\tdictWord{7, 10, 872},\n\tdictWord{10, 10, 516},\n\tdictWord{139, 10, 167},\n\tdictWord{137, 10, 313},\n\tdictWord{132, 10, 224},\n\tdictWord{134, 0, 1313},\n\tdictWord{5, 10, 546},\n\tdictWord{7, 10, 35},\n\tdictWord{8, 10, 11},\n\tdictWord{8, 10, 12},\n\tdictWord{9, 10, 315},\n\tdictWord{9, 10, 533},\n\tdictWord{10, 10, 802},\n\tdictWord{11, 10, 166},\n\tdictWord{12, 10, 525},\n\tdictWord{142, 10, 243},\n\tdictWord{6, 0, 636},\n\tdictWord{137, 0, 837},\n\tdictWord{5, 10, 241},\n\tdictWord{8, 10, 242},\n\tdictWord{9, 10, 451},\n\tdictWord{10, 10, 667},\n\tdictWord{11, 10, 598},\n\tdictWord{140, 10, 429},\n\tdictWord{22, 10, 46},\n\tdictWord{150, 11, 46},\n\tdictWord{136, 11, 472},\n\tdictWord{11, 0, 278},\n\tdictWord{142, 0, 73},\n\tdictWord{141, 11, 185},\n\tdictWord{132, 0, 868},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t972,\n\t},\n\tdictWord{4, 10, 366},\n\tdictWord{137, 10, 516},\n\tdictWord{138, 0, 1010},\n\tdictWord{5, 11, 189},\n\tdictWord{6, 10, 1736},\n\tdictWord{7, 11, 442},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t443,\n\t},\n\tdictWord{8, 11, 281},\n\tdictWord{12, 11, 174},\n\tdictWord{13, 11, 83},\n\tdictWord{141, 11, 261},\n\tdictWord{139, 11, 384},\n\tdictWord{6, 11, 2},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t191,\n\t},\n\tdictWord{7, 11, 446},\n\tdictWord{7, 11, 758},\n\tdictWord{7, 11, 1262},\n\tdictWord{7, 11, 1737},\n\tdictWord{8, 11, 22},\n\tdictWord{8, 11, 270},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t612,\n\t},\n\tdictWord{9, 11, 4},\n\tdictWord{9, 11, 167},\n\tdictWord{9, 11, 312},\n\tdictWord{9, 11, 436},\n\tdictWord{10, 11, 156},\n\tdictWord{10, 11, 216},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t311,\n\t},\n\tdictWord{10, 11, 623},\n\tdictWord{11, 11, 72},\n\tdictWord{11, 11, 330},\n\tdictWord{11, 11, 455},\n\tdictWord{12, 11, 101},\n\tdictWord{12, 11, 321},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t504,\n\t},\n\tdictWord{12, 11, 530},\n\tdictWord{12, 11, 543},\n\tdictWord{13, 11, 17},\n\tdictWord{13, 11, 156},\n\tdictWord{13, 11, 334},\n\tdictWord{14, 11, 48},\n\tdictWord{15, 11, 70},\n\tdictWord{17, 11, 60},\n\tdictWord{148, 11, 64},\n\tdictWord{6, 10, 331},\n\tdictWord{136, 10, 623},\n\tdictWord{135, 0, 1231},\n\tdictWord{132, 0, 304},\n\tdictWord{6, 11, 60},\n\tdictWord{7, 11, 670},\n\tdictWord{7, 11, 1327},\n\tdictWord{8, 11, 411},\n\tdictWord{8, 11, 435},\n\tdictWord{9, 11, 653},\n\tdictWord{9, 11, 740},\n\tdictWord{10, 11, 385},\n\tdictWord{11, 11, 222},\n\tdictWord{11, 11, 324},\n\tdictWord{11, 11, 829},\n\tdictWord{140, 11, 611},\n\tdictWord{7, 0, 506},\n\tdictWord{6, 11, 166},\n\tdictWord{7, 11, 374},\n\tdictWord{135, 11, 1174},\n\tdictWord{14, 11, 43},\n\tdictWord{146, 11, 21},\n\tdictWord{135, 11, 1694},\n\tdictWord{135, 10, 1888},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t206,\n\t},\n\tdictWord{134, 11, 398},\n\tdictWord{135, 11, 50},\n\tdictWord{150, 0, 26},\n\tdictWord{6, 0, 53},\n\tdictWord{6, 0, 199},\n\tdictWord{7, 0, 1408},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t32,\n\t},\n\tdictWord{8, 0, 93},\n\tdictWord{10, 0, 397},\n\tdictWord{10, 0, 629},\n\tdictWord{11, 0, 593},\n\tdictWord{11, 0, 763},\n\tdictWord{13, 0, 326},\n\tdictWord{145, 0, 35},\n\tdictWord{134, 0, 105},\n\tdictWord{132, 10, 394},\n\tdictWord{4, 0, 843},\n\tdictWord{138, 0, 794},\n\tdictWord{11, 0, 704},\n\tdictWord{141, 0, 396},\n\tdictWord{5, 0, 114},\n\tdictWord{5, 0, 255},\n\tdictWord{141, 0, 285},\n\tdictWord{6, 0, 619},\n\tdictWord{7, 0, 898},\n\tdictWord{7, 0, 1092},\n\tdictWord{8, 0, 485},\n\tdictWord{18, 0, 28},\n\tdictWord{\n\t\t19,\n\t\t0,\n\t\t116,\n\t},\n\tdictWord{135, 10, 1931},\n\tdictWord{9, 0, 145},\n\tdictWord{7, 10, 574},\n\tdictWord{135, 10, 1719},\n\tdictWord{7, 0, 2035},\n\tdictWord{8, 0, 19},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t89,\n\t},\n\tdictWord{138, 0, 831},\n\tdictWord{132, 10, 658},\n\tdictWord{6, 11, 517},\n\tdictWord{7, 11, 1159},\n\tdictWord{10, 11, 621},\n\tdictWord{139, 11, 192},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1933,\n\t},\n\tdictWord{7, 11, 1933},\n\tdictWord{9, 10, 781},\n\tdictWord{10, 10, 144},\n\tdictWord{11, 10, 385},\n\tdictWord{13, 10, 161},\n\tdictWord{13, 10, 228},\n\tdictWord{13, 10, 268},\n\tdictWord{148, 10, 107},\n\tdictWord{136, 10, 374},\n\tdictWord{10, 11, 223},\n\tdictWord{139, 11, 645},\n\tdictWord{135, 0, 1728},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t64,\n\t},\n\tdictWord{7, 11, 289},\n\tdictWord{136, 11, 245},\n\tdictWord{4, 10, 344},\n\tdictWord{6, 10, 498},\n\tdictWord{139, 10, 323},\n\tdictWord{136, 0, 746},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1063,\n\t},\n\tdictWord{137, 10, 155},\n\tdictWord{4, 0, 987},\n\tdictWord{6, 0, 1964},\n\tdictWord{6, 0, 1974},\n\tdictWord{6, 0, 1990},\n\tdictWord{136, 0, 995},\n\tdictWord{133, 11, 609},\n\tdictWord{133, 10, 906},\n\tdictWord{134, 0, 1550},\n\tdictWord{134, 0, 874},\n\tdictWord{5, 11, 129},\n\tdictWord{6, 11, 61},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t947,\n\t},\n\tdictWord{4, 0, 1018},\n\tdictWord{6, 0, 1938},\n\tdictWord{6, 0, 2021},\n\tdictWord{134, 0, 2039},\n\tdictWord{132, 0, 814},\n\tdictWord{11, 0, 126},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t287,\n\t},\n\tdictWord{134, 0, 1264},\n\tdictWord{5, 0, 955},\n\tdictWord{136, 0, 814},\n\tdictWord{141, 11, 506},\n\tdictWord{132, 11, 314},\n\tdictWord{6, 0, 981},\n\tdictWord{139, 11, 1000},\n\tdictWord{5, 0, 56},\n\tdictWord{8, 0, 892},\n\tdictWord{8, 0, 915},\n\tdictWord{140, 0, 776},\n\tdictWord{148, 0, 100},\n\tdictWord{10, 0, 4},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t13,\n\t},\n\tdictWord{11, 0, 638},\n\tdictWord{148, 0, 57},\n\tdictWord{148, 11, 74},\n\tdictWord{5, 0, 738},\n\tdictWord{132, 10, 616},\n\tdictWord{133, 11, 637},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t692,\n\t},\n\tdictWord{133, 0, 758},\n\tdictWord{132, 10, 305},\n\tdictWord{137, 11, 590},\n\tdictWord{5, 11, 280},\n\tdictWord{135, 11, 1226},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t494,\n\t},\n\tdictWord{135, 0, 1112},\n\tdictWord{133, 11, 281},\n\tdictWord{13, 0, 44},\n\tdictWord{14, 0, 214},\n\tdictWord{5, 10, 214},\n\tdictWord{7, 10, 603},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t611,\n\t},\n\tdictWord{9, 10, 686},\n\tdictWord{10, 10, 88},\n\tdictWord{11, 10, 459},\n\tdictWord{11, 10, 496},\n\tdictWord{12, 10, 463},\n\tdictWord{140, 10, 590},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t328,\n\t},\n\tdictWord{135, 11, 1064},\n\tdictWord{137, 0, 133},\n\tdictWord{7, 0, 168},\n\tdictWord{13, 0, 196},\n\tdictWord{141, 0, 237},\n\tdictWord{134, 10, 1703},\n\tdictWord{134, 0, 1152},\n\tdictWord{135, 0, 1245},\n\tdictWord{5, 0, 110},\n\tdictWord{6, 0, 169},\n\tdictWord{6, 0, 1702},\n\tdictWord{7, 0, 400},\n\tdictWord{8, 0, 538},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t184,\n\t},\n\tdictWord{9, 0, 524},\n\tdictWord{140, 0, 218},\n\tdictWord{6, 0, 1816},\n\tdictWord{10, 0, 871},\n\tdictWord{12, 0, 769},\n\tdictWord{140, 0, 785},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t630,\n\t},\n\tdictWord{7, 11, 33},\n\tdictWord{7, 11, 120},\n\tdictWord{8, 11, 489},\n\tdictWord{9, 11, 319},\n\tdictWord{10, 11, 820},\n\tdictWord{11, 11, 1004},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t379,\n\t},\n\tdictWord{13, 11, 117},\n\tdictWord{13, 11, 412},\n\tdictWord{14, 11, 25},\n\tdictWord{15, 11, 52},\n\tdictWord{15, 11, 161},\n\tdictWord{16, 11, 47},\n\tdictWord{149, 11, 2},\n\tdictWord{6, 0, 133},\n\tdictWord{8, 0, 413},\n\tdictWord{9, 0, 353},\n\tdictWord{139, 0, 993},\n\tdictWord{145, 10, 19},\n\tdictWord{4, 11, 937},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t801,\n\t},\n\tdictWord{134, 0, 978},\n\tdictWord{6, 0, 93},\n\tdictWord{6, 0, 1508},\n\tdictWord{7, 0, 1422},\n\tdictWord{7, 0, 1851},\n\tdictWord{8, 0, 673},\n\tdictWord{9, 0, 529},\n\tdictWord{140, 0, 43},\n\tdictWord{6, 0, 317},\n\tdictWord{10, 0, 512},\n\tdictWord{4, 10, 737},\n\tdictWord{11, 10, 294},\n\tdictWord{12, 10, 60},\n\tdictWord{12, 10, 437},\n\tdictWord{13, 10, 64},\n\tdictWord{13, 10, 380},\n\tdictWord{142, 10, 430},\n\tdictWord{9, 0, 371},\n\tdictWord{7, 11, 1591},\n\tdictWord{144, 11, 43},\n\tdictWord{6, 10, 1758},\n\tdictWord{8, 10, 520},\n\tdictWord{9, 10, 345},\n\tdictWord{9, 10, 403},\n\tdictWord{142, 10, 350},\n\tdictWord{5, 0, 526},\n\tdictWord{10, 10, 242},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t579,\n\t},\n\tdictWord{9, 0, 25},\n\tdictWord{10, 0, 467},\n\tdictWord{138, 0, 559},\n\tdictWord{5, 10, 139},\n\tdictWord{7, 10, 1168},\n\tdictWord{138, 10, 539},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t335,\n\t},\n\tdictWord{135, 0, 942},\n\tdictWord{140, 0, 754},\n\tdictWord{132, 11, 365},\n\tdictWord{11, 0, 182},\n\tdictWord{142, 0, 195},\n\tdictWord{142, 11, 29},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t7,\n\t},\n\tdictWord{139, 11, 774},\n\tdictWord{4, 11, 746},\n\tdictWord{135, 11, 1090},\n\tdictWord{8, 0, 39},\n\tdictWord{10, 0, 773},\n\tdictWord{11, 0, 84},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t205,\n\t},\n\tdictWord{142, 0, 1},\n\tdictWord{5, 0, 601},\n\tdictWord{5, 0, 870},\n\tdictWord{5, 11, 360},\n\tdictWord{136, 11, 237},\n\tdictWord{132, 0, 181},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t370,\n\t},\n\tdictWord{134, 0, 1652},\n\tdictWord{8, 0, 358},\n\tdictWord{4, 10, 107},\n\tdictWord{7, 10, 613},\n\tdictWord{8, 10, 439},\n\tdictWord{8, 10, 504},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t501,\n\t},\n\tdictWord{10, 10, 383},\n\tdictWord{139, 10, 477},\n\tdictWord{132, 10, 229},\n\tdictWord{137, 11, 785},\n\tdictWord{4, 0, 97},\n\tdictWord{5, 0, 147},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t286,\n\t},\n\tdictWord{7, 0, 1362},\n\tdictWord{141, 0, 176},\n\tdictWord{6, 0, 537},\n\tdictWord{7, 0, 788},\n\tdictWord{7, 0, 1816},\n\tdictWord{132, 10, 903},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t71,\n\t},\n\tdictWord{6, 0, 743},\n\tdictWord{134, 0, 1223},\n\tdictWord{6, 0, 375},\n\tdictWord{7, 0, 169},\n\tdictWord{7, 0, 254},\n\tdictWord{8, 0, 780},\n\tdictWord{135, 11, 1493},\n\tdictWord{7, 0, 1714},\n\tdictWord{4, 10, 47},\n\tdictWord{6, 10, 373},\n\tdictWord{7, 10, 452},\n\tdictWord{7, 10, 543},\n\tdictWord{7, 10, 1856},\n\tdictWord{9, 10, 6},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t257,\n\t},\n\tdictWord{139, 10, 391},\n\tdictWord{6, 0, 896},\n\tdictWord{136, 0, 1003},\n\tdictWord{135, 0, 1447},\n\tdictWord{137, 11, 341},\n\tdictWord{5, 10, 980},\n\tdictWord{134, 10, 1754},\n\tdictWord{145, 11, 22},\n\tdictWord{4, 11, 277},\n\tdictWord{5, 11, 608},\n\tdictWord{6, 11, 493},\n\tdictWord{7, 11, 457},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t384,\n\t},\n\tdictWord{7, 10, 536},\n\tdictWord{7, 10, 1331},\n\tdictWord{136, 10, 143},\n\tdictWord{140, 0, 744},\n\tdictWord{7, 11, 27},\n\tdictWord{135, 11, 316},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t126,\n\t},\n\tdictWord{5, 10, 19},\n\tdictWord{134, 10, 533},\n\tdictWord{4, 0, 788},\n\tdictWord{11, 0, 41},\n\tdictWord{5, 11, 552},\n\tdictWord{5, 11, 586},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t676,\n\t},\n\tdictWord{6, 11, 448},\n\tdictWord{8, 11, 244},\n\tdictWord{11, 11, 1},\n\tdictWord{11, 11, 41},\n\tdictWord{13, 11, 3},\n\tdictWord{16, 11, 54},\n\tdictWord{17, 11, 4},\n\tdictWord{146, 11, 13},\n\tdictWord{4, 0, 985},\n\tdictWord{6, 0, 1801},\n\tdictWord{4, 11, 401},\n\tdictWord{137, 11, 264},\n\tdictWord{5, 10, 395},\n\tdictWord{5, 10, 951},\n\tdictWord{134, 10, 1776},\n\tdictWord{5, 0, 629},\n\tdictWord{135, 0, 1549},\n\tdictWord{11, 10, 663},\n\tdictWord{12, 10, 210},\n\tdictWord{13, 10, 166},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t310,\n\t},\n\tdictWord{14, 10, 373},\n\tdictWord{147, 10, 43},\n\tdictWord{9, 11, 543},\n\tdictWord{10, 11, 524},\n\tdictWord{11, 11, 30},\n\tdictWord{12, 11, 524},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t315,\n\t},\n\tdictWord{16, 11, 18},\n\tdictWord{20, 11, 26},\n\tdictWord{148, 11, 65},\n\tdictWord{4, 11, 205},\n\tdictWord{5, 11, 623},\n\tdictWord{7, 11, 104},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t519,\n\t},\n\tdictWord{5, 0, 293},\n\tdictWord{134, 0, 601},\n\tdictWord{7, 11, 579},\n\tdictWord{9, 11, 41},\n\tdictWord{9, 11, 244},\n\tdictWord{9, 11, 669},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t5,\n\t},\n\tdictWord{11, 11, 861},\n\tdictWord{11, 11, 951},\n\tdictWord{139, 11, 980},\n\tdictWord{132, 11, 717},\n\tdictWord{132, 10, 695},\n\tdictWord{7, 10, 497},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t387,\n\t},\n\tdictWord{147, 10, 81},\n\tdictWord{132, 0, 420},\n\tdictWord{142, 0, 37},\n\tdictWord{6, 0, 1134},\n\tdictWord{6, 0, 1900},\n\tdictWord{12, 0, 830},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t878,\n\t},\n\tdictWord{12, 0, 894},\n\tdictWord{15, 0, 221},\n\tdictWord{143, 0, 245},\n\tdictWord{132, 11, 489},\n\tdictWord{7, 0, 1570},\n\tdictWord{140, 0, 542},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t933,\n\t},\n\tdictWord{136, 0, 957},\n\tdictWord{6, 0, 1371},\n\tdictWord{7, 0, 31},\n\tdictWord{8, 0, 373},\n\tdictWord{5, 10, 284},\n\tdictWord{6, 10, 49},\n\tdictWord{6, 10, 350},\n\tdictWord{7, 10, 377},\n\tdictWord{7, 10, 1693},\n\tdictWord{8, 10, 678},\n\tdictWord{9, 10, 161},\n\tdictWord{9, 10, 585},\n\tdictWord{9, 10, 671},\n\tdictWord{9, 10, 839},\n\tdictWord{11, 10, 912},\n\tdictWord{141, 10, 427},\n\tdictWord{135, 11, 892},\n\tdictWord{4, 0, 325},\n\tdictWord{138, 0, 125},\n\tdictWord{139, 11, 47},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t597,\n\t},\n\tdictWord{138, 0, 323},\n\tdictWord{6, 0, 1547},\n\tdictWord{7, 11, 1605},\n\tdictWord{9, 11, 473},\n\tdictWord{11, 11, 962},\n\tdictWord{146, 11, 139},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t908,\n\t},\n\tdictWord{7, 11, 819},\n\tdictWord{9, 11, 26},\n\tdictWord{9, 11, 392},\n\tdictWord{10, 11, 152},\n\tdictWord{10, 11, 226},\n\tdictWord{11, 11, 19},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t276,\n\t},\n\tdictWord{12, 11, 426},\n\tdictWord{12, 11, 589},\n\tdictWord{13, 11, 460},\n\tdictWord{15, 11, 97},\n\tdictWord{19, 11, 48},\n\tdictWord{148, 11, 104},\n\tdictWord{135, 11, 51},\n\tdictWord{4, 0, 718},\n\tdictWord{135, 0, 1216},\n\tdictWord{6, 0, 1896},\n\tdictWord{6, 0, 1905},\n\tdictWord{6, 0, 1912},\n\tdictWord{9, 0, 947},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t974,\n\t},\n\tdictWord{12, 0, 809},\n\tdictWord{12, 0, 850},\n\tdictWord{12, 0, 858},\n\tdictWord{12, 0, 874},\n\tdictWord{12, 0, 887},\n\tdictWord{12, 0, 904},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t929,\n\t},\n\tdictWord{12, 0, 948},\n\tdictWord{12, 0, 952},\n\tdictWord{15, 0, 198},\n\tdictWord{15, 0, 206},\n\tdictWord{15, 0, 220},\n\tdictWord{15, 0, 227},\n\tdictWord{15, 0, 247},\n\tdictWord{18, 0, 188},\n\tdictWord{21, 0, 48},\n\tdictWord{21, 0, 50},\n\tdictWord{24, 0, 25},\n\tdictWord{24, 0, 29},\n\tdictWord{7, 11, 761},\n\tdictWord{7, 11, 1051},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t545,\n\t},\n\tdictWord{5, 0, 124},\n\tdictWord{5, 0, 144},\n\tdictWord{6, 0, 548},\n\tdictWord{7, 0, 15},\n\tdictWord{7, 0, 153},\n\tdictWord{137, 0, 629},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t606,\n\t},\n\tdictWord{135, 10, 2014},\n\tdictWord{7, 10, 2007},\n\tdictWord{9, 11, 46},\n\tdictWord{9, 10, 101},\n\tdictWord{9, 10, 450},\n\tdictWord{10, 10, 66},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t842,\n\t},\n\tdictWord{11, 10, 536},\n\tdictWord{140, 10, 587},\n\tdictWord{6, 0, 75},\n\tdictWord{7, 0, 1531},\n\tdictWord{8, 0, 416},\n\tdictWord{9, 0, 240},\n\tdictWord{9, 0, 275},\n\tdictWord{10, 0, 100},\n\tdictWord{11, 0, 658},\n\tdictWord{11, 0, 979},\n\tdictWord{12, 0, 86},\n\tdictWord{14, 0, 207},\n\tdictWord{15, 0, 20},\n\tdictWord{143, 0, 25},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t141,\n\t},\n\tdictWord{5, 0, 915},\n\tdictWord{6, 0, 1783},\n\tdictWord{7, 0, 211},\n\tdictWord{7, 0, 698},\n\tdictWord{7, 0, 1353},\n\tdictWord{9, 0, 83},\n\tdictWord{9, 0, 281},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t376,\n\t},\n\tdictWord{10, 0, 431},\n\tdictWord{11, 0, 543},\n\tdictWord{12, 0, 664},\n\tdictWord{13, 0, 280},\n\tdictWord{13, 0, 428},\n\tdictWord{14, 0, 61},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t128,\n\t},\n\tdictWord{17, 0, 52},\n\tdictWord{145, 0, 81},\n\tdictWord{132, 11, 674},\n\tdictWord{135, 0, 533},\n\tdictWord{149, 0, 6},\n\tdictWord{132, 11, 770},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t538,\n\t},\n\tdictWord{5, 11, 79},\n\tdictWord{7, 11, 1027},\n\tdictWord{7, 11, 1477},\n\tdictWord{139, 11, 52},\n\tdictWord{139, 10, 62},\n\tdictWord{4, 0, 338},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t400,\n\t},\n\tdictWord{5, 11, 789},\n\tdictWord{134, 11, 195},\n\tdictWord{4, 11, 251},\n\tdictWord{4, 11, 688},\n\tdictWord{7, 11, 513},\n\tdictWord{7, 11, 1284},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t87,\n\t},\n\tdictWord{138, 11, 365},\n\tdictWord{134, 10, 1766},\n\tdictWord{6, 0, 0},\n\tdictWord{7, 0, 84},\n\tdictWord{11, 0, 895},\n\tdictWord{145, 0, 11},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t892,\n\t},\n\tdictWord{4, 0, 221},\n\tdictWord{5, 0, 659},\n\tdictWord{7, 0, 697},\n\tdictWord{7, 0, 1211},\n\tdictWord{138, 0, 284},\n\tdictWord{133, 0, 989},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t889,\n\t},\n\tdictWord{4, 11, 160},\n\tdictWord{5, 11, 330},\n\tdictWord{7, 11, 1434},\n\tdictWord{136, 11, 174},\n\tdictWord{6, 10, 1665},\n\tdictWord{7, 10, 256},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1388,\n\t},\n\tdictWord{10, 10, 499},\n\tdictWord{139, 10, 670},\n\tdictWord{7, 0, 848},\n\tdictWord{4, 10, 22},\n\tdictWord{5, 10, 10},\n\tdictWord{136, 10, 97},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t507,\n\t},\n\tdictWord{133, 10, 481},\n\tdictWord{4, 0, 188},\n\tdictWord{135, 0, 805},\n\tdictWord{5, 0, 884},\n\tdictWord{6, 0, 732},\n\tdictWord{139, 0, 991},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t968,\n\t},\n\tdictWord{11, 11, 636},\n\tdictWord{15, 11, 145},\n\tdictWord{17, 11, 34},\n\tdictWord{19, 11, 50},\n\tdictWord{151, 11, 20},\n\tdictWord{7, 0, 959},\n\tdictWord{\n\t\t16,\n\t\t0,\n\t\t60,\n\t},\n\tdictWord{6, 10, 134},\n\tdictWord{7, 10, 437},\n\tdictWord{9, 10, 37},\n\tdictWord{14, 10, 285},\n\tdictWord{142, 10, 371},\n\tdictWord{7, 10, 486},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t155,\n\t},\n\tdictWord{11, 10, 93},\n\tdictWord{140, 10, 164},\n\tdictWord{134, 0, 1653},\n\tdictWord{7, 0, 337},\n\tdictWord{133, 10, 591},\n\tdictWord{6, 0, 1989},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t922,\n\t},\n\tdictWord{8, 0, 978},\n\tdictWord{133, 11, 374},\n\tdictWord{132, 0, 638},\n\tdictWord{138, 0, 500},\n\tdictWord{133, 11, 731},\n\tdictWord{5, 10, 380},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t650,\n\t},\n\tdictWord{136, 10, 310},\n\tdictWord{138, 11, 381},\n\tdictWord{4, 10, 364},\n\tdictWord{7, 10, 1156},\n\tdictWord{7, 10, 1187},\n\tdictWord{137, 10, 409},\n\tdictWord{137, 11, 224},\n\tdictWord{140, 0, 166},\n\tdictWord{134, 10, 482},\n\tdictWord{4, 11, 626},\n\tdictWord{5, 11, 642},\n\tdictWord{6, 11, 425},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t202,\n\t},\n\tdictWord{139, 11, 141},\n\tdictWord{4, 10, 781},\n\tdictWord{6, 10, 487},\n\tdictWord{7, 10, 926},\n\tdictWord{8, 10, 263},\n\tdictWord{139, 10, 500},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t418,\n\t},\n\tdictWord{4, 10, 94},\n\tdictWord{135, 10, 1265},\n\tdictWord{136, 0, 760},\n\tdictWord{132, 10, 417},\n\tdictWord{136, 11, 835},\n\tdictWord{5, 10, 348},\n\tdictWord{134, 10, 522},\n\tdictWord{6, 0, 1277},\n\tdictWord{134, 0, 1538},\n\tdictWord{139, 11, 541},\n\tdictWord{135, 11, 1597},\n\tdictWord{5, 11, 384},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t455,\n\t},\n\tdictWord{140, 11, 48},\n\tdictWord{136, 0, 770},\n\tdictWord{5, 11, 264},\n\tdictWord{134, 11, 184},\n\tdictWord{4, 0, 89},\n\tdictWord{5, 0, 489},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t315,\n\t},\n\tdictWord{7, 0, 553},\n\tdictWord{7, 0, 1745},\n\tdictWord{138, 0, 243},\n\tdictWord{4, 10, 408},\n\tdictWord{4, 10, 741},\n\tdictWord{135, 10, 500},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1396,\n\t},\n\tdictWord{133, 0, 560},\n\tdictWord{6, 0, 1658},\n\tdictWord{9, 0, 3},\n\tdictWord{10, 0, 154},\n\tdictWord{11, 0, 641},\n\tdictWord{13, 0, 85},\n\tdictWord{13, 0, 201},\n\tdictWord{141, 0, 346},\n\tdictWord{135, 11, 1595},\n\tdictWord{5, 11, 633},\n\tdictWord{6, 11, 28},\n\tdictWord{7, 11, 219},\n\tdictWord{135, 11, 1323},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t769,\n\t},\n\tdictWord{140, 11, 185},\n\tdictWord{135, 11, 785},\n\tdictWord{7, 11, 359},\n\tdictWord{8, 11, 243},\n\tdictWord{140, 11, 175},\n\tdictWord{138, 0, 586},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1271,\n\t},\n\tdictWord{134, 10, 73},\n\tdictWord{132, 11, 105},\n\tdictWord{4, 0, 166},\n\tdictWord{5, 0, 505},\n\tdictWord{134, 0, 1670},\n\tdictWord{133, 10, 576},\n\tdictWord{4, 11, 324},\n\tdictWord{138, 11, 104},\n\tdictWord{142, 10, 231},\n\tdictWord{6, 0, 637},\n\tdictWord{7, 10, 1264},\n\tdictWord{7, 10, 1678},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t945,\n\t},\n\tdictWord{12, 10, 341},\n\tdictWord{12, 10, 471},\n\tdictWord{12, 10, 569},\n\tdictWord{23, 11, 21},\n\tdictWord{151, 11, 23},\n\tdictWord{8, 11, 559},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t109,\n\t},\n\tdictWord{134, 0, 1947},\n\tdictWord{7, 0, 445},\n\tdictWord{8, 0, 307},\n\tdictWord{8, 0, 704},\n\tdictWord{10, 0, 41},\n\tdictWord{10, 0, 439},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t237,\n\t},\n\tdictWord{11, 0, 622},\n\tdictWord{140, 0, 201},\n\tdictWord{135, 11, 963},\n\tdictWord{135, 0, 1977},\n\tdictWord{4, 0, 189},\n\tdictWord{5, 0, 713},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t57,\n\t},\n\tdictWord{138, 0, 371},\n\tdictWord{135, 10, 538},\n\tdictWord{132, 0, 552},\n\tdictWord{6, 0, 883},\n\tdictWord{133, 10, 413},\n\tdictWord{6, 0, 923},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t758,\n\t},\n\tdictWord{138, 11, 215},\n\tdictWord{136, 10, 495},\n\tdictWord{7, 10, 54},\n\tdictWord{8, 10, 312},\n\tdictWord{10, 10, 191},\n\tdictWord{10, 10, 614},\n\tdictWord{140, 10, 567},\n\tdictWord{7, 11, 351},\n\tdictWord{139, 11, 128},\n\tdictWord{7, 0, 875},\n\tdictWord{6, 10, 468},\n\tdictWord{7, 10, 1478},\n\tdictWord{8, 10, 530},\n\tdictWord{142, 10, 290},\n\tdictWord{135, 0, 1788},\n\tdictWord{17, 0, 49},\n\tdictWord{133, 11, 918},\n\tdictWord{12, 11, 398},\n\tdictWord{20, 11, 39},\n\tdictWord{\n\t\t21,\n\t\t11,\n\t\t11,\n\t},\n\tdictWord{150, 11, 41},\n\tdictWord{10, 0, 661},\n\tdictWord{6, 10, 484},\n\tdictWord{135, 10, 822},\n\tdictWord{135, 0, 1945},\n\tdictWord{134, 0, 794},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t900,\n\t},\n\tdictWord{135, 10, 1335},\n\tdictWord{6, 10, 1724},\n\tdictWord{135, 10, 2022},\n\tdictWord{132, 11, 340},\n\tdictWord{134, 0, 1135},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t784,\n\t},\n\tdictWord{133, 0, 745},\n\tdictWord{5, 0, 84},\n\tdictWord{134, 0, 163},\n\tdictWord{133, 0, 410},\n\tdictWord{4, 0, 976},\n\tdictWord{5, 11, 985},\n\tdictWord{7, 11, 509},\n\tdictWord{7, 11, 529},\n\tdictWord{145, 11, 96},\n\tdictWord{132, 10, 474},\n\tdictWord{134, 0, 703},\n\tdictWord{135, 11, 1919},\n\tdictWord{5, 0, 322},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t186,\n\t},\n\tdictWord{9, 0, 262},\n\tdictWord{10, 0, 187},\n\tdictWord{142, 0, 208},\n\tdictWord{135, 10, 1504},\n\tdictWord{133, 0, 227},\n\tdictWord{9, 0, 560},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t208,\n\t},\n\tdictWord{133, 10, 305},\n\tdictWord{132, 11, 247},\n\tdictWord{7, 0, 1395},\n\tdictWord{8, 0, 486},\n\tdictWord{9, 0, 236},\n\tdictWord{9, 0, 878},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t218,\n\t},\n\tdictWord{11, 0, 95},\n\tdictWord{19, 0, 17},\n\tdictWord{147, 0, 31},\n\tdictWord{7, 0, 2043},\n\tdictWord{8, 0, 672},\n\tdictWord{141, 0, 448},\n\tdictWord{4, 11, 184},\n\tdictWord{5, 11, 390},\n\tdictWord{6, 11, 337},\n\tdictWord{7, 11, 23},\n\tdictWord{7, 11, 494},\n\tdictWord{7, 11, 618},\n\tdictWord{7, 11, 1456},\n\tdictWord{8, 11, 27},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t599,\n\t},\n\tdictWord{10, 11, 153},\n\tdictWord{139, 11, 710},\n\tdictWord{135, 0, 466},\n\tdictWord{135, 10, 1236},\n\tdictWord{6, 0, 167},\n\tdictWord{7, 0, 186},\n\tdictWord{7, 0, 656},\n\tdictWord{10, 0, 643},\n\tdictWord{4, 10, 480},\n\tdictWord{6, 10, 302},\n\tdictWord{6, 10, 1642},\n\tdictWord{7, 10, 837},\n\tdictWord{7, 10, 1547},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1657,\n\t},\n\tdictWord{8, 10, 429},\n\tdictWord{9, 10, 228},\n\tdictWord{13, 10, 289},\n\tdictWord{13, 10, 343},\n\tdictWord{147, 10, 101},\n\tdictWord{134, 0, 1428},\n\tdictWord{134, 0, 1440},\n\tdictWord{5, 0, 412},\n\tdictWord{7, 10, 278},\n\tdictWord{10, 10, 739},\n\tdictWord{11, 10, 708},\n\tdictWord{141, 10, 348},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1118,\n\t},\n\tdictWord{136, 0, 562},\n\tdictWord{148, 11, 46},\n\tdictWord{9, 0, 316},\n\tdictWord{139, 0, 256},\n\tdictWord{134, 0, 1771},\n\tdictWord{135, 0, 1190},\n\tdictWord{137, 0, 132},\n\tdictWord{10, 11, 227},\n\tdictWord{11, 11, 497},\n\tdictWord{11, 11, 709},\n\tdictWord{140, 11, 415},\n\tdictWord{143, 0, 66},\n\tdictWord{6, 11, 360},\n\tdictWord{7, 11, 1664},\n\tdictWord{136, 11, 478},\n\tdictWord{144, 10, 28},\n\tdictWord{4, 0, 317},\n\tdictWord{135, 0, 1279},\n\tdictWord{5, 0, 63},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t509,\n\t},\n\tdictWord{136, 11, 699},\n\tdictWord{145, 10, 36},\n\tdictWord{134, 0, 1475},\n\tdictWord{11, 11, 343},\n\tdictWord{142, 11, 127},\n\tdictWord{132, 11, 739},\n\tdictWord{132, 0, 288},\n\tdictWord{135, 11, 1757},\n\tdictWord{8, 0, 89},\n\tdictWord{8, 0, 620},\n\tdictWord{9, 0, 608},\n\tdictWord{11, 0, 628},\n\tdictWord{12, 0, 322},\n\tdictWord{143, 0, 124},\n\tdictWord{134, 0, 1225},\n\tdictWord{7, 0, 1189},\n\tdictWord{4, 11, 67},\n\tdictWord{5, 11, 422},\n\tdictWord{6, 10, 363},\n\tdictWord{7, 11, 1037},\n\tdictWord{7, 11, 1289},\n\tdictWord{7, 11, 1555},\n\tdictWord{7, 10, 1955},\n\tdictWord{8, 10, 725},\n\tdictWord{9, 11, 741},\n\tdictWord{145, 11, 108},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1468,\n\t},\n\tdictWord{6, 0, 689},\n\tdictWord{134, 0, 1451},\n\tdictWord{138, 0, 120},\n\tdictWord{151, 0, 1},\n\tdictWord{137, 10, 805},\n\tdictWord{142, 0, 329},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t813,\n\t},\n\tdictWord{135, 10, 2046},\n\tdictWord{135, 0, 226},\n\tdictWord{138, 11, 96},\n\tdictWord{7, 0, 1855},\n\tdictWord{5, 10, 712},\n\tdictWord{11, 10, 17},\n\tdictWord{13, 10, 321},\n\tdictWord{144, 10, 67},\n\tdictWord{9, 0, 461},\n\tdictWord{6, 10, 320},\n\tdictWord{7, 10, 781},\n\tdictWord{7, 10, 1921},\n\tdictWord{9, 10, 55},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t186,\n\t},\n\tdictWord{10, 10, 273},\n\tdictWord{10, 10, 664},\n\tdictWord{10, 10, 801},\n\tdictWord{11, 10, 996},\n\tdictWord{11, 10, 997},\n\tdictWord{13, 10, 157},\n\tdictWord{142, 10, 170},\n\tdictWord{8, 11, 203},\n\tdictWord{8, 10, 271},\n\tdictWord{11, 11, 823},\n\tdictWord{11, 11, 846},\n\tdictWord{12, 11, 482},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t133,\n\t},\n\tdictWord{13, 11, 277},\n\tdictWord{13, 11, 302},\n\tdictWord{13, 11, 464},\n\tdictWord{14, 11, 205},\n\tdictWord{142, 11, 221},\n\tdictWord{135, 0, 1346},\n\tdictWord{4, 11, 449},\n\tdictWord{133, 11, 718},\n\tdictWord{134, 0, 85},\n\tdictWord{14, 0, 299},\n\tdictWord{7, 10, 103},\n\tdictWord{7, 10, 863},\n\tdictWord{11, 10, 184},\n\tdictWord{145, 10, 62},\n\tdictWord{4, 11, 355},\n\tdictWord{6, 11, 311},\n\tdictWord{9, 11, 256},\n\tdictWord{138, 11, 404},\n\tdictWord{137, 10, 659},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t758,\n\t},\n\tdictWord{133, 11, 827},\n\tdictWord{5, 11, 64},\n\tdictWord{140, 11, 581},\n\tdictWord{134, 0, 1171},\n\tdictWord{4, 11, 442},\n\tdictWord{7, 11, 1047},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1352,\n\t},\n\tdictWord{135, 11, 1643},\n\tdictWord{132, 0, 980},\n\tdictWord{5, 11, 977},\n\tdictWord{6, 11, 288},\n\tdictWord{7, 11, 528},\n\tdictWord{135, 11, 1065},\n\tdictWord{5, 0, 279},\n\tdictWord{6, 0, 235},\n\tdictWord{7, 0, 468},\n\tdictWord{8, 0, 446},\n\tdictWord{9, 0, 637},\n\tdictWord{10, 0, 717},\n\tdictWord{11, 0, 738},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t514,\n\t},\n\tdictWord{132, 0, 293},\n\tdictWord{11, 10, 337},\n\tdictWord{142, 10, 303},\n\tdictWord{136, 11, 285},\n\tdictWord{5, 0, 17},\n\tdictWord{6, 0, 371},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t528,\n\t},\n\tdictWord{12, 0, 364},\n\tdictWord{132, 11, 254},\n\tdictWord{5, 10, 77},\n\tdictWord{7, 10, 1455},\n\tdictWord{10, 10, 843},\n\tdictWord{147, 10, 73},\n\tdictWord{\n\t\t150,\n\t\t0,\n\t\t5,\n\t},\n\tdictWord{132, 10, 458},\n\tdictWord{6, 11, 12},\n\tdictWord{7, 11, 1219},\n\tdictWord{145, 11, 73},\n\tdictWord{135, 10, 1420},\n\tdictWord{6, 10, 109},\n\tdictWord{138, 10, 382},\n\tdictWord{135, 11, 125},\n\tdictWord{6, 10, 330},\n\tdictWord{7, 10, 1084},\n\tdictWord{139, 10, 142},\n\tdictWord{6, 11, 369},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t502,\n\t},\n\tdictWord{7, 11, 1036},\n\tdictWord{8, 11, 348},\n\tdictWord{9, 11, 452},\n\tdictWord{10, 11, 26},\n\tdictWord{11, 11, 224},\n\tdictWord{11, 11, 387},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t772,\n\t},\n\tdictWord{12, 11, 95},\n\tdictWord{12, 11, 629},\n\tdictWord{13, 11, 195},\n\tdictWord{13, 11, 207},\n\tdictWord{13, 11, 241},\n\tdictWord{14, 11, 260},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t270,\n\t},\n\tdictWord{143, 11, 140},\n\tdictWord{132, 11, 269},\n\tdictWord{5, 11, 480},\n\tdictWord{7, 11, 532},\n\tdictWord{7, 11, 1197},\n\tdictWord{7, 11, 1358},\n\tdictWord{8, 11, 291},\n\tdictWord{11, 11, 349},\n\tdictWord{142, 11, 396},\n\tdictWord{150, 0, 48},\n\tdictWord{10, 0, 601},\n\tdictWord{13, 0, 353},\n\tdictWord{141, 0, 376},\n\tdictWord{5, 0, 779},\n\tdictWord{5, 0, 807},\n\tdictWord{6, 0, 1655},\n\tdictWord{134, 0, 1676},\n\tdictWord{142, 11, 223},\n\tdictWord{4, 0, 196},\n\tdictWord{5, 0, 558},\n\tdictWord{133, 0, 949},\n\tdictWord{148, 11, 15},\n\tdictWord{135, 11, 1764},\n\tdictWord{134, 0, 1322},\n\tdictWord{132, 0, 752},\n\tdictWord{139, 0, 737},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t657,\n\t},\n\tdictWord{136, 11, 533},\n\tdictWord{135, 0, 412},\n\tdictWord{4, 0, 227},\n\tdictWord{5, 0, 159},\n\tdictWord{5, 0, 409},\n\tdictWord{7, 0, 80},\n\tdictWord{8, 0, 556},\n\tdictWord{10, 0, 479},\n\tdictWord{12, 0, 418},\n\tdictWord{14, 0, 50},\n\tdictWord{14, 0, 123},\n\tdictWord{14, 0, 192},\n\tdictWord{14, 0, 249},\n\tdictWord{14, 0, 295},\n\tdictWord{143, 0, 27},\n\tdictWord{7, 0, 1470},\n\tdictWord{8, 0, 66},\n\tdictWord{8, 0, 137},\n\tdictWord{8, 0, 761},\n\tdictWord{9, 0, 638},\n\tdictWord{11, 0, 80},\n\tdictWord{11, 0, 212},\n\tdictWord{11, 0, 368},\n\tdictWord{11, 0, 418},\n\tdictWord{12, 0, 8},\n\tdictWord{13, 0, 15},\n\tdictWord{16, 0, 61},\n\tdictWord{17, 0, 59},\n\tdictWord{19, 0, 28},\n\tdictWord{\n\t\t148,\n\t\t0,\n\t\t84,\n\t},\n\tdictWord{135, 10, 1985},\n\tdictWord{4, 11, 211},\n\tdictWord{4, 11, 332},\n\tdictWord{5, 11, 335},\n\tdictWord{6, 11, 238},\n\tdictWord{7, 11, 269},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t811,\n\t},\n\tdictWord{7, 11, 1797},\n\tdictWord{8, 10, 122},\n\tdictWord{8, 11, 836},\n\tdictWord{9, 11, 507},\n\tdictWord{141, 11, 242},\n\tdictWord{6, 0, 683},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1252,\n\t},\n\tdictWord{4, 0, 873},\n\tdictWord{132, 10, 234},\n\tdictWord{134, 0, 835},\n\tdictWord{6, 0, 38},\n\tdictWord{7, 0, 1220},\n\tdictWord{8, 0, 185},\n\tdictWord{8, 0, 256},\n\tdictWord{9, 0, 22},\n\tdictWord{9, 0, 331},\n\tdictWord{10, 0, 738},\n\tdictWord{11, 0, 205},\n\tdictWord{11, 0, 540},\n\tdictWord{11, 0, 746},\n\tdictWord{13, 0, 465},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t88,\n\t},\n\tdictWord{142, 0, 194},\n\tdictWord{138, 0, 986},\n\tdictWord{5, 11, 1009},\n\tdictWord{12, 11, 582},\n\tdictWord{146, 11, 131},\n\tdictWord{4, 0, 159},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t115,\n\t},\n\tdictWord{7, 0, 252},\n\tdictWord{7, 0, 257},\n\tdictWord{7, 0, 1928},\n\tdictWord{8, 0, 69},\n\tdictWord{9, 0, 384},\n\tdictWord{10, 0, 91},\n\tdictWord{10, 0, 615},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t375,\n\t},\n\tdictWord{14, 0, 235},\n\tdictWord{18, 0, 117},\n\tdictWord{147, 0, 123},\n\tdictWord{133, 0, 911},\n\tdictWord{136, 0, 278},\n\tdictWord{5, 10, 430},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t932,\n\t},\n\tdictWord{6, 10, 131},\n\tdictWord{7, 10, 417},\n\tdictWord{9, 10, 522},\n\tdictWord{11, 10, 314},\n\tdictWord{141, 10, 390},\n\tdictWord{14, 10, 149},\n\tdictWord{14, 10, 399},\n\tdictWord{143, 10, 57},\n\tdictWord{4, 0, 151},\n\tdictWord{7, 0, 1567},\n\tdictWord{136, 0, 749},\n\tdictWord{5, 11, 228},\n\tdictWord{6, 11, 203},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t156,\n\t},\n\tdictWord{8, 11, 347},\n\tdictWord{137, 11, 265},\n\tdictWord{132, 10, 507},\n\tdictWord{10, 0, 989},\n\tdictWord{140, 0, 956},\n\tdictWord{133, 0, 990},\n\tdictWord{5, 0, 194},\n\tdictWord{6, 0, 927},\n\tdictWord{7, 0, 1662},\n\tdictWord{9, 0, 90},\n\tdictWord{140, 0, 564},\n\tdictWord{4, 10, 343},\n\tdictWord{133, 10, 511},\n\tdictWord{133, 0, 425},\n\tdictWord{7, 10, 455},\n\tdictWord{138, 10, 591},\n\tdictWord{4, 0, 774},\n\tdictWord{7, 11, 476},\n\tdictWord{7, 11, 1592},\n\tdictWord{138, 11, 87},\n\tdictWord{5, 0, 971},\n\tdictWord{135, 10, 1381},\n\tdictWord{5, 11, 318},\n\tdictWord{147, 11, 121},\n\tdictWord{5, 11, 291},\n\tdictWord{7, 11, 765},\n\tdictWord{9, 11, 389},\n\tdictWord{140, 11, 548},\n\tdictWord{134, 10, 575},\n\tdictWord{4, 0, 827},\n\tdictWord{12, 0, 646},\n\tdictWord{12, 0, 705},\n\tdictWord{12, 0, 712},\n\tdictWord{140, 0, 714},\n\tdictWord{139, 0, 752},\n\tdictWord{137, 0, 662},\n\tdictWord{5, 0, 72},\n\tdictWord{6, 0, 264},\n\tdictWord{7, 0, 21},\n\tdictWord{7, 0, 46},\n\tdictWord{7, 0, 2013},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t215,\n\t},\n\tdictWord{8, 0, 513},\n\tdictWord{10, 0, 266},\n\tdictWord{139, 0, 22},\n\tdictWord{139, 11, 522},\n\tdictWord{6, 0, 239},\n\tdictWord{7, 0, 118},\n\tdictWord{10, 0, 95},\n\tdictWord{11, 0, 603},\n\tdictWord{13, 0, 443},\n\tdictWord{14, 0, 160},\n\tdictWord{143, 0, 4},\n\tdictWord{6, 0, 431},\n\tdictWord{134, 0, 669},\n\tdictWord{7, 10, 1127},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1572,\n\t},\n\tdictWord{10, 10, 297},\n\tdictWord{10, 10, 422},\n\tdictWord{11, 10, 764},\n\tdictWord{11, 10, 810},\n\tdictWord{12, 10, 264},\n\tdictWord{13, 10, 102},\n\tdictWord{13, 10, 300},\n\tdictWord{13, 10, 484},\n\tdictWord{14, 10, 147},\n\tdictWord{14, 10, 229},\n\tdictWord{17, 10, 71},\n\tdictWord{18, 10, 118},\n\tdictWord{\n\t\t147,\n\t\t10,\n\t\t120,\n\t},\n\tdictWord{5, 0, 874},\n\tdictWord{6, 0, 1677},\n\tdictWord{15, 0, 0},\n\tdictWord{10, 11, 525},\n\tdictWord{139, 11, 82},\n\tdictWord{6, 0, 65},\n\tdictWord{7, 0, 939},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1172,\n\t},\n\tdictWord{7, 0, 1671},\n\tdictWord{9, 0, 540},\n\tdictWord{10, 0, 696},\n\tdictWord{11, 0, 265},\n\tdictWord{11, 0, 732},\n\tdictWord{11, 0, 928},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t937,\n\t},\n\tdictWord{141, 0, 438},\n\tdictWord{134, 0, 1350},\n\tdictWord{136, 11, 547},\n\tdictWord{132, 11, 422},\n\tdictWord{5, 11, 355},\n\tdictWord{145, 11, 0},\n\tdictWord{137, 11, 905},\n\tdictWord{5, 0, 682},\n\tdictWord{135, 0, 1887},\n\tdictWord{132, 0, 809},\n\tdictWord{4, 0, 696},\n\tdictWord{133, 11, 865},\n\tdictWord{6, 0, 1074},\n\tdictWord{6, 0, 1472},\n\tdictWord{14, 10, 35},\n\tdictWord{142, 10, 191},\n\tdictWord{5, 11, 914},\n\tdictWord{134, 11, 1625},\n\tdictWord{133, 11, 234},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1383,\n\t},\n\tdictWord{137, 11, 780},\n\tdictWord{132, 10, 125},\n\tdictWord{4, 0, 726},\n\tdictWord{133, 0, 630},\n\tdictWord{8, 0, 802},\n\tdictWord{136, 0, 838},\n\tdictWord{132, 10, 721},\n\tdictWord{6, 0, 1337},\n\tdictWord{7, 0, 776},\n\tdictWord{19, 0, 56},\n\tdictWord{136, 10, 145},\n\tdictWord{132, 0, 970},\n\tdictWord{7, 10, 792},\n\tdictWord{8, 10, 147},\n\tdictWord{10, 10, 821},\n\tdictWord{139, 10, 1021},\n\tdictWord{139, 10, 970},\n\tdictWord{8, 0, 940},\n\tdictWord{137, 0, 797},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1312,\n\t},\n\tdictWord{9, 0, 248},\n\tdictWord{10, 0, 400},\n\tdictWord{7, 11, 816},\n\tdictWord{7, 11, 1241},\n\tdictWord{7, 10, 1999},\n\tdictWord{9, 11, 283},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t520,\n\t},\n\tdictWord{10, 11, 213},\n\tdictWord{10, 11, 307},\n\tdictWord{10, 11, 463},\n\tdictWord{10, 11, 671},\n\tdictWord{10, 11, 746},\n\tdictWord{11, 11, 401},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t794,\n\t},\n\tdictWord{12, 11, 517},\n\tdictWord{18, 11, 107},\n\tdictWord{147, 11, 115},\n\tdictWord{6, 0, 1951},\n\tdictWord{134, 0, 2040},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t339,\n\t},\n\tdictWord{13, 0, 41},\n\tdictWord{15, 0, 93},\n\tdictWord{5, 10, 168},\n\tdictWord{5, 10, 930},\n\tdictWord{8, 10, 74},\n\tdictWord{9, 10, 623},\n\tdictWord{12, 10, 500},\n\tdictWord{140, 10, 579},\n\tdictWord{6, 0, 118},\n\tdictWord{7, 0, 215},\n\tdictWord{7, 0, 1521},\n\tdictWord{140, 0, 11},\n\tdictWord{6, 10, 220},\n\tdictWord{7, 10, 1101},\n\tdictWord{141, 10, 105},\n\tdictWord{6, 11, 421},\n\tdictWord{7, 11, 61},\n\tdictWord{7, 11, 1540},\n\tdictWord{10, 11, 11},\n\tdictWord{138, 11, 501},\n\tdictWord{7, 0, 615},\n\tdictWord{138, 0, 251},\n\tdictWord{140, 11, 631},\n\tdictWord{135, 0, 1044},\n\tdictWord{6, 10, 19},\n\tdictWord{7, 10, 1413},\n\tdictWord{139, 10, 428},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t225,\n\t},\n\tdictWord{7, 10, 96},\n\tdictWord{8, 10, 401},\n\tdictWord{8, 10, 703},\n\tdictWord{137, 10, 896},\n\tdictWord{145, 10, 116},\n\tdictWord{6, 11, 102},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t72,\n\t},\n\tdictWord{15, 11, 142},\n\tdictWord{147, 11, 67},\n\tdictWord{7, 10, 1961},\n\tdictWord{7, 10, 1965},\n\tdictWord{8, 10, 702},\n\tdictWord{136, 10, 750},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t2030,\n\t},\n\tdictWord{8, 10, 150},\n\tdictWord{8, 10, 737},\n\tdictWord{12, 10, 366},\n\tdictWord{151, 11, 30},\n\tdictWord{4, 0, 370},\n\tdictWord{5, 0, 756},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1326,\n\t},\n\tdictWord{135, 11, 823},\n\tdictWord{8, 10, 800},\n\tdictWord{9, 10, 148},\n\tdictWord{9, 10, 872},\n\tdictWord{9, 10, 890},\n\tdictWord{11, 10, 309},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t1001,\n\t},\n\tdictWord{13, 10, 267},\n\tdictWord{141, 10, 323},\n\tdictWord{6, 0, 1662},\n\tdictWord{7, 0, 48},\n\tdictWord{8, 0, 771},\n\tdictWord{10, 0, 116},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t104,\n\t},\n\tdictWord{14, 0, 105},\n\tdictWord{14, 0, 184},\n\tdictWord{15, 0, 168},\n\tdictWord{19, 0, 92},\n\tdictWord{148, 0, 68},\n\tdictWord{10, 0, 209},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1870,\n\t},\n\tdictWord{7, 11, 68},\n\tdictWord{8, 11, 48},\n\tdictWord{8, 11, 88},\n\tdictWord{8, 11, 582},\n\tdictWord{8, 11, 681},\n\tdictWord{9, 11, 373},\n\tdictWord{9, 11, 864},\n\tdictWord{11, 11, 157},\n\tdictWord{11, 11, 336},\n\tdictWord{11, 11, 843},\n\tdictWord{148, 11, 27},\n\tdictWord{134, 0, 930},\n\tdictWord{4, 11, 88},\n\tdictWord{5, 11, 137},\n\tdictWord{5, 11, 174},\n\tdictWord{5, 11, 777},\n\tdictWord{6, 11, 1664},\n\tdictWord{6, 11, 1725},\n\tdictWord{7, 11, 77},\n\tdictWord{7, 11, 426},\n\tdictWord{7, 11, 1317},\n\tdictWord{7, 11, 1355},\n\tdictWord{8, 11, 126},\n\tdictWord{8, 11, 563},\n\tdictWord{9, 11, 523},\n\tdictWord{9, 11, 750},\n\tdictWord{10, 11, 310},\n\tdictWord{10, 11, 836},\n\tdictWord{11, 11, 42},\n\tdictWord{11, 11, 318},\n\tdictWord{11, 11, 731},\n\tdictWord{12, 11, 68},\n\tdictWord{12, 11, 92},\n\tdictWord{12, 11, 507},\n\tdictWord{12, 11, 692},\n\tdictWord{13, 11, 81},\n\tdictWord{13, 11, 238},\n\tdictWord{13, 11, 374},\n\tdictWord{18, 11, 138},\n\tdictWord{19, 11, 78},\n\tdictWord{19, 11, 111},\n\tdictWord{20, 11, 55},\n\tdictWord{20, 11, 77},\n\tdictWord{148, 11, 92},\n\tdictWord{4, 11, 938},\n\tdictWord{135, 11, 1831},\n\tdictWord{5, 10, 547},\n\tdictWord{7, 10, 424},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t617,\n\t},\n\tdictWord{138, 11, 351},\n\tdictWord{6, 0, 1286},\n\tdictWord{6, 11, 1668},\n\tdictWord{7, 11, 1499},\n\tdictWord{8, 11, 117},\n\tdictWord{9, 11, 314},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t174,\n\t},\n\tdictWord{6, 0, 759},\n\tdictWord{6, 0, 894},\n\tdictWord{7, 11, 707},\n\tdictWord{139, 11, 563},\n\tdictWord{4, 0, 120},\n\tdictWord{135, 0, 1894},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t385,\n\t},\n\tdictWord{149, 0, 17},\n\tdictWord{138, 0, 429},\n\tdictWord{133, 11, 403},\n\tdictWord{5, 0, 820},\n\tdictWord{135, 0, 931},\n\tdictWord{10, 0, 199},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t133,\n\t},\n\tdictWord{6, 0, 151},\n\tdictWord{6, 0, 1675},\n\tdictWord{7, 0, 383},\n\tdictWord{151, 0, 10},\n\tdictWord{6, 0, 761},\n\tdictWord{136, 10, 187},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t365,\n\t},\n\tdictWord{10, 10, 0},\n\tdictWord{10, 10, 818},\n\tdictWord{139, 10, 988},\n\tdictWord{4, 11, 44},\n\tdictWord{5, 11, 311},\n\tdictWord{6, 11, 156},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t639,\n\t},\n\tdictWord{7, 11, 762},\n\tdictWord{7, 11, 1827},\n\tdictWord{9, 11, 8},\n\tdictWord{9, 11, 462},\n\tdictWord{148, 11, 83},\n\tdictWord{4, 11, 346},\n\tdictWord{7, 11, 115},\n\tdictWord{9, 11, 180},\n\tdictWord{9, 11, 456},\n\tdictWord{138, 11, 363},\n\tdictWord{136, 10, 685},\n\tdictWord{7, 0, 1086},\n\tdictWord{145, 0, 46},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1624,\n\t},\n\tdictWord{11, 0, 11},\n\tdictWord{12, 0, 422},\n\tdictWord{13, 0, 444},\n\tdictWord{142, 0, 360},\n\tdictWord{6, 0, 1020},\n\tdictWord{6, 0, 1260},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1589,\n\t},\n\tdictWord{4, 0, 43},\n\tdictWord{5, 0, 344},\n\tdictWord{5, 0, 357},\n\tdictWord{14, 0, 472},\n\tdictWord{150, 0, 58},\n\tdictWord{6, 0, 1864},\n\tdictWord{6, 0, 1866},\n\tdictWord{6, 0, 1868},\n\tdictWord{6, 0, 1869},\n\tdictWord{6, 0, 1874},\n\tdictWord{6, 0, 1877},\n\tdictWord{6, 0, 1903},\n\tdictWord{6, 0, 1911},\n\tdictWord{9, 0, 920},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t921,\n\t},\n\tdictWord{9, 0, 924},\n\tdictWord{9, 0, 946},\n\tdictWord{9, 0, 959},\n\tdictWord{9, 0, 963},\n\tdictWord{9, 0, 970},\n\tdictWord{9, 0, 997},\n\tdictWord{9, 0, 1008},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t1017,\n\t},\n\tdictWord{12, 0, 795},\n\tdictWord{12, 0, 797},\n\tdictWord{12, 0, 798},\n\tdictWord{12, 0, 800},\n\tdictWord{12, 0, 803},\n\tdictWord{12, 0, 811},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t820,\n\t},\n\tdictWord{12, 0, 821},\n\tdictWord{12, 0, 839},\n\tdictWord{12, 0, 841},\n\tdictWord{12, 0, 848},\n\tdictWord{12, 0, 911},\n\tdictWord{12, 0, 921},\n\tdictWord{12, 0, 922},\n\tdictWord{12, 0, 925},\n\tdictWord{12, 0, 937},\n\tdictWord{12, 0, 944},\n\tdictWord{12, 0, 945},\n\tdictWord{12, 0, 953},\n\tdictWord{15, 0, 184},\n\tdictWord{15, 0, 191},\n\tdictWord{15, 0, 199},\n\tdictWord{15, 0, 237},\n\tdictWord{15, 0, 240},\n\tdictWord{15, 0, 243},\n\tdictWord{15, 0, 246},\n\tdictWord{18, 0, 203},\n\tdictWord{21, 0, 40},\n\tdictWord{\n\t\t21,\n\t\t0,\n\t\t52,\n\t},\n\tdictWord{21, 0, 57},\n\tdictWord{24, 0, 23},\n\tdictWord{24, 0, 28},\n\tdictWord{152, 0, 30},\n\tdictWord{134, 0, 725},\n\tdictWord{145, 11, 58},\n\tdictWord{133, 0, 888},\n\tdictWord{137, 10, 874},\n\tdictWord{4, 0, 711},\n\tdictWord{8, 10, 774},\n\tdictWord{10, 10, 670},\n\tdictWord{140, 10, 51},\n\tdictWord{144, 11, 40},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t185,\n\t},\n\tdictWord{7, 11, 1899},\n\tdictWord{139, 11, 673},\n\tdictWord{137, 10, 701},\n\tdictWord{137, 0, 440},\n\tdictWord{4, 11, 327},\n\tdictWord{5, 11, 478},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1332,\n\t},\n\tdictWord{8, 11, 753},\n\tdictWord{140, 11, 227},\n\tdictWord{4, 10, 127},\n\tdictWord{5, 10, 350},\n\tdictWord{6, 10, 356},\n\tdictWord{8, 10, 426},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t572,\n\t},\n\tdictWord{10, 10, 247},\n\tdictWord{139, 10, 312},\n\tdictWord{5, 11, 1020},\n\tdictWord{133, 11, 1022},\n\tdictWord{4, 11, 103},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t401,\n\t},\n\tdictWord{6, 0, 1913},\n\tdictWord{6, 0, 1926},\n\tdictWord{6, 0, 1959},\n\tdictWord{9, 0, 914},\n\tdictWord{9, 0, 939},\n\tdictWord{9, 0, 952},\n\tdictWord{9, 0, 979},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t990,\n\t},\n\tdictWord{9, 0, 998},\n\tdictWord{9, 0, 1003},\n\tdictWord{9, 0, 1023},\n\tdictWord{12, 0, 827},\n\tdictWord{12, 0, 834},\n\tdictWord{12, 0, 845},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t912,\n\t},\n\tdictWord{12, 0, 935},\n\tdictWord{12, 0, 951},\n\tdictWord{15, 0, 172},\n\tdictWord{15, 0, 174},\n\tdictWord{18, 0, 198},\n\tdictWord{149, 0, 63},\n\tdictWord{5, 0, 958},\n\tdictWord{5, 0, 987},\n\tdictWord{4, 11, 499},\n\tdictWord{135, 11, 1421},\n\tdictWord{7, 0, 885},\n\tdictWord{6, 10, 59},\n\tdictWord{6, 10, 1762},\n\tdictWord{9, 10, 603},\n\tdictWord{141, 10, 397},\n\tdictWord{10, 11, 62},\n\tdictWord{141, 11, 164},\n\tdictWord{4, 0, 847},\n\tdictWord{135, 0, 326},\n\tdictWord{11, 0, 276},\n\tdictWord{142, 0, 293},\n\tdictWord{4, 0, 65},\n\tdictWord{5, 0, 479},\n\tdictWord{5, 0, 1004},\n\tdictWord{7, 0, 1913},\n\tdictWord{8, 0, 317},\n\tdictWord{9, 0, 302},\n\tdictWord{10, 0, 612},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t22,\n\t},\n\tdictWord{132, 11, 96},\n\tdictWord{4, 0, 261},\n\tdictWord{135, 0, 510},\n\tdictWord{135, 0, 1514},\n\tdictWord{6, 10, 111},\n\tdictWord{7, 10, 4},\n\tdictWord{8, 10, 163},\n\tdictWord{8, 10, 776},\n\tdictWord{138, 10, 566},\n\tdictWord{4, 0, 291},\n\tdictWord{9, 0, 515},\n\tdictWord{12, 0, 152},\n\tdictWord{12, 0, 443},\n\tdictWord{13, 0, 392},\n\tdictWord{142, 0, 357},\n\tdictWord{7, 11, 399},\n\tdictWord{135, 11, 1492},\n\tdictWord{4, 0, 589},\n\tdictWord{139, 0, 282},\n\tdictWord{6, 11, 563},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1994,\n\t},\n\tdictWord{5, 10, 297},\n\tdictWord{135, 10, 1038},\n\tdictWord{4, 0, 130},\n\tdictWord{7, 0, 843},\n\tdictWord{135, 0, 1562},\n\tdictWord{5, 0, 42},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t879,\n\t},\n\tdictWord{7, 0, 245},\n\tdictWord{7, 0, 324},\n\tdictWord{7, 0, 1532},\n\tdictWord{11, 0, 463},\n\tdictWord{11, 0, 472},\n\tdictWord{13, 0, 363},\n\tdictWord{144, 0, 52},\n\tdictWord{4, 0, 134},\n\tdictWord{133, 0, 372},\n\tdictWord{133, 0, 680},\n\tdictWord{136, 10, 363},\n\tdictWord{6, 0, 1997},\n\tdictWord{8, 0, 935},\n\tdictWord{136, 0, 977},\n\tdictWord{4, 0, 810},\n\tdictWord{135, 0, 1634},\n\tdictWord{135, 10, 1675},\n\tdictWord{7, 0, 1390},\n\tdictWord{4, 11, 910},\n\tdictWord{133, 11, 832},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t808,\n\t},\n\tdictWord{8, 11, 266},\n\tdictWord{139, 11, 578},\n\tdictWord{132, 0, 644},\n\tdictWord{4, 0, 982},\n\tdictWord{138, 0, 867},\n\tdictWord{132, 10, 280},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t540,\n\t},\n\tdictWord{140, 10, 54},\n\tdictWord{135, 0, 123},\n\tdictWord{134, 0, 1978},\n\tdictWord{4, 10, 421},\n\tdictWord{133, 10, 548},\n\tdictWord{6, 0, 623},\n\tdictWord{136, 0, 789},\n\tdictWord{4, 0, 908},\n\tdictWord{5, 0, 359},\n\tdictWord{5, 0, 508},\n\tdictWord{6, 0, 1723},\n\tdictWord{7, 0, 343},\n\tdictWord{7, 0, 1996},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t2026,\n\t},\n\tdictWord{134, 0, 1220},\n\tdictWord{4, 0, 341},\n\tdictWord{135, 0, 480},\n\tdictWord{6, 10, 254},\n\tdictWord{9, 10, 109},\n\tdictWord{138, 10, 103},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t888,\n\t},\n\tdictWord{8, 11, 528},\n\tdictWord{137, 11, 348},\n\tdictWord{7, 0, 1995},\n\tdictWord{8, 0, 299},\n\tdictWord{11, 0, 890},\n\tdictWord{12, 0, 674},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t20,\n\t},\n\tdictWord{133, 11, 616},\n\tdictWord{135, 11, 1094},\n\tdictWord{134, 10, 1630},\n\tdictWord{4, 0, 238},\n\tdictWord{5, 0, 503},\n\tdictWord{6, 0, 179},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t2003,\n\t},\n\tdictWord{8, 0, 381},\n\tdictWord{8, 0, 473},\n\tdictWord{9, 0, 149},\n\tdictWord{10, 0, 788},\n\tdictWord{15, 0, 45},\n\tdictWord{15, 0, 86},\n\tdictWord{20, 0, 110},\n\tdictWord{150, 0, 57},\n\tdictWord{133, 10, 671},\n\tdictWord{4, 11, 26},\n\tdictWord{5, 11, 429},\n\tdictWord{6, 11, 245},\n\tdictWord{7, 11, 704},\n\tdictWord{7, 11, 1379},\n\tdictWord{135, 11, 1474},\n\tdictWord{4, 0, 121},\n\tdictWord{5, 0, 156},\n\tdictWord{5, 0, 349},\n\tdictWord{9, 0, 431},\n\tdictWord{10, 0, 605},\n\tdictWord{142, 0, 342},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t943,\n\t},\n\tdictWord{139, 11, 614},\n\tdictWord{132, 10, 889},\n\tdictWord{132, 11, 621},\n\tdictWord{7, 10, 1382},\n\tdictWord{7, 11, 1382},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1910,\n\t},\n\tdictWord{132, 10, 627},\n\tdictWord{133, 10, 775},\n\tdictWord{133, 11, 542},\n\tdictWord{133, 11, 868},\n\tdictWord{136, 11, 433},\n\tdictWord{6, 0, 1373},\n\tdictWord{7, 0, 1011},\n\tdictWord{11, 10, 362},\n\tdictWord{11, 10, 948},\n\tdictWord{140, 10, 388},\n\tdictWord{6, 0, 80},\n\tdictWord{7, 0, 173},\n\tdictWord{9, 0, 547},\n\tdictWord{10, 0, 730},\n\tdictWord{14, 0, 18},\n\tdictWord{22, 0, 39},\n\tdictWord{135, 11, 1495},\n\tdictWord{6, 0, 1694},\n\tdictWord{135, 0, 1974},\n\tdictWord{140, 0, 196},\n\tdictWord{4, 0, 923},\n\tdictWord{6, 0, 507},\n\tdictWord{6, 0, 1711},\n\tdictWord{7, 10, 451},\n\tdictWord{8, 10, 389},\n\tdictWord{12, 10, 490},\n\tdictWord{13, 10, 16},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t215,\n\t},\n\tdictWord{13, 10, 351},\n\tdictWord{18, 10, 132},\n\tdictWord{147, 10, 125},\n\tdictWord{6, 0, 646},\n\tdictWord{134, 0, 1047},\n\tdictWord{135, 10, 841},\n\tdictWord{136, 10, 566},\n\tdictWord{6, 0, 1611},\n\tdictWord{135, 0, 1214},\n\tdictWord{139, 0, 926},\n\tdictWord{132, 11, 525},\n\tdictWord{132, 0, 595},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t240,\n\t},\n\tdictWord{6, 0, 459},\n\tdictWord{7, 0, 12},\n\tdictWord{7, 0, 114},\n\tdictWord{7, 0, 949},\n\tdictWord{7, 0, 1753},\n\tdictWord{7, 0, 1805},\n\tdictWord{8, 0, 658},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t1,\n\t},\n\tdictWord{11, 0, 959},\n\tdictWord{141, 0, 446},\n\tdictWord{5, 10, 912},\n\tdictWord{134, 10, 1695},\n\tdictWord{132, 0, 446},\n\tdictWord{7, 11, 62},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t45,\n\t},\n\tdictWord{147, 11, 112},\n\tdictWord{5, 10, 236},\n\tdictWord{6, 10, 572},\n\tdictWord{8, 10, 492},\n\tdictWord{11, 10, 618},\n\tdictWord{144, 10, 56},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t190,\n\t},\n\tdictWord{136, 10, 318},\n\tdictWord{135, 10, 1376},\n\tdictWord{4, 11, 223},\n\tdictWord{6, 11, 359},\n\tdictWord{11, 11, 3},\n\tdictWord{13, 11, 108},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t89,\n\t},\n\tdictWord{144, 11, 22},\n\tdictWord{132, 11, 647},\n\tdictWord{134, 0, 490},\n\tdictWord{134, 0, 491},\n\tdictWord{134, 0, 1584},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t685,\n\t},\n\tdictWord{138, 11, 220},\n\tdictWord{7, 0, 250},\n\tdictWord{136, 0, 507},\n\tdictWord{132, 0, 158},\n\tdictWord{4, 0, 140},\n\tdictWord{7, 0, 362},\n\tdictWord{8, 0, 209},\n\tdictWord{9, 0, 10},\n\tdictWord{9, 0, 160},\n\tdictWord{9, 0, 503},\n\tdictWord{9, 0, 614},\n\tdictWord{10, 0, 689},\n\tdictWord{11, 0, 327},\n\tdictWord{11, 0, 553},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t725,\n\t},\n\tdictWord{11, 0, 767},\n\tdictWord{12, 0, 252},\n\tdictWord{12, 0, 583},\n\tdictWord{13, 0, 192},\n\tdictWord{14, 0, 269},\n\tdictWord{14, 0, 356},\n\tdictWord{148, 0, 50},\n\tdictWord{19, 0, 1},\n\tdictWord{19, 0, 26},\n\tdictWord{150, 0, 9},\n\tdictWord{132, 11, 109},\n\tdictWord{6, 0, 228},\n\tdictWord{7, 0, 1341},\n\tdictWord{9, 0, 408},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t343,\n\t},\n\tdictWord{4, 0, 373},\n\tdictWord{5, 0, 283},\n\tdictWord{6, 0, 480},\n\tdictWord{7, 0, 609},\n\tdictWord{10, 0, 860},\n\tdictWord{138, 0, 878},\n\tdictWord{6, 0, 779},\n\tdictWord{134, 0, 1209},\n\tdictWord{4, 0, 557},\n\tdictWord{7, 11, 263},\n\tdictWord{7, 11, 628},\n\tdictWord{136, 11, 349},\n\tdictWord{132, 0, 548},\n\tdictWord{7, 0, 197},\n\tdictWord{8, 0, 142},\n\tdictWord{8, 0, 325},\n\tdictWord{9, 0, 150},\n\tdictWord{9, 0, 596},\n\tdictWord{10, 0, 350},\n\tdictWord{10, 0, 353},\n\tdictWord{11, 0, 74},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t315,\n\t},\n\tdictWord{12, 0, 662},\n\tdictWord{12, 0, 681},\n\tdictWord{14, 0, 423},\n\tdictWord{143, 0, 141},\n\tdictWord{4, 11, 40},\n\tdictWord{10, 11, 67},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t117,\n\t},\n\tdictWord{11, 11, 768},\n\tdictWord{139, 11, 935},\n\tdictWord{7, 11, 992},\n\tdictWord{8, 11, 301},\n\tdictWord{9, 11, 722},\n\tdictWord{12, 11, 63},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t29,\n\t},\n\tdictWord{14, 11, 161},\n\tdictWord{143, 11, 18},\n\tdictWord{6, 0, 1490},\n\tdictWord{138, 11, 532},\n\tdictWord{5, 0, 580},\n\tdictWord{7, 0, 378},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t674,\n\t},\n\tdictWord{7, 0, 1424},\n\tdictWord{15, 0, 83},\n\tdictWord{16, 0, 11},\n\tdictWord{15, 11, 83},\n\tdictWord{144, 11, 11},\n\tdictWord{6, 0, 1057},\n\tdictWord{6, 0, 1335},\n\tdictWord{10, 0, 316},\n\tdictWord{7, 10, 85},\n\tdictWord{7, 10, 247},\n\tdictWord{8, 10, 585},\n\tdictWord{138, 10, 163},\n\tdictWord{4, 0, 169},\n\tdictWord{5, 0, 83},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t399,\n\t},\n\tdictWord{6, 0, 579},\n\tdictWord{6, 0, 1513},\n\tdictWord{7, 0, 692},\n\tdictWord{7, 0, 846},\n\tdictWord{7, 0, 1015},\n\tdictWord{7, 0, 1799},\n\tdictWord{8, 0, 403},\n\tdictWord{9, 0, 394},\n\tdictWord{10, 0, 133},\n\tdictWord{12, 0, 4},\n\tdictWord{12, 0, 297},\n\tdictWord{12, 0, 452},\n\tdictWord{16, 0, 81},\n\tdictWord{18, 0, 25},\n\tdictWord{21, 0, 14},\n\tdictWord{22, 0, 12},\n\tdictWord{151, 0, 18},\n\tdictWord{134, 0, 1106},\n\tdictWord{7, 0, 1546},\n\tdictWord{11, 0, 299},\n\tdictWord{142, 0, 407},\n\tdictWord{134, 0, 1192},\n\tdictWord{132, 0, 177},\n\tdictWord{5, 0, 411},\n\tdictWord{135, 0, 653},\n\tdictWord{7, 0, 439},\n\tdictWord{10, 0, 727},\n\tdictWord{11, 0, 260},\n\tdictWord{139, 0, 684},\n\tdictWord{138, 10, 145},\n\tdictWord{147, 10, 83},\n\tdictWord{5, 0, 208},\n\tdictWord{7, 0, 753},\n\tdictWord{135, 0, 1528},\n\tdictWord{137, 11, 617},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1922,\n\t},\n\tdictWord{135, 11, 825},\n\tdictWord{11, 0, 422},\n\tdictWord{13, 0, 389},\n\tdictWord{4, 10, 124},\n\tdictWord{10, 10, 457},\n\tdictWord{11, 10, 121},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t169,\n\t},\n\tdictWord{11, 10, 870},\n\tdictWord{12, 10, 214},\n\tdictWord{14, 10, 187},\n\tdictWord{143, 10, 77},\n\tdictWord{11, 0, 615},\n\tdictWord{15, 0, 58},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t615,\n\t},\n\tdictWord{143, 11, 58},\n\tdictWord{9, 0, 618},\n\tdictWord{138, 0, 482},\n\tdictWord{6, 0, 1952},\n\tdictWord{6, 0, 1970},\n\tdictWord{142, 0, 505},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1193,\n\t},\n\tdictWord{135, 11, 1838},\n\tdictWord{133, 0, 242},\n\tdictWord{135, 10, 1333},\n\tdictWord{6, 10, 107},\n\tdictWord{7, 10, 638},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1632,\n\t},\n\tdictWord{137, 10, 396},\n\tdictWord{133, 0, 953},\n\tdictWord{5, 10, 370},\n\tdictWord{134, 10, 1756},\n\tdictWord{5, 11, 28},\n\tdictWord{6, 11, 204},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t320,\n\t},\n\tdictWord{10, 11, 583},\n\tdictWord{13, 11, 502},\n\tdictWord{14, 11, 72},\n\tdictWord{14, 11, 274},\n\tdictWord{14, 11, 312},\n\tdictWord{14, 11, 344},\n\tdictWord{15, 11, 159},\n\tdictWord{16, 11, 62},\n\tdictWord{16, 11, 69},\n\tdictWord{17, 11, 30},\n\tdictWord{18, 11, 42},\n\tdictWord{18, 11, 53},\n\tdictWord{18, 11, 84},\n\tdictWord{18, 11, 140},\n\tdictWord{19, 11, 68},\n\tdictWord{19, 11, 85},\n\tdictWord{20, 11, 5},\n\tdictWord{20, 11, 45},\n\tdictWord{20, 11, 101},\n\tdictWord{22, 11, 7},\n\tdictWord{\n\t\t150,\n\t\t11,\n\t\t20,\n\t},\n\tdictWord{4, 11, 558},\n\tdictWord{6, 11, 390},\n\tdictWord{7, 11, 162},\n\tdictWord{7, 11, 689},\n\tdictWord{9, 11, 360},\n\tdictWord{138, 11, 653},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t802,\n\t},\n\tdictWord{141, 0, 67},\n\tdictWord{133, 10, 204},\n\tdictWord{133, 0, 290},\n\tdictWord{5, 10, 970},\n\tdictWord{134, 10, 1706},\n\tdictWord{132, 0, 380},\n\tdictWord{5, 0, 52},\n\tdictWord{7, 0, 277},\n\tdictWord{9, 0, 368},\n\tdictWord{139, 0, 791},\n\tdictWord{5, 11, 856},\n\tdictWord{6, 11, 1672},\n\tdictWord{6, 11, 1757},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t1781,\n\t},\n\tdictWord{7, 11, 1150},\n\tdictWord{7, 11, 1425},\n\tdictWord{7, 11, 1453},\n\tdictWord{140, 11, 513},\n\tdictWord{5, 11, 92},\n\tdictWord{7, 10, 3},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t736,\n\t},\n\tdictWord{140, 11, 102},\n\tdictWord{4, 0, 112},\n\tdictWord{5, 0, 653},\n\tdictWord{5, 10, 483},\n\tdictWord{5, 10, 685},\n\tdictWord{6, 10, 489},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1204,\n\t},\n\tdictWord{136, 10, 394},\n\tdictWord{132, 10, 921},\n\tdictWord{6, 0, 1028},\n\tdictWord{133, 10, 1007},\n\tdictWord{5, 11, 590},\n\tdictWord{9, 11, 213},\n\tdictWord{145, 11, 91},\n\tdictWord{135, 10, 1696},\n\tdictWord{10, 0, 138},\n\tdictWord{139, 0, 476},\n\tdictWord{5, 0, 725},\n\tdictWord{5, 0, 727},\n\tdictWord{135, 0, 1811},\n\tdictWord{4, 0, 979},\n\tdictWord{6, 0, 1821},\n\tdictWord{6, 0, 1838},\n\tdictWord{8, 0, 876},\n\tdictWord{8, 0, 883},\n\tdictWord{8, 0, 889},\n\tdictWord{8, 0, 893},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t895,\n\t},\n\tdictWord{10, 0, 934},\n\tdictWord{12, 0, 720},\n\tdictWord{14, 0, 459},\n\tdictWord{148, 0, 123},\n\tdictWord{135, 11, 551},\n\tdictWord{4, 0, 38},\n\tdictWord{6, 0, 435},\n\tdictWord{7, 0, 307},\n\tdictWord{7, 0, 999},\n\tdictWord{7, 0, 1481},\n\tdictWord{7, 0, 1732},\n\tdictWord{7, 0, 1738},\n\tdictWord{8, 0, 371},\n\tdictWord{9, 0, 414},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t316,\n\t},\n\tdictWord{12, 0, 52},\n\tdictWord{13, 0, 420},\n\tdictWord{147, 0, 100},\n\tdictWord{135, 0, 1296},\n\tdictWord{132, 10, 712},\n\tdictWord{134, 10, 1629},\n\tdictWord{133, 0, 723},\n\tdictWord{134, 0, 651},\n\tdictWord{136, 11, 191},\n\tdictWord{9, 11, 791},\n\tdictWord{10, 11, 93},\n\tdictWord{11, 11, 301},\n\tdictWord{16, 11, 13},\n\tdictWord{17, 11, 23},\n\tdictWord{18, 11, 135},\n\tdictWord{19, 11, 12},\n\tdictWord{20, 11, 1},\n\tdictWord{20, 11, 12},\n\tdictWord{148, 11, 14},\n\tdictWord{136, 11, 503},\n\tdictWord{6, 11, 466},\n\tdictWord{135, 11, 671},\n\tdictWord{6, 0, 1200},\n\tdictWord{134, 0, 1330},\n\tdictWord{135, 0, 1255},\n\tdictWord{134, 0, 986},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t109,\n\t},\n\tdictWord{6, 0, 1784},\n\tdictWord{7, 0, 1895},\n\tdictWord{12, 0, 296},\n\tdictWord{140, 0, 302},\n\tdictWord{135, 11, 983},\n\tdictWord{133, 10, 485},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t660,\n\t},\n\tdictWord{134, 0, 800},\n\tdictWord{5, 0, 216},\n\tdictWord{5, 0, 294},\n\tdictWord{6, 0, 591},\n\tdictWord{7, 0, 1879},\n\tdictWord{9, 0, 141},\n\tdictWord{9, 0, 270},\n\tdictWord{9, 0, 679},\n\tdictWord{10, 0, 159},\n\tdictWord{11, 0, 197},\n\tdictWord{11, 0, 438},\n\tdictWord{12, 0, 538},\n\tdictWord{12, 0, 559},\n\tdictWord{14, 0, 144},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t167,\n\t},\n\tdictWord{15, 0, 67},\n\tdictWord{4, 10, 285},\n\tdictWord{5, 10, 317},\n\tdictWord{6, 10, 301},\n\tdictWord{7, 10, 7},\n\tdictWord{8, 10, 153},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t766,\n\t},\n\tdictWord{11, 10, 468},\n\tdictWord{12, 10, 467},\n\tdictWord{141, 10, 143},\n\tdictWord{136, 0, 945},\n\tdictWord{134, 0, 1090},\n\tdictWord{137, 0, 81},\n\tdictWord{12, 11, 468},\n\tdictWord{19, 11, 96},\n\tdictWord{148, 11, 24},\n\tdictWord{134, 0, 391},\n\tdictWord{138, 11, 241},\n\tdictWord{7, 0, 322},\n\tdictWord{136, 0, 249},\n\tdictWord{134, 0, 1412},\n\tdictWord{135, 11, 795},\n\tdictWord{5, 0, 632},\n\tdictWord{138, 0, 526},\n\tdictWord{136, 10, 819},\n\tdictWord{6, 0, 144},\n\tdictWord{7, 0, 948},\n\tdictWord{7, 0, 1042},\n\tdictWord{8, 0, 235},\n\tdictWord{8, 0, 461},\n\tdictWord{9, 0, 453},\n\tdictWord{9, 0, 796},\n\tdictWord{10, 0, 354},\n\tdictWord{17, 0, 77},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t954,\n\t},\n\tdictWord{139, 10, 917},\n\tdictWord{6, 0, 940},\n\tdictWord{134, 0, 1228},\n\tdictWord{4, 0, 362},\n\tdictWord{7, 0, 52},\n\tdictWord{135, 0, 303},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t549,\n\t},\n\tdictWord{8, 11, 34},\n\tdictWord{8, 11, 283},\n\tdictWord{9, 11, 165},\n\tdictWord{138, 11, 475},\n\tdictWord{7, 11, 370},\n\tdictWord{7, 11, 1007},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1177,\n\t},\n\tdictWord{135, 11, 1565},\n\tdictWord{5, 11, 652},\n\tdictWord{5, 11, 701},\n\tdictWord{135, 11, 449},\n\tdictWord{5, 0, 196},\n\tdictWord{6, 0, 486},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t212,\n\t},\n\tdictWord{8, 0, 309},\n\tdictWord{136, 0, 346},\n\tdictWord{6, 10, 1719},\n\tdictWord{6, 10, 1735},\n\tdictWord{7, 10, 2016},\n\tdictWord{7, 10, 2020},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t837,\n\t},\n\tdictWord{137, 10, 852},\n\tdictWord{6, 11, 159},\n\tdictWord{6, 11, 364},\n\tdictWord{7, 11, 516},\n\tdictWord{7, 11, 1439},\n\tdictWord{137, 11, 518},\n\tdictWord{135, 0, 1912},\n\tdictWord{135, 0, 1290},\n\tdictWord{132, 0, 686},\n\tdictWord{141, 11, 151},\n\tdictWord{138, 0, 625},\n\tdictWord{136, 0, 706},\n\tdictWord{\n\t\t138,\n\t\t10,\n\t\t568,\n\t},\n\tdictWord{139, 0, 412},\n\tdictWord{4, 0, 30},\n\tdictWord{133, 0, 43},\n\tdictWord{8, 10, 67},\n\tdictWord{138, 10, 419},\n\tdictWord{7, 0, 967},\n\tdictWord{\n\t\t141,\n\t\t0,\n\t\t11,\n\t},\n\tdictWord{12, 0, 758},\n\tdictWord{14, 0, 441},\n\tdictWord{142, 0, 462},\n\tdictWord{10, 10, 657},\n\tdictWord{14, 10, 297},\n\tdictWord{142, 10, 361},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t729,\n\t},\n\tdictWord{4, 0, 220},\n\tdictWord{135, 0, 1535},\n\tdictWord{7, 11, 501},\n\tdictWord{9, 11, 111},\n\tdictWord{10, 11, 141},\n\tdictWord{11, 11, 332},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t43,\n\t},\n\tdictWord{13, 11, 429},\n\tdictWord{14, 11, 130},\n\tdictWord{14, 11, 415},\n\tdictWord{145, 11, 102},\n\tdictWord{4, 0, 950},\n\tdictWord{6, 0, 1859},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t11,\n\t},\n\tdictWord{8, 0, 873},\n\tdictWord{12, 0, 710},\n\tdictWord{12, 0, 718},\n\tdictWord{12, 0, 748},\n\tdictWord{12, 0, 765},\n\tdictWord{148, 0, 124},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t149,\n\t},\n\tdictWord{5, 11, 935},\n\tdictWord{136, 11, 233},\n\tdictWord{142, 11, 291},\n\tdictWord{134, 0, 1579},\n\tdictWord{7, 0, 890},\n\tdictWord{8, 10, 51},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t868,\n\t},\n\tdictWord{10, 10, 833},\n\tdictWord{12, 10, 481},\n\tdictWord{12, 10, 570},\n\tdictWord{148, 10, 106},\n\tdictWord{141, 0, 2},\n\tdictWord{132, 10, 445},\n\tdictWord{136, 11, 801},\n\tdictWord{135, 0, 1774},\n\tdictWord{7, 0, 1725},\n\tdictWord{138, 0, 393},\n\tdictWord{5, 0, 263},\n\tdictWord{134, 0, 414},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t322,\n\t},\n\tdictWord{133, 10, 239},\n\tdictWord{7, 0, 456},\n\tdictWord{7, 10, 1990},\n\tdictWord{8, 10, 130},\n\tdictWord{139, 10, 720},\n\tdictWord{137, 0, 818},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t123,\n\t},\n\tdictWord{6, 10, 530},\n\tdictWord{7, 10, 348},\n\tdictWord{135, 10, 1419},\n\tdictWord{135, 10, 2024},\n\tdictWord{6, 0, 178},\n\tdictWord{6, 0, 1750},\n\tdictWord{8, 0, 251},\n\tdictWord{9, 0, 690},\n\tdictWord{10, 0, 155},\n\tdictWord{10, 0, 196},\n\tdictWord{10, 0, 373},\n\tdictWord{11, 0, 698},\n\tdictWord{13, 0, 155},\n\tdictWord{\n\t\t148,\n\t\t0,\n\t\t93,\n\t},\n\tdictWord{5, 0, 97},\n\tdictWord{137, 0, 393},\n\tdictWord{134, 0, 674},\n\tdictWord{11, 0, 223},\n\tdictWord{140, 0, 168},\n\tdictWord{132, 10, 210},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t464,\n\t},\n\tdictWord{6, 0, 1639},\n\tdictWord{146, 0, 159},\n\tdictWord{139, 11, 2},\n\tdictWord{7, 0, 934},\n\tdictWord{8, 0, 647},\n\tdictWord{17, 0, 97},\n\tdictWord{19, 0, 59},\n\tdictWord{150, 0, 2},\n\tdictWord{132, 0, 191},\n\tdictWord{5, 0, 165},\n\tdictWord{9, 0, 346},\n\tdictWord{10, 0, 655},\n\tdictWord{11, 0, 885},\n\tdictWord{4, 10, 430},\n\tdictWord{135, 11, 357},\n\tdictWord{133, 0, 877},\n\tdictWord{5, 10, 213},\n\tdictWord{133, 11, 406},\n\tdictWord{8, 0, 128},\n\tdictWord{139, 0, 179},\n\tdictWord{6, 11, 69},\n\tdictWord{135, 11, 117},\n\tdictWord{135, 0, 1297},\n\tdictWord{11, 11, 43},\n\tdictWord{13, 11, 72},\n\tdictWord{141, 11, 142},\n\tdictWord{135, 11, 1830},\n\tdictWord{\n\t\t142,\n\t\t0,\n\t\t164,\n\t},\n\tdictWord{5, 0, 57},\n\tdictWord{6, 0, 101},\n\tdictWord{6, 0, 586},\n\tdictWord{6, 0, 1663},\n\tdictWord{7, 0, 132},\n\tdictWord{7, 0, 1154},\n\tdictWord{7, 0, 1415},\n\tdictWord{7, 0, 1507},\n\tdictWord{12, 0, 493},\n\tdictWord{15, 0, 105},\n\tdictWord{151, 0, 15},\n\tdictWord{5, 0, 459},\n\tdictWord{7, 0, 1073},\n\tdictWord{8, 0, 241},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t334,\n\t},\n\tdictWord{133, 11, 826},\n\tdictWord{133, 10, 108},\n\tdictWord{5, 10, 219},\n\tdictWord{10, 11, 132},\n\tdictWord{11, 11, 191},\n\tdictWord{11, 11, 358},\n\tdictWord{139, 11, 460},\n\tdictWord{6, 0, 324},\n\tdictWord{6, 0, 520},\n\tdictWord{7, 0, 338},\n\tdictWord{7, 0, 1729},\n\tdictWord{8, 0, 228},\n\tdictWord{139, 0, 750},\n\tdictWord{\n\t\t21,\n\t\t0,\n\t\t30,\n\t},\n\tdictWord{22, 0, 53},\n\tdictWord{4, 10, 193},\n\tdictWord{5, 10, 916},\n\tdictWord{7, 10, 364},\n\tdictWord{10, 10, 398},\n\tdictWord{10, 10, 726},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t317,\n\t},\n\tdictWord{11, 10, 626},\n\tdictWord{12, 10, 142},\n\tdictWord{12, 10, 288},\n\tdictWord{12, 10, 678},\n\tdictWord{13, 10, 313},\n\tdictWord{15, 10, 113},\n\tdictWord{146, 10, 114},\n\tdictWord{6, 11, 110},\n\tdictWord{135, 11, 1681},\n\tdictWord{135, 0, 910},\n\tdictWord{6, 10, 241},\n\tdictWord{7, 10, 907},\n\tdictWord{8, 10, 832},\n\tdictWord{9, 10, 342},\n\tdictWord{10, 10, 729},\n\tdictWord{11, 10, 284},\n\tdictWord{11, 10, 445},\n\tdictWord{11, 10, 651},\n\tdictWord{11, 10, 863},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t398,\n\t},\n\tdictWord{146, 10, 99},\n\tdictWord{7, 0, 705},\n\tdictWord{9, 0, 734},\n\tdictWord{5, 11, 1000},\n\tdictWord{7, 11, 733},\n\tdictWord{137, 11, 583},\n\tdictWord{4, 0, 73},\n\tdictWord{6, 0, 612},\n\tdictWord{7, 0, 927},\n\tdictWord{7, 0, 1822},\n\tdictWord{8, 0, 217},\n\tdictWord{9, 0, 765},\n\tdictWord{9, 0, 766},\n\tdictWord{10, 0, 408},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t51,\n\t},\n\tdictWord{11, 0, 793},\n\tdictWord{12, 0, 266},\n\tdictWord{15, 0, 158},\n\tdictWord{20, 0, 89},\n\tdictWord{150, 0, 32},\n\tdictWord{7, 0, 1330},\n\tdictWord{4, 11, 297},\n\tdictWord{6, 11, 529},\n\tdictWord{7, 11, 152},\n\tdictWord{7, 11, 713},\n\tdictWord{7, 11, 1845},\n\tdictWord{8, 11, 710},\n\tdictWord{8, 11, 717},\n\tdictWord{140, 11, 639},\n\tdictWord{5, 0, 389},\n\tdictWord{136, 0, 636},\n\tdictWord{134, 0, 1409},\n\tdictWord{4, 10, 562},\n\tdictWord{9, 10, 254},\n\tdictWord{139, 10, 879},\n\tdictWord{134, 0, 893},\n\tdictWord{132, 10, 786},\n\tdictWord{4, 11, 520},\n\tdictWord{135, 11, 575},\n\tdictWord{136, 0, 21},\n\tdictWord{140, 0, 721},\n\tdictWord{136, 0, 959},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1428,\n\t},\n\tdictWord{7, 11, 1640},\n\tdictWord{9, 11, 169},\n\tdictWord{9, 11, 182},\n\tdictWord{9, 11, 367},\n\tdictWord{9, 11, 478},\n\tdictWord{9, 11, 506},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t551,\n\t},\n\tdictWord{9, 11, 648},\n\tdictWord{9, 11, 651},\n\tdictWord{9, 11, 697},\n\tdictWord{9, 11, 705},\n\tdictWord{9, 11, 725},\n\tdictWord{9, 11, 787},\n\tdictWord{9, 11, 794},\n\tdictWord{10, 11, 198},\n\tdictWord{10, 11, 214},\n\tdictWord{10, 11, 267},\n\tdictWord{10, 11, 275},\n\tdictWord{10, 11, 456},\n\tdictWord{10, 11, 551},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t561,\n\t},\n\tdictWord{10, 11, 613},\n\tdictWord{10, 11, 627},\n\tdictWord{10, 11, 668},\n\tdictWord{10, 11, 675},\n\tdictWord{10, 11, 691},\n\tdictWord{10, 11, 695},\n\tdictWord{10, 11, 707},\n\tdictWord{10, 11, 715},\n\tdictWord{11, 11, 183},\n\tdictWord{11, 11, 201},\n\tdictWord{11, 11, 244},\n\tdictWord{11, 11, 262},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t352,\n\t},\n\tdictWord{11, 11, 439},\n\tdictWord{11, 11, 493},\n\tdictWord{11, 11, 572},\n\tdictWord{11, 11, 591},\n\tdictWord{11, 11, 608},\n\tdictWord{11, 11, 611},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t646,\n\t},\n\tdictWord{11, 11, 674},\n\tdictWord{11, 11, 711},\n\tdictWord{11, 11, 751},\n\tdictWord{11, 11, 761},\n\tdictWord{11, 11, 776},\n\tdictWord{11, 11, 785},\n\tdictWord{11, 11, 850},\n\tdictWord{11, 11, 853},\n\tdictWord{11, 11, 862},\n\tdictWord{11, 11, 865},\n\tdictWord{11, 11, 868},\n\tdictWord{11, 11, 898},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t902,\n\t},\n\tdictWord{11, 11, 903},\n\tdictWord{11, 11, 910},\n\tdictWord{11, 11, 932},\n\tdictWord{11, 11, 942},\n\tdictWord{11, 11, 957},\n\tdictWord{11, 11, 967},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t972,\n\t},\n\tdictWord{12, 11, 148},\n\tdictWord{12, 11, 195},\n\tdictWord{12, 11, 220},\n\tdictWord{12, 11, 237},\n\tdictWord{12, 11, 318},\n\tdictWord{12, 11, 339},\n\tdictWord{12, 11, 393},\n\tdictWord{12, 11, 445},\n\tdictWord{12, 11, 450},\n\tdictWord{12, 11, 474},\n\tdictWord{12, 11, 509},\n\tdictWord{12, 11, 533},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t591,\n\t},\n\tdictWord{12, 11, 594},\n\tdictWord{12, 11, 597},\n\tdictWord{12, 11, 621},\n\tdictWord{12, 11, 633},\n\tdictWord{12, 11, 642},\n\tdictWord{13, 11, 59},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t60,\n\t},\n\tdictWord{13, 11, 145},\n\tdictWord{13, 11, 239},\n\tdictWord{13, 11, 250},\n\tdictWord{13, 11, 273},\n\tdictWord{13, 11, 329},\n\tdictWord{13, 11, 344},\n\tdictWord{13, 11, 365},\n\tdictWord{13, 11, 372},\n\tdictWord{13, 11, 387},\n\tdictWord{13, 11, 403},\n\tdictWord{13, 11, 414},\n\tdictWord{13, 11, 456},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t478,\n\t},\n\tdictWord{13, 11, 483},\n\tdictWord{13, 11, 489},\n\tdictWord{14, 11, 55},\n\tdictWord{14, 11, 57},\n\tdictWord{14, 11, 81},\n\tdictWord{14, 11, 90},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t148,\n\t},\n\tdictWord{14, 11, 239},\n\tdictWord{14, 11, 266},\n\tdictWord{14, 11, 321},\n\tdictWord{14, 11, 326},\n\tdictWord{14, 11, 327},\n\tdictWord{14, 11, 330},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t347,\n\t},\n\tdictWord{14, 11, 355},\n\tdictWord{14, 11, 401},\n\tdictWord{14, 11, 411},\n\tdictWord{14, 11, 414},\n\tdictWord{14, 11, 416},\n\tdictWord{14, 11, 420},\n\tdictWord{15, 11, 61},\n\tdictWord{15, 11, 74},\n\tdictWord{15, 11, 87},\n\tdictWord{15, 11, 88},\n\tdictWord{15, 11, 94},\n\tdictWord{15, 11, 96},\n\tdictWord{15, 11, 116},\n\tdictWord{15, 11, 149},\n\tdictWord{15, 11, 154},\n\tdictWord{16, 11, 50},\n\tdictWord{16, 11, 63},\n\tdictWord{16, 11, 73},\n\tdictWord{17, 11, 2},\n\tdictWord{17, 11, 66},\n\tdictWord{\n\t\t17,\n\t\t11,\n\t\t92,\n\t},\n\tdictWord{17, 11, 103},\n\tdictWord{17, 11, 112},\n\tdictWord{18, 11, 50},\n\tdictWord{18, 11, 54},\n\tdictWord{18, 11, 82},\n\tdictWord{18, 11, 86},\n\tdictWord{\n\t\t18,\n\t\t11,\n\t\t90,\n\t},\n\tdictWord{18, 11, 111},\n\tdictWord{18, 11, 115},\n\tdictWord{18, 11, 156},\n\tdictWord{19, 11, 40},\n\tdictWord{19, 11, 79},\n\tdictWord{20, 11, 78},\n\tdictWord{\n\t\t149,\n\t\t11,\n\t\t22,\n\t},\n\tdictWord{137, 11, 170},\n\tdictWord{134, 0, 1433},\n\tdictWord{135, 11, 1307},\n\tdictWord{139, 11, 411},\n\tdictWord{5, 0, 189},\n\tdictWord{7, 0, 442},\n\tdictWord{7, 0, 443},\n\tdictWord{8, 0, 281},\n\tdictWord{12, 0, 174},\n\tdictWord{141, 0, 261},\n\tdictWord{6, 10, 216},\n\tdictWord{7, 10, 901},\n\tdictWord{7, 10, 1343},\n\tdictWord{136, 10, 493},\n\tdictWord{5, 11, 397},\n\tdictWord{6, 11, 154},\n\tdictWord{7, 10, 341},\n\tdictWord{7, 11, 676},\n\tdictWord{8, 11, 443},\n\tdictWord{8, 11, 609},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t24,\n\t},\n\tdictWord{9, 11, 325},\n\tdictWord{10, 11, 35},\n\tdictWord{11, 10, 219},\n\tdictWord{11, 11, 535},\n\tdictWord{11, 11, 672},\n\tdictWord{11, 11, 1018},\n\tdictWord{12, 11, 637},\n\tdictWord{144, 11, 30},\n\tdictWord{6, 0, 2},\n\tdictWord{7, 0, 191},\n\tdictWord{7, 0, 446},\n\tdictWord{7, 0, 1262},\n\tdictWord{7, 0, 1737},\n\tdictWord{8, 0, 22},\n\tdictWord{8, 0, 270},\n\tdictWord{8, 0, 612},\n\tdictWord{9, 0, 4},\n\tdictWord{9, 0, 312},\n\tdictWord{9, 0, 436},\n\tdictWord{9, 0, 626},\n\tdictWord{10, 0, 216},\n\tdictWord{10, 0, 311},\n\tdictWord{10, 0, 521},\n\tdictWord{10, 0, 623},\n\tdictWord{11, 0, 72},\n\tdictWord{11, 0, 330},\n\tdictWord{11, 0, 455},\n\tdictWord{12, 0, 321},\n\tdictWord{12, 0, 504},\n\tdictWord{12, 0, 530},\n\tdictWord{12, 0, 543},\n\tdictWord{13, 0, 17},\n\tdictWord{13, 0, 156},\n\tdictWord{13, 0, 334},\n\tdictWord{14, 0, 131},\n\tdictWord{17, 0, 60},\n\tdictWord{\n\t\t148,\n\t\t0,\n\t\t64,\n\t},\n\tdictWord{7, 0, 354},\n\tdictWord{10, 0, 410},\n\tdictWord{139, 0, 815},\n\tdictWord{139, 10, 130},\n\tdictWord{7, 10, 1734},\n\tdictWord{137, 11, 631},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t425,\n\t},\n\tdictWord{15, 0, 112},\n\tdictWord{10, 10, 115},\n\tdictWord{11, 10, 420},\n\tdictWord{13, 10, 404},\n\tdictWord{14, 10, 346},\n\tdictWord{143, 10, 54},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t60,\n\t},\n\tdictWord{6, 0, 166},\n\tdictWord{7, 0, 374},\n\tdictWord{7, 0, 670},\n\tdictWord{7, 0, 1327},\n\tdictWord{8, 0, 411},\n\tdictWord{8, 0, 435},\n\tdictWord{9, 0, 653},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t740,\n\t},\n\tdictWord{10, 0, 385},\n\tdictWord{11, 0, 222},\n\tdictWord{11, 0, 324},\n\tdictWord{11, 0, 829},\n\tdictWord{140, 0, 611},\n\tdictWord{7, 0, 1611},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t14,\n\t},\n\tdictWord{15, 0, 44},\n\tdictWord{19, 0, 13},\n\tdictWord{148, 0, 76},\n\tdictWord{133, 11, 981},\n\tdictWord{4, 11, 56},\n\tdictWord{7, 11, 1791},\n\tdictWord{8, 11, 607},\n\tdictWord{8, 11, 651},\n\tdictWord{11, 11, 465},\n\tdictWord{11, 11, 835},\n\tdictWord{12, 11, 337},\n\tdictWord{141, 11, 480},\n\tdictWord{6, 0, 1478},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t1011,\n\t},\n\tdictWord{136, 10, 701},\n\tdictWord{139, 0, 596},\n\tdictWord{5, 0, 206},\n\tdictWord{134, 0, 398},\n\tdictWord{4, 10, 54},\n\tdictWord{5, 10, 666},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1039,\n\t},\n\tdictWord{7, 10, 1130},\n\tdictWord{9, 10, 195},\n\tdictWord{138, 10, 302},\n\tdictWord{7, 0, 50},\n\tdictWord{9, 11, 158},\n\tdictWord{138, 11, 411},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1120,\n\t},\n\tdictWord{6, 0, 517},\n\tdictWord{7, 0, 1159},\n\tdictWord{10, 0, 621},\n\tdictWord{11, 0, 192},\n\tdictWord{134, 10, 1669},\n\tdictWord{4, 0, 592},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t600,\n\t},\n\tdictWord{135, 0, 1653},\n\tdictWord{10, 0, 223},\n\tdictWord{139, 0, 645},\n\tdictWord{136, 11, 139},\n\tdictWord{7, 0, 64},\n\tdictWord{136, 0, 245},\n\tdictWord{\n\t\t142,\n\t\t0,\n\t\t278,\n\t},\n\tdictWord{6, 11, 622},\n\tdictWord{135, 11, 1030},\n\tdictWord{136, 0, 604},\n\tdictWord{134, 0, 1502},\n\tdictWord{138, 0, 265},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t168,\n\t},\n\tdictWord{7, 0, 1763},\n\tdictWord{140, 0, 310},\n\tdictWord{7, 10, 798},\n\tdictWord{139, 11, 719},\n\tdictWord{7, 11, 160},\n\tdictWord{10, 11, 624},\n\tdictWord{\n\t\t142,\n\t\t11,\n\t\t279,\n\t},\n\tdictWord{132, 11, 363},\n\tdictWord{7, 10, 122},\n\tdictWord{9, 10, 259},\n\tdictWord{10, 10, 84},\n\tdictWord{11, 10, 470},\n\tdictWord{12, 10, 541},\n\tdictWord{141, 10, 379},\n\tdictWord{5, 0, 129},\n\tdictWord{6, 0, 61},\n\tdictWord{135, 0, 947},\n\tdictWord{134, 0, 1356},\n\tdictWord{135, 11, 1191},\n\tdictWord{13, 0, 505},\n\tdictWord{141, 0, 506},\n\tdictWord{11, 0, 1000},\n\tdictWord{5, 10, 82},\n\tdictWord{5, 10, 131},\n\tdictWord{7, 10, 1755},\n\tdictWord{8, 10, 31},\n\tdictWord{9, 10, 168},\n\tdictWord{9, 10, 764},\n\tdictWord{139, 10, 869},\n\tdictWord{134, 0, 966},\n\tdictWord{134, 10, 605},\n\tdictWord{134, 11, 292},\n\tdictWord{5, 11, 177},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t616,\n\t},\n\tdictWord{7, 11, 827},\n\tdictWord{9, 11, 525},\n\tdictWord{138, 11, 656},\n\tdictWord{135, 11, 1486},\n\tdictWord{138, 11, 31},\n\tdictWord{5, 10, 278},\n\tdictWord{137, 10, 68},\n\tdictWord{4, 10, 163},\n\tdictWord{5, 10, 201},\n\tdictWord{5, 10, 307},\n\tdictWord{5, 10, 310},\n\tdictWord{6, 10, 335},\n\tdictWord{7, 10, 284},\n\tdictWord{136, 10, 165},\n\tdictWord{6, 0, 839},\n\tdictWord{135, 10, 1660},\n\tdictWord{136, 10, 781},\n\tdictWord{6, 10, 33},\n\tdictWord{135, 10, 1244},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t637,\n\t},\n\tdictWord{4, 11, 161},\n\tdictWord{133, 11, 631},\n\tdictWord{137, 0, 590},\n\tdictWord{7, 10, 1953},\n\tdictWord{136, 10, 720},\n\tdictWord{5, 0, 280},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1226,\n\t},\n\tdictWord{138, 10, 203},\n\tdictWord{134, 0, 1386},\n\tdictWord{5, 0, 281},\n\tdictWord{6, 0, 1026},\n\tdictWord{6, 10, 326},\n\tdictWord{7, 10, 677},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t425,\n\t},\n\tdictWord{7, 11, 1557},\n\tdictWord{135, 11, 1684},\n\tdictWord{135, 0, 1064},\n\tdictWord{9, 11, 469},\n\tdictWord{9, 11, 709},\n\tdictWord{12, 11, 512},\n\tdictWord{14, 11, 65},\n\tdictWord{145, 11, 12},\n\tdictWord{134, 0, 917},\n\tdictWord{10, 11, 229},\n\tdictWord{11, 11, 73},\n\tdictWord{11, 11, 376},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t433,\n\t},\n\tdictWord{7, 0, 555},\n\tdictWord{9, 0, 192},\n\tdictWord{13, 0, 30},\n\tdictWord{13, 0, 49},\n\tdictWord{15, 0, 150},\n\tdictWord{16, 0, 76},\n\tdictWord{20, 0, 52},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1316,\n\t},\n\tdictWord{7, 10, 1412},\n\tdictWord{7, 10, 1839},\n\tdictWord{9, 10, 589},\n\tdictWord{11, 10, 241},\n\tdictWord{11, 10, 676},\n\tdictWord{11, 10, 811},\n\tdictWord{11, 10, 891},\n\tdictWord{12, 10, 140},\n\tdictWord{12, 10, 346},\n\tdictWord{12, 10, 479},\n\tdictWord{13, 10, 381},\n\tdictWord{14, 10, 188},\n\tdictWord{\n\t\t146,\n\t\t10,\n\t\t30,\n\t},\n\tdictWord{149, 0, 15},\n\tdictWord{6, 0, 1882},\n\tdictWord{6, 0, 1883},\n\tdictWord{6, 0, 1897},\n\tdictWord{9, 0, 945},\n\tdictWord{9, 0, 1014},\n\tdictWord{9, 0, 1020},\n\tdictWord{12, 0, 823},\n\tdictWord{12, 0, 842},\n\tdictWord{12, 0, 866},\n\tdictWord{12, 0, 934},\n\tdictWord{15, 0, 242},\n\tdictWord{146, 0, 208},\n\tdictWord{6, 0, 965},\n\tdictWord{134, 0, 1499},\n\tdictWord{7, 0, 33},\n\tdictWord{7, 0, 120},\n\tdictWord{8, 0, 489},\n\tdictWord{9, 0, 319},\n\tdictWord{10, 0, 820},\n\tdictWord{11, 0, 1004},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t379,\n\t},\n\tdictWord{12, 0, 679},\n\tdictWord{13, 0, 117},\n\tdictWord{13, 0, 412},\n\tdictWord{14, 0, 25},\n\tdictWord{15, 0, 52},\n\tdictWord{15, 0, 161},\n\tdictWord{16, 0, 47},\n\tdictWord{149, 0, 2},\n\tdictWord{6, 11, 558},\n\tdictWord{7, 11, 651},\n\tdictWord{8, 11, 421},\n\tdictWord{9, 11, 0},\n\tdictWord{138, 11, 34},\n\tdictWord{4, 0, 937},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t801,\n\t},\n\tdictWord{7, 0, 473},\n\tdictWord{5, 10, 358},\n\tdictWord{7, 10, 1184},\n\tdictWord{10, 10, 662},\n\tdictWord{13, 10, 212},\n\tdictWord{13, 10, 304},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t333,\n\t},\n\tdictWord{145, 10, 98},\n\tdictWord{132, 0, 877},\n\tdictWord{6, 0, 693},\n\tdictWord{134, 0, 824},\n\tdictWord{132, 0, 365},\n\tdictWord{7, 11, 1832},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t374,\n\t},\n\tdictWord{5, 0, 7},\n\tdictWord{139, 0, 774},\n\tdictWord{4, 0, 734},\n\tdictWord{5, 0, 662},\n\tdictWord{134, 0, 430},\n\tdictWord{4, 0, 746},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1090,\n\t},\n\tdictWord{5, 0, 360},\n\tdictWord{8, 0, 237},\n\tdictWord{10, 0, 231},\n\tdictWord{147, 0, 124},\n\tdictWord{138, 11, 348},\n\tdictWord{6, 11, 6},\n\tdictWord{7, 11, 81},\n\tdictWord{7, 11, 771},\n\tdictWord{7, 11, 1731},\n\tdictWord{9, 11, 405},\n\tdictWord{138, 11, 421},\n\tdictWord{6, 0, 740},\n\tdictWord{137, 0, 822},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t946,\n\t},\n\tdictWord{7, 0, 1485},\n\tdictWord{136, 0, 929},\n\tdictWord{7, 10, 411},\n\tdictWord{8, 10, 631},\n\tdictWord{9, 10, 323},\n\tdictWord{10, 10, 355},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t491,\n\t},\n\tdictWord{12, 10, 143},\n\tdictWord{12, 10, 402},\n\tdictWord{13, 10, 73},\n\tdictWord{14, 10, 408},\n\tdictWord{15, 10, 107},\n\tdictWord{146, 10, 71},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t590,\n\t},\n\tdictWord{5, 11, 881},\n\tdictWord{133, 11, 885},\n\tdictWord{150, 11, 25},\n\tdictWord{4, 0, 852},\n\tdictWord{5, 11, 142},\n\tdictWord{134, 11, 546},\n\tdictWord{7, 10, 1467},\n\tdictWord{8, 10, 328},\n\tdictWord{10, 10, 544},\n\tdictWord{11, 10, 955},\n\tdictWord{13, 10, 320},\n\tdictWord{145, 10, 83},\n\tdictWord{9, 0, 17},\n\tdictWord{10, 0, 291},\n\tdictWord{11, 10, 511},\n\tdictWord{13, 10, 394},\n\tdictWord{14, 10, 298},\n\tdictWord{14, 10, 318},\n\tdictWord{146, 10, 103},\n\tdictWord{5, 11, 466},\n\tdictWord{11, 11, 571},\n\tdictWord{12, 11, 198},\n\tdictWord{13, 11, 283},\n\tdictWord{14, 11, 186},\n\tdictWord{15, 11, 21},\n\tdictWord{143, 11, 103},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1001,\n\t},\n\tdictWord{4, 11, 185},\n\tdictWord{5, 11, 257},\n\tdictWord{5, 11, 839},\n\tdictWord{5, 11, 936},\n\tdictWord{7, 11, 171},\n\tdictWord{9, 11, 399},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t258,\n\t},\n\tdictWord{10, 11, 395},\n\tdictWord{10, 11, 734},\n\tdictWord{11, 11, 1014},\n\tdictWord{12, 11, 23},\n\tdictWord{13, 11, 350},\n\tdictWord{14, 11, 150},\n\tdictWord{147, 11, 6},\n\tdictWord{143, 0, 35},\n\tdictWord{132, 0, 831},\n\tdictWord{5, 10, 835},\n\tdictWord{134, 10, 483},\n\tdictWord{4, 0, 277},\n\tdictWord{5, 0, 608},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t493,\n\t},\n\tdictWord{7, 0, 457},\n\tdictWord{12, 0, 384},\n\tdictWord{7, 11, 404},\n\tdictWord{7, 11, 1377},\n\tdictWord{7, 11, 1430},\n\tdictWord{7, 11, 2017},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t149,\n\t},\n\tdictWord{8, 11, 239},\n\tdictWord{8, 11, 512},\n\tdictWord{8, 11, 793},\n\tdictWord{8, 11, 818},\n\tdictWord{9, 11, 474},\n\tdictWord{9, 11, 595},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t122,\n\t},\n\tdictWord{10, 11, 565},\n\tdictWord{10, 11, 649},\n\tdictWord{10, 11, 783},\n\tdictWord{11, 11, 239},\n\tdictWord{11, 11, 295},\n\tdictWord{11, 11, 447},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t528,\n\t},\n\tdictWord{11, 11, 639},\n\tdictWord{11, 11, 800},\n\tdictWord{11, 11, 936},\n\tdictWord{12, 11, 25},\n\tdictWord{12, 11, 73},\n\tdictWord{12, 11, 77},\n\tdictWord{12, 11, 157},\n\tdictWord{12, 11, 316},\n\tdictWord{12, 11, 390},\n\tdictWord{12, 11, 391},\n\tdictWord{12, 11, 394},\n\tdictWord{12, 11, 395},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t478,\n\t},\n\tdictWord{12, 11, 503},\n\tdictWord{12, 11, 592},\n\tdictWord{12, 11, 680},\n\tdictWord{13, 11, 50},\n\tdictWord{13, 11, 53},\n\tdictWord{13, 11, 132},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t198,\n\t},\n\tdictWord{13, 11, 275},\n\tdictWord{13, 11, 322},\n\tdictWord{13, 11, 415},\n\tdictWord{14, 11, 71},\n\tdictWord{14, 11, 257},\n\tdictWord{14, 11, 395},\n\tdictWord{15, 11, 71},\n\tdictWord{15, 11, 136},\n\tdictWord{17, 11, 123},\n\tdictWord{18, 11, 93},\n\tdictWord{147, 11, 58},\n\tdictWord{134, 0, 1351},\n\tdictWord{7, 0, 27},\n\tdictWord{135, 0, 316},\n\tdictWord{136, 11, 712},\n\tdictWord{136, 0, 984},\n\tdictWord{133, 0, 552},\n\tdictWord{137, 0, 264},\n\tdictWord{132, 0, 401},\n\tdictWord{6, 0, 710},\n\tdictWord{6, 0, 1111},\n\tdictWord{134, 0, 1343},\n\tdictWord{134, 0, 1211},\n\tdictWord{9, 0, 543},\n\tdictWord{10, 0, 524},\n\tdictWord{11, 0, 108},\n\tdictWord{11, 0, 653},\n\tdictWord{12, 0, 524},\n\tdictWord{13, 0, 123},\n\tdictWord{14, 0, 252},\n\tdictWord{16, 0, 18},\n\tdictWord{19, 0, 38},\n\tdictWord{20, 0, 26},\n\tdictWord{20, 0, 65},\n\tdictWord{\n\t\t21,\n\t\t0,\n\t\t3,\n\t},\n\tdictWord{151, 0, 11},\n\tdictWord{4, 0, 205},\n\tdictWord{5, 0, 623},\n\tdictWord{7, 0, 104},\n\tdictWord{8, 0, 519},\n\tdictWord{137, 0, 716},\n\tdictWord{132, 10, 677},\n\tdictWord{4, 11, 377},\n\tdictWord{152, 11, 13},\n\tdictWord{135, 11, 1673},\n\tdictWord{7, 0, 579},\n\tdictWord{9, 0, 41},\n\tdictWord{9, 0, 244},\n\tdictWord{9, 0, 669},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t5,\n\t},\n\tdictWord{11, 0, 861},\n\tdictWord{11, 0, 951},\n\tdictWord{139, 0, 980},\n\tdictWord{132, 0, 717},\n\tdictWord{136, 0, 1011},\n\tdictWord{132, 0, 805},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t180,\n\t},\n\tdictWord{135, 11, 1906},\n\tdictWord{132, 10, 777},\n\tdictWord{132, 10, 331},\n\tdictWord{132, 0, 489},\n\tdictWord{6, 0, 1024},\n\tdictWord{4, 11, 491},\n\tdictWord{133, 10, 747},\n\tdictWord{135, 11, 1182},\n\tdictWord{4, 11, 171},\n\tdictWord{138, 11, 234},\n\tdictWord{4, 11, 586},\n\tdictWord{7, 11, 1186},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t631,\n\t},\n\tdictWord{135, 0, 892},\n\tdictWord{135, 11, 336},\n\tdictWord{9, 11, 931},\n\tdictWord{10, 11, 334},\n\tdictWord{148, 11, 71},\n\tdictWord{137, 0, 473},\n\tdictWord{6, 0, 864},\n\tdictWord{12, 0, 659},\n\tdictWord{139, 11, 926},\n\tdictWord{7, 0, 819},\n\tdictWord{9, 0, 26},\n\tdictWord{9, 0, 392},\n\tdictWord{10, 0, 152},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t226,\n\t},\n\tdictWord{11, 0, 19},\n\tdictWord{12, 0, 276},\n\tdictWord{12, 0, 426},\n\tdictWord{12, 0, 589},\n\tdictWord{13, 0, 460},\n\tdictWord{15, 0, 97},\n\tdictWord{19, 0, 48},\n\tdictWord{148, 0, 104},\n\tdictWord{135, 0, 51},\n\tdictWord{133, 10, 326},\n\tdictWord{4, 10, 691},\n\tdictWord{146, 10, 16},\n\tdictWord{9, 0, 130},\n\tdictWord{11, 0, 765},\n\tdictWord{10, 10, 680},\n\tdictWord{10, 10, 793},\n\tdictWord{141, 10, 357},\n\tdictWord{133, 11, 765},\n\tdictWord{8, 0, 229},\n\tdictWord{6, 10, 32},\n\tdictWord{7, 10, 385},\n\tdictWord{7, 10, 757},\n\tdictWord{7, 10, 1916},\n\tdictWord{8, 10, 94},\n\tdictWord{8, 10, 711},\n\tdictWord{9, 10, 541},\n\tdictWord{10, 10, 162},\n\tdictWord{10, 10, 795},\n\tdictWord{11, 10, 989},\n\tdictWord{11, 10, 1010},\n\tdictWord{12, 10, 14},\n\tdictWord{142, 10, 308},\n\tdictWord{7, 11, 474},\n\tdictWord{137, 11, 578},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t674,\n\t},\n\tdictWord{132, 0, 770},\n\tdictWord{5, 0, 79},\n\tdictWord{7, 0, 1027},\n\tdictWord{7, 0, 1477},\n\tdictWord{139, 0, 52},\n\tdictWord{133, 11, 424},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1666,\n\t},\n\tdictWord{6, 0, 409},\n\tdictWord{6, 10, 349},\n\tdictWord{6, 10, 1682},\n\tdictWord{7, 10, 1252},\n\tdictWord{8, 10, 112},\n\tdictWord{8, 11, 714},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t435,\n\t},\n\tdictWord{9, 10, 668},\n\tdictWord{10, 10, 290},\n\tdictWord{10, 10, 319},\n\tdictWord{10, 10, 815},\n\tdictWord{11, 10, 180},\n\tdictWord{11, 10, 837},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t240,\n\t},\n\tdictWord{13, 10, 152},\n\tdictWord{13, 10, 219},\n\tdictWord{142, 10, 158},\n\tdictWord{5, 0, 789},\n\tdictWord{134, 0, 195},\n\tdictWord{4, 0, 251},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t688,\n\t},\n\tdictWord{7, 0, 513},\n\tdictWord{135, 0, 1284},\n\tdictWord{132, 10, 581},\n\tdictWord{9, 11, 420},\n\tdictWord{10, 11, 269},\n\tdictWord{10, 11, 285},\n\tdictWord{10, 11, 576},\n\tdictWord{11, 11, 397},\n\tdictWord{13, 11, 175},\n\tdictWord{145, 11, 90},\n\tdictWord{6, 10, 126},\n\tdictWord{7, 10, 573},\n\tdictWord{8, 10, 397},\n\tdictWord{142, 10, 44},\n\tdictWord{132, 11, 429},\n\tdictWord{133, 0, 889},\n\tdictWord{4, 0, 160},\n\tdictWord{5, 0, 330},\n\tdictWord{7, 0, 1434},\n\tdictWord{136, 0, 174},\n\tdictWord{7, 11, 18},\n\tdictWord{7, 11, 699},\n\tdictWord{7, 11, 1966},\n\tdictWord{8, 11, 752},\n\tdictWord{9, 11, 273},\n\tdictWord{9, 11, 412},\n\tdictWord{9, 11, 703},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t71,\n\t},\n\tdictWord{10, 11, 427},\n\tdictWord{10, 11, 508},\n\tdictWord{146, 11, 97},\n\tdictWord{6, 0, 872},\n\tdictWord{134, 0, 899},\n\tdictWord{133, 10, 926},\n\tdictWord{134, 0, 1126},\n\tdictWord{134, 0, 918},\n\tdictWord{4, 11, 53},\n\tdictWord{5, 11, 186},\n\tdictWord{135, 11, 752},\n\tdictWord{7, 0, 268},\n\tdictWord{136, 0, 569},\n\tdictWord{134, 0, 1224},\n\tdictWord{6, 0, 1361},\n\tdictWord{7, 10, 1232},\n\tdictWord{137, 10, 531},\n\tdictWord{8, 11, 575},\n\tdictWord{10, 11, 289},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t319,\n\t},\n\tdictWord{133, 10, 670},\n\tdictWord{132, 11, 675},\n\tdictWord{133, 0, 374},\n\tdictWord{135, 10, 1957},\n\tdictWord{133, 0, 731},\n\tdictWord{11, 0, 190},\n\tdictWord{15, 0, 49},\n\tdictWord{11, 11, 190},\n\tdictWord{143, 11, 49},\n\tdictWord{4, 0, 626},\n\tdictWord{5, 0, 506},\n\tdictWord{5, 0, 642},\n\tdictWord{6, 0, 425},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t202,\n\t},\n\tdictWord{139, 0, 141},\n\tdictWord{137, 0, 444},\n\tdictWord{7, 10, 242},\n\tdictWord{135, 10, 1942},\n\tdictWord{6, 11, 209},\n\tdictWord{8, 11, 468},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t210,\n\t},\n\tdictWord{11, 11, 36},\n\tdictWord{12, 11, 28},\n\tdictWord{12, 11, 630},\n\tdictWord{13, 11, 21},\n\tdictWord{13, 11, 349},\n\tdictWord{14, 11, 7},\n\tdictWord{\n\t\t145,\n\t\t11,\n\t\t13,\n\t},\n\tdictWord{4, 11, 342},\n\tdictWord{135, 11, 1179},\n\tdictWord{5, 10, 834},\n\tdictWord{7, 10, 1202},\n\tdictWord{8, 10, 14},\n\tdictWord{9, 10, 481},\n\tdictWord{\n\t\t137,\n\t\t10,\n\t\t880,\n\t},\n\tdictWord{4, 11, 928},\n\tdictWord{133, 11, 910},\n\tdictWord{4, 11, 318},\n\tdictWord{4, 11, 496},\n\tdictWord{7, 11, 856},\n\tdictWord{139, 11, 654},\n\tdictWord{136, 0, 835},\n\tdictWord{7, 0, 1526},\n\tdictWord{138, 10, 465},\n\tdictWord{151, 0, 17},\n\tdictWord{135, 0, 477},\n\tdictWord{4, 10, 357},\n\tdictWord{6, 10, 172},\n\tdictWord{7, 10, 143},\n\tdictWord{137, 10, 413},\n\tdictWord{6, 0, 1374},\n\tdictWord{138, 0, 994},\n\tdictWord{18, 0, 76},\n\tdictWord{132, 10, 590},\n\tdictWord{7, 0, 287},\n\tdictWord{8, 0, 355},\n\tdictWord{9, 0, 293},\n\tdictWord{137, 0, 743},\n\tdictWord{134, 0, 1389},\n\tdictWord{7, 11, 915},\n\tdictWord{8, 11, 247},\n\tdictWord{147, 11, 0},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t202,\n\t},\n\tdictWord{5, 11, 382},\n\tdictWord{6, 11, 454},\n\tdictWord{7, 11, 936},\n\tdictWord{7, 11, 1803},\n\tdictWord{8, 11, 758},\n\tdictWord{9, 11, 375},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t895,\n\t},\n\tdictWord{10, 11, 743},\n\tdictWord{10, 11, 792},\n\tdictWord{11, 11, 978},\n\tdictWord{11, 11, 1012},\n\tdictWord{142, 11, 109},\n\tdictWord{5, 0, 384},\n\tdictWord{8, 0, 455},\n\tdictWord{140, 0, 48},\n\tdictWord{132, 11, 390},\n\tdictWord{5, 10, 169},\n\tdictWord{7, 10, 333},\n\tdictWord{136, 10, 45},\n\tdictWord{5, 0, 264},\n\tdictWord{134, 0, 184},\n\tdictWord{138, 11, 791},\n\tdictWord{133, 11, 717},\n\tdictWord{132, 10, 198},\n\tdictWord{6, 11, 445},\n\tdictWord{7, 11, 332},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t909,\n\t},\n\tdictWord{136, 0, 1001},\n\tdictWord{4, 10, 24},\n\tdictWord{5, 10, 140},\n\tdictWord{5, 10, 185},\n\tdictWord{7, 10, 1500},\n\tdictWord{11, 10, 565},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t838,\n\t},\n\tdictWord{134, 11, 578},\n\tdictWord{5, 0, 633},\n\tdictWord{6, 0, 28},\n\tdictWord{135, 0, 1323},\n\tdictWord{132, 0, 851},\n\tdictWord{136, 11, 267},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t359,\n\t},\n\tdictWord{8, 0, 243},\n\tdictWord{140, 0, 175},\n\tdictWord{4, 10, 334},\n\tdictWord{133, 10, 593},\n\tdictWord{141, 11, 87},\n\tdictWord{136, 11, 766},\n\tdictWord{10, 0, 287},\n\tdictWord{12, 0, 138},\n\tdictWord{10, 11, 287},\n\tdictWord{140, 11, 138},\n\tdictWord{4, 0, 105},\n\tdictWord{132, 0, 740},\n\tdictWord{140, 10, 116},\n\tdictWord{134, 0, 857},\n\tdictWord{135, 11, 1841},\n\tdictWord{6, 0, 1402},\n\tdictWord{137, 0, 819},\n\tdictWord{132, 11, 584},\n\tdictWord{132, 10, 709},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t897,\n\t},\n\tdictWord{5, 0, 224},\n\tdictWord{13, 0, 174},\n\tdictWord{146, 0, 52},\n\tdictWord{135, 10, 1840},\n\tdictWord{4, 10, 608},\n\tdictWord{133, 10, 497},\n\tdictWord{139, 11, 60},\n\tdictWord{4, 0, 758},\n\tdictWord{135, 0, 1649},\n\tdictWord{4, 11, 226},\n\tdictWord{4, 11, 326},\n\tdictWord{135, 11, 1770},\n\tdictWord{5, 11, 426},\n\tdictWord{8, 11, 30},\n\tdictWord{9, 11, 2},\n\tdictWord{11, 11, 549},\n\tdictWord{147, 11, 122},\n\tdictWord{135, 10, 2039},\n\tdictWord{6, 10, 540},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t136,\n\t},\n\tdictWord{4, 0, 573},\n\tdictWord{8, 0, 655},\n\tdictWord{4, 10, 897},\n\tdictWord{133, 10, 786},\n\tdictWord{7, 0, 351},\n\tdictWord{139, 0, 128},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t999,\n\t},\n\tdictWord{4, 10, 299},\n\tdictWord{135, 10, 1004},\n\tdictWord{133, 0, 918},\n\tdictWord{132, 11, 345},\n\tdictWord{4, 11, 385},\n\tdictWord{7, 11, 265},\n\tdictWord{135, 11, 587},\n\tdictWord{133, 10, 456},\n\tdictWord{136, 10, 180},\n\tdictWord{6, 0, 687},\n\tdictWord{134, 0, 1537},\n\tdictWord{4, 11, 347},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t423,\n\t},\n\tdictWord{5, 11, 996},\n\tdictWord{135, 11, 1329},\n\tdictWord{132, 10, 755},\n\tdictWord{7, 11, 1259},\n\tdictWord{9, 11, 125},\n\tdictWord{11, 11, 65},\n\tdictWord{140, 11, 285},\n\tdictWord{5, 11, 136},\n\tdictWord{6, 11, 136},\n\tdictWord{136, 11, 644},\n\tdictWord{134, 0, 1525},\n\tdictWord{4, 0, 1009},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1139,\n\t},\n\tdictWord{139, 10, 338},\n\tdictWord{132, 0, 340},\n\tdictWord{135, 10, 1464},\n\tdictWord{8, 0, 847},\n\tdictWord{10, 0, 861},\n\tdictWord{10, 0, 876},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t889,\n\t},\n\tdictWord{10, 0, 922},\n\tdictWord{10, 0, 929},\n\tdictWord{10, 0, 933},\n\tdictWord{12, 0, 784},\n\tdictWord{140, 0, 791},\n\tdictWord{139, 0, 176},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t134,\n\t},\n\tdictWord{10, 11, 2},\n\tdictWord{10, 11, 27},\n\tdictWord{10, 11, 333},\n\tdictWord{11, 11, 722},\n\tdictWord{143, 11, 1},\n\tdictWord{4, 11, 433},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t719,\n\t},\n\tdictWord{5, 0, 985},\n\tdictWord{7, 0, 509},\n\tdictWord{7, 0, 529},\n\tdictWord{145, 0, 96},\n\tdictWord{132, 0, 615},\n\tdictWord{4, 10, 890},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t805,\n\t},\n\tdictWord{5, 10, 819},\n\tdictWord{5, 10, 961},\n\tdictWord{6, 10, 396},\n\tdictWord{6, 10, 1631},\n\tdictWord{6, 10, 1678},\n\tdictWord{7, 10, 1967},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t2041,\n\t},\n\tdictWord{9, 10, 630},\n\tdictWord{11, 10, 8},\n\tdictWord{11, 10, 1019},\n\tdictWord{12, 10, 176},\n\tdictWord{13, 10, 225},\n\tdictWord{14, 10, 292},\n\tdictWord{\n\t\t149,\n\t\t10,\n\t\t24,\n\t},\n\tdictWord{135, 0, 1919},\n\tdictWord{134, 0, 1131},\n\tdictWord{144, 11, 21},\n\tdictWord{144, 11, 51},\n\tdictWord{135, 10, 1815},\n\tdictWord{4, 0, 247},\n\tdictWord{7, 10, 1505},\n\tdictWord{10, 10, 190},\n\tdictWord{10, 10, 634},\n\tdictWord{11, 10, 792},\n\tdictWord{12, 10, 358},\n\tdictWord{140, 10, 447},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t0,\n\t},\n\tdictWord{6, 10, 536},\n\tdictWord{7, 10, 604},\n\tdictWord{13, 10, 445},\n\tdictWord{145, 10, 126},\n\tdictWord{4, 0, 184},\n\tdictWord{5, 0, 390},\n\tdictWord{6, 0, 337},\n\tdictWord{7, 0, 23},\n\tdictWord{7, 0, 494},\n\tdictWord{7, 0, 618},\n\tdictWord{7, 0, 1456},\n\tdictWord{8, 0, 27},\n\tdictWord{8, 0, 599},\n\tdictWord{10, 0, 153},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t710,\n\t},\n\tdictWord{6, 10, 232},\n\tdictWord{6, 10, 412},\n\tdictWord{7, 10, 1074},\n\tdictWord{8, 10, 9},\n\tdictWord{8, 10, 157},\n\tdictWord{8, 10, 786},\n\tdictWord{9, 10, 196},\n\tdictWord{9, 10, 352},\n\tdictWord{9, 10, 457},\n\tdictWord{10, 10, 337},\n\tdictWord{11, 10, 232},\n\tdictWord{11, 10, 877},\n\tdictWord{12, 10, 480},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t546,\n\t},\n\tdictWord{13, 0, 38},\n\tdictWord{135, 10, 958},\n\tdictWord{4, 10, 382},\n\tdictWord{136, 10, 579},\n\tdictWord{4, 10, 212},\n\tdictWord{135, 10, 1206},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t555,\n\t},\n\tdictWord{8, 11, 536},\n\tdictWord{138, 11, 288},\n\tdictWord{11, 11, 139},\n\tdictWord{139, 11, 171},\n\tdictWord{9, 11, 370},\n\tdictWord{138, 11, 90},\n\tdictWord{132, 0, 1015},\n\tdictWord{134, 0, 1088},\n\tdictWord{5, 10, 655},\n\tdictWord{135, 11, 977},\n\tdictWord{134, 0, 1585},\n\tdictWord{17, 10, 67},\n\tdictWord{\n\t\t147,\n\t\t10,\n\t\t74,\n\t},\n\tdictWord{10, 0, 227},\n\tdictWord{11, 0, 497},\n\tdictWord{11, 0, 709},\n\tdictWord{140, 0, 415},\n\tdictWord{6, 0, 360},\n\tdictWord{7, 0, 1664},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t478,\n\t},\n\tdictWord{7, 0, 95},\n\tdictWord{6, 10, 231},\n\tdictWord{136, 10, 423},\n\tdictWord{140, 11, 65},\n\tdictWord{4, 11, 257},\n\tdictWord{135, 11, 2031},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1768,\n\t},\n\tdictWord{133, 10, 300},\n\tdictWord{139, 11, 211},\n\tdictWord{136, 0, 699},\n\tdictWord{6, 10, 237},\n\tdictWord{7, 10, 611},\n\tdictWord{8, 10, 100},\n\tdictWord{9, 10, 416},\n\tdictWord{11, 10, 335},\n\tdictWord{12, 10, 173},\n\tdictWord{146, 10, 101},\n\tdictWord{14, 0, 26},\n\tdictWord{146, 0, 150},\n\tdictWord{6, 0, 581},\n\tdictWord{135, 0, 1119},\n\tdictWord{135, 10, 1208},\n\tdictWord{132, 0, 739},\n\tdictWord{6, 11, 83},\n\tdictWord{6, 11, 1733},\n\tdictWord{135, 11, 1389},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t869,\n\t},\n\tdictWord{4, 0, 67},\n\tdictWord{5, 0, 422},\n\tdictWord{7, 0, 1037},\n\tdictWord{7, 0, 1289},\n\tdictWord{7, 0, 1555},\n\tdictWord{9, 0, 741},\n\tdictWord{145, 0, 108},\n\tdictWord{133, 10, 199},\n\tdictWord{12, 10, 427},\n\tdictWord{146, 10, 38},\n\tdictWord{136, 0, 464},\n\tdictWord{142, 0, 42},\n\tdictWord{10, 0, 96},\n\tdictWord{8, 11, 501},\n\tdictWord{137, 11, 696},\n\tdictWord{134, 11, 592},\n\tdictWord{4, 0, 512},\n\tdictWord{4, 0, 966},\n\tdictWord{5, 0, 342},\n\tdictWord{6, 0, 1855},\n\tdictWord{8, 0, 869},\n\tdictWord{8, 0, 875},\n\tdictWord{8, 0, 901},\n\tdictWord{144, 0, 26},\n\tdictWord{8, 0, 203},\n\tdictWord{11, 0, 823},\n\tdictWord{11, 0, 846},\n\tdictWord{12, 0, 482},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t277,\n\t},\n\tdictWord{13, 0, 302},\n\tdictWord{13, 0, 464},\n\tdictWord{14, 0, 205},\n\tdictWord{142, 0, 221},\n\tdictWord{4, 0, 449},\n\tdictWord{133, 0, 718},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1718,\n\t},\n\tdictWord{9, 11, 95},\n\tdictWord{9, 11, 274},\n\tdictWord{10, 11, 279},\n\tdictWord{10, 11, 317},\n\tdictWord{10, 11, 420},\n\tdictWord{11, 11, 303},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t808,\n\t},\n\tdictWord{12, 11, 134},\n\tdictWord{12, 11, 367},\n\tdictWord{13, 11, 149},\n\tdictWord{13, 11, 347},\n\tdictWord{14, 11, 349},\n\tdictWord{14, 11, 406},\n\tdictWord{18, 11, 22},\n\tdictWord{18, 11, 89},\n\tdictWord{18, 11, 122},\n\tdictWord{147, 11, 47},\n\tdictWord{133, 11, 26},\n\tdictWord{4, 0, 355},\n\tdictWord{6, 0, 311},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t256,\n\t},\n\tdictWord{138, 0, 404},\n\tdictWord{132, 11, 550},\n\tdictWord{10, 0, 758},\n\tdictWord{6, 10, 312},\n\tdictWord{6, 10, 1715},\n\tdictWord{10, 10, 584},\n\tdictWord{11, 10, 546},\n\tdictWord{11, 10, 692},\n\tdictWord{12, 10, 259},\n\tdictWord{12, 10, 295},\n\tdictWord{13, 10, 46},\n\tdictWord{141, 10, 154},\n\tdictWord{\n\t\t136,\n\t\t11,\n\t\t822,\n\t},\n\tdictWord{5, 0, 827},\n\tdictWord{4, 11, 902},\n\tdictWord{5, 11, 809},\n\tdictWord{6, 11, 122},\n\tdictWord{135, 11, 896},\n\tdictWord{5, 0, 64},\n\tdictWord{140, 0, 581},\n\tdictWord{4, 0, 442},\n\tdictWord{6, 0, 739},\n\tdictWord{7, 0, 1047},\n\tdictWord{7, 0, 1352},\n\tdictWord{7, 0, 1643},\n\tdictWord{7, 11, 1911},\n\tdictWord{9, 11, 449},\n\tdictWord{10, 11, 192},\n\tdictWord{138, 11, 740},\n\tdictWord{135, 11, 262},\n\tdictWord{132, 10, 588},\n\tdictWord{133, 11, 620},\n\tdictWord{5, 0, 977},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t288,\n\t},\n\tdictWord{7, 0, 528},\n\tdictWord{4, 11, 34},\n\tdictWord{5, 11, 574},\n\tdictWord{7, 11, 279},\n\tdictWord{7, 11, 1624},\n\tdictWord{136, 11, 601},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1375,\n\t},\n\tdictWord{4, 10, 231},\n\tdictWord{5, 10, 61},\n\tdictWord{6, 10, 104},\n\tdictWord{7, 10, 729},\n\tdictWord{7, 10, 964},\n\tdictWord{7, 10, 1658},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t414,\n\t},\n\tdictWord{6, 10, 263},\n\tdictWord{138, 10, 757},\n\tdictWord{132, 10, 320},\n\tdictWord{4, 0, 254},\n\tdictWord{7, 0, 1309},\n\tdictWord{5, 11, 332},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1309,\n\t},\n\tdictWord{6, 11, 261},\n\tdictWord{8, 11, 182},\n\tdictWord{139, 11, 943},\n\tdictWord{132, 10, 225},\n\tdictWord{6, 0, 12},\n\tdictWord{135, 0, 1219},\n\tdictWord{4, 0, 275},\n\tdictWord{12, 0, 376},\n\tdictWord{6, 11, 1721},\n\tdictWord{141, 11, 490},\n\tdictWord{4, 11, 933},\n\tdictWord{133, 11, 880},\n\tdictWord{6, 0, 951},\n\tdictWord{6, 0, 1109},\n\tdictWord{6, 0, 1181},\n\tdictWord{7, 0, 154},\n\tdictWord{4, 10, 405},\n\tdictWord{7, 10, 817},\n\tdictWord{14, 10, 58},\n\tdictWord{17, 10, 37},\n\tdictWord{\n\t\t146,\n\t\t10,\n\t\t124,\n\t},\n\tdictWord{6, 0, 1520},\n\tdictWord{133, 10, 974},\n\tdictWord{134, 0, 1753},\n\tdictWord{6, 0, 369},\n\tdictWord{6, 0, 502},\n\tdictWord{7, 0, 1036},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t348,\n\t},\n\tdictWord{9, 0, 452},\n\tdictWord{10, 0, 26},\n\tdictWord{11, 0, 224},\n\tdictWord{11, 0, 387},\n\tdictWord{11, 0, 772},\n\tdictWord{12, 0, 95},\n\tdictWord{12, 0, 629},\n\tdictWord{13, 0, 195},\n\tdictWord{13, 0, 207},\n\tdictWord{13, 0, 241},\n\tdictWord{14, 0, 260},\n\tdictWord{14, 0, 270},\n\tdictWord{143, 0, 140},\n\tdictWord{132, 0, 269},\n\tdictWord{5, 0, 480},\n\tdictWord{7, 0, 532},\n\tdictWord{7, 0, 1197},\n\tdictWord{7, 0, 1358},\n\tdictWord{8, 0, 291},\n\tdictWord{11, 0, 349},\n\tdictWord{142, 0, 396},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t235,\n\t},\n\tdictWord{7, 10, 1239},\n\tdictWord{11, 10, 131},\n\tdictWord{140, 10, 370},\n\tdictWord{7, 10, 956},\n\tdictWord{7, 10, 1157},\n\tdictWord{7, 10, 1506},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1606,\n\t},\n\tdictWord{7, 10, 1615},\n\tdictWord{7, 10, 1619},\n\tdictWord{7, 10, 1736},\n\tdictWord{7, 10, 1775},\n\tdictWord{8, 10, 590},\n\tdictWord{9, 10, 324},\n\tdictWord{9, 10, 736},\n\tdictWord{9, 10, 774},\n\tdictWord{9, 10, 776},\n\tdictWord{9, 10, 784},\n\tdictWord{10, 10, 567},\n\tdictWord{10, 10, 708},\n\tdictWord{11, 10, 518},\n\tdictWord{11, 10, 613},\n\tdictWord{11, 10, 695},\n\tdictWord{11, 10, 716},\n\tdictWord{11, 10, 739},\n\tdictWord{11, 10, 770},\n\tdictWord{11, 10, 771},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t848,\n\t},\n\tdictWord{11, 10, 857},\n\tdictWord{11, 10, 931},\n\tdictWord{11, 10, 947},\n\tdictWord{12, 10, 326},\n\tdictWord{12, 10, 387},\n\tdictWord{12, 10, 484},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t528,\n\t},\n\tdictWord{12, 10, 552},\n\tdictWord{12, 10, 613},\n\tdictWord{13, 10, 189},\n\tdictWord{13, 10, 256},\n\tdictWord{13, 10, 340},\n\tdictWord{13, 10, 432},\n\tdictWord{13, 10, 436},\n\tdictWord{13, 10, 440},\n\tdictWord{13, 10, 454},\n\tdictWord{14, 10, 174},\n\tdictWord{14, 10, 220},\n\tdictWord{14, 10, 284},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t390,\n\t},\n\tdictWord{145, 10, 121},\n\tdictWord{8, 11, 598},\n\tdictWord{9, 11, 664},\n\tdictWord{138, 11, 441},\n\tdictWord{9, 10, 137},\n\tdictWord{138, 10, 221},\n\tdictWord{133, 11, 812},\n\tdictWord{148, 0, 15},\n\tdictWord{134, 0, 1341},\n\tdictWord{6, 0, 1017},\n\tdictWord{4, 11, 137},\n\tdictWord{7, 11, 1178},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1520,\n\t},\n\tdictWord{7, 10, 390},\n\tdictWord{138, 10, 140},\n\tdictWord{7, 11, 1260},\n\tdictWord{135, 11, 1790},\n\tdictWord{137, 11, 191},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1144,\n\t},\n\tdictWord{6, 0, 1810},\n\tdictWord{7, 0, 657},\n\tdictWord{8, 0, 886},\n\tdictWord{10, 0, 857},\n\tdictWord{14, 0, 440},\n\tdictWord{144, 0, 96},\n\tdictWord{8, 0, 533},\n\tdictWord{6, 11, 1661},\n\tdictWord{7, 11, 1975},\n\tdictWord{7, 11, 2009},\n\tdictWord{135, 11, 2011},\n\tdictWord{6, 0, 1453},\n\tdictWord{134, 10, 464},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t715,\n\t},\n\tdictWord{5, 10, 407},\n\tdictWord{11, 10, 204},\n\tdictWord{11, 10, 243},\n\tdictWord{11, 10, 489},\n\tdictWord{12, 10, 293},\n\tdictWord{19, 10, 37},\n\tdictWord{20, 10, 73},\n\tdictWord{150, 10, 38},\n\tdictWord{133, 11, 703},\n\tdictWord{4, 0, 211},\n\tdictWord{7, 0, 1483},\n\tdictWord{5, 10, 325},\n\tdictWord{8, 10, 5},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t227,\n\t},\n\tdictWord{9, 10, 105},\n\tdictWord{10, 10, 585},\n\tdictWord{140, 10, 614},\n\tdictWord{4, 0, 332},\n\tdictWord{5, 0, 335},\n\tdictWord{6, 0, 238},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t269,\n\t},\n\tdictWord{7, 0, 811},\n\tdictWord{7, 0, 1797},\n\tdictWord{8, 0, 836},\n\tdictWord{9, 0, 507},\n\tdictWord{141, 0, 242},\n\tdictWord{5, 11, 89},\n\tdictWord{7, 11, 1915},\n\tdictWord{9, 11, 185},\n\tdictWord{9, 11, 235},\n\tdictWord{9, 11, 496},\n\tdictWord{10, 11, 64},\n\tdictWord{10, 11, 270},\n\tdictWord{10, 11, 403},\n\tdictWord{10, 11, 469},\n\tdictWord{10, 11, 529},\n\tdictWord{10, 11, 590},\n\tdictWord{11, 11, 140},\n\tdictWord{11, 11, 860},\n\tdictWord{13, 11, 1},\n\tdictWord{13, 11, 422},\n\tdictWord{14, 11, 341},\n\tdictWord{14, 11, 364},\n\tdictWord{17, 11, 93},\n\tdictWord{18, 11, 113},\n\tdictWord{19, 11, 97},\n\tdictWord{147, 11, 113},\n\tdictWord{133, 11, 695},\n\tdictWord{\n\t\t16,\n\t\t0,\n\t\t19,\n\t},\n\tdictWord{5, 11, 6},\n\tdictWord{6, 11, 183},\n\tdictWord{6, 10, 621},\n\tdictWord{7, 11, 680},\n\tdictWord{7, 11, 978},\n\tdictWord{7, 11, 1013},\n\tdictWord{7, 11, 1055},\n\tdictWord{12, 11, 230},\n\tdictWord{13, 11, 172},\n\tdictWord{13, 10, 504},\n\tdictWord{146, 11, 29},\n\tdictWord{136, 0, 156},\n\tdictWord{133, 0, 1009},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t29,\n\t},\n\tdictWord{139, 11, 63},\n\tdictWord{134, 0, 820},\n\tdictWord{134, 10, 218},\n\tdictWord{7, 10, 454},\n\tdictWord{7, 10, 782},\n\tdictWord{8, 10, 768},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t686,\n\t},\n\tdictWord{5, 0, 228},\n\tdictWord{6, 0, 203},\n\tdictWord{7, 0, 156},\n\tdictWord{8, 0, 347},\n\tdictWord{9, 0, 265},\n\tdictWord{18, 0, 39},\n\tdictWord{20, 0, 54},\n\tdictWord{21, 0, 31},\n\tdictWord{22, 0, 3},\n\tdictWord{23, 0, 0},\n\tdictWord{15, 11, 8},\n\tdictWord{18, 11, 39},\n\tdictWord{20, 11, 54},\n\tdictWord{21, 11, 31},\n\tdictWord{22, 11, 3},\n\tdictWord{151, 11, 0},\n\tdictWord{7, 0, 1131},\n\tdictWord{135, 0, 1468},\n\tdictWord{144, 10, 0},\n\tdictWord{134, 0, 1276},\n\tdictWord{10, 10, 676},\n\tdictWord{\n\t\t140,\n\t\t10,\n\t\t462,\n\t},\n\tdictWord{132, 11, 311},\n\tdictWord{134, 11, 1740},\n\tdictWord{7, 11, 170},\n\tdictWord{8, 11, 90},\n\tdictWord{8, 11, 177},\n\tdictWord{8, 11, 415},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t714,\n\t},\n\tdictWord{142, 11, 281},\n\tdictWord{134, 10, 164},\n\tdictWord{6, 0, 1792},\n\tdictWord{138, 0, 849},\n\tdictWord{150, 10, 50},\n\tdictWord{5, 0, 291},\n\tdictWord{5, 0, 318},\n\tdictWord{7, 0, 765},\n\tdictWord{9, 0, 389},\n\tdictWord{12, 0, 548},\n\tdictWord{8, 11, 522},\n\tdictWord{142, 11, 328},\n\tdictWord{11, 11, 91},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t129,\n\t},\n\tdictWord{15, 11, 101},\n\tdictWord{145, 11, 125},\n\tdictWord{4, 11, 494},\n\tdictWord{6, 11, 74},\n\tdictWord{7, 11, 44},\n\tdictWord{7, 11, 407},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t551,\n\t},\n\tdictWord{12, 11, 17},\n\tdictWord{15, 11, 5},\n\tdictWord{148, 11, 11},\n\tdictWord{4, 11, 276},\n\tdictWord{133, 11, 296},\n\tdictWord{6, 10, 343},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t195,\n\t},\n\tdictWord{7, 11, 1777},\n\tdictWord{9, 10, 226},\n\tdictWord{10, 10, 197},\n\tdictWord{10, 10, 575},\n\tdictWord{11, 10, 502},\n\tdictWord{139, 10, 899},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t525,\n\t},\n\tdictWord{139, 0, 82},\n\tdictWord{14, 0, 453},\n\tdictWord{4, 11, 7},\n\tdictWord{5, 11, 90},\n\tdictWord{5, 11, 158},\n\tdictWord{6, 11, 542},\n\tdictWord{7, 11, 221},\n\tdictWord{7, 11, 1574},\n\tdictWord{9, 11, 490},\n\tdictWord{10, 11, 540},\n\tdictWord{11, 11, 443},\n\tdictWord{139, 11, 757},\n\tdictWord{135, 0, 666},\n\tdictWord{\n\t\t22,\n\t\t10,\n\t\t29,\n\t},\n\tdictWord{150, 11, 29},\n\tdictWord{4, 0, 422},\n\tdictWord{147, 10, 8},\n\tdictWord{5, 0, 355},\n\tdictWord{145, 0, 0},\n\tdictWord{6, 0, 1873},\n\tdictWord{9, 0, 918},\n\tdictWord{7, 11, 588},\n\tdictWord{9, 11, 175},\n\tdictWord{138, 11, 530},\n\tdictWord{143, 11, 31},\n\tdictWord{11, 0, 165},\n\tdictWord{7, 10, 1125},\n\tdictWord{9, 10, 143},\n\tdictWord{14, 10, 405},\n\tdictWord{150, 10, 21},\n\tdictWord{9, 0, 260},\n\tdictWord{137, 0, 905},\n\tdictWord{5, 11, 872},\n\tdictWord{6, 11, 57},\n\tdictWord{6, 11, 479},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t562,\n\t},\n\tdictWord{7, 11, 471},\n\tdictWord{7, 11, 1060},\n\tdictWord{9, 11, 447},\n\tdictWord{9, 11, 454},\n\tdictWord{141, 11, 6},\n\tdictWord{138, 11, 704},\n\tdictWord{133, 0, 865},\n\tdictWord{5, 0, 914},\n\tdictWord{134, 0, 1625},\n\tdictWord{133, 0, 234},\n\tdictWord{7, 0, 1383},\n\tdictWord{5, 11, 31},\n\tdictWord{6, 11, 614},\n\tdictWord{145, 11, 61},\n\tdictWord{7, 11, 1200},\n\tdictWord{138, 11, 460},\n\tdictWord{6, 11, 424},\n\tdictWord{135, 11, 1866},\n\tdictWord{136, 0, 306},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t959,\n\t},\n\tdictWord{12, 11, 30},\n\tdictWord{13, 11, 148},\n\tdictWord{14, 11, 87},\n\tdictWord{14, 11, 182},\n\tdictWord{16, 11, 42},\n\tdictWord{18, 11, 92},\n\tdictWord{\n\t\t148,\n\t\t11,\n\t\t70,\n\t},\n\tdictWord{6, 0, 1919},\n\tdictWord{6, 0, 1921},\n\tdictWord{9, 0, 923},\n\tdictWord{9, 0, 930},\n\tdictWord{9, 0, 941},\n\tdictWord{9, 0, 949},\n\tdictWord{9, 0, 987},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t988,\n\t},\n\tdictWord{9, 0, 992},\n\tdictWord{12, 0, 802},\n\tdictWord{12, 0, 815},\n\tdictWord{12, 0, 856},\n\tdictWord{12, 0, 885},\n\tdictWord{12, 0, 893},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t898,\n\t},\n\tdictWord{12, 0, 919},\n\tdictWord{12, 0, 920},\n\tdictWord{12, 0, 941},\n\tdictWord{12, 0, 947},\n\tdictWord{15, 0, 183},\n\tdictWord{15, 0, 185},\n\tdictWord{15, 0, 189},\n\tdictWord{15, 0, 197},\n\tdictWord{15, 0, 202},\n\tdictWord{15, 0, 233},\n\tdictWord{18, 0, 218},\n\tdictWord{18, 0, 219},\n\tdictWord{18, 0, 233},\n\tdictWord{143, 11, 156},\n\tdictWord{135, 10, 1759},\n\tdictWord{136, 10, 173},\n\tdictWord{13, 0, 163},\n\tdictWord{13, 0, 180},\n\tdictWord{18, 0, 78},\n\tdictWord{20, 0, 35},\n\tdictWord{5, 11, 13},\n\tdictWord{134, 11, 142},\n\tdictWord{134, 10, 266},\n\tdictWord{6, 11, 97},\n\tdictWord{7, 11, 116},\n\tdictWord{8, 11, 322},\n\tdictWord{8, 11, 755},\n\tdictWord{9, 11, 548},\n\tdictWord{10, 11, 714},\n\tdictWord{11, 11, 884},\n\tdictWord{141, 11, 324},\n\tdictWord{135, 0, 1312},\n\tdictWord{9, 0, 814},\n\tdictWord{137, 11, 676},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t707,\n\t},\n\tdictWord{135, 0, 1493},\n\tdictWord{6, 0, 421},\n\tdictWord{7, 0, 61},\n\tdictWord{7, 0, 1540},\n\tdictWord{10, 0, 11},\n\tdictWord{138, 0, 501},\n\tdictWord{12, 0, 733},\n\tdictWord{12, 0, 766},\n\tdictWord{7, 11, 866},\n\tdictWord{135, 11, 1163},\n\tdictWord{137, 0, 341},\n\tdictWord{142, 0, 98},\n\tdictWord{145, 11, 115},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1111,\n\t},\n\tdictWord{136, 10, 300},\n\tdictWord{136, 0, 1014},\n\tdictWord{8, 11, 1},\n\tdictWord{9, 11, 112},\n\tdictWord{138, 11, 326},\n\tdictWord{132, 11, 730},\n\tdictWord{5, 11, 488},\n\tdictWord{6, 11, 527},\n\tdictWord{7, 11, 489},\n\tdictWord{7, 11, 1636},\n\tdictWord{8, 11, 121},\n\tdictWord{8, 11, 144},\n\tdictWord{8, 11, 359},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t193,\n\t},\n\tdictWord{9, 11, 241},\n\tdictWord{9, 11, 336},\n\tdictWord{9, 11, 882},\n\tdictWord{11, 11, 266},\n\tdictWord{11, 11, 372},\n\tdictWord{11, 11, 944},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t401,\n\t},\n\tdictWord{140, 11, 641},\n\tdictWord{6, 0, 971},\n\tdictWord{134, 0, 1121},\n\tdictWord{6, 0, 102},\n\tdictWord{7, 0, 72},\n\tdictWord{15, 0, 142},\n\tdictWord{\n\t\t147,\n\t\t0,\n\t\t67,\n\t},\n\tdictWord{151, 0, 30},\n\tdictWord{135, 0, 823},\n\tdictWord{134, 0, 1045},\n\tdictWord{5, 10, 427},\n\tdictWord{5, 10, 734},\n\tdictWord{7, 10, 478},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t52,\n\t},\n\tdictWord{7, 0, 1930},\n\tdictWord{11, 10, 217},\n\tdictWord{142, 10, 165},\n\tdictWord{6, 0, 1512},\n\tdictWord{135, 0, 1870},\n\tdictWord{9, 11, 31},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t244,\n\t},\n\tdictWord{10, 11, 699},\n\tdictWord{12, 11, 149},\n\tdictWord{141, 11, 497},\n\tdictWord{133, 11, 377},\n\tdictWord{145, 11, 101},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t158,\n\t},\n\tdictWord{13, 11, 13},\n\tdictWord{13, 11, 137},\n\tdictWord{13, 11, 258},\n\tdictWord{14, 11, 111},\n\tdictWord{14, 11, 225},\n\tdictWord{14, 11, 253},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t304,\n\t},\n\tdictWord{14, 11, 339},\n\tdictWord{14, 11, 417},\n\tdictWord{146, 11, 33},\n\tdictWord{6, 0, 87},\n\tdictWord{6, 10, 1734},\n\tdictWord{7, 10, 20},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1056,\n\t},\n\tdictWord{8, 10, 732},\n\tdictWord{9, 10, 406},\n\tdictWord{9, 10, 911},\n\tdictWord{138, 10, 694},\n\tdictWord{134, 0, 1243},\n\tdictWord{137, 0, 245},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t68,\n\t},\n\tdictWord{8, 0, 48},\n\tdictWord{8, 0, 88},\n\tdictWord{8, 0, 582},\n\tdictWord{8, 0, 681},\n\tdictWord{9, 0, 373},\n\tdictWord{9, 0, 864},\n\tdictWord{11, 0, 157},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t336,\n\t},\n\tdictWord{11, 0, 843},\n\tdictWord{148, 0, 27},\n\tdictWord{8, 11, 663},\n\tdictWord{144, 11, 8},\n\tdictWord{133, 10, 613},\n\tdictWord{4, 0, 88},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t137,\n\t},\n\tdictWord{5, 0, 174},\n\tdictWord{5, 0, 777},\n\tdictWord{6, 0, 1664},\n\tdictWord{6, 0, 1725},\n\tdictWord{7, 0, 77},\n\tdictWord{7, 0, 426},\n\tdictWord{7, 0, 1317},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1355,\n\t},\n\tdictWord{8, 0, 126},\n\tdictWord{8, 0, 563},\n\tdictWord{9, 0, 523},\n\tdictWord{9, 0, 750},\n\tdictWord{10, 0, 310},\n\tdictWord{10, 0, 836},\n\tdictWord{11, 0, 42},\n\tdictWord{11, 0, 318},\n\tdictWord{11, 0, 731},\n\tdictWord{12, 0, 68},\n\tdictWord{12, 0, 92},\n\tdictWord{12, 0, 507},\n\tdictWord{12, 0, 692},\n\tdictWord{13, 0, 81},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t238,\n\t},\n\tdictWord{13, 0, 374},\n\tdictWord{14, 0, 436},\n\tdictWord{18, 0, 138},\n\tdictWord{19, 0, 78},\n\tdictWord{19, 0, 111},\n\tdictWord{20, 0, 55},\n\tdictWord{20, 0, 77},\n\tdictWord{148, 0, 92},\n\tdictWord{141, 0, 418},\n\tdictWord{4, 0, 938},\n\tdictWord{137, 0, 625},\n\tdictWord{138, 0, 351},\n\tdictWord{5, 11, 843},\n\tdictWord{7, 10, 32},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t984,\n\t},\n\tdictWord{8, 10, 85},\n\tdictWord{8, 10, 709},\n\tdictWord{9, 10, 579},\n\tdictWord{9, 10, 847},\n\tdictWord{9, 10, 856},\n\tdictWord{10, 10, 799},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t258,\n\t},\n\tdictWord{11, 10, 1007},\n\tdictWord{12, 10, 331},\n\tdictWord{12, 10, 615},\n\tdictWord{13, 10, 188},\n\tdictWord{13, 10, 435},\n\tdictWord{14, 10, 8},\n\tdictWord{\n\t\t15,\n\t\t10,\n\t\t165,\n\t},\n\tdictWord{16, 10, 27},\n\tdictWord{148, 10, 40},\n\tdictWord{6, 0, 1668},\n\tdictWord{7, 0, 1499},\n\tdictWord{8, 0, 117},\n\tdictWord{9, 0, 314},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t174,\n\t},\n\tdictWord{135, 0, 707},\n\tdictWord{132, 11, 554},\n\tdictWord{133, 11, 536},\n\tdictWord{5, 0, 403},\n\tdictWord{5, 11, 207},\n\tdictWord{9, 11, 79},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t625,\n\t},\n\tdictWord{145, 11, 7},\n\tdictWord{132, 11, 424},\n\tdictWord{136, 11, 785},\n\tdictWord{4, 10, 167},\n\tdictWord{135, 10, 82},\n\tdictWord{9, 0, 7},\n\tdictWord{\n\t\t23,\n\t\t0,\n\t\t6,\n\t},\n\tdictWord{9, 11, 7},\n\tdictWord{151, 11, 6},\n\tdictWord{6, 0, 282},\n\tdictWord{5, 10, 62},\n\tdictWord{6, 10, 534},\n\tdictWord{7, 10, 74},\n\tdictWord{7, 10, 678},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t684,\n\t},\n\tdictWord{7, 10, 1043},\n\tdictWord{7, 10, 1072},\n\tdictWord{8, 10, 280},\n\tdictWord{8, 10, 541},\n\tdictWord{8, 10, 686},\n\tdictWord{9, 10, 258},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t519,\n\t},\n\tdictWord{11, 10, 252},\n\tdictWord{140, 10, 282},\n\tdictWord{138, 10, 33},\n\tdictWord{132, 10, 359},\n\tdictWord{4, 0, 44},\n\tdictWord{5, 0, 311},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t156,\n\t},\n\tdictWord{7, 0, 639},\n\tdictWord{7, 0, 762},\n\tdictWord{7, 0, 1827},\n\tdictWord{9, 0, 8},\n\tdictWord{9, 0, 462},\n\tdictWord{148, 0, 83},\n\tdictWord{7, 11, 769},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t18,\n\t},\n\tdictWord{138, 11, 358},\n\tdictWord{4, 0, 346},\n\tdictWord{7, 0, 115},\n\tdictWord{9, 0, 180},\n\tdictWord{9, 0, 456},\n\tdictWord{10, 0, 363},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t896,\n\t},\n\tdictWord{134, 11, 1777},\n\tdictWord{133, 10, 211},\n\tdictWord{7, 0, 761},\n\tdictWord{7, 0, 1051},\n\tdictWord{137, 0, 545},\n\tdictWord{6, 10, 145},\n\tdictWord{\n\t\t141,\n\t\t10,\n\t\t336,\n\t},\n\tdictWord{7, 11, 750},\n\tdictWord{9, 11, 223},\n\tdictWord{11, 11, 27},\n\tdictWord{11, 11, 466},\n\tdictWord{12, 11, 624},\n\tdictWord{14, 11, 265},\n\tdictWord{146, 11, 61},\n\tdictWord{6, 0, 752},\n\tdictWord{6, 0, 768},\n\tdictWord{6, 0, 1195},\n\tdictWord{6, 0, 1254},\n\tdictWord{6, 0, 1619},\n\tdictWord{137, 0, 835},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1936,\n\t},\n\tdictWord{8, 0, 930},\n\tdictWord{136, 0, 960},\n\tdictWord{132, 10, 263},\n\tdictWord{132, 11, 249},\n\tdictWord{12, 0, 653},\n\tdictWord{132, 10, 916},\n\tdictWord{4, 11, 603},\n\tdictWord{133, 11, 661},\n\tdictWord{8, 0, 344},\n\tdictWord{4, 11, 11},\n\tdictWord{6, 11, 128},\n\tdictWord{7, 11, 231},\n\tdictWord{7, 11, 1533},\n\tdictWord{138, 11, 725},\n\tdictWord{134, 0, 1483},\n\tdictWord{134, 0, 875},\n\tdictWord{6, 0, 185},\n\tdictWord{7, 0, 1899},\n\tdictWord{9, 0, 875},\n\tdictWord{139, 0, 673},\n\tdictWord{15, 10, 155},\n\tdictWord{144, 10, 79},\n\tdictWord{7, 0, 93},\n\tdictWord{7, 0, 210},\n\tdictWord{7, 0, 1223},\n\tdictWord{8, 0, 451},\n\tdictWord{8, 0, 460},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t353,\n\t},\n\tdictWord{11, 0, 475},\n\tdictWord{4, 10, 599},\n\tdictWord{6, 10, 1634},\n\tdictWord{7, 10, 67},\n\tdictWord{7, 10, 691},\n\tdictWord{7, 10, 979},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1697,\n\t},\n\tdictWord{8, 10, 207},\n\tdictWord{8, 10, 214},\n\tdictWord{8, 10, 231},\n\tdictWord{8, 10, 294},\n\tdictWord{8, 10, 336},\n\tdictWord{8, 10, 428},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t471,\n\t},\n\tdictWord{8, 10, 622},\n\tdictWord{8, 10, 626},\n\tdictWord{8, 10, 679},\n\tdictWord{8, 10, 759},\n\tdictWord{8, 10, 829},\n\tdictWord{9, 10, 11},\n\tdictWord{9, 10, 246},\n\tdictWord{9, 10, 484},\n\tdictWord{9, 10, 573},\n\tdictWord{9, 10, 706},\n\tdictWord{9, 10, 762},\n\tdictWord{9, 10, 798},\n\tdictWord{9, 10, 855},\n\tdictWord{9, 10, 870},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t912,\n\t},\n\tdictWord{10, 10, 303},\n\tdictWord{10, 10, 335},\n\tdictWord{10, 10, 424},\n\tdictWord{10, 10, 461},\n\tdictWord{10, 10, 543},\n\tdictWord{10, 10, 759},\n\tdictWord{10, 10, 814},\n\tdictWord{11, 10, 59},\n\tdictWord{11, 10, 235},\n\tdictWord{11, 10, 590},\n\tdictWord{11, 10, 929},\n\tdictWord{11, 10, 963},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t987,\n\t},\n\tdictWord{12, 10, 114},\n\tdictWord{12, 10, 182},\n\tdictWord{12, 10, 226},\n\tdictWord{12, 10, 332},\n\tdictWord{12, 10, 439},\n\tdictWord{12, 10, 575},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t598,\n\t},\n\tdictWord{12, 10, 675},\n\tdictWord{13, 10, 8},\n\tdictWord{13, 10, 125},\n\tdictWord{13, 10, 194},\n\tdictWord{13, 10, 287},\n\tdictWord{14, 10, 197},\n\tdictWord{14, 10, 383},\n\tdictWord{15, 10, 53},\n\tdictWord{17, 10, 63},\n\tdictWord{19, 10, 46},\n\tdictWord{19, 10, 98},\n\tdictWord{19, 10, 106},\n\tdictWord{148, 10, 85},\n\tdictWord{132, 11, 476},\n\tdictWord{4, 0, 327},\n\tdictWord{5, 0, 478},\n\tdictWord{7, 0, 1332},\n\tdictWord{136, 0, 753},\n\tdictWord{5, 0, 1020},\n\tdictWord{133, 0, 1022},\n\tdictWord{135, 11, 1807},\n\tdictWord{4, 0, 103},\n\tdictWord{133, 0, 401},\n\tdictWord{4, 0, 499},\n\tdictWord{135, 0, 1421},\n\tdictWord{10, 0, 207},\n\tdictWord{13, 0, 164},\n\tdictWord{147, 10, 126},\n\tdictWord{9, 11, 20},\n\tdictWord{10, 11, 324},\n\tdictWord{139, 11, 488},\n\tdictWord{132, 0, 96},\n\tdictWord{9, 11, 280},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t134,\n\t},\n\tdictWord{135, 0, 968},\n\tdictWord{133, 10, 187},\n\tdictWord{135, 10, 1286},\n\tdictWord{5, 11, 112},\n\tdictWord{6, 11, 103},\n\tdictWord{134, 11, 150},\n\tdictWord{8, 0, 914},\n\tdictWord{10, 0, 3},\n\tdictWord{4, 10, 215},\n\tdictWord{9, 10, 38},\n\tdictWord{11, 10, 23},\n\tdictWord{11, 10, 127},\n\tdictWord{139, 10, 796},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t399,\n\t},\n\tdictWord{6, 0, 563},\n\tdictWord{137, 0, 224},\n\tdictWord{6, 0, 704},\n\tdictWord{134, 0, 1214},\n\tdictWord{4, 11, 708},\n\tdictWord{8, 11, 15},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t50,\n\t},\n\tdictWord{9, 11, 386},\n\tdictWord{11, 11, 18},\n\tdictWord{11, 11, 529},\n\tdictWord{140, 11, 228},\n\tdictWord{4, 11, 563},\n\tdictWord{7, 11, 109},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t592,\n\t},\n\tdictWord{7, 11, 637},\n\tdictWord{7, 11, 770},\n\tdictWord{7, 11, 1701},\n\tdictWord{8, 11, 436},\n\tdictWord{8, 11, 463},\n\tdictWord{9, 11, 60},\n\tdictWord{9, 11, 335},\n\tdictWord{9, 11, 904},\n\tdictWord{10, 11, 73},\n\tdictWord{11, 11, 434},\n\tdictWord{12, 11, 585},\n\tdictWord{13, 11, 331},\n\tdictWord{18, 11, 110},\n\tdictWord{\n\t\t148,\n\t\t11,\n\t\t60,\n\t},\n\tdictWord{134, 0, 1559},\n\tdictWord{132, 11, 502},\n\tdictWord{6, 11, 347},\n\tdictWord{138, 11, 161},\n\tdictWord{4, 11, 33},\n\tdictWord{5, 11, 102},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t500,\n\t},\n\tdictWord{6, 11, 284},\n\tdictWord{7, 11, 1079},\n\tdictWord{7, 11, 1423},\n\tdictWord{7, 11, 1702},\n\tdictWord{8, 11, 470},\n\tdictWord{9, 11, 554},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t723,\n\t},\n\tdictWord{139, 11, 333},\n\tdictWord{7, 11, 246},\n\tdictWord{135, 11, 840},\n\tdictWord{6, 11, 10},\n\tdictWord{8, 11, 571},\n\tdictWord{9, 11, 739},\n\tdictWord{\n\t\t143,\n\t\t11,\n\t\t91,\n\t},\n\tdictWord{8, 0, 861},\n\tdictWord{10, 0, 905},\n\tdictWord{12, 0, 730},\n\tdictWord{12, 0, 789},\n\tdictWord{133, 11, 626},\n\tdictWord{134, 0, 946},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t746,\n\t},\n\tdictWord{12, 0, 333},\n\tdictWord{14, 0, 332},\n\tdictWord{12, 11, 333},\n\tdictWord{142, 11, 332},\n\tdictWord{5, 11, 18},\n\tdictWord{6, 11, 526},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t24,\n\t},\n\tdictWord{13, 11, 110},\n\tdictWord{19, 11, 5},\n\tdictWord{147, 11, 44},\n\tdictWord{4, 0, 910},\n\tdictWord{5, 0, 832},\n\tdictWord{135, 10, 2002},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t768,\n\t},\n\tdictWord{139, 11, 787},\n\tdictWord{4, 11, 309},\n\tdictWord{5, 11, 462},\n\tdictWord{7, 11, 970},\n\tdictWord{135, 11, 1097},\n\tdictWord{4, 10, 28},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t440,\n\t},\n\tdictWord{7, 10, 248},\n\tdictWord{11, 10, 833},\n\tdictWord{140, 10, 344},\n\tdictWord{134, 10, 1654},\n\tdictWord{6, 0, 632},\n\tdictWord{6, 0, 652},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1272,\n\t},\n\tdictWord{6, 0, 1384},\n\tdictWord{134, 0, 1560},\n\tdictWord{134, 11, 1704},\n\tdictWord{6, 0, 1393},\n\tdictWord{133, 10, 853},\n\tdictWord{6, 10, 249},\n\tdictWord{7, 10, 1234},\n\tdictWord{139, 10, 573},\n\tdictWord{5, 11, 86},\n\tdictWord{7, 11, 743},\n\tdictWord{9, 11, 85},\n\tdictWord{10, 11, 281},\n\tdictWord{10, 11, 432},\n\tdictWord{11, 11, 490},\n\tdictWord{12, 11, 251},\n\tdictWord{13, 11, 118},\n\tdictWord{14, 11, 378},\n\tdictWord{146, 11, 143},\n\tdictWord{5, 11, 524},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t744,\n\t},\n\tdictWord{134, 0, 1514},\n\tdictWord{10, 0, 201},\n\tdictWord{142, 0, 319},\n\tdictWord{7, 0, 717},\n\tdictWord{10, 0, 510},\n\tdictWord{7, 10, 392},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t20,\n\t},\n\tdictWord{8, 10, 172},\n\tdictWord{8, 10, 690},\n\tdictWord{9, 10, 383},\n\tdictWord{9, 10, 845},\n\tdictWord{11, 10, 293},\n\tdictWord{11, 10, 832},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t920,\n\t},\n\tdictWord{11, 10, 984},\n\tdictWord{141, 10, 221},\n\tdictWord{134, 0, 1381},\n\tdictWord{5, 10, 858},\n\tdictWord{133, 10, 992},\n\tdictWord{8, 0, 528},\n\tdictWord{137, 0, 348},\n\tdictWord{10, 11, 107},\n\tdictWord{140, 11, 436},\n\tdictWord{4, 0, 20},\n\tdictWord{133, 0, 616},\n\tdictWord{134, 0, 1251},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t927,\n\t},\n\tdictWord{10, 11, 123},\n\tdictWord{12, 11, 670},\n\tdictWord{13, 11, 371},\n\tdictWord{14, 11, 142},\n\tdictWord{146, 11, 94},\n\tdictWord{134, 0, 1163},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1149,\n\t},\n\tdictWord{137, 11, 156},\n\tdictWord{134, 0, 307},\n\tdictWord{133, 11, 778},\n\tdictWord{7, 0, 1091},\n\tdictWord{135, 0, 1765},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t502,\n\t},\n\tdictWord{6, 10, 268},\n\tdictWord{137, 10, 62},\n\tdictWord{8, 11, 196},\n\tdictWord{10, 11, 283},\n\tdictWord{139, 11, 406},\n\tdictWord{4, 0, 26},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t429,\n\t},\n\tdictWord{6, 0, 245},\n\tdictWord{7, 0, 704},\n\tdictWord{7, 0, 1379},\n\tdictWord{135, 0, 1474},\n\tdictWord{133, 11, 855},\n\tdictWord{132, 0, 881},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t621,\n\t},\n\tdictWord{135, 11, 1596},\n\tdictWord{7, 11, 1400},\n\tdictWord{9, 11, 446},\n\tdictWord{138, 11, 45},\n\tdictWord{6, 0, 736},\n\tdictWord{138, 10, 106},\n\tdictWord{133, 0, 542},\n\tdictWord{134, 0, 348},\n\tdictWord{133, 0, 868},\n\tdictWord{136, 0, 433},\n\tdictWord{135, 0, 1495},\n\tdictWord{138, 0, 771},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t613,\n\t},\n\tdictWord{136, 10, 223},\n\tdictWord{138, 0, 215},\n\tdictWord{141, 0, 124},\n\tdictWord{136, 11, 391},\n\tdictWord{135, 11, 172},\n\tdictWord{132, 10, 670},\n\tdictWord{140, 0, 55},\n\tdictWord{9, 10, 40},\n\tdictWord{139, 10, 136},\n\tdictWord{7, 0, 62},\n\tdictWord{147, 0, 112},\n\tdictWord{132, 0, 856},\n\tdictWord{132, 11, 568},\n\tdictWord{12, 0, 270},\n\tdictWord{139, 10, 259},\n\tdictWord{8, 0, 572},\n\tdictWord{137, 0, 698},\n\tdictWord{4, 11, 732},\n\tdictWord{9, 10, 310},\n\tdictWord{137, 10, 682},\n\tdictWord{142, 10, 296},\n\tdictWord{134, 0, 939},\n\tdictWord{136, 11, 733},\n\tdictWord{135, 11, 1435},\n\tdictWord{7, 10, 1401},\n\tdictWord{135, 10, 1476},\n\tdictWord{6, 0, 352},\n\tdictWord{4, 10, 296},\n\tdictWord{7, 10, 401},\n\tdictWord{7, 10, 1410},\n\tdictWord{7, 10, 1594},\n\tdictWord{7, 10, 1674},\n\tdictWord{8, 10, 63},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t660,\n\t},\n\tdictWord{137, 10, 74},\n\tdictWord{4, 11, 428},\n\tdictWord{133, 11, 668},\n\tdictWord{4, 10, 139},\n\tdictWord{4, 10, 388},\n\tdictWord{140, 10, 188},\n\tdictWord{7, 11, 2015},\n\tdictWord{140, 11, 665},\n\tdictWord{132, 0, 647},\n\tdictWord{146, 0, 10},\n\tdictWord{138, 0, 220},\n\tdictWord{142, 0, 464},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t109,\n\t},\n\tdictWord{134, 0, 1746},\n\tdictWord{6, 0, 515},\n\tdictWord{4, 10, 747},\n\tdictWord{6, 11, 1623},\n\tdictWord{6, 11, 1681},\n\tdictWord{7, 10, 649},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1479,\n\t},\n\tdictWord{135, 10, 1583},\n\tdictWord{133, 10, 232},\n\tdictWord{135, 0, 566},\n\tdictWord{137, 10, 887},\n\tdictWord{4, 0, 40},\n\tdictWord{10, 0, 67},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t117,\n\t},\n\tdictWord{11, 0, 768},\n\tdictWord{139, 0, 935},\n\tdictWord{132, 0, 801},\n\tdictWord{7, 0, 992},\n\tdictWord{8, 0, 301},\n\tdictWord{9, 0, 722},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t63,\n\t},\n\tdictWord{13, 0, 29},\n\tdictWord{14, 0, 161},\n\tdictWord{143, 0, 18},\n\tdictWord{139, 0, 923},\n\tdictWord{6, 11, 1748},\n\tdictWord{8, 11, 715},\n\tdictWord{9, 11, 802},\n\tdictWord{10, 11, 46},\n\tdictWord{10, 11, 819},\n\tdictWord{13, 11, 308},\n\tdictWord{14, 11, 351},\n\tdictWord{14, 11, 363},\n\tdictWord{146, 11, 67},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t745,\n\t},\n\tdictWord{7, 0, 1145},\n\tdictWord{4, 10, 14},\n\tdictWord{7, 10, 1801},\n\tdictWord{10, 10, 748},\n\tdictWord{141, 10, 458},\n\tdictWord{4, 11, 63},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t347,\n\t},\n\tdictWord{134, 11, 474},\n\tdictWord{135, 0, 568},\n\tdictWord{4, 10, 425},\n\tdictWord{7, 11, 577},\n\tdictWord{7, 11, 1432},\n\tdictWord{9, 11, 475},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t505,\n\t},\n\tdictWord{9, 11, 526},\n\tdictWord{9, 11, 609},\n\tdictWord{9, 11, 689},\n\tdictWord{9, 11, 726},\n\tdictWord{9, 11, 735},\n\tdictWord{9, 11, 738},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t556,\n\t},\n\tdictWord{10, 11, 674},\n\tdictWord{10, 11, 684},\n\tdictWord{11, 11, 89},\n\tdictWord{11, 11, 202},\n\tdictWord{11, 11, 272},\n\tdictWord{11, 11, 380},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t415,\n\t},\n\tdictWord{11, 11, 505},\n\tdictWord{11, 11, 537},\n\tdictWord{11, 11, 550},\n\tdictWord{11, 11, 562},\n\tdictWord{11, 11, 640},\n\tdictWord{11, 11, 667},\n\tdictWord{11, 11, 688},\n\tdictWord{11, 11, 847},\n\tdictWord{11, 11, 927},\n\tdictWord{11, 11, 930},\n\tdictWord{11, 11, 940},\n\tdictWord{12, 11, 144},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t325,\n\t},\n\tdictWord{12, 11, 329},\n\tdictWord{12, 11, 389},\n\tdictWord{12, 11, 403},\n\tdictWord{12, 11, 451},\n\tdictWord{12, 11, 515},\n\tdictWord{12, 11, 604},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t616,\n\t},\n\tdictWord{12, 11, 626},\n\tdictWord{13, 11, 66},\n\tdictWord{13, 11, 131},\n\tdictWord{13, 11, 167},\n\tdictWord{13, 11, 236},\n\tdictWord{13, 11, 368},\n\tdictWord{13, 11, 411},\n\tdictWord{13, 11, 434},\n\tdictWord{13, 11, 453},\n\tdictWord{13, 11, 461},\n\tdictWord{13, 11, 474},\n\tdictWord{14, 11, 59},\n\tdictWord{14, 11, 60},\n\tdictWord{14, 11, 139},\n\tdictWord{14, 11, 152},\n\tdictWord{14, 11, 276},\n\tdictWord{14, 11, 353},\n\tdictWord{14, 11, 402},\n\tdictWord{15, 11, 28},\n\tdictWord{\n\t\t15,\n\t\t11,\n\t\t81,\n\t},\n\tdictWord{15, 11, 123},\n\tdictWord{15, 11, 152},\n\tdictWord{18, 11, 136},\n\tdictWord{148, 11, 88},\n\tdictWord{137, 0, 247},\n\tdictWord{135, 11, 1622},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t544,\n\t},\n\tdictWord{11, 11, 413},\n\tdictWord{144, 11, 25},\n\tdictWord{4, 0, 645},\n\tdictWord{7, 0, 825},\n\tdictWord{6, 10, 1768},\n\tdictWord{135, 11, 89},\n\tdictWord{140, 0, 328},\n\tdictWord{5, 10, 943},\n\tdictWord{134, 10, 1779},\n\tdictWord{134, 0, 1363},\n\tdictWord{5, 10, 245},\n\tdictWord{6, 10, 576},\n\tdictWord{7, 10, 582},\n\tdictWord{136, 10, 225},\n\tdictWord{134, 0, 1280},\n\tdictWord{5, 11, 824},\n\tdictWord{133, 11, 941},\n\tdictWord{7, 11, 440},\n\tdictWord{8, 11, 230},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t106,\n\t},\n\tdictWord{5, 0, 28},\n\tdictWord{6, 0, 204},\n\tdictWord{10, 0, 320},\n\tdictWord{10, 0, 583},\n\tdictWord{13, 0, 502},\n\tdictWord{14, 0, 72},\n\tdictWord{14, 0, 274},\n\tdictWord{14, 0, 312},\n\tdictWord{14, 0, 344},\n\tdictWord{15, 0, 159},\n\tdictWord{16, 0, 62},\n\tdictWord{16, 0, 69},\n\tdictWord{17, 0, 30},\n\tdictWord{18, 0, 42},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t53,\n\t},\n\tdictWord{18, 0, 84},\n\tdictWord{18, 0, 140},\n\tdictWord{19, 0, 68},\n\tdictWord{19, 0, 85},\n\tdictWord{20, 0, 5},\n\tdictWord{20, 0, 45},\n\tdictWord{20, 0, 101},\n\tdictWord{\n\t\t22,\n\t\t0,\n\t\t7,\n\t},\n\tdictWord{150, 0, 20},\n\tdictWord{4, 0, 558},\n\tdictWord{6, 0, 390},\n\tdictWord{7, 0, 162},\n\tdictWord{7, 0, 689},\n\tdictWord{9, 0, 360},\n\tdictWord{138, 0, 653},\n\tdictWord{134, 0, 764},\n\tdictWord{6, 0, 862},\n\tdictWord{137, 0, 833},\n\tdictWord{5, 0, 856},\n\tdictWord{6, 0, 1672},\n\tdictWord{6, 0, 1757},\n\tdictWord{134, 0, 1781},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t92,\n\t},\n\tdictWord{10, 0, 736},\n\tdictWord{140, 0, 102},\n\tdictWord{6, 0, 1927},\n\tdictWord{6, 0, 1944},\n\tdictWord{8, 0, 924},\n\tdictWord{8, 0, 948},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t967,\n\t},\n\tdictWord{138, 0, 978},\n\tdictWord{134, 0, 1479},\n\tdictWord{5, 0, 590},\n\tdictWord{8, 0, 360},\n\tdictWord{9, 0, 213},\n\tdictWord{138, 0, 63},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1521,\n\t},\n\tdictWord{6, 0, 709},\n\tdictWord{134, 0, 891},\n\tdictWord{132, 10, 443},\n\tdictWord{13, 0, 477},\n\tdictWord{14, 0, 120},\n\tdictWord{148, 0, 61},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t914,\n\t},\n\tdictWord{5, 11, 800},\n\tdictWord{133, 11, 852},\n\tdictWord{10, 11, 54},\n\tdictWord{141, 11, 115},\n\tdictWord{4, 11, 918},\n\tdictWord{133, 11, 876},\n\tdictWord{139, 11, 152},\n\tdictWord{4, 11, 92},\n\tdictWord{133, 11, 274},\n\tdictWord{135, 11, 1901},\n\tdictWord{9, 11, 800},\n\tdictWord{10, 11, 693},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t482,\n\t},\n\tdictWord{11, 11, 734},\n\tdictWord{139, 11, 789},\n\tdictWord{9, 0, 483},\n\tdictWord{132, 10, 298},\n\tdictWord{6, 0, 1213},\n\tdictWord{141, 11, 498},\n\tdictWord{135, 11, 1451},\n\tdictWord{133, 11, 743},\n\tdictWord{4, 0, 1022},\n\tdictWord{10, 0, 1000},\n\tdictWord{12, 0, 957},\n\tdictWord{12, 0, 980},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t1013,\n\t},\n\tdictWord{14, 0, 481},\n\tdictWord{144, 0, 116},\n\tdictWord{8, 0, 503},\n\tdictWord{17, 0, 29},\n\tdictWord{4, 11, 49},\n\tdictWord{7, 11, 280},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1633,\n\t},\n\tdictWord{135, 0, 1712},\n\tdictWord{134, 0, 466},\n\tdictWord{136, 11, 47},\n\tdictWord{5, 10, 164},\n\tdictWord{7, 10, 121},\n\tdictWord{142, 10, 189},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t812,\n\t},\n\tdictWord{7, 10, 1261},\n\tdictWord{7, 10, 1360},\n\tdictWord{9, 10, 632},\n\tdictWord{140, 10, 352},\n\tdictWord{139, 10, 556},\n\tdictWord{132, 0, 731},\n\tdictWord{5, 11, 272},\n\tdictWord{5, 11, 908},\n\tdictWord{5, 11, 942},\n\tdictWord{7, 11, 1008},\n\tdictWord{7, 11, 1560},\n\tdictWord{8, 11, 197},\n\tdictWord{9, 11, 47},\n\tdictWord{11, 11, 538},\n\tdictWord{139, 11, 742},\n\tdictWord{4, 10, 172},\n\tdictWord{9, 10, 611},\n\tdictWord{10, 10, 436},\n\tdictWord{12, 10, 673},\n\tdictWord{\n\t\t141,\n\t\t10,\n\t\t255,\n\t},\n\tdictWord{133, 10, 844},\n\tdictWord{10, 0, 484},\n\tdictWord{11, 0, 754},\n\tdictWord{12, 0, 457},\n\tdictWord{14, 0, 171},\n\tdictWord{14, 0, 389},\n\tdictWord{\n\t\t146,\n\t\t0,\n\t\t153,\n\t},\n\tdictWord{9, 10, 263},\n\tdictWord{10, 10, 147},\n\tdictWord{138, 10, 492},\n\tdictWord{137, 11, 891},\n\tdictWord{138, 0, 241},\n\tdictWord{133, 10, 537},\n\tdictWord{6, 0, 2005},\n\tdictWord{136, 0, 964},\n\tdictWord{137, 10, 842},\n\tdictWord{151, 11, 8},\n\tdictWord{4, 11, 407},\n\tdictWord{132, 11, 560},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1884,\n\t},\n\tdictWord{6, 0, 1100},\n\tdictWord{134, 0, 1242},\n\tdictWord{135, 0, 954},\n\tdictWord{5, 10, 230},\n\tdictWord{5, 10, 392},\n\tdictWord{6, 10, 420},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t568,\n\t},\n\tdictWord{140, 10, 612},\n\tdictWord{4, 11, 475},\n\tdictWord{11, 11, 35},\n\tdictWord{11, 11, 90},\n\tdictWord{13, 11, 7},\n\tdictWord{13, 11, 71},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t177,\n\t},\n\tdictWord{142, 11, 422},\n\tdictWord{136, 11, 332},\n\tdictWord{135, 0, 1958},\n\tdictWord{6, 0, 549},\n\tdictWord{8, 0, 34},\n\tdictWord{8, 0, 283},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t165,\n\t},\n\tdictWord{138, 0, 475},\n\tdictWord{10, 0, 952},\n\tdictWord{12, 0, 966},\n\tdictWord{140, 0, 994},\n\tdictWord{5, 0, 652},\n\tdictWord{5, 0, 701},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t449,\n\t},\n\tdictWord{4, 0, 655},\n\tdictWord{7, 0, 850},\n\tdictWord{17, 0, 75},\n\tdictWord{146, 0, 137},\n\tdictWord{4, 0, 146},\n\tdictWord{7, 0, 1618},\n\tdictWord{8, 0, 670},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t41,\n\t},\n\tdictWord{7, 10, 1459},\n\tdictWord{7, 10, 1469},\n\tdictWord{7, 10, 1859},\n\tdictWord{9, 10, 549},\n\tdictWord{139, 10, 905},\n\tdictWord{133, 10, 696},\n\tdictWord{6, 0, 159},\n\tdictWord{6, 0, 364},\n\tdictWord{7, 0, 516},\n\tdictWord{137, 0, 518},\n\tdictWord{135, 0, 1439},\n\tdictWord{6, 11, 222},\n\tdictWord{7, 11, 636},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1620,\n\t},\n\tdictWord{8, 11, 409},\n\tdictWord{9, 11, 693},\n\tdictWord{139, 11, 77},\n\tdictWord{13, 0, 151},\n\tdictWord{141, 11, 45},\n\tdictWord{6, 0, 1027},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t336,\n\t},\n\tdictWord{132, 10, 771},\n\tdictWord{139, 11, 392},\n\tdictWord{10, 11, 121},\n\tdictWord{11, 11, 175},\n\tdictWord{149, 11, 16},\n\tdictWord{8, 0, 950},\n\tdictWord{138, 0, 983},\n\tdictWord{133, 10, 921},\n\tdictWord{135, 0, 993},\n\tdictWord{6, 10, 180},\n\tdictWord{7, 10, 1137},\n\tdictWord{8, 10, 751},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t805,\n\t},\n\tdictWord{7, 0, 501},\n\tdictWord{9, 0, 111},\n\tdictWord{10, 0, 141},\n\tdictWord{11, 0, 332},\n\tdictWord{13, 0, 43},\n\tdictWord{13, 0, 429},\n\tdictWord{14, 0, 130},\n\tdictWord{14, 0, 415},\n\tdictWord{145, 0, 102},\n\tdictWord{4, 10, 183},\n\tdictWord{5, 11, 882},\n\tdictWord{7, 10, 271},\n\tdictWord{11, 10, 824},\n\tdictWord{11, 10, 952},\n\tdictWord{13, 10, 278},\n\tdictWord{13, 10, 339},\n\tdictWord{13, 10, 482},\n\tdictWord{14, 10, 424},\n\tdictWord{148, 10, 99},\n\tdictWord{4, 10, 19},\n\tdictWord{5, 10, 477},\n\tdictWord{5, 10, 596},\n\tdictWord{6, 10, 505},\n\tdictWord{7, 10, 1221},\n\tdictWord{11, 10, 907},\n\tdictWord{12, 10, 209},\n\tdictWord{141, 10, 214},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1215,\n\t},\n\tdictWord{133, 0, 452},\n\tdictWord{132, 11, 426},\n\tdictWord{5, 0, 149},\n\tdictWord{136, 0, 233},\n\tdictWord{133, 0, 935},\n\tdictWord{6, 11, 58},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t654,\n\t},\n\tdictWord{7, 11, 745},\n\tdictWord{7, 11, 1969},\n\tdictWord{8, 11, 240},\n\tdictWord{8, 11, 675},\n\tdictWord{9, 11, 479},\n\tdictWord{9, 11, 731},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t330,\n\t},\n\tdictWord{10, 11, 593},\n\tdictWord{10, 11, 817},\n\tdictWord{11, 11, 32},\n\tdictWord{11, 11, 133},\n\tdictWord{11, 11, 221},\n\tdictWord{145, 11, 68},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t582,\n\t},\n\tdictWord{18, 0, 131},\n\tdictWord{7, 11, 102},\n\tdictWord{137, 11, 538},\n\tdictWord{136, 0, 801},\n\tdictWord{134, 10, 1645},\n\tdictWord{132, 0, 70},\n\tdictWord{6, 10, 92},\n\tdictWord{6, 10, 188},\n\tdictWord{7, 10, 1269},\n\tdictWord{7, 10, 1524},\n\tdictWord{7, 10, 1876},\n\tdictWord{10, 10, 228},\n\tdictWord{139, 10, 1020},\n\tdictWord{4, 10, 459},\n\tdictWord{133, 10, 966},\n\tdictWord{138, 0, 369},\n\tdictWord{16, 0, 36},\n\tdictWord{140, 10, 330},\n\tdictWord{141, 11, 366},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t721,\n\t},\n\tdictWord{10, 0, 236},\n\tdictWord{12, 0, 204},\n\tdictWord{6, 10, 18},\n\tdictWord{7, 10, 932},\n\tdictWord{8, 10, 757},\n\tdictWord{9, 10, 54},\n\tdictWord{9, 10, 65},\n\tdictWord{9, 10, 844},\n\tdictWord{10, 10, 113},\n\tdictWord{10, 10, 315},\n\tdictWord{10, 10, 798},\n\tdictWord{11, 10, 153},\n\tdictWord{12, 10, 151},\n\tdictWord{12, 10, 392},\n\tdictWord{12, 10, 666},\n\tdictWord{142, 10, 248},\n\tdictWord{7, 0, 241},\n\tdictWord{10, 0, 430},\n\tdictWord{8, 10, 548},\n\tdictWord{9, 10, 532},\n\tdictWord{10, 10, 117},\n\tdictWord{11, 10, 351},\n\tdictWord{11, 10, 375},\n\tdictWord{143, 10, 23},\n\tdictWord{134, 10, 1742},\n\tdictWord{133, 10, 965},\n\tdictWord{133, 11, 566},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t48,\n\t},\n\tdictWord{135, 11, 63},\n\tdictWord{134, 10, 182},\n\tdictWord{10, 10, 65},\n\tdictWord{10, 10, 488},\n\tdictWord{138, 10, 497},\n\tdictWord{6, 11, 114},\n\tdictWord{7, 11, 1224},\n\tdictWord{7, 11, 1556},\n\tdictWord{136, 11, 3},\n\tdictWord{134, 0, 1817},\n\tdictWord{8, 11, 576},\n\tdictWord{137, 11, 267},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1078,\n\t},\n\tdictWord{144, 0, 16},\n\tdictWord{9, 10, 588},\n\tdictWord{138, 10, 260},\n\tdictWord{138, 0, 1021},\n\tdictWord{5, 0, 406},\n\tdictWord{134, 0, 2022},\n\tdictWord{133, 11, 933},\n\tdictWord{6, 0, 69},\n\tdictWord{135, 0, 117},\n\tdictWord{7, 0, 1830},\n\tdictWord{136, 11, 427},\n\tdictWord{4, 0, 432},\n\tdictWord{135, 0, 824},\n\tdictWord{134, 10, 1786},\n\tdictWord{133, 0, 826},\n\tdictWord{139, 11, 67},\n\tdictWord{133, 11, 759},\n\tdictWord{135, 10, 308},\n\tdictWord{137, 0, 816},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t1000,\n\t},\n\tdictWord{4, 0, 297},\n\tdictWord{6, 0, 529},\n\tdictWord{7, 0, 152},\n\tdictWord{7, 0, 713},\n\tdictWord{7, 0, 1845},\n\tdictWord{8, 0, 710},\n\tdictWord{8, 0, 717},\n\tdictWord{12, 0, 639},\n\tdictWord{140, 0, 685},\n\tdictWord{7, 0, 423},\n\tdictWord{136, 10, 588},\n\tdictWord{136, 10, 287},\n\tdictWord{136, 0, 510},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1048,\n\t},\n\tdictWord{6, 0, 618},\n\tdictWord{7, 11, 56},\n\tdictWord{7, 11, 1989},\n\tdictWord{8, 11, 337},\n\tdictWord{8, 11, 738},\n\tdictWord{9, 11, 600},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t483,\n\t},\n\tdictWord{12, 11, 37},\n\tdictWord{13, 11, 447},\n\tdictWord{142, 11, 92},\n\tdictWord{4, 0, 520},\n\tdictWord{135, 0, 575},\n\tdictWord{8, 0, 990},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t977,\n\t},\n\tdictWord{135, 11, 774},\n\tdictWord{9, 11, 347},\n\tdictWord{11, 11, 24},\n\tdictWord{140, 11, 170},\n\tdictWord{136, 11, 379},\n\tdictWord{140, 10, 290},\n\tdictWord{132, 11, 328},\n\tdictWord{4, 0, 321},\n\tdictWord{134, 0, 569},\n\tdictWord{4, 11, 101},\n\tdictWord{135, 11, 1171},\n\tdictWord{7, 0, 723},\n\tdictWord{7, 0, 1135},\n\tdictWord{5, 11, 833},\n\tdictWord{136, 11, 744},\n\tdictWord{7, 10, 719},\n\tdictWord{8, 10, 809},\n\tdictWord{136, 10, 834},\n\tdictWord{8, 0, 921},\n\tdictWord{136, 10, 796},\n\tdictWord{5, 10, 210},\n\tdictWord{6, 10, 213},\n\tdictWord{7, 10, 60},\n\tdictWord{10, 10, 364},\n\tdictWord{139, 10, 135},\n\tdictWord{5, 0, 397},\n\tdictWord{6, 0, 154},\n\tdictWord{7, 0, 676},\n\tdictWord{8, 0, 443},\n\tdictWord{8, 0, 609},\n\tdictWord{9, 0, 24},\n\tdictWord{9, 0, 325},\n\tdictWord{10, 0, 35},\n\tdictWord{11, 0, 535},\n\tdictWord{11, 0, 672},\n\tdictWord{11, 0, 1018},\n\tdictWord{12, 0, 637},\n\tdictWord{16, 0, 30},\n\tdictWord{5, 10, 607},\n\tdictWord{8, 10, 326},\n\tdictWord{136, 10, 490},\n\tdictWord{4, 10, 701},\n\tdictWord{5, 10, 472},\n\tdictWord{6, 11, 9},\n\tdictWord{6, 11, 397},\n\tdictWord{7, 11, 53},\n\tdictWord{7, 11, 1742},\n\tdictWord{9, 10, 758},\n\tdictWord{10, 11, 632},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t828,\n\t},\n\tdictWord{140, 11, 146},\n\tdictWord{135, 10, 380},\n\tdictWord{135, 10, 1947},\n\tdictWord{148, 11, 109},\n\tdictWord{10, 10, 278},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t278,\n\t},\n\tdictWord{134, 0, 856},\n\tdictWord{7, 0, 139},\n\tdictWord{4, 10, 386},\n\tdictWord{8, 10, 405},\n\tdictWord{8, 10, 728},\n\tdictWord{9, 10, 497},\n\tdictWord{\n\t\t11,\n\t\t10,\n\t\t110,\n\t},\n\tdictWord{11, 10, 360},\n\tdictWord{15, 10, 37},\n\tdictWord{144, 10, 84},\n\tdictWord{141, 0, 282},\n\tdictWord{133, 0, 981},\n\tdictWord{5, 0, 288},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1452,\n\t},\n\tdictWord{7, 10, 1480},\n\tdictWord{8, 10, 634},\n\tdictWord{140, 10, 472},\n\tdictWord{7, 0, 1890},\n\tdictWord{8, 11, 367},\n\tdictWord{10, 11, 760},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t79,\n\t},\n\tdictWord{20, 11, 17},\n\tdictWord{152, 11, 0},\n\tdictWord{4, 10, 524},\n\tdictWord{136, 10, 810},\n\tdictWord{4, 0, 56},\n\tdictWord{7, 0, 1791},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t607,\n\t},\n\tdictWord{8, 0, 651},\n\tdictWord{11, 0, 465},\n\tdictWord{11, 0, 835},\n\tdictWord{12, 0, 337},\n\tdictWord{141, 0, 480},\n\tdictWord{10, 10, 238},\n\tdictWord{\n\t\t141,\n\t\t10,\n\t\t33,\n\t},\n\tdictWord{11, 11, 417},\n\tdictWord{12, 11, 223},\n\tdictWord{140, 11, 265},\n\tdictWord{9, 0, 158},\n\tdictWord{10, 0, 411},\n\tdictWord{140, 0, 261},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t532,\n\t},\n\tdictWord{133, 10, 997},\n\tdictWord{12, 11, 186},\n\tdictWord{12, 11, 292},\n\tdictWord{14, 11, 100},\n\tdictWord{146, 11, 70},\n\tdictWord{6, 0, 1403},\n\tdictWord{136, 0, 617},\n\tdictWord{134, 0, 1205},\n\tdictWord{139, 0, 563},\n\tdictWord{4, 0, 242},\n\tdictWord{134, 0, 333},\n\tdictWord{4, 11, 186},\n\tdictWord{5, 11, 157},\n\tdictWord{8, 11, 168},\n\tdictWord{138, 11, 6},\n\tdictWord{132, 0, 369},\n\tdictWord{133, 11, 875},\n\tdictWord{5, 10, 782},\n\tdictWord{5, 10, 829},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1738,\n\t},\n\tdictWord{134, 0, 622},\n\tdictWord{135, 11, 1272},\n\tdictWord{6, 0, 1407},\n\tdictWord{7, 11, 111},\n\tdictWord{136, 11, 581},\n\tdictWord{7, 10, 1823},\n\tdictWord{139, 10, 693},\n\tdictWord{7, 0, 160},\n\tdictWord{10, 0, 624},\n\tdictWord{142, 0, 279},\n\tdictWord{132, 0, 363},\n\tdictWord{10, 11, 589},\n\tdictWord{12, 11, 111},\n\tdictWord{13, 11, 260},\n\tdictWord{14, 11, 82},\n\tdictWord{18, 11, 63},\n\tdictWord{147, 11, 45},\n\tdictWord{7, 11, 1364},\n\tdictWord{7, 11, 1907},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t158,\n\t},\n\tdictWord{4, 11, 404},\n\tdictWord{4, 11, 659},\n\tdictWord{135, 11, 675},\n\tdictWord{13, 11, 211},\n\tdictWord{14, 11, 133},\n\tdictWord{14, 11, 204},\n\tdictWord{\n\t\t15,\n\t\t11,\n\t\t64,\n\t},\n\tdictWord{15, 11, 69},\n\tdictWord{15, 11, 114},\n\tdictWord{16, 11, 10},\n\tdictWord{19, 11, 23},\n\tdictWord{19, 11, 35},\n\tdictWord{19, 11, 39},\n\tdictWord{\n\t\t19,\n\t\t11,\n\t\t51,\n\t},\n\tdictWord{19, 11, 71},\n\tdictWord{19, 11, 75},\n\tdictWord{152, 11, 15},\n\tdictWord{4, 10, 78},\n\tdictWord{5, 10, 96},\n\tdictWord{5, 10, 182},\n\tdictWord{7, 10, 1724},\n\tdictWord{7, 10, 1825},\n\tdictWord{10, 10, 394},\n\tdictWord{10, 10, 471},\n\tdictWord{11, 10, 532},\n\tdictWord{14, 10, 340},\n\tdictWord{145, 10, 88},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t1964,\n\t},\n\tdictWord{133, 11, 391},\n\tdictWord{11, 11, 887},\n\tdictWord{14, 11, 365},\n\tdictWord{142, 11, 375},\n\tdictWord{5, 11, 540},\n\tdictWord{6, 11, 1697},\n\tdictWord{7, 11, 222},\n\tdictWord{136, 11, 341},\n\tdictWord{134, 11, 78},\n\tdictWord{9, 0, 601},\n\tdictWord{9, 0, 619},\n\tdictWord{10, 0, 505},\n\tdictWord{10, 0, 732},\n\tdictWord{11, 0, 355},\n\tdictWord{140, 0, 139},\n\tdictWord{134, 0, 292},\n\tdictWord{139, 0, 174},\n\tdictWord{5, 0, 177},\n\tdictWord{6, 0, 616},\n\tdictWord{7, 0, 827},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t525,\n\t},\n\tdictWord{138, 0, 656},\n\tdictWord{10, 0, 31},\n\tdictWord{6, 10, 215},\n\tdictWord{7, 10, 1028},\n\tdictWord{7, 10, 1473},\n\tdictWord{7, 10, 1721},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t424,\n\t},\n\tdictWord{138, 10, 779},\n\tdictWord{135, 10, 584},\n\tdictWord{136, 11, 293},\n\tdictWord{134, 0, 685},\n\tdictWord{135, 11, 1868},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t460,\n\t},\n\tdictWord{7, 0, 647},\n\tdictWord{6, 10, 67},\n\tdictWord{7, 10, 1630},\n\tdictWord{9, 10, 354},\n\tdictWord{9, 10, 675},\n\tdictWord{10, 10, 830},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t80,\n\t},\n\tdictWord{145, 10, 80},\n\tdictWord{4, 0, 161},\n\tdictWord{133, 0, 631},\n\tdictWord{6, 10, 141},\n\tdictWord{7, 10, 225},\n\tdictWord{9, 10, 59},\n\tdictWord{9, 10, 607},\n\tdictWord{10, 10, 312},\n\tdictWord{11, 10, 687},\n\tdictWord{12, 10, 555},\n\tdictWord{13, 10, 373},\n\tdictWord{13, 10, 494},\n\tdictWord{148, 10, 58},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t965,\n\t},\n\tdictWord{7, 11, 1460},\n\tdictWord{135, 11, 1604},\n\tdictWord{136, 10, 783},\n\tdictWord{134, 11, 388},\n\tdictWord{6, 0, 722},\n\tdictWord{6, 0, 1267},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t511,\n\t},\n\tdictWord{9, 11, 333},\n\tdictWord{9, 11, 379},\n\tdictWord{10, 11, 602},\n\tdictWord{11, 11, 441},\n\tdictWord{11, 11, 723},\n\tdictWord{11, 11, 976},\n\tdictWord{140, 11, 357},\n\tdictWord{134, 0, 1797},\n\tdictWord{135, 0, 1684},\n\tdictWord{9, 0, 469},\n\tdictWord{9, 0, 709},\n\tdictWord{12, 0, 512},\n\tdictWord{14, 0, 65},\n\tdictWord{17, 0, 12},\n\tdictWord{5, 11, 938},\n\tdictWord{136, 11, 707},\n\tdictWord{7, 0, 1230},\n\tdictWord{136, 0, 531},\n\tdictWord{10, 0, 229},\n\tdictWord{11, 0, 73},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t376,\n\t},\n\tdictWord{139, 0, 433},\n\tdictWord{12, 0, 268},\n\tdictWord{12, 0, 640},\n\tdictWord{142, 0, 119},\n\tdictWord{7, 10, 430},\n\tdictWord{139, 10, 46},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t558,\n\t},\n\tdictWord{7, 0, 651},\n\tdictWord{8, 0, 421},\n\tdictWord{9, 0, 0},\n\tdictWord{10, 0, 34},\n\tdictWord{139, 0, 1008},\n\tdictWord{6, 0, 106},\n\tdictWord{7, 0, 1786},\n\tdictWord{7, 0, 1821},\n\tdictWord{9, 0, 102},\n\tdictWord{9, 0, 763},\n\tdictWord{5, 10, 602},\n\tdictWord{7, 10, 2018},\n\tdictWord{137, 10, 418},\n\tdictWord{5, 0, 65},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t416,\n\t},\n\tdictWord{7, 0, 1720},\n\tdictWord{7, 0, 1924},\n\tdictWord{10, 0, 109},\n\tdictWord{11, 0, 14},\n\tdictWord{11, 0, 70},\n\tdictWord{11, 0, 569},\n\tdictWord{11, 0, 735},\n\tdictWord{15, 0, 153},\n\tdictWord{20, 0, 80},\n\tdictWord{136, 10, 677},\n\tdictWord{135, 11, 1625},\n\tdictWord{137, 11, 772},\n\tdictWord{136, 0, 595},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t469,\n\t},\n\tdictWord{7, 11, 1709},\n\tdictWord{138, 11, 515},\n\tdictWord{7, 0, 1832},\n\tdictWord{138, 0, 374},\n\tdictWord{9, 0, 106},\n\tdictWord{9, 0, 163},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t296,\n\t},\n\tdictWord{10, 0, 167},\n\tdictWord{10, 0, 172},\n\tdictWord{10, 0, 777},\n\tdictWord{139, 0, 16},\n\tdictWord{6, 0, 6},\n\tdictWord{7, 0, 81},\n\tdictWord{7, 0, 771},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1731,\n\t},\n\tdictWord{9, 0, 405},\n\tdictWord{138, 0, 421},\n\tdictWord{4, 11, 500},\n\tdictWord{135, 11, 938},\n\tdictWord{5, 11, 68},\n\tdictWord{134, 11, 383},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t881,\n\t},\n\tdictWord{133, 0, 885},\n\tdictWord{6, 0, 854},\n\tdictWord{6, 0, 1132},\n\tdictWord{6, 0, 1495},\n\tdictWord{6, 0, 1526},\n\tdictWord{6, 0, 1533},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1577,\n\t},\n\tdictWord{4, 11, 337},\n\tdictWord{6, 11, 353},\n\tdictWord{7, 11, 1934},\n\tdictWord{8, 11, 488},\n\tdictWord{137, 11, 429},\n\tdictWord{7, 11, 236},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1795,\n\t},\n\tdictWord{8, 11, 259},\n\tdictWord{9, 11, 135},\n\tdictWord{9, 11, 177},\n\tdictWord{10, 11, 825},\n\tdictWord{11, 11, 115},\n\tdictWord{11, 11, 370},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t405,\n\t},\n\tdictWord{11, 11, 604},\n\tdictWord{12, 11, 10},\n\tdictWord{12, 11, 667},\n\tdictWord{12, 11, 669},\n\tdictWord{13, 11, 76},\n\tdictWord{14, 11, 310},\n\tdictWord{15, 11, 76},\n\tdictWord{15, 11, 147},\n\tdictWord{148, 11, 23},\n\tdictWord{5, 0, 142},\n\tdictWord{134, 0, 546},\n\tdictWord{4, 11, 15},\n\tdictWord{5, 11, 22},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t244,\n\t},\n\tdictWord{7, 11, 40},\n\tdictWord{7, 11, 200},\n\tdictWord{7, 11, 906},\n\tdictWord{7, 11, 1199},\n\tdictWord{9, 11, 616},\n\tdictWord{10, 11, 716},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t635,\n\t},\n\tdictWord{11, 11, 801},\n\tdictWord{140, 11, 458},\n\tdictWord{5, 0, 466},\n\tdictWord{11, 0, 571},\n\tdictWord{12, 0, 198},\n\tdictWord{13, 0, 283},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t186,\n\t},\n\tdictWord{15, 0, 21},\n\tdictWord{15, 0, 103},\n\tdictWord{135, 10, 329},\n\tdictWord{4, 0, 185},\n\tdictWord{5, 0, 257},\n\tdictWord{5, 0, 839},\n\tdictWord{5, 0, 936},\n\tdictWord{9, 0, 399},\n\tdictWord{10, 0, 258},\n\tdictWord{10, 0, 395},\n\tdictWord{10, 0, 734},\n\tdictWord{11, 0, 1014},\n\tdictWord{12, 0, 23},\n\tdictWord{13, 0, 350},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t150,\n\t},\n\tdictWord{19, 0, 6},\n\tdictWord{135, 11, 1735},\n\tdictWord{12, 11, 36},\n\tdictWord{141, 11, 337},\n\tdictWord{5, 11, 598},\n\tdictWord{7, 11, 791},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t108,\n\t},\n\tdictWord{137, 11, 123},\n\tdictWord{132, 10, 469},\n\tdictWord{7, 0, 404},\n\tdictWord{7, 0, 1377},\n\tdictWord{7, 0, 1430},\n\tdictWord{7, 0, 2017},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t149,\n\t},\n\tdictWord{8, 0, 239},\n\tdictWord{8, 0, 512},\n\tdictWord{8, 0, 793},\n\tdictWord{8, 0, 818},\n\tdictWord{9, 0, 474},\n\tdictWord{9, 0, 595},\n\tdictWord{10, 0, 122},\n\tdictWord{10, 0, 565},\n\tdictWord{10, 0, 649},\n\tdictWord{10, 0, 783},\n\tdictWord{11, 0, 239},\n\tdictWord{11, 0, 295},\n\tdictWord{11, 0, 447},\n\tdictWord{11, 0, 528},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t639,\n\t},\n\tdictWord{11, 0, 800},\n\tdictWord{12, 0, 25},\n\tdictWord{12, 0, 77},\n\tdictWord{12, 0, 157},\n\tdictWord{12, 0, 256},\n\tdictWord{12, 0, 316},\n\tdictWord{12, 0, 390},\n\tdictWord{12, 0, 391},\n\tdictWord{12, 0, 395},\n\tdictWord{12, 0, 478},\n\tdictWord{12, 0, 503},\n\tdictWord{12, 0, 592},\n\tdictWord{12, 0, 680},\n\tdictWord{13, 0, 50},\n\tdictWord{13, 0, 53},\n\tdictWord{13, 0, 132},\n\tdictWord{13, 0, 198},\n\tdictWord{13, 0, 322},\n\tdictWord{13, 0, 415},\n\tdictWord{13, 0, 511},\n\tdictWord{14, 0, 71},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t395,\n\t},\n\tdictWord{15, 0, 71},\n\tdictWord{15, 0, 136},\n\tdictWord{17, 0, 123},\n\tdictWord{18, 0, 93},\n\tdictWord{147, 0, 58},\n\tdictWord{136, 0, 712},\n\tdictWord{\n\t\t134,\n\t\t10,\n\t\t1743,\n\t},\n\tdictWord{5, 10, 929},\n\tdictWord{6, 10, 340},\n\tdictWord{8, 10, 376},\n\tdictWord{136, 10, 807},\n\tdictWord{6, 0, 1848},\n\tdictWord{8, 0, 860},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t856,\n\t},\n\tdictWord{10, 0, 859},\n\tdictWord{10, 0, 925},\n\tdictWord{10, 0, 941},\n\tdictWord{140, 0, 762},\n\tdictWord{6, 0, 629},\n\tdictWord{6, 0, 906},\n\tdictWord{9, 0, 810},\n\tdictWord{140, 0, 652},\n\tdictWord{5, 10, 218},\n\tdictWord{7, 10, 1610},\n\tdictWord{138, 10, 83},\n\tdictWord{7, 10, 1512},\n\tdictWord{135, 10, 1794},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t377,\n\t},\n\tdictWord{24, 0, 13},\n\tdictWord{4, 11, 155},\n\tdictWord{7, 11, 1689},\n\tdictWord{11, 10, 0},\n\tdictWord{144, 10, 78},\n\tdictWord{4, 11, 164},\n\tdictWord{5, 11, 151},\n\tdictWord{5, 11, 730},\n\tdictWord{5, 11, 741},\n\tdictWord{7, 11, 498},\n\tdictWord{7, 11, 870},\n\tdictWord{7, 11, 1542},\n\tdictWord{12, 11, 213},\n\tdictWord{14, 11, 36},\n\tdictWord{14, 11, 391},\n\tdictWord{17, 11, 111},\n\tdictWord{18, 11, 6},\n\tdictWord{18, 11, 46},\n\tdictWord{18, 11, 151},\n\tdictWord{19, 11, 36},\n\tdictWord{20, 11, 32},\n\tdictWord{20, 11, 56},\n\tdictWord{20, 11, 69},\n\tdictWord{20, 11, 102},\n\tdictWord{21, 11, 4},\n\tdictWord{22, 11, 8},\n\tdictWord{22, 11, 10},\n\tdictWord{22, 11, 14},\n\tdictWord{\n\t\t150,\n\t\t11,\n\t\t31,\n\t},\n\tdictWord{7, 0, 1842},\n\tdictWord{133, 10, 571},\n\tdictWord{4, 10, 455},\n\tdictWord{4, 11, 624},\n\tdictWord{135, 11, 1752},\n\tdictWord{134, 0, 1501},\n\tdictWord{4, 11, 492},\n\tdictWord{5, 11, 451},\n\tdictWord{6, 10, 161},\n\tdictWord{7, 10, 372},\n\tdictWord{137, 10, 597},\n\tdictWord{132, 10, 349},\n\tdictWord{4, 0, 180},\n\tdictWord{135, 0, 1906},\n\tdictWord{135, 11, 835},\n\tdictWord{141, 11, 70},\n\tdictWord{132, 0, 491},\n\tdictWord{137, 10, 751},\n\tdictWord{6, 10, 432},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t322,\n\t},\n\tdictWord{4, 0, 171},\n\tdictWord{138, 0, 234},\n\tdictWord{6, 11, 113},\n\tdictWord{135, 11, 436},\n\tdictWord{4, 0, 586},\n\tdictWord{7, 0, 1186},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t631,\n\t},\n\tdictWord{5, 10, 468},\n\tdictWord{10, 10, 325},\n\tdictWord{11, 10, 856},\n\tdictWord{12, 10, 345},\n\tdictWord{143, 10, 104},\n\tdictWord{5, 10, 223},\n\tdictWord{10, 11, 592},\n\tdictWord{10, 11, 753},\n\tdictWord{12, 11, 317},\n\tdictWord{12, 11, 355},\n\tdictWord{12, 11, 465},\n\tdictWord{12, 11, 469},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t560,\n\t},\n\tdictWord{12, 11, 578},\n\tdictWord{141, 11, 243},\n\tdictWord{132, 10, 566},\n\tdictWord{135, 11, 520},\n\tdictWord{4, 10, 59},\n\tdictWord{135, 10, 1394},\n\tdictWord{6, 10, 436},\n\tdictWord{139, 10, 481},\n\tdictWord{9, 0, 931},\n\tdictWord{10, 0, 334},\n\tdictWord{20, 0, 71},\n\tdictWord{4, 10, 48},\n\tdictWord{5, 10, 271},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t953,\n\t},\n\tdictWord{135, 11, 1878},\n\tdictWord{11, 0, 170},\n\tdictWord{5, 10, 610},\n\tdictWord{136, 10, 457},\n\tdictWord{133, 10, 755},\n\tdictWord{6, 0, 1587},\n\tdictWord{135, 10, 1217},\n\tdictWord{4, 10, 197},\n\tdictWord{149, 11, 26},\n\tdictWord{133, 11, 585},\n\tdictWord{137, 11, 521},\n\tdictWord{133, 0, 765},\n\tdictWord{\n\t\t133,\n\t\t10,\n\t\t217,\n\t},\n\tdictWord{139, 11, 586},\n\tdictWord{133, 0, 424},\n\tdictWord{9, 11, 752},\n\tdictWord{12, 11, 610},\n\tdictWord{13, 11, 431},\n\tdictWord{16, 11, 59},\n\tdictWord{146, 11, 109},\n\tdictWord{136, 0, 714},\n\tdictWord{7, 0, 685},\n\tdictWord{132, 11, 307},\n\tdictWord{9, 0, 420},\n\tdictWord{10, 0, 269},\n\tdictWord{10, 0, 285},\n\tdictWord{10, 0, 576},\n\tdictWord{11, 0, 397},\n\tdictWord{13, 0, 175},\n\tdictWord{145, 0, 90},\n\tdictWord{132, 0, 429},\n\tdictWord{133, 11, 964},\n\tdictWord{9, 11, 463},\n\tdictWord{138, 11, 595},\n\tdictWord{7, 0, 18},\n\tdictWord{7, 0, 699},\n\tdictWord{7, 0, 1966},\n\tdictWord{8, 0, 752},\n\tdictWord{9, 0, 273},\n\tdictWord{9, 0, 412},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t703,\n\t},\n\tdictWord{10, 0, 71},\n\tdictWord{10, 0, 427},\n\tdictWord{138, 0, 508},\n\tdictWord{4, 10, 165},\n\tdictWord{7, 10, 1398},\n\tdictWord{135, 10, 1829},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t53,\n\t},\n\tdictWord{5, 0, 186},\n\tdictWord{7, 0, 752},\n\tdictWord{7, 0, 828},\n\tdictWord{142, 0, 116},\n\tdictWord{8, 0, 575},\n\tdictWord{10, 0, 289},\n\tdictWord{139, 0, 319},\n\tdictWord{132, 0, 675},\n\tdictWord{134, 0, 1424},\n\tdictWord{4, 11, 75},\n\tdictWord{5, 11, 180},\n\tdictWord{6, 11, 500},\n\tdictWord{7, 11, 58},\n\tdictWord{7, 11, 710},\n\tdictWord{138, 11, 645},\n\tdictWord{133, 11, 649},\n\tdictWord{6, 11, 276},\n\tdictWord{7, 11, 282},\n\tdictWord{7, 11, 879},\n\tdictWord{7, 11, 924},\n\tdictWord{8, 11, 459},\n\tdictWord{9, 11, 599},\n\tdictWord{9, 11, 754},\n\tdictWord{11, 11, 574},\n\tdictWord{12, 11, 128},\n\tdictWord{12, 11, 494},\n\tdictWord{13, 11, 52},\n\tdictWord{13, 11, 301},\n\tdictWord{15, 11, 30},\n\tdictWord{143, 11, 132},\n\tdictWord{6, 0, 647},\n\tdictWord{134, 0, 1095},\n\tdictWord{5, 10, 9},\n\tdictWord{7, 10, 297},\n\tdictWord{7, 10, 966},\n\tdictWord{140, 10, 306},\n\tdictWord{132, 11, 200},\n\tdictWord{134, 0, 1334},\n\tdictWord{5, 10, 146},\n\tdictWord{6, 10, 411},\n\tdictWord{138, 10, 721},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t209,\n\t},\n\tdictWord{6, 0, 1141},\n\tdictWord{6, 0, 1288},\n\tdictWord{8, 0, 468},\n\tdictWord{9, 0, 210},\n\tdictWord{11, 0, 36},\n\tdictWord{12, 0, 28},\n\tdictWord{12, 0, 630},\n\tdictWord{13, 0, 21},\n\tdictWord{13, 0, 349},\n\tdictWord{14, 0, 7},\n\tdictWord{145, 0, 13},\n\tdictWord{6, 10, 177},\n\tdictWord{135, 10, 467},\n\tdictWord{4, 0, 342},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1179,\n\t},\n\tdictWord{10, 11, 454},\n\tdictWord{140, 11, 324},\n\tdictWord{4, 0, 928},\n\tdictWord{133, 0, 910},\n\tdictWord{7, 0, 1838},\n\tdictWord{6, 11, 225},\n\tdictWord{\n\t\t137,\n\t\t11,\n\t\t211,\n\t},\n\tdictWord{16, 0, 101},\n\tdictWord{20, 0, 115},\n\tdictWord{20, 0, 118},\n\tdictWord{148, 0, 122},\n\tdictWord{4, 0, 496},\n\tdictWord{135, 0, 856},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t318,\n\t},\n\tdictWord{11, 0, 654},\n\tdictWord{7, 11, 718},\n\tdictWord{139, 11, 102},\n\tdictWord{8, 11, 58},\n\tdictWord{9, 11, 724},\n\tdictWord{11, 11, 809},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t113,\n\t},\n\tdictWord{145, 11, 72},\n\tdictWord{5, 10, 200},\n\tdictWord{6, 11, 345},\n\tdictWord{135, 11, 1247},\n\tdictWord{8, 11, 767},\n\tdictWord{8, 11, 803},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t301,\n\t},\n\tdictWord{137, 11, 903},\n\tdictWord{7, 0, 915},\n\tdictWord{8, 0, 247},\n\tdictWord{19, 0, 0},\n\tdictWord{7, 11, 1949},\n\tdictWord{136, 11, 674},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t202,\n\t},\n\tdictWord{5, 0, 382},\n\tdictWord{6, 0, 454},\n\tdictWord{7, 0, 936},\n\tdictWord{7, 0, 1803},\n\tdictWord{8, 0, 758},\n\tdictWord{9, 0, 375},\n\tdictWord{9, 0, 895},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t743,\n\t},\n\tdictWord{10, 0, 792},\n\tdictWord{11, 0, 978},\n\tdictWord{11, 0, 1012},\n\tdictWord{142, 0, 109},\n\tdictWord{7, 0, 1150},\n\tdictWord{7, 0, 1425},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1453,\n\t},\n\tdictWord{140, 0, 513},\n\tdictWord{134, 11, 259},\n\tdictWord{138, 0, 791},\n\tdictWord{11, 0, 821},\n\tdictWord{12, 0, 110},\n\tdictWord{12, 0, 153},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t41,\n\t},\n\tdictWord{150, 0, 19},\n\tdictWord{134, 10, 481},\n\tdictWord{132, 0, 796},\n\tdictWord{6, 0, 445},\n\tdictWord{9, 0, 909},\n\tdictWord{136, 11, 254},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t776,\n\t},\n\tdictWord{13, 0, 345},\n\tdictWord{142, 0, 425},\n\tdictWord{4, 10, 84},\n\tdictWord{7, 10, 1482},\n\tdictWord{10, 10, 76},\n\tdictWord{138, 10, 142},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t742,\n\t},\n\tdictWord{6, 0, 578},\n\tdictWord{133, 10, 1015},\n\tdictWord{6, 0, 1387},\n\tdictWord{4, 10, 315},\n\tdictWord{5, 10, 507},\n\tdictWord{135, 10, 1370},\n\tdictWord{4, 0, 438},\n\tdictWord{133, 0, 555},\n\tdictWord{136, 0, 766},\n\tdictWord{133, 11, 248},\n\tdictWord{134, 10, 1722},\n\tdictWord{4, 11, 116},\n\tdictWord{5, 11, 95},\n\tdictWord{5, 11, 445},\n\tdictWord{7, 11, 1688},\n\tdictWord{8, 11, 29},\n\tdictWord{9, 11, 272},\n\tdictWord{11, 11, 509},\n\tdictWord{139, 11, 915},\n\tdictWord{135, 0, 541},\n\tdictWord{133, 11, 543},\n\tdictWord{8, 10, 222},\n\tdictWord{8, 10, 476},\n\tdictWord{9, 10, 238},\n\tdictWord{11, 10, 516},\n\tdictWord{11, 10, 575},\n\tdictWord{\n\t\t15,\n\t\t10,\n\t\t109,\n\t},\n\tdictWord{146, 10, 100},\n\tdictWord{6, 0, 880},\n\tdictWord{134, 0, 1191},\n\tdictWord{5, 11, 181},\n\tdictWord{136, 11, 41},\n\tdictWord{134, 0, 1506},\n\tdictWord{132, 11, 681},\n\tdictWord{7, 11, 25},\n\tdictWord{8, 11, 202},\n\tdictWord{138, 11, 536},\n\tdictWord{139, 0, 983},\n\tdictWord{137, 0, 768},\n\tdictWord{132, 0, 584},\n\tdictWord{9, 11, 423},\n\tdictWord{140, 11, 89},\n\tdictWord{8, 11, 113},\n\tdictWord{9, 11, 877},\n\tdictWord{10, 11, 554},\n\tdictWord{11, 11, 83},\n\tdictWord{12, 11, 136},\n\tdictWord{147, 11, 109},\n\tdictWord{7, 10, 706},\n\tdictWord{7, 10, 1058},\n\tdictWord{138, 10, 538},\n\tdictWord{133, 11, 976},\n\tdictWord{4, 11, 206},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t746,\n\t},\n\tdictWord{136, 11, 526},\n\tdictWord{140, 0, 737},\n\tdictWord{11, 10, 92},\n\tdictWord{11, 10, 196},\n\tdictWord{11, 10, 409},\n\tdictWord{11, 10, 450},\n\tdictWord{11, 10, 666},\n\tdictWord{11, 10, 777},\n\tdictWord{12, 10, 262},\n\tdictWord{13, 10, 385},\n\tdictWord{13, 10, 393},\n\tdictWord{15, 10, 115},\n\tdictWord{\n\t\t16,\n\t\t10,\n\t\t45,\n\t},\n\tdictWord{145, 10, 82},\n\tdictWord{4, 0, 226},\n\tdictWord{4, 0, 326},\n\tdictWord{7, 0, 1770},\n\tdictWord{4, 11, 319},\n\tdictWord{5, 11, 699},\n\tdictWord{138, 11, 673},\n\tdictWord{6, 10, 40},\n\tdictWord{135, 10, 1781},\n\tdictWord{5, 0, 426},\n\tdictWord{8, 0, 30},\n\tdictWord{9, 0, 2},\n\tdictWord{11, 0, 549},\n\tdictWord{147, 0, 122},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1161,\n\t},\n\tdictWord{134, 0, 1329},\n\tdictWord{138, 10, 97},\n\tdictWord{6, 10, 423},\n\tdictWord{7, 10, 665},\n\tdictWord{135, 10, 1210},\n\tdictWord{7, 11, 13},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t226,\n\t},\n\tdictWord{10, 11, 537},\n\tdictWord{11, 11, 570},\n\tdictWord{11, 11, 605},\n\tdictWord{11, 11, 799},\n\tdictWord{11, 11, 804},\n\tdictWord{12, 11, 85},\n\tdictWord{12, 11, 516},\n\tdictWord{12, 11, 623},\n\tdictWord{13, 11, 112},\n\tdictWord{13, 11, 361},\n\tdictWord{14, 11, 77},\n\tdictWord{14, 11, 78},\n\tdictWord{17, 11, 28},\n\tdictWord{147, 11, 110},\n\tdictWord{132, 11, 769},\n\tdictWord{132, 11, 551},\n\tdictWord{132, 11, 728},\n\tdictWord{147, 0, 117},\n\tdictWord{9, 11, 57},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t459,\n\t},\n\tdictWord{10, 11, 425},\n\tdictWord{11, 11, 119},\n\tdictWord{12, 11, 184},\n\tdictWord{12, 11, 371},\n\tdictWord{13, 11, 358},\n\tdictWord{145, 11, 51},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t188,\n\t},\n\tdictWord{5, 11, 814},\n\tdictWord{8, 11, 10},\n\tdictWord{9, 11, 421},\n\tdictWord{9, 11, 729},\n\tdictWord{10, 11, 609},\n\tdictWord{139, 11, 689},\n\tdictWord{134, 11, 624},\n\tdictWord{135, 11, 298},\n\tdictWord{135, 0, 462},\n\tdictWord{4, 0, 345},\n\tdictWord{139, 10, 624},\n\tdictWord{136, 10, 574},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t385,\n\t},\n\tdictWord{7, 0, 265},\n\tdictWord{135, 0, 587},\n\tdictWord{6, 0, 808},\n\tdictWord{132, 11, 528},\n\tdictWord{133, 0, 398},\n\tdictWord{132, 10, 354},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t347,\n\t},\n\tdictWord{5, 0, 423},\n\tdictWord{5, 0, 996},\n\tdictWord{135, 0, 1329},\n\tdictWord{135, 10, 1558},\n\tdictWord{7, 0, 1259},\n\tdictWord{9, 0, 125},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t65,\n\t},\n\tdictWord{5, 0, 136},\n\tdictWord{6, 0, 136},\n\tdictWord{136, 0, 644},\n\tdictWord{5, 11, 104},\n\tdictWord{6, 11, 173},\n\tdictWord{135, 11, 1631},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t469,\n\t},\n\tdictWord{133, 10, 830},\n\tdictWord{4, 0, 278},\n\tdictWord{5, 0, 465},\n\tdictWord{135, 0, 1367},\n\tdictWord{7, 11, 810},\n\tdictWord{8, 11, 138},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t342,\n\t},\n\tdictWord{9, 11, 84},\n\tdictWord{10, 11, 193},\n\tdictWord{11, 11, 883},\n\tdictWord{140, 11, 359},\n\tdictWord{5, 10, 496},\n\tdictWord{135, 10, 203},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t433,\n\t},\n\tdictWord{133, 0, 719},\n\tdictWord{6, 11, 95},\n\tdictWord{134, 10, 547},\n\tdictWord{5, 10, 88},\n\tdictWord{137, 10, 239},\n\tdictWord{6, 11, 406},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t409,\n\t},\n\tdictWord{10, 11, 447},\n\tdictWord{11, 11, 44},\n\tdictWord{140, 11, 100},\n\tdictWord{134, 0, 1423},\n\tdictWord{7, 10, 650},\n\tdictWord{135, 10, 1310},\n\tdictWord{134, 0, 749},\n\tdictWord{135, 11, 1243},\n\tdictWord{135, 0, 1363},\n\tdictWord{6, 0, 381},\n\tdictWord{7, 0, 645},\n\tdictWord{7, 0, 694},\n\tdictWord{8, 0, 546},\n\tdictWord{7, 10, 1076},\n\tdictWord{9, 10, 80},\n\tdictWord{11, 10, 78},\n\tdictWord{11, 10, 421},\n\tdictWord{11, 10, 534},\n\tdictWord{140, 10, 545},\n\tdictWord{\n\t\t134,\n\t\t11,\n\t\t1636,\n\t},\n\tdictWord{135, 11, 1344},\n\tdictWord{12, 0, 277},\n\tdictWord{7, 10, 274},\n\tdictWord{11, 10, 479},\n\tdictWord{139, 10, 507},\n\tdictWord{6, 0, 705},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t783,\n\t},\n\tdictWord{6, 0, 1275},\n\tdictWord{6, 0, 1481},\n\tdictWord{4, 11, 282},\n\tdictWord{7, 11, 1034},\n\tdictWord{11, 11, 398},\n\tdictWord{11, 11, 634},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t1,\n\t},\n\tdictWord{12, 11, 79},\n\tdictWord{12, 11, 544},\n\tdictWord{14, 11, 237},\n\tdictWord{17, 11, 10},\n\tdictWord{146, 11, 20},\n\tdictWord{134, 0, 453},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t555,\n\t},\n\tdictWord{8, 0, 536},\n\tdictWord{10, 0, 288},\n\tdictWord{11, 0, 1005},\n\tdictWord{4, 10, 497},\n\tdictWord{135, 10, 1584},\n\tdictWord{5, 11, 118},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t499,\n\t},\n\tdictWord{6, 11, 476},\n\tdictWord{7, 11, 600},\n\tdictWord{7, 11, 888},\n\tdictWord{135, 11, 1096},\n\tdictWord{138, 0, 987},\n\tdictWord{7, 0, 1107},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t261,\n\t},\n\tdictWord{7, 10, 1115},\n\tdictWord{7, 10, 1354},\n\tdictWord{7, 10, 1588},\n\tdictWord{7, 10, 1705},\n\tdictWord{7, 10, 1902},\n\tdictWord{9, 10, 465},\n\tdictWord{10, 10, 248},\n\tdictWord{10, 10, 349},\n\tdictWord{10, 10, 647},\n\tdictWord{11, 10, 527},\n\tdictWord{11, 10, 660},\n\tdictWord{11, 10, 669},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t529,\n\t},\n\tdictWord{141, 10, 305},\n\tdictWord{7, 11, 296},\n\tdictWord{7, 11, 596},\n\tdictWord{8, 11, 560},\n\tdictWord{8, 11, 586},\n\tdictWord{9, 11, 612},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t100,\n\t},\n\tdictWord{11, 11, 304},\n\tdictWord{12, 11, 46},\n\tdictWord{13, 11, 89},\n\tdictWord{14, 11, 112},\n\tdictWord{145, 11, 122},\n\tdictWord{9, 0, 370},\n\tdictWord{\n\t\t138,\n\t\t0,\n\t\t90,\n\t},\n\tdictWord{136, 10, 13},\n\tdictWord{132, 0, 860},\n\tdictWord{7, 10, 642},\n\tdictWord{8, 10, 250},\n\tdictWord{11, 10, 123},\n\tdictWord{11, 10, 137},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t48,\n\t},\n\tdictWord{142, 10, 95},\n\tdictWord{135, 10, 1429},\n\tdictWord{137, 11, 321},\n\tdictWord{132, 0, 257},\n\tdictWord{135, 0, 2031},\n\tdictWord{7, 0, 1768},\n\tdictWord{7, 11, 1599},\n\tdictWord{7, 11, 1723},\n\tdictWord{8, 11, 79},\n\tdictWord{8, 11, 106},\n\tdictWord{8, 11, 190},\n\tdictWord{8, 11, 302},\n\tdictWord{8, 11, 383},\n\tdictWord{9, 11, 119},\n\tdictWord{9, 11, 233},\n\tdictWord{9, 11, 298},\n\tdictWord{9, 11, 419},\n\tdictWord{9, 11, 471},\n\tdictWord{10, 11, 181},\n\tdictWord{10, 11, 406},\n\tdictWord{11, 11, 57},\n\tdictWord{11, 11, 85},\n\tdictWord{11, 11, 120},\n\tdictWord{11, 11, 177},\n\tdictWord{11, 11, 296},\n\tdictWord{11, 11, 382},\n\tdictWord{11, 11, 454},\n\tdictWord{11, 11, 758},\n\tdictWord{11, 11, 999},\n\tdictWord{12, 11, 27},\n\tdictWord{12, 11, 98},\n\tdictWord{12, 11, 131},\n\tdictWord{12, 11, 245},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t312,\n\t},\n\tdictWord{12, 11, 446},\n\tdictWord{12, 11, 454},\n\tdictWord{13, 11, 25},\n\tdictWord{13, 11, 98},\n\tdictWord{13, 11, 426},\n\tdictWord{13, 11, 508},\n\tdictWord{\n\t\t14,\n\t\t11,\n\t\t6,\n\t},\n\tdictWord{14, 11, 163},\n\tdictWord{14, 11, 272},\n\tdictWord{14, 11, 277},\n\tdictWord{14, 11, 370},\n\tdictWord{15, 11, 95},\n\tdictWord{15, 11, 138},\n\tdictWord{\n\t\t15,\n\t\t11,\n\t\t167,\n\t},\n\tdictWord{17, 11, 18},\n\tdictWord{17, 11, 38},\n\tdictWord{20, 11, 96},\n\tdictWord{149, 11, 32},\n\tdictWord{5, 11, 722},\n\tdictWord{134, 11, 1759},\n\tdictWord{145, 11, 16},\n\tdictWord{6, 0, 1071},\n\tdictWord{134, 0, 1561},\n\tdictWord{10, 10, 545},\n\tdictWord{140, 10, 301},\n\tdictWord{6, 0, 83},\n\tdictWord{6, 0, 1733},\n\tdictWord{135, 0, 1389},\n\tdictWord{4, 0, 835},\n\tdictWord{135, 0, 1818},\n\tdictWord{133, 11, 258},\n\tdictWord{4, 10, 904},\n\tdictWord{133, 10, 794},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t2006,\n\t},\n\tdictWord{5, 11, 30},\n\tdictWord{7, 11, 495},\n\tdictWord{8, 11, 134},\n\tdictWord{9, 11, 788},\n\tdictWord{140, 11, 438},\n\tdictWord{135, 11, 2004},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t696,\n\t},\n\tdictWord{5, 11, 50},\n\tdictWord{6, 11, 439},\n\tdictWord{7, 11, 780},\n\tdictWord{135, 11, 1040},\n\tdictWord{7, 11, 772},\n\tdictWord{7, 11, 1104},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1647,\n\t},\n\tdictWord{11, 11, 269},\n\tdictWord{11, 11, 539},\n\tdictWord{11, 11, 607},\n\tdictWord{11, 11, 627},\n\tdictWord{11, 11, 706},\n\tdictWord{11, 11, 975},\n\tdictWord{12, 11, 248},\n\tdictWord{12, 11, 311},\n\tdictWord{12, 11, 434},\n\tdictWord{12, 11, 600},\n\tdictWord{12, 11, 622},\n\tdictWord{13, 11, 297},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t367,\n\t},\n\tdictWord{13, 11, 485},\n\tdictWord{14, 11, 69},\n\tdictWord{14, 11, 409},\n\tdictWord{143, 11, 108},\n\tdictWord{5, 11, 1},\n\tdictWord{6, 11, 81},\n\tdictWord{\n\t\t138,\n\t\t11,\n\t\t520,\n\t},\n\tdictWord{7, 0, 1718},\n\tdictWord{9, 0, 95},\n\tdictWord{9, 0, 274},\n\tdictWord{10, 0, 279},\n\tdictWord{10, 0, 317},\n\tdictWord{10, 0, 420},\n\tdictWord{11, 0, 303},\n\tdictWord{11, 0, 808},\n\tdictWord{12, 0, 134},\n\tdictWord{12, 0, 367},\n\tdictWord{13, 0, 149},\n\tdictWord{13, 0, 347},\n\tdictWord{14, 0, 349},\n\tdictWord{14, 0, 406},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t22,\n\t},\n\tdictWord{18, 0, 89},\n\tdictWord{18, 0, 122},\n\tdictWord{147, 0, 47},\n\tdictWord{5, 11, 482},\n\tdictWord{8, 11, 98},\n\tdictWord{9, 11, 172},\n\tdictWord{10, 11, 222},\n\tdictWord{10, 11, 700},\n\tdictWord{10, 11, 822},\n\tdictWord{11, 11, 302},\n\tdictWord{11, 11, 778},\n\tdictWord{12, 11, 50},\n\tdictWord{12, 11, 127},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t396,\n\t},\n\tdictWord{13, 11, 62},\n\tdictWord{13, 11, 328},\n\tdictWord{14, 11, 122},\n\tdictWord{147, 11, 72},\n\tdictWord{7, 10, 386},\n\tdictWord{138, 10, 713},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t7,\n\t},\n\tdictWord{6, 10, 35},\n\tdictWord{7, 10, 147},\n\tdictWord{7, 10, 1069},\n\tdictWord{7, 10, 1568},\n\tdictWord{7, 10, 1575},\n\tdictWord{7, 10, 1917},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t43,\n\t},\n\tdictWord{8, 10, 208},\n\tdictWord{9, 10, 128},\n\tdictWord{9, 10, 866},\n\tdictWord{10, 10, 20},\n\tdictWord{11, 10, 981},\n\tdictWord{147, 10, 33},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t26,\n\t},\n\tdictWord{132, 0, 550},\n\tdictWord{5, 11, 2},\n\tdictWord{7, 11, 1494},\n\tdictWord{136, 11, 589},\n\tdictWord{6, 11, 512},\n\tdictWord{7, 11, 797},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t253,\n\t},\n\tdictWord{9, 11, 77},\n\tdictWord{10, 11, 1},\n\tdictWord{10, 11, 129},\n\tdictWord{10, 11, 225},\n\tdictWord{11, 11, 118},\n\tdictWord{11, 11, 226},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t251,\n\t},\n\tdictWord{11, 11, 430},\n\tdictWord{11, 11, 701},\n\tdictWord{11, 11, 974},\n\tdictWord{11, 11, 982},\n\tdictWord{12, 11, 64},\n\tdictWord{12, 11, 260},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t488,\n\t},\n\tdictWord{140, 11, 690},\n\tdictWord{7, 10, 893},\n\tdictWord{141, 10, 424},\n\tdictWord{134, 0, 901},\n\tdictWord{136, 0, 822},\n\tdictWord{4, 0, 902},\n\tdictWord{5, 0, 809},\n\tdictWord{134, 0, 122},\n\tdictWord{6, 0, 807},\n\tdictWord{134, 0, 1366},\n\tdictWord{7, 0, 262},\n\tdictWord{5, 11, 748},\n\tdictWord{134, 11, 553},\n\tdictWord{133, 0, 620},\n\tdictWord{4, 0, 34},\n\tdictWord{5, 0, 574},\n\tdictWord{7, 0, 279},\n\tdictWord{7, 0, 1624},\n\tdictWord{136, 0, 601},\n\tdictWord{9, 0, 170},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t322,\n\t},\n\tdictWord{9, 10, 552},\n\tdictWord{11, 10, 274},\n\tdictWord{13, 10, 209},\n\tdictWord{13, 10, 499},\n\tdictWord{14, 10, 85},\n\tdictWord{15, 10, 126},\n\tdictWord{\n\t\t145,\n\t\t10,\n\t\t70,\n\t},\n\tdictWord{132, 0, 537},\n\tdictWord{4, 11, 12},\n\tdictWord{7, 11, 420},\n\tdictWord{7, 11, 522},\n\tdictWord{7, 11, 809},\n\tdictWord{8, 11, 797},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t88,\n\t},\n\tdictWord{133, 0, 332},\n\tdictWord{8, 10, 83},\n\tdictWord{8, 10, 742},\n\tdictWord{8, 10, 817},\n\tdictWord{9, 10, 28},\n\tdictWord{9, 10, 29},\n\tdictWord{9, 10, 885},\n\tdictWord{10, 10, 387},\n\tdictWord{11, 10, 633},\n\tdictWord{11, 10, 740},\n\tdictWord{13, 10, 235},\n\tdictWord{13, 10, 254},\n\tdictWord{15, 10, 143},\n\tdictWord{\n\t\t143,\n\t\t10,\n\t\t146,\n\t},\n\tdictWord{6, 0, 1909},\n\tdictWord{9, 0, 964},\n\tdictWord{12, 0, 822},\n\tdictWord{12, 0, 854},\n\tdictWord{12, 0, 865},\n\tdictWord{12, 0, 910},\n\tdictWord{12, 0, 938},\n\tdictWord{15, 0, 169},\n\tdictWord{15, 0, 208},\n\tdictWord{15, 0, 211},\n\tdictWord{18, 0, 205},\n\tdictWord{18, 0, 206},\n\tdictWord{18, 0, 220},\n\tdictWord{18, 0, 223},\n\tdictWord{152, 0, 24},\n\tdictWord{140, 10, 49},\n\tdictWord{5, 11, 528},\n\tdictWord{135, 11, 1580},\n\tdictWord{6, 0, 261},\n\tdictWord{8, 0, 182},\n\tdictWord{139, 0, 943},\n\tdictWord{134, 0, 1721},\n\tdictWord{4, 0, 933},\n\tdictWord{133, 0, 880},\n\tdictWord{136, 11, 321},\n\tdictWord{5, 11, 266},\n\tdictWord{9, 11, 290},\n\tdictWord{9, 11, 364},\n\tdictWord{10, 11, 293},\n\tdictWord{11, 11, 606},\n\tdictWord{142, 11, 45},\n\tdictWord{6, 0, 1609},\n\tdictWord{4, 11, 50},\n\tdictWord{6, 11, 510},\n\tdictWord{6, 11, 594},\n\tdictWord{9, 11, 121},\n\tdictWord{10, 11, 49},\n\tdictWord{10, 11, 412},\n\tdictWord{139, 11, 834},\n\tdictWord{7, 0, 895},\n\tdictWord{136, 11, 748},\n\tdictWord{132, 11, 466},\n\tdictWord{4, 10, 110},\n\tdictWord{10, 10, 415},\n\tdictWord{10, 10, 597},\n\tdictWord{142, 10, 206},\n\tdictWord{133, 0, 812},\n\tdictWord{135, 11, 281},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1890,\n\t},\n\tdictWord{6, 0, 1902},\n\tdictWord{6, 0, 1916},\n\tdictWord{9, 0, 929},\n\tdictWord{9, 0, 942},\n\tdictWord{9, 0, 975},\n\tdictWord{9, 0, 984},\n\tdictWord{9, 0, 986},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t1011,\n\t},\n\tdictWord{9, 0, 1019},\n\tdictWord{12, 0, 804},\n\tdictWord{12, 0, 851},\n\tdictWord{12, 0, 867},\n\tdictWord{12, 0, 916},\n\tdictWord{12, 0, 923},\n\tdictWord{\n\t\t15,\n\t\t0,\n\t\t194,\n\t},\n\tdictWord{15, 0, 204},\n\tdictWord{15, 0, 210},\n\tdictWord{15, 0, 222},\n\tdictWord{15, 0, 223},\n\tdictWord{15, 0, 229},\n\tdictWord{15, 0, 250},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t179,\n\t},\n\tdictWord{18, 0, 186},\n\tdictWord{18, 0, 192},\n\tdictWord{7, 10, 205},\n\tdictWord{135, 10, 2000},\n\tdictWord{132, 11, 667},\n\tdictWord{135, 0, 778},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t137,\n\t},\n\tdictWord{7, 0, 1178},\n\tdictWord{135, 0, 1520},\n\tdictWord{134, 0, 1314},\n\tdictWord{4, 11, 242},\n\tdictWord{134, 11, 333},\n\tdictWord{6, 0, 1661},\n\tdictWord{7, 0, 1975},\n\tdictWord{7, 0, 2009},\n\tdictWord{135, 0, 2011},\n\tdictWord{134, 0, 1591},\n\tdictWord{4, 10, 283},\n\tdictWord{135, 10, 1194},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t820,\n\t},\n\tdictWord{150, 0, 51},\n\tdictWord{4, 11, 39},\n\tdictWord{5, 11, 36},\n\tdictWord{7, 11, 1843},\n\tdictWord{8, 11, 407},\n\tdictWord{11, 11, 144},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t523,\n\t},\n\tdictWord{134, 10, 1720},\n\tdictWord{4, 11, 510},\n\tdictWord{7, 11, 29},\n\tdictWord{7, 11, 66},\n\tdictWord{7, 11, 1980},\n\tdictWord{10, 11, 487},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t809,\n\t},\n\tdictWord{146, 11, 9},\n\tdictWord{5, 0, 89},\n\tdictWord{7, 0, 1915},\n\tdictWord{9, 0, 185},\n\tdictWord{9, 0, 235},\n\tdictWord{10, 0, 64},\n\tdictWord{10, 0, 270},\n\tdictWord{10, 0, 403},\n\tdictWord{10, 0, 469},\n\tdictWord{10, 0, 529},\n\tdictWord{10, 0, 590},\n\tdictWord{11, 0, 140},\n\tdictWord{11, 0, 860},\n\tdictWord{13, 0, 1},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t422,\n\t},\n\tdictWord{14, 0, 341},\n\tdictWord{14, 0, 364},\n\tdictWord{17, 0, 93},\n\tdictWord{18, 0, 113},\n\tdictWord{19, 0, 97},\n\tdictWord{147, 0, 113},\n\tdictWord{133, 0, 695},\n\tdictWord{6, 0, 987},\n\tdictWord{134, 0, 1160},\n\tdictWord{5, 0, 6},\n\tdictWord{6, 0, 183},\n\tdictWord{7, 0, 680},\n\tdictWord{7, 0, 978},\n\tdictWord{7, 0, 1013},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1055,\n\t},\n\tdictWord{12, 0, 230},\n\tdictWord{13, 0, 172},\n\tdictWord{146, 0, 29},\n\tdictWord{134, 11, 570},\n\tdictWord{132, 11, 787},\n\tdictWord{134, 11, 518},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t29,\n\t},\n\tdictWord{139, 0, 63},\n\tdictWord{132, 11, 516},\n\tdictWord{136, 11, 821},\n\tdictWord{132, 0, 311},\n\tdictWord{134, 0, 1740},\n\tdictWord{7, 0, 170},\n\tdictWord{8, 0, 90},\n\tdictWord{8, 0, 177},\n\tdictWord{8, 0, 415},\n\tdictWord{11, 0, 714},\n\tdictWord{14, 0, 281},\n\tdictWord{136, 10, 735},\n\tdictWord{134, 0, 1961},\n\tdictWord{\n\t\t135,\n\t\t11,\n\t\t1405,\n\t},\n\tdictWord{4, 11, 10},\n\tdictWord{7, 11, 917},\n\tdictWord{139, 11, 786},\n\tdictWord{5, 10, 132},\n\tdictWord{9, 10, 486},\n\tdictWord{9, 10, 715},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t458,\n\t},\n\tdictWord{11, 10, 373},\n\tdictWord{11, 10, 668},\n\tdictWord{11, 10, 795},\n\tdictWord{11, 10, 897},\n\tdictWord{12, 10, 272},\n\tdictWord{12, 10, 424},\n\tdictWord{12, 10, 539},\n\tdictWord{12, 10, 558},\n\tdictWord{14, 10, 245},\n\tdictWord{14, 10, 263},\n\tdictWord{14, 10, 264},\n\tdictWord{14, 10, 393},\n\tdictWord{\n\t\t142,\n\t\t10,\n\t\t403,\n\t},\n\tdictWord{11, 0, 91},\n\tdictWord{13, 0, 129},\n\tdictWord{15, 0, 101},\n\tdictWord{145, 0, 125},\n\tdictWord{135, 0, 1132},\n\tdictWord{4, 0, 494},\n\tdictWord{6, 0, 74},\n\tdictWord{7, 0, 44},\n\tdictWord{7, 0, 407},\n\tdictWord{12, 0, 17},\n\tdictWord{15, 0, 5},\n\tdictWord{148, 0, 11},\n\tdictWord{133, 10, 379},\n\tdictWord{5, 0, 270},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t684,\n\t},\n\tdictWord{6, 10, 89},\n\tdictWord{6, 10, 400},\n\tdictWord{7, 10, 1569},\n\tdictWord{7, 10, 1623},\n\tdictWord{7, 10, 1850},\n\tdictWord{8, 10, 218},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t422,\n\t},\n\tdictWord{9, 10, 570},\n\tdictWord{138, 10, 626},\n\tdictWord{4, 0, 276},\n\tdictWord{133, 0, 296},\n\tdictWord{6, 0, 1523},\n\tdictWord{134, 11, 27},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t387,\n\t},\n\tdictWord{7, 10, 882},\n\tdictWord{141, 10, 111},\n\tdictWord{6, 10, 224},\n\tdictWord{7, 10, 877},\n\tdictWord{137, 10, 647},\n\tdictWord{135, 10, 790},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t7,\n\t},\n\tdictWord{5, 0, 90},\n\tdictWord{5, 0, 158},\n\tdictWord{6, 0, 542},\n\tdictWord{7, 0, 221},\n\tdictWord{7, 0, 1574},\n\tdictWord{9, 0, 490},\n\tdictWord{10, 0, 540},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t443,\n\t},\n\tdictWord{139, 0, 757},\n\tdictWord{7, 0, 588},\n\tdictWord{9, 0, 175},\n\tdictWord{138, 0, 530},\n\tdictWord{135, 10, 394},\n\tdictWord{142, 11, 23},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t786,\n\t},\n\tdictWord{135, 0, 580},\n\tdictWord{7, 0, 88},\n\tdictWord{136, 0, 627},\n\tdictWord{5, 0, 872},\n\tdictWord{6, 0, 57},\n\tdictWord{7, 0, 471},\n\tdictWord{9, 0, 447},\n\tdictWord{137, 0, 454},\n\tdictWord{6, 11, 342},\n\tdictWord{6, 11, 496},\n\tdictWord{8, 11, 275},\n\tdictWord{137, 11, 206},\n\tdictWord{4, 11, 909},\n\tdictWord{133, 11, 940},\n\tdictWord{6, 0, 735},\n\tdictWord{132, 11, 891},\n\tdictWord{8, 0, 845},\n\tdictWord{8, 0, 916},\n\tdictWord{135, 10, 1409},\n\tdictWord{5, 0, 31},\n\tdictWord{134, 0, 614},\n\tdictWord{11, 0, 458},\n\tdictWord{12, 0, 15},\n\tdictWord{140, 0, 432},\n\tdictWord{8, 0, 330},\n\tdictWord{140, 0, 477},\n\tdictWord{4, 0, 530},\n\tdictWord{5, 0, 521},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1200,\n\t},\n\tdictWord{10, 0, 460},\n\tdictWord{132, 11, 687},\n\tdictWord{6, 0, 424},\n\tdictWord{135, 0, 1866},\n\tdictWord{9, 0, 569},\n\tdictWord{12, 0, 12},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t81,\n\t},\n\tdictWord{12, 0, 319},\n\tdictWord{13, 0, 69},\n\tdictWord{14, 0, 259},\n\tdictWord{16, 0, 87},\n\tdictWord{17, 0, 1},\n\tdictWord{17, 0, 21},\n\tdictWord{17, 0, 24},\n\tdictWord{\n\t\t18,\n\t\t0,\n\t\t15,\n\t},\n\tdictWord{18, 0, 56},\n\tdictWord{18, 0, 59},\n\tdictWord{18, 0, 127},\n\tdictWord{18, 0, 154},\n\tdictWord{19, 0, 19},\n\tdictWord{148, 0, 31},\n\tdictWord{7, 0, 1302},\n\tdictWord{136, 10, 38},\n\tdictWord{134, 11, 253},\n\tdictWord{5, 10, 261},\n\tdictWord{7, 10, 78},\n\tdictWord{7, 10, 199},\n\tdictWord{8, 10, 815},\n\tdictWord{9, 10, 126},\n\tdictWord{138, 10, 342},\n\tdictWord{5, 0, 595},\n\tdictWord{135, 0, 1863},\n\tdictWord{6, 11, 41},\n\tdictWord{141, 11, 160},\n\tdictWord{5, 0, 13},\n\tdictWord{134, 0, 142},\n\tdictWord{6, 0, 97},\n\tdictWord{7, 0, 116},\n\tdictWord{8, 0, 322},\n\tdictWord{8, 0, 755},\n\tdictWord{9, 0, 548},\n\tdictWord{10, 0, 714},\n\tdictWord{11, 0, 884},\n\tdictWord{13, 0, 324},\n\tdictWord{7, 11, 1304},\n\tdictWord{138, 11, 477},\n\tdictWord{132, 10, 628},\n\tdictWord{134, 11, 1718},\n\tdictWord{7, 10, 266},\n\tdictWord{136, 10, 804},\n\tdictWord{135, 10, 208},\n\tdictWord{7, 0, 1021},\n\tdictWord{6, 10, 79},\n\tdictWord{135, 10, 1519},\n\tdictWord{7, 0, 1472},\n\tdictWord{135, 0, 1554},\n\tdictWord{6, 11, 362},\n\tdictWord{146, 11, 51},\n\tdictWord{7, 0, 1071},\n\tdictWord{7, 0, 1541},\n\tdictWord{7, 0, 1767},\n\tdictWord{7, 0, 1806},\n\tdictWord{11, 0, 162},\n\tdictWord{11, 0, 242},\n\tdictWord{11, 0, 452},\n\tdictWord{12, 0, 605},\n\tdictWord{15, 0, 26},\n\tdictWord{144, 0, 44},\n\tdictWord{136, 10, 741},\n\tdictWord{133, 11, 115},\n\tdictWord{145, 0, 115},\n\tdictWord{134, 10, 376},\n\tdictWord{6, 0, 1406},\n\tdictWord{134, 0, 1543},\n\tdictWord{5, 11, 193},\n\tdictWord{12, 11, 178},\n\tdictWord{13, 11, 130},\n\tdictWord{\n\t\t145,\n\t\t11,\n\t\t84,\n\t},\n\tdictWord{135, 0, 1111},\n\tdictWord{8, 0, 1},\n\tdictWord{9, 0, 650},\n\tdictWord{10, 0, 326},\n\tdictWord{5, 11, 705},\n\tdictWord{137, 11, 606},\n\tdictWord{5, 0, 488},\n\tdictWord{6, 0, 527},\n\tdictWord{7, 0, 489},\n\tdictWord{7, 0, 1636},\n\tdictWord{8, 0, 121},\n\tdictWord{8, 0, 144},\n\tdictWord{8, 0, 359},\n\tdictWord{9, 0, 193},\n\tdictWord{9, 0, 241},\n\tdictWord{9, 0, 336},\n\tdictWord{9, 0, 882},\n\tdictWord{11, 0, 266},\n\tdictWord{11, 0, 372},\n\tdictWord{11, 0, 944},\n\tdictWord{12, 0, 401},\n\tdictWord{140, 0, 641},\n\tdictWord{135, 11, 174},\n\tdictWord{6, 0, 267},\n\tdictWord{7, 10, 244},\n\tdictWord{7, 10, 632},\n\tdictWord{7, 10, 1609},\n\tdictWord{8, 10, 178},\n\tdictWord{8, 10, 638},\n\tdictWord{141, 10, 58},\n\tdictWord{134, 0, 1983},\n\tdictWord{134, 0, 1155},\n\tdictWord{134, 0, 1575},\n\tdictWord{134, 0, 1438},\n\tdictWord{9, 0, 31},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t244,\n\t},\n\tdictWord{10, 0, 699},\n\tdictWord{12, 0, 149},\n\tdictWord{141, 0, 497},\n\tdictWord{133, 0, 377},\n\tdictWord{4, 11, 122},\n\tdictWord{5, 11, 796},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t952,\n\t},\n\tdictWord{6, 11, 1660},\n\tdictWord{6, 11, 1671},\n\tdictWord{8, 11, 567},\n\tdictWord{9, 11, 687},\n\tdictWord{9, 11, 742},\n\tdictWord{10, 11, 686},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t356,\n\t},\n\tdictWord{11, 11, 682},\n\tdictWord{140, 11, 281},\n\tdictWord{145, 0, 101},\n\tdictWord{11, 11, 0},\n\tdictWord{144, 11, 78},\n\tdictWord{5, 11, 179},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t791,\n\t},\n\tdictWord{7, 11, 1095},\n\tdictWord{135, 11, 1213},\n\tdictWord{8, 11, 372},\n\tdictWord{9, 11, 122},\n\tdictWord{138, 11, 175},\n\tdictWord{7, 10, 686},\n\tdictWord{8, 10, 33},\n\tdictWord{8, 10, 238},\n\tdictWord{10, 10, 616},\n\tdictWord{11, 10, 467},\n\tdictWord{11, 10, 881},\n\tdictWord{13, 10, 217},\n\tdictWord{13, 10, 253},\n\tdictWord{142, 10, 268},\n\tdictWord{9, 0, 476},\n\tdictWord{4, 11, 66},\n\tdictWord{7, 11, 722},\n\tdictWord{135, 11, 904},\n\tdictWord{7, 11, 352},\n\tdictWord{137, 11, 684},\n\tdictWord{135, 0, 2023},\n\tdictWord{135, 0, 1836},\n\tdictWord{132, 10, 447},\n\tdictWord{5, 0, 843},\n\tdictWord{144, 0, 35},\n\tdictWord{137, 11, 779},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t35,\n\t},\n\tdictWord{4, 10, 128},\n\tdictWord{5, 10, 415},\n\tdictWord{6, 10, 462},\n\tdictWord{7, 10, 294},\n\tdictWord{7, 10, 578},\n\tdictWord{10, 10, 710},\n\tdictWord{\n\t\t139,\n\t\t10,\n\t\t86,\n\t},\n\tdictWord{132, 0, 554},\n\tdictWord{133, 0, 536},\n\tdictWord{136, 10, 587},\n\tdictWord{5, 0, 207},\n\tdictWord{9, 0, 79},\n\tdictWord{11, 0, 625},\n\tdictWord{\n\t\t145,\n\t\t0,\n\t\t7,\n\t},\n\tdictWord{7, 0, 1371},\n\tdictWord{6, 10, 427},\n\tdictWord{138, 10, 692},\n\tdictWord{4, 0, 424},\n\tdictWord{4, 10, 195},\n\tdictWord{135, 10, 802},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t785,\n\t},\n\tdictWord{133, 11, 564},\n\tdictWord{135, 0, 336},\n\tdictWord{4, 0, 896},\n\tdictWord{6, 0, 1777},\n\tdictWord{134, 11, 556},\n\tdictWord{137, 11, 103},\n\tdictWord{134, 10, 1683},\n\tdictWord{7, 11, 544},\n\tdictWord{8, 11, 719},\n\tdictWord{138, 11, 61},\n\tdictWord{138, 10, 472},\n\tdictWord{4, 11, 5},\n\tdictWord{5, 11, 498},\n\tdictWord{136, 11, 637},\n\tdictWord{7, 0, 750},\n\tdictWord{9, 0, 223},\n\tdictWord{11, 0, 27},\n\tdictWord{11, 0, 466},\n\tdictWord{12, 0, 624},\n\tdictWord{14, 0, 265},\n\tdictWord{\n\t\t146,\n\t\t0,\n\t\t61,\n\t},\n\tdictWord{12, 0, 238},\n\tdictWord{18, 0, 155},\n\tdictWord{12, 11, 238},\n\tdictWord{146, 11, 155},\n\tdictWord{151, 10, 28},\n\tdictWord{133, 11, 927},\n\tdictWord{12, 0, 383},\n\tdictWord{5, 10, 3},\n\tdictWord{8, 10, 578},\n\tdictWord{9, 10, 118},\n\tdictWord{10, 10, 705},\n\tdictWord{141, 10, 279},\n\tdictWord{4, 11, 893},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t780,\n\t},\n\tdictWord{133, 11, 893},\n\tdictWord{4, 0, 603},\n\tdictWord{133, 0, 661},\n\tdictWord{4, 0, 11},\n\tdictWord{6, 0, 128},\n\tdictWord{7, 0, 231},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1533,\n\t},\n\tdictWord{10, 0, 725},\n\tdictWord{5, 10, 229},\n\tdictWord{5, 11, 238},\n\tdictWord{135, 11, 1350},\n\tdictWord{8, 10, 102},\n\tdictWord{10, 10, 578},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t672,\n\t},\n\tdictWord{12, 10, 496},\n\tdictWord{13, 10, 408},\n\tdictWord{14, 10, 121},\n\tdictWord{145, 10, 106},\n\tdictWord{132, 0, 476},\n\tdictWord{134, 0, 1552},\n\tdictWord{134, 11, 1729},\n\tdictWord{8, 10, 115},\n\tdictWord{8, 10, 350},\n\tdictWord{9, 10, 489},\n\tdictWord{10, 10, 128},\n\tdictWord{11, 10, 306},\n\tdictWord{\n\t\t12,\n\t\t10,\n\t\t373,\n\t},\n\tdictWord{14, 10, 30},\n\tdictWord{17, 10, 79},\n\tdictWord{19, 10, 80},\n\tdictWord{150, 10, 55},\n\tdictWord{135, 0, 1807},\n\tdictWord{4, 0, 680},\n\tdictWord{\n\t\t4,\n\t\t11,\n\t\t60,\n\t},\n\tdictWord{7, 11, 760},\n\tdictWord{7, 11, 1800},\n\tdictWord{8, 11, 314},\n\tdictWord{9, 11, 700},\n\tdictWord{139, 11, 487},\n\tdictWord{4, 10, 230},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t702,\n\t},\n\tdictWord{148, 11, 94},\n\tdictWord{132, 11, 228},\n\tdictWord{139, 0, 435},\n\tdictWord{9, 0, 20},\n\tdictWord{10, 0, 324},\n\tdictWord{10, 0, 807},\n\tdictWord{\n\t\t139,\n\t\t0,\n\t\t488,\n\t},\n\tdictWord{6, 10, 1728},\n\tdictWord{136, 11, 419},\n\tdictWord{4, 10, 484},\n\tdictWord{18, 10, 26},\n\tdictWord{19, 10, 42},\n\tdictWord{20, 10, 43},\n\tdictWord{\n\t\t21,\n\t\t10,\n\t\t0,\n\t},\n\tdictWord{23, 10, 27},\n\tdictWord{152, 10, 14},\n\tdictWord{135, 0, 1431},\n\tdictWord{133, 11, 828},\n\tdictWord{5, 0, 112},\n\tdictWord{6, 0, 103},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t150,\n\t},\n\tdictWord{7, 0, 1303},\n\tdictWord{9, 0, 292},\n\tdictWord{10, 0, 481},\n\tdictWord{20, 0, 13},\n\tdictWord{7, 11, 176},\n\tdictWord{7, 11, 178},\n\tdictWord{7, 11, 1110},\n\tdictWord{10, 11, 481},\n\tdictWord{148, 11, 13},\n\tdictWord{138, 0, 356},\n\tdictWord{4, 11, 51},\n\tdictWord{5, 11, 39},\n\tdictWord{6, 11, 4},\n\tdictWord{7, 11, 591},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t849,\n\t},\n\tdictWord{7, 11, 951},\n\tdictWord{7, 11, 1129},\n\tdictWord{7, 11, 1613},\n\tdictWord{7, 11, 1760},\n\tdictWord{7, 11, 1988},\n\tdictWord{9, 11, 434},\n\tdictWord{10, 11, 754},\n\tdictWord{11, 11, 25},\n\tdictWord{11, 11, 37},\n\tdictWord{139, 11, 414},\n\tdictWord{6, 0, 1963},\n\tdictWord{134, 0, 2000},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t633,\n\t},\n\tdictWord{6, 0, 1244},\n\tdictWord{133, 11, 902},\n\tdictWord{135, 11, 928},\n\tdictWord{140, 0, 18},\n\tdictWord{138, 0, 204},\n\tdictWord{135, 11, 1173},\n\tdictWord{134, 0, 867},\n\tdictWord{4, 0, 708},\n\tdictWord{8, 0, 15},\n\tdictWord{9, 0, 50},\n\tdictWord{9, 0, 386},\n\tdictWord{11, 0, 18},\n\tdictWord{11, 0, 529},\n\tdictWord{140, 0, 228},\n\tdictWord{134, 11, 270},\n\tdictWord{4, 0, 563},\n\tdictWord{7, 0, 109},\n\tdictWord{7, 0, 592},\n\tdictWord{7, 0, 637},\n\tdictWord{7, 0, 770},\n\tdictWord{8, 0, 463},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t60,\n\t},\n\tdictWord{9, 0, 335},\n\tdictWord{9, 0, 904},\n\tdictWord{10, 0, 73},\n\tdictWord{11, 0, 434},\n\tdictWord{12, 0, 585},\n\tdictWord{13, 0, 331},\n\tdictWord{18, 0, 110},\n\tdictWord{148, 0, 60},\n\tdictWord{132, 0, 502},\n\tdictWord{14, 11, 359},\n\tdictWord{19, 11, 52},\n\tdictWord{148, 11, 47},\n\tdictWord{6, 11, 377},\n\tdictWord{7, 11, 1025},\n\tdictWord{9, 11, 613},\n\tdictWord{145, 11, 104},\n\tdictWord{6, 0, 347},\n\tdictWord{10, 0, 161},\n\tdictWord{5, 10, 70},\n\tdictWord{5, 10, 622},\n\tdictWord{6, 10, 334},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1032,\n\t},\n\tdictWord{9, 10, 171},\n\tdictWord{11, 10, 26},\n\tdictWord{11, 10, 213},\n\tdictWord{11, 10, 637},\n\tdictWord{11, 10, 707},\n\tdictWord{12, 10, 202},\n\tdictWord{12, 10, 380},\n\tdictWord{13, 10, 226},\n\tdictWord{13, 10, 355},\n\tdictWord{14, 10, 222},\n\tdictWord{145, 10, 42},\n\tdictWord{132, 11, 416},\n\tdictWord{4, 0, 33},\n\tdictWord{5, 0, 102},\n\tdictWord{6, 0, 284},\n\tdictWord{7, 0, 1079},\n\tdictWord{7, 0, 1423},\n\tdictWord{7, 0, 1702},\n\tdictWord{8, 0, 470},\n\tdictWord{9, 0, 554},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t723,\n\t},\n\tdictWord{11, 0, 333},\n\tdictWord{142, 11, 372},\n\tdictWord{5, 11, 152},\n\tdictWord{5, 11, 197},\n\tdictWord{7, 11, 340},\n\tdictWord{7, 11, 867},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t548,\n\t},\n\tdictWord{10, 11, 581},\n\tdictWord{11, 11, 6},\n\tdictWord{12, 11, 3},\n\tdictWord{12, 11, 19},\n\tdictWord{14, 11, 110},\n\tdictWord{142, 11, 289},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t246,\n\t},\n\tdictWord{135, 0, 840},\n\tdictWord{6, 0, 10},\n\tdictWord{8, 0, 571},\n\tdictWord{9, 0, 739},\n\tdictWord{143, 0, 91},\n\tdictWord{6, 0, 465},\n\tdictWord{7, 0, 1465},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t23,\n\t},\n\tdictWord{4, 10, 141},\n\tdictWord{5, 10, 313},\n\tdictWord{5, 10, 1014},\n\tdictWord{6, 10, 50},\n\tdictWord{7, 10, 142},\n\tdictWord{7, 10, 559},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t640,\n\t},\n\tdictWord{9, 10, 460},\n\tdictWord{9, 10, 783},\n\tdictWord{11, 10, 741},\n\tdictWord{12, 10, 183},\n\tdictWord{141, 10, 488},\n\tdictWord{133, 0, 626},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t614,\n\t},\n\tdictWord{138, 0, 237},\n\tdictWord{7, 11, 34},\n\tdictWord{7, 11, 190},\n\tdictWord{8, 11, 28},\n\tdictWord{8, 11, 141},\n\tdictWord{8, 11, 444},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t811,\n\t},\n\tdictWord{9, 11, 468},\n\tdictWord{11, 11, 334},\n\tdictWord{12, 11, 24},\n\tdictWord{12, 11, 386},\n\tdictWord{140, 11, 576},\n\tdictWord{133, 11, 757},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t18,\n\t},\n\tdictWord{6, 0, 526},\n\tdictWord{13, 0, 24},\n\tdictWord{13, 0, 110},\n\tdictWord{19, 0, 5},\n\tdictWord{147, 0, 44},\n\tdictWord{6, 0, 506},\n\tdictWord{134, 11, 506},\n\tdictWord{135, 11, 1553},\n\tdictWord{4, 0, 309},\n\tdictWord{5, 0, 462},\n\tdictWord{7, 0, 970},\n\tdictWord{7, 0, 1097},\n\tdictWord{22, 0, 30},\n\tdictWord{22, 0, 33},\n\tdictWord{\n\t\t7,\n\t\t11,\n\t\t1385,\n\t},\n\tdictWord{11, 11, 582},\n\tdictWord{11, 11, 650},\n\tdictWord{11, 11, 901},\n\tdictWord{11, 11, 949},\n\tdictWord{12, 11, 232},\n\tdictWord{12, 11, 236},\n\tdictWord{13, 11, 413},\n\tdictWord{13, 11, 501},\n\tdictWord{146, 11, 116},\n\tdictWord{9, 0, 140},\n\tdictWord{5, 10, 222},\n\tdictWord{138, 10, 534},\n\tdictWord{6, 0, 1056},\n\tdictWord{137, 10, 906},\n\tdictWord{134, 0, 1704},\n\tdictWord{138, 10, 503},\n\tdictWord{134, 0, 1036},\n\tdictWord{5, 10, 154},\n\tdictWord{7, 10, 1491},\n\tdictWord{\n\t\t10,\n\t\t10,\n\t\t379,\n\t},\n\tdictWord{138, 10, 485},\n\tdictWord{4, 11, 383},\n\tdictWord{133, 10, 716},\n\tdictWord{134, 0, 1315},\n\tdictWord{5, 0, 86},\n\tdictWord{7, 0, 743},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t85,\n\t},\n\tdictWord{10, 0, 281},\n\tdictWord{10, 0, 432},\n\tdictWord{11, 0, 825},\n\tdictWord{12, 0, 251},\n\tdictWord{13, 0, 118},\n\tdictWord{142, 0, 378},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t264,\n\t},\n\tdictWord{4, 10, 91},\n\tdictWord{5, 10, 388},\n\tdictWord{5, 10, 845},\n\tdictWord{6, 10, 206},\n\tdictWord{6, 10, 252},\n\tdictWord{6, 10, 365},\n\tdictWord{7, 10, 136},\n\tdictWord{7, 10, 531},\n\tdictWord{136, 10, 621},\n\tdictWord{5, 0, 524},\n\tdictWord{133, 0, 744},\n\tdictWord{5, 11, 277},\n\tdictWord{141, 11, 247},\n\tdictWord{\n\t\t132,\n\t\t11,\n\t\t435,\n\t},\n\tdictWord{10, 0, 107},\n\tdictWord{140, 0, 436},\n\tdictWord{132, 0, 927},\n\tdictWord{10, 0, 123},\n\tdictWord{12, 0, 670},\n\tdictWord{146, 0, 94},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t1149,\n\t},\n\tdictWord{9, 0, 156},\n\tdictWord{138, 0, 957},\n\tdictWord{5, 11, 265},\n\tdictWord{6, 11, 212},\n\tdictWord{135, 11, 28},\n\tdictWord{133, 0, 778},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t502,\n\t},\n\tdictWord{8, 0, 196},\n\tdictWord{10, 0, 283},\n\tdictWord{139, 0, 406},\n\tdictWord{135, 10, 576},\n\tdictWord{136, 11, 535},\n\tdictWord{134, 0, 1312},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t771,\n\t},\n\tdictWord{5, 10, 863},\n\tdictWord{5, 10, 898},\n\tdictWord{6, 10, 1632},\n\tdictWord{6, 10, 1644},\n\tdictWord{134, 10, 1780},\n\tdictWord{5, 0, 855},\n\tdictWord{5, 10, 331},\n\tdictWord{135, 11, 1487},\n\tdictWord{132, 11, 702},\n\tdictWord{5, 11, 808},\n\tdictWord{135, 11, 2045},\n\tdictWord{7, 0, 1400},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t446,\n\t},\n\tdictWord{138, 0, 45},\n\tdictWord{140, 10, 632},\n\tdictWord{132, 0, 1003},\n\tdictWord{5, 11, 166},\n\tdictWord{8, 11, 739},\n\tdictWord{140, 11, 511},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t107,\n\t},\n\tdictWord{7, 10, 201},\n\tdictWord{136, 10, 518},\n\tdictWord{6, 10, 446},\n\tdictWord{135, 10, 1817},\n\tdictWord{134, 0, 1532},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1097,\n\t},\n\tdictWord{4, 11, 119},\n\tdictWord{5, 11, 170},\n\tdictWord{5, 11, 447},\n\tdictWord{7, 11, 1708},\n\tdictWord{7, 11, 1889},\n\tdictWord{9, 11, 357},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t719,\n\t},\n\tdictWord{12, 11, 486},\n\tdictWord{140, 11, 596},\n\tdictWord{9, 10, 851},\n\tdictWord{141, 10, 510},\n\tdictWord{7, 0, 612},\n\tdictWord{8, 0, 545},\n\tdictWord{\n\t\t8,\n\t\t0,\n\t\t568,\n\t},\n\tdictWord{8, 0, 642},\n\tdictWord{9, 0, 717},\n\tdictWord{10, 0, 541},\n\tdictWord{10, 0, 763},\n\tdictWord{11, 0, 449},\n\tdictWord{12, 0, 489},\n\tdictWord{13, 0, 153},\n\tdictWord{13, 0, 296},\n\tdictWord{14, 0, 138},\n\tdictWord{14, 0, 392},\n\tdictWord{15, 0, 50},\n\tdictWord{16, 0, 6},\n\tdictWord{16, 0, 12},\n\tdictWord{20, 0, 9},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t504,\n\t},\n\tdictWord{4, 11, 450},\n\tdictWord{135, 11, 1158},\n\tdictWord{11, 0, 54},\n\tdictWord{13, 0, 173},\n\tdictWord{13, 0, 294},\n\tdictWord{5, 10, 883},\n\tdictWord{\n\t\t5,\n\t\t10,\n\t\t975,\n\t},\n\tdictWord{8, 10, 392},\n\tdictWord{148, 10, 7},\n\tdictWord{13, 0, 455},\n\tdictWord{15, 0, 99},\n\tdictWord{15, 0, 129},\n\tdictWord{144, 0, 68},\n\tdictWord{135, 0, 172},\n\tdictWord{132, 11, 754},\n\tdictWord{5, 10, 922},\n\tdictWord{134, 10, 1707},\n\tdictWord{134, 0, 1029},\n\tdictWord{17, 11, 39},\n\tdictWord{148, 11, 36},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t568,\n\t},\n\tdictWord{5, 10, 993},\n\tdictWord{7, 10, 515},\n\tdictWord{137, 10, 91},\n\tdictWord{132, 0, 732},\n\tdictWord{10, 0, 617},\n\tdictWord{138, 11, 617},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t974,\n\t},\n\tdictWord{7, 0, 989},\n\tdictWord{10, 0, 377},\n\tdictWord{12, 0, 363},\n\tdictWord{13, 0, 68},\n\tdictWord{13, 0, 94},\n\tdictWord{14, 0, 108},\n\tdictWord{\n\t\t142,\n\t\t0,\n\t\t306,\n\t},\n\tdictWord{136, 0, 733},\n\tdictWord{132, 0, 428},\n\tdictWord{7, 0, 1789},\n\tdictWord{135, 11, 1062},\n\tdictWord{7, 0, 2015},\n\tdictWord{140, 0, 665},\n\tdictWord{135, 10, 1433},\n\tdictWord{5, 0, 287},\n\tdictWord{7, 10, 921},\n\tdictWord{8, 10, 580},\n\tdictWord{8, 10, 593},\n\tdictWord{8, 10, 630},\n\tdictWord{138, 10, 28},\n\tdictWord{138, 0, 806},\n\tdictWord{4, 10, 911},\n\tdictWord{5, 10, 867},\n\tdictWord{5, 10, 1013},\n\tdictWord{7, 10, 2034},\n\tdictWord{8, 10, 798},\n\tdictWord{136, 10, 813},\n\tdictWord{134, 0, 1539},\n\tdictWord{8, 11, 523},\n\tdictWord{150, 11, 34},\n\tdictWord{135, 11, 740},\n\tdictWord{7, 11, 238},\n\tdictWord{7, 11, 2033},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t120,\n\t},\n\tdictWord{8, 11, 188},\n\tdictWord{8, 11, 659},\n\tdictWord{9, 11, 598},\n\tdictWord{10, 11, 466},\n\tdictWord{12, 11, 342},\n\tdictWord{12, 11, 588},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t503,\n\t},\n\tdictWord{14, 11, 246},\n\tdictWord{143, 11, 92},\n\tdictWord{7, 0, 1563},\n\tdictWord{141, 0, 182},\n\tdictWord{5, 10, 135},\n\tdictWord{6, 10, 519},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1722,\n\t},\n\tdictWord{10, 10, 271},\n\tdictWord{11, 10, 261},\n\tdictWord{145, 10, 54},\n\tdictWord{14, 10, 338},\n\tdictWord{148, 10, 81},\n\tdictWord{7, 0, 484},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t300,\n\t},\n\tdictWord{133, 10, 436},\n\tdictWord{145, 11, 114},\n\tdictWord{6, 0, 1623},\n\tdictWord{134, 0, 1681},\n\tdictWord{133, 11, 640},\n\tdictWord{4, 11, 201},\n\tdictWord{7, 11, 1744},\n\tdictWord{8, 11, 602},\n\tdictWord{11, 11, 247},\n\tdictWord{11, 11, 826},\n\tdictWord{145, 11, 65},\n\tdictWord{8, 11, 164},\n\tdictWord{\n\t\t146,\n\t\t11,\n\t\t62,\n\t},\n\tdictWord{6, 0, 1833},\n\tdictWord{6, 0, 1861},\n\tdictWord{136, 0, 878},\n\tdictWord{134, 0, 1569},\n\tdictWord{8, 10, 357},\n\tdictWord{10, 10, 745},\n\tdictWord{\n\t\t14,\n\t\t10,\n\t\t426,\n\t},\n\tdictWord{17, 10, 94},\n\tdictWord{147, 10, 57},\n\tdictWord{12, 0, 93},\n\tdictWord{12, 0, 501},\n\tdictWord{13, 0, 362},\n\tdictWord{14, 0, 151},\n\tdictWord{15, 0, 40},\n\tdictWord{15, 0, 59},\n\tdictWord{16, 0, 46},\n\tdictWord{17, 0, 25},\n\tdictWord{18, 0, 14},\n\tdictWord{18, 0, 134},\n\tdictWord{19, 0, 25},\n\tdictWord{19, 0, 69},\n\tdictWord{\n\t\t20,\n\t\t0,\n\t\t16,\n\t},\n\tdictWord{20, 0, 19},\n\tdictWord{20, 0, 66},\n\tdictWord{21, 0, 23},\n\tdictWord{21, 0, 25},\n\tdictWord{150, 0, 42},\n\tdictWord{6, 0, 1748},\n\tdictWord{8, 0, 715},\n\tdictWord{\n\t\t9,\n\t\t0,\n\t\t802,\n\t},\n\tdictWord{10, 0, 46},\n\tdictWord{10, 0, 819},\n\tdictWord{13, 0, 308},\n\tdictWord{14, 0, 351},\n\tdictWord{14, 0, 363},\n\tdictWord{146, 0, 67},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t994,\n\t},\n\tdictWord{4, 0, 63},\n\tdictWord{133, 0, 347},\n\tdictWord{132, 0, 591},\n\tdictWord{133, 0, 749},\n\tdictWord{7, 11, 1577},\n\tdictWord{10, 11, 304},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t549,\n\t},\n\tdictWord{11, 11, 424},\n\tdictWord{12, 11, 365},\n\tdictWord{13, 11, 220},\n\tdictWord{13, 11, 240},\n\tdictWord{142, 11, 33},\n\tdictWord{133, 0, 366},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t557,\n\t},\n\tdictWord{12, 0, 547},\n\tdictWord{14, 0, 86},\n\tdictWord{133, 10, 387},\n\tdictWord{135, 0, 1747},\n\tdictWord{132, 11, 907},\n\tdictWord{5, 11, 100},\n\tdictWord{10, 11, 329},\n\tdictWord{12, 11, 416},\n\tdictWord{149, 11, 29},\n\tdictWord{4, 10, 6},\n\tdictWord{5, 10, 708},\n\tdictWord{136, 10, 75},\n\tdictWord{7, 10, 1351},\n\tdictWord{9, 10, 581},\n\tdictWord{10, 10, 639},\n\tdictWord{11, 10, 453},\n\tdictWord{140, 10, 584},\n\tdictWord{7, 0, 89},\n\tdictWord{132, 10, 303},\n\tdictWord{138, 10, 772},\n\tdictWord{132, 11, 176},\n\tdictWord{5, 11, 636},\n\tdictWord{5, 11, 998},\n\tdictWord{8, 11, 26},\n\tdictWord{137, 11, 358},\n\tdictWord{7, 11, 9},\n\tdictWord{7, 11, 1508},\n\tdictWord{9, 11, 317},\n\tdictWord{10, 11, 210},\n\tdictWord{10, 11, 292},\n\tdictWord{10, 11, 533},\n\tdictWord{11, 11, 555},\n\tdictWord{12, 11, 526},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t607,\n\t},\n\tdictWord{13, 11, 263},\n\tdictWord{13, 11, 459},\n\tdictWord{142, 11, 271},\n\tdictWord{134, 0, 1463},\n\tdictWord{6, 0, 772},\n\tdictWord{6, 0, 1137},\n\tdictWord{\n\t\t139,\n\t\t11,\n\t\t595,\n\t},\n\tdictWord{7, 0, 977},\n\tdictWord{139, 11, 66},\n\tdictWord{138, 0, 893},\n\tdictWord{20, 0, 48},\n\tdictWord{148, 11, 48},\n\tdictWord{5, 0, 824},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t941,\n\t},\n\tdictWord{134, 11, 295},\n\tdictWord{7, 0, 1543},\n\tdictWord{7, 0, 1785},\n\tdictWord{10, 0, 690},\n\tdictWord{4, 10, 106},\n\tdictWord{139, 10, 717},\n\tdictWord{\n\t\t7,\n\t\t0,\n\t\t440,\n\t},\n\tdictWord{8, 0, 230},\n\tdictWord{139, 0, 106},\n\tdictWord{5, 10, 890},\n\tdictWord{133, 10, 988},\n\tdictWord{6, 10, 626},\n\tdictWord{142, 10, 431},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t127,\n\t},\n\tdictWord{141, 11, 27},\n\tdictWord{17, 0, 32},\n\tdictWord{10, 10, 706},\n\tdictWord{150, 10, 44},\n\tdictWord{132, 0, 216},\n\tdictWord{137, 0, 332},\n\tdictWord{4, 10, 698},\n\tdictWord{136, 11, 119},\n\tdictWord{139, 11, 267},\n\tdictWord{138, 10, 17},\n\tdictWord{11, 11, 526},\n\tdictWord{11, 11, 939},\n\tdictWord{\n\t\t141,\n\t\t11,\n\t\t290,\n\t},\n\tdictWord{7, 11, 1167},\n\tdictWord{11, 11, 934},\n\tdictWord{13, 11, 391},\n\tdictWord{145, 11, 76},\n\tdictWord{139, 11, 39},\n\tdictWord{134, 10, 84},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t914,\n\t},\n\tdictWord{5, 0, 800},\n\tdictWord{133, 0, 852},\n\tdictWord{10, 0, 416},\n\tdictWord{141, 0, 115},\n\tdictWord{7, 0, 564},\n\tdictWord{142, 0, 168},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t918,\n\t},\n\tdictWord{133, 0, 876},\n\tdictWord{134, 0, 1764},\n\tdictWord{152, 0, 3},\n\tdictWord{4, 0, 92},\n\tdictWord{5, 0, 274},\n\tdictWord{7, 11, 126},\n\tdictWord{136, 11, 84},\n\tdictWord{140, 10, 498},\n\tdictWord{136, 11, 790},\n\tdictWord{8, 0, 501},\n\tdictWord{5, 10, 986},\n\tdictWord{6, 10, 130},\n\tdictWord{7, 10, 1582},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t458,\n\t},\n\tdictWord{10, 10, 101},\n\tdictWord{10, 10, 318},\n\tdictWord{138, 10, 823},\n\tdictWord{6, 11, 64},\n\tdictWord{12, 11, 377},\n\tdictWord{141, 11, 309},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t743,\n\t},\n\tdictWord{138, 0, 851},\n\tdictWord{4, 0, 49},\n\tdictWord{7, 0, 280},\n\tdictWord{135, 0, 1633},\n\tdictWord{134, 0, 879},\n\tdictWord{136, 0, 47},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1644,\n\t},\n\tdictWord{137, 10, 129},\n\tdictWord{132, 0, 865},\n\tdictWord{134, 0, 1202},\n\tdictWord{9, 11, 34},\n\tdictWord{139, 11, 484},\n\tdictWord{135, 10, 997},\n\tdictWord{5, 0, 272},\n\tdictWord{5, 0, 908},\n\tdictWord{5, 0, 942},\n\tdictWord{8, 0, 197},\n\tdictWord{9, 0, 47},\n\tdictWord{11, 0, 538},\n\tdictWord{139, 0, 742},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t1700,\n\t},\n\tdictWord{7, 11, 26},\n\tdictWord{7, 11, 293},\n\tdictWord{7, 11, 382},\n\tdictWord{7, 11, 1026},\n\tdictWord{7, 11, 1087},\n\tdictWord{7, 11, 2027},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t24,\n\t},\n\tdictWord{8, 11, 114},\n\tdictWord{8, 11, 252},\n\tdictWord{8, 11, 727},\n\tdictWord{8, 11, 729},\n\tdictWord{9, 11, 30},\n\tdictWord{9, 11, 199},\n\tdictWord{9, 11, 231},\n\tdictWord{9, 11, 251},\n\tdictWord{9, 11, 334},\n\tdictWord{9, 11, 361},\n\tdictWord{9, 11, 488},\n\tdictWord{9, 11, 712},\n\tdictWord{10, 11, 55},\n\tdictWord{10, 11, 60},\n\tdictWord{\n\t\t10,\n\t\t11,\n\t\t232,\n\t},\n\tdictWord{10, 11, 332},\n\tdictWord{10, 11, 384},\n\tdictWord{10, 11, 396},\n\tdictWord{10, 11, 504},\n\tdictWord{10, 11, 542},\n\tdictWord{10, 11, 652},\n\tdictWord{11, 11, 20},\n\tdictWord{11, 11, 48},\n\tdictWord{11, 11, 207},\n\tdictWord{11, 11, 291},\n\tdictWord{11, 11, 298},\n\tdictWord{11, 11, 342},\n\tdictWord{\n\t\t11,\n\t\t11,\n\t\t365,\n\t},\n\tdictWord{11, 11, 394},\n\tdictWord{11, 11, 620},\n\tdictWord{11, 11, 705},\n\tdictWord{11, 11, 1017},\n\tdictWord{12, 11, 123},\n\tdictWord{12, 11, 340},\n\tdictWord{12, 11, 406},\n\tdictWord{12, 11, 643},\n\tdictWord{13, 11, 61},\n\tdictWord{13, 11, 269},\n\tdictWord{13, 11, 311},\n\tdictWord{13, 11, 319},\n\tdictWord{13, 11, 486},\n\tdictWord{14, 11, 234},\n\tdictWord{15, 11, 62},\n\tdictWord{15, 11, 85},\n\tdictWord{16, 11, 71},\n\tdictWord{18, 11, 119},\n\tdictWord{148, 11, 105},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t1455,\n\t},\n\tdictWord{150, 11, 37},\n\tdictWord{135, 10, 1927},\n\tdictWord{135, 0, 1911},\n\tdictWord{137, 0, 891},\n\tdictWord{7, 10, 1756},\n\tdictWord{137, 10, 98},\n\tdictWord{7, 10, 1046},\n\tdictWord{139, 10, 160},\n\tdictWord{132, 0, 761},\n\tdictWord{6, 11, 379},\n\tdictWord{7, 11, 270},\n\tdictWord{7, 11, 1116},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t176,\n\t},\n\tdictWord{8, 11, 183},\n\tdictWord{9, 11, 432},\n\tdictWord{9, 11, 661},\n\tdictWord{12, 11, 247},\n\tdictWord{12, 11, 617},\n\tdictWord{146, 11, 125},\n\tdictWord{\n\t\t6,\n\t\t10,\n\t\t45,\n\t},\n\tdictWord{7, 10, 433},\n\tdictWord{8, 10, 129},\n\tdictWord{9, 10, 21},\n\tdictWord{10, 10, 392},\n\tdictWord{11, 10, 79},\n\tdictWord{12, 10, 499},\n\tdictWord{\n\t\t13,\n\t\t10,\n\t\t199,\n\t},\n\tdictWord{141, 10, 451},\n\tdictWord{4, 0, 407},\n\tdictWord{5, 11, 792},\n\tdictWord{133, 11, 900},\n\tdictWord{132, 0, 560},\n\tdictWord{135, 0, 183},\n\tdictWord{\n\t\t13,\n\t\t0,\n\t\t490,\n\t},\n\tdictWord{7, 10, 558},\n\tdictWord{136, 10, 353},\n\tdictWord{4, 0, 475},\n\tdictWord{6, 0, 731},\n\tdictWord{11, 0, 35},\n\tdictWord{13, 0, 71},\n\tdictWord{13, 0, 177},\n\tdictWord{14, 0, 422},\n\tdictWord{133, 10, 785},\n\tdictWord{8, 10, 81},\n\tdictWord{9, 10, 189},\n\tdictWord{9, 10, 201},\n\tdictWord{11, 10, 478},\n\tdictWord{11, 10, 712},\n\tdictWord{141, 10, 338},\n\tdictWord{4, 0, 418},\n\tdictWord{4, 0, 819},\n\tdictWord{133, 10, 353},\n\tdictWord{151, 10, 26},\n\tdictWord{4, 11, 901},\n\tdictWord{\n\t\t133,\n\t\t11,\n\t\t776,\n\t},\n\tdictWord{132, 0, 575},\n\tdictWord{7, 0, 818},\n\tdictWord{16, 0, 92},\n\tdictWord{17, 0, 14},\n\tdictWord{17, 0, 45},\n\tdictWord{18, 0, 75},\n\tdictWord{148, 0, 18},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t222,\n\t},\n\tdictWord{7, 0, 636},\n\tdictWord{7, 0, 1620},\n\tdictWord{8, 0, 409},\n\tdictWord{9, 0, 693},\n\tdictWord{139, 0, 77},\n\tdictWord{6, 10, 25},\n\tdictWord{7, 10, 855},\n\tdictWord{7, 10, 1258},\n\tdictWord{144, 10, 32},\n\tdictWord{6, 0, 1880},\n\tdictWord{6, 0, 1887},\n\tdictWord{6, 0, 1918},\n\tdictWord{6, 0, 1924},\n\tdictWord{9, 0, 967},\n\tdictWord{9, 0, 995},\n\tdictWord{9, 0, 1015},\n\tdictWord{12, 0, 826},\n\tdictWord{12, 0, 849},\n\tdictWord{12, 0, 857},\n\tdictWord{12, 0, 860},\n\tdictWord{12, 0, 886},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t932,\n\t},\n\tdictWord{18, 0, 228},\n\tdictWord{18, 0, 231},\n\tdictWord{146, 0, 240},\n\tdictWord{134, 0, 633},\n\tdictWord{134, 0, 1308},\n\tdictWord{4, 11, 37},\n\tdictWord{\n\t\t5,\n\t\t11,\n\t\t334,\n\t},\n\tdictWord{135, 11, 1253},\n\tdictWord{10, 0, 86},\n\tdictWord{4, 10, 4},\n\tdictWord{7, 10, 1118},\n\tdictWord{7, 10, 1320},\n\tdictWord{7, 10, 1706},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t277,\n\t},\n\tdictWord{9, 10, 622},\n\tdictWord{11, 10, 724},\n\tdictWord{12, 10, 350},\n\tdictWord{12, 10, 397},\n\tdictWord{13, 10, 28},\n\tdictWord{13, 10, 159},\n\tdictWord{\n\t\t15,\n\t\t10,\n\t\t89,\n\t},\n\tdictWord{18, 10, 5},\n\tdictWord{19, 10, 9},\n\tdictWord{20, 10, 34},\n\tdictWord{150, 10, 47},\n\tdictWord{132, 11, 508},\n\tdictWord{137, 11, 448},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t107,\n\t},\n\tdictWord{146, 11, 31},\n\tdictWord{132, 0, 817},\n\tdictWord{134, 0, 663},\n\tdictWord{133, 0, 882},\n\tdictWord{134, 0, 914},\n\tdictWord{132, 11, 540},\n\tdictWord{132, 11, 533},\n\tdictWord{136, 11, 608},\n\tdictWord{8, 0, 885},\n\tdictWord{138, 0, 865},\n\tdictWord{132, 0, 426},\n\tdictWord{6, 0, 58},\n\tdictWord{7, 0, 745},\n\tdictWord{7, 0, 1969},\n\tdictWord{8, 0, 399},\n\tdictWord{8, 0, 675},\n\tdictWord{9, 0, 479},\n\tdictWord{9, 0, 731},\n\tdictWord{10, 0, 330},\n\tdictWord{10, 0, 593},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t817,\n\t},\n\tdictWord{11, 0, 32},\n\tdictWord{11, 0, 133},\n\tdictWord{11, 0, 221},\n\tdictWord{145, 0, 68},\n\tdictWord{134, 10, 255},\n\tdictWord{7, 0, 102},\n\tdictWord{\n\t\t137,\n\t\t0,\n\t\t538,\n\t},\n\tdictWord{137, 10, 216},\n\tdictWord{7, 11, 253},\n\tdictWord{136, 11, 549},\n\tdictWord{135, 11, 912},\n\tdictWord{9, 10, 183},\n\tdictWord{139, 10, 286},\n\tdictWord{11, 10, 956},\n\tdictWord{151, 10, 3},\n\tdictWord{8, 11, 527},\n\tdictWord{18, 11, 60},\n\tdictWord{147, 11, 24},\n\tdictWord{4, 10, 536},\n\tdictWord{7, 10, 1141},\n\tdictWord{10, 10, 723},\n\tdictWord{139, 10, 371},\n\tdictWord{133, 11, 920},\n\tdictWord{7, 0, 876},\n\tdictWord{135, 10, 285},\n\tdictWord{135, 10, 560},\n\tdictWord{\n\t\t132,\n\t\t10,\n\t\t690,\n\t},\n\tdictWord{142, 11, 126},\n\tdictWord{11, 10, 33},\n\tdictWord{12, 10, 571},\n\tdictWord{149, 10, 1},\n\tdictWord{133, 0, 566},\n\tdictWord{9, 0, 139},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t399,\n\t},\n\tdictWord{11, 0, 469},\n\tdictWord{12, 0, 634},\n\tdictWord{13, 0, 223},\n\tdictWord{132, 11, 483},\n\tdictWord{6, 0, 48},\n\tdictWord{135, 0, 63},\n\tdictWord{18, 0, 12},\n\tdictWord{7, 10, 1862},\n\tdictWord{12, 10, 491},\n\tdictWord{12, 10, 520},\n\tdictWord{13, 10, 383},\n\tdictWord{142, 10, 244},\n\tdictWord{135, 11, 1665},\n\tdictWord{132, 11, 448},\n\tdictWord{9, 11, 495},\n\tdictWord{146, 11, 104},\n\tdictWord{6, 0, 114},\n\tdictWord{7, 0, 1224},\n\tdictWord{7, 0, 1556},\n\tdictWord{136, 0, 3},\n\tdictWord{\n\t\t4,\n\t\t10,\n\t\t190,\n\t},\n\tdictWord{133, 10, 554},\n\tdictWord{8, 0, 576},\n\tdictWord{9, 0, 267},\n\tdictWord{133, 10, 1001},\n\tdictWord{133, 10, 446},\n\tdictWord{133, 0, 933},\n\tdictWord{139, 11, 1009},\n\tdictWord{8, 11, 653},\n\tdictWord{13, 11, 93},\n\tdictWord{147, 11, 14},\n\tdictWord{6, 0, 692},\n\tdictWord{6, 0, 821},\n\tdictWord{134, 0, 1077},\n\tdictWord{5, 11, 172},\n\tdictWord{135, 11, 801},\n\tdictWord{138, 0, 752},\n\tdictWord{4, 0, 375},\n\tdictWord{134, 0, 638},\n\tdictWord{134, 0, 1011},\n\tdictWord{\n\t\t140,\n\t\t11,\n\t\t540,\n\t},\n\tdictWord{9, 0, 96},\n\tdictWord{133, 11, 260},\n\tdictWord{139, 11, 587},\n\tdictWord{135, 10, 1231},\n\tdictWord{12, 0, 30},\n\tdictWord{13, 0, 148},\n\tdictWord{\n\t\t14,\n\t\t0,\n\t\t87,\n\t},\n\tdictWord{14, 0, 182},\n\tdictWord{16, 0, 42},\n\tdictWord{20, 0, 70},\n\tdictWord{132, 10, 304},\n\tdictWord{6, 0, 1398},\n\tdictWord{7, 0, 56},\n\tdictWord{7, 0, 1989},\n\tdictWord{8, 0, 337},\n\tdictWord{8, 0, 738},\n\tdictWord{9, 0, 600},\n\tdictWord{12, 0, 37},\n\tdictWord{13, 0, 447},\n\tdictWord{142, 0, 92},\n\tdictWord{138, 0, 666},\n\tdictWord{\n\t\t5,\n\t\t0,\n\t\t394,\n\t},\n\tdictWord{7, 0, 487},\n\tdictWord{136, 0, 246},\n\tdictWord{9, 0, 437},\n\tdictWord{6, 10, 53},\n\tdictWord{6, 10, 199},\n\tdictWord{7, 10, 1408},\n\tdictWord{8, 10, 32},\n\tdictWord{8, 10, 93},\n\tdictWord{10, 10, 397},\n\tdictWord{10, 10, 629},\n\tdictWord{11, 10, 593},\n\tdictWord{11, 10, 763},\n\tdictWord{13, 10, 326},\n\tdictWord{145, 10, 35},\n\tdictWord{134, 10, 105},\n\tdictWord{9, 0, 320},\n\tdictWord{10, 0, 506},\n\tdictWord{138, 10, 794},\n\tdictWord{7, 11, 57},\n\tdictWord{8, 11, 167},\n\tdictWord{8, 11, 375},\n\tdictWord{9, 11, 82},\n\tdictWord{9, 11, 561},\n\tdictWord{10, 11, 620},\n\tdictWord{10, 11, 770},\n\tdictWord{11, 10, 704},\n\tdictWord{141, 10, 396},\n\tdictWord{6, 0, 1003},\n\tdictWord{5, 10, 114},\n\tdictWord{5, 10, 255},\n\tdictWord{141, 10, 285},\n\tdictWord{7, 0, 866},\n\tdictWord{135, 0, 1163},\n\tdictWord{133, 11, 531},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t328,\n\t},\n\tdictWord{7, 10, 2035},\n\tdictWord{8, 10, 19},\n\tdictWord{9, 10, 89},\n\tdictWord{138, 10, 831},\n\tdictWord{8, 11, 194},\n\tdictWord{136, 11, 756},\n\tdictWord{\n\t\t136,\n\t\t0,\n\t\t1000,\n\t},\n\tdictWord{5, 11, 453},\n\tdictWord{134, 11, 441},\n\tdictWord{4, 0, 101},\n\tdictWord{5, 0, 833},\n\tdictWord{7, 0, 1171},\n\tdictWord{136, 0, 744},\n\tdictWord{\n\t\t133,\n\t\t0,\n\t\t726,\n\t},\n\tdictWord{136, 10, 746},\n\tdictWord{138, 0, 176},\n\tdictWord{6, 0, 9},\n\tdictWord{6, 0, 397},\n\tdictWord{7, 0, 53},\n\tdictWord{7, 0, 1742},\n\tdictWord{10, 0, 632},\n\tdictWord{11, 0, 828},\n\tdictWord{140, 0, 146},\n\tdictWord{135, 11, 22},\n\tdictWord{145, 11, 64},\n\tdictWord{132, 0, 839},\n\tdictWord{11, 0, 417},\n\tdictWord{12, 0, 223},\n\tdictWord{140, 0, 265},\n\tdictWord{4, 11, 102},\n\tdictWord{7, 11, 815},\n\tdictWord{7, 11, 1699},\n\tdictWord{139, 11, 964},\n\tdictWord{5, 10, 955},\n\tdictWord{\n\t\t136,\n\t\t10,\n\t\t814,\n\t},\n\tdictWord{6, 0, 1931},\n\tdictWord{6, 0, 2007},\n\tdictWord{18, 0, 246},\n\tdictWord{146, 0, 247},\n\tdictWord{8, 0, 198},\n\tdictWord{11, 0, 29},\n\tdictWord{140, 0, 534},\n\tdictWord{135, 0, 1771},\n\tdictWord{6, 0, 846},\n\tdictWord{7, 11, 1010},\n\tdictWord{11, 11, 733},\n\tdictWord{11, 11, 759},\n\tdictWord{12, 11, 563},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t34,\n\t},\n\tdictWord{14, 11, 101},\n\tdictWord{18, 11, 45},\n\tdictWord{146, 11, 129},\n\tdictWord{4, 0, 186},\n\tdictWord{5, 0, 157},\n\tdictWord{8, 0, 168},\n\tdictWord{138, 0, 6},\n\tdictWord{132, 11, 899},\n\tdictWord{133, 10, 56},\n\tdictWord{148, 10, 100},\n\tdictWord{133, 0, 875},\n\tdictWord{5, 0, 773},\n\tdictWord{5, 0, 991},\n\tdictWord{6, 0, 1635},\n\tdictWord{134, 0, 1788},\n\tdictWord{6, 0, 1274},\n\tdictWord{9, 0, 477},\n\tdictWord{141, 0, 78},\n\tdictWord{4, 0, 639},\n\tdictWord{7, 0, 111},\n\tdictWord{8, 0, 581},\n\tdictWord{\n\t\t12,\n\t\t0,\n\t\t177,\n\t},\n\tdictWord{6, 11, 52},\n\tdictWord{9, 11, 104},\n\tdictWord{9, 11, 559},\n\tdictWord{10, 10, 4},\n\tdictWord{10, 10, 13},\n\tdictWord{11, 10, 638},\n\tdictWord{\n\t\t12,\n\t\t11,\n\t\t308,\n\t},\n\tdictWord{19, 11, 87},\n\tdictWord{148, 10, 57},\n\tdictWord{132, 11, 604},\n\tdictWord{4, 11, 301},\n\tdictWord{133, 10, 738},\n\tdictWord{133, 10, 758},\n\tdictWord{134, 0, 1747},\n\tdictWord{7, 11, 1440},\n\tdictWord{11, 11, 854},\n\tdictWord{11, 11, 872},\n\tdictWord{11, 11, 921},\n\tdictWord{12, 11, 551},\n\tdictWord{\n\t\t13,\n\t\t11,\n\t\t472,\n\t},\n\tdictWord{142, 11, 367},\n\tdictWord{7, 0, 1364},\n\tdictWord{7, 0, 1907},\n\tdictWord{141, 0, 158},\n\tdictWord{134, 0, 873},\n\tdictWord{4, 0, 404},\n\tdictWord{\n\t\t4,\n\t\t0,\n\t\t659,\n\t},\n\tdictWord{7, 0, 552},\n\tdictWord{135, 0, 675},\n\tdictWord{135, 10, 1112},\n\tdictWord{139, 10, 328},\n\tdictWord{7, 11, 508},\n\tdictWord{137, 10, 133},\n\tdictWord{133, 0, 391},\n\tdictWord{5, 10, 110},\n\tdictWord{6, 10, 169},\n\tdictWord{6, 10, 1702},\n\tdictWord{7, 10, 400},\n\tdictWord{8, 10, 538},\n\tdictWord{9, 10, 184},\n\tdictWord{\n\t\t9,\n\t\t10,\n\t\t524,\n\t},\n\tdictWord{140, 10, 218},\n\tdictWord{6, 11, 310},\n\tdictWord{7, 11, 1849},\n\tdictWord{8, 11, 72},\n\tdictWord{8, 11, 272},\n\tdictWord{8, 11, 431},\n\tdictWord{\n\t\t9,\n\t\t11,\n\t\t12,\n\t},\n\tdictWord{9, 11, 351},\n\tdictWord{10, 11, 563},\n\tdictWord{10, 11, 630},\n\tdictWord{10, 11, 810},\n\tdictWord{11, 11, 367},\n\tdictWord{11, 11, 599},\n\tdictWord{11, 11, 686},\n\tdictWord{140, 11, 672},\n\tdictWord{5, 0, 540},\n\tdictWord{6, 0, 1697},\n\tdictWord{136, 0, 668},\n\tdictWord{132, 0, 883},\n\tdictWord{134, 0, 78},\n\tdictWord{12, 0, 628},\n\tdictWord{18, 0, 79},\n\tdictWord{6, 10, 133},\n\tdictWord{9, 10, 353},\n\tdictWord{139, 10, 993},\n\tdictWord{6, 11, 181},\n\tdictWord{7, 11, 537},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t64,\n\t},\n\tdictWord{9, 11, 127},\n\tdictWord{10, 11, 496},\n\tdictWord{12, 11, 510},\n\tdictWord{141, 11, 384},\n\tdictWord{6, 10, 93},\n\tdictWord{7, 10, 1422},\n\tdictWord{\n\t\t7,\n\t\t10,\n\t\t1851,\n\t},\n\tdictWord{8, 10, 673},\n\tdictWord{9, 10, 529},\n\tdictWord{140, 10, 43},\n\tdictWord{137, 10, 371},\n\tdictWord{134, 0, 1460},\n\tdictWord{134, 0, 962},\n\tdictWord{4, 11, 244},\n\tdictWord{135, 11, 233},\n\tdictWord{9, 10, 25},\n\tdictWord{10, 10, 467},\n\tdictWord{138, 10, 559},\n\tdictWord{4, 10, 335},\n\tdictWord{\n\t\t135,\n\t\t10,\n\t\t942,\n\t},\n\tdictWord{133, 0, 460},\n\tdictWord{135, 11, 334},\n\tdictWord{134, 11, 1650},\n\tdictWord{4, 0, 199},\n\tdictWord{139, 0, 34},\n\tdictWord{5, 10, 601},\n\tdictWord{\n\t\t8,\n\t\t10,\n\t\t39,\n\t},\n\tdictWord{10, 10, 773},\n\tdictWord{11, 10, 84},\n\tdictWord{12, 10, 205},\n\tdictWord{142, 10, 1},\n\tdictWord{133, 10, 870},\n\tdictWord{134, 0, 388},\n\tdictWord{14, 0, 474},\n\tdictWord{148, 0, 120},\n\tdictWord{133, 11, 369},\n\tdictWord{139, 0, 271},\n\tdictWord{4, 0, 511},\n\tdictWord{9, 0, 333},\n\tdictWord{9, 0, 379},\n\tdictWord{\n\t\t10,\n\t\t0,\n\t\t602,\n\t},\n\tdictWord{11, 0, 441},\n\tdictWord{11, 0, 723},\n\tdictWord{11, 0, 976},\n\tdictWord{12, 0, 357},\n\tdictWord{132, 10, 181},\n\tdictWord{134, 0, 608},\n\tdictWord{134, 10, 1652},\n\tdictWord{22, 0, 49},\n\tdictWord{137, 11, 338},\n\tdictWord{140, 0, 988},\n\tdictWord{134, 0, 617},\n\tdictWord{5, 0, 938},\n\tdictWord{136, 0, 707},\n\tdictWord{132, 10, 97},\n\tdictWord{5, 10, 147},\n\tdictWord{6, 10, 286},\n\tdictWord{7, 10, 1362},\n\tdictWord{141, 10, 176},\n\tdictWord{6, 0, 756},\n\tdictWord{\n\t\t134,\n\t\t0,\n\t\t1149,\n\t},\n\tdictWord{133, 11, 896},\n\tdictWord{6, 10, 375},\n\tdictWord{7, 10, 169},\n\tdictWord{7, 10, 254},\n\tdictWord{136, 10, 780},\n\tdictWord{134, 0, 1583},\n\tdictWord{135, 10, 1447},\n\tdictWord{139, 0, 285},\n\tdictWord{7, 11, 1117},\n\tdictWord{8, 11, 393},\n\tdictWord{136, 11, 539},\n\tdictWord{135, 0, 344},\n\tdictWord{\n\t\t6,\n\t\t0,\n\t\t469,\n\t},\n\tdictWord{7, 0, 1709},\n\tdictWord{138, 0, 515},\n\tdictWord{5, 10, 629},\n\tdictWord{135, 10, 1549},\n\tdictWord{5, 11, 4},\n\tdictWord{5, 11, 810},\n\tdictWord{\n\t\t6,\n\t\t11,\n\t\t13,\n\t},\n\tdictWord{6, 11, 538},\n\tdictWord{6, 11, 1690},\n\tdictWord{6, 11, 1726},\n\tdictWord{7, 11, 499},\n\tdictWord{7, 11, 1819},\n\tdictWord{8, 11, 148},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t696,\n\t},\n\tdictWord{8, 11, 791},\n\tdictWord{12, 11, 125},\n\tdictWord{13, 11, 54},\n\tdictWord{143, 11, 9},\n\tdictWord{135, 11, 1268},\n\tdictWord{137, 0, 404},\n\tdictWord{\n\t\t132,\n\t\t0,\n\t\t500,\n\t},\n\tdictWord{5, 0, 68},\n\tdictWord{134, 0, 383},\n\tdictWord{11, 0, 216},\n\tdictWord{139, 0, 340},\n\tdictWord{4, 11, 925},\n\tdictWord{5, 11, 803},\n\tdictWord{\n\t\t8,\n\t\t11,\n\t\t698,\n\t},\n\tdictWord{138, 11, 828},\n\tdictWord{4, 0, 337},\n\tdictWord{6, 0, 353},\n\tdictWord{7, 0, 1934},\n\tdictWord{8, 0, 488},\n\tdictWord{137, 0, 429},\n\tdictWord{7, 0, 236},\n\tdictWord{7, 0, 1795},\n\tdictWord{8, 0, 259},\n\tdictWord{9, 0, 135},\n\tdictWord{9, 0, 177},\n\tdictWord{9, 0, 860},\n\tdictWord{10, 0, 825},\n\tdictWord{11, 0, 115},\n\tdictWord{\n\t\t11,\n\t\t0,\n\t\t370,\n\t},\n\tdictWord{11, 0, 405},\n\tdictWord{11, 0, 604},\n\tdictWord{12, 0, 10},\n\tdictWord{12, 0, 667},\n\tdictWord{12, 0, 669},\n\tdictWord{13, 0, 76},\n\tdictWord{14, 0, 310},\n\tdictWord{15, 0, 76},\n\tdictWord{15, 0, 147},\n\tdictWord{148, 0, 23},\n\tdictWord{4, 0, 15},\n\tdictWord{4, 0, 490},\n\tdictWord{5, 0, 22},\n\tdictWord{6, 0, 244},\n\tdictWord{7, 0, 40},\n\tdictWord{7, 0, 200},\n\tdictWord{7, 0, 906},\n\tdictWord{7, 0, 1199},\n\tdictWord{9, 0, 616},\n\tdictWord{10, 0, 716},\n\tdictWord{11, 0, 635},\n\tdictWord{11, 0, 801},\n\tdictWord{\n\t\t140,\n\t\t0,\n\t\t458,\n\t},\n\tdictWord{12, 0, 756},\n\tdictWord{132, 10, 420},\n\tdictWord{134, 0, 1504},\n\tdictWord{6, 0, 757},\n\tdictWord{133, 11, 383},\n\tdictWord{6, 0, 1266},\n\tdictWord{\n\t\t135,\n\t\t0,\n\t\t1735,\n\t},\n\tdictWord{5, 0, 598},\n\tdictWord{7, 0, 791},\n\tdictWord{8, 0, 108},\n\tdictWord{9, 0, 123},\n\tdictWord{7, 10, 1570},\n\tdictWord{140, 10, 542},\n\tdictWord{\n\t\t142,\n\t\t11,\n\t\t410,\n\t},\n\tdictWord{9, 11, 660},\n\tdictWord{138, 11, 347},\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/symbol_list.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Utilities for building Huffman decoding tables. */\n\ntype symbolList struct {\n\tstorage []uint16\n\toffset  int\n}\n\nfunc symbolListGet(sl symbolList, i int) uint16 {\n\treturn sl.storage[i+sl.offset]\n}\n\nfunc symbolListPut(sl symbolList, i int, val uint16) {\n\tsl.storage[i+sl.offset] = val\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/transform.go",
    "content": "package brotli\n\nconst (\n\ttransformIdentity       = 0\n\ttransformOmitLast1      = 1\n\ttransformOmitLast2      = 2\n\ttransformOmitLast3      = 3\n\ttransformOmitLast4      = 4\n\ttransformOmitLast5      = 5\n\ttransformOmitLast6      = 6\n\ttransformOmitLast7      = 7\n\ttransformOmitLast8      = 8\n\ttransformOmitLast9      = 9\n\ttransformUppercaseFirst = 10\n\ttransformUppercaseAll   = 11\n\ttransformOmitFirst1     = 12\n\ttransformOmitFirst2     = 13\n\ttransformOmitFirst3     = 14\n\ttransformOmitFirst4     = 15\n\ttransformOmitFirst5     = 16\n\ttransformOmitFirst6     = 17\n\ttransformOmitFirst7     = 18\n\ttransformOmitFirst8     = 19\n\ttransformOmitFirst9     = 20\n\ttransformShiftFirst     = 21\n\ttransformShiftAll       = 22 + iota - 22\n\tnumTransformTypes\n)\n\nconst transformsMaxCutOff = transformOmitLast9\n\ntype transforms struct {\n\tprefix_suffix_size uint16\n\tprefix_suffix      []byte\n\tprefix_suffix_map  []uint16\n\tnum_transforms     uint32\n\ttransforms         []byte\n\tparams             []byte\n\tcutOffTransforms   [transformsMaxCutOff + 1]int16\n}\n\nfunc transformPrefixId(t *transforms, I int) byte {\n\treturn t.transforms[(I*3)+0]\n}\n\nfunc transformType(t *transforms, I int) byte {\n\treturn t.transforms[(I*3)+1]\n}\n\nfunc transformSuffixId(t *transforms, I int) byte {\n\treturn t.transforms[(I*3)+2]\n}\n\nfunc transformPrefix(t *transforms, I int) []byte {\n\treturn t.prefix_suffix[t.prefix_suffix_map[transformPrefixId(t, I)]:]\n}\n\nfunc transformSuffix(t *transforms, I int) []byte {\n\treturn t.prefix_suffix[t.prefix_suffix_map[transformSuffixId(t, I)]:]\n}\n\n/* RFC 7932 transforms string data */\nconst kPrefixSuffix string = \"\\001 \\002, \\010 of the \\004 of \\002s \\001.\\005 and \\004 \" + \"in \\001\\\"\\004 to \\002\\\">\\001\\n\\002. \\001]\\005 for \\003 a \\006 \" + \"that \\001'\\006 with \\006 from \\004 by \\001(\\006. T\" + \"he \\004 on \\004 as \\004 is \\004ing \\002\\n\\t\\001:\\003ed \" + \"\\002=\\\"\\004 at \\003ly \\001,\\002='\\005.com/\\007. This \\005\" + \" not \\003er \\003al \\004ful \\004ive \\005less \\004es\" + \"t \\004ize \\002\\xc2\\xa0\\004ous \\005 the \\002e \\000\"\n\nvar kPrefixSuffixMap = [50]uint16{\n\t0x00,\n\t0x02,\n\t0x05,\n\t0x0E,\n\t0x13,\n\t0x16,\n\t0x18,\n\t0x1E,\n\t0x23,\n\t0x25,\n\t0x2A,\n\t0x2D,\n\t0x2F,\n\t0x32,\n\t0x34,\n\t0x3A,\n\t0x3E,\n\t0x45,\n\t0x47,\n\t0x4E,\n\t0x55,\n\t0x5A,\n\t0x5C,\n\t0x63,\n\t0x68,\n\t0x6D,\n\t0x72,\n\t0x77,\n\t0x7A,\n\t0x7C,\n\t0x80,\n\t0x83,\n\t0x88,\n\t0x8C,\n\t0x8E,\n\t0x91,\n\t0x97,\n\t0x9F,\n\t0xA5,\n\t0xA9,\n\t0xAD,\n\t0xB2,\n\t0xB7,\n\t0xBD,\n\t0xC2,\n\t0xC7,\n\t0xCA,\n\t0xCF,\n\t0xD5,\n\t0xD8,\n}\n\n/* RFC 7932 transforms */\nvar kTransformsData = []byte{\n\t49,\n\ttransformIdentity,\n\t49,\n\t49,\n\ttransformIdentity,\n\t0,\n\t0,\n\ttransformIdentity,\n\t0,\n\t49,\n\ttransformOmitFirst1,\n\t49,\n\t49,\n\ttransformUppercaseFirst,\n\t0,\n\t49,\n\ttransformIdentity,\n\t47,\n\t0,\n\ttransformIdentity,\n\t49,\n\t4,\n\ttransformIdentity,\n\t0,\n\t49,\n\ttransformIdentity,\n\t3,\n\t49,\n\ttransformUppercaseFirst,\n\t49,\n\t49,\n\ttransformIdentity,\n\t6,\n\t49,\n\ttransformOmitFirst2,\n\t49,\n\t49,\n\ttransformOmitLast1,\n\t49,\n\t1,\n\ttransformIdentity,\n\t0,\n\t49,\n\ttransformIdentity,\n\t1,\n\t0,\n\ttransformUppercaseFirst,\n\t0,\n\t49,\n\ttransformIdentity,\n\t7,\n\t49,\n\ttransformIdentity,\n\t9,\n\t48,\n\ttransformIdentity,\n\t0,\n\t49,\n\ttransformIdentity,\n\t8,\n\t49,\n\ttransformIdentity,\n\t5,\n\t49,\n\ttransformIdentity,\n\t10,\n\t49,\n\ttransformIdentity,\n\t11,\n\t49,\n\ttransformOmitLast3,\n\t49,\n\t49,\n\ttransformIdentity,\n\t13,\n\t49,\n\ttransformIdentity,\n\t14,\n\t49,\n\ttransformOmitFirst3,\n\t49,\n\t49,\n\ttransformOmitLast2,\n\t49,\n\t49,\n\ttransformIdentity,\n\t15,\n\t49,\n\ttransformIdentity,\n\t16,\n\t0,\n\ttransformUppercaseFirst,\n\t49,\n\t49,\n\ttransformIdentity,\n\t12,\n\t5,\n\ttransformIdentity,\n\t49,\n\t0,\n\ttransformIdentity,\n\t1,\n\t49,\n\ttransformOmitFirst4,\n\t49,\n\t49,\n\ttransformIdentity,\n\t18,\n\t49,\n\ttransformIdentity,\n\t17,\n\t49,\n\ttransformIdentity,\n\t19,\n\t49,\n\ttransformIdentity,\n\t20,\n\t49,\n\ttransformOmitFirst5,\n\t49,\n\t49,\n\ttransformOmitFirst6,\n\t49,\n\t47,\n\ttransformIdentity,\n\t49,\n\t49,\n\ttransformOmitLast4,\n\t49,\n\t49,\n\ttransformIdentity,\n\t22,\n\t49,\n\ttransformUppercaseAll,\n\t49,\n\t49,\n\ttransformIdentity,\n\t23,\n\t49,\n\ttransformIdentity,\n\t24,\n\t49,\n\ttransformIdentity,\n\t25,\n\t49,\n\ttransformOmitLast7,\n\t49,\n\t49,\n\ttransformOmitLast1,\n\t26,\n\t49,\n\ttransformIdentity,\n\t27,\n\t49,\n\ttransformIdentity,\n\t28,\n\t0,\n\ttransformIdentity,\n\t12,\n\t49,\n\ttransformIdentity,\n\t29,\n\t49,\n\ttransformOmitFirst9,\n\t49,\n\t49,\n\ttransformOmitFirst7,\n\t49,\n\t49,\n\ttransformOmitLast6,\n\t49,\n\t49,\n\ttransformIdentity,\n\t21,\n\t49,\n\ttransformUppercaseFirst,\n\t1,\n\t49,\n\ttransformOmitLast8,\n\t49,\n\t49,\n\ttransformIdentity,\n\t31,\n\t49,\n\ttransformIdentity,\n\t32,\n\t47,\n\ttransformIdentity,\n\t3,\n\t49,\n\ttransformOmitLast5,\n\t49,\n\t49,\n\ttransformOmitLast9,\n\t49,\n\t0,\n\ttransformUppercaseFirst,\n\t1,\n\t49,\n\ttransformUppercaseFirst,\n\t8,\n\t5,\n\ttransformIdentity,\n\t21,\n\t49,\n\ttransformUppercaseAll,\n\t0,\n\t49,\n\ttransformUppercaseFirst,\n\t10,\n\t49,\n\ttransformIdentity,\n\t30,\n\t0,\n\ttransformIdentity,\n\t5,\n\t35,\n\ttransformIdentity,\n\t49,\n\t47,\n\ttransformIdentity,\n\t2,\n\t49,\n\ttransformUppercaseFirst,\n\t17,\n\t49,\n\ttransformIdentity,\n\t36,\n\t49,\n\ttransformIdentity,\n\t33,\n\t5,\n\ttransformIdentity,\n\t0,\n\t49,\n\ttransformUppercaseFirst,\n\t21,\n\t49,\n\ttransformUppercaseFirst,\n\t5,\n\t49,\n\ttransformIdentity,\n\t37,\n\t0,\n\ttransformIdentity,\n\t30,\n\t49,\n\ttransformIdentity,\n\t38,\n\t0,\n\ttransformUppercaseAll,\n\t0,\n\t49,\n\ttransformIdentity,\n\t39,\n\t0,\n\ttransformUppercaseAll,\n\t49,\n\t49,\n\ttransformIdentity,\n\t34,\n\t49,\n\ttransformUppercaseAll,\n\t8,\n\t49,\n\ttransformUppercaseFirst,\n\t12,\n\t0,\n\ttransformIdentity,\n\t21,\n\t49,\n\ttransformIdentity,\n\t40,\n\t0,\n\ttransformUppercaseFirst,\n\t12,\n\t49,\n\ttransformIdentity,\n\t41,\n\t49,\n\ttransformIdentity,\n\t42,\n\t49,\n\ttransformUppercaseAll,\n\t17,\n\t49,\n\ttransformIdentity,\n\t43,\n\t0,\n\ttransformUppercaseFirst,\n\t5,\n\t49,\n\ttransformUppercaseAll,\n\t10,\n\t0,\n\ttransformIdentity,\n\t34,\n\t49,\n\ttransformUppercaseFirst,\n\t33,\n\t49,\n\ttransformIdentity,\n\t44,\n\t49,\n\ttransformUppercaseAll,\n\t5,\n\t45,\n\ttransformIdentity,\n\t49,\n\t0,\n\ttransformIdentity,\n\t33,\n\t49,\n\ttransformUppercaseFirst,\n\t30,\n\t49,\n\ttransformUppercaseAll,\n\t30,\n\t49,\n\ttransformIdentity,\n\t46,\n\t49,\n\ttransformUppercaseAll,\n\t1,\n\t49,\n\ttransformUppercaseFirst,\n\t34,\n\t0,\n\ttransformUppercaseFirst,\n\t33,\n\t0,\n\ttransformUppercaseAll,\n\t30,\n\t0,\n\ttransformUppercaseAll,\n\t1,\n\t49,\n\ttransformUppercaseAll,\n\t33,\n\t49,\n\ttransformUppercaseAll,\n\t21,\n\t49,\n\ttransformUppercaseAll,\n\t12,\n\t0,\n\ttransformUppercaseAll,\n\t5,\n\t49,\n\ttransformUppercaseAll,\n\t34,\n\t0,\n\ttransformUppercaseAll,\n\t12,\n\t0,\n\ttransformUppercaseFirst,\n\t30,\n\t0,\n\ttransformUppercaseAll,\n\t34,\n\t0,\n\ttransformUppercaseFirst,\n\t34,\n}\n\nvar kBrotliTransforms = transforms{\n\t217,\n\t[]byte(kPrefixSuffix),\n\tkPrefixSuffixMap[:],\n\t121,\n\tkTransformsData,\n\tnil, /* no extra parameters */\n\t[transformsMaxCutOff + 1]int16{0, 12, 27, 23, 42, 63, 56, 48, 59, 64},\n}\n\nfunc getTransforms() *transforms {\n\treturn &kBrotliTransforms\n}\n\nfunc toUpperCase(p []byte) int {\n\tif p[0] < 0xC0 {\n\t\tif p[0] >= 'a' && p[0] <= 'z' {\n\t\t\tp[0] ^= 32\n\t\t}\n\n\t\treturn 1\n\t}\n\n\t/* An overly simplified uppercasing model for UTF-8. */\n\tif p[0] < 0xE0 {\n\t\tp[1] ^= 32\n\t\treturn 2\n\t}\n\n\t/* An arbitrary transform for three byte characters. */\n\tp[2] ^= 5\n\n\treturn 3\n}\n\nfunc shiftTransform(word []byte, word_len int, parameter uint16) int {\n\t/* Limited sign extension: scalar < (1 << 24). */\n\tvar scalar uint32 = (uint32(parameter) & 0x7FFF) + (0x1000000 - (uint32(parameter) & 0x8000))\n\tif word[0] < 0x80 {\n\t\t/* 1-byte rune / 0sssssss / 7 bit scalar (ASCII). */\n\t\tscalar += uint32(word[0])\n\n\t\tword[0] = byte(scalar & 0x7F)\n\t\treturn 1\n\t} else if word[0] < 0xC0 {\n\t\t/* Continuation / 10AAAAAA. */\n\t\treturn 1\n\t} else if word[0] < 0xE0 {\n\t\t/* 2-byte rune / 110sssss AAssssss / 11 bit scalar. */\n\t\tif word_len < 2 {\n\t\t\treturn 1\n\t\t}\n\t\tscalar += uint32(word[1]&0x3F | (word[0]&0x1F)<<6)\n\t\tword[0] = byte(0xC0 | (scalar>>6)&0x1F)\n\t\tword[1] = byte(uint32(word[1]&0xC0) | scalar&0x3F)\n\t\treturn 2\n\t} else if word[0] < 0xF0 {\n\t\t/* 3-byte rune / 1110ssss AAssssss BBssssss / 16 bit scalar. */\n\t\tif word_len < 3 {\n\t\t\treturn word_len\n\t\t}\n\t\tscalar += uint32(word[2])&0x3F | uint32(word[1]&0x3F)<<6 | uint32(word[0]&0x0F)<<12\n\t\tword[0] = byte(0xE0 | (scalar>>12)&0x0F)\n\t\tword[1] = byte(uint32(word[1]&0xC0) | (scalar>>6)&0x3F)\n\t\tword[2] = byte(uint32(word[2]&0xC0) | scalar&0x3F)\n\t\treturn 3\n\t} else if word[0] < 0xF8 {\n\t\t/* 4-byte rune / 11110sss AAssssss BBssssss CCssssss / 21 bit scalar. */\n\t\tif word_len < 4 {\n\t\t\treturn word_len\n\t\t}\n\t\tscalar += uint32(word[3])&0x3F | uint32(word[2]&0x3F)<<6 | uint32(word[1]&0x3F)<<12 | uint32(word[0]&0x07)<<18\n\t\tword[0] = byte(0xF0 | (scalar>>18)&0x07)\n\t\tword[1] = byte(uint32(word[1]&0xC0) | (scalar>>12)&0x3F)\n\t\tword[2] = byte(uint32(word[2]&0xC0) | (scalar>>6)&0x3F)\n\t\tword[3] = byte(uint32(word[3]&0xC0) | scalar&0x3F)\n\t\treturn 4\n\t}\n\n\treturn 1\n}\n\nfunc transformDictionaryWord(dst []byte, word []byte, len int, trans *transforms, transform_idx int) int {\n\tvar idx int = 0\n\tvar prefix []byte = transformPrefix(trans, transform_idx)\n\tvar type_ byte = transformType(trans, transform_idx)\n\tvar suffix []byte = transformSuffix(trans, transform_idx)\n\t{\n\t\tvar prefix_len int = int(prefix[0])\n\t\tprefix = prefix[1:]\n\t\tfor {\n\t\t\ttmp1 := prefix_len\n\t\t\tprefix_len--\n\t\t\tif tmp1 == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[idx] = prefix[0]\n\t\t\tidx++\n\t\t\tprefix = prefix[1:]\n\t\t}\n\t}\n\t{\n\t\tvar t int = int(type_)\n\t\tvar i int = 0\n\t\tif t <= transformOmitLast9 {\n\t\t\tlen -= t\n\t\t} else if t >= transformOmitFirst1 && t <= transformOmitFirst9 {\n\t\t\tvar skip int = t - (transformOmitFirst1 - 1)\n\t\t\tword = word[skip:]\n\t\t\tlen -= skip\n\t\t}\n\n\t\tfor i < len {\n\t\t\tdst[idx] = word[i]\n\t\t\tidx++\n\t\t\ti++\n\t\t}\n\t\tif t == transformUppercaseFirst {\n\t\t\ttoUpperCase(dst[idx-len:])\n\t\t} else if t == transformUppercaseAll {\n\t\t\tvar uppercase []byte = dst\n\t\t\tuppercase = uppercase[idx-len:]\n\t\t\tfor len > 0 {\n\t\t\t\tvar step int = toUpperCase(uppercase)\n\t\t\t\tuppercase = uppercase[step:]\n\t\t\t\tlen -= step\n\t\t\t}\n\t\t} else if t == transformShiftFirst {\n\t\t\tvar param uint16 = uint16(trans.params[transform_idx*2]) + uint16(trans.params[transform_idx*2+1])<<8\n\t\t\tshiftTransform(dst[idx-len:], int(len), param)\n\t\t} else if t == transformShiftAll {\n\t\t\tvar param uint16 = uint16(trans.params[transform_idx*2]) + uint16(trans.params[transform_idx*2+1])<<8\n\t\t\tvar shift []byte = dst\n\t\t\tshift = shift[idx-len:]\n\t\t\tfor len > 0 {\n\t\t\t\tvar step int = shiftTransform(shift, int(len), param)\n\t\t\t\tshift = shift[step:]\n\t\t\t\tlen -= step\n\t\t\t}\n\t\t}\n\t}\n\t{\n\t\tvar suffix_len int = int(suffix[0])\n\t\tsuffix = suffix[1:]\n\t\tfor {\n\t\t\ttmp2 := suffix_len\n\t\t\tsuffix_len--\n\t\t\tif tmp2 == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[idx] = suffix[0]\n\t\t\tidx++\n\t\t\tsuffix = suffix[1:]\n\t\t}\n\t\treturn idx\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/utf8_util.go",
    "content": "package brotli\n\n/* Copyright 2013 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Heuristics for deciding about the UTF8-ness of strings. */\n\nconst kMinUTF8Ratio float64 = 0.75\n\n/* Returns 1 if at least min_fraction of the bytes between pos and\n   pos + length in the (data, mask) ring-buffer is UTF8-encoded, otherwise\n   returns 0. */\nfunc parseAsUTF8(symbol *int, input []byte, size uint) uint {\n\t/* ASCII */\n\tif input[0]&0x80 == 0 {\n\t\t*symbol = int(input[0])\n\t\tif *symbol > 0 {\n\t\t\treturn 1\n\t\t}\n\t}\n\n\t/* 2-byte UTF8 */\n\tif size > 1 && input[0]&0xE0 == 0xC0 && input[1]&0xC0 == 0x80 {\n\t\t*symbol = (int(input[0])&0x1F)<<6 | int(input[1])&0x3F\n\t\tif *symbol > 0x7F {\n\t\t\treturn 2\n\t\t}\n\t}\n\n\t/* 3-byte UFT8 */\n\tif size > 2 && input[0]&0xF0 == 0xE0 && input[1]&0xC0 == 0x80 && input[2]&0xC0 == 0x80 {\n\t\t*symbol = (int(input[0])&0x0F)<<12 | (int(input[1])&0x3F)<<6 | int(input[2])&0x3F\n\t\tif *symbol > 0x7FF {\n\t\t\treturn 3\n\t\t}\n\t}\n\n\t/* 4-byte UFT8 */\n\tif size > 3 && input[0]&0xF8 == 0xF0 && input[1]&0xC0 == 0x80 && input[2]&0xC0 == 0x80 && input[3]&0xC0 == 0x80 {\n\t\t*symbol = (int(input[0])&0x07)<<18 | (int(input[1])&0x3F)<<12 | (int(input[2])&0x3F)<<6 | int(input[3])&0x3F\n\t\tif *symbol > 0xFFFF && *symbol <= 0x10FFFF {\n\t\t\treturn 4\n\t\t}\n\t}\n\n\t/* Not UTF8, emit a special symbol above the UTF8-code space */\n\t*symbol = 0x110000 | int(input[0])\n\n\treturn 1\n}\n\n/* Returns 1 if at least min_fraction of the data is UTF8-encoded.*/\nfunc isMostlyUTF8(data []byte, pos uint, mask uint, length uint, min_fraction float64) bool {\n\tvar size_utf8 uint = 0\n\tvar i uint = 0\n\tfor i < length {\n\t\tvar symbol int\n\t\tvar current_data []byte\n\t\tcurrent_data = data[(pos+i)&mask:]\n\t\tvar bytes_read uint = parseAsUTF8(&symbol, current_data, length-i)\n\t\ti += bytes_read\n\t\tif symbol < 0x110000 {\n\t\t\tsize_utf8 += bytes_read\n\t\t}\n\t}\n\n\treturn float64(size_utf8) > min_fraction*float64(length)\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/util.go",
    "content": "package brotli\n\nfunc assert(cond bool) {\n\tif !cond {\n\t\tpanic(\"assertion failure\")\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/write_bits.go",
    "content": "package brotli\n\n/* Copyright 2010 Google Inc. All Rights Reserved.\n\n   Distributed under MIT license.\n   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\n*/\n\n/* Write bits into a byte array. */\n\ntype bitWriter struct {\n\tdst []byte\n\n\t// Data waiting to be written is the low nbits of bits.\n\tbits  uint64\n\tnbits uint\n}\n\nfunc (w *bitWriter) writeBits(nb uint, b uint64) {\n\tw.bits |= b << w.nbits\n\tw.nbits += nb\n\tif w.nbits >= 32 {\n\t\tbits := w.bits\n\t\tw.bits >>= 32\n\t\tw.nbits -= 32\n\t\tw.dst = append(w.dst,\n\t\t\tbyte(bits),\n\t\t\tbyte(bits>>8),\n\t\t\tbyte(bits>>16),\n\t\t\tbyte(bits>>24),\n\t\t)\n\t}\n}\n\nfunc (w *bitWriter) writeSingleBit(bit bool) {\n\tif bit {\n\t\tw.writeBits(1, 1)\n\t} else {\n\t\tw.writeBits(1, 0)\n\t}\n}\n\nfunc (w *bitWriter) jumpToByteBoundary() {\n\tdst := w.dst\n\tfor w.nbits != 0 {\n\t\tdst = append(dst, byte(w.bits))\n\t\tw.bits >>= 8\n\t\tif w.nbits > 8 { // Avoid underflow\n\t\t\tw.nbits -= 8\n\t\t} else {\n\t\t\tw.nbits = 0\n\t\t}\n\t}\n\tw.bits = 0\n\tw.dst = dst\n}\n\nfunc (w *bitWriter) writeBytes(b []byte) {\n\tif w.nbits&7 != 0 {\n\t\tpanic(\"writeBytes with unfinished bits\")\n\t}\n\tfor w.nbits != 0 {\n\t\tw.dst = append(w.dst, byte(w.bits))\n\t\tw.bits >>= 8\n\t\tw.nbits -= 8\n\t}\n\tw.dst = append(w.dst, b...)\n}\n\nfunc (w *bitWriter) getPos() uint {\n\treturn uint(len(w.dst)<<3) + w.nbits\n}\n\nfunc (w *bitWriter) rewind(p uint) {\n\tw.bits = uint64(w.dst[p>>3] & byte((1<<(p&7))-1))\n\tw.nbits = p & 7\n\tw.dst = w.dst[:p>>3]\n}\n\nfunc (w *bitWriter) updateBits(n_bits uint, bits uint32, pos uint) {\n\tfor n_bits > 0 {\n\t\tvar byte_pos uint = pos >> 3\n\t\tvar n_unchanged_bits uint = pos & 7\n\t\tvar n_changed_bits uint = brotli_min_size_t(n_bits, 8-n_unchanged_bits)\n\t\tvar total_bits uint = n_unchanged_bits + n_changed_bits\n\t\tvar mask uint32 = (^((1 << total_bits) - 1)) | ((1 << n_unchanged_bits) - 1)\n\t\tvar unchanged_bits uint32 = uint32(w.dst[byte_pos]) & mask\n\t\tvar changed_bits uint32 = bits & ((1 << n_changed_bits) - 1)\n\t\tw.dst[byte_pos] = byte(changed_bits<<n_unchanged_bits | unchanged_bits)\n\t\tn_bits -= n_changed_bits\n\t\tbits >>= n_changed_bits\n\t\tpos += n_changed_bits\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/andybalholm/brotli/writer.go",
    "content": "package brotli\n\nimport (\n\t\"errors\"\n\t\"io\"\n)\n\nconst (\n\tBestSpeed          = 0\n\tBestCompression    = 11\n\tDefaultCompression = 6\n)\n\n// WriterOptions configures Writer.\ntype WriterOptions struct {\n\t// Quality controls the compression-speed vs compression-density trade-offs.\n\t// The higher the quality, the slower the compression. Range is 0 to 11.\n\tQuality int\n\t// LGWin is the base 2 logarithm of the sliding window size.\n\t// Range is 10 to 24. 0 indicates automatic configuration based on Quality.\n\tLGWin int\n}\n\nvar (\n\terrEncode       = errors.New(\"brotli: encode error\")\n\terrWriterClosed = errors.New(\"brotli: Writer is closed\")\n)\n\n// Writes to the returned writer are compressed and written to dst.\n// It is the caller's responsibility to call Close on the Writer when done.\n// Writes may be buffered and not flushed until Close.\nfunc NewWriter(dst io.Writer) *Writer {\n\treturn NewWriterLevel(dst, DefaultCompression)\n}\n\n// NewWriterLevel is like NewWriter but specifies the compression level instead\n// of assuming DefaultCompression.\n// The compression level can be DefaultCompression or any integer value between\n// BestSpeed and BestCompression inclusive.\nfunc NewWriterLevel(dst io.Writer, level int) *Writer {\n\treturn NewWriterOptions(dst, WriterOptions{\n\t\tQuality: level,\n\t})\n}\n\n// NewWriterOptions is like NewWriter but specifies WriterOptions\nfunc NewWriterOptions(dst io.Writer, options WriterOptions) *Writer {\n\tw := new(Writer)\n\tw.options = options\n\tw.Reset(dst)\n\treturn w\n}\n\n// Reset discards the Writer's state and makes it equivalent to the result of\n// its original state from NewWriter or NewWriterLevel, but writing to dst\n// instead. This permits reusing a Writer rather than allocating a new one.\nfunc (w *Writer) Reset(dst io.Writer) {\n\tencoderInitState(w)\n\tw.params.quality = w.options.Quality\n\tif w.options.LGWin > 0 {\n\t\tw.params.lgwin = uint(w.options.LGWin)\n\t}\n\tw.dst = dst\n}\n\nfunc (w *Writer) writeChunk(p []byte, op int) (n int, err error) {\n\tif w.dst == nil {\n\t\treturn 0, errWriterClosed\n\t}\n\tif w.err != nil {\n\t\treturn 0, w.err\n\t}\n\n\tfor {\n\t\tavailableIn := uint(len(p))\n\t\tnextIn := p\n\t\tsuccess := encoderCompressStream(w, op, &availableIn, &nextIn)\n\t\tbytesConsumed := len(p) - int(availableIn)\n\t\tp = p[bytesConsumed:]\n\t\tn += bytesConsumed\n\t\tif !success {\n\t\t\treturn n, errEncode\n\t\t}\n\n\t\tif len(p) == 0 || w.err != nil {\n\t\t\treturn n, w.err\n\t\t}\n\t}\n}\n\n// Flush outputs encoded data for all input provided to Write. The resulting\n// output can be decoded to match all input before Flush, but the stream is\n// not yet complete until after Close.\n// Flush has a negative impact on compression.\nfunc (w *Writer) Flush() error {\n\t_, err := w.writeChunk(nil, operationFlush)\n\treturn err\n}\n\n// Close flushes remaining data to the decorated writer.\nfunc (w *Writer) Close() error {\n\t// If stream is already closed, it is reported by `writeChunk`.\n\t_, err := w.writeChunk(nil, operationFinish)\n\tw.dst = nil\n\treturn err\n}\n\n// Write implements io.Writer. Flush or Close must be called to ensure that the\n// encoded bytes are actually flushed to the underlying Writer.\nfunc (w *Writer) Write(p []byte) (n int, err error) {\n\treturn w.writeChunk(p, operationProcess)\n}\n\ntype nopCloser struct {\n\tio.Writer\n}\n\nfunc (nopCloser) Close() error { return nil }\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/LICENSE",
    "content": "Copyright (c) 2012-2015, Sergey Cherepanov\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/element.go",
    "content": "package pb\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"math\"\n\t\"sync\"\n\t\"time\"\n)\n\nconst (\n\tadElPlaceholder    = \"%_ad_el_%\"\n\tadElPlaceholderLen = len(adElPlaceholder)\n)\n\nvar (\n\tdefaultBarEls = [5]string{\"[\", \"-\", \">\", \"_\", \"]\"}\n)\n\n// Element is an interface for bar elements\ntype Element interface {\n\tProgressElement(state *State, args ...string) string\n}\n\n// ElementFunc type implements Element interface and created for simplify elements\ntype ElementFunc func(state *State, args ...string) string\n\n// ProgressElement just call self func\nfunc (e ElementFunc) ProgressElement(state *State, args ...string) string {\n\treturn e(state, args...)\n}\n\nvar elementsM sync.Mutex\n\nvar elements = map[string]Element{\n\t\"percent\":  ElementPercent,\n\t\"counters\": ElementCounters,\n\t\"bar\":      adaptiveWrap(ElementBar),\n\t\"speed\":    ElementSpeed,\n\t\"rtime\":    ElementRemainingTime,\n\t\"etime\":    ElementElapsedTime,\n\t\"string\":   ElementString,\n\t\"cycle\":    ElementCycle,\n}\n\n// RegisterElement give you a chance to use custom elements\nfunc RegisterElement(name string, el Element, adaptive bool) {\n\tif adaptive {\n\t\tel = adaptiveWrap(el)\n\t}\n\telementsM.Lock()\n\telements[name] = el\n\telementsM.Unlock()\n}\n\ntype argsHelper []string\n\nfunc (args argsHelper) getOr(n int, value string) string {\n\tif len(args) > n {\n\t\treturn args[n]\n\t}\n\treturn value\n}\n\nfunc (args argsHelper) getNotEmptyOr(n int, value string) (v string) {\n\tif v = args.getOr(n, value); v == \"\" {\n\t\treturn value\n\t}\n\treturn\n}\n\nfunc adaptiveWrap(el Element) Element {\n\treturn ElementFunc(func(state *State, args ...string) string {\n\t\tstate.recalc = append(state.recalc, ElementFunc(func(s *State, _ ...string) (result string) {\n\t\t\ts.adaptive = true\n\t\t\tresult = el.ProgressElement(s, args...)\n\t\t\ts.adaptive = false\n\t\t\treturn\n\t\t}))\n\t\treturn adElPlaceholder\n\t})\n}\n\n// ElementPercent shows current percent of progress.\n// Optionally can take one or two string arguments.\n// First string will be used as value for format float64, default is \"%.02f%%\".\n// Second string will be used when percent can't be calculated, default is \"?%\"\n// In template use as follows: {{percent .}} or {{percent . \"%.03f%%\"}} or {{percent . \"%.03f%%\" \"?\"}}\nvar ElementPercent ElementFunc = func(state *State, args ...string) string {\n\targsh := argsHelper(args)\n\tif state.Total() > 0 {\n\t\treturn fmt.Sprintf(\n\t\t\targsh.getNotEmptyOr(0, \"%.02f%%\"),\n\t\t\tfloat64(state.Value())/(float64(state.Total())/float64(100)),\n\t\t)\n\t}\n\treturn argsh.getOr(1, \"?%\")\n}\n\n// ElementCounters shows current and total values.\n// Optionally can take one or two string arguments.\n// First string will be used as format value when Total is present (>0). Default is \"%s / %s\"\n// Second string will be used when total <= 0. Default is \"%[1]s\"\n// In template use as follows: {{counters .}} or {{counters . \"%s/%s\"}} or {{counters . \"%s/%s\" \"%s/?\"}}\nvar ElementCounters ElementFunc = func(state *State, args ...string) string {\n\tvar f string\n\tif state.Total() > 0 {\n\t\tf = argsHelper(args).getNotEmptyOr(0, \"%s / %s\")\n\t} else {\n\t\tf = argsHelper(args).getNotEmptyOr(1, \"%[1]s\")\n\t}\n\treturn fmt.Sprintf(f, state.Format(state.Value()), state.Format(state.Total()))\n}\n\ntype elementKey int\n\nconst (\n\tbarObj elementKey = iota\n\tspeedObj\n\tcycleObj\n)\n\ntype bar struct {\n\teb  [5][]byte // elements in bytes\n\tcc  [5]int    // cell counts\n\tbuf *bytes.Buffer\n}\n\nfunc (p *bar) write(state *State, eln, width int) int {\n\trepeat := width / p.cc[eln]\n\tfor i := 0; i < repeat; i++ {\n\t\tp.buf.Write(p.eb[eln])\n\t}\n\tStripStringToBuffer(string(p.eb[eln]), width%p.cc[eln], p.buf)\n\treturn width\n}\n\nfunc getProgressObj(state *State, args ...string) (p *bar) {\n\tvar ok bool\n\tif p, ok = state.Get(barObj).(*bar); !ok {\n\t\tp = &bar{\n\t\t\tbuf: bytes.NewBuffer(nil),\n\t\t}\n\t\tstate.Set(barObj, p)\n\t}\n\targsH := argsHelper(args)\n\tfor i := range p.eb {\n\t\targ := argsH.getNotEmptyOr(i, defaultBarEls[i])\n\t\tif string(p.eb[i]) != arg {\n\t\t\tp.cc[i] = CellCount(arg)\n\t\t\tp.eb[i] = []byte(arg)\n\t\t\tif p.cc[i] == 0 {\n\t\t\t\tp.cc[i] = 1\n\t\t\t\tp.eb[i] = []byte(\" \")\n\t\t\t}\n\t\t}\n\t}\n\treturn\n}\n\n// ElementBar make progress bar view [-->__]\n// Optionally can take up to 5 string arguments. Defaults is \"[\", \"-\", \">\", \"_\", \"]\"\n// In template use as follows: {{bar . }} or {{bar . \"<\" \"oOo\" \"|\" \"~\" \">\"}}\n// Color args: {{bar . (red \"[\") (green \"-\") ...\nvar ElementBar ElementFunc = func(state *State, args ...string) string {\n\t// init\n\tvar p = getProgressObj(state, args...)\n\n\ttotal, value := state.Total(), state.Value()\n\tif total < 0 {\n\t\ttotal = -total\n\t}\n\tif value < 0 {\n\t\tvalue = -value\n\t}\n\n\t// check for overflow\n\tif total != 0 && value > total {\n\t\ttotal = value\n\t}\n\n\tp.buf.Reset()\n\n\tvar widthLeft = state.AdaptiveElWidth()\n\tif widthLeft <= 0 || !state.IsAdaptiveWidth() {\n\t\twidthLeft = 30\n\t}\n\n\t// write left border\n\tif p.cc[0] < widthLeft {\n\t\twidthLeft -= p.write(state, 0, p.cc[0])\n\t} else {\n\t\tp.write(state, 0, widthLeft)\n\t\treturn p.buf.String()\n\t}\n\n\t// check right border size\n\tif p.cc[4] < widthLeft {\n\t\t// write later\n\t\twidthLeft -= p.cc[4]\n\t} else {\n\t\tp.write(state, 4, widthLeft)\n\t\treturn p.buf.String()\n\t}\n\n\tvar curCount int\n\n\tif total > 0 {\n\t\t// calculate count of currenct space\n\t\tcurCount = int(math.Ceil((float64(value) / float64(total)) * float64(widthLeft)))\n\t}\n\n\t// write bar\n\tif total == value && state.IsFinished() {\n\t\twidthLeft -= p.write(state, 1, curCount)\n\t} else if toWrite := curCount - p.cc[2]; toWrite > 0 {\n\t\twidthLeft -= p.write(state, 1, toWrite)\n\t\twidthLeft -= p.write(state, 2, p.cc[2])\n\t} else if curCount > 0 {\n\t\twidthLeft -= p.write(state, 2, curCount)\n\t}\n\tif widthLeft > 0 {\n\t\twidthLeft -= p.write(state, 3, widthLeft)\n\t}\n\t// write right border\n\tp.write(state, 4, p.cc[4])\n\t// cut result and return string\n\treturn p.buf.String()\n}\n\n// ElementRemainingTime calculates remaining time based on speed (EWMA)\n// Optionally can take one or two string arguments.\n// First string will be used as value for format time duration string, default is \"%s\".\n// Second string will be used when bar finished and value indicates elapsed time, default is \"%s\"\n// Third string will be used when value not available, default is \"?\"\n// In template use as follows: {{rtime .}} or {{rtime . \"%s remain\"}} or {{rtime . \"%s remain\" \"%s total\" \"???\"}}\nvar ElementRemainingTime ElementFunc = func(state *State, args ...string) string {\n\tvar rts string\n\tsp := getSpeedObj(state).value(state)\n\tif !state.IsFinished() {\n\t\tif sp > 0 {\n\t\t\tremain := float64(state.Total() - state.Value())\n\t\t\tremainDur := time.Duration(remain/sp) * time.Second\n\t\t\trts = remainDur.String()\n\t\t} else {\n\t\t\treturn argsHelper(args).getOr(2, \"?\")\n\t\t}\n\t} else {\n\t\trts = state.Time().Truncate(time.Second).Sub(state.StartTime().Truncate(time.Second)).String()\n\t\treturn fmt.Sprintf(argsHelper(args).getOr(1, \"%s\"), rts)\n\t}\n\treturn fmt.Sprintf(argsHelper(args).getOr(0, \"%s\"), rts)\n}\n\n// ElementElapsedTime shows elapsed time\n// Optionally cat take one argument - it's format for time string.\n// In template use as follows: {{etime .}} or {{etime . \"%s elapsed\"}}\nvar ElementElapsedTime ElementFunc = func(state *State, args ...string) string {\n\tetm := state.Time().Truncate(time.Second).Sub(state.StartTime().Truncate(time.Second))\n\treturn fmt.Sprintf(argsHelper(args).getOr(0, \"%s\"), etm.String())\n}\n\n// ElementString get value from bar by given key and print them\n// bar.Set(\"myKey\", \"string to print\")\n// In template use as follows: {{string . \"myKey\"}}\nvar ElementString ElementFunc = func(state *State, args ...string) string {\n\tif len(args) == 0 {\n\t\treturn \"\"\n\t}\n\tv := state.Get(args[0])\n\tif v == nil {\n\t\treturn \"\"\n\t}\n\treturn fmt.Sprint(v)\n}\n\n// ElementCycle return next argument for every call\n// In template use as follows: {{cycle . \"1\" \"2\" \"3\"}}\n// Or mix width other elements: {{ bar . \"\" \"\" (cycle . \"↖\" \"↗\" \"↘\" \"↙\" )}}\nvar ElementCycle ElementFunc = func(state *State, args ...string) string {\n\tif len(args) == 0 {\n\t\treturn \"\"\n\t}\n\tn, _ := state.Get(cycleObj).(int)\n\tif n >= len(args) {\n\t\tn = 0\n\t}\n\tstate.Set(cycleObj, n+1)\n\treturn args[n]\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/go.mod",
    "content": "module github.com/cheggaaa/pb/v3\n\nrequire (\n\tgithub.com/VividCortex/ewma v1.1.1\n\tgithub.com/fatih/color v1.7.0\n\tgithub.com/mattn/go-colorable v0.1.2\n\tgithub.com/mattn/go-isatty v0.0.12\n\tgithub.com/mattn/go-runewidth v0.0.7\n)\n\ngo 1.12\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/go.sum",
    "content": "github.com/VividCortex/ewma v1.1.1 h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM=\ngithub.com/VividCortex/ewma v1.1.1/go.mod h1:2Tkkvm3sRDVXaiyucHiACn4cqf7DpdyLvmxzcbUokwA=\ngithub.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=\ngithub.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=\ngithub.com/mattn/go-colorable v0.1.2 h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx8mU=\ngithub.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=\ngithub.com/mattn/go-isatty v0.0.8 h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE=\ngithub.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngithub.com/mattn/go-isatty v0.0.10 h1:qxFzApOv4WsAL965uUPIsXzAKCZxN2p9UqdhFS4ZW10=\ngithub.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84=\ngithub.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY=\ngithub.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=\ngithub.com/mattn/go-runewidth v0.0.7 h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54=\ngithub.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=\ngolang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223 h1:DH4skfRX4EBpamg7iV4ZlCpblAHI6s6TDM39bFZumv8=\ngolang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191128015809-6d18c012aee9 h1:ZBzSG/7F4eNKz2L3GE9o300RX0Az1Bw5HF7PDraD+qU=\ngolang.org/x/sys v0.0.0-20191128015809-6d18c012aee9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg=\ngolang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/io.go",
    "content": "package pb\n\nimport (\n\t\"io\"\n)\n\n// Reader it's a wrapper for given reader, but with progress handle\ntype Reader struct {\n\tio.Reader\n\tbar *ProgressBar\n}\n\n// Read reads bytes from wrapped reader and add amount of bytes to progress bar\nfunc (r *Reader) Read(p []byte) (n int, err error) {\n\tn, err = r.Reader.Read(p)\n\tr.bar.Add(n)\n\treturn\n}\n\n// Close the wrapped reader when it implements io.Closer\nfunc (r *Reader) Close() (err error) {\n\tr.bar.Finish()\n\tif closer, ok := r.Reader.(io.Closer); ok {\n\t\treturn closer.Close()\n\t}\n\treturn\n}\n\n// Writer it's a wrapper for given writer, but with progress handle\ntype Writer struct {\n\tio.Writer\n\tbar *ProgressBar\n}\n\n// Write writes bytes to wrapped writer and add amount of bytes to progress bar\nfunc (r *Writer) Write(p []byte) (n int, err error) {\n\tn, err = r.Writer.Write(p)\n\tr.bar.Add(n)\n\treturn\n}\n\n// Close the wrapped reader when it implements io.Closer\nfunc (r *Writer) Close() (err error) {\n\tr.bar.Finish()\n\tif closer, ok := r.Writer.(io.Closer); ok {\n\t\treturn closer.Close()\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/pb.go",
    "content": "package pb\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\t\"sync/atomic\"\n\t\"text/template\"\n\t\"time\"\n\n\t\"github.com/mattn/go-colorable\"\n\t\"github.com/mattn/go-isatty\"\n\n\t\"github.com/cheggaaa/pb/v3/termutil\"\n)\n\n// Version of ProgressBar library\nconst Version = \"3.0.5\"\n\ntype key int\n\nconst (\n\t// Bytes means we're working with byte sizes. Numbers will print as Kb, Mb, etc\n\t// bar.Set(pb.Bytes, true)\n\tBytes key = 1 << iota\n\n\t// Use SI bytes prefix names (kB, MB, etc) instead of IEC prefix names (KiB, MiB, etc)\n\tSIBytesPrefix\n\n\t// Terminal means we're will print to terminal and can use ascii sequences\n\t// Also we're will try to use terminal width\n\tTerminal\n\n\t// Static means progress bar will not update automaticly\n\tStatic\n\n\t// ReturnSymbol - by default in terminal mode it's '\\r'\n\tReturnSymbol\n\n\t// Color by default is true when output is tty, but you can set to false for disabling colors\n\tColor\n)\n\nconst (\n\tdefaultBarWidth    = 100\n\tdefaultRefreshRate = time.Millisecond * 200\n)\n\n// New creates new ProgressBar object\nfunc New(total int) *ProgressBar {\n\treturn New64(int64(total))\n}\n\n// New64 creates new ProgressBar object using int64 as total\nfunc New64(total int64) *ProgressBar {\n\tpb := new(ProgressBar)\n\treturn pb.SetTotal(total)\n}\n\n// StartNew starts new ProgressBar with Default template\nfunc StartNew(total int) *ProgressBar {\n\treturn New(total).Start()\n}\n\n// Start64 starts new ProgressBar with Default template. Using int64 as total.\nfunc Start64(total int64) *ProgressBar {\n\treturn New64(total).Start()\n}\n\nvar (\n\tterminalWidth    = termutil.TerminalWidth\n\tisTerminal       = isatty.IsTerminal\n\tisCygwinTerminal = isatty.IsCygwinTerminal\n)\n\n// ProgressBar is the main object of bar\ntype ProgressBar struct {\n\tcurrent, total int64\n\twidth          int\n\tmaxWidth       int\n\tmu             sync.RWMutex\n\trm             sync.Mutex\n\tvars           map[interface{}]interface{}\n\telements       map[string]Element\n\toutput         io.Writer\n\tcoutput        io.Writer\n\tnocoutput      io.Writer\n\tstartTime      time.Time\n\trefreshRate    time.Duration\n\ttmpl           *template.Template\n\tstate          *State\n\tbuf            *bytes.Buffer\n\tticker         *time.Ticker\n\tfinish         chan struct{}\n\tfinished       bool\n\tconfigured     bool\n\terr            error\n}\n\nfunc (pb *ProgressBar) configure() {\n\tif pb.configured {\n\t\treturn\n\t}\n\tpb.configured = true\n\n\tif pb.vars == nil {\n\t\tpb.vars = make(map[interface{}]interface{})\n\t}\n\tif pb.output == nil {\n\t\tpb.output = os.Stderr\n\t}\n\n\tif pb.tmpl == nil {\n\t\tpb.tmpl, pb.err = getTemplate(string(Default))\n\t\tif pb.err != nil {\n\t\t\treturn\n\t\t}\n\t}\n\tif pb.vars[Terminal] == nil {\n\t\tif f, ok := pb.output.(*os.File); ok {\n\t\t\tif isTerminal(f.Fd()) || isCygwinTerminal(f.Fd()) {\n\t\t\t\tpb.vars[Terminal] = true\n\t\t\t}\n\t\t}\n\t}\n\tif pb.vars[ReturnSymbol] == nil {\n\t\tif tm, ok := pb.vars[Terminal].(bool); ok && tm {\n\t\t\tpb.vars[ReturnSymbol] = \"\\r\"\n\t\t}\n\t}\n\tif pb.vars[Color] == nil {\n\t\tif tm, ok := pb.vars[Terminal].(bool); ok && tm {\n\t\t\tpb.vars[Color] = true\n\t\t}\n\t}\n\tif pb.refreshRate == 0 {\n\t\tpb.refreshRate = defaultRefreshRate\n\t}\n\tif f, ok := pb.output.(*os.File); ok {\n\t\tpb.coutput = colorable.NewColorable(f)\n\t} else {\n\t\tpb.coutput = pb.output\n\t}\n\tpb.nocoutput = colorable.NewNonColorable(pb.output)\n}\n\n// Start starts the bar\nfunc (pb *ProgressBar) Start() *ProgressBar {\n\tpb.mu.Lock()\n\tdefer pb.mu.Unlock()\n\tif pb.finish != nil {\n\t\treturn pb\n\t}\n\tpb.configure()\n\tpb.finished = false\n\tpb.state = nil\n\tpb.startTime = time.Now()\n\tif st, ok := pb.vars[Static].(bool); ok && st {\n\t\treturn pb\n\t}\n\tpb.finish = make(chan struct{})\n\tpb.ticker = time.NewTicker(pb.refreshRate)\n\tgo pb.writer(pb.finish)\n\treturn pb\n}\n\nfunc (pb *ProgressBar) writer(finish chan struct{}) {\n\tfor {\n\t\tselect {\n\t\tcase <-pb.ticker.C:\n\t\t\tpb.write(false)\n\t\tcase <-finish:\n\t\t\tpb.ticker.Stop()\n\t\t\tpb.write(true)\n\t\t\tfinish <- struct{}{}\n\t\t\treturn\n\t\t}\n\t}\n}\n\n// Write performs write to the output\nfunc (pb *ProgressBar) Write() *ProgressBar {\n\tpb.mu.RLock()\n\tfinished := pb.finished\n\tpb.mu.RUnlock()\n\tpb.write(finished)\n\treturn pb\n}\n\nfunc (pb *ProgressBar) write(finish bool) {\n\tresult, width := pb.render()\n\tif pb.Err() != nil {\n\t\treturn\n\t}\n\tif pb.GetBool(Terminal) {\n\t\tif r := (width - CellCount(result)); r > 0 {\n\t\t\tresult += strings.Repeat(\" \", r)\n\t\t}\n\t}\n\tif ret, ok := pb.Get(ReturnSymbol).(string); ok {\n\t\tresult = ret + result\n\t\tif finish && ret == \"\\r\" {\n\t\t\tresult += \"\\n\"\n\t\t}\n\t}\n\tif pb.GetBool(Color) {\n\t\tpb.coutput.Write([]byte(result))\n\t} else {\n\t\tpb.nocoutput.Write([]byte(result))\n\t}\n}\n\n// Total return current total bar value\nfunc (pb *ProgressBar) Total() int64 {\n\treturn atomic.LoadInt64(&pb.total)\n}\n\n// SetTotal sets the total bar value\nfunc (pb *ProgressBar) SetTotal(value int64) *ProgressBar {\n\tatomic.StoreInt64(&pb.total, value)\n\treturn pb\n}\n\n// SetCurrent sets the current bar value\nfunc (pb *ProgressBar) SetCurrent(value int64) *ProgressBar {\n\tatomic.StoreInt64(&pb.current, value)\n\treturn pb\n}\n\n// Current return current bar value\nfunc (pb *ProgressBar) Current() int64 {\n\treturn atomic.LoadInt64(&pb.current)\n}\n\n// Add adding given int64 value to bar value\nfunc (pb *ProgressBar) Add64(value int64) *ProgressBar {\n\tatomic.AddInt64(&pb.current, value)\n\treturn pb\n}\n\n// Add adding given int value to bar value\nfunc (pb *ProgressBar) Add(value int) *ProgressBar {\n\treturn pb.Add64(int64(value))\n}\n\n// Increment atomically increments the progress\nfunc (pb *ProgressBar) Increment() *ProgressBar {\n\treturn pb.Add64(1)\n}\n\n// Set sets any value by any key\nfunc (pb *ProgressBar) Set(key, value interface{}) *ProgressBar {\n\tpb.mu.Lock()\n\tdefer pb.mu.Unlock()\n\tif pb.vars == nil {\n\t\tpb.vars = make(map[interface{}]interface{})\n\t}\n\tpb.vars[key] = value\n\treturn pb\n}\n\n// Get return value by key\nfunc (pb *ProgressBar) Get(key interface{}) interface{} {\n\tpb.mu.RLock()\n\tdefer pb.mu.RUnlock()\n\tif pb.vars == nil {\n\t\treturn nil\n\t}\n\treturn pb.vars[key]\n}\n\n// GetBool return value by key and try to convert there to boolean\n// If value doesn't set or not boolean - return false\nfunc (pb *ProgressBar) GetBool(key interface{}) bool {\n\tif v, ok := pb.Get(key).(bool); ok {\n\t\treturn v\n\t}\n\treturn false\n}\n\n// SetWidth sets the bar width\n// When given value <= 0 would be using the terminal width (if possible) or default value.\nfunc (pb *ProgressBar) SetWidth(width int) *ProgressBar {\n\tpb.mu.Lock()\n\tpb.width = width\n\tpb.mu.Unlock()\n\treturn pb\n}\n\n// SetMaxWidth sets the bar maximum width\n// When given value <= 0 would be using the terminal width (if possible) or default value.\nfunc (pb *ProgressBar) SetMaxWidth(maxWidth int) *ProgressBar {\n\tpb.mu.Lock()\n\tpb.maxWidth = maxWidth\n\tpb.mu.Unlock()\n\treturn pb\n}\n\n// Width return the bar width\n// It's current terminal width or settled over 'SetWidth' value.\nfunc (pb *ProgressBar) Width() (width int) {\n\tdefer func() {\n\t\tif r := recover(); r != nil {\n\t\t\twidth = defaultBarWidth\n\t\t}\n\t}()\n\tpb.mu.RLock()\n\twidth = pb.width\n\tmaxWidth := pb.maxWidth\n\tpb.mu.RUnlock()\n\tif width <= 0 {\n\t\tvar err error\n\t\tif width, err = terminalWidth(); err != nil {\n\t\t\treturn defaultBarWidth\n\t\t}\n\t}\n\tif maxWidth > 0 && width > maxWidth {\n\t\twidth = maxWidth\n\t}\n\treturn\n}\n\nfunc (pb *ProgressBar) SetRefreshRate(dur time.Duration) *ProgressBar {\n\tpb.mu.Lock()\n\tif dur > 0 {\n\t\tpb.refreshRate = dur\n\t}\n\tpb.mu.Unlock()\n\treturn pb\n}\n\n// SetWriter sets the io.Writer. Bar will write in this writer\n// By default this is os.Stderr\nfunc (pb *ProgressBar) SetWriter(w io.Writer) *ProgressBar {\n\tpb.mu.Lock()\n\tpb.output = w\n\tpb.configured = false\n\tpb.configure()\n\tpb.mu.Unlock()\n\treturn pb\n}\n\n// StartTime return the time when bar started\nfunc (pb *ProgressBar) StartTime() time.Time {\n\tpb.mu.RLock()\n\tdefer pb.mu.RUnlock()\n\treturn pb.startTime\n}\n\n// Format convert int64 to string according to the current settings\nfunc (pb *ProgressBar) Format(v int64) string {\n\tif pb.GetBool(Bytes) {\n\t\treturn formatBytes(v, pb.GetBool(SIBytesPrefix))\n\t}\n\treturn strconv.FormatInt(v, 10)\n}\n\n// Finish stops the bar\nfunc (pb *ProgressBar) Finish() *ProgressBar {\n\tpb.mu.Lock()\n\tif pb.finished {\n\t\tpb.mu.Unlock()\n\t\treturn pb\n\t}\n\tfinishChan := pb.finish\n\tpb.finished = true\n\tpb.mu.Unlock()\n\tif finishChan != nil {\n\t\tfinishChan <- struct{}{}\n\t\t<-finishChan\n\t\tpb.mu.Lock()\n\t\tpb.finish = nil\n\t\tpb.mu.Unlock()\n\t}\n\treturn pb\n}\n\n// IsStarted indicates progress bar state\nfunc (pb *ProgressBar) IsStarted() bool {\n\tpb.mu.RLock()\n\tdefer pb.mu.RUnlock()\n\treturn pb.finish != nil\n}\n\n// SetTemplateString sets ProgressBar tempate string and parse it\nfunc (pb *ProgressBar) SetTemplateString(tmpl string) *ProgressBar {\n\tpb.mu.Lock()\n\tdefer pb.mu.Unlock()\n\tpb.tmpl, pb.err = getTemplate(tmpl)\n\treturn pb\n}\n\n// SetTemplateString sets ProgressBarTempate and parse it\nfunc (pb *ProgressBar) SetTemplate(tmpl ProgressBarTemplate) *ProgressBar {\n\treturn pb.SetTemplateString(string(tmpl))\n}\n\n// NewProxyReader creates a wrapper for given reader, but with progress handle\n// Takes io.Reader or io.ReadCloser\n// Also, it automatically switches progress bar to handle units as bytes\nfunc (pb *ProgressBar) NewProxyReader(r io.Reader) *Reader {\n\tpb.Set(Bytes, true)\n\treturn &Reader{r, pb}\n}\n\n// NewProxyWriter creates a wrapper for given writer, but with progress handle\n// Takes io.Writer or io.WriteCloser\n// Also, it automatically switches progress bar to handle units as bytes\nfunc (pb *ProgressBar) NewProxyWriter(r io.Writer) *Writer {\n\tpb.Set(Bytes, true)\n\treturn &Writer{r, pb}\n}\n\nfunc (pb *ProgressBar) render() (result string, width int) {\n\tdefer func() {\n\t\tif r := recover(); r != nil {\n\t\t\tpb.SetErr(fmt.Errorf(\"render panic: %v\", r))\n\t\t}\n\t}()\n\tpb.rm.Lock()\n\tdefer pb.rm.Unlock()\n\tpb.mu.Lock()\n\tpb.configure()\n\tif pb.state == nil {\n\t\tpb.state = &State{ProgressBar: pb}\n\t\tpb.buf = bytes.NewBuffer(nil)\n\t}\n\tif pb.startTime.IsZero() {\n\t\tpb.startTime = time.Now()\n\t}\n\tpb.state.id++\n\tpb.state.finished = pb.finished\n\tpb.state.time = time.Now()\n\tpb.mu.Unlock()\n\n\tpb.state.width = pb.Width()\n\twidth = pb.state.width\n\tpb.state.total = pb.Total()\n\tpb.state.current = pb.Current()\n\tpb.buf.Reset()\n\n\tif e := pb.tmpl.Execute(pb.buf, pb.state); e != nil {\n\t\tpb.SetErr(e)\n\t\treturn \"\", 0\n\t}\n\n\tresult = pb.buf.String()\n\n\taec := len(pb.state.recalc)\n\tif aec == 0 {\n\t\t// no adaptive elements\n\t\treturn\n\t}\n\n\tstaticWidth := CellCount(result) - (aec * adElPlaceholderLen)\n\n\tif pb.state.Width()-staticWidth <= 0 {\n\t\tresult = strings.Replace(result, adElPlaceholder, \"\", -1)\n\t\tresult = StripString(result, pb.state.Width())\n\t} else {\n\t\tpb.state.adaptiveElWidth = (width - staticWidth) / aec\n\t\tfor _, el := range pb.state.recalc {\n\t\t\tresult = strings.Replace(result, adElPlaceholder, el.ProgressElement(pb.state), 1)\n\t\t}\n\t}\n\tpb.state.recalc = pb.state.recalc[:0]\n\treturn\n}\n\n// SetErr sets error to the ProgressBar\n// Error will be available over Err()\nfunc (pb *ProgressBar) SetErr(err error) *ProgressBar {\n\tpb.mu.Lock()\n\tpb.err = err\n\tpb.mu.Unlock()\n\treturn pb\n}\n\n// Err return possible error\n// When all ok - will be nil\n// May contain template.Execute errors\nfunc (pb *ProgressBar) Err() error {\n\tpb.mu.RLock()\n\tdefer pb.mu.RUnlock()\n\treturn pb.err\n}\n\n// String return currrent string representation of ProgressBar\nfunc (pb *ProgressBar) String() string {\n\tres, _ := pb.render()\n\treturn res\n}\n\n// ProgressElement implements Element interface\nfunc (pb *ProgressBar) ProgressElement(s *State, args ...string) string {\n\tif s.IsAdaptiveWidth() {\n\t\tpb.SetWidth(s.AdaptiveElWidth())\n\t}\n\treturn pb.String()\n}\n\n// State represents the current state of bar\n// Need for bar elements\ntype State struct {\n\t*ProgressBar\n\n\tid                     uint64\n\ttotal, current         int64\n\twidth, adaptiveElWidth int\n\tfinished, adaptive     bool\n\ttime                   time.Time\n\n\trecalc []Element\n}\n\n// Id it's the current state identifier\n// - incremental\n// - starts with 1\n// - resets after finish/start\nfunc (s *State) Id() uint64 {\n\treturn s.id\n}\n\n// Total it's bar int64 total\nfunc (s *State) Total() int64 {\n\treturn s.total\n}\n\n// Value it's current value\nfunc (s *State) Value() int64 {\n\treturn s.current\n}\n\n// Width of bar\nfunc (s *State) Width() int {\n\treturn s.width\n}\n\n// AdaptiveElWidth - adaptive elements must return string with given cell count (when AdaptiveElWidth > 0)\nfunc (s *State) AdaptiveElWidth() int {\n\treturn s.adaptiveElWidth\n}\n\n// IsAdaptiveWidth returns true when element must be shown as adaptive\nfunc (s *State) IsAdaptiveWidth() bool {\n\treturn s.adaptive\n}\n\n// IsFinished return true when bar is finished\nfunc (s *State) IsFinished() bool {\n\treturn s.finished\n}\n\n// IsFirst return true only in first render\nfunc (s *State) IsFirst() bool {\n\treturn s.id == 1\n}\n\n// Time when state was created\nfunc (s *State) Time() time.Time {\n\treturn s.time\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/preset.go",
    "content": "package pb\n\nvar (\n\t// Full - preset with all default available elements\n\t// Example: 'Prefix 20/100 [-->______] 20% 1 p/s ETA 1m Suffix'\n\tFull ProgressBarTemplate = `{{string . \"prefix\"}}{{counters . }} {{bar . }} {{percent . }} {{speed . }} {{rtime . \"ETA %s\"}}{{string . \"suffix\"}}`\n\n\t// Default - preset like Full but without elapsed time\n\t// Example: 'Prefix 20/100 [-->______] 20% 1 p/s ETA 1m Suffix'\n\tDefault ProgressBarTemplate = `{{string . \"prefix\"}}{{counters . }} {{bar . }} {{percent . }} {{speed . }}{{string . \"suffix\"}}`\n\n\t// Simple - preset without speed and any timers. Only counters, bar and percents\n\t// Example: 'Prefix 20/100 [-->______] 20% Suffix'\n\tSimple ProgressBarTemplate = `{{string . \"prefix\"}}{{counters . }} {{bar . }} {{percent . }}{{string . \"suffix\"}}`\n)\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/speed.go",
    "content": "package pb\n\nimport (\n\t\"fmt\"\n\t\"math\"\n\t\"time\"\n\n\t\"github.com/VividCortex/ewma\"\n)\n\nvar speedAddLimit = time.Second / 2\n\ntype speed struct {\n\tewma                  ewma.MovingAverage\n\tlastStateId           uint64\n\tprevValue, startValue int64\n\tprevTime, startTime   time.Time\n}\n\nfunc (s *speed) value(state *State) float64 {\n\tif s.ewma == nil {\n\t\ts.ewma = ewma.NewMovingAverage()\n\t}\n\tif state.IsFirst() || state.Id() < s.lastStateId {\n\t\ts.reset(state)\n\t\treturn 0\n\t}\n\tif state.Id() == s.lastStateId {\n\t\treturn s.ewma.Value()\n\t}\n\tif state.IsFinished() {\n\t\treturn s.absValue(state)\n\t}\n\tdur := state.Time().Sub(s.prevTime)\n\tif dur < speedAddLimit {\n\t\treturn s.ewma.Value()\n\t}\n\tdiff := math.Abs(float64(state.Value() - s.prevValue))\n\tlastSpeed := diff / dur.Seconds()\n\ts.prevTime = state.Time()\n\ts.prevValue = state.Value()\n\ts.lastStateId = state.Id()\n\ts.ewma.Add(lastSpeed)\n\treturn s.ewma.Value()\n}\n\nfunc (s *speed) reset(state *State) {\n\ts.lastStateId = state.Id()\n\ts.startTime = state.Time()\n\ts.prevTime = state.Time()\n\ts.startValue = state.Value()\n\ts.prevValue = state.Value()\n\ts.ewma = ewma.NewMovingAverage()\n}\n\nfunc (s *speed) absValue(state *State) float64 {\n\tif dur := state.Time().Sub(s.startTime); dur > 0 {\n\t\treturn float64(state.Value()) / dur.Seconds()\n\t}\n\treturn 0\n}\n\nfunc getSpeedObj(state *State) (s *speed) {\n\tif sObj, ok := state.Get(speedObj).(*speed); ok {\n\t\treturn sObj\n\t}\n\ts = new(speed)\n\tstate.Set(speedObj, s)\n\treturn\n}\n\n// ElementSpeed calculates current speed by EWMA\n// Optionally can take one or two string arguments.\n// First string will be used as value for format speed, default is \"%s p/s\".\n// Second string will be used when speed not available, default is \"? p/s\"\n// In template use as follows: {{speed .}} or {{speed . \"%s per second\"}} or {{speed . \"%s ps\" \"...\"}\nvar ElementSpeed ElementFunc = func(state *State, args ...string) string {\n\tsp := getSpeedObj(state).value(state)\n\tif sp == 0 {\n\t\treturn argsHelper(args).getNotEmptyOr(1, \"? p/s\")\n\t}\n\treturn fmt.Sprintf(argsHelper(args).getNotEmptyOr(0, \"%s p/s\"), state.Format(int64(round(sp))))\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/template.go",
    "content": "package pb\n\nimport (\n\t\"math/rand\"\n\t\"sync\"\n\t\"text/template\"\n\n\t\"github.com/fatih/color\"\n)\n\n// ProgressBarTemplate that template string\ntype ProgressBarTemplate string\n\n// New creates new bar from template\nfunc (pbt ProgressBarTemplate) New(total int) *ProgressBar {\n\treturn New(total).SetTemplate(pbt)\n}\n\n// Start64 create and start new bar with given int64 total value\nfunc (pbt ProgressBarTemplate) Start64(total int64) *ProgressBar {\n\treturn New64(total).SetTemplate(pbt).Start()\n}\n\n// Start create and start new bar with given int total value\nfunc (pbt ProgressBarTemplate) Start(total int) *ProgressBar {\n\treturn pbt.Start64(int64(total))\n}\n\nvar templateCacheMu sync.Mutex\nvar templateCache = make(map[string]*template.Template)\n\nvar defaultTemplateFuncs = template.FuncMap{\n\t// colors\n\t\"black\":      color.New(color.FgBlack).SprintFunc(),\n\t\"red\":        color.New(color.FgRed).SprintFunc(),\n\t\"green\":      color.New(color.FgGreen).SprintFunc(),\n\t\"yellow\":     color.New(color.FgYellow).SprintFunc(),\n\t\"blue\":       color.New(color.FgBlue).SprintFunc(),\n\t\"magenta\":    color.New(color.FgMagenta).SprintFunc(),\n\t\"cyan\":       color.New(color.FgCyan).SprintFunc(),\n\t\"white\":      color.New(color.FgWhite).SprintFunc(),\n\t\"resetcolor\": color.New(color.Reset).SprintFunc(),\n\t\"rndcolor\":   rndcolor,\n\t\"rnd\":        rnd,\n}\n\nfunc getTemplate(tmpl string) (t *template.Template, err error) {\n\ttemplateCacheMu.Lock()\n\tdefer templateCacheMu.Unlock()\n\tt = templateCache[tmpl]\n\tif t != nil {\n\t\t// found in cache\n\t\treturn\n\t}\n\tt = template.New(\"\")\n\tfillTemplateFuncs(t)\n\t_, err = t.Parse(tmpl)\n\tif err != nil {\n\t\tt = nil\n\t\treturn\n\t}\n\ttemplateCache[tmpl] = t\n\treturn\n}\n\nfunc fillTemplateFuncs(t *template.Template) {\n\tt.Funcs(defaultTemplateFuncs)\n\temf := make(template.FuncMap)\n\telementsM.Lock()\n\tfor k, v := range elements {\n\t\temf[k] = v\n\t}\n\telementsM.Unlock()\n\tt.Funcs(emf)\n\treturn\n}\n\nfunc rndcolor(s string) string {\n\tc := rand.Intn(int(color.FgWhite-color.FgBlack)) + int(color.FgBlack)\n\treturn color.New(color.Attribute(c)).Sprint(s)\n}\n\nfunc rnd(args ...string) string {\n\tif len(args) == 0 {\n\t\treturn \"\"\n\t}\n\treturn args[rand.Intn(len(args))]\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/termutil/term.go",
    "content": "package termutil\n\nimport (\n\t\"errors\"\n\t\"os\"\n\t\"os/signal\"\n\t\"sync\"\n)\n\nvar echoLocked bool\nvar echoLockMutex sync.Mutex\nvar errLocked = errors.New(\"terminal locked\")\n\n// RawModeOn switches terminal to raw mode\nfunc RawModeOn() (quit chan struct{}, err error) {\n\techoLockMutex.Lock()\n\tdefer echoLockMutex.Unlock()\n\tif echoLocked {\n\t\terr = errLocked\n\t\treturn\n\t}\n\tif err = lockEcho(); err != nil {\n\t\treturn\n\t}\n\techoLocked = true\n\tquit = make(chan struct{}, 1)\n\tgo catchTerminate(quit)\n\treturn\n}\n\n// RawModeOff restore previous terminal state\nfunc RawModeOff() (err error) {\n\techoLockMutex.Lock()\n\tdefer echoLockMutex.Unlock()\n\tif !echoLocked {\n\t\treturn\n\t}\n\tif err = unlockEcho(); err != nil {\n\t\treturn\n\t}\n\techoLocked = false\n\treturn\n}\n\n// listen exit signals and restore terminal state\nfunc catchTerminate(quit chan struct{}) {\n\tsig := make(chan os.Signal, 1)\n\tsignal.Notify(sig, unlockSignals...)\n\tdefer signal.Stop(sig)\n\tselect {\n\tcase <-quit:\n\t\tRawModeOff()\n\tcase <-sig:\n\t\tRawModeOff()\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/termutil/term_appengine.go",
    "content": "// +build appengine\n\npackage termutil\n\nimport \"errors\"\n\n// terminalWidth returns width of the terminal, which is not supported\n// and should always failed on appengine classic which is a sandboxed PaaS.\nfunc TerminalWidth() (int, error) {\n\treturn 0, errors.New(\"Not supported\")\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/termutil/term_bsd.go",
    "content": "// +build darwin freebsd netbsd openbsd dragonfly\n// +build !appengine\n\npackage termutil\n\nimport \"syscall\"\n\nconst ioctlReadTermios = syscall.TIOCGETA\nconst ioctlWriteTermios = syscall.TIOCSETA\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/termutil/term_linux.go",
    "content": "// +build linux\n// +build !appengine\n\npackage termutil\n\nconst ioctlReadTermios = 0x5401  // syscall.TCGETS\nconst ioctlWriteTermios = 0x5402 // syscall.TCSETS\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/termutil/term_nix.go",
    "content": "// +build linux darwin freebsd netbsd openbsd dragonfly\n// +build !appengine\n\npackage termutil\n\nimport \"syscall\"\n\nconst sysIoctl = syscall.SYS_IOCTL\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/termutil/term_plan9.go",
    "content": "package termutil\n\nimport (\n\t\"errors\"\n\t\"os\"\n\t\"syscall\"\n)\n\nvar (\n\tconsctl *os.File\n\n\t// Plan 9 doesn't have syscall.SIGQUIT\n\tunlockSignals = []os.Signal{\n\t\tos.Interrupt, syscall.SIGTERM, syscall.SIGKILL,\n\t}\n)\n\n// TerminalWidth returns width of the terminal.\nfunc TerminalWidth() (int, error) {\n\treturn 0, errors.New(\"Not supported\")\n}\n\nfunc lockEcho() error {\n\tif consctl != nil {\n\t\treturn errors.New(\"consctl already open\")\n\t}\n\tvar err error\n\tconsctl, err = os.OpenFile(\"/dev/consctl\", os.O_WRONLY, 0)\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = consctl.WriteString(\"rawon\")\n\tif err != nil {\n\t\tconsctl.Close()\n\t\tconsctl = nil\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc unlockEcho() error {\n\tif consctl == nil {\n\t\treturn nil\n\t}\n\tif err := consctl.Close(); err != nil {\n\t\treturn err\n\t}\n\tconsctl = nil\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/termutil/term_solaris.go",
    "content": "// +build solaris\n// +build !appengine\n\npackage termutil\n\nconst ioctlReadTermios = 0x5401  // syscall.TCGETS\nconst ioctlWriteTermios = 0x5402 // syscall.TCSETS\nconst sysIoctl = 54\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/termutil/term_win.go",
    "content": "// +build windows\n\npackage termutil\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"os/exec\"\n\t\"strconv\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar (\n\ttty = os.Stdin\n\n\tunlockSignals = []os.Signal{\n\t\tos.Interrupt, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGKILL,\n\t}\n)\n\nvar (\n\tkernel32 = syscall.NewLazyDLL(\"kernel32.dll\")\n\n\t// GetConsoleScreenBufferInfo retrieves information about the\n\t// specified console screen buffer.\n\t// http://msdn.microsoft.com/en-us/library/windows/desktop/ms683171(v=vs.85).aspx\n\tprocGetConsoleScreenBufferInfo = kernel32.NewProc(\"GetConsoleScreenBufferInfo\")\n\n\t// GetConsoleMode retrieves the current input mode of a console's\n\t// input buffer or the current output mode of a console screen buffer.\n\t// https://msdn.microsoft.com/en-us/library/windows/desktop/ms683167(v=vs.85).aspx\n\tgetConsoleMode = kernel32.NewProc(\"GetConsoleMode\")\n\n\t// SetConsoleMode sets the input mode of a console's input buffer\n\t// or the output mode of a console screen buffer.\n\t// https://msdn.microsoft.com/en-us/library/windows/desktop/ms686033(v=vs.85).aspx\n\tsetConsoleMode = kernel32.NewProc(\"SetConsoleMode\")\n\n\t// SetConsoleCursorPosition sets the cursor position in the\n\t// specified console screen buffer.\n\t// https://msdn.microsoft.com/en-us/library/windows/desktop/ms686025(v=vs.85).aspx\n\tsetConsoleCursorPosition = kernel32.NewProc(\"SetConsoleCursorPosition\")\n\n\tmingw = isMingw()\n)\n\ntype (\n\t// Defines the coordinates of the upper left and lower right corners\n\t// of a rectangle.\n\t// See\n\t// http://msdn.microsoft.com/en-us/library/windows/desktop/ms686311(v=vs.85).aspx\n\tsmallRect struct {\n\t\tLeft, Top, Right, Bottom int16\n\t}\n\n\t// Defines the coordinates of a character cell in a console screen\n\t// buffer. The origin of the coordinate system (0,0) is at the top, left cell\n\t// of the buffer.\n\t// See\n\t// http://msdn.microsoft.com/en-us/library/windows/desktop/ms682119(v=vs.85).aspx\n\tcoordinates struct {\n\t\tX, Y int16\n\t}\n\n\tword int16\n\n\t// Contains information about a console screen buffer.\n\t// http://msdn.microsoft.com/en-us/library/windows/desktop/ms682093(v=vs.85).aspx\n\tconsoleScreenBufferInfo struct {\n\t\tdwSize              coordinates\n\t\tdwCursorPosition    coordinates\n\t\twAttributes         word\n\t\tsrWindow            smallRect\n\t\tdwMaximumWindowSize coordinates\n\t}\n)\n\n// TerminalWidth returns width of the terminal.\nfunc TerminalWidth() (width int, err error) {\n\tif mingw {\n\t\treturn termWidthTPut()\n\t}\n\treturn termWidthCmd()\n}\n\nfunc termWidthCmd() (width int, err error) {\n\tvar info consoleScreenBufferInfo\n\t_, _, e := syscall.Syscall(procGetConsoleScreenBufferInfo.Addr(), 2, uintptr(syscall.Stdout), uintptr(unsafe.Pointer(&info)), 0)\n\tif e != 0 {\n\t\treturn 0, error(e)\n\t}\n\treturn int(info.dwSize.X) - 1, nil\n}\n\nfunc isMingw() bool {\n\treturn os.Getenv(\"MINGW_PREFIX\") != \"\" || os.Getenv(\"MSYSTEM\") == \"MINGW64\"\n}\n\nfunc termWidthTPut() (width int, err error) {\n\t// TODO: maybe anybody knows a better way to get it on mintty...\n\tvar res []byte\n\tcmd := exec.Command(\"tput\", \"cols\")\n\tcmd.Stdin = os.Stdin\n\tif res, err = cmd.CombinedOutput(); err != nil {\n\t\treturn 0, fmt.Errorf(\"%s: %v\", string(res), err)\n\t}\n\tif len(res) > 1 {\n\t\tres = res[:len(res)-1]\n\t}\n\treturn strconv.Atoi(string(res))\n}\n\nfunc getCursorPos() (pos coordinates, err error) {\n\tvar info consoleScreenBufferInfo\n\t_, _, e := syscall.Syscall(procGetConsoleScreenBufferInfo.Addr(), 2, uintptr(syscall.Stdout), uintptr(unsafe.Pointer(&info)), 0)\n\tif e != 0 {\n\t\treturn info.dwCursorPosition, error(e)\n\t}\n\treturn info.dwCursorPosition, nil\n}\n\nfunc setCursorPos(pos coordinates) error {\n\t_, _, e := syscall.Syscall(setConsoleCursorPosition.Addr(), 2, uintptr(syscall.Stdout), uintptr(uint32(uint16(pos.Y))<<16|uint32(uint16(pos.X))), 0)\n\tif e != 0 {\n\t\treturn error(e)\n\t}\n\treturn nil\n}\n\nvar oldState word\n\nfunc lockEcho() (err error) {\n\tif _, _, e := syscall.Syscall(getConsoleMode.Addr(), 2, uintptr(syscall.Stdout), uintptr(unsafe.Pointer(&oldState)), 0); e != 0 {\n\t\terr = fmt.Errorf(\"Can't get terminal settings: %v\", e)\n\t\treturn\n\t}\n\n\tnewState := oldState\n\tconst ENABLE_ECHO_INPUT = 0x0004\n\tconst ENABLE_LINE_INPUT = 0x0002\n\tnewState = newState & (^(ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT))\n\tif _, _, e := syscall.Syscall(setConsoleMode.Addr(), 2, uintptr(syscall.Stdout), uintptr(newState), 0); e != 0 {\n\t\terr = fmt.Errorf(\"Can't set terminal settings: %v\", e)\n\t\treturn\n\t}\n\treturn\n}\n\nfunc unlockEcho() (err error) {\n\tif _, _, e := syscall.Syscall(setConsoleMode.Addr(), 2, uintptr(syscall.Stdout), uintptr(oldState), 0); e != 0 {\n\t\terr = fmt.Errorf(\"Can't set terminal settings\")\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/termutil/term_x.go",
    "content": "// +build linux darwin freebsd netbsd openbsd solaris dragonfly\n// +build !appengine\n\npackage termutil\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar (\n\ttty *os.File\n\n\tunlockSignals = []os.Signal{\n\t\tos.Interrupt, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGKILL,\n\t}\n)\n\ntype window struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nfunc init() {\n\tvar err error\n\ttty, err = os.Open(\"/dev/tty\")\n\tif err != nil {\n\t\ttty = os.Stdin\n\t}\n}\n\n// TerminalWidth returns width of the terminal.\nfunc TerminalWidth() (int, error) {\n\tw := new(window)\n\tres, _, err := syscall.Syscall(sysIoctl,\n\t\ttty.Fd(),\n\t\tuintptr(syscall.TIOCGWINSZ),\n\t\tuintptr(unsafe.Pointer(w)),\n\t)\n\tif int(res) == -1 {\n\t\treturn 0, err\n\t}\n\treturn int(w.Col), nil\n}\n\nvar oldState syscall.Termios\n\nfunc lockEcho() (err error) {\n\tfd := tty.Fd()\n\tif _, _, e := syscall.Syscall6(sysIoctl, fd, ioctlReadTermios, uintptr(unsafe.Pointer(&oldState)), 0, 0, 0); e != 0 {\n\t\terr = fmt.Errorf(\"Can't get terminal settings: %v\", e)\n\t\treturn\n\t}\n\n\tnewState := oldState\n\tnewState.Lflag &^= syscall.ECHO\n\tnewState.Lflag |= syscall.ICANON | syscall.ISIG\n\tnewState.Iflag |= syscall.ICRNL\n\tif _, _, e := syscall.Syscall6(sysIoctl, fd, ioctlWriteTermios, uintptr(unsafe.Pointer(&newState)), 0, 0, 0); e != 0 {\n\t\terr = fmt.Errorf(\"Can't set terminal settings: %v\", e)\n\t\treturn\n\t}\n\treturn\n}\n\nfunc unlockEcho() (err error) {\n\tfd := tty.Fd()\n\tif _, _, e := syscall.Syscall6(sysIoctl, fd, ioctlWriteTermios, uintptr(unsafe.Pointer(&oldState)), 0, 0, 0); e != 0 {\n\t\terr = fmt.Errorf(\"Can't set terminal settings\")\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/github.com/cheggaaa/pb/v3/util.go",
    "content": "package pb\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"github.com/mattn/go-runewidth\"\n\t\"math\"\n\t\"regexp\"\n\t//\"unicode/utf8\"\n)\n\nconst (\n\t_KiB = 1024\n\t_MiB = 1048576\n\t_GiB = 1073741824\n\t_TiB = 1099511627776\n\n\t_kB = 1e3\n\t_MB = 1e6\n\t_GB = 1e9\n\t_TB = 1e12\n)\n\nvar ctrlFinder = regexp.MustCompile(\"\\x1b\\x5b[0-9]+\\x6d\")\n\nfunc CellCount(s string) int {\n\tn := runewidth.StringWidth(s)\n\tfor _, sm := range ctrlFinder.FindAllString(s, -1) {\n\t\tn -= runewidth.StringWidth(sm)\n\t}\n\treturn n\n}\n\nfunc StripString(s string, w int) string {\n\tl := CellCount(s)\n\tif l <= w {\n\t\treturn s\n\t}\n\tvar buf = bytes.NewBuffer(make([]byte, 0, len(s)))\n\tStripStringToBuffer(s, w, buf)\n\treturn buf.String()\n}\n\nfunc StripStringToBuffer(s string, w int, buf *bytes.Buffer) {\n\tvar seqs = ctrlFinder.FindAllStringIndex(s, -1)\nmainloop:\n\tfor i, r := range s {\n\t\tfor _, seq := range seqs {\n\t\t\tif i >= seq[0] && i < seq[1] {\n\t\t\t\tbuf.WriteRune(r)\n\t\t\t\tcontinue mainloop\n\t\t\t}\n\t\t}\n\t\tif rw := CellCount(string(r)); rw <= w {\n\t\t\tw -= rw\n\t\t\tbuf.WriteRune(r)\n\t\t} else {\n\t\t\tbreak\n\t\t}\n\t}\n\tfor w > 0 {\n\t\tbuf.WriteByte(' ')\n\t\tw--\n\t}\n\treturn\n}\n\nfunc round(val float64) (newVal float64) {\n\troundOn := 0.5\n\tplaces := 0\n\tvar round float64\n\tpow := math.Pow(10, float64(places))\n\tdigit := pow * val\n\t_, div := math.Modf(digit)\n\tif div >= roundOn {\n\t\tround = math.Ceil(digit)\n\t} else {\n\t\tround = math.Floor(digit)\n\t}\n\tnewVal = round / pow\n\treturn\n}\n\n// Convert bytes to human readable string. Like a 2 MiB, 64.2 KiB, or 2 MB, 64.2 kB\n// if useSIPrefix is set to true\nfunc formatBytes(i int64, useSIPrefix bool) (result string) {\n\tif !useSIPrefix {\n\t\tswitch {\n\t\tcase i >= _TiB:\n\t\t\tresult = fmt.Sprintf(\"%.02f TiB\", float64(i)/_TiB)\n\t\tcase i >= _GiB:\n\t\t\tresult = fmt.Sprintf(\"%.02f GiB\", float64(i)/_GiB)\n\t\tcase i >= _MiB:\n\t\t\tresult = fmt.Sprintf(\"%.02f MiB\", float64(i)/_MiB)\n\t\tcase i >= _KiB:\n\t\t\tresult = fmt.Sprintf(\"%.02f KiB\", float64(i)/_KiB)\n\t\tdefault:\n\t\t\tresult = fmt.Sprintf(\"%d B\", i)\n\t\t}\n\t} else {\n\t\tswitch {\n\t\tcase i >= _TB:\n\t\t\tresult = fmt.Sprintf(\"%.02f TB\", float64(i)/_TB)\n\t\tcase i >= _GB:\n\t\t\tresult = fmt.Sprintf(\"%.02f GB\", float64(i)/_GB)\n\t\tcase i >= _MB:\n\t\t\tresult = fmt.Sprintf(\"%.02f MB\", float64(i)/_MB)\n\t\tcase i >= _kB:\n\t\t\tresult = fmt.Sprintf(\"%.02f kB\", float64(i)/_kB)\n\t\tdefault:\n\t\t\tresult = fmt.Sprintf(\"%d B\", i)\n\t\t}\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/github.com/fatih/color/.travis.yml",
    "content": "language: go\ngo: \n - 1.8.x\n - tip\n\n"
  },
  {
    "path": "vendor/github.com/fatih/color/Gopkg.toml",
    "content": "\n# Gopkg.toml example\n#\n# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md\n# for detailed Gopkg.toml documentation.\n#\n# required = [\"github.com/user/thing/cmd/thing\"]\n# ignored = [\"github.com/user/project/pkgX\", \"bitbucket.org/user/project/pkgA/pkgY\"]\n#\n# [[constraint]]\n#   name = \"github.com/user/project\"\n#   version = \"1.0.0\"\n#\n# [[constraint]]\n#   name = \"github.com/user/project2\"\n#   branch = \"dev\"\n#   source = \"github.com/myfork/project2\"\n#\n# [[override]]\n#  name = \"github.com/x/y\"\n#  version = \"2.4.0\"\n\n\n[[constraint]]\n  name = \"github.com/mattn/go-colorable\"\n  version = \"0.0.9\"\n\n[[constraint]]\n  name = \"github.com/mattn/go-isatty\"\n  version = \"0.0.3\"\n"
  },
  {
    "path": "vendor/github.com/fatih/color/LICENSE.md",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Fatih Arslan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/fatih/color/README.md",
    "content": "# Color [![GoDoc](https://godoc.org/github.com/fatih/color?status.svg)](https://godoc.org/github.com/fatih/color) [![Build Status](https://img.shields.io/travis/fatih/color.svg?style=flat-square)](https://travis-ci.org/fatih/color)\n\n\n\nColor lets you use colorized outputs in terms of [ANSI Escape\nCodes](http://en.wikipedia.org/wiki/ANSI_escape_code#Colors) in Go (Golang). It\nhas support for Windows too! The API can be used in several ways, pick one that\nsuits you.\n\n\n![Color](https://i.imgur.com/c1JI0lA.png)\n\n\n## Install\n\n```bash\ngo get github.com/fatih/color\n```\n\nNote that the `vendor` folder is here for stability. Remove the folder if you\nalready have the dependencies in your GOPATH.\n\n## Examples\n\n### Standard colors\n\n```go\n// Print with default helper functions\ncolor.Cyan(\"Prints text in cyan.\")\n\n// A newline will be appended automatically\ncolor.Blue(\"Prints %s in blue.\", \"text\")\n\n// These are using the default foreground colors\ncolor.Red(\"We have red\")\ncolor.Magenta(\"And many others ..\")\n\n```\n\n### Mix and reuse colors\n\n```go\n// Create a new color object\nc := color.New(color.FgCyan).Add(color.Underline)\nc.Println(\"Prints cyan text with an underline.\")\n\n// Or just add them to New()\nd := color.New(color.FgCyan, color.Bold)\nd.Printf(\"This prints bold cyan %s\\n\", \"too!.\")\n\n// Mix up foreground and background colors, create new mixes!\nred := color.New(color.FgRed)\n\nboldRed := red.Add(color.Bold)\nboldRed.Println(\"This will print text in bold red.\")\n\nwhiteBackground := red.Add(color.BgWhite)\nwhiteBackground.Println(\"Red text with white background.\")\n```\n\n### Use your own output (io.Writer)\n\n```go\n// Use your own io.Writer output\ncolor.New(color.FgBlue).Fprintln(myWriter, \"blue color!\")\n\nblue := color.New(color.FgBlue)\nblue.Fprint(writer, \"This will print text in blue.\")\n```\n\n### Custom print functions (PrintFunc)\n\n```go\n// Create a custom print function for convenience\nred := color.New(color.FgRed).PrintfFunc()\nred(\"Warning\")\nred(\"Error: %s\", err)\n\n// Mix up multiple attributes\nnotice := color.New(color.Bold, color.FgGreen).PrintlnFunc()\nnotice(\"Don't forget this...\")\n```\n\n### Custom fprint functions (FprintFunc)\n\n```go\nblue := color.New(FgBlue).FprintfFunc()\nblue(myWriter, \"important notice: %s\", stars)\n\n// Mix up with multiple attributes\nsuccess := color.New(color.Bold, color.FgGreen).FprintlnFunc()\nsuccess(myWriter, \"Don't forget this...\")\n```\n\n### Insert into noncolor strings (SprintFunc)\n\n```go\n// Create SprintXxx functions to mix strings with other non-colorized strings:\nyellow := color.New(color.FgYellow).SprintFunc()\nred := color.New(color.FgRed).SprintFunc()\nfmt.Printf(\"This is a %s and this is %s.\\n\", yellow(\"warning\"), red(\"error\"))\n\ninfo := color.New(color.FgWhite, color.BgGreen).SprintFunc()\nfmt.Printf(\"This %s rocks!\\n\", info(\"package\"))\n\n// Use helper functions\nfmt.Println(\"This\", color.RedString(\"warning\"), \"should be not neglected.\")\nfmt.Printf(\"%v %v\\n\", color.GreenString(\"Info:\"), \"an important message.\")\n\n// Windows supported too! Just don't forget to change the output to color.Output\nfmt.Fprintf(color.Output, \"Windows support: %s\", color.GreenString(\"PASS\"))\n```\n\n### Plug into existing code\n\n```go\n// Use handy standard colors\ncolor.Set(color.FgYellow)\n\nfmt.Println(\"Existing text will now be in yellow\")\nfmt.Printf(\"This one %s\\n\", \"too\")\n\ncolor.Unset() // Don't forget to unset\n\n// You can mix up parameters\ncolor.Set(color.FgMagenta, color.Bold)\ndefer color.Unset() // Use it in your function\n\nfmt.Println(\"All text will now be bold magenta.\")\n```\n\n### Disable/Enable color\n \nThere might be a case where you want to explicitly disable/enable color output. the \n`go-isatty` package will automatically disable color output for non-tty output streams \n(for example if the output were piped directly to `less`)\n\n`Color` has support to disable/enable colors both globally and for single color \ndefinitions. For example suppose you have a CLI app and a `--no-color` bool flag. You \ncan easily disable the color output with:\n\n```go\n\nvar flagNoColor = flag.Bool(\"no-color\", false, \"Disable color output\")\n\nif *flagNoColor {\n\tcolor.NoColor = true // disables colorized output\n}\n```\n\nIt also has support for single color definitions (local). You can\ndisable/enable color output on the fly:\n\n```go\nc := color.New(color.FgCyan)\nc.Println(\"Prints cyan text\")\n\nc.DisableColor()\nc.Println(\"This is printed without any color\")\n\nc.EnableColor()\nc.Println(\"This prints again cyan...\")\n```\n\n## Todo\n\n* Save/Return previous values\n* Evaluate fmt.Formatter interface\n\n\n## Credits\n\n * [Fatih Arslan](https://github.com/fatih)\n * Windows support via @mattn: [colorable](https://github.com/mattn/go-colorable)\n\n## License\n\nThe MIT License (MIT) - see [`LICENSE.md`](https://github.com/fatih/color/blob/master/LICENSE.md) for more details\n\n"
  },
  {
    "path": "vendor/github.com/fatih/color/color.go",
    "content": "package color\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\n\t\"github.com/mattn/go-colorable\"\n\t\"github.com/mattn/go-isatty\"\n)\n\nvar (\n\t// NoColor defines if the output is colorized or not. It's dynamically set to\n\t// false or true based on the stdout's file descriptor referring to a terminal\n\t// or not. This is a global option and affects all colors. For more control\n\t// over each color block use the methods DisableColor() individually.\n\tNoColor = os.Getenv(\"TERM\") == \"dumb\" ||\n\t\t(!isatty.IsTerminal(os.Stdout.Fd()) && !isatty.IsCygwinTerminal(os.Stdout.Fd()))\n\n\t// Output defines the standard output of the print functions. By default\n\t// os.Stdout is used.\n\tOutput = colorable.NewColorableStdout()\n\n\t// Error defines a color supporting writer for os.Stderr.\n\tError = colorable.NewColorableStderr()\n\n\t// colorsCache is used to reduce the count of created Color objects and\n\t// allows to reuse already created objects with required Attribute.\n\tcolorsCache   = make(map[Attribute]*Color)\n\tcolorsCacheMu sync.Mutex // protects colorsCache\n)\n\n// Color defines a custom color object which is defined by SGR parameters.\ntype Color struct {\n\tparams  []Attribute\n\tnoColor *bool\n}\n\n// Attribute defines a single SGR Code\ntype Attribute int\n\nconst escape = \"\\x1b\"\n\n// Base attributes\nconst (\n\tReset Attribute = iota\n\tBold\n\tFaint\n\tItalic\n\tUnderline\n\tBlinkSlow\n\tBlinkRapid\n\tReverseVideo\n\tConcealed\n\tCrossedOut\n)\n\n// Foreground text colors\nconst (\n\tFgBlack Attribute = iota + 30\n\tFgRed\n\tFgGreen\n\tFgYellow\n\tFgBlue\n\tFgMagenta\n\tFgCyan\n\tFgWhite\n)\n\n// Foreground Hi-Intensity text colors\nconst (\n\tFgHiBlack Attribute = iota + 90\n\tFgHiRed\n\tFgHiGreen\n\tFgHiYellow\n\tFgHiBlue\n\tFgHiMagenta\n\tFgHiCyan\n\tFgHiWhite\n)\n\n// Background text colors\nconst (\n\tBgBlack Attribute = iota + 40\n\tBgRed\n\tBgGreen\n\tBgYellow\n\tBgBlue\n\tBgMagenta\n\tBgCyan\n\tBgWhite\n)\n\n// Background Hi-Intensity text colors\nconst (\n\tBgHiBlack Attribute = iota + 100\n\tBgHiRed\n\tBgHiGreen\n\tBgHiYellow\n\tBgHiBlue\n\tBgHiMagenta\n\tBgHiCyan\n\tBgHiWhite\n)\n\n// New returns a newly created color object.\nfunc New(value ...Attribute) *Color {\n\tc := &Color{params: make([]Attribute, 0)}\n\tc.Add(value...)\n\treturn c\n}\n\n// Set sets the given parameters immediately. It will change the color of\n// output with the given SGR parameters until color.Unset() is called.\nfunc Set(p ...Attribute) *Color {\n\tc := New(p...)\n\tc.Set()\n\treturn c\n}\n\n// Unset resets all escape attributes and clears the output. Usually should\n// be called after Set().\nfunc Unset() {\n\tif NoColor {\n\t\treturn\n\t}\n\n\tfmt.Fprintf(Output, \"%s[%dm\", escape, Reset)\n}\n\n// Set sets the SGR sequence.\nfunc (c *Color) Set() *Color {\n\tif c.isNoColorSet() {\n\t\treturn c\n\t}\n\n\tfmt.Fprintf(Output, c.format())\n\treturn c\n}\n\nfunc (c *Color) unset() {\n\tif c.isNoColorSet() {\n\t\treturn\n\t}\n\n\tUnset()\n}\n\nfunc (c *Color) setWriter(w io.Writer) *Color {\n\tif c.isNoColorSet() {\n\t\treturn c\n\t}\n\n\tfmt.Fprintf(w, c.format())\n\treturn c\n}\n\nfunc (c *Color) unsetWriter(w io.Writer) {\n\tif c.isNoColorSet() {\n\t\treturn\n\t}\n\n\tif NoColor {\n\t\treturn\n\t}\n\n\tfmt.Fprintf(w, \"%s[%dm\", escape, Reset)\n}\n\n// Add is used to chain SGR parameters. Use as many as parameters to combine\n// and create custom color objects. Example: Add(color.FgRed, color.Underline).\nfunc (c *Color) Add(value ...Attribute) *Color {\n\tc.params = append(c.params, value...)\n\treturn c\n}\n\nfunc (c *Color) prepend(value Attribute) {\n\tc.params = append(c.params, 0)\n\tcopy(c.params[1:], c.params[0:])\n\tc.params[0] = value\n}\n\n// Fprint formats using the default formats for its operands and writes to w.\n// Spaces are added between operands when neither is a string.\n// It returns the number of bytes written and any write error encountered.\n// On Windows, users should wrap w with colorable.NewColorable() if w is of\n// type *os.File.\nfunc (c *Color) Fprint(w io.Writer, a ...interface{}) (n int, err error) {\n\tc.setWriter(w)\n\tdefer c.unsetWriter(w)\n\n\treturn fmt.Fprint(w, a...)\n}\n\n// Print formats using the default formats for its operands and writes to\n// standard output. Spaces are added between operands when neither is a\n// string. It returns the number of bytes written and any write error\n// encountered. This is the standard fmt.Print() method wrapped with the given\n// color.\nfunc (c *Color) Print(a ...interface{}) (n int, err error) {\n\tc.Set()\n\tdefer c.unset()\n\n\treturn fmt.Fprint(Output, a...)\n}\n\n// Fprintf formats according to a format specifier and writes to w.\n// It returns the number of bytes written and any write error encountered.\n// On Windows, users should wrap w with colorable.NewColorable() if w is of\n// type *os.File.\nfunc (c *Color) Fprintf(w io.Writer, format string, a ...interface{}) (n int, err error) {\n\tc.setWriter(w)\n\tdefer c.unsetWriter(w)\n\n\treturn fmt.Fprintf(w, format, a...)\n}\n\n// Printf formats according to a format specifier and writes to standard output.\n// It returns the number of bytes written and any write error encountered.\n// This is the standard fmt.Printf() method wrapped with the given color.\nfunc (c *Color) Printf(format string, a ...interface{}) (n int, err error) {\n\tc.Set()\n\tdefer c.unset()\n\n\treturn fmt.Fprintf(Output, format, a...)\n}\n\n// Fprintln formats using the default formats for its operands and writes to w.\n// Spaces are always added between operands and a newline is appended.\n// On Windows, users should wrap w with colorable.NewColorable() if w is of\n// type *os.File.\nfunc (c *Color) Fprintln(w io.Writer, a ...interface{}) (n int, err error) {\n\tc.setWriter(w)\n\tdefer c.unsetWriter(w)\n\n\treturn fmt.Fprintln(w, a...)\n}\n\n// Println formats using the default formats for its operands and writes to\n// standard output. Spaces are always added between operands and a newline is\n// appended. It returns the number of bytes written and any write error\n// encountered. This is the standard fmt.Print() method wrapped with the given\n// color.\nfunc (c *Color) Println(a ...interface{}) (n int, err error) {\n\tc.Set()\n\tdefer c.unset()\n\n\treturn fmt.Fprintln(Output, a...)\n}\n\n// Sprint is just like Print, but returns a string instead of printing it.\nfunc (c *Color) Sprint(a ...interface{}) string {\n\treturn c.wrap(fmt.Sprint(a...))\n}\n\n// Sprintln is just like Println, but returns a string instead of printing it.\nfunc (c *Color) Sprintln(a ...interface{}) string {\n\treturn c.wrap(fmt.Sprintln(a...))\n}\n\n// Sprintf is just like Printf, but returns a string instead of printing it.\nfunc (c *Color) Sprintf(format string, a ...interface{}) string {\n\treturn c.wrap(fmt.Sprintf(format, a...))\n}\n\n// FprintFunc returns a new function that prints the passed arguments as\n// colorized with color.Fprint().\nfunc (c *Color) FprintFunc() func(w io.Writer, a ...interface{}) {\n\treturn func(w io.Writer, a ...interface{}) {\n\t\tc.Fprint(w, a...)\n\t}\n}\n\n// PrintFunc returns a new function that prints the passed arguments as\n// colorized with color.Print().\nfunc (c *Color) PrintFunc() func(a ...interface{}) {\n\treturn func(a ...interface{}) {\n\t\tc.Print(a...)\n\t}\n}\n\n// FprintfFunc returns a new function that prints the passed arguments as\n// colorized with color.Fprintf().\nfunc (c *Color) FprintfFunc() func(w io.Writer, format string, a ...interface{}) {\n\treturn func(w io.Writer, format string, a ...interface{}) {\n\t\tc.Fprintf(w, format, a...)\n\t}\n}\n\n// PrintfFunc returns a new function that prints the passed arguments as\n// colorized with color.Printf().\nfunc (c *Color) PrintfFunc() func(format string, a ...interface{}) {\n\treturn func(format string, a ...interface{}) {\n\t\tc.Printf(format, a...)\n\t}\n}\n\n// FprintlnFunc returns a new function that prints the passed arguments as\n// colorized with color.Fprintln().\nfunc (c *Color) FprintlnFunc() func(w io.Writer, a ...interface{}) {\n\treturn func(w io.Writer, a ...interface{}) {\n\t\tc.Fprintln(w, a...)\n\t}\n}\n\n// PrintlnFunc returns a new function that prints the passed arguments as\n// colorized with color.Println().\nfunc (c *Color) PrintlnFunc() func(a ...interface{}) {\n\treturn func(a ...interface{}) {\n\t\tc.Println(a...)\n\t}\n}\n\n// SprintFunc returns a new function that returns colorized strings for the\n// given arguments with fmt.Sprint(). Useful to put into or mix into other\n// string. Windows users should use this in conjunction with color.Output, example:\n//\n//\tput := New(FgYellow).SprintFunc()\n//\tfmt.Fprintf(color.Output, \"This is a %s\", put(\"warning\"))\nfunc (c *Color) SprintFunc() func(a ...interface{}) string {\n\treturn func(a ...interface{}) string {\n\t\treturn c.wrap(fmt.Sprint(a...))\n\t}\n}\n\n// SprintfFunc returns a new function that returns colorized strings for the\n// given arguments with fmt.Sprintf(). Useful to put into or mix into other\n// string. Windows users should use this in conjunction with color.Output.\nfunc (c *Color) SprintfFunc() func(format string, a ...interface{}) string {\n\treturn func(format string, a ...interface{}) string {\n\t\treturn c.wrap(fmt.Sprintf(format, a...))\n\t}\n}\n\n// SprintlnFunc returns a new function that returns colorized strings for the\n// given arguments with fmt.Sprintln(). Useful to put into or mix into other\n// string. Windows users should use this in conjunction with color.Output.\nfunc (c *Color) SprintlnFunc() func(a ...interface{}) string {\n\treturn func(a ...interface{}) string {\n\t\treturn c.wrap(fmt.Sprintln(a...))\n\t}\n}\n\n// sequence returns a formatted SGR sequence to be plugged into a \"\\x1b[...m\"\n// an example output might be: \"1;36\" -> bold cyan\nfunc (c *Color) sequence() string {\n\tformat := make([]string, len(c.params))\n\tfor i, v := range c.params {\n\t\tformat[i] = strconv.Itoa(int(v))\n\t}\n\n\treturn strings.Join(format, \";\")\n}\n\n// wrap wraps the s string with the colors attributes. The string is ready to\n// be printed.\nfunc (c *Color) wrap(s string) string {\n\tif c.isNoColorSet() {\n\t\treturn s\n\t}\n\n\treturn c.format() + s + c.unformat()\n}\n\nfunc (c *Color) format() string {\n\treturn fmt.Sprintf(\"%s[%sm\", escape, c.sequence())\n}\n\nfunc (c *Color) unformat() string {\n\treturn fmt.Sprintf(\"%s[%dm\", escape, Reset)\n}\n\n// DisableColor disables the color output. Useful to not change any existing\n// code and still being able to output. Can be used for flags like\n// \"--no-color\". To enable back use EnableColor() method.\nfunc (c *Color) DisableColor() {\n\tc.noColor = boolPtr(true)\n}\n\n// EnableColor enables the color output. Use it in conjunction with\n// DisableColor(). Otherwise this method has no side effects.\nfunc (c *Color) EnableColor() {\n\tc.noColor = boolPtr(false)\n}\n\nfunc (c *Color) isNoColorSet() bool {\n\t// check first if we have user setted action\n\tif c.noColor != nil {\n\t\treturn *c.noColor\n\t}\n\n\t// if not return the global option, which is disabled by default\n\treturn NoColor\n}\n\n// Equals returns a boolean value indicating whether two colors are equal.\nfunc (c *Color) Equals(c2 *Color) bool {\n\tif len(c.params) != len(c2.params) {\n\t\treturn false\n\t}\n\n\tfor _, attr := range c.params {\n\t\tif !c2.attrExists(attr) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\treturn true\n}\n\nfunc (c *Color) attrExists(a Attribute) bool {\n\tfor _, attr := range c.params {\n\t\tif attr == a {\n\t\t\treturn true\n\t\t}\n\t}\n\n\treturn false\n}\n\nfunc boolPtr(v bool) *bool {\n\treturn &v\n}\n\nfunc getCachedColor(p Attribute) *Color {\n\tcolorsCacheMu.Lock()\n\tdefer colorsCacheMu.Unlock()\n\n\tc, ok := colorsCache[p]\n\tif !ok {\n\t\tc = New(p)\n\t\tcolorsCache[p] = c\n\t}\n\n\treturn c\n}\n\nfunc colorPrint(format string, p Attribute, a ...interface{}) {\n\tc := getCachedColor(p)\n\n\tif !strings.HasSuffix(format, \"\\n\") {\n\t\tformat += \"\\n\"\n\t}\n\n\tif len(a) == 0 {\n\t\tc.Print(format)\n\t} else {\n\t\tc.Printf(format, a...)\n\t}\n}\n\nfunc colorString(format string, p Attribute, a ...interface{}) string {\n\tc := getCachedColor(p)\n\n\tif len(a) == 0 {\n\t\treturn c.SprintFunc()(format)\n\t}\n\n\treturn c.SprintfFunc()(format, a...)\n}\n\n// Black is a convenient helper function to print with black foreground. A\n// newline is appended to format by default.\nfunc Black(format string, a ...interface{}) { colorPrint(format, FgBlack, a...) }\n\n// Red is a convenient helper function to print with red foreground. A\n// newline is appended to format by default.\nfunc Red(format string, a ...interface{}) { colorPrint(format, FgRed, a...) }\n\n// Green is a convenient helper function to print with green foreground. A\n// newline is appended to format by default.\nfunc Green(format string, a ...interface{}) { colorPrint(format, FgGreen, a...) }\n\n// Yellow is a convenient helper function to print with yellow foreground.\n// A newline is appended to format by default.\nfunc Yellow(format string, a ...interface{}) { colorPrint(format, FgYellow, a...) }\n\n// Blue is a convenient helper function to print with blue foreground. A\n// newline is appended to format by default.\nfunc Blue(format string, a ...interface{}) { colorPrint(format, FgBlue, a...) }\n\n// Magenta is a convenient helper function to print with magenta foreground.\n// A newline is appended to format by default.\nfunc Magenta(format string, a ...interface{}) { colorPrint(format, FgMagenta, a...) }\n\n// Cyan is a convenient helper function to print with cyan foreground. A\n// newline is appended to format by default.\nfunc Cyan(format string, a ...interface{}) { colorPrint(format, FgCyan, a...) }\n\n// White is a convenient helper function to print with white foreground. A\n// newline is appended to format by default.\nfunc White(format string, a ...interface{}) { colorPrint(format, FgWhite, a...) }\n\n// BlackString is a convenient helper function to return a string with black\n// foreground.\nfunc BlackString(format string, a ...interface{}) string { return colorString(format, FgBlack, a...) }\n\n// RedString is a convenient helper function to return a string with red\n// foreground.\nfunc RedString(format string, a ...interface{}) string { return colorString(format, FgRed, a...) }\n\n// GreenString is a convenient helper function to return a string with green\n// foreground.\nfunc GreenString(format string, a ...interface{}) string { return colorString(format, FgGreen, a...) }\n\n// YellowString is a convenient helper function to return a string with yellow\n// foreground.\nfunc YellowString(format string, a ...interface{}) string { return colorString(format, FgYellow, a...) }\n\n// BlueString is a convenient helper function to return a string with blue\n// foreground.\nfunc BlueString(format string, a ...interface{}) string { return colorString(format, FgBlue, a...) }\n\n// MagentaString is a convenient helper function to return a string with magenta\n// foreground.\nfunc MagentaString(format string, a ...interface{}) string {\n\treturn colorString(format, FgMagenta, a...)\n}\n\n// CyanString is a convenient helper function to return a string with cyan\n// foreground.\nfunc CyanString(format string, a ...interface{}) string { return colorString(format, FgCyan, a...) }\n\n// WhiteString is a convenient helper function to return a string with white\n// foreground.\nfunc WhiteString(format string, a ...interface{}) string { return colorString(format, FgWhite, a...) }\n\n// HiBlack is a convenient helper function to print with hi-intensity black foreground. A\n// newline is appended to format by default.\nfunc HiBlack(format string, a ...interface{}) { colorPrint(format, FgHiBlack, a...) }\n\n// HiRed is a convenient helper function to print with hi-intensity red foreground. A\n// newline is appended to format by default.\nfunc HiRed(format string, a ...interface{}) { colorPrint(format, FgHiRed, a...) }\n\n// HiGreen is a convenient helper function to print with hi-intensity green foreground. A\n// newline is appended to format by default.\nfunc HiGreen(format string, a ...interface{}) { colorPrint(format, FgHiGreen, a...) }\n\n// HiYellow is a convenient helper function to print with hi-intensity yellow foreground.\n// A newline is appended to format by default.\nfunc HiYellow(format string, a ...interface{}) { colorPrint(format, FgHiYellow, a...) }\n\n// HiBlue is a convenient helper function to print with hi-intensity blue foreground. A\n// newline is appended to format by default.\nfunc HiBlue(format string, a ...interface{}) { colorPrint(format, FgHiBlue, a...) }\n\n// HiMagenta is a convenient helper function to print with hi-intensity magenta foreground.\n// A newline is appended to format by default.\nfunc HiMagenta(format string, a ...interface{}) { colorPrint(format, FgHiMagenta, a...) }\n\n// HiCyan is a convenient helper function to print with hi-intensity cyan foreground. A\n// newline is appended to format by default.\nfunc HiCyan(format string, a ...interface{}) { colorPrint(format, FgHiCyan, a...) }\n\n// HiWhite is a convenient helper function to print with hi-intensity white foreground. A\n// newline is appended to format by default.\nfunc HiWhite(format string, a ...interface{}) { colorPrint(format, FgHiWhite, a...) }\n\n// HiBlackString is a convenient helper function to return a string with hi-intensity black\n// foreground.\nfunc HiBlackString(format string, a ...interface{}) string {\n\treturn colorString(format, FgHiBlack, a...)\n}\n\n// HiRedString is a convenient helper function to return a string with hi-intensity red\n// foreground.\nfunc HiRedString(format string, a ...interface{}) string { return colorString(format, FgHiRed, a...) }\n\n// HiGreenString is a convenient helper function to return a string with hi-intensity green\n// foreground.\nfunc HiGreenString(format string, a ...interface{}) string {\n\treturn colorString(format, FgHiGreen, a...)\n}\n\n// HiYellowString is a convenient helper function to return a string with hi-intensity yellow\n// foreground.\nfunc HiYellowString(format string, a ...interface{}) string {\n\treturn colorString(format, FgHiYellow, a...)\n}\n\n// HiBlueString is a convenient helper function to return a string with hi-intensity blue\n// foreground.\nfunc HiBlueString(format string, a ...interface{}) string { return colorString(format, FgHiBlue, a...) }\n\n// HiMagentaString is a convenient helper function to return a string with hi-intensity magenta\n// foreground.\nfunc HiMagentaString(format string, a ...interface{}) string {\n\treturn colorString(format, FgHiMagenta, a...)\n}\n\n// HiCyanString is a convenient helper function to return a string with hi-intensity cyan\n// foreground.\nfunc HiCyanString(format string, a ...interface{}) string { return colorString(format, FgHiCyan, a...) }\n\n// HiWhiteString is a convenient helper function to return a string with hi-intensity white\n// foreground.\nfunc HiWhiteString(format string, a ...interface{}) string {\n\treturn colorString(format, FgHiWhite, a...)\n}\n"
  },
  {
    "path": "vendor/github.com/fatih/color/doc.go",
    "content": "/*\nPackage color is an ANSI color package to output colorized or SGR defined\noutput to the standard output. The API can be used in several way, pick one\nthat suits you.\n\nUse simple and default helper functions with predefined foreground colors:\n\n    color.Cyan(\"Prints text in cyan.\")\n\n    // a newline will be appended automatically\n    color.Blue(\"Prints %s in blue.\", \"text\")\n\n    // More default foreground colors..\n    color.Red(\"We have red\")\n    color.Yellow(\"Yellow color too!\")\n    color.Magenta(\"And many others ..\")\n\n    // Hi-intensity colors\n    color.HiGreen(\"Bright green color.\")\n    color.HiBlack(\"Bright black means gray..\")\n    color.HiWhite(\"Shiny white color!\")\n\nHowever there are times where custom color mixes are required. Below are some\nexamples to create custom color objects and use the print functions of each\nseparate color object.\n\n    // Create a new color object\n    c := color.New(color.FgCyan).Add(color.Underline)\n    c.Println(\"Prints cyan text with an underline.\")\n\n    // Or just add them to New()\n    d := color.New(color.FgCyan, color.Bold)\n    d.Printf(\"This prints bold cyan %s\\n\", \"too!.\")\n\n\n    // Mix up foreground and background colors, create new mixes!\n    red := color.New(color.FgRed)\n\n    boldRed := red.Add(color.Bold)\n    boldRed.Println(\"This will print text in bold red.\")\n\n    whiteBackground := red.Add(color.BgWhite)\n    whiteBackground.Println(\"Red text with White background.\")\n\n    // Use your own io.Writer output\n    color.New(color.FgBlue).Fprintln(myWriter, \"blue color!\")\n\n    blue := color.New(color.FgBlue)\n    blue.Fprint(myWriter, \"This will print text in blue.\")\n\nYou can create PrintXxx functions to simplify even more:\n\n    // Create a custom print function for convenient\n    red := color.New(color.FgRed).PrintfFunc()\n    red(\"warning\")\n    red(\"error: %s\", err)\n\n    // Mix up multiple attributes\n    notice := color.New(color.Bold, color.FgGreen).PrintlnFunc()\n    notice(\"don't forget this...\")\n\nYou can also FprintXxx functions to pass your own io.Writer:\n\n    blue := color.New(FgBlue).FprintfFunc()\n    blue(myWriter, \"important notice: %s\", stars)\n\n    // Mix up with multiple attributes\n    success := color.New(color.Bold, color.FgGreen).FprintlnFunc()\n    success(myWriter, don't forget this...\")\n\n\nOr create SprintXxx functions to mix strings with other non-colorized strings:\n\n    yellow := New(FgYellow).SprintFunc()\n    red := New(FgRed).SprintFunc()\n\n    fmt.Printf(\"this is a %s and this is %s.\\n\", yellow(\"warning\"), red(\"error\"))\n\n    info := New(FgWhite, BgGreen).SprintFunc()\n    fmt.Printf(\"this %s rocks!\\n\", info(\"package\"))\n\nWindows support is enabled by default. All Print functions work as intended.\nHowever only for color.SprintXXX functions, user should use fmt.FprintXXX and\nset the output to color.Output:\n\n    fmt.Fprintf(color.Output, \"Windows support: %s\", color.GreenString(\"PASS\"))\n\n    info := New(FgWhite, BgGreen).SprintFunc()\n    fmt.Fprintf(color.Output, \"this %s rocks!\\n\", info(\"package\"))\n\nUsing with existing code is possible. Just use the Set() method to set the\nstandard output to the given parameters. That way a rewrite of an existing\ncode is not required.\n\n    // Use handy standard colors.\n    color.Set(color.FgYellow)\n\n    fmt.Println(\"Existing text will be now in Yellow\")\n    fmt.Printf(\"This one %s\\n\", \"too\")\n\n    color.Unset() // don't forget to unset\n\n    // You can mix up parameters\n    color.Set(color.FgMagenta, color.Bold)\n    defer color.Unset() // use it in your function\n\n    fmt.Println(\"All text will be now bold magenta.\")\n\nThere might be a case where you want to disable color output (for example to\npipe the standard output of your app to somewhere else). `Color` has support to\ndisable colors both globally and for single color definition. For example\nsuppose you have a CLI app and a `--no-color` bool flag. You can easily disable\nthe color output with:\n\n    var flagNoColor = flag.Bool(\"no-color\", false, \"Disable color output\")\n\n    if *flagNoColor {\n    \tcolor.NoColor = true // disables colorized output\n    }\n\nIt also has support for single color definitions (local). You can\ndisable/enable color output on the fly:\n\n     c := color.New(color.FgCyan)\n     c.Println(\"Prints cyan text\")\n\n     c.DisableColor()\n     c.Println(\"This is printed without any color\")\n\n     c.EnableColor()\n     c.Println(\"This prints again cyan...\")\n*/\npackage color\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/.editorconfig",
    "content": "root = true\n\n[*]\nindent_style = tab\nindent_size = 4\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/.gitignore",
    "content": "# Setup a Global .gitignore for OS and editor generated files:\n# https://help.github.com/articles/ignoring-files\n# git config --global core.excludesfile ~/.gitignore_global\n\n.vagrant\n*.sublime-project\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/.travis.yml",
    "content": "sudo: false\nlanguage: go\n\ngo:\n  - 1.8.x\n  - 1.9.x\n  - tip\n\nmatrix:\n  allow_failures:\n    - go: tip\n  fast_finish: true\n\nbefore_script:\n  - go get -u github.com/golang/lint/golint\n\nscript:\n  - go test -v --race ./...\n\nafter_script:\n  - test -z \"$(gofmt -s -l -w . | tee /dev/stderr)\"\n  - test -z \"$(golint ./...     | tee /dev/stderr)\"\n  - go vet ./...\n\nos:\n  - linux\n  - osx\n\nnotifications:\n  email: false\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/AUTHORS",
    "content": "# Names should be added to this file as\n#\tName or Organization <email address>\n# The email address is not required for organizations.\n\n# You can update this list using the following command:\n#\n#   $ git shortlog -se | awk '{print $2 \" \" $3 \" \" $4}'\n\n# Please keep the list sorted.\n\nAaron L <aaron@bettercoder.net>\nAdrien Bustany <adrien@bustany.org>\nAmit Krishnan <amit.krishnan@oracle.com>\nAnmol Sethi <me@anmol.io>\nBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>\nBruno Bigras <bigras.bruno@gmail.com>\nCaleb Spare <cespare@gmail.com>\nCase Nelson <case@teammating.com>\nChris Howey <chris@howey.me> <howeyc@gmail.com>\nChristoffer Buchholz <christoffer.buchholz@gmail.com>\nDaniel Wagner-Hall <dawagner@gmail.com>\nDave Cheney <dave@cheney.net>\nEvan Phoenix <evan@fallingsnow.net>\nFrancisco Souza <f@souza.cc>\nHari haran <hariharan.uno@gmail.com>\nJohn C Barstow\nKelvin Fo <vmirage@gmail.com>\nKen-ichirou MATSUZAWA <chamas@h4.dion.ne.jp>\nMatt Layher <mdlayher@gmail.com>\nNathan Youngman <git@nathany.com>\nNickolai Zeldovich <nickolai@csail.mit.edu>\nPatrick <patrick@dropbox.com>\nPaul Hammond <paul@paulhammond.org>\nPawel Knap <pawelknap88@gmail.com>\nPieter Droogendijk <pieter@binky.org.uk>\nPursuit92 <JoshChase@techpursuit.net>\nRiku Voipio <riku.voipio@linaro.org>\nRob Figueiredo <robfig@gmail.com>\nRodrigo Chiossi <rodrigochiossi@gmail.com>\nSlawek Ligus <root@ooz.ie>\nSoge Zhang <zhssoge@gmail.com>\nTiffany Jernigan <tiffany.jernigan@intel.com>\nTilak Sharma <tilaks@google.com>\nTom Payne <twpayne@gmail.com>\nTravis Cline <travis.cline@gmail.com>\nTudor Golubenco <tudor.g@gmail.com>\nVahe Khachikyan <vahe@live.ca>\nYukang <moorekang@gmail.com>\nbronze1man <bronze1man@gmail.com>\ndebrando <denis.brandolini@gmail.com>\nhenrikedwards <henrik.edwards@gmail.com>\n铁哥 <guotie.9@gmail.com>\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/CHANGELOG.md",
    "content": "# Changelog\n\n## v1.4.7 / 2018-01-09\n\n* BSD/macOS: Fix possible deadlock on closing the watcher on kqueue (thanks @nhooyr and @glycerine)\n* Tests: Fix missing verb on format string (thanks @rchiossi)\n* Linux: Fix deadlock in Remove (thanks @aarondl)\n* Linux: Watch.Add improvements (avoid race, fix consistency, reduce garbage) (thanks @twpayne)\n* Docs: Moved FAQ into the README (thanks @vahe)\n* Linux: Properly handle inotify's IN_Q_OVERFLOW event (thanks @zeldovich)\n* Docs: replace references to OS X with macOS\n\n## v1.4.2 / 2016-10-10\n\n* Linux: use InotifyInit1 with IN_CLOEXEC to stop leaking a file descriptor to a child process when using fork/exec [#178](https://github.com/fsnotify/fsnotify/pull/178) (thanks @pattyshack)\n\n## v1.4.1 / 2016-10-04\n\n* Fix flaky inotify stress test on Linux [#177](https://github.com/fsnotify/fsnotify/pull/177) (thanks @pattyshack)\n\n## v1.4.0 / 2016-10-01\n\n* add a String() method to Event.Op [#165](https://github.com/fsnotify/fsnotify/pull/165) (thanks @oozie)\n\n## v1.3.1 / 2016-06-28\n\n* Windows: fix for double backslash when watching the root of a drive [#151](https://github.com/fsnotify/fsnotify/issues/151) (thanks @brunoqc)\n\n## v1.3.0 / 2016-04-19\n\n* Support linux/arm64 by [patching](https://go-review.googlesource.com/#/c/21971/) x/sys/unix and switching to to it from syscall (thanks @suihkulokki) [#135](https://github.com/fsnotify/fsnotify/pull/135)\n\n## v1.2.10 / 2016-03-02\n\n* Fix golint errors in windows.go [#121](https://github.com/fsnotify/fsnotify/pull/121) (thanks @tiffanyfj)\n\n## v1.2.9 / 2016-01-13\n\nkqueue: Fix logic for CREATE after REMOVE [#111](https://github.com/fsnotify/fsnotify/pull/111) (thanks @bep)\n\n## v1.2.8 / 2015-12-17\n\n* kqueue: fix race condition in Close [#105](https://github.com/fsnotify/fsnotify/pull/105) (thanks @djui for reporting the issue and @ppknap for writing a failing test)\n* inotify: fix race in test\n* enable race detection for continuous integration (Linux, Mac, Windows)\n\n## v1.2.5 / 2015-10-17\n\n* inotify: use epoll_create1 for arm64 support (requires Linux 2.6.27 or later) [#100](https://github.com/fsnotify/fsnotify/pull/100) (thanks @suihkulokki)\n* inotify: fix path leaks [#73](https://github.com/fsnotify/fsnotify/pull/73) (thanks @chamaken)\n* kqueue: watch for rename events on subdirectories [#83](https://github.com/fsnotify/fsnotify/pull/83) (thanks @guotie)\n* kqueue: avoid infinite loops from symlinks cycles [#101](https://github.com/fsnotify/fsnotify/pull/101) (thanks @illicitonion)\n\n## v1.2.1 / 2015-10-14\n\n* kqueue: don't watch named pipes [#98](https://github.com/fsnotify/fsnotify/pull/98) (thanks @evanphx)\n\n## v1.2.0 / 2015-02-08\n\n* inotify: use epoll to wake up readEvents [#66](https://github.com/fsnotify/fsnotify/pull/66) (thanks @PieterD)\n* inotify: closing watcher should now always shut down goroutine [#63](https://github.com/fsnotify/fsnotify/pull/63) (thanks @PieterD)\n* kqueue: close kqueue after removing watches, fixes [#59](https://github.com/fsnotify/fsnotify/issues/59)\n\n## v1.1.1 / 2015-02-05\n\n* inotify: Retry read on EINTR [#61](https://github.com/fsnotify/fsnotify/issues/61) (thanks @PieterD)\n\n## v1.1.0 / 2014-12-12\n\n* kqueue: rework internals [#43](https://github.com/fsnotify/fsnotify/pull/43)\n    * add low-level functions\n    * only need to store flags on directories\n    * less mutexes [#13](https://github.com/fsnotify/fsnotify/issues/13)\n    * done can be an unbuffered channel\n    * remove calls to os.NewSyscallError\n* More efficient string concatenation for Event.String() [#52](https://github.com/fsnotify/fsnotify/pull/52) (thanks @mdlayher)\n* kqueue: fix regression in  rework causing subdirectories to be watched [#48](https://github.com/fsnotify/fsnotify/issues/48)\n* kqueue: cleanup internal watch before sending remove event [#51](https://github.com/fsnotify/fsnotify/issues/51)\n\n## v1.0.4 / 2014-09-07\n\n* kqueue: add dragonfly to the build tags.\n* Rename source code files, rearrange code so exported APIs are at the top.\n* Add done channel to example code. [#37](https://github.com/fsnotify/fsnotify/pull/37) (thanks @chenyukang)\n\n## v1.0.3 / 2014-08-19\n\n* [Fix] Windows MOVED_TO now translates to Create like on BSD and Linux. [#36](https://github.com/fsnotify/fsnotify/issues/36)\n\n## v1.0.2 / 2014-08-17\n\n* [Fix] Missing create events on macOS. [#14](https://github.com/fsnotify/fsnotify/issues/14) (thanks @zhsso)\n* [Fix] Make ./path and path equivalent. (thanks @zhsso)\n\n## v1.0.0 / 2014-08-15\n\n* [API] Remove AddWatch on Windows, use Add.\n* Improve documentation for exported identifiers. [#30](https://github.com/fsnotify/fsnotify/issues/30)\n* Minor updates based on feedback from golint.\n\n## dev / 2014-07-09\n\n* Moved to [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify).\n* Use os.NewSyscallError instead of returning errno (thanks @hariharan-uno)\n\n## dev / 2014-07-04\n\n* kqueue: fix incorrect mutex used in Close()\n* Update example to demonstrate usage of Op.\n\n## dev / 2014-06-28\n\n* [API] Don't set the Write Op for attribute notifications [#4](https://github.com/fsnotify/fsnotify/issues/4)\n* Fix for String() method on Event (thanks Alex Brainman)\n* Don't build on Plan 9 or Solaris (thanks @4ad)\n\n## dev / 2014-06-21\n\n* Events channel of type Event rather than *Event.\n* [internal] use syscall constants directly for inotify and kqueue.\n* [internal] kqueue: rename events to kevents and fileEvent to event.\n\n## dev / 2014-06-19\n\n* Go 1.3+ required on Windows (uses syscall.ERROR_MORE_DATA internally).\n* [internal] remove cookie from Event struct (unused).\n* [internal] Event struct has the same definition across every OS.\n* [internal] remove internal watch and removeWatch methods.\n\n## dev / 2014-06-12\n\n* [API] Renamed Watch() to Add() and RemoveWatch() to Remove().\n* [API] Pluralized channel names: Events and Errors.\n* [API] Renamed FileEvent struct to Event.\n* [API] Op constants replace methods like IsCreate().\n\n## dev / 2014-06-12\n\n* Fix data race on kevent buffer (thanks @tilaks) [#98](https://github.com/howeyc/fsnotify/pull/98)\n\n## dev / 2014-05-23\n\n* [API] Remove current implementation of WatchFlags.\n    * current implementation doesn't take advantage of OS for efficiency\n    * provides little benefit over filtering events as they are received, but has  extra bookkeeping and mutexes\n    * no tests for the current implementation\n    * not fully implemented on Windows [#93](https://github.com/howeyc/fsnotify/issues/93#issuecomment-39285195)\n\n## v0.9.3 / 2014-12-31\n\n* kqueue: cleanup internal watch before sending remove event [#51](https://github.com/fsnotify/fsnotify/issues/51)\n\n## v0.9.2 / 2014-08-17\n\n* [Backport] Fix missing create events on macOS. [#14](https://github.com/fsnotify/fsnotify/issues/14) (thanks @zhsso)\n\n## v0.9.1 / 2014-06-12\n\n* Fix data race on kevent buffer (thanks @tilaks) [#98](https://github.com/howeyc/fsnotify/pull/98)\n\n## v0.9.0 / 2014-01-17\n\n* IsAttrib() for events that only concern a file's metadata [#79][] (thanks @abustany)\n* [Fix] kqueue: fix deadlock [#77][] (thanks @cespare)\n* [NOTICE] Development has moved to `code.google.com/p/go.exp/fsnotify` in preparation for inclusion in the Go standard library.\n\n## v0.8.12 / 2013-11-13\n\n* [API] Remove FD_SET and friends from Linux adapter\n\n## v0.8.11 / 2013-11-02\n\n* [Doc] Add Changelog [#72][] (thanks @nathany)\n* [Doc] Spotlight and double modify events on macOS [#62][] (reported by @paulhammond)\n\n## v0.8.10 / 2013-10-19\n\n* [Fix] kqueue: remove file watches when parent directory is removed [#71][] (reported by @mdwhatcott)\n* [Fix] kqueue: race between Close and readEvents [#70][] (reported by @bernerdschaefer)\n* [Doc] specify OS-specific limits in README (thanks @debrando)\n\n## v0.8.9 / 2013-09-08\n\n* [Doc] Contributing (thanks @nathany)\n* [Doc] update package path in example code [#63][] (thanks @paulhammond)\n* [Doc] GoCI badge in README (Linux only) [#60][]\n* [Doc] Cross-platform testing with Vagrant  [#59][] (thanks @nathany)\n\n## v0.8.8 / 2013-06-17\n\n* [Fix] Windows: handle `ERROR_MORE_DATA` on Windows [#49][] (thanks @jbowtie)\n\n## v0.8.7 / 2013-06-03\n\n* [API] Make syscall flags internal\n* [Fix] inotify: ignore event changes\n* [Fix] race in symlink test [#45][] (reported by @srid)\n* [Fix] tests on Windows\n* lower case error messages\n\n## v0.8.6 / 2013-05-23\n\n* kqueue: Use EVT_ONLY flag on Darwin\n* [Doc] Update README with full example\n\n## v0.8.5 / 2013-05-09\n\n* [Fix] inotify: allow monitoring of \"broken\" symlinks (thanks @tsg)\n\n## v0.8.4 / 2013-04-07\n\n* [Fix] kqueue: watch all file events [#40][] (thanks @ChrisBuchholz)\n\n## v0.8.3 / 2013-03-13\n\n* [Fix] inoitfy/kqueue memory leak [#36][] (reported by @nbkolchin)\n* [Fix] kqueue: use fsnFlags for watching a directory [#33][] (reported by @nbkolchin)\n\n## v0.8.2 / 2013-02-07\n\n* [Doc] add Authors\n* [Fix] fix data races for map access [#29][] (thanks @fsouza)\n\n## v0.8.1 / 2013-01-09\n\n* [Fix] Windows path separators\n* [Doc] BSD License\n\n## v0.8.0 / 2012-11-09\n\n* kqueue: directory watching improvements (thanks @vmirage)\n* inotify: add `IN_MOVED_TO` [#25][] (requested by @cpisto)\n* [Fix] kqueue: deleting watched directory [#24][] (reported by @jakerr)\n\n## v0.7.4 / 2012-10-09\n\n* [Fix] inotify: fixes from https://codereview.appspot.com/5418045/ (ugorji)\n* [Fix] kqueue: preserve watch flags when watching for delete [#21][] (reported by @robfig)\n* [Fix] kqueue: watch the directory even if it isn't a new watch (thanks @robfig)\n* [Fix] kqueue: modify after recreation of file\n\n## v0.7.3 / 2012-09-27\n\n* [Fix] kqueue: watch with an existing folder inside the watched folder (thanks @vmirage)\n* [Fix] kqueue: no longer get duplicate CREATE events\n\n## v0.7.2 / 2012-09-01\n\n* kqueue: events for created directories\n\n## v0.7.1 / 2012-07-14\n\n* [Fix] for renaming files\n\n## v0.7.0 / 2012-07-02\n\n* [Feature] FSNotify flags\n* [Fix] inotify: Added file name back to event path\n\n## v0.6.0 / 2012-06-06\n\n* kqueue: watch files after directory created (thanks @tmc)\n\n## v0.5.1 / 2012-05-22\n\n* [Fix] inotify: remove all watches before Close()\n\n## v0.5.0 / 2012-05-03\n\n* [API] kqueue: return errors during watch instead of sending over channel\n* kqueue: match symlink behavior on Linux\n* inotify: add `DELETE_SELF` (requested by @taralx)\n* [Fix] kqueue: handle EINTR (reported by @robfig)\n* [Doc] Godoc example [#1][] (thanks @davecheney)\n\n## v0.4.0 / 2012-03-30\n\n* Go 1 released: build with go tool\n* [Feature] Windows support using winfsnotify\n* Windows does not have attribute change notifications\n* Roll attribute notifications into IsModify\n\n## v0.3.0 / 2012-02-19\n\n* kqueue: add files when watch directory\n\n## v0.2.0 / 2011-12-30\n\n* update to latest Go weekly code\n\n## v0.1.0 / 2011-10-19\n\n* kqueue: add watch on file creation to match inotify\n* kqueue: create file event\n* inotify: ignore `IN_IGNORED` events\n* event String()\n* linux: common FileEvent functions\n* initial commit\n\n[#79]: https://github.com/howeyc/fsnotify/pull/79\n[#77]: https://github.com/howeyc/fsnotify/pull/77\n[#72]: https://github.com/howeyc/fsnotify/issues/72\n[#71]: https://github.com/howeyc/fsnotify/issues/71\n[#70]: https://github.com/howeyc/fsnotify/issues/70\n[#63]: https://github.com/howeyc/fsnotify/issues/63\n[#62]: https://github.com/howeyc/fsnotify/issues/62\n[#60]: https://github.com/howeyc/fsnotify/issues/60\n[#59]: https://github.com/howeyc/fsnotify/issues/59\n[#49]: https://github.com/howeyc/fsnotify/issues/49\n[#45]: https://github.com/howeyc/fsnotify/issues/45\n[#40]: https://github.com/howeyc/fsnotify/issues/40\n[#36]: https://github.com/howeyc/fsnotify/issues/36\n[#33]: https://github.com/howeyc/fsnotify/issues/33\n[#29]: https://github.com/howeyc/fsnotify/issues/29\n[#25]: https://github.com/howeyc/fsnotify/issues/25\n[#24]: https://github.com/howeyc/fsnotify/issues/24\n[#21]: https://github.com/howeyc/fsnotify/issues/21\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md",
    "content": "# Contributing\n\n## Issues\n\n* Request features and report bugs using the [GitHub Issue Tracker](https://github.com/fsnotify/fsnotify/issues).\n* Please indicate the platform you are using fsnotify on.\n* A code example to reproduce the problem is appreciated.\n\n## Pull Requests\n\n### Contributor License Agreement\n\nfsnotify is derived from code in the [golang.org/x/exp](https://godoc.org/golang.org/x/exp) package and it may be included [in the standard library](https://github.com/fsnotify/fsnotify/issues/1) in the future. Therefore fsnotify carries the same [LICENSE](https://github.com/fsnotify/fsnotify/blob/master/LICENSE) as Go. Contributors retain their copyright, so you need to fill out a short form before we can accept your contribution: [Google Individual Contributor License Agreement](https://developers.google.com/open-source/cla/individual).\n\nPlease indicate that you have signed the CLA in your pull request.\n\n### How fsnotify is Developed\n\n* Development is done on feature branches.\n* Tests are run on BSD, Linux, macOS and Windows.\n* Pull requests are reviewed and [applied to master][am] using [hub][].\n  * Maintainers may modify or squash commits rather than asking contributors to.\n* To issue a new release, the maintainers will:\n  * Update the CHANGELOG\n  * Tag a version, which will become available through gopkg.in.\n \n### How to Fork\n\nFor smooth sailing, always use the original import path. Installing with `go get` makes this easy. \n\n1. Install from GitHub (`go get -u github.com/fsnotify/fsnotify`)\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Ensure everything works and the tests pass (see below)\n4. Commit your changes (`git commit -am 'Add some feature'`)\n\nContribute upstream:\n\n1. Fork fsnotify on GitHub\n2. Add your remote (`git remote add fork git@github.com:mycompany/repo.git`)\n3. Push to the branch (`git push fork my-new-feature`)\n4. Create a new Pull Request on GitHub\n\nThis workflow is [thoroughly explained by Katrina Owen](https://splice.com/blog/contributing-open-source-git-repositories-go/).\n\n### Testing\n\nfsnotify uses build tags to compile different code on Linux, BSD, macOS, and Windows.\n\nBefore doing a pull request, please do your best to test your changes on multiple platforms, and list which platforms you were able/unable to test on.\n\nTo aid in cross-platform testing there is a Vagrantfile for Linux and BSD.\n\n* Install [Vagrant](http://www.vagrantup.com/) and [VirtualBox](https://www.virtualbox.org/)\n* Setup [Vagrant Gopher](https://github.com/nathany/vagrant-gopher) in your `src` folder.\n* Run `vagrant up` from the project folder. You can also setup just one box with `vagrant up linux` or `vagrant up bsd` (note: the BSD box doesn't support Windows hosts at this time, and NFS may prompt for your host OS password)\n* Once setup, you can run the test suite on a given OS with a single command `vagrant ssh linux -c 'cd fsnotify/fsnotify; go test'`.\n* When you're done, you will want to halt or destroy the Vagrant boxes.\n\nNotice: fsnotify file system events won't trigger in shared folders. The tests get around this limitation by using the /tmp directory.\n\nRight now there is no equivalent solution for Windows and macOS, but there are Windows VMs [freely available from Microsoft](http://www.modern.ie/en-us/virtualization-tools#downloads).\n\n### Maintainers\n\nHelp maintaining fsnotify is welcome. To be a maintainer:\n\n* Submit a pull request and sign the CLA as above.\n* You must be able to run the test suite on Mac, Windows, Linux and BSD.\n\nTo keep master clean, the fsnotify project uses the \"apply mail\" workflow outlined in Nathaniel Talbott's post [\"Merge pull request\" Considered Harmful][am]. This requires installing [hub][].\n\nAll code changes should be internal pull requests.\n\nReleases are tagged using [Semantic Versioning](http://semver.org/).\n\n[hub]: https://github.com/github/hub\n[am]: http://blog.spreedly.com/2014/06/24/merge-pull-request-considered-harmful/#.VGa5yZPF_Zs\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/LICENSE",
    "content": "Copyright (c) 2012 The Go Authors. All rights reserved.\nCopyright (c) 2012 fsnotify Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n   * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n   * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n   * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/README.md",
    "content": "# File system notifications for Go\n\n[![GoDoc](https://godoc.org/github.com/fsnotify/fsnotify?status.svg)](https://godoc.org/github.com/fsnotify/fsnotify) [![Go Report Card](https://goreportcard.com/badge/github.com/fsnotify/fsnotify)](https://goreportcard.com/report/github.com/fsnotify/fsnotify)\n\nfsnotify utilizes [golang.org/x/sys](https://godoc.org/golang.org/x/sys) rather than `syscall` from the standard library. Ensure you have the latest version installed by running:\n\n```console\ngo get -u golang.org/x/sys/...\n```\n\nCross platform: Windows, Linux, BSD and macOS.\n\n|Adapter   |OS        |Status    |\n|----------|----------|----------|\n|inotify   |Linux 2.6.27 or later, Android\\*|Supported [![Build Status](https://travis-ci.org/fsnotify/fsnotify.svg?branch=master)](https://travis-ci.org/fsnotify/fsnotify)|\n|kqueue    |BSD, macOS, iOS\\*|Supported [![Build Status](https://travis-ci.org/fsnotify/fsnotify.svg?branch=master)](https://travis-ci.org/fsnotify/fsnotify)|\n|ReadDirectoryChangesW|Windows|Supported [![Build status](https://ci.appveyor.com/api/projects/status/ivwjubaih4r0udeh/branch/master?svg=true)](https://ci.appveyor.com/project/NathanYoungman/fsnotify/branch/master)|\n|FSEvents  |macOS         |[Planned](https://github.com/fsnotify/fsnotify/issues/11)|\n|FEN       |Solaris 11    |[In Progress](https://github.com/fsnotify/fsnotify/issues/12)|\n|fanotify  |Linux 2.6.37+ | |\n|USN Journals |Windows    |[Maybe](https://github.com/fsnotify/fsnotify/issues/53)|\n|Polling   |*All*         |[Maybe](https://github.com/fsnotify/fsnotify/issues/9)|\n\n\\* Android and iOS are untested.\n\nPlease see [the documentation](https://godoc.org/github.com/fsnotify/fsnotify) and consult the [FAQ](#faq) for usage information.\n\n## API stability\n\nfsnotify is a fork of [howeyc/fsnotify](https://godoc.org/github.com/howeyc/fsnotify) with a new API as of v1.0. The API is based on [this design document](http://goo.gl/MrYxyA). \n\nAll [releases](https://github.com/fsnotify/fsnotify/releases) are tagged based on [Semantic Versioning](http://semver.org/). Further API changes are [planned](https://github.com/fsnotify/fsnotify/milestones), and will be tagged with a new major revision number.\n\nGo 1.6 supports dependencies located in the `vendor/` folder. Unless you are creating a library, it is recommended that you copy fsnotify into `vendor/github.com/fsnotify/fsnotify` within your project, and likewise for `golang.org/x/sys`.\n\n## Contributing\n\nPlease refer to [CONTRIBUTING][] before opening an issue or pull request.\n\n## Example\n\nSee [example_test.go](https://github.com/fsnotify/fsnotify/blob/master/example_test.go).\n\n## FAQ\n\n**When a file is moved to another directory is it still being watched?**\n\nNo (it shouldn't be, unless you are watching where it was moved to).\n\n**When I watch a directory, are all subdirectories watched as well?**\n\nNo, you must add watches for any directory you want to watch (a recursive watcher is on the roadmap [#18][]).\n\n**Do I have to watch the Error and Event channels in a separate goroutine?**\n\nAs of now, yes. Looking into making this single-thread friendly (see [howeyc #7][#7])\n\n**Why am I receiving multiple events for the same file on OS X?**\n\nSpotlight indexing on OS X can result in multiple events (see [howeyc #62][#62]). A temporary workaround is to add your folder(s) to the *Spotlight Privacy settings* until we have a native FSEvents implementation (see [#11][]).\n\n**How many files can be watched at once?**\n\nThere are OS-specific limits as to how many watches can be created:\n* Linux: /proc/sys/fs/inotify/max_user_watches contains the limit, reaching this limit results in a \"no space left on device\" error.\n* BSD / OSX: sysctl variables \"kern.maxfiles\" and \"kern.maxfilesperproc\", reaching these limits results in a \"too many open files\" error.\n\n[#62]: https://github.com/howeyc/fsnotify/issues/62\n[#18]: https://github.com/fsnotify/fsnotify/issues/18\n[#11]: https://github.com/fsnotify/fsnotify/issues/11\n[#7]: https://github.com/howeyc/fsnotify/issues/7\n\n[contributing]: https://github.com/fsnotify/fsnotify/blob/master/CONTRIBUTING.md\n\n## Related Projects\n\n* [notify](https://github.com/rjeczalik/notify)\n* [fsevents](https://github.com/fsnotify/fsevents)\n\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/fen.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build solaris\n\npackage fsnotify\n\nimport (\n\t\"errors\"\n)\n\n// Watcher watches a set of files, delivering events to a channel.\ntype Watcher struct {\n\tEvents chan Event\n\tErrors chan error\n}\n\n// NewWatcher establishes a new watcher with the underlying OS and begins waiting for events.\nfunc NewWatcher() (*Watcher, error) {\n\treturn nil, errors.New(\"FEN based watcher not yet supported for fsnotify\\n\")\n}\n\n// Close removes all watches and closes the events channel.\nfunc (w *Watcher) Close() error {\n\treturn nil\n}\n\n// Add starts watching the named file or directory (non-recursively).\nfunc (w *Watcher) Add(name string) error {\n\treturn nil\n}\n\n// Remove stops watching the the named file or directory (non-recursively).\nfunc (w *Watcher) Remove(name string) error {\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/fsnotify.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !plan9\n\n// Package fsnotify provides a platform-independent interface for file system notifications.\npackage fsnotify\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n)\n\n// Event represents a single file system notification.\ntype Event struct {\n\tName string // Relative path to the file or directory.\n\tOp   Op     // File operation that triggered the event.\n}\n\n// Op describes a set of file operations.\ntype Op uint32\n\n// These are the generalized file operations that can trigger a notification.\nconst (\n\tCreate Op = 1 << iota\n\tWrite\n\tRemove\n\tRename\n\tChmod\n)\n\nfunc (op Op) String() string {\n\t// Use a buffer for efficient string concatenation\n\tvar buffer bytes.Buffer\n\n\tif op&Create == Create {\n\t\tbuffer.WriteString(\"|CREATE\")\n\t}\n\tif op&Remove == Remove {\n\t\tbuffer.WriteString(\"|REMOVE\")\n\t}\n\tif op&Write == Write {\n\t\tbuffer.WriteString(\"|WRITE\")\n\t}\n\tif op&Rename == Rename {\n\t\tbuffer.WriteString(\"|RENAME\")\n\t}\n\tif op&Chmod == Chmod {\n\t\tbuffer.WriteString(\"|CHMOD\")\n\t}\n\tif buffer.Len() == 0 {\n\t\treturn \"\"\n\t}\n\treturn buffer.String()[1:] // Strip leading pipe\n}\n\n// String returns a string representation of the event in the form\n// \"file: REMOVE|WRITE|...\"\nfunc (e Event) String() string {\n\treturn fmt.Sprintf(\"%q: %s\", e.Name, e.Op.String())\n}\n\n// Common errors that can be reported by a watcher\nvar ErrEventOverflow = errors.New(\"fsnotify queue overflow\")\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/inotify.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n\npackage fsnotify\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"sync\"\n\t\"unsafe\"\n\n\t\"golang.org/x/sys/unix\"\n)\n\n// Watcher watches a set of files, delivering events to a channel.\ntype Watcher struct {\n\tEvents   chan Event\n\tErrors   chan error\n\tmu       sync.Mutex // Map access\n\tfd       int\n\tpoller   *fdPoller\n\twatches  map[string]*watch // Map of inotify watches (key: path)\n\tpaths    map[int]string    // Map of watched paths (key: watch descriptor)\n\tdone     chan struct{}     // Channel for sending a \"quit message\" to the reader goroutine\n\tdoneResp chan struct{}     // Channel to respond to Close\n}\n\n// NewWatcher establishes a new watcher with the underlying OS and begins waiting for events.\nfunc NewWatcher() (*Watcher, error) {\n\t// Create inotify fd\n\tfd, errno := unix.InotifyInit1(unix.IN_CLOEXEC)\n\tif fd == -1 {\n\t\treturn nil, errno\n\t}\n\t// Create epoll\n\tpoller, err := newFdPoller(fd)\n\tif err != nil {\n\t\tunix.Close(fd)\n\t\treturn nil, err\n\t}\n\tw := &Watcher{\n\t\tfd:       fd,\n\t\tpoller:   poller,\n\t\twatches:  make(map[string]*watch),\n\t\tpaths:    make(map[int]string),\n\t\tEvents:   make(chan Event),\n\t\tErrors:   make(chan error),\n\t\tdone:     make(chan struct{}),\n\t\tdoneResp: make(chan struct{}),\n\t}\n\n\tgo w.readEvents()\n\treturn w, nil\n}\n\nfunc (w *Watcher) isClosed() bool {\n\tselect {\n\tcase <-w.done:\n\t\treturn true\n\tdefault:\n\t\treturn false\n\t}\n}\n\n// Close removes all watches and closes the events channel.\nfunc (w *Watcher) Close() error {\n\tif w.isClosed() {\n\t\treturn nil\n\t}\n\n\t// Send 'close' signal to goroutine, and set the Watcher to closed.\n\tclose(w.done)\n\n\t// Wake up goroutine\n\tw.poller.wake()\n\n\t// Wait for goroutine to close\n\t<-w.doneResp\n\n\treturn nil\n}\n\n// Add starts watching the named file or directory (non-recursively).\nfunc (w *Watcher) Add(name string) error {\n\tname = filepath.Clean(name)\n\tif w.isClosed() {\n\t\treturn errors.New(\"inotify instance already closed\")\n\t}\n\n\tconst agnosticEvents = unix.IN_MOVED_TO | unix.IN_MOVED_FROM |\n\t\tunix.IN_CREATE | unix.IN_ATTRIB | unix.IN_MODIFY |\n\t\tunix.IN_MOVE_SELF | unix.IN_DELETE | unix.IN_DELETE_SELF\n\n\tvar flags uint32 = agnosticEvents\n\n\tw.mu.Lock()\n\tdefer w.mu.Unlock()\n\twatchEntry := w.watches[name]\n\tif watchEntry != nil {\n\t\tflags |= watchEntry.flags | unix.IN_MASK_ADD\n\t}\n\twd, errno := unix.InotifyAddWatch(w.fd, name, flags)\n\tif wd == -1 {\n\t\treturn errno\n\t}\n\n\tif watchEntry == nil {\n\t\tw.watches[name] = &watch{wd: uint32(wd), flags: flags}\n\t\tw.paths[wd] = name\n\t} else {\n\t\twatchEntry.wd = uint32(wd)\n\t\twatchEntry.flags = flags\n\t}\n\n\treturn nil\n}\n\n// Remove stops watching the named file or directory (non-recursively).\nfunc (w *Watcher) Remove(name string) error {\n\tname = filepath.Clean(name)\n\n\t// Fetch the watch.\n\tw.mu.Lock()\n\tdefer w.mu.Unlock()\n\twatch, ok := w.watches[name]\n\n\t// Remove it from inotify.\n\tif !ok {\n\t\treturn fmt.Errorf(\"can't remove non-existent inotify watch for: %s\", name)\n\t}\n\n\t// We successfully removed the watch if InotifyRmWatch doesn't return an\n\t// error, we need to clean up our internal state to ensure it matches\n\t// inotify's kernel state.\n\tdelete(w.paths, int(watch.wd))\n\tdelete(w.watches, name)\n\n\t// inotify_rm_watch will return EINVAL if the file has been deleted;\n\t// the inotify will already have been removed.\n\t// watches and pathes are deleted in ignoreLinux() implicitly and asynchronously\n\t// by calling inotify_rm_watch() below. e.g. readEvents() goroutine receives IN_IGNORE\n\t// so that EINVAL means that the wd is being rm_watch()ed or its file removed\n\t// by another thread and we have not received IN_IGNORE event.\n\tsuccess, errno := unix.InotifyRmWatch(w.fd, watch.wd)\n\tif success == -1 {\n\t\t// TODO: Perhaps it's not helpful to return an error here in every case.\n\t\t// the only two possible errors are:\n\t\t// EBADF, which happens when w.fd is not a valid file descriptor of any kind.\n\t\t// EINVAL, which is when fd is not an inotify descriptor or wd is not a valid watch descriptor.\n\t\t// Watch descriptors are invalidated when they are removed explicitly or implicitly;\n\t\t// explicitly by inotify_rm_watch, implicitly when the file they are watching is deleted.\n\t\treturn errno\n\t}\n\n\treturn nil\n}\n\ntype watch struct {\n\twd    uint32 // Watch descriptor (as returned by the inotify_add_watch() syscall)\n\tflags uint32 // inotify flags of this watch (see inotify(7) for the list of valid flags)\n}\n\n// readEvents reads from the inotify file descriptor, converts the\n// received events into Event objects and sends them via the Events channel\nfunc (w *Watcher) readEvents() {\n\tvar (\n\t\tbuf   [unix.SizeofInotifyEvent * 4096]byte // Buffer for a maximum of 4096 raw events\n\t\tn     int                                  // Number of bytes read with read()\n\t\terrno error                                // Syscall errno\n\t\tok    bool                                 // For poller.wait\n\t)\n\n\tdefer close(w.doneResp)\n\tdefer close(w.Errors)\n\tdefer close(w.Events)\n\tdefer unix.Close(w.fd)\n\tdefer w.poller.close()\n\n\tfor {\n\t\t// See if we have been closed.\n\t\tif w.isClosed() {\n\t\t\treturn\n\t\t}\n\n\t\tok, errno = w.poller.wait()\n\t\tif errno != nil {\n\t\t\tselect {\n\t\t\tcase w.Errors <- errno:\n\t\t\tcase <-w.done:\n\t\t\t\treturn\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\n\t\tn, errno = unix.Read(w.fd, buf[:])\n\t\t// If a signal interrupted execution, see if we've been asked to close, and try again.\n\t\t// http://man7.org/linux/man-pages/man7/signal.7.html :\n\t\t// \"Before Linux 3.8, reads from an inotify(7) file descriptor were not restartable\"\n\t\tif errno == unix.EINTR {\n\t\t\tcontinue\n\t\t}\n\n\t\t// unix.Read might have been woken up by Close. If so, we're done.\n\t\tif w.isClosed() {\n\t\t\treturn\n\t\t}\n\n\t\tif n < unix.SizeofInotifyEvent {\n\t\t\tvar err error\n\t\t\tif n == 0 {\n\t\t\t\t// If EOF is received. This should really never happen.\n\t\t\t\terr = io.EOF\n\t\t\t} else if n < 0 {\n\t\t\t\t// If an error occurred while reading.\n\t\t\t\terr = errno\n\t\t\t} else {\n\t\t\t\t// Read was too short.\n\t\t\t\terr = errors.New(\"notify: short read in readEvents()\")\n\t\t\t}\n\t\t\tselect {\n\t\t\tcase w.Errors <- err:\n\t\t\tcase <-w.done:\n\t\t\t\treturn\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tvar offset uint32\n\t\t// We don't know how many events we just read into the buffer\n\t\t// While the offset points to at least one whole event...\n\t\tfor offset <= uint32(n-unix.SizeofInotifyEvent) {\n\t\t\t// Point \"raw\" to the event in the buffer\n\t\t\traw := (*unix.InotifyEvent)(unsafe.Pointer(&buf[offset]))\n\n\t\t\tmask := uint32(raw.Mask)\n\t\t\tnameLen := uint32(raw.Len)\n\n\t\t\tif mask&unix.IN_Q_OVERFLOW != 0 {\n\t\t\t\tselect {\n\t\t\t\tcase w.Errors <- ErrEventOverflow:\n\t\t\t\tcase <-w.done:\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If the event happened to the watched directory or the watched file, the kernel\n\t\t\t// doesn't append the filename to the event, but we would like to always fill the\n\t\t\t// the \"Name\" field with a valid filename. We retrieve the path of the watch from\n\t\t\t// the \"paths\" map.\n\t\t\tw.mu.Lock()\n\t\t\tname, ok := w.paths[int(raw.Wd)]\n\t\t\t// IN_DELETE_SELF occurs when the file/directory being watched is removed.\n\t\t\t// This is a sign to clean up the maps, otherwise we are no longer in sync\n\t\t\t// with the inotify kernel state which has already deleted the watch\n\t\t\t// automatically.\n\t\t\tif ok && mask&unix.IN_DELETE_SELF == unix.IN_DELETE_SELF {\n\t\t\t\tdelete(w.paths, int(raw.Wd))\n\t\t\t\tdelete(w.watches, name)\n\t\t\t}\n\t\t\tw.mu.Unlock()\n\n\t\t\tif nameLen > 0 {\n\t\t\t\t// Point \"bytes\" at the first byte of the filename\n\t\t\t\tbytes := (*[unix.PathMax]byte)(unsafe.Pointer(&buf[offset+unix.SizeofInotifyEvent]))\n\t\t\t\t// The filename is padded with NULL bytes. TrimRight() gets rid of those.\n\t\t\t\tname += \"/\" + strings.TrimRight(string(bytes[0:nameLen]), \"\\000\")\n\t\t\t}\n\n\t\t\tevent := newEvent(name, mask)\n\n\t\t\t// Send the events that are not ignored on the events channel\n\t\t\tif !event.ignoreLinux(mask) {\n\t\t\t\tselect {\n\t\t\t\tcase w.Events <- event:\n\t\t\t\tcase <-w.done:\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Move to the next event in the buffer\n\t\t\toffset += unix.SizeofInotifyEvent + nameLen\n\t\t}\n\t}\n}\n\n// Certain types of events can be \"ignored\" and not sent over the Events\n// channel. Such as events marked ignore by the kernel, or MODIFY events\n// against files that do not exist.\nfunc (e *Event) ignoreLinux(mask uint32) bool {\n\t// Ignore anything the inotify API says to ignore\n\tif mask&unix.IN_IGNORED == unix.IN_IGNORED {\n\t\treturn true\n\t}\n\n\t// If the event is not a DELETE or RENAME, the file must exist.\n\t// Otherwise the event is ignored.\n\t// *Note*: this was put in place because it was seen that a MODIFY\n\t// event was sent after the DELETE. This ignores that MODIFY and\n\t// assumes a DELETE will come or has come if the file doesn't exist.\n\tif !(e.Op&Remove == Remove || e.Op&Rename == Rename) {\n\t\t_, statErr := os.Lstat(e.Name)\n\t\treturn os.IsNotExist(statErr)\n\t}\n\treturn false\n}\n\n// newEvent returns an platform-independent Event based on an inotify mask.\nfunc newEvent(name string, mask uint32) Event {\n\te := Event{Name: name}\n\tif mask&unix.IN_CREATE == unix.IN_CREATE || mask&unix.IN_MOVED_TO == unix.IN_MOVED_TO {\n\t\te.Op |= Create\n\t}\n\tif mask&unix.IN_DELETE_SELF == unix.IN_DELETE_SELF || mask&unix.IN_DELETE == unix.IN_DELETE {\n\t\te.Op |= Remove\n\t}\n\tif mask&unix.IN_MODIFY == unix.IN_MODIFY {\n\t\te.Op |= Write\n\t}\n\tif mask&unix.IN_MOVE_SELF == unix.IN_MOVE_SELF || mask&unix.IN_MOVED_FROM == unix.IN_MOVED_FROM {\n\t\te.Op |= Rename\n\t}\n\tif mask&unix.IN_ATTRIB == unix.IN_ATTRIB {\n\t\te.Op |= Chmod\n\t}\n\treturn e\n}\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/inotify_poller.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n\npackage fsnotify\n\nimport (\n\t\"errors\"\n\n\t\"golang.org/x/sys/unix\"\n)\n\ntype fdPoller struct {\n\tfd   int    // File descriptor (as returned by the inotify_init() syscall)\n\tepfd int    // Epoll file descriptor\n\tpipe [2]int // Pipe for waking up\n}\n\nfunc emptyPoller(fd int) *fdPoller {\n\tpoller := new(fdPoller)\n\tpoller.fd = fd\n\tpoller.epfd = -1\n\tpoller.pipe[0] = -1\n\tpoller.pipe[1] = -1\n\treturn poller\n}\n\n// Create a new inotify poller.\n// This creates an inotify handler, and an epoll handler.\nfunc newFdPoller(fd int) (*fdPoller, error) {\n\tvar errno error\n\tpoller := emptyPoller(fd)\n\tdefer func() {\n\t\tif errno != nil {\n\t\t\tpoller.close()\n\t\t}\n\t}()\n\tpoller.fd = fd\n\n\t// Create epoll fd\n\tpoller.epfd, errno = unix.EpollCreate1(0)\n\tif poller.epfd == -1 {\n\t\treturn nil, errno\n\t}\n\t// Create pipe; pipe[0] is the read end, pipe[1] the write end.\n\terrno = unix.Pipe2(poller.pipe[:], unix.O_NONBLOCK)\n\tif errno != nil {\n\t\treturn nil, errno\n\t}\n\n\t// Register inotify fd with epoll\n\tevent := unix.EpollEvent{\n\t\tFd:     int32(poller.fd),\n\t\tEvents: unix.EPOLLIN,\n\t}\n\terrno = unix.EpollCtl(poller.epfd, unix.EPOLL_CTL_ADD, poller.fd, &event)\n\tif errno != nil {\n\t\treturn nil, errno\n\t}\n\n\t// Register pipe fd with epoll\n\tevent = unix.EpollEvent{\n\t\tFd:     int32(poller.pipe[0]),\n\t\tEvents: unix.EPOLLIN,\n\t}\n\terrno = unix.EpollCtl(poller.epfd, unix.EPOLL_CTL_ADD, poller.pipe[0], &event)\n\tif errno != nil {\n\t\treturn nil, errno\n\t}\n\n\treturn poller, nil\n}\n\n// Wait using epoll.\n// Returns true if something is ready to be read,\n// false if there is not.\nfunc (poller *fdPoller) wait() (bool, error) {\n\t// 3 possible events per fd, and 2 fds, makes a maximum of 6 events.\n\t// I don't know whether epoll_wait returns the number of events returned,\n\t// or the total number of events ready.\n\t// I decided to catch both by making the buffer one larger than the maximum.\n\tevents := make([]unix.EpollEvent, 7)\n\tfor {\n\t\tn, errno := unix.EpollWait(poller.epfd, events, -1)\n\t\tif n == -1 {\n\t\t\tif errno == unix.EINTR {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn false, errno\n\t\t}\n\t\tif n == 0 {\n\t\t\t// If there are no events, try again.\n\t\t\tcontinue\n\t\t}\n\t\tif n > 6 {\n\t\t\t// This should never happen. More events were returned than should be possible.\n\t\t\treturn false, errors.New(\"epoll_wait returned more events than I know what to do with\")\n\t\t}\n\t\tready := events[:n]\n\t\tepollhup := false\n\t\tepollerr := false\n\t\tepollin := false\n\t\tfor _, event := range ready {\n\t\t\tif event.Fd == int32(poller.fd) {\n\t\t\t\tif event.Events&unix.EPOLLHUP != 0 {\n\t\t\t\t\t// This should not happen, but if it does, treat it as a wakeup.\n\t\t\t\t\tepollhup = true\n\t\t\t\t}\n\t\t\t\tif event.Events&unix.EPOLLERR != 0 {\n\t\t\t\t\t// If an error is waiting on the file descriptor, we should pretend\n\t\t\t\t\t// something is ready to read, and let unix.Read pick up the error.\n\t\t\t\t\tepollerr = true\n\t\t\t\t}\n\t\t\t\tif event.Events&unix.EPOLLIN != 0 {\n\t\t\t\t\t// There is data to read.\n\t\t\t\t\tepollin = true\n\t\t\t\t}\n\t\t\t}\n\t\t\tif event.Fd == int32(poller.pipe[0]) {\n\t\t\t\tif event.Events&unix.EPOLLHUP != 0 {\n\t\t\t\t\t// Write pipe descriptor was closed, by us. This means we're closing down the\n\t\t\t\t\t// watcher, and we should wake up.\n\t\t\t\t}\n\t\t\t\tif event.Events&unix.EPOLLERR != 0 {\n\t\t\t\t\t// If an error is waiting on the pipe file descriptor.\n\t\t\t\t\t// This is an absolute mystery, and should never ever happen.\n\t\t\t\t\treturn false, errors.New(\"Error on the pipe descriptor.\")\n\t\t\t\t}\n\t\t\t\tif event.Events&unix.EPOLLIN != 0 {\n\t\t\t\t\t// This is a regular wakeup, so we have to clear the buffer.\n\t\t\t\t\terr := poller.clearWake()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn false, err\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif epollhup || epollerr || epollin {\n\t\t\treturn true, nil\n\t\t}\n\t\treturn false, nil\n\t}\n}\n\n// Close the write end of the poller.\nfunc (poller *fdPoller) wake() error {\n\tbuf := make([]byte, 1)\n\tn, errno := unix.Write(poller.pipe[1], buf)\n\tif n == -1 {\n\t\tif errno == unix.EAGAIN {\n\t\t\t// Buffer is full, poller will wake.\n\t\t\treturn nil\n\t\t}\n\t\treturn errno\n\t}\n\treturn nil\n}\n\nfunc (poller *fdPoller) clearWake() error {\n\t// You have to be woken up a LOT in order to get to 100!\n\tbuf := make([]byte, 100)\n\tn, errno := unix.Read(poller.pipe[0], buf)\n\tif n == -1 {\n\t\tif errno == unix.EAGAIN {\n\t\t\t// Buffer is empty, someone else cleared our wake.\n\t\t\treturn nil\n\t\t}\n\t\treturn errno\n\t}\n\treturn nil\n}\n\n// Close all poller file descriptors, but not the one passed to it.\nfunc (poller *fdPoller) close() {\n\tif poller.pipe[1] != -1 {\n\t\tunix.Close(poller.pipe[1])\n\t}\n\tif poller.pipe[0] != -1 {\n\t\tunix.Close(poller.pipe[0])\n\t}\n\tif poller.epfd != -1 {\n\t\tunix.Close(poller.epfd)\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/kqueue.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build freebsd openbsd netbsd dragonfly darwin\n\npackage fsnotify\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sync\"\n\t\"time\"\n\n\t\"golang.org/x/sys/unix\"\n)\n\n// Watcher watches a set of files, delivering events to a channel.\ntype Watcher struct {\n\tEvents chan Event\n\tErrors chan error\n\tdone   chan struct{} // Channel for sending a \"quit message\" to the reader goroutine\n\n\tkq int // File descriptor (as returned by the kqueue() syscall).\n\n\tmu              sync.Mutex        // Protects access to watcher data\n\twatches         map[string]int    // Map of watched file descriptors (key: path).\n\texternalWatches map[string]bool   // Map of watches added by user of the library.\n\tdirFlags        map[string]uint32 // Map of watched directories to fflags used in kqueue.\n\tpaths           map[int]pathInfo  // Map file descriptors to path names for processing kqueue events.\n\tfileExists      map[string]bool   // Keep track of if we know this file exists (to stop duplicate create events).\n\tisClosed        bool              // Set to true when Close() is first called\n}\n\ntype pathInfo struct {\n\tname  string\n\tisDir bool\n}\n\n// NewWatcher establishes a new watcher with the underlying OS and begins waiting for events.\nfunc NewWatcher() (*Watcher, error) {\n\tkq, err := kqueue()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tw := &Watcher{\n\t\tkq:              kq,\n\t\twatches:         make(map[string]int),\n\t\tdirFlags:        make(map[string]uint32),\n\t\tpaths:           make(map[int]pathInfo),\n\t\tfileExists:      make(map[string]bool),\n\t\texternalWatches: make(map[string]bool),\n\t\tEvents:          make(chan Event),\n\t\tErrors:          make(chan error),\n\t\tdone:            make(chan struct{}),\n\t}\n\n\tgo w.readEvents()\n\treturn w, nil\n}\n\n// Close removes all watches and closes the events channel.\nfunc (w *Watcher) Close() error {\n\tw.mu.Lock()\n\tif w.isClosed {\n\t\tw.mu.Unlock()\n\t\treturn nil\n\t}\n\tw.isClosed = true\n\n\t// copy paths to remove while locked\n\tvar pathsToRemove = make([]string, 0, len(w.watches))\n\tfor name := range w.watches {\n\t\tpathsToRemove = append(pathsToRemove, name)\n\t}\n\tw.mu.Unlock()\n\t// unlock before calling Remove, which also locks\n\n\tfor _, name := range pathsToRemove {\n\t\tw.Remove(name)\n\t}\n\n\t// send a \"quit\" message to the reader goroutine\n\tclose(w.done)\n\n\treturn nil\n}\n\n// Add starts watching the named file or directory (non-recursively).\nfunc (w *Watcher) Add(name string) error {\n\tw.mu.Lock()\n\tw.externalWatches[name] = true\n\tw.mu.Unlock()\n\t_, err := w.addWatch(name, noteAllEvents)\n\treturn err\n}\n\n// Remove stops watching the the named file or directory (non-recursively).\nfunc (w *Watcher) Remove(name string) error {\n\tname = filepath.Clean(name)\n\tw.mu.Lock()\n\twatchfd, ok := w.watches[name]\n\tw.mu.Unlock()\n\tif !ok {\n\t\treturn fmt.Errorf(\"can't remove non-existent kevent watch for: %s\", name)\n\t}\n\n\tconst registerRemove = unix.EV_DELETE\n\tif err := register(w.kq, []int{watchfd}, registerRemove, 0); err != nil {\n\t\treturn err\n\t}\n\n\tunix.Close(watchfd)\n\n\tw.mu.Lock()\n\tisDir := w.paths[watchfd].isDir\n\tdelete(w.watches, name)\n\tdelete(w.paths, watchfd)\n\tdelete(w.dirFlags, name)\n\tw.mu.Unlock()\n\n\t// Find all watched paths that are in this directory that are not external.\n\tif isDir {\n\t\tvar pathsToRemove []string\n\t\tw.mu.Lock()\n\t\tfor _, path := range w.paths {\n\t\t\twdir, _ := filepath.Split(path.name)\n\t\t\tif filepath.Clean(wdir) == name {\n\t\t\t\tif !w.externalWatches[path.name] {\n\t\t\t\t\tpathsToRemove = append(pathsToRemove, path.name)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tw.mu.Unlock()\n\t\tfor _, name := range pathsToRemove {\n\t\t\t// Since these are internal, not much sense in propagating error\n\t\t\t// to the user, as that will just confuse them with an error about\n\t\t\t// a path they did not explicitly watch themselves.\n\t\t\tw.Remove(name)\n\t\t}\n\t}\n\n\treturn nil\n}\n\n// Watch all events (except NOTE_EXTEND, NOTE_LINK, NOTE_REVOKE)\nconst noteAllEvents = unix.NOTE_DELETE | unix.NOTE_WRITE | unix.NOTE_ATTRIB | unix.NOTE_RENAME\n\n// keventWaitTime to block on each read from kevent\nvar keventWaitTime = durationToTimespec(100 * time.Millisecond)\n\n// addWatch adds name to the watched file set.\n// The flags are interpreted as described in kevent(2).\n// Returns the real path to the file which was added, if any, which may be different from the one passed in the case of symlinks.\nfunc (w *Watcher) addWatch(name string, flags uint32) (string, error) {\n\tvar isDir bool\n\t// Make ./name and name equivalent\n\tname = filepath.Clean(name)\n\n\tw.mu.Lock()\n\tif w.isClosed {\n\t\tw.mu.Unlock()\n\t\treturn \"\", errors.New(\"kevent instance already closed\")\n\t}\n\twatchfd, alreadyWatching := w.watches[name]\n\t// We already have a watch, but we can still override flags.\n\tif alreadyWatching {\n\t\tisDir = w.paths[watchfd].isDir\n\t}\n\tw.mu.Unlock()\n\n\tif !alreadyWatching {\n\t\tfi, err := os.Lstat(name)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\n\t\t// Don't watch sockets.\n\t\tif fi.Mode()&os.ModeSocket == os.ModeSocket {\n\t\t\treturn \"\", nil\n\t\t}\n\n\t\t// Don't watch named pipes.\n\t\tif fi.Mode()&os.ModeNamedPipe == os.ModeNamedPipe {\n\t\t\treturn \"\", nil\n\t\t}\n\n\t\t// Follow Symlinks\n\t\t// Unfortunately, Linux can add bogus symlinks to watch list without\n\t\t// issue, and Windows can't do symlinks period (AFAIK). To  maintain\n\t\t// consistency, we will act like everything is fine. There will simply\n\t\t// be no file events for broken symlinks.\n\t\t// Hence the returns of nil on errors.\n\t\tif fi.Mode()&os.ModeSymlink == os.ModeSymlink {\n\t\t\tname, err = filepath.EvalSymlinks(name)\n\t\t\tif err != nil {\n\t\t\t\treturn \"\", nil\n\t\t\t}\n\n\t\t\tw.mu.Lock()\n\t\t\t_, alreadyWatching = w.watches[name]\n\t\t\tw.mu.Unlock()\n\n\t\t\tif alreadyWatching {\n\t\t\t\treturn name, nil\n\t\t\t}\n\n\t\t\tfi, err = os.Lstat(name)\n\t\t\tif err != nil {\n\t\t\t\treturn \"\", nil\n\t\t\t}\n\t\t}\n\n\t\twatchfd, err = unix.Open(name, openMode, 0700)\n\t\tif watchfd == -1 {\n\t\t\treturn \"\", err\n\t\t}\n\n\t\tisDir = fi.IsDir()\n\t}\n\n\tconst registerAdd = unix.EV_ADD | unix.EV_CLEAR | unix.EV_ENABLE\n\tif err := register(w.kq, []int{watchfd}, registerAdd, flags); err != nil {\n\t\tunix.Close(watchfd)\n\t\treturn \"\", err\n\t}\n\n\tif !alreadyWatching {\n\t\tw.mu.Lock()\n\t\tw.watches[name] = watchfd\n\t\tw.paths[watchfd] = pathInfo{name: name, isDir: isDir}\n\t\tw.mu.Unlock()\n\t}\n\n\tif isDir {\n\t\t// Watch the directory if it has not been watched before,\n\t\t// or if it was watched before, but perhaps only a NOTE_DELETE (watchDirectoryFiles)\n\t\tw.mu.Lock()\n\n\t\twatchDir := (flags&unix.NOTE_WRITE) == unix.NOTE_WRITE &&\n\t\t\t(!alreadyWatching || (w.dirFlags[name]&unix.NOTE_WRITE) != unix.NOTE_WRITE)\n\t\t// Store flags so this watch can be updated later\n\t\tw.dirFlags[name] = flags\n\t\tw.mu.Unlock()\n\n\t\tif watchDir {\n\t\t\tif err := w.watchDirectoryFiles(name); err != nil {\n\t\t\t\treturn \"\", err\n\t\t\t}\n\t\t}\n\t}\n\treturn name, nil\n}\n\n// readEvents reads from kqueue and converts the received kevents into\n// Event values that it sends down the Events channel.\nfunc (w *Watcher) readEvents() {\n\teventBuffer := make([]unix.Kevent_t, 10)\n\nloop:\n\tfor {\n\t\t// See if there is a message on the \"done\" channel\n\t\tselect {\n\t\tcase <-w.done:\n\t\t\tbreak loop\n\t\tdefault:\n\t\t}\n\n\t\t// Get new events\n\t\tkevents, err := read(w.kq, eventBuffer, &keventWaitTime)\n\t\t// EINTR is okay, the syscall was interrupted before timeout expired.\n\t\tif err != nil && err != unix.EINTR {\n\t\t\tselect {\n\t\t\tcase w.Errors <- err:\n\t\t\tcase <-w.done:\n\t\t\t\tbreak loop\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\t// Flush the events we received to the Events channel\n\t\tfor len(kevents) > 0 {\n\t\t\tkevent := &kevents[0]\n\t\t\twatchfd := int(kevent.Ident)\n\t\t\tmask := uint32(kevent.Fflags)\n\t\t\tw.mu.Lock()\n\t\t\tpath := w.paths[watchfd]\n\t\t\tw.mu.Unlock()\n\t\t\tevent := newEvent(path.name, mask)\n\n\t\t\tif path.isDir && !(event.Op&Remove == Remove) {\n\t\t\t\t// Double check to make sure the directory exists. This can happen when\n\t\t\t\t// we do a rm -fr on a recursively watched folders and we receive a\n\t\t\t\t// modification event first but the folder has been deleted and later\n\t\t\t\t// receive the delete event\n\t\t\t\tif _, err := os.Lstat(event.Name); os.IsNotExist(err) {\n\t\t\t\t\t// mark is as delete event\n\t\t\t\t\tevent.Op |= Remove\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif event.Op&Rename == Rename || event.Op&Remove == Remove {\n\t\t\t\tw.Remove(event.Name)\n\t\t\t\tw.mu.Lock()\n\t\t\t\tdelete(w.fileExists, event.Name)\n\t\t\t\tw.mu.Unlock()\n\t\t\t}\n\n\t\t\tif path.isDir && event.Op&Write == Write && !(event.Op&Remove == Remove) {\n\t\t\t\tw.sendDirectoryChangeEvents(event.Name)\n\t\t\t} else {\n\t\t\t\t// Send the event on the Events channel.\n\t\t\t\tselect {\n\t\t\t\tcase w.Events <- event:\n\t\t\t\tcase <-w.done:\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif event.Op&Remove == Remove {\n\t\t\t\t// Look for a file that may have overwritten this.\n\t\t\t\t// For example, mv f1 f2 will delete f2, then create f2.\n\t\t\t\tif path.isDir {\n\t\t\t\t\tfileDir := filepath.Clean(event.Name)\n\t\t\t\t\tw.mu.Lock()\n\t\t\t\t\t_, found := w.watches[fileDir]\n\t\t\t\t\tw.mu.Unlock()\n\t\t\t\t\tif found {\n\t\t\t\t\t\t// make sure the directory exists before we watch for changes. When we\n\t\t\t\t\t\t// do a recursive watch and perform rm -fr, the parent directory might\n\t\t\t\t\t\t// have gone missing, ignore the missing directory and let the\n\t\t\t\t\t\t// upcoming delete event remove the watch from the parent directory.\n\t\t\t\t\t\tif _, err := os.Lstat(fileDir); err == nil {\n\t\t\t\t\t\t\tw.sendDirectoryChangeEvents(fileDir)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tfilePath := filepath.Clean(event.Name)\n\t\t\t\t\tif fileInfo, err := os.Lstat(filePath); err == nil {\n\t\t\t\t\t\tw.sendFileCreatedEventIfNew(filePath, fileInfo)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Move to next event\n\t\t\tkevents = kevents[1:]\n\t\t}\n\t}\n\n\t// cleanup\n\terr := unix.Close(w.kq)\n\tif err != nil {\n\t\t// only way the previous loop breaks is if w.done was closed so we need to async send to w.Errors.\n\t\tselect {\n\t\tcase w.Errors <- err:\n\t\tdefault:\n\t\t}\n\t}\n\tclose(w.Events)\n\tclose(w.Errors)\n}\n\n// newEvent returns an platform-independent Event based on kqueue Fflags.\nfunc newEvent(name string, mask uint32) Event {\n\te := Event{Name: name}\n\tif mask&unix.NOTE_DELETE == unix.NOTE_DELETE {\n\t\te.Op |= Remove\n\t}\n\tif mask&unix.NOTE_WRITE == unix.NOTE_WRITE {\n\t\te.Op |= Write\n\t}\n\tif mask&unix.NOTE_RENAME == unix.NOTE_RENAME {\n\t\te.Op |= Rename\n\t}\n\tif mask&unix.NOTE_ATTRIB == unix.NOTE_ATTRIB {\n\t\te.Op |= Chmod\n\t}\n\treturn e\n}\n\nfunc newCreateEvent(name string) Event {\n\treturn Event{Name: name, Op: Create}\n}\n\n// watchDirectoryFiles to mimic inotify when adding a watch on a directory\nfunc (w *Watcher) watchDirectoryFiles(dirPath string) error {\n\t// Get all files\n\tfiles, err := ioutil.ReadDir(dirPath)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tfor _, fileInfo := range files {\n\t\tfilePath := filepath.Join(dirPath, fileInfo.Name())\n\t\tfilePath, err = w.internalWatch(filePath, fileInfo)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tw.mu.Lock()\n\t\tw.fileExists[filePath] = true\n\t\tw.mu.Unlock()\n\t}\n\n\treturn nil\n}\n\n// sendDirectoryEvents searches the directory for newly created files\n// and sends them over the event channel. This functionality is to have\n// the BSD version of fsnotify match Linux inotify which provides a\n// create event for files created in a watched directory.\nfunc (w *Watcher) sendDirectoryChangeEvents(dirPath string) {\n\t// Get all files\n\tfiles, err := ioutil.ReadDir(dirPath)\n\tif err != nil {\n\t\tselect {\n\t\tcase w.Errors <- err:\n\t\tcase <-w.done:\n\t\t\treturn\n\t\t}\n\t}\n\n\t// Search for new files\n\tfor _, fileInfo := range files {\n\t\tfilePath := filepath.Join(dirPath, fileInfo.Name())\n\t\terr := w.sendFileCreatedEventIfNew(filePath, fileInfo)\n\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t}\n}\n\n// sendFileCreatedEvent sends a create event if the file isn't already being tracked.\nfunc (w *Watcher) sendFileCreatedEventIfNew(filePath string, fileInfo os.FileInfo) (err error) {\n\tw.mu.Lock()\n\t_, doesExist := w.fileExists[filePath]\n\tw.mu.Unlock()\n\tif !doesExist {\n\t\t// Send create event\n\t\tselect {\n\t\tcase w.Events <- newCreateEvent(filePath):\n\t\tcase <-w.done:\n\t\t\treturn\n\t\t}\n\t}\n\n\t// like watchDirectoryFiles (but without doing another ReadDir)\n\tfilePath, err = w.internalWatch(filePath, fileInfo)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tw.mu.Lock()\n\tw.fileExists[filePath] = true\n\tw.mu.Unlock()\n\n\treturn nil\n}\n\nfunc (w *Watcher) internalWatch(name string, fileInfo os.FileInfo) (string, error) {\n\tif fileInfo.IsDir() {\n\t\t// mimic Linux providing delete events for subdirectories\n\t\t// but preserve the flags used if currently watching subdirectory\n\t\tw.mu.Lock()\n\t\tflags := w.dirFlags[name]\n\t\tw.mu.Unlock()\n\n\t\tflags |= unix.NOTE_DELETE | unix.NOTE_RENAME\n\t\treturn w.addWatch(name, flags)\n\t}\n\n\t// watch file to mimic Linux inotify\n\treturn w.addWatch(name, noteAllEvents)\n}\n\n// kqueue creates a new kernel event queue and returns a descriptor.\nfunc kqueue() (kq int, err error) {\n\tkq, err = unix.Kqueue()\n\tif kq == -1 {\n\t\treturn kq, err\n\t}\n\treturn kq, nil\n}\n\n// register events with the queue\nfunc register(kq int, fds []int, flags int, fflags uint32) error {\n\tchanges := make([]unix.Kevent_t, len(fds))\n\n\tfor i, fd := range fds {\n\t\t// SetKevent converts int to the platform-specific types:\n\t\tunix.SetKevent(&changes[i], fd, unix.EVFILT_VNODE, flags)\n\t\tchanges[i].Fflags = fflags\n\t}\n\n\t// register the events\n\tsuccess, err := unix.Kevent(kq, changes, nil, nil)\n\tif success == -1 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// read retrieves pending events, or waits until an event occurs.\n// A timeout of nil blocks indefinitely, while 0 polls the queue.\nfunc read(kq int, events []unix.Kevent_t, timeout *unix.Timespec) ([]unix.Kevent_t, error) {\n\tn, err := unix.Kevent(kq, nil, events, timeout)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn events[0:n], nil\n}\n\n// durationToTimespec prepares a timeout value\nfunc durationToTimespec(d time.Duration) unix.Timespec {\n\treturn unix.NsecToTimespec(d.Nanoseconds())\n}\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build freebsd openbsd netbsd dragonfly\n\npackage fsnotify\n\nimport \"golang.org/x/sys/unix\"\n\nconst openMode = unix.O_NONBLOCK | unix.O_RDONLY\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/open_mode_darwin.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build darwin\n\npackage fsnotify\n\nimport \"golang.org/x/sys/unix\"\n\n// note: this constant is not defined on BSD\nconst openMode = unix.O_EVTONLY\n"
  },
  {
    "path": "vendor/github.com/fsnotify/fsnotify/windows.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build windows\n\npackage fsnotify\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"sync\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// Watcher watches a set of files, delivering events to a channel.\ntype Watcher struct {\n\tEvents   chan Event\n\tErrors   chan error\n\tisClosed bool           // Set to true when Close() is first called\n\tmu       sync.Mutex     // Map access\n\tport     syscall.Handle // Handle to completion port\n\twatches  watchMap       // Map of watches (key: i-number)\n\tinput    chan *input    // Inputs to the reader are sent on this channel\n\tquit     chan chan<- error\n}\n\n// NewWatcher establishes a new watcher with the underlying OS and begins waiting for events.\nfunc NewWatcher() (*Watcher, error) {\n\tport, e := syscall.CreateIoCompletionPort(syscall.InvalidHandle, 0, 0, 0)\n\tif e != nil {\n\t\treturn nil, os.NewSyscallError(\"CreateIoCompletionPort\", e)\n\t}\n\tw := &Watcher{\n\t\tport:    port,\n\t\twatches: make(watchMap),\n\t\tinput:   make(chan *input, 1),\n\t\tEvents:  make(chan Event, 50),\n\t\tErrors:  make(chan error),\n\t\tquit:    make(chan chan<- error, 1),\n\t}\n\tgo w.readEvents()\n\treturn w, nil\n}\n\n// Close removes all watches and closes the events channel.\nfunc (w *Watcher) Close() error {\n\tif w.isClosed {\n\t\treturn nil\n\t}\n\tw.isClosed = true\n\n\t// Send \"quit\" message to the reader goroutine\n\tch := make(chan error)\n\tw.quit <- ch\n\tif err := w.wakeupReader(); err != nil {\n\t\treturn err\n\t}\n\treturn <-ch\n}\n\n// Add starts watching the named file or directory (non-recursively).\nfunc (w *Watcher) Add(name string) error {\n\tif w.isClosed {\n\t\treturn errors.New(\"watcher already closed\")\n\t}\n\tin := &input{\n\t\top:    opAddWatch,\n\t\tpath:  filepath.Clean(name),\n\t\tflags: sysFSALLEVENTS,\n\t\treply: make(chan error),\n\t}\n\tw.input <- in\n\tif err := w.wakeupReader(); err != nil {\n\t\treturn err\n\t}\n\treturn <-in.reply\n}\n\n// Remove stops watching the the named file or directory (non-recursively).\nfunc (w *Watcher) Remove(name string) error {\n\tin := &input{\n\t\top:    opRemoveWatch,\n\t\tpath:  filepath.Clean(name),\n\t\treply: make(chan error),\n\t}\n\tw.input <- in\n\tif err := w.wakeupReader(); err != nil {\n\t\treturn err\n\t}\n\treturn <-in.reply\n}\n\nconst (\n\t// Options for AddWatch\n\tsysFSONESHOT = 0x80000000\n\tsysFSONLYDIR = 0x1000000\n\n\t// Events\n\tsysFSACCESS     = 0x1\n\tsysFSALLEVENTS  = 0xfff\n\tsysFSATTRIB     = 0x4\n\tsysFSCLOSE      = 0x18\n\tsysFSCREATE     = 0x100\n\tsysFSDELETE     = 0x200\n\tsysFSDELETESELF = 0x400\n\tsysFSMODIFY     = 0x2\n\tsysFSMOVE       = 0xc0\n\tsysFSMOVEDFROM  = 0x40\n\tsysFSMOVEDTO    = 0x80\n\tsysFSMOVESELF   = 0x800\n\n\t// Special events\n\tsysFSIGNORED   = 0x8000\n\tsysFSQOVERFLOW = 0x4000\n)\n\nfunc newEvent(name string, mask uint32) Event {\n\te := Event{Name: name}\n\tif mask&sysFSCREATE == sysFSCREATE || mask&sysFSMOVEDTO == sysFSMOVEDTO {\n\t\te.Op |= Create\n\t}\n\tif mask&sysFSDELETE == sysFSDELETE || mask&sysFSDELETESELF == sysFSDELETESELF {\n\t\te.Op |= Remove\n\t}\n\tif mask&sysFSMODIFY == sysFSMODIFY {\n\t\te.Op |= Write\n\t}\n\tif mask&sysFSMOVE == sysFSMOVE || mask&sysFSMOVESELF == sysFSMOVESELF || mask&sysFSMOVEDFROM == sysFSMOVEDFROM {\n\t\te.Op |= Rename\n\t}\n\tif mask&sysFSATTRIB == sysFSATTRIB {\n\t\te.Op |= Chmod\n\t}\n\treturn e\n}\n\nconst (\n\topAddWatch = iota\n\topRemoveWatch\n)\n\nconst (\n\tprovisional uint64 = 1 << (32 + iota)\n)\n\ntype input struct {\n\top    int\n\tpath  string\n\tflags uint32\n\treply chan error\n}\n\ntype inode struct {\n\thandle syscall.Handle\n\tvolume uint32\n\tindex  uint64\n}\n\ntype watch struct {\n\tov     syscall.Overlapped\n\tino    *inode            // i-number\n\tpath   string            // Directory path\n\tmask   uint64            // Directory itself is being watched with these notify flags\n\tnames  map[string]uint64 // Map of names being watched and their notify flags\n\trename string            // Remembers the old name while renaming a file\n\tbuf    [4096]byte\n}\n\ntype indexMap map[uint64]*watch\ntype watchMap map[uint32]indexMap\n\nfunc (w *Watcher) wakeupReader() error {\n\te := syscall.PostQueuedCompletionStatus(w.port, 0, 0, nil)\n\tif e != nil {\n\t\treturn os.NewSyscallError(\"PostQueuedCompletionStatus\", e)\n\t}\n\treturn nil\n}\n\nfunc getDir(pathname string) (dir string, err error) {\n\tattr, e := syscall.GetFileAttributes(syscall.StringToUTF16Ptr(pathname))\n\tif e != nil {\n\t\treturn \"\", os.NewSyscallError(\"GetFileAttributes\", e)\n\t}\n\tif attr&syscall.FILE_ATTRIBUTE_DIRECTORY != 0 {\n\t\tdir = pathname\n\t} else {\n\t\tdir, _ = filepath.Split(pathname)\n\t\tdir = filepath.Clean(dir)\n\t}\n\treturn\n}\n\nfunc getIno(path string) (ino *inode, err error) {\n\th, e := syscall.CreateFile(syscall.StringToUTF16Ptr(path),\n\t\tsyscall.FILE_LIST_DIRECTORY,\n\t\tsyscall.FILE_SHARE_READ|syscall.FILE_SHARE_WRITE|syscall.FILE_SHARE_DELETE,\n\t\tnil, syscall.OPEN_EXISTING,\n\t\tsyscall.FILE_FLAG_BACKUP_SEMANTICS|syscall.FILE_FLAG_OVERLAPPED, 0)\n\tif e != nil {\n\t\treturn nil, os.NewSyscallError(\"CreateFile\", e)\n\t}\n\tvar fi syscall.ByHandleFileInformation\n\tif e = syscall.GetFileInformationByHandle(h, &fi); e != nil {\n\t\tsyscall.CloseHandle(h)\n\t\treturn nil, os.NewSyscallError(\"GetFileInformationByHandle\", e)\n\t}\n\tino = &inode{\n\t\thandle: h,\n\t\tvolume: fi.VolumeSerialNumber,\n\t\tindex:  uint64(fi.FileIndexHigh)<<32 | uint64(fi.FileIndexLow),\n\t}\n\treturn ino, nil\n}\n\n// Must run within the I/O thread.\nfunc (m watchMap) get(ino *inode) *watch {\n\tif i := m[ino.volume]; i != nil {\n\t\treturn i[ino.index]\n\t}\n\treturn nil\n}\n\n// Must run within the I/O thread.\nfunc (m watchMap) set(ino *inode, watch *watch) {\n\ti := m[ino.volume]\n\tif i == nil {\n\t\ti = make(indexMap)\n\t\tm[ino.volume] = i\n\t}\n\ti[ino.index] = watch\n}\n\n// Must run within the I/O thread.\nfunc (w *Watcher) addWatch(pathname string, flags uint64) error {\n\tdir, err := getDir(pathname)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif flags&sysFSONLYDIR != 0 && pathname != dir {\n\t\treturn nil\n\t}\n\tino, err := getIno(dir)\n\tif err != nil {\n\t\treturn err\n\t}\n\tw.mu.Lock()\n\twatchEntry := w.watches.get(ino)\n\tw.mu.Unlock()\n\tif watchEntry == nil {\n\t\tif _, e := syscall.CreateIoCompletionPort(ino.handle, w.port, 0, 0); e != nil {\n\t\t\tsyscall.CloseHandle(ino.handle)\n\t\t\treturn os.NewSyscallError(\"CreateIoCompletionPort\", e)\n\t\t}\n\t\twatchEntry = &watch{\n\t\t\tino:   ino,\n\t\t\tpath:  dir,\n\t\t\tnames: make(map[string]uint64),\n\t\t}\n\t\tw.mu.Lock()\n\t\tw.watches.set(ino, watchEntry)\n\t\tw.mu.Unlock()\n\t\tflags |= provisional\n\t} else {\n\t\tsyscall.CloseHandle(ino.handle)\n\t}\n\tif pathname == dir {\n\t\twatchEntry.mask |= flags\n\t} else {\n\t\twatchEntry.names[filepath.Base(pathname)] |= flags\n\t}\n\tif err = w.startRead(watchEntry); err != nil {\n\t\treturn err\n\t}\n\tif pathname == dir {\n\t\twatchEntry.mask &= ^provisional\n\t} else {\n\t\twatchEntry.names[filepath.Base(pathname)] &= ^provisional\n\t}\n\treturn nil\n}\n\n// Must run within the I/O thread.\nfunc (w *Watcher) remWatch(pathname string) error {\n\tdir, err := getDir(pathname)\n\tif err != nil {\n\t\treturn err\n\t}\n\tino, err := getIno(dir)\n\tif err != nil {\n\t\treturn err\n\t}\n\tw.mu.Lock()\n\twatch := w.watches.get(ino)\n\tw.mu.Unlock()\n\tif watch == nil {\n\t\treturn fmt.Errorf(\"can't remove non-existent watch for: %s\", pathname)\n\t}\n\tif pathname == dir {\n\t\tw.sendEvent(watch.path, watch.mask&sysFSIGNORED)\n\t\twatch.mask = 0\n\t} else {\n\t\tname := filepath.Base(pathname)\n\t\tw.sendEvent(filepath.Join(watch.path, name), watch.names[name]&sysFSIGNORED)\n\t\tdelete(watch.names, name)\n\t}\n\treturn w.startRead(watch)\n}\n\n// Must run within the I/O thread.\nfunc (w *Watcher) deleteWatch(watch *watch) {\n\tfor name, mask := range watch.names {\n\t\tif mask&provisional == 0 {\n\t\t\tw.sendEvent(filepath.Join(watch.path, name), mask&sysFSIGNORED)\n\t\t}\n\t\tdelete(watch.names, name)\n\t}\n\tif watch.mask != 0 {\n\t\tif watch.mask&provisional == 0 {\n\t\t\tw.sendEvent(watch.path, watch.mask&sysFSIGNORED)\n\t\t}\n\t\twatch.mask = 0\n\t}\n}\n\n// Must run within the I/O thread.\nfunc (w *Watcher) startRead(watch *watch) error {\n\tif e := syscall.CancelIo(watch.ino.handle); e != nil {\n\t\tw.Errors <- os.NewSyscallError(\"CancelIo\", e)\n\t\tw.deleteWatch(watch)\n\t}\n\tmask := toWindowsFlags(watch.mask)\n\tfor _, m := range watch.names {\n\t\tmask |= toWindowsFlags(m)\n\t}\n\tif mask == 0 {\n\t\tif e := syscall.CloseHandle(watch.ino.handle); e != nil {\n\t\t\tw.Errors <- os.NewSyscallError(\"CloseHandle\", e)\n\t\t}\n\t\tw.mu.Lock()\n\t\tdelete(w.watches[watch.ino.volume], watch.ino.index)\n\t\tw.mu.Unlock()\n\t\treturn nil\n\t}\n\te := syscall.ReadDirectoryChanges(watch.ino.handle, &watch.buf[0],\n\t\tuint32(unsafe.Sizeof(watch.buf)), false, mask, nil, &watch.ov, 0)\n\tif e != nil {\n\t\terr := os.NewSyscallError(\"ReadDirectoryChanges\", e)\n\t\tif e == syscall.ERROR_ACCESS_DENIED && watch.mask&provisional == 0 {\n\t\t\t// Watched directory was probably removed\n\t\t\tif w.sendEvent(watch.path, watch.mask&sysFSDELETESELF) {\n\t\t\t\tif watch.mask&sysFSONESHOT != 0 {\n\t\t\t\t\twatch.mask = 0\n\t\t\t\t}\n\t\t\t}\n\t\t\terr = nil\n\t\t}\n\t\tw.deleteWatch(watch)\n\t\tw.startRead(watch)\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// readEvents reads from the I/O completion port, converts the\n// received events into Event objects and sends them via the Events channel.\n// Entry point to the I/O thread.\nfunc (w *Watcher) readEvents() {\n\tvar (\n\t\tn, key uint32\n\t\tov     *syscall.Overlapped\n\t)\n\truntime.LockOSThread()\n\n\tfor {\n\t\te := syscall.GetQueuedCompletionStatus(w.port, &n, &key, &ov, syscall.INFINITE)\n\t\twatch := (*watch)(unsafe.Pointer(ov))\n\n\t\tif watch == nil {\n\t\t\tselect {\n\t\t\tcase ch := <-w.quit:\n\t\t\t\tw.mu.Lock()\n\t\t\t\tvar indexes []indexMap\n\t\t\t\tfor _, index := range w.watches {\n\t\t\t\t\tindexes = append(indexes, index)\n\t\t\t\t}\n\t\t\t\tw.mu.Unlock()\n\t\t\t\tfor _, index := range indexes {\n\t\t\t\t\tfor _, watch := range index {\n\t\t\t\t\t\tw.deleteWatch(watch)\n\t\t\t\t\t\tw.startRead(watch)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tvar err error\n\t\t\t\tif e := syscall.CloseHandle(w.port); e != nil {\n\t\t\t\t\terr = os.NewSyscallError(\"CloseHandle\", e)\n\t\t\t\t}\n\t\t\t\tclose(w.Events)\n\t\t\t\tclose(w.Errors)\n\t\t\t\tch <- err\n\t\t\t\treturn\n\t\t\tcase in := <-w.input:\n\t\t\t\tswitch in.op {\n\t\t\t\tcase opAddWatch:\n\t\t\t\t\tin.reply <- w.addWatch(in.path, uint64(in.flags))\n\t\t\t\tcase opRemoveWatch:\n\t\t\t\t\tin.reply <- w.remWatch(in.path)\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tswitch e {\n\t\tcase syscall.ERROR_MORE_DATA:\n\t\t\tif watch == nil {\n\t\t\t\tw.Errors <- errors.New(\"ERROR_MORE_DATA has unexpectedly null lpOverlapped buffer\")\n\t\t\t} else {\n\t\t\t\t// The i/o succeeded but the buffer is full.\n\t\t\t\t// In theory we should be building up a full packet.\n\t\t\t\t// In practice we can get away with just carrying on.\n\t\t\t\tn = uint32(unsafe.Sizeof(watch.buf))\n\t\t\t}\n\t\tcase syscall.ERROR_ACCESS_DENIED:\n\t\t\t// Watched directory was probably removed\n\t\t\tw.sendEvent(watch.path, watch.mask&sysFSDELETESELF)\n\t\t\tw.deleteWatch(watch)\n\t\t\tw.startRead(watch)\n\t\t\tcontinue\n\t\tcase syscall.ERROR_OPERATION_ABORTED:\n\t\t\t// CancelIo was called on this handle\n\t\t\tcontinue\n\t\tdefault:\n\t\t\tw.Errors <- os.NewSyscallError(\"GetQueuedCompletionPort\", e)\n\t\t\tcontinue\n\t\tcase nil:\n\t\t}\n\n\t\tvar offset uint32\n\t\tfor {\n\t\t\tif n == 0 {\n\t\t\t\tw.Events <- newEvent(\"\", sysFSQOVERFLOW)\n\t\t\t\tw.Errors <- errors.New(\"short read in readEvents()\")\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// Point \"raw\" to the event in the buffer\n\t\t\traw := (*syscall.FileNotifyInformation)(unsafe.Pointer(&watch.buf[offset]))\n\t\t\tbuf := (*[syscall.MAX_PATH]uint16)(unsafe.Pointer(&raw.FileName))\n\t\t\tname := syscall.UTF16ToString(buf[:raw.FileNameLength/2])\n\t\t\tfullname := filepath.Join(watch.path, name)\n\n\t\t\tvar mask uint64\n\t\t\tswitch raw.Action {\n\t\t\tcase syscall.FILE_ACTION_REMOVED:\n\t\t\t\tmask = sysFSDELETESELF\n\t\t\tcase syscall.FILE_ACTION_MODIFIED:\n\t\t\t\tmask = sysFSMODIFY\n\t\t\tcase syscall.FILE_ACTION_RENAMED_OLD_NAME:\n\t\t\t\twatch.rename = name\n\t\t\tcase syscall.FILE_ACTION_RENAMED_NEW_NAME:\n\t\t\t\tif watch.names[watch.rename] != 0 {\n\t\t\t\t\twatch.names[name] |= watch.names[watch.rename]\n\t\t\t\t\tdelete(watch.names, watch.rename)\n\t\t\t\t\tmask = sysFSMOVESELF\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tsendNameEvent := func() {\n\t\t\t\tif w.sendEvent(fullname, watch.names[name]&mask) {\n\t\t\t\t\tif watch.names[name]&sysFSONESHOT != 0 {\n\t\t\t\t\t\tdelete(watch.names, name)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif raw.Action != syscall.FILE_ACTION_RENAMED_NEW_NAME {\n\t\t\t\tsendNameEvent()\n\t\t\t}\n\t\t\tif raw.Action == syscall.FILE_ACTION_REMOVED {\n\t\t\t\tw.sendEvent(fullname, watch.names[name]&sysFSIGNORED)\n\t\t\t\tdelete(watch.names, name)\n\t\t\t}\n\t\t\tif w.sendEvent(fullname, watch.mask&toFSnotifyFlags(raw.Action)) {\n\t\t\t\tif watch.mask&sysFSONESHOT != 0 {\n\t\t\t\t\twatch.mask = 0\n\t\t\t\t}\n\t\t\t}\n\t\t\tif raw.Action == syscall.FILE_ACTION_RENAMED_NEW_NAME {\n\t\t\t\tfullname = filepath.Join(watch.path, watch.rename)\n\t\t\t\tsendNameEvent()\n\t\t\t}\n\n\t\t\t// Move to the next event in the buffer\n\t\t\tif raw.NextEntryOffset == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\toffset += raw.NextEntryOffset\n\n\t\t\t// Error!\n\t\t\tif offset >= n {\n\t\t\t\tw.Errors <- errors.New(\"Windows system assumed buffer larger than it is, events have likely been missed.\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tif err := w.startRead(watch); err != nil {\n\t\t\tw.Errors <- err\n\t\t}\n\t}\n}\n\nfunc (w *Watcher) sendEvent(name string, mask uint64) bool {\n\tif mask == 0 {\n\t\treturn false\n\t}\n\tevent := newEvent(name, uint32(mask))\n\tselect {\n\tcase ch := <-w.quit:\n\t\tw.quit <- ch\n\tcase w.Events <- event:\n\t}\n\treturn true\n}\n\nfunc toWindowsFlags(mask uint64) uint32 {\n\tvar m uint32\n\tif mask&sysFSACCESS != 0 {\n\t\tm |= syscall.FILE_NOTIFY_CHANGE_LAST_ACCESS\n\t}\n\tif mask&sysFSMODIFY != 0 {\n\t\tm |= syscall.FILE_NOTIFY_CHANGE_LAST_WRITE\n\t}\n\tif mask&sysFSATTRIB != 0 {\n\t\tm |= syscall.FILE_NOTIFY_CHANGE_ATTRIBUTES\n\t}\n\tif mask&(sysFSMOVE|sysFSCREATE|sysFSDELETE) != 0 {\n\t\tm |= syscall.FILE_NOTIFY_CHANGE_FILE_NAME | syscall.FILE_NOTIFY_CHANGE_DIR_NAME\n\t}\n\treturn m\n}\n\nfunc toFSnotifyFlags(action uint32) uint64 {\n\tswitch action {\n\tcase syscall.FILE_ACTION_ADDED:\n\t\treturn sysFSCREATE\n\tcase syscall.FILE_ACTION_REMOVED:\n\t\treturn sysFSDELETE\n\tcase syscall.FILE_ACTION_MODIFIED:\n\t\treturn sysFSMODIFY\n\tcase syscall.FILE_ACTION_RENAMED_OLD_NAME:\n\t\treturn sysFSMOVEDFROM\n\tcase syscall.FILE_ACTION_RENAMED_NEW_NAME:\n\t\treturn sysFSMOVEDTO\n\t}\n\treturn 0\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/.gitignore",
    "content": "y.output\r\n\r\n# ignore intellij files\r\n.idea\r\n*.iml\r\n*.ipr\r\n*.iws\r\n\r\n*.test\r\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/.travis.yml",
    "content": "sudo: false\n\nlanguage: go\n\ngo:\n  - 1.x\n  - tip\n\nbranches:\n  only:\n    - master\n\nscript: make test\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/LICENSE",
    "content": "Mozilla Public License, version 2.0\n\n1. Definitions\n\n1.1. “Contributor”\n\n     means each individual or legal entity that creates, contributes to the\n     creation of, or owns Covered Software.\n\n1.2. “Contributor Version”\n\n     means the combination of the Contributions of others (if any) used by a\n     Contributor and that particular Contributor’s Contribution.\n\n1.3. “Contribution”\n\n     means Covered Software of a particular Contributor.\n\n1.4. “Covered Software”\n\n     means Source Code Form to which the initial Contributor has attached the\n     notice in Exhibit A, the Executable Form of such Source Code Form, and\n     Modifications of such Source Code Form, in each case including portions\n     thereof.\n\n1.5. “Incompatible With Secondary Licenses”\n     means\n\n     a. that the initial Contributor has attached the notice described in\n        Exhibit B to the Covered Software; or\n\n     b. that the Covered Software was made available under the terms of version\n        1.1 or earlier of the License, but not also under the terms of a\n        Secondary License.\n\n1.6. “Executable Form”\n\n     means any form of the work other than Source Code Form.\n\n1.7. “Larger Work”\n\n     means a work that combines Covered Software with other material, in a separate\n     file or files, that is not Covered Software.\n\n1.8. “License”\n\n     means this document.\n\n1.9. “Licensable”\n\n     means having the right to grant, to the maximum extent possible, whether at the\n     time of the initial grant or subsequently, any and all of the rights conveyed by\n     this License.\n\n1.10. “Modifications”\n\n     means any of the following:\n\n     a. any file in Source Code Form that results from an addition to, deletion\n        from, or modification of the contents of Covered Software; or\n\n     b. any new file in Source Code Form that contains any Covered Software.\n\n1.11. “Patent Claims” of a Contributor\n\n      means any patent claim(s), including without limitation, method, process,\n      and apparatus claims, in any patent Licensable by such Contributor that\n      would be infringed, but for the grant of the License, by the making,\n      using, selling, offering for sale, having made, import, or transfer of\n      either its Contributions or its Contributor Version.\n\n1.12. “Secondary License”\n\n      means either the GNU General Public License, Version 2.0, the GNU Lesser\n      General Public License, Version 2.1, the GNU Affero General Public\n      License, Version 3.0, or any later versions of those licenses.\n\n1.13. “Source Code Form”\n\n      means the form of the work preferred for making modifications.\n\n1.14. “You” (or “Your”)\n\n      means an individual or a legal entity exercising rights under this\n      License. For legal entities, “You” includes any entity that controls, is\n      controlled by, or is under common control with You. For purposes of this\n      definition, “control” means (a) the power, direct or indirect, to cause\n      the direction or management of such entity, whether by contract or\n      otherwise, or (b) ownership of more than fifty percent (50%) of the\n      outstanding shares or beneficial ownership of such entity.\n\n\n2. License Grants and Conditions\n\n2.1. Grants\n\n     Each Contributor hereby grants You a world-wide, royalty-free,\n     non-exclusive license:\n\n     a. under intellectual property rights (other than patent or trademark)\n        Licensable by such Contributor to use, reproduce, make available,\n        modify, display, perform, distribute, and otherwise exploit its\n        Contributions, either on an unmodified basis, with Modifications, or as\n        part of a Larger Work; and\n\n     b. under Patent Claims of such Contributor to make, use, sell, offer for\n        sale, have made, import, and otherwise transfer either its Contributions\n        or its Contributor Version.\n\n2.2. Effective Date\n\n     The licenses granted in Section 2.1 with respect to any Contribution become\n     effective for each Contribution on the date the Contributor first distributes\n     such Contribution.\n\n2.3. Limitations on Grant Scope\n\n     The licenses granted in this Section 2 are the only rights granted under this\n     License. No additional rights or licenses will be implied from the distribution\n     or licensing of Covered Software under this License. Notwithstanding Section\n     2.1(b) above, no patent license is granted by a Contributor:\n\n     a. for any code that a Contributor has removed from Covered Software; or\n\n     b. for infringements caused by: (i) Your and any other third party’s\n        modifications of Covered Software, or (ii) the combination of its\n        Contributions with other software (except as part of its Contributor\n        Version); or\n\n     c. under Patent Claims infringed by Covered Software in the absence of its\n        Contributions.\n\n     This License does not grant any rights in the trademarks, service marks, or\n     logos of any Contributor (except as may be necessary to comply with the\n     notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\n     No Contributor makes additional grants as a result of Your choice to\n     distribute the Covered Software under a subsequent version of this License\n     (see Section 10.2) or under the terms of a Secondary License (if permitted\n     under the terms of Section 3.3).\n\n2.5. Representation\n\n     Each Contributor represents that the Contributor believes its Contributions\n     are its original creation(s) or it has sufficient rights to grant the\n     rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\n     This License is not intended to limit any rights You have under applicable\n     copyright doctrines of fair use, fair dealing, or other equivalents.\n\n2.7. Conditions\n\n     Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in\n     Section 2.1.\n\n\n3. Responsibilities\n\n3.1. Distribution of Source Form\n\n     All distribution of Covered Software in Source Code Form, including any\n     Modifications that You create or to which You contribute, must be under the\n     terms of this License. You must inform recipients that the Source Code Form\n     of the Covered Software is governed by the terms of this License, and how\n     they can obtain a copy of this License. You may not attempt to alter or\n     restrict the recipients’ rights in the Source Code Form.\n\n3.2. Distribution of Executable Form\n\n     If You distribute Covered Software in Executable Form then:\n\n     a. such Covered Software must also be made available in Source Code Form,\n        as described in Section 3.1, and You must inform recipients of the\n        Executable Form how they can obtain a copy of such Source Code Form by\n        reasonable means in a timely manner, at a charge no more than the cost\n        of distribution to the recipient; and\n\n     b. You may distribute such Executable Form under the terms of this License,\n        or sublicense it under different terms, provided that the license for\n        the Executable Form does not attempt to limit or alter the recipients’\n        rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\n     You may create and distribute a Larger Work under terms of Your choice,\n     provided that You also comply with the requirements of this License for the\n     Covered Software. If the Larger Work is a combination of Covered Software\n     with a work governed by one or more Secondary Licenses, and the Covered\n     Software is not Incompatible With Secondary Licenses, this License permits\n     You to additionally distribute such Covered Software under the terms of\n     such Secondary License(s), so that the recipient of the Larger Work may, at\n     their option, further distribute the Covered Software under the terms of\n     either this License or such Secondary License(s).\n\n3.4. Notices\n\n     You may not remove or alter the substance of any license notices (including\n     copyright notices, patent notices, disclaimers of warranty, or limitations\n     of liability) contained within the Source Code Form of the Covered\n     Software, except that You may alter any license notices to the extent\n     required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\n     You may choose to offer, and to charge a fee for, warranty, support,\n     indemnity or liability obligations to one or more recipients of Covered\n     Software. However, You may do so only on Your own behalf, and not on behalf\n     of any Contributor. You must make it absolutely clear that any such\n     warranty, support, indemnity, or liability obligation is offered by You\n     alone, and You hereby agree to indemnify every Contributor for any\n     liability incurred by such Contributor as a result of warranty, support,\n     indemnity or liability terms You offer. You may include additional\n     disclaimers of warranty and limitations of liability specific to any\n     jurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n\n   If it is impossible for You to comply with any of the terms of this License\n   with respect to some or all of the Covered Software due to statute, judicial\n   order, or regulation then You must: (a) comply with the terms of this License\n   to the maximum extent possible; and (b) describe the limitations and the code\n   they affect. Such description must be placed in a text file included with all\n   distributions of the Covered Software under this License. Except to the\n   extent prohibited by statute or regulation, such description must be\n   sufficiently detailed for a recipient of ordinary skill to be able to\n   understand it.\n\n5. Termination\n\n5.1. The rights granted under this License will terminate automatically if You\n     fail to comply with any of its terms. However, if You become compliant,\n     then the rights granted under this License from a particular Contributor\n     are reinstated (a) provisionally, unless and until such Contributor\n     explicitly and finally terminates Your grants, and (b) on an ongoing basis,\n     if such Contributor fails to notify You of the non-compliance by some\n     reasonable means prior to 60 days after You have come back into compliance.\n     Moreover, Your grants from a particular Contributor are reinstated on an\n     ongoing basis if such Contributor notifies You of the non-compliance by\n     some reasonable means, this is the first time You have received notice of\n     non-compliance with this License from such Contributor, and You become\n     compliant prior to 30 days after Your receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\n     infringement claim (excluding declaratory judgment actions, counter-claims,\n     and cross-claims) alleging that a Contributor Version directly or\n     indirectly infringes any patent, then the rights granted to You by any and\n     all Contributors for the Covered Software under Section 2.1 of this License\n     shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user\n     license agreements (excluding distributors and resellers) which have been\n     validly granted by You or Your distributors under this License prior to\n     termination shall survive termination.\n\n6. Disclaimer of Warranty\n\n   Covered Software is provided under this License on an “as is” basis, without\n   warranty of any kind, either expressed, implied, or statutory, including,\n   without limitation, warranties that the Covered Software is free of defects,\n   merchantable, fit for a particular purpose or non-infringing. The entire\n   risk as to the quality and performance of the Covered Software is with You.\n   Should any Covered Software prove defective in any respect, You (not any\n   Contributor) assume the cost of any necessary servicing, repair, or\n   correction. This disclaimer of warranty constitutes an essential part of this\n   License. No use of  any Covered Software is authorized under this License\n   except under this disclaimer.\n\n7. Limitation of Liability\n\n   Under no circumstances and under no legal theory, whether tort (including\n   negligence), contract, or otherwise, shall any Contributor, or anyone who\n   distributes Covered Software as permitted above, be liable to You for any\n   direct, indirect, special, incidental, or consequential damages of any\n   character including, without limitation, damages for lost profits, loss of\n   goodwill, work stoppage, computer failure or malfunction, or any and all\n   other commercial damages or losses, even if such party shall have been\n   informed of the possibility of such damages. This limitation of liability\n   shall not apply to liability for death or personal injury resulting from such\n   party’s negligence to the extent applicable law prohibits such limitation.\n   Some jurisdictions do not allow the exclusion or limitation of incidental or\n   consequential damages, so this exclusion and limitation may not apply to You.\n\n8. Litigation\n\n   Any litigation relating to this License may be brought only in the courts of\n   a jurisdiction where the defendant maintains its principal place of business\n   and such litigation shall be governed by laws of that jurisdiction, without\n   reference to its conflict-of-law provisions. Nothing in this Section shall\n   prevent a party’s ability to bring cross-claims or counter-claims.\n\n9. Miscellaneous\n\n   This License represents the complete agreement concerning the subject matter\n   hereof. If any provision of this License is held to be unenforceable, such\n   provision shall be reformed only to the extent necessary to make it\n   enforceable. Any law or regulation which provides that the language of a\n   contract shall be construed against the drafter shall not be used to construe\n   this License against a Contributor.\n\n\n10. Versions of the License\n\n10.1. New Versions\n\n      Mozilla Foundation is the license steward. Except as provided in Section\n      10.3, no one other than the license steward has the right to modify or\n      publish new versions of this License. Each version will be given a\n      distinguishing version number.\n\n10.2. Effect of New Versions\n\n      You may distribute the Covered Software under the terms of the version of\n      the License under which You originally received the Covered Software, or\n      under the terms of any subsequent version published by the license\n      steward.\n\n10.3. Modified Versions\n\n      If you create software not governed by this License, and you want to\n      create a new license for such software, you may create and use a modified\n      version of this License if you rename the license and remove any\n      references to the name of the license steward (except to note that such\n      modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses\n      If You choose to distribute Source Code Form that is Incompatible With\n      Secondary Licenses under the terms of this version of the License, the\n      notice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n\n      This Source Code Form is subject to the\n      terms of the Mozilla Public License, v.\n      2.0. If a copy of the MPL was not\n      distributed with this file, You can\n      obtain one at\n      http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular file, then\nYou may include the notice in a location (such as a LICENSE file in a relevant\ndirectory) where a recipient would be likely to look for such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - “Incompatible With Secondary Licenses” Notice\n\n      This Source Code Form is “Incompatible\n      With Secondary Licenses”, as defined by\n      the Mozilla Public License, v. 2.0.\n\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/Makefile",
    "content": "TEST?=./...\r\n\r\ndefault: test\r\n\r\nfmt: generate\r\n\tgo fmt ./...\r\n\r\ntest: generate\r\n\tgo get -t ./...\r\n\tgo test $(TEST) $(TESTARGS)\r\n\r\ngenerate:\r\n\tgo generate ./...\r\n\r\nupdatedeps:\r\n\tgo get -u golang.org/x/tools/cmd/stringer\r\n\r\n.PHONY: default generate test updatedeps\r\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/README.md",
    "content": "# HCL\n\n[![GoDoc](https://godoc.org/github.com/hashicorp/hcl?status.png)](https://godoc.org/github.com/hashicorp/hcl) [![Build Status](https://travis-ci.org/hashicorp/hcl.svg?branch=master)](https://travis-ci.org/hashicorp/hcl)\n\nHCL (HashiCorp Configuration Language) is a configuration language built\nby HashiCorp. The goal of HCL is to build a structured configuration language\nthat is both human and machine friendly for use with command-line tools, but\nspecifically targeted towards DevOps tools, servers, etc.\n\nHCL is also fully JSON compatible. That is, JSON can be used as completely\nvalid input to a system expecting HCL. This helps makes systems\ninteroperable with other systems.\n\nHCL is heavily inspired by\n[libucl](https://github.com/vstakhov/libucl),\nnginx configuration, and others similar.\n\n## Why?\n\nA common question when viewing HCL is to ask the question: why not\nJSON, YAML, etc.?\n\nPrior to HCL, the tools we built at [HashiCorp](http://www.hashicorp.com)\nused a variety of configuration languages from full programming languages\nsuch as Ruby to complete data structure languages such as JSON. What we\nlearned is that some people wanted human-friendly configuration languages\nand some people wanted machine-friendly languages.\n\nJSON fits a nice balance in this, but is fairly verbose and most\nimportantly doesn't support comments. With YAML, we found that beginners\nhad a really hard time determining what the actual structure was, and\nended up guessing more often than not whether to use a hyphen, colon, etc.\nin order to represent some configuration key.\n\nFull programming languages such as Ruby enable complex behavior\na configuration language shouldn't usually allow, and also forces\npeople to learn some set of Ruby.\n\nBecause of this, we decided to create our own configuration language\nthat is JSON-compatible. Our configuration language (HCL) is designed\nto be written and modified by humans. The API for HCL allows JSON\nas an input so that it is also machine-friendly (machines can generate\nJSON instead of trying to generate HCL).\n\nOur goal with HCL is not to alienate other configuration languages.\nIt is instead to provide HCL as a specialized language for our tools,\nand JSON as the interoperability layer.\n\n## Syntax\n\nFor a complete grammar, please see the parser itself. A high-level overview\nof the syntax and grammar is listed here.\n\n  * Single line comments start with `#` or `//`\n\n  * Multi-line comments are wrapped in `/*` and `*/`. Nested block comments\n    are not allowed. A multi-line comment (also known as a block comment)\n    terminates at the first `*/` found.\n\n  * Values are assigned with the syntax `key = value` (whitespace doesn't\n    matter). The value can be any primitive: a string, number, boolean,\n    object, or list.\n\n  * Strings are double-quoted and can contain any UTF-8 characters.\n    Example: `\"Hello, World\"`\n\n  * Multi-line strings start with `<<EOF` at the end of a line, and end\n    with `EOF` on its own line ([here documents](https://en.wikipedia.org/wiki/Here_document)).\n    Any text may be used in place of `EOF`. Example:\n```\n<<FOO\nhello\nworld\nFOO\n```\n\n  * Numbers are assumed to be base 10. If you prefix a number with 0x,\n    it is treated as a hexadecimal. If it is prefixed with 0, it is\n    treated as an octal. Numbers can be in scientific notation: \"1e10\".\n\n  * Boolean values: `true`, `false`\n\n  * Arrays can be made by wrapping it in `[]`. Example:\n    `[\"foo\", \"bar\", 42]`. Arrays can contain primitives,\n    other arrays, and objects. As an alternative, lists\n    of objects can be created with repeated blocks, using\n    this structure:\n\n    ```hcl\n    service {\n        key = \"value\"\n    }\n\n    service {\n        key = \"value\"\n    }\n    ```\n\nObjects and nested objects are created using the structure shown below:\n\n```\nvariable \"ami\" {\n    description = \"the AMI to use\"\n}\n```\nThis would be equivalent to the following json:\n``` json\n{\n  \"variable\": {\n      \"ami\": {\n          \"description\": \"the AMI to use\"\n        }\n    }\n}\n```\n\n## Thanks\n\nThanks to:\n\n  * [@vstakhov](https://github.com/vstakhov) - The original libucl parser\n    and syntax that HCL was based off of.\n\n  * [@fatih](https://github.com/fatih) - The rewritten HCL parser\n    in pure Go (no goyacc) and support for a printer.\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/appveyor.yml",
    "content": "version: \"build-{branch}-{build}\"\nimage: Visual Studio 2015\nclone_folder: c:\\gopath\\src\\github.com\\hashicorp\\hcl\nenvironment:\n  GOPATH: c:\\gopath\ninit:\n  - git config --global core.autocrlf false\ninstall:\n- cmd: >-\n    echo %Path%\n\n    go version\n\n    go env\n\n    go get -t ./...\n\nbuild_script:\n- cmd: go test -v ./...\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/decoder.go",
    "content": "package hcl\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"reflect\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n\n\t\"github.com/hashicorp/hcl/hcl/ast\"\n\t\"github.com/hashicorp/hcl/hcl/parser\"\n\t\"github.com/hashicorp/hcl/hcl/token\"\n)\n\n// This is the tag to use with structures to have settings for HCL\nconst tagName = \"hcl\"\n\nvar (\n\t// nodeType holds a reference to the type of ast.Node\n\tnodeType reflect.Type = findNodeType()\n)\n\n// Unmarshal accepts a byte slice as input and writes the\n// data to the value pointed to by v.\nfunc Unmarshal(bs []byte, v interface{}) error {\n\troot, err := parse(bs)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn DecodeObject(v, root)\n}\n\n// Decode reads the given input and decodes it into the structure\n// given by `out`.\nfunc Decode(out interface{}, in string) error {\n\tobj, err := Parse(in)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn DecodeObject(out, obj)\n}\n\n// DecodeObject is a lower-level version of Decode. It decodes a\n// raw Object into the given output.\nfunc DecodeObject(out interface{}, n ast.Node) error {\n\tval := reflect.ValueOf(out)\n\tif val.Kind() != reflect.Ptr {\n\t\treturn errors.New(\"result must be a pointer\")\n\t}\n\n\t// If we have the file, we really decode the root node\n\tif f, ok := n.(*ast.File); ok {\n\t\tn = f.Node\n\t}\n\n\tvar d decoder\n\treturn d.decode(\"root\", n, val.Elem())\n}\n\ntype decoder struct {\n\tstack []reflect.Kind\n}\n\nfunc (d *decoder) decode(name string, node ast.Node, result reflect.Value) error {\n\tk := result\n\n\t// If we have an interface with a valid value, we use that\n\t// for the check.\n\tif result.Kind() == reflect.Interface {\n\t\telem := result.Elem()\n\t\tif elem.IsValid() {\n\t\t\tk = elem\n\t\t}\n\t}\n\n\t// Push current onto stack unless it is an interface.\n\tif k.Kind() != reflect.Interface {\n\t\td.stack = append(d.stack, k.Kind())\n\n\t\t// Schedule a pop\n\t\tdefer func() {\n\t\t\td.stack = d.stack[:len(d.stack)-1]\n\t\t}()\n\t}\n\n\tswitch k.Kind() {\n\tcase reflect.Bool:\n\t\treturn d.decodeBool(name, node, result)\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn d.decodeFloat(name, node, result)\n\tcase reflect.Int, reflect.Int32, reflect.Int64:\n\t\treturn d.decodeInt(name, node, result)\n\tcase reflect.Interface:\n\t\t// When we see an interface, we make our own thing\n\t\treturn d.decodeInterface(name, node, result)\n\tcase reflect.Map:\n\t\treturn d.decodeMap(name, node, result)\n\tcase reflect.Ptr:\n\t\treturn d.decodePtr(name, node, result)\n\tcase reflect.Slice:\n\t\treturn d.decodeSlice(name, node, result)\n\tcase reflect.String:\n\t\treturn d.decodeString(name, node, result)\n\tcase reflect.Struct:\n\t\treturn d.decodeStruct(name, node, result)\n\tdefault:\n\t\treturn &parser.PosError{\n\t\t\tPos: node.Pos(),\n\t\t\tErr: fmt.Errorf(\"%s: unknown kind to decode into: %s\", name, k.Kind()),\n\t\t}\n\t}\n}\n\nfunc (d *decoder) decodeBool(name string, node ast.Node, result reflect.Value) error {\n\tswitch n := node.(type) {\n\tcase *ast.LiteralType:\n\t\tif n.Token.Type == token.BOOL {\n\t\t\tv, err := strconv.ParseBool(n.Token.Text)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tresult.Set(reflect.ValueOf(v))\n\t\t\treturn nil\n\t\t}\n\t}\n\n\treturn &parser.PosError{\n\t\tPos: node.Pos(),\n\t\tErr: fmt.Errorf(\"%s: unknown type %T\", name, node),\n\t}\n}\n\nfunc (d *decoder) decodeFloat(name string, node ast.Node, result reflect.Value) error {\n\tswitch n := node.(type) {\n\tcase *ast.LiteralType:\n\t\tif n.Token.Type == token.FLOAT || n.Token.Type == token.NUMBER {\n\t\t\tv, err := strconv.ParseFloat(n.Token.Text, 64)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tresult.Set(reflect.ValueOf(v).Convert(result.Type()))\n\t\t\treturn nil\n\t\t}\n\t}\n\n\treturn &parser.PosError{\n\t\tPos: node.Pos(),\n\t\tErr: fmt.Errorf(\"%s: unknown type %T\", name, node),\n\t}\n}\n\nfunc (d *decoder) decodeInt(name string, node ast.Node, result reflect.Value) error {\n\tswitch n := node.(type) {\n\tcase *ast.LiteralType:\n\t\tswitch n.Token.Type {\n\t\tcase token.NUMBER:\n\t\t\tv, err := strconv.ParseInt(n.Token.Text, 0, 0)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tif result.Kind() == reflect.Interface {\n\t\t\t\tresult.Set(reflect.ValueOf(int(v)))\n\t\t\t} else {\n\t\t\t\tresult.SetInt(v)\n\t\t\t}\n\t\t\treturn nil\n\t\tcase token.STRING:\n\t\t\tv, err := strconv.ParseInt(n.Token.Value().(string), 0, 0)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tif result.Kind() == reflect.Interface {\n\t\t\t\tresult.Set(reflect.ValueOf(int(v)))\n\t\t\t} else {\n\t\t\t\tresult.SetInt(v)\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\t}\n\n\treturn &parser.PosError{\n\t\tPos: node.Pos(),\n\t\tErr: fmt.Errorf(\"%s: unknown type %T\", name, node),\n\t}\n}\n\nfunc (d *decoder) decodeInterface(name string, node ast.Node, result reflect.Value) error {\n\t// When we see an ast.Node, we retain the value to enable deferred decoding.\n\t// Very useful in situations where we want to preserve ast.Node information\n\t// like Pos\n\tif result.Type() == nodeType && result.CanSet() {\n\t\tresult.Set(reflect.ValueOf(node))\n\t\treturn nil\n\t}\n\n\tvar set reflect.Value\n\tredecode := true\n\n\t// For testing types, ObjectType should just be treated as a list. We\n\t// set this to a temporary var because we want to pass in the real node.\n\ttestNode := node\n\tif ot, ok := node.(*ast.ObjectType); ok {\n\t\ttestNode = ot.List\n\t}\n\n\tswitch n := testNode.(type) {\n\tcase *ast.ObjectList:\n\t\t// If we're at the root or we're directly within a slice, then we\n\t\t// decode objects into map[string]interface{}, otherwise we decode\n\t\t// them into lists.\n\t\tif len(d.stack) == 0 || d.stack[len(d.stack)-1] == reflect.Slice {\n\t\t\tvar temp map[string]interface{}\n\t\t\ttempVal := reflect.ValueOf(temp)\n\t\t\tresult := reflect.MakeMap(\n\t\t\t\treflect.MapOf(\n\t\t\t\t\treflect.TypeOf(\"\"),\n\t\t\t\t\ttempVal.Type().Elem()))\n\n\t\t\tset = result\n\t\t} else {\n\t\t\tvar temp []map[string]interface{}\n\t\t\ttempVal := reflect.ValueOf(temp)\n\t\t\tresult := reflect.MakeSlice(\n\t\t\t\treflect.SliceOf(tempVal.Type().Elem()), 0, len(n.Items))\n\t\t\tset = result\n\t\t}\n\tcase *ast.ObjectType:\n\t\t// If we're at the root or we're directly within a slice, then we\n\t\t// decode objects into map[string]interface{}, otherwise we decode\n\t\t// them into lists.\n\t\tif len(d.stack) == 0 || d.stack[len(d.stack)-1] == reflect.Slice {\n\t\t\tvar temp map[string]interface{}\n\t\t\ttempVal := reflect.ValueOf(temp)\n\t\t\tresult := reflect.MakeMap(\n\t\t\t\treflect.MapOf(\n\t\t\t\t\treflect.TypeOf(\"\"),\n\t\t\t\t\ttempVal.Type().Elem()))\n\n\t\t\tset = result\n\t\t} else {\n\t\t\tvar temp []map[string]interface{}\n\t\t\ttempVal := reflect.ValueOf(temp)\n\t\t\tresult := reflect.MakeSlice(\n\t\t\t\treflect.SliceOf(tempVal.Type().Elem()), 0, 1)\n\t\t\tset = result\n\t\t}\n\tcase *ast.ListType:\n\t\tvar temp []interface{}\n\t\ttempVal := reflect.ValueOf(temp)\n\t\tresult := reflect.MakeSlice(\n\t\t\treflect.SliceOf(tempVal.Type().Elem()), 0, 0)\n\t\tset = result\n\tcase *ast.LiteralType:\n\t\tswitch n.Token.Type {\n\t\tcase token.BOOL:\n\t\t\tvar result bool\n\t\t\tset = reflect.Indirect(reflect.New(reflect.TypeOf(result)))\n\t\tcase token.FLOAT:\n\t\t\tvar result float64\n\t\t\tset = reflect.Indirect(reflect.New(reflect.TypeOf(result)))\n\t\tcase token.NUMBER:\n\t\t\tvar result int\n\t\t\tset = reflect.Indirect(reflect.New(reflect.TypeOf(result)))\n\t\tcase token.STRING, token.HEREDOC:\n\t\t\tset = reflect.Indirect(reflect.New(reflect.TypeOf(\"\")))\n\t\tdefault:\n\t\t\treturn &parser.PosError{\n\t\t\t\tPos: node.Pos(),\n\t\t\t\tErr: fmt.Errorf(\"%s: cannot decode into interface: %T\", name, node),\n\t\t\t}\n\t\t}\n\tdefault:\n\t\treturn fmt.Errorf(\n\t\t\t\"%s: cannot decode into interface: %T\",\n\t\t\tname, node)\n\t}\n\n\t// Set the result to what its supposed to be, then reset\n\t// result so we don't reflect into this method anymore.\n\tresult.Set(set)\n\n\tif redecode {\n\t\t// Revisit the node so that we can use the newly instantiated\n\t\t// thing and populate it.\n\t\tif err := d.decode(name, node, result); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc (d *decoder) decodeMap(name string, node ast.Node, result reflect.Value) error {\n\tif item, ok := node.(*ast.ObjectItem); ok {\n\t\tnode = &ast.ObjectList{Items: []*ast.ObjectItem{item}}\n\t}\n\n\tif ot, ok := node.(*ast.ObjectType); ok {\n\t\tnode = ot.List\n\t}\n\n\tn, ok := node.(*ast.ObjectList)\n\tif !ok {\n\t\treturn &parser.PosError{\n\t\t\tPos: node.Pos(),\n\t\t\tErr: fmt.Errorf(\"%s: not an object type for map (%T)\", name, node),\n\t\t}\n\t}\n\n\t// If we have an interface, then we can address the interface,\n\t// but not the slice itself, so get the element but set the interface\n\tset := result\n\tif result.Kind() == reflect.Interface {\n\t\tresult = result.Elem()\n\t}\n\n\tresultType := result.Type()\n\tresultElemType := resultType.Elem()\n\tresultKeyType := resultType.Key()\n\tif resultKeyType.Kind() != reflect.String {\n\t\treturn &parser.PosError{\n\t\t\tPos: node.Pos(),\n\t\t\tErr: fmt.Errorf(\"%s: map must have string keys\", name),\n\t\t}\n\t}\n\n\t// Make a map if it is nil\n\tresultMap := result\n\tif result.IsNil() {\n\t\tresultMap = reflect.MakeMap(\n\t\t\treflect.MapOf(resultKeyType, resultElemType))\n\t}\n\n\t// Go through each element and decode it.\n\tdone := make(map[string]struct{})\n\tfor _, item := range n.Items {\n\t\tif item.Val == nil {\n\t\t\tcontinue\n\t\t}\n\n\t\t// github.com/hashicorp/terraform/issue/5740\n\t\tif len(item.Keys) == 0 {\n\t\t\treturn &parser.PosError{\n\t\t\t\tPos: node.Pos(),\n\t\t\t\tErr: fmt.Errorf(\"%s: map must have string keys\", name),\n\t\t\t}\n\t\t}\n\n\t\t// Get the key we're dealing with, which is the first item\n\t\tkeyStr := item.Keys[0].Token.Value().(string)\n\n\t\t// If we've already processed this key, then ignore it\n\t\tif _, ok := done[keyStr]; ok {\n\t\t\tcontinue\n\t\t}\n\n\t\t// Determine the value. If we have more than one key, then we\n\t\t// get the objectlist of only these keys.\n\t\titemVal := item.Val\n\t\tif len(item.Keys) > 1 {\n\t\t\titemVal = n.Filter(keyStr)\n\t\t\tdone[keyStr] = struct{}{}\n\t\t}\n\n\t\t// Make the field name\n\t\tfieldName := fmt.Sprintf(\"%s.%s\", name, keyStr)\n\n\t\t// Get the key/value as reflection values\n\t\tkey := reflect.ValueOf(keyStr)\n\t\tval := reflect.Indirect(reflect.New(resultElemType))\n\n\t\t// If we have a pre-existing value in the map, use that\n\t\toldVal := resultMap.MapIndex(key)\n\t\tif oldVal.IsValid() {\n\t\t\tval.Set(oldVal)\n\t\t}\n\n\t\t// Decode!\n\t\tif err := d.decode(fieldName, itemVal, val); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\t// Set the value on the map\n\t\tresultMap.SetMapIndex(key, val)\n\t}\n\n\t// Set the final map if we can\n\tset.Set(resultMap)\n\treturn nil\n}\n\nfunc (d *decoder) decodePtr(name string, node ast.Node, result reflect.Value) error {\n\t// Create an element of the concrete (non pointer) type and decode\n\t// into that. Then set the value of the pointer to this type.\n\tresultType := result.Type()\n\tresultElemType := resultType.Elem()\n\tval := reflect.New(resultElemType)\n\tif err := d.decode(name, node, reflect.Indirect(val)); err != nil {\n\t\treturn err\n\t}\n\n\tresult.Set(val)\n\treturn nil\n}\n\nfunc (d *decoder) decodeSlice(name string, node ast.Node, result reflect.Value) error {\n\t// If we have an interface, then we can address the interface,\n\t// but not the slice itself, so get the element but set the interface\n\tset := result\n\tif result.Kind() == reflect.Interface {\n\t\tresult = result.Elem()\n\t}\n\t// Create the slice if it isn't nil\n\tresultType := result.Type()\n\tresultElemType := resultType.Elem()\n\tif result.IsNil() {\n\t\tresultSliceType := reflect.SliceOf(resultElemType)\n\t\tresult = reflect.MakeSlice(\n\t\t\tresultSliceType, 0, 0)\n\t}\n\n\t// Figure out the items we'll be copying into the slice\n\tvar items []ast.Node\n\tswitch n := node.(type) {\n\tcase *ast.ObjectList:\n\t\titems = make([]ast.Node, len(n.Items))\n\t\tfor i, item := range n.Items {\n\t\t\titems[i] = item\n\t\t}\n\tcase *ast.ObjectType:\n\t\titems = []ast.Node{n}\n\tcase *ast.ListType:\n\t\titems = n.List\n\tdefault:\n\t\treturn &parser.PosError{\n\t\t\tPos: node.Pos(),\n\t\t\tErr: fmt.Errorf(\"unknown slice type: %T\", node),\n\t\t}\n\t}\n\n\tfor i, item := range items {\n\t\tfieldName := fmt.Sprintf(\"%s[%d]\", name, i)\n\n\t\t// Decode\n\t\tval := reflect.Indirect(reflect.New(resultElemType))\n\n\t\t// if item is an object that was decoded from ambiguous JSON and\n\t\t// flattened, make sure it's expanded if it needs to decode into a\n\t\t// defined structure.\n\t\titem := expandObject(item, val)\n\n\t\tif err := d.decode(fieldName, item, val); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\t// Append it onto the slice\n\t\tresult = reflect.Append(result, val)\n\t}\n\n\tset.Set(result)\n\treturn nil\n}\n\n// expandObject detects if an ambiguous JSON object was flattened to a List which\n// should be decoded into a struct, and expands the ast to properly deocode.\nfunc expandObject(node ast.Node, result reflect.Value) ast.Node {\n\titem, ok := node.(*ast.ObjectItem)\n\tif !ok {\n\t\treturn node\n\t}\n\n\telemType := result.Type()\n\n\t// our target type must be a struct\n\tswitch elemType.Kind() {\n\tcase reflect.Ptr:\n\t\tswitch elemType.Elem().Kind() {\n\t\tcase reflect.Struct:\n\t\t\t//OK\n\t\tdefault:\n\t\t\treturn node\n\t\t}\n\tcase reflect.Struct:\n\t\t//OK\n\tdefault:\n\t\treturn node\n\t}\n\n\t// A list value will have a key and field name. If it had more fields,\n\t// it wouldn't have been flattened.\n\tif len(item.Keys) != 2 {\n\t\treturn node\n\t}\n\n\tkeyToken := item.Keys[0].Token\n\titem.Keys = item.Keys[1:]\n\n\t// we need to un-flatten the ast enough to decode\n\tnewNode := &ast.ObjectItem{\n\t\tKeys: []*ast.ObjectKey{\n\t\t\t&ast.ObjectKey{\n\t\t\t\tToken: keyToken,\n\t\t\t},\n\t\t},\n\t\tVal: &ast.ObjectType{\n\t\t\tList: &ast.ObjectList{\n\t\t\t\tItems: []*ast.ObjectItem{item},\n\t\t\t},\n\t\t},\n\t}\n\n\treturn newNode\n}\n\nfunc (d *decoder) decodeString(name string, node ast.Node, result reflect.Value) error {\n\tswitch n := node.(type) {\n\tcase *ast.LiteralType:\n\t\tswitch n.Token.Type {\n\t\tcase token.NUMBER:\n\t\t\tresult.Set(reflect.ValueOf(n.Token.Text).Convert(result.Type()))\n\t\t\treturn nil\n\t\tcase token.STRING, token.HEREDOC:\n\t\t\tresult.Set(reflect.ValueOf(n.Token.Value()).Convert(result.Type()))\n\t\t\treturn nil\n\t\t}\n\t}\n\n\treturn &parser.PosError{\n\t\tPos: node.Pos(),\n\t\tErr: fmt.Errorf(\"%s: unknown type for string %T\", name, node),\n\t}\n}\n\nfunc (d *decoder) decodeStruct(name string, node ast.Node, result reflect.Value) error {\n\tvar item *ast.ObjectItem\n\tif it, ok := node.(*ast.ObjectItem); ok {\n\t\titem = it\n\t\tnode = it.Val\n\t}\n\n\tif ot, ok := node.(*ast.ObjectType); ok {\n\t\tnode = ot.List\n\t}\n\n\t// Handle the special case where the object itself is a literal. Previously\n\t// the yacc parser would always ensure top-level elements were arrays. The new\n\t// parser does not make the same guarantees, thus we need to convert any\n\t// top-level literal elements into a list.\n\tif _, ok := node.(*ast.LiteralType); ok && item != nil {\n\t\tnode = &ast.ObjectList{Items: []*ast.ObjectItem{item}}\n\t}\n\n\tlist, ok := node.(*ast.ObjectList)\n\tif !ok {\n\t\treturn &parser.PosError{\n\t\t\tPos: node.Pos(),\n\t\t\tErr: fmt.Errorf(\"%s: not an object type for struct (%T)\", name, node),\n\t\t}\n\t}\n\n\t// This slice will keep track of all the structs we'll be decoding.\n\t// There can be more than one struct if there are embedded structs\n\t// that are squashed.\n\tstructs := make([]reflect.Value, 1, 5)\n\tstructs[0] = result\n\n\t// Compile the list of all the fields that we're going to be decoding\n\t// from all the structs.\n\ttype field struct {\n\t\tfield reflect.StructField\n\t\tval   reflect.Value\n\t}\n\tfields := []field{}\n\tfor len(structs) > 0 {\n\t\tstructVal := structs[0]\n\t\tstructs = structs[1:]\n\n\t\tstructType := structVal.Type()\n\t\tfor i := 0; i < structType.NumField(); i++ {\n\t\t\tfieldType := structType.Field(i)\n\t\t\ttagParts := strings.Split(fieldType.Tag.Get(tagName), \",\")\n\n\t\t\t// Ignore fields with tag name \"-\"\n\t\t\tif tagParts[0] == \"-\" {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tif fieldType.Anonymous {\n\t\t\t\tfieldKind := fieldType.Type.Kind()\n\t\t\t\tif fieldKind != reflect.Struct {\n\t\t\t\t\treturn &parser.PosError{\n\t\t\t\t\t\tPos: node.Pos(),\n\t\t\t\t\t\tErr: fmt.Errorf(\"%s: unsupported type to struct: %s\",\n\t\t\t\t\t\t\tfieldType.Name, fieldKind),\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// We have an embedded field. We \"squash\" the fields down\n\t\t\t\t// if specified in the tag.\n\t\t\t\tsquash := false\n\t\t\t\tfor _, tag := range tagParts[1:] {\n\t\t\t\t\tif tag == \"squash\" {\n\t\t\t\t\t\tsquash = true\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif squash {\n\t\t\t\t\tstructs = append(\n\t\t\t\t\t\tstructs, result.FieldByName(fieldType.Name))\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Normal struct field, store it away\n\t\t\tfields = append(fields, field{fieldType, structVal.Field(i)})\n\t\t}\n\t}\n\n\tusedKeys := make(map[string]struct{})\n\tdecodedFields := make([]string, 0, len(fields))\n\tdecodedFieldsVal := make([]reflect.Value, 0)\n\tunusedKeysVal := make([]reflect.Value, 0)\n\tfor _, f := range fields {\n\t\tfield, fieldValue := f.field, f.val\n\t\tif !fieldValue.IsValid() {\n\t\t\t// This should never happen\n\t\t\tpanic(\"field is not valid\")\n\t\t}\n\n\t\t// If we can't set the field, then it is unexported or something,\n\t\t// and we just continue onwards.\n\t\tif !fieldValue.CanSet() {\n\t\t\tcontinue\n\t\t}\n\n\t\tfieldName := field.Name\n\n\t\ttagValue := field.Tag.Get(tagName)\n\t\ttagParts := strings.SplitN(tagValue, \",\", 2)\n\t\tif len(tagParts) >= 2 {\n\t\t\tswitch tagParts[1] {\n\t\t\tcase \"decodedFields\":\n\t\t\t\tdecodedFieldsVal = append(decodedFieldsVal, fieldValue)\n\t\t\t\tcontinue\n\t\t\tcase \"key\":\n\t\t\t\tif item == nil {\n\t\t\t\t\treturn &parser.PosError{\n\t\t\t\t\t\tPos: node.Pos(),\n\t\t\t\t\t\tErr: fmt.Errorf(\"%s: %s asked for 'key', impossible\",\n\t\t\t\t\t\t\tname, fieldName),\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tfieldValue.SetString(item.Keys[0].Token.Value().(string))\n\t\t\t\tcontinue\n\t\t\tcase \"unusedKeys\":\n\t\t\t\tunusedKeysVal = append(unusedKeysVal, fieldValue)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\tif tagParts[0] != \"\" {\n\t\t\tfieldName = tagParts[0]\n\t\t}\n\n\t\t// Determine the element we'll use to decode. If it is a single\n\t\t// match (only object with the field), then we decode it exactly.\n\t\t// If it is a prefix match, then we decode the matches.\n\t\tfilter := list.Filter(fieldName)\n\n\t\tprefixMatches := filter.Children()\n\t\tmatches := filter.Elem()\n\t\tif len(matches.Items) == 0 && len(prefixMatches.Items) == 0 {\n\t\t\tcontinue\n\t\t}\n\n\t\t// Track the used key\n\t\tusedKeys[fieldName] = struct{}{}\n\n\t\t// Create the field name and decode. We range over the elements\n\t\t// because we actually want the value.\n\t\tfieldName = fmt.Sprintf(\"%s.%s\", name, fieldName)\n\t\tif len(prefixMatches.Items) > 0 {\n\t\t\tif err := d.decode(fieldName, prefixMatches, fieldValue); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tfor _, match := range matches.Items {\n\t\t\tvar decodeNode ast.Node = match.Val\n\t\t\tif ot, ok := decodeNode.(*ast.ObjectType); ok {\n\t\t\t\tdecodeNode = &ast.ObjectList{Items: ot.List.Items}\n\t\t\t}\n\n\t\t\tif err := d.decode(fieldName, decodeNode, fieldValue); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\n\t\tdecodedFields = append(decodedFields, field.Name)\n\t}\n\n\tif len(decodedFieldsVal) > 0 {\n\t\t// Sort it so that it is deterministic\n\t\tsort.Strings(decodedFields)\n\n\t\tfor _, v := range decodedFieldsVal {\n\t\t\tv.Set(reflect.ValueOf(decodedFields))\n\t\t}\n\t}\n\n\treturn nil\n}\n\n// findNodeType returns the type of ast.Node\nfunc findNodeType() reflect.Type {\n\tvar nodeContainer struct {\n\t\tNode ast.Node\n\t}\n\tvalue := reflect.ValueOf(nodeContainer).FieldByName(\"Node\")\n\treturn value.Type()\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/go.mod",
    "content": "module github.com/hashicorp/hcl\n\nrequire github.com/davecgh/go-spew v1.1.1\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/go.sum",
    "content": "github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=\ngithub.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/ast/ast.go",
    "content": "// Package ast declares the types used to represent syntax trees for HCL\n// (HashiCorp Configuration Language)\npackage ast\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/hashicorp/hcl/hcl/token\"\n)\n\n// Node is an element in the abstract syntax tree.\ntype Node interface {\n\tnode()\n\tPos() token.Pos\n}\n\nfunc (File) node()         {}\nfunc (ObjectList) node()   {}\nfunc (ObjectKey) node()    {}\nfunc (ObjectItem) node()   {}\nfunc (Comment) node()      {}\nfunc (CommentGroup) node() {}\nfunc (ObjectType) node()   {}\nfunc (LiteralType) node()  {}\nfunc (ListType) node()     {}\n\n// File represents a single HCL file\ntype File struct {\n\tNode     Node            // usually a *ObjectList\n\tComments []*CommentGroup // list of all comments in the source\n}\n\nfunc (f *File) Pos() token.Pos {\n\treturn f.Node.Pos()\n}\n\n// ObjectList represents a list of ObjectItems. An HCL file itself is an\n// ObjectList.\ntype ObjectList struct {\n\tItems []*ObjectItem\n}\n\nfunc (o *ObjectList) Add(item *ObjectItem) {\n\to.Items = append(o.Items, item)\n}\n\n// Filter filters out the objects with the given key list as a prefix.\n//\n// The returned list of objects contain ObjectItems where the keys have\n// this prefix already stripped off. This might result in objects with\n// zero-length key lists if they have no children.\n//\n// If no matches are found, an empty ObjectList (non-nil) is returned.\nfunc (o *ObjectList) Filter(keys ...string) *ObjectList {\n\tvar result ObjectList\n\tfor _, item := range o.Items {\n\t\t// If there aren't enough keys, then ignore this\n\t\tif len(item.Keys) < len(keys) {\n\t\t\tcontinue\n\t\t}\n\n\t\tmatch := true\n\t\tfor i, key := range item.Keys[:len(keys)] {\n\t\t\tkey := key.Token.Value().(string)\n\t\t\tif key != keys[i] && !strings.EqualFold(key, keys[i]) {\n\t\t\t\tmatch = false\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif !match {\n\t\t\tcontinue\n\t\t}\n\n\t\t// Strip off the prefix from the children\n\t\tnewItem := *item\n\t\tnewItem.Keys = newItem.Keys[len(keys):]\n\t\tresult.Add(&newItem)\n\t}\n\n\treturn &result\n}\n\n// Children returns further nested objects (key length > 0) within this\n// ObjectList. This should be used with Filter to get at child items.\nfunc (o *ObjectList) Children() *ObjectList {\n\tvar result ObjectList\n\tfor _, item := range o.Items {\n\t\tif len(item.Keys) > 0 {\n\t\t\tresult.Add(item)\n\t\t}\n\t}\n\n\treturn &result\n}\n\n// Elem returns items in the list that are direct element assignments\n// (key length == 0). This should be used with Filter to get at elements.\nfunc (o *ObjectList) Elem() *ObjectList {\n\tvar result ObjectList\n\tfor _, item := range o.Items {\n\t\tif len(item.Keys) == 0 {\n\t\t\tresult.Add(item)\n\t\t}\n\t}\n\n\treturn &result\n}\n\nfunc (o *ObjectList) Pos() token.Pos {\n\t// always returns the uninitiliazed position\n\treturn o.Items[0].Pos()\n}\n\n// ObjectItem represents a HCL Object Item. An item is represented with a key\n// (or keys). It can be an assignment or an object (both normal and nested)\ntype ObjectItem struct {\n\t// keys is only one length long if it's of type assignment. If it's a\n\t// nested object it can be larger than one. In that case \"assign\" is\n\t// invalid as there is no assignments for a nested object.\n\tKeys []*ObjectKey\n\n\t// assign contains the position of \"=\", if any\n\tAssign token.Pos\n\n\t// val is the item itself. It can be an object,list, number, bool or a\n\t// string. If key length is larger than one, val can be only of type\n\t// Object.\n\tVal Node\n\n\tLeadComment *CommentGroup // associated lead comment\n\tLineComment *CommentGroup // associated line comment\n}\n\nfunc (o *ObjectItem) Pos() token.Pos {\n\t// I'm not entirely sure what causes this, but removing this causes\n\t// a test failure. We should investigate at some point.\n\tif len(o.Keys) == 0 {\n\t\treturn token.Pos{}\n\t}\n\n\treturn o.Keys[0].Pos()\n}\n\n// ObjectKeys are either an identifier or of type string.\ntype ObjectKey struct {\n\tToken token.Token\n}\n\nfunc (o *ObjectKey) Pos() token.Pos {\n\treturn o.Token.Pos\n}\n\n// LiteralType represents a literal of basic type. Valid types are:\n// token.NUMBER, token.FLOAT, token.BOOL and token.STRING\ntype LiteralType struct {\n\tToken token.Token\n\n\t// comment types, only used when in a list\n\tLeadComment *CommentGroup\n\tLineComment *CommentGroup\n}\n\nfunc (l *LiteralType) Pos() token.Pos {\n\treturn l.Token.Pos\n}\n\n// ListStatement represents a HCL List type\ntype ListType struct {\n\tLbrack token.Pos // position of \"[\"\n\tRbrack token.Pos // position of \"]\"\n\tList   []Node    // the elements in lexical order\n}\n\nfunc (l *ListType) Pos() token.Pos {\n\treturn l.Lbrack\n}\n\nfunc (l *ListType) Add(node Node) {\n\tl.List = append(l.List, node)\n}\n\n// ObjectType represents a HCL Object Type\ntype ObjectType struct {\n\tLbrace token.Pos   // position of \"{\"\n\tRbrace token.Pos   // position of \"}\"\n\tList   *ObjectList // the nodes in lexical order\n}\n\nfunc (o *ObjectType) Pos() token.Pos {\n\treturn o.Lbrace\n}\n\n// Comment node represents a single //, # style or /*- style commment\ntype Comment struct {\n\tStart token.Pos // position of / or #\n\tText  string\n}\n\nfunc (c *Comment) Pos() token.Pos {\n\treturn c.Start\n}\n\n// CommentGroup node represents a sequence of comments with no other tokens and\n// no empty lines between.\ntype CommentGroup struct {\n\tList []*Comment // len(List) > 0\n}\n\nfunc (c *CommentGroup) Pos() token.Pos {\n\treturn c.List[0].Pos()\n}\n\n//-------------------------------------------------------------------\n// GoStringer\n//-------------------------------------------------------------------\n\nfunc (o *ObjectKey) GoString() string  { return fmt.Sprintf(\"*%#v\", *o) }\nfunc (o *ObjectList) GoString() string { return fmt.Sprintf(\"*%#v\", *o) }\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/ast/walk.go",
    "content": "package ast\n\nimport \"fmt\"\n\n// WalkFunc describes a function to be called for each node during a Walk. The\n// returned node can be used to rewrite the AST. Walking stops the returned\n// bool is false.\ntype WalkFunc func(Node) (Node, bool)\n\n// Walk traverses an AST in depth-first order: It starts by calling fn(node);\n// node must not be nil. If fn returns true, Walk invokes fn recursively for\n// each of the non-nil children of node, followed by a call of fn(nil). The\n// returned node of fn can be used to rewrite the passed node to fn.\nfunc Walk(node Node, fn WalkFunc) Node {\n\trewritten, ok := fn(node)\n\tif !ok {\n\t\treturn rewritten\n\t}\n\n\tswitch n := node.(type) {\n\tcase *File:\n\t\tn.Node = Walk(n.Node, fn)\n\tcase *ObjectList:\n\t\tfor i, item := range n.Items {\n\t\t\tn.Items[i] = Walk(item, fn).(*ObjectItem)\n\t\t}\n\tcase *ObjectKey:\n\t\t// nothing to do\n\tcase *ObjectItem:\n\t\tfor i, k := range n.Keys {\n\t\t\tn.Keys[i] = Walk(k, fn).(*ObjectKey)\n\t\t}\n\n\t\tif n.Val != nil {\n\t\t\tn.Val = Walk(n.Val, fn)\n\t\t}\n\tcase *LiteralType:\n\t\t// nothing to do\n\tcase *ListType:\n\t\tfor i, l := range n.List {\n\t\t\tn.List[i] = Walk(l, fn)\n\t\t}\n\tcase *ObjectType:\n\t\tn.List = Walk(n.List, fn).(*ObjectList)\n\tdefault:\n\t\t// should we panic here?\n\t\tfmt.Printf(\"unknown type: %T\\n\", n)\n\t}\n\n\tfn(nil)\n\treturn rewritten\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/parser/error.go",
    "content": "package parser\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/hashicorp/hcl/hcl/token\"\n)\n\n// PosError is a parse error that contains a position.\ntype PosError struct {\n\tPos token.Pos\n\tErr error\n}\n\nfunc (e *PosError) Error() string {\n\treturn fmt.Sprintf(\"At %s: %s\", e.Pos, e.Err)\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/parser/parser.go",
    "content": "// Package parser implements a parser for HCL (HashiCorp Configuration\n// Language)\npackage parser\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/hashicorp/hcl/hcl/ast\"\n\t\"github.com/hashicorp/hcl/hcl/scanner\"\n\t\"github.com/hashicorp/hcl/hcl/token\"\n)\n\ntype Parser struct {\n\tsc *scanner.Scanner\n\n\t// Last read token\n\ttok       token.Token\n\tcommaPrev token.Token\n\n\tcomments    []*ast.CommentGroup\n\tleadComment *ast.CommentGroup // last lead comment\n\tlineComment *ast.CommentGroup // last line comment\n\n\tenableTrace bool\n\tindent      int\n\tn           int // buffer size (max = 1)\n}\n\nfunc newParser(src []byte) *Parser {\n\treturn &Parser{\n\t\tsc: scanner.New(src),\n\t}\n}\n\n// Parse returns the fully parsed source and returns the abstract syntax tree.\nfunc Parse(src []byte) (*ast.File, error) {\n\t// normalize all line endings\n\t// since the scanner and output only work with \"\\n\" line endings, we may\n\t// end up with dangling \"\\r\" characters in the parsed data.\n\tsrc = bytes.Replace(src, []byte(\"\\r\\n\"), []byte(\"\\n\"), -1)\n\n\tp := newParser(src)\n\treturn p.Parse()\n}\n\nvar errEofToken = errors.New(\"EOF token found\")\n\n// Parse returns the fully parsed source and returns the abstract syntax tree.\nfunc (p *Parser) Parse() (*ast.File, error) {\n\tf := &ast.File{}\n\tvar err, scerr error\n\tp.sc.Error = func(pos token.Pos, msg string) {\n\t\tscerr = &PosError{Pos: pos, Err: errors.New(msg)}\n\t}\n\n\tf.Node, err = p.objectList(false)\n\tif scerr != nil {\n\t\treturn nil, scerr\n\t}\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tf.Comments = p.comments\n\treturn f, nil\n}\n\n// objectList parses a list of items within an object (generally k/v pairs).\n// The parameter\" obj\" tells this whether to we are within an object (braces:\n// '{', '}') or just at the top level. If we're within an object, we end\n// at an RBRACE.\nfunc (p *Parser) objectList(obj bool) (*ast.ObjectList, error) {\n\tdefer un(trace(p, \"ParseObjectList\"))\n\tnode := &ast.ObjectList{}\n\n\tfor {\n\t\tif obj {\n\t\t\ttok := p.scan()\n\t\t\tp.unscan()\n\t\t\tif tok.Type == token.RBRACE {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tn, err := p.objectItem()\n\t\tif err == errEofToken {\n\t\t\tbreak // we are finished\n\t\t}\n\n\t\t// we don't return a nil node, because might want to use already\n\t\t// collected items.\n\t\tif err != nil {\n\t\t\treturn node, err\n\t\t}\n\n\t\tnode.Add(n)\n\n\t\t// object lists can be optionally comma-delimited e.g. when a list of maps\n\t\t// is being expressed, so a comma is allowed here - it's simply consumed\n\t\ttok := p.scan()\n\t\tif tok.Type != token.COMMA {\n\t\t\tp.unscan()\n\t\t}\n\t}\n\treturn node, nil\n}\n\nfunc (p *Parser) consumeComment() (comment *ast.Comment, endline int) {\n\tendline = p.tok.Pos.Line\n\n\t// count the endline if it's multiline comment, ie starting with /*\n\tif len(p.tok.Text) > 1 && p.tok.Text[1] == '*' {\n\t\t// don't use range here - no need to decode Unicode code points\n\t\tfor i := 0; i < len(p.tok.Text); i++ {\n\t\t\tif p.tok.Text[i] == '\\n' {\n\t\t\t\tendline++\n\t\t\t}\n\t\t}\n\t}\n\n\tcomment = &ast.Comment{Start: p.tok.Pos, Text: p.tok.Text}\n\tp.tok = p.sc.Scan()\n\treturn\n}\n\nfunc (p *Parser) consumeCommentGroup(n int) (comments *ast.CommentGroup, endline int) {\n\tvar list []*ast.Comment\n\tendline = p.tok.Pos.Line\n\n\tfor p.tok.Type == token.COMMENT && p.tok.Pos.Line <= endline+n {\n\t\tvar comment *ast.Comment\n\t\tcomment, endline = p.consumeComment()\n\t\tlist = append(list, comment)\n\t}\n\n\t// add comment group to the comments list\n\tcomments = &ast.CommentGroup{List: list}\n\tp.comments = append(p.comments, comments)\n\n\treturn\n}\n\n// objectItem parses a single object item\nfunc (p *Parser) objectItem() (*ast.ObjectItem, error) {\n\tdefer un(trace(p, \"ParseObjectItem\"))\n\n\tkeys, err := p.objectKey()\n\tif len(keys) > 0 && err == errEofToken {\n\t\t// We ignore eof token here since it is an error if we didn't\n\t\t// receive a value (but we did receive a key) for the item.\n\t\terr = nil\n\t}\n\tif len(keys) > 0 && err != nil && p.tok.Type == token.RBRACE {\n\t\t// This is a strange boolean statement, but what it means is:\n\t\t// We have keys with no value, and we're likely in an object\n\t\t// (since RBrace ends an object). For this, we set err to nil so\n\t\t// we continue and get the error below of having the wrong value\n\t\t// type.\n\t\terr = nil\n\n\t\t// Reset the token type so we don't think it completed fine. See\n\t\t// objectType which uses p.tok.Type to check if we're done with\n\t\t// the object.\n\t\tp.tok.Type = token.EOF\n\t}\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\to := &ast.ObjectItem{\n\t\tKeys: keys,\n\t}\n\n\tif p.leadComment != nil {\n\t\to.LeadComment = p.leadComment\n\t\tp.leadComment = nil\n\t}\n\n\tswitch p.tok.Type {\n\tcase token.ASSIGN:\n\t\to.Assign = p.tok.Pos\n\t\to.Val, err = p.object()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\tcase token.LBRACE:\n\t\to.Val, err = p.objectType()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\tdefault:\n\t\tkeyStr := make([]string, 0, len(keys))\n\t\tfor _, k := range keys {\n\t\t\tkeyStr = append(keyStr, k.Token.Text)\n\t\t}\n\n\t\treturn nil, &PosError{\n\t\t\tPos: p.tok.Pos,\n\t\t\tErr: fmt.Errorf(\n\t\t\t\t\"key '%s' expected start of object ('{') or assignment ('=')\",\n\t\t\t\tstrings.Join(keyStr, \" \")),\n\t\t}\n\t}\n\n\t// key=#comment\n\t// val\n\tif p.lineComment != nil {\n\t\to.LineComment, p.lineComment = p.lineComment, nil\n\t}\n\n\t// do a look-ahead for line comment\n\tp.scan()\n\tif len(keys) > 0 && o.Val.Pos().Line == keys[0].Pos().Line && p.lineComment != nil {\n\t\to.LineComment = p.lineComment\n\t\tp.lineComment = nil\n\t}\n\tp.unscan()\n\treturn o, nil\n}\n\n// objectKey parses an object key and returns a ObjectKey AST\nfunc (p *Parser) objectKey() ([]*ast.ObjectKey, error) {\n\tkeyCount := 0\n\tkeys := make([]*ast.ObjectKey, 0)\n\n\tfor {\n\t\ttok := p.scan()\n\t\tswitch tok.Type {\n\t\tcase token.EOF:\n\t\t\t// It is very important to also return the keys here as well as\n\t\t\t// the error. This is because we need to be able to tell if we\n\t\t\t// did parse keys prior to finding the EOF, or if we just found\n\t\t\t// a bare EOF.\n\t\t\treturn keys, errEofToken\n\t\tcase token.ASSIGN:\n\t\t\t// assignment or object only, but not nested objects. this is not\n\t\t\t// allowed: `foo bar = {}`\n\t\t\tif keyCount > 1 {\n\t\t\t\treturn nil, &PosError{\n\t\t\t\t\tPos: p.tok.Pos,\n\t\t\t\t\tErr: fmt.Errorf(\"nested object expected: LBRACE got: %s\", p.tok.Type),\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif keyCount == 0 {\n\t\t\t\treturn nil, &PosError{\n\t\t\t\t\tPos: p.tok.Pos,\n\t\t\t\t\tErr: errors.New(\"no object keys found!\"),\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn keys, nil\n\t\tcase token.LBRACE:\n\t\t\tvar err error\n\n\t\t\t// If we have no keys, then it is a syntax error. i.e. {{}} is not\n\t\t\t// allowed.\n\t\t\tif len(keys) == 0 {\n\t\t\t\terr = &PosError{\n\t\t\t\t\tPos: p.tok.Pos,\n\t\t\t\t\tErr: fmt.Errorf(\"expected: IDENT | STRING got: %s\", p.tok.Type),\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// object\n\t\t\treturn keys, err\n\t\tcase token.IDENT, token.STRING:\n\t\t\tkeyCount++\n\t\t\tkeys = append(keys, &ast.ObjectKey{Token: p.tok})\n\t\tcase token.ILLEGAL:\n\t\t\treturn keys, &PosError{\n\t\t\t\tPos: p.tok.Pos,\n\t\t\t\tErr: fmt.Errorf(\"illegal character\"),\n\t\t\t}\n\t\tdefault:\n\t\t\treturn keys, &PosError{\n\t\t\t\tPos: p.tok.Pos,\n\t\t\t\tErr: fmt.Errorf(\"expected: IDENT | STRING | ASSIGN | LBRACE got: %s\", p.tok.Type),\n\t\t\t}\n\t\t}\n\t}\n}\n\n// object parses any type of object, such as number, bool, string, object or\n// list.\nfunc (p *Parser) object() (ast.Node, error) {\n\tdefer un(trace(p, \"ParseType\"))\n\ttok := p.scan()\n\n\tswitch tok.Type {\n\tcase token.NUMBER, token.FLOAT, token.BOOL, token.STRING, token.HEREDOC:\n\t\treturn p.literalType()\n\tcase token.LBRACE:\n\t\treturn p.objectType()\n\tcase token.LBRACK:\n\t\treturn p.listType()\n\tcase token.COMMENT:\n\t\t// implement comment\n\tcase token.EOF:\n\t\treturn nil, errEofToken\n\t}\n\n\treturn nil, &PosError{\n\t\tPos: tok.Pos,\n\t\tErr: fmt.Errorf(\"Unknown token: %+v\", tok),\n\t}\n}\n\n// objectType parses an object type and returns a ObjectType AST\nfunc (p *Parser) objectType() (*ast.ObjectType, error) {\n\tdefer un(trace(p, \"ParseObjectType\"))\n\n\t// we assume that the currently scanned token is a LBRACE\n\to := &ast.ObjectType{\n\t\tLbrace: p.tok.Pos,\n\t}\n\n\tl, err := p.objectList(true)\n\n\t// if we hit RBRACE, we are good to go (means we parsed all Items), if it's\n\t// not a RBRACE, it's an syntax error and we just return it.\n\tif err != nil && p.tok.Type != token.RBRACE {\n\t\treturn nil, err\n\t}\n\n\t// No error, scan and expect the ending to be a brace\n\tif tok := p.scan(); tok.Type != token.RBRACE {\n\t\treturn nil, &PosError{\n\t\t\tPos: tok.Pos,\n\t\t\tErr: fmt.Errorf(\"object expected closing RBRACE got: %s\", tok.Type),\n\t\t}\n\t}\n\n\to.List = l\n\to.Rbrace = p.tok.Pos // advanced via parseObjectList\n\treturn o, nil\n}\n\n// listType parses a list type and returns a ListType AST\nfunc (p *Parser) listType() (*ast.ListType, error) {\n\tdefer un(trace(p, \"ParseListType\"))\n\n\t// we assume that the currently scanned token is a LBRACK\n\tl := &ast.ListType{\n\t\tLbrack: p.tok.Pos,\n\t}\n\n\tneedComma := false\n\tfor {\n\t\ttok := p.scan()\n\t\tif needComma {\n\t\t\tswitch tok.Type {\n\t\t\tcase token.COMMA, token.RBRACK:\n\t\t\tdefault:\n\t\t\t\treturn nil, &PosError{\n\t\t\t\t\tPos: tok.Pos,\n\t\t\t\t\tErr: fmt.Errorf(\n\t\t\t\t\t\t\"error parsing list, expected comma or list end, got: %s\",\n\t\t\t\t\t\ttok.Type),\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tswitch tok.Type {\n\t\tcase token.BOOL, token.NUMBER, token.FLOAT, token.STRING, token.HEREDOC:\n\t\t\tnode, err := p.literalType()\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\n\t\t\t// If there is a lead comment, apply it\n\t\t\tif p.leadComment != nil {\n\t\t\t\tnode.LeadComment = p.leadComment\n\t\t\t\tp.leadComment = nil\n\t\t\t}\n\n\t\t\tl.Add(node)\n\t\t\tneedComma = true\n\t\tcase token.COMMA:\n\t\t\t// get next list item or we are at the end\n\t\t\t// do a look-ahead for line comment\n\t\t\tp.scan()\n\t\t\tif p.lineComment != nil && len(l.List) > 0 {\n\t\t\t\tlit, ok := l.List[len(l.List)-1].(*ast.LiteralType)\n\t\t\t\tif ok {\n\t\t\t\t\tlit.LineComment = p.lineComment\n\t\t\t\t\tl.List[len(l.List)-1] = lit\n\t\t\t\t\tp.lineComment = nil\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.unscan()\n\n\t\t\tneedComma = false\n\t\t\tcontinue\n\t\tcase token.LBRACE:\n\t\t\t// Looks like a nested object, so parse it out\n\t\t\tnode, err := p.objectType()\n\t\t\tif err != nil {\n\t\t\t\treturn nil, &PosError{\n\t\t\t\t\tPos: tok.Pos,\n\t\t\t\t\tErr: fmt.Errorf(\n\t\t\t\t\t\t\"error while trying to parse object within list: %s\", err),\n\t\t\t\t}\n\t\t\t}\n\t\t\tl.Add(node)\n\t\t\tneedComma = true\n\t\tcase token.LBRACK:\n\t\t\tnode, err := p.listType()\n\t\t\tif err != nil {\n\t\t\t\treturn nil, &PosError{\n\t\t\t\t\tPos: tok.Pos,\n\t\t\t\t\tErr: fmt.Errorf(\n\t\t\t\t\t\t\"error while trying to parse list within list: %s\", err),\n\t\t\t\t}\n\t\t\t}\n\t\t\tl.Add(node)\n\t\tcase token.RBRACK:\n\t\t\t// finished\n\t\t\tl.Rbrack = p.tok.Pos\n\t\t\treturn l, nil\n\t\tdefault:\n\t\t\treturn nil, &PosError{\n\t\t\t\tPos: tok.Pos,\n\t\t\t\tErr: fmt.Errorf(\"unexpected token while parsing list: %s\", tok.Type),\n\t\t\t}\n\t\t}\n\t}\n}\n\n// literalType parses a literal type and returns a LiteralType AST\nfunc (p *Parser) literalType() (*ast.LiteralType, error) {\n\tdefer un(trace(p, \"ParseLiteral\"))\n\n\treturn &ast.LiteralType{\n\t\tToken: p.tok,\n\t}, nil\n}\n\n// scan returns the next token from the underlying scanner. If a token has\n// been unscanned then read that instead. In the process, it collects any\n// comment groups encountered, and remembers the last lead and line comments.\nfunc (p *Parser) scan() token.Token {\n\t// If we have a token on the buffer, then return it.\n\tif p.n != 0 {\n\t\tp.n = 0\n\t\treturn p.tok\n\t}\n\n\t// Otherwise read the next token from the scanner and Save it to the buffer\n\t// in case we unscan later.\n\tprev := p.tok\n\tp.tok = p.sc.Scan()\n\n\tif p.tok.Type == token.COMMENT {\n\t\tvar comment *ast.CommentGroup\n\t\tvar endline int\n\n\t\t// fmt.Printf(\"p.tok.Pos.Line = %+v prev: %d endline %d \\n\",\n\t\t// p.tok.Pos.Line, prev.Pos.Line, endline)\n\t\tif p.tok.Pos.Line == prev.Pos.Line {\n\t\t\t// The comment is on same line as the previous token; it\n\t\t\t// cannot be a lead comment but may be a line comment.\n\t\t\tcomment, endline = p.consumeCommentGroup(0)\n\t\t\tif p.tok.Pos.Line != endline {\n\t\t\t\t// The next token is on a different line, thus\n\t\t\t\t// the last comment group is a line comment.\n\t\t\t\tp.lineComment = comment\n\t\t\t}\n\t\t}\n\n\t\t// consume successor comments, if any\n\t\tendline = -1\n\t\tfor p.tok.Type == token.COMMENT {\n\t\t\tcomment, endline = p.consumeCommentGroup(1)\n\t\t}\n\n\t\tif endline+1 == p.tok.Pos.Line && p.tok.Type != token.RBRACE {\n\t\t\tswitch p.tok.Type {\n\t\t\tcase token.RBRACE, token.RBRACK:\n\t\t\t\t// Do not count for these cases\n\t\t\tdefault:\n\t\t\t\t// The next token is following on the line immediately after the\n\t\t\t\t// comment group, thus the last comment group is a lead comment.\n\t\t\t\tp.leadComment = comment\n\t\t\t}\n\t\t}\n\n\t}\n\n\treturn p.tok\n}\n\n// unscan pushes the previously read token back onto the buffer.\nfunc (p *Parser) unscan() {\n\tp.n = 1\n}\n\n// ----------------------------------------------------------------------------\n// Parsing support\n\nfunc (p *Parser) printTrace(a ...interface{}) {\n\tif !p.enableTrace {\n\t\treturn\n\t}\n\n\tconst dots = \". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . \"\n\tconst n = len(dots)\n\tfmt.Printf(\"%5d:%3d: \", p.tok.Pos.Line, p.tok.Pos.Column)\n\n\ti := 2 * p.indent\n\tfor i > n {\n\t\tfmt.Print(dots)\n\t\ti -= n\n\t}\n\t// i <= n\n\tfmt.Print(dots[0:i])\n\tfmt.Println(a...)\n}\n\nfunc trace(p *Parser, msg string) *Parser {\n\tp.printTrace(msg, \"(\")\n\tp.indent++\n\treturn p\n}\n\n// Usage pattern: defer un(trace(p, \"...\"))\nfunc un(p *Parser) {\n\tp.indent--\n\tp.printTrace(\")\")\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/printer/nodes.go",
    "content": "package printer\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"sort\"\n\n\t\"github.com/hashicorp/hcl/hcl/ast\"\n\t\"github.com/hashicorp/hcl/hcl/token\"\n)\n\nconst (\n\tblank    = byte(' ')\n\tnewline  = byte('\\n')\n\ttab      = byte('\\t')\n\tinfinity = 1 << 30 // offset or line\n)\n\nvar (\n\tunindent = []byte(\"\\uE123\") // in the private use space\n)\n\ntype printer struct {\n\tcfg  Config\n\tprev token.Pos\n\n\tcomments           []*ast.CommentGroup // may be nil, contains all comments\n\tstandaloneComments []*ast.CommentGroup // contains all standalone comments (not assigned to any node)\n\n\tenableTrace bool\n\tindentTrace int\n}\n\ntype ByPosition []*ast.CommentGroup\n\nfunc (b ByPosition) Len() int           { return len(b) }\nfunc (b ByPosition) Swap(i, j int)      { b[i], b[j] = b[j], b[i] }\nfunc (b ByPosition) Less(i, j int) bool { return b[i].Pos().Before(b[j].Pos()) }\n\n// collectComments comments all standalone comments which are not lead or line\n// comment\nfunc (p *printer) collectComments(node ast.Node) {\n\t// first collect all comments. This is already stored in\n\t// ast.File.(comments)\n\tast.Walk(node, func(nn ast.Node) (ast.Node, bool) {\n\t\tswitch t := nn.(type) {\n\t\tcase *ast.File:\n\t\t\tp.comments = t.Comments\n\t\t\treturn nn, false\n\t\t}\n\t\treturn nn, true\n\t})\n\n\tstandaloneComments := make(map[token.Pos]*ast.CommentGroup, 0)\n\tfor _, c := range p.comments {\n\t\tstandaloneComments[c.Pos()] = c\n\t}\n\n\t// next remove all lead and line comments from the overall comment map.\n\t// This will give us comments which are standalone, comments which are not\n\t// assigned to any kind of node.\n\tast.Walk(node, func(nn ast.Node) (ast.Node, bool) {\n\t\tswitch t := nn.(type) {\n\t\tcase *ast.LiteralType:\n\t\t\tif t.LeadComment != nil {\n\t\t\t\tfor _, comment := range t.LeadComment.List {\n\t\t\t\t\tif _, ok := standaloneComments[comment.Pos()]; ok {\n\t\t\t\t\t\tdelete(standaloneComments, comment.Pos())\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif t.LineComment != nil {\n\t\t\t\tfor _, comment := range t.LineComment.List {\n\t\t\t\t\tif _, ok := standaloneComments[comment.Pos()]; ok {\n\t\t\t\t\t\tdelete(standaloneComments, comment.Pos())\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\tcase *ast.ObjectItem:\n\t\t\tif t.LeadComment != nil {\n\t\t\t\tfor _, comment := range t.LeadComment.List {\n\t\t\t\t\tif _, ok := standaloneComments[comment.Pos()]; ok {\n\t\t\t\t\t\tdelete(standaloneComments, comment.Pos())\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif t.LineComment != nil {\n\t\t\t\tfor _, comment := range t.LineComment.List {\n\t\t\t\t\tif _, ok := standaloneComments[comment.Pos()]; ok {\n\t\t\t\t\t\tdelete(standaloneComments, comment.Pos())\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn nn, true\n\t})\n\n\tfor _, c := range standaloneComments {\n\t\tp.standaloneComments = append(p.standaloneComments, c)\n\t}\n\n\tsort.Sort(ByPosition(p.standaloneComments))\n}\n\n// output prints creates b printable HCL output and returns it.\nfunc (p *printer) output(n interface{}) []byte {\n\tvar buf bytes.Buffer\n\n\tswitch t := n.(type) {\n\tcase *ast.File:\n\t\t// File doesn't trace so we add the tracing here\n\t\tdefer un(trace(p, \"File\"))\n\t\treturn p.output(t.Node)\n\tcase *ast.ObjectList:\n\t\tdefer un(trace(p, \"ObjectList\"))\n\n\t\tvar index int\n\t\tfor {\n\t\t\t// Determine the location of the next actual non-comment\n\t\t\t// item. If we're at the end, the next item is at \"infinity\"\n\t\t\tvar nextItem token.Pos\n\t\t\tif index != len(t.Items) {\n\t\t\t\tnextItem = t.Items[index].Pos()\n\t\t\t} else {\n\t\t\t\tnextItem = token.Pos{Offset: infinity, Line: infinity}\n\t\t\t}\n\n\t\t\t// Go through the standalone comments in the file and print out\n\t\t\t// the comments that we should be for this object item.\n\t\t\tfor _, c := range p.standaloneComments {\n\t\t\t\t// Go through all the comments in the group. The group\n\t\t\t\t// should be printed together, not separated by double newlines.\n\t\t\t\tprinted := false\n\t\t\t\tnewlinePrinted := false\n\t\t\t\tfor _, comment := range c.List {\n\t\t\t\t\t// We only care about comments after the previous item\n\t\t\t\t\t// we've printed so that comments are printed in the\n\t\t\t\t\t// correct locations (between two objects for example).\n\t\t\t\t\t// And before the next item.\n\t\t\t\t\tif comment.Pos().After(p.prev) && comment.Pos().Before(nextItem) {\n\t\t\t\t\t\t// if we hit the end add newlines so we can print the comment\n\t\t\t\t\t\t// we don't do this if prev is invalid which means the\n\t\t\t\t\t\t// beginning of the file since the first comment should\n\t\t\t\t\t\t// be at the first line.\n\t\t\t\t\t\tif !newlinePrinted && p.prev.IsValid() && index == len(t.Items) {\n\t\t\t\t\t\t\tbuf.Write([]byte{newline, newline})\n\t\t\t\t\t\t\tnewlinePrinted = true\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Write the actual comment.\n\t\t\t\t\t\tbuf.WriteString(comment.Text)\n\t\t\t\t\t\tbuf.WriteByte(newline)\n\n\t\t\t\t\t\t// Set printed to true to note that we printed something\n\t\t\t\t\t\tprinted = true\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If we're not at the last item, write a new line so\n\t\t\t\t// that there is a newline separating this comment from\n\t\t\t\t// the next object.\n\t\t\t\tif printed && index != len(t.Items) {\n\t\t\t\t\tbuf.WriteByte(newline)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif index == len(t.Items) {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tbuf.Write(p.output(t.Items[index]))\n\t\t\tif index != len(t.Items)-1 {\n\t\t\t\t// Always write a newline to separate us from the next item\n\t\t\t\tbuf.WriteByte(newline)\n\n\t\t\t\t// Need to determine if we're going to separate the next item\n\t\t\t\t// with a blank line. The logic here is simple, though there\n\t\t\t\t// are a few conditions:\n\t\t\t\t//\n\t\t\t\t//   1. The next object is more than one line away anyways,\n\t\t\t\t//      so we need an empty line.\n\t\t\t\t//\n\t\t\t\t//   2. The next object is not a \"single line\" object, so\n\t\t\t\t//      we need an empty line.\n\t\t\t\t//\n\t\t\t\t//   3. This current object is not a single line object,\n\t\t\t\t//      so we need an empty line.\n\t\t\t\tcurrent := t.Items[index]\n\t\t\t\tnext := t.Items[index+1]\n\t\t\t\tif next.Pos().Line != t.Items[index].Pos().Line+1 ||\n\t\t\t\t\t!p.isSingleLineObject(next) ||\n\t\t\t\t\t!p.isSingleLineObject(current) {\n\t\t\t\t\tbuf.WriteByte(newline)\n\t\t\t\t}\n\t\t\t}\n\t\t\tindex++\n\t\t}\n\tcase *ast.ObjectKey:\n\t\tbuf.WriteString(t.Token.Text)\n\tcase *ast.ObjectItem:\n\t\tp.prev = t.Pos()\n\t\tbuf.Write(p.objectItem(t))\n\tcase *ast.LiteralType:\n\t\tbuf.Write(p.literalType(t))\n\tcase *ast.ListType:\n\t\tbuf.Write(p.list(t))\n\tcase *ast.ObjectType:\n\t\tbuf.Write(p.objectType(t))\n\tdefault:\n\t\tfmt.Printf(\" unknown type: %T\\n\", n)\n\t}\n\n\treturn buf.Bytes()\n}\n\nfunc (p *printer) literalType(lit *ast.LiteralType) []byte {\n\tresult := []byte(lit.Token.Text)\n\tswitch lit.Token.Type {\n\tcase token.HEREDOC:\n\t\t// Clear the trailing newline from heredocs\n\t\tif result[len(result)-1] == '\\n' {\n\t\t\tresult = result[:len(result)-1]\n\t\t}\n\n\t\t// Poison lines 2+ so that we don't indent them\n\t\tresult = p.heredocIndent(result)\n\tcase token.STRING:\n\t\t// If this is a multiline string, poison lines 2+ so we don't\n\t\t// indent them.\n\t\tif bytes.IndexRune(result, '\\n') >= 0 {\n\t\t\tresult = p.heredocIndent(result)\n\t\t}\n\t}\n\n\treturn result\n}\n\n// objectItem returns the printable HCL form of an object item. An object type\n// starts with one/multiple keys and has a value. The value might be of any\n// type.\nfunc (p *printer) objectItem(o *ast.ObjectItem) []byte {\n\tdefer un(trace(p, fmt.Sprintf(\"ObjectItem: %s\", o.Keys[0].Token.Text)))\n\tvar buf bytes.Buffer\n\n\tif o.LeadComment != nil {\n\t\tfor _, comment := range o.LeadComment.List {\n\t\t\tbuf.WriteString(comment.Text)\n\t\t\tbuf.WriteByte(newline)\n\t\t}\n\t}\n\n\t// If key and val are on different lines, treat line comments like lead comments.\n\tif o.LineComment != nil && o.Val.Pos().Line != o.Keys[0].Pos().Line {\n\t\tfor _, comment := range o.LineComment.List {\n\t\t\tbuf.WriteString(comment.Text)\n\t\t\tbuf.WriteByte(newline)\n\t\t}\n\t}\n\n\tfor i, k := range o.Keys {\n\t\tbuf.WriteString(k.Token.Text)\n\t\tbuf.WriteByte(blank)\n\n\t\t// reach end of key\n\t\tif o.Assign.IsValid() && i == len(o.Keys)-1 && len(o.Keys) == 1 {\n\t\t\tbuf.WriteString(\"=\")\n\t\t\tbuf.WriteByte(blank)\n\t\t}\n\t}\n\n\tbuf.Write(p.output(o.Val))\n\n\tif o.LineComment != nil && o.Val.Pos().Line == o.Keys[0].Pos().Line {\n\t\tbuf.WriteByte(blank)\n\t\tfor _, comment := range o.LineComment.List {\n\t\t\tbuf.WriteString(comment.Text)\n\t\t}\n\t}\n\n\treturn buf.Bytes()\n}\n\n// objectType returns the printable HCL form of an object type. An object type\n// begins with a brace and ends with a brace.\nfunc (p *printer) objectType(o *ast.ObjectType) []byte {\n\tdefer un(trace(p, \"ObjectType\"))\n\tvar buf bytes.Buffer\n\tbuf.WriteString(\"{\")\n\n\tvar index int\n\tvar nextItem token.Pos\n\tvar commented, newlinePrinted bool\n\tfor {\n\t\t// Determine the location of the next actual non-comment\n\t\t// item. If we're at the end, the next item is the closing brace\n\t\tif index != len(o.List.Items) {\n\t\t\tnextItem = o.List.Items[index].Pos()\n\t\t} else {\n\t\t\tnextItem = o.Rbrace\n\t\t}\n\n\t\t// Go through the standalone comments in the file and print out\n\t\t// the comments that we should be for this object item.\n\t\tfor _, c := range p.standaloneComments {\n\t\t\tprinted := false\n\t\t\tvar lastCommentPos token.Pos\n\t\t\tfor _, comment := range c.List {\n\t\t\t\t// We only care about comments after the previous item\n\t\t\t\t// we've printed so that comments are printed in the\n\t\t\t\t// correct locations (between two objects for example).\n\t\t\t\t// And before the next item.\n\t\t\t\tif comment.Pos().After(p.prev) && comment.Pos().Before(nextItem) {\n\t\t\t\t\t// If there are standalone comments and the initial newline has not\n\t\t\t\t\t// been printed yet, do it now.\n\t\t\t\t\tif !newlinePrinted {\n\t\t\t\t\t\tnewlinePrinted = true\n\t\t\t\t\t\tbuf.WriteByte(newline)\n\t\t\t\t\t}\n\n\t\t\t\t\t// add newline if it's between other printed nodes\n\t\t\t\t\tif index > 0 {\n\t\t\t\t\t\tcommented = true\n\t\t\t\t\t\tbuf.WriteByte(newline)\n\t\t\t\t\t}\n\n\t\t\t\t\t// Store this position\n\t\t\t\t\tlastCommentPos = comment.Pos()\n\n\t\t\t\t\t// output the comment itself\n\t\t\t\t\tbuf.Write(p.indent(p.heredocIndent([]byte(comment.Text))))\n\n\t\t\t\t\t// Set printed to true to note that we printed something\n\t\t\t\t\tprinted = true\n\n\t\t\t\t\t/*\n\t\t\t\t\t\tif index != len(o.List.Items) {\n\t\t\t\t\t\t\tbuf.WriteByte(newline) // do not print on the end\n\t\t\t\t\t\t}\n\t\t\t\t\t*/\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Stuff to do if we had comments\n\t\t\tif printed {\n\t\t\t\t// Always write a newline\n\t\t\t\tbuf.WriteByte(newline)\n\n\t\t\t\t// If there is another item in the object and our comment\n\t\t\t\t// didn't hug it directly, then make sure there is a blank\n\t\t\t\t// line separating them.\n\t\t\t\tif nextItem != o.Rbrace && nextItem.Line != lastCommentPos.Line+1 {\n\t\t\t\t\tbuf.WriteByte(newline)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif index == len(o.List.Items) {\n\t\t\tp.prev = o.Rbrace\n\t\t\tbreak\n\t\t}\n\n\t\t// At this point we are sure that it's not a totally empty block: print\n\t\t// the initial newline if it hasn't been printed yet by the previous\n\t\t// block about standalone comments.\n\t\tif !newlinePrinted {\n\t\t\tbuf.WriteByte(newline)\n\t\t\tnewlinePrinted = true\n\t\t}\n\n\t\t// check if we have adjacent one liner items. If yes we'll going to align\n\t\t// the comments.\n\t\tvar aligned []*ast.ObjectItem\n\t\tfor _, item := range o.List.Items[index:] {\n\t\t\t// we don't group one line lists\n\t\t\tif len(o.List.Items) == 1 {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// one means a oneliner with out any lead comment\n\t\t\t// two means a oneliner with lead comment\n\t\t\t// anything else might be something else\n\t\t\tcur := lines(string(p.objectItem(item)))\n\t\t\tif cur > 2 {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tcurPos := item.Pos()\n\n\t\t\tnextPos := token.Pos{}\n\t\t\tif index != len(o.List.Items)-1 {\n\t\t\t\tnextPos = o.List.Items[index+1].Pos()\n\t\t\t}\n\n\t\t\tprevPos := token.Pos{}\n\t\t\tif index != 0 {\n\t\t\t\tprevPos = o.List.Items[index-1].Pos()\n\t\t\t}\n\n\t\t\t// fmt.Println(\"DEBUG ----------------\")\n\t\t\t// fmt.Printf(\"prev = %+v prevPos: %s\\n\", prev, prevPos)\n\t\t\t// fmt.Printf(\"cur = %+v curPos: %s\\n\", cur, curPos)\n\t\t\t// fmt.Printf(\"next = %+v nextPos: %s\\n\", next, nextPos)\n\n\t\t\tif curPos.Line+1 == nextPos.Line {\n\t\t\t\taligned = append(aligned, item)\n\t\t\t\tindex++\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tif curPos.Line-1 == prevPos.Line {\n\t\t\t\taligned = append(aligned, item)\n\t\t\t\tindex++\n\n\t\t\t\t// finish if we have a new line or comment next. This happens\n\t\t\t\t// if the next item is not adjacent\n\t\t\t\tif curPos.Line+1 != nextPos.Line {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tbreak\n\t\t}\n\n\t\t// put newlines if the items are between other non aligned items.\n\t\t// newlines are also added if there is a standalone comment already, so\n\t\t// check it too\n\t\tif !commented && index != len(aligned) {\n\t\t\tbuf.WriteByte(newline)\n\t\t}\n\n\t\tif len(aligned) >= 1 {\n\t\t\tp.prev = aligned[len(aligned)-1].Pos()\n\n\t\t\titems := p.alignedItems(aligned)\n\t\t\tbuf.Write(p.indent(items))\n\t\t} else {\n\t\t\tp.prev = o.List.Items[index].Pos()\n\n\t\t\tbuf.Write(p.indent(p.objectItem(o.List.Items[index])))\n\t\t\tindex++\n\t\t}\n\n\t\tbuf.WriteByte(newline)\n\t}\n\n\tbuf.WriteString(\"}\")\n\treturn buf.Bytes()\n}\n\nfunc (p *printer) alignedItems(items []*ast.ObjectItem) []byte {\n\tvar buf bytes.Buffer\n\n\t// find the longest key and value length, needed for alignment\n\tvar longestKeyLen int // longest key length\n\tvar longestValLen int // longest value length\n\tfor _, item := range items {\n\t\tkey := len(item.Keys[0].Token.Text)\n\t\tval := len(p.output(item.Val))\n\n\t\tif key > longestKeyLen {\n\t\t\tlongestKeyLen = key\n\t\t}\n\n\t\tif val > longestValLen {\n\t\t\tlongestValLen = val\n\t\t}\n\t}\n\n\tfor i, item := range items {\n\t\tif item.LeadComment != nil {\n\t\t\tfor _, comment := range item.LeadComment.List {\n\t\t\t\tbuf.WriteString(comment.Text)\n\t\t\t\tbuf.WriteByte(newline)\n\t\t\t}\n\t\t}\n\n\t\tfor i, k := range item.Keys {\n\t\t\tkeyLen := len(k.Token.Text)\n\t\t\tbuf.WriteString(k.Token.Text)\n\t\t\tfor i := 0; i < longestKeyLen-keyLen+1; i++ {\n\t\t\t\tbuf.WriteByte(blank)\n\t\t\t}\n\n\t\t\t// reach end of key\n\t\t\tif i == len(item.Keys)-1 && len(item.Keys) == 1 {\n\t\t\t\tbuf.WriteString(\"=\")\n\t\t\t\tbuf.WriteByte(blank)\n\t\t\t}\n\t\t}\n\n\t\tval := p.output(item.Val)\n\t\tvalLen := len(val)\n\t\tbuf.Write(val)\n\n\t\tif item.Val.Pos().Line == item.Keys[0].Pos().Line && item.LineComment != nil {\n\t\t\tfor i := 0; i < longestValLen-valLen+1; i++ {\n\t\t\t\tbuf.WriteByte(blank)\n\t\t\t}\n\n\t\t\tfor _, comment := range item.LineComment.List {\n\t\t\t\tbuf.WriteString(comment.Text)\n\t\t\t}\n\t\t}\n\n\t\t// do not print for the last item\n\t\tif i != len(items)-1 {\n\t\t\tbuf.WriteByte(newline)\n\t\t}\n\t}\n\n\treturn buf.Bytes()\n}\n\n// list returns the printable HCL form of an list type.\nfunc (p *printer) list(l *ast.ListType) []byte {\n\tif p.isSingleLineList(l) {\n\t\treturn p.singleLineList(l)\n\t}\n\n\tvar buf bytes.Buffer\n\tbuf.WriteString(\"[\")\n\tbuf.WriteByte(newline)\n\n\tvar longestLine int\n\tfor _, item := range l.List {\n\t\t// for now we assume that the list only contains literal types\n\t\tif lit, ok := item.(*ast.LiteralType); ok {\n\t\t\tlineLen := len(lit.Token.Text)\n\t\t\tif lineLen > longestLine {\n\t\t\t\tlongestLine = lineLen\n\t\t\t}\n\t\t}\n\t}\n\n\thaveEmptyLine := false\n\tfor i, item := range l.List {\n\t\t// If we have a lead comment, then we want to write that first\n\t\tleadComment := false\n\t\tif lit, ok := item.(*ast.LiteralType); ok && lit.LeadComment != nil {\n\t\t\tleadComment = true\n\n\t\t\t// Ensure an empty line before every element with a\n\t\t\t// lead comment (except the first item in a list).\n\t\t\tif !haveEmptyLine && i != 0 {\n\t\t\t\tbuf.WriteByte(newline)\n\t\t\t}\n\n\t\t\tfor _, comment := range lit.LeadComment.List {\n\t\t\t\tbuf.Write(p.indent([]byte(comment.Text)))\n\t\t\t\tbuf.WriteByte(newline)\n\t\t\t}\n\t\t}\n\n\t\t// also indent each line\n\t\tval := p.output(item)\n\t\tcurLen := len(val)\n\t\tbuf.Write(p.indent(val))\n\n\t\t// if this item is a heredoc, then we output the comma on\n\t\t// the next line. This is the only case this happens.\n\t\tcomma := []byte{','}\n\t\tif lit, ok := item.(*ast.LiteralType); ok && lit.Token.Type == token.HEREDOC {\n\t\t\tbuf.WriteByte(newline)\n\t\t\tcomma = p.indent(comma)\n\t\t}\n\n\t\tbuf.Write(comma)\n\n\t\tif lit, ok := item.(*ast.LiteralType); ok && lit.LineComment != nil {\n\t\t\t// if the next item doesn't have any comments, do not align\n\t\t\tbuf.WriteByte(blank) // align one space\n\t\t\tfor i := 0; i < longestLine-curLen; i++ {\n\t\t\t\tbuf.WriteByte(blank)\n\t\t\t}\n\n\t\t\tfor _, comment := range lit.LineComment.List {\n\t\t\t\tbuf.WriteString(comment.Text)\n\t\t\t}\n\t\t}\n\n\t\tbuf.WriteByte(newline)\n\n\t\t// Ensure an empty line after every element with a\n\t\t// lead comment (except the first item in a list).\n\t\thaveEmptyLine = leadComment && i != len(l.List)-1\n\t\tif haveEmptyLine {\n\t\t\tbuf.WriteByte(newline)\n\t\t}\n\t}\n\n\tbuf.WriteString(\"]\")\n\treturn buf.Bytes()\n}\n\n// isSingleLineList returns true if:\n// * they were previously formatted entirely on one line\n// * they consist entirely of literals\n// * there are either no heredoc strings or the list has exactly one element\n// * there are no line comments\nfunc (printer) isSingleLineList(l *ast.ListType) bool {\n\tfor _, item := range l.List {\n\t\tif item.Pos().Line != l.Lbrack.Line {\n\t\t\treturn false\n\t\t}\n\n\t\tlit, ok := item.(*ast.LiteralType)\n\t\tif !ok {\n\t\t\treturn false\n\t\t}\n\n\t\tif lit.Token.Type == token.HEREDOC && len(l.List) != 1 {\n\t\t\treturn false\n\t\t}\n\n\t\tif lit.LineComment != nil {\n\t\t\treturn false\n\t\t}\n\t}\n\n\treturn true\n}\n\n// singleLineList prints a simple single line list.\n// For a definition of \"simple\", see isSingleLineList above.\nfunc (p *printer) singleLineList(l *ast.ListType) []byte {\n\tbuf := &bytes.Buffer{}\n\n\tbuf.WriteString(\"[\")\n\tfor i, item := range l.List {\n\t\tif i != 0 {\n\t\t\tbuf.WriteString(\", \")\n\t\t}\n\n\t\t// Output the item itself\n\t\tbuf.Write(p.output(item))\n\n\t\t// The heredoc marker needs to be at the end of line.\n\t\tif lit, ok := item.(*ast.LiteralType); ok && lit.Token.Type == token.HEREDOC {\n\t\t\tbuf.WriteByte(newline)\n\t\t}\n\t}\n\n\tbuf.WriteString(\"]\")\n\treturn buf.Bytes()\n}\n\n// indent indents the lines of the given buffer for each non-empty line\nfunc (p *printer) indent(buf []byte) []byte {\n\tvar prefix []byte\n\tif p.cfg.SpacesWidth != 0 {\n\t\tfor i := 0; i < p.cfg.SpacesWidth; i++ {\n\t\t\tprefix = append(prefix, blank)\n\t\t}\n\t} else {\n\t\tprefix = []byte{tab}\n\t}\n\n\tvar res []byte\n\tbol := true\n\tfor _, c := range buf {\n\t\tif bol && c != '\\n' {\n\t\t\tres = append(res, prefix...)\n\t\t}\n\n\t\tres = append(res, c)\n\t\tbol = c == '\\n'\n\t}\n\treturn res\n}\n\n// unindent removes all the indentation from the tombstoned lines\nfunc (p *printer) unindent(buf []byte) []byte {\n\tvar res []byte\n\tfor i := 0; i < len(buf); i++ {\n\t\tskip := len(buf)-i <= len(unindent)\n\t\tif !skip {\n\t\t\tskip = !bytes.Equal(unindent, buf[i:i+len(unindent)])\n\t\t}\n\t\tif skip {\n\t\t\tres = append(res, buf[i])\n\t\t\tcontinue\n\t\t}\n\n\t\t// We have a marker. we have to backtrace here and clean out\n\t\t// any whitespace ahead of our tombstone up to a \\n\n\t\tfor j := len(res) - 1; j >= 0; j-- {\n\t\t\tif res[j] == '\\n' {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tres = res[:j]\n\t\t}\n\n\t\t// Skip the entire unindent marker\n\t\ti += len(unindent) - 1\n\t}\n\n\treturn res\n}\n\n// heredocIndent marks all the 2nd and further lines as unindentable\nfunc (p *printer) heredocIndent(buf []byte) []byte {\n\tvar res []byte\n\tbol := false\n\tfor _, c := range buf {\n\t\tif bol && c != '\\n' {\n\t\t\tres = append(res, unindent...)\n\t\t}\n\t\tres = append(res, c)\n\t\tbol = c == '\\n'\n\t}\n\treturn res\n}\n\n// isSingleLineObject tells whether the given object item is a single\n// line object such as \"obj {}\".\n//\n// A single line object:\n//\n//   * has no lead comments (hence multi-line)\n//   * has no assignment\n//   * has no values in the stanza (within {})\n//\nfunc (p *printer) isSingleLineObject(val *ast.ObjectItem) bool {\n\t// If there is a lead comment, can't be one line\n\tif val.LeadComment != nil {\n\t\treturn false\n\t}\n\n\t// If there is assignment, we always break by line\n\tif val.Assign.IsValid() {\n\t\treturn false\n\t}\n\n\t// If it isn't an object type, then its not a single line object\n\tot, ok := val.Val.(*ast.ObjectType)\n\tif !ok {\n\t\treturn false\n\t}\n\n\t// If the object has no items, it is single line!\n\treturn len(ot.List.Items) == 0\n}\n\nfunc lines(txt string) int {\n\tendline := 1\n\tfor i := 0; i < len(txt); i++ {\n\t\tif txt[i] == '\\n' {\n\t\t\tendline++\n\t\t}\n\t}\n\treturn endline\n}\n\n// ----------------------------------------------------------------------------\n// Tracing support\n\nfunc (p *printer) printTrace(a ...interface{}) {\n\tif !p.enableTrace {\n\t\treturn\n\t}\n\n\tconst dots = \". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . \"\n\tconst n = len(dots)\n\ti := 2 * p.indentTrace\n\tfor i > n {\n\t\tfmt.Print(dots)\n\t\ti -= n\n\t}\n\t// i <= n\n\tfmt.Print(dots[0:i])\n\tfmt.Println(a...)\n}\n\nfunc trace(p *printer, msg string) *printer {\n\tp.printTrace(msg, \"(\")\n\tp.indentTrace++\n\treturn p\n}\n\n// Usage pattern: defer un(trace(p, \"...\"))\nfunc un(p *printer) {\n\tp.indentTrace--\n\tp.printTrace(\")\")\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/printer/printer.go",
    "content": "// Package printer implements printing of AST nodes to HCL format.\npackage printer\n\nimport (\n\t\"bytes\"\n\t\"io\"\n\t\"text/tabwriter\"\n\n\t\"github.com/hashicorp/hcl/hcl/ast\"\n\t\"github.com/hashicorp/hcl/hcl/parser\"\n)\n\nvar DefaultConfig = Config{\n\tSpacesWidth: 2,\n}\n\n// A Config node controls the output of Fprint.\ntype Config struct {\n\tSpacesWidth int // if set, it will use spaces instead of tabs for alignment\n}\n\nfunc (c *Config) Fprint(output io.Writer, node ast.Node) error {\n\tp := &printer{\n\t\tcfg:                *c,\n\t\tcomments:           make([]*ast.CommentGroup, 0),\n\t\tstandaloneComments: make([]*ast.CommentGroup, 0),\n\t\t// enableTrace:        true,\n\t}\n\n\tp.collectComments(node)\n\n\tif _, err := output.Write(p.unindent(p.output(node))); err != nil {\n\t\treturn err\n\t}\n\n\t// flush tabwriter, if any\n\tvar err error\n\tif tw, _ := output.(*tabwriter.Writer); tw != nil {\n\t\terr = tw.Flush()\n\t}\n\n\treturn err\n}\n\n// Fprint \"pretty-prints\" an HCL node to output\n// It calls Config.Fprint with default settings.\nfunc Fprint(output io.Writer, node ast.Node) error {\n\treturn DefaultConfig.Fprint(output, node)\n}\n\n// Format formats src HCL and returns the result.\nfunc Format(src []byte) ([]byte, error) {\n\tnode, err := parser.Parse(src)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar buf bytes.Buffer\n\tif err := DefaultConfig.Fprint(&buf, node); err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Add trailing newline to result\n\tbuf.WriteString(\"\\n\")\n\treturn buf.Bytes(), nil\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go",
    "content": "// Package scanner implements a scanner for HCL (HashiCorp Configuration\n// Language) source text.\npackage scanner\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"os\"\n\t\"regexp\"\n\t\"unicode\"\n\t\"unicode/utf8\"\n\n\t\"github.com/hashicorp/hcl/hcl/token\"\n)\n\n// eof represents a marker rune for the end of the reader.\nconst eof = rune(0)\n\n// Scanner defines a lexical scanner\ntype Scanner struct {\n\tbuf *bytes.Buffer // Source buffer for advancing and scanning\n\tsrc []byte        // Source buffer for immutable access\n\n\t// Source Position\n\tsrcPos  token.Pos // current position\n\tprevPos token.Pos // previous position, used for peek() method\n\n\tlastCharLen int // length of last character in bytes\n\tlastLineLen int // length of last line in characters (for correct column reporting)\n\n\ttokStart int // token text start position\n\ttokEnd   int // token text end  position\n\n\t// Error is called for each error encountered. If no Error\n\t// function is set, the error is reported to os.Stderr.\n\tError func(pos token.Pos, msg string)\n\n\t// ErrorCount is incremented by one for each error encountered.\n\tErrorCount int\n\n\t// tokPos is the start position of most recently scanned token; set by\n\t// Scan. The Filename field is always left untouched by the Scanner.  If\n\t// an error is reported (via Error) and Position is invalid, the scanner is\n\t// not inside a token.\n\ttokPos token.Pos\n}\n\n// New creates and initializes a new instance of Scanner using src as\n// its source content.\nfunc New(src []byte) *Scanner {\n\t// even though we accept a src, we read from a io.Reader compatible type\n\t// (*bytes.Buffer). So in the future we might easily change it to streaming\n\t// read.\n\tb := bytes.NewBuffer(src)\n\ts := &Scanner{\n\t\tbuf: b,\n\t\tsrc: src,\n\t}\n\n\t// srcPosition always starts with 1\n\ts.srcPos.Line = 1\n\treturn s\n}\n\n// next reads the next rune from the bufferred reader. Returns the rune(0) if\n// an error occurs (or io.EOF is returned).\nfunc (s *Scanner) next() rune {\n\tch, size, err := s.buf.ReadRune()\n\tif err != nil {\n\t\t// advance for error reporting\n\t\ts.srcPos.Column++\n\t\ts.srcPos.Offset += size\n\t\ts.lastCharLen = size\n\t\treturn eof\n\t}\n\n\t// remember last position\n\ts.prevPos = s.srcPos\n\n\ts.srcPos.Column++\n\ts.lastCharLen = size\n\ts.srcPos.Offset += size\n\n\tif ch == utf8.RuneError && size == 1 {\n\t\ts.err(\"illegal UTF-8 encoding\")\n\t\treturn ch\n\t}\n\n\tif ch == '\\n' {\n\t\ts.srcPos.Line++\n\t\ts.lastLineLen = s.srcPos.Column\n\t\ts.srcPos.Column = 0\n\t}\n\n\tif ch == '\\x00' {\n\t\ts.err(\"unexpected null character (0x00)\")\n\t\treturn eof\n\t}\n\n\tif ch == '\\uE123' {\n\t\ts.err(\"unicode code point U+E123 reserved for internal use\")\n\t\treturn utf8.RuneError\n\t}\n\n\t// debug\n\t// fmt.Printf(\"ch: %q, offset:column: %d:%d\\n\", ch, s.srcPos.Offset, s.srcPos.Column)\n\treturn ch\n}\n\n// unread unreads the previous read Rune and updates the source position\nfunc (s *Scanner) unread() {\n\tif err := s.buf.UnreadRune(); err != nil {\n\t\tpanic(err) // this is user fault, we should catch it\n\t}\n\ts.srcPos = s.prevPos // put back last position\n}\n\n// peek returns the next rune without advancing the reader.\nfunc (s *Scanner) peek() rune {\n\tpeek, _, err := s.buf.ReadRune()\n\tif err != nil {\n\t\treturn eof\n\t}\n\n\ts.buf.UnreadRune()\n\treturn peek\n}\n\n// Scan scans the next token and returns the token.\nfunc (s *Scanner) Scan() token.Token {\n\tch := s.next()\n\n\t// skip white space\n\tfor isWhitespace(ch) {\n\t\tch = s.next()\n\t}\n\n\tvar tok token.Type\n\n\t// token text markings\n\ts.tokStart = s.srcPos.Offset - s.lastCharLen\n\n\t// token position, initial next() is moving the offset by one(size of rune\n\t// actually), though we are interested with the starting point\n\ts.tokPos.Offset = s.srcPos.Offset - s.lastCharLen\n\tif s.srcPos.Column > 0 {\n\t\t// common case: last character was not a '\\n'\n\t\ts.tokPos.Line = s.srcPos.Line\n\t\ts.tokPos.Column = s.srcPos.Column\n\t} else {\n\t\t// last character was a '\\n'\n\t\t// (we cannot be at the beginning of the source\n\t\t// since we have called next() at least once)\n\t\ts.tokPos.Line = s.srcPos.Line - 1\n\t\ts.tokPos.Column = s.lastLineLen\n\t}\n\n\tswitch {\n\tcase isLetter(ch):\n\t\ttok = token.IDENT\n\t\tlit := s.scanIdentifier()\n\t\tif lit == \"true\" || lit == \"false\" {\n\t\t\ttok = token.BOOL\n\t\t}\n\tcase isDecimal(ch):\n\t\ttok = s.scanNumber(ch)\n\tdefault:\n\t\tswitch ch {\n\t\tcase eof:\n\t\t\ttok = token.EOF\n\t\tcase '\"':\n\t\t\ttok = token.STRING\n\t\t\ts.scanString()\n\t\tcase '#', '/':\n\t\t\ttok = token.COMMENT\n\t\t\ts.scanComment(ch)\n\t\tcase '.':\n\t\t\ttok = token.PERIOD\n\t\t\tch = s.peek()\n\t\t\tif isDecimal(ch) {\n\t\t\t\ttok = token.FLOAT\n\t\t\t\tch = s.scanMantissa(ch)\n\t\t\t\tch = s.scanExponent(ch)\n\t\t\t}\n\t\tcase '<':\n\t\t\ttok = token.HEREDOC\n\t\t\ts.scanHeredoc()\n\t\tcase '[':\n\t\t\ttok = token.LBRACK\n\t\tcase ']':\n\t\t\ttok = token.RBRACK\n\t\tcase '{':\n\t\t\ttok = token.LBRACE\n\t\tcase '}':\n\t\t\ttok = token.RBRACE\n\t\tcase ',':\n\t\t\ttok = token.COMMA\n\t\tcase '=':\n\t\t\ttok = token.ASSIGN\n\t\tcase '+':\n\t\t\ttok = token.ADD\n\t\tcase '-':\n\t\t\tif isDecimal(s.peek()) {\n\t\t\t\tch := s.next()\n\t\t\t\ttok = s.scanNumber(ch)\n\t\t\t} else {\n\t\t\t\ttok = token.SUB\n\t\t\t}\n\t\tdefault:\n\t\t\ts.err(\"illegal char\")\n\t\t}\n\t}\n\n\t// finish token ending\n\ts.tokEnd = s.srcPos.Offset\n\n\t// create token literal\n\tvar tokenText string\n\tif s.tokStart >= 0 {\n\t\ttokenText = string(s.src[s.tokStart:s.tokEnd])\n\t}\n\ts.tokStart = s.tokEnd // ensure idempotency of tokenText() call\n\n\treturn token.Token{\n\t\tType: tok,\n\t\tPos:  s.tokPos,\n\t\tText: tokenText,\n\t}\n}\n\nfunc (s *Scanner) scanComment(ch rune) {\n\t// single line comments\n\tif ch == '#' || (ch == '/' && s.peek() != '*') {\n\t\tif ch == '/' && s.peek() != '/' {\n\t\t\ts.err(\"expected '/' for comment\")\n\t\t\treturn\n\t\t}\n\n\t\tch = s.next()\n\t\tfor ch != '\\n' && ch >= 0 && ch != eof {\n\t\t\tch = s.next()\n\t\t}\n\t\tif ch != eof && ch >= 0 {\n\t\t\ts.unread()\n\t\t}\n\t\treturn\n\t}\n\n\t// be sure we get the character after /* This allows us to find comment's\n\t// that are not erminated\n\tif ch == '/' {\n\t\ts.next()\n\t\tch = s.next() // read character after \"/*\"\n\t}\n\n\t// look for /* - style comments\n\tfor {\n\t\tif ch < 0 || ch == eof {\n\t\t\ts.err(\"comment not terminated\")\n\t\t\tbreak\n\t\t}\n\n\t\tch0 := ch\n\t\tch = s.next()\n\t\tif ch0 == '*' && ch == '/' {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n// scanNumber scans a HCL number definition starting with the given rune\nfunc (s *Scanner) scanNumber(ch rune) token.Type {\n\tif ch == '0' {\n\t\t// check for hexadecimal, octal or float\n\t\tch = s.next()\n\t\tif ch == 'x' || ch == 'X' {\n\t\t\t// hexadecimal\n\t\t\tch = s.next()\n\t\t\tfound := false\n\t\t\tfor isHexadecimal(ch) {\n\t\t\t\tch = s.next()\n\t\t\t\tfound = true\n\t\t\t}\n\n\t\t\tif !found {\n\t\t\t\ts.err(\"illegal hexadecimal number\")\n\t\t\t}\n\n\t\t\tif ch != eof {\n\t\t\t\ts.unread()\n\t\t\t}\n\n\t\t\treturn token.NUMBER\n\t\t}\n\n\t\t// now it's either something like: 0421(octal) or 0.1231(float)\n\t\tillegalOctal := false\n\t\tfor isDecimal(ch) {\n\t\t\tch = s.next()\n\t\t\tif ch == '8' || ch == '9' {\n\t\t\t\t// this is just a possibility. For example 0159 is illegal, but\n\t\t\t\t// 0159.23 is valid. So we mark a possible illegal octal. If\n\t\t\t\t// the next character is not a period, we'll print the error.\n\t\t\t\tillegalOctal = true\n\t\t\t}\n\t\t}\n\n\t\tif ch == 'e' || ch == 'E' {\n\t\t\tch = s.scanExponent(ch)\n\t\t\treturn token.FLOAT\n\t\t}\n\n\t\tif ch == '.' {\n\t\t\tch = s.scanFraction(ch)\n\n\t\t\tif ch == 'e' || ch == 'E' {\n\t\t\t\tch = s.next()\n\t\t\t\tch = s.scanExponent(ch)\n\t\t\t}\n\t\t\treturn token.FLOAT\n\t\t}\n\n\t\tif illegalOctal {\n\t\t\ts.err(\"illegal octal number\")\n\t\t}\n\n\t\tif ch != eof {\n\t\t\ts.unread()\n\t\t}\n\t\treturn token.NUMBER\n\t}\n\n\ts.scanMantissa(ch)\n\tch = s.next() // seek forward\n\tif ch == 'e' || ch == 'E' {\n\t\tch = s.scanExponent(ch)\n\t\treturn token.FLOAT\n\t}\n\n\tif ch == '.' {\n\t\tch = s.scanFraction(ch)\n\t\tif ch == 'e' || ch == 'E' {\n\t\t\tch = s.next()\n\t\t\tch = s.scanExponent(ch)\n\t\t}\n\t\treturn token.FLOAT\n\t}\n\n\tif ch != eof {\n\t\ts.unread()\n\t}\n\treturn token.NUMBER\n}\n\n// scanMantissa scans the mantissa beginning from the rune. It returns the next\n// non decimal rune. It's used to determine wheter it's a fraction or exponent.\nfunc (s *Scanner) scanMantissa(ch rune) rune {\n\tscanned := false\n\tfor isDecimal(ch) {\n\t\tch = s.next()\n\t\tscanned = true\n\t}\n\n\tif scanned && ch != eof {\n\t\ts.unread()\n\t}\n\treturn ch\n}\n\n// scanFraction scans the fraction after the '.' rune\nfunc (s *Scanner) scanFraction(ch rune) rune {\n\tif ch == '.' {\n\t\tch = s.peek() // we peek just to see if we can move forward\n\t\tch = s.scanMantissa(ch)\n\t}\n\treturn ch\n}\n\n// scanExponent scans the remaining parts of an exponent after the 'e' or 'E'\n// rune.\nfunc (s *Scanner) scanExponent(ch rune) rune {\n\tif ch == 'e' || ch == 'E' {\n\t\tch = s.next()\n\t\tif ch == '-' || ch == '+' {\n\t\t\tch = s.next()\n\t\t}\n\t\tch = s.scanMantissa(ch)\n\t}\n\treturn ch\n}\n\n// scanHeredoc scans a heredoc string\nfunc (s *Scanner) scanHeredoc() {\n\t// Scan the second '<' in example: '<<EOF'\n\tif s.next() != '<' {\n\t\ts.err(\"heredoc expected second '<', didn't see it\")\n\t\treturn\n\t}\n\n\t// Get the original offset so we can read just the heredoc ident\n\toffs := s.srcPos.Offset\n\n\t// Scan the identifier\n\tch := s.next()\n\n\t// Indented heredoc syntax\n\tif ch == '-' {\n\t\tch = s.next()\n\t}\n\n\tfor isLetter(ch) || isDigit(ch) {\n\t\tch = s.next()\n\t}\n\n\t// If we reached an EOF then that is not good\n\tif ch == eof {\n\t\ts.err(\"heredoc not terminated\")\n\t\treturn\n\t}\n\n\t// Ignore the '\\r' in Windows line endings\n\tif ch == '\\r' {\n\t\tif s.peek() == '\\n' {\n\t\t\tch = s.next()\n\t\t}\n\t}\n\n\t// If we didn't reach a newline then that is also not good\n\tif ch != '\\n' {\n\t\ts.err(\"invalid characters in heredoc anchor\")\n\t\treturn\n\t}\n\n\t// Read the identifier\n\tidentBytes := s.src[offs : s.srcPos.Offset-s.lastCharLen]\n\tif len(identBytes) == 0 || (len(identBytes) == 1 && identBytes[0] == '-') {\n\t\ts.err(\"zero-length heredoc anchor\")\n\t\treturn\n\t}\n\n\tvar identRegexp *regexp.Regexp\n\tif identBytes[0] == '-' {\n\t\tidentRegexp = regexp.MustCompile(fmt.Sprintf(`^[[:space:]]*%s\\r*\\z`, identBytes[1:]))\n\t} else {\n\t\tidentRegexp = regexp.MustCompile(fmt.Sprintf(`^[[:space:]]*%s\\r*\\z`, identBytes))\n\t}\n\n\t// Read the actual string value\n\tlineStart := s.srcPos.Offset\n\tfor {\n\t\tch := s.next()\n\n\t\t// Special newline handling.\n\t\tif ch == '\\n' {\n\t\t\t// Math is fast, so we first compare the byte counts to see if we have a chance\n\t\t\t// of seeing the same identifier - if the length is less than the number of bytes\n\t\t\t// in the identifier, this cannot be a valid terminator.\n\t\t\tlineBytesLen := s.srcPos.Offset - s.lastCharLen - lineStart\n\t\t\tif lineBytesLen >= len(identBytes) && identRegexp.Match(s.src[lineStart:s.srcPos.Offset-s.lastCharLen]) {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// Not an anchor match, record the start of a new line\n\t\t\tlineStart = s.srcPos.Offset\n\t\t}\n\n\t\tif ch == eof {\n\t\t\ts.err(\"heredoc not terminated\")\n\t\t\treturn\n\t\t}\n\t}\n\n\treturn\n}\n\n// scanString scans a quoted string\nfunc (s *Scanner) scanString() {\n\tbraces := 0\n\tfor {\n\t\t// '\"' opening already consumed\n\t\t// read character after quote\n\t\tch := s.next()\n\n\t\tif (ch == '\\n' && braces == 0) || ch < 0 || ch == eof {\n\t\t\ts.err(\"literal not terminated\")\n\t\t\treturn\n\t\t}\n\n\t\tif ch == '\"' && braces == 0 {\n\t\t\tbreak\n\t\t}\n\n\t\t// If we're going into a ${} then we can ignore quotes for awhile\n\t\tif braces == 0 && ch == '$' && s.peek() == '{' {\n\t\t\tbraces++\n\t\t\ts.next()\n\t\t} else if braces > 0 && ch == '{' {\n\t\t\tbraces++\n\t\t}\n\t\tif braces > 0 && ch == '}' {\n\t\t\tbraces--\n\t\t}\n\n\t\tif ch == '\\\\' {\n\t\t\ts.scanEscape()\n\t\t}\n\t}\n\n\treturn\n}\n\n// scanEscape scans an escape sequence\nfunc (s *Scanner) scanEscape() rune {\n\t// http://en.cppreference.com/w/cpp/language/escape\n\tch := s.next() // read character after '/'\n\tswitch ch {\n\tcase 'a', 'b', 'f', 'n', 'r', 't', 'v', '\\\\', '\"':\n\t\t// nothing to do\n\tcase '0', '1', '2', '3', '4', '5', '6', '7':\n\t\t// octal notation\n\t\tch = s.scanDigits(ch, 8, 3)\n\tcase 'x':\n\t\t// hexademical notation\n\t\tch = s.scanDigits(s.next(), 16, 2)\n\tcase 'u':\n\t\t// universal character name\n\t\tch = s.scanDigits(s.next(), 16, 4)\n\tcase 'U':\n\t\t// universal character name\n\t\tch = s.scanDigits(s.next(), 16, 8)\n\tdefault:\n\t\ts.err(\"illegal char escape\")\n\t}\n\treturn ch\n}\n\n// scanDigits scans a rune with the given base for n times. For example an\n// octal notation \\184 would yield in scanDigits(ch, 8, 3)\nfunc (s *Scanner) scanDigits(ch rune, base, n int) rune {\n\tstart := n\n\tfor n > 0 && digitVal(ch) < base {\n\t\tch = s.next()\n\t\tif ch == eof {\n\t\t\t// If we see an EOF, we halt any more scanning of digits\n\t\t\t// immediately.\n\t\t\tbreak\n\t\t}\n\n\t\tn--\n\t}\n\tif n > 0 {\n\t\ts.err(\"illegal char escape\")\n\t}\n\n\tif n != start && ch != eof {\n\t\t// we scanned all digits, put the last non digit char back,\n\t\t// only if we read anything at all\n\t\ts.unread()\n\t}\n\n\treturn ch\n}\n\n// scanIdentifier scans an identifier and returns the literal string\nfunc (s *Scanner) scanIdentifier() string {\n\toffs := s.srcPos.Offset - s.lastCharLen\n\tch := s.next()\n\tfor isLetter(ch) || isDigit(ch) || ch == '-' || ch == '.' {\n\t\tch = s.next()\n\t}\n\n\tif ch != eof {\n\t\ts.unread() // we got identifier, put back latest char\n\t}\n\n\treturn string(s.src[offs:s.srcPos.Offset])\n}\n\n// recentPosition returns the position of the character immediately after the\n// character or token returned by the last call to Scan.\nfunc (s *Scanner) recentPosition() (pos token.Pos) {\n\tpos.Offset = s.srcPos.Offset - s.lastCharLen\n\tswitch {\n\tcase s.srcPos.Column > 0:\n\t\t// common case: last character was not a '\\n'\n\t\tpos.Line = s.srcPos.Line\n\t\tpos.Column = s.srcPos.Column\n\tcase s.lastLineLen > 0:\n\t\t// last character was a '\\n'\n\t\t// (we cannot be at the beginning of the source\n\t\t// since we have called next() at least once)\n\t\tpos.Line = s.srcPos.Line - 1\n\t\tpos.Column = s.lastLineLen\n\tdefault:\n\t\t// at the beginning of the source\n\t\tpos.Line = 1\n\t\tpos.Column = 1\n\t}\n\treturn\n}\n\n// err prints the error of any scanning to s.Error function. If the function is\n// not defined, by default it prints them to os.Stderr\nfunc (s *Scanner) err(msg string) {\n\ts.ErrorCount++\n\tpos := s.recentPosition()\n\n\tif s.Error != nil {\n\t\ts.Error(pos, msg)\n\t\treturn\n\t}\n\n\tfmt.Fprintf(os.Stderr, \"%s: %s\\n\", pos, msg)\n}\n\n// isHexadecimal returns true if the given rune is a letter\nfunc isLetter(ch rune) bool {\n\treturn 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= 0x80 && unicode.IsLetter(ch)\n}\n\n// isDigit returns true if the given rune is a decimal digit\nfunc isDigit(ch rune) bool {\n\treturn '0' <= ch && ch <= '9' || ch >= 0x80 && unicode.IsDigit(ch)\n}\n\n// isDecimal returns true if the given rune is a decimal number\nfunc isDecimal(ch rune) bool {\n\treturn '0' <= ch && ch <= '9'\n}\n\n// isHexadecimal returns true if the given rune is an hexadecimal number\nfunc isHexadecimal(ch rune) bool {\n\treturn '0' <= ch && ch <= '9' || 'a' <= ch && ch <= 'f' || 'A' <= ch && ch <= 'F'\n}\n\n// isWhitespace returns true if the rune is a space, tab, newline or carriage return\nfunc isWhitespace(ch rune) bool {\n\treturn ch == ' ' || ch == '\\t' || ch == '\\n' || ch == '\\r'\n}\n\n// digitVal returns the integer value of a given octal,decimal or hexadecimal rune\nfunc digitVal(ch rune) int {\n\tswitch {\n\tcase '0' <= ch && ch <= '9':\n\t\treturn int(ch - '0')\n\tcase 'a' <= ch && ch <= 'f':\n\t\treturn int(ch - 'a' + 10)\n\tcase 'A' <= ch && ch <= 'F':\n\t\treturn int(ch - 'A' + 10)\n\t}\n\treturn 16 // larger than any legal digit val\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go",
    "content": "package strconv\n\nimport (\n\t\"errors\"\n\t\"unicode/utf8\"\n)\n\n// ErrSyntax indicates that a value does not have the right syntax for the target type.\nvar ErrSyntax = errors.New(\"invalid syntax\")\n\n// Unquote interprets s as a single-quoted, double-quoted,\n// or backquoted Go string literal, returning the string value\n// that s quotes.  (If s is single-quoted, it would be a Go\n// character literal; Unquote returns the corresponding\n// one-character string.)\nfunc Unquote(s string) (t string, err error) {\n\tn := len(s)\n\tif n < 2 {\n\t\treturn \"\", ErrSyntax\n\t}\n\tquote := s[0]\n\tif quote != s[n-1] {\n\t\treturn \"\", ErrSyntax\n\t}\n\ts = s[1 : n-1]\n\n\tif quote != '\"' {\n\t\treturn \"\", ErrSyntax\n\t}\n\tif !contains(s, '$') && !contains(s, '{') && contains(s, '\\n') {\n\t\treturn \"\", ErrSyntax\n\t}\n\n\t// Is it trivial?  Avoid allocation.\n\tif !contains(s, '\\\\') && !contains(s, quote) && !contains(s, '$') {\n\t\tswitch quote {\n\t\tcase '\"':\n\t\t\treturn s, nil\n\t\tcase '\\'':\n\t\t\tr, size := utf8.DecodeRuneInString(s)\n\t\t\tif size == len(s) && (r != utf8.RuneError || size != 1) {\n\t\t\t\treturn s, nil\n\t\t\t}\n\t\t}\n\t}\n\n\tvar runeTmp [utf8.UTFMax]byte\n\tbuf := make([]byte, 0, 3*len(s)/2) // Try to avoid more allocations.\n\tfor len(s) > 0 {\n\t\t// If we're starting a '${}' then let it through un-unquoted.\n\t\t// Specifically: we don't unquote any characters within the `${}`\n\t\t// section.\n\t\tif s[0] == '$' && len(s) > 1 && s[1] == '{' {\n\t\t\tbuf = append(buf, '$', '{')\n\t\t\ts = s[2:]\n\n\t\t\t// Continue reading until we find the closing brace, copying as-is\n\t\t\tbraces := 1\n\t\t\tfor len(s) > 0 && braces > 0 {\n\t\t\t\tr, size := utf8.DecodeRuneInString(s)\n\t\t\t\tif r == utf8.RuneError {\n\t\t\t\t\treturn \"\", ErrSyntax\n\t\t\t\t}\n\n\t\t\t\ts = s[size:]\n\n\t\t\t\tn := utf8.EncodeRune(runeTmp[:], r)\n\t\t\t\tbuf = append(buf, runeTmp[:n]...)\n\n\t\t\t\tswitch r {\n\t\t\t\tcase '{':\n\t\t\t\t\tbraces++\n\t\t\t\tcase '}':\n\t\t\t\t\tbraces--\n\t\t\t\t}\n\t\t\t}\n\t\t\tif braces != 0 {\n\t\t\t\treturn \"\", ErrSyntax\n\t\t\t}\n\t\t\tif len(s) == 0 {\n\t\t\t\t// If there's no string left, we're done!\n\t\t\t\tbreak\n\t\t\t} else {\n\t\t\t\t// If there's more left, we need to pop back up to the top of the loop\n\t\t\t\t// in case there's another interpolation in this string.\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\tif s[0] == '\\n' {\n\t\t\treturn \"\", ErrSyntax\n\t\t}\n\n\t\tc, multibyte, ss, err := unquoteChar(s, quote)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\ts = ss\n\t\tif c < utf8.RuneSelf || !multibyte {\n\t\t\tbuf = append(buf, byte(c))\n\t\t} else {\n\t\t\tn := utf8.EncodeRune(runeTmp[:], c)\n\t\t\tbuf = append(buf, runeTmp[:n]...)\n\t\t}\n\t\tif quote == '\\'' && len(s) != 0 {\n\t\t\t// single-quoted must be single character\n\t\t\treturn \"\", ErrSyntax\n\t\t}\n\t}\n\treturn string(buf), nil\n}\n\n// contains reports whether the string contains the byte c.\nfunc contains(s string, c byte) bool {\n\tfor i := 0; i < len(s); i++ {\n\t\tif s[i] == c {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc unhex(b byte) (v rune, ok bool) {\n\tc := rune(b)\n\tswitch {\n\tcase '0' <= c && c <= '9':\n\t\treturn c - '0', true\n\tcase 'a' <= c && c <= 'f':\n\t\treturn c - 'a' + 10, true\n\tcase 'A' <= c && c <= 'F':\n\t\treturn c - 'A' + 10, true\n\t}\n\treturn\n}\n\nfunc unquoteChar(s string, quote byte) (value rune, multibyte bool, tail string, err error) {\n\t// easy cases\n\tswitch c := s[0]; {\n\tcase c == quote && (quote == '\\'' || quote == '\"'):\n\t\terr = ErrSyntax\n\t\treturn\n\tcase c >= utf8.RuneSelf:\n\t\tr, size := utf8.DecodeRuneInString(s)\n\t\treturn r, true, s[size:], nil\n\tcase c != '\\\\':\n\t\treturn rune(s[0]), false, s[1:], nil\n\t}\n\n\t// hard case: c is backslash\n\tif len(s) <= 1 {\n\t\terr = ErrSyntax\n\t\treturn\n\t}\n\tc := s[1]\n\ts = s[2:]\n\n\tswitch c {\n\tcase 'a':\n\t\tvalue = '\\a'\n\tcase 'b':\n\t\tvalue = '\\b'\n\tcase 'f':\n\t\tvalue = '\\f'\n\tcase 'n':\n\t\tvalue = '\\n'\n\tcase 'r':\n\t\tvalue = '\\r'\n\tcase 't':\n\t\tvalue = '\\t'\n\tcase 'v':\n\t\tvalue = '\\v'\n\tcase 'x', 'u', 'U':\n\t\tn := 0\n\t\tswitch c {\n\t\tcase 'x':\n\t\t\tn = 2\n\t\tcase 'u':\n\t\t\tn = 4\n\t\tcase 'U':\n\t\t\tn = 8\n\t\t}\n\t\tvar v rune\n\t\tif len(s) < n {\n\t\t\terr = ErrSyntax\n\t\t\treturn\n\t\t}\n\t\tfor j := 0; j < n; j++ {\n\t\t\tx, ok := unhex(s[j])\n\t\t\tif !ok {\n\t\t\t\terr = ErrSyntax\n\t\t\t\treturn\n\t\t\t}\n\t\t\tv = v<<4 | x\n\t\t}\n\t\ts = s[n:]\n\t\tif c == 'x' {\n\t\t\t// single-byte string, possibly not UTF-8\n\t\t\tvalue = v\n\t\t\tbreak\n\t\t}\n\t\tif v > utf8.MaxRune {\n\t\t\terr = ErrSyntax\n\t\t\treturn\n\t\t}\n\t\tvalue = v\n\t\tmultibyte = true\n\tcase '0', '1', '2', '3', '4', '5', '6', '7':\n\t\tv := rune(c) - '0'\n\t\tif len(s) < 2 {\n\t\t\terr = ErrSyntax\n\t\t\treturn\n\t\t}\n\t\tfor j := 0; j < 2; j++ { // one digit already; two more\n\t\t\tx := rune(s[j]) - '0'\n\t\t\tif x < 0 || x > 7 {\n\t\t\t\terr = ErrSyntax\n\t\t\t\treturn\n\t\t\t}\n\t\t\tv = (v << 3) | x\n\t\t}\n\t\ts = s[2:]\n\t\tif v > 255 {\n\t\t\terr = ErrSyntax\n\t\t\treturn\n\t\t}\n\t\tvalue = v\n\tcase '\\\\':\n\t\tvalue = '\\\\'\n\tcase '\\'', '\"':\n\t\tif c != quote {\n\t\t\terr = ErrSyntax\n\t\t\treturn\n\t\t}\n\t\tvalue = rune(c)\n\tdefault:\n\t\terr = ErrSyntax\n\t\treturn\n\t}\n\ttail = s\n\treturn\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/token/position.go",
    "content": "package token\n\nimport \"fmt\"\n\n// Pos describes an arbitrary source position\n// including the file, line, and column location.\n// A Position is valid if the line number is > 0.\ntype Pos struct {\n\tFilename string // filename, if any\n\tOffset   int    // offset, starting at 0\n\tLine     int    // line number, starting at 1\n\tColumn   int    // column number, starting at 1 (character count)\n}\n\n// IsValid returns true if the position is valid.\nfunc (p *Pos) IsValid() bool { return p.Line > 0 }\n\n// String returns a string in one of several forms:\n//\n//\tfile:line:column    valid position with file name\n//\tline:column         valid position without file name\n//\tfile                invalid position with file name\n//\t-                   invalid position without file name\nfunc (p Pos) String() string {\n\ts := p.Filename\n\tif p.IsValid() {\n\t\tif s != \"\" {\n\t\t\ts += \":\"\n\t\t}\n\t\ts += fmt.Sprintf(\"%d:%d\", p.Line, p.Column)\n\t}\n\tif s == \"\" {\n\t\ts = \"-\"\n\t}\n\treturn s\n}\n\n// Before reports whether the position p is before u.\nfunc (p Pos) Before(u Pos) bool {\n\treturn u.Offset > p.Offset || u.Line > p.Line\n}\n\n// After reports whether the position p is after u.\nfunc (p Pos) After(u Pos) bool {\n\treturn u.Offset < p.Offset || u.Line < p.Line\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl/token/token.go",
    "content": "// Package token defines constants representing the lexical tokens for HCL\n// (HashiCorp Configuration Language)\npackage token\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n\n\thclstrconv \"github.com/hashicorp/hcl/hcl/strconv\"\n)\n\n// Token defines a single HCL token which can be obtained via the Scanner\ntype Token struct {\n\tType Type\n\tPos  Pos\n\tText string\n\tJSON bool\n}\n\n// Type is the set of lexical tokens of the HCL (HashiCorp Configuration Language)\ntype Type int\n\nconst (\n\t// Special tokens\n\tILLEGAL Type = iota\n\tEOF\n\tCOMMENT\n\n\tidentifier_beg\n\tIDENT // literals\n\tliteral_beg\n\tNUMBER  // 12345\n\tFLOAT   // 123.45\n\tBOOL    // true,false\n\tSTRING  // \"abc\"\n\tHEREDOC // <<FOO\\nbar\\nFOO\n\tliteral_end\n\tidentifier_end\n\n\toperator_beg\n\tLBRACK // [\n\tLBRACE // {\n\tCOMMA  // ,\n\tPERIOD // .\n\n\tRBRACK // ]\n\tRBRACE // }\n\n\tASSIGN // =\n\tADD    // +\n\tSUB    // -\n\toperator_end\n)\n\nvar tokens = [...]string{\n\tILLEGAL: \"ILLEGAL\",\n\n\tEOF:     \"EOF\",\n\tCOMMENT: \"COMMENT\",\n\n\tIDENT:  \"IDENT\",\n\tNUMBER: \"NUMBER\",\n\tFLOAT:  \"FLOAT\",\n\tBOOL:   \"BOOL\",\n\tSTRING: \"STRING\",\n\n\tLBRACK:  \"LBRACK\",\n\tLBRACE:  \"LBRACE\",\n\tCOMMA:   \"COMMA\",\n\tPERIOD:  \"PERIOD\",\n\tHEREDOC: \"HEREDOC\",\n\n\tRBRACK: \"RBRACK\",\n\tRBRACE: \"RBRACE\",\n\n\tASSIGN: \"ASSIGN\",\n\tADD:    \"ADD\",\n\tSUB:    \"SUB\",\n}\n\n// String returns the string corresponding to the token tok.\nfunc (t Type) String() string {\n\ts := \"\"\n\tif 0 <= t && t < Type(len(tokens)) {\n\t\ts = tokens[t]\n\t}\n\tif s == \"\" {\n\t\ts = \"token(\" + strconv.Itoa(int(t)) + \")\"\n\t}\n\treturn s\n}\n\n// IsIdentifier returns true for tokens corresponding to identifiers and basic\n// type literals; it returns false otherwise.\nfunc (t Type) IsIdentifier() bool { return identifier_beg < t && t < identifier_end }\n\n// IsLiteral returns true for tokens corresponding to basic type literals; it\n// returns false otherwise.\nfunc (t Type) IsLiteral() bool { return literal_beg < t && t < literal_end }\n\n// IsOperator returns true for tokens corresponding to operators and\n// delimiters; it returns false otherwise.\nfunc (t Type) IsOperator() bool { return operator_beg < t && t < operator_end }\n\n// String returns the token's literal text. Note that this is only\n// applicable for certain token types, such as token.IDENT,\n// token.STRING, etc..\nfunc (t Token) String() string {\n\treturn fmt.Sprintf(\"%s %s %s\", t.Pos.String(), t.Type.String(), t.Text)\n}\n\n// Value returns the properly typed value for this token. The type of\n// the returned interface{} is guaranteed based on the Type field.\n//\n// This can only be called for literal types. If it is called for any other\n// type, this will panic.\nfunc (t Token) Value() interface{} {\n\tswitch t.Type {\n\tcase BOOL:\n\t\tif t.Text == \"true\" {\n\t\t\treturn true\n\t\t} else if t.Text == \"false\" {\n\t\t\treturn false\n\t\t}\n\n\t\tpanic(\"unknown bool value: \" + t.Text)\n\tcase FLOAT:\n\t\tv, err := strconv.ParseFloat(t.Text, 64)\n\t\tif err != nil {\n\t\t\tpanic(err)\n\t\t}\n\n\t\treturn float64(v)\n\tcase NUMBER:\n\t\tv, err := strconv.ParseInt(t.Text, 0, 64)\n\t\tif err != nil {\n\t\t\tpanic(err)\n\t\t}\n\n\t\treturn int64(v)\n\tcase IDENT:\n\t\treturn t.Text\n\tcase HEREDOC:\n\t\treturn unindentHeredoc(t.Text)\n\tcase STRING:\n\t\t// Determine the Unquote method to use. If it came from JSON,\n\t\t// then we need to use the built-in unquote since we have to\n\t\t// escape interpolations there.\n\t\tf := hclstrconv.Unquote\n\t\tif t.JSON {\n\t\t\tf = strconv.Unquote\n\t\t}\n\n\t\t// This case occurs if json null is used\n\t\tif t.Text == \"\" {\n\t\t\treturn \"\"\n\t\t}\n\n\t\tv, err := f(t.Text)\n\t\tif err != nil {\n\t\t\tpanic(fmt.Sprintf(\"unquote %s err: %s\", t.Text, err))\n\t\t}\n\n\t\treturn v\n\tdefault:\n\t\tpanic(fmt.Sprintf(\"unimplemented Value for type: %s\", t.Type))\n\t}\n}\n\n// unindentHeredoc returns the string content of a HEREDOC if it is started with <<\n// and the content of a HEREDOC with the hanging indent removed if it is started with\n// a <<-, and the terminating line is at least as indented as the least indented line.\nfunc unindentHeredoc(heredoc string) string {\n\t// We need to find the end of the marker\n\tidx := strings.IndexByte(heredoc, '\\n')\n\tif idx == -1 {\n\t\tpanic(\"heredoc doesn't contain newline\")\n\t}\n\n\tunindent := heredoc[2] == '-'\n\n\t// We can optimize if the heredoc isn't marked for indentation\n\tif !unindent {\n\t\treturn string(heredoc[idx+1 : len(heredoc)-idx+1])\n\t}\n\n\t// We need to unindent each line based on the indentation level of the marker\n\tlines := strings.Split(string(heredoc[idx+1:len(heredoc)-idx+2]), \"\\n\")\n\twhitespacePrefix := lines[len(lines)-1]\n\n\tisIndented := true\n\tfor _, v := range lines {\n\t\tif strings.HasPrefix(v, whitespacePrefix) {\n\t\t\tcontinue\n\t\t}\n\n\t\tisIndented = false\n\t\tbreak\n\t}\n\n\t// If all lines are not at least as indented as the terminating mark, return the\n\t// heredoc as is, but trim the leading space from the marker on the final line.\n\tif !isIndented {\n\t\treturn strings.TrimRight(string(heredoc[idx+1:len(heredoc)-idx+1]), \" \\t\")\n\t}\n\n\tunindentedLines := make([]string, len(lines))\n\tfor k, v := range lines {\n\t\tif k == len(lines)-1 {\n\t\t\tunindentedLines[k] = \"\"\n\t\t\tbreak\n\t\t}\n\n\t\tunindentedLines[k] = strings.TrimPrefix(v, whitespacePrefix)\n\t}\n\n\treturn strings.Join(unindentedLines, \"\\n\")\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/hcl.go",
    "content": "// Package hcl decodes HCL into usable Go structures.\n//\n// hcl input can come in either pure HCL format or JSON format.\n// It can be parsed into an AST, and then decoded into a structure,\n// or it can be decoded directly from a string into a structure.\n//\n// If you choose to parse HCL into a raw AST, the benefit is that you\n// can write custom visitor implementations to implement custom\n// semantic checks. By default, HCL does not perform any semantic\n// checks.\npackage hcl\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/json/parser/flatten.go",
    "content": "package parser\n\nimport \"github.com/hashicorp/hcl/hcl/ast\"\n\n// flattenObjects takes an AST node, walks it, and flattens\nfunc flattenObjects(node ast.Node) {\n\tast.Walk(node, func(n ast.Node) (ast.Node, bool) {\n\t\t// We only care about lists, because this is what we modify\n\t\tlist, ok := n.(*ast.ObjectList)\n\t\tif !ok {\n\t\t\treturn n, true\n\t\t}\n\n\t\t// Rebuild the item list\n\t\titems := make([]*ast.ObjectItem, 0, len(list.Items))\n\t\tfrontier := make([]*ast.ObjectItem, len(list.Items))\n\t\tcopy(frontier, list.Items)\n\t\tfor len(frontier) > 0 {\n\t\t\t// Pop the current item\n\t\t\tn := len(frontier)\n\t\t\titem := frontier[n-1]\n\t\t\tfrontier = frontier[:n-1]\n\n\t\t\tswitch v := item.Val.(type) {\n\t\t\tcase *ast.ObjectType:\n\t\t\t\titems, frontier = flattenObjectType(v, item, items, frontier)\n\t\t\tcase *ast.ListType:\n\t\t\t\titems, frontier = flattenListType(v, item, items, frontier)\n\t\t\tdefault:\n\t\t\t\titems = append(items, item)\n\t\t\t}\n\t\t}\n\n\t\t// Reverse the list since the frontier model runs things backwards\n\t\tfor i := len(items)/2 - 1; i >= 0; i-- {\n\t\t\topp := len(items) - 1 - i\n\t\t\titems[i], items[opp] = items[opp], items[i]\n\t\t}\n\n\t\t// Done! Set the original items\n\t\tlist.Items = items\n\t\treturn n, true\n\t})\n}\n\nfunc flattenListType(\n\tot *ast.ListType,\n\titem *ast.ObjectItem,\n\titems []*ast.ObjectItem,\n\tfrontier []*ast.ObjectItem) ([]*ast.ObjectItem, []*ast.ObjectItem) {\n\t// If the list is empty, keep the original list\n\tif len(ot.List) == 0 {\n\t\titems = append(items, item)\n\t\treturn items, frontier\n\t}\n\n\t// All the elements of this object must also be objects!\n\tfor _, subitem := range ot.List {\n\t\tif _, ok := subitem.(*ast.ObjectType); !ok {\n\t\t\titems = append(items, item)\n\t\t\treturn items, frontier\n\t\t}\n\t}\n\n\t// Great! We have a match go through all the items and flatten\n\tfor _, elem := range ot.List {\n\t\t// Add it to the frontier so that we can recurse\n\t\tfrontier = append(frontier, &ast.ObjectItem{\n\t\t\tKeys:        item.Keys,\n\t\t\tAssign:      item.Assign,\n\t\t\tVal:         elem,\n\t\t\tLeadComment: item.LeadComment,\n\t\t\tLineComment: item.LineComment,\n\t\t})\n\t}\n\n\treturn items, frontier\n}\n\nfunc flattenObjectType(\n\tot *ast.ObjectType,\n\titem *ast.ObjectItem,\n\titems []*ast.ObjectItem,\n\tfrontier []*ast.ObjectItem) ([]*ast.ObjectItem, []*ast.ObjectItem) {\n\t// If the list has no items we do not have to flatten anything\n\tif ot.List.Items == nil {\n\t\titems = append(items, item)\n\t\treturn items, frontier\n\t}\n\n\t// All the elements of this object must also be objects!\n\tfor _, subitem := range ot.List.Items {\n\t\tif _, ok := subitem.Val.(*ast.ObjectType); !ok {\n\t\t\titems = append(items, item)\n\t\t\treturn items, frontier\n\t\t}\n\t}\n\n\t// Great! We have a match go through all the items and flatten\n\tfor _, subitem := range ot.List.Items {\n\t\t// Copy the new key\n\t\tkeys := make([]*ast.ObjectKey, len(item.Keys)+len(subitem.Keys))\n\t\tcopy(keys, item.Keys)\n\t\tcopy(keys[len(item.Keys):], subitem.Keys)\n\n\t\t// Add it to the frontier so that we can recurse\n\t\tfrontier = append(frontier, &ast.ObjectItem{\n\t\t\tKeys:        keys,\n\t\t\tAssign:      item.Assign,\n\t\t\tVal:         subitem.Val,\n\t\t\tLeadComment: item.LeadComment,\n\t\t\tLineComment: item.LineComment,\n\t\t})\n\t}\n\n\treturn items, frontier\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/json/parser/parser.go",
    "content": "package parser\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\n\t\"github.com/hashicorp/hcl/hcl/ast\"\n\thcltoken \"github.com/hashicorp/hcl/hcl/token\"\n\t\"github.com/hashicorp/hcl/json/scanner\"\n\t\"github.com/hashicorp/hcl/json/token\"\n)\n\ntype Parser struct {\n\tsc *scanner.Scanner\n\n\t// Last read token\n\ttok       token.Token\n\tcommaPrev token.Token\n\n\tenableTrace bool\n\tindent      int\n\tn           int // buffer size (max = 1)\n}\n\nfunc newParser(src []byte) *Parser {\n\treturn &Parser{\n\t\tsc: scanner.New(src),\n\t}\n}\n\n// Parse returns the fully parsed source and returns the abstract syntax tree.\nfunc Parse(src []byte) (*ast.File, error) {\n\tp := newParser(src)\n\treturn p.Parse()\n}\n\nvar errEofToken = errors.New(\"EOF token found\")\n\n// Parse returns the fully parsed source and returns the abstract syntax tree.\nfunc (p *Parser) Parse() (*ast.File, error) {\n\tf := &ast.File{}\n\tvar err, scerr error\n\tp.sc.Error = func(pos token.Pos, msg string) {\n\t\tscerr = fmt.Errorf(\"%s: %s\", pos, msg)\n\t}\n\n\t// The root must be an object in JSON\n\tobject, err := p.object()\n\tif scerr != nil {\n\t\treturn nil, scerr\n\t}\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// We make our final node an object list so it is more HCL compatible\n\tf.Node = object.List\n\n\t// Flatten it, which finds patterns and turns them into more HCL-like\n\t// AST trees.\n\tflattenObjects(f.Node)\n\n\treturn f, nil\n}\n\nfunc (p *Parser) objectList() (*ast.ObjectList, error) {\n\tdefer un(trace(p, \"ParseObjectList\"))\n\tnode := &ast.ObjectList{}\n\n\tfor {\n\t\tn, err := p.objectItem()\n\t\tif err == errEofToken {\n\t\t\tbreak // we are finished\n\t\t}\n\n\t\t// we don't return a nil node, because might want to use already\n\t\t// collected items.\n\t\tif err != nil {\n\t\t\treturn node, err\n\t\t}\n\n\t\tnode.Add(n)\n\n\t\t// Check for a followup comma. If it isn't a comma, then we're done\n\t\tif tok := p.scan(); tok.Type != token.COMMA {\n\t\t\tbreak\n\t\t}\n\t}\n\n\treturn node, nil\n}\n\n// objectItem parses a single object item\nfunc (p *Parser) objectItem() (*ast.ObjectItem, error) {\n\tdefer un(trace(p, \"ParseObjectItem\"))\n\n\tkeys, err := p.objectKey()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\to := &ast.ObjectItem{\n\t\tKeys: keys,\n\t}\n\n\tswitch p.tok.Type {\n\tcase token.COLON:\n\t\tpos := p.tok.Pos\n\t\to.Assign = hcltoken.Pos{\n\t\t\tFilename: pos.Filename,\n\t\t\tOffset:   pos.Offset,\n\t\t\tLine:     pos.Line,\n\t\t\tColumn:   pos.Column,\n\t\t}\n\n\t\to.Val, err = p.objectValue()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\treturn o, nil\n}\n\n// objectKey parses an object key and returns a ObjectKey AST\nfunc (p *Parser) objectKey() ([]*ast.ObjectKey, error) {\n\tkeyCount := 0\n\tkeys := make([]*ast.ObjectKey, 0)\n\n\tfor {\n\t\ttok := p.scan()\n\t\tswitch tok.Type {\n\t\tcase token.EOF:\n\t\t\treturn nil, errEofToken\n\t\tcase token.STRING:\n\t\t\tkeyCount++\n\t\t\tkeys = append(keys, &ast.ObjectKey{\n\t\t\t\tToken: p.tok.HCLToken(),\n\t\t\t})\n\t\tcase token.COLON:\n\t\t\t// If we have a zero keycount it means that we never got\n\t\t\t// an object key, i.e. `{ :`. This is a syntax error.\n\t\t\tif keyCount == 0 {\n\t\t\t\treturn nil, fmt.Errorf(\"expected: STRING got: %s\", p.tok.Type)\n\t\t\t}\n\n\t\t\t// Done\n\t\t\treturn keys, nil\n\t\tcase token.ILLEGAL:\n\t\t\treturn nil, errors.New(\"illegal\")\n\t\tdefault:\n\t\t\treturn nil, fmt.Errorf(\"expected: STRING got: %s\", p.tok.Type)\n\t\t}\n\t}\n}\n\n// object parses any type of object, such as number, bool, string, object or\n// list.\nfunc (p *Parser) objectValue() (ast.Node, error) {\n\tdefer un(trace(p, \"ParseObjectValue\"))\n\ttok := p.scan()\n\n\tswitch tok.Type {\n\tcase token.NUMBER, token.FLOAT, token.BOOL, token.NULL, token.STRING:\n\t\treturn p.literalType()\n\tcase token.LBRACE:\n\t\treturn p.objectType()\n\tcase token.LBRACK:\n\t\treturn p.listType()\n\tcase token.EOF:\n\t\treturn nil, errEofToken\n\t}\n\n\treturn nil, fmt.Errorf(\"Expected object value, got unknown token: %+v\", tok)\n}\n\n// object parses any type of object, such as number, bool, string, object or\n// list.\nfunc (p *Parser) object() (*ast.ObjectType, error) {\n\tdefer un(trace(p, \"ParseType\"))\n\ttok := p.scan()\n\n\tswitch tok.Type {\n\tcase token.LBRACE:\n\t\treturn p.objectType()\n\tcase token.EOF:\n\t\treturn nil, errEofToken\n\t}\n\n\treturn nil, fmt.Errorf(\"Expected object, got unknown token: %+v\", tok)\n}\n\n// objectType parses an object type and returns a ObjectType AST\nfunc (p *Parser) objectType() (*ast.ObjectType, error) {\n\tdefer un(trace(p, \"ParseObjectType\"))\n\n\t// we assume that the currently scanned token is a LBRACE\n\to := &ast.ObjectType{}\n\n\tl, err := p.objectList()\n\n\t// if we hit RBRACE, we are good to go (means we parsed all Items), if it's\n\t// not a RBRACE, it's an syntax error and we just return it.\n\tif err != nil && p.tok.Type != token.RBRACE {\n\t\treturn nil, err\n\t}\n\n\to.List = l\n\treturn o, nil\n}\n\n// listType parses a list type and returns a ListType AST\nfunc (p *Parser) listType() (*ast.ListType, error) {\n\tdefer un(trace(p, \"ParseListType\"))\n\n\t// we assume that the currently scanned token is a LBRACK\n\tl := &ast.ListType{}\n\n\tfor {\n\t\ttok := p.scan()\n\t\tswitch tok.Type {\n\t\tcase token.NUMBER, token.FLOAT, token.STRING:\n\t\t\tnode, err := p.literalType()\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\n\t\t\tl.Add(node)\n\t\tcase token.COMMA:\n\t\t\tcontinue\n\t\tcase token.LBRACE:\n\t\t\tnode, err := p.objectType()\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\n\t\t\tl.Add(node)\n\t\tcase token.BOOL:\n\t\t\t// TODO(arslan) should we support? not supported by HCL yet\n\t\tcase token.LBRACK:\n\t\t\t// TODO(arslan) should we support nested lists? Even though it's\n\t\t\t// written in README of HCL, it's not a part of the grammar\n\t\t\t// (not defined in parse.y)\n\t\tcase token.RBRACK:\n\t\t\t// finished\n\t\t\treturn l, nil\n\t\tdefault:\n\t\t\treturn nil, fmt.Errorf(\"unexpected token while parsing list: %s\", tok.Type)\n\t\t}\n\n\t}\n}\n\n// literalType parses a literal type and returns a LiteralType AST\nfunc (p *Parser) literalType() (*ast.LiteralType, error) {\n\tdefer un(trace(p, \"ParseLiteral\"))\n\n\treturn &ast.LiteralType{\n\t\tToken: p.tok.HCLToken(),\n\t}, nil\n}\n\n// scan returns the next token from the underlying scanner. If a token has\n// been unscanned then read that instead.\nfunc (p *Parser) scan() token.Token {\n\t// If we have a token on the buffer, then return it.\n\tif p.n != 0 {\n\t\tp.n = 0\n\t\treturn p.tok\n\t}\n\n\tp.tok = p.sc.Scan()\n\treturn p.tok\n}\n\n// unscan pushes the previously read token back onto the buffer.\nfunc (p *Parser) unscan() {\n\tp.n = 1\n}\n\n// ----------------------------------------------------------------------------\n// Parsing support\n\nfunc (p *Parser) printTrace(a ...interface{}) {\n\tif !p.enableTrace {\n\t\treturn\n\t}\n\n\tconst dots = \". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . \"\n\tconst n = len(dots)\n\tfmt.Printf(\"%5d:%3d: \", p.tok.Pos.Line, p.tok.Pos.Column)\n\n\ti := 2 * p.indent\n\tfor i > n {\n\t\tfmt.Print(dots)\n\t\ti -= n\n\t}\n\t// i <= n\n\tfmt.Print(dots[0:i])\n\tfmt.Println(a...)\n}\n\nfunc trace(p *Parser, msg string) *Parser {\n\tp.printTrace(msg, \"(\")\n\tp.indent++\n\treturn p\n}\n\n// Usage pattern: defer un(trace(p, \"...\"))\nfunc un(p *Parser) {\n\tp.indent--\n\tp.printTrace(\")\")\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/json/scanner/scanner.go",
    "content": "package scanner\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"os\"\n\t\"unicode\"\n\t\"unicode/utf8\"\n\n\t\"github.com/hashicorp/hcl/json/token\"\n)\n\n// eof represents a marker rune for the end of the reader.\nconst eof = rune(0)\n\n// Scanner defines a lexical scanner\ntype Scanner struct {\n\tbuf *bytes.Buffer // Source buffer for advancing and scanning\n\tsrc []byte        // Source buffer for immutable access\n\n\t// Source Position\n\tsrcPos  token.Pos // current position\n\tprevPos token.Pos // previous position, used for peek() method\n\n\tlastCharLen int // length of last character in bytes\n\tlastLineLen int // length of last line in characters (for correct column reporting)\n\n\ttokStart int // token text start position\n\ttokEnd   int // token text end  position\n\n\t// Error is called for each error encountered. If no Error\n\t// function is set, the error is reported to os.Stderr.\n\tError func(pos token.Pos, msg string)\n\n\t// ErrorCount is incremented by one for each error encountered.\n\tErrorCount int\n\n\t// tokPos is the start position of most recently scanned token; set by\n\t// Scan. The Filename field is always left untouched by the Scanner.  If\n\t// an error is reported (via Error) and Position is invalid, the scanner is\n\t// not inside a token.\n\ttokPos token.Pos\n}\n\n// New creates and initializes a new instance of Scanner using src as\n// its source content.\nfunc New(src []byte) *Scanner {\n\t// even though we accept a src, we read from a io.Reader compatible type\n\t// (*bytes.Buffer). So in the future we might easily change it to streaming\n\t// read.\n\tb := bytes.NewBuffer(src)\n\ts := &Scanner{\n\t\tbuf: b,\n\t\tsrc: src,\n\t}\n\n\t// srcPosition always starts with 1\n\ts.srcPos.Line = 1\n\treturn s\n}\n\n// next reads the next rune from the bufferred reader. Returns the rune(0) if\n// an error occurs (or io.EOF is returned).\nfunc (s *Scanner) next() rune {\n\tch, size, err := s.buf.ReadRune()\n\tif err != nil {\n\t\t// advance for error reporting\n\t\ts.srcPos.Column++\n\t\ts.srcPos.Offset += size\n\t\ts.lastCharLen = size\n\t\treturn eof\n\t}\n\n\tif ch == utf8.RuneError && size == 1 {\n\t\ts.srcPos.Column++\n\t\ts.srcPos.Offset += size\n\t\ts.lastCharLen = size\n\t\ts.err(\"illegal UTF-8 encoding\")\n\t\treturn ch\n\t}\n\n\t// remember last position\n\ts.prevPos = s.srcPos\n\n\ts.srcPos.Column++\n\ts.lastCharLen = size\n\ts.srcPos.Offset += size\n\n\tif ch == '\\n' {\n\t\ts.srcPos.Line++\n\t\ts.lastLineLen = s.srcPos.Column\n\t\ts.srcPos.Column = 0\n\t}\n\n\t// debug\n\t// fmt.Printf(\"ch: %q, offset:column: %d:%d\\n\", ch, s.srcPos.Offset, s.srcPos.Column)\n\treturn ch\n}\n\n// unread unreads the previous read Rune and updates the source position\nfunc (s *Scanner) unread() {\n\tif err := s.buf.UnreadRune(); err != nil {\n\t\tpanic(err) // this is user fault, we should catch it\n\t}\n\ts.srcPos = s.prevPos // put back last position\n}\n\n// peek returns the next rune without advancing the reader.\nfunc (s *Scanner) peek() rune {\n\tpeek, _, err := s.buf.ReadRune()\n\tif err != nil {\n\t\treturn eof\n\t}\n\n\ts.buf.UnreadRune()\n\treturn peek\n}\n\n// Scan scans the next token and returns the token.\nfunc (s *Scanner) Scan() token.Token {\n\tch := s.next()\n\n\t// skip white space\n\tfor isWhitespace(ch) {\n\t\tch = s.next()\n\t}\n\n\tvar tok token.Type\n\n\t// token text markings\n\ts.tokStart = s.srcPos.Offset - s.lastCharLen\n\n\t// token position, initial next() is moving the offset by one(size of rune\n\t// actually), though we are interested with the starting point\n\ts.tokPos.Offset = s.srcPos.Offset - s.lastCharLen\n\tif s.srcPos.Column > 0 {\n\t\t// common case: last character was not a '\\n'\n\t\ts.tokPos.Line = s.srcPos.Line\n\t\ts.tokPos.Column = s.srcPos.Column\n\t} else {\n\t\t// last character was a '\\n'\n\t\t// (we cannot be at the beginning of the source\n\t\t// since we have called next() at least once)\n\t\ts.tokPos.Line = s.srcPos.Line - 1\n\t\ts.tokPos.Column = s.lastLineLen\n\t}\n\n\tswitch {\n\tcase isLetter(ch):\n\t\tlit := s.scanIdentifier()\n\t\tif lit == \"true\" || lit == \"false\" {\n\t\t\ttok = token.BOOL\n\t\t} else if lit == \"null\" {\n\t\t\ttok = token.NULL\n\t\t} else {\n\t\t\ts.err(\"illegal char\")\n\t\t}\n\tcase isDecimal(ch):\n\t\ttok = s.scanNumber(ch)\n\tdefault:\n\t\tswitch ch {\n\t\tcase eof:\n\t\t\ttok = token.EOF\n\t\tcase '\"':\n\t\t\ttok = token.STRING\n\t\t\ts.scanString()\n\t\tcase '.':\n\t\t\ttok = token.PERIOD\n\t\t\tch = s.peek()\n\t\t\tif isDecimal(ch) {\n\t\t\t\ttok = token.FLOAT\n\t\t\t\tch = s.scanMantissa(ch)\n\t\t\t\tch = s.scanExponent(ch)\n\t\t\t}\n\t\tcase '[':\n\t\t\ttok = token.LBRACK\n\t\tcase ']':\n\t\t\ttok = token.RBRACK\n\t\tcase '{':\n\t\t\ttok = token.LBRACE\n\t\tcase '}':\n\t\t\ttok = token.RBRACE\n\t\tcase ',':\n\t\t\ttok = token.COMMA\n\t\tcase ':':\n\t\t\ttok = token.COLON\n\t\tcase '-':\n\t\t\tif isDecimal(s.peek()) {\n\t\t\t\tch := s.next()\n\t\t\t\ttok = s.scanNumber(ch)\n\t\t\t} else {\n\t\t\t\ts.err(\"illegal char\")\n\t\t\t}\n\t\tdefault:\n\t\t\ts.err(\"illegal char: \" + string(ch))\n\t\t}\n\t}\n\n\t// finish token ending\n\ts.tokEnd = s.srcPos.Offset\n\n\t// create token literal\n\tvar tokenText string\n\tif s.tokStart >= 0 {\n\t\ttokenText = string(s.src[s.tokStart:s.tokEnd])\n\t}\n\ts.tokStart = s.tokEnd // ensure idempotency of tokenText() call\n\n\treturn token.Token{\n\t\tType: tok,\n\t\tPos:  s.tokPos,\n\t\tText: tokenText,\n\t}\n}\n\n// scanNumber scans a HCL number definition starting with the given rune\nfunc (s *Scanner) scanNumber(ch rune) token.Type {\n\tzero := ch == '0'\n\tpos := s.srcPos\n\n\ts.scanMantissa(ch)\n\tch = s.next() // seek forward\n\tif ch == 'e' || ch == 'E' {\n\t\tch = s.scanExponent(ch)\n\t\treturn token.FLOAT\n\t}\n\n\tif ch == '.' {\n\t\tch = s.scanFraction(ch)\n\t\tif ch == 'e' || ch == 'E' {\n\t\t\tch = s.next()\n\t\t\tch = s.scanExponent(ch)\n\t\t}\n\t\treturn token.FLOAT\n\t}\n\n\tif ch != eof {\n\t\ts.unread()\n\t}\n\n\t// If we have a larger number and this is zero, error\n\tif zero && pos != s.srcPos {\n\t\ts.err(\"numbers cannot start with 0\")\n\t}\n\n\treturn token.NUMBER\n}\n\n// scanMantissa scans the mantissa beginning from the rune. It returns the next\n// non decimal rune. It's used to determine wheter it's a fraction or exponent.\nfunc (s *Scanner) scanMantissa(ch rune) rune {\n\tscanned := false\n\tfor isDecimal(ch) {\n\t\tch = s.next()\n\t\tscanned = true\n\t}\n\n\tif scanned && ch != eof {\n\t\ts.unread()\n\t}\n\treturn ch\n}\n\n// scanFraction scans the fraction after the '.' rune\nfunc (s *Scanner) scanFraction(ch rune) rune {\n\tif ch == '.' {\n\t\tch = s.peek() // we peek just to see if we can move forward\n\t\tch = s.scanMantissa(ch)\n\t}\n\treturn ch\n}\n\n// scanExponent scans the remaining parts of an exponent after the 'e' or 'E'\n// rune.\nfunc (s *Scanner) scanExponent(ch rune) rune {\n\tif ch == 'e' || ch == 'E' {\n\t\tch = s.next()\n\t\tif ch == '-' || ch == '+' {\n\t\t\tch = s.next()\n\t\t}\n\t\tch = s.scanMantissa(ch)\n\t}\n\treturn ch\n}\n\n// scanString scans a quoted string\nfunc (s *Scanner) scanString() {\n\tbraces := 0\n\tfor {\n\t\t// '\"' opening already consumed\n\t\t// read character after quote\n\t\tch := s.next()\n\n\t\tif ch == '\\n' || ch < 0 || ch == eof {\n\t\t\ts.err(\"literal not terminated\")\n\t\t\treturn\n\t\t}\n\n\t\tif ch == '\"' {\n\t\t\tbreak\n\t\t}\n\n\t\t// If we're going into a ${} then we can ignore quotes for awhile\n\t\tif braces == 0 && ch == '$' && s.peek() == '{' {\n\t\t\tbraces++\n\t\t\ts.next()\n\t\t} else if braces > 0 && ch == '{' {\n\t\t\tbraces++\n\t\t}\n\t\tif braces > 0 && ch == '}' {\n\t\t\tbraces--\n\t\t}\n\n\t\tif ch == '\\\\' {\n\t\t\ts.scanEscape()\n\t\t}\n\t}\n\n\treturn\n}\n\n// scanEscape scans an escape sequence\nfunc (s *Scanner) scanEscape() rune {\n\t// http://en.cppreference.com/w/cpp/language/escape\n\tch := s.next() // read character after '/'\n\tswitch ch {\n\tcase 'a', 'b', 'f', 'n', 'r', 't', 'v', '\\\\', '\"':\n\t\t// nothing to do\n\tcase '0', '1', '2', '3', '4', '5', '6', '7':\n\t\t// octal notation\n\t\tch = s.scanDigits(ch, 8, 3)\n\tcase 'x':\n\t\t// hexademical notation\n\t\tch = s.scanDigits(s.next(), 16, 2)\n\tcase 'u':\n\t\t// universal character name\n\t\tch = s.scanDigits(s.next(), 16, 4)\n\tcase 'U':\n\t\t// universal character name\n\t\tch = s.scanDigits(s.next(), 16, 8)\n\tdefault:\n\t\ts.err(\"illegal char escape\")\n\t}\n\treturn ch\n}\n\n// scanDigits scans a rune with the given base for n times. For example an\n// octal notation \\184 would yield in scanDigits(ch, 8, 3)\nfunc (s *Scanner) scanDigits(ch rune, base, n int) rune {\n\tfor n > 0 && digitVal(ch) < base {\n\t\tch = s.next()\n\t\tn--\n\t}\n\tif n > 0 {\n\t\ts.err(\"illegal char escape\")\n\t}\n\n\t// we scanned all digits, put the last non digit char back\n\ts.unread()\n\treturn ch\n}\n\n// scanIdentifier scans an identifier and returns the literal string\nfunc (s *Scanner) scanIdentifier() string {\n\toffs := s.srcPos.Offset - s.lastCharLen\n\tch := s.next()\n\tfor isLetter(ch) || isDigit(ch) || ch == '-' {\n\t\tch = s.next()\n\t}\n\n\tif ch != eof {\n\t\ts.unread() // we got identifier, put back latest char\n\t}\n\n\treturn string(s.src[offs:s.srcPos.Offset])\n}\n\n// recentPosition returns the position of the character immediately after the\n// character or token returned by the last call to Scan.\nfunc (s *Scanner) recentPosition() (pos token.Pos) {\n\tpos.Offset = s.srcPos.Offset - s.lastCharLen\n\tswitch {\n\tcase s.srcPos.Column > 0:\n\t\t// common case: last character was not a '\\n'\n\t\tpos.Line = s.srcPos.Line\n\t\tpos.Column = s.srcPos.Column\n\tcase s.lastLineLen > 0:\n\t\t// last character was a '\\n'\n\t\t// (we cannot be at the beginning of the source\n\t\t// since we have called next() at least once)\n\t\tpos.Line = s.srcPos.Line - 1\n\t\tpos.Column = s.lastLineLen\n\tdefault:\n\t\t// at the beginning of the source\n\t\tpos.Line = 1\n\t\tpos.Column = 1\n\t}\n\treturn\n}\n\n// err prints the error of any scanning to s.Error function. If the function is\n// not defined, by default it prints them to os.Stderr\nfunc (s *Scanner) err(msg string) {\n\ts.ErrorCount++\n\tpos := s.recentPosition()\n\n\tif s.Error != nil {\n\t\ts.Error(pos, msg)\n\t\treturn\n\t}\n\n\tfmt.Fprintf(os.Stderr, \"%s: %s\\n\", pos, msg)\n}\n\n// isHexadecimal returns true if the given rune is a letter\nfunc isLetter(ch rune) bool {\n\treturn 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= 0x80 && unicode.IsLetter(ch)\n}\n\n// isHexadecimal returns true if the given rune is a decimal digit\nfunc isDigit(ch rune) bool {\n\treturn '0' <= ch && ch <= '9' || ch >= 0x80 && unicode.IsDigit(ch)\n}\n\n// isHexadecimal returns true if the given rune is a decimal number\nfunc isDecimal(ch rune) bool {\n\treturn '0' <= ch && ch <= '9'\n}\n\n// isHexadecimal returns true if the given rune is an hexadecimal number\nfunc isHexadecimal(ch rune) bool {\n\treturn '0' <= ch && ch <= '9' || 'a' <= ch && ch <= 'f' || 'A' <= ch && ch <= 'F'\n}\n\n// isWhitespace returns true if the rune is a space, tab, newline or carriage return\nfunc isWhitespace(ch rune) bool {\n\treturn ch == ' ' || ch == '\\t' || ch == '\\n' || ch == '\\r'\n}\n\n// digitVal returns the integer value of a given octal,decimal or hexadecimal rune\nfunc digitVal(ch rune) int {\n\tswitch {\n\tcase '0' <= ch && ch <= '9':\n\t\treturn int(ch - '0')\n\tcase 'a' <= ch && ch <= 'f':\n\t\treturn int(ch - 'a' + 10)\n\tcase 'A' <= ch && ch <= 'F':\n\t\treturn int(ch - 'A' + 10)\n\t}\n\treturn 16 // larger than any legal digit val\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/json/token/position.go",
    "content": "package token\n\nimport \"fmt\"\n\n// Pos describes an arbitrary source position\n// including the file, line, and column location.\n// A Position is valid if the line number is > 0.\ntype Pos struct {\n\tFilename string // filename, if any\n\tOffset   int    // offset, starting at 0\n\tLine     int    // line number, starting at 1\n\tColumn   int    // column number, starting at 1 (character count)\n}\n\n// IsValid returns true if the position is valid.\nfunc (p *Pos) IsValid() bool { return p.Line > 0 }\n\n// String returns a string in one of several forms:\n//\n//\tfile:line:column    valid position with file name\n//\tline:column         valid position without file name\n//\tfile                invalid position with file name\n//\t-                   invalid position without file name\nfunc (p Pos) String() string {\n\ts := p.Filename\n\tif p.IsValid() {\n\t\tif s != \"\" {\n\t\t\ts += \":\"\n\t\t}\n\t\ts += fmt.Sprintf(\"%d:%d\", p.Line, p.Column)\n\t}\n\tif s == \"\" {\n\t\ts = \"-\"\n\t}\n\treturn s\n}\n\n// Before reports whether the position p is before u.\nfunc (p Pos) Before(u Pos) bool {\n\treturn u.Offset > p.Offset || u.Line > p.Line\n}\n\n// After reports whether the position p is after u.\nfunc (p Pos) After(u Pos) bool {\n\treturn u.Offset < p.Offset || u.Line < p.Line\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/json/token/token.go",
    "content": "package token\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\n\thcltoken \"github.com/hashicorp/hcl/hcl/token\"\n)\n\n// Token defines a single HCL token which can be obtained via the Scanner\ntype Token struct {\n\tType Type\n\tPos  Pos\n\tText string\n}\n\n// Type is the set of lexical tokens of the HCL (HashiCorp Configuration Language)\ntype Type int\n\nconst (\n\t// Special tokens\n\tILLEGAL Type = iota\n\tEOF\n\n\tidentifier_beg\n\tliteral_beg\n\tNUMBER // 12345\n\tFLOAT  // 123.45\n\tBOOL   // true,false\n\tSTRING // \"abc\"\n\tNULL   // null\n\tliteral_end\n\tidentifier_end\n\n\toperator_beg\n\tLBRACK // [\n\tLBRACE // {\n\tCOMMA  // ,\n\tPERIOD // .\n\tCOLON  // :\n\n\tRBRACK // ]\n\tRBRACE // }\n\n\toperator_end\n)\n\nvar tokens = [...]string{\n\tILLEGAL: \"ILLEGAL\",\n\n\tEOF: \"EOF\",\n\n\tNUMBER: \"NUMBER\",\n\tFLOAT:  \"FLOAT\",\n\tBOOL:   \"BOOL\",\n\tSTRING: \"STRING\",\n\tNULL:   \"NULL\",\n\n\tLBRACK: \"LBRACK\",\n\tLBRACE: \"LBRACE\",\n\tCOMMA:  \"COMMA\",\n\tPERIOD: \"PERIOD\",\n\tCOLON:  \"COLON\",\n\n\tRBRACK: \"RBRACK\",\n\tRBRACE: \"RBRACE\",\n}\n\n// String returns the string corresponding to the token tok.\nfunc (t Type) String() string {\n\ts := \"\"\n\tif 0 <= t && t < Type(len(tokens)) {\n\t\ts = tokens[t]\n\t}\n\tif s == \"\" {\n\t\ts = \"token(\" + strconv.Itoa(int(t)) + \")\"\n\t}\n\treturn s\n}\n\n// IsIdentifier returns true for tokens corresponding to identifiers and basic\n// type literals; it returns false otherwise.\nfunc (t Type) IsIdentifier() bool { return identifier_beg < t && t < identifier_end }\n\n// IsLiteral returns true for tokens corresponding to basic type literals; it\n// returns false otherwise.\nfunc (t Type) IsLiteral() bool { return literal_beg < t && t < literal_end }\n\n// IsOperator returns true for tokens corresponding to operators and\n// delimiters; it returns false otherwise.\nfunc (t Type) IsOperator() bool { return operator_beg < t && t < operator_end }\n\n// String returns the token's literal text. Note that this is only\n// applicable for certain token types, such as token.IDENT,\n// token.STRING, etc..\nfunc (t Token) String() string {\n\treturn fmt.Sprintf(\"%s %s %s\", t.Pos.String(), t.Type.String(), t.Text)\n}\n\n// HCLToken converts this token to an HCL token.\n//\n// The token type must be a literal type or this will panic.\nfunc (t Token) HCLToken() hcltoken.Token {\n\tswitch t.Type {\n\tcase BOOL:\n\t\treturn hcltoken.Token{Type: hcltoken.BOOL, Text: t.Text}\n\tcase FLOAT:\n\t\treturn hcltoken.Token{Type: hcltoken.FLOAT, Text: t.Text}\n\tcase NULL:\n\t\treturn hcltoken.Token{Type: hcltoken.STRING, Text: \"\"}\n\tcase NUMBER:\n\t\treturn hcltoken.Token{Type: hcltoken.NUMBER, Text: t.Text}\n\tcase STRING:\n\t\treturn hcltoken.Token{Type: hcltoken.STRING, Text: t.Text, JSON: true}\n\tdefault:\n\t\tpanic(fmt.Sprintf(\"unimplemented HCLToken for type: %s\", t.Type))\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/lex.go",
    "content": "package hcl\n\nimport (\n\t\"unicode\"\n\t\"unicode/utf8\"\n)\n\ntype lexModeValue byte\n\nconst (\n\tlexModeUnknown lexModeValue = iota\n\tlexModeHcl\n\tlexModeJson\n)\n\n// lexMode returns whether we're going to be parsing in JSON\n// mode or HCL mode.\nfunc lexMode(v []byte) lexModeValue {\n\tvar (\n\t\tr      rune\n\t\tw      int\n\t\toffset int\n\t)\n\n\tfor {\n\t\tr, w = utf8.DecodeRune(v[offset:])\n\t\toffset += w\n\t\tif unicode.IsSpace(r) {\n\t\t\tcontinue\n\t\t}\n\t\tif r == '{' {\n\t\t\treturn lexModeJson\n\t\t}\n\t\tbreak\n\t}\n\n\treturn lexModeHcl\n}\n"
  },
  {
    "path": "vendor/github.com/hashicorp/hcl/parse.go",
    "content": "package hcl\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/hashicorp/hcl/hcl/ast\"\n\thclParser \"github.com/hashicorp/hcl/hcl/parser\"\n\tjsonParser \"github.com/hashicorp/hcl/json/parser\"\n)\n\n// ParseBytes accepts as input byte slice and returns ast tree.\n//\n// Input can be either JSON or HCL\nfunc ParseBytes(in []byte) (*ast.File, error) {\n\treturn parse(in)\n}\n\n// ParseString accepts input as a string and returns ast tree.\nfunc ParseString(input string) (*ast.File, error) {\n\treturn parse([]byte(input))\n}\n\nfunc parse(in []byte) (*ast.File, error) {\n\tswitch lexMode(in) {\n\tcase lexModeHcl:\n\t\treturn hclParser.Parse(in)\n\tcase lexModeJson:\n\t\treturn jsonParser.Parse(in)\n\t}\n\n\treturn nil, fmt.Errorf(\"unknown config format\")\n}\n\n// Parse parses the given input and returns the root object.\n//\n// The input format can be either HCL or JSON.\nfunc Parse(input string) (*ast.File, error) {\n\treturn parse([]byte(input))\n}\n"
  },
  {
    "path": "vendor/github.com/inconshreveable/mousetrap/LICENSE",
    "content": "Copyright 2014 Alan Shreve\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
  },
  {
    "path": "vendor/github.com/inconshreveable/mousetrap/README.md",
    "content": "# mousetrap\n\nmousetrap is a tiny library that answers a single question.\n\nOn a Windows machine, was the process invoked by someone double clicking on\nthe executable file while browsing in explorer?\n\n### Motivation\n\nWindows developers unfamiliar with command line tools will often \"double-click\"\nthe executable for a tool. Because most CLI tools print the help and then exit\nwhen invoked without arguments, this is often very frustrating for those users.\n\nmousetrap provides a way to detect these invocations so that you can provide\nmore helpful behavior and instructions on how to run the CLI tool. To see what\nthis looks like, both from an organizational and a technical perspective, see\nhttps://inconshreveable.com/09-09-2014/sweat-the-small-stuff/\n\n### The interface\n\nThe library exposes a single interface:\n\n    func StartedByExplorer() (bool)\n"
  },
  {
    "path": "vendor/github.com/inconshreveable/mousetrap/trap_others.go",
    "content": "// +build !windows\n\npackage mousetrap\n\n// StartedByExplorer returns true if the program was invoked by the user\n// double-clicking on the executable from explorer.exe\n//\n// It is conservative and returns false if any of the internal calls fail.\n// It does not guarantee that the program was run from a terminal. It only can tell you\n// whether it was launched from explorer.exe\n//\n// On non-Windows platforms, it always returns false.\nfunc StartedByExplorer() bool {\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/inconshreveable/mousetrap/trap_windows.go",
    "content": "// +build windows\n// +build !go1.4\n\npackage mousetrap\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nconst (\n\t// defined by the Win32 API\n\tth32cs_snapprocess uintptr = 0x2\n)\n\nvar (\n\tkernel                   = syscall.MustLoadDLL(\"kernel32.dll\")\n\tCreateToolhelp32Snapshot = kernel.MustFindProc(\"CreateToolhelp32Snapshot\")\n\tProcess32First           = kernel.MustFindProc(\"Process32FirstW\")\n\tProcess32Next            = kernel.MustFindProc(\"Process32NextW\")\n)\n\n// ProcessEntry32 structure defined by the Win32 API\ntype processEntry32 struct {\n\tdwSize              uint32\n\tcntUsage            uint32\n\tth32ProcessID       uint32\n\tth32DefaultHeapID   int\n\tth32ModuleID        uint32\n\tcntThreads          uint32\n\tth32ParentProcessID uint32\n\tpcPriClassBase      int32\n\tdwFlags             uint32\n\tszExeFile           [syscall.MAX_PATH]uint16\n}\n\nfunc getProcessEntry(pid int) (pe *processEntry32, err error) {\n\tsnapshot, _, e1 := CreateToolhelp32Snapshot.Call(th32cs_snapprocess, uintptr(0))\n\tif snapshot == uintptr(syscall.InvalidHandle) {\n\t\terr = fmt.Errorf(\"CreateToolhelp32Snapshot: %v\", e1)\n\t\treturn\n\t}\n\tdefer syscall.CloseHandle(syscall.Handle(snapshot))\n\n\tvar processEntry processEntry32\n\tprocessEntry.dwSize = uint32(unsafe.Sizeof(processEntry))\n\tok, _, e1 := Process32First.Call(snapshot, uintptr(unsafe.Pointer(&processEntry)))\n\tif ok == 0 {\n\t\terr = fmt.Errorf(\"Process32First: %v\", e1)\n\t\treturn\n\t}\n\n\tfor {\n\t\tif processEntry.th32ProcessID == uint32(pid) {\n\t\t\tpe = &processEntry\n\t\t\treturn\n\t\t}\n\n\t\tok, _, e1 = Process32Next.Call(snapshot, uintptr(unsafe.Pointer(&processEntry)))\n\t\tif ok == 0 {\n\t\t\terr = fmt.Errorf(\"Process32Next: %v\", e1)\n\t\t\treturn\n\t\t}\n\t}\n}\n\nfunc getppid() (pid int, err error) {\n\tpe, err := getProcessEntry(os.Getpid())\n\tif err != nil {\n\t\treturn\n\t}\n\n\tpid = int(pe.th32ParentProcessID)\n\treturn\n}\n\n// StartedByExplorer returns true if the program was invoked by the user double-clicking\n// on the executable from explorer.exe\n//\n// It is conservative and returns false if any of the internal calls fail.\n// It does not guarantee that the program was run from a terminal. It only can tell you\n// whether it was launched from explorer.exe\nfunc StartedByExplorer() bool {\n\tppid, err := getppid()\n\tif err != nil {\n\t\treturn false\n\t}\n\n\tpe, err := getProcessEntry(ppid)\n\tif err != nil {\n\t\treturn false\n\t}\n\n\tname := syscall.UTF16ToString(pe.szExeFile[:])\n\treturn name == \"explorer.exe\"\n}\n"
  },
  {
    "path": "vendor/github.com/inconshreveable/mousetrap/trap_windows_1.4.go",
    "content": "// +build windows\n// +build go1.4\n\npackage mousetrap\n\nimport (\n\t\"os\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc getProcessEntry(pid int) (*syscall.ProcessEntry32, error) {\n\tsnapshot, err := syscall.CreateToolhelp32Snapshot(syscall.TH32CS_SNAPPROCESS, 0)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer syscall.CloseHandle(snapshot)\n\tvar procEntry syscall.ProcessEntry32\n\tprocEntry.Size = uint32(unsafe.Sizeof(procEntry))\n\tif err = syscall.Process32First(snapshot, &procEntry); err != nil {\n\t\treturn nil, err\n\t}\n\tfor {\n\t\tif procEntry.ProcessID == uint32(pid) {\n\t\t\treturn &procEntry, nil\n\t\t}\n\t\terr = syscall.Process32Next(snapshot, &procEntry)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n}\n\n// StartedByExplorer returns true if the program was invoked by the user double-clicking\n// on the executable from explorer.exe\n//\n// It is conservative and returns false if any of the internal calls fail.\n// It does not guarantee that the program was run from a terminal. It only can tell you\n// whether it was launched from explorer.exe\nfunc StartedByExplorer() bool {\n\tpe, err := getProcessEntry(os.Getppid())\n\tif err != nil {\n\t\treturn false\n\t}\n\treturn \"explorer.exe\" == syscall.UTF16ToString(pe.ExeFile[:])\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/LICENSE",
    "content": "Copyright (c) 2012 The Go Authors. All rights reserved.\nCopyright (c) 2019 Klaus Post. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n   * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n   * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n   * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/deflate.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Copyright (c) 2015 Klaus Post\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage flate\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"math\"\n)\n\nconst (\n\tNoCompression      = 0\n\tBestSpeed          = 1\n\tBestCompression    = 9\n\tDefaultCompression = -1\n\n\t// HuffmanOnly disables Lempel-Ziv match searching and only performs Huffman\n\t// entropy encoding. This mode is useful in compressing data that has\n\t// already been compressed with an LZ style algorithm (e.g. Snappy or LZ4)\n\t// that lacks an entropy encoder. Compression gains are achieved when\n\t// certain bytes in the input stream occur more frequently than others.\n\t//\n\t// Note that HuffmanOnly produces a compressed output that is\n\t// RFC 1951 compliant. That is, any valid DEFLATE decompressor will\n\t// continue to be able to decompress this output.\n\tHuffmanOnly         = -2\n\tConstantCompression = HuffmanOnly // compatibility alias.\n\n\tlogWindowSize    = 15\n\twindowSize       = 1 << logWindowSize\n\twindowMask       = windowSize - 1\n\tlogMaxOffsetSize = 15  // Standard DEFLATE\n\tminMatchLength   = 4   // The smallest match that the compressor looks for\n\tmaxMatchLength   = 258 // The longest match for the compressor\n\tminOffsetSize    = 1   // The shortest offset that makes any sense\n\n\t// The maximum number of tokens we put into a single flat block, just too\n\t// stop things from getting too large.\n\tmaxFlateBlockTokens = 1 << 14\n\tmaxStoreBlockSize   = 65535\n\thashBits            = 17 // After 17 performance degrades\n\thashSize            = 1 << hashBits\n\thashMask            = (1 << hashBits) - 1\n\thashShift           = (hashBits + minMatchLength - 1) / minMatchLength\n\tmaxHashOffset       = 1 << 24\n\n\tskipNever = math.MaxInt32\n\n\tdebugDeflate = false\n)\n\ntype compressionLevel struct {\n\tgood, lazy, nice, chain, fastSkipHashing, level int\n}\n\n// Compression levels have been rebalanced from zlib deflate defaults\n// to give a bigger spread in speed and compression.\n// See https://blog.klauspost.com/rebalancing-deflate-compression-levels/\nvar levels = []compressionLevel{\n\t{}, // 0\n\t// Level 1-6 uses specialized algorithm - values not used\n\t{0, 0, 0, 0, 0, 1},\n\t{0, 0, 0, 0, 0, 2},\n\t{0, 0, 0, 0, 0, 3},\n\t{0, 0, 0, 0, 0, 4},\n\t{0, 0, 0, 0, 0, 5},\n\t{0, 0, 0, 0, 0, 6},\n\t// Levels 7-9 use increasingly more lazy matching\n\t// and increasingly stringent conditions for \"good enough\".\n\t{8, 8, 24, 16, skipNever, 7},\n\t{10, 16, 24, 64, skipNever, 8},\n\t{32, 258, 258, 4096, skipNever, 9},\n}\n\n// advancedState contains state for the advanced levels, with bigger hash tables, etc.\ntype advancedState struct {\n\t// deflate state\n\tlength         int\n\toffset         int\n\tmaxInsertIndex int\n\n\t// Input hash chains\n\t// hashHead[hashValue] contains the largest inputIndex with the specified hash value\n\t// If hashHead[hashValue] is within the current window, then\n\t// hashPrev[hashHead[hashValue] & windowMask] contains the previous index\n\t// with the same hash value.\n\tchainHead  int\n\thashHead   [hashSize]uint32\n\thashPrev   [windowSize]uint32\n\thashOffset int\n\n\t// input window: unprocessed data is window[index:windowEnd]\n\tindex     int\n\thashMatch [maxMatchLength + minMatchLength]uint32\n\n\thash uint32\n\tii   uint16 // position of last match, intended to overflow to reset.\n}\n\ntype compressor struct {\n\tcompressionLevel\n\n\tw *huffmanBitWriter\n\n\t// compression algorithm\n\tfill func(*compressor, []byte) int // copy data to window\n\tstep func(*compressor)             // process window\n\n\twindow     []byte\n\twindowEnd  int\n\tblockStart int // window index where current tokens start\n\terr        error\n\n\t// queued output tokens\n\ttokens tokens\n\tfast   fastEnc\n\tstate  *advancedState\n\n\tsync          bool // requesting flush\n\tbyteAvailable bool // if true, still need to process window[index-1].\n}\n\nfunc (d *compressor) fillDeflate(b []byte) int {\n\ts := d.state\n\tif s.index >= 2*windowSize-(minMatchLength+maxMatchLength) {\n\t\t// shift the window by windowSize\n\t\tcopy(d.window[:], d.window[windowSize:2*windowSize])\n\t\ts.index -= windowSize\n\t\td.windowEnd -= windowSize\n\t\tif d.blockStart >= windowSize {\n\t\t\td.blockStart -= windowSize\n\t\t} else {\n\t\t\td.blockStart = math.MaxInt32\n\t\t}\n\t\ts.hashOffset += windowSize\n\t\tif s.hashOffset > maxHashOffset {\n\t\t\tdelta := s.hashOffset - 1\n\t\t\ts.hashOffset -= delta\n\t\t\ts.chainHead -= delta\n\t\t\t// Iterate over slices instead of arrays to avoid copying\n\t\t\t// the entire table onto the stack (Issue #18625).\n\t\t\tfor i, v := range s.hashPrev[:] {\n\t\t\t\tif int(v) > delta {\n\t\t\t\t\ts.hashPrev[i] = uint32(int(v) - delta)\n\t\t\t\t} else {\n\t\t\t\t\ts.hashPrev[i] = 0\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor i, v := range s.hashHead[:] {\n\t\t\t\tif int(v) > delta {\n\t\t\t\t\ts.hashHead[i] = uint32(int(v) - delta)\n\t\t\t\t} else {\n\t\t\t\t\ts.hashHead[i] = 0\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\tn := copy(d.window[d.windowEnd:], b)\n\td.windowEnd += n\n\treturn n\n}\n\nfunc (d *compressor) writeBlock(tok *tokens, index int, eof bool) error {\n\tif index > 0 || eof {\n\t\tvar window []byte\n\t\tif d.blockStart <= index {\n\t\t\twindow = d.window[d.blockStart:index]\n\t\t}\n\t\td.blockStart = index\n\t\td.w.writeBlock(tok, eof, window)\n\t\treturn d.w.err\n\t}\n\treturn nil\n}\n\n// writeBlockSkip writes the current block and uses the number of tokens\n// to determine if the block should be stored on no matches, or\n// only huffman encoded.\nfunc (d *compressor) writeBlockSkip(tok *tokens, index int, eof bool) error {\n\tif index > 0 || eof {\n\t\tif d.blockStart <= index {\n\t\t\twindow := d.window[d.blockStart:index]\n\t\t\t// If we removed less than a 64th of all literals\n\t\t\t// we huffman compress the block.\n\t\t\tif int(tok.n) > len(window)-int(tok.n>>6) {\n\t\t\t\td.w.writeBlockHuff(eof, window, d.sync)\n\t\t\t} else {\n\t\t\t\t// Write a dynamic huffman block.\n\t\t\t\td.w.writeBlockDynamic(tok, eof, window, d.sync)\n\t\t\t}\n\t\t} else {\n\t\t\td.w.writeBlock(tok, eof, nil)\n\t\t}\n\t\td.blockStart = index\n\t\treturn d.w.err\n\t}\n\treturn nil\n}\n\n// fillWindow will fill the current window with the supplied\n// dictionary and calculate all hashes.\n// This is much faster than doing a full encode.\n// Should only be used after a start/reset.\nfunc (d *compressor) fillWindow(b []byte) {\n\t// Do not fill window if we are in store-only or huffman mode.\n\tif d.level <= 0 {\n\t\treturn\n\t}\n\tif d.fast != nil {\n\t\t// encode the last data, but discard the result\n\t\tif len(b) > maxMatchOffset {\n\t\t\tb = b[len(b)-maxMatchOffset:]\n\t\t}\n\t\td.fast.Encode(&d.tokens, b)\n\t\td.tokens.Reset()\n\t\treturn\n\t}\n\ts := d.state\n\t// If we are given too much, cut it.\n\tif len(b) > windowSize {\n\t\tb = b[len(b)-windowSize:]\n\t}\n\t// Add all to window.\n\tn := copy(d.window[d.windowEnd:], b)\n\n\t// Calculate 256 hashes at the time (more L1 cache hits)\n\tloops := (n + 256 - minMatchLength) / 256\n\tfor j := 0; j < loops; j++ {\n\t\tstartindex := j * 256\n\t\tend := startindex + 256 + minMatchLength - 1\n\t\tif end > n {\n\t\t\tend = n\n\t\t}\n\t\ttocheck := d.window[startindex:end]\n\t\tdstSize := len(tocheck) - minMatchLength + 1\n\n\t\tif dstSize <= 0 {\n\t\t\tcontinue\n\t\t}\n\n\t\tdst := s.hashMatch[:dstSize]\n\t\tbulkHash4(tocheck, dst)\n\t\tvar newH uint32\n\t\tfor i, val := range dst {\n\t\t\tdi := i + startindex\n\t\t\tnewH = val & hashMask\n\t\t\t// Get previous value with the same hash.\n\t\t\t// Our chain should point to the previous value.\n\t\t\ts.hashPrev[di&windowMask] = s.hashHead[newH]\n\t\t\t// Set the head of the hash chain to us.\n\t\t\ts.hashHead[newH] = uint32(di + s.hashOffset)\n\t\t}\n\t\ts.hash = newH\n\t}\n\t// Update window information.\n\td.windowEnd += n\n\ts.index = n\n}\n\n// Try to find a match starting at index whose length is greater than prevSize.\n// We only look at chainCount possibilities before giving up.\n// pos = s.index, prevHead = s.chainHead-s.hashOffset, prevLength=minMatchLength-1, lookahead\nfunc (d *compressor) findMatch(pos int, prevHead int, prevLength int, lookahead int) (length, offset int, ok bool) {\n\tminMatchLook := maxMatchLength\n\tif lookahead < minMatchLook {\n\t\tminMatchLook = lookahead\n\t}\n\n\twin := d.window[0 : pos+minMatchLook]\n\n\t// We quit when we get a match that's at least nice long\n\tnice := len(win) - pos\n\tif d.nice < nice {\n\t\tnice = d.nice\n\t}\n\n\t// If we've got a match that's good enough, only look in 1/4 the chain.\n\ttries := d.chain\n\tlength = prevLength\n\tif length >= d.good {\n\t\ttries >>= 2\n\t}\n\n\twEnd := win[pos+length]\n\twPos := win[pos:]\n\tminIndex := pos - windowSize\n\n\tfor i := prevHead; tries > 0; tries-- {\n\t\tif wEnd == win[i+length] {\n\t\t\tn := matchLen(win[i:i+minMatchLook], wPos)\n\n\t\t\tif n > length && (n > minMatchLength || pos-i <= 4096) {\n\t\t\t\tlength = n\n\t\t\t\toffset = pos - i\n\t\t\t\tok = true\n\t\t\t\tif n >= nice {\n\t\t\t\t\t// The match is good enough that we don't try to find a better one.\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\twEnd = win[pos+n]\n\t\t\t}\n\t\t}\n\t\tif i == minIndex {\n\t\t\t// hashPrev[i & windowMask] has already been overwritten, so stop now.\n\t\t\tbreak\n\t\t}\n\t\ti = int(d.state.hashPrev[i&windowMask]) - d.state.hashOffset\n\t\tif i < minIndex || i < 0 {\n\t\t\tbreak\n\t\t}\n\t}\n\treturn\n}\n\nfunc (d *compressor) writeStoredBlock(buf []byte) error {\n\tif d.w.writeStoredHeader(len(buf), false); d.w.err != nil {\n\t\treturn d.w.err\n\t}\n\td.w.writeBytes(buf)\n\treturn d.w.err\n}\n\n// hash4 returns a hash representation of the first 4 bytes\n// of the supplied slice.\n// The caller must ensure that len(b) >= 4.\nfunc hash4(b []byte) uint32 {\n\tb = b[:4]\n\treturn hash4u(uint32(b[3])|uint32(b[2])<<8|uint32(b[1])<<16|uint32(b[0])<<24, hashBits)\n}\n\n// bulkHash4 will compute hashes using the same\n// algorithm as hash4\nfunc bulkHash4(b []byte, dst []uint32) {\n\tif len(b) < 4 {\n\t\treturn\n\t}\n\thb := uint32(b[3]) | uint32(b[2])<<8 | uint32(b[1])<<16 | uint32(b[0])<<24\n\tdst[0] = hash4u(hb, hashBits)\n\tend := len(b) - 4 + 1\n\tfor i := 1; i < end; i++ {\n\t\thb = (hb << 8) | uint32(b[i+3])\n\t\tdst[i] = hash4u(hb, hashBits)\n\t}\n}\n\nfunc (d *compressor) initDeflate() {\n\td.window = make([]byte, 2*windowSize)\n\td.byteAvailable = false\n\td.err = nil\n\tif d.state == nil {\n\t\treturn\n\t}\n\ts := d.state\n\ts.index = 0\n\ts.hashOffset = 1\n\ts.length = minMatchLength - 1\n\ts.offset = 0\n\ts.hash = 0\n\ts.chainHead = -1\n}\n\n// deflateLazy is the same as deflate, but with d.fastSkipHashing == skipNever,\n// meaning it always has lazy matching on.\nfunc (d *compressor) deflateLazy() {\n\ts := d.state\n\t// Sanity enables additional runtime tests.\n\t// It's intended to be used during development\n\t// to supplement the currently ad-hoc unit tests.\n\tconst sanity = debugDeflate\n\n\tif d.windowEnd-s.index < minMatchLength+maxMatchLength && !d.sync {\n\t\treturn\n\t}\n\n\ts.maxInsertIndex = d.windowEnd - (minMatchLength - 1)\n\tif s.index < s.maxInsertIndex {\n\t\ts.hash = hash4(d.window[s.index : s.index+minMatchLength])\n\t}\n\n\tfor {\n\t\tif sanity && s.index > d.windowEnd {\n\t\t\tpanic(\"index > windowEnd\")\n\t\t}\n\t\tlookahead := d.windowEnd - s.index\n\t\tif lookahead < minMatchLength+maxMatchLength {\n\t\t\tif !d.sync {\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif sanity && s.index > d.windowEnd {\n\t\t\t\tpanic(\"index > windowEnd\")\n\t\t\t}\n\t\t\tif lookahead == 0 {\n\t\t\t\t// Flush current output block if any.\n\t\t\t\tif d.byteAvailable {\n\t\t\t\t\t// There is still one pending token that needs to be flushed\n\t\t\t\t\td.tokens.AddLiteral(d.window[s.index-1])\n\t\t\t\t\td.byteAvailable = false\n\t\t\t\t}\n\t\t\t\tif d.tokens.n > 0 {\n\t\t\t\t\tif d.err = d.writeBlock(&d.tokens, s.index, false); d.err != nil {\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\td.tokens.Reset()\n\t\t\t\t}\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t\tif s.index < s.maxInsertIndex {\n\t\t\t// Update the hash\n\t\t\ts.hash = hash4(d.window[s.index : s.index+minMatchLength])\n\t\t\tch := s.hashHead[s.hash&hashMask]\n\t\t\ts.chainHead = int(ch)\n\t\t\ts.hashPrev[s.index&windowMask] = ch\n\t\t\ts.hashHead[s.hash&hashMask] = uint32(s.index + s.hashOffset)\n\t\t}\n\t\tprevLength := s.length\n\t\tprevOffset := s.offset\n\t\ts.length = minMatchLength - 1\n\t\ts.offset = 0\n\t\tminIndex := s.index - windowSize\n\t\tif minIndex < 0 {\n\t\t\tminIndex = 0\n\t\t}\n\n\t\tif s.chainHead-s.hashOffset >= minIndex && lookahead > prevLength && prevLength < d.lazy {\n\t\t\tif newLength, newOffset, ok := d.findMatch(s.index, s.chainHead-s.hashOffset, minMatchLength-1, lookahead); ok {\n\t\t\t\ts.length = newLength\n\t\t\t\ts.offset = newOffset\n\t\t\t}\n\t\t}\n\t\tif prevLength >= minMatchLength && s.length <= prevLength {\n\t\t\t// There was a match at the previous step, and the current match is\n\t\t\t// not better. Output the previous match.\n\t\t\td.tokens.AddMatch(uint32(prevLength-3), uint32(prevOffset-minOffsetSize))\n\n\t\t\t// Insert in the hash table all strings up to the end of the match.\n\t\t\t// index and index-1 are already inserted. If there is not enough\n\t\t\t// lookahead, the last two strings are not inserted into the hash\n\t\t\t// table.\n\t\t\tvar newIndex int\n\t\t\tnewIndex = s.index + prevLength - 1\n\t\t\t// Calculate missing hashes\n\t\t\tend := newIndex\n\t\t\tif end > s.maxInsertIndex {\n\t\t\t\tend = s.maxInsertIndex\n\t\t\t}\n\t\t\tend += minMatchLength - 1\n\t\t\tstartindex := s.index + 1\n\t\t\tif startindex > s.maxInsertIndex {\n\t\t\t\tstartindex = s.maxInsertIndex\n\t\t\t}\n\t\t\ttocheck := d.window[startindex:end]\n\t\t\tdstSize := len(tocheck) - minMatchLength + 1\n\t\t\tif dstSize > 0 {\n\t\t\t\tdst := s.hashMatch[:dstSize]\n\t\t\t\tbulkHash4(tocheck, dst)\n\t\t\t\tvar newH uint32\n\t\t\t\tfor i, val := range dst {\n\t\t\t\t\tdi := i + startindex\n\t\t\t\t\tnewH = val & hashMask\n\t\t\t\t\t// Get previous value with the same hash.\n\t\t\t\t\t// Our chain should point to the previous value.\n\t\t\t\t\ts.hashPrev[di&windowMask] = s.hashHead[newH]\n\t\t\t\t\t// Set the head of the hash chain to us.\n\t\t\t\t\ts.hashHead[newH] = uint32(di + s.hashOffset)\n\t\t\t\t}\n\t\t\t\ts.hash = newH\n\t\t\t}\n\n\t\t\ts.index = newIndex\n\t\t\td.byteAvailable = false\n\t\t\ts.length = minMatchLength - 1\n\t\t\tif d.tokens.n == maxFlateBlockTokens {\n\t\t\t\t// The block includes the current character\n\t\t\t\tif d.err = d.writeBlock(&d.tokens, s.index, false); d.err != nil {\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\td.tokens.Reset()\n\t\t\t}\n\t\t} else {\n\t\t\t// Reset, if we got a match this run.\n\t\t\tif s.length >= minMatchLength {\n\t\t\t\ts.ii = 0\n\t\t\t}\n\t\t\t// We have a byte waiting. Emit it.\n\t\t\tif d.byteAvailable {\n\t\t\t\ts.ii++\n\t\t\t\td.tokens.AddLiteral(d.window[s.index-1])\n\t\t\t\tif d.tokens.n == maxFlateBlockTokens {\n\t\t\t\t\tif d.err = d.writeBlock(&d.tokens, s.index, false); d.err != nil {\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\td.tokens.Reset()\n\t\t\t\t}\n\t\t\t\ts.index++\n\n\t\t\t\t// If we have a long run of no matches, skip additional bytes\n\t\t\t\t// Resets when s.ii overflows after 64KB.\n\t\t\t\tif s.ii > 31 {\n\t\t\t\t\tn := int(s.ii >> 5)\n\t\t\t\t\tfor j := 0; j < n; j++ {\n\t\t\t\t\t\tif s.index >= d.windowEnd-1 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\td.tokens.AddLiteral(d.window[s.index-1])\n\t\t\t\t\t\tif d.tokens.n == maxFlateBlockTokens {\n\t\t\t\t\t\t\tif d.err = d.writeBlock(&d.tokens, s.index, false); d.err != nil {\n\t\t\t\t\t\t\t\treturn\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\td.tokens.Reset()\n\t\t\t\t\t\t}\n\t\t\t\t\t\ts.index++\n\t\t\t\t\t}\n\t\t\t\t\t// Flush last byte\n\t\t\t\t\td.tokens.AddLiteral(d.window[s.index-1])\n\t\t\t\t\td.byteAvailable = false\n\t\t\t\t\t// s.length = minMatchLength - 1 // not needed, since s.ii is reset above, so it should never be > minMatchLength\n\t\t\t\t\tif d.tokens.n == maxFlateBlockTokens {\n\t\t\t\t\t\tif d.err = d.writeBlock(&d.tokens, s.index, false); d.err != nil {\n\t\t\t\t\t\t\treturn\n\t\t\t\t\t\t}\n\t\t\t\t\t\td.tokens.Reset()\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\ts.index++\n\t\t\t\td.byteAvailable = true\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc (d *compressor) store() {\n\tif d.windowEnd > 0 && (d.windowEnd == maxStoreBlockSize || d.sync) {\n\t\td.err = d.writeStoredBlock(d.window[:d.windowEnd])\n\t\td.windowEnd = 0\n\t}\n}\n\n// fillWindow will fill the buffer with data for huffman-only compression.\n// The number of bytes copied is returned.\nfunc (d *compressor) fillBlock(b []byte) int {\n\tn := copy(d.window[d.windowEnd:], b)\n\td.windowEnd += n\n\treturn n\n}\n\n// storeHuff will compress and store the currently added data,\n// if enough has been accumulated or we at the end of the stream.\n// Any error that occurred will be in d.err\nfunc (d *compressor) storeHuff() {\n\tif d.windowEnd < len(d.window) && !d.sync || d.windowEnd == 0 {\n\t\treturn\n\t}\n\td.w.writeBlockHuff(false, d.window[:d.windowEnd], d.sync)\n\td.err = d.w.err\n\td.windowEnd = 0\n}\n\n// storeFast will compress and store the currently added data,\n// if enough has been accumulated or we at the end of the stream.\n// Any error that occurred will be in d.err\nfunc (d *compressor) storeFast() {\n\t// We only compress if we have maxStoreBlockSize.\n\tif d.windowEnd < len(d.window) {\n\t\tif !d.sync {\n\t\t\treturn\n\t\t}\n\t\t// Handle extremely small sizes.\n\t\tif d.windowEnd < 128 {\n\t\t\tif d.windowEnd == 0 {\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif d.windowEnd <= 32 {\n\t\t\t\td.err = d.writeStoredBlock(d.window[:d.windowEnd])\n\t\t\t} else {\n\t\t\t\td.w.writeBlockHuff(false, d.window[:d.windowEnd], true)\n\t\t\t\td.err = d.w.err\n\t\t\t}\n\t\t\td.tokens.Reset()\n\t\t\td.windowEnd = 0\n\t\t\td.fast.Reset()\n\t\t\treturn\n\t\t}\n\t}\n\n\td.fast.Encode(&d.tokens, d.window[:d.windowEnd])\n\t// If we made zero matches, store the block as is.\n\tif d.tokens.n == 0 {\n\t\td.err = d.writeStoredBlock(d.window[:d.windowEnd])\n\t\t// If we removed less than 1/16th, huffman compress the block.\n\t} else if int(d.tokens.n) > d.windowEnd-(d.windowEnd>>4) {\n\t\td.w.writeBlockHuff(false, d.window[:d.windowEnd], d.sync)\n\t\td.err = d.w.err\n\t} else {\n\t\td.w.writeBlockDynamic(&d.tokens, false, d.window[:d.windowEnd], d.sync)\n\t\td.err = d.w.err\n\t}\n\td.tokens.Reset()\n\td.windowEnd = 0\n}\n\n// write will add input byte to the stream.\n// Unless an error occurs all bytes will be consumed.\nfunc (d *compressor) write(b []byte) (n int, err error) {\n\tif d.err != nil {\n\t\treturn 0, d.err\n\t}\n\tn = len(b)\n\tfor len(b) > 0 {\n\t\td.step(d)\n\t\tb = b[d.fill(d, b):]\n\t\tif d.err != nil {\n\t\t\treturn 0, d.err\n\t\t}\n\t}\n\treturn n, d.err\n}\n\nfunc (d *compressor) syncFlush() error {\n\td.sync = true\n\tif d.err != nil {\n\t\treturn d.err\n\t}\n\td.step(d)\n\tif d.err == nil {\n\t\td.w.writeStoredHeader(0, false)\n\t\td.w.flush()\n\t\td.err = d.w.err\n\t}\n\td.sync = false\n\treturn d.err\n}\n\nfunc (d *compressor) init(w io.Writer, level int) (err error) {\n\td.w = newHuffmanBitWriter(w)\n\n\tswitch {\n\tcase level == NoCompression:\n\t\td.window = make([]byte, maxStoreBlockSize)\n\t\td.fill = (*compressor).fillBlock\n\t\td.step = (*compressor).store\n\tcase level == ConstantCompression:\n\t\td.w.logNewTablePenalty = 4\n\t\td.window = make([]byte, maxStoreBlockSize)\n\t\td.fill = (*compressor).fillBlock\n\t\td.step = (*compressor).storeHuff\n\tcase level == DefaultCompression:\n\t\tlevel = 5\n\t\tfallthrough\n\tcase level >= 1 && level <= 6:\n\t\td.w.logNewTablePenalty = 6\n\t\td.fast = newFastEnc(level)\n\t\td.window = make([]byte, maxStoreBlockSize)\n\t\td.fill = (*compressor).fillBlock\n\t\td.step = (*compressor).storeFast\n\tcase 7 <= level && level <= 9:\n\t\td.w.logNewTablePenalty = 10\n\t\td.state = &advancedState{}\n\t\td.compressionLevel = levels[level]\n\t\td.initDeflate()\n\t\td.fill = (*compressor).fillDeflate\n\t\td.step = (*compressor).deflateLazy\n\tdefault:\n\t\treturn fmt.Errorf(\"flate: invalid compression level %d: want value in range [-2, 9]\", level)\n\t}\n\td.level = level\n\treturn nil\n}\n\n// reset the state of the compressor.\nfunc (d *compressor) reset(w io.Writer) {\n\td.w.reset(w)\n\td.sync = false\n\td.err = nil\n\t// We only need to reset a few things for Snappy.\n\tif d.fast != nil {\n\t\td.fast.Reset()\n\t\td.windowEnd = 0\n\t\td.tokens.Reset()\n\t\treturn\n\t}\n\tswitch d.compressionLevel.chain {\n\tcase 0:\n\t\t// level was NoCompression or ConstantCompresssion.\n\t\td.windowEnd = 0\n\tdefault:\n\t\ts := d.state\n\t\ts.chainHead = -1\n\t\tfor i := range s.hashHead {\n\t\t\ts.hashHead[i] = 0\n\t\t}\n\t\tfor i := range s.hashPrev {\n\t\t\ts.hashPrev[i] = 0\n\t\t}\n\t\ts.hashOffset = 1\n\t\ts.index, d.windowEnd = 0, 0\n\t\td.blockStart, d.byteAvailable = 0, false\n\t\td.tokens.Reset()\n\t\ts.length = minMatchLength - 1\n\t\ts.offset = 0\n\t\ts.hash = 0\n\t\ts.ii = 0\n\t\ts.maxInsertIndex = 0\n\t}\n}\n\nfunc (d *compressor) close() error {\n\tif d.err != nil {\n\t\treturn d.err\n\t}\n\td.sync = true\n\td.step(d)\n\tif d.err != nil {\n\t\treturn d.err\n\t}\n\tif d.w.writeStoredHeader(0, true); d.w.err != nil {\n\t\treturn d.w.err\n\t}\n\td.w.flush()\n\td.w.reset(nil)\n\treturn d.w.err\n}\n\n// NewWriter returns a new Writer compressing data at the given level.\n// Following zlib, levels range from 1 (BestSpeed) to 9 (BestCompression);\n// higher levels typically run slower but compress more.\n// Level 0 (NoCompression) does not attempt any compression; it only adds the\n// necessary DEFLATE framing.\n// Level -1 (DefaultCompression) uses the default compression level.\n// Level -2 (ConstantCompression) will use Huffman compression only, giving\n// a very fast compression for all types of input, but sacrificing considerable\n// compression efficiency.\n//\n// If level is in the range [-2, 9] then the error returned will be nil.\n// Otherwise the error returned will be non-nil.\nfunc NewWriter(w io.Writer, level int) (*Writer, error) {\n\tvar dw Writer\n\tif err := dw.d.init(w, level); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &dw, nil\n}\n\n// NewWriterDict is like NewWriter but initializes the new\n// Writer with a preset dictionary.  The returned Writer behaves\n// as if the dictionary had been written to it without producing\n// any compressed output.  The compressed data written to w\n// can only be decompressed by a Reader initialized with the\n// same dictionary.\nfunc NewWriterDict(w io.Writer, level int, dict []byte) (*Writer, error) {\n\tzw, err := NewWriter(w, level)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tzw.d.fillWindow(dict)\n\tzw.dict = append(zw.dict, dict...) // duplicate dictionary for Reset method.\n\treturn zw, err\n}\n\n// A Writer takes data written to it and writes the compressed\n// form of that data to an underlying writer (see NewWriter).\ntype Writer struct {\n\td    compressor\n\tdict []byte\n}\n\n// Write writes data to w, which will eventually write the\n// compressed form of data to its underlying writer.\nfunc (w *Writer) Write(data []byte) (n int, err error) {\n\treturn w.d.write(data)\n}\n\n// Flush flushes any pending data to the underlying writer.\n// It is useful mainly in compressed network protocols, to ensure that\n// a remote reader has enough data to reconstruct a packet.\n// Flush does not return until the data has been written.\n// Calling Flush when there is no pending data still causes the Writer\n// to emit a sync marker of at least 4 bytes.\n// If the underlying writer returns an error, Flush returns that error.\n//\n// In the terminology of the zlib library, Flush is equivalent to Z_SYNC_FLUSH.\nfunc (w *Writer) Flush() error {\n\t// For more about flushing:\n\t// http://www.bolet.org/~pornin/deflate-flush.html\n\treturn w.d.syncFlush()\n}\n\n// Close flushes and closes the writer.\nfunc (w *Writer) Close() error {\n\treturn w.d.close()\n}\n\n// Reset discards the writer's state and makes it equivalent to\n// the result of NewWriter or NewWriterDict called with dst\n// and w's level and dictionary.\nfunc (w *Writer) Reset(dst io.Writer) {\n\tif len(w.dict) > 0 {\n\t\t// w was created with NewWriterDict\n\t\tw.d.reset(dst)\n\t\tif dst != nil {\n\t\t\tw.d.fillWindow(w.dict)\n\t\t}\n\t} else {\n\t\t// w was created with NewWriter\n\t\tw.d.reset(dst)\n\t}\n}\n\n// ResetDict discards the writer's state and makes it equivalent to\n// the result of NewWriter or NewWriterDict called with dst\n// and w's level, but sets a specific dictionary.\nfunc (w *Writer) ResetDict(dst io.Writer, dict []byte) {\n\tw.dict = dict\n\tw.d.reset(dst)\n\tw.d.fillWindow(w.dict)\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/dict_decoder.go",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage flate\n\n// dictDecoder implements the LZ77 sliding dictionary as used in decompression.\n// LZ77 decompresses data through sequences of two forms of commands:\n//\n//\t* Literal insertions: Runs of one or more symbols are inserted into the data\n//\tstream as is. This is accomplished through the writeByte method for a\n//\tsingle symbol, or combinations of writeSlice/writeMark for multiple symbols.\n//\tAny valid stream must start with a literal insertion if no preset dictionary\n//\tis used.\n//\n//\t* Backward copies: Runs of one or more symbols are copied from previously\n//\temitted data. Backward copies come as the tuple (dist, length) where dist\n//\tdetermines how far back in the stream to copy from and length determines how\n//\tmany bytes to copy. Note that it is valid for the length to be greater than\n//\tthe distance. Since LZ77 uses forward copies, that situation is used to\n//\tperform a form of run-length encoding on repeated runs of symbols.\n//\tThe writeCopy and tryWriteCopy are used to implement this command.\n//\n// For performance reasons, this implementation performs little to no sanity\n// checks about the arguments. As such, the invariants documented for each\n// method call must be respected.\ntype dictDecoder struct {\n\thist []byte // Sliding window history\n\n\t// Invariant: 0 <= rdPos <= wrPos <= len(hist)\n\twrPos int  // Current output position in buffer\n\trdPos int  // Have emitted hist[:rdPos] already\n\tfull  bool // Has a full window length been written yet?\n}\n\n// init initializes dictDecoder to have a sliding window dictionary of the given\n// size. If a preset dict is provided, it will initialize the dictionary with\n// the contents of dict.\nfunc (dd *dictDecoder) init(size int, dict []byte) {\n\t*dd = dictDecoder{hist: dd.hist}\n\n\tif cap(dd.hist) < size {\n\t\tdd.hist = make([]byte, size)\n\t}\n\tdd.hist = dd.hist[:size]\n\n\tif len(dict) > len(dd.hist) {\n\t\tdict = dict[len(dict)-len(dd.hist):]\n\t}\n\tdd.wrPos = copy(dd.hist, dict)\n\tif dd.wrPos == len(dd.hist) {\n\t\tdd.wrPos = 0\n\t\tdd.full = true\n\t}\n\tdd.rdPos = dd.wrPos\n}\n\n// histSize reports the total amount of historical data in the dictionary.\nfunc (dd *dictDecoder) histSize() int {\n\tif dd.full {\n\t\treturn len(dd.hist)\n\t}\n\treturn dd.wrPos\n}\n\n// availRead reports the number of bytes that can be flushed by readFlush.\nfunc (dd *dictDecoder) availRead() int {\n\treturn dd.wrPos - dd.rdPos\n}\n\n// availWrite reports the available amount of output buffer space.\nfunc (dd *dictDecoder) availWrite() int {\n\treturn len(dd.hist) - dd.wrPos\n}\n\n// writeSlice returns a slice of the available buffer to write data to.\n//\n// This invariant will be kept: len(s) <= availWrite()\nfunc (dd *dictDecoder) writeSlice() []byte {\n\treturn dd.hist[dd.wrPos:]\n}\n\n// writeMark advances the writer pointer by cnt.\n//\n// This invariant must be kept: 0 <= cnt <= availWrite()\nfunc (dd *dictDecoder) writeMark(cnt int) {\n\tdd.wrPos += cnt\n}\n\n// writeByte writes a single byte to the dictionary.\n//\n// This invariant must be kept: 0 < availWrite()\nfunc (dd *dictDecoder) writeByte(c byte) {\n\tdd.hist[dd.wrPos] = c\n\tdd.wrPos++\n}\n\n// writeCopy copies a string at a given (dist, length) to the output.\n// This returns the number of bytes copied and may be less than the requested\n// length if the available space in the output buffer is too small.\n//\n// This invariant must be kept: 0 < dist <= histSize()\nfunc (dd *dictDecoder) writeCopy(dist, length int) int {\n\tdstBase := dd.wrPos\n\tdstPos := dstBase\n\tsrcPos := dstPos - dist\n\tendPos := dstPos + length\n\tif endPos > len(dd.hist) {\n\t\tendPos = len(dd.hist)\n\t}\n\n\t// Copy non-overlapping section after destination position.\n\t//\n\t// This section is non-overlapping in that the copy length for this section\n\t// is always less than or equal to the backwards distance. This can occur\n\t// if a distance refers to data that wraps-around in the buffer.\n\t// Thus, a backwards copy is performed here; that is, the exact bytes in\n\t// the source prior to the copy is placed in the destination.\n\tif srcPos < 0 {\n\t\tsrcPos += len(dd.hist)\n\t\tdstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:])\n\t\tsrcPos = 0\n\t}\n\n\t// Copy possibly overlapping section before destination position.\n\t//\n\t// This section can overlap if the copy length for this section is larger\n\t// than the backwards distance. This is allowed by LZ77 so that repeated\n\t// strings can be succinctly represented using (dist, length) pairs.\n\t// Thus, a forwards copy is performed here; that is, the bytes copied is\n\t// possibly dependent on the resulting bytes in the destination as the copy\n\t// progresses along. This is functionally equivalent to the following:\n\t//\n\t//\tfor i := 0; i < endPos-dstPos; i++ {\n\t//\t\tdd.hist[dstPos+i] = dd.hist[srcPos+i]\n\t//\t}\n\t//\tdstPos = endPos\n\t//\n\tfor dstPos < endPos {\n\t\tdstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:dstPos])\n\t}\n\n\tdd.wrPos = dstPos\n\treturn dstPos - dstBase\n}\n\n// tryWriteCopy tries to copy a string at a given (distance, length) to the\n// output. This specialized version is optimized for short distances.\n//\n// This method is designed to be inlined for performance reasons.\n//\n// This invariant must be kept: 0 < dist <= histSize()\nfunc (dd *dictDecoder) tryWriteCopy(dist, length int) int {\n\tdstPos := dd.wrPos\n\tendPos := dstPos + length\n\tif dstPos < dist || endPos > len(dd.hist) {\n\t\treturn 0\n\t}\n\tdstBase := dstPos\n\tsrcPos := dstPos - dist\n\n\t// Copy possibly overlapping section before destination position.\nloop:\n\tdstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:dstPos])\n\tif dstPos < endPos {\n\t\tgoto loop // Avoid for-loop so that this function can be inlined\n\t}\n\n\tdd.wrPos = dstPos\n\treturn dstPos - dstBase\n}\n\n// readFlush returns a slice of the historical buffer that is ready to be\n// emitted to the user. The data returned by readFlush must be fully consumed\n// before calling any other dictDecoder methods.\nfunc (dd *dictDecoder) readFlush() []byte {\n\ttoRead := dd.hist[dd.rdPos:dd.wrPos]\n\tdd.rdPos = dd.wrPos\n\tif dd.wrPos == len(dd.hist) {\n\t\tdd.wrPos, dd.rdPos = 0, 0\n\t\tdd.full = true\n\t}\n\treturn toRead\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/fast_encoder.go",
    "content": "// Copyright 2011 The Snappy-Go Authors. All rights reserved.\n// Modified for deflate by Klaus Post (c) 2015.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage flate\n\nimport (\n\t\"fmt\"\n\t\"math/bits\"\n)\n\ntype fastEnc interface {\n\tEncode(dst *tokens, src []byte)\n\tReset()\n}\n\nfunc newFastEnc(level int) fastEnc {\n\tswitch level {\n\tcase 1:\n\t\treturn &fastEncL1{fastGen: fastGen{cur: maxStoreBlockSize}}\n\tcase 2:\n\t\treturn &fastEncL2{fastGen: fastGen{cur: maxStoreBlockSize}}\n\tcase 3:\n\t\treturn &fastEncL3{fastGen: fastGen{cur: maxStoreBlockSize}}\n\tcase 4:\n\t\treturn &fastEncL4{fastGen: fastGen{cur: maxStoreBlockSize}}\n\tcase 5:\n\t\treturn &fastEncL5{fastGen: fastGen{cur: maxStoreBlockSize}}\n\tcase 6:\n\t\treturn &fastEncL6{fastGen: fastGen{cur: maxStoreBlockSize}}\n\tdefault:\n\t\tpanic(\"invalid level specified\")\n\t}\n}\n\nconst (\n\ttableBits       = 15             // Bits used in the table\n\ttableSize       = 1 << tableBits // Size of the table\n\ttableShift      = 32 - tableBits // Right-shift to get the tableBits most significant bits of a uint32.\n\tbaseMatchOffset = 1              // The smallest match offset\n\tbaseMatchLength = 3              // The smallest match length per the RFC section 3.2.5\n\tmaxMatchOffset  = 1 << 15        // The largest match offset\n\n\tbTableBits   = 17                                               // Bits used in the big tables\n\tbTableSize   = 1 << bTableBits                                  // Size of the table\n\tallocHistory = maxStoreBlockSize * 10                           // Size to preallocate for history.\n\tbufferReset  = (1 << 31) - allocHistory - maxStoreBlockSize - 1 // Reset the buffer offset when reaching this.\n)\n\nconst (\n\tprime3bytes = 506832829\n\tprime4bytes = 2654435761\n\tprime5bytes = 889523592379\n\tprime6bytes = 227718039650203\n\tprime7bytes = 58295818150454627\n\tprime8bytes = 0xcf1bbcdcb7a56463\n)\n\nfunc load32(b []byte, i int) uint32 {\n\t// Help the compiler eliminate bounds checks on the read so it can be done in a single read.\n\tb = b[i:]\n\tb = b[:4]\n\treturn uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24\n}\n\nfunc load64(b []byte, i int) uint64 {\n\t// Help the compiler eliminate bounds checks on the read so it can be done in a single read.\n\tb = b[i:]\n\tb = b[:8]\n\treturn uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |\n\t\tuint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56\n}\n\nfunc load3232(b []byte, i int32) uint32 {\n\t// Help the compiler eliminate bounds checks on the read so it can be done in a single read.\n\tb = b[i:]\n\tb = b[:4]\n\treturn uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24\n}\n\nfunc load6432(b []byte, i int32) uint64 {\n\t// Help the compiler eliminate bounds checks on the read so it can be done in a single read.\n\tb = b[i:]\n\tb = b[:8]\n\treturn uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |\n\t\tuint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56\n}\n\nfunc hash(u uint32) uint32 {\n\treturn (u * 0x1e35a7bd) >> tableShift\n}\n\ntype tableEntry struct {\n\toffset int32\n}\n\n// fastGen maintains the table for matches,\n// and the previous byte block for level 2.\n// This is the generic implementation.\ntype fastGen struct {\n\thist []byte\n\tcur  int32\n}\n\nfunc (e *fastGen) addBlock(src []byte) int32 {\n\t// check if we have space already\n\tif len(e.hist)+len(src) > cap(e.hist) {\n\t\tif cap(e.hist) == 0 {\n\t\t\te.hist = make([]byte, 0, allocHistory)\n\t\t} else {\n\t\t\tif cap(e.hist) < maxMatchOffset*2 {\n\t\t\t\tpanic(\"unexpected buffer size\")\n\t\t\t}\n\t\t\t// Move down\n\t\t\toffset := int32(len(e.hist)) - maxMatchOffset\n\t\t\tcopy(e.hist[0:maxMatchOffset], e.hist[offset:])\n\t\t\te.cur += offset\n\t\t\te.hist = e.hist[:maxMatchOffset]\n\t\t}\n\t}\n\ts := int32(len(e.hist))\n\te.hist = append(e.hist, src...)\n\treturn s\n}\n\n// hash4 returns the hash of u to fit in a hash table with h bits.\n// Preferably h should be a constant and should always be <32.\nfunc hash4u(u uint32, h uint8) uint32 {\n\treturn (u * prime4bytes) >> ((32 - h) & reg8SizeMask32)\n}\n\ntype tableEntryPrev struct {\n\tCur  tableEntry\n\tPrev tableEntry\n}\n\n// hash4x64 returns the hash of the lowest 4 bytes of u to fit in a hash table with h bits.\n// Preferably h should be a constant and should always be <32.\nfunc hash4x64(u uint64, h uint8) uint32 {\n\treturn (uint32(u) * prime4bytes) >> ((32 - h) & reg8SizeMask32)\n}\n\n// hash7 returns the hash of the lowest 7 bytes of u to fit in a hash table with h bits.\n// Preferably h should be a constant and should always be <64.\nfunc hash7(u uint64, h uint8) uint32 {\n\treturn uint32(((u << (64 - 56)) * prime7bytes) >> ((64 - h) & reg8SizeMask64))\n}\n\n// hash8 returns the hash of u to fit in a hash table with h bits.\n// Preferably h should be a constant and should always be <64.\nfunc hash8(u uint64, h uint8) uint32 {\n\treturn uint32((u * prime8bytes) >> ((64 - h) & reg8SizeMask64))\n}\n\n// hash6 returns the hash of the lowest 6 bytes of u to fit in a hash table with h bits.\n// Preferably h should be a constant and should always be <64.\nfunc hash6(u uint64, h uint8) uint32 {\n\treturn uint32(((u << (64 - 48)) * prime6bytes) >> ((64 - h) & reg8SizeMask64))\n}\n\n// matchlen will return the match length between offsets and t in src.\n// The maximum length returned is maxMatchLength - 4.\n// It is assumed that s > t, that t >=0 and s < len(src).\nfunc (e *fastGen) matchlen(s, t int32, src []byte) int32 {\n\tif debugDecode {\n\t\tif t >= s {\n\t\t\tpanic(fmt.Sprint(\"t >=s:\", t, s))\n\t\t}\n\t\tif int(s) >= len(src) {\n\t\t\tpanic(fmt.Sprint(\"s >= len(src):\", s, len(src)))\n\t\t}\n\t\tif t < 0 {\n\t\t\tpanic(fmt.Sprint(\"t < 0:\", t))\n\t\t}\n\t\tif s-t > maxMatchOffset {\n\t\t\tpanic(fmt.Sprint(s, \"-\", t, \"(\", s-t, \") > maxMatchLength (\", maxMatchOffset, \")\"))\n\t\t}\n\t}\n\ts1 := int(s) + maxMatchLength - 4\n\tif s1 > len(src) {\n\t\ts1 = len(src)\n\t}\n\n\t// Extend the match to be as long as possible.\n\treturn int32(matchLen(src[s:s1], src[t:]))\n}\n\n// matchlenLong will return the match length between offsets and t in src.\n// It is assumed that s > t, that t >=0 and s < len(src).\nfunc (e *fastGen) matchlenLong(s, t int32, src []byte) int32 {\n\tif debugDecode {\n\t\tif t >= s {\n\t\t\tpanic(fmt.Sprint(\"t >=s:\", t, s))\n\t\t}\n\t\tif int(s) >= len(src) {\n\t\t\tpanic(fmt.Sprint(\"s >= len(src):\", s, len(src)))\n\t\t}\n\t\tif t < 0 {\n\t\t\tpanic(fmt.Sprint(\"t < 0:\", t))\n\t\t}\n\t\tif s-t > maxMatchOffset {\n\t\t\tpanic(fmt.Sprint(s, \"-\", t, \"(\", s-t, \") > maxMatchLength (\", maxMatchOffset, \")\"))\n\t\t}\n\t}\n\t// Extend the match to be as long as possible.\n\treturn int32(matchLen(src[s:], src[t:]))\n}\n\n// Reset the encoding table.\nfunc (e *fastGen) Reset() {\n\tif cap(e.hist) < allocHistory {\n\t\te.hist = make([]byte, 0, allocHistory)\n\t}\n\t// We offset current position so everything will be out of reach.\n\t// If we are above the buffer reset it will be cleared anyway since len(hist) == 0.\n\tif e.cur <= bufferReset {\n\t\te.cur += maxMatchOffset + int32(len(e.hist))\n\t}\n\te.hist = e.hist[:0]\n}\n\n// matchLen returns the maximum length.\n// 'a' must be the shortest of the two.\nfunc matchLen(a, b []byte) int {\n\tb = b[:len(a)]\n\tvar checked int\n\tif len(a) > 4 {\n\t\t// Try 4 bytes first\n\t\tif diff := load32(a, 0) ^ load32(b, 0); diff != 0 {\n\t\t\treturn bits.TrailingZeros32(diff) >> 3\n\t\t}\n\t\t// Switch to 8 byte matching.\n\t\tchecked = 4\n\t\ta = a[4:]\n\t\tb = b[4:]\n\t\tfor len(a) >= 8 {\n\t\t\tb = b[:len(a)]\n\t\t\tif diff := load64(a, 0) ^ load64(b, 0); diff != 0 {\n\t\t\t\treturn checked + (bits.TrailingZeros64(diff) >> 3)\n\t\t\t}\n\t\t\tchecked += 8\n\t\t\ta = a[8:]\n\t\t\tb = b[8:]\n\t\t}\n\t}\n\tb = b[:len(a)]\n\tfor i := range a {\n\t\tif a[i] != b[i] {\n\t\t\treturn int(i) + checked\n\t\t}\n\t}\n\treturn len(a) + checked\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/gen_inflate.go",
    "content": "// +build generate\n\n//go:generate go run $GOFILE && gofmt -w inflate_gen.go\n\npackage main\n\nimport (\n\t\"os\"\n\t\"strings\"\n)\n\nfunc main() {\n\tf, err := os.Create(\"inflate_gen.go\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tdefer f.Close()\n\ttypes := []string{\"*bytes.Buffer\", \"*bytes.Reader\", \"*bufio.Reader\", \"*strings.Reader\"}\n\tnames := []string{\"BytesBuffer\", \"BytesReader\", \"BufioReader\", \"StringsReader\"}\n\timports := []string{\"bytes\", \"bufio\", \"io\", \"strings\", \"math/bits\"}\n\tf.WriteString(`// Code generated by go generate gen_inflate.go. DO NOT EDIT.\n\npackage flate\n\nimport (\n`)\n\n\tfor _, imp := range imports {\n\t\tf.WriteString(\"\\t\\\"\" + imp + \"\\\"\\n\")\n\t}\n\tf.WriteString(\")\\n\\n\")\n\n\ttemplate := `\n\n// Decode a single Huffman block from f.\n// hl and hd are the Huffman states for the lit/length values\n// and the distance values, respectively. If hd == nil, using the\n// fixed distance encoding associated with fixed Huffman blocks.\nfunc (f *decompressor) $FUNCNAME$() {\n\tconst (\n\t\tstateInit = iota // Zero value must be stateInit\n\t\tstateDict\n\t)\n\tfr := f.r.($TYPE$)\n\n\tswitch f.stepState {\n\tcase stateInit:\n\t\tgoto readLiteral\n\tcase stateDict:\n\t\tgoto copyHistory\n\t}\n\nreadLiteral:\n\t// Read literal and/or (length, distance) according to RFC section 3.2.3.\n\t{\n\t\tvar v int\n\t\t{\n\t\t\t// Inlined v, err := f.huffSym(f.hl)\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hl.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hl.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hl.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hl.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tv = int(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tvar length int\n\t\tswitch {\n\t\tcase v < 256:\n\t\t\tf.dict.writeByte(byte(v))\n\t\t\tif f.dict.availWrite() == 0 {\n\t\t\t\tf.toRead = f.dict.readFlush()\n\t\t\t\tf.step = (*decompressor).$FUNCNAME$\n\t\t\t\tf.stepState = stateInit\n\t\t\t\treturn\n\t\t\t}\n\t\t\tgoto readLiteral\n\t\tcase v == 256:\n\t\t\tf.finishBlock()\n\t\t\treturn\n\t\t// otherwise, reference to older data\n\t\tcase v < 265:\n\t\t\tlength = v - (257 - 3)\n\t\tcase v < maxNumLit:\n\t\t\tval := decCodeToLen[(v - 257)]\n\t\t\tlength = int(val.length) + 3\n\t\t\tn := uint(val.extra)\n\t\t\tfor f.nb < n {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits n>0:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\t\n\t\t\t}\n\t\t\tlength += int(f.b & uint32(1<<(n&regSizeMaskUint32)-1))\n\t\t\tf.b >>= n & regSizeMaskUint32\n\t\t\tf.nb -= n\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(v, \">= maxNumLit\")\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tvar dist uint32\n\t\tif f.hd == nil {\n\t\t\tfor f.nb < 5 {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<5:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\tdist = uint32(bits.Reverse8(uint8(f.b & 0x1F << 3)))\n\t\t\tf.b >>= 5\n\t\t\tf.nb -= 5\n\t\t} else {\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hd.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hd.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hd.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hd.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tdist = uint32(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tswitch {\n\t\tcase dist < 4:\n\t\t\tdist++\n\t\tcase dist < maxNumDist:\n\t\t\tnb := uint(dist-2) >> 1\n\t\t\t// have 1 bit in bottom of dist, need nb more.\n\t\t\textra := (dist & 1) << (nb & regSizeMaskUint32)\n\t\t\tfor f.nb < nb {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<nb:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\textra |= f.b & uint32(1<<(nb&regSizeMaskUint32)-1)\n\t\t\tf.b >>= nb & regSizeMaskUint32\n\t\t\tf.nb -= nb\n\t\t\tdist = 1<<((nb+1)&regSizeMaskUint32) + 1 + extra\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist too big:\", dist, maxNumDist)\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\t// No check on length; encoding can be prescient.\n\t\tif dist > uint32(f.dict.histSize()) {\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist > f.dict.histSize():\", dist, f.dict.histSize())\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tf.copyLen, f.copyDist = length, int(dist)\n\t\tgoto copyHistory\n\t}\n\ncopyHistory:\n\t// Perform a backwards copy according to RFC section 3.2.3.\n\t{\n\t\tcnt := f.dict.tryWriteCopy(f.copyDist, f.copyLen)\n\t\tif cnt == 0 {\n\t\t\tcnt = f.dict.writeCopy(f.copyDist, f.copyLen)\n\t\t}\n\t\tf.copyLen -= cnt\n\n\t\tif f.dict.availWrite() == 0 || f.copyLen > 0 {\n\t\t\tf.toRead = f.dict.readFlush()\n\t\t\tf.step = (*decompressor).$FUNCNAME$ // We need to continue this work\n\t\t\tf.stepState = stateDict\n\t\t\treturn\n\t\t}\n\t\tgoto readLiteral\n\t}\n}\n\n`\n\tfor i, t := range types {\n\t\ts := strings.Replace(template, \"$FUNCNAME$\", \"huffman\"+names[i], -1)\n\t\ts = strings.Replace(s, \"$TYPE$\", t, -1)\n\t\tf.WriteString(s)\n\t}\n\tf.WriteString(\"func (f *decompressor) huffmanBlockDecoder() func() {\\n\")\n\tf.WriteString(\"\\tswitch f.r.(type) {\\n\")\n\tfor i, t := range types {\n\t\tf.WriteString(\"\\t\\tcase \" + t + \":\\n\")\n\t\tf.WriteString(\"\\t\\t\\treturn f.huffman\" + names[i] + \"\\n\")\n\t}\n\tf.WriteString(\"\\t\\tdefault:\\n\")\n\tf.WriteString(\"\\t\\t\\treturn f.huffmanBlockGeneric\")\n\tf.WriteString(\"\\t}\\n}\\n\")\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage flate\n\nimport (\n\t\"io\"\n)\n\nconst (\n\t// The largest offset code.\n\toffsetCodeCount = 30\n\n\t// The special code used to mark the end of a block.\n\tendBlockMarker = 256\n\n\t// The first length code.\n\tlengthCodesStart = 257\n\n\t// The number of codegen codes.\n\tcodegenCodeCount = 19\n\tbadCode          = 255\n\n\t// bufferFlushSize indicates the buffer size\n\t// after which bytes are flushed to the writer.\n\t// Should preferably be a multiple of 6, since\n\t// we accumulate 6 bytes between writes to the buffer.\n\tbufferFlushSize = 240\n\n\t// bufferSize is the actual output byte buffer size.\n\t// It must have additional headroom for a flush\n\t// which can contain up to 8 bytes.\n\tbufferSize = bufferFlushSize + 8\n)\n\n// The number of extra bits needed by length code X - LENGTH_CODES_START.\nvar lengthExtraBits = [32]int8{\n\t/* 257 */ 0, 0, 0,\n\t/* 260 */ 0, 0, 0, 0, 0, 1, 1, 1, 1, 2,\n\t/* 270 */ 2, 2, 2, 3, 3, 3, 3, 4, 4, 4,\n\t/* 280 */ 4, 5, 5, 5, 5, 0,\n}\n\n// The length indicated by length code X - LENGTH_CODES_START.\nvar lengthBase = [32]uint8{\n\t0, 1, 2, 3, 4, 5, 6, 7, 8, 10,\n\t12, 14, 16, 20, 24, 28, 32, 40, 48, 56,\n\t64, 80, 96, 112, 128, 160, 192, 224, 255,\n}\n\n// offset code word extra bits.\nvar offsetExtraBits = [64]int8{\n\t0, 0, 0, 0, 1, 1, 2, 2, 3, 3,\n\t4, 4, 5, 5, 6, 6, 7, 7, 8, 8,\n\t9, 9, 10, 10, 11, 11, 12, 12, 13, 13,\n\t/* extended window */\n\t14, 14, 15, 15, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20,\n}\n\nvar offsetBase = [64]uint32{\n\t/* normal deflate */\n\t0x000000, 0x000001, 0x000002, 0x000003, 0x000004,\n\t0x000006, 0x000008, 0x00000c, 0x000010, 0x000018,\n\t0x000020, 0x000030, 0x000040, 0x000060, 0x000080,\n\t0x0000c0, 0x000100, 0x000180, 0x000200, 0x000300,\n\t0x000400, 0x000600, 0x000800, 0x000c00, 0x001000,\n\t0x001800, 0x002000, 0x003000, 0x004000, 0x006000,\n\n\t/* extended window */\n\t0x008000, 0x00c000, 0x010000, 0x018000, 0x020000,\n\t0x030000, 0x040000, 0x060000, 0x080000, 0x0c0000,\n\t0x100000, 0x180000, 0x200000, 0x300000,\n}\n\n// The odd order in which the codegen code sizes are written.\nvar codegenOrder = []uint32{16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}\n\ntype huffmanBitWriter struct {\n\t// writer is the underlying writer.\n\t// Do not use it directly; use the write method, which ensures\n\t// that Write errors are sticky.\n\twriter io.Writer\n\n\t// Data waiting to be written is bytes[0:nbytes]\n\t// and then the low nbits of bits.\n\tbits            uint64\n\tnbits           uint16\n\tnbytes          uint8\n\tliteralEncoding *huffmanEncoder\n\toffsetEncoding  *huffmanEncoder\n\tcodegenEncoding *huffmanEncoder\n\terr             error\n\tlastHeader      int\n\t// Set between 0 (reused block can be up to 2x the size)\n\tlogNewTablePenalty uint\n\tlastHuffMan        bool\n\tbytes              [256]byte\n\tliteralFreq        [lengthCodesStart + 32]uint16\n\toffsetFreq         [32]uint16\n\tcodegenFreq        [codegenCodeCount]uint16\n\n\t// codegen must have an extra space for the final symbol.\n\tcodegen [literalCount + offsetCodeCount + 1]uint8\n}\n\n// Huffman reuse.\n//\n// The huffmanBitWriter supports reusing huffman tables and thereby combining block sections.\n//\n// This is controlled by several variables:\n//\n// If lastHeader is non-zero the Huffman table can be reused.\n// This also indicates that a Huffman table has been generated that can output all\n// possible symbols.\n// It also indicates that an EOB has not yet been emitted, so if a new tabel is generated\n// an EOB with the previous table must be written.\n//\n// If lastHuffMan is set, a table for outputting literals has been generated and offsets are invalid.\n//\n// An incoming block estimates the output size of a new table using a 'fresh' by calculating the\n// optimal size and adding a penalty in 'logNewTablePenalty'.\n// A Huffman table is not optimal, which is why we add a penalty, and generating a new table\n// is slower both for compression and decompression.\n\nfunc newHuffmanBitWriter(w io.Writer) *huffmanBitWriter {\n\treturn &huffmanBitWriter{\n\t\twriter:          w,\n\t\tliteralEncoding: newHuffmanEncoder(literalCount),\n\t\tcodegenEncoding: newHuffmanEncoder(codegenCodeCount),\n\t\toffsetEncoding:  newHuffmanEncoder(offsetCodeCount),\n\t}\n}\n\nfunc (w *huffmanBitWriter) reset(writer io.Writer) {\n\tw.writer = writer\n\tw.bits, w.nbits, w.nbytes, w.err = 0, 0, 0, nil\n\tw.lastHeader = 0\n\tw.lastHuffMan = false\n}\n\nfunc (w *huffmanBitWriter) canReuse(t *tokens) (offsets, lits bool) {\n\toffsets, lits = true, true\n\ta := t.offHist[:offsetCodeCount]\n\tb := w.offsetFreq[:len(a)]\n\tfor i := range a {\n\t\tif b[i] == 0 && a[i] != 0 {\n\t\t\toffsets = false\n\t\t\tbreak\n\t\t}\n\t}\n\n\ta = t.extraHist[:literalCount-256]\n\tb = w.literalFreq[256:literalCount]\n\tb = b[:len(a)]\n\tfor i := range a {\n\t\tif b[i] == 0 && a[i] != 0 {\n\t\t\tlits = false\n\t\t\tbreak\n\t\t}\n\t}\n\tif lits {\n\t\ta = t.litHist[:]\n\t\tb = w.literalFreq[:len(a)]\n\t\tfor i := range a {\n\t\t\tif b[i] == 0 && a[i] != 0 {\n\t\t\t\tlits = false\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\treturn\n}\n\nfunc (w *huffmanBitWriter) flush() {\n\tif w.err != nil {\n\t\tw.nbits = 0\n\t\treturn\n\t}\n\tif w.lastHeader > 0 {\n\t\t// We owe an EOB\n\t\tw.writeCode(w.literalEncoding.codes[endBlockMarker])\n\t\tw.lastHeader = 0\n\t}\n\tn := w.nbytes\n\tfor w.nbits != 0 {\n\t\tw.bytes[n] = byte(w.bits)\n\t\tw.bits >>= 8\n\t\tif w.nbits > 8 { // Avoid underflow\n\t\t\tw.nbits -= 8\n\t\t} else {\n\t\t\tw.nbits = 0\n\t\t}\n\t\tn++\n\t}\n\tw.bits = 0\n\tw.write(w.bytes[:n])\n\tw.nbytes = 0\n}\n\nfunc (w *huffmanBitWriter) write(b []byte) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\t_, w.err = w.writer.Write(b)\n}\n\nfunc (w *huffmanBitWriter) writeBits(b int32, nb uint16) {\n\tw.bits |= uint64(b) << (w.nbits & reg16SizeMask64)\n\tw.nbits += nb\n\tif w.nbits >= 48 {\n\t\tw.writeOutBits()\n\t}\n}\n\nfunc (w *huffmanBitWriter) writeBytes(bytes []byte) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\tn := w.nbytes\n\tif w.nbits&7 != 0 {\n\t\tw.err = InternalError(\"writeBytes with unfinished bits\")\n\t\treturn\n\t}\n\tfor w.nbits != 0 {\n\t\tw.bytes[n] = byte(w.bits)\n\t\tw.bits >>= 8\n\t\tw.nbits -= 8\n\t\tn++\n\t}\n\tif n != 0 {\n\t\tw.write(w.bytes[:n])\n\t}\n\tw.nbytes = 0\n\tw.write(bytes)\n}\n\n// RFC 1951 3.2.7 specifies a special run-length encoding for specifying\n// the literal and offset lengths arrays (which are concatenated into a single\n// array).  This method generates that run-length encoding.\n//\n// The result is written into the codegen array, and the frequencies\n// of each code is written into the codegenFreq array.\n// Codes 0-15 are single byte codes. Codes 16-18 are followed by additional\n// information. Code badCode is an end marker\n//\n//  numLiterals      The number of literals in literalEncoding\n//  numOffsets       The number of offsets in offsetEncoding\n//  litenc, offenc   The literal and offset encoder to use\nfunc (w *huffmanBitWriter) generateCodegen(numLiterals int, numOffsets int, litEnc, offEnc *huffmanEncoder) {\n\tfor i := range w.codegenFreq {\n\t\tw.codegenFreq[i] = 0\n\t}\n\t// Note that we are using codegen both as a temporary variable for holding\n\t// a copy of the frequencies, and as the place where we put the result.\n\t// This is fine because the output is always shorter than the input used\n\t// so far.\n\tcodegen := w.codegen[:] // cache\n\t// Copy the concatenated code sizes to codegen. Put a marker at the end.\n\tcgnl := codegen[:numLiterals]\n\tfor i := range cgnl {\n\t\tcgnl[i] = uint8(litEnc.codes[i].len)\n\t}\n\n\tcgnl = codegen[numLiterals : numLiterals+numOffsets]\n\tfor i := range cgnl {\n\t\tcgnl[i] = uint8(offEnc.codes[i].len)\n\t}\n\tcodegen[numLiterals+numOffsets] = badCode\n\n\tsize := codegen[0]\n\tcount := 1\n\toutIndex := 0\n\tfor inIndex := 1; size != badCode; inIndex++ {\n\t\t// INVARIANT: We have seen \"count\" copies of size that have not yet\n\t\t// had output generated for them.\n\t\tnextSize := codegen[inIndex]\n\t\tif nextSize == size {\n\t\t\tcount++\n\t\t\tcontinue\n\t\t}\n\t\t// We need to generate codegen indicating \"count\" of size.\n\t\tif size != 0 {\n\t\t\tcodegen[outIndex] = size\n\t\t\toutIndex++\n\t\t\tw.codegenFreq[size]++\n\t\t\tcount--\n\t\t\tfor count >= 3 {\n\t\t\t\tn := 6\n\t\t\t\tif n > count {\n\t\t\t\t\tn = count\n\t\t\t\t}\n\t\t\t\tcodegen[outIndex] = 16\n\t\t\t\toutIndex++\n\t\t\t\tcodegen[outIndex] = uint8(n - 3)\n\t\t\t\toutIndex++\n\t\t\t\tw.codegenFreq[16]++\n\t\t\t\tcount -= n\n\t\t\t}\n\t\t} else {\n\t\t\tfor count >= 11 {\n\t\t\t\tn := 138\n\t\t\t\tif n > count {\n\t\t\t\t\tn = count\n\t\t\t\t}\n\t\t\t\tcodegen[outIndex] = 18\n\t\t\t\toutIndex++\n\t\t\t\tcodegen[outIndex] = uint8(n - 11)\n\t\t\t\toutIndex++\n\t\t\t\tw.codegenFreq[18]++\n\t\t\t\tcount -= n\n\t\t\t}\n\t\t\tif count >= 3 {\n\t\t\t\t// count >= 3 && count <= 10\n\t\t\t\tcodegen[outIndex] = 17\n\t\t\t\toutIndex++\n\t\t\t\tcodegen[outIndex] = uint8(count - 3)\n\t\t\t\toutIndex++\n\t\t\t\tw.codegenFreq[17]++\n\t\t\t\tcount = 0\n\t\t\t}\n\t\t}\n\t\tcount--\n\t\tfor ; count >= 0; count-- {\n\t\t\tcodegen[outIndex] = size\n\t\t\toutIndex++\n\t\t\tw.codegenFreq[size]++\n\t\t}\n\t\t// Set up invariant for next time through the loop.\n\t\tsize = nextSize\n\t\tcount = 1\n\t}\n\t// Marker indicating the end of the codegen.\n\tcodegen[outIndex] = badCode\n}\n\nfunc (w *huffmanBitWriter) codegens() int {\n\tnumCodegens := len(w.codegenFreq)\n\tfor numCodegens > 4 && w.codegenFreq[codegenOrder[numCodegens-1]] == 0 {\n\t\tnumCodegens--\n\t}\n\treturn numCodegens\n}\n\nfunc (w *huffmanBitWriter) headerSize() (size, numCodegens int) {\n\tnumCodegens = len(w.codegenFreq)\n\tfor numCodegens > 4 && w.codegenFreq[codegenOrder[numCodegens-1]] == 0 {\n\t\tnumCodegens--\n\t}\n\treturn 3 + 5 + 5 + 4 + (3 * numCodegens) +\n\t\tw.codegenEncoding.bitLength(w.codegenFreq[:]) +\n\t\tint(w.codegenFreq[16])*2 +\n\t\tint(w.codegenFreq[17])*3 +\n\t\tint(w.codegenFreq[18])*7, numCodegens\n}\n\n// dynamicSize returns the size of dynamically encoded data in bits.\nfunc (w *huffmanBitWriter) dynamicReuseSize(litEnc, offEnc *huffmanEncoder) (size int) {\n\tsize = litEnc.bitLength(w.literalFreq[:]) +\n\t\toffEnc.bitLength(w.offsetFreq[:])\n\treturn size\n}\n\n// dynamicSize returns the size of dynamically encoded data in bits.\nfunc (w *huffmanBitWriter) dynamicSize(litEnc, offEnc *huffmanEncoder, extraBits int) (size, numCodegens int) {\n\theader, numCodegens := w.headerSize()\n\tsize = header +\n\t\tlitEnc.bitLength(w.literalFreq[:]) +\n\t\toffEnc.bitLength(w.offsetFreq[:]) +\n\t\textraBits\n\treturn size, numCodegens\n}\n\n// extraBitSize will return the number of bits that will be written\n// as \"extra\" bits on matches.\nfunc (w *huffmanBitWriter) extraBitSize() int {\n\ttotal := 0\n\tfor i, n := range w.literalFreq[257:literalCount] {\n\t\ttotal += int(n) * int(lengthExtraBits[i&31])\n\t}\n\tfor i, n := range w.offsetFreq[:offsetCodeCount] {\n\t\ttotal += int(n) * int(offsetExtraBits[i&31])\n\t}\n\treturn total\n}\n\n// fixedSize returns the size of dynamically encoded data in bits.\nfunc (w *huffmanBitWriter) fixedSize(extraBits int) int {\n\treturn 3 +\n\t\tfixedLiteralEncoding.bitLength(w.literalFreq[:]) +\n\t\tfixedOffsetEncoding.bitLength(w.offsetFreq[:]) +\n\t\textraBits\n}\n\n// storedSize calculates the stored size, including header.\n// The function returns the size in bits and whether the block\n// fits inside a single block.\nfunc (w *huffmanBitWriter) storedSize(in []byte) (int, bool) {\n\tif in == nil {\n\t\treturn 0, false\n\t}\n\tif len(in) <= maxStoreBlockSize {\n\t\treturn (len(in) + 5) * 8, true\n\t}\n\treturn 0, false\n}\n\nfunc (w *huffmanBitWriter) writeCode(c hcode) {\n\t// The function does not get inlined if we \"& 63\" the shift.\n\tw.bits |= uint64(c.code) << w.nbits\n\tw.nbits += c.len\n\tif w.nbits >= 48 {\n\t\tw.writeOutBits()\n\t}\n}\n\n// writeOutBits will write bits to the buffer.\nfunc (w *huffmanBitWriter) writeOutBits() {\n\tbits := w.bits\n\tw.bits >>= 48\n\tw.nbits -= 48\n\tn := w.nbytes\n\tw.bytes[n] = byte(bits)\n\tw.bytes[n+1] = byte(bits >> 8)\n\tw.bytes[n+2] = byte(bits >> 16)\n\tw.bytes[n+3] = byte(bits >> 24)\n\tw.bytes[n+4] = byte(bits >> 32)\n\tw.bytes[n+5] = byte(bits >> 40)\n\tn += 6\n\tif n >= bufferFlushSize {\n\t\tif w.err != nil {\n\t\t\tn = 0\n\t\t\treturn\n\t\t}\n\t\tw.write(w.bytes[:n])\n\t\tn = 0\n\t}\n\tw.nbytes = n\n}\n\n// Write the header of a dynamic Huffman block to the output stream.\n//\n//  numLiterals  The number of literals specified in codegen\n//  numOffsets   The number of offsets specified in codegen\n//  numCodegens  The number of codegens used in codegen\nfunc (w *huffmanBitWriter) writeDynamicHeader(numLiterals int, numOffsets int, numCodegens int, isEof bool) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\tvar firstBits int32 = 4\n\tif isEof {\n\t\tfirstBits = 5\n\t}\n\tw.writeBits(firstBits, 3)\n\tw.writeBits(int32(numLiterals-257), 5)\n\tw.writeBits(int32(numOffsets-1), 5)\n\tw.writeBits(int32(numCodegens-4), 4)\n\n\tfor i := 0; i < numCodegens; i++ {\n\t\tvalue := uint(w.codegenEncoding.codes[codegenOrder[i]].len)\n\t\tw.writeBits(int32(value), 3)\n\t}\n\n\ti := 0\n\tfor {\n\t\tvar codeWord = uint32(w.codegen[i])\n\t\ti++\n\t\tif codeWord == badCode {\n\t\t\tbreak\n\t\t}\n\t\tw.writeCode(w.codegenEncoding.codes[codeWord])\n\n\t\tswitch codeWord {\n\t\tcase 16:\n\t\t\tw.writeBits(int32(w.codegen[i]), 2)\n\t\t\ti++\n\t\tcase 17:\n\t\t\tw.writeBits(int32(w.codegen[i]), 3)\n\t\t\ti++\n\t\tcase 18:\n\t\t\tw.writeBits(int32(w.codegen[i]), 7)\n\t\t\ti++\n\t\t}\n\t}\n}\n\n// writeStoredHeader will write a stored header.\n// If the stored block is only used for EOF,\n// it is replaced with a fixed huffman block.\nfunc (w *huffmanBitWriter) writeStoredHeader(length int, isEof bool) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\tif w.lastHeader > 0 {\n\t\t// We owe an EOB\n\t\tw.writeCode(w.literalEncoding.codes[endBlockMarker])\n\t\tw.lastHeader = 0\n\t}\n\n\t// To write EOF, use a fixed encoding block. 10 bits instead of 5 bytes.\n\tif length == 0 && isEof {\n\t\tw.writeFixedHeader(isEof)\n\t\t// EOB: 7 bits, value: 0\n\t\tw.writeBits(0, 7)\n\t\tw.flush()\n\t\treturn\n\t}\n\n\tvar flag int32\n\tif isEof {\n\t\tflag = 1\n\t}\n\tw.writeBits(flag, 3)\n\tw.flush()\n\tw.writeBits(int32(length), 16)\n\tw.writeBits(int32(^uint16(length)), 16)\n}\n\nfunc (w *huffmanBitWriter) writeFixedHeader(isEof bool) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\tif w.lastHeader > 0 {\n\t\t// We owe an EOB\n\t\tw.writeCode(w.literalEncoding.codes[endBlockMarker])\n\t\tw.lastHeader = 0\n\t}\n\n\t// Indicate that we are a fixed Huffman block\n\tvar value int32 = 2\n\tif isEof {\n\t\tvalue = 3\n\t}\n\tw.writeBits(value, 3)\n}\n\n// writeBlock will write a block of tokens with the smallest encoding.\n// The original input can be supplied, and if the huffman encoded data\n// is larger than the original bytes, the data will be written as a\n// stored block.\n// If the input is nil, the tokens will always be Huffman encoded.\nfunc (w *huffmanBitWriter) writeBlock(tokens *tokens, eof bool, input []byte) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\n\ttokens.AddEOB()\n\tif w.lastHeader > 0 {\n\t\t// We owe an EOB\n\t\tw.writeCode(w.literalEncoding.codes[endBlockMarker])\n\t\tw.lastHeader = 0\n\t}\n\tnumLiterals, numOffsets := w.indexTokens(tokens, false)\n\tw.generate(tokens)\n\tvar extraBits int\n\tstoredSize, storable := w.storedSize(input)\n\tif storable {\n\t\textraBits = w.extraBitSize()\n\t}\n\n\t// Figure out smallest code.\n\t// Fixed Huffman baseline.\n\tvar literalEncoding = fixedLiteralEncoding\n\tvar offsetEncoding = fixedOffsetEncoding\n\tvar size = w.fixedSize(extraBits)\n\n\t// Dynamic Huffman?\n\tvar numCodegens int\n\n\t// Generate codegen and codegenFrequencies, which indicates how to encode\n\t// the literalEncoding and the offsetEncoding.\n\tw.generateCodegen(numLiterals, numOffsets, w.literalEncoding, w.offsetEncoding)\n\tw.codegenEncoding.generate(w.codegenFreq[:], 7)\n\tdynamicSize, numCodegens := w.dynamicSize(w.literalEncoding, w.offsetEncoding, extraBits)\n\n\tif dynamicSize < size {\n\t\tsize = dynamicSize\n\t\tliteralEncoding = w.literalEncoding\n\t\toffsetEncoding = w.offsetEncoding\n\t}\n\n\t// Stored bytes?\n\tif storable && storedSize < size {\n\t\tw.writeStoredHeader(len(input), eof)\n\t\tw.writeBytes(input)\n\t\treturn\n\t}\n\n\t// Huffman.\n\tif literalEncoding == fixedLiteralEncoding {\n\t\tw.writeFixedHeader(eof)\n\t} else {\n\t\tw.writeDynamicHeader(numLiterals, numOffsets, numCodegens, eof)\n\t}\n\n\t// Write the tokens.\n\tw.writeTokens(tokens.Slice(), literalEncoding.codes, offsetEncoding.codes)\n}\n\n// writeBlockDynamic encodes a block using a dynamic Huffman table.\n// This should be used if the symbols used have a disproportionate\n// histogram distribution.\n// If input is supplied and the compression savings are below 1/16th of the\n// input size the block is stored.\nfunc (w *huffmanBitWriter) writeBlockDynamic(tokens *tokens, eof bool, input []byte, sync bool) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\n\tsync = sync || eof\n\tif sync {\n\t\ttokens.AddEOB()\n\t}\n\n\t// We cannot reuse pure huffman table, and must mark as EOF.\n\tif (w.lastHuffMan || eof) && w.lastHeader > 0 {\n\t\t// We will not try to reuse.\n\t\tw.writeCode(w.literalEncoding.codes[endBlockMarker])\n\t\tw.lastHeader = 0\n\t\tw.lastHuffMan = false\n\t}\n\tif !sync {\n\t\ttokens.Fill()\n\t}\n\tnumLiterals, numOffsets := w.indexTokens(tokens, !sync)\n\n\tvar size int\n\t// Check if we should reuse.\n\tif w.lastHeader > 0 {\n\t\t// Estimate size for using a new table.\n\t\t// Use the previous header size as the best estimate.\n\t\tnewSize := w.lastHeader + tokens.EstimatedBits()\n\t\tnewSize += newSize >> w.logNewTablePenalty\n\n\t\t// The estimated size is calculated as an optimal table.\n\t\t// We add a penalty to make it more realistic and re-use a bit more.\n\t\treuseSize := w.dynamicReuseSize(w.literalEncoding, w.offsetEncoding) + w.extraBitSize()\n\n\t\t// Check if a new table is better.\n\t\tif newSize < reuseSize {\n\t\t\t// Write the EOB we owe.\n\t\t\tw.writeCode(w.literalEncoding.codes[endBlockMarker])\n\t\t\tsize = newSize\n\t\t\tw.lastHeader = 0\n\t\t} else {\n\t\t\tsize = reuseSize\n\t\t}\n\t\t// Check if we get a reasonable size decrease.\n\t\tif ssize, storable := w.storedSize(input); storable && ssize < (size+size>>4) {\n\t\t\tw.writeStoredHeader(len(input), eof)\n\t\t\tw.writeBytes(input)\n\t\t\tw.lastHeader = 0\n\t\t\treturn\n\t\t}\n\t}\n\n\t// We want a new block/table\n\tif w.lastHeader == 0 {\n\t\tw.generate(tokens)\n\t\t// Generate codegen and codegenFrequencies, which indicates how to encode\n\t\t// the literalEncoding and the offsetEncoding.\n\t\tw.generateCodegen(numLiterals, numOffsets, w.literalEncoding, w.offsetEncoding)\n\t\tw.codegenEncoding.generate(w.codegenFreq[:], 7)\n\t\tvar numCodegens int\n\t\tsize, numCodegens = w.dynamicSize(w.literalEncoding, w.offsetEncoding, w.extraBitSize())\n\t\t// Store bytes, if we don't get a reasonable improvement.\n\t\tif ssize, storable := w.storedSize(input); storable && ssize < (size+size>>4) {\n\t\t\tw.writeStoredHeader(len(input), eof)\n\t\t\tw.writeBytes(input)\n\t\t\tw.lastHeader = 0\n\t\t\treturn\n\t\t}\n\n\t\t// Write Huffman table.\n\t\tw.writeDynamicHeader(numLiterals, numOffsets, numCodegens, eof)\n\t\tw.lastHeader, _ = w.headerSize()\n\t\tw.lastHuffMan = false\n\t}\n\n\tif sync {\n\t\tw.lastHeader = 0\n\t}\n\t// Write the tokens.\n\tw.writeTokens(tokens.Slice(), w.literalEncoding.codes, w.offsetEncoding.codes)\n}\n\n// indexTokens indexes a slice of tokens, and updates\n// literalFreq and offsetFreq, and generates literalEncoding\n// and offsetEncoding.\n// The number of literal and offset tokens is returned.\nfunc (w *huffmanBitWriter) indexTokens(t *tokens, filled bool) (numLiterals, numOffsets int) {\n\tcopy(w.literalFreq[:], t.litHist[:])\n\tcopy(w.literalFreq[256:], t.extraHist[:])\n\tcopy(w.offsetFreq[:], t.offHist[:offsetCodeCount])\n\n\tif t.n == 0 {\n\t\treturn\n\t}\n\tif filled {\n\t\treturn maxNumLit, maxNumDist\n\t}\n\t// get the number of literals\n\tnumLiterals = len(w.literalFreq)\n\tfor w.literalFreq[numLiterals-1] == 0 {\n\t\tnumLiterals--\n\t}\n\t// get the number of offsets\n\tnumOffsets = len(w.offsetFreq)\n\tfor numOffsets > 0 && w.offsetFreq[numOffsets-1] == 0 {\n\t\tnumOffsets--\n\t}\n\tif numOffsets == 0 {\n\t\t// We haven't found a single match. If we want to go with the dynamic encoding,\n\t\t// we should count at least one offset to be sure that the offset huffman tree could be encoded.\n\t\tw.offsetFreq[0] = 1\n\t\tnumOffsets = 1\n\t}\n\treturn\n}\n\nfunc (w *huffmanBitWriter) generate(t *tokens) {\n\tw.literalEncoding.generate(w.literalFreq[:literalCount], 15)\n\tw.offsetEncoding.generate(w.offsetFreq[:offsetCodeCount], 15)\n}\n\n// writeTokens writes a slice of tokens to the output.\n// codes for literal and offset encoding must be supplied.\nfunc (w *huffmanBitWriter) writeTokens(tokens []token, leCodes, oeCodes []hcode) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\tif len(tokens) == 0 {\n\t\treturn\n\t}\n\n\t// Only last token should be endBlockMarker.\n\tvar deferEOB bool\n\tif tokens[len(tokens)-1] == endBlockMarker {\n\t\ttokens = tokens[:len(tokens)-1]\n\t\tdeferEOB = true\n\t}\n\n\t// Create slices up to the next power of two to avoid bounds checks.\n\tlits := leCodes[:256]\n\toffs := oeCodes[:32]\n\tlengths := leCodes[lengthCodesStart:]\n\tlengths = lengths[:32]\n\tfor _, t := range tokens {\n\t\tif t < matchType {\n\t\t\tw.writeCode(lits[t.literal()])\n\t\t\tcontinue\n\t\t}\n\n\t\t// Write the length\n\t\tlength := t.length()\n\t\tlengthCode := lengthCode(length)\n\t\tif false {\n\t\t\tw.writeCode(lengths[lengthCode&31])\n\t\t} else {\n\t\t\t// inlined\n\t\t\tc := lengths[lengthCode&31]\n\t\t\tw.bits |= uint64(c.code) << (w.nbits & reg16SizeMask64)\n\t\t\tw.nbits += c.len\n\t\t\tif w.nbits >= 48 {\n\t\t\t\tw.writeOutBits()\n\t\t\t}\n\t\t}\n\n\t\textraLengthBits := uint16(lengthExtraBits[lengthCode&31])\n\t\tif extraLengthBits > 0 {\n\t\t\textraLength := int32(length - lengthBase[lengthCode&31])\n\t\t\tw.writeBits(extraLength, extraLengthBits)\n\t\t}\n\t\t// Write the offset\n\t\toffset := t.offset()\n\t\toffsetCode := offsetCode(offset)\n\t\tif false {\n\t\t\tw.writeCode(offs[offsetCode&31])\n\t\t} else {\n\t\t\t// inlined\n\t\t\tc := offs[offsetCode&31]\n\t\t\tw.bits |= uint64(c.code) << (w.nbits & reg16SizeMask64)\n\t\t\tw.nbits += c.len\n\t\t\tif w.nbits >= 48 {\n\t\t\t\tw.writeOutBits()\n\t\t\t}\n\t\t}\n\t\textraOffsetBits := uint16(offsetExtraBits[offsetCode&63])\n\t\tif extraOffsetBits > 0 {\n\t\t\textraOffset := int32(offset - offsetBase[offsetCode&63])\n\t\t\tw.writeBits(extraOffset, extraOffsetBits)\n\t\t}\n\t}\n\tif deferEOB {\n\t\tw.writeCode(leCodes[endBlockMarker])\n\t}\n}\n\n// huffOffset is a static offset encoder used for huffman only encoding.\n// It can be reused since we will not be encoding offset values.\nvar huffOffset *huffmanEncoder\n\nfunc init() {\n\tw := newHuffmanBitWriter(nil)\n\tw.offsetFreq[0] = 1\n\thuffOffset = newHuffmanEncoder(offsetCodeCount)\n\thuffOffset.generate(w.offsetFreq[:offsetCodeCount], 15)\n}\n\n// writeBlockHuff encodes a block of bytes as either\n// Huffman encoded literals or uncompressed bytes if the\n// results only gains very little from compression.\nfunc (w *huffmanBitWriter) writeBlockHuff(eof bool, input []byte, sync bool) {\n\tif w.err != nil {\n\t\treturn\n\t}\n\n\t// Clear histogram\n\tfor i := range w.literalFreq[:] {\n\t\tw.literalFreq[i] = 0\n\t}\n\tif !w.lastHuffMan {\n\t\tfor i := range w.offsetFreq[:] {\n\t\t\tw.offsetFreq[i] = 0\n\t\t}\n\t}\n\n\t// Add everything as literals\n\t// We have to estimate the header size.\n\t// Assume header is around 70 bytes:\n\t// https://stackoverflow.com/a/25454430\n\tconst guessHeaderSizeBits = 70 * 8\n\testBits, estExtra := histogramSize(input, w.literalFreq[:], !eof && !sync)\n\testBits += w.lastHeader + 15\n\tif w.lastHeader == 0 {\n\t\testBits += guessHeaderSizeBits\n\t}\n\testBits += estBits >> w.logNewTablePenalty\n\n\t// Store bytes, if we don't get a reasonable improvement.\n\tssize, storable := w.storedSize(input)\n\tif storable && ssize < estBits {\n\t\tw.writeStoredHeader(len(input), eof)\n\t\tw.writeBytes(input)\n\t\treturn\n\t}\n\n\tif w.lastHeader > 0 {\n\t\treuseSize := w.literalEncoding.bitLength(w.literalFreq[:256])\n\t\testBits += estExtra\n\n\t\tif estBits < reuseSize {\n\t\t\t// We owe an EOB\n\t\t\tw.writeCode(w.literalEncoding.codes[endBlockMarker])\n\t\t\tw.lastHeader = 0\n\t\t}\n\t}\n\n\tconst numLiterals = endBlockMarker + 1\n\tconst numOffsets = 1\n\tif w.lastHeader == 0 {\n\t\tw.literalFreq[endBlockMarker] = 1\n\t\tw.literalEncoding.generate(w.literalFreq[:numLiterals], 15)\n\n\t\t// Generate codegen and codegenFrequencies, which indicates how to encode\n\t\t// the literalEncoding and the offsetEncoding.\n\t\tw.generateCodegen(numLiterals, numOffsets, w.literalEncoding, huffOffset)\n\t\tw.codegenEncoding.generate(w.codegenFreq[:], 7)\n\t\tnumCodegens := w.codegens()\n\n\t\t// Huffman.\n\t\tw.writeDynamicHeader(numLiterals, numOffsets, numCodegens, eof)\n\t\tw.lastHuffMan = true\n\t\tw.lastHeader, _ = w.headerSize()\n\t}\n\n\tencoding := w.literalEncoding.codes[:257]\n\tfor _, t := range input {\n\t\t// Bitwriting inlined, ~30% speedup\n\t\tc := encoding[t]\n\t\tw.bits |= uint64(c.code) << ((w.nbits) & reg16SizeMask64)\n\t\tw.nbits += c.len\n\t\tif w.nbits >= 48 {\n\t\t\tbits := w.bits\n\t\t\tw.bits >>= 48\n\t\t\tw.nbits -= 48\n\t\t\tn := w.nbytes\n\t\t\tw.bytes[n] = byte(bits)\n\t\t\tw.bytes[n+1] = byte(bits >> 8)\n\t\t\tw.bytes[n+2] = byte(bits >> 16)\n\t\t\tw.bytes[n+3] = byte(bits >> 24)\n\t\t\tw.bytes[n+4] = byte(bits >> 32)\n\t\t\tw.bytes[n+5] = byte(bits >> 40)\n\t\t\tn += 6\n\t\t\tif n >= bufferFlushSize {\n\t\t\t\tif w.err != nil {\n\t\t\t\t\tn = 0\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tw.write(w.bytes[:n])\n\t\t\t\tn = 0\n\t\t\t}\n\t\t\tw.nbytes = n\n\t\t}\n\t}\n\tif eof || sync {\n\t\tw.writeCode(encoding[endBlockMarker])\n\t\tw.lastHeader = 0\n\t\tw.lastHuffMan = false\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/huffman_code.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage flate\n\nimport (\n\t\"math\"\n\t\"math/bits\"\n)\n\nconst (\n\tmaxBitsLimit = 16\n\t// number of valid literals\n\tliteralCount = 286\n)\n\n// hcode is a huffman code with a bit code and bit length.\ntype hcode struct {\n\tcode, len uint16\n}\n\ntype huffmanEncoder struct {\n\tcodes     []hcode\n\tfreqcache []literalNode\n\tbitCount  [17]int32\n}\n\ntype literalNode struct {\n\tliteral uint16\n\tfreq    uint16\n}\n\n// A levelInfo describes the state of the constructed tree for a given depth.\ntype levelInfo struct {\n\t// Our level.  for better printing\n\tlevel int32\n\n\t// The frequency of the last node at this level\n\tlastFreq int32\n\n\t// The frequency of the next character to add to this level\n\tnextCharFreq int32\n\n\t// The frequency of the next pair (from level below) to add to this level.\n\t// Only valid if the \"needed\" value of the next lower level is 0.\n\tnextPairFreq int32\n\n\t// The number of chains remaining to generate for this level before moving\n\t// up to the next level\n\tneeded int32\n}\n\n// set sets the code and length of an hcode.\nfunc (h *hcode) set(code uint16, length uint16) {\n\th.len = length\n\th.code = code\n}\n\nfunc reverseBits(number uint16, bitLength byte) uint16 {\n\treturn bits.Reverse16(number << ((16 - bitLength) & 15))\n}\n\nfunc maxNode() literalNode { return literalNode{math.MaxUint16, math.MaxUint16} }\n\nfunc newHuffmanEncoder(size int) *huffmanEncoder {\n\t// Make capacity to next power of two.\n\tc := uint(bits.Len32(uint32(size - 1)))\n\treturn &huffmanEncoder{codes: make([]hcode, size, 1<<c)}\n}\n\n// Generates a HuffmanCode corresponding to the fixed literal table\nfunc generateFixedLiteralEncoding() *huffmanEncoder {\n\th := newHuffmanEncoder(literalCount)\n\tcodes := h.codes\n\tvar ch uint16\n\tfor ch = 0; ch < literalCount; ch++ {\n\t\tvar bits uint16\n\t\tvar size uint16\n\t\tswitch {\n\t\tcase ch < 144:\n\t\t\t// size 8, 000110000  .. 10111111\n\t\t\tbits = ch + 48\n\t\t\tsize = 8\n\t\tcase ch < 256:\n\t\t\t// size 9, 110010000 .. 111111111\n\t\t\tbits = ch + 400 - 144\n\t\t\tsize = 9\n\t\tcase ch < 280:\n\t\t\t// size 7, 0000000 .. 0010111\n\t\t\tbits = ch - 256\n\t\t\tsize = 7\n\t\tdefault:\n\t\t\t// size 8, 11000000 .. 11000111\n\t\t\tbits = ch + 192 - 280\n\t\t\tsize = 8\n\t\t}\n\t\tcodes[ch] = hcode{code: reverseBits(bits, byte(size)), len: size}\n\t}\n\treturn h\n}\n\nfunc generateFixedOffsetEncoding() *huffmanEncoder {\n\th := newHuffmanEncoder(30)\n\tcodes := h.codes\n\tfor ch := range codes {\n\t\tcodes[ch] = hcode{code: reverseBits(uint16(ch), 5), len: 5}\n\t}\n\treturn h\n}\n\nvar fixedLiteralEncoding = generateFixedLiteralEncoding()\nvar fixedOffsetEncoding = generateFixedOffsetEncoding()\n\nfunc (h *huffmanEncoder) bitLength(freq []uint16) int {\n\tvar total int\n\tfor i, f := range freq {\n\t\tif f != 0 {\n\t\t\ttotal += int(f) * int(h.codes[i].len)\n\t\t}\n\t}\n\treturn total\n}\n\n// Return the number of literals assigned to each bit size in the Huffman encoding\n//\n// This method is only called when list.length >= 3\n// The cases of 0, 1, and 2 literals are handled by special case code.\n//\n// list  An array of the literals with non-zero frequencies\n//             and their associated frequencies. The array is in order of increasing\n//             frequency, and has as its last element a special element with frequency\n//             MaxInt32\n// maxBits     The maximum number of bits that should be used to encode any literal.\n//             Must be less than 16.\n// return      An integer array in which array[i] indicates the number of literals\n//             that should be encoded in i bits.\nfunc (h *huffmanEncoder) bitCounts(list []literalNode, maxBits int32) []int32 {\n\tif maxBits >= maxBitsLimit {\n\t\tpanic(\"flate: maxBits too large\")\n\t}\n\tn := int32(len(list))\n\tlist = list[0 : n+1]\n\tlist[n] = maxNode()\n\n\t// The tree can't have greater depth than n - 1, no matter what. This\n\t// saves a little bit of work in some small cases\n\tif maxBits > n-1 {\n\t\tmaxBits = n - 1\n\t}\n\n\t// Create information about each of the levels.\n\t// A bogus \"Level 0\" whose sole purpose is so that\n\t// level1.prev.needed==0.  This makes level1.nextPairFreq\n\t// be a legitimate value that never gets chosen.\n\tvar levels [maxBitsLimit]levelInfo\n\t// leafCounts[i] counts the number of literals at the left\n\t// of ancestors of the rightmost node at level i.\n\t// leafCounts[i][j] is the number of literals at the left\n\t// of the level j ancestor.\n\tvar leafCounts [maxBitsLimit][maxBitsLimit]int32\n\n\tfor level := int32(1); level <= maxBits; level++ {\n\t\t// For every level, the first two items are the first two characters.\n\t\t// We initialize the levels as if we had already figured this out.\n\t\tlevels[level] = levelInfo{\n\t\t\tlevel:        level,\n\t\t\tlastFreq:     int32(list[1].freq),\n\t\t\tnextCharFreq: int32(list[2].freq),\n\t\t\tnextPairFreq: int32(list[0].freq) + int32(list[1].freq),\n\t\t}\n\t\tleafCounts[level][level] = 2\n\t\tif level == 1 {\n\t\t\tlevels[level].nextPairFreq = math.MaxInt32\n\t\t}\n\t}\n\n\t// We need a total of 2*n - 2 items at top level and have already generated 2.\n\tlevels[maxBits].needed = 2*n - 4\n\n\tlevel := maxBits\n\tfor {\n\t\tl := &levels[level]\n\t\tif l.nextPairFreq == math.MaxInt32 && l.nextCharFreq == math.MaxInt32 {\n\t\t\t// We've run out of both leafs and pairs.\n\t\t\t// End all calculations for this level.\n\t\t\t// To make sure we never come back to this level or any lower level,\n\t\t\t// set nextPairFreq impossibly large.\n\t\t\tl.needed = 0\n\t\t\tlevels[level+1].nextPairFreq = math.MaxInt32\n\t\t\tlevel++\n\t\t\tcontinue\n\t\t}\n\n\t\tprevFreq := l.lastFreq\n\t\tif l.nextCharFreq < l.nextPairFreq {\n\t\t\t// The next item on this row is a leaf node.\n\t\t\tn := leafCounts[level][level] + 1\n\t\t\tl.lastFreq = l.nextCharFreq\n\t\t\t// Lower leafCounts are the same of the previous node.\n\t\t\tleafCounts[level][level] = n\n\t\t\te := list[n]\n\t\t\tif e.literal < math.MaxUint16 {\n\t\t\t\tl.nextCharFreq = int32(e.freq)\n\t\t\t} else {\n\t\t\t\tl.nextCharFreq = math.MaxInt32\n\t\t\t}\n\t\t} else {\n\t\t\t// The next item on this row is a pair from the previous row.\n\t\t\t// nextPairFreq isn't valid until we generate two\n\t\t\t// more values in the level below\n\t\t\tl.lastFreq = l.nextPairFreq\n\t\t\t// Take leaf counts from the lower level, except counts[level] remains the same.\n\t\t\tcopy(leafCounts[level][:level], leafCounts[level-1][:level])\n\t\t\tlevels[l.level-1].needed = 2\n\t\t}\n\n\t\tif l.needed--; l.needed == 0 {\n\t\t\t// We've done everything we need to do for this level.\n\t\t\t// Continue calculating one level up. Fill in nextPairFreq\n\t\t\t// of that level with the sum of the two nodes we've just calculated on\n\t\t\t// this level.\n\t\t\tif l.level == maxBits {\n\t\t\t\t// All done!\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tlevels[l.level+1].nextPairFreq = prevFreq + l.lastFreq\n\t\t\tlevel++\n\t\t} else {\n\t\t\t// If we stole from below, move down temporarily to replenish it.\n\t\t\tfor levels[level-1].needed > 0 {\n\t\t\t\tlevel--\n\t\t\t}\n\t\t}\n\t}\n\n\t// Somethings is wrong if at the end, the top level is null or hasn't used\n\t// all of the leaves.\n\tif leafCounts[maxBits][maxBits] != n {\n\t\tpanic(\"leafCounts[maxBits][maxBits] != n\")\n\t}\n\n\tbitCount := h.bitCount[:maxBits+1]\n\tbits := 1\n\tcounts := &leafCounts[maxBits]\n\tfor level := maxBits; level > 0; level-- {\n\t\t// chain.leafCount gives the number of literals requiring at least \"bits\"\n\t\t// bits to encode.\n\t\tbitCount[bits] = counts[level] - counts[level-1]\n\t\tbits++\n\t}\n\treturn bitCount\n}\n\n// Look at the leaves and assign them a bit count and an encoding as specified\n// in RFC 1951 3.2.2\nfunc (h *huffmanEncoder) assignEncodingAndSize(bitCount []int32, list []literalNode) {\n\tcode := uint16(0)\n\tfor n, bits := range bitCount {\n\t\tcode <<= 1\n\t\tif n == 0 || bits == 0 {\n\t\t\tcontinue\n\t\t}\n\t\t// The literals list[len(list)-bits] .. list[len(list)-bits]\n\t\t// are encoded using \"bits\" bits, and get the values\n\t\t// code, code + 1, ....  The code values are\n\t\t// assigned in literal order (not frequency order).\n\t\tchunk := list[len(list)-int(bits):]\n\n\t\tsortByLiteral(chunk)\n\t\tfor _, node := range chunk {\n\t\t\th.codes[node.literal] = hcode{code: reverseBits(code, uint8(n)), len: uint16(n)}\n\t\t\tcode++\n\t\t}\n\t\tlist = list[0 : len(list)-int(bits)]\n\t}\n}\n\n// Update this Huffman Code object to be the minimum code for the specified frequency count.\n//\n// freq  An array of frequencies, in which frequency[i] gives the frequency of literal i.\n// maxBits  The maximum number of bits to use for any literal.\nfunc (h *huffmanEncoder) generate(freq []uint16, maxBits int32) {\n\tif h.freqcache == nil {\n\t\t// Allocate a reusable buffer with the longest possible frequency table.\n\t\t// Possible lengths are codegenCodeCount, offsetCodeCount and literalCount.\n\t\t// The largest of these is literalCount, so we allocate for that case.\n\t\th.freqcache = make([]literalNode, literalCount+1)\n\t}\n\tlist := h.freqcache[:len(freq)+1]\n\t// Number of non-zero literals\n\tcount := 0\n\t// Set list to be the set of all non-zero literals and their frequencies\n\tfor i, f := range freq {\n\t\tif f != 0 {\n\t\t\tlist[count] = literalNode{uint16(i), f}\n\t\t\tcount++\n\t\t} else {\n\t\t\tlist[count] = literalNode{}\n\t\t\th.codes[i].len = 0\n\t\t}\n\t}\n\tlist[len(freq)] = literalNode{}\n\n\tlist = list[:count]\n\tif count <= 2 {\n\t\t// Handle the small cases here, because they are awkward for the general case code. With\n\t\t// two or fewer literals, everything has bit length 1.\n\t\tfor i, node := range list {\n\t\t\t// \"list\" is in order of increasing literal value.\n\t\t\th.codes[node.literal].set(uint16(i), 1)\n\t\t}\n\t\treturn\n\t}\n\tsortByFreq(list)\n\n\t// Get the number of literals for each bit count\n\tbitCount := h.bitCounts(list, maxBits)\n\t// And do the assignment\n\th.assignEncodingAndSize(bitCount, list)\n}\n\nfunc atLeastOne(v float32) float32 {\n\tif v < 1 {\n\t\treturn 1\n\t}\n\treturn v\n}\n\n// histogramSize accumulates a histogram of b in h.\n// An estimated size in bits is returned.\n// Unassigned values are assigned '1' in the histogram.\n// len(h) must be >= 256, and h's elements must be all zeroes.\nfunc histogramSize(b []byte, h []uint16, fill bool) (int, int) {\n\th = h[:256]\n\tfor _, t := range b {\n\t\th[t]++\n\t}\n\tinvTotal := 1.0 / float32(len(b))\n\tshannon := float32(0.0)\n\tvar extra float32\n\tif fill {\n\t\toneBits := atLeastOne(-mFastLog2(invTotal))\n\t\tfor i, v := range h[:] {\n\t\t\tif v > 0 {\n\t\t\t\tn := float32(v)\n\t\t\t\tshannon += atLeastOne(-mFastLog2(n*invTotal)) * n\n\t\t\t} else {\n\t\t\t\th[i] = 1\n\t\t\t\textra += oneBits\n\t\t\t}\n\t\t}\n\t} else {\n\t\tfor _, v := range h[:] {\n\t\t\tif v > 0 {\n\t\t\t\tn := float32(v)\n\t\t\t\tshannon += atLeastOne(-mFastLog2(n*invTotal)) * n\n\t\t\t}\n\t\t}\n\t}\n\n\treturn int(shannon + 0.99), int(extra + 0.99)\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/huffman_sortByFreq.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage flate\n\n// Sort sorts data.\n// It makes one call to data.Len to determine n, and O(n*log(n)) calls to\n// data.Less and data.Swap. The sort is not guaranteed to be stable.\nfunc sortByFreq(data []literalNode) {\n\tn := len(data)\n\tquickSortByFreq(data, 0, n, maxDepth(n))\n}\n\nfunc quickSortByFreq(data []literalNode, a, b, maxDepth int) {\n\tfor b-a > 12 { // Use ShellSort for slices <= 12 elements\n\t\tif maxDepth == 0 {\n\t\t\theapSort(data, a, b)\n\t\t\treturn\n\t\t}\n\t\tmaxDepth--\n\t\tmlo, mhi := doPivotByFreq(data, a, b)\n\t\t// Avoiding recursion on the larger subproblem guarantees\n\t\t// a stack depth of at most lg(b-a).\n\t\tif mlo-a < b-mhi {\n\t\t\tquickSortByFreq(data, a, mlo, maxDepth)\n\t\t\ta = mhi // i.e., quickSortByFreq(data, mhi, b)\n\t\t} else {\n\t\t\tquickSortByFreq(data, mhi, b, maxDepth)\n\t\t\tb = mlo // i.e., quickSortByFreq(data, a, mlo)\n\t\t}\n\t}\n\tif b-a > 1 {\n\t\t// Do ShellSort pass with gap 6\n\t\t// It could be written in this simplified form cause b-a <= 12\n\t\tfor i := a + 6; i < b; i++ {\n\t\t\tif data[i].freq == data[i-6].freq && data[i].literal < data[i-6].literal || data[i].freq < data[i-6].freq {\n\t\t\t\tdata[i], data[i-6] = data[i-6], data[i]\n\t\t\t}\n\t\t}\n\t\tinsertionSortByFreq(data, a, b)\n\t}\n}\n\n// siftDownByFreq implements the heap property on data[lo, hi).\n// first is an offset into the array where the root of the heap lies.\nfunc siftDownByFreq(data []literalNode, lo, hi, first int) {\n\troot := lo\n\tfor {\n\t\tchild := 2*root + 1\n\t\tif child >= hi {\n\t\t\tbreak\n\t\t}\n\t\tif child+1 < hi && (data[first+child].freq == data[first+child+1].freq && data[first+child].literal < data[first+child+1].literal || data[first+child].freq < data[first+child+1].freq) {\n\t\t\tchild++\n\t\t}\n\t\tif data[first+root].freq == data[first+child].freq && data[first+root].literal > data[first+child].literal || data[first+root].freq > data[first+child].freq {\n\t\t\treturn\n\t\t}\n\t\tdata[first+root], data[first+child] = data[first+child], data[first+root]\n\t\troot = child\n\t}\n}\nfunc doPivotByFreq(data []literalNode, lo, hi int) (midlo, midhi int) {\n\tm := int(uint(lo+hi) >> 1) // Written like this to avoid integer overflow.\n\tif hi-lo > 40 {\n\t\t// Tukey's ``Ninther,'' median of three medians of three.\n\t\ts := (hi - lo) / 8\n\t\tmedianOfThreeSortByFreq(data, lo, lo+s, lo+2*s)\n\t\tmedianOfThreeSortByFreq(data, m, m-s, m+s)\n\t\tmedianOfThreeSortByFreq(data, hi-1, hi-1-s, hi-1-2*s)\n\t}\n\tmedianOfThreeSortByFreq(data, lo, m, hi-1)\n\n\t// Invariants are:\n\t//\tdata[lo] = pivot (set up by ChoosePivot)\n\t//\tdata[lo < i < a] < pivot\n\t//\tdata[a <= i < b] <= pivot\n\t//\tdata[b <= i < c] unexamined\n\t//\tdata[c <= i < hi-1] > pivot\n\t//\tdata[hi-1] >= pivot\n\tpivot := lo\n\ta, c := lo+1, hi-1\n\n\tfor ; a < c && (data[a].freq == data[pivot].freq && data[a].literal < data[pivot].literal || data[a].freq < data[pivot].freq); a++ {\n\t}\n\tb := a\n\tfor {\n\t\tfor ; b < c && (data[pivot].freq == data[b].freq && data[pivot].literal > data[b].literal || data[pivot].freq > data[b].freq); b++ { // data[b] <= pivot\n\t\t}\n\t\tfor ; b < c && (data[pivot].freq == data[c-1].freq && data[pivot].literal < data[c-1].literal || data[pivot].freq < data[c-1].freq); c-- { // data[c-1] > pivot\n\t\t}\n\t\tif b >= c {\n\t\t\tbreak\n\t\t}\n\t\t// data[b] > pivot; data[c-1] <= pivot\n\t\tdata[b], data[c-1] = data[c-1], data[b]\n\t\tb++\n\t\tc--\n\t}\n\t// If hi-c<3 then there are duplicates (by property of median of nine).\n\t// Let's be a bit more conservative, and set border to 5.\n\tprotect := hi-c < 5\n\tif !protect && hi-c < (hi-lo)/4 {\n\t\t// Lets test some points for equality to pivot\n\t\tdups := 0\n\t\tif data[pivot].freq == data[hi-1].freq && data[pivot].literal > data[hi-1].literal || data[pivot].freq > data[hi-1].freq { // data[hi-1] = pivot\n\t\t\tdata[c], data[hi-1] = data[hi-1], data[c]\n\t\t\tc++\n\t\t\tdups++\n\t\t}\n\t\tif data[b-1].freq == data[pivot].freq && data[b-1].literal > data[pivot].literal || data[b-1].freq > data[pivot].freq { // data[b-1] = pivot\n\t\t\tb--\n\t\t\tdups++\n\t\t}\n\t\t// m-lo = (hi-lo)/2 > 6\n\t\t// b-lo > (hi-lo)*3/4-1 > 8\n\t\t// ==> m < b ==> data[m] <= pivot\n\t\tif data[m].freq == data[pivot].freq && data[m].literal > data[pivot].literal || data[m].freq > data[pivot].freq { // data[m] = pivot\n\t\t\tdata[m], data[b-1] = data[b-1], data[m]\n\t\t\tb--\n\t\t\tdups++\n\t\t}\n\t\t// if at least 2 points are equal to pivot, assume skewed distribution\n\t\tprotect = dups > 1\n\t}\n\tif protect {\n\t\t// Protect against a lot of duplicates\n\t\t// Add invariant:\n\t\t//\tdata[a <= i < b] unexamined\n\t\t//\tdata[b <= i < c] = pivot\n\t\tfor {\n\t\t\tfor ; a < b && (data[b-1].freq == data[pivot].freq && data[b-1].literal > data[pivot].literal || data[b-1].freq > data[pivot].freq); b-- { // data[b] == pivot\n\t\t\t}\n\t\t\tfor ; a < b && (data[a].freq == data[pivot].freq && data[a].literal < data[pivot].literal || data[a].freq < data[pivot].freq); a++ { // data[a] < pivot\n\t\t\t}\n\t\t\tif a >= b {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// data[a] == pivot; data[b-1] < pivot\n\t\t\tdata[a], data[b-1] = data[b-1], data[a]\n\t\t\ta++\n\t\t\tb--\n\t\t}\n\t}\n\t// Swap pivot into middle\n\tdata[pivot], data[b-1] = data[b-1], data[pivot]\n\treturn b - 1, c\n}\n\n// Insertion sort\nfunc insertionSortByFreq(data []literalNode, a, b int) {\n\tfor i := a + 1; i < b; i++ {\n\t\tfor j := i; j > a && (data[j].freq == data[j-1].freq && data[j].literal < data[j-1].literal || data[j].freq < data[j-1].freq); j-- {\n\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t}\n\t}\n}\n\n// quickSortByFreq, loosely following Bentley and McIlroy,\n// ``Engineering a Sort Function,'' SP&E November 1993.\n\n// medianOfThreeSortByFreq moves the median of the three values data[m0], data[m1], data[m2] into data[m1].\nfunc medianOfThreeSortByFreq(data []literalNode, m1, m0, m2 int) {\n\t// sort 3 elements\n\tif data[m1].freq == data[m0].freq && data[m1].literal < data[m0].literal || data[m1].freq < data[m0].freq {\n\t\tdata[m1], data[m0] = data[m0], data[m1]\n\t}\n\t// data[m0] <= data[m1]\n\tif data[m2].freq == data[m1].freq && data[m2].literal < data[m1].literal || data[m2].freq < data[m1].freq {\n\t\tdata[m2], data[m1] = data[m1], data[m2]\n\t\t// data[m0] <= data[m2] && data[m1] < data[m2]\n\t\tif data[m1].freq == data[m0].freq && data[m1].literal < data[m0].literal || data[m1].freq < data[m0].freq {\n\t\t\tdata[m1], data[m0] = data[m0], data[m1]\n\t\t}\n\t}\n\t// now data[m0] <= data[m1] <= data[m2]\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/huffman_sortByLiteral.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage flate\n\n// Sort sorts data.\n// It makes one call to data.Len to determine n, and O(n*log(n)) calls to\n// data.Less and data.Swap. The sort is not guaranteed to be stable.\nfunc sortByLiteral(data []literalNode) {\n\tn := len(data)\n\tquickSort(data, 0, n, maxDepth(n))\n}\n\nfunc quickSort(data []literalNode, a, b, maxDepth int) {\n\tfor b-a > 12 { // Use ShellSort for slices <= 12 elements\n\t\tif maxDepth == 0 {\n\t\t\theapSort(data, a, b)\n\t\t\treturn\n\t\t}\n\t\tmaxDepth--\n\t\tmlo, mhi := doPivot(data, a, b)\n\t\t// Avoiding recursion on the larger subproblem guarantees\n\t\t// a stack depth of at most lg(b-a).\n\t\tif mlo-a < b-mhi {\n\t\t\tquickSort(data, a, mlo, maxDepth)\n\t\t\ta = mhi // i.e., quickSort(data, mhi, b)\n\t\t} else {\n\t\t\tquickSort(data, mhi, b, maxDepth)\n\t\t\tb = mlo // i.e., quickSort(data, a, mlo)\n\t\t}\n\t}\n\tif b-a > 1 {\n\t\t// Do ShellSort pass with gap 6\n\t\t// It could be written in this simplified form cause b-a <= 12\n\t\tfor i := a + 6; i < b; i++ {\n\t\t\tif data[i].literal < data[i-6].literal {\n\t\t\t\tdata[i], data[i-6] = data[i-6], data[i]\n\t\t\t}\n\t\t}\n\t\tinsertionSort(data, a, b)\n\t}\n}\nfunc heapSort(data []literalNode, a, b int) {\n\tfirst := a\n\tlo := 0\n\thi := b - a\n\n\t// Build heap with greatest element at top.\n\tfor i := (hi - 1) / 2; i >= 0; i-- {\n\t\tsiftDown(data, i, hi, first)\n\t}\n\n\t// Pop elements, largest first, into end of data.\n\tfor i := hi - 1; i >= 0; i-- {\n\t\tdata[first], data[first+i] = data[first+i], data[first]\n\t\tsiftDown(data, lo, i, first)\n\t}\n}\n\n// siftDown implements the heap property on data[lo, hi).\n// first is an offset into the array where the root of the heap lies.\nfunc siftDown(data []literalNode, lo, hi, first int) {\n\troot := lo\n\tfor {\n\t\tchild := 2*root + 1\n\t\tif child >= hi {\n\t\t\tbreak\n\t\t}\n\t\tif child+1 < hi && data[first+child].literal < data[first+child+1].literal {\n\t\t\tchild++\n\t\t}\n\t\tif data[first+root].literal > data[first+child].literal {\n\t\t\treturn\n\t\t}\n\t\tdata[first+root], data[first+child] = data[first+child], data[first+root]\n\t\troot = child\n\t}\n}\nfunc doPivot(data []literalNode, lo, hi int) (midlo, midhi int) {\n\tm := int(uint(lo+hi) >> 1) // Written like this to avoid integer overflow.\n\tif hi-lo > 40 {\n\t\t// Tukey's ``Ninther,'' median of three medians of three.\n\t\ts := (hi - lo) / 8\n\t\tmedianOfThree(data, lo, lo+s, lo+2*s)\n\t\tmedianOfThree(data, m, m-s, m+s)\n\t\tmedianOfThree(data, hi-1, hi-1-s, hi-1-2*s)\n\t}\n\tmedianOfThree(data, lo, m, hi-1)\n\n\t// Invariants are:\n\t//\tdata[lo] = pivot (set up by ChoosePivot)\n\t//\tdata[lo < i < a] < pivot\n\t//\tdata[a <= i < b] <= pivot\n\t//\tdata[b <= i < c] unexamined\n\t//\tdata[c <= i < hi-1] > pivot\n\t//\tdata[hi-1] >= pivot\n\tpivot := lo\n\ta, c := lo+1, hi-1\n\n\tfor ; a < c && data[a].literal < data[pivot].literal; a++ {\n\t}\n\tb := a\n\tfor {\n\t\tfor ; b < c && data[pivot].literal > data[b].literal; b++ { // data[b] <= pivot\n\t\t}\n\t\tfor ; b < c && data[pivot].literal < data[c-1].literal; c-- { // data[c-1] > pivot\n\t\t}\n\t\tif b >= c {\n\t\t\tbreak\n\t\t}\n\t\t// data[b] > pivot; data[c-1] <= pivot\n\t\tdata[b], data[c-1] = data[c-1], data[b]\n\t\tb++\n\t\tc--\n\t}\n\t// If hi-c<3 then there are duplicates (by property of median of nine).\n\t// Let's be a bit more conservative, and set border to 5.\n\tprotect := hi-c < 5\n\tif !protect && hi-c < (hi-lo)/4 {\n\t\t// Lets test some points for equality to pivot\n\t\tdups := 0\n\t\tif data[pivot].literal > data[hi-1].literal { // data[hi-1] = pivot\n\t\t\tdata[c], data[hi-1] = data[hi-1], data[c]\n\t\t\tc++\n\t\t\tdups++\n\t\t}\n\t\tif data[b-1].literal > data[pivot].literal { // data[b-1] = pivot\n\t\t\tb--\n\t\t\tdups++\n\t\t}\n\t\t// m-lo = (hi-lo)/2 > 6\n\t\t// b-lo > (hi-lo)*3/4-1 > 8\n\t\t// ==> m < b ==> data[m] <= pivot\n\t\tif data[m].literal > data[pivot].literal { // data[m] = pivot\n\t\t\tdata[m], data[b-1] = data[b-1], data[m]\n\t\t\tb--\n\t\t\tdups++\n\t\t}\n\t\t// if at least 2 points are equal to pivot, assume skewed distribution\n\t\tprotect = dups > 1\n\t}\n\tif protect {\n\t\t// Protect against a lot of duplicates\n\t\t// Add invariant:\n\t\t//\tdata[a <= i < b] unexamined\n\t\t//\tdata[b <= i < c] = pivot\n\t\tfor {\n\t\t\tfor ; a < b && data[b-1].literal > data[pivot].literal; b-- { // data[b] == pivot\n\t\t\t}\n\t\t\tfor ; a < b && data[a].literal < data[pivot].literal; a++ { // data[a] < pivot\n\t\t\t}\n\t\t\tif a >= b {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// data[a] == pivot; data[b-1] < pivot\n\t\t\tdata[a], data[b-1] = data[b-1], data[a]\n\t\t\ta++\n\t\t\tb--\n\t\t}\n\t}\n\t// Swap pivot into middle\n\tdata[pivot], data[b-1] = data[b-1], data[pivot]\n\treturn b - 1, c\n}\n\n// Insertion sort\nfunc insertionSort(data []literalNode, a, b int) {\n\tfor i := a + 1; i < b; i++ {\n\t\tfor j := i; j > a && data[j].literal < data[j-1].literal; j-- {\n\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t}\n\t}\n}\n\n// maxDepth returns a threshold at which quicksort should switch\n// to heapsort. It returns 2*ceil(lg(n+1)).\nfunc maxDepth(n int) int {\n\tvar depth int\n\tfor i := n; i > 0; i >>= 1 {\n\t\tdepth++\n\t}\n\treturn depth * 2\n}\n\n// medianOfThree moves the median of the three values data[m0], data[m1], data[m2] into data[m1].\nfunc medianOfThree(data []literalNode, m1, m0, m2 int) {\n\t// sort 3 elements\n\tif data[m1].literal < data[m0].literal {\n\t\tdata[m1], data[m0] = data[m0], data[m1]\n\t}\n\t// data[m0] <= data[m1]\n\tif data[m2].literal < data[m1].literal {\n\t\tdata[m2], data[m1] = data[m1], data[m2]\n\t\t// data[m0] <= data[m2] && data[m1] < data[m2]\n\t\tif data[m1].literal < data[m0].literal {\n\t\t\tdata[m1], data[m0] = data[m0], data[m1]\n\t\t}\n\t}\n\t// now data[m0] <= data[m1] <= data[m2]\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/inflate.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package flate implements the DEFLATE compressed data format, described in\n// RFC 1951.  The gzip and zlib packages implement access to DEFLATE-based file\n// formats.\npackage flate\n\nimport (\n\t\"bufio\"\n\t\"fmt\"\n\t\"io\"\n\t\"math/bits\"\n\t\"strconv\"\n\t\"sync\"\n)\n\nconst (\n\tmaxCodeLen     = 16 // max length of Huffman code\n\tmaxCodeLenMask = 15 // mask for max length of Huffman code\n\t// The next three numbers come from the RFC section 3.2.7, with the\n\t// additional proviso in section 3.2.5 which implies that distance codes\n\t// 30 and 31 should never occur in compressed data.\n\tmaxNumLit  = 286\n\tmaxNumDist = 30\n\tnumCodes   = 19 // number of codes in Huffman meta-code\n\n\tdebugDecode = false\n)\n\n// Value of length - 3 and extra bits.\ntype lengthExtra struct {\n\tlength, extra uint8\n}\n\nvar decCodeToLen = [32]lengthExtra{{length: 0x0, extra: 0x0}, {length: 0x1, extra: 0x0}, {length: 0x2, extra: 0x0}, {length: 0x3, extra: 0x0}, {length: 0x4, extra: 0x0}, {length: 0x5, extra: 0x0}, {length: 0x6, extra: 0x0}, {length: 0x7, extra: 0x0}, {length: 0x8, extra: 0x1}, {length: 0xa, extra: 0x1}, {length: 0xc, extra: 0x1}, {length: 0xe, extra: 0x1}, {length: 0x10, extra: 0x2}, {length: 0x14, extra: 0x2}, {length: 0x18, extra: 0x2}, {length: 0x1c, extra: 0x2}, {length: 0x20, extra: 0x3}, {length: 0x28, extra: 0x3}, {length: 0x30, extra: 0x3}, {length: 0x38, extra: 0x3}, {length: 0x40, extra: 0x4}, {length: 0x50, extra: 0x4}, {length: 0x60, extra: 0x4}, {length: 0x70, extra: 0x4}, {length: 0x80, extra: 0x5}, {length: 0xa0, extra: 0x5}, {length: 0xc0, extra: 0x5}, {length: 0xe0, extra: 0x5}, {length: 0xff, extra: 0x0}, {length: 0x0, extra: 0x0}, {length: 0x0, extra: 0x0}, {length: 0x0, extra: 0x0}}\n\n// Initialize the fixedHuffmanDecoder only once upon first use.\nvar fixedOnce sync.Once\nvar fixedHuffmanDecoder huffmanDecoder\n\n// A CorruptInputError reports the presence of corrupt input at a given offset.\ntype CorruptInputError int64\n\nfunc (e CorruptInputError) Error() string {\n\treturn \"flate: corrupt input before offset \" + strconv.FormatInt(int64(e), 10)\n}\n\n// An InternalError reports an error in the flate code itself.\ntype InternalError string\n\nfunc (e InternalError) Error() string { return \"flate: internal error: \" + string(e) }\n\n// A ReadError reports an error encountered while reading input.\n//\n// Deprecated: No longer returned.\ntype ReadError struct {\n\tOffset int64 // byte offset where error occurred\n\tErr    error // error returned by underlying Read\n}\n\nfunc (e *ReadError) Error() string {\n\treturn \"flate: read error at offset \" + strconv.FormatInt(e.Offset, 10) + \": \" + e.Err.Error()\n}\n\n// A WriteError reports an error encountered while writing output.\n//\n// Deprecated: No longer returned.\ntype WriteError struct {\n\tOffset int64 // byte offset where error occurred\n\tErr    error // error returned by underlying Write\n}\n\nfunc (e *WriteError) Error() string {\n\treturn \"flate: write error at offset \" + strconv.FormatInt(e.Offset, 10) + \": \" + e.Err.Error()\n}\n\n// Resetter resets a ReadCloser returned by NewReader or NewReaderDict to\n// to switch to a new underlying Reader. This permits reusing a ReadCloser\n// instead of allocating a new one.\ntype Resetter interface {\n\t// Reset discards any buffered data and resets the Resetter as if it was\n\t// newly initialized with the given reader.\n\tReset(r io.Reader, dict []byte) error\n}\n\n// The data structure for decoding Huffman tables is based on that of\n// zlib. There is a lookup table of a fixed bit width (huffmanChunkBits),\n// For codes smaller than the table width, there are multiple entries\n// (each combination of trailing bits has the same value). For codes\n// larger than the table width, the table contains a link to an overflow\n// table. The width of each entry in the link table is the maximum code\n// size minus the chunk width.\n//\n// Note that you can do a lookup in the table even without all bits\n// filled. Since the extra bits are zero, and the DEFLATE Huffman codes\n// have the property that shorter codes come before longer ones, the\n// bit length estimate in the result is a lower bound on the actual\n// number of bits.\n//\n// See the following:\n//\thttp://www.gzip.org/algorithm.txt\n\n// chunk & 15 is number of bits\n// chunk >> 4 is value, including table link\n\nconst (\n\thuffmanChunkBits  = 9\n\thuffmanNumChunks  = 1 << huffmanChunkBits\n\thuffmanCountMask  = 15\n\thuffmanValueShift = 4\n)\n\ntype huffmanDecoder struct {\n\tmaxRead  int                       // the maximum number of bits we can read and not overread\n\tchunks   *[huffmanNumChunks]uint16 // chunks as described above\n\tlinks    [][]uint16                // overflow links\n\tlinkMask uint32                    // mask the width of the link table\n}\n\n// Initialize Huffman decoding tables from array of code lengths.\n// Following this function, h is guaranteed to be initialized into a complete\n// tree (i.e., neither over-subscribed nor under-subscribed). The exception is a\n// degenerate case where the tree has only a single symbol with length 1. Empty\n// trees are permitted.\nfunc (h *huffmanDecoder) init(lengths []int) bool {\n\t// Sanity enables additional runtime tests during Huffman\n\t// table construction. It's intended to be used during\n\t// development to supplement the currently ad-hoc unit tests.\n\tconst sanity = false\n\n\tif h.chunks == nil {\n\t\th.chunks = &[huffmanNumChunks]uint16{}\n\t}\n\tif h.maxRead != 0 {\n\t\t*h = huffmanDecoder{chunks: h.chunks, links: h.links}\n\t}\n\n\t// Count number of codes of each length,\n\t// compute maxRead and max length.\n\tvar count [maxCodeLen]int\n\tvar min, max int\n\tfor _, n := range lengths {\n\t\tif n == 0 {\n\t\t\tcontinue\n\t\t}\n\t\tif min == 0 || n < min {\n\t\t\tmin = n\n\t\t}\n\t\tif n > max {\n\t\t\tmax = n\n\t\t}\n\t\tcount[n&maxCodeLenMask]++\n\t}\n\n\t// Empty tree. The decompressor.huffSym function will fail later if the tree\n\t// is used. Technically, an empty tree is only valid for the HDIST tree and\n\t// not the HCLEN and HLIT tree. However, a stream with an empty HCLEN tree\n\t// is guaranteed to fail since it will attempt to use the tree to decode the\n\t// codes for the HLIT and HDIST trees. Similarly, an empty HLIT tree is\n\t// guaranteed to fail later since the compressed data section must be\n\t// composed of at least one symbol (the end-of-block marker).\n\tif max == 0 {\n\t\treturn true\n\t}\n\n\tcode := 0\n\tvar nextcode [maxCodeLen]int\n\tfor i := min; i <= max; i++ {\n\t\tcode <<= 1\n\t\tnextcode[i&maxCodeLenMask] = code\n\t\tcode += count[i&maxCodeLenMask]\n\t}\n\n\t// Check that the coding is complete (i.e., that we've\n\t// assigned all 2-to-the-max possible bit sequences).\n\t// Exception: To be compatible with zlib, we also need to\n\t// accept degenerate single-code codings. See also\n\t// TestDegenerateHuffmanCoding.\n\tif code != 1<<uint(max) && !(code == 1 && max == 1) {\n\t\tif debugDecode {\n\t\t\tfmt.Println(\"coding failed, code, max:\", code, max, code == 1<<uint(max), code == 1 && max == 1, \"(one should be true)\")\n\t\t}\n\t\treturn false\n\t}\n\n\th.maxRead = min\n\tchunks := h.chunks[:]\n\tfor i := range chunks {\n\t\tchunks[i] = 0\n\t}\n\n\tif max > huffmanChunkBits {\n\t\tnumLinks := 1 << (uint(max) - huffmanChunkBits)\n\t\th.linkMask = uint32(numLinks - 1)\n\n\t\t// create link tables\n\t\tlink := nextcode[huffmanChunkBits+1] >> 1\n\t\tif cap(h.links) < huffmanNumChunks-link {\n\t\t\th.links = make([][]uint16, huffmanNumChunks-link)\n\t\t} else {\n\t\t\th.links = h.links[:huffmanNumChunks-link]\n\t\t}\n\t\tfor j := uint(link); j < huffmanNumChunks; j++ {\n\t\t\treverse := int(bits.Reverse16(uint16(j)))\n\t\t\treverse >>= uint(16 - huffmanChunkBits)\n\t\t\toff := j - uint(link)\n\t\t\tif sanity && h.chunks[reverse] != 0 {\n\t\t\t\tpanic(\"impossible: overwriting existing chunk\")\n\t\t\t}\n\t\t\th.chunks[reverse] = uint16(off<<huffmanValueShift | (huffmanChunkBits + 1))\n\t\t\tif cap(h.links[off]) < numLinks {\n\t\t\t\th.links[off] = make([]uint16, numLinks)\n\t\t\t} else {\n\t\t\t\tlinks := h.links[off][:0]\n\t\t\t\th.links[off] = links[:numLinks]\n\t\t\t}\n\t\t}\n\t} else {\n\t\th.links = h.links[:0]\n\t}\n\n\tfor i, n := range lengths {\n\t\tif n == 0 {\n\t\t\tcontinue\n\t\t}\n\t\tcode := nextcode[n]\n\t\tnextcode[n]++\n\t\tchunk := uint16(i<<huffmanValueShift | n)\n\t\treverse := int(bits.Reverse16(uint16(code)))\n\t\treverse >>= uint(16 - n)\n\t\tif n <= huffmanChunkBits {\n\t\t\tfor off := reverse; off < len(h.chunks); off += 1 << uint(n) {\n\t\t\t\t// We should never need to overwrite\n\t\t\t\t// an existing chunk. Also, 0 is\n\t\t\t\t// never a valid chunk, because the\n\t\t\t\t// lower 4 \"count\" bits should be\n\t\t\t\t// between 1 and 15.\n\t\t\t\tif sanity && h.chunks[off] != 0 {\n\t\t\t\t\tpanic(\"impossible: overwriting existing chunk\")\n\t\t\t\t}\n\t\t\t\th.chunks[off] = chunk\n\t\t\t}\n\t\t} else {\n\t\t\tj := reverse & (huffmanNumChunks - 1)\n\t\t\tif sanity && h.chunks[j]&huffmanCountMask != huffmanChunkBits+1 {\n\t\t\t\t// Longer codes should have been\n\t\t\t\t// associated with a link table above.\n\t\t\t\tpanic(\"impossible: not an indirect chunk\")\n\t\t\t}\n\t\t\tvalue := h.chunks[j] >> huffmanValueShift\n\t\t\tlinktab := h.links[value]\n\t\t\treverse >>= huffmanChunkBits\n\t\t\tfor off := reverse; off < len(linktab); off += 1 << uint(n-huffmanChunkBits) {\n\t\t\t\tif sanity && linktab[off] != 0 {\n\t\t\t\t\tpanic(\"impossible: overwriting existing chunk\")\n\t\t\t\t}\n\t\t\t\tlinktab[off] = chunk\n\t\t\t}\n\t\t}\n\t}\n\n\tif sanity {\n\t\t// Above we've sanity checked that we never overwrote\n\t\t// an existing entry. Here we additionally check that\n\t\t// we filled the tables completely.\n\t\tfor i, chunk := range h.chunks {\n\t\t\tif chunk == 0 {\n\t\t\t\t// As an exception, in the degenerate\n\t\t\t\t// single-code case, we allow odd\n\t\t\t\t// chunks to be missing.\n\t\t\t\tif code == 1 && i%2 == 1 {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tpanic(\"impossible: missing chunk\")\n\t\t\t}\n\t\t}\n\t\tfor _, linktab := range h.links {\n\t\t\tfor _, chunk := range linktab {\n\t\t\t\tif chunk == 0 {\n\t\t\t\t\tpanic(\"impossible: missing chunk\")\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn true\n}\n\n// The actual read interface needed by NewReader.\n// If the passed in io.Reader does not also have ReadByte,\n// the NewReader will introduce its own buffering.\ntype Reader interface {\n\tio.Reader\n\tio.ByteReader\n}\n\n// Decompress state.\ntype decompressor struct {\n\t// Input source.\n\tr       Reader\n\troffset int64\n\n\t// Huffman decoders for literal/length, distance.\n\th1, h2 huffmanDecoder\n\n\t// Length arrays used to define Huffman codes.\n\tbits     *[maxNumLit + maxNumDist]int\n\tcodebits *[numCodes]int\n\n\t// Output history, buffer.\n\tdict dictDecoder\n\n\t// Next step in the decompression,\n\t// and decompression state.\n\tstep      func(*decompressor)\n\tstepState int\n\terr       error\n\ttoRead    []byte\n\thl, hd    *huffmanDecoder\n\tcopyLen   int\n\tcopyDist  int\n\n\t// Temporary buffer (avoids repeated allocation).\n\tbuf [4]byte\n\n\t// Input bits, in top of b.\n\tb uint32\n\n\tnb    uint\n\tfinal bool\n}\n\nfunc (f *decompressor) nextBlock() {\n\tfor f.nb < 1+2 {\n\t\tif f.err = f.moreBits(); f.err != nil {\n\t\t\treturn\n\t\t}\n\t}\n\tf.final = f.b&1 == 1\n\tf.b >>= 1\n\ttyp := f.b & 3\n\tf.b >>= 2\n\tf.nb -= 1 + 2\n\tswitch typ {\n\tcase 0:\n\t\tf.dataBlock()\n\tcase 1:\n\t\t// compressed, fixed Huffman tables\n\t\tf.hl = &fixedHuffmanDecoder\n\t\tf.hd = nil\n\t\tf.huffmanBlockDecoder()()\n\tcase 2:\n\t\t// compressed, dynamic Huffman tables\n\t\tif f.err = f.readHuffman(); f.err != nil {\n\t\t\tbreak\n\t\t}\n\t\tf.hl = &f.h1\n\t\tf.hd = &f.h2\n\t\tf.huffmanBlockDecoder()()\n\tdefault:\n\t\t// 3 is reserved.\n\t\tif debugDecode {\n\t\t\tfmt.Println(\"reserved data block encountered\")\n\t\t}\n\t\tf.err = CorruptInputError(f.roffset)\n\t}\n}\n\nfunc (f *decompressor) Read(b []byte) (int, error) {\n\tfor {\n\t\tif len(f.toRead) > 0 {\n\t\t\tn := copy(b, f.toRead)\n\t\t\tf.toRead = f.toRead[n:]\n\t\t\tif len(f.toRead) == 0 {\n\t\t\t\treturn n, f.err\n\t\t\t}\n\t\t\treturn n, nil\n\t\t}\n\t\tif f.err != nil {\n\t\t\treturn 0, f.err\n\t\t}\n\t\tf.step(f)\n\t\tif f.err != nil && len(f.toRead) == 0 {\n\t\t\tf.toRead = f.dict.readFlush() // Flush what's left in case of error\n\t\t}\n\t}\n}\n\n// Support the io.WriteTo interface for io.Copy and friends.\nfunc (f *decompressor) WriteTo(w io.Writer) (int64, error) {\n\ttotal := int64(0)\n\tflushed := false\n\tfor {\n\t\tif len(f.toRead) > 0 {\n\t\t\tn, err := w.Write(f.toRead)\n\t\t\ttotal += int64(n)\n\t\t\tif err != nil {\n\t\t\t\tf.err = err\n\t\t\t\treturn total, err\n\t\t\t}\n\t\t\tif n != len(f.toRead) {\n\t\t\t\treturn total, io.ErrShortWrite\n\t\t\t}\n\t\t\tf.toRead = f.toRead[:0]\n\t\t}\n\t\tif f.err != nil && flushed {\n\t\t\tif f.err == io.EOF {\n\t\t\t\treturn total, nil\n\t\t\t}\n\t\t\treturn total, f.err\n\t\t}\n\t\tif f.err == nil {\n\t\t\tf.step(f)\n\t\t}\n\t\tif len(f.toRead) == 0 && f.err != nil && !flushed {\n\t\t\tf.toRead = f.dict.readFlush() // Flush what's left in case of error\n\t\t\tflushed = true\n\t\t}\n\t}\n}\n\nfunc (f *decompressor) Close() error {\n\tif f.err == io.EOF {\n\t\treturn nil\n\t}\n\treturn f.err\n}\n\n// RFC 1951 section 3.2.7.\n// Compression with dynamic Huffman codes\n\nvar codeOrder = [...]int{16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}\n\nfunc (f *decompressor) readHuffman() error {\n\t// HLIT[5], HDIST[5], HCLEN[4].\n\tfor f.nb < 5+5+4 {\n\t\tif err := f.moreBits(); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tnlit := int(f.b&0x1F) + 257\n\tif nlit > maxNumLit {\n\t\tif debugDecode {\n\t\t\tfmt.Println(\"nlit > maxNumLit\", nlit)\n\t\t}\n\t\treturn CorruptInputError(f.roffset)\n\t}\n\tf.b >>= 5\n\tndist := int(f.b&0x1F) + 1\n\tif ndist > maxNumDist {\n\t\tif debugDecode {\n\t\t\tfmt.Println(\"ndist > maxNumDist\", ndist)\n\t\t}\n\t\treturn CorruptInputError(f.roffset)\n\t}\n\tf.b >>= 5\n\tnclen := int(f.b&0xF) + 4\n\t// numCodes is 19, so nclen is always valid.\n\tf.b >>= 4\n\tf.nb -= 5 + 5 + 4\n\n\t// (HCLEN+4)*3 bits: code lengths in the magic codeOrder order.\n\tfor i := 0; i < nclen; i++ {\n\t\tfor f.nb < 3 {\n\t\t\tif err := f.moreBits(); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tf.codebits[codeOrder[i]] = int(f.b & 0x7)\n\t\tf.b >>= 3\n\t\tf.nb -= 3\n\t}\n\tfor i := nclen; i < len(codeOrder); i++ {\n\t\tf.codebits[codeOrder[i]] = 0\n\t}\n\tif !f.h1.init(f.codebits[0:]) {\n\t\tif debugDecode {\n\t\t\tfmt.Println(\"init codebits failed\")\n\t\t}\n\t\treturn CorruptInputError(f.roffset)\n\t}\n\n\t// HLIT + 257 code lengths, HDIST + 1 code lengths,\n\t// using the code length Huffman code.\n\tfor i, n := 0, nlit+ndist; i < n; {\n\t\tx, err := f.huffSym(&f.h1)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif x < 16 {\n\t\t\t// Actual length.\n\t\t\tf.bits[i] = x\n\t\t\ti++\n\t\t\tcontinue\n\t\t}\n\t\t// Repeat previous length or zero.\n\t\tvar rep int\n\t\tvar nb uint\n\t\tvar b int\n\t\tswitch x {\n\t\tdefault:\n\t\t\treturn InternalError(\"unexpected length code\")\n\t\tcase 16:\n\t\t\trep = 3\n\t\t\tnb = 2\n\t\t\tif i == 0 {\n\t\t\t\tif debugDecode {\n\t\t\t\t\tfmt.Println(\"i==0\")\n\t\t\t\t}\n\t\t\t\treturn CorruptInputError(f.roffset)\n\t\t\t}\n\t\t\tb = f.bits[i-1]\n\t\tcase 17:\n\t\t\trep = 3\n\t\t\tnb = 3\n\t\t\tb = 0\n\t\tcase 18:\n\t\t\trep = 11\n\t\t\tnb = 7\n\t\t\tb = 0\n\t\t}\n\t\tfor f.nb < nb {\n\t\t\tif err := f.moreBits(); err != nil {\n\t\t\t\tif debugDecode {\n\t\t\t\t\tfmt.Println(\"morebits:\", err)\n\t\t\t\t}\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\trep += int(f.b & uint32(1<<(nb&regSizeMaskUint32)-1))\n\t\tf.b >>= nb & regSizeMaskUint32\n\t\tf.nb -= nb\n\t\tif i+rep > n {\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"i+rep > n\", i, rep, n)\n\t\t\t}\n\t\t\treturn CorruptInputError(f.roffset)\n\t\t}\n\t\tfor j := 0; j < rep; j++ {\n\t\t\tf.bits[i] = b\n\t\t\ti++\n\t\t}\n\t}\n\n\tif !f.h1.init(f.bits[0:nlit]) || !f.h2.init(f.bits[nlit:nlit+ndist]) {\n\t\tif debugDecode {\n\t\t\tfmt.Println(\"init2 failed\")\n\t\t}\n\t\treturn CorruptInputError(f.roffset)\n\t}\n\n\t// As an optimization, we can initialize the maxRead bits to read at a time\n\t// for the HLIT tree to the length of the EOB marker since we know that\n\t// every block must terminate with one. This preserves the property that\n\t// we never read any extra bytes after the end of the DEFLATE stream.\n\tif f.h1.maxRead < f.bits[endBlockMarker] {\n\t\tf.h1.maxRead = f.bits[endBlockMarker]\n\t}\n\tif !f.final {\n\t\t// If not the final block, the smallest block possible is\n\t\t// a predefined table, BTYPE=01, with a single EOB marker.\n\t\t// This will take up 3 + 7 bits.\n\t\tf.h1.maxRead += 10\n\t}\n\n\treturn nil\n}\n\n// Decode a single Huffman block from f.\n// hl and hd are the Huffman states for the lit/length values\n// and the distance values, respectively. If hd == nil, using the\n// fixed distance encoding associated with fixed Huffman blocks.\nfunc (f *decompressor) huffmanBlockGeneric() {\n\tconst (\n\t\tstateInit = iota // Zero value must be stateInit\n\t\tstateDict\n\t)\n\n\tswitch f.stepState {\n\tcase stateInit:\n\t\tgoto readLiteral\n\tcase stateDict:\n\t\tgoto copyHistory\n\t}\n\nreadLiteral:\n\t// Read literal and/or (length, distance) according to RFC section 3.2.3.\n\t{\n\t\tvar v int\n\t\t{\n\t\t\t// Inlined v, err := f.huffSym(f.hl)\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hl.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := f.r.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hl.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hl.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hl.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tv = int(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tvar n uint // number of bits extra\n\t\tvar length int\n\t\tvar err error\n\t\tswitch {\n\t\tcase v < 256:\n\t\t\tf.dict.writeByte(byte(v))\n\t\t\tif f.dict.availWrite() == 0 {\n\t\t\t\tf.toRead = f.dict.readFlush()\n\t\t\t\tf.step = (*decompressor).huffmanBlockGeneric\n\t\t\t\tf.stepState = stateInit\n\t\t\t\treturn\n\t\t\t}\n\t\t\tgoto readLiteral\n\t\tcase v == 256:\n\t\t\tf.finishBlock()\n\t\t\treturn\n\t\t// otherwise, reference to older data\n\t\tcase v < 265:\n\t\t\tlength = v - (257 - 3)\n\t\t\tn = 0\n\t\tcase v < 269:\n\t\t\tlength = v*2 - (265*2 - 11)\n\t\t\tn = 1\n\t\tcase v < 273:\n\t\t\tlength = v*4 - (269*4 - 19)\n\t\t\tn = 2\n\t\tcase v < 277:\n\t\t\tlength = v*8 - (273*8 - 35)\n\t\t\tn = 3\n\t\tcase v < 281:\n\t\t\tlength = v*16 - (277*16 - 67)\n\t\t\tn = 4\n\t\tcase v < 285:\n\t\t\tlength = v*32 - (281*32 - 131)\n\t\t\tn = 5\n\t\tcase v < maxNumLit:\n\t\t\tlength = 258\n\t\t\tn = 0\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(v, \">= maxNumLit\")\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\t\tif n > 0 {\n\t\t\tfor f.nb < n {\n\t\t\t\tif err = f.moreBits(); err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits n>0:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t\tlength += int(f.b & uint32(1<<(n&regSizeMaskUint32)-1))\n\t\t\tf.b >>= n & regSizeMaskUint32\n\t\t\tf.nb -= n\n\t\t}\n\n\t\tvar dist uint32\n\t\tif f.hd == nil {\n\t\t\tfor f.nb < 5 {\n\t\t\t\tif err = f.moreBits(); err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<5:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t\tdist = uint32(bits.Reverse8(uint8(f.b & 0x1F << 3)))\n\t\t\tf.b >>= 5\n\t\t\tf.nb -= 5\n\t\t} else {\n\t\t\tsym, err := f.huffSym(f.hd)\n\t\t\tif err != nil {\n\t\t\t\tif debugDecode {\n\t\t\t\t\tfmt.Println(\"huffsym:\", err)\n\t\t\t\t}\n\t\t\t\tf.err = err\n\t\t\t\treturn\n\t\t\t}\n\t\t\tdist = uint32(sym)\n\t\t}\n\n\t\tswitch {\n\t\tcase dist < 4:\n\t\t\tdist++\n\t\tcase dist < maxNumDist:\n\t\t\tnb := uint(dist-2) >> 1\n\t\t\t// have 1 bit in bottom of dist, need nb more.\n\t\t\textra := (dist & 1) << (nb & regSizeMaskUint32)\n\t\t\tfor f.nb < nb {\n\t\t\t\tif err = f.moreBits(); err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<nb:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t\textra |= f.b & uint32(1<<(nb&regSizeMaskUint32)-1)\n\t\t\tf.b >>= nb & regSizeMaskUint32\n\t\t\tf.nb -= nb\n\t\t\tdist = 1<<((nb+1)&regSizeMaskUint32) + 1 + extra\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist too big:\", dist, maxNumDist)\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\t// No check on length; encoding can be prescient.\n\t\tif dist > uint32(f.dict.histSize()) {\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist > f.dict.histSize():\", dist, f.dict.histSize())\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tf.copyLen, f.copyDist = length, int(dist)\n\t\tgoto copyHistory\n\t}\n\ncopyHistory:\n\t// Perform a backwards copy according to RFC section 3.2.3.\n\t{\n\t\tcnt := f.dict.tryWriteCopy(f.copyDist, f.copyLen)\n\t\tif cnt == 0 {\n\t\t\tcnt = f.dict.writeCopy(f.copyDist, f.copyLen)\n\t\t}\n\t\tf.copyLen -= cnt\n\n\t\tif f.dict.availWrite() == 0 || f.copyLen > 0 {\n\t\t\tf.toRead = f.dict.readFlush()\n\t\t\tf.step = (*decompressor).huffmanBlockGeneric // We need to continue this work\n\t\t\tf.stepState = stateDict\n\t\t\treturn\n\t\t}\n\t\tgoto readLiteral\n\t}\n}\n\n// Copy a single uncompressed data block from input to output.\nfunc (f *decompressor) dataBlock() {\n\t// Uncompressed.\n\t// Discard current half-byte.\n\tleft := (f.nb) & 7\n\tf.nb -= left\n\tf.b >>= left\n\n\toffBytes := f.nb >> 3\n\t// Unfilled values will be overwritten.\n\tf.buf[0] = uint8(f.b)\n\tf.buf[1] = uint8(f.b >> 8)\n\tf.buf[2] = uint8(f.b >> 16)\n\tf.buf[3] = uint8(f.b >> 24)\n\n\tf.roffset += int64(offBytes)\n\tf.nb, f.b = 0, 0\n\n\t// Length then ones-complement of length.\n\tnr, err := io.ReadFull(f.r, f.buf[offBytes:4])\n\tf.roffset += int64(nr)\n\tif err != nil {\n\t\tf.err = noEOF(err)\n\t\treturn\n\t}\n\tn := uint16(f.buf[0]) | uint16(f.buf[1])<<8\n\tnn := uint16(f.buf[2]) | uint16(f.buf[3])<<8\n\tif nn != ^n {\n\t\tif debugDecode {\n\t\t\tncomp := ^n\n\t\t\tfmt.Println(\"uint16(nn) != uint16(^n)\", nn, ncomp)\n\t\t}\n\t\tf.err = CorruptInputError(f.roffset)\n\t\treturn\n\t}\n\n\tif n == 0 {\n\t\tf.toRead = f.dict.readFlush()\n\t\tf.finishBlock()\n\t\treturn\n\t}\n\n\tf.copyLen = int(n)\n\tf.copyData()\n}\n\n// copyData copies f.copyLen bytes from the underlying reader into f.hist.\n// It pauses for reads when f.hist is full.\nfunc (f *decompressor) copyData() {\n\tbuf := f.dict.writeSlice()\n\tif len(buf) > f.copyLen {\n\t\tbuf = buf[:f.copyLen]\n\t}\n\n\tcnt, err := io.ReadFull(f.r, buf)\n\tf.roffset += int64(cnt)\n\tf.copyLen -= cnt\n\tf.dict.writeMark(cnt)\n\tif err != nil {\n\t\tf.err = noEOF(err)\n\t\treturn\n\t}\n\n\tif f.dict.availWrite() == 0 || f.copyLen > 0 {\n\t\tf.toRead = f.dict.readFlush()\n\t\tf.step = (*decompressor).copyData\n\t\treturn\n\t}\n\tf.finishBlock()\n}\n\nfunc (f *decompressor) finishBlock() {\n\tif f.final {\n\t\tif f.dict.availRead() > 0 {\n\t\t\tf.toRead = f.dict.readFlush()\n\t\t}\n\t\tf.err = io.EOF\n\t}\n\tf.step = (*decompressor).nextBlock\n}\n\n// noEOF returns err, unless err == io.EOF, in which case it returns io.ErrUnexpectedEOF.\nfunc noEOF(e error) error {\n\tif e == io.EOF {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn e\n}\n\nfunc (f *decompressor) moreBits() error {\n\tc, err := f.r.ReadByte()\n\tif err != nil {\n\t\treturn noEOF(err)\n\t}\n\tf.roffset++\n\tf.b |= uint32(c) << (f.nb & regSizeMaskUint32)\n\tf.nb += 8\n\treturn nil\n}\n\n// Read the next Huffman-encoded symbol from f according to h.\nfunc (f *decompressor) huffSym(h *huffmanDecoder) (int, error) {\n\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t// with single element, huffSym must error on these two edge cases. In both\n\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t// satisfy the n == 0 check below.\n\tn := uint(h.maxRead)\n\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t// inline call to moreBits and reassign b,nb back to f on return.\n\tnb, b := f.nb, f.b\n\tfor {\n\t\tfor nb < n {\n\t\t\tc, err := f.r.ReadByte()\n\t\t\tif err != nil {\n\t\t\t\tf.b = b\n\t\t\t\tf.nb = nb\n\t\t\t\treturn 0, noEOF(err)\n\t\t\t}\n\t\t\tf.roffset++\n\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\tnb += 8\n\t\t}\n\t\tchunk := h.chunks[b&(huffmanNumChunks-1)]\n\t\tn = uint(chunk & huffmanCountMask)\n\t\tif n > huffmanChunkBits {\n\t\t\tchunk = h.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&h.linkMask]\n\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t}\n\t\tif n <= nb {\n\t\t\tif n == 0 {\n\t\t\t\tf.b = b\n\t\t\t\tf.nb = nb\n\t\t\t\tif debugDecode {\n\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t}\n\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\treturn 0, f.err\n\t\t\t}\n\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\tf.nb = nb - n\n\t\t\treturn int(chunk >> huffmanValueShift), nil\n\t\t}\n\t}\n}\n\nfunc makeReader(r io.Reader) Reader {\n\tif rr, ok := r.(Reader); ok {\n\t\treturn rr\n\t}\n\treturn bufio.NewReader(r)\n}\n\nfunc fixedHuffmanDecoderInit() {\n\tfixedOnce.Do(func() {\n\t\t// These come from the RFC section 3.2.6.\n\t\tvar bits [288]int\n\t\tfor i := 0; i < 144; i++ {\n\t\t\tbits[i] = 8\n\t\t}\n\t\tfor i := 144; i < 256; i++ {\n\t\t\tbits[i] = 9\n\t\t}\n\t\tfor i := 256; i < 280; i++ {\n\t\t\tbits[i] = 7\n\t\t}\n\t\tfor i := 280; i < 288; i++ {\n\t\t\tbits[i] = 8\n\t\t}\n\t\tfixedHuffmanDecoder.init(bits[:])\n\t})\n}\n\nfunc (f *decompressor) Reset(r io.Reader, dict []byte) error {\n\t*f = decompressor{\n\t\tr:        makeReader(r),\n\t\tbits:     f.bits,\n\t\tcodebits: f.codebits,\n\t\th1:       f.h1,\n\t\th2:       f.h2,\n\t\tdict:     f.dict,\n\t\tstep:     (*decompressor).nextBlock,\n\t}\n\tf.dict.init(maxMatchOffset, dict)\n\treturn nil\n}\n\n// NewReader returns a new ReadCloser that can be used\n// to read the uncompressed version of r.\n// If r does not also implement io.ByteReader,\n// the decompressor may read more data than necessary from r.\n// It is the caller's responsibility to call Close on the ReadCloser\n// when finished reading.\n//\n// The ReadCloser returned by NewReader also implements Resetter.\nfunc NewReader(r io.Reader) io.ReadCloser {\n\tfixedHuffmanDecoderInit()\n\n\tvar f decompressor\n\tf.r = makeReader(r)\n\tf.bits = new([maxNumLit + maxNumDist]int)\n\tf.codebits = new([numCodes]int)\n\tf.step = (*decompressor).nextBlock\n\tf.dict.init(maxMatchOffset, nil)\n\treturn &f\n}\n\n// NewReaderDict is like NewReader but initializes the reader\n// with a preset dictionary. The returned Reader behaves as if\n// the uncompressed data stream started with the given dictionary,\n// which has already been read. NewReaderDict is typically used\n// to read data compressed by NewWriterDict.\n//\n// The ReadCloser returned by NewReader also implements Resetter.\nfunc NewReaderDict(r io.Reader, dict []byte) io.ReadCloser {\n\tfixedHuffmanDecoderInit()\n\n\tvar f decompressor\n\tf.r = makeReader(r)\n\tf.bits = new([maxNumLit + maxNumDist]int)\n\tf.codebits = new([numCodes]int)\n\tf.step = (*decompressor).nextBlock\n\tf.dict.init(maxMatchOffset, dict)\n\treturn &f\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/inflate_gen.go",
    "content": "// Code generated by go generate gen_inflate.go. DO NOT EDIT.\n\npackage flate\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"fmt\"\n\t\"math/bits\"\n\t\"strings\"\n)\n\n// Decode a single Huffman block from f.\n// hl and hd are the Huffman states for the lit/length values\n// and the distance values, respectively. If hd == nil, using the\n// fixed distance encoding associated with fixed Huffman blocks.\nfunc (f *decompressor) huffmanBytesBuffer() {\n\tconst (\n\t\tstateInit = iota // Zero value must be stateInit\n\t\tstateDict\n\t)\n\tfr := f.r.(*bytes.Buffer)\n\n\tswitch f.stepState {\n\tcase stateInit:\n\t\tgoto readLiteral\n\tcase stateDict:\n\t\tgoto copyHistory\n\t}\n\nreadLiteral:\n\t// Read literal and/or (length, distance) according to RFC section 3.2.3.\n\t{\n\t\tvar v int\n\t\t{\n\t\t\t// Inlined v, err := f.huffSym(f.hl)\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hl.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hl.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hl.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hl.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tv = int(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tvar length int\n\t\tswitch {\n\t\tcase v < 256:\n\t\t\tf.dict.writeByte(byte(v))\n\t\t\tif f.dict.availWrite() == 0 {\n\t\t\t\tf.toRead = f.dict.readFlush()\n\t\t\t\tf.step = (*decompressor).huffmanBytesBuffer\n\t\t\t\tf.stepState = stateInit\n\t\t\t\treturn\n\t\t\t}\n\t\t\tgoto readLiteral\n\t\tcase v == 256:\n\t\t\tf.finishBlock()\n\t\t\treturn\n\t\t// otherwise, reference to older data\n\t\tcase v < 265:\n\t\t\tlength = v - (257 - 3)\n\t\tcase v < maxNumLit:\n\t\t\tval := decCodeToLen[(v - 257)]\n\t\t\tlength = int(val.length) + 3\n\t\t\tn := uint(val.extra)\n\t\t\tfor f.nb < n {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits n>0:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\tlength += int(f.b & uint32(1<<(n&regSizeMaskUint32)-1))\n\t\t\tf.b >>= n & regSizeMaskUint32\n\t\t\tf.nb -= n\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(v, \">= maxNumLit\")\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tvar dist uint32\n\t\tif f.hd == nil {\n\t\t\tfor f.nb < 5 {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<5:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\tdist = uint32(bits.Reverse8(uint8(f.b & 0x1F << 3)))\n\t\t\tf.b >>= 5\n\t\t\tf.nb -= 5\n\t\t} else {\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hd.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hd.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hd.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hd.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tdist = uint32(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tswitch {\n\t\tcase dist < 4:\n\t\t\tdist++\n\t\tcase dist < maxNumDist:\n\t\t\tnb := uint(dist-2) >> 1\n\t\t\t// have 1 bit in bottom of dist, need nb more.\n\t\t\textra := (dist & 1) << (nb & regSizeMaskUint32)\n\t\t\tfor f.nb < nb {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<nb:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\textra |= f.b & uint32(1<<(nb&regSizeMaskUint32)-1)\n\t\t\tf.b >>= nb & regSizeMaskUint32\n\t\t\tf.nb -= nb\n\t\t\tdist = 1<<((nb+1)&regSizeMaskUint32) + 1 + extra\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist too big:\", dist, maxNumDist)\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\t// No check on length; encoding can be prescient.\n\t\tif dist > uint32(f.dict.histSize()) {\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist > f.dict.histSize():\", dist, f.dict.histSize())\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tf.copyLen, f.copyDist = length, int(dist)\n\t\tgoto copyHistory\n\t}\n\ncopyHistory:\n\t// Perform a backwards copy according to RFC section 3.2.3.\n\t{\n\t\tcnt := f.dict.tryWriteCopy(f.copyDist, f.copyLen)\n\t\tif cnt == 0 {\n\t\t\tcnt = f.dict.writeCopy(f.copyDist, f.copyLen)\n\t\t}\n\t\tf.copyLen -= cnt\n\n\t\tif f.dict.availWrite() == 0 || f.copyLen > 0 {\n\t\t\tf.toRead = f.dict.readFlush()\n\t\t\tf.step = (*decompressor).huffmanBytesBuffer // We need to continue this work\n\t\t\tf.stepState = stateDict\n\t\t\treturn\n\t\t}\n\t\tgoto readLiteral\n\t}\n}\n\n// Decode a single Huffman block from f.\n// hl and hd are the Huffman states for the lit/length values\n// and the distance values, respectively. If hd == nil, using the\n// fixed distance encoding associated with fixed Huffman blocks.\nfunc (f *decompressor) huffmanBytesReader() {\n\tconst (\n\t\tstateInit = iota // Zero value must be stateInit\n\t\tstateDict\n\t)\n\tfr := f.r.(*bytes.Reader)\n\n\tswitch f.stepState {\n\tcase stateInit:\n\t\tgoto readLiteral\n\tcase stateDict:\n\t\tgoto copyHistory\n\t}\n\nreadLiteral:\n\t// Read literal and/or (length, distance) according to RFC section 3.2.3.\n\t{\n\t\tvar v int\n\t\t{\n\t\t\t// Inlined v, err := f.huffSym(f.hl)\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hl.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hl.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hl.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hl.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tv = int(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tvar length int\n\t\tswitch {\n\t\tcase v < 256:\n\t\t\tf.dict.writeByte(byte(v))\n\t\t\tif f.dict.availWrite() == 0 {\n\t\t\t\tf.toRead = f.dict.readFlush()\n\t\t\t\tf.step = (*decompressor).huffmanBytesReader\n\t\t\t\tf.stepState = stateInit\n\t\t\t\treturn\n\t\t\t}\n\t\t\tgoto readLiteral\n\t\tcase v == 256:\n\t\t\tf.finishBlock()\n\t\t\treturn\n\t\t// otherwise, reference to older data\n\t\tcase v < 265:\n\t\t\tlength = v - (257 - 3)\n\t\tcase v < maxNumLit:\n\t\t\tval := decCodeToLen[(v - 257)]\n\t\t\tlength = int(val.length) + 3\n\t\t\tn := uint(val.extra)\n\t\t\tfor f.nb < n {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits n>0:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\tlength += int(f.b & uint32(1<<(n&regSizeMaskUint32)-1))\n\t\t\tf.b >>= n & regSizeMaskUint32\n\t\t\tf.nb -= n\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(v, \">= maxNumLit\")\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tvar dist uint32\n\t\tif f.hd == nil {\n\t\t\tfor f.nb < 5 {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<5:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\tdist = uint32(bits.Reverse8(uint8(f.b & 0x1F << 3)))\n\t\t\tf.b >>= 5\n\t\t\tf.nb -= 5\n\t\t} else {\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hd.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hd.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hd.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hd.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tdist = uint32(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tswitch {\n\t\tcase dist < 4:\n\t\t\tdist++\n\t\tcase dist < maxNumDist:\n\t\t\tnb := uint(dist-2) >> 1\n\t\t\t// have 1 bit in bottom of dist, need nb more.\n\t\t\textra := (dist & 1) << (nb & regSizeMaskUint32)\n\t\t\tfor f.nb < nb {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<nb:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\textra |= f.b & uint32(1<<(nb&regSizeMaskUint32)-1)\n\t\t\tf.b >>= nb & regSizeMaskUint32\n\t\t\tf.nb -= nb\n\t\t\tdist = 1<<((nb+1)&regSizeMaskUint32) + 1 + extra\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist too big:\", dist, maxNumDist)\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\t// No check on length; encoding can be prescient.\n\t\tif dist > uint32(f.dict.histSize()) {\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist > f.dict.histSize():\", dist, f.dict.histSize())\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tf.copyLen, f.copyDist = length, int(dist)\n\t\tgoto copyHistory\n\t}\n\ncopyHistory:\n\t// Perform a backwards copy according to RFC section 3.2.3.\n\t{\n\t\tcnt := f.dict.tryWriteCopy(f.copyDist, f.copyLen)\n\t\tif cnt == 0 {\n\t\t\tcnt = f.dict.writeCopy(f.copyDist, f.copyLen)\n\t\t}\n\t\tf.copyLen -= cnt\n\n\t\tif f.dict.availWrite() == 0 || f.copyLen > 0 {\n\t\t\tf.toRead = f.dict.readFlush()\n\t\t\tf.step = (*decompressor).huffmanBytesReader // We need to continue this work\n\t\t\tf.stepState = stateDict\n\t\t\treturn\n\t\t}\n\t\tgoto readLiteral\n\t}\n}\n\n// Decode a single Huffman block from f.\n// hl and hd are the Huffman states for the lit/length values\n// and the distance values, respectively. If hd == nil, using the\n// fixed distance encoding associated with fixed Huffman blocks.\nfunc (f *decompressor) huffmanBufioReader() {\n\tconst (\n\t\tstateInit = iota // Zero value must be stateInit\n\t\tstateDict\n\t)\n\tfr := f.r.(*bufio.Reader)\n\n\tswitch f.stepState {\n\tcase stateInit:\n\t\tgoto readLiteral\n\tcase stateDict:\n\t\tgoto copyHistory\n\t}\n\nreadLiteral:\n\t// Read literal and/or (length, distance) according to RFC section 3.2.3.\n\t{\n\t\tvar v int\n\t\t{\n\t\t\t// Inlined v, err := f.huffSym(f.hl)\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hl.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hl.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hl.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hl.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tv = int(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tvar length int\n\t\tswitch {\n\t\tcase v < 256:\n\t\t\tf.dict.writeByte(byte(v))\n\t\t\tif f.dict.availWrite() == 0 {\n\t\t\t\tf.toRead = f.dict.readFlush()\n\t\t\t\tf.step = (*decompressor).huffmanBufioReader\n\t\t\t\tf.stepState = stateInit\n\t\t\t\treturn\n\t\t\t}\n\t\t\tgoto readLiteral\n\t\tcase v == 256:\n\t\t\tf.finishBlock()\n\t\t\treturn\n\t\t// otherwise, reference to older data\n\t\tcase v < 265:\n\t\t\tlength = v - (257 - 3)\n\t\tcase v < maxNumLit:\n\t\t\tval := decCodeToLen[(v - 257)]\n\t\t\tlength = int(val.length) + 3\n\t\t\tn := uint(val.extra)\n\t\t\tfor f.nb < n {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits n>0:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\tlength += int(f.b & uint32(1<<(n&regSizeMaskUint32)-1))\n\t\t\tf.b >>= n & regSizeMaskUint32\n\t\t\tf.nb -= n\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(v, \">= maxNumLit\")\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tvar dist uint32\n\t\tif f.hd == nil {\n\t\t\tfor f.nb < 5 {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<5:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\tdist = uint32(bits.Reverse8(uint8(f.b & 0x1F << 3)))\n\t\t\tf.b >>= 5\n\t\t\tf.nb -= 5\n\t\t} else {\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hd.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hd.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hd.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hd.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tdist = uint32(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tswitch {\n\t\tcase dist < 4:\n\t\t\tdist++\n\t\tcase dist < maxNumDist:\n\t\t\tnb := uint(dist-2) >> 1\n\t\t\t// have 1 bit in bottom of dist, need nb more.\n\t\t\textra := (dist & 1) << (nb & regSizeMaskUint32)\n\t\t\tfor f.nb < nb {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<nb:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\textra |= f.b & uint32(1<<(nb&regSizeMaskUint32)-1)\n\t\t\tf.b >>= nb & regSizeMaskUint32\n\t\t\tf.nb -= nb\n\t\t\tdist = 1<<((nb+1)&regSizeMaskUint32) + 1 + extra\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist too big:\", dist, maxNumDist)\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\t// No check on length; encoding can be prescient.\n\t\tif dist > uint32(f.dict.histSize()) {\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist > f.dict.histSize():\", dist, f.dict.histSize())\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tf.copyLen, f.copyDist = length, int(dist)\n\t\tgoto copyHistory\n\t}\n\ncopyHistory:\n\t// Perform a backwards copy according to RFC section 3.2.3.\n\t{\n\t\tcnt := f.dict.tryWriteCopy(f.copyDist, f.copyLen)\n\t\tif cnt == 0 {\n\t\t\tcnt = f.dict.writeCopy(f.copyDist, f.copyLen)\n\t\t}\n\t\tf.copyLen -= cnt\n\n\t\tif f.dict.availWrite() == 0 || f.copyLen > 0 {\n\t\t\tf.toRead = f.dict.readFlush()\n\t\t\tf.step = (*decompressor).huffmanBufioReader // We need to continue this work\n\t\t\tf.stepState = stateDict\n\t\t\treturn\n\t\t}\n\t\tgoto readLiteral\n\t}\n}\n\n// Decode a single Huffman block from f.\n// hl and hd are the Huffman states for the lit/length values\n// and the distance values, respectively. If hd == nil, using the\n// fixed distance encoding associated with fixed Huffman blocks.\nfunc (f *decompressor) huffmanStringsReader() {\n\tconst (\n\t\tstateInit = iota // Zero value must be stateInit\n\t\tstateDict\n\t)\n\tfr := f.r.(*strings.Reader)\n\n\tswitch f.stepState {\n\tcase stateInit:\n\t\tgoto readLiteral\n\tcase stateDict:\n\t\tgoto copyHistory\n\t}\n\nreadLiteral:\n\t// Read literal and/or (length, distance) according to RFC section 3.2.3.\n\t{\n\t\tvar v int\n\t\t{\n\t\t\t// Inlined v, err := f.huffSym(f.hl)\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hl.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hl.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hl.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hl.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tv = int(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tvar length int\n\t\tswitch {\n\t\tcase v < 256:\n\t\t\tf.dict.writeByte(byte(v))\n\t\t\tif f.dict.availWrite() == 0 {\n\t\t\t\tf.toRead = f.dict.readFlush()\n\t\t\t\tf.step = (*decompressor).huffmanStringsReader\n\t\t\t\tf.stepState = stateInit\n\t\t\t\treturn\n\t\t\t}\n\t\t\tgoto readLiteral\n\t\tcase v == 256:\n\t\t\tf.finishBlock()\n\t\t\treturn\n\t\t// otherwise, reference to older data\n\t\tcase v < 265:\n\t\t\tlength = v - (257 - 3)\n\t\tcase v < maxNumLit:\n\t\t\tval := decCodeToLen[(v - 257)]\n\t\t\tlength = int(val.length) + 3\n\t\t\tn := uint(val.extra)\n\t\t\tfor f.nb < n {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits n>0:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\tlength += int(f.b & uint32(1<<(n&regSizeMaskUint32)-1))\n\t\t\tf.b >>= n & regSizeMaskUint32\n\t\t\tf.nb -= n\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(v, \">= maxNumLit\")\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tvar dist uint32\n\t\tif f.hd == nil {\n\t\t\tfor f.nb < 5 {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<5:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\tdist = uint32(bits.Reverse8(uint8(f.b & 0x1F << 3)))\n\t\t\tf.b >>= 5\n\t\t\tf.nb -= 5\n\t\t} else {\n\t\t\t// Since a huffmanDecoder can be empty or be composed of a degenerate tree\n\t\t\t// with single element, huffSym must error on these two edge cases. In both\n\t\t\t// cases, the chunks slice will be 0 for the invalid sequence, leading it\n\t\t\t// satisfy the n == 0 check below.\n\t\t\tn := uint(f.hd.maxRead)\n\t\t\t// Optimization. Compiler isn't smart enough to keep f.b,f.nb in registers,\n\t\t\t// but is smart enough to keep local variables in registers, so use nb and b,\n\t\t\t// inline call to moreBits and reassign b,nb back to f on return.\n\t\t\tnb, b := f.nb, f.b\n\t\t\tfor {\n\t\t\t\tfor nb < n {\n\t\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tf.err = noEOF(err)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.roffset++\n\t\t\t\t\tb |= uint32(c) << (nb & regSizeMaskUint32)\n\t\t\t\t\tnb += 8\n\t\t\t\t}\n\t\t\t\tchunk := f.hd.chunks[b&(huffmanNumChunks-1)]\n\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\tif n > huffmanChunkBits {\n\t\t\t\t\tchunk = f.hd.links[chunk>>huffmanValueShift][(b>>huffmanChunkBits)&f.hd.linkMask]\n\t\t\t\t\tn = uint(chunk & huffmanCountMask)\n\t\t\t\t}\n\t\t\t\tif n <= nb {\n\t\t\t\t\tif n == 0 {\n\t\t\t\t\t\tf.b = b\n\t\t\t\t\t\tf.nb = nb\n\t\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\t\tfmt.Println(\"huffsym: n==0\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tf.b = b >> (n & regSizeMaskUint32)\n\t\t\t\t\tf.nb = nb - n\n\t\t\t\t\tdist = uint32(chunk >> huffmanValueShift)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tswitch {\n\t\tcase dist < 4:\n\t\t\tdist++\n\t\tcase dist < maxNumDist:\n\t\t\tnb := uint(dist-2) >> 1\n\t\t\t// have 1 bit in bottom of dist, need nb more.\n\t\t\textra := (dist & 1) << (nb & regSizeMaskUint32)\n\t\t\tfor f.nb < nb {\n\t\t\t\tc, err := fr.ReadByte()\n\t\t\t\tif err != nil {\n\t\t\t\t\tif debugDecode {\n\t\t\t\t\t\tfmt.Println(\"morebits f.nb<nb:\", err)\n\t\t\t\t\t}\n\t\t\t\t\tf.err = err\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tf.roffset++\n\t\t\t\tf.b |= uint32(c) << f.nb\n\t\t\t\tf.nb += 8\n\t\t\t}\n\t\t\textra |= f.b & uint32(1<<(nb&regSizeMaskUint32)-1)\n\t\t\tf.b >>= nb & regSizeMaskUint32\n\t\t\tf.nb -= nb\n\t\t\tdist = 1<<((nb+1)&regSizeMaskUint32) + 1 + extra\n\t\tdefault:\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist too big:\", dist, maxNumDist)\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\t// No check on length; encoding can be prescient.\n\t\tif dist > uint32(f.dict.histSize()) {\n\t\t\tif debugDecode {\n\t\t\t\tfmt.Println(\"dist > f.dict.histSize():\", dist, f.dict.histSize())\n\t\t\t}\n\t\t\tf.err = CorruptInputError(f.roffset)\n\t\t\treturn\n\t\t}\n\n\t\tf.copyLen, f.copyDist = length, int(dist)\n\t\tgoto copyHistory\n\t}\n\ncopyHistory:\n\t// Perform a backwards copy according to RFC section 3.2.3.\n\t{\n\t\tcnt := f.dict.tryWriteCopy(f.copyDist, f.copyLen)\n\t\tif cnt == 0 {\n\t\t\tcnt = f.dict.writeCopy(f.copyDist, f.copyLen)\n\t\t}\n\t\tf.copyLen -= cnt\n\n\t\tif f.dict.availWrite() == 0 || f.copyLen > 0 {\n\t\t\tf.toRead = f.dict.readFlush()\n\t\t\tf.step = (*decompressor).huffmanStringsReader // We need to continue this work\n\t\t\tf.stepState = stateDict\n\t\t\treturn\n\t\t}\n\t\tgoto readLiteral\n\t}\n}\n\nfunc (f *decompressor) huffmanBlockDecoder() func() {\n\tswitch f.r.(type) {\n\tcase *bytes.Buffer:\n\t\treturn f.huffmanBytesBuffer\n\tcase *bytes.Reader:\n\t\treturn f.huffmanBytesReader\n\tcase *bufio.Reader:\n\t\treturn f.huffmanBufioReader\n\tcase *strings.Reader:\n\t\treturn f.huffmanStringsReader\n\tdefault:\n\t\treturn f.huffmanBlockGeneric\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/level1.go",
    "content": "package flate\n\nimport \"fmt\"\n\n// fastGen maintains the table for matches,\n// and the previous byte block for level 2.\n// This is the generic implementation.\ntype fastEncL1 struct {\n\tfastGen\n\ttable [tableSize]tableEntry\n}\n\n// EncodeL1 uses a similar algorithm to level 1\nfunc (e *fastEncL1) Encode(dst *tokens, src []byte) {\n\tconst (\n\t\tinputMargin            = 12 - 1\n\t\tminNonLiteralBlockSize = 1 + 1 + inputMargin\n\t)\n\tif debugDeflate && e.cur < 0 {\n\t\tpanic(fmt.Sprint(\"e.cur < 0: \", e.cur))\n\t}\n\n\t// Protect against e.cur wraparound.\n\tfor e.cur >= bufferReset {\n\t\tif len(e.hist) == 0 {\n\t\t\tfor i := range e.table[:] {\n\t\t\t\te.table[i] = tableEntry{}\n\t\t\t}\n\t\t\te.cur = maxMatchOffset\n\t\t\tbreak\n\t\t}\n\t\t// Shift down everything in the table that isn't already too far away.\n\t\tminOff := e.cur + int32(len(e.hist)) - maxMatchOffset\n\t\tfor i := range e.table[:] {\n\t\t\tv := e.table[i].offset\n\t\t\tif v <= minOff {\n\t\t\t\tv = 0\n\t\t\t} else {\n\t\t\t\tv = v - e.cur + maxMatchOffset\n\t\t\t}\n\t\t\te.table[i].offset = v\n\t\t}\n\t\te.cur = maxMatchOffset\n\t}\n\n\ts := e.addBlock(src)\n\n\t// This check isn't in the Snappy implementation, but there, the caller\n\t// instead of the callee handles this case.\n\tif len(src) < minNonLiteralBlockSize {\n\t\t// We do not fill the token table.\n\t\t// This will be picked up by caller.\n\t\tdst.n = uint16(len(src))\n\t\treturn\n\t}\n\n\t// Override src\n\tsrc = e.hist\n\tnextEmit := s\n\n\t// sLimit is when to stop looking for offset/length copies. The inputMargin\n\t// lets us use a fast path for emitLiteral in the main loop, while we are\n\t// looking for copies.\n\tsLimit := int32(len(src) - inputMargin)\n\n\t// nextEmit is where in src the next emitLiteral should start from.\n\tcv := load3232(src, s)\n\n\tfor {\n\t\tconst skipLog = 5\n\t\tconst doEvery = 2\n\n\t\tnextS := s\n\t\tvar candidate tableEntry\n\t\tfor {\n\t\t\tnextHash := hash(cv)\n\t\t\tcandidate = e.table[nextHash]\n\t\t\tnextS = s + doEvery + (s-nextEmit)>>skipLog\n\t\t\tif nextS > sLimit {\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\n\t\t\tnow := load6432(src, nextS)\n\t\t\te.table[nextHash] = tableEntry{offset: s + e.cur}\n\t\t\tnextHash = hash(uint32(now))\n\n\t\t\toffset := s - (candidate.offset - e.cur)\n\t\t\tif offset < maxMatchOffset && cv == load3232(src, candidate.offset-e.cur) {\n\t\t\t\te.table[nextHash] = tableEntry{offset: nextS + e.cur}\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// Do one right away...\n\t\t\tcv = uint32(now)\n\t\t\ts = nextS\n\t\t\tnextS++\n\t\t\tcandidate = e.table[nextHash]\n\t\t\tnow >>= 8\n\t\t\te.table[nextHash] = tableEntry{offset: s + e.cur}\n\n\t\t\toffset = s - (candidate.offset - e.cur)\n\t\t\tif offset < maxMatchOffset && cv == load3232(src, candidate.offset-e.cur) {\n\t\t\t\te.table[nextHash] = tableEntry{offset: nextS + e.cur}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tcv = uint32(now)\n\t\t\ts = nextS\n\t\t}\n\n\t\t// A 4-byte match has been found. We'll later see if more than 4 bytes\n\t\t// match. But, prior to the match, src[nextEmit:s] are unmatched. Emit\n\t\t// them as literal bytes.\n\t\tfor {\n\t\t\t// Invariant: we have a 4-byte match at s, and no need to emit any\n\t\t\t// literal bytes prior to s.\n\n\t\t\t// Extend the 4-byte match as long as possible.\n\t\t\tt := candidate.offset - e.cur\n\t\t\tl := e.matchlenLong(s+4, t+4, src) + 4\n\n\t\t\t// Extend backwards\n\t\t\tfor t > 0 && s > nextEmit && src[t-1] == src[s-1] {\n\t\t\t\ts--\n\t\t\t\tt--\n\t\t\t\tl++\n\t\t\t}\n\t\t\tif nextEmit < s {\n\t\t\t\temitLiteral(dst, src[nextEmit:s])\n\t\t\t}\n\n\t\t\t// Save the match found\n\t\t\tdst.AddMatchLong(l, uint32(s-t-baseMatchOffset))\n\t\t\ts += l\n\t\t\tnextEmit = s\n\t\t\tif nextS >= s {\n\t\t\t\ts = nextS + 1\n\t\t\t}\n\t\t\tif s >= sLimit {\n\t\t\t\t// Index first pair after match end.\n\t\t\t\tif int(s+l+4) < len(src) {\n\t\t\t\t\tcv := load3232(src, s)\n\t\t\t\t\te.table[hash(cv)] = tableEntry{offset: s + e.cur}\n\t\t\t\t}\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\n\t\t\t// We could immediately start working at s now, but to improve\n\t\t\t// compression we first update the hash table at s-2 and at s. If\n\t\t\t// another emitCopy is not our next move, also calculate nextHash\n\t\t\t// at s+1. At least on GOARCH=amd64, these three hash calculations\n\t\t\t// are faster as one load64 call (with some shifts) instead of\n\t\t\t// three load32 calls.\n\t\t\tx := load6432(src, s-2)\n\t\t\to := e.cur + s - 2\n\t\t\tprevHash := hash(uint32(x))\n\t\t\te.table[prevHash] = tableEntry{offset: o}\n\t\t\tx >>= 16\n\t\t\tcurrHash := hash(uint32(x))\n\t\t\tcandidate = e.table[currHash]\n\t\t\te.table[currHash] = tableEntry{offset: o + 2}\n\n\t\t\toffset := s - (candidate.offset - e.cur)\n\t\t\tif offset > maxMatchOffset || uint32(x) != load3232(src, candidate.offset-e.cur) {\n\t\t\t\tcv = uint32(x >> 8)\n\t\t\t\ts++\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\nemitRemainder:\n\tif int(nextEmit) < len(src) {\n\t\t// If nothing was added, don't encode literals.\n\t\tif dst.n == 0 {\n\t\t\treturn\n\t\t}\n\t\temitLiteral(dst, src[nextEmit:])\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/level2.go",
    "content": "package flate\n\nimport \"fmt\"\n\n// fastGen maintains the table for matches,\n// and the previous byte block for level 2.\n// This is the generic implementation.\ntype fastEncL2 struct {\n\tfastGen\n\ttable [bTableSize]tableEntry\n}\n\n// EncodeL2 uses a similar algorithm to level 1, but is capable\n// of matching across blocks giving better compression at a small slowdown.\nfunc (e *fastEncL2) Encode(dst *tokens, src []byte) {\n\tconst (\n\t\tinputMargin            = 12 - 1\n\t\tminNonLiteralBlockSize = 1 + 1 + inputMargin\n\t)\n\n\tif debugDeflate && e.cur < 0 {\n\t\tpanic(fmt.Sprint(\"e.cur < 0: \", e.cur))\n\t}\n\n\t// Protect against e.cur wraparound.\n\tfor e.cur >= bufferReset {\n\t\tif len(e.hist) == 0 {\n\t\t\tfor i := range e.table[:] {\n\t\t\t\te.table[i] = tableEntry{}\n\t\t\t}\n\t\t\te.cur = maxMatchOffset\n\t\t\tbreak\n\t\t}\n\t\t// Shift down everything in the table that isn't already too far away.\n\t\tminOff := e.cur + int32(len(e.hist)) - maxMatchOffset\n\t\tfor i := range e.table[:] {\n\t\t\tv := e.table[i].offset\n\t\t\tif v <= minOff {\n\t\t\t\tv = 0\n\t\t\t} else {\n\t\t\t\tv = v - e.cur + maxMatchOffset\n\t\t\t}\n\t\t\te.table[i].offset = v\n\t\t}\n\t\te.cur = maxMatchOffset\n\t}\n\n\ts := e.addBlock(src)\n\n\t// This check isn't in the Snappy implementation, but there, the caller\n\t// instead of the callee handles this case.\n\tif len(src) < minNonLiteralBlockSize {\n\t\t// We do not fill the token table.\n\t\t// This will be picked up by caller.\n\t\tdst.n = uint16(len(src))\n\t\treturn\n\t}\n\n\t// Override src\n\tsrc = e.hist\n\tnextEmit := s\n\n\t// sLimit is when to stop looking for offset/length copies. The inputMargin\n\t// lets us use a fast path for emitLiteral in the main loop, while we are\n\t// looking for copies.\n\tsLimit := int32(len(src) - inputMargin)\n\n\t// nextEmit is where in src the next emitLiteral should start from.\n\tcv := load3232(src, s)\n\tfor {\n\t\t// When should we start skipping if we haven't found matches in a long while.\n\t\tconst skipLog = 5\n\t\tconst doEvery = 2\n\n\t\tnextS := s\n\t\tvar candidate tableEntry\n\t\tfor {\n\t\t\tnextHash := hash4u(cv, bTableBits)\n\t\t\ts = nextS\n\t\t\tnextS = s + doEvery + (s-nextEmit)>>skipLog\n\t\t\tif nextS > sLimit {\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\t\t\tcandidate = e.table[nextHash]\n\t\t\tnow := load6432(src, nextS)\n\t\t\te.table[nextHash] = tableEntry{offset: s + e.cur}\n\t\t\tnextHash = hash4u(uint32(now), bTableBits)\n\n\t\t\toffset := s - (candidate.offset - e.cur)\n\t\t\tif offset < maxMatchOffset && cv == load3232(src, candidate.offset-e.cur) {\n\t\t\t\te.table[nextHash] = tableEntry{offset: nextS + e.cur}\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// Do one right away...\n\t\t\tcv = uint32(now)\n\t\t\ts = nextS\n\t\t\tnextS++\n\t\t\tcandidate = e.table[nextHash]\n\t\t\tnow >>= 8\n\t\t\te.table[nextHash] = tableEntry{offset: s + e.cur}\n\n\t\t\toffset = s - (candidate.offset - e.cur)\n\t\t\tif offset < maxMatchOffset && cv == load3232(src, candidate.offset-e.cur) {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tcv = uint32(now)\n\t\t}\n\n\t\t// A 4-byte match has been found. We'll later see if more than 4 bytes\n\t\t// match. But, prior to the match, src[nextEmit:s] are unmatched. Emit\n\t\t// them as literal bytes.\n\n\t\t// Call emitCopy, and then see if another emitCopy could be our next\n\t\t// move. Repeat until we find no match for the input immediately after\n\t\t// what was consumed by the last emitCopy call.\n\t\t//\n\t\t// If we exit this loop normally then we need to call emitLiteral next,\n\t\t// though we don't yet know how big the literal will be. We handle that\n\t\t// by proceeding to the next iteration of the main loop. We also can\n\t\t// exit this loop via goto if we get close to exhausting the input.\n\t\tfor {\n\t\t\t// Invariant: we have a 4-byte match at s, and no need to emit any\n\t\t\t// literal bytes prior to s.\n\n\t\t\t// Extend the 4-byte match as long as possible.\n\t\t\tt := candidate.offset - e.cur\n\t\t\tl := e.matchlenLong(s+4, t+4, src) + 4\n\n\t\t\t// Extend backwards\n\t\t\tfor t > 0 && s > nextEmit && src[t-1] == src[s-1] {\n\t\t\t\ts--\n\t\t\t\tt--\n\t\t\t\tl++\n\t\t\t}\n\t\t\tif nextEmit < s {\n\t\t\t\temitLiteral(dst, src[nextEmit:s])\n\t\t\t}\n\n\t\t\tdst.AddMatchLong(l, uint32(s-t-baseMatchOffset))\n\t\t\ts += l\n\t\t\tnextEmit = s\n\t\t\tif nextS >= s {\n\t\t\t\ts = nextS + 1\n\t\t\t}\n\n\t\t\tif s >= sLimit {\n\t\t\t\t// Index first pair after match end.\n\t\t\t\tif int(s+l+4) < len(src) {\n\t\t\t\t\tcv := load3232(src, s)\n\t\t\t\t\te.table[hash4u(cv, bTableBits)] = tableEntry{offset: s + e.cur}\n\t\t\t\t}\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\n\t\t\t// Store every second hash in-between, but offset by 1.\n\t\t\tfor i := s - l + 2; i < s-5; i += 7 {\n\t\t\t\tx := load6432(src, int32(i))\n\t\t\t\tnextHash := hash4u(uint32(x), bTableBits)\n\t\t\t\te.table[nextHash] = tableEntry{offset: e.cur + i}\n\t\t\t\t// Skip one\n\t\t\t\tx >>= 16\n\t\t\t\tnextHash = hash4u(uint32(x), bTableBits)\n\t\t\t\te.table[nextHash] = tableEntry{offset: e.cur + i + 2}\n\t\t\t\t// Skip one\n\t\t\t\tx >>= 16\n\t\t\t\tnextHash = hash4u(uint32(x), bTableBits)\n\t\t\t\te.table[nextHash] = tableEntry{offset: e.cur + i + 4}\n\t\t\t}\n\n\t\t\t// We could immediately start working at s now, but to improve\n\t\t\t// compression we first update the hash table at s-2 to s. If\n\t\t\t// another emitCopy is not our next move, also calculate nextHash\n\t\t\t// at s+1. At least on GOARCH=amd64, these three hash calculations\n\t\t\t// are faster as one load64 call (with some shifts) instead of\n\t\t\t// three load32 calls.\n\t\t\tx := load6432(src, s-2)\n\t\t\to := e.cur + s - 2\n\t\t\tprevHash := hash4u(uint32(x), bTableBits)\n\t\t\tprevHash2 := hash4u(uint32(x>>8), bTableBits)\n\t\t\te.table[prevHash] = tableEntry{offset: o}\n\t\t\te.table[prevHash2] = tableEntry{offset: o + 1}\n\t\t\tcurrHash := hash4u(uint32(x>>16), bTableBits)\n\t\t\tcandidate = e.table[currHash]\n\t\t\te.table[currHash] = tableEntry{offset: o + 2}\n\n\t\t\toffset := s - (candidate.offset - e.cur)\n\t\t\tif offset > maxMatchOffset || uint32(x>>16) != load3232(src, candidate.offset-e.cur) {\n\t\t\t\tcv = uint32(x >> 24)\n\t\t\t\ts++\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\nemitRemainder:\n\tif int(nextEmit) < len(src) {\n\t\t// If nothing was added, don't encode literals.\n\t\tif dst.n == 0 {\n\t\t\treturn\n\t\t}\n\n\t\temitLiteral(dst, src[nextEmit:])\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/level3.go",
    "content": "package flate\n\nimport \"fmt\"\n\n// fastEncL3\ntype fastEncL3 struct {\n\tfastGen\n\ttable [tableSize]tableEntryPrev\n}\n\n// Encode uses a similar algorithm to level 2, will check up to two candidates.\nfunc (e *fastEncL3) Encode(dst *tokens, src []byte) {\n\tconst (\n\t\tinputMargin            = 8 - 1\n\t\tminNonLiteralBlockSize = 1 + 1 + inputMargin\n\t)\n\n\tif debugDeflate && e.cur < 0 {\n\t\tpanic(fmt.Sprint(\"e.cur < 0: \", e.cur))\n\t}\n\n\t// Protect against e.cur wraparound.\n\tfor e.cur >= bufferReset {\n\t\tif len(e.hist) == 0 {\n\t\t\tfor i := range e.table[:] {\n\t\t\t\te.table[i] = tableEntryPrev{}\n\t\t\t}\n\t\t\te.cur = maxMatchOffset\n\t\t\tbreak\n\t\t}\n\t\t// Shift down everything in the table that isn't already too far away.\n\t\tminOff := e.cur + int32(len(e.hist)) - maxMatchOffset\n\t\tfor i := range e.table[:] {\n\t\t\tv := e.table[i]\n\t\t\tif v.Cur.offset <= minOff {\n\t\t\t\tv.Cur.offset = 0\n\t\t\t} else {\n\t\t\t\tv.Cur.offset = v.Cur.offset - e.cur + maxMatchOffset\n\t\t\t}\n\t\t\tif v.Prev.offset <= minOff {\n\t\t\t\tv.Prev.offset = 0\n\t\t\t} else {\n\t\t\t\tv.Prev.offset = v.Prev.offset - e.cur + maxMatchOffset\n\t\t\t}\n\t\t\te.table[i] = v\n\t\t}\n\t\te.cur = maxMatchOffset\n\t}\n\n\ts := e.addBlock(src)\n\n\t// Skip if too small.\n\tif len(src) < minNonLiteralBlockSize {\n\t\t// We do not fill the token table.\n\t\t// This will be picked up by caller.\n\t\tdst.n = uint16(len(src))\n\t\treturn\n\t}\n\n\t// Override src\n\tsrc = e.hist\n\tnextEmit := s\n\n\t// sLimit is when to stop looking for offset/length copies. The inputMargin\n\t// lets us use a fast path for emitLiteral in the main loop, while we are\n\t// looking for copies.\n\tsLimit := int32(len(src) - inputMargin)\n\n\t// nextEmit is where in src the next emitLiteral should start from.\n\tcv := load3232(src, s)\n\tfor {\n\t\tconst skipLog = 6\n\t\tnextS := s\n\t\tvar candidate tableEntry\n\t\tfor {\n\t\t\tnextHash := hash(cv)\n\t\t\ts = nextS\n\t\t\tnextS = s + 1 + (s-nextEmit)>>skipLog\n\t\t\tif nextS > sLimit {\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\t\t\tcandidates := e.table[nextHash]\n\t\t\tnow := load3232(src, nextS)\n\n\t\t\t// Safe offset distance until s + 4...\n\t\t\tminOffset := e.cur + s - (maxMatchOffset - 4)\n\t\t\te.table[nextHash] = tableEntryPrev{Prev: candidates.Cur, Cur: tableEntry{offset: s + e.cur}}\n\n\t\t\t// Check both candidates\n\t\t\tcandidate = candidates.Cur\n\t\t\tif candidate.offset < minOffset {\n\t\t\t\tcv = now\n\t\t\t\t// Previous will also be invalid, we have nothing.\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tif cv == load3232(src, candidate.offset-e.cur) {\n\t\t\t\tif candidates.Prev.offset < minOffset || cv != load3232(src, candidates.Prev.offset-e.cur) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\t// Both match and are valid, pick longest.\n\t\t\t\toffset := s - (candidate.offset - e.cur)\n\t\t\t\to2 := s - (candidates.Prev.offset - e.cur)\n\t\t\t\tl1, l2 := matchLen(src[s+4:], src[s-offset+4:]), matchLen(src[s+4:], src[s-o2+4:])\n\t\t\t\tif l2 > l1 {\n\t\t\t\t\tcandidate = candidates.Prev\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t} else {\n\t\t\t\t// We only check if value mismatches.\n\t\t\t\t// Offset will always be invalid in other cases.\n\t\t\t\tcandidate = candidates.Prev\n\t\t\t\tif candidate.offset > minOffset && cv == load3232(src, candidate.offset-e.cur) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tcv = now\n\t\t}\n\n\t\t// Call emitCopy, and then see if another emitCopy could be our next\n\t\t// move. Repeat until we find no match for the input immediately after\n\t\t// what was consumed by the last emitCopy call.\n\t\t//\n\t\t// If we exit this loop normally then we need to call emitLiteral next,\n\t\t// though we don't yet know how big the literal will be. We handle that\n\t\t// by proceeding to the next iteration of the main loop. We also can\n\t\t// exit this loop via goto if we get close to exhausting the input.\n\t\tfor {\n\t\t\t// Invariant: we have a 4-byte match at s, and no need to emit any\n\t\t\t// literal bytes prior to s.\n\n\t\t\t// Extend the 4-byte match as long as possible.\n\t\t\t//\n\t\t\tt := candidate.offset - e.cur\n\t\t\tl := e.matchlenLong(s+4, t+4, src) + 4\n\n\t\t\t// Extend backwards\n\t\t\tfor t > 0 && s > nextEmit && src[t-1] == src[s-1] {\n\t\t\t\ts--\n\t\t\t\tt--\n\t\t\t\tl++\n\t\t\t}\n\t\t\tif nextEmit < s {\n\t\t\t\temitLiteral(dst, src[nextEmit:s])\n\t\t\t}\n\n\t\t\tdst.AddMatchLong(l, uint32(s-t-baseMatchOffset))\n\t\t\ts += l\n\t\t\tnextEmit = s\n\t\t\tif nextS >= s {\n\t\t\t\ts = nextS + 1\n\t\t\t}\n\n\t\t\tif s >= sLimit {\n\t\t\t\tt += l\n\t\t\t\t// Index first pair after match end.\n\t\t\t\tif int(t+4) < len(src) && t > 0 {\n\t\t\t\t\tcv := load3232(src, t)\n\t\t\t\t\tnextHash := hash(cv)\n\t\t\t\t\te.table[nextHash] = tableEntryPrev{\n\t\t\t\t\t\tPrev: e.table[nextHash].Cur,\n\t\t\t\t\t\tCur:  tableEntry{offset: e.cur + t},\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\n\t\t\t// We could immediately start working at s now, but to improve\n\t\t\t// compression we first update the hash table at s-3 to s.\n\t\t\tx := load6432(src, s-3)\n\t\t\tprevHash := hash(uint32(x))\n\t\t\te.table[prevHash] = tableEntryPrev{\n\t\t\t\tPrev: e.table[prevHash].Cur,\n\t\t\t\tCur:  tableEntry{offset: e.cur + s - 3},\n\t\t\t}\n\t\t\tx >>= 8\n\t\t\tprevHash = hash(uint32(x))\n\n\t\t\te.table[prevHash] = tableEntryPrev{\n\t\t\t\tPrev: e.table[prevHash].Cur,\n\t\t\t\tCur:  tableEntry{offset: e.cur + s - 2},\n\t\t\t}\n\t\t\tx >>= 8\n\t\t\tprevHash = hash(uint32(x))\n\n\t\t\te.table[prevHash] = tableEntryPrev{\n\t\t\t\tPrev: e.table[prevHash].Cur,\n\t\t\t\tCur:  tableEntry{offset: e.cur + s - 1},\n\t\t\t}\n\t\t\tx >>= 8\n\t\t\tcurrHash := hash(uint32(x))\n\t\t\tcandidates := e.table[currHash]\n\t\t\tcv = uint32(x)\n\t\t\te.table[currHash] = tableEntryPrev{\n\t\t\t\tPrev: candidates.Cur,\n\t\t\t\tCur:  tableEntry{offset: s + e.cur},\n\t\t\t}\n\n\t\t\t// Check both candidates\n\t\t\tcandidate = candidates.Cur\n\t\t\tminOffset := e.cur + s - (maxMatchOffset - 4)\n\n\t\t\tif candidate.offset > minOffset && cv != load3232(src, candidate.offset-e.cur) {\n\t\t\t\t// We only check if value mismatches.\n\t\t\t\t// Offset will always be invalid in other cases.\n\t\t\t\tcandidate = candidates.Prev\n\t\t\t\tif candidate.offset > minOffset && cv == load3232(src, candidate.offset-e.cur) {\n\t\t\t\t\toffset := s - (candidate.offset - e.cur)\n\t\t\t\t\tif offset <= maxMatchOffset {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tcv = uint32(x >> 8)\n\t\t\ts++\n\t\t\tbreak\n\t\t}\n\t}\n\nemitRemainder:\n\tif int(nextEmit) < len(src) {\n\t\t// If nothing was added, don't encode literals.\n\t\tif dst.n == 0 {\n\t\t\treturn\n\t\t}\n\n\t\temitLiteral(dst, src[nextEmit:])\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/level4.go",
    "content": "package flate\n\nimport \"fmt\"\n\ntype fastEncL4 struct {\n\tfastGen\n\ttable  [tableSize]tableEntry\n\tbTable [tableSize]tableEntry\n}\n\nfunc (e *fastEncL4) Encode(dst *tokens, src []byte) {\n\tconst (\n\t\tinputMargin            = 12 - 1\n\t\tminNonLiteralBlockSize = 1 + 1 + inputMargin\n\t)\n\tif debugDeflate && e.cur < 0 {\n\t\tpanic(fmt.Sprint(\"e.cur < 0: \", e.cur))\n\t}\n\t// Protect against e.cur wraparound.\n\tfor e.cur >= bufferReset {\n\t\tif len(e.hist) == 0 {\n\t\t\tfor i := range e.table[:] {\n\t\t\t\te.table[i] = tableEntry{}\n\t\t\t}\n\t\t\tfor i := range e.bTable[:] {\n\t\t\t\te.bTable[i] = tableEntry{}\n\t\t\t}\n\t\t\te.cur = maxMatchOffset\n\t\t\tbreak\n\t\t}\n\t\t// Shift down everything in the table that isn't already too far away.\n\t\tminOff := e.cur + int32(len(e.hist)) - maxMatchOffset\n\t\tfor i := range e.table[:] {\n\t\t\tv := e.table[i].offset\n\t\t\tif v <= minOff {\n\t\t\t\tv = 0\n\t\t\t} else {\n\t\t\t\tv = v - e.cur + maxMatchOffset\n\t\t\t}\n\t\t\te.table[i].offset = v\n\t\t}\n\t\tfor i := range e.bTable[:] {\n\t\t\tv := e.bTable[i].offset\n\t\t\tif v <= minOff {\n\t\t\t\tv = 0\n\t\t\t} else {\n\t\t\t\tv = v - e.cur + maxMatchOffset\n\t\t\t}\n\t\t\te.bTable[i].offset = v\n\t\t}\n\t\te.cur = maxMatchOffset\n\t}\n\n\ts := e.addBlock(src)\n\n\t// This check isn't in the Snappy implementation, but there, the caller\n\t// instead of the callee handles this case.\n\tif len(src) < minNonLiteralBlockSize {\n\t\t// We do not fill the token table.\n\t\t// This will be picked up by caller.\n\t\tdst.n = uint16(len(src))\n\t\treturn\n\t}\n\n\t// Override src\n\tsrc = e.hist\n\tnextEmit := s\n\n\t// sLimit is when to stop looking for offset/length copies. The inputMargin\n\t// lets us use a fast path for emitLiteral in the main loop, while we are\n\t// looking for copies.\n\tsLimit := int32(len(src) - inputMargin)\n\n\t// nextEmit is where in src the next emitLiteral should start from.\n\tcv := load6432(src, s)\n\tfor {\n\t\tconst skipLog = 6\n\t\tconst doEvery = 1\n\n\t\tnextS := s\n\t\tvar t int32\n\t\tfor {\n\t\t\tnextHashS := hash4x64(cv, tableBits)\n\t\t\tnextHashL := hash7(cv, tableBits)\n\n\t\t\ts = nextS\n\t\t\tnextS = s + doEvery + (s-nextEmit)>>skipLog\n\t\t\tif nextS > sLimit {\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\t\t\t// Fetch a short+long candidate\n\t\t\tsCandidate := e.table[nextHashS]\n\t\t\tlCandidate := e.bTable[nextHashL]\n\t\t\tnext := load6432(src, nextS)\n\t\t\tentry := tableEntry{offset: s + e.cur}\n\t\t\te.table[nextHashS] = entry\n\t\t\te.bTable[nextHashL] = entry\n\n\t\t\tt = lCandidate.offset - e.cur\n\t\t\tif s-t < maxMatchOffset && uint32(cv) == load3232(src, lCandidate.offset-e.cur) {\n\t\t\t\t// We got a long match. Use that.\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tt = sCandidate.offset - e.cur\n\t\t\tif s-t < maxMatchOffset && uint32(cv) == load3232(src, sCandidate.offset-e.cur) {\n\t\t\t\t// Found a 4 match...\n\t\t\t\tlCandidate = e.bTable[hash7(next, tableBits)]\n\n\t\t\t\t// If the next long is a candidate, check if we should use that instead...\n\t\t\t\tlOff := nextS - (lCandidate.offset - e.cur)\n\t\t\t\tif lOff < maxMatchOffset && load3232(src, lCandidate.offset-e.cur) == uint32(next) {\n\t\t\t\t\tl1, l2 := matchLen(src[s+4:], src[t+4:]), matchLen(src[nextS+4:], src[nextS-lOff+4:])\n\t\t\t\t\tif l2 > l1 {\n\t\t\t\t\t\ts = nextS\n\t\t\t\t\t\tt = lCandidate.offset - e.cur\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tcv = next\n\t\t}\n\n\t\t// A 4-byte match has been found. We'll later see if more than 4 bytes\n\t\t// match. But, prior to the match, src[nextEmit:s] are unmatched. Emit\n\t\t// them as literal bytes.\n\n\t\t// Extend the 4-byte match as long as possible.\n\t\tl := e.matchlenLong(s+4, t+4, src) + 4\n\n\t\t// Extend backwards\n\t\tfor t > 0 && s > nextEmit && src[t-1] == src[s-1] {\n\t\t\ts--\n\t\t\tt--\n\t\t\tl++\n\t\t}\n\t\tif nextEmit < s {\n\t\t\temitLiteral(dst, src[nextEmit:s])\n\t\t}\n\t\tif debugDeflate {\n\t\t\tif t >= s {\n\t\t\t\tpanic(\"s-t\")\n\t\t\t}\n\t\t\tif (s - t) > maxMatchOffset {\n\t\t\t\tpanic(fmt.Sprintln(\"mmo\", t))\n\t\t\t}\n\t\t\tif l < baseMatchLength {\n\t\t\t\tpanic(\"bml\")\n\t\t\t}\n\t\t}\n\n\t\tdst.AddMatchLong(l, uint32(s-t-baseMatchOffset))\n\t\ts += l\n\t\tnextEmit = s\n\t\tif nextS >= s {\n\t\t\ts = nextS + 1\n\t\t}\n\n\t\tif s >= sLimit {\n\t\t\t// Index first pair after match end.\n\t\t\tif int(s+8) < len(src) {\n\t\t\t\tcv := load6432(src, s)\n\t\t\t\te.table[hash4x64(cv, tableBits)] = tableEntry{offset: s + e.cur}\n\t\t\t\te.bTable[hash7(cv, tableBits)] = tableEntry{offset: s + e.cur}\n\t\t\t}\n\t\t\tgoto emitRemainder\n\t\t}\n\n\t\t// Store every 3rd hash in-between\n\t\tif true {\n\t\t\ti := nextS\n\t\t\tif i < s-1 {\n\t\t\t\tcv := load6432(src, i)\n\t\t\t\tt := tableEntry{offset: i + e.cur}\n\t\t\t\tt2 := tableEntry{offset: t.offset + 1}\n\t\t\t\te.bTable[hash7(cv, tableBits)] = t\n\t\t\t\te.bTable[hash7(cv>>8, tableBits)] = t2\n\t\t\t\te.table[hash4u(uint32(cv>>8), tableBits)] = t2\n\n\t\t\t\ti += 3\n\t\t\t\tfor ; i < s-1; i += 3 {\n\t\t\t\t\tcv := load6432(src, i)\n\t\t\t\t\tt := tableEntry{offset: i + e.cur}\n\t\t\t\t\tt2 := tableEntry{offset: t.offset + 1}\n\t\t\t\t\te.bTable[hash7(cv, tableBits)] = t\n\t\t\t\t\te.bTable[hash7(cv>>8, tableBits)] = t2\n\t\t\t\t\te.table[hash4u(uint32(cv>>8), tableBits)] = t2\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// We could immediately start working at s now, but to improve\n\t\t// compression we first update the hash table at s-1 and at s.\n\t\tx := load6432(src, s-1)\n\t\to := e.cur + s - 1\n\t\tprevHashS := hash4x64(x, tableBits)\n\t\tprevHashL := hash7(x, tableBits)\n\t\te.table[prevHashS] = tableEntry{offset: o}\n\t\te.bTable[prevHashL] = tableEntry{offset: o}\n\t\tcv = x >> 8\n\t}\n\nemitRemainder:\n\tif int(nextEmit) < len(src) {\n\t\t// If nothing was added, don't encode literals.\n\t\tif dst.n == 0 {\n\t\t\treturn\n\t\t}\n\n\t\temitLiteral(dst, src[nextEmit:])\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/level5.go",
    "content": "package flate\n\nimport \"fmt\"\n\ntype fastEncL5 struct {\n\tfastGen\n\ttable  [tableSize]tableEntry\n\tbTable [tableSize]tableEntryPrev\n}\n\nfunc (e *fastEncL5) Encode(dst *tokens, src []byte) {\n\tconst (\n\t\tinputMargin            = 12 - 1\n\t\tminNonLiteralBlockSize = 1 + 1 + inputMargin\n\t)\n\tif debugDeflate && e.cur < 0 {\n\t\tpanic(fmt.Sprint(\"e.cur < 0: \", e.cur))\n\t}\n\n\t// Protect against e.cur wraparound.\n\tfor e.cur >= bufferReset {\n\t\tif len(e.hist) == 0 {\n\t\t\tfor i := range e.table[:] {\n\t\t\t\te.table[i] = tableEntry{}\n\t\t\t}\n\t\t\tfor i := range e.bTable[:] {\n\t\t\t\te.bTable[i] = tableEntryPrev{}\n\t\t\t}\n\t\t\te.cur = maxMatchOffset\n\t\t\tbreak\n\t\t}\n\t\t// Shift down everything in the table that isn't already too far away.\n\t\tminOff := e.cur + int32(len(e.hist)) - maxMatchOffset\n\t\tfor i := range e.table[:] {\n\t\t\tv := e.table[i].offset\n\t\t\tif v <= minOff {\n\t\t\t\tv = 0\n\t\t\t} else {\n\t\t\t\tv = v - e.cur + maxMatchOffset\n\t\t\t}\n\t\t\te.table[i].offset = v\n\t\t}\n\t\tfor i := range e.bTable[:] {\n\t\t\tv := e.bTable[i]\n\t\t\tif v.Cur.offset <= minOff {\n\t\t\t\tv.Cur.offset = 0\n\t\t\t\tv.Prev.offset = 0\n\t\t\t} else {\n\t\t\t\tv.Cur.offset = v.Cur.offset - e.cur + maxMatchOffset\n\t\t\t\tif v.Prev.offset <= minOff {\n\t\t\t\t\tv.Prev.offset = 0\n\t\t\t\t} else {\n\t\t\t\t\tv.Prev.offset = v.Prev.offset - e.cur + maxMatchOffset\n\t\t\t\t}\n\t\t\t}\n\t\t\te.bTable[i] = v\n\t\t}\n\t\te.cur = maxMatchOffset\n\t}\n\n\ts := e.addBlock(src)\n\n\t// This check isn't in the Snappy implementation, but there, the caller\n\t// instead of the callee handles this case.\n\tif len(src) < minNonLiteralBlockSize {\n\t\t// We do not fill the token table.\n\t\t// This will be picked up by caller.\n\t\tdst.n = uint16(len(src))\n\t\treturn\n\t}\n\n\t// Override src\n\tsrc = e.hist\n\tnextEmit := s\n\n\t// sLimit is when to stop looking for offset/length copies. The inputMargin\n\t// lets us use a fast path for emitLiteral in the main loop, while we are\n\t// looking for copies.\n\tsLimit := int32(len(src) - inputMargin)\n\n\t// nextEmit is where in src the next emitLiteral should start from.\n\tcv := load6432(src, s)\n\tfor {\n\t\tconst skipLog = 6\n\t\tconst doEvery = 1\n\n\t\tnextS := s\n\t\tvar l int32\n\t\tvar t int32\n\t\tfor {\n\t\t\tnextHashS := hash4x64(cv, tableBits)\n\t\t\tnextHashL := hash7(cv, tableBits)\n\n\t\t\ts = nextS\n\t\t\tnextS = s + doEvery + (s-nextEmit)>>skipLog\n\t\t\tif nextS > sLimit {\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\t\t\t// Fetch a short+long candidate\n\t\t\tsCandidate := e.table[nextHashS]\n\t\t\tlCandidate := e.bTable[nextHashL]\n\t\t\tnext := load6432(src, nextS)\n\t\t\tentry := tableEntry{offset: s + e.cur}\n\t\t\te.table[nextHashS] = entry\n\t\t\teLong := &e.bTable[nextHashL]\n\t\t\teLong.Cur, eLong.Prev = entry, eLong.Cur\n\n\t\t\tnextHashS = hash4x64(next, tableBits)\n\t\t\tnextHashL = hash7(next, tableBits)\n\n\t\t\tt = lCandidate.Cur.offset - e.cur\n\t\t\tif s-t < maxMatchOffset {\n\t\t\t\tif uint32(cv) == load3232(src, lCandidate.Cur.offset-e.cur) {\n\t\t\t\t\t// Store the next match\n\t\t\t\t\te.table[nextHashS] = tableEntry{offset: nextS + e.cur}\n\t\t\t\t\teLong := &e.bTable[nextHashL]\n\t\t\t\t\teLong.Cur, eLong.Prev = tableEntry{offset: nextS + e.cur}, eLong.Cur\n\n\t\t\t\t\tt2 := lCandidate.Prev.offset - e.cur\n\t\t\t\t\tif s-t2 < maxMatchOffset && uint32(cv) == load3232(src, lCandidate.Prev.offset-e.cur) {\n\t\t\t\t\t\tl = e.matchlen(s+4, t+4, src) + 4\n\t\t\t\t\t\tml1 := e.matchlen(s+4, t2+4, src) + 4\n\t\t\t\t\t\tif ml1 > l {\n\t\t\t\t\t\t\tt = t2\n\t\t\t\t\t\t\tl = ml1\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tt = lCandidate.Prev.offset - e.cur\n\t\t\t\tif s-t < maxMatchOffset && uint32(cv) == load3232(src, lCandidate.Prev.offset-e.cur) {\n\t\t\t\t\t// Store the next match\n\t\t\t\t\te.table[nextHashS] = tableEntry{offset: nextS + e.cur}\n\t\t\t\t\teLong := &e.bTable[nextHashL]\n\t\t\t\t\teLong.Cur, eLong.Prev = tableEntry{offset: nextS + e.cur}, eLong.Cur\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tt = sCandidate.offset - e.cur\n\t\t\tif s-t < maxMatchOffset && uint32(cv) == load3232(src, sCandidate.offset-e.cur) {\n\t\t\t\t// Found a 4 match...\n\t\t\t\tl = e.matchlen(s+4, t+4, src) + 4\n\t\t\t\tlCandidate = e.bTable[nextHashL]\n\t\t\t\t// Store the next match\n\n\t\t\t\te.table[nextHashS] = tableEntry{offset: nextS + e.cur}\n\t\t\t\teLong := &e.bTable[nextHashL]\n\t\t\t\teLong.Cur, eLong.Prev = tableEntry{offset: nextS + e.cur}, eLong.Cur\n\n\t\t\t\t// If the next long is a candidate, use that...\n\t\t\t\tt2 := lCandidate.Cur.offset - e.cur\n\t\t\t\tif nextS-t2 < maxMatchOffset {\n\t\t\t\t\tif load3232(src, lCandidate.Cur.offset-e.cur) == uint32(next) {\n\t\t\t\t\t\tml := e.matchlen(nextS+4, t2+4, src) + 4\n\t\t\t\t\t\tif ml > l {\n\t\t\t\t\t\t\tt = t2\n\t\t\t\t\t\t\ts = nextS\n\t\t\t\t\t\t\tl = ml\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// If the previous long is a candidate, use that...\n\t\t\t\t\tt2 = lCandidate.Prev.offset - e.cur\n\t\t\t\t\tif nextS-t2 < maxMatchOffset && load3232(src, lCandidate.Prev.offset-e.cur) == uint32(next) {\n\t\t\t\t\t\tml := e.matchlen(nextS+4, t2+4, src) + 4\n\t\t\t\t\t\tif ml > l {\n\t\t\t\t\t\t\tt = t2\n\t\t\t\t\t\t\ts = nextS\n\t\t\t\t\t\t\tl = ml\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tcv = next\n\t\t}\n\n\t\t// A 4-byte match has been found. We'll later see if more than 4 bytes\n\t\t// match. But, prior to the match, src[nextEmit:s] are unmatched. Emit\n\t\t// them as literal bytes.\n\n\t\t// Extend the 4-byte match as long as possible.\n\t\tif l == 0 {\n\t\t\tl = e.matchlenLong(s+4, t+4, src) + 4\n\t\t} else if l == maxMatchLength {\n\t\t\tl += e.matchlenLong(s+l, t+l, src)\n\t\t}\n\t\t// Extend backwards\n\t\tfor t > 0 && s > nextEmit && src[t-1] == src[s-1] {\n\t\t\ts--\n\t\t\tt--\n\t\t\tl++\n\t\t}\n\t\tif nextEmit < s {\n\t\t\temitLiteral(dst, src[nextEmit:s])\n\t\t}\n\t\tif debugDeflate {\n\t\t\tif t >= s {\n\t\t\t\tpanic(fmt.Sprintln(\"s-t\", s, t))\n\t\t\t}\n\t\t\tif (s - t) > maxMatchOffset {\n\t\t\t\tpanic(fmt.Sprintln(\"mmo\", s-t))\n\t\t\t}\n\t\t\tif l < baseMatchLength {\n\t\t\t\tpanic(\"bml\")\n\t\t\t}\n\t\t}\n\n\t\tdst.AddMatchLong(l, uint32(s-t-baseMatchOffset))\n\t\ts += l\n\t\tnextEmit = s\n\t\tif nextS >= s {\n\t\t\ts = nextS + 1\n\t\t}\n\n\t\tif s >= sLimit {\n\t\t\tgoto emitRemainder\n\t\t}\n\n\t\t// Store every 3rd hash in-between.\n\t\tif true {\n\t\t\tconst hashEvery = 3\n\t\t\ti := s - l + 1\n\t\t\tif i < s-1 {\n\t\t\t\tcv := load6432(src, i)\n\t\t\t\tt := tableEntry{offset: i + e.cur}\n\t\t\t\te.table[hash4x64(cv, tableBits)] = t\n\t\t\t\teLong := &e.bTable[hash7(cv, tableBits)]\n\t\t\t\teLong.Cur, eLong.Prev = t, eLong.Cur\n\n\t\t\t\t// Do an long at i+1\n\t\t\t\tcv >>= 8\n\t\t\t\tt = tableEntry{offset: t.offset + 1}\n\t\t\t\teLong = &e.bTable[hash7(cv, tableBits)]\n\t\t\t\teLong.Cur, eLong.Prev = t, eLong.Cur\n\n\t\t\t\t// We only have enough bits for a short entry at i+2\n\t\t\t\tcv >>= 8\n\t\t\t\tt = tableEntry{offset: t.offset + 1}\n\t\t\t\te.table[hash4x64(cv, tableBits)] = t\n\n\t\t\t\t// Skip one - otherwise we risk hitting 's'\n\t\t\t\ti += 4\n\t\t\t\tfor ; i < s-1; i += hashEvery {\n\t\t\t\t\tcv := load6432(src, i)\n\t\t\t\t\tt := tableEntry{offset: i + e.cur}\n\t\t\t\t\tt2 := tableEntry{offset: t.offset + 1}\n\t\t\t\t\teLong := &e.bTable[hash7(cv, tableBits)]\n\t\t\t\t\teLong.Cur, eLong.Prev = t, eLong.Cur\n\t\t\t\t\te.table[hash4u(uint32(cv>>8), tableBits)] = t2\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// We could immediately start working at s now, but to improve\n\t\t// compression we first update the hash table at s-1 and at s.\n\t\tx := load6432(src, s-1)\n\t\to := e.cur + s - 1\n\t\tprevHashS := hash4x64(x, tableBits)\n\t\tprevHashL := hash7(x, tableBits)\n\t\te.table[prevHashS] = tableEntry{offset: o}\n\t\teLong := &e.bTable[prevHashL]\n\t\teLong.Cur, eLong.Prev = tableEntry{offset: o}, eLong.Cur\n\t\tcv = x >> 8\n\t}\n\nemitRemainder:\n\tif int(nextEmit) < len(src) {\n\t\t// If nothing was added, don't encode literals.\n\t\tif dst.n == 0 {\n\t\t\treturn\n\t\t}\n\n\t\temitLiteral(dst, src[nextEmit:])\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/level6.go",
    "content": "package flate\n\nimport \"fmt\"\n\ntype fastEncL6 struct {\n\tfastGen\n\ttable  [tableSize]tableEntry\n\tbTable [tableSize]tableEntryPrev\n}\n\nfunc (e *fastEncL6) Encode(dst *tokens, src []byte) {\n\tconst (\n\t\tinputMargin            = 12 - 1\n\t\tminNonLiteralBlockSize = 1 + 1 + inputMargin\n\t)\n\tif debugDeflate && e.cur < 0 {\n\t\tpanic(fmt.Sprint(\"e.cur < 0: \", e.cur))\n\t}\n\n\t// Protect against e.cur wraparound.\n\tfor e.cur >= bufferReset {\n\t\tif len(e.hist) == 0 {\n\t\t\tfor i := range e.table[:] {\n\t\t\t\te.table[i] = tableEntry{}\n\t\t\t}\n\t\t\tfor i := range e.bTable[:] {\n\t\t\t\te.bTable[i] = tableEntryPrev{}\n\t\t\t}\n\t\t\te.cur = maxMatchOffset\n\t\t\tbreak\n\t\t}\n\t\t// Shift down everything in the table that isn't already too far away.\n\t\tminOff := e.cur + int32(len(e.hist)) - maxMatchOffset\n\t\tfor i := range e.table[:] {\n\t\t\tv := e.table[i].offset\n\t\t\tif v <= minOff {\n\t\t\t\tv = 0\n\t\t\t} else {\n\t\t\t\tv = v - e.cur + maxMatchOffset\n\t\t\t}\n\t\t\te.table[i].offset = v\n\t\t}\n\t\tfor i := range e.bTable[:] {\n\t\t\tv := e.bTable[i]\n\t\t\tif v.Cur.offset <= minOff {\n\t\t\t\tv.Cur.offset = 0\n\t\t\t\tv.Prev.offset = 0\n\t\t\t} else {\n\t\t\t\tv.Cur.offset = v.Cur.offset - e.cur + maxMatchOffset\n\t\t\t\tif v.Prev.offset <= minOff {\n\t\t\t\t\tv.Prev.offset = 0\n\t\t\t\t} else {\n\t\t\t\t\tv.Prev.offset = v.Prev.offset - e.cur + maxMatchOffset\n\t\t\t\t}\n\t\t\t}\n\t\t\te.bTable[i] = v\n\t\t}\n\t\te.cur = maxMatchOffset\n\t}\n\n\ts := e.addBlock(src)\n\n\t// This check isn't in the Snappy implementation, but there, the caller\n\t// instead of the callee handles this case.\n\tif len(src) < minNonLiteralBlockSize {\n\t\t// We do not fill the token table.\n\t\t// This will be picked up by caller.\n\t\tdst.n = uint16(len(src))\n\t\treturn\n\t}\n\n\t// Override src\n\tsrc = e.hist\n\tnextEmit := s\n\n\t// sLimit is when to stop looking for offset/length copies. The inputMargin\n\t// lets us use a fast path for emitLiteral in the main loop, while we are\n\t// looking for copies.\n\tsLimit := int32(len(src) - inputMargin)\n\n\t// nextEmit is where in src the next emitLiteral should start from.\n\tcv := load6432(src, s)\n\t// Repeat MUST be > 1 and within range\n\trepeat := int32(1)\n\tfor {\n\t\tconst skipLog = 7\n\t\tconst doEvery = 1\n\n\t\tnextS := s\n\t\tvar l int32\n\t\tvar t int32\n\t\tfor {\n\t\t\tnextHashS := hash4x64(cv, tableBits)\n\t\t\tnextHashL := hash7(cv, tableBits)\n\t\t\ts = nextS\n\t\t\tnextS = s + doEvery + (s-nextEmit)>>skipLog\n\t\t\tif nextS > sLimit {\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\t\t\t// Fetch a short+long candidate\n\t\t\tsCandidate := e.table[nextHashS]\n\t\t\tlCandidate := e.bTable[nextHashL]\n\t\t\tnext := load6432(src, nextS)\n\t\t\tentry := tableEntry{offset: s + e.cur}\n\t\t\te.table[nextHashS] = entry\n\t\t\teLong := &e.bTable[nextHashL]\n\t\t\teLong.Cur, eLong.Prev = entry, eLong.Cur\n\n\t\t\t// Calculate hashes of 'next'\n\t\t\tnextHashS = hash4x64(next, tableBits)\n\t\t\tnextHashL = hash7(next, tableBits)\n\n\t\t\tt = lCandidate.Cur.offset - e.cur\n\t\t\tif s-t < maxMatchOffset {\n\t\t\t\tif uint32(cv) == load3232(src, lCandidate.Cur.offset-e.cur) {\n\t\t\t\t\t// Long candidate matches at least 4 bytes.\n\n\t\t\t\t\t// Store the next match\n\t\t\t\t\te.table[nextHashS] = tableEntry{offset: nextS + e.cur}\n\t\t\t\t\teLong := &e.bTable[nextHashL]\n\t\t\t\t\teLong.Cur, eLong.Prev = tableEntry{offset: nextS + e.cur}, eLong.Cur\n\n\t\t\t\t\t// Check the previous long candidate as well.\n\t\t\t\t\tt2 := lCandidate.Prev.offset - e.cur\n\t\t\t\t\tif s-t2 < maxMatchOffset && uint32(cv) == load3232(src, lCandidate.Prev.offset-e.cur) {\n\t\t\t\t\t\tl = e.matchlen(s+4, t+4, src) + 4\n\t\t\t\t\t\tml1 := e.matchlen(s+4, t2+4, src) + 4\n\t\t\t\t\t\tif ml1 > l {\n\t\t\t\t\t\t\tt = t2\n\t\t\t\t\t\t\tl = ml1\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\t// Current value did not match, but check if previous long value does.\n\t\t\t\tt = lCandidate.Prev.offset - e.cur\n\t\t\t\tif s-t < maxMatchOffset && uint32(cv) == load3232(src, lCandidate.Prev.offset-e.cur) {\n\t\t\t\t\t// Store the next match\n\t\t\t\t\te.table[nextHashS] = tableEntry{offset: nextS + e.cur}\n\t\t\t\t\teLong := &e.bTable[nextHashL]\n\t\t\t\t\teLong.Cur, eLong.Prev = tableEntry{offset: nextS + e.cur}, eLong.Cur\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tt = sCandidate.offset - e.cur\n\t\t\tif s-t < maxMatchOffset && uint32(cv) == load3232(src, sCandidate.offset-e.cur) {\n\t\t\t\t// Found a 4 match...\n\t\t\t\tl = e.matchlen(s+4, t+4, src) + 4\n\n\t\t\t\t// Look up next long candidate (at nextS)\n\t\t\t\tlCandidate = e.bTable[nextHashL]\n\n\t\t\t\t// Store the next match\n\t\t\t\te.table[nextHashS] = tableEntry{offset: nextS + e.cur}\n\t\t\t\teLong := &e.bTable[nextHashL]\n\t\t\t\teLong.Cur, eLong.Prev = tableEntry{offset: nextS + e.cur}, eLong.Cur\n\n\t\t\t\t// Check repeat at s + repOff\n\t\t\t\tconst repOff = 1\n\t\t\t\tt2 := s - repeat + repOff\n\t\t\t\tif load3232(src, t2) == uint32(cv>>(8*repOff)) {\n\t\t\t\t\tml := e.matchlen(s+4+repOff, t2+4, src) + 4\n\t\t\t\t\tif ml > l {\n\t\t\t\t\t\tt = t2\n\t\t\t\t\t\tl = ml\n\t\t\t\t\t\ts += repOff\n\t\t\t\t\t\t// Not worth checking more.\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If the next long is a candidate, use that...\n\t\t\t\tt2 = lCandidate.Cur.offset - e.cur\n\t\t\t\tif nextS-t2 < maxMatchOffset {\n\t\t\t\t\tif load3232(src, lCandidate.Cur.offset-e.cur) == uint32(next) {\n\t\t\t\t\t\tml := e.matchlen(nextS+4, t2+4, src) + 4\n\t\t\t\t\t\tif ml > l {\n\t\t\t\t\t\t\tt = t2\n\t\t\t\t\t\t\ts = nextS\n\t\t\t\t\t\t\tl = ml\n\t\t\t\t\t\t\t// This is ok, but check previous as well.\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// If the previous long is a candidate, use that...\n\t\t\t\t\tt2 = lCandidate.Prev.offset - e.cur\n\t\t\t\t\tif nextS-t2 < maxMatchOffset && load3232(src, lCandidate.Prev.offset-e.cur) == uint32(next) {\n\t\t\t\t\t\tml := e.matchlen(nextS+4, t2+4, src) + 4\n\t\t\t\t\t\tif ml > l {\n\t\t\t\t\t\t\tt = t2\n\t\t\t\t\t\t\ts = nextS\n\t\t\t\t\t\t\tl = ml\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tcv = next\n\t\t}\n\n\t\t// A 4-byte match has been found. We'll later see if more than 4 bytes\n\t\t// match. But, prior to the match, src[nextEmit:s] are unmatched. Emit\n\t\t// them as literal bytes.\n\n\t\t// Extend the 4-byte match as long as possible.\n\t\tif l == 0 {\n\t\t\tl = e.matchlenLong(s+4, t+4, src) + 4\n\t\t} else if l == maxMatchLength {\n\t\t\tl += e.matchlenLong(s+l, t+l, src)\n\t\t}\n\n\t\t// Extend backwards\n\t\tfor t > 0 && s > nextEmit && src[t-1] == src[s-1] {\n\t\t\ts--\n\t\t\tt--\n\t\t\tl++\n\t\t}\n\t\tif nextEmit < s {\n\t\t\temitLiteral(dst, src[nextEmit:s])\n\t\t}\n\t\tif false {\n\t\t\tif t >= s {\n\t\t\t\tpanic(fmt.Sprintln(\"s-t\", s, t))\n\t\t\t}\n\t\t\tif (s - t) > maxMatchOffset {\n\t\t\t\tpanic(fmt.Sprintln(\"mmo\", s-t))\n\t\t\t}\n\t\t\tif l < baseMatchLength {\n\t\t\t\tpanic(\"bml\")\n\t\t\t}\n\t\t}\n\n\t\tdst.AddMatchLong(l, uint32(s-t-baseMatchOffset))\n\t\trepeat = s - t\n\t\ts += l\n\t\tnextEmit = s\n\t\tif nextS >= s {\n\t\t\ts = nextS + 1\n\t\t}\n\n\t\tif s >= sLimit {\n\t\t\t// Index after match end.\n\t\t\tfor i := nextS + 1; i < int32(len(src))-8; i += 2 {\n\t\t\t\tcv := load6432(src, i)\n\t\t\t\te.table[hash4x64(cv, tableBits)] = tableEntry{offset: i + e.cur}\n\t\t\t\teLong := &e.bTable[hash7(cv, tableBits)]\n\t\t\t\teLong.Cur, eLong.Prev = tableEntry{offset: i + e.cur}, eLong.Cur\n\t\t\t}\n\t\t\tgoto emitRemainder\n\t\t}\n\n\t\t// Store every long hash in-between and every second short.\n\t\tif true {\n\t\t\tfor i := nextS + 1; i < s-1; i += 2 {\n\t\t\t\tcv := load6432(src, i)\n\t\t\t\tt := tableEntry{offset: i + e.cur}\n\t\t\t\tt2 := tableEntry{offset: t.offset + 1}\n\t\t\t\teLong := &e.bTable[hash7(cv, tableBits)]\n\t\t\t\teLong2 := &e.bTable[hash7(cv>>8, tableBits)]\n\t\t\t\te.table[hash4x64(cv, tableBits)] = t\n\t\t\t\teLong.Cur, eLong.Prev = t, eLong.Cur\n\t\t\t\teLong2.Cur, eLong2.Prev = t2, eLong2.Cur\n\t\t\t}\n\t\t}\n\n\t\t// We could immediately start working at s now, but to improve\n\t\t// compression we first update the hash table at s-1 and at s.\n\t\tcv = load6432(src, s)\n\t}\n\nemitRemainder:\n\tif int(nextEmit) < len(src) {\n\t\t// If nothing was added, don't encode literals.\n\t\tif dst.n == 0 {\n\t\t\treturn\n\t\t}\n\n\t\temitLiteral(dst, src[nextEmit:])\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/regmask_amd64.go",
    "content": "package flate\n\nconst (\n\t// Masks for shifts with register sizes of the shift value.\n\t// This can be used to work around the x86 design of shifting by mod register size.\n\t// It can be used when a variable shift is always smaller than the register size.\n\n\t// reg8SizeMaskX - shift value is 8 bits, shifted is X\n\treg8SizeMask8  = 7\n\treg8SizeMask16 = 15\n\treg8SizeMask32 = 31\n\treg8SizeMask64 = 63\n\n\t// reg16SizeMaskX - shift value is 16 bits, shifted is X\n\treg16SizeMask8  = reg8SizeMask8\n\treg16SizeMask16 = reg8SizeMask16\n\treg16SizeMask32 = reg8SizeMask32\n\treg16SizeMask64 = reg8SizeMask64\n\n\t// reg32SizeMaskX - shift value is 32 bits, shifted is X\n\treg32SizeMask8  = reg8SizeMask8\n\treg32SizeMask16 = reg8SizeMask16\n\treg32SizeMask32 = reg8SizeMask32\n\treg32SizeMask64 = reg8SizeMask64\n\n\t// reg64SizeMaskX - shift value is 64 bits, shifted is X\n\treg64SizeMask8  = reg8SizeMask8\n\treg64SizeMask16 = reg8SizeMask16\n\treg64SizeMask32 = reg8SizeMask32\n\treg64SizeMask64 = reg8SizeMask64\n\n\t// regSizeMaskUintX - shift value is uint, shifted is X\n\tregSizeMaskUint8  = reg8SizeMask8\n\tregSizeMaskUint16 = reg8SizeMask16\n\tregSizeMaskUint32 = reg8SizeMask32\n\tregSizeMaskUint64 = reg8SizeMask64\n)\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/regmask_other.go",
    "content": "//+build !amd64\n\npackage flate\n\nconst (\n\t// Masks for shifts with register sizes of the shift value.\n\t// This can be used to work around the x86 design of shifting by mod register size.\n\t// It can be used when a variable shift is always smaller than the register size.\n\n\t// reg8SizeMaskX - shift value is 8 bits, shifted is X\n\treg8SizeMask8  = 0xff\n\treg8SizeMask16 = 0xff\n\treg8SizeMask32 = 0xff\n\treg8SizeMask64 = 0xff\n\n\t// reg16SizeMaskX - shift value is 16 bits, shifted is X\n\treg16SizeMask8  = 0xffff\n\treg16SizeMask16 = 0xffff\n\treg16SizeMask32 = 0xffff\n\treg16SizeMask64 = 0xffff\n\n\t// reg32SizeMaskX - shift value is 32 bits, shifted is X\n\treg32SizeMask8  = 0xffffffff\n\treg32SizeMask16 = 0xffffffff\n\treg32SizeMask32 = 0xffffffff\n\treg32SizeMask64 = 0xffffffff\n\n\t// reg64SizeMaskX - shift value is 64 bits, shifted is X\n\treg64SizeMask8  = 0xffffffffffffffff\n\treg64SizeMask16 = 0xffffffffffffffff\n\treg64SizeMask32 = 0xffffffffffffffff\n\treg64SizeMask64 = 0xffffffffffffffff\n\n\t// regSizeMaskUintX - shift value is uint, shifted is X\n\tregSizeMaskUint8  = ^uint(0)\n\tregSizeMaskUint16 = ^uint(0)\n\tregSizeMaskUint32 = ^uint(0)\n\tregSizeMaskUint64 = ^uint(0)\n)\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/stateless.go",
    "content": "package flate\n\nimport (\n\t\"io\"\n\t\"math\"\n\t\"sync\"\n)\n\nconst (\n\tmaxStatelessBlock = math.MaxInt16\n\t// dictionary will be taken from maxStatelessBlock, so limit it.\n\tmaxStatelessDict = 8 << 10\n\n\tslTableBits  = 13\n\tslTableSize  = 1 << slTableBits\n\tslTableShift = 32 - slTableBits\n)\n\ntype statelessWriter struct {\n\tdst    io.Writer\n\tclosed bool\n}\n\nfunc (s *statelessWriter) Close() error {\n\tif s.closed {\n\t\treturn nil\n\t}\n\ts.closed = true\n\t// Emit EOF block\n\treturn StatelessDeflate(s.dst, nil, true, nil)\n}\n\nfunc (s *statelessWriter) Write(p []byte) (n int, err error) {\n\terr = StatelessDeflate(s.dst, p, false, nil)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn len(p), nil\n}\n\nfunc (s *statelessWriter) Reset(w io.Writer) {\n\ts.dst = w\n\ts.closed = false\n}\n\n// NewStatelessWriter will do compression but without maintaining any state\n// between Write calls.\n// There will be no memory kept between Write calls,\n// but compression and speed will be suboptimal.\n// Because of this, the size of actual Write calls will affect output size.\nfunc NewStatelessWriter(dst io.Writer) io.WriteCloser {\n\treturn &statelessWriter{dst: dst}\n}\n\n// bitWriterPool contains bit writers that can be reused.\nvar bitWriterPool = sync.Pool{\n\tNew: func() interface{} {\n\t\treturn newHuffmanBitWriter(nil)\n\t},\n}\n\n// StatelessDeflate allows to compress directly to a Writer without retaining state.\n// When returning everything will be flushed.\n// Up to 8KB of an optional dictionary can be given which is presumed to presumed to precede the block.\n// Longer dictionaries will be truncated and will still produce valid output.\n// Sending nil dictionary is perfectly fine.\nfunc StatelessDeflate(out io.Writer, in []byte, eof bool, dict []byte) error {\n\tvar dst tokens\n\tbw := bitWriterPool.Get().(*huffmanBitWriter)\n\tbw.reset(out)\n\tdefer func() {\n\t\t// don't keep a reference to our output\n\t\tbw.reset(nil)\n\t\tbitWriterPool.Put(bw)\n\t}()\n\tif eof && len(in) == 0 {\n\t\t// Just write an EOF block.\n\t\t// Could be faster...\n\t\tbw.writeStoredHeader(0, true)\n\t\tbw.flush()\n\t\treturn bw.err\n\t}\n\n\t// Truncate dict\n\tif len(dict) > maxStatelessDict {\n\t\tdict = dict[len(dict)-maxStatelessDict:]\n\t}\n\n\tfor len(in) > 0 {\n\t\ttodo := in\n\t\tif len(todo) > maxStatelessBlock-len(dict) {\n\t\t\ttodo = todo[:maxStatelessBlock-len(dict)]\n\t\t}\n\t\tin = in[len(todo):]\n\t\tuncompressed := todo\n\t\tif len(dict) > 0 {\n\t\t\t// combine dict and source\n\t\t\tbufLen := len(todo) + len(dict)\n\t\t\tcombined := make([]byte, bufLen)\n\t\t\tcopy(combined, dict)\n\t\t\tcopy(combined[len(dict):], todo)\n\t\t\ttodo = combined\n\t\t}\n\t\t// Compress\n\t\tstatelessEnc(&dst, todo, int16(len(dict)))\n\t\tisEof := eof && len(in) == 0\n\n\t\tif dst.n == 0 {\n\t\t\tbw.writeStoredHeader(len(uncompressed), isEof)\n\t\t\tif bw.err != nil {\n\t\t\t\treturn bw.err\n\t\t\t}\n\t\t\tbw.writeBytes(uncompressed)\n\t\t} else if int(dst.n) > len(uncompressed)-len(uncompressed)>>4 {\n\t\t\t// If we removed less than 1/16th, huffman compress the block.\n\t\t\tbw.writeBlockHuff(isEof, uncompressed, len(in) == 0)\n\t\t} else {\n\t\t\tbw.writeBlockDynamic(&dst, isEof, uncompressed, len(in) == 0)\n\t\t}\n\t\tif len(in) > 0 {\n\t\t\t// Retain a dict if we have more\n\t\t\tdict = todo[len(todo)-maxStatelessDict:]\n\t\t\tdst.Reset()\n\t\t}\n\t\tif bw.err != nil {\n\t\t\treturn bw.err\n\t\t}\n\t}\n\tif !eof {\n\t\t// Align, only a stored block can do that.\n\t\tbw.writeStoredHeader(0, false)\n\t}\n\tbw.flush()\n\treturn bw.err\n}\n\nfunc hashSL(u uint32) uint32 {\n\treturn (u * 0x1e35a7bd) >> slTableShift\n}\n\nfunc load3216(b []byte, i int16) uint32 {\n\t// Help the compiler eliminate bounds checks on the read so it can be done in a single read.\n\tb = b[i:]\n\tb = b[:4]\n\treturn uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24\n}\n\nfunc load6416(b []byte, i int16) uint64 {\n\t// Help the compiler eliminate bounds checks on the read so it can be done in a single read.\n\tb = b[i:]\n\tb = b[:8]\n\treturn uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |\n\t\tuint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56\n}\n\nfunc statelessEnc(dst *tokens, src []byte, startAt int16) {\n\tconst (\n\t\tinputMargin            = 12 - 1\n\t\tminNonLiteralBlockSize = 1 + 1 + inputMargin\n\t)\n\n\ttype tableEntry struct {\n\t\toffset int16\n\t}\n\n\tvar table [slTableSize]tableEntry\n\n\t// This check isn't in the Snappy implementation, but there, the caller\n\t// instead of the callee handles this case.\n\tif len(src)-int(startAt) < minNonLiteralBlockSize {\n\t\t// We do not fill the token table.\n\t\t// This will be picked up by caller.\n\t\tdst.n = 0\n\t\treturn\n\t}\n\t// Index until startAt\n\tif startAt > 0 {\n\t\tcv := load3232(src, 0)\n\t\tfor i := int16(0); i < startAt; i++ {\n\t\t\ttable[hashSL(cv)] = tableEntry{offset: i}\n\t\t\tcv = (cv >> 8) | (uint32(src[i+4]) << 24)\n\t\t}\n\t}\n\n\ts := startAt + 1\n\tnextEmit := startAt\n\t// sLimit is when to stop looking for offset/length copies. The inputMargin\n\t// lets us use a fast path for emitLiteral in the main loop, while we are\n\t// looking for copies.\n\tsLimit := int16(len(src) - inputMargin)\n\n\t// nextEmit is where in src the next emitLiteral should start from.\n\tcv := load3216(src, s)\n\n\tfor {\n\t\tconst skipLog = 5\n\t\tconst doEvery = 2\n\n\t\tnextS := s\n\t\tvar candidate tableEntry\n\t\tfor {\n\t\t\tnextHash := hashSL(cv)\n\t\t\tcandidate = table[nextHash]\n\t\t\tnextS = s + doEvery + (s-nextEmit)>>skipLog\n\t\t\tif nextS > sLimit || nextS <= 0 {\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\n\t\t\tnow := load6416(src, nextS)\n\t\t\ttable[nextHash] = tableEntry{offset: s}\n\t\t\tnextHash = hashSL(uint32(now))\n\n\t\t\tif cv == load3216(src, candidate.offset) {\n\t\t\t\ttable[nextHash] = tableEntry{offset: nextS}\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// Do one right away...\n\t\t\tcv = uint32(now)\n\t\t\ts = nextS\n\t\t\tnextS++\n\t\t\tcandidate = table[nextHash]\n\t\t\tnow >>= 8\n\t\t\ttable[nextHash] = tableEntry{offset: s}\n\n\t\t\tif cv == load3216(src, candidate.offset) {\n\t\t\t\ttable[nextHash] = tableEntry{offset: nextS}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tcv = uint32(now)\n\t\t\ts = nextS\n\t\t}\n\n\t\t// A 4-byte match has been found. We'll later see if more than 4 bytes\n\t\t// match. But, prior to the match, src[nextEmit:s] are unmatched. Emit\n\t\t// them as literal bytes.\n\t\tfor {\n\t\t\t// Invariant: we have a 4-byte match at s, and no need to emit any\n\t\t\t// literal bytes prior to s.\n\n\t\t\t// Extend the 4-byte match as long as possible.\n\t\t\tt := candidate.offset\n\t\t\tl := int16(matchLen(src[s+4:], src[t+4:]) + 4)\n\n\t\t\t// Extend backwards\n\t\t\tfor t > 0 && s > nextEmit && src[t-1] == src[s-1] {\n\t\t\t\ts--\n\t\t\t\tt--\n\t\t\t\tl++\n\t\t\t}\n\t\t\tif nextEmit < s {\n\t\t\t\temitLiteral(dst, src[nextEmit:s])\n\t\t\t}\n\n\t\t\t// Save the match found\n\t\t\tdst.AddMatchLong(int32(l), uint32(s-t-baseMatchOffset))\n\t\t\ts += l\n\t\t\tnextEmit = s\n\t\t\tif nextS >= s {\n\t\t\t\ts = nextS + 1\n\t\t\t}\n\t\t\tif s >= sLimit {\n\t\t\t\tgoto emitRemainder\n\t\t\t}\n\n\t\t\t// We could immediately start working at s now, but to improve\n\t\t\t// compression we first update the hash table at s-2 and at s. If\n\t\t\t// another emitCopy is not our next move, also calculate nextHash\n\t\t\t// at s+1. At least on GOARCH=amd64, these three hash calculations\n\t\t\t// are faster as one load64 call (with some shifts) instead of\n\t\t\t// three load32 calls.\n\t\t\tx := load6416(src, s-2)\n\t\t\to := s - 2\n\t\t\tprevHash := hashSL(uint32(x))\n\t\t\ttable[prevHash] = tableEntry{offset: o}\n\t\t\tx >>= 16\n\t\t\tcurrHash := hashSL(uint32(x))\n\t\t\tcandidate = table[currHash]\n\t\t\ttable[currHash] = tableEntry{offset: o + 2}\n\n\t\t\tif uint32(x) != load3216(src, candidate.offset) {\n\t\t\t\tcv = uint32(x >> 8)\n\t\t\t\ts++\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\nemitRemainder:\n\tif int(nextEmit) < len(src) {\n\t\t// If nothing was added, don't encode literals.\n\t\tif dst.n == 0 {\n\t\t\treturn\n\t\t}\n\t\temitLiteral(dst, src[nextEmit:])\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/flate/token.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage flate\n\nimport (\n\t\"bytes\"\n\t\"encoding/binary\"\n\t\"fmt\"\n\t\"io\"\n\t\"math\"\n)\n\nconst (\n\t// 2 bits:   type   0 = literal  1=EOF  2=Match   3=Unused\n\t// 8 bits:   xlength = length - MIN_MATCH_LENGTH\n\t// 22 bits   xoffset = offset - MIN_OFFSET_SIZE, or literal\n\tlengthShift = 22\n\toffsetMask  = 1<<lengthShift - 1\n\ttypeMask    = 3 << 30\n\tliteralType = 0 << 30\n\tmatchType   = 1 << 30\n)\n\n// The length code for length X (MIN_MATCH_LENGTH <= X <= MAX_MATCH_LENGTH)\n// is lengthCodes[length - MIN_MATCH_LENGTH]\nvar lengthCodes = [256]uint8{\n\t0, 1, 2, 3, 4, 5, 6, 7, 8, 8,\n\t9, 9, 10, 10, 11, 11, 12, 12, 12, 12,\n\t13, 13, 13, 13, 14, 14, 14, 14, 15, 15,\n\t15, 15, 16, 16, 16, 16, 16, 16, 16, 16,\n\t17, 17, 17, 17, 17, 17, 17, 17, 18, 18,\n\t18, 18, 18, 18, 18, 18, 19, 19, 19, 19,\n\t19, 19, 19, 19, 20, 20, 20, 20, 20, 20,\n\t20, 20, 20, 20, 20, 20, 20, 20, 20, 20,\n\t21, 21, 21, 21, 21, 21, 21, 21, 21, 21,\n\t21, 21, 21, 21, 21, 21, 22, 22, 22, 22,\n\t22, 22, 22, 22, 22, 22, 22, 22, 22, 22,\n\t22, 22, 23, 23, 23, 23, 23, 23, 23, 23,\n\t23, 23, 23, 23, 23, 23, 23, 23, 24, 24,\n\t24, 24, 24, 24, 24, 24, 24, 24, 24, 24,\n\t24, 24, 24, 24, 24, 24, 24, 24, 24, 24,\n\t24, 24, 24, 24, 24, 24, 24, 24, 24, 24,\n\t25, 25, 25, 25, 25, 25, 25, 25, 25, 25,\n\t25, 25, 25, 25, 25, 25, 25, 25, 25, 25,\n\t25, 25, 25, 25, 25, 25, 25, 25, 25, 25,\n\t25, 25, 26, 26, 26, 26, 26, 26, 26, 26,\n\t26, 26, 26, 26, 26, 26, 26, 26, 26, 26,\n\t26, 26, 26, 26, 26, 26, 26, 26, 26, 26,\n\t26, 26, 26, 26, 27, 27, 27, 27, 27, 27,\n\t27, 27, 27, 27, 27, 27, 27, 27, 27, 27,\n\t27, 27, 27, 27, 27, 27, 27, 27, 27, 27,\n\t27, 27, 27, 27, 27, 28,\n}\n\n// lengthCodes1 is length codes, but starting at 1.\nvar lengthCodes1 = [256]uint8{\n\t1, 2, 3, 4, 5, 6, 7, 8, 9, 9,\n\t10, 10, 11, 11, 12, 12, 13, 13, 13, 13,\n\t14, 14, 14, 14, 15, 15, 15, 15, 16, 16,\n\t16, 16, 17, 17, 17, 17, 17, 17, 17, 17,\n\t18, 18, 18, 18, 18, 18, 18, 18, 19, 19,\n\t19, 19, 19, 19, 19, 19, 20, 20, 20, 20,\n\t20, 20, 20, 20, 21, 21, 21, 21, 21, 21,\n\t21, 21, 21, 21, 21, 21, 21, 21, 21, 21,\n\t22, 22, 22, 22, 22, 22, 22, 22, 22, 22,\n\t22, 22, 22, 22, 22, 22, 23, 23, 23, 23,\n\t23, 23, 23, 23, 23, 23, 23, 23, 23, 23,\n\t23, 23, 24, 24, 24, 24, 24, 24, 24, 24,\n\t24, 24, 24, 24, 24, 24, 24, 24, 25, 25,\n\t25, 25, 25, 25, 25, 25, 25, 25, 25, 25,\n\t25, 25, 25, 25, 25, 25, 25, 25, 25, 25,\n\t25, 25, 25, 25, 25, 25, 25, 25, 25, 25,\n\t26, 26, 26, 26, 26, 26, 26, 26, 26, 26,\n\t26, 26, 26, 26, 26, 26, 26, 26, 26, 26,\n\t26, 26, 26, 26, 26, 26, 26, 26, 26, 26,\n\t26, 26, 27, 27, 27, 27, 27, 27, 27, 27,\n\t27, 27, 27, 27, 27, 27, 27, 27, 27, 27,\n\t27, 27, 27, 27, 27, 27, 27, 27, 27, 27,\n\t27, 27, 27, 27, 28, 28, 28, 28, 28, 28,\n\t28, 28, 28, 28, 28, 28, 28, 28, 28, 28,\n\t28, 28, 28, 28, 28, 28, 28, 28, 28, 28,\n\t28, 28, 28, 28, 28, 29,\n}\n\nvar offsetCodes = [256]uint32{\n\t0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7,\n\t8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9,\n\t10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,\n\t11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11,\n\t12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,\n\t12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,\n\t13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,\n\t13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,\n\t14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,\n\t14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,\n\t14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,\n\t14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,\n\t15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,\n\t15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,\n\t15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,\n\t15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15,\n}\n\n// offsetCodes14 are offsetCodes, but with 14 added.\nvar offsetCodes14 = [256]uint32{\n\t14, 15, 16, 17, 18, 18, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21,\n\t22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23,\n\t24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,\n\t25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,\n\t26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26,\n\t26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26,\n\t27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,\n\t27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,\n\t28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,\n\t28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,\n\t28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,\n\t28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28,\n\t29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,\n\t29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,\n\t29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,\n\t29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,\n}\n\ntype token uint32\n\ntype tokens struct {\n\tnLits     int\n\textraHist [32]uint16  // codes 256->maxnumlit\n\toffHist   [32]uint16  // offset codes\n\tlitHist   [256]uint16 // codes 0->255\n\tn         uint16      // Must be able to contain maxStoreBlockSize\n\ttokens    [maxStoreBlockSize + 1]token\n}\n\nfunc (t *tokens) Reset() {\n\tif t.n == 0 {\n\t\treturn\n\t}\n\tt.n = 0\n\tt.nLits = 0\n\tfor i := range t.litHist[:] {\n\t\tt.litHist[i] = 0\n\t}\n\tfor i := range t.extraHist[:] {\n\t\tt.extraHist[i] = 0\n\t}\n\tfor i := range t.offHist[:] {\n\t\tt.offHist[i] = 0\n\t}\n}\n\nfunc (t *tokens) Fill() {\n\tif t.n == 0 {\n\t\treturn\n\t}\n\tfor i, v := range t.litHist[:] {\n\t\tif v == 0 {\n\t\t\tt.litHist[i] = 1\n\t\t\tt.nLits++\n\t\t}\n\t}\n\tfor i, v := range t.extraHist[:literalCount-256] {\n\t\tif v == 0 {\n\t\t\tt.nLits++\n\t\t\tt.extraHist[i] = 1\n\t\t}\n\t}\n\tfor i, v := range t.offHist[:offsetCodeCount] {\n\t\tif v == 0 {\n\t\t\tt.offHist[i] = 1\n\t\t}\n\t}\n}\n\nfunc indexTokens(in []token) tokens {\n\tvar t tokens\n\tt.indexTokens(in)\n\treturn t\n}\n\nfunc (t *tokens) indexTokens(in []token) {\n\tt.Reset()\n\tfor _, tok := range in {\n\t\tif tok < matchType {\n\t\t\tt.AddLiteral(tok.literal())\n\t\t\tcontinue\n\t\t}\n\t\tt.AddMatch(uint32(tok.length()), tok.offset())\n\t}\n}\n\n// emitLiteral writes a literal chunk and returns the number of bytes written.\nfunc emitLiteral(dst *tokens, lit []byte) {\n\tol := int(dst.n)\n\tfor i, v := range lit {\n\t\tdst.tokens[(i+ol)&maxStoreBlockSize] = token(v)\n\t\tdst.litHist[v]++\n\t}\n\tdst.n += uint16(len(lit))\n\tdst.nLits += len(lit)\n}\n\nfunc (t *tokens) AddLiteral(lit byte) {\n\tt.tokens[t.n] = token(lit)\n\tt.litHist[lit]++\n\tt.n++\n\tt.nLits++\n}\n\n// from https://stackoverflow.com/a/28730362\nfunc mFastLog2(val float32) float32 {\n\tux := int32(math.Float32bits(val))\n\tlog2 := (float32)(((ux >> 23) & 255) - 128)\n\tux &= -0x7f800001\n\tux += 127 << 23\n\tuval := math.Float32frombits(uint32(ux))\n\tlog2 += ((-0.34484843)*uval+2.02466578)*uval - 0.67487759\n\treturn log2\n}\n\n// EstimatedBits will return an minimum size estimated by an *optimal*\n// compression of the block.\n// The size of the block\nfunc (t *tokens) EstimatedBits() int {\n\tshannon := float32(0)\n\tbits := int(0)\n\tnMatches := 0\n\tif t.nLits > 0 {\n\t\tinvTotal := 1.0 / float32(t.nLits)\n\t\tfor _, v := range t.litHist[:] {\n\t\t\tif v > 0 {\n\t\t\t\tn := float32(v)\n\t\t\t\tshannon += -mFastLog2(n*invTotal) * n\n\t\t\t}\n\t\t}\n\t\t// Just add 15 for EOB\n\t\tshannon += 15\n\t\tfor i, v := range t.extraHist[1 : literalCount-256] {\n\t\t\tif v > 0 {\n\t\t\t\tn := float32(v)\n\t\t\t\tshannon += -mFastLog2(n*invTotal) * n\n\t\t\t\tbits += int(lengthExtraBits[i&31]) * int(v)\n\t\t\t\tnMatches += int(v)\n\t\t\t}\n\t\t}\n\t}\n\tif nMatches > 0 {\n\t\tinvTotal := 1.0 / float32(nMatches)\n\t\tfor i, v := range t.offHist[:offsetCodeCount] {\n\t\t\tif v > 0 {\n\t\t\t\tn := float32(v)\n\t\t\t\tshannon += -mFastLog2(n*invTotal) * n\n\t\t\t\tbits += int(offsetExtraBits[i&31]) * int(v)\n\t\t\t}\n\t\t}\n\t}\n\treturn int(shannon) + bits\n}\n\n// AddMatch adds a match to the tokens.\n// This function is very sensitive to inlining and right on the border.\nfunc (t *tokens) AddMatch(xlength uint32, xoffset uint32) {\n\tif debugDeflate {\n\t\tif xlength >= maxMatchLength+baseMatchLength {\n\t\t\tpanic(fmt.Errorf(\"invalid length: %v\", xlength))\n\t\t}\n\t\tif xoffset >= maxMatchOffset+baseMatchOffset {\n\t\t\tpanic(fmt.Errorf(\"invalid offset: %v\", xoffset))\n\t\t}\n\t}\n\tt.nLits++\n\tlengthCode := lengthCodes1[uint8(xlength)] & 31\n\tt.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)\n\tt.extraHist[lengthCode]++\n\tt.offHist[offsetCode(xoffset)&31]++\n\tt.n++\n}\n\n// AddMatchLong adds a match to the tokens, potentially longer than max match length.\n// Length should NOT have the base subtracted, only offset should.\nfunc (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {\n\tif debugDeflate {\n\t\tif xoffset >= maxMatchOffset+baseMatchOffset {\n\t\t\tpanic(fmt.Errorf(\"invalid offset: %v\", xoffset))\n\t\t}\n\t}\n\toc := offsetCode(xoffset) & 31\n\tfor xlength > 0 {\n\t\txl := xlength\n\t\tif xl > 258 {\n\t\t\t// We need to have at least baseMatchLength left over for next loop.\n\t\t\txl = 258 - baseMatchLength\n\t\t}\n\t\txlength -= xl\n\t\txl -= 3\n\t\tt.nLits++\n\t\tlengthCode := lengthCodes1[uint8(xl)] & 31\n\t\tt.tokens[t.n] = token(matchType | uint32(xl)<<lengthShift | xoffset)\n\t\tt.extraHist[lengthCode]++\n\t\tt.offHist[oc]++\n\t\tt.n++\n\t}\n}\n\nfunc (t *tokens) AddEOB() {\n\tt.tokens[t.n] = token(endBlockMarker)\n\tt.extraHist[0]++\n\tt.n++\n}\n\nfunc (t *tokens) Slice() []token {\n\treturn t.tokens[:t.n]\n}\n\n// VarInt returns the tokens as varint encoded bytes.\nfunc (t *tokens) VarInt() []byte {\n\tvar b = make([]byte, binary.MaxVarintLen32*int(t.n))\n\tvar off int\n\tfor _, v := range t.tokens[:t.n] {\n\t\toff += binary.PutUvarint(b[off:], uint64(v))\n\t}\n\treturn b[:off]\n}\n\n// FromVarInt restores t to the varint encoded tokens provided.\n// Any data in t is removed.\nfunc (t *tokens) FromVarInt(b []byte) error {\n\tvar buf = bytes.NewReader(b)\n\tvar toks []token\n\tfor {\n\t\tr, err := binary.ReadUvarint(buf)\n\t\tif err == io.EOF {\n\t\t\tbreak\n\t\t}\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\ttoks = append(toks, token(r))\n\t}\n\tt.indexTokens(toks)\n\treturn nil\n}\n\n// Returns the type of a token\nfunc (t token) typ() uint32 { return uint32(t) & typeMask }\n\n// Returns the literal of a literal token\nfunc (t token) literal() uint8 { return uint8(t) }\n\n// Returns the extra offset of a match token\nfunc (t token) offset() uint32 { return uint32(t) & offsetMask }\n\nfunc (t token) length() uint8 { return uint8(t >> lengthShift) }\n\n// The code is never more than 8 bits, but is returned as uint32 for convenience.\nfunc lengthCode(len uint8) uint32 { return uint32(lengthCodes[len]) }\n\n// Returns the offset code corresponding to a specific offset\nfunc offsetCode(off uint32) uint32 {\n\tif false {\n\t\tif off < uint32(len(offsetCodes)) {\n\t\t\treturn offsetCodes[off&255]\n\t\t} else if off>>7 < uint32(len(offsetCodes)) {\n\t\t\treturn offsetCodes[(off>>7)&255] + 14\n\t\t} else {\n\t\t\treturn offsetCodes[(off>>14)&255] + 28\n\t\t}\n\t}\n\tif off < uint32(len(offsetCodes)) {\n\t\treturn offsetCodes[uint8(off)]\n\t}\n\treturn offsetCodes14[uint8(off>>7)]\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/gzip/gunzip.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package gzip implements reading and writing of gzip format compressed files,\n// as specified in RFC 1952.\npackage gzip\n\nimport (\n\t\"bufio\"\n\t\"encoding/binary\"\n\t\"errors\"\n\t\"hash/crc32\"\n\t\"io\"\n\t\"time\"\n\n\t\"github.com/klauspost/compress/flate\"\n)\n\nconst (\n\tgzipID1     = 0x1f\n\tgzipID2     = 0x8b\n\tgzipDeflate = 8\n\tflagText    = 1 << 0\n\tflagHdrCrc  = 1 << 1\n\tflagExtra   = 1 << 2\n\tflagName    = 1 << 3\n\tflagComment = 1 << 4\n)\n\nvar (\n\t// ErrChecksum is returned when reading GZIP data that has an invalid checksum.\n\tErrChecksum = errors.New(\"gzip: invalid checksum\")\n\t// ErrHeader is returned when reading GZIP data that has an invalid header.\n\tErrHeader = errors.New(\"gzip: invalid header\")\n)\n\nvar le = binary.LittleEndian\n\n// noEOF converts io.EOF to io.ErrUnexpectedEOF.\nfunc noEOF(err error) error {\n\tif err == io.EOF {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn err\n}\n\n// The gzip file stores a header giving metadata about the compressed file.\n// That header is exposed as the fields of the Writer and Reader structs.\n//\n// Strings must be UTF-8 encoded and may only contain Unicode code points\n// U+0001 through U+00FF, due to limitations of the GZIP file format.\ntype Header struct {\n\tComment string    // comment\n\tExtra   []byte    // \"extra data\"\n\tModTime time.Time // modification time\n\tName    string    // file name\n\tOS      byte      // operating system type\n}\n\n// A Reader is an io.Reader that can be read to retrieve\n// uncompressed data from a gzip-format compressed file.\n//\n// In general, a gzip file can be a concatenation of gzip files,\n// each with its own header. Reads from the Reader\n// return the concatenation of the uncompressed data of each.\n// Only the first header is recorded in the Reader fields.\n//\n// Gzip files store a length and checksum of the uncompressed data.\n// The Reader will return a ErrChecksum when Read\n// reaches the end of the uncompressed data if it does not\n// have the expected length or checksum. Clients should treat data\n// returned by Read as tentative until they receive the io.EOF\n// marking the end of the data.\ntype Reader struct {\n\tHeader       // valid after NewReader or Reader.Reset\n\tr            flate.Reader\n\tdecompressor io.ReadCloser\n\tdigest       uint32 // CRC-32, IEEE polynomial (section 8)\n\tsize         uint32 // Uncompressed size (section 2.3.1)\n\tbuf          [512]byte\n\terr          error\n\tmultistream  bool\n}\n\n// NewReader creates a new Reader reading the given reader.\n// If r does not also implement io.ByteReader,\n// the decompressor may read more data than necessary from r.\n//\n// It is the caller's responsibility to call Close on the Reader when done.\n//\n// The Reader.Header fields will be valid in the Reader returned.\nfunc NewReader(r io.Reader) (*Reader, error) {\n\tz := new(Reader)\n\tif err := z.Reset(r); err != nil {\n\t\treturn nil, err\n\t}\n\treturn z, nil\n}\n\n// Reset discards the Reader z's state and makes it equivalent to the\n// result of its original state from NewReader, but reading from r instead.\n// This permits reusing a Reader rather than allocating a new one.\nfunc (z *Reader) Reset(r io.Reader) error {\n\t*z = Reader{\n\t\tdecompressor: z.decompressor,\n\t\tmultistream:  true,\n\t}\n\tif rr, ok := r.(flate.Reader); ok {\n\t\tz.r = rr\n\t} else {\n\t\tz.r = bufio.NewReader(r)\n\t}\n\tz.Header, z.err = z.readHeader()\n\treturn z.err\n}\n\n// Multistream controls whether the reader supports multistream files.\n//\n// If enabled (the default), the Reader expects the input to be a sequence\n// of individually gzipped data streams, each with its own header and\n// trailer, ending at EOF. The effect is that the concatenation of a sequence\n// of gzipped files is treated as equivalent to the gzip of the concatenation\n// of the sequence. This is standard behavior for gzip readers.\n//\n// Calling Multistream(false) disables this behavior; disabling the behavior\n// can be useful when reading file formats that distinguish individual gzip\n// data streams or mix gzip data streams with other data streams.\n// In this mode, when the Reader reaches the end of the data stream,\n// Read returns io.EOF. If the underlying reader implements io.ByteReader,\n// it will be left positioned just after the gzip stream.\n// To start the next stream, call z.Reset(r) followed by z.Multistream(false).\n// If there is no next stream, z.Reset(r) will return io.EOF.\nfunc (z *Reader) Multistream(ok bool) {\n\tz.multistream = ok\n}\n\n// readString reads a NUL-terminated string from z.r.\n// It treats the bytes read as being encoded as ISO 8859-1 (Latin-1) and\n// will output a string encoded using UTF-8.\n// This method always updates z.digest with the data read.\nfunc (z *Reader) readString() (string, error) {\n\tvar err error\n\tneedConv := false\n\tfor i := 0; ; i++ {\n\t\tif i >= len(z.buf) {\n\t\t\treturn \"\", ErrHeader\n\t\t}\n\t\tz.buf[i], err = z.r.ReadByte()\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tif z.buf[i] > 0x7f {\n\t\t\tneedConv = true\n\t\t}\n\t\tif z.buf[i] == 0 {\n\t\t\t// Digest covers the NUL terminator.\n\t\t\tz.digest = crc32.Update(z.digest, crc32.IEEETable, z.buf[:i+1])\n\n\t\t\t// Strings are ISO 8859-1, Latin-1 (RFC 1952, section 2.3.1).\n\t\t\tif needConv {\n\t\t\t\ts := make([]rune, 0, i)\n\t\t\t\tfor _, v := range z.buf[:i] {\n\t\t\t\t\ts = append(s, rune(v))\n\t\t\t\t}\n\t\t\t\treturn string(s), nil\n\t\t\t}\n\t\t\treturn string(z.buf[:i]), nil\n\t\t}\n\t}\n}\n\n// readHeader reads the GZIP header according to section 2.3.1.\n// This method does not set z.err.\nfunc (z *Reader) readHeader() (hdr Header, err error) {\n\tif _, err = io.ReadFull(z.r, z.buf[:10]); err != nil {\n\t\t// RFC 1952, section 2.2, says the following:\n\t\t//\tA gzip file consists of a series of \"members\" (compressed data sets).\n\t\t//\n\t\t// Other than this, the specification does not clarify whether a\n\t\t// \"series\" is defined as \"one or more\" or \"zero or more\". To err on the\n\t\t// side of caution, Go interprets this to mean \"zero or more\".\n\t\t// Thus, it is okay to return io.EOF here.\n\t\treturn hdr, err\n\t}\n\tif z.buf[0] != gzipID1 || z.buf[1] != gzipID2 || z.buf[2] != gzipDeflate {\n\t\treturn hdr, ErrHeader\n\t}\n\tflg := z.buf[3]\n\thdr.ModTime = time.Unix(int64(le.Uint32(z.buf[4:8])), 0)\n\t// z.buf[8] is XFL and is currently ignored.\n\thdr.OS = z.buf[9]\n\tz.digest = crc32.ChecksumIEEE(z.buf[:10])\n\n\tif flg&flagExtra != 0 {\n\t\tif _, err = io.ReadFull(z.r, z.buf[:2]); err != nil {\n\t\t\treturn hdr, noEOF(err)\n\t\t}\n\t\tz.digest = crc32.Update(z.digest, crc32.IEEETable, z.buf[:2])\n\t\tdata := make([]byte, le.Uint16(z.buf[:2]))\n\t\tif _, err = io.ReadFull(z.r, data); err != nil {\n\t\t\treturn hdr, noEOF(err)\n\t\t}\n\t\tz.digest = crc32.Update(z.digest, crc32.IEEETable, data)\n\t\thdr.Extra = data\n\t}\n\n\tvar s string\n\tif flg&flagName != 0 {\n\t\tif s, err = z.readString(); err != nil {\n\t\t\treturn hdr, err\n\t\t}\n\t\thdr.Name = s\n\t}\n\n\tif flg&flagComment != 0 {\n\t\tif s, err = z.readString(); err != nil {\n\t\t\treturn hdr, err\n\t\t}\n\t\thdr.Comment = s\n\t}\n\n\tif flg&flagHdrCrc != 0 {\n\t\tif _, err = io.ReadFull(z.r, z.buf[:2]); err != nil {\n\t\t\treturn hdr, noEOF(err)\n\t\t}\n\t\tdigest := le.Uint16(z.buf[:2])\n\t\tif digest != uint16(z.digest) {\n\t\t\treturn hdr, ErrHeader\n\t\t}\n\t}\n\n\tz.digest = 0\n\tif z.decompressor == nil {\n\t\tz.decompressor = flate.NewReader(z.r)\n\t} else {\n\t\tz.decompressor.(flate.Resetter).Reset(z.r, nil)\n\t}\n\treturn hdr, nil\n}\n\n// Read implements io.Reader, reading uncompressed bytes from its underlying Reader.\nfunc (z *Reader) Read(p []byte) (n int, err error) {\n\tif z.err != nil {\n\t\treturn 0, z.err\n\t}\n\n\tn, z.err = z.decompressor.Read(p)\n\tz.digest = crc32.Update(z.digest, crc32.IEEETable, p[:n])\n\tz.size += uint32(n)\n\tif z.err != io.EOF {\n\t\t// In the normal case we return here.\n\t\treturn n, z.err\n\t}\n\n\t// Finished file; check checksum and size.\n\tif _, err := io.ReadFull(z.r, z.buf[:8]); err != nil {\n\t\tz.err = noEOF(err)\n\t\treturn n, z.err\n\t}\n\tdigest := le.Uint32(z.buf[:4])\n\tsize := le.Uint32(z.buf[4:8])\n\tif digest != z.digest || size != z.size {\n\t\tz.err = ErrChecksum\n\t\treturn n, z.err\n\t}\n\tz.digest, z.size = 0, 0\n\n\t// File is ok; check if there is another.\n\tif !z.multistream {\n\t\treturn n, io.EOF\n\t}\n\tz.err = nil // Remove io.EOF\n\n\tif _, z.err = z.readHeader(); z.err != nil {\n\t\treturn n, z.err\n\t}\n\n\t// Read from next file, if necessary.\n\tif n > 0 {\n\t\treturn n, nil\n\t}\n\treturn z.Read(p)\n}\n\n// Support the io.WriteTo interface for io.Copy and friends.\nfunc (z *Reader) WriteTo(w io.Writer) (int64, error) {\n\ttotal := int64(0)\n\tcrcWriter := crc32.NewIEEE()\n\tfor {\n\t\tif z.err != nil {\n\t\t\tif z.err == io.EOF {\n\t\t\t\treturn total, nil\n\t\t\t}\n\t\t\treturn total, z.err\n\t\t}\n\n\t\t// We write both to output and digest.\n\t\tmw := io.MultiWriter(w, crcWriter)\n\t\tn, err := z.decompressor.(io.WriterTo).WriteTo(mw)\n\t\ttotal += n\n\t\tz.size += uint32(n)\n\t\tif err != nil {\n\t\t\tz.err = err\n\t\t\treturn total, z.err\n\t\t}\n\n\t\t// Finished file; check checksum + size.\n\t\tif _, err := io.ReadFull(z.r, z.buf[0:8]); err != nil {\n\t\t\tif err == io.EOF {\n\t\t\t\terr = io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tz.err = err\n\t\t\treturn total, err\n\t\t}\n\t\tz.digest = crcWriter.Sum32()\n\t\tdigest := le.Uint32(z.buf[:4])\n\t\tsize := le.Uint32(z.buf[4:8])\n\t\tif digest != z.digest || size != z.size {\n\t\t\tz.err = ErrChecksum\n\t\t\treturn total, z.err\n\t\t}\n\t\tz.digest, z.size = 0, 0\n\n\t\t// File is ok; check if there is another.\n\t\tif !z.multistream {\n\t\t\treturn total, nil\n\t\t}\n\t\tcrcWriter.Reset()\n\t\tz.err = nil // Remove io.EOF\n\n\t\tif _, z.err = z.readHeader(); z.err != nil {\n\t\t\tif z.err == io.EOF {\n\t\t\t\treturn total, nil\n\t\t\t}\n\t\t\treturn total, z.err\n\t\t}\n\t}\n}\n\n// Close closes the Reader. It does not close the underlying io.Reader.\n// In order for the GZIP checksum to be verified, the reader must be\n// fully consumed until the io.EOF.\nfunc (z *Reader) Close() error { return z.decompressor.Close() }\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/gzip/gzip.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage gzip\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"hash/crc32\"\n\t\"io\"\n\n\t\"github.com/klauspost/compress/flate\"\n)\n\n// These constants are copied from the flate package, so that code that imports\n// \"compress/gzip\" does not also have to import \"compress/flate\".\nconst (\n\tNoCompression       = flate.NoCompression\n\tBestSpeed           = flate.BestSpeed\n\tBestCompression     = flate.BestCompression\n\tDefaultCompression  = flate.DefaultCompression\n\tConstantCompression = flate.ConstantCompression\n\tHuffmanOnly         = flate.HuffmanOnly\n\n\t// StatelessCompression will do compression but without maintaining any state\n\t// between Write calls.\n\t// There will be no memory kept between Write calls,\n\t// but compression and speed will be suboptimal.\n\t// Because of this, the size of actual Write calls will affect output size.\n\tStatelessCompression = -3\n)\n\n// A Writer is an io.WriteCloser.\n// Writes to a Writer are compressed and written to w.\ntype Writer struct {\n\tHeader      // written at first call to Write, Flush, or Close\n\tw           io.Writer\n\tlevel       int\n\terr         error\n\tcompressor  *flate.Writer\n\tdigest      uint32 // CRC-32, IEEE polynomial (section 8)\n\tsize        uint32 // Uncompressed size (section 2.3.1)\n\twroteHeader bool\n\tclosed      bool\n\tbuf         [10]byte\n}\n\n// NewWriter returns a new Writer.\n// Writes to the returned writer are compressed and written to w.\n//\n// It is the caller's responsibility to call Close on the WriteCloser when done.\n// Writes may be buffered and not flushed until Close.\n//\n// Callers that wish to set the fields in Writer.Header must do so before\n// the first call to Write, Flush, or Close.\nfunc NewWriter(w io.Writer) *Writer {\n\tz, _ := NewWriterLevel(w, DefaultCompression)\n\treturn z\n}\n\n// NewWriterLevel is like NewWriter but specifies the compression level instead\n// of assuming DefaultCompression.\n//\n// The compression level can be DefaultCompression, NoCompression, or any\n// integer value between BestSpeed and BestCompression inclusive. The error\n// returned will be nil if the level is valid.\nfunc NewWriterLevel(w io.Writer, level int) (*Writer, error) {\n\tif level < StatelessCompression || level > BestCompression {\n\t\treturn nil, fmt.Errorf(\"gzip: invalid compression level: %d\", level)\n\t}\n\tz := new(Writer)\n\tz.init(w, level)\n\treturn z, nil\n}\n\nfunc (z *Writer) init(w io.Writer, level int) {\n\tcompressor := z.compressor\n\tif level != StatelessCompression {\n\t\tif compressor != nil {\n\t\t\tcompressor.Reset(w)\n\t\t}\n\t}\n\n\t*z = Writer{\n\t\tHeader: Header{\n\t\t\tOS: 255, // unknown\n\t\t},\n\t\tw:          w,\n\t\tlevel:      level,\n\t\tcompressor: compressor,\n\t}\n}\n\n// Reset discards the Writer z's state and makes it equivalent to the\n// result of its original state from NewWriter or NewWriterLevel, but\n// writing to w instead. This permits reusing a Writer rather than\n// allocating a new one.\nfunc (z *Writer) Reset(w io.Writer) {\n\tz.init(w, z.level)\n}\n\n// writeBytes writes a length-prefixed byte slice to z.w.\nfunc (z *Writer) writeBytes(b []byte) error {\n\tif len(b) > 0xffff {\n\t\treturn errors.New(\"gzip.Write: Extra data is too large\")\n\t}\n\tle.PutUint16(z.buf[:2], uint16(len(b)))\n\t_, err := z.w.Write(z.buf[:2])\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, err = z.w.Write(b)\n\treturn err\n}\n\n// writeString writes a UTF-8 string s in GZIP's format to z.w.\n// GZIP (RFC 1952) specifies that strings are NUL-terminated ISO 8859-1 (Latin-1).\nfunc (z *Writer) writeString(s string) (err error) {\n\t// GZIP stores Latin-1 strings; error if non-Latin-1; convert if non-ASCII.\n\tneedconv := false\n\tfor _, v := range s {\n\t\tif v == 0 || v > 0xff {\n\t\t\treturn errors.New(\"gzip.Write: non-Latin-1 header string\")\n\t\t}\n\t\tif v > 0x7f {\n\t\t\tneedconv = true\n\t\t}\n\t}\n\tif needconv {\n\t\tb := make([]byte, 0, len(s))\n\t\tfor _, v := range s {\n\t\t\tb = append(b, byte(v))\n\t\t}\n\t\t_, err = z.w.Write(b)\n\t} else {\n\t\t_, err = io.WriteString(z.w, s)\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\t// GZIP strings are NUL-terminated.\n\tz.buf[0] = 0\n\t_, err = z.w.Write(z.buf[:1])\n\treturn err\n}\n\n// Write writes a compressed form of p to the underlying io.Writer. The\n// compressed bytes are not necessarily flushed until the Writer is closed.\nfunc (z *Writer) Write(p []byte) (int, error) {\n\tif z.err != nil {\n\t\treturn 0, z.err\n\t}\n\tvar n int\n\t// Write the GZIP header lazily.\n\tif !z.wroteHeader {\n\t\tz.wroteHeader = true\n\t\tz.buf[0] = gzipID1\n\t\tz.buf[1] = gzipID2\n\t\tz.buf[2] = gzipDeflate\n\t\tz.buf[3] = 0\n\t\tif z.Extra != nil {\n\t\t\tz.buf[3] |= 0x04\n\t\t}\n\t\tif z.Name != \"\" {\n\t\t\tz.buf[3] |= 0x08\n\t\t}\n\t\tif z.Comment != \"\" {\n\t\t\tz.buf[3] |= 0x10\n\t\t}\n\t\tle.PutUint32(z.buf[4:8], uint32(z.ModTime.Unix()))\n\t\tif z.level == BestCompression {\n\t\t\tz.buf[8] = 2\n\t\t} else if z.level == BestSpeed {\n\t\t\tz.buf[8] = 4\n\t\t} else {\n\t\t\tz.buf[8] = 0\n\t\t}\n\t\tz.buf[9] = z.OS\n\t\tn, z.err = z.w.Write(z.buf[:10])\n\t\tif z.err != nil {\n\t\t\treturn n, z.err\n\t\t}\n\t\tif z.Extra != nil {\n\t\t\tz.err = z.writeBytes(z.Extra)\n\t\t\tif z.err != nil {\n\t\t\t\treturn n, z.err\n\t\t\t}\n\t\t}\n\t\tif z.Name != \"\" {\n\t\t\tz.err = z.writeString(z.Name)\n\t\t\tif z.err != nil {\n\t\t\t\treturn n, z.err\n\t\t\t}\n\t\t}\n\t\tif z.Comment != \"\" {\n\t\t\tz.err = z.writeString(z.Comment)\n\t\t\tif z.err != nil {\n\t\t\t\treturn n, z.err\n\t\t\t}\n\t\t}\n\n\t\tif z.compressor == nil && z.level != StatelessCompression {\n\t\t\tz.compressor, _ = flate.NewWriter(z.w, z.level)\n\t\t}\n\t}\n\tz.size += uint32(len(p))\n\tz.digest = crc32.Update(z.digest, crc32.IEEETable, p)\n\tif z.level == StatelessCompression {\n\t\treturn len(p), flate.StatelessDeflate(z.w, p, false, nil)\n\t}\n\tn, z.err = z.compressor.Write(p)\n\treturn n, z.err\n}\n\n// Flush flushes any pending compressed data to the underlying writer.\n//\n// It is useful mainly in compressed network protocols, to ensure that\n// a remote reader has enough data to reconstruct a packet. Flush does\n// not return until the data has been written. If the underlying\n// writer returns an error, Flush returns that error.\n//\n// In the terminology of the zlib library, Flush is equivalent to Z_SYNC_FLUSH.\nfunc (z *Writer) Flush() error {\n\tif z.err != nil {\n\t\treturn z.err\n\t}\n\tif z.closed || z.level == StatelessCompression {\n\t\treturn nil\n\t}\n\tif !z.wroteHeader {\n\t\tz.Write(nil)\n\t\tif z.err != nil {\n\t\t\treturn z.err\n\t\t}\n\t}\n\tz.err = z.compressor.Flush()\n\treturn z.err\n}\n\n// Close closes the Writer, flushing any unwritten data to the underlying\n// io.Writer, but does not close the underlying io.Writer.\nfunc (z *Writer) Close() error {\n\tif z.err != nil {\n\t\treturn z.err\n\t}\n\tif z.closed {\n\t\treturn nil\n\t}\n\tz.closed = true\n\tif !z.wroteHeader {\n\t\tz.Write(nil)\n\t\tif z.err != nil {\n\t\t\treturn z.err\n\t\t}\n\t}\n\tif z.level == StatelessCompression {\n\t\tz.err = flate.StatelessDeflate(z.w, nil, true, nil)\n\t} else {\n\t\tz.err = z.compressor.Close()\n\t}\n\tif z.err != nil {\n\t\treturn z.err\n\t}\n\tle.PutUint32(z.buf[:4], z.digest)\n\tle.PutUint32(z.buf[4:8], z.size)\n\t_, z.err = z.w.Write(z.buf[:8])\n\treturn z.err\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/zlib/reader.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n/*\nPackage zlib implements reading and writing of zlib format compressed data,\nas specified in RFC 1950.\n\nThe implementation provides filters that uncompress during reading\nand compress during writing.  For example, to write compressed data\nto a buffer:\n\n\tvar b bytes.Buffer\n\tw := zlib.NewWriter(&b)\n\tw.Write([]byte(\"hello, world\\n\"))\n\tw.Close()\n\nand to read that data back:\n\n\tr, err := zlib.NewReader(&b)\n\tio.Copy(os.Stdout, r)\n\tr.Close()\n*/\npackage zlib\n\nimport (\n\t\"bufio\"\n\t\"errors\"\n\t\"hash\"\n\t\"hash/adler32\"\n\t\"io\"\n\n\t\"github.com/klauspost/compress/flate\"\n)\n\nconst zlibDeflate = 8\n\nvar (\n\t// ErrChecksum is returned when reading ZLIB data that has an invalid checksum.\n\tErrChecksum = errors.New(\"zlib: invalid checksum\")\n\t// ErrDictionary is returned when reading ZLIB data that has an invalid dictionary.\n\tErrDictionary = errors.New(\"zlib: invalid dictionary\")\n\t// ErrHeader is returned when reading ZLIB data that has an invalid header.\n\tErrHeader = errors.New(\"zlib: invalid header\")\n)\n\ntype reader struct {\n\tr            flate.Reader\n\tdecompressor io.ReadCloser\n\tdigest       hash.Hash32\n\terr          error\n\tscratch      [4]byte\n}\n\n// Resetter resets a ReadCloser returned by NewReader or NewReaderDict to\n// to switch to a new underlying Reader. This permits reusing a ReadCloser\n// instead of allocating a new one.\ntype Resetter interface {\n\t// Reset discards any buffered data and resets the Resetter as if it was\n\t// newly initialized with the given reader.\n\tReset(r io.Reader, dict []byte) error\n}\n\n// NewReader creates a new ReadCloser.\n// Reads from the returned ReadCloser read and decompress data from r.\n// If r does not implement io.ByteReader, the decompressor may read more\n// data than necessary from r.\n// It is the caller's responsibility to call Close on the ReadCloser when done.\n//\n// The ReadCloser returned by NewReader also implements Resetter.\nfunc NewReader(r io.Reader) (io.ReadCloser, error) {\n\treturn NewReaderDict(r, nil)\n}\n\n// NewReaderDict is like NewReader but uses a preset dictionary.\n// NewReaderDict ignores the dictionary if the compressed data does not refer to it.\n// If the compressed data refers to a different dictionary, NewReaderDict returns ErrDictionary.\n//\n// The ReadCloser returned by NewReaderDict also implements Resetter.\nfunc NewReaderDict(r io.Reader, dict []byte) (io.ReadCloser, error) {\n\tz := new(reader)\n\terr := z.Reset(r, dict)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn z, nil\n}\n\nfunc (z *reader) Read(p []byte) (int, error) {\n\tif z.err != nil {\n\t\treturn 0, z.err\n\t}\n\n\tvar n int\n\tn, z.err = z.decompressor.Read(p)\n\tz.digest.Write(p[0:n])\n\tif z.err != io.EOF {\n\t\t// In the normal case we return here.\n\t\treturn n, z.err\n\t}\n\n\t// Finished file; check checksum.\n\tif _, err := io.ReadFull(z.r, z.scratch[0:4]); err != nil {\n\t\tif err == io.EOF {\n\t\t\terr = io.ErrUnexpectedEOF\n\t\t}\n\t\tz.err = err\n\t\treturn n, z.err\n\t}\n\t// ZLIB (RFC 1950) is big-endian, unlike GZIP (RFC 1952).\n\tchecksum := uint32(z.scratch[0])<<24 | uint32(z.scratch[1])<<16 | uint32(z.scratch[2])<<8 | uint32(z.scratch[3])\n\tif checksum != z.digest.Sum32() {\n\t\tz.err = ErrChecksum\n\t\treturn n, z.err\n\t}\n\treturn n, io.EOF\n}\n\n// Calling Close does not close the wrapped io.Reader originally passed to NewReader.\n// In order for the ZLIB checksum to be verified, the reader must be\n// fully consumed until the io.EOF.\nfunc (z *reader) Close() error {\n\tif z.err != nil && z.err != io.EOF {\n\t\treturn z.err\n\t}\n\tz.err = z.decompressor.Close()\n\treturn z.err\n}\n\nfunc (z *reader) Reset(r io.Reader, dict []byte) error {\n\t*z = reader{decompressor: z.decompressor, digest: z.digest}\n\tif fr, ok := r.(flate.Reader); ok {\n\t\tz.r = fr\n\t} else {\n\t\tz.r = bufio.NewReader(r)\n\t}\n\n\t// Read the header (RFC 1950 section 2.2.).\n\t_, z.err = io.ReadFull(z.r, z.scratch[0:2])\n\tif z.err != nil {\n\t\tif z.err == io.EOF {\n\t\t\tz.err = io.ErrUnexpectedEOF\n\t\t}\n\t\treturn z.err\n\t}\n\th := uint(z.scratch[0])<<8 | uint(z.scratch[1])\n\tif (z.scratch[0]&0x0f != zlibDeflate) || (h%31 != 0) {\n\t\tz.err = ErrHeader\n\t\treturn z.err\n\t}\n\thaveDict := z.scratch[1]&0x20 != 0\n\tif haveDict {\n\t\t_, z.err = io.ReadFull(z.r, z.scratch[0:4])\n\t\tif z.err != nil {\n\t\t\tif z.err == io.EOF {\n\t\t\t\tz.err = io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\treturn z.err\n\t\t}\n\t\tchecksum := uint32(z.scratch[0])<<24 | uint32(z.scratch[1])<<16 | uint32(z.scratch[2])<<8 | uint32(z.scratch[3])\n\t\tif checksum != adler32.Checksum(dict) {\n\t\t\tz.err = ErrDictionary\n\t\t\treturn z.err\n\t\t}\n\t}\n\n\tif z.decompressor == nil {\n\t\tif haveDict {\n\t\t\tz.decompressor = flate.NewReaderDict(z.r, dict)\n\t\t} else {\n\t\t\tz.decompressor = flate.NewReader(z.r)\n\t\t}\n\t} else {\n\t\tz.decompressor.(flate.Resetter).Reset(z.r, dict)\n\t}\n\n\tif z.digest != nil {\n\t\tz.digest.Reset()\n\t} else {\n\t\tz.digest = adler32.New()\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/github.com/klauspost/compress/zlib/writer.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage zlib\n\nimport (\n\t\"fmt\"\n\t\"hash\"\n\t\"hash/adler32\"\n\t\"io\"\n\n\t\"github.com/klauspost/compress/flate\"\n)\n\n// These constants are copied from the flate package, so that code that imports\n// \"compress/zlib\" does not also have to import \"compress/flate\".\nconst (\n\tNoCompression       = flate.NoCompression\n\tBestSpeed           = flate.BestSpeed\n\tBestCompression     = flate.BestCompression\n\tDefaultCompression  = flate.DefaultCompression\n\tConstantCompression = flate.ConstantCompression\n\tHuffmanOnly         = flate.HuffmanOnly\n)\n\n// A Writer takes data written to it and writes the compressed\n// form of that data to an underlying writer (see NewWriter).\ntype Writer struct {\n\tw           io.Writer\n\tlevel       int\n\tdict        []byte\n\tcompressor  *flate.Writer\n\tdigest      hash.Hash32\n\terr         error\n\tscratch     [4]byte\n\twroteHeader bool\n}\n\n// NewWriter creates a new Writer.\n// Writes to the returned Writer are compressed and written to w.\n//\n// It is the caller's responsibility to call Close on the WriteCloser when done.\n// Writes may be buffered and not flushed until Close.\nfunc NewWriter(w io.Writer) *Writer {\n\tz, _ := NewWriterLevelDict(w, DefaultCompression, nil)\n\treturn z\n}\n\n// NewWriterLevel is like NewWriter but specifies the compression level instead\n// of assuming DefaultCompression.\n//\n// The compression level can be DefaultCompression, NoCompression, HuffmanOnly\n// or any integer value between BestSpeed and BestCompression inclusive.\n// The error returned will be nil if the level is valid.\nfunc NewWriterLevel(w io.Writer, level int) (*Writer, error) {\n\treturn NewWriterLevelDict(w, level, nil)\n}\n\n// NewWriterLevelDict is like NewWriterLevel but specifies a dictionary to\n// compress with.\n//\n// The dictionary may be nil. If not, its contents should not be modified until\n// the Writer is closed.\nfunc NewWriterLevelDict(w io.Writer, level int, dict []byte) (*Writer, error) {\n\tif level < HuffmanOnly || level > BestCompression {\n\t\treturn nil, fmt.Errorf(\"zlib: invalid compression level: %d\", level)\n\t}\n\treturn &Writer{\n\t\tw:     w,\n\t\tlevel: level,\n\t\tdict:  dict,\n\t}, nil\n}\n\n// Reset clears the state of the Writer z such that it is equivalent to its\n// initial state from NewWriterLevel or NewWriterLevelDict, but instead writing\n// to w.\nfunc (z *Writer) Reset(w io.Writer) {\n\tz.w = w\n\t// z.level and z.dict left unchanged.\n\tif z.compressor != nil {\n\t\tz.compressor.Reset(w)\n\t}\n\tif z.digest != nil {\n\t\tz.digest.Reset()\n\t}\n\tz.err = nil\n\tz.scratch = [4]byte{}\n\tz.wroteHeader = false\n}\n\n// writeHeader writes the ZLIB header.\nfunc (z *Writer) writeHeader() (err error) {\n\tz.wroteHeader = true\n\t// ZLIB has a two-byte header (as documented in RFC 1950).\n\t// The first four bits is the CINFO (compression info), which is 7 for the default deflate window size.\n\t// The next four bits is the CM (compression method), which is 8 for deflate.\n\tz.scratch[0] = 0x78\n\t// The next two bits is the FLEVEL (compression level). The four values are:\n\t// 0=fastest, 1=fast, 2=default, 3=best.\n\t// The next bit, FDICT, is set if a dictionary is given.\n\t// The final five FCHECK bits form a mod-31 checksum.\n\tswitch z.level {\n\tcase -2, 0, 1:\n\t\tz.scratch[1] = 0 << 6\n\tcase 2, 3, 4, 5:\n\t\tz.scratch[1] = 1 << 6\n\tcase 6, -1:\n\t\tz.scratch[1] = 2 << 6\n\tcase 7, 8, 9:\n\t\tz.scratch[1] = 3 << 6\n\tdefault:\n\t\tpanic(\"unreachable\")\n\t}\n\tif z.dict != nil {\n\t\tz.scratch[1] |= 1 << 5\n\t}\n\tz.scratch[1] += uint8(31 - (uint16(z.scratch[0])<<8+uint16(z.scratch[1]))%31)\n\tif _, err = z.w.Write(z.scratch[0:2]); err != nil {\n\t\treturn err\n\t}\n\tif z.dict != nil {\n\t\t// The next four bytes are the Adler-32 checksum of the dictionary.\n\t\tchecksum := adler32.Checksum(z.dict)\n\t\tz.scratch[0] = uint8(checksum >> 24)\n\t\tz.scratch[1] = uint8(checksum >> 16)\n\t\tz.scratch[2] = uint8(checksum >> 8)\n\t\tz.scratch[3] = uint8(checksum >> 0)\n\t\tif _, err = z.w.Write(z.scratch[0:4]); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif z.compressor == nil {\n\t\t// Initialize deflater unless the Writer is being reused\n\t\t// after a Reset call.\n\t\tz.compressor, err = flate.NewWriterDict(z.w, z.level, z.dict)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tz.digest = adler32.New()\n\t}\n\treturn nil\n}\n\n// Write writes a compressed form of p to the underlying io.Writer. The\n// compressed bytes are not necessarily flushed until the Writer is closed or\n// explicitly flushed.\nfunc (z *Writer) Write(p []byte) (n int, err error) {\n\tif !z.wroteHeader {\n\t\tz.err = z.writeHeader()\n\t}\n\tif z.err != nil {\n\t\treturn 0, z.err\n\t}\n\tif len(p) == 0 {\n\t\treturn 0, nil\n\t}\n\tn, err = z.compressor.Write(p)\n\tif err != nil {\n\t\tz.err = err\n\t\treturn\n\t}\n\tz.digest.Write(p)\n\treturn\n}\n\n// Flush flushes the Writer to its underlying io.Writer.\nfunc (z *Writer) Flush() error {\n\tif !z.wroteHeader {\n\t\tz.err = z.writeHeader()\n\t}\n\tif z.err != nil {\n\t\treturn z.err\n\t}\n\tz.err = z.compressor.Flush()\n\treturn z.err\n}\n\n// Close closes the Writer, flushing any unwritten data to the underlying\n// io.Writer, but does not close the underlying io.Writer.\nfunc (z *Writer) Close() error {\n\tif !z.wroteHeader {\n\t\tz.err = z.writeHeader()\n\t}\n\tif z.err != nil {\n\t\treturn z.err\n\t}\n\tz.err = z.compressor.Close()\n\tif z.err != nil {\n\t\treturn z.err\n\t}\n\tchecksum := z.digest.Sum32()\n\t// ZLIB (RFC 1950) is big-endian, unlike GZIP (RFC 1952).\n\tz.scratch[0] = uint8(checksum >> 24)\n\tz.scratch[1] = uint8(checksum >> 16)\n\tz.scratch[2] = uint8(checksum >> 8)\n\tz.scratch[3] = uint8(checksum >> 0)\n\t_, z.err = z.w.Write(z.scratch[0:4])\n\treturn z.err\n}\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/.gitignore",
    "content": "*.sublime-project\n*.sublime-workspace\n*.un~\n*.swp\n.idea/\n*.iml\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/.travis.yml",
    "content": "language: go\ngo:\n    - 1.4.x\n    - 1.5.x\n    - 1.6.x\n    - 1.7.x\n    - 1.8.x\n    - 1.9.x\n    - \"1.10.x\"\n    - \"1.11.x\"\n    - \"1.12.x\"\n    - tip\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/CHANGELOG.md",
    "content": "## Changelog\n\n### [1.8.1](https://github.com/magiconair/properties/tree/v1.8.1) - 10 May 2019\n\n * [PR #26](https://github.com/magiconair/properties/pull/35): Close body always after request\n\n   This patch ensures that in `LoadURL` the response body is always closed.\n\n   Thanks to [@liubog2008](https://github.com/liubog2008) for the patch.\n\n### [1.8](https://github.com/magiconair/properties/tree/v1.8) - 15 May 2018\n\n * [PR #26](https://github.com/magiconair/properties/pull/26): Disable expansion during loading\n\n   This adds the option to disable property expansion during loading.\n\n   Thanks to [@kmala](https://github.com/kmala) for the patch.\n\n### [1.7.6](https://github.com/magiconair/properties/tree/v1.7.6) - 14 Feb 2018\n\n * [PR #29](https://github.com/magiconair/properties/pull/29): Reworked expansion logic to handle more complex cases.\n\n   See PR for an example.\n\n   Thanks to [@yobert](https://github.com/yobert) for the fix.\n\n### [1.7.5](https://github.com/magiconair/properties/tree/v1.7.5) - 13 Feb 2018\n\n * [PR #28](https://github.com/magiconair/properties/pull/28): Support duplicate expansions in the same value\n\n   Values which expand the same key multiple times (e.g. `key=${a} ${a}`) will no longer fail\n   with a `circular reference error`.\n\n   Thanks to [@yobert](https://github.com/yobert) for the fix.\n\n### [1.7.4](https://github.com/magiconair/properties/tree/v1.7.4) - 31 Oct 2017\n\n * [Issue #23](https://github.com/magiconair/properties/issues/23): Ignore blank lines with whitespaces\n\n * [PR #24](https://github.com/magiconair/properties/pull/24): Update keys when DisableExpansion is enabled\n\n   Thanks to [@mgurov](https://github.com/mgurov) for the fix.\n\n### [1.7.3](https://github.com/magiconair/properties/tree/v1.7.3) - 10 Jul 2017\n\n * [Issue #17](https://github.com/magiconair/properties/issues/17): Add [SetValue()](http://godoc.org/github.com/magiconair/properties#Properties.SetValue) method to set values generically\n * [Issue #22](https://github.com/magiconair/properties/issues/22): Add [LoadMap()](http://godoc.org/github.com/magiconair/properties#LoadMap) function to load properties from a string map\n\n### [1.7.2](https://github.com/magiconair/properties/tree/v1.7.2) - 20 Mar 2017\n\n * [Issue #15](https://github.com/magiconair/properties/issues/15): Drop gocheck dependency\n * [PR #21](https://github.com/magiconair/properties/pull/21): Add [Map()](http://godoc.org/github.com/magiconair/properties#Properties.Map) and [FilterFunc()](http://godoc.org/github.com/magiconair/properties#Properties.FilterFunc)\n\n### [1.7.1](https://github.com/magiconair/properties/tree/v1.7.1) - 13 Jan 2017\n\n * [Issue #14](https://github.com/magiconair/properties/issues/14): Decouple TestLoadExpandedFile from `$USER`\n * [PR #12](https://github.com/magiconair/properties/pull/12): Load from files and URLs\n * [PR #16](https://github.com/magiconair/properties/pull/16): Keep gofmt happy\n * [PR #18](https://github.com/magiconair/properties/pull/18): Fix Delete() function\n\n### [1.7.0](https://github.com/magiconair/properties/tree/v1.7.0) - 20 Mar 2016\n\n * [Issue #10](https://github.com/magiconair/properties/issues/10): Add [LoadURL,LoadURLs,MustLoadURL,MustLoadURLs](http://godoc.org/github.com/magiconair/properties#LoadURL) method to load properties from a URL.\n * [Issue #11](https://github.com/magiconair/properties/issues/11): Add [LoadString,MustLoadString](http://godoc.org/github.com/magiconair/properties#LoadString) method to load properties from an UTF8 string.\n * [PR #8](https://github.com/magiconair/properties/pull/8): Add [MustFlag](http://godoc.org/github.com/magiconair/properties#Properties.MustFlag) method to provide overrides via command line flags. (@pascaldekloe)\n\n### [1.6.0](https://github.com/magiconair/properties/tree/v1.6.0) - 11 Dec 2015\n\n * Add [Decode](http://godoc.org/github.com/magiconair/properties#Properties.Decode) method to populate struct from properties via tags.\n\n### [1.5.6](https://github.com/magiconair/properties/tree/v1.5.6) - 18 Oct 2015\n\n * Vendored in gopkg.in/check.v1\n\n### [1.5.5](https://github.com/magiconair/properties/tree/v1.5.5) - 31 Jul 2015\n\n * [PR #6](https://github.com/magiconair/properties/pull/6): Add [Delete](http://godoc.org/github.com/magiconair/properties#Properties.Delete) method to remove keys including comments. (@gerbenjacobs)\n\n### [1.5.4](https://github.com/magiconair/properties/tree/v1.5.4) - 23 Jun 2015\n\n * [Issue #5](https://github.com/magiconair/properties/issues/5): Allow disabling of property expansion [DisableExpansion](http://godoc.org/github.com/magiconair/properties#Properties.DisableExpansion). When property expansion is disabled Properties become a simple key/value store and don't check for circular references.\n\n### [1.5.3](https://github.com/magiconair/properties/tree/v1.5.3) - 02 Jun 2015\n\n * [Issue #4](https://github.com/magiconair/properties/issues/4): Maintain key order in [Filter()](http://godoc.org/github.com/magiconair/properties#Properties.Filter), [FilterPrefix()](http://godoc.org/github.com/magiconair/properties#Properties.FilterPrefix) and [FilterRegexp()](http://godoc.org/github.com/magiconair/properties#Properties.FilterRegexp)\n\n### [1.5.2](https://github.com/magiconair/properties/tree/v1.5.2) - 10 Apr 2015\n\n * [Issue #3](https://github.com/magiconair/properties/issues/3): Don't print comments in [WriteComment()](http://godoc.org/github.com/magiconair/properties#Properties.WriteComment) if they are all empty\n * Add clickable links to README\n\n### [1.5.1](https://github.com/magiconair/properties/tree/v1.5.1) - 08 Dec 2014\n\n * Added [GetParsedDuration()](http://godoc.org/github.com/magiconair/properties#Properties.GetParsedDuration) and [MustGetParsedDuration()](http://godoc.org/github.com/magiconair/properties#Properties.MustGetParsedDuration) for values specified compatible with\n   [time.ParseDuration()](http://golang.org/pkg/time/#ParseDuration).\n\n### [1.5.0](https://github.com/magiconair/properties/tree/v1.5.0) - 18 Nov 2014\n\n * Added support for single and multi-line comments (reading, writing and updating)\n * The order of keys is now preserved\n * Calling [Set()](http://godoc.org/github.com/magiconair/properties#Properties.Set) with an empty key now silently ignores the call and does not create a new entry\n * Added a [MustSet()](http://godoc.org/github.com/magiconair/properties#Properties.MustSet) method\n * Migrated test library from launchpad.net/gocheck to [gopkg.in/check.v1](http://gopkg.in/check.v1)\n\n### [1.4.2](https://github.com/magiconair/properties/tree/v1.4.2) - 15 Nov 2014\n\n * [Issue #2](https://github.com/magiconair/properties/issues/2): Fixed goroutine leak in parser which created two lexers but cleaned up only one\n\n### [1.4.1](https://github.com/magiconair/properties/tree/v1.4.1) - 13 Nov 2014\n\n * [Issue #1](https://github.com/magiconair/properties/issues/1): Fixed bug in Keys() method which returned an empty string\n\n### [1.4.0](https://github.com/magiconair/properties/tree/v1.4.0) - 23 Sep 2014\n\n * Added [Keys()](http://godoc.org/github.com/magiconair/properties#Properties.Keys) to get the keys\n * Added [Filter()](http://godoc.org/github.com/magiconair/properties#Properties.Filter), [FilterRegexp()](http://godoc.org/github.com/magiconair/properties#Properties.FilterRegexp) and [FilterPrefix()](http://godoc.org/github.com/magiconair/properties#Properties.FilterPrefix) to get a subset of the properties\n\n### [1.3.0](https://github.com/magiconair/properties/tree/v1.3.0) - 18 Mar 2014\n\n* Added support for time.Duration\n* Made MustXXX() failure beha[ior configurable (log.Fatal, panic](https://github.com/magiconair/properties/tree/vior configurable (log.Fatal, panic) - custom)\n* Changed default of MustXXX() failure from panic to log.Fatal\n\n### [1.2.0](https://github.com/magiconair/properties/tree/v1.2.0) - 05 Mar 2014\n\n* Added MustGet... functions\n* Added support for int and uint with range checks on 32 bit platforms\n\n### [1.1.0](https://github.com/magiconair/properties/tree/v1.1.0) - 20 Jan 2014\n\n* Renamed from goproperties to properties\n* Added support for expansion of environment vars in\n  filenames and value expressions\n* Fixed bug where value expressions were not at the\n  start of the string\n\n### [1.0.0](https://github.com/magiconair/properties/tree/v1.0.0) - 7 Jan 2014\n\n* Initial release\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/LICENSE",
    "content": "goproperties - properties file decoder for Go\n\nCopyright (c) 2013-2018 - Frank Schroeder\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n   list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright notice,\n   this list of conditions and the following disclaimer in the documentation\n   and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/README.md",
    "content": "[![](https://img.shields.io/github/tag/magiconair/properties.svg?style=flat-square&label=release)](https://github.com/magiconair/properties/releases)\n[![Travis CI Status](https://img.shields.io/travis/magiconair/properties.svg?branch=master&style=flat-square&label=travis)](https://travis-ci.org/magiconair/properties)\n[![CircleCI Status](https://img.shields.io/circleci/project/github/magiconair/properties.svg?label=circle+ci&style=flat-square)](https://circleci.com/gh/magiconair/properties)\n[![License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg?style=flat-square)](https://raw.githubusercontent.com/magiconair/properties/master/LICENSE)\n[![GoDoc](http://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square)](http://godoc.org/github.com/magiconair/properties)\n\n# Overview\n\n#### Please run `git pull --tags` to update the tags. See [below](#updated-git-tags) why.\n\nproperties is a Go library for reading and writing properties files.\n\nIt supports reading from multiple files or URLs and Spring style recursive\nproperty expansion of expressions like `${key}` to their corresponding value.\nValue expressions can refer to other keys like in `${key}` or to environment\nvariables like in `${USER}`.  Filenames can also contain environment variables\nlike in `/home/${USER}/myapp.properties`.\n\nProperties can be decoded into structs, maps, arrays and values through\nstruct tags.\n\nComments and the order of keys are preserved. Comments can be modified\nand can be written to the output.\n\nThe properties library supports both ISO-8859-1 and UTF-8 encoded data.\n\nStarting from version 1.3.0 the behavior of the MustXXX() functions is\nconfigurable by providing a custom `ErrorHandler` function. The default has\nchanged from `panic` to `log.Fatal` but this is configurable and custom\nerror handling functions can be provided. See the package documentation for\ndetails.\n\nRead the full documentation on [![GoDoc](http://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square)](http://godoc.org/github.com/magiconair/properties)\n\n## Getting Started\n\n```go\nimport (\n\t\"flag\"\n\t\"github.com/magiconair/properties\"\n)\n\nfunc main() {\n\t// init from a file\n\tp := properties.MustLoadFile(\"${HOME}/config.properties\", properties.UTF8)\n\n\t// or multiple files\n\tp = properties.MustLoadFiles([]string{\n\t\t\t\"${HOME}/config.properties\",\n\t\t\t\"${HOME}/config-${USER}.properties\",\n\t\t}, properties.UTF8, true)\n\n\t// or from a map\n\tp = properties.LoadMap(map[string]string{\"key\": \"value\", \"abc\": \"def\"})\n\n\t// or from a string\n\tp = properties.MustLoadString(\"key=value\\nabc=def\")\n\n\t// or from a URL\n\tp = properties.MustLoadURL(\"http://host/path\")\n\n\t// or from multiple URLs\n\tp = properties.MustLoadURL([]string{\n\t\t\t\"http://host/config\",\n\t\t\t\"http://host/config-${USER}\",\n\t\t}, true)\n\n\t// or from flags\n\tp.MustFlag(flag.CommandLine)\n\n\t// get values through getters\n\thost := p.MustGetString(\"host\")\n\tport := p.GetInt(\"port\", 8080)\n\n\t// or through Decode\n\ttype Config struct {\n\t\tHost    string        `properties:\"host\"`\n\t\tPort    int           `properties:\"port,default=9000\"`\n\t\tAccept  []string      `properties:\"accept,default=image/png;image;gif\"`\n\t\tTimeout time.Duration `properties:\"timeout,default=5s\"`\n\t}\n\tvar cfg Config\n\tif err := p.Decode(&cfg); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\n```\n\n## Installation and Upgrade\n\n```\n$ go get -u github.com/magiconair/properties\n```\n\n## License\n\n2 clause BSD license. See [LICENSE](https://github.com/magiconair/properties/blob/master/LICENSE) file for details.\n\n## ToDo\n\n* Dump contents with passwords and secrets obscured\n\n## Updated Git tags\n\n#### 13 Feb 2018\n\nI realized that all of the git tags I had pushed before v1.7.5 were lightweight tags\nand I've only recently learned that this doesn't play well with `git describe` 😞\n\nI have replaced all lightweight tags with signed tags using this script which should\nretain the commit date, name and email address. Please run `git pull --tags` to update them.\n\nWorst case you have to reclone the repo.\n\n```shell\n#!/bin/bash\ntag=$1\necho \"Updating $tag\"\ndate=$(git show ${tag}^0 --format=%aD | head -1)\nemail=$(git show ${tag}^0 --format=%aE | head -1)\nname=$(git show ${tag}^0 --format=%aN | head -1)\nGIT_COMMITTER_DATE=\"$date\" GIT_COMMITTER_NAME=\"$name\" GIT_COMMITTER_EMAIL=\"$email\" git tag -s -f ${tag} ${tag}^0 -m ${tag}\n```\n\nI apologize for the inconvenience.\n\nFrank\n\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/decode.go",
    "content": "// Copyright 2018 Frank Schroeder. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage properties\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n)\n\n// Decode assigns property values to exported fields of a struct.\n//\n// Decode traverses v recursively and returns an error if a value cannot be\n// converted to the field type or a required value is missing for a field.\n//\n// The following type dependent decodings are used:\n//\n// String, boolean, numeric fields have the value of the property key assigned.\n// The property key name is the name of the field. A different key and a default\n// value can be set in the field's tag. Fields without default value are\n// required. If the value cannot be converted to the field type an error is\n// returned.\n//\n// time.Duration fields have the result of time.ParseDuration() assigned.\n//\n// time.Time fields have the vaule of time.Parse() assigned. The default layout\n// is time.RFC3339 but can be set in the field's tag.\n//\n// Arrays and slices of string, boolean, numeric, time.Duration and time.Time\n// fields have the value interpreted as a comma separated list of values. The\n// individual values are trimmed of whitespace and empty values are ignored. A\n// default value can be provided as a semicolon separated list in the field's\n// tag.\n//\n// Struct fields are decoded recursively using the field name plus \".\" as\n// prefix. The prefix (without dot) can be overridden in the field's tag.\n// Default values are not supported in the field's tag. Specify them on the\n// fields of the inner struct instead.\n//\n// Map fields must have a key of type string and are decoded recursively by\n// using the field's name plus \".' as prefix and the next element of the key\n// name as map key. The prefix (without dot) can be overridden in the field's\n// tag. Default values are not supported.\n//\n// Examples:\n//\n//     // Field is ignored.\n//     Field int `properties:\"-\"`\n//\n//     // Field is assigned value of 'Field'.\n//     Field int\n//\n//     // Field is assigned value of 'myName'.\n//     Field int `properties:\"myName\"`\n//\n//     // Field is assigned value of key 'myName' and has a default\n//     // value 15 if the key does not exist.\n//     Field int `properties:\"myName,default=15\"`\n//\n//     // Field is assigned value of key 'Field' and has a default\n//     // value 15 if the key does not exist.\n//     Field int `properties:\",default=15\"`\n//\n//     // Field is assigned value of key 'date' and the date\n//     // is in format 2006-01-02\n//     Field time.Time `properties:\"date,layout=2006-01-02\"`\n//\n//     // Field is assigned the non-empty and whitespace trimmed\n//     // values of key 'Field' split by commas.\n//     Field []string\n//\n//     // Field is assigned the non-empty and whitespace trimmed\n//     // values of key 'Field' split by commas and has a default\n//     // value [\"a\", \"b\", \"c\"] if the key does not exist.\n//     Field []string `properties:\",default=a;b;c\"`\n//\n//     // Field is decoded recursively with \"Field.\" as key prefix.\n//     Field SomeStruct\n//\n//     // Field is decoded recursively with \"myName.\" as key prefix.\n//     Field SomeStruct `properties:\"myName\"`\n//\n//     // Field is decoded recursively with \"Field.\" as key prefix\n//     // and the next dotted element of the key as map key.\n//     Field map[string]string\n//\n//     // Field is decoded recursively with \"myName.\" as key prefix\n//     // and the next dotted element of the key as map key.\n//     Field map[string]string `properties:\"myName\"`\nfunc (p *Properties) Decode(x interface{}) error {\n\tt, v := reflect.TypeOf(x), reflect.ValueOf(x)\n\tif t.Kind() != reflect.Ptr || v.Elem().Type().Kind() != reflect.Struct {\n\t\treturn fmt.Errorf(\"not a pointer to struct: %s\", t)\n\t}\n\tif err := dec(p, \"\", nil, nil, v); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc dec(p *Properties, key string, def *string, opts map[string]string, v reflect.Value) error {\n\tt := v.Type()\n\n\t// value returns the property value for key or the default if provided.\n\tvalue := func() (string, error) {\n\t\tif val, ok := p.Get(key); ok {\n\t\t\treturn val, nil\n\t\t}\n\t\tif def != nil {\n\t\t\treturn *def, nil\n\t\t}\n\t\treturn \"\", fmt.Errorf(\"missing required key %s\", key)\n\t}\n\n\t// conv converts a string to a value of the given type.\n\tconv := func(s string, t reflect.Type) (val reflect.Value, err error) {\n\t\tvar v interface{}\n\n\t\tswitch {\n\t\tcase isDuration(t):\n\t\t\tv, err = time.ParseDuration(s)\n\n\t\tcase isTime(t):\n\t\t\tlayout := opts[\"layout\"]\n\t\t\tif layout == \"\" {\n\t\t\t\tlayout = time.RFC3339\n\t\t\t}\n\t\t\tv, err = time.Parse(layout, s)\n\n\t\tcase isBool(t):\n\t\t\tv, err = boolVal(s), nil\n\n\t\tcase isString(t):\n\t\t\tv, err = s, nil\n\n\t\tcase isFloat(t):\n\t\t\tv, err = strconv.ParseFloat(s, 64)\n\n\t\tcase isInt(t):\n\t\t\tv, err = strconv.ParseInt(s, 10, 64)\n\n\t\tcase isUint(t):\n\t\t\tv, err = strconv.ParseUint(s, 10, 64)\n\n\t\tdefault:\n\t\t\treturn reflect.Zero(t), fmt.Errorf(\"unsupported type %s\", t)\n\t\t}\n\t\tif err != nil {\n\t\t\treturn reflect.Zero(t), err\n\t\t}\n\t\treturn reflect.ValueOf(v).Convert(t), nil\n\t}\n\n\t// keydef returns the property key and the default value based on the\n\t// name of the struct field and the options in the tag.\n\tkeydef := func(f reflect.StructField) (string, *string, map[string]string) {\n\t\t_key, _opts := parseTag(f.Tag.Get(\"properties\"))\n\n\t\tvar _def *string\n\t\tif d, ok := _opts[\"default\"]; ok {\n\t\t\t_def = &d\n\t\t}\n\t\tif _key != \"\" {\n\t\t\treturn _key, _def, _opts\n\t\t}\n\t\treturn f.Name, _def, _opts\n\t}\n\n\tswitch {\n\tcase isDuration(t) || isTime(t) || isBool(t) || isString(t) || isFloat(t) || isInt(t) || isUint(t):\n\t\ts, err := value()\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tval, err := conv(s, t)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tv.Set(val)\n\n\tcase isPtr(t):\n\t\treturn dec(p, key, def, opts, v.Elem())\n\n\tcase isStruct(t):\n\t\tfor i := 0; i < v.NumField(); i++ {\n\t\t\tfv := v.Field(i)\n\t\t\tfk, def, opts := keydef(t.Field(i))\n\t\t\tif !fv.CanSet() {\n\t\t\t\treturn fmt.Errorf(\"cannot set %s\", t.Field(i).Name)\n\t\t\t}\n\t\t\tif fk == \"-\" {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif key != \"\" {\n\t\t\t\tfk = key + \".\" + fk\n\t\t\t}\n\t\t\tif err := dec(p, fk, def, opts, fv); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\treturn nil\n\n\tcase isArray(t):\n\t\tval, err := value()\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tvals := split(val, \";\")\n\t\ta := reflect.MakeSlice(t, 0, len(vals))\n\t\tfor _, s := range vals {\n\t\t\tval, err := conv(s, t.Elem())\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\ta = reflect.Append(a, val)\n\t\t}\n\t\tv.Set(a)\n\n\tcase isMap(t):\n\t\tvalT := t.Elem()\n\t\tm := reflect.MakeMap(t)\n\t\tfor postfix := range p.FilterStripPrefix(key + \".\").m {\n\t\t\tpp := strings.SplitN(postfix, \".\", 2)\n\t\t\tmk, mv := pp[0], reflect.New(valT)\n\t\t\tif err := dec(p, key+\".\"+mk, nil, nil, mv); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tm.SetMapIndex(reflect.ValueOf(mk), mv.Elem())\n\t\t}\n\t\tv.Set(m)\n\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported type %s\", t)\n\t}\n\treturn nil\n}\n\n// split splits a string on sep, trims whitespace of elements\n// and omits empty elements\nfunc split(s string, sep string) []string {\n\tvar a []string\n\tfor _, v := range strings.Split(s, sep) {\n\t\tif v = strings.TrimSpace(v); v != \"\" {\n\t\t\ta = append(a, v)\n\t\t}\n\t}\n\treturn a\n}\n\n// parseTag parses a \"key,k=v,k=v,...\"\nfunc parseTag(tag string) (key string, opts map[string]string) {\n\topts = map[string]string{}\n\tfor i, s := range strings.Split(tag, \",\") {\n\t\tif i == 0 {\n\t\t\tkey = s\n\t\t\tcontinue\n\t\t}\n\n\t\tpp := strings.SplitN(s, \"=\", 2)\n\t\tif len(pp) == 1 {\n\t\t\topts[pp[0]] = \"\"\n\t\t} else {\n\t\t\topts[pp[0]] = pp[1]\n\t\t}\n\t}\n\treturn key, opts\n}\n\nfunc isArray(t reflect.Type) bool    { return t.Kind() == reflect.Array || t.Kind() == reflect.Slice }\nfunc isBool(t reflect.Type) bool     { return t.Kind() == reflect.Bool }\nfunc isDuration(t reflect.Type) bool { return t == reflect.TypeOf(time.Second) }\nfunc isMap(t reflect.Type) bool      { return t.Kind() == reflect.Map }\nfunc isPtr(t reflect.Type) bool      { return t.Kind() == reflect.Ptr }\nfunc isString(t reflect.Type) bool   { return t.Kind() == reflect.String }\nfunc isStruct(t reflect.Type) bool   { return t.Kind() == reflect.Struct }\nfunc isTime(t reflect.Type) bool     { return t == reflect.TypeOf(time.Time{}) }\nfunc isFloat(t reflect.Type) bool {\n\treturn t.Kind() == reflect.Float32 || t.Kind() == reflect.Float64\n}\nfunc isInt(t reflect.Type) bool {\n\treturn t.Kind() == reflect.Int || t.Kind() == reflect.Int8 || t.Kind() == reflect.Int16 || t.Kind() == reflect.Int32 || t.Kind() == reflect.Int64\n}\nfunc isUint(t reflect.Type) bool {\n\treturn t.Kind() == reflect.Uint || t.Kind() == reflect.Uint8 || t.Kind() == reflect.Uint16 || t.Kind() == reflect.Uint32 || t.Kind() == reflect.Uint64\n}\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/doc.go",
    "content": "// Copyright 2018 Frank Schroeder. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package properties provides functions for reading and writing\n// ISO-8859-1 and UTF-8 encoded .properties files and has\n// support for recursive property expansion.\n//\n// Java properties files are ISO-8859-1 encoded and use Unicode\n// literals for characters outside the ISO character set. Unicode\n// literals can be used in UTF-8 encoded properties files but\n// aren't necessary.\n//\n// To load a single properties file use MustLoadFile():\n//\n//   p := properties.MustLoadFile(filename, properties.UTF8)\n//\n// To load multiple properties files use MustLoadFiles()\n// which loads the files in the given order and merges the\n// result. Missing properties files can be ignored if the\n// 'ignoreMissing' flag is set to true.\n//\n// Filenames can contain environment variables which are expanded\n// before loading.\n//\n//   f1 := \"/etc/myapp/myapp.conf\"\n//   f2 := \"/home/${USER}/myapp.conf\"\n//   p := MustLoadFiles([]string{f1, f2}, properties.UTF8, true)\n//\n// All of the different key/value delimiters ' ', ':' and '=' are\n// supported as well as the comment characters '!' and '#' and\n// multi-line values.\n//\n//   ! this is a comment\n//   # and so is this\n//\n//   # the following expressions are equal\n//   key value\n//   key=value\n//   key:value\n//   key = value\n//   key : value\n//   key = val\\\n//         ue\n//\n// Properties stores all comments preceding a key and provides\n// GetComments() and SetComments() methods to retrieve and\n// update them. The convenience functions GetComment() and\n// SetComment() allow access to the last comment. The\n// WriteComment() method writes properties files including\n// the comments and with the keys in the original order.\n// This can be used for sanitizing properties files.\n//\n// Property expansion is recursive and circular references\n// and malformed expressions are not allowed and cause an\n// error. Expansion of environment variables is supported.\n//\n//   # standard property\n//   key = value\n//\n//   # property expansion: key2 = value\n//   key2 = ${key}\n//\n//   # recursive expansion: key3 = value\n//   key3 = ${key2}\n//\n//   # circular reference (error)\n//   key = ${key}\n//\n//   # malformed expression (error)\n//   key = ${ke\n//\n//   # refers to the users' home dir\n//   home = ${HOME}\n//\n//   # local key takes precedence over env var: u = foo\n//   USER = foo\n//   u = ${USER}\n//\n// The default property expansion format is ${key} but can be\n// changed by setting different pre- and postfix values on the\n// Properties object.\n//\n//   p := properties.NewProperties()\n//   p.Prefix = \"#[\"\n//   p.Postfix = \"]#\"\n//\n// Properties provides convenience functions for getting typed\n// values with default values if the key does not exist or the\n// type conversion failed.\n//\n//   # Returns true if the value is either \"1\", \"on\", \"yes\" or \"true\"\n//   # Returns false for every other value and the default value if\n//   # the key does not exist.\n//   v = p.GetBool(\"key\", false)\n//\n//   # Returns the value if the key exists and the format conversion\n//   # was successful. Otherwise, the default value is returned.\n//   v = p.GetInt64(\"key\", 999)\n//   v = p.GetUint64(\"key\", 999)\n//   v = p.GetFloat64(\"key\", 123.0)\n//   v = p.GetString(\"key\", \"def\")\n//   v = p.GetDuration(\"key\", 999)\n//\n// As an alternative properties may be applied with the standard\n// library's flag implementation at any time.\n//\n//   # Standard configuration\n//   v = flag.Int(\"key\", 999, \"help message\")\n//   flag.Parse()\n//\n//   # Merge p into the flag set\n//   p.MustFlag(flag.CommandLine)\n//\n// Properties provides several MustXXX() convenience functions\n// which will terminate the app if an error occurs. The behavior\n// of the failure is configurable and the default is to call\n// log.Fatal(err). To have the MustXXX() functions panic instead\n// of logging the error set a different ErrorHandler before\n// you use the Properties package.\n//\n//   properties.ErrorHandler = properties.PanicHandler\n//\n//   # Will panic instead of logging an error\n//   p := properties.MustLoadFile(\"config.properties\")\n//\n// You can also provide your own ErrorHandler function. The only requirement\n// is that the error handler function must exit after handling the error.\n//\n//   properties.ErrorHandler = func(err error) {\n//\t     fmt.Println(err)\n//       os.Exit(1)\n//   }\n//\n//   # Will write to stdout and then exit\n//   p := properties.MustLoadFile(\"config.properties\")\n//\n// Properties can also be loaded into a struct via the `Decode`\n// method, e.g.\n//\n//   type S struct {\n//       A string        `properties:\"a,default=foo\"`\n//       D time.Duration `properties:\"timeout,default=5s\"`\n//       E time.Time     `properties:\"expires,layout=2006-01-02,default=2015-01-01\"`\n//   }\n//\n// See `Decode()` method for the full documentation.\n//\n// The following documents provide a description of the properties\n// file format.\n//\n// http://en.wikipedia.org/wiki/.properties\n//\n// http://docs.oracle.com/javase/7/docs/api/java/util/Properties.html#load%28java.io.Reader%29\n//\npackage properties\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/go.mod",
    "content": "module github.com/magiconair/properties\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/integrate.go",
    "content": "// Copyright 2018 Frank Schroeder. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage properties\n\nimport \"flag\"\n\n// MustFlag sets flags that are skipped by dst.Parse when p contains\n// the respective key for flag.Flag.Name.\n//\n// It's use is recommended with command line arguments as in:\n// \tflag.Parse()\n// \tp.MustFlag(flag.CommandLine)\nfunc (p *Properties) MustFlag(dst *flag.FlagSet) {\n\tm := make(map[string]*flag.Flag)\n\tdst.VisitAll(func(f *flag.Flag) {\n\t\tm[f.Name] = f\n\t})\n\tdst.Visit(func(f *flag.Flag) {\n\t\tdelete(m, f.Name) // overridden\n\t})\n\n\tfor name, f := range m {\n\t\tv, ok := p.Get(name)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\n\t\tif err := f.Value.Set(v); err != nil {\n\t\t\tErrorHandler(err)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/lex.go",
    "content": "// Copyright 2018 Frank Schroeder. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n//\n// Parts of the lexer are from the template/text/parser package\n// For these parts the following applies:\n//\n// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file of the go 1.2\n// distribution.\n\npackage properties\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n\t\"unicode/utf8\"\n)\n\n// item represents a token or text string returned from the scanner.\ntype item struct {\n\ttyp itemType // The type of this item.\n\tpos int      // The starting position, in bytes, of this item in the input string.\n\tval string   // The value of this item.\n}\n\nfunc (i item) String() string {\n\tswitch {\n\tcase i.typ == itemEOF:\n\t\treturn \"EOF\"\n\tcase i.typ == itemError:\n\t\treturn i.val\n\tcase len(i.val) > 10:\n\t\treturn fmt.Sprintf(\"%.10q...\", i.val)\n\t}\n\treturn fmt.Sprintf(\"%q\", i.val)\n}\n\n// itemType identifies the type of lex items.\ntype itemType int\n\nconst (\n\titemError itemType = iota // error occurred; value is text of error\n\titemEOF\n\titemKey     // a key\n\titemValue   // a value\n\titemComment // a comment\n)\n\n// defines a constant for EOF\nconst eof = -1\n\n// permitted whitespace characters space, FF and TAB\nconst whitespace = \" \\f\\t\"\n\n// stateFn represents the state of the scanner as a function that returns the next state.\ntype stateFn func(*lexer) stateFn\n\n// lexer holds the state of the scanner.\ntype lexer struct {\n\tinput   string    // the string being scanned\n\tstate   stateFn   // the next lexing function to enter\n\tpos     int       // current position in the input\n\tstart   int       // start position of this item\n\twidth   int       // width of last rune read from input\n\tlastPos int       // position of most recent item returned by nextItem\n\trunes   []rune    // scanned runes for this item\n\titems   chan item // channel of scanned items\n}\n\n// next returns the next rune in the input.\nfunc (l *lexer) next() rune {\n\tif l.pos >= len(l.input) {\n\t\tl.width = 0\n\t\treturn eof\n\t}\n\tr, w := utf8.DecodeRuneInString(l.input[l.pos:])\n\tl.width = w\n\tl.pos += l.width\n\treturn r\n}\n\n// peek returns but does not consume the next rune in the input.\nfunc (l *lexer) peek() rune {\n\tr := l.next()\n\tl.backup()\n\treturn r\n}\n\n// backup steps back one rune. Can only be called once per call of next.\nfunc (l *lexer) backup() {\n\tl.pos -= l.width\n}\n\n// emit passes an item back to the client.\nfunc (l *lexer) emit(t itemType) {\n\ti := item{t, l.start, string(l.runes)}\n\tl.items <- i\n\tl.start = l.pos\n\tl.runes = l.runes[:0]\n}\n\n// ignore skips over the pending input before this point.\nfunc (l *lexer) ignore() {\n\tl.start = l.pos\n}\n\n// appends the rune to the current value\nfunc (l *lexer) appendRune(r rune) {\n\tl.runes = append(l.runes, r)\n}\n\n// accept consumes the next rune if it's from the valid set.\nfunc (l *lexer) accept(valid string) bool {\n\tif strings.ContainsRune(valid, l.next()) {\n\t\treturn true\n\t}\n\tl.backup()\n\treturn false\n}\n\n// acceptRun consumes a run of runes from the valid set.\nfunc (l *lexer) acceptRun(valid string) {\n\tfor strings.ContainsRune(valid, l.next()) {\n\t}\n\tl.backup()\n}\n\n// acceptRunUntil consumes a run of runes up to a terminator.\nfunc (l *lexer) acceptRunUntil(term rune) {\n\tfor term != l.next() {\n\t}\n\tl.backup()\n}\n\n// hasText returns true if the current parsed text is not empty.\nfunc (l *lexer) isNotEmpty() bool {\n\treturn l.pos > l.start\n}\n\n// lineNumber reports which line we're on, based on the position of\n// the previous item returned by nextItem. Doing it this way\n// means we don't have to worry about peek double counting.\nfunc (l *lexer) lineNumber() int {\n\treturn 1 + strings.Count(l.input[:l.lastPos], \"\\n\")\n}\n\n// errorf returns an error token and terminates the scan by passing\n// back a nil pointer that will be the next state, terminating l.nextItem.\nfunc (l *lexer) errorf(format string, args ...interface{}) stateFn {\n\tl.items <- item{itemError, l.start, fmt.Sprintf(format, args...)}\n\treturn nil\n}\n\n// nextItem returns the next item from the input.\nfunc (l *lexer) nextItem() item {\n\ti := <-l.items\n\tl.lastPos = i.pos\n\treturn i\n}\n\n// lex creates a new scanner for the input string.\nfunc lex(input string) *lexer {\n\tl := &lexer{\n\t\tinput: input,\n\t\titems: make(chan item),\n\t\trunes: make([]rune, 0, 32),\n\t}\n\tgo l.run()\n\treturn l\n}\n\n// run runs the state machine for the lexer.\nfunc (l *lexer) run() {\n\tfor l.state = lexBeforeKey(l); l.state != nil; {\n\t\tl.state = l.state(l)\n\t}\n}\n\n// state functions\n\n// lexBeforeKey scans until a key begins.\nfunc lexBeforeKey(l *lexer) stateFn {\n\tswitch r := l.next(); {\n\tcase isEOF(r):\n\t\tl.emit(itemEOF)\n\t\treturn nil\n\n\tcase isEOL(r):\n\t\tl.ignore()\n\t\treturn lexBeforeKey\n\n\tcase isComment(r):\n\t\treturn lexComment\n\n\tcase isWhitespace(r):\n\t\tl.ignore()\n\t\treturn lexBeforeKey\n\n\tdefault:\n\t\tl.backup()\n\t\treturn lexKey\n\t}\n}\n\n// lexComment scans a comment line. The comment character has already been scanned.\nfunc lexComment(l *lexer) stateFn {\n\tl.acceptRun(whitespace)\n\tl.ignore()\n\tfor {\n\t\tswitch r := l.next(); {\n\t\tcase isEOF(r):\n\t\t\tl.ignore()\n\t\t\tl.emit(itemEOF)\n\t\t\treturn nil\n\t\tcase isEOL(r):\n\t\t\tl.emit(itemComment)\n\t\t\treturn lexBeforeKey\n\t\tdefault:\n\t\t\tl.appendRune(r)\n\t\t}\n\t}\n}\n\n// lexKey scans the key up to a delimiter\nfunc lexKey(l *lexer) stateFn {\n\tvar r rune\n\nLoop:\n\tfor {\n\t\tswitch r = l.next(); {\n\n\t\tcase isEscape(r):\n\t\t\terr := l.scanEscapeSequence()\n\t\t\tif err != nil {\n\t\t\t\treturn l.errorf(err.Error())\n\t\t\t}\n\n\t\tcase isEndOfKey(r):\n\t\t\tl.backup()\n\t\t\tbreak Loop\n\n\t\tcase isEOF(r):\n\t\t\tbreak Loop\n\n\t\tdefault:\n\t\t\tl.appendRune(r)\n\t\t}\n\t}\n\n\tif len(l.runes) > 0 {\n\t\tl.emit(itemKey)\n\t}\n\n\tif isEOF(r) {\n\t\tl.emit(itemEOF)\n\t\treturn nil\n\t}\n\n\treturn lexBeforeValue\n}\n\n// lexBeforeValue scans the delimiter between key and value.\n// Leading and trailing whitespace is ignored.\n// We expect to be just after the key.\nfunc lexBeforeValue(l *lexer) stateFn {\n\tl.acceptRun(whitespace)\n\tl.accept(\":=\")\n\tl.acceptRun(whitespace)\n\tl.ignore()\n\treturn lexValue\n}\n\n// lexValue scans text until the end of the line. We expect to be just after the delimiter.\nfunc lexValue(l *lexer) stateFn {\n\tfor {\n\t\tswitch r := l.next(); {\n\t\tcase isEscape(r):\n\t\t\tif isEOL(l.peek()) {\n\t\t\t\tl.next()\n\t\t\t\tl.acceptRun(whitespace)\n\t\t\t} else {\n\t\t\t\terr := l.scanEscapeSequence()\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn l.errorf(err.Error())\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase isEOL(r):\n\t\t\tl.emit(itemValue)\n\t\t\tl.ignore()\n\t\t\treturn lexBeforeKey\n\n\t\tcase isEOF(r):\n\t\t\tl.emit(itemValue)\n\t\t\tl.emit(itemEOF)\n\t\t\treturn nil\n\n\t\tdefault:\n\t\t\tl.appendRune(r)\n\t\t}\n\t}\n}\n\n// scanEscapeSequence scans either one of the escaped characters\n// or a unicode literal. We expect to be after the escape character.\nfunc (l *lexer) scanEscapeSequence() error {\n\tswitch r := l.next(); {\n\n\tcase isEscapedCharacter(r):\n\t\tl.appendRune(decodeEscapedCharacter(r))\n\t\treturn nil\n\n\tcase atUnicodeLiteral(r):\n\t\treturn l.scanUnicodeLiteral()\n\n\tcase isEOF(r):\n\t\treturn fmt.Errorf(\"premature EOF\")\n\n\t// silently drop the escape character and append the rune as is\n\tdefault:\n\t\tl.appendRune(r)\n\t\treturn nil\n\t}\n}\n\n// scans a unicode literal in the form \\uXXXX. We expect to be after the \\u.\nfunc (l *lexer) scanUnicodeLiteral() error {\n\t// scan the digits\n\td := make([]rune, 4)\n\tfor i := 0; i < 4; i++ {\n\t\td[i] = l.next()\n\t\tif d[i] == eof || !strings.ContainsRune(\"0123456789abcdefABCDEF\", d[i]) {\n\t\t\treturn fmt.Errorf(\"invalid unicode literal\")\n\t\t}\n\t}\n\n\t// decode the digits into a rune\n\tr, err := strconv.ParseInt(string(d), 16, 0)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tl.appendRune(rune(r))\n\treturn nil\n}\n\n// decodeEscapedCharacter returns the unescaped rune. We expect to be after the escape character.\nfunc decodeEscapedCharacter(r rune) rune {\n\tswitch r {\n\tcase 'f':\n\t\treturn '\\f'\n\tcase 'n':\n\t\treturn '\\n'\n\tcase 'r':\n\t\treturn '\\r'\n\tcase 't':\n\t\treturn '\\t'\n\tdefault:\n\t\treturn r\n\t}\n}\n\n// atUnicodeLiteral reports whether we are at a unicode literal.\n// The escape character has already been consumed.\nfunc atUnicodeLiteral(r rune) bool {\n\treturn r == 'u'\n}\n\n// isComment reports whether we are at the start of a comment.\nfunc isComment(r rune) bool {\n\treturn r == '#' || r == '!'\n}\n\n// isEndOfKey reports whether the rune terminates the current key.\nfunc isEndOfKey(r rune) bool {\n\treturn strings.ContainsRune(\" \\f\\t\\r\\n:=\", r)\n}\n\n// isEOF reports whether we are at EOF.\nfunc isEOF(r rune) bool {\n\treturn r == eof\n}\n\n// isEOL reports whether we are at a new line character.\nfunc isEOL(r rune) bool {\n\treturn r == '\\n' || r == '\\r'\n}\n\n// isEscape reports whether the rune is the escape character which\n// prefixes unicode literals and other escaped characters.\nfunc isEscape(r rune) bool {\n\treturn r == '\\\\'\n}\n\n// isEscapedCharacter reports whether we are at one of the characters that need escaping.\n// The escape character has already been consumed.\nfunc isEscapedCharacter(r rune) bool {\n\treturn strings.ContainsRune(\" :=fnrt\", r)\n}\n\n// isWhitespace reports whether the rune is a whitespace character.\nfunc isWhitespace(r rune) bool {\n\treturn strings.ContainsRune(whitespace, r)\n}\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/load.go",
    "content": "// Copyright 2018 Frank Schroeder. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage properties\n\nimport (\n\t\"fmt\"\n\t\"io/ioutil\"\n\t\"net/http\"\n\t\"os\"\n\t\"strings\"\n)\n\n// Encoding specifies encoding of the input data.\ntype Encoding uint\n\nconst (\n\t// utf8Default is a private placeholder for the zero value of Encoding to\n\t// ensure that it has the correct meaning. UTF8 is the default encoding but\n\t// was assigned a non-zero value which cannot be changed without breaking\n\t// existing code. Clients should continue to use the public constants.\n\tutf8Default Encoding = iota\n\n\t// UTF8 interprets the input data as UTF-8.\n\tUTF8\n\n\t// ISO_8859_1 interprets the input data as ISO-8859-1.\n\tISO_8859_1\n)\n\ntype Loader struct {\n\t// Encoding determines how the data from files and byte buffers\n\t// is interpreted. For URLs the Content-Type header is used\n\t// to determine the encoding of the data.\n\tEncoding Encoding\n\n\t// DisableExpansion configures the property expansion of the\n\t// returned property object. When set to true, the property values\n\t// will not be expanded and the Property object will not be checked\n\t// for invalid expansion expressions.\n\tDisableExpansion bool\n\n\t// IgnoreMissing configures whether missing files or URLs which return\n\t// 404 are reported as errors. When set to true, missing files and 404\n\t// status codes are not reported as errors.\n\tIgnoreMissing bool\n}\n\n// Load reads a buffer into a Properties struct.\nfunc (l *Loader) LoadBytes(buf []byte) (*Properties, error) {\n\treturn l.loadBytes(buf, l.Encoding)\n}\n\n// LoadAll reads the content of multiple URLs or files in the given order into\n// a Properties struct. If IgnoreMissing is true then a 404 status code or\n// missing file will not be reported as error. Encoding sets the encoding for\n// files. For the URLs see LoadURL for the Content-Type header and the\n// encoding.\nfunc (l *Loader) LoadAll(names []string) (*Properties, error) {\n\tall := NewProperties()\n\tfor _, name := range names {\n\t\tn, err := expandName(name)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tvar p *Properties\n\t\tswitch {\n\t\tcase strings.HasPrefix(n, \"http://\"):\n\t\t\tp, err = l.LoadURL(n)\n\t\tcase strings.HasPrefix(n, \"https://\"):\n\t\t\tp, err = l.LoadURL(n)\n\t\tdefault:\n\t\t\tp, err = l.LoadFile(n)\n\t\t}\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tall.Merge(p)\n\t}\n\n\tall.DisableExpansion = l.DisableExpansion\n\tif all.DisableExpansion {\n\t\treturn all, nil\n\t}\n\treturn all, all.check()\n}\n\n// LoadFile reads a file into a Properties struct.\n// If IgnoreMissing is true then a missing file will not be\n// reported as error.\nfunc (l *Loader) LoadFile(filename string) (*Properties, error) {\n\tdata, err := ioutil.ReadFile(filename)\n\tif err != nil {\n\t\tif l.IgnoreMissing && os.IsNotExist(err) {\n\t\t\tLogPrintf(\"properties: %s not found. skipping\", filename)\n\t\t\treturn NewProperties(), nil\n\t\t}\n\t\treturn nil, err\n\t}\n\treturn l.loadBytes(data, l.Encoding)\n}\n\n// LoadURL reads the content of the URL into a Properties struct.\n//\n// The encoding is determined via the Content-Type header which\n// should be set to 'text/plain'. If the 'charset' parameter is\n// missing, 'iso-8859-1' or 'latin1' the encoding is set to\n// ISO-8859-1. If the 'charset' parameter is set to 'utf-8' the\n// encoding is set to UTF-8. A missing content type header is\n// interpreted as 'text/plain; charset=utf-8'.\nfunc (l *Loader) LoadURL(url string) (*Properties, error) {\n\tresp, err := http.Get(url)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"properties: error fetching %q. %s\", url, err)\n\t}\n\tdefer resp.Body.Close()\n\n\tif resp.StatusCode == 404 && l.IgnoreMissing {\n\t\tLogPrintf(\"properties: %s returned %d. skipping\", url, resp.StatusCode)\n\t\treturn NewProperties(), nil\n\t}\n\n\tif resp.StatusCode != 200 {\n\t\treturn nil, fmt.Errorf(\"properties: %s returned %d\", url, resp.StatusCode)\n\t}\n\n\tbody, err := ioutil.ReadAll(resp.Body)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"properties: %s error reading response. %s\", url, err)\n\t}\n\n\tct := resp.Header.Get(\"Content-Type\")\n\tvar enc Encoding\n\tswitch strings.ToLower(ct) {\n\tcase \"text/plain\", \"text/plain; charset=iso-8859-1\", \"text/plain; charset=latin1\":\n\t\tenc = ISO_8859_1\n\tcase \"\", \"text/plain; charset=utf-8\":\n\t\tenc = UTF8\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"properties: invalid content type %s\", ct)\n\t}\n\n\treturn l.loadBytes(body, enc)\n}\n\nfunc (l *Loader) loadBytes(buf []byte, enc Encoding) (*Properties, error) {\n\tp, err := parse(convert(buf, enc))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tp.DisableExpansion = l.DisableExpansion\n\tif p.DisableExpansion {\n\t\treturn p, nil\n\t}\n\treturn p, p.check()\n}\n\n// Load reads a buffer into a Properties struct.\nfunc Load(buf []byte, enc Encoding) (*Properties, error) {\n\tl := &Loader{Encoding: enc}\n\treturn l.LoadBytes(buf)\n}\n\n// LoadString reads an UTF8 string into a properties struct.\nfunc LoadString(s string) (*Properties, error) {\n\tl := &Loader{Encoding: UTF8}\n\treturn l.LoadBytes([]byte(s))\n}\n\n// LoadMap creates a new Properties struct from a string map.\nfunc LoadMap(m map[string]string) *Properties {\n\tp := NewProperties()\n\tfor k, v := range m {\n\t\tp.Set(k, v)\n\t}\n\treturn p\n}\n\n// LoadFile reads a file into a Properties struct.\nfunc LoadFile(filename string, enc Encoding) (*Properties, error) {\n\tl := &Loader{Encoding: enc}\n\treturn l.LoadAll([]string{filename})\n}\n\n// LoadFiles reads multiple files in the given order into\n// a Properties struct. If 'ignoreMissing' is true then\n// non-existent files will not be reported as error.\nfunc LoadFiles(filenames []string, enc Encoding, ignoreMissing bool) (*Properties, error) {\n\tl := &Loader{Encoding: enc, IgnoreMissing: ignoreMissing}\n\treturn l.LoadAll(filenames)\n}\n\n// LoadURL reads the content of the URL into a Properties struct.\n// See Loader#LoadURL for details.\nfunc LoadURL(url string) (*Properties, error) {\n\tl := &Loader{Encoding: UTF8}\n\treturn l.LoadAll([]string{url})\n}\n\n// LoadURLs reads the content of multiple URLs in the given order into a\n// Properties struct. If IgnoreMissing is true then a 404 status code will\n// not be reported as error. See Loader#LoadURL for the Content-Type header\n// and the encoding.\nfunc LoadURLs(urls []string, ignoreMissing bool) (*Properties, error) {\n\tl := &Loader{Encoding: UTF8, IgnoreMissing: ignoreMissing}\n\treturn l.LoadAll(urls)\n}\n\n// LoadAll reads the content of multiple URLs or files in the given order into a\n// Properties struct. If 'ignoreMissing' is true then a 404 status code or missing file will\n// not be reported as error. Encoding sets the encoding for files. For the URLs please see\n// LoadURL for the Content-Type header and the encoding.\nfunc LoadAll(names []string, enc Encoding, ignoreMissing bool) (*Properties, error) {\n\tl := &Loader{Encoding: enc, IgnoreMissing: ignoreMissing}\n\treturn l.LoadAll(names)\n}\n\n// MustLoadString reads an UTF8 string into a Properties struct and\n// panics on error.\nfunc MustLoadString(s string) *Properties {\n\treturn must(LoadString(s))\n}\n\n// MustLoadFile reads a file into a Properties struct and\n// panics on error.\nfunc MustLoadFile(filename string, enc Encoding) *Properties {\n\treturn must(LoadFile(filename, enc))\n}\n\n// MustLoadFiles reads multiple files in the given order into\n// a Properties struct and panics on error. If 'ignoreMissing'\n// is true then non-existent files will not be reported as error.\nfunc MustLoadFiles(filenames []string, enc Encoding, ignoreMissing bool) *Properties {\n\treturn must(LoadFiles(filenames, enc, ignoreMissing))\n}\n\n// MustLoadURL reads the content of a URL into a Properties struct and\n// panics on error.\nfunc MustLoadURL(url string) *Properties {\n\treturn must(LoadURL(url))\n}\n\n// MustLoadURLs reads the content of multiple URLs in the given order into a\n// Properties struct and panics on error. If 'ignoreMissing' is true then a 404\n// status code will not be reported as error.\nfunc MustLoadURLs(urls []string, ignoreMissing bool) *Properties {\n\treturn must(LoadURLs(urls, ignoreMissing))\n}\n\n// MustLoadAll reads the content of multiple URLs or files in the given order into a\n// Properties struct. If 'ignoreMissing' is true then a 404 status code or missing file will\n// not be reported as error. Encoding sets the encoding for files. For the URLs please see\n// LoadURL for the Content-Type header and the encoding. It panics on error.\nfunc MustLoadAll(names []string, enc Encoding, ignoreMissing bool) *Properties {\n\treturn must(LoadAll(names, enc, ignoreMissing))\n}\n\nfunc must(p *Properties, err error) *Properties {\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn p\n}\n\n// expandName expands ${ENV_VAR} expressions in a name.\n// If the environment variable does not exist then it will be replaced\n// with an empty string. Malformed expressions like \"${ENV_VAR\" will\n// be reported as error.\nfunc expandName(name string) (string, error) {\n\treturn expand(name, []string{}, \"${\", \"}\", make(map[string]string))\n}\n\n// Interprets a byte buffer either as an ISO-8859-1 or UTF-8 encoded string.\n// For ISO-8859-1 we can convert each byte straight into a rune since the\n// first 256 unicode code points cover ISO-8859-1.\nfunc convert(buf []byte, enc Encoding) string {\n\tswitch enc {\n\tcase utf8Default, UTF8:\n\t\treturn string(buf)\n\tcase ISO_8859_1:\n\t\trunes := make([]rune, len(buf))\n\t\tfor i, b := range buf {\n\t\t\trunes[i] = rune(b)\n\t\t}\n\t\treturn string(runes)\n\tdefault:\n\t\tErrorHandler(fmt.Errorf(\"unsupported encoding %v\", enc))\n\t}\n\tpanic(\"ErrorHandler should exit\")\n}\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/parser.go",
    "content": "// Copyright 2018 Frank Schroeder. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage properties\n\nimport (\n\t\"fmt\"\n\t\"runtime\"\n)\n\ntype parser struct {\n\tlex *lexer\n}\n\nfunc parse(input string) (properties *Properties, err error) {\n\tp := &parser{lex: lex(input)}\n\tdefer p.recover(&err)\n\n\tproperties = NewProperties()\n\tkey := \"\"\n\tcomments := []string{}\n\n\tfor {\n\t\ttoken := p.expectOneOf(itemComment, itemKey, itemEOF)\n\t\tswitch token.typ {\n\t\tcase itemEOF:\n\t\t\tgoto done\n\t\tcase itemComment:\n\t\t\tcomments = append(comments, token.val)\n\t\t\tcontinue\n\t\tcase itemKey:\n\t\t\tkey = token.val\n\t\t\tif _, ok := properties.m[key]; !ok {\n\t\t\t\tproperties.k = append(properties.k, key)\n\t\t\t}\n\t\t}\n\n\t\ttoken = p.expectOneOf(itemValue, itemEOF)\n\t\tif len(comments) > 0 {\n\t\t\tproperties.c[key] = comments\n\t\t\tcomments = []string{}\n\t\t}\n\t\tswitch token.typ {\n\t\tcase itemEOF:\n\t\t\tproperties.m[key] = \"\"\n\t\t\tgoto done\n\t\tcase itemValue:\n\t\t\tproperties.m[key] = token.val\n\t\t}\n\t}\n\ndone:\n\treturn properties, nil\n}\n\nfunc (p *parser) errorf(format string, args ...interface{}) {\n\tformat = fmt.Sprintf(\"properties: Line %d: %s\", p.lex.lineNumber(), format)\n\tpanic(fmt.Errorf(format, args...))\n}\n\nfunc (p *parser) expect(expected itemType) (token item) {\n\ttoken = p.lex.nextItem()\n\tif token.typ != expected {\n\t\tp.unexpected(token)\n\t}\n\treturn token\n}\n\nfunc (p *parser) expectOneOf(expected ...itemType) (token item) {\n\ttoken = p.lex.nextItem()\n\tfor _, v := range expected {\n\t\tif token.typ == v {\n\t\t\treturn token\n\t\t}\n\t}\n\tp.unexpected(token)\n\tpanic(\"unexpected token\")\n}\n\nfunc (p *parser) unexpected(token item) {\n\tp.errorf(token.String())\n}\n\n// recover is the handler that turns panics into returns from the top level of Parse.\nfunc (p *parser) recover(errp *error) {\n\te := recover()\n\tif e != nil {\n\t\tif _, ok := e.(runtime.Error); ok {\n\t\t\tpanic(e)\n\t\t}\n\t\t*errp = e.(error)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/properties.go",
    "content": "// Copyright 2018 Frank Schroeder. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage properties\n\n// BUG(frank): Set() does not check for invalid unicode literals since this is currently handled by the lexer.\n// BUG(frank): Write() does not allow to configure the newline character. Therefore, on Windows LF is used.\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"os\"\n\t\"regexp\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n\t\"unicode/utf8\"\n)\n\nconst maxExpansionDepth = 64\n\n// ErrorHandlerFunc defines the type of function which handles failures\n// of the MustXXX() functions. An error handler function must exit\n// the application after handling the error.\ntype ErrorHandlerFunc func(error)\n\n// ErrorHandler is the function which handles failures of the MustXXX()\n// functions. The default is LogFatalHandler.\nvar ErrorHandler ErrorHandlerFunc = LogFatalHandler\n\n// LogHandlerFunc defines the function prototype for logging errors.\ntype LogHandlerFunc func(fmt string, args ...interface{})\n\n// LogPrintf defines a log handler which uses log.Printf.\nvar LogPrintf LogHandlerFunc = log.Printf\n\n// LogFatalHandler handles the error by logging a fatal error and exiting.\nfunc LogFatalHandler(err error) {\n\tlog.Fatal(err)\n}\n\n// PanicHandler handles the error by panicking.\nfunc PanicHandler(err error) {\n\tpanic(err)\n}\n\n// -----------------------------------------------------------------------------\n\n// A Properties contains the key/value pairs from the properties input.\n// All values are stored in unexpanded form and are expanded at runtime\ntype Properties struct {\n\t// Pre-/Postfix for property expansion.\n\tPrefix  string\n\tPostfix string\n\n\t// DisableExpansion controls the expansion of properties on Get()\n\t// and the check for circular references on Set(). When set to\n\t// true Properties behaves like a simple key/value store and does\n\t// not check for circular references on Get() or on Set().\n\tDisableExpansion bool\n\n\t// Stores the key/value pairs\n\tm map[string]string\n\n\t// Stores the comments per key.\n\tc map[string][]string\n\n\t// Stores the keys in order of appearance.\n\tk []string\n}\n\n// NewProperties creates a new Properties struct with the default\n// configuration for \"${key}\" expressions.\nfunc NewProperties() *Properties {\n\treturn &Properties{\n\t\tPrefix:  \"${\",\n\t\tPostfix: \"}\",\n\t\tm:       map[string]string{},\n\t\tc:       map[string][]string{},\n\t\tk:       []string{},\n\t}\n}\n\n// Load reads a buffer into the given Properties struct.\nfunc (p *Properties) Load(buf []byte, enc Encoding) error {\n\tl := &Loader{Encoding: enc, DisableExpansion: p.DisableExpansion}\n\tnewProperties, err := l.LoadBytes(buf)\n\tif err != nil {\n\t\treturn err\n\t}\n\tp.Merge(newProperties)\n\treturn nil\n}\n\n// Get returns the expanded value for the given key if exists.\n// Otherwise, ok is false.\nfunc (p *Properties) Get(key string) (value string, ok bool) {\n\tv, ok := p.m[key]\n\tif p.DisableExpansion {\n\t\treturn v, ok\n\t}\n\tif !ok {\n\t\treturn \"\", false\n\t}\n\n\texpanded, err := p.expand(key, v)\n\n\t// we guarantee that the expanded value is free of\n\t// circular references and malformed expressions\n\t// so we panic if we still get an error here.\n\tif err != nil {\n\t\tErrorHandler(fmt.Errorf(\"%s in %q\", err, key+\" = \"+v))\n\t}\n\n\treturn expanded, true\n}\n\n// MustGet returns the expanded value for the given key if exists.\n// Otherwise, it panics.\nfunc (p *Properties) MustGet(key string) string {\n\tif v, ok := p.Get(key); ok {\n\t\treturn v\n\t}\n\tErrorHandler(invalidKeyError(key))\n\tpanic(\"ErrorHandler should exit\")\n}\n\n// ----------------------------------------------------------------------------\n\n// ClearComments removes the comments for all keys.\nfunc (p *Properties) ClearComments() {\n\tp.c = map[string][]string{}\n}\n\n// ----------------------------------------------------------------------------\n\n// GetComment returns the last comment before the given key or an empty string.\nfunc (p *Properties) GetComment(key string) string {\n\tcomments, ok := p.c[key]\n\tif !ok || len(comments) == 0 {\n\t\treturn \"\"\n\t}\n\treturn comments[len(comments)-1]\n}\n\n// ----------------------------------------------------------------------------\n\n// GetComments returns all comments that appeared before the given key or nil.\nfunc (p *Properties) GetComments(key string) []string {\n\tif comments, ok := p.c[key]; ok {\n\t\treturn comments\n\t}\n\treturn nil\n}\n\n// ----------------------------------------------------------------------------\n\n// SetComment sets the comment for the key.\nfunc (p *Properties) SetComment(key, comment string) {\n\tp.c[key] = []string{comment}\n}\n\n// ----------------------------------------------------------------------------\n\n// SetComments sets the comments for the key. If the comments are nil then\n// all comments for this key are deleted.\nfunc (p *Properties) SetComments(key string, comments []string) {\n\tif comments == nil {\n\t\tdelete(p.c, key)\n\t\treturn\n\t}\n\tp.c[key] = comments\n}\n\n// ----------------------------------------------------------------------------\n\n// GetBool checks if the expanded value is one of '1', 'yes',\n// 'true' or 'on' if the key exists. The comparison is case-insensitive.\n// If the key does not exist the default value is returned.\nfunc (p *Properties) GetBool(key string, def bool) bool {\n\tv, err := p.getBool(key)\n\tif err != nil {\n\t\treturn def\n\t}\n\treturn v\n}\n\n// MustGetBool checks if the expanded value is one of '1', 'yes',\n// 'true' or 'on' if the key exists. The comparison is case-insensitive.\n// If the key does not exist the function panics.\nfunc (p *Properties) MustGetBool(key string) bool {\n\tv, err := p.getBool(key)\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn v\n}\n\nfunc (p *Properties) getBool(key string) (value bool, err error) {\n\tif v, ok := p.Get(key); ok {\n\t\treturn boolVal(v), nil\n\t}\n\treturn false, invalidKeyError(key)\n}\n\nfunc boolVal(v string) bool {\n\tv = strings.ToLower(v)\n\treturn v == \"1\" || v == \"true\" || v == \"yes\" || v == \"on\"\n}\n\n// ----------------------------------------------------------------------------\n\n// GetDuration parses the expanded value as an time.Duration (in ns) if the\n// key exists. If key does not exist or the value cannot be parsed the default\n// value is returned. In almost all cases you want to use GetParsedDuration().\nfunc (p *Properties) GetDuration(key string, def time.Duration) time.Duration {\n\tv, err := p.getInt64(key)\n\tif err != nil {\n\t\treturn def\n\t}\n\treturn time.Duration(v)\n}\n\n// MustGetDuration parses the expanded value as an time.Duration (in ns) if\n// the key exists. If key does not exist or the value cannot be parsed the\n// function panics. In almost all cases you want to use MustGetParsedDuration().\nfunc (p *Properties) MustGetDuration(key string) time.Duration {\n\tv, err := p.getInt64(key)\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn time.Duration(v)\n}\n\n// ----------------------------------------------------------------------------\n\n// GetParsedDuration parses the expanded value with time.ParseDuration() if the key exists.\n// If key does not exist or the value cannot be parsed the default\n// value is returned.\nfunc (p *Properties) GetParsedDuration(key string, def time.Duration) time.Duration {\n\ts, ok := p.Get(key)\n\tif !ok {\n\t\treturn def\n\t}\n\tv, err := time.ParseDuration(s)\n\tif err != nil {\n\t\treturn def\n\t}\n\treturn v\n}\n\n// MustGetParsedDuration parses the expanded value with time.ParseDuration() if the key exists.\n// If key does not exist or the value cannot be parsed the function panics.\nfunc (p *Properties) MustGetParsedDuration(key string) time.Duration {\n\ts, ok := p.Get(key)\n\tif !ok {\n\t\tErrorHandler(invalidKeyError(key))\n\t}\n\tv, err := time.ParseDuration(s)\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn v\n}\n\n// ----------------------------------------------------------------------------\n\n// GetFloat64 parses the expanded value as a float64 if the key exists.\n// If key does not exist or the value cannot be parsed the default\n// value is returned.\nfunc (p *Properties) GetFloat64(key string, def float64) float64 {\n\tv, err := p.getFloat64(key)\n\tif err != nil {\n\t\treturn def\n\t}\n\treturn v\n}\n\n// MustGetFloat64 parses the expanded value as a float64 if the key exists.\n// If key does not exist or the value cannot be parsed the function panics.\nfunc (p *Properties) MustGetFloat64(key string) float64 {\n\tv, err := p.getFloat64(key)\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn v\n}\n\nfunc (p *Properties) getFloat64(key string) (value float64, err error) {\n\tif v, ok := p.Get(key); ok {\n\t\tvalue, err = strconv.ParseFloat(v, 64)\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\treturn value, nil\n\t}\n\treturn 0, invalidKeyError(key)\n}\n\n// ----------------------------------------------------------------------------\n\n// GetInt parses the expanded value as an int if the key exists.\n// If key does not exist or the value cannot be parsed the default\n// value is returned. If the value does not fit into an int the\n// function panics with an out of range error.\nfunc (p *Properties) GetInt(key string, def int) int {\n\tv, err := p.getInt64(key)\n\tif err != nil {\n\t\treturn def\n\t}\n\treturn intRangeCheck(key, v)\n}\n\n// MustGetInt parses the expanded value as an int if the key exists.\n// If key does not exist or the value cannot be parsed the function panics.\n// If the value does not fit into an int the function panics with\n// an out of range error.\nfunc (p *Properties) MustGetInt(key string) int {\n\tv, err := p.getInt64(key)\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn intRangeCheck(key, v)\n}\n\n// ----------------------------------------------------------------------------\n\n// GetInt64 parses the expanded value as an int64 if the key exists.\n// If key does not exist or the value cannot be parsed the default\n// value is returned.\nfunc (p *Properties) GetInt64(key string, def int64) int64 {\n\tv, err := p.getInt64(key)\n\tif err != nil {\n\t\treturn def\n\t}\n\treturn v\n}\n\n// MustGetInt64 parses the expanded value as an int if the key exists.\n// If key does not exist or the value cannot be parsed the function panics.\nfunc (p *Properties) MustGetInt64(key string) int64 {\n\tv, err := p.getInt64(key)\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn v\n}\n\nfunc (p *Properties) getInt64(key string) (value int64, err error) {\n\tif v, ok := p.Get(key); ok {\n\t\tvalue, err = strconv.ParseInt(v, 10, 64)\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\treturn value, nil\n\t}\n\treturn 0, invalidKeyError(key)\n}\n\n// ----------------------------------------------------------------------------\n\n// GetUint parses the expanded value as an uint if the key exists.\n// If key does not exist or the value cannot be parsed the default\n// value is returned. If the value does not fit into an int the\n// function panics with an out of range error.\nfunc (p *Properties) GetUint(key string, def uint) uint {\n\tv, err := p.getUint64(key)\n\tif err != nil {\n\t\treturn def\n\t}\n\treturn uintRangeCheck(key, v)\n}\n\n// MustGetUint parses the expanded value as an int if the key exists.\n// If key does not exist or the value cannot be parsed the function panics.\n// If the value does not fit into an int the function panics with\n// an out of range error.\nfunc (p *Properties) MustGetUint(key string) uint {\n\tv, err := p.getUint64(key)\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn uintRangeCheck(key, v)\n}\n\n// ----------------------------------------------------------------------------\n\n// GetUint64 parses the expanded value as an uint64 if the key exists.\n// If key does not exist or the value cannot be parsed the default\n// value is returned.\nfunc (p *Properties) GetUint64(key string, def uint64) uint64 {\n\tv, err := p.getUint64(key)\n\tif err != nil {\n\t\treturn def\n\t}\n\treturn v\n}\n\n// MustGetUint64 parses the expanded value as an int if the key exists.\n// If key does not exist or the value cannot be parsed the function panics.\nfunc (p *Properties) MustGetUint64(key string) uint64 {\n\tv, err := p.getUint64(key)\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn v\n}\n\nfunc (p *Properties) getUint64(key string) (value uint64, err error) {\n\tif v, ok := p.Get(key); ok {\n\t\tvalue, err = strconv.ParseUint(v, 10, 64)\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\treturn value, nil\n\t}\n\treturn 0, invalidKeyError(key)\n}\n\n// ----------------------------------------------------------------------------\n\n// GetString returns the expanded value for the given key if exists or\n// the default value otherwise.\nfunc (p *Properties) GetString(key, def string) string {\n\tif v, ok := p.Get(key); ok {\n\t\treturn v\n\t}\n\treturn def\n}\n\n// MustGetString returns the expanded value for the given key if exists or\n// panics otherwise.\nfunc (p *Properties) MustGetString(key string) string {\n\tif v, ok := p.Get(key); ok {\n\t\treturn v\n\t}\n\tErrorHandler(invalidKeyError(key))\n\tpanic(\"ErrorHandler should exit\")\n}\n\n// ----------------------------------------------------------------------------\n\n// Filter returns a new properties object which contains all properties\n// for which the key matches the pattern.\nfunc (p *Properties) Filter(pattern string) (*Properties, error) {\n\tre, err := regexp.Compile(pattern)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn p.FilterRegexp(re), nil\n}\n\n// FilterRegexp returns a new properties object which contains all properties\n// for which the key matches the regular expression.\nfunc (p *Properties) FilterRegexp(re *regexp.Regexp) *Properties {\n\tpp := NewProperties()\n\tfor _, k := range p.k {\n\t\tif re.MatchString(k) {\n\t\t\t// TODO(fs): we are ignoring the error which flags a circular reference.\n\t\t\t// TODO(fs): since we are just copying a subset of keys this cannot happen (fingers crossed)\n\t\t\tpp.Set(k, p.m[k])\n\t\t}\n\t}\n\treturn pp\n}\n\n// FilterPrefix returns a new properties object with a subset of all keys\n// with the given prefix.\nfunc (p *Properties) FilterPrefix(prefix string) *Properties {\n\tpp := NewProperties()\n\tfor _, k := range p.k {\n\t\tif strings.HasPrefix(k, prefix) {\n\t\t\t// TODO(fs): we are ignoring the error which flags a circular reference.\n\t\t\t// TODO(fs): since we are just copying a subset of keys this cannot happen (fingers crossed)\n\t\t\tpp.Set(k, p.m[k])\n\t\t}\n\t}\n\treturn pp\n}\n\n// FilterStripPrefix returns a new properties object with a subset of all keys\n// with the given prefix and the prefix removed from the keys.\nfunc (p *Properties) FilterStripPrefix(prefix string) *Properties {\n\tpp := NewProperties()\n\tn := len(prefix)\n\tfor _, k := range p.k {\n\t\tif len(k) > len(prefix) && strings.HasPrefix(k, prefix) {\n\t\t\t// TODO(fs): we are ignoring the error which flags a circular reference.\n\t\t\t// TODO(fs): since we are modifying keys I am not entirely sure whether we can create a circular reference\n\t\t\t// TODO(fs): this function should probably return an error but the signature is fixed\n\t\t\tpp.Set(k[n:], p.m[k])\n\t\t}\n\t}\n\treturn pp\n}\n\n// Len returns the number of keys.\nfunc (p *Properties) Len() int {\n\treturn len(p.m)\n}\n\n// Keys returns all keys in the same order as in the input.\nfunc (p *Properties) Keys() []string {\n\tkeys := make([]string, len(p.k))\n\tcopy(keys, p.k)\n\treturn keys\n}\n\n// Set sets the property key to the corresponding value.\n// If a value for key existed before then ok is true and prev\n// contains the previous value. If the value contains a\n// circular reference or a malformed expression then\n// an error is returned.\n// An empty key is silently ignored.\nfunc (p *Properties) Set(key, value string) (prev string, ok bool, err error) {\n\tif key == \"\" {\n\t\treturn \"\", false, nil\n\t}\n\n\t// if expansion is disabled we allow circular references\n\tif p.DisableExpansion {\n\t\tprev, ok = p.Get(key)\n\t\tp.m[key] = value\n\t\tif !ok {\n\t\t\tp.k = append(p.k, key)\n\t\t}\n\t\treturn prev, ok, nil\n\t}\n\n\t// to check for a circular reference we temporarily need\n\t// to set the new value. If there is an error then revert\n\t// to the previous state. Only if all tests are successful\n\t// then we add the key to the p.k list.\n\tprev, ok = p.Get(key)\n\tp.m[key] = value\n\n\t// now check for a circular reference\n\t_, err = p.expand(key, value)\n\tif err != nil {\n\n\t\t// revert to the previous state\n\t\tif ok {\n\t\t\tp.m[key] = prev\n\t\t} else {\n\t\t\tdelete(p.m, key)\n\t\t}\n\n\t\treturn \"\", false, err\n\t}\n\n\tif !ok {\n\t\tp.k = append(p.k, key)\n\t}\n\n\treturn prev, ok, nil\n}\n\n// SetValue sets property key to the default string value\n// as defined by fmt.Sprintf(\"%v\").\nfunc (p *Properties) SetValue(key string, value interface{}) error {\n\t_, _, err := p.Set(key, fmt.Sprintf(\"%v\", value))\n\treturn err\n}\n\n// MustSet sets the property key to the corresponding value.\n// If a value for key existed before then ok is true and prev\n// contains the previous value. An empty key is silently ignored.\nfunc (p *Properties) MustSet(key, value string) (prev string, ok bool) {\n\tprev, ok, err := p.Set(key, value)\n\tif err != nil {\n\t\tErrorHandler(err)\n\t}\n\treturn prev, ok\n}\n\n// String returns a string of all expanded 'key = value' pairs.\nfunc (p *Properties) String() string {\n\tvar s string\n\tfor _, key := range p.k {\n\t\tvalue, _ := p.Get(key)\n\t\ts = fmt.Sprintf(\"%s%s = %s\\n\", s, key, value)\n\t}\n\treturn s\n}\n\n// Write writes all unexpanded 'key = value' pairs to the given writer.\n// Write returns the number of bytes written and any write error encountered.\nfunc (p *Properties) Write(w io.Writer, enc Encoding) (n int, err error) {\n\treturn p.WriteComment(w, \"\", enc)\n}\n\n// WriteComment writes all unexpanced 'key = value' pairs to the given writer.\n// If prefix is not empty then comments are written with a blank line and the\n// given prefix. The prefix should be either \"# \" or \"! \" to be compatible with\n// the properties file format. Otherwise, the properties parser will not be\n// able to read the file back in. It returns the number of bytes written and\n// any write error encountered.\nfunc (p *Properties) WriteComment(w io.Writer, prefix string, enc Encoding) (n int, err error) {\n\tvar x int\n\n\tfor _, key := range p.k {\n\t\tvalue := p.m[key]\n\n\t\tif prefix != \"\" {\n\t\t\tif comments, ok := p.c[key]; ok {\n\t\t\t\t// don't print comments if they are all empty\n\t\t\t\tallEmpty := true\n\t\t\t\tfor _, c := range comments {\n\t\t\t\t\tif c != \"\" {\n\t\t\t\t\t\tallEmpty = false\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif !allEmpty {\n\t\t\t\t\t// add a blank line between entries but not at the top\n\t\t\t\t\tif len(comments) > 0 && n > 0 {\n\t\t\t\t\t\tx, err = fmt.Fprintln(w)\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\treturn\n\t\t\t\t\t\t}\n\t\t\t\t\t\tn += x\n\t\t\t\t\t}\n\n\t\t\t\t\tfor _, c := range comments {\n\t\t\t\t\t\tx, err = fmt.Fprintf(w, \"%s%s\\n\", prefix, encode(c, \"\", enc))\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\treturn\n\t\t\t\t\t\t}\n\t\t\t\t\t\tn += x\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tx, err = fmt.Fprintf(w, \"%s = %s\\n\", encode(key, \" :\", enc), encode(value, \"\", enc))\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t\tn += x\n\t}\n\treturn\n}\n\n// Map returns a copy of the properties as a map.\nfunc (p *Properties) Map() map[string]string {\n\tm := make(map[string]string)\n\tfor k, v := range p.m {\n\t\tm[k] = v\n\t}\n\treturn m\n}\n\n// FilterFunc returns a copy of the properties which includes the values which passed all filters.\nfunc (p *Properties) FilterFunc(filters ...func(k, v string) bool) *Properties {\n\tpp := NewProperties()\nouter:\n\tfor k, v := range p.m {\n\t\tfor _, f := range filters {\n\t\t\tif !f(k, v) {\n\t\t\t\tcontinue outer\n\t\t\t}\n\t\t\tpp.Set(k, v)\n\t\t}\n\t}\n\treturn pp\n}\n\n// ----------------------------------------------------------------------------\n\n// Delete removes the key and its comments.\nfunc (p *Properties) Delete(key string) {\n\tdelete(p.m, key)\n\tdelete(p.c, key)\n\tnewKeys := []string{}\n\tfor _, k := range p.k {\n\t\tif k != key {\n\t\t\tnewKeys = append(newKeys, k)\n\t\t}\n\t}\n\tp.k = newKeys\n}\n\n// Merge merges properties, comments and keys from other *Properties into p\nfunc (p *Properties) Merge(other *Properties) {\n\tfor k, v := range other.m {\n\t\tp.m[k] = v\n\t}\n\tfor k, v := range other.c {\n\t\tp.c[k] = v\n\t}\n\nouter:\n\tfor _, otherKey := range other.k {\n\t\tfor _, key := range p.k {\n\t\t\tif otherKey == key {\n\t\t\t\tcontinue outer\n\t\t\t}\n\t\t}\n\t\tp.k = append(p.k, otherKey)\n\t}\n}\n\n// ----------------------------------------------------------------------------\n\n// check expands all values and returns an error if a circular reference or\n// a malformed expression was found.\nfunc (p *Properties) check() error {\n\tfor key, value := range p.m {\n\t\tif _, err := p.expand(key, value); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (p *Properties) expand(key, input string) (string, error) {\n\t// no pre/postfix -> nothing to expand\n\tif p.Prefix == \"\" && p.Postfix == \"\" {\n\t\treturn input, nil\n\t}\n\n\treturn expand(input, []string{key}, p.Prefix, p.Postfix, p.m)\n}\n\n// expand recursively expands expressions of '(prefix)key(postfix)' to their corresponding values.\n// The function keeps track of the keys that were already expanded and stops if it\n// detects a circular reference or a malformed expression of the form '(prefix)key'.\nfunc expand(s string, keys []string, prefix, postfix string, values map[string]string) (string, error) {\n\tif len(keys) > maxExpansionDepth {\n\t\treturn \"\", fmt.Errorf(\"expansion too deep\")\n\t}\n\n\tfor {\n\t\tstart := strings.Index(s, prefix)\n\t\tif start == -1 {\n\t\t\treturn s, nil\n\t\t}\n\n\t\tkeyStart := start + len(prefix)\n\t\tkeyLen := strings.Index(s[keyStart:], postfix)\n\t\tif keyLen == -1 {\n\t\t\treturn \"\", fmt.Errorf(\"malformed expression\")\n\t\t}\n\n\t\tend := keyStart + keyLen + len(postfix) - 1\n\t\tkey := s[keyStart : keyStart+keyLen]\n\n\t\t// fmt.Printf(\"s:%q pp:%q start:%d end:%d keyStart:%d keyLen:%d key:%q\\n\", s, prefix + \"...\" + postfix, start, end, keyStart, keyLen, key)\n\n\t\tfor _, k := range keys {\n\t\t\tif key == k {\n\t\t\t\treturn \"\", fmt.Errorf(\"circular reference\")\n\t\t\t}\n\t\t}\n\n\t\tval, ok := values[key]\n\t\tif !ok {\n\t\t\tval = os.Getenv(key)\n\t\t}\n\t\tnew_val, err := expand(val, append(keys, key), prefix, postfix, values)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\ts = s[:start] + new_val + s[end+1:]\n\t}\n\treturn s, nil\n}\n\n// encode encodes a UTF-8 string to ISO-8859-1 and escapes some characters.\nfunc encode(s string, special string, enc Encoding) string {\n\tswitch enc {\n\tcase UTF8:\n\t\treturn encodeUtf8(s, special)\n\tcase ISO_8859_1:\n\t\treturn encodeIso(s, special)\n\tdefault:\n\t\tpanic(fmt.Sprintf(\"unsupported encoding %v\", enc))\n\t}\n}\n\nfunc encodeUtf8(s string, special string) string {\n\tv := \"\"\n\tfor pos := 0; pos < len(s); {\n\t\tr, w := utf8.DecodeRuneInString(s[pos:])\n\t\tpos += w\n\t\tv += escape(r, special)\n\t}\n\treturn v\n}\n\nfunc encodeIso(s string, special string) string {\n\tvar r rune\n\tvar w int\n\tvar v string\n\tfor pos := 0; pos < len(s); {\n\t\tswitch r, w = utf8.DecodeRuneInString(s[pos:]); {\n\t\tcase r < 1<<8: // single byte rune -> escape special chars only\n\t\t\tv += escape(r, special)\n\t\tcase r < 1<<16: // two byte rune -> unicode literal\n\t\t\tv += fmt.Sprintf(\"\\\\u%04x\", r)\n\t\tdefault: // more than two bytes per rune -> can't encode\n\t\t\tv += \"?\"\n\t\t}\n\t\tpos += w\n\t}\n\treturn v\n}\n\nfunc escape(r rune, special string) string {\n\tswitch r {\n\tcase '\\f':\n\t\treturn \"\\\\f\"\n\tcase '\\n':\n\t\treturn \"\\\\n\"\n\tcase '\\r':\n\t\treturn \"\\\\r\"\n\tcase '\\t':\n\t\treturn \"\\\\t\"\n\tdefault:\n\t\tif strings.ContainsRune(special, r) {\n\t\t\treturn \"\\\\\" + string(r)\n\t\t}\n\t\treturn string(r)\n\t}\n}\n\nfunc invalidKeyError(key string) error {\n\treturn fmt.Errorf(\"unknown property: %s\", key)\n}\n"
  },
  {
    "path": "vendor/github.com/magiconair/properties/rangecheck.go",
    "content": "// Copyright 2018 Frank Schroeder. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage properties\n\nimport (\n\t\"fmt\"\n\t\"math\"\n)\n\n// make this a var to overwrite it in a test\nvar is32Bit = ^uint(0) == math.MaxUint32\n\n// intRangeCheck checks if the value fits into the int type and\n// panics if it does not.\nfunc intRangeCheck(key string, v int64) int {\n\tif is32Bit && (v < math.MinInt32 || v > math.MaxInt32) {\n\t\tpanic(fmt.Sprintf(\"Value %d for key %s out of range\", v, key))\n\t}\n\treturn int(v)\n}\n\n// uintRangeCheck checks if the value fits into the uint type and\n// panics if it does not.\nfunc uintRangeCheck(key string, v uint64) uint {\n\tif is32Bit && v > math.MaxUint32 {\n\t\tpanic(fmt.Sprintf(\"Value %d for key %s out of range\", v, key))\n\t}\n\treturn uint(v)\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-colorable/.travis.yml",
    "content": "language: go\ngo:\n  - tip\n\nbefore_install:\n  - go get github.com/mattn/goveralls\n  - go get golang.org/x/tools/cmd/cover\nscript:\n  - $HOME/gopath/bin/goveralls -repotoken xnXqRGwgW3SXIguzxf90ZSK1GPYZPaGrw\n"
  },
  {
    "path": "vendor/github.com/mattn/go-colorable/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Yasuhiro Matsumoto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/mattn/go-colorable/README.md",
    "content": "# go-colorable\n\n[![Godoc Reference](https://godoc.org/github.com/mattn/go-colorable?status.svg)](http://godoc.org/github.com/mattn/go-colorable)\n[![Build Status](https://travis-ci.org/mattn/go-colorable.svg?branch=master)](https://travis-ci.org/mattn/go-colorable)\n[![Coverage Status](https://coveralls.io/repos/github/mattn/go-colorable/badge.svg?branch=master)](https://coveralls.io/github/mattn/go-colorable?branch=master)\n[![Go Report Card](https://goreportcard.com/badge/mattn/go-colorable)](https://goreportcard.com/report/mattn/go-colorable)\n\nColorable writer for windows.\n\nFor example, most of logger packages doesn't show colors on windows. (I know we can do it with ansicon. But I don't want.)\nThis package is possible to handle escape sequence for ansi color on windows.\n\n## Too Bad!\n\n![](https://raw.githubusercontent.com/mattn/go-colorable/gh-pages/bad.png)\n\n\n## So Good!\n\n![](https://raw.githubusercontent.com/mattn/go-colorable/gh-pages/good.png)\n\n## Usage\n\n```go\nlogrus.SetFormatter(&logrus.TextFormatter{ForceColors: true})\nlogrus.SetOutput(colorable.NewColorableStdout())\n\nlogrus.Info(\"succeeded\")\nlogrus.Warn(\"not correct\")\nlogrus.Error(\"something error\")\nlogrus.Fatal(\"panic\")\n```\n\nYou can compile above code on non-windows OSs.\n\n## Installation\n\n```\n$ go get github.com/mattn/go-colorable\n```\n\n# License\n\nMIT\n\n# Author\n\nYasuhiro Matsumoto (a.k.a mattn)\n"
  },
  {
    "path": "vendor/github.com/mattn/go-colorable/colorable_appengine.go",
    "content": "// +build appengine\n\npackage colorable\n\nimport (\n\t\"io\"\n\t\"os\"\n\n\t_ \"github.com/mattn/go-isatty\"\n)\n\n// NewColorable return new instance of Writer which handle escape sequence.\nfunc NewColorable(file *os.File) io.Writer {\n\tif file == nil {\n\t\tpanic(\"nil passed instead of *os.File to NewColorable()\")\n\t}\n\n\treturn file\n}\n\n// NewColorableStdout return new instance of Writer which handle escape sequence for stdout.\nfunc NewColorableStdout() io.Writer {\n\treturn os.Stdout\n}\n\n// NewColorableStderr return new instance of Writer which handle escape sequence for stderr.\nfunc NewColorableStderr() io.Writer {\n\treturn os.Stderr\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-colorable/colorable_others.go",
    "content": "// +build !windows\n// +build !appengine\n\npackage colorable\n\nimport (\n\t\"io\"\n\t\"os\"\n\n\t_ \"github.com/mattn/go-isatty\"\n)\n\n// NewColorable return new instance of Writer which handle escape sequence.\nfunc NewColorable(file *os.File) io.Writer {\n\tif file == nil {\n\t\tpanic(\"nil passed instead of *os.File to NewColorable()\")\n\t}\n\n\treturn file\n}\n\n// NewColorableStdout return new instance of Writer which handle escape sequence for stdout.\nfunc NewColorableStdout() io.Writer {\n\treturn os.Stdout\n}\n\n// NewColorableStderr return new instance of Writer which handle escape sequence for stderr.\nfunc NewColorableStderr() io.Writer {\n\treturn os.Stderr\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-colorable/colorable_windows.go",
    "content": "// +build windows\n// +build !appengine\n\npackage colorable\n\nimport (\n\t\"bytes\"\n\t\"io\"\n\t\"math\"\n\t\"os\"\n\t\"strconv\"\n\t\"strings\"\n\t\"syscall\"\n\t\"unsafe\"\n\n\t\"github.com/mattn/go-isatty\"\n)\n\nconst (\n\tforegroundBlue      = 0x1\n\tforegroundGreen     = 0x2\n\tforegroundRed       = 0x4\n\tforegroundIntensity = 0x8\n\tforegroundMask      = (foregroundRed | foregroundBlue | foregroundGreen | foregroundIntensity)\n\tbackgroundBlue      = 0x10\n\tbackgroundGreen     = 0x20\n\tbackgroundRed       = 0x40\n\tbackgroundIntensity = 0x80\n\tbackgroundMask      = (backgroundRed | backgroundBlue | backgroundGreen | backgroundIntensity)\n)\n\nconst (\n\tgenericRead  = 0x80000000\n\tgenericWrite = 0x40000000\n)\n\nconst (\n\tconsoleTextmodeBuffer = 0x1\n)\n\ntype wchar uint16\ntype short int16\ntype dword uint32\ntype word uint16\n\ntype coord struct {\n\tx short\n\ty short\n}\n\ntype smallRect struct {\n\tleft   short\n\ttop    short\n\tright  short\n\tbottom short\n}\n\ntype consoleScreenBufferInfo struct {\n\tsize              coord\n\tcursorPosition    coord\n\tattributes        word\n\twindow            smallRect\n\tmaximumWindowSize coord\n}\n\ntype consoleCursorInfo struct {\n\tsize    dword\n\tvisible int32\n}\n\nvar (\n\tkernel32                       = syscall.NewLazyDLL(\"kernel32.dll\")\n\tprocGetConsoleScreenBufferInfo = kernel32.NewProc(\"GetConsoleScreenBufferInfo\")\n\tprocSetConsoleTextAttribute    = kernel32.NewProc(\"SetConsoleTextAttribute\")\n\tprocSetConsoleCursorPosition   = kernel32.NewProc(\"SetConsoleCursorPosition\")\n\tprocFillConsoleOutputCharacter = kernel32.NewProc(\"FillConsoleOutputCharacterW\")\n\tprocFillConsoleOutputAttribute = kernel32.NewProc(\"FillConsoleOutputAttribute\")\n\tprocGetConsoleCursorInfo       = kernel32.NewProc(\"GetConsoleCursorInfo\")\n\tprocSetConsoleCursorInfo       = kernel32.NewProc(\"SetConsoleCursorInfo\")\n\tprocSetConsoleTitle            = kernel32.NewProc(\"SetConsoleTitleW\")\n\tprocCreateConsoleScreenBuffer  = kernel32.NewProc(\"CreateConsoleScreenBuffer\")\n)\n\n// Writer provide colorable Writer to the console\ntype Writer struct {\n\tout       io.Writer\n\thandle    syscall.Handle\n\talthandle syscall.Handle\n\toldattr   word\n\toldpos    coord\n\trest      bytes.Buffer\n}\n\n// NewColorable return new instance of Writer which handle escape sequence from File.\nfunc NewColorable(file *os.File) io.Writer {\n\tif file == nil {\n\t\tpanic(\"nil passed instead of *os.File to NewColorable()\")\n\t}\n\n\tif isatty.IsTerminal(file.Fd()) {\n\t\tvar csbi consoleScreenBufferInfo\n\t\thandle := syscall.Handle(file.Fd())\n\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\treturn &Writer{out: file, handle: handle, oldattr: csbi.attributes, oldpos: coord{0, 0}}\n\t}\n\treturn file\n}\n\n// NewColorableStdout return new instance of Writer which handle escape sequence for stdout.\nfunc NewColorableStdout() io.Writer {\n\treturn NewColorable(os.Stdout)\n}\n\n// NewColorableStderr return new instance of Writer which handle escape sequence for stderr.\nfunc NewColorableStderr() io.Writer {\n\treturn NewColorable(os.Stderr)\n}\n\nvar color256 = map[int]int{\n\t0:   0x000000,\n\t1:   0x800000,\n\t2:   0x008000,\n\t3:   0x808000,\n\t4:   0x000080,\n\t5:   0x800080,\n\t6:   0x008080,\n\t7:   0xc0c0c0,\n\t8:   0x808080,\n\t9:   0xff0000,\n\t10:  0x00ff00,\n\t11:  0xffff00,\n\t12:  0x0000ff,\n\t13:  0xff00ff,\n\t14:  0x00ffff,\n\t15:  0xffffff,\n\t16:  0x000000,\n\t17:  0x00005f,\n\t18:  0x000087,\n\t19:  0x0000af,\n\t20:  0x0000d7,\n\t21:  0x0000ff,\n\t22:  0x005f00,\n\t23:  0x005f5f,\n\t24:  0x005f87,\n\t25:  0x005faf,\n\t26:  0x005fd7,\n\t27:  0x005fff,\n\t28:  0x008700,\n\t29:  0x00875f,\n\t30:  0x008787,\n\t31:  0x0087af,\n\t32:  0x0087d7,\n\t33:  0x0087ff,\n\t34:  0x00af00,\n\t35:  0x00af5f,\n\t36:  0x00af87,\n\t37:  0x00afaf,\n\t38:  0x00afd7,\n\t39:  0x00afff,\n\t40:  0x00d700,\n\t41:  0x00d75f,\n\t42:  0x00d787,\n\t43:  0x00d7af,\n\t44:  0x00d7d7,\n\t45:  0x00d7ff,\n\t46:  0x00ff00,\n\t47:  0x00ff5f,\n\t48:  0x00ff87,\n\t49:  0x00ffaf,\n\t50:  0x00ffd7,\n\t51:  0x00ffff,\n\t52:  0x5f0000,\n\t53:  0x5f005f,\n\t54:  0x5f0087,\n\t55:  0x5f00af,\n\t56:  0x5f00d7,\n\t57:  0x5f00ff,\n\t58:  0x5f5f00,\n\t59:  0x5f5f5f,\n\t60:  0x5f5f87,\n\t61:  0x5f5faf,\n\t62:  0x5f5fd7,\n\t63:  0x5f5fff,\n\t64:  0x5f8700,\n\t65:  0x5f875f,\n\t66:  0x5f8787,\n\t67:  0x5f87af,\n\t68:  0x5f87d7,\n\t69:  0x5f87ff,\n\t70:  0x5faf00,\n\t71:  0x5faf5f,\n\t72:  0x5faf87,\n\t73:  0x5fafaf,\n\t74:  0x5fafd7,\n\t75:  0x5fafff,\n\t76:  0x5fd700,\n\t77:  0x5fd75f,\n\t78:  0x5fd787,\n\t79:  0x5fd7af,\n\t80:  0x5fd7d7,\n\t81:  0x5fd7ff,\n\t82:  0x5fff00,\n\t83:  0x5fff5f,\n\t84:  0x5fff87,\n\t85:  0x5fffaf,\n\t86:  0x5fffd7,\n\t87:  0x5fffff,\n\t88:  0x870000,\n\t89:  0x87005f,\n\t90:  0x870087,\n\t91:  0x8700af,\n\t92:  0x8700d7,\n\t93:  0x8700ff,\n\t94:  0x875f00,\n\t95:  0x875f5f,\n\t96:  0x875f87,\n\t97:  0x875faf,\n\t98:  0x875fd7,\n\t99:  0x875fff,\n\t100: 0x878700,\n\t101: 0x87875f,\n\t102: 0x878787,\n\t103: 0x8787af,\n\t104: 0x8787d7,\n\t105: 0x8787ff,\n\t106: 0x87af00,\n\t107: 0x87af5f,\n\t108: 0x87af87,\n\t109: 0x87afaf,\n\t110: 0x87afd7,\n\t111: 0x87afff,\n\t112: 0x87d700,\n\t113: 0x87d75f,\n\t114: 0x87d787,\n\t115: 0x87d7af,\n\t116: 0x87d7d7,\n\t117: 0x87d7ff,\n\t118: 0x87ff00,\n\t119: 0x87ff5f,\n\t120: 0x87ff87,\n\t121: 0x87ffaf,\n\t122: 0x87ffd7,\n\t123: 0x87ffff,\n\t124: 0xaf0000,\n\t125: 0xaf005f,\n\t126: 0xaf0087,\n\t127: 0xaf00af,\n\t128: 0xaf00d7,\n\t129: 0xaf00ff,\n\t130: 0xaf5f00,\n\t131: 0xaf5f5f,\n\t132: 0xaf5f87,\n\t133: 0xaf5faf,\n\t134: 0xaf5fd7,\n\t135: 0xaf5fff,\n\t136: 0xaf8700,\n\t137: 0xaf875f,\n\t138: 0xaf8787,\n\t139: 0xaf87af,\n\t140: 0xaf87d7,\n\t141: 0xaf87ff,\n\t142: 0xafaf00,\n\t143: 0xafaf5f,\n\t144: 0xafaf87,\n\t145: 0xafafaf,\n\t146: 0xafafd7,\n\t147: 0xafafff,\n\t148: 0xafd700,\n\t149: 0xafd75f,\n\t150: 0xafd787,\n\t151: 0xafd7af,\n\t152: 0xafd7d7,\n\t153: 0xafd7ff,\n\t154: 0xafff00,\n\t155: 0xafff5f,\n\t156: 0xafff87,\n\t157: 0xafffaf,\n\t158: 0xafffd7,\n\t159: 0xafffff,\n\t160: 0xd70000,\n\t161: 0xd7005f,\n\t162: 0xd70087,\n\t163: 0xd700af,\n\t164: 0xd700d7,\n\t165: 0xd700ff,\n\t166: 0xd75f00,\n\t167: 0xd75f5f,\n\t168: 0xd75f87,\n\t169: 0xd75faf,\n\t170: 0xd75fd7,\n\t171: 0xd75fff,\n\t172: 0xd78700,\n\t173: 0xd7875f,\n\t174: 0xd78787,\n\t175: 0xd787af,\n\t176: 0xd787d7,\n\t177: 0xd787ff,\n\t178: 0xd7af00,\n\t179: 0xd7af5f,\n\t180: 0xd7af87,\n\t181: 0xd7afaf,\n\t182: 0xd7afd7,\n\t183: 0xd7afff,\n\t184: 0xd7d700,\n\t185: 0xd7d75f,\n\t186: 0xd7d787,\n\t187: 0xd7d7af,\n\t188: 0xd7d7d7,\n\t189: 0xd7d7ff,\n\t190: 0xd7ff00,\n\t191: 0xd7ff5f,\n\t192: 0xd7ff87,\n\t193: 0xd7ffaf,\n\t194: 0xd7ffd7,\n\t195: 0xd7ffff,\n\t196: 0xff0000,\n\t197: 0xff005f,\n\t198: 0xff0087,\n\t199: 0xff00af,\n\t200: 0xff00d7,\n\t201: 0xff00ff,\n\t202: 0xff5f00,\n\t203: 0xff5f5f,\n\t204: 0xff5f87,\n\t205: 0xff5faf,\n\t206: 0xff5fd7,\n\t207: 0xff5fff,\n\t208: 0xff8700,\n\t209: 0xff875f,\n\t210: 0xff8787,\n\t211: 0xff87af,\n\t212: 0xff87d7,\n\t213: 0xff87ff,\n\t214: 0xffaf00,\n\t215: 0xffaf5f,\n\t216: 0xffaf87,\n\t217: 0xffafaf,\n\t218: 0xffafd7,\n\t219: 0xffafff,\n\t220: 0xffd700,\n\t221: 0xffd75f,\n\t222: 0xffd787,\n\t223: 0xffd7af,\n\t224: 0xffd7d7,\n\t225: 0xffd7ff,\n\t226: 0xffff00,\n\t227: 0xffff5f,\n\t228: 0xffff87,\n\t229: 0xffffaf,\n\t230: 0xffffd7,\n\t231: 0xffffff,\n\t232: 0x080808,\n\t233: 0x121212,\n\t234: 0x1c1c1c,\n\t235: 0x262626,\n\t236: 0x303030,\n\t237: 0x3a3a3a,\n\t238: 0x444444,\n\t239: 0x4e4e4e,\n\t240: 0x585858,\n\t241: 0x626262,\n\t242: 0x6c6c6c,\n\t243: 0x767676,\n\t244: 0x808080,\n\t245: 0x8a8a8a,\n\t246: 0x949494,\n\t247: 0x9e9e9e,\n\t248: 0xa8a8a8,\n\t249: 0xb2b2b2,\n\t250: 0xbcbcbc,\n\t251: 0xc6c6c6,\n\t252: 0xd0d0d0,\n\t253: 0xdadada,\n\t254: 0xe4e4e4,\n\t255: 0xeeeeee,\n}\n\n// `\\033]0;TITLESTR\\007`\nfunc doTitleSequence(er *bytes.Reader) error {\n\tvar c byte\n\tvar err error\n\n\tc, err = er.ReadByte()\n\tif err != nil {\n\t\treturn err\n\t}\n\tif c != '0' && c != '2' {\n\t\treturn nil\n\t}\n\tc, err = er.ReadByte()\n\tif err != nil {\n\t\treturn err\n\t}\n\tif c != ';' {\n\t\treturn nil\n\t}\n\ttitle := make([]byte, 0, 80)\n\tfor {\n\t\tc, err = er.ReadByte()\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif c == 0x07 || c == '\\n' {\n\t\t\tbreak\n\t\t}\n\t\ttitle = append(title, c)\n\t}\n\tif len(title) > 0 {\n\t\ttitle8, err := syscall.UTF16PtrFromString(string(title))\n\t\tif err == nil {\n\t\t\tprocSetConsoleTitle.Call(uintptr(unsafe.Pointer(title8)))\n\t\t}\n\t}\n\treturn nil\n}\n\n// Write write data on console\nfunc (w *Writer) Write(data []byte) (n int, err error) {\n\tvar csbi consoleScreenBufferInfo\n\tprocGetConsoleScreenBufferInfo.Call(uintptr(w.handle), uintptr(unsafe.Pointer(&csbi)))\n\n\thandle := w.handle\n\n\tvar er *bytes.Reader\n\tif w.rest.Len() > 0 {\n\t\tvar rest bytes.Buffer\n\t\tw.rest.WriteTo(&rest)\n\t\tw.rest.Reset()\n\t\trest.Write(data)\n\t\ter = bytes.NewReader(rest.Bytes())\n\t} else {\n\t\ter = bytes.NewReader(data)\n\t}\n\tvar bw [1]byte\nloop:\n\tfor {\n\t\tc1, err := er.ReadByte()\n\t\tif err != nil {\n\t\t\tbreak loop\n\t\t}\n\t\tif c1 != 0x1b {\n\t\t\tbw[0] = c1\n\t\t\tw.out.Write(bw[:])\n\t\t\tcontinue\n\t\t}\n\t\tc2, err := er.ReadByte()\n\t\tif err != nil {\n\t\t\tbreak loop\n\t\t}\n\n\t\tswitch c2 {\n\t\tcase '>':\n\t\t\tcontinue\n\t\tcase ']':\n\t\t\tw.rest.WriteByte(c1)\n\t\t\tw.rest.WriteByte(c2)\n\t\t\ter.WriteTo(&w.rest)\n\t\t\tif bytes.IndexByte(w.rest.Bytes(), 0x07) == -1 {\n\t\t\t\tbreak loop\n\t\t\t}\n\t\t\ter = bytes.NewReader(w.rest.Bytes()[2:])\n\t\t\terr := doTitleSequence(er)\n\t\t\tif err != nil {\n\t\t\t\tbreak loop\n\t\t\t}\n\t\t\tw.rest.Reset()\n\t\t\tcontinue\n\t\t// https://github.com/mattn/go-colorable/issues/27\n\t\tcase '7':\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tw.oldpos = csbi.cursorPosition\n\t\t\tcontinue\n\t\tcase '8':\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&w.oldpos)))\n\t\t\tcontinue\n\t\tcase 0x5b:\n\t\t\t// execute part after switch\n\t\tdefault:\n\t\t\tcontinue\n\t\t}\n\n\t\tw.rest.WriteByte(c1)\n\t\tw.rest.WriteByte(c2)\n\t\ter.WriteTo(&w.rest)\n\n\t\tvar buf bytes.Buffer\n\t\tvar m byte\n\t\tfor i, c := range w.rest.Bytes()[2:] {\n\t\t\tif ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || c == '@' {\n\t\t\t\tm = c\n\t\t\t\ter = bytes.NewReader(w.rest.Bytes()[2+i+1:])\n\t\t\t\tw.rest.Reset()\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tbuf.Write([]byte(string(c)))\n\t\t}\n\t\tif m == 0 {\n\t\t\tbreak loop\n\t\t}\n\n\t\tswitch m {\n\t\tcase 'A':\n\t\t\tn, err = strconv.Atoi(buf.String())\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tcsbi.cursorPosition.y -= short(n)\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))\n\t\tcase 'B':\n\t\t\tn, err = strconv.Atoi(buf.String())\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tcsbi.cursorPosition.y += short(n)\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))\n\t\tcase 'C':\n\t\t\tn, err = strconv.Atoi(buf.String())\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tcsbi.cursorPosition.x += short(n)\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))\n\t\tcase 'D':\n\t\t\tn, err = strconv.Atoi(buf.String())\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tcsbi.cursorPosition.x -= short(n)\n\t\t\tif csbi.cursorPosition.x < 0 {\n\t\t\t\tcsbi.cursorPosition.x = 0\n\t\t\t}\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))\n\t\tcase 'E':\n\t\t\tn, err = strconv.Atoi(buf.String())\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tcsbi.cursorPosition.x = 0\n\t\t\tcsbi.cursorPosition.y += short(n)\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))\n\t\tcase 'F':\n\t\t\tn, err = strconv.Atoi(buf.String())\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tcsbi.cursorPosition.x = 0\n\t\t\tcsbi.cursorPosition.y -= short(n)\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))\n\t\tcase 'G':\n\t\t\tn, err = strconv.Atoi(buf.String())\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tcsbi.cursorPosition.x = short(n - 1)\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))\n\t\tcase 'H', 'f':\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tif buf.Len() > 0 {\n\t\t\t\ttoken := strings.Split(buf.String(), \";\")\n\t\t\t\tswitch len(token) {\n\t\t\t\tcase 1:\n\t\t\t\t\tn1, err := strconv.Atoi(token[0])\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tcsbi.cursorPosition.y = short(n1 - 1)\n\t\t\t\tcase 2:\n\t\t\t\t\tn1, err := strconv.Atoi(token[0])\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tn2, err := strconv.Atoi(token[1])\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tcsbi.cursorPosition.x = short(n2 - 1)\n\t\t\t\t\tcsbi.cursorPosition.y = short(n1 - 1)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcsbi.cursorPosition.y = 0\n\t\t\t}\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&csbi.cursorPosition)))\n\t\tcase 'J':\n\t\t\tn := 0\n\t\t\tif buf.Len() > 0 {\n\t\t\t\tn, err = strconv.Atoi(buf.String())\n\t\t\t\tif err != nil {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t}\n\t\t\tvar count, written dword\n\t\t\tvar cursor coord\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tswitch n {\n\t\t\tcase 0:\n\t\t\t\tcursor = coord{x: csbi.cursorPosition.x, y: csbi.cursorPosition.y}\n\t\t\t\tcount = dword(csbi.size.x) - dword(csbi.cursorPosition.x) + dword(csbi.size.y-csbi.cursorPosition.y)*dword(csbi.size.x)\n\t\t\tcase 1:\n\t\t\t\tcursor = coord{x: csbi.window.left, y: csbi.window.top}\n\t\t\t\tcount = dword(csbi.size.x) - dword(csbi.cursorPosition.x) + dword(csbi.window.top-csbi.cursorPosition.y)*dword(csbi.size.x)\n\t\t\tcase 2:\n\t\t\t\tcursor = coord{x: csbi.window.left, y: csbi.window.top}\n\t\t\t\tcount = dword(csbi.size.x) - dword(csbi.cursorPosition.x) + dword(csbi.size.y-csbi.cursorPosition.y)*dword(csbi.size.x)\n\t\t\t}\n\t\t\tprocFillConsoleOutputCharacter.Call(uintptr(handle), uintptr(' '), uintptr(count), *(*uintptr)(unsafe.Pointer(&cursor)), uintptr(unsafe.Pointer(&written)))\n\t\t\tprocFillConsoleOutputAttribute.Call(uintptr(handle), uintptr(csbi.attributes), uintptr(count), *(*uintptr)(unsafe.Pointer(&cursor)), uintptr(unsafe.Pointer(&written)))\n\t\tcase 'K':\n\t\t\tn := 0\n\t\t\tif buf.Len() > 0 {\n\t\t\t\tn, err = strconv.Atoi(buf.String())\n\t\t\t\tif err != nil {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t}\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tvar cursor coord\n\t\t\tvar count, written dword\n\t\t\tswitch n {\n\t\t\tcase 0:\n\t\t\t\tcursor = coord{x: csbi.cursorPosition.x, y: csbi.cursorPosition.y}\n\t\t\t\tcount = dword(csbi.size.x - csbi.cursorPosition.x)\n\t\t\tcase 1:\n\t\t\t\tcursor = coord{x: csbi.window.left, y: csbi.cursorPosition.y}\n\t\t\t\tcount = dword(csbi.size.x - csbi.cursorPosition.x)\n\t\t\tcase 2:\n\t\t\t\tcursor = coord{x: csbi.window.left, y: csbi.cursorPosition.y}\n\t\t\t\tcount = dword(csbi.size.x)\n\t\t\t}\n\t\t\tprocFillConsoleOutputCharacter.Call(uintptr(handle), uintptr(' '), uintptr(count), *(*uintptr)(unsafe.Pointer(&cursor)), uintptr(unsafe.Pointer(&written)))\n\t\t\tprocFillConsoleOutputAttribute.Call(uintptr(handle), uintptr(csbi.attributes), uintptr(count), *(*uintptr)(unsafe.Pointer(&cursor)), uintptr(unsafe.Pointer(&written)))\n\t\tcase 'm':\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tattr := csbi.attributes\n\t\t\tcs := buf.String()\n\t\t\tif cs == \"\" {\n\t\t\t\tprocSetConsoleTextAttribute.Call(uintptr(handle), uintptr(w.oldattr))\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\ttoken := strings.Split(cs, \";\")\n\t\t\tfor i := 0; i < len(token); i++ {\n\t\t\t\tns := token[i]\n\t\t\t\tif n, err = strconv.Atoi(ns); err == nil {\n\t\t\t\t\tswitch {\n\t\t\t\t\tcase n == 0 || n == 100:\n\t\t\t\t\t\tattr = w.oldattr\n\t\t\t\t\tcase 1 <= n && n <= 5:\n\t\t\t\t\t\tattr |= foregroundIntensity\n\t\t\t\t\tcase n == 7:\n\t\t\t\t\t\tattr = ((attr & foregroundMask) << 4) | ((attr & backgroundMask) >> 4)\n\t\t\t\t\tcase n == 22 || n == 25:\n\t\t\t\t\t\tattr |= foregroundIntensity\n\t\t\t\t\tcase n == 27:\n\t\t\t\t\t\tattr = ((attr & foregroundMask) << 4) | ((attr & backgroundMask) >> 4)\n\t\t\t\t\tcase 30 <= n && n <= 37:\n\t\t\t\t\t\tattr &= backgroundMask\n\t\t\t\t\t\tif (n-30)&1 != 0 {\n\t\t\t\t\t\t\tattr |= foregroundRed\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (n-30)&2 != 0 {\n\t\t\t\t\t\t\tattr |= foregroundGreen\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (n-30)&4 != 0 {\n\t\t\t\t\t\t\tattr |= foregroundBlue\n\t\t\t\t\t\t}\n\t\t\t\t\tcase n == 38: // set foreground color.\n\t\t\t\t\t\tif i < len(token)-2 && (token[i+1] == \"5\" || token[i+1] == \"05\") {\n\t\t\t\t\t\t\tif n256, err := strconv.Atoi(token[i+2]); err == nil {\n\t\t\t\t\t\t\t\tif n256foreAttr == nil {\n\t\t\t\t\t\t\t\t\tn256setup()\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tattr &= backgroundMask\n\t\t\t\t\t\t\t\tattr |= n256foreAttr[n256]\n\t\t\t\t\t\t\t\ti += 2\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if len(token) == 5 && token[i+1] == \"2\" {\n\t\t\t\t\t\t\tvar r, g, b int\n\t\t\t\t\t\t\tr, _ = strconv.Atoi(token[i+2])\n\t\t\t\t\t\t\tg, _ = strconv.Atoi(token[i+3])\n\t\t\t\t\t\t\tb, _ = strconv.Atoi(token[i+4])\n\t\t\t\t\t\t\ti += 4\n\t\t\t\t\t\t\tif r > 127 {\n\t\t\t\t\t\t\t\tattr |= foregroundRed\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif g > 127 {\n\t\t\t\t\t\t\t\tattr |= foregroundGreen\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif b > 127 {\n\t\t\t\t\t\t\t\tattr |= foregroundBlue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tattr = attr & (w.oldattr & backgroundMask)\n\t\t\t\t\t\t}\n\t\t\t\t\tcase n == 39: // reset foreground color.\n\t\t\t\t\t\tattr &= backgroundMask\n\t\t\t\t\t\tattr |= w.oldattr & foregroundMask\n\t\t\t\t\tcase 40 <= n && n <= 47:\n\t\t\t\t\t\tattr &= foregroundMask\n\t\t\t\t\t\tif (n-40)&1 != 0 {\n\t\t\t\t\t\t\tattr |= backgroundRed\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (n-40)&2 != 0 {\n\t\t\t\t\t\t\tattr |= backgroundGreen\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (n-40)&4 != 0 {\n\t\t\t\t\t\t\tattr |= backgroundBlue\n\t\t\t\t\t\t}\n\t\t\t\t\tcase n == 48: // set background color.\n\t\t\t\t\t\tif i < len(token)-2 && token[i+1] == \"5\" {\n\t\t\t\t\t\t\tif n256, err := strconv.Atoi(token[i+2]); err == nil {\n\t\t\t\t\t\t\t\tif n256backAttr == nil {\n\t\t\t\t\t\t\t\t\tn256setup()\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tattr &= foregroundMask\n\t\t\t\t\t\t\t\tattr |= n256backAttr[n256]\n\t\t\t\t\t\t\t\ti += 2\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if len(token) == 5 && token[i+1] == \"2\" {\n\t\t\t\t\t\t\tvar r, g, b int\n\t\t\t\t\t\t\tr, _ = strconv.Atoi(token[i+2])\n\t\t\t\t\t\t\tg, _ = strconv.Atoi(token[i+3])\n\t\t\t\t\t\t\tb, _ = strconv.Atoi(token[i+4])\n\t\t\t\t\t\t\ti += 4\n\t\t\t\t\t\t\tif r > 127 {\n\t\t\t\t\t\t\t\tattr |= backgroundRed\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif g > 127 {\n\t\t\t\t\t\t\t\tattr |= backgroundGreen\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif b > 127 {\n\t\t\t\t\t\t\t\tattr |= backgroundBlue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tattr = attr & (w.oldattr & foregroundMask)\n\t\t\t\t\t\t}\n\t\t\t\t\tcase n == 49: // reset foreground color.\n\t\t\t\t\t\tattr &= foregroundMask\n\t\t\t\t\t\tattr |= w.oldattr & backgroundMask\n\t\t\t\t\tcase 90 <= n && n <= 97:\n\t\t\t\t\t\tattr = (attr & backgroundMask)\n\t\t\t\t\t\tattr |= foregroundIntensity\n\t\t\t\t\t\tif (n-90)&1 != 0 {\n\t\t\t\t\t\t\tattr |= foregroundRed\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (n-90)&2 != 0 {\n\t\t\t\t\t\t\tattr |= foregroundGreen\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (n-90)&4 != 0 {\n\t\t\t\t\t\t\tattr |= foregroundBlue\n\t\t\t\t\t\t}\n\t\t\t\t\tcase 100 <= n && n <= 107:\n\t\t\t\t\t\tattr = (attr & foregroundMask)\n\t\t\t\t\t\tattr |= backgroundIntensity\n\t\t\t\t\t\tif (n-100)&1 != 0 {\n\t\t\t\t\t\t\tattr |= backgroundRed\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (n-100)&2 != 0 {\n\t\t\t\t\t\t\tattr |= backgroundGreen\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (n-100)&4 != 0 {\n\t\t\t\t\t\t\tattr |= backgroundBlue\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tprocSetConsoleTextAttribute.Call(uintptr(handle), uintptr(attr))\n\t\t\t\t}\n\t\t\t}\n\t\tcase 'h':\n\t\t\tvar ci consoleCursorInfo\n\t\t\tcs := buf.String()\n\t\t\tif cs == \"5>\" {\n\t\t\t\tprocGetConsoleCursorInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&ci)))\n\t\t\t\tci.visible = 0\n\t\t\t\tprocSetConsoleCursorInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&ci)))\n\t\t\t} else if cs == \"?25\" {\n\t\t\t\tprocGetConsoleCursorInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&ci)))\n\t\t\t\tci.visible = 1\n\t\t\t\tprocSetConsoleCursorInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&ci)))\n\t\t\t} else if cs == \"?1049\" {\n\t\t\t\tif w.althandle == 0 {\n\t\t\t\t\th, _, _ := procCreateConsoleScreenBuffer.Call(uintptr(genericRead|genericWrite), 0, 0, uintptr(consoleTextmodeBuffer), 0, 0)\n\t\t\t\t\tw.althandle = syscall.Handle(h)\n\t\t\t\t\tif w.althandle != 0 {\n\t\t\t\t\t\thandle = w.althandle\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\tcase 'l':\n\t\t\tvar ci consoleCursorInfo\n\t\t\tcs := buf.String()\n\t\t\tif cs == \"5>\" {\n\t\t\t\tprocGetConsoleCursorInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&ci)))\n\t\t\t\tci.visible = 1\n\t\t\t\tprocSetConsoleCursorInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&ci)))\n\t\t\t} else if cs == \"?25\" {\n\t\t\t\tprocGetConsoleCursorInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&ci)))\n\t\t\t\tci.visible = 0\n\t\t\t\tprocSetConsoleCursorInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&ci)))\n\t\t\t} else if cs == \"?1049\" {\n\t\t\t\tif w.althandle != 0 {\n\t\t\t\t\tsyscall.CloseHandle(w.althandle)\n\t\t\t\t\tw.althandle = 0\n\t\t\t\t\thandle = w.handle\n\t\t\t\t}\n\t\t\t}\n\t\tcase 's':\n\t\t\tprocGetConsoleScreenBufferInfo.Call(uintptr(handle), uintptr(unsafe.Pointer(&csbi)))\n\t\t\tw.oldpos = csbi.cursorPosition\n\t\tcase 'u':\n\t\t\tprocSetConsoleCursorPosition.Call(uintptr(handle), *(*uintptr)(unsafe.Pointer(&w.oldpos)))\n\t\t}\n\t}\n\n\treturn len(data), nil\n}\n\ntype consoleColor struct {\n\trgb       int\n\tred       bool\n\tgreen     bool\n\tblue      bool\n\tintensity bool\n}\n\nfunc (c consoleColor) foregroundAttr() (attr word) {\n\tif c.red {\n\t\tattr |= foregroundRed\n\t}\n\tif c.green {\n\t\tattr |= foregroundGreen\n\t}\n\tif c.blue {\n\t\tattr |= foregroundBlue\n\t}\n\tif c.intensity {\n\t\tattr |= foregroundIntensity\n\t}\n\treturn\n}\n\nfunc (c consoleColor) backgroundAttr() (attr word) {\n\tif c.red {\n\t\tattr |= backgroundRed\n\t}\n\tif c.green {\n\t\tattr |= backgroundGreen\n\t}\n\tif c.blue {\n\t\tattr |= backgroundBlue\n\t}\n\tif c.intensity {\n\t\tattr |= backgroundIntensity\n\t}\n\treturn\n}\n\nvar color16 = []consoleColor{\n\t{0x000000, false, false, false, false},\n\t{0x000080, false, false, true, false},\n\t{0x008000, false, true, false, false},\n\t{0x008080, false, true, true, false},\n\t{0x800000, true, false, false, false},\n\t{0x800080, true, false, true, false},\n\t{0x808000, true, true, false, false},\n\t{0xc0c0c0, true, true, true, false},\n\t{0x808080, false, false, false, true},\n\t{0x0000ff, false, false, true, true},\n\t{0x00ff00, false, true, false, true},\n\t{0x00ffff, false, true, true, true},\n\t{0xff0000, true, false, false, true},\n\t{0xff00ff, true, false, true, true},\n\t{0xffff00, true, true, false, true},\n\t{0xffffff, true, true, true, true},\n}\n\ntype hsv struct {\n\th, s, v float32\n}\n\nfunc (a hsv) dist(b hsv) float32 {\n\tdh := a.h - b.h\n\tswitch {\n\tcase dh > 0.5:\n\t\tdh = 1 - dh\n\tcase dh < -0.5:\n\t\tdh = -1 - dh\n\t}\n\tds := a.s - b.s\n\tdv := a.v - b.v\n\treturn float32(math.Sqrt(float64(dh*dh + ds*ds + dv*dv)))\n}\n\nfunc toHSV(rgb int) hsv {\n\tr, g, b := float32((rgb&0xFF0000)>>16)/256.0,\n\t\tfloat32((rgb&0x00FF00)>>8)/256.0,\n\t\tfloat32(rgb&0x0000FF)/256.0\n\tmin, max := minmax3f(r, g, b)\n\th := max - min\n\tif h > 0 {\n\t\tif max == r {\n\t\t\th = (g - b) / h\n\t\t\tif h < 0 {\n\t\t\t\th += 6\n\t\t\t}\n\t\t} else if max == g {\n\t\t\th = 2 + (b-r)/h\n\t\t} else {\n\t\t\th = 4 + (r-g)/h\n\t\t}\n\t}\n\th /= 6.0\n\ts := max - min\n\tif max != 0 {\n\t\ts /= max\n\t}\n\tv := max\n\treturn hsv{h: h, s: s, v: v}\n}\n\ntype hsvTable []hsv\n\nfunc toHSVTable(rgbTable []consoleColor) hsvTable {\n\tt := make(hsvTable, len(rgbTable))\n\tfor i, c := range rgbTable {\n\t\tt[i] = toHSV(c.rgb)\n\t}\n\treturn t\n}\n\nfunc (t hsvTable) find(rgb int) consoleColor {\n\thsv := toHSV(rgb)\n\tn := 7\n\tl := float32(5.0)\n\tfor i, p := range t {\n\t\td := hsv.dist(p)\n\t\tif d < l {\n\t\t\tl, n = d, i\n\t\t}\n\t}\n\treturn color16[n]\n}\n\nfunc minmax3f(a, b, c float32) (min, max float32) {\n\tif a < b {\n\t\tif b < c {\n\t\t\treturn a, c\n\t\t} else if a < c {\n\t\t\treturn a, b\n\t\t} else {\n\t\t\treturn c, b\n\t\t}\n\t} else {\n\t\tif a < c {\n\t\t\treturn b, c\n\t\t} else if b < c {\n\t\t\treturn b, a\n\t\t} else {\n\t\t\treturn c, a\n\t\t}\n\t}\n}\n\nvar n256foreAttr []word\nvar n256backAttr []word\n\nfunc n256setup() {\n\tn256foreAttr = make([]word, 256)\n\tn256backAttr = make([]word, 256)\n\tt := toHSVTable(color16)\n\tfor i, rgb := range color256 {\n\t\tc := t.find(rgb)\n\t\tn256foreAttr[i] = c.foregroundAttr()\n\t\tn256backAttr[i] = c.backgroundAttr()\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-colorable/go.mod",
    "content": "module github.com/mattn/go-colorable\n\nrequire github.com/mattn/go-isatty v0.0.8\n"
  },
  {
    "path": "vendor/github.com/mattn/go-colorable/go.sum",
    "content": "github.com/mattn/go-isatty v0.0.5 h1:tHXDdz1cpzGaovsTB+TVB8q90WEokoVmfMqoVcrLUgw=\ngithub.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngolang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223 h1:DH4skfRX4EBpamg7iV4ZlCpblAHI6s6TDM39bFZumv8=\ngolang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\n"
  },
  {
    "path": "vendor/github.com/mattn/go-colorable/noncolorable.go",
    "content": "package colorable\n\nimport (\n\t\"bytes\"\n\t\"io\"\n)\n\n// NonColorable hold writer but remove escape sequence.\ntype NonColorable struct {\n\tout io.Writer\n}\n\n// NewNonColorable return new instance of Writer which remove escape sequence from Writer.\nfunc NewNonColorable(w io.Writer) io.Writer {\n\treturn &NonColorable{out: w}\n}\n\n// Write write data on console\nfunc (w *NonColorable) Write(data []byte) (n int, err error) {\n\ter := bytes.NewReader(data)\n\tvar bw [1]byte\nloop:\n\tfor {\n\t\tc1, err := er.ReadByte()\n\t\tif err != nil {\n\t\t\tbreak loop\n\t\t}\n\t\tif c1 != 0x1b {\n\t\t\tbw[0] = c1\n\t\t\tw.out.Write(bw[:])\n\t\t\tcontinue\n\t\t}\n\t\tc2, err := er.ReadByte()\n\t\tif err != nil {\n\t\t\tbreak loop\n\t\t}\n\t\tif c2 != 0x5b {\n\t\t\tcontinue\n\t\t}\n\n\t\tvar buf bytes.Buffer\n\t\tfor {\n\t\t\tc, err := er.ReadByte()\n\t\t\tif err != nil {\n\t\t\t\tbreak loop\n\t\t\t}\n\t\t\tif ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || c == '@' {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tbuf.Write([]byte(string(c)))\n\t\t}\n\t}\n\n\treturn len(data), nil\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/.travis.yml",
    "content": "language: go\nsudo: false\ngo:\n  - 1.13.x\n  - tip\n\nbefore_install:\n  - go get -t -v ./...\n\nscript:\n  - ./go.test.sh\n\nafter_success:\n  - bash <(curl -s https://codecov.io/bash)\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/LICENSE",
    "content": "Copyright (c) Yasuhiro MATSUMOTO <mattn.jp@gmail.com>\n\nMIT License (Expat)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/README.md",
    "content": "# go-isatty\n\n[![Godoc Reference](https://godoc.org/github.com/mattn/go-isatty?status.svg)](http://godoc.org/github.com/mattn/go-isatty)\n[![Codecov](https://codecov.io/gh/mattn/go-isatty/branch/master/graph/badge.svg)](https://codecov.io/gh/mattn/go-isatty)\n[![Coverage Status](https://coveralls.io/repos/github/mattn/go-isatty/badge.svg?branch=master)](https://coveralls.io/github/mattn/go-isatty?branch=master)\n[![Go Report Card](https://goreportcard.com/badge/mattn/go-isatty)](https://goreportcard.com/report/mattn/go-isatty)\n\nisatty for golang\n\n## Usage\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/mattn/go-isatty\"\n\t\"os\"\n)\n\nfunc main() {\n\tif isatty.IsTerminal(os.Stdout.Fd()) {\n\t\tfmt.Println(\"Is Terminal\")\n\t} else if isatty.IsCygwinTerminal(os.Stdout.Fd()) {\n\t\tfmt.Println(\"Is Cygwin/MSYS2 Terminal\")\n\t} else {\n\t\tfmt.Println(\"Is Not Terminal\")\n\t}\n}\n```\n\n## Installation\n\n```\n$ go get github.com/mattn/go-isatty\n```\n\n## License\n\nMIT\n\n## Author\n\nYasuhiro Matsumoto (a.k.a mattn)\n\n## Thanks\n\n* k-takata: base idea for IsCygwinTerminal\n\n    https://github.com/k-takata/go-iscygpty\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/doc.go",
    "content": "// Package isatty implements interface to isatty\npackage isatty\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/go.mod",
    "content": "module github.com/mattn/go-isatty\n\ngo 1.12\n\nrequire golang.org/x/sys v0.0.0-20200116001909-b77594299b42\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/go.sum",
    "content": "golang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg=\ngolang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/go.test.sh",
    "content": "#!/usr/bin/env bash\n\nset -e\necho \"\" > coverage.txt\n\nfor d in $(go list ./... | grep -v vendor); do\n    go test -race -coverprofile=profile.out -covermode=atomic \"$d\"\n    if [ -f profile.out ]; then\n        cat profile.out >> coverage.txt\n        rm profile.out\n    fi\ndone\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/isatty_bsd.go",
    "content": "// +build darwin freebsd openbsd netbsd dragonfly\n// +build !appengine\n\npackage isatty\n\nimport \"golang.org/x/sys/unix\"\n\n// IsTerminal return true if the file descriptor is terminal.\nfunc IsTerminal(fd uintptr) bool {\n\t_, err := unix.IoctlGetTermios(int(fd), unix.TIOCGETA)\n\treturn err == nil\n}\n\n// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2\n// terminal. This is also always false on this environment.\nfunc IsCygwinTerminal(fd uintptr) bool {\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/isatty_others.go",
    "content": "// +build appengine js nacl\n\npackage isatty\n\n// IsTerminal returns true if the file descriptor is terminal which\n// is always false on js and appengine classic which is a sandboxed PaaS.\nfunc IsTerminal(fd uintptr) bool {\n\treturn false\n}\n\n// IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2\n// terminal. This is also always false on this environment.\nfunc IsCygwinTerminal(fd uintptr) bool {\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/isatty_plan9.go",
    "content": "// +build plan9\n\npackage isatty\n\nimport (\n\t\"syscall\"\n)\n\n// IsTerminal returns true if the given file descriptor is a terminal.\nfunc IsTerminal(fd uintptr) bool {\n\tpath, err := syscall.Fd2path(int(fd))\n\tif err != nil {\n\t\treturn false\n\t}\n\treturn path == \"/dev/cons\" || path == \"/mnt/term/dev/cons\"\n}\n\n// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2\n// terminal. This is also always false on this environment.\nfunc IsCygwinTerminal(fd uintptr) bool {\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/isatty_solaris.go",
    "content": "// +build solaris\n// +build !appengine\n\npackage isatty\n\nimport (\n\t\"golang.org/x/sys/unix\"\n)\n\n// IsTerminal returns true if the given file descriptor is a terminal.\n// see: http://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libbc/libc/gen/common/isatty.c\nfunc IsTerminal(fd uintptr) bool {\n\tvar termio unix.Termio\n\terr := unix.IoctlSetTermio(int(fd), unix.TCGETA, &termio)\n\treturn err == nil\n}\n\n// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2\n// terminal. This is also always false on this environment.\nfunc IsCygwinTerminal(fd uintptr) bool {\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/isatty_tcgets.go",
    "content": "// +build linux aix\n// +build !appengine\n\npackage isatty\n\nimport \"golang.org/x/sys/unix\"\n\n// IsTerminal return true if the file descriptor is terminal.\nfunc IsTerminal(fd uintptr) bool {\n\t_, err := unix.IoctlGetTermios(int(fd), unix.TCGETS)\n\treturn err == nil\n}\n\n// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2\n// terminal. This is also always false on this environment.\nfunc IsCygwinTerminal(fd uintptr) bool {\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/isatty_windows.go",
    "content": "// +build windows\n// +build !appengine\n\npackage isatty\n\nimport (\n\t\"errors\"\n\t\"strings\"\n\t\"syscall\"\n\t\"unicode/utf16\"\n\t\"unsafe\"\n)\n\nconst (\n\tobjectNameInfo uintptr = 1\n\tfileNameInfo           = 2\n\tfileTypePipe           = 3\n)\n\nvar (\n\tkernel32                         = syscall.NewLazyDLL(\"kernel32.dll\")\n\tntdll                            = syscall.NewLazyDLL(\"ntdll.dll\")\n\tprocGetConsoleMode               = kernel32.NewProc(\"GetConsoleMode\")\n\tprocGetFileInformationByHandleEx = kernel32.NewProc(\"GetFileInformationByHandleEx\")\n\tprocGetFileType                  = kernel32.NewProc(\"GetFileType\")\n\tprocNtQueryObject                = ntdll.NewProc(\"NtQueryObject\")\n)\n\nfunc init() {\n\t// Check if GetFileInformationByHandleEx is available.\n\tif procGetFileInformationByHandleEx.Find() != nil {\n\t\tprocGetFileInformationByHandleEx = nil\n\t}\n}\n\n// IsTerminal return true if the file descriptor is terminal.\nfunc IsTerminal(fd uintptr) bool {\n\tvar st uint32\n\tr, _, e := syscall.Syscall(procGetConsoleMode.Addr(), 2, fd, uintptr(unsafe.Pointer(&st)), 0)\n\treturn r != 0 && e == 0\n}\n\n// Check pipe name is used for cygwin/msys2 pty.\n// Cygwin/MSYS2 PTY has a name like:\n//   \\{cygwin,msys}-XXXXXXXXXXXXXXXX-ptyN-{from,to}-master\nfunc isCygwinPipeName(name string) bool {\n\ttoken := strings.Split(name, \"-\")\n\tif len(token) < 5 {\n\t\treturn false\n\t}\n\n\tif token[0] != `\\msys` &&\n\t\ttoken[0] != `\\cygwin` &&\n\t\ttoken[0] != `\\Device\\NamedPipe\\msys` &&\n\t\ttoken[0] != `\\Device\\NamedPipe\\cygwin` {\n\t\treturn false\n\t}\n\n\tif token[1] == \"\" {\n\t\treturn false\n\t}\n\n\tif !strings.HasPrefix(token[2], \"pty\") {\n\t\treturn false\n\t}\n\n\tif token[3] != `from` && token[3] != `to` {\n\t\treturn false\n\t}\n\n\tif token[4] != \"master\" {\n\t\treturn false\n\t}\n\n\treturn true\n}\n\n// getFileNameByHandle use the undocomented ntdll NtQueryObject to get file full name from file handler\n// since GetFileInformationByHandleEx is not avilable under windows Vista and still some old fashion\n// guys are using Windows XP, this is a workaround for those guys, it will also work on system from\n// Windows vista to 10\n// see https://stackoverflow.com/a/18792477 for details\nfunc getFileNameByHandle(fd uintptr) (string, error) {\n\tif procNtQueryObject == nil {\n\t\treturn \"\", errors.New(\"ntdll.dll: NtQueryObject not supported\")\n\t}\n\n\tvar buf [4 + syscall.MAX_PATH]uint16\n\tvar result int\n\tr, _, e := syscall.Syscall6(procNtQueryObject.Addr(), 5,\n\t\tfd, objectNameInfo, uintptr(unsafe.Pointer(&buf)), uintptr(2*len(buf)), uintptr(unsafe.Pointer(&result)), 0)\n\tif r != 0 {\n\t\treturn \"\", e\n\t}\n\treturn string(utf16.Decode(buf[4 : 4+buf[0]/2])), nil\n}\n\n// IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2\n// terminal.\nfunc IsCygwinTerminal(fd uintptr) bool {\n\tif procGetFileInformationByHandleEx == nil {\n\t\tname, err := getFileNameByHandle(fd)\n\t\tif err != nil {\n\t\t\treturn false\n\t\t}\n\t\treturn isCygwinPipeName(name)\n\t}\n\n\t// Cygwin/msys's pty is a pipe.\n\tft, _, e := syscall.Syscall(procGetFileType.Addr(), 1, fd, 0, 0)\n\tif ft != fileTypePipe || e != 0 {\n\t\treturn false\n\t}\n\n\tvar buf [2 + syscall.MAX_PATH]uint16\n\tr, _, e := syscall.Syscall6(procGetFileInformationByHandleEx.Addr(),\n\t\t4, fd, fileNameInfo, uintptr(unsafe.Pointer(&buf)),\n\t\tuintptr(len(buf)*2), 0, 0)\n\tif r == 0 || e != 0 {\n\t\treturn false\n\t}\n\n\tl := *(*uint32)(unsafe.Pointer(&buf))\n\treturn isCygwinPipeName(string(utf16.Decode(buf[2 : 2+l/2])))\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-isatty/renovate.json",
    "content": "{\n  \"extends\": [\n    \"config:base\"\n  ],\n  \"postUpdateOptions\": [\n    \"gomodTidy\"\n  ]\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/.travis.yml",
    "content": "language: go\ngo:\n  - tip\nbefore_install:\n  - go get github.com/mattn/goveralls\n  - go get golang.org/x/tools/cmd/cover\nscript:\n    - $HOME/gopath/bin/goveralls -repotoken lAKAWPzcGsD3A8yBX3BGGtRUdJ6CaGERL\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Yasuhiro Matsumoto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/README.mkd",
    "content": "go-runewidth\n============\n\n[![Build Status](https://travis-ci.org/mattn/go-runewidth.png?branch=master)](https://travis-ci.org/mattn/go-runewidth)\n[![Coverage Status](https://coveralls.io/repos/mattn/go-runewidth/badge.png?branch=HEAD)](https://coveralls.io/r/mattn/go-runewidth?branch=HEAD)\n[![GoDoc](https://godoc.org/github.com/mattn/go-runewidth?status.svg)](http://godoc.org/github.com/mattn/go-runewidth)\n[![Go Report Card](https://goreportcard.com/badge/github.com/mattn/go-runewidth)](https://goreportcard.com/report/github.com/mattn/go-runewidth)\n\nProvides functions to get fixed width of the character or string.\n\nUsage\n-----\n\n```go\nrunewidth.StringWidth(\"つのだ☆HIRO\") == 12\n```\n\n\nAuthor\n------\n\nYasuhiro Matsumoto\n\nLicense\n-------\n\nunder the MIT License: http://mattn.mit-license.org/2013\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/go.mod",
    "content": "module github.com/mattn/go-runewidth\n\ngo 1.9\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/runewidth.go",
    "content": "package runewidth\n\nimport (\n\t\"os\"\n)\n\n//go:generate go run script/generate.go\n\nvar (\n\t// EastAsianWidth will be set true if the current locale is CJK\n\tEastAsianWidth bool\n\n\t// ZeroWidthJoiner is flag to set to use UTR#51 ZWJ\n\tZeroWidthJoiner bool\n\n\t// DefaultCondition is a condition in current locale\n\tDefaultCondition = &Condition{}\n)\n\nfunc init() {\n\thandleEnv()\n}\n\nfunc handleEnv() {\n\tenv := os.Getenv(\"RUNEWIDTH_EASTASIAN\")\n\tif env == \"\" {\n\t\tEastAsianWidth = IsEastAsian()\n\t} else {\n\t\tEastAsianWidth = env == \"1\"\n\t}\n\t// update DefaultCondition\n\tDefaultCondition.EastAsianWidth = EastAsianWidth\n\tDefaultCondition.ZeroWidthJoiner = ZeroWidthJoiner\n}\n\ntype interval struct {\n\tfirst rune\n\tlast  rune\n}\n\ntype table []interval\n\nfunc inTables(r rune, ts ...table) bool {\n\tfor _, t := range ts {\n\t\tif inTable(r, t) {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc inTable(r rune, t table) bool {\n\t// func (t table) IncludesRune(r rune) bool {\n\tif r < t[0].first {\n\t\treturn false\n\t}\n\n\tbot := 0\n\ttop := len(t) - 1\n\tfor top >= bot {\n\t\tmid := (bot + top) >> 1\n\n\t\tswitch {\n\t\tcase t[mid].last < r:\n\t\t\tbot = mid + 1\n\t\tcase t[mid].first > r:\n\t\t\ttop = mid - 1\n\t\tdefault:\n\t\t\treturn true\n\t\t}\n\t}\n\n\treturn false\n}\n\nvar private = table{\n\t{0x00E000, 0x00F8FF}, {0x0F0000, 0x0FFFFD}, {0x100000, 0x10FFFD},\n}\n\nvar nonprint = table{\n\t{0x0000, 0x001F}, {0x007F, 0x009F}, {0x00AD, 0x00AD},\n\t{0x070F, 0x070F}, {0x180B, 0x180E}, {0x200B, 0x200F},\n\t{0x2028, 0x202E}, {0x206A, 0x206F}, {0xD800, 0xDFFF},\n\t{0xFEFF, 0xFEFF}, {0xFFF9, 0xFFFB}, {0xFFFE, 0xFFFF},\n}\n\n// Condition have flag EastAsianWidth whether the current locale is CJK or not.\ntype Condition struct {\n\tEastAsianWidth  bool\n\tZeroWidthJoiner bool\n}\n\n// NewCondition return new instance of Condition which is current locale.\nfunc NewCondition() *Condition {\n\treturn &Condition{\n\t\tEastAsianWidth:  EastAsianWidth,\n\t\tZeroWidthJoiner: ZeroWidthJoiner,\n\t}\n}\n\n// RuneWidth returns the number of cells in r.\n// See http://www.unicode.org/reports/tr11/\nfunc (c *Condition) RuneWidth(r rune) int {\n\tswitch {\n\tcase r < 0 || r > 0x10FFFF || inTables(r, nonprint, combining, notassigned):\n\t\treturn 0\n\tcase (c.EastAsianWidth && IsAmbiguousWidth(r)) || inTables(r, doublewidth):\n\t\treturn 2\n\tdefault:\n\t\treturn 1\n\t}\n}\n\nfunc (c *Condition) stringWidth(s string) (width int) {\n\tfor _, r := range []rune(s) {\n\t\twidth += c.RuneWidth(r)\n\t}\n\treturn width\n}\n\nfunc (c *Condition) stringWidthZeroJoiner(s string) (width int) {\n\tr1, r2 := rune(0), rune(0)\n\tfor _, r := range []rune(s) {\n\t\tif r == 0xFE0E || r == 0xFE0F {\n\t\t\tcontinue\n\t\t}\n\t\tw := c.RuneWidth(r)\n\t\tif r2 == 0x200D && inTables(r, emoji) && inTables(r1, emoji) {\n\t\t\tif width < w {\n\t\t\t\twidth = w\n\t\t\t}\n\t\t} else {\n\t\t\twidth += w\n\t\t}\n\t\tr1, r2 = r2, r\n\t}\n\treturn width\n}\n\n// StringWidth return width as you can see\nfunc (c *Condition) StringWidth(s string) (width int) {\n\tif c.ZeroWidthJoiner {\n\t\treturn c.stringWidthZeroJoiner(s)\n\t}\n\treturn c.stringWidth(s)\n}\n\n// Truncate return string truncated with w cells\nfunc (c *Condition) Truncate(s string, w int, tail string) string {\n\tif c.StringWidth(s) <= w {\n\t\treturn s\n\t}\n\tr := []rune(s)\n\ttw := c.StringWidth(tail)\n\tw -= tw\n\twidth := 0\n\ti := 0\n\tfor ; i < len(r); i++ {\n\t\tcw := c.RuneWidth(r[i])\n\t\tif width+cw > w {\n\t\t\tbreak\n\t\t}\n\t\twidth += cw\n\t}\n\treturn string(r[0:i]) + tail\n}\n\n// Wrap return string wrapped with w cells\nfunc (c *Condition) Wrap(s string, w int) string {\n\twidth := 0\n\tout := \"\"\n\tfor _, r := range []rune(s) {\n\t\tcw := RuneWidth(r)\n\t\tif r == '\\n' {\n\t\t\tout += string(r)\n\t\t\twidth = 0\n\t\t\tcontinue\n\t\t} else if width+cw > w {\n\t\t\tout += \"\\n\"\n\t\t\twidth = 0\n\t\t\tout += string(r)\n\t\t\twidth += cw\n\t\t\tcontinue\n\t\t}\n\t\tout += string(r)\n\t\twidth += cw\n\t}\n\treturn out\n}\n\n// FillLeft return string filled in left by spaces in w cells\nfunc (c *Condition) FillLeft(s string, w int) string {\n\twidth := c.StringWidth(s)\n\tcount := w - width\n\tif count > 0 {\n\t\tb := make([]byte, count)\n\t\tfor i := range b {\n\t\t\tb[i] = ' '\n\t\t}\n\t\treturn string(b) + s\n\t}\n\treturn s\n}\n\n// FillRight return string filled in left by spaces in w cells\nfunc (c *Condition) FillRight(s string, w int) string {\n\twidth := c.StringWidth(s)\n\tcount := w - width\n\tif count > 0 {\n\t\tb := make([]byte, count)\n\t\tfor i := range b {\n\t\t\tb[i] = ' '\n\t\t}\n\t\treturn s + string(b)\n\t}\n\treturn s\n}\n\n// RuneWidth returns the number of cells in r.\n// See http://www.unicode.org/reports/tr11/\nfunc RuneWidth(r rune) int {\n\treturn DefaultCondition.RuneWidth(r)\n}\n\n// IsAmbiguousWidth returns whether is ambiguous width or not.\nfunc IsAmbiguousWidth(r rune) bool {\n\treturn inTables(r, private, ambiguous)\n}\n\n// IsNeutralWidth returns whether is neutral width or not.\nfunc IsNeutralWidth(r rune) bool {\n\treturn inTable(r, neutral)\n}\n\n// StringWidth return width as you can see\nfunc StringWidth(s string) (width int) {\n\treturn DefaultCondition.StringWidth(s)\n}\n\n// Truncate return string truncated with w cells\nfunc Truncate(s string, w int, tail string) string {\n\treturn DefaultCondition.Truncate(s, w, tail)\n}\n\n// Wrap return string wrapped with w cells\nfunc Wrap(s string, w int) string {\n\treturn DefaultCondition.Wrap(s, w)\n}\n\n// FillLeft return string filled in left by spaces in w cells\nfunc FillLeft(s string, w int) string {\n\treturn DefaultCondition.FillLeft(s, w)\n}\n\n// FillRight return string filled in left by spaces in w cells\nfunc FillRight(s string, w int) string {\n\treturn DefaultCondition.FillRight(s, w)\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/runewidth_appengine.go",
    "content": "// +build appengine\n\npackage runewidth\n\n// IsEastAsian return true if the current locale is CJK\nfunc IsEastAsian() bool {\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/runewidth_js.go",
    "content": "// +build js\n// +build !appengine\n\npackage runewidth\n\nfunc IsEastAsian() bool {\n\t// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/runewidth_posix.go",
    "content": "// +build !windows\n// +build !js\n// +build !appengine\n\npackage runewidth\n\nimport (\n\t\"os\"\n\t\"regexp\"\n\t\"strings\"\n)\n\nvar reLoc = regexp.MustCompile(`^[a-z][a-z][a-z]?(?:_[A-Z][A-Z])?\\.(.+)`)\n\nvar mblenTable = map[string]int{\n\t\"utf-8\":   6,\n\t\"utf8\":    6,\n\t\"jis\":     8,\n\t\"eucjp\":   3,\n\t\"euckr\":   2,\n\t\"euccn\":   2,\n\t\"sjis\":    2,\n\t\"cp932\":   2,\n\t\"cp51932\": 2,\n\t\"cp936\":   2,\n\t\"cp949\":   2,\n\t\"cp950\":   2,\n\t\"big5\":    2,\n\t\"gbk\":     2,\n\t\"gb2312\":  2,\n}\n\nfunc isEastAsian(locale string) bool {\n\tcharset := strings.ToLower(locale)\n\tr := reLoc.FindStringSubmatch(locale)\n\tif len(r) == 2 {\n\t\tcharset = strings.ToLower(r[1])\n\t}\n\n\tif strings.HasSuffix(charset, \"@cjk_narrow\") {\n\t\treturn false\n\t}\n\n\tfor pos, b := range []byte(charset) {\n\t\tif b == '@' {\n\t\t\tcharset = charset[:pos]\n\t\t\tbreak\n\t\t}\n\t}\n\tmax := 1\n\tif m, ok := mblenTable[charset]; ok {\n\t\tmax = m\n\t}\n\tif max > 1 && (charset[0] != 'u' ||\n\t\tstrings.HasPrefix(locale, \"ja\") ||\n\t\tstrings.HasPrefix(locale, \"ko\") ||\n\t\tstrings.HasPrefix(locale, \"zh\")) {\n\t\treturn true\n\t}\n\treturn false\n}\n\n// IsEastAsian return true if the current locale is CJK\nfunc IsEastAsian() bool {\n\tlocale := os.Getenv(\"LC_CTYPE\")\n\tif locale == \"\" {\n\t\tlocale = os.Getenv(\"LANG\")\n\t}\n\n\t// ignore C locale\n\tif locale == \"POSIX\" || locale == \"C\" {\n\t\treturn false\n\t}\n\tif len(locale) > 1 && locale[0] == 'C' && (locale[1] == '.' || locale[1] == '-') {\n\t\treturn false\n\t}\n\n\treturn isEastAsian(locale)\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/runewidth_table.go",
    "content": "package runewidth\n\nvar combining = table{\n\t{0x0300, 0x036F}, {0x0483, 0x0489}, {0x07EB, 0x07F3},\n\t{0x0C00, 0x0C00}, {0x0C04, 0x0C04}, {0x0D00, 0x0D01},\n\t{0x135D, 0x135F}, {0x1A7F, 0x1A7F}, {0x1AB0, 0x1ABE},\n\t{0x1B6B, 0x1B73}, {0x1DC0, 0x1DF9}, {0x1DFB, 0x1DFF},\n\t{0x20D0, 0x20F0}, {0x2CEF, 0x2CF1}, {0x2DE0, 0x2DFF},\n\t{0x3099, 0x309A}, {0xA66F, 0xA672}, {0xA674, 0xA67D},\n\t{0xA69E, 0xA69F}, {0xA6F0, 0xA6F1}, {0xA8E0, 0xA8F1},\n\t{0xFE20, 0xFE2F}, {0x101FD, 0x101FD}, {0x10376, 0x1037A},\n\t{0x10F46, 0x10F50}, {0x11300, 0x11301}, {0x1133B, 0x1133C},\n\t{0x11366, 0x1136C}, {0x11370, 0x11374}, {0x16AF0, 0x16AF4},\n\t{0x1D165, 0x1D169}, {0x1D16D, 0x1D172}, {0x1D17B, 0x1D182},\n\t{0x1D185, 0x1D18B}, {0x1D1AA, 0x1D1AD}, {0x1D242, 0x1D244},\n\t{0x1E000, 0x1E006}, {0x1E008, 0x1E018}, {0x1E01B, 0x1E021},\n\t{0x1E023, 0x1E024}, {0x1E026, 0x1E02A}, {0x1E8D0, 0x1E8D6},\n}\n\nvar doublewidth = table{\n\t{0x1100, 0x115F}, {0x231A, 0x231B}, {0x2329, 0x232A},\n\t{0x23E9, 0x23EC}, {0x23F0, 0x23F0}, {0x23F3, 0x23F3},\n\t{0x25FD, 0x25FE}, {0x2614, 0x2615}, {0x2648, 0x2653},\n\t{0x267F, 0x267F}, {0x2693, 0x2693}, {0x26A1, 0x26A1},\n\t{0x26AA, 0x26AB}, {0x26BD, 0x26BE}, {0x26C4, 0x26C5},\n\t{0x26CE, 0x26CE}, {0x26D4, 0x26D4}, {0x26EA, 0x26EA},\n\t{0x26F2, 0x26F3}, {0x26F5, 0x26F5}, {0x26FA, 0x26FA},\n\t{0x26FD, 0x26FD}, {0x2705, 0x2705}, {0x270A, 0x270B},\n\t{0x2728, 0x2728}, {0x274C, 0x274C}, {0x274E, 0x274E},\n\t{0x2753, 0x2755}, {0x2757, 0x2757}, {0x2795, 0x2797},\n\t{0x27B0, 0x27B0}, {0x27BF, 0x27BF}, {0x2B1B, 0x2B1C},\n\t{0x2B50, 0x2B50}, {0x2B55, 0x2B55}, {0x2E80, 0x2E99},\n\t{0x2E9B, 0x2EF3}, {0x2F00, 0x2FD5}, {0x2FF0, 0x2FFB},\n\t{0x3000, 0x303E}, {0x3041, 0x3096}, {0x3099, 0x30FF},\n\t{0x3105, 0x312F}, {0x3131, 0x318E}, {0x3190, 0x31BA},\n\t{0x31C0, 0x31E3}, {0x31F0, 0x321E}, {0x3220, 0x3247},\n\t{0x3250, 0x4DBF}, {0x4E00, 0xA48C}, {0xA490, 0xA4C6},\n\t{0xA960, 0xA97C}, {0xAC00, 0xD7A3}, {0xF900, 0xFAFF},\n\t{0xFE10, 0xFE19}, {0xFE30, 0xFE52}, {0xFE54, 0xFE66},\n\t{0xFE68, 0xFE6B}, {0xFF01, 0xFF60}, {0xFFE0, 0xFFE6},\n\t{0x16FE0, 0x16FE3}, {0x17000, 0x187F7}, {0x18800, 0x18AF2},\n\t{0x1B000, 0x1B11E}, {0x1B150, 0x1B152}, {0x1B164, 0x1B167},\n\t{0x1B170, 0x1B2FB}, {0x1F004, 0x1F004}, {0x1F0CF, 0x1F0CF},\n\t{0x1F18E, 0x1F18E}, {0x1F191, 0x1F19A}, {0x1F200, 0x1F202},\n\t{0x1F210, 0x1F23B}, {0x1F240, 0x1F248}, {0x1F250, 0x1F251},\n\t{0x1F260, 0x1F265}, {0x1F300, 0x1F320}, {0x1F32D, 0x1F335},\n\t{0x1F337, 0x1F37C}, {0x1F37E, 0x1F393}, {0x1F3A0, 0x1F3CA},\n\t{0x1F3CF, 0x1F3D3}, {0x1F3E0, 0x1F3F0}, {0x1F3F4, 0x1F3F4},\n\t{0x1F3F8, 0x1F43E}, {0x1F440, 0x1F440}, {0x1F442, 0x1F4FC},\n\t{0x1F4FF, 0x1F53D}, {0x1F54B, 0x1F54E}, {0x1F550, 0x1F567},\n\t{0x1F57A, 0x1F57A}, {0x1F595, 0x1F596}, {0x1F5A4, 0x1F5A4},\n\t{0x1F5FB, 0x1F64F}, {0x1F680, 0x1F6C5}, {0x1F6CC, 0x1F6CC},\n\t{0x1F6D0, 0x1F6D2}, {0x1F6D5, 0x1F6D5}, {0x1F6EB, 0x1F6EC},\n\t{0x1F6F4, 0x1F6FA}, {0x1F7E0, 0x1F7EB}, {0x1F90D, 0x1F971},\n\t{0x1F973, 0x1F976}, {0x1F97A, 0x1F9A2}, {0x1F9A5, 0x1F9AA},\n\t{0x1F9AE, 0x1F9CA}, {0x1F9CD, 0x1F9FF}, {0x1FA70, 0x1FA73},\n\t{0x1FA78, 0x1FA7A}, {0x1FA80, 0x1FA82}, {0x1FA90, 0x1FA95},\n\t{0x20000, 0x2FFFD}, {0x30000, 0x3FFFD},\n}\n\nvar ambiguous = table{\n\t{0x00A1, 0x00A1}, {0x00A4, 0x00A4}, {0x00A7, 0x00A8},\n\t{0x00AA, 0x00AA}, {0x00AD, 0x00AE}, {0x00B0, 0x00B4},\n\t{0x00B6, 0x00BA}, {0x00BC, 0x00BF}, {0x00C6, 0x00C6},\n\t{0x00D0, 0x00D0}, {0x00D7, 0x00D8}, {0x00DE, 0x00E1},\n\t{0x00E6, 0x00E6}, {0x00E8, 0x00EA}, {0x00EC, 0x00ED},\n\t{0x00F0, 0x00F0}, {0x00F2, 0x00F3}, {0x00F7, 0x00FA},\n\t{0x00FC, 0x00FC}, {0x00FE, 0x00FE}, {0x0101, 0x0101},\n\t{0x0111, 0x0111}, {0x0113, 0x0113}, {0x011B, 0x011B},\n\t{0x0126, 0x0127}, {0x012B, 0x012B}, {0x0131, 0x0133},\n\t{0x0138, 0x0138}, {0x013F, 0x0142}, {0x0144, 0x0144},\n\t{0x0148, 0x014B}, {0x014D, 0x014D}, {0x0152, 0x0153},\n\t{0x0166, 0x0167}, {0x016B, 0x016B}, {0x01CE, 0x01CE},\n\t{0x01D0, 0x01D0}, {0x01D2, 0x01D2}, {0x01D4, 0x01D4},\n\t{0x01D6, 0x01D6}, {0x01D8, 0x01D8}, {0x01DA, 0x01DA},\n\t{0x01DC, 0x01DC}, {0x0251, 0x0251}, {0x0261, 0x0261},\n\t{0x02C4, 0x02C4}, {0x02C7, 0x02C7}, {0x02C9, 0x02CB},\n\t{0x02CD, 0x02CD}, {0x02D0, 0x02D0}, {0x02D8, 0x02DB},\n\t{0x02DD, 0x02DD}, {0x02DF, 0x02DF}, {0x0300, 0x036F},\n\t{0x0391, 0x03A1}, {0x03A3, 0x03A9}, {0x03B1, 0x03C1},\n\t{0x03C3, 0x03C9}, {0x0401, 0x0401}, {0x0410, 0x044F},\n\t{0x0451, 0x0451}, {0x2010, 0x2010}, {0x2013, 0x2016},\n\t{0x2018, 0x2019}, {0x201C, 0x201D}, {0x2020, 0x2022},\n\t{0x2024, 0x2027}, {0x2030, 0x2030}, {0x2032, 0x2033},\n\t{0x2035, 0x2035}, {0x203B, 0x203B}, {0x203E, 0x203E},\n\t{0x2074, 0x2074}, {0x207F, 0x207F}, {0x2081, 0x2084},\n\t{0x20AC, 0x20AC}, {0x2103, 0x2103}, {0x2105, 0x2105},\n\t{0x2109, 0x2109}, {0x2113, 0x2113}, {0x2116, 0x2116},\n\t{0x2121, 0x2122}, {0x2126, 0x2126}, {0x212B, 0x212B},\n\t{0x2153, 0x2154}, {0x215B, 0x215E}, {0x2160, 0x216B},\n\t{0x2170, 0x2179}, {0x2189, 0x2189}, {0x2190, 0x2199},\n\t{0x21B8, 0x21B9}, {0x21D2, 0x21D2}, {0x21D4, 0x21D4},\n\t{0x21E7, 0x21E7}, {0x2200, 0x2200}, {0x2202, 0x2203},\n\t{0x2207, 0x2208}, {0x220B, 0x220B}, {0x220F, 0x220F},\n\t{0x2211, 0x2211}, {0x2215, 0x2215}, {0x221A, 0x221A},\n\t{0x221D, 0x2220}, {0x2223, 0x2223}, {0x2225, 0x2225},\n\t{0x2227, 0x222C}, {0x222E, 0x222E}, {0x2234, 0x2237},\n\t{0x223C, 0x223D}, {0x2248, 0x2248}, {0x224C, 0x224C},\n\t{0x2252, 0x2252}, {0x2260, 0x2261}, {0x2264, 0x2267},\n\t{0x226A, 0x226B}, {0x226E, 0x226F}, {0x2282, 0x2283},\n\t{0x2286, 0x2287}, {0x2295, 0x2295}, {0x2299, 0x2299},\n\t{0x22A5, 0x22A5}, {0x22BF, 0x22BF}, {0x2312, 0x2312},\n\t{0x2460, 0x24E9}, {0x24EB, 0x254B}, {0x2550, 0x2573},\n\t{0x2580, 0x258F}, {0x2592, 0x2595}, {0x25A0, 0x25A1},\n\t{0x25A3, 0x25A9}, {0x25B2, 0x25B3}, {0x25B6, 0x25B7},\n\t{0x25BC, 0x25BD}, {0x25C0, 0x25C1}, {0x25C6, 0x25C8},\n\t{0x25CB, 0x25CB}, {0x25CE, 0x25D1}, {0x25E2, 0x25E5},\n\t{0x25EF, 0x25EF}, {0x2605, 0x2606}, {0x2609, 0x2609},\n\t{0x260E, 0x260F}, {0x261C, 0x261C}, {0x261E, 0x261E},\n\t{0x2640, 0x2640}, {0x2642, 0x2642}, {0x2660, 0x2661},\n\t{0x2663, 0x2665}, {0x2667, 0x266A}, {0x266C, 0x266D},\n\t{0x266F, 0x266F}, {0x269E, 0x269F}, {0x26BF, 0x26BF},\n\t{0x26C6, 0x26CD}, {0x26CF, 0x26D3}, {0x26D5, 0x26E1},\n\t{0x26E3, 0x26E3}, {0x26E8, 0x26E9}, {0x26EB, 0x26F1},\n\t{0x26F4, 0x26F4}, {0x26F6, 0x26F9}, {0x26FB, 0x26FC},\n\t{0x26FE, 0x26FF}, {0x273D, 0x273D}, {0x2776, 0x277F},\n\t{0x2B56, 0x2B59}, {0x3248, 0x324F}, {0xE000, 0xF8FF},\n\t{0xFE00, 0xFE0F}, {0xFFFD, 0xFFFD}, {0x1F100, 0x1F10A},\n\t{0x1F110, 0x1F12D}, {0x1F130, 0x1F169}, {0x1F170, 0x1F18D},\n\t{0x1F18F, 0x1F190}, {0x1F19B, 0x1F1AC}, {0xE0100, 0xE01EF},\n\t{0xF0000, 0xFFFFD}, {0x100000, 0x10FFFD},\n}\nvar notassigned = table{\n\t{0x27E6, 0x27ED}, {0x2985, 0x2986},\n}\n\nvar neutral = table{\n\t{0x0000, 0x001F}, {0x007F, 0x00A0}, {0x00A9, 0x00A9},\n\t{0x00AB, 0x00AB}, {0x00B5, 0x00B5}, {0x00BB, 0x00BB},\n\t{0x00C0, 0x00C5}, {0x00C7, 0x00CF}, {0x00D1, 0x00D6},\n\t{0x00D9, 0x00DD}, {0x00E2, 0x00E5}, {0x00E7, 0x00E7},\n\t{0x00EB, 0x00EB}, {0x00EE, 0x00EF}, {0x00F1, 0x00F1},\n\t{0x00F4, 0x00F6}, {0x00FB, 0x00FB}, {0x00FD, 0x00FD},\n\t{0x00FF, 0x0100}, {0x0102, 0x0110}, {0x0112, 0x0112},\n\t{0x0114, 0x011A}, {0x011C, 0x0125}, {0x0128, 0x012A},\n\t{0x012C, 0x0130}, {0x0134, 0x0137}, {0x0139, 0x013E},\n\t{0x0143, 0x0143}, {0x0145, 0x0147}, {0x014C, 0x014C},\n\t{0x014E, 0x0151}, {0x0154, 0x0165}, {0x0168, 0x016A},\n\t{0x016C, 0x01CD}, {0x01CF, 0x01CF}, {0x01D1, 0x01D1},\n\t{0x01D3, 0x01D3}, {0x01D5, 0x01D5}, {0x01D7, 0x01D7},\n\t{0x01D9, 0x01D9}, {0x01DB, 0x01DB}, {0x01DD, 0x0250},\n\t{0x0252, 0x0260}, {0x0262, 0x02C3}, {0x02C5, 0x02C6},\n\t{0x02C8, 0x02C8}, {0x02CC, 0x02CC}, {0x02CE, 0x02CF},\n\t{0x02D1, 0x02D7}, {0x02DC, 0x02DC}, {0x02DE, 0x02DE},\n\t{0x02E0, 0x02FF}, {0x0370, 0x0377}, {0x037A, 0x037F},\n\t{0x0384, 0x038A}, {0x038C, 0x038C}, {0x038E, 0x0390},\n\t{0x03AA, 0x03B0}, {0x03C2, 0x03C2}, {0x03CA, 0x0400},\n\t{0x0402, 0x040F}, {0x0450, 0x0450}, {0x0452, 0x052F},\n\t{0x0531, 0x0556}, {0x0559, 0x058A}, {0x058D, 0x058F},\n\t{0x0591, 0x05C7}, {0x05D0, 0x05EA}, {0x05EF, 0x05F4},\n\t{0x0600, 0x061C}, {0x061E, 0x070D}, {0x070F, 0x074A},\n\t{0x074D, 0x07B1}, {0x07C0, 0x07FA}, {0x07FD, 0x082D},\n\t{0x0830, 0x083E}, {0x0840, 0x085B}, {0x085E, 0x085E},\n\t{0x0860, 0x086A}, {0x08A0, 0x08B4}, {0x08B6, 0x08BD},\n\t{0x08D3, 0x0983}, {0x0985, 0x098C}, {0x098F, 0x0990},\n\t{0x0993, 0x09A8}, {0x09AA, 0x09B0}, {0x09B2, 0x09B2},\n\t{0x09B6, 0x09B9}, {0x09BC, 0x09C4}, {0x09C7, 0x09C8},\n\t{0x09CB, 0x09CE}, {0x09D7, 0x09D7}, {0x09DC, 0x09DD},\n\t{0x09DF, 0x09E3}, {0x09E6, 0x09FE}, {0x0A01, 0x0A03},\n\t{0x0A05, 0x0A0A}, {0x0A0F, 0x0A10}, {0x0A13, 0x0A28},\n\t{0x0A2A, 0x0A30}, {0x0A32, 0x0A33}, {0x0A35, 0x0A36},\n\t{0x0A38, 0x0A39}, {0x0A3C, 0x0A3C}, {0x0A3E, 0x0A42},\n\t{0x0A47, 0x0A48}, {0x0A4B, 0x0A4D}, {0x0A51, 0x0A51},\n\t{0x0A59, 0x0A5C}, {0x0A5E, 0x0A5E}, {0x0A66, 0x0A76},\n\t{0x0A81, 0x0A83}, {0x0A85, 0x0A8D}, {0x0A8F, 0x0A91},\n\t{0x0A93, 0x0AA8}, {0x0AAA, 0x0AB0}, {0x0AB2, 0x0AB3},\n\t{0x0AB5, 0x0AB9}, {0x0ABC, 0x0AC5}, {0x0AC7, 0x0AC9},\n\t{0x0ACB, 0x0ACD}, {0x0AD0, 0x0AD0}, {0x0AE0, 0x0AE3},\n\t{0x0AE6, 0x0AF1}, {0x0AF9, 0x0AFF}, {0x0B01, 0x0B03},\n\t{0x0B05, 0x0B0C}, {0x0B0F, 0x0B10}, {0x0B13, 0x0B28},\n\t{0x0B2A, 0x0B30}, {0x0B32, 0x0B33}, {0x0B35, 0x0B39},\n\t{0x0B3C, 0x0B44}, {0x0B47, 0x0B48}, {0x0B4B, 0x0B4D},\n\t{0x0B56, 0x0B57}, {0x0B5C, 0x0B5D}, {0x0B5F, 0x0B63},\n\t{0x0B66, 0x0B77}, {0x0B82, 0x0B83}, {0x0B85, 0x0B8A},\n\t{0x0B8E, 0x0B90}, {0x0B92, 0x0B95}, {0x0B99, 0x0B9A},\n\t{0x0B9C, 0x0B9C}, {0x0B9E, 0x0B9F}, {0x0BA3, 0x0BA4},\n\t{0x0BA8, 0x0BAA}, {0x0BAE, 0x0BB9}, {0x0BBE, 0x0BC2},\n\t{0x0BC6, 0x0BC8}, {0x0BCA, 0x0BCD}, {0x0BD0, 0x0BD0},\n\t{0x0BD7, 0x0BD7}, {0x0BE6, 0x0BFA}, {0x0C00, 0x0C0C},\n\t{0x0C0E, 0x0C10}, {0x0C12, 0x0C28}, {0x0C2A, 0x0C39},\n\t{0x0C3D, 0x0C44}, {0x0C46, 0x0C48}, {0x0C4A, 0x0C4D},\n\t{0x0C55, 0x0C56}, {0x0C58, 0x0C5A}, {0x0C60, 0x0C63},\n\t{0x0C66, 0x0C6F}, {0x0C77, 0x0C8C}, {0x0C8E, 0x0C90},\n\t{0x0C92, 0x0CA8}, {0x0CAA, 0x0CB3}, {0x0CB5, 0x0CB9},\n\t{0x0CBC, 0x0CC4}, {0x0CC6, 0x0CC8}, {0x0CCA, 0x0CCD},\n\t{0x0CD5, 0x0CD6}, {0x0CDE, 0x0CDE}, {0x0CE0, 0x0CE3},\n\t{0x0CE6, 0x0CEF}, {0x0CF1, 0x0CF2}, {0x0D00, 0x0D03},\n\t{0x0D05, 0x0D0C}, {0x0D0E, 0x0D10}, {0x0D12, 0x0D44},\n\t{0x0D46, 0x0D48}, {0x0D4A, 0x0D4F}, {0x0D54, 0x0D63},\n\t{0x0D66, 0x0D7F}, {0x0D82, 0x0D83}, {0x0D85, 0x0D96},\n\t{0x0D9A, 0x0DB1}, {0x0DB3, 0x0DBB}, {0x0DBD, 0x0DBD},\n\t{0x0DC0, 0x0DC6}, {0x0DCA, 0x0DCA}, {0x0DCF, 0x0DD4},\n\t{0x0DD6, 0x0DD6}, {0x0DD8, 0x0DDF}, {0x0DE6, 0x0DEF},\n\t{0x0DF2, 0x0DF4}, {0x0E01, 0x0E3A}, {0x0E3F, 0x0E5B},\n\t{0x0E81, 0x0E82}, {0x0E84, 0x0E84}, {0x0E86, 0x0E8A},\n\t{0x0E8C, 0x0EA3}, {0x0EA5, 0x0EA5}, {0x0EA7, 0x0EBD},\n\t{0x0EC0, 0x0EC4}, {0x0EC6, 0x0EC6}, {0x0EC8, 0x0ECD},\n\t{0x0ED0, 0x0ED9}, {0x0EDC, 0x0EDF}, {0x0F00, 0x0F47},\n\t{0x0F49, 0x0F6C}, {0x0F71, 0x0F97}, {0x0F99, 0x0FBC},\n\t{0x0FBE, 0x0FCC}, {0x0FCE, 0x0FDA}, {0x1000, 0x10C5},\n\t{0x10C7, 0x10C7}, {0x10CD, 0x10CD}, {0x10D0, 0x10FF},\n\t{0x1160, 0x1248}, {0x124A, 0x124D}, {0x1250, 0x1256},\n\t{0x1258, 0x1258}, {0x125A, 0x125D}, {0x1260, 0x1288},\n\t{0x128A, 0x128D}, {0x1290, 0x12B0}, {0x12B2, 0x12B5},\n\t{0x12B8, 0x12BE}, {0x12C0, 0x12C0}, {0x12C2, 0x12C5},\n\t{0x12C8, 0x12D6}, {0x12D8, 0x1310}, {0x1312, 0x1315},\n\t{0x1318, 0x135A}, {0x135D, 0x137C}, {0x1380, 0x1399},\n\t{0x13A0, 0x13F5}, {0x13F8, 0x13FD}, {0x1400, 0x169C},\n\t{0x16A0, 0x16F8}, {0x1700, 0x170C}, {0x170E, 0x1714},\n\t{0x1720, 0x1736}, {0x1740, 0x1753}, {0x1760, 0x176C},\n\t{0x176E, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17DD},\n\t{0x17E0, 0x17E9}, {0x17F0, 0x17F9}, {0x1800, 0x180E},\n\t{0x1810, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18AA},\n\t{0x18B0, 0x18F5}, {0x1900, 0x191E}, {0x1920, 0x192B},\n\t{0x1930, 0x193B}, {0x1940, 0x1940}, {0x1944, 0x196D},\n\t{0x1970, 0x1974}, {0x1980, 0x19AB}, {0x19B0, 0x19C9},\n\t{0x19D0, 0x19DA}, {0x19DE, 0x1A1B}, {0x1A1E, 0x1A5E},\n\t{0x1A60, 0x1A7C}, {0x1A7F, 0x1A89}, {0x1A90, 0x1A99},\n\t{0x1AA0, 0x1AAD}, {0x1AB0, 0x1ABE}, {0x1B00, 0x1B4B},\n\t{0x1B50, 0x1B7C}, {0x1B80, 0x1BF3}, {0x1BFC, 0x1C37},\n\t{0x1C3B, 0x1C49}, {0x1C4D, 0x1C88}, {0x1C90, 0x1CBA},\n\t{0x1CBD, 0x1CC7}, {0x1CD0, 0x1CFA}, {0x1D00, 0x1DF9},\n\t{0x1DFB, 0x1F15}, {0x1F18, 0x1F1D}, {0x1F20, 0x1F45},\n\t{0x1F48, 0x1F4D}, {0x1F50, 0x1F57}, {0x1F59, 0x1F59},\n\t{0x1F5B, 0x1F5B}, {0x1F5D, 0x1F5D}, {0x1F5F, 0x1F7D},\n\t{0x1F80, 0x1FB4}, {0x1FB6, 0x1FC4}, {0x1FC6, 0x1FD3},\n\t{0x1FD6, 0x1FDB}, {0x1FDD, 0x1FEF}, {0x1FF2, 0x1FF4},\n\t{0x1FF6, 0x1FFE}, {0x2000, 0x200F}, {0x2011, 0x2012},\n\t{0x2017, 0x2017}, {0x201A, 0x201B}, {0x201E, 0x201F},\n\t{0x2023, 0x2023}, {0x2028, 0x202F}, {0x2031, 0x2031},\n\t{0x2034, 0x2034}, {0x2036, 0x203A}, {0x203C, 0x203D},\n\t{0x203F, 0x2064}, {0x2066, 0x2071}, {0x2075, 0x207E},\n\t{0x2080, 0x2080}, {0x2085, 0x208E}, {0x2090, 0x209C},\n\t{0x20A0, 0x20A8}, {0x20AA, 0x20AB}, {0x20AD, 0x20BF},\n\t{0x20D0, 0x20F0}, {0x2100, 0x2102}, {0x2104, 0x2104},\n\t{0x2106, 0x2108}, {0x210A, 0x2112}, {0x2114, 0x2115},\n\t{0x2117, 0x2120}, {0x2123, 0x2125}, {0x2127, 0x212A},\n\t{0x212C, 0x2152}, {0x2155, 0x215A}, {0x215F, 0x215F},\n\t{0x216C, 0x216F}, {0x217A, 0x2188}, {0x218A, 0x218B},\n\t{0x219A, 0x21B7}, {0x21BA, 0x21D1}, {0x21D3, 0x21D3},\n\t{0x21D5, 0x21E6}, {0x21E8, 0x21FF}, {0x2201, 0x2201},\n\t{0x2204, 0x2206}, {0x2209, 0x220A}, {0x220C, 0x220E},\n\t{0x2210, 0x2210}, {0x2212, 0x2214}, {0x2216, 0x2219},\n\t{0x221B, 0x221C}, {0x2221, 0x2222}, {0x2224, 0x2224},\n\t{0x2226, 0x2226}, {0x222D, 0x222D}, {0x222F, 0x2233},\n\t{0x2238, 0x223B}, {0x223E, 0x2247}, {0x2249, 0x224B},\n\t{0x224D, 0x2251}, {0x2253, 0x225F}, {0x2262, 0x2263},\n\t{0x2268, 0x2269}, {0x226C, 0x226D}, {0x2270, 0x2281},\n\t{0x2284, 0x2285}, {0x2288, 0x2294}, {0x2296, 0x2298},\n\t{0x229A, 0x22A4}, {0x22A6, 0x22BE}, {0x22C0, 0x2311},\n\t{0x2313, 0x2319}, {0x231C, 0x2328}, {0x232B, 0x23E8},\n\t{0x23ED, 0x23EF}, {0x23F1, 0x23F2}, {0x23F4, 0x2426},\n\t{0x2440, 0x244A}, {0x24EA, 0x24EA}, {0x254C, 0x254F},\n\t{0x2574, 0x257F}, {0x2590, 0x2591}, {0x2596, 0x259F},\n\t{0x25A2, 0x25A2}, {0x25AA, 0x25B1}, {0x25B4, 0x25B5},\n\t{0x25B8, 0x25BB}, {0x25BE, 0x25BF}, {0x25C2, 0x25C5},\n\t{0x25C9, 0x25CA}, {0x25CC, 0x25CD}, {0x25D2, 0x25E1},\n\t{0x25E6, 0x25EE}, {0x25F0, 0x25FC}, {0x25FF, 0x2604},\n\t{0x2607, 0x2608}, {0x260A, 0x260D}, {0x2610, 0x2613},\n\t{0x2616, 0x261B}, {0x261D, 0x261D}, {0x261F, 0x263F},\n\t{0x2641, 0x2641}, {0x2643, 0x2647}, {0x2654, 0x265F},\n\t{0x2662, 0x2662}, {0x2666, 0x2666}, {0x266B, 0x266B},\n\t{0x266E, 0x266E}, {0x2670, 0x267E}, {0x2680, 0x2692},\n\t{0x2694, 0x269D}, {0x26A0, 0x26A0}, {0x26A2, 0x26A9},\n\t{0x26AC, 0x26BC}, {0x26C0, 0x26C3}, {0x26E2, 0x26E2},\n\t{0x26E4, 0x26E7}, {0x2700, 0x2704}, {0x2706, 0x2709},\n\t{0x270C, 0x2727}, {0x2729, 0x273C}, {0x273E, 0x274B},\n\t{0x274D, 0x274D}, {0x274F, 0x2752}, {0x2756, 0x2756},\n\t{0x2758, 0x2775}, {0x2780, 0x2794}, {0x2798, 0x27AF},\n\t{0x27B1, 0x27BE}, {0x27C0, 0x27E5}, {0x27EE, 0x2984},\n\t{0x2987, 0x2B1A}, {0x2B1D, 0x2B4F}, {0x2B51, 0x2B54},\n\t{0x2B5A, 0x2B73}, {0x2B76, 0x2B95}, {0x2B98, 0x2C2E},\n\t{0x2C30, 0x2C5E}, {0x2C60, 0x2CF3}, {0x2CF9, 0x2D25},\n\t{0x2D27, 0x2D27}, {0x2D2D, 0x2D2D}, {0x2D30, 0x2D67},\n\t{0x2D6F, 0x2D70}, {0x2D7F, 0x2D96}, {0x2DA0, 0x2DA6},\n\t{0x2DA8, 0x2DAE}, {0x2DB0, 0x2DB6}, {0x2DB8, 0x2DBE},\n\t{0x2DC0, 0x2DC6}, {0x2DC8, 0x2DCE}, {0x2DD0, 0x2DD6},\n\t{0x2DD8, 0x2DDE}, {0x2DE0, 0x2E4F}, {0x303F, 0x303F},\n\t{0x4DC0, 0x4DFF}, {0xA4D0, 0xA62B}, {0xA640, 0xA6F7},\n\t{0xA700, 0xA7BF}, {0xA7C2, 0xA7C6}, {0xA7F7, 0xA82B},\n\t{0xA830, 0xA839}, {0xA840, 0xA877}, {0xA880, 0xA8C5},\n\t{0xA8CE, 0xA8D9}, {0xA8E0, 0xA953}, {0xA95F, 0xA95F},\n\t{0xA980, 0xA9CD}, {0xA9CF, 0xA9D9}, {0xA9DE, 0xA9FE},\n\t{0xAA00, 0xAA36}, {0xAA40, 0xAA4D}, {0xAA50, 0xAA59},\n\t{0xAA5C, 0xAAC2}, {0xAADB, 0xAAF6}, {0xAB01, 0xAB06},\n\t{0xAB09, 0xAB0E}, {0xAB11, 0xAB16}, {0xAB20, 0xAB26},\n\t{0xAB28, 0xAB2E}, {0xAB30, 0xAB67}, {0xAB70, 0xABED},\n\t{0xABF0, 0xABF9}, {0xD7B0, 0xD7C6}, {0xD7CB, 0xD7FB},\n\t{0xD800, 0xDFFF}, {0xFB00, 0xFB06}, {0xFB13, 0xFB17},\n\t{0xFB1D, 0xFB36}, {0xFB38, 0xFB3C}, {0xFB3E, 0xFB3E},\n\t{0xFB40, 0xFB41}, {0xFB43, 0xFB44}, {0xFB46, 0xFBC1},\n\t{0xFBD3, 0xFD3F}, {0xFD50, 0xFD8F}, {0xFD92, 0xFDC7},\n\t{0xFDF0, 0xFDFD}, {0xFE20, 0xFE2F}, {0xFE70, 0xFE74},\n\t{0xFE76, 0xFEFC}, {0xFEFF, 0xFEFF}, {0xFFF9, 0xFFFC},\n\t{0x10000, 0x1000B}, {0x1000D, 0x10026}, {0x10028, 0x1003A},\n\t{0x1003C, 0x1003D}, {0x1003F, 0x1004D}, {0x10050, 0x1005D},\n\t{0x10080, 0x100FA}, {0x10100, 0x10102}, {0x10107, 0x10133},\n\t{0x10137, 0x1018E}, {0x10190, 0x1019B}, {0x101A0, 0x101A0},\n\t{0x101D0, 0x101FD}, {0x10280, 0x1029C}, {0x102A0, 0x102D0},\n\t{0x102E0, 0x102FB}, {0x10300, 0x10323}, {0x1032D, 0x1034A},\n\t{0x10350, 0x1037A}, {0x10380, 0x1039D}, {0x1039F, 0x103C3},\n\t{0x103C8, 0x103D5}, {0x10400, 0x1049D}, {0x104A0, 0x104A9},\n\t{0x104B0, 0x104D3}, {0x104D8, 0x104FB}, {0x10500, 0x10527},\n\t{0x10530, 0x10563}, {0x1056F, 0x1056F}, {0x10600, 0x10736},\n\t{0x10740, 0x10755}, {0x10760, 0x10767}, {0x10800, 0x10805},\n\t{0x10808, 0x10808}, {0x1080A, 0x10835}, {0x10837, 0x10838},\n\t{0x1083C, 0x1083C}, {0x1083F, 0x10855}, {0x10857, 0x1089E},\n\t{0x108A7, 0x108AF}, {0x108E0, 0x108F2}, {0x108F4, 0x108F5},\n\t{0x108FB, 0x1091B}, {0x1091F, 0x10939}, {0x1093F, 0x1093F},\n\t{0x10980, 0x109B7}, {0x109BC, 0x109CF}, {0x109D2, 0x10A03},\n\t{0x10A05, 0x10A06}, {0x10A0C, 0x10A13}, {0x10A15, 0x10A17},\n\t{0x10A19, 0x10A35}, {0x10A38, 0x10A3A}, {0x10A3F, 0x10A48},\n\t{0x10A50, 0x10A58}, {0x10A60, 0x10A9F}, {0x10AC0, 0x10AE6},\n\t{0x10AEB, 0x10AF6}, {0x10B00, 0x10B35}, {0x10B39, 0x10B55},\n\t{0x10B58, 0x10B72}, {0x10B78, 0x10B91}, {0x10B99, 0x10B9C},\n\t{0x10BA9, 0x10BAF}, {0x10C00, 0x10C48}, {0x10C80, 0x10CB2},\n\t{0x10CC0, 0x10CF2}, {0x10CFA, 0x10D27}, {0x10D30, 0x10D39},\n\t{0x10E60, 0x10E7E}, {0x10F00, 0x10F27}, {0x10F30, 0x10F59},\n\t{0x10FE0, 0x10FF6}, {0x11000, 0x1104D}, {0x11052, 0x1106F},\n\t{0x1107F, 0x110C1}, {0x110CD, 0x110CD}, {0x110D0, 0x110E8},\n\t{0x110F0, 0x110F9}, {0x11100, 0x11134}, {0x11136, 0x11146},\n\t{0x11150, 0x11176}, {0x11180, 0x111CD}, {0x111D0, 0x111DF},\n\t{0x111E1, 0x111F4}, {0x11200, 0x11211}, {0x11213, 0x1123E},\n\t{0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128A, 0x1128D},\n\t{0x1128F, 0x1129D}, {0x1129F, 0x112A9}, {0x112B0, 0x112EA},\n\t{0x112F0, 0x112F9}, {0x11300, 0x11303}, {0x11305, 0x1130C},\n\t{0x1130F, 0x11310}, {0x11313, 0x11328}, {0x1132A, 0x11330},\n\t{0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133B, 0x11344},\n\t{0x11347, 0x11348}, {0x1134B, 0x1134D}, {0x11350, 0x11350},\n\t{0x11357, 0x11357}, {0x1135D, 0x11363}, {0x11366, 0x1136C},\n\t{0x11370, 0x11374}, {0x11400, 0x11459}, {0x1145B, 0x1145B},\n\t{0x1145D, 0x1145F}, {0x11480, 0x114C7}, {0x114D0, 0x114D9},\n\t{0x11580, 0x115B5}, {0x115B8, 0x115DD}, {0x11600, 0x11644},\n\t{0x11650, 0x11659}, {0x11660, 0x1166C}, {0x11680, 0x116B8},\n\t{0x116C0, 0x116C9}, {0x11700, 0x1171A}, {0x1171D, 0x1172B},\n\t{0x11730, 0x1173F}, {0x11800, 0x1183B}, {0x118A0, 0x118F2},\n\t{0x118FF, 0x118FF}, {0x119A0, 0x119A7}, {0x119AA, 0x119D7},\n\t{0x119DA, 0x119E4}, {0x11A00, 0x11A47}, {0x11A50, 0x11AA2},\n\t{0x11AC0, 0x11AF8}, {0x11C00, 0x11C08}, {0x11C0A, 0x11C36},\n\t{0x11C38, 0x11C45}, {0x11C50, 0x11C6C}, {0x11C70, 0x11C8F},\n\t{0x11C92, 0x11CA7}, {0x11CA9, 0x11CB6}, {0x11D00, 0x11D06},\n\t{0x11D08, 0x11D09}, {0x11D0B, 0x11D36}, {0x11D3A, 0x11D3A},\n\t{0x11D3C, 0x11D3D}, {0x11D3F, 0x11D47}, {0x11D50, 0x11D59},\n\t{0x11D60, 0x11D65}, {0x11D67, 0x11D68}, {0x11D6A, 0x11D8E},\n\t{0x11D90, 0x11D91}, {0x11D93, 0x11D98}, {0x11DA0, 0x11DA9},\n\t{0x11EE0, 0x11EF8}, {0x11FC0, 0x11FF1}, {0x11FFF, 0x12399},\n\t{0x12400, 0x1246E}, {0x12470, 0x12474}, {0x12480, 0x12543},\n\t{0x13000, 0x1342E}, {0x13430, 0x13438}, {0x14400, 0x14646},\n\t{0x16800, 0x16A38}, {0x16A40, 0x16A5E}, {0x16A60, 0x16A69},\n\t{0x16A6E, 0x16A6F}, {0x16AD0, 0x16AED}, {0x16AF0, 0x16AF5},\n\t{0x16B00, 0x16B45}, {0x16B50, 0x16B59}, {0x16B5B, 0x16B61},\n\t{0x16B63, 0x16B77}, {0x16B7D, 0x16B8F}, {0x16E40, 0x16E9A},\n\t{0x16F00, 0x16F4A}, {0x16F4F, 0x16F87}, {0x16F8F, 0x16F9F},\n\t{0x1BC00, 0x1BC6A}, {0x1BC70, 0x1BC7C}, {0x1BC80, 0x1BC88},\n\t{0x1BC90, 0x1BC99}, {0x1BC9C, 0x1BCA3}, {0x1D000, 0x1D0F5},\n\t{0x1D100, 0x1D126}, {0x1D129, 0x1D1E8}, {0x1D200, 0x1D245},\n\t{0x1D2E0, 0x1D2F3}, {0x1D300, 0x1D356}, {0x1D360, 0x1D378},\n\t{0x1D400, 0x1D454}, {0x1D456, 0x1D49C}, {0x1D49E, 0x1D49F},\n\t{0x1D4A2, 0x1D4A2}, {0x1D4A5, 0x1D4A6}, {0x1D4A9, 0x1D4AC},\n\t{0x1D4AE, 0x1D4B9}, {0x1D4BB, 0x1D4BB}, {0x1D4BD, 0x1D4C3},\n\t{0x1D4C5, 0x1D505}, {0x1D507, 0x1D50A}, {0x1D50D, 0x1D514},\n\t{0x1D516, 0x1D51C}, {0x1D51E, 0x1D539}, {0x1D53B, 0x1D53E},\n\t{0x1D540, 0x1D544}, {0x1D546, 0x1D546}, {0x1D54A, 0x1D550},\n\t{0x1D552, 0x1D6A5}, {0x1D6A8, 0x1D7CB}, {0x1D7CE, 0x1DA8B},\n\t{0x1DA9B, 0x1DA9F}, {0x1DAA1, 0x1DAAF}, {0x1E000, 0x1E006},\n\t{0x1E008, 0x1E018}, {0x1E01B, 0x1E021}, {0x1E023, 0x1E024},\n\t{0x1E026, 0x1E02A}, {0x1E100, 0x1E12C}, {0x1E130, 0x1E13D},\n\t{0x1E140, 0x1E149}, {0x1E14E, 0x1E14F}, {0x1E2C0, 0x1E2F9},\n\t{0x1E2FF, 0x1E2FF}, {0x1E800, 0x1E8C4}, {0x1E8C7, 0x1E8D6},\n\t{0x1E900, 0x1E94B}, {0x1E950, 0x1E959}, {0x1E95E, 0x1E95F},\n\t{0x1EC71, 0x1ECB4}, {0x1ED01, 0x1ED3D}, {0x1EE00, 0x1EE03},\n\t{0x1EE05, 0x1EE1F}, {0x1EE21, 0x1EE22}, {0x1EE24, 0x1EE24},\n\t{0x1EE27, 0x1EE27}, {0x1EE29, 0x1EE32}, {0x1EE34, 0x1EE37},\n\t{0x1EE39, 0x1EE39}, {0x1EE3B, 0x1EE3B}, {0x1EE42, 0x1EE42},\n\t{0x1EE47, 0x1EE47}, {0x1EE49, 0x1EE49}, {0x1EE4B, 0x1EE4B},\n\t{0x1EE4D, 0x1EE4F}, {0x1EE51, 0x1EE52}, {0x1EE54, 0x1EE54},\n\t{0x1EE57, 0x1EE57}, {0x1EE59, 0x1EE59}, {0x1EE5B, 0x1EE5B},\n\t{0x1EE5D, 0x1EE5D}, {0x1EE5F, 0x1EE5F}, {0x1EE61, 0x1EE62},\n\t{0x1EE64, 0x1EE64}, {0x1EE67, 0x1EE6A}, {0x1EE6C, 0x1EE72},\n\t{0x1EE74, 0x1EE77}, {0x1EE79, 0x1EE7C}, {0x1EE7E, 0x1EE7E},\n\t{0x1EE80, 0x1EE89}, {0x1EE8B, 0x1EE9B}, {0x1EEA1, 0x1EEA3},\n\t{0x1EEA5, 0x1EEA9}, {0x1EEAB, 0x1EEBB}, {0x1EEF0, 0x1EEF1},\n\t{0x1F000, 0x1F003}, {0x1F005, 0x1F02B}, {0x1F030, 0x1F093},\n\t{0x1F0A0, 0x1F0AE}, {0x1F0B1, 0x1F0BF}, {0x1F0C1, 0x1F0CE},\n\t{0x1F0D1, 0x1F0F5}, {0x1F10B, 0x1F10C}, {0x1F12E, 0x1F12F},\n\t{0x1F16A, 0x1F16C}, {0x1F1E6, 0x1F1FF}, {0x1F321, 0x1F32C},\n\t{0x1F336, 0x1F336}, {0x1F37D, 0x1F37D}, {0x1F394, 0x1F39F},\n\t{0x1F3CB, 0x1F3CE}, {0x1F3D4, 0x1F3DF}, {0x1F3F1, 0x1F3F3},\n\t{0x1F3F5, 0x1F3F7}, {0x1F43F, 0x1F43F}, {0x1F441, 0x1F441},\n\t{0x1F4FD, 0x1F4FE}, {0x1F53E, 0x1F54A}, {0x1F54F, 0x1F54F},\n\t{0x1F568, 0x1F579}, {0x1F57B, 0x1F594}, {0x1F597, 0x1F5A3},\n\t{0x1F5A5, 0x1F5FA}, {0x1F650, 0x1F67F}, {0x1F6C6, 0x1F6CB},\n\t{0x1F6CD, 0x1F6CF}, {0x1F6D3, 0x1F6D4}, {0x1F6E0, 0x1F6EA},\n\t{0x1F6F0, 0x1F6F3}, {0x1F700, 0x1F773}, {0x1F780, 0x1F7D8},\n\t{0x1F800, 0x1F80B}, {0x1F810, 0x1F847}, {0x1F850, 0x1F859},\n\t{0x1F860, 0x1F887}, {0x1F890, 0x1F8AD}, {0x1F900, 0x1F90B},\n\t{0x1FA00, 0x1FA53}, {0x1FA60, 0x1FA6D}, {0xE0001, 0xE0001},\n\t{0xE0020, 0xE007F},\n}\n\nvar emoji = table{\n\t{0x203C, 0x203C}, {0x2049, 0x2049}, {0x2122, 0x2122},\n\t{0x2139, 0x2139}, {0x2194, 0x2199}, {0x21A9, 0x21AA},\n\t{0x231A, 0x231B}, {0x2328, 0x2328}, {0x2388, 0x2388},\n\t{0x23CF, 0x23CF}, {0x23E9, 0x23F3}, {0x23F8, 0x23FA},\n\t{0x24C2, 0x24C2}, {0x25AA, 0x25AB}, {0x25B6, 0x25B6},\n\t{0x25C0, 0x25C0}, {0x25FB, 0x25FE}, {0x2600, 0x2605},\n\t{0x2607, 0x2612}, {0x2614, 0x2685}, {0x2690, 0x2705},\n\t{0x2708, 0x2712}, {0x2714, 0x2714}, {0x2716, 0x2716},\n\t{0x271D, 0x271D}, {0x2721, 0x2721}, {0x2728, 0x2728},\n\t{0x2733, 0x2734}, {0x2744, 0x2744}, {0x2747, 0x2747},\n\t{0x274C, 0x274C}, {0x274E, 0x274E}, {0x2753, 0x2755},\n\t{0x2757, 0x2757}, {0x2763, 0x2767}, {0x2795, 0x2797},\n\t{0x27A1, 0x27A1}, {0x27B0, 0x27B0}, {0x27BF, 0x27BF},\n\t{0x2934, 0x2935}, {0x2B05, 0x2B07}, {0x2B1B, 0x2B1C},\n\t{0x2B50, 0x2B50}, {0x2B55, 0x2B55}, {0x3030, 0x3030},\n\t{0x303D, 0x303D}, {0x3297, 0x3297}, {0x3299, 0x3299},\n\t{0x1F000, 0x1F0FF}, {0x1F10D, 0x1F10F}, {0x1F12F, 0x1F12F},\n\t{0x1F16C, 0x1F171}, {0x1F17E, 0x1F17F}, {0x1F18E, 0x1F18E},\n\t{0x1F191, 0x1F19A}, {0x1F1AD, 0x1F1E5}, {0x1F201, 0x1F20F},\n\t{0x1F21A, 0x1F21A}, {0x1F22F, 0x1F22F}, {0x1F232, 0x1F23A},\n\t{0x1F23C, 0x1F23F}, {0x1F249, 0x1F3FA}, {0x1F400, 0x1F53D},\n\t{0x1F546, 0x1F64F}, {0x1F680, 0x1F6FF}, {0x1F774, 0x1F77F},\n\t{0x1F7D5, 0x1F7FF}, {0x1F80C, 0x1F80F}, {0x1F848, 0x1F84F},\n\t{0x1F85A, 0x1F85F}, {0x1F888, 0x1F88F}, {0x1F8AE, 0x1F8FF},\n\t{0x1F90C, 0x1F93A}, {0x1F93C, 0x1F945}, {0x1F947, 0x1FFFD},\n}\n"
  },
  {
    "path": "vendor/github.com/mattn/go-runewidth/runewidth_windows.go",
    "content": "// +build windows\n// +build !appengine\n\npackage runewidth\n\nimport (\n\t\"syscall\"\n)\n\nvar (\n\tkernel32               = syscall.NewLazyDLL(\"kernel32\")\n\tprocGetConsoleOutputCP = kernel32.NewProc(\"GetConsoleOutputCP\")\n)\n\n// IsEastAsian return true if the current locale is CJK\nfunc IsEastAsian() bool {\n\tr1, _, _ := procGetConsoleOutputCP.Call()\n\tif r1 == 0 {\n\t\treturn false\n\t}\n\n\tswitch int(r1) {\n\tcase 932, 51932, 936, 949, 950:\n\t\treturn true\n\t}\n\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/mitchellh/go-homedir/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Mitchell Hashimoto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/mitchellh/go-homedir/README.md",
    "content": "# go-homedir\n\nThis is a Go library for detecting the user's home directory without\nthe use of cgo, so the library can be used in cross-compilation environments.\n\nUsage is incredibly simple, just call `homedir.Dir()` to get the home directory\nfor a user, and `homedir.Expand()` to expand the `~` in a path to the home\ndirectory.\n\n**Why not just use `os/user`?** The built-in `os/user` package requires\ncgo on Darwin systems. This means that any Go code that uses that package\ncannot cross compile. But 99% of the time the use for `os/user` is just to\nretrieve the home directory, which we can do for the current user without\ncgo. This library does that, enabling cross-compilation.\n"
  },
  {
    "path": "vendor/github.com/mitchellh/go-homedir/go.mod",
    "content": "module github.com/mitchellh/go-homedir\n"
  },
  {
    "path": "vendor/github.com/mitchellh/go-homedir/homedir.go",
    "content": "package homedir\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"os\"\n\t\"os/exec\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n)\n\n// DisableCache will disable caching of the home directory. Caching is enabled\n// by default.\nvar DisableCache bool\n\nvar homedirCache string\nvar cacheLock sync.RWMutex\n\n// Dir returns the home directory for the executing user.\n//\n// This uses an OS-specific method for discovering the home directory.\n// An error is returned if a home directory cannot be detected.\nfunc Dir() (string, error) {\n\tif !DisableCache {\n\t\tcacheLock.RLock()\n\t\tcached := homedirCache\n\t\tcacheLock.RUnlock()\n\t\tif cached != \"\" {\n\t\t\treturn cached, nil\n\t\t}\n\t}\n\n\tcacheLock.Lock()\n\tdefer cacheLock.Unlock()\n\n\tvar result string\n\tvar err error\n\tif runtime.GOOS == \"windows\" {\n\t\tresult, err = dirWindows()\n\t} else {\n\t\t// Unix-like system, so just assume Unix\n\t\tresult, err = dirUnix()\n\t}\n\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\thomedirCache = result\n\treturn result, nil\n}\n\n// Expand expands the path to include the home directory if the path\n// is prefixed with `~`. If it isn't prefixed with `~`, the path is\n// returned as-is.\nfunc Expand(path string) (string, error) {\n\tif len(path) == 0 {\n\t\treturn path, nil\n\t}\n\n\tif path[0] != '~' {\n\t\treturn path, nil\n\t}\n\n\tif len(path) > 1 && path[1] != '/' && path[1] != '\\\\' {\n\t\treturn \"\", errors.New(\"cannot expand user-specific home dir\")\n\t}\n\n\tdir, err := Dir()\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\n\treturn filepath.Join(dir, path[1:]), nil\n}\n\n// Reset clears the cache, forcing the next call to Dir to re-detect\n// the home directory. This generally never has to be called, but can be\n// useful in tests if you're modifying the home directory via the HOME\n// env var or something.\nfunc Reset() {\n\tcacheLock.Lock()\n\tdefer cacheLock.Unlock()\n\thomedirCache = \"\"\n}\n\nfunc dirUnix() (string, error) {\n\thomeEnv := \"HOME\"\n\tif runtime.GOOS == \"plan9\" {\n\t\t// On plan9, env vars are lowercase.\n\t\thomeEnv = \"home\"\n\t}\n\n\t// First prefer the HOME environmental variable\n\tif home := os.Getenv(homeEnv); home != \"\" {\n\t\treturn home, nil\n\t}\n\n\tvar stdout bytes.Buffer\n\n\t// If that fails, try OS specific commands\n\tif runtime.GOOS == \"darwin\" {\n\t\tcmd := exec.Command(\"sh\", \"-c\", `dscl -q . -read /Users/\"$(whoami)\" NFSHomeDirectory | sed 's/^[^ ]*: //'`)\n\t\tcmd.Stdout = &stdout\n\t\tif err := cmd.Run(); err == nil {\n\t\t\tresult := strings.TrimSpace(stdout.String())\n\t\t\tif result != \"\" {\n\t\t\t\treturn result, nil\n\t\t\t}\n\t\t}\n\t} else {\n\t\tcmd := exec.Command(\"getent\", \"passwd\", strconv.Itoa(os.Getuid()))\n\t\tcmd.Stdout = &stdout\n\t\tif err := cmd.Run(); err != nil {\n\t\t\t// If the error is ErrNotFound, we ignore it. Otherwise, return it.\n\t\t\tif err != exec.ErrNotFound {\n\t\t\t\treturn \"\", err\n\t\t\t}\n\t\t} else {\n\t\t\tif passwd := strings.TrimSpace(stdout.String()); passwd != \"\" {\n\t\t\t\t// username:password:uid:gid:gecos:home:shell\n\t\t\t\tpasswdParts := strings.SplitN(passwd, \":\", 7)\n\t\t\t\tif len(passwdParts) > 5 {\n\t\t\t\t\treturn passwdParts[5], nil\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// If all else fails, try the shell\n\tstdout.Reset()\n\tcmd := exec.Command(\"sh\", \"-c\", \"cd && pwd\")\n\tcmd.Stdout = &stdout\n\tif err := cmd.Run(); err != nil {\n\t\treturn \"\", err\n\t}\n\n\tresult := strings.TrimSpace(stdout.String())\n\tif result == \"\" {\n\t\treturn \"\", errors.New(\"blank output when reading home directory\")\n\t}\n\n\treturn result, nil\n}\n\nfunc dirWindows() (string, error) {\n\t// First prefer the HOME environmental variable\n\tif home := os.Getenv(\"HOME\"); home != \"\" {\n\t\treturn home, nil\n\t}\n\n\t// Prefer standard environment variable USERPROFILE\n\tif home := os.Getenv(\"USERPROFILE\"); home != \"\" {\n\t\treturn home, nil\n\t}\n\n\tdrive := os.Getenv(\"HOMEDRIVE\")\n\tpath := os.Getenv(\"HOMEPATH\")\n\thome := drive + path\n\tif drive == \"\" || path == \"\" {\n\t\treturn \"\", errors.New(\"HOMEDRIVE, HOMEPATH, or USERPROFILE are blank\")\n\t}\n\n\treturn home, nil\n}\n"
  },
  {
    "path": "vendor/github.com/mitchellh/mapstructure/.travis.yml",
    "content": "language: go\n\ngo:\n  - \"1.11.x\"\n  - tip\n\nscript:\n  - go test\n"
  },
  {
    "path": "vendor/github.com/mitchellh/mapstructure/CHANGELOG.md",
    "content": "## 1.1.2\n\n* Fix error when decode hook decodes interface implementation into interface\n  type. [GH-140]\n\n## 1.1.1\n\n* Fix panic that can happen in `decodePtr`\n\n## 1.1.0\n\n* Added `StringToIPHookFunc` to convert `string` to `net.IP` and `net.IPNet` [GH-133]\n* Support struct to struct decoding [GH-137]\n* If source map value is nil, then destination map value is nil (instead of empty)\n* If source slice value is nil, then destination slice value is nil (instead of empty)\n* If source pointer is nil, then destination pointer is set to nil (instead of\n  allocated zero value of type)\n\n## 1.0.0\n\n* Initial tagged stable release.\n"
  },
  {
    "path": "vendor/github.com/mitchellh/mapstructure/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Mitchell Hashimoto\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/mitchellh/mapstructure/README.md",
    "content": "# mapstructure [![Godoc](https://godoc.org/github.com/mitchellh/mapstructure?status.svg)](https://godoc.org/github.com/mitchellh/mapstructure)\n\nmapstructure is a Go library for decoding generic map values to structures\nand vice versa, while providing helpful error handling.\n\nThis library is most useful when decoding values from some data stream (JSON,\nGob, etc.) where you don't _quite_ know the structure of the underlying data\nuntil you read a part of it. You can therefore read a `map[string]interface{}`\nand use this library to decode it into the proper underlying native Go\nstructure.\n\n## Installation\n\nStandard `go get`:\n\n```\n$ go get github.com/mitchellh/mapstructure\n```\n\n## Usage & Example\n\nFor usage and examples see the [Godoc](http://godoc.org/github.com/mitchellh/mapstructure).\n\nThe `Decode` function has examples associated with it there.\n\n## But Why?!\n\nGo offers fantastic standard libraries for decoding formats such as JSON.\nThe standard method is to have a struct pre-created, and populate that struct\nfrom the bytes of the encoded format. This is great, but the problem is if\nyou have configuration or an encoding that changes slightly depending on\nspecific fields. For example, consider this JSON:\n\n```json\n{\n  \"type\": \"person\",\n  \"name\": \"Mitchell\"\n}\n```\n\nPerhaps we can't populate a specific structure without first reading\nthe \"type\" field from the JSON. We could always do two passes over the\ndecoding of the JSON (reading the \"type\" first, and the rest later).\nHowever, it is much simpler to just decode this into a `map[string]interface{}`\nstructure, read the \"type\" key, then use something like this library\nto decode it into the proper structure.\n"
  },
  {
    "path": "vendor/github.com/mitchellh/mapstructure/decode_hooks.go",
    "content": "package mapstructure\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"net\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n)\n\n// typedDecodeHook takes a raw DecodeHookFunc (an interface{}) and turns\n// it into the proper DecodeHookFunc type, such as DecodeHookFuncType.\nfunc typedDecodeHook(h DecodeHookFunc) DecodeHookFunc {\n\t// Create variables here so we can reference them with the reflect pkg\n\tvar f1 DecodeHookFuncType\n\tvar f2 DecodeHookFuncKind\n\n\t// Fill in the variables into this interface and the rest is done\n\t// automatically using the reflect package.\n\tpotential := []interface{}{f1, f2}\n\n\tv := reflect.ValueOf(h)\n\tvt := v.Type()\n\tfor _, raw := range potential {\n\t\tpt := reflect.ValueOf(raw).Type()\n\t\tif vt.ConvertibleTo(pt) {\n\t\t\treturn v.Convert(pt).Interface()\n\t\t}\n\t}\n\n\treturn nil\n}\n\n// DecodeHookExec executes the given decode hook. This should be used\n// since it'll naturally degrade to the older backwards compatible DecodeHookFunc\n// that took reflect.Kind instead of reflect.Type.\nfunc DecodeHookExec(\n\traw DecodeHookFunc,\n\tfrom reflect.Type, to reflect.Type,\n\tdata interface{}) (interface{}, error) {\n\tswitch f := typedDecodeHook(raw).(type) {\n\tcase DecodeHookFuncType:\n\t\treturn f(from, to, data)\n\tcase DecodeHookFuncKind:\n\t\treturn f(from.Kind(), to.Kind(), data)\n\tdefault:\n\t\treturn nil, errors.New(\"invalid decode hook signature\")\n\t}\n}\n\n// ComposeDecodeHookFunc creates a single DecodeHookFunc that\n// automatically composes multiple DecodeHookFuncs.\n//\n// The composed funcs are called in order, with the result of the\n// previous transformation.\nfunc ComposeDecodeHookFunc(fs ...DecodeHookFunc) DecodeHookFunc {\n\treturn func(\n\t\tf reflect.Type,\n\t\tt reflect.Type,\n\t\tdata interface{}) (interface{}, error) {\n\t\tvar err error\n\t\tfor _, f1 := range fs {\n\t\t\tdata, err = DecodeHookExec(f1, f, t, data)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\n\t\t\t// Modify the from kind to be correct with the new data\n\t\t\tf = nil\n\t\t\tif val := reflect.ValueOf(data); val.IsValid() {\n\t\t\t\tf = val.Type()\n\t\t\t}\n\t\t}\n\n\t\treturn data, nil\n\t}\n}\n\n// StringToSliceHookFunc returns a DecodeHookFunc that converts\n// string to []string by splitting on the given sep.\nfunc StringToSliceHookFunc(sep string) DecodeHookFunc {\n\treturn func(\n\t\tf reflect.Kind,\n\t\tt reflect.Kind,\n\t\tdata interface{}) (interface{}, error) {\n\t\tif f != reflect.String || t != reflect.Slice {\n\t\t\treturn data, nil\n\t\t}\n\n\t\traw := data.(string)\n\t\tif raw == \"\" {\n\t\t\treturn []string{}, nil\n\t\t}\n\n\t\treturn strings.Split(raw, sep), nil\n\t}\n}\n\n// StringToTimeDurationHookFunc returns a DecodeHookFunc that converts\n// strings to time.Duration.\nfunc StringToTimeDurationHookFunc() DecodeHookFunc {\n\treturn func(\n\t\tf reflect.Type,\n\t\tt reflect.Type,\n\t\tdata interface{}) (interface{}, error) {\n\t\tif f.Kind() != reflect.String {\n\t\t\treturn data, nil\n\t\t}\n\t\tif t != reflect.TypeOf(time.Duration(5)) {\n\t\t\treturn data, nil\n\t\t}\n\n\t\t// Convert it by parsing\n\t\treturn time.ParseDuration(data.(string))\n\t}\n}\n\n// StringToIPHookFunc returns a DecodeHookFunc that converts\n// strings to net.IP\nfunc StringToIPHookFunc() DecodeHookFunc {\n\treturn func(\n\t\tf reflect.Type,\n\t\tt reflect.Type,\n\t\tdata interface{}) (interface{}, error) {\n\t\tif f.Kind() != reflect.String {\n\t\t\treturn data, nil\n\t\t}\n\t\tif t != reflect.TypeOf(net.IP{}) {\n\t\t\treturn data, nil\n\t\t}\n\n\t\t// Convert it by parsing\n\t\tip := net.ParseIP(data.(string))\n\t\tif ip == nil {\n\t\t\treturn net.IP{}, fmt.Errorf(\"failed parsing ip %v\", data)\n\t\t}\n\n\t\treturn ip, nil\n\t}\n}\n\n// StringToIPNetHookFunc returns a DecodeHookFunc that converts\n// strings to net.IPNet\nfunc StringToIPNetHookFunc() DecodeHookFunc {\n\treturn func(\n\t\tf reflect.Type,\n\t\tt reflect.Type,\n\t\tdata interface{}) (interface{}, error) {\n\t\tif f.Kind() != reflect.String {\n\t\t\treturn data, nil\n\t\t}\n\t\tif t != reflect.TypeOf(net.IPNet{}) {\n\t\t\treturn data, nil\n\t\t}\n\n\t\t// Convert it by parsing\n\t\t_, net, err := net.ParseCIDR(data.(string))\n\t\treturn net, err\n\t}\n}\n\n// StringToTimeHookFunc returns a DecodeHookFunc that converts\n// strings to time.Time.\nfunc StringToTimeHookFunc(layout string) DecodeHookFunc {\n\treturn func(\n\t\tf reflect.Type,\n\t\tt reflect.Type,\n\t\tdata interface{}) (interface{}, error) {\n\t\tif f.Kind() != reflect.String {\n\t\t\treturn data, nil\n\t\t}\n\t\tif t != reflect.TypeOf(time.Time{}) {\n\t\t\treturn data, nil\n\t\t}\n\n\t\t// Convert it by parsing\n\t\treturn time.Parse(layout, data.(string))\n\t}\n}\n\n// WeaklyTypedHook is a DecodeHookFunc which adds support for weak typing to\n// the decoder.\n//\n// Note that this is significantly different from the WeaklyTypedInput option\n// of the DecoderConfig.\nfunc WeaklyTypedHook(\n\tf reflect.Kind,\n\tt reflect.Kind,\n\tdata interface{}) (interface{}, error) {\n\tdataVal := reflect.ValueOf(data)\n\tswitch t {\n\tcase reflect.String:\n\t\tswitch f {\n\t\tcase reflect.Bool:\n\t\t\tif dataVal.Bool() {\n\t\t\t\treturn \"1\", nil\n\t\t\t}\n\t\t\treturn \"0\", nil\n\t\tcase reflect.Float32:\n\t\t\treturn strconv.FormatFloat(dataVal.Float(), 'f', -1, 64), nil\n\t\tcase reflect.Int:\n\t\t\treturn strconv.FormatInt(dataVal.Int(), 10), nil\n\t\tcase reflect.Slice:\n\t\t\tdataType := dataVal.Type()\n\t\t\telemKind := dataType.Elem().Kind()\n\t\t\tif elemKind == reflect.Uint8 {\n\t\t\t\treturn string(dataVal.Interface().([]uint8)), nil\n\t\t\t}\n\t\tcase reflect.Uint:\n\t\t\treturn strconv.FormatUint(dataVal.Uint(), 10), nil\n\t\t}\n\t}\n\n\treturn data, nil\n}\n"
  },
  {
    "path": "vendor/github.com/mitchellh/mapstructure/error.go",
    "content": "package mapstructure\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"sort\"\n\t\"strings\"\n)\n\n// Error implements the error interface and can represents multiple\n// errors that occur in the course of a single decode.\ntype Error struct {\n\tErrors []string\n}\n\nfunc (e *Error) Error() string {\n\tpoints := make([]string, len(e.Errors))\n\tfor i, err := range e.Errors {\n\t\tpoints[i] = fmt.Sprintf(\"* %s\", err)\n\t}\n\n\tsort.Strings(points)\n\treturn fmt.Sprintf(\n\t\t\"%d error(s) decoding:\\n\\n%s\",\n\t\tlen(e.Errors), strings.Join(points, \"\\n\"))\n}\n\n// WrappedErrors implements the errwrap.Wrapper interface to make this\n// return value more useful with the errwrap and go-multierror libraries.\nfunc (e *Error) WrappedErrors() []error {\n\tif e == nil {\n\t\treturn nil\n\t}\n\n\tresult := make([]error, len(e.Errors))\n\tfor i, e := range e.Errors {\n\t\tresult[i] = errors.New(e)\n\t}\n\n\treturn result\n}\n\nfunc appendErrors(errors []string, err error) []string {\n\tswitch e := err.(type) {\n\tcase *Error:\n\t\treturn append(errors, e.Errors...)\n\tdefault:\n\t\treturn append(errors, e.Error())\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/mitchellh/mapstructure/go.mod",
    "content": "module github.com/mitchellh/mapstructure\n"
  },
  {
    "path": "vendor/github.com/mitchellh/mapstructure/mapstructure.go",
    "content": "// Package mapstructure exposes functionality to convert an arbitrary\n// map[string]interface{} into a native Go structure.\n//\n// The Go structure can be arbitrarily complex, containing slices,\n// other structs, etc. and the decoder will properly decode nested\n// maps and so on into the proper structures in the native Go struct.\n// See the examples to see what the decoder is capable of.\npackage mapstructure\n\nimport (\n\t\"encoding/json\"\n\t\"errors\"\n\t\"fmt\"\n\t\"reflect\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// DecodeHookFunc is the callback function that can be used for\n// data transformations. See \"DecodeHook\" in the DecoderConfig\n// struct.\n//\n// The type should be DecodeHookFuncType or DecodeHookFuncKind.\n// Either is accepted. Types are a superset of Kinds (Types can return\n// Kinds) and are generally a richer thing to use, but Kinds are simpler\n// if you only need those.\n//\n// The reason DecodeHookFunc is multi-typed is for backwards compatibility:\n// we started with Kinds and then realized Types were the better solution,\n// but have a promise to not break backwards compat so we now support\n// both.\ntype DecodeHookFunc interface{}\n\n// DecodeHookFuncType is a DecodeHookFunc which has complete information about\n// the source and target types.\ntype DecodeHookFuncType func(reflect.Type, reflect.Type, interface{}) (interface{}, error)\n\n// DecodeHookFuncKind is a DecodeHookFunc which knows only the Kinds of the\n// source and target types.\ntype DecodeHookFuncKind func(reflect.Kind, reflect.Kind, interface{}) (interface{}, error)\n\n// DecoderConfig is the configuration that is used to create a new decoder\n// and allows customization of various aspects of decoding.\ntype DecoderConfig struct {\n\t// DecodeHook, if set, will be called before any decoding and any\n\t// type conversion (if WeaklyTypedInput is on). This lets you modify\n\t// the values before they're set down onto the resulting struct.\n\t//\n\t// If an error is returned, the entire decode will fail with that\n\t// error.\n\tDecodeHook DecodeHookFunc\n\n\t// If ErrorUnused is true, then it is an error for there to exist\n\t// keys in the original map that were unused in the decoding process\n\t// (extra keys).\n\tErrorUnused bool\n\n\t// ZeroFields, if set to true, will zero fields before writing them.\n\t// For example, a map will be emptied before decoded values are put in\n\t// it. If this is false, a map will be merged.\n\tZeroFields bool\n\n\t// If WeaklyTypedInput is true, the decoder will make the following\n\t// \"weak\" conversions:\n\t//\n\t//   - bools to string (true = \"1\", false = \"0\")\n\t//   - numbers to string (base 10)\n\t//   - bools to int/uint (true = 1, false = 0)\n\t//   - strings to int/uint (base implied by prefix)\n\t//   - int to bool (true if value != 0)\n\t//   - string to bool (accepts: 1, t, T, TRUE, true, True, 0, f, F,\n\t//     FALSE, false, False. Anything else is an error)\n\t//   - empty array = empty map and vice versa\n\t//   - negative numbers to overflowed uint values (base 10)\n\t//   - slice of maps to a merged map\n\t//   - single values are converted to slices if required. Each\n\t//     element is weakly decoded. For example: \"4\" can become []int{4}\n\t//     if the target type is an int slice.\n\t//\n\tWeaklyTypedInput bool\n\n\t// Metadata is the struct that will contain extra metadata about\n\t// the decoding. If this is nil, then no metadata will be tracked.\n\tMetadata *Metadata\n\n\t// Result is a pointer to the struct that will contain the decoded\n\t// value.\n\tResult interface{}\n\n\t// The tag name that mapstructure reads for field names. This\n\t// defaults to \"mapstructure\"\n\tTagName string\n}\n\n// A Decoder takes a raw interface value and turns it into structured\n// data, keeping track of rich error information along the way in case\n// anything goes wrong. Unlike the basic top-level Decode method, you can\n// more finely control how the Decoder behaves using the DecoderConfig\n// structure. The top-level Decode method is just a convenience that sets\n// up the most basic Decoder.\ntype Decoder struct {\n\tconfig *DecoderConfig\n}\n\n// Metadata contains information about decoding a structure that\n// is tedious or difficult to get otherwise.\ntype Metadata struct {\n\t// Keys are the keys of the structure which were successfully decoded\n\tKeys []string\n\n\t// Unused is a slice of keys that were found in the raw value but\n\t// weren't decoded since there was no matching field in the result interface\n\tUnused []string\n}\n\n// Decode takes an input structure and uses reflection to translate it to\n// the output structure. output must be a pointer to a map or struct.\nfunc Decode(input interface{}, output interface{}) error {\n\tconfig := &DecoderConfig{\n\t\tMetadata: nil,\n\t\tResult:   output,\n\t}\n\n\tdecoder, err := NewDecoder(config)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn decoder.Decode(input)\n}\n\n// WeakDecode is the same as Decode but is shorthand to enable\n// WeaklyTypedInput. See DecoderConfig for more info.\nfunc WeakDecode(input, output interface{}) error {\n\tconfig := &DecoderConfig{\n\t\tMetadata:         nil,\n\t\tResult:           output,\n\t\tWeaklyTypedInput: true,\n\t}\n\n\tdecoder, err := NewDecoder(config)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn decoder.Decode(input)\n}\n\n// DecodeMetadata is the same as Decode, but is shorthand to\n// enable metadata collection. See DecoderConfig for more info.\nfunc DecodeMetadata(input interface{}, output interface{}, metadata *Metadata) error {\n\tconfig := &DecoderConfig{\n\t\tMetadata: metadata,\n\t\tResult:   output,\n\t}\n\n\tdecoder, err := NewDecoder(config)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn decoder.Decode(input)\n}\n\n// WeakDecodeMetadata is the same as Decode, but is shorthand to\n// enable both WeaklyTypedInput and metadata collection. See\n// DecoderConfig for more info.\nfunc WeakDecodeMetadata(input interface{}, output interface{}, metadata *Metadata) error {\n\tconfig := &DecoderConfig{\n\t\tMetadata:         metadata,\n\t\tResult:           output,\n\t\tWeaklyTypedInput: true,\n\t}\n\n\tdecoder, err := NewDecoder(config)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn decoder.Decode(input)\n}\n\n// NewDecoder returns a new decoder for the given configuration. Once\n// a decoder has been returned, the same configuration must not be used\n// again.\nfunc NewDecoder(config *DecoderConfig) (*Decoder, error) {\n\tval := reflect.ValueOf(config.Result)\n\tif val.Kind() != reflect.Ptr {\n\t\treturn nil, errors.New(\"result must be a pointer\")\n\t}\n\n\tval = val.Elem()\n\tif !val.CanAddr() {\n\t\treturn nil, errors.New(\"result must be addressable (a pointer)\")\n\t}\n\n\tif config.Metadata != nil {\n\t\tif config.Metadata.Keys == nil {\n\t\t\tconfig.Metadata.Keys = make([]string, 0)\n\t\t}\n\n\t\tif config.Metadata.Unused == nil {\n\t\t\tconfig.Metadata.Unused = make([]string, 0)\n\t\t}\n\t}\n\n\tif config.TagName == \"\" {\n\t\tconfig.TagName = \"mapstructure\"\n\t}\n\n\tresult := &Decoder{\n\t\tconfig: config,\n\t}\n\n\treturn result, nil\n}\n\n// Decode decodes the given raw interface to the target pointer specified\n// by the configuration.\nfunc (d *Decoder) Decode(input interface{}) error {\n\treturn d.decode(\"\", input, reflect.ValueOf(d.config.Result).Elem())\n}\n\n// Decodes an unknown data type into a specific reflection value.\nfunc (d *Decoder) decode(name string, input interface{}, outVal reflect.Value) error {\n\tvar inputVal reflect.Value\n\tif input != nil {\n\t\tinputVal = reflect.ValueOf(input)\n\n\t\t// We need to check here if input is a typed nil. Typed nils won't\n\t\t// match the \"input == nil\" below so we check that here.\n\t\tif inputVal.Kind() == reflect.Ptr && inputVal.IsNil() {\n\t\t\tinput = nil\n\t\t}\n\t}\n\n\tif input == nil {\n\t\t// If the data is nil, then we don't set anything, unless ZeroFields is set\n\t\t// to true.\n\t\tif d.config.ZeroFields {\n\t\t\toutVal.Set(reflect.Zero(outVal.Type()))\n\n\t\t\tif d.config.Metadata != nil && name != \"\" {\n\t\t\t\td.config.Metadata.Keys = append(d.config.Metadata.Keys, name)\n\t\t\t}\n\t\t}\n\t\treturn nil\n\t}\n\n\tif !inputVal.IsValid() {\n\t\t// If the input value is invalid, then we just set the value\n\t\t// to be the zero value.\n\t\toutVal.Set(reflect.Zero(outVal.Type()))\n\t\tif d.config.Metadata != nil && name != \"\" {\n\t\t\td.config.Metadata.Keys = append(d.config.Metadata.Keys, name)\n\t\t}\n\t\treturn nil\n\t}\n\n\tif d.config.DecodeHook != nil {\n\t\t// We have a DecodeHook, so let's pre-process the input.\n\t\tvar err error\n\t\tinput, err = DecodeHookExec(\n\t\t\td.config.DecodeHook,\n\t\t\tinputVal.Type(), outVal.Type(), input)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"error decoding '%s': %s\", name, err)\n\t\t}\n\t}\n\n\tvar err error\n\toutputKind := getKind(outVal)\n\tswitch outputKind {\n\tcase reflect.Bool:\n\t\terr = d.decodeBool(name, input, outVal)\n\tcase reflect.Interface:\n\t\terr = d.decodeBasic(name, input, outVal)\n\tcase reflect.String:\n\t\terr = d.decodeString(name, input, outVal)\n\tcase reflect.Int:\n\t\terr = d.decodeInt(name, input, outVal)\n\tcase reflect.Uint:\n\t\terr = d.decodeUint(name, input, outVal)\n\tcase reflect.Float32:\n\t\terr = d.decodeFloat(name, input, outVal)\n\tcase reflect.Struct:\n\t\terr = d.decodeStruct(name, input, outVal)\n\tcase reflect.Map:\n\t\terr = d.decodeMap(name, input, outVal)\n\tcase reflect.Ptr:\n\t\terr = d.decodePtr(name, input, outVal)\n\tcase reflect.Slice:\n\t\terr = d.decodeSlice(name, input, outVal)\n\tcase reflect.Array:\n\t\terr = d.decodeArray(name, input, outVal)\n\tcase reflect.Func:\n\t\terr = d.decodeFunc(name, input, outVal)\n\tdefault:\n\t\t// If we reached this point then we weren't able to decode it\n\t\treturn fmt.Errorf(\"%s: unsupported type: %s\", name, outputKind)\n\t}\n\n\t// If we reached here, then we successfully decoded SOMETHING, so\n\t// mark the key as used if we're tracking metainput.\n\tif d.config.Metadata != nil && name != \"\" {\n\t\td.config.Metadata.Keys = append(d.config.Metadata.Keys, name)\n\t}\n\n\treturn err\n}\n\n// This decodes a basic type (bool, int, string, etc.) and sets the\n// value to \"data\" of that type.\nfunc (d *Decoder) decodeBasic(name string, data interface{}, val reflect.Value) error {\n\tif val.IsValid() && val.Elem().IsValid() {\n\t\treturn d.decode(name, data, val.Elem())\n\t}\n\n\tdataVal := reflect.ValueOf(data)\n\n\t// If the input data is a pointer, and the assigned type is the dereference\n\t// of that exact pointer, then indirect it so that we can assign it.\n\t// Example: *string to string\n\tif dataVal.Kind() == reflect.Ptr && dataVal.Type().Elem() == val.Type() {\n\t\tdataVal = reflect.Indirect(dataVal)\n\t}\n\n\tif !dataVal.IsValid() {\n\t\tdataVal = reflect.Zero(val.Type())\n\t}\n\n\tdataValType := dataVal.Type()\n\tif !dataValType.AssignableTo(val.Type()) {\n\t\treturn fmt.Errorf(\n\t\t\t\"'%s' expected type '%s', got '%s'\",\n\t\t\tname, val.Type(), dataValType)\n\t}\n\n\tval.Set(dataVal)\n\treturn nil\n}\n\nfunc (d *Decoder) decodeString(name string, data interface{}, val reflect.Value) error {\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\tdataKind := getKind(dataVal)\n\n\tconverted := true\n\tswitch {\n\tcase dataKind == reflect.String:\n\t\tval.SetString(dataVal.String())\n\tcase dataKind == reflect.Bool && d.config.WeaklyTypedInput:\n\t\tif dataVal.Bool() {\n\t\t\tval.SetString(\"1\")\n\t\t} else {\n\t\t\tval.SetString(\"0\")\n\t\t}\n\tcase dataKind == reflect.Int && d.config.WeaklyTypedInput:\n\t\tval.SetString(strconv.FormatInt(dataVal.Int(), 10))\n\tcase dataKind == reflect.Uint && d.config.WeaklyTypedInput:\n\t\tval.SetString(strconv.FormatUint(dataVal.Uint(), 10))\n\tcase dataKind == reflect.Float32 && d.config.WeaklyTypedInput:\n\t\tval.SetString(strconv.FormatFloat(dataVal.Float(), 'f', -1, 64))\n\tcase dataKind == reflect.Slice && d.config.WeaklyTypedInput,\n\t\tdataKind == reflect.Array && d.config.WeaklyTypedInput:\n\t\tdataType := dataVal.Type()\n\t\telemKind := dataType.Elem().Kind()\n\t\tswitch elemKind {\n\t\tcase reflect.Uint8:\n\t\t\tvar uints []uint8\n\t\t\tif dataKind == reflect.Array {\n\t\t\t\tuints = make([]uint8, dataVal.Len(), dataVal.Len())\n\t\t\t\tfor i := range uints {\n\t\t\t\t\tuints[i] = dataVal.Index(i).Interface().(uint8)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tuints = dataVal.Interface().([]uint8)\n\t\t\t}\n\t\t\tval.SetString(string(uints))\n\t\tdefault:\n\t\t\tconverted = false\n\t\t}\n\tdefault:\n\t\tconverted = false\n\t}\n\n\tif !converted {\n\t\treturn fmt.Errorf(\n\t\t\t\"'%s' expected type '%s', got unconvertible type '%s'\",\n\t\t\tname, val.Type(), dataVal.Type())\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodeInt(name string, data interface{}, val reflect.Value) error {\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\tdataKind := getKind(dataVal)\n\tdataType := dataVal.Type()\n\n\tswitch {\n\tcase dataKind == reflect.Int:\n\t\tval.SetInt(dataVal.Int())\n\tcase dataKind == reflect.Uint:\n\t\tval.SetInt(int64(dataVal.Uint()))\n\tcase dataKind == reflect.Float32:\n\t\tval.SetInt(int64(dataVal.Float()))\n\tcase dataKind == reflect.Bool && d.config.WeaklyTypedInput:\n\t\tif dataVal.Bool() {\n\t\t\tval.SetInt(1)\n\t\t} else {\n\t\t\tval.SetInt(0)\n\t\t}\n\tcase dataKind == reflect.String && d.config.WeaklyTypedInput:\n\t\ti, err := strconv.ParseInt(dataVal.String(), 0, val.Type().Bits())\n\t\tif err == nil {\n\t\t\tval.SetInt(i)\n\t\t} else {\n\t\t\treturn fmt.Errorf(\"cannot parse '%s' as int: %s\", name, err)\n\t\t}\n\tcase dataType.PkgPath() == \"encoding/json\" && dataType.Name() == \"Number\":\n\t\tjn := data.(json.Number)\n\t\ti, err := jn.Int64()\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\n\t\t\t\t\"error decoding json.Number into %s: %s\", name, err)\n\t\t}\n\t\tval.SetInt(i)\n\tdefault:\n\t\treturn fmt.Errorf(\n\t\t\t\"'%s' expected type '%s', got unconvertible type '%s'\",\n\t\t\tname, val.Type(), dataVal.Type())\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodeUint(name string, data interface{}, val reflect.Value) error {\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\tdataKind := getKind(dataVal)\n\n\tswitch {\n\tcase dataKind == reflect.Int:\n\t\ti := dataVal.Int()\n\t\tif i < 0 && !d.config.WeaklyTypedInput {\n\t\t\treturn fmt.Errorf(\"cannot parse '%s', %d overflows uint\",\n\t\t\t\tname, i)\n\t\t}\n\t\tval.SetUint(uint64(i))\n\tcase dataKind == reflect.Uint:\n\t\tval.SetUint(dataVal.Uint())\n\tcase dataKind == reflect.Float32:\n\t\tf := dataVal.Float()\n\t\tif f < 0 && !d.config.WeaklyTypedInput {\n\t\t\treturn fmt.Errorf(\"cannot parse '%s', %f overflows uint\",\n\t\t\t\tname, f)\n\t\t}\n\t\tval.SetUint(uint64(f))\n\tcase dataKind == reflect.Bool && d.config.WeaklyTypedInput:\n\t\tif dataVal.Bool() {\n\t\t\tval.SetUint(1)\n\t\t} else {\n\t\t\tval.SetUint(0)\n\t\t}\n\tcase dataKind == reflect.String && d.config.WeaklyTypedInput:\n\t\ti, err := strconv.ParseUint(dataVal.String(), 0, val.Type().Bits())\n\t\tif err == nil {\n\t\t\tval.SetUint(i)\n\t\t} else {\n\t\t\treturn fmt.Errorf(\"cannot parse '%s' as uint: %s\", name, err)\n\t\t}\n\tdefault:\n\t\treturn fmt.Errorf(\n\t\t\t\"'%s' expected type '%s', got unconvertible type '%s'\",\n\t\t\tname, val.Type(), dataVal.Type())\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodeBool(name string, data interface{}, val reflect.Value) error {\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\tdataKind := getKind(dataVal)\n\n\tswitch {\n\tcase dataKind == reflect.Bool:\n\t\tval.SetBool(dataVal.Bool())\n\tcase dataKind == reflect.Int && d.config.WeaklyTypedInput:\n\t\tval.SetBool(dataVal.Int() != 0)\n\tcase dataKind == reflect.Uint && d.config.WeaklyTypedInput:\n\t\tval.SetBool(dataVal.Uint() != 0)\n\tcase dataKind == reflect.Float32 && d.config.WeaklyTypedInput:\n\t\tval.SetBool(dataVal.Float() != 0)\n\tcase dataKind == reflect.String && d.config.WeaklyTypedInput:\n\t\tb, err := strconv.ParseBool(dataVal.String())\n\t\tif err == nil {\n\t\t\tval.SetBool(b)\n\t\t} else if dataVal.String() == \"\" {\n\t\t\tval.SetBool(false)\n\t\t} else {\n\t\t\treturn fmt.Errorf(\"cannot parse '%s' as bool: %s\", name, err)\n\t\t}\n\tdefault:\n\t\treturn fmt.Errorf(\n\t\t\t\"'%s' expected type '%s', got unconvertible type '%s'\",\n\t\t\tname, val.Type(), dataVal.Type())\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodeFloat(name string, data interface{}, val reflect.Value) error {\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\tdataKind := getKind(dataVal)\n\tdataType := dataVal.Type()\n\n\tswitch {\n\tcase dataKind == reflect.Int:\n\t\tval.SetFloat(float64(dataVal.Int()))\n\tcase dataKind == reflect.Uint:\n\t\tval.SetFloat(float64(dataVal.Uint()))\n\tcase dataKind == reflect.Float32:\n\t\tval.SetFloat(dataVal.Float())\n\tcase dataKind == reflect.Bool && d.config.WeaklyTypedInput:\n\t\tif dataVal.Bool() {\n\t\t\tval.SetFloat(1)\n\t\t} else {\n\t\t\tval.SetFloat(0)\n\t\t}\n\tcase dataKind == reflect.String && d.config.WeaklyTypedInput:\n\t\tf, err := strconv.ParseFloat(dataVal.String(), val.Type().Bits())\n\t\tif err == nil {\n\t\t\tval.SetFloat(f)\n\t\t} else {\n\t\t\treturn fmt.Errorf(\"cannot parse '%s' as float: %s\", name, err)\n\t\t}\n\tcase dataType.PkgPath() == \"encoding/json\" && dataType.Name() == \"Number\":\n\t\tjn := data.(json.Number)\n\t\ti, err := jn.Float64()\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\n\t\t\t\t\"error decoding json.Number into %s: %s\", name, err)\n\t\t}\n\t\tval.SetFloat(i)\n\tdefault:\n\t\treturn fmt.Errorf(\n\t\t\t\"'%s' expected type '%s', got unconvertible type '%s'\",\n\t\t\tname, val.Type(), dataVal.Type())\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodeMap(name string, data interface{}, val reflect.Value) error {\n\tvalType := val.Type()\n\tvalKeyType := valType.Key()\n\tvalElemType := valType.Elem()\n\n\t// By default we overwrite keys in the current map\n\tvalMap := val\n\n\t// If the map is nil or we're purposely zeroing fields, make a new map\n\tif valMap.IsNil() || d.config.ZeroFields {\n\t\t// Make a new map to hold our result\n\t\tmapType := reflect.MapOf(valKeyType, valElemType)\n\t\tvalMap = reflect.MakeMap(mapType)\n\t}\n\n\t// Check input type and based on the input type jump to the proper func\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\tswitch dataVal.Kind() {\n\tcase reflect.Map:\n\t\treturn d.decodeMapFromMap(name, dataVal, val, valMap)\n\n\tcase reflect.Struct:\n\t\treturn d.decodeMapFromStruct(name, dataVal, val, valMap)\n\n\tcase reflect.Array, reflect.Slice:\n\t\tif d.config.WeaklyTypedInput {\n\t\t\treturn d.decodeMapFromSlice(name, dataVal, val, valMap)\n\t\t}\n\n\t\tfallthrough\n\n\tdefault:\n\t\treturn fmt.Errorf(\"'%s' expected a map, got '%s'\", name, dataVal.Kind())\n\t}\n}\n\nfunc (d *Decoder) decodeMapFromSlice(name string, dataVal reflect.Value, val reflect.Value, valMap reflect.Value) error {\n\t// Special case for BC reasons (covered by tests)\n\tif dataVal.Len() == 0 {\n\t\tval.Set(valMap)\n\t\treturn nil\n\t}\n\n\tfor i := 0; i < dataVal.Len(); i++ {\n\t\terr := d.decode(\n\t\t\tfmt.Sprintf(\"%s[%d]\", name, i),\n\t\t\tdataVal.Index(i).Interface(), val)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodeMapFromMap(name string, dataVal reflect.Value, val reflect.Value, valMap reflect.Value) error {\n\tvalType := val.Type()\n\tvalKeyType := valType.Key()\n\tvalElemType := valType.Elem()\n\n\t// Accumulate errors\n\terrors := make([]string, 0)\n\n\t// If the input data is empty, then we just match what the input data is.\n\tif dataVal.Len() == 0 {\n\t\tif dataVal.IsNil() {\n\t\t\tif !val.IsNil() {\n\t\t\t\tval.Set(dataVal)\n\t\t\t}\n\t\t} else {\n\t\t\t// Set to empty allocated value\n\t\t\tval.Set(valMap)\n\t\t}\n\n\t\treturn nil\n\t}\n\n\tfor _, k := range dataVal.MapKeys() {\n\t\tfieldName := fmt.Sprintf(\"%s[%s]\", name, k)\n\n\t\t// First decode the key into the proper type\n\t\tcurrentKey := reflect.Indirect(reflect.New(valKeyType))\n\t\tif err := d.decode(fieldName, k.Interface(), currentKey); err != nil {\n\t\t\terrors = appendErrors(errors, err)\n\t\t\tcontinue\n\t\t}\n\n\t\t// Next decode the data into the proper type\n\t\tv := dataVal.MapIndex(k).Interface()\n\t\tcurrentVal := reflect.Indirect(reflect.New(valElemType))\n\t\tif err := d.decode(fieldName, v, currentVal); err != nil {\n\t\t\terrors = appendErrors(errors, err)\n\t\t\tcontinue\n\t\t}\n\n\t\tvalMap.SetMapIndex(currentKey, currentVal)\n\t}\n\n\t// Set the built up map to the value\n\tval.Set(valMap)\n\n\t// If we had errors, return those\n\tif len(errors) > 0 {\n\t\treturn &Error{errors}\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodeMapFromStruct(name string, dataVal reflect.Value, val reflect.Value, valMap reflect.Value) error {\n\ttyp := dataVal.Type()\n\tfor i := 0; i < typ.NumField(); i++ {\n\t\t// Get the StructField first since this is a cheap operation. If the\n\t\t// field is unexported, then ignore it.\n\t\tf := typ.Field(i)\n\t\tif f.PkgPath != \"\" {\n\t\t\tcontinue\n\t\t}\n\n\t\t// Next get the actual value of this field and verify it is assignable\n\t\t// to the map value.\n\t\tv := dataVal.Field(i)\n\t\tif !v.Type().AssignableTo(valMap.Type().Elem()) {\n\t\t\treturn fmt.Errorf(\"cannot assign type '%s' to map value field of type '%s'\", v.Type(), valMap.Type().Elem())\n\t\t}\n\n\t\ttagValue := f.Tag.Get(d.config.TagName)\n\t\ttagParts := strings.Split(tagValue, \",\")\n\n\t\t// Determine the name of the key in the map\n\t\tkeyName := f.Name\n\t\tif tagParts[0] != \"\" {\n\t\t\tif tagParts[0] == \"-\" {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tkeyName = tagParts[0]\n\t\t}\n\n\t\t// If \"squash\" is specified in the tag, we squash the field down.\n\t\tsquash := false\n\t\tfor _, tag := range tagParts[1:] {\n\t\t\tif tag == \"squash\" {\n\t\t\t\tsquash = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif squash && v.Kind() != reflect.Struct {\n\t\t\treturn fmt.Errorf(\"cannot squash non-struct type '%s'\", v.Type())\n\t\t}\n\n\t\tswitch v.Kind() {\n\t\t// this is an embedded struct, so handle it differently\n\t\tcase reflect.Struct:\n\t\t\tx := reflect.New(v.Type())\n\t\t\tx.Elem().Set(v)\n\n\t\t\tvType := valMap.Type()\n\t\t\tvKeyType := vType.Key()\n\t\t\tvElemType := vType.Elem()\n\t\t\tmType := reflect.MapOf(vKeyType, vElemType)\n\t\t\tvMap := reflect.MakeMap(mType)\n\n\t\t\terr := d.decode(keyName, x.Interface(), vMap)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tif squash {\n\t\t\t\tfor _, k := range vMap.MapKeys() {\n\t\t\t\t\tvalMap.SetMapIndex(k, vMap.MapIndex(k))\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tvalMap.SetMapIndex(reflect.ValueOf(keyName), vMap)\n\t\t\t}\n\n\t\tdefault:\n\t\t\tvalMap.SetMapIndex(reflect.ValueOf(keyName), v)\n\t\t}\n\t}\n\n\tif val.CanAddr() {\n\t\tval.Set(valMap)\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodePtr(name string, data interface{}, val reflect.Value) error {\n\t// If the input data is nil, then we want to just set the output\n\t// pointer to be nil as well.\n\tisNil := data == nil\n\tif !isNil {\n\t\tswitch v := reflect.Indirect(reflect.ValueOf(data)); v.Kind() {\n\t\tcase reflect.Chan,\n\t\t\treflect.Func,\n\t\t\treflect.Interface,\n\t\t\treflect.Map,\n\t\t\treflect.Ptr,\n\t\t\treflect.Slice:\n\t\t\tisNil = v.IsNil()\n\t\t}\n\t}\n\tif isNil {\n\t\tif !val.IsNil() && val.CanSet() {\n\t\t\tnilValue := reflect.New(val.Type()).Elem()\n\t\t\tval.Set(nilValue)\n\t\t}\n\n\t\treturn nil\n\t}\n\n\t// Create an element of the concrete (non pointer) type and decode\n\t// into that. Then set the value of the pointer to this type.\n\tvalType := val.Type()\n\tvalElemType := valType.Elem()\n\tif val.CanSet() {\n\t\trealVal := val\n\t\tif realVal.IsNil() || d.config.ZeroFields {\n\t\t\trealVal = reflect.New(valElemType)\n\t\t}\n\n\t\tif err := d.decode(name, data, reflect.Indirect(realVal)); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tval.Set(realVal)\n\t} else {\n\t\tif err := d.decode(name, data, reflect.Indirect(val)); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (d *Decoder) decodeFunc(name string, data interface{}, val reflect.Value) error {\n\t// Create an element of the concrete (non pointer) type and decode\n\t// into that. Then set the value of the pointer to this type.\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\tif val.Type() != dataVal.Type() {\n\t\treturn fmt.Errorf(\n\t\t\t\"'%s' expected type '%s', got unconvertible type '%s'\",\n\t\t\tname, val.Type(), dataVal.Type())\n\t}\n\tval.Set(dataVal)\n\treturn nil\n}\n\nfunc (d *Decoder) decodeSlice(name string, data interface{}, val reflect.Value) error {\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\tdataValKind := dataVal.Kind()\n\tvalType := val.Type()\n\tvalElemType := valType.Elem()\n\tsliceType := reflect.SliceOf(valElemType)\n\n\tvalSlice := val\n\tif valSlice.IsNil() || d.config.ZeroFields {\n\t\tif d.config.WeaklyTypedInput {\n\t\t\tswitch {\n\t\t\t// Slice and array we use the normal logic\n\t\t\tcase dataValKind == reflect.Slice, dataValKind == reflect.Array:\n\t\t\t\tbreak\n\n\t\t\t// Empty maps turn into empty slices\n\t\t\tcase dataValKind == reflect.Map:\n\t\t\t\tif dataVal.Len() == 0 {\n\t\t\t\t\tval.Set(reflect.MakeSlice(sliceType, 0, 0))\n\t\t\t\t\treturn nil\n\t\t\t\t}\n\t\t\t\t// Create slice of maps of other sizes\n\t\t\t\treturn d.decodeSlice(name, []interface{}{data}, val)\n\n\t\t\tcase dataValKind == reflect.String && valElemType.Kind() == reflect.Uint8:\n\t\t\t\treturn d.decodeSlice(name, []byte(dataVal.String()), val)\n\n\t\t\t// All other types we try to convert to the slice type\n\t\t\t// and \"lift\" it into it. i.e. a string becomes a string slice.\n\t\t\tdefault:\n\t\t\t\t// Just re-try this function with data as a slice.\n\t\t\t\treturn d.decodeSlice(name, []interface{}{data}, val)\n\t\t\t}\n\t\t}\n\n\t\t// Check input type\n\t\tif dataValKind != reflect.Array && dataValKind != reflect.Slice {\n\t\t\treturn fmt.Errorf(\n\t\t\t\t\"'%s': source data must be an array or slice, got %s\", name, dataValKind)\n\n\t\t}\n\n\t\t// If the input value is empty, then don't allocate since non-nil != nil\n\t\tif dataVal.Len() == 0 {\n\t\t\treturn nil\n\t\t}\n\n\t\t// Make a new slice to hold our result, same size as the original data.\n\t\tvalSlice = reflect.MakeSlice(sliceType, dataVal.Len(), dataVal.Len())\n\t}\n\n\t// Accumulate any errors\n\terrors := make([]string, 0)\n\n\tfor i := 0; i < dataVal.Len(); i++ {\n\t\tcurrentData := dataVal.Index(i).Interface()\n\t\tfor valSlice.Len() <= i {\n\t\t\tvalSlice = reflect.Append(valSlice, reflect.Zero(valElemType))\n\t\t}\n\t\tcurrentField := valSlice.Index(i)\n\n\t\tfieldName := fmt.Sprintf(\"%s[%d]\", name, i)\n\t\tif err := d.decode(fieldName, currentData, currentField); err != nil {\n\t\t\terrors = appendErrors(errors, err)\n\t\t}\n\t}\n\n\t// Finally, set the value to the slice we built up\n\tval.Set(valSlice)\n\n\t// If there were errors, we return those\n\tif len(errors) > 0 {\n\t\treturn &Error{errors}\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodeArray(name string, data interface{}, val reflect.Value) error {\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\tdataValKind := dataVal.Kind()\n\tvalType := val.Type()\n\tvalElemType := valType.Elem()\n\tarrayType := reflect.ArrayOf(valType.Len(), valElemType)\n\n\tvalArray := val\n\n\tif valArray.Interface() == reflect.Zero(valArray.Type()).Interface() || d.config.ZeroFields {\n\t\t// Check input type\n\t\tif dataValKind != reflect.Array && dataValKind != reflect.Slice {\n\t\t\tif d.config.WeaklyTypedInput {\n\t\t\t\tswitch {\n\t\t\t\t// Empty maps turn into empty arrays\n\t\t\t\tcase dataValKind == reflect.Map:\n\t\t\t\t\tif dataVal.Len() == 0 {\n\t\t\t\t\t\tval.Set(reflect.Zero(arrayType))\n\t\t\t\t\t\treturn nil\n\t\t\t\t\t}\n\n\t\t\t\t// All other types we try to convert to the array type\n\t\t\t\t// and \"lift\" it into it. i.e. a string becomes a string array.\n\t\t\t\tdefault:\n\t\t\t\t\t// Just re-try this function with data as a slice.\n\t\t\t\t\treturn d.decodeArray(name, []interface{}{data}, val)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn fmt.Errorf(\n\t\t\t\t\"'%s': source data must be an array or slice, got %s\", name, dataValKind)\n\n\t\t}\n\t\tif dataVal.Len() > arrayType.Len() {\n\t\t\treturn fmt.Errorf(\n\t\t\t\t\"'%s': expected source data to have length less or equal to %d, got %d\", name, arrayType.Len(), dataVal.Len())\n\n\t\t}\n\n\t\t// Make a new array to hold our result, same size as the original data.\n\t\tvalArray = reflect.New(arrayType).Elem()\n\t}\n\n\t// Accumulate any errors\n\terrors := make([]string, 0)\n\n\tfor i := 0; i < dataVal.Len(); i++ {\n\t\tcurrentData := dataVal.Index(i).Interface()\n\t\tcurrentField := valArray.Index(i)\n\n\t\tfieldName := fmt.Sprintf(\"%s[%d]\", name, i)\n\t\tif err := d.decode(fieldName, currentData, currentField); err != nil {\n\t\t\terrors = appendErrors(errors, err)\n\t\t}\n\t}\n\n\t// Finally, set the value to the array we built up\n\tval.Set(valArray)\n\n\t// If there were errors, we return those\n\tif len(errors) > 0 {\n\t\treturn &Error{errors}\n\t}\n\n\treturn nil\n}\n\nfunc (d *Decoder) decodeStruct(name string, data interface{}, val reflect.Value) error {\n\tdataVal := reflect.Indirect(reflect.ValueOf(data))\n\n\t// If the type of the value to write to and the data match directly,\n\t// then we just set it directly instead of recursing into the structure.\n\tif dataVal.Type() == val.Type() {\n\t\tval.Set(dataVal)\n\t\treturn nil\n\t}\n\n\tdataValKind := dataVal.Kind()\n\tswitch dataValKind {\n\tcase reflect.Map:\n\t\treturn d.decodeStructFromMap(name, dataVal, val)\n\n\tcase reflect.Struct:\n\t\t// Not the most efficient way to do this but we can optimize later if\n\t\t// we want to. To convert from struct to struct we go to map first\n\t\t// as an intermediary.\n\t\tm := make(map[string]interface{})\n\t\tmval := reflect.Indirect(reflect.ValueOf(&m))\n\t\tif err := d.decodeMapFromStruct(name, dataVal, mval, mval); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tresult := d.decodeStructFromMap(name, mval, val)\n\t\treturn result\n\n\tdefault:\n\t\treturn fmt.Errorf(\"'%s' expected a map, got '%s'\", name, dataVal.Kind())\n\t}\n}\n\nfunc (d *Decoder) decodeStructFromMap(name string, dataVal, val reflect.Value) error {\n\tdataValType := dataVal.Type()\n\tif kind := dataValType.Key().Kind(); kind != reflect.String && kind != reflect.Interface {\n\t\treturn fmt.Errorf(\n\t\t\t\"'%s' needs a map with string keys, has '%s' keys\",\n\t\t\tname, dataValType.Key().Kind())\n\t}\n\n\tdataValKeys := make(map[reflect.Value]struct{})\n\tdataValKeysUnused := make(map[interface{}]struct{})\n\tfor _, dataValKey := range dataVal.MapKeys() {\n\t\tdataValKeys[dataValKey] = struct{}{}\n\t\tdataValKeysUnused[dataValKey.Interface()] = struct{}{}\n\t}\n\n\terrors := make([]string, 0)\n\n\t// This slice will keep track of all the structs we'll be decoding.\n\t// There can be more than one struct if there are embedded structs\n\t// that are squashed.\n\tstructs := make([]reflect.Value, 1, 5)\n\tstructs[0] = val\n\n\t// Compile the list of all the fields that we're going to be decoding\n\t// from all the structs.\n\ttype field struct {\n\t\tfield reflect.StructField\n\t\tval   reflect.Value\n\t}\n\tfields := []field{}\n\tfor len(structs) > 0 {\n\t\tstructVal := structs[0]\n\t\tstructs = structs[1:]\n\n\t\tstructType := structVal.Type()\n\n\t\tfor i := 0; i < structType.NumField(); i++ {\n\t\t\tfieldType := structType.Field(i)\n\t\t\tfieldKind := fieldType.Type.Kind()\n\n\t\t\t// If \"squash\" is specified in the tag, we squash the field down.\n\t\t\tsquash := false\n\t\t\ttagParts := strings.Split(fieldType.Tag.Get(d.config.TagName), \",\")\n\t\t\tfor _, tag := range tagParts[1:] {\n\t\t\t\tif tag == \"squash\" {\n\t\t\t\t\tsquash = true\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif squash {\n\t\t\t\tif fieldKind != reflect.Struct {\n\t\t\t\t\terrors = appendErrors(errors,\n\t\t\t\t\t\tfmt.Errorf(\"%s: unsupported type for squash: %s\", fieldType.Name, fieldKind))\n\t\t\t\t} else {\n\t\t\t\t\tstructs = append(structs, structVal.FieldByName(fieldType.Name))\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\t// Normal struct field, store it away\n\t\t\tfields = append(fields, field{fieldType, structVal.Field(i)})\n\t\t}\n\t}\n\n\t// for fieldType, field := range fields {\n\tfor _, f := range fields {\n\t\tfield, fieldValue := f.field, f.val\n\t\tfieldName := field.Name\n\n\t\ttagValue := field.Tag.Get(d.config.TagName)\n\t\ttagValue = strings.SplitN(tagValue, \",\", 2)[0]\n\t\tif tagValue != \"\" {\n\t\t\tfieldName = tagValue\n\t\t}\n\n\t\trawMapKey := reflect.ValueOf(fieldName)\n\t\trawMapVal := dataVal.MapIndex(rawMapKey)\n\t\tif !rawMapVal.IsValid() {\n\t\t\t// Do a slower search by iterating over each key and\n\t\t\t// doing case-insensitive search.\n\t\t\tfor dataValKey := range dataValKeys {\n\t\t\t\tmK, ok := dataValKey.Interface().(string)\n\t\t\t\tif !ok {\n\t\t\t\t\t// Not a string key\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tif strings.EqualFold(mK, fieldName) {\n\t\t\t\t\trawMapKey = dataValKey\n\t\t\t\t\trawMapVal = dataVal.MapIndex(dataValKey)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif !rawMapVal.IsValid() {\n\t\t\t\t// There was no matching key in the map for the value in\n\t\t\t\t// the struct. Just ignore.\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\t// Delete the key we're using from the unused map so we stop tracking\n\t\tdelete(dataValKeysUnused, rawMapKey.Interface())\n\n\t\tif !fieldValue.IsValid() {\n\t\t\t// This should never happen\n\t\t\tpanic(\"field is not valid\")\n\t\t}\n\n\t\t// If we can't set the field, then it is unexported or something,\n\t\t// and we just continue onwards.\n\t\tif !fieldValue.CanSet() {\n\t\t\tcontinue\n\t\t}\n\n\t\t// If the name is empty string, then we're at the root, and we\n\t\t// don't dot-join the fields.\n\t\tif name != \"\" {\n\t\t\tfieldName = fmt.Sprintf(\"%s.%s\", name, fieldName)\n\t\t}\n\n\t\tif err := d.decode(fieldName, rawMapVal.Interface(), fieldValue); err != nil {\n\t\t\terrors = appendErrors(errors, err)\n\t\t}\n\t}\n\n\tif d.config.ErrorUnused && len(dataValKeysUnused) > 0 {\n\t\tkeys := make([]string, 0, len(dataValKeysUnused))\n\t\tfor rawKey := range dataValKeysUnused {\n\t\t\tkeys = append(keys, rawKey.(string))\n\t\t}\n\t\tsort.Strings(keys)\n\n\t\terr := fmt.Errorf(\"'%s' has invalid keys: %s\", name, strings.Join(keys, \", \"))\n\t\terrors = appendErrors(errors, err)\n\t}\n\n\tif len(errors) > 0 {\n\t\treturn &Error{errors}\n\t}\n\n\t// Add the unused keys to the list of unused keys if we're tracking metadata\n\tif d.config.Metadata != nil {\n\t\tfor rawKey := range dataValKeysUnused {\n\t\t\tkey := rawKey.(string)\n\t\t\tif name != \"\" {\n\t\t\t\tkey = fmt.Sprintf(\"%s.%s\", name, key)\n\t\t\t}\n\n\t\t\td.config.Metadata.Unused = append(d.config.Metadata.Unused, key)\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc getKind(val reflect.Value) reflect.Kind {\n\tkind := val.Kind()\n\n\tswitch {\n\tcase kind >= reflect.Int && kind <= reflect.Int64:\n\t\treturn reflect.Int\n\tcase kind >= reflect.Uint && kind <= reflect.Uint64:\n\t\treturn reflect.Uint\n\tcase kind >= reflect.Float32 && kind <= reflect.Float64:\n\t\treturn reflect.Float32\n\tdefault:\n\t\treturn kind\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/.gitignore",
    "content": "test_program/test_program_bin\nfuzz/\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/.travis.yml",
    "content": "sudo: false\nlanguage: go\ngo:\n  - 1.8.x\n  - 1.9.x\n  - 1.10.x\n  - tip\nmatrix:\n  allow_failures:\n    - go: tip\n  fast_finish: true\nscript:\n  - if [ -n \"$(go fmt ./...)\" ]; then exit 1; fi\n  - ./test.sh\n  - ./benchmark.sh $TRAVIS_BRANCH https://github.com/$TRAVIS_REPO_SLUG.git\nbefore_install:\n  - go get github.com/axw/gocov/gocov\n  - go get github.com/mattn/goveralls\n  - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi\nbranches:\n  only: [master]\nafter_success:\n  - $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out -repotoken $COVERALLS_TOKEN\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/README.md",
    "content": "# go-toml\n\nGo library for the [TOML](https://github.com/mojombo/toml) format.\n\nThis library supports TOML version\n[v0.4.0](https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.4.0.md)\n\n[![GoDoc](https://godoc.org/github.com/pelletier/go-toml?status.svg)](http://godoc.org/github.com/pelletier/go-toml)\n[![license](https://img.shields.io/github/license/pelletier/go-toml.svg)](https://github.com/pelletier/go-toml/blob/master/LICENSE)\n[![Build Status](https://travis-ci.org/pelletier/go-toml.svg?branch=master)](https://travis-ci.org/pelletier/go-toml)\n[![Coverage Status](https://coveralls.io/repos/github/pelletier/go-toml/badge.svg?branch=master)](https://coveralls.io/github/pelletier/go-toml?branch=master)\n[![Go Report Card](https://goreportcard.com/badge/github.com/pelletier/go-toml)](https://goreportcard.com/report/github.com/pelletier/go-toml)\n\n## Features\n\nGo-toml provides the following features for using data parsed from TOML documents:\n\n* Load TOML documents from files and string data\n* Easily navigate TOML structure using Tree\n* Mashaling and unmarshaling to and from data structures\n* Line & column position data for all parsed elements\n* [Query support similar to JSON-Path](query/)\n* Syntax errors contain line and column numbers\n\n## Import\n\n```go\nimport \"github.com/pelletier/go-toml\"\n```\n\n## Usage example\n\nRead a TOML document:\n\n```go\nconfig, _ := toml.Load(`\n[postgres]\nuser = \"pelletier\"\npassword = \"mypassword\"`)\n// retrieve data directly\nuser := config.Get(\"postgres.user\").(string)\n\n// or using an intermediate object\npostgresConfig := config.Get(\"postgres\").(*toml.Tree)\npassword := postgresConfig.Get(\"password\").(string)\n```\n\nOr use Unmarshal:\n\n```go\ntype Postgres struct {\n    User     string\n    Password string\n}\ntype Config struct {\n    Postgres Postgres\n}\n\ndoc := []byte(`\n[Postgres]\nUser = \"pelletier\"\nPassword = \"mypassword\"`)\n\nconfig := Config{}\ntoml.Unmarshal(doc, &config)\nfmt.Println(\"user=\", config.Postgres.User)\n```\n\nOr use a query:\n\n```go\n// use a query to gather elements without walking the tree\nq, _ := query.Compile(\"$..[user,password]\")\nresults := q.Execute(config)\nfor ii, item := range results.Values() {\n    fmt.Println(\"Query result %d: %v\", ii, item)\n}\n```\n\n## Documentation\n\nThe documentation and additional examples are available at\n[godoc.org](http://godoc.org/github.com/pelletier/go-toml).\n\n## Tools\n\nGo-toml provides two handy command line tools:\n\n* `tomll`: Reads TOML files and lint them.\n\n    ```\n    go install github.com/pelletier/go-toml/cmd/tomll\n    tomll --help\n    ```\n* `tomljson`: Reads a TOML file and outputs its JSON representation.\n\n    ```\n    go install github.com/pelletier/go-toml/cmd/tomljson\n    tomljson --help\n    ```\n\n## Contribute\n\nFeel free to report bugs and patches using GitHub's pull requests system on\n[pelletier/go-toml](https://github.com/pelletier/go-toml). Any feedback would be\nmuch appreciated!\n\n### Run tests\n\nYou have to make sure two kind of tests run:\n\n1. The Go unit tests\n2. The TOML examples base\n\nYou can run both of them using `./test.sh`.\n\n### Fuzzing\n\nThe script `./fuzz.sh` is available to\nrun [go-fuzz](https://github.com/dvyukov/go-fuzz) on go-toml.\n\n## Versioning\n\nGo-toml follows [Semantic Versioning](http://semver.org/). The supported version\nof [TOML](https://github.com/toml-lang/toml) is indicated at the beginning of\nthis document. The last two major versions of Go are supported\n(see [Go Release Policy](https://golang.org/doc/devel/release.html#policy)).\n\n## License\n\nThe MIT License (MIT). Read [LICENSE](LICENSE).\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/benchmark.json",
    "content": "{\n    \"array\": {\n        \"key1\": [\n            1,\n            2,\n            3\n        ],\n        \"key2\": [\n            \"red\",\n            \"yellow\",\n            \"green\"\n        ],\n        \"key3\": [\n            [\n                1,\n                2\n            ],\n            [\n                3,\n                4,\n                5\n            ]\n        ],\n        \"key4\": [\n            [\n                1,\n                2\n            ],\n            [\n                \"a\",\n                \"b\",\n                \"c\"\n            ]\n        ],\n        \"key5\": [\n            1,\n            2,\n            3\n        ],\n        \"key6\": [\n            1,\n            2\n        ]\n    },\n    \"boolean\": {\n        \"False\": false,\n        \"True\": true\n    },\n    \"datetime\": {\n        \"key1\": \"1979-05-27T07:32:00Z\",\n        \"key2\": \"1979-05-27T00:32:00-07:00\",\n        \"key3\": \"1979-05-27T00:32:00.999999-07:00\"\n    },\n    \"float\": {\n        \"both\": {\n            \"key\": 6.626e-34\n        },\n        \"exponent\": {\n            \"key1\": 5e+22,\n            \"key2\": 1000000,\n            \"key3\": -0.02\n        },\n        \"fractional\": {\n            \"key1\": 1,\n            \"key2\": 3.1415,\n            \"key3\": -0.01\n        },\n        \"underscores\": {\n            \"key1\": 9224617.445991227,\n            \"key2\": 1e+100\n        }\n    },\n    \"fruit\": [{\n            \"name\": \"apple\",\n            \"physical\": {\n                \"color\": \"red\",\n                \"shape\": \"round\"\n            },\n            \"variety\": [{\n                    \"name\": \"red delicious\"\n                },\n                {\n                    \"name\": \"granny smith\"\n                }\n            ]\n        },\n        {\n            \"name\": \"banana\",\n            \"variety\": [{\n                \"name\": \"plantain\"\n            }]\n        }\n    ],\n    \"integer\": {\n        \"key1\": 99,\n        \"key2\": 42,\n        \"key3\": 0,\n        \"key4\": -17,\n        \"underscores\": {\n            \"key1\": 1000,\n            \"key2\": 5349221,\n            \"key3\": 12345\n        }\n    },\n    \"products\": [{\n            \"name\": \"Hammer\",\n            \"sku\": 738594937\n        },\n        {},\n        {\n            \"color\": \"gray\",\n            \"name\": \"Nail\",\n            \"sku\": 284758393\n        }\n    ],\n    \"string\": {\n        \"basic\": {\n            \"basic\": \"I'm a string. \\\"You can quote me\\\". Name\\tJosé\\nLocation\\tSF.\"\n        },\n        \"literal\": {\n            \"multiline\": {\n                \"lines\": \"The first newline is\\ntrimmed in raw strings.\\n   All other whitespace\\n   is preserved.\\n\",\n                \"regex2\": \"I [dw]on't need \\\\d{2} apples\"\n            },\n            \"quoted\": \"Tom \\\"Dubs\\\" Preston-Werner\",\n            \"regex\": \"\\u003c\\\\i\\\\c*\\\\s*\\u003e\",\n            \"winpath\": \"C:\\\\Users\\\\nodejs\\\\templates\",\n            \"winpath2\": \"\\\\\\\\ServerX\\\\admin$\\\\system32\\\\\"\n        },\n        \"multiline\": {\n            \"continued\": {\n                \"key1\": \"The quick brown fox jumps over the lazy dog.\",\n                \"key2\": \"The quick brown fox jumps over the lazy dog.\",\n                \"key3\": \"The quick brown fox jumps over the lazy dog.\"\n            },\n            \"key1\": \"One\\nTwo\",\n            \"key2\": \"One\\nTwo\",\n            \"key3\": \"One\\nTwo\"\n        }\n    },\n    \"table\": {\n        \"inline\": {\n            \"name\": {\n                \"first\": \"Tom\",\n                \"last\": \"Preston-Werner\"\n            },\n            \"point\": {\n                \"x\": 1,\n                \"y\": 2\n            }\n        },\n        \"key\": \"value\",\n        \"subtable\": {\n            \"key\": \"another value\"\n        }\n    },\n    \"x\": {\n        \"y\": {\n            \"z\": {\n                \"w\": {}\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/benchmark.sh",
    "content": "#!/bin/bash\n\nset -e\n\nreference_ref=${1:-master}\nreference_git=${2:-.}\n\nif ! `hash benchstat 2>/dev/null`; then\n    echo \"Installing benchstat\"\n    go get golang.org/x/perf/cmd/benchstat\n    go install golang.org/x/perf/cmd/benchstat\nfi\n\ntempdir=`mktemp -d /tmp/go-toml-benchmark-XXXXXX`\nref_tempdir=\"${tempdir}/ref\"\nref_benchmark=\"${ref_tempdir}/benchmark-`echo -n ${reference_ref}|tr -s '/' '-'`.txt\"\nlocal_benchmark=\"`pwd`/benchmark-local.txt\"\n\necho \"=== ${reference_ref} (${ref_tempdir})\"\ngit clone ${reference_git} ${ref_tempdir} >/dev/null 2>/dev/null\npushd ${ref_tempdir} >/dev/null\ngit checkout ${reference_ref} >/dev/null 2>/dev/null\ngo test -bench=. -benchmem | tee ${ref_benchmark}\npopd >/dev/null\n\necho \"\"\necho \"=== local\"\ngo test -bench=. -benchmem  | tee ${local_benchmark}\n\necho \"\"\necho \"=== diff\"\nbenchstat -delta-test=none ${ref_benchmark} ${local_benchmark}"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/benchmark.toml",
    "content": "################################################################################\n## Comment\n\n# Speak your mind with the hash symbol. They go from the symbol to the end of\n# the line.\n\n\n################################################################################\n## Table\n\n# Tables (also known as hash tables or dictionaries) are collections of\n# key/value pairs. They appear in square brackets on a line by themselves.\n\n[table]\n\nkey = \"value\" # Yeah, you can do this.\n\n# Nested tables are denoted by table names with dots in them. Name your tables\n# whatever crap you please, just don't use #, ., [ or ].\n\n[table.subtable]\n\nkey = \"another value\"\n\n# You don't need to specify all the super-tables if you don't want to. TOML\n# knows how to do it for you.\n\n# [x] you\n# [x.y] don't\n# [x.y.z] need these\n[x.y.z.w] # for this to work\n\n\n################################################################################\n## Inline Table\n\n# Inline tables provide a more compact syntax for expressing tables. They are\n# especially useful for grouped data that can otherwise quickly become verbose.\n# Inline tables are enclosed in curly braces `{` and `}`. No newlines are\n# allowed between the curly braces unless they are valid within a value.\n\n[table.inline]\n\nname = { first = \"Tom\", last = \"Preston-Werner\" }\npoint = { x = 1, y = 2 }\n\n\n################################################################################\n## String\n\n# There are four ways to express strings: basic, multi-line basic, literal, and\n# multi-line literal. All strings must contain only valid UTF-8 characters.\n\n[string.basic]\n\nbasic = \"I'm a string. \\\"You can quote me\\\". Name\\tJos\\u00E9\\nLocation\\tSF.\"\n\n[string.multiline]\n\n# The following strings are byte-for-byte equivalent:\nkey1 = \"One\\nTwo\"\nkey2 = \"\"\"One\\nTwo\"\"\"\nkey3 = \"\"\"\nOne\nTwo\"\"\"\n\n[string.multiline.continued]\n\n# The following strings are byte-for-byte equivalent:\nkey1 = \"The quick brown fox jumps over the lazy dog.\"\n\nkey2 = \"\"\"\nThe quick brown \\\n\n\n  fox jumps over \\\n    the lazy dog.\"\"\"\n\nkey3 = \"\"\"\\\n       The quick brown \\\n       fox jumps over \\\n       the lazy dog.\\\n       \"\"\"\n\n[string.literal]\n\n# What you see is what you get.\nwinpath  = 'C:\\Users\\nodejs\\templates'\nwinpath2 = '\\\\ServerX\\admin$\\system32\\'\nquoted   = 'Tom \"Dubs\" Preston-Werner'\nregex    = '<\\i\\c*\\s*>'\n\n\n[string.literal.multiline]\n\nregex2 = '''I [dw]on't need \\d{2} apples'''\nlines  = '''\nThe first newline is\ntrimmed in raw strings.\n   All other whitespace\n   is preserved.\n'''\n\n\n################################################################################\n## Integer\n\n# Integers are whole numbers. Positive numbers may be prefixed with a plus sign.\n# Negative numbers are prefixed with a minus sign.\n\n[integer]\n\nkey1 = +99\nkey2 = 42\nkey3 = 0\nkey4 = -17\n\n[integer.underscores]\n\n# For large numbers, you may use underscores to enhance readability. Each\n# underscore must be surrounded by at least one digit.\nkey1 = 1_000\nkey2 = 5_349_221\nkey3 = 1_2_3_4_5     # valid but inadvisable\n\n\n################################################################################\n## Float\n\n# A float consists of an integer part (which may be prefixed with a plus or\n# minus sign) followed by a fractional part and/or an exponent part.\n\n[float.fractional]\n\nkey1 = +1.0\nkey2 = 3.1415\nkey3 = -0.01\n\n[float.exponent]\n\nkey1 = 5e+22\nkey2 = 1e6\nkey3 = -2E-2\n\n[float.both]\n\nkey = 6.626e-34\n\n[float.underscores]\n\nkey1 = 9_224_617.445_991_228_313\nkey2 = 1e1_00\n\n\n################################################################################\n## Boolean\n\n# Booleans are just the tokens you're used to. Always lowercase.\n\n[boolean]\n\nTrue = true\nFalse = false\n\n\n################################################################################\n## Datetime\n\n# Datetimes are RFC 3339 dates.\n\n[datetime]\n\nkey1 = 1979-05-27T07:32:00Z\nkey2 = 1979-05-27T00:32:00-07:00\nkey3 = 1979-05-27T00:32:00.999999-07:00\n\n\n################################################################################\n## Array\n\n# Arrays are square brackets with other primitives inside. Whitespace is\n# ignored. Elements are separated by commas. Data types may not be mixed.\n\n[array]\n\nkey1 = [ 1, 2, 3 ]\nkey2 = [ \"red\", \"yellow\", \"green\" ]\nkey3 = [ [ 1, 2 ], [3, 4, 5] ]\n#key4 = [ [ 1, 2 ], [\"a\", \"b\", \"c\"] ] # this is ok\n\n# Arrays can also be multiline. So in addition to ignoring whitespace, arrays\n# also ignore newlines between the brackets.  Terminating commas are ok before\n# the closing bracket.\n\nkey5 = [\n  1, 2, 3\n]\nkey6 = [\n  1,\n  2, # this is ok\n]\n\n\n################################################################################\n## Array of Tables\n\n# These can be expressed by using a table name in double brackets. Each table\n# with the same double bracketed name will be an element in the array. The\n# tables are inserted in the order encountered.\n\n[[products]]\n\nname = \"Hammer\"\nsku = 738594937\n\n[[products]]\n\n[[products]]\n\nname = \"Nail\"\nsku = 284758393\ncolor = \"gray\"\n\n\n# You can create nested arrays of tables as well.\n\n[[fruit]]\n  name = \"apple\"\n\n  [fruit.physical]\n    color = \"red\"\n    shape = \"round\"\n\n  [[fruit.variety]]\n    name = \"red delicious\"\n\n  [[fruit.variety]]\n    name = \"granny smith\"\n\n[[fruit]]\n  name = \"banana\"\n\n  [[fruit.variety]]\n    name = \"plantain\"\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/benchmark.yml",
    "content": "---\narray:\n  key1:\n  - 1\n  - 2\n  - 3\n  key2:\n  - red\n  - yellow\n  - green\n  key3:\n  - - 1\n    - 2\n  - - 3\n    - 4\n    - 5\n  key4:\n  - - 1\n    - 2\n  - - a\n    - b\n    - c\n  key5:\n  - 1\n  - 2\n  - 3\n  key6:\n  - 1\n  - 2\nboolean:\n  'False': false\n  'True': true\ndatetime:\n  key1: '1979-05-27T07:32:00Z'\n  key2: '1979-05-27T00:32:00-07:00'\n  key3: '1979-05-27T00:32:00.999999-07:00'\nfloat:\n  both:\n    key: 6.626e-34\n  exponent:\n    key1: 5.0e+22\n    key2: 1000000\n    key3: -0.02\n  fractional:\n    key1: 1\n    key2: 3.1415\n    key3: -0.01\n  underscores:\n    key1: 9224617.445991227\n    key2: 1.0e+100\nfruit:\n- name: apple\n  physical:\n    color: red\n    shape: round\n  variety:\n  - name: red delicious\n  - name: granny smith\n- name: banana\n  variety:\n  - name: plantain\ninteger:\n  key1: 99\n  key2: 42\n  key3: 0\n  key4: -17\n  underscores:\n    key1: 1000\n    key2: 5349221\n    key3: 12345\nproducts:\n- name: Hammer\n  sku: 738594937\n- {}\n- color: gray\n  name: Nail\n  sku: 284758393\nstring:\n  basic:\n    basic: \"I'm a string. \\\"You can quote me\\\". Name\\tJosé\\nLocation\\tSF.\"\n  literal:\n    multiline:\n      lines: |\n        The first newline is\n        trimmed in raw strings.\n           All other whitespace\n           is preserved.\n      regex2: I [dw]on't need \\d{2} apples\n    quoted: Tom \"Dubs\" Preston-Werner\n    regex: \"<\\\\i\\\\c*\\\\s*>\"\n    winpath: C:\\Users\\nodejs\\templates\n    winpath2: \"\\\\\\\\ServerX\\\\admin$\\\\system32\\\\\"\n  multiline:\n    continued:\n      key1: The quick brown fox jumps over the lazy dog.\n      key2: The quick brown fox jumps over the lazy dog.\n      key3: The quick brown fox jumps over the lazy dog.\n    key1: |-\n      One\n      Two\n    key2: |-\n      One\n      Two\n    key3: |-\n      One\n      Two\ntable:\n  inline:\n    name:\n      first: Tom\n      last: Preston-Werner\n    point:\n      x: 1\n      y: 2\n  key: value\n  subtable:\n    key: another value\nx:\n  y:\n    z:\n      w: {}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/doc.go",
    "content": "// Package toml is a TOML parser and manipulation library.\n//\n// This version supports the specification as described in\n// https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.4.0.md\n//\n// Marshaling\n//\n// Go-toml can marshal and unmarshal TOML documents from and to data\n// structures.\n//\n// TOML document as a tree\n//\n// Go-toml can operate on a TOML document as a tree. Use one of the Load*\n// functions to parse TOML data and obtain a Tree instance, then one of its\n// methods to manipulate the tree.\n//\n// JSONPath-like queries\n//\n// The package github.com/pelletier/go-toml/query implements a system\n// similar to JSONPath to quickly retrieve elements of a TOML document using a\n// single expression. See the package documentation for more information.\n//\npackage toml\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/example-crlf.toml",
    "content": "# This is a TOML document. Boom.\r\n\r\ntitle = \"TOML Example\"\r\n\r\n[owner]\r\nname = \"Tom Preston-Werner\"\r\norganization = \"GitHub\"\r\nbio = \"GitHub Cofounder & CEO\\nLikes tater tots and beer.\"\r\ndob = 1979-05-27T07:32:00Z # First class dates? Why not?\r\n\r\n[database]\r\nserver = \"192.168.1.1\"\r\nports = [ 8001, 8001, 8002 ]\r\nconnection_max = 5000\r\nenabled = true\r\n\r\n[servers]\r\n\r\n  # You can indent as you please. Tabs or spaces. TOML don't care.\r\n  [servers.alpha]\r\n  ip = \"10.0.0.1\"\r\n  dc = \"eqdc10\"\r\n\r\n  [servers.beta]\r\n  ip = \"10.0.0.2\"\r\n  dc = \"eqdc10\"\r\n\r\n[clients]\r\ndata = [ [\"gamma\", \"delta\"], [1, 2] ] # just an update to make sure parsers support it\r\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/example.toml",
    "content": "# This is a TOML document. Boom.\n\ntitle = \"TOML Example\"\n\n[owner]\nname = \"Tom Preston-Werner\"\norganization = \"GitHub\"\nbio = \"GitHub Cofounder & CEO\\nLikes tater tots and beer.\"\ndob = 1979-05-27T07:32:00Z # First class dates? Why not?\n\n[database]\nserver = \"192.168.1.1\"\nports = [ 8001, 8001, 8002 ]\nconnection_max = 5000\nenabled = true\n\n[servers]\n\n  # You can indent as you please. Tabs or spaces. TOML don't care.\n  [servers.alpha]\n  ip = \"10.0.0.1\"\n  dc = \"eqdc10\"\n\n  [servers.beta]\n  ip = \"10.0.0.2\"\n  dc = \"eqdc10\"\n\n[clients]\ndata = [ [\"gamma\", \"delta\"], [1, 2] ] # just an update to make sure parsers support it\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/fuzz.go",
    "content": "// +build gofuzz\n\npackage toml\n\nfunc Fuzz(data []byte) int {\n\ttree, err := LoadBytes(data)\n\tif err != nil {\n\t\tif tree != nil {\n\t\t\tpanic(\"tree must be nil if there is an error\")\n\t\t}\n\t\treturn 0\n\t}\n\n\tstr, err := tree.ToTomlString()\n\tif err != nil {\n\t\tif str != \"\" {\n\t\t\tpanic(`str must be \"\" if there is an error`)\n\t\t}\n\t\tpanic(err)\n\t}\n\n\ttree, err = Load(str)\n\tif err != nil {\n\t\tif tree != nil {\n\t\t\tpanic(\"tree must be nil if there is an error\")\n\t\t}\n\t\treturn 0\n\t}\n\n\treturn 1\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/fuzz.sh",
    "content": "#! /bin/sh\nset -eu\n\ngo get github.com/dvyukov/go-fuzz/go-fuzz\ngo get github.com/dvyukov/go-fuzz/go-fuzz-build\n\nif [ ! -e toml-fuzz.zip ]; then\n    go-fuzz-build github.com/pelletier/go-toml\nfi\n\nrm -fr fuzz\nmkdir -p fuzz/corpus\ncp *.toml fuzz/corpus\n\ngo-fuzz -bin=toml-fuzz.zip -workdir=fuzz\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/keysparsing.go",
    "content": "// Parsing keys handling both bare and quoted keys.\n\npackage toml\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"unicode\"\n)\n\n// Convert the bare key group string to an array.\n// The input supports double quotation to allow \".\" inside the key name,\n// but escape sequences are not supported. Lexers must unescape them beforehand.\nfunc parseKey(key string) ([]string, error) {\n\tgroups := []string{}\n\tvar buffer bytes.Buffer\n\tinQuotes := false\n\twasInQuotes := false\n\tignoreSpace := true\n\texpectDot := false\n\n\tfor _, char := range key {\n\t\tif ignoreSpace {\n\t\t\tif char == ' ' {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tignoreSpace = false\n\t\t}\n\t\tswitch char {\n\t\tcase '\"':\n\t\t\tif inQuotes {\n\t\t\t\tgroups = append(groups, buffer.String())\n\t\t\t\tbuffer.Reset()\n\t\t\t\twasInQuotes = true\n\t\t\t}\n\t\t\tinQuotes = !inQuotes\n\t\t\texpectDot = false\n\t\tcase '.':\n\t\t\tif inQuotes {\n\t\t\t\tbuffer.WriteRune(char)\n\t\t\t} else {\n\t\t\t\tif !wasInQuotes {\n\t\t\t\t\tif buffer.Len() == 0 {\n\t\t\t\t\t\treturn nil, errors.New(\"empty table key\")\n\t\t\t\t\t}\n\t\t\t\t\tgroups = append(groups, buffer.String())\n\t\t\t\t\tbuffer.Reset()\n\t\t\t\t}\n\t\t\t\tignoreSpace = true\n\t\t\t\texpectDot = false\n\t\t\t\twasInQuotes = false\n\t\t\t}\n\t\tcase ' ':\n\t\t\tif inQuotes {\n\t\t\t\tbuffer.WriteRune(char)\n\t\t\t} else {\n\t\t\t\texpectDot = true\n\t\t\t}\n\t\tdefault:\n\t\t\tif !inQuotes && !isValidBareChar(char) {\n\t\t\t\treturn nil, fmt.Errorf(\"invalid bare character: %c\", char)\n\t\t\t}\n\t\t\tif !inQuotes && expectDot {\n\t\t\t\treturn nil, errors.New(\"what?\")\n\t\t\t}\n\t\t\tbuffer.WriteRune(char)\n\t\t\texpectDot = false\n\t\t}\n\t}\n\tif inQuotes {\n\t\treturn nil, errors.New(\"mismatched quotes\")\n\t}\n\tif buffer.Len() > 0 {\n\t\tgroups = append(groups, buffer.String())\n\t}\n\tif len(groups) == 0 {\n\t\treturn nil, errors.New(\"empty key\")\n\t}\n\treturn groups, nil\n}\n\nfunc isValidBareChar(r rune) bool {\n\treturn isAlphanumeric(r) || r == '-' || unicode.IsNumber(r)\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/lexer.go",
    "content": "// TOML lexer.\n//\n// Written using the principles developed by Rob Pike in\n// http://www.youtube.com/watch?v=HxaD_trXwRE\n\npackage toml\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"regexp\"\n\t\"strconv\"\n\t\"strings\"\n)\n\nvar dateRegexp *regexp.Regexp\n\n// Define state functions\ntype tomlLexStateFn func() tomlLexStateFn\n\n// Define lexer\ntype tomlLexer struct {\n\tinputIdx          int\n\tinput             []rune // Textual source\n\tcurrentTokenStart int\n\tcurrentTokenStop  int\n\ttokens            []token\n\tdepth             int\n\tline              int\n\tcol               int\n\tendbufferLine     int\n\tendbufferCol      int\n}\n\n// Basic read operations on input\n\nfunc (l *tomlLexer) read() rune {\n\tr := l.peek()\n\tif r == '\\n' {\n\t\tl.endbufferLine++\n\t\tl.endbufferCol = 1\n\t} else {\n\t\tl.endbufferCol++\n\t}\n\tl.inputIdx++\n\treturn r\n}\n\nfunc (l *tomlLexer) next() rune {\n\tr := l.read()\n\n\tif r != eof {\n\t\tl.currentTokenStop++\n\t}\n\treturn r\n}\n\nfunc (l *tomlLexer) ignore() {\n\tl.currentTokenStart = l.currentTokenStop\n\tl.line = l.endbufferLine\n\tl.col = l.endbufferCol\n}\n\nfunc (l *tomlLexer) skip() {\n\tl.next()\n\tl.ignore()\n}\n\nfunc (l *tomlLexer) fastForward(n int) {\n\tfor i := 0; i < n; i++ {\n\t\tl.next()\n\t}\n}\n\nfunc (l *tomlLexer) emitWithValue(t tokenType, value string) {\n\tl.tokens = append(l.tokens, token{\n\t\tPosition: Position{l.line, l.col},\n\t\ttyp:      t,\n\t\tval:      value,\n\t})\n\tl.ignore()\n}\n\nfunc (l *tomlLexer) emit(t tokenType) {\n\tl.emitWithValue(t, string(l.input[l.currentTokenStart:l.currentTokenStop]))\n}\n\nfunc (l *tomlLexer) peek() rune {\n\tif l.inputIdx >= len(l.input) {\n\t\treturn eof\n\t}\n\treturn l.input[l.inputIdx]\n}\n\nfunc (l *tomlLexer) peekString(size int) string {\n\tmaxIdx := len(l.input)\n\tupperIdx := l.inputIdx + size // FIXME: potential overflow\n\tif upperIdx > maxIdx {\n\t\tupperIdx = maxIdx\n\t}\n\treturn string(l.input[l.inputIdx:upperIdx])\n}\n\nfunc (l *tomlLexer) follow(next string) bool {\n\treturn next == l.peekString(len(next))\n}\n\n// Error management\n\nfunc (l *tomlLexer) errorf(format string, args ...interface{}) tomlLexStateFn {\n\tl.tokens = append(l.tokens, token{\n\t\tPosition: Position{l.line, l.col},\n\t\ttyp:      tokenError,\n\t\tval:      fmt.Sprintf(format, args...),\n\t})\n\treturn nil\n}\n\n// State functions\n\nfunc (l *tomlLexer) lexVoid() tomlLexStateFn {\n\tfor {\n\t\tnext := l.peek()\n\t\tswitch next {\n\t\tcase '[':\n\t\t\treturn l.lexTableKey\n\t\tcase '#':\n\t\t\treturn l.lexComment(l.lexVoid)\n\t\tcase '=':\n\t\t\treturn l.lexEqual\n\t\tcase '\\r':\n\t\t\tfallthrough\n\t\tcase '\\n':\n\t\t\tl.skip()\n\t\t\tcontinue\n\t\t}\n\n\t\tif isSpace(next) {\n\t\t\tl.skip()\n\t\t}\n\n\t\tif l.depth > 0 {\n\t\t\treturn l.lexRvalue\n\t\t}\n\n\t\tif isKeyStartChar(next) {\n\t\t\treturn l.lexKey\n\t\t}\n\n\t\tif next == eof {\n\t\t\tl.next()\n\t\t\tbreak\n\t\t}\n\t}\n\n\tl.emit(tokenEOF)\n\treturn nil\n}\n\nfunc (l *tomlLexer) lexRvalue() tomlLexStateFn {\n\tfor {\n\t\tnext := l.peek()\n\t\tswitch next {\n\t\tcase '.':\n\t\t\treturn l.errorf(\"cannot start float with a dot\")\n\t\tcase '=':\n\t\t\treturn l.lexEqual\n\t\tcase '[':\n\t\t\tl.depth++\n\t\t\treturn l.lexLeftBracket\n\t\tcase ']':\n\t\t\tl.depth--\n\t\t\treturn l.lexRightBracket\n\t\tcase '{':\n\t\t\treturn l.lexLeftCurlyBrace\n\t\tcase '}':\n\t\t\treturn l.lexRightCurlyBrace\n\t\tcase '#':\n\t\t\treturn l.lexComment(l.lexRvalue)\n\t\tcase '\"':\n\t\t\treturn l.lexString\n\t\tcase '\\'':\n\t\t\treturn l.lexLiteralString\n\t\tcase ',':\n\t\t\treturn l.lexComma\n\t\tcase '\\r':\n\t\t\tfallthrough\n\t\tcase '\\n':\n\t\t\tl.skip()\n\t\t\tif l.depth == 0 {\n\t\t\t\treturn l.lexVoid\n\t\t\t}\n\t\t\treturn l.lexRvalue\n\t\tcase '_':\n\t\t\treturn l.errorf(\"cannot start number with underscore\")\n\t\t}\n\n\t\tif l.follow(\"true\") {\n\t\t\treturn l.lexTrue\n\t\t}\n\n\t\tif l.follow(\"false\") {\n\t\t\treturn l.lexFalse\n\t\t}\n\n\t\tif l.follow(\"inf\") {\n\t\t\treturn l.lexInf\n\t\t}\n\n\t\tif l.follow(\"nan\") {\n\t\t\treturn l.lexNan\n\t\t}\n\n\t\tif isSpace(next) {\n\t\t\tl.skip()\n\t\t\tcontinue\n\t\t}\n\n\t\tif next == eof {\n\t\t\tl.next()\n\t\t\tbreak\n\t\t}\n\n\t\tpossibleDate := l.peekString(35)\n\t\tdateMatch := dateRegexp.FindString(possibleDate)\n\t\tif dateMatch != \"\" {\n\t\t\tl.fastForward(len(dateMatch))\n\t\t\treturn l.lexDate\n\t\t}\n\n\t\tif next == '+' || next == '-' || isDigit(next) {\n\t\t\treturn l.lexNumber\n\t\t}\n\n\t\tif isAlphanumeric(next) {\n\t\t\treturn l.lexKey\n\t\t}\n\n\t\treturn l.errorf(\"no value can start with %c\", next)\n\t}\n\n\tl.emit(tokenEOF)\n\treturn nil\n}\n\nfunc (l *tomlLexer) lexLeftCurlyBrace() tomlLexStateFn {\n\tl.next()\n\tl.emit(tokenLeftCurlyBrace)\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexRightCurlyBrace() tomlLexStateFn {\n\tl.next()\n\tl.emit(tokenRightCurlyBrace)\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexDate() tomlLexStateFn {\n\tl.emit(tokenDate)\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexTrue() tomlLexStateFn {\n\tl.fastForward(4)\n\tl.emit(tokenTrue)\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexFalse() tomlLexStateFn {\n\tl.fastForward(5)\n\tl.emit(tokenFalse)\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexInf() tomlLexStateFn {\n\tl.fastForward(3)\n\tl.emit(tokenInf)\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexNan() tomlLexStateFn {\n\tl.fastForward(3)\n\tl.emit(tokenNan)\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexEqual() tomlLexStateFn {\n\tl.next()\n\tl.emit(tokenEqual)\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexComma() tomlLexStateFn {\n\tl.next()\n\tl.emit(tokenComma)\n\treturn l.lexRvalue\n}\n\n// Parse the key and emits its value without escape sequences.\n// bare keys, basic string keys and literal string keys are supported.\nfunc (l *tomlLexer) lexKey() tomlLexStateFn {\n\tgrowingString := \"\"\n\n\tfor r := l.peek(); isKeyChar(r) || r == '\\n' || r == '\\r'; r = l.peek() {\n\t\tif r == '\"' {\n\t\t\tl.next()\n\t\t\tstr, err := l.lexStringAsString(`\"`, false, true)\n\t\t\tif err != nil {\n\t\t\t\treturn l.errorf(err.Error())\n\t\t\t}\n\t\t\tgrowingString += str\n\t\t\tl.next()\n\t\t\tcontinue\n\t\t} else if r == '\\'' {\n\t\t\tl.next()\n\t\t\tstr, err := l.lexLiteralStringAsString(`'`, false)\n\t\t\tif err != nil {\n\t\t\t\treturn l.errorf(err.Error())\n\t\t\t}\n\t\t\tgrowingString += str\n\t\t\tl.next()\n\t\t\tcontinue\n\t\t} else if r == '\\n' {\n\t\t\treturn l.errorf(\"keys cannot contain new lines\")\n\t\t} else if isSpace(r) {\n\t\t\tbreak\n\t\t} else if !isValidBareChar(r) {\n\t\t\treturn l.errorf(\"keys cannot contain %c character\", r)\n\t\t}\n\t\tgrowingString += string(r)\n\t\tl.next()\n\t}\n\tl.emitWithValue(tokenKey, growingString)\n\treturn l.lexVoid\n}\n\nfunc (l *tomlLexer) lexComment(previousState tomlLexStateFn) tomlLexStateFn {\n\treturn func() tomlLexStateFn {\n\t\tfor next := l.peek(); next != '\\n' && next != eof; next = l.peek() {\n\t\t\tif next == '\\r' && l.follow(\"\\r\\n\") {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tl.next()\n\t\t}\n\t\tl.ignore()\n\t\treturn previousState\n\t}\n}\n\nfunc (l *tomlLexer) lexLeftBracket() tomlLexStateFn {\n\tl.next()\n\tl.emit(tokenLeftBracket)\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexLiteralStringAsString(terminator string, discardLeadingNewLine bool) (string, error) {\n\tgrowingString := \"\"\n\n\tif discardLeadingNewLine {\n\t\tif l.follow(\"\\r\\n\") {\n\t\t\tl.skip()\n\t\t\tl.skip()\n\t\t} else if l.peek() == '\\n' {\n\t\t\tl.skip()\n\t\t}\n\t}\n\n\t// find end of string\n\tfor {\n\t\tif l.follow(terminator) {\n\t\t\treturn growingString, nil\n\t\t}\n\n\t\tnext := l.peek()\n\t\tif next == eof {\n\t\t\tbreak\n\t\t}\n\t\tgrowingString += string(l.next())\n\t}\n\n\treturn \"\", errors.New(\"unclosed string\")\n}\n\nfunc (l *tomlLexer) lexLiteralString() tomlLexStateFn {\n\tl.skip()\n\n\t// handle special case for triple-quote\n\tterminator := \"'\"\n\tdiscardLeadingNewLine := false\n\tif l.follow(\"''\") {\n\t\tl.skip()\n\t\tl.skip()\n\t\tterminator = \"'''\"\n\t\tdiscardLeadingNewLine = true\n\t}\n\n\tstr, err := l.lexLiteralStringAsString(terminator, discardLeadingNewLine)\n\tif err != nil {\n\t\treturn l.errorf(err.Error())\n\t}\n\n\tl.emitWithValue(tokenString, str)\n\tl.fastForward(len(terminator))\n\tl.ignore()\n\treturn l.lexRvalue\n}\n\n// Lex a string and return the results as a string.\n// Terminator is the substring indicating the end of the token.\n// The resulting string does not include the terminator.\nfunc (l *tomlLexer) lexStringAsString(terminator string, discardLeadingNewLine, acceptNewLines bool) (string, error) {\n\tgrowingString := \"\"\n\n\tif discardLeadingNewLine {\n\t\tif l.follow(\"\\r\\n\") {\n\t\t\tl.skip()\n\t\t\tl.skip()\n\t\t} else if l.peek() == '\\n' {\n\t\t\tl.skip()\n\t\t}\n\t}\n\n\tfor {\n\t\tif l.follow(terminator) {\n\t\t\treturn growingString, nil\n\t\t}\n\n\t\tif l.follow(\"\\\\\") {\n\t\t\tl.next()\n\t\t\tswitch l.peek() {\n\t\t\tcase '\\r':\n\t\t\t\tfallthrough\n\t\t\tcase '\\n':\n\t\t\t\tfallthrough\n\t\t\tcase '\\t':\n\t\t\t\tfallthrough\n\t\t\tcase ' ':\n\t\t\t\t// skip all whitespace chars following backslash\n\t\t\t\tfor strings.ContainsRune(\"\\r\\n\\t \", l.peek()) {\n\t\t\t\t\tl.next()\n\t\t\t\t}\n\t\t\tcase '\"':\n\t\t\t\tgrowingString += \"\\\"\"\n\t\t\t\tl.next()\n\t\t\tcase 'n':\n\t\t\t\tgrowingString += \"\\n\"\n\t\t\t\tl.next()\n\t\t\tcase 'b':\n\t\t\t\tgrowingString += \"\\b\"\n\t\t\t\tl.next()\n\t\t\tcase 'f':\n\t\t\t\tgrowingString += \"\\f\"\n\t\t\t\tl.next()\n\t\t\tcase '/':\n\t\t\t\tgrowingString += \"/\"\n\t\t\t\tl.next()\n\t\t\tcase 't':\n\t\t\t\tgrowingString += \"\\t\"\n\t\t\t\tl.next()\n\t\t\tcase 'r':\n\t\t\t\tgrowingString += \"\\r\"\n\t\t\t\tl.next()\n\t\t\tcase '\\\\':\n\t\t\t\tgrowingString += \"\\\\\"\n\t\t\t\tl.next()\n\t\t\tcase 'u':\n\t\t\t\tl.next()\n\t\t\t\tcode := \"\"\n\t\t\t\tfor i := 0; i < 4; i++ {\n\t\t\t\t\tc := l.peek()\n\t\t\t\t\tif !isHexDigit(c) {\n\t\t\t\t\t\treturn \"\", errors.New(\"unfinished unicode escape\")\n\t\t\t\t\t}\n\t\t\t\t\tl.next()\n\t\t\t\t\tcode = code + string(c)\n\t\t\t\t}\n\t\t\t\tintcode, err := strconv.ParseInt(code, 16, 32)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn \"\", errors.New(\"invalid unicode escape: \\\\u\" + code)\n\t\t\t\t}\n\t\t\t\tgrowingString += string(rune(intcode))\n\t\t\tcase 'U':\n\t\t\t\tl.next()\n\t\t\t\tcode := \"\"\n\t\t\t\tfor i := 0; i < 8; i++ {\n\t\t\t\t\tc := l.peek()\n\t\t\t\t\tif !isHexDigit(c) {\n\t\t\t\t\t\treturn \"\", errors.New(\"unfinished unicode escape\")\n\t\t\t\t\t}\n\t\t\t\t\tl.next()\n\t\t\t\t\tcode = code + string(c)\n\t\t\t\t}\n\t\t\t\tintcode, err := strconv.ParseInt(code, 16, 64)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn \"\", errors.New(\"invalid unicode escape: \\\\U\" + code)\n\t\t\t\t}\n\t\t\t\tgrowingString += string(rune(intcode))\n\t\t\tdefault:\n\t\t\t\treturn \"\", errors.New(\"invalid escape sequence: \\\\\" + string(l.peek()))\n\t\t\t}\n\t\t} else {\n\t\t\tr := l.peek()\n\n\t\t\tif 0x00 <= r && r <= 0x1F && !(acceptNewLines && (r == '\\n' || r == '\\r')) {\n\t\t\t\treturn \"\", fmt.Errorf(\"unescaped control character %U\", r)\n\t\t\t}\n\t\t\tl.next()\n\t\t\tgrowingString += string(r)\n\t\t}\n\n\t\tif l.peek() == eof {\n\t\t\tbreak\n\t\t}\n\t}\n\n\treturn \"\", errors.New(\"unclosed string\")\n}\n\nfunc (l *tomlLexer) lexString() tomlLexStateFn {\n\tl.skip()\n\n\t// handle special case for triple-quote\n\tterminator := `\"`\n\tdiscardLeadingNewLine := false\n\tacceptNewLines := false\n\tif l.follow(`\"\"`) {\n\t\tl.skip()\n\t\tl.skip()\n\t\tterminator = `\"\"\"`\n\t\tdiscardLeadingNewLine = true\n\t\tacceptNewLines = true\n\t}\n\n\tstr, err := l.lexStringAsString(terminator, discardLeadingNewLine, acceptNewLines)\n\n\tif err != nil {\n\t\treturn l.errorf(err.Error())\n\t}\n\n\tl.emitWithValue(tokenString, str)\n\tl.fastForward(len(terminator))\n\tl.ignore()\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) lexTableKey() tomlLexStateFn {\n\tl.next()\n\n\tif l.peek() == '[' {\n\t\t// token '[[' signifies an array of tables\n\t\tl.next()\n\t\tl.emit(tokenDoubleLeftBracket)\n\t\treturn l.lexInsideTableArrayKey\n\t}\n\t// vanilla table key\n\tl.emit(tokenLeftBracket)\n\treturn l.lexInsideTableKey\n}\n\n// Parse the key till \"]]\", but only bare keys are supported\nfunc (l *tomlLexer) lexInsideTableArrayKey() tomlLexStateFn {\n\tfor r := l.peek(); r != eof; r = l.peek() {\n\t\tswitch r {\n\t\tcase ']':\n\t\t\tif l.currentTokenStop > l.currentTokenStart {\n\t\t\t\tl.emit(tokenKeyGroupArray)\n\t\t\t}\n\t\t\tl.next()\n\t\t\tif l.peek() != ']' {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tl.next()\n\t\t\tl.emit(tokenDoubleRightBracket)\n\t\t\treturn l.lexVoid\n\t\tcase '[':\n\t\t\treturn l.errorf(\"table array key cannot contain ']'\")\n\t\tdefault:\n\t\t\tl.next()\n\t\t}\n\t}\n\treturn l.errorf(\"unclosed table array key\")\n}\n\n// Parse the key till \"]\" but only bare keys are supported\nfunc (l *tomlLexer) lexInsideTableKey() tomlLexStateFn {\n\tfor r := l.peek(); r != eof; r = l.peek() {\n\t\tswitch r {\n\t\tcase ']':\n\t\t\tif l.currentTokenStop > l.currentTokenStart {\n\t\t\t\tl.emit(tokenKeyGroup)\n\t\t\t}\n\t\t\tl.next()\n\t\t\tl.emit(tokenRightBracket)\n\t\t\treturn l.lexVoid\n\t\tcase '[':\n\t\t\treturn l.errorf(\"table key cannot contain ']'\")\n\t\tdefault:\n\t\t\tl.next()\n\t\t}\n\t}\n\treturn l.errorf(\"unclosed table key\")\n}\n\nfunc (l *tomlLexer) lexRightBracket() tomlLexStateFn {\n\tl.next()\n\tl.emit(tokenRightBracket)\n\treturn l.lexRvalue\n}\n\ntype validRuneFn func(r rune) bool\n\nfunc isValidHexRune(r rune) bool {\n\treturn r >= 'a' && r <= 'f' ||\n\t\tr >= 'A' && r <= 'F' ||\n\t\tr >= '0' && r <= '9' ||\n\t\tr == '_'\n}\n\nfunc isValidOctalRune(r rune) bool {\n\treturn r >= '0' && r <= '7' || r == '_'\n}\n\nfunc isValidBinaryRune(r rune) bool {\n\treturn r == '0' || r == '1' || r == '_'\n}\n\nfunc (l *tomlLexer) lexNumber() tomlLexStateFn {\n\tr := l.peek()\n\n\tif r == '0' {\n\t\tfollow := l.peekString(2)\n\t\tif len(follow) == 2 {\n\t\t\tvar isValidRune validRuneFn\n\t\t\tswitch follow[1] {\n\t\t\tcase 'x':\n\t\t\t\tisValidRune = isValidHexRune\n\t\t\tcase 'o':\n\t\t\t\tisValidRune = isValidOctalRune\n\t\t\tcase 'b':\n\t\t\t\tisValidRune = isValidBinaryRune\n\t\t\tdefault:\n\t\t\t\tif follow[1] >= 'a' && follow[1] <= 'z' || follow[1] >= 'A' && follow[1] <= 'Z' {\n\t\t\t\t\treturn l.errorf(\"unknown number base: %s. possible options are x (hex) o (octal) b (binary)\", string(follow[1]))\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif isValidRune != nil {\n\t\t\t\tl.next()\n\t\t\t\tl.next()\n\t\t\t\tdigitSeen := false\n\t\t\t\tfor {\n\t\t\t\t\tnext := l.peek()\n\t\t\t\t\tif !isValidRune(next) {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\tdigitSeen = true\n\t\t\t\t\tl.next()\n\t\t\t\t}\n\n\t\t\t\tif !digitSeen {\n\t\t\t\t\treturn l.errorf(\"number needs at least one digit\")\n\t\t\t\t}\n\n\t\t\t\tl.emit(tokenInteger)\n\n\t\t\t\treturn l.lexRvalue\n\t\t\t}\n\t\t}\n\t}\n\n\tif r == '+' || r == '-' {\n\t\tl.next()\n\t\tif l.follow(\"inf\") {\n\t\t\treturn l.lexInf\n\t\t}\n\t\tif l.follow(\"nan\") {\n\t\t\treturn l.lexNan\n\t\t}\n\t}\n\n\tpointSeen := false\n\texpSeen := false\n\tdigitSeen := false\n\tfor {\n\t\tnext := l.peek()\n\t\tif next == '.' {\n\t\t\tif pointSeen {\n\t\t\t\treturn l.errorf(\"cannot have two dots in one float\")\n\t\t\t}\n\t\t\tl.next()\n\t\t\tif !isDigit(l.peek()) {\n\t\t\t\treturn l.errorf(\"float cannot end with a dot\")\n\t\t\t}\n\t\t\tpointSeen = true\n\t\t} else if next == 'e' || next == 'E' {\n\t\t\texpSeen = true\n\t\t\tl.next()\n\t\t\tr := l.peek()\n\t\t\tif r == '+' || r == '-' {\n\t\t\t\tl.next()\n\t\t\t}\n\t\t} else if isDigit(next) {\n\t\t\tdigitSeen = true\n\t\t\tl.next()\n\t\t} else if next == '_' {\n\t\t\tl.next()\n\t\t} else {\n\t\t\tbreak\n\t\t}\n\t\tif pointSeen && !digitSeen {\n\t\t\treturn l.errorf(\"cannot start float with a dot\")\n\t\t}\n\t}\n\n\tif !digitSeen {\n\t\treturn l.errorf(\"no digit in that number\")\n\t}\n\tif pointSeen || expSeen {\n\t\tl.emit(tokenFloat)\n\t} else {\n\t\tl.emit(tokenInteger)\n\t}\n\treturn l.lexRvalue\n}\n\nfunc (l *tomlLexer) run() {\n\tfor state := l.lexVoid; state != nil; {\n\t\tstate = state()\n\t}\n}\n\nfunc init() {\n\tdateRegexp = regexp.MustCompile(`^\\d{1,4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d{1,9})?(Z|[+-]\\d{2}:\\d{2})`)\n}\n\n// Entry point\nfunc lexToml(inputBytes []byte) []token {\n\trunes := bytes.Runes(inputBytes)\n\tl := &tomlLexer{\n\t\tinput:         runes,\n\t\ttokens:        make([]token, 0, 256),\n\t\tline:          1,\n\t\tcol:           1,\n\t\tendbufferLine: 1,\n\t\tendbufferCol:  1,\n\t}\n\tl.run()\n\treturn l.tokens\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/marshal.go",
    "content": "package toml\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n)\n\nconst tagKeyMultiline = \"multiline\"\n\ntype tomlOpts struct {\n\tname      string\n\tcomment   string\n\tcommented bool\n\tmultiline bool\n\tinclude   bool\n\tomitempty bool\n}\n\ntype encOpts struct {\n\tquoteMapKeys            bool\n\tarraysOneElementPerLine bool\n}\n\nvar encOptsDefaults = encOpts{\n\tquoteMapKeys: false,\n}\n\nvar timeType = reflect.TypeOf(time.Time{})\nvar marshalerType = reflect.TypeOf(new(Marshaler)).Elem()\n\n// Check if the given marshall type maps to a Tree primitive\nfunc isPrimitive(mtype reflect.Type) bool {\n\tswitch mtype.Kind() {\n\tcase reflect.Ptr:\n\t\treturn isPrimitive(mtype.Elem())\n\tcase reflect.Bool:\n\t\treturn true\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn true\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:\n\t\treturn true\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn true\n\tcase reflect.String:\n\t\treturn true\n\tcase reflect.Struct:\n\t\treturn mtype == timeType || isCustomMarshaler(mtype)\n\tdefault:\n\t\treturn false\n\t}\n}\n\n// Check if the given marshall type maps to a Tree slice\nfunc isTreeSlice(mtype reflect.Type) bool {\n\tswitch mtype.Kind() {\n\tcase reflect.Slice:\n\t\treturn !isOtherSlice(mtype)\n\tdefault:\n\t\treturn false\n\t}\n}\n\n// Check if the given marshall type maps to a non-Tree slice\nfunc isOtherSlice(mtype reflect.Type) bool {\n\tswitch mtype.Kind() {\n\tcase reflect.Ptr:\n\t\treturn isOtherSlice(mtype.Elem())\n\tcase reflect.Slice:\n\t\treturn isPrimitive(mtype.Elem()) || isOtherSlice(mtype.Elem())\n\tdefault:\n\t\treturn false\n\t}\n}\n\n// Check if the given marshall type maps to a Tree\nfunc isTree(mtype reflect.Type) bool {\n\tswitch mtype.Kind() {\n\tcase reflect.Map:\n\t\treturn true\n\tcase reflect.Struct:\n\t\treturn !isPrimitive(mtype)\n\tdefault:\n\t\treturn false\n\t}\n}\n\nfunc isCustomMarshaler(mtype reflect.Type) bool {\n\treturn mtype.Implements(marshalerType)\n}\n\nfunc callCustomMarshaler(mval reflect.Value) ([]byte, error) {\n\treturn mval.Interface().(Marshaler).MarshalTOML()\n}\n\n// Marshaler is the interface implemented by types that\n// can marshal themselves into valid TOML.\ntype Marshaler interface {\n\tMarshalTOML() ([]byte, error)\n}\n\n/*\nMarshal returns the TOML encoding of v.  Behavior is similar to the Go json\nencoder, except that there is no concept of a Marshaler interface or MarshalTOML\nfunction for sub-structs, and currently only definite types can be marshaled\n(i.e. no `interface{}`).\n\nThe following struct annotations are supported:\n\n  toml:\"Field\"      Overrides the field's name to output.\n  omitempty         When set, empty values and groups are not emitted.\n  comment:\"comment\" Emits a # comment on the same line. This supports new lines.\n  commented:\"true\"  Emits the value as commented.\n\nNote that pointers are automatically assigned the \"omitempty\" option, as TOML\nexplicitly does not handle null values (saying instead the label should be\ndropped).\n\nTree structural types and corresponding marshal types:\n\n  *Tree                            (*)struct, (*)map[string]interface{}\n  []*Tree                          (*)[](*)struct, (*)[](*)map[string]interface{}\n  []interface{} (as interface{})   (*)[]primitive, (*)[]([]interface{})\n  interface{}                      (*)primitive\n\nTree primitive types and corresponding marshal types:\n\n  uint64     uint, uint8-uint64, pointers to same\n  int64      int, int8-uint64, pointers to same\n  float64    float32, float64, pointers to same\n  string     string, pointers to same\n  bool       bool, pointers to same\n  time.Time  time.Time{}, pointers to same\n*/\nfunc Marshal(v interface{}) ([]byte, error) {\n\treturn NewEncoder(nil).marshal(v)\n}\n\n// Encoder writes TOML values to an output stream.\ntype Encoder struct {\n\tw io.Writer\n\tencOpts\n}\n\n// NewEncoder returns a new encoder that writes to w.\nfunc NewEncoder(w io.Writer) *Encoder {\n\treturn &Encoder{\n\t\tw:       w,\n\t\tencOpts: encOptsDefaults,\n\t}\n}\n\n// Encode writes the TOML encoding of v to the stream.\n//\n// See the documentation for Marshal for details.\nfunc (e *Encoder) Encode(v interface{}) error {\n\tb, err := e.marshal(v)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif _, err := e.w.Write(b); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// QuoteMapKeys sets up the encoder to encode\n// maps with string type keys with quoted TOML keys.\n//\n// This relieves the character limitations on map keys.\nfunc (e *Encoder) QuoteMapKeys(v bool) *Encoder {\n\te.quoteMapKeys = v\n\treturn e\n}\n\n// ArraysWithOneElementPerLine sets up the encoder to encode arrays\n// with more than one element on multiple lines instead of one.\n//\n// For example:\n//\n//   A = [1,2,3]\n//\n// Becomes\n//\n//   A = [\n//     1,\n//     2,\n//     3,\n//   ]\nfunc (e *Encoder) ArraysWithOneElementPerLine(v bool) *Encoder {\n\te.arraysOneElementPerLine = v\n\treturn e\n}\n\nfunc (e *Encoder) marshal(v interface{}) ([]byte, error) {\n\tmtype := reflect.TypeOf(v)\n\tif mtype.Kind() != reflect.Struct {\n\t\treturn []byte{}, errors.New(\"Only a struct can be marshaled to TOML\")\n\t}\n\tsval := reflect.ValueOf(v)\n\tif isCustomMarshaler(mtype) {\n\t\treturn callCustomMarshaler(sval)\n\t}\n\tt, err := e.valueToTree(mtype, sval)\n\tif err != nil {\n\t\treturn []byte{}, err\n\t}\n\n\tvar buf bytes.Buffer\n\t_, err = t.writeTo(&buf, \"\", \"\", 0, e.arraysOneElementPerLine)\n\n\treturn buf.Bytes(), err\n}\n\n// Convert given marshal struct or map value to toml tree\nfunc (e *Encoder) valueToTree(mtype reflect.Type, mval reflect.Value) (*Tree, error) {\n\tif mtype.Kind() == reflect.Ptr {\n\t\treturn e.valueToTree(mtype.Elem(), mval.Elem())\n\t}\n\ttval := newTree()\n\tswitch mtype.Kind() {\n\tcase reflect.Struct:\n\t\tfor i := 0; i < mtype.NumField(); i++ {\n\t\t\tmtypef, mvalf := mtype.Field(i), mval.Field(i)\n\t\t\topts := tomlOptions(mtypef)\n\t\t\tif opts.include && (!opts.omitempty || !isZero(mvalf)) {\n\t\t\t\tval, err := e.valueToToml(mtypef.Type, mvalf)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\n\t\t\t\ttval.SetWithOptions(opts.name, SetOptions{\n\t\t\t\t\tComment:   opts.comment,\n\t\t\t\t\tCommented: opts.commented,\n\t\t\t\t\tMultiline: opts.multiline,\n\t\t\t\t}, val)\n\t\t\t}\n\t\t}\n\tcase reflect.Map:\n\t\tfor _, key := range mval.MapKeys() {\n\t\t\tmvalf := mval.MapIndex(key)\n\t\t\tval, err := e.valueToToml(mtype.Elem(), mvalf)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif e.quoteMapKeys {\n\t\t\t\tkeyStr, err := tomlValueStringRepresentation(key.String(), \"\", e.arraysOneElementPerLine)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\ttval.SetPath([]string{keyStr}, val)\n\t\t\t} else {\n\t\t\t\ttval.Set(key.String(), val)\n\t\t\t}\n\t\t}\n\t}\n\treturn tval, nil\n}\n\n// Convert given marshal slice to slice of Toml trees\nfunc (e *Encoder) valueToTreeSlice(mtype reflect.Type, mval reflect.Value) ([]*Tree, error) {\n\ttval := make([]*Tree, mval.Len(), mval.Len())\n\tfor i := 0; i < mval.Len(); i++ {\n\t\tval, err := e.valueToTree(mtype.Elem(), mval.Index(i))\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\ttval[i] = val\n\t}\n\treturn tval, nil\n}\n\n// Convert given marshal slice to slice of toml values\nfunc (e *Encoder) valueToOtherSlice(mtype reflect.Type, mval reflect.Value) (interface{}, error) {\n\ttval := make([]interface{}, mval.Len(), mval.Len())\n\tfor i := 0; i < mval.Len(); i++ {\n\t\tval, err := e.valueToToml(mtype.Elem(), mval.Index(i))\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\ttval[i] = val\n\t}\n\treturn tval, nil\n}\n\n// Convert given marshal value to toml value\nfunc (e *Encoder) valueToToml(mtype reflect.Type, mval reflect.Value) (interface{}, error) {\n\tif mtype.Kind() == reflect.Ptr {\n\t\treturn e.valueToToml(mtype.Elem(), mval.Elem())\n\t}\n\tswitch {\n\tcase isCustomMarshaler(mtype):\n\t\treturn callCustomMarshaler(mval)\n\tcase isTree(mtype):\n\t\treturn e.valueToTree(mtype, mval)\n\tcase isTreeSlice(mtype):\n\t\treturn e.valueToTreeSlice(mtype, mval)\n\tcase isOtherSlice(mtype):\n\t\treturn e.valueToOtherSlice(mtype, mval)\n\tdefault:\n\t\tswitch mtype.Kind() {\n\t\tcase reflect.Bool:\n\t\t\treturn mval.Bool(), nil\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\treturn mval.Int(), nil\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:\n\t\t\treturn mval.Uint(), nil\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\treturn mval.Float(), nil\n\t\tcase reflect.String:\n\t\t\treturn mval.String(), nil\n\t\tcase reflect.Struct:\n\t\t\treturn mval.Interface().(time.Time), nil\n\t\tdefault:\n\t\t\treturn nil, fmt.Errorf(\"Marshal can't handle %v(%v)\", mtype, mtype.Kind())\n\t\t}\n\t}\n}\n\n// Unmarshal attempts to unmarshal the Tree into a Go struct pointed by v.\n// Neither Unmarshaler interfaces nor UnmarshalTOML functions are supported for\n// sub-structs, and only definite types can be unmarshaled.\nfunc (t *Tree) Unmarshal(v interface{}) error {\n\td := Decoder{tval: t}\n\treturn d.unmarshal(v)\n}\n\n// Marshal returns the TOML encoding of Tree.\n// See Marshal() documentation for types mapping table.\nfunc (t *Tree) Marshal() ([]byte, error) {\n\tvar buf bytes.Buffer\n\terr := NewEncoder(&buf).Encode(t)\n\treturn buf.Bytes(), err\n}\n\n// Unmarshal parses the TOML-encoded data and stores the result in the value\n// pointed to by v. Behavior is similar to the Go json encoder, except that there\n// is no concept of an Unmarshaler interface or UnmarshalTOML function for\n// sub-structs, and currently only definite types can be unmarshaled to (i.e. no\n// `interface{}`).\n//\n// The following struct annotations are supported:\n//\n//   toml:\"Field\" Overrides the field's name to map to.\n//\n// See Marshal() documentation for types mapping table.\nfunc Unmarshal(data []byte, v interface{}) error {\n\tt, err := LoadReader(bytes.NewReader(data))\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn t.Unmarshal(v)\n}\n\n// Decoder reads and decodes TOML values from an input stream.\ntype Decoder struct {\n\tr    io.Reader\n\ttval *Tree\n\tencOpts\n}\n\n// NewDecoder returns a new decoder that reads from r.\nfunc NewDecoder(r io.Reader) *Decoder {\n\treturn &Decoder{\n\t\tr:       r,\n\t\tencOpts: encOptsDefaults,\n\t}\n}\n\n// Decode reads a TOML-encoded value from it's input\n// and unmarshals it in the value pointed at by v.\n//\n// See the documentation for Marshal for details.\nfunc (d *Decoder) Decode(v interface{}) error {\n\tvar err error\n\td.tval, err = LoadReader(d.r)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn d.unmarshal(v)\n}\n\nfunc (d *Decoder) unmarshal(v interface{}) error {\n\tmtype := reflect.TypeOf(v)\n\tif mtype.Kind() != reflect.Ptr || mtype.Elem().Kind() != reflect.Struct {\n\t\treturn errors.New(\"Only a pointer to struct can be unmarshaled from TOML\")\n\t}\n\n\tsval, err := d.valueFromTree(mtype.Elem(), d.tval)\n\tif err != nil {\n\t\treturn err\n\t}\n\treflect.ValueOf(v).Elem().Set(sval)\n\treturn nil\n}\n\n// Convert toml tree to marshal struct or map, using marshal type\nfunc (d *Decoder) valueFromTree(mtype reflect.Type, tval *Tree) (reflect.Value, error) {\n\tif mtype.Kind() == reflect.Ptr {\n\t\treturn d.unwrapPointer(mtype, tval)\n\t}\n\tvar mval reflect.Value\n\tswitch mtype.Kind() {\n\tcase reflect.Struct:\n\t\tmval = reflect.New(mtype).Elem()\n\t\tfor i := 0; i < mtype.NumField(); i++ {\n\t\t\tmtypef := mtype.Field(i)\n\t\t\topts := tomlOptions(mtypef)\n\t\t\tif opts.include {\n\t\t\t\tbaseKey := opts.name\n\t\t\t\tkeysToTry := []string{baseKey, strings.ToLower(baseKey), strings.ToTitle(baseKey)}\n\t\t\t\tfor _, key := range keysToTry {\n\t\t\t\t\texists := tval.Has(key)\n\t\t\t\t\tif !exists {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tval := tval.Get(key)\n\t\t\t\t\tmvalf, err := d.valueFromToml(mtypef.Type, val)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn mval, formatError(err, tval.GetPosition(key))\n\t\t\t\t\t}\n\t\t\t\t\tmval.Field(i).Set(mvalf)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase reflect.Map:\n\t\tmval = reflect.MakeMap(mtype)\n\t\tfor _, key := range tval.Keys() {\n\t\t\t// TODO: path splits key\n\t\t\tval := tval.GetPath([]string{key})\n\t\t\tmvalf, err := d.valueFromToml(mtype.Elem(), val)\n\t\t\tif err != nil {\n\t\t\t\treturn mval, formatError(err, tval.GetPosition(key))\n\t\t\t}\n\t\t\tmval.SetMapIndex(reflect.ValueOf(key), mvalf)\n\t\t}\n\t}\n\treturn mval, nil\n}\n\n// Convert toml value to marshal struct/map slice, using marshal type\nfunc (d *Decoder) valueFromTreeSlice(mtype reflect.Type, tval []*Tree) (reflect.Value, error) {\n\tmval := reflect.MakeSlice(mtype, len(tval), len(tval))\n\tfor i := 0; i < len(tval); i++ {\n\t\tval, err := d.valueFromTree(mtype.Elem(), tval[i])\n\t\tif err != nil {\n\t\t\treturn mval, err\n\t\t}\n\t\tmval.Index(i).Set(val)\n\t}\n\treturn mval, nil\n}\n\n// Convert toml value to marshal primitive slice, using marshal type\nfunc (d *Decoder) valueFromOtherSlice(mtype reflect.Type, tval []interface{}) (reflect.Value, error) {\n\tmval := reflect.MakeSlice(mtype, len(tval), len(tval))\n\tfor i := 0; i < len(tval); i++ {\n\t\tval, err := d.valueFromToml(mtype.Elem(), tval[i])\n\t\tif err != nil {\n\t\t\treturn mval, err\n\t\t}\n\t\tmval.Index(i).Set(val)\n\t}\n\treturn mval, nil\n}\n\n// Convert toml value to marshal value, using marshal type\nfunc (d *Decoder) valueFromToml(mtype reflect.Type, tval interface{}) (reflect.Value, error) {\n\tif mtype.Kind() == reflect.Ptr {\n\t\treturn d.unwrapPointer(mtype, tval)\n\t}\n\n\tswitch tval.(type) {\n\tcase *Tree:\n\t\tif isTree(mtype) {\n\t\t\treturn d.valueFromTree(mtype, tval.(*Tree))\n\t\t}\n\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"Can't convert %v(%T) to a tree\", tval, tval)\n\tcase []*Tree:\n\t\tif isTreeSlice(mtype) {\n\t\t\treturn d.valueFromTreeSlice(mtype, tval.([]*Tree))\n\t\t}\n\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"Can't convert %v(%T) to trees\", tval, tval)\n\tcase []interface{}:\n\t\tif isOtherSlice(mtype) {\n\t\t\treturn d.valueFromOtherSlice(mtype, tval.([]interface{}))\n\t\t}\n\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"Can't convert %v(%T) to a slice\", tval, tval)\n\tdefault:\n\t\tswitch mtype.Kind() {\n\t\tcase reflect.Bool, reflect.Struct:\n\t\t\tval := reflect.ValueOf(tval)\n\t\t\t// if this passes for when mtype is reflect.Struct, tval is a time.Time\n\t\t\tif !val.Type().ConvertibleTo(mtype) {\n\t\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"Can't convert %v(%T) to %v\", tval, tval, mtype.String())\n\t\t\t}\n\n\t\t\treturn val.Convert(mtype), nil\n\t\tcase reflect.String:\n\t\t\tval := reflect.ValueOf(tval)\n\t\t\t// stupidly, int64 is convertible to string. So special case this.\n\t\t\tif !val.Type().ConvertibleTo(mtype) || val.Kind() == reflect.Int64 {\n\t\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"Can't convert %v(%T) to %v\", tval, tval, mtype.String())\n\t\t\t}\n\n\t\t\treturn val.Convert(mtype), nil\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tval := reflect.ValueOf(tval)\n\t\t\tif !val.Type().ConvertibleTo(mtype) {\n\t\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"Can't convert %v(%T) to %v\", tval, tval, mtype.String())\n\t\t\t}\n\t\t\tif reflect.Indirect(reflect.New(mtype)).OverflowInt(val.Int()) {\n\t\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"%v(%T) would overflow %v\", tval, tval, mtype.String())\n\t\t\t}\n\n\t\t\treturn val.Convert(mtype), nil\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tval := reflect.ValueOf(tval)\n\t\t\tif !val.Type().ConvertibleTo(mtype) {\n\t\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"Can't convert %v(%T) to %v\", tval, tval, mtype.String())\n\t\t\t}\n\t\t\tif val.Int() < 0 {\n\t\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"%v(%T) is negative so does not fit in %v\", tval, tval, mtype.String())\n\t\t\t}\n\t\t\tif reflect.Indirect(reflect.New(mtype)).OverflowUint(uint64(val.Int())) {\n\t\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"%v(%T) would overflow %v\", tval, tval, mtype.String())\n\t\t\t}\n\n\t\t\treturn val.Convert(mtype), nil\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tval := reflect.ValueOf(tval)\n\t\t\tif !val.Type().ConvertibleTo(mtype) {\n\t\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"Can't convert %v(%T) to %v\", tval, tval, mtype.String())\n\t\t\t}\n\t\t\tif reflect.Indirect(reflect.New(mtype)).OverflowFloat(val.Float()) {\n\t\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"%v(%T) would overflow %v\", tval, tval, mtype.String())\n\t\t\t}\n\n\t\t\treturn val.Convert(mtype), nil\n\t\tdefault:\n\t\t\treturn reflect.ValueOf(nil), fmt.Errorf(\"Can't convert %v(%T) to %v(%v)\", tval, tval, mtype, mtype.Kind())\n\t\t}\n\t}\n}\n\nfunc (d *Decoder) unwrapPointer(mtype reflect.Type, tval interface{}) (reflect.Value, error) {\n\tval, err := d.valueFromToml(mtype.Elem(), tval)\n\tif err != nil {\n\t\treturn reflect.ValueOf(nil), err\n\t}\n\tmval := reflect.New(mtype.Elem())\n\tmval.Elem().Set(val)\n\treturn mval, nil\n}\n\nfunc tomlOptions(vf reflect.StructField) tomlOpts {\n\ttag := vf.Tag.Get(\"toml\")\n\tparse := strings.Split(tag, \",\")\n\tvar comment string\n\tif c := vf.Tag.Get(\"comment\"); c != \"\" {\n\t\tcomment = c\n\t}\n\tcommented, _ := strconv.ParseBool(vf.Tag.Get(\"commented\"))\n\tmultiline, _ := strconv.ParseBool(vf.Tag.Get(tagKeyMultiline))\n\tresult := tomlOpts{name: vf.Name, comment: comment, commented: commented, multiline: multiline, include: true, omitempty: false}\n\tif parse[0] != \"\" {\n\t\tif parse[0] == \"-\" && len(parse) == 1 {\n\t\t\tresult.include = false\n\t\t} else {\n\t\t\tresult.name = strings.Trim(parse[0], \" \")\n\t\t}\n\t}\n\tif vf.PkgPath != \"\" {\n\t\tresult.include = false\n\t}\n\tif len(parse) > 1 && strings.Trim(parse[1], \" \") == \"omitempty\" {\n\t\tresult.omitempty = true\n\t}\n\tif vf.Type.Kind() == reflect.Ptr {\n\t\tresult.omitempty = true\n\t}\n\treturn result\n}\n\nfunc isZero(val reflect.Value) bool {\n\tswitch val.Type().Kind() {\n\tcase reflect.Map:\n\t\tfallthrough\n\tcase reflect.Array:\n\t\tfallthrough\n\tcase reflect.Slice:\n\t\treturn val.Len() == 0\n\tdefault:\n\t\treturn reflect.DeepEqual(val.Interface(), reflect.Zero(val.Type()).Interface())\n\t}\n}\n\nfunc formatError(err error, pos Position) error {\n\tif err.Error()[0] == '(' { // Error already contains position information\n\t\treturn err\n\t}\n\treturn fmt.Errorf(\"%s: %s\", pos, err)\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/marshal_test.toml",
    "content": "title = \"TOML Marshal Testing\"\n\n[basic]\n  bool = true\n  date = 1979-05-27T07:32:00Z\n  float = 123.4\n  int = 5000\n  string = \"Bite me\"\n  uint = 5001\n\n[basic_lists]\n  bools = [true,false,true]\n  dates = [1979-05-27T07:32:00Z,1980-05-27T07:32:00Z]\n  floats = [12.3,45.6,78.9]\n  ints = [8001,8001,8002]\n  strings = [\"One\",\"Two\",\"Three\"]\n  uints = [5002,5003]\n\n[basic_map]\n  one = \"one\"\n  two = \"two\"\n\n[subdoc]\n\n  [subdoc.first]\n    name = \"First\"\n\n  [subdoc.second]\n    name = \"Second\"\n\n[[subdoclist]]\n  name = \"List.First\"\n\n[[subdoclist]]\n  name = \"List.Second\"\n\n[[subdocptrs]]\n  name = \"Second\"\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/parser.go",
    "content": "// TOML Parser.\n\npackage toml\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"math\"\n\t\"reflect\"\n\t\"regexp\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n)\n\ntype tomlParser struct {\n\tflowIdx       int\n\tflow          []token\n\ttree          *Tree\n\tcurrentTable  []string\n\tseenTableKeys []string\n}\n\ntype tomlParserStateFn func() tomlParserStateFn\n\n// Formats and panics an error message based on a token\nfunc (p *tomlParser) raiseError(tok *token, msg string, args ...interface{}) {\n\tpanic(tok.Position.String() + \": \" + fmt.Sprintf(msg, args...))\n}\n\nfunc (p *tomlParser) run() {\n\tfor state := p.parseStart; state != nil; {\n\t\tstate = state()\n\t}\n}\n\nfunc (p *tomlParser) peek() *token {\n\tif p.flowIdx >= len(p.flow) {\n\t\treturn nil\n\t}\n\treturn &p.flow[p.flowIdx]\n}\n\nfunc (p *tomlParser) assume(typ tokenType) {\n\ttok := p.getToken()\n\tif tok == nil {\n\t\tp.raiseError(tok, \"was expecting token %s, but token stream is empty\", tok)\n\t}\n\tif tok.typ != typ {\n\t\tp.raiseError(tok, \"was expecting token %s, but got %s instead\", typ, tok)\n\t}\n}\n\nfunc (p *tomlParser) getToken() *token {\n\ttok := p.peek()\n\tif tok == nil {\n\t\treturn nil\n\t}\n\tp.flowIdx++\n\treturn tok\n}\n\nfunc (p *tomlParser) parseStart() tomlParserStateFn {\n\ttok := p.peek()\n\n\t// end of stream, parsing is finished\n\tif tok == nil {\n\t\treturn nil\n\t}\n\n\tswitch tok.typ {\n\tcase tokenDoubleLeftBracket:\n\t\treturn p.parseGroupArray\n\tcase tokenLeftBracket:\n\t\treturn p.parseGroup\n\tcase tokenKey:\n\t\treturn p.parseAssign\n\tcase tokenEOF:\n\t\treturn nil\n\tdefault:\n\t\tp.raiseError(tok, \"unexpected token\")\n\t}\n\treturn nil\n}\n\nfunc (p *tomlParser) parseGroupArray() tomlParserStateFn {\n\tstartToken := p.getToken() // discard the [[\n\tkey := p.getToken()\n\tif key.typ != tokenKeyGroupArray {\n\t\tp.raiseError(key, \"unexpected token %s, was expecting a table array key\", key)\n\t}\n\n\t// get or create table array element at the indicated part in the path\n\tkeys, err := parseKey(key.val)\n\tif err != nil {\n\t\tp.raiseError(key, \"invalid table array key: %s\", err)\n\t}\n\tp.tree.createSubTree(keys[:len(keys)-1], startToken.Position) // create parent entries\n\tdestTree := p.tree.GetPath(keys)\n\tvar array []*Tree\n\tif destTree == nil {\n\t\tarray = make([]*Tree, 0)\n\t} else if target, ok := destTree.([]*Tree); ok && target != nil {\n\t\tarray = destTree.([]*Tree)\n\t} else {\n\t\tp.raiseError(key, \"key %s is already assigned and not of type table array\", key)\n\t}\n\tp.currentTable = keys\n\n\t// add a new tree to the end of the table array\n\tnewTree := newTree()\n\tnewTree.position = startToken.Position\n\tarray = append(array, newTree)\n\tp.tree.SetPath(p.currentTable, array)\n\n\t// remove all keys that were children of this table array\n\tprefix := key.val + \".\"\n\tfound := false\n\tfor ii := 0; ii < len(p.seenTableKeys); {\n\t\ttableKey := p.seenTableKeys[ii]\n\t\tif strings.HasPrefix(tableKey, prefix) {\n\t\t\tp.seenTableKeys = append(p.seenTableKeys[:ii], p.seenTableKeys[ii+1:]...)\n\t\t} else {\n\t\t\tfound = (tableKey == key.val)\n\t\t\tii++\n\t\t}\n\t}\n\n\t// keep this key name from use by other kinds of assignments\n\tif !found {\n\t\tp.seenTableKeys = append(p.seenTableKeys, key.val)\n\t}\n\n\t// move to next parser state\n\tp.assume(tokenDoubleRightBracket)\n\treturn p.parseStart\n}\n\nfunc (p *tomlParser) parseGroup() tomlParserStateFn {\n\tstartToken := p.getToken() // discard the [\n\tkey := p.getToken()\n\tif key.typ != tokenKeyGroup {\n\t\tp.raiseError(key, \"unexpected token %s, was expecting a table key\", key)\n\t}\n\tfor _, item := range p.seenTableKeys {\n\t\tif item == key.val {\n\t\t\tp.raiseError(key, \"duplicated tables\")\n\t\t}\n\t}\n\n\tp.seenTableKeys = append(p.seenTableKeys, key.val)\n\tkeys, err := parseKey(key.val)\n\tif err != nil {\n\t\tp.raiseError(key, \"invalid table array key: %s\", err)\n\t}\n\tif err := p.tree.createSubTree(keys, startToken.Position); err != nil {\n\t\tp.raiseError(key, \"%s\", err)\n\t}\n\tp.assume(tokenRightBracket)\n\tp.currentTable = keys\n\treturn p.parseStart\n}\n\nfunc (p *tomlParser) parseAssign() tomlParserStateFn {\n\tkey := p.getToken()\n\tp.assume(tokenEqual)\n\n\tvalue := p.parseRvalue()\n\tvar tableKey []string\n\tif len(p.currentTable) > 0 {\n\t\ttableKey = p.currentTable\n\t} else {\n\t\ttableKey = []string{}\n\t}\n\n\t// find the table to assign, looking out for arrays of tables\n\tvar targetNode *Tree\n\tswitch node := p.tree.GetPath(tableKey).(type) {\n\tcase []*Tree:\n\t\ttargetNode = node[len(node)-1]\n\tcase *Tree:\n\t\ttargetNode = node\n\tdefault:\n\t\tp.raiseError(key, \"Unknown table type for path: %s\",\n\t\t\tstrings.Join(tableKey, \".\"))\n\t}\n\n\t// assign value to the found table\n\tkeyVals := []string{key.val}\n\tif len(keyVals) != 1 {\n\t\tp.raiseError(key, \"Invalid key\")\n\t}\n\tkeyVal := keyVals[0]\n\tlocalKey := []string{keyVal}\n\tfinalKey := append(tableKey, keyVal)\n\tif targetNode.GetPath(localKey) != nil {\n\t\tp.raiseError(key, \"The following key was defined twice: %s\",\n\t\t\tstrings.Join(finalKey, \".\"))\n\t}\n\tvar toInsert interface{}\n\n\tswitch value.(type) {\n\tcase *Tree, []*Tree:\n\t\ttoInsert = value\n\tdefault:\n\t\ttoInsert = &tomlValue{value: value, position: key.Position}\n\t}\n\ttargetNode.values[keyVal] = toInsert\n\treturn p.parseStart\n}\n\nvar numberUnderscoreInvalidRegexp *regexp.Regexp\nvar hexNumberUnderscoreInvalidRegexp *regexp.Regexp\n\nfunc numberContainsInvalidUnderscore(value string) error {\n\tif numberUnderscoreInvalidRegexp.MatchString(value) {\n\t\treturn errors.New(\"invalid use of _ in number\")\n\t}\n\treturn nil\n}\n\nfunc hexNumberContainsInvalidUnderscore(value string) error {\n\tif hexNumberUnderscoreInvalidRegexp.MatchString(value) {\n\t\treturn errors.New(\"invalid use of _ in hex number\")\n\t}\n\treturn nil\n}\n\nfunc cleanupNumberToken(value string) string {\n\tcleanedVal := strings.Replace(value, \"_\", \"\", -1)\n\treturn cleanedVal\n}\n\nfunc (p *tomlParser) parseRvalue() interface{} {\n\ttok := p.getToken()\n\tif tok == nil || tok.typ == tokenEOF {\n\t\tp.raiseError(tok, \"expecting a value\")\n\t}\n\n\tswitch tok.typ {\n\tcase tokenString:\n\t\treturn tok.val\n\tcase tokenTrue:\n\t\treturn true\n\tcase tokenFalse:\n\t\treturn false\n\tcase tokenInf:\n\t\tif tok.val[0] == '-' {\n\t\t\treturn math.Inf(-1)\n\t\t}\n\t\treturn math.Inf(1)\n\tcase tokenNan:\n\t\treturn math.NaN()\n\tcase tokenInteger:\n\t\tcleanedVal := cleanupNumberToken(tok.val)\n\t\tvar err error\n\t\tvar val int64\n\t\tif len(cleanedVal) >= 3 && cleanedVal[0] == '0' {\n\t\t\tswitch cleanedVal[1] {\n\t\t\tcase 'x':\n\t\t\t\terr = hexNumberContainsInvalidUnderscore(tok.val)\n\t\t\t\tif err != nil {\n\t\t\t\t\tp.raiseError(tok, \"%s\", err)\n\t\t\t\t}\n\t\t\t\tval, err = strconv.ParseInt(cleanedVal[2:], 16, 64)\n\t\t\tcase 'o':\n\t\t\t\terr = numberContainsInvalidUnderscore(tok.val)\n\t\t\t\tif err != nil {\n\t\t\t\t\tp.raiseError(tok, \"%s\", err)\n\t\t\t\t}\n\t\t\t\tval, err = strconv.ParseInt(cleanedVal[2:], 8, 64)\n\t\t\tcase 'b':\n\t\t\t\terr = numberContainsInvalidUnderscore(tok.val)\n\t\t\t\tif err != nil {\n\t\t\t\t\tp.raiseError(tok, \"%s\", err)\n\t\t\t\t}\n\t\t\t\tval, err = strconv.ParseInt(cleanedVal[2:], 2, 64)\n\t\t\tdefault:\n\t\t\t\tpanic(\"invalid base\") // the lexer should catch this first\n\t\t\t}\n\t\t} else {\n\t\t\terr = numberContainsInvalidUnderscore(tok.val)\n\t\t\tif err != nil {\n\t\t\t\tp.raiseError(tok, \"%s\", err)\n\t\t\t}\n\t\t\tval, err = strconv.ParseInt(cleanedVal, 10, 64)\n\t\t}\n\t\tif err != nil {\n\t\t\tp.raiseError(tok, \"%s\", err)\n\t\t}\n\t\treturn val\n\tcase tokenFloat:\n\t\terr := numberContainsInvalidUnderscore(tok.val)\n\t\tif err != nil {\n\t\t\tp.raiseError(tok, \"%s\", err)\n\t\t}\n\t\tcleanedVal := cleanupNumberToken(tok.val)\n\t\tval, err := strconv.ParseFloat(cleanedVal, 64)\n\t\tif err != nil {\n\t\t\tp.raiseError(tok, \"%s\", err)\n\t\t}\n\t\treturn val\n\tcase tokenDate:\n\t\tval, err := time.ParseInLocation(time.RFC3339Nano, tok.val, time.UTC)\n\t\tif err != nil {\n\t\t\tp.raiseError(tok, \"%s\", err)\n\t\t}\n\t\treturn val\n\tcase tokenLeftBracket:\n\t\treturn p.parseArray()\n\tcase tokenLeftCurlyBrace:\n\t\treturn p.parseInlineTable()\n\tcase tokenEqual:\n\t\tp.raiseError(tok, \"cannot have multiple equals for the same key\")\n\tcase tokenError:\n\t\tp.raiseError(tok, \"%s\", tok)\n\t}\n\n\tp.raiseError(tok, \"never reached\")\n\n\treturn nil\n}\n\nfunc tokenIsComma(t *token) bool {\n\treturn t != nil && t.typ == tokenComma\n}\n\nfunc (p *tomlParser) parseInlineTable() *Tree {\n\ttree := newTree()\n\tvar previous *token\nLoop:\n\tfor {\n\t\tfollow := p.peek()\n\t\tif follow == nil || follow.typ == tokenEOF {\n\t\t\tp.raiseError(follow, \"unterminated inline table\")\n\t\t}\n\t\tswitch follow.typ {\n\t\tcase tokenRightCurlyBrace:\n\t\t\tp.getToken()\n\t\t\tbreak Loop\n\t\tcase tokenKey:\n\t\t\tif !tokenIsComma(previous) && previous != nil {\n\t\t\t\tp.raiseError(follow, \"comma expected between fields in inline table\")\n\t\t\t}\n\t\t\tkey := p.getToken()\n\t\t\tp.assume(tokenEqual)\n\t\t\tvalue := p.parseRvalue()\n\t\t\ttree.Set(key.val, value)\n\t\tcase tokenComma:\n\t\t\tif previous == nil {\n\t\t\t\tp.raiseError(follow, \"inline table cannot start with a comma\")\n\t\t\t}\n\t\t\tif tokenIsComma(previous) {\n\t\t\t\tp.raiseError(follow, \"need field between two commas in inline table\")\n\t\t\t}\n\t\t\tp.getToken()\n\t\tdefault:\n\t\t\tp.raiseError(follow, \"unexpected token type in inline table: %s\", follow.String())\n\t\t}\n\t\tprevious = follow\n\t}\n\tif tokenIsComma(previous) {\n\t\tp.raiseError(previous, \"trailing comma at the end of inline table\")\n\t}\n\treturn tree\n}\n\nfunc (p *tomlParser) parseArray() interface{} {\n\tvar array []interface{}\n\tarrayType := reflect.TypeOf(nil)\n\tfor {\n\t\tfollow := p.peek()\n\t\tif follow == nil || follow.typ == tokenEOF {\n\t\t\tp.raiseError(follow, \"unterminated array\")\n\t\t}\n\t\tif follow.typ == tokenRightBracket {\n\t\t\tp.getToken()\n\t\t\tbreak\n\t\t}\n\t\tval := p.parseRvalue()\n\t\tif arrayType == nil {\n\t\t\tarrayType = reflect.TypeOf(val)\n\t\t}\n\t\tif reflect.TypeOf(val) != arrayType {\n\t\t\tp.raiseError(follow, \"mixed types in array\")\n\t\t}\n\t\tarray = append(array, val)\n\t\tfollow = p.peek()\n\t\tif follow == nil || follow.typ == tokenEOF {\n\t\t\tp.raiseError(follow, \"unterminated array\")\n\t\t}\n\t\tif follow.typ != tokenRightBracket && follow.typ != tokenComma {\n\t\t\tp.raiseError(follow, \"missing comma\")\n\t\t}\n\t\tif follow.typ == tokenComma {\n\t\t\tp.getToken()\n\t\t}\n\t}\n\t// An array of Trees is actually an array of inline\n\t// tables, which is a shorthand for a table array. If the\n\t// array was not converted from []interface{} to []*Tree,\n\t// the two notations would not be equivalent.\n\tif arrayType == reflect.TypeOf(newTree()) {\n\t\ttomlArray := make([]*Tree, len(array))\n\t\tfor i, v := range array {\n\t\t\ttomlArray[i] = v.(*Tree)\n\t\t}\n\t\treturn tomlArray\n\t}\n\treturn array\n}\n\nfunc parseToml(flow []token) *Tree {\n\tresult := newTree()\n\tresult.position = Position{1, 1}\n\tparser := &tomlParser{\n\t\tflowIdx:       0,\n\t\tflow:          flow,\n\t\ttree:          result,\n\t\tcurrentTable:  make([]string, 0),\n\t\tseenTableKeys: make([]string, 0),\n\t}\n\tparser.run()\n\treturn result\n}\n\nfunc init() {\n\tnumberUnderscoreInvalidRegexp = regexp.MustCompile(`([^\\d]_|_[^\\d])|_$|^_`)\n\thexNumberUnderscoreInvalidRegexp = regexp.MustCompile(`(^0x_)|([^\\da-f]_|_[^\\da-f])|_$|^_`)\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/position.go",
    "content": "// Position support for go-toml\n\npackage toml\n\nimport (\n\t\"fmt\"\n)\n\n// Position of a document element within a TOML document.\n//\n// Line and Col are both 1-indexed positions for the element's line number and\n// column number, respectively.  Values of zero or less will cause Invalid(),\n// to return true.\ntype Position struct {\n\tLine int // line within the document\n\tCol  int // column within the line\n}\n\n// String representation of the position.\n// Displays 1-indexed line and column numbers.\nfunc (p Position) String() string {\n\treturn fmt.Sprintf(\"(%d, %d)\", p.Line, p.Col)\n}\n\n// Invalid returns whether or not the position is valid (i.e. with negative or\n// null values)\nfunc (p Position) Invalid() bool {\n\treturn p.Line <= 0 || p.Col <= 0\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/test.sh",
    "content": "#!/bin/bash\n# fail out of the script if anything here fails\nset -e\nset -o pipefail\n\n# set the path to the present working directory\nexport GOPATH=`pwd`\n\nfunction git_clone() {\n  path=$1\n  branch=$2\n  version=$3\n  if [ ! -d \"src/$path\" ]; then\n    mkdir -p src/$path\n    git clone https://$path.git src/$path\n  fi\n  pushd src/$path\n  git checkout \"$branch\"\n  git reset --hard \"$version\"\n  popd\n}\n\n# Remove potential previous runs\nrm -rf src test_program_bin toml-test\n\ngo get github.com/pelletier/go-buffruneio\ngo get github.com/davecgh/go-spew/spew\ngo get gopkg.in/yaml.v2\ngo get github.com/BurntSushi/toml\n\n# get code for BurntSushi TOML validation\n# pinning all to 'HEAD' for version 0.3.x work (TODO: pin to commit hash when tests stabilize)\ngit_clone github.com/BurntSushi/toml master HEAD\ngit_clone github.com/BurntSushi/toml-test master HEAD #was: 0.2.0 HEAD\n\n# build the BurntSushi test application\ngo build -o toml-test github.com/BurntSushi/toml-test\n\n# vendorize the current lib for testing\n# NOTE: this basically mocks an install without having to go back out to github for code\nmkdir -p src/github.com/pelletier/go-toml/cmd\nmkdir -p src/github.com/pelletier/go-toml/query\ncp *.go *.toml src/github.com/pelletier/go-toml\ncp -R cmd/* src/github.com/pelletier/go-toml/cmd\ncp -R query/* src/github.com/pelletier/go-toml/query\ngo build -o test_program_bin src/github.com/pelletier/go-toml/cmd/test_program.go\n\n# Run basic unit tests\ngo test github.com/pelletier/go-toml -covermode=count -coverprofile=coverage.out\ngo test github.com/pelletier/go-toml/cmd/tomljson\ngo test github.com/pelletier/go-toml/query\n\n# run the entire BurntSushi test suite\nif [[ $# -eq 0 ]] ; then\n  echo \"Running all BurntSushi tests\"\n  ./toml-test ./test_program_bin | tee test_out\nelse\n  # run a specific test\n  test=$1\n  test_path='src/github.com/BurntSushi/toml-test/tests'\n  valid_test=\"$test_path/valid/$test\"\n  invalid_test=\"$test_path/invalid/$test\"\n\n  if [ -e \"$valid_test.toml\" ]; then\n    echo \"Valid Test TOML for $test:\"\n    echo \"====\"\n    cat \"$valid_test.toml\"\n\n    echo \"Valid Test JSON for $test:\"\n    echo \"====\"\n    cat \"$valid_test.json\"\n\n    echo \"Go-TOML Output for $test:\"\n    echo \"====\"\n    cat \"$valid_test.toml\" | ./test_program_bin\n  fi\n\n  if [ -e \"$invalid_test.toml\" ]; then\n    echo \"Invalid Test TOML for $test:\"\n    echo \"====\"\n    cat \"$invalid_test.toml\"\n\n    echo \"Go-TOML Output for $test:\"\n    echo \"====\"\n    echo \"go-toml Output:\"\n    cat \"$invalid_test.toml\" | ./test_program_bin\n  fi\nfi\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/token.go",
    "content": "package toml\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"unicode\"\n)\n\n// Define tokens\ntype tokenType int\n\nconst (\n\teof = -(iota + 1)\n)\n\nconst (\n\ttokenError tokenType = iota\n\ttokenEOF\n\ttokenComment\n\ttokenKey\n\ttokenString\n\ttokenInteger\n\ttokenTrue\n\ttokenFalse\n\ttokenFloat\n\ttokenInf\n\ttokenNan\n\ttokenEqual\n\ttokenLeftBracket\n\ttokenRightBracket\n\ttokenLeftCurlyBrace\n\ttokenRightCurlyBrace\n\ttokenLeftParen\n\ttokenRightParen\n\ttokenDoubleLeftBracket\n\ttokenDoubleRightBracket\n\ttokenDate\n\ttokenKeyGroup\n\ttokenKeyGroupArray\n\ttokenComma\n\ttokenColon\n\ttokenDollar\n\ttokenStar\n\ttokenQuestion\n\ttokenDot\n\ttokenDotDot\n\ttokenEOL\n)\n\nvar tokenTypeNames = []string{\n\t\"Error\",\n\t\"EOF\",\n\t\"Comment\",\n\t\"Key\",\n\t\"String\",\n\t\"Integer\",\n\t\"True\",\n\t\"False\",\n\t\"Float\",\n\t\"Inf\",\n\t\"NaN\",\n\t\"=\",\n\t\"[\",\n\t\"]\",\n\t\"{\",\n\t\"}\",\n\t\"(\",\n\t\")\",\n\t\"]]\",\n\t\"[[\",\n\t\"Date\",\n\t\"KeyGroup\",\n\t\"KeyGroupArray\",\n\t\",\",\n\t\":\",\n\t\"$\",\n\t\"*\",\n\t\"?\",\n\t\".\",\n\t\"..\",\n\t\"EOL\",\n}\n\ntype token struct {\n\tPosition\n\ttyp tokenType\n\tval string\n}\n\nfunc (tt tokenType) String() string {\n\tidx := int(tt)\n\tif idx < len(tokenTypeNames) {\n\t\treturn tokenTypeNames[idx]\n\t}\n\treturn \"Unknown\"\n}\n\nfunc (t token) Int() int {\n\tif result, err := strconv.Atoi(t.val); err != nil {\n\t\tpanic(err)\n\t} else {\n\t\treturn result\n\t}\n}\n\nfunc (t token) String() string {\n\tswitch t.typ {\n\tcase tokenEOF:\n\t\treturn \"EOF\"\n\tcase tokenError:\n\t\treturn t.val\n\t}\n\n\treturn fmt.Sprintf(\"%q\", t.val)\n}\n\nfunc isSpace(r rune) bool {\n\treturn r == ' ' || r == '\\t'\n}\n\nfunc isAlphanumeric(r rune) bool {\n\treturn unicode.IsLetter(r) || r == '_'\n}\n\nfunc isKeyChar(r rune) bool {\n\t// Keys start with the first character that isn't whitespace or [ and end\n\t// with the last non-whitespace character before the equals sign. Keys\n\t// cannot contain a # character.\"\n\treturn !(r == '\\r' || r == '\\n' || r == eof || r == '=')\n}\n\nfunc isKeyStartChar(r rune) bool {\n\treturn !(isSpace(r) || r == '\\r' || r == '\\n' || r == eof || r == '[')\n}\n\nfunc isDigit(r rune) bool {\n\treturn unicode.IsNumber(r)\n}\n\nfunc isHexDigit(r rune) bool {\n\treturn isDigit(r) ||\n\t\t(r >= 'a' && r <= 'f') ||\n\t\t(r >= 'A' && r <= 'F')\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/toml.go",
    "content": "package toml\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"runtime\"\n\t\"strings\"\n)\n\ntype tomlValue struct {\n\tvalue     interface{} // string, int64, uint64, float64, bool, time.Time, [] of any of this list\n\tcomment   string\n\tcommented bool\n\tmultiline bool\n\tposition  Position\n}\n\n// Tree is the result of the parsing of a TOML file.\ntype Tree struct {\n\tvalues    map[string]interface{} // string -> *tomlValue, *Tree, []*Tree\n\tcomment   string\n\tcommented bool\n\tposition  Position\n}\n\nfunc newTree() *Tree {\n\treturn &Tree{\n\t\tvalues:   make(map[string]interface{}),\n\t\tposition: Position{},\n\t}\n}\n\n// TreeFromMap initializes a new Tree object using the given map.\nfunc TreeFromMap(m map[string]interface{}) (*Tree, error) {\n\tresult, err := toTree(m)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn result.(*Tree), nil\n}\n\n// Position returns the position of the tree.\nfunc (t *Tree) Position() Position {\n\treturn t.position\n}\n\n// Has returns a boolean indicating if the given key exists.\nfunc (t *Tree) Has(key string) bool {\n\tif key == \"\" {\n\t\treturn false\n\t}\n\treturn t.HasPath(strings.Split(key, \".\"))\n}\n\n// HasPath returns true if the given path of keys exists, false otherwise.\nfunc (t *Tree) HasPath(keys []string) bool {\n\treturn t.GetPath(keys) != nil\n}\n\n// Keys returns the keys of the toplevel tree (does not recurse).\nfunc (t *Tree) Keys() []string {\n\tkeys := make([]string, len(t.values))\n\ti := 0\n\tfor k := range t.values {\n\t\tkeys[i] = k\n\t\ti++\n\t}\n\treturn keys\n}\n\n// Get the value at key in the Tree.\n// Key is a dot-separated path (e.g. a.b.c) without single/double quoted strings.\n// If you need to retrieve non-bare keys, use GetPath.\n// Returns nil if the path does not exist in the tree.\n// If keys is of length zero, the current tree is returned.\nfunc (t *Tree) Get(key string) interface{} {\n\tif key == \"\" {\n\t\treturn t\n\t}\n\treturn t.GetPath(strings.Split(key, \".\"))\n}\n\n// GetPath returns the element in the tree indicated by 'keys'.\n// If keys is of length zero, the current tree is returned.\nfunc (t *Tree) GetPath(keys []string) interface{} {\n\tif len(keys) == 0 {\n\t\treturn t\n\t}\n\tsubtree := t\n\tfor _, intermediateKey := range keys[:len(keys)-1] {\n\t\tvalue, exists := subtree.values[intermediateKey]\n\t\tif !exists {\n\t\t\treturn nil\n\t\t}\n\t\tswitch node := value.(type) {\n\t\tcase *Tree:\n\t\t\tsubtree = node\n\t\tcase []*Tree:\n\t\t\t// go to most recent element\n\t\t\tif len(node) == 0 {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tsubtree = node[len(node)-1]\n\t\tdefault:\n\t\t\treturn nil // cannot navigate through other node types\n\t\t}\n\t}\n\t// branch based on final node type\n\tswitch node := subtree.values[keys[len(keys)-1]].(type) {\n\tcase *tomlValue:\n\t\treturn node.value\n\tdefault:\n\t\treturn node\n\t}\n}\n\n// GetPosition returns the position of the given key.\nfunc (t *Tree) GetPosition(key string) Position {\n\tif key == \"\" {\n\t\treturn t.position\n\t}\n\treturn t.GetPositionPath(strings.Split(key, \".\"))\n}\n\n// GetPositionPath returns the element in the tree indicated by 'keys'.\n// If keys is of length zero, the current tree is returned.\nfunc (t *Tree) GetPositionPath(keys []string) Position {\n\tif len(keys) == 0 {\n\t\treturn t.position\n\t}\n\tsubtree := t\n\tfor _, intermediateKey := range keys[:len(keys)-1] {\n\t\tvalue, exists := subtree.values[intermediateKey]\n\t\tif !exists {\n\t\t\treturn Position{0, 0}\n\t\t}\n\t\tswitch node := value.(type) {\n\t\tcase *Tree:\n\t\t\tsubtree = node\n\t\tcase []*Tree:\n\t\t\t// go to most recent element\n\t\t\tif len(node) == 0 {\n\t\t\t\treturn Position{0, 0}\n\t\t\t}\n\t\t\tsubtree = node[len(node)-1]\n\t\tdefault:\n\t\t\treturn Position{0, 0}\n\t\t}\n\t}\n\t// branch based on final node type\n\tswitch node := subtree.values[keys[len(keys)-1]].(type) {\n\tcase *tomlValue:\n\t\treturn node.position\n\tcase *Tree:\n\t\treturn node.position\n\tcase []*Tree:\n\t\t// go to most recent element\n\t\tif len(node) == 0 {\n\t\t\treturn Position{0, 0}\n\t\t}\n\t\treturn node[len(node)-1].position\n\tdefault:\n\t\treturn Position{0, 0}\n\t}\n}\n\n// GetDefault works like Get but with a default value\nfunc (t *Tree) GetDefault(key string, def interface{}) interface{} {\n\tval := t.Get(key)\n\tif val == nil {\n\t\treturn def\n\t}\n\treturn val\n}\n\n// SetOptions arguments are supplied to the SetWithOptions and SetPathWithOptions functions to modify marshalling behaviour.\n// The default values within the struct are valid default options.\ntype SetOptions struct {\n\tComment   string\n\tCommented bool\n\tMultiline bool\n}\n\n// SetWithOptions is the same as Set, but allows you to provide formatting\n// instructions to the key, that will be used by Marshal().\nfunc (t *Tree) SetWithOptions(key string, opts SetOptions, value interface{}) {\n\tt.SetPathWithOptions(strings.Split(key, \".\"), opts, value)\n}\n\n// SetPathWithOptions is the same as SetPath, but allows you to provide\n// formatting instructions to the key, that will be reused by Marshal().\nfunc (t *Tree) SetPathWithOptions(keys []string, opts SetOptions, value interface{}) {\n\tsubtree := t\n\tfor _, intermediateKey := range keys[:len(keys)-1] {\n\t\tnextTree, exists := subtree.values[intermediateKey]\n\t\tif !exists {\n\t\t\tnextTree = newTree()\n\t\t\tsubtree.values[intermediateKey] = nextTree // add new element here\n\t\t}\n\t\tswitch node := nextTree.(type) {\n\t\tcase *Tree:\n\t\t\tsubtree = node\n\t\tcase []*Tree:\n\t\t\t// go to most recent element\n\t\t\tif len(node) == 0 {\n\t\t\t\t// create element if it does not exist\n\t\t\t\tsubtree.values[intermediateKey] = append(node, newTree())\n\t\t\t}\n\t\t\tsubtree = node[len(node)-1]\n\t\t}\n\t}\n\n\tvar toInsert interface{}\n\n\tswitch value.(type) {\n\tcase *Tree:\n\t\ttt := value.(*Tree)\n\t\ttt.comment = opts.Comment\n\t\ttoInsert = value\n\tcase []*Tree:\n\t\ttoInsert = value\n\tcase *tomlValue:\n\t\ttt := value.(*tomlValue)\n\t\ttt.comment = opts.Comment\n\t\ttoInsert = tt\n\tdefault:\n\t\ttoInsert = &tomlValue{value: value, comment: opts.Comment, commented: opts.Commented, multiline: opts.Multiline}\n\t}\n\n\tsubtree.values[keys[len(keys)-1]] = toInsert\n}\n\n// Set an element in the tree.\n// Key is a dot-separated path (e.g. a.b.c).\n// Creates all necessary intermediate trees, if needed.\nfunc (t *Tree) Set(key string, value interface{}) {\n\tt.SetWithComment(key, \"\", false, value)\n}\n\n// SetWithComment is the same as Set, but allows you to provide comment\n// information to the key, that will be reused by Marshal().\nfunc (t *Tree) SetWithComment(key string, comment string, commented bool, value interface{}) {\n\tt.SetPathWithComment(strings.Split(key, \".\"), comment, commented, value)\n}\n\n// SetPath sets an element in the tree.\n// Keys is an array of path elements (e.g. {\"a\",\"b\",\"c\"}).\n// Creates all necessary intermediate trees, if needed.\nfunc (t *Tree) SetPath(keys []string, value interface{}) {\n\tt.SetPathWithComment(keys, \"\", false, value)\n}\n\n// SetPathWithComment is the same as SetPath, but allows you to provide comment\n// information to the key, that will be reused by Marshal().\nfunc (t *Tree) SetPathWithComment(keys []string, comment string, commented bool, value interface{}) {\n\tsubtree := t\n\tfor _, intermediateKey := range keys[:len(keys)-1] {\n\t\tnextTree, exists := subtree.values[intermediateKey]\n\t\tif !exists {\n\t\t\tnextTree = newTree()\n\t\t\tsubtree.values[intermediateKey] = nextTree // add new element here\n\t\t}\n\t\tswitch node := nextTree.(type) {\n\t\tcase *Tree:\n\t\t\tsubtree = node\n\t\tcase []*Tree:\n\t\t\t// go to most recent element\n\t\t\tif len(node) == 0 {\n\t\t\t\t// create element if it does not exist\n\t\t\t\tsubtree.values[intermediateKey] = append(node, newTree())\n\t\t\t}\n\t\t\tsubtree = node[len(node)-1]\n\t\t}\n\t}\n\n\tvar toInsert interface{}\n\n\tswitch value.(type) {\n\tcase *Tree:\n\t\ttt := value.(*Tree)\n\t\ttt.comment = comment\n\t\ttoInsert = value\n\tcase []*Tree:\n\t\ttoInsert = value\n\tcase *tomlValue:\n\t\ttt := value.(*tomlValue)\n\t\ttt.comment = comment\n\t\ttoInsert = tt\n\tdefault:\n\t\ttoInsert = &tomlValue{value: value, comment: comment, commented: commented}\n\t}\n\n\tsubtree.values[keys[len(keys)-1]] = toInsert\n}\n\n// createSubTree takes a tree and a key and create the necessary intermediate\n// subtrees to create a subtree at that point. In-place.\n//\n// e.g. passing a.b.c will create (assuming tree is empty) tree[a], tree[a][b]\n// and tree[a][b][c]\n//\n// Returns nil on success, error object on failure\nfunc (t *Tree) createSubTree(keys []string, pos Position) error {\n\tsubtree := t\n\tfor _, intermediateKey := range keys {\n\t\tnextTree, exists := subtree.values[intermediateKey]\n\t\tif !exists {\n\t\t\ttree := newTree()\n\t\t\ttree.position = pos\n\t\t\tsubtree.values[intermediateKey] = tree\n\t\t\tnextTree = tree\n\t\t}\n\n\t\tswitch node := nextTree.(type) {\n\t\tcase []*Tree:\n\t\t\tsubtree = node[len(node)-1]\n\t\tcase *Tree:\n\t\t\tsubtree = node\n\t\tdefault:\n\t\t\treturn fmt.Errorf(\"unknown type for path %s (%s): %T (%#v)\",\n\t\t\t\tstrings.Join(keys, \".\"), intermediateKey, nextTree, nextTree)\n\t\t}\n\t}\n\treturn nil\n}\n\n// LoadBytes creates a Tree from a []byte.\nfunc LoadBytes(b []byte) (tree *Tree, err error) {\n\tdefer func() {\n\t\tif r := recover(); r != nil {\n\t\t\tif _, ok := r.(runtime.Error); ok {\n\t\t\t\tpanic(r)\n\t\t\t}\n\t\t\terr = errors.New(r.(string))\n\t\t}\n\t}()\n\ttree = parseToml(lexToml(b))\n\treturn\n}\n\n// LoadReader creates a Tree from any io.Reader.\nfunc LoadReader(reader io.Reader) (tree *Tree, err error) {\n\tinputBytes, err := ioutil.ReadAll(reader)\n\tif err != nil {\n\t\treturn\n\t}\n\ttree, err = LoadBytes(inputBytes)\n\treturn\n}\n\n// Load creates a Tree from a string.\nfunc Load(content string) (tree *Tree, err error) {\n\treturn LoadBytes([]byte(content))\n}\n\n// LoadFile creates a Tree from a file.\nfunc LoadFile(path string) (tree *Tree, err error) {\n\tfile, err := os.Open(path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer file.Close()\n\treturn LoadReader(file)\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/tomltree_create.go",
    "content": "package toml\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n\t\"time\"\n)\n\nvar kindToType = [reflect.String + 1]reflect.Type{\n\treflect.Bool:    reflect.TypeOf(true),\n\treflect.String:  reflect.TypeOf(\"\"),\n\treflect.Float32: reflect.TypeOf(float64(1)),\n\treflect.Float64: reflect.TypeOf(float64(1)),\n\treflect.Int:     reflect.TypeOf(int64(1)),\n\treflect.Int8:    reflect.TypeOf(int64(1)),\n\treflect.Int16:   reflect.TypeOf(int64(1)),\n\treflect.Int32:   reflect.TypeOf(int64(1)),\n\treflect.Int64:   reflect.TypeOf(int64(1)),\n\treflect.Uint:    reflect.TypeOf(uint64(1)),\n\treflect.Uint8:   reflect.TypeOf(uint64(1)),\n\treflect.Uint16:  reflect.TypeOf(uint64(1)),\n\treflect.Uint32:  reflect.TypeOf(uint64(1)),\n\treflect.Uint64:  reflect.TypeOf(uint64(1)),\n}\n\n// typeFor returns a reflect.Type for a reflect.Kind, or nil if none is found.\n// supported values:\n// string, bool, int64, uint64, float64, time.Time, int, int8, int16, int32, uint, uint8, uint16, uint32, float32\nfunc typeFor(k reflect.Kind) reflect.Type {\n\tif k > 0 && int(k) < len(kindToType) {\n\t\treturn kindToType[k]\n\t}\n\treturn nil\n}\n\nfunc simpleValueCoercion(object interface{}) (interface{}, error) {\n\tswitch original := object.(type) {\n\tcase string, bool, int64, uint64, float64, time.Time:\n\t\treturn original, nil\n\tcase int:\n\t\treturn int64(original), nil\n\tcase int8:\n\t\treturn int64(original), nil\n\tcase int16:\n\t\treturn int64(original), nil\n\tcase int32:\n\t\treturn int64(original), nil\n\tcase uint:\n\t\treturn uint64(original), nil\n\tcase uint8:\n\t\treturn uint64(original), nil\n\tcase uint16:\n\t\treturn uint64(original), nil\n\tcase uint32:\n\t\treturn uint64(original), nil\n\tcase float32:\n\t\treturn float64(original), nil\n\tcase fmt.Stringer:\n\t\treturn original.String(), nil\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"cannot convert type %T to Tree\", object)\n\t}\n}\n\nfunc sliceToTree(object interface{}) (interface{}, error) {\n\t// arrays are a bit tricky, since they can represent either a\n\t// collection of simple values, which is represented by one\n\t// *tomlValue, or an array of tables, which is represented by an\n\t// array of *Tree.\n\n\t// holding the assumption that this function is called from toTree only when value.Kind() is Array or Slice\n\tvalue := reflect.ValueOf(object)\n\tinsideType := value.Type().Elem()\n\tlength := value.Len()\n\tif length > 0 {\n\t\tinsideType = reflect.ValueOf(value.Index(0).Interface()).Type()\n\t}\n\tif insideType.Kind() == reflect.Map {\n\t\t// this is considered as an array of tables\n\t\ttablesArray := make([]*Tree, 0, length)\n\t\tfor i := 0; i < length; i++ {\n\t\t\ttable := value.Index(i)\n\t\t\ttree, err := toTree(table.Interface())\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\ttablesArray = append(tablesArray, tree.(*Tree))\n\t\t}\n\t\treturn tablesArray, nil\n\t}\n\n\tsliceType := typeFor(insideType.Kind())\n\tif sliceType == nil {\n\t\tsliceType = insideType\n\t}\n\n\tarrayValue := reflect.MakeSlice(reflect.SliceOf(sliceType), 0, length)\n\n\tfor i := 0; i < length; i++ {\n\t\tval := value.Index(i).Interface()\n\t\tsimpleValue, err := simpleValueCoercion(val)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tarrayValue = reflect.Append(arrayValue, reflect.ValueOf(simpleValue))\n\t}\n\treturn &tomlValue{value: arrayValue.Interface(), position: Position{}}, nil\n}\n\nfunc toTree(object interface{}) (interface{}, error) {\n\tvalue := reflect.ValueOf(object)\n\n\tif value.Kind() == reflect.Map {\n\t\tvalues := map[string]interface{}{}\n\t\tkeys := value.MapKeys()\n\t\tfor _, key := range keys {\n\t\t\tif key.Kind() != reflect.String {\n\t\t\t\tif _, ok := key.Interface().(string); !ok {\n\t\t\t\t\treturn nil, fmt.Errorf(\"map key needs to be a string, not %T (%v)\", key.Interface(), key.Kind())\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tv := value.MapIndex(key)\n\t\t\tnewValue, err := toTree(v.Interface())\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tvalues[key.String()] = newValue\n\t\t}\n\t\treturn &Tree{values: values, position: Position{}}, nil\n\t}\n\n\tif value.Kind() == reflect.Array || value.Kind() == reflect.Slice {\n\t\treturn sliceToTree(object)\n\t}\n\n\tsimpleValue, err := simpleValueCoercion(object)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &tomlValue{value: simpleValue, position: Position{}}, nil\n}\n"
  },
  {
    "path": "vendor/github.com/pelletier/go-toml/tomltree_write.go",
    "content": "package toml\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"math\"\n\t\"reflect\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n)\n\n// Encodes a string to a TOML-compliant multi-line string value\n// This function is a clone of the existing encodeTomlString function, except that whitespace characters\n// are preserved. Quotation marks and backslashes are also not escaped.\nfunc encodeMultilineTomlString(value string) string {\n\tvar b bytes.Buffer\n\n\tfor _, rr := range value {\n\t\tswitch rr {\n\t\tcase '\\b':\n\t\t\tb.WriteString(`\\b`)\n\t\tcase '\\t':\n\t\t\tb.WriteString(\"\\t\")\n\t\tcase '\\n':\n\t\t\tb.WriteString(\"\\n\")\n\t\tcase '\\f':\n\t\t\tb.WriteString(`\\f`)\n\t\tcase '\\r':\n\t\t\tb.WriteString(\"\\r\")\n\t\tcase '\"':\n\t\t\tb.WriteString(`\"`)\n\t\tcase '\\\\':\n\t\t\tb.WriteString(`\\`)\n\t\tdefault:\n\t\t\tintRr := uint16(rr)\n\t\t\tif intRr < 0x001F {\n\t\t\t\tb.WriteString(fmt.Sprintf(\"\\\\u%0.4X\", intRr))\n\t\t\t} else {\n\t\t\t\tb.WriteRune(rr)\n\t\t\t}\n\t\t}\n\t}\n\treturn b.String()\n}\n\n// Encodes a string to a TOML-compliant string value\nfunc encodeTomlString(value string) string {\n\tvar b bytes.Buffer\n\n\tfor _, rr := range value {\n\t\tswitch rr {\n\t\tcase '\\b':\n\t\t\tb.WriteString(`\\b`)\n\t\tcase '\\t':\n\t\t\tb.WriteString(`\\t`)\n\t\tcase '\\n':\n\t\t\tb.WriteString(`\\n`)\n\t\tcase '\\f':\n\t\t\tb.WriteString(`\\f`)\n\t\tcase '\\r':\n\t\t\tb.WriteString(`\\r`)\n\t\tcase '\"':\n\t\t\tb.WriteString(`\\\"`)\n\t\tcase '\\\\':\n\t\t\tb.WriteString(`\\\\`)\n\t\tdefault:\n\t\t\tintRr := uint16(rr)\n\t\t\tif intRr < 0x001F {\n\t\t\t\tb.WriteString(fmt.Sprintf(\"\\\\u%0.4X\", intRr))\n\t\t\t} else {\n\t\t\t\tb.WriteRune(rr)\n\t\t\t}\n\t\t}\n\t}\n\treturn b.String()\n}\n\nfunc tomlValueStringRepresentation(v interface{}, indent string, arraysOneElementPerLine bool) (string, error) {\n\t// this interface check is added to dereference the change made in the writeTo function.\n\t// That change was made to allow this function to see formatting options.\n\ttv, ok := v.(*tomlValue)\n\tif ok {\n\t\tv = tv.value\n\t} else {\n\t\ttv = &tomlValue{}\n\t}\n\n\tswitch value := v.(type) {\n\tcase uint64:\n\t\treturn strconv.FormatUint(value, 10), nil\n\tcase int64:\n\t\treturn strconv.FormatInt(value, 10), nil\n\tcase float64:\n\t\t// Ensure a round float does contain a decimal point. Otherwise feeding\n\t\t// the output back to the parser would convert to an integer.\n\t\tif math.Trunc(value) == value {\n\t\t\treturn strings.ToLower(strconv.FormatFloat(value, 'f', 1, 32)), nil\n\t\t}\n\t\treturn strings.ToLower(strconv.FormatFloat(value, 'f', -1, 32)), nil\n\tcase string:\n\t\tif tv.multiline {\n\t\t\treturn \"\\\"\\\"\\\"\\n\" + encodeMultilineTomlString(value) + \"\\\"\\\"\\\"\", nil\n\t\t}\n\t\treturn \"\\\"\" + encodeTomlString(value) + \"\\\"\", nil\n\tcase []byte:\n\t\tb, _ := v.([]byte)\n\t\treturn tomlValueStringRepresentation(string(b), indent, arraysOneElementPerLine)\n\tcase bool:\n\t\tif value {\n\t\t\treturn \"true\", nil\n\t\t}\n\t\treturn \"false\", nil\n\tcase time.Time:\n\t\treturn value.Format(time.RFC3339), nil\n\tcase nil:\n\t\treturn \"\", nil\n\t}\n\n\trv := reflect.ValueOf(v)\n\n\tif rv.Kind() == reflect.Slice {\n\t\tvar values []string\n\t\tfor i := 0; i < rv.Len(); i++ {\n\t\t\titem := rv.Index(i).Interface()\n\t\t\titemRepr, err := tomlValueStringRepresentation(item, indent, arraysOneElementPerLine)\n\t\t\tif err != nil {\n\t\t\t\treturn \"\", err\n\t\t\t}\n\t\t\tvalues = append(values, itemRepr)\n\t\t}\n\t\tif arraysOneElementPerLine && len(values) > 1 {\n\t\t\tstringBuffer := bytes.Buffer{}\n\t\t\tvalueIndent := indent + `  ` // TODO: move that to a shared encoder state\n\n\t\t\tstringBuffer.WriteString(\"[\\n\")\n\n\t\t\tfor _, value := range values {\n\t\t\t\tstringBuffer.WriteString(valueIndent)\n\t\t\t\tstringBuffer.WriteString(value)\n\t\t\t\tstringBuffer.WriteString(`,`)\n\t\t\t\tstringBuffer.WriteString(\"\\n\")\n\t\t\t}\n\n\t\t\tstringBuffer.WriteString(indent + \"]\")\n\n\t\t\treturn stringBuffer.String(), nil\n\t\t}\n\t\treturn \"[\" + strings.Join(values, \",\") + \"]\", nil\n\t}\n\treturn \"\", fmt.Errorf(\"unsupported value type %T: %v\", v, v)\n}\n\nfunc (t *Tree) writeTo(w io.Writer, indent, keyspace string, bytesCount int64, arraysOneElementPerLine bool) (int64, error) {\n\tsimpleValuesKeys := make([]string, 0)\n\tcomplexValuesKeys := make([]string, 0)\n\n\tfor k := range t.values {\n\t\tv := t.values[k]\n\t\tswitch v.(type) {\n\t\tcase *Tree, []*Tree:\n\t\t\tcomplexValuesKeys = append(complexValuesKeys, k)\n\t\tdefault:\n\t\t\tsimpleValuesKeys = append(simpleValuesKeys, k)\n\t\t}\n\t}\n\n\tsort.Strings(simpleValuesKeys)\n\tsort.Strings(complexValuesKeys)\n\n\tfor _, k := range simpleValuesKeys {\n\t\tv, ok := t.values[k].(*tomlValue)\n\t\tif !ok {\n\t\t\treturn bytesCount, fmt.Errorf(\"invalid value type at %s: %T\", k, t.values[k])\n\t\t}\n\n\t\trepr, err := tomlValueStringRepresentation(v, indent, arraysOneElementPerLine)\n\t\tif err != nil {\n\t\t\treturn bytesCount, err\n\t\t}\n\n\t\tif v.comment != \"\" {\n\t\t\tcomment := strings.Replace(v.comment, \"\\n\", \"\\n\"+indent+\"#\", -1)\n\t\t\tstart := \"# \"\n\t\t\tif strings.HasPrefix(comment, \"#\") {\n\t\t\t\tstart = \"\"\n\t\t\t}\n\t\t\twrittenBytesCountComment, errc := writeStrings(w, \"\\n\", indent, start, comment, \"\\n\")\n\t\t\tbytesCount += int64(writtenBytesCountComment)\n\t\t\tif errc != nil {\n\t\t\t\treturn bytesCount, errc\n\t\t\t}\n\t\t}\n\n\t\tvar commented string\n\t\tif v.commented {\n\t\t\tcommented = \"# \"\n\t\t}\n\t\twrittenBytesCount, err := writeStrings(w, indent, commented, k, \" = \", repr, \"\\n\")\n\t\tbytesCount += int64(writtenBytesCount)\n\t\tif err != nil {\n\t\t\treturn bytesCount, err\n\t\t}\n\t}\n\n\tfor _, k := range complexValuesKeys {\n\t\tv := t.values[k]\n\n\t\tcombinedKey := k\n\t\tif keyspace != \"\" {\n\t\t\tcombinedKey = keyspace + \".\" + combinedKey\n\t\t}\n\t\tvar commented string\n\t\tif t.commented {\n\t\t\tcommented = \"# \"\n\t\t}\n\n\t\tswitch node := v.(type) {\n\t\t// node has to be of those two types given how keys are sorted above\n\t\tcase *Tree:\n\t\t\ttv, ok := t.values[k].(*Tree)\n\t\t\tif !ok {\n\t\t\t\treturn bytesCount, fmt.Errorf(\"invalid value type at %s: %T\", k, t.values[k])\n\t\t\t}\n\t\t\tif tv.comment != \"\" {\n\t\t\t\tcomment := strings.Replace(tv.comment, \"\\n\", \"\\n\"+indent+\"#\", -1)\n\t\t\t\tstart := \"# \"\n\t\t\t\tif strings.HasPrefix(comment, \"#\") {\n\t\t\t\t\tstart = \"\"\n\t\t\t\t}\n\t\t\t\twrittenBytesCountComment, errc := writeStrings(w, \"\\n\", indent, start, comment)\n\t\t\t\tbytesCount += int64(writtenBytesCountComment)\n\t\t\t\tif errc != nil {\n\t\t\t\t\treturn bytesCount, errc\n\t\t\t\t}\n\t\t\t}\n\t\t\twrittenBytesCount, err := writeStrings(w, \"\\n\", indent, commented, \"[\", combinedKey, \"]\\n\")\n\t\t\tbytesCount += int64(writtenBytesCount)\n\t\t\tif err != nil {\n\t\t\t\treturn bytesCount, err\n\t\t\t}\n\t\t\tbytesCount, err = node.writeTo(w, indent+\"  \", combinedKey, bytesCount, arraysOneElementPerLine)\n\t\t\tif err != nil {\n\t\t\t\treturn bytesCount, err\n\t\t\t}\n\t\tcase []*Tree:\n\t\t\tfor _, subTree := range node {\n\t\t\t\twrittenBytesCount, err := writeStrings(w, \"\\n\", indent, commented, \"[[\", combinedKey, \"]]\\n\")\n\t\t\t\tbytesCount += int64(writtenBytesCount)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn bytesCount, err\n\t\t\t\t}\n\n\t\t\t\tbytesCount, err = subTree.writeTo(w, indent+\"  \", combinedKey, bytesCount, arraysOneElementPerLine)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn bytesCount, err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn bytesCount, nil\n}\n\nfunc writeStrings(w io.Writer, s ...string) (int, error) {\n\tvar n int\n\tfor i := range s {\n\t\tb, err := io.WriteString(w, s[i])\n\t\tn += b\n\t\tif err != nil {\n\t\t\treturn n, err\n\t\t}\n\t}\n\treturn n, nil\n}\n\n// WriteTo encode the Tree as Toml and writes it to the writer w.\n// Returns the number of bytes written in case of success, or an error if anything happened.\nfunc (t *Tree) WriteTo(w io.Writer) (int64, error) {\n\treturn t.writeTo(w, \"\", \"\", 0, false)\n}\n\n// ToTomlString generates a human-readable representation of the current tree.\n// Output spans multiple lines, and is suitable for ingest by a TOML parser.\n// If the conversion cannot be performed, ToString returns a non-nil error.\nfunc (t *Tree) ToTomlString() (string, error) {\n\tvar buf bytes.Buffer\n\t_, err := t.WriteTo(&buf)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn buf.String(), nil\n}\n\n// String generates a human-readable representation of the current tree.\n// Alias of ToString. Present to implement the fmt.Stringer interface.\nfunc (t *Tree) String() string {\n\tresult, _ := t.ToTomlString()\n\treturn result\n}\n\n// ToMap recursively generates a representation of the tree using Go built-in structures.\n// The following types are used:\n//\n//\t* bool\n//\t* float64\n//\t* int64\n//\t* string\n//\t* uint64\n//\t* time.Time\n//\t* map[string]interface{} (where interface{} is any of this list)\n//\t* []interface{} (where interface{} is any of this list)\nfunc (t *Tree) ToMap() map[string]interface{} {\n\tresult := map[string]interface{}{}\n\n\tfor k, v := range t.values {\n\t\tswitch node := v.(type) {\n\t\tcase []*Tree:\n\t\t\tvar array []interface{}\n\t\t\tfor _, item := range node {\n\t\t\t\tarray = append(array, item.ToMap())\n\t\t\t}\n\t\t\tresult[k] = array\n\t\tcase *Tree:\n\t\t\tresult[k] = node.ToMap()\n\t\tcase *tomlValue:\n\t\t\tresult[k] = node.value\n\t\t}\n\t}\n\treturn result\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/.travis.yml",
    "content": "sudo: false\r\nlanguage: go\r\n\r\ngo:\r\n  - 1.9\r\n  - \"1.10\"\r\n  - tip\r\n\r\nos:\r\n  - linux\r\n  - osx\r\n\r\nmatrix:\r\n  allow_failures:\r\n    - go: tip\r\n  fast_finish: true\r\n\r\nscript:\r\n  - go build\r\n  - go test -race -v ./...\r\n\r\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/LICENSE.txt",
    "content": "                                Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/README.md",
    "content": "![afero logo-sm](https://cloud.githubusercontent.com/assets/173412/11490338/d50e16dc-97a5-11e5-8b12-019a300d0fcb.png)\n\nA FileSystem Abstraction System for Go\n\n[![Build Status](https://travis-ci.org/spf13/afero.svg)](https://travis-ci.org/spf13/afero) [![Build status](https://ci.appveyor.com/api/projects/status/github/spf13/afero?branch=master&svg=true)](https://ci.appveyor.com/project/spf13/afero) [![GoDoc](https://godoc.org/github.com/spf13/afero?status.svg)](https://godoc.org/github.com/spf13/afero) [![Join the chat at https://gitter.im/spf13/afero](https://badges.gitter.im/Dev%20Chat.svg)](https://gitter.im/spf13/afero?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n# Overview\n\nAfero is an filesystem framework providing a simple, uniform and universal API\ninteracting with any filesystem, as an abstraction layer providing interfaces,\ntypes and methods. Afero has an exceptionally clean interface and simple design\nwithout needless constructors or initialization methods.\n\nAfero is also a library providing a base set of interoperable backend\nfilesystems that make it easy to work with afero while retaining all the power\nand benefit of the os and ioutil packages.\n\nAfero provides significant improvements over using the os package alone, most\nnotably the ability to create mock and testing filesystems without relying on the disk.\n\nIt is suitable for use in a any situation where you would consider using the OS\npackage as it provides an additional abstraction that makes it easy to use a\nmemory backed file system during testing. It also adds support for the http\nfilesystem for full interoperability.\n\n\n## Afero Features\n\n* A single consistent API for accessing a variety of filesystems\n* Interoperation between a variety of file system types\n* A set of interfaces to encourage and enforce interoperability between backends\n* An atomic cross platform memory backed file system\n* Support for compositional (union) file systems by combining multiple file systems acting as one\n* Specialized backends which modify existing filesystems (Read Only, Regexp filtered)\n* A set of utility functions ported from io, ioutil & hugo to be afero aware\n\n\n# Using Afero\n\nAfero is easy to use and easier to adopt.\n\nA few different ways you could use Afero:\n\n* Use the interfaces alone to define you own file system.\n* Wrap for the OS packages.\n* Define different filesystems for different parts of your application.\n* Use Afero for mock filesystems while testing\n\n## Step 1: Install Afero\n\nFirst use go get to install the latest version of the library.\n\n    $ go get github.com/spf13/afero\n\nNext include Afero in your application.\n```go\nimport \"github.com/spf13/afero\"\n```\n\n## Step 2: Declare a backend\n\nFirst define a package variable and set it to a pointer to a filesystem.\n```go\nvar AppFs = afero.NewMemMapFs()\n\nor\n\nvar AppFs = afero.NewOsFs()\n```\nIt is important to note that if you repeat the composite literal you\nwill be using a completely new and isolated filesystem. In the case of\nOsFs it will still use the same underlying filesystem but will reduce\nthe ability to drop in other filesystems as desired.\n\n## Step 3: Use it like you would the OS package\n\nThroughout your application use any function and method like you normally\nwould.\n\nSo if my application before had:\n```go\nos.Open('/tmp/foo')\n```\nWe would replace it with:\n```go\nAppFs.Open('/tmp/foo')\n```\n\n`AppFs` being the variable we defined above.\n\n\n## List of all available functions\n\nFile System Methods Available:\n```go\nChmod(name string, mode os.FileMode) : error\nChtimes(name string, atime time.Time, mtime time.Time) : error\nCreate(name string) : File, error\nMkdir(name string, perm os.FileMode) : error\nMkdirAll(path string, perm os.FileMode) : error\nName() : string\nOpen(name string) : File, error\nOpenFile(name string, flag int, perm os.FileMode) : File, error\nRemove(name string) : error\nRemoveAll(path string) : error\nRename(oldname, newname string) : error\nStat(name string) : os.FileInfo, error\n```\nFile Interfaces and Methods Available:\n```go\nio.Closer\nio.Reader\nio.ReaderAt\nio.Seeker\nio.Writer\nio.WriterAt\n\nName() : string\nReaddir(count int) : []os.FileInfo, error\nReaddirnames(n int) : []string, error\nStat() : os.FileInfo, error\nSync() : error\nTruncate(size int64) : error\nWriteString(s string) : ret int, err error\n```\nIn some applications it may make sense to define a new package that\nsimply exports the file system variable for easy access from anywhere.\n\n## Using Afero's utility functions\n\nAfero provides a set of functions to make it easier to use the underlying file systems.\nThese functions have been primarily ported from io & ioutil with some developed for Hugo.\n\nThe afero utilities support all afero compatible backends.\n\nThe list of utilities includes:\n\n```go\nDirExists(path string) (bool, error)\nExists(path string) (bool, error)\nFileContainsBytes(filename string, subslice []byte) (bool, error)\nGetTempDir(subPath string) string\nIsDir(path string) (bool, error)\nIsEmpty(path string) (bool, error)\nReadDir(dirname string) ([]os.FileInfo, error)\nReadFile(filename string) ([]byte, error)\nSafeWriteReader(path string, r io.Reader) (err error)\nTempDir(dir, prefix string) (name string, err error)\nTempFile(dir, prefix string) (f File, err error)\nWalk(root string, walkFn filepath.WalkFunc) error\nWriteFile(filename string, data []byte, perm os.FileMode) error\nWriteReader(path string, r io.Reader) (err error)\n```\nFor a complete list see [Afero's GoDoc](https://godoc.org/github.com/spf13/afero)\n\nThey are available under two different approaches to use. You can either call\nthem directly where the first parameter of each function will be the file\nsystem, or you can declare a new `Afero`, a custom type used to bind these\nfunctions as methods to a given filesystem.\n\n### Calling utilities directly\n\n```go\nfs := new(afero.MemMapFs)\nf, err := afero.TempFile(fs,\"\", \"ioutil-test\")\n\n```\n\n### Calling via Afero\n\n```go\nfs := afero.NewMemMapFs()\nafs := &afero.Afero{Fs: fs}\nf, err := afs.TempFile(\"\", \"ioutil-test\")\n```\n\n## Using Afero for Testing\n\nThere is a large benefit to using a mock filesystem for testing. It has a\ncompletely blank state every time it is initialized and can be easily\nreproducible regardless of OS. You could create files to your heart’s content\nand the file access would be fast while also saving you from all the annoying\nissues with deleting temporary files, Windows file locking, etc. The MemMapFs\nbackend is perfect for testing.\n\n* Much faster than performing I/O operations on disk\n* Avoid security issues and permissions\n* Far more control. 'rm -rf /' with confidence\n* Test setup is far more easier to do\n* No test cleanup needed\n\nOne way to accomplish this is to define a variable as mentioned above.\nIn your application this will be set to afero.NewOsFs() during testing you\ncan set it to afero.NewMemMapFs().\n\nIt wouldn't be uncommon to have each test initialize a blank slate memory\nbackend. To do this I would define my `appFS = afero.NewOsFs()` somewhere\nappropriate in my application code. This approach ensures that Tests are order\nindependent, with no test relying on the state left by an earlier test.\n\nThen in my tests I would initialize a new MemMapFs for each test:\n```go\nfunc TestExist(t *testing.T) {\n\tappFS := afero.NewMemMapFs()\n\t// create test files and directories\n\tappFS.MkdirAll(\"src/a\", 0755)\n\tafero.WriteFile(appFS, \"src/a/b\", []byte(\"file b\"), 0644)\n\tafero.WriteFile(appFS, \"src/c\", []byte(\"file c\"), 0644)\n\tname := \"src/c\"\n\t_, err := appFS.Stat(name)\n\tif os.IsNotExist(err) {\n\t\tt.Errorf(\"file \\\"%s\\\" does not exist.\\n\", name)\n\t}\n}\n```\n\n# Available Backends\n\n## Operating System Native\n\n### OsFs\n\nThe first is simply a wrapper around the native OS calls. This makes it\nvery easy to use as all of the calls are the same as the existing OS\ncalls. It also makes it trivial to have your code use the OS during\noperation and a mock filesystem during testing or as needed.\n\n```go\nappfs := afero.NewOsFs()\nappfs.MkdirAll(\"src/a\", 0755))\n```\n\n## Memory Backed Storage\n\n### MemMapFs\n\nAfero also provides a fully atomic memory backed filesystem perfect for use in\nmocking and to speed up unnecessary disk io when persistence isn’t\nnecessary. It is fully concurrent and will work within go routines\nsafely.\n\n```go\nmm := afero.NewMemMapFs()\nmm.MkdirAll(\"src/a\", 0755))\n```\n\n#### InMemoryFile\n\nAs part of MemMapFs, Afero also provides an atomic, fully concurrent memory\nbacked file implementation. This can be used in other memory backed file\nsystems with ease. Plans are to add a radix tree memory stored file\nsystem using InMemoryFile.\n\n## Network Interfaces\n\n### SftpFs\n\nAfero has experimental support for secure file transfer protocol (sftp). Which can\nbe used to perform file operations over a encrypted channel.\n\n## Filtering Backends\n\n### BasePathFs\n\nThe BasePathFs restricts all operations to a given path within an Fs.\nThe given file name to the operations on this Fs will be prepended with\nthe base path before calling the source Fs.\n\n```go\nbp := afero.NewBasePathFs(afero.NewOsFs(), \"/base/path\")\n```\n\n### ReadOnlyFs\n\nA thin wrapper around the source Fs providing a read only view.\n\n```go\nfs := afero.NewReadOnlyFs(afero.NewOsFs())\n_, err := fs.Create(\"/file.txt\")\n// err = syscall.EPERM\n```\n\n# RegexpFs\n\nA filtered view on file names, any file NOT matching\nthe passed regexp will be treated as non-existing.\nFiles not matching the regexp provided will not be created.\nDirectories are not filtered.\n\n```go\nfs := afero.NewRegexpFs(afero.NewMemMapFs(), regexp.MustCompile(`\\.txt$`))\n_, err := fs.Create(\"/file.html\")\n// err = syscall.ENOENT\n```\n\n### HttpFs\n\nAfero provides an http compatible backend which can wrap any of the existing\nbackends.\n\nThe Http package requires a slightly specific version of Open which\nreturns an http.File type.\n\nAfero provides an httpFs file system which satisfies this requirement.\nAny Afero FileSystem can be used as an httpFs.\n\n```go\nhttpFs := afero.NewHttpFs(<ExistingFS>)\nfileserver := http.FileServer(httpFs.Dir(<PATH>)))\nhttp.Handle(\"/\", fileserver)\n```\n\n## Composite Backends\n\nAfero provides the ability have two filesystems (or more) act as a single\nfile system.\n\n### CacheOnReadFs\n\nThe CacheOnReadFs will lazily make copies of any accessed files from the base\nlayer into the overlay. Subsequent reads will be pulled from the overlay\ndirectly permitting the request is within the cache duration of when it was\ncreated in the overlay.\n\nIf the base filesystem is writeable, any changes to files will be\ndone first to the base, then to the overlay layer. Write calls to open file\nhandles like `Write()` or `Truncate()` to the overlay first.\n\nTo writing files to the overlay only, you can use the overlay Fs directly (not\nvia the union Fs).\n\nCache files in the layer for the given time.Duration, a cache duration of 0\nmeans \"forever\" meaning the file will not be re-requested from the base ever.\n\nA read-only base will make the overlay also read-only but still copy files\nfrom the base to the overlay when they're not present (or outdated) in the\ncaching layer.\n\n```go\nbase := afero.NewOsFs()\nlayer := afero.NewMemMapFs()\nufs := afero.NewCacheOnReadFs(base, layer, 100 * time.Second)\n```\n\n### CopyOnWriteFs()\n\nThe CopyOnWriteFs is a read only base file system with a potentially\nwriteable layer on top.\n\nRead operations will first look in the overlay and if not found there, will\nserve the file from the base.\n\nChanges to the file system will only be made in the overlay.\n\nAny attempt to modify a file found only in the base will copy the file to the\noverlay layer before modification (including opening a file with a writable\nhandle).\n\nRemoving and Renaming files present only in the base layer is not currently\npermitted. If a file is present in the base layer and the overlay, only the\noverlay will be removed/renamed.\n\n```go\n\tbase := afero.NewOsFs()\n\troBase := afero.NewReadOnlyFs(base)\n\tufs := afero.NewCopyOnWriteFs(roBase, afero.NewMemMapFs())\n\n\tfh, _ = ufs.Create(\"/home/test/file2.txt\")\n\tfh.WriteString(\"This is a test\")\n\tfh.Close()\n```\n\nIn this example all write operations will only occur in memory (MemMapFs)\nleaving the base filesystem (OsFs) untouched.\n\n\n## Desired/possible backends\n\nThe following is a short list of possible backends we hope someone will\nimplement:\n\n* SSH\n* ZIP\n* TAR\n* S3\n\n# About the project\n\n## What's in the name\n\nAfero comes from the latin roots Ad-Facere.\n\n**\"Ad\"** is a prefix meaning \"to\".\n\n**\"Facere\"** is a form of the root \"faciō\" making \"make or do\".\n\nThe literal meaning of afero is \"to make\" or \"to do\" which seems very fitting\nfor a library that allows one to make files and directories and do things with them.\n\nThe English word that shares the same roots as Afero is \"affair\". Affair shares\nthe same concept but as a noun it means \"something that is made or done\" or \"an\nobject of a particular type\".\n\nIt's also nice that unlike some of my other libraries (hugo, cobra, viper) it\nGoogles very well.\n\n## Release Notes\n\n* **0.10.0** 2015.12.10\n  * Full compatibility with Windows\n  * Introduction of afero utilities\n  * Test suite rewritten to work cross platform\n  * Normalize paths for MemMapFs\n  * Adding Sync to the file interface\n  * **Breaking Change** Walk and ReadDir have changed parameter order\n  * Moving types used by MemMapFs to a subpackage\n  * General bugfixes and improvements\n* **0.9.0** 2015.11.05\n  * New Walk function similar to filepath.Walk\n  * MemMapFs.OpenFile handles O_CREATE, O_APPEND, O_TRUNC\n  * MemMapFs.Remove now really deletes the file\n  * InMemoryFile.Readdir and Readdirnames work correctly\n  * InMemoryFile functions lock it for concurrent access\n  * Test suite improvements\n* **0.8.0** 2014.10.28\n  * First public version\n  * Interfaces feel ready for people to build using\n  * Interfaces satisfy all known uses\n  * MemMapFs passes the majority of the OS test suite\n  * OsFs passes the majority of the OS test suite\n\n## Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\n## Contributors\n\nNames in no particular order:\n\n* [spf13](https://github.com/spf13)\n* [jaqx0r](https://github.com/jaqx0r)\n* [mbertschler](https://github.com/mbertschler)\n* [xor-gate](https://github.com/xor-gate)\n\n## License\n\nAfero is released under the Apache 2.0 license. See\n[LICENSE.txt](https://github.com/spf13/afero/blob/master/LICENSE.txt)\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/afero.go",
    "content": "// Copyright © 2014 Steve Francia <spf@spf13.com>.\n// Copyright 2013 tsuru authors. All rights reserved.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n// Package afero provides types and methods for interacting with the filesystem,\n// as an abstraction layer.\n\n// Afero also provides a few implementations that are mostly interoperable. One that\n// uses the operating system filesystem, one that uses memory to store files\n// (cross platform) and an interface that should be implemented if you want to\n// provide your own filesystem.\n\npackage afero\n\nimport (\n\t\"errors\"\n\t\"io\"\n\t\"os\"\n\t\"time\"\n)\n\ntype Afero struct {\n\tFs\n}\n\n// File represents a file in the filesystem.\ntype File interface {\n\tio.Closer\n\tio.Reader\n\tio.ReaderAt\n\tio.Seeker\n\tio.Writer\n\tio.WriterAt\n\n\tName() string\n\tReaddir(count int) ([]os.FileInfo, error)\n\tReaddirnames(n int) ([]string, error)\n\tStat() (os.FileInfo, error)\n\tSync() error\n\tTruncate(size int64) error\n\tWriteString(s string) (ret int, err error)\n}\n\n// Fs is the filesystem interface.\n//\n// Any simulated or real filesystem should implement this interface.\ntype Fs interface {\n\t// Create creates a file in the filesystem, returning the file and an\n\t// error, if any happens.\n\tCreate(name string) (File, error)\n\n\t// Mkdir creates a directory in the filesystem, return an error if any\n\t// happens.\n\tMkdir(name string, perm os.FileMode) error\n\n\t// MkdirAll creates a directory path and all parents that does not exist\n\t// yet.\n\tMkdirAll(path string, perm os.FileMode) error\n\n\t// Open opens a file, returning it or an error, if any happens.\n\tOpen(name string) (File, error)\n\n\t// OpenFile opens a file using the given flags and the given mode.\n\tOpenFile(name string, flag int, perm os.FileMode) (File, error)\n\n\t// Remove removes a file identified by name, returning an error, if any\n\t// happens.\n\tRemove(name string) error\n\n\t// RemoveAll removes a directory path and any children it contains. It\n\t// does not fail if the path does not exist (return nil).\n\tRemoveAll(path string) error\n\n\t// Rename renames a file.\n\tRename(oldname, newname string) error\n\n\t// Stat returns a FileInfo describing the named file, or an error, if any\n\t// happens.\n\tStat(name string) (os.FileInfo, error)\n\n\t// The name of this FileSystem\n\tName() string\n\n\t//Chmod changes the mode of the named file to mode.\n\tChmod(name string, mode os.FileMode) error\n\n\t//Chtimes changes the access and modification times of the named file\n\tChtimes(name string, atime time.Time, mtime time.Time) error\n}\n\nvar (\n\tErrFileClosed        = errors.New(\"File is closed\")\n\tErrOutOfRange        = errors.New(\"Out of range\")\n\tErrTooLarge          = errors.New(\"Too large\")\n\tErrFileNotFound      = os.ErrNotExist\n\tErrFileExists        = os.ErrExist\n\tErrDestinationExists = os.ErrExist\n)\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/appveyor.yml",
    "content": "version: '{build}'\nclone_folder: C:\\gopath\\src\\github.com\\spf13\\afero\nenvironment:\n  GOPATH: C:\\gopath\nbuild_script:\n- cmd: >-\n    go version\n\n    go env\n\n    go get -v github.com/spf13/afero/...\n\n    go build github.com/spf13/afero\ntest_script:\n- cmd: go test -race -v github.com/spf13/afero/...\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/basepath.go",
    "content": "package afero\n\nimport (\n\t\"os\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strings\"\n\t\"time\"\n)\n\nvar _ Lstater = (*BasePathFs)(nil)\n\n// The BasePathFs restricts all operations to a given path within an Fs.\n// The given file name to the operations on this Fs will be prepended with\n// the base path before calling the base Fs.\n// Any file name (after filepath.Clean()) outside this base path will be\n// treated as non existing file.\n//\n// Note that it does not clean the error messages on return, so you may\n// reveal the real path on errors.\ntype BasePathFs struct {\n\tsource Fs\n\tpath   string\n}\n\ntype BasePathFile struct {\n\tFile\n\tpath string\n}\n\nfunc (f *BasePathFile) Name() string {\n\tsourcename := f.File.Name()\n\treturn strings.TrimPrefix(sourcename, filepath.Clean(f.path))\n}\n\nfunc NewBasePathFs(source Fs, path string) Fs {\n\treturn &BasePathFs{source: source, path: path}\n}\n\n// on a file outside the base path it returns the given file name and an error,\n// else the given file with the base path prepended\nfunc (b *BasePathFs) RealPath(name string) (path string, err error) {\n\tif err := validateBasePathName(name); err != nil {\n\t\treturn name, err\n\t}\n\n\tbpath := filepath.Clean(b.path)\n\tpath = filepath.Clean(filepath.Join(bpath, name))\n\tif !strings.HasPrefix(path, bpath) {\n\t\treturn name, os.ErrNotExist\n\t}\n\n\treturn path, nil\n}\n\nfunc validateBasePathName(name string) error {\n\tif runtime.GOOS != \"windows\" {\n\t\t// Not much to do here;\n\t\t// the virtual file paths all look absolute on *nix.\n\t\treturn nil\n\t}\n\n\t// On Windows a common mistake would be to provide an absolute OS path\n\t// We could strip out the base part, but that would not be very portable.\n\tif filepath.IsAbs(name) {\n\t\treturn os.ErrNotExist\n\t}\n\n\treturn nil\n}\n\nfunc (b *BasePathFs) Chtimes(name string, atime, mtime time.Time) (err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn &os.PathError{Op: \"chtimes\", Path: name, Err: err}\n\t}\n\treturn b.source.Chtimes(name, atime, mtime)\n}\n\nfunc (b *BasePathFs) Chmod(name string, mode os.FileMode) (err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn &os.PathError{Op: \"chmod\", Path: name, Err: err}\n\t}\n\treturn b.source.Chmod(name, mode)\n}\n\nfunc (b *BasePathFs) Name() string {\n\treturn \"BasePathFs\"\n}\n\nfunc (b *BasePathFs) Stat(name string) (fi os.FileInfo, err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn nil, &os.PathError{Op: \"stat\", Path: name, Err: err}\n\t}\n\treturn b.source.Stat(name)\n}\n\nfunc (b *BasePathFs) Rename(oldname, newname string) (err error) {\n\tif oldname, err = b.RealPath(oldname); err != nil {\n\t\treturn &os.PathError{Op: \"rename\", Path: oldname, Err: err}\n\t}\n\tif newname, err = b.RealPath(newname); err != nil {\n\t\treturn &os.PathError{Op: \"rename\", Path: newname, Err: err}\n\t}\n\treturn b.source.Rename(oldname, newname)\n}\n\nfunc (b *BasePathFs) RemoveAll(name string) (err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn &os.PathError{Op: \"remove_all\", Path: name, Err: err}\n\t}\n\treturn b.source.RemoveAll(name)\n}\n\nfunc (b *BasePathFs) Remove(name string) (err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn &os.PathError{Op: \"remove\", Path: name, Err: err}\n\t}\n\treturn b.source.Remove(name)\n}\n\nfunc (b *BasePathFs) OpenFile(name string, flag int, mode os.FileMode) (f File, err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn nil, &os.PathError{Op: \"openfile\", Path: name, Err: err}\n\t}\n\tsourcef, err := b.source.OpenFile(name, flag, mode)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &BasePathFile{sourcef, b.path}, nil\n}\n\nfunc (b *BasePathFs) Open(name string) (f File, err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn nil, &os.PathError{Op: \"open\", Path: name, Err: err}\n\t}\n\tsourcef, err := b.source.Open(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &BasePathFile{File: sourcef, path: b.path}, nil\n}\n\nfunc (b *BasePathFs) Mkdir(name string, mode os.FileMode) (err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn &os.PathError{Op: \"mkdir\", Path: name, Err: err}\n\t}\n\treturn b.source.Mkdir(name, mode)\n}\n\nfunc (b *BasePathFs) MkdirAll(name string, mode os.FileMode) (err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn &os.PathError{Op: \"mkdir\", Path: name, Err: err}\n\t}\n\treturn b.source.MkdirAll(name, mode)\n}\n\nfunc (b *BasePathFs) Create(name string) (f File, err error) {\n\tif name, err = b.RealPath(name); err != nil {\n\t\treturn nil, &os.PathError{Op: \"create\", Path: name, Err: err}\n\t}\n\tsourcef, err := b.source.Create(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &BasePathFile{File: sourcef, path: b.path}, nil\n}\n\nfunc (b *BasePathFs) LstatIfPossible(name string) (os.FileInfo, bool, error) {\n\tname, err := b.RealPath(name)\n\tif err != nil {\n\t\treturn nil, false, &os.PathError{Op: \"lstat\", Path: name, Err: err}\n\t}\n\tif lstater, ok := b.source.(Lstater); ok {\n\t\treturn lstater.LstatIfPossible(name)\n\t}\n\tfi, err := b.source.Stat(name)\n\treturn fi, false, err\n}\n\n// vim: ts=4 sw=4 noexpandtab nolist syn=go\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/cacheOnReadFs.go",
    "content": "package afero\n\nimport (\n\t\"os\"\n\t\"syscall\"\n\t\"time\"\n)\n\n// If the cache duration is 0, cache time will be unlimited, i.e. once\n// a file is in the layer, the base will never be read again for this file.\n//\n// For cache times greater than 0, the modification time of a file is\n// checked. Note that a lot of file system implementations only allow a\n// resolution of a second for timestamps... or as the godoc for os.Chtimes()\n// states: \"The underlying filesystem may truncate or round the values to a\n// less precise time unit.\"\n//\n// This caching union will forward all write calls also to the base file\n// system first. To prevent writing to the base Fs, wrap it in a read-only\n// filter - Note: this will also make the overlay read-only, for writing files\n// in the overlay, use the overlay Fs directly, not via the union Fs.\ntype CacheOnReadFs struct {\n\tbase      Fs\n\tlayer     Fs\n\tcacheTime time.Duration\n}\n\nfunc NewCacheOnReadFs(base Fs, layer Fs, cacheTime time.Duration) Fs {\n\treturn &CacheOnReadFs{base: base, layer: layer, cacheTime: cacheTime}\n}\n\ntype cacheState int\n\nconst (\n\t// not present in the overlay, unknown if it exists in the base:\n\tcacheMiss cacheState = iota\n\t// present in the overlay and in base, base file is newer:\n\tcacheStale\n\t// present in the overlay - with cache time == 0 it may exist in the base,\n\t// with cacheTime > 0 it exists in the base and is same age or newer in the\n\t// overlay\n\tcacheHit\n\t// happens if someone writes directly to the overlay without\n\t// going through this union\n\tcacheLocal\n)\n\nfunc (u *CacheOnReadFs) cacheStatus(name string) (state cacheState, fi os.FileInfo, err error) {\n\tvar lfi, bfi os.FileInfo\n\tlfi, err = u.layer.Stat(name)\n\tif err == nil {\n\t\tif u.cacheTime == 0 {\n\t\t\treturn cacheHit, lfi, nil\n\t\t}\n\t\tif lfi.ModTime().Add(u.cacheTime).Before(time.Now()) {\n\t\t\tbfi, err = u.base.Stat(name)\n\t\t\tif err != nil {\n\t\t\t\treturn cacheLocal, lfi, nil\n\t\t\t}\n\t\t\tif bfi.ModTime().After(lfi.ModTime()) {\n\t\t\t\treturn cacheStale, bfi, nil\n\t\t\t}\n\t\t}\n\t\treturn cacheHit, lfi, nil\n\t}\n\n\tif err == syscall.ENOENT || os.IsNotExist(err) {\n\t\treturn cacheMiss, nil, nil\n\t}\n\n\treturn cacheMiss, nil, err\n}\n\nfunc (u *CacheOnReadFs) copyToLayer(name string) error {\n\treturn copyToLayer(u.base, u.layer, name)\n}\n\nfunc (u *CacheOnReadFs) Chtimes(name string, atime, mtime time.Time) error {\n\tst, _, err := u.cacheStatus(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tswitch st {\n\tcase cacheLocal:\n\tcase cacheHit:\n\t\terr = u.base.Chtimes(name, atime, mtime)\n\tcase cacheStale, cacheMiss:\n\t\tif err := u.copyToLayer(name); err != nil {\n\t\t\treturn err\n\t\t}\n\t\terr = u.base.Chtimes(name, atime, mtime)\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn u.layer.Chtimes(name, atime, mtime)\n}\n\nfunc (u *CacheOnReadFs) Chmod(name string, mode os.FileMode) error {\n\tst, _, err := u.cacheStatus(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tswitch st {\n\tcase cacheLocal:\n\tcase cacheHit:\n\t\terr = u.base.Chmod(name, mode)\n\tcase cacheStale, cacheMiss:\n\t\tif err := u.copyToLayer(name); err != nil {\n\t\t\treturn err\n\t\t}\n\t\terr = u.base.Chmod(name, mode)\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn u.layer.Chmod(name, mode)\n}\n\nfunc (u *CacheOnReadFs) Stat(name string) (os.FileInfo, error) {\n\tst, fi, err := u.cacheStatus(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tswitch st {\n\tcase cacheMiss:\n\t\treturn u.base.Stat(name)\n\tdefault: // cacheStale has base, cacheHit and cacheLocal the layer os.FileInfo\n\t\treturn fi, nil\n\t}\n}\n\nfunc (u *CacheOnReadFs) Rename(oldname, newname string) error {\n\tst, _, err := u.cacheStatus(oldname)\n\tif err != nil {\n\t\treturn err\n\t}\n\tswitch st {\n\tcase cacheLocal:\n\tcase cacheHit:\n\t\terr = u.base.Rename(oldname, newname)\n\tcase cacheStale, cacheMiss:\n\t\tif err := u.copyToLayer(oldname); err != nil {\n\t\t\treturn err\n\t\t}\n\t\terr = u.base.Rename(oldname, newname)\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn u.layer.Rename(oldname, newname)\n}\n\nfunc (u *CacheOnReadFs) Remove(name string) error {\n\tst, _, err := u.cacheStatus(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tswitch st {\n\tcase cacheLocal:\n\tcase cacheHit, cacheStale, cacheMiss:\n\t\terr = u.base.Remove(name)\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn u.layer.Remove(name)\n}\n\nfunc (u *CacheOnReadFs) RemoveAll(name string) error {\n\tst, _, err := u.cacheStatus(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tswitch st {\n\tcase cacheLocal:\n\tcase cacheHit, cacheStale, cacheMiss:\n\t\terr = u.base.RemoveAll(name)\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn u.layer.RemoveAll(name)\n}\n\nfunc (u *CacheOnReadFs) OpenFile(name string, flag int, perm os.FileMode) (File, error) {\n\tst, _, err := u.cacheStatus(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tswitch st {\n\tcase cacheLocal, cacheHit:\n\tdefault:\n\t\tif err := u.copyToLayer(name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tif flag&(os.O_WRONLY|syscall.O_RDWR|os.O_APPEND|os.O_CREATE|os.O_TRUNC) != 0 {\n\t\tbfi, err := u.base.OpenFile(name, flag, perm)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tlfi, err := u.layer.OpenFile(name, flag, perm)\n\t\tif err != nil {\n\t\t\tbfi.Close() // oops, what if O_TRUNC was set and file opening in the layer failed...?\n\t\t\treturn nil, err\n\t\t}\n\t\treturn &UnionFile{Base: bfi, Layer: lfi}, nil\n\t}\n\treturn u.layer.OpenFile(name, flag, perm)\n}\n\nfunc (u *CacheOnReadFs) Open(name string) (File, error) {\n\tst, fi, err := u.cacheStatus(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tswitch st {\n\tcase cacheLocal:\n\t\treturn u.layer.Open(name)\n\n\tcase cacheMiss:\n\t\tbfi, err := u.base.Stat(name)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif bfi.IsDir() {\n\t\t\treturn u.base.Open(name)\n\t\t}\n\t\tif err := u.copyToLayer(name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\treturn u.layer.Open(name)\n\n\tcase cacheStale:\n\t\tif !fi.IsDir() {\n\t\t\tif err := u.copyToLayer(name); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\treturn u.layer.Open(name)\n\t\t}\n\tcase cacheHit:\n\t\tif !fi.IsDir() {\n\t\t\treturn u.layer.Open(name)\n\t\t}\n\t}\n\t// the dirs from cacheHit, cacheStale fall down here:\n\tbfile, _ := u.base.Open(name)\n\tlfile, err := u.layer.Open(name)\n\tif err != nil && bfile == nil {\n\t\treturn nil, err\n\t}\n\treturn &UnionFile{Base: bfile, Layer: lfile}, nil\n}\n\nfunc (u *CacheOnReadFs) Mkdir(name string, perm os.FileMode) error {\n\terr := u.base.Mkdir(name, perm)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn u.layer.MkdirAll(name, perm) // yes, MkdirAll... we cannot assume it exists in the cache\n}\n\nfunc (u *CacheOnReadFs) Name() string {\n\treturn \"CacheOnReadFs\"\n}\n\nfunc (u *CacheOnReadFs) MkdirAll(name string, perm os.FileMode) error {\n\terr := u.base.MkdirAll(name, perm)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn u.layer.MkdirAll(name, perm)\n}\n\nfunc (u *CacheOnReadFs) Create(name string) (File, error) {\n\tbfh, err := u.base.Create(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlfh, err := u.layer.Create(name)\n\tif err != nil {\n\t\t// oops, see comment about OS_TRUNC above, should we remove? then we have to\n\t\t// remember if the file did not exist before\n\t\tbfh.Close()\n\t\treturn nil, err\n\t}\n\treturn &UnionFile{Base: bfh, Layer: lfh}, nil\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/const_bsds.go",
    "content": "// Copyright © 2016 Steve Francia <spf@spf13.com>.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n// +build darwin openbsd freebsd netbsd dragonfly\n\npackage afero\n\nimport (\n\t\"syscall\"\n)\n\nconst BADFD = syscall.EBADF\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/const_win_unix.go",
    "content": "// Copyright © 2016 Steve Francia <spf@spf13.com>.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// +build !darwin\n// +build !openbsd\n// +build !freebsd\n// +build !dragonfly\n// +build !netbsd\n\npackage afero\n\nimport (\n\t\"syscall\"\n)\n\nconst BADFD = syscall.EBADFD\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/copyOnWriteFs.go",
    "content": "package afero\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"syscall\"\n\t\"time\"\n)\n\nvar _ Lstater = (*CopyOnWriteFs)(nil)\n\n// The CopyOnWriteFs is a union filesystem: a read only base file system with\n// a possibly writeable layer on top. Changes to the file system will only\n// be made in the overlay: Changing an existing file in the base layer which\n// is not present in the overlay will copy the file to the overlay (\"changing\"\n// includes also calls to e.g. Chtimes() and Chmod()).\n//\n// Reading directories is currently only supported via Open(), not OpenFile().\ntype CopyOnWriteFs struct {\n\tbase  Fs\n\tlayer Fs\n}\n\nfunc NewCopyOnWriteFs(base Fs, layer Fs) Fs {\n\treturn &CopyOnWriteFs{base: base, layer: layer}\n}\n\n// Returns true if the file is not in the overlay\nfunc (u *CopyOnWriteFs) isBaseFile(name string) (bool, error) {\n\tif _, err := u.layer.Stat(name); err == nil {\n\t\treturn false, nil\n\t}\n\t_, err := u.base.Stat(name)\n\tif err != nil {\n\t\tif oerr, ok := err.(*os.PathError); ok {\n\t\t\tif oerr.Err == os.ErrNotExist || oerr.Err == syscall.ENOENT || oerr.Err == syscall.ENOTDIR {\n\t\t\t\treturn false, nil\n\t\t\t}\n\t\t}\n\t\tif err == syscall.ENOENT {\n\t\t\treturn false, nil\n\t\t}\n\t}\n\treturn true, err\n}\n\nfunc (u *CopyOnWriteFs) copyToLayer(name string) error {\n\treturn copyToLayer(u.base, u.layer, name)\n}\n\nfunc (u *CopyOnWriteFs) Chtimes(name string, atime, mtime time.Time) error {\n\tb, err := u.isBaseFile(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif b {\n\t\tif err := u.copyToLayer(name); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn u.layer.Chtimes(name, atime, mtime)\n}\n\nfunc (u *CopyOnWriteFs) Chmod(name string, mode os.FileMode) error {\n\tb, err := u.isBaseFile(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif b {\n\t\tif err := u.copyToLayer(name); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn u.layer.Chmod(name, mode)\n}\n\nfunc (u *CopyOnWriteFs) Stat(name string) (os.FileInfo, error) {\n\tfi, err := u.layer.Stat(name)\n\tif err != nil {\n\t\tisNotExist := u.isNotExist(err)\n\t\tif isNotExist {\n\t\t\treturn u.base.Stat(name)\n\t\t}\n\t\treturn nil, err\n\t}\n\treturn fi, nil\n}\n\nfunc (u *CopyOnWriteFs) LstatIfPossible(name string) (os.FileInfo, bool, error) {\n\tllayer, ok1 := u.layer.(Lstater)\n\tlbase, ok2 := u.base.(Lstater)\n\n\tif ok1 {\n\t\tfi, b, err := llayer.LstatIfPossible(name)\n\t\tif err == nil {\n\t\t\treturn fi, b, nil\n\t\t}\n\n\t\tif !u.isNotExist(err) {\n\t\t\treturn nil, b, err\n\t\t}\n\t}\n\n\tif ok2 {\n\t\tfi, b, err := lbase.LstatIfPossible(name)\n\t\tif err == nil {\n\t\t\treturn fi, b, nil\n\t\t}\n\t\tif !u.isNotExist(err) {\n\t\t\treturn nil, b, err\n\t\t}\n\t}\n\n\tfi, err := u.Stat(name)\n\n\treturn fi, false, err\n}\n\nfunc (u *CopyOnWriteFs) isNotExist(err error) bool {\n\tif e, ok := err.(*os.PathError); ok {\n\t\terr = e.Err\n\t}\n\tif err == os.ErrNotExist || err == syscall.ENOENT || err == syscall.ENOTDIR {\n\t\treturn true\n\t}\n\treturn false\n}\n\n// Renaming files present only in the base layer is not permitted\nfunc (u *CopyOnWriteFs) Rename(oldname, newname string) error {\n\tb, err := u.isBaseFile(oldname)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif b {\n\t\treturn syscall.EPERM\n\t}\n\treturn u.layer.Rename(oldname, newname)\n}\n\n// Removing files present only in the base layer is not permitted. If\n// a file is present in the base layer and the overlay, only the overlay\n// will be removed.\nfunc (u *CopyOnWriteFs) Remove(name string) error {\n\terr := u.layer.Remove(name)\n\tswitch err {\n\tcase syscall.ENOENT:\n\t\t_, err = u.base.Stat(name)\n\t\tif err == nil {\n\t\t\treturn syscall.EPERM\n\t\t}\n\t\treturn syscall.ENOENT\n\tdefault:\n\t\treturn err\n\t}\n}\n\nfunc (u *CopyOnWriteFs) RemoveAll(name string) error {\n\terr := u.layer.RemoveAll(name)\n\tswitch err {\n\tcase syscall.ENOENT:\n\t\t_, err = u.base.Stat(name)\n\t\tif err == nil {\n\t\t\treturn syscall.EPERM\n\t\t}\n\t\treturn syscall.ENOENT\n\tdefault:\n\t\treturn err\n\t}\n}\n\nfunc (u *CopyOnWriteFs) OpenFile(name string, flag int, perm os.FileMode) (File, error) {\n\tb, err := u.isBaseFile(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif flag&(os.O_WRONLY|os.O_RDWR|os.O_APPEND|os.O_CREATE|os.O_TRUNC) != 0 {\n\t\tif b {\n\t\t\tif err = u.copyToLayer(name); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\treturn u.layer.OpenFile(name, flag, perm)\n\t\t}\n\n\t\tdir := filepath.Dir(name)\n\t\tisaDir, err := IsDir(u.base, dir)\n\t\tif err != nil && !os.IsNotExist(err) {\n\t\t\treturn nil, err\n\t\t}\n\t\tif isaDir {\n\t\t\tif err = u.layer.MkdirAll(dir, 0777); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\treturn u.layer.OpenFile(name, flag, perm)\n\t\t}\n\n\t\tisaDir, err = IsDir(u.layer, dir)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif isaDir {\n\t\t\treturn u.layer.OpenFile(name, flag, perm)\n\t\t}\n\n\t\treturn nil, &os.PathError{Op: \"open\", Path: name, Err: syscall.ENOTDIR} // ...or os.ErrNotExist?\n\t}\n\tif b {\n\t\treturn u.base.OpenFile(name, flag, perm)\n\t}\n\treturn u.layer.OpenFile(name, flag, perm)\n}\n\n// This function handles the 9 different possibilities caused\n// by the union which are the intersection of the following...\n//  layer: doesn't exist, exists as a file, and exists as a directory\n//  base:  doesn't exist, exists as a file, and exists as a directory\nfunc (u *CopyOnWriteFs) Open(name string) (File, error) {\n\t// Since the overlay overrides the base we check that first\n\tb, err := u.isBaseFile(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// If overlay doesn't exist, return the base (base state irrelevant)\n\tif b {\n\t\treturn u.base.Open(name)\n\t}\n\n\t// If overlay is a file, return it (base state irrelevant)\n\tdir, err := IsDir(u.layer, name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif !dir {\n\t\treturn u.layer.Open(name)\n\t}\n\n\t// Overlay is a directory, base state now matters.\n\t// Base state has 3 states to check but 2 outcomes:\n\t// A. It's a file or non-readable in the base (return just the overlay)\n\t// B. It's an accessible directory in the base (return a UnionFile)\n\n\t// If base is file or nonreadable, return overlay\n\tdir, err = IsDir(u.base, name)\n\tif !dir || err != nil {\n\t\treturn u.layer.Open(name)\n\t}\n\n\t// Both base & layer are directories\n\t// Return union file (if opens are without error)\n\tbfile, bErr := u.base.Open(name)\n\tlfile, lErr := u.layer.Open(name)\n\n\t// If either have errors at this point something is very wrong. Return nil and the errors\n\tif bErr != nil || lErr != nil {\n\t\treturn nil, fmt.Errorf(\"BaseErr: %v\\nOverlayErr: %v\", bErr, lErr)\n\t}\n\n\treturn &UnionFile{Base: bfile, Layer: lfile}, nil\n}\n\nfunc (u *CopyOnWriteFs) Mkdir(name string, perm os.FileMode) error {\n\tdir, err := IsDir(u.base, name)\n\tif err != nil {\n\t\treturn u.layer.MkdirAll(name, perm)\n\t}\n\tif dir {\n\t\treturn syscall.EEXIST\n\t}\n\treturn u.layer.MkdirAll(name, perm)\n}\n\nfunc (u *CopyOnWriteFs) Name() string {\n\treturn \"CopyOnWriteFs\"\n}\n\nfunc (u *CopyOnWriteFs) MkdirAll(name string, perm os.FileMode) error {\n\tdir, err := IsDir(u.base, name)\n\tif err != nil {\n\t\treturn u.layer.MkdirAll(name, perm)\n\t}\n\tif dir {\n\t\treturn syscall.EEXIST\n\t}\n\treturn u.layer.MkdirAll(name, perm)\n}\n\nfunc (u *CopyOnWriteFs) Create(name string) (File, error) {\n\treturn u.OpenFile(name, os.O_CREATE|os.O_TRUNC|os.O_RDWR, 0666)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/go.mod",
    "content": "module github.com/spf13/afero\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/httpFs.go",
    "content": "// Copyright © 2014 Steve Francia <spf@spf13.com>.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage afero\n\nimport (\n\t\"errors\"\n\t\"net/http\"\n\t\"os\"\n\t\"path\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"time\"\n)\n\ntype httpDir struct {\n\tbasePath string\n\tfs       HttpFs\n}\n\nfunc (d httpDir) Open(name string) (http.File, error) {\n\tif filepath.Separator != '/' && strings.IndexRune(name, filepath.Separator) >= 0 ||\n\t\tstrings.Contains(name, \"\\x00\") {\n\t\treturn nil, errors.New(\"http: invalid character in file path\")\n\t}\n\tdir := string(d.basePath)\n\tif dir == \"\" {\n\t\tdir = \".\"\n\t}\n\n\tf, err := d.fs.Open(filepath.Join(dir, filepath.FromSlash(path.Clean(\"/\"+name))))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn f, nil\n}\n\ntype HttpFs struct {\n\tsource Fs\n}\n\nfunc NewHttpFs(source Fs) *HttpFs {\n\treturn &HttpFs{source: source}\n}\n\nfunc (h HttpFs) Dir(s string) *httpDir {\n\treturn &httpDir{basePath: s, fs: h}\n}\n\nfunc (h HttpFs) Name() string { return \"h HttpFs\" }\n\nfunc (h HttpFs) Create(name string) (File, error) {\n\treturn h.source.Create(name)\n}\n\nfunc (h HttpFs) Chmod(name string, mode os.FileMode) error {\n\treturn h.source.Chmod(name, mode)\n}\n\nfunc (h HttpFs) Chtimes(name string, atime time.Time, mtime time.Time) error {\n\treturn h.source.Chtimes(name, atime, mtime)\n}\n\nfunc (h HttpFs) Mkdir(name string, perm os.FileMode) error {\n\treturn h.source.Mkdir(name, perm)\n}\n\nfunc (h HttpFs) MkdirAll(path string, perm os.FileMode) error {\n\treturn h.source.MkdirAll(path, perm)\n}\n\nfunc (h HttpFs) Open(name string) (http.File, error) {\n\tf, err := h.source.Open(name)\n\tif err == nil {\n\t\tif httpfile, ok := f.(http.File); ok {\n\t\t\treturn httpfile, nil\n\t\t}\n\t}\n\treturn nil, err\n}\n\nfunc (h HttpFs) OpenFile(name string, flag int, perm os.FileMode) (File, error) {\n\treturn h.source.OpenFile(name, flag, perm)\n}\n\nfunc (h HttpFs) Remove(name string) error {\n\treturn h.source.Remove(name)\n}\n\nfunc (h HttpFs) RemoveAll(path string) error {\n\treturn h.source.RemoveAll(path)\n}\n\nfunc (h HttpFs) Rename(oldname, newname string) error {\n\treturn h.source.Rename(oldname, newname)\n}\n\nfunc (h HttpFs) Stat(name string) (os.FileInfo, error) {\n\treturn h.source.Stat(name)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/ioutil.go",
    "content": "// Copyright ©2015 The Go Authors\n// Copyright ©2015 Steve Francia <spf@spf13.com>\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage afero\n\nimport (\n\t\"bytes\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sort\"\n\t\"strconv\"\n\t\"sync\"\n\t\"time\"\n)\n\n// byName implements sort.Interface.\ntype byName []os.FileInfo\n\nfunc (f byName) Len() int           { return len(f) }\nfunc (f byName) Less(i, j int) bool { return f[i].Name() < f[j].Name() }\nfunc (f byName) Swap(i, j int)      { f[i], f[j] = f[j], f[i] }\n\n// ReadDir reads the directory named by dirname and returns\n// a list of sorted directory entries.\nfunc (a Afero) ReadDir(dirname string) ([]os.FileInfo, error) {\n\treturn ReadDir(a.Fs, dirname)\n}\n\nfunc ReadDir(fs Fs, dirname string) ([]os.FileInfo, error) {\n\tf, err := fs.Open(dirname)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlist, err := f.Readdir(-1)\n\tf.Close()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsort.Sort(byName(list))\n\treturn list, nil\n}\n\n// ReadFile reads the file named by filename and returns the contents.\n// A successful call returns err == nil, not err == EOF. Because ReadFile\n// reads the whole file, it does not treat an EOF from Read as an error\n// to be reported.\nfunc (a Afero) ReadFile(filename string) ([]byte, error) {\n\treturn ReadFile(a.Fs, filename)\n}\n\nfunc ReadFile(fs Fs, filename string) ([]byte, error) {\n\tf, err := fs.Open(filename)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer f.Close()\n\t// It's a good but not certain bet that FileInfo will tell us exactly how much to\n\t// read, so let's try it but be prepared for the answer to be wrong.\n\tvar n int64\n\n\tif fi, err := f.Stat(); err == nil {\n\t\t// Don't preallocate a huge buffer, just in case.\n\t\tif size := fi.Size(); size < 1e9 {\n\t\t\tn = size\n\t\t}\n\t}\n\t// As initial capacity for readAll, use n + a little extra in case Size is zero,\n\t// and to avoid another allocation after Read has filled the buffer.  The readAll\n\t// call will read into its allocated internal buffer cheaply.  If the size was\n\t// wrong, we'll either waste some space off the end or reallocate as needed, but\n\t// in the overwhelmingly common case we'll get it just right.\n\treturn readAll(f, n+bytes.MinRead)\n}\n\n// readAll reads from r until an error or EOF and returns the data it read\n// from the internal buffer allocated with a specified capacity.\nfunc readAll(r io.Reader, capacity int64) (b []byte, err error) {\n\tbuf := bytes.NewBuffer(make([]byte, 0, capacity))\n\t// If the buffer overflows, we will get bytes.ErrTooLarge.\n\t// Return that as an error. Any other panic remains.\n\tdefer func() {\n\t\te := recover()\n\t\tif e == nil {\n\t\t\treturn\n\t\t}\n\t\tif panicErr, ok := e.(error); ok && panicErr == bytes.ErrTooLarge {\n\t\t\terr = panicErr\n\t\t} else {\n\t\t\tpanic(e)\n\t\t}\n\t}()\n\t_, err = buf.ReadFrom(r)\n\treturn buf.Bytes(), err\n}\n\n// ReadAll reads from r until an error or EOF and returns the data it read.\n// A successful call returns err == nil, not err == EOF. Because ReadAll is\n// defined to read from src until EOF, it does not treat an EOF from Read\n// as an error to be reported.\nfunc ReadAll(r io.Reader) ([]byte, error) {\n\treturn readAll(r, bytes.MinRead)\n}\n\n// WriteFile writes data to a file named by filename.\n// If the file does not exist, WriteFile creates it with permissions perm;\n// otherwise WriteFile truncates it before writing.\nfunc (a Afero) WriteFile(filename string, data []byte, perm os.FileMode) error {\n\treturn WriteFile(a.Fs, filename, data, perm)\n}\n\nfunc WriteFile(fs Fs, filename string, data []byte, perm os.FileMode) error {\n\tf, err := fs.OpenFile(filename, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, perm)\n\tif err != nil {\n\t\treturn err\n\t}\n\tn, err := f.Write(data)\n\tif err == nil && n < len(data) {\n\t\terr = io.ErrShortWrite\n\t}\n\tif err1 := f.Close(); err == nil {\n\t\terr = err1\n\t}\n\treturn err\n}\n\n// Random number state.\n// We generate random temporary file names so that there's a good\n// chance the file doesn't exist yet - keeps the number of tries in\n// TempFile to a minimum.\nvar rand uint32\nvar randmu sync.Mutex\n\nfunc reseed() uint32 {\n\treturn uint32(time.Now().UnixNano() + int64(os.Getpid()))\n}\n\nfunc nextSuffix() string {\n\trandmu.Lock()\n\tr := rand\n\tif r == 0 {\n\t\tr = reseed()\n\t}\n\tr = r*1664525 + 1013904223 // constants from Numerical Recipes\n\trand = r\n\trandmu.Unlock()\n\treturn strconv.Itoa(int(1e9 + r%1e9))[1:]\n}\n\n// TempFile creates a new temporary file in the directory dir\n// with a name beginning with prefix, opens the file for reading\n// and writing, and returns the resulting *File.\n// If dir is the empty string, TempFile uses the default directory\n// for temporary files (see os.TempDir).\n// Multiple programs calling TempFile simultaneously\n// will not choose the same file.  The caller can use f.Name()\n// to find the pathname of the file.  It is the caller's responsibility\n// to remove the file when no longer needed.\nfunc (a Afero) TempFile(dir, prefix string) (f File, err error) {\n\treturn TempFile(a.Fs, dir, prefix)\n}\n\nfunc TempFile(fs Fs, dir, prefix string) (f File, err error) {\n\tif dir == \"\" {\n\t\tdir = os.TempDir()\n\t}\n\n\tnconflict := 0\n\tfor i := 0; i < 10000; i++ {\n\t\tname := filepath.Join(dir, prefix+nextSuffix())\n\t\tf, err = fs.OpenFile(name, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0600)\n\t\tif os.IsExist(err) {\n\t\t\tif nconflict++; nconflict > 10 {\n\t\t\t\trandmu.Lock()\n\t\t\t\trand = reseed()\n\t\t\t\trandmu.Unlock()\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\tbreak\n\t}\n\treturn\n}\n\n// TempDir creates a new temporary directory in the directory dir\n// with a name beginning with prefix and returns the path of the\n// new directory.  If dir is the empty string, TempDir uses the\n// default directory for temporary files (see os.TempDir).\n// Multiple programs calling TempDir simultaneously\n// will not choose the same directory.  It is the caller's responsibility\n// to remove the directory when no longer needed.\nfunc (a Afero) TempDir(dir, prefix string) (name string, err error) {\n\treturn TempDir(a.Fs, dir, prefix)\n}\nfunc TempDir(fs Fs, dir, prefix string) (name string, err error) {\n\tif dir == \"\" {\n\t\tdir = os.TempDir()\n\t}\n\n\tnconflict := 0\n\tfor i := 0; i < 10000; i++ {\n\t\ttry := filepath.Join(dir, prefix+nextSuffix())\n\t\terr = fs.Mkdir(try, 0700)\n\t\tif os.IsExist(err) {\n\t\t\tif nconflict++; nconflict > 10 {\n\t\t\t\trandmu.Lock()\n\t\t\t\trand = reseed()\n\t\t\t\trandmu.Unlock()\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\tif err == nil {\n\t\t\tname = try\n\t\t}\n\t\tbreak\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/lstater.go",
    "content": "// Copyright © 2018 Steve Francia <spf@spf13.com>.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage afero\n\nimport (\n\t\"os\"\n)\n\n// Lstater is an optional interface in Afero. It is only implemented by the\n// filesystems saying so.\n// It will call Lstat if the filesystem iself is, or it delegates to, the os filesystem.\n// Else it will call Stat.\n// In addtion to the FileInfo, it will return a boolean telling whether Lstat was called or not.\ntype Lstater interface {\n\tLstatIfPossible(name string) (os.FileInfo, bool, error)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/match.go",
    "content": "// Copyright © 2014 Steve Francia <spf@spf13.com>.\n// Copyright 2009 The Go Authors. All rights reserved.\n\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage afero\n\nimport (\n\t\"path/filepath\"\n\t\"sort\"\n\t\"strings\"\n)\n\n// Glob returns the names of all files matching pattern or nil\n// if there is no matching file. The syntax of patterns is the same\n// as in Match. The pattern may describe hierarchical names such as\n// /usr/*/bin/ed (assuming the Separator is '/').\n//\n// Glob ignores file system errors such as I/O errors reading directories.\n// The only possible returned error is ErrBadPattern, when pattern\n// is malformed.\n//\n// This was adapted from (http://golang.org/pkg/path/filepath) and uses several\n// built-ins from that package.\nfunc Glob(fs Fs, pattern string) (matches []string, err error) {\n\tif !hasMeta(pattern) {\n\t\t// Lstat not supported by a ll filesystems.\n\t\tif _, err = lstatIfPossible(fs, pattern); err != nil {\n\t\t\treturn nil, nil\n\t\t}\n\t\treturn []string{pattern}, nil\n\t}\n\n\tdir, file := filepath.Split(pattern)\n\tswitch dir {\n\tcase \"\":\n\t\tdir = \".\"\n\tcase string(filepath.Separator):\n\t// nothing\n\tdefault:\n\t\tdir = dir[0 : len(dir)-1] // chop off trailing separator\n\t}\n\n\tif !hasMeta(dir) {\n\t\treturn glob(fs, dir, file, nil)\n\t}\n\n\tvar m []string\n\tm, err = Glob(fs, dir)\n\tif err != nil {\n\t\treturn\n\t}\n\tfor _, d := range m {\n\t\tmatches, err = glob(fs, d, file, matches)\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t}\n\treturn\n}\n\n// glob searches for files matching pattern in the directory dir\n// and appends them to matches. If the directory cannot be\n// opened, it returns the existing matches. New matches are\n// added in lexicographical order.\nfunc glob(fs Fs, dir, pattern string, matches []string) (m []string, e error) {\n\tm = matches\n\tfi, err := fs.Stat(dir)\n\tif err != nil {\n\t\treturn\n\t}\n\tif !fi.IsDir() {\n\t\treturn\n\t}\n\td, err := fs.Open(dir)\n\tif err != nil {\n\t\treturn\n\t}\n\tdefer d.Close()\n\n\tnames, _ := d.Readdirnames(-1)\n\tsort.Strings(names)\n\n\tfor _, n := range names {\n\t\tmatched, err := filepath.Match(pattern, n)\n\t\tif err != nil {\n\t\t\treturn m, err\n\t\t}\n\t\tif matched {\n\t\t\tm = append(m, filepath.Join(dir, n))\n\t\t}\n\t}\n\treturn\n}\n\n// hasMeta reports whether path contains any of the magic characters\n// recognized by Match.\nfunc hasMeta(path string) bool {\n\t// TODO(niemeyer): Should other magic characters be added here?\n\treturn strings.IndexAny(path, \"*?[\") >= 0\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/mem/dir.go",
    "content": "// Copyright © 2014 Steve Francia <spf@spf13.com>.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage mem\n\ntype Dir interface {\n\tLen() int\n\tNames() []string\n\tFiles() []*FileData\n\tAdd(*FileData)\n\tRemove(*FileData)\n}\n\nfunc RemoveFromMemDir(dir *FileData, f *FileData) {\n\tdir.memDir.Remove(f)\n}\n\nfunc AddToMemDir(dir *FileData, f *FileData) {\n\tdir.memDir.Add(f)\n}\n\nfunc InitializeDir(d *FileData) {\n\tif d.memDir == nil {\n\t\td.dir = true\n\t\td.memDir = &DirMap{}\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/mem/dirmap.go",
    "content": "// Copyright © 2015 Steve Francia <spf@spf13.com>.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage mem\n\nimport \"sort\"\n\ntype DirMap map[string]*FileData\n\nfunc (m DirMap) Len() int           { return len(m) }\nfunc (m DirMap) Add(f *FileData)    { m[f.name] = f }\nfunc (m DirMap) Remove(f *FileData) { delete(m, f.name) }\nfunc (m DirMap) Files() (files []*FileData) {\n\tfor _, f := range m {\n\t\tfiles = append(files, f)\n\t}\n\tsort.Sort(filesSorter(files))\n\treturn files\n}\n\n// implement sort.Interface for []*FileData\ntype filesSorter []*FileData\n\nfunc (s filesSorter) Len() int           { return len(s) }\nfunc (s filesSorter) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }\nfunc (s filesSorter) Less(i, j int) bool { return s[i].name < s[j].name }\n\nfunc (m DirMap) Names() (names []string) {\n\tfor x := range m {\n\t\tnames = append(names, x)\n\t}\n\treturn names\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/mem/file.go",
    "content": "// Copyright © 2015 Steve Francia <spf@spf13.com>.\n// Copyright 2013 tsuru authors. All rights reserved.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage mem\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sync\"\n\t\"sync/atomic\"\n)\n\nimport \"time\"\n\nconst FilePathSeparator = string(filepath.Separator)\n\ntype File struct {\n\t// atomic requires 64-bit alignment for struct field access\n\tat           int64\n\treadDirCount int64\n\tclosed       bool\n\treadOnly     bool\n\tfileData     *FileData\n}\n\nfunc NewFileHandle(data *FileData) *File {\n\treturn &File{fileData: data}\n}\n\nfunc NewReadOnlyFileHandle(data *FileData) *File {\n\treturn &File{fileData: data, readOnly: true}\n}\n\nfunc (f File) Data() *FileData {\n\treturn f.fileData\n}\n\ntype FileData struct {\n\tsync.Mutex\n\tname    string\n\tdata    []byte\n\tmemDir  Dir\n\tdir     bool\n\tmode    os.FileMode\n\tmodtime time.Time\n}\n\nfunc (d *FileData) Name() string {\n\td.Lock()\n\tdefer d.Unlock()\n\treturn d.name\n}\n\nfunc CreateFile(name string) *FileData {\n\treturn &FileData{name: name, mode: os.ModeTemporary, modtime: time.Now()}\n}\n\nfunc CreateDir(name string) *FileData {\n\treturn &FileData{name: name, memDir: &DirMap{}, dir: true}\n}\n\nfunc ChangeFileName(f *FileData, newname string) {\n\tf.Lock()\n\tf.name = newname\n\tf.Unlock()\n}\n\nfunc SetMode(f *FileData, mode os.FileMode) {\n\tf.Lock()\n\tf.mode = mode\n\tf.Unlock()\n}\n\nfunc SetModTime(f *FileData, mtime time.Time) {\n\tf.Lock()\n\tsetModTime(f, mtime)\n\tf.Unlock()\n}\n\nfunc setModTime(f *FileData, mtime time.Time) {\n\tf.modtime = mtime\n}\n\nfunc GetFileInfo(f *FileData) *FileInfo {\n\treturn &FileInfo{f}\n}\n\nfunc (f *File) Open() error {\n\tatomic.StoreInt64(&f.at, 0)\n\tatomic.StoreInt64(&f.readDirCount, 0)\n\tf.fileData.Lock()\n\tf.closed = false\n\tf.fileData.Unlock()\n\treturn nil\n}\n\nfunc (f *File) Close() error {\n\tf.fileData.Lock()\n\tf.closed = true\n\tif !f.readOnly {\n\t\tsetModTime(f.fileData, time.Now())\n\t}\n\tf.fileData.Unlock()\n\treturn nil\n}\n\nfunc (f *File) Name() string {\n\treturn f.fileData.Name()\n}\n\nfunc (f *File) Stat() (os.FileInfo, error) {\n\treturn &FileInfo{f.fileData}, nil\n}\n\nfunc (f *File) Sync() error {\n\treturn nil\n}\n\nfunc (f *File) Readdir(count int) (res []os.FileInfo, err error) {\n\tif !f.fileData.dir {\n\t\treturn nil, &os.PathError{Op: \"readdir\", Path: f.fileData.name, Err: errors.New(\"not a dir\")}\n\t}\n\tvar outLength int64\n\n\tf.fileData.Lock()\n\tfiles := f.fileData.memDir.Files()[f.readDirCount:]\n\tif count > 0 {\n\t\tif len(files) < count {\n\t\t\toutLength = int64(len(files))\n\t\t} else {\n\t\t\toutLength = int64(count)\n\t\t}\n\t\tif len(files) == 0 {\n\t\t\terr = io.EOF\n\t\t}\n\t} else {\n\t\toutLength = int64(len(files))\n\t}\n\tf.readDirCount += outLength\n\tf.fileData.Unlock()\n\n\tres = make([]os.FileInfo, outLength)\n\tfor i := range res {\n\t\tres[i] = &FileInfo{files[i]}\n\t}\n\n\treturn res, err\n}\n\nfunc (f *File) Readdirnames(n int) (names []string, err error) {\n\tfi, err := f.Readdir(n)\n\tnames = make([]string, len(fi))\n\tfor i, f := range fi {\n\t\t_, names[i] = filepath.Split(f.Name())\n\t}\n\treturn names, err\n}\n\nfunc (f *File) Read(b []byte) (n int, err error) {\n\tf.fileData.Lock()\n\tdefer f.fileData.Unlock()\n\tif f.closed == true {\n\t\treturn 0, ErrFileClosed\n\t}\n\tif len(b) > 0 && int(f.at) == len(f.fileData.data) {\n\t\treturn 0, io.EOF\n\t}\n\tif int(f.at) > len(f.fileData.data) {\n\t\treturn 0, io.ErrUnexpectedEOF\n\t}\n\tif len(f.fileData.data)-int(f.at) >= len(b) {\n\t\tn = len(b)\n\t} else {\n\t\tn = len(f.fileData.data) - int(f.at)\n\t}\n\tcopy(b, f.fileData.data[f.at:f.at+int64(n)])\n\tatomic.AddInt64(&f.at, int64(n))\n\treturn\n}\n\nfunc (f *File) ReadAt(b []byte, off int64) (n int, err error) {\n\tatomic.StoreInt64(&f.at, off)\n\treturn f.Read(b)\n}\n\nfunc (f *File) Truncate(size int64) error {\n\tif f.closed == true {\n\t\treturn ErrFileClosed\n\t}\n\tif f.readOnly {\n\t\treturn &os.PathError{Op: \"truncate\", Path: f.fileData.name, Err: errors.New(\"file handle is read only\")}\n\t}\n\tif size < 0 {\n\t\treturn ErrOutOfRange\n\t}\n\tif size > int64(len(f.fileData.data)) {\n\t\tdiff := size - int64(len(f.fileData.data))\n\t\tf.fileData.data = append(f.fileData.data, bytes.Repeat([]byte{00}, int(diff))...)\n\t} else {\n\t\tf.fileData.data = f.fileData.data[0:size]\n\t}\n\tsetModTime(f.fileData, time.Now())\n\treturn nil\n}\n\nfunc (f *File) Seek(offset int64, whence int) (int64, error) {\n\tif f.closed == true {\n\t\treturn 0, ErrFileClosed\n\t}\n\tswitch whence {\n\tcase 0:\n\t\tatomic.StoreInt64(&f.at, offset)\n\tcase 1:\n\t\tatomic.AddInt64(&f.at, int64(offset))\n\tcase 2:\n\t\tatomic.StoreInt64(&f.at, int64(len(f.fileData.data))+offset)\n\t}\n\treturn f.at, nil\n}\n\nfunc (f *File) Write(b []byte) (n int, err error) {\n\tif f.readOnly {\n\t\treturn 0, &os.PathError{Op: \"write\", Path: f.fileData.name, Err: errors.New(\"file handle is read only\")}\n\t}\n\tn = len(b)\n\tcur := atomic.LoadInt64(&f.at)\n\tf.fileData.Lock()\n\tdefer f.fileData.Unlock()\n\tdiff := cur - int64(len(f.fileData.data))\n\tvar tail []byte\n\tif n+int(cur) < len(f.fileData.data) {\n\t\ttail = f.fileData.data[n+int(cur):]\n\t}\n\tif diff > 0 {\n\t\tf.fileData.data = append(bytes.Repeat([]byte{00}, int(diff)), b...)\n\t\tf.fileData.data = append(f.fileData.data, tail...)\n\t} else {\n\t\tf.fileData.data = append(f.fileData.data[:cur], b...)\n\t\tf.fileData.data = append(f.fileData.data, tail...)\n\t}\n\tsetModTime(f.fileData, time.Now())\n\n\tatomic.StoreInt64(&f.at, int64(len(f.fileData.data)))\n\treturn\n}\n\nfunc (f *File) WriteAt(b []byte, off int64) (n int, err error) {\n\tatomic.StoreInt64(&f.at, off)\n\treturn f.Write(b)\n}\n\nfunc (f *File) WriteString(s string) (ret int, err error) {\n\treturn f.Write([]byte(s))\n}\n\nfunc (f *File) Info() *FileInfo {\n\treturn &FileInfo{f.fileData}\n}\n\ntype FileInfo struct {\n\t*FileData\n}\n\n// Implements os.FileInfo\nfunc (s *FileInfo) Name() string {\n\ts.Lock()\n\t_, name := filepath.Split(s.name)\n\ts.Unlock()\n\treturn name\n}\nfunc (s *FileInfo) Mode() os.FileMode {\n\ts.Lock()\n\tdefer s.Unlock()\n\treturn s.mode\n}\nfunc (s *FileInfo) ModTime() time.Time {\n\ts.Lock()\n\tdefer s.Unlock()\n\treturn s.modtime\n}\nfunc (s *FileInfo) IsDir() bool {\n\ts.Lock()\n\tdefer s.Unlock()\n\treturn s.dir\n}\nfunc (s *FileInfo) Sys() interface{} { return nil }\nfunc (s *FileInfo) Size() int64 {\n\tif s.IsDir() {\n\t\treturn int64(42)\n\t}\n\ts.Lock()\n\tdefer s.Unlock()\n\treturn int64(len(s.data))\n}\n\nvar (\n\tErrFileClosed        = errors.New(\"File is closed\")\n\tErrOutOfRange        = errors.New(\"Out of range\")\n\tErrTooLarge          = errors.New(\"Too large\")\n\tErrFileNotFound      = os.ErrNotExist\n\tErrFileExists        = os.ErrExist\n\tErrDestinationExists = os.ErrExist\n)\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/memmap.go",
    "content": "// Copyright © 2014 Steve Francia <spf@spf13.com>.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage afero\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/spf13/afero/mem\"\n)\n\ntype MemMapFs struct {\n\tmu   sync.RWMutex\n\tdata map[string]*mem.FileData\n\tinit sync.Once\n}\n\nfunc NewMemMapFs() Fs {\n\treturn &MemMapFs{}\n}\n\nfunc (m *MemMapFs) getData() map[string]*mem.FileData {\n\tm.init.Do(func() {\n\t\tm.data = make(map[string]*mem.FileData)\n\t\t// Root should always exist, right?\n\t\t// TODO: what about windows?\n\t\tm.data[FilePathSeparator] = mem.CreateDir(FilePathSeparator)\n\t})\n\treturn m.data\n}\n\nfunc (*MemMapFs) Name() string { return \"MemMapFS\" }\n\nfunc (m *MemMapFs) Create(name string) (File, error) {\n\tname = normalizePath(name)\n\tm.mu.Lock()\n\tfile := mem.CreateFile(name)\n\tm.getData()[name] = file\n\tm.registerWithParent(file)\n\tm.mu.Unlock()\n\treturn mem.NewFileHandle(file), nil\n}\n\nfunc (m *MemMapFs) unRegisterWithParent(fileName string) error {\n\tf, err := m.lockfreeOpen(fileName)\n\tif err != nil {\n\t\treturn err\n\t}\n\tparent := m.findParent(f)\n\tif parent == nil {\n\t\tlog.Panic(\"parent of \", f.Name(), \" is nil\")\n\t}\n\n\tparent.Lock()\n\tmem.RemoveFromMemDir(parent, f)\n\tparent.Unlock()\n\treturn nil\n}\n\nfunc (m *MemMapFs) findParent(f *mem.FileData) *mem.FileData {\n\tpdir, _ := filepath.Split(f.Name())\n\tpdir = filepath.Clean(pdir)\n\tpfile, err := m.lockfreeOpen(pdir)\n\tif err != nil {\n\t\treturn nil\n\t}\n\treturn pfile\n}\n\nfunc (m *MemMapFs) registerWithParent(f *mem.FileData) {\n\tif f == nil {\n\t\treturn\n\t}\n\tparent := m.findParent(f)\n\tif parent == nil {\n\t\tpdir := filepath.Dir(filepath.Clean(f.Name()))\n\t\terr := m.lockfreeMkdir(pdir, 0777)\n\t\tif err != nil {\n\t\t\t//log.Println(\"Mkdir error:\", err)\n\t\t\treturn\n\t\t}\n\t\tparent, err = m.lockfreeOpen(pdir)\n\t\tif err != nil {\n\t\t\t//log.Println(\"Open after Mkdir error:\", err)\n\t\t\treturn\n\t\t}\n\t}\n\n\tparent.Lock()\n\tmem.InitializeDir(parent)\n\tmem.AddToMemDir(parent, f)\n\tparent.Unlock()\n}\n\nfunc (m *MemMapFs) lockfreeMkdir(name string, perm os.FileMode) error {\n\tname = normalizePath(name)\n\tx, ok := m.getData()[name]\n\tif ok {\n\t\t// Only return ErrFileExists if it's a file, not a directory.\n\t\ti := mem.FileInfo{FileData: x}\n\t\tif !i.IsDir() {\n\t\t\treturn ErrFileExists\n\t\t}\n\t} else {\n\t\titem := mem.CreateDir(name)\n\t\tm.getData()[name] = item\n\t\tm.registerWithParent(item)\n\t}\n\treturn nil\n}\n\nfunc (m *MemMapFs) Mkdir(name string, perm os.FileMode) error {\n\tname = normalizePath(name)\n\n\tm.mu.RLock()\n\t_, ok := m.getData()[name]\n\tm.mu.RUnlock()\n\tif ok {\n\t\treturn &os.PathError{Op: \"mkdir\", Path: name, Err: ErrFileExists}\n\t}\n\n\tm.mu.Lock()\n\titem := mem.CreateDir(name)\n\tm.getData()[name] = item\n\tm.registerWithParent(item)\n\tm.mu.Unlock()\n\n\tm.Chmod(name, perm|os.ModeDir)\n\n\treturn nil\n}\n\nfunc (m *MemMapFs) MkdirAll(path string, perm os.FileMode) error {\n\terr := m.Mkdir(path, perm)\n\tif err != nil {\n\t\tif err.(*os.PathError).Err == ErrFileExists {\n\t\t\treturn nil\n\t\t}\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// Handle some relative paths\nfunc normalizePath(path string) string {\n\tpath = filepath.Clean(path)\n\n\tswitch path {\n\tcase \".\":\n\t\treturn FilePathSeparator\n\tcase \"..\":\n\t\treturn FilePathSeparator\n\tdefault:\n\t\treturn path\n\t}\n}\n\nfunc (m *MemMapFs) Open(name string) (File, error) {\n\tf, err := m.open(name)\n\tif f != nil {\n\t\treturn mem.NewReadOnlyFileHandle(f), err\n\t}\n\treturn nil, err\n}\n\nfunc (m *MemMapFs) openWrite(name string) (File, error) {\n\tf, err := m.open(name)\n\tif f != nil {\n\t\treturn mem.NewFileHandle(f), err\n\t}\n\treturn nil, err\n}\n\nfunc (m *MemMapFs) open(name string) (*mem.FileData, error) {\n\tname = normalizePath(name)\n\n\tm.mu.RLock()\n\tf, ok := m.getData()[name]\n\tm.mu.RUnlock()\n\tif !ok {\n\t\treturn nil, &os.PathError{Op: \"open\", Path: name, Err: ErrFileNotFound}\n\t}\n\treturn f, nil\n}\n\nfunc (m *MemMapFs) lockfreeOpen(name string) (*mem.FileData, error) {\n\tname = normalizePath(name)\n\tf, ok := m.getData()[name]\n\tif ok {\n\t\treturn f, nil\n\t} else {\n\t\treturn nil, ErrFileNotFound\n\t}\n}\n\nfunc (m *MemMapFs) OpenFile(name string, flag int, perm os.FileMode) (File, error) {\n\tchmod := false\n\tfile, err := m.openWrite(name)\n\tif os.IsNotExist(err) && (flag&os.O_CREATE > 0) {\n\t\tfile, err = m.Create(name)\n\t\tchmod = true\n\t}\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif flag == os.O_RDONLY {\n\t\tfile = mem.NewReadOnlyFileHandle(file.(*mem.File).Data())\n\t}\n\tif flag&os.O_APPEND > 0 {\n\t\t_, err = file.Seek(0, os.SEEK_END)\n\t\tif err != nil {\n\t\t\tfile.Close()\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tif flag&os.O_TRUNC > 0 && flag&(os.O_RDWR|os.O_WRONLY) > 0 {\n\t\terr = file.Truncate(0)\n\t\tif err != nil {\n\t\t\tfile.Close()\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tif chmod {\n\t\tm.Chmod(name, perm)\n\t}\n\treturn file, nil\n}\n\nfunc (m *MemMapFs) Remove(name string) error {\n\tname = normalizePath(name)\n\n\tm.mu.Lock()\n\tdefer m.mu.Unlock()\n\n\tif _, ok := m.getData()[name]; ok {\n\t\terr := m.unRegisterWithParent(name)\n\t\tif err != nil {\n\t\t\treturn &os.PathError{Op: \"remove\", Path: name, Err: err}\n\t\t}\n\t\tdelete(m.getData(), name)\n\t} else {\n\t\treturn &os.PathError{Op: \"remove\", Path: name, Err: os.ErrNotExist}\n\t}\n\treturn nil\n}\n\nfunc (m *MemMapFs) RemoveAll(path string) error {\n\tpath = normalizePath(path)\n\tm.mu.Lock()\n\tm.unRegisterWithParent(path)\n\tm.mu.Unlock()\n\n\tm.mu.RLock()\n\tdefer m.mu.RUnlock()\n\n\tfor p, _ := range m.getData() {\n\t\tif strings.HasPrefix(p, path) {\n\t\t\tm.mu.RUnlock()\n\t\t\tm.mu.Lock()\n\t\t\tdelete(m.getData(), p)\n\t\t\tm.mu.Unlock()\n\t\t\tm.mu.RLock()\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (m *MemMapFs) Rename(oldname, newname string) error {\n\toldname = normalizePath(oldname)\n\tnewname = normalizePath(newname)\n\n\tif oldname == newname {\n\t\treturn nil\n\t}\n\n\tm.mu.RLock()\n\tdefer m.mu.RUnlock()\n\tif _, ok := m.getData()[oldname]; ok {\n\t\tm.mu.RUnlock()\n\t\tm.mu.Lock()\n\t\tm.unRegisterWithParent(oldname)\n\t\tfileData := m.getData()[oldname]\n\t\tdelete(m.getData(), oldname)\n\t\tmem.ChangeFileName(fileData, newname)\n\t\tm.getData()[newname] = fileData\n\t\tm.registerWithParent(fileData)\n\t\tm.mu.Unlock()\n\t\tm.mu.RLock()\n\t} else {\n\t\treturn &os.PathError{Op: \"rename\", Path: oldname, Err: ErrFileNotFound}\n\t}\n\treturn nil\n}\n\nfunc (m *MemMapFs) Stat(name string) (os.FileInfo, error) {\n\tf, err := m.Open(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfi := mem.GetFileInfo(f.(*mem.File).Data())\n\treturn fi, nil\n}\n\nfunc (m *MemMapFs) Chmod(name string, mode os.FileMode) error {\n\tname = normalizePath(name)\n\n\tm.mu.RLock()\n\tf, ok := m.getData()[name]\n\tm.mu.RUnlock()\n\tif !ok {\n\t\treturn &os.PathError{Op: \"chmod\", Path: name, Err: ErrFileNotFound}\n\t}\n\n\tm.mu.Lock()\n\tmem.SetMode(f, mode)\n\tm.mu.Unlock()\n\n\treturn nil\n}\n\nfunc (m *MemMapFs) Chtimes(name string, atime time.Time, mtime time.Time) error {\n\tname = normalizePath(name)\n\n\tm.mu.RLock()\n\tf, ok := m.getData()[name]\n\tm.mu.RUnlock()\n\tif !ok {\n\t\treturn &os.PathError{Op: \"chtimes\", Path: name, Err: ErrFileNotFound}\n\t}\n\n\tm.mu.Lock()\n\tmem.SetModTime(f, mtime)\n\tm.mu.Unlock()\n\n\treturn nil\n}\n\nfunc (m *MemMapFs) List() {\n\tfor _, x := range m.data {\n\t\ty := mem.FileInfo{FileData: x}\n\t\tfmt.Println(x.Name(), y.Size())\n\t}\n}\n\n// func debugMemMapList(fs Fs) {\n// \tif x, ok := fs.(*MemMapFs); ok {\n// \t\tx.List()\n// \t}\n// }\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/os.go",
    "content": "// Copyright © 2014 Steve Francia <spf@spf13.com>.\n// Copyright 2013 tsuru authors. All rights reserved.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage afero\n\nimport (\n\t\"os\"\n\t\"time\"\n)\n\nvar _ Lstater = (*OsFs)(nil)\n\n// OsFs is a Fs implementation that uses functions provided by the os package.\n//\n// For details in any method, check the documentation of the os package\n// (http://golang.org/pkg/os/).\ntype OsFs struct{}\n\nfunc NewOsFs() Fs {\n\treturn &OsFs{}\n}\n\nfunc (OsFs) Name() string { return \"OsFs\" }\n\nfunc (OsFs) Create(name string) (File, error) {\n\tf, e := os.Create(name)\n\tif f == nil {\n\t\t// while this looks strange, we need to return a bare nil (of type nil) not\n\t\t// a nil value of type *os.File or nil won't be nil\n\t\treturn nil, e\n\t}\n\treturn f, e\n}\n\nfunc (OsFs) Mkdir(name string, perm os.FileMode) error {\n\treturn os.Mkdir(name, perm)\n}\n\nfunc (OsFs) MkdirAll(path string, perm os.FileMode) error {\n\treturn os.MkdirAll(path, perm)\n}\n\nfunc (OsFs) Open(name string) (File, error) {\n\tf, e := os.Open(name)\n\tif f == nil {\n\t\t// while this looks strange, we need to return a bare nil (of type nil) not\n\t\t// a nil value of type *os.File or nil won't be nil\n\t\treturn nil, e\n\t}\n\treturn f, e\n}\n\nfunc (OsFs) OpenFile(name string, flag int, perm os.FileMode) (File, error) {\n\tf, e := os.OpenFile(name, flag, perm)\n\tif f == nil {\n\t\t// while this looks strange, we need to return a bare nil (of type nil) not\n\t\t// a nil value of type *os.File or nil won't be nil\n\t\treturn nil, e\n\t}\n\treturn f, e\n}\n\nfunc (OsFs) Remove(name string) error {\n\treturn os.Remove(name)\n}\n\nfunc (OsFs) RemoveAll(path string) error {\n\treturn os.RemoveAll(path)\n}\n\nfunc (OsFs) Rename(oldname, newname string) error {\n\treturn os.Rename(oldname, newname)\n}\n\nfunc (OsFs) Stat(name string) (os.FileInfo, error) {\n\treturn os.Stat(name)\n}\n\nfunc (OsFs) Chmod(name string, mode os.FileMode) error {\n\treturn os.Chmod(name, mode)\n}\n\nfunc (OsFs) Chtimes(name string, atime time.Time, mtime time.Time) error {\n\treturn os.Chtimes(name, atime, mtime)\n}\n\nfunc (OsFs) LstatIfPossible(name string) (os.FileInfo, bool, error) {\n\tfi, err := os.Lstat(name)\n\treturn fi, true, err\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/path.go",
    "content": "// Copyright ©2015 The Go Authors\n// Copyright ©2015 Steve Francia <spf@spf13.com>\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage afero\n\nimport (\n\t\"os\"\n\t\"path/filepath\"\n\t\"sort\"\n)\n\n// readDirNames reads the directory named by dirname and returns\n// a sorted list of directory entries.\n// adapted from https://golang.org/src/path/filepath/path.go\nfunc readDirNames(fs Fs, dirname string) ([]string, error) {\n\tf, err := fs.Open(dirname)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tnames, err := f.Readdirnames(-1)\n\tf.Close()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsort.Strings(names)\n\treturn names, nil\n}\n\n// walk recursively descends path, calling walkFn\n// adapted from https://golang.org/src/path/filepath/path.go\nfunc walk(fs Fs, path string, info os.FileInfo, walkFn filepath.WalkFunc) error {\n\terr := walkFn(path, info, nil)\n\tif err != nil {\n\t\tif info.IsDir() && err == filepath.SkipDir {\n\t\t\treturn nil\n\t\t}\n\t\treturn err\n\t}\n\n\tif !info.IsDir() {\n\t\treturn nil\n\t}\n\n\tnames, err := readDirNames(fs, path)\n\tif err != nil {\n\t\treturn walkFn(path, info, err)\n\t}\n\n\tfor _, name := range names {\n\t\tfilename := filepath.Join(path, name)\n\t\tfileInfo, err := lstatIfPossible(fs, filename)\n\t\tif err != nil {\n\t\t\tif err := walkFn(filename, fileInfo, err); err != nil && err != filepath.SkipDir {\n\t\t\t\treturn err\n\t\t\t}\n\t\t} else {\n\t\t\terr = walk(fs, filename, fileInfo, walkFn)\n\t\t\tif err != nil {\n\t\t\t\tif !fileInfo.IsDir() || err != filepath.SkipDir {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\n// if the filesystem supports it, use Lstat, else use fs.Stat\nfunc lstatIfPossible(fs Fs, path string) (os.FileInfo, error) {\n\tif lfs, ok := fs.(Lstater); ok {\n\t\tfi, _, err := lfs.LstatIfPossible(path)\n\t\treturn fi, err\n\t}\n\treturn fs.Stat(path)\n}\n\n// Walk walks the file tree rooted at root, calling walkFn for each file or\n// directory in the tree, including root. All errors that arise visiting files\n// and directories are filtered by walkFn. The files are walked in lexical\n// order, which makes the output deterministic but means that for very\n// large directories Walk can be inefficient.\n// Walk does not follow symbolic links.\n\nfunc (a Afero) Walk(root string, walkFn filepath.WalkFunc) error {\n\treturn Walk(a.Fs, root, walkFn)\n}\n\nfunc Walk(fs Fs, root string, walkFn filepath.WalkFunc) error {\n\tinfo, err := lstatIfPossible(fs, root)\n\tif err != nil {\n\t\treturn walkFn(root, nil, err)\n\t}\n\treturn walk(fs, root, info, walkFn)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/readonlyfs.go",
    "content": "package afero\n\nimport (\n\t\"os\"\n\t\"syscall\"\n\t\"time\"\n)\n\nvar _ Lstater = (*ReadOnlyFs)(nil)\n\ntype ReadOnlyFs struct {\n\tsource Fs\n}\n\nfunc NewReadOnlyFs(source Fs) Fs {\n\treturn &ReadOnlyFs{source: source}\n}\n\nfunc (r *ReadOnlyFs) ReadDir(name string) ([]os.FileInfo, error) {\n\treturn ReadDir(r.source, name)\n}\n\nfunc (r *ReadOnlyFs) Chtimes(n string, a, m time.Time) error {\n\treturn syscall.EPERM\n}\n\nfunc (r *ReadOnlyFs) Chmod(n string, m os.FileMode) error {\n\treturn syscall.EPERM\n}\n\nfunc (r *ReadOnlyFs) Name() string {\n\treturn \"ReadOnlyFilter\"\n}\n\nfunc (r *ReadOnlyFs) Stat(name string) (os.FileInfo, error) {\n\treturn r.source.Stat(name)\n}\n\nfunc (r *ReadOnlyFs) LstatIfPossible(name string) (os.FileInfo, bool, error) {\n\tif lsf, ok := r.source.(Lstater); ok {\n\t\treturn lsf.LstatIfPossible(name)\n\t}\n\tfi, err := r.Stat(name)\n\treturn fi, false, err\n}\n\nfunc (r *ReadOnlyFs) Rename(o, n string) error {\n\treturn syscall.EPERM\n}\n\nfunc (r *ReadOnlyFs) RemoveAll(p string) error {\n\treturn syscall.EPERM\n}\n\nfunc (r *ReadOnlyFs) Remove(n string) error {\n\treturn syscall.EPERM\n}\n\nfunc (r *ReadOnlyFs) OpenFile(name string, flag int, perm os.FileMode) (File, error) {\n\tif flag&(os.O_WRONLY|syscall.O_RDWR|os.O_APPEND|os.O_CREATE|os.O_TRUNC) != 0 {\n\t\treturn nil, syscall.EPERM\n\t}\n\treturn r.source.OpenFile(name, flag, perm)\n}\n\nfunc (r *ReadOnlyFs) Open(n string) (File, error) {\n\treturn r.source.Open(n)\n}\n\nfunc (r *ReadOnlyFs) Mkdir(n string, p os.FileMode) error {\n\treturn syscall.EPERM\n}\n\nfunc (r *ReadOnlyFs) MkdirAll(n string, p os.FileMode) error {\n\treturn syscall.EPERM\n}\n\nfunc (r *ReadOnlyFs) Create(n string) (File, error) {\n\treturn nil, syscall.EPERM\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/regexpfs.go",
    "content": "package afero\n\nimport (\n\t\"os\"\n\t\"regexp\"\n\t\"syscall\"\n\t\"time\"\n)\n\n// The RegexpFs filters files (not directories) by regular expression. Only\n// files matching the given regexp will be allowed, all others get a ENOENT error (\n// \"No such file or directory\").\n//\ntype RegexpFs struct {\n\tre     *regexp.Regexp\n\tsource Fs\n}\n\nfunc NewRegexpFs(source Fs, re *regexp.Regexp) Fs {\n\treturn &RegexpFs{source: source, re: re}\n}\n\ntype RegexpFile struct {\n\tf  File\n\tre *regexp.Regexp\n}\n\nfunc (r *RegexpFs) matchesName(name string) error {\n\tif r.re == nil {\n\t\treturn nil\n\t}\n\tif r.re.MatchString(name) {\n\t\treturn nil\n\t}\n\treturn syscall.ENOENT\n}\n\nfunc (r *RegexpFs) dirOrMatches(name string) error {\n\tdir, err := IsDir(r.source, name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif dir {\n\t\treturn nil\n\t}\n\treturn r.matchesName(name)\n}\n\nfunc (r *RegexpFs) Chtimes(name string, a, m time.Time) error {\n\tif err := r.dirOrMatches(name); err != nil {\n\t\treturn err\n\t}\n\treturn r.source.Chtimes(name, a, m)\n}\n\nfunc (r *RegexpFs) Chmod(name string, mode os.FileMode) error {\n\tif err := r.dirOrMatches(name); err != nil {\n\t\treturn err\n\t}\n\treturn r.source.Chmod(name, mode)\n}\n\nfunc (r *RegexpFs) Name() string {\n\treturn \"RegexpFs\"\n}\n\nfunc (r *RegexpFs) Stat(name string) (os.FileInfo, error) {\n\tif err := r.dirOrMatches(name); err != nil {\n\t\treturn nil, err\n\t}\n\treturn r.source.Stat(name)\n}\n\nfunc (r *RegexpFs) Rename(oldname, newname string) error {\n\tdir, err := IsDir(r.source, oldname)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif dir {\n\t\treturn nil\n\t}\n\tif err := r.matchesName(oldname); err != nil {\n\t\treturn err\n\t}\n\tif err := r.matchesName(newname); err != nil {\n\t\treturn err\n\t}\n\treturn r.source.Rename(oldname, newname)\n}\n\nfunc (r *RegexpFs) RemoveAll(p string) error {\n\tdir, err := IsDir(r.source, p)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif !dir {\n\t\tif err := r.matchesName(p); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn r.source.RemoveAll(p)\n}\n\nfunc (r *RegexpFs) Remove(name string) error {\n\tif err := r.dirOrMatches(name); err != nil {\n\t\treturn err\n\t}\n\treturn r.source.Remove(name)\n}\n\nfunc (r *RegexpFs) OpenFile(name string, flag int, perm os.FileMode) (File, error) {\n\tif err := r.dirOrMatches(name); err != nil {\n\t\treturn nil, err\n\t}\n\treturn r.source.OpenFile(name, flag, perm)\n}\n\nfunc (r *RegexpFs) Open(name string) (File, error) {\n\tdir, err := IsDir(r.source, name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif !dir {\n\t\tif err := r.matchesName(name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tf, err := r.source.Open(name)\n\treturn &RegexpFile{f: f, re: r.re}, nil\n}\n\nfunc (r *RegexpFs) Mkdir(n string, p os.FileMode) error {\n\treturn r.source.Mkdir(n, p)\n}\n\nfunc (r *RegexpFs) MkdirAll(n string, p os.FileMode) error {\n\treturn r.source.MkdirAll(n, p)\n}\n\nfunc (r *RegexpFs) Create(name string) (File, error) {\n\tif err := r.matchesName(name); err != nil {\n\t\treturn nil, err\n\t}\n\treturn r.source.Create(name)\n}\n\nfunc (f *RegexpFile) Close() error {\n\treturn f.f.Close()\n}\n\nfunc (f *RegexpFile) Read(s []byte) (int, error) {\n\treturn f.f.Read(s)\n}\n\nfunc (f *RegexpFile) ReadAt(s []byte, o int64) (int, error) {\n\treturn f.f.ReadAt(s, o)\n}\n\nfunc (f *RegexpFile) Seek(o int64, w int) (int64, error) {\n\treturn f.f.Seek(o, w)\n}\n\nfunc (f *RegexpFile) Write(s []byte) (int, error) {\n\treturn f.f.Write(s)\n}\n\nfunc (f *RegexpFile) WriteAt(s []byte, o int64) (int, error) {\n\treturn f.f.WriteAt(s, o)\n}\n\nfunc (f *RegexpFile) Name() string {\n\treturn f.f.Name()\n}\n\nfunc (f *RegexpFile) Readdir(c int) (fi []os.FileInfo, err error) {\n\tvar rfi []os.FileInfo\n\trfi, err = f.f.Readdir(c)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfor _, i := range rfi {\n\t\tif i.IsDir() || f.re.MatchString(i.Name()) {\n\t\t\tfi = append(fi, i)\n\t\t}\n\t}\n\treturn fi, nil\n}\n\nfunc (f *RegexpFile) Readdirnames(c int) (n []string, err error) {\n\tfi, err := f.Readdir(c)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfor _, s := range fi {\n\t\tn = append(n, s.Name())\n\t}\n\treturn n, nil\n}\n\nfunc (f *RegexpFile) Stat() (os.FileInfo, error) {\n\treturn f.f.Stat()\n}\n\nfunc (f *RegexpFile) Sync() error {\n\treturn f.f.Sync()\n}\n\nfunc (f *RegexpFile) Truncate(s int64) error {\n\treturn f.f.Truncate(s)\n}\n\nfunc (f *RegexpFile) WriteString(s string) (int, error) {\n\treturn f.f.WriteString(s)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/unionFile.go",
    "content": "package afero\n\nimport (\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"syscall\"\n)\n\n// The UnionFile implements the afero.File interface and will be returned\n// when reading a directory present at least in the overlay or opening a file\n// for writing.\n//\n// The calls to\n// Readdir() and Readdirnames() merge the file os.FileInfo / names from the\n// base and the overlay - for files present in both layers, only those\n// from the overlay will be used.\n//\n// When opening files for writing (Create() / OpenFile() with the right flags)\n// the operations will be done in both layers, starting with the overlay. A\n// successful read in the overlay will move the cursor position in the base layer\n// by the number of bytes read.\ntype UnionFile struct {\n\tBase   File\n\tLayer  File\n\tMerger DirsMerger\n\toff    int\n\tfiles  []os.FileInfo\n}\n\nfunc (f *UnionFile) Close() error {\n\t// first close base, so we have a newer timestamp in the overlay. If we'd close\n\t// the overlay first, we'd get a cacheStale the next time we access this file\n\t// -> cache would be useless ;-)\n\tif f.Base != nil {\n\t\tf.Base.Close()\n\t}\n\tif f.Layer != nil {\n\t\treturn f.Layer.Close()\n\t}\n\treturn BADFD\n}\n\nfunc (f *UnionFile) Read(s []byte) (int, error) {\n\tif f.Layer != nil {\n\t\tn, err := f.Layer.Read(s)\n\t\tif (err == nil || err == io.EOF) && f.Base != nil {\n\t\t\t// advance the file position also in the base file, the next\n\t\t\t// call may be a write at this position (or a seek with SEEK_CUR)\n\t\t\tif _, seekErr := f.Base.Seek(int64(n), os.SEEK_CUR); seekErr != nil {\n\t\t\t\t// only overwrite err in case the seek fails: we need to\n\t\t\t\t// report an eventual io.EOF to the caller\n\t\t\t\terr = seekErr\n\t\t\t}\n\t\t}\n\t\treturn n, err\n\t}\n\tif f.Base != nil {\n\t\treturn f.Base.Read(s)\n\t}\n\treturn 0, BADFD\n}\n\nfunc (f *UnionFile) ReadAt(s []byte, o int64) (int, error) {\n\tif f.Layer != nil {\n\t\tn, err := f.Layer.ReadAt(s, o)\n\t\tif (err == nil || err == io.EOF) && f.Base != nil {\n\t\t\t_, err = f.Base.Seek(o+int64(n), os.SEEK_SET)\n\t\t}\n\t\treturn n, err\n\t}\n\tif f.Base != nil {\n\t\treturn f.Base.ReadAt(s, o)\n\t}\n\treturn 0, BADFD\n}\n\nfunc (f *UnionFile) Seek(o int64, w int) (pos int64, err error) {\n\tif f.Layer != nil {\n\t\tpos, err = f.Layer.Seek(o, w)\n\t\tif (err == nil || err == io.EOF) && f.Base != nil {\n\t\t\t_, err = f.Base.Seek(o, w)\n\t\t}\n\t\treturn pos, err\n\t}\n\tif f.Base != nil {\n\t\treturn f.Base.Seek(o, w)\n\t}\n\treturn 0, BADFD\n}\n\nfunc (f *UnionFile) Write(s []byte) (n int, err error) {\n\tif f.Layer != nil {\n\t\tn, err = f.Layer.Write(s)\n\t\tif err == nil && f.Base != nil { // hmm, do we have fixed size files where a write may hit the EOF mark?\n\t\t\t_, err = f.Base.Write(s)\n\t\t}\n\t\treturn n, err\n\t}\n\tif f.Base != nil {\n\t\treturn f.Base.Write(s)\n\t}\n\treturn 0, BADFD\n}\n\nfunc (f *UnionFile) WriteAt(s []byte, o int64) (n int, err error) {\n\tif f.Layer != nil {\n\t\tn, err = f.Layer.WriteAt(s, o)\n\t\tif err == nil && f.Base != nil {\n\t\t\t_, err = f.Base.WriteAt(s, o)\n\t\t}\n\t\treturn n, err\n\t}\n\tif f.Base != nil {\n\t\treturn f.Base.WriteAt(s, o)\n\t}\n\treturn 0, BADFD\n}\n\nfunc (f *UnionFile) Name() string {\n\tif f.Layer != nil {\n\t\treturn f.Layer.Name()\n\t}\n\treturn f.Base.Name()\n}\n\n// DirsMerger is how UnionFile weaves two directories together.\n// It takes the FileInfo slices from the layer and the base and returns a\n// single view.\ntype DirsMerger func(lofi, bofi []os.FileInfo) ([]os.FileInfo, error)\n\nvar defaultUnionMergeDirsFn = func(lofi, bofi []os.FileInfo) ([]os.FileInfo, error) {\n\tvar files = make(map[string]os.FileInfo)\n\n\tfor _, fi := range lofi {\n\t\tfiles[fi.Name()] = fi\n\t}\n\n\tfor _, fi := range bofi {\n\t\tif _, exists := files[fi.Name()]; !exists {\n\t\t\tfiles[fi.Name()] = fi\n\t\t}\n\t}\n\n\trfi := make([]os.FileInfo, len(files))\n\n\ti := 0\n\tfor _, fi := range files {\n\t\trfi[i] = fi\n\t\ti++\n\t}\n\n\treturn rfi, nil\n\n}\n\n// Readdir will weave the two directories together and\n// return a single view of the overlayed directories\nfunc (f *UnionFile) Readdir(c int) (ofi []os.FileInfo, err error) {\n\tvar merge DirsMerger = f.Merger\n\tif merge == nil {\n\t\tmerge = defaultUnionMergeDirsFn\n\t}\n\n\tif f.off == 0 {\n\t\tvar lfi []os.FileInfo\n\t\tif f.Layer != nil {\n\t\t\tlfi, err = f.Layer.Readdir(-1)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\n\t\tvar bfi []os.FileInfo\n\t\tif f.Base != nil {\n\t\t\tbfi, err = f.Base.Readdir(-1)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\n\t\t}\n\t\tmerged, err := merge(lfi, bfi)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tf.files = append(f.files, merged...)\n\t}\n\tif c == -1 {\n\t\treturn f.files[f.off:], nil\n\t}\n\tdefer func() { f.off += c }()\n\treturn f.files[f.off:c], nil\n}\n\nfunc (f *UnionFile) Readdirnames(c int) ([]string, error) {\n\trfi, err := f.Readdir(c)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar names []string\n\tfor _, fi := range rfi {\n\t\tnames = append(names, fi.Name())\n\t}\n\treturn names, nil\n}\n\nfunc (f *UnionFile) Stat() (os.FileInfo, error) {\n\tif f.Layer != nil {\n\t\treturn f.Layer.Stat()\n\t}\n\tif f.Base != nil {\n\t\treturn f.Base.Stat()\n\t}\n\treturn nil, BADFD\n}\n\nfunc (f *UnionFile) Sync() (err error) {\n\tif f.Layer != nil {\n\t\terr = f.Layer.Sync()\n\t\tif err == nil && f.Base != nil {\n\t\t\terr = f.Base.Sync()\n\t\t}\n\t\treturn err\n\t}\n\tif f.Base != nil {\n\t\treturn f.Base.Sync()\n\t}\n\treturn BADFD\n}\n\nfunc (f *UnionFile) Truncate(s int64) (err error) {\n\tif f.Layer != nil {\n\t\terr = f.Layer.Truncate(s)\n\t\tif err == nil && f.Base != nil {\n\t\t\terr = f.Base.Truncate(s)\n\t\t}\n\t\treturn err\n\t}\n\tif f.Base != nil {\n\t\treturn f.Base.Truncate(s)\n\t}\n\treturn BADFD\n}\n\nfunc (f *UnionFile) WriteString(s string) (n int, err error) {\n\tif f.Layer != nil {\n\t\tn, err = f.Layer.WriteString(s)\n\t\tif err == nil && f.Base != nil {\n\t\t\t_, err = f.Base.WriteString(s)\n\t\t}\n\t\treturn n, err\n\t}\n\tif f.Base != nil {\n\t\treturn f.Base.WriteString(s)\n\t}\n\treturn 0, BADFD\n}\n\nfunc copyToLayer(base Fs, layer Fs, name string) error {\n\tbfh, err := base.Open(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer bfh.Close()\n\n\t// First make sure the directory exists\n\texists, err := Exists(layer, filepath.Dir(name))\n\tif err != nil {\n\t\treturn err\n\t}\n\tif !exists {\n\t\terr = layer.MkdirAll(filepath.Dir(name), 0777) // FIXME?\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t// Create the file on the overlay\n\tlfh, err := layer.Create(name)\n\tif err != nil {\n\t\treturn err\n\t}\n\tn, err := io.Copy(lfh, bfh)\n\tif err != nil {\n\t\t// If anything fails, clean up the file\n\t\tlayer.Remove(name)\n\t\tlfh.Close()\n\t\treturn err\n\t}\n\n\tbfi, err := bfh.Stat()\n\tif err != nil || bfi.Size() != n {\n\t\tlayer.Remove(name)\n\t\tlfh.Close()\n\t\treturn syscall.EIO\n\t}\n\n\terr = lfh.Close()\n\tif err != nil {\n\t\tlayer.Remove(name)\n\t\tlfh.Close()\n\t\treturn err\n\t}\n\treturn layer.Chtimes(name, bfi.ModTime(), bfi.ModTime())\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/afero/util.go",
    "content": "// Copyright ©2015 Steve Francia <spf@spf13.com>\n// Portions Copyright ©2015 The Hugo Authors\n// Portions Copyright 2016-present Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage afero\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"unicode\"\n\n\t\"golang.org/x/text/transform\"\n\t\"golang.org/x/text/unicode/norm\"\n)\n\n// Filepath separator defined by os.Separator.\nconst FilePathSeparator = string(filepath.Separator)\n\n// Takes a reader and a path and writes the content\nfunc (a Afero) WriteReader(path string, r io.Reader) (err error) {\n\treturn WriteReader(a.Fs, path, r)\n}\n\nfunc WriteReader(fs Fs, path string, r io.Reader) (err error) {\n\tdir, _ := filepath.Split(path)\n\tospath := filepath.FromSlash(dir)\n\n\tif ospath != \"\" {\n\t\terr = fs.MkdirAll(ospath, 0777) // rwx, rw, r\n\t\tif err != nil {\n\t\t\tif err != os.ErrExist {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\tfile, err := fs.Create(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tdefer file.Close()\n\n\t_, err = io.Copy(file, r)\n\treturn\n}\n\n// Same as WriteReader but checks to see if file/directory already exists.\nfunc (a Afero) SafeWriteReader(path string, r io.Reader) (err error) {\n\treturn SafeWriteReader(a.Fs, path, r)\n}\n\nfunc SafeWriteReader(fs Fs, path string, r io.Reader) (err error) {\n\tdir, _ := filepath.Split(path)\n\tospath := filepath.FromSlash(dir)\n\n\tif ospath != \"\" {\n\t\terr = fs.MkdirAll(ospath, 0777) // rwx, rw, r\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t}\n\n\texists, err := Exists(fs, path)\n\tif err != nil {\n\t\treturn\n\t}\n\tif exists {\n\t\treturn fmt.Errorf(\"%v already exists\", path)\n\t}\n\n\tfile, err := fs.Create(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tdefer file.Close()\n\n\t_, err = io.Copy(file, r)\n\treturn\n}\n\nfunc (a Afero) GetTempDir(subPath string) string {\n\treturn GetTempDir(a.Fs, subPath)\n}\n\n// GetTempDir returns the default temp directory with trailing slash\n// if subPath is not empty then it will be created recursively with mode 777 rwx rwx rwx\nfunc GetTempDir(fs Fs, subPath string) string {\n\taddSlash := func(p string) string {\n\t\tif FilePathSeparator != p[len(p)-1:] {\n\t\t\tp = p + FilePathSeparator\n\t\t}\n\t\treturn p\n\t}\n\tdir := addSlash(os.TempDir())\n\n\tif subPath != \"\" {\n\t\t// preserve windows backslash :-(\n\t\tif FilePathSeparator == \"\\\\\" {\n\t\t\tsubPath = strings.Replace(subPath, \"\\\\\", \"____\", -1)\n\t\t}\n\t\tdir = dir + UnicodeSanitize((subPath))\n\t\tif FilePathSeparator == \"\\\\\" {\n\t\t\tdir = strings.Replace(dir, \"____\", \"\\\\\", -1)\n\t\t}\n\n\t\tif exists, _ := Exists(fs, dir); exists {\n\t\t\treturn addSlash(dir)\n\t\t}\n\n\t\terr := fs.MkdirAll(dir, 0777)\n\t\tif err != nil {\n\t\t\tpanic(err)\n\t\t}\n\t\tdir = addSlash(dir)\n\t}\n\treturn dir\n}\n\n// Rewrite string to remove non-standard path characters\nfunc UnicodeSanitize(s string) string {\n\tsource := []rune(s)\n\ttarget := make([]rune, 0, len(source))\n\n\tfor _, r := range source {\n\t\tif unicode.IsLetter(r) ||\n\t\t\tunicode.IsDigit(r) ||\n\t\t\tunicode.IsMark(r) ||\n\t\t\tr == '.' ||\n\t\t\tr == '/' ||\n\t\t\tr == '\\\\' ||\n\t\t\tr == '_' ||\n\t\t\tr == '-' ||\n\t\t\tr == '%' ||\n\t\t\tr == ' ' ||\n\t\t\tr == '#' {\n\t\t\ttarget = append(target, r)\n\t\t}\n\t}\n\n\treturn string(target)\n}\n\n// Transform characters with accents into plain forms.\nfunc NeuterAccents(s string) string {\n\tt := transform.Chain(norm.NFD, transform.RemoveFunc(isMn), norm.NFC)\n\tresult, _, _ := transform.String(t, string(s))\n\n\treturn result\n}\n\nfunc isMn(r rune) bool {\n\treturn unicode.Is(unicode.Mn, r) // Mn: nonspacing marks\n}\n\nfunc (a Afero) FileContainsBytes(filename string, subslice []byte) (bool, error) {\n\treturn FileContainsBytes(a.Fs, filename, subslice)\n}\n\n// Check if a file contains a specified byte slice.\nfunc FileContainsBytes(fs Fs, filename string, subslice []byte) (bool, error) {\n\tf, err := fs.Open(filename)\n\tif err != nil {\n\t\treturn false, err\n\t}\n\tdefer f.Close()\n\n\treturn readerContainsAny(f, subslice), nil\n}\n\nfunc (a Afero) FileContainsAnyBytes(filename string, subslices [][]byte) (bool, error) {\n\treturn FileContainsAnyBytes(a.Fs, filename, subslices)\n}\n\n// Check if a file contains any of the specified byte slices.\nfunc FileContainsAnyBytes(fs Fs, filename string, subslices [][]byte) (bool, error) {\n\tf, err := fs.Open(filename)\n\tif err != nil {\n\t\treturn false, err\n\t}\n\tdefer f.Close()\n\n\treturn readerContainsAny(f, subslices...), nil\n}\n\n// readerContains reports whether any of the subslices is within r.\nfunc readerContainsAny(r io.Reader, subslices ...[]byte) bool {\n\n\tif r == nil || len(subslices) == 0 {\n\t\treturn false\n\t}\n\n\tlargestSlice := 0\n\n\tfor _, sl := range subslices {\n\t\tif len(sl) > largestSlice {\n\t\t\tlargestSlice = len(sl)\n\t\t}\n\t}\n\n\tif largestSlice == 0 {\n\t\treturn false\n\t}\n\n\tbufflen := largestSlice * 4\n\thalflen := bufflen / 2\n\tbuff := make([]byte, bufflen)\n\tvar err error\n\tvar n, i int\n\n\tfor {\n\t\ti++\n\t\tif i == 1 {\n\t\t\tn, err = io.ReadAtLeast(r, buff[:halflen], halflen)\n\t\t} else {\n\t\t\tif i != 2 {\n\t\t\t\t// shift left to catch overlapping matches\n\t\t\t\tcopy(buff[:], buff[halflen:])\n\t\t\t}\n\t\t\tn, err = io.ReadAtLeast(r, buff[halflen:], halflen)\n\t\t}\n\n\t\tif n > 0 {\n\t\t\tfor _, sl := range subslices {\n\t\t\t\tif bytes.Contains(buff, sl) {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif err != nil {\n\t\t\tbreak\n\t\t}\n\t}\n\treturn false\n}\n\nfunc (a Afero) DirExists(path string) (bool, error) {\n\treturn DirExists(a.Fs, path)\n}\n\n// DirExists checks if a path exists and is a directory.\nfunc DirExists(fs Fs, path string) (bool, error) {\n\tfi, err := fs.Stat(path)\n\tif err == nil && fi.IsDir() {\n\t\treturn true, nil\n\t}\n\tif os.IsNotExist(err) {\n\t\treturn false, nil\n\t}\n\treturn false, err\n}\n\nfunc (a Afero) IsDir(path string) (bool, error) {\n\treturn IsDir(a.Fs, path)\n}\n\n// IsDir checks if a given path is a directory.\nfunc IsDir(fs Fs, path string) (bool, error) {\n\tfi, err := fs.Stat(path)\n\tif err != nil {\n\t\treturn false, err\n\t}\n\treturn fi.IsDir(), nil\n}\n\nfunc (a Afero) IsEmpty(path string) (bool, error) {\n\treturn IsEmpty(a.Fs, path)\n}\n\n// IsEmpty checks if a given file or directory is empty.\nfunc IsEmpty(fs Fs, path string) (bool, error) {\n\tif b, _ := Exists(fs, path); !b {\n\t\treturn false, fmt.Errorf(\"%q path does not exist\", path)\n\t}\n\tfi, err := fs.Stat(path)\n\tif err != nil {\n\t\treturn false, err\n\t}\n\tif fi.IsDir() {\n\t\tf, err := fs.Open(path)\n\t\tif err != nil {\n\t\t\treturn false, err\n\t\t}\n\t\tdefer f.Close()\n\t\tlist, err := f.Readdir(-1)\n\t\treturn len(list) == 0, nil\n\t}\n\treturn fi.Size() == 0, nil\n}\n\nfunc (a Afero) Exists(path string) (bool, error) {\n\treturn Exists(a.Fs, path)\n}\n\n// Check if a file or directory exists.\nfunc Exists(fs Fs, path string) (bool, error) {\n\t_, err := fs.Stat(path)\n\tif err == nil {\n\t\treturn true, nil\n\t}\n\tif os.IsNotExist(err) {\n\t\treturn false, nil\n\t}\n\treturn false, err\n}\n\nfunc FullBaseFsPath(basePathFs *BasePathFs, relativePath string) string {\n\tcombinedPath := filepath.Join(basePathFs.path, relativePath)\n\tif parent, ok := basePathFs.source.(*BasePathFs); ok {\n\t\treturn FullBaseFsPath(parent, combinedPath)\n\t}\n\n\treturn combinedPath\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cast/.gitignore",
    "content": "# Compiled Object files, Static and Dynamic libs (Shared Objects)\n*.o\n*.a\n*.so\n\n# Folders\n_obj\n_test\n\n# Architecture specific extensions/prefixes\n*.[568vq]\n[568vq].out\n\n*.cgo1.go\n*.cgo2.c\n_cgo_defun.c\n_cgo_gotypes.go\n_cgo_export.*\n\n_testmain.go\n\n*.exe\n*.test\n\n*.bench\n"
  },
  {
    "path": "vendor/github.com/spf13/cast/.travis.yml",
    "content": "language: go\nenv:\n  -  GO111MODULE=on\nsudo: required\ngo:\n  - \"1.11.x\"\n  - tip\nos:\n  - linux\nmatrix:\n  allow_failures:\n    - go: tip\n  fast_finish: true\nscript:\n  - make check\n"
  },
  {
    "path": "vendor/github.com/spf13/cast/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Steve Francia\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "vendor/github.com/spf13/cast/Makefile",
    "content": "# A Self-Documenting Makefile: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html\n\n.PHONY: check fmt lint test test-race vet test-cover-html help\n.DEFAULT_GOAL := help\n\ncheck: test-race fmt vet lint ## Run tests and linters\n\ntest: ## Run tests\n\tgo test ./...\n\ntest-race: ## Run tests with race detector\n\tgo test -race ./...\n\nfmt: ## Run gofmt linter\n\t@for d in `go list` ; do \\\n\t\tif [ \"`gofmt -l -s $$GOPATH/src/$$d | tee /dev/stderr`\" ]; then \\\n\t\t\techo \"^ improperly formatted go files\" && echo && exit 1; \\\n\t\tfi \\\n\tdone\n\nlint: ## Run golint linter\n\t@for d in `go list` ; do \\\n\t\tif [ \"`golint $$d | tee /dev/stderr`\" ]; then \\\n\t\t\techo \"^ golint errors!\" && echo && exit 1; \\\n\t\tfi \\\n\tdone\n\nvet: ## Run go vet linter\n\t@if [ \"`go vet | tee /dev/stderr`\" ]; then \\\n\t\techo \"^ go vet errors!\" && echo && exit 1; \\\n\tfi\n\ntest-cover-html: ## Generate test coverage report\n\tgo test -coverprofile=coverage.out -covermode=count\n\tgo tool cover -func=coverage.out\n\nhelp:\n\t@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = \":.*?## \"}; {printf \"\\033[36m%-30s\\033[0m %s\\n\", $$1, $$2}'\n"
  },
  {
    "path": "vendor/github.com/spf13/cast/README.md",
    "content": "cast\n====\n[![GoDoc](https://godoc.org/github.com/spf13/cast?status.svg)](https://godoc.org/github.com/spf13/cast)\n[![Build Status](https://api.travis-ci.org/spf13/cast.svg?branch=master)](https://travis-ci.org/spf13/cast)\n[![Go Report Card](https://goreportcard.com/badge/github.com/spf13/cast)](https://goreportcard.com/report/github.com/spf13/cast)\n\nEasy and safe casting from one type to another in Go\n\nDon’t Panic! ... Cast\n\n## What is Cast?\n\nCast is a library to convert between different go types in a consistent and easy way.\n\nCast provides simple functions to easily convert a number to a string, an\ninterface into a bool, etc. Cast does this intelligently when an obvious\nconversion is possible. It doesn’t make any attempts to guess what you meant,\nfor example you can only convert a string to an int when it is a string\nrepresentation of an int such as “8”. Cast was developed for use in\n[Hugo](http://hugo.spf13.com), a website engine which uses YAML, TOML or JSON\nfor meta data.\n\n## Why use Cast?\n\nWhen working with dynamic data in Go you often need to cast or convert the data\nfrom one type into another. Cast goes beyond just using type assertion (though\nit uses that when possible) to provide a very straightforward and convenient\nlibrary.\n\nIf you are working with interfaces to handle things like dynamic content\nyou’ll need an easy way to convert an interface into a given type. This\nis the library for you.\n\nIf you are taking in data from YAML, TOML or JSON or other formats which lack\nfull types, then Cast is the library for you.\n\n## Usage\n\nCast provides a handful of To_____ methods. These methods will always return\nthe desired type. **If input is provided that will not convert to that type, the\n0 or nil value for that type will be returned**.\n\nCast also provides identical methods To_____E. These return the same result as\nthe To_____ methods, plus an additional error which tells you if it successfully\nconverted. Using these methods you can tell the difference between when the\ninput matched the zero value or when the conversion failed and the zero value\nwas returned.\n\nThe following examples are merely a sample of what is available. Please review\nthe code for a complete set.\n\n### Example ‘ToString’:\n\n    cast.ToString(\"mayonegg\")         // \"mayonegg\"\n    cast.ToString(8)                  // \"8\"\n    cast.ToString(8.31)               // \"8.31\"\n    cast.ToString([]byte(\"one time\")) // \"one time\"\n    cast.ToString(nil)                // \"\"\n\n\tvar foo interface{} = \"one more time\"\n    cast.ToString(foo)                // \"one more time\"\n\n\n### Example ‘ToInt’:\n\n    cast.ToInt(8)                  // 8\n    cast.ToInt(8.31)               // 8\n    cast.ToInt(\"8\")                // 8\n    cast.ToInt(true)               // 1\n    cast.ToInt(false)              // 0\n\n\tvar eight interface{} = 8\n    cast.ToInt(eight)              // 8\n    cast.ToInt(nil)                // 0\n\n"
  },
  {
    "path": "vendor/github.com/spf13/cast/cast.go",
    "content": "// Copyright © 2014 Steve Francia <spf@spf13.com>.\n//\n// Use of this source code is governed by an MIT-style\n// license that can be found in the LICENSE file.\n\n// Package cast provides easy and safe casting in Go.\npackage cast\n\nimport \"time\"\n\n// ToBool casts an interface to a bool type.\nfunc ToBool(i interface{}) bool {\n\tv, _ := ToBoolE(i)\n\treturn v\n}\n\n// ToTime casts an interface to a time.Time type.\nfunc ToTime(i interface{}) time.Time {\n\tv, _ := ToTimeE(i)\n\treturn v\n}\n\n// ToDuration casts an interface to a time.Duration type.\nfunc ToDuration(i interface{}) time.Duration {\n\tv, _ := ToDurationE(i)\n\treturn v\n}\n\n// ToFloat64 casts an interface to a float64 type.\nfunc ToFloat64(i interface{}) float64 {\n\tv, _ := ToFloat64E(i)\n\treturn v\n}\n\n// ToFloat32 casts an interface to a float32 type.\nfunc ToFloat32(i interface{}) float32 {\n\tv, _ := ToFloat32E(i)\n\treturn v\n}\n\n// ToInt64 casts an interface to an int64 type.\nfunc ToInt64(i interface{}) int64 {\n\tv, _ := ToInt64E(i)\n\treturn v\n}\n\n// ToInt32 casts an interface to an int32 type.\nfunc ToInt32(i interface{}) int32 {\n\tv, _ := ToInt32E(i)\n\treturn v\n}\n\n// ToInt16 casts an interface to an int16 type.\nfunc ToInt16(i interface{}) int16 {\n\tv, _ := ToInt16E(i)\n\treturn v\n}\n\n// ToInt8 casts an interface to an int8 type.\nfunc ToInt8(i interface{}) int8 {\n\tv, _ := ToInt8E(i)\n\treturn v\n}\n\n// ToInt casts an interface to an int type.\nfunc ToInt(i interface{}) int {\n\tv, _ := ToIntE(i)\n\treturn v\n}\n\n// ToUint casts an interface to a uint type.\nfunc ToUint(i interface{}) uint {\n\tv, _ := ToUintE(i)\n\treturn v\n}\n\n// ToUint64 casts an interface to a uint64 type.\nfunc ToUint64(i interface{}) uint64 {\n\tv, _ := ToUint64E(i)\n\treturn v\n}\n\n// ToUint32 casts an interface to a uint32 type.\nfunc ToUint32(i interface{}) uint32 {\n\tv, _ := ToUint32E(i)\n\treturn v\n}\n\n// ToUint16 casts an interface to a uint16 type.\nfunc ToUint16(i interface{}) uint16 {\n\tv, _ := ToUint16E(i)\n\treturn v\n}\n\n// ToUint8 casts an interface to a uint8 type.\nfunc ToUint8(i interface{}) uint8 {\n\tv, _ := ToUint8E(i)\n\treturn v\n}\n\n// ToString casts an interface to a string type.\nfunc ToString(i interface{}) string {\n\tv, _ := ToStringE(i)\n\treturn v\n}\n\n// ToStringMapString casts an interface to a map[string]string type.\nfunc ToStringMapString(i interface{}) map[string]string {\n\tv, _ := ToStringMapStringE(i)\n\treturn v\n}\n\n// ToStringMapStringSlice casts an interface to a map[string][]string type.\nfunc ToStringMapStringSlice(i interface{}) map[string][]string {\n\tv, _ := ToStringMapStringSliceE(i)\n\treturn v\n}\n\n// ToStringMapBool casts an interface to a map[string]bool type.\nfunc ToStringMapBool(i interface{}) map[string]bool {\n\tv, _ := ToStringMapBoolE(i)\n\treturn v\n}\n\n// ToStringMapInt casts an interface to a map[string]int type.\nfunc ToStringMapInt(i interface{}) map[string]int {\n\tv, _ := ToStringMapIntE(i)\n\treturn v\n}\n\n// ToStringMapInt64 casts an interface to a map[string]int64 type.\nfunc ToStringMapInt64(i interface{}) map[string]int64 {\n\tv, _ := ToStringMapInt64E(i)\n\treturn v\n}\n\n// ToStringMap casts an interface to a map[string]interface{} type.\nfunc ToStringMap(i interface{}) map[string]interface{} {\n\tv, _ := ToStringMapE(i)\n\treturn v\n}\n\n// ToSlice casts an interface to a []interface{} type.\nfunc ToSlice(i interface{}) []interface{} {\n\tv, _ := ToSliceE(i)\n\treturn v\n}\n\n// ToBoolSlice casts an interface to a []bool type.\nfunc ToBoolSlice(i interface{}) []bool {\n\tv, _ := ToBoolSliceE(i)\n\treturn v\n}\n\n// ToStringSlice casts an interface to a []string type.\nfunc ToStringSlice(i interface{}) []string {\n\tv, _ := ToStringSliceE(i)\n\treturn v\n}\n\n// ToIntSlice casts an interface to a []int type.\nfunc ToIntSlice(i interface{}) []int {\n\tv, _ := ToIntSliceE(i)\n\treturn v\n}\n\n// ToDurationSlice casts an interface to a []time.Duration type.\nfunc ToDurationSlice(i interface{}) []time.Duration {\n\tv, _ := ToDurationSliceE(i)\n\treturn v\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cast/caste.go",
    "content": "// Copyright © 2014 Steve Francia <spf@spf13.com>.\n//\n// Use of this source code is governed by an MIT-style\n// license that can be found in the LICENSE file.\n\npackage cast\n\nimport (\n\t\"encoding/json\"\n\t\"errors\"\n\t\"fmt\"\n\t\"html/template\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n)\n\nvar errNegativeNotAllowed = errors.New(\"unable to cast negative value\")\n\n// ToTimeE casts an interface to a time.Time type.\nfunc ToTimeE(i interface{}) (tim time.Time, err error) {\n\ti = indirect(i)\n\n\tswitch v := i.(type) {\n\tcase time.Time:\n\t\treturn v, nil\n\tcase string:\n\t\treturn StringToDate(v)\n\tcase int:\n\t\treturn time.Unix(int64(v), 0), nil\n\tcase int64:\n\t\treturn time.Unix(v, 0), nil\n\tcase int32:\n\t\treturn time.Unix(int64(v), 0), nil\n\tcase uint:\n\t\treturn time.Unix(int64(v), 0), nil\n\tcase uint64:\n\t\treturn time.Unix(int64(v), 0), nil\n\tcase uint32:\n\t\treturn time.Unix(int64(v), 0), nil\n\tdefault:\n\t\treturn time.Time{}, fmt.Errorf(\"unable to cast %#v of type %T to Time\", i, i)\n\t}\n}\n\n// ToDurationE casts an interface to a time.Duration type.\nfunc ToDurationE(i interface{}) (d time.Duration, err error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase time.Duration:\n\t\treturn s, nil\n\tcase int, int64, int32, int16, int8, uint, uint64, uint32, uint16, uint8:\n\t\td = time.Duration(ToInt64(s))\n\t\treturn\n\tcase float32, float64:\n\t\td = time.Duration(ToFloat64(s))\n\t\treturn\n\tcase string:\n\t\tif strings.ContainsAny(s, \"nsuµmh\") {\n\t\t\td, err = time.ParseDuration(s)\n\t\t} else {\n\t\t\td, err = time.ParseDuration(s + \"ns\")\n\t\t}\n\t\treturn\n\tdefault:\n\t\terr = fmt.Errorf(\"unable to cast %#v of type %T to Duration\", i, i)\n\t\treturn\n\t}\n}\n\n// ToBoolE casts an interface to a bool type.\nfunc ToBoolE(i interface{}) (bool, error) {\n\ti = indirect(i)\n\n\tswitch b := i.(type) {\n\tcase bool:\n\t\treturn b, nil\n\tcase nil:\n\t\treturn false, nil\n\tcase int:\n\t\tif i.(int) != 0 {\n\t\t\treturn true, nil\n\t\t}\n\t\treturn false, nil\n\tcase string:\n\t\treturn strconv.ParseBool(i.(string))\n\tdefault:\n\t\treturn false, fmt.Errorf(\"unable to cast %#v of type %T to bool\", i, i)\n\t}\n}\n\n// ToFloat64E casts an interface to a float64 type.\nfunc ToFloat64E(i interface{}) (float64, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase float64:\n\t\treturn s, nil\n\tcase float32:\n\t\treturn float64(s), nil\n\tcase int:\n\t\treturn float64(s), nil\n\tcase int64:\n\t\treturn float64(s), nil\n\tcase int32:\n\t\treturn float64(s), nil\n\tcase int16:\n\t\treturn float64(s), nil\n\tcase int8:\n\t\treturn float64(s), nil\n\tcase uint:\n\t\treturn float64(s), nil\n\tcase uint64:\n\t\treturn float64(s), nil\n\tcase uint32:\n\t\treturn float64(s), nil\n\tcase uint16:\n\t\treturn float64(s), nil\n\tcase uint8:\n\t\treturn float64(s), nil\n\tcase string:\n\t\tv, err := strconv.ParseFloat(s, 64)\n\t\tif err == nil {\n\t\t\treturn v, nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to float64\", i, i)\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to float64\", i, i)\n\t}\n}\n\n// ToFloat32E casts an interface to a float32 type.\nfunc ToFloat32E(i interface{}) (float32, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase float64:\n\t\treturn float32(s), nil\n\tcase float32:\n\t\treturn s, nil\n\tcase int:\n\t\treturn float32(s), nil\n\tcase int64:\n\t\treturn float32(s), nil\n\tcase int32:\n\t\treturn float32(s), nil\n\tcase int16:\n\t\treturn float32(s), nil\n\tcase int8:\n\t\treturn float32(s), nil\n\tcase uint:\n\t\treturn float32(s), nil\n\tcase uint64:\n\t\treturn float32(s), nil\n\tcase uint32:\n\t\treturn float32(s), nil\n\tcase uint16:\n\t\treturn float32(s), nil\n\tcase uint8:\n\t\treturn float32(s), nil\n\tcase string:\n\t\tv, err := strconv.ParseFloat(s, 32)\n\t\tif err == nil {\n\t\t\treturn float32(v), nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to float32\", i, i)\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to float32\", i, i)\n\t}\n}\n\n// ToInt64E casts an interface to an int64 type.\nfunc ToInt64E(i interface{}) (int64, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase int:\n\t\treturn int64(s), nil\n\tcase int64:\n\t\treturn s, nil\n\tcase int32:\n\t\treturn int64(s), nil\n\tcase int16:\n\t\treturn int64(s), nil\n\tcase int8:\n\t\treturn int64(s), nil\n\tcase uint:\n\t\treturn int64(s), nil\n\tcase uint64:\n\t\treturn int64(s), nil\n\tcase uint32:\n\t\treturn int64(s), nil\n\tcase uint16:\n\t\treturn int64(s), nil\n\tcase uint8:\n\t\treturn int64(s), nil\n\tcase float64:\n\t\treturn int64(s), nil\n\tcase float32:\n\t\treturn int64(s), nil\n\tcase string:\n\t\tv, err := strconv.ParseInt(s, 0, 0)\n\t\tif err == nil {\n\t\t\treturn v, nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int64\", i, i)\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int64\", i, i)\n\t}\n}\n\n// ToInt32E casts an interface to an int32 type.\nfunc ToInt32E(i interface{}) (int32, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase int:\n\t\treturn int32(s), nil\n\tcase int64:\n\t\treturn int32(s), nil\n\tcase int32:\n\t\treturn s, nil\n\tcase int16:\n\t\treturn int32(s), nil\n\tcase int8:\n\t\treturn int32(s), nil\n\tcase uint:\n\t\treturn int32(s), nil\n\tcase uint64:\n\t\treturn int32(s), nil\n\tcase uint32:\n\t\treturn int32(s), nil\n\tcase uint16:\n\t\treturn int32(s), nil\n\tcase uint8:\n\t\treturn int32(s), nil\n\tcase float64:\n\t\treturn int32(s), nil\n\tcase float32:\n\t\treturn int32(s), nil\n\tcase string:\n\t\tv, err := strconv.ParseInt(s, 0, 0)\n\t\tif err == nil {\n\t\t\treturn int32(v), nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int32\", i, i)\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int32\", i, i)\n\t}\n}\n\n// ToInt16E casts an interface to an int16 type.\nfunc ToInt16E(i interface{}) (int16, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase int:\n\t\treturn int16(s), nil\n\tcase int64:\n\t\treturn int16(s), nil\n\tcase int32:\n\t\treturn int16(s), nil\n\tcase int16:\n\t\treturn s, nil\n\tcase int8:\n\t\treturn int16(s), nil\n\tcase uint:\n\t\treturn int16(s), nil\n\tcase uint64:\n\t\treturn int16(s), nil\n\tcase uint32:\n\t\treturn int16(s), nil\n\tcase uint16:\n\t\treturn int16(s), nil\n\tcase uint8:\n\t\treturn int16(s), nil\n\tcase float64:\n\t\treturn int16(s), nil\n\tcase float32:\n\t\treturn int16(s), nil\n\tcase string:\n\t\tv, err := strconv.ParseInt(s, 0, 0)\n\t\tif err == nil {\n\t\t\treturn int16(v), nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int16\", i, i)\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int16\", i, i)\n\t}\n}\n\n// ToInt8E casts an interface to an int8 type.\nfunc ToInt8E(i interface{}) (int8, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase int:\n\t\treturn int8(s), nil\n\tcase int64:\n\t\treturn int8(s), nil\n\tcase int32:\n\t\treturn int8(s), nil\n\tcase int16:\n\t\treturn int8(s), nil\n\tcase int8:\n\t\treturn s, nil\n\tcase uint:\n\t\treturn int8(s), nil\n\tcase uint64:\n\t\treturn int8(s), nil\n\tcase uint32:\n\t\treturn int8(s), nil\n\tcase uint16:\n\t\treturn int8(s), nil\n\tcase uint8:\n\t\treturn int8(s), nil\n\tcase float64:\n\t\treturn int8(s), nil\n\tcase float32:\n\t\treturn int8(s), nil\n\tcase string:\n\t\tv, err := strconv.ParseInt(s, 0, 0)\n\t\tif err == nil {\n\t\t\treturn int8(v), nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int8\", i, i)\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int8\", i, i)\n\t}\n}\n\n// ToIntE casts an interface to an int type.\nfunc ToIntE(i interface{}) (int, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase int:\n\t\treturn s, nil\n\tcase int64:\n\t\treturn int(s), nil\n\tcase int32:\n\t\treturn int(s), nil\n\tcase int16:\n\t\treturn int(s), nil\n\tcase int8:\n\t\treturn int(s), nil\n\tcase uint:\n\t\treturn int(s), nil\n\tcase uint64:\n\t\treturn int(s), nil\n\tcase uint32:\n\t\treturn int(s), nil\n\tcase uint16:\n\t\treturn int(s), nil\n\tcase uint8:\n\t\treturn int(s), nil\n\tcase float64:\n\t\treturn int(s), nil\n\tcase float32:\n\t\treturn int(s), nil\n\tcase string:\n\t\tv, err := strconv.ParseInt(s, 0, 0)\n\t\tif err == nil {\n\t\t\treturn int(v), nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int\", i, i)\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to int\", i, i)\n\t}\n}\n\n// ToUintE casts an interface to a uint type.\nfunc ToUintE(i interface{}) (uint, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase string:\n\t\tv, err := strconv.ParseUint(s, 0, 0)\n\t\tif err == nil {\n\t\t\treturn uint(v), nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v to uint: %s\", i, err)\n\tcase int:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint(s), nil\n\tcase int64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint(s), nil\n\tcase int32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint(s), nil\n\tcase int16:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint(s), nil\n\tcase int8:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint(s), nil\n\tcase uint:\n\t\treturn s, nil\n\tcase uint64:\n\t\treturn uint(s), nil\n\tcase uint32:\n\t\treturn uint(s), nil\n\tcase uint16:\n\t\treturn uint(s), nil\n\tcase uint8:\n\t\treturn uint(s), nil\n\tcase float64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint(s), nil\n\tcase float32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint(s), nil\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to uint\", i, i)\n\t}\n}\n\n// ToUint64E casts an interface to a uint64 type.\nfunc ToUint64E(i interface{}) (uint64, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase string:\n\t\tv, err := strconv.ParseUint(s, 0, 64)\n\t\tif err == nil {\n\t\t\treturn v, nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v to uint64: %s\", i, err)\n\tcase int:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint64(s), nil\n\tcase int64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint64(s), nil\n\tcase int32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint64(s), nil\n\tcase int16:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint64(s), nil\n\tcase int8:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint64(s), nil\n\tcase uint:\n\t\treturn uint64(s), nil\n\tcase uint64:\n\t\treturn s, nil\n\tcase uint32:\n\t\treturn uint64(s), nil\n\tcase uint16:\n\t\treturn uint64(s), nil\n\tcase uint8:\n\t\treturn uint64(s), nil\n\tcase float32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint64(s), nil\n\tcase float64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint64(s), nil\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to uint64\", i, i)\n\t}\n}\n\n// ToUint32E casts an interface to a uint32 type.\nfunc ToUint32E(i interface{}) (uint32, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase string:\n\t\tv, err := strconv.ParseUint(s, 0, 32)\n\t\tif err == nil {\n\t\t\treturn uint32(v), nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v to uint32: %s\", i, err)\n\tcase int:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint32(s), nil\n\tcase int64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint32(s), nil\n\tcase int32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint32(s), nil\n\tcase int16:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint32(s), nil\n\tcase int8:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint32(s), nil\n\tcase uint:\n\t\treturn uint32(s), nil\n\tcase uint64:\n\t\treturn uint32(s), nil\n\tcase uint32:\n\t\treturn s, nil\n\tcase uint16:\n\t\treturn uint32(s), nil\n\tcase uint8:\n\t\treturn uint32(s), nil\n\tcase float64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint32(s), nil\n\tcase float32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint32(s), nil\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to uint32\", i, i)\n\t}\n}\n\n// ToUint16E casts an interface to a uint16 type.\nfunc ToUint16E(i interface{}) (uint16, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase string:\n\t\tv, err := strconv.ParseUint(s, 0, 16)\n\t\tif err == nil {\n\t\t\treturn uint16(v), nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v to uint16: %s\", i, err)\n\tcase int:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint16(s), nil\n\tcase int64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint16(s), nil\n\tcase int32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint16(s), nil\n\tcase int16:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint16(s), nil\n\tcase int8:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint16(s), nil\n\tcase uint:\n\t\treturn uint16(s), nil\n\tcase uint64:\n\t\treturn uint16(s), nil\n\tcase uint32:\n\t\treturn uint16(s), nil\n\tcase uint16:\n\t\treturn s, nil\n\tcase uint8:\n\t\treturn uint16(s), nil\n\tcase float64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint16(s), nil\n\tcase float32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint16(s), nil\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to uint16\", i, i)\n\t}\n}\n\n// ToUint8E casts an interface to a uint type.\nfunc ToUint8E(i interface{}) (uint8, error) {\n\ti = indirect(i)\n\n\tswitch s := i.(type) {\n\tcase string:\n\t\tv, err := strconv.ParseUint(s, 0, 8)\n\t\tif err == nil {\n\t\t\treturn uint8(v), nil\n\t\t}\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v to uint8: %s\", i, err)\n\tcase int:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint8(s), nil\n\tcase int64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint8(s), nil\n\tcase int32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint8(s), nil\n\tcase int16:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint8(s), nil\n\tcase int8:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint8(s), nil\n\tcase uint:\n\t\treturn uint8(s), nil\n\tcase uint64:\n\t\treturn uint8(s), nil\n\tcase uint32:\n\t\treturn uint8(s), nil\n\tcase uint16:\n\t\treturn uint8(s), nil\n\tcase uint8:\n\t\treturn s, nil\n\tcase float64:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint8(s), nil\n\tcase float32:\n\t\tif s < 0 {\n\t\t\treturn 0, errNegativeNotAllowed\n\t\t}\n\t\treturn uint8(s), nil\n\tcase bool:\n\t\tif s {\n\t\t\treturn 1, nil\n\t\t}\n\t\treturn 0, nil\n\tcase nil:\n\t\treturn 0, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"unable to cast %#v of type %T to uint8\", i, i)\n\t}\n}\n\n// From html/template/content.go\n// Copyright 2011 The Go Authors. All rights reserved.\n// indirect returns the value, after dereferencing as many times\n// as necessary to reach the base type (or nil).\nfunc indirect(a interface{}) interface{} {\n\tif a == nil {\n\t\treturn nil\n\t}\n\tif t := reflect.TypeOf(a); t.Kind() != reflect.Ptr {\n\t\t// Avoid creating a reflect.Value if it's not a pointer.\n\t\treturn a\n\t}\n\tv := reflect.ValueOf(a)\n\tfor v.Kind() == reflect.Ptr && !v.IsNil() {\n\t\tv = v.Elem()\n\t}\n\treturn v.Interface()\n}\n\n// From html/template/content.go\n// Copyright 2011 The Go Authors. All rights reserved.\n// indirectToStringerOrError returns the value, after dereferencing as many times\n// as necessary to reach the base type (or nil) or an implementation of fmt.Stringer\n// or error,\nfunc indirectToStringerOrError(a interface{}) interface{} {\n\tif a == nil {\n\t\treturn nil\n\t}\n\n\tvar errorType = reflect.TypeOf((*error)(nil)).Elem()\n\tvar fmtStringerType = reflect.TypeOf((*fmt.Stringer)(nil)).Elem()\n\n\tv := reflect.ValueOf(a)\n\tfor !v.Type().Implements(fmtStringerType) && !v.Type().Implements(errorType) && v.Kind() == reflect.Ptr && !v.IsNil() {\n\t\tv = v.Elem()\n\t}\n\treturn v.Interface()\n}\n\n// ToStringE casts an interface to a string type.\nfunc ToStringE(i interface{}) (string, error) {\n\ti = indirectToStringerOrError(i)\n\n\tswitch s := i.(type) {\n\tcase string:\n\t\treturn s, nil\n\tcase bool:\n\t\treturn strconv.FormatBool(s), nil\n\tcase float64:\n\t\treturn strconv.FormatFloat(s, 'f', -1, 64), nil\n\tcase float32:\n\t\treturn strconv.FormatFloat(float64(s), 'f', -1, 32), nil\n\tcase int:\n\t\treturn strconv.Itoa(s), nil\n\tcase int64:\n\t\treturn strconv.FormatInt(s, 10), nil\n\tcase int32:\n\t\treturn strconv.Itoa(int(s)), nil\n\tcase int16:\n\t\treturn strconv.FormatInt(int64(s), 10), nil\n\tcase int8:\n\t\treturn strconv.FormatInt(int64(s), 10), nil\n\tcase uint:\n\t\treturn strconv.FormatInt(int64(s), 10), nil\n\tcase uint64:\n\t\treturn strconv.FormatInt(int64(s), 10), nil\n\tcase uint32:\n\t\treturn strconv.FormatInt(int64(s), 10), nil\n\tcase uint16:\n\t\treturn strconv.FormatInt(int64(s), 10), nil\n\tcase uint8:\n\t\treturn strconv.FormatInt(int64(s), 10), nil\n\tcase []byte:\n\t\treturn string(s), nil\n\tcase template.HTML:\n\t\treturn string(s), nil\n\tcase template.URL:\n\t\treturn string(s), nil\n\tcase template.JS:\n\t\treturn string(s), nil\n\tcase template.CSS:\n\t\treturn string(s), nil\n\tcase template.HTMLAttr:\n\t\treturn string(s), nil\n\tcase nil:\n\t\treturn \"\", nil\n\tcase fmt.Stringer:\n\t\treturn s.String(), nil\n\tcase error:\n\t\treturn s.Error(), nil\n\tdefault:\n\t\treturn \"\", fmt.Errorf(\"unable to cast %#v of type %T to string\", i, i)\n\t}\n}\n\n// ToStringMapStringE casts an interface to a map[string]string type.\nfunc ToStringMapStringE(i interface{}) (map[string]string, error) {\n\tvar m = map[string]string{}\n\n\tswitch v := i.(type) {\n\tcase map[string]string:\n\t\treturn v, nil\n\tcase map[string]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToString(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[interface{}]string:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToString(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[interface{}]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToString(val)\n\t\t}\n\t\treturn m, nil\n\tcase string:\n\t\terr := jsonStringToObject(v, &m)\n\t\treturn m, err\n\tdefault:\n\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string]string\", i, i)\n\t}\n}\n\n// ToStringMapStringSliceE casts an interface to a map[string][]string type.\nfunc ToStringMapStringSliceE(i interface{}) (map[string][]string, error) {\n\tvar m = map[string][]string{}\n\n\tswitch v := i.(type) {\n\tcase map[string][]string:\n\t\treturn v, nil\n\tcase map[string][]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToStringSlice(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[string]string:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = []string{val}\n\t\t}\n\tcase map[string]interface{}:\n\t\tfor k, val := range v {\n\t\t\tswitch vt := val.(type) {\n\t\t\tcase []interface{}:\n\t\t\t\tm[ToString(k)] = ToStringSlice(vt)\n\t\t\tcase []string:\n\t\t\t\tm[ToString(k)] = vt\n\t\t\tdefault:\n\t\t\t\tm[ToString(k)] = []string{ToString(val)}\n\t\t\t}\n\t\t}\n\t\treturn m, nil\n\tcase map[interface{}][]string:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToStringSlice(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[interface{}]string:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToStringSlice(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[interface{}][]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToStringSlice(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[interface{}]interface{}:\n\t\tfor k, val := range v {\n\t\t\tkey, err := ToStringE(k)\n\t\t\tif err != nil {\n\t\t\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string][]string\", i, i)\n\t\t\t}\n\t\t\tvalue, err := ToStringSliceE(val)\n\t\t\tif err != nil {\n\t\t\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string][]string\", i, i)\n\t\t\t}\n\t\t\tm[key] = value\n\t\t}\n\tcase string:\n\t\terr := jsonStringToObject(v, &m)\n\t\treturn m, err\n\tdefault:\n\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string][]string\", i, i)\n\t}\n\treturn m, nil\n}\n\n// ToStringMapBoolE casts an interface to a map[string]bool type.\nfunc ToStringMapBoolE(i interface{}) (map[string]bool, error) {\n\tvar m = map[string]bool{}\n\n\tswitch v := i.(type) {\n\tcase map[interface{}]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToBool(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[string]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToBool(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[string]bool:\n\t\treturn v, nil\n\tcase string:\n\t\terr := jsonStringToObject(v, &m)\n\t\treturn m, err\n\tdefault:\n\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string]bool\", i, i)\n\t}\n}\n\n// ToStringMapE casts an interface to a map[string]interface{} type.\nfunc ToStringMapE(i interface{}) (map[string]interface{}, error) {\n\tvar m = map[string]interface{}{}\n\n\tswitch v := i.(type) {\n\tcase map[interface{}]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = val\n\t\t}\n\t\treturn m, nil\n\tcase map[string]interface{}:\n\t\treturn v, nil\n\tcase string:\n\t\terr := jsonStringToObject(v, &m)\n\t\treturn m, err\n\tdefault:\n\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string]interface{}\", i, i)\n\t}\n}\n\n// ToStringMapIntE casts an interface to a map[string]int{} type.\nfunc ToStringMapIntE(i interface{}) (map[string]int, error) {\n\tvar m = map[string]int{}\n\tif i == nil {\n\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string]int\", i, i)\n\t}\n\n\tswitch v := i.(type) {\n\tcase map[interface{}]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToInt(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[string]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[k] = ToInt(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[string]int:\n\t\treturn v, nil\n\tcase string:\n\t\terr := jsonStringToObject(v, &m)\n\t\treturn m, err\n\t}\n\n\tif reflect.TypeOf(i).Kind() != reflect.Map {\n\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string]int\", i, i)\n\t}\n\n\tmVal := reflect.ValueOf(m)\n\tv := reflect.ValueOf(i)\n\tfor _, keyVal := range v.MapKeys() {\n\t\tval, err := ToIntE(v.MapIndex(keyVal).Interface())\n\t\tif err != nil {\n\t\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string]int\", i, i)\n\t\t}\n\t\tmVal.SetMapIndex(keyVal, reflect.ValueOf(val))\n\t}\n\treturn m, nil\n}\n\n// ToStringMapInt64E casts an interface to a map[string]int64{} type.\nfunc ToStringMapInt64E(i interface{}) (map[string]int64, error) {\n\tvar m = map[string]int64{}\n\tif i == nil {\n\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string]int64\", i, i)\n\t}\n\n\tswitch v := i.(type) {\n\tcase map[interface{}]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[ToString(k)] = ToInt64(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[string]interface{}:\n\t\tfor k, val := range v {\n\t\t\tm[k] = ToInt64(val)\n\t\t}\n\t\treturn m, nil\n\tcase map[string]int64:\n\t\treturn v, nil\n\tcase string:\n\t\terr := jsonStringToObject(v, &m)\n\t\treturn m, err\n\t}\n\n\tif reflect.TypeOf(i).Kind() != reflect.Map {\n\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string]int64\", i, i)\n\t}\n\tmVal := reflect.ValueOf(m)\n\tv := reflect.ValueOf(i)\n\tfor _, keyVal := range v.MapKeys() {\n\t\tval, err := ToInt64E(v.MapIndex(keyVal).Interface())\n\t\tif err != nil {\n\t\t\treturn m, fmt.Errorf(\"unable to cast %#v of type %T to map[string]int64\", i, i)\n\t\t}\n\t\tmVal.SetMapIndex(keyVal, reflect.ValueOf(val))\n\t}\n\treturn m, nil\n}\n\n// ToSliceE casts an interface to a []interface{} type.\nfunc ToSliceE(i interface{}) ([]interface{}, error) {\n\tvar s []interface{}\n\n\tswitch v := i.(type) {\n\tcase []interface{}:\n\t\treturn append(s, v...), nil\n\tcase []map[string]interface{}:\n\t\tfor _, u := range v {\n\t\t\ts = append(s, u)\n\t\t}\n\t\treturn s, nil\n\tdefault:\n\t\treturn s, fmt.Errorf(\"unable to cast %#v of type %T to []interface{}\", i, i)\n\t}\n}\n\n// ToBoolSliceE casts an interface to a []bool type.\nfunc ToBoolSliceE(i interface{}) ([]bool, error) {\n\tif i == nil {\n\t\treturn []bool{}, fmt.Errorf(\"unable to cast %#v of type %T to []bool\", i, i)\n\t}\n\n\tswitch v := i.(type) {\n\tcase []bool:\n\t\treturn v, nil\n\t}\n\n\tkind := reflect.TypeOf(i).Kind()\n\tswitch kind {\n\tcase reflect.Slice, reflect.Array:\n\t\ts := reflect.ValueOf(i)\n\t\ta := make([]bool, s.Len())\n\t\tfor j := 0; j < s.Len(); j++ {\n\t\t\tval, err := ToBoolE(s.Index(j).Interface())\n\t\t\tif err != nil {\n\t\t\t\treturn []bool{}, fmt.Errorf(\"unable to cast %#v of type %T to []bool\", i, i)\n\t\t\t}\n\t\t\ta[j] = val\n\t\t}\n\t\treturn a, nil\n\tdefault:\n\t\treturn []bool{}, fmt.Errorf(\"unable to cast %#v of type %T to []bool\", i, i)\n\t}\n}\n\n// ToStringSliceE casts an interface to a []string type.\nfunc ToStringSliceE(i interface{}) ([]string, error) {\n\tvar a []string\n\n\tswitch v := i.(type) {\n\tcase []interface{}:\n\t\tfor _, u := range v {\n\t\t\ta = append(a, ToString(u))\n\t\t}\n\t\treturn a, nil\n\tcase []string:\n\t\treturn v, nil\n\tcase string:\n\t\treturn strings.Fields(v), nil\n\tcase interface{}:\n\t\tstr, err := ToStringE(v)\n\t\tif err != nil {\n\t\t\treturn a, fmt.Errorf(\"unable to cast %#v of type %T to []string\", i, i)\n\t\t}\n\t\treturn []string{str}, nil\n\tdefault:\n\t\treturn a, fmt.Errorf(\"unable to cast %#v of type %T to []string\", i, i)\n\t}\n}\n\n// ToIntSliceE casts an interface to a []int type.\nfunc ToIntSliceE(i interface{}) ([]int, error) {\n\tif i == nil {\n\t\treturn []int{}, fmt.Errorf(\"unable to cast %#v of type %T to []int\", i, i)\n\t}\n\n\tswitch v := i.(type) {\n\tcase []int:\n\t\treturn v, nil\n\t}\n\n\tkind := reflect.TypeOf(i).Kind()\n\tswitch kind {\n\tcase reflect.Slice, reflect.Array:\n\t\ts := reflect.ValueOf(i)\n\t\ta := make([]int, s.Len())\n\t\tfor j := 0; j < s.Len(); j++ {\n\t\t\tval, err := ToIntE(s.Index(j).Interface())\n\t\t\tif err != nil {\n\t\t\t\treturn []int{}, fmt.Errorf(\"unable to cast %#v of type %T to []int\", i, i)\n\t\t\t}\n\t\t\ta[j] = val\n\t\t}\n\t\treturn a, nil\n\tdefault:\n\t\treturn []int{}, fmt.Errorf(\"unable to cast %#v of type %T to []int\", i, i)\n\t}\n}\n\n// ToDurationSliceE casts an interface to a []time.Duration type.\nfunc ToDurationSliceE(i interface{}) ([]time.Duration, error) {\n\tif i == nil {\n\t\treturn []time.Duration{}, fmt.Errorf(\"unable to cast %#v of type %T to []time.Duration\", i, i)\n\t}\n\n\tswitch v := i.(type) {\n\tcase []time.Duration:\n\t\treturn v, nil\n\t}\n\n\tkind := reflect.TypeOf(i).Kind()\n\tswitch kind {\n\tcase reflect.Slice, reflect.Array:\n\t\ts := reflect.ValueOf(i)\n\t\ta := make([]time.Duration, s.Len())\n\t\tfor j := 0; j < s.Len(); j++ {\n\t\t\tval, err := ToDurationE(s.Index(j).Interface())\n\t\t\tif err != nil {\n\t\t\t\treturn []time.Duration{}, fmt.Errorf(\"unable to cast %#v of type %T to []time.Duration\", i, i)\n\t\t\t}\n\t\t\ta[j] = val\n\t\t}\n\t\treturn a, nil\n\tdefault:\n\t\treturn []time.Duration{}, fmt.Errorf(\"unable to cast %#v of type %T to []time.Duration\", i, i)\n\t}\n}\n\n// StringToDate attempts to parse a string into a time.Time type using a\n// predefined list of formats.  If no suitable format is found, an error is\n// returned.\nfunc StringToDate(s string) (time.Time, error) {\n\treturn parseDateWith(s, []string{\n\t\ttime.RFC3339,\n\t\t\"2006-01-02T15:04:05\", // iso8601 without timezone\n\t\ttime.RFC1123Z,\n\t\ttime.RFC1123,\n\t\ttime.RFC822Z,\n\t\ttime.RFC822,\n\t\ttime.RFC850,\n\t\ttime.ANSIC,\n\t\ttime.UnixDate,\n\t\ttime.RubyDate,\n\t\t\"2006-01-02 15:04:05.999999999 -0700 MST\", // Time.String()\n\t\t\"2006-01-02\",\n\t\t\"02 Jan 2006\",\n\t\t\"2006-01-02T15:04:05-0700\", // RFC3339 without timezone hh:mm colon\n\t\t\"2006-01-02 15:04:05 -07:00\",\n\t\t\"2006-01-02 15:04:05 -0700\",\n\t\t\"2006-01-02 15:04:05Z07:00\", // RFC3339 without T\n\t\t\"2006-01-02 15:04:05Z0700\",  // RFC3339 without T or timezone hh:mm colon\n\t\t\"2006-01-02 15:04:05\",\n\t\ttime.Kitchen,\n\t\ttime.Stamp,\n\t\ttime.StampMilli,\n\t\ttime.StampMicro,\n\t\ttime.StampNano,\n\t})\n}\n\nfunc parseDateWith(s string, dates []string) (d time.Time, e error) {\n\tfor _, dateType := range dates {\n\t\tif d, e = time.Parse(dateType, s); e == nil {\n\t\t\treturn\n\t\t}\n\t}\n\treturn d, fmt.Errorf(\"unable to parse date: %s\", s)\n}\n\n// jsonStringToObject attempts to unmarshall a string as JSON into\n// the object passed as pointer.\nfunc jsonStringToObject(s string, v interface{}) error {\n\tdata := []byte(s)\n\treturn json.Unmarshal(data, v)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cast/go.mod",
    "content": "module github.com/spf13/cast\n\nrequire (\n\tgithub.com/davecgh/go-spew v1.1.1 // indirect\n\tgithub.com/pmezard/go-difflib v1.0.0 // indirect\n\tgithub.com/stretchr/testify v1.2.2\n)\n"
  },
  {
    "path": "vendor/github.com/spf13/cast/go.sum",
    "content": "github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=\ngithub.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=\ngithub.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=\ngithub.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=\ngithub.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/.gitignore",
    "content": "# Compiled Object files, Static and Dynamic libs (Shared Objects)\n*.o\n*.a\n*.so\n\n# Folders\n_obj\n_test\n\n# Architecture specific extensions/prefixes\n*.[568vq]\n[568vq].out\n\n*.cgo1.go\n*.cgo2.c\n_cgo_defun.c\n_cgo_gotypes.go\n_cgo_export.*\n\n_testmain.go\n\n# Vim files https://github.com/github/gitignore/blob/master/Global/Vim.gitignore\n# swap\n[._]*.s[a-w][a-z]\n[._]s[a-w][a-z]\n# session\nSession.vim\n# temporary\n.netrwhist\n*~\n# auto-generated tag files\ntags\n\n*.exe\ncobra.test\nbin\n\n.idea/\n*.iml\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/.mailmap",
    "content": "Steve Francia <steve.francia@gmail.com>\nBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>\nFabiano Franz <ffranz@redhat.com>                   <contact@fabianofranz.com>\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/.travis.yml",
    "content": "language: go\n\nstages:\n  - diff\n  - test\n  - build\n\ngo:\n  - 1.12.x\n  - 1.13.x\n  - tip\n\nbefore_install:\n  - go get -u github.com/kyoh86/richgo\n  - go get -u github.com/mitchellh/gox\n\nmatrix:\n  allow_failures:\n    - go: tip\n  include:\n    - stage: diff\n      go: 1.13.x\n      script: make fmt\n    - stage: build\n      go: 1.13.x\n      script: make cobra_generator\n\nscript: \n - make test\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/CHANGELOG.md",
    "content": "# Cobra Changelog\n\n## Pending\n* Fix man page doc generation - no auto generated tag when `cmd.DisableAutoGenTag = true` @jpmcb\n\n## v1.0.0\nAnnouncing v1.0.0 of Cobra. 🎉\n**Notable Changes**\n* Fish completion (including support for Go custom completion) @marckhouzam\n* API (urgent): Rename BashCompDirectives to ShellCompDirectives @marckhouzam\n* Remove/replace SetOutput on Command - deprecated @jpmcb\n* add support for autolabel stale PR @xchapter7x\n* Add Labeler Actions @xchapter7x\n* Custom completions coded in Go (instead of Bash) @marckhouzam\n* Partial Revert of #922 @jharshman\n* Add Makefile to project @jharshman\n* Correct documentation for InOrStdin @desponda\n* Apply formatting to templates @jharshman\n* Revert change so help is printed on stdout again @marckhouzam\n* Update md2man to v2.0.0 @pdf\n* update viper to v1.4.0 @umarcor\n* Update cmd/root.go example in README.md @jharshman\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/CONTRIBUTING.md",
    "content": "# Contributing to Cobra\n\nThank you so much for contributing to Cobra. We appreciate your time and help.\nHere are some guidelines to help you get started.\n\n## Code of Conduct\n\nBe kind and respectful to the members of the community. Take time to educate\nothers who are seeking help. Harassment of any kind will not be tolerated.\n\n## Questions\n\nIf you have questions regarding Cobra, feel free to ask it in the community\n[#cobra Slack channel][cobra-slack]\n\n## Filing a bug or feature\n\n1. Before filing an issue, please check the existing issues to see if a\n   similar one was already opened. If there is one already opened, feel free\n   to comment on it.\n1. If you believe you've found a bug, please provide detailed steps of\n   reproduction, the version of Cobra and anything else you believe will be\n   useful to help troubleshoot it (e.g. OS environment, environment variables,\n   etc...). Also state the current behavior vs. the expected behavior.\n1. If you'd like to see a feature or an enhancement please open an issue with\n   a clear title and description of what the feature is and why it would be\n   beneficial to the project and its users.\n\n## Submitting changes\n\n1. CLA: Upon submitting a Pull Request (PR), contributors will be prompted to\n   sign a CLA. Please sign the CLA :slightly_smiling_face:\n1. Tests: If you are submitting code, please ensure you have adequate tests\n   for the feature. Tests can be run via `go test ./...` or `make test`.\n1. Since this is golang project, ensure the new code is properly formatted to\n   ensure code consistency. Run `make all`.\n\n### Quick steps to contribute\n\n1. Fork the project.\n1. Download your fork to your PC (`git clone https://github.com/your_username/cobra && cd cobra`)\n1. Create your feature branch (`git checkout -b my-new-feature`)\n1. Make changes and run tests (`make test`)\n1. Add them to staging (`git add .`)\n1. Commit your changes (`git commit -m 'Add some feature'`)\n1. Push to the branch (`git push origin my-new-feature`)\n1. Create new pull request\n\n<!-- Links -->\n[cobra-slack]: https://gophers.slack.com/archives/CD3LP1199\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/LICENSE.txt",
    "content": "                                Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/Makefile",
    "content": "BIN=\"./bin\"\nSRC=$(shell find . -name \"*.go\")\n\nifeq (, $(shell which richgo))\n$(warning \"could not find richgo in $(PATH), run: go get github.com/kyoh86/richgo\")\nendif\n\n.PHONY: fmt vet test cobra_generator install_deps clean\n\ndefault: all\n\nall: fmt vet test cobra_generator\t\n\nfmt:\n\t$(info ******************** checking formatting ********************)\n\t@test -z $(shell gofmt -l $(SRC)) || (gofmt -d $(SRC); exit 1)\n\ntest: install_deps vet\n\t$(info ******************** running tests ********************)\n\trichgo test -v ./...\n\ncobra_generator: install_deps\n\t$(info ******************** building generator ********************)\n\tmkdir -p $(BIN)\n\tmake -C cobra all\n\ninstall_deps:\n\t$(info ******************** downloading dependencies ********************)\n\tgo get -v ./...\n\nvet:\n\t$(info ******************** vetting ********************)\n\tgo vet ./...\n\nclean:\n\trm -rf $(BIN)\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/README.md",
    "content": "![cobra logo](https://cloud.githubusercontent.com/assets/173412/10886352/ad566232-814f-11e5-9cd0-aa101788c117.png)\n\nCobra is both a library for creating powerful modern CLI applications as well as a program to generate applications and command files.\n\nCobra is used in many Go projects such as [Kubernetes](http://kubernetes.io/),\n[Hugo](https://gohugo.io), and [Github CLI](https://github.com/cli/cli) to\nname a few. [This list](./projects_using_cobra.md) contains a more extensive list of projects using Cobra.\n\n[![Build Status](https://travis-ci.org/spf13/cobra.svg \"Travis CI status\")](https://travis-ci.org/spf13/cobra)\n[![GoDoc](https://godoc.org/github.com/spf13/cobra?status.svg)](https://godoc.org/github.com/spf13/cobra)\n[![Go Report Card](https://goreportcard.com/badge/github.com/spf13/cobra)](https://goreportcard.com/report/github.com/spf13/cobra)\n[![Slack](https://img.shields.io/badge/Slack-cobra-brightgreen)](https://gophers.slack.com/archives/CD3LP1199)\n\n# Table of Contents\n\n- [Overview](#overview)\n- [Concepts](#concepts)\n  * [Commands](#commands)\n  * [Flags](#flags)\n- [Installing](#installing)\n- [Getting Started](#getting-started)\n  * [Using the Cobra Generator](#using-the-cobra-generator)\n  * [Using the Cobra Library](#using-the-cobra-library)\n  * [Working with Flags](#working-with-flags)\n  * [Positional and Custom Arguments](#positional-and-custom-arguments)\n  * [Example](#example)\n  * [Help Command](#help-command)\n  * [Usage Message](#usage-message)\n  * [PreRun and PostRun Hooks](#prerun-and-postrun-hooks)\n  * [Suggestions when \"unknown command\" happens](#suggestions-when-unknown-command-happens)\n  * [Generating documentation for your command](#generating-documentation-for-your-command)\n  * [Generating shell completions](#generating-shell-completions)\n- [Contributing](CONTRIBUTING.md)\n- [License](#license)\n\n# Overview\n\nCobra is a library providing a simple interface to create powerful modern CLI\ninterfaces similar to git & go tools.\n\nCobra is also an application that will generate your application scaffolding to rapidly\ndevelop a Cobra-based application.\n\nCobra provides:\n* Easy subcommand-based CLIs: `app server`, `app fetch`, etc.\n* Fully POSIX-compliant flags (including short & long versions)\n* Nested subcommands\n* Global, local and cascading flags\n* Easy generation of applications & commands with `cobra init appname` & `cobra add cmdname`\n* Intelligent suggestions (`app srver`... did you mean `app server`?)\n* Automatic help generation for commands and flags\n* Automatic help flag recognition of `-h`, `--help`, etc.\n* Automatically generated shell autocomplete for your application (bash, zsh, fish, powershell)\n* Automatically generated man pages for your application\n* Command aliases so you can change things without breaking them\n* The flexibility to define your own help, usage, etc.\n* Optional tight integration with [viper](http://github.com/spf13/viper) for 12-factor apps\n\n# Concepts\n\nCobra is built on a structure of commands, arguments & flags.\n\n**Commands** represent actions, **Args** are things and **Flags** are modifiers for those actions.\n\nThe best applications will read like sentences when used. Users will know how\nto use the application because they will natively understand how to use it.\n\nThe pattern to follow is\n`APPNAME VERB NOUN --ADJECTIVE.`\n    or\n`APPNAME COMMAND ARG --FLAG`\n\nA few good real world examples may better illustrate this point.\n\nIn the following example, 'server' is a command, and 'port' is a flag:\n\n    hugo server --port=1313\n\nIn this command we are telling Git to clone the url bare.\n\n    git clone URL --bare\n\n## Commands\n\nCommand is the central point of the application. Each interaction that\nthe application supports will be contained in a Command. A command can\nhave children commands and optionally run an action.\n\nIn the example above, 'server' is the command.\n\n[More about cobra.Command](https://godoc.org/github.com/spf13/cobra#Command)\n\n## Flags\n\nA flag is a way to modify the behavior of a command. Cobra supports\nfully POSIX-compliant flags as well as the Go [flag package](https://golang.org/pkg/flag/).\nA Cobra command can define flags that persist through to children commands\nand flags that are only available to that command.\n\nIn the example above, 'port' is the flag.\n\nFlag functionality is provided by the [pflag\nlibrary](https://github.com/spf13/pflag), a fork of the flag standard library\nwhich maintains the same interface while adding POSIX compliance.\n\n# Installing\nUsing Cobra is easy. First, use `go get` to install the latest version\nof the library. This command will install the `cobra` generator executable\nalong with the library and its dependencies:\n\n    go get -u github.com/spf13/cobra\n\nNext, include Cobra in your application:\n\n```go\nimport \"github.com/spf13/cobra\"\n```\n\n# Getting Started\n\nWhile you are welcome to provide your own organization, typically a Cobra-based\napplication will follow the following organizational structure:\n\n```\n  ▾ appName/\n    ▾ cmd/\n        add.go\n        your.go\n        commands.go\n        here.go\n      main.go\n```\n\nIn a Cobra app, typically the main.go file is very bare. It serves one purpose: initializing Cobra.\n\n```go\npackage main\n\nimport (\n  \"{pathToYourApp}/cmd\"\n)\n\nfunc main() {\n  cmd.Execute()\n}\n```\n\n## Using the Cobra Generator\n\nCobra provides its own program that will create your application and add any\ncommands you want. It's the easiest way to incorporate Cobra into your application.\n\n[Here](https://github.com/spf13/cobra/blob/master/cobra/README.md) you can find more information about it.\n\n## Using the Cobra Library\n\nTo manually implement Cobra you need to create a bare main.go file and a rootCmd file.\nYou will optionally provide additional commands as you see fit.\n\n### Create rootCmd\n\nCobra doesn't require any special constructors. Simply create your commands.\n\nIdeally you place this in app/cmd/root.go:\n\n```go\nvar rootCmd = &cobra.Command{\n  Use:   \"hugo\",\n  Short: \"Hugo is a very fast static site generator\",\n  Long: `A Fast and Flexible Static Site Generator built with\n                love by spf13 and friends in Go.\n                Complete documentation is available at http://hugo.spf13.com`,\n  Run: func(cmd *cobra.Command, args []string) {\n    // Do Stuff Here\n  },\n}\n\nfunc Execute() {\n  if err := rootCmd.Execute(); err != nil {\n    fmt.Fprintln(os.Stderr, err)\n    os.Exit(1)\n  }\n}\n```\n\nYou will additionally define flags and handle configuration in your init() function.\n\nFor example cmd/root.go:\n\n```go\npackage cmd\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\n\thomedir \"github.com/mitchellh/go-homedir\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/spf13/viper\"\n)\n\nvar (\n\t// Used for flags.\n\tcfgFile     string\n\tuserLicense string\n\n\trootCmd = &cobra.Command{\n\t\tUse:   \"cobra\",\n\t\tShort: \"A generator for Cobra based Applications\",\n\t\tLong: `Cobra is a CLI library for Go that empowers applications.\nThis application is a tool to generate the needed files\nto quickly create a Cobra application.`,\n\t}\n)\n\n// Execute executes the root command.\nfunc Execute() error {\n\treturn rootCmd.Execute()\n}\n\nfunc init() {\n\tcobra.OnInitialize(initConfig)\n\n\trootCmd.PersistentFlags().StringVar(&cfgFile, \"config\", \"\", \"config file (default is $HOME/.cobra.yaml)\")\n\trootCmd.PersistentFlags().StringP(\"author\", \"a\", \"YOUR NAME\", \"author name for copyright attribution\")\n\trootCmd.PersistentFlags().StringVarP(&userLicense, \"license\", \"l\", \"\", \"name of license for the project\")\n\trootCmd.PersistentFlags().Bool(\"viper\", true, \"use Viper for configuration\")\n\tviper.BindPFlag(\"author\", rootCmd.PersistentFlags().Lookup(\"author\"))\n\tviper.BindPFlag(\"useViper\", rootCmd.PersistentFlags().Lookup(\"viper\"))\n\tviper.SetDefault(\"author\", \"NAME HERE <EMAIL ADDRESS>\")\n\tviper.SetDefault(\"license\", \"apache\")\n\n\trootCmd.AddCommand(addCmd)\n\trootCmd.AddCommand(initCmd)\n}\n\nfunc er(msg interface{}) {\n\tfmt.Println(\"Error:\", msg)\n\tos.Exit(1)\n}\n\nfunc initConfig() {\n\tif cfgFile != \"\" {\n\t\t// Use config file from the flag.\n\t\tviper.SetConfigFile(cfgFile)\n\t} else {\n\t\t// Find home directory.\n\t\thome, err := homedir.Dir()\n\t\tif err != nil {\n\t\t\ter(err)\n\t\t}\n\n\t\t// Search config in home directory with name \".cobra\" (without extension).\n\t\tviper.AddConfigPath(home)\n\t\tviper.SetConfigName(\".cobra\")\n\t}\n\n\tviper.AutomaticEnv()\n\n\tif err := viper.ReadInConfig(); err == nil {\n\t\tfmt.Println(\"Using config file:\", viper.ConfigFileUsed())\n\t}\n}\n```\n\n### Create your main.go\n\nWith the root command you need to have your main function execute it.\nExecute should be run on the root for clarity, though it can be called on any command.\n\nIn a Cobra app, typically the main.go file is very bare. It serves, one purpose, to initialize Cobra.\n\n```go\npackage main\n\nimport (\n  \"{pathToYourApp}/cmd\"\n)\n\nfunc main() {\n  cmd.Execute()\n}\n```\n\n### Create additional commands\n\nAdditional commands can be defined and typically are each given their own file\ninside of the cmd/ directory.\n\nIf you wanted to create a version command you would create cmd/version.go and\npopulate it with the following:\n\n```go\npackage cmd\n\nimport (\n  \"fmt\"\n\n  \"github.com/spf13/cobra\"\n)\n\nfunc init() {\n  rootCmd.AddCommand(versionCmd)\n}\n\nvar versionCmd = &cobra.Command{\n  Use:   \"version\",\n  Short: \"Print the version number of Hugo\",\n  Long:  `All software has versions. This is Hugo's`,\n  Run: func(cmd *cobra.Command, args []string) {\n    fmt.Println(\"Hugo Static Site Generator v0.9 -- HEAD\")\n  },\n}\n```\n\n### Returning and handling errors\n\nIf you wish to return an error to the caller of a command, `RunE` can be used.\n\n```go\npackage cmd\n\nimport (\n  \"fmt\"\n\n  \"github.com/spf13/cobra\"\n)\n\nfunc init() {\n  rootCmd.AddCommand(tryCmd)\n}\n\nvar tryCmd = &cobra.Command{\n  Use:   \"try\",\n  Short: \"Try and possibly fail at something\",\n  RunE: func(cmd *cobra.Command, args []string) error {\n    if err := someFunc(); err != nil {\n\treturn err\n    }\n    return nil\n  },\n}\n```\n\nThe error can then be caught at the execute function call.\n\n## Working with Flags\n\nFlags provide modifiers to control how the action command operates.\n\n### Assign flags to a command\n\nSince the flags are defined and used in different locations, we need to\ndefine a variable outside with the correct scope to assign the flag to\nwork with.\n\n```go\nvar Verbose bool\nvar Source string\n```\n\nThere are two different approaches to assign a flag.\n\n### Persistent Flags\n\nA flag can be 'persistent' meaning that this flag will be available to the\ncommand it's assigned to as well as every command under that command. For\nglobal flags, assign a flag as a persistent flag on the root.\n\n```go\nrootCmd.PersistentFlags().BoolVarP(&Verbose, \"verbose\", \"v\", false, \"verbose output\")\n```\n\n### Local Flags\n\nA flag can also be assigned locally which will only apply to that specific command.\n\n```go\nlocalCmd.Flags().StringVarP(&Source, \"source\", \"s\", \"\", \"Source directory to read from\")\n```\n\n### Local Flag on Parent Commands\n\nBy default Cobra only parses local flags on the target command, any local flags on\nparent commands are ignored. By enabling `Command.TraverseChildren` Cobra will\nparse local flags on each command before executing the target command.\n\n```go\ncommand := cobra.Command{\n  Use: \"print [OPTIONS] [COMMANDS]\",\n  TraverseChildren: true,\n}\n```\n\n### Bind Flags with Config\n\nYou can also bind your flags with [viper](https://github.com/spf13/viper):\n```go\nvar author string\n\nfunc init() {\n  rootCmd.PersistentFlags().StringVar(&author, \"author\", \"YOUR NAME\", \"Author name for copyright attribution\")\n  viper.BindPFlag(\"author\", rootCmd.PersistentFlags().Lookup(\"author\"))\n}\n```\n\nIn this example the persistent flag `author` is bound with `viper`.\n**Note**, that the variable `author` will not be set to the value from config,\nwhen the `--author` flag is not provided by user.\n\nMore in [viper documentation](https://github.com/spf13/viper#working-with-flags).\n\n### Required flags\n\nFlags are optional by default. If instead you wish your command to report an error\nwhen a flag has not been set, mark it as required:\n```go\nrootCmd.Flags().StringVarP(&Region, \"region\", \"r\", \"\", \"AWS region (required)\")\nrootCmd.MarkFlagRequired(\"region\")\n```\n\nOr, for persistent flags:\n```go\nrootCmd.PersistentFlags().StringVarP(&Region, \"region\", \"r\", \"\", \"AWS region (required)\")\nrootCmd.MarkPersistentFlagRequired(\"region\")\n```\n\n## Positional and Custom Arguments\n\nValidation of positional arguments can be specified using the `Args` field\nof `Command`.\n\nThe following validators are built in:\n\n- `NoArgs` - the command will report an error if there are any positional args.\n- `ArbitraryArgs` - the command will accept any args.\n- `OnlyValidArgs` - the command will report an error if there are any positional args that are not in the `ValidArgs` field of `Command`.\n- `MinimumNArgs(int)` - the command will report an error if there are not at least N positional args.\n- `MaximumNArgs(int)` - the command will report an error if there are more than N positional args.\n- `ExactArgs(int)` - the command will report an error if there are not exactly N positional args.\n- `ExactValidArgs(int)` - the command will report an error if there are not exactly N positional args OR if there are any positional args that are not in the `ValidArgs` field of `Command`\n- `RangeArgs(min, max)` - the command will report an error if the number of args is not between the minimum and maximum number of expected args.\n\nAn example of setting the custom validator:\n\n```go\nvar cmd = &cobra.Command{\n  Short: \"hello\",\n  Args: func(cmd *cobra.Command, args []string) error {\n    if len(args) < 1 {\n      return errors.New(\"requires a color argument\")\n    }\n    if myapp.IsValidColor(args[0]) {\n      return nil\n    }\n    return fmt.Errorf(\"invalid color specified: %s\", args[0])\n  },\n  Run: func(cmd *cobra.Command, args []string) {\n    fmt.Println(\"Hello, World!\")\n  },\n}\n```\n\n## Example\n\nIn the example below, we have defined three commands. Two are at the top level\nand one (cmdTimes) is a child of one of the top commands. In this case the root\nis not executable meaning that a subcommand is required. This is accomplished\nby not providing a 'Run' for the 'rootCmd'.\n\nWe have only defined one flag for a single command.\n\nMore documentation about flags is available at https://github.com/spf13/pflag\n\n```go\npackage main\n\nimport (\n  \"fmt\"\n  \"strings\"\n\n  \"github.com/spf13/cobra\"\n)\n\nfunc main() {\n  var echoTimes int\n\n  var cmdPrint = &cobra.Command{\n    Use:   \"print [string to print]\",\n    Short: \"Print anything to the screen\",\n    Long: `print is for printing anything back to the screen.\nFor many years people have printed back to the screen.`,\n    Args: cobra.MinimumNArgs(1),\n    Run: func(cmd *cobra.Command, args []string) {\n      fmt.Println(\"Print: \" + strings.Join(args, \" \"))\n    },\n  }\n\n  var cmdEcho = &cobra.Command{\n    Use:   \"echo [string to echo]\",\n    Short: \"Echo anything to the screen\",\n    Long: `echo is for echoing anything back.\nEcho works a lot like print, except it has a child command.`,\n    Args: cobra.MinimumNArgs(1),\n    Run: func(cmd *cobra.Command, args []string) {\n      fmt.Println(\"Echo: \" + strings.Join(args, \" \"))\n    },\n  }\n\n  var cmdTimes = &cobra.Command{\n    Use:   \"times [string to echo]\",\n    Short: \"Echo anything to the screen more times\",\n    Long: `echo things multiple times back to the user by providing\na count and a string.`,\n    Args: cobra.MinimumNArgs(1),\n    Run: func(cmd *cobra.Command, args []string) {\n      for i := 0; i < echoTimes; i++ {\n        fmt.Println(\"Echo: \" + strings.Join(args, \" \"))\n      }\n    },\n  }\n\n  cmdTimes.Flags().IntVarP(&echoTimes, \"times\", \"t\", 1, \"times to echo the input\")\n\n  var rootCmd = &cobra.Command{Use: \"app\"}\n  rootCmd.AddCommand(cmdPrint, cmdEcho)\n  cmdEcho.AddCommand(cmdTimes)\n  rootCmd.Execute()\n}\n```\n\nFor a more complete example of a larger application, please checkout [Hugo](http://gohugo.io/).\n\n## Help Command\n\nCobra automatically adds a help command to your application when you have subcommands.\nThis will be called when a user runs 'app help'. Additionally, help will also\nsupport all other commands as input. Say, for instance, you have a command called\n'create' without any additional configuration; Cobra will work when 'app help\ncreate' is called.  Every command will automatically have the '--help' flag added.\n\n### Example\n\nThe following output is automatically generated by Cobra. Nothing beyond the\ncommand and flag definitions are needed.\n\n    $ cobra help\n\n    Cobra is a CLI library for Go that empowers applications.\n    This application is a tool to generate the needed files\n    to quickly create a Cobra application.\n\n    Usage:\n      cobra [command]\n\n    Available Commands:\n      add         Add a command to a Cobra Application\n      help        Help about any command\n      init        Initialize a Cobra Application\n\n    Flags:\n      -a, --author string    author name for copyright attribution (default \"YOUR NAME\")\n          --config string    config file (default is $HOME/.cobra.yaml)\n      -h, --help             help for cobra\n      -l, --license string   name of license for the project\n          --viper            use Viper for configuration (default true)\n\n    Use \"cobra [command] --help\" for more information about a command.\n\n\nHelp is just a command like any other. There is no special logic or behavior\naround it. In fact, you can provide your own if you want.\n\n### Defining your own help\n\nYou can provide your own Help command or your own template for the default command to use\nwith following functions:\n\n```go\ncmd.SetHelpCommand(cmd *Command)\ncmd.SetHelpFunc(f func(*Command, []string))\ncmd.SetHelpTemplate(s string)\n```\n\nThe latter two will also apply to any children commands.\n\n## Usage Message\n\nWhen the user provides an invalid flag or invalid command, Cobra responds by\nshowing the user the 'usage'.\n\n### Example\nYou may recognize this from the help above. That's because the default help\nembeds the usage as part of its output.\n\n    $ cobra --invalid\n    Error: unknown flag: --invalid\n    Usage:\n      cobra [command]\n\n    Available Commands:\n      add         Add a command to a Cobra Application\n      help        Help about any command\n      init        Initialize a Cobra Application\n\n    Flags:\n      -a, --author string    author name for copyright attribution (default \"YOUR NAME\")\n          --config string    config file (default is $HOME/.cobra.yaml)\n      -h, --help             help for cobra\n      -l, --license string   name of license for the project\n          --viper            use Viper for configuration (default true)\n\n    Use \"cobra [command] --help\" for more information about a command.\n\n### Defining your own usage\nYou can provide your own usage function or template for Cobra to use.\nLike help, the function and template are overridable through public methods:\n\n```go\ncmd.SetUsageFunc(f func(*Command) error)\ncmd.SetUsageTemplate(s string)\n```\n\n## Version Flag\n\nCobra adds a top-level '--version' flag if the Version field is set on the root command.\nRunning an application with the '--version' flag will print the version to stdout using\nthe version template. The template can be customized using the\n`cmd.SetVersionTemplate(s string)` function.\n\n## PreRun and PostRun Hooks\n\nIt is possible to run functions before or after the main `Run` function of your command. The `PersistentPreRun` and `PreRun` functions will be executed before `Run`. `PersistentPostRun` and `PostRun` will be executed after `Run`.  The `Persistent*Run` functions will be inherited by children if they do not declare their own.  These functions are run in the following order:\n\n- `PersistentPreRun`\n- `PreRun`\n- `Run`\n- `PostRun`\n- `PersistentPostRun`\n\nAn example of two commands which use all of these features is below.  When the subcommand is executed, it will run the root command's `PersistentPreRun` but not the root command's `PersistentPostRun`:\n\n```go\npackage main\n\nimport (\n  \"fmt\"\n\n  \"github.com/spf13/cobra\"\n)\n\nfunc main() {\n\n  var rootCmd = &cobra.Command{\n    Use:   \"root [sub]\",\n    Short: \"My root command\",\n    PersistentPreRun: func(cmd *cobra.Command, args []string) {\n      fmt.Printf(\"Inside rootCmd PersistentPreRun with args: %v\\n\", args)\n    },\n    PreRun: func(cmd *cobra.Command, args []string) {\n      fmt.Printf(\"Inside rootCmd PreRun with args: %v\\n\", args)\n    },\n    Run: func(cmd *cobra.Command, args []string) {\n      fmt.Printf(\"Inside rootCmd Run with args: %v\\n\", args)\n    },\n    PostRun: func(cmd *cobra.Command, args []string) {\n      fmt.Printf(\"Inside rootCmd PostRun with args: %v\\n\", args)\n    },\n    PersistentPostRun: func(cmd *cobra.Command, args []string) {\n      fmt.Printf(\"Inside rootCmd PersistentPostRun with args: %v\\n\", args)\n    },\n  }\n\n  var subCmd = &cobra.Command{\n    Use:   \"sub [no options!]\",\n    Short: \"My subcommand\",\n    PreRun: func(cmd *cobra.Command, args []string) {\n      fmt.Printf(\"Inside subCmd PreRun with args: %v\\n\", args)\n    },\n    Run: func(cmd *cobra.Command, args []string) {\n      fmt.Printf(\"Inside subCmd Run with args: %v\\n\", args)\n    },\n    PostRun: func(cmd *cobra.Command, args []string) {\n      fmt.Printf(\"Inside subCmd PostRun with args: %v\\n\", args)\n    },\n    PersistentPostRun: func(cmd *cobra.Command, args []string) {\n      fmt.Printf(\"Inside subCmd PersistentPostRun with args: %v\\n\", args)\n    },\n  }\n\n  rootCmd.AddCommand(subCmd)\n\n  rootCmd.SetArgs([]string{\"\"})\n  rootCmd.Execute()\n  fmt.Println()\n  rootCmd.SetArgs([]string{\"sub\", \"arg1\", \"arg2\"})\n  rootCmd.Execute()\n}\n```\n\nOutput:\n```\nInside rootCmd PersistentPreRun with args: []\nInside rootCmd PreRun with args: []\nInside rootCmd Run with args: []\nInside rootCmd PostRun with args: []\nInside rootCmd PersistentPostRun with args: []\n\nInside rootCmd PersistentPreRun with args: [arg1 arg2]\nInside subCmd PreRun with args: [arg1 arg2]\nInside subCmd Run with args: [arg1 arg2]\nInside subCmd PostRun with args: [arg1 arg2]\nInside subCmd PersistentPostRun with args: [arg1 arg2]\n```\n\n## Suggestions when \"unknown command\" happens\n\nCobra will print automatic suggestions when \"unknown command\" errors happen. This allows Cobra to behave similarly to the `git` command when a typo happens. For example:\n\n```\n$ hugo srever\nError: unknown command \"srever\" for \"hugo\"\n\nDid you mean this?\n        server\n\nRun 'hugo --help' for usage.\n```\n\nSuggestions are automatic based on every subcommand registered and use an implementation of [Levenshtein distance](http://en.wikipedia.org/wiki/Levenshtein_distance). Every registered command that matches a minimum distance of 2 (ignoring case) will be displayed as a suggestion.\n\nIf you need to disable suggestions or tweak the string distance in your command, use:\n\n```go\ncommand.DisableSuggestions = true\n```\n\nor\n\n```go\ncommand.SuggestionsMinimumDistance = 1\n```\n\nYou can also explicitly set names for which a given command will be suggested using the `SuggestFor` attribute. This allows suggestions for strings that are not close in terms of string distance, but makes sense in your set of commands and for some which you don't want aliases. Example:\n\n```\n$ kubectl remove\nError: unknown command \"remove\" for \"kubectl\"\n\nDid you mean this?\n        delete\n\nRun 'kubectl help' for usage.\n```\n\n## Generating documentation for your command\n\nCobra can generate documentation based on subcommands, flags, etc. Read more about it in the [docs generation documentation](doc/README.md).\n\n## Generating shell completions\n\nCobra can generate a shell-completion file for the following shells: Bash, Zsh, Fish, Powershell. If you add more information to your commands, these completions can be amazingly powerful and flexible.  Read more about it in [Shell Completions](shell_completions.md).\n\n# License\n\nCobra is released under the Apache 2.0 license. See [LICENSE.txt](https://github.com/spf13/cobra/blob/master/LICENSE.txt)\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/args.go",
    "content": "package cobra\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n)\n\ntype PositionalArgs func(cmd *Command, args []string) error\n\n// Legacy arg validation has the following behaviour:\n// - root commands with no subcommands can take arbitrary arguments\n// - root commands with subcommands will do subcommand validity checking\n// - subcommands will always accept arbitrary arguments\nfunc legacyArgs(cmd *Command, args []string) error {\n\t// no subcommand, always take args\n\tif !cmd.HasSubCommands() {\n\t\treturn nil\n\t}\n\n\t// root command with subcommands, do subcommand checking.\n\tif !cmd.HasParent() && len(args) > 0 {\n\t\treturn fmt.Errorf(\"unknown command %q for %q%s\", args[0], cmd.CommandPath(), cmd.findSuggestions(args[0]))\n\t}\n\treturn nil\n}\n\n// NoArgs returns an error if any args are included.\nfunc NoArgs(cmd *Command, args []string) error {\n\tif len(args) > 0 {\n\t\treturn fmt.Errorf(\"unknown command %q for %q\", args[0], cmd.CommandPath())\n\t}\n\treturn nil\n}\n\n// OnlyValidArgs returns an error if any args are not in the list of ValidArgs.\nfunc OnlyValidArgs(cmd *Command, args []string) error {\n\tif len(cmd.ValidArgs) > 0 {\n\t\t// Remove any description that may be included in ValidArgs.\n\t\t// A description is following a tab character.\n\t\tvar validArgs []string\n\t\tfor _, v := range cmd.ValidArgs {\n\t\t\tvalidArgs = append(validArgs, strings.Split(v, \"\\t\")[0])\n\t\t}\n\n\t\tfor _, v := range args {\n\t\t\tif !stringInSlice(v, validArgs) {\n\t\t\t\treturn fmt.Errorf(\"invalid argument %q for %q%s\", v, cmd.CommandPath(), cmd.findSuggestions(args[0]))\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\n// ArbitraryArgs never returns an error.\nfunc ArbitraryArgs(cmd *Command, args []string) error {\n\treturn nil\n}\n\n// MinimumNArgs returns an error if there is not at least N args.\nfunc MinimumNArgs(n int) PositionalArgs {\n\treturn func(cmd *Command, args []string) error {\n\t\tif len(args) < n {\n\t\t\treturn fmt.Errorf(\"requires at least %d arg(s), only received %d\", n, len(args))\n\t\t}\n\t\treturn nil\n\t}\n}\n\n// MaximumNArgs returns an error if there are more than N args.\nfunc MaximumNArgs(n int) PositionalArgs {\n\treturn func(cmd *Command, args []string) error {\n\t\tif len(args) > n {\n\t\t\treturn fmt.Errorf(\"accepts at most %d arg(s), received %d\", n, len(args))\n\t\t}\n\t\treturn nil\n\t}\n}\n\n// ExactArgs returns an error if there are not exactly n args.\nfunc ExactArgs(n int) PositionalArgs {\n\treturn func(cmd *Command, args []string) error {\n\t\tif len(args) != n {\n\t\t\treturn fmt.Errorf(\"accepts %d arg(s), received %d\", n, len(args))\n\t\t}\n\t\treturn nil\n\t}\n}\n\n// ExactValidArgs returns an error if\n// there are not exactly N positional args OR\n// there are any positional args that are not in the `ValidArgs` field of `Command`\nfunc ExactValidArgs(n int) PositionalArgs {\n\treturn func(cmd *Command, args []string) error {\n\t\tif err := ExactArgs(n)(cmd, args); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn OnlyValidArgs(cmd, args)\n\t}\n}\n\n// RangeArgs returns an error if the number of args is not within the expected range.\nfunc RangeArgs(min int, max int) PositionalArgs {\n\treturn func(cmd *Command, args []string) error {\n\t\tif len(args) < min || len(args) > max {\n\t\t\treturn fmt.Errorf(\"accepts between %d and %d arg(s), received %d\", min, max, len(args))\n\t\t}\n\t\treturn nil\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/bash_completions.go",
    "content": "package cobra\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"sort\"\n\t\"strings\"\n\n\t\"github.com/spf13/pflag\"\n)\n\n// Annotations for Bash completion.\nconst (\n\tBashCompFilenameExt     = \"cobra_annotation_bash_completion_filename_extensions\"\n\tBashCompCustom          = \"cobra_annotation_bash_completion_custom\"\n\tBashCompOneRequiredFlag = \"cobra_annotation_bash_completion_one_required_flag\"\n\tBashCompSubdirsInDir    = \"cobra_annotation_bash_completion_subdirs_in_dir\"\n)\n\nfunc writePreamble(buf *bytes.Buffer, name string) {\n\tbuf.WriteString(fmt.Sprintf(\"# bash completion for %-36s -*- shell-script -*-\\n\", name))\n\tbuf.WriteString(fmt.Sprintf(`\n__%[1]s_debug()\n{\n    if [[ -n ${BASH_COMP_DEBUG_FILE} ]]; then\n        echo \"$*\" >> \"${BASH_COMP_DEBUG_FILE}\"\n    fi\n}\n\n# Homebrew on Macs have version 1.3 of bash-completion which doesn't include\n# _init_completion. This is a very minimal version of that function.\n__%[1]s_init_completion()\n{\n    COMPREPLY=()\n    _get_comp_words_by_ref \"$@\" cur prev words cword\n}\n\n__%[1]s_index_of_word()\n{\n    local w word=$1\n    shift\n    index=0\n    for w in \"$@\"; do\n        [[ $w = \"$word\" ]] && return\n        index=$((index+1))\n    done\n    index=-1\n}\n\n__%[1]s_contains_word()\n{\n    local w word=$1; shift\n    for w in \"$@\"; do\n        [[ $w = \"$word\" ]] && return\n    done\n    return 1\n}\n\n__%[1]s_handle_go_custom_completion()\n{\n    __%[1]s_debug \"${FUNCNAME[0]}: cur is ${cur}, words[*] is ${words[*]}, #words[@] is ${#words[@]}\"\n\n    local shellCompDirectiveError=%[3]d\n    local shellCompDirectiveNoSpace=%[4]d\n    local shellCompDirectiveNoFileComp=%[5]d\n    local shellCompDirectiveFilterFileExt=%[6]d\n    local shellCompDirectiveFilterDirs=%[7]d\n\n    local out requestComp lastParam lastChar comp directive args\n\n    # Prepare the command to request completions for the program.\n    # Calling ${words[0]} instead of directly %[1]s allows to handle aliases\n    args=(\"${words[@]:1}\")\n    requestComp=\"${words[0]} %[2]s ${args[*]}\"\n\n    lastParam=${words[$((${#words[@]}-1))]}\n    lastChar=${lastParam:$((${#lastParam}-1)):1}\n    __%[1]s_debug \"${FUNCNAME[0]}: lastParam ${lastParam}, lastChar ${lastChar}\"\n\n    if [ -z \"${cur}\" ] && [ \"${lastChar}\" != \"=\" ]; then\n        # If the last parameter is complete (there is a space following it)\n        # We add an extra empty parameter so we can indicate this to the go method.\n        __%[1]s_debug \"${FUNCNAME[0]}: Adding extra empty parameter\"\n        requestComp=\"${requestComp} \\\"\\\"\"\n    fi\n\n    __%[1]s_debug \"${FUNCNAME[0]}: calling ${requestComp}\"\n    # Use eval to handle any environment variables and such\n    out=$(eval \"${requestComp}\" 2>/dev/null)\n\n    # Extract the directive integer at the very end of the output following a colon (:)\n    directive=${out##*:}\n    # Remove the directive\n    out=${out%%:*}\n    if [ \"${directive}\" = \"${out}\" ]; then\n        # There is not directive specified\n        directive=0\n    fi\n    __%[1]s_debug \"${FUNCNAME[0]}: the completion directive is: ${directive}\"\n    __%[1]s_debug \"${FUNCNAME[0]}: the completions are: ${out[*]}\"\n\n    if [ $((directive & shellCompDirectiveError)) -ne 0 ]; then\n        # Error code.  No completion.\n        __%[1]s_debug \"${FUNCNAME[0]}: received error from custom completion go code\"\n        return\n    else\n        if [ $((directive & shellCompDirectiveNoSpace)) -ne 0 ]; then\n            if [[ $(type -t compopt) = \"builtin\" ]]; then\n                __%[1]s_debug \"${FUNCNAME[0]}: activating no space\"\n                compopt -o nospace\n            fi\n        fi\n        if [ $((directive & shellCompDirectiveNoFileComp)) -ne 0 ]; then\n            if [[ $(type -t compopt) = \"builtin\" ]]; then\n                __%[1]s_debug \"${FUNCNAME[0]}: activating no file completion\"\n                compopt +o default\n            fi\n        fi\n    fi\n\n    if [ $((directive & shellCompDirectiveFilterFileExt)) -ne 0 ]; then\n        # File extension filtering\n        local fullFilter filter filteringCmd\n        # Do not use quotes around the $out variable or else newline\n        # characters will be kept.\n        for filter in ${out[*]}; do\n            fullFilter+=\"$filter|\"\n        done\n\n        filteringCmd=\"_filedir $fullFilter\"\n        __%[1]s_debug \"File filtering command: $filteringCmd\"\n        $filteringCmd\n    elif [ $((directive & shellCompDirectiveFilterDirs)) -ne 0 ]; then\n        # File completion for directories only\n        local subDir\n        # Use printf to strip any trailing newline\n        subdir=$(printf \"%%s\" \"${out[0]}\")\n        if [ -n \"$subdir\" ]; then\n            __%[1]s_debug \"Listing directories in $subdir\"\n            __%[1]s_handle_subdirs_in_dir_flag \"$subdir\"\n        else\n            __%[1]s_debug \"Listing directories in .\"\n            _filedir -d\n        fi\n    else\n        while IFS='' read -r comp; do\n            COMPREPLY+=(\"$comp\")\n        done < <(compgen -W \"${out[*]}\" -- \"$cur\")\n    fi\n}\n\n__%[1]s_handle_reply()\n{\n    __%[1]s_debug \"${FUNCNAME[0]}\"\n    local comp\n    case $cur in\n        -*)\n            if [[ $(type -t compopt) = \"builtin\" ]]; then\n                compopt -o nospace\n            fi\n            local allflags\n            if [ ${#must_have_one_flag[@]} -ne 0 ]; then\n                allflags=(\"${must_have_one_flag[@]}\")\n            else\n                allflags=(\"${flags[*]} ${two_word_flags[*]}\")\n            fi\n            while IFS='' read -r comp; do\n                COMPREPLY+=(\"$comp\")\n            done < <(compgen -W \"${allflags[*]}\" -- \"$cur\")\n            if [[ $(type -t compopt) = \"builtin\" ]]; then\n                [[ \"${COMPREPLY[0]}\" == *= ]] || compopt +o nospace\n            fi\n\n            # complete after --flag=abc\n            if [[ $cur == *=* ]]; then\n                if [[ $(type -t compopt) = \"builtin\" ]]; then\n                    compopt +o nospace\n                fi\n\n                local index flag\n                flag=\"${cur%%=*}\"\n                __%[1]s_index_of_word \"${flag}\" \"${flags_with_completion[@]}\"\n                COMPREPLY=()\n                if [[ ${index} -ge 0 ]]; then\n                    PREFIX=\"\"\n                    cur=\"${cur#*=}\"\n                    ${flags_completion[${index}]}\n                    if [ -n \"${ZSH_VERSION}\" ]; then\n                        # zsh completion needs --flag= prefix\n                        eval \"COMPREPLY=( \\\"\\${COMPREPLY[@]/#/${flag}=}\\\" )\"\n                    fi\n                fi\n            fi\n            return 0;\n            ;;\n    esac\n\n    # check if we are handling a flag with special work handling\n    local index\n    __%[1]s_index_of_word \"${prev}\" \"${flags_with_completion[@]}\"\n    if [[ ${index} -ge 0 ]]; then\n        ${flags_completion[${index}]}\n        return\n    fi\n\n    # we are parsing a flag and don't have a special handler, no completion\n    if [[ ${cur} != \"${words[cword]}\" ]]; then\n        return\n    fi\n\n    local completions\n    completions=(\"${commands[@]}\")\n    if [[ ${#must_have_one_noun[@]} -ne 0 ]]; then\n        completions+=(\"${must_have_one_noun[@]}\")\n    elif [[ -n \"${has_completion_function}\" ]]; then\n        # if a go completion function is provided, defer to that function\n        __%[1]s_handle_go_custom_completion\n    fi\n    if [[ ${#must_have_one_flag[@]} -ne 0 ]]; then\n        completions+=(\"${must_have_one_flag[@]}\")\n    fi\n    while IFS='' read -r comp; do\n        COMPREPLY+=(\"$comp\")\n    done < <(compgen -W \"${completions[*]}\" -- \"$cur\")\n\n    if [[ ${#COMPREPLY[@]} -eq 0 && ${#noun_aliases[@]} -gt 0 && ${#must_have_one_noun[@]} -ne 0 ]]; then\n        while IFS='' read -r comp; do\n            COMPREPLY+=(\"$comp\")\n        done < <(compgen -W \"${noun_aliases[*]}\" -- \"$cur\")\n    fi\n\n    if [[ ${#COMPREPLY[@]} -eq 0 ]]; then\n\t\tif declare -F __%[1]s_custom_func >/dev/null; then\n\t\t\t# try command name qualified custom func\n\t\t\t__%[1]s_custom_func\n\t\telse\n\t\t\t# otherwise fall back to unqualified for compatibility\n\t\t\tdeclare -F __custom_func >/dev/null && __custom_func\n\t\tfi\n    fi\n\n    # available in bash-completion >= 2, not always present on macOS\n    if declare -F __ltrim_colon_completions >/dev/null; then\n        __ltrim_colon_completions \"$cur\"\n    fi\n\n    # If there is only 1 completion and it is a flag with an = it will be completed\n    # but we don't want a space after the =\n    if [[ \"${#COMPREPLY[@]}\" -eq \"1\" ]] && [[ $(type -t compopt) = \"builtin\" ]] && [[ \"${COMPREPLY[0]}\" == --*= ]]; then\n       compopt -o nospace\n    fi\n}\n\n# The arguments should be in the form \"ext1|ext2|extn\"\n__%[1]s_handle_filename_extension_flag()\n{\n    local ext=\"$1\"\n    _filedir \"@(${ext})\"\n}\n\n__%[1]s_handle_subdirs_in_dir_flag()\n{\n    local dir=\"$1\"\n    pushd \"${dir}\" >/dev/null 2>&1 && _filedir -d && popd >/dev/null 2>&1 || return\n}\n\n__%[1]s_handle_flag()\n{\n    __%[1]s_debug \"${FUNCNAME[0]}: c is $c words[c] is ${words[c]}\"\n\n    # if a command required a flag, and we found it, unset must_have_one_flag()\n    local flagname=${words[c]}\n    local flagvalue\n    # if the word contained an =\n    if [[ ${words[c]} == *\"=\"* ]]; then\n        flagvalue=${flagname#*=} # take in as flagvalue after the =\n        flagname=${flagname%%=*} # strip everything after the =\n        flagname=\"${flagname}=\" # but put the = back\n    fi\n    __%[1]s_debug \"${FUNCNAME[0]}: looking for ${flagname}\"\n    if __%[1]s_contains_word \"${flagname}\" \"${must_have_one_flag[@]}\"; then\n        must_have_one_flag=()\n    fi\n\n    # if you set a flag which only applies to this command, don't show subcommands\n    if __%[1]s_contains_word \"${flagname}\" \"${local_nonpersistent_flags[@]}\"; then\n      commands=()\n    fi\n\n    # keep flag value with flagname as flaghash\n    # flaghash variable is an associative array which is only supported in bash > 3.\n    if [[ -z \"${BASH_VERSION}\" || \"${BASH_VERSINFO[0]}\" -gt 3 ]]; then\n        if [ -n \"${flagvalue}\" ] ; then\n            flaghash[${flagname}]=${flagvalue}\n        elif [ -n \"${words[ $((c+1)) ]}\" ] ; then\n            flaghash[${flagname}]=${words[ $((c+1)) ]}\n        else\n            flaghash[${flagname}]=\"true\" # pad \"true\" for bool flag\n        fi\n    fi\n\n    # skip the argument to a two word flag\n    if [[ ${words[c]} != *\"=\"* ]] && __%[1]s_contains_word \"${words[c]}\" \"${two_word_flags[@]}\"; then\n\t\t\t  __%[1]s_debug \"${FUNCNAME[0]}: found a flag ${words[c]}, skip the next argument\"\n        c=$((c+1))\n        # if we are looking for a flags value, don't show commands\n        if [[ $c -eq $cword ]]; then\n            commands=()\n        fi\n    fi\n\n    c=$((c+1))\n\n}\n\n__%[1]s_handle_noun()\n{\n    __%[1]s_debug \"${FUNCNAME[0]}: c is $c words[c] is ${words[c]}\"\n\n    if __%[1]s_contains_word \"${words[c]}\" \"${must_have_one_noun[@]}\"; then\n        must_have_one_noun=()\n    elif __%[1]s_contains_word \"${words[c]}\" \"${noun_aliases[@]}\"; then\n        must_have_one_noun=()\n    fi\n\n    nouns+=(\"${words[c]}\")\n    c=$((c+1))\n}\n\n__%[1]s_handle_command()\n{\n    __%[1]s_debug \"${FUNCNAME[0]}: c is $c words[c] is ${words[c]}\"\n\n    local next_command\n    if [[ -n ${last_command} ]]; then\n        next_command=\"_${last_command}_${words[c]//:/__}\"\n    else\n        if [[ $c -eq 0 ]]; then\n            next_command=\"_%[1]s_root_command\"\n        else\n            next_command=\"_${words[c]//:/__}\"\n        fi\n    fi\n    c=$((c+1))\n    __%[1]s_debug \"${FUNCNAME[0]}: looking for ${next_command}\"\n    declare -F \"$next_command\" >/dev/null && $next_command\n}\n\n__%[1]s_handle_word()\n{\n    if [[ $c -ge $cword ]]; then\n        __%[1]s_handle_reply\n        return\n    fi\n    __%[1]s_debug \"${FUNCNAME[0]}: c is $c words[c] is ${words[c]}\"\n    if [[ \"${words[c]}\" == -* ]]; then\n        __%[1]s_handle_flag\n    elif __%[1]s_contains_word \"${words[c]}\" \"${commands[@]}\"; then\n        __%[1]s_handle_command\n    elif [[ $c -eq 0 ]]; then\n        __%[1]s_handle_command\n    elif __%[1]s_contains_word \"${words[c]}\" \"${command_aliases[@]}\"; then\n        # aliashash variable is an associative array which is only supported in bash > 3.\n        if [[ -z \"${BASH_VERSION}\" || \"${BASH_VERSINFO[0]}\" -gt 3 ]]; then\n            words[c]=${aliashash[${words[c]}]}\n            __%[1]s_handle_command\n        else\n            __%[1]s_handle_noun\n        fi\n    else\n        __%[1]s_handle_noun\n    fi\n    __%[1]s_handle_word\n}\n\n`, name, ShellCompNoDescRequestCmd,\n\t\tShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,\n\t\tShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs))\n}\n\nfunc writePostscript(buf *bytes.Buffer, name string) {\n\tname = strings.Replace(name, \":\", \"__\", -1)\n\tbuf.WriteString(fmt.Sprintf(\"__start_%s()\\n\", name))\n\tbuf.WriteString(fmt.Sprintf(`{\n    local cur prev words cword\n    declare -A flaghash 2>/dev/null || :\n    declare -A aliashash 2>/dev/null || :\n    if declare -F _init_completion >/dev/null 2>&1; then\n        _init_completion -s || return\n    else\n        __%[1]s_init_completion -n \"=\" || return\n    fi\n\n    local c=0\n    local flags=()\n    local two_word_flags=()\n    local local_nonpersistent_flags=()\n    local flags_with_completion=()\n    local flags_completion=()\n    local commands=(\"%[1]s\")\n    local must_have_one_flag=()\n    local must_have_one_noun=()\n    local has_completion_function\n    local last_command\n    local nouns=()\n\n    __%[1]s_handle_word\n}\n\n`, name))\n\tbuf.WriteString(fmt.Sprintf(`if [[ $(type -t compopt) = \"builtin\" ]]; then\n    complete -o default -F __start_%s %s\nelse\n    complete -o default -o nospace -F __start_%s %s\nfi\n\n`, name, name, name, name))\n\tbuf.WriteString(\"# ex: ts=4 sw=4 et filetype=sh\\n\")\n}\n\nfunc writeCommands(buf *bytes.Buffer, cmd *Command) {\n\tbuf.WriteString(\"    commands=()\\n\")\n\tfor _, c := range cmd.Commands() {\n\t\tif !c.IsAvailableCommand() && c != cmd.helpCommand {\n\t\t\tcontinue\n\t\t}\n\t\tbuf.WriteString(fmt.Sprintf(\"    commands+=(%q)\\n\", c.Name()))\n\t\twriteCmdAliases(buf, c)\n\t}\n\tbuf.WriteString(\"\\n\")\n}\n\nfunc writeFlagHandler(buf *bytes.Buffer, name string, annotations map[string][]string, cmd *Command) {\n\tfor key, value := range annotations {\n\t\tswitch key {\n\t\tcase BashCompFilenameExt:\n\t\t\tbuf.WriteString(fmt.Sprintf(\"    flags_with_completion+=(%q)\\n\", name))\n\n\t\t\tvar ext string\n\t\t\tif len(value) > 0 {\n\t\t\t\text = fmt.Sprintf(\"__%s_handle_filename_extension_flag \", cmd.Root().Name()) + strings.Join(value, \"|\")\n\t\t\t} else {\n\t\t\t\text = \"_filedir\"\n\t\t\t}\n\t\t\tbuf.WriteString(fmt.Sprintf(\"    flags_completion+=(%q)\\n\", ext))\n\t\tcase BashCompCustom:\n\t\t\tbuf.WriteString(fmt.Sprintf(\"    flags_with_completion+=(%q)\\n\", name))\n\t\t\tif len(value) > 0 {\n\t\t\t\thandlers := strings.Join(value, \"; \")\n\t\t\t\tbuf.WriteString(fmt.Sprintf(\"    flags_completion+=(%q)\\n\", handlers))\n\t\t\t} else {\n\t\t\t\tbuf.WriteString(\"    flags_completion+=(:)\\n\")\n\t\t\t}\n\t\tcase BashCompSubdirsInDir:\n\t\t\tbuf.WriteString(fmt.Sprintf(\"    flags_with_completion+=(%q)\\n\", name))\n\n\t\t\tvar ext string\n\t\t\tif len(value) == 1 {\n\t\t\t\text = fmt.Sprintf(\"__%s_handle_subdirs_in_dir_flag \", cmd.Root().Name()) + value[0]\n\t\t\t} else {\n\t\t\t\text = \"_filedir -d\"\n\t\t\t}\n\t\t\tbuf.WriteString(fmt.Sprintf(\"    flags_completion+=(%q)\\n\", ext))\n\t\t}\n\t}\n}\n\nfunc writeShortFlag(buf *bytes.Buffer, flag *pflag.Flag, cmd *Command) {\n\tname := flag.Shorthand\n\tformat := \"    \"\n\tif len(flag.NoOptDefVal) == 0 {\n\t\tformat += \"two_word_\"\n\t}\n\tformat += \"flags+=(\\\"-%s\\\")\\n\"\n\tbuf.WriteString(fmt.Sprintf(format, name))\n\twriteFlagHandler(buf, \"-\"+name, flag.Annotations, cmd)\n}\n\nfunc writeFlag(buf *bytes.Buffer, flag *pflag.Flag, cmd *Command) {\n\tname := flag.Name\n\tformat := \"    flags+=(\\\"--%s\"\n\tif len(flag.NoOptDefVal) == 0 {\n\t\tformat += \"=\"\n\t}\n\tformat += \"\\\")\\n\"\n\tbuf.WriteString(fmt.Sprintf(format, name))\n\tif len(flag.NoOptDefVal) == 0 {\n\t\tformat = \"    two_word_flags+=(\\\"--%s\\\")\\n\"\n\t\tbuf.WriteString(fmt.Sprintf(format, name))\n\t}\n\twriteFlagHandler(buf, \"--\"+name, flag.Annotations, cmd)\n}\n\nfunc writeLocalNonPersistentFlag(buf *bytes.Buffer, flag *pflag.Flag) {\n\tname := flag.Name\n\tformat := \"    local_nonpersistent_flags+=(\\\"--%[1]s\\\")\\n\"\n\tif len(flag.NoOptDefVal) == 0 {\n\t\tformat += \"    local_nonpersistent_flags+=(\\\"--%[1]s=\\\")\\n\"\n\t}\n\tbuf.WriteString(fmt.Sprintf(format, name))\n\tif len(flag.Shorthand) > 0 {\n\t\tbuf.WriteString(fmt.Sprintf(\"    local_nonpersistent_flags+=(\\\"-%s\\\")\\n\", flag.Shorthand))\n\t}\n}\n\n// Setup annotations for go completions for registered flags\nfunc prepareCustomAnnotationsForFlags(cmd *Command) {\n\tfor flag := range flagCompletionFunctions {\n\t\t// Make sure the completion script calls the __*_go_custom_completion function for\n\t\t// every registered flag.  We need to do this here (and not when the flag was registered\n\t\t// for completion) so that we can know the root command name for the prefix\n\t\t// of __<prefix>_go_custom_completion\n\t\tif flag.Annotations == nil {\n\t\t\tflag.Annotations = map[string][]string{}\n\t\t}\n\t\tflag.Annotations[BashCompCustom] = []string{fmt.Sprintf(\"__%[1]s_handle_go_custom_completion\", cmd.Root().Name())}\n\t}\n}\n\nfunc writeFlags(buf *bytes.Buffer, cmd *Command) {\n\tprepareCustomAnnotationsForFlags(cmd)\n\tbuf.WriteString(`    flags=()\n    two_word_flags=()\n    local_nonpersistent_flags=()\n    flags_with_completion=()\n    flags_completion=()\n\n`)\n\tlocalNonPersistentFlags := cmd.LocalNonPersistentFlags()\n\tcmd.NonInheritedFlags().VisitAll(func(flag *pflag.Flag) {\n\t\tif nonCompletableFlag(flag) {\n\t\t\treturn\n\t\t}\n\t\twriteFlag(buf, flag, cmd)\n\t\tif len(flag.Shorthand) > 0 {\n\t\t\twriteShortFlag(buf, flag, cmd)\n\t\t}\n\t\t// localNonPersistentFlags are used to stop the completion of subcommands when one is set\n\t\t// if TraverseChildren is true we should allow to complete subcommands\n\t\tif localNonPersistentFlags.Lookup(flag.Name) != nil && !cmd.Root().TraverseChildren {\n\t\t\twriteLocalNonPersistentFlag(buf, flag)\n\t\t}\n\t})\n\tcmd.InheritedFlags().VisitAll(func(flag *pflag.Flag) {\n\t\tif nonCompletableFlag(flag) {\n\t\t\treturn\n\t\t}\n\t\twriteFlag(buf, flag, cmd)\n\t\tif len(flag.Shorthand) > 0 {\n\t\t\twriteShortFlag(buf, flag, cmd)\n\t\t}\n\t})\n\n\tbuf.WriteString(\"\\n\")\n}\n\nfunc writeRequiredFlag(buf *bytes.Buffer, cmd *Command) {\n\tbuf.WriteString(\"    must_have_one_flag=()\\n\")\n\tflags := cmd.NonInheritedFlags()\n\tflags.VisitAll(func(flag *pflag.Flag) {\n\t\tif nonCompletableFlag(flag) {\n\t\t\treturn\n\t\t}\n\t\tfor key := range flag.Annotations {\n\t\t\tswitch key {\n\t\t\tcase BashCompOneRequiredFlag:\n\t\t\t\tformat := \"    must_have_one_flag+=(\\\"--%s\"\n\t\t\t\tif flag.Value.Type() != \"bool\" {\n\t\t\t\t\tformat += \"=\"\n\t\t\t\t}\n\t\t\t\tformat += \"\\\")\\n\"\n\t\t\t\tbuf.WriteString(fmt.Sprintf(format, flag.Name))\n\n\t\t\t\tif len(flag.Shorthand) > 0 {\n\t\t\t\t\tbuf.WriteString(fmt.Sprintf(\"    must_have_one_flag+=(\\\"-%s\\\")\\n\", flag.Shorthand))\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t})\n}\n\nfunc writeRequiredNouns(buf *bytes.Buffer, cmd *Command) {\n\tbuf.WriteString(\"    must_have_one_noun=()\\n\")\n\tsort.Sort(sort.StringSlice(cmd.ValidArgs))\n\tfor _, value := range cmd.ValidArgs {\n\t\t// Remove any description that may be included following a tab character.\n\t\t// Descriptions are not supported by bash completion.\n\t\tvalue = strings.Split(value, \"\\t\")[0]\n\t\tbuf.WriteString(fmt.Sprintf(\"    must_have_one_noun+=(%q)\\n\", value))\n\t}\n\tif cmd.ValidArgsFunction != nil {\n\t\tbuf.WriteString(\"    has_completion_function=1\\n\")\n\t}\n}\n\nfunc writeCmdAliases(buf *bytes.Buffer, cmd *Command) {\n\tif len(cmd.Aliases) == 0 {\n\t\treturn\n\t}\n\n\tsort.Sort(sort.StringSlice(cmd.Aliases))\n\n\tbuf.WriteString(fmt.Sprint(`    if [[ -z \"${BASH_VERSION}\" || \"${BASH_VERSINFO[0]}\" -gt 3 ]]; then`, \"\\n\"))\n\tfor _, value := range cmd.Aliases {\n\t\tbuf.WriteString(fmt.Sprintf(\"        command_aliases+=(%q)\\n\", value))\n\t\tbuf.WriteString(fmt.Sprintf(\"        aliashash[%q]=%q\\n\", value, cmd.Name()))\n\t}\n\tbuf.WriteString(`    fi`)\n\tbuf.WriteString(\"\\n\")\n}\nfunc writeArgAliases(buf *bytes.Buffer, cmd *Command) {\n\tbuf.WriteString(\"    noun_aliases=()\\n\")\n\tsort.Sort(sort.StringSlice(cmd.ArgAliases))\n\tfor _, value := range cmd.ArgAliases {\n\t\tbuf.WriteString(fmt.Sprintf(\"    noun_aliases+=(%q)\\n\", value))\n\t}\n}\n\nfunc gen(buf *bytes.Buffer, cmd *Command) {\n\tfor _, c := range cmd.Commands() {\n\t\tif !c.IsAvailableCommand() && c != cmd.helpCommand {\n\t\t\tcontinue\n\t\t}\n\t\tgen(buf, c)\n\t}\n\tcommandName := cmd.CommandPath()\n\tcommandName = strings.Replace(commandName, \" \", \"_\", -1)\n\tcommandName = strings.Replace(commandName, \":\", \"__\", -1)\n\n\tif cmd.Root() == cmd {\n\t\tbuf.WriteString(fmt.Sprintf(\"_%s_root_command()\\n{\\n\", commandName))\n\t} else {\n\t\tbuf.WriteString(fmt.Sprintf(\"_%s()\\n{\\n\", commandName))\n\t}\n\n\tbuf.WriteString(fmt.Sprintf(\"    last_command=%q\\n\", commandName))\n\tbuf.WriteString(\"\\n\")\n\tbuf.WriteString(\"    command_aliases=()\\n\")\n\tbuf.WriteString(\"\\n\")\n\n\twriteCommands(buf, cmd)\n\twriteFlags(buf, cmd)\n\twriteRequiredFlag(buf, cmd)\n\twriteRequiredNouns(buf, cmd)\n\twriteArgAliases(buf, cmd)\n\tbuf.WriteString(\"}\\n\\n\")\n}\n\n// GenBashCompletion generates bash completion file and writes to the passed writer.\nfunc (c *Command) GenBashCompletion(w io.Writer) error {\n\tbuf := new(bytes.Buffer)\n\twritePreamble(buf, c.Name())\n\tif len(c.BashCompletionFunction) > 0 {\n\t\tbuf.WriteString(c.BashCompletionFunction + \"\\n\")\n\t}\n\tgen(buf, c)\n\twritePostscript(buf, c.Name())\n\n\t_, err := buf.WriteTo(w)\n\treturn err\n}\n\nfunc nonCompletableFlag(flag *pflag.Flag) bool {\n\treturn flag.Hidden || len(flag.Deprecated) > 0\n}\n\n// GenBashCompletionFile generates bash completion file.\nfunc (c *Command) GenBashCompletionFile(filename string) error {\n\toutFile, err := os.Create(filename)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer outFile.Close()\n\n\treturn c.GenBashCompletion(outFile)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/bash_completions.md",
    "content": "# Generating Bash Completions For Your cobra.Command\n\nPlease refer to [Shell Completions](shell_completions.md) for details.\n\n## Bash legacy dynamic completions\n\nFor backwards-compatibility, Cobra still supports its legacy dynamic completion solution (described below).  Unlike the `ValidArgsFunction` solution, the legacy solution will only work for Bash shell-completion and not for other shells. This legacy solution can be used along-side `ValidArgsFunction` and `RegisterFlagCompletionFunc()`, as long as both solutions are not used for the same command.  This provides a path to gradually migrate from the legacy solution to the new solution.\n\nThe legacy solution allows you to inject bash functions into the bash completion script.  Those bash functions are responsible for providing the completion choices for your own completions.\n\nSome code that works in kubernetes:\n\n```bash\nconst (\n        bash_completion_func = `__kubectl_parse_get()\n{\n    local kubectl_output out\n    if kubectl_output=$(kubectl get --no-headers \"$1\" 2>/dev/null); then\n        out=($(echo \"${kubectl_output}\" | awk '{print $1}'))\n        COMPREPLY=( $( compgen -W \"${out[*]}\" -- \"$cur\" ) )\n    fi\n}\n\n__kubectl_get_resource()\n{\n    if [[ ${#nouns[@]} -eq 0 ]]; then\n        return 1\n    fi\n    __kubectl_parse_get ${nouns[${#nouns[@]} -1]}\n    if [[ $? -eq 0 ]]; then\n        return 0\n    fi\n}\n\n__kubectl_custom_func() {\n    case ${last_command} in\n        kubectl_get | kubectl_describe | kubectl_delete | kubectl_stop)\n            __kubectl_get_resource\n            return\n            ;;\n        *)\n            ;;\n    esac\n}\n`)\n```\n\nAnd then I set that in my command definition:\n\n```go\ncmds := &cobra.Command{\n\tUse:   \"kubectl\",\n\tShort: \"kubectl controls the Kubernetes cluster manager\",\n\tLong: `kubectl controls the Kubernetes cluster manager.\n\nFind more information at https://github.com/GoogleCloudPlatform/kubernetes.`,\n\tRun: runHelp,\n\tBashCompletionFunction: bash_completion_func,\n}\n```\n\nThe `BashCompletionFunction` option is really only valid/useful on the root command. Doing the above will cause `__kubectl_custom_func()` (`__<command-use>_custom_func()`) to be called when the built in processor was unable to find a solution. In the case of kubernetes a valid command might look something like `kubectl get pod [mypod]`. If you type `kubectl get pod [tab][tab]` the `__kubectl_customc_func()` will run because the cobra.Command only understood \"kubectl\" and \"get.\" `__kubectl_custom_func()` will see that the cobra.Command is \"kubectl_get\" and will thus call another helper `__kubectl_get_resource()`.  `__kubectl_get_resource` will look at the 'nouns' collected. In our example the only noun will be `pod`.  So it will call `__kubectl_parse_get pod`.  `__kubectl_parse_get` will actually call out to kubernetes and get any pods.  It will then set `COMPREPLY` to valid pods!\n\nSimilarly, for flags:\n\n```go\n\tannotation := make(map[string][]string)\n\tannotation[cobra.BashCompCustom] = []string{\"__kubectl_get_namespaces\"}\n\n\tflag := &pflag.Flag{\n\t\tName:        \"namespace\",\n\t\tUsage:       usage,\n\t\tAnnotations: annotation,\n\t}\n\tcmd.Flags().AddFlag(flag)\n```\n\nIn addition add the `__kubectl_get_namespaces` implementation in the `BashCompletionFunction`\nvalue, e.g.:\n\n```bash\n__kubectl_get_namespaces()\n{\n    local template\n    template=\"{{ range .items  }}{{ .metadata.name }} {{ end }}\"\n    local kubectl_out\n    if kubectl_out=$(kubectl get -o template --template=\"${template}\" namespace 2>/dev/null); then\n        COMPREPLY=( $( compgen -W \"${kubectl_out}[*]\" -- \"$cur\" ) )\n    fi\n}\n```\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/cobra.go",
    "content": "// Copyright © 2013 Steve Francia <spf@spf13.com>.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n// Commands similar to git, go tools and other modern CLI tools\n// inspired by go, go-Commander, gh and subcommand\n\npackage cobra\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"strings\"\n\t\"text/template\"\n\t\"time\"\n\t\"unicode\"\n)\n\nvar templateFuncs = template.FuncMap{\n\t\"trim\":                    strings.TrimSpace,\n\t\"trimRightSpace\":          trimRightSpace,\n\t\"trimTrailingWhitespaces\": trimRightSpace,\n\t\"appendIfNotPresent\":      appendIfNotPresent,\n\t\"rpad\":                    rpad,\n\t\"gt\":                      Gt,\n\t\"eq\":                      Eq,\n}\n\nvar initializers []func()\n\n// EnablePrefixMatching allows to set automatic prefix matching. Automatic prefix matching can be a dangerous thing\n// to automatically enable in CLI tools.\n// Set this to true to enable it.\nvar EnablePrefixMatching = false\n\n// EnableCommandSorting controls sorting of the slice of commands, which is turned on by default.\n// To disable sorting, set it to false.\nvar EnableCommandSorting = true\n\n// MousetrapHelpText enables an information splash screen on Windows\n// if the CLI is started from explorer.exe.\n// To disable the mousetrap, just set this variable to blank string (\"\").\n// Works only on Microsoft Windows.\nvar MousetrapHelpText = `This is a command line tool.\n\nYou need to open cmd.exe and run it from there.\n`\n\n// MousetrapDisplayDuration controls how long the MousetrapHelpText message is displayed on Windows\n// if the CLI is started from explorer.exe. Set to 0 to wait for the return key to be pressed.\n// To disable the mousetrap, just set MousetrapHelpText to blank string (\"\").\n// Works only on Microsoft Windows.\nvar MousetrapDisplayDuration = 5 * time.Second\n\n// AddTemplateFunc adds a template function that's available to Usage and Help\n// template generation.\nfunc AddTemplateFunc(name string, tmplFunc interface{}) {\n\ttemplateFuncs[name] = tmplFunc\n}\n\n// AddTemplateFuncs adds multiple template functions that are available to Usage and\n// Help template generation.\nfunc AddTemplateFuncs(tmplFuncs template.FuncMap) {\n\tfor k, v := range tmplFuncs {\n\t\ttemplateFuncs[k] = v\n\t}\n}\n\n// OnInitialize sets the passed functions to be run when each command's\n// Execute method is called.\nfunc OnInitialize(y ...func()) {\n\tinitializers = append(initializers, y...)\n}\n\n// FIXME Gt is unused by cobra and should be removed in a version 2. It exists only for compatibility with users of cobra.\n\n// Gt takes two types and checks whether the first type is greater than the second. In case of types Arrays, Chans,\n// Maps and Slices, Gt will compare their lengths. Ints are compared directly while strings are first parsed as\n// ints and then compared.\nfunc Gt(a interface{}, b interface{}) bool {\n\tvar left, right int64\n\tav := reflect.ValueOf(a)\n\n\tswitch av.Kind() {\n\tcase reflect.Array, reflect.Chan, reflect.Map, reflect.Slice:\n\t\tleft = int64(av.Len())\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tleft = av.Int()\n\tcase reflect.String:\n\t\tleft, _ = strconv.ParseInt(av.String(), 10, 64)\n\t}\n\n\tbv := reflect.ValueOf(b)\n\n\tswitch bv.Kind() {\n\tcase reflect.Array, reflect.Chan, reflect.Map, reflect.Slice:\n\t\tright = int64(bv.Len())\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tright = bv.Int()\n\tcase reflect.String:\n\t\tright, _ = strconv.ParseInt(bv.String(), 10, 64)\n\t}\n\n\treturn left > right\n}\n\n// FIXME Eq is unused by cobra and should be removed in a version 2. It exists only for compatibility with users of cobra.\n\n// Eq takes two types and checks whether they are equal. Supported types are int and string. Unsupported types will panic.\nfunc Eq(a interface{}, b interface{}) bool {\n\tav := reflect.ValueOf(a)\n\tbv := reflect.ValueOf(b)\n\n\tswitch av.Kind() {\n\tcase reflect.Array, reflect.Chan, reflect.Map, reflect.Slice:\n\t\tpanic(\"Eq called on unsupported type\")\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn av.Int() == bv.Int()\n\tcase reflect.String:\n\t\treturn av.String() == bv.String()\n\t}\n\treturn false\n}\n\nfunc trimRightSpace(s string) string {\n\treturn strings.TrimRightFunc(s, unicode.IsSpace)\n}\n\n// FIXME appendIfNotPresent is unused by cobra and should be removed in a version 2. It exists only for compatibility with users of cobra.\n\n// appendIfNotPresent will append stringToAppend to the end of s, but only if it's not yet present in s.\nfunc appendIfNotPresent(s, stringToAppend string) string {\n\tif strings.Contains(s, stringToAppend) {\n\t\treturn s\n\t}\n\treturn s + \" \" + stringToAppend\n}\n\n// rpad adds padding to the right of a string.\nfunc rpad(s string, padding int) string {\n\ttemplate := fmt.Sprintf(\"%%-%ds\", padding)\n\treturn fmt.Sprintf(template, s)\n}\n\n// tmpl executes the given template text on data, writing the result to w.\nfunc tmpl(w io.Writer, text string, data interface{}) error {\n\tt := template.New(\"top\")\n\tt.Funcs(templateFuncs)\n\ttemplate.Must(t.Parse(text))\n\treturn t.Execute(w, data)\n}\n\n// ld compares two strings and returns the levenshtein distance between them.\nfunc ld(s, t string, ignoreCase bool) int {\n\tif ignoreCase {\n\t\ts = strings.ToLower(s)\n\t\tt = strings.ToLower(t)\n\t}\n\td := make([][]int, len(s)+1)\n\tfor i := range d {\n\t\td[i] = make([]int, len(t)+1)\n\t}\n\tfor i := range d {\n\t\td[i][0] = i\n\t}\n\tfor j := range d[0] {\n\t\td[0][j] = j\n\t}\n\tfor j := 1; j <= len(t); j++ {\n\t\tfor i := 1; i <= len(s); i++ {\n\t\t\tif s[i-1] == t[j-1] {\n\t\t\t\td[i][j] = d[i-1][j-1]\n\t\t\t} else {\n\t\t\t\tmin := d[i-1][j]\n\t\t\t\tif d[i][j-1] < min {\n\t\t\t\t\tmin = d[i][j-1]\n\t\t\t\t}\n\t\t\t\tif d[i-1][j-1] < min {\n\t\t\t\t\tmin = d[i-1][j-1]\n\t\t\t\t}\n\t\t\t\td[i][j] = min + 1\n\t\t\t}\n\t\t}\n\n\t}\n\treturn d[len(s)][len(t)]\n}\n\nfunc stringInSlice(a string, list []string) bool {\n\tfor _, b := range list {\n\t\tif b == a {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/command.go",
    "content": "// Copyright © 2013 Steve Francia <spf@spf13.com>.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n// Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces.\n// In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code.\npackage cobra\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sort\"\n\t\"strings\"\n\n\tflag \"github.com/spf13/pflag\"\n)\n\n// FParseErrWhitelist configures Flag parse errors to be ignored\ntype FParseErrWhitelist flag.ParseErrorsWhitelist\n\n// Command is just that, a command for your application.\n// E.g.  'go run ...' - 'run' is the command. Cobra requires\n// you to define the usage and description as part of your command\n// definition to ensure usability.\ntype Command struct {\n\t// Use is the one-line usage message.\n\t// Recommended syntax is as follow:\n\t//   [ ] identifies an optional argument. Arguments that are not enclosed in brackets are required.\n\t//   ... indicates that you can specify multiple values for the previous argument.\n\t//   |   indicates mutually exclusive information. You can use the argument to the left of the separator or the\n\t//       argument to the right of the separator. You cannot use both arguments in a single use of the command.\n\t//   { } delimits a set of mutually exclusive arguments when one of the arguments is required. If the arguments are\n\t//       optional, they are enclosed in brackets ([ ]).\n\t// Example: add [-F file | -D dir]... [-f format] profile\n\tUse string\n\n\t// Aliases is an array of aliases that can be used instead of the first word in Use.\n\tAliases []string\n\n\t// SuggestFor is an array of command names for which this command will be suggested -\n\t// similar to aliases but only suggests.\n\tSuggestFor []string\n\n\t// Short is the short description shown in the 'help' output.\n\tShort string\n\n\t// Long is the long message shown in the 'help <this-command>' output.\n\tLong string\n\n\t// Example is examples of how to use the command.\n\tExample string\n\n\t// ValidArgs is list of all valid non-flag arguments that are accepted in bash completions\n\tValidArgs []string\n\t// ValidArgsFunction is an optional function that provides valid non-flag arguments for bash completion.\n\t// It is a dynamic version of using ValidArgs.\n\t// Only one of ValidArgs and ValidArgsFunction can be used for a command.\n\tValidArgsFunction func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective)\n\n\t// Expected arguments\n\tArgs PositionalArgs\n\n\t// ArgAliases is List of aliases for ValidArgs.\n\t// These are not suggested to the user in the bash completion,\n\t// but accepted if entered manually.\n\tArgAliases []string\n\n\t// BashCompletionFunction is custom functions used by the bash autocompletion generator.\n\tBashCompletionFunction string\n\n\t// Deprecated defines, if this command is deprecated and should print this string when used.\n\tDeprecated string\n\n\t// Hidden defines, if this command is hidden and should NOT show up in the list of available commands.\n\tHidden bool\n\n\t// Annotations are key/value pairs that can be used by applications to identify or\n\t// group commands.\n\tAnnotations map[string]string\n\n\t// Version defines the version for this command. If this value is non-empty and the command does not\n\t// define a \"version\" flag, a \"version\" boolean flag will be added to the command and, if specified,\n\t// will print content of the \"Version\" variable. A shorthand \"v\" flag will also be added if the\n\t// command does not define one.\n\tVersion string\n\n\t// The *Run functions are executed in the following order:\n\t//   * PersistentPreRun()\n\t//   * PreRun()\n\t//   * Run()\n\t//   * PostRun()\n\t//   * PersistentPostRun()\n\t// All functions get the same args, the arguments after the command name.\n\t//\n\t// PersistentPreRun: children of this command will inherit and execute.\n\tPersistentPreRun func(cmd *Command, args []string)\n\t// PersistentPreRunE: PersistentPreRun but returns an error.\n\tPersistentPreRunE func(cmd *Command, args []string) error\n\t// PreRun: children of this command will not inherit.\n\tPreRun func(cmd *Command, args []string)\n\t// PreRunE: PreRun but returns an error.\n\tPreRunE func(cmd *Command, args []string) error\n\t// Run: Typically the actual work function. Most commands will only implement this.\n\tRun func(cmd *Command, args []string)\n\t// RunE: Run but returns an error.\n\tRunE func(cmd *Command, args []string) error\n\t// PostRun: run after the Run command.\n\tPostRun func(cmd *Command, args []string)\n\t// PostRunE: PostRun but returns an error.\n\tPostRunE func(cmd *Command, args []string) error\n\t// PersistentPostRun: children of this command will inherit and execute after PostRun.\n\tPersistentPostRun func(cmd *Command, args []string)\n\t// PersistentPostRunE: PersistentPostRun but returns an error.\n\tPersistentPostRunE func(cmd *Command, args []string) error\n\n\t// SilenceErrors is an option to quiet errors down stream.\n\tSilenceErrors bool\n\n\t// SilenceUsage is an option to silence usage when an error occurs.\n\tSilenceUsage bool\n\n\t// DisableFlagParsing disables the flag parsing.\n\t// If this is true all flags will be passed to the command as arguments.\n\tDisableFlagParsing bool\n\n\t// DisableAutoGenTag defines, if gen tag (\"Auto generated by spf13/cobra...\")\n\t// will be printed by generating docs for this command.\n\tDisableAutoGenTag bool\n\n\t// DisableFlagsInUseLine will disable the addition of [flags] to the usage\n\t// line of a command when printing help or generating docs\n\tDisableFlagsInUseLine bool\n\n\t// DisableSuggestions disables the suggestions based on Levenshtein distance\n\t// that go along with 'unknown command' messages.\n\tDisableSuggestions bool\n\t// SuggestionsMinimumDistance defines minimum levenshtein distance to display suggestions.\n\t// Must be > 0.\n\tSuggestionsMinimumDistance int\n\n\t// TraverseChildren parses flags on all parents before executing child command.\n\tTraverseChildren bool\n\n\t// FParseErrWhitelist flag parse errors to be ignored\n\tFParseErrWhitelist FParseErrWhitelist\n\n\tctx context.Context\n\n\t// commands is the list of commands supported by this program.\n\tcommands []*Command\n\t// parent is a parent command for this command.\n\tparent *Command\n\t// Max lengths of commands' string lengths for use in padding.\n\tcommandsMaxUseLen         int\n\tcommandsMaxCommandPathLen int\n\tcommandsMaxNameLen        int\n\t// commandsAreSorted defines, if command slice are sorted or not.\n\tcommandsAreSorted bool\n\t// commandCalledAs is the name or alias value used to call this command.\n\tcommandCalledAs struct {\n\t\tname   string\n\t\tcalled bool\n\t}\n\n\t// args is actual args parsed from flags.\n\targs []string\n\t// flagErrorBuf contains all error messages from pflag.\n\tflagErrorBuf *bytes.Buffer\n\t// flags is full set of flags.\n\tflags *flag.FlagSet\n\t// pflags contains persistent flags.\n\tpflags *flag.FlagSet\n\t// lflags contains local flags.\n\tlflags *flag.FlagSet\n\t// iflags contains inherited flags.\n\tiflags *flag.FlagSet\n\t// parentsPflags is all persistent flags of cmd's parents.\n\tparentsPflags *flag.FlagSet\n\t// globNormFunc is the global normalization function\n\t// that we can use on every pflag set and children commands\n\tglobNormFunc func(f *flag.FlagSet, name string) flag.NormalizedName\n\n\t// usageFunc is usage func defined by user.\n\tusageFunc func(*Command) error\n\t// usageTemplate is usage template defined by user.\n\tusageTemplate string\n\t// flagErrorFunc is func defined by user and it's called when the parsing of\n\t// flags returns an error.\n\tflagErrorFunc func(*Command, error) error\n\t// helpTemplate is help template defined by user.\n\thelpTemplate string\n\t// helpFunc is help func defined by user.\n\thelpFunc func(*Command, []string)\n\t// helpCommand is command with usage 'help'. If it's not defined by user,\n\t// cobra uses default help command.\n\thelpCommand *Command\n\t// versionTemplate is the version template defined by user.\n\tversionTemplate string\n\n\t// inReader is a reader defined by the user that replaces stdin\n\tinReader io.Reader\n\t// outWriter is a writer defined by the user that replaces stdout\n\toutWriter io.Writer\n\t// errWriter is a writer defined by the user that replaces stderr\n\terrWriter io.Writer\n}\n\n// Context returns underlying command context. If command wasn't\n// executed with ExecuteContext Context returns Background context.\nfunc (c *Command) Context() context.Context {\n\treturn c.ctx\n}\n\n// SetArgs sets arguments for the command. It is set to os.Args[1:] by default, if desired, can be overridden\n// particularly useful when testing.\nfunc (c *Command) SetArgs(a []string) {\n\tc.args = a\n}\n\n// SetOutput sets the destination for usage and error messages.\n// If output is nil, os.Stderr is used.\n// Deprecated: Use SetOut and/or SetErr instead\nfunc (c *Command) SetOutput(output io.Writer) {\n\tc.outWriter = output\n\tc.errWriter = output\n}\n\n// SetOut sets the destination for usage messages.\n// If newOut is nil, os.Stdout is used.\nfunc (c *Command) SetOut(newOut io.Writer) {\n\tc.outWriter = newOut\n}\n\n// SetErr sets the destination for error messages.\n// If newErr is nil, os.Stderr is used.\nfunc (c *Command) SetErr(newErr io.Writer) {\n\tc.errWriter = newErr\n}\n\n// SetIn sets the source for input data\n// If newIn is nil, os.Stdin is used.\nfunc (c *Command) SetIn(newIn io.Reader) {\n\tc.inReader = newIn\n}\n\n// SetUsageFunc sets usage function. Usage can be defined by application.\nfunc (c *Command) SetUsageFunc(f func(*Command) error) {\n\tc.usageFunc = f\n}\n\n// SetUsageTemplate sets usage template. Can be defined by Application.\nfunc (c *Command) SetUsageTemplate(s string) {\n\tc.usageTemplate = s\n}\n\n// SetFlagErrorFunc sets a function to generate an error when flag parsing\n// fails.\nfunc (c *Command) SetFlagErrorFunc(f func(*Command, error) error) {\n\tc.flagErrorFunc = f\n}\n\n// SetHelpFunc sets help function. Can be defined by Application.\nfunc (c *Command) SetHelpFunc(f func(*Command, []string)) {\n\tc.helpFunc = f\n}\n\n// SetHelpCommand sets help command.\nfunc (c *Command) SetHelpCommand(cmd *Command) {\n\tc.helpCommand = cmd\n}\n\n// SetHelpTemplate sets help template to be used. Application can use it to set custom template.\nfunc (c *Command) SetHelpTemplate(s string) {\n\tc.helpTemplate = s\n}\n\n// SetVersionTemplate sets version template to be used. Application can use it to set custom template.\nfunc (c *Command) SetVersionTemplate(s string) {\n\tc.versionTemplate = s\n}\n\n// SetGlobalNormalizationFunc sets a normalization function to all flag sets and also to child commands.\n// The user should not have a cyclic dependency on commands.\nfunc (c *Command) SetGlobalNormalizationFunc(n func(f *flag.FlagSet, name string) flag.NormalizedName) {\n\tc.Flags().SetNormalizeFunc(n)\n\tc.PersistentFlags().SetNormalizeFunc(n)\n\tc.globNormFunc = n\n\n\tfor _, command := range c.commands {\n\t\tcommand.SetGlobalNormalizationFunc(n)\n\t}\n}\n\n// OutOrStdout returns output to stdout.\nfunc (c *Command) OutOrStdout() io.Writer {\n\treturn c.getOut(os.Stdout)\n}\n\n// OutOrStderr returns output to stderr\nfunc (c *Command) OutOrStderr() io.Writer {\n\treturn c.getOut(os.Stderr)\n}\n\n// ErrOrStderr returns output to stderr\nfunc (c *Command) ErrOrStderr() io.Writer {\n\treturn c.getErr(os.Stderr)\n}\n\n// InOrStdin returns input to stdin\nfunc (c *Command) InOrStdin() io.Reader {\n\treturn c.getIn(os.Stdin)\n}\n\nfunc (c *Command) getOut(def io.Writer) io.Writer {\n\tif c.outWriter != nil {\n\t\treturn c.outWriter\n\t}\n\tif c.HasParent() {\n\t\treturn c.parent.getOut(def)\n\t}\n\treturn def\n}\n\nfunc (c *Command) getErr(def io.Writer) io.Writer {\n\tif c.errWriter != nil {\n\t\treturn c.errWriter\n\t}\n\tif c.HasParent() {\n\t\treturn c.parent.getErr(def)\n\t}\n\treturn def\n}\n\nfunc (c *Command) getIn(def io.Reader) io.Reader {\n\tif c.inReader != nil {\n\t\treturn c.inReader\n\t}\n\tif c.HasParent() {\n\t\treturn c.parent.getIn(def)\n\t}\n\treturn def\n}\n\n// UsageFunc returns either the function set by SetUsageFunc for this command\n// or a parent, or it returns a default usage function.\nfunc (c *Command) UsageFunc() (f func(*Command) error) {\n\tif c.usageFunc != nil {\n\t\treturn c.usageFunc\n\t}\n\tif c.HasParent() {\n\t\treturn c.Parent().UsageFunc()\n\t}\n\treturn func(c *Command) error {\n\t\tc.mergePersistentFlags()\n\t\terr := tmpl(c.OutOrStderr(), c.UsageTemplate(), c)\n\t\tif err != nil {\n\t\t\tc.PrintErrln(err)\n\t\t}\n\t\treturn err\n\t}\n}\n\n// Usage puts out the usage for the command.\n// Used when a user provides invalid input.\n// Can be defined by user by overriding UsageFunc.\nfunc (c *Command) Usage() error {\n\treturn c.UsageFunc()(c)\n}\n\n// HelpFunc returns either the function set by SetHelpFunc for this command\n// or a parent, or it returns a function with default help behavior.\nfunc (c *Command) HelpFunc() func(*Command, []string) {\n\tif c.helpFunc != nil {\n\t\treturn c.helpFunc\n\t}\n\tif c.HasParent() {\n\t\treturn c.Parent().HelpFunc()\n\t}\n\treturn func(c *Command, a []string) {\n\t\tc.mergePersistentFlags()\n\t\t// The help should be sent to stdout\n\t\t// See https://github.com/spf13/cobra/issues/1002\n\t\terr := tmpl(c.OutOrStdout(), c.HelpTemplate(), c)\n\t\tif err != nil {\n\t\t\tc.PrintErrln(err)\n\t\t}\n\t}\n}\n\n// Help puts out the help for the command.\n// Used when a user calls help [command].\n// Can be defined by user by overriding HelpFunc.\nfunc (c *Command) Help() error {\n\tc.HelpFunc()(c, []string{})\n\treturn nil\n}\n\n// UsageString returns usage string.\nfunc (c *Command) UsageString() string {\n\t// Storing normal writers\n\ttmpOutput := c.outWriter\n\ttmpErr := c.errWriter\n\n\tbb := new(bytes.Buffer)\n\tc.outWriter = bb\n\tc.errWriter = bb\n\n\tc.Usage()\n\n\t// Setting things back to normal\n\tc.outWriter = tmpOutput\n\tc.errWriter = tmpErr\n\n\treturn bb.String()\n}\n\n// FlagErrorFunc returns either the function set by SetFlagErrorFunc for this\n// command or a parent, or it returns a function which returns the original\n// error.\nfunc (c *Command) FlagErrorFunc() (f func(*Command, error) error) {\n\tif c.flagErrorFunc != nil {\n\t\treturn c.flagErrorFunc\n\t}\n\n\tif c.HasParent() {\n\t\treturn c.parent.FlagErrorFunc()\n\t}\n\treturn func(c *Command, err error) error {\n\t\treturn err\n\t}\n}\n\nvar minUsagePadding = 25\n\n// UsagePadding return padding for the usage.\nfunc (c *Command) UsagePadding() int {\n\tif c.parent == nil || minUsagePadding > c.parent.commandsMaxUseLen {\n\t\treturn minUsagePadding\n\t}\n\treturn c.parent.commandsMaxUseLen\n}\n\nvar minCommandPathPadding = 11\n\n// CommandPathPadding return padding for the command path.\nfunc (c *Command) CommandPathPadding() int {\n\tif c.parent == nil || minCommandPathPadding > c.parent.commandsMaxCommandPathLen {\n\t\treturn minCommandPathPadding\n\t}\n\treturn c.parent.commandsMaxCommandPathLen\n}\n\nvar minNamePadding = 11\n\n// NamePadding returns padding for the name.\nfunc (c *Command) NamePadding() int {\n\tif c.parent == nil || minNamePadding > c.parent.commandsMaxNameLen {\n\t\treturn minNamePadding\n\t}\n\treturn c.parent.commandsMaxNameLen\n}\n\n// UsageTemplate returns usage template for the command.\nfunc (c *Command) UsageTemplate() string {\n\tif c.usageTemplate != \"\" {\n\t\treturn c.usageTemplate\n\t}\n\n\tif c.HasParent() {\n\t\treturn c.parent.UsageTemplate()\n\t}\n\treturn `Usage:{{if .Runnable}}\n  {{.UseLine}}{{end}}{{if .HasAvailableSubCommands}}\n  {{.CommandPath}} [command]{{end}}{{if gt (len .Aliases) 0}}\n\nAliases:\n  {{.NameAndAliases}}{{end}}{{if .HasExample}}\n\nExamples:\n{{.Example}}{{end}}{{if .HasAvailableSubCommands}}\n\nAvailable Commands:{{range .Commands}}{{if (or .IsAvailableCommand (eq .Name \"help\"))}}\n  {{rpad .Name .NamePadding }} {{.Short}}{{end}}{{end}}{{end}}{{if .HasAvailableLocalFlags}}\n\nFlags:\n{{.LocalFlags.FlagUsages | trimTrailingWhitespaces}}{{end}}{{if .HasAvailableInheritedFlags}}\n\nGlobal Flags:\n{{.InheritedFlags.FlagUsages | trimTrailingWhitespaces}}{{end}}{{if .HasHelpSubCommands}}\n\nAdditional help topics:{{range .Commands}}{{if .IsAdditionalHelpTopicCommand}}\n  {{rpad .CommandPath .CommandPathPadding}} {{.Short}}{{end}}{{end}}{{end}}{{if .HasAvailableSubCommands}}\n\nUse \"{{.CommandPath}} [command] --help\" for more information about a command.{{end}}\n`\n}\n\n// HelpTemplate return help template for the command.\nfunc (c *Command) HelpTemplate() string {\n\tif c.helpTemplate != \"\" {\n\t\treturn c.helpTemplate\n\t}\n\n\tif c.HasParent() {\n\t\treturn c.parent.HelpTemplate()\n\t}\n\treturn `{{with (or .Long .Short)}}{{. | trimTrailingWhitespaces}}\n\n{{end}}{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}`\n}\n\n// VersionTemplate return version template for the command.\nfunc (c *Command) VersionTemplate() string {\n\tif c.versionTemplate != \"\" {\n\t\treturn c.versionTemplate\n\t}\n\n\tif c.HasParent() {\n\t\treturn c.parent.VersionTemplate()\n\t}\n\treturn `{{with .Name}}{{printf \"%s \" .}}{{end}}{{printf \"version %s\" .Version}}\n`\n}\n\nfunc hasNoOptDefVal(name string, fs *flag.FlagSet) bool {\n\tflag := fs.Lookup(name)\n\tif flag == nil {\n\t\treturn false\n\t}\n\treturn flag.NoOptDefVal != \"\"\n}\n\nfunc shortHasNoOptDefVal(name string, fs *flag.FlagSet) bool {\n\tif len(name) == 0 {\n\t\treturn false\n\t}\n\n\tflag := fs.ShorthandLookup(name[:1])\n\tif flag == nil {\n\t\treturn false\n\t}\n\treturn flag.NoOptDefVal != \"\"\n}\n\nfunc stripFlags(args []string, c *Command) []string {\n\tif len(args) == 0 {\n\t\treturn args\n\t}\n\tc.mergePersistentFlags()\n\n\tcommands := []string{}\n\tflags := c.Flags()\n\nLoop:\n\tfor len(args) > 0 {\n\t\ts := args[0]\n\t\targs = args[1:]\n\t\tswitch {\n\t\tcase s == \"--\":\n\t\t\t// \"--\" terminates the flags\n\t\t\tbreak Loop\n\t\tcase strings.HasPrefix(s, \"--\") && !strings.Contains(s, \"=\") && !hasNoOptDefVal(s[2:], flags):\n\t\t\t// If '--flag arg' then\n\t\t\t// delete arg from args.\n\t\t\tfallthrough // (do the same as below)\n\t\tcase strings.HasPrefix(s, \"-\") && !strings.Contains(s, \"=\") && len(s) == 2 && !shortHasNoOptDefVal(s[1:], flags):\n\t\t\t// If '-f arg' then\n\t\t\t// delete 'arg' from args or break the loop if len(args) <= 1.\n\t\t\tif len(args) <= 1 {\n\t\t\t\tbreak Loop\n\t\t\t} else {\n\t\t\t\targs = args[1:]\n\t\t\t\tcontinue\n\t\t\t}\n\t\tcase s != \"\" && !strings.HasPrefix(s, \"-\"):\n\t\t\tcommands = append(commands, s)\n\t\t}\n\t}\n\n\treturn commands\n}\n\n// argsMinusFirstX removes only the first x from args.  Otherwise, commands that look like\n// openshift admin policy add-role-to-user admin my-user, lose the admin argument (arg[4]).\nfunc argsMinusFirstX(args []string, x string) []string {\n\tfor i, y := range args {\n\t\tif x == y {\n\t\t\tret := []string{}\n\t\t\tret = append(ret, args[:i]...)\n\t\t\tret = append(ret, args[i+1:]...)\n\t\t\treturn ret\n\t\t}\n\t}\n\treturn args\n}\n\nfunc isFlagArg(arg string) bool {\n\treturn ((len(arg) >= 3 && arg[1] == '-') ||\n\t\t(len(arg) >= 2 && arg[0] == '-' && arg[1] != '-'))\n}\n\n// Find the target command given the args and command tree\n// Meant to be run on the highest node. Only searches down.\nfunc (c *Command) Find(args []string) (*Command, []string, error) {\n\tvar innerfind func(*Command, []string) (*Command, []string)\n\n\tinnerfind = func(c *Command, innerArgs []string) (*Command, []string) {\n\t\targsWOflags := stripFlags(innerArgs, c)\n\t\tif len(argsWOflags) == 0 {\n\t\t\treturn c, innerArgs\n\t\t}\n\t\tnextSubCmd := argsWOflags[0]\n\n\t\tcmd := c.findNext(nextSubCmd)\n\t\tif cmd != nil {\n\t\t\treturn innerfind(cmd, argsMinusFirstX(innerArgs, nextSubCmd))\n\t\t}\n\t\treturn c, innerArgs\n\t}\n\n\tcommandFound, a := innerfind(c, args)\n\tif commandFound.Args == nil {\n\t\treturn commandFound, a, legacyArgs(commandFound, stripFlags(a, commandFound))\n\t}\n\treturn commandFound, a, nil\n}\n\nfunc (c *Command) findSuggestions(arg string) string {\n\tif c.DisableSuggestions {\n\t\treturn \"\"\n\t}\n\tif c.SuggestionsMinimumDistance <= 0 {\n\t\tc.SuggestionsMinimumDistance = 2\n\t}\n\tsuggestionsString := \"\"\n\tif suggestions := c.SuggestionsFor(arg); len(suggestions) > 0 {\n\t\tsuggestionsString += \"\\n\\nDid you mean this?\\n\"\n\t\tfor _, s := range suggestions {\n\t\t\tsuggestionsString += fmt.Sprintf(\"\\t%v\\n\", s)\n\t\t}\n\t}\n\treturn suggestionsString\n}\n\nfunc (c *Command) findNext(next string) *Command {\n\tmatches := make([]*Command, 0)\n\tfor _, cmd := range c.commands {\n\t\tif cmd.Name() == next || cmd.HasAlias(next) {\n\t\t\tcmd.commandCalledAs.name = next\n\t\t\treturn cmd\n\t\t}\n\t\tif EnablePrefixMatching && cmd.hasNameOrAliasPrefix(next) {\n\t\t\tmatches = append(matches, cmd)\n\t\t}\n\t}\n\n\tif len(matches) == 1 {\n\t\treturn matches[0]\n\t}\n\n\treturn nil\n}\n\n// Traverse the command tree to find the command, and parse args for\n// each parent.\nfunc (c *Command) Traverse(args []string) (*Command, []string, error) {\n\tflags := []string{}\n\tinFlag := false\n\n\tfor i, arg := range args {\n\t\tswitch {\n\t\t// A long flag with a space separated value\n\t\tcase strings.HasPrefix(arg, \"--\") && !strings.Contains(arg, \"=\"):\n\t\t\t// TODO: this isn't quite right, we should really check ahead for 'true' or 'false'\n\t\t\tinFlag = !hasNoOptDefVal(arg[2:], c.Flags())\n\t\t\tflags = append(flags, arg)\n\t\t\tcontinue\n\t\t// A short flag with a space separated value\n\t\tcase strings.HasPrefix(arg, \"-\") && !strings.Contains(arg, \"=\") && len(arg) == 2 && !shortHasNoOptDefVal(arg[1:], c.Flags()):\n\t\t\tinFlag = true\n\t\t\tflags = append(flags, arg)\n\t\t\tcontinue\n\t\t// The value for a flag\n\t\tcase inFlag:\n\t\t\tinFlag = false\n\t\t\tflags = append(flags, arg)\n\t\t\tcontinue\n\t\t// A flag without a value, or with an `=` separated value\n\t\tcase isFlagArg(arg):\n\t\t\tflags = append(flags, arg)\n\t\t\tcontinue\n\t\t}\n\n\t\tcmd := c.findNext(arg)\n\t\tif cmd == nil {\n\t\t\treturn c, args, nil\n\t\t}\n\n\t\tif err := c.ParseFlags(flags); err != nil {\n\t\t\treturn nil, args, err\n\t\t}\n\t\treturn cmd.Traverse(args[i+1:])\n\t}\n\treturn c, args, nil\n}\n\n// SuggestionsFor provides suggestions for the typedName.\nfunc (c *Command) SuggestionsFor(typedName string) []string {\n\tsuggestions := []string{}\n\tfor _, cmd := range c.commands {\n\t\tif cmd.IsAvailableCommand() {\n\t\t\tlevenshteinDistance := ld(typedName, cmd.Name(), true)\n\t\t\tsuggestByLevenshtein := levenshteinDistance <= c.SuggestionsMinimumDistance\n\t\t\tsuggestByPrefix := strings.HasPrefix(strings.ToLower(cmd.Name()), strings.ToLower(typedName))\n\t\t\tif suggestByLevenshtein || suggestByPrefix {\n\t\t\t\tsuggestions = append(suggestions, cmd.Name())\n\t\t\t}\n\t\t\tfor _, explicitSuggestion := range cmd.SuggestFor {\n\t\t\t\tif strings.EqualFold(typedName, explicitSuggestion) {\n\t\t\t\t\tsuggestions = append(suggestions, cmd.Name())\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn suggestions\n}\n\n// VisitParents visits all parents of the command and invokes fn on each parent.\nfunc (c *Command) VisitParents(fn func(*Command)) {\n\tif c.HasParent() {\n\t\tfn(c.Parent())\n\t\tc.Parent().VisitParents(fn)\n\t}\n}\n\n// Root finds root command.\nfunc (c *Command) Root() *Command {\n\tif c.HasParent() {\n\t\treturn c.Parent().Root()\n\t}\n\treturn c\n}\n\n// ArgsLenAtDash will return the length of c.Flags().Args at the moment\n// when a -- was found during args parsing.\nfunc (c *Command) ArgsLenAtDash() int {\n\treturn c.Flags().ArgsLenAtDash()\n}\n\nfunc (c *Command) execute(a []string) (err error) {\n\tif c == nil {\n\t\treturn fmt.Errorf(\"Called Execute() on a nil Command\")\n\t}\n\n\tif len(c.Deprecated) > 0 {\n\t\tc.Printf(\"Command %q is deprecated, %s\\n\", c.Name(), c.Deprecated)\n\t}\n\n\t// initialize help and version flag at the last point possible to allow for user\n\t// overriding\n\tc.InitDefaultHelpFlag()\n\tc.InitDefaultVersionFlag()\n\n\terr = c.ParseFlags(a)\n\tif err != nil {\n\t\treturn c.FlagErrorFunc()(c, err)\n\t}\n\n\t// If help is called, regardless of other flags, return we want help.\n\t// Also say we need help if the command isn't runnable.\n\thelpVal, err := c.Flags().GetBool(\"help\")\n\tif err != nil {\n\t\t// should be impossible to get here as we always declare a help\n\t\t// flag in InitDefaultHelpFlag()\n\t\tc.Println(\"\\\"help\\\" flag declared as non-bool. Please correct your code\")\n\t\treturn err\n\t}\n\n\tif helpVal {\n\t\treturn flag.ErrHelp\n\t}\n\n\t// for back-compat, only add version flag behavior if version is defined\n\tif c.Version != \"\" {\n\t\tversionVal, err := c.Flags().GetBool(\"version\")\n\t\tif err != nil {\n\t\t\tc.Println(\"\\\"version\\\" flag declared as non-bool. Please correct your code\")\n\t\t\treturn err\n\t\t}\n\t\tif versionVal {\n\t\t\terr := tmpl(c.OutOrStdout(), c.VersionTemplate(), c)\n\t\t\tif err != nil {\n\t\t\t\tc.Println(err)\n\t\t\t}\n\t\t\treturn err\n\t\t}\n\t}\n\n\tif !c.Runnable() {\n\t\treturn flag.ErrHelp\n\t}\n\n\tc.preRun()\n\n\targWoFlags := c.Flags().Args()\n\tif c.DisableFlagParsing {\n\t\targWoFlags = a\n\t}\n\n\tif err := c.ValidateArgs(argWoFlags); err != nil {\n\t\treturn err\n\t}\n\n\tfor p := c; p != nil; p = p.Parent() {\n\t\tif p.PersistentPreRunE != nil {\n\t\t\tif err := p.PersistentPreRunE(c, argWoFlags); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tbreak\n\t\t} else if p.PersistentPreRun != nil {\n\t\t\tp.PersistentPreRun(c, argWoFlags)\n\t\t\tbreak\n\t\t}\n\t}\n\tif c.PreRunE != nil {\n\t\tif err := c.PreRunE(c, argWoFlags); err != nil {\n\t\t\treturn err\n\t\t}\n\t} else if c.PreRun != nil {\n\t\tc.PreRun(c, argWoFlags)\n\t}\n\n\tif err := c.validateRequiredFlags(); err != nil {\n\t\treturn err\n\t}\n\tif c.RunE != nil {\n\t\tif err := c.RunE(c, argWoFlags); err != nil {\n\t\t\treturn err\n\t\t}\n\t} else {\n\t\tc.Run(c, argWoFlags)\n\t}\n\tif c.PostRunE != nil {\n\t\tif err := c.PostRunE(c, argWoFlags); err != nil {\n\t\t\treturn err\n\t\t}\n\t} else if c.PostRun != nil {\n\t\tc.PostRun(c, argWoFlags)\n\t}\n\tfor p := c; p != nil; p = p.Parent() {\n\t\tif p.PersistentPostRunE != nil {\n\t\t\tif err := p.PersistentPostRunE(c, argWoFlags); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tbreak\n\t\t} else if p.PersistentPostRun != nil {\n\t\t\tp.PersistentPostRun(c, argWoFlags)\n\t\t\tbreak\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc (c *Command) preRun() {\n\tfor _, x := range initializers {\n\t\tx()\n\t}\n}\n\n// ExecuteContext is the same as Execute(), but sets the ctx on the command.\n// Retrieve ctx by calling cmd.Context() inside your *Run lifecycle functions.\nfunc (c *Command) ExecuteContext(ctx context.Context) error {\n\tc.ctx = ctx\n\treturn c.Execute()\n}\n\n// Execute uses the args (os.Args[1:] by default)\n// and run through the command tree finding appropriate matches\n// for commands and then corresponding flags.\nfunc (c *Command) Execute() error {\n\t_, err := c.ExecuteC()\n\treturn err\n}\n\n// ExecuteC executes the command.\nfunc (c *Command) ExecuteC() (cmd *Command, err error) {\n\tif c.ctx == nil {\n\t\tc.ctx = context.Background()\n\t}\n\n\t// Regardless of what command execute is called on, run on Root only\n\tif c.HasParent() {\n\t\treturn c.Root().ExecuteC()\n\t}\n\n\t// windows hook\n\tif preExecHookFn != nil {\n\t\tpreExecHookFn(c)\n\t}\n\n\t// initialize help as the last point possible to allow for user\n\t// overriding\n\tc.InitDefaultHelpCmd()\n\n\targs := c.args\n\n\t// Workaround FAIL with \"go test -v\" or \"cobra.test -test.v\", see #155\n\tif c.args == nil && filepath.Base(os.Args[0]) != \"cobra.test\" {\n\t\targs = os.Args[1:]\n\t}\n\n\t// initialize the hidden command to be used for bash completion\n\tc.initCompleteCmd(args)\n\n\tvar flags []string\n\tif c.TraverseChildren {\n\t\tcmd, flags, err = c.Traverse(args)\n\t} else {\n\t\tcmd, flags, err = c.Find(args)\n\t}\n\tif err != nil {\n\t\t// If found parse to a subcommand and then failed, talk about the subcommand\n\t\tif cmd != nil {\n\t\t\tc = cmd\n\t\t}\n\t\tif !c.SilenceErrors {\n\t\t\tc.PrintErrln(\"Error:\", err.Error())\n\t\t\tc.PrintErrf(\"Run '%v --help' for usage.\\n\", c.CommandPath())\n\t\t}\n\t\treturn c, err\n\t}\n\n\tcmd.commandCalledAs.called = true\n\tif cmd.commandCalledAs.name == \"\" {\n\t\tcmd.commandCalledAs.name = cmd.Name()\n\t}\n\n\t// We have to pass global context to children command\n\t// if context is present on the parent command.\n\tif cmd.ctx == nil {\n\t\tcmd.ctx = c.ctx\n\t}\n\n\terr = cmd.execute(flags)\n\tif err != nil {\n\t\t// Always show help if requested, even if SilenceErrors is in\n\t\t// effect\n\t\tif err == flag.ErrHelp {\n\t\t\tcmd.HelpFunc()(cmd, args)\n\t\t\treturn cmd, nil\n\t\t}\n\n\t\t// If root command has SilentErrors flagged,\n\t\t// all subcommands should respect it\n\t\tif !cmd.SilenceErrors && !c.SilenceErrors {\n\t\t\tc.PrintErrln(\"Error:\", err.Error())\n\t\t}\n\n\t\t// If root command has SilentUsage flagged,\n\t\t// all subcommands should respect it\n\t\tif !cmd.SilenceUsage && !c.SilenceUsage {\n\t\t\tc.Println(cmd.UsageString())\n\t\t}\n\t}\n\treturn cmd, err\n}\n\nfunc (c *Command) ValidateArgs(args []string) error {\n\tif c.Args == nil {\n\t\treturn nil\n\t}\n\treturn c.Args(c, args)\n}\n\nfunc (c *Command) validateRequiredFlags() error {\n\tif c.DisableFlagParsing {\n\t\treturn nil\n\t}\n\n\tflags := c.Flags()\n\tmissingFlagNames := []string{}\n\tflags.VisitAll(func(pflag *flag.Flag) {\n\t\trequiredAnnotation, found := pflag.Annotations[BashCompOneRequiredFlag]\n\t\tif !found {\n\t\t\treturn\n\t\t}\n\t\tif (requiredAnnotation[0] == \"true\") && !pflag.Changed {\n\t\t\tmissingFlagNames = append(missingFlagNames, pflag.Name)\n\t\t}\n\t})\n\n\tif len(missingFlagNames) > 0 {\n\t\treturn fmt.Errorf(`required flag(s) \"%s\" not set`, strings.Join(missingFlagNames, `\", \"`))\n\t}\n\treturn nil\n}\n\n// InitDefaultHelpFlag adds default help flag to c.\n// It is called automatically by executing the c or by calling help and usage.\n// If c already has help flag, it will do nothing.\nfunc (c *Command) InitDefaultHelpFlag() {\n\tc.mergePersistentFlags()\n\tif c.Flags().Lookup(\"help\") == nil {\n\t\tusage := \"help for \"\n\t\tif c.Name() == \"\" {\n\t\t\tusage += \"this command\"\n\t\t} else {\n\t\t\tusage += c.Name()\n\t\t}\n\t\tc.Flags().BoolP(\"help\", \"h\", false, usage)\n\t}\n}\n\n// InitDefaultVersionFlag adds default version flag to c.\n// It is called automatically by executing the c.\n// If c already has a version flag, it will do nothing.\n// If c.Version is empty, it will do nothing.\nfunc (c *Command) InitDefaultVersionFlag() {\n\tif c.Version == \"\" {\n\t\treturn\n\t}\n\n\tc.mergePersistentFlags()\n\tif c.Flags().Lookup(\"version\") == nil {\n\t\tusage := \"version for \"\n\t\tif c.Name() == \"\" {\n\t\t\tusage += \"this command\"\n\t\t} else {\n\t\t\tusage += c.Name()\n\t\t}\n\t\tif c.Flags().ShorthandLookup(\"v\") == nil {\n\t\t\tc.Flags().BoolP(\"version\", \"v\", false, usage)\n\t\t} else {\n\t\t\tc.Flags().Bool(\"version\", false, usage)\n\t\t}\n\t}\n}\n\n// InitDefaultHelpCmd adds default help command to c.\n// It is called automatically by executing the c or by calling help and usage.\n// If c already has help command or c has no subcommands, it will do nothing.\nfunc (c *Command) InitDefaultHelpCmd() {\n\tif !c.HasSubCommands() {\n\t\treturn\n\t}\n\n\tif c.helpCommand == nil {\n\t\tc.helpCommand = &Command{\n\t\t\tUse:   \"help [command]\",\n\t\t\tShort: \"Help about any command\",\n\t\t\tLong: `Help provides help for any command in the application.\nSimply type ` + c.Name() + ` help [path to command] for full details.`,\n\t\t\tValidArgsFunction: func(c *Command, args []string, toComplete string) ([]string, ShellCompDirective) {\n\t\t\t\tvar completions []string\n\t\t\t\tcmd, _, e := c.Root().Find(args)\n\t\t\t\tif e != nil {\n\t\t\t\t\treturn nil, ShellCompDirectiveNoFileComp\n\t\t\t\t}\n\t\t\t\tif cmd == nil {\n\t\t\t\t\t// Root help command.\n\t\t\t\t\tcmd = c.Root()\n\t\t\t\t}\n\t\t\t\tfor _, subCmd := range cmd.Commands() {\n\t\t\t\t\tif subCmd.IsAvailableCommand() || subCmd == cmd.helpCommand {\n\t\t\t\t\t\tif strings.HasPrefix(subCmd.Name(), toComplete) {\n\t\t\t\t\t\t\tcompletions = append(completions, fmt.Sprintf(\"%s\\t%s\", subCmd.Name(), subCmd.Short))\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn completions, ShellCompDirectiveNoFileComp\n\t\t\t},\n\t\t\tRun: func(c *Command, args []string) {\n\t\t\t\tcmd, _, e := c.Root().Find(args)\n\t\t\t\tif cmd == nil || e != nil {\n\t\t\t\t\tc.Printf(\"Unknown help topic %#q\\n\", args)\n\t\t\t\t\tc.Root().Usage()\n\t\t\t\t} else {\n\t\t\t\t\tcmd.InitDefaultHelpFlag() // make possible 'help' flag to be shown\n\t\t\t\t\tcmd.Help()\n\t\t\t\t}\n\t\t\t},\n\t\t}\n\t}\n\tc.RemoveCommand(c.helpCommand)\n\tc.AddCommand(c.helpCommand)\n}\n\n// ResetCommands delete parent, subcommand and help command from c.\nfunc (c *Command) ResetCommands() {\n\tc.parent = nil\n\tc.commands = nil\n\tc.helpCommand = nil\n\tc.parentsPflags = nil\n}\n\n// Sorts commands by their names.\ntype commandSorterByName []*Command\n\nfunc (c commandSorterByName) Len() int           { return len(c) }\nfunc (c commandSorterByName) Swap(i, j int)      { c[i], c[j] = c[j], c[i] }\nfunc (c commandSorterByName) Less(i, j int) bool { return c[i].Name() < c[j].Name() }\n\n// Commands returns a sorted slice of child commands.\nfunc (c *Command) Commands() []*Command {\n\t// do not sort commands if it already sorted or sorting was disabled\n\tif EnableCommandSorting && !c.commandsAreSorted {\n\t\tsort.Sort(commandSorterByName(c.commands))\n\t\tc.commandsAreSorted = true\n\t}\n\treturn c.commands\n}\n\n// AddCommand adds one or more commands to this parent command.\nfunc (c *Command) AddCommand(cmds ...*Command) {\n\tfor i, x := range cmds {\n\t\tif cmds[i] == c {\n\t\t\tpanic(\"Command can't be a child of itself\")\n\t\t}\n\t\tcmds[i].parent = c\n\t\t// update max lengths\n\t\tusageLen := len(x.Use)\n\t\tif usageLen > c.commandsMaxUseLen {\n\t\t\tc.commandsMaxUseLen = usageLen\n\t\t}\n\t\tcommandPathLen := len(x.CommandPath())\n\t\tif commandPathLen > c.commandsMaxCommandPathLen {\n\t\t\tc.commandsMaxCommandPathLen = commandPathLen\n\t\t}\n\t\tnameLen := len(x.Name())\n\t\tif nameLen > c.commandsMaxNameLen {\n\t\t\tc.commandsMaxNameLen = nameLen\n\t\t}\n\t\t// If global normalization function exists, update all children\n\t\tif c.globNormFunc != nil {\n\t\t\tx.SetGlobalNormalizationFunc(c.globNormFunc)\n\t\t}\n\t\tc.commands = append(c.commands, x)\n\t\tc.commandsAreSorted = false\n\t}\n}\n\n// RemoveCommand removes one or more commands from a parent command.\nfunc (c *Command) RemoveCommand(cmds ...*Command) {\n\tcommands := []*Command{}\nmain:\n\tfor _, command := range c.commands {\n\t\tfor _, cmd := range cmds {\n\t\t\tif command == cmd {\n\t\t\t\tcommand.parent = nil\n\t\t\t\tcontinue main\n\t\t\t}\n\t\t}\n\t\tcommands = append(commands, command)\n\t}\n\tc.commands = commands\n\t// recompute all lengths\n\tc.commandsMaxUseLen = 0\n\tc.commandsMaxCommandPathLen = 0\n\tc.commandsMaxNameLen = 0\n\tfor _, command := range c.commands {\n\t\tusageLen := len(command.Use)\n\t\tif usageLen > c.commandsMaxUseLen {\n\t\t\tc.commandsMaxUseLen = usageLen\n\t\t}\n\t\tcommandPathLen := len(command.CommandPath())\n\t\tif commandPathLen > c.commandsMaxCommandPathLen {\n\t\t\tc.commandsMaxCommandPathLen = commandPathLen\n\t\t}\n\t\tnameLen := len(command.Name())\n\t\tif nameLen > c.commandsMaxNameLen {\n\t\t\tc.commandsMaxNameLen = nameLen\n\t\t}\n\t}\n}\n\n// Print is a convenience method to Print to the defined output, fallback to Stderr if not set.\nfunc (c *Command) Print(i ...interface{}) {\n\tfmt.Fprint(c.OutOrStderr(), i...)\n}\n\n// Println is a convenience method to Println to the defined output, fallback to Stderr if not set.\nfunc (c *Command) Println(i ...interface{}) {\n\tc.Print(fmt.Sprintln(i...))\n}\n\n// Printf is a convenience method to Printf to the defined output, fallback to Stderr if not set.\nfunc (c *Command) Printf(format string, i ...interface{}) {\n\tc.Print(fmt.Sprintf(format, i...))\n}\n\n// PrintErr is a convenience method to Print to the defined Err output, fallback to Stderr if not set.\nfunc (c *Command) PrintErr(i ...interface{}) {\n\tfmt.Fprint(c.ErrOrStderr(), i...)\n}\n\n// PrintErrln is a convenience method to Println to the defined Err output, fallback to Stderr if not set.\nfunc (c *Command) PrintErrln(i ...interface{}) {\n\tc.PrintErr(fmt.Sprintln(i...))\n}\n\n// PrintErrf is a convenience method to Printf to the defined Err output, fallback to Stderr if not set.\nfunc (c *Command) PrintErrf(format string, i ...interface{}) {\n\tc.PrintErr(fmt.Sprintf(format, i...))\n}\n\n// CommandPath returns the full path to this command.\nfunc (c *Command) CommandPath() string {\n\tif c.HasParent() {\n\t\treturn c.Parent().CommandPath() + \" \" + c.Name()\n\t}\n\treturn c.Name()\n}\n\n// UseLine puts out the full usage for a given command (including parents).\nfunc (c *Command) UseLine() string {\n\tvar useline string\n\tif c.HasParent() {\n\t\tuseline = c.parent.CommandPath() + \" \" + c.Use\n\t} else {\n\t\tuseline = c.Use\n\t}\n\tif c.DisableFlagsInUseLine {\n\t\treturn useline\n\t}\n\tif c.HasAvailableFlags() && !strings.Contains(useline, \"[flags]\") {\n\t\tuseline += \" [flags]\"\n\t}\n\treturn useline\n}\n\n// DebugFlags used to determine which flags have been assigned to which commands\n// and which persist.\nfunc (c *Command) DebugFlags() {\n\tc.Println(\"DebugFlags called on\", c.Name())\n\tvar debugflags func(*Command)\n\n\tdebugflags = func(x *Command) {\n\t\tif x.HasFlags() || x.HasPersistentFlags() {\n\t\t\tc.Println(x.Name())\n\t\t}\n\t\tif x.HasFlags() {\n\t\t\tx.flags.VisitAll(func(f *flag.Flag) {\n\t\t\t\tif x.HasPersistentFlags() && x.persistentFlag(f.Name) != nil {\n\t\t\t\t\tc.Println(\"  -\"+f.Shorthand+\",\", \"--\"+f.Name, \"[\"+f.DefValue+\"]\", \"\", f.Value, \"  [LP]\")\n\t\t\t\t} else {\n\t\t\t\t\tc.Println(\"  -\"+f.Shorthand+\",\", \"--\"+f.Name, \"[\"+f.DefValue+\"]\", \"\", f.Value, \"  [L]\")\n\t\t\t\t}\n\t\t\t})\n\t\t}\n\t\tif x.HasPersistentFlags() {\n\t\t\tx.pflags.VisitAll(func(f *flag.Flag) {\n\t\t\t\tif x.HasFlags() {\n\t\t\t\t\tif x.flags.Lookup(f.Name) == nil {\n\t\t\t\t\t\tc.Println(\"  -\"+f.Shorthand+\",\", \"--\"+f.Name, \"[\"+f.DefValue+\"]\", \"\", f.Value, \"  [P]\")\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tc.Println(\"  -\"+f.Shorthand+\",\", \"--\"+f.Name, \"[\"+f.DefValue+\"]\", \"\", f.Value, \"  [P]\")\n\t\t\t\t}\n\t\t\t})\n\t\t}\n\t\tc.Println(x.flagErrorBuf)\n\t\tif x.HasSubCommands() {\n\t\t\tfor _, y := range x.commands {\n\t\t\t\tdebugflags(y)\n\t\t\t}\n\t\t}\n\t}\n\n\tdebugflags(c)\n}\n\n// Name returns the command's name: the first word in the use line.\nfunc (c *Command) Name() string {\n\tname := c.Use\n\ti := strings.Index(name, \" \")\n\tif i >= 0 {\n\t\tname = name[:i]\n\t}\n\treturn name\n}\n\n// HasAlias determines if a given string is an alias of the command.\nfunc (c *Command) HasAlias(s string) bool {\n\tfor _, a := range c.Aliases {\n\t\tif a == s {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// CalledAs returns the command name or alias that was used to invoke\n// this command or an empty string if the command has not been called.\nfunc (c *Command) CalledAs() string {\n\tif c.commandCalledAs.called {\n\t\treturn c.commandCalledAs.name\n\t}\n\treturn \"\"\n}\n\n// hasNameOrAliasPrefix returns true if the Name or any of aliases start\n// with prefix\nfunc (c *Command) hasNameOrAliasPrefix(prefix string) bool {\n\tif strings.HasPrefix(c.Name(), prefix) {\n\t\tc.commandCalledAs.name = c.Name()\n\t\treturn true\n\t}\n\tfor _, alias := range c.Aliases {\n\t\tif strings.HasPrefix(alias, prefix) {\n\t\t\tc.commandCalledAs.name = alias\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// NameAndAliases returns a list of the command name and all aliases\nfunc (c *Command) NameAndAliases() string {\n\treturn strings.Join(append([]string{c.Name()}, c.Aliases...), \", \")\n}\n\n// HasExample determines if the command has example.\nfunc (c *Command) HasExample() bool {\n\treturn len(c.Example) > 0\n}\n\n// Runnable determines if the command is itself runnable.\nfunc (c *Command) Runnable() bool {\n\treturn c.Run != nil || c.RunE != nil\n}\n\n// HasSubCommands determines if the command has children commands.\nfunc (c *Command) HasSubCommands() bool {\n\treturn len(c.commands) > 0\n}\n\n// IsAvailableCommand determines if a command is available as a non-help command\n// (this includes all non deprecated/hidden commands).\nfunc (c *Command) IsAvailableCommand() bool {\n\tif len(c.Deprecated) != 0 || c.Hidden {\n\t\treturn false\n\t}\n\n\tif c.HasParent() && c.Parent().helpCommand == c {\n\t\treturn false\n\t}\n\n\tif c.Runnable() || c.HasAvailableSubCommands() {\n\t\treturn true\n\t}\n\n\treturn false\n}\n\n// IsAdditionalHelpTopicCommand determines if a command is an additional\n// help topic command; additional help topic command is determined by the\n// fact that it is NOT runnable/hidden/deprecated, and has no sub commands that\n// are runnable/hidden/deprecated.\n// Concrete example: https://github.com/spf13/cobra/issues/393#issuecomment-282741924.\nfunc (c *Command) IsAdditionalHelpTopicCommand() bool {\n\t// if a command is runnable, deprecated, or hidden it is not a 'help' command\n\tif c.Runnable() || len(c.Deprecated) != 0 || c.Hidden {\n\t\treturn false\n\t}\n\n\t// if any non-help sub commands are found, the command is not a 'help' command\n\tfor _, sub := range c.commands {\n\t\tif !sub.IsAdditionalHelpTopicCommand() {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// the command either has no sub commands, or no non-help sub commands\n\treturn true\n}\n\n// HasHelpSubCommands determines if a command has any available 'help' sub commands\n// that need to be shown in the usage/help default template under 'additional help\n// topics'.\nfunc (c *Command) HasHelpSubCommands() bool {\n\t// return true on the first found available 'help' sub command\n\tfor _, sub := range c.commands {\n\t\tif sub.IsAdditionalHelpTopicCommand() {\n\t\t\treturn true\n\t\t}\n\t}\n\n\t// the command either has no sub commands, or no available 'help' sub commands\n\treturn false\n}\n\n// HasAvailableSubCommands determines if a command has available sub commands that\n// need to be shown in the usage/help default template under 'available commands'.\nfunc (c *Command) HasAvailableSubCommands() bool {\n\t// return true on the first found available (non deprecated/help/hidden)\n\t// sub command\n\tfor _, sub := range c.commands {\n\t\tif sub.IsAvailableCommand() {\n\t\t\treturn true\n\t\t}\n\t}\n\n\t// the command either has no sub commands, or no available (non deprecated/help/hidden)\n\t// sub commands\n\treturn false\n}\n\n// HasParent determines if the command is a child command.\nfunc (c *Command) HasParent() bool {\n\treturn c.parent != nil\n}\n\n// GlobalNormalizationFunc returns the global normalization function or nil if it doesn't exist.\nfunc (c *Command) GlobalNormalizationFunc() func(f *flag.FlagSet, name string) flag.NormalizedName {\n\treturn c.globNormFunc\n}\n\n// Flags returns the complete FlagSet that applies\n// to this command (local and persistent declared here and by all parents).\nfunc (c *Command) Flags() *flag.FlagSet {\n\tif c.flags == nil {\n\t\tc.flags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)\n\t\tif c.flagErrorBuf == nil {\n\t\t\tc.flagErrorBuf = new(bytes.Buffer)\n\t\t}\n\t\tc.flags.SetOutput(c.flagErrorBuf)\n\t}\n\n\treturn c.flags\n}\n\n// LocalNonPersistentFlags are flags specific to this command which will NOT persist to subcommands.\nfunc (c *Command) LocalNonPersistentFlags() *flag.FlagSet {\n\tpersistentFlags := c.PersistentFlags()\n\n\tout := flag.NewFlagSet(c.Name(), flag.ContinueOnError)\n\tc.LocalFlags().VisitAll(func(f *flag.Flag) {\n\t\tif persistentFlags.Lookup(f.Name) == nil {\n\t\t\tout.AddFlag(f)\n\t\t}\n\t})\n\treturn out\n}\n\n// LocalFlags returns the local FlagSet specifically set in the current command.\nfunc (c *Command) LocalFlags() *flag.FlagSet {\n\tc.mergePersistentFlags()\n\n\tif c.lflags == nil {\n\t\tc.lflags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)\n\t\tif c.flagErrorBuf == nil {\n\t\t\tc.flagErrorBuf = new(bytes.Buffer)\n\t\t}\n\t\tc.lflags.SetOutput(c.flagErrorBuf)\n\t}\n\tc.lflags.SortFlags = c.Flags().SortFlags\n\tif c.globNormFunc != nil {\n\t\tc.lflags.SetNormalizeFunc(c.globNormFunc)\n\t}\n\n\taddToLocal := func(f *flag.Flag) {\n\t\tif c.lflags.Lookup(f.Name) == nil && c.parentsPflags.Lookup(f.Name) == nil {\n\t\t\tc.lflags.AddFlag(f)\n\t\t}\n\t}\n\tc.Flags().VisitAll(addToLocal)\n\tc.PersistentFlags().VisitAll(addToLocal)\n\treturn c.lflags\n}\n\n// InheritedFlags returns all flags which were inherited from parent commands.\nfunc (c *Command) InheritedFlags() *flag.FlagSet {\n\tc.mergePersistentFlags()\n\n\tif c.iflags == nil {\n\t\tc.iflags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)\n\t\tif c.flagErrorBuf == nil {\n\t\t\tc.flagErrorBuf = new(bytes.Buffer)\n\t\t}\n\t\tc.iflags.SetOutput(c.flagErrorBuf)\n\t}\n\n\tlocal := c.LocalFlags()\n\tif c.globNormFunc != nil {\n\t\tc.iflags.SetNormalizeFunc(c.globNormFunc)\n\t}\n\n\tc.parentsPflags.VisitAll(func(f *flag.Flag) {\n\t\tif c.iflags.Lookup(f.Name) == nil && local.Lookup(f.Name) == nil {\n\t\t\tc.iflags.AddFlag(f)\n\t\t}\n\t})\n\treturn c.iflags\n}\n\n// NonInheritedFlags returns all flags which were not inherited from parent commands.\nfunc (c *Command) NonInheritedFlags() *flag.FlagSet {\n\treturn c.LocalFlags()\n}\n\n// PersistentFlags returns the persistent FlagSet specifically set in the current command.\nfunc (c *Command) PersistentFlags() *flag.FlagSet {\n\tif c.pflags == nil {\n\t\tc.pflags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)\n\t\tif c.flagErrorBuf == nil {\n\t\t\tc.flagErrorBuf = new(bytes.Buffer)\n\t\t}\n\t\tc.pflags.SetOutput(c.flagErrorBuf)\n\t}\n\treturn c.pflags\n}\n\n// ResetFlags deletes all flags from command.\nfunc (c *Command) ResetFlags() {\n\tc.flagErrorBuf = new(bytes.Buffer)\n\tc.flagErrorBuf.Reset()\n\tc.flags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)\n\tc.flags.SetOutput(c.flagErrorBuf)\n\tc.pflags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)\n\tc.pflags.SetOutput(c.flagErrorBuf)\n\n\tc.lflags = nil\n\tc.iflags = nil\n\tc.parentsPflags = nil\n}\n\n// HasFlags checks if the command contains any flags (local plus persistent from the entire structure).\nfunc (c *Command) HasFlags() bool {\n\treturn c.Flags().HasFlags()\n}\n\n// HasPersistentFlags checks if the command contains persistent flags.\nfunc (c *Command) HasPersistentFlags() bool {\n\treturn c.PersistentFlags().HasFlags()\n}\n\n// HasLocalFlags checks if the command has flags specifically declared locally.\nfunc (c *Command) HasLocalFlags() bool {\n\treturn c.LocalFlags().HasFlags()\n}\n\n// HasInheritedFlags checks if the command has flags inherited from its parent command.\nfunc (c *Command) HasInheritedFlags() bool {\n\treturn c.InheritedFlags().HasFlags()\n}\n\n// HasAvailableFlags checks if the command contains any flags (local plus persistent from the entire\n// structure) which are not hidden or deprecated.\nfunc (c *Command) HasAvailableFlags() bool {\n\treturn c.Flags().HasAvailableFlags()\n}\n\n// HasAvailablePersistentFlags checks if the command contains persistent flags which are not hidden or deprecated.\nfunc (c *Command) HasAvailablePersistentFlags() bool {\n\treturn c.PersistentFlags().HasAvailableFlags()\n}\n\n// HasAvailableLocalFlags checks if the command has flags specifically declared locally which are not hidden\n// or deprecated.\nfunc (c *Command) HasAvailableLocalFlags() bool {\n\treturn c.LocalFlags().HasAvailableFlags()\n}\n\n// HasAvailableInheritedFlags checks if the command has flags inherited from its parent command which are\n// not hidden or deprecated.\nfunc (c *Command) HasAvailableInheritedFlags() bool {\n\treturn c.InheritedFlags().HasAvailableFlags()\n}\n\n// Flag climbs up the command tree looking for matching flag.\nfunc (c *Command) Flag(name string) (flag *flag.Flag) {\n\tflag = c.Flags().Lookup(name)\n\n\tif flag == nil {\n\t\tflag = c.persistentFlag(name)\n\t}\n\n\treturn\n}\n\n// Recursively find matching persistent flag.\nfunc (c *Command) persistentFlag(name string) (flag *flag.Flag) {\n\tif c.HasPersistentFlags() {\n\t\tflag = c.PersistentFlags().Lookup(name)\n\t}\n\n\tif flag == nil {\n\t\tc.updateParentsPflags()\n\t\tflag = c.parentsPflags.Lookup(name)\n\t}\n\treturn\n}\n\n// ParseFlags parses persistent flag tree and local flags.\nfunc (c *Command) ParseFlags(args []string) error {\n\tif c.DisableFlagParsing {\n\t\treturn nil\n\t}\n\n\tif c.flagErrorBuf == nil {\n\t\tc.flagErrorBuf = new(bytes.Buffer)\n\t}\n\tbeforeErrorBufLen := c.flagErrorBuf.Len()\n\tc.mergePersistentFlags()\n\n\t// do it here after merging all flags and just before parse\n\tc.Flags().ParseErrorsWhitelist = flag.ParseErrorsWhitelist(c.FParseErrWhitelist)\n\n\terr := c.Flags().Parse(args)\n\t// Print warnings if they occurred (e.g. deprecated flag messages).\n\tif c.flagErrorBuf.Len()-beforeErrorBufLen > 0 && err == nil {\n\t\tc.Print(c.flagErrorBuf.String())\n\t}\n\n\treturn err\n}\n\n// Parent returns a commands parent command.\nfunc (c *Command) Parent() *Command {\n\treturn c.parent\n}\n\n// mergePersistentFlags merges c.PersistentFlags() to c.Flags()\n// and adds missing persistent flags of all parents.\nfunc (c *Command) mergePersistentFlags() {\n\tc.updateParentsPflags()\n\tc.Flags().AddFlagSet(c.PersistentFlags())\n\tc.Flags().AddFlagSet(c.parentsPflags)\n}\n\n// updateParentsPflags updates c.parentsPflags by adding\n// new persistent flags of all parents.\n// If c.parentsPflags == nil, it makes new.\nfunc (c *Command) updateParentsPflags() {\n\tif c.parentsPflags == nil {\n\t\tc.parentsPflags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)\n\t\tc.parentsPflags.SetOutput(c.flagErrorBuf)\n\t\tc.parentsPflags.SortFlags = false\n\t}\n\n\tif c.globNormFunc != nil {\n\t\tc.parentsPflags.SetNormalizeFunc(c.globNormFunc)\n\t}\n\n\tc.Root().PersistentFlags().AddFlagSet(flag.CommandLine)\n\n\tc.VisitParents(func(parent *Command) {\n\t\tc.parentsPflags.AddFlagSet(parent.PersistentFlags())\n\t})\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/command_notwin.go",
    "content": "// +build !windows\n\npackage cobra\n\nvar preExecHookFn func(*Command)\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/command_win.go",
    "content": "// +build windows\n\npackage cobra\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"time\"\n\n\t\"github.com/inconshreveable/mousetrap\"\n)\n\nvar preExecHookFn = preExecHook\n\nfunc preExecHook(c *Command) {\n\tif MousetrapHelpText != \"\" && mousetrap.StartedByExplorer() {\n\t\tc.Print(MousetrapHelpText)\n\t\tif MousetrapDisplayDuration > 0 {\n\t\t\ttime.Sleep(MousetrapDisplayDuration)\n\t\t} else {\n\t\t\tc.Println(\"Press return to continue...\")\n\t\t\tfmt.Scanln()\n\t\t}\n\t\tos.Exit(1)\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/custom_completions.go",
    "content": "package cobra\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"strings\"\n\n\t\"github.com/spf13/pflag\"\n)\n\nconst (\n\t// ShellCompRequestCmd is the name of the hidden command that is used to request\n\t// completion results from the program.  It is used by the shell completion scripts.\n\tShellCompRequestCmd = \"__complete\"\n\t// ShellCompNoDescRequestCmd is the name of the hidden command that is used to request\n\t// completion results without their description.  It is used by the shell completion scripts.\n\tShellCompNoDescRequestCmd = \"__completeNoDesc\"\n)\n\n// Global map of flag completion functions.\nvar flagCompletionFunctions = map[*pflag.Flag]func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective){}\n\n// ShellCompDirective is a bit map representing the different behaviors the shell\n// can be instructed to have once completions have been provided.\ntype ShellCompDirective int\n\nconst (\n\t// ShellCompDirectiveError indicates an error occurred and completions should be ignored.\n\tShellCompDirectiveError ShellCompDirective = 1 << iota\n\n\t// ShellCompDirectiveNoSpace indicates that the shell should not add a space\n\t// after the completion even if there is a single completion provided.\n\tShellCompDirectiveNoSpace\n\n\t// ShellCompDirectiveNoFileComp indicates that the shell should not provide\n\t// file completion even when no completion is provided.\n\t// This currently does not work for zsh or bash < 4\n\tShellCompDirectiveNoFileComp\n\n\t// ShellCompDirectiveFilterFileExt indicates that the provided completions\n\t// should be used as file extension filters.\n\t// For flags, using Command.MarkFlagFilename() and Command.MarkPersistentFlagFilename()\n\t// is a shortcut to using this directive explicitly.  The BashCompFilenameExt\n\t// annotation can also be used to obtain the same behavior for flags.\n\tShellCompDirectiveFilterFileExt\n\n\t// ShellCompDirectiveFilterDirs indicates that only directory names should\n\t// be provided in file completion.  To request directory names within another\n\t// directory, the returned completions should specify the directory within\n\t// which to search.  The BashCompSubdirsInDir annotation can be used to\n\t// obtain the same behavior but only for flags.\n\tShellCompDirectiveFilterDirs\n\n\t// ===========================================================================\n\n\t// All directives using iota should be above this one.\n\t// For internal use.\n\tshellCompDirectiveMaxValue\n\n\t// ShellCompDirectiveDefault indicates to let the shell perform its default\n\t// behavior after completions have been provided.\n\t// This one must be last to avoid messing up the iota count.\n\tShellCompDirectiveDefault ShellCompDirective = 0\n)\n\n// RegisterFlagCompletionFunc should be called to register a function to provide completion for a flag.\nfunc (c *Command) RegisterFlagCompletionFunc(flagName string, f func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective)) error {\n\tflag := c.Flag(flagName)\n\tif flag == nil {\n\t\treturn fmt.Errorf(\"RegisterFlagCompletionFunc: flag '%s' does not exist\", flagName)\n\t}\n\tif _, exists := flagCompletionFunctions[flag]; exists {\n\t\treturn fmt.Errorf(\"RegisterFlagCompletionFunc: flag '%s' already registered\", flagName)\n\t}\n\tflagCompletionFunctions[flag] = f\n\treturn nil\n}\n\n// Returns a string listing the different directive enabled in the specified parameter\nfunc (d ShellCompDirective) string() string {\n\tvar directives []string\n\tif d&ShellCompDirectiveError != 0 {\n\t\tdirectives = append(directives, \"ShellCompDirectiveError\")\n\t}\n\tif d&ShellCompDirectiveNoSpace != 0 {\n\t\tdirectives = append(directives, \"ShellCompDirectiveNoSpace\")\n\t}\n\tif d&ShellCompDirectiveNoFileComp != 0 {\n\t\tdirectives = append(directives, \"ShellCompDirectiveNoFileComp\")\n\t}\n\tif d&ShellCompDirectiveFilterFileExt != 0 {\n\t\tdirectives = append(directives, \"ShellCompDirectiveFilterFileExt\")\n\t}\n\tif d&ShellCompDirectiveFilterDirs != 0 {\n\t\tdirectives = append(directives, \"ShellCompDirectiveFilterDirs\")\n\t}\n\tif len(directives) == 0 {\n\t\tdirectives = append(directives, \"ShellCompDirectiveDefault\")\n\t}\n\n\tif d >= shellCompDirectiveMaxValue {\n\t\treturn fmt.Sprintf(\"ERROR: unexpected ShellCompDirective value: %d\", d)\n\t}\n\treturn strings.Join(directives, \", \")\n}\n\n// Adds a special hidden command that can be used to request custom completions.\nfunc (c *Command) initCompleteCmd(args []string) {\n\tcompleteCmd := &Command{\n\t\tUse:                   fmt.Sprintf(\"%s [command-line]\", ShellCompRequestCmd),\n\t\tAliases:               []string{ShellCompNoDescRequestCmd},\n\t\tDisableFlagsInUseLine: true,\n\t\tHidden:                true,\n\t\tDisableFlagParsing:    true,\n\t\tArgs:                  MinimumNArgs(1),\n\t\tShort:                 \"Request shell completion choices for the specified command-line\",\n\t\tLong: fmt.Sprintf(\"%[2]s is a special command that is used by the shell completion logic\\n%[1]s\",\n\t\t\t\"to request completion choices for the specified command-line.\", ShellCompRequestCmd),\n\t\tRun: func(cmd *Command, args []string) {\n\t\t\tfinalCmd, completions, directive, err := cmd.getCompletions(args)\n\t\t\tif err != nil {\n\t\t\t\tCompErrorln(err.Error())\n\t\t\t\t// Keep going for multiple reasons:\n\t\t\t\t// 1- There could be some valid completions even though there was an error\n\t\t\t\t// 2- Even without completions, we need to print the directive\n\t\t\t}\n\n\t\t\tnoDescriptions := (cmd.CalledAs() == ShellCompNoDescRequestCmd)\n\t\t\tfor _, comp := range completions {\n\t\t\t\tif noDescriptions {\n\t\t\t\t\t// Remove any description that may be included following a tab character.\n\t\t\t\t\tcomp = strings.Split(comp, \"\\t\")[0]\n\t\t\t\t}\n\n\t\t\t\t// Make sure we only write the first line to the output.\n\t\t\t\t// This is needed if a description contains a linebreak.\n\t\t\t\t// Otherwise the shell scripts will interpret the other lines as new flags\n\t\t\t\t// and could therefore provide a wrong completion.\n\t\t\t\tcomp = strings.Split(comp, \"\\n\")[0]\n\n\t\t\t\t// Finally trim the completion.  This is especially important to get rid\n\t\t\t\t// of a trailing tab when there are no description following it.\n\t\t\t\t// For example, a sub-command without a description should not be completed\n\t\t\t\t// with a tab at the end (or else zsh will show a -- following it\n\t\t\t\t// although there is no description).\n\t\t\t\tcomp = strings.TrimSpace(comp)\n\n\t\t\t\t// Print each possible completion to stdout for the completion script to consume.\n\t\t\t\tfmt.Fprintln(finalCmd.OutOrStdout(), comp)\n\t\t\t}\n\n\t\t\tif directive >= shellCompDirectiveMaxValue {\n\t\t\t\tdirective = ShellCompDirectiveDefault\n\t\t\t}\n\n\t\t\t// As the last printout, print the completion directive for the completion script to parse.\n\t\t\t// The directive integer must be that last character following a single colon (:).\n\t\t\t// The completion script expects :<directive>\n\t\t\tfmt.Fprintf(finalCmd.OutOrStdout(), \":%d\\n\", directive)\n\n\t\t\t// Print some helpful info to stderr for the user to understand.\n\t\t\t// Output from stderr must be ignored by the completion script.\n\t\t\tfmt.Fprintf(finalCmd.ErrOrStderr(), \"Completion ended with directive: %s\\n\", directive.string())\n\t\t},\n\t}\n\tc.AddCommand(completeCmd)\n\tsubCmd, _, err := c.Find(args)\n\tif err != nil || subCmd.Name() != ShellCompRequestCmd {\n\t\t// Only create this special command if it is actually being called.\n\t\t// This reduces possible side-effects of creating such a command;\n\t\t// for example, having this command would cause problems to a\n\t\t// cobra program that only consists of the root command, since this\n\t\t// command would cause the root command to suddenly have a subcommand.\n\t\tc.RemoveCommand(completeCmd)\n\t}\n}\n\nfunc (c *Command) getCompletions(args []string) (*Command, []string, ShellCompDirective, error) {\n\t// The last argument, which is not completely typed by the user,\n\t// should not be part of the list of arguments\n\ttoComplete := args[len(args)-1]\n\ttrimmedArgs := args[:len(args)-1]\n\n\tvar finalCmd *Command\n\tvar finalArgs []string\n\tvar err error\n\t// Find the real command for which completion must be performed\n\t// check if we need to traverse here to parse local flags on parent commands\n\tif c.Root().TraverseChildren {\n\t\tfinalCmd, finalArgs, err = c.Root().Traverse(trimmedArgs)\n\t} else {\n\t\tfinalCmd, finalArgs, err = c.Root().Find(trimmedArgs)\n\t}\n\tif err != nil {\n\t\t// Unable to find the real command. E.g., <program> someInvalidCmd <TAB>\n\t\treturn c, []string{}, ShellCompDirectiveDefault, fmt.Errorf(\"Unable to find a command for arguments: %v\", trimmedArgs)\n\t}\n\n\t// Check if we are doing flag value completion before parsing the flags.\n\t// This is important because if we are completing a flag value, we need to also\n\t// remove the flag name argument from the list of finalArgs or else the parsing\n\t// could fail due to an invalid value (incomplete) for the flag.\n\tflag, finalArgs, toComplete, err := checkIfFlagCompletion(finalCmd, finalArgs, toComplete)\n\tif err != nil {\n\t\t// Error while attempting to parse flags\n\t\treturn finalCmd, []string{}, ShellCompDirectiveDefault, err\n\t}\n\n\t// Parse the flags early so we can check if required flags are set\n\tif err = finalCmd.ParseFlags(finalArgs); err != nil {\n\t\treturn finalCmd, []string{}, ShellCompDirectiveDefault, fmt.Errorf(\"Error while parsing flags from args %v: %s\", finalArgs, err.Error())\n\t}\n\n\tif flag != nil {\n\t\t// Check if we are completing a flag value subject to annotations\n\t\tif validExts, present := flag.Annotations[BashCompFilenameExt]; present {\n\t\t\tif len(validExts) != 0 {\n\t\t\t\t// File completion filtered by extensions\n\t\t\t\treturn finalCmd, validExts, ShellCompDirectiveFilterFileExt, nil\n\t\t\t}\n\n\t\t\t// The annotation requests simple file completion.  There is no reason to do\n\t\t\t// that since it is the default behavior anyway.  Let's ignore this annotation\n\t\t\t// in case the program also registered a completion function for this flag.\n\t\t\t// Even though it is a mistake on the program's side, let's be nice when we can.\n\t\t}\n\n\t\tif subDir, present := flag.Annotations[BashCompSubdirsInDir]; present {\n\t\t\tif len(subDir) == 1 {\n\t\t\t\t// Directory completion from within a directory\n\t\t\t\treturn finalCmd, subDir, ShellCompDirectiveFilterDirs, nil\n\t\t\t}\n\t\t\t// Directory completion\n\t\t\treturn finalCmd, []string{}, ShellCompDirectiveFilterDirs, nil\n\t\t}\n\t}\n\n\t// When doing completion of a flag name, as soon as an argument starts with\n\t// a '-' we know it is a flag.  We cannot use isFlagArg() here as it requires\n\t// the flag name to be complete\n\tif flag == nil && len(toComplete) > 0 && toComplete[0] == '-' && !strings.Contains(toComplete, \"=\") {\n\t\tvar completions []string\n\n\t\t// First check for required flags\n\t\tcompletions = completeRequireFlags(finalCmd, toComplete)\n\n\t\t// If we have not found any required flags, only then can we show regular flags\n\t\tif len(completions) == 0 {\n\t\t\tdoCompleteFlags := func(flag *pflag.Flag) {\n\t\t\t\tif !flag.Changed ||\n\t\t\t\t\tstrings.Contains(flag.Value.Type(), \"Slice\") ||\n\t\t\t\t\tstrings.Contains(flag.Value.Type(), \"Array\") {\n\t\t\t\t\t// If the flag is not already present, or if it can be specified multiple times (Array or Slice)\n\t\t\t\t\t// we suggest it as a completion\n\t\t\t\t\tcompletions = append(completions, getFlagNameCompletions(flag, toComplete)...)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// We cannot use finalCmd.Flags() because we may not have called ParsedFlags() for commands\n\t\t\t// that have set DisableFlagParsing; it is ParseFlags() that merges the inherited and\n\t\t\t// non-inherited flags.\n\t\t\tfinalCmd.InheritedFlags().VisitAll(func(flag *pflag.Flag) {\n\t\t\t\tdoCompleteFlags(flag)\n\t\t\t})\n\t\t\tfinalCmd.NonInheritedFlags().VisitAll(func(flag *pflag.Flag) {\n\t\t\t\tdoCompleteFlags(flag)\n\t\t\t})\n\t\t}\n\n\t\tdirective := ShellCompDirectiveNoFileComp\n\t\tif len(completions) == 1 && strings.HasSuffix(completions[0], \"=\") {\n\t\t\t// If there is a single completion, the shell usually adds a space\n\t\t\t// after the completion.  We don't want that if the flag ends with an =\n\t\t\tdirective = ShellCompDirectiveNoSpace\n\t\t}\n\t\treturn finalCmd, completions, directive, nil\n\t}\n\n\t// We only remove the flags from the arguments if DisableFlagParsing is not set.\n\t// This is important for commands which have requested to do their own flag completion.\n\tif !finalCmd.DisableFlagParsing {\n\t\tfinalArgs = finalCmd.Flags().Args()\n\t}\n\n\tvar completions []string\n\tdirective := ShellCompDirectiveDefault\n\tif flag == nil {\n\t\tfoundLocalNonPersistentFlag := false\n\t\t// If TraverseChildren is true on the root command we don't check for\n\t\t// local flags because we can use a local flag on a parent command\n\t\tif !finalCmd.Root().TraverseChildren {\n\t\t\t// Check if there are any local, non-persistent flags on the command-line\n\t\t\tlocalNonPersistentFlags := finalCmd.LocalNonPersistentFlags()\n\t\t\tfinalCmd.NonInheritedFlags().VisitAll(func(flag *pflag.Flag) {\n\t\t\t\tif localNonPersistentFlags.Lookup(flag.Name) != nil && flag.Changed {\n\t\t\t\t\tfoundLocalNonPersistentFlag = true\n\t\t\t\t}\n\t\t\t})\n\t\t}\n\n\t\t// Complete subcommand names, including the help command\n\t\tif len(finalArgs) == 0 && !foundLocalNonPersistentFlag {\n\t\t\t// We only complete sub-commands if:\n\t\t\t// - there are no arguments on the command-line and\n\t\t\t// - there are no local, non-peristent flag on the command-line or TraverseChildren is true\n\t\t\tfor _, subCmd := range finalCmd.Commands() {\n\t\t\t\tif subCmd.IsAvailableCommand() || subCmd == finalCmd.helpCommand {\n\t\t\t\t\tif strings.HasPrefix(subCmd.Name(), toComplete) {\n\t\t\t\t\t\tcompletions = append(completions, fmt.Sprintf(\"%s\\t%s\", subCmd.Name(), subCmd.Short))\n\t\t\t\t\t}\n\t\t\t\t\tdirective = ShellCompDirectiveNoFileComp\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Complete required flags even without the '-' prefix\n\t\tcompletions = append(completions, completeRequireFlags(finalCmd, toComplete)...)\n\n\t\t// Always complete ValidArgs, even if we are completing a subcommand name.\n\t\t// This is for commands that have both subcommands and ValidArgs.\n\t\tif len(finalCmd.ValidArgs) > 0 {\n\t\t\tif len(finalArgs) == 0 {\n\t\t\t\t// ValidArgs are only for the first argument\n\t\t\t\tfor _, validArg := range finalCmd.ValidArgs {\n\t\t\t\t\tif strings.HasPrefix(validArg, toComplete) {\n\t\t\t\t\t\tcompletions = append(completions, validArg)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tdirective = ShellCompDirectiveNoFileComp\n\n\t\t\t\t// If no completions were found within commands or ValidArgs,\n\t\t\t\t// see if there are any ArgAliases that should be completed.\n\t\t\t\tif len(completions) == 0 {\n\t\t\t\t\tfor _, argAlias := range finalCmd.ArgAliases {\n\t\t\t\t\t\tif strings.HasPrefix(argAlias, toComplete) {\n\t\t\t\t\t\t\tcompletions = append(completions, argAlias)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If there are ValidArgs specified (even if they don't match), we stop completion.\n\t\t\t// Only one of ValidArgs or ValidArgsFunction can be used for a single command.\n\t\t\treturn finalCmd, completions, directive, nil\n\t\t}\n\n\t\t// Let the logic continue so as to add any ValidArgsFunction completions,\n\t\t// even if we already found sub-commands.\n\t\t// This is for commands that have subcommands but also specify a ValidArgsFunction.\n\t}\n\n\t// Find the completion function for the flag or command\n\tvar completionFn func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective)\n\tif flag != nil {\n\t\tcompletionFn = flagCompletionFunctions[flag]\n\t} else {\n\t\tcompletionFn = finalCmd.ValidArgsFunction\n\t}\n\tif completionFn != nil {\n\t\t// Go custom completion defined for this flag or command.\n\t\t// Call the registered completion function to get the completions.\n\t\tvar comps []string\n\t\tcomps, directive = completionFn(finalCmd, finalArgs, toComplete)\n\t\tcompletions = append(completions, comps...)\n\t}\n\n\treturn finalCmd, completions, directive, nil\n}\n\nfunc getFlagNameCompletions(flag *pflag.Flag, toComplete string) []string {\n\tif nonCompletableFlag(flag) {\n\t\treturn []string{}\n\t}\n\n\tvar completions []string\n\tflagName := \"--\" + flag.Name\n\tif strings.HasPrefix(flagName, toComplete) {\n\t\t// Flag without the =\n\t\tcompletions = append(completions, fmt.Sprintf(\"%s\\t%s\", flagName, flag.Usage))\n\n\t\t// Why suggest both long forms: --flag and --flag= ?\n\t\t// This forces the user to *always* have to type either an = or a space after the flag name.\n\t\t// Let's be nice and avoid making users have to do that.\n\t\t// Since boolean flags and shortname flags don't show the = form, let's go that route and never show it.\n\t\t// The = form will still work, we just won't suggest it.\n\t\t// This also makes the list of suggested flags shorter as we avoid all the = forms.\n\t\t//\n\t\t// if len(flag.NoOptDefVal) == 0 {\n\t\t// \t// Flag requires a value, so it can be suffixed with =\n\t\t// \tflagName += \"=\"\n\t\t// \tcompletions = append(completions, fmt.Sprintf(\"%s\\t%s\", flagName, flag.Usage))\n\t\t// }\n\t}\n\n\tflagName = \"-\" + flag.Shorthand\n\tif len(flag.Shorthand) > 0 && strings.HasPrefix(flagName, toComplete) {\n\t\tcompletions = append(completions, fmt.Sprintf(\"%s\\t%s\", flagName, flag.Usage))\n\t}\n\n\treturn completions\n}\n\nfunc completeRequireFlags(finalCmd *Command, toComplete string) []string {\n\tvar completions []string\n\n\tdoCompleteRequiredFlags := func(flag *pflag.Flag) {\n\t\tif _, present := flag.Annotations[BashCompOneRequiredFlag]; present {\n\t\t\tif !flag.Changed {\n\t\t\t\t// If the flag is not already present, we suggest it as a completion\n\t\t\t\tcompletions = append(completions, getFlagNameCompletions(flag, toComplete)...)\n\t\t\t}\n\t\t}\n\t}\n\n\t// We cannot use finalCmd.Flags() because we may not have called ParsedFlags() for commands\n\t// that have set DisableFlagParsing; it is ParseFlags() that merges the inherited and\n\t// non-inherited flags.\n\tfinalCmd.InheritedFlags().VisitAll(func(flag *pflag.Flag) {\n\t\tdoCompleteRequiredFlags(flag)\n\t})\n\tfinalCmd.NonInheritedFlags().VisitAll(func(flag *pflag.Flag) {\n\t\tdoCompleteRequiredFlags(flag)\n\t})\n\n\treturn completions\n}\n\nfunc checkIfFlagCompletion(finalCmd *Command, args []string, lastArg string) (*pflag.Flag, []string, string, error) {\n\tif finalCmd.DisableFlagParsing {\n\t\t// We only do flag completion if we are allowed to parse flags\n\t\t// This is important for commands which have requested to do their own flag completion.\n\t\treturn nil, args, lastArg, nil\n\t}\n\n\tvar flagName string\n\ttrimmedArgs := args\n\tflagWithEqual := false\n\n\t// When doing completion of a flag name, as soon as an argument starts with\n\t// a '-' we know it is a flag.  We cannot use isFlagArg() here as that function\n\t// requires the flag name to be complete\n\tif len(lastArg) > 0 && lastArg[0] == '-' {\n\t\tif index := strings.Index(lastArg, \"=\"); index >= 0 {\n\t\t\t// Flag with an =\n\t\t\tflagName = strings.TrimLeft(lastArg[:index], \"-\")\n\t\t\tlastArg = lastArg[index+1:]\n\t\t\tflagWithEqual = true\n\t\t} else {\n\t\t\t// Normal flag completion\n\t\t\treturn nil, args, lastArg, nil\n\t\t}\n\t}\n\n\tif len(flagName) == 0 {\n\t\tif len(args) > 0 {\n\t\t\tprevArg := args[len(args)-1]\n\t\t\tif isFlagArg(prevArg) {\n\t\t\t\t// Only consider the case where the flag does not contain an =.\n\t\t\t\t// If the flag contains an = it means it has already been fully processed,\n\t\t\t\t// so we don't need to deal with it here.\n\t\t\t\tif index := strings.Index(prevArg, \"=\"); index < 0 {\n\t\t\t\t\tflagName = strings.TrimLeft(prevArg, \"-\")\n\n\t\t\t\t\t// Remove the uncompleted flag or else there could be an error created\n\t\t\t\t\t// for an invalid value for that flag\n\t\t\t\t\ttrimmedArgs = args[:len(args)-1]\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif len(flagName) == 0 {\n\t\t// Not doing flag completion\n\t\treturn nil, trimmedArgs, lastArg, nil\n\t}\n\n\tflag := findFlag(finalCmd, flagName)\n\tif flag == nil {\n\t\t// Flag not supported by this command, nothing to complete\n\t\terr := fmt.Errorf(\"Subcommand '%s' does not support flag '%s'\", finalCmd.Name(), flagName)\n\t\treturn nil, nil, \"\", err\n\t}\n\n\tif !flagWithEqual {\n\t\tif len(flag.NoOptDefVal) != 0 {\n\t\t\t// We had assumed dealing with a two-word flag but the flag is a boolean flag.\n\t\t\t// In that case, there is no value following it, so we are not really doing flag completion.\n\t\t\t// Reset everything to do noun completion.\n\t\t\ttrimmedArgs = args\n\t\t\tflag = nil\n\t\t}\n\t}\n\n\treturn flag, trimmedArgs, lastArg, nil\n}\n\nfunc findFlag(cmd *Command, name string) *pflag.Flag {\n\tflagSet := cmd.Flags()\n\tif len(name) == 1 {\n\t\t// First convert the short flag into a long flag\n\t\t// as the cmd.Flag() search only accepts long flags\n\t\tif short := flagSet.ShorthandLookup(name); short != nil {\n\t\t\tname = short.Name\n\t\t} else {\n\t\t\tset := cmd.InheritedFlags()\n\t\t\tif short = set.ShorthandLookup(name); short != nil {\n\t\t\t\tname = short.Name\n\t\t\t} else {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\treturn cmd.Flag(name)\n}\n\n// CompDebug prints the specified string to the same file as where the\n// completion script prints its logs.\n// Note that completion printouts should never be on stdout as they would\n// be wrongly interpreted as actual completion choices by the completion script.\nfunc CompDebug(msg string, printToStdErr bool) {\n\tmsg = fmt.Sprintf(\"[Debug] %s\", msg)\n\n\t// Such logs are only printed when the user has set the environment\n\t// variable BASH_COMP_DEBUG_FILE to the path of some file to be used.\n\tif path := os.Getenv(\"BASH_COMP_DEBUG_FILE\"); path != \"\" {\n\t\tf, err := os.OpenFile(path,\n\t\t\tos.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)\n\t\tif err == nil {\n\t\t\tdefer f.Close()\n\t\t\tf.WriteString(msg)\n\t\t}\n\t}\n\n\tif printToStdErr {\n\t\t// Must print to stderr for this not to be read by the completion script.\n\t\tfmt.Fprintf(os.Stderr, msg)\n\t}\n}\n\n// CompDebugln prints the specified string with a newline at the end\n// to the same file as where the completion script prints its logs.\n// Such logs are only printed when the user has set the environment\n// variable BASH_COMP_DEBUG_FILE to the path of some file to be used.\nfunc CompDebugln(msg string, printToStdErr bool) {\n\tCompDebug(fmt.Sprintf(\"%s\\n\", msg), printToStdErr)\n}\n\n// CompError prints the specified completion message to stderr.\nfunc CompError(msg string) {\n\tmsg = fmt.Sprintf(\"[Error] %s\", msg)\n\tCompDebug(msg, true)\n}\n\n// CompErrorln prints the specified completion message to stderr with a newline at the end.\nfunc CompErrorln(msg string) {\n\tCompError(fmt.Sprintf(\"%s\\n\", msg))\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/fish_completions.go",
    "content": "package cobra\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"strings\"\n)\n\nfunc genFishComp(buf *bytes.Buffer, name string, includeDesc bool) {\n\t// Variables should not contain a '-' or ':' character\n\tnameForVar := name\n\tnameForVar = strings.Replace(nameForVar, \"-\", \"_\", -1)\n\tnameForVar = strings.Replace(nameForVar, \":\", \"_\", -1)\n\n\tcompCmd := ShellCompRequestCmd\n\tif !includeDesc {\n\t\tcompCmd = ShellCompNoDescRequestCmd\n\t}\n\tbuf.WriteString(fmt.Sprintf(\"# fish completion for %-36s -*- shell-script -*-\\n\", name))\n\tbuf.WriteString(fmt.Sprintf(`\nfunction __%[1]s_debug\n    set file \"$BASH_COMP_DEBUG_FILE\"\n    if test -n \"$file\"\n        echo \"$argv\" >> $file\n    end\nend\n\nfunction __%[1]s_perform_completion\n    __%[1]s_debug \"Starting __%[1]s_perform_completion with: $argv\"\n\n    set args (string split -- \" \" \"$argv\")\n    set lastArg \"$args[-1]\"\n\n    __%[1]s_debug \"args: $args\"\n    __%[1]s_debug \"last arg: $lastArg\"\n\n    set emptyArg \"\"\n    if test -z \"$lastArg\"\n        __%[1]s_debug \"Setting emptyArg\"\n        set emptyArg \\\"\\\"\n    end\n    __%[1]s_debug \"emptyArg: $emptyArg\"\n\n    if not type -q \"$args[1]\"\n        # This can happen when \"complete --do-complete %[2]s\" is called when running this script.\n        __%[1]s_debug \"Cannot find $args[1]. No completions.\"\n        return\n    end\n\n    set requestComp \"$args[1] %[3]s $args[2..-1] $emptyArg\"\n    __%[1]s_debug \"Calling $requestComp\"\n\n    set results (eval $requestComp 2> /dev/null)\n    set comps $results[1..-2]\n    set directiveLine $results[-1]\n\n    # For Fish, when completing a flag with an = (e.g., <program> -n=<TAB>)\n    # completions must be prefixed with the flag\n    set flagPrefix (string match -r -- '-.*=' \"$lastArg\")\n\n    __%[1]s_debug \"Comps: $comps\"\n    __%[1]s_debug \"DirectiveLine: $directiveLine\"\n    __%[1]s_debug \"flagPrefix: $flagPrefix\"\n\n    for comp in $comps\n        printf \"%%s%%s\\n\" \"$flagPrefix\" \"$comp\"\n    end\n\n    printf \"%%s\\n\" \"$directiveLine\"\nend\n\n# This function does three things:\n# 1- Obtain the completions and store them in the global __%[1]s_comp_results\n# 2- Set the __%[1]s_comp_do_file_comp flag if file completion should be performed\n#    and unset it otherwise\n# 3- Return true if the completion results are not empty\nfunction __%[1]s_prepare_completions\n    # Start fresh\n    set --erase __%[1]s_comp_do_file_comp\n    set --erase __%[1]s_comp_results\n\n    # Check if the command-line is already provided.  This is useful for testing.\n    if not set --query __%[1]s_comp_commandLine\n        # Use the -c flag to allow for completion in the middle of the line\n        set __%[1]s_comp_commandLine (commandline -c)\n    end\n    __%[1]s_debug \"commandLine is: $__%[1]s_comp_commandLine\"\n\n    set results (__%[1]s_perform_completion \"$__%[1]s_comp_commandLine\")\n    set --erase __%[1]s_comp_commandLine\n    __%[1]s_debug \"Completion results: $results\"\n\n    if test -z \"$results\"\n        __%[1]s_debug \"No completion, probably due to a failure\"\n        # Might as well do file completion, in case it helps\n        set --global __%[1]s_comp_do_file_comp 1\n        return 1\n    end\n\n    set directive (string sub --start 2 $results[-1])\n    set --global __%[1]s_comp_results $results[1..-2]\n\n    __%[1]s_debug \"Completions are: $__%[1]s_comp_results\"\n    __%[1]s_debug \"Directive is: $directive\"\n\n    set shellCompDirectiveError %[4]d\n    set shellCompDirectiveNoSpace %[5]d\n    set shellCompDirectiveNoFileComp %[6]d\n    set shellCompDirectiveFilterFileExt %[7]d\n    set shellCompDirectiveFilterDirs %[8]d\n\n    if test -z \"$directive\"\n        set directive 0\n    end\n\n    set compErr (math (math --scale 0 $directive / $shellCompDirectiveError) %% 2)\n    if test $compErr -eq 1\n        __%[1]s_debug \"Received error directive: aborting.\"\n        # Might as well do file completion, in case it helps\n        set --global __%[1]s_comp_do_file_comp 1\n        return 1\n    end\n\n    set filefilter (math (math --scale 0 $directive / $shellCompDirectiveFilterFileExt) %% 2)\n    set dirfilter (math (math --scale 0 $directive / $shellCompDirectiveFilterDirs) %% 2)\n    if test $filefilter -eq 1; or test $dirfilter -eq 1\n        __%[1]s_debug \"File extension filtering or directory filtering not supported\"\n        # Do full file completion instead\n        set --global __%[1]s_comp_do_file_comp 1\n        return 1\n    end\n\n    set nospace (math (math --scale 0 $directive / $shellCompDirectiveNoSpace) %% 2)\n    set nofiles (math (math --scale 0 $directive / $shellCompDirectiveNoFileComp) %% 2)\n\n    __%[1]s_debug \"nospace: $nospace, nofiles: $nofiles\"\n\n    # Important not to quote the variable for count to work\n    set numComps (count $__%[1]s_comp_results)\n    __%[1]s_debug \"numComps: $numComps\"\n\n    if test $numComps -eq 1; and test $nospace -ne 0\n        # To support the \"nospace\" directive we trick the shell\n        # by outputting an extra, longer completion.\n        __%[1]s_debug \"Adding second completion to perform nospace directive\"\n        set --append __%[1]s_comp_results $__%[1]s_comp_results[1].\n    end\n\n    if test $numComps -eq 0; and test $nofiles -eq 0\n        __%[1]s_debug \"Requesting file completion\"\n        set --global __%[1]s_comp_do_file_comp 1\n    end\n\n    # If we don't want file completion, we must return true even if there\n    # are no completions found.  This is because fish will perform the last\n    # completion command, even if its condition is false, if no other\n    # completion command was triggered\n    return (not set --query __%[1]s_comp_do_file_comp)\nend\n\n# Since Fish completions are only loaded once the user triggers them, we trigger them ourselves\n# so we can properly delete any completions provided by another script.\n# The space after the the program name is essential to trigger completion for the program\n# and not completion of the program name itself.\ncomplete --do-complete \"%[2]s \" > /dev/null 2>&1\n# Using '> /dev/null 2>&1' since '&>' is not supported in older versions of fish.\n\n# Remove any pre-existing completions for the program since we will be handling all of them.\ncomplete -c %[2]s -e\n\n# The order in which the below two lines are defined is very important so that __%[1]s_prepare_completions\n# is called first.  It is __%[1]s_prepare_completions that sets up the __%[1]s_comp_do_file_comp variable.\n#\n# This completion will be run second as complete commands are added FILO.\n# It triggers file completion choices when __%[1]s_comp_do_file_comp is set.\ncomplete -c %[2]s -n 'set --query __%[1]s_comp_do_file_comp'\n\n# This completion will be run first as complete commands are added FILO.\n# The call to __%[1]s_prepare_completions will setup both __%[1]s_comp_results and __%[1]s_comp_do_file_comp.\n# It provides the program's completion choices.\ncomplete -c %[2]s -n '__%[1]s_prepare_completions' -f -a '$__%[1]s_comp_results'\n\n`, nameForVar, name, compCmd,\n\t\tShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,\n\t\tShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs))\n}\n\n// GenFishCompletion generates fish completion file and writes to the passed writer.\nfunc (c *Command) GenFishCompletion(w io.Writer, includeDesc bool) error {\n\tbuf := new(bytes.Buffer)\n\tgenFishComp(buf, c.Name(), includeDesc)\n\t_, err := buf.WriteTo(w)\n\treturn err\n}\n\n// GenFishCompletionFile generates fish completion file.\nfunc (c *Command) GenFishCompletionFile(filename string, includeDesc bool) error {\n\toutFile, err := os.Create(filename)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer outFile.Close()\n\n\treturn c.GenFishCompletion(outFile, includeDesc)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/fish_completions.md",
    "content": "## Generating Fish Completions For Your cobra.Command\n\nPlease refer to [Shell Completions](shell_completions.md) for details.\n\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/go.mod",
    "content": "module github.com/spf13/cobra\n\ngo 1.12\n\nrequire (\n\tgithub.com/cpuguy83/go-md2man/v2 v2.0.0\n\tgithub.com/inconshreveable/mousetrap v1.0.0\n\tgithub.com/mitchellh/go-homedir v1.1.0\n\tgithub.com/spf13/pflag v1.0.5\n\tgithub.com/spf13/viper v1.7.0\n\tgopkg.in/yaml.v2 v2.2.8\n)\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/go.sum",
    "content": "cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=\ncloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=\ncloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=\ncloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=\ncloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=\ncloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=\ncloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=\ncloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=\ncloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=\ncloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk=\ncloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I=\ncloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=\ndmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=\ngithub.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=\ngithub.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=\ngithub.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=\ngithub.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=\ngithub.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=\ngithub.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=\ngithub.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=\ngithub.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=\ngithub.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=\ngithub.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=\ngithub.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=\ngithub.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=\ngithub.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84=\ngithub.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=\ngithub.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=\ngithub.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=\ngithub.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=\ngithub.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=\ngithub.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=\ngithub.com/cpuguy83/go-md2man/v2 v2.0.0 h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=\ngithub.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=\ngithub.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=\ngithub.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=\ngithub.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=\ngithub.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=\ngithub.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=\ngithub.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=\ngithub.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=\ngithub.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=\ngithub.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=\ngithub.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=\ngithub.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=\ngithub.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=\ngithub.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=\ngithub.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4=\ngithub.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=\ngithub.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=\ngithub.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=\ngithub.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=\ngithub.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=\ngithub.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=\ngithub.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=\ngithub.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=\ngithub.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=\ngithub.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=\ngithub.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=\ngithub.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=\ngithub.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=\ngithub.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=\ngithub.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=\ngithub.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=\ngithub.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=\ngithub.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=\ngithub.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=\ngithub.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=\ngithub.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk=\ngithub.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=\ngithub.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q=\ngithub.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8=\ngithub.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=\ngithub.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=\ngithub.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60=\ngithub.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM=\ngithub.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk=\ngithub.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU=\ngithub.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU=\ngithub.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4=\ngithub.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=\ngithub.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=\ngithub.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90=\ngithub.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=\ngithub.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=\ngithub.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=\ngithub.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=\ngithub.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=\ngithub.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ=\ngithub.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I=\ngithub.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc=\ngithub.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=\ngithub.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=\ngithub.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=\ngithub.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=\ngithub.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=\ngithub.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=\ngithub.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=\ngithub.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=\ngithub.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=\ngithub.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=\ngithub.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=\ngithub.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=\ngithub.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=\ngithub.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=\ngithub.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=\ngithub.com/magiconair/properties v1.8.1 h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=\ngithub.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=\ngithub.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=\ngithub.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4=\ngithub.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=\ngithub.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=\ngithub.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=\ngithub.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=\ngithub.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=\ngithub.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=\ngithub.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI=\ngithub.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg=\ngithub.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=\ngithub.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=\ngithub.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=\ngithub.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=\ngithub.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=\ngithub.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=\ngithub.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=\ngithub.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=\ngithub.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=\ngithub.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=\ngithub.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=\ngithub.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=\ngithub.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=\ngithub.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI=\ngithub.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=\ngithub.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=\ngithub.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=\ngithub.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=\ngithub.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=\ngithub.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=\ngithub.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=\ngithub.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=\ngithub.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=\ngithub.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=\ngithub.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=\ngithub.com/russross/blackfriday/v2 v2.0.1 h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=\ngithub.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=\ngithub.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=\ngithub.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=\ngithub.com/shurcooL/sanitized_anchor_name v1.0.0 h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=\ngithub.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=\ngithub.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=\ngithub.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=\ngithub.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=\ngithub.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=\ngithub.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=\ngithub.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM=\ngithub.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=\ngithub.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI=\ngithub.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=\ngithub.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=\ngithub.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=\ngithub.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=\ngithub.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=\ngithub.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=\ngithub.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=\ngithub.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=\ngithub.com/spf13/viper v1.7.0 h1:xVKxvI7ouOI5I+U9s2eeiUfMaWBVoXA3AWskkrqK0VM=\ngithub.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=\ngithub.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=\ngithub.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=\ngithub.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=\ngithub.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=\ngithub.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=\ngithub.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=\ngithub.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=\ngo.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=\ngo.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=\ngo.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=\ngo.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=\ngo.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=\ngo.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=\ngolang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=\ngolang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=\ngolang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=\ngolang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=\ngolang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek=\ngolang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY=\ngolang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=\ngolang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=\ngolang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=\ngolang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=\ngolang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=\ngolang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE=\ngolang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o=\ngolang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=\ngolang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY=\ngolang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=\ngolang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=\ngolang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=\ngolang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=\ngolang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0 h1:HyfiK1WMnHj5FXFXatD+Qs1A/xC2Run6RzeW1SyHxpc=\ngolang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=\ngolang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=\ngolang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=\ngolang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=\ngolang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngoogle.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=\ngoogle.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=\ngoogle.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=\ngoogle.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=\ngoogle.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=\ngoogle.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=\ngoogle.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=\ngoogle.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0=\ngoogle.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=\ngoogle.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=\ngoogle.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=\ngoogle.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=\ngoogle.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8=\ngoogle.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc=\ngoogle.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=\ngoogle.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=\ngoogle.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=\ngopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=\ngopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=\ngopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=\ngopkg.in/ini.v1 v1.51.0 h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno=\ngopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=\ngopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=\ngopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74=\ngopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=\ngopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\nhonnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=\nhonnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=\nrsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/powershell_completions.go",
    "content": "// PowerShell completions are based on the amazing work from clap:\n// https://github.com/clap-rs/clap/blob/3294d18efe5f264d12c9035f404c7d189d4824e1/src/completions/powershell.rs\n//\n// The generated scripts require PowerShell v5.0+ (which comes Windows 10, but\n// can be downloaded separately for windows 7 or 8.1).\n\npackage cobra\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"strings\"\n\n\t\"github.com/spf13/pflag\"\n)\n\nvar powerShellCompletionTemplate = `using namespace System.Management.Automation\nusing namespace System.Management.Automation.Language\nRegister-ArgumentCompleter -Native -CommandName '%s' -ScriptBlock {\n    param($wordToComplete, $commandAst, $cursorPosition)\n    $commandElements = $commandAst.CommandElements\n    $command = @(\n        '%s'\n        for ($i = 1; $i -lt $commandElements.Count; $i++) {\n            $element = $commandElements[$i]\n            if ($element -isnot [StringConstantExpressionAst] -or\n                $element.StringConstantType -ne [StringConstantType]::BareWord -or\n                $element.Value.StartsWith('-')) {\n                break\n            }\n            $element.Value\n        }\n    ) -join ';'\n    $completions = @(switch ($command) {%s\n    })\n    $completions.Where{ $_.CompletionText -like \"$wordToComplete*\" } |\n        Sort-Object -Property ListItemText\n}`\n\nfunc generatePowerShellSubcommandCases(out io.Writer, cmd *Command, previousCommandName string) {\n\tvar cmdName string\n\tif previousCommandName == \"\" {\n\t\tcmdName = cmd.Name()\n\t} else {\n\t\tcmdName = fmt.Sprintf(\"%s;%s\", previousCommandName, cmd.Name())\n\t}\n\n\tfmt.Fprintf(out, \"\\n        '%s' {\", cmdName)\n\n\tcmd.Flags().VisitAll(func(flag *pflag.Flag) {\n\t\tif nonCompletableFlag(flag) {\n\t\t\treturn\n\t\t}\n\t\tusage := escapeStringForPowerShell(flag.Usage)\n\t\tif len(flag.Shorthand) > 0 {\n\t\t\tfmt.Fprintf(out, \"\\n            [CompletionResult]::new('-%s', '%s', [CompletionResultType]::ParameterName, '%s')\", flag.Shorthand, flag.Shorthand, usage)\n\t\t}\n\t\tfmt.Fprintf(out, \"\\n            [CompletionResult]::new('--%s', '%s', [CompletionResultType]::ParameterName, '%s')\", flag.Name, flag.Name, usage)\n\t})\n\n\tfor _, subCmd := range cmd.Commands() {\n\t\tusage := escapeStringForPowerShell(subCmd.Short)\n\t\tfmt.Fprintf(out, \"\\n            [CompletionResult]::new('%s', '%s', [CompletionResultType]::ParameterValue, '%s')\", subCmd.Name(), subCmd.Name(), usage)\n\t}\n\n\tfmt.Fprint(out, \"\\n            break\\n        }\")\n\n\tfor _, subCmd := range cmd.Commands() {\n\t\tgeneratePowerShellSubcommandCases(out, subCmd, cmdName)\n\t}\n}\n\nfunc escapeStringForPowerShell(s string) string {\n\treturn strings.Replace(s, \"'\", \"''\", -1)\n}\n\n// GenPowerShellCompletion generates PowerShell completion file and writes to the passed writer.\nfunc (c *Command) GenPowerShellCompletion(w io.Writer) error {\n\tbuf := new(bytes.Buffer)\n\n\tvar subCommandCases bytes.Buffer\n\tgeneratePowerShellSubcommandCases(&subCommandCases, c, \"\")\n\tfmt.Fprintf(buf, powerShellCompletionTemplate, c.Name(), c.Name(), subCommandCases.String())\n\n\t_, err := buf.WriteTo(w)\n\treturn err\n}\n\n// GenPowerShellCompletionFile generates PowerShell completion file.\nfunc (c *Command) GenPowerShellCompletionFile(filename string) error {\n\toutFile, err := os.Create(filename)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer outFile.Close()\n\n\treturn c.GenPowerShellCompletion(outFile)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/powershell_completions.md",
    "content": "# Generating PowerShell Completions For Your Own cobra.Command\n\nCobra can generate PowerShell completion scripts. Users need PowerShell version 5.0 or above, which comes with Windows 10 and can be downloaded separately for Windows 7 or 8.1. They can then write the completions to a file and source this file from their PowerShell profile, which is referenced by the `$Profile` environment variable. See `Get-Help about_Profiles` for more info about PowerShell profiles.\n\n*Note*: PowerShell completions have not (yet?) been aligned to Cobra's generic shell completion support.  This implies the PowerShell completions are not as rich as for other shells (see [What's not yet supported](#whats-not-yet-supported)), and may behave slightly differently.  They are still very useful for PowerShell users.\n\n# What's supported\n\n- Completion for subcommands using their `.Short` description\n- Completion for non-hidden flags using their `.Name` and `.Shorthand`\n\n# What's not yet supported\n\n- Command aliases\n- Required, filename or custom flags (they will work like normal flags)\n- Custom completion scripts\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/projects_using_cobra.md",
    "content": "## Projects using Cobra\n\n- [Arduino CLI](https://github.com/arduino/arduino-cli)\n- [Bleve](http://www.blevesearch.com/)\n- [CockroachDB](http://www.cockroachlabs.com/)\n- [Cosmos SDK](https://github.com/cosmos/cosmos-sdk)\n- [Delve](https://github.com/derekparker/delve)\n- [Docker (distribution)](https://github.com/docker/distribution)\n- [Etcd](https://etcd.io/)\n- [Gardener](https://github.com/gardener/gardenctl)\n- [Giant Swarm's gsctl](https://github.com/giantswarm/gsctl)\n- [Git Bump](https://github.com/erdaltsksn/git-bump)\n- [Github CLI](https://github.com/cli/cli)\n- [GitHub Labeler](https://github.com/erdaltsksn/gh-label)\n- [Golangci-lint](https://golangci-lint.run)\n- [GopherJS](http://www.gopherjs.org/)\n- [Helm](https://helm.sh)\n- [Hugo](https://gohugo.io)\n- [Istio](https://istio.io)\n- [Kool](https://github.com/kool-dev/kool)\n- [Kubernetes](http://kubernetes.io/)\n- [Linkerd](https://linkerd.io/)\n- [Mattermost-server](https://github.com/mattermost/mattermost-server)\n- [Metal Stack CLI](https://github.com/metal-stack/metalctl)\n- [Moby (former Docker)](https://github.com/moby/moby)\n- [Nanobox](https://github.com/nanobox-io/nanobox)/[Nanopack](https://github.com/nanopack)\n- [OpenShift](https://www.openshift.com/)\n- [Pouch](https://github.com/alibaba/pouch)\n- [ProjectAtomic (enterprise)](http://www.projectatomic.io/)\n- [Prototool](https://github.com/uber/prototool)\n- [Random](https://github.com/erdaltsksn/random)\n- [Rclone](https://rclone.org/)\n- [Skaffold](https://skaffold.dev/)\n- [Tendermint](https://github.com/tendermint/tendermint)\n- [Werf](https://werf.io/)\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/shell_completions.go",
    "content": "package cobra\n\nimport (\n\t\"github.com/spf13/pflag\"\n)\n\n// MarkFlagRequired instructs the various shell completion implementations to\n// prioritize the named flag when performing completion,\n// and causes your command to report an error if invoked without the flag.\nfunc (c *Command) MarkFlagRequired(name string) error {\n\treturn MarkFlagRequired(c.Flags(), name)\n}\n\n// MarkPersistentFlagRequired instructs the various shell completion implementations to\n// prioritize the named persistent flag when performing completion,\n// and causes your command to report an error if invoked without the flag.\nfunc (c *Command) MarkPersistentFlagRequired(name string) error {\n\treturn MarkFlagRequired(c.PersistentFlags(), name)\n}\n\n// MarkFlagRequired instructs the various shell completion implementations to\n// prioritize the named flag when performing completion,\n// and causes your command to report an error if invoked without the flag.\nfunc MarkFlagRequired(flags *pflag.FlagSet, name string) error {\n\treturn flags.SetAnnotation(name, BashCompOneRequiredFlag, []string{\"true\"})\n}\n\n// MarkFlagFilename instructs the various shell completion implementations to\n// limit completions for the named flag to the specified file extensions.\nfunc (c *Command) MarkFlagFilename(name string, extensions ...string) error {\n\treturn MarkFlagFilename(c.Flags(), name, extensions...)\n}\n\n// MarkFlagCustom adds the BashCompCustom annotation to the named flag, if it exists.\n// The bash completion script will call the bash function f for the flag.\n//\n// This will only work for bash completion.\n// It is recommended to instead use c.RegisterFlagCompletionFunc(...) which allows\n// to register a Go function which will work across all shells.\nfunc (c *Command) MarkFlagCustom(name string, f string) error {\n\treturn MarkFlagCustom(c.Flags(), name, f)\n}\n\n// MarkPersistentFlagFilename instructs the various shell completion\n// implementations to limit completions for the named persistent flag to the\n// specified file extensions.\nfunc (c *Command) MarkPersistentFlagFilename(name string, extensions ...string) error {\n\treturn MarkFlagFilename(c.PersistentFlags(), name, extensions...)\n}\n\n// MarkFlagFilename instructs the various shell completion implementations to\n// limit completions for the named flag to the specified file extensions.\nfunc MarkFlagFilename(flags *pflag.FlagSet, name string, extensions ...string) error {\n\treturn flags.SetAnnotation(name, BashCompFilenameExt, extensions)\n}\n\n// MarkFlagCustom adds the BashCompCustom annotation to the named flag, if it exists.\n// The bash completion script will call the bash function f for the flag.\n//\n// This will only work for bash completion.\n// It is recommended to instead use c.RegisterFlagCompletionFunc(...) which allows\n// to register a Go function which will work across all shells.\nfunc MarkFlagCustom(flags *pflag.FlagSet, name string, f string) error {\n\treturn flags.SetAnnotation(name, BashCompCustom, []string{f})\n}\n\n// MarkFlagDirname instructs the various shell completion implementations to\n// limit completions for the named flag to directory names.\nfunc (c *Command) MarkFlagDirname(name string) error {\n\treturn MarkFlagDirname(c.Flags(), name)\n}\n\n// MarkPersistentFlagDirname instructs the various shell completion\n// implementations to limit completions for the named persistent flag to\n// directory names.\nfunc (c *Command) MarkPersistentFlagDirname(name string) error {\n\treturn MarkFlagDirname(c.PersistentFlags(), name)\n}\n\n// MarkFlagDirname instructs the various shell completion implementations to\n// limit completions for the named flag to directory names.\nfunc MarkFlagDirname(flags *pflag.FlagSet, name string) error {\n\treturn flags.SetAnnotation(name, BashCompSubdirsInDir, []string{})\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/shell_completions.md",
    "content": "# Generating shell completions\n\nCobra can generate shell completions for multiple shells.\nThe currently supported shells are:\n- Bash\n- Zsh\n- Fish\n- PowerShell\n\nIf you are using the generator you can create a completion command by running\n\n```bash\ncobra add completion\n```\nand then modifying the generated `cmd/completion.go` file to look something like this\n(writing the shell script to stdout allows the most flexible use):\n\n```go\nvar completionCmd = &cobra.Command{\n\tUse:                   \"completion [bash|zsh|fish|powershell]\",\n\tShort:                 \"Generate completion script\",\n\tLong: `To load completions:\n\nBash:\n\n$ source <(yourprogram completion bash)\n\n# To load completions for each session, execute once:\nLinux:\n  $ yourprogram completion bash > /etc/bash_completion.d/yourprogram\nMacOS:\n  $ yourprogram completion bash > /usr/local/etc/bash_completion.d/yourprogram\n\nZsh:\n\n# If shell completion is not already enabled in your environment you will need\n# to enable it.  You can execute the following once:\n\n$ echo \"autoload -U compinit; compinit\" >> ~/.zshrc\n\n# To load completions for each session, execute once:\n$ yourprogram completion zsh > \"${fpath[1]}/_yourprogram\"\n\n# You will need to start a new shell for this setup to take effect.\n\nFish:\n\n$ yourprogram completion fish | source\n\n# To load completions for each session, execute once:\n$ yourprogram completion fish > ~/.config/fish/completions/yourprogram.fish\n`,\n\tDisableFlagsInUseLine: true,\n\tValidArgs:             []string{\"bash\", \"zsh\", \"fish\", \"powershell\"},\n\tArgs:                  cobra.ExactValidArgs(1),\n\tRun: func(cmd *cobra.Command, args []string) {\n\t\tswitch args[0] {\n\t\tcase \"bash\":\n\t\t\tcmd.Root().GenBashCompletion(os.Stdout)\n\t\tcase \"zsh\":\n\t\t\tcmd.Root().GenZshCompletion(os.Stdout)\n\t\tcase \"fish\":\n\t\t\tcmd.Root().GenFishCompletion(os.Stdout, true)\n\t\tcase \"powershell\":\n\t\t\tcmd.Root().GenPowerShellCompletion(os.Stdout)\n\t\t}\n\t},\n}\n```\n\n**Note:** The cobra generator may include messages printed to stdout for example if the config file is loaded, this will break the auto complete script so must be removed.\n\n# Customizing completions\n\nThe generated completion scripts will automatically handle completing commands and flags.  However, you can make your completions much more powerful by providing information to complete your program's nouns and flag values.\n\n## Completion of nouns\n\n### Static completion of nouns\n\nCobra allows you to provide a pre-defined list of completion choices for your nouns using the `ValidArgs` field.\nFor example, if you want `kubectl get [tab][tab]` to show a list of valid \"nouns\" you have to set them.\nSome simplified code from `kubectl get` looks like:\n\n```go\nvalidArgs []string = { \"pod\", \"node\", \"service\", \"replicationcontroller\" }\n\ncmd := &cobra.Command{\n\tUse:     \"get [(-o|--output=)json|yaml|template|...] (RESOURCE [NAME] | RESOURCE/NAME ...)\",\n\tShort:   \"Display one or many resources\",\n\tLong:    get_long,\n\tExample: get_example,\n\tRun: func(cmd *cobra.Command, args []string) {\n\t\terr := RunGet(f, out, cmd, args)\n\t\tutil.CheckErr(err)\n\t},\n\tValidArgs: validArgs,\n}\n```\n\nNotice we put the `ValidArgs` field on the `get` sub-command. Doing so will give results like:\n\n```bash\n$ kubectl get [tab][tab]\nnode   pod   replicationcontroller   service\n```\n\n#### Aliases for nouns\n\nIf your nouns have aliases, you can define them alongside `ValidArgs` using `ArgAliases`:\n\n```go\nargAliases []string = { \"pods\", \"nodes\", \"services\", \"svc\", \"replicationcontrollers\", \"rc\" }\n\ncmd := &cobra.Command{\n    ...\n\tValidArgs:  validArgs,\n\tArgAliases: argAliases\n}\n```\n\nThe aliases are not shown to the user on tab completion, but they are accepted as valid nouns by\nthe completion algorithm if entered manually, e.g. in:\n\n```bash\n$ kubectl get rc [tab][tab]\nbackend        frontend       database \n```\n\nNote that without declaring `rc` as an alias, the completion algorithm would not know to show the list of\nreplication controllers following `rc`.\n\n### Dynamic completion of nouns\n\nIn some cases it is not possible to provide a list of completions in advance.  Instead, the list of completions must be determined at execution-time. In a similar fashion as for static completions, you can use the `ValidArgsFunction` field to provide a Go function that Cobra will execute when it needs the list of completion choices for the nouns of a command.  Note that either `ValidArgs` or `ValidArgsFunction` can be used for a single cobra command, but not both.\nSimplified code from `helm status` looks like:\n\n```go\ncmd := &cobra.Command{\n\tUse:   \"status RELEASE_NAME\",\n\tShort: \"Display the status of the named release\",\n\tLong:  status_long,\n\tRunE: func(cmd *cobra.Command, args []string) {\n\t\tRunGet(args[0])\n\t},\n\tValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {\n\t\tif len(args) != 0 {\n\t\t\treturn nil, cobra.ShellCompDirectiveNoFileComp\n\t\t}\n\t\treturn getReleasesFromCluster(toComplete), cobra.ShellCompDirectiveNoFileComp\n\t},\n}\n```\nWhere `getReleasesFromCluster()` is a Go function that obtains the list of current Helm releases running on the Kubernetes cluster.\nNotice we put the `ValidArgsFunction` on the `status` sub-command. Let's assume the Helm releases on the cluster are: `harbor`, `notary`, `rook` and `thanos` then this dynamic completion will give results like:\n\n```bash\n$ helm status [tab][tab]\nharbor notary rook thanos\n```\nYou may have noticed the use of `cobra.ShellCompDirective`.  These directives are bit fields allowing to control some shell completion behaviors for your particular completion.  You can combine them with the bit-or operator such as `cobra.ShellCompDirectiveNoSpace | cobra.ShellCompDirectiveNoFileComp`\n```go\n// Indicates that the shell will perform its default behavior after completions\n// have been provided (this implies none of the other directives).\nShellCompDirectiveDefault\n\n// Indicates an error occurred and completions should be ignored.\nShellCompDirectiveError\n\n// Indicates that the shell should not add a space after the completion,\n// even if there is a single completion provided.\nShellCompDirectiveNoSpace\n\n// Indicates that the shell should not provide file completion even when\n// no completion is provided.\nShellCompDirectiveNoFileComp\n\n// Indicates that the returned completions should be used as file extension filters.\n// For example, to complete only files of the form *.json or *.yaml:\n//    return []string{\"yaml\", \"json\"}, ShellCompDirectiveFilterFileExt\n// For flags, using MarkFlagFilename() and MarkPersistentFlagFilename()\n// is a shortcut to using this directive explicitly.\n//\nShellCompDirectiveFilterFileExt\n\n// Indicates that only directory names should be provided in file completion.\n// For example:\n//    return nil, ShellCompDirectiveFilterDirs\n// For flags, using MarkFlagDirname() is a shortcut to using this directive explicitly.\n//\n// To request directory names within another directory, the returned completions\n// should specify a single directory name within which to search. For example,\n// to complete directories within \"themes/\":\n//    return []string{\"themes\"}, ShellCompDirectiveFilterDirs\n//\nShellCompDirectiveFilterDirs\n```\n\n***Note***: When using the `ValidArgsFunction`, Cobra will call your registered function after having parsed all flags and arguments provided in the command-line.  You therefore don't need to do this parsing yourself.  For example, when a user calls `helm status --namespace my-rook-ns [tab][tab]`, Cobra will call your registered `ValidArgsFunction` after having parsed the `--namespace` flag, as it would have done when calling the `RunE` function.\n\n#### Debugging\n\nCobra achieves dynamic completion through the use of a hidden command called by the completion script.  To debug your Go completion code, you can call this hidden command directly:\n```bash\n$ helm __complete status har<ENTER>\nharbor\n:4\nCompletion ended with directive: ShellCompDirectiveNoFileComp # This is on stderr\n```\n***Important:*** If the noun to complete is empty (when the user has not yet typed any letters of that noun), you must pass an empty parameter to the `__complete` command:\n```bash\n$ helm __complete status \"\"<ENTER>\nharbor\nnotary\nrook\nthanos\n:4\nCompletion ended with directive: ShellCompDirectiveNoFileComp # This is on stderr\n```\nCalling the `__complete` command directly allows you to run the Go debugger to troubleshoot your code.  You can also add printouts to your code; Cobra provides the following functions to use for printouts in Go completion code:\n```go\n// Prints to the completion script debug file (if BASH_COMP_DEBUG_FILE\n// is set to a file path) and optionally prints to stderr.\ncobra.CompDebug(msg string, printToStdErr bool) {\ncobra.CompDebugln(msg string, printToStdErr bool)\n\n// Prints to the completion script debug file (if BASH_COMP_DEBUG_FILE\n// is set to a file path) and to stderr.\ncobra.CompError(msg string)\ncobra.CompErrorln(msg string)\n```\n***Important:*** You should **not** leave traces that print directly to stdout in your completion code as they will be interpreted as completion choices by the completion script.  Instead, use the cobra-provided debugging traces functions mentioned above.\n\n## Completions for flags\n\n### Mark flags as required\n\nMost of the time completions will only show sub-commands. But if a flag is required to make a sub-command work, you probably want it to show up when the user types [tab][tab].  You can mark a flag as 'Required' like so:\n\n```go\ncmd.MarkFlagRequired(\"pod\")\ncmd.MarkFlagRequired(\"container\")\n```\n\nand you'll get something like\n\n```bash\n$ kubectl exec [tab][tab]\n-c            --container=  -p            --pod=  \n```\n\n### Specify dynamic flag completion\n\nAs for nouns, Cobra provides a way of defining dynamic completion of flags.  To provide a Go function that Cobra will execute when it needs the list of completion choices for a flag, you must register the function using the `command.RegisterFlagCompletionFunc()` function.\n\n```go\nflagName := \"output\"\ncmd.RegisterFlagCompletionFunc(flagName, func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {\n\treturn []string{\"json\", \"table\", \"yaml\"}, cobra.ShellCompDirectiveDefault\n})\n```\nNotice that calling `RegisterFlagCompletionFunc()` is done through the `command` with which the flag is associated.  In our example this dynamic completion will give results like so:\n\n```bash\n$ helm status --output [tab][tab]\njson table yaml\n```\n\n#### Debugging\n\nYou can also easily debug your Go completion code for flags:\n```bash\n$ helm __complete status --output \"\"\njson\ntable\nyaml\n:4\nCompletion ended with directive: ShellCompDirectiveNoFileComp # This is on stderr\n```\n***Important:*** You should **not** leave traces that print to stdout in your completion code as they will be interpreted as completion choices by the completion script.  Instead, use the cobra-provided debugging traces functions mentioned further above.\n\n### Specify valid filename extensions for flags that take a filename\n\nTo limit completions of flag values to file names with certain extensions you can either use the different `MarkFlagFilename()` functions or a combination of `RegisterFlagCompletionFunc()` and `ShellCompDirectiveFilterFileExt`, like so:\n```go\nflagName := \"output\"\ncmd.MarkFlagFilename(flagName, \"yaml\", \"json\")\n```\nor\n```go\nflagName := \"output\"\ncmd.RegisterFlagCompletionFunc(flagName, func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {\n\treturn []string{\"yaml\", \"json\"}, ShellCompDirectiveFilterFileExt})\n```\n\n### Limit flag completions to directory names\n\nTo limit completions of flag values to directory names you can either use the `MarkFlagDirname()` functions or a combination of `RegisterFlagCompletionFunc()` and `ShellCompDirectiveFilterDirs`, like so:\n```go\nflagName := \"output\"\ncmd.MarkFlagDirname(flagName)\n```\nor\n```go\nflagName := \"output\"\ncmd.RegisterFlagCompletionFunc(flagName, func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {\n\treturn nil, cobra.ShellCompDirectiveFilterDirs\n})\n```\nTo limit completions of flag values to directory names *within another directory* you can use a combination of `RegisterFlagCompletionFunc()` and `ShellCompDirectiveFilterDirs` like so:\n```go\nflagName := \"output\"\ncmd.RegisterFlagCompletionFunc(flagName, func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {\n\treturn []string{\"themes\"}, cobra.ShellCompDirectiveFilterDirs\n})\n```\n### Descriptions for completions\n\nBoth `zsh` and `fish` allow for descriptions to annotate completion choices.  For commands and flags, Cobra will provide the descriptions automatically, based on usage information.  For example, using zsh:\n```\n$ helm s[tab]\nsearch  -- search for a keyword in charts\nshow    -- show information of a chart\nstatus  -- displays the status of the named release\n```\nwhile using fish:\n```\n$ helm s[tab]\nsearch  (search for a keyword in charts)  show  (show information of a chart)  status  (displays the status of the named release)\n```\n\nCobra allows you to add annotations to your own completions.  Simply add the annotation text after each completion, following a `\\t` separator.  This technique applies to completions returned by `ValidArgs`, `ValidArgsFunction` and `RegisterFlagCompletionFunc()`.  For example:\n```go\nValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {\n\treturn []string{\"harbor\\tAn image registry\", \"thanos\\tLong-term metrics\"}, cobra.ShellCompDirectiveNoFileComp\n}}\n```\nor\n```go\nValidArgs: []string{\"bash\\tCompletions for bash\", \"zsh\\tCompletions for zsh\"}\n```\n## Bash completions\n\n### Dependencies\n\nThe bash completion script generated by Cobra requires the `bash_completion` package. You should update the help text of your completion command to show how to install the `bash_completion` package ([Kubectl docs](https://kubernetes.io/docs/tasks/tools/install-kubectl/#enabling-shell-autocompletion))\n\n### Aliases\n\nYou can also configure `bash` aliases for your program and they will also support completions.\n\n```bash\nalias aliasname=origcommand\ncomplete -o default -F __start_origcommand aliasname\n\n# and now when you run `aliasname` completion will make\n# suggestions as it did for `origcommand`.\n\n$ aliasname <tab><tab>\ncompletion     firstcommand   secondcommand\n```\n### Bash legacy dynamic completions\n\nFor backwards-compatibility, Cobra still supports its bash legacy dynamic completion solution.\nPlease refer to [Bash Completions](bash_completions.md) for details.\n\n## Zsh completions\n\nCobra supports native Zsh completion generated from the root `cobra.Command`.\nThe generated completion script should be put somewhere in your `$fpath` and be named\n`_<yourProgram>`.  You will need to start a new shell for the completions to become available.\n\nZsh supports descriptions for completions. Cobra will provide the description automatically,\nbased on usage information. Cobra provides a way to completely disable such descriptions by\nusing `GenZshCompletionNoDesc()` or `GenZshCompletionFileNoDesc()`. You can choose to make\nthis a configurable option to your users.\n```\n# With descriptions\n$ helm s[tab]\nsearch  -- search for a keyword in charts\nshow    -- show information of a chart\nstatus  -- displays the status of the named release\n\n# Without descriptions\n$ helm s[tab]\nsearch  show  status\n```\n*Note*: Because of backwards-compatibility requirements, we were forced to have a different API to disable completion descriptions between `Zsh` and `Fish`.\n\n### Limitations\n\n* Custom completions implemented in Bash scripting (legacy) are not supported and will be ignored for `zsh` (including the use of the `BashCompCustom` flag annotation).\n  * You should instead use `ValidArgsFunction` and `RegisterFlagCompletionFunc()` which are portable to the different shells (`bash`, `zsh`, `fish`).\n* The function `MarkFlagCustom()` is not supported and will be ignored for `zsh`.\n  * You should instead use `RegisterFlagCompletionFunc()`.\n\n### Zsh completions standardization\n\nCobra 1.1 standardized its zsh completion support to align it with its other shell completions.  Although the API was kept backwards-compatible, some small changes in behavior were introduced.\nPlease refer to [Zsh Completions](zsh_completions.md) for details.\n\n## Fish completions\n\nCobra supports native Fish completions generated from the root `cobra.Command`.  You can use the `command.GenFishCompletion()` or `command.GenFishCompletionFile()` functions. You must provide these functions with a parameter indicating if the completions should be annotated with a description; Cobra will provide the description automatically based on usage information.  You can choose to make this option configurable by your users.\n```\n# With descriptions\n$ helm s[tab]\nsearch  (search for a keyword in charts)  show  (show information of a chart)  status  (displays the status of the named release)\n\n# Without descriptions\n$ helm s[tab]\nsearch  show  status\n```\n*Note*: Because of backwards-compatibility requirements, we were forced to have a different API to disable completion descriptions between `Zsh` and `Fish`.\n\n### Limitations\n\n* Custom completions implemented in Bash scripting (legacy) are not supported and will be ignored for `fish` (including the use of the `BashCompCustom` flag annotation).\n  * You should instead use `ValidArgsFunction` and `RegisterFlagCompletionFunc()` which are portable to the different shells (`bash`, `zsh`, `fish`).\n* The function `MarkFlagCustom()` is not supported and will be ignored for `fish`.\n  * You should instead use `RegisterFlagCompletionFunc()`.\n* The following flag completion annotations are not supported and will be ignored for `fish`:\n  * `BashCompFilenameExt` (filtering by file extension)\n  * `BashCompSubdirsInDir` (filtering by directory)\n* The functions corresponding to the above annotations are consequently not supported and will be ignored for `fish`:\n  * `MarkFlagFilename()` and `MarkPersistentFlagFilename()` (filtering by file extension)\n  * `MarkFlagDirname()` and `MarkPersistentFlagDirname()` (filtering by directory)\n* Similarly, the following completion directives are not supported and will be ignored for `fish`:\n  * `ShellCompDirectiveFilterFileExt` (filtering by file extension)\n  * `ShellCompDirectiveFilterDirs` (filtering by directory)\n\n## PowerShell completions\n\nPlease refer to [PowerShell Completions](powershell_completions.md) for details.\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/zsh_completions.go",
    "content": "package cobra\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n)\n\n// GenZshCompletionFile generates zsh completion file including descriptions.\nfunc (c *Command) GenZshCompletionFile(filename string) error {\n\treturn c.genZshCompletionFile(filename, true)\n}\n\n// GenZshCompletion generates zsh completion file including descriptions\n// and writes it to the passed writer.\nfunc (c *Command) GenZshCompletion(w io.Writer) error {\n\treturn c.genZshCompletion(w, true)\n}\n\n// GenZshCompletionFileNoDesc generates zsh completion file without descriptions.\nfunc (c *Command) GenZshCompletionFileNoDesc(filename string) error {\n\treturn c.genZshCompletionFile(filename, false)\n}\n\n// GenZshCompletionNoDesc generates zsh completion file without descriptions\n// and writes it to the passed writer.\nfunc (c *Command) GenZshCompletionNoDesc(w io.Writer) error {\n\treturn c.genZshCompletion(w, false)\n}\n\n// MarkZshCompPositionalArgumentFile only worked for zsh and its behavior was\n// not consistent with Bash completion. It has therefore been disabled.\n// Instead, when no other completion is specified, file completion is done by\n// default for every argument. One can disable file completion on a per-argument\n// basis by using ValidArgsFunction and ShellCompDirectiveNoFileComp.\n// To achieve file extension filtering, one can use ValidArgsFunction and\n// ShellCompDirectiveFilterFileExt.\n//\n// Deprecated\nfunc (c *Command) MarkZshCompPositionalArgumentFile(argPosition int, patterns ...string) error {\n\treturn nil\n}\n\n// MarkZshCompPositionalArgumentWords only worked for zsh. It has therefore\n// been disabled.\n// To achieve the same behavior across all shells, one can use\n// ValidArgs (for the first argument only) or ValidArgsFunction for\n// any argument (can include the first one also).\n//\n// Deprecated\nfunc (c *Command) MarkZshCompPositionalArgumentWords(argPosition int, words ...string) error {\n\treturn nil\n}\n\nfunc (c *Command) genZshCompletionFile(filename string, includeDesc bool) error {\n\toutFile, err := os.Create(filename)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer outFile.Close()\n\n\treturn c.genZshCompletion(outFile, includeDesc)\n}\n\nfunc (c *Command) genZshCompletion(w io.Writer, includeDesc bool) error {\n\tbuf := new(bytes.Buffer)\n\tgenZshComp(buf, c.Name(), includeDesc)\n\t_, err := buf.WriteTo(w)\n\treturn err\n}\n\nfunc genZshComp(buf *bytes.Buffer, name string, includeDesc bool) {\n\tcompCmd := ShellCompRequestCmd\n\tif !includeDesc {\n\t\tcompCmd = ShellCompNoDescRequestCmd\n\t}\n\tbuf.WriteString(fmt.Sprintf(`#compdef _%[1]s %[1]s\n\n# zsh completion for %-36[1]s -*- shell-script -*-\n\n__%[1]s_debug()\n{\n    local file=\"$BASH_COMP_DEBUG_FILE\"\n    if [[ -n ${file} ]]; then\n        echo \"$*\" >> \"${file}\"\n    fi\n}\n\n_%[1]s()\n{\n    local shellCompDirectiveError=%[3]d\n    local shellCompDirectiveNoSpace=%[4]d\n    local shellCompDirectiveNoFileComp=%[5]d\n    local shellCompDirectiveFilterFileExt=%[6]d\n    local shellCompDirectiveFilterDirs=%[7]d\n\n    local lastParam lastChar flagPrefix requestComp out directive compCount comp lastComp\n    local -a completions\n\n    __%[1]s_debug \"\\n========= starting completion logic ==========\"\n    __%[1]s_debug \"CURRENT: ${CURRENT}, words[*]: ${words[*]}\"\n\n    # The user could have moved the cursor backwards on the command-line.\n    # We need to trigger completion from the $CURRENT location, so we need\n    # to truncate the command-line ($words) up to the $CURRENT location.\n    # (We cannot use $CURSOR as its value does not work when a command is an alias.)\n    words=(\"${=words[1,CURRENT]}\")\n    __%[1]s_debug \"Truncated words[*]: ${words[*]},\"\n\n    lastParam=${words[-1]}\n    lastChar=${lastParam[-1]}\n    __%[1]s_debug \"lastParam: ${lastParam}, lastChar: ${lastChar}\"\n\n    # For zsh, when completing a flag with an = (e.g., %[1]s -n=<TAB>)\n    # completions must be prefixed with the flag\n    setopt local_options BASH_REMATCH\n    if [[ \"${lastParam}\" =~ '-.*=' ]]; then\n        # We are dealing with a flag with an =\n        flagPrefix=\"-P ${BASH_REMATCH}\"\n    fi\n\n    # Prepare the command to obtain completions\n    requestComp=\"${words[1]} %[2]s ${words[2,-1]}\"\n    if [ \"${lastChar}\" = \"\" ]; then\n        # If the last parameter is complete (there is a space following it)\n        # We add an extra empty parameter so we can indicate this to the go completion code.\n        __%[1]s_debug \"Adding extra empty parameter\"\n        requestComp=\"${requestComp} \\\"\\\"\"\n    fi\n\n    __%[1]s_debug \"About to call: eval ${requestComp}\"\n\n    # Use eval to handle any environment variables and such\n    out=$(eval ${requestComp} 2>/dev/null)\n    __%[1]s_debug \"completion output: ${out}\"\n\n    # Extract the directive integer following a : from the last line\n    local lastLine\n    while IFS='\\n' read -r line; do\n        lastLine=${line}\n    done < <(printf \"%%s\\n\" \"${out[@]}\")\n    __%[1]s_debug \"last line: ${lastLine}\"\n\n    if [ \"${lastLine[1]}\" = : ]; then\n        directive=${lastLine[2,-1]}\n        # Remove the directive including the : and the newline\n        local suffix\n        (( suffix=${#lastLine}+2))\n        out=${out[1,-$suffix]}\n    else\n        # There is no directive specified.  Leave $out as is.\n        __%[1]s_debug \"No directive found.  Setting do default\"\n        directive=0\n    fi\n\n    __%[1]s_debug \"directive: ${directive}\"\n    __%[1]s_debug \"completions: ${out}\"\n    __%[1]s_debug \"flagPrefix: ${flagPrefix}\"\n\n    if [ $((directive & shellCompDirectiveError)) -ne 0 ]; then\n        __%[1]s_debug \"Completion received error. Ignoring completions.\"\n        return\n    fi\n\n    compCount=0\n    while IFS='\\n' read -r comp; do\n        if [ -n \"$comp\" ]; then\n            # If requested, completions are returned with a description.\n            # The description is preceded by a TAB character.\n            # For zsh's _describe, we need to use a : instead of a TAB.\n            # We first need to escape any : as part of the completion itself.\n            comp=${comp//:/\\\\:}\n\n            local tab=$(printf '\\t')\n            comp=${comp//$tab/:}\n\n            ((compCount++))\n            __%[1]s_debug \"Adding completion: ${comp}\"\n            completions+=${comp}\n            lastComp=$comp\n        fi\n    done < <(printf \"%%s\\n\" \"${out[@]}\")\n\n    if [ $((directive & shellCompDirectiveFilterFileExt)) -ne 0 ]; then\n        # File extension filtering\n        local filteringCmd\n        filteringCmd='_files'\n        for filter in ${completions[@]}; do\n            if [ ${filter[1]} != '*' ]; then\n                # zsh requires a glob pattern to do file filtering\n                filter=\"\\*.$filter\"\n            fi\n            filteringCmd+=\" -g $filter\"\n        done\n        filteringCmd+=\" ${flagPrefix}\"\n\n        __%[1]s_debug \"File filtering command: $filteringCmd\"\n        _arguments '*:filename:'\"$filteringCmd\"\n    elif [ $((directive & shellCompDirectiveFilterDirs)) -ne 0 ]; then\n        # File completion for directories only\n        local subDir\n        subdir=\"${completions[1]}\"\n        if [ -n \"$subdir\" ]; then\n            __%[1]s_debug \"Listing directories in $subdir\"\n            pushd \"${subdir}\" >/dev/null 2>&1\n        else\n            __%[1]s_debug \"Listing directories in .\"\n        fi\n\n        _arguments '*:dirname:_files -/'\" ${flagPrefix}\"\n        if [ -n \"$subdir\" ]; then\n            popd >/dev/null 2>&1\n        fi\n    elif [ $((directive & shellCompDirectiveNoSpace)) -ne 0 ] && [ ${compCount} -eq 1 ]; then\n        __%[1]s_debug \"Activating nospace.\"\n        # We can use compadd here as there is no description when\n        # there is only one completion.\n        compadd -S '' \"${lastComp}\"\n    elif [ ${compCount} -eq 0 ]; then\n        if [ $((directive & shellCompDirectiveNoFileComp)) -ne 0 ]; then\n            __%[1]s_debug \"deactivating file completion\"\n        else\n            # Perform file completion\n            __%[1]s_debug \"activating file completion\"\n            _arguments '*:filename:_files'\" ${flagPrefix}\"\n        fi\n    else\n        _describe \"completions\" completions $(echo $flagPrefix)\n    fi\n}\n\n# don't run the completion function when being source-ed or eval-ed\nif [ \"$funcstack[1]\" = \"_%[1]s\" ]; then\n\t_%[1]s\nfi\n`, name, compCmd,\n\t\tShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,\n\t\tShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs))\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/cobra/zsh_completions.md",
    "content": "## Generating Zsh Completion For Your cobra.Command\n\nPlease refer to [Shell Completions](shell_completions.md) for details.\n\n## Zsh completions standardization\n\nCobra 1.1 standardized its zsh completion support to align it with its other shell completions.  Although the API was kept backwards-compatible, some small changes in behavior were introduced.\n\n### Deprecation summary\n\nSee further below for more details on these deprecations.\n\n* `cmd.MarkZshCompPositionalArgumentFile(pos, []string{})` is no longer needed.  It is therefore **deprecated** and silently ignored.\n* `cmd.MarkZshCompPositionalArgumentFile(pos, glob[])` is **deprecated** and silently ignored.\n  * Instead use `ValidArgsFunction` with `ShellCompDirectiveFilterFileExt`.\n* `cmd.MarkZshCompPositionalArgumentWords()` is **deprecated** and silently ignored.\n  * Instead use `ValidArgsFunction`.\n\n### Behavioral changes\n\n**Noun completion**\n|Old behavior|New behavior|\n|---|---|\n|No file completion by default (opposite of bash)|File completion by default; use `ValidArgsFunction` with `ShellCompDirectiveNoFileComp` to turn off file completion on a per-argument basis|\n|Completion of flag names without the `-` prefix having been typed|Flag names are only completed if the user has typed the first `-`|\n`cmd.MarkZshCompPositionalArgumentFile(pos, []string{})` used to turn on file completion on a per-argument position basis|File completion for all arguments by default; `cmd.MarkZshCompPositionalArgumentFile()` is **deprecated** and silently ignored|\n|`cmd.MarkZshCompPositionalArgumentFile(pos, glob[])` used to turn on file completion **with glob filtering** on a per-argument position basis (zsh-specific)|`cmd.MarkZshCompPositionalArgumentFile()` is **deprecated** and silently ignored; use `ValidArgsFunction` with `ShellCompDirectiveFilterFileExt` for file **extension** filtering (not full glob filtering)|\n|`cmd.MarkZshCompPositionalArgumentWords(pos, words[])` used to provide completion choices on a per-argument position basis (zsh-specific)|`cmd.MarkZshCompPositionalArgumentWords()` is **deprecated** and silently ignored; use `ValidArgsFunction` to achieve the same behavior|\n\n**Flag-value completion**\n\n|Old behavior|New behavior|\n|---|---|\n|No file completion by default (opposite of bash)|File completion by default; use `RegisterFlagCompletionFunc()` with `ShellCompDirectiveNoFileComp` to turn off file completion|\n|`cmd.MarkFlagFilename(flag, []string{})` and similar used to turn on file completion|File completion by default; `cmd.MarkFlagFilename(flag, []string{})` no longer needed in this context and silently ignored|\n|`cmd.MarkFlagFilename(flag, glob[])`  used to turn on file completion **with glob filtering** (syntax of `[]string{\"*.yaml\", \"*.yml\"}` incompatible with bash)|Will continue to work, however, support for bash syntax is added and should be used instead so as to work for all shells (`[]string{\"yaml\", \"yml\"}`)|\n|`cmd.MarkFlagDirname(flag)` only completes directories (zsh-specific)|Has been added for all shells|\n|Completion of a flag name does not repeat, unless flag is of type `*Array` or `*Slice` (not supported by bash)|Retained for `zsh` and added to `fish`|\n|Completion of a flag name does not provide the `=` form (unlike bash)|Retained for `zsh` and added to `fish`|\n\n**Improvements**\n\n* Custom completion support (`ValidArgsFunction` and `RegisterFlagCompletionFunc()`)\n* File completion by default if no other completions found\n* Handling of required flags\n* File extension filtering no longer mutually exclusive with bash usage\n* Completion of directory names *within* another directory\n* Support for `=` form of flags\n"
  },
  {
    "path": "vendor/github.com/spf13/jwalterweatherman/.gitignore",
    "content": "# Compiled Object files, Static and Dynamic libs (Shared Objects)\n*.o\n*.a\n*.so\n\n# Folders\n_obj\n_test\n\n# Architecture specific extensions/prefixes\n*.[568vq]\n[568vq].out\n\n*.cgo1.go\n*.cgo2.c\n_cgo_defun.c\n_cgo_gotypes.go\n_cgo_export.*\n\n_testmain.go\n\n*.exe\n"
  },
  {
    "path": "vendor/github.com/spf13/jwalterweatherman/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Steve Francia\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "vendor/github.com/spf13/jwalterweatherman/README.md",
    "content": "jWalterWeatherman\n=================\n\nSeamless printing to the terminal (stdout) and logging to a io.Writer\n(file) that’s as easy to use as fmt.Println.\n\n![and_that__s_why_you_always_leave_a_note_by_jonnyetc-d57q7um](https://cloud.githubusercontent.com/assets/173412/11002937/ccd01654-847d-11e5-828e-12ebaf582eaf.jpg)\nGraphic by [JonnyEtc](http://jonnyetc.deviantart.com/art/And-That-s-Why-You-Always-Leave-a-Note-315311422)\n\nJWW is primarily a wrapper around the excellent standard log library. It\nprovides a few advantages over using the standard log library alone.\n\n1. Ready to go out of the box. \n2. One library for both printing to the terminal and logging (to files).\n3. Really easy to log to either a temp file or a file you specify.\n\n\nI really wanted a very straightforward library that could seamlessly do\nthe following things.\n\n1. Replace all the println, printf, etc statements thoughout my code with\n   something more useful\n2. Allow the user to easily control what levels are printed to stdout\n3. Allow the user to easily control what levels are logged\n4. Provide an easy mechanism (like fmt.Println) to print info to the user\n   which can be easily logged as well \n5. Due to 2 & 3 provide easy verbose mode for output and logs\n6. Not have any unnecessary initialization cruft. Just use it.\n\n# Usage\n\n## Step 1. Use it\nPut calls throughout your source based on type of feedback.\nNo initialization or setup needs to happen. Just start calling things.\n\nAvailable Loggers are:\n\n * TRACE\n * DEBUG\n * INFO\n * WARN\n * ERROR\n * CRITICAL\n * FATAL\n\nThese each are loggers based on the log standard library and follow the\nstandard usage. Eg.\n\n```go\n    import (\n        jww \"github.com/spf13/jwalterweatherman\"\n    )\n\n    ...\n\n    if err != nil {\n\n        // This is a pretty serious error and the user should know about\n        // it. It will be printed to the terminal as well as logged under the\n        // default thresholds.\n\n        jww.ERROR.Println(err)\n    }\n\n    if err2 != nil {\n        // This error isn’t going to materially change the behavior of the\n        // application, but it’s something that may not be what the user\n        // expects. Under the default thresholds, Warn will be logged, but\n        // not printed to the terminal. \n\n        jww.WARN.Println(err2)\n    }\n\n    // Information that’s relevant to what’s happening, but not very\n    // important for the user. Under the default thresholds this will be\n    // discarded.\n\n    jww.INFO.Printf(\"information %q\", response)\n\n```\n\nNOTE: You can also use the library in a non-global setting by creating an instance of a Notebook:\n\n```go\nnotepad = jww.NewNotepad(jww.LevelInfo, jww.LevelTrace, os.Stdout, ioutil.Discard, \"\", log.Ldate|log.Ltime)\nnotepad.WARN.Println(\"Some warning\"\")\n```\n\n_Why 7 levels?_\n\nMaybe you think that 7 levels are too much for any application... and you\nare probably correct. Just because there are seven levels doesn’t mean\nthat you should be using all 7 levels. Pick the right set for your needs.\nRemember they only have to mean something to your project.\n\n## Step 2. Optionally configure JWW\n\nUnder the default thresholds :\n\n * Debug, Trace & Info goto /dev/null\n * Warn and above is logged (when a log file/io.Writer is provided)\n * Error and above is printed to the terminal (stdout)\n\n### Changing the thresholds\n\nThe threshold can be changed at any time, but will only affect calls that\nexecute after the change was made.\n\nThis is very useful if your application has a verbose mode. Of course you\ncan decide what verbose means to you or even have multiple levels of\nverbosity.\n\n\n```go\n    import (\n        jww \"github.com/spf13/jwalterweatherman\"\n    )\n\n    if Verbose {\n        jww.SetLogThreshold(jww.LevelTrace)\n        jww.SetStdoutThreshold(jww.LevelInfo)\n    }\n```\n\nNote that JWW's own internal output uses log levels as well, so set the log\nlevel before making any other calls if you want to see what it's up to.\n\n\n### Setting a log file\n\nJWW can log to any `io.Writer`:\n\n\n```go\n\n    jww.SetLogOutput(customWriter) \n\n```\n\n\n# More information\n\nThis is an early release. I’ve been using it for a while and this is the\nthird interface I’ve tried. I like this one pretty well, but no guarantees\nthat it won’t change a bit.\n\nI wrote this for use in [hugo](https://gohugo.io). If you are looking\nfor a static website engine that’s super fast please checkout Hugo.\n"
  },
  {
    "path": "vendor/github.com/spf13/jwalterweatherman/default_notepad.go",
    "content": "// Copyright © 2016 Steve Francia <spf@spf13.com>.\n//\n// Use of this source code is governed by an MIT-style\n// license that can be found in the LICENSE file.\n\npackage jwalterweatherman\n\nimport (\n\t\"io\"\n\t\"io/ioutil\"\n\t\"log\"\n\t\"os\"\n)\n\nvar (\n\tTRACE    *log.Logger\n\tDEBUG    *log.Logger\n\tINFO     *log.Logger\n\tWARN     *log.Logger\n\tERROR    *log.Logger\n\tCRITICAL *log.Logger\n\tFATAL    *log.Logger\n\n\tLOG      *log.Logger\n\tFEEDBACK *Feedback\n\n\tdefaultNotepad *Notepad\n)\n\nfunc reloadDefaultNotepad() {\n\tTRACE = defaultNotepad.TRACE\n\tDEBUG = defaultNotepad.DEBUG\n\tINFO = defaultNotepad.INFO\n\tWARN = defaultNotepad.WARN\n\tERROR = defaultNotepad.ERROR\n\tCRITICAL = defaultNotepad.CRITICAL\n\tFATAL = defaultNotepad.FATAL\n\n\tLOG = defaultNotepad.LOG\n\tFEEDBACK = defaultNotepad.FEEDBACK\n}\n\nfunc init() {\n\tdefaultNotepad = NewNotepad(LevelError, LevelWarn, os.Stdout, ioutil.Discard, \"\", log.Ldate|log.Ltime)\n\treloadDefaultNotepad()\n}\n\n// SetLogThreshold set the log threshold for the default notepad. Trace by default.\nfunc SetLogThreshold(threshold Threshold) {\n\tdefaultNotepad.SetLogThreshold(threshold)\n\treloadDefaultNotepad()\n}\n\n// SetLogOutput set the log output for the default notepad. Discarded by default.\nfunc SetLogOutput(handle io.Writer) {\n\tdefaultNotepad.SetLogOutput(handle)\n\treloadDefaultNotepad()\n}\n\n// SetStdoutThreshold set the standard output threshold for the default notepad.\n// Info by default.\nfunc SetStdoutThreshold(threshold Threshold) {\n\tdefaultNotepad.SetStdoutThreshold(threshold)\n\treloadDefaultNotepad()\n}\n\n// SetPrefix set the prefix for the default logger. Empty by default.\nfunc SetPrefix(prefix string) {\n\tdefaultNotepad.SetPrefix(prefix)\n\treloadDefaultNotepad()\n}\n\n// SetFlags set the flags for the default logger. \"log.Ldate | log.Ltime\" by default.\nfunc SetFlags(flags int) {\n\tdefaultNotepad.SetFlags(flags)\n\treloadDefaultNotepad()\n}\n\n// Level returns the current global log threshold.\nfunc LogThreshold() Threshold {\n\treturn defaultNotepad.logThreshold\n}\n\n// Level returns the current global output threshold.\nfunc StdoutThreshold() Threshold {\n\treturn defaultNotepad.stdoutThreshold\n}\n\n// GetStdoutThreshold returns the defined Treshold for the log logger.\nfunc GetLogThreshold() Threshold {\n\treturn defaultNotepad.GetLogThreshold()\n}\n\n// GetStdoutThreshold returns the Treshold for the stdout logger.\nfunc GetStdoutThreshold() Threshold {\n\treturn defaultNotepad.GetStdoutThreshold()\n}\n\n// LogCountForLevel returns the number of log invocations for a given threshold.\nfunc LogCountForLevel(l Threshold) uint64 {\n\treturn defaultNotepad.LogCountForLevel(l)\n}\n\n// LogCountForLevelsGreaterThanorEqualTo returns the number of log invocations\n// greater than or equal to a given threshold.\nfunc LogCountForLevelsGreaterThanorEqualTo(threshold Threshold) uint64 {\n\treturn defaultNotepad.LogCountForLevelsGreaterThanorEqualTo(threshold)\n}\n\n// ResetLogCounters resets the invocation counters for all levels.\nfunc ResetLogCounters() {\n\tdefaultNotepad.ResetLogCounters()\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/jwalterweatherman/go.mod",
    "content": "module github.com/spf13/jwalterweatherman\n"
  },
  {
    "path": "vendor/github.com/spf13/jwalterweatherman/log_counter.go",
    "content": "// Copyright © 2016 Steve Francia <spf@spf13.com>.\n//\n// Use of this source code is governed by an MIT-style\n// license that can be found in the LICENSE file.\n\npackage jwalterweatherman\n\nimport (\n\t\"sync/atomic\"\n)\n\ntype logCounter struct {\n\tcounter uint64\n}\n\nfunc (c *logCounter) incr() {\n\tatomic.AddUint64(&c.counter, 1)\n}\n\nfunc (c *logCounter) resetCounter() {\n\tatomic.StoreUint64(&c.counter, 0)\n}\n\nfunc (c *logCounter) getCount() uint64 {\n\treturn atomic.LoadUint64(&c.counter)\n}\n\nfunc (c *logCounter) Write(p []byte) (n int, err error) {\n\tc.incr()\n\treturn len(p), nil\n}\n\n// LogCountForLevel returns the number of log invocations for a given threshold.\nfunc (n *Notepad) LogCountForLevel(l Threshold) uint64 {\n\treturn n.logCounters[l].getCount()\n}\n\n// LogCountForLevelsGreaterThanorEqualTo returns the number of log invocations\n// greater than or equal to a given threshold.\nfunc (n *Notepad) LogCountForLevelsGreaterThanorEqualTo(threshold Threshold) uint64 {\n\tvar cnt uint64\n\n\tfor i := int(threshold); i < len(n.logCounters); i++ {\n\t\tcnt += n.LogCountForLevel(Threshold(i))\n\t}\n\n\treturn cnt\n}\n\n// ResetLogCounters resets the invocation counters for all levels.\nfunc (n *Notepad) ResetLogCounters() {\n\tfor _, np := range n.logCounters {\n\t\tnp.resetCounter()\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/jwalterweatherman/notepad.go",
    "content": "// Copyright © 2016 Steve Francia <spf@spf13.com>.\n//\n// Use of this source code is governed by an MIT-style\n// license that can be found in the LICENSE file.\n\npackage jwalterweatherman\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n)\n\ntype Threshold int\n\nfunc (t Threshold) String() string {\n\treturn prefixes[t]\n}\n\nconst (\n\tLevelTrace Threshold = iota\n\tLevelDebug\n\tLevelInfo\n\tLevelWarn\n\tLevelError\n\tLevelCritical\n\tLevelFatal\n)\n\nvar prefixes map[Threshold]string = map[Threshold]string{\n\tLevelTrace:    \"TRACE\",\n\tLevelDebug:    \"DEBUG\",\n\tLevelInfo:     \"INFO\",\n\tLevelWarn:     \"WARN\",\n\tLevelError:    \"ERROR\",\n\tLevelCritical: \"CRITICAL\",\n\tLevelFatal:    \"FATAL\",\n}\n\n// Notepad is where you leave a note!\ntype Notepad struct {\n\tTRACE    *log.Logger\n\tDEBUG    *log.Logger\n\tINFO     *log.Logger\n\tWARN     *log.Logger\n\tERROR    *log.Logger\n\tCRITICAL *log.Logger\n\tFATAL    *log.Logger\n\n\tLOG      *log.Logger\n\tFEEDBACK *Feedback\n\n\tloggers         [7]**log.Logger\n\tlogHandle       io.Writer\n\toutHandle       io.Writer\n\tlogThreshold    Threshold\n\tstdoutThreshold Threshold\n\tprefix          string\n\tflags           int\n\n\t// One per Threshold\n\tlogCounters [7]*logCounter\n}\n\n// NewNotepad create a new notepad.\nfunc NewNotepad(outThreshold Threshold, logThreshold Threshold, outHandle, logHandle io.Writer, prefix string, flags int) *Notepad {\n\tn := &Notepad{}\n\n\tn.loggers = [7]**log.Logger{&n.TRACE, &n.DEBUG, &n.INFO, &n.WARN, &n.ERROR, &n.CRITICAL, &n.FATAL}\n\tn.outHandle = outHandle\n\tn.logHandle = logHandle\n\tn.stdoutThreshold = outThreshold\n\tn.logThreshold = logThreshold\n\n\tif len(prefix) != 0 {\n\t\tn.prefix = \"[\" + prefix + \"] \"\n\t} else {\n\t\tn.prefix = \"\"\n\t}\n\n\tn.flags = flags\n\n\tn.LOG = log.New(n.logHandle,\n\t\t\"LOG:   \",\n\t\tn.flags)\n\tn.FEEDBACK = &Feedback{out: log.New(outHandle, \"\", 0), log: n.LOG}\n\n\tn.init()\n\treturn n\n}\n\n// init creates the loggers for each level depending on the notepad thresholds.\nfunc (n *Notepad) init() {\n\tlogAndOut := io.MultiWriter(n.outHandle, n.logHandle)\n\n\tfor t, logger := range n.loggers {\n\t\tthreshold := Threshold(t)\n\t\tcounter := &logCounter{}\n\t\tn.logCounters[t] = counter\n\t\tprefix := n.prefix + threshold.String() + \" \"\n\n\t\tswitch {\n\t\tcase threshold >= n.logThreshold && threshold >= n.stdoutThreshold:\n\t\t\t*logger = log.New(io.MultiWriter(counter, logAndOut), prefix, n.flags)\n\n\t\tcase threshold >= n.logThreshold:\n\t\t\t*logger = log.New(io.MultiWriter(counter, n.logHandle), prefix, n.flags)\n\n\t\tcase threshold >= n.stdoutThreshold:\n\t\t\t*logger = log.New(io.MultiWriter(counter, n.outHandle), prefix, n.flags)\n\n\t\tdefault:\n\t\t\t// counter doesn't care about prefix and flags, so don't use them\n\t\t\t// for performance.\n\t\t\t*logger = log.New(counter, \"\", 0)\n\t\t}\n\t}\n}\n\n// SetLogThreshold changes the threshold above which messages are written to the\n// log file.\nfunc (n *Notepad) SetLogThreshold(threshold Threshold) {\n\tn.logThreshold = threshold\n\tn.init()\n}\n\n// SetLogOutput changes the file where log messages are written.\nfunc (n *Notepad) SetLogOutput(handle io.Writer) {\n\tn.logHandle = handle\n\tn.init()\n}\n\n// GetStdoutThreshold returns the defined Treshold for the log logger.\nfunc (n *Notepad) GetLogThreshold() Threshold {\n\treturn n.logThreshold\n}\n\n// SetStdoutThreshold changes the threshold above which messages are written to the\n// standard output.\nfunc (n *Notepad) SetStdoutThreshold(threshold Threshold) {\n\tn.stdoutThreshold = threshold\n\tn.init()\n}\n\n// GetStdoutThreshold returns the Treshold for the stdout logger.\nfunc (n *Notepad) GetStdoutThreshold() Threshold {\n\treturn n.stdoutThreshold\n}\n\n// SetPrefix changes the prefix used by the notepad. Prefixes are displayed between\n// brackets at the beginning of the line. An empty prefix won't be displayed at all.\nfunc (n *Notepad) SetPrefix(prefix string) {\n\tif len(prefix) != 0 {\n\t\tn.prefix = \"[\" + prefix + \"] \"\n\t} else {\n\t\tn.prefix = \"\"\n\t}\n\tn.init()\n}\n\n// SetFlags choose which flags the logger will display (after prefix and message\n// level). See the package log for more informations on this.\nfunc (n *Notepad) SetFlags(flags int) {\n\tn.flags = flags\n\tn.init()\n}\n\n// Feedback writes plainly to the outHandle while\n// logging with the standard extra information (date, file, etc).\ntype Feedback struct {\n\tout *log.Logger\n\tlog *log.Logger\n}\n\nfunc (fb *Feedback) Println(v ...interface{}) {\n\tfb.output(fmt.Sprintln(v...))\n}\n\nfunc (fb *Feedback) Printf(format string, v ...interface{}) {\n\tfb.output(fmt.Sprintf(format, v...))\n}\n\nfunc (fb *Feedback) Print(v ...interface{}) {\n\tfb.output(fmt.Sprint(v...))\n}\n\nfunc (fb *Feedback) output(s string) {\n\tif fb.out != nil {\n\t\tfb.out.Output(2, s)\n\t}\n\tif fb.log != nil {\n\t\tfb.log.Output(2, s)\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/.gitignore",
    "content": ".idea/*\n\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/.travis.yml",
    "content": "sudo: false\n\nlanguage: go\n\ngo:\n  - 1.9.x\n  - 1.10.x\n  - 1.11.x\n  - tip\n\nmatrix:\n  allow_failures:\n    - go: tip\n\ninstall:\n  - go get golang.org/x/lint/golint\n  - export PATH=$GOPATH/bin:$PATH\n  - go install ./...\n\nscript:\n  - verify/all.sh -v\n  - go test ./...\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/LICENSE",
    "content": "Copyright (c) 2012 Alex Ogier. All rights reserved.\nCopyright (c) 2012 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n   * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n   * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n   * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/README.md",
    "content": "[![Build Status](https://travis-ci.org/spf13/pflag.svg?branch=master)](https://travis-ci.org/spf13/pflag)\n[![Go Report Card](https://goreportcard.com/badge/github.com/spf13/pflag)](https://goreportcard.com/report/github.com/spf13/pflag)\n[![GoDoc](https://godoc.org/github.com/spf13/pflag?status.svg)](https://godoc.org/github.com/spf13/pflag)\n\n## Description\n\npflag is a drop-in replacement for Go's flag package, implementing\nPOSIX/GNU-style --flags.\n\npflag is compatible with the [GNU extensions to the POSIX recommendations\nfor command-line options][1]. For a more precise description, see the\n\"Command-line flag syntax\" section below.\n\n[1]: http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html\n\npflag is available under the same style of BSD license as the Go language,\nwhich can be found in the LICENSE file.\n\n## Installation\n\npflag is available using the standard `go get` command.\n\nInstall by running:\n\n    go get github.com/spf13/pflag\n\nRun tests by running:\n\n    go test github.com/spf13/pflag\n\n## Usage\n\npflag is a drop-in replacement of Go's native flag package. If you import\npflag under the name \"flag\" then all code should continue to function\nwith no changes.\n\n``` go\nimport flag \"github.com/spf13/pflag\"\n```\n\nThere is one exception to this: if you directly instantiate the Flag struct\nthere is one more field \"Shorthand\" that you will need to set.\nMost code never instantiates this struct directly, and instead uses\nfunctions such as String(), BoolVar(), and Var(), and is therefore\nunaffected.\n\nDefine flags using flag.String(), Bool(), Int(), etc.\n\nThis declares an integer flag, -flagname, stored in the pointer ip, with type *int.\n\n``` go\nvar ip *int = flag.Int(\"flagname\", 1234, \"help message for flagname\")\n```\n\nIf you like, you can bind the flag to a variable using the Var() functions.\n\n``` go\nvar flagvar int\nfunc init() {\n    flag.IntVar(&flagvar, \"flagname\", 1234, \"help message for flagname\")\n}\n```\n\nOr you can create custom flags that satisfy the Value interface (with\npointer receivers) and couple them to flag parsing by\n\n``` go\nflag.Var(&flagVal, \"name\", \"help message for flagname\")\n```\n\nFor such flags, the default value is just the initial value of the variable.\n\nAfter all flags are defined, call\n\n``` go\nflag.Parse()\n```\n\nto parse the command line into the defined flags.\n\nFlags may then be used directly. If you're using the flags themselves,\nthey are all pointers; if you bind to variables, they're values.\n\n``` go\nfmt.Println(\"ip has value \", *ip)\nfmt.Println(\"flagvar has value \", flagvar)\n```\n\nThere are helper functions available to get the value stored in a Flag if you have a FlagSet but find\nit difficult to keep up with all of the pointers in your code.\nIf you have a pflag.FlagSet with a flag called 'flagname' of type int you\ncan use GetInt() to get the int value. But notice that 'flagname' must exist\nand it must be an int. GetString(\"flagname\") will fail.\n\n``` go\ni, err := flagset.GetInt(\"flagname\")\n```\n\nAfter parsing, the arguments after the flag are available as the\nslice flag.Args() or individually as flag.Arg(i).\nThe arguments are indexed from 0 through flag.NArg()-1.\n\nThe pflag package also defines some new functions that are not in flag,\nthat give one-letter shorthands for flags. You can use these by appending\n'P' to the name of any function that defines a flag.\n\n``` go\nvar ip = flag.IntP(\"flagname\", \"f\", 1234, \"help message\")\nvar flagvar bool\nfunc init() {\n\tflag.BoolVarP(&flagvar, \"boolname\", \"b\", true, \"help message\")\n}\nflag.VarP(&flagVal, \"varname\", \"v\", \"help message\")\n```\n\nShorthand letters can be used with single dashes on the command line.\nBoolean shorthand flags can be combined with other shorthand flags.\n\nThe default set of command-line flags is controlled by\ntop-level functions.  The FlagSet type allows one to define\nindependent sets of flags, such as to implement subcommands\nin a command-line interface. The methods of FlagSet are\nanalogous to the top-level functions for the command-line\nflag set.\n\n## Setting no option default values for flags\n\nAfter you create a flag it is possible to set the pflag.NoOptDefVal for\nthe given flag. Doing this changes the meaning of the flag slightly. If\na flag has a NoOptDefVal and the flag is set on the command line without\nan option the flag will be set to the NoOptDefVal. For example given:\n\n``` go\nvar ip = flag.IntP(\"flagname\", \"f\", 1234, \"help message\")\nflag.Lookup(\"flagname\").NoOptDefVal = \"4321\"\n```\n\nWould result in something like\n\n| Parsed Arguments | Resulting Value |\n| -------------    | -------------   |\n| --flagname=1357  | ip=1357         |\n| --flagname       | ip=4321         |\n| [nothing]        | ip=1234         |\n\n## Command line flag syntax\n\n```\n--flag    // boolean flags, or flags with no option default values\n--flag x  // only on flags without a default value\n--flag=x\n```\n\nUnlike the flag package, a single dash before an option means something\ndifferent than a double dash. Single dashes signify a series of shorthand\nletters for flags. All but the last shorthand letter must be boolean flags\nor a flag with a default value\n\n```\n// boolean or flags where the 'no option default value' is set\n-f\n-f=true\n-abc\nbut\n-b true is INVALID\n\n// non-boolean and flags without a 'no option default value'\n-n 1234\n-n=1234\n-n1234\n\n// mixed\n-abcs \"hello\"\n-absd=\"hello\"\n-abcs1234\n```\n\nFlag parsing stops after the terminator \"--\". Unlike the flag package,\nflags can be interspersed with arguments anywhere on the command line\nbefore this terminator.\n\nInteger flags accept 1234, 0664, 0x1234 and may be negative.\nBoolean flags (in their long form) accept 1, 0, t, f, true, false,\nTRUE, FALSE, True, False.\nDuration flags accept any input valid for time.ParseDuration.\n\n## Mutating or \"Normalizing\" Flag names\n\nIt is possible to set a custom flag name 'normalization function.' It allows flag names to be mutated both when created in the code and when used on the command line to some 'normalized' form. The 'normalized' form is used for comparison. Two examples of using the custom normalization func follow.\n\n**Example #1**: You want -, _, and . in flags to compare the same. aka --my-flag == --my_flag == --my.flag\n\n``` go\nfunc wordSepNormalizeFunc(f *pflag.FlagSet, name string) pflag.NormalizedName {\n\tfrom := []string{\"-\", \"_\"}\n\tto := \".\"\n\tfor _, sep := range from {\n\t\tname = strings.Replace(name, sep, to, -1)\n\t}\n\treturn pflag.NormalizedName(name)\n}\n\nmyFlagSet.SetNormalizeFunc(wordSepNormalizeFunc)\n```\n\n**Example #2**: You want to alias two flags. aka --old-flag-name == --new-flag-name\n\n``` go\nfunc aliasNormalizeFunc(f *pflag.FlagSet, name string) pflag.NormalizedName {\n\tswitch name {\n\tcase \"old-flag-name\":\n\t\tname = \"new-flag-name\"\n\t\tbreak\n\t}\n\treturn pflag.NormalizedName(name)\n}\n\nmyFlagSet.SetNormalizeFunc(aliasNormalizeFunc)\n```\n\n## Deprecating a flag or its shorthand\nIt is possible to deprecate a flag, or just its shorthand. Deprecating a flag/shorthand hides it from help text and prints a usage message when the deprecated flag/shorthand is used.\n\n**Example #1**: You want to deprecate a flag named \"badflag\" as well as inform the users what flag they should use instead.\n```go\n// deprecate a flag by specifying its name and a usage message\nflags.MarkDeprecated(\"badflag\", \"please use --good-flag instead\")\n```\nThis hides \"badflag\" from help text, and prints `Flag --badflag has been deprecated, please use --good-flag instead` when \"badflag\" is used.\n\n**Example #2**: You want to keep a flag name \"noshorthandflag\" but deprecate its shortname \"n\".\n```go\n// deprecate a flag shorthand by specifying its flag name and a usage message\nflags.MarkShorthandDeprecated(\"noshorthandflag\", \"please use --noshorthandflag only\")\n```\nThis hides the shortname \"n\" from help text, and prints `Flag shorthand -n has been deprecated, please use --noshorthandflag only` when the shorthand \"n\" is used.\n\nNote that usage message is essential here, and it should not be empty.\n\n## Hidden flags\nIt is possible to mark a flag as hidden, meaning it will still function as normal, however will not show up in usage/help text.\n\n**Example**: You have a flag named \"secretFlag\" that you need for internal use only and don't want it showing up in help text, or for its usage text to be available.\n```go\n// hide a flag by specifying its name\nflags.MarkHidden(\"secretFlag\")\n```\n\n## Disable sorting of flags\n`pflag` allows you to disable sorting of flags for help and usage message.\n\n**Example**:\n```go\nflags.BoolP(\"verbose\", \"v\", false, \"verbose output\")\nflags.String(\"coolflag\", \"yeaah\", \"it's really cool flag\")\nflags.Int(\"usefulflag\", 777, \"sometimes it's very useful\")\nflags.SortFlags = false\nflags.PrintDefaults()\n```\n**Output**:\n```\n  -v, --verbose           verbose output\n      --coolflag string   it's really cool flag (default \"yeaah\")\n      --usefulflag int    sometimes it's very useful (default 777)\n```\n\n\n## Supporting Go flags when using pflag\nIn order to support flags defined using Go's `flag` package, they must be added to the `pflag` flagset. This is usually necessary\nto support flags defined by third-party dependencies (e.g. `golang/glog`).\n\n**Example**: You want to add the Go flags to the `CommandLine` flagset\n```go\nimport (\n\tgoflag \"flag\"\n\tflag \"github.com/spf13/pflag\"\n)\n\nvar ip *int = flag.Int(\"flagname\", 1234, \"help message for flagname\")\n\nfunc main() {\n\tflag.CommandLine.AddGoFlagSet(goflag.CommandLine)\n\tflag.Parse()\n}\n```\n\n## More info\n\nYou can see the full reference documentation of the pflag package\n[at godoc.org][3], or through go's standard documentation system by\nrunning `godoc -http=:6060` and browsing to\n[http://localhost:6060/pkg/github.com/spf13/pflag][2] after\ninstallation.\n\n[2]: http://localhost:6060/pkg/github.com/spf13/pflag\n[3]: http://godoc.org/github.com/spf13/pflag\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/bool.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// optional interface to indicate boolean flags that can be\n// supplied without \"=value\" text\ntype boolFlag interface {\n\tValue\n\tIsBoolFlag() bool\n}\n\n// -- bool Value\ntype boolValue bool\n\nfunc newBoolValue(val bool, p *bool) *boolValue {\n\t*p = val\n\treturn (*boolValue)(p)\n}\n\nfunc (b *boolValue) Set(s string) error {\n\tv, err := strconv.ParseBool(s)\n\t*b = boolValue(v)\n\treturn err\n}\n\nfunc (b *boolValue) Type() string {\n\treturn \"bool\"\n}\n\nfunc (b *boolValue) String() string { return strconv.FormatBool(bool(*b)) }\n\nfunc (b *boolValue) IsBoolFlag() bool { return true }\n\nfunc boolConv(sval string) (interface{}, error) {\n\treturn strconv.ParseBool(sval)\n}\n\n// GetBool return the bool value of a flag with the given name\nfunc (f *FlagSet) GetBool(name string) (bool, error) {\n\tval, err := f.getFlagType(name, \"bool\", boolConv)\n\tif err != nil {\n\t\treturn false, err\n\t}\n\treturn val.(bool), nil\n}\n\n// BoolVar defines a bool flag with specified name, default value, and usage string.\n// The argument p points to a bool variable in which to store the value of the flag.\nfunc (f *FlagSet) BoolVar(p *bool, name string, value bool, usage string) {\n\tf.BoolVarP(p, name, \"\", value, usage)\n}\n\n// BoolVarP is like BoolVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) BoolVarP(p *bool, name, shorthand string, value bool, usage string) {\n\tflag := f.VarPF(newBoolValue(value, p), name, shorthand, usage)\n\tflag.NoOptDefVal = \"true\"\n}\n\n// BoolVar defines a bool flag with specified name, default value, and usage string.\n// The argument p points to a bool variable in which to store the value of the flag.\nfunc BoolVar(p *bool, name string, value bool, usage string) {\n\tBoolVarP(p, name, \"\", value, usage)\n}\n\n// BoolVarP is like BoolVar, but accepts a shorthand letter that can be used after a single dash.\nfunc BoolVarP(p *bool, name, shorthand string, value bool, usage string) {\n\tflag := CommandLine.VarPF(newBoolValue(value, p), name, shorthand, usage)\n\tflag.NoOptDefVal = \"true\"\n}\n\n// Bool defines a bool flag with specified name, default value, and usage string.\n// The return value is the address of a bool variable that stores the value of the flag.\nfunc (f *FlagSet) Bool(name string, value bool, usage string) *bool {\n\treturn f.BoolP(name, \"\", value, usage)\n}\n\n// BoolP is like Bool, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) BoolP(name, shorthand string, value bool, usage string) *bool {\n\tp := new(bool)\n\tf.BoolVarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Bool defines a bool flag with specified name, default value, and usage string.\n// The return value is the address of a bool variable that stores the value of the flag.\nfunc Bool(name string, value bool, usage string) *bool {\n\treturn BoolP(name, \"\", value, usage)\n}\n\n// BoolP is like Bool, but accepts a shorthand letter that can be used after a single dash.\nfunc BoolP(name, shorthand string, value bool, usage string) *bool {\n\tb := CommandLine.BoolP(name, shorthand, value, usage)\n\treturn b\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/bool_slice.go",
    "content": "package pflag\n\nimport (\n\t\"io\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// -- boolSlice Value\ntype boolSliceValue struct {\n\tvalue   *[]bool\n\tchanged bool\n}\n\nfunc newBoolSliceValue(val []bool, p *[]bool) *boolSliceValue {\n\tbsv := new(boolSliceValue)\n\tbsv.value = p\n\t*bsv.value = val\n\treturn bsv\n}\n\n// Set converts, and assigns, the comma-separated boolean argument string representation as the []bool value of this flag.\n// If Set is called on a flag that already has a []bool assigned, the newly converted values will be appended.\nfunc (s *boolSliceValue) Set(val string) error {\n\n\t// remove all quote characters\n\trmQuote := strings.NewReplacer(`\"`, \"\", `'`, \"\", \"`\", \"\")\n\n\t// read flag arguments with CSV parser\n\tboolStrSlice, err := readAsCSV(rmQuote.Replace(val))\n\tif err != nil && err != io.EOF {\n\t\treturn err\n\t}\n\n\t// parse boolean values into slice\n\tout := make([]bool, 0, len(boolStrSlice))\n\tfor _, boolStr := range boolStrSlice {\n\t\tb, err := strconv.ParseBool(strings.TrimSpace(boolStr))\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tout = append(out, b)\n\t}\n\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\t*s.value = append(*s.value, out...)\n\t}\n\n\ts.changed = true\n\n\treturn nil\n}\n\n// Type returns a string that uniquely represents this flag's type.\nfunc (s *boolSliceValue) Type() string {\n\treturn \"boolSlice\"\n}\n\n// String defines a \"native\" format for this boolean slice flag value.\nfunc (s *boolSliceValue) String() string {\n\n\tboolStrSlice := make([]string, len(*s.value))\n\tfor i, b := range *s.value {\n\t\tboolStrSlice[i] = strconv.FormatBool(b)\n\t}\n\n\tout, _ := writeAsCSV(boolStrSlice)\n\n\treturn \"[\" + out + \"]\"\n}\n\nfunc (s *boolSliceValue) fromString(val string) (bool, error) {\n\treturn strconv.ParseBool(val)\n}\n\nfunc (s *boolSliceValue) toString(val bool) string {\n\treturn strconv.FormatBool(val)\n}\n\nfunc (s *boolSliceValue) Append(val string) error {\n\ti, err := s.fromString(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\t*s.value = append(*s.value, i)\n\treturn nil\n}\n\nfunc (s *boolSliceValue) Replace(val []string) error {\n\tout := make([]bool, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i], err = s.fromString(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *boolSliceValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = s.toString(d)\n\t}\n\treturn out\n}\n\nfunc boolSliceConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// Empty string would cause a slice with one (empty) entry\n\tif len(val) == 0 {\n\t\treturn []bool{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make([]bool, len(ss))\n\tfor i, t := range ss {\n\t\tvar err error\n\t\tout[i], err = strconv.ParseBool(t)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn out, nil\n}\n\n// GetBoolSlice returns the []bool value of a flag with the given name.\nfunc (f *FlagSet) GetBoolSlice(name string) ([]bool, error) {\n\tval, err := f.getFlagType(name, \"boolSlice\", boolSliceConv)\n\tif err != nil {\n\t\treturn []bool{}, err\n\t}\n\treturn val.([]bool), nil\n}\n\n// BoolSliceVar defines a boolSlice flag with specified name, default value, and usage string.\n// The argument p points to a []bool variable in which to store the value of the flag.\nfunc (f *FlagSet) BoolSliceVar(p *[]bool, name string, value []bool, usage string) {\n\tf.VarP(newBoolSliceValue(value, p), name, \"\", usage)\n}\n\n// BoolSliceVarP is like BoolSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) BoolSliceVarP(p *[]bool, name, shorthand string, value []bool, usage string) {\n\tf.VarP(newBoolSliceValue(value, p), name, shorthand, usage)\n}\n\n// BoolSliceVar defines a []bool flag with specified name, default value, and usage string.\n// The argument p points to a []bool variable in which to store the value of the flag.\nfunc BoolSliceVar(p *[]bool, name string, value []bool, usage string) {\n\tCommandLine.VarP(newBoolSliceValue(value, p), name, \"\", usage)\n}\n\n// BoolSliceVarP is like BoolSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc BoolSliceVarP(p *[]bool, name, shorthand string, value []bool, usage string) {\n\tCommandLine.VarP(newBoolSliceValue(value, p), name, shorthand, usage)\n}\n\n// BoolSlice defines a []bool flag with specified name, default value, and usage string.\n// The return value is the address of a []bool variable that stores the value of the flag.\nfunc (f *FlagSet) BoolSlice(name string, value []bool, usage string) *[]bool {\n\tp := []bool{}\n\tf.BoolSliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// BoolSliceP is like BoolSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) BoolSliceP(name, shorthand string, value []bool, usage string) *[]bool {\n\tp := []bool{}\n\tf.BoolSliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// BoolSlice defines a []bool flag with specified name, default value, and usage string.\n// The return value is the address of a []bool variable that stores the value of the flag.\nfunc BoolSlice(name string, value []bool, usage string) *[]bool {\n\treturn CommandLine.BoolSliceP(name, \"\", value, usage)\n}\n\n// BoolSliceP is like BoolSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc BoolSliceP(name, shorthand string, value []bool, usage string) *[]bool {\n\treturn CommandLine.BoolSliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/bytes.go",
    "content": "package pflag\n\nimport (\n\t\"encoding/base64\"\n\t\"encoding/hex\"\n\t\"fmt\"\n\t\"strings\"\n)\n\n// BytesHex adapts []byte for use as a flag. Value of flag is HEX encoded\ntype bytesHexValue []byte\n\n// String implements pflag.Value.String.\nfunc (bytesHex bytesHexValue) String() string {\n\treturn fmt.Sprintf(\"%X\", []byte(bytesHex))\n}\n\n// Set implements pflag.Value.Set.\nfunc (bytesHex *bytesHexValue) Set(value string) error {\n\tbin, err := hex.DecodeString(strings.TrimSpace(value))\n\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t*bytesHex = bin\n\n\treturn nil\n}\n\n// Type implements pflag.Value.Type.\nfunc (*bytesHexValue) Type() string {\n\treturn \"bytesHex\"\n}\n\nfunc newBytesHexValue(val []byte, p *[]byte) *bytesHexValue {\n\t*p = val\n\treturn (*bytesHexValue)(p)\n}\n\nfunc bytesHexConv(sval string) (interface{}, error) {\n\n\tbin, err := hex.DecodeString(sval)\n\n\tif err == nil {\n\t\treturn bin, nil\n\t}\n\n\treturn nil, fmt.Errorf(\"invalid string being converted to Bytes: %s %s\", sval, err)\n}\n\n// GetBytesHex return the []byte value of a flag with the given name\nfunc (f *FlagSet) GetBytesHex(name string) ([]byte, error) {\n\tval, err := f.getFlagType(name, \"bytesHex\", bytesHexConv)\n\n\tif err != nil {\n\t\treturn []byte{}, err\n\t}\n\n\treturn val.([]byte), nil\n}\n\n// BytesHexVar defines an []byte flag with specified name, default value, and usage string.\n// The argument p points to an []byte variable in which to store the value of the flag.\nfunc (f *FlagSet) BytesHexVar(p *[]byte, name string, value []byte, usage string) {\n\tf.VarP(newBytesHexValue(value, p), name, \"\", usage)\n}\n\n// BytesHexVarP is like BytesHexVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) BytesHexVarP(p *[]byte, name, shorthand string, value []byte, usage string) {\n\tf.VarP(newBytesHexValue(value, p), name, shorthand, usage)\n}\n\n// BytesHexVar defines an []byte flag with specified name, default value, and usage string.\n// The argument p points to an []byte variable in which to store the value of the flag.\nfunc BytesHexVar(p *[]byte, name string, value []byte, usage string) {\n\tCommandLine.VarP(newBytesHexValue(value, p), name, \"\", usage)\n}\n\n// BytesHexVarP is like BytesHexVar, but accepts a shorthand letter that can be used after a single dash.\nfunc BytesHexVarP(p *[]byte, name, shorthand string, value []byte, usage string) {\n\tCommandLine.VarP(newBytesHexValue(value, p), name, shorthand, usage)\n}\n\n// BytesHex defines an []byte flag with specified name, default value, and usage string.\n// The return value is the address of an []byte variable that stores the value of the flag.\nfunc (f *FlagSet) BytesHex(name string, value []byte, usage string) *[]byte {\n\tp := new([]byte)\n\tf.BytesHexVarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// BytesHexP is like BytesHex, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) BytesHexP(name, shorthand string, value []byte, usage string) *[]byte {\n\tp := new([]byte)\n\tf.BytesHexVarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// BytesHex defines an []byte flag with specified name, default value, and usage string.\n// The return value is the address of an []byte variable that stores the value of the flag.\nfunc BytesHex(name string, value []byte, usage string) *[]byte {\n\treturn CommandLine.BytesHexP(name, \"\", value, usage)\n}\n\n// BytesHexP is like BytesHex, but accepts a shorthand letter that can be used after a single dash.\nfunc BytesHexP(name, shorthand string, value []byte, usage string) *[]byte {\n\treturn CommandLine.BytesHexP(name, shorthand, value, usage)\n}\n\n// BytesBase64 adapts []byte for use as a flag. Value of flag is Base64 encoded\ntype bytesBase64Value []byte\n\n// String implements pflag.Value.String.\nfunc (bytesBase64 bytesBase64Value) String() string {\n\treturn base64.StdEncoding.EncodeToString([]byte(bytesBase64))\n}\n\n// Set implements pflag.Value.Set.\nfunc (bytesBase64 *bytesBase64Value) Set(value string) error {\n\tbin, err := base64.StdEncoding.DecodeString(strings.TrimSpace(value))\n\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t*bytesBase64 = bin\n\n\treturn nil\n}\n\n// Type implements pflag.Value.Type.\nfunc (*bytesBase64Value) Type() string {\n\treturn \"bytesBase64\"\n}\n\nfunc newBytesBase64Value(val []byte, p *[]byte) *bytesBase64Value {\n\t*p = val\n\treturn (*bytesBase64Value)(p)\n}\n\nfunc bytesBase64ValueConv(sval string) (interface{}, error) {\n\n\tbin, err := base64.StdEncoding.DecodeString(sval)\n\tif err == nil {\n\t\treturn bin, nil\n\t}\n\n\treturn nil, fmt.Errorf(\"invalid string being converted to Bytes: %s %s\", sval, err)\n}\n\n// GetBytesBase64 return the []byte value of a flag with the given name\nfunc (f *FlagSet) GetBytesBase64(name string) ([]byte, error) {\n\tval, err := f.getFlagType(name, \"bytesBase64\", bytesBase64ValueConv)\n\n\tif err != nil {\n\t\treturn []byte{}, err\n\t}\n\n\treturn val.([]byte), nil\n}\n\n// BytesBase64Var defines an []byte flag with specified name, default value, and usage string.\n// The argument p points to an []byte variable in which to store the value of the flag.\nfunc (f *FlagSet) BytesBase64Var(p *[]byte, name string, value []byte, usage string) {\n\tf.VarP(newBytesBase64Value(value, p), name, \"\", usage)\n}\n\n// BytesBase64VarP is like BytesBase64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) BytesBase64VarP(p *[]byte, name, shorthand string, value []byte, usage string) {\n\tf.VarP(newBytesBase64Value(value, p), name, shorthand, usage)\n}\n\n// BytesBase64Var defines an []byte flag with specified name, default value, and usage string.\n// The argument p points to an []byte variable in which to store the value of the flag.\nfunc BytesBase64Var(p *[]byte, name string, value []byte, usage string) {\n\tCommandLine.VarP(newBytesBase64Value(value, p), name, \"\", usage)\n}\n\n// BytesBase64VarP is like BytesBase64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc BytesBase64VarP(p *[]byte, name, shorthand string, value []byte, usage string) {\n\tCommandLine.VarP(newBytesBase64Value(value, p), name, shorthand, usage)\n}\n\n// BytesBase64 defines an []byte flag with specified name, default value, and usage string.\n// The return value is the address of an []byte variable that stores the value of the flag.\nfunc (f *FlagSet) BytesBase64(name string, value []byte, usage string) *[]byte {\n\tp := new([]byte)\n\tf.BytesBase64VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// BytesBase64P is like BytesBase64, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) BytesBase64P(name, shorthand string, value []byte, usage string) *[]byte {\n\tp := new([]byte)\n\tf.BytesBase64VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// BytesBase64 defines an []byte flag with specified name, default value, and usage string.\n// The return value is the address of an []byte variable that stores the value of the flag.\nfunc BytesBase64(name string, value []byte, usage string) *[]byte {\n\treturn CommandLine.BytesBase64P(name, \"\", value, usage)\n}\n\n// BytesBase64P is like BytesBase64, but accepts a shorthand letter that can be used after a single dash.\nfunc BytesBase64P(name, shorthand string, value []byte, usage string) *[]byte {\n\treturn CommandLine.BytesBase64P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/count.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- count Value\ntype countValue int\n\nfunc newCountValue(val int, p *int) *countValue {\n\t*p = val\n\treturn (*countValue)(p)\n}\n\nfunc (i *countValue) Set(s string) error {\n\t// \"+1\" means that no specific value was passed, so increment\n\tif s == \"+1\" {\n\t\t*i = countValue(*i + 1)\n\t\treturn nil\n\t}\n\tv, err := strconv.ParseInt(s, 0, 0)\n\t*i = countValue(v)\n\treturn err\n}\n\nfunc (i *countValue) Type() string {\n\treturn \"count\"\n}\n\nfunc (i *countValue) String() string { return strconv.Itoa(int(*i)) }\n\nfunc countConv(sval string) (interface{}, error) {\n\ti, err := strconv.Atoi(sval)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn i, nil\n}\n\n// GetCount return the int value of a flag with the given name\nfunc (f *FlagSet) GetCount(name string) (int, error) {\n\tval, err := f.getFlagType(name, \"count\", countConv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(int), nil\n}\n\n// CountVar defines a count flag with specified name, default value, and usage string.\n// The argument p points to an int variable in which to store the value of the flag.\n// A count flag will add 1 to its value every time it is found on the command line\nfunc (f *FlagSet) CountVar(p *int, name string, usage string) {\n\tf.CountVarP(p, name, \"\", usage)\n}\n\n// CountVarP is like CountVar only take a shorthand for the flag name.\nfunc (f *FlagSet) CountVarP(p *int, name, shorthand string, usage string) {\n\tflag := f.VarPF(newCountValue(0, p), name, shorthand, usage)\n\tflag.NoOptDefVal = \"+1\"\n}\n\n// CountVar like CountVar only the flag is placed on the CommandLine instead of a given flag set\nfunc CountVar(p *int, name string, usage string) {\n\tCommandLine.CountVar(p, name, usage)\n}\n\n// CountVarP is like CountVar only take a shorthand for the flag name.\nfunc CountVarP(p *int, name, shorthand string, usage string) {\n\tCommandLine.CountVarP(p, name, shorthand, usage)\n}\n\n// Count defines a count flag with specified name, default value, and usage string.\n// The return value is the address of an int variable that stores the value of the flag.\n// A count flag will add 1 to its value every time it is found on the command line\nfunc (f *FlagSet) Count(name string, usage string) *int {\n\tp := new(int)\n\tf.CountVarP(p, name, \"\", usage)\n\treturn p\n}\n\n// CountP is like Count only takes a shorthand for the flag name.\nfunc (f *FlagSet) CountP(name, shorthand string, usage string) *int {\n\tp := new(int)\n\tf.CountVarP(p, name, shorthand, usage)\n\treturn p\n}\n\n// Count defines a count flag with specified name, default value, and usage string.\n// The return value is the address of an int variable that stores the value of the flag.\n// A count flag will add 1 to its value evey time it is found on the command line\nfunc Count(name string, usage string) *int {\n\treturn CommandLine.CountP(name, \"\", usage)\n}\n\n// CountP is like Count only takes a shorthand for the flag name.\nfunc CountP(name, shorthand string, usage string) *int {\n\treturn CommandLine.CountP(name, shorthand, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/duration.go",
    "content": "package pflag\n\nimport (\n\t\"time\"\n)\n\n// -- time.Duration Value\ntype durationValue time.Duration\n\nfunc newDurationValue(val time.Duration, p *time.Duration) *durationValue {\n\t*p = val\n\treturn (*durationValue)(p)\n}\n\nfunc (d *durationValue) Set(s string) error {\n\tv, err := time.ParseDuration(s)\n\t*d = durationValue(v)\n\treturn err\n}\n\nfunc (d *durationValue) Type() string {\n\treturn \"duration\"\n}\n\nfunc (d *durationValue) String() string { return (*time.Duration)(d).String() }\n\nfunc durationConv(sval string) (interface{}, error) {\n\treturn time.ParseDuration(sval)\n}\n\n// GetDuration return the duration value of a flag with the given name\nfunc (f *FlagSet) GetDuration(name string) (time.Duration, error) {\n\tval, err := f.getFlagType(name, \"duration\", durationConv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(time.Duration), nil\n}\n\n// DurationVar defines a time.Duration flag with specified name, default value, and usage string.\n// The argument p points to a time.Duration variable in which to store the value of the flag.\nfunc (f *FlagSet) DurationVar(p *time.Duration, name string, value time.Duration, usage string) {\n\tf.VarP(newDurationValue(value, p), name, \"\", usage)\n}\n\n// DurationVarP is like DurationVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) DurationVarP(p *time.Duration, name, shorthand string, value time.Duration, usage string) {\n\tf.VarP(newDurationValue(value, p), name, shorthand, usage)\n}\n\n// DurationVar defines a time.Duration flag with specified name, default value, and usage string.\n// The argument p points to a time.Duration variable in which to store the value of the flag.\nfunc DurationVar(p *time.Duration, name string, value time.Duration, usage string) {\n\tCommandLine.VarP(newDurationValue(value, p), name, \"\", usage)\n}\n\n// DurationVarP is like DurationVar, but accepts a shorthand letter that can be used after a single dash.\nfunc DurationVarP(p *time.Duration, name, shorthand string, value time.Duration, usage string) {\n\tCommandLine.VarP(newDurationValue(value, p), name, shorthand, usage)\n}\n\n// Duration defines a time.Duration flag with specified name, default value, and usage string.\n// The return value is the address of a time.Duration variable that stores the value of the flag.\nfunc (f *FlagSet) Duration(name string, value time.Duration, usage string) *time.Duration {\n\tp := new(time.Duration)\n\tf.DurationVarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// DurationP is like Duration, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) DurationP(name, shorthand string, value time.Duration, usage string) *time.Duration {\n\tp := new(time.Duration)\n\tf.DurationVarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Duration defines a time.Duration flag with specified name, default value, and usage string.\n// The return value is the address of a time.Duration variable that stores the value of the flag.\nfunc Duration(name string, value time.Duration, usage string) *time.Duration {\n\treturn CommandLine.DurationP(name, \"\", value, usage)\n}\n\n// DurationP is like Duration, but accepts a shorthand letter that can be used after a single dash.\nfunc DurationP(name, shorthand string, value time.Duration, usage string) *time.Duration {\n\treturn CommandLine.DurationP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/duration_slice.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n\t\"time\"\n)\n\n// -- durationSlice Value\ntype durationSliceValue struct {\n\tvalue   *[]time.Duration\n\tchanged bool\n}\n\nfunc newDurationSliceValue(val []time.Duration, p *[]time.Duration) *durationSliceValue {\n\tdsv := new(durationSliceValue)\n\tdsv.value = p\n\t*dsv.value = val\n\treturn dsv\n}\n\nfunc (s *durationSliceValue) Set(val string) error {\n\tss := strings.Split(val, \",\")\n\tout := make([]time.Duration, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tout[i], err = time.ParseDuration(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\t*s.value = append(*s.value, out...)\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *durationSliceValue) Type() string {\n\treturn \"durationSlice\"\n}\n\nfunc (s *durationSliceValue) String() string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = fmt.Sprintf(\"%s\", d)\n\t}\n\treturn \"[\" + strings.Join(out, \",\") + \"]\"\n}\n\nfunc (s *durationSliceValue) fromString(val string) (time.Duration, error) {\n\treturn time.ParseDuration(val)\n}\n\nfunc (s *durationSliceValue) toString(val time.Duration) string {\n\treturn fmt.Sprintf(\"%s\", val)\n}\n\nfunc (s *durationSliceValue) Append(val string) error {\n\ti, err := s.fromString(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\t*s.value = append(*s.value, i)\n\treturn nil\n}\n\nfunc (s *durationSliceValue) Replace(val []string) error {\n\tout := make([]time.Duration, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i], err = s.fromString(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *durationSliceValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = s.toString(d)\n\t}\n\treturn out\n}\n\nfunc durationSliceConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// Empty string would cause a slice with one (empty) entry\n\tif len(val) == 0 {\n\t\treturn []time.Duration{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make([]time.Duration, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tout[i], err = time.ParseDuration(d)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t}\n\treturn out, nil\n}\n\n// GetDurationSlice returns the []time.Duration value of a flag with the given name\nfunc (f *FlagSet) GetDurationSlice(name string) ([]time.Duration, error) {\n\tval, err := f.getFlagType(name, \"durationSlice\", durationSliceConv)\n\tif err != nil {\n\t\treturn []time.Duration{}, err\n\t}\n\treturn val.([]time.Duration), nil\n}\n\n// DurationSliceVar defines a durationSlice flag with specified name, default value, and usage string.\n// The argument p points to a []time.Duration variable in which to store the value of the flag.\nfunc (f *FlagSet) DurationSliceVar(p *[]time.Duration, name string, value []time.Duration, usage string) {\n\tf.VarP(newDurationSliceValue(value, p), name, \"\", usage)\n}\n\n// DurationSliceVarP is like DurationSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) DurationSliceVarP(p *[]time.Duration, name, shorthand string, value []time.Duration, usage string) {\n\tf.VarP(newDurationSliceValue(value, p), name, shorthand, usage)\n}\n\n// DurationSliceVar defines a duration[] flag with specified name, default value, and usage string.\n// The argument p points to a duration[] variable in which to store the value of the flag.\nfunc DurationSliceVar(p *[]time.Duration, name string, value []time.Duration, usage string) {\n\tCommandLine.VarP(newDurationSliceValue(value, p), name, \"\", usage)\n}\n\n// DurationSliceVarP is like DurationSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc DurationSliceVarP(p *[]time.Duration, name, shorthand string, value []time.Duration, usage string) {\n\tCommandLine.VarP(newDurationSliceValue(value, p), name, shorthand, usage)\n}\n\n// DurationSlice defines a []time.Duration flag with specified name, default value, and usage string.\n// The return value is the address of a []time.Duration variable that stores the value of the flag.\nfunc (f *FlagSet) DurationSlice(name string, value []time.Duration, usage string) *[]time.Duration {\n\tp := []time.Duration{}\n\tf.DurationSliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// DurationSliceP is like DurationSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) DurationSliceP(name, shorthand string, value []time.Duration, usage string) *[]time.Duration {\n\tp := []time.Duration{}\n\tf.DurationSliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// DurationSlice defines a []time.Duration flag with specified name, default value, and usage string.\n// The return value is the address of a []time.Duration variable that stores the value of the flag.\nfunc DurationSlice(name string, value []time.Duration, usage string) *[]time.Duration {\n\treturn CommandLine.DurationSliceP(name, \"\", value, usage)\n}\n\n// DurationSliceP is like DurationSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc DurationSliceP(name, shorthand string, value []time.Duration, usage string) *[]time.Duration {\n\treturn CommandLine.DurationSliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/flag.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n/*\nPackage pflag is a drop-in replacement for Go's flag package, implementing\nPOSIX/GNU-style --flags.\n\npflag is compatible with the GNU extensions to the POSIX recommendations\nfor command-line options. See\nhttp://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html\n\nUsage:\n\npflag is a drop-in replacement of Go's native flag package. If you import\npflag under the name \"flag\" then all code should continue to function\nwith no changes.\n\n\timport flag \"github.com/spf13/pflag\"\n\nThere is one exception to this: if you directly instantiate the Flag struct\nthere is one more field \"Shorthand\" that you will need to set.\nMost code never instantiates this struct directly, and instead uses\nfunctions such as String(), BoolVar(), and Var(), and is therefore\nunaffected.\n\nDefine flags using flag.String(), Bool(), Int(), etc.\n\nThis declares an integer flag, -flagname, stored in the pointer ip, with type *int.\n\tvar ip = flag.Int(\"flagname\", 1234, \"help message for flagname\")\nIf you like, you can bind the flag to a variable using the Var() functions.\n\tvar flagvar int\n\tfunc init() {\n\t\tflag.IntVar(&flagvar, \"flagname\", 1234, \"help message for flagname\")\n\t}\nOr you can create custom flags that satisfy the Value interface (with\npointer receivers) and couple them to flag parsing by\n\tflag.Var(&flagVal, \"name\", \"help message for flagname\")\nFor such flags, the default value is just the initial value of the variable.\n\nAfter all flags are defined, call\n\tflag.Parse()\nto parse the command line into the defined flags.\n\nFlags may then be used directly. If you're using the flags themselves,\nthey are all pointers; if you bind to variables, they're values.\n\tfmt.Println(\"ip has value \", *ip)\n\tfmt.Println(\"flagvar has value \", flagvar)\n\nAfter parsing, the arguments after the flag are available as the\nslice flag.Args() or individually as flag.Arg(i).\nThe arguments are indexed from 0 through flag.NArg()-1.\n\nThe pflag package also defines some new functions that are not in flag,\nthat give one-letter shorthands for flags. You can use these by appending\n'P' to the name of any function that defines a flag.\n\tvar ip = flag.IntP(\"flagname\", \"f\", 1234, \"help message\")\n\tvar flagvar bool\n\tfunc init() {\n\t\tflag.BoolVarP(&flagvar, \"boolname\", \"b\", true, \"help message\")\n\t}\n\tflag.VarP(&flagval, \"varname\", \"v\", \"help message\")\nShorthand letters can be used with single dashes on the command line.\nBoolean shorthand flags can be combined with other shorthand flags.\n\nCommand line flag syntax:\n\t--flag    // boolean flags only\n\t--flag=x\n\nUnlike the flag package, a single dash before an option means something\ndifferent than a double dash. Single dashes signify a series of shorthand\nletters for flags. All but the last shorthand letter must be boolean flags.\n\t// boolean flags\n\t-f\n\t-abc\n\t// non-boolean flags\n\t-n 1234\n\t-Ifile\n\t// mixed\n\t-abcs \"hello\"\n\t-abcn1234\n\nFlag parsing stops after the terminator \"--\". Unlike the flag package,\nflags can be interspersed with arguments anywhere on the command line\nbefore this terminator.\n\nInteger flags accept 1234, 0664, 0x1234 and may be negative.\nBoolean flags (in their long form) accept 1, 0, t, f, true, false,\nTRUE, FALSE, True, False.\nDuration flags accept any input valid for time.ParseDuration.\n\nThe default set of command-line flags is controlled by\ntop-level functions.  The FlagSet type allows one to define\nindependent sets of flags, such as to implement subcommands\nin a command-line interface. The methods of FlagSet are\nanalogous to the top-level functions for the command-line\nflag set.\n*/\npackage pflag\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\tgoflag \"flag\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"sort\"\n\t\"strings\"\n)\n\n// ErrHelp is the error returned if the flag -help is invoked but no such flag is defined.\nvar ErrHelp = errors.New(\"pflag: help requested\")\n\n// ErrorHandling defines how to handle flag parsing errors.\ntype ErrorHandling int\n\nconst (\n\t// ContinueOnError will return an err from Parse() if an error is found\n\tContinueOnError ErrorHandling = iota\n\t// ExitOnError will call os.Exit(2) if an error is found when parsing\n\tExitOnError\n\t// PanicOnError will panic() if an error is found when parsing flags\n\tPanicOnError\n)\n\n// ParseErrorsWhitelist defines the parsing errors that can be ignored\ntype ParseErrorsWhitelist struct {\n\t// UnknownFlags will ignore unknown flags errors and continue parsing rest of the flags\n\tUnknownFlags bool\n}\n\n// NormalizedName is a flag name that has been normalized according to rules\n// for the FlagSet (e.g. making '-' and '_' equivalent).\ntype NormalizedName string\n\n// A FlagSet represents a set of defined flags.\ntype FlagSet struct {\n\t// Usage is the function called when an error occurs while parsing flags.\n\t// The field is a function (not a method) that may be changed to point to\n\t// a custom error handler.\n\tUsage func()\n\n\t// SortFlags is used to indicate, if user wants to have sorted flags in\n\t// help/usage messages.\n\tSortFlags bool\n\n\t// ParseErrorsWhitelist is used to configure a whitelist of errors\n\tParseErrorsWhitelist ParseErrorsWhitelist\n\n\tname              string\n\tparsed            bool\n\tactual            map[NormalizedName]*Flag\n\torderedActual     []*Flag\n\tsortedActual      []*Flag\n\tformal            map[NormalizedName]*Flag\n\torderedFormal     []*Flag\n\tsortedFormal      []*Flag\n\tshorthands        map[byte]*Flag\n\targs              []string // arguments after flags\n\targsLenAtDash     int      // len(args) when a '--' was located when parsing, or -1 if no --\n\terrorHandling     ErrorHandling\n\toutput            io.Writer // nil means stderr; use out() accessor\n\tinterspersed      bool      // allow interspersed option/non-option args\n\tnormalizeNameFunc func(f *FlagSet, name string) NormalizedName\n\n\taddedGoFlagSets []*goflag.FlagSet\n}\n\n// A Flag represents the state of a flag.\ntype Flag struct {\n\tName                string              // name as it appears on command line\n\tShorthand           string              // one-letter abbreviated flag\n\tUsage               string              // help message\n\tValue               Value               // value as set\n\tDefValue            string              // default value (as text); for usage message\n\tChanged             bool                // If the user set the value (or if left to default)\n\tNoOptDefVal         string              // default value (as text); if the flag is on the command line without any options\n\tDeprecated          string              // If this flag is deprecated, this string is the new or now thing to use\n\tHidden              bool                // used by cobra.Command to allow flags to be hidden from help/usage text\n\tShorthandDeprecated string              // If the shorthand of this flag is deprecated, this string is the new or now thing to use\n\tAnnotations         map[string][]string // used by cobra.Command bash autocomple code\n}\n\n// Value is the interface to the dynamic value stored in a flag.\n// (The default value is represented as a string.)\ntype Value interface {\n\tString() string\n\tSet(string) error\n\tType() string\n}\n\n// SliceValue is a secondary interface to all flags which hold a list\n// of values.  This allows full control over the value of list flags,\n// and avoids complicated marshalling and unmarshalling to csv.\ntype SliceValue interface {\n\t// Append adds the specified value to the end of the flag value list.\n\tAppend(string) error\n\t// Replace will fully overwrite any data currently in the flag value list.\n\tReplace([]string) error\n\t// GetSlice returns the flag value list as an array of strings.\n\tGetSlice() []string\n}\n\n// sortFlags returns the flags as a slice in lexicographical sorted order.\nfunc sortFlags(flags map[NormalizedName]*Flag) []*Flag {\n\tlist := make(sort.StringSlice, len(flags))\n\ti := 0\n\tfor k := range flags {\n\t\tlist[i] = string(k)\n\t\ti++\n\t}\n\tlist.Sort()\n\tresult := make([]*Flag, len(list))\n\tfor i, name := range list {\n\t\tresult[i] = flags[NormalizedName(name)]\n\t}\n\treturn result\n}\n\n// SetNormalizeFunc allows you to add a function which can translate flag names.\n// Flags added to the FlagSet will be translated and then when anything tries to\n// look up the flag that will also be translated. So it would be possible to create\n// a flag named \"getURL\" and have it translated to \"geturl\".  A user could then pass\n// \"--getUrl\" which may also be translated to \"geturl\" and everything will work.\nfunc (f *FlagSet) SetNormalizeFunc(n func(f *FlagSet, name string) NormalizedName) {\n\tf.normalizeNameFunc = n\n\tf.sortedFormal = f.sortedFormal[:0]\n\tfor fname, flag := range f.formal {\n\t\tnname := f.normalizeFlagName(flag.Name)\n\t\tif fname == nname {\n\t\t\tcontinue\n\t\t}\n\t\tflag.Name = string(nname)\n\t\tdelete(f.formal, fname)\n\t\tf.formal[nname] = flag\n\t\tif _, set := f.actual[fname]; set {\n\t\t\tdelete(f.actual, fname)\n\t\t\tf.actual[nname] = flag\n\t\t}\n\t}\n}\n\n// GetNormalizeFunc returns the previously set NormalizeFunc of a function which\n// does no translation, if not set previously.\nfunc (f *FlagSet) GetNormalizeFunc() func(f *FlagSet, name string) NormalizedName {\n\tif f.normalizeNameFunc != nil {\n\t\treturn f.normalizeNameFunc\n\t}\n\treturn func(f *FlagSet, name string) NormalizedName { return NormalizedName(name) }\n}\n\nfunc (f *FlagSet) normalizeFlagName(name string) NormalizedName {\n\tn := f.GetNormalizeFunc()\n\treturn n(f, name)\n}\n\nfunc (f *FlagSet) out() io.Writer {\n\tif f.output == nil {\n\t\treturn os.Stderr\n\t}\n\treturn f.output\n}\n\n// SetOutput sets the destination for usage and error messages.\n// If output is nil, os.Stderr is used.\nfunc (f *FlagSet) SetOutput(output io.Writer) {\n\tf.output = output\n}\n\n// VisitAll visits the flags in lexicographical order or\n// in primordial order if f.SortFlags is false, calling fn for each.\n// It visits all flags, even those not set.\nfunc (f *FlagSet) VisitAll(fn func(*Flag)) {\n\tif len(f.formal) == 0 {\n\t\treturn\n\t}\n\n\tvar flags []*Flag\n\tif f.SortFlags {\n\t\tif len(f.formal) != len(f.sortedFormal) {\n\t\t\tf.sortedFormal = sortFlags(f.formal)\n\t\t}\n\t\tflags = f.sortedFormal\n\t} else {\n\t\tflags = f.orderedFormal\n\t}\n\n\tfor _, flag := range flags {\n\t\tfn(flag)\n\t}\n}\n\n// HasFlags returns a bool to indicate if the FlagSet has any flags defined.\nfunc (f *FlagSet) HasFlags() bool {\n\treturn len(f.formal) > 0\n}\n\n// HasAvailableFlags returns a bool to indicate if the FlagSet has any flags\n// that are not hidden.\nfunc (f *FlagSet) HasAvailableFlags() bool {\n\tfor _, flag := range f.formal {\n\t\tif !flag.Hidden {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// VisitAll visits the command-line flags in lexicographical order or\n// in primordial order if f.SortFlags is false, calling fn for each.\n// It visits all flags, even those not set.\nfunc VisitAll(fn func(*Flag)) {\n\tCommandLine.VisitAll(fn)\n}\n\n// Visit visits the flags in lexicographical order or\n// in primordial order if f.SortFlags is false, calling fn for each.\n// It visits only those flags that have been set.\nfunc (f *FlagSet) Visit(fn func(*Flag)) {\n\tif len(f.actual) == 0 {\n\t\treturn\n\t}\n\n\tvar flags []*Flag\n\tif f.SortFlags {\n\t\tif len(f.actual) != len(f.sortedActual) {\n\t\t\tf.sortedActual = sortFlags(f.actual)\n\t\t}\n\t\tflags = f.sortedActual\n\t} else {\n\t\tflags = f.orderedActual\n\t}\n\n\tfor _, flag := range flags {\n\t\tfn(flag)\n\t}\n}\n\n// Visit visits the command-line flags in lexicographical order or\n// in primordial order if f.SortFlags is false, calling fn for each.\n// It visits only those flags that have been set.\nfunc Visit(fn func(*Flag)) {\n\tCommandLine.Visit(fn)\n}\n\n// Lookup returns the Flag structure of the named flag, returning nil if none exists.\nfunc (f *FlagSet) Lookup(name string) *Flag {\n\treturn f.lookup(f.normalizeFlagName(name))\n}\n\n// ShorthandLookup returns the Flag structure of the short handed flag,\n// returning nil if none exists.\n// It panics, if len(name) > 1.\nfunc (f *FlagSet) ShorthandLookup(name string) *Flag {\n\tif name == \"\" {\n\t\treturn nil\n\t}\n\tif len(name) > 1 {\n\t\tmsg := fmt.Sprintf(\"can not look up shorthand which is more than one ASCII character: %q\", name)\n\t\tfmt.Fprintf(f.out(), msg)\n\t\tpanic(msg)\n\t}\n\tc := name[0]\n\treturn f.shorthands[c]\n}\n\n// lookup returns the Flag structure of the named flag, returning nil if none exists.\nfunc (f *FlagSet) lookup(name NormalizedName) *Flag {\n\treturn f.formal[name]\n}\n\n// func to return a given type for a given flag name\nfunc (f *FlagSet) getFlagType(name string, ftype string, convFunc func(sval string) (interface{}, error)) (interface{}, error) {\n\tflag := f.Lookup(name)\n\tif flag == nil {\n\t\terr := fmt.Errorf(\"flag accessed but not defined: %s\", name)\n\t\treturn nil, err\n\t}\n\n\tif flag.Value.Type() != ftype {\n\t\terr := fmt.Errorf(\"trying to get %s value of flag of type %s\", ftype, flag.Value.Type())\n\t\treturn nil, err\n\t}\n\n\tsval := flag.Value.String()\n\tresult, err := convFunc(sval)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn result, nil\n}\n\n// ArgsLenAtDash will return the length of f.Args at the moment when a -- was\n// found during arg parsing. This allows your program to know which args were\n// before the -- and which came after.\nfunc (f *FlagSet) ArgsLenAtDash() int {\n\treturn f.argsLenAtDash\n}\n\n// MarkDeprecated indicated that a flag is deprecated in your program. It will\n// continue to function but will not show up in help or usage messages. Using\n// this flag will also print the given usageMessage.\nfunc (f *FlagSet) MarkDeprecated(name string, usageMessage string) error {\n\tflag := f.Lookup(name)\n\tif flag == nil {\n\t\treturn fmt.Errorf(\"flag %q does not exist\", name)\n\t}\n\tif usageMessage == \"\" {\n\t\treturn fmt.Errorf(\"deprecated message for flag %q must be set\", name)\n\t}\n\tflag.Deprecated = usageMessage\n\tflag.Hidden = true\n\treturn nil\n}\n\n// MarkShorthandDeprecated will mark the shorthand of a flag deprecated in your\n// program. It will continue to function but will not show up in help or usage\n// messages. Using this flag will also print the given usageMessage.\nfunc (f *FlagSet) MarkShorthandDeprecated(name string, usageMessage string) error {\n\tflag := f.Lookup(name)\n\tif flag == nil {\n\t\treturn fmt.Errorf(\"flag %q does not exist\", name)\n\t}\n\tif usageMessage == \"\" {\n\t\treturn fmt.Errorf(\"deprecated message for flag %q must be set\", name)\n\t}\n\tflag.ShorthandDeprecated = usageMessage\n\treturn nil\n}\n\n// MarkHidden sets a flag to 'hidden' in your program. It will continue to\n// function but will not show up in help or usage messages.\nfunc (f *FlagSet) MarkHidden(name string) error {\n\tflag := f.Lookup(name)\n\tif flag == nil {\n\t\treturn fmt.Errorf(\"flag %q does not exist\", name)\n\t}\n\tflag.Hidden = true\n\treturn nil\n}\n\n// Lookup returns the Flag structure of the named command-line flag,\n// returning nil if none exists.\nfunc Lookup(name string) *Flag {\n\treturn CommandLine.Lookup(name)\n}\n\n// ShorthandLookup returns the Flag structure of the short handed flag,\n// returning nil if none exists.\nfunc ShorthandLookup(name string) *Flag {\n\treturn CommandLine.ShorthandLookup(name)\n}\n\n// Set sets the value of the named flag.\nfunc (f *FlagSet) Set(name, value string) error {\n\tnormalName := f.normalizeFlagName(name)\n\tflag, ok := f.formal[normalName]\n\tif !ok {\n\t\treturn fmt.Errorf(\"no such flag -%v\", name)\n\t}\n\n\terr := flag.Value.Set(value)\n\tif err != nil {\n\t\tvar flagName string\n\t\tif flag.Shorthand != \"\" && flag.ShorthandDeprecated == \"\" {\n\t\t\tflagName = fmt.Sprintf(\"-%s, --%s\", flag.Shorthand, flag.Name)\n\t\t} else {\n\t\t\tflagName = fmt.Sprintf(\"--%s\", flag.Name)\n\t\t}\n\t\treturn fmt.Errorf(\"invalid argument %q for %q flag: %v\", value, flagName, err)\n\t}\n\n\tif !flag.Changed {\n\t\tif f.actual == nil {\n\t\t\tf.actual = make(map[NormalizedName]*Flag)\n\t\t}\n\t\tf.actual[normalName] = flag\n\t\tf.orderedActual = append(f.orderedActual, flag)\n\n\t\tflag.Changed = true\n\t}\n\n\tif flag.Deprecated != \"\" {\n\t\tfmt.Fprintf(f.out(), \"Flag --%s has been deprecated, %s\\n\", flag.Name, flag.Deprecated)\n\t}\n\treturn nil\n}\n\n// SetAnnotation allows one to set arbitrary annotations on a flag in the FlagSet.\n// This is sometimes used by spf13/cobra programs which want to generate additional\n// bash completion information.\nfunc (f *FlagSet) SetAnnotation(name, key string, values []string) error {\n\tnormalName := f.normalizeFlagName(name)\n\tflag, ok := f.formal[normalName]\n\tif !ok {\n\t\treturn fmt.Errorf(\"no such flag -%v\", name)\n\t}\n\tif flag.Annotations == nil {\n\t\tflag.Annotations = map[string][]string{}\n\t}\n\tflag.Annotations[key] = values\n\treturn nil\n}\n\n// Changed returns true if the flag was explicitly set during Parse() and false\n// otherwise\nfunc (f *FlagSet) Changed(name string) bool {\n\tflag := f.Lookup(name)\n\t// If a flag doesn't exist, it wasn't changed....\n\tif flag == nil {\n\t\treturn false\n\t}\n\treturn flag.Changed\n}\n\n// Set sets the value of the named command-line flag.\nfunc Set(name, value string) error {\n\treturn CommandLine.Set(name, value)\n}\n\n// PrintDefaults prints, to standard error unless configured\n// otherwise, the default values of all defined flags in the set.\nfunc (f *FlagSet) PrintDefaults() {\n\tusages := f.FlagUsages()\n\tfmt.Fprint(f.out(), usages)\n}\n\n// defaultIsZeroValue returns true if the default value for this flag represents\n// a zero value.\nfunc (f *Flag) defaultIsZeroValue() bool {\n\tswitch f.Value.(type) {\n\tcase boolFlag:\n\t\treturn f.DefValue == \"false\"\n\tcase *durationValue:\n\t\t// Beginning in Go 1.7, duration zero values are \"0s\"\n\t\treturn f.DefValue == \"0\" || f.DefValue == \"0s\"\n\tcase *intValue, *int8Value, *int32Value, *int64Value, *uintValue, *uint8Value, *uint16Value, *uint32Value, *uint64Value, *countValue, *float32Value, *float64Value:\n\t\treturn f.DefValue == \"0\"\n\tcase *stringValue:\n\t\treturn f.DefValue == \"\"\n\tcase *ipValue, *ipMaskValue, *ipNetValue:\n\t\treturn f.DefValue == \"<nil>\"\n\tcase *intSliceValue, *stringSliceValue, *stringArrayValue:\n\t\treturn f.DefValue == \"[]\"\n\tdefault:\n\t\tswitch f.Value.String() {\n\t\tcase \"false\":\n\t\t\treturn true\n\t\tcase \"<nil>\":\n\t\t\treturn true\n\t\tcase \"\":\n\t\t\treturn true\n\t\tcase \"0\":\n\t\t\treturn true\n\t\t}\n\t\treturn false\n\t}\n}\n\n// UnquoteUsage extracts a back-quoted name from the usage\n// string for a flag and returns it and the un-quoted usage.\n// Given \"a `name` to show\" it returns (\"name\", \"a name to show\").\n// If there are no back quotes, the name is an educated guess of the\n// type of the flag's value, or the empty string if the flag is boolean.\nfunc UnquoteUsage(flag *Flag) (name string, usage string) {\n\t// Look for a back-quoted name, but avoid the strings package.\n\tusage = flag.Usage\n\tfor i := 0; i < len(usage); i++ {\n\t\tif usage[i] == '`' {\n\t\t\tfor j := i + 1; j < len(usage); j++ {\n\t\t\t\tif usage[j] == '`' {\n\t\t\t\t\tname = usage[i+1 : j]\n\t\t\t\t\tusage = usage[:i] + name + usage[j+1:]\n\t\t\t\t\treturn name, usage\n\t\t\t\t}\n\t\t\t}\n\t\t\tbreak // Only one back quote; use type name.\n\t\t}\n\t}\n\n\tname = flag.Value.Type()\n\tswitch name {\n\tcase \"bool\":\n\t\tname = \"\"\n\tcase \"float64\":\n\t\tname = \"float\"\n\tcase \"int64\":\n\t\tname = \"int\"\n\tcase \"uint64\":\n\t\tname = \"uint\"\n\tcase \"stringSlice\":\n\t\tname = \"strings\"\n\tcase \"intSlice\":\n\t\tname = \"ints\"\n\tcase \"uintSlice\":\n\t\tname = \"uints\"\n\tcase \"boolSlice\":\n\t\tname = \"bools\"\n\t}\n\n\treturn\n}\n\n// Splits the string `s` on whitespace into an initial substring up to\n// `i` runes in length and the remainder. Will go `slop` over `i` if\n// that encompasses the entire string (which allows the caller to\n// avoid short orphan words on the final line).\nfunc wrapN(i, slop int, s string) (string, string) {\n\tif i+slop > len(s) {\n\t\treturn s, \"\"\n\t}\n\n\tw := strings.LastIndexAny(s[:i], \" \\t\\n\")\n\tif w <= 0 {\n\t\treturn s, \"\"\n\t}\n\tnlPos := strings.LastIndex(s[:i], \"\\n\")\n\tif nlPos > 0 && nlPos < w {\n\t\treturn s[:nlPos], s[nlPos+1:]\n\t}\n\treturn s[:w], s[w+1:]\n}\n\n// Wraps the string `s` to a maximum width `w` with leading indent\n// `i`. The first line is not indented (this is assumed to be done by\n// caller). Pass `w` == 0 to do no wrapping\nfunc wrap(i, w int, s string) string {\n\tif w == 0 {\n\t\treturn strings.Replace(s, \"\\n\", \"\\n\"+strings.Repeat(\" \", i), -1)\n\t}\n\n\t// space between indent i and end of line width w into which\n\t// we should wrap the text.\n\twrap := w - i\n\n\tvar r, l string\n\n\t// Not enough space for sensible wrapping. Wrap as a block on\n\t// the next line instead.\n\tif wrap < 24 {\n\t\ti = 16\n\t\twrap = w - i\n\t\tr += \"\\n\" + strings.Repeat(\" \", i)\n\t}\n\t// If still not enough space then don't even try to wrap.\n\tif wrap < 24 {\n\t\treturn strings.Replace(s, \"\\n\", r, -1)\n\t}\n\n\t// Try to avoid short orphan words on the final line, by\n\t// allowing wrapN to go a bit over if that would fit in the\n\t// remainder of the line.\n\tslop := 5\n\twrap = wrap - slop\n\n\t// Handle first line, which is indented by the caller (or the\n\t// special case above)\n\tl, s = wrapN(wrap, slop, s)\n\tr = r + strings.Replace(l, \"\\n\", \"\\n\"+strings.Repeat(\" \", i), -1)\n\n\t// Now wrap the rest\n\tfor s != \"\" {\n\t\tvar t string\n\n\t\tt, s = wrapN(wrap, slop, s)\n\t\tr = r + \"\\n\" + strings.Repeat(\" \", i) + strings.Replace(t, \"\\n\", \"\\n\"+strings.Repeat(\" \", i), -1)\n\t}\n\n\treturn r\n\n}\n\n// FlagUsagesWrapped returns a string containing the usage information\n// for all flags in the FlagSet. Wrapped to `cols` columns (0 for no\n// wrapping)\nfunc (f *FlagSet) FlagUsagesWrapped(cols int) string {\n\tbuf := new(bytes.Buffer)\n\n\tlines := make([]string, 0, len(f.formal))\n\n\tmaxlen := 0\n\tf.VisitAll(func(flag *Flag) {\n\t\tif flag.Hidden {\n\t\t\treturn\n\t\t}\n\n\t\tline := \"\"\n\t\tif flag.Shorthand != \"\" && flag.ShorthandDeprecated == \"\" {\n\t\t\tline = fmt.Sprintf(\"  -%s, --%s\", flag.Shorthand, flag.Name)\n\t\t} else {\n\t\t\tline = fmt.Sprintf(\"      --%s\", flag.Name)\n\t\t}\n\n\t\tvarname, usage := UnquoteUsage(flag)\n\t\tif varname != \"\" {\n\t\t\tline += \" \" + varname\n\t\t}\n\t\tif flag.NoOptDefVal != \"\" {\n\t\t\tswitch flag.Value.Type() {\n\t\t\tcase \"string\":\n\t\t\t\tline += fmt.Sprintf(\"[=\\\"%s\\\"]\", flag.NoOptDefVal)\n\t\t\tcase \"bool\":\n\t\t\t\tif flag.NoOptDefVal != \"true\" {\n\t\t\t\t\tline += fmt.Sprintf(\"[=%s]\", flag.NoOptDefVal)\n\t\t\t\t}\n\t\t\tcase \"count\":\n\t\t\t\tif flag.NoOptDefVal != \"+1\" {\n\t\t\t\t\tline += fmt.Sprintf(\"[=%s]\", flag.NoOptDefVal)\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\tline += fmt.Sprintf(\"[=%s]\", flag.NoOptDefVal)\n\t\t\t}\n\t\t}\n\n\t\t// This special character will be replaced with spacing once the\n\t\t// correct alignment is calculated\n\t\tline += \"\\x00\"\n\t\tif len(line) > maxlen {\n\t\t\tmaxlen = len(line)\n\t\t}\n\n\t\tline += usage\n\t\tif !flag.defaultIsZeroValue() {\n\t\t\tif flag.Value.Type() == \"string\" {\n\t\t\t\tline += fmt.Sprintf(\" (default %q)\", flag.DefValue)\n\t\t\t} else {\n\t\t\t\tline += fmt.Sprintf(\" (default %s)\", flag.DefValue)\n\t\t\t}\n\t\t}\n\t\tif len(flag.Deprecated) != 0 {\n\t\t\tline += fmt.Sprintf(\" (DEPRECATED: %s)\", flag.Deprecated)\n\t\t}\n\n\t\tlines = append(lines, line)\n\t})\n\n\tfor _, line := range lines {\n\t\tsidx := strings.Index(line, \"\\x00\")\n\t\tspacing := strings.Repeat(\" \", maxlen-sidx)\n\t\t// maxlen + 2 comes from + 1 for the \\x00 and + 1 for the (deliberate) off-by-one in maxlen-sidx\n\t\tfmt.Fprintln(buf, line[:sidx], spacing, wrap(maxlen+2, cols, line[sidx+1:]))\n\t}\n\n\treturn buf.String()\n}\n\n// FlagUsages returns a string containing the usage information for all flags in\n// the FlagSet\nfunc (f *FlagSet) FlagUsages() string {\n\treturn f.FlagUsagesWrapped(0)\n}\n\n// PrintDefaults prints to standard error the default values of all defined command-line flags.\nfunc PrintDefaults() {\n\tCommandLine.PrintDefaults()\n}\n\n// defaultUsage is the default function to print a usage message.\nfunc defaultUsage(f *FlagSet) {\n\tfmt.Fprintf(f.out(), \"Usage of %s:\\n\", f.name)\n\tf.PrintDefaults()\n}\n\n// NOTE: Usage is not just defaultUsage(CommandLine)\n// because it serves (via godoc flag Usage) as the example\n// for how to write your own usage function.\n\n// Usage prints to standard error a usage message documenting all defined command-line flags.\n// The function is a variable that may be changed to point to a custom function.\n// By default it prints a simple header and calls PrintDefaults; for details about the\n// format of the output and how to control it, see the documentation for PrintDefaults.\nvar Usage = func() {\n\tfmt.Fprintf(os.Stderr, \"Usage of %s:\\n\", os.Args[0])\n\tPrintDefaults()\n}\n\n// NFlag returns the number of flags that have been set.\nfunc (f *FlagSet) NFlag() int { return len(f.actual) }\n\n// NFlag returns the number of command-line flags that have been set.\nfunc NFlag() int { return len(CommandLine.actual) }\n\n// Arg returns the i'th argument.  Arg(0) is the first remaining argument\n// after flags have been processed.\nfunc (f *FlagSet) Arg(i int) string {\n\tif i < 0 || i >= len(f.args) {\n\t\treturn \"\"\n\t}\n\treturn f.args[i]\n}\n\n// Arg returns the i'th command-line argument.  Arg(0) is the first remaining argument\n// after flags have been processed.\nfunc Arg(i int) string {\n\treturn CommandLine.Arg(i)\n}\n\n// NArg is the number of arguments remaining after flags have been processed.\nfunc (f *FlagSet) NArg() int { return len(f.args) }\n\n// NArg is the number of arguments remaining after flags have been processed.\nfunc NArg() int { return len(CommandLine.args) }\n\n// Args returns the non-flag arguments.\nfunc (f *FlagSet) Args() []string { return f.args }\n\n// Args returns the non-flag command-line arguments.\nfunc Args() []string { return CommandLine.args }\n\n// Var defines a flag with the specified name and usage string. The type and\n// value of the flag are represented by the first argument, of type Value, which\n// typically holds a user-defined implementation of Value. For instance, the\n// caller could create a flag that turns a comma-separated string into a slice\n// of strings by giving the slice the methods of Value; in particular, Set would\n// decompose the comma-separated string into the slice.\nfunc (f *FlagSet) Var(value Value, name string, usage string) {\n\tf.VarP(value, name, \"\", usage)\n}\n\n// VarPF is like VarP, but returns the flag created\nfunc (f *FlagSet) VarPF(value Value, name, shorthand, usage string) *Flag {\n\t// Remember the default value as a string; it won't change.\n\tflag := &Flag{\n\t\tName:      name,\n\t\tShorthand: shorthand,\n\t\tUsage:     usage,\n\t\tValue:     value,\n\t\tDefValue:  value.String(),\n\t}\n\tf.AddFlag(flag)\n\treturn flag\n}\n\n// VarP is like Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) VarP(value Value, name, shorthand, usage string) {\n\tf.VarPF(value, name, shorthand, usage)\n}\n\n// AddFlag will add the flag to the FlagSet\nfunc (f *FlagSet) AddFlag(flag *Flag) {\n\tnormalizedFlagName := f.normalizeFlagName(flag.Name)\n\n\t_, alreadyThere := f.formal[normalizedFlagName]\n\tif alreadyThere {\n\t\tmsg := fmt.Sprintf(\"%s flag redefined: %s\", f.name, flag.Name)\n\t\tfmt.Fprintln(f.out(), msg)\n\t\tpanic(msg) // Happens only if flags are declared with identical names\n\t}\n\tif f.formal == nil {\n\t\tf.formal = make(map[NormalizedName]*Flag)\n\t}\n\n\tflag.Name = string(normalizedFlagName)\n\tf.formal[normalizedFlagName] = flag\n\tf.orderedFormal = append(f.orderedFormal, flag)\n\n\tif flag.Shorthand == \"\" {\n\t\treturn\n\t}\n\tif len(flag.Shorthand) > 1 {\n\t\tmsg := fmt.Sprintf(\"%q shorthand is more than one ASCII character\", flag.Shorthand)\n\t\tfmt.Fprintf(f.out(), msg)\n\t\tpanic(msg)\n\t}\n\tif f.shorthands == nil {\n\t\tf.shorthands = make(map[byte]*Flag)\n\t}\n\tc := flag.Shorthand[0]\n\tused, alreadyThere := f.shorthands[c]\n\tif alreadyThere {\n\t\tmsg := fmt.Sprintf(\"unable to redefine %q shorthand in %q flagset: it's already used for %q flag\", c, f.name, used.Name)\n\t\tfmt.Fprintf(f.out(), msg)\n\t\tpanic(msg)\n\t}\n\tf.shorthands[c] = flag\n}\n\n// AddFlagSet adds one FlagSet to another. If a flag is already present in f\n// the flag from newSet will be ignored.\nfunc (f *FlagSet) AddFlagSet(newSet *FlagSet) {\n\tif newSet == nil {\n\t\treturn\n\t}\n\tnewSet.VisitAll(func(flag *Flag) {\n\t\tif f.Lookup(flag.Name) == nil {\n\t\t\tf.AddFlag(flag)\n\t\t}\n\t})\n}\n\n// Var defines a flag with the specified name and usage string. The type and\n// value of the flag are represented by the first argument, of type Value, which\n// typically holds a user-defined implementation of Value. For instance, the\n// caller could create a flag that turns a comma-separated string into a slice\n// of strings by giving the slice the methods of Value; in particular, Set would\n// decompose the comma-separated string into the slice.\nfunc Var(value Value, name string, usage string) {\n\tCommandLine.VarP(value, name, \"\", usage)\n}\n\n// VarP is like Var, but accepts a shorthand letter that can be used after a single dash.\nfunc VarP(value Value, name, shorthand, usage string) {\n\tCommandLine.VarP(value, name, shorthand, usage)\n}\n\n// failf prints to standard error a formatted error and usage message and\n// returns the error.\nfunc (f *FlagSet) failf(format string, a ...interface{}) error {\n\terr := fmt.Errorf(format, a...)\n\tif f.errorHandling != ContinueOnError {\n\t\tfmt.Fprintln(f.out(), err)\n\t\tf.usage()\n\t}\n\treturn err\n}\n\n// usage calls the Usage method for the flag set, or the usage function if\n// the flag set is CommandLine.\nfunc (f *FlagSet) usage() {\n\tif f == CommandLine {\n\t\tUsage()\n\t} else if f.Usage == nil {\n\t\tdefaultUsage(f)\n\t} else {\n\t\tf.Usage()\n\t}\n}\n\n//--unknown (args will be empty)\n//--unknown --next-flag ... (args will be --next-flag ...)\n//--unknown arg ... (args will be arg ...)\nfunc stripUnknownFlagValue(args []string) []string {\n\tif len(args) == 0 {\n\t\t//--unknown\n\t\treturn args\n\t}\n\n\tfirst := args[0]\n\tif len(first) > 0 && first[0] == '-' {\n\t\t//--unknown --next-flag ...\n\t\treturn args\n\t}\n\n\t//--unknown arg ... (args will be arg ...)\n\tif len(args) > 1 {\n\t\treturn args[1:]\n\t}\n\treturn nil\n}\n\nfunc (f *FlagSet) parseLongArg(s string, args []string, fn parseFunc) (a []string, err error) {\n\ta = args\n\tname := s[2:]\n\tif len(name) == 0 || name[0] == '-' || name[0] == '=' {\n\t\terr = f.failf(\"bad flag syntax: %s\", s)\n\t\treturn\n\t}\n\n\tsplit := strings.SplitN(name, \"=\", 2)\n\tname = split[0]\n\tflag, exists := f.formal[f.normalizeFlagName(name)]\n\n\tif !exists {\n\t\tswitch {\n\t\tcase name == \"help\":\n\t\t\tf.usage()\n\t\t\treturn a, ErrHelp\n\t\tcase f.ParseErrorsWhitelist.UnknownFlags:\n\t\t\t// --unknown=unknownval arg ...\n\t\t\t// we do not want to lose arg in this case\n\t\t\tif len(split) >= 2 {\n\t\t\t\treturn a, nil\n\t\t\t}\n\n\t\t\treturn stripUnknownFlagValue(a), nil\n\t\tdefault:\n\t\t\terr = f.failf(\"unknown flag: --%s\", name)\n\t\t\treturn\n\t\t}\n\t}\n\n\tvar value string\n\tif len(split) == 2 {\n\t\t// '--flag=arg'\n\t\tvalue = split[1]\n\t} else if flag.NoOptDefVal != \"\" {\n\t\t// '--flag' (arg was optional)\n\t\tvalue = flag.NoOptDefVal\n\t} else if len(a) > 0 {\n\t\t// '--flag arg'\n\t\tvalue = a[0]\n\t\ta = a[1:]\n\t} else {\n\t\t// '--flag' (arg was required)\n\t\terr = f.failf(\"flag needs an argument: %s\", s)\n\t\treturn\n\t}\n\n\terr = fn(flag, value)\n\tif err != nil {\n\t\tf.failf(err.Error())\n\t}\n\treturn\n}\n\nfunc (f *FlagSet) parseSingleShortArg(shorthands string, args []string, fn parseFunc) (outShorts string, outArgs []string, err error) {\n\toutArgs = args\n\n\tif strings.HasPrefix(shorthands, \"test.\") {\n\t\treturn\n\t}\n\n\toutShorts = shorthands[1:]\n\tc := shorthands[0]\n\n\tflag, exists := f.shorthands[c]\n\tif !exists {\n\t\tswitch {\n\t\tcase c == 'h':\n\t\t\tf.usage()\n\t\t\terr = ErrHelp\n\t\t\treturn\n\t\tcase f.ParseErrorsWhitelist.UnknownFlags:\n\t\t\t// '-f=arg arg ...'\n\t\t\t// we do not want to lose arg in this case\n\t\t\tif len(shorthands) > 2 && shorthands[1] == '=' {\n\t\t\t\toutShorts = \"\"\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\toutArgs = stripUnknownFlagValue(outArgs)\n\t\t\treturn\n\t\tdefault:\n\t\t\terr = f.failf(\"unknown shorthand flag: %q in -%s\", c, shorthands)\n\t\t\treturn\n\t\t}\n\t}\n\n\tvar value string\n\tif len(shorthands) > 2 && shorthands[1] == '=' {\n\t\t// '-f=arg'\n\t\tvalue = shorthands[2:]\n\t\toutShorts = \"\"\n\t} else if flag.NoOptDefVal != \"\" {\n\t\t// '-f' (arg was optional)\n\t\tvalue = flag.NoOptDefVal\n\t} else if len(shorthands) > 1 {\n\t\t// '-farg'\n\t\tvalue = shorthands[1:]\n\t\toutShorts = \"\"\n\t} else if len(args) > 0 {\n\t\t// '-f arg'\n\t\tvalue = args[0]\n\t\toutArgs = args[1:]\n\t} else {\n\t\t// '-f' (arg was required)\n\t\terr = f.failf(\"flag needs an argument: %q in -%s\", c, shorthands)\n\t\treturn\n\t}\n\n\tif flag.ShorthandDeprecated != \"\" {\n\t\tfmt.Fprintf(f.out(), \"Flag shorthand -%s has been deprecated, %s\\n\", flag.Shorthand, flag.ShorthandDeprecated)\n\t}\n\n\terr = fn(flag, value)\n\tif err != nil {\n\t\tf.failf(err.Error())\n\t}\n\treturn\n}\n\nfunc (f *FlagSet) parseShortArg(s string, args []string, fn parseFunc) (a []string, err error) {\n\ta = args\n\tshorthands := s[1:]\n\n\t// \"shorthands\" can be a series of shorthand letters of flags (e.g. \"-vvv\").\n\tfor len(shorthands) > 0 {\n\t\tshorthands, a, err = f.parseSingleShortArg(shorthands, args, fn)\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t}\n\n\treturn\n}\n\nfunc (f *FlagSet) parseArgs(args []string, fn parseFunc) (err error) {\n\tfor len(args) > 0 {\n\t\ts := args[0]\n\t\targs = args[1:]\n\t\tif len(s) == 0 || s[0] != '-' || len(s) == 1 {\n\t\t\tif !f.interspersed {\n\t\t\t\tf.args = append(f.args, s)\n\t\t\t\tf.args = append(f.args, args...)\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tf.args = append(f.args, s)\n\t\t\tcontinue\n\t\t}\n\n\t\tif s[1] == '-' {\n\t\t\tif len(s) == 2 { // \"--\" terminates the flags\n\t\t\t\tf.argsLenAtDash = len(f.args)\n\t\t\t\tf.args = append(f.args, args...)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\targs, err = f.parseLongArg(s, args, fn)\n\t\t} else {\n\t\t\targs, err = f.parseShortArg(s, args, fn)\n\t\t}\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t}\n\treturn\n}\n\n// Parse parses flag definitions from the argument list, which should not\n// include the command name.  Must be called after all flags in the FlagSet\n// are defined and before flags are accessed by the program.\n// The return value will be ErrHelp if -help was set but not defined.\nfunc (f *FlagSet) Parse(arguments []string) error {\n\tif f.addedGoFlagSets != nil {\n\t\tfor _, goFlagSet := range f.addedGoFlagSets {\n\t\t\tgoFlagSet.Parse(nil)\n\t\t}\n\t}\n\tf.parsed = true\n\n\tif len(arguments) < 0 {\n\t\treturn nil\n\t}\n\n\tf.args = make([]string, 0, len(arguments))\n\n\tset := func(flag *Flag, value string) error {\n\t\treturn f.Set(flag.Name, value)\n\t}\n\n\terr := f.parseArgs(arguments, set)\n\tif err != nil {\n\t\tswitch f.errorHandling {\n\t\tcase ContinueOnError:\n\t\t\treturn err\n\t\tcase ExitOnError:\n\t\t\tfmt.Println(err)\n\t\t\tos.Exit(2)\n\t\tcase PanicOnError:\n\t\t\tpanic(err)\n\t\t}\n\t}\n\treturn nil\n}\n\ntype parseFunc func(flag *Flag, value string) error\n\n// ParseAll parses flag definitions from the argument list, which should not\n// include the command name. The arguments for fn are flag and value. Must be\n// called after all flags in the FlagSet are defined and before flags are\n// accessed by the program. The return value will be ErrHelp if -help was set\n// but not defined.\nfunc (f *FlagSet) ParseAll(arguments []string, fn func(flag *Flag, value string) error) error {\n\tf.parsed = true\n\tf.args = make([]string, 0, len(arguments))\n\n\terr := f.parseArgs(arguments, fn)\n\tif err != nil {\n\t\tswitch f.errorHandling {\n\t\tcase ContinueOnError:\n\t\t\treturn err\n\t\tcase ExitOnError:\n\t\t\tos.Exit(2)\n\t\tcase PanicOnError:\n\t\t\tpanic(err)\n\t\t}\n\t}\n\treturn nil\n}\n\n// Parsed reports whether f.Parse has been called.\nfunc (f *FlagSet) Parsed() bool {\n\treturn f.parsed\n}\n\n// Parse parses the command-line flags from os.Args[1:].  Must be called\n// after all flags are defined and before flags are accessed by the program.\nfunc Parse() {\n\t// Ignore errors; CommandLine is set for ExitOnError.\n\tCommandLine.Parse(os.Args[1:])\n}\n\n// ParseAll parses the command-line flags from os.Args[1:] and called fn for each.\n// The arguments for fn are flag and value. Must be called after all flags are\n// defined and before flags are accessed by the program.\nfunc ParseAll(fn func(flag *Flag, value string) error) {\n\t// Ignore errors; CommandLine is set for ExitOnError.\n\tCommandLine.ParseAll(os.Args[1:], fn)\n}\n\n// SetInterspersed sets whether to support interspersed option/non-option arguments.\nfunc SetInterspersed(interspersed bool) {\n\tCommandLine.SetInterspersed(interspersed)\n}\n\n// Parsed returns true if the command-line flags have been parsed.\nfunc Parsed() bool {\n\treturn CommandLine.Parsed()\n}\n\n// CommandLine is the default set of command-line flags, parsed from os.Args.\nvar CommandLine = NewFlagSet(os.Args[0], ExitOnError)\n\n// NewFlagSet returns a new, empty flag set with the specified name,\n// error handling property and SortFlags set to true.\nfunc NewFlagSet(name string, errorHandling ErrorHandling) *FlagSet {\n\tf := &FlagSet{\n\t\tname:          name,\n\t\terrorHandling: errorHandling,\n\t\targsLenAtDash: -1,\n\t\tinterspersed:  true,\n\t\tSortFlags:     true,\n\t}\n\treturn f\n}\n\n// SetInterspersed sets whether to support interspersed option/non-option arguments.\nfunc (f *FlagSet) SetInterspersed(interspersed bool) {\n\tf.interspersed = interspersed\n}\n\n// Init sets the name and error handling property for a flag set.\n// By default, the zero FlagSet uses an empty name and the\n// ContinueOnError error handling policy.\nfunc (f *FlagSet) Init(name string, errorHandling ErrorHandling) {\n\tf.name = name\n\tf.errorHandling = errorHandling\n\tf.argsLenAtDash = -1\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/float32.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- float32 Value\ntype float32Value float32\n\nfunc newFloat32Value(val float32, p *float32) *float32Value {\n\t*p = val\n\treturn (*float32Value)(p)\n}\n\nfunc (f *float32Value) Set(s string) error {\n\tv, err := strconv.ParseFloat(s, 32)\n\t*f = float32Value(v)\n\treturn err\n}\n\nfunc (f *float32Value) Type() string {\n\treturn \"float32\"\n}\n\nfunc (f *float32Value) String() string { return strconv.FormatFloat(float64(*f), 'g', -1, 32) }\n\nfunc float32Conv(sval string) (interface{}, error) {\n\tv, err := strconv.ParseFloat(sval, 32)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn float32(v), nil\n}\n\n// GetFloat32 return the float32 value of a flag with the given name\nfunc (f *FlagSet) GetFloat32(name string) (float32, error) {\n\tval, err := f.getFlagType(name, \"float32\", float32Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(float32), nil\n}\n\n// Float32Var defines a float32 flag with specified name, default value, and usage string.\n// The argument p points to a float32 variable in which to store the value of the flag.\nfunc (f *FlagSet) Float32Var(p *float32, name string, value float32, usage string) {\n\tf.VarP(newFloat32Value(value, p), name, \"\", usage)\n}\n\n// Float32VarP is like Float32Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Float32VarP(p *float32, name, shorthand string, value float32, usage string) {\n\tf.VarP(newFloat32Value(value, p), name, shorthand, usage)\n}\n\n// Float32Var defines a float32 flag with specified name, default value, and usage string.\n// The argument p points to a float32 variable in which to store the value of the flag.\nfunc Float32Var(p *float32, name string, value float32, usage string) {\n\tCommandLine.VarP(newFloat32Value(value, p), name, \"\", usage)\n}\n\n// Float32VarP is like Float32Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Float32VarP(p *float32, name, shorthand string, value float32, usage string) {\n\tCommandLine.VarP(newFloat32Value(value, p), name, shorthand, usage)\n}\n\n// Float32 defines a float32 flag with specified name, default value, and usage string.\n// The return value is the address of a float32 variable that stores the value of the flag.\nfunc (f *FlagSet) Float32(name string, value float32, usage string) *float32 {\n\tp := new(float32)\n\tf.Float32VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Float32P is like Float32, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Float32P(name, shorthand string, value float32, usage string) *float32 {\n\tp := new(float32)\n\tf.Float32VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Float32 defines a float32 flag with specified name, default value, and usage string.\n// The return value is the address of a float32 variable that stores the value of the flag.\nfunc Float32(name string, value float32, usage string) *float32 {\n\treturn CommandLine.Float32P(name, \"\", value, usage)\n}\n\n// Float32P is like Float32, but accepts a shorthand letter that can be used after a single dash.\nfunc Float32P(name, shorthand string, value float32, usage string) *float32 {\n\treturn CommandLine.Float32P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/float32_slice.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// -- float32Slice Value\ntype float32SliceValue struct {\n\tvalue   *[]float32\n\tchanged bool\n}\n\nfunc newFloat32SliceValue(val []float32, p *[]float32) *float32SliceValue {\n\tisv := new(float32SliceValue)\n\tisv.value = p\n\t*isv.value = val\n\treturn isv\n}\n\nfunc (s *float32SliceValue) Set(val string) error {\n\tss := strings.Split(val, \",\")\n\tout := make([]float32, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tvar temp64 float64\n\t\ttemp64, err = strconv.ParseFloat(d, 32)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tout[i] = float32(temp64)\n\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\t*s.value = append(*s.value, out...)\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *float32SliceValue) Type() string {\n\treturn \"float32Slice\"\n}\n\nfunc (s *float32SliceValue) String() string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = fmt.Sprintf(\"%f\", d)\n\t}\n\treturn \"[\" + strings.Join(out, \",\") + \"]\"\n}\n\nfunc (s *float32SliceValue) fromString(val string) (float32, error) {\n\tt64, err := strconv.ParseFloat(val, 32)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn float32(t64), nil\n}\n\nfunc (s *float32SliceValue) toString(val float32) string {\n\treturn fmt.Sprintf(\"%f\", val)\n}\n\nfunc (s *float32SliceValue) Append(val string) error {\n\ti, err := s.fromString(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\t*s.value = append(*s.value, i)\n\treturn nil\n}\n\nfunc (s *float32SliceValue) Replace(val []string) error {\n\tout := make([]float32, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i], err = s.fromString(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *float32SliceValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = s.toString(d)\n\t}\n\treturn out\n}\n\nfunc float32SliceConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// Empty string would cause a slice with one (empty) entry\n\tif len(val) == 0 {\n\t\treturn []float32{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make([]float32, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tvar temp64 float64\n\t\ttemp64, err = strconv.ParseFloat(d, 32)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tout[i] = float32(temp64)\n\n\t}\n\treturn out, nil\n}\n\n// GetFloat32Slice return the []float32 value of a flag with the given name\nfunc (f *FlagSet) GetFloat32Slice(name string) ([]float32, error) {\n\tval, err := f.getFlagType(name, \"float32Slice\", float32SliceConv)\n\tif err != nil {\n\t\treturn []float32{}, err\n\t}\n\treturn val.([]float32), nil\n}\n\n// Float32SliceVar defines a float32Slice flag with specified name, default value, and usage string.\n// The argument p points to a []float32 variable in which to store the value of the flag.\nfunc (f *FlagSet) Float32SliceVar(p *[]float32, name string, value []float32, usage string) {\n\tf.VarP(newFloat32SliceValue(value, p), name, \"\", usage)\n}\n\n// Float32SliceVarP is like Float32SliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Float32SliceVarP(p *[]float32, name, shorthand string, value []float32, usage string) {\n\tf.VarP(newFloat32SliceValue(value, p), name, shorthand, usage)\n}\n\n// Float32SliceVar defines a float32[] flag with specified name, default value, and usage string.\n// The argument p points to a float32[] variable in which to store the value of the flag.\nfunc Float32SliceVar(p *[]float32, name string, value []float32, usage string) {\n\tCommandLine.VarP(newFloat32SliceValue(value, p), name, \"\", usage)\n}\n\n// Float32SliceVarP is like Float32SliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc Float32SliceVarP(p *[]float32, name, shorthand string, value []float32, usage string) {\n\tCommandLine.VarP(newFloat32SliceValue(value, p), name, shorthand, usage)\n}\n\n// Float32Slice defines a []float32 flag with specified name, default value, and usage string.\n// The return value is the address of a []float32 variable that stores the value of the flag.\nfunc (f *FlagSet) Float32Slice(name string, value []float32, usage string) *[]float32 {\n\tp := []float32{}\n\tf.Float32SliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// Float32SliceP is like Float32Slice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Float32SliceP(name, shorthand string, value []float32, usage string) *[]float32 {\n\tp := []float32{}\n\tf.Float32SliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// Float32Slice defines a []float32 flag with specified name, default value, and usage string.\n// The return value is the address of a []float32 variable that stores the value of the flag.\nfunc Float32Slice(name string, value []float32, usage string) *[]float32 {\n\treturn CommandLine.Float32SliceP(name, \"\", value, usage)\n}\n\n// Float32SliceP is like Float32Slice, but accepts a shorthand letter that can be used after a single dash.\nfunc Float32SliceP(name, shorthand string, value []float32, usage string) *[]float32 {\n\treturn CommandLine.Float32SliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/float64.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- float64 Value\ntype float64Value float64\n\nfunc newFloat64Value(val float64, p *float64) *float64Value {\n\t*p = val\n\treturn (*float64Value)(p)\n}\n\nfunc (f *float64Value) Set(s string) error {\n\tv, err := strconv.ParseFloat(s, 64)\n\t*f = float64Value(v)\n\treturn err\n}\n\nfunc (f *float64Value) Type() string {\n\treturn \"float64\"\n}\n\nfunc (f *float64Value) String() string { return strconv.FormatFloat(float64(*f), 'g', -1, 64) }\n\nfunc float64Conv(sval string) (interface{}, error) {\n\treturn strconv.ParseFloat(sval, 64)\n}\n\n// GetFloat64 return the float64 value of a flag with the given name\nfunc (f *FlagSet) GetFloat64(name string) (float64, error) {\n\tval, err := f.getFlagType(name, \"float64\", float64Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(float64), nil\n}\n\n// Float64Var defines a float64 flag with specified name, default value, and usage string.\n// The argument p points to a float64 variable in which to store the value of the flag.\nfunc (f *FlagSet) Float64Var(p *float64, name string, value float64, usage string) {\n\tf.VarP(newFloat64Value(value, p), name, \"\", usage)\n}\n\n// Float64VarP is like Float64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Float64VarP(p *float64, name, shorthand string, value float64, usage string) {\n\tf.VarP(newFloat64Value(value, p), name, shorthand, usage)\n}\n\n// Float64Var defines a float64 flag with specified name, default value, and usage string.\n// The argument p points to a float64 variable in which to store the value of the flag.\nfunc Float64Var(p *float64, name string, value float64, usage string) {\n\tCommandLine.VarP(newFloat64Value(value, p), name, \"\", usage)\n}\n\n// Float64VarP is like Float64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Float64VarP(p *float64, name, shorthand string, value float64, usage string) {\n\tCommandLine.VarP(newFloat64Value(value, p), name, shorthand, usage)\n}\n\n// Float64 defines a float64 flag with specified name, default value, and usage string.\n// The return value is the address of a float64 variable that stores the value of the flag.\nfunc (f *FlagSet) Float64(name string, value float64, usage string) *float64 {\n\tp := new(float64)\n\tf.Float64VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Float64P is like Float64, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Float64P(name, shorthand string, value float64, usage string) *float64 {\n\tp := new(float64)\n\tf.Float64VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Float64 defines a float64 flag with specified name, default value, and usage string.\n// The return value is the address of a float64 variable that stores the value of the flag.\nfunc Float64(name string, value float64, usage string) *float64 {\n\treturn CommandLine.Float64P(name, \"\", value, usage)\n}\n\n// Float64P is like Float64, but accepts a shorthand letter that can be used after a single dash.\nfunc Float64P(name, shorthand string, value float64, usage string) *float64 {\n\treturn CommandLine.Float64P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/float64_slice.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// -- float64Slice Value\ntype float64SliceValue struct {\n\tvalue   *[]float64\n\tchanged bool\n}\n\nfunc newFloat64SliceValue(val []float64, p *[]float64) *float64SliceValue {\n\tisv := new(float64SliceValue)\n\tisv.value = p\n\t*isv.value = val\n\treturn isv\n}\n\nfunc (s *float64SliceValue) Set(val string) error {\n\tss := strings.Split(val, \",\")\n\tout := make([]float64, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tout[i], err = strconv.ParseFloat(d, 64)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\t*s.value = append(*s.value, out...)\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *float64SliceValue) Type() string {\n\treturn \"float64Slice\"\n}\n\nfunc (s *float64SliceValue) String() string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = fmt.Sprintf(\"%f\", d)\n\t}\n\treturn \"[\" + strings.Join(out, \",\") + \"]\"\n}\n\nfunc (s *float64SliceValue) fromString(val string) (float64, error) {\n\treturn strconv.ParseFloat(val, 64)\n}\n\nfunc (s *float64SliceValue) toString(val float64) string {\n\treturn fmt.Sprintf(\"%f\", val)\n}\n\nfunc (s *float64SliceValue) Append(val string) error {\n\ti, err := s.fromString(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\t*s.value = append(*s.value, i)\n\treturn nil\n}\n\nfunc (s *float64SliceValue) Replace(val []string) error {\n\tout := make([]float64, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i], err = s.fromString(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *float64SliceValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = s.toString(d)\n\t}\n\treturn out\n}\n\nfunc float64SliceConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// Empty string would cause a slice with one (empty) entry\n\tif len(val) == 0 {\n\t\treturn []float64{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make([]float64, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tout[i], err = strconv.ParseFloat(d, 64)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t}\n\treturn out, nil\n}\n\n// GetFloat64Slice return the []float64 value of a flag with the given name\nfunc (f *FlagSet) GetFloat64Slice(name string) ([]float64, error) {\n\tval, err := f.getFlagType(name, \"float64Slice\", float64SliceConv)\n\tif err != nil {\n\t\treturn []float64{}, err\n\t}\n\treturn val.([]float64), nil\n}\n\n// Float64SliceVar defines a float64Slice flag with specified name, default value, and usage string.\n// The argument p points to a []float64 variable in which to store the value of the flag.\nfunc (f *FlagSet) Float64SliceVar(p *[]float64, name string, value []float64, usage string) {\n\tf.VarP(newFloat64SliceValue(value, p), name, \"\", usage)\n}\n\n// Float64SliceVarP is like Float64SliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Float64SliceVarP(p *[]float64, name, shorthand string, value []float64, usage string) {\n\tf.VarP(newFloat64SliceValue(value, p), name, shorthand, usage)\n}\n\n// Float64SliceVar defines a float64[] flag with specified name, default value, and usage string.\n// The argument p points to a float64[] variable in which to store the value of the flag.\nfunc Float64SliceVar(p *[]float64, name string, value []float64, usage string) {\n\tCommandLine.VarP(newFloat64SliceValue(value, p), name, \"\", usage)\n}\n\n// Float64SliceVarP is like Float64SliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc Float64SliceVarP(p *[]float64, name, shorthand string, value []float64, usage string) {\n\tCommandLine.VarP(newFloat64SliceValue(value, p), name, shorthand, usage)\n}\n\n// Float64Slice defines a []float64 flag with specified name, default value, and usage string.\n// The return value is the address of a []float64 variable that stores the value of the flag.\nfunc (f *FlagSet) Float64Slice(name string, value []float64, usage string) *[]float64 {\n\tp := []float64{}\n\tf.Float64SliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// Float64SliceP is like Float64Slice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Float64SliceP(name, shorthand string, value []float64, usage string) *[]float64 {\n\tp := []float64{}\n\tf.Float64SliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// Float64Slice defines a []float64 flag with specified name, default value, and usage string.\n// The return value is the address of a []float64 variable that stores the value of the flag.\nfunc Float64Slice(name string, value []float64, usage string) *[]float64 {\n\treturn CommandLine.Float64SliceP(name, \"\", value, usage)\n}\n\n// Float64SliceP is like Float64Slice, but accepts a shorthand letter that can be used after a single dash.\nfunc Float64SliceP(name, shorthand string, value []float64, usage string) *[]float64 {\n\treturn CommandLine.Float64SliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/go.mod",
    "content": "module github.com/spf13/pflag\n\ngo 1.12\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/go.sum",
    "content": ""
  },
  {
    "path": "vendor/github.com/spf13/pflag/golangflag.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage pflag\n\nimport (\n\tgoflag \"flag\"\n\t\"reflect\"\n\t\"strings\"\n)\n\n// flagValueWrapper implements pflag.Value around a flag.Value.  The main\n// difference here is the addition of the Type method that returns a string\n// name of the type.  As this is generally unknown, we approximate that with\n// reflection.\ntype flagValueWrapper struct {\n\tinner    goflag.Value\n\tflagType string\n}\n\n// We are just copying the boolFlag interface out of goflag as that is what\n// they use to decide if a flag should get \"true\" when no arg is given.\ntype goBoolFlag interface {\n\tgoflag.Value\n\tIsBoolFlag() bool\n}\n\nfunc wrapFlagValue(v goflag.Value) Value {\n\t// If the flag.Value happens to also be a pflag.Value, just use it directly.\n\tif pv, ok := v.(Value); ok {\n\t\treturn pv\n\t}\n\n\tpv := &flagValueWrapper{\n\t\tinner: v,\n\t}\n\n\tt := reflect.TypeOf(v)\n\tif t.Kind() == reflect.Interface || t.Kind() == reflect.Ptr {\n\t\tt = t.Elem()\n\t}\n\n\tpv.flagType = strings.TrimSuffix(t.Name(), \"Value\")\n\treturn pv\n}\n\nfunc (v *flagValueWrapper) String() string {\n\treturn v.inner.String()\n}\n\nfunc (v *flagValueWrapper) Set(s string) error {\n\treturn v.inner.Set(s)\n}\n\nfunc (v *flagValueWrapper) Type() string {\n\treturn v.flagType\n}\n\n// PFlagFromGoFlag will return a *pflag.Flag given a *flag.Flag\n// If the *flag.Flag.Name was a single character (ex: `v`) it will be accessiblei\n// with both `-v` and `--v` in flags. If the golang flag was more than a single\n// character (ex: `verbose`) it will only be accessible via `--verbose`\nfunc PFlagFromGoFlag(goflag *goflag.Flag) *Flag {\n\t// Remember the default value as a string; it won't change.\n\tflag := &Flag{\n\t\tName:  goflag.Name,\n\t\tUsage: goflag.Usage,\n\t\tValue: wrapFlagValue(goflag.Value),\n\t\t// Looks like golang flags don't set DefValue correctly  :-(\n\t\t//DefValue: goflag.DefValue,\n\t\tDefValue: goflag.Value.String(),\n\t}\n\t// Ex: if the golang flag was -v, allow both -v and --v to work\n\tif len(flag.Name) == 1 {\n\t\tflag.Shorthand = flag.Name\n\t}\n\tif fv, ok := goflag.Value.(goBoolFlag); ok && fv.IsBoolFlag() {\n\t\tflag.NoOptDefVal = \"true\"\n\t}\n\treturn flag\n}\n\n// AddGoFlag will add the given *flag.Flag to the pflag.FlagSet\nfunc (f *FlagSet) AddGoFlag(goflag *goflag.Flag) {\n\tif f.Lookup(goflag.Name) != nil {\n\t\treturn\n\t}\n\tnewflag := PFlagFromGoFlag(goflag)\n\tf.AddFlag(newflag)\n}\n\n// AddGoFlagSet will add the given *flag.FlagSet to the pflag.FlagSet\nfunc (f *FlagSet) AddGoFlagSet(newSet *goflag.FlagSet) {\n\tif newSet == nil {\n\t\treturn\n\t}\n\tnewSet.VisitAll(func(goflag *goflag.Flag) {\n\t\tf.AddGoFlag(goflag)\n\t})\n\tif f.addedGoFlagSets == nil {\n\t\tf.addedGoFlagSets = make([]*goflag.FlagSet, 0)\n\t}\n\tf.addedGoFlagSets = append(f.addedGoFlagSets, newSet)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/int.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- int Value\ntype intValue int\n\nfunc newIntValue(val int, p *int) *intValue {\n\t*p = val\n\treturn (*intValue)(p)\n}\n\nfunc (i *intValue) Set(s string) error {\n\tv, err := strconv.ParseInt(s, 0, 64)\n\t*i = intValue(v)\n\treturn err\n}\n\nfunc (i *intValue) Type() string {\n\treturn \"int\"\n}\n\nfunc (i *intValue) String() string { return strconv.Itoa(int(*i)) }\n\nfunc intConv(sval string) (interface{}, error) {\n\treturn strconv.Atoi(sval)\n}\n\n// GetInt return the int value of a flag with the given name\nfunc (f *FlagSet) GetInt(name string) (int, error) {\n\tval, err := f.getFlagType(name, \"int\", intConv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(int), nil\n}\n\n// IntVar defines an int flag with specified name, default value, and usage string.\n// The argument p points to an int variable in which to store the value of the flag.\nfunc (f *FlagSet) IntVar(p *int, name string, value int, usage string) {\n\tf.VarP(newIntValue(value, p), name, \"\", usage)\n}\n\n// IntVarP is like IntVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IntVarP(p *int, name, shorthand string, value int, usage string) {\n\tf.VarP(newIntValue(value, p), name, shorthand, usage)\n}\n\n// IntVar defines an int flag with specified name, default value, and usage string.\n// The argument p points to an int variable in which to store the value of the flag.\nfunc IntVar(p *int, name string, value int, usage string) {\n\tCommandLine.VarP(newIntValue(value, p), name, \"\", usage)\n}\n\n// IntVarP is like IntVar, but accepts a shorthand letter that can be used after a single dash.\nfunc IntVarP(p *int, name, shorthand string, value int, usage string) {\n\tCommandLine.VarP(newIntValue(value, p), name, shorthand, usage)\n}\n\n// Int defines an int flag with specified name, default value, and usage string.\n// The return value is the address of an int variable that stores the value of the flag.\nfunc (f *FlagSet) Int(name string, value int, usage string) *int {\n\tp := new(int)\n\tf.IntVarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// IntP is like Int, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IntP(name, shorthand string, value int, usage string) *int {\n\tp := new(int)\n\tf.IntVarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Int defines an int flag with specified name, default value, and usage string.\n// The return value is the address of an int variable that stores the value of the flag.\nfunc Int(name string, value int, usage string) *int {\n\treturn CommandLine.IntP(name, \"\", value, usage)\n}\n\n// IntP is like Int, but accepts a shorthand letter that can be used after a single dash.\nfunc IntP(name, shorthand string, value int, usage string) *int {\n\treturn CommandLine.IntP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/int16.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- int16 Value\ntype int16Value int16\n\nfunc newInt16Value(val int16, p *int16) *int16Value {\n\t*p = val\n\treturn (*int16Value)(p)\n}\n\nfunc (i *int16Value) Set(s string) error {\n\tv, err := strconv.ParseInt(s, 0, 16)\n\t*i = int16Value(v)\n\treturn err\n}\n\nfunc (i *int16Value) Type() string {\n\treturn \"int16\"\n}\n\nfunc (i *int16Value) String() string { return strconv.FormatInt(int64(*i), 10) }\n\nfunc int16Conv(sval string) (interface{}, error) {\n\tv, err := strconv.ParseInt(sval, 0, 16)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn int16(v), nil\n}\n\n// GetInt16 returns the int16 value of a flag with the given name\nfunc (f *FlagSet) GetInt16(name string) (int16, error) {\n\tval, err := f.getFlagType(name, \"int16\", int16Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(int16), nil\n}\n\n// Int16Var defines an int16 flag with specified name, default value, and usage string.\n// The argument p points to an int16 variable in which to store the value of the flag.\nfunc (f *FlagSet) Int16Var(p *int16, name string, value int16, usage string) {\n\tf.VarP(newInt16Value(value, p), name, \"\", usage)\n}\n\n// Int16VarP is like Int16Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int16VarP(p *int16, name, shorthand string, value int16, usage string) {\n\tf.VarP(newInt16Value(value, p), name, shorthand, usage)\n}\n\n// Int16Var defines an int16 flag with specified name, default value, and usage string.\n// The argument p points to an int16 variable in which to store the value of the flag.\nfunc Int16Var(p *int16, name string, value int16, usage string) {\n\tCommandLine.VarP(newInt16Value(value, p), name, \"\", usage)\n}\n\n// Int16VarP is like Int16Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Int16VarP(p *int16, name, shorthand string, value int16, usage string) {\n\tCommandLine.VarP(newInt16Value(value, p), name, shorthand, usage)\n}\n\n// Int16 defines an int16 flag with specified name, default value, and usage string.\n// The return value is the address of an int16 variable that stores the value of the flag.\nfunc (f *FlagSet) Int16(name string, value int16, usage string) *int16 {\n\tp := new(int16)\n\tf.Int16VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Int16P is like Int16, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int16P(name, shorthand string, value int16, usage string) *int16 {\n\tp := new(int16)\n\tf.Int16VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Int16 defines an int16 flag with specified name, default value, and usage string.\n// The return value is the address of an int16 variable that stores the value of the flag.\nfunc Int16(name string, value int16, usage string) *int16 {\n\treturn CommandLine.Int16P(name, \"\", value, usage)\n}\n\n// Int16P is like Int16, but accepts a shorthand letter that can be used after a single dash.\nfunc Int16P(name, shorthand string, value int16, usage string) *int16 {\n\treturn CommandLine.Int16P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/int32.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- int32 Value\ntype int32Value int32\n\nfunc newInt32Value(val int32, p *int32) *int32Value {\n\t*p = val\n\treturn (*int32Value)(p)\n}\n\nfunc (i *int32Value) Set(s string) error {\n\tv, err := strconv.ParseInt(s, 0, 32)\n\t*i = int32Value(v)\n\treturn err\n}\n\nfunc (i *int32Value) Type() string {\n\treturn \"int32\"\n}\n\nfunc (i *int32Value) String() string { return strconv.FormatInt(int64(*i), 10) }\n\nfunc int32Conv(sval string) (interface{}, error) {\n\tv, err := strconv.ParseInt(sval, 0, 32)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn int32(v), nil\n}\n\n// GetInt32 return the int32 value of a flag with the given name\nfunc (f *FlagSet) GetInt32(name string) (int32, error) {\n\tval, err := f.getFlagType(name, \"int32\", int32Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(int32), nil\n}\n\n// Int32Var defines an int32 flag with specified name, default value, and usage string.\n// The argument p points to an int32 variable in which to store the value of the flag.\nfunc (f *FlagSet) Int32Var(p *int32, name string, value int32, usage string) {\n\tf.VarP(newInt32Value(value, p), name, \"\", usage)\n}\n\n// Int32VarP is like Int32Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int32VarP(p *int32, name, shorthand string, value int32, usage string) {\n\tf.VarP(newInt32Value(value, p), name, shorthand, usage)\n}\n\n// Int32Var defines an int32 flag with specified name, default value, and usage string.\n// The argument p points to an int32 variable in which to store the value of the flag.\nfunc Int32Var(p *int32, name string, value int32, usage string) {\n\tCommandLine.VarP(newInt32Value(value, p), name, \"\", usage)\n}\n\n// Int32VarP is like Int32Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Int32VarP(p *int32, name, shorthand string, value int32, usage string) {\n\tCommandLine.VarP(newInt32Value(value, p), name, shorthand, usage)\n}\n\n// Int32 defines an int32 flag with specified name, default value, and usage string.\n// The return value is the address of an int32 variable that stores the value of the flag.\nfunc (f *FlagSet) Int32(name string, value int32, usage string) *int32 {\n\tp := new(int32)\n\tf.Int32VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Int32P is like Int32, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int32P(name, shorthand string, value int32, usage string) *int32 {\n\tp := new(int32)\n\tf.Int32VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Int32 defines an int32 flag with specified name, default value, and usage string.\n// The return value is the address of an int32 variable that stores the value of the flag.\nfunc Int32(name string, value int32, usage string) *int32 {\n\treturn CommandLine.Int32P(name, \"\", value, usage)\n}\n\n// Int32P is like Int32, but accepts a shorthand letter that can be used after a single dash.\nfunc Int32P(name, shorthand string, value int32, usage string) *int32 {\n\treturn CommandLine.Int32P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/int32_slice.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// -- int32Slice Value\ntype int32SliceValue struct {\n\tvalue   *[]int32\n\tchanged bool\n}\n\nfunc newInt32SliceValue(val []int32, p *[]int32) *int32SliceValue {\n\tisv := new(int32SliceValue)\n\tisv.value = p\n\t*isv.value = val\n\treturn isv\n}\n\nfunc (s *int32SliceValue) Set(val string) error {\n\tss := strings.Split(val, \",\")\n\tout := make([]int32, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tvar temp64 int64\n\t\ttemp64, err = strconv.ParseInt(d, 0, 32)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tout[i] = int32(temp64)\n\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\t*s.value = append(*s.value, out...)\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *int32SliceValue) Type() string {\n\treturn \"int32Slice\"\n}\n\nfunc (s *int32SliceValue) String() string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = fmt.Sprintf(\"%d\", d)\n\t}\n\treturn \"[\" + strings.Join(out, \",\") + \"]\"\n}\n\nfunc (s *int32SliceValue) fromString(val string) (int32, error) {\n\tt64, err := strconv.ParseInt(val, 0, 32)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn int32(t64), nil\n}\n\nfunc (s *int32SliceValue) toString(val int32) string {\n\treturn fmt.Sprintf(\"%d\", val)\n}\n\nfunc (s *int32SliceValue) Append(val string) error {\n\ti, err := s.fromString(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\t*s.value = append(*s.value, i)\n\treturn nil\n}\n\nfunc (s *int32SliceValue) Replace(val []string) error {\n\tout := make([]int32, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i], err = s.fromString(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *int32SliceValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = s.toString(d)\n\t}\n\treturn out\n}\n\nfunc int32SliceConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// Empty string would cause a slice with one (empty) entry\n\tif len(val) == 0 {\n\t\treturn []int32{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make([]int32, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tvar temp64 int64\n\t\ttemp64, err = strconv.ParseInt(d, 0, 32)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tout[i] = int32(temp64)\n\n\t}\n\treturn out, nil\n}\n\n// GetInt32Slice return the []int32 value of a flag with the given name\nfunc (f *FlagSet) GetInt32Slice(name string) ([]int32, error) {\n\tval, err := f.getFlagType(name, \"int32Slice\", int32SliceConv)\n\tif err != nil {\n\t\treturn []int32{}, err\n\t}\n\treturn val.([]int32), nil\n}\n\n// Int32SliceVar defines a int32Slice flag with specified name, default value, and usage string.\n// The argument p points to a []int32 variable in which to store the value of the flag.\nfunc (f *FlagSet) Int32SliceVar(p *[]int32, name string, value []int32, usage string) {\n\tf.VarP(newInt32SliceValue(value, p), name, \"\", usage)\n}\n\n// Int32SliceVarP is like Int32SliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int32SliceVarP(p *[]int32, name, shorthand string, value []int32, usage string) {\n\tf.VarP(newInt32SliceValue(value, p), name, shorthand, usage)\n}\n\n// Int32SliceVar defines a int32[] flag with specified name, default value, and usage string.\n// The argument p points to a int32[] variable in which to store the value of the flag.\nfunc Int32SliceVar(p *[]int32, name string, value []int32, usage string) {\n\tCommandLine.VarP(newInt32SliceValue(value, p), name, \"\", usage)\n}\n\n// Int32SliceVarP is like Int32SliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc Int32SliceVarP(p *[]int32, name, shorthand string, value []int32, usage string) {\n\tCommandLine.VarP(newInt32SliceValue(value, p), name, shorthand, usage)\n}\n\n// Int32Slice defines a []int32 flag with specified name, default value, and usage string.\n// The return value is the address of a []int32 variable that stores the value of the flag.\nfunc (f *FlagSet) Int32Slice(name string, value []int32, usage string) *[]int32 {\n\tp := []int32{}\n\tf.Int32SliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// Int32SliceP is like Int32Slice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int32SliceP(name, shorthand string, value []int32, usage string) *[]int32 {\n\tp := []int32{}\n\tf.Int32SliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// Int32Slice defines a []int32 flag with specified name, default value, and usage string.\n// The return value is the address of a []int32 variable that stores the value of the flag.\nfunc Int32Slice(name string, value []int32, usage string) *[]int32 {\n\treturn CommandLine.Int32SliceP(name, \"\", value, usage)\n}\n\n// Int32SliceP is like Int32Slice, but accepts a shorthand letter that can be used after a single dash.\nfunc Int32SliceP(name, shorthand string, value []int32, usage string) *[]int32 {\n\treturn CommandLine.Int32SliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/int64.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- int64 Value\ntype int64Value int64\n\nfunc newInt64Value(val int64, p *int64) *int64Value {\n\t*p = val\n\treturn (*int64Value)(p)\n}\n\nfunc (i *int64Value) Set(s string) error {\n\tv, err := strconv.ParseInt(s, 0, 64)\n\t*i = int64Value(v)\n\treturn err\n}\n\nfunc (i *int64Value) Type() string {\n\treturn \"int64\"\n}\n\nfunc (i *int64Value) String() string { return strconv.FormatInt(int64(*i), 10) }\n\nfunc int64Conv(sval string) (interface{}, error) {\n\treturn strconv.ParseInt(sval, 0, 64)\n}\n\n// GetInt64 return the int64 value of a flag with the given name\nfunc (f *FlagSet) GetInt64(name string) (int64, error) {\n\tval, err := f.getFlagType(name, \"int64\", int64Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(int64), nil\n}\n\n// Int64Var defines an int64 flag with specified name, default value, and usage string.\n// The argument p points to an int64 variable in which to store the value of the flag.\nfunc (f *FlagSet) Int64Var(p *int64, name string, value int64, usage string) {\n\tf.VarP(newInt64Value(value, p), name, \"\", usage)\n}\n\n// Int64VarP is like Int64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int64VarP(p *int64, name, shorthand string, value int64, usage string) {\n\tf.VarP(newInt64Value(value, p), name, shorthand, usage)\n}\n\n// Int64Var defines an int64 flag with specified name, default value, and usage string.\n// The argument p points to an int64 variable in which to store the value of the flag.\nfunc Int64Var(p *int64, name string, value int64, usage string) {\n\tCommandLine.VarP(newInt64Value(value, p), name, \"\", usage)\n}\n\n// Int64VarP is like Int64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Int64VarP(p *int64, name, shorthand string, value int64, usage string) {\n\tCommandLine.VarP(newInt64Value(value, p), name, shorthand, usage)\n}\n\n// Int64 defines an int64 flag with specified name, default value, and usage string.\n// The return value is the address of an int64 variable that stores the value of the flag.\nfunc (f *FlagSet) Int64(name string, value int64, usage string) *int64 {\n\tp := new(int64)\n\tf.Int64VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Int64P is like Int64, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int64P(name, shorthand string, value int64, usage string) *int64 {\n\tp := new(int64)\n\tf.Int64VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Int64 defines an int64 flag with specified name, default value, and usage string.\n// The return value is the address of an int64 variable that stores the value of the flag.\nfunc Int64(name string, value int64, usage string) *int64 {\n\treturn CommandLine.Int64P(name, \"\", value, usage)\n}\n\n// Int64P is like Int64, but accepts a shorthand letter that can be used after a single dash.\nfunc Int64P(name, shorthand string, value int64, usage string) *int64 {\n\treturn CommandLine.Int64P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/int64_slice.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// -- int64Slice Value\ntype int64SliceValue struct {\n\tvalue   *[]int64\n\tchanged bool\n}\n\nfunc newInt64SliceValue(val []int64, p *[]int64) *int64SliceValue {\n\tisv := new(int64SliceValue)\n\tisv.value = p\n\t*isv.value = val\n\treturn isv\n}\n\nfunc (s *int64SliceValue) Set(val string) error {\n\tss := strings.Split(val, \",\")\n\tout := make([]int64, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tout[i], err = strconv.ParseInt(d, 0, 64)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\t*s.value = append(*s.value, out...)\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *int64SliceValue) Type() string {\n\treturn \"int64Slice\"\n}\n\nfunc (s *int64SliceValue) String() string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = fmt.Sprintf(\"%d\", d)\n\t}\n\treturn \"[\" + strings.Join(out, \",\") + \"]\"\n}\n\nfunc (s *int64SliceValue) fromString(val string) (int64, error) {\n\treturn strconv.ParseInt(val, 0, 64)\n}\n\nfunc (s *int64SliceValue) toString(val int64) string {\n\treturn fmt.Sprintf(\"%d\", val)\n}\n\nfunc (s *int64SliceValue) Append(val string) error {\n\ti, err := s.fromString(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\t*s.value = append(*s.value, i)\n\treturn nil\n}\n\nfunc (s *int64SliceValue) Replace(val []string) error {\n\tout := make([]int64, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i], err = s.fromString(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *int64SliceValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = s.toString(d)\n\t}\n\treturn out\n}\n\nfunc int64SliceConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// Empty string would cause a slice with one (empty) entry\n\tif len(val) == 0 {\n\t\treturn []int64{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make([]int64, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tout[i], err = strconv.ParseInt(d, 0, 64)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t}\n\treturn out, nil\n}\n\n// GetInt64Slice return the []int64 value of a flag with the given name\nfunc (f *FlagSet) GetInt64Slice(name string) ([]int64, error) {\n\tval, err := f.getFlagType(name, \"int64Slice\", int64SliceConv)\n\tif err != nil {\n\t\treturn []int64{}, err\n\t}\n\treturn val.([]int64), nil\n}\n\n// Int64SliceVar defines a int64Slice flag with specified name, default value, and usage string.\n// The argument p points to a []int64 variable in which to store the value of the flag.\nfunc (f *FlagSet) Int64SliceVar(p *[]int64, name string, value []int64, usage string) {\n\tf.VarP(newInt64SliceValue(value, p), name, \"\", usage)\n}\n\n// Int64SliceVarP is like Int64SliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int64SliceVarP(p *[]int64, name, shorthand string, value []int64, usage string) {\n\tf.VarP(newInt64SliceValue(value, p), name, shorthand, usage)\n}\n\n// Int64SliceVar defines a int64[] flag with specified name, default value, and usage string.\n// The argument p points to a int64[] variable in which to store the value of the flag.\nfunc Int64SliceVar(p *[]int64, name string, value []int64, usage string) {\n\tCommandLine.VarP(newInt64SliceValue(value, p), name, \"\", usage)\n}\n\n// Int64SliceVarP is like Int64SliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc Int64SliceVarP(p *[]int64, name, shorthand string, value []int64, usage string) {\n\tCommandLine.VarP(newInt64SliceValue(value, p), name, shorthand, usage)\n}\n\n// Int64Slice defines a []int64 flag with specified name, default value, and usage string.\n// The return value is the address of a []int64 variable that stores the value of the flag.\nfunc (f *FlagSet) Int64Slice(name string, value []int64, usage string) *[]int64 {\n\tp := []int64{}\n\tf.Int64SliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// Int64SliceP is like Int64Slice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int64SliceP(name, shorthand string, value []int64, usage string) *[]int64 {\n\tp := []int64{}\n\tf.Int64SliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// Int64Slice defines a []int64 flag with specified name, default value, and usage string.\n// The return value is the address of a []int64 variable that stores the value of the flag.\nfunc Int64Slice(name string, value []int64, usage string) *[]int64 {\n\treturn CommandLine.Int64SliceP(name, \"\", value, usage)\n}\n\n// Int64SliceP is like Int64Slice, but accepts a shorthand letter that can be used after a single dash.\nfunc Int64SliceP(name, shorthand string, value []int64, usage string) *[]int64 {\n\treturn CommandLine.Int64SliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/int8.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- int8 Value\ntype int8Value int8\n\nfunc newInt8Value(val int8, p *int8) *int8Value {\n\t*p = val\n\treturn (*int8Value)(p)\n}\n\nfunc (i *int8Value) Set(s string) error {\n\tv, err := strconv.ParseInt(s, 0, 8)\n\t*i = int8Value(v)\n\treturn err\n}\n\nfunc (i *int8Value) Type() string {\n\treturn \"int8\"\n}\n\nfunc (i *int8Value) String() string { return strconv.FormatInt(int64(*i), 10) }\n\nfunc int8Conv(sval string) (interface{}, error) {\n\tv, err := strconv.ParseInt(sval, 0, 8)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn int8(v), nil\n}\n\n// GetInt8 return the int8 value of a flag with the given name\nfunc (f *FlagSet) GetInt8(name string) (int8, error) {\n\tval, err := f.getFlagType(name, \"int8\", int8Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(int8), nil\n}\n\n// Int8Var defines an int8 flag with specified name, default value, and usage string.\n// The argument p points to an int8 variable in which to store the value of the flag.\nfunc (f *FlagSet) Int8Var(p *int8, name string, value int8, usage string) {\n\tf.VarP(newInt8Value(value, p), name, \"\", usage)\n}\n\n// Int8VarP is like Int8Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int8VarP(p *int8, name, shorthand string, value int8, usage string) {\n\tf.VarP(newInt8Value(value, p), name, shorthand, usage)\n}\n\n// Int8Var defines an int8 flag with specified name, default value, and usage string.\n// The argument p points to an int8 variable in which to store the value of the flag.\nfunc Int8Var(p *int8, name string, value int8, usage string) {\n\tCommandLine.VarP(newInt8Value(value, p), name, \"\", usage)\n}\n\n// Int8VarP is like Int8Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Int8VarP(p *int8, name, shorthand string, value int8, usage string) {\n\tCommandLine.VarP(newInt8Value(value, p), name, shorthand, usage)\n}\n\n// Int8 defines an int8 flag with specified name, default value, and usage string.\n// The return value is the address of an int8 variable that stores the value of the flag.\nfunc (f *FlagSet) Int8(name string, value int8, usage string) *int8 {\n\tp := new(int8)\n\tf.Int8VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Int8P is like Int8, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Int8P(name, shorthand string, value int8, usage string) *int8 {\n\tp := new(int8)\n\tf.Int8VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Int8 defines an int8 flag with specified name, default value, and usage string.\n// The return value is the address of an int8 variable that stores the value of the flag.\nfunc Int8(name string, value int8, usage string) *int8 {\n\treturn CommandLine.Int8P(name, \"\", value, usage)\n}\n\n// Int8P is like Int8, but accepts a shorthand letter that can be used after a single dash.\nfunc Int8P(name, shorthand string, value int8, usage string) *int8 {\n\treturn CommandLine.Int8P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/int_slice.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// -- intSlice Value\ntype intSliceValue struct {\n\tvalue   *[]int\n\tchanged bool\n}\n\nfunc newIntSliceValue(val []int, p *[]int) *intSliceValue {\n\tisv := new(intSliceValue)\n\tisv.value = p\n\t*isv.value = val\n\treturn isv\n}\n\nfunc (s *intSliceValue) Set(val string) error {\n\tss := strings.Split(val, \",\")\n\tout := make([]int, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tout[i], err = strconv.Atoi(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\t*s.value = append(*s.value, out...)\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *intSliceValue) Type() string {\n\treturn \"intSlice\"\n}\n\nfunc (s *intSliceValue) String() string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = fmt.Sprintf(\"%d\", d)\n\t}\n\treturn \"[\" + strings.Join(out, \",\") + \"]\"\n}\n\nfunc (s *intSliceValue) Append(val string) error {\n\ti, err := strconv.Atoi(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\t*s.value = append(*s.value, i)\n\treturn nil\n}\n\nfunc (s *intSliceValue) Replace(val []string) error {\n\tout := make([]int, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i], err = strconv.Atoi(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *intSliceValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = strconv.Itoa(d)\n\t}\n\treturn out\n}\n\nfunc intSliceConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// Empty string would cause a slice with one (empty) entry\n\tif len(val) == 0 {\n\t\treturn []int{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make([]int, len(ss))\n\tfor i, d := range ss {\n\t\tvar err error\n\t\tout[i], err = strconv.Atoi(d)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t}\n\treturn out, nil\n}\n\n// GetIntSlice return the []int value of a flag with the given name\nfunc (f *FlagSet) GetIntSlice(name string) ([]int, error) {\n\tval, err := f.getFlagType(name, \"intSlice\", intSliceConv)\n\tif err != nil {\n\t\treturn []int{}, err\n\t}\n\treturn val.([]int), nil\n}\n\n// IntSliceVar defines a intSlice flag with specified name, default value, and usage string.\n// The argument p points to a []int variable in which to store the value of the flag.\nfunc (f *FlagSet) IntSliceVar(p *[]int, name string, value []int, usage string) {\n\tf.VarP(newIntSliceValue(value, p), name, \"\", usage)\n}\n\n// IntSliceVarP is like IntSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IntSliceVarP(p *[]int, name, shorthand string, value []int, usage string) {\n\tf.VarP(newIntSliceValue(value, p), name, shorthand, usage)\n}\n\n// IntSliceVar defines a int[] flag with specified name, default value, and usage string.\n// The argument p points to a int[] variable in which to store the value of the flag.\nfunc IntSliceVar(p *[]int, name string, value []int, usage string) {\n\tCommandLine.VarP(newIntSliceValue(value, p), name, \"\", usage)\n}\n\n// IntSliceVarP is like IntSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc IntSliceVarP(p *[]int, name, shorthand string, value []int, usage string) {\n\tCommandLine.VarP(newIntSliceValue(value, p), name, shorthand, usage)\n}\n\n// IntSlice defines a []int flag with specified name, default value, and usage string.\n// The return value is the address of a []int variable that stores the value of the flag.\nfunc (f *FlagSet) IntSlice(name string, value []int, usage string) *[]int {\n\tp := []int{}\n\tf.IntSliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// IntSliceP is like IntSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IntSliceP(name, shorthand string, value []int, usage string) *[]int {\n\tp := []int{}\n\tf.IntSliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// IntSlice defines a []int flag with specified name, default value, and usage string.\n// The return value is the address of a []int variable that stores the value of the flag.\nfunc IntSlice(name string, value []int, usage string) *[]int {\n\treturn CommandLine.IntSliceP(name, \"\", value, usage)\n}\n\n// IntSliceP is like IntSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc IntSliceP(name, shorthand string, value []int, usage string) *[]int {\n\treturn CommandLine.IntSliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/ip.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"net\"\n\t\"strings\"\n)\n\n// -- net.IP value\ntype ipValue net.IP\n\nfunc newIPValue(val net.IP, p *net.IP) *ipValue {\n\t*p = val\n\treturn (*ipValue)(p)\n}\n\nfunc (i *ipValue) String() string { return net.IP(*i).String() }\nfunc (i *ipValue) Set(s string) error {\n\tip := net.ParseIP(strings.TrimSpace(s))\n\tif ip == nil {\n\t\treturn fmt.Errorf(\"failed to parse IP: %q\", s)\n\t}\n\t*i = ipValue(ip)\n\treturn nil\n}\n\nfunc (i *ipValue) Type() string {\n\treturn \"ip\"\n}\n\nfunc ipConv(sval string) (interface{}, error) {\n\tip := net.ParseIP(sval)\n\tif ip != nil {\n\t\treturn ip, nil\n\t}\n\treturn nil, fmt.Errorf(\"invalid string being converted to IP address: %s\", sval)\n}\n\n// GetIP return the net.IP value of a flag with the given name\nfunc (f *FlagSet) GetIP(name string) (net.IP, error) {\n\tval, err := f.getFlagType(name, \"ip\", ipConv)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn val.(net.IP), nil\n}\n\n// IPVar defines an net.IP flag with specified name, default value, and usage string.\n// The argument p points to an net.IP variable in which to store the value of the flag.\nfunc (f *FlagSet) IPVar(p *net.IP, name string, value net.IP, usage string) {\n\tf.VarP(newIPValue(value, p), name, \"\", usage)\n}\n\n// IPVarP is like IPVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IPVarP(p *net.IP, name, shorthand string, value net.IP, usage string) {\n\tf.VarP(newIPValue(value, p), name, shorthand, usage)\n}\n\n// IPVar defines an net.IP flag with specified name, default value, and usage string.\n// The argument p points to an net.IP variable in which to store the value of the flag.\nfunc IPVar(p *net.IP, name string, value net.IP, usage string) {\n\tCommandLine.VarP(newIPValue(value, p), name, \"\", usage)\n}\n\n// IPVarP is like IPVar, but accepts a shorthand letter that can be used after a single dash.\nfunc IPVarP(p *net.IP, name, shorthand string, value net.IP, usage string) {\n\tCommandLine.VarP(newIPValue(value, p), name, shorthand, usage)\n}\n\n// IP defines an net.IP flag with specified name, default value, and usage string.\n// The return value is the address of an net.IP variable that stores the value of the flag.\nfunc (f *FlagSet) IP(name string, value net.IP, usage string) *net.IP {\n\tp := new(net.IP)\n\tf.IPVarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// IPP is like IP, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IPP(name, shorthand string, value net.IP, usage string) *net.IP {\n\tp := new(net.IP)\n\tf.IPVarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// IP defines an net.IP flag with specified name, default value, and usage string.\n// The return value is the address of an net.IP variable that stores the value of the flag.\nfunc IP(name string, value net.IP, usage string) *net.IP {\n\treturn CommandLine.IPP(name, \"\", value, usage)\n}\n\n// IPP is like IP, but accepts a shorthand letter that can be used after a single dash.\nfunc IPP(name, shorthand string, value net.IP, usage string) *net.IP {\n\treturn CommandLine.IPP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/ip_slice.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"net\"\n\t\"strings\"\n)\n\n// -- ipSlice Value\ntype ipSliceValue struct {\n\tvalue   *[]net.IP\n\tchanged bool\n}\n\nfunc newIPSliceValue(val []net.IP, p *[]net.IP) *ipSliceValue {\n\tipsv := new(ipSliceValue)\n\tipsv.value = p\n\t*ipsv.value = val\n\treturn ipsv\n}\n\n// Set converts, and assigns, the comma-separated IP argument string representation as the []net.IP value of this flag.\n// If Set is called on a flag that already has a []net.IP assigned, the newly converted values will be appended.\nfunc (s *ipSliceValue) Set(val string) error {\n\n\t// remove all quote characters\n\trmQuote := strings.NewReplacer(`\"`, \"\", `'`, \"\", \"`\", \"\")\n\n\t// read flag arguments with CSV parser\n\tipStrSlice, err := readAsCSV(rmQuote.Replace(val))\n\tif err != nil && err != io.EOF {\n\t\treturn err\n\t}\n\n\t// parse ip values into slice\n\tout := make([]net.IP, 0, len(ipStrSlice))\n\tfor _, ipStr := range ipStrSlice {\n\t\tip := net.ParseIP(strings.TrimSpace(ipStr))\n\t\tif ip == nil {\n\t\t\treturn fmt.Errorf(\"invalid string being converted to IP address: %s\", ipStr)\n\t\t}\n\t\tout = append(out, ip)\n\t}\n\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\t*s.value = append(*s.value, out...)\n\t}\n\n\ts.changed = true\n\n\treturn nil\n}\n\n// Type returns a string that uniquely represents this flag's type.\nfunc (s *ipSliceValue) Type() string {\n\treturn \"ipSlice\"\n}\n\n// String defines a \"native\" format for this net.IP slice flag value.\nfunc (s *ipSliceValue) String() string {\n\n\tipStrSlice := make([]string, len(*s.value))\n\tfor i, ip := range *s.value {\n\t\tipStrSlice[i] = ip.String()\n\t}\n\n\tout, _ := writeAsCSV(ipStrSlice)\n\n\treturn \"[\" + out + \"]\"\n}\n\nfunc (s *ipSliceValue) fromString(val string) (net.IP, error) {\n\treturn net.ParseIP(strings.TrimSpace(val)), nil\n}\n\nfunc (s *ipSliceValue) toString(val net.IP) string {\n\treturn val.String()\n}\n\nfunc (s *ipSliceValue) Append(val string) error {\n\ti, err := s.fromString(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\t*s.value = append(*s.value, i)\n\treturn nil\n}\n\nfunc (s *ipSliceValue) Replace(val []string) error {\n\tout := make([]net.IP, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i], err = s.fromString(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *ipSliceValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = s.toString(d)\n\t}\n\treturn out\n}\n\nfunc ipSliceConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// Empty string would cause a slice with one (empty) entry\n\tif len(val) == 0 {\n\t\treturn []net.IP{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make([]net.IP, len(ss))\n\tfor i, sval := range ss {\n\t\tip := net.ParseIP(strings.TrimSpace(sval))\n\t\tif ip == nil {\n\t\t\treturn nil, fmt.Errorf(\"invalid string being converted to IP address: %s\", sval)\n\t\t}\n\t\tout[i] = ip\n\t}\n\treturn out, nil\n}\n\n// GetIPSlice returns the []net.IP value of a flag with the given name\nfunc (f *FlagSet) GetIPSlice(name string) ([]net.IP, error) {\n\tval, err := f.getFlagType(name, \"ipSlice\", ipSliceConv)\n\tif err != nil {\n\t\treturn []net.IP{}, err\n\t}\n\treturn val.([]net.IP), nil\n}\n\n// IPSliceVar defines a ipSlice flag with specified name, default value, and usage string.\n// The argument p points to a []net.IP variable in which to store the value of the flag.\nfunc (f *FlagSet) IPSliceVar(p *[]net.IP, name string, value []net.IP, usage string) {\n\tf.VarP(newIPSliceValue(value, p), name, \"\", usage)\n}\n\n// IPSliceVarP is like IPSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IPSliceVarP(p *[]net.IP, name, shorthand string, value []net.IP, usage string) {\n\tf.VarP(newIPSliceValue(value, p), name, shorthand, usage)\n}\n\n// IPSliceVar defines a []net.IP flag with specified name, default value, and usage string.\n// The argument p points to a []net.IP variable in which to store the value of the flag.\nfunc IPSliceVar(p *[]net.IP, name string, value []net.IP, usage string) {\n\tCommandLine.VarP(newIPSliceValue(value, p), name, \"\", usage)\n}\n\n// IPSliceVarP is like IPSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc IPSliceVarP(p *[]net.IP, name, shorthand string, value []net.IP, usage string) {\n\tCommandLine.VarP(newIPSliceValue(value, p), name, shorthand, usage)\n}\n\n// IPSlice defines a []net.IP flag with specified name, default value, and usage string.\n// The return value is the address of a []net.IP variable that stores the value of that flag.\nfunc (f *FlagSet) IPSlice(name string, value []net.IP, usage string) *[]net.IP {\n\tp := []net.IP{}\n\tf.IPSliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// IPSliceP is like IPSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IPSliceP(name, shorthand string, value []net.IP, usage string) *[]net.IP {\n\tp := []net.IP{}\n\tf.IPSliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// IPSlice defines a []net.IP flag with specified name, default value, and usage string.\n// The return value is the address of a []net.IP variable that stores the value of the flag.\nfunc IPSlice(name string, value []net.IP, usage string) *[]net.IP {\n\treturn CommandLine.IPSliceP(name, \"\", value, usage)\n}\n\n// IPSliceP is like IPSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc IPSliceP(name, shorthand string, value []net.IP, usage string) *[]net.IP {\n\treturn CommandLine.IPSliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/ipmask.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"net\"\n\t\"strconv\"\n)\n\n// -- net.IPMask value\ntype ipMaskValue net.IPMask\n\nfunc newIPMaskValue(val net.IPMask, p *net.IPMask) *ipMaskValue {\n\t*p = val\n\treturn (*ipMaskValue)(p)\n}\n\nfunc (i *ipMaskValue) String() string { return net.IPMask(*i).String() }\nfunc (i *ipMaskValue) Set(s string) error {\n\tip := ParseIPv4Mask(s)\n\tif ip == nil {\n\t\treturn fmt.Errorf(\"failed to parse IP mask: %q\", s)\n\t}\n\t*i = ipMaskValue(ip)\n\treturn nil\n}\n\nfunc (i *ipMaskValue) Type() string {\n\treturn \"ipMask\"\n}\n\n// ParseIPv4Mask written in IP form (e.g. 255.255.255.0).\n// This function should really belong to the net package.\nfunc ParseIPv4Mask(s string) net.IPMask {\n\tmask := net.ParseIP(s)\n\tif mask == nil {\n\t\tif len(s) != 8 {\n\t\t\treturn nil\n\t\t}\n\t\t// net.IPMask.String() actually outputs things like ffffff00\n\t\t// so write a horrible parser for that as well  :-(\n\t\tm := []int{}\n\t\tfor i := 0; i < 4; i++ {\n\t\t\tb := \"0x\" + s[2*i:2*i+2]\n\t\t\td, err := strconv.ParseInt(b, 0, 0)\n\t\t\tif err != nil {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tm = append(m, int(d))\n\t\t}\n\t\ts := fmt.Sprintf(\"%d.%d.%d.%d\", m[0], m[1], m[2], m[3])\n\t\tmask = net.ParseIP(s)\n\t\tif mask == nil {\n\t\t\treturn nil\n\t\t}\n\t}\n\treturn net.IPv4Mask(mask[12], mask[13], mask[14], mask[15])\n}\n\nfunc parseIPv4Mask(sval string) (interface{}, error) {\n\tmask := ParseIPv4Mask(sval)\n\tif mask == nil {\n\t\treturn nil, fmt.Errorf(\"unable to parse %s as net.IPMask\", sval)\n\t}\n\treturn mask, nil\n}\n\n// GetIPv4Mask return the net.IPv4Mask value of a flag with the given name\nfunc (f *FlagSet) GetIPv4Mask(name string) (net.IPMask, error) {\n\tval, err := f.getFlagType(name, \"ipMask\", parseIPv4Mask)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn val.(net.IPMask), nil\n}\n\n// IPMaskVar defines an net.IPMask flag with specified name, default value, and usage string.\n// The argument p points to an net.IPMask variable in which to store the value of the flag.\nfunc (f *FlagSet) IPMaskVar(p *net.IPMask, name string, value net.IPMask, usage string) {\n\tf.VarP(newIPMaskValue(value, p), name, \"\", usage)\n}\n\n// IPMaskVarP is like IPMaskVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IPMaskVarP(p *net.IPMask, name, shorthand string, value net.IPMask, usage string) {\n\tf.VarP(newIPMaskValue(value, p), name, shorthand, usage)\n}\n\n// IPMaskVar defines an net.IPMask flag with specified name, default value, and usage string.\n// The argument p points to an net.IPMask variable in which to store the value of the flag.\nfunc IPMaskVar(p *net.IPMask, name string, value net.IPMask, usage string) {\n\tCommandLine.VarP(newIPMaskValue(value, p), name, \"\", usage)\n}\n\n// IPMaskVarP is like IPMaskVar, but accepts a shorthand letter that can be used after a single dash.\nfunc IPMaskVarP(p *net.IPMask, name, shorthand string, value net.IPMask, usage string) {\n\tCommandLine.VarP(newIPMaskValue(value, p), name, shorthand, usage)\n}\n\n// IPMask defines an net.IPMask flag with specified name, default value, and usage string.\n// The return value is the address of an net.IPMask variable that stores the value of the flag.\nfunc (f *FlagSet) IPMask(name string, value net.IPMask, usage string) *net.IPMask {\n\tp := new(net.IPMask)\n\tf.IPMaskVarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// IPMaskP is like IPMask, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IPMaskP(name, shorthand string, value net.IPMask, usage string) *net.IPMask {\n\tp := new(net.IPMask)\n\tf.IPMaskVarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// IPMask defines an net.IPMask flag with specified name, default value, and usage string.\n// The return value is the address of an net.IPMask variable that stores the value of the flag.\nfunc IPMask(name string, value net.IPMask, usage string) *net.IPMask {\n\treturn CommandLine.IPMaskP(name, \"\", value, usage)\n}\n\n// IPMaskP is like IP, but accepts a shorthand letter that can be used after a single dash.\nfunc IPMaskP(name, shorthand string, value net.IPMask, usage string) *net.IPMask {\n\treturn CommandLine.IPMaskP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/ipnet.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"net\"\n\t\"strings\"\n)\n\n// IPNet adapts net.IPNet for use as a flag.\ntype ipNetValue net.IPNet\n\nfunc (ipnet ipNetValue) String() string {\n\tn := net.IPNet(ipnet)\n\treturn n.String()\n}\n\nfunc (ipnet *ipNetValue) Set(value string) error {\n\t_, n, err := net.ParseCIDR(strings.TrimSpace(value))\n\tif err != nil {\n\t\treturn err\n\t}\n\t*ipnet = ipNetValue(*n)\n\treturn nil\n}\n\nfunc (*ipNetValue) Type() string {\n\treturn \"ipNet\"\n}\n\nfunc newIPNetValue(val net.IPNet, p *net.IPNet) *ipNetValue {\n\t*p = val\n\treturn (*ipNetValue)(p)\n}\n\nfunc ipNetConv(sval string) (interface{}, error) {\n\t_, n, err := net.ParseCIDR(strings.TrimSpace(sval))\n\tif err == nil {\n\t\treturn *n, nil\n\t}\n\treturn nil, fmt.Errorf(\"invalid string being converted to IPNet: %s\", sval)\n}\n\n// GetIPNet return the net.IPNet value of a flag with the given name\nfunc (f *FlagSet) GetIPNet(name string) (net.IPNet, error) {\n\tval, err := f.getFlagType(name, \"ipNet\", ipNetConv)\n\tif err != nil {\n\t\treturn net.IPNet{}, err\n\t}\n\treturn val.(net.IPNet), nil\n}\n\n// IPNetVar defines an net.IPNet flag with specified name, default value, and usage string.\n// The argument p points to an net.IPNet variable in which to store the value of the flag.\nfunc (f *FlagSet) IPNetVar(p *net.IPNet, name string, value net.IPNet, usage string) {\n\tf.VarP(newIPNetValue(value, p), name, \"\", usage)\n}\n\n// IPNetVarP is like IPNetVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IPNetVarP(p *net.IPNet, name, shorthand string, value net.IPNet, usage string) {\n\tf.VarP(newIPNetValue(value, p), name, shorthand, usage)\n}\n\n// IPNetVar defines an net.IPNet flag with specified name, default value, and usage string.\n// The argument p points to an net.IPNet variable in which to store the value of the flag.\nfunc IPNetVar(p *net.IPNet, name string, value net.IPNet, usage string) {\n\tCommandLine.VarP(newIPNetValue(value, p), name, \"\", usage)\n}\n\n// IPNetVarP is like IPNetVar, but accepts a shorthand letter that can be used after a single dash.\nfunc IPNetVarP(p *net.IPNet, name, shorthand string, value net.IPNet, usage string) {\n\tCommandLine.VarP(newIPNetValue(value, p), name, shorthand, usage)\n}\n\n// IPNet defines an net.IPNet flag with specified name, default value, and usage string.\n// The return value is the address of an net.IPNet variable that stores the value of the flag.\nfunc (f *FlagSet) IPNet(name string, value net.IPNet, usage string) *net.IPNet {\n\tp := new(net.IPNet)\n\tf.IPNetVarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// IPNetP is like IPNet, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) IPNetP(name, shorthand string, value net.IPNet, usage string) *net.IPNet {\n\tp := new(net.IPNet)\n\tf.IPNetVarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// IPNet defines an net.IPNet flag with specified name, default value, and usage string.\n// The return value is the address of an net.IPNet variable that stores the value of the flag.\nfunc IPNet(name string, value net.IPNet, usage string) *net.IPNet {\n\treturn CommandLine.IPNetP(name, \"\", value, usage)\n}\n\n// IPNetP is like IPNet, but accepts a shorthand letter that can be used after a single dash.\nfunc IPNetP(name, shorthand string, value net.IPNet, usage string) *net.IPNet {\n\treturn CommandLine.IPNetP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/string.go",
    "content": "package pflag\n\n// -- string Value\ntype stringValue string\n\nfunc newStringValue(val string, p *string) *stringValue {\n\t*p = val\n\treturn (*stringValue)(p)\n}\n\nfunc (s *stringValue) Set(val string) error {\n\t*s = stringValue(val)\n\treturn nil\n}\nfunc (s *stringValue) Type() string {\n\treturn \"string\"\n}\n\nfunc (s *stringValue) String() string { return string(*s) }\n\nfunc stringConv(sval string) (interface{}, error) {\n\treturn sval, nil\n}\n\n// GetString return the string value of a flag with the given name\nfunc (f *FlagSet) GetString(name string) (string, error) {\n\tval, err := f.getFlagType(name, \"string\", stringConv)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn val.(string), nil\n}\n\n// StringVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a string variable in which to store the value of the flag.\nfunc (f *FlagSet) StringVar(p *string, name string, value string, usage string) {\n\tf.VarP(newStringValue(value, p), name, \"\", usage)\n}\n\n// StringVarP is like StringVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringVarP(p *string, name, shorthand string, value string, usage string) {\n\tf.VarP(newStringValue(value, p), name, shorthand, usage)\n}\n\n// StringVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a string variable in which to store the value of the flag.\nfunc StringVar(p *string, name string, value string, usage string) {\n\tCommandLine.VarP(newStringValue(value, p), name, \"\", usage)\n}\n\n// StringVarP is like StringVar, but accepts a shorthand letter that can be used after a single dash.\nfunc StringVarP(p *string, name, shorthand string, value string, usage string) {\n\tCommandLine.VarP(newStringValue(value, p), name, shorthand, usage)\n}\n\n// String defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a string variable that stores the value of the flag.\nfunc (f *FlagSet) String(name string, value string, usage string) *string {\n\tp := new(string)\n\tf.StringVarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// StringP is like String, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringP(name, shorthand string, value string, usage string) *string {\n\tp := new(string)\n\tf.StringVarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// String defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a string variable that stores the value of the flag.\nfunc String(name string, value string, usage string) *string {\n\treturn CommandLine.StringP(name, \"\", value, usage)\n}\n\n// StringP is like String, but accepts a shorthand letter that can be used after a single dash.\nfunc StringP(name, shorthand string, value string, usage string) *string {\n\treturn CommandLine.StringP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/string_array.go",
    "content": "package pflag\n\n// -- stringArray Value\ntype stringArrayValue struct {\n\tvalue   *[]string\n\tchanged bool\n}\n\nfunc newStringArrayValue(val []string, p *[]string) *stringArrayValue {\n\tssv := new(stringArrayValue)\n\tssv.value = p\n\t*ssv.value = val\n\treturn ssv\n}\n\nfunc (s *stringArrayValue) Set(val string) error {\n\tif !s.changed {\n\t\t*s.value = []string{val}\n\t\ts.changed = true\n\t} else {\n\t\t*s.value = append(*s.value, val)\n\t}\n\treturn nil\n}\n\nfunc (s *stringArrayValue) Append(val string) error {\n\t*s.value = append(*s.value, val)\n\treturn nil\n}\n\nfunc (s *stringArrayValue) Replace(val []string) error {\n\tout := make([]string, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i] = d\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *stringArrayValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = d\n\t}\n\treturn out\n}\n\nfunc (s *stringArrayValue) Type() string {\n\treturn \"stringArray\"\n}\n\nfunc (s *stringArrayValue) String() string {\n\tstr, _ := writeAsCSV(*s.value)\n\treturn \"[\" + str + \"]\"\n}\n\nfunc stringArrayConv(sval string) (interface{}, error) {\n\tsval = sval[1 : len(sval)-1]\n\t// An empty string would cause a array with one (empty) string\n\tif len(sval) == 0 {\n\t\treturn []string{}, nil\n\t}\n\treturn readAsCSV(sval)\n}\n\n// GetStringArray return the []string value of a flag with the given name\nfunc (f *FlagSet) GetStringArray(name string) ([]string, error) {\n\tval, err := f.getFlagType(name, \"stringArray\", stringArrayConv)\n\tif err != nil {\n\t\treturn []string{}, err\n\t}\n\treturn val.([]string), nil\n}\n\n// StringArrayVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a []string variable in which to store the values of the multiple flags.\n// The value of each argument will not try to be separated by comma. Use a StringSlice for that.\nfunc (f *FlagSet) StringArrayVar(p *[]string, name string, value []string, usage string) {\n\tf.VarP(newStringArrayValue(value, p), name, \"\", usage)\n}\n\n// StringArrayVarP is like StringArrayVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringArrayVarP(p *[]string, name, shorthand string, value []string, usage string) {\n\tf.VarP(newStringArrayValue(value, p), name, shorthand, usage)\n}\n\n// StringArrayVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a []string variable in which to store the value of the flag.\n// The value of each argument will not try to be separated by comma. Use a StringSlice for that.\nfunc StringArrayVar(p *[]string, name string, value []string, usage string) {\n\tCommandLine.VarP(newStringArrayValue(value, p), name, \"\", usage)\n}\n\n// StringArrayVarP is like StringArrayVar, but accepts a shorthand letter that can be used after a single dash.\nfunc StringArrayVarP(p *[]string, name, shorthand string, value []string, usage string) {\n\tCommandLine.VarP(newStringArrayValue(value, p), name, shorthand, usage)\n}\n\n// StringArray defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a []string variable that stores the value of the flag.\n// The value of each argument will not try to be separated by comma. Use a StringSlice for that.\nfunc (f *FlagSet) StringArray(name string, value []string, usage string) *[]string {\n\tp := []string{}\n\tf.StringArrayVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// StringArrayP is like StringArray, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringArrayP(name, shorthand string, value []string, usage string) *[]string {\n\tp := []string{}\n\tf.StringArrayVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// StringArray defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a []string variable that stores the value of the flag.\n// The value of each argument will not try to be separated by comma. Use a StringSlice for that.\nfunc StringArray(name string, value []string, usage string) *[]string {\n\treturn CommandLine.StringArrayP(name, \"\", value, usage)\n}\n\n// StringArrayP is like StringArray, but accepts a shorthand letter that can be used after a single dash.\nfunc StringArrayP(name, shorthand string, value []string, usage string) *[]string {\n\treturn CommandLine.StringArrayP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/string_slice.go",
    "content": "package pflag\n\nimport (\n\t\"bytes\"\n\t\"encoding/csv\"\n\t\"strings\"\n)\n\n// -- stringSlice Value\ntype stringSliceValue struct {\n\tvalue   *[]string\n\tchanged bool\n}\n\nfunc newStringSliceValue(val []string, p *[]string) *stringSliceValue {\n\tssv := new(stringSliceValue)\n\tssv.value = p\n\t*ssv.value = val\n\treturn ssv\n}\n\nfunc readAsCSV(val string) ([]string, error) {\n\tif val == \"\" {\n\t\treturn []string{}, nil\n\t}\n\tstringReader := strings.NewReader(val)\n\tcsvReader := csv.NewReader(stringReader)\n\treturn csvReader.Read()\n}\n\nfunc writeAsCSV(vals []string) (string, error) {\n\tb := &bytes.Buffer{}\n\tw := csv.NewWriter(b)\n\terr := w.Write(vals)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tw.Flush()\n\treturn strings.TrimSuffix(b.String(), \"\\n\"), nil\n}\n\nfunc (s *stringSliceValue) Set(val string) error {\n\tv, err := readAsCSV(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif !s.changed {\n\t\t*s.value = v\n\t} else {\n\t\t*s.value = append(*s.value, v...)\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *stringSliceValue) Type() string {\n\treturn \"stringSlice\"\n}\n\nfunc (s *stringSliceValue) String() string {\n\tstr, _ := writeAsCSV(*s.value)\n\treturn \"[\" + str + \"]\"\n}\n\nfunc (s *stringSliceValue) Append(val string) error {\n\t*s.value = append(*s.value, val)\n\treturn nil\n}\n\nfunc (s *stringSliceValue) Replace(val []string) error {\n\t*s.value = val\n\treturn nil\n}\n\nfunc (s *stringSliceValue) GetSlice() []string {\n\treturn *s.value\n}\n\nfunc stringSliceConv(sval string) (interface{}, error) {\n\tsval = sval[1 : len(sval)-1]\n\t// An empty string would cause a slice with one (empty) string\n\tif len(sval) == 0 {\n\t\treturn []string{}, nil\n\t}\n\treturn readAsCSV(sval)\n}\n\n// GetStringSlice return the []string value of a flag with the given name\nfunc (f *FlagSet) GetStringSlice(name string) ([]string, error) {\n\tval, err := f.getFlagType(name, \"stringSlice\", stringSliceConv)\n\tif err != nil {\n\t\treturn []string{}, err\n\t}\n\treturn val.([]string), nil\n}\n\n// StringSliceVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a []string variable in which to store the value of the flag.\n// Compared to StringArray flags, StringSlice flags take comma-separated value as arguments and split them accordingly.\n// For example:\n//   --ss=\"v1,v2\" --ss=\"v3\"\n// will result in\n//   []string{\"v1\", \"v2\", \"v3\"}\nfunc (f *FlagSet) StringSliceVar(p *[]string, name string, value []string, usage string) {\n\tf.VarP(newStringSliceValue(value, p), name, \"\", usage)\n}\n\n// StringSliceVarP is like StringSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringSliceVarP(p *[]string, name, shorthand string, value []string, usage string) {\n\tf.VarP(newStringSliceValue(value, p), name, shorthand, usage)\n}\n\n// StringSliceVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a []string variable in which to store the value of the flag.\n// Compared to StringArray flags, StringSlice flags take comma-separated value as arguments and split them accordingly.\n// For example:\n//   --ss=\"v1,v2\" --ss=\"v3\"\n// will result in\n//   []string{\"v1\", \"v2\", \"v3\"}\nfunc StringSliceVar(p *[]string, name string, value []string, usage string) {\n\tCommandLine.VarP(newStringSliceValue(value, p), name, \"\", usage)\n}\n\n// StringSliceVarP is like StringSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc StringSliceVarP(p *[]string, name, shorthand string, value []string, usage string) {\n\tCommandLine.VarP(newStringSliceValue(value, p), name, shorthand, usage)\n}\n\n// StringSlice defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a []string variable that stores the value of the flag.\n// Compared to StringArray flags, StringSlice flags take comma-separated value as arguments and split them accordingly.\n// For example:\n//   --ss=\"v1,v2\" --ss=\"v3\"\n// will result in\n//   []string{\"v1\", \"v2\", \"v3\"}\nfunc (f *FlagSet) StringSlice(name string, value []string, usage string) *[]string {\n\tp := []string{}\n\tf.StringSliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// StringSliceP is like StringSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringSliceP(name, shorthand string, value []string, usage string) *[]string {\n\tp := []string{}\n\tf.StringSliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// StringSlice defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a []string variable that stores the value of the flag.\n// Compared to StringArray flags, StringSlice flags take comma-separated value as arguments and split them accordingly.\n// For example:\n//   --ss=\"v1,v2\" --ss=\"v3\"\n// will result in\n//   []string{\"v1\", \"v2\", \"v3\"}\nfunc StringSlice(name string, value []string, usage string) *[]string {\n\treturn CommandLine.StringSliceP(name, \"\", value, usage)\n}\n\n// StringSliceP is like StringSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc StringSliceP(name, shorthand string, value []string, usage string) *[]string {\n\treturn CommandLine.StringSliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/string_to_int.go",
    "content": "package pflag\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// -- stringToInt Value\ntype stringToIntValue struct {\n\tvalue   *map[string]int\n\tchanged bool\n}\n\nfunc newStringToIntValue(val map[string]int, p *map[string]int) *stringToIntValue {\n\tssv := new(stringToIntValue)\n\tssv.value = p\n\t*ssv.value = val\n\treturn ssv\n}\n\n// Format: a=1,b=2\nfunc (s *stringToIntValue) Set(val string) error {\n\tss := strings.Split(val, \",\")\n\tout := make(map[string]int, len(ss))\n\tfor _, pair := range ss {\n\t\tkv := strings.SplitN(pair, \"=\", 2)\n\t\tif len(kv) != 2 {\n\t\t\treturn fmt.Errorf(\"%s must be formatted as key=value\", pair)\n\t\t}\n\t\tvar err error\n\t\tout[kv[0]], err = strconv.Atoi(kv[1])\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\tfor k, v := range out {\n\t\t\t(*s.value)[k] = v\n\t\t}\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *stringToIntValue) Type() string {\n\treturn \"stringToInt\"\n}\n\nfunc (s *stringToIntValue) String() string {\n\tvar buf bytes.Buffer\n\ti := 0\n\tfor k, v := range *s.value {\n\t\tif i > 0 {\n\t\t\tbuf.WriteRune(',')\n\t\t}\n\t\tbuf.WriteString(k)\n\t\tbuf.WriteRune('=')\n\t\tbuf.WriteString(strconv.Itoa(v))\n\t\ti++\n\t}\n\treturn \"[\" + buf.String() + \"]\"\n}\n\nfunc stringToIntConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// An empty string would cause an empty map\n\tif len(val) == 0 {\n\t\treturn map[string]int{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make(map[string]int, len(ss))\n\tfor _, pair := range ss {\n\t\tkv := strings.SplitN(pair, \"=\", 2)\n\t\tif len(kv) != 2 {\n\t\t\treturn nil, fmt.Errorf(\"%s must be formatted as key=value\", pair)\n\t\t}\n\t\tvar err error\n\t\tout[kv[0]], err = strconv.Atoi(kv[1])\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn out, nil\n}\n\n// GetStringToInt return the map[string]int value of a flag with the given name\nfunc (f *FlagSet) GetStringToInt(name string) (map[string]int, error) {\n\tval, err := f.getFlagType(name, \"stringToInt\", stringToIntConv)\n\tif err != nil {\n\t\treturn map[string]int{}, err\n\t}\n\treturn val.(map[string]int), nil\n}\n\n// StringToIntVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a map[string]int variable in which to store the values of the multiple flags.\n// The value of each argument will not try to be separated by comma\nfunc (f *FlagSet) StringToIntVar(p *map[string]int, name string, value map[string]int, usage string) {\n\tf.VarP(newStringToIntValue(value, p), name, \"\", usage)\n}\n\n// StringToIntVarP is like StringToIntVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringToIntVarP(p *map[string]int, name, shorthand string, value map[string]int, usage string) {\n\tf.VarP(newStringToIntValue(value, p), name, shorthand, usage)\n}\n\n// StringToIntVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a map[string]int variable in which to store the value of the flag.\n// The value of each argument will not try to be separated by comma\nfunc StringToIntVar(p *map[string]int, name string, value map[string]int, usage string) {\n\tCommandLine.VarP(newStringToIntValue(value, p), name, \"\", usage)\n}\n\n// StringToIntVarP is like StringToIntVar, but accepts a shorthand letter that can be used after a single dash.\nfunc StringToIntVarP(p *map[string]int, name, shorthand string, value map[string]int, usage string) {\n\tCommandLine.VarP(newStringToIntValue(value, p), name, shorthand, usage)\n}\n\n// StringToInt defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a map[string]int variable that stores the value of the flag.\n// The value of each argument will not try to be separated by comma\nfunc (f *FlagSet) StringToInt(name string, value map[string]int, usage string) *map[string]int {\n\tp := map[string]int{}\n\tf.StringToIntVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// StringToIntP is like StringToInt, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringToIntP(name, shorthand string, value map[string]int, usage string) *map[string]int {\n\tp := map[string]int{}\n\tf.StringToIntVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// StringToInt defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a map[string]int variable that stores the value of the flag.\n// The value of each argument will not try to be separated by comma\nfunc StringToInt(name string, value map[string]int, usage string) *map[string]int {\n\treturn CommandLine.StringToIntP(name, \"\", value, usage)\n}\n\n// StringToIntP is like StringToInt, but accepts a shorthand letter that can be used after a single dash.\nfunc StringToIntP(name, shorthand string, value map[string]int, usage string) *map[string]int {\n\treturn CommandLine.StringToIntP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/string_to_int64.go",
    "content": "package pflag\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// -- stringToInt64 Value\ntype stringToInt64Value struct {\n\tvalue   *map[string]int64\n\tchanged bool\n}\n\nfunc newStringToInt64Value(val map[string]int64, p *map[string]int64) *stringToInt64Value {\n\tssv := new(stringToInt64Value)\n\tssv.value = p\n\t*ssv.value = val\n\treturn ssv\n}\n\n// Format: a=1,b=2\nfunc (s *stringToInt64Value) Set(val string) error {\n\tss := strings.Split(val, \",\")\n\tout := make(map[string]int64, len(ss))\n\tfor _, pair := range ss {\n\t\tkv := strings.SplitN(pair, \"=\", 2)\n\t\tif len(kv) != 2 {\n\t\t\treturn fmt.Errorf(\"%s must be formatted as key=value\", pair)\n\t\t}\n\t\tvar err error\n\t\tout[kv[0]], err = strconv.ParseInt(kv[1], 10, 64)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\tfor k, v := range out {\n\t\t\t(*s.value)[k] = v\n\t\t}\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *stringToInt64Value) Type() string {\n\treturn \"stringToInt64\"\n}\n\nfunc (s *stringToInt64Value) String() string {\n\tvar buf bytes.Buffer\n\ti := 0\n\tfor k, v := range *s.value {\n\t\tif i > 0 {\n\t\t\tbuf.WriteRune(',')\n\t\t}\n\t\tbuf.WriteString(k)\n\t\tbuf.WriteRune('=')\n\t\tbuf.WriteString(strconv.FormatInt(v, 10))\n\t\ti++\n\t}\n\treturn \"[\" + buf.String() + \"]\"\n}\n\nfunc stringToInt64Conv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// An empty string would cause an empty map\n\tif len(val) == 0 {\n\t\treturn map[string]int64{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make(map[string]int64, len(ss))\n\tfor _, pair := range ss {\n\t\tkv := strings.SplitN(pair, \"=\", 2)\n\t\tif len(kv) != 2 {\n\t\t\treturn nil, fmt.Errorf(\"%s must be formatted as key=value\", pair)\n\t\t}\n\t\tvar err error\n\t\tout[kv[0]], err = strconv.ParseInt(kv[1], 10, 64)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn out, nil\n}\n\n// GetStringToInt64 return the map[string]int64 value of a flag with the given name\nfunc (f *FlagSet) GetStringToInt64(name string) (map[string]int64, error) {\n\tval, err := f.getFlagType(name, \"stringToInt64\", stringToInt64Conv)\n\tif err != nil {\n\t\treturn map[string]int64{}, err\n\t}\n\treturn val.(map[string]int64), nil\n}\n\n// StringToInt64Var defines a string flag with specified name, default value, and usage string.\n// The argument p point64s to a map[string]int64 variable in which to store the values of the multiple flags.\n// The value of each argument will not try to be separated by comma\nfunc (f *FlagSet) StringToInt64Var(p *map[string]int64, name string, value map[string]int64, usage string) {\n\tf.VarP(newStringToInt64Value(value, p), name, \"\", usage)\n}\n\n// StringToInt64VarP is like StringToInt64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringToInt64VarP(p *map[string]int64, name, shorthand string, value map[string]int64, usage string) {\n\tf.VarP(newStringToInt64Value(value, p), name, shorthand, usage)\n}\n\n// StringToInt64Var defines a string flag with specified name, default value, and usage string.\n// The argument p point64s to a map[string]int64 variable in which to store the value of the flag.\n// The value of each argument will not try to be separated by comma\nfunc StringToInt64Var(p *map[string]int64, name string, value map[string]int64, usage string) {\n\tCommandLine.VarP(newStringToInt64Value(value, p), name, \"\", usage)\n}\n\n// StringToInt64VarP is like StringToInt64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc StringToInt64VarP(p *map[string]int64, name, shorthand string, value map[string]int64, usage string) {\n\tCommandLine.VarP(newStringToInt64Value(value, p), name, shorthand, usage)\n}\n\n// StringToInt64 defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a map[string]int64 variable that stores the value of the flag.\n// The value of each argument will not try to be separated by comma\nfunc (f *FlagSet) StringToInt64(name string, value map[string]int64, usage string) *map[string]int64 {\n\tp := map[string]int64{}\n\tf.StringToInt64VarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// StringToInt64P is like StringToInt64, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringToInt64P(name, shorthand string, value map[string]int64, usage string) *map[string]int64 {\n\tp := map[string]int64{}\n\tf.StringToInt64VarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// StringToInt64 defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a map[string]int64 variable that stores the value of the flag.\n// The value of each argument will not try to be separated by comma\nfunc StringToInt64(name string, value map[string]int64, usage string) *map[string]int64 {\n\treturn CommandLine.StringToInt64P(name, \"\", value, usage)\n}\n\n// StringToInt64P is like StringToInt64, but accepts a shorthand letter that can be used after a single dash.\nfunc StringToInt64P(name, shorthand string, value map[string]int64, usage string) *map[string]int64 {\n\treturn CommandLine.StringToInt64P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/string_to_string.go",
    "content": "package pflag\n\nimport (\n\t\"bytes\"\n\t\"encoding/csv\"\n\t\"fmt\"\n\t\"strings\"\n)\n\n// -- stringToString Value\ntype stringToStringValue struct {\n\tvalue   *map[string]string\n\tchanged bool\n}\n\nfunc newStringToStringValue(val map[string]string, p *map[string]string) *stringToStringValue {\n\tssv := new(stringToStringValue)\n\tssv.value = p\n\t*ssv.value = val\n\treturn ssv\n}\n\n// Format: a=1,b=2\nfunc (s *stringToStringValue) Set(val string) error {\n\tvar ss []string\n\tn := strings.Count(val, \"=\")\n\tswitch n {\n\tcase 0:\n\t\treturn fmt.Errorf(\"%s must be formatted as key=value\", val)\n\tcase 1:\n\t\tss = append(ss, strings.Trim(val, `\"`))\n\tdefault:\n\t\tr := csv.NewReader(strings.NewReader(val))\n\t\tvar err error\n\t\tss, err = r.Read()\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\tout := make(map[string]string, len(ss))\n\tfor _, pair := range ss {\n\t\tkv := strings.SplitN(pair, \"=\", 2)\n\t\tif len(kv) != 2 {\n\t\t\treturn fmt.Errorf(\"%s must be formatted as key=value\", pair)\n\t\t}\n\t\tout[kv[0]] = kv[1]\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\tfor k, v := range out {\n\t\t\t(*s.value)[k] = v\n\t\t}\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *stringToStringValue) Type() string {\n\treturn \"stringToString\"\n}\n\nfunc (s *stringToStringValue) String() string {\n\trecords := make([]string, 0, len(*s.value)>>1)\n\tfor k, v := range *s.value {\n\t\trecords = append(records, k+\"=\"+v)\n\t}\n\n\tvar buf bytes.Buffer\n\tw := csv.NewWriter(&buf)\n\tif err := w.Write(records); err != nil {\n\t\tpanic(err)\n\t}\n\tw.Flush()\n\treturn \"[\" + strings.TrimSpace(buf.String()) + \"]\"\n}\n\nfunc stringToStringConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// An empty string would cause an empty map\n\tif len(val) == 0 {\n\t\treturn map[string]string{}, nil\n\t}\n\tr := csv.NewReader(strings.NewReader(val))\n\tss, err := r.Read()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tout := make(map[string]string, len(ss))\n\tfor _, pair := range ss {\n\t\tkv := strings.SplitN(pair, \"=\", 2)\n\t\tif len(kv) != 2 {\n\t\t\treturn nil, fmt.Errorf(\"%s must be formatted as key=value\", pair)\n\t\t}\n\t\tout[kv[0]] = kv[1]\n\t}\n\treturn out, nil\n}\n\n// GetStringToString return the map[string]string value of a flag with the given name\nfunc (f *FlagSet) GetStringToString(name string) (map[string]string, error) {\n\tval, err := f.getFlagType(name, \"stringToString\", stringToStringConv)\n\tif err != nil {\n\t\treturn map[string]string{}, err\n\t}\n\treturn val.(map[string]string), nil\n}\n\n// StringToStringVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a map[string]string variable in which to store the values of the multiple flags.\n// The value of each argument will not try to be separated by comma\nfunc (f *FlagSet) StringToStringVar(p *map[string]string, name string, value map[string]string, usage string) {\n\tf.VarP(newStringToStringValue(value, p), name, \"\", usage)\n}\n\n// StringToStringVarP is like StringToStringVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringToStringVarP(p *map[string]string, name, shorthand string, value map[string]string, usage string) {\n\tf.VarP(newStringToStringValue(value, p), name, shorthand, usage)\n}\n\n// StringToStringVar defines a string flag with specified name, default value, and usage string.\n// The argument p points to a map[string]string variable in which to store the value of the flag.\n// The value of each argument will not try to be separated by comma\nfunc StringToStringVar(p *map[string]string, name string, value map[string]string, usage string) {\n\tCommandLine.VarP(newStringToStringValue(value, p), name, \"\", usage)\n}\n\n// StringToStringVarP is like StringToStringVar, but accepts a shorthand letter that can be used after a single dash.\nfunc StringToStringVarP(p *map[string]string, name, shorthand string, value map[string]string, usage string) {\n\tCommandLine.VarP(newStringToStringValue(value, p), name, shorthand, usage)\n}\n\n// StringToString defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a map[string]string variable that stores the value of the flag.\n// The value of each argument will not try to be separated by comma\nfunc (f *FlagSet) StringToString(name string, value map[string]string, usage string) *map[string]string {\n\tp := map[string]string{}\n\tf.StringToStringVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// StringToStringP is like StringToString, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) StringToStringP(name, shorthand string, value map[string]string, usage string) *map[string]string {\n\tp := map[string]string{}\n\tf.StringToStringVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// StringToString defines a string flag with specified name, default value, and usage string.\n// The return value is the address of a map[string]string variable that stores the value of the flag.\n// The value of each argument will not try to be separated by comma\nfunc StringToString(name string, value map[string]string, usage string) *map[string]string {\n\treturn CommandLine.StringToStringP(name, \"\", value, usage)\n}\n\n// StringToStringP is like StringToString, but accepts a shorthand letter that can be used after a single dash.\nfunc StringToStringP(name, shorthand string, value map[string]string, usage string) *map[string]string {\n\treturn CommandLine.StringToStringP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/uint.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- uint Value\ntype uintValue uint\n\nfunc newUintValue(val uint, p *uint) *uintValue {\n\t*p = val\n\treturn (*uintValue)(p)\n}\n\nfunc (i *uintValue) Set(s string) error {\n\tv, err := strconv.ParseUint(s, 0, 64)\n\t*i = uintValue(v)\n\treturn err\n}\n\nfunc (i *uintValue) Type() string {\n\treturn \"uint\"\n}\n\nfunc (i *uintValue) String() string { return strconv.FormatUint(uint64(*i), 10) }\n\nfunc uintConv(sval string) (interface{}, error) {\n\tv, err := strconv.ParseUint(sval, 0, 0)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn uint(v), nil\n}\n\n// GetUint return the uint value of a flag with the given name\nfunc (f *FlagSet) GetUint(name string) (uint, error) {\n\tval, err := f.getFlagType(name, \"uint\", uintConv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(uint), nil\n}\n\n// UintVar defines a uint flag with specified name, default value, and usage string.\n// The argument p points to a uint variable in which to store the value of the flag.\nfunc (f *FlagSet) UintVar(p *uint, name string, value uint, usage string) {\n\tf.VarP(newUintValue(value, p), name, \"\", usage)\n}\n\n// UintVarP is like UintVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) UintVarP(p *uint, name, shorthand string, value uint, usage string) {\n\tf.VarP(newUintValue(value, p), name, shorthand, usage)\n}\n\n// UintVar defines a uint flag with specified name, default value, and usage string.\n// The argument p points to a uint  variable in which to store the value of the flag.\nfunc UintVar(p *uint, name string, value uint, usage string) {\n\tCommandLine.VarP(newUintValue(value, p), name, \"\", usage)\n}\n\n// UintVarP is like UintVar, but accepts a shorthand letter that can be used after a single dash.\nfunc UintVarP(p *uint, name, shorthand string, value uint, usage string) {\n\tCommandLine.VarP(newUintValue(value, p), name, shorthand, usage)\n}\n\n// Uint defines a uint flag with specified name, default value, and usage string.\n// The return value is the address of a uint  variable that stores the value of the flag.\nfunc (f *FlagSet) Uint(name string, value uint, usage string) *uint {\n\tp := new(uint)\n\tf.UintVarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// UintP is like Uint, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) UintP(name, shorthand string, value uint, usage string) *uint {\n\tp := new(uint)\n\tf.UintVarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Uint defines a uint flag with specified name, default value, and usage string.\n// The return value is the address of a uint  variable that stores the value of the flag.\nfunc Uint(name string, value uint, usage string) *uint {\n\treturn CommandLine.UintP(name, \"\", value, usage)\n}\n\n// UintP is like Uint, but accepts a shorthand letter that can be used after a single dash.\nfunc UintP(name, shorthand string, value uint, usage string) *uint {\n\treturn CommandLine.UintP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/uint16.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- uint16 value\ntype uint16Value uint16\n\nfunc newUint16Value(val uint16, p *uint16) *uint16Value {\n\t*p = val\n\treturn (*uint16Value)(p)\n}\n\nfunc (i *uint16Value) Set(s string) error {\n\tv, err := strconv.ParseUint(s, 0, 16)\n\t*i = uint16Value(v)\n\treturn err\n}\n\nfunc (i *uint16Value) Type() string {\n\treturn \"uint16\"\n}\n\nfunc (i *uint16Value) String() string { return strconv.FormatUint(uint64(*i), 10) }\n\nfunc uint16Conv(sval string) (interface{}, error) {\n\tv, err := strconv.ParseUint(sval, 0, 16)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn uint16(v), nil\n}\n\n// GetUint16 return the uint16 value of a flag with the given name\nfunc (f *FlagSet) GetUint16(name string) (uint16, error) {\n\tval, err := f.getFlagType(name, \"uint16\", uint16Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(uint16), nil\n}\n\n// Uint16Var defines a uint flag with specified name, default value, and usage string.\n// The argument p points to a uint variable in which to store the value of the flag.\nfunc (f *FlagSet) Uint16Var(p *uint16, name string, value uint16, usage string) {\n\tf.VarP(newUint16Value(value, p), name, \"\", usage)\n}\n\n// Uint16VarP is like Uint16Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Uint16VarP(p *uint16, name, shorthand string, value uint16, usage string) {\n\tf.VarP(newUint16Value(value, p), name, shorthand, usage)\n}\n\n// Uint16Var defines a uint flag with specified name, default value, and usage string.\n// The argument p points to a uint  variable in which to store the value of the flag.\nfunc Uint16Var(p *uint16, name string, value uint16, usage string) {\n\tCommandLine.VarP(newUint16Value(value, p), name, \"\", usage)\n}\n\n// Uint16VarP is like Uint16Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Uint16VarP(p *uint16, name, shorthand string, value uint16, usage string) {\n\tCommandLine.VarP(newUint16Value(value, p), name, shorthand, usage)\n}\n\n// Uint16 defines a uint flag with specified name, default value, and usage string.\n// The return value is the address of a uint  variable that stores the value of the flag.\nfunc (f *FlagSet) Uint16(name string, value uint16, usage string) *uint16 {\n\tp := new(uint16)\n\tf.Uint16VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Uint16P is like Uint16, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Uint16P(name, shorthand string, value uint16, usage string) *uint16 {\n\tp := new(uint16)\n\tf.Uint16VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Uint16 defines a uint flag with specified name, default value, and usage string.\n// The return value is the address of a uint  variable that stores the value of the flag.\nfunc Uint16(name string, value uint16, usage string) *uint16 {\n\treturn CommandLine.Uint16P(name, \"\", value, usage)\n}\n\n// Uint16P is like Uint16, but accepts a shorthand letter that can be used after a single dash.\nfunc Uint16P(name, shorthand string, value uint16, usage string) *uint16 {\n\treturn CommandLine.Uint16P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/uint32.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- uint32 value\ntype uint32Value uint32\n\nfunc newUint32Value(val uint32, p *uint32) *uint32Value {\n\t*p = val\n\treturn (*uint32Value)(p)\n}\n\nfunc (i *uint32Value) Set(s string) error {\n\tv, err := strconv.ParseUint(s, 0, 32)\n\t*i = uint32Value(v)\n\treturn err\n}\n\nfunc (i *uint32Value) Type() string {\n\treturn \"uint32\"\n}\n\nfunc (i *uint32Value) String() string { return strconv.FormatUint(uint64(*i), 10) }\n\nfunc uint32Conv(sval string) (interface{}, error) {\n\tv, err := strconv.ParseUint(sval, 0, 32)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn uint32(v), nil\n}\n\n// GetUint32 return the uint32 value of a flag with the given name\nfunc (f *FlagSet) GetUint32(name string) (uint32, error) {\n\tval, err := f.getFlagType(name, \"uint32\", uint32Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(uint32), nil\n}\n\n// Uint32Var defines a uint32 flag with specified name, default value, and usage string.\n// The argument p points to a uint32 variable in which to store the value of the flag.\nfunc (f *FlagSet) Uint32Var(p *uint32, name string, value uint32, usage string) {\n\tf.VarP(newUint32Value(value, p), name, \"\", usage)\n}\n\n// Uint32VarP is like Uint32Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Uint32VarP(p *uint32, name, shorthand string, value uint32, usage string) {\n\tf.VarP(newUint32Value(value, p), name, shorthand, usage)\n}\n\n// Uint32Var defines a uint32 flag with specified name, default value, and usage string.\n// The argument p points to a uint32  variable in which to store the value of the flag.\nfunc Uint32Var(p *uint32, name string, value uint32, usage string) {\n\tCommandLine.VarP(newUint32Value(value, p), name, \"\", usage)\n}\n\n// Uint32VarP is like Uint32Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Uint32VarP(p *uint32, name, shorthand string, value uint32, usage string) {\n\tCommandLine.VarP(newUint32Value(value, p), name, shorthand, usage)\n}\n\n// Uint32 defines a uint32 flag with specified name, default value, and usage string.\n// The return value is the address of a uint32  variable that stores the value of the flag.\nfunc (f *FlagSet) Uint32(name string, value uint32, usage string) *uint32 {\n\tp := new(uint32)\n\tf.Uint32VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Uint32P is like Uint32, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Uint32P(name, shorthand string, value uint32, usage string) *uint32 {\n\tp := new(uint32)\n\tf.Uint32VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Uint32 defines a uint32 flag with specified name, default value, and usage string.\n// The return value is the address of a uint32  variable that stores the value of the flag.\nfunc Uint32(name string, value uint32, usage string) *uint32 {\n\treturn CommandLine.Uint32P(name, \"\", value, usage)\n}\n\n// Uint32P is like Uint32, but accepts a shorthand letter that can be used after a single dash.\nfunc Uint32P(name, shorthand string, value uint32, usage string) *uint32 {\n\treturn CommandLine.Uint32P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/uint64.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- uint64 Value\ntype uint64Value uint64\n\nfunc newUint64Value(val uint64, p *uint64) *uint64Value {\n\t*p = val\n\treturn (*uint64Value)(p)\n}\n\nfunc (i *uint64Value) Set(s string) error {\n\tv, err := strconv.ParseUint(s, 0, 64)\n\t*i = uint64Value(v)\n\treturn err\n}\n\nfunc (i *uint64Value) Type() string {\n\treturn \"uint64\"\n}\n\nfunc (i *uint64Value) String() string { return strconv.FormatUint(uint64(*i), 10) }\n\nfunc uint64Conv(sval string) (interface{}, error) {\n\tv, err := strconv.ParseUint(sval, 0, 64)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn uint64(v), nil\n}\n\n// GetUint64 return the uint64 value of a flag with the given name\nfunc (f *FlagSet) GetUint64(name string) (uint64, error) {\n\tval, err := f.getFlagType(name, \"uint64\", uint64Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(uint64), nil\n}\n\n// Uint64Var defines a uint64 flag with specified name, default value, and usage string.\n// The argument p points to a uint64 variable in which to store the value of the flag.\nfunc (f *FlagSet) Uint64Var(p *uint64, name string, value uint64, usage string) {\n\tf.VarP(newUint64Value(value, p), name, \"\", usage)\n}\n\n// Uint64VarP is like Uint64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Uint64VarP(p *uint64, name, shorthand string, value uint64, usage string) {\n\tf.VarP(newUint64Value(value, p), name, shorthand, usage)\n}\n\n// Uint64Var defines a uint64 flag with specified name, default value, and usage string.\n// The argument p points to a uint64 variable in which to store the value of the flag.\nfunc Uint64Var(p *uint64, name string, value uint64, usage string) {\n\tCommandLine.VarP(newUint64Value(value, p), name, \"\", usage)\n}\n\n// Uint64VarP is like Uint64Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Uint64VarP(p *uint64, name, shorthand string, value uint64, usage string) {\n\tCommandLine.VarP(newUint64Value(value, p), name, shorthand, usage)\n}\n\n// Uint64 defines a uint64 flag with specified name, default value, and usage string.\n// The return value is the address of a uint64 variable that stores the value of the flag.\nfunc (f *FlagSet) Uint64(name string, value uint64, usage string) *uint64 {\n\tp := new(uint64)\n\tf.Uint64VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Uint64P is like Uint64, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Uint64P(name, shorthand string, value uint64, usage string) *uint64 {\n\tp := new(uint64)\n\tf.Uint64VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Uint64 defines a uint64 flag with specified name, default value, and usage string.\n// The return value is the address of a uint64 variable that stores the value of the flag.\nfunc Uint64(name string, value uint64, usage string) *uint64 {\n\treturn CommandLine.Uint64P(name, \"\", value, usage)\n}\n\n// Uint64P is like Uint64, but accepts a shorthand letter that can be used after a single dash.\nfunc Uint64P(name, shorthand string, value uint64, usage string) *uint64 {\n\treturn CommandLine.Uint64P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/uint8.go",
    "content": "package pflag\n\nimport \"strconv\"\n\n// -- uint8 Value\ntype uint8Value uint8\n\nfunc newUint8Value(val uint8, p *uint8) *uint8Value {\n\t*p = val\n\treturn (*uint8Value)(p)\n}\n\nfunc (i *uint8Value) Set(s string) error {\n\tv, err := strconv.ParseUint(s, 0, 8)\n\t*i = uint8Value(v)\n\treturn err\n}\n\nfunc (i *uint8Value) Type() string {\n\treturn \"uint8\"\n}\n\nfunc (i *uint8Value) String() string { return strconv.FormatUint(uint64(*i), 10) }\n\nfunc uint8Conv(sval string) (interface{}, error) {\n\tv, err := strconv.ParseUint(sval, 0, 8)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn uint8(v), nil\n}\n\n// GetUint8 return the uint8 value of a flag with the given name\nfunc (f *FlagSet) GetUint8(name string) (uint8, error) {\n\tval, err := f.getFlagType(name, \"uint8\", uint8Conv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn val.(uint8), nil\n}\n\n// Uint8Var defines a uint8 flag with specified name, default value, and usage string.\n// The argument p points to a uint8 variable in which to store the value of the flag.\nfunc (f *FlagSet) Uint8Var(p *uint8, name string, value uint8, usage string) {\n\tf.VarP(newUint8Value(value, p), name, \"\", usage)\n}\n\n// Uint8VarP is like Uint8Var, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Uint8VarP(p *uint8, name, shorthand string, value uint8, usage string) {\n\tf.VarP(newUint8Value(value, p), name, shorthand, usage)\n}\n\n// Uint8Var defines a uint8 flag with specified name, default value, and usage string.\n// The argument p points to a uint8 variable in which to store the value of the flag.\nfunc Uint8Var(p *uint8, name string, value uint8, usage string) {\n\tCommandLine.VarP(newUint8Value(value, p), name, \"\", usage)\n}\n\n// Uint8VarP is like Uint8Var, but accepts a shorthand letter that can be used after a single dash.\nfunc Uint8VarP(p *uint8, name, shorthand string, value uint8, usage string) {\n\tCommandLine.VarP(newUint8Value(value, p), name, shorthand, usage)\n}\n\n// Uint8 defines a uint8 flag with specified name, default value, and usage string.\n// The return value is the address of a uint8 variable that stores the value of the flag.\nfunc (f *FlagSet) Uint8(name string, value uint8, usage string) *uint8 {\n\tp := new(uint8)\n\tf.Uint8VarP(p, name, \"\", value, usage)\n\treturn p\n}\n\n// Uint8P is like Uint8, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) Uint8P(name, shorthand string, value uint8, usage string) *uint8 {\n\tp := new(uint8)\n\tf.Uint8VarP(p, name, shorthand, value, usage)\n\treturn p\n}\n\n// Uint8 defines a uint8 flag with specified name, default value, and usage string.\n// The return value is the address of a uint8 variable that stores the value of the flag.\nfunc Uint8(name string, value uint8, usage string) *uint8 {\n\treturn CommandLine.Uint8P(name, \"\", value, usage)\n}\n\n// Uint8P is like Uint8, but accepts a shorthand letter that can be used after a single dash.\nfunc Uint8P(name, shorthand string, value uint8, usage string) *uint8 {\n\treturn CommandLine.Uint8P(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/spf13/pflag/uint_slice.go",
    "content": "package pflag\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// -- uintSlice Value\ntype uintSliceValue struct {\n\tvalue   *[]uint\n\tchanged bool\n}\n\nfunc newUintSliceValue(val []uint, p *[]uint) *uintSliceValue {\n\tuisv := new(uintSliceValue)\n\tuisv.value = p\n\t*uisv.value = val\n\treturn uisv\n}\n\nfunc (s *uintSliceValue) Set(val string) error {\n\tss := strings.Split(val, \",\")\n\tout := make([]uint, len(ss))\n\tfor i, d := range ss {\n\t\tu, err := strconv.ParseUint(d, 10, 0)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tout[i] = uint(u)\n\t}\n\tif !s.changed {\n\t\t*s.value = out\n\t} else {\n\t\t*s.value = append(*s.value, out...)\n\t}\n\ts.changed = true\n\treturn nil\n}\n\nfunc (s *uintSliceValue) Type() string {\n\treturn \"uintSlice\"\n}\n\nfunc (s *uintSliceValue) String() string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = fmt.Sprintf(\"%d\", d)\n\t}\n\treturn \"[\" + strings.Join(out, \",\") + \"]\"\n}\n\nfunc (s *uintSliceValue) fromString(val string) (uint, error) {\n\tt, err := strconv.ParseUint(val, 10, 0)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn uint(t), nil\n}\n\nfunc (s *uintSliceValue) toString(val uint) string {\n\treturn fmt.Sprintf(\"%d\", val)\n}\n\nfunc (s *uintSliceValue) Append(val string) error {\n\ti, err := s.fromString(val)\n\tif err != nil {\n\t\treturn err\n\t}\n\t*s.value = append(*s.value, i)\n\treturn nil\n}\n\nfunc (s *uintSliceValue) Replace(val []string) error {\n\tout := make([]uint, len(val))\n\tfor i, d := range val {\n\t\tvar err error\n\t\tout[i], err = s.fromString(d)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\t*s.value = out\n\treturn nil\n}\n\nfunc (s *uintSliceValue) GetSlice() []string {\n\tout := make([]string, len(*s.value))\n\tfor i, d := range *s.value {\n\t\tout[i] = s.toString(d)\n\t}\n\treturn out\n}\n\nfunc uintSliceConv(val string) (interface{}, error) {\n\tval = strings.Trim(val, \"[]\")\n\t// Empty string would cause a slice with one (empty) entry\n\tif len(val) == 0 {\n\t\treturn []uint{}, nil\n\t}\n\tss := strings.Split(val, \",\")\n\tout := make([]uint, len(ss))\n\tfor i, d := range ss {\n\t\tu, err := strconv.ParseUint(d, 10, 0)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tout[i] = uint(u)\n\t}\n\treturn out, nil\n}\n\n// GetUintSlice returns the []uint value of a flag with the given name.\nfunc (f *FlagSet) GetUintSlice(name string) ([]uint, error) {\n\tval, err := f.getFlagType(name, \"uintSlice\", uintSliceConv)\n\tif err != nil {\n\t\treturn []uint{}, err\n\t}\n\treturn val.([]uint), nil\n}\n\n// UintSliceVar defines a uintSlice flag with specified name, default value, and usage string.\n// The argument p points to a []uint variable in which to store the value of the flag.\nfunc (f *FlagSet) UintSliceVar(p *[]uint, name string, value []uint, usage string) {\n\tf.VarP(newUintSliceValue(value, p), name, \"\", usage)\n}\n\n// UintSliceVarP is like UintSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) UintSliceVarP(p *[]uint, name, shorthand string, value []uint, usage string) {\n\tf.VarP(newUintSliceValue(value, p), name, shorthand, usage)\n}\n\n// UintSliceVar defines a uint[] flag with specified name, default value, and usage string.\n// The argument p points to a uint[] variable in which to store the value of the flag.\nfunc UintSliceVar(p *[]uint, name string, value []uint, usage string) {\n\tCommandLine.VarP(newUintSliceValue(value, p), name, \"\", usage)\n}\n\n// UintSliceVarP is like the UintSliceVar, but accepts a shorthand letter that can be used after a single dash.\nfunc UintSliceVarP(p *[]uint, name, shorthand string, value []uint, usage string) {\n\tCommandLine.VarP(newUintSliceValue(value, p), name, shorthand, usage)\n}\n\n// UintSlice defines a []uint flag with specified name, default value, and usage string.\n// The return value is the address of a []uint variable that stores the value of the flag.\nfunc (f *FlagSet) UintSlice(name string, value []uint, usage string) *[]uint {\n\tp := []uint{}\n\tf.UintSliceVarP(&p, name, \"\", value, usage)\n\treturn &p\n}\n\n// UintSliceP is like UintSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc (f *FlagSet) UintSliceP(name, shorthand string, value []uint, usage string) *[]uint {\n\tp := []uint{}\n\tf.UintSliceVarP(&p, name, shorthand, value, usage)\n\treturn &p\n}\n\n// UintSlice defines a []uint flag with specified name, default value, and usage string.\n// The return value is the address of a []uint variable that stores the value of the flag.\nfunc UintSlice(name string, value []uint, usage string) *[]uint {\n\treturn CommandLine.UintSliceP(name, \"\", value, usage)\n}\n\n// UintSliceP is like UintSlice, but accepts a shorthand letter that can be used after a single dash.\nfunc UintSliceP(name, shorthand string, value []uint, usage string) *[]uint {\n\treturn CommandLine.UintSliceP(name, shorthand, value, usage)\n}\n"
  },
  {
    "path": "vendor/github.com/subosito/gotenv/.gitignore",
    "content": "*.test\n*.out\nannotate.json\n"
  },
  {
    "path": "vendor/github.com/subosito/gotenv/.travis.yml",
    "content": "language: go\ngo:\n  - 1.x\nos:\n  - linux\n  - osx\nscript:\n  - go test -test.v -coverprofile=coverage.out -covermode=count\nafter_success:\n  - bash <(curl -s https://codecov.io/bash)\n"
  },
  {
    "path": "vendor/github.com/subosito/gotenv/CHANGELOG.md",
    "content": "# Changelog\n\n## [1.2.0] - 2019-08-03\n\n### Added\n\n- Add `Must` helper to raise an error as panic. It can be used with `Load` and `OverLoad`.\n- Add more tests to be 100% coverage.\n- Add CHANGELOG\n- Add more OS for the test: OSX and Windows\n\n### Changed\n\n- Reduce complexity and improve source code for having `A+` score in [goreportcard](https://goreportcard.com/report/github.com/subosito/gotenv).\n- Updated README with mentions to all available functions\n\n### Removed\n\n- Remove `ErrFormat`\n- Remove `MustLoad` and `MustOverload`, replaced with `Must` helper.\n\n## [1.1.1] - 2018-06-05\n\n### Changed\n\n- Replace `os.Getenv` with `os.LookupEnv` to ensure that the environment variable is not set, by [radding](https://github.com/radding)\n\n## [1.1.0] - 2017-03-20\n\n### Added\n\n- Supports carriage return in env\n- Handle files with UTF-8 BOM \n\n### Changed\n\n- Whitespace handling\n\n### Fixed\n\n- Incorrect variable expansion\n- Handling escaped '$' characters\n\n## [1.0.0] - 2014-10-05\n\nFirst stable release.\n\n"
  },
  {
    "path": "vendor/github.com/subosito/gotenv/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Alif Rachmawadi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/subosito/gotenv/README.md",
    "content": "# gotenv\n\n[![Build Status](https://travis-ci.org/subosito/gotenv.svg?branch=master)](https://travis-ci.org/subosito/gotenv)\n[![Build status](https://ci.appveyor.com/api/projects/status/wb2e075xkfl0m0v2/branch/master?svg=true)](https://ci.appveyor.com/project/subosito/gotenv/branch/master)\n[![Coverage Status](https://badgen.net/codecov/c/github/subosito/gotenv)](https://codecov.io/gh/subosito/gotenv)\n[![Go Report Card](https://goreportcard.com/badge/github.com/subosito/gotenv)](https://goreportcard.com/report/github.com/subosito/gotenv)\n[![GoDoc](https://godoc.org/github.com/subosito/gotenv?status.svg)](https://godoc.org/github.com/subosito/gotenv)\n\nLoad environment variables dynamically in Go.\n\n## Usage\n\nPut the gotenv package on your `import` statement:\n\n```go\nimport \"github.com/subosito/gotenv\"\n```\n\nTo modify your app environment variables, `gotenv` expose 2 main functions:\n\n- `gotenv.Load`\n- `gotenv.Apply`\n\nBy default, `gotenv.Load` will look for a file called `.env` in the current working directory.\n\nBehind the scene, it will then load `.env` file and export the valid variables to the environment variables. Make sure you call the method as soon as possible to ensure it loads all variables, say, put it on `init()` function.\n\nOnce loaded you can use `os.Getenv()` to get the value of the variable.\n\nLet's say you have `.env` file:\n\n```\nAPP_ID=1234567\nAPP_SECRET=abcdef\n```\n\nHere's the example of your app:\n\n```go\npackage main\n\nimport (\n\t\"github.com/subosito/gotenv\"\n\t\"log\"\n\t\"os\"\n)\n\nfunc init() {\n\tgotenv.Load()\n}\n\nfunc main() {\n\tlog.Println(os.Getenv(\"APP_ID\"))     // \"1234567\"\n\tlog.Println(os.Getenv(\"APP_SECRET\")) // \"abcdef\"\n}\n```\n\nYou can also load other than `.env` file if you wish. Just supply filenames when calling `Load()`. It will load them in order and the first value set for a variable will win.:\n\n```go\ngotenv.Load(\".env.production\", \"credentials\")\n```\n\nWhile `gotenv.Load` loads entries from `.env` file, `gotenv.Apply` allows you to use any `io.Reader`:\n\n```go\ngotenv.Apply(strings.NewReader(\"APP_ID=1234567\"))\n\nlog.Println(os.Getenv(\"APP_ID\"))\n// Output: \"1234567\"\n```\n\nBoth `gotenv.Load` and `gotenv.Apply` **DO NOT** overrides existing environment variables. If you want to override existing ones, you can see section below.\n\n### Environment Overrides\n\nBesides above functions, `gotenv` also provides another functions that overrides existing:\n\n- `gotenv.OverLoad`\n- `gotenv.OverApply`\n\n\nHere's the example of this overrides behavior:\n\n```go\nos.Setenv(\"HELLO\", \"world\")\n\n// NOTE: using Apply existing value will be reserved\ngotenv.Apply(strings.NewReader(\"HELLO=universe\"))\nfmt.Println(os.Getenv(\"HELLO\"))\n// Output: \"world\"\n\n// NOTE: using OverApply existing value will be overridden\ngotenv.OverApply(strings.NewReader(\"HELLO=universe\"))\nfmt.Println(os.Getenv(\"HELLO\"))\n// Output: \"universe\"\n```\n\n### Throw a Panic\n\nBoth `gotenv.Load` and `gotenv.OverLoad` returns an error on something wrong occurred, like your env file is not exist, and so on. To make it easier to use, `gotenv` also provides `gotenv.Must` helper, to let it panic when an error returned.\n\n```go\nerr := gotenv.Load(\".env-is-not-exist\")\nfmt.Println(\"error\", err)\n// error: open .env-is-not-exist: no such file or directory\n\ngotenv.Must(gotenv.Load, \".env-is-not-exist\")\n// it will throw a panic\n// panic: open .env-is-not-exist: no such file or directory\n```\n\n### Another Scenario\n\nJust in case you want to parse environment variables from any `io.Reader`, gotenv keeps its `Parse` and `StrictParse` function as public API so you can use that.\n\n```go\n// import \"strings\"\n\npairs := gotenv.Parse(strings.NewReader(\"FOO=test\\nBAR=$FOO\"))\n// gotenv.Env{\"FOO\": \"test\", \"BAR\": \"test\"}\n\nerr, pairs = gotenv.StrictParse(strings.NewReader(`FOO=\"bar\"`))\n// gotenv.Env{\"FOO\": \"bar\"}\n```\n\n`Parse` ignores invalid lines and returns `Env` of valid environment variables, while `StrictParse` returns an error for invalid lines.\n\n## Notes\n\nThe gotenv package is a Go port of [`dotenv`](https://github.com/bkeepers/dotenv) project with some additions made for Go. For general features, it aims to be compatible as close as possible.\n"
  },
  {
    "path": "vendor/github.com/subosito/gotenv/appveyor.yml",
    "content": "build: off\nclone_folder: c:\\gopath\\src\\github.com\\subosito\\gotenv\nenvironment:\n  GOPATH: c:\\gopath\nstack: go 1.10\nbefore_test:\n  - go get -t\ntest_script:\n  - go test -v -cover -race\n"
  },
  {
    "path": "vendor/github.com/subosito/gotenv/gotenv.go",
    "content": "// Package gotenv provides functionality to dynamically load the environment variables\npackage gotenv\n\nimport (\n\t\"bufio\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"regexp\"\n\t\"strings\"\n)\n\nconst (\n\t// Pattern for detecting valid line format\n\tlinePattern = `\\A\\s*(?:export\\s+)?([\\w\\.]+)(?:\\s*=\\s*|:\\s+?)('(?:\\'|[^'])*'|\"(?:\\\"|[^\"])*\"|[^#\\n]+)?\\s*(?:\\s*\\#.*)?\\z`\n\n\t// Pattern for detecting valid variable within a value\n\tvariablePattern = `(\\\\)?(\\$)(\\{?([A-Z0-9_]+)?\\}?)`\n)\n\n// Env holds key/value pair of valid environment variable\ntype Env map[string]string\n\n/*\nLoad is a function to load a file or multiple files and then export the valid variables into environment variables if they do not exist.\nWhen it's called with no argument, it will load `.env` file on the current path and set the environment variables.\nOtherwise, it will loop over the filenames parameter and set the proper environment variables.\n*/\nfunc Load(filenames ...string) error {\n\treturn loadenv(false, filenames...)\n}\n\n/*\nOverLoad is a function to load a file or multiple files and then export and override the valid variables into environment variables.\n*/\nfunc OverLoad(filenames ...string) error {\n\treturn loadenv(true, filenames...)\n}\n\n/*\nMust is wrapper function that will panic when supplied function returns an error.\n*/\nfunc Must(fn func(filenames ...string) error, filenames ...string) {\n\tif err := fn(filenames...); err != nil {\n\t\tpanic(err.Error())\n\t}\n}\n\n/*\nApply is a function to load an io Reader then export the valid variables into environment variables if they do not exist.\n*/\nfunc Apply(r io.Reader) error {\n\treturn parset(r, false)\n}\n\n/*\nOverApply is a function to load an io Reader then export and override the valid variables into environment variables.\n*/\nfunc OverApply(r io.Reader) error {\n\treturn parset(r, true)\n}\n\nfunc loadenv(override bool, filenames ...string) error {\n\tif len(filenames) == 0 {\n\t\tfilenames = []string{\".env\"}\n\t}\n\n\tfor _, filename := range filenames {\n\t\tf, err := os.Open(filename)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\terr = parset(f, override)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tf.Close()\n\t}\n\n\treturn nil\n}\n\n// parse and set :)\nfunc parset(r io.Reader, override bool) error {\n\tenv, err := StrictParse(r)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tfor key, val := range env {\n\t\tsetenv(key, val, override)\n\t}\n\n\treturn nil\n}\n\nfunc setenv(key, val string, override bool) {\n\tif override {\n\t\tos.Setenv(key, val)\n\t} else {\n\t\tif _, present := os.LookupEnv(key); !present {\n\t\t\tos.Setenv(key, val)\n\t\t}\n\t}\n}\n\n// Parse is a function to parse line by line any io.Reader supplied and returns the valid Env key/value pair of valid variables.\n// It expands the value of a variable from the environment variable but does not set the value to the environment itself.\n// This function is skipping any invalid lines and only processing the valid one.\nfunc Parse(r io.Reader) Env {\n\tenv, _ := StrictParse(r)\n\treturn env\n}\n\n// StrictParse is a function to parse line by line any io.Reader supplied and returns the valid Env key/value pair of valid variables.\n// It expands the value of a variable from the environment variable but does not set the value to the environment itself.\n// This function is returning an error if there are any invalid lines.\nfunc StrictParse(r io.Reader) (Env, error) {\n\tenv := make(Env)\n\tscanner := bufio.NewScanner(r)\n\n\ti := 1\n\tbom := string([]byte{239, 187, 191})\n\n\tfor scanner.Scan() {\n\t\tline := scanner.Text()\n\n\t\tif i == 1 {\n\t\t\tline = strings.TrimPrefix(line, bom)\n\t\t}\n\n\t\ti++\n\n\t\terr := parseLine(line, env)\n\t\tif err != nil {\n\t\t\treturn env, err\n\t\t}\n\t}\n\n\treturn env, nil\n}\n\nfunc parseLine(s string, env Env) error {\n\trl := regexp.MustCompile(linePattern)\n\trm := rl.FindStringSubmatch(s)\n\n\tif len(rm) == 0 {\n\t\treturn checkFormat(s, env)\n\t}\n\n\tkey := rm[1]\n\tval := rm[2]\n\n\t// determine if string has quote prefix\n\thdq := strings.HasPrefix(val, `\"`)\n\n\t// determine if string has single quote prefix\n\thsq := strings.HasPrefix(val, `'`)\n\n\t// trim whitespace\n\tval = strings.Trim(val, \" \")\n\n\t// remove quotes '' or \"\"\n\trq := regexp.MustCompile(`\\A(['\"])(.*)(['\"])\\z`)\n\tval = rq.ReplaceAllString(val, \"$2\")\n\n\tif hdq {\n\t\tval = strings.Replace(val, `\\n`, \"\\n\", -1)\n\t\tval = strings.Replace(val, `\\r`, \"\\r\", -1)\n\n\t\t// Unescape all characters except $ so variables can be escaped properly\n\t\tre := regexp.MustCompile(`\\\\([^$])`)\n\t\tval = re.ReplaceAllString(val, \"$1\")\n\t}\n\n\trv := regexp.MustCompile(variablePattern)\n\tfv := func(s string) string {\n\t\treturn varReplacement(s, hsq, env)\n\t}\n\n\tval = rv.ReplaceAllStringFunc(val, fv)\n\tval = parseVal(val, env)\n\n\tenv[key] = val\n\treturn nil\n}\n\nfunc parseExport(st string, env Env) error {\n\tif strings.HasPrefix(st, \"export\") {\n\t\tvs := strings.SplitN(st, \" \", 2)\n\n\t\tif len(vs) > 1 {\n\t\t\tif _, ok := env[vs[1]]; !ok {\n\t\t\t\treturn fmt.Errorf(\"line `%s` has an unset variable\", st)\n\t\t\t}\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc varReplacement(s string, hsq bool, env Env) string {\n\tif strings.HasPrefix(s, \"\\\\\") {\n\t\treturn strings.TrimPrefix(s, \"\\\\\")\n\t}\n\n\tif hsq {\n\t\treturn s\n\t}\n\n\tsn := `(\\$)(\\{?([A-Z0-9_]+)\\}?)`\n\trn := regexp.MustCompile(sn)\n\tmn := rn.FindStringSubmatch(s)\n\n\tif len(mn) == 0 {\n\t\treturn s\n\t}\n\n\tv := mn[3]\n\n\treplace, ok := env[v]\n\tif !ok {\n\t\treplace = os.Getenv(v)\n\t}\n\n\treturn replace\n}\n\nfunc checkFormat(s string, env Env) error {\n\tst := strings.TrimSpace(s)\n\n\tif (st == \"\") || strings.HasPrefix(st, \"#\") {\n\t\treturn nil\n\t}\n\n\tif err := parseExport(st, env); err != nil {\n\t\treturn err\n\t}\n\n\treturn fmt.Errorf(\"line `%s` doesn't match format\", s)\n}\n\nfunc parseVal(val string, env Env) string {\n\tif strings.Contains(val, \"=\") {\n\t\tif !(val == \"\\n\" || val == \"\\r\") {\n\t\t\tkv := strings.Split(val, \"\\n\")\n\n\t\t\tif len(kv) == 1 {\n\t\t\t\tkv = strings.Split(val, \"\\r\")\n\t\t\t}\n\n\t\t\tif len(kv) > 1 {\n\t\t\t\tval = kv[0]\n\n\t\t\t\tfor i := 1; i < len(kv); i++ {\n\t\t\t\t\tparseLine(kv[i], env)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/bytebufferpool/.travis.yml",
    "content": "language: go\n\ngo:\n  - 1.6\n\nscript:\n  # build test for supported platforms\n  - GOOS=linux go build\n  - GOOS=darwin go build\n  - GOOS=freebsd go build\n  - GOOS=windows go build\n  - GOARCH=386 go build\n\n  # run tests on a standard platform\n  - go test -v ./...\n"
  },
  {
    "path": "vendor/github.com/valyala/bytebufferpool/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Aliaksandr Valialkin, VertaMedia\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
  },
  {
    "path": "vendor/github.com/valyala/bytebufferpool/README.md",
    "content": "[![Build Status](https://travis-ci.org/valyala/bytebufferpool.svg)](https://travis-ci.org/valyala/bytebufferpool)\n[![GoDoc](https://godoc.org/github.com/valyala/bytebufferpool?status.svg)](http://godoc.org/github.com/valyala/bytebufferpool)\n[![Go Report](http://goreportcard.com/badge/valyala/bytebufferpool)](http://goreportcard.com/report/valyala/bytebufferpool)\n\n# bytebufferpool\n\nAn implementation of a pool of byte buffers with anti-memory-waste protection.\n\nThe pool may waste limited amount of memory due to fragmentation.\nThis amount equals to the maximum total size of the byte buffers\nin concurrent use.\n\n# Benchmark results\nCurrently bytebufferpool is fastest and most effective buffer pool written in Go.\n\nYou can find results [here](https://omgnull.github.io/go-benchmark/buffer/).\n\n# bytebufferpool users\n\n* [fasthttp](https://github.com/valyala/fasthttp)\n* [quicktemplate](https://github.com/valyala/quicktemplate)\n"
  },
  {
    "path": "vendor/github.com/valyala/bytebufferpool/bytebuffer.go",
    "content": "package bytebufferpool\n\nimport \"io\"\n\n// ByteBuffer provides byte buffer, which can be used for minimizing\n// memory allocations.\n//\n// ByteBuffer may be used with functions appending data to the given []byte\n// slice. See example code for details.\n//\n// Use Get for obtaining an empty byte buffer.\ntype ByteBuffer struct {\n\n\t// B is a byte buffer to use in append-like workloads.\n\t// See example code for details.\n\tB []byte\n}\n\n// Len returns the size of the byte buffer.\nfunc (b *ByteBuffer) Len() int {\n\treturn len(b.B)\n}\n\n// ReadFrom implements io.ReaderFrom.\n//\n// The function appends all the data read from r to b.\nfunc (b *ByteBuffer) ReadFrom(r io.Reader) (int64, error) {\n\tp := b.B\n\tnStart := int64(len(p))\n\tnMax := int64(cap(p))\n\tn := nStart\n\tif nMax == 0 {\n\t\tnMax = 64\n\t\tp = make([]byte, nMax)\n\t} else {\n\t\tp = p[:nMax]\n\t}\n\tfor {\n\t\tif n == nMax {\n\t\t\tnMax *= 2\n\t\t\tbNew := make([]byte, nMax)\n\t\t\tcopy(bNew, p)\n\t\t\tp = bNew\n\t\t}\n\t\tnn, err := r.Read(p[n:])\n\t\tn += int64(nn)\n\t\tif err != nil {\n\t\t\tb.B = p[:n]\n\t\t\tn -= nStart\n\t\t\tif err == io.EOF {\n\t\t\t\treturn n, nil\n\t\t\t}\n\t\t\treturn n, err\n\t\t}\n\t}\n}\n\n// WriteTo implements io.WriterTo.\nfunc (b *ByteBuffer) WriteTo(w io.Writer) (int64, error) {\n\tn, err := w.Write(b.B)\n\treturn int64(n), err\n}\n\n// Bytes returns b.B, i.e. all the bytes accumulated in the buffer.\n//\n// The purpose of this function is bytes.Buffer compatibility.\nfunc (b *ByteBuffer) Bytes() []byte {\n\treturn b.B\n}\n\n// Write implements io.Writer - it appends p to ByteBuffer.B\nfunc (b *ByteBuffer) Write(p []byte) (int, error) {\n\tb.B = append(b.B, p...)\n\treturn len(p), nil\n}\n\n// WriteByte appends the byte c to the buffer.\n//\n// The purpose of this function is bytes.Buffer compatibility.\n//\n// The function always returns nil.\nfunc (b *ByteBuffer) WriteByte(c byte) error {\n\tb.B = append(b.B, c)\n\treturn nil\n}\n\n// WriteString appends s to ByteBuffer.B.\nfunc (b *ByteBuffer) WriteString(s string) (int, error) {\n\tb.B = append(b.B, s...)\n\treturn len(s), nil\n}\n\n// Set sets ByteBuffer.B to p.\nfunc (b *ByteBuffer) Set(p []byte) {\n\tb.B = append(b.B[:0], p...)\n}\n\n// SetString sets ByteBuffer.B to s.\nfunc (b *ByteBuffer) SetString(s string) {\n\tb.B = append(b.B[:0], s...)\n}\n\n// String returns string representation of ByteBuffer.B.\nfunc (b *ByteBuffer) String() string {\n\treturn string(b.B)\n}\n\n// Reset makes ByteBuffer.B empty.\nfunc (b *ByteBuffer) Reset() {\n\tb.B = b.B[:0]\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/bytebufferpool/doc.go",
    "content": "// Package bytebufferpool implements a pool of byte buffers\n// with anti-fragmentation protection.\n//\n// The pool may waste limited amount of memory due to fragmentation.\n// This amount equals to the maximum total size of the byte buffers\n// in concurrent use.\npackage bytebufferpool\n"
  },
  {
    "path": "vendor/github.com/valyala/bytebufferpool/pool.go",
    "content": "package bytebufferpool\n\nimport (\n\t\"sort\"\n\t\"sync\"\n\t\"sync/atomic\"\n)\n\nconst (\n\tminBitSize = 6 // 2**6=64 is a CPU cache line size\n\tsteps      = 20\n\n\tminSize = 1 << minBitSize\n\tmaxSize = 1 << (minBitSize + steps - 1)\n\n\tcalibrateCallsThreshold = 42000\n\tmaxPercentile           = 0.95\n)\n\n// Pool represents byte buffer pool.\n//\n// Distinct pools may be used for distinct types of byte buffers.\n// Properly determined byte buffer types with their own pools may help reducing\n// memory waste.\ntype Pool struct {\n\tcalls       [steps]uint64\n\tcalibrating uint64\n\n\tdefaultSize uint64\n\tmaxSize     uint64\n\n\tpool sync.Pool\n}\n\nvar defaultPool Pool\n\n// Get returns an empty byte buffer from the pool.\n//\n// Got byte buffer may be returned to the pool via Put call.\n// This reduces the number of memory allocations required for byte buffer\n// management.\nfunc Get() *ByteBuffer { return defaultPool.Get() }\n\n// Get returns new byte buffer with zero length.\n//\n// The byte buffer may be returned to the pool via Put after the use\n// in order to minimize GC overhead.\nfunc (p *Pool) Get() *ByteBuffer {\n\tv := p.pool.Get()\n\tif v != nil {\n\t\treturn v.(*ByteBuffer)\n\t}\n\treturn &ByteBuffer{\n\t\tB: make([]byte, 0, atomic.LoadUint64(&p.defaultSize)),\n\t}\n}\n\n// Put returns byte buffer to the pool.\n//\n// ByteBuffer.B mustn't be touched after returning it to the pool.\n// Otherwise data races will occur.\nfunc Put(b *ByteBuffer) { defaultPool.Put(b) }\n\n// Put releases byte buffer obtained via Get to the pool.\n//\n// The buffer mustn't be accessed after returning to the pool.\nfunc (p *Pool) Put(b *ByteBuffer) {\n\tidx := index(len(b.B))\n\n\tif atomic.AddUint64(&p.calls[idx], 1) > calibrateCallsThreshold {\n\t\tp.calibrate()\n\t}\n\n\tmaxSize := int(atomic.LoadUint64(&p.maxSize))\n\tif maxSize == 0 || cap(b.B) <= maxSize {\n\t\tb.Reset()\n\t\tp.pool.Put(b)\n\t}\n}\n\nfunc (p *Pool) calibrate() {\n\tif !atomic.CompareAndSwapUint64(&p.calibrating, 0, 1) {\n\t\treturn\n\t}\n\n\ta := make(callSizes, 0, steps)\n\tvar callsSum uint64\n\tfor i := uint64(0); i < steps; i++ {\n\t\tcalls := atomic.SwapUint64(&p.calls[i], 0)\n\t\tcallsSum += calls\n\t\ta = append(a, callSize{\n\t\t\tcalls: calls,\n\t\t\tsize:  minSize << i,\n\t\t})\n\t}\n\tsort.Sort(a)\n\n\tdefaultSize := a[0].size\n\tmaxSize := defaultSize\n\n\tmaxSum := uint64(float64(callsSum) * maxPercentile)\n\tcallsSum = 0\n\tfor i := 0; i < steps; i++ {\n\t\tif callsSum > maxSum {\n\t\t\tbreak\n\t\t}\n\t\tcallsSum += a[i].calls\n\t\tsize := a[i].size\n\t\tif size > maxSize {\n\t\t\tmaxSize = size\n\t\t}\n\t}\n\n\tatomic.StoreUint64(&p.defaultSize, defaultSize)\n\tatomic.StoreUint64(&p.maxSize, maxSize)\n\n\tatomic.StoreUint64(&p.calibrating, 0)\n}\n\ntype callSize struct {\n\tcalls uint64\n\tsize  uint64\n}\n\ntype callSizes []callSize\n\nfunc (ci callSizes) Len() int {\n\treturn len(ci)\n}\n\nfunc (ci callSizes) Less(i, j int) bool {\n\treturn ci[i].calls > ci[j].calls\n}\n\nfunc (ci callSizes) Swap(i, j int) {\n\tci[i], ci[j] = ci[j], ci[i]\n}\n\nfunc index(n int) int {\n\tn--\n\tn >>= minBitSize\n\tidx := 0\n\tfor n > 0 {\n\t\tn >>= 1\n\t\tidx++\n\t}\n\tif idx >= steps {\n\t\tidx = steps - 1\n\t}\n\treturn idx\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/.gitignore",
    "content": "tags\n*.pprof\n*.fasthttp.gz\n*.fasthttp.br\n.idea\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/.travis.yml",
    "content": "language: go\narch:\n  - amd64\n  - ppc64le\n\ndist: bionic\n\nos:\n  - linux\n  - osx\n  - windows\ngo:\n  - 1.15.x\n  - 1.14.x\n  - 1.13.x\n  - 1.12.x\n\nscript:\n  - go test -v ./...\n\nenv:\n  global:\n    secure: \"v/F0oI9zE9mcpEp4AVdHzSSHbe5ZFtH6B0i/BiUXKdQRQ10+JMPDOFRJQti7yxjMwltyd/QSFmR50Fl108sQYpo4xdlEXMHp2Y6OAN6crrp6PuHbLYgDWu3df/cH7/BqDyIq1uX8KZEeQssnygYN8hN4tpJCUg+NIb40Lm57Zsodt8DVjjyDWQQFDL7soNyAwGwQIqEyJsn+NUieXWEB1Qnt0xUtPIReuLlrwXR8wC1nLEjG9yz4ftDHHQdhVbO2b+xGWyaJ7QB5ixztaQP8Jnny6kSW9j6zEhJVuzdZ6d3xz23ibCbzSXBHdIUEI9u6ifQj8BYXr8fFS0FB3++IxgAYSs3ybZ+qEwuAxSBBm6YNW+3FrfDknVwTQscjKqnXPisjUqaRC9b31hke0tXzBq1488hE+wxMXeDM4LwWT5IMEO2gz0WGQXxmdVit72DIjCZxJkf1TvZZ0YH7Y//6wJTYYP9xulsy4gqu8CuFdWiF3fiGc3p5DTIS75nJ/Yy76Sa1pRPASKCujfLxtHE6Mt0XKvSolIXklYIzBkjN6vn80N6JIrqtqlimBGPW/Ec6+dwbmRe2AcOKRl4y7pZsGYhJhqdue1mucUYO/e2QeBZJGkqqG+zF5AW0v8x29BHvMwViAonc8o9eelkJ8khYzc/Qeq05pZnR/N/Pqfc+68k=\"\n\nbefore_install:\n  - go get -t -v ./...\n\njobs:\n  include:\n    - stage: cross compilation\n      os:\n        - linux\n      go:\n        - 1.15.x\n      script:\n        - GOOS=linux go build\n        - GOOS=darwin go build\n        - GOOS=freebsd go build\n        - GOOS=windows go build\n        - GOARCH=386 go build\n    - stage: cross compilation\n      os:\n        - osx\n      go:\n        - 1.15.x\n      script:\n        - GOOS=linux go build\n        - GOOS=darwin go build\n        - GOOS=freebsd go build\n        - GOOS=windows go build\n    - stage: race detector\n      os:\n        - linux\n      go:\n        - 1.15.x\n      script:\n        - go test -race -v ./...\n    - stage: race detector\n      os:\n        - osx\n      go:\n        - 1.15.x\n      script:\n        - go test -race -v ./...\n    - stage: race detector\n      arch: ppc64le\n      os:\n        - linux\n      go:\n        - 1.15.x\n      script:\n        - go test -race -v ./...\n\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Aliaksandr Valialkin, VertaMedia, Kirill Danshin, Erik Dubbelboer, FastHTTP Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/README.md",
    "content": "# fasthttp [![Build Status](https://travis-ci.org/valyala/fasthttp.svg?branch=master)](https://travis-ci.org/valyala/fasthttp?branch=master) [![GoDoc](https://godoc.org/github.com/valyala/fasthttp?status.svg)](http://godoc.org/github.com/valyala/fasthttp) [![Go Report](https://goreportcard.com/badge/github.com/valyala/fasthttp)](https://goreportcard.com/report/github.com/valyala/fasthttp) [![Sourcegraph](https://sourcegraph.com/github.com/valyala/fasthttp/-/badge.svg)](https://sourcegraph.com/github.com/valyala/fasthttp?badge)\n\n![FastHTTP – Fastest and reliable HTTP implementation in Go](https://github.com/fasthttp/docs-assets/raw/master/banner@0.5.png)\n\nFast HTTP implementation for Go.\n\nCurrently fasthttp is successfully used by [VertaMedia](https://vertamedia.com/)\nin a production serving up to 200K rps from more than 1.5M concurrent keep-alive\nconnections per physical server.\n\n[TechEmpower Benchmark round 19 results](https://www.techempower.com/benchmarks/#section=data-r19&hw=ph&test=plaintext)\n\n[Server Benchmarks](#http-server-performance-comparison-with-nethttp)\n\n[Client Benchmarks](#http-client-comparison-with-nethttp)\n\n[Install](#install)\n\n[Documentation](https://godoc.org/github.com/valyala/fasthttp)\n\n[Examples from docs](https://godoc.org/github.com/valyala/fasthttp#pkg-examples)\n\n[Code examples](examples)\n\n[Awesome fasthttp tools](https://github.com/fasthttp)\n\n[Switching from net/http to fasthttp](#switching-from-nethttp-to-fasthttp)\n\n[Fasthttp best practices](#fasthttp-best-practices)\n\n[Tricks with byte buffers](#tricks-with-byte-buffers)\n\n[Related projects](#related-projects)\n\n[FAQ](#faq)\n\n# HTTP server performance comparison with [net/http](https://golang.org/pkg/net/http/)\n\nIn short, fasthttp server is up to 10 times faster than net/http.\nBelow are benchmark results.\n\n*GOMAXPROCS=1*\n\nnet/http server:\n```\n$ GOMAXPROCS=1 go test -bench=NetHTTPServerGet -benchmem -benchtime=10s\nBenchmarkNetHTTPServerGet1ReqPerConn                \t 1000000\t     12052 ns/op\t    2297 B/op\t      29 allocs/op\nBenchmarkNetHTTPServerGet2ReqPerConn                \t 1000000\t     12278 ns/op\t    2327 B/op\t      24 allocs/op\nBenchmarkNetHTTPServerGet10ReqPerConn               \t 2000000\t      8903 ns/op\t    2112 B/op\t      19 allocs/op\nBenchmarkNetHTTPServerGet10KReqPerConn              \t 2000000\t      8451 ns/op\t    2058 B/op\t      18 allocs/op\nBenchmarkNetHTTPServerGet1ReqPerConn10KClients      \t  500000\t     26733 ns/op\t    3229 B/op\t      29 allocs/op\nBenchmarkNetHTTPServerGet2ReqPerConn10KClients      \t 1000000\t     23351 ns/op\t    3211 B/op\t      24 allocs/op\nBenchmarkNetHTTPServerGet10ReqPerConn10KClients     \t 1000000\t     13390 ns/op\t    2483 B/op\t      19 allocs/op\nBenchmarkNetHTTPServerGet100ReqPerConn10KClients    \t 1000000\t     13484 ns/op\t    2171 B/op\t      18 allocs/op\n```\n\nfasthttp server:\n```\n$ GOMAXPROCS=1 go test -bench=kServerGet -benchmem -benchtime=10s\nBenchmarkServerGet1ReqPerConn                       \t10000000\t      1559 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet2ReqPerConn                       \t10000000\t      1248 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet10ReqPerConn                      \t20000000\t       797 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet10KReqPerConn                     \t20000000\t       716 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet1ReqPerConn10KClients             \t10000000\t      1974 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet2ReqPerConn10KClients             \t10000000\t      1352 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet10ReqPerConn10KClients            \t20000000\t       789 ns/op\t       2 B/op\t       0 allocs/op\nBenchmarkServerGet100ReqPerConn10KClients           \t20000000\t       604 ns/op\t       0 B/op\t       0 allocs/op\n```\n\n*GOMAXPROCS=4*\n\nnet/http server:\n```\n$ GOMAXPROCS=4 go test -bench=NetHTTPServerGet -benchmem -benchtime=10s\nBenchmarkNetHTTPServerGet1ReqPerConn-4                  \t 3000000\t      4529 ns/op\t    2389 B/op\t      29 allocs/op\nBenchmarkNetHTTPServerGet2ReqPerConn-4                  \t 5000000\t      3896 ns/op\t    2418 B/op\t      24 allocs/op\nBenchmarkNetHTTPServerGet10ReqPerConn-4                 \t 5000000\t      3145 ns/op\t    2160 B/op\t      19 allocs/op\nBenchmarkNetHTTPServerGet10KReqPerConn-4                \t 5000000\t      3054 ns/op\t    2065 B/op\t      18 allocs/op\nBenchmarkNetHTTPServerGet1ReqPerConn10KClients-4        \t 1000000\t     10321 ns/op\t    3710 B/op\t      30 allocs/op\nBenchmarkNetHTTPServerGet2ReqPerConn10KClients-4        \t 2000000\t      7556 ns/op\t    3296 B/op\t      24 allocs/op\nBenchmarkNetHTTPServerGet10ReqPerConn10KClients-4       \t 5000000\t      3905 ns/op\t    2349 B/op\t      19 allocs/op\nBenchmarkNetHTTPServerGet100ReqPerConn10KClients-4      \t 5000000\t      3435 ns/op\t    2130 B/op\t      18 allocs/op\n```\n\nfasthttp server:\n```\n$ GOMAXPROCS=4 go test -bench=kServerGet -benchmem -benchtime=10s\nBenchmarkServerGet1ReqPerConn-4                         \t10000000\t      1141 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet2ReqPerConn-4                         \t20000000\t       707 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet10ReqPerConn-4                        \t30000000\t       341 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet10KReqPerConn-4                       \t50000000\t       310 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet1ReqPerConn10KClients-4               \t10000000\t      1119 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet2ReqPerConn10KClients-4               \t20000000\t       644 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet10ReqPerConn10KClients-4              \t30000000\t       346 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkServerGet100ReqPerConn10KClients-4             \t50000000\t       282 ns/op\t       0 B/op\t       0 allocs/op\n```\n\n# HTTP client comparison with net/http\n\nIn short, fasthttp client is up to 10 times faster than net/http.\nBelow are benchmark results.\n\n*GOMAXPROCS=1*\n\nnet/http client:\n```\n$ GOMAXPROCS=1 go test -bench='HTTPClient(Do|GetEndToEnd)' -benchmem -benchtime=10s\nBenchmarkNetHTTPClientDoFastServer                  \t 1000000\t     12567 ns/op\t    2616 B/op\t      35 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd1TCP               \t  200000\t     67030 ns/op\t    5028 B/op\t      56 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd10TCP              \t  300000\t     51098 ns/op\t    5031 B/op\t      56 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd100TCP             \t  300000\t     45096 ns/op\t    5026 B/op\t      55 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd1Inmemory          \t  500000\t     24779 ns/op\t    5035 B/op\t      57 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd10Inmemory         \t 1000000\t     26425 ns/op\t    5035 B/op\t      57 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd100Inmemory        \t  500000\t     28515 ns/op\t    5045 B/op\t      57 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd1000Inmemory       \t  500000\t     39511 ns/op\t    5096 B/op\t      56 allocs/op\n```\n\nfasthttp client:\n```\n$ GOMAXPROCS=1 go test -bench='kClient(Do|GetEndToEnd)' -benchmem -benchtime=10s\nBenchmarkClientDoFastServer                         \t20000000\t       865 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd1TCP                      \t 1000000\t     18711 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd10TCP                     \t 1000000\t     14664 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd100TCP                    \t 1000000\t     14043 ns/op\t       1 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd1Inmemory                 \t 5000000\t      3965 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd10Inmemory                \t 3000000\t      4060 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd100Inmemory               \t 5000000\t      3396 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd1000Inmemory              \t 5000000\t      3306 ns/op\t       2 B/op\t       0 allocs/op\n```\n\n*GOMAXPROCS=4*\n\nnet/http client:\n```\n$ GOMAXPROCS=4 go test -bench='HTTPClient(Do|GetEndToEnd)' -benchmem -benchtime=10s\nBenchmarkNetHTTPClientDoFastServer-4                    \t 2000000\t      8774 ns/op\t    2619 B/op\t      35 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd1TCP-4                 \t  500000\t     22951 ns/op\t    5047 B/op\t      56 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd10TCP-4                \t 1000000\t     19182 ns/op\t    5037 B/op\t      55 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd100TCP-4               \t 1000000\t     16535 ns/op\t    5031 B/op\t      55 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd1Inmemory-4            \t 1000000\t     14495 ns/op\t    5038 B/op\t      56 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd10Inmemory-4           \t 1000000\t     10237 ns/op\t    5034 B/op\t      56 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd100Inmemory-4          \t 1000000\t     10125 ns/op\t    5045 B/op\t      56 allocs/op\nBenchmarkNetHTTPClientGetEndToEnd1000Inmemory-4         \t 1000000\t     11132 ns/op\t    5136 B/op\t      56 allocs/op\n```\n\nfasthttp client:\n```\n$ GOMAXPROCS=4 go test -bench='kClient(Do|GetEndToEnd)' -benchmem -benchtime=10s\nBenchmarkClientDoFastServer-4                           \t50000000\t       397 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd1TCP-4                        \t 2000000\t      7388 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd10TCP-4                       \t 2000000\t      6689 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd100TCP-4                      \t 3000000\t      4927 ns/op\t       1 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd1Inmemory-4                   \t10000000\t      1604 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd10Inmemory-4                  \t10000000\t      1458 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd100Inmemory-4                 \t10000000\t      1329 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkClientGetEndToEnd1000Inmemory-4                \t10000000\t      1316 ns/op\t       5 B/op\t       0 allocs/op\n```\n\n\n# Install\n\n```\ngo get -u github.com/valyala/fasthttp\n```\n\n\n# Switching from net/http to fasthttp\n\nUnfortunately, fasthttp doesn't provide API identical to net/http.\nSee the [FAQ](#faq) for details.\nThere is [net/http -> fasthttp handler converter](https://godoc.org/github.com/valyala/fasthttp/fasthttpadaptor),\nbut it is better to write fasthttp request handlers by hand in order to use\nall of the fasthttp advantages (especially high performance :) ).\n\nImportant points:\n\n* Fasthttp works with [RequestHandler functions](https://godoc.org/github.com/valyala/fasthttp#RequestHandler)\ninstead of objects implementing [Handler interface](https://golang.org/pkg/net/http/#Handler).\nFortunately, it is easy to pass bound struct methods to fasthttp:\n\n  ```go\n  type MyHandler struct {\n  \tfoobar string\n  }\n\n  // request handler in net/http style, i.e. method bound to MyHandler struct.\n  func (h *MyHandler) HandleFastHTTP(ctx *fasthttp.RequestCtx) {\n  \t// notice that we may access MyHandler properties here - see h.foobar.\n  \tfmt.Fprintf(ctx, \"Hello, world! Requested path is %q. Foobar is %q\",\n  \t\tctx.Path(), h.foobar)\n  }\n\n  // request handler in fasthttp style, i.e. just plain function.\n  func fastHTTPHandler(ctx *fasthttp.RequestCtx) {\n  \tfmt.Fprintf(ctx, \"Hi there! RequestURI is %q\", ctx.RequestURI())\n  }\n\n  // pass bound struct method to fasthttp\n  myHandler := &MyHandler{\n  \tfoobar: \"foobar\",\n  }\n  fasthttp.ListenAndServe(\":8080\", myHandler.HandleFastHTTP)\n\n  // pass plain function to fasthttp\n  fasthttp.ListenAndServe(\":8081\", fastHTTPHandler)\n  ```\n\n* The [RequestHandler](https://godoc.org/github.com/valyala/fasthttp#RequestHandler)\naccepts only one argument - [RequestCtx](https://godoc.org/github.com/valyala/fasthttp#RequestCtx).\nIt contains all the functionality required for http request processing\nand response writing. Below is an example of a simple request handler conversion\nfrom net/http to fasthttp.\n\n  ```go\n  // net/http request handler\n  requestHandler := func(w http.ResponseWriter, r *http.Request) {\n  \tswitch r.URL.Path {\n  \tcase \"/foo\":\n  \t\tfooHandler(w, r)\n  \tcase \"/bar\":\n  \t\tbarHandler(w, r)\n  \tdefault:\n  \t\thttp.Error(w, \"Unsupported path\", http.StatusNotFound)\n  \t}\n  }\n  ```\n\n  ```go\n  // the corresponding fasthttp request handler\n  requestHandler := func(ctx *fasthttp.RequestCtx) {\n  \tswitch string(ctx.Path()) {\n  \tcase \"/foo\":\n  \t\tfooHandler(ctx)\n  \tcase \"/bar\":\n  \t\tbarHandler(ctx)\n  \tdefault:\n  \t\tctx.Error(\"Unsupported path\", fasthttp.StatusNotFound)\n  \t}\n  }\n  ```\n\n* Fasthttp allows setting response headers and writing response body\nin an arbitrary order. There is no 'headers first, then body' restriction\nlike in net/http. The following code is valid for fasthttp:\n\n  ```go\n  requestHandler := func(ctx *fasthttp.RequestCtx) {\n  \t// set some headers and status code first\n  \tctx.SetContentType(\"foo/bar\")\n  \tctx.SetStatusCode(fasthttp.StatusOK)\n\n  \t// then write the first part of body\n  \tfmt.Fprintf(ctx, \"this is the first part of body\\n\")\n\n  \t// then set more headers\n  \tctx.Response.Header.Set(\"Foo-Bar\", \"baz\")\n\n  \t// then write more body\n  \tfmt.Fprintf(ctx, \"this is the second part of body\\n\")\n\n  \t// then override already written body\n  \tctx.SetBody([]byte(\"this is completely new body contents\"))\n\n  \t// then update status code\n  \tctx.SetStatusCode(fasthttp.StatusNotFound)\n\n  \t// basically, anything may be updated many times before\n  \t// returning from RequestHandler.\n  \t//\n  \t// Unlike net/http fasthttp doesn't put response to the wire until\n  \t// returning from RequestHandler.\n  }\n  ```\n\n* Fasthttp doesn't provide [ServeMux](https://golang.org/pkg/net/http/#ServeMux),\nbut there are more powerful third-party routers and web frameworks\nwith fasthttp support:\n\n  * [fasthttp-routing](https://github.com/qiangxue/fasthttp-routing)\n  * [router](https://github.com/fasthttp/router)\n  * [lu](https://github.com/vincentLiuxiang/lu)\n  * [atreugo](https://github.com/savsgio/atreugo)\n  * [Fiber](https://github.com/gofiber/fiber)\n  * [Gearbox](https://github.com/gogearbox/gearbox)\n\n  Net/http code with simple ServeMux is trivially converted to fasthttp code:\n\n  ```go\n  // net/http code\n\n  m := &http.ServeMux{}\n  m.HandleFunc(\"/foo\", fooHandlerFunc)\n  m.HandleFunc(\"/bar\", barHandlerFunc)\n  m.Handle(\"/baz\", bazHandler)\n\n  http.ListenAndServe(\":80\", m)\n  ```\n\n  ```go\n  // the corresponding fasthttp code\n  m := func(ctx *fasthttp.RequestCtx) {\n  \tswitch string(ctx.Path()) {\n  \tcase \"/foo\":\n  \t\tfooHandlerFunc(ctx)\n  \tcase \"/bar\":\n  \t\tbarHandlerFunc(ctx)\n  \tcase \"/baz\":\n  \t\tbazHandler.HandlerFunc(ctx)\n  \tdefault:\n  \t\tctx.Error(\"not found\", fasthttp.StatusNotFound)\n  \t}\n  }\n\n  fasthttp.ListenAndServe(\":80\", m)\n  ```\n\n* net/http -> fasthttp conversion table:\n\n  * All the pseudocode below assumes w, r and ctx have these types:\n  ```go\n\tvar (\n\t\tw http.ResponseWriter\n\t\tr *http.Request\n\t\tctx *fasthttp.RequestCtx\n\t)\n  ```\n  * r.Body -> [ctx.PostBody()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.PostBody)\n  * r.URL.Path -> [ctx.Path()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Path)\n  * r.URL -> [ctx.URI()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.URI)\n  * r.Method -> [ctx.Method()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Method)\n  * r.Header -> [ctx.Request.Header](https://godoc.org/github.com/valyala/fasthttp#RequestHeader)\n  * r.Header.Get() -> [ctx.Request.Header.Peek()](https://godoc.org/github.com/valyala/fasthttp#RequestHeader.Peek)\n  * r.Host -> [ctx.Host()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Host)\n  * r.Form -> [ctx.QueryArgs()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.QueryArgs) +\n  [ctx.PostArgs()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.PostArgs)\n  * r.PostForm -> [ctx.PostArgs()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.PostArgs)\n  * r.FormValue() -> [ctx.FormValue()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.FormValue)\n  * r.FormFile() -> [ctx.FormFile()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.FormFile)\n  * r.MultipartForm -> [ctx.MultipartForm()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.MultipartForm)\n  * r.RemoteAddr -> [ctx.RemoteAddr()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.RemoteAddr)\n  * r.RequestURI -> [ctx.RequestURI()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.RequestURI)\n  * r.TLS -> [ctx.IsTLS()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.IsTLS)\n  * r.Cookie() -> [ctx.Request.Header.Cookie()](https://godoc.org/github.com/valyala/fasthttp#RequestHeader.Cookie)\n  * r.Referer() -> [ctx.Referer()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Referer)\n  * r.UserAgent() -> [ctx.UserAgent()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.UserAgent)\n  * w.Header() -> [ctx.Response.Header](https://godoc.org/github.com/valyala/fasthttp#ResponseHeader)\n  * w.Header().Set() -> [ctx.Response.Header.Set()](https://godoc.org/github.com/valyala/fasthttp#ResponseHeader.Set)\n  * w.Header().Set(\"Content-Type\") -> [ctx.SetContentType()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.SetContentType)\n  * w.Header().Set(\"Set-Cookie\") -> [ctx.Response.Header.SetCookie()](https://godoc.org/github.com/valyala/fasthttp#ResponseHeader.SetCookie)\n  * w.Write() -> [ctx.Write()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Write),\n  [ctx.SetBody()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.SetBody),\n  [ctx.SetBodyStream()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.SetBodyStream),\n  [ctx.SetBodyStreamWriter()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.SetBodyStreamWriter)\n  * w.WriteHeader() -> [ctx.SetStatusCode()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.SetStatusCode)\n  * w.(http.Hijacker).Hijack() -> [ctx.Hijack()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Hijack)\n  * http.Error() -> [ctx.Error()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Error)\n  * http.FileServer() -> [fasthttp.FSHandler()](https://godoc.org/github.com/valyala/fasthttp#FSHandler),\n  [fasthttp.FS](https://godoc.org/github.com/valyala/fasthttp#FS)\n  * http.ServeFile() -> [fasthttp.ServeFile()](https://godoc.org/github.com/valyala/fasthttp#ServeFile)\n  * http.Redirect() -> [ctx.Redirect()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Redirect)\n  * http.NotFound() -> [ctx.NotFound()](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.NotFound)\n  * http.StripPrefix() -> [fasthttp.PathRewriteFunc](https://godoc.org/github.com/valyala/fasthttp#PathRewriteFunc)\n\n* *VERY IMPORTANT!* Fasthttp disallows holding references\nto [RequestCtx](https://godoc.org/github.com/valyala/fasthttp#RequestCtx) or to its'\nmembers after returning from [RequestHandler](https://godoc.org/github.com/valyala/fasthttp#RequestHandler).\nOtherwise [data races](http://blog.golang.org/race-detector) are inevitable.\nCarefully inspect all the net/http request handlers converted to fasthttp whether\nthey retain references to RequestCtx or to its' members after returning.\nRequestCtx provides the following _band aids_ for this case:\n\n  * Wrap RequestHandler into [TimeoutHandler](https://godoc.org/github.com/valyala/fasthttp#TimeoutHandler).\n  * Call [TimeoutError](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.TimeoutError)\n  before returning from RequestHandler if there are references to RequestCtx or to its' members.\n  See [the example](https://godoc.org/github.com/valyala/fasthttp#example-RequestCtx-TimeoutError)\n  for more details.\n\nUse this brilliant tool - [race detector](http://blog.golang.org/race-detector) -\nfor detecting and eliminating data races in your program. If you detected\ndata race related to fasthttp in your program, then there is high probability\nyou forgot calling [TimeoutError](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.TimeoutError)\nbefore returning from [RequestHandler](https://godoc.org/github.com/valyala/fasthttp#RequestHandler).\n\n* Blind switching from net/http to fasthttp won't give you performance boost.\nWhile fasthttp is optimized for speed, its' performance may be easily saturated\nby slow [RequestHandler](https://godoc.org/github.com/valyala/fasthttp#RequestHandler).\nSo [profile](http://blog.golang.org/profiling-go-programs) and optimize your\ncode after switching to fasthttp. For instance, use [quicktemplate](https://github.com/valyala/quicktemplate)\ninstead of [html/template](https://golang.org/pkg/html/template/).\n\n* See also [fasthttputil](https://godoc.org/github.com/valyala/fasthttp/fasthttputil),\n[fasthttpadaptor](https://godoc.org/github.com/valyala/fasthttp/fasthttpadaptor) and\n[expvarhandler](https://godoc.org/github.com/valyala/fasthttp/expvarhandler).\n\n\n# Performance optimization tips for multi-core systems\n\n* Use [reuseport](https://godoc.org/github.com/valyala/fasthttp/reuseport) listener.\n* Run a separate server instance per CPU core with GOMAXPROCS=1.\n* Pin each server instance to a separate CPU core using [taskset](http://linux.die.net/man/1/taskset).\n* Ensure the interrupts of multiqueue network card are evenly distributed between CPU cores.\n  See [this article](https://blog.cloudflare.com/how-to-achieve-low-latency/) for details.\n* Use Go 1.13 as it provides some considerable performance improvements.\n\n\n# Fasthttp best practices\n\n* Do not allocate objects and `[]byte` buffers - just reuse them as much\n  as possible. Fasthttp API design encourages this.\n* [sync.Pool](https://golang.org/pkg/sync/#Pool) is your best friend.\n* [Profile your program](http://blog.golang.org/profiling-go-programs)\n  in production.\n  `go tool pprof --alloc_objects your-program mem.pprof` usually gives better\n  insights for optimization opportunities than `go tool pprof your-program cpu.pprof`.\n* Write [tests and benchmarks](https://golang.org/pkg/testing/) for hot paths.\n* Avoid conversion between `[]byte` and `string`, since this may result in memory\n  allocation+copy. Fasthttp API provides functions for both `[]byte` and `string` -\n  use these functions instead of converting manually between `[]byte` and `string`.\n  There are some exceptions - see [this wiki page](https://github.com/golang/go/wiki/CompilerOptimizations#string-and-byte)\n  for more details.\n* Verify your tests and production code under\n  [race detector](https://golang.org/doc/articles/race_detector.html) on a regular basis.\n* Prefer [quicktemplate](https://github.com/valyala/quicktemplate) instead of\n  [html/template](https://golang.org/pkg/html/template/) in your webserver.\n\n\n# Tricks with `[]byte` buffers\n\nThe following tricks are used by fasthttp. Use them in your code too.\n\n* Standard Go functions accept nil buffers\n```go\nvar (\n\t// both buffers are uninitialized\n\tdst []byte\n\tsrc []byte\n)\ndst = append(dst, src...)  // is legal if dst is nil and/or src is nil\ncopy(dst, src)  // is legal if dst is nil and/or src is nil\n(string(src) == \"\")  // is true if src is nil\n(len(src) == 0)  // is true if src is nil\nsrc = src[:0]  // works like a charm with nil src\n\n// this for loop doesn't panic if src is nil\nfor i, ch := range src {\n\tdoSomething(i, ch)\n}\n```\n\nSo throw away nil checks for `[]byte` buffers from you code. For example,\n```go\nsrcLen := 0\nif src != nil {\n\tsrcLen = len(src)\n}\n```\n\nbecomes\n\n```go\nsrcLen := len(src)\n```\n\n* String may be appended to `[]byte` buffer with `append`\n```go\ndst = append(dst, \"foobar\"...)\n```\n\n* `[]byte` buffer may be extended to its' capacity.\n```go\nbuf := make([]byte, 100)\na := buf[:10]  // len(a) == 10, cap(a) == 100.\nb := a[:100]  // is valid, since cap(a) == 100.\n```\n\n* All fasthttp functions accept nil `[]byte` buffer\n```go\nstatusCode, body, err := fasthttp.Get(nil, \"http://google.com/\")\nuintBuf := fasthttp.AppendUint(nil, 1234)\n```\n\n# Related projects\n\n  * [fasthttp](https://github.com/fasthttp) - various useful\n    helpers for projects based on fasthttp.\n  * [fasthttp-routing](https://github.com/qiangxue/fasthttp-routing) - fast and\n    powerful routing package for fasthttp servers.\n  * [router](https://github.com/fasthttp/router) - a high\n    performance fasthttp request router that scales well.\n  * [fastws](https://github.com/fasthttp/fastws) - Bloatless WebSocket package made for fasthttp\n    to handle Read/Write operations concurrently.\n  * [gramework](https://github.com/gramework/gramework) - a web framework made by one of fasthttp maintainers\n  * [lu](https://github.com/vincentLiuxiang/lu) - a high performance\n    go middleware web framework which is based on fasthttp.\n  * [websocket](https://github.com/fasthttp/websocket) - Gorilla-based\n    websocket implementation for fasthttp.\n  * [fasthttpsession](https://github.com/phachon/fasthttpsession) - a fast and powerful session package for fasthttp servers.\n  * [atreugo](https://github.com/savsgio/atreugo) - High performance and extensible micro web framework with zero memory allocations in hot paths.\n  * [kratgo](https://github.com/savsgio/kratgo) - Simple, lightweight and ultra-fast HTTP Cache to speed up your websites.\n  * [kit-plugins](https://github.com/wencan/kit-plugins/tree/master/transport/fasthttp) - go-kit transport implementation for fasthttp.\n  * [Fiber](https://github.com/gofiber/fiber) - An Expressjs inspired web framework running on Fasthttp\n  * [Gearbox](https://github.com/gogearbox/gearbox) - :gear: gearbox is a web framework written in Go with a focus on high performance and memory optimization\n\n\n# FAQ\n\n* *Why creating yet another http package instead of optimizing net/http?*\n\n  Because net/http API limits many optimization opportunities.\n  For example:\n  * net/http Request object lifetime isn't limited by request handler execution\n    time. So the server must create a new request object per each request instead\n    of reusing existing objects like fasthttp does.\n  * net/http headers are stored in a `map[string][]string`. So the server\n    must parse all the headers, convert them from `[]byte` to `string` and put\n    them into the map before calling user-provided request handler.\n    This all requires unnecessary memory allocations avoided by fasthttp.\n  * net/http client API requires creating a new response object per each request.\n\n* *Why fasthttp API is incompatible with net/http?*\n\n  Because net/http API limits many optimization opportunities. See the answer\n  above for more details. Also certain net/http API parts are suboptimal\n  for use:\n  * Compare [net/http connection hijacking](https://golang.org/pkg/net/http/#Hijacker)\n    to [fasthttp connection hijacking](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Hijack).\n  * Compare [net/http Request.Body reading](https://golang.org/pkg/net/http/#Request)\n    to [fasthttp request body reading](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.PostBody).\n\n* *Why fasthttp doesn't support HTTP/2.0 and WebSockets?*\n\n  [HTTP/2.0 support](https://github.com/fasthttp/http2) is in progress. [WebSockets](https://github.com/fasthttp/websockets) has been done already.\n  Third parties also may use [RequestCtx.Hijack](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Hijack)\n  for implementing these goodies.\n\n* *Are there known net/http advantages comparing to fasthttp?*\n\n  Yes:\n  * net/http supports [HTTP/2.0 starting from go1.6](https://http2.golang.org/).\n  * net/http API is stable, while fasthttp API constantly evolves.\n  * net/http handles more HTTP corner cases.\n  * net/http should contain less bugs, since it is used and tested by much\n    wider audience.\n  * net/http works on Go older than 1.5.\n\n* *Why fasthttp API prefers returning `[]byte` instead of `string`?*\n\n  Because `[]byte` to `string` conversion isn't free - it requires memory\n  allocation and copy. Feel free wrapping returned `[]byte` result into\n  `string()` if you prefer working with strings instead of byte slices.\n  But be aware that this has non-zero overhead.\n\n* *Which GO versions are supported by fasthttp?*\n\n  Go1.5+. Older versions won't be supported, since their standard package\n  [miss useful functions](https://github.com/valyala/fasthttp/issues/5).\n\n  **NOTE**: Go 1.9.7 is the oldest tested version. We recommend you to update as soon as you can. As of 1.11.3 we will drop 1.9.x support.\n\n* *Please provide real benchmark data and server information*\n\n  See [this issue](https://github.com/valyala/fasthttp/issues/4).\n\n* *Are there plans to add request routing to fasthttp?*\n\n  There are no plans to add request routing into fasthttp.\n  Use third-party routers and web frameworks with fasthttp support:\n\n    * [fasthttp-routing](https://github.com/qiangxue/fasthttp-routing)\n    * [router](https://github.com/fasthttp/router)\n    * [gramework](https://github.com/gramework/gramework)\n    * [lu](https://github.com/vincentLiuxiang/lu)\n    * [atreugo](https://github.com/savsgio/atreugo)\n    * [Fiber](https://github.com/gofiber/fiber)\n    * [Gearbox](https://github.com/gogearbox/gearbox)\n\n  See also [this issue](https://github.com/valyala/fasthttp/issues/9) for more info.\n\n* *I detected data race in fasthttp!*\n\n  Cool! [File a bug](https://github.com/valyala/fasthttp/issues/new). But before\n  doing this check the following in your code:\n\n  * Make sure there are no references to [RequestCtx](https://godoc.org/github.com/valyala/fasthttp#RequestCtx)\n  or to its' members after returning from [RequestHandler](https://godoc.org/github.com/valyala/fasthttp#RequestHandler).\n  * Make sure you call [TimeoutError](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.TimeoutError)\n  before returning from [RequestHandler](https://godoc.org/github.com/valyala/fasthttp#RequestHandler)\n  if there are references to [RequestCtx](https://godoc.org/github.com/valyala/fasthttp#RequestCtx)\n  or to its' members, which may be accessed by other goroutines.\n\n* *I didn't find an answer for my question here*\n\n  Try exploring [these questions](https://github.com/valyala/fasthttp/issues?q=label%3Aquestion).\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/SECURITY.md",
    "content": "### TL;DR\n\nWe use a simplified version of [Golang Security Policy](https://golang.org/security).\nFor example, for now we skip CVE assignment.\n\n### Reporting a Security Bug\n\nPlease report to us any issues you find. This document explains how to do that and what to expect in return.\n\nAll security bugs in our releases should be reported by email to oss-security@highload.solutions.\nThis mail is delivered to a small security team.\nYour email will be acknowledged within 24 hours, and you'll receive a more detailed response\nto your email within 72 hours indicating the next steps in handling your report.\nFor critical problems, you can encrypt your report using our PGP key (listed below).\n\nPlease use a descriptive subject line for your report email.\nAfter the initial reply to your report, the security team will\nendeavor to keep you informed of the progress being made towards a fix and full announcement.\nThese updates will be sent at least every five days.\nIn reality, this is more likely to be every 24-48 hours.\n\nIf you have not received a reply to your email within 48 hours or you have not heard from the security\nteam for the past five days please contact us by email to developers@highload.solutions or by Telegram message\nto [our support](https://t.me/highload_support).\nPlease note that developers@highload.solutions list includes all developers, who may be outside our opensource security team.\nWhen escalating on this list, please do not disclose the details of the issue.\nSimply state that you're trying to reach a member of the security team.\n\n### Flagging Existing Issues as Security-related\n\nIf you believe that an existing issue is security-related, we ask that you send an email to oss-security@highload.solutions.\nThe email should include the issue ID and a short description of why it should be handled according to this security policy.\n\n### Disclosure Process\n\nOur project uses the following disclosure process:\n\n- Once the security report is received it is assigned a primary handler. This person coordinates the fix and release process.\n- The issue is confirmed and a list of affected software is determined.\n- Code is audited to find any potential similar problems.\n- Fixes are prepared for the two most recent major releases and the head/master revision. These fixes are not yet committed to the public repository.\n- To notify users, a new issue without security details is submitted to our GitHub repository.\n- Three working days following this notification, the fixes are applied to the public repository and a new release is issued.\n- On the date that the fixes are applied, announcement is published in the issue.\n\nThis process can take some time, especially when coordination is required with maintainers of other projects.\nEvery effort will be made to handle the bug in as timely a manner as possible, however it's important that we follow\nthe process described above to ensure that disclosures are handled consistently.\n\n### Receiving Security Updates\nThe best way to receive security announcements is to subscribe (\"Watch\") to our repository.\nAny GitHub issues pertaining to a security issue will be prefixed with [security].\n\n### Comments on This Policy\nIf you have any suggestions to improve this policy, please send an email to oss-security@highload.solutions for discussion.\n\n### PGP Key for oss-security@highload.ltd\n\nWe accept PGP-encrypted email, but the majority of the security team are not regular PGP users\nso it's somewhat inconvenient. Please only use PGP for critical security reports.\n\n```\n-----BEGIN PGP PUBLIC KEY BLOCK-----\n\nmQINBFzdjYUBEACa3YN+QVSlnXofUjxr+YrmIaF+da0IUq+TRM4aqUXALsemEdGh\nyIl7Z6qOOy1d2kPe6t//H9l/92lJ1X7i6aEBK4n/pnPZkwbpy9gGpebgvTZFvcbe\nmFhF6k1FM35D8TxneJSjizPyGhJPqcr5qccqf8R64TlQx5Ud1JqT2l8P1C5N7gNS\nlEYXq1h4zBCvTWk1wdeLRRPx7Bn6xrgmyu/k61dLoJDvpvWNATVFDA67oTrPgzTW\nxtLbbk/xm0mK4a8zMzIpNyz1WkaJW9+4HFXaL+yKlsx7iHe2O7VlGoqS0kdeQup4\n1HIw/P7yc0jBlNMLUzpuA6ElYUwESWsnCI71YY1x4rKgI+GqH1mWwgn7tteuXQtb\nZj0vEdjK3IKIOSbzbzAvSbDt8F1+o7EMtdy1eUysjKSQgFkDlT6JRmYvEup5/IoG\niknh/InQq9RmGFKii6pXWWoltC0ebfCwYOXvymyDdr/hYDqJeHS9Tenpy86Doaaf\nHGf5nIFAMB2G5ctNpBwzNXR2MAWkeHQgdr5a1xmog0hS125usjnUTet3QeCyo4kd\ngVouoOroMcqFFUXdYaMH4c3KWz0afhTmIaAsFFOv/eMdadVA4QyExTJf3TAoQ+kH\nlKDlbOAIxEZWRPDFxMRixaVPQC+VxhBcaQ+yNoaUkM0V2m8u8sDBpzi1OQARAQAB\ntDxPU1MgU2VjdXJpdHksIEhpZ2hsb2FkIExURCA8b3NzLXNlY3VyaXR5QGhpZ2hs\nb2FkLnNvbHV0aW9ucz6JAlQEEwEIAD4WIQRljYp380uKq2g8TeqsQcvu+Qp2TAUC\nXN2NhQIbAwUJB4YfgAULCQgHAgYVCgkICwIEFgIDAQIeAQIXgAAKCRCsQcvu+Qp2\nTKmED/96YoQoOjD28blFFrigvAsiNcNNZoX9I0dX1lNpD83fBJf+/9i+x4jqUnI5\n5XK/DFTDbhpw8kQBpxS9eEuIYnuo0RdLLp1ctNWTlpwfyHn92mGddl/uBdYHUuUk\ncjhIQcFaCcWRY+EpamDlv1wmZ83IwBr8Hu5FS+/Msyw1TBvtTRVKW1KoGYMYoXLk\nBzIglRPwn821B6s4BvK/RJnZkrmHMBZBfYMf+iSMSYd2yPmfT8wbcAjgjLfQa28U\ngbt4u9xslgKjuM83IqwFfEXBnm7su3OouGWqc+62mQTsbnK65zRFnx6GXRXC1BAi\n6m9Tm1PU0IiINz66ainquspkXYeHjd9hTwfR3BdFnzBTRRM01cKMFabWbLj8j0p8\nfF4g9cxEdiLrzEF7Yz4WY0mI4Cpw4eJZfsHMc07Jn7QxfJhIoq+rqBOtEmTjnxMh\naWeykoXMHlZN4K0ZrAytozVH1D4bugWA9Zuzi9U3F9hrVVABm11yyhd2iSqI6/FR\nGcCFOCBW1kEJbzoEguub+BV8LDi8ldljHalvur5k/VFhoDBxniYNsKmiCLVCmDWs\n/nF84hCReAOJt0vDGwqHe3E2BFFPbKwdJLRNkjxBY0c/pvaV+JxbWQmaxDZNeIFV\nhFcVGp48HNY3qLWZdsQIfT9m1masJFLVuq8Wx7bYs8Et5eFnH7kCDQRc3Y2FARAA\n2DJWAxABydyIdCxgFNdqnYyWS46vh2DmLmRMqgasNlD0ozG4S9bszBsgnUI2Xs06\nJ76kFRh8MMHcu9I4lUKCQzfrA4uHkiOK5wvNCaWP+C6JUYNHsqPwk/ILO3gtQ/Ws\nLLf/PW3rJZVOZB+WY8iaYc20l5vukTaVw4qbEi9dtLkJvVpNHt//+jayXU6s3ew1\n2X5xdwyAZxaxlnzFaY/Xo/qR+bZhVFC0T9pAECnHv9TVhFGp0JE9ipPGnro5xTIS\nLttdAkzv4AuSVTIgWgTkh8nN8t7STJqfPEv0I12nmmYHMUyTYOurkfskF3jY2x6x\n8l02NQ4d5KdC3ReV1j51swrGcZCwsWNp51jnEXKwo+B0NM5OmoRrNJgF2iDgLehs\nhP00ljU7cB8/1/7kdHZStYaUHICFOFqHzg415FlYm+jpY0nJp/b9BAO0d0/WYnEe\nXjihw8EVBAqzEt4kay1BQonZAypeYnGBJr7vNvdiP+mnRwly5qZSGiInxGvtZZFt\nzL1E3osiF+muQxFcM63BeGdJeYXy+MoczkWa4WNggfcHlGAZkMYiv28zpr4PfrK9\nmvj4Nu8s71PE9pPpBoZcNDf9v1sHuu96jDSITsPx5YMvvKZWhzJXFKzk6YgAsNH/\nMF0G+/qmKJZpCdvtHKpYM1uHX85H81CwWJFfBPthyD8AEQEAAYkCPAQYAQgAJhYh\nBGWNinfzS4qraDxN6qxBy+75CnZMBQJc3Y2FAhsMBQkHhh+AAAoJEKxBy+75CnZM\nRn8P/RyL1bhU4Q4WpvmlkepCAwNA0G3QvnKcSZNHEPE5h7H3IyrA/qy16A9eOsgm\nsthsHYlo5A5lRIy4wPHkFCClMrMHdKuoS72//qgw+oOrBcwb7Te+Nas+ewhaJ7N9\nvAX06vDH9bLl52CPbtats5+eBpePgP3HDPxd7CWHxq9bzJTbzqsTkN7JvoovR2dP\nitPJDij7QYLYVEM1t7QxUVpVwAjDi/kCtC9ts5L+V0snF2n3bHZvu04EXdpvxOQI\npG/7Q+/WoI8NU6Bb/FA3tJGYIhSwI3SY+5XV/TAZttZaYSh2SD8vhc+eo+gW9sAN\nxa+VESBQCht9+tKIwEwHs1efoRgFdbwwJ2c+33+XydQ6yjdXoX1mn2uyCr82jorZ\nxTzbkY04zr7oZ+0fLpouOFg/mrSL4w2bWEhdHuyoVthLBjnRme0wXCaS3g3mYdLG\nnSUkogOGOOvvvBtoq/vfx0Eu79piUtw5D8yQSrxLDuz8GxCrVRZ0tYIHb26aTE9G\ncDsW/Lg5PjcY/LgVNEWOxDQDFVurlImnlVJFb3q+NrWvPbgeIEWwJDCay/z25SEH\nk3bSOXLp8YGRnlkWUmoeL4g/CCK52iAAlfscZNoKMILhBnbCoD657jpa5GQKJj/U\nQ8kjgr7kwV/RSosNV9HCPj30mVyiCQ1xg+ZLzMKXVCuBWd+G\n=lnt2\n-----END PGP PUBLIC KEY BLOCK-----\n```\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/TODO",
    "content": "- SessionClient with referer and cookies support.\n- ProxyHandler similar to FSHandler.\n- WebSockets. See https://tools.ietf.org/html/rfc6455 .\n- HTTP/2.0. See https://tools.ietf.org/html/rfc7540 .\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/args.go",
    "content": "package fasthttp\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"io\"\n\t\"sort\"\n\t\"sync\"\n\n\t\"github.com/valyala/bytebufferpool\"\n)\n\nconst (\n\targsNoValue  = true\n\targsHasValue = false\n)\n\n// AcquireArgs returns an empty Args object from the pool.\n//\n// The returned Args may be returned to the pool with ReleaseArgs\n// when no longer needed. This allows reducing GC load.\nfunc AcquireArgs() *Args {\n\treturn argsPool.Get().(*Args)\n}\n\n// ReleaseArgs returns the object acquired via AcquireArgs to the pool.\n//\n// Do not access the released Args object, otherwise data races may occur.\nfunc ReleaseArgs(a *Args) {\n\ta.Reset()\n\targsPool.Put(a)\n}\n\nvar argsPool = &sync.Pool{\n\tNew: func() interface{} {\n\t\treturn &Args{}\n\t},\n}\n\n// Args represents query arguments.\n//\n// It is forbidden copying Args instances. Create new instances instead\n// and use CopyTo().\n//\n// Args instance MUST NOT be used from concurrently running goroutines.\ntype Args struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\targs []argsKV\n\tbuf  []byte\n}\n\ntype argsKV struct {\n\tkey     []byte\n\tvalue   []byte\n\tnoValue bool\n}\n\n// Reset clears query args.\nfunc (a *Args) Reset() {\n\ta.args = a.args[:0]\n}\n\n// CopyTo copies all args to dst.\nfunc (a *Args) CopyTo(dst *Args) {\n\tdst.Reset()\n\tdst.args = copyArgs(dst.args, a.args)\n}\n\n// VisitAll calls f for each existing arg.\n//\n// f must not retain references to key and value after returning.\n// Make key and/or value copies if you need storing them after returning.\nfunc (a *Args) VisitAll(f func(key, value []byte)) {\n\tvisitArgs(a.args, f)\n}\n\n// Len returns the number of query args.\nfunc (a *Args) Len() int {\n\treturn len(a.args)\n}\n\n// Parse parses the given string containing query args.\nfunc (a *Args) Parse(s string) {\n\ta.buf = append(a.buf[:0], s...)\n\ta.ParseBytes(a.buf)\n}\n\n// ParseBytes parses the given b containing query args.\nfunc (a *Args) ParseBytes(b []byte) {\n\ta.Reset()\n\n\tvar s argsScanner\n\ts.b = b\n\n\tvar kv *argsKV\n\ta.args, kv = allocArg(a.args)\n\tfor s.next(kv) {\n\t\tif len(kv.key) > 0 || len(kv.value) > 0 {\n\t\t\ta.args, kv = allocArg(a.args)\n\t\t}\n\t}\n\ta.args = releaseArg(a.args)\n}\n\n// String returns string representation of query args.\nfunc (a *Args) String() string {\n\treturn string(a.QueryString())\n}\n\n// QueryString returns query string for the args.\n//\n// The returned value is valid until the next call to Args methods.\nfunc (a *Args) QueryString() []byte {\n\ta.buf = a.AppendBytes(a.buf[:0])\n\treturn a.buf\n}\n\n// Sort sorts Args by key and then value using 'f' as comparison function.\n//\n// For example args.Sort(bytes.Compare)\nfunc (a *Args) Sort(f func(x, y []byte) int) {\n\tsort.SliceStable(a.args, func(i, j int) bool {\n\t\tn := f(a.args[i].key, a.args[j].key)\n\t\tif n == 0 {\n\t\t\treturn f(a.args[i].value, a.args[j].value) == -1\n\t\t}\n\t\treturn n == -1\n\t})\n}\n\n// AppendBytes appends query string to dst and returns the extended dst.\nfunc (a *Args) AppendBytes(dst []byte) []byte {\n\tfor i, n := 0, len(a.args); i < n; i++ {\n\t\tkv := &a.args[i]\n\t\tdst = AppendQuotedArg(dst, kv.key)\n\t\tif !kv.noValue {\n\t\t\tdst = append(dst, '=')\n\t\t\tif len(kv.value) > 0 {\n\t\t\t\tdst = AppendQuotedArg(dst, kv.value)\n\t\t\t}\n\t\t}\n\t\tif i+1 < n {\n\t\t\tdst = append(dst, '&')\n\t\t}\n\t}\n\treturn dst\n}\n\n// WriteTo writes query string to w.\n//\n// WriteTo implements io.WriterTo interface.\nfunc (a *Args) WriteTo(w io.Writer) (int64, error) {\n\tn, err := w.Write(a.QueryString())\n\treturn int64(n), err\n}\n\n// Del deletes argument with the given key from query args.\nfunc (a *Args) Del(key string) {\n\ta.args = delAllArgs(a.args, key)\n}\n\n// DelBytes deletes argument with the given key from query args.\nfunc (a *Args) DelBytes(key []byte) {\n\ta.args = delAllArgs(a.args, b2s(key))\n}\n\n// Add adds 'key=value' argument.\n//\n// Multiple values for the same key may be added.\nfunc (a *Args) Add(key, value string) {\n\ta.args = appendArg(a.args, key, value, argsHasValue)\n}\n\n// AddBytesK adds 'key=value' argument.\n//\n// Multiple values for the same key may be added.\nfunc (a *Args) AddBytesK(key []byte, value string) {\n\ta.args = appendArg(a.args, b2s(key), value, argsHasValue)\n}\n\n// AddBytesV adds 'key=value' argument.\n//\n// Multiple values for the same key may be added.\nfunc (a *Args) AddBytesV(key string, value []byte) {\n\ta.args = appendArg(a.args, key, b2s(value), argsHasValue)\n}\n\n// AddBytesKV adds 'key=value' argument.\n//\n// Multiple values for the same key may be added.\nfunc (a *Args) AddBytesKV(key, value []byte) {\n\ta.args = appendArg(a.args, b2s(key), b2s(value), argsHasValue)\n}\n\n// AddNoValue adds only 'key' as argument without the '='.\n//\n// Multiple values for the same key may be added.\nfunc (a *Args) AddNoValue(key string) {\n\ta.args = appendArg(a.args, key, \"\", argsNoValue)\n}\n\n// AddBytesKNoValue adds only 'key' as argument without the '='.\n//\n// Multiple values for the same key may be added.\nfunc (a *Args) AddBytesKNoValue(key []byte) {\n\ta.args = appendArg(a.args, b2s(key), \"\", argsNoValue)\n}\n\n// Set sets 'key=value' argument.\nfunc (a *Args) Set(key, value string) {\n\ta.args = setArg(a.args, key, value, argsHasValue)\n}\n\n// SetBytesK sets 'key=value' argument.\nfunc (a *Args) SetBytesK(key []byte, value string) {\n\ta.args = setArg(a.args, b2s(key), value, argsHasValue)\n}\n\n// SetBytesV sets 'key=value' argument.\nfunc (a *Args) SetBytesV(key string, value []byte) {\n\ta.args = setArg(a.args, key, b2s(value), argsHasValue)\n}\n\n// SetBytesKV sets 'key=value' argument.\nfunc (a *Args) SetBytesKV(key, value []byte) {\n\ta.args = setArgBytes(a.args, key, value, argsHasValue)\n}\n\n// SetNoValue sets only 'key' as argument without the '='.\n//\n// Only key in argumemt, like key1&key2\nfunc (a *Args) SetNoValue(key string) {\n\ta.args = setArg(a.args, key, \"\", argsNoValue)\n}\n\n// SetBytesKNoValue sets 'key' argument.\nfunc (a *Args) SetBytesKNoValue(key []byte) {\n\ta.args = setArg(a.args, b2s(key), \"\", argsNoValue)\n}\n\n// Peek returns query arg value for the given key.\n//\n// Returned value is valid until the next Args call.\nfunc (a *Args) Peek(key string) []byte {\n\treturn peekArgStr(a.args, key)\n}\n\n// PeekBytes returns query arg value for the given key.\n//\n// Returned value is valid until the next Args call.\nfunc (a *Args) PeekBytes(key []byte) []byte {\n\treturn peekArgBytes(a.args, key)\n}\n\n// PeekMulti returns all the arg values for the given key.\nfunc (a *Args) PeekMulti(key string) [][]byte {\n\tvar values [][]byte\n\ta.VisitAll(func(k, v []byte) {\n\t\tif string(k) == key {\n\t\t\tvalues = append(values, v)\n\t\t}\n\t})\n\treturn values\n}\n\n// PeekMultiBytes returns all the arg values for the given key.\nfunc (a *Args) PeekMultiBytes(key []byte) [][]byte {\n\treturn a.PeekMulti(b2s(key))\n}\n\n// Has returns true if the given key exists in Args.\nfunc (a *Args) Has(key string) bool {\n\treturn hasArg(a.args, key)\n}\n\n// HasBytes returns true if the given key exists in Args.\nfunc (a *Args) HasBytes(key []byte) bool {\n\treturn hasArg(a.args, b2s(key))\n}\n\n// ErrNoArgValue is returned when Args value with the given key is missing.\nvar ErrNoArgValue = errors.New(\"no Args value for the given key\")\n\n// GetUint returns uint value for the given key.\nfunc (a *Args) GetUint(key string) (int, error) {\n\tvalue := a.Peek(key)\n\tif len(value) == 0 {\n\t\treturn -1, ErrNoArgValue\n\t}\n\treturn ParseUint(value)\n}\n\n// SetUint sets uint value for the given key.\nfunc (a *Args) SetUint(key string, value int) {\n\tbb := bytebufferpool.Get()\n\tbb.B = AppendUint(bb.B[:0], value)\n\ta.SetBytesV(key, bb.B)\n\tbytebufferpool.Put(bb)\n}\n\n// SetUintBytes sets uint value for the given key.\nfunc (a *Args) SetUintBytes(key []byte, value int) {\n\ta.SetUint(b2s(key), value)\n}\n\n// GetUintOrZero returns uint value for the given key.\n//\n// Zero (0) is returned on error.\nfunc (a *Args) GetUintOrZero(key string) int {\n\tn, err := a.GetUint(key)\n\tif err != nil {\n\t\tn = 0\n\t}\n\treturn n\n}\n\n// GetUfloat returns ufloat value for the given key.\nfunc (a *Args) GetUfloat(key string) (float64, error) {\n\tvalue := a.Peek(key)\n\tif len(value) == 0 {\n\t\treturn -1, ErrNoArgValue\n\t}\n\treturn ParseUfloat(value)\n}\n\n// GetUfloatOrZero returns ufloat value for the given key.\n//\n// Zero (0) is returned on error.\nfunc (a *Args) GetUfloatOrZero(key string) float64 {\n\tf, err := a.GetUfloat(key)\n\tif err != nil {\n\t\tf = 0\n\t}\n\treturn f\n}\n\n// GetBool returns boolean value for the given key.\n//\n// true is returned for \"1\", \"t\", \"T\", \"true\", \"TRUE\", \"True\", \"y\", \"yes\", \"Y\", \"YES\", \"Yes\",\n// otherwise false is returned.\nfunc (a *Args) GetBool(key string) bool {\n\tswitch b2s(a.Peek(key)) {\n\t// Support the same true cases as strconv.ParseBool\n\t// See: https://github.com/golang/go/blob/4e1b11e2c9bdb0ddea1141eed487be1a626ff5be/src/strconv/atob.go#L12\n\t// and Y and Yes versions.\n\tcase \"1\", \"t\", \"T\", \"true\", \"TRUE\", \"True\", \"y\", \"yes\", \"Y\", \"YES\", \"Yes\":\n\t\treturn true\n\tdefault:\n\t\treturn false\n\t}\n}\n\nfunc visitArgs(args []argsKV, f func(k, v []byte)) {\n\tfor i, n := 0, len(args); i < n; i++ {\n\t\tkv := &args[i]\n\t\tf(kv.key, kv.value)\n\t}\n}\n\nfunc copyArgs(dst, src []argsKV) []argsKV {\n\tif cap(dst) < len(src) {\n\t\ttmp := make([]argsKV, len(src))\n\t\tcopy(tmp, dst)\n\t\tdst = tmp\n\t}\n\tn := len(src)\n\tdst = dst[:n]\n\tfor i := 0; i < n; i++ {\n\t\tdstKV := &dst[i]\n\t\tsrcKV := &src[i]\n\t\tdstKV.key = append(dstKV.key[:0], srcKV.key...)\n\t\tif srcKV.noValue {\n\t\t\tdstKV.value = dstKV.value[:0]\n\t\t} else {\n\t\t\tdstKV.value = append(dstKV.value[:0], srcKV.value...)\n\t\t}\n\t\tdstKV.noValue = srcKV.noValue\n\t}\n\treturn dst\n}\n\nfunc delAllArgsBytes(args []argsKV, key []byte) []argsKV {\n\treturn delAllArgs(args, b2s(key))\n}\n\nfunc delAllArgs(args []argsKV, key string) []argsKV {\n\tfor i, n := 0, len(args); i < n; i++ {\n\t\tkv := &args[i]\n\t\tif key == string(kv.key) {\n\t\t\ttmp := *kv\n\t\t\tcopy(args[i:], args[i+1:])\n\t\t\tn--\n\t\t\ti--\n\t\t\targs[n] = tmp\n\t\t\targs = args[:n]\n\t\t}\n\t}\n\treturn args\n}\n\nfunc setArgBytes(h []argsKV, key, value []byte, noValue bool) []argsKV {\n\treturn setArg(h, b2s(key), b2s(value), noValue)\n}\n\nfunc setArg(h []argsKV, key, value string, noValue bool) []argsKV {\n\tn := len(h)\n\tfor i := 0; i < n; i++ {\n\t\tkv := &h[i]\n\t\tif key == string(kv.key) {\n\t\t\tif noValue {\n\t\t\t\tkv.value = kv.value[:0]\n\t\t\t} else {\n\t\t\t\tkv.value = append(kv.value[:0], value...)\n\t\t\t}\n\t\t\tkv.noValue = noValue\n\t\t\treturn h\n\t\t}\n\t}\n\treturn appendArg(h, key, value, noValue)\n}\n\nfunc appendArgBytes(h []argsKV, key, value []byte, noValue bool) []argsKV {\n\treturn appendArg(h, b2s(key), b2s(value), noValue)\n}\n\nfunc appendArg(args []argsKV, key, value string, noValue bool) []argsKV {\n\tvar kv *argsKV\n\targs, kv = allocArg(args)\n\tkv.key = append(kv.key[:0], key...)\n\tif noValue {\n\t\tkv.value = kv.value[:0]\n\t} else {\n\t\tkv.value = append(kv.value[:0], value...)\n\t}\n\tkv.noValue = noValue\n\treturn args\n}\n\nfunc allocArg(h []argsKV) ([]argsKV, *argsKV) {\n\tn := len(h)\n\tif cap(h) > n {\n\t\th = h[:n+1]\n\t} else {\n\t\th = append(h, argsKV{})\n\t}\n\treturn h, &h[n]\n}\n\nfunc releaseArg(h []argsKV) []argsKV {\n\treturn h[:len(h)-1]\n}\n\nfunc hasArg(h []argsKV, key string) bool {\n\tfor i, n := 0, len(h); i < n; i++ {\n\t\tkv := &h[i]\n\t\tif key == string(kv.key) {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc peekArgBytes(h []argsKV, k []byte) []byte {\n\tfor i, n := 0, len(h); i < n; i++ {\n\t\tkv := &h[i]\n\t\tif bytes.Equal(kv.key, k) {\n\t\t\treturn kv.value\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc peekArgStr(h []argsKV, k string) []byte {\n\tfor i, n := 0, len(h); i < n; i++ {\n\t\tkv := &h[i]\n\t\tif string(kv.key) == k {\n\t\t\treturn kv.value\n\t\t}\n\t}\n\treturn nil\n}\n\ntype argsScanner struct {\n\tb []byte\n}\n\nfunc (s *argsScanner) next(kv *argsKV) bool {\n\tif len(s.b) == 0 {\n\t\treturn false\n\t}\n\tkv.noValue = argsHasValue\n\n\tisKey := true\n\tk := 0\n\tfor i, c := range s.b {\n\t\tswitch c {\n\t\tcase '=':\n\t\t\tif isKey {\n\t\t\t\tisKey = false\n\t\t\t\tkv.key = decodeArgAppend(kv.key[:0], s.b[:i])\n\t\t\t\tk = i + 1\n\t\t\t}\n\t\tcase '&':\n\t\t\tif isKey {\n\t\t\t\tkv.key = decodeArgAppend(kv.key[:0], s.b[:i])\n\t\t\t\tkv.value = kv.value[:0]\n\t\t\t\tkv.noValue = argsNoValue\n\t\t\t} else {\n\t\t\t\tkv.value = decodeArgAppend(kv.value[:0], s.b[k:i])\n\t\t\t}\n\t\t\ts.b = s.b[i+1:]\n\t\t\treturn true\n\t\t}\n\t}\n\n\tif isKey {\n\t\tkv.key = decodeArgAppend(kv.key[:0], s.b)\n\t\tkv.value = kv.value[:0]\n\t\tkv.noValue = argsNoValue\n\t} else {\n\t\tkv.value = decodeArgAppend(kv.value[:0], s.b[k:])\n\t}\n\ts.b = s.b[len(s.b):]\n\treturn true\n}\n\nfunc decodeArgAppend(dst, src []byte) []byte {\n\tif bytes.IndexByte(src, '%') < 0 && bytes.IndexByte(src, '+') < 0 {\n\t\t// fast path: src doesn't contain encoded chars\n\t\treturn append(dst, src...)\n\t}\n\n\t// slow path\n\tfor i := 0; i < len(src); i++ {\n\t\tc := src[i]\n\t\tif c == '%' {\n\t\t\tif i+2 >= len(src) {\n\t\t\t\treturn append(dst, src[i:]...)\n\t\t\t}\n\t\t\tx2 := hex2intTable[src[i+2]]\n\t\t\tx1 := hex2intTable[src[i+1]]\n\t\t\tif x1 == 16 || x2 == 16 {\n\t\t\t\tdst = append(dst, '%')\n\t\t\t} else {\n\t\t\t\tdst = append(dst, x1<<4|x2)\n\t\t\t\ti += 2\n\t\t\t}\n\t\t} else if c == '+' {\n\t\t\tdst = append(dst, ' ')\n\t\t} else {\n\t\t\tdst = append(dst, c)\n\t\t}\n\t}\n\treturn dst\n}\n\n// decodeArgAppendNoPlus is almost identical to decodeArgAppend, but it doesn't\n// substitute '+' with ' '.\n//\n// The function is copy-pasted from decodeArgAppend due to the performance\n// reasons only.\nfunc decodeArgAppendNoPlus(dst, src []byte) []byte {\n\tif bytes.IndexByte(src, '%') < 0 {\n\t\t// fast path: src doesn't contain encoded chars\n\t\treturn append(dst, src...)\n\t}\n\n\t// slow path\n\tfor i := 0; i < len(src); i++ {\n\t\tc := src[i]\n\t\tif c == '%' {\n\t\t\tif i+2 >= len(src) {\n\t\t\t\treturn append(dst, src[i:]...)\n\t\t\t}\n\t\t\tx2 := hex2intTable[src[i+2]]\n\t\t\tx1 := hex2intTable[src[i+1]]\n\t\t\tif x1 == 16 || x2 == 16 {\n\t\t\t\tdst = append(dst, '%')\n\t\t\t} else {\n\t\t\t\tdst = append(dst, x1<<4|x2)\n\t\t\t\ti += 2\n\t\t\t}\n\t\t} else {\n\t\t\tdst = append(dst, c)\n\t\t}\n\t}\n\treturn dst\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/brotli.go",
    "content": "package fasthttp\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"sync\"\n\n\t\"github.com/andybalholm/brotli\"\n\t\"github.com/valyala/bytebufferpool\"\n\t\"github.com/valyala/fasthttp/stackless\"\n)\n\n// Supported compression levels.\nconst (\n\tCompressBrotliNoCompression   = 0\n\tCompressBrotliBestSpeed       = brotli.BestSpeed\n\tCompressBrotliBestCompression = brotli.BestCompression\n\n\t// Choose a default brotli compression level comparable to\n\t// CompressDefaultCompression (gzip 6)\n\t// See: https://github.com/valyala/fasthttp/issues/798#issuecomment-626293806\n\tCompressBrotliDefaultCompression = 4\n)\n\nfunc acquireBrotliReader(r io.Reader) (*brotli.Reader, error) {\n\tv := brotliReaderPool.Get()\n\tif v == nil {\n\t\treturn brotli.NewReader(r), nil\n\t}\n\tzr := v.(*brotli.Reader)\n\tif err := zr.Reset(r); err != nil {\n\t\treturn nil, err\n\t}\n\treturn zr, nil\n}\n\nfunc releaseBrotliReader(zr *brotli.Reader) {\n\tbrotliReaderPool.Put(zr)\n}\n\nvar brotliReaderPool sync.Pool\n\nfunc acquireStacklessBrotliWriter(w io.Writer, level int) stackless.Writer {\n\tnLevel := normalizeBrotliCompressLevel(level)\n\tp := stacklessBrotliWriterPoolMap[nLevel]\n\tv := p.Get()\n\tif v == nil {\n\t\treturn stackless.NewWriter(w, func(w io.Writer) stackless.Writer {\n\t\t\treturn acquireRealBrotliWriter(w, level)\n\t\t})\n\t}\n\tsw := v.(stackless.Writer)\n\tsw.Reset(w)\n\treturn sw\n}\n\nfunc releaseStacklessBrotliWriter(sw stackless.Writer, level int) {\n\tsw.Close()\n\tnLevel := normalizeBrotliCompressLevel(level)\n\tp := stacklessBrotliWriterPoolMap[nLevel]\n\tp.Put(sw)\n}\n\nfunc acquireRealBrotliWriter(w io.Writer, level int) *brotli.Writer {\n\tnLevel := normalizeBrotliCompressLevel(level)\n\tp := realBrotliWriterPoolMap[nLevel]\n\tv := p.Get()\n\tif v == nil {\n\t\tzw := brotli.NewWriterLevel(w, level)\n\t\treturn zw\n\t}\n\tzw := v.(*brotli.Writer)\n\tzw.Reset(w)\n\treturn zw\n}\n\nfunc releaseRealBrotliWriter(zw *brotli.Writer, level int) {\n\tzw.Close()\n\tnLevel := normalizeBrotliCompressLevel(level)\n\tp := realBrotliWriterPoolMap[nLevel]\n\tp.Put(zw)\n}\n\nvar (\n\tstacklessBrotliWriterPoolMap = newCompressWriterPoolMap()\n\trealBrotliWriterPoolMap      = newCompressWriterPoolMap()\n)\n\n// AppendBrotliBytesLevel appends brotlied src to dst using the given\n// compression level and returns the resulting dst.\n//\n// Supported compression levels are:\n//\n//    * CompressBrotliNoCompression\n//    * CompressBrotliBestSpeed\n//    * CompressBrotliBestCompression\n//    * CompressBrotliDefaultCompression\nfunc AppendBrotliBytesLevel(dst, src []byte, level int) []byte {\n\tw := &byteSliceWriter{dst}\n\tWriteBrotliLevel(w, src, level) //nolint:errcheck\n\treturn w.b\n}\n\n// WriteBrotliLevel writes brotlied p to w using the given compression level\n// and returns the number of compressed bytes written to w.\n//\n// Supported compression levels are:\n//\n//    * CompressBrotliNoCompression\n//    * CompressBrotliBestSpeed\n//    * CompressBrotliBestCompression\n//    * CompressBrotliDefaultCompression\nfunc WriteBrotliLevel(w io.Writer, p []byte, level int) (int, error) {\n\tswitch w.(type) {\n\tcase *byteSliceWriter,\n\t\t*bytes.Buffer,\n\t\t*bytebufferpool.ByteBuffer:\n\t\t// These writers don't block, so we can just use stacklessWriteBrotli\n\t\tctx := &compressCtx{\n\t\t\tw:     w,\n\t\t\tp:     p,\n\t\t\tlevel: level,\n\t\t}\n\t\tstacklessWriteBrotli(ctx)\n\t\treturn len(p), nil\n\tdefault:\n\t\tzw := acquireStacklessBrotliWriter(w, level)\n\t\tn, err := zw.Write(p)\n\t\treleaseStacklessBrotliWriter(zw, level)\n\t\treturn n, err\n\t}\n}\n\nvar stacklessWriteBrotli = stackless.NewFunc(nonblockingWriteBrotli)\n\nfunc nonblockingWriteBrotli(ctxv interface{}) {\n\tctx := ctxv.(*compressCtx)\n\tzw := acquireRealBrotliWriter(ctx.w, ctx.level)\n\n\t_, err := zw.Write(ctx.p)\n\tif err != nil {\n\t\tpanic(fmt.Sprintf(\"BUG: brotli.Writer.Write for len(p)=%d returned unexpected error: %s\", len(ctx.p), err))\n\t}\n\n\treleaseRealBrotliWriter(zw, ctx.level)\n}\n\n// WriteBrotli writes brotlied p to w and returns the number of compressed\n// bytes written to w.\nfunc WriteBrotli(w io.Writer, p []byte) (int, error) {\n\treturn WriteBrotliLevel(w, p, CompressBrotliDefaultCompression)\n}\n\n// AppendBrotliBytes appends brotlied src to dst and returns the resulting dst.\nfunc AppendBrotliBytes(dst, src []byte) []byte {\n\treturn AppendBrotliBytesLevel(dst, src, CompressBrotliDefaultCompression)\n}\n\n// WriteUnbrotli writes unbrotlied p to w and returns the number of uncompressed\n// bytes written to w.\nfunc WriteUnbrotli(w io.Writer, p []byte) (int, error) {\n\tr := &byteSliceReader{p}\n\tzr, err := acquireBrotliReader(r)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tn, err := copyZeroAlloc(w, zr)\n\treleaseBrotliReader(zr)\n\tnn := int(n)\n\tif int64(nn) != n {\n\t\treturn 0, fmt.Errorf(\"too much data unbrotlied: %d\", n)\n\t}\n\treturn nn, err\n}\n\n// AppendUnbrotliBytes appends unbrotlied src to dst and returns the resulting dst.\nfunc AppendUnbrotliBytes(dst, src []byte) ([]byte, error) {\n\tw := &byteSliceWriter{dst}\n\t_, err := WriteUnbrotli(w, src)\n\treturn w.b, err\n}\n\n// normalizes compression level into [0..11], so it could be used as an index\n// in *PoolMap.\nfunc normalizeBrotliCompressLevel(level int) int {\n\t// -2 is the lowest compression level - CompressHuffmanOnly\n\t// 9 is the highest compression level - CompressBestCompression\n\tif level < 0 || level > 11 {\n\t\tlevel = CompressBrotliDefaultCompression\n\t}\n\treturn level\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/bytesconv.go",
    "content": "//go:generate go run bytesconv_table_gen.go\n\npackage fasthttp\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"math\"\n\t\"net\"\n\t\"reflect\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\t\"unsafe\"\n)\n\n// AppendHTMLEscape appends html-escaped s to dst and returns the extended dst.\nfunc AppendHTMLEscape(dst []byte, s string) []byte {\n\tif strings.IndexByte(s, '<') < 0 &&\n\t\tstrings.IndexByte(s, '>') < 0 &&\n\t\tstrings.IndexByte(s, '\"') < 0 &&\n\t\tstrings.IndexByte(s, '\\'') < 0 {\n\n\t\t// fast path - nothing to escape\n\t\treturn append(dst, s...)\n\t}\n\n\t// slow path\n\tvar prev int\n\tvar sub string\n\tfor i, n := 0, len(s); i < n; i++ {\n\t\tsub = \"\"\n\t\tswitch s[i] {\n\t\tcase '<':\n\t\t\tsub = \"&lt;\"\n\t\tcase '>':\n\t\t\tsub = \"&gt;\"\n\t\tcase '\"':\n\t\t\tsub = \"&quot;\"\n\t\tcase '\\'':\n\t\t\tsub = \"&#39;\"\n\t\t}\n\t\tif len(sub) > 0 {\n\t\t\tdst = append(dst, s[prev:i]...)\n\t\t\tdst = append(dst, sub...)\n\t\t\tprev = i + 1\n\t\t}\n\t}\n\treturn append(dst, s[prev:]...)\n}\n\n// AppendHTMLEscapeBytes appends html-escaped s to dst and returns\n// the extended dst.\nfunc AppendHTMLEscapeBytes(dst, s []byte) []byte {\n\treturn AppendHTMLEscape(dst, b2s(s))\n}\n\n// AppendIPv4 appends string representation of the given ip v4 to dst\n// and returns the extended dst.\nfunc AppendIPv4(dst []byte, ip net.IP) []byte {\n\tip = ip.To4()\n\tif ip == nil {\n\t\treturn append(dst, \"non-v4 ip passed to AppendIPv4\"...)\n\t}\n\n\tdst = AppendUint(dst, int(ip[0]))\n\tfor i := 1; i < 4; i++ {\n\t\tdst = append(dst, '.')\n\t\tdst = AppendUint(dst, int(ip[i]))\n\t}\n\treturn dst\n}\n\nvar errEmptyIPStr = errors.New(\"empty ip address string\")\n\n// ParseIPv4 parses ip address from ipStr into dst and returns the extended dst.\nfunc ParseIPv4(dst net.IP, ipStr []byte) (net.IP, error) {\n\tif len(ipStr) == 0 {\n\t\treturn dst, errEmptyIPStr\n\t}\n\tif len(dst) < net.IPv4len {\n\t\tdst = make([]byte, net.IPv4len)\n\t}\n\tcopy(dst, net.IPv4zero)\n\tdst = dst.To4()\n\tif dst == nil {\n\t\tpanic(\"BUG: dst must not be nil\")\n\t}\n\n\tb := ipStr\n\tfor i := 0; i < 3; i++ {\n\t\tn := bytes.IndexByte(b, '.')\n\t\tif n < 0 {\n\t\t\treturn dst, fmt.Errorf(\"cannot find dot in ipStr %q\", ipStr)\n\t\t}\n\t\tv, err := ParseUint(b[:n])\n\t\tif err != nil {\n\t\t\treturn dst, fmt.Errorf(\"cannot parse ipStr %q: %s\", ipStr, err)\n\t\t}\n\t\tif v > 255 {\n\t\t\treturn dst, fmt.Errorf(\"cannot parse ipStr %q: ip part cannot exceed 255: parsed %d\", ipStr, v)\n\t\t}\n\t\tdst[i] = byte(v)\n\t\tb = b[n+1:]\n\t}\n\tv, err := ParseUint(b)\n\tif err != nil {\n\t\treturn dst, fmt.Errorf(\"cannot parse ipStr %q: %s\", ipStr, err)\n\t}\n\tif v > 255 {\n\t\treturn dst, fmt.Errorf(\"cannot parse ipStr %q: ip part cannot exceed 255: parsed %d\", ipStr, v)\n\t}\n\tdst[3] = byte(v)\n\n\treturn dst, nil\n}\n\n// AppendHTTPDate appends HTTP-compliant (RFC1123) representation of date\n// to dst and returns the extended dst.\nfunc AppendHTTPDate(dst []byte, date time.Time) []byte {\n\tdst = date.In(time.UTC).AppendFormat(dst, time.RFC1123)\n\tcopy(dst[len(dst)-3:], strGMT)\n\treturn dst\n}\n\n// ParseHTTPDate parses HTTP-compliant (RFC1123) date.\nfunc ParseHTTPDate(date []byte) (time.Time, error) {\n\treturn time.Parse(time.RFC1123, b2s(date))\n}\n\n// AppendUint appends n to dst and returns the extended dst.\nfunc AppendUint(dst []byte, n int) []byte {\n\tif n < 0 {\n\t\tpanic(\"BUG: int must be positive\")\n\t}\n\n\tvar b [20]byte\n\tbuf := b[:]\n\ti := len(buf)\n\tvar q int\n\tfor n >= 10 {\n\t\ti--\n\t\tq = n / 10\n\t\tbuf[i] = '0' + byte(n-q*10)\n\t\tn = q\n\t}\n\ti--\n\tbuf[i] = '0' + byte(n)\n\n\tdst = append(dst, buf[i:]...)\n\treturn dst\n}\n\n// ParseUint parses uint from buf.\nfunc ParseUint(buf []byte) (int, error) {\n\tv, n, err := parseUintBuf(buf)\n\tif n != len(buf) {\n\t\treturn -1, errUnexpectedTrailingChar\n\t}\n\treturn v, err\n}\n\nvar (\n\terrEmptyInt               = errors.New(\"empty integer\")\n\terrUnexpectedFirstChar    = errors.New(\"unexpected first char found. Expecting 0-9\")\n\terrUnexpectedTrailingChar = errors.New(\"unexpected trailing char found. Expecting 0-9\")\n\terrTooLongInt             = errors.New(\"too long int\")\n)\n\nfunc parseUintBuf(b []byte) (int, int, error) {\n\tn := len(b)\n\tif n == 0 {\n\t\treturn -1, 0, errEmptyInt\n\t}\n\tv := 0\n\tfor i := 0; i < n; i++ {\n\t\tc := b[i]\n\t\tk := c - '0'\n\t\tif k > 9 {\n\t\t\tif i == 0 {\n\t\t\t\treturn -1, i, errUnexpectedFirstChar\n\t\t\t}\n\t\t\treturn v, i, nil\n\t\t}\n\t\tvNew := 10*v + int(k)\n\t\t// Test for overflow.\n\t\tif vNew < v {\n\t\t\treturn -1, i, errTooLongInt\n\t\t}\n\t\tv = vNew\n\t}\n\treturn v, n, nil\n}\n\nvar (\n\terrEmptyFloat           = errors.New(\"empty float number\")\n\terrDuplicateFloatPoint  = errors.New(\"duplicate point found in float number\")\n\terrUnexpectedFloatEnd   = errors.New(\"unexpected end of float number\")\n\terrInvalidFloatExponent = errors.New(\"invalid float number exponent\")\n\terrUnexpectedFloatChar  = errors.New(\"unexpected char found in float number\")\n)\n\n// ParseUfloat parses unsigned float from buf.\nfunc ParseUfloat(buf []byte) (float64, error) {\n\tif len(buf) == 0 {\n\t\treturn -1, errEmptyFloat\n\t}\n\tb := buf\n\tvar v uint64\n\tvar offset = 1.0\n\tvar pointFound bool\n\tfor i, c := range b {\n\t\tif c < '0' || c > '9' {\n\t\t\tif c == '.' {\n\t\t\t\tif pointFound {\n\t\t\t\t\treturn -1, errDuplicateFloatPoint\n\t\t\t\t}\n\t\t\t\tpointFound = true\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif c == 'e' || c == 'E' {\n\t\t\t\tif i+1 >= len(b) {\n\t\t\t\t\treturn -1, errUnexpectedFloatEnd\n\t\t\t\t}\n\t\t\t\tb = b[i+1:]\n\t\t\t\tminus := -1\n\t\t\t\tswitch b[0] {\n\t\t\t\tcase '+':\n\t\t\t\t\tb = b[1:]\n\t\t\t\t\tminus = 1\n\t\t\t\tcase '-':\n\t\t\t\t\tb = b[1:]\n\t\t\t\tdefault:\n\t\t\t\t\tminus = 1\n\t\t\t\t}\n\t\t\t\tvv, err := ParseUint(b)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn -1, errInvalidFloatExponent\n\t\t\t\t}\n\t\t\t\treturn float64(v) * offset * math.Pow10(minus*int(vv)), nil\n\t\t\t}\n\t\t\treturn -1, errUnexpectedFloatChar\n\t\t}\n\t\tv = 10*v + uint64(c-'0')\n\t\tif pointFound {\n\t\t\toffset /= 10\n\t\t}\n\t}\n\treturn float64(v) * offset, nil\n}\n\nvar (\n\terrEmptyHexNum    = errors.New(\"empty hex number\")\n\terrTooLargeHexNum = errors.New(\"too large hex number\")\n)\n\nfunc readHexInt(r *bufio.Reader) (int, error) {\n\tn := 0\n\ti := 0\n\tvar k int\n\tfor {\n\t\tc, err := r.ReadByte()\n\t\tif err != nil {\n\t\t\tif err == io.EOF && i > 0 {\n\t\t\t\treturn n, nil\n\t\t\t}\n\t\t\treturn -1, err\n\t\t}\n\t\tk = int(hex2intTable[c])\n\t\tif k == 16 {\n\t\t\tif i == 0 {\n\t\t\t\treturn -1, errEmptyHexNum\n\t\t\t}\n\t\t\tif err := r.UnreadByte(); err != nil {\n\t\t\t\treturn -1, err\n\t\t\t}\n\t\t\treturn n, nil\n\t\t}\n\t\tif i >= maxHexIntChars {\n\t\t\treturn -1, errTooLargeHexNum\n\t\t}\n\t\tn = (n << 4) | k\n\t\ti++\n\t}\n}\n\nvar hexIntBufPool sync.Pool\n\nfunc writeHexInt(w *bufio.Writer, n int) error {\n\tif n < 0 {\n\t\tpanic(\"BUG: int must be positive\")\n\t}\n\n\tv := hexIntBufPool.Get()\n\tif v == nil {\n\t\tv = make([]byte, maxHexIntChars+1)\n\t}\n\tbuf := v.([]byte)\n\ti := len(buf) - 1\n\tfor {\n\t\tbuf[i] = lowerhex[n&0xf]\n\t\tn >>= 4\n\t\tif n == 0 {\n\t\t\tbreak\n\t\t}\n\t\ti--\n\t}\n\t_, err := w.Write(buf[i:])\n\thexIntBufPool.Put(v)\n\treturn err\n}\n\nconst (\n\tupperhex = \"0123456789ABCDEF\"\n\tlowerhex = \"0123456789abcdef\"\n)\n\nfunc lowercaseBytes(b []byte) {\n\tfor i := 0; i < len(b); i++ {\n\t\tp := &b[i]\n\t\t*p = toLowerTable[*p]\n\t}\n}\n\n// b2s converts byte slice to a string without memory allocation.\n// See https://groups.google.com/forum/#!msg/Golang-Nuts/ENgbUzYvCuU/90yGx7GUAgAJ .\n//\n// Note it may break if string and/or slice header will change\n// in the future go versions.\nfunc b2s(b []byte) string {\n\t/* #nosec G103 */\n\treturn *(*string)(unsafe.Pointer(&b))\n}\n\n// s2b converts string to a byte slice without memory allocation.\n//\n// Note it may break if string and/or slice header will change\n// in the future go versions.\nfunc s2b(s string) (b []byte) {\n\t/* #nosec G103 */\n\tbh := (*reflect.SliceHeader)(unsafe.Pointer(&b))\n\t/* #nosec G103 */\n\tsh := *(*reflect.StringHeader)(unsafe.Pointer(&s))\n\tbh.Data = sh.Data\n\tbh.Len = sh.Len\n\tbh.Cap = sh.Len\n\treturn b\n}\n\n// AppendUnquotedArg appends url-decoded src to dst and returns appended dst.\n//\n// dst may point to src. In this case src will be overwritten.\nfunc AppendUnquotedArg(dst, src []byte) []byte {\n\treturn decodeArgAppend(dst, src)\n}\n\n// AppendQuotedArg appends url-encoded src to dst and returns appended dst.\nfunc AppendQuotedArg(dst, src []byte) []byte {\n\tfor _, c := range src {\n\t\tswitch {\n\t\tcase c == ' ':\n\t\t\tdst = append(dst, '+')\n\t\tcase quotedArgShouldEscapeTable[int(c)] != 0:\n\t\t\tdst = append(dst, '%', upperhex[c>>4], upperhex[c&0xf])\n\t\tdefault:\n\t\t\tdst = append(dst, c)\n\t\t}\n\t}\n\treturn dst\n}\n\nfunc appendQuotedPath(dst, src []byte) []byte {\n\t// Fix issue in https://github.com/golang/go/issues/11202\n\tif len(src) == 1 && src[0] == '*' {\n\t\treturn append(dst, '*')\n\t}\n\n\tfor _, c := range src {\n\t\tif quotedPathShouldEscapeTable[int(c)] != 0 {\n\t\t\tdst = append(dst, '%', upperhex[c>>4], upperhex[c&15])\n\t\t} else {\n\t\t\tdst = append(dst, c)\n\t\t}\n\t}\n\treturn dst\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/bytesconv_32.go",
    "content": "// +build !amd64,!arm64,!ppc64,!ppc64le\n\npackage fasthttp\n\nconst (\n\tmaxHexIntChars = 7\n)\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/bytesconv_64.go",
    "content": "// +build amd64 arm64 ppc64 ppc64le\n\npackage fasthttp\n\nconst (\n\tmaxHexIntChars = 15\n)\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/bytesconv_table.go",
    "content": "package fasthttp\n\n// Code generated by go run bytesconv_table_gen.go; DO NOT EDIT.\n// See bytesconv_table_gen.go for more information about these tables.\n\nconst hex2intTable = \"\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\a\\b\\t\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\n\\v\\f\\r\\x0e\\x0f\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\n\\v\\f\\r\\x0e\\x0f\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\\x10\"\nconst toLowerTable = \"\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\a\\b\\t\\n\\v\\f\\r\\x0e\\x0f\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f !\\\"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\\\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\\u007f\\x80\\x81\\x82\\x83\\x84\\x85\\x86\\x87\\x88\\x89\\x8a\\x8b\\x8c\\x8d\\x8e\\x8f\\x90\\x91\\x92\\x93\\x94\\x95\\x96\\x97\\x98\\x99\\x9a\\x9b\\x9c\\x9d\\x9e\\x9f\\xa0\\xa1\\xa2\\xa3\\xa4\\xa5\\xa6\\xa7\\xa8\\xa9\\xaa\\xab\\xac\\xad\\xae\\xaf\\xb0\\xb1\\xb2\\xb3\\xb4\\xb5\\xb6\\xb7\\xb8\\xb9\\xba\\xbb\\xbc\\xbd\\xbe\\xbf\\xc0\\xc1\\xc2\\xc3\\xc4\\xc5\\xc6\\xc7\\xc8\\xc9\\xca\\xcb\\xcc\\xcd\\xce\\xcf\\xd0\\xd1\\xd2\\xd3\\xd4\\xd5\\xd6\\xd7\\xd8\\xd9\\xda\\xdb\\xdc\\xdd\\xde\\xdf\\xe0\\xe1\\xe2\\xe3\\xe4\\xe5\\xe6\\xe7\\xe8\\xe9\\xea\\xeb\\xec\\xed\\xee\\xef\\xf0\\xf1\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd\\xfe\\xff\"\nconst toUpperTable = \"\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\a\\b\\t\\n\\v\\f\\r\\x0e\\x0f\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f !\\\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\\\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~\\u007f\\x80\\x81\\x82\\x83\\x84\\x85\\x86\\x87\\x88\\x89\\x8a\\x8b\\x8c\\x8d\\x8e\\x8f\\x90\\x91\\x92\\x93\\x94\\x95\\x96\\x97\\x98\\x99\\x9a\\x9b\\x9c\\x9d\\x9e\\x9f\\xa0\\xa1\\xa2\\xa3\\xa4\\xa5\\xa6\\xa7\\xa8\\xa9\\xaa\\xab\\xac\\xad\\xae\\xaf\\xb0\\xb1\\xb2\\xb3\\xb4\\xb5\\xb6\\xb7\\xb8\\xb9\\xba\\xbb\\xbc\\xbd\\xbe\\xbf\\xc0\\xc1\\xc2\\xc3\\xc4\\xc5\\xc6\\xc7\\xc8\\xc9\\xca\\xcb\\xcc\\xcd\\xce\\xcf\\xd0\\xd1\\xd2\\xd3\\xd4\\xd5\\xd6\\xd7\\xd8\\xd9\\xda\\xdb\\xdc\\xdd\\xde\\xdf\\xe0\\xe1\\xe2\\xe3\\xe4\\xe5\\xe6\\xe7\\xe8\\xe9\\xea\\xeb\\xec\\xed\\xee\\xef\\xf0\\xf1\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd\\xfe\\xff\"\nconst quotedArgShouldEscapeTable = \"\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x01\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x01\\x00\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\"\nconst quotedPathShouldEscapeTable = \"\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x00\\x01\\x00\\x01\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x01\\x01\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x01\\x01\\x00\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\\x01\"\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/client.go",
    "content": "package fasthttp\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"crypto/tls\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"net\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\t\"sync/atomic\"\n\t\"time\"\n)\n\n// Do performs the given http request and fills the given http response.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// Client determines the server to be requested in the following order:\n//\n//   - from RequestURI if it contains full url with scheme and host;\n//   - from Host header otherwise.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrNoFreeConns is returned if all DefaultMaxConnsPerHost connections\n// to the requested host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc Do(req *Request, resp *Response) error {\n\treturn defaultClient.Do(req, resp)\n}\n\n// DoTimeout performs the given request and waits for response during\n// the given timeout duration.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// Client determines the server to be requested in the following order:\n//\n//   - from RequestURI if it contains full url with scheme and host;\n//   - from Host header otherwise.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrTimeout is returned if the response wasn't returned during\n// the given timeout.\n//\n// ErrNoFreeConns is returned if all DefaultMaxConnsPerHost connections\n// to the requested host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\n//\n// Warning: DoTimeout does not terminate the request itself. The request will\n// continue in the background and the response will be discarded.\n// If requests take too long and the connection pool gets filled up please\n// try using a Client and setting a ReadTimeout.\nfunc DoTimeout(req *Request, resp *Response, timeout time.Duration) error {\n\treturn defaultClient.DoTimeout(req, resp, timeout)\n}\n\n// DoDeadline performs the given request and waits for response until\n// the given deadline.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// Client determines the server to be requested in the following order:\n//\n//   - from RequestURI if it contains full url with scheme and host;\n//   - from Host header otherwise.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrTimeout is returned if the response wasn't returned until\n// the given deadline.\n//\n// ErrNoFreeConns is returned if all DefaultMaxConnsPerHost connections\n// to the requested host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc DoDeadline(req *Request, resp *Response, deadline time.Time) error {\n\treturn defaultClient.DoDeadline(req, resp, deadline)\n}\n\n// DoRedirects performs the given http request and fills the given http response,\n// following up to maxRedirectsCount redirects. When the redirect count exceeds\n// maxRedirectsCount, ErrTooManyRedirects is returned.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// Client determines the server to be requested in the following order:\n//\n//   - from RequestURI if it contains full url with scheme and host;\n//   - from Host header otherwise.\n//\n// Response is ignored if resp is nil.\n//\n// ErrNoFreeConns is returned if all DefaultMaxConnsPerHost connections\n// to the requested host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc DoRedirects(req *Request, resp *Response, maxRedirectsCount int) error {\n\t_, _, err := doRequestFollowRedirects(req, resp, req.URI().String(), maxRedirectsCount, &defaultClient)\n\treturn err\n}\n\n// Get returns the status code and body of url.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\nfunc Get(dst []byte, url string) (statusCode int, body []byte, err error) {\n\treturn defaultClient.Get(dst, url)\n}\n\n// GetTimeout returns the status code and body of url.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\n//\n// ErrTimeout error is returned if url contents couldn't be fetched\n// during the given timeout.\nfunc GetTimeout(dst []byte, url string, timeout time.Duration) (statusCode int, body []byte, err error) {\n\treturn defaultClient.GetTimeout(dst, url, timeout)\n}\n\n// GetDeadline returns the status code and body of url.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\n//\n// ErrTimeout error is returned if url contents couldn't be fetched\n// until the given deadline.\nfunc GetDeadline(dst []byte, url string, deadline time.Time) (statusCode int, body []byte, err error) {\n\treturn defaultClient.GetDeadline(dst, url, deadline)\n}\n\n// Post sends POST request to the given url with the given POST arguments.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\n//\n// Empty POST body is sent if postArgs is nil.\nfunc Post(dst []byte, url string, postArgs *Args) (statusCode int, body []byte, err error) {\n\treturn defaultClient.Post(dst, url, postArgs)\n}\n\nvar defaultClient Client\n\n// Client implements http client.\n//\n// Copying Client by value is prohibited. Create new instance instead.\n//\n// It is safe calling Client methods from concurrently running goroutines.\ntype Client struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\t// Client name. Used in User-Agent request header.\n\t//\n\t// Default client name is used if not set.\n\tName string\n\n\t// NoDefaultUserAgentHeader when set to true, causes the default\n\t// User-Agent header to be excluded from the Request.\n\tNoDefaultUserAgentHeader bool\n\n\t// Callback for establishing new connections to hosts.\n\t//\n\t// Default Dial is used if not set.\n\tDial DialFunc\n\n\t// Attempt to connect to both ipv4 and ipv6 addresses if set to true.\n\t//\n\t// This option is used only if default TCP dialer is used,\n\t// i.e. if Dial is blank.\n\t//\n\t// By default client connects only to ipv4 addresses,\n\t// since unfortunately ipv6 remains broken in many networks worldwide :)\n\tDialDualStack bool\n\n\t// TLS config for https connections.\n\t//\n\t// Default TLS config is used if not set.\n\tTLSConfig *tls.Config\n\n\t// Maximum number of connections per each host which may be established.\n\t//\n\t// DefaultMaxConnsPerHost is used if not set.\n\tMaxConnsPerHost int\n\n\t// Idle keep-alive connections are closed after this duration.\n\t//\n\t// By default idle connections are closed\n\t// after DefaultMaxIdleConnDuration.\n\tMaxIdleConnDuration time.Duration\n\n\t// Keep-alive connections are closed after this duration.\n\t//\n\t// By default connection duration is unlimited.\n\tMaxConnDuration time.Duration\n\n\t// Maximum number of attempts for idempotent calls\n\t//\n\t// DefaultMaxIdemponentCallAttempts is used if not set.\n\tMaxIdemponentCallAttempts int\n\n\t// Per-connection buffer size for responses' reading.\n\t// This also limits the maximum header size.\n\t//\n\t// Default buffer size is used if 0.\n\tReadBufferSize int\n\n\t// Per-connection buffer size for requests' writing.\n\t//\n\t// Default buffer size is used if 0.\n\tWriteBufferSize int\n\n\t// Maximum duration for full response reading (including body).\n\t//\n\t// By default response read timeout is unlimited.\n\tReadTimeout time.Duration\n\n\t// Maximum duration for full request writing (including body).\n\t//\n\t// By default request write timeout is unlimited.\n\tWriteTimeout time.Duration\n\n\t// Maximum response body size.\n\t//\n\t// The client returns ErrBodyTooLarge if this limit is greater than 0\n\t// and response body is greater than the limit.\n\t//\n\t// By default response body size is unlimited.\n\tMaxResponseBodySize int\n\n\t// Header names are passed as-is without normalization\n\t// if this option is set.\n\t//\n\t// Disabled header names' normalization may be useful only for proxying\n\t// responses to other clients expecting case-sensitive\n\t// header names. See https://github.com/valyala/fasthttp/issues/57\n\t// for details.\n\t//\n\t// By default request and response header names are normalized, i.e.\n\t// The first letter and the first letters following dashes\n\t// are uppercased, while all the other letters are lowercased.\n\t// Examples:\n\t//\n\t//     * HOST -> Host\n\t//     * content-type -> Content-Type\n\t//     * cONTENT-lenGTH -> Content-Length\n\tDisableHeaderNamesNormalizing bool\n\n\t// Path values are sent as-is without normalization\n\t//\n\t// Disabled path normalization may be useful for proxying incoming requests\n\t// to servers that are expecting paths to be forwarded as-is.\n\t//\n\t// By default path values are normalized, i.e.\n\t// extra slashes are removed, special characters are encoded.\n\tDisablePathNormalizing bool\n\n\t// Maximum duration for waiting for a free connection.\n\t//\n\t// By default will not waiting, return ErrNoFreeConns immediately\n\tMaxConnWaitTimeout time.Duration\n\n\t// RetryIf controls whether a retry should be attempted after an error.\n\t//\n\t// By default will use isIdempotent function\n\tRetryIf RetryIfFunc\n\n\tmLock sync.Mutex\n\tm     map[string]*HostClient\n\tms    map[string]*HostClient\n}\n\n// Get returns the status code and body of url.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\nfunc (c *Client) Get(dst []byte, url string) (statusCode int, body []byte, err error) {\n\treturn clientGetURL(dst, url, c)\n}\n\n// GetTimeout returns the status code and body of url.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\n//\n// ErrTimeout error is returned if url contents couldn't be fetched\n// during the given timeout.\nfunc (c *Client) GetTimeout(dst []byte, url string, timeout time.Duration) (statusCode int, body []byte, err error) {\n\treturn clientGetURLTimeout(dst, url, timeout, c)\n}\n\n// GetDeadline returns the status code and body of url.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\n//\n// ErrTimeout error is returned if url contents couldn't be fetched\n// until the given deadline.\nfunc (c *Client) GetDeadline(dst []byte, url string, deadline time.Time) (statusCode int, body []byte, err error) {\n\treturn clientGetURLDeadline(dst, url, deadline, c)\n}\n\n// Post sends POST request to the given url with the given POST arguments.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\n//\n// Empty POST body is sent if postArgs is nil.\nfunc (c *Client) Post(dst []byte, url string, postArgs *Args) (statusCode int, body []byte, err error) {\n\treturn clientPostURL(dst, url, postArgs, c)\n}\n\n// DoTimeout performs the given request and waits for response during\n// the given timeout duration.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// Client determines the server to be requested in the following order:\n//\n//   - from RequestURI if it contains full url with scheme and host;\n//   - from Host header otherwise.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrTimeout is returned if the response wasn't returned during\n// the given timeout.\n//\n// ErrNoFreeConns is returned if all Client.MaxConnsPerHost connections\n// to the requested host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\n//\n// Warning: DoTimeout does not terminate the request itself. The request will\n// continue in the background and the response will be discarded.\n// If requests take too long and the connection pool gets filled up please\n// try setting a ReadTimeout.\nfunc (c *Client) DoTimeout(req *Request, resp *Response, timeout time.Duration) error {\n\treturn clientDoTimeout(req, resp, timeout, c)\n}\n\n// DoDeadline performs the given request and waits for response until\n// the given deadline.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// Client determines the server to be requested in the following order:\n//\n//   - from RequestURI if it contains full url with scheme and host;\n//   - from Host header otherwise.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrTimeout is returned if the response wasn't returned until\n// the given deadline.\n//\n// ErrNoFreeConns is returned if all Client.MaxConnsPerHost connections\n// to the requested host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc (c *Client) DoDeadline(req *Request, resp *Response, deadline time.Time) error {\n\treturn clientDoDeadline(req, resp, deadline, c)\n}\n\n// DoRedirects performs the given http request and fills the given http response,\n// following up to maxRedirectsCount redirects. When the redirect count exceeds\n// maxRedirectsCount, ErrTooManyRedirects is returned.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// Client determines the server to be requested in the following order:\n//\n//   - from RequestURI if it contains full url with scheme and host;\n//   - from Host header otherwise.\n//\n// Response is ignored if resp is nil.\n//\n// ErrNoFreeConns is returned if all DefaultMaxConnsPerHost connections\n// to the requested host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc (c *Client) DoRedirects(req *Request, resp *Response, maxRedirectsCount int) error {\n\t_, _, err := doRequestFollowRedirects(req, resp, req.URI().String(), maxRedirectsCount, c)\n\treturn err\n}\n\n// Do performs the given http request and fills the given http response.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// Client determines the server to be requested in the following order:\n//\n//   - from RequestURI if it contains full url with scheme and host;\n//   - from Host header otherwise.\n//\n// Response is ignored if resp is nil.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// ErrNoFreeConns is returned if all Client.MaxConnsPerHost connections\n// to the requested host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc (c *Client) Do(req *Request, resp *Response) error {\n\turi := req.URI()\n\tif uri == nil {\n\t\treturn ErrorInvalidURI\n\t}\n\n\thost := uri.Host()\n\n\tisTLS := false\n\tscheme := uri.Scheme()\n\tif bytes.Equal(scheme, strHTTPS) {\n\t\tisTLS = true\n\t} else if !bytes.Equal(scheme, strHTTP) {\n\t\treturn fmt.Errorf(\"unsupported protocol %q. http and https are supported\", scheme)\n\t}\n\n\tstartCleaner := false\n\n\tc.mLock.Lock()\n\tm := c.m\n\tif isTLS {\n\t\tm = c.ms\n\t}\n\tif m == nil {\n\t\tm = make(map[string]*HostClient)\n\t\tif isTLS {\n\t\t\tc.ms = m\n\t\t} else {\n\t\t\tc.m = m\n\t\t}\n\t}\n\thc := m[string(host)]\n\tif hc == nil {\n\t\thc = &HostClient{\n\t\t\tAddr:                          addMissingPort(string(host), isTLS),\n\t\t\tName:                          c.Name,\n\t\t\tNoDefaultUserAgentHeader:      c.NoDefaultUserAgentHeader,\n\t\t\tDial:                          c.Dial,\n\t\t\tDialDualStack:                 c.DialDualStack,\n\t\t\tIsTLS:                         isTLS,\n\t\t\tTLSConfig:                     c.TLSConfig,\n\t\t\tMaxConns:                      c.MaxConnsPerHost,\n\t\t\tMaxIdleConnDuration:           c.MaxIdleConnDuration,\n\t\t\tMaxConnDuration:               c.MaxConnDuration,\n\t\t\tMaxIdemponentCallAttempts:     c.MaxIdemponentCallAttempts,\n\t\t\tReadBufferSize:                c.ReadBufferSize,\n\t\t\tWriteBufferSize:               c.WriteBufferSize,\n\t\t\tReadTimeout:                   c.ReadTimeout,\n\t\t\tWriteTimeout:                  c.WriteTimeout,\n\t\t\tMaxResponseBodySize:           c.MaxResponseBodySize,\n\t\t\tDisableHeaderNamesNormalizing: c.DisableHeaderNamesNormalizing,\n\t\t\tDisablePathNormalizing:        c.DisablePathNormalizing,\n\t\t\tMaxConnWaitTimeout:            c.MaxConnWaitTimeout,\n\t\t\tRetryIf:                       c.RetryIf,\n\t\t}\n\t\tm[string(host)] = hc\n\t\tif len(m) == 1 {\n\t\t\tstartCleaner = true\n\t\t}\n\t}\n\tc.mLock.Unlock()\n\n\tif startCleaner {\n\t\tgo c.mCleaner()\n\t}\n\n\treturn hc.Do(req, resp)\n}\n\n// CloseIdleConnections closes any connections which were previously\n// connected from previous requests but are now sitting idle in a\n// \"keep-alive\" state. It does not interrupt any connections currently\n// in use.\nfunc (c *Client) CloseIdleConnections() {\n\tc.mLock.Lock()\n\tfor _, v := range c.m {\n\t\tv.CloseIdleConnections()\n\t}\n\tc.mLock.Unlock()\n}\n\nfunc (c *Client) mCleaner() {\n\tmustStop := false\n\n\tfor {\n\t\tc.mLock.Lock()\n\t\tfor k, v := range c.m {\n\t\t\tv.connsLock.Lock()\n\t\t\tshouldRemove := v.connsCount == 0\n\t\t\tv.connsLock.Unlock()\n\n\t\t\tif shouldRemove {\n\t\t\t\tdelete(c.m, k)\n\t\t\t}\n\t\t}\n\t\tif len(c.m) == 0 {\n\t\t\tmustStop = true\n\t\t}\n\t\tc.mLock.Unlock()\n\n\t\tif mustStop {\n\t\t\tbreak\n\t\t}\n\t\ttime.Sleep(10 * time.Second)\n\t}\n}\n\n// DefaultMaxConnsPerHost is the maximum number of concurrent connections\n// http client may establish per host by default (i.e. if\n// Client.MaxConnsPerHost isn't set).\nconst DefaultMaxConnsPerHost = 512\n\n// DefaultMaxIdleConnDuration is the default duration before idle keep-alive\n// connection is closed.\nconst DefaultMaxIdleConnDuration = 10 * time.Second\n\n// DefaultMaxIdemponentCallAttempts is the default idempotent calls attempts count.\nconst DefaultMaxIdemponentCallAttempts = 5\n\n// DialFunc must establish connection to addr.\n//\n// There is no need in establishing TLS (SSL) connection for https.\n// The client automatically converts connection to TLS\n// if HostClient.IsTLS is set.\n//\n// TCP address passed to DialFunc always contains host and port.\n// Example TCP addr values:\n//\n//   - foobar.com:80\n//   - foobar.com:443\n//   - foobar.com:8080\ntype DialFunc func(addr string) (net.Conn, error)\n\n// RetryIfFunc signature of retry if function\n//\n// Request argument passed to RetryIfFunc, if there are any request errors.\ntype RetryIfFunc func(request *Request) bool\n\n// HostClient balances http requests among hosts listed in Addr.\n//\n// HostClient may be used for balancing load among multiple upstream hosts.\n// While multiple addresses passed to HostClient.Addr may be used for balancing\n// load among them, it would be better using LBClient instead, since HostClient\n// may unevenly balance load among upstream hosts.\n//\n// It is forbidden copying HostClient instances. Create new instances instead.\n//\n// It is safe calling HostClient methods from concurrently running goroutines.\ntype HostClient struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\t// Comma-separated list of upstream HTTP server host addresses,\n\t// which are passed to Dial in a round-robin manner.\n\t//\n\t// Each address may contain port if default dialer is used.\n\t// For example,\n\t//\n\t//    - foobar.com:80\n\t//    - foobar.com:443\n\t//    - foobar.com:8080\n\tAddr string\n\n\t// Client name. Used in User-Agent request header.\n\tName string\n\n\t// NoDefaultUserAgentHeader when set to true, causes the default\n\t// User-Agent header to be excluded from the Request.\n\tNoDefaultUserAgentHeader bool\n\n\t// Callback for establishing new connection to the host.\n\t//\n\t// Default Dial is used if not set.\n\tDial DialFunc\n\n\t// Attempt to connect to both ipv4 and ipv6 host addresses\n\t// if set to true.\n\t//\n\t// This option is used only if default TCP dialer is used,\n\t// i.e. if Dial is blank.\n\t//\n\t// By default client connects only to ipv4 addresses,\n\t// since unfortunately ipv6 remains broken in many networks worldwide :)\n\tDialDualStack bool\n\n\t// Whether to use TLS (aka SSL or HTTPS) for host connections.\n\tIsTLS bool\n\n\t// Optional TLS config.\n\tTLSConfig *tls.Config\n\n\t// Maximum number of connections which may be established to all hosts\n\t// listed in Addr.\n\t//\n\t// You can change this value while the HostClient is being used\n\t// using HostClient.SetMaxConns(value)\n\t//\n\t// DefaultMaxConnsPerHost is used if not set.\n\tMaxConns int\n\n\t// Keep-alive connections are closed after this duration.\n\t//\n\t// By default connection duration is unlimited.\n\tMaxConnDuration time.Duration\n\n\t// Idle keep-alive connections are closed after this duration.\n\t//\n\t// By default idle connections are closed\n\t// after DefaultMaxIdleConnDuration.\n\tMaxIdleConnDuration time.Duration\n\n\t// Maximum number of attempts for idempotent calls\n\t//\n\t// DefaultMaxIdemponentCallAttempts is used if not set.\n\tMaxIdemponentCallAttempts int\n\n\t// Per-connection buffer size for responses' reading.\n\t// This also limits the maximum header size.\n\t//\n\t// Default buffer size is used if 0.\n\tReadBufferSize int\n\n\t// Per-connection buffer size for requests' writing.\n\t//\n\t// Default buffer size is used if 0.\n\tWriteBufferSize int\n\n\t// Maximum duration for full response reading (including body).\n\t//\n\t// By default response read timeout is unlimited.\n\tReadTimeout time.Duration\n\n\t// Maximum duration for full request writing (including body).\n\t//\n\t// By default request write timeout is unlimited.\n\tWriteTimeout time.Duration\n\n\t// Maximum response body size.\n\t//\n\t// The client returns ErrBodyTooLarge if this limit is greater than 0\n\t// and response body is greater than the limit.\n\t//\n\t// By default response body size is unlimited.\n\tMaxResponseBodySize int\n\n\t// Header names are passed as-is without normalization\n\t// if this option is set.\n\t//\n\t// Disabled header names' normalization may be useful only for proxying\n\t// responses to other clients expecting case-sensitive\n\t// header names. See https://github.com/valyala/fasthttp/issues/57\n\t// for details.\n\t//\n\t// By default request and response header names are normalized, i.e.\n\t// The first letter and the first letters following dashes\n\t// are uppercased, while all the other letters are lowercased.\n\t// Examples:\n\t//\n\t//     * HOST -> Host\n\t//     * content-type -> Content-Type\n\t//     * cONTENT-lenGTH -> Content-Length\n\tDisableHeaderNamesNormalizing bool\n\n\t// Path values are sent as-is without normalization\n\t//\n\t// Disabled path normalization may be useful for proxying incoming requests\n\t// to servers that are expecting paths to be forwarded as-is.\n\t//\n\t// By default path values are normalized, i.e.\n\t// extra slashes are removed, special characters are encoded.\n\tDisablePathNormalizing bool\n\n\t// Maximum duration for waiting for a free connection.\n\t//\n\t// By default will not waiting, return ErrNoFreeConns immediately\n\tMaxConnWaitTimeout time.Duration\n\n\t// RetryIf controls whether a retry should be attempted after an error.\n\t//\n\t// By default will use isIdempotent function\n\tRetryIf RetryIfFunc\n\n\tclientName  atomic.Value\n\tlastUseTime uint32\n\n\tconnsLock  sync.Mutex\n\tconnsCount int\n\tconns      []*clientConn\n\tconnsWait  *wantConnQueue\n\n\taddrsLock sync.Mutex\n\taddrs     []string\n\taddrIdx   uint32\n\n\ttlsConfigMap     map[string]*tls.Config\n\ttlsConfigMapLock sync.Mutex\n\n\treaderPool sync.Pool\n\twriterPool sync.Pool\n\n\tpendingRequests int32\n\n\tconnsCleanerRun bool\n}\n\ntype clientConn struct {\n\tc net.Conn\n\n\tcreatedTime time.Time\n\tlastUseTime time.Time\n}\n\nvar startTimeUnix = time.Now().Unix()\n\n// LastUseTime returns time the client was last used\nfunc (c *HostClient) LastUseTime() time.Time {\n\tn := atomic.LoadUint32(&c.lastUseTime)\n\treturn time.Unix(startTimeUnix+int64(n), 0)\n}\n\n// Get returns the status code and body of url.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\nfunc (c *HostClient) Get(dst []byte, url string) (statusCode int, body []byte, err error) {\n\treturn clientGetURL(dst, url, c)\n}\n\n// GetTimeout returns the status code and body of url.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\n//\n// ErrTimeout error is returned if url contents couldn't be fetched\n// during the given timeout.\nfunc (c *HostClient) GetTimeout(dst []byte, url string, timeout time.Duration) (statusCode int, body []byte, err error) {\n\treturn clientGetURLTimeout(dst, url, timeout, c)\n}\n\n// GetDeadline returns the status code and body of url.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\n//\n// ErrTimeout error is returned if url contents couldn't be fetched\n// until the given deadline.\nfunc (c *HostClient) GetDeadline(dst []byte, url string, deadline time.Time) (statusCode int, body []byte, err error) {\n\treturn clientGetURLDeadline(dst, url, deadline, c)\n}\n\n// Post sends POST request to the given url with the given POST arguments.\n//\n// The contents of dst will be replaced by the body and returned, if the dst\n// is too small a new slice will be allocated.\n//\n// The function follows redirects. Use Do* for manually handling redirects.\n//\n// Empty POST body is sent if postArgs is nil.\nfunc (c *HostClient) Post(dst []byte, url string, postArgs *Args) (statusCode int, body []byte, err error) {\n\treturn clientPostURL(dst, url, postArgs, c)\n}\n\ntype clientDoer interface {\n\tDo(req *Request, resp *Response) error\n}\n\nfunc clientGetURL(dst []byte, url string, c clientDoer) (statusCode int, body []byte, err error) {\n\treq := AcquireRequest()\n\n\tstatusCode, body, err = doRequestFollowRedirectsBuffer(req, dst, url, c)\n\n\tReleaseRequest(req)\n\treturn statusCode, body, err\n}\n\nfunc clientGetURLTimeout(dst []byte, url string, timeout time.Duration, c clientDoer) (statusCode int, body []byte, err error) {\n\tdeadline := time.Now().Add(timeout)\n\treturn clientGetURLDeadline(dst, url, deadline, c)\n}\n\ntype clientURLResponse struct {\n\tstatusCode int\n\tbody       []byte\n\terr        error\n}\n\nfunc clientGetURLDeadline(dst []byte, url string, deadline time.Time, c clientDoer) (statusCode int, body []byte, err error) {\n\ttimeout := -time.Since(deadline)\n\tif timeout <= 0 {\n\t\treturn 0, dst, ErrTimeout\n\t}\n\n\tvar ch chan clientURLResponse\n\tchv := clientURLResponseChPool.Get()\n\tif chv == nil {\n\t\tchv = make(chan clientURLResponse, 1)\n\t}\n\tch = chv.(chan clientURLResponse)\n\n\treq := AcquireRequest()\n\n\t// Note that the request continues execution on ErrTimeout until\n\t// client-specific ReadTimeout exceeds. This helps limiting load\n\t// on slow hosts by MaxConns* concurrent requests.\n\t//\n\t// Without this 'hack' the load on slow host could exceed MaxConns*\n\t// concurrent requests, since timed out requests on client side\n\t// usually continue execution on the host.\n\tgo func() {\n\t\tstatusCodeCopy, bodyCopy, errCopy := doRequestFollowRedirectsBuffer(req, dst, url, c)\n\t\tch <- clientURLResponse{\n\t\t\tstatusCode: statusCodeCopy,\n\t\t\tbody:       bodyCopy,\n\t\t\terr:        errCopy,\n\t\t}\n\t}()\n\n\ttc := AcquireTimer(timeout)\n\tselect {\n\tcase resp := <-ch:\n\t\tReleaseRequest(req)\n\t\tclientURLResponseChPool.Put(chv)\n\t\tstatusCode = resp.statusCode\n\t\tbody = resp.body\n\t\terr = resp.err\n\tcase <-tc.C:\n\t\tbody = dst\n\t\terr = ErrTimeout\n\t}\n\tReleaseTimer(tc)\n\n\treturn statusCode, body, err\n}\n\nvar clientURLResponseChPool sync.Pool\n\nfunc clientPostURL(dst []byte, url string, postArgs *Args, c clientDoer) (statusCode int, body []byte, err error) {\n\treq := AcquireRequest()\n\treq.Header.SetMethodBytes(strPost)\n\treq.Header.SetContentTypeBytes(strPostArgsContentType)\n\tif postArgs != nil {\n\t\tif _, err := postArgs.WriteTo(req.BodyWriter()); err != nil {\n\t\t\treturn 0, nil, err\n\t\t}\n\t}\n\n\tstatusCode, body, err = doRequestFollowRedirectsBuffer(req, dst, url, c)\n\n\tReleaseRequest(req)\n\treturn statusCode, body, err\n}\n\nvar (\n\t// ErrMissingLocation is returned by clients when the Location header is missing on\n\t// an HTTP response with a redirect status code.\n\tErrMissingLocation = errors.New(\"missing Location header for http redirect\")\n\t// ErrTooManyRedirects is returned by clients when the number of redirects followed\n\t// exceed the max count.\n\tErrTooManyRedirects = errors.New(\"too many redirects detected when doing the request\")\n\n\t// HostClients are only able to follow redirects to the same protocol.\n\tErrHostClientRedirectToDifferentScheme = errors.New(\"HostClient can't follow redirects to a different protocol, please use Client instead\")\n)\n\nconst defaultMaxRedirectsCount = 16\n\nfunc doRequestFollowRedirectsBuffer(req *Request, dst []byte, url string, c clientDoer) (statusCode int, body []byte, err error) {\n\tresp := AcquireResponse()\n\tbodyBuf := resp.bodyBuffer()\n\tresp.keepBodyBuffer = true\n\toldBody := bodyBuf.B\n\tbodyBuf.B = dst\n\n\tstatusCode, _, err = doRequestFollowRedirects(req, resp, url, defaultMaxRedirectsCount, c)\n\n\tbody = bodyBuf.B\n\tbodyBuf.B = oldBody\n\tresp.keepBodyBuffer = false\n\tReleaseResponse(resp)\n\n\treturn statusCode, body, err\n}\n\nfunc doRequestFollowRedirects(req *Request, resp *Response, url string, maxRedirectsCount int, c clientDoer) (statusCode int, body []byte, err error) {\n\tredirectsCount := 0\n\n\tfor {\n\t\treq.SetRequestURI(url)\n\t\tif err := req.parseURI(); err != nil {\n\t\t\treturn 0, nil, err\n\t\t}\n\n\t\tif err = c.Do(req, resp); err != nil {\n\t\t\tbreak\n\t\t}\n\t\tstatusCode = resp.Header.StatusCode()\n\t\tif !StatusCodeIsRedirect(statusCode) {\n\t\t\tbreak\n\t\t}\n\n\t\tredirectsCount++\n\t\tif redirectsCount > maxRedirectsCount {\n\t\t\terr = ErrTooManyRedirects\n\t\t\tbreak\n\t\t}\n\t\tlocation := resp.Header.peek(strLocation)\n\t\tif len(location) == 0 {\n\t\t\terr = ErrMissingLocation\n\t\t\tbreak\n\t\t}\n\t\turl = getRedirectURL(url, location)\n\t}\n\n\treturn statusCode, body, err\n}\n\nfunc getRedirectURL(baseURL string, location []byte) string {\n\tu := AcquireURI()\n\tu.Update(baseURL)\n\tu.UpdateBytes(location)\n\tredirectURL := u.String()\n\tReleaseURI(u)\n\treturn redirectURL\n}\n\n// StatusCodeIsRedirect returns true if the status code indicates a redirect.\nfunc StatusCodeIsRedirect(statusCode int) bool {\n\treturn statusCode == StatusMovedPermanently ||\n\t\tstatusCode == StatusFound ||\n\t\tstatusCode == StatusSeeOther ||\n\t\tstatusCode == StatusTemporaryRedirect ||\n\t\tstatusCode == StatusPermanentRedirect\n}\n\nvar (\n\trequestPool  sync.Pool\n\tresponsePool sync.Pool\n)\n\n// AcquireRequest returns an empty Request instance from request pool.\n//\n// The returned Request instance may be passed to ReleaseRequest when it is\n// no longer needed. This allows Request recycling, reduces GC pressure\n// and usually improves performance.\nfunc AcquireRequest() *Request {\n\tv := requestPool.Get()\n\tif v == nil {\n\t\treturn &Request{}\n\t}\n\treturn v.(*Request)\n}\n\n// ReleaseRequest returns req acquired via AcquireRequest to request pool.\n//\n// It is forbidden accessing req and/or its' members after returning\n// it to request pool.\nfunc ReleaseRequest(req *Request) {\n\treq.Reset()\n\trequestPool.Put(req)\n}\n\n// AcquireResponse returns an empty Response instance from response pool.\n//\n// The returned Response instance may be passed to ReleaseResponse when it is\n// no longer needed. This allows Response recycling, reduces GC pressure\n// and usually improves performance.\nfunc AcquireResponse() *Response {\n\tv := responsePool.Get()\n\tif v == nil {\n\t\treturn &Response{}\n\t}\n\treturn v.(*Response)\n}\n\n// ReleaseResponse return resp acquired via AcquireResponse to response pool.\n//\n// It is forbidden accessing resp and/or its' members after returning\n// it to response pool.\nfunc ReleaseResponse(resp *Response) {\n\tresp.Reset()\n\tresponsePool.Put(resp)\n}\n\n// DoTimeout performs the given request and waits for response during\n// the given timeout duration.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrTimeout is returned if the response wasn't returned during\n// the given timeout.\n//\n// ErrNoFreeConns is returned if all HostClient.MaxConns connections\n// to the host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\n//\n// Warning: DoTimeout does not terminate the request itself. The request will\n// continue in the background and the response will be discarded.\n// If requests take too long and the connection pool gets filled up please\n// try setting a ReadTimeout.\nfunc (c *HostClient) DoTimeout(req *Request, resp *Response, timeout time.Duration) error {\n\treturn clientDoTimeout(req, resp, timeout, c)\n}\n\n// DoDeadline performs the given request and waits for response until\n// the given deadline.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrTimeout is returned if the response wasn't returned until\n// the given deadline.\n//\n// ErrNoFreeConns is returned if all HostClient.MaxConns connections\n// to the host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc (c *HostClient) DoDeadline(req *Request, resp *Response, deadline time.Time) error {\n\treturn clientDoDeadline(req, resp, deadline, c)\n}\n\n// DoRedirects performs the given http request and fills the given http response,\n// following up to maxRedirectsCount redirects. When the redirect count exceeds\n// maxRedirectsCount, ErrTooManyRedirects is returned.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// Client determines the server to be requested in the following order:\n//\n//   - from RequestURI if it contains full url with scheme and host;\n//   - from Host header otherwise.\n//\n// Response is ignored if resp is nil.\n//\n// ErrNoFreeConns is returned if all DefaultMaxConnsPerHost connections\n// to the requested host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc (c *HostClient) DoRedirects(req *Request, resp *Response, maxRedirectsCount int) error {\n\t_, _, err := doRequestFollowRedirects(req, resp, req.URI().String(), maxRedirectsCount, c)\n\treturn err\n}\n\nfunc clientDoTimeout(req *Request, resp *Response, timeout time.Duration, c clientDoer) error {\n\tdeadline := time.Now().Add(timeout)\n\treturn clientDoDeadline(req, resp, deadline, c)\n}\n\nfunc clientDoDeadline(req *Request, resp *Response, deadline time.Time, c clientDoer) error {\n\ttimeout := -time.Since(deadline)\n\tif timeout <= 0 {\n\t\treturn ErrTimeout\n\t}\n\n\tvar ch chan error\n\tchv := errorChPool.Get()\n\tif chv == nil {\n\t\tchv = make(chan error, 1)\n\t}\n\tch = chv.(chan error)\n\n\t// Make req and resp copies, since on timeout they no longer\n\t// may be accessed.\n\treqCopy := AcquireRequest()\n\treq.copyToSkipBody(reqCopy)\n\tswapRequestBody(req, reqCopy)\n\trespCopy := AcquireResponse()\n\tif resp != nil {\n\t\t// Not calling resp.copyToSkipBody(respCopy) here to avoid\n\t\t// unexpected messing with headers\n\t\trespCopy.SkipBody = resp.SkipBody\n\t}\n\n\t// Note that the request continues execution on ErrTimeout until\n\t// client-specific ReadTimeout exceeds. This helps limiting load\n\t// on slow hosts by MaxConns* concurrent requests.\n\t//\n\t// Without this 'hack' the load on slow host could exceed MaxConns*\n\t// concurrent requests, since timed out requests on client side\n\t// usually continue execution on the host.\n\n\tvar mu sync.Mutex\n\tvar timedout bool\n\n\tgo func() {\n\t\treqCopy.timeout = timeout\n\t\terrDo := c.Do(reqCopy, respCopy)\n\t\tmu.Lock()\n\t\t{\n\t\t\tif !timedout {\n\t\t\t\tif resp != nil {\n\t\t\t\t\trespCopy.copyToSkipBody(resp)\n\t\t\t\t\tswapResponseBody(resp, respCopy)\n\t\t\t\t}\n\t\t\t\tswapRequestBody(reqCopy, req)\n\t\t\t\tch <- errDo\n\t\t\t}\n\t\t}\n\t\tmu.Unlock()\n\n\t\tReleaseResponse(respCopy)\n\t\tReleaseRequest(reqCopy)\n\t}()\n\n\ttc := AcquireTimer(timeout)\n\tvar err error\n\tselect {\n\tcase err = <-ch:\n\tcase <-tc.C:\n\t\tmu.Lock()\n\t\t{\n\t\t\ttimedout = true\n\t\t\terr = ErrTimeout\n\t\t}\n\t\tmu.Unlock()\n\t}\n\tReleaseTimer(tc)\n\n\tselect {\n\tcase <-ch:\n\tdefault:\n\t}\n\terrorChPool.Put(chv)\n\n\treturn err\n}\n\nvar errorChPool sync.Pool\n\n// Do performs the given http request and sets the corresponding response.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrNoFreeConns is returned if all HostClient.MaxConns connections\n// to the host are busy.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc (c *HostClient) Do(req *Request, resp *Response) error {\n\tvar err error\n\tvar retry bool\n\tmaxAttempts := c.MaxIdemponentCallAttempts\n\tif maxAttempts <= 0 {\n\t\tmaxAttempts = DefaultMaxIdemponentCallAttempts\n\t}\n\tisRequestRetryable := isIdempotent\n\tif c.RetryIf != nil {\n\t\tisRequestRetryable = c.RetryIf\n\t}\n\tattempts := 0\n\thasBodyStream := req.IsBodyStream()\n\n\tatomic.AddInt32(&c.pendingRequests, 1)\n\tfor {\n\t\tretry, err = c.do(req, resp)\n\t\tif err == nil || !retry {\n\t\t\tbreak\n\t\t}\n\n\t\tif hasBodyStream {\n\t\t\tbreak\n\t\t}\n\t\tif !isRequestRetryable(req) {\n\t\t\t// Retry non-idempotent requests if the server closes\n\t\t\t// the connection before sending the response.\n\t\t\t//\n\t\t\t// This case is possible if the server closes the idle\n\t\t\t// keep-alive connection on timeout.\n\t\t\t//\n\t\t\t// Apache and nginx usually do this.\n\t\t\tif err != io.EOF {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tattempts++\n\t\tif attempts >= maxAttempts {\n\t\t\tbreak\n\t\t}\n\t}\n\tatomic.AddInt32(&c.pendingRequests, -1)\n\n\tif err == io.EOF {\n\t\terr = ErrConnectionClosed\n\t}\n\treturn err\n}\n\n// PendingRequests returns the current number of requests the client\n// is executing.\n//\n// This function may be used for balancing load among multiple HostClient\n// instances.\nfunc (c *HostClient) PendingRequests() int {\n\treturn int(atomic.LoadInt32(&c.pendingRequests))\n}\n\nfunc isIdempotent(req *Request) bool {\n\treturn req.Header.IsGet() || req.Header.IsHead() || req.Header.IsPut()\n}\n\nfunc (c *HostClient) do(req *Request, resp *Response) (bool, error) {\n\tnilResp := false\n\tif resp == nil {\n\t\tnilResp = true\n\t\tresp = AcquireResponse()\n\t}\n\n\tok, err := c.doNonNilReqResp(req, resp)\n\n\tif nilResp {\n\t\tReleaseResponse(resp)\n\t}\n\n\treturn ok, err\n}\n\nfunc (c *HostClient) doNonNilReqResp(req *Request, resp *Response) (bool, error) {\n\tif req == nil {\n\t\tpanic(\"BUG: req cannot be nil\")\n\t}\n\tif resp == nil {\n\t\tpanic(\"BUG: resp cannot be nil\")\n\t}\n\n\tif c.IsTLS != bytes.Equal(req.uri.Scheme(), strHTTPS) {\n\t\treturn false, ErrHostClientRedirectToDifferentScheme\n\t}\n\n\tatomic.StoreUint32(&c.lastUseTime, uint32(time.Now().Unix()-startTimeUnix))\n\n\t// Free up resources occupied by response before sending the request,\n\t// so the GC may reclaim these resources (e.g. response body).\n\n\t// backing up SkipBody in case it was set explicitly\n\tcustomSkipBody := resp.SkipBody\n\tresp.Reset()\n\tresp.SkipBody = customSkipBody\n\n\tif c.DisablePathNormalizing {\n\t\treq.URI().DisablePathNormalizing = true\n\t}\n\n\tcc, err := c.acquireConn(req.timeout)\n\tif err != nil {\n\t\treturn false, err\n\t}\n\tconn := cc.c\n\n\tresp.parseNetConn(conn)\n\n\tif c.WriteTimeout > 0 {\n\t\t// Set Deadline every time, since golang has fixed the performance issue\n\t\t// See https://github.com/golang/go/issues/15133#issuecomment-271571395 for details\n\t\tcurrentTime := time.Now()\n\t\tif err = conn.SetWriteDeadline(currentTime.Add(c.WriteTimeout)); err != nil {\n\t\t\tc.closeConn(cc)\n\t\t\treturn true, err\n\t\t}\n\t}\n\n\tresetConnection := false\n\tif c.MaxConnDuration > 0 && time.Since(cc.createdTime) > c.MaxConnDuration && !req.ConnectionClose() {\n\t\treq.SetConnectionClose()\n\t\tresetConnection = true\n\t}\n\n\tuserAgentOld := req.Header.UserAgent()\n\tif len(userAgentOld) == 0 {\n\t\treq.Header.userAgent = append(req.Header.userAgent[:0], c.getClientName()...)\n\t}\n\tbw := c.acquireWriter(conn)\n\terr = req.Write(bw)\n\n\tif resetConnection {\n\t\treq.Header.ResetConnectionClose()\n\t}\n\n\tif err == nil {\n\t\terr = bw.Flush()\n\t}\n\tif err != nil {\n\t\tc.releaseWriter(bw)\n\t\tc.closeConn(cc)\n\t\treturn true, err\n\t}\n\tc.releaseWriter(bw)\n\n\tif c.ReadTimeout > 0 {\n\t\t// Set Deadline every time, since golang has fixed the performance issue\n\t\t// See https://github.com/golang/go/issues/15133#issuecomment-271571395 for details\n\t\tcurrentTime := time.Now()\n\t\tif err = conn.SetReadDeadline(currentTime.Add(c.ReadTimeout)); err != nil {\n\t\t\tc.closeConn(cc)\n\t\t\treturn true, err\n\t\t}\n\t}\n\n\tif customSkipBody || req.Header.IsHead() {\n\t\tresp.SkipBody = true\n\t}\n\tif c.DisableHeaderNamesNormalizing {\n\t\tresp.Header.DisableNormalizing()\n\t}\n\n\tbr := c.acquireReader(conn)\n\tif err = resp.ReadLimitBody(br, c.MaxResponseBodySize); err != nil {\n\t\tc.releaseReader(br)\n\t\tc.closeConn(cc)\n\t\t// Don't retry in case of ErrBodyTooLarge since we will just get the same again.\n\t\tretry := err != ErrBodyTooLarge\n\t\treturn retry, err\n\t}\n\tc.releaseReader(br)\n\n\tif resetConnection || req.ConnectionClose() || resp.ConnectionClose() {\n\t\tc.closeConn(cc)\n\t} else {\n\t\tc.releaseConn(cc)\n\t}\n\n\treturn false, err\n}\n\nvar (\n\t// ErrNoFreeConns is returned when no free connections available\n\t// to the given host.\n\t//\n\t// Increase the allowed number of connections per host if you\n\t// see this error.\n\tErrNoFreeConns = errors.New(\"no free connections available to host\")\n\n\t// ErrConnectionClosed may be returned from client methods if the server\n\t// closes connection before returning the first response byte.\n\t//\n\t// If you see this error, then either fix the server by returning\n\t// 'Connection: close' response header before closing the connection\n\t// or add 'Connection: close' request header before sending requests\n\t// to broken server.\n\tErrConnectionClosed = errors.New(\"the server closed connection before returning the first response byte. \" +\n\t\t\"Make sure the server returns 'Connection: close' response header before closing the connection\")\n)\n\ntype timeoutError struct {\n}\n\nfunc (e *timeoutError) Error() string {\n\treturn \"timeout\"\n}\n\n// Only implement the Timeout() function of the net.Error interface.\n// This allows for checks like:\n//\n//   if x, ok := err.(interface{ Timeout() bool }); ok && x.Timeout() {\nfunc (e *timeoutError) Timeout() bool {\n\treturn true\n}\n\nvar (\n\t// ErrTimeout is returned from timed out calls.\n\tErrTimeout = &timeoutError{}\n)\n\n// SetMaxConns sets up the maximum number of connections which may be established to all hosts listed in Addr.\nfunc (c *HostClient) SetMaxConns(newMaxConns int) {\n\tc.connsLock.Lock()\n\tc.MaxConns = newMaxConns\n\tc.connsLock.Unlock()\n}\n\nfunc (c *HostClient) acquireConn(reqTimeout time.Duration) (cc *clientConn, err error) {\n\tcreateConn := false\n\tstartCleaner := false\n\n\tvar n int\n\tc.connsLock.Lock()\n\tn = len(c.conns)\n\tif n == 0 {\n\t\tmaxConns := c.MaxConns\n\t\tif maxConns <= 0 {\n\t\t\tmaxConns = DefaultMaxConnsPerHost\n\t\t}\n\t\tif c.connsCount < maxConns {\n\t\t\tc.connsCount++\n\t\t\tcreateConn = true\n\t\t\tif !c.connsCleanerRun {\n\t\t\t\tstartCleaner = true\n\t\t\t\tc.connsCleanerRun = true\n\t\t\t}\n\t\t}\n\t} else {\n\t\tn--\n\t\tcc = c.conns[n]\n\t\tc.conns[n] = nil\n\t\tc.conns = c.conns[:n]\n\t}\n\tc.connsLock.Unlock()\n\n\tif cc != nil {\n\t\treturn cc, nil\n\t}\n\tif !createConn {\n\t\tif c.MaxConnWaitTimeout <= 0 {\n\t\t\treturn nil, ErrNoFreeConns\n\t\t}\n\n\t\t// reqTimeout    c.MaxConnWaitTimeout   wait duration\n\t\t//     d1                 d2            min(d1, d2)\n\t\t//  0(not set)            d2            d2\n\t\t//     d1            0(don't wait)      0(don't wait)\n\t\t//  0(not set)            d2            d2\n\t\ttimeout := c.MaxConnWaitTimeout\n\t\ttimeoutOverridden := false\n\t\t// reqTimeout == 0 means not set\n\t\tif reqTimeout > 0 && reqTimeout < timeout {\n\t\t\ttimeout = reqTimeout\n\t\t\ttimeoutOverridden = true\n\t\t}\n\n\t\t// wait for a free connection\n\t\ttc := AcquireTimer(timeout)\n\t\tdefer ReleaseTimer(tc)\n\n\t\tw := &wantConn{\n\t\t\tready: make(chan struct{}, 1),\n\t\t}\n\t\tdefer func() {\n\t\t\tif err != nil {\n\t\t\t\tw.cancel(c, err)\n\t\t\t}\n\t\t}()\n\n\t\tc.queueForIdle(w)\n\n\t\tselect {\n\t\tcase <-w.ready:\n\t\t\treturn w.conn, w.err\n\t\tcase <-tc.C:\n\t\t\tif timeoutOverridden {\n\t\t\t\treturn nil, ErrTimeout\n\t\t\t}\n\t\t\treturn nil, ErrNoFreeConns\n\t\t}\n\t}\n\n\tif startCleaner {\n\t\tgo c.connsCleaner()\n\t}\n\n\tconn, err := c.dialHostHard()\n\tif err != nil {\n\t\tc.decConnsCount()\n\t\treturn nil, err\n\t}\n\tcc = acquireClientConn(conn)\n\n\treturn cc, nil\n}\n\nfunc (c *HostClient) queueForIdle(w *wantConn) {\n\tc.connsLock.Lock()\n\tdefer c.connsLock.Unlock()\n\tif c.connsWait == nil {\n\t\tc.connsWait = &wantConnQueue{}\n\t}\n\tc.connsWait.clearFront()\n\tc.connsWait.pushBack(w)\n}\n\nfunc (c *HostClient) dialConnFor(w *wantConn) {\n\tconn, err := c.dialHostHard()\n\n\tif err != nil {\n\t\tw.tryDeliver(nil, err)\n\t\tc.decConnsCount()\n\t\treturn\n\t}\n\n\tcc := acquireClientConn(conn)\n\tdelivered := w.tryDeliver(cc, nil)\n\tif !delivered {\n\t\t// not delivered, return idle connection\n\t\tc.releaseConn(cc)\n\t}\n}\n\n// CloseIdleConnections closes any connections which were previously\n// connected from previous requests but are now sitting idle in a\n// \"keep-alive\" state. It does not interrupt any connections currently\n// in use.\nfunc (c *HostClient) CloseIdleConnections() {\n\tc.connsLock.Lock()\n\tscratch := append([]*clientConn{}, c.conns...)\n\tfor i := range c.conns {\n\t\tc.conns[i] = nil\n\t}\n\tc.conns = c.conns[:0]\n\tc.connsLock.Unlock()\n\n\tfor _, cc := range scratch {\n\t\tc.closeConn(cc)\n\t}\n}\n\nfunc (c *HostClient) connsCleaner() {\n\tvar (\n\t\tscratch             []*clientConn\n\t\tmaxIdleConnDuration = c.MaxIdleConnDuration\n\t)\n\tif maxIdleConnDuration <= 0 {\n\t\tmaxIdleConnDuration = DefaultMaxIdleConnDuration\n\t}\n\tfor {\n\t\tcurrentTime := time.Now()\n\n\t\t// Determine idle connections to be closed.\n\t\tc.connsLock.Lock()\n\t\tconns := c.conns\n\t\tn := len(conns)\n\t\ti := 0\n\t\tfor i < n && currentTime.Sub(conns[i].lastUseTime) > maxIdleConnDuration {\n\t\t\ti++\n\t\t}\n\t\tsleepFor := maxIdleConnDuration\n\t\tif i < n {\n\t\t\t// + 1 so we actually sleep past the expiration time and not up to it.\n\t\t\t// Otherwise the > check above would still fail.\n\t\t\tsleepFor = maxIdleConnDuration - currentTime.Sub(conns[i].lastUseTime) + 1\n\t\t}\n\t\tscratch = append(scratch[:0], conns[:i]...)\n\t\tif i > 0 {\n\t\t\tm := copy(conns, conns[i:])\n\t\t\tfor i = m; i < n; i++ {\n\t\t\t\tconns[i] = nil\n\t\t\t}\n\t\t\tc.conns = conns[:m]\n\t\t}\n\t\tc.connsLock.Unlock()\n\n\t\t// Close idle connections.\n\t\tfor i, cc := range scratch {\n\t\t\tc.closeConn(cc)\n\t\t\tscratch[i] = nil\n\t\t}\n\n\t\t// Determine whether to stop the connsCleaner.\n\t\tc.connsLock.Lock()\n\t\tmustStop := c.connsCount == 0\n\t\tif mustStop {\n\t\t\tc.connsCleanerRun = false\n\t\t}\n\t\tc.connsLock.Unlock()\n\t\tif mustStop {\n\t\t\tbreak\n\t\t}\n\n\t\ttime.Sleep(sleepFor)\n\t}\n}\n\nfunc (c *HostClient) closeConn(cc *clientConn) {\n\tc.decConnsCount()\n\tcc.c.Close()\n\treleaseClientConn(cc)\n}\n\nfunc (c *HostClient) decConnsCount() {\n\tif c.MaxConnWaitTimeout <= 0 {\n\t\tc.connsLock.Lock()\n\t\tc.connsCount--\n\t\tc.connsLock.Unlock()\n\t\treturn\n\t}\n\n\tc.connsLock.Lock()\n\tdefer c.connsLock.Unlock()\n\tdialed := false\n\tif q := c.connsWait; q != nil && q.len() > 0 {\n\t\tfor q.len() > 0 {\n\t\t\tw := q.popFront()\n\t\t\tif w.waiting() {\n\t\t\t\tgo c.dialConnFor(w)\n\t\t\t\tdialed = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\tif !dialed {\n\t\tc.connsCount--\n\t}\n\n}\n\nfunc acquireClientConn(conn net.Conn) *clientConn {\n\tv := clientConnPool.Get()\n\tif v == nil {\n\t\tv = &clientConn{}\n\t}\n\tcc := v.(*clientConn)\n\tcc.c = conn\n\tcc.createdTime = time.Now()\n\treturn cc\n}\n\nfunc releaseClientConn(cc *clientConn) {\n\t// Reset all fields.\n\t*cc = clientConn{}\n\tclientConnPool.Put(cc)\n}\n\nvar clientConnPool sync.Pool\n\nfunc (c *HostClient) releaseConn(cc *clientConn) {\n\tcc.lastUseTime = time.Now()\n\tif c.MaxConnWaitTimeout <= 0 {\n\t\tc.connsLock.Lock()\n\t\tc.conns = append(c.conns, cc)\n\t\tc.connsLock.Unlock()\n\t\treturn\n\t}\n\n\t// try to deliver an idle connection to a *wantConn\n\tc.connsLock.Lock()\n\tdefer c.connsLock.Unlock()\n\tdelivered := false\n\tif q := c.connsWait; q != nil && q.len() > 0 {\n\t\tfor q.len() > 0 {\n\t\t\tw := q.popFront()\n\t\t\tif w.waiting() {\n\t\t\t\tdelivered = w.tryDeliver(cc, nil)\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\tif !delivered {\n\t\tc.conns = append(c.conns, cc)\n\t}\n}\n\nfunc (c *HostClient) acquireWriter(conn net.Conn) *bufio.Writer {\n\tv := c.writerPool.Get()\n\tif v == nil {\n\t\tn := c.WriteBufferSize\n\t\tif n <= 0 {\n\t\t\tn = defaultWriteBufferSize\n\t\t}\n\t\treturn bufio.NewWriterSize(conn, n)\n\t}\n\tbw := v.(*bufio.Writer)\n\tbw.Reset(conn)\n\treturn bw\n}\n\nfunc (c *HostClient) releaseWriter(bw *bufio.Writer) {\n\tc.writerPool.Put(bw)\n}\n\nfunc (c *HostClient) acquireReader(conn net.Conn) *bufio.Reader {\n\tv := c.readerPool.Get()\n\tif v == nil {\n\t\tn := c.ReadBufferSize\n\t\tif n <= 0 {\n\t\t\tn = defaultReadBufferSize\n\t\t}\n\t\treturn bufio.NewReaderSize(conn, n)\n\t}\n\tbr := v.(*bufio.Reader)\n\tbr.Reset(conn)\n\treturn br\n}\n\nfunc (c *HostClient) releaseReader(br *bufio.Reader) {\n\tc.readerPool.Put(br)\n}\n\nfunc newClientTLSConfig(c *tls.Config, addr string) *tls.Config {\n\tif c == nil {\n\t\tc = &tls.Config{}\n\t} else {\n\t\tc = c.Clone()\n\t}\n\n\tif c.ClientSessionCache == nil {\n\t\tc.ClientSessionCache = tls.NewLRUClientSessionCache(0)\n\t}\n\n\tif len(c.ServerName) == 0 {\n\t\tserverName := tlsServerName(addr)\n\t\tif serverName == \"*\" {\n\t\t\tc.InsecureSkipVerify = true\n\t\t} else {\n\t\t\tc.ServerName = serverName\n\t\t}\n\t}\n\treturn c\n}\n\nfunc tlsServerName(addr string) string {\n\tif !strings.Contains(addr, \":\") {\n\t\treturn addr\n\t}\n\thost, _, err := net.SplitHostPort(addr)\n\tif err != nil {\n\t\treturn \"*\"\n\t}\n\treturn host\n}\n\nfunc (c *HostClient) nextAddr() string {\n\tc.addrsLock.Lock()\n\tif c.addrs == nil {\n\t\tc.addrs = strings.Split(c.Addr, \",\")\n\t}\n\taddr := c.addrs[0]\n\tif len(c.addrs) > 1 {\n\t\taddr = c.addrs[c.addrIdx%uint32(len(c.addrs))]\n\t\tc.addrIdx++\n\t}\n\tc.addrsLock.Unlock()\n\treturn addr\n}\n\nfunc (c *HostClient) dialHostHard() (conn net.Conn, err error) {\n\t// attempt to dial all the available hosts before giving up.\n\n\tc.addrsLock.Lock()\n\tn := len(c.addrs)\n\tc.addrsLock.Unlock()\n\n\tif n == 0 {\n\t\t// It looks like c.addrs isn't initialized yet.\n\t\tn = 1\n\t}\n\n\ttimeout := c.ReadTimeout + c.WriteTimeout\n\tif timeout <= 0 {\n\t\ttimeout = DefaultDialTimeout\n\t}\n\tdeadline := time.Now().Add(timeout)\n\tfor n > 0 {\n\t\taddr := c.nextAddr()\n\t\ttlsConfig := c.cachedTLSConfig(addr)\n\t\tconn, err = dialAddr(addr, c.Dial, c.DialDualStack, c.IsTLS, tlsConfig, c.WriteTimeout)\n\t\tif err == nil {\n\t\t\treturn conn, nil\n\t\t}\n\t\tif time.Since(deadline) >= 0 {\n\t\t\tbreak\n\t\t}\n\t\tn--\n\t}\n\treturn nil, err\n}\n\nfunc (c *HostClient) cachedTLSConfig(addr string) *tls.Config {\n\tif !c.IsTLS {\n\t\treturn nil\n\t}\n\n\tc.tlsConfigMapLock.Lock()\n\tif c.tlsConfigMap == nil {\n\t\tc.tlsConfigMap = make(map[string]*tls.Config)\n\t}\n\tcfg := c.tlsConfigMap[addr]\n\tif cfg == nil {\n\t\tcfg = newClientTLSConfig(c.TLSConfig, addr)\n\t\tc.tlsConfigMap[addr] = cfg\n\t}\n\tc.tlsConfigMapLock.Unlock()\n\n\treturn cfg\n}\n\n// ErrTLSHandshakeTimeout indicates there is a timeout from tls handshake.\nvar ErrTLSHandshakeTimeout = errors.New(\"tls handshake timed out\")\n\nvar timeoutErrorChPool sync.Pool\n\nfunc tlsClientHandshake(rawConn net.Conn, tlsConfig *tls.Config, timeout time.Duration) (net.Conn, error) {\n\ttc := AcquireTimer(timeout)\n\tdefer ReleaseTimer(tc)\n\n\tvar ch chan error\n\tchv := timeoutErrorChPool.Get()\n\tif chv == nil {\n\t\tchv = make(chan error)\n\t}\n\tch = chv.(chan error)\n\tdefer timeoutErrorChPool.Put(chv)\n\n\tconn := tls.Client(rawConn, tlsConfig)\n\n\tgo func() {\n\t\tch <- conn.Handshake()\n\t}()\n\n\tselect {\n\tcase <-tc.C:\n\t\trawConn.Close()\n\t\t<-ch\n\t\treturn nil, ErrTLSHandshakeTimeout\n\tcase err := <-ch:\n\t\tif err != nil {\n\t\t\trawConn.Close()\n\t\t\treturn nil, err\n\t\t}\n\t\treturn conn, nil\n\t}\n}\n\nfunc dialAddr(addr string, dial DialFunc, dialDualStack, isTLS bool, tlsConfig *tls.Config, timeout time.Duration) (net.Conn, error) {\n\tif dial == nil {\n\t\tif dialDualStack {\n\t\t\tdial = DialDualStack\n\t\t} else {\n\t\t\tdial = Dial\n\t\t}\n\t\taddr = addMissingPort(addr, isTLS)\n\t}\n\tconn, err := dial(addr)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif conn == nil {\n\t\tpanic(\"BUG: DialFunc returned (nil, nil)\")\n\t}\n\t_, isTLSAlready := conn.(*tls.Conn)\n\tif isTLS && !isTLSAlready {\n\t\tif timeout == 0 {\n\t\t\treturn tls.Client(conn, tlsConfig), nil\n\t\t}\n\t\treturn tlsClientHandshake(conn, tlsConfig, timeout)\n\t}\n\treturn conn, nil\n}\n\nfunc (c *HostClient) getClientName() []byte {\n\tv := c.clientName.Load()\n\tvar clientName []byte\n\tif v == nil {\n\t\tclientName = []byte(c.Name)\n\t\tif len(clientName) == 0 && !c.NoDefaultUserAgentHeader {\n\t\t\tclientName = defaultUserAgent\n\t\t}\n\t\tc.clientName.Store(clientName)\n\t} else {\n\t\tclientName = v.([]byte)\n\t}\n\treturn clientName\n}\n\nfunc addMissingPort(addr string, isTLS bool) string {\n\tn := strings.Index(addr, \":\")\n\tif n >= 0 {\n\t\treturn addr\n\t}\n\tport := 80\n\tif isTLS {\n\t\tport = 443\n\t}\n\treturn net.JoinHostPort(addr, strconv.Itoa(port))\n}\n\n// A wantConn records state about a wanted connection\n// (that is, an active call to getConn).\n// The conn may be gotten by dialing or by finding an idle connection,\n// or a cancellation may make the conn no longer wanted.\n// These three options are racing against each other and use\n// wantConn to coordinate and agree about the winning outcome.\n//\n// inspired by net/http/transport.go\ntype wantConn struct {\n\tready chan struct{}\n\tmu    sync.Mutex // protects conn, err, close(ready)\n\tconn  *clientConn\n\terr   error\n}\n\n// waiting reports whether w is still waiting for an answer (connection or error).\nfunc (w *wantConn) waiting() bool {\n\tselect {\n\tcase <-w.ready:\n\t\treturn false\n\tdefault:\n\t\treturn true\n\t}\n}\n\n// tryDeliver attempts to deliver conn, err to w and reports whether it succeeded.\nfunc (w *wantConn) tryDeliver(conn *clientConn, err error) bool {\n\tw.mu.Lock()\n\tdefer w.mu.Unlock()\n\n\tif w.conn != nil || w.err != nil {\n\t\treturn false\n\t}\n\tw.conn = conn\n\tw.err = err\n\tif w.conn == nil && w.err == nil {\n\t\tpanic(\"fasthttp: internal error: misuse of tryDeliver\")\n\t}\n\tclose(w.ready)\n\treturn true\n}\n\n// cancel marks w as no longer wanting a result (for example, due to cancellation).\n// If a connection has been delivered already, cancel returns it with c.releaseConn.\nfunc (w *wantConn) cancel(c *HostClient, err error) {\n\tw.mu.Lock()\n\tif w.conn == nil && w.err == nil {\n\t\tclose(w.ready) // catch misbehavior in future delivery\n\t}\n\n\tconn := w.conn\n\tw.conn = nil\n\tw.err = err\n\tw.mu.Unlock()\n\n\tif conn != nil {\n\t\tc.releaseConn(conn)\n\t}\n}\n\n// A wantConnQueue is a queue of wantConns.\n//\n// inspired by net/http/transport.go\ntype wantConnQueue struct {\n\t// This is a queue, not a deque.\n\t// It is split into two stages - head[headPos:] and tail.\n\t// popFront is trivial (headPos++) on the first stage, and\n\t// pushBack is trivial (append) on the second stage.\n\t// If the first stage is empty, popFront can swap the\n\t// first and second stages to remedy the situation.\n\t//\n\t// This two-stage split is analogous to the use of two lists\n\t// in Okasaki's purely functional queue but without the\n\t// overhead of reversing the list when swapping stages.\n\thead    []*wantConn\n\theadPos int\n\ttail    []*wantConn\n}\n\n// len returns the number of items in the queue.\nfunc (q *wantConnQueue) len() int {\n\treturn len(q.head) - q.headPos + len(q.tail)\n}\n\n// pushBack adds w to the back of the queue.\nfunc (q *wantConnQueue) pushBack(w *wantConn) {\n\tq.tail = append(q.tail, w)\n}\n\n// popFront removes and returns the wantConn at the front of the queue.\nfunc (q *wantConnQueue) popFront() *wantConn {\n\tif q.headPos >= len(q.head) {\n\t\tif len(q.tail) == 0 {\n\t\t\treturn nil\n\t\t}\n\t\t// Pick up tail as new head, clear tail.\n\t\tq.head, q.headPos, q.tail = q.tail, 0, q.head[:0]\n\t}\n\n\tw := q.head[q.headPos]\n\tq.head[q.headPos] = nil\n\tq.headPos++\n\treturn w\n}\n\n// peekFront returns the wantConn at the front of the queue without removing it.\nfunc (q *wantConnQueue) peekFront() *wantConn {\n\n\tif q.headPos < len(q.head) {\n\t\treturn q.head[q.headPos]\n\t}\n\tif len(q.tail) > 0 {\n\t\treturn q.tail[0]\n\t}\n\treturn nil\n\n}\n\n// cleanFront pops any wantConns that are no longer waiting from the head of the\n// queue, reporting whether any were popped.\nfunc (q *wantConnQueue) clearFront() (cleaned bool) {\n\tfor {\n\t\tw := q.peekFront()\n\t\tif w == nil || w.waiting() {\n\t\t\treturn cleaned\n\t\t}\n\t\tq.popFront()\n\t\tcleaned = true\n\t}\n}\n\n// PipelineClient pipelines requests over a limited set of concurrent\n// connections to the given Addr.\n//\n// This client may be used in highly loaded HTTP-based RPC systems for reducing\n// context switches and network level overhead.\n// See https://en.wikipedia.org/wiki/HTTP_pipelining for details.\n//\n// It is forbidden copying PipelineClient instances. Create new instances\n// instead.\n//\n// It is safe calling PipelineClient methods from concurrently running\n// goroutines.\ntype PipelineClient struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\t// Address of the host to connect to.\n\tAddr string\n\n\t// The maximum number of concurrent connections to the Addr.\n\t//\n\t// A single connection is used by default.\n\tMaxConns int\n\n\t// The maximum number of pending pipelined requests over\n\t// a single connection to Addr.\n\t//\n\t// DefaultMaxPendingRequests is used by default.\n\tMaxPendingRequests int\n\n\t// The maximum delay before sending pipelined requests as a batch\n\t// to the server.\n\t//\n\t// By default requests are sent immediately to the server.\n\tMaxBatchDelay time.Duration\n\n\t// Callback for connection establishing to the host.\n\t//\n\t// Default Dial is used if not set.\n\tDial DialFunc\n\n\t// Attempt to connect to both ipv4 and ipv6 host addresses\n\t// if set to true.\n\t//\n\t// This option is used only if default TCP dialer is used,\n\t// i.e. if Dial is blank.\n\t//\n\t// By default client connects only to ipv4 addresses,\n\t// since unfortunately ipv6 remains broken in many networks worldwide :)\n\tDialDualStack bool\n\n\t// Whether to use TLS (aka SSL or HTTPS) for host connections.\n\tIsTLS bool\n\n\t// Optional TLS config.\n\tTLSConfig *tls.Config\n\n\t// Idle connection to the host is closed after this duration.\n\t//\n\t// By default idle connection is closed after\n\t// DefaultMaxIdleConnDuration.\n\tMaxIdleConnDuration time.Duration\n\n\t// Buffer size for responses' reading.\n\t// This also limits the maximum header size.\n\t//\n\t// Default buffer size is used if 0.\n\tReadBufferSize int\n\n\t// Buffer size for requests' writing.\n\t//\n\t// Default buffer size is used if 0.\n\tWriteBufferSize int\n\n\t// Maximum duration for full response reading (including body).\n\t//\n\t// By default response read timeout is unlimited.\n\tReadTimeout time.Duration\n\n\t// Maximum duration for full request writing (including body).\n\t//\n\t// By default request write timeout is unlimited.\n\tWriteTimeout time.Duration\n\n\t// Logger for logging client errors.\n\t//\n\t// By default standard logger from log package is used.\n\tLogger Logger\n\n\tconnClients     []*pipelineConnClient\n\tconnClientsLock sync.Mutex\n}\n\ntype pipelineConnClient struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\tAddr                string\n\tMaxPendingRequests  int\n\tMaxBatchDelay       time.Duration\n\tDial                DialFunc\n\tDialDualStack       bool\n\tIsTLS               bool\n\tTLSConfig           *tls.Config\n\tMaxIdleConnDuration time.Duration\n\tReadBufferSize      int\n\tWriteBufferSize     int\n\tReadTimeout         time.Duration\n\tWriteTimeout        time.Duration\n\tLogger              Logger\n\n\tworkPool sync.Pool\n\n\tchLock sync.Mutex\n\tchW    chan *pipelineWork\n\tchR    chan *pipelineWork\n\n\ttlsConfigLock sync.Mutex\n\ttlsConfig     *tls.Config\n}\n\ntype pipelineWork struct {\n\treqCopy  Request\n\trespCopy Response\n\treq      *Request\n\tresp     *Response\n\tt        *time.Timer\n\tdeadline time.Time\n\terr      error\n\tdone     chan struct{}\n}\n\n// DoTimeout performs the given request and waits for response during\n// the given timeout duration.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// The function doesn't follow redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrTimeout is returned if the response wasn't returned during\n// the given timeout.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\n//\n// Warning: DoTimeout does not terminate the request itself. The request will\n// continue in the background and the response will be discarded.\n// If requests take too long and the connection pool gets filled up please\n// try setting a ReadTimeout.\nfunc (c *PipelineClient) DoTimeout(req *Request, resp *Response, timeout time.Duration) error {\n\treturn c.DoDeadline(req, resp, time.Now().Add(timeout))\n}\n\n// DoDeadline performs the given request and waits for response until\n// the given deadline.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// The function doesn't follow redirects.\n//\n// Response is ignored if resp is nil.\n//\n// ErrTimeout is returned if the response wasn't returned until\n// the given deadline.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc (c *PipelineClient) DoDeadline(req *Request, resp *Response, deadline time.Time) error {\n\treturn c.getConnClient().DoDeadline(req, resp, deadline)\n}\n\nfunc (c *pipelineConnClient) DoDeadline(req *Request, resp *Response, deadline time.Time) error {\n\tc.init()\n\n\ttimeout := -time.Since(deadline)\n\tif timeout < 0 {\n\t\treturn ErrTimeout\n\t}\n\n\tw := acquirePipelineWork(&c.workPool, timeout)\n\tw.req = &w.reqCopy\n\tw.resp = &w.respCopy\n\n\t// Make a copy of the request in order to avoid data races on timeouts\n\treq.copyToSkipBody(&w.reqCopy)\n\tswapRequestBody(req, &w.reqCopy)\n\n\t// Put the request to outgoing queue\n\tselect {\n\tcase c.chW <- w:\n\t\t// Fast path: len(c.ch) < cap(c.ch)\n\tdefault:\n\t\t// Slow path\n\t\tselect {\n\t\tcase c.chW <- w:\n\t\tcase <-w.t.C:\n\t\t\treleasePipelineWork(&c.workPool, w)\n\t\t\treturn ErrTimeout\n\t\t}\n\t}\n\n\t// Wait for the response\n\tvar err error\n\tselect {\n\tcase <-w.done:\n\t\tif resp != nil {\n\t\t\tw.respCopy.copyToSkipBody(resp)\n\t\t\tswapResponseBody(resp, &w.respCopy)\n\t\t}\n\t\terr = w.err\n\t\treleasePipelineWork(&c.workPool, w)\n\tcase <-w.t.C:\n\t\terr = ErrTimeout\n\t}\n\n\treturn err\n}\n\n// Do performs the given http request and sets the corresponding response.\n//\n// Request must contain at least non-zero RequestURI with full url (including\n// scheme and host) or non-zero Host header + RequestURI.\n//\n// The function doesn't follow redirects. Use Get* for following redirects.\n//\n// Response is ignored if resp is nil.\n//\n// It is recommended obtaining req and resp via AcquireRequest\n// and AcquireResponse in performance-critical code.\nfunc (c *PipelineClient) Do(req *Request, resp *Response) error {\n\treturn c.getConnClient().Do(req, resp)\n}\n\nfunc (c *pipelineConnClient) Do(req *Request, resp *Response) error {\n\tc.init()\n\n\tw := acquirePipelineWork(&c.workPool, 0)\n\tw.req = req\n\tif resp != nil {\n\t\tw.resp = resp\n\t} else {\n\t\tw.resp = &w.respCopy\n\t}\n\n\t// Put the request to outgoing queue\n\tselect {\n\tcase c.chW <- w:\n\tdefault:\n\t\t// Try substituting the oldest w with the current one.\n\t\tselect {\n\t\tcase wOld := <-c.chW:\n\t\t\twOld.err = ErrPipelineOverflow\n\t\t\twOld.done <- struct{}{}\n\t\tdefault:\n\t\t}\n\t\tselect {\n\t\tcase c.chW <- w:\n\t\tdefault:\n\t\t\treleasePipelineWork(&c.workPool, w)\n\t\t\treturn ErrPipelineOverflow\n\t\t}\n\t}\n\n\t// Wait for the response\n\t<-w.done\n\terr := w.err\n\n\treleasePipelineWork(&c.workPool, w)\n\n\treturn err\n}\n\nfunc (c *PipelineClient) getConnClient() *pipelineConnClient {\n\tc.connClientsLock.Lock()\n\tcc := c.getConnClientUnlocked()\n\tc.connClientsLock.Unlock()\n\treturn cc\n}\n\nfunc (c *PipelineClient) getConnClientUnlocked() *pipelineConnClient {\n\tif len(c.connClients) == 0 {\n\t\treturn c.newConnClient()\n\t}\n\n\t// Return the client with the minimum number of pending requests.\n\tminCC := c.connClients[0]\n\tminReqs := minCC.PendingRequests()\n\tif minReqs == 0 {\n\t\treturn minCC\n\t}\n\tfor i := 1; i < len(c.connClients); i++ {\n\t\tcc := c.connClients[i]\n\t\treqs := cc.PendingRequests()\n\t\tif reqs == 0 {\n\t\t\treturn cc\n\t\t}\n\t\tif reqs < minReqs {\n\t\t\tminCC = cc\n\t\t\tminReqs = reqs\n\t\t}\n\t}\n\n\tmaxConns := c.MaxConns\n\tif maxConns <= 0 {\n\t\tmaxConns = 1\n\t}\n\tif len(c.connClients) < maxConns {\n\t\treturn c.newConnClient()\n\t}\n\treturn minCC\n}\n\nfunc (c *PipelineClient) newConnClient() *pipelineConnClient {\n\tcc := &pipelineConnClient{\n\t\tAddr:                c.Addr,\n\t\tMaxPendingRequests:  c.MaxPendingRequests,\n\t\tMaxBatchDelay:       c.MaxBatchDelay,\n\t\tDial:                c.Dial,\n\t\tDialDualStack:       c.DialDualStack,\n\t\tIsTLS:               c.IsTLS,\n\t\tTLSConfig:           c.TLSConfig,\n\t\tMaxIdleConnDuration: c.MaxIdleConnDuration,\n\t\tReadBufferSize:      c.ReadBufferSize,\n\t\tWriteBufferSize:     c.WriteBufferSize,\n\t\tReadTimeout:         c.ReadTimeout,\n\t\tWriteTimeout:        c.WriteTimeout,\n\t\tLogger:              c.Logger,\n\t}\n\tc.connClients = append(c.connClients, cc)\n\treturn cc\n}\n\n// ErrPipelineOverflow may be returned from PipelineClient.Do*\n// if the requests' queue is overflown.\nvar ErrPipelineOverflow = errors.New(\"pipelined requests' queue has been overflown. Increase MaxConns and/or MaxPendingRequests\")\n\n// DefaultMaxPendingRequests is the default value\n// for PipelineClient.MaxPendingRequests.\nconst DefaultMaxPendingRequests = 1024\n\nfunc (c *pipelineConnClient) init() {\n\tc.chLock.Lock()\n\tif c.chR == nil {\n\t\tmaxPendingRequests := c.MaxPendingRequests\n\t\tif maxPendingRequests <= 0 {\n\t\t\tmaxPendingRequests = DefaultMaxPendingRequests\n\t\t}\n\t\tc.chR = make(chan *pipelineWork, maxPendingRequests)\n\t\tif c.chW == nil {\n\t\t\tc.chW = make(chan *pipelineWork, maxPendingRequests)\n\t\t}\n\t\tgo func() {\n\t\t\t// Keep restarting the worker if it fails (connection errors for example).\n\t\t\tfor {\n\t\t\t\tif err := c.worker(); err != nil {\n\t\t\t\t\tc.logger().Printf(\"error in PipelineClient(%q): %s\", c.Addr, err)\n\t\t\t\t\tif netErr, ok := err.(net.Error); ok && netErr.Temporary() {\n\t\t\t\t\t\t// Throttle client reconnections on temporary errors\n\t\t\t\t\t\ttime.Sleep(time.Second)\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tc.chLock.Lock()\n\t\t\t\t\tstop := len(c.chR) == 0 && len(c.chW) == 0\n\t\t\t\t\tif !stop {\n\t\t\t\t\t\tc.chR = nil\n\t\t\t\t\t\tc.chW = nil\n\t\t\t\t\t}\n\t\t\t\t\tc.chLock.Unlock()\n\n\t\t\t\t\tif stop {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}()\n\t}\n\tc.chLock.Unlock()\n}\n\nfunc (c *pipelineConnClient) worker() error {\n\ttlsConfig := c.cachedTLSConfig()\n\tconn, err := dialAddr(c.Addr, c.Dial, c.DialDualStack, c.IsTLS, tlsConfig, c.WriteTimeout)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// Start reader and writer\n\tstopW := make(chan struct{})\n\tdoneW := make(chan error)\n\tgo func() {\n\t\tdoneW <- c.writer(conn, stopW)\n\t}()\n\tstopR := make(chan struct{})\n\tdoneR := make(chan error)\n\tgo func() {\n\t\tdoneR <- c.reader(conn, stopR)\n\t}()\n\n\t// Wait until reader and writer are stopped\n\tselect {\n\tcase err = <-doneW:\n\t\tconn.Close()\n\t\tclose(stopR)\n\t\t<-doneR\n\tcase err = <-doneR:\n\t\tconn.Close()\n\t\tclose(stopW)\n\t\t<-doneW\n\t}\n\n\t// Notify pending readers\n\tfor len(c.chR) > 0 {\n\t\tw := <-c.chR\n\t\tw.err = errPipelineConnStopped\n\t\tw.done <- struct{}{}\n\t}\n\n\treturn err\n}\n\nfunc (c *pipelineConnClient) cachedTLSConfig() *tls.Config {\n\tif !c.IsTLS {\n\t\treturn nil\n\t}\n\n\tc.tlsConfigLock.Lock()\n\tcfg := c.tlsConfig\n\tif cfg == nil {\n\t\tcfg = newClientTLSConfig(c.TLSConfig, c.Addr)\n\t\tc.tlsConfig = cfg\n\t}\n\tc.tlsConfigLock.Unlock()\n\n\treturn cfg\n}\n\nfunc (c *pipelineConnClient) writer(conn net.Conn, stopCh <-chan struct{}) error {\n\twriteBufferSize := c.WriteBufferSize\n\tif writeBufferSize <= 0 {\n\t\twriteBufferSize = defaultWriteBufferSize\n\t}\n\tbw := bufio.NewWriterSize(conn, writeBufferSize)\n\tdefer bw.Flush()\n\tchR := c.chR\n\tchW := c.chW\n\twriteTimeout := c.WriteTimeout\n\n\tmaxIdleConnDuration := c.MaxIdleConnDuration\n\tif maxIdleConnDuration <= 0 {\n\t\tmaxIdleConnDuration = DefaultMaxIdleConnDuration\n\t}\n\tmaxBatchDelay := c.MaxBatchDelay\n\n\tvar (\n\t\tstopTimer      = time.NewTimer(time.Hour)\n\t\tflushTimer     = time.NewTimer(time.Hour)\n\t\tflushTimerCh   <-chan time.Time\n\t\tinstantTimerCh = make(chan time.Time)\n\n\t\tw   *pipelineWork\n\t\terr error\n\t)\n\tclose(instantTimerCh)\n\tfor {\n\tagainChW:\n\t\tselect {\n\t\tcase w = <-chW:\n\t\t\t// Fast path: len(chW) > 0\n\t\tdefault:\n\t\t\t// Slow path\n\t\t\tstopTimer.Reset(maxIdleConnDuration)\n\t\t\tselect {\n\t\t\tcase w = <-chW:\n\t\t\tcase <-stopTimer.C:\n\t\t\t\treturn nil\n\t\t\tcase <-stopCh:\n\t\t\t\treturn nil\n\t\t\tcase <-flushTimerCh:\n\t\t\t\tif err = bw.Flush(); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\tflushTimerCh = nil\n\t\t\t\tgoto againChW\n\t\t\t}\n\t\t}\n\n\t\tif !w.deadline.IsZero() && time.Since(w.deadline) >= 0 {\n\t\t\tw.err = ErrTimeout\n\t\t\tw.done <- struct{}{}\n\t\t\tcontinue\n\t\t}\n\n\t\tw.resp.parseNetConn(conn)\n\n\t\tif writeTimeout > 0 {\n\t\t\t// Set Deadline every time, since golang has fixed the performance issue\n\t\t\t// See https://github.com/golang/go/issues/15133#issuecomment-271571395 for details\n\t\t\tcurrentTime := time.Now()\n\t\t\tif err = conn.SetWriteDeadline(currentTime.Add(writeTimeout)); err != nil {\n\t\t\t\tw.err = err\n\t\t\t\tw.done <- struct{}{}\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tif err = w.req.Write(bw); err != nil {\n\t\t\tw.err = err\n\t\t\tw.done <- struct{}{}\n\t\t\treturn err\n\t\t}\n\t\tif flushTimerCh == nil && (len(chW) == 0 || len(chR) == cap(chR)) {\n\t\t\tif maxBatchDelay > 0 {\n\t\t\t\tflushTimer.Reset(maxBatchDelay)\n\t\t\t\tflushTimerCh = flushTimer.C\n\t\t\t} else {\n\t\t\t\tflushTimerCh = instantTimerCh\n\t\t\t}\n\t\t}\n\n\tagainChR:\n\t\tselect {\n\t\tcase chR <- w:\n\t\t\t// Fast path: len(chR) < cap(chR)\n\t\tdefault:\n\t\t\t// Slow path\n\t\t\tselect {\n\t\t\tcase chR <- w:\n\t\t\tcase <-stopCh:\n\t\t\t\tw.err = errPipelineConnStopped\n\t\t\t\tw.done <- struct{}{}\n\t\t\t\treturn nil\n\t\t\tcase <-flushTimerCh:\n\t\t\t\tif err = bw.Flush(); err != nil {\n\t\t\t\t\tw.err = err\n\t\t\t\t\tw.done <- struct{}{}\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\tflushTimerCh = nil\n\t\t\t\tgoto againChR\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc (c *pipelineConnClient) reader(conn net.Conn, stopCh <-chan struct{}) error {\n\treadBufferSize := c.ReadBufferSize\n\tif readBufferSize <= 0 {\n\t\treadBufferSize = defaultReadBufferSize\n\t}\n\tbr := bufio.NewReaderSize(conn, readBufferSize)\n\tchR := c.chR\n\treadTimeout := c.ReadTimeout\n\n\tvar (\n\t\tw   *pipelineWork\n\t\terr error\n\t)\n\tfor {\n\t\tselect {\n\t\tcase w = <-chR:\n\t\t\t// Fast path: len(chR) > 0\n\t\tdefault:\n\t\t\t// Slow path\n\t\t\tselect {\n\t\t\tcase w = <-chR:\n\t\t\tcase <-stopCh:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\n\t\tif readTimeout > 0 {\n\t\t\t// Set Deadline every time, since golang has fixed the performance issue\n\t\t\t// See https://github.com/golang/go/issues/15133#issuecomment-271571395 for details\n\t\t\tcurrentTime := time.Now()\n\t\t\tif err = conn.SetReadDeadline(currentTime.Add(readTimeout)); err != nil {\n\t\t\t\tw.err = err\n\t\t\t\tw.done <- struct{}{}\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tif err = w.resp.Read(br); err != nil {\n\t\t\tw.err = err\n\t\t\tw.done <- struct{}{}\n\t\t\treturn err\n\t\t}\n\n\t\tw.done <- struct{}{}\n\t}\n}\n\nfunc (c *pipelineConnClient) logger() Logger {\n\tif c.Logger != nil {\n\t\treturn c.Logger\n\t}\n\treturn defaultLogger\n}\n\n// PendingRequests returns the current number of pending requests pipelined\n// to the server.\n//\n// This number may exceed MaxPendingRequests*MaxConns by up to two times, since\n// each connection to the server may keep up to MaxPendingRequests requests\n// in the queue before sending them to the server.\n//\n// This function may be used for balancing load among multiple PipelineClient\n// instances.\nfunc (c *PipelineClient) PendingRequests() int {\n\tc.connClientsLock.Lock()\n\tn := 0\n\tfor _, cc := range c.connClients {\n\t\tn += cc.PendingRequests()\n\t}\n\tc.connClientsLock.Unlock()\n\treturn n\n}\n\nfunc (c *pipelineConnClient) PendingRequests() int {\n\tc.init()\n\n\tc.chLock.Lock()\n\tn := len(c.chR) + len(c.chW)\n\tc.chLock.Unlock()\n\treturn n\n}\n\nvar errPipelineConnStopped = errors.New(\"pipeline connection has been stopped\")\n\nfunc acquirePipelineWork(pool *sync.Pool, timeout time.Duration) *pipelineWork {\n\tv := pool.Get()\n\tif v == nil {\n\t\tv = &pipelineWork{\n\t\t\tdone: make(chan struct{}, 1),\n\t\t}\n\t}\n\tw := v.(*pipelineWork)\n\tif timeout > 0 {\n\t\tif w.t == nil {\n\t\t\tw.t = time.NewTimer(timeout)\n\t\t} else {\n\t\t\tw.t.Reset(timeout)\n\t\t}\n\t\tw.deadline = time.Now().Add(timeout)\n\t} else {\n\t\tw.deadline = zeroTime\n\t}\n\treturn w\n}\n\nfunc releasePipelineWork(pool *sync.Pool, w *pipelineWork) {\n\tif w.t != nil {\n\t\tw.t.Stop()\n\t}\n\tw.reqCopy.Reset()\n\tw.respCopy.Reset()\n\tw.req = nil\n\tw.resp = nil\n\tw.err = nil\n\tpool.Put(w)\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/coarseTime.go",
    "content": "package fasthttp\n\nimport (\n\t\"time\"\n)\n\n// CoarseTimeNow returns the current time truncated to the nearest second.\n//\n// Deprecated: This is slower than calling time.Now() directly.\n// This is now time.Now().Truncate(time.Second) shortcut.\nfunc CoarseTimeNow() time.Time {\n\treturn time.Now().Truncate(time.Second)\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/compress.go",
    "content": "package fasthttp\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"sync\"\n\n\t\"github.com/klauspost/compress/flate\"\n\t\"github.com/klauspost/compress/gzip\"\n\t\"github.com/klauspost/compress/zlib\"\n\t\"github.com/valyala/bytebufferpool\"\n\t\"github.com/valyala/fasthttp/stackless\"\n)\n\n// Supported compression levels.\nconst (\n\tCompressNoCompression      = flate.NoCompression\n\tCompressBestSpeed          = flate.BestSpeed\n\tCompressBestCompression    = flate.BestCompression\n\tCompressDefaultCompression = 6  // flate.DefaultCompression\n\tCompressHuffmanOnly        = -2 // flate.HuffmanOnly\n)\n\nfunc acquireGzipReader(r io.Reader) (*gzip.Reader, error) {\n\tv := gzipReaderPool.Get()\n\tif v == nil {\n\t\treturn gzip.NewReader(r)\n\t}\n\tzr := v.(*gzip.Reader)\n\tif err := zr.Reset(r); err != nil {\n\t\treturn nil, err\n\t}\n\treturn zr, nil\n}\n\nfunc releaseGzipReader(zr *gzip.Reader) {\n\tzr.Close()\n\tgzipReaderPool.Put(zr)\n}\n\nvar gzipReaderPool sync.Pool\n\nfunc acquireFlateReader(r io.Reader) (io.ReadCloser, error) {\n\tv := flateReaderPool.Get()\n\tif v == nil {\n\t\tzr, err := zlib.NewReader(r)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\treturn zr, nil\n\t}\n\tzr := v.(io.ReadCloser)\n\tif err := resetFlateReader(zr, r); err != nil {\n\t\treturn nil, err\n\t}\n\treturn zr, nil\n}\n\nfunc releaseFlateReader(zr io.ReadCloser) {\n\tzr.Close()\n\tflateReaderPool.Put(zr)\n}\n\nfunc resetFlateReader(zr io.ReadCloser, r io.Reader) error {\n\tzrr, ok := zr.(zlib.Resetter)\n\tif !ok {\n\t\tpanic(\"BUG: zlib.Reader doesn't implement zlib.Resetter???\")\n\t}\n\treturn zrr.Reset(r, nil)\n}\n\nvar flateReaderPool sync.Pool\n\nfunc acquireStacklessGzipWriter(w io.Writer, level int) stackless.Writer {\n\tnLevel := normalizeCompressLevel(level)\n\tp := stacklessGzipWriterPoolMap[nLevel]\n\tv := p.Get()\n\tif v == nil {\n\t\treturn stackless.NewWriter(w, func(w io.Writer) stackless.Writer {\n\t\t\treturn acquireRealGzipWriter(w, level)\n\t\t})\n\t}\n\tsw := v.(stackless.Writer)\n\tsw.Reset(w)\n\treturn sw\n}\n\nfunc releaseStacklessGzipWriter(sw stackless.Writer, level int) {\n\tsw.Close()\n\tnLevel := normalizeCompressLevel(level)\n\tp := stacklessGzipWriterPoolMap[nLevel]\n\tp.Put(sw)\n}\n\nfunc acquireRealGzipWriter(w io.Writer, level int) *gzip.Writer {\n\tnLevel := normalizeCompressLevel(level)\n\tp := realGzipWriterPoolMap[nLevel]\n\tv := p.Get()\n\tif v == nil {\n\t\tzw, err := gzip.NewWriterLevel(w, level)\n\t\tif err != nil {\n\t\t\tpanic(fmt.Sprintf(\"BUG: unexpected error from gzip.NewWriterLevel(%d): %s\", level, err))\n\t\t}\n\t\treturn zw\n\t}\n\tzw := v.(*gzip.Writer)\n\tzw.Reset(w)\n\treturn zw\n}\n\nfunc releaseRealGzipWriter(zw *gzip.Writer, level int) {\n\tzw.Close()\n\tnLevel := normalizeCompressLevel(level)\n\tp := realGzipWriterPoolMap[nLevel]\n\tp.Put(zw)\n}\n\nvar (\n\tstacklessGzipWriterPoolMap = newCompressWriterPoolMap()\n\trealGzipWriterPoolMap      = newCompressWriterPoolMap()\n)\n\n// AppendGzipBytesLevel appends gzipped src to dst using the given\n// compression level and returns the resulting dst.\n//\n// Supported compression levels are:\n//\n//    * CompressNoCompression\n//    * CompressBestSpeed\n//    * CompressBestCompression\n//    * CompressDefaultCompression\n//    * CompressHuffmanOnly\nfunc AppendGzipBytesLevel(dst, src []byte, level int) []byte {\n\tw := &byteSliceWriter{dst}\n\tWriteGzipLevel(w, src, level) //nolint:errcheck\n\treturn w.b\n}\n\n// WriteGzipLevel writes gzipped p to w using the given compression level\n// and returns the number of compressed bytes written to w.\n//\n// Supported compression levels are:\n//\n//    * CompressNoCompression\n//    * CompressBestSpeed\n//    * CompressBestCompression\n//    * CompressDefaultCompression\n//    * CompressHuffmanOnly\nfunc WriteGzipLevel(w io.Writer, p []byte, level int) (int, error) {\n\tswitch w.(type) {\n\tcase *byteSliceWriter,\n\t\t*bytes.Buffer,\n\t\t*bytebufferpool.ByteBuffer:\n\t\t// These writers don't block, so we can just use stacklessWriteGzip\n\t\tctx := &compressCtx{\n\t\t\tw:     w,\n\t\t\tp:     p,\n\t\t\tlevel: level,\n\t\t}\n\t\tstacklessWriteGzip(ctx)\n\t\treturn len(p), nil\n\tdefault:\n\t\tzw := acquireStacklessGzipWriter(w, level)\n\t\tn, err := zw.Write(p)\n\t\treleaseStacklessGzipWriter(zw, level)\n\t\treturn n, err\n\t}\n}\n\nvar stacklessWriteGzip = stackless.NewFunc(nonblockingWriteGzip)\n\nfunc nonblockingWriteGzip(ctxv interface{}) {\n\tctx := ctxv.(*compressCtx)\n\tzw := acquireRealGzipWriter(ctx.w, ctx.level)\n\n\t_, err := zw.Write(ctx.p)\n\tif err != nil {\n\t\tpanic(fmt.Sprintf(\"BUG: gzip.Writer.Write for len(p)=%d returned unexpected error: %s\", len(ctx.p), err))\n\t}\n\n\treleaseRealGzipWriter(zw, ctx.level)\n}\n\n// WriteGzip writes gzipped p to w and returns the number of compressed\n// bytes written to w.\nfunc WriteGzip(w io.Writer, p []byte) (int, error) {\n\treturn WriteGzipLevel(w, p, CompressDefaultCompression)\n}\n\n// AppendGzipBytes appends gzipped src to dst and returns the resulting dst.\nfunc AppendGzipBytes(dst, src []byte) []byte {\n\treturn AppendGzipBytesLevel(dst, src, CompressDefaultCompression)\n}\n\n// WriteGunzip writes ungzipped p to w and returns the number of uncompressed\n// bytes written to w.\nfunc WriteGunzip(w io.Writer, p []byte) (int, error) {\n\tr := &byteSliceReader{p}\n\tzr, err := acquireGzipReader(r)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tn, err := copyZeroAlloc(w, zr)\n\treleaseGzipReader(zr)\n\tnn := int(n)\n\tif int64(nn) != n {\n\t\treturn 0, fmt.Errorf(\"too much data gunzipped: %d\", n)\n\t}\n\treturn nn, err\n}\n\n// AppendGunzipBytes appends gunzipped src to dst and returns the resulting dst.\nfunc AppendGunzipBytes(dst, src []byte) ([]byte, error) {\n\tw := &byteSliceWriter{dst}\n\t_, err := WriteGunzip(w, src)\n\treturn w.b, err\n}\n\n// AppendDeflateBytesLevel appends deflated src to dst using the given\n// compression level and returns the resulting dst.\n//\n// Supported compression levels are:\n//\n//    * CompressNoCompression\n//    * CompressBestSpeed\n//    * CompressBestCompression\n//    * CompressDefaultCompression\n//    * CompressHuffmanOnly\nfunc AppendDeflateBytesLevel(dst, src []byte, level int) []byte {\n\tw := &byteSliceWriter{dst}\n\tWriteDeflateLevel(w, src, level) //nolint:errcheck\n\treturn w.b\n}\n\n// WriteDeflateLevel writes deflated p to w using the given compression level\n// and returns the number of compressed bytes written to w.\n//\n// Supported compression levels are:\n//\n//    * CompressNoCompression\n//    * CompressBestSpeed\n//    * CompressBestCompression\n//    * CompressDefaultCompression\n//    * CompressHuffmanOnly\nfunc WriteDeflateLevel(w io.Writer, p []byte, level int) (int, error) {\n\tswitch w.(type) {\n\tcase *byteSliceWriter,\n\t\t*bytes.Buffer,\n\t\t*bytebufferpool.ByteBuffer:\n\t\t// These writers don't block, so we can just use stacklessWriteDeflate\n\t\tctx := &compressCtx{\n\t\t\tw:     w,\n\t\t\tp:     p,\n\t\t\tlevel: level,\n\t\t}\n\t\tstacklessWriteDeflate(ctx)\n\t\treturn len(p), nil\n\tdefault:\n\t\tzw := acquireStacklessDeflateWriter(w, level)\n\t\tn, err := zw.Write(p)\n\t\treleaseStacklessDeflateWriter(zw, level)\n\t\treturn n, err\n\t}\n}\n\nvar stacklessWriteDeflate = stackless.NewFunc(nonblockingWriteDeflate)\n\nfunc nonblockingWriteDeflate(ctxv interface{}) {\n\tctx := ctxv.(*compressCtx)\n\tzw := acquireRealDeflateWriter(ctx.w, ctx.level)\n\n\t_, err := zw.Write(ctx.p)\n\tif err != nil {\n\t\tpanic(fmt.Sprintf(\"BUG: zlib.Writer.Write for len(p)=%d returned unexpected error: %s\", len(ctx.p), err))\n\t}\n\n\treleaseRealDeflateWriter(zw, ctx.level)\n}\n\ntype compressCtx struct {\n\tw     io.Writer\n\tp     []byte\n\tlevel int\n}\n\n// WriteDeflate writes deflated p to w and returns the number of compressed\n// bytes written to w.\nfunc WriteDeflate(w io.Writer, p []byte) (int, error) {\n\treturn WriteDeflateLevel(w, p, CompressDefaultCompression)\n}\n\n// AppendDeflateBytes appends deflated src to dst and returns the resulting dst.\nfunc AppendDeflateBytes(dst, src []byte) []byte {\n\treturn AppendDeflateBytesLevel(dst, src, CompressDefaultCompression)\n}\n\n// WriteInflate writes inflated p to w and returns the number of uncompressed\n// bytes written to w.\nfunc WriteInflate(w io.Writer, p []byte) (int, error) {\n\tr := &byteSliceReader{p}\n\tzr, err := acquireFlateReader(r)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tn, err := copyZeroAlloc(w, zr)\n\treleaseFlateReader(zr)\n\tnn := int(n)\n\tif int64(nn) != n {\n\t\treturn 0, fmt.Errorf(\"too much data inflated: %d\", n)\n\t}\n\treturn nn, err\n}\n\n// AppendInflateBytes appends inflated src to dst and returns the resulting dst.\nfunc AppendInflateBytes(dst, src []byte) ([]byte, error) {\n\tw := &byteSliceWriter{dst}\n\t_, err := WriteInflate(w, src)\n\treturn w.b, err\n}\n\ntype byteSliceWriter struct {\n\tb []byte\n}\n\nfunc (w *byteSliceWriter) Write(p []byte) (int, error) {\n\tw.b = append(w.b, p...)\n\treturn len(p), nil\n}\n\ntype byteSliceReader struct {\n\tb []byte\n}\n\nfunc (r *byteSliceReader) Read(p []byte) (int, error) {\n\tif len(r.b) == 0 {\n\t\treturn 0, io.EOF\n\t}\n\tn := copy(p, r.b)\n\tr.b = r.b[n:]\n\treturn n, nil\n}\n\nfunc acquireStacklessDeflateWriter(w io.Writer, level int) stackless.Writer {\n\tnLevel := normalizeCompressLevel(level)\n\tp := stacklessDeflateWriterPoolMap[nLevel]\n\tv := p.Get()\n\tif v == nil {\n\t\treturn stackless.NewWriter(w, func(w io.Writer) stackless.Writer {\n\t\t\treturn acquireRealDeflateWriter(w, level)\n\t\t})\n\t}\n\tsw := v.(stackless.Writer)\n\tsw.Reset(w)\n\treturn sw\n}\n\nfunc releaseStacklessDeflateWriter(sw stackless.Writer, level int) {\n\tsw.Close()\n\tnLevel := normalizeCompressLevel(level)\n\tp := stacklessDeflateWriterPoolMap[nLevel]\n\tp.Put(sw)\n}\n\nfunc acquireRealDeflateWriter(w io.Writer, level int) *zlib.Writer {\n\tnLevel := normalizeCompressLevel(level)\n\tp := realDeflateWriterPoolMap[nLevel]\n\tv := p.Get()\n\tif v == nil {\n\t\tzw, err := zlib.NewWriterLevel(w, level)\n\t\tif err != nil {\n\t\t\tpanic(fmt.Sprintf(\"BUG: unexpected error from zlib.NewWriterLevel(%d): %s\", level, err))\n\t\t}\n\t\treturn zw\n\t}\n\tzw := v.(*zlib.Writer)\n\tzw.Reset(w)\n\treturn zw\n}\n\nfunc releaseRealDeflateWriter(zw *zlib.Writer, level int) {\n\tzw.Close()\n\tnLevel := normalizeCompressLevel(level)\n\tp := realDeflateWriterPoolMap[nLevel]\n\tp.Put(zw)\n}\n\nvar (\n\tstacklessDeflateWriterPoolMap = newCompressWriterPoolMap()\n\trealDeflateWriterPoolMap      = newCompressWriterPoolMap()\n)\n\nfunc newCompressWriterPoolMap() []*sync.Pool {\n\t// Initialize pools for all the compression levels defined\n\t// in https://golang.org/pkg/compress/flate/#pkg-constants .\n\t// Compression levels are normalized with normalizeCompressLevel,\n\t// so the fit [0..11].\n\tvar m []*sync.Pool\n\tfor i := 0; i < 12; i++ {\n\t\tm = append(m, &sync.Pool{})\n\t}\n\treturn m\n}\n\nfunc isFileCompressible(f *os.File, minCompressRatio float64) bool {\n\t// Try compressing the first 4kb of of the file\n\t// and see if it can be compressed by more than\n\t// the given minCompressRatio.\n\tb := bytebufferpool.Get()\n\tzw := acquireStacklessGzipWriter(b, CompressDefaultCompression)\n\tlr := &io.LimitedReader{\n\t\tR: f,\n\t\tN: 4096,\n\t}\n\t_, err := copyZeroAlloc(zw, lr)\n\treleaseStacklessGzipWriter(zw, CompressDefaultCompression)\n\tf.Seek(0, 0) //nolint:errcheck\n\tif err != nil {\n\t\treturn false\n\t}\n\n\tn := 4096 - lr.N\n\tzn := len(b.B)\n\tbytebufferpool.Put(b)\n\treturn float64(zn) < float64(n)*minCompressRatio\n}\n\n// normalizes compression level into [0..11], so it could be used as an index\n// in *PoolMap.\nfunc normalizeCompressLevel(level int) int {\n\t// -2 is the lowest compression level - CompressHuffmanOnly\n\t// 9 is the highest compression level - CompressBestCompression\n\tif level < -2 || level > 9 {\n\t\tlevel = CompressDefaultCompression\n\t}\n\treturn level + 2\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/cookie.go",
    "content": "package fasthttp\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"io\"\n\t\"sync\"\n\t\"time\"\n)\n\nvar zeroTime time.Time\n\nvar (\n\t// CookieExpireDelete may be set on Cookie.Expire for expiring the given cookie.\n\tCookieExpireDelete = time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)\n\n\t// CookieExpireUnlimited indicates that the cookie doesn't expire.\n\tCookieExpireUnlimited = zeroTime\n)\n\n// CookieSameSite is an enum for the mode in which the SameSite flag should be set for the given cookie.\n// See https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00 for details.\ntype CookieSameSite int\n\nconst (\n\t// CookieSameSiteDisabled removes the SameSite flag\n\tCookieSameSiteDisabled CookieSameSite = iota\n\t// CookieSameSiteDefaultMode sets the SameSite flag\n\tCookieSameSiteDefaultMode\n\t// CookieSameSiteLaxMode sets the SameSite flag with the \"Lax\" parameter\n\tCookieSameSiteLaxMode\n\t// CookieSameSiteStrictMode sets the SameSite flag with the \"Strict\" parameter\n\tCookieSameSiteStrictMode\n\t// CookieSameSiteNoneMode sets the SameSite flag with the \"None\" parameter\n\t// see https://tools.ietf.org/html/draft-west-cookie-incrementalism-00\n\tCookieSameSiteNoneMode\n)\n\n// AcquireCookie returns an empty Cookie object from the pool.\n//\n// The returned object may be returned back to the pool with ReleaseCookie.\n// This allows reducing GC load.\nfunc AcquireCookie() *Cookie {\n\treturn cookiePool.Get().(*Cookie)\n}\n\n// ReleaseCookie returns the Cookie object acquired with AcquireCookie back\n// to the pool.\n//\n// Do not access released Cookie object, otherwise data races may occur.\nfunc ReleaseCookie(c *Cookie) {\n\tc.Reset()\n\tcookiePool.Put(c)\n}\n\nvar cookiePool = &sync.Pool{\n\tNew: func() interface{} {\n\t\treturn &Cookie{}\n\t},\n}\n\n// Cookie represents HTTP response cookie.\n//\n// Do not copy Cookie objects. Create new object and use CopyTo instead.\n//\n// Cookie instance MUST NOT be used from concurrently running goroutines.\ntype Cookie struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\tkey    []byte\n\tvalue  []byte\n\texpire time.Time\n\tmaxAge int\n\tdomain []byte\n\tpath   []byte\n\n\thttpOnly bool\n\tsecure   bool\n\tsameSite CookieSameSite\n\n\tbufKV argsKV\n\tbuf   []byte\n}\n\n// CopyTo copies src cookie to c.\nfunc (c *Cookie) CopyTo(src *Cookie) {\n\tc.Reset()\n\tc.key = append(c.key[:0], src.key...)\n\tc.value = append(c.value[:0], src.value...)\n\tc.expire = src.expire\n\tc.maxAge = src.maxAge\n\tc.domain = append(c.domain[:0], src.domain...)\n\tc.path = append(c.path[:0], src.path...)\n\tc.httpOnly = src.httpOnly\n\tc.secure = src.secure\n\tc.sameSite = src.sameSite\n}\n\n// HTTPOnly returns true if the cookie is http only.\nfunc (c *Cookie) HTTPOnly() bool {\n\treturn c.httpOnly\n}\n\n// SetHTTPOnly sets cookie's httpOnly flag to the given value.\nfunc (c *Cookie) SetHTTPOnly(httpOnly bool) {\n\tc.httpOnly = httpOnly\n}\n\n// Secure returns true if the cookie is secure.\nfunc (c *Cookie) Secure() bool {\n\treturn c.secure\n}\n\n// SetSecure sets cookie's secure flag to the given value.\nfunc (c *Cookie) SetSecure(secure bool) {\n\tc.secure = secure\n}\n\n// SameSite returns the SameSite mode.\nfunc (c *Cookie) SameSite() CookieSameSite {\n\treturn c.sameSite\n}\n\n// SetSameSite sets the cookie's SameSite flag to the given value.\n// set value CookieSameSiteNoneMode will set Secure to true also to avoid browser rejection\nfunc (c *Cookie) SetSameSite(mode CookieSameSite) {\n\tc.sameSite = mode\n\tif mode == CookieSameSiteNoneMode {\n\t\tc.SetSecure(true)\n\t}\n}\n\n// Path returns cookie path.\nfunc (c *Cookie) Path() []byte {\n\treturn c.path\n}\n\n// SetPath sets cookie path.\nfunc (c *Cookie) SetPath(path string) {\n\tc.buf = append(c.buf[:0], path...)\n\tc.path = normalizePath(c.path, c.buf)\n}\n\n// SetPathBytes sets cookie path.\nfunc (c *Cookie) SetPathBytes(path []byte) {\n\tc.buf = append(c.buf[:0], path...)\n\tc.path = normalizePath(c.path, c.buf)\n}\n\n// Domain returns cookie domain.\n//\n// The returned domain is valid until the next Cookie modification method call.\nfunc (c *Cookie) Domain() []byte {\n\treturn c.domain\n}\n\n// SetDomain sets cookie domain.\nfunc (c *Cookie) SetDomain(domain string) {\n\tc.domain = append(c.domain[:0], domain...)\n}\n\n// SetDomainBytes sets cookie domain.\nfunc (c *Cookie) SetDomainBytes(domain []byte) {\n\tc.domain = append(c.domain[:0], domain...)\n}\n\n// MaxAge returns the seconds until the cookie is meant to expire or 0\n// if no max age.\nfunc (c *Cookie) MaxAge() int {\n\treturn c.maxAge\n}\n\n// SetMaxAge sets cookie expiration time based on seconds. This takes precedence\n// over any absolute expiry set on the cookie\n//\n// Set max age to 0 to unset\nfunc (c *Cookie) SetMaxAge(seconds int) {\n\tc.maxAge = seconds\n}\n\n// Expire returns cookie expiration time.\n//\n// CookieExpireUnlimited is returned if cookie doesn't expire\nfunc (c *Cookie) Expire() time.Time {\n\texpire := c.expire\n\tif expire.IsZero() {\n\t\texpire = CookieExpireUnlimited\n\t}\n\treturn expire\n}\n\n// SetExpire sets cookie expiration time.\n//\n// Set expiration time to CookieExpireDelete for expiring (deleting)\n// the cookie on the client.\n//\n// By default cookie lifetime is limited by browser session.\nfunc (c *Cookie) SetExpire(expire time.Time) {\n\tc.expire = expire\n}\n\n// Value returns cookie value.\n//\n// The returned value is valid until the next Cookie modification method call.\nfunc (c *Cookie) Value() []byte {\n\treturn c.value\n}\n\n// SetValue sets cookie value.\nfunc (c *Cookie) SetValue(value string) {\n\tc.value = append(c.value[:0], value...)\n}\n\n// SetValueBytes sets cookie value.\nfunc (c *Cookie) SetValueBytes(value []byte) {\n\tc.value = append(c.value[:0], value...)\n}\n\n// Key returns cookie name.\n//\n// The returned value is valid until the next Cookie modification method call.\nfunc (c *Cookie) Key() []byte {\n\treturn c.key\n}\n\n// SetKey sets cookie name.\nfunc (c *Cookie) SetKey(key string) {\n\tc.key = append(c.key[:0], key...)\n}\n\n// SetKeyBytes sets cookie name.\nfunc (c *Cookie) SetKeyBytes(key []byte) {\n\tc.key = append(c.key[:0], key...)\n}\n\n// Reset clears the cookie.\nfunc (c *Cookie) Reset() {\n\tc.key = c.key[:0]\n\tc.value = c.value[:0]\n\tc.expire = zeroTime\n\tc.maxAge = 0\n\tc.domain = c.domain[:0]\n\tc.path = c.path[:0]\n\tc.httpOnly = false\n\tc.secure = false\n\tc.sameSite = CookieSameSiteDisabled\n}\n\n// AppendBytes appends cookie representation to dst and returns\n// the extended dst.\nfunc (c *Cookie) AppendBytes(dst []byte) []byte {\n\tif len(c.key) > 0 {\n\t\tdst = append(dst, c.key...)\n\t\tdst = append(dst, '=')\n\t}\n\tdst = append(dst, c.value...)\n\n\tif c.maxAge > 0 {\n\t\tdst = append(dst, ';', ' ')\n\t\tdst = append(dst, strCookieMaxAge...)\n\t\tdst = append(dst, '=')\n\t\tdst = AppendUint(dst, c.maxAge)\n\t} else if !c.expire.IsZero() {\n\t\tc.bufKV.value = AppendHTTPDate(c.bufKV.value[:0], c.expire)\n\t\tdst = append(dst, ';', ' ')\n\t\tdst = append(dst, strCookieExpires...)\n\t\tdst = append(dst, '=')\n\t\tdst = append(dst, c.bufKV.value...)\n\t}\n\tif len(c.domain) > 0 {\n\t\tdst = appendCookiePart(dst, strCookieDomain, c.domain)\n\t}\n\tif len(c.path) > 0 {\n\t\tdst = appendCookiePart(dst, strCookiePath, c.path)\n\t}\n\tif c.httpOnly {\n\t\tdst = append(dst, ';', ' ')\n\t\tdst = append(dst, strCookieHTTPOnly...)\n\t}\n\tif c.secure {\n\t\tdst = append(dst, ';', ' ')\n\t\tdst = append(dst, strCookieSecure...)\n\t}\n\tswitch c.sameSite {\n\tcase CookieSameSiteDefaultMode:\n\t\tdst = append(dst, ';', ' ')\n\t\tdst = append(dst, strCookieSameSite...)\n\tcase CookieSameSiteLaxMode:\n\t\tdst = append(dst, ';', ' ')\n\t\tdst = append(dst, strCookieSameSite...)\n\t\tdst = append(dst, '=')\n\t\tdst = append(dst, strCookieSameSiteLax...)\n\tcase CookieSameSiteStrictMode:\n\t\tdst = append(dst, ';', ' ')\n\t\tdst = append(dst, strCookieSameSite...)\n\t\tdst = append(dst, '=')\n\t\tdst = append(dst, strCookieSameSiteStrict...)\n\tcase CookieSameSiteNoneMode:\n\t\tdst = append(dst, ';', ' ')\n\t\tdst = append(dst, strCookieSameSite...)\n\t\tdst = append(dst, '=')\n\t\tdst = append(dst, strCookieSameSiteNone...)\n\t}\n\treturn dst\n}\n\n// Cookie returns cookie representation.\n//\n// The returned value is valid until the next call to Cookie methods.\nfunc (c *Cookie) Cookie() []byte {\n\tc.buf = c.AppendBytes(c.buf[:0])\n\treturn c.buf\n}\n\n// String returns cookie representation.\nfunc (c *Cookie) String() string {\n\treturn string(c.Cookie())\n}\n\n// WriteTo writes cookie representation to w.\n//\n// WriteTo implements io.WriterTo interface.\nfunc (c *Cookie) WriteTo(w io.Writer) (int64, error) {\n\tn, err := w.Write(c.Cookie())\n\treturn int64(n), err\n}\n\nvar errNoCookies = errors.New(\"no cookies found\")\n\n// Parse parses Set-Cookie header.\nfunc (c *Cookie) Parse(src string) error {\n\tc.buf = append(c.buf[:0], src...)\n\treturn c.ParseBytes(c.buf)\n}\n\n// ParseBytes parses Set-Cookie header.\nfunc (c *Cookie) ParseBytes(src []byte) error {\n\tc.Reset()\n\n\tvar s cookieScanner\n\ts.b = src\n\n\tkv := &c.bufKV\n\tif !s.next(kv) {\n\t\treturn errNoCookies\n\t}\n\n\tc.key = append(c.key[:0], kv.key...)\n\tc.value = append(c.value[:0], kv.value...)\n\n\tfor s.next(kv) {\n\t\tif len(kv.key) != 0 {\n\t\t\t// Case insensitive switch on first char\n\t\t\tswitch kv.key[0] | 0x20 {\n\t\t\tcase 'm':\n\t\t\t\tif caseInsensitiveCompare(strCookieMaxAge, kv.key) {\n\t\t\t\t\tmaxAge, err := ParseUint(kv.value)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn err\n\t\t\t\t\t}\n\t\t\t\t\tc.maxAge = maxAge\n\t\t\t\t}\n\n\t\t\tcase 'e': // \"expires\"\n\t\t\t\tif caseInsensitiveCompare(strCookieExpires, kv.key) {\n\t\t\t\t\tv := b2s(kv.value)\n\t\t\t\t\t// Try the same two formats as net/http\n\t\t\t\t\t// See: https://github.com/golang/go/blob/00379be17e63a5b75b3237819392d2dc3b313a27/src/net/http/cookie.go#L133-L135\n\t\t\t\t\texptime, err := time.ParseInLocation(time.RFC1123, v, time.UTC)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\texptime, err = time.Parse(\"Mon, 02-Jan-2006 15:04:05 MST\", v)\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\treturn err\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tc.expire = exptime\n\t\t\t\t}\n\n\t\t\tcase 'd': // \"domain\"\n\t\t\t\tif caseInsensitiveCompare(strCookieDomain, kv.key) {\n\t\t\t\t\tc.domain = append(c.domain[:0], kv.value...)\n\t\t\t\t}\n\n\t\t\tcase 'p': // \"path\"\n\t\t\t\tif caseInsensitiveCompare(strCookiePath, kv.key) {\n\t\t\t\t\tc.path = append(c.path[:0], kv.value...)\n\t\t\t\t}\n\n\t\t\tcase 's': // \"samesite\"\n\t\t\t\tif caseInsensitiveCompare(strCookieSameSite, kv.key) {\n\t\t\t\t\t// Case insensitive switch on first char\n\t\t\t\t\tswitch kv.value[0] | 0x20 {\n\t\t\t\t\tcase 'l': // \"lax\"\n\t\t\t\t\t\tif caseInsensitiveCompare(strCookieSameSiteLax, kv.value) {\n\t\t\t\t\t\t\tc.sameSite = CookieSameSiteLaxMode\n\t\t\t\t\t\t}\n\t\t\t\t\tcase 's': // \"strict\"\n\t\t\t\t\t\tif caseInsensitiveCompare(strCookieSameSiteStrict, kv.value) {\n\t\t\t\t\t\t\tc.sameSite = CookieSameSiteStrictMode\n\t\t\t\t\t\t}\n\t\t\t\t\tcase 'n': // \"none\"\n\t\t\t\t\t\tif caseInsensitiveCompare(strCookieSameSiteNone, kv.value) {\n\t\t\t\t\t\t\tc.sameSite = CookieSameSiteNoneMode\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if len(kv.value) != 0 {\n\t\t\t// Case insensitive switch on first char\n\t\t\tswitch kv.value[0] | 0x20 {\n\t\t\tcase 'h': // \"httponly\"\n\t\t\t\tif caseInsensitiveCompare(strCookieHTTPOnly, kv.value) {\n\t\t\t\t\tc.httpOnly = true\n\t\t\t\t}\n\n\t\t\tcase 's': // \"secure\"\n\t\t\t\tif caseInsensitiveCompare(strCookieSecure, kv.value) {\n\t\t\t\t\tc.secure = true\n\t\t\t\t} else if caseInsensitiveCompare(strCookieSameSite, kv.value) {\n\t\t\t\t\tc.sameSite = CookieSameSiteDefaultMode\n\t\t\t\t}\n\t\t\t}\n\t\t} // else empty or no match\n\t}\n\treturn nil\n}\n\nfunc appendCookiePart(dst, key, value []byte) []byte {\n\tdst = append(dst, ';', ' ')\n\tdst = append(dst, key...)\n\tdst = append(dst, '=')\n\treturn append(dst, value...)\n}\n\nfunc getCookieKey(dst, src []byte) []byte {\n\tn := bytes.IndexByte(src, '=')\n\tif n >= 0 {\n\t\tsrc = src[:n]\n\t}\n\treturn decodeCookieArg(dst, src, false)\n}\n\nfunc appendRequestCookieBytes(dst []byte, cookies []argsKV) []byte {\n\tfor i, n := 0, len(cookies); i < n; i++ {\n\t\tkv := &cookies[i]\n\t\tif len(kv.key) > 0 {\n\t\t\tdst = append(dst, kv.key...)\n\t\t\tdst = append(dst, '=')\n\t\t}\n\t\tdst = append(dst, kv.value...)\n\t\tif i+1 < n {\n\t\t\tdst = append(dst, ';', ' ')\n\t\t}\n\t}\n\treturn dst\n}\n\n// For Response we can not use the above function as response cookies\n// already contain the key= in the value.\nfunc appendResponseCookieBytes(dst []byte, cookies []argsKV) []byte {\n\tfor i, n := 0, len(cookies); i < n; i++ {\n\t\tkv := &cookies[i]\n\t\tdst = append(dst, kv.value...)\n\t\tif i+1 < n {\n\t\t\tdst = append(dst, ';', ' ')\n\t\t}\n\t}\n\treturn dst\n}\n\nfunc parseRequestCookies(cookies []argsKV, src []byte) []argsKV {\n\tvar s cookieScanner\n\ts.b = src\n\tvar kv *argsKV\n\tcookies, kv = allocArg(cookies)\n\tfor s.next(kv) {\n\t\tif len(kv.key) > 0 || len(kv.value) > 0 {\n\t\t\tcookies, kv = allocArg(cookies)\n\t\t}\n\t}\n\treturn releaseArg(cookies)\n}\n\ntype cookieScanner struct {\n\tb []byte\n}\n\nfunc (s *cookieScanner) next(kv *argsKV) bool {\n\tb := s.b\n\tif len(b) == 0 {\n\t\treturn false\n\t}\n\n\tisKey := true\n\tk := 0\n\tfor i, c := range b {\n\t\tswitch c {\n\t\tcase '=':\n\t\t\tif isKey {\n\t\t\t\tisKey = false\n\t\t\t\tkv.key = decodeCookieArg(kv.key, b[:i], false)\n\t\t\t\tk = i + 1\n\t\t\t}\n\t\tcase ';':\n\t\t\tif isKey {\n\t\t\t\tkv.key = kv.key[:0]\n\t\t\t}\n\t\t\tkv.value = decodeCookieArg(kv.value, b[k:i], true)\n\t\t\ts.b = b[i+1:]\n\t\t\treturn true\n\t\t}\n\t}\n\n\tif isKey {\n\t\tkv.key = kv.key[:0]\n\t}\n\tkv.value = decodeCookieArg(kv.value, b[k:], true)\n\ts.b = b[len(b):]\n\treturn true\n}\n\nfunc decodeCookieArg(dst, src []byte, skipQuotes bool) []byte {\n\tfor len(src) > 0 && src[0] == ' ' {\n\t\tsrc = src[1:]\n\t}\n\tfor len(src) > 0 && src[len(src)-1] == ' ' {\n\t\tsrc = src[:len(src)-1]\n\t}\n\tif skipQuotes {\n\t\tif len(src) > 1 && src[0] == '\"' && src[len(src)-1] == '\"' {\n\t\t\tsrc = src[1 : len(src)-1]\n\t\t}\n\t}\n\treturn append(dst[:0], src...)\n}\n\n// caseInsensitiveCompare does a case insensitive equality comparison of\n// two []byte. Assumes only letters need to be matched.\nfunc caseInsensitiveCompare(a, b []byte) bool {\n\tif len(a) != len(b) {\n\t\treturn false\n\t}\n\tfor i := 0; i < len(a); i++ {\n\t\tif a[i]|0x20 != b[i]|0x20 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/doc.go",
    "content": "/*\nPackage fasthttp provides fast HTTP server and client API.\n\nFasthttp provides the following features:\n\n    * Optimized for speed. Easily handles more than 100K qps and more than 1M\n      concurrent keep-alive connections on modern hardware.\n    * Optimized for low memory usage.\n    * Easy 'Connection: Upgrade' support via RequestCtx.Hijack.\n    * Server provides the following anti-DoS limits:\n\n        * The number of concurrent connections.\n        * The number of concurrent connections per client IP.\n        * The number of requests per connection.\n        * Request read timeout.\n        * Response write timeout.\n        * Maximum request header size.\n        * Maximum request body size.\n        * Maximum request execution time.\n        * Maximum keep-alive connection lifetime.\n        * Early filtering out non-GET requests.\n\n    * A lot of additional useful info is exposed to request handler:\n\n        * Server and client address.\n        * Per-request logger.\n        * Unique request id.\n        * Request start time.\n        * Connection start time.\n        * Request sequence number for the current connection.\n\n    * Client supports automatic retry on idempotent requests' failure.\n    * Fasthttp API is designed with the ability to extend existing client\n      and server implementations or to write custom client and server\n      implementations from scratch.\n*/\npackage fasthttp\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/fasthttputil/doc.go",
    "content": "// Package fasthttputil provides utility functions for fasthttp.\npackage fasthttputil\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/fasthttputil/ecdsa.key",
    "content": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBpQbZ6a5jL1Yh4wdP6yZk4MKjYWArD/QOLENFw8vbELoAoGCCqGSM49\nAwEHoUQDQgAEKQCZWgE2IBhb47ot8MIs1D4KSisHYlZ41IWyeutpjb0fjwwIhimh\npl1Qld1/d2j3Z3vVyfa5yD+ncV7qCFZuSg==\n-----END EC PRIVATE KEY-----\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/fasthttputil/ecdsa.pem",
    "content": "-----BEGIN CERTIFICATE-----\nMIIBbTCCAROgAwIBAgIQPo718S+K+G7hc1SgTEU4QDAKBggqhkjOPQQDAjASMRAw\nDgYDVQQKEwdBY21lIENvMB4XDTE3MDQyMDIxMDExNFoXDTE4MDQyMDIxMDExNFow\nEjEQMA4GA1UEChMHQWNtZSBDbzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCkA\nmVoBNiAYW+O6LfDCLNQ+CkorB2JWeNSFsnrraY29H48MCIYpoaZdUJXdf3do92d7\n1cn2ucg/p3Fe6ghWbkqjSzBJMA4GA1UdDwEB/wQEAwIFoDATBgNVHSUEDDAKBggr\nBgEFBQcDATAMBgNVHRMBAf8EAjAAMBQGA1UdEQQNMAuCCWxvY2FsaG9zdDAKBggq\nhkjOPQQDAgNIADBFAiEAoLAIQkvSuIcHUqyWroA6yWYw2fznlRH/uO9/hMCxUCEC\nIClRYb/5O9eD/Eq/ozPnwNpsQHOeYefEhadJ/P82y0lG\n-----END CERTIFICATE-----\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/fasthttputil/inmemory_listener.go",
    "content": "package fasthttputil\n\nimport (\n\t\"errors\"\n\t\"net\"\n\t\"sync\"\n)\n\n// ErrInmemoryListenerClosed indicates that the InmemoryListener is already closed.\nvar ErrInmemoryListenerClosed = errors.New(\"InmemoryListener is already closed: use of closed network connection\")\n\n// InmemoryListener provides in-memory dialer<->net.Listener implementation.\n//\n// It may be used either for fast in-process client<->server communications\n// without network stack overhead or for client<->server tests.\ntype InmemoryListener struct {\n\tlock   sync.Mutex\n\tclosed bool\n\tconns  chan acceptConn\n}\n\ntype acceptConn struct {\n\tconn     net.Conn\n\taccepted chan struct{}\n}\n\n// NewInmemoryListener returns new in-memory dialer<->net.Listener.\nfunc NewInmemoryListener() *InmemoryListener {\n\treturn &InmemoryListener{\n\t\tconns: make(chan acceptConn, 1024),\n\t}\n}\n\n// Accept implements net.Listener's Accept.\n//\n// It is safe calling Accept from concurrently running goroutines.\n//\n// Accept returns new connection per each Dial call.\nfunc (ln *InmemoryListener) Accept() (net.Conn, error) {\n\tc, ok := <-ln.conns\n\tif !ok {\n\t\treturn nil, ErrInmemoryListenerClosed\n\t}\n\tclose(c.accepted)\n\treturn c.conn, nil\n}\n\n// Close implements net.Listener's Close.\nfunc (ln *InmemoryListener) Close() error {\n\tvar err error\n\n\tln.lock.Lock()\n\tif !ln.closed {\n\t\tclose(ln.conns)\n\t\tln.closed = true\n\t} else {\n\t\terr = ErrInmemoryListenerClosed\n\t}\n\tln.lock.Unlock()\n\treturn err\n}\n\n// Addr implements net.Listener's Addr.\nfunc (ln *InmemoryListener) Addr() net.Addr {\n\treturn &net.UnixAddr{\n\t\tName: \"InmemoryListener\",\n\t\tNet:  \"memory\",\n\t}\n}\n\n// Dial creates new client<->server connection.\n// Just like a real Dial it only returns once the server\n// has accepted the connection.\n//\n// It is safe calling Dial from concurrently running goroutines.\nfunc (ln *InmemoryListener) Dial() (net.Conn, error) {\n\tpc := NewPipeConns()\n\tcConn := pc.Conn1()\n\tsConn := pc.Conn2()\n\tln.lock.Lock()\n\taccepted := make(chan struct{})\n\tif !ln.closed {\n\t\tln.conns <- acceptConn{sConn, accepted}\n\t\t// Wait until the connection has been accepted.\n\t\t<-accepted\n\t} else {\n\t\tsConn.Close() //nolint:errcheck\n\t\tcConn.Close() //nolint:errcheck\n\t\tcConn = nil\n\t}\n\tln.lock.Unlock()\n\n\tif cConn == nil {\n\t\treturn nil, ErrInmemoryListenerClosed\n\t}\n\treturn cConn, nil\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/fasthttputil/pipeconns.go",
    "content": "package fasthttputil\n\nimport (\n\t\"errors\"\n\t\"io\"\n\t\"net\"\n\t\"sync\"\n\t\"time\"\n)\n\n// NewPipeConns returns new bi-directional connection pipe.\n//\n// PipeConns is NOT safe for concurrent use by multiple goroutines!\nfunc NewPipeConns() *PipeConns {\n\tch1 := make(chan *byteBuffer, 4)\n\tch2 := make(chan *byteBuffer, 4)\n\n\tpc := &PipeConns{\n\t\tstopCh: make(chan struct{}),\n\t}\n\tpc.c1.rCh = ch1\n\tpc.c1.wCh = ch2\n\tpc.c2.rCh = ch2\n\tpc.c2.wCh = ch1\n\tpc.c1.pc = pc\n\tpc.c2.pc = pc\n\treturn pc\n}\n\n// PipeConns provides bi-directional connection pipe,\n// which use in-process memory as a transport.\n//\n// PipeConns must be created by calling NewPipeConns.\n//\n// PipeConns has the following additional features comparing to connections\n// returned from net.Pipe():\n//\n//   * It is faster.\n//   * It buffers Write calls, so there is no need to have concurrent goroutine\n//     calling Read in order to unblock each Write call.\n//   * It supports read and write deadlines.\n//\n// PipeConns is NOT safe for concurrent use by multiple goroutines!\ntype PipeConns struct {\n\tc1         pipeConn\n\tc2         pipeConn\n\tstopCh     chan struct{}\n\tstopChLock sync.Mutex\n}\n\n// Conn1 returns the first end of bi-directional pipe.\n//\n// Data written to Conn1 may be read from Conn2.\n// Data written to Conn2 may be read from Conn1.\nfunc (pc *PipeConns) Conn1() net.Conn {\n\treturn &pc.c1\n}\n\n// Conn2 returns the second end of bi-directional pipe.\n//\n// Data written to Conn2 may be read from Conn1.\n// Data written to Conn1 may be read from Conn2.\nfunc (pc *PipeConns) Conn2() net.Conn {\n\treturn &pc.c2\n}\n\n// Close closes pipe connections.\nfunc (pc *PipeConns) Close() error {\n\tpc.stopChLock.Lock()\n\tselect {\n\tcase <-pc.stopCh:\n\tdefault:\n\t\tclose(pc.stopCh)\n\t}\n\tpc.stopChLock.Unlock()\n\n\treturn nil\n}\n\ntype pipeConn struct {\n\tb  *byteBuffer\n\tbb []byte\n\n\trCh chan *byteBuffer\n\twCh chan *byteBuffer\n\tpc  *PipeConns\n\n\treadDeadlineTimer  *time.Timer\n\twriteDeadlineTimer *time.Timer\n\n\treadDeadlineCh  <-chan time.Time\n\twriteDeadlineCh <-chan time.Time\n\n\treadDeadlineChLock sync.Mutex\n}\n\nfunc (c *pipeConn) Write(p []byte) (int, error) {\n\tb := acquireByteBuffer()\n\tb.b = append(b.b[:0], p...)\n\n\tselect {\n\tcase <-c.pc.stopCh:\n\t\treleaseByteBuffer(b)\n\t\treturn 0, errConnectionClosed\n\tdefault:\n\t}\n\n\tselect {\n\tcase c.wCh <- b:\n\tdefault:\n\t\tselect {\n\t\tcase c.wCh <- b:\n\t\tcase <-c.writeDeadlineCh:\n\t\t\tc.writeDeadlineCh = closedDeadlineCh\n\t\t\treturn 0, ErrTimeout\n\t\tcase <-c.pc.stopCh:\n\t\t\treleaseByteBuffer(b)\n\t\t\treturn 0, errConnectionClosed\n\t\t}\n\t}\n\n\treturn len(p), nil\n}\n\nfunc (c *pipeConn) Read(p []byte) (int, error) {\n\tmayBlock := true\n\tnn := 0\n\tfor len(p) > 0 {\n\t\tn, err := c.read(p, mayBlock)\n\t\tnn += n\n\t\tif err != nil {\n\t\t\tif !mayBlock && err == errWouldBlock {\n\t\t\t\terr = nil\n\t\t\t}\n\t\t\treturn nn, err\n\t\t}\n\t\tp = p[n:]\n\t\tmayBlock = false\n\t}\n\n\treturn nn, nil\n}\n\nfunc (c *pipeConn) read(p []byte, mayBlock bool) (int, error) {\n\tif len(c.bb) == 0 {\n\t\tif err := c.readNextByteBuffer(mayBlock); err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t}\n\tn := copy(p, c.bb)\n\tc.bb = c.bb[n:]\n\n\treturn n, nil\n}\n\nfunc (c *pipeConn) readNextByteBuffer(mayBlock bool) error {\n\treleaseByteBuffer(c.b)\n\tc.b = nil\n\n\tselect {\n\tcase c.b = <-c.rCh:\n\tdefault:\n\t\tif !mayBlock {\n\t\t\treturn errWouldBlock\n\t\t}\n\t\tc.readDeadlineChLock.Lock()\n\t\treadDeadlineCh := c.readDeadlineCh\n\t\tc.readDeadlineChLock.Unlock()\n\t\tselect {\n\t\tcase c.b = <-c.rCh:\n\t\tcase <-readDeadlineCh:\n\t\t\tc.readDeadlineChLock.Lock()\n\t\t\tc.readDeadlineCh = closedDeadlineCh\n\t\t\tc.readDeadlineChLock.Unlock()\n\t\t\t// rCh may contain data when deadline is reached.\n\t\t\t// Read the data before returning ErrTimeout.\n\t\t\tselect {\n\t\t\tcase c.b = <-c.rCh:\n\t\t\tdefault:\n\t\t\t\treturn ErrTimeout\n\t\t\t}\n\t\tcase <-c.pc.stopCh:\n\t\t\t// rCh may contain data when stopCh is closed.\n\t\t\t// Read the data before returning EOF.\n\t\t\tselect {\n\t\t\tcase c.b = <-c.rCh:\n\t\t\tdefault:\n\t\t\t\treturn io.EOF\n\t\t\t}\n\t\t}\n\t}\n\n\tc.bb = c.b.b\n\treturn nil\n}\n\nvar (\n\terrWouldBlock       = errors.New(\"would block\")\n\terrConnectionClosed = errors.New(\"connection closed\")\n)\n\ntype timeoutError struct {\n}\n\nfunc (e *timeoutError) Error() string {\n\treturn \"timeout\"\n}\n\n// Only implement the Timeout() function of the net.Error interface.\n// This allows for checks like:\n//\n//   if x, ok := err.(interface{ Timeout() bool }); ok && x.Timeout() {\nfunc (e *timeoutError) Timeout() bool {\n\treturn true\n}\n\nvar (\n\t// ErrTimeout is returned from Read() or Write() on timeout.\n\tErrTimeout = &timeoutError{}\n)\n\nfunc (c *pipeConn) Close() error {\n\treturn c.pc.Close()\n}\n\nfunc (c *pipeConn) LocalAddr() net.Addr {\n\treturn pipeAddr(0)\n}\n\nfunc (c *pipeConn) RemoteAddr() net.Addr {\n\treturn pipeAddr(0)\n}\n\nfunc (c *pipeConn) SetDeadline(deadline time.Time) error {\n\tc.SetReadDeadline(deadline)  //nolint:errcheck\n\tc.SetWriteDeadline(deadline) //nolint:errcheck\n\treturn nil\n}\n\nfunc (c *pipeConn) SetReadDeadline(deadline time.Time) error {\n\tif c.readDeadlineTimer == nil {\n\t\tc.readDeadlineTimer = time.NewTimer(time.Hour)\n\t}\n\treadDeadlineCh := updateTimer(c.readDeadlineTimer, deadline)\n\tc.readDeadlineChLock.Lock()\n\tc.readDeadlineCh = readDeadlineCh\n\tc.readDeadlineChLock.Unlock()\n\treturn nil\n}\n\nfunc (c *pipeConn) SetWriteDeadline(deadline time.Time) error {\n\tif c.writeDeadlineTimer == nil {\n\t\tc.writeDeadlineTimer = time.NewTimer(time.Hour)\n\t}\n\tc.writeDeadlineCh = updateTimer(c.writeDeadlineTimer, deadline)\n\treturn nil\n}\n\nfunc updateTimer(t *time.Timer, deadline time.Time) <-chan time.Time {\n\tif !t.Stop() {\n\t\tselect {\n\t\tcase <-t.C:\n\t\tdefault:\n\t\t}\n\t}\n\tif deadline.IsZero() {\n\t\treturn nil\n\t}\n\td := -time.Since(deadline)\n\tif d <= 0 {\n\t\treturn closedDeadlineCh\n\t}\n\tt.Reset(d)\n\treturn t.C\n}\n\nvar closedDeadlineCh = func() <-chan time.Time {\n\tch := make(chan time.Time)\n\tclose(ch)\n\treturn ch\n}()\n\ntype pipeAddr int\n\nfunc (pipeAddr) Network() string {\n\treturn \"pipe\"\n}\n\nfunc (pipeAddr) String() string {\n\treturn \"pipe\"\n}\n\ntype byteBuffer struct {\n\tb []byte\n}\n\nfunc acquireByteBuffer() *byteBuffer {\n\treturn byteBufferPool.Get().(*byteBuffer)\n}\n\nfunc releaseByteBuffer(b *byteBuffer) {\n\tif b != nil {\n\t\tbyteBufferPool.Put(b)\n\t}\n}\n\nvar byteBufferPool = &sync.Pool{\n\tNew: func() interface{} {\n\t\treturn &byteBuffer{\n\t\t\tb: make([]byte, 1024),\n\t\t}\n\t},\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/fasthttputil/rsa.key",
    "content": "-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQD4IQusAs8PJdnG\n3mURt/AXtgC+ceqLOatJ49JJE1VPTkMAy+oE1f1XvkMrYsHqmDf6GWVzgVXryL4U\nwq2/nJSm56ddhN55nI8oSN3dtywUB8/ShelEN73nlN77PeD9tl6NksPwWaKrqxq0\nFlabRPZSQCfmgZbhDV8Sa8mfCkFU0G0lit6kLGceCKMvmW+9Bz7ebsYmVdmVMxmf\nIJStFD44lWFTdUc65WISKEdW2ELcUefb0zOLw+0PCbXFGJH5x5ktksW8+BBk2Hkg\nGeQRL/qPCccthbScO0VgNj3zJ3ZZL0ObSDAbvNDG85joeNjDNq5DT/BAZ0bOSbEF\nsh+f9BAzAgMBAAECggEBAJWv2cq7Jw6MVwSRxYca38xuD6TUNBopgBvjREixURW2\nsNUaLuMb9Omp7fuOaE2N5rcJ+xnjPGIxh/oeN5MQctz9gwn3zf6vY+15h97pUb4D\nuGvYPRDaT8YVGS+X9NMZ4ZCmqW2lpWzKnCFoGHcy8yZLbcaxBsRdvKzwOYGoPiFb\nK2QuhXZ/1UPmqK9i2DFKtj40X6vBszTNboFxOVpXrPu0FJwLVSDf2hSZ4fMM0DH3\nYqwKcYf5te+hxGKgrqRA3tn0NCWii0in6QIwXMC+kMw1ebg/tZKqyDLMNptAK8J+\nDVw9m5X1seUHS5ehU/g2jrQrtK5WYn7MrFK4lBzlRwECgYEA/d1TeANYECDWRRDk\nB0aaRZs87Rwl/J9PsvbsKvtU/bX+OfSOUjOa9iQBqn0LmU8GqusEET/QVUfocVwV\nBggf/5qDLxz100Rj0ags/yE/kNr0Bb31kkkKHFMnCT06YasR7qKllwrAlPJvQv9x\nIzBKq+T/Dx08Wep9bCRSFhzRCnsCgYEA+jdeZXTDr/Vz+D2B3nAw1frqYFfGnEVY\nwqmoK3VXMDkGuxsloO2rN+SyiUo3JNiQNPDub/t7175GH5pmKtZOlftePANsUjBj\nwZ1D0rI5Bxu/71ibIUYIRVmXsTEQkh/ozoh3jXCZ9+bLgYiYx7789IUZZSokFQ3D\nFICUT9KJ36kCgYAGoq9Y1rWJjmIrYfqj2guUQC+CfxbbGIrrwZqAsRsSmpwvhZ3m\ntiSZxG0quKQB+NfSxdvQW5ulbwC7Xc3K35F+i9pb8+TVBdeaFkw+yu6vaZmxQLrX\nfQM/pEjD7A7HmMIaO7QaU5SfEAsqdCTP56Y8AftMuNXn/8IRfo2KuGwaWwKBgFpU\nILzJoVdlad9E/Rw7LjYhZfkv1uBVXIyxyKcfrkEXZSmozDXDdxsvcZCEfVHM6Ipk\nK/+7LuMcqp4AFEAEq8wTOdq6daFaHLkpt/FZK6M4TlruhtpFOPkoNc3e45eM83OT\n6mziKINJC1CQ6m65sQHpBtjxlKMRG8rL/D6wx9s5AoGBAMRlqNPMwglT3hvDmsAt\n9Lf9pdmhERUlHhD8bj8mDaBj2Aqv7f6VRJaYZqP403pKKQexuqcn80mtjkSAPFkN\nCj7BVt/RXm5uoxDTnfi26RF9F6yNDEJ7UU9+peBr99aazF/fTgW/1GcMkQnum8uV\nc257YgaWmjK9uB0Y2r2VxS0G\n-----END PRIVATE KEY-----\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/fasthttputil/rsa.pem",
    "content": "-----BEGIN CERTIFICATE-----\nMIICujCCAaKgAwIBAgIJAMbXnKZ/cikUMA0GCSqGSIb3DQEBCwUAMBUxEzARBgNV\nBAMTCnVidW50dS5uYW4wHhcNMTUwMjA0MDgwMTM5WhcNMjUwMjAxMDgwMTM5WjAV\nMRMwEQYDVQQDEwp1YnVudHUubmFuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEA+CELrALPDyXZxt5lEbfwF7YAvnHqizmrSePSSRNVT05DAMvqBNX9V75D\nK2LB6pg3+hllc4FV68i+FMKtv5yUpuenXYTeeZyPKEjd3bcsFAfP0oXpRDe955Te\n+z3g/bZejZLD8Fmiq6satBZWm0T2UkAn5oGW4Q1fEmvJnwpBVNBtJYrepCxnHgij\nL5lvvQc+3m7GJlXZlTMZnyCUrRQ+OJVhU3VHOuViEihHVthC3FHn29Mzi8PtDwm1\nxRiR+ceZLZLFvPgQZNh5IBnkES/6jwnHLYW0nDtFYDY98yd2WS9Dm0gwG7zQxvOY\n6HjYwzauQ0/wQGdGzkmxBbIfn/QQMwIDAQABow0wCzAJBgNVHRMEAjAAMA0GCSqG\nSIb3DQEBCwUAA4IBAQBQjKm/4KN/iTgXbLTL3i7zaxYXFLXsnT1tF+ay4VA8aj98\nL3JwRTciZ3A5iy/W4VSCt3eASwOaPWHKqDBB5RTtL73LoAqsWmO3APOGQAbixcQ2\n45GXi05OKeyiYRi1Nvq7Unv9jUkRDHUYVPZVSAjCpsXzPhFkmZoTRxmx5l0ZF7Li\nK91lI5h+eFq0dwZwrmlPambyh1vQUi70VHv8DNToVU29kel7YLbxGbuqETfhrcy6\nX+Mha6RYITkAn5FqsZcKMsc9eYGEF4l3XV+oS7q6xfTxktYJMFTI18J0lQ2Lv/CI\nwhdMnYGntDQBE/iFCrJEGNsKGc38796GBOb5j+zd\n-----END CERTIFICATE-----\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/fs.go",
    "content": "package fasthttp\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"html\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"mime\"\n\t\"net/http\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sort\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/andybalholm/brotli\"\n\t\"github.com/klauspost/compress/gzip\"\n\t\"github.com/valyala/bytebufferpool\"\n)\n\n// ServeFileBytesUncompressed returns HTTP response containing file contents\n// from the given path.\n//\n// Directory contents is returned if path points to directory.\n//\n// ServeFileBytes may be used for saving network traffic when serving files\n// with good compression ratio.\n//\n// See also RequestCtx.SendFileBytes.\nfunc ServeFileBytesUncompressed(ctx *RequestCtx, path []byte) {\n\tServeFileUncompressed(ctx, b2s(path))\n}\n\n// ServeFileUncompressed returns HTTP response containing file contents\n// from the given path.\n//\n// Directory contents is returned if path points to directory.\n//\n// ServeFile may be used for saving network traffic when serving files\n// with good compression ratio.\n//\n// See also RequestCtx.SendFile.\nfunc ServeFileUncompressed(ctx *RequestCtx, path string) {\n\tctx.Request.Header.DelBytes(strAcceptEncoding)\n\tServeFile(ctx, path)\n}\n\n// ServeFileBytes returns HTTP response containing compressed file contents\n// from the given path.\n//\n// HTTP response may contain uncompressed file contents in the following cases:\n//\n//   * Missing 'Accept-Encoding: gzip' request header.\n//   * No write access to directory containing the file.\n//\n// Directory contents is returned if path points to directory.\n//\n// Use ServeFileBytesUncompressed is you don't need serving compressed\n// file contents.\n//\n// See also RequestCtx.SendFileBytes.\nfunc ServeFileBytes(ctx *RequestCtx, path []byte) {\n\tServeFile(ctx, b2s(path))\n}\n\n// ServeFile returns HTTP response containing compressed file contents\n// from the given path.\n//\n// HTTP response may contain uncompressed file contents in the following cases:\n//\n//   * Missing 'Accept-Encoding: gzip' request header.\n//   * No write access to directory containing the file.\n//\n// Directory contents is returned if path points to directory.\n//\n// Use ServeFileUncompressed is you don't need serving compressed file contents.\n//\n// See also RequestCtx.SendFile.\nfunc ServeFile(ctx *RequestCtx, path string) {\n\trootFSOnce.Do(func() {\n\t\trootFSHandler = rootFS.NewRequestHandler()\n\t})\n\tif len(path) == 0 || path[0] != '/' {\n\t\t// extend relative path to absolute path\n\t\thasTrailingSlash := len(path) > 0 && path[len(path)-1] == '/'\n\t\tvar err error\n\t\tif path, err = filepath.Abs(path); err != nil {\n\t\t\tctx.Logger().Printf(\"cannot resolve path %q to absolute file path: %s\", path, err)\n\t\t\tctx.Error(\"Internal Server Error\", StatusInternalServerError)\n\t\t\treturn\n\t\t}\n\t\tif hasTrailingSlash {\n\t\t\tpath += \"/\"\n\t\t}\n\t}\n\tctx.Request.SetRequestURI(path)\n\trootFSHandler(ctx)\n}\n\nvar (\n\trootFSOnce sync.Once\n\trootFS     = &FS{\n\t\tRoot:               \"/\",\n\t\tGenerateIndexPages: true,\n\t\tCompress:           true,\n\t\tCompressBrotli:     true,\n\t\tAcceptByteRange:    true,\n\t}\n\trootFSHandler RequestHandler\n)\n\n// PathRewriteFunc must return new request path based on arbitrary ctx\n// info such as ctx.Path().\n//\n// Path rewriter is used in FS for translating the current request\n// to the local filesystem path relative to FS.Root.\n//\n// The returned path must not contain '/../' substrings due to security reasons,\n// since such paths may refer files outside FS.Root.\n//\n// The returned path may refer to ctx members. For example, ctx.Path().\ntype PathRewriteFunc func(ctx *RequestCtx) []byte\n\n// NewVHostPathRewriter returns path rewriter, which strips slashesCount\n// leading slashes from the path and prepends the path with request's host,\n// thus simplifying virtual hosting for static files.\n//\n// Examples:\n//\n//   * host=foobar.com, slashesCount=0, original path=\"/foo/bar\".\n//     Resulting path: \"/foobar.com/foo/bar\"\n//\n//   * host=img.aaa.com, slashesCount=1, original path=\"/images/123/456.jpg\"\n//     Resulting path: \"/img.aaa.com/123/456.jpg\"\n//\nfunc NewVHostPathRewriter(slashesCount int) PathRewriteFunc {\n\treturn func(ctx *RequestCtx) []byte {\n\t\tpath := stripLeadingSlashes(ctx.Path(), slashesCount)\n\t\thost := ctx.Host()\n\t\tif n := bytes.IndexByte(host, '/'); n >= 0 {\n\t\t\thost = nil\n\t\t}\n\t\tif len(host) == 0 {\n\t\t\thost = strInvalidHost\n\t\t}\n\t\tb := bytebufferpool.Get()\n\t\tb.B = append(b.B, '/')\n\t\tb.B = append(b.B, host...)\n\t\tb.B = append(b.B, path...)\n\t\tctx.URI().SetPathBytes(b.B)\n\t\tbytebufferpool.Put(b)\n\n\t\treturn ctx.Path()\n\t}\n}\n\nvar strInvalidHost = []byte(\"invalid-host\")\n\n// NewPathSlashesStripper returns path rewriter, which strips slashesCount\n// leading slashes from the path.\n//\n// Examples:\n//\n//   * slashesCount = 0, original path: \"/foo/bar\", result: \"/foo/bar\"\n//   * slashesCount = 1, original path: \"/foo/bar\", result: \"/bar\"\n//   * slashesCount = 2, original path: \"/foo/bar\", result: \"\"\n//\n// The returned path rewriter may be used as FS.PathRewrite .\nfunc NewPathSlashesStripper(slashesCount int) PathRewriteFunc {\n\treturn func(ctx *RequestCtx) []byte {\n\t\treturn stripLeadingSlashes(ctx.Path(), slashesCount)\n\t}\n}\n\n// NewPathPrefixStripper returns path rewriter, which removes prefixSize bytes\n// from the path prefix.\n//\n// Examples:\n//\n//   * prefixSize = 0, original path: \"/foo/bar\", result: \"/foo/bar\"\n//   * prefixSize = 3, original path: \"/foo/bar\", result: \"o/bar\"\n//   * prefixSize = 7, original path: \"/foo/bar\", result: \"r\"\n//\n// The returned path rewriter may be used as FS.PathRewrite .\nfunc NewPathPrefixStripper(prefixSize int) PathRewriteFunc {\n\treturn func(ctx *RequestCtx) []byte {\n\t\tpath := ctx.Path()\n\t\tif len(path) >= prefixSize {\n\t\t\tpath = path[prefixSize:]\n\t\t}\n\t\treturn path\n\t}\n}\n\n// FS represents settings for request handler serving static files\n// from the local filesystem.\n//\n// It is prohibited copying FS values. Create new values instead.\ntype FS struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\t// Path to the root directory to serve files from.\n\tRoot string\n\n\t// List of index file names to try opening during directory access.\n\t//\n\t// For example:\n\t//\n\t//     * index.html\n\t//     * index.htm\n\t//     * my-super-index.xml\n\t//\n\t// By default the list is empty.\n\tIndexNames []string\n\n\t// Index pages for directories without files matching IndexNames\n\t// are automatically generated if set.\n\t//\n\t// Directory index generation may be quite slow for directories\n\t// with many files (more than 1K), so it is discouraged enabling\n\t// index pages' generation for such directories.\n\t//\n\t// By default index pages aren't generated.\n\tGenerateIndexPages bool\n\n\t// Transparently compresses responses if set to true.\n\t//\n\t// The server tries minimizing CPU usage by caching compressed files.\n\t// It adds CompressedFileSuffix suffix to the original file name and\n\t// tries saving the resulting compressed file under the new file name.\n\t// So it is advisable to give the server write access to Root\n\t// and to all inner folders in order to minimize CPU usage when serving\n\t// compressed responses.\n\t//\n\t// Transparent compression is disabled by default.\n\tCompress bool\n\n\t// Uses brotli encoding and fallbacks to gzip in responses if set to true, uses gzip if set to false.\n\t//\n\t// This value has sense only if Compress is set.\n\t//\n\t// Brotli encoding is disabled by default.\n\tCompressBrotli bool\n\n\t// Enables byte range requests if set to true.\n\t//\n\t// Byte range requests are disabled by default.\n\tAcceptByteRange bool\n\n\t// Path rewriting function.\n\t//\n\t// By default request path is not modified.\n\tPathRewrite PathRewriteFunc\n\n\t// PathNotFound fires when file is not found in filesystem\n\t// this functions tries to replace \"Cannot open requested path\"\n\t// server response giving to the programmer the control of server flow.\n\t//\n\t// By default PathNotFound returns\n\t// \"Cannot open requested path\"\n\tPathNotFound RequestHandler\n\n\t// Expiration duration for inactive file handlers.\n\t//\n\t// FSHandlerCacheDuration is used by default.\n\tCacheDuration time.Duration\n\n\t// Suffix to add to the name of cached compressed file.\n\t//\n\t// This value has sense only if Compress is set.\n\t//\n\t// FSCompressedFileSuffix is used by default.\n\tCompressedFileSuffix string\n\n\t// Suffixes list to add to compressedFileSuffix depending on encoding\n\t//\n\t// This value has sense only if Compress is set.\n\t//\n\t// FSCompressedFileSuffixes is used by default.\n\tCompressedFileSuffixes map[string]string\n\n\tonce sync.Once\n\th    RequestHandler\n}\n\n// FSCompressedFileSuffix is the suffix FS adds to the original file names\n// when trying to store compressed file under the new file name.\n// See FS.Compress for details.\nconst FSCompressedFileSuffix = \".fasthttp.gz\"\n\n// FSCompressedFileSuffixes is the suffixes FS adds to the original file names depending on encoding\n// when trying to store compressed file under the new file name.\n// See FS.Compress for details.\nvar FSCompressedFileSuffixes = map[string]string{\n\t\"gzip\": \".fasthttp.gz\",\n\t\"br\":   \".fasthttp.br\",\n}\n\n// FSHandlerCacheDuration is the default expiration duration for inactive\n// file handlers opened by FS.\nconst FSHandlerCacheDuration = 10 * time.Second\n\n// FSHandler returns request handler serving static files from\n// the given root folder.\n//\n// stripSlashes indicates how many leading slashes must be stripped\n// from requested path before searching requested file in the root folder.\n// Examples:\n//\n//   * stripSlashes = 0, original path: \"/foo/bar\", result: \"/foo/bar\"\n//   * stripSlashes = 1, original path: \"/foo/bar\", result: \"/bar\"\n//   * stripSlashes = 2, original path: \"/foo/bar\", result: \"\"\n//\n// The returned request handler automatically generates index pages\n// for directories without index.html.\n//\n// The returned handler caches requested file handles\n// for FSHandlerCacheDuration.\n// Make sure your program has enough 'max open files' limit aka\n// 'ulimit -n' if root folder contains many files.\n//\n// Do not create multiple request handler instances for the same\n// (root, stripSlashes) arguments - just reuse a single instance.\n// Otherwise goroutine leak will occur.\nfunc FSHandler(root string, stripSlashes int) RequestHandler {\n\tfs := &FS{\n\t\tRoot:               root,\n\t\tIndexNames:         []string{\"index.html\"},\n\t\tGenerateIndexPages: true,\n\t\tAcceptByteRange:    true,\n\t}\n\tif stripSlashes > 0 {\n\t\tfs.PathRewrite = NewPathSlashesStripper(stripSlashes)\n\t}\n\treturn fs.NewRequestHandler()\n}\n\n// NewRequestHandler returns new request handler with the given FS settings.\n//\n// The returned handler caches requested file handles\n// for FS.CacheDuration.\n// Make sure your program has enough 'max open files' limit aka\n// 'ulimit -n' if FS.Root folder contains many files.\n//\n// Do not create multiple request handlers from a single FS instance -\n// just reuse a single request handler.\nfunc (fs *FS) NewRequestHandler() RequestHandler {\n\tfs.once.Do(fs.initRequestHandler)\n\treturn fs.h\n}\n\nfunc (fs *FS) initRequestHandler() {\n\troot := fs.Root\n\n\t// serve files from the current working directory if root is empty\n\tif len(root) == 0 {\n\t\troot = \".\"\n\t}\n\n\t// strip trailing slashes from the root path\n\tfor len(root) > 0 && root[len(root)-1] == '/' {\n\t\troot = root[:len(root)-1]\n\t}\n\n\tcacheDuration := fs.CacheDuration\n\tif cacheDuration <= 0 {\n\t\tcacheDuration = FSHandlerCacheDuration\n\t}\n\n\tcompressedFileSuffixes := fs.CompressedFileSuffixes\n\tif len(compressedFileSuffixes[\"br\"]) == 0 || len(compressedFileSuffixes[\"gzip\"]) == 0 ||\n\t\tcompressedFileSuffixes[\"br\"] == compressedFileSuffixes[\"gzip\"] {\n\t\tcompressedFileSuffixes = FSCompressedFileSuffixes\n\t}\n\n\tif len(fs.CompressedFileSuffix) > 0 {\n\t\tcompressedFileSuffixes[\"gzip\"] = fs.CompressedFileSuffix\n\t\tcompressedFileSuffixes[\"br\"] = FSCompressedFileSuffixes[\"br\"]\n\t}\n\n\th := &fsHandler{\n\t\troot:                   root,\n\t\tindexNames:             fs.IndexNames,\n\t\tpathRewrite:            fs.PathRewrite,\n\t\tgenerateIndexPages:     fs.GenerateIndexPages,\n\t\tcompress:               fs.Compress,\n\t\tcompressBrotli:         fs.CompressBrotli,\n\t\tpathNotFound:           fs.PathNotFound,\n\t\tacceptByteRange:        fs.AcceptByteRange,\n\t\tcacheDuration:          cacheDuration,\n\t\tcompressedFileSuffixes: compressedFileSuffixes,\n\t\tcache:                  make(map[string]*fsFile),\n\t\tcacheBrotli:            make(map[string]*fsFile),\n\t\tcacheGzip:              make(map[string]*fsFile),\n\t}\n\n\tgo func() {\n\t\tvar pendingFiles []*fsFile\n\t\tfor {\n\t\t\ttime.Sleep(cacheDuration / 2)\n\t\t\tpendingFiles = h.cleanCache(pendingFiles)\n\t\t}\n\t}()\n\n\tfs.h = h.handleRequest\n}\n\ntype fsHandler struct {\n\troot                   string\n\tindexNames             []string\n\tpathRewrite            PathRewriteFunc\n\tpathNotFound           RequestHandler\n\tgenerateIndexPages     bool\n\tcompress               bool\n\tcompressBrotli         bool\n\tacceptByteRange        bool\n\tcacheDuration          time.Duration\n\tcompressedFileSuffixes map[string]string\n\n\tcache       map[string]*fsFile\n\tcacheBrotli map[string]*fsFile\n\tcacheGzip   map[string]*fsFile\n\tcacheLock   sync.Mutex\n\n\tsmallFileReaderPool sync.Pool\n}\n\ntype fsFile struct {\n\th             *fsHandler\n\tf             *os.File\n\tdirIndex      []byte\n\tcontentType   string\n\tcontentLength int\n\tcompressed    bool\n\n\tlastModified    time.Time\n\tlastModifiedStr []byte\n\n\tt            time.Time\n\treadersCount int\n\n\tbigFiles     []*bigFileReader\n\tbigFilesLock sync.Mutex\n}\n\nfunc (ff *fsFile) NewReader() (io.Reader, error) {\n\tif ff.isBig() {\n\t\tr, err := ff.bigFileReader()\n\t\tif err != nil {\n\t\t\tff.decReadersCount()\n\t\t}\n\t\treturn r, err\n\t}\n\treturn ff.smallFileReader(), nil\n}\n\nfunc (ff *fsFile) smallFileReader() io.Reader {\n\tv := ff.h.smallFileReaderPool.Get()\n\tif v == nil {\n\t\tv = &fsSmallFileReader{}\n\t}\n\tr := v.(*fsSmallFileReader)\n\tr.ff = ff\n\tr.endPos = ff.contentLength\n\tif r.startPos > 0 {\n\t\tpanic(\"BUG: fsSmallFileReader with non-nil startPos found in the pool\")\n\t}\n\treturn r\n}\n\n// files bigger than this size are sent with sendfile\nconst maxSmallFileSize = 2 * 4096\n\nfunc (ff *fsFile) isBig() bool {\n\treturn ff.contentLength > maxSmallFileSize && len(ff.dirIndex) == 0\n}\n\nfunc (ff *fsFile) bigFileReader() (io.Reader, error) {\n\tif ff.f == nil {\n\t\tpanic(\"BUG: ff.f must be non-nil in bigFileReader\")\n\t}\n\n\tvar r io.Reader\n\n\tff.bigFilesLock.Lock()\n\tn := len(ff.bigFiles)\n\tif n > 0 {\n\t\tr = ff.bigFiles[n-1]\n\t\tff.bigFiles = ff.bigFiles[:n-1]\n\t}\n\tff.bigFilesLock.Unlock()\n\n\tif r != nil {\n\t\treturn r, nil\n\t}\n\n\tf, err := os.Open(ff.f.Name())\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"cannot open already opened file: %s\", err)\n\t}\n\treturn &bigFileReader{\n\t\tf:  f,\n\t\tff: ff,\n\t\tr:  f,\n\t}, nil\n}\n\nfunc (ff *fsFile) Release() {\n\tif ff.f != nil {\n\t\tff.f.Close()\n\n\t\tif ff.isBig() {\n\t\t\tff.bigFilesLock.Lock()\n\t\t\tfor _, r := range ff.bigFiles {\n\t\t\t\tr.f.Close()\n\t\t\t}\n\t\t\tff.bigFilesLock.Unlock()\n\t\t}\n\t}\n}\n\nfunc (ff *fsFile) decReadersCount() {\n\tff.h.cacheLock.Lock()\n\tff.readersCount--\n\tif ff.readersCount < 0 {\n\t\tpanic(\"BUG: negative fsFile.readersCount!\")\n\t}\n\tff.h.cacheLock.Unlock()\n}\n\n// bigFileReader attempts to trigger sendfile\n// for sending big files over the wire.\ntype bigFileReader struct {\n\tf  *os.File\n\tff *fsFile\n\tr  io.Reader\n\tlr io.LimitedReader\n}\n\nfunc (r *bigFileReader) UpdateByteRange(startPos, endPos int) error {\n\tif _, err := r.f.Seek(int64(startPos), 0); err != nil {\n\t\treturn err\n\t}\n\tr.r = &r.lr\n\tr.lr.R = r.f\n\tr.lr.N = int64(endPos - startPos + 1)\n\treturn nil\n}\n\nfunc (r *bigFileReader) Read(p []byte) (int, error) {\n\treturn r.r.Read(p)\n}\n\nfunc (r *bigFileReader) WriteTo(w io.Writer) (int64, error) {\n\tif rf, ok := w.(io.ReaderFrom); ok {\n\t\t// fast path. Senfile must be triggered\n\t\treturn rf.ReadFrom(r.r)\n\t}\n\n\t// slow path\n\treturn copyZeroAlloc(w, r.r)\n}\n\nfunc (r *bigFileReader) Close() error {\n\tr.r = r.f\n\tn, err := r.f.Seek(0, 0)\n\tif err == nil {\n\t\tif n != 0 {\n\t\t\tpanic(\"BUG: File.Seek(0,0) returned (non-zero, nil)\")\n\t\t}\n\n\t\tff := r.ff\n\t\tff.bigFilesLock.Lock()\n\t\tff.bigFiles = append(ff.bigFiles, r)\n\t\tff.bigFilesLock.Unlock()\n\t} else {\n\t\tr.f.Close()\n\t}\n\tr.ff.decReadersCount()\n\treturn err\n}\n\ntype fsSmallFileReader struct {\n\tff       *fsFile\n\tstartPos int\n\tendPos   int\n}\n\nfunc (r *fsSmallFileReader) Close() error {\n\tff := r.ff\n\tff.decReadersCount()\n\tr.ff = nil\n\tr.startPos = 0\n\tr.endPos = 0\n\tff.h.smallFileReaderPool.Put(r)\n\treturn nil\n}\n\nfunc (r *fsSmallFileReader) UpdateByteRange(startPos, endPos int) error {\n\tr.startPos = startPos\n\tr.endPos = endPos + 1\n\treturn nil\n}\n\nfunc (r *fsSmallFileReader) Read(p []byte) (int, error) {\n\ttailLen := r.endPos - r.startPos\n\tif tailLen <= 0 {\n\t\treturn 0, io.EOF\n\t}\n\tif len(p) > tailLen {\n\t\tp = p[:tailLen]\n\t}\n\n\tff := r.ff\n\tif ff.f != nil {\n\t\tn, err := ff.f.ReadAt(p, int64(r.startPos))\n\t\tr.startPos += n\n\t\treturn n, err\n\t}\n\n\tn := copy(p, ff.dirIndex[r.startPos:])\n\tr.startPos += n\n\treturn n, nil\n}\n\nfunc (r *fsSmallFileReader) WriteTo(w io.Writer) (int64, error) {\n\tff := r.ff\n\n\tvar n int\n\tvar err error\n\tif ff.f == nil {\n\t\tn, err = w.Write(ff.dirIndex[r.startPos:r.endPos])\n\t\treturn int64(n), err\n\t}\n\n\tif rf, ok := w.(io.ReaderFrom); ok {\n\t\treturn rf.ReadFrom(r)\n\t}\n\n\tcurPos := r.startPos\n\tbufv := copyBufPool.Get()\n\tbuf := bufv.([]byte)\n\tfor err == nil {\n\t\ttailLen := r.endPos - curPos\n\t\tif tailLen <= 0 {\n\t\t\tbreak\n\t\t}\n\t\tif len(buf) > tailLen {\n\t\t\tbuf = buf[:tailLen]\n\t\t}\n\t\tn, err = ff.f.ReadAt(buf, int64(curPos))\n\t\tnw, errw := w.Write(buf[:n])\n\t\tcurPos += nw\n\t\tif errw == nil && nw != n {\n\t\t\tpanic(\"BUG: Write(p) returned (n, nil), where n != len(p)\")\n\t\t}\n\t\tif err == nil {\n\t\t\terr = errw\n\t\t}\n\t}\n\tcopyBufPool.Put(bufv)\n\n\tif err == io.EOF {\n\t\terr = nil\n\t}\n\treturn int64(curPos - r.startPos), err\n}\n\nfunc (h *fsHandler) cleanCache(pendingFiles []*fsFile) []*fsFile {\n\tvar filesToRelease []*fsFile\n\n\th.cacheLock.Lock()\n\n\t// Close files which couldn't be closed before due to non-zero\n\t// readers count on the previous run.\n\tvar remainingFiles []*fsFile\n\tfor _, ff := range pendingFiles {\n\t\tif ff.readersCount > 0 {\n\t\t\tremainingFiles = append(remainingFiles, ff)\n\t\t} else {\n\t\t\tfilesToRelease = append(filesToRelease, ff)\n\t\t}\n\t}\n\tpendingFiles = remainingFiles\n\n\tpendingFiles, filesToRelease = cleanCacheNolock(h.cache, pendingFiles, filesToRelease, h.cacheDuration)\n\tpendingFiles, filesToRelease = cleanCacheNolock(h.cacheBrotli, pendingFiles, filesToRelease, h.cacheDuration)\n\tpendingFiles, filesToRelease = cleanCacheNolock(h.cacheGzip, pendingFiles, filesToRelease, h.cacheDuration)\n\n\th.cacheLock.Unlock()\n\n\tfor _, ff := range filesToRelease {\n\t\tff.Release()\n\t}\n\n\treturn pendingFiles\n}\n\nfunc cleanCacheNolock(cache map[string]*fsFile, pendingFiles, filesToRelease []*fsFile, cacheDuration time.Duration) ([]*fsFile, []*fsFile) {\n\tt := time.Now()\n\tfor k, ff := range cache {\n\t\tif t.Sub(ff.t) > cacheDuration {\n\t\t\tif ff.readersCount > 0 {\n\t\t\t\t// There are pending readers on stale file handle,\n\t\t\t\t// so we cannot close it. Put it into pendingFiles\n\t\t\t\t// so it will be closed later.\n\t\t\t\tpendingFiles = append(pendingFiles, ff)\n\t\t\t} else {\n\t\t\t\tfilesToRelease = append(filesToRelease, ff)\n\t\t\t}\n\t\t\tdelete(cache, k)\n\t\t}\n\t}\n\treturn pendingFiles, filesToRelease\n}\n\nfunc (h *fsHandler) handleRequest(ctx *RequestCtx) {\n\tvar path []byte\n\tif h.pathRewrite != nil {\n\t\tpath = h.pathRewrite(ctx)\n\t} else {\n\t\tpath = ctx.Path()\n\t}\n\thasTrailingSlash := len(path) > 0 && path[len(path)-1] == '/'\n\tpath = stripTrailingSlashes(path)\n\n\tif n := bytes.IndexByte(path, 0); n >= 0 {\n\t\tctx.Logger().Printf(\"cannot serve path with nil byte at position %d: %q\", n, path)\n\t\tctx.Error(\"Are you a hacker?\", StatusBadRequest)\n\t\treturn\n\t}\n\tif h.pathRewrite != nil {\n\t\t// There is no need to check for '/../' if path = ctx.Path(),\n\t\t// since ctx.Path must normalize and sanitize the path.\n\n\t\tif n := bytes.Index(path, strSlashDotDotSlash); n >= 0 {\n\t\t\tctx.Logger().Printf(\"cannot serve path with '/../' at position %d due to security reasons: %q\", n, path)\n\t\t\tctx.Error(\"Internal Server Error\", StatusInternalServerError)\n\t\t\treturn\n\t\t}\n\t}\n\n\tmustCompress := false\n\tfileCache := h.cache\n\tfileEncoding := \"\"\n\tbyteRange := ctx.Request.Header.peek(strRange)\n\tif len(byteRange) == 0 && h.compress {\n\t\tif h.compressBrotli && ctx.Request.Header.HasAcceptEncodingBytes(strBr) {\n\t\t\tmustCompress = true\n\t\t\tfileCache = h.cacheBrotli\n\t\t\tfileEncoding = \"br\"\n\t\t} else if ctx.Request.Header.HasAcceptEncodingBytes(strGzip) {\n\t\t\tmustCompress = true\n\t\t\tfileCache = h.cacheGzip\n\t\t\tfileEncoding = \"gzip\"\n\t\t}\n\t}\n\n\th.cacheLock.Lock()\n\tff, ok := fileCache[string(path)]\n\tif ok {\n\t\tff.readersCount++\n\t}\n\th.cacheLock.Unlock()\n\n\tif !ok {\n\t\tpathStr := string(path)\n\t\tfilePath := h.root + pathStr\n\t\tvar err error\n\t\tff, err = h.openFSFile(filePath, mustCompress, fileEncoding)\n\t\tif mustCompress && err == errNoCreatePermission {\n\t\t\tctx.Logger().Printf(\"insufficient permissions for saving compressed file for %q. Serving uncompressed file. \"+\n\t\t\t\t\"Allow write access to the directory with this file in order to improve fasthttp performance\", filePath)\n\t\t\tmustCompress = false\n\t\t\tff, err = h.openFSFile(filePath, mustCompress, fileEncoding)\n\t\t}\n\t\tif err == errDirIndexRequired {\n\t\t\tif !hasTrailingSlash {\n\t\t\t\tctx.RedirectBytes(append(path, '/'), StatusFound)\n\t\t\t\treturn\n\t\t\t}\n\t\t\tff, err = h.openIndexFile(ctx, filePath, mustCompress, fileEncoding)\n\t\t\tif err != nil {\n\t\t\t\tctx.Logger().Printf(\"cannot open dir index %q: %s\", filePath, err)\n\t\t\t\tctx.Error(\"Directory index is forbidden\", StatusForbidden)\n\t\t\t\treturn\n\t\t\t}\n\t\t} else if err != nil {\n\t\t\tctx.Logger().Printf(\"cannot open file %q: %s\", filePath, err)\n\t\t\tif h.pathNotFound == nil {\n\t\t\t\tctx.Error(\"Cannot open requested path\", StatusNotFound)\n\t\t\t} else {\n\t\t\t\tctx.SetStatusCode(StatusNotFound)\n\t\t\t\th.pathNotFound(ctx)\n\t\t\t}\n\t\t\treturn\n\t\t}\n\n\t\th.cacheLock.Lock()\n\t\tff1, ok := fileCache[pathStr]\n\t\tif !ok {\n\t\t\tfileCache[pathStr] = ff\n\t\t\tff.readersCount++\n\t\t} else {\n\t\t\tff1.readersCount++\n\t\t}\n\t\th.cacheLock.Unlock()\n\n\t\tif ok {\n\t\t\t// The file has been already opened by another\n\t\t\t// goroutine, so close the current file and use\n\t\t\t// the file opened by another goroutine instead.\n\t\t\tff.Release()\n\t\t\tff = ff1\n\t\t}\n\t}\n\n\tif !ctx.IfModifiedSince(ff.lastModified) {\n\t\tff.decReadersCount()\n\t\tctx.NotModified()\n\t\treturn\n\t}\n\n\tr, err := ff.NewReader()\n\tif err != nil {\n\t\tctx.Logger().Printf(\"cannot obtain file reader for path=%q: %s\", path, err)\n\t\tctx.Error(\"Internal Server Error\", StatusInternalServerError)\n\t\treturn\n\t}\n\n\thdr := &ctx.Response.Header\n\tif ff.compressed {\n\t\tif fileEncoding == \"br\" {\n\t\t\thdr.SetCanonical(strContentEncoding, strBr)\n\t\t} else if fileEncoding == \"gzip\" {\n\t\t\thdr.SetCanonical(strContentEncoding, strGzip)\n\t\t}\n\t}\n\n\tstatusCode := StatusOK\n\tcontentLength := ff.contentLength\n\tif h.acceptByteRange {\n\t\thdr.SetCanonical(strAcceptRanges, strBytes)\n\t\tif len(byteRange) > 0 {\n\t\t\tstartPos, endPos, err := ParseByteRange(byteRange, contentLength)\n\t\t\tif err != nil {\n\t\t\t\tr.(io.Closer).Close()\n\t\t\t\tctx.Logger().Printf(\"cannot parse byte range %q for path=%q: %s\", byteRange, path, err)\n\t\t\t\tctx.Error(\"Range Not Satisfiable\", StatusRequestedRangeNotSatisfiable)\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tif err = r.(byteRangeUpdater).UpdateByteRange(startPos, endPos); err != nil {\n\t\t\t\tr.(io.Closer).Close()\n\t\t\t\tctx.Logger().Printf(\"cannot seek byte range %q for path=%q: %s\", byteRange, path, err)\n\t\t\t\tctx.Error(\"Internal Server Error\", StatusInternalServerError)\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\thdr.SetContentRange(startPos, endPos, contentLength)\n\t\t\tcontentLength = endPos - startPos + 1\n\t\t\tstatusCode = StatusPartialContent\n\t\t}\n\t}\n\n\thdr.SetCanonical(strLastModified, ff.lastModifiedStr)\n\tif !ctx.IsHead() {\n\t\tctx.SetBodyStream(r, contentLength)\n\t} else {\n\t\tctx.Response.ResetBody()\n\t\tctx.Response.SkipBody = true\n\t\tctx.Response.Header.SetContentLength(contentLength)\n\t\tif rc, ok := r.(io.Closer); ok {\n\t\t\tif err := rc.Close(); err != nil {\n\t\t\t\tctx.Logger().Printf(\"cannot close file reader: %s\", err)\n\t\t\t\tctx.Error(\"Internal Server Error\", StatusInternalServerError)\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n\thdr.noDefaultContentType = true\n\tif len(hdr.ContentType()) == 0 {\n\t\tctx.SetContentType(ff.contentType)\n\t}\n\tctx.SetStatusCode(statusCode)\n}\n\ntype byteRangeUpdater interface {\n\tUpdateByteRange(startPos, endPos int) error\n}\n\n// ParseByteRange parses 'Range: bytes=...' header value.\n//\n// It follows https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35 .\nfunc ParseByteRange(byteRange []byte, contentLength int) (startPos, endPos int, err error) {\n\tb := byteRange\n\tif !bytes.HasPrefix(b, strBytes) {\n\t\treturn 0, 0, fmt.Errorf(\"unsupported range units: %q. Expecting %q\", byteRange, strBytes)\n\t}\n\n\tb = b[len(strBytes):]\n\tif len(b) == 0 || b[0] != '=' {\n\t\treturn 0, 0, fmt.Errorf(\"missing byte range in %q\", byteRange)\n\t}\n\tb = b[1:]\n\n\tn := bytes.IndexByte(b, '-')\n\tif n < 0 {\n\t\treturn 0, 0, fmt.Errorf(\"missing the end position of byte range in %q\", byteRange)\n\t}\n\n\tif n == 0 {\n\t\tv, err := ParseUint(b[n+1:])\n\t\tif err != nil {\n\t\t\treturn 0, 0, err\n\t\t}\n\t\tstartPos := contentLength - v\n\t\tif startPos < 0 {\n\t\t\tstartPos = 0\n\t\t}\n\t\treturn startPos, contentLength - 1, nil\n\t}\n\n\tif startPos, err = ParseUint(b[:n]); err != nil {\n\t\treturn 0, 0, err\n\t}\n\tif startPos >= contentLength {\n\t\treturn 0, 0, fmt.Errorf(\"the start position of byte range cannot exceed %d. byte range %q\", contentLength-1, byteRange)\n\t}\n\n\tb = b[n+1:]\n\tif len(b) == 0 {\n\t\treturn startPos, contentLength - 1, nil\n\t}\n\n\tif endPos, err = ParseUint(b); err != nil {\n\t\treturn 0, 0, err\n\t}\n\tif endPos >= contentLength {\n\t\tendPos = contentLength - 1\n\t}\n\tif endPos < startPos {\n\t\treturn 0, 0, fmt.Errorf(\"the start position of byte range cannot exceed the end position. byte range %q\", byteRange)\n\t}\n\treturn startPos, endPos, nil\n}\n\nfunc (h *fsHandler) openIndexFile(ctx *RequestCtx, dirPath string, mustCompress bool, fileEncoding string) (*fsFile, error) {\n\tfor _, indexName := range h.indexNames {\n\t\tindexFilePath := dirPath + \"/\" + indexName\n\t\tff, err := h.openFSFile(indexFilePath, mustCompress, fileEncoding)\n\t\tif err == nil {\n\t\t\treturn ff, nil\n\t\t}\n\t\tif !os.IsNotExist(err) {\n\t\t\treturn nil, fmt.Errorf(\"cannot open file %q: %s\", indexFilePath, err)\n\t\t}\n\t}\n\n\tif !h.generateIndexPages {\n\t\treturn nil, fmt.Errorf(\"cannot access directory without index page. Directory %q\", dirPath)\n\t}\n\n\treturn h.createDirIndex(ctx.URI(), dirPath, mustCompress, fileEncoding)\n}\n\nvar (\n\terrDirIndexRequired   = errors.New(\"directory index required\")\n\terrNoCreatePermission = errors.New(\"no 'create file' permissions\")\n)\n\nfunc (h *fsHandler) createDirIndex(base *URI, dirPath string, mustCompress bool, fileEncoding string) (*fsFile, error) {\n\tw := &bytebufferpool.ByteBuffer{}\n\n\tbasePathEscaped := html.EscapeString(string(base.Path()))\n\tfmt.Fprintf(w, \"<html><head><title>%s</title><style>.dir { font-weight: bold }</style></head><body>\", basePathEscaped)\n\tfmt.Fprintf(w, \"<h1>%s</h1>\", basePathEscaped)\n\tfmt.Fprintf(w, \"<ul>\")\n\n\tif len(basePathEscaped) > 1 {\n\t\tvar parentURI URI\n\t\tbase.CopyTo(&parentURI)\n\t\tparentURI.Update(string(base.Path()) + \"/..\")\n\t\tparentPathEscaped := html.EscapeString(string(parentURI.Path()))\n\t\tfmt.Fprintf(w, `<li><a href=\"%s\" class=\"dir\">..</a></li>`, parentPathEscaped)\n\t}\n\n\tf, err := os.Open(dirPath)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tfileinfos, err := f.Readdir(0)\n\tf.Close()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tfm := make(map[string]os.FileInfo, len(fileinfos))\n\tfilenames := make([]string, 0, len(fileinfos))\nnestedContinue:\n\tfor _, fi := range fileinfos {\n\t\tname := fi.Name()\n\t\tfor _, cfs := range h.compressedFileSuffixes {\n\t\t\tif strings.HasSuffix(name, cfs) {\n\t\t\t\t// Do not show compressed files on index page.\n\t\t\t\tcontinue nestedContinue\n\t\t\t}\n\t\t}\n\t\tfm[name] = fi\n\t\tfilenames = append(filenames, name)\n\t}\n\n\tvar u URI\n\tbase.CopyTo(&u)\n\tu.Update(string(u.Path()) + \"/\")\n\n\tsort.Strings(filenames)\n\tfor _, name := range filenames {\n\t\tu.Update(name)\n\t\tpathEscaped := html.EscapeString(string(u.Path()))\n\t\tfi := fm[name]\n\t\tauxStr := \"dir\"\n\t\tclassName := \"dir\"\n\t\tif !fi.IsDir() {\n\t\t\tauxStr = fmt.Sprintf(\"file, %d bytes\", fi.Size())\n\t\t\tclassName = \"file\"\n\t\t}\n\t\tfmt.Fprintf(w, `<li><a href=\"%s\" class=\"%s\">%s</a>, %s, last modified %s</li>`,\n\t\t\tpathEscaped, className, html.EscapeString(name), auxStr, fsModTime(fi.ModTime()))\n\t}\n\n\tfmt.Fprintf(w, \"</ul></body></html>\")\n\n\tif mustCompress {\n\t\tvar zbuf bytebufferpool.ByteBuffer\n\t\tif fileEncoding == \"br\" {\n\t\t\tzbuf.B = AppendBrotliBytesLevel(zbuf.B, w.B, CompressDefaultCompression)\n\t\t} else if fileEncoding == \"gzip\" {\n\t\t\tzbuf.B = AppendGzipBytesLevel(zbuf.B, w.B, CompressDefaultCompression)\n\t\t}\n\t\tw = &zbuf\n\t}\n\n\tdirIndex := w.B\n\tlastModified := time.Now()\n\tff := &fsFile{\n\t\th:               h,\n\t\tdirIndex:        dirIndex,\n\t\tcontentType:     \"text/html; charset=utf-8\",\n\t\tcontentLength:   len(dirIndex),\n\t\tcompressed:      mustCompress,\n\t\tlastModified:    lastModified,\n\t\tlastModifiedStr: AppendHTTPDate(nil, lastModified),\n\n\t\tt: lastModified,\n\t}\n\treturn ff, nil\n}\n\nconst (\n\tfsMinCompressRatio        = 0.8\n\tfsMaxCompressibleFileSize = 8 * 1024 * 1024\n)\n\nfunc (h *fsHandler) compressAndOpenFSFile(filePath string, fileEncoding string) (*fsFile, error) {\n\tf, err := os.Open(filePath)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tfileInfo, err := f.Stat()\n\tif err != nil {\n\t\tf.Close()\n\t\treturn nil, fmt.Errorf(\"cannot obtain info for file %q: %s\", filePath, err)\n\t}\n\n\tif fileInfo.IsDir() {\n\t\tf.Close()\n\t\treturn nil, errDirIndexRequired\n\t}\n\n\tif strings.HasSuffix(filePath, h.compressedFileSuffixes[fileEncoding]) ||\n\t\tfileInfo.Size() > fsMaxCompressibleFileSize ||\n\t\t!isFileCompressible(f, fsMinCompressRatio) {\n\t\treturn h.newFSFile(f, fileInfo, false, \"\")\n\t}\n\n\tcompressedFilePath := filePath + h.compressedFileSuffixes[fileEncoding]\n\tabsPath, err := filepath.Abs(compressedFilePath)\n\tif err != nil {\n\t\tf.Close()\n\t\treturn nil, fmt.Errorf(\"cannot determine absolute path for %q: %s\", compressedFilePath, err)\n\t}\n\n\tflock := getFileLock(absPath)\n\tflock.Lock()\n\tff, err := h.compressFileNolock(f, fileInfo, filePath, compressedFilePath, fileEncoding)\n\tflock.Unlock()\n\n\treturn ff, err\n}\n\nfunc (h *fsHandler) compressFileNolock(f *os.File, fileInfo os.FileInfo, filePath, compressedFilePath string, fileEncoding string) (*fsFile, error) {\n\t// Attempt to open compressed file created by another concurrent\n\t// goroutine.\n\t// It is safe opening such a file, since the file creation\n\t// is guarded by file mutex - see getFileLock call.\n\tif _, err := os.Stat(compressedFilePath); err == nil {\n\t\tf.Close()\n\t\treturn h.newCompressedFSFile(compressedFilePath, fileEncoding)\n\t}\n\n\t// Create temporary file, so concurrent goroutines don't use\n\t// it until it is created.\n\ttmpFilePath := compressedFilePath + \".tmp\"\n\tzf, err := os.Create(tmpFilePath)\n\tif err != nil {\n\t\tf.Close()\n\t\tif !os.IsPermission(err) {\n\t\t\treturn nil, fmt.Errorf(\"cannot create temporary file %q: %s\", tmpFilePath, err)\n\t\t}\n\t\treturn nil, errNoCreatePermission\n\t}\n\tif fileEncoding == \"br\" {\n\t\tzw := acquireStacklessBrotliWriter(zf, CompressDefaultCompression)\n\t\t_, err = copyZeroAlloc(zw, f)\n\t\tif err1 := zw.Flush(); err == nil {\n\t\t\terr = err1\n\t\t}\n\t\treleaseStacklessBrotliWriter(zw, CompressDefaultCompression)\n\t} else if fileEncoding == \"gzip\" {\n\t\tzw := acquireStacklessGzipWriter(zf, CompressDefaultCompression)\n\t\t_, err = copyZeroAlloc(zw, f)\n\t\tif err1 := zw.Flush(); err == nil {\n\t\t\terr = err1\n\t\t}\n\t\treleaseStacklessGzipWriter(zw, CompressDefaultCompression)\n\t}\n\tzf.Close()\n\tf.Close()\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"error when compressing file %q to %q: %s\", filePath, tmpFilePath, err)\n\t}\n\tif err = os.Chtimes(tmpFilePath, time.Now(), fileInfo.ModTime()); err != nil {\n\t\treturn nil, fmt.Errorf(\"cannot change modification time to %s for tmp file %q: %s\",\n\t\t\tfileInfo.ModTime(), tmpFilePath, err)\n\t}\n\tif err = os.Rename(tmpFilePath, compressedFilePath); err != nil {\n\t\treturn nil, fmt.Errorf(\"cannot move compressed file from %q to %q: %s\", tmpFilePath, compressedFilePath, err)\n\t}\n\treturn h.newCompressedFSFile(compressedFilePath, fileEncoding)\n}\n\nfunc (h *fsHandler) newCompressedFSFile(filePath string, fileEncoding string) (*fsFile, error) {\n\tf, err := os.Open(filePath)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"cannot open compressed file %q: %s\", filePath, err)\n\t}\n\tfileInfo, err := f.Stat()\n\tif err != nil {\n\t\tf.Close()\n\t\treturn nil, fmt.Errorf(\"cannot obtain info for compressed file %q: %s\", filePath, err)\n\t}\n\treturn h.newFSFile(f, fileInfo, true, fileEncoding)\n}\n\nfunc (h *fsHandler) openFSFile(filePath string, mustCompress bool, fileEncoding string) (*fsFile, error) {\n\tfilePathOriginal := filePath\n\tif mustCompress {\n\t\tfilePath += h.compressedFileSuffixes[fileEncoding]\n\t}\n\n\tf, err := os.Open(filePath)\n\tif err != nil {\n\t\tif mustCompress && os.IsNotExist(err) {\n\t\t\treturn h.compressAndOpenFSFile(filePathOriginal, fileEncoding)\n\t\t}\n\t\treturn nil, err\n\t}\n\n\tfileInfo, err := f.Stat()\n\tif err != nil {\n\t\tf.Close()\n\t\treturn nil, fmt.Errorf(\"cannot obtain info for file %q: %s\", filePath, err)\n\t}\n\n\tif fileInfo.IsDir() {\n\t\tf.Close()\n\t\tif mustCompress {\n\t\t\treturn nil, fmt.Errorf(\"directory with unexpected suffix found: %q. Suffix: %q\",\n\t\t\t\tfilePath, h.compressedFileSuffixes[fileEncoding])\n\t\t}\n\t\treturn nil, errDirIndexRequired\n\t}\n\n\tif mustCompress {\n\t\tfileInfoOriginal, err := os.Stat(filePathOriginal)\n\t\tif err != nil {\n\t\t\tf.Close()\n\t\t\treturn nil, fmt.Errorf(\"cannot obtain info for original file %q: %s\", filePathOriginal, err)\n\t\t}\n\n\t\t// Only re-create the compressed file if there was more than a second between the mod times.\n\t\t// On MacOS the gzip seems to truncate the nanoseconds in the mod time causing the original file\n\t\t// to look newer than the gzipped file.\n\t\tif fileInfoOriginal.ModTime().Sub(fileInfo.ModTime()) >= time.Second {\n\t\t\t// The compressed file became stale. Re-create it.\n\t\t\tf.Close()\n\t\t\tos.Remove(filePath)\n\t\t\treturn h.compressAndOpenFSFile(filePathOriginal, fileEncoding)\n\t\t}\n\t}\n\n\treturn h.newFSFile(f, fileInfo, mustCompress, fileEncoding)\n}\n\nfunc (h *fsHandler) newFSFile(f *os.File, fileInfo os.FileInfo, compressed bool, fileEncoding string) (*fsFile, error) {\n\tn := fileInfo.Size()\n\tcontentLength := int(n)\n\tif n != int64(contentLength) {\n\t\tf.Close()\n\t\treturn nil, fmt.Errorf(\"too big file: %d bytes\", n)\n\t}\n\n\t// detect content-type\n\text := fileExtension(fileInfo.Name(), compressed, h.compressedFileSuffixes[fileEncoding])\n\tcontentType := mime.TypeByExtension(ext)\n\tif len(contentType) == 0 {\n\t\tdata, err := readFileHeader(f, compressed, fileEncoding)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"cannot read header of the file %q: %s\", f.Name(), err)\n\t\t}\n\t\tcontentType = http.DetectContentType(data)\n\t}\n\n\tlastModified := fileInfo.ModTime()\n\tff := &fsFile{\n\t\th:               h,\n\t\tf:               f,\n\t\tcontentType:     contentType,\n\t\tcontentLength:   contentLength,\n\t\tcompressed:      compressed,\n\t\tlastModified:    lastModified,\n\t\tlastModifiedStr: AppendHTTPDate(nil, lastModified),\n\n\t\tt: time.Now(),\n\t}\n\treturn ff, nil\n}\n\nfunc readFileHeader(f *os.File, compressed bool, fileEncoding string) ([]byte, error) {\n\tr := io.Reader(f)\n\tvar (\n\t\tbr *brotli.Reader\n\t\tzr *gzip.Reader\n\t)\n\tif compressed {\n\t\tvar err error\n\t\tif fileEncoding == \"br\" {\n\t\t\tif br, err = acquireBrotliReader(f); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tr = br\n\t\t} else if fileEncoding == \"gzip\" {\n\t\t\tif zr, err = acquireGzipReader(f); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tr = zr\n\t\t}\n\t}\n\n\tlr := &io.LimitedReader{\n\t\tR: r,\n\t\tN: 512,\n\t}\n\tdata, err := ioutil.ReadAll(lr)\n\tif _, err := f.Seek(0, 0); err != nil {\n\t\treturn nil, err\n\t}\n\n\tif br != nil {\n\t\treleaseBrotliReader(br)\n\t}\n\n\tif zr != nil {\n\t\treleaseGzipReader(zr)\n\t}\n\n\treturn data, err\n}\n\nfunc stripLeadingSlashes(path []byte, stripSlashes int) []byte {\n\tfor stripSlashes > 0 && len(path) > 0 {\n\t\tif path[0] != '/' {\n\t\t\tpanic(\"BUG: path must start with slash\")\n\t\t}\n\t\tn := bytes.IndexByte(path[1:], '/')\n\t\tif n < 0 {\n\t\t\tpath = path[:0]\n\t\t\tbreak\n\t\t}\n\t\tpath = path[n+1:]\n\t\tstripSlashes--\n\t}\n\treturn path\n}\n\nfunc stripTrailingSlashes(path []byte) []byte {\n\tfor len(path) > 0 && path[len(path)-1] == '/' {\n\t\tpath = path[:len(path)-1]\n\t}\n\treturn path\n}\n\nfunc fileExtension(path string, compressed bool, compressedFileSuffix string) string {\n\tif compressed && strings.HasSuffix(path, compressedFileSuffix) {\n\t\tpath = path[:len(path)-len(compressedFileSuffix)]\n\t}\n\tn := strings.LastIndexByte(path, '.')\n\tif n < 0 {\n\t\treturn \"\"\n\t}\n\treturn path[n:]\n}\n\n// FileLastModified returns last modified time for the file.\nfunc FileLastModified(path string) (time.Time, error) {\n\tf, err := os.Open(path)\n\tif err != nil {\n\t\treturn zeroTime, err\n\t}\n\tfileInfo, err := f.Stat()\n\tf.Close()\n\tif err != nil {\n\t\treturn zeroTime, err\n\t}\n\treturn fsModTime(fileInfo.ModTime()), nil\n}\n\nfunc fsModTime(t time.Time) time.Time {\n\treturn t.In(time.UTC).Truncate(time.Second)\n}\n\nvar (\n\tfilesLockMap     = make(map[string]*sync.Mutex)\n\tfilesLockMapLock sync.Mutex\n)\n\nfunc getFileLock(absPath string) *sync.Mutex {\n\tfilesLockMapLock.Lock()\n\tflock := filesLockMap[absPath]\n\tif flock == nil {\n\t\tflock = &sync.Mutex{}\n\t\tfilesLockMap[absPath] = flock\n\t}\n\tfilesLockMapLock.Unlock()\n\treturn flock\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/go.mod",
    "content": "module github.com/valyala/fasthttp\n\ngo 1.11\n\nrequire (\n\tgithub.com/andybalholm/brotli v1.0.0\n\tgithub.com/klauspost/compress v1.10.7\n\tgithub.com/valyala/bytebufferpool v1.0.0\n\tgithub.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a\n\tgolang.org/x/crypto v0.0.0-20200622213623-75b288015ac9\n\tgolang.org/x/net v0.0.0-20201016165138-7b1cca2348c0\n\tgolang.org/x/sys v0.0.0-20200930185726-fdedc70b468f\n)\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/go.sum",
    "content": "github.com/andybalholm/brotli v1.0.0 h1:7UCwP93aiSfvWpapti8g88vVVGp2qqtGyePsSuDafo4=\ngithub.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=\ngithub.com/klauspost/compress v1.10.7 h1:7rix8v8GpI3ZBb0nSozFRgbtXKv+hOe+qfEpZqybrAg=\ngithub.com/klauspost/compress v1.10.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=\ngithub.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=\ngithub.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=\ngithub.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a h1:0R4NLDRDZX6JcmhJgXi5E4b8Wg84ihbmUKp/GvSPEzc=\ngithub.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio=\ngolang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 h1:VklqNMn3ovrHsnt90PveolxSbWFaJdECFbxSq0Mqo2M=\ngolang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI=\ngolang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20201016165138-7b1cca2348c0 h1:5kGOVHlq0euqwzgTC9Vu15p6fV1Wi0ArVi8da2urnVg=\ngolang.org/x/net v0.0.0-20201016165138-7b1cca2348c0/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=\ngolang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200930185726-fdedc70b468f h1:+Nyd8tzPX9R7BWHguqsrbFdRx3WQ/1ib8I44HXV5yTA=\ngolang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=\ngolang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=\ngolang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/header.go",
    "content": "package fasthttp\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"sync\"\n\t\"sync/atomic\"\n\t\"time\"\n)\n\nconst (\n\trChar = byte('\\r')\n\tnChar = byte('\\n')\n)\n\n// ResponseHeader represents HTTP response header.\n//\n// It is forbidden copying ResponseHeader instances.\n// Create new instances instead and use CopyTo.\n//\n// ResponseHeader instance MUST NOT be used from concurrently running\n// goroutines.\ntype ResponseHeader struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\tdisableNormalizing   bool\n\tnoHTTP11             bool\n\tconnectionClose      bool\n\tnoDefaultContentType bool\n\tnoDefaultDate        bool\n\n\tstatusCode         int\n\tcontentLength      int\n\tcontentLengthBytes []byte\n\n\tcontentType []byte\n\tserver      []byte\n\n\th     []argsKV\n\tbufKV argsKV\n\n\tcookies []argsKV\n}\n\n// RequestHeader represents HTTP request header.\n//\n// It is forbidden copying RequestHeader instances.\n// Create new instances instead and use CopyTo.\n//\n// RequestHeader instance MUST NOT be used from concurrently running\n// goroutines.\ntype RequestHeader struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\tdisableNormalizing bool\n\tnoHTTP11           bool\n\tconnectionClose    bool\n\n\t// These two fields have been moved close to other bool fields\n\t// for reducing RequestHeader object size.\n\tcookiesCollected bool\n\n\tcontentLength      int\n\tcontentLengthBytes []byte\n\n\tmethod      []byte\n\trequestURI  []byte\n\thost        []byte\n\tcontentType []byte\n\tuserAgent   []byte\n\n\th     []argsKV\n\tbufKV argsKV\n\n\tcookies []argsKV\n\n\t// stores an immutable copy of headers as they were received from the\n\t// wire.\n\trawHeaders []byte\n}\n\n// SetContentRange sets 'Content-Range: bytes startPos-endPos/contentLength'\n// header.\nfunc (h *ResponseHeader) SetContentRange(startPos, endPos, contentLength int) {\n\tb := h.bufKV.value[:0]\n\tb = append(b, strBytes...)\n\tb = append(b, ' ')\n\tb = AppendUint(b, startPos)\n\tb = append(b, '-')\n\tb = AppendUint(b, endPos)\n\tb = append(b, '/')\n\tb = AppendUint(b, contentLength)\n\th.bufKV.value = b\n\n\th.SetCanonical(strContentRange, h.bufKV.value)\n}\n\n// SetByteRange sets 'Range: bytes=startPos-endPos' header.\n//\n//     * If startPos is negative, then 'bytes=-startPos' value is set.\n//     * If endPos is negative, then 'bytes=startPos-' value is set.\nfunc (h *RequestHeader) SetByteRange(startPos, endPos int) {\n\tb := h.bufKV.value[:0]\n\tb = append(b, strBytes...)\n\tb = append(b, '=')\n\tif startPos >= 0 {\n\t\tb = AppendUint(b, startPos)\n\t} else {\n\t\tendPos = -startPos\n\t}\n\tb = append(b, '-')\n\tif endPos >= 0 {\n\t\tb = AppendUint(b, endPos)\n\t}\n\th.bufKV.value = b\n\n\th.SetCanonical(strRange, h.bufKV.value)\n}\n\n// StatusCode returns response status code.\nfunc (h *ResponseHeader) StatusCode() int {\n\tif h.statusCode == 0 {\n\t\treturn StatusOK\n\t}\n\treturn h.statusCode\n}\n\n// SetStatusCode sets response status code.\nfunc (h *ResponseHeader) SetStatusCode(statusCode int) {\n\th.statusCode = statusCode\n}\n\n// SetLastModified sets 'Last-Modified' header to the given value.\nfunc (h *ResponseHeader) SetLastModified(t time.Time) {\n\th.bufKV.value = AppendHTTPDate(h.bufKV.value[:0], t)\n\th.SetCanonical(strLastModified, h.bufKV.value)\n}\n\n// ConnectionClose returns true if 'Connection: close' header is set.\nfunc (h *ResponseHeader) ConnectionClose() bool {\n\treturn h.connectionClose\n}\n\n// SetConnectionClose sets 'Connection: close' header.\nfunc (h *ResponseHeader) SetConnectionClose() {\n\th.connectionClose = true\n}\n\n// ResetConnectionClose clears 'Connection: close' header if it exists.\nfunc (h *ResponseHeader) ResetConnectionClose() {\n\tif h.connectionClose {\n\t\th.connectionClose = false\n\t\th.h = delAllArgsBytes(h.h, strConnection)\n\t}\n}\n\n// ConnectionClose returns true if 'Connection: close' header is set.\nfunc (h *RequestHeader) ConnectionClose() bool {\n\treturn h.connectionClose\n}\n\n// SetConnectionClose sets 'Connection: close' header.\nfunc (h *RequestHeader) SetConnectionClose() {\n\th.connectionClose = true\n}\n\n// ResetConnectionClose clears 'Connection: close' header if it exists.\nfunc (h *RequestHeader) ResetConnectionClose() {\n\tif h.connectionClose {\n\t\th.connectionClose = false\n\t\th.h = delAllArgsBytes(h.h, strConnection)\n\t}\n}\n\n// ConnectionUpgrade returns true if 'Connection: Upgrade' header is set.\nfunc (h *ResponseHeader) ConnectionUpgrade() bool {\n\treturn hasHeaderValue(h.Peek(HeaderConnection), strUpgrade)\n}\n\n// ConnectionUpgrade returns true if 'Connection: Upgrade' header is set.\nfunc (h *RequestHeader) ConnectionUpgrade() bool {\n\treturn hasHeaderValue(h.Peek(HeaderConnection), strUpgrade)\n}\n\n// PeekCookie is able to returns cookie by a given key from response.\nfunc (h *ResponseHeader) PeekCookie(key string) []byte {\n\treturn peekArgStr(h.cookies, key)\n}\n\n// ContentLength returns Content-Length header value.\n//\n// It may be negative:\n// -1 means Transfer-Encoding: chunked.\n// -2 means Transfer-Encoding: identity.\nfunc (h *ResponseHeader) ContentLength() int {\n\treturn h.contentLength\n}\n\n// SetContentLength sets Content-Length header value.\n//\n// Content-Length may be negative:\n// -1 means Transfer-Encoding: chunked.\n// -2 means Transfer-Encoding: identity.\nfunc (h *ResponseHeader) SetContentLength(contentLength int) {\n\tif h.mustSkipContentLength() {\n\t\treturn\n\t}\n\th.contentLength = contentLength\n\tif contentLength >= 0 {\n\t\th.contentLengthBytes = AppendUint(h.contentLengthBytes[:0], contentLength)\n\t\th.h = delAllArgsBytes(h.h, strTransferEncoding)\n\t} else {\n\t\th.contentLengthBytes = h.contentLengthBytes[:0]\n\t\tvalue := strChunked\n\t\tif contentLength == -2 {\n\t\t\th.SetConnectionClose()\n\t\t\tvalue = strIdentity\n\t\t}\n\t\th.h = setArgBytes(h.h, strTransferEncoding, value, argsHasValue)\n\t}\n}\n\nfunc (h *ResponseHeader) mustSkipContentLength() bool {\n\t// From http/1.1 specs:\n\t// All 1xx (informational), 204 (no content), and 304 (not modified) responses MUST NOT include a message-body\n\tstatusCode := h.StatusCode()\n\n\t// Fast path.\n\tif statusCode < 100 || statusCode == StatusOK {\n\t\treturn false\n\t}\n\n\t// Slow path.\n\treturn statusCode == StatusNotModified || statusCode == StatusNoContent || statusCode < 200\n}\n\n// ContentLength returns Content-Length header value.\n//\n// It may be negative:\n// -1 means Transfer-Encoding: chunked.\nfunc (h *RequestHeader) ContentLength() int {\n\treturn h.realContentLength()\n}\n\n// realContentLength returns the actual Content-Length set in the request,\n// including positive lengths for GET/HEAD requests.\nfunc (h *RequestHeader) realContentLength() int {\n\treturn h.contentLength\n}\n\n// SetContentLength sets Content-Length header value.\n//\n// Negative content-length sets 'Transfer-Encoding: chunked' header.\nfunc (h *RequestHeader) SetContentLength(contentLength int) {\n\th.contentLength = contentLength\n\tif contentLength >= 0 {\n\t\th.contentLengthBytes = AppendUint(h.contentLengthBytes[:0], contentLength)\n\t\th.h = delAllArgsBytes(h.h, strTransferEncoding)\n\t} else {\n\t\th.contentLengthBytes = h.contentLengthBytes[:0]\n\t\th.h = setArgBytes(h.h, strTransferEncoding, strChunked, argsHasValue)\n\t}\n}\n\nfunc (h *ResponseHeader) isCompressibleContentType() bool {\n\tcontentType := h.ContentType()\n\treturn bytes.HasPrefix(contentType, strTextSlash) ||\n\t\tbytes.HasPrefix(contentType, strApplicationSlash)\n}\n\n// ContentType returns Content-Type header value.\nfunc (h *ResponseHeader) ContentType() []byte {\n\tcontentType := h.contentType\n\tif !h.noDefaultContentType && len(h.contentType) == 0 {\n\t\tcontentType = defaultContentType\n\t}\n\treturn contentType\n}\n\n// SetContentType sets Content-Type header value.\nfunc (h *ResponseHeader) SetContentType(contentType string) {\n\th.contentType = append(h.contentType[:0], contentType...)\n}\n\n// SetContentTypeBytes sets Content-Type header value.\nfunc (h *ResponseHeader) SetContentTypeBytes(contentType []byte) {\n\th.contentType = append(h.contentType[:0], contentType...)\n}\n\n// Server returns Server header value.\nfunc (h *ResponseHeader) Server() []byte {\n\treturn h.server\n}\n\n// SetServer sets Server header value.\nfunc (h *ResponseHeader) SetServer(server string) {\n\th.server = append(h.server[:0], server...)\n}\n\n// SetServerBytes sets Server header value.\nfunc (h *ResponseHeader) SetServerBytes(server []byte) {\n\th.server = append(h.server[:0], server...)\n}\n\n// ContentType returns Content-Type header value.\nfunc (h *RequestHeader) ContentType() []byte {\n\treturn h.contentType\n}\n\n// SetContentType sets Content-Type header value.\nfunc (h *RequestHeader) SetContentType(contentType string) {\n\th.contentType = append(h.contentType[:0], contentType...)\n}\n\n// SetContentTypeBytes sets Content-Type header value.\nfunc (h *RequestHeader) SetContentTypeBytes(contentType []byte) {\n\th.contentType = append(h.contentType[:0], contentType...)\n}\n\n// SetMultipartFormBoundary sets the following Content-Type:\n// 'multipart/form-data; boundary=...'\n// where ... is substituted by the given boundary.\nfunc (h *RequestHeader) SetMultipartFormBoundary(boundary string) {\n\tb := h.bufKV.value[:0]\n\tb = append(b, strMultipartFormData...)\n\tb = append(b, ';', ' ')\n\tb = append(b, strBoundary...)\n\tb = append(b, '=')\n\tb = append(b, boundary...)\n\th.bufKV.value = b\n\n\th.SetContentTypeBytes(h.bufKV.value)\n}\n\n// SetMultipartFormBoundaryBytes sets the following Content-Type:\n// 'multipart/form-data; boundary=...'\n// where ... is substituted by the given boundary.\nfunc (h *RequestHeader) SetMultipartFormBoundaryBytes(boundary []byte) {\n\tb := h.bufKV.value[:0]\n\tb = append(b, strMultipartFormData...)\n\tb = append(b, ';', ' ')\n\tb = append(b, strBoundary...)\n\tb = append(b, '=')\n\tb = append(b, boundary...)\n\th.bufKV.value = b\n\n\th.SetContentTypeBytes(h.bufKV.value)\n}\n\n// MultipartFormBoundary returns boundary part\n// from 'multipart/form-data; boundary=...' Content-Type.\nfunc (h *RequestHeader) MultipartFormBoundary() []byte {\n\tb := h.ContentType()\n\tif !bytes.HasPrefix(b, strMultipartFormData) {\n\t\treturn nil\n\t}\n\tb = b[len(strMultipartFormData):]\n\tif len(b) == 0 || b[0] != ';' {\n\t\treturn nil\n\t}\n\n\tvar n int\n\tfor len(b) > 0 {\n\t\tn++\n\t\tfor len(b) > n && b[n] == ' ' {\n\t\t\tn++\n\t\t}\n\t\tb = b[n:]\n\t\tif !bytes.HasPrefix(b, strBoundary) {\n\t\t\tif n = bytes.IndexByte(b, ';'); n < 0 {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tb = b[len(strBoundary):]\n\t\tif len(b) == 0 || b[0] != '=' {\n\t\t\treturn nil\n\t\t}\n\t\tb = b[1:]\n\t\tif n = bytes.IndexByte(b, ';'); n >= 0 {\n\t\t\tb = b[:n]\n\t\t}\n\t\tif len(b) > 1 && b[0] == '\"' && b[len(b)-1] == '\"' {\n\t\t\tb = b[1 : len(b)-1]\n\t\t}\n\t\treturn b\n\t}\n\treturn nil\n}\n\n// Host returns Host header value.\nfunc (h *RequestHeader) Host() []byte {\n\treturn h.host\n}\n\n// SetHost sets Host header value.\nfunc (h *RequestHeader) SetHost(host string) {\n\th.host = append(h.host[:0], host...)\n}\n\n// SetHostBytes sets Host header value.\nfunc (h *RequestHeader) SetHostBytes(host []byte) {\n\th.host = append(h.host[:0], host...)\n}\n\n// UserAgent returns User-Agent header value.\nfunc (h *RequestHeader) UserAgent() []byte {\n\treturn h.userAgent\n}\n\n// SetUserAgent sets User-Agent header value.\nfunc (h *RequestHeader) SetUserAgent(userAgent string) {\n\th.userAgent = append(h.userAgent[:0], userAgent...)\n}\n\n// SetUserAgentBytes sets User-Agent header value.\nfunc (h *RequestHeader) SetUserAgentBytes(userAgent []byte) {\n\th.userAgent = append(h.userAgent[:0], userAgent...)\n}\n\n// Referer returns Referer header value.\nfunc (h *RequestHeader) Referer() []byte {\n\treturn h.PeekBytes(strReferer)\n}\n\n// SetReferer sets Referer header value.\nfunc (h *RequestHeader) SetReferer(referer string) {\n\th.SetBytesK(strReferer, referer)\n}\n\n// SetRefererBytes sets Referer header value.\nfunc (h *RequestHeader) SetRefererBytes(referer []byte) {\n\th.SetCanonical(strReferer, referer)\n}\n\n// Method returns HTTP request method.\nfunc (h *RequestHeader) Method() []byte {\n\tif len(h.method) == 0 {\n\t\treturn strGet\n\t}\n\treturn h.method\n}\n\n// SetMethod sets HTTP request method.\nfunc (h *RequestHeader) SetMethod(method string) {\n\th.method = append(h.method[:0], method...)\n}\n\n// SetMethodBytes sets HTTP request method.\nfunc (h *RequestHeader) SetMethodBytes(method []byte) {\n\th.method = append(h.method[:0], method...)\n}\n\n// RequestURI returns RequestURI from the first HTTP request line.\nfunc (h *RequestHeader) RequestURI() []byte {\n\trequestURI := h.requestURI\n\tif len(requestURI) == 0 {\n\t\trequestURI = strSlash\n\t}\n\treturn requestURI\n}\n\n// SetRequestURI sets RequestURI for the first HTTP request line.\n// RequestURI must be properly encoded.\n// Use URI.RequestURI for constructing proper RequestURI if unsure.\nfunc (h *RequestHeader) SetRequestURI(requestURI string) {\n\th.requestURI = append(h.requestURI[:0], requestURI...)\n}\n\n// SetRequestURIBytes sets RequestURI for the first HTTP request line.\n// RequestURI must be properly encoded.\n// Use URI.RequestURI for constructing proper RequestURI if unsure.\nfunc (h *RequestHeader) SetRequestURIBytes(requestURI []byte) {\n\th.requestURI = append(h.requestURI[:0], requestURI...)\n}\n\n// IsGet returns true if request method is GET.\nfunc (h *RequestHeader) IsGet() bool {\n\treturn bytes.Equal(h.Method(), strGet)\n}\n\n// IsPost returns true if request method is POST.\nfunc (h *RequestHeader) IsPost() bool {\n\treturn bytes.Equal(h.Method(), strPost)\n}\n\n// IsPut returns true if request method is PUT.\nfunc (h *RequestHeader) IsPut() bool {\n\treturn bytes.Equal(h.Method(), strPut)\n}\n\n// IsHead returns true if request method is HEAD.\nfunc (h *RequestHeader) IsHead() bool {\n\treturn bytes.Equal(h.Method(), strHead)\n}\n\n// IsDelete returns true if request method is DELETE.\nfunc (h *RequestHeader) IsDelete() bool {\n\treturn bytes.Equal(h.Method(), strDelete)\n}\n\n// IsConnect returns true if request method is CONNECT.\nfunc (h *RequestHeader) IsConnect() bool {\n\treturn bytes.Equal(h.Method(), strConnect)\n}\n\n// IsOptions returns true if request method is OPTIONS.\nfunc (h *RequestHeader) IsOptions() bool {\n\treturn bytes.Equal(h.Method(), strOptions)\n}\n\n// IsTrace returns true if request method is TRACE.\nfunc (h *RequestHeader) IsTrace() bool {\n\treturn bytes.Equal(h.Method(), strTrace)\n}\n\n// IsPatch returns true if request method is PATCH.\nfunc (h *RequestHeader) IsPatch() bool {\n\treturn bytes.Equal(h.Method(), strPatch)\n}\n\n// IsHTTP11 returns true if the request is HTTP/1.1.\nfunc (h *RequestHeader) IsHTTP11() bool {\n\treturn !h.noHTTP11\n}\n\n// IsHTTP11 returns true if the response is HTTP/1.1.\nfunc (h *ResponseHeader) IsHTTP11() bool {\n\treturn !h.noHTTP11\n}\n\n// HasAcceptEncoding returns true if the header contains\n// the given Accept-Encoding value.\nfunc (h *RequestHeader) HasAcceptEncoding(acceptEncoding string) bool {\n\th.bufKV.value = append(h.bufKV.value[:0], acceptEncoding...)\n\treturn h.HasAcceptEncodingBytes(h.bufKV.value)\n}\n\n// HasAcceptEncodingBytes returns true if the header contains\n// the given Accept-Encoding value.\nfunc (h *RequestHeader) HasAcceptEncodingBytes(acceptEncoding []byte) bool {\n\tae := h.peek(strAcceptEncoding)\n\tn := bytes.Index(ae, acceptEncoding)\n\tif n < 0 {\n\t\treturn false\n\t}\n\tb := ae[n+len(acceptEncoding):]\n\tif len(b) > 0 && b[0] != ',' {\n\t\treturn false\n\t}\n\tif n == 0 {\n\t\treturn true\n\t}\n\treturn ae[n-1] == ' '\n}\n\n// Len returns the number of headers set,\n// i.e. the number of times f is called in VisitAll.\nfunc (h *ResponseHeader) Len() int {\n\tn := 0\n\th.VisitAll(func(k, v []byte) { n++ })\n\treturn n\n}\n\n// Len returns the number of headers set,\n// i.e. the number of times f is called in VisitAll.\nfunc (h *RequestHeader) Len() int {\n\tn := 0\n\th.VisitAll(func(k, v []byte) { n++ })\n\treturn n\n}\n\n// DisableNormalizing disables header names' normalization.\n//\n// By default all the header names are normalized by uppercasing\n// the first letter and all the first letters following dashes,\n// while lowercasing all the other letters.\n// Examples:\n//\n//     * CONNECTION -> Connection\n//     * conteNT-tYPE -> Content-Type\n//     * foo-bar-baz -> Foo-Bar-Baz\n//\n// Disable header names' normalization only if know what are you doing.\nfunc (h *RequestHeader) DisableNormalizing() {\n\th.disableNormalizing = true\n}\n\n// EnableNormalizing enables header names' normalization.\n//\n// Header names are normalized by uppercasing the first letter and\n// all the first letters following dashes, while lowercasing all\n// the other letters.\n// Examples:\n//\n//     * CONNECTION -> Connection\n//     * conteNT-tYPE -> Content-Type\n//     * foo-bar-baz -> Foo-Bar-Baz\n//\n// This is enabled by default unless disabled using DisableNormalizing()\nfunc (h *RequestHeader) EnableNormalizing() {\n\th.disableNormalizing = false\n}\n\n// DisableNormalizing disables header names' normalization.\n//\n// By default all the header names are normalized by uppercasing\n// the first letter and all the first letters following dashes,\n// while lowercasing all the other letters.\n// Examples:\n//\n//     * CONNECTION -> Connection\n//     * conteNT-tYPE -> Content-Type\n//     * foo-bar-baz -> Foo-Bar-Baz\n//\n// Disable header names' normalization only if know what are you doing.\nfunc (h *ResponseHeader) DisableNormalizing() {\n\th.disableNormalizing = true\n}\n\n// EnableNormalizing enables header names' normalization.\n//\n// Header names are normalized by uppercasing the first letter and\n// all the first letters following dashes, while lowercasing all\n// the other letters.\n// Examples:\n//\n//     * CONNECTION -> Connection\n//     * conteNT-tYPE -> Content-Type\n//     * foo-bar-baz -> Foo-Bar-Baz\n//\n// This is enabled by default unless disabled using DisableNormalizing()\nfunc (h *ResponseHeader) EnableNormalizing() {\n\th.disableNormalizing = false\n}\n\n// SetNoDefaultContentType allows you to control if a default Content-Type header will be set (false) or not (true).\nfunc (h *ResponseHeader) SetNoDefaultContentType(noDefaultContentType bool) {\n\th.noDefaultContentType = noDefaultContentType\n}\n\n// Reset clears response header.\nfunc (h *ResponseHeader) Reset() {\n\th.disableNormalizing = false\n\th.SetNoDefaultContentType(false)\n\th.noDefaultDate = false\n\th.resetSkipNormalize()\n}\n\nfunc (h *ResponseHeader) resetSkipNormalize() {\n\th.noHTTP11 = false\n\th.connectionClose = false\n\n\th.statusCode = 0\n\th.contentLength = 0\n\th.contentLengthBytes = h.contentLengthBytes[:0]\n\n\th.contentType = h.contentType[:0]\n\th.server = h.server[:0]\n\n\th.h = h.h[:0]\n\th.cookies = h.cookies[:0]\n}\n\n// Reset clears request header.\nfunc (h *RequestHeader) Reset() {\n\th.disableNormalizing = false\n\th.resetSkipNormalize()\n}\n\nfunc (h *RequestHeader) resetSkipNormalize() {\n\th.noHTTP11 = false\n\th.connectionClose = false\n\n\th.contentLength = 0\n\th.contentLengthBytes = h.contentLengthBytes[:0]\n\n\th.method = h.method[:0]\n\th.requestURI = h.requestURI[:0]\n\th.host = h.host[:0]\n\th.contentType = h.contentType[:0]\n\th.userAgent = h.userAgent[:0]\n\n\th.h = h.h[:0]\n\th.cookies = h.cookies[:0]\n\th.cookiesCollected = false\n\n\th.rawHeaders = h.rawHeaders[:0]\n}\n\n// CopyTo copies all the headers to dst.\nfunc (h *ResponseHeader) CopyTo(dst *ResponseHeader) {\n\tdst.Reset()\n\n\tdst.disableNormalizing = h.disableNormalizing\n\tdst.noHTTP11 = h.noHTTP11\n\tdst.connectionClose = h.connectionClose\n\tdst.noDefaultContentType = h.noDefaultContentType\n\tdst.noDefaultDate = h.noDefaultDate\n\n\tdst.statusCode = h.statusCode\n\tdst.contentLength = h.contentLength\n\tdst.contentLengthBytes = append(dst.contentLengthBytes[:0], h.contentLengthBytes...)\n\tdst.contentType = append(dst.contentType[:0], h.contentType...)\n\tdst.server = append(dst.server[:0], h.server...)\n\tdst.h = copyArgs(dst.h, h.h)\n\tdst.cookies = copyArgs(dst.cookies, h.cookies)\n}\n\n// CopyTo copies all the headers to dst.\nfunc (h *RequestHeader) CopyTo(dst *RequestHeader) {\n\tdst.Reset()\n\n\tdst.disableNormalizing = h.disableNormalizing\n\tdst.noHTTP11 = h.noHTTP11\n\tdst.connectionClose = h.connectionClose\n\n\tdst.contentLength = h.contentLength\n\tdst.contentLengthBytes = append(dst.contentLengthBytes[:0], h.contentLengthBytes...)\n\tdst.method = append(dst.method[:0], h.method...)\n\tdst.requestURI = append(dst.requestURI[:0], h.requestURI...)\n\tdst.host = append(dst.host[:0], h.host...)\n\tdst.contentType = append(dst.contentType[:0], h.contentType...)\n\tdst.userAgent = append(dst.userAgent[:0], h.userAgent...)\n\tdst.h = copyArgs(dst.h, h.h)\n\tdst.cookies = copyArgs(dst.cookies, h.cookies)\n\tdst.cookiesCollected = h.cookiesCollected\n\tdst.rawHeaders = append(dst.rawHeaders[:0], h.rawHeaders...)\n}\n\n// VisitAll calls f for each header.\n//\n// f must not retain references to key and/or value after returning.\n// Copy key and/or value contents before returning if you need retaining them.\nfunc (h *ResponseHeader) VisitAll(f func(key, value []byte)) {\n\tif len(h.contentLengthBytes) > 0 {\n\t\tf(strContentLength, h.contentLengthBytes)\n\t}\n\tcontentType := h.ContentType()\n\tif len(contentType) > 0 {\n\t\tf(strContentType, contentType)\n\t}\n\tserver := h.Server()\n\tif len(server) > 0 {\n\t\tf(strServer, server)\n\t}\n\tif len(h.cookies) > 0 {\n\t\tvisitArgs(h.cookies, func(k, v []byte) {\n\t\t\tf(strSetCookie, v)\n\t\t})\n\t}\n\tvisitArgs(h.h, f)\n\tif h.ConnectionClose() {\n\t\tf(strConnection, strClose)\n\t}\n}\n\n// VisitAllCookie calls f for each response cookie.\n//\n// Cookie name is passed in key and the whole Set-Cookie header value\n// is passed in value on each f invocation. Value may be parsed\n// with Cookie.ParseBytes().\n//\n// f must not retain references to key and/or value after returning.\nfunc (h *ResponseHeader) VisitAllCookie(f func(key, value []byte)) {\n\tvisitArgs(h.cookies, f)\n}\n\n// VisitAllCookie calls f for each request cookie.\n//\n// f must not retain references to key and/or value after returning.\nfunc (h *RequestHeader) VisitAllCookie(f func(key, value []byte)) {\n\th.collectCookies()\n\tvisitArgs(h.cookies, f)\n}\n\n// VisitAll calls f for each header.\n//\n// f must not retain references to key and/or value after returning.\n// Copy key and/or value contents before returning if you need retaining them.\n//\n// To get the headers in order they were received use VisitAllInOrder.\nfunc (h *RequestHeader) VisitAll(f func(key, value []byte)) {\n\thost := h.Host()\n\tif len(host) > 0 {\n\t\tf(strHost, host)\n\t}\n\tif len(h.contentLengthBytes) > 0 {\n\t\tf(strContentLength, h.contentLengthBytes)\n\t}\n\tcontentType := h.ContentType()\n\tif len(contentType) > 0 {\n\t\tf(strContentType, contentType)\n\t}\n\tuserAgent := h.UserAgent()\n\tif len(userAgent) > 0 {\n\t\tf(strUserAgent, userAgent)\n\t}\n\n\th.collectCookies()\n\tif len(h.cookies) > 0 {\n\t\th.bufKV.value = appendRequestCookieBytes(h.bufKV.value[:0], h.cookies)\n\t\tf(strCookie, h.bufKV.value)\n\t}\n\tvisitArgs(h.h, f)\n\tif h.ConnectionClose() {\n\t\tf(strConnection, strClose)\n\t}\n}\n\n// VisitAllInOrder calls f for each header in the order they were received.\n//\n// f must not retain references to key and/or value after returning.\n// Copy key and/or value contents before returning if you need retaining them.\n//\n// This function is slightly slower than VisitAll because it has to reparse the\n// raw headers to get the order.\nfunc (h *RequestHeader) VisitAllInOrder(f func(key, value []byte)) {\n\tvar s headerScanner\n\ts.b = h.rawHeaders\n\ts.disableNormalizing = h.disableNormalizing\n\tfor s.next() {\n\t\tif len(s.key) > 0 {\n\t\t\tf(s.key, s.value)\n\t\t}\n\t}\n}\n\n// Del deletes header with the given key.\nfunc (h *ResponseHeader) Del(key string) {\n\tk := getHeaderKeyBytes(&h.bufKV, key, h.disableNormalizing)\n\th.del(k)\n}\n\n// DelBytes deletes header with the given key.\nfunc (h *ResponseHeader) DelBytes(key []byte) {\n\th.bufKV.key = append(h.bufKV.key[:0], key...)\n\tnormalizeHeaderKey(h.bufKV.key, h.disableNormalizing)\n\th.del(h.bufKV.key)\n}\n\nfunc (h *ResponseHeader) del(key []byte) {\n\tswitch string(key) {\n\tcase HeaderContentType:\n\t\th.contentType = h.contentType[:0]\n\tcase HeaderServer:\n\t\th.server = h.server[:0]\n\tcase HeaderSetCookie:\n\t\th.cookies = h.cookies[:0]\n\tcase HeaderContentLength:\n\t\th.contentLength = 0\n\t\th.contentLengthBytes = h.contentLengthBytes[:0]\n\tcase HeaderConnection:\n\t\th.connectionClose = false\n\t}\n\th.h = delAllArgsBytes(h.h, key)\n}\n\n// Del deletes header with the given key.\nfunc (h *RequestHeader) Del(key string) {\n\tk := getHeaderKeyBytes(&h.bufKV, key, h.disableNormalizing)\n\th.del(k)\n}\n\n// DelBytes deletes header with the given key.\nfunc (h *RequestHeader) DelBytes(key []byte) {\n\th.bufKV.key = append(h.bufKV.key[:0], key...)\n\tnormalizeHeaderKey(h.bufKV.key, h.disableNormalizing)\n\th.del(h.bufKV.key)\n}\n\nfunc (h *RequestHeader) del(key []byte) {\n\tswitch string(key) {\n\tcase HeaderHost:\n\t\th.host = h.host[:0]\n\tcase HeaderContentType:\n\t\th.contentType = h.contentType[:0]\n\tcase HeaderUserAgent:\n\t\th.userAgent = h.userAgent[:0]\n\tcase HeaderCookie:\n\t\th.cookies = h.cookies[:0]\n\tcase HeaderContentLength:\n\t\th.contentLength = 0\n\t\th.contentLengthBytes = h.contentLengthBytes[:0]\n\tcase HeaderConnection:\n\t\th.connectionClose = false\n\t}\n\th.h = delAllArgsBytes(h.h, key)\n}\n\n// Add adds the given 'key: value' header.\n//\n// Multiple headers with the same key may be added with this function.\n// Use Set for setting a single header for the given key.\nfunc (h *ResponseHeader) Add(key, value string) {\n\tk := getHeaderKeyBytes(&h.bufKV, key, h.disableNormalizing)\n\th.h = appendArg(h.h, b2s(k), value, argsHasValue)\n}\n\n// AddBytesK adds the given 'key: value' header.\n//\n// Multiple headers with the same key may be added with this function.\n// Use SetBytesK for setting a single header for the given key.\nfunc (h *ResponseHeader) AddBytesK(key []byte, value string) {\n\th.Add(b2s(key), value)\n}\n\n// AddBytesV adds the given 'key: value' header.\n//\n// Multiple headers with the same key may be added with this function.\n// Use SetBytesV for setting a single header for the given key.\nfunc (h *ResponseHeader) AddBytesV(key string, value []byte) {\n\th.Add(key, b2s(value))\n}\n\n// AddBytesKV adds the given 'key: value' header.\n//\n// Multiple headers with the same key may be added with this function.\n// Use SetBytesKV for setting a single header for the given key.\nfunc (h *ResponseHeader) AddBytesKV(key, value []byte) {\n\th.Add(b2s(key), b2s(value))\n}\n\n// Set sets the given 'key: value' header.\n//\n// Use Add for setting multiple header values under the same key.\nfunc (h *ResponseHeader) Set(key, value string) {\n\tinitHeaderKV(&h.bufKV, key, value, h.disableNormalizing)\n\th.SetCanonical(h.bufKV.key, h.bufKV.value)\n}\n\n// SetBytesK sets the given 'key: value' header.\n//\n// Use AddBytesK for setting multiple header values under the same key.\nfunc (h *ResponseHeader) SetBytesK(key []byte, value string) {\n\th.bufKV.value = append(h.bufKV.value[:0], value...)\n\th.SetBytesKV(key, h.bufKV.value)\n}\n\n// SetBytesV sets the given 'key: value' header.\n//\n// Use AddBytesV for setting multiple header values under the same key.\nfunc (h *ResponseHeader) SetBytesV(key string, value []byte) {\n\tk := getHeaderKeyBytes(&h.bufKV, key, h.disableNormalizing)\n\th.SetCanonical(k, value)\n}\n\n// SetBytesKV sets the given 'key: value' header.\n//\n// Use AddBytesKV for setting multiple header values under the same key.\nfunc (h *ResponseHeader) SetBytesKV(key, value []byte) {\n\th.bufKV.key = append(h.bufKV.key[:0], key...)\n\tnormalizeHeaderKey(h.bufKV.key, h.disableNormalizing)\n\th.SetCanonical(h.bufKV.key, value)\n}\n\n// SetCanonical sets the given 'key: value' header assuming that\n// key is in canonical form.\nfunc (h *ResponseHeader) SetCanonical(key, value []byte) {\n\tswitch string(key) {\n\tcase HeaderContentType:\n\t\th.SetContentTypeBytes(value)\n\tcase HeaderServer:\n\t\th.SetServerBytes(value)\n\tcase HeaderSetCookie:\n\t\tvar kv *argsKV\n\t\th.cookies, kv = allocArg(h.cookies)\n\t\tkv.key = getCookieKey(kv.key, value)\n\t\tkv.value = append(kv.value[:0], value...)\n\tcase HeaderContentLength:\n\t\tif contentLength, err := parseContentLength(value); err == nil {\n\t\t\th.contentLength = contentLength\n\t\t\th.contentLengthBytes = append(h.contentLengthBytes[:0], value...)\n\t\t}\n\tcase HeaderConnection:\n\t\tif bytes.Equal(strClose, value) {\n\t\t\th.SetConnectionClose()\n\t\t} else {\n\t\t\th.ResetConnectionClose()\n\t\t\th.h = setArgBytes(h.h, key, value, argsHasValue)\n\t\t}\n\tcase HeaderTransferEncoding:\n\t\t// Transfer-Encoding is managed automatically.\n\tcase HeaderDate:\n\t\t// Date is managed automatically.\n\tdefault:\n\t\th.h = setArgBytes(h.h, key, value, argsHasValue)\n\t}\n}\n\n// SetCookie sets the given response cookie.\n//\n// It is save re-using the cookie after the function returns.\nfunc (h *ResponseHeader) SetCookie(cookie *Cookie) {\n\th.cookies = setArgBytes(h.cookies, cookie.Key(), cookie.Cookie(), argsHasValue)\n}\n\n// SetCookie sets 'key: value' cookies.\nfunc (h *RequestHeader) SetCookie(key, value string) {\n\th.collectCookies()\n\th.cookies = setArg(h.cookies, key, value, argsHasValue)\n}\n\n// SetCookieBytesK sets 'key: value' cookies.\nfunc (h *RequestHeader) SetCookieBytesK(key []byte, value string) {\n\th.SetCookie(b2s(key), value)\n}\n\n// SetCookieBytesKV sets 'key: value' cookies.\nfunc (h *RequestHeader) SetCookieBytesKV(key, value []byte) {\n\th.SetCookie(b2s(key), b2s(value))\n}\n\n// DelClientCookie instructs the client to remove the given cookie.\n//\n// Use DelCookie if you want just removing the cookie from response header.\nfunc (h *ResponseHeader) DelClientCookie(key string) {\n\th.DelCookie(key)\n\n\tc := AcquireCookie()\n\tc.SetKey(key)\n\tc.SetExpire(CookieExpireDelete)\n\th.SetCookie(c)\n\tReleaseCookie(c)\n}\n\n// DelClientCookieBytes instructs the client to remove the given cookie.\n//\n// Use DelCookieBytes if you want just removing the cookie from response header.\nfunc (h *ResponseHeader) DelClientCookieBytes(key []byte) {\n\th.DelClientCookie(b2s(key))\n}\n\n// DelCookie removes cookie under the given key from response header.\n//\n// Note that DelCookie doesn't remove the cookie from the client.\n// Use DelClientCookie instead.\nfunc (h *ResponseHeader) DelCookie(key string) {\n\th.cookies = delAllArgs(h.cookies, key)\n}\n\n// DelCookieBytes removes cookie under the given key from response header.\n//\n// Note that DelCookieBytes doesn't remove the cookie from the client.\n// Use DelClientCookieBytes instead.\nfunc (h *ResponseHeader) DelCookieBytes(key []byte) {\n\th.DelCookie(b2s(key))\n}\n\n// DelCookie removes cookie under the given key.\nfunc (h *RequestHeader) DelCookie(key string) {\n\th.collectCookies()\n\th.cookies = delAllArgs(h.cookies, key)\n}\n\n// DelCookieBytes removes cookie under the given key.\nfunc (h *RequestHeader) DelCookieBytes(key []byte) {\n\th.DelCookie(b2s(key))\n}\n\n// DelAllCookies removes all the cookies from response headers.\nfunc (h *ResponseHeader) DelAllCookies() {\n\th.cookies = h.cookies[:0]\n}\n\n// DelAllCookies removes all the cookies from request headers.\nfunc (h *RequestHeader) DelAllCookies() {\n\th.collectCookies()\n\th.cookies = h.cookies[:0]\n}\n\n// Add adds the given 'key: value' header.\n//\n// Multiple headers with the same key may be added with this function.\n// Use Set for setting a single header for the given key.\nfunc (h *RequestHeader) Add(key, value string) {\n\tk := getHeaderKeyBytes(&h.bufKV, key, h.disableNormalizing)\n\th.h = appendArg(h.h, b2s(k), value, argsHasValue)\n}\n\n// AddBytesK adds the given 'key: value' header.\n//\n// Multiple headers with the same key may be added with this function.\n// Use SetBytesK for setting a single header for the given key.\nfunc (h *RequestHeader) AddBytesK(key []byte, value string) {\n\th.Add(b2s(key), value)\n}\n\n// AddBytesV adds the given 'key: value' header.\n//\n// Multiple headers with the same key may be added with this function.\n// Use SetBytesV for setting a single header for the given key.\nfunc (h *RequestHeader) AddBytesV(key string, value []byte) {\n\th.Add(key, b2s(value))\n}\n\n// AddBytesKV adds the given 'key: value' header.\n//\n// Multiple headers with the same key may be added with this function.\n// Use SetBytesKV for setting a single header for the given key.\nfunc (h *RequestHeader) AddBytesKV(key, value []byte) {\n\th.Add(b2s(key), b2s(value))\n}\n\n// Set sets the given 'key: value' header.\n//\n// Use Add for setting multiple header values under the same key.\nfunc (h *RequestHeader) Set(key, value string) {\n\tinitHeaderKV(&h.bufKV, key, value, h.disableNormalizing)\n\th.SetCanonical(h.bufKV.key, h.bufKV.value)\n}\n\n// SetBytesK sets the given 'key: value' header.\n//\n// Use AddBytesK for setting multiple header values under the same key.\nfunc (h *RequestHeader) SetBytesK(key []byte, value string) {\n\th.bufKV.value = append(h.bufKV.value[:0], value...)\n\th.SetBytesKV(key, h.bufKV.value)\n}\n\n// SetBytesV sets the given 'key: value' header.\n//\n// Use AddBytesV for setting multiple header values under the same key.\nfunc (h *RequestHeader) SetBytesV(key string, value []byte) {\n\tk := getHeaderKeyBytes(&h.bufKV, key, h.disableNormalizing)\n\th.SetCanonical(k, value)\n}\n\n// SetBytesKV sets the given 'key: value' header.\n//\n// Use AddBytesKV for setting multiple header values under the same key.\nfunc (h *RequestHeader) SetBytesKV(key, value []byte) {\n\th.bufKV.key = append(h.bufKV.key[:0], key...)\n\tnormalizeHeaderKey(h.bufKV.key, h.disableNormalizing)\n\th.SetCanonical(h.bufKV.key, value)\n}\n\n// SetCanonical sets the given 'key: value' header assuming that\n// key is in canonical form.\nfunc (h *RequestHeader) SetCanonical(key, value []byte) {\n\tswitch string(key) {\n\tcase HeaderHost:\n\t\th.SetHostBytes(value)\n\tcase HeaderContentType:\n\t\th.SetContentTypeBytes(value)\n\tcase HeaderUserAgent:\n\t\th.SetUserAgentBytes(value)\n\tcase HeaderCookie:\n\t\th.collectCookies()\n\t\th.cookies = parseRequestCookies(h.cookies, value)\n\tcase HeaderContentLength:\n\t\tif contentLength, err := parseContentLength(value); err == nil {\n\t\t\th.contentLength = contentLength\n\t\t\th.contentLengthBytes = append(h.contentLengthBytes[:0], value...)\n\t\t}\n\tcase HeaderConnection:\n\t\tif bytes.Equal(strClose, value) {\n\t\t\th.SetConnectionClose()\n\t\t} else {\n\t\t\th.ResetConnectionClose()\n\t\t\th.h = setArgBytes(h.h, key, value, argsHasValue)\n\t\t}\n\tcase HeaderTransferEncoding:\n\t\t// Transfer-Encoding is managed automatically.\n\tdefault:\n\t\th.h = setArgBytes(h.h, key, value, argsHasValue)\n\t}\n}\n\n// Peek returns header value for the given key.\n//\n// Returned value is valid until the next call to ResponseHeader.\n// Do not store references to returned value. Make copies instead.\nfunc (h *ResponseHeader) Peek(key string) []byte {\n\tk := getHeaderKeyBytes(&h.bufKV, key, h.disableNormalizing)\n\treturn h.peek(k)\n}\n\n// PeekBytes returns header value for the given key.\n//\n// Returned value is valid until the next call to ResponseHeader.\n// Do not store references to returned value. Make copies instead.\nfunc (h *ResponseHeader) PeekBytes(key []byte) []byte {\n\th.bufKV.key = append(h.bufKV.key[:0], key...)\n\tnormalizeHeaderKey(h.bufKV.key, h.disableNormalizing)\n\treturn h.peek(h.bufKV.key)\n}\n\n// Peek returns header value for the given key.\n//\n// Returned value is valid until the next call to RequestHeader.\n// Do not store references to returned value. Make copies instead.\nfunc (h *RequestHeader) Peek(key string) []byte {\n\tk := getHeaderKeyBytes(&h.bufKV, key, h.disableNormalizing)\n\treturn h.peek(k)\n}\n\n// PeekBytes returns header value for the given key.\n//\n// Returned value is valid until the next call to RequestHeader.\n// Do not store references to returned value. Make copies instead.\nfunc (h *RequestHeader) PeekBytes(key []byte) []byte {\n\th.bufKV.key = append(h.bufKV.key[:0], key...)\n\tnormalizeHeaderKey(h.bufKV.key, h.disableNormalizing)\n\treturn h.peek(h.bufKV.key)\n}\n\nfunc (h *ResponseHeader) peek(key []byte) []byte {\n\tswitch string(key) {\n\tcase HeaderContentType:\n\t\treturn h.ContentType()\n\tcase HeaderServer:\n\t\treturn h.Server()\n\tcase HeaderConnection:\n\t\tif h.ConnectionClose() {\n\t\t\treturn strClose\n\t\t}\n\t\treturn peekArgBytes(h.h, key)\n\tcase HeaderContentLength:\n\t\treturn h.contentLengthBytes\n\tcase HeaderSetCookie:\n\t\treturn appendResponseCookieBytes(nil, h.cookies)\n\tdefault:\n\t\treturn peekArgBytes(h.h, key)\n\t}\n}\n\nfunc (h *RequestHeader) peek(key []byte) []byte {\n\tswitch string(key) {\n\tcase HeaderHost:\n\t\treturn h.Host()\n\tcase HeaderContentType:\n\t\treturn h.ContentType()\n\tcase HeaderUserAgent:\n\t\treturn h.UserAgent()\n\tcase HeaderConnection:\n\t\tif h.ConnectionClose() {\n\t\t\treturn strClose\n\t\t}\n\t\treturn peekArgBytes(h.h, key)\n\tcase HeaderContentLength:\n\t\treturn h.contentLengthBytes\n\tcase HeaderCookie:\n\t\tif h.cookiesCollected {\n\t\t\treturn appendRequestCookieBytes(nil, h.cookies)\n\t\t}\n\t\treturn peekArgBytes(h.h, key)\n\tdefault:\n\t\treturn peekArgBytes(h.h, key)\n\t}\n}\n\n// Cookie returns cookie for the given key.\nfunc (h *RequestHeader) Cookie(key string) []byte {\n\th.collectCookies()\n\treturn peekArgStr(h.cookies, key)\n}\n\n// CookieBytes returns cookie for the given key.\nfunc (h *RequestHeader) CookieBytes(key []byte) []byte {\n\th.collectCookies()\n\treturn peekArgBytes(h.cookies, key)\n}\n\n// Cookie fills cookie for the given cookie.Key.\n//\n// Returns false if cookie with the given cookie.Key is missing.\nfunc (h *ResponseHeader) Cookie(cookie *Cookie) bool {\n\tv := peekArgBytes(h.cookies, cookie.Key())\n\tif v == nil {\n\t\treturn false\n\t}\n\tcookie.ParseBytes(v) //nolint:errcheck\n\treturn true\n}\n\n// Read reads response header from r.\n//\n// io.EOF is returned if r is closed before reading the first header byte.\nfunc (h *ResponseHeader) Read(r *bufio.Reader) error {\n\tn := 1\n\tfor {\n\t\terr := h.tryRead(r, n)\n\t\tif err == nil {\n\t\t\treturn nil\n\t\t}\n\t\tif err != errNeedMore {\n\t\t\th.resetSkipNormalize()\n\t\t\treturn err\n\t\t}\n\t\tn = r.Buffered() + 1\n\t}\n}\n\nfunc (h *ResponseHeader) tryRead(r *bufio.Reader, n int) error {\n\th.resetSkipNormalize()\n\tb, err := r.Peek(n)\n\tif len(b) == 0 {\n\t\t// Return ErrTimeout on any timeout.\n\t\tif x, ok := err.(interface{ Timeout() bool }); ok && x.Timeout() {\n\t\t\treturn ErrTimeout\n\t\t}\n\t\t// treat all other errors on the first byte read as EOF\n\t\tif n == 1 || err == io.EOF {\n\t\t\treturn io.EOF\n\t\t}\n\n\t\t// This is for go 1.6 bug. See https://github.com/golang/go/issues/14121 .\n\t\tif err == bufio.ErrBufferFull {\n\t\t\treturn &ErrSmallBuffer{\n\t\t\t\terror: fmt.Errorf(\"error when reading response headers: %s\", errSmallBuffer),\n\t\t\t}\n\t\t}\n\n\t\treturn fmt.Errorf(\"error when reading response headers: %s\", err)\n\t}\n\tb = mustPeekBuffered(r)\n\theadersLen, errParse := h.parse(b)\n\tif errParse != nil {\n\t\treturn headerError(\"response\", err, errParse, b)\n\t}\n\tmustDiscard(r, headersLen)\n\treturn nil\n}\n\nfunc headerError(typ string, err, errParse error, b []byte) error {\n\tif errParse != errNeedMore {\n\t\treturn headerErrorMsg(typ, errParse, b)\n\t}\n\tif err == nil {\n\t\treturn errNeedMore\n\t}\n\n\t// Buggy servers may leave trailing CRLFs after http body.\n\t// Treat this case as EOF.\n\tif isOnlyCRLF(b) {\n\t\treturn io.EOF\n\t}\n\n\tif err != bufio.ErrBufferFull {\n\t\treturn headerErrorMsg(typ, err, b)\n\t}\n\treturn &ErrSmallBuffer{\n\t\terror: headerErrorMsg(typ, errSmallBuffer, b),\n\t}\n}\n\nfunc headerErrorMsg(typ string, err error, b []byte) error {\n\treturn fmt.Errorf(\"error when reading %s headers: %s. Buffer size=%d, contents: %s\", typ, err, len(b), bufferSnippet(b))\n}\n\n// Read reads request header from r.\n//\n// io.EOF is returned if r is closed before reading the first header byte.\nfunc (h *RequestHeader) Read(r *bufio.Reader) error {\n\tn := 1\n\tfor {\n\t\terr := h.tryRead(r, n)\n\t\tif err == nil {\n\t\t\treturn nil\n\t\t}\n\t\tif err != errNeedMore {\n\t\t\th.resetSkipNormalize()\n\t\t\treturn err\n\t\t}\n\t\tn = r.Buffered() + 1\n\t}\n}\n\nfunc (h *RequestHeader) tryRead(r *bufio.Reader, n int) error {\n\th.resetSkipNormalize()\n\tb, err := r.Peek(n)\n\tif len(b) == 0 {\n\t\tif err == io.EOF {\n\t\t\treturn err\n\t\t}\n\n\t\tif err == nil {\n\t\t\tpanic(\"bufio.Reader.Peek() returned nil, nil\")\n\t\t}\n\n\t\t// This is for go 1.6 bug. See https://github.com/golang/go/issues/14121 .\n\t\tif err == bufio.ErrBufferFull {\n\t\t\treturn &ErrSmallBuffer{\n\t\t\t\terror: fmt.Errorf(\"error when reading request headers: %s\", errSmallBuffer),\n\t\t\t}\n\t\t}\n\n\t\t// n == 1 on the first read for the request.\n\t\tif n == 1 {\n\t\t\t// We didn't read a single byte.\n\t\t\treturn ErrNothingRead{err}\n\t\t}\n\n\t\treturn fmt.Errorf(\"error when reading request headers: %s\", err)\n\t}\n\tb = mustPeekBuffered(r)\n\theadersLen, errParse := h.parse(b)\n\tif errParse != nil {\n\t\treturn headerError(\"request\", err, errParse, b)\n\t}\n\tmustDiscard(r, headersLen)\n\treturn nil\n}\n\nfunc bufferSnippet(b []byte) string {\n\tn := len(b)\n\tstart := 200\n\tend := n - start\n\tif start >= end {\n\t\tstart = n\n\t\tend = n\n\t}\n\tbStart, bEnd := b[:start], b[end:]\n\tif len(bEnd) == 0 {\n\t\treturn fmt.Sprintf(\"%q\", b)\n\t}\n\treturn fmt.Sprintf(\"%q...%q\", bStart, bEnd)\n}\n\nfunc isOnlyCRLF(b []byte) bool {\n\tfor _, ch := range b {\n\t\tif ch != rChar && ch != nChar {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc updateServerDate() {\n\trefreshServerDate()\n\tgo func() {\n\t\tfor {\n\t\t\ttime.Sleep(time.Second)\n\t\t\trefreshServerDate()\n\t\t}\n\t}()\n}\n\nvar (\n\tserverDate     atomic.Value\n\tserverDateOnce sync.Once // serverDateOnce.Do(updateServerDate)\n)\n\nfunc refreshServerDate() {\n\tb := AppendHTTPDate(nil, time.Now())\n\tserverDate.Store(b)\n}\n\n// Write writes response header to w.\nfunc (h *ResponseHeader) Write(w *bufio.Writer) error {\n\t_, err := w.Write(h.Header())\n\treturn err\n}\n\n// WriteTo writes response header to w.\n//\n// WriteTo implements io.WriterTo interface.\nfunc (h *ResponseHeader) WriteTo(w io.Writer) (int64, error) {\n\tn, err := w.Write(h.Header())\n\treturn int64(n), err\n}\n\n// Header returns response header representation.\n//\n// The returned value is valid until the next call to ResponseHeader methods.\nfunc (h *ResponseHeader) Header() []byte {\n\th.bufKV.value = h.AppendBytes(h.bufKV.value[:0])\n\treturn h.bufKV.value\n}\n\n// String returns response header representation.\nfunc (h *ResponseHeader) String() string {\n\treturn string(h.Header())\n}\n\n// AppendBytes appends response header representation to dst and returns\n// the extended dst.\nfunc (h *ResponseHeader) AppendBytes(dst []byte) []byte {\n\tstatusCode := h.StatusCode()\n\tif statusCode < 0 {\n\t\tstatusCode = StatusOK\n\t}\n\tdst = append(dst, statusLine(statusCode)...)\n\n\tserver := h.Server()\n\tif len(server) != 0 {\n\t\tdst = appendHeaderLine(dst, strServer, server)\n\t}\n\n\tif !h.noDefaultDate {\n\t\tserverDateOnce.Do(updateServerDate)\n\t\tdst = appendHeaderLine(dst, strDate, serverDate.Load().([]byte))\n\t}\n\n\t// Append Content-Type only for non-zero responses\n\t// or if it is explicitly set.\n\t// See https://github.com/valyala/fasthttp/issues/28 .\n\tif h.ContentLength() != 0 || len(h.contentType) > 0 {\n\t\tcontentType := h.ContentType()\n\t\tif len(contentType) > 0 {\n\t\t\tdst = appendHeaderLine(dst, strContentType, contentType)\n\t\t}\n\t}\n\n\tif len(h.contentLengthBytes) > 0 {\n\t\tdst = appendHeaderLine(dst, strContentLength, h.contentLengthBytes)\n\t}\n\n\tfor i, n := 0, len(h.h); i < n; i++ {\n\t\tkv := &h.h[i]\n\t\tif h.noDefaultDate || !bytes.Equal(kv.key, strDate) {\n\t\t\tdst = appendHeaderLine(dst, kv.key, kv.value)\n\t\t}\n\t}\n\n\tn := len(h.cookies)\n\tif n > 0 {\n\t\tfor i := 0; i < n; i++ {\n\t\t\tkv := &h.cookies[i]\n\t\t\tdst = appendHeaderLine(dst, strSetCookie, kv.value)\n\t\t}\n\t}\n\n\tif h.ConnectionClose() {\n\t\tdst = appendHeaderLine(dst, strConnection, strClose)\n\t}\n\n\treturn append(dst, strCRLF...)\n}\n\n// Write writes request header to w.\nfunc (h *RequestHeader) Write(w *bufio.Writer) error {\n\t_, err := w.Write(h.Header())\n\treturn err\n}\n\n// WriteTo writes request header to w.\n//\n// WriteTo implements io.WriterTo interface.\nfunc (h *RequestHeader) WriteTo(w io.Writer) (int64, error) {\n\tn, err := w.Write(h.Header())\n\treturn int64(n), err\n}\n\n// Header returns request header representation.\n//\n// The returned representation is valid until the next call to RequestHeader methods.\nfunc (h *RequestHeader) Header() []byte {\n\th.bufKV.value = h.AppendBytes(h.bufKV.value[:0])\n\treturn h.bufKV.value\n}\n\n// RawHeaders returns raw header key/value bytes.\n//\n// Depending on server configuration, header keys may be normalized to\n// capital-case in place.\n//\n// This copy is set aside during parsing, so empty slice is returned for all\n// cases where parsing did not happen. Similarly, request line is not stored\n// during parsing and can not be returned.\n//\n// The slice is not safe to use after the handler returns.\nfunc (h *RequestHeader) RawHeaders() []byte {\n\treturn h.rawHeaders\n}\n\n// String returns request header representation.\nfunc (h *RequestHeader) String() string {\n\treturn string(h.Header())\n}\n\n// AppendBytes appends request header representation to dst and returns\n// the extended dst.\nfunc (h *RequestHeader) AppendBytes(dst []byte) []byte {\n\tdst = append(dst, h.Method()...)\n\tdst = append(dst, ' ')\n\tdst = append(dst, h.RequestURI()...)\n\tdst = append(dst, ' ')\n\tdst = append(dst, strHTTP11...)\n\tdst = append(dst, strCRLF...)\n\n\tuserAgent := h.UserAgent()\n\tif len(userAgent) > 0 {\n\t\tdst = appendHeaderLine(dst, strUserAgent, userAgent)\n\t}\n\n\thost := h.Host()\n\tif len(host) > 0 {\n\t\tdst = appendHeaderLine(dst, strHost, host)\n\t}\n\n\tcontentType := h.ContentType()\n\tif len(contentType) == 0 && !h.ignoreBody() {\n\t\tcontentType = strPostArgsContentType\n\t}\n\tif len(contentType) > 0 {\n\t\tdst = appendHeaderLine(dst, strContentType, contentType)\n\t}\n\tif len(h.contentLengthBytes) > 0 {\n\t\tdst = appendHeaderLine(dst, strContentLength, h.contentLengthBytes)\n\t}\n\n\tfor i, n := 0, len(h.h); i < n; i++ {\n\t\tkv := &h.h[i]\n\t\tdst = appendHeaderLine(dst, kv.key, kv.value)\n\t}\n\n\t// there is no need in h.collectCookies() here, since if cookies aren't collected yet,\n\t// they all are located in h.h.\n\tn := len(h.cookies)\n\tif n > 0 {\n\t\tdst = append(dst, strCookie...)\n\t\tdst = append(dst, strColonSpace...)\n\t\tdst = appendRequestCookieBytes(dst, h.cookies)\n\t\tdst = append(dst, strCRLF...)\n\t}\n\n\tif h.ConnectionClose() {\n\t\tdst = appendHeaderLine(dst, strConnection, strClose)\n\t}\n\n\treturn append(dst, strCRLF...)\n}\n\nfunc appendHeaderLine(dst, key, value []byte) []byte {\n\tdst = append(dst, key...)\n\tdst = append(dst, strColonSpace...)\n\tdst = append(dst, value...)\n\treturn append(dst, strCRLF...)\n}\n\nfunc (h *ResponseHeader) parse(buf []byte) (int, error) {\n\tm, err := h.parseFirstLine(buf)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tn, err := h.parseHeaders(buf[m:])\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn m + n, nil\n}\n\nfunc (h *RequestHeader) ignoreBody() bool {\n\treturn h.IsGet() || h.IsHead()\n}\n\nfunc (h *RequestHeader) parse(buf []byte) (int, error) {\n\tm, err := h.parseFirstLine(buf)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\n\th.rawHeaders, _, err = readRawHeaders(h.rawHeaders[:0], buf[m:])\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tvar n int\n\tn, err = h.parseHeaders(buf[m:])\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn m + n, nil\n}\n\nfunc (h *ResponseHeader) parseFirstLine(buf []byte) (int, error) {\n\tbNext := buf\n\tvar b []byte\n\tvar err error\n\tfor len(b) == 0 {\n\t\tif b, bNext, err = nextLine(bNext); err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t}\n\n\t// parse protocol\n\tn := bytes.IndexByte(b, ' ')\n\tif n < 0 {\n\t\treturn 0, fmt.Errorf(\"cannot find whitespace in the first line of response %q\", buf)\n\t}\n\th.noHTTP11 = !bytes.Equal(b[:n], strHTTP11)\n\tb = b[n+1:]\n\n\t// parse status code\n\th.statusCode, n, err = parseUintBuf(b)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"cannot parse response status code: %s. Response %q\", err, buf)\n\t}\n\tif len(b) > n && b[n] != ' ' {\n\t\treturn 0, fmt.Errorf(\"unexpected char at the end of status code. Response %q\", buf)\n\t}\n\n\treturn len(buf) - len(bNext), nil\n}\n\nfunc (h *RequestHeader) parseFirstLine(buf []byte) (int, error) {\n\tbNext := buf\n\tvar b []byte\n\tvar err error\n\tfor len(b) == 0 {\n\t\tif b, bNext, err = nextLine(bNext); err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t}\n\n\t// parse method\n\tn := bytes.IndexByte(b, ' ')\n\tif n <= 0 {\n\t\treturn 0, fmt.Errorf(\"cannot find http request method in %q\", buf)\n\t}\n\th.method = append(h.method[:0], b[:n]...)\n\tb = b[n+1:]\n\n\t// parse requestURI\n\tn = bytes.LastIndexByte(b, ' ')\n\tif n < 0 {\n\t\th.noHTTP11 = true\n\t\tn = len(b)\n\t} else if n == 0 {\n\t\treturn 0, fmt.Errorf(\"requestURI cannot be empty in %q\", buf)\n\t} else if !bytes.Equal(b[n+1:], strHTTP11) {\n\t\th.noHTTP11 = true\n\t}\n\th.requestURI = append(h.requestURI[:0], b[:n]...)\n\n\treturn len(buf) - len(bNext), nil\n}\n\nfunc peekRawHeader(buf, key []byte) []byte {\n\tn := bytes.Index(buf, key)\n\tif n < 0 {\n\t\treturn nil\n\t}\n\tif n > 0 && buf[n-1] != nChar {\n\t\treturn nil\n\t}\n\tn += len(key)\n\tif n >= len(buf) {\n\t\treturn nil\n\t}\n\tif buf[n] != ':' {\n\t\treturn nil\n\t}\n\tn++\n\tif buf[n] != ' ' {\n\t\treturn nil\n\t}\n\tn++\n\tbuf = buf[n:]\n\tn = bytes.IndexByte(buf, nChar)\n\tif n < 0 {\n\t\treturn nil\n\t}\n\tif n > 0 && buf[n-1] == rChar {\n\t\tn--\n\t}\n\treturn buf[:n]\n}\n\nfunc readRawHeaders(dst, buf []byte) ([]byte, int, error) {\n\tn := bytes.IndexByte(buf, nChar)\n\tif n < 0 {\n\t\treturn dst[:0], 0, errNeedMore\n\t}\n\tif (n == 1 && buf[0] == rChar) || n == 0 {\n\t\t// empty headers\n\t\treturn dst, n + 1, nil\n\t}\n\n\tn++\n\tb := buf\n\tm := n\n\tfor {\n\t\tb = b[m:]\n\t\tm = bytes.IndexByte(b, nChar)\n\t\tif m < 0 {\n\t\t\treturn dst, 0, errNeedMore\n\t\t}\n\t\tm++\n\t\tn += m\n\t\tif (m == 2 && b[0] == rChar) || m == 1 {\n\t\t\tdst = append(dst, buf[:n]...)\n\t\t\treturn dst, n, nil\n\t\t}\n\t}\n}\n\nfunc (h *ResponseHeader) parseHeaders(buf []byte) (int, error) {\n\t// 'identity' content-length by default\n\th.contentLength = -2\n\n\tvar s headerScanner\n\ts.b = buf\n\ts.disableNormalizing = h.disableNormalizing\n\tvar err error\n\tvar kv *argsKV\n\tfor s.next() {\n\t\tif len(s.key) > 0 {\n\t\t\tswitch s.key[0] | 0x20 {\n\t\t\tcase 'c':\n\t\t\t\tif caseInsensitiveCompare(s.key, strContentType) {\n\t\t\t\t\th.contentType = append(h.contentType[:0], s.value...)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif caseInsensitiveCompare(s.key, strContentLength) {\n\t\t\t\t\tif h.contentLength != -1 {\n\t\t\t\t\t\tif h.contentLength, err = parseContentLength(s.value); err != nil {\n\t\t\t\t\t\t\th.contentLength = -2\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\th.contentLengthBytes = append(h.contentLengthBytes[:0], s.value...)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif caseInsensitiveCompare(s.key, strConnection) {\n\t\t\t\t\tif bytes.Equal(s.value, strClose) {\n\t\t\t\t\t\th.connectionClose = true\n\t\t\t\t\t} else {\n\t\t\t\t\t\th.connectionClose = false\n\t\t\t\t\t\th.h = appendArgBytes(h.h, s.key, s.value, argsHasValue)\n\t\t\t\t\t}\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\tcase 's':\n\t\t\t\tif caseInsensitiveCompare(s.key, strServer) {\n\t\t\t\t\th.server = append(h.server[:0], s.value...)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif caseInsensitiveCompare(s.key, strSetCookie) {\n\t\t\t\t\th.cookies, kv = allocArg(h.cookies)\n\t\t\t\t\tkv.key = getCookieKey(kv.key, s.value)\n\t\t\t\t\tkv.value = append(kv.value[:0], s.value...)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\tcase 't':\n\t\t\t\tif caseInsensitiveCompare(s.key, strTransferEncoding) {\n\t\t\t\t\tif !bytes.Equal(s.value, strIdentity) {\n\t\t\t\t\t\th.contentLength = -1\n\t\t\t\t\t\th.h = setArgBytes(h.h, strTransferEncoding, strChunked, argsHasValue)\n\t\t\t\t\t}\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t}\n\t\t\th.h = appendArgBytes(h.h, s.key, s.value, argsHasValue)\n\t\t}\n\t}\n\tif s.err != nil {\n\t\th.connectionClose = true\n\t\treturn 0, s.err\n\t}\n\n\tif h.contentLength < 0 {\n\t\th.contentLengthBytes = h.contentLengthBytes[:0]\n\t}\n\tif h.contentLength == -2 && !h.ConnectionUpgrade() && !h.mustSkipContentLength() {\n\t\th.h = setArgBytes(h.h, strTransferEncoding, strIdentity, argsHasValue)\n\t\th.connectionClose = true\n\t}\n\tif h.noHTTP11 && !h.connectionClose {\n\t\t// close connection for non-http/1.1 response unless 'Connection: keep-alive' is set.\n\t\tv := peekArgBytes(h.h, strConnection)\n\t\th.connectionClose = !hasHeaderValue(v, strKeepAlive)\n\t}\n\n\treturn len(buf) - len(s.b), nil\n}\n\nfunc (h *RequestHeader) parseHeaders(buf []byte) (int, error) {\n\th.contentLength = -2\n\n\tvar s headerScanner\n\ts.b = buf\n\ts.disableNormalizing = h.disableNormalizing\n\tvar err error\n\tfor s.next() {\n\t\tif len(s.key) > 0 {\n\t\t\t// Spaces between the header key and colon are not allowed.\n\t\t\t// See RFC 7230, Section 3.2.4.\n\t\t\tif bytes.IndexByte(s.key, ' ') != -1 || bytes.IndexByte(s.key, '\\t') != -1 {\n\t\t\t\terr = fmt.Errorf(\"invalid header key %q\", s.key)\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tswitch s.key[0] | 0x20 {\n\t\t\tcase 'h':\n\t\t\t\tif caseInsensitiveCompare(s.key, strHost) {\n\t\t\t\t\th.host = append(h.host[:0], s.value...)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\tcase 'u':\n\t\t\t\tif caseInsensitiveCompare(s.key, strUserAgent) {\n\t\t\t\t\th.userAgent = append(h.userAgent[:0], s.value...)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\tcase 'c':\n\t\t\t\tif caseInsensitiveCompare(s.key, strContentType) {\n\t\t\t\t\th.contentType = append(h.contentType[:0], s.value...)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif caseInsensitiveCompare(s.key, strContentLength) {\n\t\t\t\t\tif h.contentLength != -1 {\n\t\t\t\t\t\tvar nerr error\n\t\t\t\t\t\tif h.contentLength, nerr = parseContentLength(s.value); nerr != nil {\n\t\t\t\t\t\t\tif err == nil {\n\t\t\t\t\t\t\t\terr = nerr\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\th.contentLength = -2\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\th.contentLengthBytes = append(h.contentLengthBytes[:0], s.value...)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif caseInsensitiveCompare(s.key, strConnection) {\n\t\t\t\t\tif bytes.Equal(s.value, strClose) {\n\t\t\t\t\t\th.connectionClose = true\n\t\t\t\t\t} else {\n\t\t\t\t\t\th.connectionClose = false\n\t\t\t\t\t\th.h = appendArgBytes(h.h, s.key, s.value, argsHasValue)\n\t\t\t\t\t}\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\tcase 't':\n\t\t\t\tif caseInsensitiveCompare(s.key, strTransferEncoding) {\n\t\t\t\t\tif !bytes.Equal(s.value, strIdentity) {\n\t\t\t\t\t\th.contentLength = -1\n\t\t\t\t\t\th.h = setArgBytes(h.h, strTransferEncoding, strChunked, argsHasValue)\n\t\t\t\t\t}\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\th.h = appendArgBytes(h.h, s.key, s.value, argsHasValue)\n\t}\n\tif s.err != nil && err == nil {\n\t\terr = s.err\n\t}\n\tif err != nil {\n\t\th.connectionClose = true\n\t\treturn 0, err\n\t}\n\n\tif h.contentLength < 0 {\n\t\th.contentLengthBytes = h.contentLengthBytes[:0]\n\t}\n\tif h.noHTTP11 && !h.connectionClose {\n\t\t// close connection for non-http/1.1 request unless 'Connection: keep-alive' is set.\n\t\tv := peekArgBytes(h.h, strConnection)\n\t\th.connectionClose = !hasHeaderValue(v, strKeepAlive)\n\t}\n\treturn s.hLen, nil\n}\n\nfunc (h *RequestHeader) collectCookies() {\n\tif h.cookiesCollected {\n\t\treturn\n\t}\n\n\tfor i, n := 0, len(h.h); i < n; i++ {\n\t\tkv := &h.h[i]\n\t\tif caseInsensitiveCompare(kv.key, strCookie) {\n\t\t\th.cookies = parseRequestCookies(h.cookies, kv.value)\n\t\t\ttmp := *kv\n\t\t\tcopy(h.h[i:], h.h[i+1:])\n\t\t\tn--\n\t\t\ti--\n\t\t\th.h[n] = tmp\n\t\t\th.h = h.h[:n]\n\t\t}\n\t}\n\th.cookiesCollected = true\n}\n\nfunc parseContentLength(b []byte) (int, error) {\n\tv, n, err := parseUintBuf(b)\n\tif err != nil {\n\t\treturn -1, err\n\t}\n\tif n != len(b) {\n\t\treturn -1, fmt.Errorf(\"non-numeric chars at the end of Content-Length\")\n\t}\n\treturn v, nil\n}\n\ntype headerScanner struct {\n\tb     []byte\n\tkey   []byte\n\tvalue []byte\n\terr   error\n\n\t// hLen stores header subslice len\n\thLen int\n\n\tdisableNormalizing bool\n\n\t// by checking whether the next line contains a colon or not to tell\n\t// it's a header entry or a multi line value of current header entry.\n\t// the side effect of this operation is that we know the index of the\n\t// next colon and new line, so this can be used during next iteration,\n\t// instead of find them again.\n\tnextColon   int\n\tnextNewLine int\n\n\tinitialized bool\n}\n\nfunc (s *headerScanner) next() bool {\n\tif !s.initialized {\n\t\ts.nextColon = -1\n\t\ts.nextNewLine = -1\n\t\ts.initialized = true\n\t}\n\tbLen := len(s.b)\n\tif bLen >= 2 && s.b[0] == rChar && s.b[1] == nChar {\n\t\ts.b = s.b[2:]\n\t\ts.hLen += 2\n\t\treturn false\n\t}\n\tif bLen >= 1 && s.b[0] == nChar {\n\t\ts.b = s.b[1:]\n\t\ts.hLen++\n\t\treturn false\n\t}\n\tvar n int\n\tif s.nextColon >= 0 {\n\t\tn = s.nextColon\n\t\ts.nextColon = -1\n\t} else {\n\t\tn = bytes.IndexByte(s.b, ':')\n\n\t\t// There can't be a \\n inside the header name, check for this.\n\t\tx := bytes.IndexByte(s.b, nChar)\n\t\tif x < 0 {\n\t\t\t// A header name should always at some point be followed by a \\n\n\t\t\t// even if it's the one that terminates the header block.\n\t\t\ts.err = errNeedMore\n\t\t\treturn false\n\t\t}\n\t\tif x < n {\n\t\t\t// There was a \\n before the :\n\t\t\ts.err = errInvalidName\n\t\t\treturn false\n\t\t}\n\t}\n\tif n < 0 {\n\t\ts.err = errNeedMore\n\t\treturn false\n\t}\n\ts.key = s.b[:n]\n\tnormalizeHeaderKey(s.key, s.disableNormalizing)\n\tn++\n\tfor len(s.b) > n && s.b[n] == ' ' {\n\t\tn++\n\t\t// the newline index is a relative index, and lines below trimed `s.b` by `n`,\n\t\t// so the relative newline index also shifted forward. it's safe to decrease\n\t\t// to a minus value, it means it's invalid, and will find the newline again.\n\t\ts.nextNewLine--\n\t}\n\ts.hLen += n\n\ts.b = s.b[n:]\n\tif s.nextNewLine >= 0 {\n\t\tn = s.nextNewLine\n\t\ts.nextNewLine = -1\n\t} else {\n\t\tn = bytes.IndexByte(s.b, nChar)\n\t}\n\tif n < 0 {\n\t\ts.err = errNeedMore\n\t\treturn false\n\t}\n\tisMultiLineValue := false\n\tfor {\n\t\tif n+1 >= len(s.b) {\n\t\t\tbreak\n\t\t}\n\t\tif s.b[n+1] != ' ' && s.b[n+1] != '\\t' {\n\t\t\tbreak\n\t\t}\n\t\td := bytes.IndexByte(s.b[n+1:], nChar)\n\t\tif d <= 0 {\n\t\t\tbreak\n\t\t} else if d == 1 && s.b[n+1] == rChar {\n\t\t\tbreak\n\t\t}\n\t\te := n + d + 1\n\t\tif c := bytes.IndexByte(s.b[n+1:e], ':'); c >= 0 {\n\t\t\ts.nextColon = c\n\t\t\ts.nextNewLine = d - c - 1\n\t\t\tbreak\n\t\t}\n\t\tisMultiLineValue = true\n\t\tn = e\n\t}\n\tif n >= len(s.b) {\n\t\ts.err = errNeedMore\n\t\treturn false\n\t}\n\toldB := s.b\n\ts.value = s.b[:n]\n\ts.hLen += n + 1\n\ts.b = s.b[n+1:]\n\n\tif n > 0 && s.value[n-1] == rChar {\n\t\tn--\n\t}\n\tfor n > 0 && s.value[n-1] == ' ' {\n\t\tn--\n\t}\n\ts.value = s.value[:n]\n\tif isMultiLineValue {\n\t\ts.value, s.b, s.hLen = normalizeHeaderValue(s.value, oldB, s.hLen)\n\t}\n\treturn true\n}\n\ntype headerValueScanner struct {\n\tb     []byte\n\tvalue []byte\n}\n\nfunc (s *headerValueScanner) next() bool {\n\tb := s.b\n\tif len(b) == 0 {\n\t\treturn false\n\t}\n\tn := bytes.IndexByte(b, ',')\n\tif n < 0 {\n\t\ts.value = stripSpace(b)\n\t\ts.b = b[len(b):]\n\t\treturn true\n\t}\n\ts.value = stripSpace(b[:n])\n\ts.b = b[n+1:]\n\treturn true\n}\n\nfunc stripSpace(b []byte) []byte {\n\tfor len(b) > 0 && b[0] == ' ' {\n\t\tb = b[1:]\n\t}\n\tfor len(b) > 0 && b[len(b)-1] == ' ' {\n\t\tb = b[:len(b)-1]\n\t}\n\treturn b\n}\n\nfunc hasHeaderValue(s, value []byte) bool {\n\tvar vs headerValueScanner\n\tvs.b = s\n\tfor vs.next() {\n\t\tif caseInsensitiveCompare(vs.value, value) {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc nextLine(b []byte) ([]byte, []byte, error) {\n\tnNext := bytes.IndexByte(b, nChar)\n\tif nNext < 0 {\n\t\treturn nil, nil, errNeedMore\n\t}\n\tn := nNext\n\tif n > 0 && b[n-1] == rChar {\n\t\tn--\n\t}\n\treturn b[:n], b[nNext+1:], nil\n}\n\nfunc initHeaderKV(kv *argsKV, key, value string, disableNormalizing bool) {\n\tkv.key = getHeaderKeyBytes(kv, key, disableNormalizing)\n\t// https://tools.ietf.org/html/rfc7230#section-3.2.4\n\tkv.value = append(kv.value[:0], value...)\n\tkv.value = removeNewLines(kv.value)\n}\n\nfunc getHeaderKeyBytes(kv *argsKV, key string, disableNormalizing bool) []byte {\n\tkv.key = append(kv.key[:0], key...)\n\tnormalizeHeaderKey(kv.key, disableNormalizing)\n\treturn kv.key\n}\n\nfunc normalizeHeaderValue(ov, ob []byte, headerLength int) (nv, nb []byte, nhl int) {\n\tnv = ov\n\tlength := len(ov)\n\tif length <= 0 {\n\t\treturn\n\t}\n\twrite := 0\n\tshrunk := 0\n\tlineStart := false\n\tfor read := 0; read < length; read++ {\n\t\tc := ov[read]\n\t\tif c == rChar || c == nChar {\n\t\t\tshrunk++\n\t\t\tif c == nChar {\n\t\t\t\tlineStart = true\n\t\t\t}\n\t\t\tcontinue\n\t\t} else if lineStart && c == '\\t' {\n\t\t\tc = ' '\n\t\t} else {\n\t\t\tlineStart = false\n\t\t}\n\t\tnv[write] = c\n\t\twrite++\n\t}\n\n\tnv = nv[:write]\n\tcopy(ob[write:], ob[write+shrunk:])\n\n\t// Check if we need to skip \\r\\n or just \\n\n\tskip := 0\n\tif ob[write] == rChar {\n\t\tif ob[write+1] == nChar {\n\t\t\tskip += 2\n\t\t} else {\n\t\t\tskip++\n\t\t}\n\t} else if ob[write] == nChar {\n\t\tskip++\n\t}\n\n\tnb = ob[write+skip : len(ob)-shrunk]\n\tnhl = headerLength - shrunk\n\treturn\n}\n\nfunc normalizeHeaderKey(b []byte, disableNormalizing bool) {\n\tif disableNormalizing {\n\t\treturn\n\t}\n\n\tn := len(b)\n\tif n == 0 {\n\t\treturn\n\t}\n\n\tb[0] = toUpperTable[b[0]]\n\tfor i := 1; i < n; i++ {\n\t\tp := &b[i]\n\t\tif *p == '-' {\n\t\t\ti++\n\t\t\tif i < n {\n\t\t\t\tb[i] = toUpperTable[b[i]]\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t*p = toLowerTable[*p]\n\t}\n}\n\n// removeNewLines will replace `\\r` and `\\n` with an empty space\nfunc removeNewLines(raw []byte) []byte {\n\t// check if a `\\r` is present and save the position.\n\t// if no `\\r` is found, check if a `\\n` is present.\n\tfoundR := bytes.IndexByte(raw, rChar)\n\tfoundN := bytes.IndexByte(raw, nChar)\n\tstart := 0\n\n\tif foundN != -1 {\n\t\tif foundR > foundN {\n\t\t\tstart = foundN\n\t\t} else if foundR != -1 {\n\t\t\tstart = foundR\n\t\t}\n\t} else if foundR != -1 {\n\t\tstart = foundR\n\t} else {\n\t\treturn raw\n\t}\n\n\tfor i := start; i < len(raw); i++ {\n\t\tswitch raw[i] {\n\t\tcase rChar, nChar:\n\t\t\traw[i] = ' '\n\t\tdefault:\n\t\t\tcontinue\n\t\t}\n\t}\n\treturn raw\n}\n\n// AppendNormalizedHeaderKey appends normalized header key (name) to dst\n// and returns the resulting dst.\n//\n// Normalized header key starts with uppercase letter. The first letters\n// after dashes are also uppercased. All the other letters are lowercased.\n// Examples:\n//\n//   * coNTENT-TYPe -> Content-Type\n//   * HOST -> Host\n//   * foo-bar-baz -> Foo-Bar-Baz\nfunc AppendNormalizedHeaderKey(dst []byte, key string) []byte {\n\tdst = append(dst, key...)\n\tnormalizeHeaderKey(dst[len(dst)-len(key):], false)\n\treturn dst\n}\n\n// AppendNormalizedHeaderKeyBytes appends normalized header key (name) to dst\n// and returns the resulting dst.\n//\n// Normalized header key starts with uppercase letter. The first letters\n// after dashes are also uppercased. All the other letters are lowercased.\n// Examples:\n//\n//   * coNTENT-TYPe -> Content-Type\n//   * HOST -> Host\n//   * foo-bar-baz -> Foo-Bar-Baz\nfunc AppendNormalizedHeaderKeyBytes(dst, key []byte) []byte {\n\treturn AppendNormalizedHeaderKey(dst, b2s(key))\n}\n\nvar (\n\terrNeedMore    = errors.New(\"need more data: cannot find trailing lf\")\n\terrInvalidName = errors.New(\"invalid header name\")\n\terrSmallBuffer = errors.New(\"small read buffer. Increase ReadBufferSize\")\n)\n\n// ErrNothingRead is returned when a keep-alive connection is closed,\n// either because the remote closed it or because of a read timeout.\ntype ErrNothingRead struct {\n\terror\n}\n\n// ErrSmallBuffer is returned when the provided buffer size is too small\n// for reading request and/or response headers.\n//\n// ReadBufferSize value from Server or clients should reduce the number\n// of such errors.\ntype ErrSmallBuffer struct {\n\terror\n}\n\nfunc mustPeekBuffered(r *bufio.Reader) []byte {\n\tbuf, err := r.Peek(r.Buffered())\n\tif len(buf) == 0 || err != nil {\n\t\tpanic(fmt.Sprintf(\"bufio.Reader.Peek() returned unexpected data (%q, %v)\", buf, err))\n\t}\n\treturn buf\n}\n\nfunc mustDiscard(r *bufio.Reader, n int) {\n\tif _, err := r.Discard(n); err != nil {\n\t\tpanic(fmt.Sprintf(\"bufio.Reader.Discard(%d) failed: %s\", n, err))\n\t}\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/headers.go",
    "content": "package fasthttp\n\n// Headers\nconst (\n\t// Authentication\n\tHeaderAuthorization      = \"Authorization\"\n\tHeaderProxyAuthenticate  = \"Proxy-Authenticate\"\n\tHeaderProxyAuthorization = \"Proxy-Authorization\"\n\tHeaderWWWAuthenticate    = \"WWW-Authenticate\"\n\n\t// Caching\n\tHeaderAge           = \"Age\"\n\tHeaderCacheControl  = \"Cache-Control\"\n\tHeaderClearSiteData = \"Clear-Site-Data\"\n\tHeaderExpires       = \"Expires\"\n\tHeaderPragma        = \"Pragma\"\n\tHeaderWarning       = \"Warning\"\n\n\t// Client hints\n\tHeaderAcceptCH         = \"Accept-CH\"\n\tHeaderAcceptCHLifetime = \"Accept-CH-Lifetime\"\n\tHeaderContentDPR       = \"Content-DPR\"\n\tHeaderDPR              = \"DPR\"\n\tHeaderEarlyData        = \"Early-Data\"\n\tHeaderSaveData         = \"Save-Data\"\n\tHeaderViewportWidth    = \"Viewport-Width\"\n\tHeaderWidth            = \"Width\"\n\n\t// Conditionals\n\tHeaderETag              = \"ETag\"\n\tHeaderIfMatch           = \"If-Match\"\n\tHeaderIfModifiedSince   = \"If-Modified-Since\"\n\tHeaderIfNoneMatch       = \"If-None-Match\"\n\tHeaderIfUnmodifiedSince = \"If-Unmodified-Since\"\n\tHeaderLastModified      = \"Last-Modified\"\n\tHeaderVary              = \"Vary\"\n\n\t// Connection management\n\tHeaderConnection = \"Connection\"\n\tHeaderKeepAlive  = \"Keep-Alive\"\n\n\t// Content negotiation\n\tHeaderAccept         = \"Accept\"\n\tHeaderAcceptCharset  = \"Accept-Charset\"\n\tHeaderAcceptEncoding = \"Accept-Encoding\"\n\tHeaderAcceptLanguage = \"Accept-Language\"\n\n\t// Controls\n\tHeaderCookie      = \"Cookie\"\n\tHeaderExpect      = \"Expect\"\n\tHeaderMaxForwards = \"Max-Forwards\"\n\tHeaderSetCookie   = \"Set-Cookie\"\n\n\t// CORS\n\tHeaderAccessControlAllowCredentials = \"Access-Control-Allow-Credentials\"\n\tHeaderAccessControlAllowHeaders     = \"Access-Control-Allow-Headers\"\n\tHeaderAccessControlAllowMethods     = \"Access-Control-Allow-Methods\"\n\tHeaderAccessControlAllowOrigin      = \"Access-Control-Allow-Origin\"\n\tHeaderAccessControlExposeHeaders    = \"Access-Control-Expose-Headers\"\n\tHeaderAccessControlMaxAge           = \"Access-Control-Max-Age\"\n\tHeaderAccessControlRequestHeaders   = \"Access-Control-Request-Headers\"\n\tHeaderAccessControlRequestMethod    = \"Access-Control-Request-Method\"\n\tHeaderOrigin                        = \"Origin\"\n\tHeaderTimingAllowOrigin             = \"Timing-Allow-Origin\"\n\tHeaderXPermittedCrossDomainPolicies = \"X-Permitted-Cross-Domain-Policies\"\n\n\t// Do Not Track\n\tHeaderDNT = \"DNT\"\n\tHeaderTk  = \"Tk\"\n\n\t// Downloads\n\tHeaderContentDisposition = \"Content-Disposition\"\n\n\t// Message body information\n\tHeaderContentEncoding = \"Content-Encoding\"\n\tHeaderContentLanguage = \"Content-Language\"\n\tHeaderContentLength   = \"Content-Length\"\n\tHeaderContentLocation = \"Content-Location\"\n\tHeaderContentType     = \"Content-Type\"\n\n\t// Proxies\n\tHeaderForwarded       = \"Forwarded\"\n\tHeaderVia             = \"Via\"\n\tHeaderXForwardedFor   = \"X-Forwarded-For\"\n\tHeaderXForwardedHost  = \"X-Forwarded-Host\"\n\tHeaderXForwardedProto = \"X-Forwarded-Proto\"\n\n\t// Redirects\n\tHeaderLocation = \"Location\"\n\n\t// Request context\n\tHeaderFrom           = \"From\"\n\tHeaderHost           = \"Host\"\n\tHeaderReferer        = \"Referer\"\n\tHeaderReferrerPolicy = \"Referrer-Policy\"\n\tHeaderUserAgent      = \"User-Agent\"\n\n\t// Response context\n\tHeaderAllow  = \"Allow\"\n\tHeaderServer = \"Server\"\n\n\t// Range requests\n\tHeaderAcceptRanges = \"Accept-Ranges\"\n\tHeaderContentRange = \"Content-Range\"\n\tHeaderIfRange      = \"If-Range\"\n\tHeaderRange        = \"Range\"\n\n\t// Security\n\tHeaderContentSecurityPolicy           = \"Content-Security-Policy\"\n\tHeaderContentSecurityPolicyReportOnly = \"Content-Security-Policy-Report-Only\"\n\tHeaderCrossOriginResourcePolicy       = \"Cross-Origin-Resource-Policy\"\n\tHeaderExpectCT                        = \"Expect-CT\"\n\tHeaderFeaturePolicy                   = \"Feature-Policy\"\n\tHeaderPublicKeyPins                   = \"Public-Key-Pins\"\n\tHeaderPublicKeyPinsReportOnly         = \"Public-Key-Pins-Report-Only\"\n\tHeaderStrictTransportSecurity         = \"Strict-Transport-Security\"\n\tHeaderUpgradeInsecureRequests         = \"Upgrade-Insecure-Requests\"\n\tHeaderXContentTypeOptions             = \"X-Content-Type-Options\"\n\tHeaderXDownloadOptions                = \"X-Download-Options\"\n\tHeaderXFrameOptions                   = \"X-Frame-Options\"\n\tHeaderXPoweredBy                      = \"X-Powered-By\"\n\tHeaderXXSSProtection                  = \"X-XSS-Protection\"\n\n\t// Server-sent event\n\tHeaderLastEventID = \"Last-Event-ID\"\n\tHeaderNEL         = \"NEL\"\n\tHeaderPingFrom    = \"Ping-From\"\n\tHeaderPingTo      = \"Ping-To\"\n\tHeaderReportTo    = \"Report-To\"\n\n\t// Transfer coding\n\tHeaderTE               = \"TE\"\n\tHeaderTrailer          = \"Trailer\"\n\tHeaderTransferEncoding = \"Transfer-Encoding\"\n\n\t// WebSockets\n\tHeaderSecWebSocketAccept     = \"Sec-WebSocket-Accept\"\n\tHeaderSecWebSocketExtensions = \"Sec-WebSocket-Extensions\"\n\tHeaderSecWebSocketKey        = \"Sec-WebSocket-Key\"\n\tHeaderSecWebSocketProtocol   = \"Sec-WebSocket-Protocol\"\n\tHeaderSecWebSocketVersion    = \"Sec-WebSocket-Version\"\n\n\t// Other\n\tHeaderAcceptPatch         = \"Accept-Patch\"\n\tHeaderAcceptPushPolicy    = \"Accept-Push-Policy\"\n\tHeaderAcceptSignature     = \"Accept-Signature\"\n\tHeaderAltSvc              = \"Alt-Svc\"\n\tHeaderDate                = \"Date\"\n\tHeaderIndex               = \"Index\"\n\tHeaderLargeAllocation     = \"Large-Allocation\"\n\tHeaderLink                = \"Link\"\n\tHeaderPushPolicy          = \"Push-Policy\"\n\tHeaderRetryAfter          = \"Retry-After\"\n\tHeaderServerTiming        = \"Server-Timing\"\n\tHeaderSignature           = \"Signature\"\n\tHeaderSignedHeaders       = \"Signed-Headers\"\n\tHeaderSourceMap           = \"SourceMap\"\n\tHeaderUpgrade             = \"Upgrade\"\n\tHeaderXDNSPrefetchControl = \"X-DNS-Prefetch-Control\"\n\tHeaderXPingback           = \"X-Pingback\"\n\tHeaderXRequestedWith      = \"X-Requested-With\"\n\tHeaderXRobotsTag          = \"X-Robots-Tag\"\n\tHeaderXUACompatible       = \"X-UA-Compatible\"\n)\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/http.go",
    "content": "package fasthttp\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"encoding/base64\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"mime/multipart\"\n\t\"net\"\n\t\"os\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/valyala/bytebufferpool\"\n)\n\n// Request represents HTTP request.\n//\n// It is forbidden copying Request instances. Create new instances\n// and use CopyTo instead.\n//\n// Request instance MUST NOT be used from concurrently running goroutines.\ntype Request struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\t// Request header\n\t//\n\t// Copying Header by value is forbidden. Use pointer to Header instead.\n\tHeader RequestHeader\n\n\turi      URI\n\tpostArgs Args\n\n\tbodyStream io.Reader\n\tw          requestBodyWriter\n\tbody       *bytebufferpool.ByteBuffer\n\tbodyRaw    []byte\n\n\tmultipartForm         *multipart.Form\n\tmultipartFormBoundary string\n\n\t// Group bool members in order to reduce Request object size.\n\tparsedURI      bool\n\tparsedPostArgs bool\n\n\tkeepBodyBuffer bool\n\n\t// Used by Server to indicate the request was received on a HTTPS endpoint.\n\t// Client/HostClient shouldn't use this field but should depend on the uri.scheme instead.\n\tisTLS bool\n\n\t// Request timeout. Usually set by DoDealine or DoTimeout\n\t// if <= 0, means not set\n\ttimeout time.Duration\n}\n\n// Response represents HTTP response.\n//\n// It is forbidden copying Response instances. Create new instances\n// and use CopyTo instead.\n//\n// Response instance MUST NOT be used from concurrently running goroutines.\ntype Response struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\t// Response header\n\t//\n\t// Copying Header by value is forbidden. Use pointer to Header instead.\n\tHeader ResponseHeader\n\n\t// Flush headers as soon as possible without waiting for first body bytes.\n\t// Relevant for bodyStream only.\n\tImmediateHeaderFlush bool\n\n\tbodyStream io.Reader\n\tw          responseBodyWriter\n\tbody       *bytebufferpool.ByteBuffer\n\tbodyRaw    []byte\n\n\t// Response.Read() skips reading body if set to true.\n\t// Use it for reading HEAD responses.\n\t//\n\t// Response.Write() skips writing body if set to true.\n\t// Use it for writing HEAD responses.\n\tSkipBody bool\n\n\tkeepBodyBuffer bool\n\n\t// Remote TCPAddr from concurrently net.Conn\n\traddr net.Addr\n\t// Local TCPAddr from concurrently net.Conn\n\tladdr net.Addr\n}\n\n// SetHost sets host for the request.\nfunc (req *Request) SetHost(host string) {\n\treq.URI().SetHost(host)\n}\n\n// SetHostBytes sets host for the request.\nfunc (req *Request) SetHostBytes(host []byte) {\n\treq.URI().SetHostBytes(host)\n}\n\n// Host returns the host for the given request.\nfunc (req *Request) Host() []byte {\n\treturn req.URI().Host()\n}\n\n// SetRequestURI sets RequestURI.\nfunc (req *Request) SetRequestURI(requestURI string) {\n\treq.Header.SetRequestURI(requestURI)\n\treq.parsedURI = false\n}\n\n// SetRequestURIBytes sets RequestURI.\nfunc (req *Request) SetRequestURIBytes(requestURI []byte) {\n\treq.Header.SetRequestURIBytes(requestURI)\n\treq.parsedURI = false\n}\n\n// RequestURI returns request's URI.\nfunc (req *Request) RequestURI() []byte {\n\tif req.parsedURI {\n\t\trequestURI := req.uri.RequestURI()\n\t\treq.SetRequestURIBytes(requestURI)\n\t}\n\treturn req.Header.RequestURI()\n}\n\n// StatusCode returns response status code.\nfunc (resp *Response) StatusCode() int {\n\treturn resp.Header.StatusCode()\n}\n\n// SetStatusCode sets response status code.\nfunc (resp *Response) SetStatusCode(statusCode int) {\n\tresp.Header.SetStatusCode(statusCode)\n}\n\n// ConnectionClose returns true if 'Connection: close' header is set.\nfunc (resp *Response) ConnectionClose() bool {\n\treturn resp.Header.ConnectionClose()\n}\n\n// SetConnectionClose sets 'Connection: close' header.\nfunc (resp *Response) SetConnectionClose() {\n\tresp.Header.SetConnectionClose()\n}\n\n// ConnectionClose returns true if 'Connection: close' header is set.\nfunc (req *Request) ConnectionClose() bool {\n\treturn req.Header.ConnectionClose()\n}\n\n// SetConnectionClose sets 'Connection: close' header.\nfunc (req *Request) SetConnectionClose() {\n\treq.Header.SetConnectionClose()\n}\n\n// SendFile registers file on the given path to be used as response body\n// when Write is called.\n//\n// Note that SendFile doesn't set Content-Type, so set it yourself\n// with Header.SetContentType.\nfunc (resp *Response) SendFile(path string) error {\n\tf, err := os.Open(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfileInfo, err := f.Stat()\n\tif err != nil {\n\t\tf.Close()\n\t\treturn err\n\t}\n\tsize64 := fileInfo.Size()\n\tsize := int(size64)\n\tif int64(size) != size64 {\n\t\tsize = -1\n\t}\n\n\tresp.Header.SetLastModified(fileInfo.ModTime())\n\tresp.SetBodyStream(f, size)\n\treturn nil\n}\n\n// SetBodyStream sets request body stream and, optionally body size.\n//\n// If bodySize is >= 0, then the bodyStream must provide exactly bodySize bytes\n// before returning io.EOF.\n//\n// If bodySize < 0, then bodyStream is read until io.EOF.\n//\n// bodyStream.Close() is called after finishing reading all body data\n// if it implements io.Closer.\n//\n// Note that GET and HEAD requests cannot have body.\n//\n// See also SetBodyStreamWriter.\nfunc (req *Request) SetBodyStream(bodyStream io.Reader, bodySize int) {\n\treq.ResetBody()\n\treq.bodyStream = bodyStream\n\treq.Header.SetContentLength(bodySize)\n}\n\n// SetBodyStream sets response body stream and, optionally body size.\n//\n// If bodySize is >= 0, then the bodyStream must provide exactly bodySize bytes\n// before returning io.EOF.\n//\n// If bodySize < 0, then bodyStream is read until io.EOF.\n//\n// bodyStream.Close() is called after finishing reading all body data\n// if it implements io.Closer.\n//\n// See also SetBodyStreamWriter.\nfunc (resp *Response) SetBodyStream(bodyStream io.Reader, bodySize int) {\n\tresp.ResetBody()\n\tresp.bodyStream = bodyStream\n\tresp.Header.SetContentLength(bodySize)\n}\n\n// IsBodyStream returns true if body is set via SetBodyStream*\nfunc (req *Request) IsBodyStream() bool {\n\treturn req.bodyStream != nil\n}\n\n// IsBodyStream returns true if body is set via SetBodyStream*\nfunc (resp *Response) IsBodyStream() bool {\n\treturn resp.bodyStream != nil\n}\n\n// SetBodyStreamWriter registers the given sw for populating request body.\n//\n// This function may be used in the following cases:\n//\n//     * if request body is too big (more than 10MB).\n//     * if request body is streamed from slow external sources.\n//     * if request body must be streamed to the server in chunks\n//     (aka `http client push` or `chunked transfer-encoding`).\n//\n// Note that GET and HEAD requests cannot have body.\n//\n/// See also SetBodyStream.\nfunc (req *Request) SetBodyStreamWriter(sw StreamWriter) {\n\tsr := NewStreamReader(sw)\n\treq.SetBodyStream(sr, -1)\n}\n\n// SetBodyStreamWriter registers the given sw for populating response body.\n//\n// This function may be used in the following cases:\n//\n//     * if response body is too big (more than 10MB).\n//     * if response body is streamed from slow external sources.\n//     * if response body must be streamed to the client in chunks\n//     (aka `http server push` or `chunked transfer-encoding`).\n//\n// See also SetBodyStream.\nfunc (resp *Response) SetBodyStreamWriter(sw StreamWriter) {\n\tsr := NewStreamReader(sw)\n\tresp.SetBodyStream(sr, -1)\n}\n\n// BodyWriter returns writer for populating response body.\n//\n// If used inside RequestHandler, the returned writer must not be used\n// after returning from RequestHandler. Use RequestCtx.Write\n// or SetBodyStreamWriter in this case.\nfunc (resp *Response) BodyWriter() io.Writer {\n\tresp.w.r = resp\n\treturn &resp.w\n}\n\n// BodyWriter returns writer for populating request body.\nfunc (req *Request) BodyWriter() io.Writer {\n\treq.w.r = req\n\treturn &req.w\n}\n\ntype responseBodyWriter struct {\n\tr *Response\n}\n\nfunc (w *responseBodyWriter) Write(p []byte) (int, error) {\n\tw.r.AppendBody(p)\n\treturn len(p), nil\n}\n\ntype requestBodyWriter struct {\n\tr *Request\n}\n\nfunc (w *requestBodyWriter) Write(p []byte) (int, error) {\n\tw.r.AppendBody(p)\n\treturn len(p), nil\n}\n\nfunc (resp *Response) parseNetConn(conn net.Conn) {\n\tresp.raddr = conn.RemoteAddr()\n\tresp.laddr = conn.LocalAddr()\n}\n\n// RemoteAddr returns the remote network address. The Addr returned is shared\n// by all invocations of RemoteAddr, so do not modify it.\nfunc (resp *Response) RemoteAddr() net.Addr {\n\treturn resp.raddr\n}\n\n// LocalAddr returns the local network address. The Addr returned is shared\n// by all invocations of LocalAddr, so do not modify it.\nfunc (resp *Response) LocalAddr() net.Addr {\n\treturn resp.laddr\n}\n\n// Body returns response body.\n//\n// The returned body is valid until the response modification.\nfunc (resp *Response) Body() []byte {\n\tif resp.bodyStream != nil {\n\t\tbodyBuf := resp.bodyBuffer()\n\t\tbodyBuf.Reset()\n\t\t_, err := copyZeroAlloc(bodyBuf, resp.bodyStream)\n\t\tresp.closeBodyStream() //nolint:errcheck\n\t\tif err != nil {\n\t\t\tbodyBuf.SetString(err.Error())\n\t\t}\n\t}\n\treturn resp.bodyBytes()\n}\n\nfunc (resp *Response) bodyBytes() []byte {\n\tif resp.bodyRaw != nil {\n\t\treturn resp.bodyRaw\n\t}\n\tif resp.body == nil {\n\t\treturn nil\n\t}\n\treturn resp.body.B\n}\n\nfunc (req *Request) bodyBytes() []byte {\n\tif req.bodyRaw != nil {\n\t\treturn req.bodyRaw\n\t}\n\tif req.body == nil {\n\t\treturn nil\n\t}\n\treturn req.body.B\n}\n\nfunc (resp *Response) bodyBuffer() *bytebufferpool.ByteBuffer {\n\tif resp.body == nil {\n\t\tresp.body = responseBodyPool.Get()\n\t}\n\tresp.bodyRaw = nil\n\treturn resp.body\n}\n\nfunc (req *Request) bodyBuffer() *bytebufferpool.ByteBuffer {\n\tif req.body == nil {\n\t\treq.body = requestBodyPool.Get()\n\t}\n\treq.bodyRaw = nil\n\treturn req.body\n}\n\nvar (\n\tresponseBodyPool bytebufferpool.Pool\n\trequestBodyPool  bytebufferpool.Pool\n)\n\n// BodyGunzip returns un-gzipped body data.\n//\n// This method may be used if the request header contains\n// 'Content-Encoding: gzip' for reading un-gzipped body.\n// Use Body for reading gzipped request body.\nfunc (req *Request) BodyGunzip() ([]byte, error) {\n\treturn gunzipData(req.Body())\n}\n\n// BodyGunzip returns un-gzipped body data.\n//\n// This method may be used if the response header contains\n// 'Content-Encoding: gzip' for reading un-gzipped body.\n// Use Body for reading gzipped response body.\nfunc (resp *Response) BodyGunzip() ([]byte, error) {\n\treturn gunzipData(resp.Body())\n}\n\nfunc gunzipData(p []byte) ([]byte, error) {\n\tvar bb bytebufferpool.ByteBuffer\n\t_, err := WriteGunzip(&bb, p)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn bb.B, nil\n}\n\n// BodyUnbrotli returns un-brotlied body data.\n//\n// This method may be used if the request header contains\n// 'Content-Encoding: br' for reading un-brotlied body.\n// Use Body for reading brotlied request body.\nfunc (req *Request) BodyUnbrotli() ([]byte, error) {\n\treturn unBrotliData(req.Body())\n}\n\n// BodyUnbrotli returns un-brotlied body data.\n//\n// This method may be used if the response header contains\n// 'Content-Encoding: br' for reading un-brotlied body.\n// Use Body for reading brotlied response body.\nfunc (resp *Response) BodyUnbrotli() ([]byte, error) {\n\treturn unBrotliData(resp.Body())\n}\n\nfunc unBrotliData(p []byte) ([]byte, error) {\n\tvar bb bytebufferpool.ByteBuffer\n\t_, err := WriteUnbrotli(&bb, p)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn bb.B, nil\n}\n\n// BodyInflate returns inflated body data.\n//\n// This method may be used if the response header contains\n// 'Content-Encoding: deflate' for reading inflated request body.\n// Use Body for reading deflated request body.\nfunc (req *Request) BodyInflate() ([]byte, error) {\n\treturn inflateData(req.Body())\n}\n\n// BodyInflate returns inflated body data.\n//\n// This method may be used if the response header contains\n// 'Content-Encoding: deflate' for reading inflated response body.\n// Use Body for reading deflated response body.\nfunc (resp *Response) BodyInflate() ([]byte, error) {\n\treturn inflateData(resp.Body())\n}\n\nfunc inflateData(p []byte) ([]byte, error) {\n\tvar bb bytebufferpool.ByteBuffer\n\t_, err := WriteInflate(&bb, p)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn bb.B, nil\n}\n\n// BodyWriteTo writes request body to w.\nfunc (req *Request) BodyWriteTo(w io.Writer) error {\n\tif req.bodyStream != nil {\n\t\t_, err := copyZeroAlloc(w, req.bodyStream)\n\t\treq.closeBodyStream() //nolint:errcheck\n\t\treturn err\n\t}\n\tif req.onlyMultipartForm() {\n\t\treturn WriteMultipartForm(w, req.multipartForm, req.multipartFormBoundary)\n\t}\n\t_, err := w.Write(req.bodyBytes())\n\treturn err\n}\n\n// BodyWriteTo writes response body to w.\nfunc (resp *Response) BodyWriteTo(w io.Writer) error {\n\tif resp.bodyStream != nil {\n\t\t_, err := copyZeroAlloc(w, resp.bodyStream)\n\t\tresp.closeBodyStream() //nolint:errcheck\n\t\treturn err\n\t}\n\t_, err := w.Write(resp.bodyBytes())\n\treturn err\n}\n\n// AppendBody appends p to response body.\n//\n// It is safe re-using p after the function returns.\nfunc (resp *Response) AppendBody(p []byte) {\n\tresp.closeBodyStream()     //nolint:errcheck\n\tresp.bodyBuffer().Write(p) //nolint:errcheck\n}\n\n// AppendBodyString appends s to response body.\nfunc (resp *Response) AppendBodyString(s string) {\n\tresp.closeBodyStream()           //nolint:errcheck\n\tresp.bodyBuffer().WriteString(s) //nolint:errcheck\n}\n\n// SetBody sets response body.\n//\n// It is safe re-using body argument after the function returns.\nfunc (resp *Response) SetBody(body []byte) {\n\tresp.closeBodyStream() //nolint:errcheck\n\tbodyBuf := resp.bodyBuffer()\n\tbodyBuf.Reset()\n\tbodyBuf.Write(body) //nolint:errcheck\n}\n\n// SetBodyString sets response body.\nfunc (resp *Response) SetBodyString(body string) {\n\tresp.closeBodyStream() //nolint:errcheck\n\tbodyBuf := resp.bodyBuffer()\n\tbodyBuf.Reset()\n\tbodyBuf.WriteString(body) //nolint:errcheck\n}\n\n// ResetBody resets response body.\nfunc (resp *Response) ResetBody() {\n\tresp.bodyRaw = nil\n\tresp.closeBodyStream() //nolint:errcheck\n\tif resp.body != nil {\n\t\tif resp.keepBodyBuffer {\n\t\t\tresp.body.Reset()\n\t\t} else {\n\t\t\tresponseBodyPool.Put(resp.body)\n\t\t\tresp.body = nil\n\t\t}\n\t}\n}\n\n// SetBodyRaw sets response body, but without copying it.\n//\n// From this point onward the body argument must not be changed.\nfunc (resp *Response) SetBodyRaw(body []byte) {\n\tresp.ResetBody()\n\tresp.bodyRaw = body\n}\n\n// SetBodyRaw sets response body, but without copying it.\n//\n// From this point onward the body argument must not be changed.\nfunc (req *Request) SetBodyRaw(body []byte) {\n\treq.ResetBody()\n\treq.bodyRaw = body\n}\n\n// ReleaseBody retires the response body if it is greater than \"size\" bytes.\n//\n// This permits GC to reclaim the large buffer.  If used, must be before\n// ReleaseResponse.\n//\n// Use this method only if you really understand how it works.\n// The majority of workloads don't need this method.\nfunc (resp *Response) ReleaseBody(size int) {\n\tresp.bodyRaw = nil\n\tif cap(resp.body.B) > size {\n\t\tresp.closeBodyStream() //nolint:errcheck\n\t\tresp.body = nil\n\t}\n}\n\n// ReleaseBody retires the request body if it is greater than \"size\" bytes.\n//\n// This permits GC to reclaim the large buffer.  If used, must be before\n// ReleaseRequest.\n//\n// Use this method only if you really understand how it works.\n// The majority of workloads don't need this method.\nfunc (req *Request) ReleaseBody(size int) {\n\treq.bodyRaw = nil\n\tif cap(req.body.B) > size {\n\t\treq.closeBodyStream() //nolint:errcheck\n\t\treq.body = nil\n\t}\n}\n\n// SwapBody swaps response body with the given body and returns\n// the previous response body.\n//\n// It is forbidden to use the body passed to SwapBody after\n// the function returns.\nfunc (resp *Response) SwapBody(body []byte) []byte {\n\tbb := resp.bodyBuffer()\n\n\tif resp.bodyStream != nil {\n\t\tbb.Reset()\n\t\t_, err := copyZeroAlloc(bb, resp.bodyStream)\n\t\tresp.closeBodyStream() //nolint:errcheck\n\t\tif err != nil {\n\t\t\tbb.Reset()\n\t\t\tbb.SetString(err.Error())\n\t\t}\n\t}\n\n\tresp.bodyRaw = nil\n\n\toldBody := bb.B\n\tbb.B = body\n\treturn oldBody\n}\n\n// SwapBody swaps request body with the given body and returns\n// the previous request body.\n//\n// It is forbidden to use the body passed to SwapBody after\n// the function returns.\nfunc (req *Request) SwapBody(body []byte) []byte {\n\tbb := req.bodyBuffer()\n\n\tif req.bodyStream != nil {\n\t\tbb.Reset()\n\t\t_, err := copyZeroAlloc(bb, req.bodyStream)\n\t\treq.closeBodyStream() //nolint:errcheck\n\t\tif err != nil {\n\t\t\tbb.Reset()\n\t\t\tbb.SetString(err.Error())\n\t\t}\n\t}\n\n\treq.bodyRaw = nil\n\n\toldBody := bb.B\n\tbb.B = body\n\treturn oldBody\n}\n\n// Body returns request body.\n//\n// The returned body is valid until the request modification.\nfunc (req *Request) Body() []byte {\n\tif req.bodyRaw != nil {\n\t\treturn req.bodyRaw\n\t} else if req.bodyStream != nil {\n\t\tbodyBuf := req.bodyBuffer()\n\t\tbodyBuf.Reset()\n\t\t_, err := copyZeroAlloc(bodyBuf, req.bodyStream)\n\t\treq.closeBodyStream() //nolint:errcheck\n\t\tif err != nil {\n\t\t\tbodyBuf.SetString(err.Error())\n\t\t}\n\t} else if req.onlyMultipartForm() {\n\t\tbody, err := marshalMultipartForm(req.multipartForm, req.multipartFormBoundary)\n\t\tif err != nil {\n\t\t\treturn []byte(err.Error())\n\t\t}\n\t\treturn body\n\t}\n\treturn req.bodyBytes()\n}\n\n// AppendBody appends p to request body.\n//\n// It is safe re-using p after the function returns.\nfunc (req *Request) AppendBody(p []byte) {\n\treq.RemoveMultipartFormFiles()\n\treq.closeBodyStream()     //nolint:errcheck\n\treq.bodyBuffer().Write(p) //nolint:errcheck\n}\n\n// AppendBodyString appends s to request body.\nfunc (req *Request) AppendBodyString(s string) {\n\treq.RemoveMultipartFormFiles()\n\treq.closeBodyStream()           //nolint:errcheck\n\treq.bodyBuffer().WriteString(s) //nolint:errcheck\n}\n\n// SetBody sets request body.\n//\n// It is safe re-using body argument after the function returns.\nfunc (req *Request) SetBody(body []byte) {\n\treq.RemoveMultipartFormFiles()\n\treq.closeBodyStream() //nolint:errcheck\n\treq.bodyBuffer().Set(body)\n}\n\n// SetBodyString sets request body.\nfunc (req *Request) SetBodyString(body string) {\n\treq.RemoveMultipartFormFiles()\n\treq.closeBodyStream() //nolint:errcheck\n\treq.bodyBuffer().SetString(body)\n}\n\n// ResetBody resets request body.\nfunc (req *Request) ResetBody() {\n\treq.bodyRaw = nil\n\treq.RemoveMultipartFormFiles()\n\treq.closeBodyStream() //nolint:errcheck\n\tif req.body != nil {\n\t\tif req.keepBodyBuffer {\n\t\t\treq.body.Reset()\n\t\t} else {\n\t\t\trequestBodyPool.Put(req.body)\n\t\t\treq.body = nil\n\t\t}\n\t}\n}\n\n// CopyTo copies req contents to dst except of body stream.\nfunc (req *Request) CopyTo(dst *Request) {\n\treq.copyToSkipBody(dst)\n\tif req.bodyRaw != nil {\n\t\tdst.bodyRaw = req.bodyRaw\n\t\tif dst.body != nil {\n\t\t\tdst.body.Reset()\n\t\t}\n\t} else if req.body != nil {\n\t\tdst.bodyBuffer().Set(req.body.B)\n\t} else if dst.body != nil {\n\t\tdst.body.Reset()\n\t}\n}\n\nfunc (req *Request) copyToSkipBody(dst *Request) {\n\tdst.Reset()\n\treq.Header.CopyTo(&dst.Header)\n\n\treq.uri.CopyTo(&dst.uri)\n\tdst.parsedURI = req.parsedURI\n\n\treq.postArgs.CopyTo(&dst.postArgs)\n\tdst.parsedPostArgs = req.parsedPostArgs\n\tdst.isTLS = req.isTLS\n\n\t// do not copy multipartForm - it will be automatically\n\t// re-created on the first call to MultipartForm.\n}\n\n// CopyTo copies resp contents to dst except of body stream.\nfunc (resp *Response) CopyTo(dst *Response) {\n\tresp.copyToSkipBody(dst)\n\tif resp.bodyRaw != nil {\n\t\tdst.bodyRaw = resp.bodyRaw\n\t\tif dst.body != nil {\n\t\t\tdst.body.Reset()\n\t\t}\n\t} else if resp.body != nil {\n\t\tdst.bodyBuffer().Set(resp.body.B)\n\t} else if dst.body != nil {\n\t\tdst.body.Reset()\n\t}\n}\n\nfunc (resp *Response) copyToSkipBody(dst *Response) {\n\tdst.Reset()\n\tresp.Header.CopyTo(&dst.Header)\n\tdst.SkipBody = resp.SkipBody\n\tdst.raddr = resp.raddr\n\tdst.laddr = resp.laddr\n}\n\nfunc swapRequestBody(a, b *Request) {\n\ta.body, b.body = b.body, a.body\n\ta.bodyRaw, b.bodyRaw = b.bodyRaw, a.bodyRaw\n\ta.bodyStream, b.bodyStream = b.bodyStream, a.bodyStream\n}\n\nfunc swapResponseBody(a, b *Response) {\n\ta.body, b.body = b.body, a.body\n\ta.bodyRaw, b.bodyRaw = b.bodyRaw, a.bodyRaw\n\ta.bodyStream, b.bodyStream = b.bodyStream, a.bodyStream\n}\n\n// URI returns request URI\nfunc (req *Request) URI() *URI {\n\treq.parseURI() //nolint:errcheck\n\treturn &req.uri\n}\n\nfunc (req *Request) parseURI() error {\n\tif req.parsedURI {\n\t\treturn nil\n\t}\n\treq.parsedURI = true\n\n\treturn req.uri.parse(req.Header.Host(), req.Header.RequestURI(), req.isTLS)\n}\n\n// PostArgs returns POST arguments.\nfunc (req *Request) PostArgs() *Args {\n\treq.parsePostArgs()\n\treturn &req.postArgs\n}\n\nfunc (req *Request) parsePostArgs() {\n\tif req.parsedPostArgs {\n\t\treturn\n\t}\n\treq.parsedPostArgs = true\n\n\tif !bytes.HasPrefix(req.Header.ContentType(), strPostArgsContentType) {\n\t\treturn\n\t}\n\treq.postArgs.ParseBytes(req.bodyBytes())\n}\n\n// ErrNoMultipartForm means that the request's Content-Type\n// isn't 'multipart/form-data'.\nvar ErrNoMultipartForm = errors.New(\"request has no multipart/form-data Content-Type\")\n\n// MultipartForm returns requests's multipart form.\n//\n// Returns ErrNoMultipartForm if request's Content-Type\n// isn't 'multipart/form-data'.\n//\n// RemoveMultipartFormFiles must be called after returned multipart form\n// is processed.\nfunc (req *Request) MultipartForm() (*multipart.Form, error) {\n\tif req.multipartForm != nil {\n\t\treturn req.multipartForm, nil\n\t}\n\n\treq.multipartFormBoundary = string(req.Header.MultipartFormBoundary())\n\tif len(req.multipartFormBoundary) == 0 {\n\t\treturn nil, ErrNoMultipartForm\n\t}\n\n\tce := req.Header.peek(strContentEncoding)\n\tbody := req.bodyBytes()\n\tif bytes.Equal(ce, strGzip) {\n\t\t// Do not care about memory usage here.\n\t\tvar err error\n\t\tif body, err = AppendGunzipBytes(nil, body); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"cannot gunzip request body: %s\", err)\n\t\t}\n\t} else if len(ce) > 0 {\n\t\treturn nil, fmt.Errorf(\"unsupported Content-Encoding: %q\", ce)\n\t}\n\n\tf, err := readMultipartForm(bytes.NewReader(body), req.multipartFormBoundary, len(body), len(body))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treq.multipartForm = f\n\treturn f, nil\n}\n\nfunc marshalMultipartForm(f *multipart.Form, boundary string) ([]byte, error) {\n\tvar buf bytebufferpool.ByteBuffer\n\tif err := WriteMultipartForm(&buf, f, boundary); err != nil {\n\t\treturn nil, err\n\t}\n\treturn buf.B, nil\n}\n\n// WriteMultipartForm writes the given multipart form f with the given\n// boundary to w.\nfunc WriteMultipartForm(w io.Writer, f *multipart.Form, boundary string) error {\n\t// Do not care about memory allocations here, since multipart\n\t// form processing is slow.\n\tif len(boundary) == 0 {\n\t\tpanic(\"BUG: form boundary cannot be empty\")\n\t}\n\n\tmw := multipart.NewWriter(w)\n\tif err := mw.SetBoundary(boundary); err != nil {\n\t\treturn fmt.Errorf(\"cannot use form boundary %q: %s\", boundary, err)\n\t}\n\n\t// marshal values\n\tfor k, vv := range f.Value {\n\t\tfor _, v := range vv {\n\t\t\tif err := mw.WriteField(k, v); err != nil {\n\t\t\t\treturn fmt.Errorf(\"cannot write form field %q value %q: %s\", k, v, err)\n\t\t\t}\n\t\t}\n\t}\n\n\t// marshal files\n\tfor k, fvv := range f.File {\n\t\tfor _, fv := range fvv {\n\t\t\tvw, err := mw.CreatePart(fv.Header)\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"cannot create form file %q (%q): %s\", k, fv.Filename, err)\n\t\t\t}\n\t\t\tfh, err := fv.Open()\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"cannot open form file %q (%q): %s\", k, fv.Filename, err)\n\t\t\t}\n\t\t\tif _, err = copyZeroAlloc(vw, fh); err != nil {\n\t\t\t\treturn fmt.Errorf(\"error when copying form file %q (%q): %s\", k, fv.Filename, err)\n\t\t\t}\n\t\t\tif err = fh.Close(); err != nil {\n\t\t\t\treturn fmt.Errorf(\"cannot close form file %q (%q): %s\", k, fv.Filename, err)\n\t\t\t}\n\t\t}\n\t}\n\n\tif err := mw.Close(); err != nil {\n\t\treturn fmt.Errorf(\"error when closing multipart form writer: %s\", err)\n\t}\n\n\treturn nil\n}\n\nfunc readMultipartForm(r io.Reader, boundary string, size, maxInMemoryFileSize int) (*multipart.Form, error) {\n\t// Do not care about memory allocations here, since they are tiny\n\t// compared to multipart data (aka multi-MB files) usually sent\n\t// in multipart/form-data requests.\n\n\tif size <= 0 {\n\t\treturn nil, fmt.Errorf(\"form size must be greater than 0. Given %d\", size)\n\t}\n\tlr := io.LimitReader(r, int64(size))\n\tmr := multipart.NewReader(lr, boundary)\n\tf, err := mr.ReadForm(int64(maxInMemoryFileSize))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"cannot read multipart/form-data body: %s\", err)\n\t}\n\treturn f, nil\n}\n\n// Reset clears request contents.\nfunc (req *Request) Reset() {\n\treq.Header.Reset()\n\treq.resetSkipHeader()\n\treq.timeout = 0\n}\n\nfunc (req *Request) resetSkipHeader() {\n\treq.ResetBody()\n\treq.uri.Reset()\n\treq.parsedURI = false\n\treq.postArgs.Reset()\n\treq.parsedPostArgs = false\n\treq.isTLS = false\n}\n\n// RemoveMultipartFormFiles removes multipart/form-data temporary files\n// associated with the request.\nfunc (req *Request) RemoveMultipartFormFiles() {\n\tif req.multipartForm != nil {\n\t\t// Do not check for error, since these files may be deleted or moved\n\t\t// to new places by user code.\n\t\treq.multipartForm.RemoveAll() //nolint:errcheck\n\t\treq.multipartForm = nil\n\t}\n\treq.multipartFormBoundary = \"\"\n}\n\n// Reset clears response contents.\nfunc (resp *Response) Reset() {\n\tresp.Header.Reset()\n\tresp.resetSkipHeader()\n\tresp.SkipBody = false\n\tresp.raddr = nil\n\tresp.laddr = nil\n\tresp.ImmediateHeaderFlush = false\n}\n\nfunc (resp *Response) resetSkipHeader() {\n\tresp.ResetBody()\n}\n\n// Read reads request (including body) from the given r.\n//\n// RemoveMultipartFormFiles or Reset must be called after\n// reading multipart/form-data request in order to delete temporarily\n// uploaded files.\n//\n// If MayContinue returns true, the caller must:\n//\n//     - Either send StatusExpectationFailed response if request headers don't\n//       satisfy the caller.\n//     - Or send StatusContinue response before reading request body\n//       with ContinueReadBody.\n//     - Or close the connection.\n//\n// io.EOF is returned if r is closed before reading the first header byte.\nfunc (req *Request) Read(r *bufio.Reader) error {\n\treturn req.ReadLimitBody(r, 0)\n}\n\nconst defaultMaxInMemoryFileSize = 16 * 1024 * 1024\n\n// ErrGetOnly is returned when server expects only GET requests,\n// but some other type of request came (Server.GetOnly option is true).\nvar ErrGetOnly = errors.New(\"non-GET request received\")\n\n// ReadLimitBody reads request from the given r, limiting the body size.\n//\n// If maxBodySize > 0 and the body size exceeds maxBodySize,\n// then ErrBodyTooLarge is returned.\n//\n// RemoveMultipartFormFiles or Reset must be called after\n// reading multipart/form-data request in order to delete temporarily\n// uploaded files.\n//\n// If MayContinue returns true, the caller must:\n//\n//     - Either send StatusExpectationFailed response if request headers don't\n//       satisfy the caller.\n//     - Or send StatusContinue response before reading request body\n//       with ContinueReadBody.\n//     - Or close the connection.\n//\n// io.EOF is returned if r is closed before reading the first header byte.\nfunc (req *Request) ReadLimitBody(r *bufio.Reader, maxBodySize int) error {\n\treq.resetSkipHeader()\n\tif err := req.Header.Read(r); err != nil {\n\t\treturn err\n\t}\n\n\treturn req.readLimitBody(r, maxBodySize, false, true)\n}\n\nfunc (req *Request) readLimitBody(r *bufio.Reader, maxBodySize int, getOnly bool, preParseMultipartForm bool) error {\n\t// Do not reset the request here - the caller must reset it before\n\t// calling this method.\n\n\tif getOnly && !req.Header.IsGet() {\n\t\treturn ErrGetOnly\n\t}\n\n\tif req.MayContinue() {\n\t\t// 'Expect: 100-continue' header found. Let the caller deciding\n\t\t// whether to read request body or\n\t\t// to return StatusExpectationFailed.\n\t\treturn nil\n\t}\n\n\treturn req.ContinueReadBody(r, maxBodySize, preParseMultipartForm)\n}\n\n// MayContinue returns true if the request contains\n// 'Expect: 100-continue' header.\n//\n// The caller must do one of the following actions if MayContinue returns true:\n//\n//     - Either send StatusExpectationFailed response if request headers don't\n//       satisfy the caller.\n//     - Or send StatusContinue response before reading request body\n//       with ContinueReadBody.\n//     - Or close the connection.\nfunc (req *Request) MayContinue() bool {\n\treturn bytes.Equal(req.Header.peek(strExpect), str100Continue)\n}\n\n// ContinueReadBody reads request body if request header contains\n// 'Expect: 100-continue'.\n//\n// The caller must send StatusContinue response before calling this method.\n//\n// If maxBodySize > 0 and the body size exceeds maxBodySize,\n// then ErrBodyTooLarge is returned.\nfunc (req *Request) ContinueReadBody(r *bufio.Reader, maxBodySize int, preParseMultipartForm ...bool) error {\n\tvar err error\n\tcontentLength := req.Header.realContentLength()\n\tif contentLength > 0 {\n\t\tif maxBodySize > 0 && contentLength > maxBodySize {\n\t\t\treturn ErrBodyTooLarge\n\t\t}\n\n\t\tif len(preParseMultipartForm) == 0 || preParseMultipartForm[0] {\n\t\t\t// Pre-read multipart form data of known length.\n\t\t\t// This way we limit memory usage for large file uploads, since their contents\n\t\t\t// is streamed into temporary files if file size exceeds defaultMaxInMemoryFileSize.\n\t\t\treq.multipartFormBoundary = string(req.Header.MultipartFormBoundary())\n\t\t\tif len(req.multipartFormBoundary) > 0 && len(req.Header.peek(strContentEncoding)) == 0 {\n\t\t\t\treq.multipartForm, err = readMultipartForm(r, req.multipartFormBoundary, contentLength, defaultMaxInMemoryFileSize)\n\t\t\t\tif err != nil {\n\t\t\t\t\treq.Reset()\n\t\t\t\t}\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\tif contentLength == -2 {\n\t\t// identity body has no sense for http requests, since\n\t\t// the end of body is determined by connection close.\n\t\t// So just ignore request body for requests without\n\t\t// 'Content-Length' and 'Transfer-Encoding' headers.\n\t\treq.Header.SetContentLength(0)\n\t\treturn nil\n\t}\n\n\tbodyBuf := req.bodyBuffer()\n\tbodyBuf.Reset()\n\tbodyBuf.B, err = readBody(r, contentLength, maxBodySize, bodyBuf.B)\n\tif err != nil {\n\t\treq.Reset()\n\t\treturn err\n\t}\n\treq.Header.SetContentLength(len(bodyBuf.B))\n\treturn nil\n}\n\n// Read reads response (including body) from the given r.\n//\n// io.EOF is returned if r is closed before reading the first header byte.\nfunc (resp *Response) Read(r *bufio.Reader) error {\n\treturn resp.ReadLimitBody(r, 0)\n}\n\n// ReadLimitBody reads response from the given r, limiting the body size.\n//\n// If maxBodySize > 0 and the body size exceeds maxBodySize,\n// then ErrBodyTooLarge is returned.\n//\n// io.EOF is returned if r is closed before reading the first header byte.\nfunc (resp *Response) ReadLimitBody(r *bufio.Reader, maxBodySize int) error {\n\tresp.resetSkipHeader()\n\terr := resp.Header.Read(r)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif resp.Header.StatusCode() == StatusContinue {\n\t\t// Read the next response according to http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html .\n\t\tif err = resp.Header.Read(r); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\tif !resp.mustSkipBody() {\n\t\tbodyBuf := resp.bodyBuffer()\n\t\tbodyBuf.Reset()\n\t\tbodyBuf.B, err = readBody(r, resp.Header.ContentLength(), maxBodySize, bodyBuf.B)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tresp.Header.SetContentLength(len(bodyBuf.B))\n\t}\n\treturn nil\n}\n\nfunc (resp *Response) mustSkipBody() bool {\n\treturn resp.SkipBody || resp.Header.mustSkipContentLength()\n}\n\nvar errRequestHostRequired = errors.New(\"missing required Host header in request\")\n\n// WriteTo writes request to w. It implements io.WriterTo.\nfunc (req *Request) WriteTo(w io.Writer) (int64, error) {\n\treturn writeBufio(req, w)\n}\n\n// WriteTo writes response to w. It implements io.WriterTo.\nfunc (resp *Response) WriteTo(w io.Writer) (int64, error) {\n\treturn writeBufio(resp, w)\n}\n\nfunc writeBufio(hw httpWriter, w io.Writer) (int64, error) {\n\tsw := acquireStatsWriter(w)\n\tbw := acquireBufioWriter(sw)\n\terr1 := hw.Write(bw)\n\terr2 := bw.Flush()\n\treleaseBufioWriter(bw)\n\tn := sw.bytesWritten\n\treleaseStatsWriter(sw)\n\n\terr := err1\n\tif err == nil {\n\t\terr = err2\n\t}\n\treturn n, err\n}\n\ntype statsWriter struct {\n\tw            io.Writer\n\tbytesWritten int64\n}\n\nfunc (w *statsWriter) Write(p []byte) (int, error) {\n\tn, err := w.w.Write(p)\n\tw.bytesWritten += int64(n)\n\treturn n, err\n}\n\nfunc acquireStatsWriter(w io.Writer) *statsWriter {\n\tv := statsWriterPool.Get()\n\tif v == nil {\n\t\treturn &statsWriter{\n\t\t\tw: w,\n\t\t}\n\t}\n\tsw := v.(*statsWriter)\n\tsw.w = w\n\treturn sw\n}\n\nfunc releaseStatsWriter(sw *statsWriter) {\n\tsw.w = nil\n\tsw.bytesWritten = 0\n\tstatsWriterPool.Put(sw)\n}\n\nvar statsWriterPool sync.Pool\n\nfunc acquireBufioWriter(w io.Writer) *bufio.Writer {\n\tv := bufioWriterPool.Get()\n\tif v == nil {\n\t\treturn bufio.NewWriter(w)\n\t}\n\tbw := v.(*bufio.Writer)\n\tbw.Reset(w)\n\treturn bw\n}\n\nfunc releaseBufioWriter(bw *bufio.Writer) {\n\tbufioWriterPool.Put(bw)\n}\n\nvar bufioWriterPool sync.Pool\n\nfunc (req *Request) onlyMultipartForm() bool {\n\treturn req.multipartForm != nil && (req.body == nil || len(req.body.B) == 0)\n}\n\n// Write writes request to w.\n//\n// Write doesn't flush request to w for performance reasons.\n//\n// See also WriteTo.\nfunc (req *Request) Write(w *bufio.Writer) error {\n\tif len(req.Header.Host()) == 0 || req.parsedURI {\n\t\turi := req.URI()\n\t\thost := uri.Host()\n\t\tif len(host) == 0 {\n\t\t\treturn errRequestHostRequired\n\t\t}\n\t\treq.Header.SetHostBytes(host)\n\t\treq.Header.SetRequestURIBytes(uri.RequestURI())\n\n\t\tif len(uri.username) > 0 {\n\t\t\t// RequestHeader.SetBytesKV only uses RequestHeader.bufKV.key\n\t\t\t// So we are free to use RequestHeader.bufKV.value as a scratch pad for\n\t\t\t// the base64 encoding.\n\t\t\tnl := len(uri.username) + len(uri.password) + 1\n\t\t\tnb := nl + len(strBasicSpace)\n\t\t\ttl := nb + base64.StdEncoding.EncodedLen(nl)\n\t\t\tif tl > cap(req.Header.bufKV.value) {\n\t\t\t\treq.Header.bufKV.value = make([]byte, 0, tl)\n\t\t\t}\n\t\t\tbuf := req.Header.bufKV.value[:0]\n\t\t\tbuf = append(buf, uri.username...)\n\t\t\tbuf = append(buf, strColon...)\n\t\t\tbuf = append(buf, uri.password...)\n\t\t\tbuf = append(buf, strBasicSpace...)\n\t\t\tbase64.StdEncoding.Encode(buf[nb:tl], buf[:nl])\n\t\t\treq.Header.SetBytesKV(strAuthorization, buf[nl:tl])\n\t\t}\n\t}\n\n\tif req.bodyStream != nil {\n\t\treturn req.writeBodyStream(w)\n\t}\n\n\tbody := req.bodyBytes()\n\tvar err error\n\tif req.onlyMultipartForm() {\n\t\tbody, err = marshalMultipartForm(req.multipartForm, req.multipartFormBoundary)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"error when marshaling multipart form: %s\", err)\n\t\t}\n\t\treq.Header.SetMultipartFormBoundary(req.multipartFormBoundary)\n\t}\n\n\thasBody := false\n\tif len(body) == 0 {\n\t\tbody = req.postArgs.QueryString()\n\t}\n\tif len(body) != 0 || !req.Header.ignoreBody() {\n\t\thasBody = true\n\t\treq.Header.SetContentLength(len(body))\n\t}\n\tif err = req.Header.Write(w); err != nil {\n\t\treturn err\n\t}\n\tif hasBody {\n\t\t_, err = w.Write(body)\n\t} else if len(body) > 0 {\n\t\treturn fmt.Errorf(\"non-zero body for non-POST request. body=%q\", body)\n\t}\n\treturn err\n}\n\n// WriteGzip writes response with gzipped body to w.\n//\n// The method gzips response body and sets 'Content-Encoding: gzip'\n// header before writing response to w.\n//\n// WriteGzip doesn't flush response to w for performance reasons.\nfunc (resp *Response) WriteGzip(w *bufio.Writer) error {\n\treturn resp.WriteGzipLevel(w, CompressDefaultCompression)\n}\n\n// WriteGzipLevel writes response with gzipped body to w.\n//\n// Level is the desired compression level:\n//\n//     * CompressNoCompression\n//     * CompressBestSpeed\n//     * CompressBestCompression\n//     * CompressDefaultCompression\n//     * CompressHuffmanOnly\n//\n// The method gzips response body and sets 'Content-Encoding: gzip'\n// header before writing response to w.\n//\n// WriteGzipLevel doesn't flush response to w for performance reasons.\nfunc (resp *Response) WriteGzipLevel(w *bufio.Writer, level int) error {\n\tif err := resp.gzipBody(level); err != nil {\n\t\treturn err\n\t}\n\treturn resp.Write(w)\n}\n\n// WriteDeflate writes response with deflated body to w.\n//\n// The method deflates response body and sets 'Content-Encoding: deflate'\n// header before writing response to w.\n//\n// WriteDeflate doesn't flush response to w for performance reasons.\nfunc (resp *Response) WriteDeflate(w *bufio.Writer) error {\n\treturn resp.WriteDeflateLevel(w, CompressDefaultCompression)\n}\n\n// WriteDeflateLevel writes response with deflated body to w.\n//\n// Level is the desired compression level:\n//\n//     * CompressNoCompression\n//     * CompressBestSpeed\n//     * CompressBestCompression\n//     * CompressDefaultCompression\n//     * CompressHuffmanOnly\n//\n// The method deflates response body and sets 'Content-Encoding: deflate'\n// header before writing response to w.\n//\n// WriteDeflateLevel doesn't flush response to w for performance reasons.\nfunc (resp *Response) WriteDeflateLevel(w *bufio.Writer, level int) error {\n\tif err := resp.deflateBody(level); err != nil {\n\t\treturn err\n\t}\n\treturn resp.Write(w)\n}\n\nfunc (resp *Response) brotliBody(level int) error {\n\tif len(resp.Header.peek(strContentEncoding)) > 0 {\n\t\t// It looks like the body is already compressed.\n\t\t// Do not compress it again.\n\t\treturn nil\n\t}\n\n\tif !resp.Header.isCompressibleContentType() {\n\t\t// The content-type cannot be compressed.\n\t\treturn nil\n\t}\n\n\tif resp.bodyStream != nil {\n\t\t// Reset Content-Length to -1, since it is impossible\n\t\t// to determine body size beforehand of streamed compression.\n\t\t// For https://github.com/valyala/fasthttp/issues/176 .\n\t\tresp.Header.SetContentLength(-1)\n\n\t\t// Do not care about memory allocations here, since brotli is slow\n\t\t// and allocates a lot of memory by itself.\n\t\tbs := resp.bodyStream\n\t\tresp.bodyStream = NewStreamReader(func(sw *bufio.Writer) {\n\t\t\tzw := acquireStacklessBrotliWriter(sw, level)\n\t\t\tfw := &flushWriter{\n\t\t\t\twf: zw,\n\t\t\t\tbw: sw,\n\t\t\t}\n\t\t\tcopyZeroAlloc(fw, bs) //nolint:errcheck\n\t\t\treleaseStacklessBrotliWriter(zw, level)\n\t\t\tif bsc, ok := bs.(io.Closer); ok {\n\t\t\t\tbsc.Close()\n\t\t\t}\n\t\t})\n\t} else {\n\t\tbodyBytes := resp.bodyBytes()\n\t\tif len(bodyBytes) < minCompressLen {\n\t\t\t// There is no sense in spending CPU time on small body compression,\n\t\t\t// since there is a very high probability that the compressed\n\t\t\t// body size will be bigger than the original body size.\n\t\t\treturn nil\n\t\t}\n\t\tw := responseBodyPool.Get()\n\t\tw.B = AppendBrotliBytesLevel(w.B, bodyBytes, level)\n\n\t\t// Hack: swap resp.body with w.\n\t\tif resp.body != nil {\n\t\t\tresponseBodyPool.Put(resp.body)\n\t\t}\n\t\tresp.body = w\n\t\tresp.bodyRaw = nil\n\t}\n\tresp.Header.SetCanonical(strContentEncoding, strBr)\n\treturn nil\n}\n\nfunc (resp *Response) gzipBody(level int) error {\n\tif len(resp.Header.peek(strContentEncoding)) > 0 {\n\t\t// It looks like the body is already compressed.\n\t\t// Do not compress it again.\n\t\treturn nil\n\t}\n\n\tif !resp.Header.isCompressibleContentType() {\n\t\t// The content-type cannot be compressed.\n\t\treturn nil\n\t}\n\n\tif resp.bodyStream != nil {\n\t\t// Reset Content-Length to -1, since it is impossible\n\t\t// to determine body size beforehand of streamed compression.\n\t\t// For https://github.com/valyala/fasthttp/issues/176 .\n\t\tresp.Header.SetContentLength(-1)\n\n\t\t// Do not care about memory allocations here, since gzip is slow\n\t\t// and allocates a lot of memory by itself.\n\t\tbs := resp.bodyStream\n\t\tresp.bodyStream = NewStreamReader(func(sw *bufio.Writer) {\n\t\t\tzw := acquireStacklessGzipWriter(sw, level)\n\t\t\tfw := &flushWriter{\n\t\t\t\twf: zw,\n\t\t\t\tbw: sw,\n\t\t\t}\n\t\t\tcopyZeroAlloc(fw, bs) //nolint:errcheck\n\t\t\treleaseStacklessGzipWriter(zw, level)\n\t\t\tif bsc, ok := bs.(io.Closer); ok {\n\t\t\t\tbsc.Close()\n\t\t\t}\n\t\t})\n\t} else {\n\t\tbodyBytes := resp.bodyBytes()\n\t\tif len(bodyBytes) < minCompressLen {\n\t\t\t// There is no sense in spending CPU time on small body compression,\n\t\t\t// since there is a very high probability that the compressed\n\t\t\t// body size will be bigger than the original body size.\n\t\t\treturn nil\n\t\t}\n\t\tw := responseBodyPool.Get()\n\t\tw.B = AppendGzipBytesLevel(w.B, bodyBytes, level)\n\n\t\t// Hack: swap resp.body with w.\n\t\tif resp.body != nil {\n\t\t\tresponseBodyPool.Put(resp.body)\n\t\t}\n\t\tresp.body = w\n\t\tresp.bodyRaw = nil\n\t}\n\tresp.Header.SetCanonical(strContentEncoding, strGzip)\n\treturn nil\n}\n\nfunc (resp *Response) deflateBody(level int) error {\n\tif len(resp.Header.peek(strContentEncoding)) > 0 {\n\t\t// It looks like the body is already compressed.\n\t\t// Do not compress it again.\n\t\treturn nil\n\t}\n\n\tif !resp.Header.isCompressibleContentType() {\n\t\t// The content-type cannot be compressed.\n\t\treturn nil\n\t}\n\n\tif resp.bodyStream != nil {\n\t\t// Reset Content-Length to -1, since it is impossible\n\t\t// to determine body size beforehand of streamed compression.\n\t\t// For https://github.com/valyala/fasthttp/issues/176 .\n\t\tresp.Header.SetContentLength(-1)\n\n\t\t// Do not care about memory allocations here, since flate is slow\n\t\t// and allocates a lot of memory by itself.\n\t\tbs := resp.bodyStream\n\t\tresp.bodyStream = NewStreamReader(func(sw *bufio.Writer) {\n\t\t\tzw := acquireStacklessDeflateWriter(sw, level)\n\t\t\tfw := &flushWriter{\n\t\t\t\twf: zw,\n\t\t\t\tbw: sw,\n\t\t\t}\n\t\t\tcopyZeroAlloc(fw, bs) //nolint:errcheck\n\t\t\treleaseStacklessDeflateWriter(zw, level)\n\t\t\tif bsc, ok := bs.(io.Closer); ok {\n\t\t\t\tbsc.Close()\n\t\t\t}\n\t\t})\n\t} else {\n\t\tbodyBytes := resp.bodyBytes()\n\t\tif len(bodyBytes) < minCompressLen {\n\t\t\t// There is no sense in spending CPU time on small body compression,\n\t\t\t// since there is a very high probability that the compressed\n\t\t\t// body size will be bigger than the original body size.\n\t\t\treturn nil\n\t\t}\n\t\tw := responseBodyPool.Get()\n\t\tw.B = AppendDeflateBytesLevel(w.B, bodyBytes, level)\n\n\t\t// Hack: swap resp.body with w.\n\t\tif resp.body != nil {\n\t\t\tresponseBodyPool.Put(resp.body)\n\t\t}\n\t\tresp.body = w\n\t\tresp.bodyRaw = nil\n\t}\n\tresp.Header.SetCanonical(strContentEncoding, strDeflate)\n\treturn nil\n}\n\n// Bodies with sizes smaller than minCompressLen aren't compressed at all\nconst minCompressLen = 200\n\ntype writeFlusher interface {\n\tio.Writer\n\tFlush() error\n}\n\ntype flushWriter struct {\n\twf writeFlusher\n\tbw *bufio.Writer\n}\n\nfunc (w *flushWriter) Write(p []byte) (int, error) {\n\tn, err := w.wf.Write(p)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tif err = w.wf.Flush(); err != nil {\n\t\treturn 0, err\n\t}\n\tif err = w.bw.Flush(); err != nil {\n\t\treturn 0, err\n\t}\n\treturn n, nil\n}\n\n// Write writes response to w.\n//\n// Write doesn't flush response to w for performance reasons.\n//\n// See also WriteTo.\nfunc (resp *Response) Write(w *bufio.Writer) error {\n\tsendBody := !resp.mustSkipBody()\n\n\tif resp.bodyStream != nil {\n\t\treturn resp.writeBodyStream(w, sendBody)\n\t}\n\n\tbody := resp.bodyBytes()\n\tbodyLen := len(body)\n\tif sendBody || bodyLen > 0 {\n\t\tresp.Header.SetContentLength(bodyLen)\n\t}\n\tif err := resp.Header.Write(w); err != nil {\n\t\treturn err\n\t}\n\tif sendBody {\n\t\tif _, err := w.Write(body); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (req *Request) writeBodyStream(w *bufio.Writer) error {\n\tvar err error\n\n\tcontentLength := req.Header.ContentLength()\n\tif contentLength < 0 {\n\t\tlrSize := limitedReaderSize(req.bodyStream)\n\t\tif lrSize >= 0 {\n\t\t\tcontentLength = int(lrSize)\n\t\t\tif int64(contentLength) != lrSize {\n\t\t\t\tcontentLength = -1\n\t\t\t}\n\t\t\tif contentLength >= 0 {\n\t\t\t\treq.Header.SetContentLength(contentLength)\n\t\t\t}\n\t\t}\n\t}\n\tif contentLength >= 0 {\n\t\tif err = req.Header.Write(w); err == nil {\n\t\t\terr = writeBodyFixedSize(w, req.bodyStream, int64(contentLength))\n\t\t}\n\t} else {\n\t\treq.Header.SetContentLength(-1)\n\t\tif err = req.Header.Write(w); err == nil {\n\t\t\terr = writeBodyChunked(w, req.bodyStream)\n\t\t}\n\t}\n\terr1 := req.closeBodyStream()\n\tif err == nil {\n\t\terr = err1\n\t}\n\treturn err\n}\n\n// ErrBodyStreamWritePanic is returned when panic happens during writing body stream.\ntype ErrBodyStreamWritePanic struct {\n\terror\n}\n\nfunc (resp *Response) writeBodyStream(w *bufio.Writer, sendBody bool) (err error) {\n\tdefer func() {\n\t\tif r := recover(); r != nil {\n\t\t\terr = &ErrBodyStreamWritePanic{\n\t\t\t\terror: fmt.Errorf(\"panic while writing body stream: %+v\", r),\n\t\t\t}\n\t\t}\n\t}()\n\n\tcontentLength := resp.Header.ContentLength()\n\tif contentLength < 0 {\n\t\tlrSize := limitedReaderSize(resp.bodyStream)\n\t\tif lrSize >= 0 {\n\t\t\tcontentLength = int(lrSize)\n\t\t\tif int64(contentLength) != lrSize {\n\t\t\t\tcontentLength = -1\n\t\t\t}\n\t\t\tif contentLength >= 0 {\n\t\t\t\tresp.Header.SetContentLength(contentLength)\n\t\t\t}\n\t\t}\n\t}\n\tif contentLength >= 0 {\n\t\tif err = resp.Header.Write(w); err == nil && sendBody {\n\t\t\tif resp.ImmediateHeaderFlush {\n\t\t\t\terr = w.Flush()\n\t\t\t}\n\t\t\tif err == nil {\n\t\t\t\terr = writeBodyFixedSize(w, resp.bodyStream, int64(contentLength))\n\t\t\t}\n\t\t}\n\t} else {\n\t\tresp.Header.SetContentLength(-1)\n\t\tif err = resp.Header.Write(w); err == nil && sendBody {\n\t\t\tif resp.ImmediateHeaderFlush {\n\t\t\t\terr = w.Flush()\n\t\t\t}\n\t\t\tif err == nil {\n\t\t\t\terr = writeBodyChunked(w, resp.bodyStream)\n\t\t\t}\n\t\t}\n\t}\n\terr1 := resp.closeBodyStream()\n\tif err == nil {\n\t\terr = err1\n\t}\n\treturn err\n}\n\nfunc (req *Request) closeBodyStream() error {\n\tif req.bodyStream == nil {\n\t\treturn nil\n\t}\n\tvar err error\n\tif bsc, ok := req.bodyStream.(io.Closer); ok {\n\t\terr = bsc.Close()\n\t}\n\treq.bodyStream = nil\n\treturn err\n}\n\nfunc (resp *Response) closeBodyStream() error {\n\tif resp.bodyStream == nil {\n\t\treturn nil\n\t}\n\tvar err error\n\tif bsc, ok := resp.bodyStream.(io.Closer); ok {\n\t\terr = bsc.Close()\n\t}\n\tresp.bodyStream = nil\n\treturn err\n}\n\n// String returns request representation.\n//\n// Returns error message instead of request representation on error.\n//\n// Use Write instead of String for performance-critical code.\nfunc (req *Request) String() string {\n\treturn getHTTPString(req)\n}\n\n// String returns response representation.\n//\n// Returns error message instead of response representation on error.\n//\n// Use Write instead of String for performance-critical code.\nfunc (resp *Response) String() string {\n\treturn getHTTPString(resp)\n}\n\nfunc getHTTPString(hw httpWriter) string {\n\tw := bytebufferpool.Get()\n\tbw := bufio.NewWriter(w)\n\tif err := hw.Write(bw); err != nil {\n\t\treturn err.Error()\n\t}\n\tif err := bw.Flush(); err != nil {\n\t\treturn err.Error()\n\t}\n\ts := string(w.B)\n\tbytebufferpool.Put(w)\n\treturn s\n}\n\ntype httpWriter interface {\n\tWrite(w *bufio.Writer) error\n}\n\nfunc writeBodyChunked(w *bufio.Writer, r io.Reader) error {\n\tvbuf := copyBufPool.Get()\n\tbuf := vbuf.([]byte)\n\n\tvar err error\n\tvar n int\n\tfor {\n\t\tn, err = r.Read(buf)\n\t\tif n == 0 {\n\t\t\tif err == nil {\n\t\t\t\tpanic(\"BUG: io.Reader returned 0, nil\")\n\t\t\t}\n\t\t\tif err == io.EOF {\n\t\t\t\tif err = writeChunk(w, buf[:0]); err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\terr = nil\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\tif err = writeChunk(w, buf[:n]); err != nil {\n\t\t\tbreak\n\t\t}\n\t}\n\n\tcopyBufPool.Put(vbuf)\n\treturn err\n}\n\nfunc limitedReaderSize(r io.Reader) int64 {\n\tlr, ok := r.(*io.LimitedReader)\n\tif !ok {\n\t\treturn -1\n\t}\n\treturn lr.N\n}\n\nfunc writeBodyFixedSize(w *bufio.Writer, r io.Reader, size int64) error {\n\tif size > maxSmallFileSize {\n\t\t// w buffer must be empty for triggering\n\t\t// sendfile path in bufio.Writer.ReadFrom.\n\t\tif err := w.Flush(); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t// Unwrap a single limited reader for triggering sendfile path\n\t// in net.TCPConn.ReadFrom.\n\tlr, ok := r.(*io.LimitedReader)\n\tif ok {\n\t\tr = lr.R\n\t}\n\n\tn, err := copyZeroAlloc(w, r)\n\n\tif ok {\n\t\tlr.N -= n\n\t}\n\n\tif n != size && err == nil {\n\t\terr = fmt.Errorf(\"copied %d bytes from body stream instead of %d bytes\", n, size)\n\t}\n\treturn err\n}\n\nfunc copyZeroAlloc(w io.Writer, r io.Reader) (int64, error) {\n\tvbuf := copyBufPool.Get()\n\tbuf := vbuf.([]byte)\n\tn, err := io.CopyBuffer(w, r, buf)\n\tcopyBufPool.Put(vbuf)\n\treturn n, err\n}\n\nvar copyBufPool = sync.Pool{\n\tNew: func() interface{} {\n\t\treturn make([]byte, 4096)\n\t},\n}\n\nfunc writeChunk(w *bufio.Writer, b []byte) error {\n\tn := len(b)\n\tif err := writeHexInt(w, n); err != nil {\n\t\treturn err\n\t}\n\tif _, err := w.Write(strCRLF); err != nil {\n\t\treturn err\n\t}\n\tif _, err := w.Write(b); err != nil {\n\t\treturn err\n\t}\n\t_, err := w.Write(strCRLF)\n\terr1 := w.Flush()\n\tif err == nil {\n\t\terr = err1\n\t}\n\treturn err\n}\n\n// ErrBodyTooLarge is returned if either request or response body exceeds\n// the given limit.\nvar ErrBodyTooLarge = errors.New(\"body size exceeds the given limit\")\n\nfunc readBody(r *bufio.Reader, contentLength int, maxBodySize int, dst []byte) ([]byte, error) {\n\tdst = dst[:0]\n\tif contentLength >= 0 {\n\t\tif maxBodySize > 0 && contentLength > maxBodySize {\n\t\t\treturn dst, ErrBodyTooLarge\n\t\t}\n\t\treturn appendBodyFixedSize(r, dst, contentLength)\n\t}\n\tif contentLength == -1 {\n\t\treturn readBodyChunked(r, maxBodySize, dst)\n\t}\n\treturn readBodyIdentity(r, maxBodySize, dst)\n}\n\nfunc readBodyIdentity(r *bufio.Reader, maxBodySize int, dst []byte) ([]byte, error) {\n\tdst = dst[:cap(dst)]\n\tif len(dst) == 0 {\n\t\tdst = make([]byte, 1024)\n\t}\n\toffset := 0\n\tfor {\n\t\tnn, err := r.Read(dst[offset:])\n\t\tif nn <= 0 {\n\t\t\tif err != nil {\n\t\t\t\tif err == io.EOF {\n\t\t\t\t\treturn dst[:offset], nil\n\t\t\t\t}\n\t\t\t\treturn dst[:offset], err\n\t\t\t}\n\t\t\tpanic(fmt.Sprintf(\"BUG: bufio.Read() returned (%d, nil)\", nn))\n\t\t}\n\t\toffset += nn\n\t\tif maxBodySize > 0 && offset > maxBodySize {\n\t\t\treturn dst[:offset], ErrBodyTooLarge\n\t\t}\n\t\tif len(dst) == offset {\n\t\t\tn := round2(2 * offset)\n\t\t\tif maxBodySize > 0 && n > maxBodySize {\n\t\t\t\tn = maxBodySize + 1\n\t\t\t}\n\t\t\tb := make([]byte, n)\n\t\t\tcopy(b, dst)\n\t\t\tdst = b\n\t\t}\n\t}\n}\n\nfunc appendBodyFixedSize(r *bufio.Reader, dst []byte, n int) ([]byte, error) {\n\tif n == 0 {\n\t\treturn dst, nil\n\t}\n\n\toffset := len(dst)\n\tdstLen := offset + n\n\tif cap(dst) < dstLen {\n\t\tb := make([]byte, round2(dstLen))\n\t\tcopy(b, dst)\n\t\tdst = b\n\t}\n\tdst = dst[:dstLen]\n\n\tfor {\n\t\tnn, err := r.Read(dst[offset:])\n\t\tif nn <= 0 {\n\t\t\tif err != nil {\n\t\t\t\tif err == io.EOF {\n\t\t\t\t\terr = io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\treturn dst[:offset], err\n\t\t\t}\n\t\t\tpanic(fmt.Sprintf(\"BUG: bufio.Read() returned (%d, nil)\", nn))\n\t\t}\n\t\toffset += nn\n\t\tif offset == dstLen {\n\t\t\treturn dst, nil\n\t\t}\n\t}\n}\n\n// ErrBrokenChunk is returned when server receives a broken chunked body (Transfer-Encoding: chunked).\ntype ErrBrokenChunk struct {\n\terror\n}\n\nfunc readBodyChunked(r *bufio.Reader, maxBodySize int, dst []byte) ([]byte, error) {\n\tif len(dst) > 0 {\n\t\tpanic(\"BUG: expected zero-length buffer\")\n\t}\n\n\tstrCRLFLen := len(strCRLF)\n\tfor {\n\t\tchunkSize, err := parseChunkSize(r)\n\t\tif err != nil {\n\t\t\treturn dst, err\n\t\t}\n\t\tif maxBodySize > 0 && len(dst)+chunkSize > maxBodySize {\n\t\t\treturn dst, ErrBodyTooLarge\n\t\t}\n\t\tdst, err = appendBodyFixedSize(r, dst, chunkSize+strCRLFLen)\n\t\tif err != nil {\n\t\t\treturn dst, err\n\t\t}\n\t\tif !bytes.Equal(dst[len(dst)-strCRLFLen:], strCRLF) {\n\t\t\treturn dst, ErrBrokenChunk{\n\t\t\t\terror: fmt.Errorf(\"cannot find crlf at the end of chunk\"),\n\t\t\t}\n\t\t}\n\t\tdst = dst[:len(dst)-strCRLFLen]\n\t\tif chunkSize == 0 {\n\t\t\treturn dst, nil\n\t\t}\n\t}\n}\n\nfunc parseChunkSize(r *bufio.Reader) (int, error) {\n\tn, err := readHexInt(r)\n\tif err != nil {\n\t\treturn -1, err\n\t}\n\tfor {\n\t\tc, err := r.ReadByte()\n\t\tif err != nil {\n\t\t\treturn -1, ErrBrokenChunk{\n\t\t\t\terror: fmt.Errorf(\"cannot read '\\r' char at the end of chunk size: %s\", err),\n\t\t\t}\n\t\t}\n\t\t// Skip any trailing whitespace after chunk size.\n\t\tif c == ' ' {\n\t\t\tcontinue\n\t\t}\n\t\tif c != '\\r' {\n\t\t\treturn -1, ErrBrokenChunk{\n\t\t\t\terror: fmt.Errorf(\"unexpected char %q at the end of chunk size. Expected %q\", c, '\\r'),\n\t\t\t}\n\t\t}\n\t\tbreak\n\t}\n\tc, err := r.ReadByte()\n\tif err != nil {\n\t\treturn -1, ErrBrokenChunk{\n\t\t\terror: fmt.Errorf(\"cannot read '\\n' char at the end of chunk size: %s\", err),\n\t\t}\n\t}\n\tif c != '\\n' {\n\t\treturn -1, ErrBrokenChunk{\n\t\t\terror: fmt.Errorf(\"unexpected char %q at the end of chunk size. Expected %q\", c, '\\n'),\n\t\t}\n\t}\n\treturn n, nil\n}\n\nfunc round2(n int) int {\n\tif n <= 0 {\n\t\treturn 0\n\t}\n\n\tx := uint32(n - 1)\n\tx |= x >> 1\n\tx |= x >> 2\n\tx |= x >> 4\n\tx |= x >> 8\n\tx |= x >> 16\n\n\treturn int(x + 1)\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/lbclient.go",
    "content": "package fasthttp\n\nimport (\n\t\"sync\"\n\t\"sync/atomic\"\n\t\"time\"\n)\n\n// BalancingClient is the interface for clients, which may be passed\n// to LBClient.Clients.\ntype BalancingClient interface {\n\tDoDeadline(req *Request, resp *Response, deadline time.Time) error\n\tPendingRequests() int\n}\n\n// LBClient balances requests among available LBClient.Clients.\n//\n// It has the following features:\n//\n//   - Balances load among available clients using 'least loaded' + 'least total'\n//     hybrid technique.\n//   - Dynamically decreases load on unhealthy clients.\n//\n// It is forbidden copying LBClient instances. Create new instances instead.\n//\n// It is safe calling LBClient methods from concurrently running goroutines.\ntype LBClient struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\t// Clients must contain non-zero clients list.\n\t// Incoming requests are balanced among these clients.\n\tClients []BalancingClient\n\n\t// HealthCheck is a callback called after each request.\n\t//\n\t// The request, response and the error returned by the client\n\t// is passed to HealthCheck, so the callback may determine whether\n\t// the client is healthy.\n\t//\n\t// Load on the current client is decreased if HealthCheck returns false.\n\t//\n\t// By default HealthCheck returns false if err != nil.\n\tHealthCheck func(req *Request, resp *Response, err error) bool\n\n\t// Timeout is the request timeout used when calling LBClient.Do.\n\t//\n\t// DefaultLBClientTimeout is used by default.\n\tTimeout time.Duration\n\n\tcs []*lbClient\n\n\tonce sync.Once\n}\n\n// DefaultLBClientTimeout is the default request timeout used by LBClient\n// when calling LBClient.Do.\n//\n// The timeout may be overridden via LBClient.Timeout.\nconst DefaultLBClientTimeout = time.Second\n\n// DoDeadline calls DoDeadline on the least loaded client\nfunc (cc *LBClient) DoDeadline(req *Request, resp *Response, deadline time.Time) error {\n\treturn cc.get().DoDeadline(req, resp, deadline)\n}\n\n// DoTimeout calculates deadline and calls DoDeadline on the least loaded client\nfunc (cc *LBClient) DoTimeout(req *Request, resp *Response, timeout time.Duration) error {\n\tdeadline := time.Now().Add(timeout)\n\treturn cc.get().DoDeadline(req, resp, deadline)\n}\n\n// Do calls calculates deadline using LBClient.Timeout and calls DoDeadline\n// on the least loaded client.\nfunc (cc *LBClient) Do(req *Request, resp *Response) error {\n\ttimeout := cc.Timeout\n\tif timeout <= 0 {\n\t\ttimeout = DefaultLBClientTimeout\n\t}\n\treturn cc.DoTimeout(req, resp, timeout)\n}\n\nfunc (cc *LBClient) init() {\n\tif len(cc.Clients) == 0 {\n\t\tpanic(\"BUG: LBClient.Clients cannot be empty\")\n\t}\n\tfor _, c := range cc.Clients {\n\t\tcc.cs = append(cc.cs, &lbClient{\n\t\t\tc:           c,\n\t\t\thealthCheck: cc.HealthCheck,\n\t\t})\n\t}\n}\n\nfunc (cc *LBClient) get() *lbClient {\n\tcc.once.Do(cc.init)\n\n\tcs := cc.cs\n\n\tminC := cs[0]\n\tminN := minC.PendingRequests()\n\tminT := atomic.LoadUint64(&minC.total)\n\tfor _, c := range cs[1:] {\n\t\tn := c.PendingRequests()\n\t\tt := atomic.LoadUint64(&c.total)\n\t\tif n < minN || (n == minN && t < minT) {\n\t\t\tminC = c\n\t\t\tminN = n\n\t\t\tminT = t\n\t\t}\n\t}\n\treturn minC\n}\n\ntype lbClient struct {\n\tc           BalancingClient\n\thealthCheck func(req *Request, resp *Response, err error) bool\n\tpenalty     uint32\n\n\t// total amount of requests handled.\n\ttotal uint64\n}\n\nfunc (c *lbClient) DoDeadline(req *Request, resp *Response, deadline time.Time) error {\n\terr := c.c.DoDeadline(req, resp, deadline)\n\tif !c.isHealthy(req, resp, err) && c.incPenalty() {\n\t\t// Penalize the client returning error, so the next requests\n\t\t// are routed to another clients.\n\t\ttime.AfterFunc(penaltyDuration, c.decPenalty)\n\t} else {\n\t\tatomic.AddUint64(&c.total, 1)\n\t}\n\treturn err\n}\n\nfunc (c *lbClient) PendingRequests() int {\n\tn := c.c.PendingRequests()\n\tm := atomic.LoadUint32(&c.penalty)\n\treturn n + int(m)\n}\n\nfunc (c *lbClient) isHealthy(req *Request, resp *Response, err error) bool {\n\tif c.healthCheck == nil {\n\t\treturn err == nil\n\t}\n\treturn c.healthCheck(req, resp, err)\n}\n\nfunc (c *lbClient) incPenalty() bool {\n\tm := atomic.AddUint32(&c.penalty, 1)\n\tif m > maxPenalty {\n\t\tc.decPenalty()\n\t\treturn false\n\t}\n\treturn true\n}\n\nfunc (c *lbClient) decPenalty() {\n\tatomic.AddUint32(&c.penalty, ^uint32(0))\n}\n\nconst (\n\tmaxPenalty = 300\n\n\tpenaltyDuration = 3 * time.Second\n)\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/methods.go",
    "content": "package fasthttp\n\n// HTTP methods were copied from net/http.\nconst (\n\tMethodGet     = \"GET\"     // RFC 7231, 4.3.1\n\tMethodHead    = \"HEAD\"    // RFC 7231, 4.3.2\n\tMethodPost    = \"POST\"    // RFC 7231, 4.3.3\n\tMethodPut     = \"PUT\"     // RFC 7231, 4.3.4\n\tMethodPatch   = \"PATCH\"   // RFC 5789\n\tMethodDelete  = \"DELETE\"  // RFC 7231, 4.3.5\n\tMethodConnect = \"CONNECT\" // RFC 7231, 4.3.6\n\tMethodOptions = \"OPTIONS\" // RFC 7231, 4.3.7\n\tMethodTrace   = \"TRACE\"   // RFC 7231, 4.3.8\n)\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/nocopy.go",
    "content": "package fasthttp\n\n// Embed this type into a struct, which mustn't be copied,\n// so `go vet` gives a warning if this struct is copied.\n//\n// See https://github.com/golang/go/issues/8005#issuecomment-190753527 for details.\n// and also: https://stackoverflow.com/questions/52494458/nocopy-minimal-example\ntype noCopy struct{} //nolint:unused\n\nfunc (*noCopy) Lock()   {}\nfunc (*noCopy) Unlock() {}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/peripconn.go",
    "content": "package fasthttp\n\nimport (\n\t\"fmt\"\n\t\"net\"\n\t\"sync\"\n)\n\ntype perIPConnCounter struct {\n\tpool sync.Pool\n\tlock sync.Mutex\n\tm    map[uint32]int\n}\n\nfunc (cc *perIPConnCounter) Register(ip uint32) int {\n\tcc.lock.Lock()\n\tif cc.m == nil {\n\t\tcc.m = make(map[uint32]int)\n\t}\n\tn := cc.m[ip] + 1\n\tcc.m[ip] = n\n\tcc.lock.Unlock()\n\treturn n\n}\n\nfunc (cc *perIPConnCounter) Unregister(ip uint32) {\n\tcc.lock.Lock()\n\tif cc.m == nil {\n\t\tcc.lock.Unlock()\n\t\tpanic(\"BUG: perIPConnCounter.Register() wasn't called\")\n\t}\n\tn := cc.m[ip] - 1\n\tif n < 0 {\n\t\tcc.lock.Unlock()\n\t\tpanic(fmt.Sprintf(\"BUG: negative per-ip counter=%d for ip=%d\", n, ip))\n\t}\n\tcc.m[ip] = n\n\tcc.lock.Unlock()\n}\n\ntype perIPConn struct {\n\tnet.Conn\n\n\tip               uint32\n\tperIPConnCounter *perIPConnCounter\n}\n\nfunc acquirePerIPConn(conn net.Conn, ip uint32, counter *perIPConnCounter) *perIPConn {\n\tv := counter.pool.Get()\n\tif v == nil {\n\t\tv = &perIPConn{\n\t\t\tperIPConnCounter: counter,\n\t\t}\n\t}\n\tc := v.(*perIPConn)\n\tc.Conn = conn\n\tc.ip = ip\n\treturn c\n}\n\nfunc releasePerIPConn(c *perIPConn) {\n\tc.Conn = nil\n\tc.perIPConnCounter.pool.Put(c)\n}\n\nfunc (c *perIPConn) Close() error {\n\terr := c.Conn.Close()\n\tc.perIPConnCounter.Unregister(c.ip)\n\treleasePerIPConn(c)\n\treturn err\n}\n\nfunc getUint32IP(c net.Conn) uint32 {\n\treturn ip2uint32(getConnIP4(c))\n}\n\nfunc getConnIP4(c net.Conn) net.IP {\n\taddr := c.RemoteAddr()\n\tipAddr, ok := addr.(*net.TCPAddr)\n\tif !ok {\n\t\treturn net.IPv4zero\n\t}\n\treturn ipAddr.IP.To4()\n}\n\nfunc ip2uint32(ip net.IP) uint32 {\n\tif len(ip) != 4 {\n\t\treturn 0\n\t}\n\treturn uint32(ip[0])<<24 | uint32(ip[1])<<16 | uint32(ip[2])<<8 | uint32(ip[3])\n}\n\nfunc uint322ip(ip uint32) net.IP {\n\tb := make([]byte, 4)\n\tb[0] = byte(ip >> 24)\n\tb[1] = byte(ip >> 16)\n\tb[2] = byte(ip >> 8)\n\tb[3] = byte(ip)\n\treturn b\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/server.go",
    "content": "package fasthttp\n\nimport (\n\t\"bufio\"\n\t\"context\"\n\t\"crypto/tls\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"mime/multipart\"\n\t\"net\"\n\t\"os\"\n\t\"strings\"\n\t\"sync\"\n\t\"sync/atomic\"\n\t\"time\"\n)\n\nvar errNoCertOrKeyProvided = errors.New(\"cert or key has not provided\")\n\nvar (\n\t// ErrAlreadyServing is returned when calling Serve on a Server\n\t// that is already serving connections.\n\tErrAlreadyServing = errors.New(\"Server is already serving connections\")\n)\n\n// ServeConn serves HTTP requests from the given connection\n// using the given handler.\n//\n// ServeConn returns nil if all requests from the c are successfully served.\n// It returns non-nil error otherwise.\n//\n// Connection c must immediately propagate all the data passed to Write()\n// to the client. Otherwise requests' processing may hang.\n//\n// ServeConn closes c before returning.\nfunc ServeConn(c net.Conn, handler RequestHandler) error {\n\tv := serverPool.Get()\n\tif v == nil {\n\t\tv = &Server{}\n\t}\n\ts := v.(*Server)\n\ts.Handler = handler\n\terr := s.ServeConn(c)\n\ts.Handler = nil\n\tserverPool.Put(v)\n\treturn err\n}\n\nvar serverPool sync.Pool\n\n// Serve serves incoming connections from the given listener\n// using the given handler.\n//\n// Serve blocks until the given listener returns permanent error.\nfunc Serve(ln net.Listener, handler RequestHandler) error {\n\ts := &Server{\n\t\tHandler: handler,\n\t}\n\treturn s.Serve(ln)\n}\n\n// ServeTLS serves HTTPS requests from the given net.Listener\n// using the given handler.\n//\n// certFile and keyFile are paths to TLS certificate and key files.\nfunc ServeTLS(ln net.Listener, certFile, keyFile string, handler RequestHandler) error {\n\ts := &Server{\n\t\tHandler: handler,\n\t}\n\treturn s.ServeTLS(ln, certFile, keyFile)\n}\n\n// ServeTLSEmbed serves HTTPS requests from the given net.Listener\n// using the given handler.\n//\n// certData and keyData must contain valid TLS certificate and key data.\nfunc ServeTLSEmbed(ln net.Listener, certData, keyData []byte, handler RequestHandler) error {\n\ts := &Server{\n\t\tHandler: handler,\n\t}\n\treturn s.ServeTLSEmbed(ln, certData, keyData)\n}\n\n// ListenAndServe serves HTTP requests from the given TCP addr\n// using the given handler.\nfunc ListenAndServe(addr string, handler RequestHandler) error {\n\ts := &Server{\n\t\tHandler: handler,\n\t}\n\treturn s.ListenAndServe(addr)\n}\n\n// ListenAndServeUNIX serves HTTP requests from the given UNIX addr\n// using the given handler.\n//\n// The function deletes existing file at addr before starting serving.\n//\n// The server sets the given file mode for the UNIX addr.\nfunc ListenAndServeUNIX(addr string, mode os.FileMode, handler RequestHandler) error {\n\ts := &Server{\n\t\tHandler: handler,\n\t}\n\treturn s.ListenAndServeUNIX(addr, mode)\n}\n\n// ListenAndServeTLS serves HTTPS requests from the given TCP addr\n// using the given handler.\n//\n// certFile and keyFile are paths to TLS certificate and key files.\nfunc ListenAndServeTLS(addr, certFile, keyFile string, handler RequestHandler) error {\n\ts := &Server{\n\t\tHandler: handler,\n\t}\n\treturn s.ListenAndServeTLS(addr, certFile, keyFile)\n}\n\n// ListenAndServeTLSEmbed serves HTTPS requests from the given TCP addr\n// using the given handler.\n//\n// certData and keyData must contain valid TLS certificate and key data.\nfunc ListenAndServeTLSEmbed(addr string, certData, keyData []byte, handler RequestHandler) error {\n\ts := &Server{\n\t\tHandler: handler,\n\t}\n\treturn s.ListenAndServeTLSEmbed(addr, certData, keyData)\n}\n\n// RequestHandler must process incoming requests.\n//\n// RequestHandler must call ctx.TimeoutError() before returning\n// if it keeps references to ctx and/or its' members after the return.\n// Consider wrapping RequestHandler into TimeoutHandler if response time\n// must be limited.\ntype RequestHandler func(ctx *RequestCtx)\n\n// ServeHandler must process tls.Config.NextProto negotiated requests.\ntype ServeHandler func(c net.Conn) error\n\n// Server implements HTTP server.\n//\n// Default Server settings should satisfy the majority of Server users.\n// Adjust Server settings only if you really understand the consequences.\n//\n// It is forbidden copying Server instances. Create new Server instances\n// instead.\n//\n// It is safe to call Server methods from concurrently running goroutines.\ntype Server struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\t// Handler for processing incoming requests.\n\t//\n\t// Take into account that no `panic` recovery is done by `fasthttp` (thus any `panic` will take down the entire server).\n\t// Instead the user should use `recover` to handle these situations.\n\tHandler RequestHandler\n\n\t// ErrorHandler for returning a response in case of an error while receiving or parsing the request.\n\t//\n\t// The following is a non-exhaustive list of errors that can be expected as argument:\n\t//   * io.EOF\n\t//   * io.ErrUnexpectedEOF\n\t//   * ErrGetOnly\n\t//   * ErrSmallBuffer\n\t//   * ErrBodyTooLarge\n\t//   * ErrBrokenChunks\n\tErrorHandler func(ctx *RequestCtx, err error)\n\n\t// HeaderReceived is called after receiving the header\n\t//\n\t// non zero RequestConfig field values will overwrite the default configs\n\tHeaderReceived func(header *RequestHeader) RequestConfig\n\n\t// ContinueHandler is called after receiving the Expect 100 Continue Header\n\t//\n\t// https://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.2.3\n\t// https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.1.1\n\t// Using ContinueHandler a server can make decisioning on whether or not\n\t// to read a potentially large request body based on the headers\n\t//\n\t// The default is to automatically read request bodies of Expect 100 Continue requests\n\t// like they are normal requests\n\tContinueHandler func(header *RequestHeader) bool\n\n\t// Server name for sending in response headers.\n\t//\n\t// Default server name is used if left blank.\n\tName string\n\n\t// The maximum number of concurrent connections the server may serve.\n\t//\n\t// DefaultConcurrency is used if not set.\n\t//\n\t// Concurrency only works if you either call Serve once, or only ServeConn multiple times.\n\t// It works with ListenAndServe as well.\n\tConcurrency int\n\n\t// Whether to disable keep-alive connections.\n\t//\n\t// The server will close all the incoming connections after sending\n\t// the first response to client if this option is set to true.\n\t//\n\t// By default keep-alive connections are enabled.\n\tDisableKeepalive bool\n\n\t// Per-connection buffer size for requests' reading.\n\t// This also limits the maximum header size.\n\t//\n\t// Increase this buffer if your clients send multi-KB RequestURIs\n\t// and/or multi-KB headers (for example, BIG cookies).\n\t//\n\t// Default buffer size is used if not set.\n\tReadBufferSize int\n\n\t// Per-connection buffer size for responses' writing.\n\t//\n\t// Default buffer size is used if not set.\n\tWriteBufferSize int\n\n\t// ReadTimeout is the amount of time allowed to read\n\t// the full request including body. The connection's read\n\t// deadline is reset when the connection opens, or for\n\t// keep-alive connections after the first byte has been read.\n\t//\n\t// By default request read timeout is unlimited.\n\tReadTimeout time.Duration\n\n\t// WriteTimeout is the maximum duration before timing out\n\t// writes of the response. It is reset after the request handler\n\t// has returned.\n\t//\n\t// By default response write timeout is unlimited.\n\tWriteTimeout time.Duration\n\n\t// IdleTimeout is the maximum amount of time to wait for the\n\t// next request when keep-alive is enabled. If IdleTimeout\n\t// is zero, the value of ReadTimeout is used.\n\tIdleTimeout time.Duration\n\n\t// Maximum number of concurrent client connections allowed per IP.\n\t//\n\t// By default unlimited number of concurrent connections\n\t// may be established to the server from a single IP address.\n\tMaxConnsPerIP int\n\n\t// Maximum number of requests served per connection.\n\t//\n\t// The server closes connection after the last request.\n\t// 'Connection: close' header is added to the last response.\n\t//\n\t// By default unlimited number of requests may be served per connection.\n\tMaxRequestsPerConn int\n\n\t// MaxKeepaliveDuration is a no-op and only left here for backwards compatibility.\n\t// Deprecated: Use IdleTimeout instead.\n\tMaxKeepaliveDuration time.Duration\n\n\t// Whether to enable tcp keep-alive connections.\n\t//\n\t// Whether the operating system should send tcp keep-alive messages on the tcp connection.\n\t//\n\t// By default tcp keep-alive connections are disabled.\n\tTCPKeepalive bool\n\n\t// Period between tcp keep-alive messages.\n\t//\n\t// TCP keep-alive period is determined by operation system by default.\n\tTCPKeepalivePeriod time.Duration\n\n\t// Maximum request body size.\n\t//\n\t// The server rejects requests with bodies exceeding this limit.\n\t//\n\t// Request body size is limited by DefaultMaxRequestBodySize by default.\n\tMaxRequestBodySize int\n\n\t// Aggressively reduces memory usage at the cost of higher CPU usage\n\t// if set to true.\n\t//\n\t// Try enabling this option only if the server consumes too much memory\n\t// serving mostly idle keep-alive connections. This may reduce memory\n\t// usage by more than 50%.\n\t//\n\t// Aggressive memory usage reduction is disabled by default.\n\tReduceMemoryUsage bool\n\n\t// Rejects all non-GET requests if set to true.\n\t//\n\t// This option is useful as anti-DoS protection for servers\n\t// accepting only GET requests. The request size is limited\n\t// by ReadBufferSize if GetOnly is set.\n\t//\n\t// Server accepts all the requests by default.\n\tGetOnly bool\n\n\t// Will not pre parse Multipart Form data if set to true.\n\t//\n\t// This option is useful for servers that desire to treat\n\t// multipart form data as a binary blob, or choose when to parse the data.\n\t//\n\t// Server pre parses multipart form data by default.\n\tDisablePreParseMultipartForm bool\n\n\t// Logs all errors, including the most frequent\n\t// 'connection reset by peer', 'broken pipe' and 'connection timeout'\n\t// errors. Such errors are common in production serving real-world\n\t// clients.\n\t//\n\t// By default the most frequent errors such as\n\t// 'connection reset by peer', 'broken pipe' and 'connection timeout'\n\t// are suppressed in order to limit output log traffic.\n\tLogAllErrors bool\n\n\t// Header names are passed as-is without normalization\n\t// if this option is set.\n\t//\n\t// Disabled header names' normalization may be useful only for proxying\n\t// incoming requests to other servers expecting case-sensitive\n\t// header names. See https://github.com/valyala/fasthttp/issues/57\n\t// for details.\n\t//\n\t// By default request and response header names are normalized, i.e.\n\t// The first letter and the first letters following dashes\n\t// are uppercased, while all the other letters are lowercased.\n\t// Examples:\n\t//\n\t//     * HOST -> Host\n\t//     * content-type -> Content-Type\n\t//     * cONTENT-lenGTH -> Content-Length\n\tDisableHeaderNamesNormalizing bool\n\n\t// SleepWhenConcurrencyLimitsExceeded is a duration to be slept of if\n\t// the concurrency limit in exceeded (default [when is 0]: don't sleep\n\t// and accept new connections immidiatelly).\n\tSleepWhenConcurrencyLimitsExceeded time.Duration\n\n\t// NoDefaultServerHeader, when set to true, causes the default Server header\n\t// to be excluded from the Response.\n\t//\n\t// The default Server header value is the value of the Name field or an\n\t// internal default value in its absence. With this option set to true,\n\t// the only time a Server header will be sent is if a non-zero length\n\t// value is explicitly provided during a request.\n\tNoDefaultServerHeader bool\n\n\t// NoDefaultDate, when set to true, causes the default Date\n\t// header to be excluded from the Response.\n\t//\n\t// The default Date header value is the current date value. When\n\t// set to true, the Date will not be present.\n\tNoDefaultDate bool\n\n\t// NoDefaultContentType, when set to true, causes the default Content-Type\n\t// header to be excluded from the Response.\n\t//\n\t// The default Content-Type header value is the internal default value. When\n\t// set to true, the Content-Type will not be present.\n\tNoDefaultContentType bool\n\n\t// ConnState specifies an optional callback function that is\n\t// called when a client connection changes state. See the\n\t// ConnState type and associated constants for details.\n\tConnState func(net.Conn, ConnState)\n\n\t// Logger, which is used by RequestCtx.Logger().\n\t//\n\t// By default standard logger from log package is used.\n\tLogger Logger\n\n\t// KeepHijackedConns is an opt-in disable of connection\n\t// close by fasthttp after connections' HijackHandler returns.\n\t// This allows to save goroutines, e.g. when fasthttp used to upgrade\n\t// http connections to WS and connection goes to another handler,\n\t// which will close it when needed.\n\tKeepHijackedConns bool\n\n\ttlsConfig  *tls.Config\n\tnextProtos map[string]ServeHandler\n\n\tconcurrency      uint32\n\tconcurrencyCh    chan struct{}\n\tperIPConnCounter perIPConnCounter\n\tserverName       atomic.Value\n\n\tctxPool        sync.Pool\n\treaderPool     sync.Pool\n\twriterPool     sync.Pool\n\thijackConnPool sync.Pool\n\n\t// We need to know our listeners so we can close them in Shutdown().\n\tln []net.Listener\n\n\tmu   sync.Mutex\n\topen int32\n\tstop int32\n\tdone chan struct{}\n}\n\n// TimeoutHandler creates RequestHandler, which returns StatusRequestTimeout\n// error with the given msg to the client if h didn't return during\n// the given duration.\n//\n// The returned handler may return StatusTooManyRequests error with the given\n// msg to the client if there are more than Server.Concurrency concurrent\n// handlers h are running at the moment.\nfunc TimeoutHandler(h RequestHandler, timeout time.Duration, msg string) RequestHandler {\n\treturn TimeoutWithCodeHandler(h, timeout, msg, StatusRequestTimeout)\n}\n\n// TimeoutWithCodeHandler creates RequestHandler, which returns an error with\n// the given msg and status code to the client  if h didn't return during\n// the given duration.\n//\n// The returned handler may return StatusTooManyRequests error with the given\n// msg to the client if there are more than Server.Concurrency concurrent\n// handlers h are running at the moment.\nfunc TimeoutWithCodeHandler(h RequestHandler, timeout time.Duration, msg string, statusCode int) RequestHandler {\n\tif timeout <= 0 {\n\t\treturn h\n\t}\n\n\treturn func(ctx *RequestCtx) {\n\t\tconcurrencyCh := ctx.s.concurrencyCh\n\t\tselect {\n\t\tcase concurrencyCh <- struct{}{}:\n\t\tdefault:\n\t\t\tctx.Error(msg, StatusTooManyRequests)\n\t\t\treturn\n\t\t}\n\n\t\tch := ctx.timeoutCh\n\t\tif ch == nil {\n\t\t\tch = make(chan struct{}, 1)\n\t\t\tctx.timeoutCh = ch\n\t\t}\n\t\tgo func() {\n\t\t\th(ctx)\n\t\t\tch <- struct{}{}\n\t\t\t<-concurrencyCh\n\t\t}()\n\t\tctx.timeoutTimer = initTimer(ctx.timeoutTimer, timeout)\n\t\tselect {\n\t\tcase <-ch:\n\t\tcase <-ctx.timeoutTimer.C:\n\t\t\tctx.TimeoutErrorWithCode(msg, statusCode)\n\t\t}\n\t\tstopTimer(ctx.timeoutTimer)\n\t}\n}\n\n//RequestConfig configure the per request deadline and body limits\ntype RequestConfig struct {\n\t// ReadTimeout is the maximum duration for reading the entire\n\t// request body.\n\t// a zero value means that default values will be honored\n\tReadTimeout time.Duration\n\t// WriteTimeout is the maximum duration before timing out\n\t// writes of the response.\n\t// a zero value means that default values will be honored\n\tWriteTimeout time.Duration\n\t// Maximum request body size.\n\t// a zero value means that default values will be honored\n\tMaxRequestBodySize int\n}\n\n// CompressHandler returns RequestHandler that transparently compresses\n// response body generated by h if the request contains 'gzip' or 'deflate'\n// 'Accept-Encoding' header.\nfunc CompressHandler(h RequestHandler) RequestHandler {\n\treturn CompressHandlerLevel(h, CompressDefaultCompression)\n}\n\n// CompressHandlerLevel returns RequestHandler that transparently compresses\n// response body generated by h if the request contains a 'gzip' or 'deflate'\n// 'Accept-Encoding' header.\n//\n// Level is the desired compression level:\n//\n//     * CompressNoCompression\n//     * CompressBestSpeed\n//     * CompressBestCompression\n//     * CompressDefaultCompression\n//     * CompressHuffmanOnly\nfunc CompressHandlerLevel(h RequestHandler, level int) RequestHandler {\n\treturn func(ctx *RequestCtx) {\n\t\th(ctx)\n\t\tif ctx.Request.Header.HasAcceptEncodingBytes(strGzip) {\n\t\t\tctx.Response.gzipBody(level) //nolint:errcheck\n\t\t} else if ctx.Request.Header.HasAcceptEncodingBytes(strDeflate) {\n\t\t\tctx.Response.deflateBody(level) //nolint:errcheck\n\t\t}\n\t}\n}\n\n// CompressHandlerBrotliLevel returns RequestHandler that transparently compresses\n// response body generated by h if the request contains a 'br', 'gzip' or 'deflate'\n// 'Accept-Encoding' header.\n//\n// brotliLevel is the desired compression level for brotli.\n//\n//     * CompressBrotliNoCompression\n//     * CompressBrotliBestSpeed\n//     * CompressBrotliBestCompression\n//     * CompressBrotliDefaultCompression\n//\n// otherLevel is the desired compression level for gzip and deflate.\n//\n//     * CompressNoCompression\n//     * CompressBestSpeed\n//     * CompressBestCompression\n//     * CompressDefaultCompression\n//     * CompressHuffmanOnly\nfunc CompressHandlerBrotliLevel(h RequestHandler, brotliLevel, otherLevel int) RequestHandler {\n\treturn func(ctx *RequestCtx) {\n\t\th(ctx)\n\t\tif ctx.Request.Header.HasAcceptEncodingBytes(strBr) {\n\t\t\tctx.Response.brotliBody(brotliLevel) //nolint:errcheck\n\t\t} else if ctx.Request.Header.HasAcceptEncodingBytes(strGzip) {\n\t\t\tctx.Response.gzipBody(otherLevel) //nolint:errcheck\n\t\t} else if ctx.Request.Header.HasAcceptEncodingBytes(strDeflate) {\n\t\t\tctx.Response.deflateBody(otherLevel) //nolint:errcheck\n\t\t}\n\t}\n}\n\n// RequestCtx contains incoming request and manages outgoing response.\n//\n// It is forbidden copying RequestCtx instances.\n//\n// RequestHandler should avoid holding references to incoming RequestCtx and/or\n// its' members after the return.\n// If holding RequestCtx references after the return is unavoidable\n// (for instance, ctx is passed to a separate goroutine and ctx lifetime cannot\n// be controlled), then the RequestHandler MUST call ctx.TimeoutError()\n// before return.\n//\n// It is unsafe modifying/reading RequestCtx instance from concurrently\n// running goroutines. The only exception is TimeoutError*, which may be called\n// while other goroutines accessing RequestCtx.\ntype RequestCtx struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\t// Incoming request.\n\t//\n\t// Copying Request by value is forbidden. Use pointer to Request instead.\n\tRequest Request\n\n\t// Outgoing response.\n\t//\n\t// Copying Response by value is forbidden. Use pointer to Response instead.\n\tResponse Response\n\n\tuserValues userData\n\n\tconnID         uint64\n\tconnRequestNum uint64\n\tconnTime       time.Time\n\n\ttime time.Time\n\n\tlogger ctxLogger\n\ts      *Server\n\tc      net.Conn\n\tfbr    firstByteReader\n\n\ttimeoutResponse *Response\n\ttimeoutCh       chan struct{}\n\ttimeoutTimer    *time.Timer\n\n\thijackHandler    HijackHandler\n\thijackNoResponse bool\n}\n\n// HijackHandler must process the hijacked connection c.\n//\n// If KeepHijackedConns is disabled, which is by default,\n// the connection c is automatically closed after returning from HijackHandler.\n//\n// The connection c must not be used after returning from the handler, if KeepHijackedConns is disabled.\n//\n// When KeepHijackedConns enabled, fasthttp will not Close() the connection,\n// you must do it when you need it. You must not use c in any way after calling Close().\ntype HijackHandler func(c net.Conn)\n\n// Hijack registers the given handler for connection hijacking.\n//\n// The handler is called after returning from RequestHandler\n// and sending http response. The current connection is passed\n// to the handler. The connection is automatically closed after\n// returning from the handler.\n//\n// The server skips calling the handler in the following cases:\n//\n//     * 'Connection: close' header exists in either request or response.\n//     * Unexpected error during response writing to the connection.\n//\n// The server stops processing requests from hijacked connections.\n//\n// Server limits such as Concurrency, ReadTimeout, WriteTimeout, etc.\n// aren't applied to hijacked connections.\n//\n// The handler must not retain references to ctx members.\n//\n// Arbitrary 'Connection: Upgrade' protocols may be implemented\n// with HijackHandler. For instance,\n//\n//     * WebSocket ( https://en.wikipedia.org/wiki/WebSocket )\n//     * HTTP/2.0 ( https://en.wikipedia.org/wiki/HTTP/2 )\n//\nfunc (ctx *RequestCtx) Hijack(handler HijackHandler) {\n\tctx.hijackHandler = handler\n}\n\n// HijackSetNoResponse changes the behavior of hijacking a request.\n// If HijackSetNoResponse is called with false fasthttp will send a response\n// to the client before calling the HijackHandler (default). If HijackSetNoResponse\n// is called with true no response is send back before calling the\n// HijackHandler supplied in the Hijack function.\nfunc (ctx *RequestCtx) HijackSetNoResponse(noResponse bool) {\n\tctx.hijackNoResponse = noResponse\n}\n\n// Hijacked returns true after Hijack is called.\nfunc (ctx *RequestCtx) Hijacked() bool {\n\treturn ctx.hijackHandler != nil\n}\n\n// SetUserValue stores the given value (arbitrary object)\n// under the given key in ctx.\n//\n// The value stored in ctx may be obtained by UserValue*.\n//\n// This functionality may be useful for passing arbitrary values between\n// functions involved in request processing.\n//\n// All the values are removed from ctx after returning from the top\n// RequestHandler. Additionally, Close method is called on each value\n// implementing io.Closer before removing the value from ctx.\nfunc (ctx *RequestCtx) SetUserValue(key string, value interface{}) {\n\tctx.userValues.Set(key, value)\n}\n\n// SetUserValueBytes stores the given value (arbitrary object)\n// under the given key in ctx.\n//\n// The value stored in ctx may be obtained by UserValue*.\n//\n// This functionality may be useful for passing arbitrary values between\n// functions involved in request processing.\n//\n// All the values stored in ctx are deleted after returning from RequestHandler.\nfunc (ctx *RequestCtx) SetUserValueBytes(key []byte, value interface{}) {\n\tctx.userValues.SetBytes(key, value)\n}\n\n// UserValue returns the value stored via SetUserValue* under the given key.\nfunc (ctx *RequestCtx) UserValue(key string) interface{} {\n\treturn ctx.userValues.Get(key)\n}\n\n// UserValueBytes returns the value stored via SetUserValue*\n// under the given key.\nfunc (ctx *RequestCtx) UserValueBytes(key []byte) interface{} {\n\treturn ctx.userValues.GetBytes(key)\n}\n\n// VisitUserValues calls visitor for each existing userValue.\n//\n// visitor must not retain references to key and value after returning.\n// Make key and/or value copies if you need storing them after returning.\nfunc (ctx *RequestCtx) VisitUserValues(visitor func([]byte, interface{})) {\n\tfor i, n := 0, len(ctx.userValues); i < n; i++ {\n\t\tkv := &ctx.userValues[i]\n\t\tvisitor(kv.key, kv.value)\n\t}\n}\n\ntype connTLSer interface {\n\tHandshake() error\n\tConnectionState() tls.ConnectionState\n}\n\n// IsTLS returns true if the underlying connection is tls.Conn.\n//\n// tls.Conn is an encrypted connection (aka SSL, HTTPS).\nfunc (ctx *RequestCtx) IsTLS() bool {\n\t// cast to (connTLSer) instead of (*tls.Conn), since it catches\n\t// cases with overridden tls.Conn such as:\n\t//\n\t// type customConn struct {\n\t//     *tls.Conn\n\t//\n\t//     // other custom fields here\n\t// }\n\t_, ok := ctx.c.(connTLSer)\n\treturn ok\n}\n\n// TLSConnectionState returns TLS connection state.\n//\n// The function returns nil if the underlying connection isn't tls.Conn.\n//\n// The returned state may be used for verifying TLS version, client certificates,\n// etc.\nfunc (ctx *RequestCtx) TLSConnectionState() *tls.ConnectionState {\n\ttlsConn, ok := ctx.c.(connTLSer)\n\tif !ok {\n\t\treturn nil\n\t}\n\tstate := tlsConn.ConnectionState()\n\treturn &state\n}\n\n// Conn returns a reference to the underlying net.Conn.\n//\n// WARNING: Only use this method if you know what you are doing!\n//\n// Reading from or writing to the returned connection will end badly!\nfunc (ctx *RequestCtx) Conn() net.Conn {\n\treturn ctx.c\n}\n\ntype firstByteReader struct {\n\tc        net.Conn\n\tch       byte\n\tbyteRead bool\n}\n\nfunc (r *firstByteReader) Read(b []byte) (int, error) {\n\tif len(b) == 0 {\n\t\treturn 0, nil\n\t}\n\tnn := 0\n\tif !r.byteRead {\n\t\tb[0] = r.ch\n\t\tb = b[1:]\n\t\tr.byteRead = true\n\t\tnn = 1\n\t}\n\tn, err := r.c.Read(b)\n\treturn n + nn, err\n}\n\n// Logger is used for logging formatted messages.\ntype Logger interface {\n\t// Printf must have the same semantics as log.Printf.\n\tPrintf(format string, args ...interface{})\n}\n\nvar ctxLoggerLock sync.Mutex\n\ntype ctxLogger struct {\n\tctx    *RequestCtx\n\tlogger Logger\n}\n\nfunc (cl *ctxLogger) Printf(format string, args ...interface{}) {\n\tmsg := fmt.Sprintf(format, args...)\n\tctxLoggerLock.Lock()\n\tcl.logger.Printf(\"%.3f %s - %s\", time.Since(cl.ctx.ConnTime()).Seconds(), cl.ctx.String(), msg)\n\tctxLoggerLock.Unlock()\n}\n\nvar zeroTCPAddr = &net.TCPAddr{\n\tIP: net.IPv4zero,\n}\n\n// String returns unique string representation of the ctx.\n//\n// The returned value may be useful for logging.\nfunc (ctx *RequestCtx) String() string {\n\treturn fmt.Sprintf(\"#%016X - %s<->%s - %s %s\", ctx.ID(), ctx.LocalAddr(), ctx.RemoteAddr(), ctx.Request.Header.Method(), ctx.URI().FullURI())\n}\n\n// ID returns unique ID of the request.\nfunc (ctx *RequestCtx) ID() uint64 {\n\treturn (ctx.connID << 32) | ctx.connRequestNum\n}\n\n// ConnID returns unique connection ID.\n//\n// This ID may be used to match distinct requests to the same incoming\n// connection.\nfunc (ctx *RequestCtx) ConnID() uint64 {\n\treturn ctx.connID\n}\n\n// Time returns RequestHandler call time.\nfunc (ctx *RequestCtx) Time() time.Time {\n\treturn ctx.time\n}\n\n// ConnTime returns the time the server started serving the connection\n// the current request came from.\nfunc (ctx *RequestCtx) ConnTime() time.Time {\n\treturn ctx.connTime\n}\n\n// ConnRequestNum returns request sequence number\n// for the current connection.\n//\n// Sequence starts with 1.\nfunc (ctx *RequestCtx) ConnRequestNum() uint64 {\n\treturn ctx.connRequestNum\n}\n\n// SetConnectionClose sets 'Connection: close' response header and closes\n// connection after the RequestHandler returns.\nfunc (ctx *RequestCtx) SetConnectionClose() {\n\tctx.Response.SetConnectionClose()\n}\n\n// SetStatusCode sets response status code.\nfunc (ctx *RequestCtx) SetStatusCode(statusCode int) {\n\tctx.Response.SetStatusCode(statusCode)\n}\n\n// SetContentType sets response Content-Type.\nfunc (ctx *RequestCtx) SetContentType(contentType string) {\n\tctx.Response.Header.SetContentType(contentType)\n}\n\n// SetContentTypeBytes sets response Content-Type.\n//\n// It is safe modifying contentType buffer after function return.\nfunc (ctx *RequestCtx) SetContentTypeBytes(contentType []byte) {\n\tctx.Response.Header.SetContentTypeBytes(contentType)\n}\n\n// RequestURI returns RequestURI.\n//\n// This uri is valid until returning from RequestHandler.\nfunc (ctx *RequestCtx) RequestURI() []byte {\n\treturn ctx.Request.Header.RequestURI()\n}\n\n// URI returns requested uri.\n//\n// The uri is valid until returning from RequestHandler.\nfunc (ctx *RequestCtx) URI() *URI {\n\treturn ctx.Request.URI()\n}\n\n// Referer returns request referer.\n//\n// The referer is valid until returning from RequestHandler.\nfunc (ctx *RequestCtx) Referer() []byte {\n\treturn ctx.Request.Header.Referer()\n}\n\n// UserAgent returns User-Agent header value from the request.\nfunc (ctx *RequestCtx) UserAgent() []byte {\n\treturn ctx.Request.Header.UserAgent()\n}\n\n// Path returns requested path.\n//\n// The path is valid until returning from RequestHandler.\nfunc (ctx *RequestCtx) Path() []byte {\n\treturn ctx.URI().Path()\n}\n\n// Host returns requested host.\n//\n// The host is valid until returning from RequestHandler.\nfunc (ctx *RequestCtx) Host() []byte {\n\treturn ctx.URI().Host()\n}\n\n// QueryArgs returns query arguments from RequestURI.\n//\n// It doesn't return POST'ed arguments - use PostArgs() for this.\n//\n// Returned arguments are valid until returning from RequestHandler.\n//\n// See also PostArgs, FormValue and FormFile.\nfunc (ctx *RequestCtx) QueryArgs() *Args {\n\treturn ctx.URI().QueryArgs()\n}\n\n// PostArgs returns POST arguments.\n//\n// It doesn't return query arguments from RequestURI - use QueryArgs for this.\n//\n// Returned arguments are valid until returning from RequestHandler.\n//\n// See also QueryArgs, FormValue and FormFile.\nfunc (ctx *RequestCtx) PostArgs() *Args {\n\treturn ctx.Request.PostArgs()\n}\n\n// MultipartForm returns requests's multipart form.\n//\n// Returns ErrNoMultipartForm if request's content-type\n// isn't 'multipart/form-data'.\n//\n// All uploaded temporary files are automatically deleted after\n// returning from RequestHandler. Either move or copy uploaded files\n// into new place if you want retaining them.\n//\n// Use SaveMultipartFile function for permanently saving uploaded file.\n//\n// The returned form is valid until returning from RequestHandler.\n//\n// See also FormFile and FormValue.\nfunc (ctx *RequestCtx) MultipartForm() (*multipart.Form, error) {\n\treturn ctx.Request.MultipartForm()\n}\n\n// FormFile returns uploaded file associated with the given multipart form key.\n//\n// The file is automatically deleted after returning from RequestHandler,\n// so either move or copy uploaded file into new place if you want retaining it.\n//\n// Use SaveMultipartFile function for permanently saving uploaded file.\n//\n// The returned file header is valid until returning from RequestHandler.\nfunc (ctx *RequestCtx) FormFile(key string) (*multipart.FileHeader, error) {\n\tmf, err := ctx.MultipartForm()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif mf.File == nil {\n\t\treturn nil, err\n\t}\n\tfhh := mf.File[key]\n\tif fhh == nil {\n\t\treturn nil, ErrMissingFile\n\t}\n\treturn fhh[0], nil\n}\n\n// ErrMissingFile may be returned from FormFile when the is no uploaded file\n// associated with the given multipart form key.\nvar ErrMissingFile = errors.New(\"there is no uploaded file associated with the given key\")\n\n// SaveMultipartFile saves multipart file fh under the given filename path.\nfunc SaveMultipartFile(fh *multipart.FileHeader, path string) (err error) {\n\tvar (\n\t\tf  multipart.File\n\t\tff *os.File\n\t)\n\tf, err = fh.Open()\n\tif err != nil {\n\t\treturn\n\t}\n\n\tvar ok bool\n\tif ff, ok = f.(*os.File); ok {\n\t\t// Windows can't rename files that are opened.\n\t\tif err = f.Close(); err != nil {\n\t\t\treturn\n\t\t}\n\n\t\t// If renaming fails we try the normal copying method.\n\t\t// Renaming could fail if the files are on different devices.\n\t\tif os.Rename(ff.Name(), path) == nil {\n\t\t\treturn nil\n\t\t}\n\n\t\t// Reopen f for the code below.\n\t\tif f, err = fh.Open(); err != nil {\n\t\t\treturn\n\t\t}\n\t}\n\n\tdefer func() {\n\t\te := f.Close()\n\t\tif err == nil {\n\t\t\terr = e\n\t\t}\n\t}()\n\n\tif ff, err = os.Create(path); err != nil {\n\t\treturn\n\t}\n\tdefer func() {\n\t\te := ff.Close()\n\t\tif err == nil {\n\t\t\terr = e\n\t\t}\n\t}()\n\t_, err = copyZeroAlloc(ff, f)\n\treturn\n}\n\n// FormValue returns form value associated with the given key.\n//\n// The value is searched in the following places:\n//\n//   * Query string.\n//   * POST or PUT body.\n//\n// There are more fine-grained methods for obtaining form values:\n//\n//   * QueryArgs for obtaining values from query string.\n//   * PostArgs for obtaining values from POST or PUT body.\n//   * MultipartForm for obtaining values from multipart form.\n//   * FormFile for obtaining uploaded files.\n//\n// The returned value is valid until returning from RequestHandler.\nfunc (ctx *RequestCtx) FormValue(key string) []byte {\n\tv := ctx.QueryArgs().Peek(key)\n\tif len(v) > 0 {\n\t\treturn v\n\t}\n\tv = ctx.PostArgs().Peek(key)\n\tif len(v) > 0 {\n\t\treturn v\n\t}\n\tmf, err := ctx.MultipartForm()\n\tif err == nil && mf.Value != nil {\n\t\tvv := mf.Value[key]\n\t\tif len(vv) > 0 {\n\t\t\treturn []byte(vv[0])\n\t\t}\n\t}\n\treturn nil\n}\n\n// IsGet returns true if request method is GET.\nfunc (ctx *RequestCtx) IsGet() bool {\n\treturn ctx.Request.Header.IsGet()\n}\n\n// IsPost returns true if request method is POST.\nfunc (ctx *RequestCtx) IsPost() bool {\n\treturn ctx.Request.Header.IsPost()\n}\n\n// IsPut returns true if request method is PUT.\nfunc (ctx *RequestCtx) IsPut() bool {\n\treturn ctx.Request.Header.IsPut()\n}\n\n// IsDelete returns true if request method is DELETE.\nfunc (ctx *RequestCtx) IsDelete() bool {\n\treturn ctx.Request.Header.IsDelete()\n}\n\n// IsConnect returns true if request method is CONNECT.\nfunc (ctx *RequestCtx) IsConnect() bool {\n\treturn ctx.Request.Header.IsConnect()\n}\n\n// IsOptions returns true if request method is OPTIONS.\nfunc (ctx *RequestCtx) IsOptions() bool {\n\treturn ctx.Request.Header.IsOptions()\n}\n\n// IsTrace returns true if request method is TRACE.\nfunc (ctx *RequestCtx) IsTrace() bool {\n\treturn ctx.Request.Header.IsTrace()\n}\n\n// IsPatch returns true if request method is PATCH.\nfunc (ctx *RequestCtx) IsPatch() bool {\n\treturn ctx.Request.Header.IsPatch()\n}\n\n// Method return request method.\n//\n// Returned value is valid until returning from RequestHandler.\nfunc (ctx *RequestCtx) Method() []byte {\n\treturn ctx.Request.Header.Method()\n}\n\n// IsHead returns true if request method is HEAD.\nfunc (ctx *RequestCtx) IsHead() bool {\n\treturn ctx.Request.Header.IsHead()\n}\n\n// RemoteAddr returns client address for the given request.\n//\n// Always returns non-nil result.\nfunc (ctx *RequestCtx) RemoteAddr() net.Addr {\n\tif ctx.c == nil {\n\t\treturn zeroTCPAddr\n\t}\n\taddr := ctx.c.RemoteAddr()\n\tif addr == nil {\n\t\treturn zeroTCPAddr\n\t}\n\treturn addr\n}\n\n// LocalAddr returns server address for the given request.\n//\n// Always returns non-nil result.\nfunc (ctx *RequestCtx) LocalAddr() net.Addr {\n\tif ctx.c == nil {\n\t\treturn zeroTCPAddr\n\t}\n\taddr := ctx.c.LocalAddr()\n\tif addr == nil {\n\t\treturn zeroTCPAddr\n\t}\n\treturn addr\n}\n\n// RemoteIP returns the client ip the request came from.\n//\n// Always returns non-nil result.\nfunc (ctx *RequestCtx) RemoteIP() net.IP {\n\treturn addrToIP(ctx.RemoteAddr())\n}\n\n// LocalIP returns the server ip the request came to.\n//\n// Always returns non-nil result.\nfunc (ctx *RequestCtx) LocalIP() net.IP {\n\treturn addrToIP(ctx.LocalAddr())\n}\n\nfunc addrToIP(addr net.Addr) net.IP {\n\tx, ok := addr.(*net.TCPAddr)\n\tif !ok {\n\t\treturn net.IPv4zero\n\t}\n\treturn x.IP\n}\n\n// Error sets response status code to the given value and sets response body\n// to the given message.\n//\n// Warning: this will reset the response headers and body already set!\nfunc (ctx *RequestCtx) Error(msg string, statusCode int) {\n\tctx.Response.Reset()\n\tctx.SetStatusCode(statusCode)\n\tctx.SetContentTypeBytes(defaultContentType)\n\tctx.SetBodyString(msg)\n}\n\n// Success sets response Content-Type and body to the given values.\nfunc (ctx *RequestCtx) Success(contentType string, body []byte) {\n\tctx.SetContentType(contentType)\n\tctx.SetBody(body)\n}\n\n// SuccessString sets response Content-Type and body to the given values.\nfunc (ctx *RequestCtx) SuccessString(contentType, body string) {\n\tctx.SetContentType(contentType)\n\tctx.SetBodyString(body)\n}\n\n// Redirect sets 'Location: uri' response header and sets the given statusCode.\n//\n// statusCode must have one of the following values:\n//\n//    * StatusMovedPermanently (301)\n//    * StatusFound (302)\n//    * StatusSeeOther (303)\n//    * StatusTemporaryRedirect (307)\n//    * StatusPermanentRedirect (308)\n//\n// All other statusCode values are replaced by StatusFound (302).\n//\n// The redirect uri may be either absolute or relative to the current\n// request uri. Fasthttp will always send an absolute uri back to the client.\n// To send a relative uri you can use the following code:\n//\n//   strLocation = []byte(\"Location\") // Put this with your top level var () declarations.\n//   ctx.Response.Header.SetCanonical(strLocation, \"/relative?uri\")\n//   ctx.Response.SetStatusCode(fasthttp.StatusMovedPermanently)\n//\nfunc (ctx *RequestCtx) Redirect(uri string, statusCode int) {\n\tu := AcquireURI()\n\tctx.URI().CopyTo(u)\n\tu.Update(uri)\n\tctx.redirect(u.FullURI(), statusCode)\n\tReleaseURI(u)\n}\n\n// RedirectBytes sets 'Location: uri' response header and sets\n// the given statusCode.\n//\n// statusCode must have one of the following values:\n//\n//    * StatusMovedPermanently (301)\n//    * StatusFound (302)\n//    * StatusSeeOther (303)\n//    * StatusTemporaryRedirect (307)\n//    * StatusPermanentRedirect (308)\n//\n// All other statusCode values are replaced by StatusFound (302).\n//\n// The redirect uri may be either absolute or relative to the current\n// request uri. Fasthttp will always send an absolute uri back to the client.\n// To send a relative uri you can use the following code:\n//\n//   strLocation = []byte(\"Location\") // Put this with your top level var () declarations.\n//   ctx.Response.Header.SetCanonical(strLocation, \"/relative?uri\")\n//   ctx.Response.SetStatusCode(fasthttp.StatusMovedPermanently)\n//\nfunc (ctx *RequestCtx) RedirectBytes(uri []byte, statusCode int) {\n\ts := b2s(uri)\n\tctx.Redirect(s, statusCode)\n}\n\nfunc (ctx *RequestCtx) redirect(uri []byte, statusCode int) {\n\tctx.Response.Header.SetCanonical(strLocation, uri)\n\tstatusCode = getRedirectStatusCode(statusCode)\n\tctx.Response.SetStatusCode(statusCode)\n}\n\nfunc getRedirectStatusCode(statusCode int) int {\n\tif statusCode == StatusMovedPermanently || statusCode == StatusFound ||\n\t\tstatusCode == StatusSeeOther || statusCode == StatusTemporaryRedirect ||\n\t\tstatusCode == StatusPermanentRedirect {\n\t\treturn statusCode\n\t}\n\treturn StatusFound\n}\n\n// SetBody sets response body to the given value.\n//\n// It is safe re-using body argument after the function returns.\nfunc (ctx *RequestCtx) SetBody(body []byte) {\n\tctx.Response.SetBody(body)\n}\n\n// SetBodyString sets response body to the given value.\nfunc (ctx *RequestCtx) SetBodyString(body string) {\n\tctx.Response.SetBodyString(body)\n}\n\n// ResetBody resets response body contents.\nfunc (ctx *RequestCtx) ResetBody() {\n\tctx.Response.ResetBody()\n}\n\n// SendFile sends local file contents from the given path as response body.\n//\n// This is a shortcut to ServeFile(ctx, path).\n//\n// SendFile logs all the errors via ctx.Logger.\n//\n// See also ServeFile, FSHandler and FS.\nfunc (ctx *RequestCtx) SendFile(path string) {\n\tServeFile(ctx, path)\n}\n\n// SendFileBytes sends local file contents from the given path as response body.\n//\n// This is a shortcut to ServeFileBytes(ctx, path).\n//\n// SendFileBytes logs all the errors via ctx.Logger.\n//\n// See also ServeFileBytes, FSHandler and FS.\nfunc (ctx *RequestCtx) SendFileBytes(path []byte) {\n\tServeFileBytes(ctx, path)\n}\n\n// IfModifiedSince returns true if lastModified exceeds 'If-Modified-Since'\n// value from the request header.\n//\n// The function returns true also 'If-Modified-Since' request header is missing.\nfunc (ctx *RequestCtx) IfModifiedSince(lastModified time.Time) bool {\n\tifModStr := ctx.Request.Header.peek(strIfModifiedSince)\n\tif len(ifModStr) == 0 {\n\t\treturn true\n\t}\n\tifMod, err := ParseHTTPDate(ifModStr)\n\tif err != nil {\n\t\treturn true\n\t}\n\tlastModified = lastModified.Truncate(time.Second)\n\treturn ifMod.Before(lastModified)\n}\n\n// NotModified resets response and sets '304 Not Modified' response status code.\nfunc (ctx *RequestCtx) NotModified() {\n\tctx.Response.Reset()\n\tctx.SetStatusCode(StatusNotModified)\n}\n\n// NotFound resets response and sets '404 Not Found' response status code.\nfunc (ctx *RequestCtx) NotFound() {\n\tctx.Response.Reset()\n\tctx.SetStatusCode(StatusNotFound)\n\tctx.SetBodyString(\"404 Page not found\")\n}\n\n// Write writes p into response body.\nfunc (ctx *RequestCtx) Write(p []byte) (int, error) {\n\tctx.Response.AppendBody(p)\n\treturn len(p), nil\n}\n\n// WriteString appends s to response body.\nfunc (ctx *RequestCtx) WriteString(s string) (int, error) {\n\tctx.Response.AppendBodyString(s)\n\treturn len(s), nil\n}\n\n// PostBody returns POST request body.\n//\n// The returned value is valid until RequestHandler return.\nfunc (ctx *RequestCtx) PostBody() []byte {\n\treturn ctx.Request.Body()\n}\n\n// SetBodyStream sets response body stream and, optionally body size.\n//\n// bodyStream.Close() is called after finishing reading all body data\n// if it implements io.Closer.\n//\n// If bodySize is >= 0, then bodySize bytes must be provided by bodyStream\n// before returning io.EOF.\n//\n// If bodySize < 0, then bodyStream is read until io.EOF.\n//\n// See also SetBodyStreamWriter.\nfunc (ctx *RequestCtx) SetBodyStream(bodyStream io.Reader, bodySize int) {\n\tctx.Response.SetBodyStream(bodyStream, bodySize)\n}\n\n// SetBodyStreamWriter registers the given stream writer for populating\n// response body.\n//\n// Access to RequestCtx and/or its' members is forbidden from sw.\n//\n// This function may be used in the following cases:\n//\n//     * if response body is too big (more than 10MB).\n//     * if response body is streamed from slow external sources.\n//     * if response body must be streamed to the client in chunks.\n//     (aka `http server push`).\nfunc (ctx *RequestCtx) SetBodyStreamWriter(sw StreamWriter) {\n\tctx.Response.SetBodyStreamWriter(sw)\n}\n\n// IsBodyStream returns true if response body is set via SetBodyStream*.\nfunc (ctx *RequestCtx) IsBodyStream() bool {\n\treturn ctx.Response.IsBodyStream()\n}\n\n// Logger returns logger, which may be used for logging arbitrary\n// request-specific messages inside RequestHandler.\n//\n// Each message logged via returned logger contains request-specific information\n// such as request id, request duration, local address, remote address,\n// request method and request url.\n//\n// It is safe re-using returned logger for logging multiple messages\n// for the current request.\n//\n// The returned logger is valid until returning from RequestHandler.\nfunc (ctx *RequestCtx) Logger() Logger {\n\tif ctx.logger.ctx == nil {\n\t\tctx.logger.ctx = ctx\n\t}\n\tif ctx.logger.logger == nil {\n\t\tctx.logger.logger = ctx.s.logger()\n\t}\n\treturn &ctx.logger\n}\n\n// TimeoutError sets response status code to StatusRequestTimeout and sets\n// body to the given msg.\n//\n// All response modifications after TimeoutError call are ignored.\n//\n// TimeoutError MUST be called before returning from RequestHandler if there are\n// references to ctx and/or its members in other goroutines remain.\n//\n// Usage of this function is discouraged. Prefer eliminating ctx references\n// from pending goroutines instead of using this function.\nfunc (ctx *RequestCtx) TimeoutError(msg string) {\n\tctx.TimeoutErrorWithCode(msg, StatusRequestTimeout)\n}\n\n// TimeoutErrorWithCode sets response body to msg and response status\n// code to statusCode.\n//\n// All response modifications after TimeoutErrorWithCode call are ignored.\n//\n// TimeoutErrorWithCode MUST be called before returning from RequestHandler\n// if there are references to ctx and/or its members in other goroutines remain.\n//\n// Usage of this function is discouraged. Prefer eliminating ctx references\n// from pending goroutines instead of using this function.\nfunc (ctx *RequestCtx) TimeoutErrorWithCode(msg string, statusCode int) {\n\tvar resp Response\n\tresp.SetStatusCode(statusCode)\n\tresp.SetBodyString(msg)\n\tctx.TimeoutErrorWithResponse(&resp)\n}\n\n// TimeoutErrorWithResponse marks the ctx as timed out and sends the given\n// response to the client.\n//\n// All ctx modifications after TimeoutErrorWithResponse call are ignored.\n//\n// TimeoutErrorWithResponse MUST be called before returning from RequestHandler\n// if there are references to ctx and/or its members in other goroutines remain.\n//\n// Usage of this function is discouraged. Prefer eliminating ctx references\n// from pending goroutines instead of using this function.\nfunc (ctx *RequestCtx) TimeoutErrorWithResponse(resp *Response) {\n\trespCopy := &Response{}\n\tresp.CopyTo(respCopy)\n\tctx.timeoutResponse = respCopy\n}\n\n// NextProto adds nph to be processed when key is negotiated when TLS\n// connection is established.\n//\n// This function can only be called before the server is started.\nfunc (s *Server) NextProto(key string, nph ServeHandler) {\n\tif s.nextProtos == nil {\n\t\ts.nextProtos = make(map[string]ServeHandler)\n\t}\n\ts.configTLS()\n\ts.tlsConfig.NextProtos = append(s.tlsConfig.NextProtos, key)\n\ts.nextProtos[key] = nph\n}\n\nfunc (s *Server) getNextProto(c net.Conn) (proto string, err error) {\n\tif tlsConn, ok := c.(connTLSer); ok {\n\t\tif s.ReadTimeout > 0 {\n\t\t\tif err := c.SetReadDeadline(time.Now().Add(s.ReadTimeout)); err != nil {\n\t\t\t\tpanic(fmt.Sprintf(\"BUG: error in SetReadDeadline(%s): %s\", s.ReadTimeout, err))\n\t\t\t}\n\t\t}\n\n\t\tif s.WriteTimeout > 0 {\n\t\t\tif err := c.SetWriteDeadline(time.Now().Add(s.WriteTimeout)); err != nil {\n\t\t\t\tpanic(fmt.Sprintf(\"BUG: error in SetWriteDeadline(%s): %s\", s.WriteTimeout, err))\n\t\t\t}\n\t\t}\n\n\t\terr = tlsConn.Handshake()\n\t\tif err == nil {\n\t\t\tproto = tlsConn.ConnectionState().NegotiatedProtocol\n\t\t}\n\t}\n\treturn\n}\n\n// tcpKeepAliveListener sets TCP keep-alive timeouts on accepted\n// connections. It's used by ListenAndServe, ListenAndServeTLS and\n// ListenAndServeTLSEmbed so dead TCP connections (e.g. closing laptop mid-download)\n// eventually go away.\ntype tcpKeepaliveListener struct {\n\t*net.TCPListener\n\tkeepalivePeriod time.Duration\n}\n\nfunc (ln tcpKeepaliveListener) Accept() (net.Conn, error) {\n\ttc, err := ln.AcceptTCP()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif err := tc.SetKeepAlive(true); err != nil {\n\t\ttc.Close() //nolint:errcheck\n\t\treturn nil, err\n\t}\n\tif ln.keepalivePeriod > 0 {\n\t\tif err := tc.SetKeepAlivePeriod(ln.keepalivePeriod); err != nil {\n\t\t\ttc.Close() //nolint:errcheck\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn tc, nil\n}\n\n// ListenAndServe serves HTTP requests from the given TCP4 addr.\n//\n// Pass custom listener to Serve if you need listening on non-TCP4 media\n// such as IPv6.\n//\n// Accepted connections are configured to enable TCP keep-alives.\nfunc (s *Server) ListenAndServe(addr string) error {\n\tln, err := net.Listen(\"tcp4\", addr)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif s.TCPKeepalive {\n\t\tif tcpln, ok := ln.(*net.TCPListener); ok {\n\t\t\treturn s.Serve(tcpKeepaliveListener{\n\t\t\t\tTCPListener:     tcpln,\n\t\t\t\tkeepalivePeriod: s.TCPKeepalivePeriod,\n\t\t\t})\n\t\t}\n\t}\n\treturn s.Serve(ln)\n}\n\n// ListenAndServeUNIX serves HTTP requests from the given UNIX addr.\n//\n// The function deletes existing file at addr before starting serving.\n//\n// The server sets the given file mode for the UNIX addr.\nfunc (s *Server) ListenAndServeUNIX(addr string, mode os.FileMode) error {\n\tif err := os.Remove(addr); err != nil && !os.IsNotExist(err) {\n\t\treturn fmt.Errorf(\"unexpected error when trying to remove unix socket file %q: %s\", addr, err)\n\t}\n\tln, err := net.Listen(\"unix\", addr)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err = os.Chmod(addr, mode); err != nil {\n\t\treturn fmt.Errorf(\"cannot chmod %#o for %q: %s\", mode, addr, err)\n\t}\n\treturn s.Serve(ln)\n}\n\n// ListenAndServeTLS serves HTTPS requests from the given TCP4 addr.\n//\n// certFile and keyFile are paths to TLS certificate and key files.\n//\n// Pass custom listener to Serve if you need listening on non-TCP4 media\n// such as IPv6.\n//\n// If the certFile or keyFile has not been provided to the server structure,\n// the function will use the previously added TLS configuration.\n//\n// Accepted connections are configured to enable TCP keep-alives.\nfunc (s *Server) ListenAndServeTLS(addr, certFile, keyFile string) error {\n\tln, err := net.Listen(\"tcp4\", addr)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif s.TCPKeepalive {\n\t\tif tcpln, ok := ln.(*net.TCPListener); ok {\n\t\t\treturn s.ServeTLS(tcpKeepaliveListener{\n\t\t\t\tTCPListener:     tcpln,\n\t\t\t\tkeepalivePeriod: s.TCPKeepalivePeriod,\n\t\t\t}, certFile, keyFile)\n\t\t}\n\t}\n\treturn s.ServeTLS(ln, certFile, keyFile)\n}\n\n// ListenAndServeTLSEmbed serves HTTPS requests from the given TCP4 addr.\n//\n// certData and keyData must contain valid TLS certificate and key data.\n//\n// Pass custom listener to Serve if you need listening on arbitrary media\n// such as IPv6.\n//\n// If the certFile or keyFile has not been provided the server structure,\n// the function will use previously added TLS configuration.\n//\n// Accepted connections are configured to enable TCP keep-alives.\nfunc (s *Server) ListenAndServeTLSEmbed(addr string, certData, keyData []byte) error {\n\tln, err := net.Listen(\"tcp4\", addr)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif s.TCPKeepalive {\n\t\tif tcpln, ok := ln.(*net.TCPListener); ok {\n\t\t\treturn s.ServeTLSEmbed(tcpKeepaliveListener{\n\t\t\t\tTCPListener:     tcpln,\n\t\t\t\tkeepalivePeriod: s.TCPKeepalivePeriod,\n\t\t\t}, certData, keyData)\n\t\t}\n\t}\n\treturn s.ServeTLSEmbed(ln, certData, keyData)\n}\n\n// ServeTLS serves HTTPS requests from the given listener.\n//\n// certFile and keyFile are paths to TLS certificate and key files.\n//\n// If the certFile or keyFile has not been provided the server structure,\n// the function will use previously added TLS configuration.\nfunc (s *Server) ServeTLS(ln net.Listener, certFile, keyFile string) error {\n\terr := s.AppendCert(certFile, keyFile)\n\tif err != nil && err != errNoCertOrKeyProvided {\n\t\treturn err\n\t}\n\tif s.tlsConfig == nil {\n\t\treturn errNoCertOrKeyProvided\n\t}\n\n\t// BuildNameToCertificate has been deprecated since 1.14.\n\t// But since we also support older versions we'll keep this here.\n\ts.tlsConfig.BuildNameToCertificate() //nolint:staticcheck\n\n\treturn s.Serve(\n\t\ttls.NewListener(ln, s.tlsConfig),\n\t)\n}\n\n// ServeTLSEmbed serves HTTPS requests from the given listener.\n//\n// certData and keyData must contain valid TLS certificate and key data.\n//\n// If the certFile or keyFile has not been provided the server structure,\n// the function will use previously added TLS configuration.\nfunc (s *Server) ServeTLSEmbed(ln net.Listener, certData, keyData []byte) error {\n\terr := s.AppendCertEmbed(certData, keyData)\n\tif err != nil && err != errNoCertOrKeyProvided {\n\t\treturn err\n\t}\n\tif s.tlsConfig == nil {\n\t\treturn errNoCertOrKeyProvided\n\t}\n\n\t// BuildNameToCertificate has been deprecated since 1.14.\n\t// But since we also support older versions we'll keep this here.\n\ts.tlsConfig.BuildNameToCertificate() //nolint:staticcheck\n\n\treturn s.Serve(\n\t\ttls.NewListener(ln, s.tlsConfig),\n\t)\n}\n\n// AppendCert appends certificate and keyfile to TLS Configuration.\n//\n// This function allows programmer to handle multiple domains\n// in one server structure. See examples/multidomain\nfunc (s *Server) AppendCert(certFile, keyFile string) error {\n\tif len(certFile) == 0 && len(keyFile) == 0 {\n\t\treturn errNoCertOrKeyProvided\n\t}\n\n\tcert, err := tls.LoadX509KeyPair(certFile, keyFile)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"cannot load TLS key pair from certFile=%q and keyFile=%q: %s\", certFile, keyFile, err)\n\t}\n\n\ts.configTLS()\n\n\ts.tlsConfig.Certificates = append(s.tlsConfig.Certificates, cert)\n\treturn nil\n}\n\n// AppendCertEmbed does the same as AppendCert but using in-memory data.\nfunc (s *Server) AppendCertEmbed(certData, keyData []byte) error {\n\tif len(certData) == 0 && len(keyData) == 0 {\n\t\treturn errNoCertOrKeyProvided\n\t}\n\n\tcert, err := tls.X509KeyPair(certData, keyData)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"cannot load TLS key pair from the provided certData(%d) and keyData(%d): %s\",\n\t\t\tlen(certData), len(keyData), err)\n\t}\n\n\ts.configTLS()\n\n\ts.tlsConfig.Certificates = append(s.tlsConfig.Certificates, cert)\n\treturn nil\n}\n\nfunc (s *Server) configTLS() {\n\tif s.tlsConfig == nil {\n\t\ts.tlsConfig = &tls.Config{\n\t\t\tPreferServerCipherSuites: true,\n\t\t}\n\t}\n}\n\n// DefaultConcurrency is the maximum number of concurrent connections\n// the Server may serve by default (i.e. if Server.Concurrency isn't set).\nconst DefaultConcurrency = 256 * 1024\n\n// Serve serves incoming connections from the given listener.\n//\n// Serve blocks until the given listener returns permanent error.\nfunc (s *Server) Serve(ln net.Listener) error {\n\tvar lastOverflowErrorTime time.Time\n\tvar lastPerIPErrorTime time.Time\n\tvar c net.Conn\n\tvar err error\n\n\tmaxWorkersCount := s.getConcurrency()\n\n\ts.mu.Lock()\n\t{\n\t\ts.ln = append(s.ln, ln)\n\t\tif s.done == nil {\n\t\t\ts.done = make(chan struct{})\n\t\t}\n\n\t\tif s.concurrencyCh == nil {\n\t\t\ts.concurrencyCh = make(chan struct{}, maxWorkersCount)\n\t\t}\n\t}\n\ts.mu.Unlock()\n\n\twp := &workerPool{\n\t\tWorkerFunc:      s.serveConn,\n\t\tMaxWorkersCount: maxWorkersCount,\n\t\tLogAllErrors:    s.LogAllErrors,\n\t\tLogger:          s.logger(),\n\t\tconnState:       s.setState,\n\t}\n\twp.Start()\n\n\t// Count our waiting to accept a connection as an open connection.\n\t// This way we can't get into any weird state where just after accepting\n\t// a connection Shutdown is called which reads open as 0 because it isn't\n\t// incremented yet.\n\tatomic.AddInt32(&s.open, 1)\n\tdefer atomic.AddInt32(&s.open, -1)\n\n\tfor {\n\t\tif c, err = acceptConn(s, ln, &lastPerIPErrorTime); err != nil {\n\t\t\twp.Stop()\n\t\t\tif err == io.EOF {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\treturn err\n\t\t}\n\t\ts.setState(c, StateNew)\n\t\tatomic.AddInt32(&s.open, 1)\n\t\tif !wp.Serve(c) {\n\t\t\tatomic.AddInt32(&s.open, -1)\n\t\t\ts.writeFastError(c, StatusServiceUnavailable,\n\t\t\t\t\"The connection cannot be served because Server.Concurrency limit exceeded\")\n\t\t\tc.Close()\n\t\t\ts.setState(c, StateClosed)\n\t\t\tif time.Since(lastOverflowErrorTime) > time.Minute {\n\t\t\t\ts.logger().Printf(\"The incoming connection cannot be served, because %d concurrent connections are served. \"+\n\t\t\t\t\t\"Try increasing Server.Concurrency\", maxWorkersCount)\n\t\t\t\tlastOverflowErrorTime = time.Now()\n\t\t\t}\n\n\t\t\t// The current server reached concurrency limit,\n\t\t\t// so give other concurrently running servers a chance\n\t\t\t// accepting incoming connections on the same address.\n\t\t\t//\n\t\t\t// There is a hope other servers didn't reach their\n\t\t\t// concurrency limits yet :)\n\t\t\t//\n\t\t\t// See also: https://github.com/valyala/fasthttp/pull/485#discussion_r239994990\n\t\t\tif s.SleepWhenConcurrencyLimitsExceeded > 0 {\n\t\t\t\ttime.Sleep(s.SleepWhenConcurrencyLimitsExceeded)\n\t\t\t}\n\t\t}\n\t\tc = nil\n\t}\n}\n\n// Shutdown gracefully shuts down the server without interrupting any active connections.\n// Shutdown works by first closing all open listeners and then waiting indefinitely for all connections to return to idle and then shut down.\n//\n// When Shutdown is called, Serve, ListenAndServe, and ListenAndServeTLS immediately return nil.\n// Make sure the program doesn't exit and waits instead for Shutdown to return.\n//\n// Shutdown does not close keepalive connections so its recommended to set ReadTimeout to something else than 0.\nfunc (s *Server) Shutdown() error {\n\ts.mu.Lock()\n\tdefer s.mu.Unlock()\n\n\tatomic.StoreInt32(&s.stop, 1)\n\tdefer atomic.StoreInt32(&s.stop, 0)\n\n\tif s.ln == nil {\n\t\treturn nil\n\t}\n\n\tfor _, ln := range s.ln {\n\t\tif err := ln.Close(); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\tif s.done != nil {\n\t\tclose(s.done)\n\t}\n\n\t// Closing the listener will make Serve() call Stop on the worker pool.\n\t// Setting .stop to 1 will make serveConn() break out of its loop.\n\t// Now we just have to wait until all workers are done.\n\tfor {\n\t\tif open := atomic.LoadInt32(&s.open); open == 0 {\n\t\t\tbreak\n\t\t}\n\t\t// This is not an optimal solution but using a sync.WaitGroup\n\t\t// here causes data races as it's hard to prevent Add() to be called\n\t\t// while Wait() is waiting.\n\t\ttime.Sleep(time.Millisecond * 100)\n\t}\n\n\ts.done = nil\n\ts.ln = nil\n\treturn nil\n}\n\nfunc acceptConn(s *Server, ln net.Listener, lastPerIPErrorTime *time.Time) (net.Conn, error) {\n\tfor {\n\t\tc, err := ln.Accept()\n\t\tif err != nil {\n\t\t\tif c != nil {\n\t\t\t\tpanic(\"BUG: net.Listener returned non-nil conn and non-nil error\")\n\t\t\t}\n\t\t\tif netErr, ok := err.(net.Error); ok && netErr.Temporary() {\n\t\t\t\ts.logger().Printf(\"Temporary error when accepting new connections: %s\", netErr)\n\t\t\t\ttime.Sleep(time.Second)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif err != io.EOF && !strings.Contains(err.Error(), \"use of closed network connection\") {\n\t\t\t\ts.logger().Printf(\"Permanent error when accepting new connections: %s\", err)\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\treturn nil, io.EOF\n\t\t}\n\t\tif c == nil {\n\t\t\tpanic(\"BUG: net.Listener returned (nil, nil)\")\n\t\t}\n\t\tif s.MaxConnsPerIP > 0 {\n\t\t\tpic := wrapPerIPConn(s, c)\n\t\t\tif pic == nil {\n\t\t\t\tif time.Since(*lastPerIPErrorTime) > time.Minute {\n\t\t\t\t\ts.logger().Printf(\"The number of connections from %s exceeds MaxConnsPerIP=%d\",\n\t\t\t\t\t\tgetConnIP4(c), s.MaxConnsPerIP)\n\t\t\t\t\t*lastPerIPErrorTime = time.Now()\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tc = pic\n\t\t}\n\t\treturn c, nil\n\t}\n}\n\nfunc wrapPerIPConn(s *Server, c net.Conn) net.Conn {\n\tip := getUint32IP(c)\n\tif ip == 0 {\n\t\treturn c\n\t}\n\tn := s.perIPConnCounter.Register(ip)\n\tif n > s.MaxConnsPerIP {\n\t\ts.perIPConnCounter.Unregister(ip)\n\t\ts.writeFastError(c, StatusTooManyRequests, \"The number of connections from your ip exceeds MaxConnsPerIP\")\n\t\tc.Close()\n\t\treturn nil\n\t}\n\treturn acquirePerIPConn(c, ip, &s.perIPConnCounter)\n}\n\nvar defaultLogger = Logger(log.New(os.Stderr, \"\", log.LstdFlags))\n\nfunc (s *Server) logger() Logger {\n\tif s.Logger != nil {\n\t\treturn s.Logger\n\t}\n\treturn defaultLogger\n}\n\nvar (\n\t// ErrPerIPConnLimit may be returned from ServeConn if the number of connections\n\t// per ip exceeds Server.MaxConnsPerIP.\n\tErrPerIPConnLimit = errors.New(\"too many connections per ip\")\n\n\t// ErrConcurrencyLimit may be returned from ServeConn if the number\n\t// of concurrently served connections exceeds Server.Concurrency.\n\tErrConcurrencyLimit = errors.New(\"cannot serve the connection because Server.Concurrency concurrent connections are served\")\n)\n\n// ServeConn serves HTTP requests from the given connection.\n//\n// ServeConn returns nil if all requests from the c are successfully served.\n// It returns non-nil error otherwise.\n//\n// Connection c must immediately propagate all the data passed to Write()\n// to the client. Otherwise requests' processing may hang.\n//\n// ServeConn closes c before returning.\nfunc (s *Server) ServeConn(c net.Conn) error {\n\tif s.MaxConnsPerIP > 0 {\n\t\tpic := wrapPerIPConn(s, c)\n\t\tif pic == nil {\n\t\t\treturn ErrPerIPConnLimit\n\t\t}\n\t\tc = pic\n\t}\n\n\tn := atomic.AddUint32(&s.concurrency, 1)\n\tif n > uint32(s.getConcurrency()) {\n\t\tatomic.AddUint32(&s.concurrency, ^uint32(0))\n\t\ts.writeFastError(c, StatusServiceUnavailable, \"The connection cannot be served because Server.Concurrency limit exceeded\")\n\t\tc.Close()\n\t\treturn ErrConcurrencyLimit\n\t}\n\n\tatomic.AddInt32(&s.open, 1)\n\n\terr := s.serveConn(c)\n\n\tatomic.AddUint32(&s.concurrency, ^uint32(0))\n\n\tif err != errHijacked {\n\t\terr1 := c.Close()\n\t\ts.setState(c, StateClosed)\n\t\tif err == nil {\n\t\t\terr = err1\n\t\t}\n\t} else {\n\t\terr = nil\n\t\ts.setState(c, StateHijacked)\n\t}\n\treturn err\n}\n\nvar errHijacked = errors.New(\"connection has been hijacked\")\n\n// GetCurrentConcurrency returns a number of currently served\n// connections.\n//\n// This function is intended be used by monitoring systems\nfunc (s *Server) GetCurrentConcurrency() uint32 {\n\treturn atomic.LoadUint32(&s.concurrency)\n}\n\n// GetOpenConnectionsCount returns a number of opened connections.\n//\n// This function is intended be used by monitoring systems\nfunc (s *Server) GetOpenConnectionsCount() int32 {\n\tif atomic.LoadInt32(&s.stop) == 0 {\n\t\t// Decrement by one to avoid reporting the extra open value that gets\n\t\t// counted while the server is listening.\n\t\treturn atomic.LoadInt32(&s.open) - 1\n\t}\n\t// This is not perfect, because s.stop could have changed to zero\n\t// before we load the value of s.open. However, in the common case\n\t// this avoids underreporting open connections by 1 during server shutdown.\n\treturn atomic.LoadInt32(&s.open)\n}\n\nfunc (s *Server) getConcurrency() int {\n\tn := s.Concurrency\n\tif n <= 0 {\n\t\tn = DefaultConcurrency\n\t}\n\treturn n\n}\n\nvar globalConnID uint64\n\nfunc nextConnID() uint64 {\n\treturn atomic.AddUint64(&globalConnID, 1)\n}\n\n// DefaultMaxRequestBodySize is the maximum request body size the server\n// reads by default.\n//\n// See Server.MaxRequestBodySize for details.\nconst DefaultMaxRequestBodySize = 4 * 1024 * 1024\n\nfunc (s *Server) idleTimeout() time.Duration {\n\tif s.IdleTimeout != 0 {\n\t\treturn s.IdleTimeout\n\t}\n\treturn s.ReadTimeout\n}\n\nfunc (s *Server) serveConnCleanup() {\n\tatomic.AddInt32(&s.open, -1)\n\tatomic.AddUint32(&s.concurrency, ^uint32(0))\n}\n\nfunc (s *Server) serveConn(c net.Conn) (err error) {\n\tdefer s.serveConnCleanup()\n\tatomic.AddUint32(&s.concurrency, 1)\n\n\tvar proto string\n\tif proto, err = s.getNextProto(c); err != nil {\n\t\treturn\n\t}\n\tif handler, ok := s.nextProtos[proto]; ok {\n\t\treturn handler(c)\n\t}\n\n\tvar serverName []byte\n\tif !s.NoDefaultServerHeader {\n\t\tserverName = s.getServerName()\n\t}\n\tconnRequestNum := uint64(0)\n\tconnID := nextConnID()\n\tconnTime := time.Now()\n\tmaxRequestBodySize := s.MaxRequestBodySize\n\tif maxRequestBodySize <= 0 {\n\t\tmaxRequestBodySize = DefaultMaxRequestBodySize\n\t}\n\twriteTimeout := s.WriteTimeout\n\n\tctx := s.acquireCtx(c)\n\tctx.connTime = connTime\n\tisTLS := ctx.IsTLS()\n\tvar (\n\t\tbr *bufio.Reader\n\t\tbw *bufio.Writer\n\n\t\ttimeoutResponse  *Response\n\t\thijackHandler    HijackHandler\n\t\thijackNoResponse bool\n\n\t\tconnectionClose bool\n\t\tisHTTP11        bool\n\n\t\treqReset               bool\n\t\tcontinueReadingRequest bool = true\n\t)\n\tfor {\n\t\tconnRequestNum++\n\n\t\t// If this is a keep-alive connection set the idle timeout.\n\t\tif connRequestNum > 1 {\n\t\t\tif d := s.idleTimeout(); d > 0 {\n\t\t\t\tif err := c.SetReadDeadline(time.Now().Add(d)); err != nil {\n\t\t\t\t\tpanic(fmt.Sprintf(\"BUG: error in SetReadDeadline(%s): %s\", d, err))\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif !s.ReduceMemoryUsage || br != nil {\n\t\t\tif br == nil {\n\t\t\t\tbr = acquireReader(ctx)\n\t\t\t}\n\n\t\t\t// If this is a keep-alive connection we want to try and read the first bytes\n\t\t\t// within the idle time.\n\t\t\tif connRequestNum > 1 {\n\t\t\t\tvar b []byte\n\t\t\t\tb, err = br.Peek(4)\n\t\t\t\tif len(b) == 0 {\n\t\t\t\t\t// If reading from a keep-alive connection returns nothing it means\n\t\t\t\t\t// the connection was closed (either timeout or from the other side).\n\t\t\t\t\tif err != io.EOF {\n\t\t\t\t\t\terr = ErrNothingRead{err}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\t// If this is a keep-alive connection acquireByteReader will try to peek\n\t\t\t// a couple of bytes already so the idle timeout will already be used.\n\t\t\tbr, err = acquireByteReader(&ctx)\n\t\t}\n\n\t\tctx.Request.isTLS = isTLS\n\t\tctx.Response.Header.noDefaultContentType = s.NoDefaultContentType\n\t\tctx.Response.Header.noDefaultDate = s.NoDefaultDate\n\n\t\tif err == nil {\n\t\t\tif s.ReadTimeout > 0 {\n\t\t\t\tif err := c.SetReadDeadline(time.Now().Add(s.ReadTimeout)); err != nil {\n\t\t\t\t\tpanic(fmt.Sprintf(\"BUG: error in SetReadDeadline(%s): %s\", s.ReadTimeout, err))\n\t\t\t\t}\n\t\t\t}\n\t\t\tif s.DisableHeaderNamesNormalizing {\n\t\t\t\tctx.Request.Header.DisableNormalizing()\n\t\t\t\tctx.Response.Header.DisableNormalizing()\n\t\t\t}\n\t\t\t// reading Headers\n\t\t\tif err = ctx.Request.Header.Read(br); err == nil {\n\t\t\t\tif onHdrRecv := s.HeaderReceived; onHdrRecv != nil {\n\t\t\t\t\treqConf := onHdrRecv(&ctx.Request.Header)\n\t\t\t\t\tif reqConf.ReadTimeout > 0 {\n\t\t\t\t\t\tdeadline := time.Now().Add(reqConf.ReadTimeout)\n\t\t\t\t\t\tif err := c.SetReadDeadline(deadline); err != nil {\n\t\t\t\t\t\t\tpanic(fmt.Sprintf(\"BUG: error in SetReadDeadline(%s): %s\", deadline, err))\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif reqConf.MaxRequestBodySize > 0 {\n\t\t\t\t\t\tmaxRequestBodySize = reqConf.MaxRequestBodySize\n\t\t\t\t\t}\n\t\t\t\t\tif reqConf.WriteTimeout > 0 {\n\t\t\t\t\t\twriteTimeout = reqConf.WriteTimeout\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t//read body\n\t\t\t\terr = ctx.Request.readLimitBody(br, maxRequestBodySize, s.GetOnly, !s.DisablePreParseMultipartForm)\n\t\t\t}\n\n\t\t\tif err == nil {\n\t\t\t\t// If we read any bytes off the wire, we're active.\n\t\t\t\ts.setState(c, StateActive)\n\t\t\t}\n\n\t\t\tif (s.ReduceMemoryUsage && br.Buffered() == 0) || err != nil {\n\t\t\t\treleaseReader(s, br)\n\t\t\t\tbr = nil\n\t\t\t}\n\t\t}\n\n\t\tif err != nil {\n\t\t\tif err == io.EOF {\n\t\t\t\terr = nil\n\t\t\t} else if nr, ok := err.(ErrNothingRead); ok {\n\t\t\t\tif connRequestNum > 1 {\n\t\t\t\t\t// This is not the first request and we haven't read a single byte\n\t\t\t\t\t// of a new request yet. This means it's just a keep-alive connection\n\t\t\t\t\t// closing down either because the remote closed it or because\n\t\t\t\t\t// or a read timeout on our side. Either way just close the connection\n\t\t\t\t\t// and don't return any error response.\n\t\t\t\t\terr = nil\n\t\t\t\t} else {\n\t\t\t\t\terr = nr.error\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif err != nil {\n\t\t\t\tbw = s.writeErrorResponse(bw, ctx, serverName, err)\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\n\t\t// 'Expect: 100-continue' request handling.\n\t\t// See https://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.2.3 for details.\n\t\tif ctx.Request.MayContinue() {\n\n\t\t\t// Allow the ability to deny reading the incoming request body\n\t\t\tif s.ContinueHandler != nil {\n\t\t\t\tif continueReadingRequest = s.ContinueHandler(&ctx.Request.Header); !continueReadingRequest {\n\t\t\t\t\tif br != nil {\n\t\t\t\t\t\tbr.Reset(ctx.c)\n\t\t\t\t\t}\n\n\t\t\t\t\tctx.SetStatusCode(StatusExpectationFailed)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif continueReadingRequest {\n\t\t\t\tif bw == nil {\n\t\t\t\t\tbw = acquireWriter(ctx)\n\t\t\t\t}\n\n\t\t\t\t// Send 'HTTP/1.1 100 Continue' response.\n\t\t\t\t_, err = bw.Write(strResponseContinue)\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\terr = bw.Flush()\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tif s.ReduceMemoryUsage {\n\t\t\t\t\treleaseWriter(s, bw)\n\t\t\t\t\tbw = nil\n\t\t\t\t}\n\n\t\t\t\t// Read request body.\n\t\t\t\tif br == nil {\n\t\t\t\t\tbr = acquireReader(ctx)\n\t\t\t\t}\n\n\t\t\t\terr = ctx.Request.ContinueReadBody(br, maxRequestBodySize, !s.DisablePreParseMultipartForm)\n\t\t\t\tif (s.ReduceMemoryUsage && br.Buffered() == 0) || err != nil {\n\t\t\t\t\treleaseReader(s, br)\n\t\t\t\t\tbr = nil\n\t\t\t\t}\n\t\t\t\tif err != nil {\n\t\t\t\t\tbw = s.writeErrorResponse(bw, ctx, serverName, err)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tconnectionClose = s.DisableKeepalive || ctx.Request.Header.ConnectionClose()\n\t\tisHTTP11 = ctx.Request.Header.IsHTTP11()\n\n\t\tif serverName != nil {\n\t\t\tctx.Response.Header.SetServerBytes(serverName)\n\t\t}\n\t\tctx.connID = connID\n\t\tctx.connRequestNum = connRequestNum\n\t\tctx.time = time.Now()\n\n\t\t// If a client denies a request the handler should not be called\n\t\tif continueReadingRequest {\n\t\t\ts.Handler(ctx)\n\t\t}\n\n\t\ttimeoutResponse = ctx.timeoutResponse\n\t\tif timeoutResponse != nil {\n\t\t\t// Acquire a new ctx because the old one will still be in use by the timeout out handler.\n\t\t\tctx = s.acquireCtx(c)\n\t\t\ttimeoutResponse.CopyTo(&ctx.Response)\n\t\t}\n\n\t\tif !ctx.IsGet() && ctx.IsHead() {\n\t\t\tctx.Response.SkipBody = true\n\t\t}\n\t\treqReset = true\n\t\tctx.Request.Reset()\n\n\t\thijackHandler = ctx.hijackHandler\n\t\tctx.hijackHandler = nil\n\t\thijackNoResponse = ctx.hijackNoResponse && hijackHandler != nil\n\t\tctx.hijackNoResponse = false\n\n\t\tctx.userValues.Reset()\n\n\t\tif s.MaxRequestsPerConn > 0 && connRequestNum >= uint64(s.MaxRequestsPerConn) {\n\t\t\tctx.SetConnectionClose()\n\t\t}\n\n\t\tif writeTimeout > 0 {\n\t\t\tif err := c.SetWriteDeadline(time.Now().Add(writeTimeout)); err != nil {\n\t\t\t\tpanic(fmt.Sprintf(\"BUG: error in SetWriteDeadline(%s): %s\", writeTimeout, err))\n\t\t\t}\n\t\t}\n\n\t\tconnectionClose = connectionClose || ctx.Response.ConnectionClose()\n\t\tif connectionClose {\n\t\t\tctx.Response.Header.SetCanonical(strConnection, strClose)\n\t\t} else if !isHTTP11 {\n\t\t\t// Set 'Connection: keep-alive' response header for non-HTTP/1.1 request.\n\t\t\t// There is no need in setting this header for http/1.1, since in http/1.1\n\t\t\t// connections are keep-alive by default.\n\t\t\tctx.Response.Header.SetCanonical(strConnection, strKeepAlive)\n\t\t}\n\n\t\tif serverName != nil && len(ctx.Response.Header.Server()) == 0 {\n\t\t\tctx.Response.Header.SetServerBytes(serverName)\n\t\t}\n\n\t\tif !hijackNoResponse {\n\t\t\tif bw == nil {\n\t\t\t\tbw = acquireWriter(ctx)\n\t\t\t}\n\t\t\tif err = writeResponse(ctx, bw); err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// Only flush the writer if we don't have another request in the pipeline.\n\t\t\t// This is a big of an ugly optimization for https://www.techempower.com/benchmarks/\n\t\t\t// This benchmark will send 16 pipelined requests. It is faster to pack as many responses\n\t\t\t// in a TCP packet and send it back at once than waiting for a flush every request.\n\t\t\t// In real world circumstances this behaviour could be argued as being wrong.\n\t\t\tif br == nil || br.Buffered() == 0 || connectionClose {\n\t\t\t\terr = bw.Flush()\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif connectionClose {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif s.ReduceMemoryUsage && hijackHandler == nil {\n\t\t\t\treleaseWriter(s, bw)\n\t\t\t\tbw = nil\n\t\t\t}\n\t\t}\n\n\t\tif hijackHandler != nil {\n\t\t\tvar hjr io.Reader = c\n\t\t\tif br != nil {\n\t\t\t\thjr = br\n\t\t\t\tbr = nil\n\n\t\t\t\t// br may point to ctx.fbr, so do not return ctx into pool below.\n\t\t\t\tctx = nil\n\t\t\t}\n\t\t\tif bw != nil {\n\t\t\t\terr = bw.Flush()\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\treleaseWriter(s, bw)\n\t\t\t\tbw = nil\n\t\t\t}\n\t\t\terr = c.SetReadDeadline(zeroTime)\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\terr = c.SetWriteDeadline(zeroTime)\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tgo hijackConnHandler(hjr, c, s, hijackHandler)\n\t\t\terr = errHijacked\n\t\t\tbreak\n\t\t}\n\n\t\ts.setState(c, StateIdle)\n\n\t\tif atomic.LoadInt32(&s.stop) == 1 {\n\t\t\terr = nil\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif br != nil {\n\t\treleaseReader(s, br)\n\t}\n\tif bw != nil {\n\t\treleaseWriter(s, bw)\n\t}\n\tif ctx != nil {\n\t\t// in unexpected cases the for loop will break\n\t\t// before request reset call. in such cases, call it before\n\t\t// release to fix #548\n\t\tif !reqReset {\n\t\t\tctx.Request.Reset()\n\t\t}\n\t\ts.releaseCtx(ctx)\n\t}\n\treturn\n}\n\nfunc (s *Server) setState(nc net.Conn, state ConnState) {\n\tif hook := s.ConnState; hook != nil {\n\t\thook(nc, state)\n\t}\n}\n\nfunc hijackConnHandler(r io.Reader, c net.Conn, s *Server, h HijackHandler) {\n\thjc := s.acquireHijackConn(r, c)\n\th(hjc)\n\n\tif br, ok := r.(*bufio.Reader); ok {\n\t\treleaseReader(s, br)\n\t}\n\tif !s.KeepHijackedConns {\n\t\tc.Close()\n\t\ts.releaseHijackConn(hjc)\n\t}\n}\n\nfunc (s *Server) acquireHijackConn(r io.Reader, c net.Conn) *hijackConn {\n\tv := s.hijackConnPool.Get()\n\tif v == nil {\n\t\thjc := &hijackConn{\n\t\t\tConn: c,\n\t\t\tr:    r,\n\t\t\ts:    s,\n\t\t}\n\t\treturn hjc\n\t}\n\thjc := v.(*hijackConn)\n\thjc.Conn = c\n\thjc.r = r\n\treturn hjc\n}\n\nfunc (s *Server) releaseHijackConn(hjc *hijackConn) {\n\thjc.Conn = nil\n\thjc.r = nil\n\ts.hijackConnPool.Put(hjc)\n}\n\ntype hijackConn struct {\n\tnet.Conn\n\tr io.Reader\n\ts *Server\n}\n\nfunc (c *hijackConn) UnsafeConn() net.Conn {\n\treturn c.Conn\n}\n\nfunc (c *hijackConn) Read(p []byte) (int, error) {\n\treturn c.r.Read(p)\n}\n\nfunc (c *hijackConn) Close() error {\n\tif !c.s.KeepHijackedConns {\n\t\t// when we do not keep hijacked connections,\n\t\t// it is closed in hijackConnHandler.\n\t\treturn nil\n\t}\n\n\tconn := c.Conn\n\tc.s.releaseHijackConn(c)\n\treturn conn.Close()\n}\n\n// LastTimeoutErrorResponse returns the last timeout response set\n// via TimeoutError* call.\n//\n// This function is intended for custom server implementations.\nfunc (ctx *RequestCtx) LastTimeoutErrorResponse() *Response {\n\treturn ctx.timeoutResponse\n}\n\nfunc writeResponse(ctx *RequestCtx, w *bufio.Writer) error {\n\tif ctx.timeoutResponse != nil {\n\t\tpanic(\"BUG: cannot write timed out response\")\n\t}\n\terr := ctx.Response.Write(w)\n\tctx.Response.Reset()\n\treturn err\n}\n\nconst (\n\tdefaultReadBufferSize  = 4096\n\tdefaultWriteBufferSize = 4096\n)\n\nfunc acquireByteReader(ctxP **RequestCtx) (*bufio.Reader, error) {\n\tctx := *ctxP\n\ts := ctx.s\n\tc := ctx.c\n\ts.releaseCtx(ctx)\n\n\t// Make GC happy, so it could garbage collect ctx\n\t// while we waiting for the next request.\n\tctx = nil\n\t*ctxP = nil\n\n\tvar b [1]byte\n\tn, err := c.Read(b[:])\n\n\tctx = s.acquireCtx(c)\n\t*ctxP = ctx\n\tif err != nil {\n\t\t// Treat all errors as EOF on unsuccessful read\n\t\t// of the first request byte.\n\t\treturn nil, io.EOF\n\t}\n\tif n != 1 {\n\t\tpanic(\"BUG: Reader must return at least one byte\")\n\t}\n\n\tctx.fbr.c = c\n\tctx.fbr.ch = b[0]\n\tctx.fbr.byteRead = false\n\tr := acquireReader(ctx)\n\tr.Reset(&ctx.fbr)\n\treturn r, nil\n}\n\nfunc acquireReader(ctx *RequestCtx) *bufio.Reader {\n\tv := ctx.s.readerPool.Get()\n\tif v == nil {\n\t\tn := ctx.s.ReadBufferSize\n\t\tif n <= 0 {\n\t\t\tn = defaultReadBufferSize\n\t\t}\n\t\treturn bufio.NewReaderSize(ctx.c, n)\n\t}\n\tr := v.(*bufio.Reader)\n\tr.Reset(ctx.c)\n\treturn r\n}\n\nfunc releaseReader(s *Server, r *bufio.Reader) {\n\ts.readerPool.Put(r)\n}\n\nfunc acquireWriter(ctx *RequestCtx) *bufio.Writer {\n\tv := ctx.s.writerPool.Get()\n\tif v == nil {\n\t\tn := ctx.s.WriteBufferSize\n\t\tif n <= 0 {\n\t\t\tn = defaultWriteBufferSize\n\t\t}\n\t\treturn bufio.NewWriterSize(ctx.c, n)\n\t}\n\tw := v.(*bufio.Writer)\n\tw.Reset(ctx.c)\n\treturn w\n}\n\nfunc releaseWriter(s *Server, w *bufio.Writer) {\n\ts.writerPool.Put(w)\n}\n\nfunc (s *Server) acquireCtx(c net.Conn) (ctx *RequestCtx) {\n\tv := s.ctxPool.Get()\n\tif v == nil {\n\t\tctx = &RequestCtx{\n\t\t\ts: s,\n\t\t}\n\t\tkeepBodyBuffer := !s.ReduceMemoryUsage\n\t\tctx.Request.keepBodyBuffer = keepBodyBuffer\n\t\tctx.Response.keepBodyBuffer = keepBodyBuffer\n\t} else {\n\t\tctx = v.(*RequestCtx)\n\t}\n\tctx.c = c\n\treturn\n}\n\n// Init2 prepares ctx for passing to RequestHandler.\n//\n// conn is used only for determining local and remote addresses.\n//\n// This function is intended for custom Server implementations.\n// See https://github.com/valyala/httpteleport for details.\nfunc (ctx *RequestCtx) Init2(conn net.Conn, logger Logger, reduceMemoryUsage bool) {\n\tctx.c = conn\n\tctx.logger.logger = logger\n\tctx.connID = nextConnID()\n\tctx.s = fakeServer\n\tctx.connRequestNum = 0\n\tctx.connTime = time.Now()\n\n\tkeepBodyBuffer := !reduceMemoryUsage\n\tctx.Request.keepBodyBuffer = keepBodyBuffer\n\tctx.Response.keepBodyBuffer = keepBodyBuffer\n}\n\n// Init prepares ctx for passing to RequestHandler.\n//\n// remoteAddr and logger are optional. They are used by RequestCtx.Logger().\n//\n// This function is intended for custom Server implementations.\nfunc (ctx *RequestCtx) Init(req *Request, remoteAddr net.Addr, logger Logger) {\n\tif remoteAddr == nil {\n\t\tremoteAddr = zeroTCPAddr\n\t}\n\tc := &fakeAddrer{\n\t\tladdr: zeroTCPAddr,\n\t\traddr: remoteAddr,\n\t}\n\tif logger == nil {\n\t\tlogger = defaultLogger\n\t}\n\tctx.Init2(c, logger, true)\n\treq.CopyTo(&ctx.Request)\n}\n\n// Deadline returns the time when work done on behalf of this context\n// should be canceled. Deadline returns ok==false when no deadline is\n// set. Successive calls to Deadline return the same results.\n//\n// This method always returns 0, false and is only present to make\n// RequestCtx implement the context interface.\nfunc (ctx *RequestCtx) Deadline() (deadline time.Time, ok bool) {\n\treturn\n}\n\n// Done returns a channel that's closed when work done on behalf of this\n// context should be canceled. Done may return nil if this context can\n// never be canceled. Successive calls to Done return the same value.\nfunc (ctx *RequestCtx) Done() <-chan struct{} {\n\treturn ctx.s.done\n}\n\n// Err returns a non-nil error value after Done is closed,\n// successive calls to Err return the same error.\n// If Done is not yet closed, Err returns nil.\n// If Done is closed, Err returns a non-nil error explaining why:\n// Canceled if the context was canceled (via server Shutdown)\n// or DeadlineExceeded if the context's deadline passed.\nfunc (ctx *RequestCtx) Err() error {\n\tselect {\n\tcase <-ctx.s.done:\n\t\treturn context.Canceled\n\tdefault:\n\t\treturn nil\n\t}\n}\n\n// Value returns the value associated with this context for key, or nil\n// if no value is associated with key. Successive calls to Value with\n// the same key returns the same result.\n//\n// This method is present to make RequestCtx implement the context interface.\n// This method is the same as calling ctx.UserValue(key)\nfunc (ctx *RequestCtx) Value(key interface{}) interface{} {\n\tif keyString, ok := key.(string); ok {\n\t\treturn ctx.UserValue(keyString)\n\t}\n\treturn nil\n}\n\nvar fakeServer = &Server{\n\t// Initialize concurrencyCh for TimeoutHandler\n\tconcurrencyCh: make(chan struct{}, DefaultConcurrency),\n}\n\ntype fakeAddrer struct {\n\tnet.Conn\n\tladdr net.Addr\n\traddr net.Addr\n}\n\nfunc (fa *fakeAddrer) RemoteAddr() net.Addr {\n\treturn fa.raddr\n}\n\nfunc (fa *fakeAddrer) LocalAddr() net.Addr {\n\treturn fa.laddr\n}\n\nfunc (fa *fakeAddrer) Read(p []byte) (int, error) {\n\tpanic(\"BUG: unexpected Read call\")\n}\n\nfunc (fa *fakeAddrer) Write(p []byte) (int, error) {\n\tpanic(\"BUG: unexpected Write call\")\n}\n\nfunc (fa *fakeAddrer) Close() error {\n\tpanic(\"BUG: unexpected Close call\")\n}\n\nfunc (s *Server) releaseCtx(ctx *RequestCtx) {\n\tif ctx.timeoutResponse != nil {\n\t\tpanic(\"BUG: cannot release timed out RequestCtx\")\n\t}\n\tctx.c = nil\n\tctx.fbr.c = nil\n\ts.ctxPool.Put(ctx)\n}\n\nfunc (s *Server) getServerName() []byte {\n\tv := s.serverName.Load()\n\tvar serverName []byte\n\tif v == nil {\n\t\tserverName = []byte(s.Name)\n\t\tif len(serverName) == 0 {\n\t\t\tserverName = defaultServerName\n\t\t}\n\t\ts.serverName.Store(serverName)\n\t} else {\n\t\tserverName = v.([]byte)\n\t}\n\treturn serverName\n}\n\nfunc (s *Server) writeFastError(w io.Writer, statusCode int, msg string) {\n\tw.Write(statusLine(statusCode)) //nolint:errcheck\n\n\tserver := \"\"\n\tif !s.NoDefaultServerHeader {\n\t\tserver = fmt.Sprintf(\"Server: %s\\r\\n\", s.getServerName())\n\t}\n\n\tdate := \"\"\n\tif !s.NoDefaultDate {\n\t\tserverDateOnce.Do(updateServerDate)\n\t\tdate = fmt.Sprintf(\"Date: %s\\r\\n\", serverDate.Load())\n\t}\n\n\tfmt.Fprintf(w, \"Connection: close\\r\\n\"+\n\t\tserver+\n\t\tdate+\n\t\t\"Content-Type: text/plain\\r\\n\"+\n\t\t\"Content-Length: %d\\r\\n\"+\n\t\t\"\\r\\n\"+\n\t\t\"%s\",\n\t\tlen(msg), msg)\n}\n\nfunc defaultErrorHandler(ctx *RequestCtx, err error) {\n\tif _, ok := err.(*ErrSmallBuffer); ok {\n\t\tctx.Error(\"Too big request header\", StatusRequestHeaderFieldsTooLarge)\n\t} else if netErr, ok := err.(*net.OpError); ok && netErr.Timeout() {\n\t\tctx.Error(\"Request timeout\", StatusRequestTimeout)\n\t} else {\n\t\tctx.Error(\"Error when parsing request\", StatusBadRequest)\n\t}\n}\n\nfunc (s *Server) writeErrorResponse(bw *bufio.Writer, ctx *RequestCtx, serverName []byte, err error) *bufio.Writer {\n\terrorHandler := defaultErrorHandler\n\tif s.ErrorHandler != nil {\n\t\terrorHandler = s.ErrorHandler\n\t}\n\n\terrorHandler(ctx, err)\n\n\tif serverName != nil {\n\t\tctx.Response.Header.SetServerBytes(serverName)\n\t}\n\tctx.SetConnectionClose()\n\tif bw == nil {\n\t\tbw = acquireWriter(ctx)\n\t}\n\twriteResponse(ctx, bw) //nolint:errcheck\n\tbw.Flush()\n\treturn bw\n}\n\n// A ConnState represents the state of a client connection to a server.\n// It's used by the optional Server.ConnState hook.\ntype ConnState int\n\nconst (\n\t// StateNew represents a new connection that is expected to\n\t// send a request immediately. Connections begin at this\n\t// state and then transition to either StateActive or\n\t// StateClosed.\n\tStateNew ConnState = iota\n\n\t// StateActive represents a connection that has read 1 or more\n\t// bytes of a request. The Server.ConnState hook for\n\t// StateActive fires before the request has entered a handler\n\t// and doesn't fire again until the request has been\n\t// handled. After the request is handled, the state\n\t// transitions to StateClosed, StateHijacked, or StateIdle.\n\t// For HTTP/2, StateActive fires on the transition from zero\n\t// to one active request, and only transitions away once all\n\t// active requests are complete. That means that ConnState\n\t// cannot be used to do per-request work; ConnState only notes\n\t// the overall state of the connection.\n\tStateActive\n\n\t// StateIdle represents a connection that has finished\n\t// handling a request and is in the keep-alive state, waiting\n\t// for a new request. Connections transition from StateIdle\n\t// to either StateActive or StateClosed.\n\tStateIdle\n\n\t// StateHijacked represents a hijacked connection.\n\t// This is a terminal state. It does not transition to StateClosed.\n\tStateHijacked\n\n\t// StateClosed represents a closed connection.\n\t// This is a terminal state. Hijacked connections do not\n\t// transition to StateClosed.\n\tStateClosed\n)\n\nvar stateName = map[ConnState]string{\n\tStateNew:      \"new\",\n\tStateActive:   \"active\",\n\tStateIdle:     \"idle\",\n\tStateHijacked: \"hijacked\",\n\tStateClosed:   \"closed\",\n}\n\nfunc (c ConnState) String() string {\n\treturn stateName[c]\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/ssl-cert-snakeoil.key",
    "content": "-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQD4IQusAs8PJdnG\n3mURt/AXtgC+ceqLOatJ49JJE1VPTkMAy+oE1f1XvkMrYsHqmDf6GWVzgVXryL4U\nwq2/nJSm56ddhN55nI8oSN3dtywUB8/ShelEN73nlN77PeD9tl6NksPwWaKrqxq0\nFlabRPZSQCfmgZbhDV8Sa8mfCkFU0G0lit6kLGceCKMvmW+9Bz7ebsYmVdmVMxmf\nIJStFD44lWFTdUc65WISKEdW2ELcUefb0zOLw+0PCbXFGJH5x5ktksW8+BBk2Hkg\nGeQRL/qPCccthbScO0VgNj3zJ3ZZL0ObSDAbvNDG85joeNjDNq5DT/BAZ0bOSbEF\nsh+f9BAzAgMBAAECggEBAJWv2cq7Jw6MVwSRxYca38xuD6TUNBopgBvjREixURW2\nsNUaLuMb9Omp7fuOaE2N5rcJ+xnjPGIxh/oeN5MQctz9gwn3zf6vY+15h97pUb4D\nuGvYPRDaT8YVGS+X9NMZ4ZCmqW2lpWzKnCFoGHcy8yZLbcaxBsRdvKzwOYGoPiFb\nK2QuhXZ/1UPmqK9i2DFKtj40X6vBszTNboFxOVpXrPu0FJwLVSDf2hSZ4fMM0DH3\nYqwKcYf5te+hxGKgrqRA3tn0NCWii0in6QIwXMC+kMw1ebg/tZKqyDLMNptAK8J+\nDVw9m5X1seUHS5ehU/g2jrQrtK5WYn7MrFK4lBzlRwECgYEA/d1TeANYECDWRRDk\nB0aaRZs87Rwl/J9PsvbsKvtU/bX+OfSOUjOa9iQBqn0LmU8GqusEET/QVUfocVwV\nBggf/5qDLxz100Rj0ags/yE/kNr0Bb31kkkKHFMnCT06YasR7qKllwrAlPJvQv9x\nIzBKq+T/Dx08Wep9bCRSFhzRCnsCgYEA+jdeZXTDr/Vz+D2B3nAw1frqYFfGnEVY\nwqmoK3VXMDkGuxsloO2rN+SyiUo3JNiQNPDub/t7175GH5pmKtZOlftePANsUjBj\nwZ1D0rI5Bxu/71ibIUYIRVmXsTEQkh/ozoh3jXCZ9+bLgYiYx7789IUZZSokFQ3D\nFICUT9KJ36kCgYAGoq9Y1rWJjmIrYfqj2guUQC+CfxbbGIrrwZqAsRsSmpwvhZ3m\ntiSZxG0quKQB+NfSxdvQW5ulbwC7Xc3K35F+i9pb8+TVBdeaFkw+yu6vaZmxQLrX\nfQM/pEjD7A7HmMIaO7QaU5SfEAsqdCTP56Y8AftMuNXn/8IRfo2KuGwaWwKBgFpU\nILzJoVdlad9E/Rw7LjYhZfkv1uBVXIyxyKcfrkEXZSmozDXDdxsvcZCEfVHM6Ipk\nK/+7LuMcqp4AFEAEq8wTOdq6daFaHLkpt/FZK6M4TlruhtpFOPkoNc3e45eM83OT\n6mziKINJC1CQ6m65sQHpBtjxlKMRG8rL/D6wx9s5AoGBAMRlqNPMwglT3hvDmsAt\n9Lf9pdmhERUlHhD8bj8mDaBj2Aqv7f6VRJaYZqP403pKKQexuqcn80mtjkSAPFkN\nCj7BVt/RXm5uoxDTnfi26RF9F6yNDEJ7UU9+peBr99aazF/fTgW/1GcMkQnum8uV\nc257YgaWmjK9uB0Y2r2VxS0G\n-----END PRIVATE KEY-----\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/ssl-cert-snakeoil.pem",
    "content": "-----BEGIN CERTIFICATE-----\nMIICujCCAaKgAwIBAgIJAMbXnKZ/cikUMA0GCSqGSIb3DQEBCwUAMBUxEzARBgNV\nBAMTCnVidW50dS5uYW4wHhcNMTUwMjA0MDgwMTM5WhcNMjUwMjAxMDgwMTM5WjAV\nMRMwEQYDVQQDEwp1YnVudHUubmFuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEA+CELrALPDyXZxt5lEbfwF7YAvnHqizmrSePSSRNVT05DAMvqBNX9V75D\nK2LB6pg3+hllc4FV68i+FMKtv5yUpuenXYTeeZyPKEjd3bcsFAfP0oXpRDe955Te\n+z3g/bZejZLD8Fmiq6satBZWm0T2UkAn5oGW4Q1fEmvJnwpBVNBtJYrepCxnHgij\nL5lvvQc+3m7GJlXZlTMZnyCUrRQ+OJVhU3VHOuViEihHVthC3FHn29Mzi8PtDwm1\nxRiR+ceZLZLFvPgQZNh5IBnkES/6jwnHLYW0nDtFYDY98yd2WS9Dm0gwG7zQxvOY\n6HjYwzauQ0/wQGdGzkmxBbIfn/QQMwIDAQABow0wCzAJBgNVHRMEAjAAMA0GCSqG\nSIb3DQEBCwUAA4IBAQBQjKm/4KN/iTgXbLTL3i7zaxYXFLXsnT1tF+ay4VA8aj98\nL3JwRTciZ3A5iy/W4VSCt3eASwOaPWHKqDBB5RTtL73LoAqsWmO3APOGQAbixcQ2\n45GXi05OKeyiYRi1Nvq7Unv9jUkRDHUYVPZVSAjCpsXzPhFkmZoTRxmx5l0ZF7Li\nK91lI5h+eFq0dwZwrmlPambyh1vQUi70VHv8DNToVU29kel7YLbxGbuqETfhrcy6\nX+Mha6RYITkAn5FqsZcKMsc9eYGEF4l3XV+oS7q6xfTxktYJMFTI18J0lQ2Lv/CI\nwhdMnYGntDQBE/iFCrJEGNsKGc38796GBOb5j+zd\n-----END CERTIFICATE-----\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/stackless/doc.go",
    "content": "// Package stackless provides functionality that may save stack space\n// for high number of concurrently running goroutines.\npackage stackless\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/stackless/func.go",
    "content": "package stackless\n\nimport (\n\t\"runtime\"\n\t\"sync\"\n)\n\n// NewFunc returns stackless wrapper for the function f.\n//\n// Unlike f, the returned stackless wrapper doesn't use stack space\n// on the goroutine that calls it.\n// The wrapper may save a lot of stack space if the following conditions\n// are met:\n//\n//     - f doesn't contain blocking calls on network, I/O or channels;\n//     - f uses a lot of stack space;\n//     - the wrapper is called from high number of concurrent goroutines.\n//\n// The stackless wrapper returns false if the call cannot be processed\n// at the moment due to high load.\nfunc NewFunc(f func(ctx interface{})) func(ctx interface{}) bool {\n\tif f == nil {\n\t\tpanic(\"BUG: f cannot be nil\")\n\t}\n\n\tfuncWorkCh := make(chan *funcWork, runtime.GOMAXPROCS(-1)*2048)\n\tonceInit := func() {\n\t\tn := runtime.GOMAXPROCS(-1)\n\t\tfor i := 0; i < n; i++ {\n\t\t\tgo funcWorker(funcWorkCh, f)\n\t\t}\n\t}\n\tvar once sync.Once\n\n\treturn func(ctx interface{}) bool {\n\t\tonce.Do(onceInit)\n\t\tfw := getFuncWork()\n\t\tfw.ctx = ctx\n\n\t\tselect {\n\t\tcase funcWorkCh <- fw:\n\t\tdefault:\n\t\t\tputFuncWork(fw)\n\t\t\treturn false\n\t\t}\n\t\t<-fw.done\n\t\tputFuncWork(fw)\n\t\treturn true\n\t}\n}\n\nfunc funcWorker(funcWorkCh <-chan *funcWork, f func(ctx interface{})) {\n\tfor fw := range funcWorkCh {\n\t\tf(fw.ctx)\n\t\tfw.done <- struct{}{}\n\t}\n}\n\nfunc getFuncWork() *funcWork {\n\tv := funcWorkPool.Get()\n\tif v == nil {\n\t\tv = &funcWork{\n\t\t\tdone: make(chan struct{}, 1),\n\t\t}\n\t}\n\treturn v.(*funcWork)\n}\n\nfunc putFuncWork(fw *funcWork) {\n\tfw.ctx = nil\n\tfuncWorkPool.Put(fw)\n}\n\nvar funcWorkPool sync.Pool\n\ntype funcWork struct {\n\tctx  interface{}\n\tdone chan struct{}\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/stackless/writer.go",
    "content": "package stackless\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\n\t\"github.com/valyala/bytebufferpool\"\n)\n\n// Writer is an interface stackless writer must conform to.\n//\n// The interface contains common subset for Writers from compress/* packages.\ntype Writer interface {\n\tWrite(p []byte) (int, error)\n\tFlush() error\n\tClose() error\n\tReset(w io.Writer)\n}\n\n// NewWriterFunc must return new writer that will be wrapped into\n// stackless writer.\ntype NewWriterFunc func(w io.Writer) Writer\n\n// NewWriter creates a stackless writer around a writer returned\n// from newWriter.\n//\n// The returned writer writes data to dstW.\n//\n// Writers that use a lot of stack space may be wrapped into stackless writer,\n// thus saving stack space for high number of concurrently running goroutines.\nfunc NewWriter(dstW io.Writer, newWriter NewWriterFunc) Writer {\n\tw := &writer{\n\t\tdstW: dstW,\n\t}\n\tw.zw = newWriter(&w.xw)\n\treturn w\n}\n\ntype writer struct {\n\tdstW io.Writer\n\tzw   Writer\n\txw   xWriter\n\n\terr error\n\tn   int\n\n\tp  []byte\n\top op\n}\n\ntype op int\n\nconst (\n\topWrite op = iota\n\topFlush\n\topClose\n\topReset\n)\n\nfunc (w *writer) Write(p []byte) (int, error) {\n\tw.p = p\n\terr := w.do(opWrite)\n\tw.p = nil\n\treturn w.n, err\n}\n\nfunc (w *writer) Flush() error {\n\treturn w.do(opFlush)\n}\n\nfunc (w *writer) Close() error {\n\treturn w.do(opClose)\n}\n\nfunc (w *writer) Reset(dstW io.Writer) {\n\tw.xw.Reset()\n\tw.do(opReset) //nolint:errcheck\n\tw.dstW = dstW\n}\n\nfunc (w *writer) do(op op) error {\n\tw.op = op\n\tif !stacklessWriterFunc(w) {\n\t\treturn errHighLoad\n\t}\n\terr := w.err\n\tif err != nil {\n\t\treturn err\n\t}\n\tif w.xw.bb != nil && len(w.xw.bb.B) > 0 {\n\t\t_, err = w.dstW.Write(w.xw.bb.B)\n\t}\n\tw.xw.Reset()\n\n\treturn err\n}\n\nvar errHighLoad = errors.New(\"cannot compress data due to high load\")\n\nvar stacklessWriterFunc = NewFunc(writerFunc)\n\nfunc writerFunc(ctx interface{}) {\n\tw := ctx.(*writer)\n\tswitch w.op {\n\tcase opWrite:\n\t\tw.n, w.err = w.zw.Write(w.p)\n\tcase opFlush:\n\t\tw.err = w.zw.Flush()\n\tcase opClose:\n\t\tw.err = w.zw.Close()\n\tcase opReset:\n\t\tw.zw.Reset(&w.xw)\n\t\tw.err = nil\n\tdefault:\n\t\tpanic(fmt.Sprintf(\"BUG: unexpected op: %d\", w.op))\n\t}\n}\n\ntype xWriter struct {\n\tbb *bytebufferpool.ByteBuffer\n}\n\nfunc (w *xWriter) Write(p []byte) (int, error) {\n\tif w.bb == nil {\n\t\tw.bb = bufferPool.Get()\n\t}\n\treturn w.bb.Write(p)\n}\n\nfunc (w *xWriter) Reset() {\n\tif w.bb != nil {\n\t\tbufferPool.Put(w.bb)\n\t\tw.bb = nil\n\t}\n}\n\nvar bufferPool bytebufferpool.Pool\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/status.go",
    "content": "package fasthttp\n\nimport (\n\t\"fmt\"\n)\n\nconst (\n\tstatusMessageMin = 100\n\tstatusMessageMax = 511\n)\n\n// HTTP status codes were stolen from net/http.\nconst (\n\tStatusContinue           = 100 // RFC 7231, 6.2.1\n\tStatusSwitchingProtocols = 101 // RFC 7231, 6.2.2\n\tStatusProcessing         = 102 // RFC 2518, 10.1\n\tStatusEarlyHints         = 103 // RFC 8297\n\n\tStatusOK                   = 200 // RFC 7231, 6.3.1\n\tStatusCreated              = 201 // RFC 7231, 6.3.2\n\tStatusAccepted             = 202 // RFC 7231, 6.3.3\n\tStatusNonAuthoritativeInfo = 203 // RFC 7231, 6.3.4\n\tStatusNoContent            = 204 // RFC 7231, 6.3.5\n\tStatusResetContent         = 205 // RFC 7231, 6.3.6\n\tStatusPartialContent       = 206 // RFC 7233, 4.1\n\tStatusMultiStatus          = 207 // RFC 4918, 11.1\n\tStatusAlreadyReported      = 208 // RFC 5842, 7.1\n\tStatusIMUsed               = 226 // RFC 3229, 10.4.1\n\n\tStatusMultipleChoices   = 300 // RFC 7231, 6.4.1\n\tStatusMovedPermanently  = 301 // RFC 7231, 6.4.2\n\tStatusFound             = 302 // RFC 7231, 6.4.3\n\tStatusSeeOther          = 303 // RFC 7231, 6.4.4\n\tStatusNotModified       = 304 // RFC 7232, 4.1\n\tStatusUseProxy          = 305 // RFC 7231, 6.4.5\n\t_                       = 306 // RFC 7231, 6.4.6 (Unused)\n\tStatusTemporaryRedirect = 307 // RFC 7231, 6.4.7\n\tStatusPermanentRedirect = 308 // RFC 7538, 3\n\n\tStatusBadRequest                   = 400 // RFC 7231, 6.5.1\n\tStatusUnauthorized                 = 401 // RFC 7235, 3.1\n\tStatusPaymentRequired              = 402 // RFC 7231, 6.5.2\n\tStatusForbidden                    = 403 // RFC 7231, 6.5.3\n\tStatusNotFound                     = 404 // RFC 7231, 6.5.4\n\tStatusMethodNotAllowed             = 405 // RFC 7231, 6.5.5\n\tStatusNotAcceptable                = 406 // RFC 7231, 6.5.6\n\tStatusProxyAuthRequired            = 407 // RFC 7235, 3.2\n\tStatusRequestTimeout               = 408 // RFC 7231, 6.5.7\n\tStatusConflict                     = 409 // RFC 7231, 6.5.8\n\tStatusGone                         = 410 // RFC 7231, 6.5.9\n\tStatusLengthRequired               = 411 // RFC 7231, 6.5.10\n\tStatusPreconditionFailed           = 412 // RFC 7232, 4.2\n\tStatusRequestEntityTooLarge        = 413 // RFC 7231, 6.5.11\n\tStatusRequestURITooLong            = 414 // RFC 7231, 6.5.12\n\tStatusUnsupportedMediaType         = 415 // RFC 7231, 6.5.13\n\tStatusRequestedRangeNotSatisfiable = 416 // RFC 7233, 4.4\n\tStatusExpectationFailed            = 417 // RFC 7231, 6.5.14\n\tStatusTeapot                       = 418 // RFC 7168, 2.3.3\n\tStatusMisdirectedRequest           = 421 // RFC 7540, 9.1.2\n\tStatusUnprocessableEntity          = 422 // RFC 4918, 11.2\n\tStatusLocked                       = 423 // RFC 4918, 11.3\n\tStatusFailedDependency             = 424 // RFC 4918, 11.4\n\tStatusUpgradeRequired              = 426 // RFC 7231, 6.5.15\n\tStatusPreconditionRequired         = 428 // RFC 6585, 3\n\tStatusTooManyRequests              = 429 // RFC 6585, 4\n\tStatusRequestHeaderFieldsTooLarge  = 431 // RFC 6585, 5\n\tStatusUnavailableForLegalReasons   = 451 // RFC 7725, 3\n\n\tStatusInternalServerError           = 500 // RFC 7231, 6.6.1\n\tStatusNotImplemented                = 501 // RFC 7231, 6.6.2\n\tStatusBadGateway                    = 502 // RFC 7231, 6.6.3\n\tStatusServiceUnavailable            = 503 // RFC 7231, 6.6.4\n\tStatusGatewayTimeout                = 504 // RFC 7231, 6.6.5\n\tStatusHTTPVersionNotSupported       = 505 // RFC 7231, 6.6.6\n\tStatusVariantAlsoNegotiates         = 506 // RFC 2295, 8.1\n\tStatusInsufficientStorage           = 507 // RFC 4918, 11.5\n\tStatusLoopDetected                  = 508 // RFC 5842, 7.2\n\tStatusNotExtended                   = 510 // RFC 2774, 7\n\tStatusNetworkAuthenticationRequired = 511 // RFC 6585, 6\n)\n\nvar (\n\tstatusLines = make([][]byte, statusMessageMax+1)\n\n\tstatusMessages = []string{\n\t\tStatusContinue:           \"Continue\",\n\t\tStatusSwitchingProtocols: \"Switching Protocols\",\n\t\tStatusProcessing:         \"Processing\",\n\t\tStatusEarlyHints:         \"Early Hints\",\n\n\t\tStatusOK:                   \"OK\",\n\t\tStatusCreated:              \"Created\",\n\t\tStatusAccepted:             \"Accepted\",\n\t\tStatusNonAuthoritativeInfo: \"Non-Authoritative Information\",\n\t\tStatusNoContent:            \"No Content\",\n\t\tStatusResetContent:         \"Reset Content\",\n\t\tStatusPartialContent:       \"Partial Content\",\n\t\tStatusMultiStatus:          \"Multi-Status\",\n\t\tStatusAlreadyReported:      \"Already Reported\",\n\t\tStatusIMUsed:               \"IM Used\",\n\n\t\tStatusMultipleChoices:   \"Multiple Choices\",\n\t\tStatusMovedPermanently:  \"Moved Permanently\",\n\t\tStatusFound:             \"Found\",\n\t\tStatusSeeOther:          \"See Other\",\n\t\tStatusNotModified:       \"Not Modified\",\n\t\tStatusUseProxy:          \"Use Proxy\",\n\t\tStatusTemporaryRedirect: \"Temporary Redirect\",\n\t\tStatusPermanentRedirect: \"Permanent Redirect\",\n\n\t\tStatusBadRequest:                   \"Bad Request\",\n\t\tStatusUnauthorized:                 \"Unauthorized\",\n\t\tStatusPaymentRequired:              \"Payment Required\",\n\t\tStatusForbidden:                    \"Forbidden\",\n\t\tStatusNotFound:                     \"Not Found\",\n\t\tStatusMethodNotAllowed:             \"Method Not Allowed\",\n\t\tStatusNotAcceptable:                \"Not Acceptable\",\n\t\tStatusProxyAuthRequired:            \"Proxy Authentication Required\",\n\t\tStatusRequestTimeout:               \"Request Timeout\",\n\t\tStatusConflict:                     \"Conflict\",\n\t\tStatusGone:                         \"Gone\",\n\t\tStatusLengthRequired:               \"Length Required\",\n\t\tStatusPreconditionFailed:           \"Precondition Failed\",\n\t\tStatusRequestEntityTooLarge:        \"Request Entity Too Large\",\n\t\tStatusRequestURITooLong:            \"Request URI Too Long\",\n\t\tStatusUnsupportedMediaType:         \"Unsupported Media Type\",\n\t\tStatusRequestedRangeNotSatisfiable: \"Requested Range Not Satisfiable\",\n\t\tStatusExpectationFailed:            \"Expectation Failed\",\n\t\tStatusTeapot:                       \"I'm a teapot\",\n\t\tStatusMisdirectedRequest:           \"Misdirected Request\",\n\t\tStatusUnprocessableEntity:          \"Unprocessable Entity\",\n\t\tStatusLocked:                       \"Locked\",\n\t\tStatusFailedDependency:             \"Failed Dependency\",\n\t\tStatusUpgradeRequired:              \"Upgrade Required\",\n\t\tStatusPreconditionRequired:         \"Precondition Required\",\n\t\tStatusTooManyRequests:              \"Too Many Requests\",\n\t\tStatusRequestHeaderFieldsTooLarge:  \"Request Header Fields Too Large\",\n\t\tStatusUnavailableForLegalReasons:   \"Unavailable For Legal Reasons\",\n\n\t\tStatusInternalServerError:           \"Internal Server Error\",\n\t\tStatusNotImplemented:                \"Not Implemented\",\n\t\tStatusBadGateway:                    \"Bad Gateway\",\n\t\tStatusServiceUnavailable:            \"Service Unavailable\",\n\t\tStatusGatewayTimeout:                \"Gateway Timeout\",\n\t\tStatusHTTPVersionNotSupported:       \"HTTP Version Not Supported\",\n\t\tStatusVariantAlsoNegotiates:         \"Variant Also Negotiates\",\n\t\tStatusInsufficientStorage:           \"Insufficient Storage\",\n\t\tStatusLoopDetected:                  \"Loop Detected\",\n\t\tStatusNotExtended:                   \"Not Extended\",\n\t\tStatusNetworkAuthenticationRequired: \"Network Authentication Required\",\n\t}\n)\n\n// StatusMessage returns HTTP status message for the given status code.\nfunc StatusMessage(statusCode int) string {\n\tif statusCode < statusMessageMin || statusCode > statusMessageMax {\n\t\treturn \"Unknown Status Code\"\n\t}\n\n\ts := statusMessages[statusCode]\n\tif s == \"\" {\n\t\ts = \"Unknown Status Code\"\n\t}\n\treturn s\n}\n\nfunc init() {\n\t// Fill all valid status lines\n\tfor i := 0; i < len(statusLines); i++ {\n\t\tstatusLines[i] = []byte(fmt.Sprintf(\"HTTP/1.1 %d %s\\r\\n\", i, StatusMessage(i)))\n\t}\n}\n\nfunc statusLine(statusCode int) []byte {\n\tif statusCode < 0 || statusCode > statusMessageMax {\n\t\treturn invalidStatusLine(statusCode)\n\t}\n\n\treturn statusLines[statusCode]\n}\n\nfunc invalidStatusLine(statusCode int) []byte {\n\tstatusText := StatusMessage(statusCode)\n\treturn []byte(fmt.Sprintf(\"HTTP/1.1 %d %s\\r\\n\", statusCode, statusText))\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/stream.go",
    "content": "package fasthttp\n\nimport (\n\t\"bufio\"\n\t\"io\"\n\t\"sync\"\n\n\t\"github.com/valyala/fasthttp/fasthttputil\"\n)\n\n// StreamWriter must write data to w.\n//\n// Usually StreamWriter writes data to w in a loop (aka 'data streaming').\n//\n// StreamWriter must return immediately if w returns error.\n//\n// Since the written data is buffered, do not forget calling w.Flush\n// when the data must be propagated to reader.\ntype StreamWriter func(w *bufio.Writer)\n\n// NewStreamReader returns a reader, which replays all the data generated by sw.\n//\n// The returned reader may be passed to Response.SetBodyStream.\n//\n// Close must be called on the returned reader after all the required data\n// has been read. Otherwise goroutine leak may occur.\n//\n// See also Response.SetBodyStreamWriter.\nfunc NewStreamReader(sw StreamWriter) io.ReadCloser {\n\tpc := fasthttputil.NewPipeConns()\n\tpw := pc.Conn1()\n\tpr := pc.Conn2()\n\n\tvar bw *bufio.Writer\n\tv := streamWriterBufPool.Get()\n\tif v == nil {\n\t\tbw = bufio.NewWriter(pw)\n\t} else {\n\t\tbw = v.(*bufio.Writer)\n\t\tbw.Reset(pw)\n\t}\n\n\tgo func() {\n\t\tsw(bw)\n\t\tbw.Flush()\n\t\tpw.Close()\n\n\t\tstreamWriterBufPool.Put(bw)\n\t}()\n\n\treturn pr\n}\n\nvar streamWriterBufPool sync.Pool\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/strings.go",
    "content": "package fasthttp\n\nvar (\n\tdefaultServerName  = []byte(\"fasthttp\")\n\tdefaultUserAgent   = []byte(\"fasthttp\")\n\tdefaultContentType = []byte(\"text/plain; charset=utf-8\")\n)\n\nvar (\n\tstrSlash            = []byte(\"/\")\n\tstrSlashSlash       = []byte(\"//\")\n\tstrSlashDotDot      = []byte(\"/..\")\n\tstrSlashDotSlash    = []byte(\"/./\")\n\tstrSlashDotDotSlash = []byte(\"/../\")\n\tstrCRLF             = []byte(\"\\r\\n\")\n\tstrHTTP             = []byte(\"http\")\n\tstrHTTPS            = []byte(\"https\")\n\tstrHTTP11           = []byte(\"HTTP/1.1\")\n\tstrColon            = []byte(\":\")\n\tstrColonSlashSlash  = []byte(\"://\")\n\tstrColonSpace       = []byte(\": \")\n\tstrGMT              = []byte(\"GMT\")\n\tstrAt               = []byte(\"@\")\n\n\tstrResponseContinue = []byte(\"HTTP/1.1 100 Continue\\r\\n\\r\\n\")\n\n\tstrGet     = []byte(MethodGet)\n\tstrHead    = []byte(MethodHead)\n\tstrPost    = []byte(MethodPost)\n\tstrPut     = []byte(MethodPut)\n\tstrDelete  = []byte(MethodDelete)\n\tstrConnect = []byte(MethodConnect)\n\tstrOptions = []byte(MethodOptions)\n\tstrTrace   = []byte(MethodTrace)\n\tstrPatch   = []byte(MethodPatch)\n\n\tstrExpect           = []byte(HeaderExpect)\n\tstrConnection       = []byte(HeaderConnection)\n\tstrContentLength    = []byte(HeaderContentLength)\n\tstrContentType      = []byte(HeaderContentType)\n\tstrDate             = []byte(HeaderDate)\n\tstrHost             = []byte(HeaderHost)\n\tstrReferer          = []byte(HeaderReferer)\n\tstrServer           = []byte(HeaderServer)\n\tstrTransferEncoding = []byte(HeaderTransferEncoding)\n\tstrContentEncoding  = []byte(HeaderContentEncoding)\n\tstrAcceptEncoding   = []byte(HeaderAcceptEncoding)\n\tstrUserAgent        = []byte(HeaderUserAgent)\n\tstrCookie           = []byte(HeaderCookie)\n\tstrSetCookie        = []byte(HeaderSetCookie)\n\tstrLocation         = []byte(HeaderLocation)\n\tstrIfModifiedSince  = []byte(HeaderIfModifiedSince)\n\tstrLastModified     = []byte(HeaderLastModified)\n\tstrAcceptRanges     = []byte(HeaderAcceptRanges)\n\tstrRange            = []byte(HeaderRange)\n\tstrContentRange     = []byte(HeaderContentRange)\n\tstrAuthorization    = []byte(HeaderAuthorization)\n\n\tstrCookieExpires        = []byte(\"expires\")\n\tstrCookieDomain         = []byte(\"domain\")\n\tstrCookiePath           = []byte(\"path\")\n\tstrCookieHTTPOnly       = []byte(\"HttpOnly\")\n\tstrCookieSecure         = []byte(\"secure\")\n\tstrCookieMaxAge         = []byte(\"max-age\")\n\tstrCookieSameSite       = []byte(\"SameSite\")\n\tstrCookieSameSiteLax    = []byte(\"Lax\")\n\tstrCookieSameSiteStrict = []byte(\"Strict\")\n\tstrCookieSameSiteNone   = []byte(\"None\")\n\n\tstrClose               = []byte(\"close\")\n\tstrGzip                = []byte(\"gzip\")\n\tstrBr                  = []byte(\"br\")\n\tstrDeflate             = []byte(\"deflate\")\n\tstrKeepAlive           = []byte(\"keep-alive\")\n\tstrUpgrade             = []byte(\"Upgrade\")\n\tstrChunked             = []byte(\"chunked\")\n\tstrIdentity            = []byte(\"identity\")\n\tstr100Continue         = []byte(\"100-continue\")\n\tstrPostArgsContentType = []byte(\"application/x-www-form-urlencoded\")\n\tstrMultipartFormData   = []byte(\"multipart/form-data\")\n\tstrBoundary            = []byte(\"boundary\")\n\tstrBytes               = []byte(\"bytes\")\n\tstrTextSlash           = []byte(\"text/\")\n\tstrApplicationSlash    = []byte(\"application/\")\n\tstrBasicSpace          = []byte(\"Basic \")\n)\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/tcpdialer.go",
    "content": "package fasthttp\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"net\"\n\t\"strconv\"\n\t\"sync\"\n\t\"sync/atomic\"\n\t\"time\"\n)\n\n// Dial dials the given TCP addr using tcp4.\n//\n// This function has the following additional features comparing to net.Dial:\n//\n//   * It reduces load on DNS resolver by caching resolved TCP addressed\n//     for DefaultDNSCacheDuration.\n//   * It dials all the resolved TCP addresses in round-robin manner until\n//     connection is established. This may be useful if certain addresses\n//     are temporarily unreachable.\n//   * It returns ErrDialTimeout if connection cannot be established during\n//     DefaultDialTimeout seconds. Use DialTimeout for customizing dial timeout.\n//\n// This dialer is intended for custom code wrapping before passing\n// to Client.Dial or HostClient.Dial.\n//\n// For instance, per-host counters and/or limits may be implemented\n// by such wrappers.\n//\n// The addr passed to the function must contain port. Example addr values:\n//\n//     * foobar.baz:443\n//     * foo.bar:80\n//     * aaa.com:8080\nfunc Dial(addr string) (net.Conn, error) {\n\treturn defaultDialer.Dial(addr)\n}\n\n// DialTimeout dials the given TCP addr using tcp4 using the given timeout.\n//\n// This function has the following additional features comparing to net.Dial:\n//\n//   * It reduces load on DNS resolver by caching resolved TCP addressed\n//     for DefaultDNSCacheDuration.\n//   * It dials all the resolved TCP addresses in round-robin manner until\n//     connection is established. This may be useful if certain addresses\n//     are temporarily unreachable.\n//\n// This dialer is intended for custom code wrapping before passing\n// to Client.Dial or HostClient.Dial.\n//\n// For instance, per-host counters and/or limits may be implemented\n// by such wrappers.\n//\n// The addr passed to the function must contain port. Example addr values:\n//\n//     * foobar.baz:443\n//     * foo.bar:80\n//     * aaa.com:8080\nfunc DialTimeout(addr string, timeout time.Duration) (net.Conn, error) {\n\treturn defaultDialer.DialTimeout(addr, timeout)\n}\n\n// DialDualStack dials the given TCP addr using both tcp4 and tcp6.\n//\n// This function has the following additional features comparing to net.Dial:\n//\n//   * It reduces load on DNS resolver by caching resolved TCP addressed\n//     for DefaultDNSCacheDuration.\n//   * It dials all the resolved TCP addresses in round-robin manner until\n//     connection is established. This may be useful if certain addresses\n//     are temporarily unreachable.\n//   * It returns ErrDialTimeout if connection cannot be established during\n//     DefaultDialTimeout seconds. Use DialDualStackTimeout for custom dial\n//     timeout.\n//\n// This dialer is intended for custom code wrapping before passing\n// to Client.Dial or HostClient.Dial.\n//\n// For instance, per-host counters and/or limits may be implemented\n// by such wrappers.\n//\n// The addr passed to the function must contain port. Example addr values:\n//\n//     * foobar.baz:443\n//     * foo.bar:80\n//     * aaa.com:8080\nfunc DialDualStack(addr string) (net.Conn, error) {\n\treturn defaultDialer.DialDualStack(addr)\n}\n\n// DialDualStackTimeout dials the given TCP addr using both tcp4 and tcp6\n// using the given timeout.\n//\n// This function has the following additional features comparing to net.Dial:\n//\n//   * It reduces load on DNS resolver by caching resolved TCP addressed\n//     for DefaultDNSCacheDuration.\n//   * It dials all the resolved TCP addresses in round-robin manner until\n//     connection is established. This may be useful if certain addresses\n//     are temporarily unreachable.\n//\n// This dialer is intended for custom code wrapping before passing\n// to Client.Dial or HostClient.Dial.\n//\n// For instance, per-host counters and/or limits may be implemented\n// by such wrappers.\n//\n// The addr passed to the function must contain port. Example addr values:\n//\n//     * foobar.baz:443\n//     * foo.bar:80\n//     * aaa.com:8080\nfunc DialDualStackTimeout(addr string, timeout time.Duration) (net.Conn, error) {\n\treturn defaultDialer.DialDualStackTimeout(addr, timeout)\n}\n\nvar (\n\tdefaultDialer = &TCPDialer{Concurrency: 1000}\n)\n\n// Resolver represents interface of the tcp resolver.\ntype Resolver interface {\n\tLookupIPAddr(context.Context, string) (names []net.IPAddr, err error)\n}\n\n// TCPDialer contains options to control a group of Dial calls.\ntype TCPDialer struct {\n\t// Concurrency controls the maximum number of concurrent Dails\n\t// that can be performed using this object.\n\t// Setting this to 0 means unlimited.\n\t//\n\t// WARNING: This can only be changed before the first Dial.\n\t// Changes made after the first Dial will not affect anything.\n\tConcurrency int\n\n\t// LocalAddr is the local address to use when dialing an\n\t// address.\n\t// If nil, a local address is automatically chosen.\n\tLocalAddr *net.TCPAddr\n\n\t// This may be used to override DNS resolving policy, like this:\n\t// var dialer = &fasthttp.TCPDialer{\n\t// \tResolver: &net.Resolver{\n\t// \t\tPreferGo:     true,\n\t// \t\tStrictErrors: false,\n\t// \t\tDial: func (ctx context.Context, network, address string) (net.Conn, error) {\n\t// \t\t\td := net.Dialer{}\n\t// \t\t\treturn d.DialContext(ctx, \"udp\", \"8.8.8.8:53\")\n\t// \t\t},\n\t// \t},\n\t// }\n\tResolver Resolver\n\n\ttcpAddrsLock sync.Mutex\n\ttcpAddrsMap  map[string]*tcpAddrEntry\n\n\tconcurrencyCh chan struct{}\n\n\tonce sync.Once\n}\n\n// Dial dials the given TCP addr using tcp4.\n//\n// This function has the following additional features comparing to net.Dial:\n//\n//   * It reduces load on DNS resolver by caching resolved TCP addressed\n//     for DefaultDNSCacheDuration.\n//   * It dials all the resolved TCP addresses in round-robin manner until\n//     connection is established. This may be useful if certain addresses\n//     are temporarily unreachable.\n//   * It returns ErrDialTimeout if connection cannot be established during\n//     DefaultDialTimeout seconds. Use DialTimeout for customizing dial timeout.\n//\n// This dialer is intended for custom code wrapping before passing\n// to Client.Dial or HostClient.Dial.\n//\n// For instance, per-host counters and/or limits may be implemented\n// by such wrappers.\n//\n// The addr passed to the function must contain port. Example addr values:\n//\n//     * foobar.baz:443\n//     * foo.bar:80\n//     * aaa.com:8080\nfunc (d *TCPDialer) Dial(addr string) (net.Conn, error) {\n\treturn d.dial(addr, false, DefaultDialTimeout)\n}\n\n// DialTimeout dials the given TCP addr using tcp4 using the given timeout.\n//\n// This function has the following additional features comparing to net.Dial:\n//\n//   * It reduces load on DNS resolver by caching resolved TCP addressed\n//     for DefaultDNSCacheDuration.\n//   * It dials all the resolved TCP addresses in round-robin manner until\n//     connection is established. This may be useful if certain addresses\n//     are temporarily unreachable.\n//\n// This dialer is intended for custom code wrapping before passing\n// to Client.Dial or HostClient.Dial.\n//\n// For instance, per-host counters and/or limits may be implemented\n// by such wrappers.\n//\n// The addr passed to the function must contain port. Example addr values:\n//\n//     * foobar.baz:443\n//     * foo.bar:80\n//     * aaa.com:8080\nfunc (d *TCPDialer) DialTimeout(addr string, timeout time.Duration) (net.Conn, error) {\n\treturn d.dial(addr, false, timeout)\n}\n\n// DialDualStack dials the given TCP addr using both tcp4 and tcp6.\n//\n// This function has the following additional features comparing to net.Dial:\n//\n//   * It reduces load on DNS resolver by caching resolved TCP addressed\n//     for DefaultDNSCacheDuration.\n//   * It dials all the resolved TCP addresses in round-robin manner until\n//     connection is established. This may be useful if certain addresses\n//     are temporarily unreachable.\n//   * It returns ErrDialTimeout if connection cannot be established during\n//     DefaultDialTimeout seconds. Use DialDualStackTimeout for custom dial\n//     timeout.\n//\n// This dialer is intended for custom code wrapping before passing\n// to Client.Dial or HostClient.Dial.\n//\n// For instance, per-host counters and/or limits may be implemented\n// by such wrappers.\n//\n// The addr passed to the function must contain port. Example addr values:\n//\n//     * foobar.baz:443\n//     * foo.bar:80\n//     * aaa.com:8080\nfunc (d *TCPDialer) DialDualStack(addr string) (net.Conn, error) {\n\treturn d.dial(addr, true, DefaultDialTimeout)\n}\n\n// DialDualStackTimeout dials the given TCP addr using both tcp4 and tcp6\n// using the given timeout.\n//\n// This function has the following additional features comparing to net.Dial:\n//\n//   * It reduces load on DNS resolver by caching resolved TCP addressed\n//     for DefaultDNSCacheDuration.\n//   * It dials all the resolved TCP addresses in round-robin manner until\n//     connection is established. This may be useful if certain addresses\n//     are temporarily unreachable.\n//\n// This dialer is intended for custom code wrapping before passing\n// to Client.Dial or HostClient.Dial.\n//\n// For instance, per-host counters and/or limits may be implemented\n// by such wrappers.\n//\n// The addr passed to the function must contain port. Example addr values:\n//\n//     * foobar.baz:443\n//     * foo.bar:80\n//     * aaa.com:8080\nfunc (d *TCPDialer) DialDualStackTimeout(addr string, timeout time.Duration) (net.Conn, error) {\n\treturn d.dial(addr, true, timeout)\n}\n\nfunc (d *TCPDialer) dial(addr string, dualStack bool, timeout time.Duration) (net.Conn, error) {\n\td.once.Do(func() {\n\t\tif d.Concurrency > 0 {\n\t\t\td.concurrencyCh = make(chan struct{}, d.Concurrency)\n\t\t}\n\t\td.tcpAddrsMap = make(map[string]*tcpAddrEntry)\n\t\tgo d.tcpAddrsClean()\n\t})\n\n\taddrs, idx, err := d.getTCPAddrs(addr, dualStack)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tnetwork := \"tcp4\"\n\tif dualStack {\n\t\tnetwork = \"tcp\"\n\t}\n\n\tvar conn net.Conn\n\tn := uint32(len(addrs))\n\tdeadline := time.Now().Add(timeout)\n\tfor n > 0 {\n\t\tconn, err = d.tryDial(network, &addrs[idx%n], deadline, d.concurrencyCh)\n\t\tif err == nil {\n\t\t\treturn conn, nil\n\t\t}\n\t\tif err == ErrDialTimeout {\n\t\t\treturn nil, err\n\t\t}\n\t\tidx++\n\t\tn--\n\t}\n\treturn nil, err\n}\n\nfunc (d *TCPDialer) tryDial(network string, addr *net.TCPAddr, deadline time.Time, concurrencyCh chan struct{}) (net.Conn, error) {\n\ttimeout := -time.Since(deadline)\n\tif timeout <= 0 {\n\t\treturn nil, ErrDialTimeout\n\t}\n\n\tif concurrencyCh != nil {\n\t\tselect {\n\t\tcase concurrencyCh <- struct{}{}:\n\t\tdefault:\n\t\t\ttc := AcquireTimer(timeout)\n\t\t\tisTimeout := false\n\t\t\tselect {\n\t\t\tcase concurrencyCh <- struct{}{}:\n\t\t\tcase <-tc.C:\n\t\t\t\tisTimeout = true\n\t\t\t}\n\t\t\tReleaseTimer(tc)\n\t\t\tif isTimeout {\n\t\t\t\treturn nil, ErrDialTimeout\n\t\t\t}\n\t\t}\n\t\tdefer func() { <-concurrencyCh }()\n\t}\n\n\tdialer := net.Dialer{}\n\tif d.LocalAddr != nil {\n\t\tdialer.LocalAddr = d.LocalAddr\n\t}\n\n\tctx, cancel_ctx := context.WithDeadline(context.Background(), deadline)\n\tdefer cancel_ctx()\n\tconn, err := dialer.DialContext(ctx, network, addr.String())\n\tif err != nil && ctx.Err() == context.DeadlineExceeded {\n\t\treturn nil, ErrDialTimeout\n\t}\n\treturn conn, err\n}\n\n// ErrDialTimeout is returned when TCP dialing is timed out.\nvar ErrDialTimeout = errors.New(\"dialing to the given TCP address timed out\")\n\n// DefaultDialTimeout is timeout used by Dial and DialDualStack\n// for establishing TCP connections.\nconst DefaultDialTimeout = 3 * time.Second\n\ntype tcpAddrEntry struct {\n\taddrs    []net.TCPAddr\n\taddrsIdx uint32\n\n\tresolveTime time.Time\n\tpending     bool\n}\n\n// DefaultDNSCacheDuration is the duration for caching resolved TCP addresses\n// by Dial* functions.\nconst DefaultDNSCacheDuration = time.Minute\n\nfunc (d *TCPDialer) tcpAddrsClean() {\n\texpireDuration := 2 * DefaultDNSCacheDuration\n\tfor {\n\t\ttime.Sleep(time.Second)\n\t\tt := time.Now()\n\n\t\td.tcpAddrsLock.Lock()\n\t\tfor k, e := range d.tcpAddrsMap {\n\t\t\tif t.Sub(e.resolveTime) > expireDuration {\n\t\t\t\tdelete(d.tcpAddrsMap, k)\n\t\t\t}\n\t\t}\n\t\td.tcpAddrsLock.Unlock()\n\t}\n}\n\nfunc (d *TCPDialer) getTCPAddrs(addr string, dualStack bool) ([]net.TCPAddr, uint32, error) {\n\td.tcpAddrsLock.Lock()\n\te := d.tcpAddrsMap[addr]\n\tif e != nil && !e.pending && time.Since(e.resolveTime) > DefaultDNSCacheDuration {\n\t\te.pending = true\n\t\te = nil\n\t}\n\td.tcpAddrsLock.Unlock()\n\n\tif e == nil {\n\t\taddrs, err := resolveTCPAddrs(addr, dualStack, d.Resolver)\n\t\tif err != nil {\n\t\t\td.tcpAddrsLock.Lock()\n\t\t\te = d.tcpAddrsMap[addr]\n\t\t\tif e != nil && e.pending {\n\t\t\t\te.pending = false\n\t\t\t}\n\t\t\td.tcpAddrsLock.Unlock()\n\t\t\treturn nil, 0, err\n\t\t}\n\n\t\te = &tcpAddrEntry{\n\t\t\taddrs:       addrs,\n\t\t\tresolveTime: time.Now(),\n\t\t}\n\n\t\td.tcpAddrsLock.Lock()\n\t\td.tcpAddrsMap[addr] = e\n\t\td.tcpAddrsLock.Unlock()\n\t}\n\n\tidx := atomic.AddUint32(&e.addrsIdx, 1)\n\treturn e.addrs, idx, nil\n}\n\nfunc resolveTCPAddrs(addr string, dualStack bool, resolver Resolver) ([]net.TCPAddr, error) {\n\thost, portS, err := net.SplitHostPort(addr)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tport, err := strconv.Atoi(portS)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif resolver == nil {\n\t\tresolver = net.DefaultResolver\n\t}\n\n\tctx := context.Background()\n\tipaddrs, err := resolver.LookupIPAddr(ctx, host)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tn := len(ipaddrs)\n\taddrs := make([]net.TCPAddr, 0, n)\n\tfor i := 0; i < n; i++ {\n\t\tip := ipaddrs[i]\n\t\tif !dualStack && ip.IP.To4() == nil {\n\t\t\tcontinue\n\t\t}\n\t\taddrs = append(addrs, net.TCPAddr{\n\t\t\tIP:   ip.IP,\n\t\t\tPort: port,\n\t\t\tZone: ip.Zone,\n\t\t})\n\t}\n\tif len(addrs) == 0 {\n\t\treturn nil, errNoDNSEntries\n\t}\n\treturn addrs, nil\n}\n\nvar errNoDNSEntries = errors.New(\"couldn't find DNS entries for the given domain. Try using DialDualStack\")\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/timer.go",
    "content": "package fasthttp\n\nimport (\n\t\"sync\"\n\t\"time\"\n)\n\nfunc initTimer(t *time.Timer, timeout time.Duration) *time.Timer {\n\tif t == nil {\n\t\treturn time.NewTimer(timeout)\n\t}\n\tif t.Reset(timeout) {\n\t\tpanic(\"BUG: active timer trapped into initTimer()\")\n\t}\n\treturn t\n}\n\nfunc stopTimer(t *time.Timer) {\n\tif !t.Stop() {\n\t\t// Collect possibly added time from the channel\n\t\t// if timer has been stopped and nobody collected its' value.\n\t\tselect {\n\t\tcase <-t.C:\n\t\tdefault:\n\t\t}\n\t}\n}\n\n// AcquireTimer returns a time.Timer from the pool and updates it to\n// send the current time on its channel after at least timeout.\n//\n// The returned Timer may be returned to the pool with ReleaseTimer\n// when no longer needed. This allows reducing GC load.\nfunc AcquireTimer(timeout time.Duration) *time.Timer {\n\tv := timerPool.Get()\n\tif v == nil {\n\t\treturn time.NewTimer(timeout)\n\t}\n\tt := v.(*time.Timer)\n\tinitTimer(t, timeout)\n\treturn t\n}\n\n// ReleaseTimer returns the time.Timer acquired via AcquireTimer to the pool\n// and prevents the Timer from firing.\n//\n// Do not access the released time.Timer or read from it's channel otherwise\n// data races may occur.\nfunc ReleaseTimer(t *time.Timer) {\n\tstopTimer(t)\n\ttimerPool.Put(t)\n}\n\nvar timerPool sync.Pool\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/uri.go",
    "content": "package fasthttp\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"sync\"\n)\n\n// AcquireURI returns an empty URI instance from the pool.\n//\n// Release the URI with ReleaseURI after the URI is no longer needed.\n// This allows reducing GC load.\nfunc AcquireURI() *URI {\n\treturn uriPool.Get().(*URI)\n}\n\n// ReleaseURI releases the URI acquired via AcquireURI.\n//\n// The released URI mustn't be used after releasing it, otherwise data races\n// may occur.\nfunc ReleaseURI(u *URI) {\n\tu.Reset()\n\turiPool.Put(u)\n}\n\nvar uriPool = &sync.Pool{\n\tNew: func() interface{} {\n\t\treturn &URI{}\n\t},\n}\n\n// URI represents URI :) .\n//\n// It is forbidden copying URI instances. Create new instance and use CopyTo\n// instead.\n//\n// URI instance MUST NOT be used from concurrently running goroutines.\ntype URI struct {\n\tnoCopy noCopy //nolint:unused,structcheck\n\n\tpathOriginal []byte\n\tscheme       []byte\n\tpath         []byte\n\tqueryString  []byte\n\thash         []byte\n\thost         []byte\n\n\tqueryArgs       Args\n\tparsedQueryArgs bool\n\n\t// Path values are sent as-is without normalization\n\t//\n\t// Disabled path normalization may be useful for proxying incoming requests\n\t// to servers that are expecting paths to be forwarded as-is.\n\t//\n\t// By default path values are normalized, i.e.\n\t// extra slashes are removed, special characters are encoded.\n\tDisablePathNormalizing bool\n\n\tfullURI    []byte\n\trequestURI []byte\n\n\tusername []byte\n\tpassword []byte\n}\n\n// CopyTo copies uri contents to dst.\nfunc (u *URI) CopyTo(dst *URI) {\n\tdst.Reset()\n\tdst.pathOriginal = append(dst.pathOriginal[:0], u.pathOriginal...)\n\tdst.scheme = append(dst.scheme[:0], u.scheme...)\n\tdst.path = append(dst.path[:0], u.path...)\n\tdst.queryString = append(dst.queryString[:0], u.queryString...)\n\tdst.hash = append(dst.hash[:0], u.hash...)\n\tdst.host = append(dst.host[:0], u.host...)\n\tdst.username = append(dst.username[:0], u.username...)\n\tdst.password = append(dst.password[:0], u.password...)\n\n\tu.queryArgs.CopyTo(&dst.queryArgs)\n\tdst.parsedQueryArgs = u.parsedQueryArgs\n\tdst.DisablePathNormalizing = u.DisablePathNormalizing\n\n\t// fullURI and requestURI shouldn't be copied, since they are created\n\t// from scratch on each FullURI() and RequestURI() call.\n}\n\n// Hash returns URI hash, i.e. qwe of http://aaa.com/foo/bar?baz=123#qwe .\n//\n// The returned value is valid until the next URI method call.\nfunc (u *URI) Hash() []byte {\n\treturn u.hash\n}\n\n// SetHash sets URI hash.\nfunc (u *URI) SetHash(hash string) {\n\tu.hash = append(u.hash[:0], hash...)\n}\n\n// SetHashBytes sets URI hash.\nfunc (u *URI) SetHashBytes(hash []byte) {\n\tu.hash = append(u.hash[:0], hash...)\n}\n\n// Username returns URI username\nfunc (u *URI) Username() []byte {\n\treturn u.username\n}\n\n// SetUsername sets URI username.\nfunc (u *URI) SetUsername(username string) {\n\tu.username = append(u.username[:0], username...)\n}\n\n// SetUsernameBytes sets URI username.\nfunc (u *URI) SetUsernameBytes(username []byte) {\n\tu.username = append(u.username[:0], username...)\n}\n\n// Password returns URI password\nfunc (u *URI) Password() []byte {\n\treturn u.password\n}\n\n// SetPassword sets URI password.\nfunc (u *URI) SetPassword(password string) {\n\tu.password = append(u.password[:0], password...)\n}\n\n// SetPasswordBytes sets URI password.\nfunc (u *URI) SetPasswordBytes(password []byte) {\n\tu.password = append(u.password[:0], password...)\n}\n\n// QueryString returns URI query string,\n// i.e. baz=123 of http://aaa.com/foo/bar?baz=123#qwe .\n//\n// The returned value is valid until the next URI method call.\nfunc (u *URI) QueryString() []byte {\n\treturn u.queryString\n}\n\n// SetQueryString sets URI query string.\nfunc (u *URI) SetQueryString(queryString string) {\n\tu.queryString = append(u.queryString[:0], queryString...)\n\tu.parsedQueryArgs = false\n}\n\n// SetQueryStringBytes sets URI query string.\nfunc (u *URI) SetQueryStringBytes(queryString []byte) {\n\tu.queryString = append(u.queryString[:0], queryString...)\n\tu.parsedQueryArgs = false\n}\n\n// Path returns URI path, i.e. /foo/bar of http://aaa.com/foo/bar?baz=123#qwe .\n//\n// The returned path is always urldecoded and normalized,\n// i.e. '//f%20obar/baz/../zzz' becomes '/f obar/zzz'.\n//\n// The returned value is valid until the next URI method call.\nfunc (u *URI) Path() []byte {\n\tpath := u.path\n\tif len(path) == 0 {\n\t\tpath = strSlash\n\t}\n\treturn path\n}\n\n// SetPath sets URI path.\nfunc (u *URI) SetPath(path string) {\n\tu.pathOriginal = append(u.pathOriginal[:0], path...)\n\tu.path = normalizePath(u.path, u.pathOriginal)\n}\n\n// SetPathBytes sets URI path.\nfunc (u *URI) SetPathBytes(path []byte) {\n\tu.pathOriginal = append(u.pathOriginal[:0], path...)\n\tu.path = normalizePath(u.path, u.pathOriginal)\n}\n\n// PathOriginal returns the original path from requestURI passed to URI.Parse().\n//\n// The returned value is valid until the next URI method call.\nfunc (u *URI) PathOriginal() []byte {\n\treturn u.pathOriginal\n}\n\n// Scheme returns URI scheme, i.e. http of http://aaa.com/foo/bar?baz=123#qwe .\n//\n// Returned scheme is always lowercased.\n//\n// The returned value is valid until the next URI method call.\nfunc (u *URI) Scheme() []byte {\n\tscheme := u.scheme\n\tif len(scheme) == 0 {\n\t\tscheme = strHTTP\n\t}\n\treturn scheme\n}\n\n// SetScheme sets URI scheme, i.e. http, https, ftp, etc.\nfunc (u *URI) SetScheme(scheme string) {\n\tu.scheme = append(u.scheme[:0], scheme...)\n\tlowercaseBytes(u.scheme)\n}\n\n// SetSchemeBytes sets URI scheme, i.e. http, https, ftp, etc.\nfunc (u *URI) SetSchemeBytes(scheme []byte) {\n\tu.scheme = append(u.scheme[:0], scheme...)\n\tlowercaseBytes(u.scheme)\n}\n\n// Reset clears uri.\nfunc (u *URI) Reset() {\n\tu.pathOriginal = u.pathOriginal[:0]\n\tu.scheme = u.scheme[:0]\n\tu.path = u.path[:0]\n\tu.queryString = u.queryString[:0]\n\tu.hash = u.hash[:0]\n\tu.username = u.username[:0]\n\tu.password = u.password[:0]\n\n\tu.host = u.host[:0]\n\tu.queryArgs.Reset()\n\tu.parsedQueryArgs = false\n\tu.DisablePathNormalizing = false\n\n\t// There is no need in u.fullURI = u.fullURI[:0], since full uri\n\t// is calculated on each call to FullURI().\n\n\t// There is no need in u.requestURI = u.requestURI[:0], since requestURI\n\t// is calculated on each call to RequestURI().\n}\n\n// Host returns host part, i.e. aaa.com of http://aaa.com/foo/bar?baz=123#qwe .\n//\n// Host is always lowercased.\nfunc (u *URI) Host() []byte {\n\treturn u.host\n}\n\n// SetHost sets host for the uri.\nfunc (u *URI) SetHost(host string) {\n\tu.host = append(u.host[:0], host...)\n\tlowercaseBytes(u.host)\n}\n\n// SetHostBytes sets host for the uri.\nfunc (u *URI) SetHostBytes(host []byte) {\n\tu.host = append(u.host[:0], host...)\n\tlowercaseBytes(u.host)\n}\n\nvar (\n\tErrorInvalidURI = errors.New(\"invalid uri\")\n)\n\n// Parse initializes URI from the given host and uri.\n//\n// host may be nil. In this case uri must contain fully qualified uri,\n// i.e. with scheme and host. http is assumed if scheme is omitted.\n//\n// uri may contain e.g. RequestURI without scheme and host if host is non-empty.\nfunc (u *URI) Parse(host, uri []byte) error {\n\treturn u.parse(host, uri, false)\n}\n\nfunc (u *URI) parse(host, uri []byte, isTLS bool) error {\n\tu.Reset()\n\n\tif stringContainsCTLByte(uri) {\n\t\treturn ErrorInvalidURI\n\t}\n\n\tif len(host) == 0 || bytes.Contains(uri, strColonSlashSlash) {\n\t\tscheme, newHost, newURI := splitHostURI(host, uri)\n\t\tu.scheme = append(u.scheme, scheme...)\n\t\tlowercaseBytes(u.scheme)\n\t\thost = newHost\n\t\turi = newURI\n\t}\n\n\tif isTLS {\n\t\tu.scheme = append(u.scheme[:0], strHTTPS...)\n\t}\n\n\tif n := bytes.Index(host, strAt); n >= 0 {\n\t\tauth := host[:n]\n\t\thost = host[n+1:]\n\n\t\tif n := bytes.Index(auth, strColon); n >= 0 {\n\t\t\tu.username = append(u.username[:0], auth[:n]...)\n\t\t\tu.password = append(u.password[:0], auth[n+1:]...)\n\t\t} else {\n\t\t\tu.username = append(u.username[:0], auth...)\n\t\t\tu.password = u.password[:0]\n\t\t}\n\t}\n\n\tu.host = append(u.host, host...)\n\tlowercaseBytes(u.host)\n\n\tb := uri\n\tqueryIndex := bytes.IndexByte(b, '?')\n\tfragmentIndex := bytes.IndexByte(b, '#')\n\t// Ignore query in fragment part\n\tif fragmentIndex >= 0 && queryIndex > fragmentIndex {\n\t\tqueryIndex = -1\n\t}\n\n\tif queryIndex < 0 && fragmentIndex < 0 {\n\t\tu.pathOriginal = append(u.pathOriginal, b...)\n\t\tu.path = normalizePath(u.path, u.pathOriginal)\n\t\treturn nil\n\t}\n\n\tif queryIndex >= 0 {\n\t\t// Path is everything up to the start of the query\n\t\tu.pathOriginal = append(u.pathOriginal, b[:queryIndex]...)\n\t\tu.path = normalizePath(u.path, u.pathOriginal)\n\n\t\tif fragmentIndex < 0 {\n\t\t\tu.queryString = append(u.queryString, b[queryIndex+1:]...)\n\t\t} else {\n\t\t\tu.queryString = append(u.queryString, b[queryIndex+1:fragmentIndex]...)\n\t\t\tu.hash = append(u.hash, b[fragmentIndex+1:]...)\n\t\t}\n\t\treturn nil\n\t}\n\n\t// fragmentIndex >= 0 && queryIndex < 0\n\t// Path is up to the start of fragment\n\tu.pathOriginal = append(u.pathOriginal, b[:fragmentIndex]...)\n\tu.path = normalizePath(u.path, u.pathOriginal)\n\tu.hash = append(u.hash, b[fragmentIndex+1:]...)\n\n\treturn nil\n}\n\nfunc normalizePath(dst, src []byte) []byte {\n\tdst = dst[:0]\n\tdst = addLeadingSlash(dst, src)\n\tdst = decodeArgAppendNoPlus(dst, src)\n\n\t// remove duplicate slashes\n\tb := dst\n\tbSize := len(b)\n\tfor {\n\t\tn := bytes.Index(b, strSlashSlash)\n\t\tif n < 0 {\n\t\t\tbreak\n\t\t}\n\t\tb = b[n:]\n\t\tcopy(b, b[1:])\n\t\tb = b[:len(b)-1]\n\t\tbSize--\n\t}\n\tdst = dst[:bSize]\n\n\t// remove /./ parts\n\tb = dst\n\tfor {\n\t\tn := bytes.Index(b, strSlashDotSlash)\n\t\tif n < 0 {\n\t\t\tbreak\n\t\t}\n\t\tnn := n + len(strSlashDotSlash) - 1\n\t\tcopy(b[n:], b[nn:])\n\t\tb = b[:len(b)-nn+n]\n\t}\n\n\t// remove /foo/../ parts\n\tfor {\n\t\tn := bytes.Index(b, strSlashDotDotSlash)\n\t\tif n < 0 {\n\t\t\tbreak\n\t\t}\n\t\tnn := bytes.LastIndexByte(b[:n], '/')\n\t\tif nn < 0 {\n\t\t\tnn = 0\n\t\t}\n\t\tn += len(strSlashDotDotSlash) - 1\n\t\tcopy(b[nn:], b[n:])\n\t\tb = b[:len(b)-n+nn]\n\t}\n\n\t// remove trailing /foo/..\n\tn := bytes.LastIndex(b, strSlashDotDot)\n\tif n >= 0 && n+len(strSlashDotDot) == len(b) {\n\t\tnn := bytes.LastIndexByte(b[:n], '/')\n\t\tif nn < 0 {\n\t\t\treturn strSlash\n\t\t}\n\t\tb = b[:nn+1]\n\t}\n\n\treturn b\n}\n\n// RequestURI returns RequestURI - i.e. URI without Scheme and Host.\nfunc (u *URI) RequestURI() []byte {\n\tvar dst []byte\n\tif u.DisablePathNormalizing {\n\t\tdst = append(u.requestURI[:0], u.PathOriginal()...)\n\t} else {\n\t\tdst = appendQuotedPath(u.requestURI[:0], u.Path())\n\t}\n\tif u.queryArgs.Len() > 0 {\n\t\tdst = append(dst, '?')\n\t\tdst = u.queryArgs.AppendBytes(dst)\n\t} else if len(u.queryString) > 0 {\n\t\tdst = append(dst, '?')\n\t\tdst = append(dst, u.queryString...)\n\t}\n\tu.requestURI = dst\n\treturn u.requestURI\n}\n\n// LastPathSegment returns the last part of uri path after '/'.\n//\n// Examples:\n//\n//    * For /foo/bar/baz.html path returns baz.html.\n//    * For /foo/bar/ returns empty byte slice.\n//    * For /foobar.js returns foobar.js.\nfunc (u *URI) LastPathSegment() []byte {\n\tpath := u.Path()\n\tn := bytes.LastIndexByte(path, '/')\n\tif n < 0 {\n\t\treturn path\n\t}\n\treturn path[n+1:]\n}\n\n// Update updates uri.\n//\n// The following newURI types are accepted:\n//\n//     * Absolute, i.e. http://foobar.com/aaa/bb?cc . In this case the original\n//       uri is replaced by newURI.\n//     * Absolute without scheme, i.e. //foobar.com/aaa/bb?cc. In this case\n//       the original scheme is preserved.\n//     * Missing host, i.e. /aaa/bb?cc . In this case only RequestURI part\n//       of the original uri is replaced.\n//     * Relative path, i.e.  xx?yy=abc . In this case the original RequestURI\n//       is updated according to the new relative path.\nfunc (u *URI) Update(newURI string) {\n\tu.UpdateBytes(s2b(newURI))\n}\n\n// UpdateBytes updates uri.\n//\n// The following newURI types are accepted:\n//\n//     * Absolute, i.e. http://foobar.com/aaa/bb?cc . In this case the original\n//       uri is replaced by newURI.\n//     * Absolute without scheme, i.e. //foobar.com/aaa/bb?cc. In this case\n//       the original scheme is preserved.\n//     * Missing host, i.e. /aaa/bb?cc . In this case only RequestURI part\n//       of the original uri is replaced.\n//     * Relative path, i.e.  xx?yy=abc . In this case the original RequestURI\n//       is updated according to the new relative path.\nfunc (u *URI) UpdateBytes(newURI []byte) {\n\tu.requestURI = u.updateBytes(newURI, u.requestURI)\n}\n\nfunc (u *URI) updateBytes(newURI, buf []byte) []byte {\n\tif len(newURI) == 0 {\n\t\treturn buf\n\t}\n\n\tn := bytes.Index(newURI, strSlashSlash)\n\tif n >= 0 {\n\t\t// absolute uri\n\t\tvar b [32]byte\n\t\tschemeOriginal := b[:0]\n\t\tif len(u.scheme) > 0 {\n\t\t\tschemeOriginal = append([]byte(nil), u.scheme...)\n\t\t}\n\t\tif err := u.Parse(nil, newURI); err != nil {\n\t\t\treturn nil\n\t\t}\n\t\tif len(schemeOriginal) > 0 && len(u.scheme) == 0 {\n\t\t\tu.scheme = append(u.scheme[:0], schemeOriginal...)\n\t\t}\n\t\treturn buf\n\t}\n\n\tif newURI[0] == '/' {\n\t\t// uri without host\n\t\tbuf = u.appendSchemeHost(buf[:0])\n\t\tbuf = append(buf, newURI...)\n\t\tif err := u.Parse(nil, buf); err != nil {\n\t\t\treturn nil\n\t\t}\n\t\treturn buf\n\t}\n\n\t// relative path\n\tswitch newURI[0] {\n\tcase '?':\n\t\t// query string only update\n\t\tu.SetQueryStringBytes(newURI[1:])\n\t\treturn append(buf[:0], u.FullURI()...)\n\tcase '#':\n\t\t// update only hash\n\t\tu.SetHashBytes(newURI[1:])\n\t\treturn append(buf[:0], u.FullURI()...)\n\tdefault:\n\t\t// update the last path part after the slash\n\t\tpath := u.Path()\n\t\tn = bytes.LastIndexByte(path, '/')\n\t\tif n < 0 {\n\t\t\tpanic(fmt.Sprintf(\"BUG: path must contain at least one slash: %s %s\", u.Path(), newURI))\n\t\t}\n\t\tbuf = u.appendSchemeHost(buf[:0])\n\t\tbuf = appendQuotedPath(buf, path[:n+1])\n\t\tbuf = append(buf, newURI...)\n\t\tif err := u.Parse(nil, buf); err != nil {\n\t\t\treturn nil\n\t\t}\n\t\treturn buf\n\t}\n}\n\n// FullURI returns full uri in the form {Scheme}://{Host}{RequestURI}#{Hash}.\nfunc (u *URI) FullURI() []byte {\n\tu.fullURI = u.AppendBytes(u.fullURI[:0])\n\treturn u.fullURI\n}\n\n// AppendBytes appends full uri to dst and returns the extended dst.\nfunc (u *URI) AppendBytes(dst []byte) []byte {\n\tdst = u.appendSchemeHost(dst)\n\tdst = append(dst, u.RequestURI()...)\n\tif len(u.hash) > 0 {\n\t\tdst = append(dst, '#')\n\t\tdst = append(dst, u.hash...)\n\t}\n\treturn dst\n}\n\nfunc (u *URI) appendSchemeHost(dst []byte) []byte {\n\tdst = append(dst, u.Scheme()...)\n\tdst = append(dst, strColonSlashSlash...)\n\treturn append(dst, u.Host()...)\n}\n\n// WriteTo writes full uri to w.\n//\n// WriteTo implements io.WriterTo interface.\nfunc (u *URI) WriteTo(w io.Writer) (int64, error) {\n\tn, err := w.Write(u.FullURI())\n\treturn int64(n), err\n}\n\n// String returns full uri.\nfunc (u *URI) String() string {\n\treturn string(u.FullURI())\n}\n\nfunc splitHostURI(host, uri []byte) ([]byte, []byte, []byte) {\n\tn := bytes.Index(uri, strSlashSlash)\n\tif n < 0 {\n\t\treturn strHTTP, host, uri\n\t}\n\tscheme := uri[:n]\n\tif bytes.IndexByte(scheme, '/') >= 0 {\n\t\treturn strHTTP, host, uri\n\t}\n\tif len(scheme) > 0 && scheme[len(scheme)-1] == ':' {\n\t\tscheme = scheme[:len(scheme)-1]\n\t}\n\tn += len(strSlashSlash)\n\turi = uri[n:]\n\tn = bytes.IndexByte(uri, '/')\n\tnq := bytes.IndexByte(uri, '?')\n\tif nq >= 0 && nq < n {\n\t\t// A hack for urls like foobar.com?a=b/xyz\n\t\tn = nq\n\t} else if n < 0 {\n\t\t// A hack for bogus urls like foobar.com?a=b without\n\t\t// slash after host.\n\t\tif nq >= 0 {\n\t\t\treturn scheme, uri[:nq], uri[nq:]\n\t\t}\n\t\treturn scheme, uri, strSlash\n\t}\n\treturn scheme, uri[:n], uri[n:]\n}\n\n// QueryArgs returns query args.\nfunc (u *URI) QueryArgs() *Args {\n\tu.parseQueryArgs()\n\treturn &u.queryArgs\n}\n\nfunc (u *URI) parseQueryArgs() {\n\tif u.parsedQueryArgs {\n\t\treturn\n\t}\n\tu.queryArgs.ParseBytes(u.queryString)\n\tu.parsedQueryArgs = true\n}\n\n// stringContainsCTLByte reports whether s contains any ASCII control character.\nfunc stringContainsCTLByte(s []byte) bool {\n\tfor i := 0; i < len(s); i++ {\n\t\tb := s[i]\n\t\tif b < ' ' || b == 0x7f {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/uri_unix.go",
    "content": "// +build !windows\n\npackage fasthttp\n\nfunc addLeadingSlash(dst, src []byte) []byte {\n\t// add leading slash for unix paths\n\tif len(src) == 0 || src[0] != '/' {\n\t\tdst = append(dst, '/')\n\t}\n\n\treturn dst\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/uri_windows.go",
    "content": "// +build windows\n\npackage fasthttp\n\nfunc addLeadingSlash(dst, src []byte) []byte {\n\t// zero length and \"C:/\" case\n\tif len(src) == 0 || (len(src) > 2 && src[1] != ':') {\n\t\tdst = append(dst, '/')\n\t}\n\n\treturn dst\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/userdata.go",
    "content": "package fasthttp\n\nimport (\n\t\"io\"\n)\n\ntype userDataKV struct {\n\tkey   []byte\n\tvalue interface{}\n}\n\ntype userData []userDataKV\n\nfunc (d *userData) Set(key string, value interface{}) {\n\targs := *d\n\tn := len(args)\n\tfor i := 0; i < n; i++ {\n\t\tkv := &args[i]\n\t\tif string(kv.key) == key {\n\t\t\tkv.value = value\n\t\t\treturn\n\t\t}\n\t}\n\n\tc := cap(args)\n\tif c > n {\n\t\targs = args[:n+1]\n\t\tkv := &args[n]\n\t\tkv.key = append(kv.key[:0], key...)\n\t\tkv.value = value\n\t\t*d = args\n\t\treturn\n\t}\n\n\tkv := userDataKV{}\n\tkv.key = append(kv.key[:0], key...)\n\tkv.value = value\n\t*d = append(args, kv)\n}\n\nfunc (d *userData) SetBytes(key []byte, value interface{}) {\n\td.Set(b2s(key), value)\n}\n\nfunc (d *userData) Get(key string) interface{} {\n\targs := *d\n\tn := len(args)\n\tfor i := 0; i < n; i++ {\n\t\tkv := &args[i]\n\t\tif string(kv.key) == key {\n\t\t\treturn kv.value\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (d *userData) GetBytes(key []byte) interface{} {\n\treturn d.Get(b2s(key))\n}\n\nfunc (d *userData) Reset() {\n\targs := *d\n\tn := len(args)\n\tfor i := 0; i < n; i++ {\n\t\tv := args[i].value\n\t\tif vc, ok := v.(io.Closer); ok {\n\t\t\tvc.Close()\n\t\t}\n\t}\n\t*d = (*d)[:0]\n}\n"
  },
  {
    "path": "vendor/github.com/valyala/fasthttp/workerpool.go",
    "content": "package fasthttp\n\nimport (\n\t\"net\"\n\t\"runtime\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n)\n\n// workerPool serves incoming connections via a pool of workers\n// in FILO order, i.e. the most recently stopped worker will serve the next\n// incoming connection.\n//\n// Such a scheme keeps CPU caches hot (in theory).\ntype workerPool struct {\n\t// Function for serving server connections.\n\t// It must leave c unclosed.\n\tWorkerFunc ServeHandler\n\n\tMaxWorkersCount int\n\n\tLogAllErrors bool\n\n\tMaxIdleWorkerDuration time.Duration\n\n\tLogger Logger\n\n\tlock         sync.Mutex\n\tworkersCount int\n\tmustStop     bool\n\n\tready []*workerChan\n\n\tstopCh chan struct{}\n\n\tworkerChanPool sync.Pool\n\n\tconnState func(net.Conn, ConnState)\n}\n\ntype workerChan struct {\n\tlastUseTime time.Time\n\tch          chan net.Conn\n}\n\nfunc (wp *workerPool) Start() {\n\tif wp.stopCh != nil {\n\t\tpanic(\"BUG: workerPool already started\")\n\t}\n\twp.stopCh = make(chan struct{})\n\tstopCh := wp.stopCh\n\twp.workerChanPool.New = func() interface{} {\n\t\treturn &workerChan{\n\t\t\tch: make(chan net.Conn, workerChanCap),\n\t\t}\n\t}\n\tgo func() {\n\t\tvar scratch []*workerChan\n\t\tfor {\n\t\t\twp.clean(&scratch)\n\t\t\tselect {\n\t\t\tcase <-stopCh:\n\t\t\t\treturn\n\t\t\tdefault:\n\t\t\t\ttime.Sleep(wp.getMaxIdleWorkerDuration())\n\t\t\t}\n\t\t}\n\t}()\n}\n\nfunc (wp *workerPool) Stop() {\n\tif wp.stopCh == nil {\n\t\tpanic(\"BUG: workerPool wasn't started\")\n\t}\n\tclose(wp.stopCh)\n\twp.stopCh = nil\n\n\t// Stop all the workers waiting for incoming connections.\n\t// Do not wait for busy workers - they will stop after\n\t// serving the connection and noticing wp.mustStop = true.\n\twp.lock.Lock()\n\tready := wp.ready\n\tfor i := range ready {\n\t\tready[i].ch <- nil\n\t\tready[i] = nil\n\t}\n\twp.ready = ready[:0]\n\twp.mustStop = true\n\twp.lock.Unlock()\n}\n\nfunc (wp *workerPool) getMaxIdleWorkerDuration() time.Duration {\n\tif wp.MaxIdleWorkerDuration <= 0 {\n\t\treturn 10 * time.Second\n\t}\n\treturn wp.MaxIdleWorkerDuration\n}\n\nfunc (wp *workerPool) clean(scratch *[]*workerChan) {\n\tmaxIdleWorkerDuration := wp.getMaxIdleWorkerDuration()\n\n\t// Clean least recently used workers if they didn't serve connections\n\t// for more than maxIdleWorkerDuration.\n\tcriticalTime := time.Now().Add(-maxIdleWorkerDuration)\n\n\twp.lock.Lock()\n\tready := wp.ready\n\tn := len(ready)\n\n\t// Use binary-search algorithm to find out the index of the least recently worker which can be cleaned up.\n\tl, r, mid := 0, n-1, 0\n\tfor l <= r {\n\t\tmid = (l + r) / 2\n\t\tif criticalTime.After(wp.ready[mid].lastUseTime) {\n\t\t\tl = mid + 1\n\t\t} else {\n\t\t\tr = mid - 1\n\t\t}\n\t}\n\ti := r\n\tif i == -1 {\n\t\twp.lock.Unlock()\n\t\treturn\n\t}\n\n\t*scratch = append((*scratch)[:0], ready[:i+1]...)\n\tm := copy(ready, ready[i+1:])\n\tfor i = m; i < n; i++ {\n\t\tready[i] = nil\n\t}\n\twp.ready = ready[:m]\n\twp.lock.Unlock()\n\n\t// Notify obsolete workers to stop.\n\t// This notification must be outside the wp.lock, since ch.ch\n\t// may be blocking and may consume a lot of time if many workers\n\t// are located on non-local CPUs.\n\ttmp := *scratch\n\tfor i := range tmp {\n\t\ttmp[i].ch <- nil\n\t\ttmp[i] = nil\n\t}\n}\n\nfunc (wp *workerPool) Serve(c net.Conn) bool {\n\tch := wp.getCh()\n\tif ch == nil {\n\t\treturn false\n\t}\n\tch.ch <- c\n\treturn true\n}\n\nvar workerChanCap = func() int {\n\t// Use blocking workerChan if GOMAXPROCS=1.\n\t// This immediately switches Serve to WorkerFunc, which results\n\t// in higher performance (under go1.5 at least).\n\tif runtime.GOMAXPROCS(0) == 1 {\n\t\treturn 0\n\t}\n\n\t// Use non-blocking workerChan if GOMAXPROCS>1,\n\t// since otherwise the Serve caller (Acceptor) may lag accepting\n\t// new connections if WorkerFunc is CPU-bound.\n\treturn 1\n}()\n\nfunc (wp *workerPool) getCh() *workerChan {\n\tvar ch *workerChan\n\tcreateWorker := false\n\n\twp.lock.Lock()\n\tready := wp.ready\n\tn := len(ready) - 1\n\tif n < 0 {\n\t\tif wp.workersCount < wp.MaxWorkersCount {\n\t\t\tcreateWorker = true\n\t\t\twp.workersCount++\n\t\t}\n\t} else {\n\t\tch = ready[n]\n\t\tready[n] = nil\n\t\twp.ready = ready[:n]\n\t}\n\twp.lock.Unlock()\n\n\tif ch == nil {\n\t\tif !createWorker {\n\t\t\treturn nil\n\t\t}\n\t\tvch := wp.workerChanPool.Get()\n\t\tch = vch.(*workerChan)\n\t\tgo func() {\n\t\t\twp.workerFunc(ch)\n\t\t\twp.workerChanPool.Put(vch)\n\t\t}()\n\t}\n\treturn ch\n}\n\nfunc (wp *workerPool) release(ch *workerChan) bool {\n\tch.lastUseTime = time.Now()\n\twp.lock.Lock()\n\tif wp.mustStop {\n\t\twp.lock.Unlock()\n\t\treturn false\n\t}\n\twp.ready = append(wp.ready, ch)\n\twp.lock.Unlock()\n\treturn true\n}\n\nfunc (wp *workerPool) workerFunc(ch *workerChan) {\n\tvar c net.Conn\n\n\tvar err error\n\tfor c = range ch.ch {\n\t\tif c == nil {\n\t\t\tbreak\n\t\t}\n\n\t\tif err = wp.WorkerFunc(c); err != nil && err != errHijacked {\n\t\t\terrStr := err.Error()\n\t\t\tif wp.LogAllErrors || !(strings.Contains(errStr, \"broken pipe\") ||\n\t\t\t\tstrings.Contains(errStr, \"reset by peer\") ||\n\t\t\t\tstrings.Contains(errStr, \"request headers: small read buffer\") ||\n\t\t\t\tstrings.Contains(errStr, \"unexpected EOF\") ||\n\t\t\t\tstrings.Contains(errStr, \"i/o timeout\")) {\n\t\t\t\twp.Logger.Printf(\"error when serving connection %q<->%q: %s\", c.LocalAddr(), c.RemoteAddr(), err)\n\t\t\t}\n\t\t}\n\t\tif err == errHijacked {\n\t\t\twp.connState(c, StateHijacked)\n\t\t} else {\n\t\t\t_ = c.Close()\n\t\t\twp.connState(c, StateClosed)\n\t\t}\n\t\tc = nil\n\n\t\tif !wp.release(ch) {\n\t\t\tbreak\n\t\t}\n\t}\n\n\twp.lock.Lock()\n\twp.workersCount--\n\twp.lock.Unlock()\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/AUTHORS",
    "content": "# This source code refers to The Go Authors for copyright purposes.\n# The master list of authors is in the main Go distribution,\n# visible at http://tip.golang.org/AUTHORS.\n"
  },
  {
    "path": "vendor/golang.org/x/net/CONTRIBUTORS",
    "content": "# This source code was written by the Go contributors.\n# The master list of contributors is in the main Go distribution,\n# visible at http://tip.golang.org/CONTRIBUTORS.\n"
  },
  {
    "path": "vendor/golang.org/x/net/LICENSE",
    "content": "Copyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n   * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n   * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n   * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "vendor/golang.org/x/net/PATENTS",
    "content": "Additional IP Rights Grant (Patents)\n\n\"This implementation\" means the copyrightable works distributed by\nGoogle as part of the Go project.\n\nGoogle hereby grants to You a perpetual, worldwide, non-exclusive,\nno-charge, royalty-free, irrevocable (except as stated in this section)\npatent license to make, have made, use, offer to sell, sell, import,\ntransfer and otherwise run, modify and propagate the contents of this\nimplementation of Go, where such license applies only to those patent\nclaims, both currently owned or controlled by Google and acquired in\nthe future, licensable by Google that are necessarily infringed by this\nimplementation of Go.  This grant does not include claims that would be\ninfringed only as a consequence of further modification of this\nimplementation.  If you or your agent or exclusive licensee institute or\norder or agree to the institution of patent litigation against any\nentity (including a cross-claim or counterclaim in a lawsuit) alleging\nthat this implementation of Go or any code incorporated within this\nimplementation of Go constitutes direct or contributory patent\ninfringement, or inducement of patent infringement, then any patent\nrights granted to you under this License for this implementation of Go\nshall terminate as of the date such litigation is filed.\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/atom/atom.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package atom provides integer codes (also known as atoms) for a fixed set of\n// frequently occurring HTML strings: tag names and attribute keys such as \"p\"\n// and \"id\".\n//\n// Sharing an atom's name between all elements with the same tag can result in\n// fewer string allocations when tokenizing and parsing HTML. Integer\n// comparisons are also generally faster than string comparisons.\n//\n// The value of an atom's particular code is not guaranteed to stay the same\n// between versions of this package. Neither is any ordering guaranteed:\n// whether atom.H1 < atom.H2 may also change. The codes are not guaranteed to\n// be dense. The only guarantees are that e.g. looking up \"div\" will yield\n// atom.Div, calling atom.Div.String will return \"div\", and atom.Div != 0.\npackage atom // import \"golang.org/x/net/html/atom\"\n\n// Atom is an integer code for a string. The zero value maps to \"\".\ntype Atom uint32\n\n// String returns the atom's name.\nfunc (a Atom) String() string {\n\tstart := uint32(a >> 8)\n\tn := uint32(a & 0xff)\n\tif start+n > uint32(len(atomText)) {\n\t\treturn \"\"\n\t}\n\treturn atomText[start : start+n]\n}\n\nfunc (a Atom) string() string {\n\treturn atomText[a>>8 : a>>8+a&0xff]\n}\n\n// fnv computes the FNV hash with an arbitrary starting value h.\nfunc fnv(h uint32, s []byte) uint32 {\n\tfor i := range s {\n\t\th ^= uint32(s[i])\n\t\th *= 16777619\n\t}\n\treturn h\n}\n\nfunc match(s string, t []byte) bool {\n\tfor i, c := range t {\n\t\tif s[i] != c {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// Lookup returns the atom whose name is s. It returns zero if there is no\n// such atom. The lookup is case sensitive.\nfunc Lookup(s []byte) Atom {\n\tif len(s) == 0 || len(s) > maxAtomLen {\n\t\treturn 0\n\t}\n\th := fnv(hash0, s)\n\tif a := table[h&uint32(len(table)-1)]; int(a&0xff) == len(s) && match(a.string(), s) {\n\t\treturn a\n\t}\n\tif a := table[(h>>16)&uint32(len(table)-1)]; int(a&0xff) == len(s) && match(a.string(), s) {\n\t\treturn a\n\t}\n\treturn 0\n}\n\n// String returns a string whose contents are equal to s. In that sense, it is\n// equivalent to string(s) but may be more efficient.\nfunc String(s []byte) string {\n\tif a := Lookup(s); a != 0 {\n\t\treturn a.String()\n\t}\n\treturn string(s)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/atom/table.go",
    "content": "// Code generated by go generate gen.go; DO NOT EDIT.\n\n//go:generate go run gen.go\n\npackage atom\n\nconst (\n\tA                         Atom = 0x1\n\tAbbr                      Atom = 0x4\n\tAccept                    Atom = 0x1a06\n\tAcceptCharset             Atom = 0x1a0e\n\tAccesskey                 Atom = 0x2c09\n\tAcronym                   Atom = 0xaa07\n\tAction                    Atom = 0x27206\n\tAddress                   Atom = 0x6f307\n\tAlign                     Atom = 0xb105\n\tAllowfullscreen           Atom = 0x2080f\n\tAllowpaymentrequest       Atom = 0xc113\n\tAllowusermedia            Atom = 0xdd0e\n\tAlt                       Atom = 0xf303\n\tAnnotation                Atom = 0x1c90a\n\tAnnotationXml             Atom = 0x1c90e\n\tApplet                    Atom = 0x31906\n\tArea                      Atom = 0x35604\n\tArticle                   Atom = 0x3fc07\n\tAs                        Atom = 0x3c02\n\tAside                     Atom = 0x10705\n\tAsync                     Atom = 0xff05\n\tAudio                     Atom = 0x11505\n\tAutocomplete              Atom = 0x2780c\n\tAutofocus                 Atom = 0x12109\n\tAutoplay                  Atom = 0x13c08\n\tB                         Atom = 0x101\n\tBase                      Atom = 0x3b04\n\tBasefont                  Atom = 0x3b08\n\tBdi                       Atom = 0xba03\n\tBdo                       Atom = 0x14b03\n\tBgsound                   Atom = 0x15e07\n\tBig                       Atom = 0x17003\n\tBlink                     Atom = 0x17305\n\tBlockquote                Atom = 0x1870a\n\tBody                      Atom = 0x2804\n\tBr                        Atom = 0x202\n\tButton                    Atom = 0x19106\n\tCanvas                    Atom = 0x10306\n\tCaption                   Atom = 0x23107\n\tCenter                    Atom = 0x22006\n\tChallenge                 Atom = 0x29b09\n\tCharset                   Atom = 0x2107\n\tChecked                   Atom = 0x47907\n\tCite                      Atom = 0x19c04\n\tClass                     Atom = 0x56405\n\tCode                      Atom = 0x5c504\n\tCol                       Atom = 0x1ab03\n\tColgroup                  Atom = 0x1ab08\n\tColor                     Atom = 0x1bf05\n\tCols                      Atom = 0x1c404\n\tColspan                   Atom = 0x1c407\n\tCommand                   Atom = 0x1d707\n\tContent                   Atom = 0x58b07\n\tContenteditable           Atom = 0x58b0f\n\tContextmenu               Atom = 0x3800b\n\tControls                  Atom = 0x1de08\n\tCoords                    Atom = 0x1ea06\n\tCrossorigin               Atom = 0x1fb0b\n\tData                      Atom = 0x4a504\n\tDatalist                  Atom = 0x4a508\n\tDatetime                  Atom = 0x2b808\n\tDd                        Atom = 0x2d702\n\tDefault                   Atom = 0x10a07\n\tDefer                     Atom = 0x5c705\n\tDel                       Atom = 0x45203\n\tDesc                      Atom = 0x56104\n\tDetails                   Atom = 0x7207\n\tDfn                       Atom = 0x8703\n\tDialog                    Atom = 0xbb06\n\tDir                       Atom = 0x9303\n\tDirname                   Atom = 0x9307\n\tDisabled                  Atom = 0x16408\n\tDiv                       Atom = 0x16b03\n\tDl                        Atom = 0x5e602\n\tDownload                  Atom = 0x46308\n\tDraggable                 Atom = 0x17a09\n\tDropzone                  Atom = 0x40508\n\tDt                        Atom = 0x64b02\n\tEm                        Atom = 0x6e02\n\tEmbed                     Atom = 0x6e05\n\tEnctype                   Atom = 0x28d07\n\tFace                      Atom = 0x21e04\n\tFieldset                  Atom = 0x22608\n\tFigcaption                Atom = 0x22e0a\n\tFigure                    Atom = 0x24806\n\tFont                      Atom = 0x3f04\n\tFooter                    Atom = 0xf606\n\tFor                       Atom = 0x25403\n\tForeignObject             Atom = 0x2540d\n\tForeignobject             Atom = 0x2610d\n\tForm                      Atom = 0x26e04\n\tFormaction                Atom = 0x26e0a\n\tFormenctype               Atom = 0x2890b\n\tFormmethod                Atom = 0x2a40a\n\tFormnovalidate            Atom = 0x2ae0e\n\tFormtarget                Atom = 0x2c00a\n\tFrame                     Atom = 0x8b05\n\tFrameset                  Atom = 0x8b08\n\tH1                        Atom = 0x15c02\n\tH2                        Atom = 0x2de02\n\tH3                        Atom = 0x30d02\n\tH4                        Atom = 0x34502\n\tH5                        Atom = 0x34f02\n\tH6                        Atom = 0x64d02\n\tHead                      Atom = 0x33104\n\tHeader                    Atom = 0x33106\n\tHeaders                   Atom = 0x33107\n\tHeight                    Atom = 0x5206\n\tHgroup                    Atom = 0x2ca06\n\tHidden                    Atom = 0x2d506\n\tHigh                      Atom = 0x2db04\n\tHr                        Atom = 0x15702\n\tHref                      Atom = 0x2e004\n\tHreflang                  Atom = 0x2e008\n\tHtml                      Atom = 0x5604\n\tHttpEquiv                 Atom = 0x2e80a\n\tI                         Atom = 0x601\n\tIcon                      Atom = 0x58a04\n\tId                        Atom = 0x10902\n\tIframe                    Atom = 0x2fc06\n\tImage                     Atom = 0x30205\n\tImg                       Atom = 0x30703\n\tInput                     Atom = 0x44b05\n\tInputmode                 Atom = 0x44b09\n\tIns                       Atom = 0x20403\n\tIntegrity                 Atom = 0x23f09\n\tIs                        Atom = 0x16502\n\tIsindex                   Atom = 0x30f07\n\tIsmap                     Atom = 0x31605\n\tItemid                    Atom = 0x38b06\n\tItemprop                  Atom = 0x19d08\n\tItemref                   Atom = 0x3cd07\n\tItemscope                 Atom = 0x67109\n\tItemtype                  Atom = 0x31f08\n\tKbd                       Atom = 0xb903\n\tKeygen                    Atom = 0x3206\n\tKeytype                   Atom = 0xd607\n\tKind                      Atom = 0x17704\n\tLabel                     Atom = 0x5905\n\tLang                      Atom = 0x2e404\n\tLegend                    Atom = 0x18106\n\tLi                        Atom = 0xb202\n\tLink                      Atom = 0x17404\n\tList                      Atom = 0x4a904\n\tListing                   Atom = 0x4a907\n\tLoop                      Atom = 0x5d04\n\tLow                       Atom = 0xc303\n\tMain                      Atom = 0x1004\n\tMalignmark                Atom = 0xb00a\n\tManifest                  Atom = 0x6d708\n\tMap                       Atom = 0x31803\n\tMark                      Atom = 0xb604\n\tMarquee                   Atom = 0x32707\n\tMath                      Atom = 0x32e04\n\tMax                       Atom = 0x33d03\n\tMaxlength                 Atom = 0x33d09\n\tMedia                     Atom = 0xe605\n\tMediagroup                Atom = 0xe60a\n\tMenu                      Atom = 0x38704\n\tMenuitem                  Atom = 0x38708\n\tMeta                      Atom = 0x4b804\n\tMeter                     Atom = 0x9805\n\tMethod                    Atom = 0x2a806\n\tMglyph                    Atom = 0x30806\n\tMi                        Atom = 0x34702\n\tMin                       Atom = 0x34703\n\tMinlength                 Atom = 0x34709\n\tMn                        Atom = 0x2b102\n\tMo                        Atom = 0xa402\n\tMs                        Atom = 0x67402\n\tMtext                     Atom = 0x35105\n\tMultiple                  Atom = 0x35f08\n\tMuted                     Atom = 0x36705\n\tName                      Atom = 0x9604\n\tNav                       Atom = 0x1303\n\tNobr                      Atom = 0x3704\n\tNoembed                   Atom = 0x6c07\n\tNoframes                  Atom = 0x8908\n\tNomodule                  Atom = 0xa208\n\tNonce                     Atom = 0x1a605\n\tNoscript                  Atom = 0x21608\n\tNovalidate                Atom = 0x2b20a\n\tObject                    Atom = 0x26806\n\tOl                        Atom = 0x13702\n\tOnabort                   Atom = 0x19507\n\tOnafterprint              Atom = 0x2360c\n\tOnautocomplete            Atom = 0x2760e\n\tOnautocompleteerror       Atom = 0x27613\n\tOnauxclick                Atom = 0x61f0a\n\tOnbeforeprint             Atom = 0x69e0d\n\tOnbeforeunload            Atom = 0x6e70e\n\tOnblur                    Atom = 0x56d06\n\tOncancel                  Atom = 0x11908\n\tOncanplay                 Atom = 0x14d09\n\tOncanplaythrough          Atom = 0x14d10\n\tOnchange                  Atom = 0x41b08\n\tOnclick                   Atom = 0x2f507\n\tOnclose                   Atom = 0x36c07\n\tOncontextmenu             Atom = 0x37e0d\n\tOncopy                    Atom = 0x39106\n\tOncuechange               Atom = 0x3970b\n\tOncut                     Atom = 0x3a205\n\tOndblclick                Atom = 0x3a70a\n\tOndrag                    Atom = 0x3b106\n\tOndragend                 Atom = 0x3b109\n\tOndragenter               Atom = 0x3ba0b\n\tOndragexit                Atom = 0x3c50a\n\tOndragleave               Atom = 0x3df0b\n\tOndragover                Atom = 0x3ea0a\n\tOndragstart               Atom = 0x3f40b\n\tOndrop                    Atom = 0x40306\n\tOndurationchange          Atom = 0x41310\n\tOnemptied                 Atom = 0x40a09\n\tOnended                   Atom = 0x42307\n\tOnerror                   Atom = 0x42a07\n\tOnfocus                   Atom = 0x43107\n\tOnhashchange              Atom = 0x43d0c\n\tOninput                   Atom = 0x44907\n\tOninvalid                 Atom = 0x45509\n\tOnkeydown                 Atom = 0x45e09\n\tOnkeypress                Atom = 0x46b0a\n\tOnkeyup                   Atom = 0x48007\n\tOnlanguagechange          Atom = 0x48d10\n\tOnload                    Atom = 0x49d06\n\tOnloadeddata              Atom = 0x49d0c\n\tOnloadedmetadata          Atom = 0x4b010\n\tOnloadend                 Atom = 0x4c609\n\tOnloadstart               Atom = 0x4cf0b\n\tOnmessage                 Atom = 0x4da09\n\tOnmessageerror            Atom = 0x4da0e\n\tOnmousedown               Atom = 0x4e80b\n\tOnmouseenter              Atom = 0x4f30c\n\tOnmouseleave              Atom = 0x4ff0c\n\tOnmousemove               Atom = 0x50b0b\n\tOnmouseout                Atom = 0x5160a\n\tOnmouseover               Atom = 0x5230b\n\tOnmouseup                 Atom = 0x52e09\n\tOnmousewheel              Atom = 0x53c0c\n\tOnoffline                 Atom = 0x54809\n\tOnonline                  Atom = 0x55108\n\tOnpagehide                Atom = 0x5590a\n\tOnpageshow                Atom = 0x5730a\n\tOnpaste                   Atom = 0x57f07\n\tOnpause                   Atom = 0x59a07\n\tOnplay                    Atom = 0x5a406\n\tOnplaying                 Atom = 0x5a409\n\tOnpopstate                Atom = 0x5ad0a\n\tOnprogress                Atom = 0x5b70a\n\tOnratechange              Atom = 0x5cc0c\n\tOnrejectionhandled        Atom = 0x5d812\n\tOnreset                   Atom = 0x5ea07\n\tOnresize                  Atom = 0x5f108\n\tOnscroll                  Atom = 0x60008\n\tOnsecuritypolicyviolation Atom = 0x60819\n\tOnseeked                  Atom = 0x62908\n\tOnseeking                 Atom = 0x63109\n\tOnselect                  Atom = 0x63a08\n\tOnshow                    Atom = 0x64406\n\tOnsort                    Atom = 0x64f06\n\tOnstalled                 Atom = 0x65909\n\tOnstorage                 Atom = 0x66209\n\tOnsubmit                  Atom = 0x66b08\n\tOnsuspend                 Atom = 0x67b09\n\tOntimeupdate              Atom = 0x400c\n\tOntoggle                  Atom = 0x68408\n\tOnunhandledrejection      Atom = 0x68c14\n\tOnunload                  Atom = 0x6ab08\n\tOnvolumechange            Atom = 0x6b30e\n\tOnwaiting                 Atom = 0x6c109\n\tOnwheel                   Atom = 0x6ca07\n\tOpen                      Atom = 0x1a304\n\tOptgroup                  Atom = 0x5f08\n\tOptimum                   Atom = 0x6d107\n\tOption                    Atom = 0x6e306\n\tOutput                    Atom = 0x51d06\n\tP                         Atom = 0xc01\n\tParam                     Atom = 0xc05\n\tPattern                   Atom = 0x6607\n\tPicture                   Atom = 0x7b07\n\tPing                      Atom = 0xef04\n\tPlaceholder               Atom = 0x1310b\n\tPlaintext                 Atom = 0x1b209\n\tPlaysinline               Atom = 0x1400b\n\tPoster                    Atom = 0x2cf06\n\tPre                       Atom = 0x47003\n\tPreload                   Atom = 0x48607\n\tProgress                  Atom = 0x5b908\n\tPrompt                    Atom = 0x53606\n\tPublic                    Atom = 0x58606\n\tQ                         Atom = 0xcf01\n\tRadiogroup                Atom = 0x30a\n\tRb                        Atom = 0x3a02\n\tReadonly                  Atom = 0x35708\n\tReferrerpolicy            Atom = 0x3d10e\n\tRel                       Atom = 0x48703\n\tRequired                  Atom = 0x24c08\n\tReversed                  Atom = 0x8008\n\tRows                      Atom = 0x9c04\n\tRowspan                   Atom = 0x9c07\n\tRp                        Atom = 0x23c02\n\tRt                        Atom = 0x19a02\n\tRtc                       Atom = 0x19a03\n\tRuby                      Atom = 0xfb04\n\tS                         Atom = 0x2501\n\tSamp                      Atom = 0x7804\n\tSandbox                   Atom = 0x12907\n\tScope                     Atom = 0x67505\n\tScoped                    Atom = 0x67506\n\tScript                    Atom = 0x21806\n\tSeamless                  Atom = 0x37108\n\tSection                   Atom = 0x56807\n\tSelect                    Atom = 0x63c06\n\tSelected                  Atom = 0x63c08\n\tShape                     Atom = 0x1e505\n\tSize                      Atom = 0x5f504\n\tSizes                     Atom = 0x5f505\n\tSlot                      Atom = 0x1ef04\n\tSmall                     Atom = 0x20605\n\tSortable                  Atom = 0x65108\n\tSorted                    Atom = 0x33706\n\tSource                    Atom = 0x37806\n\tSpacer                    Atom = 0x43706\n\tSpan                      Atom = 0x9f04\n\tSpellcheck                Atom = 0x4740a\n\tSrc                       Atom = 0x5c003\n\tSrcdoc                    Atom = 0x5c006\n\tSrclang                   Atom = 0x5f907\n\tSrcset                    Atom = 0x6f906\n\tStart                     Atom = 0x3fa05\n\tStep                      Atom = 0x58304\n\tStrike                    Atom = 0xd206\n\tStrong                    Atom = 0x6dd06\n\tStyle                     Atom = 0x6ff05\n\tSub                       Atom = 0x66d03\n\tSummary                   Atom = 0x70407\n\tSup                       Atom = 0x70b03\n\tSvg                       Atom = 0x70e03\n\tSystem                    Atom = 0x71106\n\tTabindex                  Atom = 0x4be08\n\tTable                     Atom = 0x59505\n\tTarget                    Atom = 0x2c406\n\tTbody                     Atom = 0x2705\n\tTd                        Atom = 0x9202\n\tTemplate                  Atom = 0x71408\n\tTextarea                  Atom = 0x35208\n\tTfoot                     Atom = 0xf505\n\tTh                        Atom = 0x15602\n\tThead                     Atom = 0x33005\n\tTime                      Atom = 0x4204\n\tTitle                     Atom = 0x11005\n\tTr                        Atom = 0xcc02\n\tTrack                     Atom = 0x1ba05\n\tTranslate                 Atom = 0x1f209\n\tTt                        Atom = 0x6802\n\tType                      Atom = 0xd904\n\tTypemustmatch             Atom = 0x2900d\n\tU                         Atom = 0xb01\n\tUl                        Atom = 0xa702\n\tUpdateviacache            Atom = 0x460e\n\tUsemap                    Atom = 0x59e06\n\tValue                     Atom = 0x1505\n\tVar                       Atom = 0x16d03\n\tVideo                     Atom = 0x2f105\n\tWbr                       Atom = 0x57c03\n\tWidth                     Atom = 0x64905\n\tWorkertype                Atom = 0x71c0a\n\tWrap                      Atom = 0x72604\n\tXmp                       Atom = 0x12f03\n)\n\nconst hash0 = 0x81cdf10e\n\nconst maxAtomLen = 25\n\nvar table = [1 << 9]Atom{\n\t0x1:   0xe60a,  // mediagroup\n\t0x2:   0x2e404, // lang\n\t0x4:   0x2c09,  // accesskey\n\t0x5:   0x8b08,  // frameset\n\t0x7:   0x63a08, // onselect\n\t0x8:   0x71106, // system\n\t0xa:   0x64905, // width\n\t0xc:   0x2890b, // formenctype\n\t0xd:   0x13702, // ol\n\t0xe:   0x3970b, // oncuechange\n\t0x10:  0x14b03, // bdo\n\t0x11:  0x11505, // audio\n\t0x12:  0x17a09, // draggable\n\t0x14:  0x2f105, // video\n\t0x15:  0x2b102, // mn\n\t0x16:  0x38704, // menu\n\t0x17:  0x2cf06, // poster\n\t0x19:  0xf606,  // footer\n\t0x1a:  0x2a806, // method\n\t0x1b:  0x2b808, // datetime\n\t0x1c:  0x19507, // onabort\n\t0x1d:  0x460e,  // updateviacache\n\t0x1e:  0xff05,  // async\n\t0x1f:  0x49d06, // onload\n\t0x21:  0x11908, // oncancel\n\t0x22:  0x62908, // onseeked\n\t0x23:  0x30205, // image\n\t0x24:  0x5d812, // onrejectionhandled\n\t0x26:  0x17404, // link\n\t0x27:  0x51d06, // output\n\t0x28:  0x33104, // head\n\t0x29:  0x4ff0c, // onmouseleave\n\t0x2a:  0x57f07, // onpaste\n\t0x2b:  0x5a409, // onplaying\n\t0x2c:  0x1c407, // colspan\n\t0x2f:  0x1bf05, // color\n\t0x30:  0x5f504, // size\n\t0x31:  0x2e80a, // http-equiv\n\t0x33:  0x601,   // i\n\t0x34:  0x5590a, // onpagehide\n\t0x35:  0x68c14, // onunhandledrejection\n\t0x37:  0x42a07, // onerror\n\t0x3a:  0x3b08,  // basefont\n\t0x3f:  0x1303,  // nav\n\t0x40:  0x17704, // kind\n\t0x41:  0x35708, // readonly\n\t0x42:  0x30806, // mglyph\n\t0x44:  0xb202,  // li\n\t0x46:  0x2d506, // hidden\n\t0x47:  0x70e03, // svg\n\t0x48:  0x58304, // step\n\t0x49:  0x23f09, // integrity\n\t0x4a:  0x58606, // public\n\t0x4c:  0x1ab03, // col\n\t0x4d:  0x1870a, // blockquote\n\t0x4e:  0x34f02, // h5\n\t0x50:  0x5b908, // progress\n\t0x51:  0x5f505, // sizes\n\t0x52:  0x34502, // h4\n\t0x56:  0x33005, // thead\n\t0x57:  0xd607,  // keytype\n\t0x58:  0x5b70a, // onprogress\n\t0x59:  0x44b09, // inputmode\n\t0x5a:  0x3b109, // ondragend\n\t0x5d:  0x3a205, // oncut\n\t0x5e:  0x43706, // spacer\n\t0x5f:  0x1ab08, // colgroup\n\t0x62:  0x16502, // is\n\t0x65:  0x3c02,  // as\n\t0x66:  0x54809, // onoffline\n\t0x67:  0x33706, // sorted\n\t0x69:  0x48d10, // onlanguagechange\n\t0x6c:  0x43d0c, // onhashchange\n\t0x6d:  0x9604,  // name\n\t0x6e:  0xf505,  // tfoot\n\t0x6f:  0x56104, // desc\n\t0x70:  0x33d03, // max\n\t0x72:  0x1ea06, // coords\n\t0x73:  0x30d02, // h3\n\t0x74:  0x6e70e, // onbeforeunload\n\t0x75:  0x9c04,  // rows\n\t0x76:  0x63c06, // select\n\t0x77:  0x9805,  // meter\n\t0x78:  0x38b06, // itemid\n\t0x79:  0x53c0c, // onmousewheel\n\t0x7a:  0x5c006, // srcdoc\n\t0x7d:  0x1ba05, // track\n\t0x7f:  0x31f08, // itemtype\n\t0x82:  0xa402,  // mo\n\t0x83:  0x41b08, // onchange\n\t0x84:  0x33107, // headers\n\t0x85:  0x5cc0c, // onratechange\n\t0x86:  0x60819, // onsecuritypolicyviolation\n\t0x88:  0x4a508, // datalist\n\t0x89:  0x4e80b, // onmousedown\n\t0x8a:  0x1ef04, // slot\n\t0x8b:  0x4b010, // onloadedmetadata\n\t0x8c:  0x1a06,  // accept\n\t0x8d:  0x26806, // object\n\t0x91:  0x6b30e, // onvolumechange\n\t0x92:  0x2107,  // charset\n\t0x93:  0x27613, // onautocompleteerror\n\t0x94:  0xc113,  // allowpaymentrequest\n\t0x95:  0x2804,  // body\n\t0x96:  0x10a07, // default\n\t0x97:  0x63c08, // selected\n\t0x98:  0x21e04, // face\n\t0x99:  0x1e505, // shape\n\t0x9b:  0x68408, // ontoggle\n\t0x9e:  0x64b02, // dt\n\t0x9f:  0xb604,  // mark\n\t0xa1:  0xb01,   // u\n\t0xa4:  0x6ab08, // onunload\n\t0xa5:  0x5d04,  // loop\n\t0xa6:  0x16408, // disabled\n\t0xaa:  0x42307, // onended\n\t0xab:  0xb00a,  // malignmark\n\t0xad:  0x67b09, // onsuspend\n\t0xae:  0x35105, // mtext\n\t0xaf:  0x64f06, // onsort\n\t0xb0:  0x19d08, // itemprop\n\t0xb3:  0x67109, // itemscope\n\t0xb4:  0x17305, // blink\n\t0xb6:  0x3b106, // ondrag\n\t0xb7:  0xa702,  // ul\n\t0xb8:  0x26e04, // form\n\t0xb9:  0x12907, // sandbox\n\t0xba:  0x8b05,  // frame\n\t0xbb:  0x1505,  // value\n\t0xbc:  0x66209, // onstorage\n\t0xbf:  0xaa07,  // acronym\n\t0xc0:  0x19a02, // rt\n\t0xc2:  0x202,   // br\n\t0xc3:  0x22608, // fieldset\n\t0xc4:  0x2900d, // typemustmatch\n\t0xc5:  0xa208,  // nomodule\n\t0xc6:  0x6c07,  // noembed\n\t0xc7:  0x69e0d, // onbeforeprint\n\t0xc8:  0x19106, // button\n\t0xc9:  0x2f507, // onclick\n\t0xca:  0x70407, // summary\n\t0xcd:  0xfb04,  // ruby\n\t0xce:  0x56405, // class\n\t0xcf:  0x3f40b, // ondragstart\n\t0xd0:  0x23107, // caption\n\t0xd4:  0xdd0e,  // allowusermedia\n\t0xd5:  0x4cf0b, // onloadstart\n\t0xd9:  0x16b03, // div\n\t0xda:  0x4a904, // list\n\t0xdb:  0x32e04, // math\n\t0xdc:  0x44b05, // input\n\t0xdf:  0x3ea0a, // ondragover\n\t0xe0:  0x2de02, // h2\n\t0xe2:  0x1b209, // plaintext\n\t0xe4:  0x4f30c, // onmouseenter\n\t0xe7:  0x47907, // checked\n\t0xe8:  0x47003, // pre\n\t0xea:  0x35f08, // multiple\n\t0xeb:  0xba03,  // bdi\n\t0xec:  0x33d09, // maxlength\n\t0xed:  0xcf01,  // q\n\t0xee:  0x61f0a, // onauxclick\n\t0xf0:  0x57c03, // wbr\n\t0xf2:  0x3b04,  // base\n\t0xf3:  0x6e306, // option\n\t0xf5:  0x41310, // ondurationchange\n\t0xf7:  0x8908,  // noframes\n\t0xf9:  0x40508, // dropzone\n\t0xfb:  0x67505, // scope\n\t0xfc:  0x8008,  // reversed\n\t0xfd:  0x3ba0b, // ondragenter\n\t0xfe:  0x3fa05, // start\n\t0xff:  0x12f03, // xmp\n\t0x100: 0x5f907, // srclang\n\t0x101: 0x30703, // img\n\t0x104: 0x101,   // b\n\t0x105: 0x25403, // for\n\t0x106: 0x10705, // aside\n\t0x107: 0x44907, // oninput\n\t0x108: 0x35604, // area\n\t0x109: 0x2a40a, // formmethod\n\t0x10a: 0x72604, // wrap\n\t0x10c: 0x23c02, // rp\n\t0x10d: 0x46b0a, // onkeypress\n\t0x10e: 0x6802,  // tt\n\t0x110: 0x34702, // mi\n\t0x111: 0x36705, // muted\n\t0x112: 0xf303,  // alt\n\t0x113: 0x5c504, // code\n\t0x114: 0x6e02,  // em\n\t0x115: 0x3c50a, // ondragexit\n\t0x117: 0x9f04,  // span\n\t0x119: 0x6d708, // manifest\n\t0x11a: 0x38708, // menuitem\n\t0x11b: 0x58b07, // content\n\t0x11d: 0x6c109, // onwaiting\n\t0x11f: 0x4c609, // onloadend\n\t0x121: 0x37e0d, // oncontextmenu\n\t0x123: 0x56d06, // onblur\n\t0x124: 0x3fc07, // article\n\t0x125: 0x9303,  // dir\n\t0x126: 0xef04,  // ping\n\t0x127: 0x24c08, // required\n\t0x128: 0x45509, // oninvalid\n\t0x129: 0xb105,  // align\n\t0x12b: 0x58a04, // icon\n\t0x12c: 0x64d02, // h6\n\t0x12d: 0x1c404, // cols\n\t0x12e: 0x22e0a, // figcaption\n\t0x12f: 0x45e09, // onkeydown\n\t0x130: 0x66b08, // onsubmit\n\t0x131: 0x14d09, // oncanplay\n\t0x132: 0x70b03, // sup\n\t0x133: 0xc01,   // p\n\t0x135: 0x40a09, // onemptied\n\t0x136: 0x39106, // oncopy\n\t0x137: 0x19c04, // cite\n\t0x138: 0x3a70a, // ondblclick\n\t0x13a: 0x50b0b, // onmousemove\n\t0x13c: 0x66d03, // sub\n\t0x13d: 0x48703, // rel\n\t0x13e: 0x5f08,  // optgroup\n\t0x142: 0x9c07,  // rowspan\n\t0x143: 0x37806, // source\n\t0x144: 0x21608, // noscript\n\t0x145: 0x1a304, // open\n\t0x146: 0x20403, // ins\n\t0x147: 0x2540d, // foreignObject\n\t0x148: 0x5ad0a, // onpopstate\n\t0x14a: 0x28d07, // enctype\n\t0x14b: 0x2760e, // onautocomplete\n\t0x14c: 0x35208, // textarea\n\t0x14e: 0x2780c, // autocomplete\n\t0x14f: 0x15702, // hr\n\t0x150: 0x1de08, // controls\n\t0x151: 0x10902, // id\n\t0x153: 0x2360c, // onafterprint\n\t0x155: 0x2610d, // foreignobject\n\t0x156: 0x32707, // marquee\n\t0x157: 0x59a07, // onpause\n\t0x158: 0x5e602, // dl\n\t0x159: 0x5206,  // height\n\t0x15a: 0x34703, // min\n\t0x15b: 0x9307,  // dirname\n\t0x15c: 0x1f209, // translate\n\t0x15d: 0x5604,  // html\n\t0x15e: 0x34709, // minlength\n\t0x15f: 0x48607, // preload\n\t0x160: 0x71408, // template\n\t0x161: 0x3df0b, // ondragleave\n\t0x162: 0x3a02,  // rb\n\t0x164: 0x5c003, // src\n\t0x165: 0x6dd06, // strong\n\t0x167: 0x7804,  // samp\n\t0x168: 0x6f307, // address\n\t0x169: 0x55108, // ononline\n\t0x16b: 0x1310b, // placeholder\n\t0x16c: 0x2c406, // target\n\t0x16d: 0x20605, // small\n\t0x16e: 0x6ca07, // onwheel\n\t0x16f: 0x1c90a, // annotation\n\t0x170: 0x4740a, // spellcheck\n\t0x171: 0x7207,  // details\n\t0x172: 0x10306, // canvas\n\t0x173: 0x12109, // autofocus\n\t0x174: 0xc05,   // param\n\t0x176: 0x46308, // download\n\t0x177: 0x45203, // del\n\t0x178: 0x36c07, // onclose\n\t0x179: 0xb903,  // kbd\n\t0x17a: 0x31906, // applet\n\t0x17b: 0x2e004, // href\n\t0x17c: 0x5f108, // onresize\n\t0x17e: 0x49d0c, // onloadeddata\n\t0x180: 0xcc02,  // tr\n\t0x181: 0x2c00a, // formtarget\n\t0x182: 0x11005, // title\n\t0x183: 0x6ff05, // style\n\t0x184: 0xd206,  // strike\n\t0x185: 0x59e06, // usemap\n\t0x186: 0x2fc06, // iframe\n\t0x187: 0x1004,  // main\n\t0x189: 0x7b07,  // picture\n\t0x18c: 0x31605, // ismap\n\t0x18e: 0x4a504, // data\n\t0x18f: 0x5905,  // label\n\t0x191: 0x3d10e, // referrerpolicy\n\t0x192: 0x15602, // th\n\t0x194: 0x53606, // prompt\n\t0x195: 0x56807, // section\n\t0x197: 0x6d107, // optimum\n\t0x198: 0x2db04, // high\n\t0x199: 0x15c02, // h1\n\t0x19a: 0x65909, // onstalled\n\t0x19b: 0x16d03, // var\n\t0x19c: 0x4204,  // time\n\t0x19e: 0x67402, // ms\n\t0x19f: 0x33106, // header\n\t0x1a0: 0x4da09, // onmessage\n\t0x1a1: 0x1a605, // nonce\n\t0x1a2: 0x26e0a, // formaction\n\t0x1a3: 0x22006, // center\n\t0x1a4: 0x3704,  // nobr\n\t0x1a5: 0x59505, // table\n\t0x1a6: 0x4a907, // listing\n\t0x1a7: 0x18106, // legend\n\t0x1a9: 0x29b09, // challenge\n\t0x1aa: 0x24806, // figure\n\t0x1ab: 0xe605,  // media\n\t0x1ae: 0xd904,  // type\n\t0x1af: 0x3f04,  // font\n\t0x1b0: 0x4da0e, // onmessageerror\n\t0x1b1: 0x37108, // seamless\n\t0x1b2: 0x8703,  // dfn\n\t0x1b3: 0x5c705, // defer\n\t0x1b4: 0xc303,  // low\n\t0x1b5: 0x19a03, // rtc\n\t0x1b6: 0x5230b, // onmouseover\n\t0x1b7: 0x2b20a, // novalidate\n\t0x1b8: 0x71c0a, // workertype\n\t0x1ba: 0x3cd07, // itemref\n\t0x1bd: 0x1,     // a\n\t0x1be: 0x31803, // map\n\t0x1bf: 0x400c,  // ontimeupdate\n\t0x1c0: 0x15e07, // bgsound\n\t0x1c1: 0x3206,  // keygen\n\t0x1c2: 0x2705,  // tbody\n\t0x1c5: 0x64406, // onshow\n\t0x1c7: 0x2501,  // s\n\t0x1c8: 0x6607,  // pattern\n\t0x1cc: 0x14d10, // oncanplaythrough\n\t0x1ce: 0x2d702, // dd\n\t0x1cf: 0x6f906, // srcset\n\t0x1d0: 0x17003, // big\n\t0x1d2: 0x65108, // sortable\n\t0x1d3: 0x48007, // onkeyup\n\t0x1d5: 0x5a406, // onplay\n\t0x1d7: 0x4b804, // meta\n\t0x1d8: 0x40306, // ondrop\n\t0x1da: 0x60008, // onscroll\n\t0x1db: 0x1fb0b, // crossorigin\n\t0x1dc: 0x5730a, // onpageshow\n\t0x1dd: 0x4,     // abbr\n\t0x1de: 0x9202,  // td\n\t0x1df: 0x58b0f, // contenteditable\n\t0x1e0: 0x27206, // action\n\t0x1e1: 0x1400b, // playsinline\n\t0x1e2: 0x43107, // onfocus\n\t0x1e3: 0x2e008, // hreflang\n\t0x1e5: 0x5160a, // onmouseout\n\t0x1e6: 0x5ea07, // onreset\n\t0x1e7: 0x13c08, // autoplay\n\t0x1e8: 0x63109, // onseeking\n\t0x1ea: 0x67506, // scoped\n\t0x1ec: 0x30a,   // radiogroup\n\t0x1ee: 0x3800b, // contextmenu\n\t0x1ef: 0x52e09, // onmouseup\n\t0x1f1: 0x2ca06, // hgroup\n\t0x1f2: 0x2080f, // allowfullscreen\n\t0x1f3: 0x4be08, // tabindex\n\t0x1f6: 0x30f07, // isindex\n\t0x1f7: 0x1a0e,  // accept-charset\n\t0x1f8: 0x2ae0e, // formnovalidate\n\t0x1fb: 0x1c90e, // annotation-xml\n\t0x1fc: 0x6e05,  // embed\n\t0x1fd: 0x21806, // script\n\t0x1fe: 0xbb06,  // dialog\n\t0x1ff: 0x1d707, // command\n}\n\nconst atomText = \"abbradiogrouparamainavalueaccept-charsetbodyaccesskeygenobrb\" +\n\t\"asefontimeupdateviacacheightmlabelooptgroupatternoembedetail\" +\n\t\"sampictureversedfnoframesetdirnameterowspanomoduleacronymali\" +\n\t\"gnmarkbdialogallowpaymentrequestrikeytypeallowusermediagroup\" +\n\t\"ingaltfooterubyasyncanvasidefaultitleaudioncancelautofocusan\" +\n\t\"dboxmplaceholderautoplaysinlinebdoncanplaythrough1bgsoundisa\" +\n\t\"bledivarbigblinkindraggablegendblockquotebuttonabortcitempro\" +\n\t\"penoncecolgrouplaintextrackcolorcolspannotation-xmlcommandco\" +\n\t\"ntrolshapecoordslotranslatecrossoriginsmallowfullscreenoscri\" +\n\t\"ptfacenterfieldsetfigcaptionafterprintegrityfigurequiredfore\" +\n\t\"ignObjectforeignobjectformactionautocompleteerrorformenctype\" +\n\t\"mustmatchallengeformmethodformnovalidatetimeformtargethgroup\" +\n\t\"osterhiddenhigh2hreflanghttp-equivideonclickiframeimageimgly\" +\n\t\"ph3isindexismappletitemtypemarqueematheadersortedmaxlength4m\" +\n\t\"inlength5mtextareadonlymultiplemutedoncloseamlessourceoncont\" +\n\t\"extmenuitemidoncopyoncuechangeoncutondblclickondragendondrag\" +\n\t\"enterondragexitemreferrerpolicyondragleaveondragoverondragst\" +\n\t\"articleondropzonemptiedondurationchangeonendedonerroronfocus\" +\n\t\"paceronhashchangeoninputmodeloninvalidonkeydownloadonkeypres\" +\n\t\"spellcheckedonkeyupreloadonlanguagechangeonloadeddatalisting\" +\n\t\"onloadedmetadatabindexonloadendonloadstartonmessageerroronmo\" +\n\t\"usedownonmouseenteronmouseleaveonmousemoveonmouseoutputonmou\" +\n\t\"seoveronmouseupromptonmousewheelonofflineononlineonpagehides\" +\n\t\"classectionbluronpageshowbronpastepublicontenteditableonpaus\" +\n\t\"emaponplayingonpopstateonprogressrcdocodeferonratechangeonre\" +\n\t\"jectionhandledonresetonresizesrclangonscrollonsecuritypolicy\" +\n\t\"violationauxclickonseekedonseekingonselectedonshowidth6onsor\" +\n\t\"tableonstalledonstorageonsubmitemscopedonsuspendontoggleonun\" +\n\t\"handledrejectionbeforeprintonunloadonvolumechangeonwaitingon\" +\n\t\"wheeloptimumanifestrongoptionbeforeunloaddressrcsetstylesumm\" +\n\t\"arysupsvgsystemplateworkertypewrap\"\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/charset/charset.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package charset provides common text encodings for HTML documents.\n//\n// The mapping from encoding labels to encodings is defined at\n// https://encoding.spec.whatwg.org/.\npackage charset // import \"golang.org/x/net/html/charset\"\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"mime\"\n\t\"strings\"\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/net/html\"\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/charmap\"\n\t\"golang.org/x/text/encoding/htmlindex\"\n\t\"golang.org/x/text/transform\"\n)\n\n// Lookup returns the encoding with the specified label, and its canonical\n// name. It returns nil and the empty string if label is not one of the\n// standard encodings for HTML. Matching is case-insensitive and ignores\n// leading and trailing whitespace. Encoders will use HTML escape sequences for\n// runes that are not supported by the character set.\nfunc Lookup(label string) (e encoding.Encoding, name string) {\n\te, err := htmlindex.Get(label)\n\tif err != nil {\n\t\treturn nil, \"\"\n\t}\n\tname, _ = htmlindex.Name(e)\n\treturn &htmlEncoding{e}, name\n}\n\ntype htmlEncoding struct{ encoding.Encoding }\n\nfunc (h *htmlEncoding) NewEncoder() *encoding.Encoder {\n\t// HTML requires a non-terminating legacy encoder. We use HTML escapes to\n\t// substitute unsupported code points.\n\treturn encoding.HTMLEscapeUnsupported(h.Encoding.NewEncoder())\n}\n\n// DetermineEncoding determines the encoding of an HTML document by examining\n// up to the first 1024 bytes of content and the declared Content-Type.\n//\n// See http://www.whatwg.org/specs/web-apps/current-work/multipage/parsing.html#determining-the-character-encoding\nfunc DetermineEncoding(content []byte, contentType string) (e encoding.Encoding, name string, certain bool) {\n\tif len(content) > 1024 {\n\t\tcontent = content[:1024]\n\t}\n\n\tfor _, b := range boms {\n\t\tif bytes.HasPrefix(content, b.bom) {\n\t\t\te, name = Lookup(b.enc)\n\t\t\treturn e, name, true\n\t\t}\n\t}\n\n\tif _, params, err := mime.ParseMediaType(contentType); err == nil {\n\t\tif cs, ok := params[\"charset\"]; ok {\n\t\t\tif e, name = Lookup(cs); e != nil {\n\t\t\t\treturn e, name, true\n\t\t\t}\n\t\t}\n\t}\n\n\tif len(content) > 0 {\n\t\te, name = prescan(content)\n\t\tif e != nil {\n\t\t\treturn e, name, false\n\t\t}\n\t}\n\n\t// Try to detect UTF-8.\n\t// First eliminate any partial rune at the end.\n\tfor i := len(content) - 1; i >= 0 && i > len(content)-4; i-- {\n\t\tb := content[i]\n\t\tif b < 0x80 {\n\t\t\tbreak\n\t\t}\n\t\tif utf8.RuneStart(b) {\n\t\t\tcontent = content[:i]\n\t\t\tbreak\n\t\t}\n\t}\n\thasHighBit := false\n\tfor _, c := range content {\n\t\tif c >= 0x80 {\n\t\t\thasHighBit = true\n\t\t\tbreak\n\t\t}\n\t}\n\tif hasHighBit && utf8.Valid(content) {\n\t\treturn encoding.Nop, \"utf-8\", false\n\t}\n\n\t// TODO: change default depending on user's locale?\n\treturn charmap.Windows1252, \"windows-1252\", false\n}\n\n// NewReader returns an io.Reader that converts the content of r to UTF-8.\n// It calls DetermineEncoding to find out what r's encoding is.\nfunc NewReader(r io.Reader, contentType string) (io.Reader, error) {\n\tpreview := make([]byte, 1024)\n\tn, err := io.ReadFull(r, preview)\n\tswitch {\n\tcase err == io.ErrUnexpectedEOF:\n\t\tpreview = preview[:n]\n\t\tr = bytes.NewReader(preview)\n\tcase err != nil:\n\t\treturn nil, err\n\tdefault:\n\t\tr = io.MultiReader(bytes.NewReader(preview), r)\n\t}\n\n\tif e, _, _ := DetermineEncoding(preview, contentType); e != encoding.Nop {\n\t\tr = transform.NewReader(r, e.NewDecoder())\n\t}\n\treturn r, nil\n}\n\n// NewReaderLabel returns a reader that converts from the specified charset to\n// UTF-8. It uses Lookup to find the encoding that corresponds to label, and\n// returns an error if Lookup returns nil. It is suitable for use as\n// encoding/xml.Decoder's CharsetReader function.\nfunc NewReaderLabel(label string, input io.Reader) (io.Reader, error) {\n\te, _ := Lookup(label)\n\tif e == nil {\n\t\treturn nil, fmt.Errorf(\"unsupported charset: %q\", label)\n\t}\n\treturn transform.NewReader(input, e.NewDecoder()), nil\n}\n\nfunc prescan(content []byte) (e encoding.Encoding, name string) {\n\tz := html.NewTokenizer(bytes.NewReader(content))\n\tfor {\n\t\tswitch z.Next() {\n\t\tcase html.ErrorToken:\n\t\t\treturn nil, \"\"\n\n\t\tcase html.StartTagToken, html.SelfClosingTagToken:\n\t\t\ttagName, hasAttr := z.TagName()\n\t\t\tif !bytes.Equal(tagName, []byte(\"meta\")) {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tattrList := make(map[string]bool)\n\t\t\tgotPragma := false\n\n\t\t\tconst (\n\t\t\t\tdontKnow = iota\n\t\t\t\tdoNeedPragma\n\t\t\t\tdoNotNeedPragma\n\t\t\t)\n\t\t\tneedPragma := dontKnow\n\n\t\t\tname = \"\"\n\t\t\te = nil\n\t\t\tfor hasAttr {\n\t\t\t\tvar key, val []byte\n\t\t\t\tkey, val, hasAttr = z.TagAttr()\n\t\t\t\tks := string(key)\n\t\t\t\tif attrList[ks] {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tattrList[ks] = true\n\t\t\t\tfor i, c := range val {\n\t\t\t\t\tif 'A' <= c && c <= 'Z' {\n\t\t\t\t\t\tval[i] = c + 0x20\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tswitch ks {\n\t\t\t\tcase \"http-equiv\":\n\t\t\t\t\tif bytes.Equal(val, []byte(\"content-type\")) {\n\t\t\t\t\t\tgotPragma = true\n\t\t\t\t\t}\n\n\t\t\t\tcase \"content\":\n\t\t\t\t\tif e == nil {\n\t\t\t\t\t\tname = fromMetaElement(string(val))\n\t\t\t\t\t\tif name != \"\" {\n\t\t\t\t\t\t\te, name = Lookup(name)\n\t\t\t\t\t\t\tif e != nil {\n\t\t\t\t\t\t\t\tneedPragma = doNeedPragma\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase \"charset\":\n\t\t\t\t\te, name = Lookup(string(val))\n\t\t\t\t\tneedPragma = doNotNeedPragma\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif needPragma == dontKnow || needPragma == doNeedPragma && !gotPragma {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tif strings.HasPrefix(name, \"utf-16\") {\n\t\t\t\tname = \"utf-8\"\n\t\t\t\te = encoding.Nop\n\t\t\t}\n\n\t\t\tif e != nil {\n\t\t\t\treturn e, name\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc fromMetaElement(s string) string {\n\tfor s != \"\" {\n\t\tcsLoc := strings.Index(s, \"charset\")\n\t\tif csLoc == -1 {\n\t\t\treturn \"\"\n\t\t}\n\t\ts = s[csLoc+len(\"charset\"):]\n\t\ts = strings.TrimLeft(s, \" \\t\\n\\f\\r\")\n\t\tif !strings.HasPrefix(s, \"=\") {\n\t\t\tcontinue\n\t\t}\n\t\ts = s[1:]\n\t\ts = strings.TrimLeft(s, \" \\t\\n\\f\\r\")\n\t\tif s == \"\" {\n\t\t\treturn \"\"\n\t\t}\n\t\tif q := s[0]; q == '\"' || q == '\\'' {\n\t\t\ts = s[1:]\n\t\t\tcloseQuote := strings.IndexRune(s, rune(q))\n\t\t\tif closeQuote == -1 {\n\t\t\t\treturn \"\"\n\t\t\t}\n\t\t\treturn s[:closeQuote]\n\t\t}\n\n\t\tend := strings.IndexAny(s, \"; \\t\\n\\f\\r\")\n\t\tif end == -1 {\n\t\t\tend = len(s)\n\t\t}\n\t\treturn s[:end]\n\t}\n\treturn \"\"\n}\n\nvar boms = []struct {\n\tbom []byte\n\tenc string\n}{\n\t{[]byte{0xfe, 0xff}, \"utf-16be\"},\n\t{[]byte{0xff, 0xfe}, \"utf-16le\"},\n\t{[]byte{0xef, 0xbb, 0xbf}, \"utf-8\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/const.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage html\n\n// Section 12.2.4.2 of the HTML5 specification says \"The following elements\n// have varying levels of special parsing rules\".\n// https://html.spec.whatwg.org/multipage/syntax.html#the-stack-of-open-elements\nvar isSpecialElementMap = map[string]bool{\n\t\"address\":    true,\n\t\"applet\":     true,\n\t\"area\":       true,\n\t\"article\":    true,\n\t\"aside\":      true,\n\t\"base\":       true,\n\t\"basefont\":   true,\n\t\"bgsound\":    true,\n\t\"blockquote\": true,\n\t\"body\":       true,\n\t\"br\":         true,\n\t\"button\":     true,\n\t\"caption\":    true,\n\t\"center\":     true,\n\t\"col\":        true,\n\t\"colgroup\":   true,\n\t\"dd\":         true,\n\t\"details\":    true,\n\t\"dir\":        true,\n\t\"div\":        true,\n\t\"dl\":         true,\n\t\"dt\":         true,\n\t\"embed\":      true,\n\t\"fieldset\":   true,\n\t\"figcaption\": true,\n\t\"figure\":     true,\n\t\"footer\":     true,\n\t\"form\":       true,\n\t\"frame\":      true,\n\t\"frameset\":   true,\n\t\"h1\":         true,\n\t\"h2\":         true,\n\t\"h3\":         true,\n\t\"h4\":         true,\n\t\"h5\":         true,\n\t\"h6\":         true,\n\t\"head\":       true,\n\t\"header\":     true,\n\t\"hgroup\":     true,\n\t\"hr\":         true,\n\t\"html\":       true,\n\t\"iframe\":     true,\n\t\"img\":        true,\n\t\"input\":      true,\n\t\"keygen\":     true, // \"keygen\" has been removed from the spec, but are kept here for backwards compatibility.\n\t\"li\":         true,\n\t\"link\":       true,\n\t\"listing\":    true,\n\t\"main\":       true,\n\t\"marquee\":    true,\n\t\"menu\":       true,\n\t\"meta\":       true,\n\t\"nav\":        true,\n\t\"noembed\":    true,\n\t\"noframes\":   true,\n\t\"noscript\":   true,\n\t\"object\":     true,\n\t\"ol\":         true,\n\t\"p\":          true,\n\t\"param\":      true,\n\t\"plaintext\":  true,\n\t\"pre\":        true,\n\t\"script\":     true,\n\t\"section\":    true,\n\t\"select\":     true,\n\t\"source\":     true,\n\t\"style\":      true,\n\t\"summary\":    true,\n\t\"table\":      true,\n\t\"tbody\":      true,\n\t\"td\":         true,\n\t\"template\":   true,\n\t\"textarea\":   true,\n\t\"tfoot\":      true,\n\t\"th\":         true,\n\t\"thead\":      true,\n\t\"title\":      true,\n\t\"tr\":         true,\n\t\"track\":      true,\n\t\"ul\":         true,\n\t\"wbr\":        true,\n\t\"xmp\":        true,\n}\n\nfunc isSpecialElement(element *Node) bool {\n\tswitch element.Namespace {\n\tcase \"\", \"html\":\n\t\treturn isSpecialElementMap[element.Data]\n\tcase \"math\":\n\t\tswitch element.Data {\n\t\tcase \"mi\", \"mo\", \"mn\", \"ms\", \"mtext\", \"annotation-xml\":\n\t\t\treturn true\n\t\t}\n\tcase \"svg\":\n\t\tswitch element.Data {\n\t\tcase \"foreignObject\", \"desc\", \"title\":\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/doc.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n/*\nPackage html implements an HTML5-compliant tokenizer and parser.\n\nTokenization is done by creating a Tokenizer for an io.Reader r. It is the\ncaller's responsibility to ensure that r provides UTF-8 encoded HTML.\n\n\tz := html.NewTokenizer(r)\n\nGiven a Tokenizer z, the HTML is tokenized by repeatedly calling z.Next(),\nwhich parses the next token and returns its type, or an error:\n\n\tfor {\n\t\ttt := z.Next()\n\t\tif tt == html.ErrorToken {\n\t\t\t// ...\n\t\t\treturn ...\n\t\t}\n\t\t// Process the current token.\n\t}\n\nThere are two APIs for retrieving the current token. The high-level API is to\ncall Token; the low-level API is to call Text or TagName / TagAttr. Both APIs\nallow optionally calling Raw after Next but before Token, Text, TagName, or\nTagAttr. In EBNF notation, the valid call sequence per token is:\n\n\tNext {Raw} [ Token | Text | TagName {TagAttr} ]\n\nToken returns an independent data structure that completely describes a token.\nEntities (such as \"&lt;\") are unescaped, tag names and attribute keys are\nlower-cased, and attributes are collected into a []Attribute. For example:\n\n\tfor {\n\t\tif z.Next() == html.ErrorToken {\n\t\t\t// Returning io.EOF indicates success.\n\t\t\treturn z.Err()\n\t\t}\n\t\temitToken(z.Token())\n\t}\n\nThe low-level API performs fewer allocations and copies, but the contents of\nthe []byte values returned by Text, TagName and TagAttr may change on the next\ncall to Next. For example, to extract an HTML page's anchor text:\n\n\tdepth := 0\n\tfor {\n\t\ttt := z.Next()\n\t\tswitch tt {\n\t\tcase html.ErrorToken:\n\t\t\treturn z.Err()\n\t\tcase html.TextToken:\n\t\t\tif depth > 0 {\n\t\t\t\t// emitBytes should copy the []byte it receives,\n\t\t\t\t// if it doesn't process it immediately.\n\t\t\t\temitBytes(z.Text())\n\t\t\t}\n\t\tcase html.StartTagToken, html.EndTagToken:\n\t\t\ttn, _ := z.TagName()\n\t\t\tif len(tn) == 1 && tn[0] == 'a' {\n\t\t\t\tif tt == html.StartTagToken {\n\t\t\t\t\tdepth++\n\t\t\t\t} else {\n\t\t\t\t\tdepth--\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\nParsing is done by calling Parse with an io.Reader, which returns the root of\nthe parse tree (the document element) as a *Node. It is the caller's\nresponsibility to ensure that the Reader provides UTF-8 encoded HTML. For\nexample, to process each anchor node in depth-first order:\n\n\tdoc, err := html.Parse(r)\n\tif err != nil {\n\t\t// ...\n\t}\n\tvar f func(*html.Node)\n\tf = func(n *html.Node) {\n\t\tif n.Type == html.ElementNode && n.Data == \"a\" {\n\t\t\t// Do something with n...\n\t\t}\n\t\tfor c := n.FirstChild; c != nil; c = c.NextSibling {\n\t\t\tf(c)\n\t\t}\n\t}\n\tf(doc)\n\nThe relevant specifications include:\nhttps://html.spec.whatwg.org/multipage/syntax.html and\nhttps://html.spec.whatwg.org/multipage/syntax.html#tokenization\n*/\npackage html // import \"golang.org/x/net/html\"\n\n// The tokenization algorithm implemented by this package is not a line-by-line\n// transliteration of the relatively verbose state-machine in the WHATWG\n// specification. A more direct approach is used instead, where the program\n// counter implies the state, such as whether it is tokenizing a tag or a text\n// node. Specification compliance is verified by checking expected and actual\n// outputs over a test suite rather than aiming for algorithmic fidelity.\n\n// TODO(nigeltao): Does a DOM API belong in this package or a separate one?\n// TODO(nigeltao): How does parsing interact with a JavaScript engine?\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/doctype.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage html\n\nimport (\n\t\"strings\"\n)\n\n// parseDoctype parses the data from a DoctypeToken into a name,\n// public identifier, and system identifier. It returns a Node whose Type\n// is DoctypeNode, whose Data is the name, and which has attributes\n// named \"system\" and \"public\" for the two identifiers if they were present.\n// quirks is whether the document should be parsed in \"quirks mode\".\nfunc parseDoctype(s string) (n *Node, quirks bool) {\n\tn = &Node{Type: DoctypeNode}\n\n\t// Find the name.\n\tspace := strings.IndexAny(s, whitespace)\n\tif space == -1 {\n\t\tspace = len(s)\n\t}\n\tn.Data = s[:space]\n\t// The comparison to \"html\" is case-sensitive.\n\tif n.Data != \"html\" {\n\t\tquirks = true\n\t}\n\tn.Data = strings.ToLower(n.Data)\n\ts = strings.TrimLeft(s[space:], whitespace)\n\n\tif len(s) < 6 {\n\t\t// It can't start with \"PUBLIC\" or \"SYSTEM\".\n\t\t// Ignore the rest of the string.\n\t\treturn n, quirks || s != \"\"\n\t}\n\n\tkey := strings.ToLower(s[:6])\n\ts = s[6:]\n\tfor key == \"public\" || key == \"system\" {\n\t\ts = strings.TrimLeft(s, whitespace)\n\t\tif s == \"\" {\n\t\t\tbreak\n\t\t}\n\t\tquote := s[0]\n\t\tif quote != '\"' && quote != '\\'' {\n\t\t\tbreak\n\t\t}\n\t\ts = s[1:]\n\t\tq := strings.IndexRune(s, rune(quote))\n\t\tvar id string\n\t\tif q == -1 {\n\t\t\tid = s\n\t\t\ts = \"\"\n\t\t} else {\n\t\t\tid = s[:q]\n\t\t\ts = s[q+1:]\n\t\t}\n\t\tn.Attr = append(n.Attr, Attribute{Key: key, Val: id})\n\t\tif key == \"public\" {\n\t\t\tkey = \"system\"\n\t\t} else {\n\t\t\tkey = \"\"\n\t\t}\n\t}\n\n\tif key != \"\" || s != \"\" {\n\t\tquirks = true\n\t} else if len(n.Attr) > 0 {\n\t\tif n.Attr[0].Key == \"public\" {\n\t\t\tpublic := strings.ToLower(n.Attr[0].Val)\n\t\t\tswitch public {\n\t\t\tcase \"-//w3o//dtd w3 html strict 3.0//en//\", \"-/w3d/dtd html 4.0 transitional/en\", \"html\":\n\t\t\t\tquirks = true\n\t\t\tdefault:\n\t\t\t\tfor _, q := range quirkyIDs {\n\t\t\t\t\tif strings.HasPrefix(public, q) {\n\t\t\t\t\t\tquirks = true\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t// The following two public IDs only cause quirks mode if there is no system ID.\n\t\t\tif len(n.Attr) == 1 && (strings.HasPrefix(public, \"-//w3c//dtd html 4.01 frameset//\") ||\n\t\t\t\tstrings.HasPrefix(public, \"-//w3c//dtd html 4.01 transitional//\")) {\n\t\t\t\tquirks = true\n\t\t\t}\n\t\t}\n\t\tif lastAttr := n.Attr[len(n.Attr)-1]; lastAttr.Key == \"system\" &&\n\t\t\tstrings.ToLower(lastAttr.Val) == \"http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd\" {\n\t\t\tquirks = true\n\t\t}\n\t}\n\n\treturn n, quirks\n}\n\n// quirkyIDs is a list of public doctype identifiers that cause a document\n// to be interpreted in quirks mode. The identifiers should be in lower case.\nvar quirkyIDs = []string{\n\t\"+//silmaril//dtd html pro v0r11 19970101//\",\n\t\"-//advasoft ltd//dtd html 3.0 aswedit + extensions//\",\n\t\"-//as//dtd html 3.0 aswedit + extensions//\",\n\t\"-//ietf//dtd html 2.0 level 1//\",\n\t\"-//ietf//dtd html 2.0 level 2//\",\n\t\"-//ietf//dtd html 2.0 strict level 1//\",\n\t\"-//ietf//dtd html 2.0 strict level 2//\",\n\t\"-//ietf//dtd html 2.0 strict//\",\n\t\"-//ietf//dtd html 2.0//\",\n\t\"-//ietf//dtd html 2.1e//\",\n\t\"-//ietf//dtd html 3.0//\",\n\t\"-//ietf//dtd html 3.2 final//\",\n\t\"-//ietf//dtd html 3.2//\",\n\t\"-//ietf//dtd html 3//\",\n\t\"-//ietf//dtd html level 0//\",\n\t\"-//ietf//dtd html level 1//\",\n\t\"-//ietf//dtd html level 2//\",\n\t\"-//ietf//dtd html level 3//\",\n\t\"-//ietf//dtd html strict level 0//\",\n\t\"-//ietf//dtd html strict level 1//\",\n\t\"-//ietf//dtd html strict level 2//\",\n\t\"-//ietf//dtd html strict level 3//\",\n\t\"-//ietf//dtd html strict//\",\n\t\"-//ietf//dtd html//\",\n\t\"-//metrius//dtd metrius presentational//\",\n\t\"-//microsoft//dtd internet explorer 2.0 html strict//\",\n\t\"-//microsoft//dtd internet explorer 2.0 html//\",\n\t\"-//microsoft//dtd internet explorer 2.0 tables//\",\n\t\"-//microsoft//dtd internet explorer 3.0 html strict//\",\n\t\"-//microsoft//dtd internet explorer 3.0 html//\",\n\t\"-//microsoft//dtd internet explorer 3.0 tables//\",\n\t\"-//netscape comm. corp.//dtd html//\",\n\t\"-//netscape comm. corp.//dtd strict html//\",\n\t\"-//o'reilly and associates//dtd html 2.0//\",\n\t\"-//o'reilly and associates//dtd html extended 1.0//\",\n\t\"-//o'reilly and associates//dtd html extended relaxed 1.0//\",\n\t\"-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//\",\n\t\"-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//\",\n\t\"-//spyglass//dtd html 2.0 extended//\",\n\t\"-//sq//dtd html 2.0 hotmetal + extensions//\",\n\t\"-//sun microsystems corp.//dtd hotjava html//\",\n\t\"-//sun microsystems corp.//dtd hotjava strict html//\",\n\t\"-//w3c//dtd html 3 1995-03-24//\",\n\t\"-//w3c//dtd html 3.2 draft//\",\n\t\"-//w3c//dtd html 3.2 final//\",\n\t\"-//w3c//dtd html 3.2//\",\n\t\"-//w3c//dtd html 3.2s draft//\",\n\t\"-//w3c//dtd html 4.0 frameset//\",\n\t\"-//w3c//dtd html 4.0 transitional//\",\n\t\"-//w3c//dtd html experimental 19960712//\",\n\t\"-//w3c//dtd html experimental 970421//\",\n\t\"-//w3c//dtd w3 html//\",\n\t\"-//w3o//dtd w3 html 3.0//\",\n\t\"-//webtechs//dtd mozilla html 2.0//\",\n\t\"-//webtechs//dtd mozilla html//\",\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/entity.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage html\n\n// All entities that do not end with ';' are 6 or fewer bytes long.\nconst longestEntityWithoutSemicolon = 6\n\n// entity is a map from HTML entity names to their values. The semicolon matters:\n// https://html.spec.whatwg.org/multipage/syntax.html#named-character-references\n// lists both \"amp\" and \"amp;\" as two separate entries.\n//\n// Note that the HTML5 list is larger than the HTML4 list at\n// http://www.w3.org/TR/html4/sgml/entities.html\nvar entity = map[string]rune{\n\t\"AElig;\":                           '\\U000000C6',\n\t\"AMP;\":                             '\\U00000026',\n\t\"Aacute;\":                          '\\U000000C1',\n\t\"Abreve;\":                          '\\U00000102',\n\t\"Acirc;\":                           '\\U000000C2',\n\t\"Acy;\":                             '\\U00000410',\n\t\"Afr;\":                             '\\U0001D504',\n\t\"Agrave;\":                          '\\U000000C0',\n\t\"Alpha;\":                           '\\U00000391',\n\t\"Amacr;\":                           '\\U00000100',\n\t\"And;\":                             '\\U00002A53',\n\t\"Aogon;\":                           '\\U00000104',\n\t\"Aopf;\":                            '\\U0001D538',\n\t\"ApplyFunction;\":                   '\\U00002061',\n\t\"Aring;\":                           '\\U000000C5',\n\t\"Ascr;\":                            '\\U0001D49C',\n\t\"Assign;\":                          '\\U00002254',\n\t\"Atilde;\":                          '\\U000000C3',\n\t\"Auml;\":                            '\\U000000C4',\n\t\"Backslash;\":                       '\\U00002216',\n\t\"Barv;\":                            '\\U00002AE7',\n\t\"Barwed;\":                          '\\U00002306',\n\t\"Bcy;\":                             '\\U00000411',\n\t\"Because;\":                         '\\U00002235',\n\t\"Bernoullis;\":                      '\\U0000212C',\n\t\"Beta;\":                            '\\U00000392',\n\t\"Bfr;\":                             '\\U0001D505',\n\t\"Bopf;\":                            '\\U0001D539',\n\t\"Breve;\":                           '\\U000002D8',\n\t\"Bscr;\":                            '\\U0000212C',\n\t\"Bumpeq;\":                          '\\U0000224E',\n\t\"CHcy;\":                            '\\U00000427',\n\t\"COPY;\":                            '\\U000000A9',\n\t\"Cacute;\":                          '\\U00000106',\n\t\"Cap;\":                             '\\U000022D2',\n\t\"CapitalDifferentialD;\":            '\\U00002145',\n\t\"Cayleys;\":                         '\\U0000212D',\n\t\"Ccaron;\":                          '\\U0000010C',\n\t\"Ccedil;\":                          '\\U000000C7',\n\t\"Ccirc;\":                           '\\U00000108',\n\t\"Cconint;\":                         '\\U00002230',\n\t\"Cdot;\":                            '\\U0000010A',\n\t\"Cedilla;\":                         '\\U000000B8',\n\t\"CenterDot;\":                       '\\U000000B7',\n\t\"Cfr;\":                             '\\U0000212D',\n\t\"Chi;\":                             '\\U000003A7',\n\t\"CircleDot;\":                       '\\U00002299',\n\t\"CircleMinus;\":                     '\\U00002296',\n\t\"CirclePlus;\":                      '\\U00002295',\n\t\"CircleTimes;\":                     '\\U00002297',\n\t\"ClockwiseContourIntegral;\":        '\\U00002232',\n\t\"CloseCurlyDoubleQuote;\":           '\\U0000201D',\n\t\"CloseCurlyQuote;\":                 '\\U00002019',\n\t\"Colon;\":                           '\\U00002237',\n\t\"Colone;\":                          '\\U00002A74',\n\t\"Congruent;\":                       '\\U00002261',\n\t\"Conint;\":                          '\\U0000222F',\n\t\"ContourIntegral;\":                 '\\U0000222E',\n\t\"Copf;\":                            '\\U00002102',\n\t\"Coproduct;\":                       '\\U00002210',\n\t\"CounterClockwiseContourIntegral;\": '\\U00002233',\n\t\"Cross;\":                           '\\U00002A2F',\n\t\"Cscr;\":                            '\\U0001D49E',\n\t\"Cup;\":                             '\\U000022D3',\n\t\"CupCap;\":                          '\\U0000224D',\n\t\"DD;\":                              '\\U00002145',\n\t\"DDotrahd;\":                        '\\U00002911',\n\t\"DJcy;\":                            '\\U00000402',\n\t\"DScy;\":                            '\\U00000405',\n\t\"DZcy;\":                            '\\U0000040F',\n\t\"Dagger;\":                          '\\U00002021',\n\t\"Darr;\":                            '\\U000021A1',\n\t\"Dashv;\":                           '\\U00002AE4',\n\t\"Dcaron;\":                          '\\U0000010E',\n\t\"Dcy;\":                             '\\U00000414',\n\t\"Del;\":                             '\\U00002207',\n\t\"Delta;\":                           '\\U00000394',\n\t\"Dfr;\":                             '\\U0001D507',\n\t\"DiacriticalAcute;\":                '\\U000000B4',\n\t\"DiacriticalDot;\":                  '\\U000002D9',\n\t\"DiacriticalDoubleAcute;\":          '\\U000002DD',\n\t\"DiacriticalGrave;\":                '\\U00000060',\n\t\"DiacriticalTilde;\":                '\\U000002DC',\n\t\"Diamond;\":                         '\\U000022C4',\n\t\"DifferentialD;\":                   '\\U00002146',\n\t\"Dopf;\":                            '\\U0001D53B',\n\t\"Dot;\":                             '\\U000000A8',\n\t\"DotDot;\":                          '\\U000020DC',\n\t\"DotEqual;\":                        '\\U00002250',\n\t\"DoubleContourIntegral;\":           '\\U0000222F',\n\t\"DoubleDot;\":                       '\\U000000A8',\n\t\"DoubleDownArrow;\":                 '\\U000021D3',\n\t\"DoubleLeftArrow;\":                 '\\U000021D0',\n\t\"DoubleLeftRightArrow;\":            '\\U000021D4',\n\t\"DoubleLeftTee;\":                   '\\U00002AE4',\n\t\"DoubleLongLeftArrow;\":             '\\U000027F8',\n\t\"DoubleLongLeftRightArrow;\":        '\\U000027FA',\n\t\"DoubleLongRightArrow;\":            '\\U000027F9',\n\t\"DoubleRightArrow;\":                '\\U000021D2',\n\t\"DoubleRightTee;\":                  '\\U000022A8',\n\t\"DoubleUpArrow;\":                   '\\U000021D1',\n\t\"DoubleUpDownArrow;\":               '\\U000021D5',\n\t\"DoubleVerticalBar;\":               '\\U00002225',\n\t\"DownArrow;\":                       '\\U00002193',\n\t\"DownArrowBar;\":                    '\\U00002913',\n\t\"DownArrowUpArrow;\":                '\\U000021F5',\n\t\"DownBreve;\":                       '\\U00000311',\n\t\"DownLeftRightVector;\":             '\\U00002950',\n\t\"DownLeftTeeVector;\":               '\\U0000295E',\n\t\"DownLeftVector;\":                  '\\U000021BD',\n\t\"DownLeftVectorBar;\":               '\\U00002956',\n\t\"DownRightTeeVector;\":              '\\U0000295F',\n\t\"DownRightVector;\":                 '\\U000021C1',\n\t\"DownRightVectorBar;\":              '\\U00002957',\n\t\"DownTee;\":                         '\\U000022A4',\n\t\"DownTeeArrow;\":                    '\\U000021A7',\n\t\"Downarrow;\":                       '\\U000021D3',\n\t\"Dscr;\":                            '\\U0001D49F',\n\t\"Dstrok;\":                          '\\U00000110',\n\t\"ENG;\":                             '\\U0000014A',\n\t\"ETH;\":                             '\\U000000D0',\n\t\"Eacute;\":                          '\\U000000C9',\n\t\"Ecaron;\":                          '\\U0000011A',\n\t\"Ecirc;\":                           '\\U000000CA',\n\t\"Ecy;\":                             '\\U0000042D',\n\t\"Edot;\":                            '\\U00000116',\n\t\"Efr;\":                             '\\U0001D508',\n\t\"Egrave;\":                          '\\U000000C8',\n\t\"Element;\":                         '\\U00002208',\n\t\"Emacr;\":                           '\\U00000112',\n\t\"EmptySmallSquare;\":                '\\U000025FB',\n\t\"EmptyVerySmallSquare;\":            '\\U000025AB',\n\t\"Eogon;\":                           '\\U00000118',\n\t\"Eopf;\":                            '\\U0001D53C',\n\t\"Epsilon;\":                         '\\U00000395',\n\t\"Equal;\":                           '\\U00002A75',\n\t\"EqualTilde;\":                      '\\U00002242',\n\t\"Equilibrium;\":                     '\\U000021CC',\n\t\"Escr;\":                            '\\U00002130',\n\t\"Esim;\":                            '\\U00002A73',\n\t\"Eta;\":                             '\\U00000397',\n\t\"Euml;\":                            '\\U000000CB',\n\t\"Exists;\":                          '\\U00002203',\n\t\"ExponentialE;\":                    '\\U00002147',\n\t\"Fcy;\":                             '\\U00000424',\n\t\"Ffr;\":                             '\\U0001D509',\n\t\"FilledSmallSquare;\":               '\\U000025FC',\n\t\"FilledVerySmallSquare;\":           '\\U000025AA',\n\t\"Fopf;\":                            '\\U0001D53D',\n\t\"ForAll;\":                          '\\U00002200',\n\t\"Fouriertrf;\":                      '\\U00002131',\n\t\"Fscr;\":                            '\\U00002131',\n\t\"GJcy;\":                            '\\U00000403',\n\t\"GT;\":                              '\\U0000003E',\n\t\"Gamma;\":                           '\\U00000393',\n\t\"Gammad;\":                          '\\U000003DC',\n\t\"Gbreve;\":                          '\\U0000011E',\n\t\"Gcedil;\":                          '\\U00000122',\n\t\"Gcirc;\":                           '\\U0000011C',\n\t\"Gcy;\":                             '\\U00000413',\n\t\"Gdot;\":                            '\\U00000120',\n\t\"Gfr;\":                             '\\U0001D50A',\n\t\"Gg;\":                              '\\U000022D9',\n\t\"Gopf;\":                            '\\U0001D53E',\n\t\"GreaterEqual;\":                    '\\U00002265',\n\t\"GreaterEqualLess;\":                '\\U000022DB',\n\t\"GreaterFullEqual;\":                '\\U00002267',\n\t\"GreaterGreater;\":                  '\\U00002AA2',\n\t\"GreaterLess;\":                     '\\U00002277',\n\t\"GreaterSlantEqual;\":               '\\U00002A7E',\n\t\"GreaterTilde;\":                    '\\U00002273',\n\t\"Gscr;\":                            '\\U0001D4A2',\n\t\"Gt;\":                              '\\U0000226B',\n\t\"HARDcy;\":                          '\\U0000042A',\n\t\"Hacek;\":                           '\\U000002C7',\n\t\"Hat;\":                             '\\U0000005E',\n\t\"Hcirc;\":                           '\\U00000124',\n\t\"Hfr;\":                             '\\U0000210C',\n\t\"HilbertSpace;\":                    '\\U0000210B',\n\t\"Hopf;\":                            '\\U0000210D',\n\t\"HorizontalLine;\":                  '\\U00002500',\n\t\"Hscr;\":                            '\\U0000210B',\n\t\"Hstrok;\":                          '\\U00000126',\n\t\"HumpDownHump;\":                    '\\U0000224E',\n\t\"HumpEqual;\":                       '\\U0000224F',\n\t\"IEcy;\":                            '\\U00000415',\n\t\"IJlig;\":                           '\\U00000132',\n\t\"IOcy;\":                            '\\U00000401',\n\t\"Iacute;\":                          '\\U000000CD',\n\t\"Icirc;\":                           '\\U000000CE',\n\t\"Icy;\":                             '\\U00000418',\n\t\"Idot;\":                            '\\U00000130',\n\t\"Ifr;\":                             '\\U00002111',\n\t\"Igrave;\":                          '\\U000000CC',\n\t\"Im;\":                              '\\U00002111',\n\t\"Imacr;\":                           '\\U0000012A',\n\t\"ImaginaryI;\":                      '\\U00002148',\n\t\"Implies;\":                         '\\U000021D2',\n\t\"Int;\":                             '\\U0000222C',\n\t\"Integral;\":                        '\\U0000222B',\n\t\"Intersection;\":                    '\\U000022C2',\n\t\"InvisibleComma;\":                  '\\U00002063',\n\t\"InvisibleTimes;\":                  '\\U00002062',\n\t\"Iogon;\":                           '\\U0000012E',\n\t\"Iopf;\":                            '\\U0001D540',\n\t\"Iota;\":                            '\\U00000399',\n\t\"Iscr;\":                            '\\U00002110',\n\t\"Itilde;\":                          '\\U00000128',\n\t\"Iukcy;\":                           '\\U00000406',\n\t\"Iuml;\":                            '\\U000000CF',\n\t\"Jcirc;\":                           '\\U00000134',\n\t\"Jcy;\":                             '\\U00000419',\n\t\"Jfr;\":                             '\\U0001D50D',\n\t\"Jopf;\":                            '\\U0001D541',\n\t\"Jscr;\":                            '\\U0001D4A5',\n\t\"Jsercy;\":                          '\\U00000408',\n\t\"Jukcy;\":                           '\\U00000404',\n\t\"KHcy;\":                            '\\U00000425',\n\t\"KJcy;\":                            '\\U0000040C',\n\t\"Kappa;\":                           '\\U0000039A',\n\t\"Kcedil;\":                          '\\U00000136',\n\t\"Kcy;\":                             '\\U0000041A',\n\t\"Kfr;\":                             '\\U0001D50E',\n\t\"Kopf;\":                            '\\U0001D542',\n\t\"Kscr;\":                            '\\U0001D4A6',\n\t\"LJcy;\":                            '\\U00000409',\n\t\"LT;\":                              '\\U0000003C',\n\t\"Lacute;\":                          '\\U00000139',\n\t\"Lambda;\":                          '\\U0000039B',\n\t\"Lang;\":                            '\\U000027EA',\n\t\"Laplacetrf;\":                      '\\U00002112',\n\t\"Larr;\":                            '\\U0000219E',\n\t\"Lcaron;\":                          '\\U0000013D',\n\t\"Lcedil;\":                          '\\U0000013B',\n\t\"Lcy;\":                             '\\U0000041B',\n\t\"LeftAngleBracket;\":                '\\U000027E8',\n\t\"LeftArrow;\":                       '\\U00002190',\n\t\"LeftArrowBar;\":                    '\\U000021E4',\n\t\"LeftArrowRightArrow;\":             '\\U000021C6',\n\t\"LeftCeiling;\":                     '\\U00002308',\n\t\"LeftDoubleBracket;\":               '\\U000027E6',\n\t\"LeftDownTeeVector;\":               '\\U00002961',\n\t\"LeftDownVector;\":                  '\\U000021C3',\n\t\"LeftDownVectorBar;\":               '\\U00002959',\n\t\"LeftFloor;\":                       '\\U0000230A',\n\t\"LeftRightArrow;\":                  '\\U00002194',\n\t\"LeftRightVector;\":                 '\\U0000294E',\n\t\"LeftTee;\":                         '\\U000022A3',\n\t\"LeftTeeArrow;\":                    '\\U000021A4',\n\t\"LeftTeeVector;\":                   '\\U0000295A',\n\t\"LeftTriangle;\":                    '\\U000022B2',\n\t\"LeftTriangleBar;\":                 '\\U000029CF',\n\t\"LeftTriangleEqual;\":               '\\U000022B4',\n\t\"LeftUpDownVector;\":                '\\U00002951',\n\t\"LeftUpTeeVector;\":                 '\\U00002960',\n\t\"LeftUpVector;\":                    '\\U000021BF',\n\t\"LeftUpVectorBar;\":                 '\\U00002958',\n\t\"LeftVector;\":                      '\\U000021BC',\n\t\"LeftVectorBar;\":                   '\\U00002952',\n\t\"Leftarrow;\":                       '\\U000021D0',\n\t\"Leftrightarrow;\":                  '\\U000021D4',\n\t\"LessEqualGreater;\":                '\\U000022DA',\n\t\"LessFullEqual;\":                   '\\U00002266',\n\t\"LessGreater;\":                     '\\U00002276',\n\t\"LessLess;\":                        '\\U00002AA1',\n\t\"LessSlantEqual;\":                  '\\U00002A7D',\n\t\"LessTilde;\":                       '\\U00002272',\n\t\"Lfr;\":                             '\\U0001D50F',\n\t\"Ll;\":                              '\\U000022D8',\n\t\"Lleftarrow;\":                      '\\U000021DA',\n\t\"Lmidot;\":                          '\\U0000013F',\n\t\"LongLeftArrow;\":                   '\\U000027F5',\n\t\"LongLeftRightArrow;\":              '\\U000027F7',\n\t\"LongRightArrow;\":                  '\\U000027F6',\n\t\"Longleftarrow;\":                   '\\U000027F8',\n\t\"Longleftrightarrow;\":              '\\U000027FA',\n\t\"Longrightarrow;\":                  '\\U000027F9',\n\t\"Lopf;\":                            '\\U0001D543',\n\t\"LowerLeftArrow;\":                  '\\U00002199',\n\t\"LowerRightArrow;\":                 '\\U00002198',\n\t\"Lscr;\":                            '\\U00002112',\n\t\"Lsh;\":                             '\\U000021B0',\n\t\"Lstrok;\":                          '\\U00000141',\n\t\"Lt;\":                              '\\U0000226A',\n\t\"Map;\":                             '\\U00002905',\n\t\"Mcy;\":                             '\\U0000041C',\n\t\"MediumSpace;\":                     '\\U0000205F',\n\t\"Mellintrf;\":                       '\\U00002133',\n\t\"Mfr;\":                             '\\U0001D510',\n\t\"MinusPlus;\":                       '\\U00002213',\n\t\"Mopf;\":                            '\\U0001D544',\n\t\"Mscr;\":                            '\\U00002133',\n\t\"Mu;\":                              '\\U0000039C',\n\t\"NJcy;\":                            '\\U0000040A',\n\t\"Nacute;\":                          '\\U00000143',\n\t\"Ncaron;\":                          '\\U00000147',\n\t\"Ncedil;\":                          '\\U00000145',\n\t\"Ncy;\":                             '\\U0000041D',\n\t\"NegativeMediumSpace;\":             '\\U0000200B',\n\t\"NegativeThickSpace;\":              '\\U0000200B',\n\t\"NegativeThinSpace;\":               '\\U0000200B',\n\t\"NegativeVeryThinSpace;\":           '\\U0000200B',\n\t\"NestedGreaterGreater;\":            '\\U0000226B',\n\t\"NestedLessLess;\":                  '\\U0000226A',\n\t\"NewLine;\":                         '\\U0000000A',\n\t\"Nfr;\":                             '\\U0001D511',\n\t\"NoBreak;\":                         '\\U00002060',\n\t\"NonBreakingSpace;\":                '\\U000000A0',\n\t\"Nopf;\":                            '\\U00002115',\n\t\"Not;\":                             '\\U00002AEC',\n\t\"NotCongruent;\":                    '\\U00002262',\n\t\"NotCupCap;\":                       '\\U0000226D',\n\t\"NotDoubleVerticalBar;\":            '\\U00002226',\n\t\"NotElement;\":                      '\\U00002209',\n\t\"NotEqual;\":                        '\\U00002260',\n\t\"NotExists;\":                       '\\U00002204',\n\t\"NotGreater;\":                      '\\U0000226F',\n\t\"NotGreaterEqual;\":                 '\\U00002271',\n\t\"NotGreaterLess;\":                  '\\U00002279',\n\t\"NotGreaterTilde;\":                 '\\U00002275',\n\t\"NotLeftTriangle;\":                 '\\U000022EA',\n\t\"NotLeftTriangleEqual;\":            '\\U000022EC',\n\t\"NotLess;\":                         '\\U0000226E',\n\t\"NotLessEqual;\":                    '\\U00002270',\n\t\"NotLessGreater;\":                  '\\U00002278',\n\t\"NotLessTilde;\":                    '\\U00002274',\n\t\"NotPrecedes;\":                     '\\U00002280',\n\t\"NotPrecedesSlantEqual;\":           '\\U000022E0',\n\t\"NotReverseElement;\":               '\\U0000220C',\n\t\"NotRightTriangle;\":                '\\U000022EB',\n\t\"NotRightTriangleEqual;\":           '\\U000022ED',\n\t\"NotSquareSubsetEqual;\":            '\\U000022E2',\n\t\"NotSquareSupersetEqual;\":          '\\U000022E3',\n\t\"NotSubsetEqual;\":                  '\\U00002288',\n\t\"NotSucceeds;\":                     '\\U00002281',\n\t\"NotSucceedsSlantEqual;\":           '\\U000022E1',\n\t\"NotSupersetEqual;\":                '\\U00002289',\n\t\"NotTilde;\":                        '\\U00002241',\n\t\"NotTildeEqual;\":                   '\\U00002244',\n\t\"NotTildeFullEqual;\":               '\\U00002247',\n\t\"NotTildeTilde;\":                   '\\U00002249',\n\t\"NotVerticalBar;\":                  '\\U00002224',\n\t\"Nscr;\":                            '\\U0001D4A9',\n\t\"Ntilde;\":                          '\\U000000D1',\n\t\"Nu;\":                              '\\U0000039D',\n\t\"OElig;\":                           '\\U00000152',\n\t\"Oacute;\":                          '\\U000000D3',\n\t\"Ocirc;\":                           '\\U000000D4',\n\t\"Ocy;\":                             '\\U0000041E',\n\t\"Odblac;\":                          '\\U00000150',\n\t\"Ofr;\":                             '\\U0001D512',\n\t\"Ograve;\":                          '\\U000000D2',\n\t\"Omacr;\":                           '\\U0000014C',\n\t\"Omega;\":                           '\\U000003A9',\n\t\"Omicron;\":                         '\\U0000039F',\n\t\"Oopf;\":                            '\\U0001D546',\n\t\"OpenCurlyDoubleQuote;\":            '\\U0000201C',\n\t\"OpenCurlyQuote;\":                  '\\U00002018',\n\t\"Or;\":                              '\\U00002A54',\n\t\"Oscr;\":                            '\\U0001D4AA',\n\t\"Oslash;\":                          '\\U000000D8',\n\t\"Otilde;\":                          '\\U000000D5',\n\t\"Otimes;\":                          '\\U00002A37',\n\t\"Ouml;\":                            '\\U000000D6',\n\t\"OverBar;\":                         '\\U0000203E',\n\t\"OverBrace;\":                       '\\U000023DE',\n\t\"OverBracket;\":                     '\\U000023B4',\n\t\"OverParenthesis;\":                 '\\U000023DC',\n\t\"PartialD;\":                        '\\U00002202',\n\t\"Pcy;\":                             '\\U0000041F',\n\t\"Pfr;\":                             '\\U0001D513',\n\t\"Phi;\":                             '\\U000003A6',\n\t\"Pi;\":                              '\\U000003A0',\n\t\"PlusMinus;\":                       '\\U000000B1',\n\t\"Poincareplane;\":                   '\\U0000210C',\n\t\"Popf;\":                            '\\U00002119',\n\t\"Pr;\":                              '\\U00002ABB',\n\t\"Precedes;\":                        '\\U0000227A',\n\t\"PrecedesEqual;\":                   '\\U00002AAF',\n\t\"PrecedesSlantEqual;\":              '\\U0000227C',\n\t\"PrecedesTilde;\":                   '\\U0000227E',\n\t\"Prime;\":                           '\\U00002033',\n\t\"Product;\":                         '\\U0000220F',\n\t\"Proportion;\":                      '\\U00002237',\n\t\"Proportional;\":                    '\\U0000221D',\n\t\"Pscr;\":                            '\\U0001D4AB',\n\t\"Psi;\":                             '\\U000003A8',\n\t\"QUOT;\":                            '\\U00000022',\n\t\"Qfr;\":                             '\\U0001D514',\n\t\"Qopf;\":                            '\\U0000211A',\n\t\"Qscr;\":                            '\\U0001D4AC',\n\t\"RBarr;\":                           '\\U00002910',\n\t\"REG;\":                             '\\U000000AE',\n\t\"Racute;\":                          '\\U00000154',\n\t\"Rang;\":                            '\\U000027EB',\n\t\"Rarr;\":                            '\\U000021A0',\n\t\"Rarrtl;\":                          '\\U00002916',\n\t\"Rcaron;\":                          '\\U00000158',\n\t\"Rcedil;\":                          '\\U00000156',\n\t\"Rcy;\":                             '\\U00000420',\n\t\"Re;\":                              '\\U0000211C',\n\t\"ReverseElement;\":                  '\\U0000220B',\n\t\"ReverseEquilibrium;\":              '\\U000021CB',\n\t\"ReverseUpEquilibrium;\":            '\\U0000296F',\n\t\"Rfr;\":                             '\\U0000211C',\n\t\"Rho;\":                             '\\U000003A1',\n\t\"RightAngleBracket;\":               '\\U000027E9',\n\t\"RightArrow;\":                      '\\U00002192',\n\t\"RightArrowBar;\":                   '\\U000021E5',\n\t\"RightArrowLeftArrow;\":             '\\U000021C4',\n\t\"RightCeiling;\":                    '\\U00002309',\n\t\"RightDoubleBracket;\":              '\\U000027E7',\n\t\"RightDownTeeVector;\":              '\\U0000295D',\n\t\"RightDownVector;\":                 '\\U000021C2',\n\t\"RightDownVectorBar;\":              '\\U00002955',\n\t\"RightFloor;\":                      '\\U0000230B',\n\t\"RightTee;\":                        '\\U000022A2',\n\t\"RightTeeArrow;\":                   '\\U000021A6',\n\t\"RightTeeVector;\":                  '\\U0000295B',\n\t\"RightTriangle;\":                   '\\U000022B3',\n\t\"RightTriangleBar;\":                '\\U000029D0',\n\t\"RightTriangleEqual;\":              '\\U000022B5',\n\t\"RightUpDownVector;\":               '\\U0000294F',\n\t\"RightUpTeeVector;\":                '\\U0000295C',\n\t\"RightUpVector;\":                   '\\U000021BE',\n\t\"RightUpVectorBar;\":                '\\U00002954',\n\t\"RightVector;\":                     '\\U000021C0',\n\t\"RightVectorBar;\":                  '\\U00002953',\n\t\"Rightarrow;\":                      '\\U000021D2',\n\t\"Ropf;\":                            '\\U0000211D',\n\t\"RoundImplies;\":                    '\\U00002970',\n\t\"Rrightarrow;\":                     '\\U000021DB',\n\t\"Rscr;\":                            '\\U0000211B',\n\t\"Rsh;\":                             '\\U000021B1',\n\t\"RuleDelayed;\":                     '\\U000029F4',\n\t\"SHCHcy;\":                          '\\U00000429',\n\t\"SHcy;\":                            '\\U00000428',\n\t\"SOFTcy;\":                          '\\U0000042C',\n\t\"Sacute;\":                          '\\U0000015A',\n\t\"Sc;\":                              '\\U00002ABC',\n\t\"Scaron;\":                          '\\U00000160',\n\t\"Scedil;\":                          '\\U0000015E',\n\t\"Scirc;\":                           '\\U0000015C',\n\t\"Scy;\":                             '\\U00000421',\n\t\"Sfr;\":                             '\\U0001D516',\n\t\"ShortDownArrow;\":                  '\\U00002193',\n\t\"ShortLeftArrow;\":                  '\\U00002190',\n\t\"ShortRightArrow;\":                 '\\U00002192',\n\t\"ShortUpArrow;\":                    '\\U00002191',\n\t\"Sigma;\":                           '\\U000003A3',\n\t\"SmallCircle;\":                     '\\U00002218',\n\t\"Sopf;\":                            '\\U0001D54A',\n\t\"Sqrt;\":                            '\\U0000221A',\n\t\"Square;\":                          '\\U000025A1',\n\t\"SquareIntersection;\":              '\\U00002293',\n\t\"SquareSubset;\":                    '\\U0000228F',\n\t\"SquareSubsetEqual;\":               '\\U00002291',\n\t\"SquareSuperset;\":                  '\\U00002290',\n\t\"SquareSupersetEqual;\":             '\\U00002292',\n\t\"SquareUnion;\":                     '\\U00002294',\n\t\"Sscr;\":                            '\\U0001D4AE',\n\t\"Star;\":                            '\\U000022C6',\n\t\"Sub;\":                             '\\U000022D0',\n\t\"Subset;\":                          '\\U000022D0',\n\t\"SubsetEqual;\":                     '\\U00002286',\n\t\"Succeeds;\":                        '\\U0000227B',\n\t\"SucceedsEqual;\":                   '\\U00002AB0',\n\t\"SucceedsSlantEqual;\":              '\\U0000227D',\n\t\"SucceedsTilde;\":                   '\\U0000227F',\n\t\"SuchThat;\":                        '\\U0000220B',\n\t\"Sum;\":                             '\\U00002211',\n\t\"Sup;\":                             '\\U000022D1',\n\t\"Superset;\":                        '\\U00002283',\n\t\"SupersetEqual;\":                   '\\U00002287',\n\t\"Supset;\":                          '\\U000022D1',\n\t\"THORN;\":                           '\\U000000DE',\n\t\"TRADE;\":                           '\\U00002122',\n\t\"TSHcy;\":                           '\\U0000040B',\n\t\"TScy;\":                            '\\U00000426',\n\t\"Tab;\":                             '\\U00000009',\n\t\"Tau;\":                             '\\U000003A4',\n\t\"Tcaron;\":                          '\\U00000164',\n\t\"Tcedil;\":                          '\\U00000162',\n\t\"Tcy;\":                             '\\U00000422',\n\t\"Tfr;\":                             '\\U0001D517',\n\t\"Therefore;\":                       '\\U00002234',\n\t\"Theta;\":                           '\\U00000398',\n\t\"ThinSpace;\":                       '\\U00002009',\n\t\"Tilde;\":                           '\\U0000223C',\n\t\"TildeEqual;\":                      '\\U00002243',\n\t\"TildeFullEqual;\":                  '\\U00002245',\n\t\"TildeTilde;\":                      '\\U00002248',\n\t\"Topf;\":                            '\\U0001D54B',\n\t\"TripleDot;\":                       '\\U000020DB',\n\t\"Tscr;\":                            '\\U0001D4AF',\n\t\"Tstrok;\":                          '\\U00000166',\n\t\"Uacute;\":                          '\\U000000DA',\n\t\"Uarr;\":                            '\\U0000219F',\n\t\"Uarrocir;\":                        '\\U00002949',\n\t\"Ubrcy;\":                           '\\U0000040E',\n\t\"Ubreve;\":                          '\\U0000016C',\n\t\"Ucirc;\":                           '\\U000000DB',\n\t\"Ucy;\":                             '\\U00000423',\n\t\"Udblac;\":                          '\\U00000170',\n\t\"Ufr;\":                             '\\U0001D518',\n\t\"Ugrave;\":                          '\\U000000D9',\n\t\"Umacr;\":                           '\\U0000016A',\n\t\"UnderBar;\":                        '\\U0000005F',\n\t\"UnderBrace;\":                      '\\U000023DF',\n\t\"UnderBracket;\":                    '\\U000023B5',\n\t\"UnderParenthesis;\":                '\\U000023DD',\n\t\"Union;\":                           '\\U000022C3',\n\t\"UnionPlus;\":                       '\\U0000228E',\n\t\"Uogon;\":                           '\\U00000172',\n\t\"Uopf;\":                            '\\U0001D54C',\n\t\"UpArrow;\":                         '\\U00002191',\n\t\"UpArrowBar;\":                      '\\U00002912',\n\t\"UpArrowDownArrow;\":                '\\U000021C5',\n\t\"UpDownArrow;\":                     '\\U00002195',\n\t\"UpEquilibrium;\":                   '\\U0000296E',\n\t\"UpTee;\":                           '\\U000022A5',\n\t\"UpTeeArrow;\":                      '\\U000021A5',\n\t\"Uparrow;\":                         '\\U000021D1',\n\t\"Updownarrow;\":                     '\\U000021D5',\n\t\"UpperLeftArrow;\":                  '\\U00002196',\n\t\"UpperRightArrow;\":                 '\\U00002197',\n\t\"Upsi;\":                            '\\U000003D2',\n\t\"Upsilon;\":                         '\\U000003A5',\n\t\"Uring;\":                           '\\U0000016E',\n\t\"Uscr;\":                            '\\U0001D4B0',\n\t\"Utilde;\":                          '\\U00000168',\n\t\"Uuml;\":                            '\\U000000DC',\n\t\"VDash;\":                           '\\U000022AB',\n\t\"Vbar;\":                            '\\U00002AEB',\n\t\"Vcy;\":                             '\\U00000412',\n\t\"Vdash;\":                           '\\U000022A9',\n\t\"Vdashl;\":                          '\\U00002AE6',\n\t\"Vee;\":                             '\\U000022C1',\n\t\"Verbar;\":                          '\\U00002016',\n\t\"Vert;\":                            '\\U00002016',\n\t\"VerticalBar;\":                     '\\U00002223',\n\t\"VerticalLine;\":                    '\\U0000007C',\n\t\"VerticalSeparator;\":               '\\U00002758',\n\t\"VerticalTilde;\":                   '\\U00002240',\n\t\"VeryThinSpace;\":                   '\\U0000200A',\n\t\"Vfr;\":                             '\\U0001D519',\n\t\"Vopf;\":                            '\\U0001D54D',\n\t\"Vscr;\":                            '\\U0001D4B1',\n\t\"Vvdash;\":                          '\\U000022AA',\n\t\"Wcirc;\":                           '\\U00000174',\n\t\"Wedge;\":                           '\\U000022C0',\n\t\"Wfr;\":                             '\\U0001D51A',\n\t\"Wopf;\":                            '\\U0001D54E',\n\t\"Wscr;\":                            '\\U0001D4B2',\n\t\"Xfr;\":                             '\\U0001D51B',\n\t\"Xi;\":                              '\\U0000039E',\n\t\"Xopf;\":                            '\\U0001D54F',\n\t\"Xscr;\":                            '\\U0001D4B3',\n\t\"YAcy;\":                            '\\U0000042F',\n\t\"YIcy;\":                            '\\U00000407',\n\t\"YUcy;\":                            '\\U0000042E',\n\t\"Yacute;\":                          '\\U000000DD',\n\t\"Ycirc;\":                           '\\U00000176',\n\t\"Ycy;\":                             '\\U0000042B',\n\t\"Yfr;\":                             '\\U0001D51C',\n\t\"Yopf;\":                            '\\U0001D550',\n\t\"Yscr;\":                            '\\U0001D4B4',\n\t\"Yuml;\":                            '\\U00000178',\n\t\"ZHcy;\":                            '\\U00000416',\n\t\"Zacute;\":                          '\\U00000179',\n\t\"Zcaron;\":                          '\\U0000017D',\n\t\"Zcy;\":                             '\\U00000417',\n\t\"Zdot;\":                            '\\U0000017B',\n\t\"ZeroWidthSpace;\":                  '\\U0000200B',\n\t\"Zeta;\":                            '\\U00000396',\n\t\"Zfr;\":                             '\\U00002128',\n\t\"Zopf;\":                            '\\U00002124',\n\t\"Zscr;\":                            '\\U0001D4B5',\n\t\"aacute;\":                          '\\U000000E1',\n\t\"abreve;\":                          '\\U00000103',\n\t\"ac;\":                              '\\U0000223E',\n\t\"acd;\":                             '\\U0000223F',\n\t\"acirc;\":                           '\\U000000E2',\n\t\"acute;\":                           '\\U000000B4',\n\t\"acy;\":                             '\\U00000430',\n\t\"aelig;\":                           '\\U000000E6',\n\t\"af;\":                              '\\U00002061',\n\t\"afr;\":                             '\\U0001D51E',\n\t\"agrave;\":                          '\\U000000E0',\n\t\"alefsym;\":                         '\\U00002135',\n\t\"aleph;\":                           '\\U00002135',\n\t\"alpha;\":                           '\\U000003B1',\n\t\"amacr;\":                           '\\U00000101',\n\t\"amalg;\":                           '\\U00002A3F',\n\t\"amp;\":                             '\\U00000026',\n\t\"and;\":                             '\\U00002227',\n\t\"andand;\":                          '\\U00002A55',\n\t\"andd;\":                            '\\U00002A5C',\n\t\"andslope;\":                        '\\U00002A58',\n\t\"andv;\":                            '\\U00002A5A',\n\t\"ang;\":                             '\\U00002220',\n\t\"ange;\":                            '\\U000029A4',\n\t\"angle;\":                           '\\U00002220',\n\t\"angmsd;\":                          '\\U00002221',\n\t\"angmsdaa;\":                        '\\U000029A8',\n\t\"angmsdab;\":                        '\\U000029A9',\n\t\"angmsdac;\":                        '\\U000029AA',\n\t\"angmsdad;\":                        '\\U000029AB',\n\t\"angmsdae;\":                        '\\U000029AC',\n\t\"angmsdaf;\":                        '\\U000029AD',\n\t\"angmsdag;\":                        '\\U000029AE',\n\t\"angmsdah;\":                        '\\U000029AF',\n\t\"angrt;\":                           '\\U0000221F',\n\t\"angrtvb;\":                         '\\U000022BE',\n\t\"angrtvbd;\":                        '\\U0000299D',\n\t\"angsph;\":                          '\\U00002222',\n\t\"angst;\":                           '\\U000000C5',\n\t\"angzarr;\":                         '\\U0000237C',\n\t\"aogon;\":                           '\\U00000105',\n\t\"aopf;\":                            '\\U0001D552',\n\t\"ap;\":                              '\\U00002248',\n\t\"apE;\":                             '\\U00002A70',\n\t\"apacir;\":                          '\\U00002A6F',\n\t\"ape;\":                             '\\U0000224A',\n\t\"apid;\":                            '\\U0000224B',\n\t\"apos;\":                            '\\U00000027',\n\t\"approx;\":                          '\\U00002248',\n\t\"approxeq;\":                        '\\U0000224A',\n\t\"aring;\":                           '\\U000000E5',\n\t\"ascr;\":                            '\\U0001D4B6',\n\t\"ast;\":                             '\\U0000002A',\n\t\"asymp;\":                           '\\U00002248',\n\t\"asympeq;\":                         '\\U0000224D',\n\t\"atilde;\":                          '\\U000000E3',\n\t\"auml;\":                            '\\U000000E4',\n\t\"awconint;\":                        '\\U00002233',\n\t\"awint;\":                           '\\U00002A11',\n\t\"bNot;\":                            '\\U00002AED',\n\t\"backcong;\":                        '\\U0000224C',\n\t\"backepsilon;\":                     '\\U000003F6',\n\t\"backprime;\":                       '\\U00002035',\n\t\"backsim;\":                         '\\U0000223D',\n\t\"backsimeq;\":                       '\\U000022CD',\n\t\"barvee;\":                          '\\U000022BD',\n\t\"barwed;\":                          '\\U00002305',\n\t\"barwedge;\":                        '\\U00002305',\n\t\"bbrk;\":                            '\\U000023B5',\n\t\"bbrktbrk;\":                        '\\U000023B6',\n\t\"bcong;\":                           '\\U0000224C',\n\t\"bcy;\":                             '\\U00000431',\n\t\"bdquo;\":                           '\\U0000201E',\n\t\"becaus;\":                          '\\U00002235',\n\t\"because;\":                         '\\U00002235',\n\t\"bemptyv;\":                         '\\U000029B0',\n\t\"bepsi;\":                           '\\U000003F6',\n\t\"bernou;\":                          '\\U0000212C',\n\t\"beta;\":                            '\\U000003B2',\n\t\"beth;\":                            '\\U00002136',\n\t\"between;\":                         '\\U0000226C',\n\t\"bfr;\":                             '\\U0001D51F',\n\t\"bigcap;\":                          '\\U000022C2',\n\t\"bigcirc;\":                         '\\U000025EF',\n\t\"bigcup;\":                          '\\U000022C3',\n\t\"bigodot;\":                         '\\U00002A00',\n\t\"bigoplus;\":                        '\\U00002A01',\n\t\"bigotimes;\":                       '\\U00002A02',\n\t\"bigsqcup;\":                        '\\U00002A06',\n\t\"bigstar;\":                         '\\U00002605',\n\t\"bigtriangledown;\":                 '\\U000025BD',\n\t\"bigtriangleup;\":                   '\\U000025B3',\n\t\"biguplus;\":                        '\\U00002A04',\n\t\"bigvee;\":                          '\\U000022C1',\n\t\"bigwedge;\":                        '\\U000022C0',\n\t\"bkarow;\":                          '\\U0000290D',\n\t\"blacklozenge;\":                    '\\U000029EB',\n\t\"blacksquare;\":                     '\\U000025AA',\n\t\"blacktriangle;\":                   '\\U000025B4',\n\t\"blacktriangledown;\":               '\\U000025BE',\n\t\"blacktriangleleft;\":               '\\U000025C2',\n\t\"blacktriangleright;\":              '\\U000025B8',\n\t\"blank;\":                           '\\U00002423',\n\t\"blk12;\":                           '\\U00002592',\n\t\"blk14;\":                           '\\U00002591',\n\t\"blk34;\":                           '\\U00002593',\n\t\"block;\":                           '\\U00002588',\n\t\"bnot;\":                            '\\U00002310',\n\t\"bopf;\":                            '\\U0001D553',\n\t\"bot;\":                             '\\U000022A5',\n\t\"bottom;\":                          '\\U000022A5',\n\t\"bowtie;\":                          '\\U000022C8',\n\t\"boxDL;\":                           '\\U00002557',\n\t\"boxDR;\":                           '\\U00002554',\n\t\"boxDl;\":                           '\\U00002556',\n\t\"boxDr;\":                           '\\U00002553',\n\t\"boxH;\":                            '\\U00002550',\n\t\"boxHD;\":                           '\\U00002566',\n\t\"boxHU;\":                           '\\U00002569',\n\t\"boxHd;\":                           '\\U00002564',\n\t\"boxHu;\":                           '\\U00002567',\n\t\"boxUL;\":                           '\\U0000255D',\n\t\"boxUR;\":                           '\\U0000255A',\n\t\"boxUl;\":                           '\\U0000255C',\n\t\"boxUr;\":                           '\\U00002559',\n\t\"boxV;\":                            '\\U00002551',\n\t\"boxVH;\":                           '\\U0000256C',\n\t\"boxVL;\":                           '\\U00002563',\n\t\"boxVR;\":                           '\\U00002560',\n\t\"boxVh;\":                           '\\U0000256B',\n\t\"boxVl;\":                           '\\U00002562',\n\t\"boxVr;\":                           '\\U0000255F',\n\t\"boxbox;\":                          '\\U000029C9',\n\t\"boxdL;\":                           '\\U00002555',\n\t\"boxdR;\":                           '\\U00002552',\n\t\"boxdl;\":                           '\\U00002510',\n\t\"boxdr;\":                           '\\U0000250C',\n\t\"boxh;\":                            '\\U00002500',\n\t\"boxhD;\":                           '\\U00002565',\n\t\"boxhU;\":                           '\\U00002568',\n\t\"boxhd;\":                           '\\U0000252C',\n\t\"boxhu;\":                           '\\U00002534',\n\t\"boxminus;\":                        '\\U0000229F',\n\t\"boxplus;\":                         '\\U0000229E',\n\t\"boxtimes;\":                        '\\U000022A0',\n\t\"boxuL;\":                           '\\U0000255B',\n\t\"boxuR;\":                           '\\U00002558',\n\t\"boxul;\":                           '\\U00002518',\n\t\"boxur;\":                           '\\U00002514',\n\t\"boxv;\":                            '\\U00002502',\n\t\"boxvH;\":                           '\\U0000256A',\n\t\"boxvL;\":                           '\\U00002561',\n\t\"boxvR;\":                           '\\U0000255E',\n\t\"boxvh;\":                           '\\U0000253C',\n\t\"boxvl;\":                           '\\U00002524',\n\t\"boxvr;\":                           '\\U0000251C',\n\t\"bprime;\":                          '\\U00002035',\n\t\"breve;\":                           '\\U000002D8',\n\t\"brvbar;\":                          '\\U000000A6',\n\t\"bscr;\":                            '\\U0001D4B7',\n\t\"bsemi;\":                           '\\U0000204F',\n\t\"bsim;\":                            '\\U0000223D',\n\t\"bsime;\":                           '\\U000022CD',\n\t\"bsol;\":                            '\\U0000005C',\n\t\"bsolb;\":                           '\\U000029C5',\n\t\"bsolhsub;\":                        '\\U000027C8',\n\t\"bull;\":                            '\\U00002022',\n\t\"bullet;\":                          '\\U00002022',\n\t\"bump;\":                            '\\U0000224E',\n\t\"bumpE;\":                           '\\U00002AAE',\n\t\"bumpe;\":                           '\\U0000224F',\n\t\"bumpeq;\":                          '\\U0000224F',\n\t\"cacute;\":                          '\\U00000107',\n\t\"cap;\":                             '\\U00002229',\n\t\"capand;\":                          '\\U00002A44',\n\t\"capbrcup;\":                        '\\U00002A49',\n\t\"capcap;\":                          '\\U00002A4B',\n\t\"capcup;\":                          '\\U00002A47',\n\t\"capdot;\":                          '\\U00002A40',\n\t\"caret;\":                           '\\U00002041',\n\t\"caron;\":                           '\\U000002C7',\n\t\"ccaps;\":                           '\\U00002A4D',\n\t\"ccaron;\":                          '\\U0000010D',\n\t\"ccedil;\":                          '\\U000000E7',\n\t\"ccirc;\":                           '\\U00000109',\n\t\"ccups;\":                           '\\U00002A4C',\n\t\"ccupssm;\":                         '\\U00002A50',\n\t\"cdot;\":                            '\\U0000010B',\n\t\"cedil;\":                           '\\U000000B8',\n\t\"cemptyv;\":                         '\\U000029B2',\n\t\"cent;\":                            '\\U000000A2',\n\t\"centerdot;\":                       '\\U000000B7',\n\t\"cfr;\":                             '\\U0001D520',\n\t\"chcy;\":                            '\\U00000447',\n\t\"check;\":                           '\\U00002713',\n\t\"checkmark;\":                       '\\U00002713',\n\t\"chi;\":                             '\\U000003C7',\n\t\"cir;\":                             '\\U000025CB',\n\t\"cirE;\":                            '\\U000029C3',\n\t\"circ;\":                            '\\U000002C6',\n\t\"circeq;\":                          '\\U00002257',\n\t\"circlearrowleft;\":                 '\\U000021BA',\n\t\"circlearrowright;\":                '\\U000021BB',\n\t\"circledR;\":                        '\\U000000AE',\n\t\"circledS;\":                        '\\U000024C8',\n\t\"circledast;\":                      '\\U0000229B',\n\t\"circledcirc;\":                     '\\U0000229A',\n\t\"circleddash;\":                     '\\U0000229D',\n\t\"cire;\":                            '\\U00002257',\n\t\"cirfnint;\":                        '\\U00002A10',\n\t\"cirmid;\":                          '\\U00002AEF',\n\t\"cirscir;\":                         '\\U000029C2',\n\t\"clubs;\":                           '\\U00002663',\n\t\"clubsuit;\":                        '\\U00002663',\n\t\"colon;\":                           '\\U0000003A',\n\t\"colone;\":                          '\\U00002254',\n\t\"coloneq;\":                         '\\U00002254',\n\t\"comma;\":                           '\\U0000002C',\n\t\"commat;\":                          '\\U00000040',\n\t\"comp;\":                            '\\U00002201',\n\t\"compfn;\":                          '\\U00002218',\n\t\"complement;\":                      '\\U00002201',\n\t\"complexes;\":                       '\\U00002102',\n\t\"cong;\":                            '\\U00002245',\n\t\"congdot;\":                         '\\U00002A6D',\n\t\"conint;\":                          '\\U0000222E',\n\t\"copf;\":                            '\\U0001D554',\n\t\"coprod;\":                          '\\U00002210',\n\t\"copy;\":                            '\\U000000A9',\n\t\"copysr;\":                          '\\U00002117',\n\t\"crarr;\":                           '\\U000021B5',\n\t\"cross;\":                           '\\U00002717',\n\t\"cscr;\":                            '\\U0001D4B8',\n\t\"csub;\":                            '\\U00002ACF',\n\t\"csube;\":                           '\\U00002AD1',\n\t\"csup;\":                            '\\U00002AD0',\n\t\"csupe;\":                           '\\U00002AD2',\n\t\"ctdot;\":                           '\\U000022EF',\n\t\"cudarrl;\":                         '\\U00002938',\n\t\"cudarrr;\":                         '\\U00002935',\n\t\"cuepr;\":                           '\\U000022DE',\n\t\"cuesc;\":                           '\\U000022DF',\n\t\"cularr;\":                          '\\U000021B6',\n\t\"cularrp;\":                         '\\U0000293D',\n\t\"cup;\":                             '\\U0000222A',\n\t\"cupbrcap;\":                        '\\U00002A48',\n\t\"cupcap;\":                          '\\U00002A46',\n\t\"cupcup;\":                          '\\U00002A4A',\n\t\"cupdot;\":                          '\\U0000228D',\n\t\"cupor;\":                           '\\U00002A45',\n\t\"curarr;\":                          '\\U000021B7',\n\t\"curarrm;\":                         '\\U0000293C',\n\t\"curlyeqprec;\":                     '\\U000022DE',\n\t\"curlyeqsucc;\":                     '\\U000022DF',\n\t\"curlyvee;\":                        '\\U000022CE',\n\t\"curlywedge;\":                      '\\U000022CF',\n\t\"curren;\":                          '\\U000000A4',\n\t\"curvearrowleft;\":                  '\\U000021B6',\n\t\"curvearrowright;\":                 '\\U000021B7',\n\t\"cuvee;\":                           '\\U000022CE',\n\t\"cuwed;\":                           '\\U000022CF',\n\t\"cwconint;\":                        '\\U00002232',\n\t\"cwint;\":                           '\\U00002231',\n\t\"cylcty;\":                          '\\U0000232D',\n\t\"dArr;\":                            '\\U000021D3',\n\t\"dHar;\":                            '\\U00002965',\n\t\"dagger;\":                          '\\U00002020',\n\t\"daleth;\":                          '\\U00002138',\n\t\"darr;\":                            '\\U00002193',\n\t\"dash;\":                            '\\U00002010',\n\t\"dashv;\":                           '\\U000022A3',\n\t\"dbkarow;\":                         '\\U0000290F',\n\t\"dblac;\":                           '\\U000002DD',\n\t\"dcaron;\":                          '\\U0000010F',\n\t\"dcy;\":                             '\\U00000434',\n\t\"dd;\":                              '\\U00002146',\n\t\"ddagger;\":                         '\\U00002021',\n\t\"ddarr;\":                           '\\U000021CA',\n\t\"ddotseq;\":                         '\\U00002A77',\n\t\"deg;\":                             '\\U000000B0',\n\t\"delta;\":                           '\\U000003B4',\n\t\"demptyv;\":                         '\\U000029B1',\n\t\"dfisht;\":                          '\\U0000297F',\n\t\"dfr;\":                             '\\U0001D521',\n\t\"dharl;\":                           '\\U000021C3',\n\t\"dharr;\":                           '\\U000021C2',\n\t\"diam;\":                            '\\U000022C4',\n\t\"diamond;\":                         '\\U000022C4',\n\t\"diamondsuit;\":                     '\\U00002666',\n\t\"diams;\":                           '\\U00002666',\n\t\"die;\":                             '\\U000000A8',\n\t\"digamma;\":                         '\\U000003DD',\n\t\"disin;\":                           '\\U000022F2',\n\t\"div;\":                             '\\U000000F7',\n\t\"divide;\":                          '\\U000000F7',\n\t\"divideontimes;\":                   '\\U000022C7',\n\t\"divonx;\":                          '\\U000022C7',\n\t\"djcy;\":                            '\\U00000452',\n\t\"dlcorn;\":                          '\\U0000231E',\n\t\"dlcrop;\":                          '\\U0000230D',\n\t\"dollar;\":                          '\\U00000024',\n\t\"dopf;\":                            '\\U0001D555',\n\t\"dot;\":                             '\\U000002D9',\n\t\"doteq;\":                           '\\U00002250',\n\t\"doteqdot;\":                        '\\U00002251',\n\t\"dotminus;\":                        '\\U00002238',\n\t\"dotplus;\":                         '\\U00002214',\n\t\"dotsquare;\":                       '\\U000022A1',\n\t\"doublebarwedge;\":                  '\\U00002306',\n\t\"downarrow;\":                       '\\U00002193',\n\t\"downdownarrows;\":                  '\\U000021CA',\n\t\"downharpoonleft;\":                 '\\U000021C3',\n\t\"downharpoonright;\":                '\\U000021C2',\n\t\"drbkarow;\":                        '\\U00002910',\n\t\"drcorn;\":                          '\\U0000231F',\n\t\"drcrop;\":                          '\\U0000230C',\n\t\"dscr;\":                            '\\U0001D4B9',\n\t\"dscy;\":                            '\\U00000455',\n\t\"dsol;\":                            '\\U000029F6',\n\t\"dstrok;\":                          '\\U00000111',\n\t\"dtdot;\":                           '\\U000022F1',\n\t\"dtri;\":                            '\\U000025BF',\n\t\"dtrif;\":                           '\\U000025BE',\n\t\"duarr;\":                           '\\U000021F5',\n\t\"duhar;\":                           '\\U0000296F',\n\t\"dwangle;\":                         '\\U000029A6',\n\t\"dzcy;\":                            '\\U0000045F',\n\t\"dzigrarr;\":                        '\\U000027FF',\n\t\"eDDot;\":                           '\\U00002A77',\n\t\"eDot;\":                            '\\U00002251',\n\t\"eacute;\":                          '\\U000000E9',\n\t\"easter;\":                          '\\U00002A6E',\n\t\"ecaron;\":                          '\\U0000011B',\n\t\"ecir;\":                            '\\U00002256',\n\t\"ecirc;\":                           '\\U000000EA',\n\t\"ecolon;\":                          '\\U00002255',\n\t\"ecy;\":                             '\\U0000044D',\n\t\"edot;\":                            '\\U00000117',\n\t\"ee;\":                              '\\U00002147',\n\t\"efDot;\":                           '\\U00002252',\n\t\"efr;\":                             '\\U0001D522',\n\t\"eg;\":                              '\\U00002A9A',\n\t\"egrave;\":                          '\\U000000E8',\n\t\"egs;\":                             '\\U00002A96',\n\t\"egsdot;\":                          '\\U00002A98',\n\t\"el;\":                              '\\U00002A99',\n\t\"elinters;\":                        '\\U000023E7',\n\t\"ell;\":                             '\\U00002113',\n\t\"els;\":                             '\\U00002A95',\n\t\"elsdot;\":                          '\\U00002A97',\n\t\"emacr;\":                           '\\U00000113',\n\t\"empty;\":                           '\\U00002205',\n\t\"emptyset;\":                        '\\U00002205',\n\t\"emptyv;\":                          '\\U00002205',\n\t\"emsp;\":                            '\\U00002003',\n\t\"emsp13;\":                          '\\U00002004',\n\t\"emsp14;\":                          '\\U00002005',\n\t\"eng;\":                             '\\U0000014B',\n\t\"ensp;\":                            '\\U00002002',\n\t\"eogon;\":                           '\\U00000119',\n\t\"eopf;\":                            '\\U0001D556',\n\t\"epar;\":                            '\\U000022D5',\n\t\"eparsl;\":                          '\\U000029E3',\n\t\"eplus;\":                           '\\U00002A71',\n\t\"epsi;\":                            '\\U000003B5',\n\t\"epsilon;\":                         '\\U000003B5',\n\t\"epsiv;\":                           '\\U000003F5',\n\t\"eqcirc;\":                          '\\U00002256',\n\t\"eqcolon;\":                         '\\U00002255',\n\t\"eqsim;\":                           '\\U00002242',\n\t\"eqslantgtr;\":                      '\\U00002A96',\n\t\"eqslantless;\":                     '\\U00002A95',\n\t\"equals;\":                          '\\U0000003D',\n\t\"equest;\":                          '\\U0000225F',\n\t\"equiv;\":                           '\\U00002261',\n\t\"equivDD;\":                         '\\U00002A78',\n\t\"eqvparsl;\":                        '\\U000029E5',\n\t\"erDot;\":                           '\\U00002253',\n\t\"erarr;\":                           '\\U00002971',\n\t\"escr;\":                            '\\U0000212F',\n\t\"esdot;\":                           '\\U00002250',\n\t\"esim;\":                            '\\U00002242',\n\t\"eta;\":                             '\\U000003B7',\n\t\"eth;\":                             '\\U000000F0',\n\t\"euml;\":                            '\\U000000EB',\n\t\"euro;\":                            '\\U000020AC',\n\t\"excl;\":                            '\\U00000021',\n\t\"exist;\":                           '\\U00002203',\n\t\"expectation;\":                     '\\U00002130',\n\t\"exponentiale;\":                    '\\U00002147',\n\t\"fallingdotseq;\":                   '\\U00002252',\n\t\"fcy;\":                             '\\U00000444',\n\t\"female;\":                          '\\U00002640',\n\t\"ffilig;\":                          '\\U0000FB03',\n\t\"fflig;\":                           '\\U0000FB00',\n\t\"ffllig;\":                          '\\U0000FB04',\n\t\"ffr;\":                             '\\U0001D523',\n\t\"filig;\":                           '\\U0000FB01',\n\t\"flat;\":                            '\\U0000266D',\n\t\"fllig;\":                           '\\U0000FB02',\n\t\"fltns;\":                           '\\U000025B1',\n\t\"fnof;\":                            '\\U00000192',\n\t\"fopf;\":                            '\\U0001D557',\n\t\"forall;\":                          '\\U00002200',\n\t\"fork;\":                            '\\U000022D4',\n\t\"forkv;\":                           '\\U00002AD9',\n\t\"fpartint;\":                        '\\U00002A0D',\n\t\"frac12;\":                          '\\U000000BD',\n\t\"frac13;\":                          '\\U00002153',\n\t\"frac14;\":                          '\\U000000BC',\n\t\"frac15;\":                          '\\U00002155',\n\t\"frac16;\":                          '\\U00002159',\n\t\"frac18;\":                          '\\U0000215B',\n\t\"frac23;\":                          '\\U00002154',\n\t\"frac25;\":                          '\\U00002156',\n\t\"frac34;\":                          '\\U000000BE',\n\t\"frac35;\":                          '\\U00002157',\n\t\"frac38;\":                          '\\U0000215C',\n\t\"frac45;\":                          '\\U00002158',\n\t\"frac56;\":                          '\\U0000215A',\n\t\"frac58;\":                          '\\U0000215D',\n\t\"frac78;\":                          '\\U0000215E',\n\t\"frasl;\":                           '\\U00002044',\n\t\"frown;\":                           '\\U00002322',\n\t\"fscr;\":                            '\\U0001D4BB',\n\t\"gE;\":                              '\\U00002267',\n\t\"gEl;\":                             '\\U00002A8C',\n\t\"gacute;\":                          '\\U000001F5',\n\t\"gamma;\":                           '\\U000003B3',\n\t\"gammad;\":                          '\\U000003DD',\n\t\"gap;\":                             '\\U00002A86',\n\t\"gbreve;\":                          '\\U0000011F',\n\t\"gcirc;\":                           '\\U0000011D',\n\t\"gcy;\":                             '\\U00000433',\n\t\"gdot;\":                            '\\U00000121',\n\t\"ge;\":                              '\\U00002265',\n\t\"gel;\":                             '\\U000022DB',\n\t\"geq;\":                             '\\U00002265',\n\t\"geqq;\":                            '\\U00002267',\n\t\"geqslant;\":                        '\\U00002A7E',\n\t\"ges;\":                             '\\U00002A7E',\n\t\"gescc;\":                           '\\U00002AA9',\n\t\"gesdot;\":                          '\\U00002A80',\n\t\"gesdoto;\":                         '\\U00002A82',\n\t\"gesdotol;\":                        '\\U00002A84',\n\t\"gesles;\":                          '\\U00002A94',\n\t\"gfr;\":                             '\\U0001D524',\n\t\"gg;\":                              '\\U0000226B',\n\t\"ggg;\":                             '\\U000022D9',\n\t\"gimel;\":                           '\\U00002137',\n\t\"gjcy;\":                            '\\U00000453',\n\t\"gl;\":                              '\\U00002277',\n\t\"glE;\":                             '\\U00002A92',\n\t\"gla;\":                             '\\U00002AA5',\n\t\"glj;\":                             '\\U00002AA4',\n\t\"gnE;\":                             '\\U00002269',\n\t\"gnap;\":                            '\\U00002A8A',\n\t\"gnapprox;\":                        '\\U00002A8A',\n\t\"gne;\":                             '\\U00002A88',\n\t\"gneq;\":                            '\\U00002A88',\n\t\"gneqq;\":                           '\\U00002269',\n\t\"gnsim;\":                           '\\U000022E7',\n\t\"gopf;\":                            '\\U0001D558',\n\t\"grave;\":                           '\\U00000060',\n\t\"gscr;\":                            '\\U0000210A',\n\t\"gsim;\":                            '\\U00002273',\n\t\"gsime;\":                           '\\U00002A8E',\n\t\"gsiml;\":                           '\\U00002A90',\n\t\"gt;\":                              '\\U0000003E',\n\t\"gtcc;\":                            '\\U00002AA7',\n\t\"gtcir;\":                           '\\U00002A7A',\n\t\"gtdot;\":                           '\\U000022D7',\n\t\"gtlPar;\":                          '\\U00002995',\n\t\"gtquest;\":                         '\\U00002A7C',\n\t\"gtrapprox;\":                       '\\U00002A86',\n\t\"gtrarr;\":                          '\\U00002978',\n\t\"gtrdot;\":                          '\\U000022D7',\n\t\"gtreqless;\":                       '\\U000022DB',\n\t\"gtreqqless;\":                      '\\U00002A8C',\n\t\"gtrless;\":                         '\\U00002277',\n\t\"gtrsim;\":                          '\\U00002273',\n\t\"hArr;\":                            '\\U000021D4',\n\t\"hairsp;\":                          '\\U0000200A',\n\t\"half;\":                            '\\U000000BD',\n\t\"hamilt;\":                          '\\U0000210B',\n\t\"hardcy;\":                          '\\U0000044A',\n\t\"harr;\":                            '\\U00002194',\n\t\"harrcir;\":                         '\\U00002948',\n\t\"harrw;\":                           '\\U000021AD',\n\t\"hbar;\":                            '\\U0000210F',\n\t\"hcirc;\":                           '\\U00000125',\n\t\"hearts;\":                          '\\U00002665',\n\t\"heartsuit;\":                       '\\U00002665',\n\t\"hellip;\":                          '\\U00002026',\n\t\"hercon;\":                          '\\U000022B9',\n\t\"hfr;\":                             '\\U0001D525',\n\t\"hksearow;\":                        '\\U00002925',\n\t\"hkswarow;\":                        '\\U00002926',\n\t\"hoarr;\":                           '\\U000021FF',\n\t\"homtht;\":                          '\\U0000223B',\n\t\"hookleftarrow;\":                   '\\U000021A9',\n\t\"hookrightarrow;\":                  '\\U000021AA',\n\t\"hopf;\":                            '\\U0001D559',\n\t\"horbar;\":                          '\\U00002015',\n\t\"hscr;\":                            '\\U0001D4BD',\n\t\"hslash;\":                          '\\U0000210F',\n\t\"hstrok;\":                          '\\U00000127',\n\t\"hybull;\":                          '\\U00002043',\n\t\"hyphen;\":                          '\\U00002010',\n\t\"iacute;\":                          '\\U000000ED',\n\t\"ic;\":                              '\\U00002063',\n\t\"icirc;\":                           '\\U000000EE',\n\t\"icy;\":                             '\\U00000438',\n\t\"iecy;\":                            '\\U00000435',\n\t\"iexcl;\":                           '\\U000000A1',\n\t\"iff;\":                             '\\U000021D4',\n\t\"ifr;\":                             '\\U0001D526',\n\t\"igrave;\":                          '\\U000000EC',\n\t\"ii;\":                              '\\U00002148',\n\t\"iiiint;\":                          '\\U00002A0C',\n\t\"iiint;\":                           '\\U0000222D',\n\t\"iinfin;\":                          '\\U000029DC',\n\t\"iiota;\":                           '\\U00002129',\n\t\"ijlig;\":                           '\\U00000133',\n\t\"imacr;\":                           '\\U0000012B',\n\t\"image;\":                           '\\U00002111',\n\t\"imagline;\":                        '\\U00002110',\n\t\"imagpart;\":                        '\\U00002111',\n\t\"imath;\":                           '\\U00000131',\n\t\"imof;\":                            '\\U000022B7',\n\t\"imped;\":                           '\\U000001B5',\n\t\"in;\":                              '\\U00002208',\n\t\"incare;\":                          '\\U00002105',\n\t\"infin;\":                           '\\U0000221E',\n\t\"infintie;\":                        '\\U000029DD',\n\t\"inodot;\":                          '\\U00000131',\n\t\"int;\":                             '\\U0000222B',\n\t\"intcal;\":                          '\\U000022BA',\n\t\"integers;\":                        '\\U00002124',\n\t\"intercal;\":                        '\\U000022BA',\n\t\"intlarhk;\":                        '\\U00002A17',\n\t\"intprod;\":                         '\\U00002A3C',\n\t\"iocy;\":                            '\\U00000451',\n\t\"iogon;\":                           '\\U0000012F',\n\t\"iopf;\":                            '\\U0001D55A',\n\t\"iota;\":                            '\\U000003B9',\n\t\"iprod;\":                           '\\U00002A3C',\n\t\"iquest;\":                          '\\U000000BF',\n\t\"iscr;\":                            '\\U0001D4BE',\n\t\"isin;\":                            '\\U00002208',\n\t\"isinE;\":                           '\\U000022F9',\n\t\"isindot;\":                         '\\U000022F5',\n\t\"isins;\":                           '\\U000022F4',\n\t\"isinsv;\":                          '\\U000022F3',\n\t\"isinv;\":                           '\\U00002208',\n\t\"it;\":                              '\\U00002062',\n\t\"itilde;\":                          '\\U00000129',\n\t\"iukcy;\":                           '\\U00000456',\n\t\"iuml;\":                            '\\U000000EF',\n\t\"jcirc;\":                           '\\U00000135',\n\t\"jcy;\":                             '\\U00000439',\n\t\"jfr;\":                             '\\U0001D527',\n\t\"jmath;\":                           '\\U00000237',\n\t\"jopf;\":                            '\\U0001D55B',\n\t\"jscr;\":                            '\\U0001D4BF',\n\t\"jsercy;\":                          '\\U00000458',\n\t\"jukcy;\":                           '\\U00000454',\n\t\"kappa;\":                           '\\U000003BA',\n\t\"kappav;\":                          '\\U000003F0',\n\t\"kcedil;\":                          '\\U00000137',\n\t\"kcy;\":                             '\\U0000043A',\n\t\"kfr;\":                             '\\U0001D528',\n\t\"kgreen;\":                          '\\U00000138',\n\t\"khcy;\":                            '\\U00000445',\n\t\"kjcy;\":                            '\\U0000045C',\n\t\"kopf;\":                            '\\U0001D55C',\n\t\"kscr;\":                            '\\U0001D4C0',\n\t\"lAarr;\":                           '\\U000021DA',\n\t\"lArr;\":                            '\\U000021D0',\n\t\"lAtail;\":                          '\\U0000291B',\n\t\"lBarr;\":                           '\\U0000290E',\n\t\"lE;\":                              '\\U00002266',\n\t\"lEg;\":                             '\\U00002A8B',\n\t\"lHar;\":                            '\\U00002962',\n\t\"lacute;\":                          '\\U0000013A',\n\t\"laemptyv;\":                        '\\U000029B4',\n\t\"lagran;\":                          '\\U00002112',\n\t\"lambda;\":                          '\\U000003BB',\n\t\"lang;\":                            '\\U000027E8',\n\t\"langd;\":                           '\\U00002991',\n\t\"langle;\":                          '\\U000027E8',\n\t\"lap;\":                             '\\U00002A85',\n\t\"laquo;\":                           '\\U000000AB',\n\t\"larr;\":                            '\\U00002190',\n\t\"larrb;\":                           '\\U000021E4',\n\t\"larrbfs;\":                         '\\U0000291F',\n\t\"larrfs;\":                          '\\U0000291D',\n\t\"larrhk;\":                          '\\U000021A9',\n\t\"larrlp;\":                          '\\U000021AB',\n\t\"larrpl;\":                          '\\U00002939',\n\t\"larrsim;\":                         '\\U00002973',\n\t\"larrtl;\":                          '\\U000021A2',\n\t\"lat;\":                             '\\U00002AAB',\n\t\"latail;\":                          '\\U00002919',\n\t\"late;\":                            '\\U00002AAD',\n\t\"lbarr;\":                           '\\U0000290C',\n\t\"lbbrk;\":                           '\\U00002772',\n\t\"lbrace;\":                          '\\U0000007B',\n\t\"lbrack;\":                          '\\U0000005B',\n\t\"lbrke;\":                           '\\U0000298B',\n\t\"lbrksld;\":                         '\\U0000298F',\n\t\"lbrkslu;\":                         '\\U0000298D',\n\t\"lcaron;\":                          '\\U0000013E',\n\t\"lcedil;\":                          '\\U0000013C',\n\t\"lceil;\":                           '\\U00002308',\n\t\"lcub;\":                            '\\U0000007B',\n\t\"lcy;\":                             '\\U0000043B',\n\t\"ldca;\":                            '\\U00002936',\n\t\"ldquo;\":                           '\\U0000201C',\n\t\"ldquor;\":                          '\\U0000201E',\n\t\"ldrdhar;\":                         '\\U00002967',\n\t\"ldrushar;\":                        '\\U0000294B',\n\t\"ldsh;\":                            '\\U000021B2',\n\t\"le;\":                              '\\U00002264',\n\t\"leftarrow;\":                       '\\U00002190',\n\t\"leftarrowtail;\":                   '\\U000021A2',\n\t\"leftharpoondown;\":                 '\\U000021BD',\n\t\"leftharpoonup;\":                   '\\U000021BC',\n\t\"leftleftarrows;\":                  '\\U000021C7',\n\t\"leftrightarrow;\":                  '\\U00002194',\n\t\"leftrightarrows;\":                 '\\U000021C6',\n\t\"leftrightharpoons;\":               '\\U000021CB',\n\t\"leftrightsquigarrow;\":             '\\U000021AD',\n\t\"leftthreetimes;\":                  '\\U000022CB',\n\t\"leg;\":                             '\\U000022DA',\n\t\"leq;\":                             '\\U00002264',\n\t\"leqq;\":                            '\\U00002266',\n\t\"leqslant;\":                        '\\U00002A7D',\n\t\"les;\":                             '\\U00002A7D',\n\t\"lescc;\":                           '\\U00002AA8',\n\t\"lesdot;\":                          '\\U00002A7F',\n\t\"lesdoto;\":                         '\\U00002A81',\n\t\"lesdotor;\":                        '\\U00002A83',\n\t\"lesges;\":                          '\\U00002A93',\n\t\"lessapprox;\":                      '\\U00002A85',\n\t\"lessdot;\":                         '\\U000022D6',\n\t\"lesseqgtr;\":                       '\\U000022DA',\n\t\"lesseqqgtr;\":                      '\\U00002A8B',\n\t\"lessgtr;\":                         '\\U00002276',\n\t\"lesssim;\":                         '\\U00002272',\n\t\"lfisht;\":                          '\\U0000297C',\n\t\"lfloor;\":                          '\\U0000230A',\n\t\"lfr;\":                             '\\U0001D529',\n\t\"lg;\":                              '\\U00002276',\n\t\"lgE;\":                             '\\U00002A91',\n\t\"lhard;\":                           '\\U000021BD',\n\t\"lharu;\":                           '\\U000021BC',\n\t\"lharul;\":                          '\\U0000296A',\n\t\"lhblk;\":                           '\\U00002584',\n\t\"ljcy;\":                            '\\U00000459',\n\t\"ll;\":                              '\\U0000226A',\n\t\"llarr;\":                           '\\U000021C7',\n\t\"llcorner;\":                        '\\U0000231E',\n\t\"llhard;\":                          '\\U0000296B',\n\t\"lltri;\":                           '\\U000025FA',\n\t\"lmidot;\":                          '\\U00000140',\n\t\"lmoust;\":                          '\\U000023B0',\n\t\"lmoustache;\":                      '\\U000023B0',\n\t\"lnE;\":                             '\\U00002268',\n\t\"lnap;\":                            '\\U00002A89',\n\t\"lnapprox;\":                        '\\U00002A89',\n\t\"lne;\":                             '\\U00002A87',\n\t\"lneq;\":                            '\\U00002A87',\n\t\"lneqq;\":                           '\\U00002268',\n\t\"lnsim;\":                           '\\U000022E6',\n\t\"loang;\":                           '\\U000027EC',\n\t\"loarr;\":                           '\\U000021FD',\n\t\"lobrk;\":                           '\\U000027E6',\n\t\"longleftarrow;\":                   '\\U000027F5',\n\t\"longleftrightarrow;\":              '\\U000027F7',\n\t\"longmapsto;\":                      '\\U000027FC',\n\t\"longrightarrow;\":                  '\\U000027F6',\n\t\"looparrowleft;\":                   '\\U000021AB',\n\t\"looparrowright;\":                  '\\U000021AC',\n\t\"lopar;\":                           '\\U00002985',\n\t\"lopf;\":                            '\\U0001D55D',\n\t\"loplus;\":                          '\\U00002A2D',\n\t\"lotimes;\":                         '\\U00002A34',\n\t\"lowast;\":                          '\\U00002217',\n\t\"lowbar;\":                          '\\U0000005F',\n\t\"loz;\":                             '\\U000025CA',\n\t\"lozenge;\":                         '\\U000025CA',\n\t\"lozf;\":                            '\\U000029EB',\n\t\"lpar;\":                            '\\U00000028',\n\t\"lparlt;\":                          '\\U00002993',\n\t\"lrarr;\":                           '\\U000021C6',\n\t\"lrcorner;\":                        '\\U0000231F',\n\t\"lrhar;\":                           '\\U000021CB',\n\t\"lrhard;\":                          '\\U0000296D',\n\t\"lrm;\":                             '\\U0000200E',\n\t\"lrtri;\":                           '\\U000022BF',\n\t\"lsaquo;\":                          '\\U00002039',\n\t\"lscr;\":                            '\\U0001D4C1',\n\t\"lsh;\":                             '\\U000021B0',\n\t\"lsim;\":                            '\\U00002272',\n\t\"lsime;\":                           '\\U00002A8D',\n\t\"lsimg;\":                           '\\U00002A8F',\n\t\"lsqb;\":                            '\\U0000005B',\n\t\"lsquo;\":                           '\\U00002018',\n\t\"lsquor;\":                          '\\U0000201A',\n\t\"lstrok;\":                          '\\U00000142',\n\t\"lt;\":                              '\\U0000003C',\n\t\"ltcc;\":                            '\\U00002AA6',\n\t\"ltcir;\":                           '\\U00002A79',\n\t\"ltdot;\":                           '\\U000022D6',\n\t\"lthree;\":                          '\\U000022CB',\n\t\"ltimes;\":                          '\\U000022C9',\n\t\"ltlarr;\":                          '\\U00002976',\n\t\"ltquest;\":                         '\\U00002A7B',\n\t\"ltrPar;\":                          '\\U00002996',\n\t\"ltri;\":                            '\\U000025C3',\n\t\"ltrie;\":                           '\\U000022B4',\n\t\"ltrif;\":                           '\\U000025C2',\n\t\"lurdshar;\":                        '\\U0000294A',\n\t\"luruhar;\":                         '\\U00002966',\n\t\"mDDot;\":                           '\\U0000223A',\n\t\"macr;\":                            '\\U000000AF',\n\t\"male;\":                            '\\U00002642',\n\t\"malt;\":                            '\\U00002720',\n\t\"maltese;\":                         '\\U00002720',\n\t\"map;\":                             '\\U000021A6',\n\t\"mapsto;\":                          '\\U000021A6',\n\t\"mapstodown;\":                      '\\U000021A7',\n\t\"mapstoleft;\":                      '\\U000021A4',\n\t\"mapstoup;\":                        '\\U000021A5',\n\t\"marker;\":                          '\\U000025AE',\n\t\"mcomma;\":                          '\\U00002A29',\n\t\"mcy;\":                             '\\U0000043C',\n\t\"mdash;\":                           '\\U00002014',\n\t\"measuredangle;\":                   '\\U00002221',\n\t\"mfr;\":                             '\\U0001D52A',\n\t\"mho;\":                             '\\U00002127',\n\t\"micro;\":                           '\\U000000B5',\n\t\"mid;\":                             '\\U00002223',\n\t\"midast;\":                          '\\U0000002A',\n\t\"midcir;\":                          '\\U00002AF0',\n\t\"middot;\":                          '\\U000000B7',\n\t\"minus;\":                           '\\U00002212',\n\t\"minusb;\":                          '\\U0000229F',\n\t\"minusd;\":                          '\\U00002238',\n\t\"minusdu;\":                         '\\U00002A2A',\n\t\"mlcp;\":                            '\\U00002ADB',\n\t\"mldr;\":                            '\\U00002026',\n\t\"mnplus;\":                          '\\U00002213',\n\t\"models;\":                          '\\U000022A7',\n\t\"mopf;\":                            '\\U0001D55E',\n\t\"mp;\":                              '\\U00002213',\n\t\"mscr;\":                            '\\U0001D4C2',\n\t\"mstpos;\":                          '\\U0000223E',\n\t\"mu;\":                              '\\U000003BC',\n\t\"multimap;\":                        '\\U000022B8',\n\t\"mumap;\":                           '\\U000022B8',\n\t\"nLeftarrow;\":                      '\\U000021CD',\n\t\"nLeftrightarrow;\":                 '\\U000021CE',\n\t\"nRightarrow;\":                     '\\U000021CF',\n\t\"nVDash;\":                          '\\U000022AF',\n\t\"nVdash;\":                          '\\U000022AE',\n\t\"nabla;\":                           '\\U00002207',\n\t\"nacute;\":                          '\\U00000144',\n\t\"nap;\":                             '\\U00002249',\n\t\"napos;\":                           '\\U00000149',\n\t\"napprox;\":                         '\\U00002249',\n\t\"natur;\":                           '\\U0000266E',\n\t\"natural;\":                         '\\U0000266E',\n\t\"naturals;\":                        '\\U00002115',\n\t\"nbsp;\":                            '\\U000000A0',\n\t\"ncap;\":                            '\\U00002A43',\n\t\"ncaron;\":                          '\\U00000148',\n\t\"ncedil;\":                          '\\U00000146',\n\t\"ncong;\":                           '\\U00002247',\n\t\"ncup;\":                            '\\U00002A42',\n\t\"ncy;\":                             '\\U0000043D',\n\t\"ndash;\":                           '\\U00002013',\n\t\"ne;\":                              '\\U00002260',\n\t\"neArr;\":                           '\\U000021D7',\n\t\"nearhk;\":                          '\\U00002924',\n\t\"nearr;\":                           '\\U00002197',\n\t\"nearrow;\":                         '\\U00002197',\n\t\"nequiv;\":                          '\\U00002262',\n\t\"nesear;\":                          '\\U00002928',\n\t\"nexist;\":                          '\\U00002204',\n\t\"nexists;\":                         '\\U00002204',\n\t\"nfr;\":                             '\\U0001D52B',\n\t\"nge;\":                             '\\U00002271',\n\t\"ngeq;\":                            '\\U00002271',\n\t\"ngsim;\":                           '\\U00002275',\n\t\"ngt;\":                             '\\U0000226F',\n\t\"ngtr;\":                            '\\U0000226F',\n\t\"nhArr;\":                           '\\U000021CE',\n\t\"nharr;\":                           '\\U000021AE',\n\t\"nhpar;\":                           '\\U00002AF2',\n\t\"ni;\":                              '\\U0000220B',\n\t\"nis;\":                             '\\U000022FC',\n\t\"nisd;\":                            '\\U000022FA',\n\t\"niv;\":                             '\\U0000220B',\n\t\"njcy;\":                            '\\U0000045A',\n\t\"nlArr;\":                           '\\U000021CD',\n\t\"nlarr;\":                           '\\U0000219A',\n\t\"nldr;\":                            '\\U00002025',\n\t\"nle;\":                             '\\U00002270',\n\t\"nleftarrow;\":                      '\\U0000219A',\n\t\"nleftrightarrow;\":                 '\\U000021AE',\n\t\"nleq;\":                            '\\U00002270',\n\t\"nless;\":                           '\\U0000226E',\n\t\"nlsim;\":                           '\\U00002274',\n\t\"nlt;\":                             '\\U0000226E',\n\t\"nltri;\":                           '\\U000022EA',\n\t\"nltrie;\":                          '\\U000022EC',\n\t\"nmid;\":                            '\\U00002224',\n\t\"nopf;\":                            '\\U0001D55F',\n\t\"not;\":                             '\\U000000AC',\n\t\"notin;\":                           '\\U00002209',\n\t\"notinva;\":                         '\\U00002209',\n\t\"notinvb;\":                         '\\U000022F7',\n\t\"notinvc;\":                         '\\U000022F6',\n\t\"notni;\":                           '\\U0000220C',\n\t\"notniva;\":                         '\\U0000220C',\n\t\"notnivb;\":                         '\\U000022FE',\n\t\"notnivc;\":                         '\\U000022FD',\n\t\"npar;\":                            '\\U00002226',\n\t\"nparallel;\":                       '\\U00002226',\n\t\"npolint;\":                         '\\U00002A14',\n\t\"npr;\":                             '\\U00002280',\n\t\"nprcue;\":                          '\\U000022E0',\n\t\"nprec;\":                           '\\U00002280',\n\t\"nrArr;\":                           '\\U000021CF',\n\t\"nrarr;\":                           '\\U0000219B',\n\t\"nrightarrow;\":                     '\\U0000219B',\n\t\"nrtri;\":                           '\\U000022EB',\n\t\"nrtrie;\":                          '\\U000022ED',\n\t\"nsc;\":                             '\\U00002281',\n\t\"nsccue;\":                          '\\U000022E1',\n\t\"nscr;\":                            '\\U0001D4C3',\n\t\"nshortmid;\":                       '\\U00002224',\n\t\"nshortparallel;\":                  '\\U00002226',\n\t\"nsim;\":                            '\\U00002241',\n\t\"nsime;\":                           '\\U00002244',\n\t\"nsimeq;\":                          '\\U00002244',\n\t\"nsmid;\":                           '\\U00002224',\n\t\"nspar;\":                           '\\U00002226',\n\t\"nsqsube;\":                         '\\U000022E2',\n\t\"nsqsupe;\":                         '\\U000022E3',\n\t\"nsub;\":                            '\\U00002284',\n\t\"nsube;\":                           '\\U00002288',\n\t\"nsubseteq;\":                       '\\U00002288',\n\t\"nsucc;\":                           '\\U00002281',\n\t\"nsup;\":                            '\\U00002285',\n\t\"nsupe;\":                           '\\U00002289',\n\t\"nsupseteq;\":                       '\\U00002289',\n\t\"ntgl;\":                            '\\U00002279',\n\t\"ntilde;\":                          '\\U000000F1',\n\t\"ntlg;\":                            '\\U00002278',\n\t\"ntriangleleft;\":                   '\\U000022EA',\n\t\"ntrianglelefteq;\":                 '\\U000022EC',\n\t\"ntriangleright;\":                  '\\U000022EB',\n\t\"ntrianglerighteq;\":                '\\U000022ED',\n\t\"nu;\":                              '\\U000003BD',\n\t\"num;\":                             '\\U00000023',\n\t\"numero;\":                          '\\U00002116',\n\t\"numsp;\":                           '\\U00002007',\n\t\"nvDash;\":                          '\\U000022AD',\n\t\"nvHarr;\":                          '\\U00002904',\n\t\"nvdash;\":                          '\\U000022AC',\n\t\"nvinfin;\":                         '\\U000029DE',\n\t\"nvlArr;\":                          '\\U00002902',\n\t\"nvrArr;\":                          '\\U00002903',\n\t\"nwArr;\":                           '\\U000021D6',\n\t\"nwarhk;\":                          '\\U00002923',\n\t\"nwarr;\":                           '\\U00002196',\n\t\"nwarrow;\":                         '\\U00002196',\n\t\"nwnear;\":                          '\\U00002927',\n\t\"oS;\":                              '\\U000024C8',\n\t\"oacute;\":                          '\\U000000F3',\n\t\"oast;\":                            '\\U0000229B',\n\t\"ocir;\":                            '\\U0000229A',\n\t\"ocirc;\":                           '\\U000000F4',\n\t\"ocy;\":                             '\\U0000043E',\n\t\"odash;\":                           '\\U0000229D',\n\t\"odblac;\":                          '\\U00000151',\n\t\"odiv;\":                            '\\U00002A38',\n\t\"odot;\":                            '\\U00002299',\n\t\"odsold;\":                          '\\U000029BC',\n\t\"oelig;\":                           '\\U00000153',\n\t\"ofcir;\":                           '\\U000029BF',\n\t\"ofr;\":                             '\\U0001D52C',\n\t\"ogon;\":                            '\\U000002DB',\n\t\"ograve;\":                          '\\U000000F2',\n\t\"ogt;\":                             '\\U000029C1',\n\t\"ohbar;\":                           '\\U000029B5',\n\t\"ohm;\":                             '\\U000003A9',\n\t\"oint;\":                            '\\U0000222E',\n\t\"olarr;\":                           '\\U000021BA',\n\t\"olcir;\":                           '\\U000029BE',\n\t\"olcross;\":                         '\\U000029BB',\n\t\"oline;\":                           '\\U0000203E',\n\t\"olt;\":                             '\\U000029C0',\n\t\"omacr;\":                           '\\U0000014D',\n\t\"omega;\":                           '\\U000003C9',\n\t\"omicron;\":                         '\\U000003BF',\n\t\"omid;\":                            '\\U000029B6',\n\t\"ominus;\":                          '\\U00002296',\n\t\"oopf;\":                            '\\U0001D560',\n\t\"opar;\":                            '\\U000029B7',\n\t\"operp;\":                           '\\U000029B9',\n\t\"oplus;\":                           '\\U00002295',\n\t\"or;\":                              '\\U00002228',\n\t\"orarr;\":                           '\\U000021BB',\n\t\"ord;\":                             '\\U00002A5D',\n\t\"order;\":                           '\\U00002134',\n\t\"orderof;\":                         '\\U00002134',\n\t\"ordf;\":                            '\\U000000AA',\n\t\"ordm;\":                            '\\U000000BA',\n\t\"origof;\":                          '\\U000022B6',\n\t\"oror;\":                            '\\U00002A56',\n\t\"orslope;\":                         '\\U00002A57',\n\t\"orv;\":                             '\\U00002A5B',\n\t\"oscr;\":                            '\\U00002134',\n\t\"oslash;\":                          '\\U000000F8',\n\t\"osol;\":                            '\\U00002298',\n\t\"otilde;\":                          '\\U000000F5',\n\t\"otimes;\":                          '\\U00002297',\n\t\"otimesas;\":                        '\\U00002A36',\n\t\"ouml;\":                            '\\U000000F6',\n\t\"ovbar;\":                           '\\U0000233D',\n\t\"par;\":                             '\\U00002225',\n\t\"para;\":                            '\\U000000B6',\n\t\"parallel;\":                        '\\U00002225',\n\t\"parsim;\":                          '\\U00002AF3',\n\t\"parsl;\":                           '\\U00002AFD',\n\t\"part;\":                            '\\U00002202',\n\t\"pcy;\":                             '\\U0000043F',\n\t\"percnt;\":                          '\\U00000025',\n\t\"period;\":                          '\\U0000002E',\n\t\"permil;\":                          '\\U00002030',\n\t\"perp;\":                            '\\U000022A5',\n\t\"pertenk;\":                         '\\U00002031',\n\t\"pfr;\":                             '\\U0001D52D',\n\t\"phi;\":                             '\\U000003C6',\n\t\"phiv;\":                            '\\U000003D5',\n\t\"phmmat;\":                          '\\U00002133',\n\t\"phone;\":                           '\\U0000260E',\n\t\"pi;\":                              '\\U000003C0',\n\t\"pitchfork;\":                       '\\U000022D4',\n\t\"piv;\":                             '\\U000003D6',\n\t\"planck;\":                          '\\U0000210F',\n\t\"planckh;\":                         '\\U0000210E',\n\t\"plankv;\":                          '\\U0000210F',\n\t\"plus;\":                            '\\U0000002B',\n\t\"plusacir;\":                        '\\U00002A23',\n\t\"plusb;\":                           '\\U0000229E',\n\t\"pluscir;\":                         '\\U00002A22',\n\t\"plusdo;\":                          '\\U00002214',\n\t\"plusdu;\":                          '\\U00002A25',\n\t\"pluse;\":                           '\\U00002A72',\n\t\"plusmn;\":                          '\\U000000B1',\n\t\"plussim;\":                         '\\U00002A26',\n\t\"plustwo;\":                         '\\U00002A27',\n\t\"pm;\":                              '\\U000000B1',\n\t\"pointint;\":                        '\\U00002A15',\n\t\"popf;\":                            '\\U0001D561',\n\t\"pound;\":                           '\\U000000A3',\n\t\"pr;\":                              '\\U0000227A',\n\t\"prE;\":                             '\\U00002AB3',\n\t\"prap;\":                            '\\U00002AB7',\n\t\"prcue;\":                           '\\U0000227C',\n\t\"pre;\":                             '\\U00002AAF',\n\t\"prec;\":                            '\\U0000227A',\n\t\"precapprox;\":                      '\\U00002AB7',\n\t\"preccurlyeq;\":                     '\\U0000227C',\n\t\"preceq;\":                          '\\U00002AAF',\n\t\"precnapprox;\":                     '\\U00002AB9',\n\t\"precneqq;\":                        '\\U00002AB5',\n\t\"precnsim;\":                        '\\U000022E8',\n\t\"precsim;\":                         '\\U0000227E',\n\t\"prime;\":                           '\\U00002032',\n\t\"primes;\":                          '\\U00002119',\n\t\"prnE;\":                            '\\U00002AB5',\n\t\"prnap;\":                           '\\U00002AB9',\n\t\"prnsim;\":                          '\\U000022E8',\n\t\"prod;\":                            '\\U0000220F',\n\t\"profalar;\":                        '\\U0000232E',\n\t\"profline;\":                        '\\U00002312',\n\t\"profsurf;\":                        '\\U00002313',\n\t\"prop;\":                            '\\U0000221D',\n\t\"propto;\":                          '\\U0000221D',\n\t\"prsim;\":                           '\\U0000227E',\n\t\"prurel;\":                          '\\U000022B0',\n\t\"pscr;\":                            '\\U0001D4C5',\n\t\"psi;\":                             '\\U000003C8',\n\t\"puncsp;\":                          '\\U00002008',\n\t\"qfr;\":                             '\\U0001D52E',\n\t\"qint;\":                            '\\U00002A0C',\n\t\"qopf;\":                            '\\U0001D562',\n\t\"qprime;\":                          '\\U00002057',\n\t\"qscr;\":                            '\\U0001D4C6',\n\t\"quaternions;\":                     '\\U0000210D',\n\t\"quatint;\":                         '\\U00002A16',\n\t\"quest;\":                           '\\U0000003F',\n\t\"questeq;\":                         '\\U0000225F',\n\t\"quot;\":                            '\\U00000022',\n\t\"rAarr;\":                           '\\U000021DB',\n\t\"rArr;\":                            '\\U000021D2',\n\t\"rAtail;\":                          '\\U0000291C',\n\t\"rBarr;\":                           '\\U0000290F',\n\t\"rHar;\":                            '\\U00002964',\n\t\"racute;\":                          '\\U00000155',\n\t\"radic;\":                           '\\U0000221A',\n\t\"raemptyv;\":                        '\\U000029B3',\n\t\"rang;\":                            '\\U000027E9',\n\t\"rangd;\":                           '\\U00002992',\n\t\"range;\":                           '\\U000029A5',\n\t\"rangle;\":                          '\\U000027E9',\n\t\"raquo;\":                           '\\U000000BB',\n\t\"rarr;\":                            '\\U00002192',\n\t\"rarrap;\":                          '\\U00002975',\n\t\"rarrb;\":                           '\\U000021E5',\n\t\"rarrbfs;\":                         '\\U00002920',\n\t\"rarrc;\":                           '\\U00002933',\n\t\"rarrfs;\":                          '\\U0000291E',\n\t\"rarrhk;\":                          '\\U000021AA',\n\t\"rarrlp;\":                          '\\U000021AC',\n\t\"rarrpl;\":                          '\\U00002945',\n\t\"rarrsim;\":                         '\\U00002974',\n\t\"rarrtl;\":                          '\\U000021A3',\n\t\"rarrw;\":                           '\\U0000219D',\n\t\"ratail;\":                          '\\U0000291A',\n\t\"ratio;\":                           '\\U00002236',\n\t\"rationals;\":                       '\\U0000211A',\n\t\"rbarr;\":                           '\\U0000290D',\n\t\"rbbrk;\":                           '\\U00002773',\n\t\"rbrace;\":                          '\\U0000007D',\n\t\"rbrack;\":                          '\\U0000005D',\n\t\"rbrke;\":                           '\\U0000298C',\n\t\"rbrksld;\":                         '\\U0000298E',\n\t\"rbrkslu;\":                         '\\U00002990',\n\t\"rcaron;\":                          '\\U00000159',\n\t\"rcedil;\":                          '\\U00000157',\n\t\"rceil;\":                           '\\U00002309',\n\t\"rcub;\":                            '\\U0000007D',\n\t\"rcy;\":                             '\\U00000440',\n\t\"rdca;\":                            '\\U00002937',\n\t\"rdldhar;\":                         '\\U00002969',\n\t\"rdquo;\":                           '\\U0000201D',\n\t\"rdquor;\":                          '\\U0000201D',\n\t\"rdsh;\":                            '\\U000021B3',\n\t\"real;\":                            '\\U0000211C',\n\t\"realine;\":                         '\\U0000211B',\n\t\"realpart;\":                        '\\U0000211C',\n\t\"reals;\":                           '\\U0000211D',\n\t\"rect;\":                            '\\U000025AD',\n\t\"reg;\":                             '\\U000000AE',\n\t\"rfisht;\":                          '\\U0000297D',\n\t\"rfloor;\":                          '\\U0000230B',\n\t\"rfr;\":                             '\\U0001D52F',\n\t\"rhard;\":                           '\\U000021C1',\n\t\"rharu;\":                           '\\U000021C0',\n\t\"rharul;\":                          '\\U0000296C',\n\t\"rho;\":                             '\\U000003C1',\n\t\"rhov;\":                            '\\U000003F1',\n\t\"rightarrow;\":                      '\\U00002192',\n\t\"rightarrowtail;\":                  '\\U000021A3',\n\t\"rightharpoondown;\":                '\\U000021C1',\n\t\"rightharpoonup;\":                  '\\U000021C0',\n\t\"rightleftarrows;\":                 '\\U000021C4',\n\t\"rightleftharpoons;\":               '\\U000021CC',\n\t\"rightrightarrows;\":                '\\U000021C9',\n\t\"rightsquigarrow;\":                 '\\U0000219D',\n\t\"rightthreetimes;\":                 '\\U000022CC',\n\t\"ring;\":                            '\\U000002DA',\n\t\"risingdotseq;\":                    '\\U00002253',\n\t\"rlarr;\":                           '\\U000021C4',\n\t\"rlhar;\":                           '\\U000021CC',\n\t\"rlm;\":                             '\\U0000200F',\n\t\"rmoust;\":                          '\\U000023B1',\n\t\"rmoustache;\":                      '\\U000023B1',\n\t\"rnmid;\":                           '\\U00002AEE',\n\t\"roang;\":                           '\\U000027ED',\n\t\"roarr;\":                           '\\U000021FE',\n\t\"robrk;\":                           '\\U000027E7',\n\t\"ropar;\":                           '\\U00002986',\n\t\"ropf;\":                            '\\U0001D563',\n\t\"roplus;\":                          '\\U00002A2E',\n\t\"rotimes;\":                         '\\U00002A35',\n\t\"rpar;\":                            '\\U00000029',\n\t\"rpargt;\":                          '\\U00002994',\n\t\"rppolint;\":                        '\\U00002A12',\n\t\"rrarr;\":                           '\\U000021C9',\n\t\"rsaquo;\":                          '\\U0000203A',\n\t\"rscr;\":                            '\\U0001D4C7',\n\t\"rsh;\":                             '\\U000021B1',\n\t\"rsqb;\":                            '\\U0000005D',\n\t\"rsquo;\":                           '\\U00002019',\n\t\"rsquor;\":                          '\\U00002019',\n\t\"rthree;\":                          '\\U000022CC',\n\t\"rtimes;\":                          '\\U000022CA',\n\t\"rtri;\":                            '\\U000025B9',\n\t\"rtrie;\":                           '\\U000022B5',\n\t\"rtrif;\":                           '\\U000025B8',\n\t\"rtriltri;\":                        '\\U000029CE',\n\t\"ruluhar;\":                         '\\U00002968',\n\t\"rx;\":                              '\\U0000211E',\n\t\"sacute;\":                          '\\U0000015B',\n\t\"sbquo;\":                           '\\U0000201A',\n\t\"sc;\":                              '\\U0000227B',\n\t\"scE;\":                             '\\U00002AB4',\n\t\"scap;\":                            '\\U00002AB8',\n\t\"scaron;\":                          '\\U00000161',\n\t\"sccue;\":                           '\\U0000227D',\n\t\"sce;\":                             '\\U00002AB0',\n\t\"scedil;\":                          '\\U0000015F',\n\t\"scirc;\":                           '\\U0000015D',\n\t\"scnE;\":                            '\\U00002AB6',\n\t\"scnap;\":                           '\\U00002ABA',\n\t\"scnsim;\":                          '\\U000022E9',\n\t\"scpolint;\":                        '\\U00002A13',\n\t\"scsim;\":                           '\\U0000227F',\n\t\"scy;\":                             '\\U00000441',\n\t\"sdot;\":                            '\\U000022C5',\n\t\"sdotb;\":                           '\\U000022A1',\n\t\"sdote;\":                           '\\U00002A66',\n\t\"seArr;\":                           '\\U000021D8',\n\t\"searhk;\":                          '\\U00002925',\n\t\"searr;\":                           '\\U00002198',\n\t\"searrow;\":                         '\\U00002198',\n\t\"sect;\":                            '\\U000000A7',\n\t\"semi;\":                            '\\U0000003B',\n\t\"seswar;\":                          '\\U00002929',\n\t\"setminus;\":                        '\\U00002216',\n\t\"setmn;\":                           '\\U00002216',\n\t\"sext;\":                            '\\U00002736',\n\t\"sfr;\":                             '\\U0001D530',\n\t\"sfrown;\":                          '\\U00002322',\n\t\"sharp;\":                           '\\U0000266F',\n\t\"shchcy;\":                          '\\U00000449',\n\t\"shcy;\":                            '\\U00000448',\n\t\"shortmid;\":                        '\\U00002223',\n\t\"shortparallel;\":                   '\\U00002225',\n\t\"shy;\":                             '\\U000000AD',\n\t\"sigma;\":                           '\\U000003C3',\n\t\"sigmaf;\":                          '\\U000003C2',\n\t\"sigmav;\":                          '\\U000003C2',\n\t\"sim;\":                             '\\U0000223C',\n\t\"simdot;\":                          '\\U00002A6A',\n\t\"sime;\":                            '\\U00002243',\n\t\"simeq;\":                           '\\U00002243',\n\t\"simg;\":                            '\\U00002A9E',\n\t\"simgE;\":                           '\\U00002AA0',\n\t\"siml;\":                            '\\U00002A9D',\n\t\"simlE;\":                           '\\U00002A9F',\n\t\"simne;\":                           '\\U00002246',\n\t\"simplus;\":                         '\\U00002A24',\n\t\"simrarr;\":                         '\\U00002972',\n\t\"slarr;\":                           '\\U00002190',\n\t\"smallsetminus;\":                   '\\U00002216',\n\t\"smashp;\":                          '\\U00002A33',\n\t\"smeparsl;\":                        '\\U000029E4',\n\t\"smid;\":                            '\\U00002223',\n\t\"smile;\":                           '\\U00002323',\n\t\"smt;\":                             '\\U00002AAA',\n\t\"smte;\":                            '\\U00002AAC',\n\t\"softcy;\":                          '\\U0000044C',\n\t\"sol;\":                             '\\U0000002F',\n\t\"solb;\":                            '\\U000029C4',\n\t\"solbar;\":                          '\\U0000233F',\n\t\"sopf;\":                            '\\U0001D564',\n\t\"spades;\":                          '\\U00002660',\n\t\"spadesuit;\":                       '\\U00002660',\n\t\"spar;\":                            '\\U00002225',\n\t\"sqcap;\":                           '\\U00002293',\n\t\"sqcup;\":                           '\\U00002294',\n\t\"sqsub;\":                           '\\U0000228F',\n\t\"sqsube;\":                          '\\U00002291',\n\t\"sqsubset;\":                        '\\U0000228F',\n\t\"sqsubseteq;\":                      '\\U00002291',\n\t\"sqsup;\":                           '\\U00002290',\n\t\"sqsupe;\":                          '\\U00002292',\n\t\"sqsupset;\":                        '\\U00002290',\n\t\"sqsupseteq;\":                      '\\U00002292',\n\t\"squ;\":                             '\\U000025A1',\n\t\"square;\":                          '\\U000025A1',\n\t\"squarf;\":                          '\\U000025AA',\n\t\"squf;\":                            '\\U000025AA',\n\t\"srarr;\":                           '\\U00002192',\n\t\"sscr;\":                            '\\U0001D4C8',\n\t\"ssetmn;\":                          '\\U00002216',\n\t\"ssmile;\":                          '\\U00002323',\n\t\"sstarf;\":                          '\\U000022C6',\n\t\"star;\":                            '\\U00002606',\n\t\"starf;\":                           '\\U00002605',\n\t\"straightepsilon;\":                 '\\U000003F5',\n\t\"straightphi;\":                     '\\U000003D5',\n\t\"strns;\":                           '\\U000000AF',\n\t\"sub;\":                             '\\U00002282',\n\t\"subE;\":                            '\\U00002AC5',\n\t\"subdot;\":                          '\\U00002ABD',\n\t\"sube;\":                            '\\U00002286',\n\t\"subedot;\":                         '\\U00002AC3',\n\t\"submult;\":                         '\\U00002AC1',\n\t\"subnE;\":                           '\\U00002ACB',\n\t\"subne;\":                           '\\U0000228A',\n\t\"subplus;\":                         '\\U00002ABF',\n\t\"subrarr;\":                         '\\U00002979',\n\t\"subset;\":                          '\\U00002282',\n\t\"subseteq;\":                        '\\U00002286',\n\t\"subseteqq;\":                       '\\U00002AC5',\n\t\"subsetneq;\":                       '\\U0000228A',\n\t\"subsetneqq;\":                      '\\U00002ACB',\n\t\"subsim;\":                          '\\U00002AC7',\n\t\"subsub;\":                          '\\U00002AD5',\n\t\"subsup;\":                          '\\U00002AD3',\n\t\"succ;\":                            '\\U0000227B',\n\t\"succapprox;\":                      '\\U00002AB8',\n\t\"succcurlyeq;\":                     '\\U0000227D',\n\t\"succeq;\":                          '\\U00002AB0',\n\t\"succnapprox;\":                     '\\U00002ABA',\n\t\"succneqq;\":                        '\\U00002AB6',\n\t\"succnsim;\":                        '\\U000022E9',\n\t\"succsim;\":                         '\\U0000227F',\n\t\"sum;\":                             '\\U00002211',\n\t\"sung;\":                            '\\U0000266A',\n\t\"sup;\":                             '\\U00002283',\n\t\"sup1;\":                            '\\U000000B9',\n\t\"sup2;\":                            '\\U000000B2',\n\t\"sup3;\":                            '\\U000000B3',\n\t\"supE;\":                            '\\U00002AC6',\n\t\"supdot;\":                          '\\U00002ABE',\n\t\"supdsub;\":                         '\\U00002AD8',\n\t\"supe;\":                            '\\U00002287',\n\t\"supedot;\":                         '\\U00002AC4',\n\t\"suphsol;\":                         '\\U000027C9',\n\t\"suphsub;\":                         '\\U00002AD7',\n\t\"suplarr;\":                         '\\U0000297B',\n\t\"supmult;\":                         '\\U00002AC2',\n\t\"supnE;\":                           '\\U00002ACC',\n\t\"supne;\":                           '\\U0000228B',\n\t\"supplus;\":                         '\\U00002AC0',\n\t\"supset;\":                          '\\U00002283',\n\t\"supseteq;\":                        '\\U00002287',\n\t\"supseteqq;\":                       '\\U00002AC6',\n\t\"supsetneq;\":                       '\\U0000228B',\n\t\"supsetneqq;\":                      '\\U00002ACC',\n\t\"supsim;\":                          '\\U00002AC8',\n\t\"supsub;\":                          '\\U00002AD4',\n\t\"supsup;\":                          '\\U00002AD6',\n\t\"swArr;\":                           '\\U000021D9',\n\t\"swarhk;\":                          '\\U00002926',\n\t\"swarr;\":                           '\\U00002199',\n\t\"swarrow;\":                         '\\U00002199',\n\t\"swnwar;\":                          '\\U0000292A',\n\t\"szlig;\":                           '\\U000000DF',\n\t\"target;\":                          '\\U00002316',\n\t\"tau;\":                             '\\U000003C4',\n\t\"tbrk;\":                            '\\U000023B4',\n\t\"tcaron;\":                          '\\U00000165',\n\t\"tcedil;\":                          '\\U00000163',\n\t\"tcy;\":                             '\\U00000442',\n\t\"tdot;\":                            '\\U000020DB',\n\t\"telrec;\":                          '\\U00002315',\n\t\"tfr;\":                             '\\U0001D531',\n\t\"there4;\":                          '\\U00002234',\n\t\"therefore;\":                       '\\U00002234',\n\t\"theta;\":                           '\\U000003B8',\n\t\"thetasym;\":                        '\\U000003D1',\n\t\"thetav;\":                          '\\U000003D1',\n\t\"thickapprox;\":                     '\\U00002248',\n\t\"thicksim;\":                        '\\U0000223C',\n\t\"thinsp;\":                          '\\U00002009',\n\t\"thkap;\":                           '\\U00002248',\n\t\"thksim;\":                          '\\U0000223C',\n\t\"thorn;\":                           '\\U000000FE',\n\t\"tilde;\":                           '\\U000002DC',\n\t\"times;\":                           '\\U000000D7',\n\t\"timesb;\":                          '\\U000022A0',\n\t\"timesbar;\":                        '\\U00002A31',\n\t\"timesd;\":                          '\\U00002A30',\n\t\"tint;\":                            '\\U0000222D',\n\t\"toea;\":                            '\\U00002928',\n\t\"top;\":                             '\\U000022A4',\n\t\"topbot;\":                          '\\U00002336',\n\t\"topcir;\":                          '\\U00002AF1',\n\t\"topf;\":                            '\\U0001D565',\n\t\"topfork;\":                         '\\U00002ADA',\n\t\"tosa;\":                            '\\U00002929',\n\t\"tprime;\":                          '\\U00002034',\n\t\"trade;\":                           '\\U00002122',\n\t\"triangle;\":                        '\\U000025B5',\n\t\"triangledown;\":                    '\\U000025BF',\n\t\"triangleleft;\":                    '\\U000025C3',\n\t\"trianglelefteq;\":                  '\\U000022B4',\n\t\"triangleq;\":                       '\\U0000225C',\n\t\"triangleright;\":                   '\\U000025B9',\n\t\"trianglerighteq;\":                 '\\U000022B5',\n\t\"tridot;\":                          '\\U000025EC',\n\t\"trie;\":                            '\\U0000225C',\n\t\"triminus;\":                        '\\U00002A3A',\n\t\"triplus;\":                         '\\U00002A39',\n\t\"trisb;\":                           '\\U000029CD',\n\t\"tritime;\":                         '\\U00002A3B',\n\t\"trpezium;\":                        '\\U000023E2',\n\t\"tscr;\":                            '\\U0001D4C9',\n\t\"tscy;\":                            '\\U00000446',\n\t\"tshcy;\":                           '\\U0000045B',\n\t\"tstrok;\":                          '\\U00000167',\n\t\"twixt;\":                           '\\U0000226C',\n\t\"twoheadleftarrow;\":                '\\U0000219E',\n\t\"twoheadrightarrow;\":               '\\U000021A0',\n\t\"uArr;\":                            '\\U000021D1',\n\t\"uHar;\":                            '\\U00002963',\n\t\"uacute;\":                          '\\U000000FA',\n\t\"uarr;\":                            '\\U00002191',\n\t\"ubrcy;\":                           '\\U0000045E',\n\t\"ubreve;\":                          '\\U0000016D',\n\t\"ucirc;\":                           '\\U000000FB',\n\t\"ucy;\":                             '\\U00000443',\n\t\"udarr;\":                           '\\U000021C5',\n\t\"udblac;\":                          '\\U00000171',\n\t\"udhar;\":                           '\\U0000296E',\n\t\"ufisht;\":                          '\\U0000297E',\n\t\"ufr;\":                             '\\U0001D532',\n\t\"ugrave;\":                          '\\U000000F9',\n\t\"uharl;\":                           '\\U000021BF',\n\t\"uharr;\":                           '\\U000021BE',\n\t\"uhblk;\":                           '\\U00002580',\n\t\"ulcorn;\":                          '\\U0000231C',\n\t\"ulcorner;\":                        '\\U0000231C',\n\t\"ulcrop;\":                          '\\U0000230F',\n\t\"ultri;\":                           '\\U000025F8',\n\t\"umacr;\":                           '\\U0000016B',\n\t\"uml;\":                             '\\U000000A8',\n\t\"uogon;\":                           '\\U00000173',\n\t\"uopf;\":                            '\\U0001D566',\n\t\"uparrow;\":                         '\\U00002191',\n\t\"updownarrow;\":                     '\\U00002195',\n\t\"upharpoonleft;\":                   '\\U000021BF',\n\t\"upharpoonright;\":                  '\\U000021BE',\n\t\"uplus;\":                           '\\U0000228E',\n\t\"upsi;\":                            '\\U000003C5',\n\t\"upsih;\":                           '\\U000003D2',\n\t\"upsilon;\":                         '\\U000003C5',\n\t\"upuparrows;\":                      '\\U000021C8',\n\t\"urcorn;\":                          '\\U0000231D',\n\t\"urcorner;\":                        '\\U0000231D',\n\t\"urcrop;\":                          '\\U0000230E',\n\t\"uring;\":                           '\\U0000016F',\n\t\"urtri;\":                           '\\U000025F9',\n\t\"uscr;\":                            '\\U0001D4CA',\n\t\"utdot;\":                           '\\U000022F0',\n\t\"utilde;\":                          '\\U00000169',\n\t\"utri;\":                            '\\U000025B5',\n\t\"utrif;\":                           '\\U000025B4',\n\t\"uuarr;\":                           '\\U000021C8',\n\t\"uuml;\":                            '\\U000000FC',\n\t\"uwangle;\":                         '\\U000029A7',\n\t\"vArr;\":                            '\\U000021D5',\n\t\"vBar;\":                            '\\U00002AE8',\n\t\"vBarv;\":                           '\\U00002AE9',\n\t\"vDash;\":                           '\\U000022A8',\n\t\"vangrt;\":                          '\\U0000299C',\n\t\"varepsilon;\":                      '\\U000003F5',\n\t\"varkappa;\":                        '\\U000003F0',\n\t\"varnothing;\":                      '\\U00002205',\n\t\"varphi;\":                          '\\U000003D5',\n\t\"varpi;\":                           '\\U000003D6',\n\t\"varpropto;\":                       '\\U0000221D',\n\t\"varr;\":                            '\\U00002195',\n\t\"varrho;\":                          '\\U000003F1',\n\t\"varsigma;\":                        '\\U000003C2',\n\t\"vartheta;\":                        '\\U000003D1',\n\t\"vartriangleleft;\":                 '\\U000022B2',\n\t\"vartriangleright;\":                '\\U000022B3',\n\t\"vcy;\":                             '\\U00000432',\n\t\"vdash;\":                           '\\U000022A2',\n\t\"vee;\":                             '\\U00002228',\n\t\"veebar;\":                          '\\U000022BB',\n\t\"veeeq;\":                           '\\U0000225A',\n\t\"vellip;\":                          '\\U000022EE',\n\t\"verbar;\":                          '\\U0000007C',\n\t\"vert;\":                            '\\U0000007C',\n\t\"vfr;\":                             '\\U0001D533',\n\t\"vltri;\":                           '\\U000022B2',\n\t\"vopf;\":                            '\\U0001D567',\n\t\"vprop;\":                           '\\U0000221D',\n\t\"vrtri;\":                           '\\U000022B3',\n\t\"vscr;\":                            '\\U0001D4CB',\n\t\"vzigzag;\":                         '\\U0000299A',\n\t\"wcirc;\":                           '\\U00000175',\n\t\"wedbar;\":                          '\\U00002A5F',\n\t\"wedge;\":                           '\\U00002227',\n\t\"wedgeq;\":                          '\\U00002259',\n\t\"weierp;\":                          '\\U00002118',\n\t\"wfr;\":                             '\\U0001D534',\n\t\"wopf;\":                            '\\U0001D568',\n\t\"wp;\":                              '\\U00002118',\n\t\"wr;\":                              '\\U00002240',\n\t\"wreath;\":                          '\\U00002240',\n\t\"wscr;\":                            '\\U0001D4CC',\n\t\"xcap;\":                            '\\U000022C2',\n\t\"xcirc;\":                           '\\U000025EF',\n\t\"xcup;\":                            '\\U000022C3',\n\t\"xdtri;\":                           '\\U000025BD',\n\t\"xfr;\":                             '\\U0001D535',\n\t\"xhArr;\":                           '\\U000027FA',\n\t\"xharr;\":                           '\\U000027F7',\n\t\"xi;\":                              '\\U000003BE',\n\t\"xlArr;\":                           '\\U000027F8',\n\t\"xlarr;\":                           '\\U000027F5',\n\t\"xmap;\":                            '\\U000027FC',\n\t\"xnis;\":                            '\\U000022FB',\n\t\"xodot;\":                           '\\U00002A00',\n\t\"xopf;\":                            '\\U0001D569',\n\t\"xoplus;\":                          '\\U00002A01',\n\t\"xotime;\":                          '\\U00002A02',\n\t\"xrArr;\":                           '\\U000027F9',\n\t\"xrarr;\":                           '\\U000027F6',\n\t\"xscr;\":                            '\\U0001D4CD',\n\t\"xsqcup;\":                          '\\U00002A06',\n\t\"xuplus;\":                          '\\U00002A04',\n\t\"xutri;\":                           '\\U000025B3',\n\t\"xvee;\":                            '\\U000022C1',\n\t\"xwedge;\":                          '\\U000022C0',\n\t\"yacute;\":                          '\\U000000FD',\n\t\"yacy;\":                            '\\U0000044F',\n\t\"ycirc;\":                           '\\U00000177',\n\t\"ycy;\":                             '\\U0000044B',\n\t\"yen;\":                             '\\U000000A5',\n\t\"yfr;\":                             '\\U0001D536',\n\t\"yicy;\":                            '\\U00000457',\n\t\"yopf;\":                            '\\U0001D56A',\n\t\"yscr;\":                            '\\U0001D4CE',\n\t\"yucy;\":                            '\\U0000044E',\n\t\"yuml;\":                            '\\U000000FF',\n\t\"zacute;\":                          '\\U0000017A',\n\t\"zcaron;\":                          '\\U0000017E',\n\t\"zcy;\":                             '\\U00000437',\n\t\"zdot;\":                            '\\U0000017C',\n\t\"zeetrf;\":                          '\\U00002128',\n\t\"zeta;\":                            '\\U000003B6',\n\t\"zfr;\":                             '\\U0001D537',\n\t\"zhcy;\":                            '\\U00000436',\n\t\"zigrarr;\":                         '\\U000021DD',\n\t\"zopf;\":                            '\\U0001D56B',\n\t\"zscr;\":                            '\\U0001D4CF',\n\t\"zwj;\":                             '\\U0000200D',\n\t\"zwnj;\":                            '\\U0000200C',\n\t\"AElig\":                            '\\U000000C6',\n\t\"AMP\":                              '\\U00000026',\n\t\"Aacute\":                           '\\U000000C1',\n\t\"Acirc\":                            '\\U000000C2',\n\t\"Agrave\":                           '\\U000000C0',\n\t\"Aring\":                            '\\U000000C5',\n\t\"Atilde\":                           '\\U000000C3',\n\t\"Auml\":                             '\\U000000C4',\n\t\"COPY\":                             '\\U000000A9',\n\t\"Ccedil\":                           '\\U000000C7',\n\t\"ETH\":                              '\\U000000D0',\n\t\"Eacute\":                           '\\U000000C9',\n\t\"Ecirc\":                            '\\U000000CA',\n\t\"Egrave\":                           '\\U000000C8',\n\t\"Euml\":                             '\\U000000CB',\n\t\"GT\":                               '\\U0000003E',\n\t\"Iacute\":                           '\\U000000CD',\n\t\"Icirc\":                            '\\U000000CE',\n\t\"Igrave\":                           '\\U000000CC',\n\t\"Iuml\":                             '\\U000000CF',\n\t\"LT\":                               '\\U0000003C',\n\t\"Ntilde\":                           '\\U000000D1',\n\t\"Oacute\":                           '\\U000000D3',\n\t\"Ocirc\":                            '\\U000000D4',\n\t\"Ograve\":                           '\\U000000D2',\n\t\"Oslash\":                           '\\U000000D8',\n\t\"Otilde\":                           '\\U000000D5',\n\t\"Ouml\":                             '\\U000000D6',\n\t\"QUOT\":                             '\\U00000022',\n\t\"REG\":                              '\\U000000AE',\n\t\"THORN\":                            '\\U000000DE',\n\t\"Uacute\":                           '\\U000000DA',\n\t\"Ucirc\":                            '\\U000000DB',\n\t\"Ugrave\":                           '\\U000000D9',\n\t\"Uuml\":                             '\\U000000DC',\n\t\"Yacute\":                           '\\U000000DD',\n\t\"aacute\":                           '\\U000000E1',\n\t\"acirc\":                            '\\U000000E2',\n\t\"acute\":                            '\\U000000B4',\n\t\"aelig\":                            '\\U000000E6',\n\t\"agrave\":                           '\\U000000E0',\n\t\"amp\":                              '\\U00000026',\n\t\"aring\":                            '\\U000000E5',\n\t\"atilde\":                           '\\U000000E3',\n\t\"auml\":                             '\\U000000E4',\n\t\"brvbar\":                           '\\U000000A6',\n\t\"ccedil\":                           '\\U000000E7',\n\t\"cedil\":                            '\\U000000B8',\n\t\"cent\":                             '\\U000000A2',\n\t\"copy\":                             '\\U000000A9',\n\t\"curren\":                           '\\U000000A4',\n\t\"deg\":                              '\\U000000B0',\n\t\"divide\":                           '\\U000000F7',\n\t\"eacute\":                           '\\U000000E9',\n\t\"ecirc\":                            '\\U000000EA',\n\t\"egrave\":                           '\\U000000E8',\n\t\"eth\":                              '\\U000000F0',\n\t\"euml\":                             '\\U000000EB',\n\t\"frac12\":                           '\\U000000BD',\n\t\"frac14\":                           '\\U000000BC',\n\t\"frac34\":                           '\\U000000BE',\n\t\"gt\":                               '\\U0000003E',\n\t\"iacute\":                           '\\U000000ED',\n\t\"icirc\":                            '\\U000000EE',\n\t\"iexcl\":                            '\\U000000A1',\n\t\"igrave\":                           '\\U000000EC',\n\t\"iquest\":                           '\\U000000BF',\n\t\"iuml\":                             '\\U000000EF',\n\t\"laquo\":                            '\\U000000AB',\n\t\"lt\":                               '\\U0000003C',\n\t\"macr\":                             '\\U000000AF',\n\t\"micro\":                            '\\U000000B5',\n\t\"middot\":                           '\\U000000B7',\n\t\"nbsp\":                             '\\U000000A0',\n\t\"not\":                              '\\U000000AC',\n\t\"ntilde\":                           '\\U000000F1',\n\t\"oacute\":                           '\\U000000F3',\n\t\"ocirc\":                            '\\U000000F4',\n\t\"ograve\":                           '\\U000000F2',\n\t\"ordf\":                             '\\U000000AA',\n\t\"ordm\":                             '\\U000000BA',\n\t\"oslash\":                           '\\U000000F8',\n\t\"otilde\":                           '\\U000000F5',\n\t\"ouml\":                             '\\U000000F6',\n\t\"para\":                             '\\U000000B6',\n\t\"plusmn\":                           '\\U000000B1',\n\t\"pound\":                            '\\U000000A3',\n\t\"quot\":                             '\\U00000022',\n\t\"raquo\":                            '\\U000000BB',\n\t\"reg\":                              '\\U000000AE',\n\t\"sect\":                             '\\U000000A7',\n\t\"shy\":                              '\\U000000AD',\n\t\"sup1\":                             '\\U000000B9',\n\t\"sup2\":                             '\\U000000B2',\n\t\"sup3\":                             '\\U000000B3',\n\t\"szlig\":                            '\\U000000DF',\n\t\"thorn\":                            '\\U000000FE',\n\t\"times\":                            '\\U000000D7',\n\t\"uacute\":                           '\\U000000FA',\n\t\"ucirc\":                            '\\U000000FB',\n\t\"ugrave\":                           '\\U000000F9',\n\t\"uml\":                              '\\U000000A8',\n\t\"uuml\":                             '\\U000000FC',\n\t\"yacute\":                           '\\U000000FD',\n\t\"yen\":                              '\\U000000A5',\n\t\"yuml\":                             '\\U000000FF',\n}\n\n// HTML entities that are two unicode codepoints.\nvar entity2 = map[string][2]rune{\n\t// TODO(nigeltao): Handle replacements that are wider than their names.\n\t// \"nLt;\":                     {'\\u226A', '\\u20D2'},\n\t// \"nGt;\":                     {'\\u226B', '\\u20D2'},\n\t\"NotEqualTilde;\":           {'\\u2242', '\\u0338'},\n\t\"NotGreaterFullEqual;\":     {'\\u2267', '\\u0338'},\n\t\"NotGreaterGreater;\":       {'\\u226B', '\\u0338'},\n\t\"NotGreaterSlantEqual;\":    {'\\u2A7E', '\\u0338'},\n\t\"NotHumpDownHump;\":         {'\\u224E', '\\u0338'},\n\t\"NotHumpEqual;\":            {'\\u224F', '\\u0338'},\n\t\"NotLeftTriangleBar;\":      {'\\u29CF', '\\u0338'},\n\t\"NotLessLess;\":             {'\\u226A', '\\u0338'},\n\t\"NotLessSlantEqual;\":       {'\\u2A7D', '\\u0338'},\n\t\"NotNestedGreaterGreater;\": {'\\u2AA2', '\\u0338'},\n\t\"NotNestedLessLess;\":       {'\\u2AA1', '\\u0338'},\n\t\"NotPrecedesEqual;\":        {'\\u2AAF', '\\u0338'},\n\t\"NotRightTriangleBar;\":     {'\\u29D0', '\\u0338'},\n\t\"NotSquareSubset;\":         {'\\u228F', '\\u0338'},\n\t\"NotSquareSuperset;\":       {'\\u2290', '\\u0338'},\n\t\"NotSubset;\":               {'\\u2282', '\\u20D2'},\n\t\"NotSucceedsEqual;\":        {'\\u2AB0', '\\u0338'},\n\t\"NotSucceedsTilde;\":        {'\\u227F', '\\u0338'},\n\t\"NotSuperset;\":             {'\\u2283', '\\u20D2'},\n\t\"ThickSpace;\":              {'\\u205F', '\\u200A'},\n\t\"acE;\":                     {'\\u223E', '\\u0333'},\n\t\"bne;\":                     {'\\u003D', '\\u20E5'},\n\t\"bnequiv;\":                 {'\\u2261', '\\u20E5'},\n\t\"caps;\":                    {'\\u2229', '\\uFE00'},\n\t\"cups;\":                    {'\\u222A', '\\uFE00'},\n\t\"fjlig;\":                   {'\\u0066', '\\u006A'},\n\t\"gesl;\":                    {'\\u22DB', '\\uFE00'},\n\t\"gvertneqq;\":               {'\\u2269', '\\uFE00'},\n\t\"gvnE;\":                    {'\\u2269', '\\uFE00'},\n\t\"lates;\":                   {'\\u2AAD', '\\uFE00'},\n\t\"lesg;\":                    {'\\u22DA', '\\uFE00'},\n\t\"lvertneqq;\":               {'\\u2268', '\\uFE00'},\n\t\"lvnE;\":                    {'\\u2268', '\\uFE00'},\n\t\"nGg;\":                     {'\\u22D9', '\\u0338'},\n\t\"nGtv;\":                    {'\\u226B', '\\u0338'},\n\t\"nLl;\":                     {'\\u22D8', '\\u0338'},\n\t\"nLtv;\":                    {'\\u226A', '\\u0338'},\n\t\"nang;\":                    {'\\u2220', '\\u20D2'},\n\t\"napE;\":                    {'\\u2A70', '\\u0338'},\n\t\"napid;\":                   {'\\u224B', '\\u0338'},\n\t\"nbump;\":                   {'\\u224E', '\\u0338'},\n\t\"nbumpe;\":                  {'\\u224F', '\\u0338'},\n\t\"ncongdot;\":                {'\\u2A6D', '\\u0338'},\n\t\"nedot;\":                   {'\\u2250', '\\u0338'},\n\t\"nesim;\":                   {'\\u2242', '\\u0338'},\n\t\"ngE;\":                     {'\\u2267', '\\u0338'},\n\t\"ngeqq;\":                   {'\\u2267', '\\u0338'},\n\t\"ngeqslant;\":               {'\\u2A7E', '\\u0338'},\n\t\"nges;\":                    {'\\u2A7E', '\\u0338'},\n\t\"nlE;\":                     {'\\u2266', '\\u0338'},\n\t\"nleqq;\":                   {'\\u2266', '\\u0338'},\n\t\"nleqslant;\":               {'\\u2A7D', '\\u0338'},\n\t\"nles;\":                    {'\\u2A7D', '\\u0338'},\n\t\"notinE;\":                  {'\\u22F9', '\\u0338'},\n\t\"notindot;\":                {'\\u22F5', '\\u0338'},\n\t\"nparsl;\":                  {'\\u2AFD', '\\u20E5'},\n\t\"npart;\":                   {'\\u2202', '\\u0338'},\n\t\"npre;\":                    {'\\u2AAF', '\\u0338'},\n\t\"npreceq;\":                 {'\\u2AAF', '\\u0338'},\n\t\"nrarrc;\":                  {'\\u2933', '\\u0338'},\n\t\"nrarrw;\":                  {'\\u219D', '\\u0338'},\n\t\"nsce;\":                    {'\\u2AB0', '\\u0338'},\n\t\"nsubE;\":                   {'\\u2AC5', '\\u0338'},\n\t\"nsubset;\":                 {'\\u2282', '\\u20D2'},\n\t\"nsubseteqq;\":              {'\\u2AC5', '\\u0338'},\n\t\"nsucceq;\":                 {'\\u2AB0', '\\u0338'},\n\t\"nsupE;\":                   {'\\u2AC6', '\\u0338'},\n\t\"nsupset;\":                 {'\\u2283', '\\u20D2'},\n\t\"nsupseteqq;\":              {'\\u2AC6', '\\u0338'},\n\t\"nvap;\":                    {'\\u224D', '\\u20D2'},\n\t\"nvge;\":                    {'\\u2265', '\\u20D2'},\n\t\"nvgt;\":                    {'\\u003E', '\\u20D2'},\n\t\"nvle;\":                    {'\\u2264', '\\u20D2'},\n\t\"nvlt;\":                    {'\\u003C', '\\u20D2'},\n\t\"nvltrie;\":                 {'\\u22B4', '\\u20D2'},\n\t\"nvrtrie;\":                 {'\\u22B5', '\\u20D2'},\n\t\"nvsim;\":                   {'\\u223C', '\\u20D2'},\n\t\"race;\":                    {'\\u223D', '\\u0331'},\n\t\"smtes;\":                   {'\\u2AAC', '\\uFE00'},\n\t\"sqcaps;\":                  {'\\u2293', '\\uFE00'},\n\t\"sqcups;\":                  {'\\u2294', '\\uFE00'},\n\t\"varsubsetneq;\":            {'\\u228A', '\\uFE00'},\n\t\"varsubsetneqq;\":           {'\\u2ACB', '\\uFE00'},\n\t\"varsupsetneq;\":            {'\\u228B', '\\uFE00'},\n\t\"varsupsetneqq;\":           {'\\u2ACC', '\\uFE00'},\n\t\"vnsub;\":                   {'\\u2282', '\\u20D2'},\n\t\"vnsup;\":                   {'\\u2283', '\\u20D2'},\n\t\"vsubnE;\":                  {'\\u2ACB', '\\uFE00'},\n\t\"vsubne;\":                  {'\\u228A', '\\uFE00'},\n\t\"vsupnE;\":                  {'\\u2ACC', '\\uFE00'},\n\t\"vsupne;\":                  {'\\u228B', '\\uFE00'},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/escape.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage html\n\nimport (\n\t\"bytes\"\n\t\"strings\"\n\t\"unicode/utf8\"\n)\n\n// These replacements permit compatibility with old numeric entities that\n// assumed Windows-1252 encoding.\n// https://html.spec.whatwg.org/multipage/syntax.html#consume-a-character-reference\nvar replacementTable = [...]rune{\n\t'\\u20AC', // First entry is what 0x80 should be replaced with.\n\t'\\u0081',\n\t'\\u201A',\n\t'\\u0192',\n\t'\\u201E',\n\t'\\u2026',\n\t'\\u2020',\n\t'\\u2021',\n\t'\\u02C6',\n\t'\\u2030',\n\t'\\u0160',\n\t'\\u2039',\n\t'\\u0152',\n\t'\\u008D',\n\t'\\u017D',\n\t'\\u008F',\n\t'\\u0090',\n\t'\\u2018',\n\t'\\u2019',\n\t'\\u201C',\n\t'\\u201D',\n\t'\\u2022',\n\t'\\u2013',\n\t'\\u2014',\n\t'\\u02DC',\n\t'\\u2122',\n\t'\\u0161',\n\t'\\u203A',\n\t'\\u0153',\n\t'\\u009D',\n\t'\\u017E',\n\t'\\u0178', // Last entry is 0x9F.\n\t// 0x00->'\\uFFFD' is handled programmatically.\n\t// 0x0D->'\\u000D' is a no-op.\n}\n\n// unescapeEntity reads an entity like \"&lt;\" from b[src:] and writes the\n// corresponding \"<\" to b[dst:], returning the incremented dst and src cursors.\n// Precondition: b[src] == '&' && dst <= src.\n// attribute should be true if parsing an attribute value.\nfunc unescapeEntity(b []byte, dst, src int, attribute bool) (dst1, src1 int) {\n\t// https://html.spec.whatwg.org/multipage/syntax.html#consume-a-character-reference\n\n\t// i starts at 1 because we already know that s[0] == '&'.\n\ti, s := 1, b[src:]\n\n\tif len(s) <= 1 {\n\t\tb[dst] = b[src]\n\t\treturn dst + 1, src + 1\n\t}\n\n\tif s[i] == '#' {\n\t\tif len(s) <= 3 { // We need to have at least \"&#.\".\n\t\t\tb[dst] = b[src]\n\t\t\treturn dst + 1, src + 1\n\t\t}\n\t\ti++\n\t\tc := s[i]\n\t\thex := false\n\t\tif c == 'x' || c == 'X' {\n\t\t\thex = true\n\t\t\ti++\n\t\t}\n\n\t\tx := '\\x00'\n\t\tfor i < len(s) {\n\t\t\tc = s[i]\n\t\t\ti++\n\t\t\tif hex {\n\t\t\t\tif '0' <= c && c <= '9' {\n\t\t\t\t\tx = 16*x + rune(c) - '0'\n\t\t\t\t\tcontinue\n\t\t\t\t} else if 'a' <= c && c <= 'f' {\n\t\t\t\t\tx = 16*x + rune(c) - 'a' + 10\n\t\t\t\t\tcontinue\n\t\t\t\t} else if 'A' <= c && c <= 'F' {\n\t\t\t\t\tx = 16*x + rune(c) - 'A' + 10\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t} else if '0' <= c && c <= '9' {\n\t\t\t\tx = 10*x + rune(c) - '0'\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif c != ';' {\n\t\t\t\ti--\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\n\t\tif i <= 3 { // No characters matched.\n\t\t\tb[dst] = b[src]\n\t\t\treturn dst + 1, src + 1\n\t\t}\n\n\t\tif 0x80 <= x && x <= 0x9F {\n\t\t\t// Replace characters from Windows-1252 with UTF-8 equivalents.\n\t\t\tx = replacementTable[x-0x80]\n\t\t} else if x == 0 || (0xD800 <= x && x <= 0xDFFF) || x > 0x10FFFF {\n\t\t\t// Replace invalid characters with the replacement character.\n\t\t\tx = '\\uFFFD'\n\t\t}\n\n\t\treturn dst + utf8.EncodeRune(b[dst:], x), src + i\n\t}\n\n\t// Consume the maximum number of characters possible, with the\n\t// consumed characters matching one of the named references.\n\n\tfor i < len(s) {\n\t\tc := s[i]\n\t\ti++\n\t\t// Lower-cased characters are more common in entities, so we check for them first.\n\t\tif 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' || '0' <= c && c <= '9' {\n\t\t\tcontinue\n\t\t}\n\t\tif c != ';' {\n\t\t\ti--\n\t\t}\n\t\tbreak\n\t}\n\n\tentityName := string(s[1:i])\n\tif entityName == \"\" {\n\t\t// No-op.\n\t} else if attribute && entityName[len(entityName)-1] != ';' && len(s) > i && s[i] == '=' {\n\t\t// No-op.\n\t} else if x := entity[entityName]; x != 0 {\n\t\treturn dst + utf8.EncodeRune(b[dst:], x), src + i\n\t} else if x := entity2[entityName]; x[0] != 0 {\n\t\tdst1 := dst + utf8.EncodeRune(b[dst:], x[0])\n\t\treturn dst1 + utf8.EncodeRune(b[dst1:], x[1]), src + i\n\t} else if !attribute {\n\t\tmaxLen := len(entityName) - 1\n\t\tif maxLen > longestEntityWithoutSemicolon {\n\t\t\tmaxLen = longestEntityWithoutSemicolon\n\t\t}\n\t\tfor j := maxLen; j > 1; j-- {\n\t\t\tif x := entity[entityName[:j]]; x != 0 {\n\t\t\t\treturn dst + utf8.EncodeRune(b[dst:], x), src + j + 1\n\t\t\t}\n\t\t}\n\t}\n\n\tdst1, src1 = dst+i, src+i\n\tcopy(b[dst:dst1], b[src:src1])\n\treturn dst1, src1\n}\n\n// unescape unescapes b's entities in-place, so that \"a&lt;b\" becomes \"a<b\".\n// attribute should be true if parsing an attribute value.\nfunc unescape(b []byte, attribute bool) []byte {\n\tfor i, c := range b {\n\t\tif c == '&' {\n\t\t\tdst, src := unescapeEntity(b, i, i, attribute)\n\t\t\tfor src < len(b) {\n\t\t\t\tc := b[src]\n\t\t\t\tif c == '&' {\n\t\t\t\t\tdst, src = unescapeEntity(b, dst, src, attribute)\n\t\t\t\t} else {\n\t\t\t\t\tb[dst] = c\n\t\t\t\t\tdst, src = dst+1, src+1\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn b[0:dst]\n\t\t}\n\t}\n\treturn b\n}\n\n// lower lower-cases the A-Z bytes in b in-place, so that \"aBc\" becomes \"abc\".\nfunc lower(b []byte) []byte {\n\tfor i, c := range b {\n\t\tif 'A' <= c && c <= 'Z' {\n\t\t\tb[i] = c + 'a' - 'A'\n\t\t}\n\t}\n\treturn b\n}\n\nconst escapedChars = \"&'<>\\\"\\r\"\n\nfunc escape(w writer, s string) error {\n\ti := strings.IndexAny(s, escapedChars)\n\tfor i != -1 {\n\t\tif _, err := w.WriteString(s[:i]); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tvar esc string\n\t\tswitch s[i] {\n\t\tcase '&':\n\t\t\tesc = \"&amp;\"\n\t\tcase '\\'':\n\t\t\t// \"&#39;\" is shorter than \"&apos;\" and apos was not in HTML until HTML5.\n\t\t\tesc = \"&#39;\"\n\t\tcase '<':\n\t\t\tesc = \"&lt;\"\n\t\tcase '>':\n\t\t\tesc = \"&gt;\"\n\t\tcase '\"':\n\t\t\t// \"&#34;\" is shorter than \"&quot;\".\n\t\t\tesc = \"&#34;\"\n\t\tcase '\\r':\n\t\t\tesc = \"&#13;\"\n\t\tdefault:\n\t\t\tpanic(\"unrecognized escape character\")\n\t\t}\n\t\ts = s[i+1:]\n\t\tif _, err := w.WriteString(esc); err != nil {\n\t\t\treturn err\n\t\t}\n\t\ti = strings.IndexAny(s, escapedChars)\n\t}\n\t_, err := w.WriteString(s)\n\treturn err\n}\n\n// EscapeString escapes special characters like \"<\" to become \"&lt;\". It\n// escapes only five such characters: <, >, &, ' and \".\n// UnescapeString(EscapeString(s)) == s always holds, but the converse isn't\n// always true.\nfunc EscapeString(s string) string {\n\tif strings.IndexAny(s, escapedChars) == -1 {\n\t\treturn s\n\t}\n\tvar buf bytes.Buffer\n\tescape(&buf, s)\n\treturn buf.String()\n}\n\n// UnescapeString unescapes entities like \"&lt;\" to become \"<\". It unescapes a\n// larger range of entities than EscapeString escapes. For example, \"&aacute;\"\n// unescapes to \"á\", as does \"&#225;\" and \"&xE1;\".\n// UnescapeString(EscapeString(s)) == s always holds, but the converse isn't\n// always true.\nfunc UnescapeString(s string) string {\n\tfor _, c := range s {\n\t\tif c == '&' {\n\t\t\treturn string(unescape([]byte(s), false))\n\t\t}\n\t}\n\treturn s\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/foreign.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage html\n\nimport (\n\t\"strings\"\n)\n\nfunc adjustAttributeNames(aa []Attribute, nameMap map[string]string) {\n\tfor i := range aa {\n\t\tif newName, ok := nameMap[aa[i].Key]; ok {\n\t\t\taa[i].Key = newName\n\t\t}\n\t}\n}\n\nfunc adjustForeignAttributes(aa []Attribute) {\n\tfor i, a := range aa {\n\t\tif a.Key == \"\" || a.Key[0] != 'x' {\n\t\t\tcontinue\n\t\t}\n\t\tswitch a.Key {\n\t\tcase \"xlink:actuate\", \"xlink:arcrole\", \"xlink:href\", \"xlink:role\", \"xlink:show\",\n\t\t\t\"xlink:title\", \"xlink:type\", \"xml:base\", \"xml:lang\", \"xml:space\", \"xmlns:xlink\":\n\t\t\tj := strings.Index(a.Key, \":\")\n\t\t\taa[i].Namespace = a.Key[:j]\n\t\t\taa[i].Key = a.Key[j+1:]\n\t\t}\n\t}\n}\n\nfunc htmlIntegrationPoint(n *Node) bool {\n\tif n.Type != ElementNode {\n\t\treturn false\n\t}\n\tswitch n.Namespace {\n\tcase \"math\":\n\t\tif n.Data == \"annotation-xml\" {\n\t\t\tfor _, a := range n.Attr {\n\t\t\t\tif a.Key == \"encoding\" {\n\t\t\t\t\tval := strings.ToLower(a.Val)\n\t\t\t\t\tif val == \"text/html\" || val == \"application/xhtml+xml\" {\n\t\t\t\t\t\treturn true\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase \"svg\":\n\t\tswitch n.Data {\n\t\tcase \"desc\", \"foreignObject\", \"title\":\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc mathMLTextIntegrationPoint(n *Node) bool {\n\tif n.Namespace != \"math\" {\n\t\treturn false\n\t}\n\tswitch n.Data {\n\tcase \"mi\", \"mo\", \"mn\", \"ms\", \"mtext\":\n\t\treturn true\n\t}\n\treturn false\n}\n\n// Section 12.2.6.5.\nvar breakout = map[string]bool{\n\t\"b\":          true,\n\t\"big\":        true,\n\t\"blockquote\": true,\n\t\"body\":       true,\n\t\"br\":         true,\n\t\"center\":     true,\n\t\"code\":       true,\n\t\"dd\":         true,\n\t\"div\":        true,\n\t\"dl\":         true,\n\t\"dt\":         true,\n\t\"em\":         true,\n\t\"embed\":      true,\n\t\"h1\":         true,\n\t\"h2\":         true,\n\t\"h3\":         true,\n\t\"h4\":         true,\n\t\"h5\":         true,\n\t\"h6\":         true,\n\t\"head\":       true,\n\t\"hr\":         true,\n\t\"i\":          true,\n\t\"img\":        true,\n\t\"li\":         true,\n\t\"listing\":    true,\n\t\"menu\":       true,\n\t\"meta\":       true,\n\t\"nobr\":       true,\n\t\"ol\":         true,\n\t\"p\":          true,\n\t\"pre\":        true,\n\t\"ruby\":       true,\n\t\"s\":          true,\n\t\"small\":      true,\n\t\"span\":       true,\n\t\"strong\":     true,\n\t\"strike\":     true,\n\t\"sub\":        true,\n\t\"sup\":        true,\n\t\"table\":      true,\n\t\"tt\":         true,\n\t\"u\":          true,\n\t\"ul\":         true,\n\t\"var\":        true,\n}\n\n// Section 12.2.6.5.\nvar svgTagNameAdjustments = map[string]string{\n\t\"altglyph\":            \"altGlyph\",\n\t\"altglyphdef\":         \"altGlyphDef\",\n\t\"altglyphitem\":        \"altGlyphItem\",\n\t\"animatecolor\":        \"animateColor\",\n\t\"animatemotion\":       \"animateMotion\",\n\t\"animatetransform\":    \"animateTransform\",\n\t\"clippath\":            \"clipPath\",\n\t\"feblend\":             \"feBlend\",\n\t\"fecolormatrix\":       \"feColorMatrix\",\n\t\"fecomponenttransfer\": \"feComponentTransfer\",\n\t\"fecomposite\":         \"feComposite\",\n\t\"feconvolvematrix\":    \"feConvolveMatrix\",\n\t\"fediffuselighting\":   \"feDiffuseLighting\",\n\t\"fedisplacementmap\":   \"feDisplacementMap\",\n\t\"fedistantlight\":      \"feDistantLight\",\n\t\"feflood\":             \"feFlood\",\n\t\"fefunca\":             \"feFuncA\",\n\t\"fefuncb\":             \"feFuncB\",\n\t\"fefuncg\":             \"feFuncG\",\n\t\"fefuncr\":             \"feFuncR\",\n\t\"fegaussianblur\":      \"feGaussianBlur\",\n\t\"feimage\":             \"feImage\",\n\t\"femerge\":             \"feMerge\",\n\t\"femergenode\":         \"feMergeNode\",\n\t\"femorphology\":        \"feMorphology\",\n\t\"feoffset\":            \"feOffset\",\n\t\"fepointlight\":        \"fePointLight\",\n\t\"fespecularlighting\":  \"feSpecularLighting\",\n\t\"fespotlight\":         \"feSpotLight\",\n\t\"fetile\":              \"feTile\",\n\t\"feturbulence\":        \"feTurbulence\",\n\t\"foreignobject\":       \"foreignObject\",\n\t\"glyphref\":            \"glyphRef\",\n\t\"lineargradient\":      \"linearGradient\",\n\t\"radialgradient\":      \"radialGradient\",\n\t\"textpath\":            \"textPath\",\n}\n\n// Section 12.2.6.1\nvar mathMLAttributeAdjustments = map[string]string{\n\t\"definitionurl\": \"definitionURL\",\n}\n\nvar svgAttributeAdjustments = map[string]string{\n\t\"attributename\":       \"attributeName\",\n\t\"attributetype\":       \"attributeType\",\n\t\"basefrequency\":       \"baseFrequency\",\n\t\"baseprofile\":         \"baseProfile\",\n\t\"calcmode\":            \"calcMode\",\n\t\"clippathunits\":       \"clipPathUnits\",\n\t\"diffuseconstant\":     \"diffuseConstant\",\n\t\"edgemode\":            \"edgeMode\",\n\t\"filterunits\":         \"filterUnits\",\n\t\"glyphref\":            \"glyphRef\",\n\t\"gradienttransform\":   \"gradientTransform\",\n\t\"gradientunits\":       \"gradientUnits\",\n\t\"kernelmatrix\":        \"kernelMatrix\",\n\t\"kernelunitlength\":    \"kernelUnitLength\",\n\t\"keypoints\":           \"keyPoints\",\n\t\"keysplines\":          \"keySplines\",\n\t\"keytimes\":            \"keyTimes\",\n\t\"lengthadjust\":        \"lengthAdjust\",\n\t\"limitingconeangle\":   \"limitingConeAngle\",\n\t\"markerheight\":        \"markerHeight\",\n\t\"markerunits\":         \"markerUnits\",\n\t\"markerwidth\":         \"markerWidth\",\n\t\"maskcontentunits\":    \"maskContentUnits\",\n\t\"maskunits\":           \"maskUnits\",\n\t\"numoctaves\":          \"numOctaves\",\n\t\"pathlength\":          \"pathLength\",\n\t\"patterncontentunits\": \"patternContentUnits\",\n\t\"patterntransform\":    \"patternTransform\",\n\t\"patternunits\":        \"patternUnits\",\n\t\"pointsatx\":           \"pointsAtX\",\n\t\"pointsaty\":           \"pointsAtY\",\n\t\"pointsatz\":           \"pointsAtZ\",\n\t\"preservealpha\":       \"preserveAlpha\",\n\t\"preserveaspectratio\": \"preserveAspectRatio\",\n\t\"primitiveunits\":      \"primitiveUnits\",\n\t\"refx\":                \"refX\",\n\t\"refy\":                \"refY\",\n\t\"repeatcount\":         \"repeatCount\",\n\t\"repeatdur\":           \"repeatDur\",\n\t\"requiredextensions\":  \"requiredExtensions\",\n\t\"requiredfeatures\":    \"requiredFeatures\",\n\t\"specularconstant\":    \"specularConstant\",\n\t\"specularexponent\":    \"specularExponent\",\n\t\"spreadmethod\":        \"spreadMethod\",\n\t\"startoffset\":         \"startOffset\",\n\t\"stddeviation\":        \"stdDeviation\",\n\t\"stitchtiles\":         \"stitchTiles\",\n\t\"surfacescale\":        \"surfaceScale\",\n\t\"systemlanguage\":      \"systemLanguage\",\n\t\"tablevalues\":         \"tableValues\",\n\t\"targetx\":             \"targetX\",\n\t\"targety\":             \"targetY\",\n\t\"textlength\":          \"textLength\",\n\t\"viewbox\":             \"viewBox\",\n\t\"viewtarget\":          \"viewTarget\",\n\t\"xchannelselector\":    \"xChannelSelector\",\n\t\"ychannelselector\":    \"yChannelSelector\",\n\t\"zoomandpan\":          \"zoomAndPan\",\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/node.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage html\n\nimport (\n\t\"golang.org/x/net/html/atom\"\n)\n\n// A NodeType is the type of a Node.\ntype NodeType uint32\n\nconst (\n\tErrorNode NodeType = iota\n\tTextNode\n\tDocumentNode\n\tElementNode\n\tCommentNode\n\tDoctypeNode\n\t// RawNode nodes are not returned by the parser, but can be part of the\n\t// Node tree passed to func Render to insert raw HTML (without escaping).\n\t// If so, this package makes no guarantee that the rendered HTML is secure\n\t// (from e.g. Cross Site Scripting attacks) or well-formed.\n\tRawNode\n\tscopeMarkerNode\n)\n\n// Section 12.2.4.3 says \"The markers are inserted when entering applet,\n// object, marquee, template, td, th, and caption elements, and are used\n// to prevent formatting from \"leaking\" into applet, object, marquee,\n// template, td, th, and caption elements\".\nvar scopeMarker = Node{Type: scopeMarkerNode}\n\n// A Node consists of a NodeType and some Data (tag name for element nodes,\n// content for text) and are part of a tree of Nodes. Element nodes may also\n// have a Namespace and contain a slice of Attributes. Data is unescaped, so\n// that it looks like \"a<b\" rather than \"a&lt;b\". For element nodes, DataAtom\n// is the atom for Data, or zero if Data is not a known tag name.\n//\n// An empty Namespace implies a \"http://www.w3.org/1999/xhtml\" namespace.\n// Similarly, \"math\" is short for \"http://www.w3.org/1998/Math/MathML\", and\n// \"svg\" is short for \"http://www.w3.org/2000/svg\".\ntype Node struct {\n\tParent, FirstChild, LastChild, PrevSibling, NextSibling *Node\n\n\tType      NodeType\n\tDataAtom  atom.Atom\n\tData      string\n\tNamespace string\n\tAttr      []Attribute\n}\n\n// InsertBefore inserts newChild as a child of n, immediately before oldChild\n// in the sequence of n's children. oldChild may be nil, in which case newChild\n// is appended to the end of n's children.\n//\n// It will panic if newChild already has a parent or siblings.\nfunc (n *Node) InsertBefore(newChild, oldChild *Node) {\n\tif newChild.Parent != nil || newChild.PrevSibling != nil || newChild.NextSibling != nil {\n\t\tpanic(\"html: InsertBefore called for an attached child Node\")\n\t}\n\tvar prev, next *Node\n\tif oldChild != nil {\n\t\tprev, next = oldChild.PrevSibling, oldChild\n\t} else {\n\t\tprev = n.LastChild\n\t}\n\tif prev != nil {\n\t\tprev.NextSibling = newChild\n\t} else {\n\t\tn.FirstChild = newChild\n\t}\n\tif next != nil {\n\t\tnext.PrevSibling = newChild\n\t} else {\n\t\tn.LastChild = newChild\n\t}\n\tnewChild.Parent = n\n\tnewChild.PrevSibling = prev\n\tnewChild.NextSibling = next\n}\n\n// AppendChild adds a node c as a child of n.\n//\n// It will panic if c already has a parent or siblings.\nfunc (n *Node) AppendChild(c *Node) {\n\tif c.Parent != nil || c.PrevSibling != nil || c.NextSibling != nil {\n\t\tpanic(\"html: AppendChild called for an attached child Node\")\n\t}\n\tlast := n.LastChild\n\tif last != nil {\n\t\tlast.NextSibling = c\n\t} else {\n\t\tn.FirstChild = c\n\t}\n\tn.LastChild = c\n\tc.Parent = n\n\tc.PrevSibling = last\n}\n\n// RemoveChild removes a node c that is a child of n. Afterwards, c will have\n// no parent and no siblings.\n//\n// It will panic if c's parent is not n.\nfunc (n *Node) RemoveChild(c *Node) {\n\tif c.Parent != n {\n\t\tpanic(\"html: RemoveChild called for a non-child Node\")\n\t}\n\tif n.FirstChild == c {\n\t\tn.FirstChild = c.NextSibling\n\t}\n\tif c.NextSibling != nil {\n\t\tc.NextSibling.PrevSibling = c.PrevSibling\n\t}\n\tif n.LastChild == c {\n\t\tn.LastChild = c.PrevSibling\n\t}\n\tif c.PrevSibling != nil {\n\t\tc.PrevSibling.NextSibling = c.NextSibling\n\t}\n\tc.Parent = nil\n\tc.PrevSibling = nil\n\tc.NextSibling = nil\n}\n\n// reparentChildren reparents all of src's child nodes to dst.\nfunc reparentChildren(dst, src *Node) {\n\tfor {\n\t\tchild := src.FirstChild\n\t\tif child == nil {\n\t\t\tbreak\n\t\t}\n\t\tsrc.RemoveChild(child)\n\t\tdst.AppendChild(child)\n\t}\n}\n\n// clone returns a new node with the same type, data and attributes.\n// The clone has no parent, no siblings and no children.\nfunc (n *Node) clone() *Node {\n\tm := &Node{\n\t\tType:     n.Type,\n\t\tDataAtom: n.DataAtom,\n\t\tData:     n.Data,\n\t\tAttr:     make([]Attribute, len(n.Attr)),\n\t}\n\tcopy(m.Attr, n.Attr)\n\treturn m\n}\n\n// nodeStack is a stack of nodes.\ntype nodeStack []*Node\n\n// pop pops the stack. It will panic if s is empty.\nfunc (s *nodeStack) pop() *Node {\n\ti := len(*s)\n\tn := (*s)[i-1]\n\t*s = (*s)[:i-1]\n\treturn n\n}\n\n// top returns the most recently pushed node, or nil if s is empty.\nfunc (s *nodeStack) top() *Node {\n\tif i := len(*s); i > 0 {\n\t\treturn (*s)[i-1]\n\t}\n\treturn nil\n}\n\n// index returns the index of the top-most occurrence of n in the stack, or -1\n// if n is not present.\nfunc (s *nodeStack) index(n *Node) int {\n\tfor i := len(*s) - 1; i >= 0; i-- {\n\t\tif (*s)[i] == n {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\n// contains returns whether a is within s.\nfunc (s *nodeStack) contains(a atom.Atom) bool {\n\tfor _, n := range *s {\n\t\tif n.DataAtom == a && n.Namespace == \"\" {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// insert inserts a node at the given index.\nfunc (s *nodeStack) insert(i int, n *Node) {\n\t(*s) = append(*s, nil)\n\tcopy((*s)[i+1:], (*s)[i:])\n\t(*s)[i] = n\n}\n\n// remove removes a node from the stack. It is a no-op if n is not present.\nfunc (s *nodeStack) remove(n *Node) {\n\ti := s.index(n)\n\tif i == -1 {\n\t\treturn\n\t}\n\tcopy((*s)[i:], (*s)[i+1:])\n\tj := len(*s) - 1\n\t(*s)[j] = nil\n\t*s = (*s)[:j]\n}\n\ntype insertionModeStack []insertionMode\n\nfunc (s *insertionModeStack) pop() (im insertionMode) {\n\ti := len(*s)\n\tim = (*s)[i-1]\n\t*s = (*s)[:i-1]\n\treturn im\n}\n\nfunc (s *insertionModeStack) top() insertionMode {\n\tif i := len(*s); i > 0 {\n\t\treturn (*s)[i-1]\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/parse.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage html\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"strings\"\n\n\ta \"golang.org/x/net/html/atom\"\n)\n\n// A parser implements the HTML5 parsing algorithm:\n// https://html.spec.whatwg.org/multipage/syntax.html#tree-construction\ntype parser struct {\n\t// tokenizer provides the tokens for the parser.\n\ttokenizer *Tokenizer\n\t// tok is the most recently read token.\n\ttok Token\n\t// Self-closing tags like <hr/> are treated as start tags, except that\n\t// hasSelfClosingToken is set while they are being processed.\n\thasSelfClosingToken bool\n\t// doc is the document root element.\n\tdoc *Node\n\t// The stack of open elements (section 12.2.4.2) and active formatting\n\t// elements (section 12.2.4.3).\n\toe, afe nodeStack\n\t// Element pointers (section 12.2.4.4).\n\thead, form *Node\n\t// Other parsing state flags (section 12.2.4.5).\n\tscripting, framesetOK bool\n\t// The stack of template insertion modes\n\ttemplateStack insertionModeStack\n\t// im is the current insertion mode.\n\tim insertionMode\n\t// originalIM is the insertion mode to go back to after completing a text\n\t// or inTableText insertion mode.\n\toriginalIM insertionMode\n\t// fosterParenting is whether new elements should be inserted according to\n\t// the foster parenting rules (section 12.2.6.1).\n\tfosterParenting bool\n\t// quirks is whether the parser is operating in \"quirks mode.\"\n\tquirks bool\n\t// fragment is whether the parser is parsing an HTML fragment.\n\tfragment bool\n\t// context is the context element when parsing an HTML fragment\n\t// (section 12.4).\n\tcontext *Node\n}\n\nfunc (p *parser) top() *Node {\n\tif n := p.oe.top(); n != nil {\n\t\treturn n\n\t}\n\treturn p.doc\n}\n\n// Stop tags for use in popUntil. These come from section 12.2.4.2.\nvar (\n\tdefaultScopeStopTags = map[string][]a.Atom{\n\t\t\"\":     {a.Applet, a.Caption, a.Html, a.Table, a.Td, a.Th, a.Marquee, a.Object, a.Template},\n\t\t\"math\": {a.AnnotationXml, a.Mi, a.Mn, a.Mo, a.Ms, a.Mtext},\n\t\t\"svg\":  {a.Desc, a.ForeignObject, a.Title},\n\t}\n)\n\ntype scope int\n\nconst (\n\tdefaultScope scope = iota\n\tlistItemScope\n\tbuttonScope\n\ttableScope\n\ttableRowScope\n\ttableBodyScope\n\tselectScope\n)\n\n// popUntil pops the stack of open elements at the highest element whose tag\n// is in matchTags, provided there is no higher element in the scope's stop\n// tags (as defined in section 12.2.4.2). It returns whether or not there was\n// such an element. If there was not, popUntil leaves the stack unchanged.\n//\n// For example, the set of stop tags for table scope is: \"html\", \"table\". If\n// the stack was:\n// [\"html\", \"body\", \"font\", \"table\", \"b\", \"i\", \"u\"]\n// then popUntil(tableScope, \"font\") would return false, but\n// popUntil(tableScope, \"i\") would return true and the stack would become:\n// [\"html\", \"body\", \"font\", \"table\", \"b\"]\n//\n// If an element's tag is in both the stop tags and matchTags, then the stack\n// will be popped and the function returns true (provided, of course, there was\n// no higher element in the stack that was also in the stop tags). For example,\n// popUntil(tableScope, \"table\") returns true and leaves:\n// [\"html\", \"body\", \"font\"]\nfunc (p *parser) popUntil(s scope, matchTags ...a.Atom) bool {\n\tif i := p.indexOfElementInScope(s, matchTags...); i != -1 {\n\t\tp.oe = p.oe[:i]\n\t\treturn true\n\t}\n\treturn false\n}\n\n// indexOfElementInScope returns the index in p.oe of the highest element whose\n// tag is in matchTags that is in scope. If no matching element is in scope, it\n// returns -1.\nfunc (p *parser) indexOfElementInScope(s scope, matchTags ...a.Atom) int {\n\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\ttagAtom := p.oe[i].DataAtom\n\t\tif p.oe[i].Namespace == \"\" {\n\t\t\tfor _, t := range matchTags {\n\t\t\t\tif t == tagAtom {\n\t\t\t\t\treturn i\n\t\t\t\t}\n\t\t\t}\n\t\t\tswitch s {\n\t\t\tcase defaultScope:\n\t\t\t\t// No-op.\n\t\t\tcase listItemScope:\n\t\t\t\tif tagAtom == a.Ol || tagAtom == a.Ul {\n\t\t\t\t\treturn -1\n\t\t\t\t}\n\t\t\tcase buttonScope:\n\t\t\t\tif tagAtom == a.Button {\n\t\t\t\t\treturn -1\n\t\t\t\t}\n\t\t\tcase tableScope:\n\t\t\t\tif tagAtom == a.Html || tagAtom == a.Table || tagAtom == a.Template {\n\t\t\t\t\treturn -1\n\t\t\t\t}\n\t\t\tcase selectScope:\n\t\t\t\tif tagAtom != a.Optgroup && tagAtom != a.Option {\n\t\t\t\t\treturn -1\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\tpanic(\"unreachable\")\n\t\t\t}\n\t\t}\n\t\tswitch s {\n\t\tcase defaultScope, listItemScope, buttonScope:\n\t\t\tfor _, t := range defaultScopeStopTags[p.oe[i].Namespace] {\n\t\t\t\tif t == tagAtom {\n\t\t\t\t\treturn -1\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn -1\n}\n\n// elementInScope is like popUntil, except that it doesn't modify the stack of\n// open elements.\nfunc (p *parser) elementInScope(s scope, matchTags ...a.Atom) bool {\n\treturn p.indexOfElementInScope(s, matchTags...) != -1\n}\n\n// clearStackToContext pops elements off the stack of open elements until a\n// scope-defined element is found.\nfunc (p *parser) clearStackToContext(s scope) {\n\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\ttagAtom := p.oe[i].DataAtom\n\t\tswitch s {\n\t\tcase tableScope:\n\t\t\tif tagAtom == a.Html || tagAtom == a.Table || tagAtom == a.Template {\n\t\t\t\tp.oe = p.oe[:i+1]\n\t\t\t\treturn\n\t\t\t}\n\t\tcase tableRowScope:\n\t\t\tif tagAtom == a.Html || tagAtom == a.Tr || tagAtom == a.Template {\n\t\t\t\tp.oe = p.oe[:i+1]\n\t\t\t\treturn\n\t\t\t}\n\t\tcase tableBodyScope:\n\t\t\tif tagAtom == a.Html || tagAtom == a.Tbody || tagAtom == a.Tfoot || tagAtom == a.Thead || tagAtom == a.Template {\n\t\t\t\tp.oe = p.oe[:i+1]\n\t\t\t\treturn\n\t\t\t}\n\t\tdefault:\n\t\t\tpanic(\"unreachable\")\n\t\t}\n\t}\n}\n\n// parseGenericRawTextElements implements the generic raw text element parsing\n// algorithm defined in 12.2.6.2.\n// https://html.spec.whatwg.org/multipage/parsing.html#parsing-elements-that-contain-only-text\n// TODO: Since both RAWTEXT and RCDATA states are treated as tokenizer's part\n// officially, need to make tokenizer consider both states.\nfunc (p *parser) parseGenericRawTextElement() {\n\tp.addElement()\n\tp.originalIM = p.im\n\tp.im = textIM\n}\n\n// generateImpliedEndTags pops nodes off the stack of open elements as long as\n// the top node has a tag name of dd, dt, li, optgroup, option, p, rb, rp, rt or rtc.\n// If exceptions are specified, nodes with that name will not be popped off.\nfunc (p *parser) generateImpliedEndTags(exceptions ...string) {\n\tvar i int\nloop:\n\tfor i = len(p.oe) - 1; i >= 0; i-- {\n\t\tn := p.oe[i]\n\t\tif n.Type != ElementNode {\n\t\t\tbreak\n\t\t}\n\t\tswitch n.DataAtom {\n\t\tcase a.Dd, a.Dt, a.Li, a.Optgroup, a.Option, a.P, a.Rb, a.Rp, a.Rt, a.Rtc:\n\t\t\tfor _, except := range exceptions {\n\t\t\t\tif n.Data == except {\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\tbreak\n\t}\n\n\tp.oe = p.oe[:i+1]\n}\n\n// addChild adds a child node n to the top element, and pushes n onto the stack\n// of open elements if it is an element node.\nfunc (p *parser) addChild(n *Node) {\n\tif p.shouldFosterParent() {\n\t\tp.fosterParent(n)\n\t} else {\n\t\tp.top().AppendChild(n)\n\t}\n\n\tif n.Type == ElementNode {\n\t\tp.oe = append(p.oe, n)\n\t}\n}\n\n// shouldFosterParent returns whether the next node to be added should be\n// foster parented.\nfunc (p *parser) shouldFosterParent() bool {\n\tif p.fosterParenting {\n\t\tswitch p.top().DataAtom {\n\t\tcase a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr:\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// fosterParent adds a child node according to the foster parenting rules.\n// Section 12.2.6.1, \"foster parenting\".\nfunc (p *parser) fosterParent(n *Node) {\n\tvar table, parent, prev, template *Node\n\tvar i int\n\tfor i = len(p.oe) - 1; i >= 0; i-- {\n\t\tif p.oe[i].DataAtom == a.Table {\n\t\t\ttable = p.oe[i]\n\t\t\tbreak\n\t\t}\n\t}\n\n\tvar j int\n\tfor j = len(p.oe) - 1; j >= 0; j-- {\n\t\tif p.oe[j].DataAtom == a.Template {\n\t\t\ttemplate = p.oe[j]\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif template != nil && (table == nil || j > i) {\n\t\ttemplate.AppendChild(n)\n\t\treturn\n\t}\n\n\tif table == nil {\n\t\t// The foster parent is the html element.\n\t\tparent = p.oe[0]\n\t} else {\n\t\tparent = table.Parent\n\t}\n\tif parent == nil {\n\t\tparent = p.oe[i-1]\n\t}\n\n\tif table != nil {\n\t\tprev = table.PrevSibling\n\t} else {\n\t\tprev = parent.LastChild\n\t}\n\tif prev != nil && prev.Type == TextNode && n.Type == TextNode {\n\t\tprev.Data += n.Data\n\t\treturn\n\t}\n\n\tparent.InsertBefore(n, table)\n}\n\n// addText adds text to the preceding node if it is a text node, or else it\n// calls addChild with a new text node.\nfunc (p *parser) addText(text string) {\n\tif text == \"\" {\n\t\treturn\n\t}\n\n\tif p.shouldFosterParent() {\n\t\tp.fosterParent(&Node{\n\t\t\tType: TextNode,\n\t\t\tData: text,\n\t\t})\n\t\treturn\n\t}\n\n\tt := p.top()\n\tif n := t.LastChild; n != nil && n.Type == TextNode {\n\t\tn.Data += text\n\t\treturn\n\t}\n\tp.addChild(&Node{\n\t\tType: TextNode,\n\t\tData: text,\n\t})\n}\n\n// addElement adds a child element based on the current token.\nfunc (p *parser) addElement() {\n\tp.addChild(&Node{\n\t\tType:     ElementNode,\n\t\tDataAtom: p.tok.DataAtom,\n\t\tData:     p.tok.Data,\n\t\tAttr:     p.tok.Attr,\n\t})\n}\n\n// Section 12.2.4.3.\nfunc (p *parser) addFormattingElement() {\n\ttagAtom, attr := p.tok.DataAtom, p.tok.Attr\n\tp.addElement()\n\n\t// Implement the Noah's Ark clause, but with three per family instead of two.\n\tidenticalElements := 0\nfindIdenticalElements:\n\tfor i := len(p.afe) - 1; i >= 0; i-- {\n\t\tn := p.afe[i]\n\t\tif n.Type == scopeMarkerNode {\n\t\t\tbreak\n\t\t}\n\t\tif n.Type != ElementNode {\n\t\t\tcontinue\n\t\t}\n\t\tif n.Namespace != \"\" {\n\t\t\tcontinue\n\t\t}\n\t\tif n.DataAtom != tagAtom {\n\t\t\tcontinue\n\t\t}\n\t\tif len(n.Attr) != len(attr) {\n\t\t\tcontinue\n\t\t}\n\tcompareAttributes:\n\t\tfor _, t0 := range n.Attr {\n\t\t\tfor _, t1 := range attr {\n\t\t\t\tif t0.Key == t1.Key && t0.Namespace == t1.Namespace && t0.Val == t1.Val {\n\t\t\t\t\t// Found a match for this attribute, continue with the next attribute.\n\t\t\t\t\tcontinue compareAttributes\n\t\t\t\t}\n\t\t\t}\n\t\t\t// If we get here, there is no attribute that matches a.\n\t\t\t// Therefore the element is not identical to the new one.\n\t\t\tcontinue findIdenticalElements\n\t\t}\n\n\t\tidenticalElements++\n\t\tif identicalElements >= 3 {\n\t\t\tp.afe.remove(n)\n\t\t}\n\t}\n\n\tp.afe = append(p.afe, p.top())\n}\n\n// Section 12.2.4.3.\nfunc (p *parser) clearActiveFormattingElements() {\n\tfor {\n\t\tif n := p.afe.pop(); len(p.afe) == 0 || n.Type == scopeMarkerNode {\n\t\t\treturn\n\t\t}\n\t}\n}\n\n// Section 12.2.4.3.\nfunc (p *parser) reconstructActiveFormattingElements() {\n\tn := p.afe.top()\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Type == scopeMarkerNode || p.oe.index(n) != -1 {\n\t\treturn\n\t}\n\ti := len(p.afe) - 1\n\tfor n.Type != scopeMarkerNode && p.oe.index(n) == -1 {\n\t\tif i == 0 {\n\t\t\ti = -1\n\t\t\tbreak\n\t\t}\n\t\ti--\n\t\tn = p.afe[i]\n\t}\n\tfor {\n\t\ti++\n\t\tclone := p.afe[i].clone()\n\t\tp.addChild(clone)\n\t\tp.afe[i] = clone\n\t\tif i == len(p.afe)-1 {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n// Section 12.2.5.\nfunc (p *parser) acknowledgeSelfClosingTag() {\n\tp.hasSelfClosingToken = false\n}\n\n// An insertion mode (section 12.2.4.1) is the state transition function from\n// a particular state in the HTML5 parser's state machine. It updates the\n// parser's fields depending on parser.tok (where ErrorToken means EOF).\n// It returns whether the token was consumed.\ntype insertionMode func(*parser) bool\n\n// setOriginalIM sets the insertion mode to return to after completing a text or\n// inTableText insertion mode.\n// Section 12.2.4.1, \"using the rules for\".\nfunc (p *parser) setOriginalIM() {\n\tif p.originalIM != nil {\n\t\tpanic(\"html: bad parser state: originalIM was set twice\")\n\t}\n\tp.originalIM = p.im\n}\n\n// Section 12.2.4.1, \"reset the insertion mode\".\nfunc (p *parser) resetInsertionMode() {\n\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\tn := p.oe[i]\n\t\tlast := i == 0\n\t\tif last && p.context != nil {\n\t\t\tn = p.context\n\t\t}\n\n\t\tswitch n.DataAtom {\n\t\tcase a.Select:\n\t\t\tif !last {\n\t\t\t\tfor ancestor, first := n, p.oe[0]; ancestor != first; {\n\t\t\t\t\tancestor = p.oe[p.oe.index(ancestor)-1]\n\t\t\t\t\tswitch ancestor.DataAtom {\n\t\t\t\t\tcase a.Template:\n\t\t\t\t\t\tp.im = inSelectIM\n\t\t\t\t\t\treturn\n\t\t\t\t\tcase a.Table:\n\t\t\t\t\t\tp.im = inSelectInTableIM\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.im = inSelectIM\n\t\tcase a.Td, a.Th:\n\t\t\t// TODO: remove this divergence from the HTML5 spec.\n\t\t\t//\n\t\t\t// See https://bugs.chromium.org/p/chromium/issues/detail?id=829668\n\t\t\tp.im = inCellIM\n\t\tcase a.Tr:\n\t\t\tp.im = inRowIM\n\t\tcase a.Tbody, a.Thead, a.Tfoot:\n\t\t\tp.im = inTableBodyIM\n\t\tcase a.Caption:\n\t\t\tp.im = inCaptionIM\n\t\tcase a.Colgroup:\n\t\t\tp.im = inColumnGroupIM\n\t\tcase a.Table:\n\t\t\tp.im = inTableIM\n\t\tcase a.Template:\n\t\t\t// TODO: remove this divergence from the HTML5 spec.\n\t\t\tif n.Namespace != \"\" {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tp.im = p.templateStack.top()\n\t\tcase a.Head:\n\t\t\t// TODO: remove this divergence from the HTML5 spec.\n\t\t\t//\n\t\t\t// See https://bugs.chromium.org/p/chromium/issues/detail?id=829668\n\t\t\tp.im = inHeadIM\n\t\tcase a.Body:\n\t\t\tp.im = inBodyIM\n\t\tcase a.Frameset:\n\t\t\tp.im = inFramesetIM\n\t\tcase a.Html:\n\t\t\tif p.head == nil {\n\t\t\t\tp.im = beforeHeadIM\n\t\t\t} else {\n\t\t\t\tp.im = afterHeadIM\n\t\t\t}\n\t\tdefault:\n\t\t\tif last {\n\t\t\t\tp.im = inBodyIM\n\t\t\t\treturn\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\treturn\n\t}\n}\n\nconst whitespace = \" \\t\\r\\n\\f\"\n\n// Section 12.2.6.4.1.\nfunc initialIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken:\n\t\tp.tok.Data = strings.TrimLeft(p.tok.Data, whitespace)\n\t\tif len(p.tok.Data) == 0 {\n\t\t\t// It was all whitespace, so ignore it.\n\t\t\treturn true\n\t\t}\n\tcase CommentToken:\n\t\tp.doc.AppendChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\tcase DoctypeToken:\n\t\tn, quirks := parseDoctype(p.tok.Data)\n\t\tp.doc.AppendChild(n)\n\t\tp.quirks = quirks\n\t\tp.im = beforeHTMLIM\n\t\treturn true\n\t}\n\tp.quirks = true\n\tp.im = beforeHTMLIM\n\treturn false\n}\n\n// Section 12.2.6.4.2.\nfunc beforeHTMLIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase DoctypeToken:\n\t\t// Ignore the token.\n\t\treturn true\n\tcase TextToken:\n\t\tp.tok.Data = strings.TrimLeft(p.tok.Data, whitespace)\n\t\tif len(p.tok.Data) == 0 {\n\t\t\t// It was all whitespace, so ignore it.\n\t\t\treturn true\n\t\t}\n\tcase StartTagToken:\n\t\tif p.tok.DataAtom == a.Html {\n\t\t\tp.addElement()\n\t\t\tp.im = beforeHeadIM\n\t\t\treturn true\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Head, a.Body, a.Html, a.Br:\n\t\t\tp.parseImpliedToken(StartTagToken, a.Html, a.Html.String())\n\t\t\treturn false\n\t\tdefault:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase CommentToken:\n\t\tp.doc.AppendChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\t}\n\tp.parseImpliedToken(StartTagToken, a.Html, a.Html.String())\n\treturn false\n}\n\n// Section 12.2.6.4.3.\nfunc beforeHeadIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken:\n\t\tp.tok.Data = strings.TrimLeft(p.tok.Data, whitespace)\n\t\tif len(p.tok.Data) == 0 {\n\t\t\t// It was all whitespace, so ignore it.\n\t\t\treturn true\n\t\t}\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Head:\n\t\t\tp.addElement()\n\t\t\tp.head = p.top()\n\t\t\tp.im = inHeadIM\n\t\t\treturn true\n\t\tcase a.Html:\n\t\t\treturn inBodyIM(p)\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Head, a.Body, a.Html, a.Br:\n\t\t\tp.parseImpliedToken(StartTagToken, a.Head, a.Head.String())\n\t\t\treturn false\n\t\tdefault:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\tcase DoctypeToken:\n\t\t// Ignore the token.\n\t\treturn true\n\t}\n\n\tp.parseImpliedToken(StartTagToken, a.Head, a.Head.String())\n\treturn false\n}\n\n// Section 12.2.6.4.4.\nfunc inHeadIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken:\n\t\ts := strings.TrimLeft(p.tok.Data, whitespace)\n\t\tif len(s) < len(p.tok.Data) {\n\t\t\t// Add the initial whitespace to the current node.\n\t\t\tp.addText(p.tok.Data[:len(p.tok.Data)-len(s)])\n\t\t\tif s == \"\" {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.tok.Data = s\n\t\t}\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\treturn inBodyIM(p)\n\t\tcase a.Base, a.Basefont, a.Bgsound, a.Link, a.Meta:\n\t\t\tp.addElement()\n\t\t\tp.oe.pop()\n\t\t\tp.acknowledgeSelfClosingTag()\n\t\t\treturn true\n\t\tcase a.Noscript:\n\t\t\tif p.scripting {\n\t\t\t\tp.parseGenericRawTextElement()\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.addElement()\n\t\t\tp.im = inHeadNoscriptIM\n\t\t\t// Don't let the tokenizer go into raw text mode when scripting is disabled.\n\t\t\tp.tokenizer.NextIsNotRawText()\n\t\t\treturn true\n\t\tcase a.Script, a.Title:\n\t\t\tp.addElement()\n\t\t\tp.setOriginalIM()\n\t\t\tp.im = textIM\n\t\t\treturn true\n\t\tcase a.Noframes, a.Style:\n\t\t\tp.parseGenericRawTextElement()\n\t\t\treturn true\n\t\tcase a.Head:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Template:\n\t\t\tp.addElement()\n\t\t\tp.afe = append(p.afe, &scopeMarker)\n\t\t\tp.framesetOK = false\n\t\t\tp.im = inTemplateIM\n\t\t\tp.templateStack = append(p.templateStack, inTemplateIM)\n\t\t\treturn true\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Head:\n\t\t\tp.oe.pop()\n\t\t\tp.im = afterHeadIM\n\t\t\treturn true\n\t\tcase a.Body, a.Html, a.Br:\n\t\t\tp.parseImpliedToken(EndTagToken, a.Head, a.Head.String())\n\t\t\treturn false\n\t\tcase a.Template:\n\t\t\tif !p.oe.contains(a.Template) {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\t// TODO: remove this divergence from the HTML5 spec.\n\t\t\t//\n\t\t\t// See https://bugs.chromium.org/p/chromium/issues/detail?id=829668\n\t\t\tp.generateImpliedEndTags()\n\t\t\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\t\t\tif n := p.oe[i]; n.Namespace == \"\" && n.DataAtom == a.Template {\n\t\t\t\t\tp.oe = p.oe[:i]\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.clearActiveFormattingElements()\n\t\t\tp.templateStack.pop()\n\t\t\tp.resetInsertionMode()\n\t\t\treturn true\n\t\tdefault:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\tcase DoctypeToken:\n\t\t// Ignore the token.\n\t\treturn true\n\t}\n\n\tp.parseImpliedToken(EndTagToken, a.Head, a.Head.String())\n\treturn false\n}\n\n// 12.2.6.4.5.\nfunc inHeadNoscriptIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase DoctypeToken:\n\t\t// Ignore the token.\n\t\treturn true\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\treturn inBodyIM(p)\n\t\tcase a.Basefont, a.Bgsound, a.Link, a.Meta, a.Noframes, a.Style:\n\t\t\treturn inHeadIM(p)\n\t\tcase a.Head, a.Noscript:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Noscript, a.Br:\n\t\tdefault:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase TextToken:\n\t\ts := strings.TrimLeft(p.tok.Data, whitespace)\n\t\tif len(s) == 0 {\n\t\t\t// It was all whitespace.\n\t\t\treturn inHeadIM(p)\n\t\t}\n\tcase CommentToken:\n\t\treturn inHeadIM(p)\n\t}\n\tp.oe.pop()\n\tif p.top().DataAtom != a.Head {\n\t\tpanic(\"html: the new current node will be a head element.\")\n\t}\n\tp.im = inHeadIM\n\tif p.tok.DataAtom == a.Noscript {\n\t\treturn true\n\t}\n\treturn false\n}\n\n// Section 12.2.6.4.6.\nfunc afterHeadIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken:\n\t\ts := strings.TrimLeft(p.tok.Data, whitespace)\n\t\tif len(s) < len(p.tok.Data) {\n\t\t\t// Add the initial whitespace to the current node.\n\t\t\tp.addText(p.tok.Data[:len(p.tok.Data)-len(s)])\n\t\t\tif s == \"\" {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.tok.Data = s\n\t\t}\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\treturn inBodyIM(p)\n\t\tcase a.Body:\n\t\t\tp.addElement()\n\t\t\tp.framesetOK = false\n\t\t\tp.im = inBodyIM\n\t\t\treturn true\n\t\tcase a.Frameset:\n\t\t\tp.addElement()\n\t\t\tp.im = inFramesetIM\n\t\t\treturn true\n\t\tcase a.Base, a.Basefont, a.Bgsound, a.Link, a.Meta, a.Noframes, a.Script, a.Style, a.Template, a.Title:\n\t\t\tp.oe = append(p.oe, p.head)\n\t\t\tdefer p.oe.remove(p.head)\n\t\t\treturn inHeadIM(p)\n\t\tcase a.Head:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Body, a.Html, a.Br:\n\t\t\t// Drop down to creating an implied <body> tag.\n\t\tcase a.Template:\n\t\t\treturn inHeadIM(p)\n\t\tdefault:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\tcase DoctypeToken:\n\t\t// Ignore the token.\n\t\treturn true\n\t}\n\n\tp.parseImpliedToken(StartTagToken, a.Body, a.Body.String())\n\tp.framesetOK = true\n\treturn false\n}\n\n// copyAttributes copies attributes of src not found on dst to dst.\nfunc copyAttributes(dst *Node, src Token) {\n\tif len(src.Attr) == 0 {\n\t\treturn\n\t}\n\tattr := map[string]string{}\n\tfor _, t := range dst.Attr {\n\t\tattr[t.Key] = t.Val\n\t}\n\tfor _, t := range src.Attr {\n\t\tif _, ok := attr[t.Key]; !ok {\n\t\t\tdst.Attr = append(dst.Attr, t)\n\t\t\tattr[t.Key] = t.Val\n\t\t}\n\t}\n}\n\n// Section 12.2.6.4.7.\nfunc inBodyIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken:\n\t\td := p.tok.Data\n\t\tswitch n := p.oe.top(); n.DataAtom {\n\t\tcase a.Pre, a.Listing:\n\t\t\tif n.FirstChild == nil {\n\t\t\t\t// Ignore a newline at the start of a <pre> block.\n\t\t\t\tif d != \"\" && d[0] == '\\r' {\n\t\t\t\t\td = d[1:]\n\t\t\t\t}\n\t\t\t\tif d != \"\" && d[0] == '\\n' {\n\t\t\t\t\td = d[1:]\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\td = strings.Replace(d, \"\\x00\", \"\", -1)\n\t\tif d == \"\" {\n\t\t\treturn true\n\t\t}\n\t\tp.reconstructActiveFormattingElements()\n\t\tp.addText(d)\n\t\tif p.framesetOK && strings.TrimLeft(d, whitespace) != \"\" {\n\t\t\t// There were non-whitespace characters inserted.\n\t\t\tp.framesetOK = false\n\t\t}\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\tif p.oe.contains(a.Template) {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tcopyAttributes(p.oe[0], p.tok)\n\t\tcase a.Base, a.Basefont, a.Bgsound, a.Link, a.Meta, a.Noframes, a.Script, a.Style, a.Template, a.Title:\n\t\t\treturn inHeadIM(p)\n\t\tcase a.Body:\n\t\t\tif p.oe.contains(a.Template) {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tif len(p.oe) >= 2 {\n\t\t\t\tbody := p.oe[1]\n\t\t\t\tif body.Type == ElementNode && body.DataAtom == a.Body {\n\t\t\t\t\tp.framesetOK = false\n\t\t\t\t\tcopyAttributes(body, p.tok)\n\t\t\t\t}\n\t\t\t}\n\t\tcase a.Frameset:\n\t\t\tif !p.framesetOK || len(p.oe) < 2 || p.oe[1].DataAtom != a.Body {\n\t\t\t\t// Ignore the token.\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tbody := p.oe[1]\n\t\t\tif body.Parent != nil {\n\t\t\t\tbody.Parent.RemoveChild(body)\n\t\t\t}\n\t\t\tp.oe = p.oe[:1]\n\t\t\tp.addElement()\n\t\t\tp.im = inFramesetIM\n\t\t\treturn true\n\t\tcase a.Address, a.Article, a.Aside, a.Blockquote, a.Center, a.Details, a.Dialog, a.Dir, a.Div, a.Dl, a.Fieldset, a.Figcaption, a.Figure, a.Footer, a.Header, a.Hgroup, a.Main, a.Menu, a.Nav, a.Ol, a.P, a.Section, a.Summary, a.Ul:\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\tp.addElement()\n\t\tcase a.H1, a.H2, a.H3, a.H4, a.H5, a.H6:\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\tswitch n := p.top(); n.DataAtom {\n\t\t\tcase a.H1, a.H2, a.H3, a.H4, a.H5, a.H6:\n\t\t\t\tp.oe.pop()\n\t\t\t}\n\t\t\tp.addElement()\n\t\tcase a.Pre, a.Listing:\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\tp.addElement()\n\t\t\t// The newline, if any, will be dealt with by the TextToken case.\n\t\t\tp.framesetOK = false\n\t\tcase a.Form:\n\t\t\tif p.form != nil && !p.oe.contains(a.Template) {\n\t\t\t\t// Ignore the token\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\tp.addElement()\n\t\t\tif !p.oe.contains(a.Template) {\n\t\t\t\tp.form = p.top()\n\t\t\t}\n\t\tcase a.Li:\n\t\t\tp.framesetOK = false\n\t\t\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\t\t\tnode := p.oe[i]\n\t\t\t\tswitch node.DataAtom {\n\t\t\t\tcase a.Li:\n\t\t\t\t\tp.oe = p.oe[:i]\n\t\t\t\tcase a.Address, a.Div, a.P:\n\t\t\t\t\tcontinue\n\t\t\t\tdefault:\n\t\t\t\t\tif !isSpecialElement(node) {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\tp.addElement()\n\t\tcase a.Dd, a.Dt:\n\t\t\tp.framesetOK = false\n\t\t\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\t\t\tnode := p.oe[i]\n\t\t\t\tswitch node.DataAtom {\n\t\t\t\tcase a.Dd, a.Dt:\n\t\t\t\t\tp.oe = p.oe[:i]\n\t\t\t\tcase a.Address, a.Div, a.P:\n\t\t\t\t\tcontinue\n\t\t\t\tdefault:\n\t\t\t\t\tif !isSpecialElement(node) {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\tp.addElement()\n\t\tcase a.Plaintext:\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\tp.addElement()\n\t\tcase a.Button:\n\t\t\tp.popUntil(defaultScope, a.Button)\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addElement()\n\t\t\tp.framesetOK = false\n\t\tcase a.A:\n\t\t\tfor i := len(p.afe) - 1; i >= 0 && p.afe[i].Type != scopeMarkerNode; i-- {\n\t\t\t\tif n := p.afe[i]; n.Type == ElementNode && n.DataAtom == a.A {\n\t\t\t\t\tp.inBodyEndTagFormatting(a.A, \"a\")\n\t\t\t\t\tp.oe.remove(n)\n\t\t\t\t\tp.afe.remove(n)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addFormattingElement()\n\t\tcase a.B, a.Big, a.Code, a.Em, a.Font, a.I, a.S, a.Small, a.Strike, a.Strong, a.Tt, a.U:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addFormattingElement()\n\t\tcase a.Nobr:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tif p.elementInScope(defaultScope, a.Nobr) {\n\t\t\t\tp.inBodyEndTagFormatting(a.Nobr, \"nobr\")\n\t\t\t\tp.reconstructActiveFormattingElements()\n\t\t\t}\n\t\t\tp.addFormattingElement()\n\t\tcase a.Applet, a.Marquee, a.Object:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addElement()\n\t\t\tp.afe = append(p.afe, &scopeMarker)\n\t\t\tp.framesetOK = false\n\t\tcase a.Table:\n\t\t\tif !p.quirks {\n\t\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\t}\n\t\t\tp.addElement()\n\t\t\tp.framesetOK = false\n\t\t\tp.im = inTableIM\n\t\t\treturn true\n\t\tcase a.Area, a.Br, a.Embed, a.Img, a.Input, a.Keygen, a.Wbr:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addElement()\n\t\t\tp.oe.pop()\n\t\t\tp.acknowledgeSelfClosingTag()\n\t\t\tif p.tok.DataAtom == a.Input {\n\t\t\t\tfor _, t := range p.tok.Attr {\n\t\t\t\t\tif t.Key == \"type\" {\n\t\t\t\t\t\tif strings.ToLower(t.Val) == \"hidden\" {\n\t\t\t\t\t\t\t// Skip setting framesetOK = false\n\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.framesetOK = false\n\t\tcase a.Param, a.Source, a.Track:\n\t\t\tp.addElement()\n\t\t\tp.oe.pop()\n\t\t\tp.acknowledgeSelfClosingTag()\n\t\tcase a.Hr:\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\tp.addElement()\n\t\t\tp.oe.pop()\n\t\t\tp.acknowledgeSelfClosingTag()\n\t\t\tp.framesetOK = false\n\t\tcase a.Image:\n\t\t\tp.tok.DataAtom = a.Img\n\t\t\tp.tok.Data = a.Img.String()\n\t\t\treturn false\n\t\tcase a.Textarea:\n\t\t\tp.addElement()\n\t\t\tp.setOriginalIM()\n\t\t\tp.framesetOK = false\n\t\t\tp.im = textIM\n\t\tcase a.Xmp:\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.framesetOK = false\n\t\t\tp.parseGenericRawTextElement()\n\t\tcase a.Iframe:\n\t\t\tp.framesetOK = false\n\t\t\tp.parseGenericRawTextElement()\n\t\tcase a.Noembed:\n\t\t\tp.parseGenericRawTextElement()\n\t\tcase a.Noscript:\n\t\t\tif p.scripting {\n\t\t\t\tp.parseGenericRawTextElement()\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addElement()\n\t\t\t// Don't let the tokenizer go into raw text mode when scripting is disabled.\n\t\t\tp.tokenizer.NextIsNotRawText()\n\t\tcase a.Select:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addElement()\n\t\t\tp.framesetOK = false\n\t\t\tp.im = inSelectIM\n\t\t\treturn true\n\t\tcase a.Optgroup, a.Option:\n\t\t\tif p.top().DataAtom == a.Option {\n\t\t\t\tp.oe.pop()\n\t\t\t}\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addElement()\n\t\tcase a.Rb, a.Rtc:\n\t\t\tif p.elementInScope(defaultScope, a.Ruby) {\n\t\t\t\tp.generateImpliedEndTags()\n\t\t\t}\n\t\t\tp.addElement()\n\t\tcase a.Rp, a.Rt:\n\t\t\tif p.elementInScope(defaultScope, a.Ruby) {\n\t\t\t\tp.generateImpliedEndTags(\"rtc\")\n\t\t\t}\n\t\t\tp.addElement()\n\t\tcase a.Math, a.Svg:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tif p.tok.DataAtom == a.Math {\n\t\t\t\tadjustAttributeNames(p.tok.Attr, mathMLAttributeAdjustments)\n\t\t\t} else {\n\t\t\t\tadjustAttributeNames(p.tok.Attr, svgAttributeAdjustments)\n\t\t\t}\n\t\t\tadjustForeignAttributes(p.tok.Attr)\n\t\t\tp.addElement()\n\t\t\tp.top().Namespace = p.tok.Data\n\t\t\tif p.hasSelfClosingToken {\n\t\t\t\tp.oe.pop()\n\t\t\t\tp.acknowledgeSelfClosingTag()\n\t\t\t}\n\t\t\treturn true\n\t\tcase a.Caption, a.Col, a.Colgroup, a.Frame, a.Head, a.Tbody, a.Td, a.Tfoot, a.Th, a.Thead, a.Tr:\n\t\t\t// Ignore the token.\n\t\tdefault:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addElement()\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Body:\n\t\t\tif p.elementInScope(defaultScope, a.Body) {\n\t\t\t\tp.im = afterBodyIM\n\t\t\t}\n\t\tcase a.Html:\n\t\t\tif p.elementInScope(defaultScope, a.Body) {\n\t\t\t\tp.parseImpliedToken(EndTagToken, a.Body, a.Body.String())\n\t\t\t\treturn false\n\t\t\t}\n\t\t\treturn true\n\t\tcase a.Address, a.Article, a.Aside, a.Blockquote, a.Button, a.Center, a.Details, a.Dialog, a.Dir, a.Div, a.Dl, a.Fieldset, a.Figcaption, a.Figure, a.Footer, a.Header, a.Hgroup, a.Listing, a.Main, a.Menu, a.Nav, a.Ol, a.Pre, a.Section, a.Summary, a.Ul:\n\t\t\tp.popUntil(defaultScope, p.tok.DataAtom)\n\t\tcase a.Form:\n\t\t\tif p.oe.contains(a.Template) {\n\t\t\t\ti := p.indexOfElementInScope(defaultScope, a.Form)\n\t\t\t\tif i == -1 {\n\t\t\t\t\t// Ignore the token.\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tp.generateImpliedEndTags()\n\t\t\t\tif p.oe[i].DataAtom != a.Form {\n\t\t\t\t\t// Ignore the token.\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tp.popUntil(defaultScope, a.Form)\n\t\t\t} else {\n\t\t\t\tnode := p.form\n\t\t\t\tp.form = nil\n\t\t\t\ti := p.indexOfElementInScope(defaultScope, a.Form)\n\t\t\t\tif node == nil || i == -1 || p.oe[i] != node {\n\t\t\t\t\t// Ignore the token.\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tp.generateImpliedEndTags()\n\t\t\t\tp.oe.remove(node)\n\t\t\t}\n\t\tcase a.P:\n\t\t\tif !p.elementInScope(buttonScope, a.P) {\n\t\t\t\tp.parseImpliedToken(StartTagToken, a.P, a.P.String())\n\t\t\t}\n\t\t\tp.popUntil(buttonScope, a.P)\n\t\tcase a.Li:\n\t\t\tp.popUntil(listItemScope, a.Li)\n\t\tcase a.Dd, a.Dt:\n\t\t\tp.popUntil(defaultScope, p.tok.DataAtom)\n\t\tcase a.H1, a.H2, a.H3, a.H4, a.H5, a.H6:\n\t\t\tp.popUntil(defaultScope, a.H1, a.H2, a.H3, a.H4, a.H5, a.H6)\n\t\tcase a.A, a.B, a.Big, a.Code, a.Em, a.Font, a.I, a.Nobr, a.S, a.Small, a.Strike, a.Strong, a.Tt, a.U:\n\t\t\tp.inBodyEndTagFormatting(p.tok.DataAtom, p.tok.Data)\n\t\tcase a.Applet, a.Marquee, a.Object:\n\t\t\tif p.popUntil(defaultScope, p.tok.DataAtom) {\n\t\t\t\tp.clearActiveFormattingElements()\n\t\t\t}\n\t\tcase a.Br:\n\t\t\tp.tok.Type = StartTagToken\n\t\t\treturn false\n\t\tcase a.Template:\n\t\t\treturn inHeadIM(p)\n\t\tdefault:\n\t\t\tp.inBodyEndTagOther(p.tok.DataAtom, p.tok.Data)\n\t\t}\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\tcase ErrorToken:\n\t\t// TODO: remove this divergence from the HTML5 spec.\n\t\tif len(p.templateStack) > 0 {\n\t\t\tp.im = inTemplateIM\n\t\t\treturn false\n\t\t}\n\t\tfor _, e := range p.oe {\n\t\t\tswitch e.DataAtom {\n\t\t\tcase a.Dd, a.Dt, a.Li, a.Optgroup, a.Option, a.P, a.Rb, a.Rp, a.Rt, a.Rtc, a.Tbody, a.Td, a.Tfoot, a.Th,\n\t\t\t\ta.Thead, a.Tr, a.Body, a.Html:\n\t\t\tdefault:\n\t\t\t\treturn true\n\t\t\t}\n\t\t}\n\t}\n\n\treturn true\n}\n\nfunc (p *parser) inBodyEndTagFormatting(tagAtom a.Atom, tagName string) {\n\t// This is the \"adoption agency\" algorithm, described at\n\t// https://html.spec.whatwg.org/multipage/syntax.html#adoptionAgency\n\n\t// TODO: this is a fairly literal line-by-line translation of that algorithm.\n\t// Once the code successfully parses the comprehensive test suite, we should\n\t// refactor this code to be more idiomatic.\n\n\t// Steps 1-2\n\tif current := p.oe.top(); current.Data == tagName && p.afe.index(current) == -1 {\n\t\tp.oe.pop()\n\t\treturn\n\t}\n\n\t// Steps 3-5. The outer loop.\n\tfor i := 0; i < 8; i++ {\n\t\t// Step 6. Find the formatting element.\n\t\tvar formattingElement *Node\n\t\tfor j := len(p.afe) - 1; j >= 0; j-- {\n\t\t\tif p.afe[j].Type == scopeMarkerNode {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif p.afe[j].DataAtom == tagAtom {\n\t\t\t\tformattingElement = p.afe[j]\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif formattingElement == nil {\n\t\t\tp.inBodyEndTagOther(tagAtom, tagName)\n\t\t\treturn\n\t\t}\n\n\t\t// Step 7. Ignore the tag if formatting element is not in the stack of open elements.\n\t\tfeIndex := p.oe.index(formattingElement)\n\t\tif feIndex == -1 {\n\t\t\tp.afe.remove(formattingElement)\n\t\t\treturn\n\t\t}\n\t\t// Step 8. Ignore the tag if formatting element is not in the scope.\n\t\tif !p.elementInScope(defaultScope, tagAtom) {\n\t\t\t// Ignore the tag.\n\t\t\treturn\n\t\t}\n\n\t\t// Step 9. This step is omitted because it's just a parse error but no need to return.\n\n\t\t// Steps 10-11. Find the furthest block.\n\t\tvar furthestBlock *Node\n\t\tfor _, e := range p.oe[feIndex:] {\n\t\t\tif isSpecialElement(e) {\n\t\t\t\tfurthestBlock = e\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif furthestBlock == nil {\n\t\t\te := p.oe.pop()\n\t\t\tfor e != formattingElement {\n\t\t\t\te = p.oe.pop()\n\t\t\t}\n\t\t\tp.afe.remove(e)\n\t\t\treturn\n\t\t}\n\n\t\t// Steps 12-13. Find the common ancestor and bookmark node.\n\t\tcommonAncestor := p.oe[feIndex-1]\n\t\tbookmark := p.afe.index(formattingElement)\n\n\t\t// Step 14. The inner loop. Find the lastNode to reparent.\n\t\tlastNode := furthestBlock\n\t\tnode := furthestBlock\n\t\tx := p.oe.index(node)\n\t\t// Step 14.1.\n\t\tj := 0\n\t\tfor {\n\t\t\t// Step 14.2.\n\t\t\tj++\n\t\t\t// Step. 14.3.\n\t\t\tx--\n\t\t\tnode = p.oe[x]\n\t\t\t// Step 14.4. Go to the next step if node is formatting element.\n\t\t\tif node == formattingElement {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Step 14.5. Remove node from the list of active formatting elements if\n\t\t\t// inner loop counter is greater than three and node is in the list of\n\t\t\t// active formatting elements.\n\t\t\tif ni := p.afe.index(node); j > 3 && ni > -1 {\n\t\t\t\tp.afe.remove(node)\n\t\t\t\t// If any element of the list of active formatting elements is removed,\n\t\t\t\t// we need to take care whether bookmark should be decremented or not.\n\t\t\t\t// This is because the value of bookmark may exceed the size of the\n\t\t\t\t// list by removing elements from the list.\n\t\t\t\tif ni <= bookmark {\n\t\t\t\t\tbookmark--\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t// Step 14.6. Continue the next inner loop if node is not in the list of\n\t\t\t// active formatting elements.\n\t\t\tif p.afe.index(node) == -1 {\n\t\t\t\tp.oe.remove(node)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t// Step 14.7.\n\t\t\tclone := node.clone()\n\t\t\tp.afe[p.afe.index(node)] = clone\n\t\t\tp.oe[p.oe.index(node)] = clone\n\t\t\tnode = clone\n\t\t\t// Step 14.8.\n\t\t\tif lastNode == furthestBlock {\n\t\t\t\tbookmark = p.afe.index(node) + 1\n\t\t\t}\n\t\t\t// Step 14.9.\n\t\t\tif lastNode.Parent != nil {\n\t\t\t\tlastNode.Parent.RemoveChild(lastNode)\n\t\t\t}\n\t\t\tnode.AppendChild(lastNode)\n\t\t\t// Step 14.10.\n\t\t\tlastNode = node\n\t\t}\n\n\t\t// Step 15. Reparent lastNode to the common ancestor,\n\t\t// or for misnested table nodes, to the foster parent.\n\t\tif lastNode.Parent != nil {\n\t\t\tlastNode.Parent.RemoveChild(lastNode)\n\t\t}\n\t\tswitch commonAncestor.DataAtom {\n\t\tcase a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr:\n\t\t\tp.fosterParent(lastNode)\n\t\tdefault:\n\t\t\tcommonAncestor.AppendChild(lastNode)\n\t\t}\n\n\t\t// Steps 16-18. Reparent nodes from the furthest block's children\n\t\t// to a clone of the formatting element.\n\t\tclone := formattingElement.clone()\n\t\treparentChildren(clone, furthestBlock)\n\t\tfurthestBlock.AppendChild(clone)\n\n\t\t// Step 19. Fix up the list of active formatting elements.\n\t\tif oldLoc := p.afe.index(formattingElement); oldLoc != -1 && oldLoc < bookmark {\n\t\t\t// Move the bookmark with the rest of the list.\n\t\t\tbookmark--\n\t\t}\n\t\tp.afe.remove(formattingElement)\n\t\tp.afe.insert(bookmark, clone)\n\n\t\t// Step 20. Fix up the stack of open elements.\n\t\tp.oe.remove(formattingElement)\n\t\tp.oe.insert(p.oe.index(furthestBlock)+1, clone)\n\t}\n}\n\n// inBodyEndTagOther performs the \"any other end tag\" algorithm for inBodyIM.\n// \"Any other end tag\" handling from 12.2.6.5 The rules for parsing tokens in foreign content\n// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inforeign\nfunc (p *parser) inBodyEndTagOther(tagAtom a.Atom, tagName string) {\n\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\t// Two element nodes have the same tag if they have the same Data (a\n\t\t// string-typed field). As an optimization, for common HTML tags, each\n\t\t// Data string is assigned a unique, non-zero DataAtom (a uint32-typed\n\t\t// field), since integer comparison is faster than string comparison.\n\t\t// Uncommon (custom) tags get a zero DataAtom.\n\t\t//\n\t\t// The if condition here is equivalent to (p.oe[i].Data == tagName).\n\t\tif (p.oe[i].DataAtom == tagAtom) &&\n\t\t\t((tagAtom != 0) || (p.oe[i].Data == tagName)) {\n\t\t\tp.oe = p.oe[:i]\n\t\t\tbreak\n\t\t}\n\t\tif isSpecialElement(p.oe[i]) {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n// Section 12.2.6.4.8.\nfunc textIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase ErrorToken:\n\t\tp.oe.pop()\n\tcase TextToken:\n\t\td := p.tok.Data\n\t\tif n := p.oe.top(); n.DataAtom == a.Textarea && n.FirstChild == nil {\n\t\t\t// Ignore a newline at the start of a <textarea> block.\n\t\t\tif d != \"\" && d[0] == '\\r' {\n\t\t\t\td = d[1:]\n\t\t\t}\n\t\t\tif d != \"\" && d[0] == '\\n' {\n\t\t\t\td = d[1:]\n\t\t\t}\n\t\t}\n\t\tif d == \"\" {\n\t\t\treturn true\n\t\t}\n\t\tp.addText(d)\n\t\treturn true\n\tcase EndTagToken:\n\t\tp.oe.pop()\n\t}\n\tp.im = p.originalIM\n\tp.originalIM = nil\n\treturn p.tok.Type == EndTagToken\n}\n\n// Section 12.2.6.4.9.\nfunc inTableIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken:\n\t\tp.tok.Data = strings.Replace(p.tok.Data, \"\\x00\", \"\", -1)\n\t\tswitch p.oe.top().DataAtom {\n\t\tcase a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr:\n\t\t\tif strings.Trim(p.tok.Data, whitespace) == \"\" {\n\t\t\t\tp.addText(p.tok.Data)\n\t\t\t\treturn true\n\t\t\t}\n\t\t}\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Caption:\n\t\t\tp.clearStackToContext(tableScope)\n\t\t\tp.afe = append(p.afe, &scopeMarker)\n\t\t\tp.addElement()\n\t\t\tp.im = inCaptionIM\n\t\t\treturn true\n\t\tcase a.Colgroup:\n\t\t\tp.clearStackToContext(tableScope)\n\t\t\tp.addElement()\n\t\t\tp.im = inColumnGroupIM\n\t\t\treturn true\n\t\tcase a.Col:\n\t\t\tp.parseImpliedToken(StartTagToken, a.Colgroup, a.Colgroup.String())\n\t\t\treturn false\n\t\tcase a.Tbody, a.Tfoot, a.Thead:\n\t\t\tp.clearStackToContext(tableScope)\n\t\t\tp.addElement()\n\t\t\tp.im = inTableBodyIM\n\t\t\treturn true\n\t\tcase a.Td, a.Th, a.Tr:\n\t\t\tp.parseImpliedToken(StartTagToken, a.Tbody, a.Tbody.String())\n\t\t\treturn false\n\t\tcase a.Table:\n\t\t\tif p.popUntil(tableScope, a.Table) {\n\t\t\t\tp.resetInsertionMode()\n\t\t\t\treturn false\n\t\t\t}\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Style, a.Script, a.Template:\n\t\t\treturn inHeadIM(p)\n\t\tcase a.Input:\n\t\t\tfor _, t := range p.tok.Attr {\n\t\t\t\tif t.Key == \"type\" && strings.ToLower(t.Val) == \"hidden\" {\n\t\t\t\t\tp.addElement()\n\t\t\t\t\tp.oe.pop()\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Otherwise drop down to the default action.\n\t\tcase a.Form:\n\t\t\tif p.oe.contains(a.Template) || p.form != nil {\n\t\t\t\t// Ignore the token.\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.addElement()\n\t\t\tp.form = p.oe.pop()\n\t\tcase a.Select:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tswitch p.top().DataAtom {\n\t\t\tcase a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr:\n\t\t\t\tp.fosterParenting = true\n\t\t\t}\n\t\t\tp.addElement()\n\t\t\tp.fosterParenting = false\n\t\t\tp.framesetOK = false\n\t\t\tp.im = inSelectInTableIM\n\t\t\treturn true\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Table:\n\t\t\tif p.popUntil(tableScope, a.Table) {\n\t\t\t\tp.resetInsertionMode()\n\t\t\t\treturn true\n\t\t\t}\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Body, a.Caption, a.Col, a.Colgroup, a.Html, a.Tbody, a.Td, a.Tfoot, a.Th, a.Thead, a.Tr:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Template:\n\t\t\treturn inHeadIM(p)\n\t\t}\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\tcase DoctypeToken:\n\t\t// Ignore the token.\n\t\treturn true\n\tcase ErrorToken:\n\t\treturn inBodyIM(p)\n\t}\n\n\tp.fosterParenting = true\n\tdefer func() { p.fosterParenting = false }()\n\n\treturn inBodyIM(p)\n}\n\n// Section 12.2.6.4.11.\nfunc inCaptionIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Caption, a.Col, a.Colgroup, a.Tbody, a.Td, a.Tfoot, a.Thead, a.Tr:\n\t\t\tif !p.popUntil(tableScope, a.Caption) {\n\t\t\t\t// Ignore the token.\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.clearActiveFormattingElements()\n\t\t\tp.im = inTableIM\n\t\t\treturn false\n\t\tcase a.Select:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addElement()\n\t\t\tp.framesetOK = false\n\t\t\tp.im = inSelectInTableIM\n\t\t\treturn true\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Caption:\n\t\t\tif p.popUntil(tableScope, a.Caption) {\n\t\t\t\tp.clearActiveFormattingElements()\n\t\t\t\tp.im = inTableIM\n\t\t\t}\n\t\t\treturn true\n\t\tcase a.Table:\n\t\t\tif !p.popUntil(tableScope, a.Caption) {\n\t\t\t\t// Ignore the token.\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.clearActiveFormattingElements()\n\t\t\tp.im = inTableIM\n\t\t\treturn false\n\t\tcase a.Body, a.Col, a.Colgroup, a.Html, a.Tbody, a.Td, a.Tfoot, a.Th, a.Thead, a.Tr:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\t}\n\treturn inBodyIM(p)\n}\n\n// Section 12.2.6.4.12.\nfunc inColumnGroupIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken:\n\t\ts := strings.TrimLeft(p.tok.Data, whitespace)\n\t\tif len(s) < len(p.tok.Data) {\n\t\t\t// Add the initial whitespace to the current node.\n\t\t\tp.addText(p.tok.Data[:len(p.tok.Data)-len(s)])\n\t\t\tif s == \"\" {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.tok.Data = s\n\t\t}\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\tcase DoctypeToken:\n\t\t// Ignore the token.\n\t\treturn true\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\treturn inBodyIM(p)\n\t\tcase a.Col:\n\t\t\tp.addElement()\n\t\t\tp.oe.pop()\n\t\t\tp.acknowledgeSelfClosingTag()\n\t\t\treturn true\n\t\tcase a.Template:\n\t\t\treturn inHeadIM(p)\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Colgroup:\n\t\t\tif p.oe.top().DataAtom == a.Colgroup {\n\t\t\t\tp.oe.pop()\n\t\t\t\tp.im = inTableIM\n\t\t\t}\n\t\t\treturn true\n\t\tcase a.Col:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Template:\n\t\t\treturn inHeadIM(p)\n\t\t}\n\tcase ErrorToken:\n\t\treturn inBodyIM(p)\n\t}\n\tif p.oe.top().DataAtom != a.Colgroup {\n\t\treturn true\n\t}\n\tp.oe.pop()\n\tp.im = inTableIM\n\treturn false\n}\n\n// Section 12.2.6.4.13.\nfunc inTableBodyIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Tr:\n\t\t\tp.clearStackToContext(tableBodyScope)\n\t\t\tp.addElement()\n\t\t\tp.im = inRowIM\n\t\t\treturn true\n\t\tcase a.Td, a.Th:\n\t\t\tp.parseImpliedToken(StartTagToken, a.Tr, a.Tr.String())\n\t\t\treturn false\n\t\tcase a.Caption, a.Col, a.Colgroup, a.Tbody, a.Tfoot, a.Thead:\n\t\t\tif p.popUntil(tableScope, a.Tbody, a.Thead, a.Tfoot) {\n\t\t\t\tp.im = inTableIM\n\t\t\t\treturn false\n\t\t\t}\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Tbody, a.Tfoot, a.Thead:\n\t\t\tif p.elementInScope(tableScope, p.tok.DataAtom) {\n\t\t\t\tp.clearStackToContext(tableBodyScope)\n\t\t\t\tp.oe.pop()\n\t\t\t\tp.im = inTableIM\n\t\t\t}\n\t\t\treturn true\n\t\tcase a.Table:\n\t\t\tif p.popUntil(tableScope, a.Tbody, a.Thead, a.Tfoot) {\n\t\t\t\tp.im = inTableIM\n\t\t\t\treturn false\n\t\t\t}\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Body, a.Caption, a.Col, a.Colgroup, a.Html, a.Td, a.Th, a.Tr:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\t}\n\n\treturn inTableIM(p)\n}\n\n// Section 12.2.6.4.14.\nfunc inRowIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Td, a.Th:\n\t\t\tp.clearStackToContext(tableRowScope)\n\t\t\tp.addElement()\n\t\t\tp.afe = append(p.afe, &scopeMarker)\n\t\t\tp.im = inCellIM\n\t\t\treturn true\n\t\tcase a.Caption, a.Col, a.Colgroup, a.Tbody, a.Tfoot, a.Thead, a.Tr:\n\t\t\tif p.popUntil(tableScope, a.Tr) {\n\t\t\t\tp.im = inTableBodyIM\n\t\t\t\treturn false\n\t\t\t}\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Tr:\n\t\t\tif p.popUntil(tableScope, a.Tr) {\n\t\t\t\tp.im = inTableBodyIM\n\t\t\t\treturn true\n\t\t\t}\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Table:\n\t\t\tif p.popUntil(tableScope, a.Tr) {\n\t\t\t\tp.im = inTableBodyIM\n\t\t\t\treturn false\n\t\t\t}\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Tbody, a.Tfoot, a.Thead:\n\t\t\tif p.elementInScope(tableScope, p.tok.DataAtom) {\n\t\t\t\tp.parseImpliedToken(EndTagToken, a.Tr, a.Tr.String())\n\t\t\t\treturn false\n\t\t\t}\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Body, a.Caption, a.Col, a.Colgroup, a.Html, a.Td, a.Th:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\t}\n\n\treturn inTableIM(p)\n}\n\n// Section 12.2.6.4.15.\nfunc inCellIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Caption, a.Col, a.Colgroup, a.Tbody, a.Td, a.Tfoot, a.Th, a.Thead, a.Tr:\n\t\t\tif p.popUntil(tableScope, a.Td, a.Th) {\n\t\t\t\t// Close the cell and reprocess.\n\t\t\t\tp.clearActiveFormattingElements()\n\t\t\t\tp.im = inRowIM\n\t\t\t\treturn false\n\t\t\t}\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Select:\n\t\t\tp.reconstructActiveFormattingElements()\n\t\t\tp.addElement()\n\t\t\tp.framesetOK = false\n\t\t\tp.im = inSelectInTableIM\n\t\t\treturn true\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Td, a.Th:\n\t\t\tif !p.popUntil(tableScope, p.tok.DataAtom) {\n\t\t\t\t// Ignore the token.\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.clearActiveFormattingElements()\n\t\t\tp.im = inRowIM\n\t\t\treturn true\n\t\tcase a.Body, a.Caption, a.Col, a.Colgroup, a.Html:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr:\n\t\t\tif !p.elementInScope(tableScope, p.tok.DataAtom) {\n\t\t\t\t// Ignore the token.\n\t\t\t\treturn true\n\t\t\t}\n\t\t\t// Close the cell and reprocess.\n\t\t\tif p.popUntil(tableScope, a.Td, a.Th) {\n\t\t\t\tp.clearActiveFormattingElements()\n\t\t\t}\n\t\t\tp.im = inRowIM\n\t\t\treturn false\n\t\t}\n\t}\n\treturn inBodyIM(p)\n}\n\n// Section 12.2.6.4.16.\nfunc inSelectIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken:\n\t\tp.addText(strings.Replace(p.tok.Data, \"\\x00\", \"\", -1))\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\treturn inBodyIM(p)\n\t\tcase a.Option:\n\t\t\tif p.top().DataAtom == a.Option {\n\t\t\t\tp.oe.pop()\n\t\t\t}\n\t\t\tp.addElement()\n\t\tcase a.Optgroup:\n\t\t\tif p.top().DataAtom == a.Option {\n\t\t\t\tp.oe.pop()\n\t\t\t}\n\t\t\tif p.top().DataAtom == a.Optgroup {\n\t\t\t\tp.oe.pop()\n\t\t\t}\n\t\t\tp.addElement()\n\t\tcase a.Select:\n\t\t\tif !p.popUntil(selectScope, a.Select) {\n\t\t\t\t// Ignore the token.\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.resetInsertionMode()\n\t\tcase a.Input, a.Keygen, a.Textarea:\n\t\t\tif p.elementInScope(selectScope, a.Select) {\n\t\t\t\tp.parseImpliedToken(EndTagToken, a.Select, a.Select.String())\n\t\t\t\treturn false\n\t\t\t}\n\t\t\t// In order to properly ignore <textarea>, we need to change the tokenizer mode.\n\t\t\tp.tokenizer.NextIsNotRawText()\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\tcase a.Script, a.Template:\n\t\t\treturn inHeadIM(p)\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Option:\n\t\t\tif p.top().DataAtom == a.Option {\n\t\t\t\tp.oe.pop()\n\t\t\t}\n\t\tcase a.Optgroup:\n\t\t\ti := len(p.oe) - 1\n\t\t\tif p.oe[i].DataAtom == a.Option {\n\t\t\t\ti--\n\t\t\t}\n\t\t\tif p.oe[i].DataAtom == a.Optgroup {\n\t\t\t\tp.oe = p.oe[:i]\n\t\t\t}\n\t\tcase a.Select:\n\t\t\tif !p.popUntil(selectScope, a.Select) {\n\t\t\t\t// Ignore the token.\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tp.resetInsertionMode()\n\t\tcase a.Template:\n\t\t\treturn inHeadIM(p)\n\t\t}\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\tcase DoctypeToken:\n\t\t// Ignore the token.\n\t\treturn true\n\tcase ErrorToken:\n\t\treturn inBodyIM(p)\n\t}\n\n\treturn true\n}\n\n// Section 12.2.6.4.17.\nfunc inSelectInTableIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase StartTagToken, EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Caption, a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr, a.Td, a.Th:\n\t\t\tif p.tok.Type == EndTagToken && !p.elementInScope(tableScope, p.tok.DataAtom) {\n\t\t\t\t// Ignore the token.\n\t\t\t\treturn true\n\t\t\t}\n\t\t\t// This is like p.popUntil(selectScope, a.Select), but it also\n\t\t\t// matches <math select>, not just <select>. Matching the MathML\n\t\t\t// tag is arguably incorrect (conceptually), but it mimics what\n\t\t\t// Chromium does.\n\t\t\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\t\t\tif n := p.oe[i]; n.DataAtom == a.Select {\n\t\t\t\t\tp.oe = p.oe[:i]\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.resetInsertionMode()\n\t\t\treturn false\n\t\t}\n\t}\n\treturn inSelectIM(p)\n}\n\n// Section 12.2.6.4.18.\nfunc inTemplateIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken, CommentToken, DoctypeToken:\n\t\treturn inBodyIM(p)\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Base, a.Basefont, a.Bgsound, a.Link, a.Meta, a.Noframes, a.Script, a.Style, a.Template, a.Title:\n\t\t\treturn inHeadIM(p)\n\t\tcase a.Caption, a.Colgroup, a.Tbody, a.Tfoot, a.Thead:\n\t\t\tp.templateStack.pop()\n\t\t\tp.templateStack = append(p.templateStack, inTableIM)\n\t\t\tp.im = inTableIM\n\t\t\treturn false\n\t\tcase a.Col:\n\t\t\tp.templateStack.pop()\n\t\t\tp.templateStack = append(p.templateStack, inColumnGroupIM)\n\t\t\tp.im = inColumnGroupIM\n\t\t\treturn false\n\t\tcase a.Tr:\n\t\t\tp.templateStack.pop()\n\t\t\tp.templateStack = append(p.templateStack, inTableBodyIM)\n\t\t\tp.im = inTableBodyIM\n\t\t\treturn false\n\t\tcase a.Td, a.Th:\n\t\t\tp.templateStack.pop()\n\t\t\tp.templateStack = append(p.templateStack, inRowIM)\n\t\t\tp.im = inRowIM\n\t\t\treturn false\n\t\tdefault:\n\t\t\tp.templateStack.pop()\n\t\t\tp.templateStack = append(p.templateStack, inBodyIM)\n\t\t\tp.im = inBodyIM\n\t\t\treturn false\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Template:\n\t\t\treturn inHeadIM(p)\n\t\tdefault:\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\tcase ErrorToken:\n\t\tif !p.oe.contains(a.Template) {\n\t\t\t// Ignore the token.\n\t\t\treturn true\n\t\t}\n\t\t// TODO: remove this divergence from the HTML5 spec.\n\t\t//\n\t\t// See https://bugs.chromium.org/p/chromium/issues/detail?id=829668\n\t\tp.generateImpliedEndTags()\n\t\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\t\tif n := p.oe[i]; n.Namespace == \"\" && n.DataAtom == a.Template {\n\t\t\t\tp.oe = p.oe[:i]\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tp.clearActiveFormattingElements()\n\t\tp.templateStack.pop()\n\t\tp.resetInsertionMode()\n\t\treturn false\n\t}\n\treturn false\n}\n\n// Section 12.2.6.4.19.\nfunc afterBodyIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase ErrorToken:\n\t\t// Stop parsing.\n\t\treturn true\n\tcase TextToken:\n\t\ts := strings.TrimLeft(p.tok.Data, whitespace)\n\t\tif len(s) == 0 {\n\t\t\t// It was all whitespace.\n\t\t\treturn inBodyIM(p)\n\t\t}\n\tcase StartTagToken:\n\t\tif p.tok.DataAtom == a.Html {\n\t\t\treturn inBodyIM(p)\n\t\t}\n\tcase EndTagToken:\n\t\tif p.tok.DataAtom == a.Html {\n\t\t\tif !p.fragment {\n\t\t\t\tp.im = afterAfterBodyIM\n\t\t\t}\n\t\t\treturn true\n\t\t}\n\tcase CommentToken:\n\t\t// The comment is attached to the <html> element.\n\t\tif len(p.oe) < 1 || p.oe[0].DataAtom != a.Html {\n\t\t\tpanic(\"html: bad parser state: <html> element not found, in the after-body insertion mode\")\n\t\t}\n\t\tp.oe[0].AppendChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\t}\n\tp.im = inBodyIM\n\treturn false\n}\n\n// Section 12.2.6.4.20.\nfunc inFramesetIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\tcase TextToken:\n\t\t// Ignore all text but whitespace.\n\t\ts := strings.Map(func(c rune) rune {\n\t\t\tswitch c {\n\t\t\tcase ' ', '\\t', '\\n', '\\f', '\\r':\n\t\t\t\treturn c\n\t\t\t}\n\t\t\treturn -1\n\t\t}, p.tok.Data)\n\t\tif s != \"\" {\n\t\t\tp.addText(s)\n\t\t}\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\treturn inBodyIM(p)\n\t\tcase a.Frameset:\n\t\t\tp.addElement()\n\t\tcase a.Frame:\n\t\t\tp.addElement()\n\t\t\tp.oe.pop()\n\t\t\tp.acknowledgeSelfClosingTag()\n\t\tcase a.Noframes:\n\t\t\treturn inHeadIM(p)\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Frameset:\n\t\t\tif p.oe.top().DataAtom != a.Html {\n\t\t\t\tp.oe.pop()\n\t\t\t\tif p.oe.top().DataAtom != a.Frameset {\n\t\t\t\t\tp.im = afterFramesetIM\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tdefault:\n\t\t// Ignore the token.\n\t}\n\treturn true\n}\n\n// Section 12.2.6.4.21.\nfunc afterFramesetIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\tcase TextToken:\n\t\t// Ignore all text but whitespace.\n\t\ts := strings.Map(func(c rune) rune {\n\t\t\tswitch c {\n\t\t\tcase ' ', '\\t', '\\n', '\\f', '\\r':\n\t\t\t\treturn c\n\t\t\t}\n\t\t\treturn -1\n\t\t}, p.tok.Data)\n\t\tif s != \"\" {\n\t\t\tp.addText(s)\n\t\t}\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\treturn inBodyIM(p)\n\t\tcase a.Noframes:\n\t\t\treturn inHeadIM(p)\n\t\t}\n\tcase EndTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\tp.im = afterAfterFramesetIM\n\t\t\treturn true\n\t\t}\n\tdefault:\n\t\t// Ignore the token.\n\t}\n\treturn true\n}\n\n// Section 12.2.6.4.22.\nfunc afterAfterBodyIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase ErrorToken:\n\t\t// Stop parsing.\n\t\treturn true\n\tcase TextToken:\n\t\ts := strings.TrimLeft(p.tok.Data, whitespace)\n\t\tif len(s) == 0 {\n\t\t\t// It was all whitespace.\n\t\t\treturn inBodyIM(p)\n\t\t}\n\tcase StartTagToken:\n\t\tif p.tok.DataAtom == a.Html {\n\t\t\treturn inBodyIM(p)\n\t\t}\n\tcase CommentToken:\n\t\tp.doc.AppendChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\t\treturn true\n\tcase DoctypeToken:\n\t\treturn inBodyIM(p)\n\t}\n\tp.im = inBodyIM\n\treturn false\n}\n\n// Section 12.2.6.4.23.\nfunc afterAfterFramesetIM(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase CommentToken:\n\t\tp.doc.AppendChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\tcase TextToken:\n\t\t// Ignore all text but whitespace.\n\t\ts := strings.Map(func(c rune) rune {\n\t\t\tswitch c {\n\t\t\tcase ' ', '\\t', '\\n', '\\f', '\\r':\n\t\t\t\treturn c\n\t\t\t}\n\t\t\treturn -1\n\t\t}, p.tok.Data)\n\t\tif s != \"\" {\n\t\t\tp.tok.Data = s\n\t\t\treturn inBodyIM(p)\n\t\t}\n\tcase StartTagToken:\n\t\tswitch p.tok.DataAtom {\n\t\tcase a.Html:\n\t\t\treturn inBodyIM(p)\n\t\tcase a.Noframes:\n\t\t\treturn inHeadIM(p)\n\t\t}\n\tcase DoctypeToken:\n\t\treturn inBodyIM(p)\n\tdefault:\n\t\t// Ignore the token.\n\t}\n\treturn true\n}\n\nconst whitespaceOrNUL = whitespace + \"\\x00\"\n\n// Section 12.2.6.5\nfunc parseForeignContent(p *parser) bool {\n\tswitch p.tok.Type {\n\tcase TextToken:\n\t\tif p.framesetOK {\n\t\t\tp.framesetOK = strings.TrimLeft(p.tok.Data, whitespaceOrNUL) == \"\"\n\t\t}\n\t\tp.tok.Data = strings.Replace(p.tok.Data, \"\\x00\", \"\\ufffd\", -1)\n\t\tp.addText(p.tok.Data)\n\tcase CommentToken:\n\t\tp.addChild(&Node{\n\t\t\tType: CommentNode,\n\t\t\tData: p.tok.Data,\n\t\t})\n\tcase StartTagToken:\n\t\tif !p.fragment {\n\t\t\tb := breakout[p.tok.Data]\n\t\t\tif p.tok.DataAtom == a.Font {\n\t\t\tloop:\n\t\t\t\tfor _, attr := range p.tok.Attr {\n\t\t\t\t\tswitch attr.Key {\n\t\t\t\t\tcase \"color\", \"face\", \"size\":\n\t\t\t\t\t\tb = true\n\t\t\t\t\t\tbreak loop\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif b {\n\t\t\t\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\t\t\t\tn := p.oe[i]\n\t\t\t\t\tif n.Namespace == \"\" || htmlIntegrationPoint(n) || mathMLTextIntegrationPoint(n) {\n\t\t\t\t\t\tp.oe = p.oe[:i+1]\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tcurrent := p.adjustedCurrentNode()\n\t\tswitch current.Namespace {\n\t\tcase \"math\":\n\t\t\tadjustAttributeNames(p.tok.Attr, mathMLAttributeAdjustments)\n\t\tcase \"svg\":\n\t\t\t// Adjust SVG tag names. The tokenizer lower-cases tag names, but\n\t\t\t// SVG wants e.g. \"foreignObject\" with a capital second \"O\".\n\t\t\tif x := svgTagNameAdjustments[p.tok.Data]; x != \"\" {\n\t\t\t\tp.tok.DataAtom = a.Lookup([]byte(x))\n\t\t\t\tp.tok.Data = x\n\t\t\t}\n\t\t\tadjustAttributeNames(p.tok.Attr, svgAttributeAdjustments)\n\t\tdefault:\n\t\t\tpanic(\"html: bad parser state: unexpected namespace\")\n\t\t}\n\t\tadjustForeignAttributes(p.tok.Attr)\n\t\tnamespace := current.Namespace\n\t\tp.addElement()\n\t\tp.top().Namespace = namespace\n\t\tif namespace != \"\" {\n\t\t\t// Don't let the tokenizer go into raw text mode in foreign content\n\t\t\t// (e.g. in an SVG <title> tag).\n\t\t\tp.tokenizer.NextIsNotRawText()\n\t\t}\n\t\tif p.hasSelfClosingToken {\n\t\t\tp.oe.pop()\n\t\t\tp.acknowledgeSelfClosingTag()\n\t\t}\n\tcase EndTagToken:\n\t\tfor i := len(p.oe) - 1; i >= 0; i-- {\n\t\t\tif p.oe[i].Namespace == \"\" {\n\t\t\t\treturn p.im(p)\n\t\t\t}\n\t\t\tif strings.EqualFold(p.oe[i].Data, p.tok.Data) {\n\t\t\t\tp.oe = p.oe[:i]\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\treturn true\n\tdefault:\n\t\t// Ignore the token.\n\t}\n\treturn true\n}\n\n// Section 12.2.4.2.\nfunc (p *parser) adjustedCurrentNode() *Node {\n\tif len(p.oe) == 1 && p.fragment && p.context != nil {\n\t\treturn p.context\n\t}\n\treturn p.oe.top()\n}\n\n// Section 12.2.6.\nfunc (p *parser) inForeignContent() bool {\n\tif len(p.oe) == 0 {\n\t\treturn false\n\t}\n\tn := p.adjustedCurrentNode()\n\tif n.Namespace == \"\" {\n\t\treturn false\n\t}\n\tif mathMLTextIntegrationPoint(n) {\n\t\tif p.tok.Type == StartTagToken && p.tok.DataAtom != a.Mglyph && p.tok.DataAtom != a.Malignmark {\n\t\t\treturn false\n\t\t}\n\t\tif p.tok.Type == TextToken {\n\t\t\treturn false\n\t\t}\n\t}\n\tif n.Namespace == \"math\" && n.DataAtom == a.AnnotationXml && p.tok.Type == StartTagToken && p.tok.DataAtom == a.Svg {\n\t\treturn false\n\t}\n\tif htmlIntegrationPoint(n) && (p.tok.Type == StartTagToken || p.tok.Type == TextToken) {\n\t\treturn false\n\t}\n\tif p.tok.Type == ErrorToken {\n\t\treturn false\n\t}\n\treturn true\n}\n\n// parseImpliedToken parses a token as though it had appeared in the parser's\n// input.\nfunc (p *parser) parseImpliedToken(t TokenType, dataAtom a.Atom, data string) {\n\trealToken, selfClosing := p.tok, p.hasSelfClosingToken\n\tp.tok = Token{\n\t\tType:     t,\n\t\tDataAtom: dataAtom,\n\t\tData:     data,\n\t}\n\tp.hasSelfClosingToken = false\n\tp.parseCurrentToken()\n\tp.tok, p.hasSelfClosingToken = realToken, selfClosing\n}\n\n// parseCurrentToken runs the current token through the parsing routines\n// until it is consumed.\nfunc (p *parser) parseCurrentToken() {\n\tif p.tok.Type == SelfClosingTagToken {\n\t\tp.hasSelfClosingToken = true\n\t\tp.tok.Type = StartTagToken\n\t}\n\n\tconsumed := false\n\tfor !consumed {\n\t\tif p.inForeignContent() {\n\t\t\tconsumed = parseForeignContent(p)\n\t\t} else {\n\t\t\tconsumed = p.im(p)\n\t\t}\n\t}\n\n\tif p.hasSelfClosingToken {\n\t\t// This is a parse error, but ignore it.\n\t\tp.hasSelfClosingToken = false\n\t}\n}\n\nfunc (p *parser) parse() error {\n\t// Iterate until EOF. Any other error will cause an early return.\n\tvar err error\n\tfor err != io.EOF {\n\t\t// CDATA sections are allowed only in foreign content.\n\t\tn := p.oe.top()\n\t\tp.tokenizer.AllowCDATA(n != nil && n.Namespace != \"\")\n\t\t// Read and parse the next token.\n\t\tp.tokenizer.Next()\n\t\tp.tok = p.tokenizer.Token()\n\t\tif p.tok.Type == ErrorToken {\n\t\t\terr = p.tokenizer.Err()\n\t\t\tif err != nil && err != io.EOF {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tp.parseCurrentToken()\n\t}\n\treturn nil\n}\n\n// Parse returns the parse tree for the HTML from the given Reader.\n//\n// It implements the HTML5 parsing algorithm\n// (https://html.spec.whatwg.org/multipage/syntax.html#tree-construction),\n// which is very complicated. The resultant tree can contain implicitly created\n// nodes that have no explicit <tag> listed in r's data, and nodes' parents can\n// differ from the nesting implied by a naive processing of start and end\n// <tag>s. Conversely, explicit <tag>s in r's data can be silently dropped,\n// with no corresponding node in the resulting tree.\n//\n// The input is assumed to be UTF-8 encoded.\nfunc Parse(r io.Reader) (*Node, error) {\n\treturn ParseWithOptions(r)\n}\n\n// ParseFragment parses a fragment of HTML and returns the nodes that were\n// found. If the fragment is the InnerHTML for an existing element, pass that\n// element in context.\n//\n// It has the same intricacies as Parse.\nfunc ParseFragment(r io.Reader, context *Node) ([]*Node, error) {\n\treturn ParseFragmentWithOptions(r, context)\n}\n\n// ParseOption configures a parser.\ntype ParseOption func(p *parser)\n\n// ParseOptionEnableScripting configures the scripting flag.\n// https://html.spec.whatwg.org/multipage/webappapis.html#enabling-and-disabling-scripting\n//\n// By default, scripting is enabled.\nfunc ParseOptionEnableScripting(enable bool) ParseOption {\n\treturn func(p *parser) {\n\t\tp.scripting = enable\n\t}\n}\n\n// ParseWithOptions is like Parse, with options.\nfunc ParseWithOptions(r io.Reader, opts ...ParseOption) (*Node, error) {\n\tp := &parser{\n\t\ttokenizer: NewTokenizer(r),\n\t\tdoc: &Node{\n\t\t\tType: DocumentNode,\n\t\t},\n\t\tscripting:  true,\n\t\tframesetOK: true,\n\t\tim:         initialIM,\n\t}\n\n\tfor _, f := range opts {\n\t\tf(p)\n\t}\n\n\tif err := p.parse(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn p.doc, nil\n}\n\n// ParseFragmentWithOptions is like ParseFragment, with options.\nfunc ParseFragmentWithOptions(r io.Reader, context *Node, opts ...ParseOption) ([]*Node, error) {\n\tcontextTag := \"\"\n\tif context != nil {\n\t\tif context.Type != ElementNode {\n\t\t\treturn nil, errors.New(\"html: ParseFragment of non-element Node\")\n\t\t}\n\t\t// The next check isn't just context.DataAtom.String() == context.Data because\n\t\t// it is valid to pass an element whose tag isn't a known atom. For example,\n\t\t// DataAtom == 0 and Data = \"tagfromthefuture\" is perfectly consistent.\n\t\tif context.DataAtom != a.Lookup([]byte(context.Data)) {\n\t\t\treturn nil, fmt.Errorf(\"html: inconsistent Node: DataAtom=%q, Data=%q\", context.DataAtom, context.Data)\n\t\t}\n\t\tcontextTag = context.DataAtom.String()\n\t}\n\tp := &parser{\n\t\tdoc: &Node{\n\t\t\tType: DocumentNode,\n\t\t},\n\t\tscripting: true,\n\t\tfragment:  true,\n\t\tcontext:   context,\n\t}\n\tif context != nil && context.Namespace != \"\" {\n\t\tp.tokenizer = NewTokenizer(r)\n\t} else {\n\t\tp.tokenizer = NewTokenizerFragment(r, contextTag)\n\t}\n\n\tfor _, f := range opts {\n\t\tf(p)\n\t}\n\n\troot := &Node{\n\t\tType:     ElementNode,\n\t\tDataAtom: a.Html,\n\t\tData:     a.Html.String(),\n\t}\n\tp.doc.AppendChild(root)\n\tp.oe = nodeStack{root}\n\tif context != nil && context.DataAtom == a.Template {\n\t\tp.templateStack = append(p.templateStack, inTemplateIM)\n\t}\n\tp.resetInsertionMode()\n\n\tfor n := context; n != nil; n = n.Parent {\n\t\tif n.Type == ElementNode && n.DataAtom == a.Form {\n\t\t\tp.form = n\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif err := p.parse(); err != nil {\n\t\treturn nil, err\n\t}\n\n\tparent := p.doc\n\tif context != nil {\n\t\tparent = root\n\t}\n\n\tvar result []*Node\n\tfor c := parent.FirstChild; c != nil; {\n\t\tnext := c.NextSibling\n\t\tparent.RemoveChild(c)\n\t\tresult = append(result, c)\n\t\tc = next\n\t}\n\treturn result, nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/render.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage html\n\nimport (\n\t\"bufio\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"strings\"\n)\n\ntype writer interface {\n\tio.Writer\n\tio.ByteWriter\n\tWriteString(string) (int, error)\n}\n\n// Render renders the parse tree n to the given writer.\n//\n// Rendering is done on a 'best effort' basis: calling Parse on the output of\n// Render will always result in something similar to the original tree, but it\n// is not necessarily an exact clone unless the original tree was 'well-formed'.\n// 'Well-formed' is not easily specified; the HTML5 specification is\n// complicated.\n//\n// Calling Parse on arbitrary input typically results in a 'well-formed' parse\n// tree. However, it is possible for Parse to yield a 'badly-formed' parse tree.\n// For example, in a 'well-formed' parse tree, no <a> element is a child of\n// another <a> element: parsing \"<a><a>\" results in two sibling elements.\n// Similarly, in a 'well-formed' parse tree, no <a> element is a child of a\n// <table> element: parsing \"<p><table><a>\" results in a <p> with two sibling\n// children; the <a> is reparented to the <table>'s parent. However, calling\n// Parse on \"<a><table><a>\" does not return an error, but the result has an <a>\n// element with an <a> child, and is therefore not 'well-formed'.\n//\n// Programmatically constructed trees are typically also 'well-formed', but it\n// is possible to construct a tree that looks innocuous but, when rendered and\n// re-parsed, results in a different tree. A simple example is that a solitary\n// text node would become a tree containing <html>, <head> and <body> elements.\n// Another example is that the programmatic equivalent of \"a<head>b</head>c\"\n// becomes \"<html><head><head/><body>abc</body></html>\".\nfunc Render(w io.Writer, n *Node) error {\n\tif x, ok := w.(writer); ok {\n\t\treturn render(x, n)\n\t}\n\tbuf := bufio.NewWriter(w)\n\tif err := render(buf, n); err != nil {\n\t\treturn err\n\t}\n\treturn buf.Flush()\n}\n\n// plaintextAbort is returned from render1 when a <plaintext> element\n// has been rendered. No more end tags should be rendered after that.\nvar plaintextAbort = errors.New(\"html: internal error (plaintext abort)\")\n\nfunc render(w writer, n *Node) error {\n\terr := render1(w, n)\n\tif err == plaintextAbort {\n\t\terr = nil\n\t}\n\treturn err\n}\n\nfunc render1(w writer, n *Node) error {\n\t// Render non-element nodes; these are the easy cases.\n\tswitch n.Type {\n\tcase ErrorNode:\n\t\treturn errors.New(\"html: cannot render an ErrorNode node\")\n\tcase TextNode:\n\t\treturn escape(w, n.Data)\n\tcase DocumentNode:\n\t\tfor c := n.FirstChild; c != nil; c = c.NextSibling {\n\t\t\tif err := render1(w, c); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\treturn nil\n\tcase ElementNode:\n\t\t// No-op.\n\tcase CommentNode:\n\t\tif _, err := w.WriteString(\"<!--\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif _, err := w.WriteString(n.Data); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif _, err := w.WriteString(\"-->\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\tcase DoctypeNode:\n\t\tif _, err := w.WriteString(\"<!DOCTYPE \"); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif _, err := w.WriteString(n.Data); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif n.Attr != nil {\n\t\t\tvar p, s string\n\t\t\tfor _, a := range n.Attr {\n\t\t\t\tswitch a.Key {\n\t\t\t\tcase \"public\":\n\t\t\t\t\tp = a.Val\n\t\t\t\tcase \"system\":\n\t\t\t\t\ts = a.Val\n\t\t\t\t}\n\t\t\t}\n\t\t\tif p != \"\" {\n\t\t\t\tif _, err := w.WriteString(\" PUBLIC \"); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\tif err := writeQuoted(w, p); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\tif s != \"\" {\n\t\t\t\t\tif err := w.WriteByte(' '); err != nil {\n\t\t\t\t\t\treturn err\n\t\t\t\t\t}\n\t\t\t\t\tif err := writeQuoted(w, s); err != nil {\n\t\t\t\t\t\treturn err\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if s != \"\" {\n\t\t\t\tif _, err := w.WriteString(\" SYSTEM \"); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\tif err := writeQuoted(w, s); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn w.WriteByte('>')\n\tcase RawNode:\n\t\t_, err := w.WriteString(n.Data)\n\t\treturn err\n\tdefault:\n\t\treturn errors.New(\"html: unknown node type\")\n\t}\n\n\t// Render the <xxx> opening tag.\n\tif err := w.WriteByte('<'); err != nil {\n\t\treturn err\n\t}\n\tif _, err := w.WriteString(n.Data); err != nil {\n\t\treturn err\n\t}\n\tfor _, a := range n.Attr {\n\t\tif err := w.WriteByte(' '); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif a.Namespace != \"\" {\n\t\t\tif _, err := w.WriteString(a.Namespace); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif err := w.WriteByte(':'); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tif _, err := w.WriteString(a.Key); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif _, err := w.WriteString(`=\"`); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif err := escape(w, a.Val); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif err := w.WriteByte('\"'); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif voidElements[n.Data] {\n\t\tif n.FirstChild != nil {\n\t\t\treturn fmt.Errorf(\"html: void element <%s> has child nodes\", n.Data)\n\t\t}\n\t\t_, err := w.WriteString(\"/>\")\n\t\treturn err\n\t}\n\tif err := w.WriteByte('>'); err != nil {\n\t\treturn err\n\t}\n\n\t// Add initial newline where there is danger of a newline beging ignored.\n\tif c := n.FirstChild; c != nil && c.Type == TextNode && strings.HasPrefix(c.Data, \"\\n\") {\n\t\tswitch n.Data {\n\t\tcase \"pre\", \"listing\", \"textarea\":\n\t\t\tif err := w.WriteByte('\\n'); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\t// Render any child nodes.\n\tswitch n.Data {\n\tcase \"iframe\", \"noembed\", \"noframes\", \"noscript\", \"plaintext\", \"script\", \"style\", \"xmp\":\n\t\tfor c := n.FirstChild; c != nil; c = c.NextSibling {\n\t\t\tif c.Type == TextNode {\n\t\t\t\tif _, err := w.WriteString(c.Data); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif err := render1(w, c); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif n.Data == \"plaintext\" {\n\t\t\t// Don't render anything else. <plaintext> must be the\n\t\t\t// last element in the file, with no closing tag.\n\t\t\treturn plaintextAbort\n\t\t}\n\tdefault:\n\t\tfor c := n.FirstChild; c != nil; c = c.NextSibling {\n\t\t\tif err := render1(w, c); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\t// Render the </xxx> closing tag.\n\tif _, err := w.WriteString(\"</\"); err != nil {\n\t\treturn err\n\t}\n\tif _, err := w.WriteString(n.Data); err != nil {\n\t\treturn err\n\t}\n\treturn w.WriteByte('>')\n}\n\n// writeQuoted writes s to w surrounded by quotes. Normally it will use double\n// quotes, but if s contains a double quote, it will use single quotes.\n// It is used for writing the identifiers in a doctype declaration.\n// In valid HTML, they can't contain both types of quotes.\nfunc writeQuoted(w writer, s string) error {\n\tvar q byte = '\"'\n\tif strings.Contains(s, `\"`) {\n\t\tq = '\\''\n\t}\n\tif err := w.WriteByte(q); err != nil {\n\t\treturn err\n\t}\n\tif _, err := w.WriteString(s); err != nil {\n\t\treturn err\n\t}\n\tif err := w.WriteByte(q); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// Section 12.1.2, \"Elements\", gives this list of void elements. Void elements\n// are those that can't have any contents.\nvar voidElements = map[string]bool{\n\t\"area\":   true,\n\t\"base\":   true,\n\t\"br\":     true,\n\t\"col\":    true,\n\t\"embed\":  true,\n\t\"hr\":     true,\n\t\"img\":    true,\n\t\"input\":  true,\n\t\"keygen\": true, // \"keygen\" has been removed from the spec, but are kept here for backwards compatibility.\n\t\"link\":   true,\n\t\"meta\":   true,\n\t\"param\":  true,\n\t\"source\": true,\n\t\"track\":  true,\n\t\"wbr\":    true,\n}\n"
  },
  {
    "path": "vendor/golang.org/x/net/html/token.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage html\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"io\"\n\t\"strconv\"\n\t\"strings\"\n\n\t\"golang.org/x/net/html/atom\"\n)\n\n// A TokenType is the type of a Token.\ntype TokenType uint32\n\nconst (\n\t// ErrorToken means that an error occurred during tokenization.\n\tErrorToken TokenType = iota\n\t// TextToken means a text node.\n\tTextToken\n\t// A StartTagToken looks like <a>.\n\tStartTagToken\n\t// An EndTagToken looks like </a>.\n\tEndTagToken\n\t// A SelfClosingTagToken tag looks like <br/>.\n\tSelfClosingTagToken\n\t// A CommentToken looks like <!--x-->.\n\tCommentToken\n\t// A DoctypeToken looks like <!DOCTYPE x>\n\tDoctypeToken\n)\n\n// ErrBufferExceeded means that the buffering limit was exceeded.\nvar ErrBufferExceeded = errors.New(\"max buffer exceeded\")\n\n// String returns a string representation of the TokenType.\nfunc (t TokenType) String() string {\n\tswitch t {\n\tcase ErrorToken:\n\t\treturn \"Error\"\n\tcase TextToken:\n\t\treturn \"Text\"\n\tcase StartTagToken:\n\t\treturn \"StartTag\"\n\tcase EndTagToken:\n\t\treturn \"EndTag\"\n\tcase SelfClosingTagToken:\n\t\treturn \"SelfClosingTag\"\n\tcase CommentToken:\n\t\treturn \"Comment\"\n\tcase DoctypeToken:\n\t\treturn \"Doctype\"\n\t}\n\treturn \"Invalid(\" + strconv.Itoa(int(t)) + \")\"\n}\n\n// An Attribute is an attribute namespace-key-value triple. Namespace is\n// non-empty for foreign attributes like xlink, Key is alphabetic (and hence\n// does not contain escapable characters like '&', '<' or '>'), and Val is\n// unescaped (it looks like \"a<b\" rather than \"a&lt;b\").\n//\n// Namespace is only used by the parser, not the tokenizer.\ntype Attribute struct {\n\tNamespace, Key, Val string\n}\n\n// A Token consists of a TokenType and some Data (tag name for start and end\n// tags, content for text, comments and doctypes). A tag Token may also contain\n// a slice of Attributes. Data is unescaped for all Tokens (it looks like \"a<b\"\n// rather than \"a&lt;b\"). For tag Tokens, DataAtom is the atom for Data, or\n// zero if Data is not a known tag name.\ntype Token struct {\n\tType     TokenType\n\tDataAtom atom.Atom\n\tData     string\n\tAttr     []Attribute\n}\n\n// tagString returns a string representation of a tag Token's Data and Attr.\nfunc (t Token) tagString() string {\n\tif len(t.Attr) == 0 {\n\t\treturn t.Data\n\t}\n\tbuf := bytes.NewBufferString(t.Data)\n\tfor _, a := range t.Attr {\n\t\tbuf.WriteByte(' ')\n\t\tbuf.WriteString(a.Key)\n\t\tbuf.WriteString(`=\"`)\n\t\tescape(buf, a.Val)\n\t\tbuf.WriteByte('\"')\n\t}\n\treturn buf.String()\n}\n\n// String returns a string representation of the Token.\nfunc (t Token) String() string {\n\tswitch t.Type {\n\tcase ErrorToken:\n\t\treturn \"\"\n\tcase TextToken:\n\t\treturn EscapeString(t.Data)\n\tcase StartTagToken:\n\t\treturn \"<\" + t.tagString() + \">\"\n\tcase EndTagToken:\n\t\treturn \"</\" + t.tagString() + \">\"\n\tcase SelfClosingTagToken:\n\t\treturn \"<\" + t.tagString() + \"/>\"\n\tcase CommentToken:\n\t\treturn \"<!--\" + t.Data + \"-->\"\n\tcase DoctypeToken:\n\t\treturn \"<!DOCTYPE \" + t.Data + \">\"\n\t}\n\treturn \"Invalid(\" + strconv.Itoa(int(t.Type)) + \")\"\n}\n\n// span is a range of bytes in a Tokenizer's buffer. The start is inclusive,\n// the end is exclusive.\ntype span struct {\n\tstart, end int\n}\n\n// A Tokenizer returns a stream of HTML Tokens.\ntype Tokenizer struct {\n\t// r is the source of the HTML text.\n\tr io.Reader\n\t// tt is the TokenType of the current token.\n\ttt TokenType\n\t// err is the first error encountered during tokenization. It is possible\n\t// for tt != Error && err != nil to hold: this means that Next returned a\n\t// valid token but the subsequent Next call will return an error token.\n\t// For example, if the HTML text input was just \"plain\", then the first\n\t// Next call would set z.err to io.EOF but return a TextToken, and all\n\t// subsequent Next calls would return an ErrorToken.\n\t// err is never reset. Once it becomes non-nil, it stays non-nil.\n\terr error\n\t// readErr is the error returned by the io.Reader r. It is separate from\n\t// err because it is valid for an io.Reader to return (n int, err1 error)\n\t// such that n > 0 && err1 != nil, and callers should always process the\n\t// n > 0 bytes before considering the error err1.\n\treadErr error\n\t// buf[raw.start:raw.end] holds the raw bytes of the current token.\n\t// buf[raw.end:] is buffered input that will yield future tokens.\n\traw span\n\tbuf []byte\n\t// maxBuf limits the data buffered in buf. A value of 0 means unlimited.\n\tmaxBuf int\n\t// buf[data.start:data.end] holds the raw bytes of the current token's data:\n\t// a text token's text, a tag token's tag name, etc.\n\tdata span\n\t// pendingAttr is the attribute key and value currently being tokenized.\n\t// When complete, pendingAttr is pushed onto attr. nAttrReturned is\n\t// incremented on each call to TagAttr.\n\tpendingAttr   [2]span\n\tattr          [][2]span\n\tnAttrReturned int\n\t// rawTag is the \"script\" in \"</script>\" that closes the next token. If\n\t// non-empty, the subsequent call to Next will return a raw or RCDATA text\n\t// token: one that treats \"<p>\" as text instead of an element.\n\t// rawTag's contents are lower-cased.\n\trawTag string\n\t// textIsRaw is whether the current text token's data is not escaped.\n\ttextIsRaw bool\n\t// convertNUL is whether NUL bytes in the current token's data should\n\t// be converted into \\ufffd replacement characters.\n\tconvertNUL bool\n\t// allowCDATA is whether CDATA sections are allowed in the current context.\n\tallowCDATA bool\n}\n\n// AllowCDATA sets whether or not the tokenizer recognizes <![CDATA[foo]]> as\n// the text \"foo\". The default value is false, which means to recognize it as\n// a bogus comment \"<!-- [CDATA[foo]] -->\" instead.\n//\n// Strictly speaking, an HTML5 compliant tokenizer should allow CDATA if and\n// only if tokenizing foreign content, such as MathML and SVG. However,\n// tracking foreign-contentness is difficult to do purely in the tokenizer,\n// as opposed to the parser, due to HTML integration points: an <svg> element\n// can contain a <foreignObject> that is foreign-to-SVG but not foreign-to-\n// HTML. For strict compliance with the HTML5 tokenization algorithm, it is the\n// responsibility of the user of a tokenizer to call AllowCDATA as appropriate.\n// In practice, if using the tokenizer without caring whether MathML or SVG\n// CDATA is text or comments, such as tokenizing HTML to find all the anchor\n// text, it is acceptable to ignore this responsibility.\nfunc (z *Tokenizer) AllowCDATA(allowCDATA bool) {\n\tz.allowCDATA = allowCDATA\n}\n\n// NextIsNotRawText instructs the tokenizer that the next token should not be\n// considered as 'raw text'. Some elements, such as script and title elements,\n// normally require the next token after the opening tag to be 'raw text' that\n// has no child elements. For example, tokenizing \"<title>a<b>c</b>d</title>\"\n// yields a start tag token for \"<title>\", a text token for \"a<b>c</b>d\", and\n// an end tag token for \"</title>\". There are no distinct start tag or end tag\n// tokens for the \"<b>\" and \"</b>\".\n//\n// This tokenizer implementation will generally look for raw text at the right\n// times. Strictly speaking, an HTML5 compliant tokenizer should not look for\n// raw text if in foreign content: <title> generally needs raw text, but a\n// <title> inside an <svg> does not. Another example is that a <textarea>\n// generally needs raw text, but a <textarea> is not allowed as an immediate\n// child of a <select>; in normal parsing, a <textarea> implies </select>, but\n// one cannot close the implicit element when parsing a <select>'s InnerHTML.\n// Similarly to AllowCDATA, tracking the correct moment to override raw-text-\n// ness is difficult to do purely in the tokenizer, as opposed to the parser.\n// For strict compliance with the HTML5 tokenization algorithm, it is the\n// responsibility of the user of a tokenizer to call NextIsNotRawText as\n// appropriate. In practice, like AllowCDATA, it is acceptable to ignore this\n// responsibility for basic usage.\n//\n// Note that this 'raw text' concept is different from the one offered by the\n// Tokenizer.Raw method.\nfunc (z *Tokenizer) NextIsNotRawText() {\n\tz.rawTag = \"\"\n}\n\n// Err returns the error associated with the most recent ErrorToken token.\n// This is typically io.EOF, meaning the end of tokenization.\nfunc (z *Tokenizer) Err() error {\n\tif z.tt != ErrorToken {\n\t\treturn nil\n\t}\n\treturn z.err\n}\n\n// readByte returns the next byte from the input stream, doing a buffered read\n// from z.r into z.buf if necessary. z.buf[z.raw.start:z.raw.end] remains a contiguous byte\n// slice that holds all the bytes read so far for the current token.\n// It sets z.err if the underlying reader returns an error.\n// Pre-condition: z.err == nil.\nfunc (z *Tokenizer) readByte() byte {\n\tif z.raw.end >= len(z.buf) {\n\t\t// Our buffer is exhausted and we have to read from z.r. Check if the\n\t\t// previous read resulted in an error.\n\t\tif z.readErr != nil {\n\t\t\tz.err = z.readErr\n\t\t\treturn 0\n\t\t}\n\t\t// We copy z.buf[z.raw.start:z.raw.end] to the beginning of z.buf. If the length\n\t\t// z.raw.end - z.raw.start is more than half the capacity of z.buf, then we\n\t\t// allocate a new buffer before the copy.\n\t\tc := cap(z.buf)\n\t\td := z.raw.end - z.raw.start\n\t\tvar buf1 []byte\n\t\tif 2*d > c {\n\t\t\tbuf1 = make([]byte, d, 2*c)\n\t\t} else {\n\t\t\tbuf1 = z.buf[:d]\n\t\t}\n\t\tcopy(buf1, z.buf[z.raw.start:z.raw.end])\n\t\tif x := z.raw.start; x != 0 {\n\t\t\t// Adjust the data/attr spans to refer to the same contents after the copy.\n\t\t\tz.data.start -= x\n\t\t\tz.data.end -= x\n\t\t\tz.pendingAttr[0].start -= x\n\t\t\tz.pendingAttr[0].end -= x\n\t\t\tz.pendingAttr[1].start -= x\n\t\t\tz.pendingAttr[1].end -= x\n\t\t\tfor i := range z.attr {\n\t\t\t\tz.attr[i][0].start -= x\n\t\t\t\tz.attr[i][0].end -= x\n\t\t\t\tz.attr[i][1].start -= x\n\t\t\t\tz.attr[i][1].end -= x\n\t\t\t}\n\t\t}\n\t\tz.raw.start, z.raw.end, z.buf = 0, d, buf1[:d]\n\t\t// Now that we have copied the live bytes to the start of the buffer,\n\t\t// we read from z.r into the remainder.\n\t\tvar n int\n\t\tn, z.readErr = readAtLeastOneByte(z.r, buf1[d:cap(buf1)])\n\t\tif n == 0 {\n\t\t\tz.err = z.readErr\n\t\t\treturn 0\n\t\t}\n\t\tz.buf = buf1[:d+n]\n\t}\n\tx := z.buf[z.raw.end]\n\tz.raw.end++\n\tif z.maxBuf > 0 && z.raw.end-z.raw.start >= z.maxBuf {\n\t\tz.err = ErrBufferExceeded\n\t\treturn 0\n\t}\n\treturn x\n}\n\n// Buffered returns a slice containing data buffered but not yet tokenized.\nfunc (z *Tokenizer) Buffered() []byte {\n\treturn z.buf[z.raw.end:]\n}\n\n// readAtLeastOneByte wraps an io.Reader so that reading cannot return (0, nil).\n// It returns io.ErrNoProgress if the underlying r.Read method returns (0, nil)\n// too many times in succession.\nfunc readAtLeastOneByte(r io.Reader, b []byte) (int, error) {\n\tfor i := 0; i < 100; i++ {\n\t\tif n, err := r.Read(b); n != 0 || err != nil {\n\t\t\treturn n, err\n\t\t}\n\t}\n\treturn 0, io.ErrNoProgress\n}\n\n// skipWhiteSpace skips past any white space.\nfunc (z *Tokenizer) skipWhiteSpace() {\n\tif z.err != nil {\n\t\treturn\n\t}\n\tfor {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\treturn\n\t\t}\n\t\tswitch c {\n\t\tcase ' ', '\\n', '\\r', '\\t', '\\f':\n\t\t\t// No-op.\n\t\tdefault:\n\t\t\tz.raw.end--\n\t\t\treturn\n\t\t}\n\t}\n}\n\n// readRawOrRCDATA reads until the next \"</foo>\", where \"foo\" is z.rawTag and\n// is typically something like \"script\" or \"textarea\".\nfunc (z *Tokenizer) readRawOrRCDATA() {\n\tif z.rawTag == \"script\" {\n\t\tz.readScript()\n\t\tz.textIsRaw = true\n\t\tz.rawTag = \"\"\n\t\treturn\n\t}\nloop:\n\tfor {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\tbreak loop\n\t\t}\n\t\tif c != '<' {\n\t\t\tcontinue loop\n\t\t}\n\t\tc = z.readByte()\n\t\tif z.err != nil {\n\t\t\tbreak loop\n\t\t}\n\t\tif c != '/' {\n\t\t\tz.raw.end--\n\t\t\tcontinue loop\n\t\t}\n\t\tif z.readRawEndTag() || z.err != nil {\n\t\t\tbreak loop\n\t\t}\n\t}\n\tz.data.end = z.raw.end\n\t// A textarea's or title's RCDATA can contain escaped entities.\n\tz.textIsRaw = z.rawTag != \"textarea\" && z.rawTag != \"title\"\n\tz.rawTag = \"\"\n}\n\n// readRawEndTag attempts to read a tag like \"</foo>\", where \"foo\" is z.rawTag.\n// If it succeeds, it backs up the input position to reconsume the tag and\n// returns true. Otherwise it returns false. The opening \"</\" has already been\n// consumed.\nfunc (z *Tokenizer) readRawEndTag() bool {\n\tfor i := 0; i < len(z.rawTag); i++ {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\treturn false\n\t\t}\n\t\tif c != z.rawTag[i] && c != z.rawTag[i]-('a'-'A') {\n\t\t\tz.raw.end--\n\t\t\treturn false\n\t\t}\n\t}\n\tc := z.readByte()\n\tif z.err != nil {\n\t\treturn false\n\t}\n\tswitch c {\n\tcase ' ', '\\n', '\\r', '\\t', '\\f', '/', '>':\n\t\t// The 3 is 2 for the leading \"</\" plus 1 for the trailing character c.\n\t\tz.raw.end -= 3 + len(z.rawTag)\n\t\treturn true\n\t}\n\tz.raw.end--\n\treturn false\n}\n\n// readScript reads until the next </script> tag, following the byzantine\n// rules for escaping/hiding the closing tag.\nfunc (z *Tokenizer) readScript() {\n\tdefer func() {\n\t\tz.data.end = z.raw.end\n\t}()\n\tvar c byte\n\nscriptData:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tif c == '<' {\n\t\tgoto scriptDataLessThanSign\n\t}\n\tgoto scriptData\n\nscriptDataLessThanSign:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tswitch c {\n\tcase '/':\n\t\tgoto scriptDataEndTagOpen\n\tcase '!':\n\t\tgoto scriptDataEscapeStart\n\t}\n\tz.raw.end--\n\tgoto scriptData\n\nscriptDataEndTagOpen:\n\tif z.readRawEndTag() || z.err != nil {\n\t\treturn\n\t}\n\tgoto scriptData\n\nscriptDataEscapeStart:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tif c == '-' {\n\t\tgoto scriptDataEscapeStartDash\n\t}\n\tz.raw.end--\n\tgoto scriptData\n\nscriptDataEscapeStartDash:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tif c == '-' {\n\t\tgoto scriptDataEscapedDashDash\n\t}\n\tz.raw.end--\n\tgoto scriptData\n\nscriptDataEscaped:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tswitch c {\n\tcase '-':\n\t\tgoto scriptDataEscapedDash\n\tcase '<':\n\t\tgoto scriptDataEscapedLessThanSign\n\t}\n\tgoto scriptDataEscaped\n\nscriptDataEscapedDash:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tswitch c {\n\tcase '-':\n\t\tgoto scriptDataEscapedDashDash\n\tcase '<':\n\t\tgoto scriptDataEscapedLessThanSign\n\t}\n\tgoto scriptDataEscaped\n\nscriptDataEscapedDashDash:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tswitch c {\n\tcase '-':\n\t\tgoto scriptDataEscapedDashDash\n\tcase '<':\n\t\tgoto scriptDataEscapedLessThanSign\n\tcase '>':\n\t\tgoto scriptData\n\t}\n\tgoto scriptDataEscaped\n\nscriptDataEscapedLessThanSign:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tif c == '/' {\n\t\tgoto scriptDataEscapedEndTagOpen\n\t}\n\tif 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' {\n\t\tgoto scriptDataDoubleEscapeStart\n\t}\n\tz.raw.end--\n\tgoto scriptData\n\nscriptDataEscapedEndTagOpen:\n\tif z.readRawEndTag() || z.err != nil {\n\t\treturn\n\t}\n\tgoto scriptDataEscaped\n\nscriptDataDoubleEscapeStart:\n\tz.raw.end--\n\tfor i := 0; i < len(\"script\"); i++ {\n\t\tc = z.readByte()\n\t\tif z.err != nil {\n\t\t\treturn\n\t\t}\n\t\tif c != \"script\"[i] && c != \"SCRIPT\"[i] {\n\t\t\tz.raw.end--\n\t\t\tgoto scriptDataEscaped\n\t\t}\n\t}\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tswitch c {\n\tcase ' ', '\\n', '\\r', '\\t', '\\f', '/', '>':\n\t\tgoto scriptDataDoubleEscaped\n\t}\n\tz.raw.end--\n\tgoto scriptDataEscaped\n\nscriptDataDoubleEscaped:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tswitch c {\n\tcase '-':\n\t\tgoto scriptDataDoubleEscapedDash\n\tcase '<':\n\t\tgoto scriptDataDoubleEscapedLessThanSign\n\t}\n\tgoto scriptDataDoubleEscaped\n\nscriptDataDoubleEscapedDash:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tswitch c {\n\tcase '-':\n\t\tgoto scriptDataDoubleEscapedDashDash\n\tcase '<':\n\t\tgoto scriptDataDoubleEscapedLessThanSign\n\t}\n\tgoto scriptDataDoubleEscaped\n\nscriptDataDoubleEscapedDashDash:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tswitch c {\n\tcase '-':\n\t\tgoto scriptDataDoubleEscapedDashDash\n\tcase '<':\n\t\tgoto scriptDataDoubleEscapedLessThanSign\n\tcase '>':\n\t\tgoto scriptData\n\t}\n\tgoto scriptDataDoubleEscaped\n\nscriptDataDoubleEscapedLessThanSign:\n\tc = z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tif c == '/' {\n\t\tgoto scriptDataDoubleEscapeEnd\n\t}\n\tz.raw.end--\n\tgoto scriptDataDoubleEscaped\n\nscriptDataDoubleEscapeEnd:\n\tif z.readRawEndTag() {\n\t\tz.raw.end += len(\"</script>\")\n\t\tgoto scriptDataEscaped\n\t}\n\tif z.err != nil {\n\t\treturn\n\t}\n\tgoto scriptDataDoubleEscaped\n}\n\n// readComment reads the next comment token starting with \"<!--\". The opening\n// \"<!--\" has already been consumed.\nfunc (z *Tokenizer) readComment() {\n\tz.data.start = z.raw.end\n\tdefer func() {\n\t\tif z.data.end < z.data.start {\n\t\t\t// It's a comment with no data, like <!-->.\n\t\t\tz.data.end = z.data.start\n\t\t}\n\t}()\n\tfor dashCount := 2; ; {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\t// Ignore up to two dashes at EOF.\n\t\t\tif dashCount > 2 {\n\t\t\t\tdashCount = 2\n\t\t\t}\n\t\t\tz.data.end = z.raw.end - dashCount\n\t\t\treturn\n\t\t}\n\t\tswitch c {\n\t\tcase '-':\n\t\t\tdashCount++\n\t\t\tcontinue\n\t\tcase '>':\n\t\t\tif dashCount >= 2 {\n\t\t\t\tz.data.end = z.raw.end - len(\"-->\")\n\t\t\t\treturn\n\t\t\t}\n\t\tcase '!':\n\t\t\tif dashCount >= 2 {\n\t\t\t\tc = z.readByte()\n\t\t\t\tif z.err != nil {\n\t\t\t\t\tz.data.end = z.raw.end\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tif c == '>' {\n\t\t\t\t\tz.data.end = z.raw.end - len(\"--!>\")\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdashCount = 0\n\t}\n}\n\n// readUntilCloseAngle reads until the next \">\".\nfunc (z *Tokenizer) readUntilCloseAngle() {\n\tz.data.start = z.raw.end\n\tfor {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\tz.data.end = z.raw.end\n\t\t\treturn\n\t\t}\n\t\tif c == '>' {\n\t\t\tz.data.end = z.raw.end - len(\">\")\n\t\t\treturn\n\t\t}\n\t}\n}\n\n// readMarkupDeclaration reads the next token starting with \"<!\". It might be\n// a \"<!--comment-->\", a \"<!DOCTYPE foo>\", a \"<![CDATA[section]]>\" or\n// \"<!a bogus comment\". The opening \"<!\" has already been consumed.\nfunc (z *Tokenizer) readMarkupDeclaration() TokenType {\n\tz.data.start = z.raw.end\n\tvar c [2]byte\n\tfor i := 0; i < 2; i++ {\n\t\tc[i] = z.readByte()\n\t\tif z.err != nil {\n\t\t\tz.data.end = z.raw.end\n\t\t\treturn CommentToken\n\t\t}\n\t}\n\tif c[0] == '-' && c[1] == '-' {\n\t\tz.readComment()\n\t\treturn CommentToken\n\t}\n\tz.raw.end -= 2\n\tif z.readDoctype() {\n\t\treturn DoctypeToken\n\t}\n\tif z.allowCDATA && z.readCDATA() {\n\t\tz.convertNUL = true\n\t\treturn TextToken\n\t}\n\t// It's a bogus comment.\n\tz.readUntilCloseAngle()\n\treturn CommentToken\n}\n\n// readDoctype attempts to read a doctype declaration and returns true if\n// successful. The opening \"<!\" has already been consumed.\nfunc (z *Tokenizer) readDoctype() bool {\n\tconst s = \"DOCTYPE\"\n\tfor i := 0; i < len(s); i++ {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\tz.data.end = z.raw.end\n\t\t\treturn false\n\t\t}\n\t\tif c != s[i] && c != s[i]+('a'-'A') {\n\t\t\t// Back up to read the fragment of \"DOCTYPE\" again.\n\t\t\tz.raw.end = z.data.start\n\t\t\treturn false\n\t\t}\n\t}\n\tif z.skipWhiteSpace(); z.err != nil {\n\t\tz.data.start = z.raw.end\n\t\tz.data.end = z.raw.end\n\t\treturn true\n\t}\n\tz.readUntilCloseAngle()\n\treturn true\n}\n\n// readCDATA attempts to read a CDATA section and returns true if\n// successful. The opening \"<!\" has already been consumed.\nfunc (z *Tokenizer) readCDATA() bool {\n\tconst s = \"[CDATA[\"\n\tfor i := 0; i < len(s); i++ {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\tz.data.end = z.raw.end\n\t\t\treturn false\n\t\t}\n\t\tif c != s[i] {\n\t\t\t// Back up to read the fragment of \"[CDATA[\" again.\n\t\t\tz.raw.end = z.data.start\n\t\t\treturn false\n\t\t}\n\t}\n\tz.data.start = z.raw.end\n\tbrackets := 0\n\tfor {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\tz.data.end = z.raw.end\n\t\t\treturn true\n\t\t}\n\t\tswitch c {\n\t\tcase ']':\n\t\t\tbrackets++\n\t\tcase '>':\n\t\t\tif brackets >= 2 {\n\t\t\t\tz.data.end = z.raw.end - len(\"]]>\")\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tbrackets = 0\n\t\tdefault:\n\t\t\tbrackets = 0\n\t\t}\n\t}\n}\n\n// startTagIn returns whether the start tag in z.buf[z.data.start:z.data.end]\n// case-insensitively matches any element of ss.\nfunc (z *Tokenizer) startTagIn(ss ...string) bool {\nloop:\n\tfor _, s := range ss {\n\t\tif z.data.end-z.data.start != len(s) {\n\t\t\tcontinue loop\n\t\t}\n\t\tfor i := 0; i < len(s); i++ {\n\t\t\tc := z.buf[z.data.start+i]\n\t\t\tif 'A' <= c && c <= 'Z' {\n\t\t\t\tc += 'a' - 'A'\n\t\t\t}\n\t\t\tif c != s[i] {\n\t\t\t\tcontinue loop\n\t\t\t}\n\t\t}\n\t\treturn true\n\t}\n\treturn false\n}\n\n// readStartTag reads the next start tag token. The opening \"<a\" has already\n// been consumed, where 'a' means anything in [A-Za-z].\nfunc (z *Tokenizer) readStartTag() TokenType {\n\tz.readTag(true)\n\tif z.err != nil {\n\t\treturn ErrorToken\n\t}\n\t// Several tags flag the tokenizer's next token as raw.\n\tc, raw := z.buf[z.data.start], false\n\tif 'A' <= c && c <= 'Z' {\n\t\tc += 'a' - 'A'\n\t}\n\tswitch c {\n\tcase 'i':\n\t\traw = z.startTagIn(\"iframe\")\n\tcase 'n':\n\t\traw = z.startTagIn(\"noembed\", \"noframes\", \"noscript\")\n\tcase 'p':\n\t\traw = z.startTagIn(\"plaintext\")\n\tcase 's':\n\t\traw = z.startTagIn(\"script\", \"style\")\n\tcase 't':\n\t\traw = z.startTagIn(\"textarea\", \"title\")\n\tcase 'x':\n\t\traw = z.startTagIn(\"xmp\")\n\t}\n\tif raw {\n\t\tz.rawTag = strings.ToLower(string(z.buf[z.data.start:z.data.end]))\n\t}\n\t// Look for a self-closing token like \"<br/>\".\n\tif z.err == nil && z.buf[z.raw.end-2] == '/' {\n\t\treturn SelfClosingTagToken\n\t}\n\treturn StartTagToken\n}\n\n// readTag reads the next tag token and its attributes. If saveAttr, those\n// attributes are saved in z.attr, otherwise z.attr is set to an empty slice.\n// The opening \"<a\" or \"</a\" has already been consumed, where 'a' means anything\n// in [A-Za-z].\nfunc (z *Tokenizer) readTag(saveAttr bool) {\n\tz.attr = z.attr[:0]\n\tz.nAttrReturned = 0\n\t// Read the tag name and attribute key/value pairs.\n\tz.readTagName()\n\tif z.skipWhiteSpace(); z.err != nil {\n\t\treturn\n\t}\n\tfor {\n\t\tc := z.readByte()\n\t\tif z.err != nil || c == '>' {\n\t\t\tbreak\n\t\t}\n\t\tz.raw.end--\n\t\tz.readTagAttrKey()\n\t\tz.readTagAttrVal()\n\t\t// Save pendingAttr if saveAttr and that attribute has a non-empty key.\n\t\tif saveAttr && z.pendingAttr[0].start != z.pendingAttr[0].end {\n\t\t\tz.attr = append(z.attr, z.pendingAttr)\n\t\t}\n\t\tif z.skipWhiteSpace(); z.err != nil {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n// readTagName sets z.data to the \"div\" in \"<div k=v>\". The reader (z.raw.end)\n// is positioned such that the first byte of the tag name (the \"d\" in \"<div\")\n// has already been consumed.\nfunc (z *Tokenizer) readTagName() {\n\tz.data.start = z.raw.end - 1\n\tfor {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\tz.data.end = z.raw.end\n\t\t\treturn\n\t\t}\n\t\tswitch c {\n\t\tcase ' ', '\\n', '\\r', '\\t', '\\f':\n\t\t\tz.data.end = z.raw.end - 1\n\t\t\treturn\n\t\tcase '/', '>':\n\t\t\tz.raw.end--\n\t\t\tz.data.end = z.raw.end\n\t\t\treturn\n\t\t}\n\t}\n}\n\n// readTagAttrKey sets z.pendingAttr[0] to the \"k\" in \"<div k=v>\".\n// Precondition: z.err == nil.\nfunc (z *Tokenizer) readTagAttrKey() {\n\tz.pendingAttr[0].start = z.raw.end\n\tfor {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\tz.pendingAttr[0].end = z.raw.end\n\t\t\treturn\n\t\t}\n\t\tswitch c {\n\t\tcase ' ', '\\n', '\\r', '\\t', '\\f', '/':\n\t\t\tz.pendingAttr[0].end = z.raw.end - 1\n\t\t\treturn\n\t\tcase '=', '>':\n\t\t\tz.raw.end--\n\t\t\tz.pendingAttr[0].end = z.raw.end\n\t\t\treturn\n\t\t}\n\t}\n}\n\n// readTagAttrVal sets z.pendingAttr[1] to the \"v\" in \"<div k=v>\".\nfunc (z *Tokenizer) readTagAttrVal() {\n\tz.pendingAttr[1].start = z.raw.end\n\tz.pendingAttr[1].end = z.raw.end\n\tif z.skipWhiteSpace(); z.err != nil {\n\t\treturn\n\t}\n\tc := z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tif c != '=' {\n\t\tz.raw.end--\n\t\treturn\n\t}\n\tif z.skipWhiteSpace(); z.err != nil {\n\t\treturn\n\t}\n\tquote := z.readByte()\n\tif z.err != nil {\n\t\treturn\n\t}\n\tswitch quote {\n\tcase '>':\n\t\tz.raw.end--\n\t\treturn\n\n\tcase '\\'', '\"':\n\t\tz.pendingAttr[1].start = z.raw.end\n\t\tfor {\n\t\t\tc := z.readByte()\n\t\t\tif z.err != nil {\n\t\t\t\tz.pendingAttr[1].end = z.raw.end\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif c == quote {\n\t\t\t\tz.pendingAttr[1].end = z.raw.end - 1\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\n\tdefault:\n\t\tz.pendingAttr[1].start = z.raw.end - 1\n\t\tfor {\n\t\t\tc := z.readByte()\n\t\t\tif z.err != nil {\n\t\t\t\tz.pendingAttr[1].end = z.raw.end\n\t\t\t\treturn\n\t\t\t}\n\t\t\tswitch c {\n\t\t\tcase ' ', '\\n', '\\r', '\\t', '\\f':\n\t\t\t\tz.pendingAttr[1].end = z.raw.end - 1\n\t\t\t\treturn\n\t\t\tcase '>':\n\t\t\t\tz.raw.end--\n\t\t\t\tz.pendingAttr[1].end = z.raw.end\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Next scans the next token and returns its type.\nfunc (z *Tokenizer) Next() TokenType {\n\tz.raw.start = z.raw.end\n\tz.data.start = z.raw.end\n\tz.data.end = z.raw.end\n\tif z.err != nil {\n\t\tz.tt = ErrorToken\n\t\treturn z.tt\n\t}\n\tif z.rawTag != \"\" {\n\t\tif z.rawTag == \"plaintext\" {\n\t\t\t// Read everything up to EOF.\n\t\t\tfor z.err == nil {\n\t\t\t\tz.readByte()\n\t\t\t}\n\t\t\tz.data.end = z.raw.end\n\t\t\tz.textIsRaw = true\n\t\t} else {\n\t\t\tz.readRawOrRCDATA()\n\t\t}\n\t\tif z.data.end > z.data.start {\n\t\t\tz.tt = TextToken\n\t\t\tz.convertNUL = true\n\t\t\treturn z.tt\n\t\t}\n\t}\n\tz.textIsRaw = false\n\tz.convertNUL = false\n\nloop:\n\tfor {\n\t\tc := z.readByte()\n\t\tif z.err != nil {\n\t\t\tbreak loop\n\t\t}\n\t\tif c != '<' {\n\t\t\tcontinue loop\n\t\t}\n\n\t\t// Check if the '<' we have just read is part of a tag, comment\n\t\t// or doctype. If not, it's part of the accumulated text token.\n\t\tc = z.readByte()\n\t\tif z.err != nil {\n\t\t\tbreak loop\n\t\t}\n\t\tvar tokenType TokenType\n\t\tswitch {\n\t\tcase 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z':\n\t\t\ttokenType = StartTagToken\n\t\tcase c == '/':\n\t\t\ttokenType = EndTagToken\n\t\tcase c == '!' || c == '?':\n\t\t\t// We use CommentToken to mean any of \"<!--actual comments-->\",\n\t\t\t// \"<!DOCTYPE declarations>\" and \"<?xml processing instructions?>\".\n\t\t\ttokenType = CommentToken\n\t\tdefault:\n\t\t\t// Reconsume the current character.\n\t\t\tz.raw.end--\n\t\t\tcontinue\n\t\t}\n\n\t\t// We have a non-text token, but we might have accumulated some text\n\t\t// before that. If so, we return the text first, and return the non-\n\t\t// text token on the subsequent call to Next.\n\t\tif x := z.raw.end - len(\"<a\"); z.raw.start < x {\n\t\t\tz.raw.end = x\n\t\t\tz.data.end = x\n\t\t\tz.tt = TextToken\n\t\t\treturn z.tt\n\t\t}\n\t\tswitch tokenType {\n\t\tcase StartTagToken:\n\t\t\tz.tt = z.readStartTag()\n\t\t\treturn z.tt\n\t\tcase EndTagToken:\n\t\t\tc = z.readByte()\n\t\t\tif z.err != nil {\n\t\t\t\tbreak loop\n\t\t\t}\n\t\t\tif c == '>' {\n\t\t\t\t// \"</>\" does not generate a token at all. Generate an empty comment\n\t\t\t\t// to allow passthrough clients to pick up the data using Raw.\n\t\t\t\t// Reset the tokenizer state and start again.\n\t\t\t\tz.tt = CommentToken\n\t\t\t\treturn z.tt\n\t\t\t}\n\t\t\tif 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' {\n\t\t\t\tz.readTag(false)\n\t\t\t\tif z.err != nil {\n\t\t\t\t\tz.tt = ErrorToken\n\t\t\t\t} else {\n\t\t\t\t\tz.tt = EndTagToken\n\t\t\t\t}\n\t\t\t\treturn z.tt\n\t\t\t}\n\t\t\tz.raw.end--\n\t\t\tz.readUntilCloseAngle()\n\t\t\tz.tt = CommentToken\n\t\t\treturn z.tt\n\t\tcase CommentToken:\n\t\t\tif c == '!' {\n\t\t\t\tz.tt = z.readMarkupDeclaration()\n\t\t\t\treturn z.tt\n\t\t\t}\n\t\t\tz.raw.end--\n\t\t\tz.readUntilCloseAngle()\n\t\t\tz.tt = CommentToken\n\t\t\treturn z.tt\n\t\t}\n\t}\n\tif z.raw.start < z.raw.end {\n\t\tz.data.end = z.raw.end\n\t\tz.tt = TextToken\n\t\treturn z.tt\n\t}\n\tz.tt = ErrorToken\n\treturn z.tt\n}\n\n// Raw returns the unmodified text of the current token. Calling Next, Token,\n// Text, TagName or TagAttr may change the contents of the returned slice.\n//\n// The token stream's raw bytes partition the byte stream (up until an\n// ErrorToken). There are no overlaps or gaps between two consecutive token's\n// raw bytes. One implication is that the byte offset of the current token is\n// the sum of the lengths of all previous tokens' raw bytes.\nfunc (z *Tokenizer) Raw() []byte {\n\treturn z.buf[z.raw.start:z.raw.end]\n}\n\n// convertNewlines converts \"\\r\" and \"\\r\\n\" in s to \"\\n\".\n// The conversion happens in place, but the resulting slice may be shorter.\nfunc convertNewlines(s []byte) []byte {\n\tfor i, c := range s {\n\t\tif c != '\\r' {\n\t\t\tcontinue\n\t\t}\n\n\t\tsrc := i + 1\n\t\tif src >= len(s) || s[src] != '\\n' {\n\t\t\ts[i] = '\\n'\n\t\t\tcontinue\n\t\t}\n\n\t\tdst := i\n\t\tfor src < len(s) {\n\t\t\tif s[src] == '\\r' {\n\t\t\t\tif src+1 < len(s) && s[src+1] == '\\n' {\n\t\t\t\t\tsrc++\n\t\t\t\t}\n\t\t\t\ts[dst] = '\\n'\n\t\t\t} else {\n\t\t\t\ts[dst] = s[src]\n\t\t\t}\n\t\t\tsrc++\n\t\t\tdst++\n\t\t}\n\t\treturn s[:dst]\n\t}\n\treturn s\n}\n\nvar (\n\tnul         = []byte(\"\\x00\")\n\treplacement = []byte(\"\\ufffd\")\n)\n\n// Text returns the unescaped text of a text, comment or doctype token. The\n// contents of the returned slice may change on the next call to Next.\nfunc (z *Tokenizer) Text() []byte {\n\tswitch z.tt {\n\tcase TextToken, CommentToken, DoctypeToken:\n\t\ts := z.buf[z.data.start:z.data.end]\n\t\tz.data.start = z.raw.end\n\t\tz.data.end = z.raw.end\n\t\ts = convertNewlines(s)\n\t\tif (z.convertNUL || z.tt == CommentToken) && bytes.Contains(s, nul) {\n\t\t\ts = bytes.Replace(s, nul, replacement, -1)\n\t\t}\n\t\tif !z.textIsRaw {\n\t\t\ts = unescape(s, false)\n\t\t}\n\t\treturn s\n\t}\n\treturn nil\n}\n\n// TagName returns the lower-cased name of a tag token (the `img` out of\n// `<IMG SRC=\"foo\">`) and whether the tag has attributes.\n// The contents of the returned slice may change on the next call to Next.\nfunc (z *Tokenizer) TagName() (name []byte, hasAttr bool) {\n\tif z.data.start < z.data.end {\n\t\tswitch z.tt {\n\t\tcase StartTagToken, EndTagToken, SelfClosingTagToken:\n\t\t\ts := z.buf[z.data.start:z.data.end]\n\t\t\tz.data.start = z.raw.end\n\t\t\tz.data.end = z.raw.end\n\t\t\treturn lower(s), z.nAttrReturned < len(z.attr)\n\t\t}\n\t}\n\treturn nil, false\n}\n\n// TagAttr returns the lower-cased key and unescaped value of the next unparsed\n// attribute for the current tag token and whether there are more attributes.\n// The contents of the returned slices may change on the next call to Next.\nfunc (z *Tokenizer) TagAttr() (key, val []byte, moreAttr bool) {\n\tif z.nAttrReturned < len(z.attr) {\n\t\tswitch z.tt {\n\t\tcase StartTagToken, SelfClosingTagToken:\n\t\t\tx := z.attr[z.nAttrReturned]\n\t\t\tz.nAttrReturned++\n\t\t\tkey = z.buf[x[0].start:x[0].end]\n\t\t\tval = z.buf[x[1].start:x[1].end]\n\t\t\treturn lower(key), unescape(convertNewlines(val), true), z.nAttrReturned < len(z.attr)\n\t\t}\n\t}\n\treturn nil, nil, false\n}\n\n// Token returns the current Token. The result's Data and Attr values remain\n// valid after subsequent Next calls.\nfunc (z *Tokenizer) Token() Token {\n\tt := Token{Type: z.tt}\n\tswitch z.tt {\n\tcase TextToken, CommentToken, DoctypeToken:\n\t\tt.Data = string(z.Text())\n\tcase StartTagToken, SelfClosingTagToken, EndTagToken:\n\t\tname, moreAttr := z.TagName()\n\t\tfor moreAttr {\n\t\t\tvar key, val []byte\n\t\t\tkey, val, moreAttr = z.TagAttr()\n\t\t\tt.Attr = append(t.Attr, Attribute{\"\", atom.String(key), string(val)})\n\t\t}\n\t\tif a := atom.Lookup(name); a != 0 {\n\t\t\tt.DataAtom, t.Data = a, a.String()\n\t\t} else {\n\t\t\tt.DataAtom, t.Data = 0, string(name)\n\t\t}\n\t}\n\treturn t\n}\n\n// SetMaxBuf sets a limit on the amount of data buffered during tokenization.\n// A value of 0 means unlimited.\nfunc (z *Tokenizer) SetMaxBuf(n int) {\n\tz.maxBuf = n\n}\n\n// NewTokenizer returns a new HTML Tokenizer for the given Reader.\n// The input is assumed to be UTF-8 encoded.\nfunc NewTokenizer(r io.Reader) *Tokenizer {\n\treturn NewTokenizerFragment(r, \"\")\n}\n\n// NewTokenizerFragment returns a new HTML Tokenizer for the given Reader, for\n// tokenizing an existing element's InnerHTML fragment. contextTag is that\n// element's tag, such as \"div\" or \"iframe\".\n//\n// For example, how the InnerHTML \"a<b\" is tokenized depends on whether it is\n// for a <p> tag or a <script> tag.\n//\n// The input is assumed to be UTF-8 encoded.\nfunc NewTokenizerFragment(r io.Reader, contextTag string) *Tokenizer {\n\tz := &Tokenizer{\n\t\tr:   r,\n\t\tbuf: make([]byte, 0, 4096),\n\t}\n\tif contextTag != \"\" {\n\t\tswitch s := strings.ToLower(contextTag); s {\n\t\tcase \"iframe\", \"noembed\", \"noframes\", \"noscript\", \"plaintext\", \"script\", \"style\", \"title\", \"textarea\", \"xmp\":\n\t\t\tz.rawTag = s\n\t\t}\n\t}\n\treturn z\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/AUTHORS",
    "content": "# This source code refers to The Go Authors for copyright purposes.\n# The master list of authors is in the main Go distribution,\n# visible at http://tip.golang.org/AUTHORS.\n"
  },
  {
    "path": "vendor/golang.org/x/sys/CONTRIBUTORS",
    "content": "# This source code was written by the Go contributors.\n# The master list of contributors is in the main Go distribution,\n# visible at http://tip.golang.org/CONTRIBUTORS.\n"
  },
  {
    "path": "vendor/golang.org/x/sys/LICENSE",
    "content": "Copyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n   * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n   * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n   * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "vendor/golang.org/x/sys/PATENTS",
    "content": "Additional IP Rights Grant (Patents)\n\n\"This implementation\" means the copyrightable works distributed by\nGoogle as part of the Go project.\n\nGoogle hereby grants to You a perpetual, worldwide, non-exclusive,\nno-charge, royalty-free, irrevocable (except as stated in this section)\npatent license to make, have made, use, offer to sell, sell, import,\ntransfer and otherwise run, modify and propagate the contents of this\nimplementation of Go, where such license applies only to those patent\nclaims, both currently owned or controlled by Google and acquired in\nthe future, licensable by Google that are necessarily infringed by this\nimplementation of Go.  This grant does not include claims that would be\ninfringed only as a consequence of further modification of this\nimplementation.  If you or your agent or exclusive licensee institute or\norder or agree to the institution of patent litigation against any\nentity (including a cross-claim or counterclaim in a lawsuit) alleging\nthat this implementation of Go or any code incorporated within this\nimplementation of Go constitutes direct or contributory patent\ninfringement, or inducement of patent infringement, then any patent\nrights granted to you under this License for this implementation of Go\nshall terminate as of the date such litigation is filed.\n"
  },
  {
    "path": "vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go",
    "content": "// Copyright 2020 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package unsafeheader contains header declarations for the Go runtime's\n// slice and string implementations.\n//\n// This package allows x/sys to use types equivalent to\n// reflect.SliceHeader and reflect.StringHeader without introducing\n// a dependency on the (relatively heavy) \"reflect\" package.\npackage unsafeheader\n\nimport (\n\t\"unsafe\"\n)\n\n// Slice is the runtime representation of a slice.\n// It cannot be used safely or portably and its representation may change in a later release.\ntype Slice struct {\n\tData unsafe.Pointer\n\tLen  int\n\tCap  int\n}\n\n// String is the runtime representation of a string.\n// It cannot be used safely or portably and its representation may change in a later release.\ntype String struct {\n\tData unsafe.Pointer\n\tLen  int\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/.gitignore",
    "content": "_obj/\nunix.test\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/README.md",
    "content": "# Building `sys/unix`\n\nThe sys/unix package provides access to the raw system call interface of the\nunderlying operating system. See: https://godoc.org/golang.org/x/sys/unix\n\nPorting Go to a new architecture/OS combination or adding syscalls, types, or\nconstants to an existing architecture/OS pair requires some manual effort;\nhowever, there are tools that automate much of the process.\n\n## Build Systems\n\nThere are currently two ways we generate the necessary files. We are currently\nmigrating the build system to use containers so the builds are reproducible.\nThis is being done on an OS-by-OS basis. Please update this documentation as\ncomponents of the build system change.\n\n### Old Build System (currently for `GOOS != \"linux\"`)\n\nThe old build system generates the Go files based on the C header files\npresent on your system. This means that files\nfor a given GOOS/GOARCH pair must be generated on a system with that OS and\narchitecture. This also means that the generated code can differ from system\nto system, based on differences in the header files.\n\nTo avoid this, if you are using the old build system, only generate the Go\nfiles on an installation with unmodified header files. It is also important to\nkeep track of which version of the OS the files were generated from (ex.\nDarwin 14 vs Darwin 15). This makes it easier to track the progress of changes\nand have each OS upgrade correspond to a single change.\n\nTo build the files for your current OS and architecture, make sure GOOS and\nGOARCH are set correctly and run `mkall.sh`. This will generate the files for\nyour specific system. Running `mkall.sh -n` shows the commands that will be run.\n\nRequirements: bash, go\n\n### New Build System (currently for `GOOS == \"linux\"`)\n\nThe new build system uses a Docker container to generate the go files directly\nfrom source checkouts of the kernel and various system libraries. This means\nthat on any platform that supports Docker, all the files using the new build\nsystem can be generated at once, and generated files will not change based on\nwhat the person running the scripts has installed on their computer.\n\nThe OS specific files for the new build system are located in the `${GOOS}`\ndirectory, and the build is coordinated by the `${GOOS}/mkall.go` program. When\nthe kernel or system library updates, modify the Dockerfile at\n`${GOOS}/Dockerfile` to checkout the new release of the source.\n\nTo build all the files under the new build system, you must be on an amd64/Linux\nsystem and have your GOOS and GOARCH set accordingly. Running `mkall.sh` will\nthen generate all of the files for all of the GOOS/GOARCH pairs in the new build\nsystem. Running `mkall.sh -n` shows the commands that will be run.\n\nRequirements: bash, go, docker\n\n## Component files\n\nThis section describes the various files used in the code generation process.\nIt also contains instructions on how to modify these files to add a new\narchitecture/OS or to add additional syscalls, types, or constants. Note that\nif you are using the new build system, the scripts/programs cannot be called normally.\nThey must be called from within the docker container.\n\n### asm files\n\nThe hand-written assembly file at `asm_${GOOS}_${GOARCH}.s` implements system\ncall dispatch. There are three entry points:\n```\n  func Syscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr)\n  func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr)\n  func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr)\n```\nThe first and second are the standard ones; they differ only in how many\narguments can be passed to the kernel. The third is for low-level use by the\nForkExec wrapper. Unlike the first two, it does not call into the scheduler to\nlet it know that a system call is running.\n\nWhen porting Go to an new architecture/OS, this file must be implemented for\neach GOOS/GOARCH pair.\n\n### mksysnum\n\nMksysnum is a Go program located at `${GOOS}/mksysnum.go` (or `mksysnum_${GOOS}.go`\nfor the old system). This program takes in a list of header files containing the\nsyscall number declarations and parses them to produce the corresponding list of\nGo numeric constants. See `zsysnum_${GOOS}_${GOARCH}.go` for the generated\nconstants.\n\nAdding new syscall numbers is mostly done by running the build on a sufficiently\nnew installation of the target OS (or updating the source checkouts for the\nnew build system). However, depending on the OS, you may need to update the\nparsing in mksysnum.\n\n### mksyscall.go\n\nThe `syscall.go`, `syscall_${GOOS}.go`, `syscall_${GOOS}_${GOARCH}.go` are\nhand-written Go files which implement system calls (for unix, the specific OS,\nor the specific OS/Architecture pair respectively) that need special handling\nand list `//sys` comments giving prototypes for ones that can be generated.\n\nThe mksyscall.go program takes the `//sys` and `//sysnb` comments and converts\nthem into syscalls. This requires the name of the prototype in the comment to\nmatch a syscall number in the `zsysnum_${GOOS}_${GOARCH}.go` file. The function\nprototype can be exported (capitalized) or not.\n\nAdding a new syscall often just requires adding a new `//sys` function prototype\nwith the desired arguments and a capitalized name so it is exported. However, if\nyou want the interface to the syscall to be different, often one will make an\nunexported `//sys` prototype, an then write a custom wrapper in\n`syscall_${GOOS}.go`.\n\n### types files\n\nFor each OS, there is a hand-written Go file at `${GOOS}/types.go` (or\n`types_${GOOS}.go` on the old system). This file includes standard C headers and\ncreates Go type aliases to the corresponding C types. The file is then fed\nthrough godef to get the Go compatible definitions. Finally, the generated code\nis fed though mkpost.go to format the code correctly and remove any hidden or\nprivate identifiers. This cleaned-up code is written to\n`ztypes_${GOOS}_${GOARCH}.go`.\n\nThe hardest part about preparing this file is figuring out which headers to\ninclude and which symbols need to be `#define`d to get the actual data\nstructures that pass through to the kernel system calls. Some C libraries\npreset alternate versions for binary compatibility and translate them on the\nway in and out of system calls, but there is almost always a `#define` that can\nget the real ones.\nSee `types_darwin.go` and `linux/types.go` for examples.\n\nTo add a new type, add in the necessary include statement at the top of the\nfile (if it is not already there) and add in a type alias line. Note that if\nyour type is significantly different on different architectures, you may need\nsome `#if/#elif` macros in your include statements.\n\n### mkerrors.sh\n\nThis script is used to generate the system's various constants. This doesn't\njust include the error numbers and error strings, but also the signal numbers\nan a wide variety of miscellaneous constants. The constants come from the list\nof include files in the `includes_${uname}` variable. A regex then picks out\nthe desired `#define` statements, and generates the corresponding Go constants.\nThe error numbers and strings are generated from `#include <errno.h>`, and the\nsignal numbers and strings are generated from `#include <signal.h>`. All of\nthese constants are written to `zerrors_${GOOS}_${GOARCH}.go` via a C program,\n`_errors.c`, which prints out all the constants.\n\nTo add a constant, add the header that includes it to the appropriate variable.\nThen, edit the regex (if necessary) to match the desired constant. Avoid making\nthe regex too broad to avoid matching unintended constants.\n\n### mkmerge.go\n\nThis program is used to extract duplicate const, func, and type declarations\nfrom the generated architecture-specific files listed below, and merge these\ninto a common file for each OS.\n\nThe merge is performed in the following steps:\n1. Construct the set of common code that is idential in all architecture-specific files.\n2. Write this common code to the merged file.\n3. Remove the common code from all architecture-specific files.\n\n\n## Generated files\n\n### `zerrors_${GOOS}_${GOARCH}.go`\n\nA file containing all of the system's generated error numbers, error strings,\nsignal numbers, and constants. Generated by `mkerrors.sh` (see above).\n\n### `zsyscall_${GOOS}_${GOARCH}.go`\n\nA file containing all the generated syscalls for a specific GOOS and GOARCH.\nGenerated by `mksyscall.go` (see above).\n\n### `zsysnum_${GOOS}_${GOARCH}.go`\n\nA list of numeric constants for all the syscall number of the specific GOOS\nand GOARCH. Generated by mksysnum (see above).\n\n### `ztypes_${GOOS}_${GOARCH}.go`\n\nA file containing Go types for passing into (or returning from) syscalls.\nGenerated by godefs and the types file (see above).\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/affinity_linux.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// CPU affinity functions\n\npackage unix\n\nimport (\n\t\"math/bits\"\n\t\"unsafe\"\n)\n\nconst cpuSetSize = _CPU_SETSIZE / _NCPUBITS\n\n// CPUSet represents a CPU affinity mask.\ntype CPUSet [cpuSetSize]cpuMask\n\nfunc schedAffinity(trap uintptr, pid int, set *CPUSet) error {\n\t_, _, e := RawSyscall(trap, uintptr(pid), uintptr(unsafe.Sizeof(*set)), uintptr(unsafe.Pointer(set)))\n\tif e != 0 {\n\t\treturn errnoErr(e)\n\t}\n\treturn nil\n}\n\n// SchedGetaffinity gets the CPU affinity mask of the thread specified by pid.\n// If pid is 0 the calling thread is used.\nfunc SchedGetaffinity(pid int, set *CPUSet) error {\n\treturn schedAffinity(SYS_SCHED_GETAFFINITY, pid, set)\n}\n\n// SchedSetaffinity sets the CPU affinity mask of the thread specified by pid.\n// If pid is 0 the calling thread is used.\nfunc SchedSetaffinity(pid int, set *CPUSet) error {\n\treturn schedAffinity(SYS_SCHED_SETAFFINITY, pid, set)\n}\n\n// Zero clears the set s, so that it contains no CPUs.\nfunc (s *CPUSet) Zero() {\n\tfor i := range s {\n\t\ts[i] = 0\n\t}\n}\n\nfunc cpuBitsIndex(cpu int) int {\n\treturn cpu / _NCPUBITS\n}\n\nfunc cpuBitsMask(cpu int) cpuMask {\n\treturn cpuMask(1 << (uint(cpu) % _NCPUBITS))\n}\n\n// Set adds cpu to the set s.\nfunc (s *CPUSet) Set(cpu int) {\n\ti := cpuBitsIndex(cpu)\n\tif i < len(s) {\n\t\ts[i] |= cpuBitsMask(cpu)\n\t}\n}\n\n// Clear removes cpu from the set s.\nfunc (s *CPUSet) Clear(cpu int) {\n\ti := cpuBitsIndex(cpu)\n\tif i < len(s) {\n\t\ts[i] &^= cpuBitsMask(cpu)\n\t}\n}\n\n// IsSet reports whether cpu is in the set s.\nfunc (s *CPUSet) IsSet(cpu int) bool {\n\ti := cpuBitsIndex(cpu)\n\tif i < len(s) {\n\t\treturn s[i]&cpuBitsMask(cpu) != 0\n\t}\n\treturn false\n}\n\n// Count returns the number of CPUs in the set s.\nfunc (s *CPUSet) Count() int {\n\tc := 0\n\tfor _, b := range s {\n\t\tc += bits.OnesCount64(uint64(b))\n\t}\n\treturn c\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/aliases.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n// +build go1.9\n\npackage unix\n\nimport \"syscall\"\n\ntype Signal = syscall.Signal\ntype Errno = syscall.Errno\ntype SysProcAttr = syscall.SysProcAttr\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_aix_ppc64.s",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for ppc64, AIX are implemented in runtime/syscall_aix.go\n//\n\nTEXT ·syscall6(SB),NOSPLIT,$0-88\n\tJMP\tsyscall·syscall6(SB)\n\nTEXT ·rawSyscall6(SB),NOSPLIT,$0-88\n\tJMP\tsyscall·rawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_darwin_386.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for 386, Darwin\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-52\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_darwin_amd64.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for AMD64, Darwin\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_darwin_arm.s",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n// +build arm,darwin\n\n#include \"textflag.h\"\n\n//\n// System call support for ARM, Darwin\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-52\n\tB\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_darwin_arm64.s",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n// +build arm64,darwin\n\n#include \"textflag.h\"\n\n//\n// System call support for AMD64, Darwin\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tB\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tB\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tB\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-56\n\tB\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tB\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for AMD64, DragonFly\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_freebsd_386.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for 386, FreeBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-52\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for AMD64, FreeBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_freebsd_arm.s",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for ARM, FreeBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-52\n\tB\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for ARM64, FreeBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_linux_386.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for 386, Linux\n//\n\n// See ../runtime/sys_linux_386.s for the reason why we always use int 0x80\n// instead of the glibc-specific \"CALL 0x10(GS)\".\n#define INVOKE_SYSCALL\tINT\t$0x80\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT ·Syscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT ·Syscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT ·SyscallNoError(SB),NOSPLIT,$0-24\n\tCALL\truntime·entersyscall(SB)\n\tMOVL\ttrap+0(FP), AX  // syscall entry\n\tMOVL\ta1+4(FP), BX\n\tMOVL\ta2+8(FP), CX\n\tMOVL\ta3+12(FP), DX\n\tMOVL\t$0, SI\n\tMOVL\t$0, DI\n\tINVOKE_SYSCALL\n\tMOVL\tAX, r1+16(FP)\n\tMOVL\tDX, r2+20(FP)\n\tCALL\truntime·exitsyscall(SB)\n\tRET\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT ·RawSyscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·RawSyscall6(SB)\n\nTEXT ·RawSyscallNoError(SB),NOSPLIT,$0-24\n\tMOVL\ttrap+0(FP), AX  // syscall entry\n\tMOVL\ta1+4(FP), BX\n\tMOVL\ta2+8(FP), CX\n\tMOVL\ta3+12(FP), DX\n\tMOVL\t$0, SI\n\tMOVL\t$0, DI\n\tINVOKE_SYSCALL\n\tMOVL\tAX, r1+16(FP)\n\tMOVL\tDX, r2+20(FP)\n\tRET\n\nTEXT ·socketcall(SB),NOSPLIT,$0-36\n\tJMP\tsyscall·socketcall(SB)\n\nTEXT ·rawsocketcall(SB),NOSPLIT,$0-36\n\tJMP\tsyscall·rawsocketcall(SB)\n\nTEXT ·seek(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·seek(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_linux_amd64.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for AMD64, Linux\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT ·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT ·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT ·SyscallNoError(SB),NOSPLIT,$0-48\n\tCALL\truntime·entersyscall(SB)\n\tMOVQ\ta1+8(FP), DI\n\tMOVQ\ta2+16(FP), SI\n\tMOVQ\ta3+24(FP), DX\n\tMOVQ\t$0, R10\n\tMOVQ\t$0, R8\n\tMOVQ\t$0, R9\n\tMOVQ\ttrap+0(FP), AX\t// syscall entry\n\tSYSCALL\n\tMOVQ\tAX, r1+32(FP)\n\tMOVQ\tDX, r2+40(FP)\n\tCALL\truntime·exitsyscall(SB)\n\tRET\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT ·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n\nTEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48\n\tMOVQ\ta1+8(FP), DI\n\tMOVQ\ta2+16(FP), SI\n\tMOVQ\ta3+24(FP), DX\n\tMOVQ\t$0, R10\n\tMOVQ\t$0, R8\n\tMOVQ\t$0, R9\n\tMOVQ\ttrap+0(FP), AX\t// syscall entry\n\tSYSCALL\n\tMOVQ\tAX, r1+32(FP)\n\tMOVQ\tDX, r2+40(FP)\n\tRET\n\nTEXT ·gettimeofday(SB),NOSPLIT,$0-16\n\tJMP\tsyscall·gettimeofday(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_linux_arm.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for arm, Linux\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT ·Syscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·Syscall(SB)\n\nTEXT ·Syscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·Syscall6(SB)\n\nTEXT ·SyscallNoError(SB),NOSPLIT,$0-24\n\tBL\truntime·entersyscall(SB)\n\tMOVW\ttrap+0(FP), R7\n\tMOVW\ta1+4(FP), R0\n\tMOVW\ta2+8(FP), R1\n\tMOVW\ta3+12(FP), R2\n\tMOVW\t$0, R3\n\tMOVW\t$0, R4\n\tMOVW\t$0, R5\n\tSWI\t$0\n\tMOVW\tR0, r1+16(FP)\n\tMOVW\t$0, R0\n\tMOVW\tR0, r2+20(FP)\n\tBL\truntime·exitsyscall(SB)\n\tRET\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·RawSyscall(SB)\n\nTEXT ·RawSyscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·RawSyscall6(SB)\n\nTEXT ·RawSyscallNoError(SB),NOSPLIT,$0-24\n\tMOVW\ttrap+0(FP), R7\t// syscall entry\n\tMOVW\ta1+4(FP), R0\n\tMOVW\ta2+8(FP), R1\n\tMOVW\ta3+12(FP), R2\n\tSWI\t$0\n\tMOVW\tR0, r1+16(FP)\n\tMOVW\t$0, R0\n\tMOVW\tR0, r2+20(FP)\n\tRET\n\nTEXT ·seek(SB),NOSPLIT,$0-28\n\tB\tsyscall·seek(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_linux_arm64.s",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n// +build arm64\n// +build !gccgo\n\n#include \"textflag.h\"\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT ·Syscall(SB),NOSPLIT,$0-56\n\tB\tsyscall·Syscall(SB)\n\nTEXT ·Syscall6(SB),NOSPLIT,$0-80\n\tB\tsyscall·Syscall6(SB)\n\nTEXT ·SyscallNoError(SB),NOSPLIT,$0-48\n\tBL\truntime·entersyscall(SB)\n\tMOVD\ta1+8(FP), R0\n\tMOVD\ta2+16(FP), R1\n\tMOVD\ta3+24(FP), R2\n\tMOVD\t$0, R3\n\tMOVD\t$0, R4\n\tMOVD\t$0, R5\n\tMOVD\ttrap+0(FP), R8\t// syscall entry\n\tSVC\n\tMOVD\tR0, r1+32(FP)\t// r1\n\tMOVD\tR1, r2+40(FP)\t// r2\n\tBL\truntime·exitsyscall(SB)\n\tRET\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-56\n\tB\tsyscall·RawSyscall(SB)\n\nTEXT ·RawSyscall6(SB),NOSPLIT,$0-80\n\tB\tsyscall·RawSyscall6(SB)\n\nTEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48\n\tMOVD\ta1+8(FP), R0\n\tMOVD\ta2+16(FP), R1\n\tMOVD\ta3+24(FP), R2\n\tMOVD\t$0, R3\n\tMOVD\t$0, R4\n\tMOVD\t$0, R5\n\tMOVD\ttrap+0(FP), R8\t// syscall entry\n\tSVC\n\tMOVD\tR0, r1+32(FP)\n\tMOVD\tR1, r2+40(FP)\n\tRET\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_linux_mips64x.s",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n// +build mips64 mips64le\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for mips64, Linux\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT ·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT ·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT ·SyscallNoError(SB),NOSPLIT,$0-48\n\tJAL\truntime·entersyscall(SB)\n\tMOVV\ta1+8(FP), R4\n\tMOVV\ta2+16(FP), R5\n\tMOVV\ta3+24(FP), R6\n\tMOVV\tR0, R7\n\tMOVV\tR0, R8\n\tMOVV\tR0, R9\n\tMOVV\ttrap+0(FP), R2\t// syscall entry\n\tSYSCALL\n\tMOVV\tR2, r1+32(FP)\n\tMOVV\tR3, r2+40(FP)\n\tJAL\truntime·exitsyscall(SB)\n\tRET\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT ·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n\nTEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48\n\tMOVV\ta1+8(FP), R4\n\tMOVV\ta2+16(FP), R5\n\tMOVV\ta3+24(FP), R6\n\tMOVV\tR0, R7\n\tMOVV\tR0, R8\n\tMOVV\tR0, R9\n\tMOVV\ttrap+0(FP), R2\t// syscall entry\n\tSYSCALL\n\tMOVV\tR2, r1+32(FP)\n\tMOVV\tR3, r2+40(FP)\n\tRET\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_linux_mipsx.s",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n// +build mips mipsle\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for mips, Linux\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT ·Syscall(SB),NOSPLIT,$0-28\n\tJMP syscall·Syscall(SB)\n\nTEXT ·Syscall6(SB),NOSPLIT,$0-40\n\tJMP syscall·Syscall6(SB)\n\nTEXT ·Syscall9(SB),NOSPLIT,$0-52\n\tJMP syscall·Syscall9(SB)\n\nTEXT ·SyscallNoError(SB),NOSPLIT,$0-24\n\tJAL\truntime·entersyscall(SB)\n\tMOVW\ta1+4(FP), R4\n\tMOVW\ta2+8(FP), R5\n\tMOVW\ta3+12(FP), R6\n\tMOVW\tR0, R7\n\tMOVW\ttrap+0(FP), R2\t// syscall entry\n\tSYSCALL\n\tMOVW\tR2, r1+16(FP)\t// r1\n\tMOVW\tR3, r2+20(FP)\t// r2\n\tJAL\truntime·exitsyscall(SB)\n\tRET\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-28\n\tJMP syscall·RawSyscall(SB)\n\nTEXT ·RawSyscall6(SB),NOSPLIT,$0-40\n\tJMP syscall·RawSyscall6(SB)\n\nTEXT ·RawSyscallNoError(SB),NOSPLIT,$0-24\n\tMOVW\ta1+4(FP), R4\n\tMOVW\ta2+8(FP), R5\n\tMOVW\ta3+12(FP), R6\n\tMOVW\ttrap+0(FP), R2\t// syscall entry\n\tSYSCALL\n\tMOVW\tR2, r1+16(FP)\n\tMOVW\tR3, r2+20(FP)\n\tRET\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s",
    "content": "// Copyright 2014 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n// +build ppc64 ppc64le\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for ppc64, Linux\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT ·SyscallNoError(SB),NOSPLIT,$0-48\n\tBL\truntime·entersyscall(SB)\n\tMOVD\ta1+8(FP), R3\n\tMOVD\ta2+16(FP), R4\n\tMOVD\ta3+24(FP), R5\n\tMOVD\tR0, R6\n\tMOVD\tR0, R7\n\tMOVD\tR0, R8\n\tMOVD\ttrap+0(FP), R9\t// syscall entry\n\tSYSCALL R9\n\tMOVD\tR3, r1+32(FP)\n\tMOVD\tR4, r2+40(FP)\n\tBL\truntime·exitsyscall(SB)\n\tRET\n\nTEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48\n\tMOVD\ta1+8(FP), R3\n\tMOVD\ta2+16(FP), R4\n\tMOVD\ta3+24(FP), R5\n\tMOVD\tR0, R6\n\tMOVD\tR0, R7\n\tMOVD\tR0, R8\n\tMOVD\ttrap+0(FP), R9\t// syscall entry\n\tSYSCALL R9\n\tMOVD\tR3, r1+32(FP)\n\tMOVD\tR4, r2+40(FP)\n\tRET\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_linux_riscv64.s",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build riscv64,!gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for linux/riscv64.\n//\n// Where available, just jump to package syscall's implementation of\n// these functions.\n\nTEXT ·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT ·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT ·SyscallNoError(SB),NOSPLIT,$0-48\n\tCALL\truntime·entersyscall(SB)\n\tMOV\ta1+8(FP), A0\n\tMOV\ta2+16(FP), A1\n\tMOV\ta3+24(FP), A2\n\tMOV\ttrap+0(FP), A7\t// syscall entry\n\tECALL\n\tMOV\tA0, r1+32(FP)\t// r1\n\tMOV\tA1, r2+40(FP)\t// r2\n\tCALL\truntime·exitsyscall(SB)\n\tRET\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT ·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n\nTEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48\n\tMOV\ta1+8(FP), A0\n\tMOV\ta2+16(FP), A1\n\tMOV\ta3+24(FP), A2\n\tMOV\ttrap+0(FP), A7\t// syscall entry\n\tECALL\n\tMOV\tA0, r1+32(FP)\n\tMOV\tA1, r2+40(FP)\n\tRET\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_linux_s390x.s",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build s390x\n// +build linux\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for s390x, Linux\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT ·Syscall(SB),NOSPLIT,$0-56\n\tBR\tsyscall·Syscall(SB)\n\nTEXT ·Syscall6(SB),NOSPLIT,$0-80\n\tBR\tsyscall·Syscall6(SB)\n\nTEXT ·SyscallNoError(SB),NOSPLIT,$0-48\n\tBL\truntime·entersyscall(SB)\n\tMOVD\ta1+8(FP), R2\n\tMOVD\ta2+16(FP), R3\n\tMOVD\ta3+24(FP), R4\n\tMOVD\t$0, R5\n\tMOVD\t$0, R6\n\tMOVD\t$0, R7\n\tMOVD\ttrap+0(FP), R1\t// syscall entry\n\tSYSCALL\n\tMOVD\tR2, r1+32(FP)\n\tMOVD\tR3, r2+40(FP)\n\tBL\truntime·exitsyscall(SB)\n\tRET\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-56\n\tBR\tsyscall·RawSyscall(SB)\n\nTEXT ·RawSyscall6(SB),NOSPLIT,$0-80\n\tBR\tsyscall·RawSyscall6(SB)\n\nTEXT ·RawSyscallNoError(SB),NOSPLIT,$0-48\n\tMOVD\ta1+8(FP), R2\n\tMOVD\ta2+16(FP), R3\n\tMOVD\ta3+24(FP), R4\n\tMOVD\t$0, R5\n\tMOVD\t$0, R6\n\tMOVD\t$0, R7\n\tMOVD\ttrap+0(FP), R1\t// syscall entry\n\tSYSCALL\n\tMOVD\tR2, r1+32(FP)\n\tMOVD\tR3, r2+40(FP)\n\tRET\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_netbsd_386.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for 386, NetBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-52\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for AMD64, NetBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_netbsd_arm.s",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for ARM, NetBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-52\n\tB\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for ARM64, NetBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tB\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tB\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tB\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-56\n\tB\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tB\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_openbsd_386.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for 386, OpenBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-52\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT ·RawSyscall(SB),NOSPLIT,$0-28\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-40\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for AMD64, OpenBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_openbsd_arm.s",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for ARM, OpenBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-52\n\tB\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-28\n\tB\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-40\n\tB\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for arm64, OpenBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System call support for mips64, OpenBSD\n//\n\n// Just jump to package syscall's implementation for all these functions.\n// The runtime may know about them.\n\nTEXT\t·Syscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·Syscall(SB)\n\nTEXT\t·Syscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·Syscall6(SB)\n\nTEXT\t·Syscall9(SB),NOSPLIT,$0-104\n\tJMP\tsyscall·Syscall9(SB)\n\nTEXT\t·RawSyscall(SB),NOSPLIT,$0-56\n\tJMP\tsyscall·RawSyscall(SB)\n\nTEXT\t·RawSyscall6(SB),NOSPLIT,$0-80\n\tJMP\tsyscall·RawSyscall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/asm_solaris_amd64.s",
    "content": "// Copyright 2014 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !gccgo\n\n#include \"textflag.h\"\n\n//\n// System calls for amd64, Solaris are implemented in runtime/syscall_solaris.go\n//\n\nTEXT ·sysvicall6(SB),NOSPLIT,$0-88\n\tJMP\tsyscall·sysvicall6(SB)\n\nTEXT ·rawSysvicall6(SB),NOSPLIT,$0-88\n\tJMP\tsyscall·rawSysvicall6(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/bluetooth_linux.go",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Bluetooth sockets and messages\n\npackage unix\n\n// Bluetooth Protocols\nconst (\n\tBTPROTO_L2CAP  = 0\n\tBTPROTO_HCI    = 1\n\tBTPROTO_SCO    = 2\n\tBTPROTO_RFCOMM = 3\n\tBTPROTO_BNEP   = 4\n\tBTPROTO_CMTP   = 5\n\tBTPROTO_HIDP   = 6\n\tBTPROTO_AVDTP  = 7\n)\n\nconst (\n\tHCI_CHANNEL_RAW     = 0\n\tHCI_CHANNEL_USER    = 1\n\tHCI_CHANNEL_MONITOR = 2\n\tHCI_CHANNEL_CONTROL = 3\n\tHCI_CHANNEL_LOGGING = 4\n)\n\n// Socketoption Level\nconst (\n\tSOL_BLUETOOTH = 0x112\n\tSOL_HCI       = 0x0\n\tSOL_L2CAP     = 0x6\n\tSOL_RFCOMM    = 0x12\n\tSOL_SCO       = 0x11\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/cap_freebsd.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build freebsd\n\npackage unix\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n)\n\n// Go implementation of C mostly found in /usr/src/sys/kern/subr_capability.c\n\nconst (\n\t// This is the version of CapRights this package understands. See C implementation for parallels.\n\tcapRightsGoVersion = CAP_RIGHTS_VERSION_00\n\tcapArSizeMin       = CAP_RIGHTS_VERSION_00 + 2\n\tcapArSizeMax       = capRightsGoVersion + 2\n)\n\nvar (\n\tbit2idx = []int{\n\t\t-1, 0, 1, -1, 2, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, -1,\n\t\t4, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,\n\t}\n)\n\nfunc capidxbit(right uint64) int {\n\treturn int((right >> 57) & 0x1f)\n}\n\nfunc rightToIndex(right uint64) (int, error) {\n\tidx := capidxbit(right)\n\tif idx < 0 || idx >= len(bit2idx) {\n\t\treturn -2, fmt.Errorf(\"index for right 0x%x out of range\", right)\n\t}\n\treturn bit2idx[idx], nil\n}\n\nfunc caprver(right uint64) int {\n\treturn int(right >> 62)\n}\n\nfunc capver(rights *CapRights) int {\n\treturn caprver(rights.Rights[0])\n}\n\nfunc caparsize(rights *CapRights) int {\n\treturn capver(rights) + 2\n}\n\n// CapRightsSet sets the permissions in setrights in rights.\nfunc CapRightsSet(rights *CapRights, setrights []uint64) error {\n\t// This is essentially a copy of cap_rights_vset()\n\tif capver(rights) != CAP_RIGHTS_VERSION_00 {\n\t\treturn fmt.Errorf(\"bad rights version %d\", capver(rights))\n\t}\n\n\tn := caparsize(rights)\n\tif n < capArSizeMin || n > capArSizeMax {\n\t\treturn errors.New(\"bad rights size\")\n\t}\n\n\tfor _, right := range setrights {\n\t\tif caprver(right) != CAP_RIGHTS_VERSION_00 {\n\t\t\treturn errors.New(\"bad right version\")\n\t\t}\n\t\ti, err := rightToIndex(right)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif i >= n {\n\t\t\treturn errors.New(\"index overflow\")\n\t\t}\n\t\tif capidxbit(rights.Rights[i]) != capidxbit(right) {\n\t\t\treturn errors.New(\"index mismatch\")\n\t\t}\n\t\trights.Rights[i] |= right\n\t\tif capidxbit(rights.Rights[i]) != capidxbit(right) {\n\t\t\treturn errors.New(\"index mismatch (after assign)\")\n\t\t}\n\t}\n\n\treturn nil\n}\n\n// CapRightsClear clears the permissions in clearrights from rights.\nfunc CapRightsClear(rights *CapRights, clearrights []uint64) error {\n\t// This is essentially a copy of cap_rights_vclear()\n\tif capver(rights) != CAP_RIGHTS_VERSION_00 {\n\t\treturn fmt.Errorf(\"bad rights version %d\", capver(rights))\n\t}\n\n\tn := caparsize(rights)\n\tif n < capArSizeMin || n > capArSizeMax {\n\t\treturn errors.New(\"bad rights size\")\n\t}\n\n\tfor _, right := range clearrights {\n\t\tif caprver(right) != CAP_RIGHTS_VERSION_00 {\n\t\t\treturn errors.New(\"bad right version\")\n\t\t}\n\t\ti, err := rightToIndex(right)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif i >= n {\n\t\t\treturn errors.New(\"index overflow\")\n\t\t}\n\t\tif capidxbit(rights.Rights[i]) != capidxbit(right) {\n\t\t\treturn errors.New(\"index mismatch\")\n\t\t}\n\t\trights.Rights[i] &= ^(right & 0x01FFFFFFFFFFFFFF)\n\t\tif capidxbit(rights.Rights[i]) != capidxbit(right) {\n\t\t\treturn errors.New(\"index mismatch (after assign)\")\n\t\t}\n\t}\n\n\treturn nil\n}\n\n// CapRightsIsSet checks whether all the permissions in setrights are present in rights.\nfunc CapRightsIsSet(rights *CapRights, setrights []uint64) (bool, error) {\n\t// This is essentially a copy of cap_rights_is_vset()\n\tif capver(rights) != CAP_RIGHTS_VERSION_00 {\n\t\treturn false, fmt.Errorf(\"bad rights version %d\", capver(rights))\n\t}\n\n\tn := caparsize(rights)\n\tif n < capArSizeMin || n > capArSizeMax {\n\t\treturn false, errors.New(\"bad rights size\")\n\t}\n\n\tfor _, right := range setrights {\n\t\tif caprver(right) != CAP_RIGHTS_VERSION_00 {\n\t\t\treturn false, errors.New(\"bad right version\")\n\t\t}\n\t\ti, err := rightToIndex(right)\n\t\tif err != nil {\n\t\t\treturn false, err\n\t\t}\n\t\tif i >= n {\n\t\t\treturn false, errors.New(\"index overflow\")\n\t\t}\n\t\tif capidxbit(rights.Rights[i]) != capidxbit(right) {\n\t\t\treturn false, errors.New(\"index mismatch\")\n\t\t}\n\t\tif (rights.Rights[i] & right) != right {\n\t\t\treturn false, nil\n\t\t}\n\t}\n\n\treturn true, nil\n}\n\nfunc capright(idx uint64, bit uint64) uint64 {\n\treturn ((1 << (57 + idx)) | bit)\n}\n\n// CapRightsInit returns a pointer to an initialised CapRights structure filled with rights.\n// See man cap_rights_init(3) and rights(4).\nfunc CapRightsInit(rights []uint64) (*CapRights, error) {\n\tvar r CapRights\n\tr.Rights[0] = (capRightsGoVersion << 62) | capright(0, 0)\n\tr.Rights[1] = capright(1, 0)\n\n\terr := CapRightsSet(&r, rights)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &r, nil\n}\n\n// CapRightsLimit reduces the operations permitted on fd to at most those contained in rights.\n// The capability rights on fd can never be increased by CapRightsLimit.\n// See man cap_rights_limit(2) and rights(4).\nfunc CapRightsLimit(fd uintptr, rights *CapRights) error {\n\treturn capRightsLimit(int(fd), rights)\n}\n\n// CapRightsGet returns a CapRights structure containing the operations permitted on fd.\n// See man cap_rights_get(3) and rights(4).\nfunc CapRightsGet(fd uintptr) (*CapRights, error) {\n\tr, err := CapRightsInit(nil)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\terr = capRightsGet(capRightsGoVersion, int(fd), r)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn r, nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/constants.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\npackage unix\n\nconst (\n\tR_OK = 0x4\n\tW_OK = 0x2\n\tX_OK = 0x1\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/dev_aix_ppc.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix\n// +build ppc\n\n// Functions to access/create device major and minor numbers matching the\n// encoding used by AIX.\n\npackage unix\n\n// Major returns the major component of a Linux device number.\nfunc Major(dev uint64) uint32 {\n\treturn uint32((dev >> 16) & 0xffff)\n}\n\n// Minor returns the minor component of a Linux device number.\nfunc Minor(dev uint64) uint32 {\n\treturn uint32(dev & 0xffff)\n}\n\n// Mkdev returns a Linux device number generated from the given major and minor\n// components.\nfunc Mkdev(major, minor uint32) uint64 {\n\treturn uint64(((major) << 16) | (minor))\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/dev_aix_ppc64.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix\n// +build ppc64\n\n// Functions to access/create device major and minor numbers matching the\n// encoding used AIX.\n\npackage unix\n\n// Major returns the major component of a Linux device number.\nfunc Major(dev uint64) uint32 {\n\treturn uint32((dev & 0x3fffffff00000000) >> 32)\n}\n\n// Minor returns the minor component of a Linux device number.\nfunc Minor(dev uint64) uint32 {\n\treturn uint32((dev & 0x00000000ffffffff) >> 0)\n}\n\n// Mkdev returns a Linux device number generated from the given major and minor\n// components.\nfunc Mkdev(major, minor uint32) uint64 {\n\tvar DEVNO64 uint64\n\tDEVNO64 = 0x8000000000000000\n\treturn ((uint64(major) << 32) | (uint64(minor) & 0x00000000FFFFFFFF) | DEVNO64)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/dev_darwin.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Functions to access/create device major and minor numbers matching the\n// encoding used in Darwin's sys/types.h header.\n\npackage unix\n\n// Major returns the major component of a Darwin device number.\nfunc Major(dev uint64) uint32 {\n\treturn uint32((dev >> 24) & 0xff)\n}\n\n// Minor returns the minor component of a Darwin device number.\nfunc Minor(dev uint64) uint32 {\n\treturn uint32(dev & 0xffffff)\n}\n\n// Mkdev returns a Darwin device number generated from the given major and minor\n// components.\nfunc Mkdev(major, minor uint32) uint64 {\n\treturn (uint64(major) << 24) | uint64(minor)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/dev_dragonfly.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Functions to access/create device major and minor numbers matching the\n// encoding used in Dragonfly's sys/types.h header.\n//\n// The information below is extracted and adapted from sys/types.h:\n//\n// Minor gives a cookie instead of an index since in order to avoid changing the\n// meanings of bits 0-15 or wasting time and space shifting bits 16-31 for\n// devices that don't use them.\n\npackage unix\n\n// Major returns the major component of a DragonFlyBSD device number.\nfunc Major(dev uint64) uint32 {\n\treturn uint32((dev >> 8) & 0xff)\n}\n\n// Minor returns the minor component of a DragonFlyBSD device number.\nfunc Minor(dev uint64) uint32 {\n\treturn uint32(dev & 0xffff00ff)\n}\n\n// Mkdev returns a DragonFlyBSD device number generated from the given major and\n// minor components.\nfunc Mkdev(major, minor uint32) uint64 {\n\treturn (uint64(major) << 8) | uint64(minor)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/dev_freebsd.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Functions to access/create device major and minor numbers matching the\n// encoding used in FreeBSD's sys/types.h header.\n//\n// The information below is extracted and adapted from sys/types.h:\n//\n// Minor gives a cookie instead of an index since in order to avoid changing the\n// meanings of bits 0-15 or wasting time and space shifting bits 16-31 for\n// devices that don't use them.\n\npackage unix\n\n// Major returns the major component of a FreeBSD device number.\nfunc Major(dev uint64) uint32 {\n\treturn uint32((dev >> 8) & 0xff)\n}\n\n// Minor returns the minor component of a FreeBSD device number.\nfunc Minor(dev uint64) uint32 {\n\treturn uint32(dev & 0xffff00ff)\n}\n\n// Mkdev returns a FreeBSD device number generated from the given major and\n// minor components.\nfunc Mkdev(major, minor uint32) uint64 {\n\treturn (uint64(major) << 8) | uint64(minor)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/dev_linux.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Functions to access/create device major and minor numbers matching the\n// encoding used by the Linux kernel and glibc.\n//\n// The information below is extracted and adapted from bits/sysmacros.h in the\n// glibc sources:\n//\n// dev_t in glibc is 64-bit, with 32-bit major and minor numbers. glibc's\n// default encoding is MMMM Mmmm mmmM MMmm, where M is a hex digit of the major\n// number and m is a hex digit of the minor number. This is backward compatible\n// with legacy systems where dev_t is 16 bits wide, encoded as MMmm. It is also\n// backward compatible with the Linux kernel, which for some architectures uses\n// 32-bit dev_t, encoded as mmmM MMmm.\n\npackage unix\n\n// Major returns the major component of a Linux device number.\nfunc Major(dev uint64) uint32 {\n\tmajor := uint32((dev & 0x00000000000fff00) >> 8)\n\tmajor |= uint32((dev & 0xfffff00000000000) >> 32)\n\treturn major\n}\n\n// Minor returns the minor component of a Linux device number.\nfunc Minor(dev uint64) uint32 {\n\tminor := uint32((dev & 0x00000000000000ff) >> 0)\n\tminor |= uint32((dev & 0x00000ffffff00000) >> 12)\n\treturn minor\n}\n\n// Mkdev returns a Linux device number generated from the given major and minor\n// components.\nfunc Mkdev(major, minor uint32) uint64 {\n\tdev := (uint64(major) & 0x00000fff) << 8\n\tdev |= (uint64(major) & 0xfffff000) << 32\n\tdev |= (uint64(minor) & 0x000000ff) << 0\n\tdev |= (uint64(minor) & 0xffffff00) << 12\n\treturn dev\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/dev_netbsd.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Functions to access/create device major and minor numbers matching the\n// encoding used in NetBSD's sys/types.h header.\n\npackage unix\n\n// Major returns the major component of a NetBSD device number.\nfunc Major(dev uint64) uint32 {\n\treturn uint32((dev & 0x000fff00) >> 8)\n}\n\n// Minor returns the minor component of a NetBSD device number.\nfunc Minor(dev uint64) uint32 {\n\tminor := uint32((dev & 0x000000ff) >> 0)\n\tminor |= uint32((dev & 0xfff00000) >> 12)\n\treturn minor\n}\n\n// Mkdev returns a NetBSD device number generated from the given major and minor\n// components.\nfunc Mkdev(major, minor uint32) uint64 {\n\tdev := (uint64(major) << 8) & 0x000fff00\n\tdev |= (uint64(minor) << 12) & 0xfff00000\n\tdev |= (uint64(minor) << 0) & 0x000000ff\n\treturn dev\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/dev_openbsd.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Functions to access/create device major and minor numbers matching the\n// encoding used in OpenBSD's sys/types.h header.\n\npackage unix\n\n// Major returns the major component of an OpenBSD device number.\nfunc Major(dev uint64) uint32 {\n\treturn uint32((dev & 0x0000ff00) >> 8)\n}\n\n// Minor returns the minor component of an OpenBSD device number.\nfunc Minor(dev uint64) uint32 {\n\tminor := uint32((dev & 0x000000ff) >> 0)\n\tminor |= uint32((dev & 0xffff0000) >> 8)\n\treturn minor\n}\n\n// Mkdev returns an OpenBSD device number generated from the given major and minor\n// components.\nfunc Mkdev(major, minor uint32) uint64 {\n\tdev := (uint64(major) << 8) & 0x0000ff00\n\tdev |= (uint64(minor) << 8) & 0xffff0000\n\tdev |= (uint64(minor) << 0) & 0x000000ff\n\treturn dev\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/dirent.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\npackage unix\n\nimport \"unsafe\"\n\n// readInt returns the size-bytes unsigned integer in native byte order at offset off.\nfunc readInt(b []byte, off, size uintptr) (u uint64, ok bool) {\n\tif len(b) < int(off+size) {\n\t\treturn 0, false\n\t}\n\tif isBigEndian {\n\t\treturn readIntBE(b[off:], size), true\n\t}\n\treturn readIntLE(b[off:], size), true\n}\n\nfunc readIntBE(b []byte, size uintptr) uint64 {\n\tswitch size {\n\tcase 1:\n\t\treturn uint64(b[0])\n\tcase 2:\n\t\t_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808\n\t\treturn uint64(b[1]) | uint64(b[0])<<8\n\tcase 4:\n\t\t_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808\n\t\treturn uint64(b[3]) | uint64(b[2])<<8 | uint64(b[1])<<16 | uint64(b[0])<<24\n\tcase 8:\n\t\t_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808\n\t\treturn uint64(b[7]) | uint64(b[6])<<8 | uint64(b[5])<<16 | uint64(b[4])<<24 |\n\t\t\tuint64(b[3])<<32 | uint64(b[2])<<40 | uint64(b[1])<<48 | uint64(b[0])<<56\n\tdefault:\n\t\tpanic(\"syscall: readInt with unsupported size\")\n\t}\n}\n\nfunc readIntLE(b []byte, size uintptr) uint64 {\n\tswitch size {\n\tcase 1:\n\t\treturn uint64(b[0])\n\tcase 2:\n\t\t_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808\n\t\treturn uint64(b[0]) | uint64(b[1])<<8\n\tcase 4:\n\t\t_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808\n\t\treturn uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24\n\tcase 8:\n\t\t_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808\n\t\treturn uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |\n\t\t\tuint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56\n\tdefault:\n\t\tpanic(\"syscall: readInt with unsupported size\")\n\t}\n}\n\n// ParseDirent parses up to max directory entries in buf,\n// appending the names to names. It returns the number of\n// bytes consumed from buf, the number of entries added\n// to names, and the new names slice.\nfunc ParseDirent(buf []byte, max int, names []string) (consumed int, count int, newnames []string) {\n\toriglen := len(buf)\n\tcount = 0\n\tfor max != 0 && len(buf) > 0 {\n\t\treclen, ok := direntReclen(buf)\n\t\tif !ok || reclen > uint64(len(buf)) {\n\t\t\treturn origlen, count, names\n\t\t}\n\t\trec := buf[:reclen]\n\t\tbuf = buf[reclen:]\n\t\tino, ok := direntIno(rec)\n\t\tif !ok {\n\t\t\tbreak\n\t\t}\n\t\tif ino == 0 { // File absent in directory.\n\t\t\tcontinue\n\t\t}\n\t\tconst namoff = uint64(unsafe.Offsetof(Dirent{}.Name))\n\t\tnamlen, ok := direntNamlen(rec)\n\t\tif !ok || namoff+namlen > uint64(len(rec)) {\n\t\t\tbreak\n\t\t}\n\t\tname := rec[namoff : namoff+namlen]\n\t\tfor i, c := range name {\n\t\t\tif c == 0 {\n\t\t\t\tname = name[:i]\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\t// Check for useless names before allocating a string.\n\t\tif string(name) == \".\" || string(name) == \"..\" {\n\t\t\tcontinue\n\t\t}\n\t\tmax--\n\t\tcount++\n\t\tnames = append(names, string(name))\n\t}\n\treturn origlen - len(buf), count, names\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/endian_big.go",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n//\n// +build ppc64 s390x mips mips64\n\npackage unix\n\nconst isBigEndian = true\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/endian_little.go",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n//\n// +build 386 amd64 amd64p32 arm arm64 ppc64le mipsle mips64le riscv64\n\npackage unix\n\nconst isBigEndian = false\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/env_unix.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\n// Unix environment variables.\n\npackage unix\n\nimport \"syscall\"\n\nfunc Getenv(key string) (value string, found bool) {\n\treturn syscall.Getenv(key)\n}\n\nfunc Setenv(key, value string) error {\n\treturn syscall.Setenv(key, value)\n}\n\nfunc Clearenv() {\n\tsyscall.Clearenv()\n}\n\nfunc Environ() []string {\n\treturn syscall.Environ()\n}\n\nfunc Unsetenv(key string) error {\n\treturn syscall.Unsetenv(key)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/errors_freebsd_386.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Constants that were deprecated or moved to enums in the FreeBSD headers. Keep\n// them here for backwards compatibility.\n\npackage unix\n\nconst (\n\tDLT_HHDLC                         = 0x79\n\tIFF_SMART                         = 0x20\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BSC                           = 0x53\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf2\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_IPXIP                         = 0xf9\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf6\n\tIFT_PFSYNC                        = 0xf7\n\tIFT_PLC                           = 0xae\n\tIFT_POS                           = 0xab\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf1\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0xd7\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIPPROTO_MAXID                     = 0x34\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_MIN_MEMBERSHIPS              = 0x1f\n\tIP_FAITH                          = 0x16\n\tIP_MAX_SOURCE_FILTER              = 0x400\n\tIP_MIN_MEMBERSHIPS                = 0x1f\n\tMAP_NORESERVE                     = 0x40\n\tMAP_RENAME                        = 0x20\n\tNET_RT_MAXID                      = 0x6\n\tRTF_PRCLONING                     = 0x10000\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRT_CACHING_CONTEXT                = 0x1\n\tRT_NORTREF                        = 0x2\n\tSIOCADDRT                         = 0x8030720a\n\tSIOCALIFADDR                      = 0x8118691b\n\tSIOCDELRT                         = 0x8030720b\n\tSIOCDLIFADDR                      = 0x8118691d\n\tSIOCGLIFADDR                      = 0xc118691c\n\tSIOCGLIFPHYADDR                   = 0xc118694b\n\tSIOCSLIFPHYADDR                   = 0x8118694a\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Constants that were deprecated or moved to enums in the FreeBSD headers. Keep\n// them here for backwards compatibility.\n\npackage unix\n\nconst (\n\tDLT_HHDLC                         = 0x79\n\tIFF_SMART                         = 0x20\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BSC                           = 0x53\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf2\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_IPXIP                         = 0xf9\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf6\n\tIFT_PFSYNC                        = 0xf7\n\tIFT_PLC                           = 0xae\n\tIFT_POS                           = 0xab\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf1\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0xd7\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIPPROTO_MAXID                     = 0x34\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_MIN_MEMBERSHIPS              = 0x1f\n\tIP_FAITH                          = 0x16\n\tIP_MAX_SOURCE_FILTER              = 0x400\n\tIP_MIN_MEMBERSHIPS                = 0x1f\n\tMAP_NORESERVE                     = 0x40\n\tMAP_RENAME                        = 0x20\n\tNET_RT_MAXID                      = 0x6\n\tRTF_PRCLONING                     = 0x10000\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRT_CACHING_CONTEXT                = 0x1\n\tRT_NORTREF                        = 0x2\n\tSIOCADDRT                         = 0x8040720a\n\tSIOCALIFADDR                      = 0x8118691b\n\tSIOCDELRT                         = 0x8040720b\n\tSIOCDLIFADDR                      = 0x8118691d\n\tSIOCGLIFADDR                      = 0xc118691c\n\tSIOCGLIFPHYADDR                   = 0xc118694b\n\tSIOCSLIFPHYADDR                   = 0x8118694a\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/errors_freebsd_arm.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage unix\n\nconst (\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BSC                           = 0x53\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf6\n\tIFT_PFSYNC                        = 0xf7\n\tIFT_PLC                           = 0xae\n\tIFT_POS                           = 0xab\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf1\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0xd7\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\n\t// missing constants on FreeBSD-11.1-RELEASE, copied from old values in ztypes_freebsd_arm.go\n\tIFF_SMART       = 0x20\n\tIFT_FAITH       = 0xf2\n\tIFT_IPXIP       = 0xf9\n\tIPPROTO_MAXID   = 0x34\n\tIPV6_FAITH      = 0x1d\n\tIP_FAITH        = 0x16\n\tMAP_NORESERVE   = 0x40\n\tMAP_RENAME      = 0x20\n\tNET_RT_MAXID    = 0x6\n\tRTF_PRCLONING   = 0x10000\n\tRTM_OLDADD      = 0x9\n\tRTM_OLDDEL      = 0xa\n\tSIOCADDRT       = 0x8030720a\n\tSIOCALIFADDR    = 0x8118691b\n\tSIOCDELRT       = 0x8030720b\n\tSIOCDLIFADDR    = 0x8118691d\n\tSIOCGLIFADDR    = 0xc118691c\n\tSIOCGLIFPHYADDR = 0xc118694b\n\tSIOCSLIFPHYADDR = 0x8118694a\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go",
    "content": "// Copyright 2020 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Constants that were deprecated or moved to enums in the FreeBSD headers. Keep\n// them here for backwards compatibility.\n\npackage unix\n\nconst (\n\tDLT_HHDLC            = 0x79\n\tIPV6_MIN_MEMBERSHIPS = 0x1f\n\tIP_MAX_SOURCE_FILTER = 0x400\n\tIP_MIN_MEMBERSHIPS   = 0x1f\n\tRT_CACHING_CONTEXT   = 0x1\n\tRT_NORTREF           = 0x2\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/fcntl.go",
    "content": "// Copyright 2014 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build dragonfly freebsd linux netbsd openbsd\n\npackage unix\n\nimport \"unsafe\"\n\n// fcntl64Syscall is usually SYS_FCNTL, but is overridden on 32-bit Linux\n// systems by fcntl_linux_32bit.go to be SYS_FCNTL64.\nvar fcntl64Syscall uintptr = SYS_FCNTL\n\nfunc fcntl(fd int, cmd, arg int) (int, error) {\n\tvalptr, _, errno := Syscall(fcntl64Syscall, uintptr(fd), uintptr(cmd), uintptr(arg))\n\tvar err error\n\tif errno != 0 {\n\t\terr = errno\n\t}\n\treturn int(valptr), err\n}\n\n// FcntlInt performs a fcntl syscall on fd with the provided command and argument.\nfunc FcntlInt(fd uintptr, cmd, arg int) (int, error) {\n\treturn fcntl(int(fd), cmd, arg)\n}\n\n// FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.\nfunc FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {\n\t_, _, errno := Syscall(fcntl64Syscall, fd, uintptr(cmd), uintptr(unsafe.Pointer(lk)))\n\tif errno == 0 {\n\t\treturn nil\n\t}\n\treturn errno\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/fcntl_darwin.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage unix\n\nimport \"unsafe\"\n\n// FcntlInt performs a fcntl syscall on fd with the provided command and argument.\nfunc FcntlInt(fd uintptr, cmd, arg int) (int, error) {\n\treturn fcntl(int(fd), cmd, arg)\n}\n\n// FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.\nfunc FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {\n\t_, err := fcntl(int(fd), cmd, int(uintptr(unsafe.Pointer(lk))))\n\treturn err\n}\n\n// FcntlFstore performs a fcntl syscall for the F_PREALLOCATE command.\nfunc FcntlFstore(fd uintptr, cmd int, fstore *Fstore_t) error {\n\t_, err := fcntl(int(fd), cmd, int(uintptr(unsafe.Pointer(fstore))))\n\treturn err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go",
    "content": "// +build linux,386 linux,arm linux,mips linux,mipsle\n\n// Copyright 2014 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage unix\n\nfunc init() {\n\t// On 32-bit Linux systems, the fcntl syscall that matches Go's\n\t// Flock_t type is SYS_FCNTL64, not SYS_FCNTL.\n\tfcntl64Syscall = SYS_FCNTL64\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/fdset.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\npackage unix\n\n// Set adds fd to the set fds.\nfunc (fds *FdSet) Set(fd int) {\n\tfds.Bits[fd/NFDBITS] |= (1 << (uintptr(fd) % NFDBITS))\n}\n\n// Clear removes fd from the set fds.\nfunc (fds *FdSet) Clear(fd int) {\n\tfds.Bits[fd/NFDBITS] &^= (1 << (uintptr(fd) % NFDBITS))\n}\n\n// IsSet returns whether fd is in the set fds.\nfunc (fds *FdSet) IsSet(fd int) bool {\n\treturn fds.Bits[fd/NFDBITS]&(1<<(uintptr(fd)%NFDBITS)) != 0\n}\n\n// Zero clears the set fds.\nfunc (fds *FdSet) Zero() {\n\tfor i := range fds.Bits {\n\t\tfds.Bits[i] = 0\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/gccgo.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build gccgo\n// +build !aix\n\npackage unix\n\nimport \"syscall\"\n\n// We can't use the gc-syntax .s files for gccgo. On the plus side\n// much of the functionality can be written directly in Go.\n\nfunc realSyscallNoError(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r uintptr)\n\nfunc realSyscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r, errno uintptr)\n\nfunc SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) {\n\tsyscall.Entersyscall()\n\tr := realSyscallNoError(trap, a1, a2, a3, 0, 0, 0, 0, 0, 0)\n\tsyscall.Exitsyscall()\n\treturn r, 0\n}\n\nfunc Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) {\n\tsyscall.Entersyscall()\n\tr, errno := realSyscall(trap, a1, a2, a3, 0, 0, 0, 0, 0, 0)\n\tsyscall.Exitsyscall()\n\treturn r, 0, syscall.Errno(errno)\n}\n\nfunc Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno) {\n\tsyscall.Entersyscall()\n\tr, errno := realSyscall(trap, a1, a2, a3, a4, a5, a6, 0, 0, 0)\n\tsyscall.Exitsyscall()\n\treturn r, 0, syscall.Errno(errno)\n}\n\nfunc Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) {\n\tsyscall.Entersyscall()\n\tr, errno := realSyscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9)\n\tsyscall.Exitsyscall()\n\treturn r, 0, syscall.Errno(errno)\n}\n\nfunc RawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) {\n\tr := realSyscallNoError(trap, a1, a2, a3, 0, 0, 0, 0, 0, 0)\n\treturn r, 0\n}\n\nfunc RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) {\n\tr, errno := realSyscall(trap, a1, a2, a3, 0, 0, 0, 0, 0, 0)\n\treturn r, 0, syscall.Errno(errno)\n}\n\nfunc RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno) {\n\tr, errno := realSyscall(trap, a1, a2, a3, a4, a5, a6, 0, 0, 0)\n\treturn r, 0, syscall.Errno(errno)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/gccgo_c.c",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build gccgo\n// +build !aix\n\n#include <errno.h>\n#include <stdint.h>\n#include <unistd.h>\n\n#define _STRINGIFY2_(x) #x\n#define _STRINGIFY_(x) _STRINGIFY2_(x)\n#define GOSYM_PREFIX _STRINGIFY_(__USER_LABEL_PREFIX__)\n\n// Call syscall from C code because the gccgo support for calling from\n// Go to C does not support varargs functions.\n\nstruct ret {\n\tuintptr_t r;\n\tuintptr_t err;\n};\n\nstruct ret gccgoRealSyscall(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)\n  __asm__(GOSYM_PREFIX GOPKGPATH \".realSyscall\");\n\nstruct ret\ngccgoRealSyscall(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)\n{\n\tstruct ret r;\n\n\terrno = 0;\n\tr.r = syscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9);\n\tr.err = errno;\n\treturn r;\n}\n\nuintptr_t gccgoRealSyscallNoError(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)\n  __asm__(GOSYM_PREFIX GOPKGPATH \".realSyscallNoError\");\n\nuintptr_t\ngccgoRealSyscallNoError(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)\n{\n\treturn syscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9);\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build gccgo,linux,amd64\n\npackage unix\n\nimport \"syscall\"\n\n//extern gettimeofday\nfunc realGettimeofday(*Timeval, *byte) int32\n\nfunc gettimeofday(tv *Timeval) (err syscall.Errno) {\n\tr := realGettimeofday(tv, nil)\n\tif r < 0 {\n\t\treturn syscall.GetErrno()\n\t}\n\treturn 0\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ioctl.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\npackage unix\n\nimport (\n\t\"runtime\"\n\t\"unsafe\"\n)\n\n// ioctl itself should not be exposed directly, but additional get/set\n// functions for specific types are permissible.\n\n// IoctlSetInt performs an ioctl operation which sets an integer value\n// on fd, using the specified request number.\nfunc IoctlSetInt(fd int, req uint, value int) error {\n\treturn ioctl(fd, req, uintptr(value))\n}\n\n// IoctlSetPointerInt performs an ioctl operation which sets an\n// integer value on fd, using the specified request number. The ioctl\n// argument is called with a pointer to the integer value, rather than\n// passing the integer value directly.\nfunc IoctlSetPointerInt(fd int, req uint, value int) error {\n\tv := int32(value)\n\treturn ioctl(fd, req, uintptr(unsafe.Pointer(&v)))\n}\n\n// IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.\n//\n// To change fd's window size, the req argument should be TIOCSWINSZ.\nfunc IoctlSetWinsize(fd int, req uint, value *Winsize) error {\n\t// TODO: if we get the chance, remove the req parameter and\n\t// hardcode TIOCSWINSZ.\n\terr := ioctl(fd, req, uintptr(unsafe.Pointer(value)))\n\truntime.KeepAlive(value)\n\treturn err\n}\n\n// IoctlSetTermios performs an ioctl on fd with a *Termios.\n//\n// The req value will usually be TCSETA or TIOCSETA.\nfunc IoctlSetTermios(fd int, req uint, value *Termios) error {\n\t// TODO: if we get the chance, remove the req parameter.\n\terr := ioctl(fd, req, uintptr(unsafe.Pointer(value)))\n\truntime.KeepAlive(value)\n\treturn err\n}\n\n// IoctlGetInt performs an ioctl operation which gets an integer value\n// from fd, using the specified request number.\n//\n// A few ioctl requests use the return value as an output parameter;\n// for those, IoctlRetInt should be used instead of this function.\nfunc IoctlGetInt(fd int, req uint) (int, error) {\n\tvar value int\n\terr := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))\n\treturn value, err\n}\n\nfunc IoctlGetWinsize(fd int, req uint) (*Winsize, error) {\n\tvar value Winsize\n\terr := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))\n\treturn &value, err\n}\n\nfunc IoctlGetTermios(fd int, req uint) (*Termios, error) {\n\tvar value Termios\n\terr := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))\n\treturn &value, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/mkall.sh",
    "content": "#!/usr/bin/env bash\n# Copyright 2009 The Go Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style\n# license that can be found in the LICENSE file.\n\n# This script runs or (given -n) prints suggested commands to generate files for\n# the Architecture/OS specified by the GOARCH and GOOS environment variables.\n# See README.md for more information about how the build system works.\n\nGOOSARCH=\"${GOOS}_${GOARCH}\"\n\n# defaults\nmksyscall=\"go run mksyscall.go\"\nmkerrors=\"./mkerrors.sh\"\nzerrors=\"zerrors_$GOOSARCH.go\"\nmksysctl=\"\"\nzsysctl=\"zsysctl_$GOOSARCH.go\"\nmksysnum=\nmktypes=\nmkasm=\nrun=\"sh\"\ncmd=\"\"\n\ncase \"$1\" in\n-syscalls)\n\tfor i in zsyscall*go\n\tdo\n\t\t# Run the command line that appears in the first line\n\t\t# of the generated file to regenerate it.\n\t\tsed 1q $i | sed 's;^// ;;' | sh > _$i && gofmt < _$i > $i\n\t\trm _$i\n\tdone\n\texit 0\n\t;;\n-n)\n\trun=\"cat\"\n\tcmd=\"echo\"\n\tshift\nesac\n\ncase \"$#\" in\n0)\n\t;;\n*)\n\techo 'usage: mkall.sh [-n]' 1>&2\n\texit 2\nesac\n\nif [[ \"$GOOS\" = \"linux\" ]]; then\n\t# Use the Docker-based build system\n\t# Files generated through docker (use $cmd so you can Ctl-C the build or run)\n\t$cmd docker build --tag generate:$GOOS $GOOS\n\t$cmd docker run --interactive --tty --volume $(cd -- \"$(dirname -- \"$0\")\" && /bin/pwd):/build generate:$GOOS\n\texit\nfi\n\nGOOSARCH_in=syscall_$GOOSARCH.go\ncase \"$GOOSARCH\" in\n_* | *_ | _)\n\techo 'undefined $GOOS_$GOARCH:' \"$GOOSARCH\" 1>&2\n\texit 1\n\t;;\naix_ppc)\n\tmkerrors=\"$mkerrors -maix32\"\n\tmksyscall=\"go run mksyscall_aix_ppc.go -aix\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\naix_ppc64)\n\tmkerrors=\"$mkerrors -maix64\"\n\tmksyscall=\"go run mksyscall_aix_ppc64.go -aix\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\ndarwin_386)\n\tmkerrors=\"$mkerrors -m32\"\n\tmksyscall=\"go run mksyscall.go -l32\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\tmkasm=\"go run mkasm_darwin.go\"\n\t;;\ndarwin_amd64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\tmkasm=\"go run mkasm_darwin.go\"\n\t;;\ndarwin_arm)\n\tmkerrors=\"$mkerrors\"\n\tmksyscall=\"go run mksyscall.go -l32\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\tmkasm=\"go run mkasm_darwin.go\"\n\t;;\ndarwin_arm64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\tmkasm=\"go run mkasm_darwin.go\"\n\t;;\ndragonfly_amd64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmksyscall=\"go run mksyscall.go -dragonfly\"\n\tmksysnum=\"go run mksysnum.go 'https://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master'\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\nfreebsd_386)\n\tmkerrors=\"$mkerrors -m32\"\n\tmksyscall=\"go run mksyscall.go -l32\"\n\tmksysnum=\"go run mksysnum.go 'https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master'\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\nfreebsd_amd64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmksysnum=\"go run mksysnum.go 'https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master'\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\nfreebsd_arm)\n\tmkerrors=\"$mkerrors\"\n\tmksyscall=\"go run mksyscall.go -l32 -arm\"\n\tmksysnum=\"go run mksysnum.go 'https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master'\"\n\t# Let the type of C char be signed for making the bare syscall\n\t# API consistent across platforms.\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char\"\n\t;;\nfreebsd_arm64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmksysnum=\"go run mksysnum.go 'https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master'\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char\"\n\t;;\nnetbsd_386)\n\tmkerrors=\"$mkerrors -m32\"\n\tmksyscall=\"go run mksyscall.go -l32 -netbsd\"\n\tmksysnum=\"go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\nnetbsd_amd64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmksyscall=\"go run mksyscall.go -netbsd\"\n\tmksysnum=\"go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\nnetbsd_arm)\n\tmkerrors=\"$mkerrors\"\n\tmksyscall=\"go run mksyscall.go -l32 -netbsd -arm\"\n\tmksysnum=\"go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'\"\n\t# Let the type of C char be signed for making the bare syscall\n\t# API consistent across platforms.\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char\"\n\t;;\nnetbsd_arm64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmksyscall=\"go run mksyscall.go -netbsd\"\n\tmksysnum=\"go run mksysnum.go 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master'\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\nopenbsd_386)\n\tmkerrors=\"$mkerrors -m32\"\n\tmksyscall=\"go run mksyscall.go -l32 -openbsd\"\n\tmksysctl=\"go run mksysctl_openbsd.go\"\n\tmksysnum=\"go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\nopenbsd_amd64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmksyscall=\"go run mksyscall.go -openbsd\"\n\tmksysctl=\"go run mksysctl_openbsd.go\"\n\tmksysnum=\"go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'\"\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\nopenbsd_arm)\n\tmkerrors=\"$mkerrors\"\n\tmksyscall=\"go run mksyscall.go -l32 -openbsd -arm\"\n\tmksysctl=\"go run mksysctl_openbsd.go\"\n\tmksysnum=\"go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'\"\n\t# Let the type of C char be signed for making the bare syscall\n\t# API consistent across platforms.\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char\"\n\t;;\nopenbsd_arm64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmksyscall=\"go run mksyscall.go -openbsd\"\n\tmksysctl=\"go run mksysctl_openbsd.go\"\n\tmksysnum=\"go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'\"\n\t# Let the type of C char be signed for making the bare syscall\n\t# API consistent across platforms.\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char\"\n\t;;\nopenbsd_mips64)\n\tmkerrors=\"$mkerrors -m64\"\n\tmksyscall=\"go run mksyscall.go -openbsd\"\n\tmksysctl=\"go run mksysctl_openbsd.go\"\n\tmksysnum=\"go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'\"\n\t# Let the type of C char be signed for making the bare syscall\n\t# API consistent across platforms.\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char\"\n\t;;\nsolaris_amd64)\n\tmksyscall=\"go run mksyscall_solaris.go\"\n\tmkerrors=\"$mkerrors -m64\"\n\tmksysnum=\n\tmktypes=\"GOARCH=$GOARCH go tool cgo -godefs\"\n\t;;\nillumos_amd64)\n        mksyscall=\"go run mksyscall_solaris.go\"\n\tmkerrors=\n\tmksysnum=\n\tmktypes=\n\t;;\n*)\n\techo 'unrecognized $GOOS_$GOARCH: ' \"$GOOSARCH\" 1>&2\n\texit 1\n\t;;\nesac\n\n(\n\tif [ -n \"$mkerrors\" ]; then echo \"$mkerrors |gofmt >$zerrors\"; fi\n\tcase \"$GOOS\" in\n\t*)\n\t\tsyscall_goos=\"syscall_$GOOS.go\"\n\t\tcase \"$GOOS\" in\n\t\tdarwin | dragonfly | freebsd | netbsd | openbsd)\n\t\t\tsyscall_goos=\"syscall_bsd.go $syscall_goos\"\n\t\t\t;;\n\t\tesac\n\t\tif [ -n \"$mksyscall\" ]; then\n\t\t\tif [ \"$GOOSARCH\" == \"aix_ppc64\" ]; then\n\t\t\t\t# aix/ppc64 script generates files instead of writing to stdin.\n\t\t\t\techo \"$mksyscall -tags $GOOS,$GOARCH $syscall_goos $GOOSARCH_in && gofmt -w zsyscall_$GOOSARCH.go && gofmt -w zsyscall_\"$GOOSARCH\"_gccgo.go && gofmt -w zsyscall_\"$GOOSARCH\"_gc.go \" ;\n\t\t\telif [ \"$GOOS\" == \"darwin\" ]; then\n\t\t\t        # 1.12 and later, syscalls via libSystem\n\t\t\t\techo \"$mksyscall -tags $GOOS,$GOARCH,go1.12 $syscall_goos $GOOSARCH_in |gofmt >zsyscall_$GOOSARCH.go\";\n\t\t\t\t# 1.13 and later, syscalls via libSystem (including syscallPtr)\n\t\t\t\techo \"$mksyscall -tags $GOOS,$GOARCH,go1.13 syscall_darwin.1_13.go |gofmt >zsyscall_$GOOSARCH.1_13.go\";\n\t\t\telif [ \"$GOOS\" == \"illumos\" ]; then\n\t\t\t        # illumos code generation requires a --illumos switch\n\t\t\t        echo \"$mksyscall -illumos -tags illumos,$GOARCH syscall_illumos.go |gofmt > zsyscall_illumos_$GOARCH.go\";\n\t\t\t        # illumos implies solaris, so solaris code generation is also required\n\t\t\t\techo \"$mksyscall -tags solaris,$GOARCH syscall_solaris.go syscall_solaris_$GOARCH.go |gofmt >zsyscall_solaris_$GOARCH.go\";\n\t\t\telse\n\t\t\t\techo \"$mksyscall -tags $GOOS,$GOARCH $syscall_goos $GOOSARCH_in |gofmt >zsyscall_$GOOSARCH.go\";\n\t\t\tfi\n\t\tfi\n\tesac\n\tif [ -n \"$mksysctl\" ]; then echo \"$mksysctl |gofmt >$zsysctl\"; fi\n\tif [ -n \"$mksysnum\" ]; then echo \"$mksysnum |gofmt >zsysnum_$GOOSARCH.go\"; fi\n\tif [ -n \"$mktypes\" ]; then echo \"$mktypes types_$GOOS.go | go run mkpost.go > ztypes_$GOOSARCH.go\"; fi\n\tif [ -n \"$mkasm\" ]; then echo \"$mkasm $GOARCH\"; fi\n) | $run\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/mkerrors.sh",
    "content": "#!/usr/bin/env bash\n# Copyright 2009 The Go Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style\n# license that can be found in the LICENSE file.\n\n# Generate Go code listing errors and other #defined constant\n# values (ENAMETOOLONG etc.), by asking the preprocessor\n# about the definitions.\n\nunset LANG\nexport LC_ALL=C\nexport LC_CTYPE=C\n\nif test -z \"$GOARCH\" -o -z \"$GOOS\"; then\n\techo 1>&2 \"GOARCH or GOOS not defined in environment\"\n\texit 1\nfi\n\n# Check that we are using the new build system if we should\nif [[ \"$GOOS\" = \"linux\" ]] && [[ \"$GOLANG_SYS_BUILD\" != \"docker\" ]]; then\n\techo 1>&2 \"In the Docker based build system, mkerrors should not be called directly.\"\n\techo 1>&2 \"See README.md\"\n\texit 1\nfi\n\nif [[ \"$GOOS\" = \"aix\" ]]; then\n\tCC=${CC:-gcc}\nelse\n\tCC=${CC:-cc}\nfi\n\nif [[ \"$GOOS\" = \"solaris\" ]]; then\n\t# Assumes GNU versions of utilities in PATH.\n\texport PATH=/usr/gnu/bin:$PATH\nfi\n\nuname=$(uname)\n\nincludes_AIX='\n#include <net/if.h>\n#include <net/netopt.h>\n#include <netinet/ip_mroute.h>\n#include <sys/protosw.h>\n#include <sys/stropts.h>\n#include <sys/mman.h>\n#include <sys/poll.h>\n#include <sys/select.h>\n#include <sys/termio.h>\n#include <termios.h>\n#include <fcntl.h>\n\n#define AF_LOCAL AF_UNIX\n'\n\nincludes_Darwin='\n#define _DARWIN_C_SOURCE\n#define KERNEL\n#define _DARWIN_USE_64_BIT_INODE\n#include <stdint.h>\n#include <sys/attr.h>\n#include <sys/clonefile.h>\n#include <sys/types.h>\n#include <sys/event.h>\n#include <sys/ptrace.h>\n#include <sys/select.h>\n#include <sys/socket.h>\n#include <sys/sockio.h>\n#include <sys/sysctl.h>\n#include <sys/mman.h>\n#include <sys/mount.h>\n#include <sys/utsname.h>\n#include <sys/wait.h>\n#include <sys/xattr.h>\n#include <net/bpf.h>\n#include <net/if.h>\n#include <net/if_types.h>\n#include <net/route.h>\n#include <netinet/in.h>\n#include <netinet/ip.h>\n#include <termios.h>\n'\n\nincludes_DragonFly='\n#include <sys/types.h>\n#include <sys/event.h>\n#include <sys/select.h>\n#include <sys/socket.h>\n#include <sys/sockio.h>\n#include <sys/stat.h>\n#include <sys/sysctl.h>\n#include <sys/mman.h>\n#include <sys/mount.h>\n#include <sys/wait.h>\n#include <sys/ioctl.h>\n#include <net/bpf.h>\n#include <net/if.h>\n#include <net/if_types.h>\n#include <net/route.h>\n#include <netinet/in.h>\n#include <termios.h>\n#include <netinet/ip.h>\n#include <net/ip_mroute/ip_mroute.h>\n'\n\nincludes_FreeBSD='\n#include <sys/capsicum.h>\n#include <sys/param.h>\n#include <sys/types.h>\n#include <sys/disk.h>\n#include <sys/event.h>\n#include <sys/sched.h>\n#include <sys/select.h>\n#include <sys/socket.h>\n#include <sys/sockio.h>\n#include <sys/stat.h>\n#include <sys/sysctl.h>\n#include <sys/mman.h>\n#include <sys/mount.h>\n#include <sys/wait.h>\n#include <sys/ioctl.h>\n#include <net/bpf.h>\n#include <net/if.h>\n#include <net/if_types.h>\n#include <net/route.h>\n#include <netinet/in.h>\n#include <termios.h>\n#include <netinet/ip.h>\n#include <netinet/ip_mroute.h>\n#include <sys/extattr.h>\n\n#if __FreeBSD__ >= 10\n#define IFT_CARP\t0xf8\t// IFT_CARP is deprecated in FreeBSD 10\n#undef SIOCAIFADDR\n#define SIOCAIFADDR\t_IOW(105, 26, struct oifaliasreq)\t// ifaliasreq contains if_data\n#undef SIOCSIFPHYADDR\n#define SIOCSIFPHYADDR\t_IOW(105, 70, struct oifaliasreq)\t// ifaliasreq contains if_data\n#endif\n'\n\nincludes_Linux='\n#define _LARGEFILE_SOURCE\n#define _LARGEFILE64_SOURCE\n#ifndef __LP64__\n#define _FILE_OFFSET_BITS 64\n#endif\n#define _GNU_SOURCE\n\n// <sys/ioctl.h> is broken on powerpc64, as it fails to include definitions of\n// these structures. We just include them copied from <bits/termios.h>.\n#if defined(__powerpc__)\nstruct sgttyb {\n        char    sg_ispeed;\n        char    sg_ospeed;\n        char    sg_erase;\n        char    sg_kill;\n        short   sg_flags;\n};\n\nstruct tchars {\n        char    t_intrc;\n        char    t_quitc;\n        char    t_startc;\n        char    t_stopc;\n        char    t_eofc;\n        char    t_brkc;\n};\n\nstruct ltchars {\n        char    t_suspc;\n        char    t_dsuspc;\n        char    t_rprntc;\n        char    t_flushc;\n        char    t_werasc;\n        char    t_lnextc;\n};\n#endif\n\n#include <bits/sockaddr.h>\n#include <sys/epoll.h>\n#include <sys/eventfd.h>\n#include <sys/inotify.h>\n#include <sys/ioctl.h>\n#include <sys/mman.h>\n#include <sys/mount.h>\n#include <sys/prctl.h>\n#include <sys/stat.h>\n#include <sys/types.h>\n#include <sys/time.h>\n#include <sys/select.h>\n#include <sys/signalfd.h>\n#include <sys/socket.h>\n#include <sys/timerfd.h>\n#include <sys/uio.h>\n#include <sys/xattr.h>\n#include <linux/bpf.h>\n#include <linux/can.h>\n#include <linux/can/error.h>\n#include <linux/can/raw.h>\n#include <linux/capability.h>\n#include <linux/cryptouser.h>\n#include <linux/devlink.h>\n#include <linux/dm-ioctl.h>\n#include <linux/errqueue.h>\n#include <linux/falloc.h>\n#include <linux/fanotify.h>\n#include <linux/filter.h>\n#include <linux/fs.h>\n#include <linux/fscrypt.h>\n#include <linux/fsverity.h>\n#include <linux/genetlink.h>\n#include <linux/hdreg.h>\n#include <linux/icmpv6.h>\n#include <linux/if.h>\n#include <linux/if_addr.h>\n#include <linux/if_alg.h>\n#include <linux/if_arp.h>\n#include <linux/if_ether.h>\n#include <linux/if_ppp.h>\n#include <linux/if_tun.h>\n#include <linux/if_packet.h>\n#include <linux/if_xdp.h>\n#include <linux/kexec.h>\n#include <linux/keyctl.h>\n#include <linux/loop.h>\n#include <linux/magic.h>\n#include <linux/memfd.h>\n#include <linux/module.h>\n#include <linux/netfilter/nfnetlink.h>\n#include <linux/netlink.h>\n#include <linux/net_namespace.h>\n#include <linux/nsfs.h>\n#include <linux/perf_event.h>\n#include <linux/ptrace.h>\n#include <linux/random.h>\n#include <linux/reboot.h>\n#include <linux/rtc.h>\n#include <linux/rtnetlink.h>\n#include <linux/sched.h>\n#include <linux/seccomp.h>\n#include <linux/serial.h>\n#include <linux/sockios.h>\n#include <linux/taskstats.h>\n#include <linux/tipc.h>\n#include <linux/vm_sockets.h>\n#include <linux/wait.h>\n#include <linux/watchdog.h>\n\n#include <mtd/ubi-user.h>\n#include <net/route.h>\n\n#if defined(__sparc__)\n// On sparc{,64}, the kernel defines struct termios2 itself which clashes with the\n// definition in glibc. As only the error constants are needed here, include the\n// generic termibits.h (which is included by termbits.h on sparc).\n#include <asm-generic/termbits.h>\n#else\n#include <asm/termbits.h>\n#endif\n\n#ifndef MSG_FASTOPEN\n#define MSG_FASTOPEN    0x20000000\n#endif\n\n#ifndef PTRACE_GETREGS\n#define PTRACE_GETREGS\t0xc\n#endif\n\n#ifndef PTRACE_SETREGS\n#define PTRACE_SETREGS\t0xd\n#endif\n\n#ifndef SOL_NETLINK\n#define SOL_NETLINK\t270\n#endif\n\n#ifdef SOL_BLUETOOTH\n// SPARC includes this in /usr/include/sparc64-linux-gnu/bits/socket.h\n// but it is already in bluetooth_linux.go\n#undef SOL_BLUETOOTH\n#endif\n\n// Certain constants are missing from the fs/crypto UAPI\n#define FS_KEY_DESC_PREFIX              \"fscrypt:\"\n#define FS_KEY_DESC_PREFIX_SIZE         8\n#define FS_MAX_KEY_SIZE                 64\n\n// The code generator produces -0x1 for (~0), but an unsigned value is necessary\n// for the tipc_subscr timeout __u32 field.\n#undef TIPC_WAIT_FOREVER\n#define TIPC_WAIT_FOREVER 0xffffffff\n\n// Copied from linux/l2tp.h\n// Including linux/l2tp.h here causes conflicts between linux/in.h\n// and netinet/in.h included via net/route.h above.\n#define IPPROTO_L2TP\t\t115\n'\n\nincludes_NetBSD='\n#include <sys/types.h>\n#include <sys/param.h>\n#include <sys/event.h>\n#include <sys/extattr.h>\n#include <sys/mman.h>\n#include <sys/mount.h>\n#include <sys/sched.h>\n#include <sys/select.h>\n#include <sys/socket.h>\n#include <sys/sockio.h>\n#include <sys/sysctl.h>\n#include <sys/termios.h>\n#include <sys/ttycom.h>\n#include <sys/wait.h>\n#include <net/bpf.h>\n#include <net/if.h>\n#include <net/if_types.h>\n#include <net/route.h>\n#include <netinet/in.h>\n#include <netinet/in_systm.h>\n#include <netinet/ip.h>\n#include <netinet/ip_mroute.h>\n#include <netinet/if_ether.h>\n\n// Needed since <sys/param.h> refers to it...\n#define schedppq 1\n'\n\nincludes_OpenBSD='\n#include <sys/types.h>\n#include <sys/param.h>\n#include <sys/event.h>\n#include <sys/mman.h>\n#include <sys/mount.h>\n#include <sys/select.h>\n#include <sys/sched.h>\n#include <sys/socket.h>\n#include <sys/sockio.h>\n#include <sys/stat.h>\n#include <sys/sysctl.h>\n#include <sys/termios.h>\n#include <sys/ttycom.h>\n#include <sys/unistd.h>\n#include <sys/wait.h>\n#include <net/bpf.h>\n#include <net/if.h>\n#include <net/if_types.h>\n#include <net/if_var.h>\n#include <net/route.h>\n#include <netinet/in.h>\n#include <netinet/in_systm.h>\n#include <netinet/ip.h>\n#include <netinet/ip_mroute.h>\n#include <netinet/if_ether.h>\n#include <net/if_bridge.h>\n\n// We keep some constants not supported in OpenBSD 5.5 and beyond for\n// the promise of compatibility.\n#define EMUL_ENABLED\t\t0x1\n#define EMUL_NATIVE\t\t0x2\n#define IPV6_FAITH\t\t0x1d\n#define IPV6_OPTIONS\t\t0x1\n#define IPV6_RTHDR_STRICT\t0x1\n#define IPV6_SOCKOPT_RESERVED1\t0x3\n#define SIOCGIFGENERIC\t\t0xc020693a\n#define SIOCSIFGENERIC\t\t0x80206939\n#define WALTSIG\t\t\t0x4\n'\n\nincludes_SunOS='\n#include <limits.h>\n#include <sys/types.h>\n#include <sys/select.h>\n#include <sys/socket.h>\n#include <sys/sockio.h>\n#include <sys/stat.h>\n#include <sys/mman.h>\n#include <sys/wait.h>\n#include <sys/ioctl.h>\n#include <sys/mkdev.h>\n#include <net/bpf.h>\n#include <net/if.h>\n#include <net/if_arp.h>\n#include <net/if_types.h>\n#include <net/route.h>\n#include <netinet/in.h>\n#include <termios.h>\n#include <netinet/ip.h>\n#include <netinet/ip_mroute.h>\n'\n\n\nincludes='\n#include <sys/types.h>\n#include <sys/file.h>\n#include <fcntl.h>\n#include <dirent.h>\n#include <sys/socket.h>\n#include <netinet/in.h>\n#include <netinet/ip.h>\n#include <netinet/ip6.h>\n#include <netinet/tcp.h>\n#include <errno.h>\n#include <sys/signal.h>\n#include <signal.h>\n#include <sys/resource.h>\n#include <time.h>\n'\nccflags=\"$@\"\n\n# Write go tool cgo -godefs input.\n(\n\techo package unix\n\techo\n\techo '/*'\n\tindirect=\"includes_$(uname)\"\n\techo \"${!indirect} $includes\"\n\techo '*/'\n\techo 'import \"C\"'\n\techo 'import \"syscall\"'\n\techo\n\techo 'const ('\n\n\t# The gcc command line prints all the #defines\n\t# it encounters while processing the input\n\techo \"${!indirect} $includes\" | $CC -x c - -E -dM $ccflags |\n\tawk '\n\t\t$1 != \"#define\" || $2 ~ /\\(/ || $3 == \"\" {next}\n\n\t\t$2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next}  # 386 registers\n\t\t$2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}\n\t\t$2 ~ /^(SCM_SRCRT)$/ {next}\n\t\t$2 ~ /^(MAP_FAILED)$/ {next}\n\t\t$2 ~ /^ELF_.*$/ {next}# <asm/elf.h> contains ELF_ARCH, etc.\n\n\t\t$2 ~ /^EXTATTR_NAMESPACE_NAMES/ ||\n\t\t$2 ~ /^EXTATTR_NAMESPACE_[A-Z]+_STRING/ {next}\n\n\t\t$2 !~ /^ECCAPBITS/ &&\n\t\t$2 !~ /^ETH_/ &&\n\t\t$2 !~ /^EPROC_/ &&\n\t\t$2 !~ /^EQUIV_/ &&\n\t\t$2 !~ /^EXPR_/ &&\n\t\t$2 ~ /^E[A-Z0-9_]+$/ ||\n\t\t$2 ~ /^B[0-9_]+$/ ||\n\t\t$2 ~ /^(OLD|NEW)DEV$/ ||\n\t\t$2 == \"BOTHER\" ||\n\t\t$2 ~ /^CI?BAUD(EX)?$/ ||\n\t\t$2 == \"IBSHIFT\" ||\n\t\t$2 ~ /^V[A-Z0-9]+$/ ||\n\t\t$2 ~ /^CS[A-Z0-9]/ ||\n\t\t$2 ~ /^I(SIG|CANON|CRNL|UCLC|EXTEN|MAXBEL|STRIP|UTF8)$/ ||\n\t\t$2 ~ /^IGN/ ||\n\t\t$2 ~ /^IX(ON|ANY|OFF)$/ ||\n\t\t$2 ~ /^IN(LCR|PCK)$/ ||\n\t\t$2 !~ \"X86_CR3_PCID_NOFLUSH\" &&\n\t\t$2 ~ /(^FLU?SH)|(FLU?SH$)/ ||\n\t\t$2 ~ /^C(LOCAL|READ|MSPAR|RTSCTS)$/ ||\n\t\t$2 == \"BRKINT\" ||\n\t\t$2 == \"HUPCL\" ||\n\t\t$2 == \"PENDIN\" ||\n\t\t$2 == \"TOSTOP\" ||\n\t\t$2 == \"XCASE\" ||\n\t\t$2 == \"ALTWERASE\" ||\n\t\t$2 == \"NOKERNINFO\" ||\n\t\t$2 == \"NFDBITS\" ||\n\t\t$2 ~ /^PAR/ ||\n\t\t$2 ~ /^SIG[^_]/ ||\n\t\t$2 ~ /^O[CNPFPL][A-Z]+[^_][A-Z]+$/ ||\n\t\t$2 ~ /^(NL|CR|TAB|BS|VT|FF)DLY$/ ||\n\t\t$2 ~ /^(NL|CR|TAB|BS|VT|FF)[0-9]$/ ||\n\t\t$2 ~ /^O?XTABS$/ ||\n\t\t$2 ~ /^TC[IO](ON|OFF)$/ ||\n\t\t$2 ~ /^IN_/ ||\n\t\t$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||\n\t\t$2 ~ /^LO_(KEY|NAME)_SIZE$/ ||\n\t\t$2 ~ /^LOOP_(CLR|CTL|GET|SET)_/ ||\n\t\t$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|ICMP6|TCP|MCAST|EVFILT|NOTE|EV|SHUT|PROT|MAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR)_/ ||\n\t\t$2 ~ /^TP_STATUS_/ ||\n\t\t$2 ~ /^FALLOC_/ ||\n\t\t$2 == \"ICMPV6_FILTER\" ||\n\t\t$2 == \"SOMAXCONN\" ||\n\t\t$2 == \"NAME_MAX\" ||\n\t\t$2 == \"IFNAMSIZ\" ||\n\t\t$2 ~ /^CTL_(HW|KERN|MAXNAME|NET|QUERY)$/ ||\n\t\t$2 ~ /^KERN_(HOSTNAME|OS(RELEASE|TYPE)|VERSION)$/ ||\n\t\t$2 ~ /^HW_MACHINE$/ ||\n\t\t$2 ~ /^SYSCTL_VERS/ ||\n\t\t$2 !~ \"MNT_BITS\" &&\n\t\t$2 ~ /^(MS|MNT|UMOUNT)_/ ||\n\t\t$2 ~ /^NS_GET_/ ||\n\t\t$2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||\n\t\t$2 ~ /^(O|F|[ES]?FD|NAME|S|PTRACE|PT|TFD)_/ ||\n\t\t$2 ~ /^KEXEC_/ ||\n\t\t$2 ~ /^LINUX_REBOOT_CMD_/ ||\n\t\t$2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||\n\t\t$2 ~ /^MODULE_INIT_/ ||\n\t\t$2 !~ \"NLA_TYPE_MASK\" &&\n\t\t$2 !~ /^RTC_VL_(ACCURACY|BACKUP|DATA)/ &&\n\t\t$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTC|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P|NETNSA)_/ ||\n\t\t$2 ~ /^SIOC/ ||\n\t\t$2 ~ /^TIOC/ ||\n\t\t$2 ~ /^TCGET/ ||\n\t\t$2 ~ /^TCSET/ ||\n\t\t$2 ~ /^TC(FLSH|SBRKP?|XONC)$/ ||\n\t\t$2 !~ \"RTF_BITS\" &&\n\t\t$2 ~ /^(IFF|IFT|NET_RT|RTM(GRP)?|RTF|RTV|RTA|RTAX)_/ ||\n\t\t$2 ~ /^BIOC/ ||\n\t\t$2 ~ /^DIOC/ ||\n\t\t$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||\n\t\t$2 ~ /^RLIMIT_(AS|CORE|CPU|DATA|FSIZE|LOCKS|MEMLOCK|MSGQUEUE|NICE|NOFILE|NPROC|RSS|RTPRIO|RTTIME|SIGPENDING|STACK)|RLIM_INFINITY/ ||\n\t\t$2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||\n\t\t$2 ~ /^CLONE_[A-Z_]+/ ||\n\t\t$2 !~ /^(BPF_TIMEVAL|BPF_FIB_LOOKUP_[A-Z]+)$/ &&\n\t\t$2 ~ /^(BPF|DLT)_/ ||\n\t\t$2 ~ /^(CLOCK|TIMER)_/ ||\n\t\t$2 ~ /^CAN_/ ||\n\t\t$2 ~ /^CAP_/ ||\n\t\t$2 ~ /^CP_/ ||\n\t\t$2 ~ /^CPUSTATES$/ ||\n\t\t$2 ~ /^ALG_/ ||\n\t\t$2 ~ /^FI(CLONE|DEDUPERANGE)/ ||\n\t\t$2 ~ /^FS_(POLICY_FLAGS|KEY_DESC|ENCRYPTION_MODE|[A-Z0-9_]+_KEY_SIZE)/ ||\n\t\t$2 ~ /^FS_IOC_.*(ENCRYPTION|VERITY|[GS]ETFLAGS)/ ||\n\t\t$2 ~ /^FS_VERITY_/ ||\n\t\t$2 ~ /^FSCRYPT_/ ||\n\t\t$2 ~ /^DM_/ ||\n\t\t$2 ~ /^GRND_/ ||\n\t\t$2 ~ /^RND/ ||\n\t\t$2 ~ /^KEY_(SPEC|REQKEY_DEFL)_/ ||\n\t\t$2 ~ /^KEYCTL_/ ||\n\t\t$2 ~ /^PERF_EVENT_IOC_/ ||\n\t\t$2 ~ /^SECCOMP_MODE_/ ||\n\t\t$2 ~ /^SPLICE_/ ||\n\t\t$2 ~ /^SYNC_FILE_RANGE_/ ||\n\t\t$2 !~ /^AUDIT_RECORD_MAGIC/ &&\n\t\t$2 !~ /IOC_MAGIC/ &&\n\t\t$2 ~ /^[A-Z][A-Z0-9_]+_MAGIC2?$/ ||\n\t\t$2 ~ /^(VM|VMADDR)_/ ||\n\t\t$2 ~ /^IOCTL_VM_SOCKETS_/ ||\n\t\t$2 ~ /^(TASKSTATS|TS)_/ ||\n\t\t$2 ~ /^CGROUPSTATS_/ ||\n\t\t$2 ~ /^GENL_/ ||\n\t\t$2 ~ /^STATX_/ ||\n\t\t$2 ~ /^RENAME/ ||\n\t\t$2 ~ /^UBI_IOC[A-Z]/ ||\n\t\t$2 ~ /^UTIME_/ ||\n\t\t$2 ~ /^XATTR_(CREATE|REPLACE|NO(DEFAULT|FOLLOW|SECURITY)|SHOWCOMPRESSION)/ ||\n\t\t$2 ~ /^ATTR_(BIT_MAP_COUNT|(CMN|VOL|FILE)_)/ ||\n\t\t$2 ~ /^FSOPT_/ ||\n\t\t$2 ~ /^WDIOC_/ ||\n\t\t$2 ~ /^NFN/ ||\n\t\t$2 ~ /^XDP_/ ||\n\t\t$2 ~ /^RWF_/ ||\n\t\t$2 ~ /^(HDIO|WIN|SMART)_/ ||\n\t\t$2 ~ /^CRYPTO_/ ||\n\t\t$2 ~ /^TIPC_/ ||\n\t\t$2 ~ /^DEVLINK_/ ||\n\t\t$2 !~ \"WMESGLEN\" &&\n\t\t$2 ~ /^W[A-Z0-9]+$/ ||\n\t\t$2 ~/^PPPIOC/ ||\n\t\t$2 ~ /^FAN_|FANOTIFY_/ ||\n\t\t$2 ~ /^BLK[A-Z]*(GET$|SET$|BUF$|PART$|SIZE)/ {printf(\"\\t%s = C.%s\\n\", $2, $2)}\n\t\t$2 ~ /^__WCOREFLAG$/ {next}\n\t\t$2 ~ /^__W[A-Z0-9]+$/ {printf(\"\\t%s = C.%s\\n\", substr($2,3), $2)}\n\n\t\t{next}\n\t' | sort\n\n\techo ')'\n) >_const.go\n\n# Pull out the error names for later.\nerrors=$(\n\techo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |\n\tawk '$1==\"#define\" && $2 ~ /^E[A-Z0-9_]+$/ { print $2 }' |\n\tsort\n)\n\n# Pull out the signal names for later.\nsignals=$(\n\techo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |\n\tawk '$1==\"#define\" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |\n\tegrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |\n\tsort\n)\n\n# Again, writing regexps to a file.\necho '#include <errno.h>' | $CC -x c - -E -dM $ccflags |\n\tawk '$1==\"#define\" && $2 ~ /^E[A-Z0-9_]+$/ { print \"^\\t\" $2 \"[ \\t]*=\" }' |\n\tsort >_error.grep\necho '#include <signal.h>' | $CC -x c - -E -dM $ccflags |\n\tawk '$1==\"#define\" && $2 ~ /^SIG[A-Z0-9]+$/ { print \"^\\t\" $2 \"[ \\t]*=\" }' |\n\tegrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |\n\tsort >_signal.grep\n\necho '// mkerrors.sh' \"$@\"\necho '// Code generated by the command above; see README.md. DO NOT EDIT.'\necho\necho \"// +build ${GOARCH},${GOOS}\"\necho\ngo tool cgo -godefs -- \"$@\" _const.go >_error.out\ncat _error.out | grep -vf _error.grep | grep -vf _signal.grep\necho\necho '// Errors'\necho 'const ('\ncat _error.out | grep -f _error.grep | sed 's/=\\(.*\\)/= syscall.Errno(\\1)/'\necho ')'\n\necho\necho '// Signals'\necho 'const ('\ncat _error.out | grep -f _signal.grep | sed 's/=\\(.*\\)/= syscall.Signal(\\1)/'\necho ')'\n\n# Run C program to print error and syscall strings.\n(\n\techo -E \"\n#include <stdio.h>\n#include <stdlib.h>\n#include <errno.h>\n#include <ctype.h>\n#include <string.h>\n#include <signal.h>\n\n#define nelem(x) (sizeof(x)/sizeof((x)[0]))\n\nenum { A = 'A', Z = 'Z', a = 'a', z = 'z' }; // avoid need for single quotes below\n\nstruct tuple {\n\tint num;\n\tconst char *name;\n};\n\nstruct tuple errors[] = {\n\"\n\tfor i in $errors\n\tdo\n\t\techo -E '\t{'$i', \"'$i'\" },'\n\tdone\n\n\techo -E \"\n};\n\nstruct tuple signals[] = {\n\"\n\tfor i in $signals\n\tdo\n\t\techo -E '\t{'$i', \"'$i'\" },'\n\tdone\n\n\t# Use -E because on some systems bash builtin interprets \\n itself.\n\techo -E '\n};\n\nstatic int\ntuplecmp(const void *a, const void *b)\n{\n\treturn ((struct tuple *)a)->num - ((struct tuple *)b)->num;\n}\n\nint\nmain(void)\n{\n\tint i, e;\n\tchar buf[1024], *p;\n\n\tprintf(\"\\n\\n// Error table\\n\");\n\tprintf(\"var errorList = [...]struct {\\n\");\n\tprintf(\"\\tnum  syscall.Errno\\n\");\n\tprintf(\"\\tname string\\n\");\n\tprintf(\"\\tdesc string\\n\");\n\tprintf(\"} {\\n\");\n\tqsort(errors, nelem(errors), sizeof errors[0], tuplecmp);\n\tfor(i=0; i<nelem(errors); i++) {\n\t\te = errors[i].num;\n\t\tif(i > 0 && errors[i-1].num == e)\n\t\t\tcontinue;\n\t\tstrcpy(buf, strerror(e));\n\t\t// lowercase first letter: Bad -> bad, but STREAM -> STREAM.\n\t\tif(A <= buf[0] && buf[0] <= Z && a <= buf[1] && buf[1] <= z)\n\t\t\tbuf[0] += a - A;\n\t\tprintf(\"\\t{ %d, \\\"%s\\\", \\\"%s\\\" },\\n\", e, errors[i].name, buf);\n\t}\n\tprintf(\"}\\n\\n\");\n\n\tprintf(\"\\n\\n// Signal table\\n\");\n\tprintf(\"var signalList = [...]struct {\\n\");\n\tprintf(\"\\tnum  syscall.Signal\\n\");\n\tprintf(\"\\tname string\\n\");\n\tprintf(\"\\tdesc string\\n\");\n\tprintf(\"} {\\n\");\n\tqsort(signals, nelem(signals), sizeof signals[0], tuplecmp);\n\tfor(i=0; i<nelem(signals); i++) {\n\t\te = signals[i].num;\n\t\tif(i > 0 && signals[i-1].num == e)\n\t\t\tcontinue;\n\t\tstrcpy(buf, strsignal(e));\n\t\t// lowercase first letter: Bad -> bad, but STREAM -> STREAM.\n\t\tif(A <= buf[0] && buf[0] <= Z && a <= buf[1] && buf[1] <= z)\n\t\t\tbuf[0] += a - A;\n\t\t// cut trailing : number.\n\t\tp = strrchr(buf, \":\"[0]);\n\t\tif(p)\n\t\t\t*p = '\\0';\n\t\tprintf(\"\\t{ %d, \\\"%s\\\", \\\"%s\\\" },\\n\", e, signals[i].name, buf);\n\t}\n\tprintf(\"}\\n\\n\");\n\n\treturn 0;\n}\n\n'\n) >_errors.c\n\n$CC $ccflags -o _errors _errors.c && $GORUN ./_errors && rm -f _errors.c _errors _const.go _error.grep _signal.grep _error.out\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/pagesize_unix.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\n// For Unix, get the pagesize from the runtime.\n\npackage unix\n\nimport \"syscall\"\n\nfunc Getpagesize() int {\n\treturn syscall.Getpagesize()\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/pledge_openbsd.go",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage unix\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"strconv\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// Pledge implements the pledge syscall.\n//\n// The pledge syscall does not accept execpromises on OpenBSD releases\n// before 6.3.\n//\n// execpromises must be empty when Pledge is called on OpenBSD\n// releases predating 6.3, otherwise an error will be returned.\n//\n// For more information see pledge(2).\nfunc Pledge(promises, execpromises string) error {\n\tmaj, min, err := majmin()\n\tif err != nil {\n\t\treturn err\n\t}\n\n\terr = pledgeAvailable(maj, min, execpromises)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tpptr, err := syscall.BytePtrFromString(promises)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// This variable will hold either a nil unsafe.Pointer or\n\t// an unsafe.Pointer to a string (execpromises).\n\tvar expr unsafe.Pointer\n\n\t// If we're running on OpenBSD > 6.2, pass execpromises to the syscall.\n\tif maj > 6 || (maj == 6 && min > 2) {\n\t\texptr, err := syscall.BytePtrFromString(execpromises)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\texpr = unsafe.Pointer(exptr)\n\t}\n\n\t_, _, e := syscall.Syscall(SYS_PLEDGE, uintptr(unsafe.Pointer(pptr)), uintptr(expr), 0)\n\tif e != 0 {\n\t\treturn e\n\t}\n\n\treturn nil\n}\n\n// PledgePromises implements the pledge syscall.\n//\n// This changes the promises and leaves the execpromises untouched.\n//\n// For more information see pledge(2).\nfunc PledgePromises(promises string) error {\n\tmaj, min, err := majmin()\n\tif err != nil {\n\t\treturn err\n\t}\n\n\terr = pledgeAvailable(maj, min, \"\")\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// This variable holds the execpromises and is always nil.\n\tvar expr unsafe.Pointer\n\n\tpptr, err := syscall.BytePtrFromString(promises)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t_, _, e := syscall.Syscall(SYS_PLEDGE, uintptr(unsafe.Pointer(pptr)), uintptr(expr), 0)\n\tif e != 0 {\n\t\treturn e\n\t}\n\n\treturn nil\n}\n\n// PledgeExecpromises implements the pledge syscall.\n//\n// This changes the execpromises and leaves the promises untouched.\n//\n// For more information see pledge(2).\nfunc PledgeExecpromises(execpromises string) error {\n\tmaj, min, err := majmin()\n\tif err != nil {\n\t\treturn err\n\t}\n\n\terr = pledgeAvailable(maj, min, execpromises)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// This variable holds the promises and is always nil.\n\tvar pptr unsafe.Pointer\n\n\texptr, err := syscall.BytePtrFromString(execpromises)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t_, _, e := syscall.Syscall(SYS_PLEDGE, uintptr(pptr), uintptr(unsafe.Pointer(exptr)), 0)\n\tif e != 0 {\n\t\treturn e\n\t}\n\n\treturn nil\n}\n\n// majmin returns major and minor version number for an OpenBSD system.\nfunc majmin() (major int, minor int, err error) {\n\tvar v Utsname\n\terr = Uname(&v)\n\tif err != nil {\n\t\treturn\n\t}\n\n\tmajor, err = strconv.Atoi(string(v.Release[0]))\n\tif err != nil {\n\t\terr = errors.New(\"cannot parse major version number returned by uname\")\n\t\treturn\n\t}\n\n\tminor, err = strconv.Atoi(string(v.Release[2]))\n\tif err != nil {\n\t\terr = errors.New(\"cannot parse minor version number returned by uname\")\n\t\treturn\n\t}\n\n\treturn\n}\n\n// pledgeAvailable checks for availability of the pledge(2) syscall\n// based on the running OpenBSD version.\nfunc pledgeAvailable(maj, min int, execpromises string) error {\n\t// If OpenBSD <= 5.9, pledge is not available.\n\tif (maj == 5 && min != 9) || maj < 5 {\n\t\treturn fmt.Errorf(\"pledge syscall is not available on OpenBSD %d.%d\", maj, min)\n\t}\n\n\t// If OpenBSD <= 6.2 and execpromises is not empty,\n\t// return an error - execpromises is not available before 6.3\n\tif (maj < 6 || (maj == 6 && min <= 2)) && execpromises != \"\" {\n\t\treturn fmt.Errorf(\"cannot use execpromises on OpenBSD %d.%d\", maj, min)\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/race.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build darwin,race linux,race freebsd,race\n\npackage unix\n\nimport (\n\t\"runtime\"\n\t\"unsafe\"\n)\n\nconst raceenabled = true\n\nfunc raceAcquire(addr unsafe.Pointer) {\n\truntime.RaceAcquire(addr)\n}\n\nfunc raceReleaseMerge(addr unsafe.Pointer) {\n\truntime.RaceReleaseMerge(addr)\n}\n\nfunc raceReadRange(addr unsafe.Pointer, len int) {\n\truntime.RaceReadRange(addr, len)\n}\n\nfunc raceWriteRange(addr unsafe.Pointer, len int) {\n\truntime.RaceWriteRange(addr, len)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/race0.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin,!race linux,!race freebsd,!race netbsd openbsd solaris dragonfly\n\npackage unix\n\nimport (\n\t\"unsafe\"\n)\n\nconst raceenabled = false\n\nfunc raceAcquire(addr unsafe.Pointer) {\n}\n\nfunc raceReleaseMerge(addr unsafe.Pointer) {\n}\n\nfunc raceReadRange(addr unsafe.Pointer, len int) {\n}\n\nfunc raceWriteRange(addr unsafe.Pointer, len int) {\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/readdirent_getdents.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix dragonfly freebsd linux netbsd openbsd\n\npackage unix\n\n// ReadDirent reads directory entries from fd and writes them into buf.\nfunc ReadDirent(fd int, buf []byte) (n int, err error) {\n\treturn Getdents(fd, buf)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/readdirent_getdirentries.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build darwin\n\npackage unix\n\nimport \"unsafe\"\n\n// ReadDirent reads directory entries from fd and writes them into buf.\nfunc ReadDirent(fd int, buf []byte) (n int, err error) {\n\t// Final argument is (basep *uintptr) and the syscall doesn't take nil.\n\t// 64 bits should be enough. (32 bits isn't even on 386). Since the\n\t// actual system call is getdirentries64, 64 is a good guess.\n\t// TODO(rsc): Can we use a single global basep for all calls?\n\tvar base = (*uintptr)(unsafe.Pointer(new(uint64)))\n\treturn Getdirentries(fd, buf, base)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage unix\n\n// Round the length of a raw sockaddr up to align it properly.\nfunc cmsgAlignOf(salen int) int {\n\tsalign := SizeofPtr\n\tif SizeofPtr == 8 && !supportsABI(_dragonflyABIChangeVersion) {\n\t\t// 64-bit Dragonfly before the September 2019 ABI changes still requires\n\t\t// 32-bit aligned access to network subsystem.\n\t\tsalign = 4\n\t}\n\treturn (salen + salign - 1) & ^(salign - 1)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/sockcmsg_linux.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Socket control messages\n\npackage unix\n\nimport \"unsafe\"\n\n// UnixCredentials encodes credentials into a socket control message\n// for sending to another process. This can be used for\n// authentication.\nfunc UnixCredentials(ucred *Ucred) []byte {\n\tb := make([]byte, CmsgSpace(SizeofUcred))\n\th := (*Cmsghdr)(unsafe.Pointer(&b[0]))\n\th.Level = SOL_SOCKET\n\th.Type = SCM_CREDENTIALS\n\th.SetLen(CmsgLen(SizeofUcred))\n\t*(*Ucred)(h.data(0)) = *ucred\n\treturn b\n}\n\n// ParseUnixCredentials decodes a socket control message that contains\n// credentials in a Ucred structure. To receive such a message, the\n// SO_PASSCRED option must be enabled on the socket.\nfunc ParseUnixCredentials(m *SocketControlMessage) (*Ucred, error) {\n\tif m.Header.Level != SOL_SOCKET {\n\t\treturn nil, EINVAL\n\t}\n\tif m.Header.Type != SCM_CREDENTIALS {\n\t\treturn nil, EINVAL\n\t}\n\tucred := *(*Ucred)(unsafe.Pointer(&m.Data[0]))\n\treturn &ucred, nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/sockcmsg_unix.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\n// Socket control messages\n\npackage unix\n\nimport (\n\t\"unsafe\"\n)\n\n// CmsgLen returns the value to store in the Len field of the Cmsghdr\n// structure, taking into account any necessary alignment.\nfunc CmsgLen(datalen int) int {\n\treturn cmsgAlignOf(SizeofCmsghdr) + datalen\n}\n\n// CmsgSpace returns the number of bytes an ancillary element with\n// payload of the passed data length occupies.\nfunc CmsgSpace(datalen int) int {\n\treturn cmsgAlignOf(SizeofCmsghdr) + cmsgAlignOf(datalen)\n}\n\nfunc (h *Cmsghdr) data(offset uintptr) unsafe.Pointer {\n\treturn unsafe.Pointer(uintptr(unsafe.Pointer(h)) + uintptr(cmsgAlignOf(SizeofCmsghdr)) + offset)\n}\n\n// SocketControlMessage represents a socket control message.\ntype SocketControlMessage struct {\n\tHeader Cmsghdr\n\tData   []byte\n}\n\n// ParseSocketControlMessage parses b as an array of socket control\n// messages.\nfunc ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error) {\n\tvar msgs []SocketControlMessage\n\ti := 0\n\tfor i+CmsgLen(0) <= len(b) {\n\t\th, dbuf, err := socketControlMessageHeaderAndData(b[i:])\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tm := SocketControlMessage{Header: *h, Data: dbuf}\n\t\tmsgs = append(msgs, m)\n\t\ti += cmsgAlignOf(int(h.Len))\n\t}\n\treturn msgs, nil\n}\n\nfunc socketControlMessageHeaderAndData(b []byte) (*Cmsghdr, []byte, error) {\n\th := (*Cmsghdr)(unsafe.Pointer(&b[0]))\n\tif h.Len < SizeofCmsghdr || uint64(h.Len) > uint64(len(b)) {\n\t\treturn nil, nil, EINVAL\n\t}\n\treturn h, b[cmsgAlignOf(SizeofCmsghdr):h.Len], nil\n}\n\n// UnixRights encodes a set of open file descriptors into a socket\n// control message for sending to another process.\nfunc UnixRights(fds ...int) []byte {\n\tdatalen := len(fds) * 4\n\tb := make([]byte, CmsgSpace(datalen))\n\th := (*Cmsghdr)(unsafe.Pointer(&b[0]))\n\th.Level = SOL_SOCKET\n\th.Type = SCM_RIGHTS\n\th.SetLen(CmsgLen(datalen))\n\tfor i, fd := range fds {\n\t\t*(*int32)(h.data(4 * uintptr(i))) = int32(fd)\n\t}\n\treturn b\n}\n\n// ParseUnixRights decodes a socket control message that contains an\n// integer array of open file descriptors from another process.\nfunc ParseUnixRights(m *SocketControlMessage) ([]int, error) {\n\tif m.Header.Level != SOL_SOCKET {\n\t\treturn nil, EINVAL\n\t}\n\tif m.Header.Type != SCM_RIGHTS {\n\t\treturn nil, EINVAL\n\t}\n\tfds := make([]int, len(m.Data)>>2)\n\tfor i, j := 0, 0; i < len(m.Data); i += 4 {\n\t\tfds[j] = int(*(*int32)(unsafe.Pointer(&m.Data[i])))\n\t\tj++\n\t}\n\treturn fds, nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin freebsd linux netbsd openbsd solaris\n\npackage unix\n\nimport (\n\t\"runtime\"\n)\n\n// Round the length of a raw sockaddr up to align it properly.\nfunc cmsgAlignOf(salen int) int {\n\tsalign := SizeofPtr\n\n\t// dragonfly needs to check ABI version at runtime, see cmsgAlignOf in\n\t// sockcmsg_dragonfly.go\n\tswitch runtime.GOOS {\n\tcase \"aix\":\n\t\t// There is no alignment on AIX.\n\t\tsalign = 1\n\tcase \"darwin\", \"ios\", \"illumos\", \"solaris\":\n\t\t// NOTE: It seems like 64-bit Darwin, Illumos and Solaris\n\t\t// kernels still require 32-bit aligned access to network\n\t\t// subsystem.\n\t\tif SizeofPtr == 8 {\n\t\t\tsalign = 4\n\t\t}\n\tcase \"netbsd\", \"openbsd\":\n\t\t// NetBSD and OpenBSD armv7 require 64-bit alignment.\n\t\tif runtime.GOARCH == \"arm\" {\n\t\t\tsalign = 8\n\t\t}\n\t\t// NetBSD aarch64 requires 128-bit alignment.\n\t\tif runtime.GOOS == \"netbsd\" && runtime.GOARCH == \"arm64\" {\n\t\t\tsalign = 16\n\t\t}\n\t}\n\n\treturn (salen + salign - 1) & ^(salign - 1)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/str.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\npackage unix\n\nfunc itoa(val int) string { // do it here rather than with fmt to avoid dependency\n\tif val < 0 {\n\t\treturn \"-\" + uitoa(uint(-val))\n\t}\n\treturn uitoa(uint(val))\n}\n\nfunc uitoa(val uint) string {\n\tvar buf [32]byte // big enough for int64\n\ti := len(buf) - 1\n\tfor val >= 10 {\n\t\tbuf[i] = byte(val%10 + '0')\n\t\ti--\n\t\tval /= 10\n\t}\n\tbuf[i] = byte(val + '0')\n\treturn string(buf[i:])\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\n// Package unix contains an interface to the low-level operating system\n// primitives. OS details vary depending on the underlying system, and\n// by default, godoc will display OS-specific documentation for the current\n// system. If you want godoc to display OS documentation for another\n// system, set $GOOS and $GOARCH to the desired system. For example, if\n// you want to view documentation for freebsd/arm on linux/amd64, set $GOOS\n// to freebsd and $GOARCH to arm.\n//\n// The primary use of this package is inside other packages that provide a more\n// portable interface to the system, such as \"os\", \"time\" and \"net\".  Use\n// those packages rather than this one if you can.\n//\n// For details of the functions and data types in this package consult\n// the manuals for the appropriate operating system.\n//\n// These calls return err == nil to indicate success; otherwise\n// err represents an operating system error describing the failure and\n// holds a value of type syscall.Errno.\npackage unix // import \"golang.org/x/sys/unix\"\n\nimport \"strings\"\n\n// ByteSliceFromString returns a NUL-terminated slice of bytes\n// containing the text of s. If s contains a NUL byte at any\n// location, it returns (nil, EINVAL).\nfunc ByteSliceFromString(s string) ([]byte, error) {\n\tif strings.IndexByte(s, 0) != -1 {\n\t\treturn nil, EINVAL\n\t}\n\ta := make([]byte, len(s)+1)\n\tcopy(a, s)\n\treturn a, nil\n}\n\n// BytePtrFromString returns a pointer to a NUL-terminated array of\n// bytes containing the text of s. If s contains a NUL byte at any\n// location, it returns (nil, EINVAL).\nfunc BytePtrFromString(s string) (*byte, error) {\n\ta, err := ByteSliceFromString(s)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &a[0], nil\n}\n\n// Single-word zero for use when we need a valid pointer to 0 bytes.\nvar _zero uintptr\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_aix.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix\n\n// Aix system calls.\n// This file is compiled as ordinary Go code,\n// but it is also input to mksyscall,\n// which parses the //sys lines and generates system call stubs.\n// Note that sometimes we use a lowercase //sys name and\n// wrap it in our own nicer implementation.\n\npackage unix\n\nimport \"unsafe\"\n\n/*\n * Wrapped\n */\n\n//sys\tutimes(path string, times *[2]Timeval) (err error)\nfunc Utimes(path string, tv []Timeval) error {\n\tif len(tv) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\n//sys\tutimensat(dirfd int, path string, times *[2]Timespec, flag int) (err error)\nfunc UtimesNano(path string, ts []Timespec) error {\n\tif len(ts) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)\n}\n\nfunc UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {\n\tif ts == nil {\n\t\treturn utimensat(dirfd, path, nil, flags)\n\t}\n\tif len(ts) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), flags)\n}\n\nfunc (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_INET\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrInet4, nil\n}\n\nfunc (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_INET6\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tsa.raw.Scope_id = sa.ZoneId\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrInet6, nil\n}\n\nfunc (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tname := sa.Name\n\tn := len(name)\n\tif n > len(sa.raw.Path) {\n\t\treturn nil, 0, EINVAL\n\t}\n\tif n == len(sa.raw.Path) && name[0] != '@' {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_UNIX\n\tfor i := 0; i < n; i++ {\n\t\tsa.raw.Path[i] = uint8(name[i])\n\t}\n\t// length is family (uint16), name, NUL.\n\tsl := _Socklen(2)\n\tif n > 0 {\n\t\tsl += _Socklen(n) + 1\n\t}\n\tif sa.raw.Path[0] == '@' {\n\t\tsa.raw.Path[0] = 0\n\t\t// Don't count trailing NUL for abstract address.\n\t\tsl--\n\t}\n\n\treturn unsafe.Pointer(&sa.raw), sl, nil\n}\n\nfunc Getsockname(fd int) (sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tif err = getsockname(fd, &rsa, &len); err != nil {\n\t\treturn\n\t}\n\treturn anyToSockaddr(fd, &rsa)\n}\n\n//sys\tgetcwd(buf []byte) (err error)\n\nconst ImplementsGetwd = true\n\nfunc Getwd() (ret string, err error) {\n\tfor len := uint64(4096); ; len *= 2 {\n\t\tb := make([]byte, len)\n\t\terr := getcwd(b)\n\t\tif err == nil {\n\t\t\ti := 0\n\t\t\tfor b[i] != 0 {\n\t\t\t\ti++\n\t\t\t}\n\t\t\treturn string(b[0:i]), nil\n\t\t}\n\t\tif err != ERANGE {\n\t\t\treturn \"\", err\n\t\t}\n\t}\n}\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\terr = getcwd(buf)\n\tif err == nil {\n\t\ti := 0\n\t\tfor buf[i] != 0 {\n\t\t\ti++\n\t\t}\n\t\tn = i + 1\n\t}\n\treturn\n}\n\nfunc Getgroups() (gids []int, err error) {\n\tn, err := getgroups(0, nil)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif n == 0 {\n\t\treturn nil, nil\n\t}\n\n\t// Sanity check group count. Max is 16 on BSD.\n\tif n < 0 || n > 1000 {\n\t\treturn nil, EINVAL\n\t}\n\n\ta := make([]_Gid_t, n)\n\tn, err = getgroups(n, &a[0])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tgids = make([]int, n)\n\tfor i, v := range a[0:n] {\n\t\tgids[i] = int(v)\n\t}\n\treturn\n}\n\nfunc Setgroups(gids []int) (err error) {\n\tif len(gids) == 0 {\n\t\treturn setgroups(0, nil)\n\t}\n\n\ta := make([]_Gid_t, len(gids))\n\tfor i, v := range gids {\n\t\ta[i] = _Gid_t(v)\n\t}\n\treturn setgroups(len(a), &a[0])\n}\n\n/*\n * Socket\n */\n\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n\nfunc Accept(fd int) (nfd int, sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tnfd, err = accept(fd, &rsa, &len)\n\tif nfd == -1 {\n\t\treturn\n\t}\n\tsa, err = anyToSockaddr(fd, &rsa)\n\tif err != nil {\n\t\tClose(nfd)\n\t\tnfd = 0\n\t}\n\treturn\n}\n\nfunc Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {\n\t// Recvmsg not implemented on AIX\n\tsa := new(SockaddrUnix)\n\treturn -1, -1, -1, sa, ENOSYS\n}\n\nfunc Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) {\n\t_, err = SendmsgN(fd, p, oob, to, flags)\n\treturn\n}\n\nfunc SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err error) {\n\t// SendmsgN not implemented on AIX\n\treturn -1, ENOSYS\n}\n\nfunc anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {\n\tswitch rsa.Addr.Family {\n\n\tcase AF_UNIX:\n\t\tpp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrUnix)\n\n\t\t// Some versions of AIX have a bug in getsockname (see IV78655).\n\t\t// We can't rely on sa.Len being set correctly.\n\t\tn := SizeofSockaddrUnix - 3 // subtract leading Family, Len, terminating NUL.\n\t\tfor i := 0; i < n; i++ {\n\t\t\tif pp.Path[i] == 0 {\n\t\t\t\tn = i\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tbytes := (*[10000]byte)(unsafe.Pointer(&pp.Path[0]))[0:n]\n\t\tsa.Name = string(bytes)\n\t\treturn sa, nil\n\n\tcase AF_INET:\n\t\tpp := (*RawSockaddrInet4)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrInet4)\n\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t}\n\t\treturn sa, nil\n\n\tcase AF_INET6:\n\t\tpp := (*RawSockaddrInet6)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrInet6)\n\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\tsa.ZoneId = pp.Scope_id\n\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t}\n\t\treturn sa, nil\n\t}\n\treturn nil, EAFNOSUPPORT\n}\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\terr = gettimeofday(tv, nil)\n\treturn\n}\n\nfunc Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\treturn sendfile(outfd, infd, offset, count)\n}\n\n// TODO\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\treturn -1, ENOSYS\n}\n\nfunc direntIno(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Ino), unsafe.Sizeof(Dirent{}.Ino))\n}\n\nfunc direntReclen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))\n}\n\nfunc direntNamlen(buf []byte) (uint64, bool) {\n\treclen, ok := direntReclen(buf)\n\tif !ok {\n\t\treturn 0, false\n\t}\n\treturn reclen - uint64(unsafe.Offsetof(Dirent{}.Name)), true\n}\n\n//sys\tgetdirent(fd int, buf []byte) (n int, err error)\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\treturn getdirent(fd, buf)\n}\n\n//sys\twait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid Pid_t, err error)\nfunc Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {\n\tvar status _C_int\n\tvar r Pid_t\n\terr = ERESTART\n\t// AIX wait4 may return with ERESTART errno, while the processus is still\n\t// active.\n\tfor err == ERESTART {\n\t\tr, err = wait4(Pid_t(pid), &status, options, rusage)\n\t}\n\twpid = int(r)\n\tif wstatus != nil {\n\t\t*wstatus = WaitStatus(status)\n\t}\n\treturn\n}\n\n/*\n * Wait\n */\n\ntype WaitStatus uint32\n\nfunc (w WaitStatus) Stopped() bool { return w&0x40 != 0 }\nfunc (w WaitStatus) StopSignal() Signal {\n\tif !w.Stopped() {\n\t\treturn -1\n\t}\n\treturn Signal(w>>8) & 0xFF\n}\n\nfunc (w WaitStatus) Exited() bool { return w&0xFF == 0 }\nfunc (w WaitStatus) ExitStatus() int {\n\tif !w.Exited() {\n\t\treturn -1\n\t}\n\treturn int((w >> 8) & 0xFF)\n}\n\nfunc (w WaitStatus) Signaled() bool { return w&0x40 == 0 && w&0xFF != 0 }\nfunc (w WaitStatus) Signal() Signal {\n\tif !w.Signaled() {\n\t\treturn -1\n\t}\n\treturn Signal(w>>16) & 0xFF\n}\n\nfunc (w WaitStatus) Continued() bool { return w&0x01000000 != 0 }\n\nfunc (w WaitStatus) CoreDump() bool { return w&0x80 == 0x80 }\n\nfunc (w WaitStatus) TrapCause() int { return -1 }\n\n//sys\tioctl(fd int, req uint, arg uintptr) (err error)\n\n// fcntl must never be called with cmd=F_DUP2FD because it doesn't work on AIX\n// There is no way to create a custom fcntl and to keep //sys fcntl easily,\n// Therefore, the programmer must call dup2 instead of fcntl in this case.\n\n// FcntlInt performs a fcntl syscall on fd with the provided command and argument.\n//sys\tFcntlInt(fd uintptr, cmd int, arg int) (r int,err error) = fcntl\n\n// FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.\n//sys\tFcntlFlock(fd uintptr, cmd int, lk *Flock_t) (err error) = fcntl\n\n//sys\tfcntl(fd int, cmd int, arg int) (val int, err error)\n\n/*\n * Direct access\n */\n\n//sys\tAcct(path string) (err error)\n//sys\tChdir(path string) (err error)\n//sys\tChroot(path string) (err error)\n//sys\tClose(fd int) (err error)\n//sys\tDup(oldfd int) (fd int, err error)\n//sys\tExit(code int)\n//sys\tFaccessat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchdir(fd int) (err error)\n//sys\tFchmod(fd int, mode uint32) (err error)\n//sys\tFchmodat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchownat(dirfd int, path string, uid int, gid int, flags int) (err error)\n//sys\tFdatasync(fd int) (err error)\n//sys\tFsync(fd int) (err error)\n// readdir_r\n//sysnb\tGetpgid(pid int) (pgid int, err error)\n\n//sys\tGetpgrp() (pid int)\n\n//sysnb\tGetpid() (pid int)\n//sysnb\tGetppid() (ppid int)\n//sys\tGetpriority(which int, who int) (prio int, err error)\n//sysnb\tGetrusage(who int, rusage *Rusage) (err error)\n//sysnb\tGetsid(pid int) (sid int, err error)\n//sysnb\tKill(pid int, sig Signal) (err error)\n//sys\tKlogctl(typ int, buf []byte) (n int, err error) = syslog\n//sys\tMkdir(dirfd int, path string, mode uint32) (err error)\n//sys\tMkdirat(dirfd int, path string, mode uint32) (err error)\n//sys\tMkfifo(path string, mode uint32) (err error)\n//sys\tMknod(path string, mode uint32, dev int) (err error)\n//sys\tMknodat(dirfd int, path string, mode uint32, dev int) (err error)\n//sys\tNanosleep(time *Timespec, leftover *Timespec) (err error)\n//sys   Open(path string, mode int, perm uint32) (fd int, err error) = open64\n//sys   Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error)\n//sys\tread(fd int, p []byte) (n int, err error)\n//sys\tReadlink(path string, buf []byte) (n int, err error)\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSetdomainname(p []byte) (err error)\n//sys\tSethostname(p []byte) (err error)\n//sysnb\tSetpgid(pid int, pgid int) (err error)\n//sysnb\tSetsid() (pid int, err error)\n//sysnb\tSettimeofday(tv *Timeval) (err error)\n\n//sys\tSetuid(uid int) (err error)\n//sys\tSetgid(uid int) (err error)\n\n//sys\tSetpriority(which int, who int, prio int) (err error)\n//sys\tStatx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error)\n//sys\tSync()\n//sysnb\tTimes(tms *Tms) (ticks uintptr, err error)\n//sysnb\tUmask(mask int) (oldmask int)\n//sysnb\tUname(buf *Utsname) (err error)\n//sys   Unlink(path string) (err error)\n//sys   Unlinkat(dirfd int, path string, flags int) (err error)\n//sys\tUstat(dev int, ubuf *Ustat_t) (err error)\n//sys\twrite(fd int, p []byte) (n int, err error)\n//sys\treadlen(fd int, p *byte, np int) (n int, err error) = read\n//sys\twritelen(fd int, p *byte, np int) (n int, err error) = write\n\n//sys\tDup2(oldfd int, newfd int) (err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = posix_fadvise64\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tfstat(fd int, stat *Stat_t) (err error)\n//sys\tfstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = fstatat\n//sys\tFstatfs(fd int, buf *Statfs_t) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (euid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetuid() (uid int)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tListen(s int, n int) (err error)\n//sys\tlstat(path string, stat *Stat_t) (err error)\n//sys\tPause() (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = pread64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = pwrite64\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)\n//sys\tPselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, sigmask *Sigset_t) (n int, err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sys\tShutdown(fd int, how int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)\n//sys\tstat(path string, statptr *Stat_t) (err error)\n//sys\tStatfs(path string, buf *Statfs_t) (err error)\n//sys\tTruncate(path string, length int64) (err error)\n\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error)\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sysnb\tsocketpair(domain int, typ int, proto int, fd *[2]int32) (err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n\n// In order to use msghdr structure with Control, Controllen, nrecvmsg and nsendmsg must be used.\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error) = nrecvmsg\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error) = nsendmsg\n\n//sys\tmunmap(addr uintptr, length uintptr) (err error)\n\nvar mapper = &mmapper{\n\tactive: make(map[*byte][]byte),\n\tmmap:   mmap,\n\tmunmap: munmap,\n}\n\nfunc Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error) {\n\treturn mapper.Mmap(fd, offset, length, prot, flags)\n}\n\nfunc Munmap(b []byte) (err error) {\n\treturn mapper.Munmap(b)\n}\n\n//sys\tMadvise(b []byte, advice int) (err error)\n//sys\tMprotect(b []byte, prot int) (err error)\n//sys\tMlock(b []byte) (err error)\n//sys\tMlockall(flags int) (err error)\n//sys\tMsync(b []byte, flags int) (err error)\n//sys\tMunlock(b []byte) (err error)\n//sys\tMunlockall() (err error)\n\n//sysnb pipe(p *[2]_C_int) (err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe(&pp)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sys\tpoll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n\n//sys\tgettimeofday(tv *Timeval, tzp *Timezone) (err error)\n//sysnb\tTime(t *Time_t) (tt Time_t, err error)\n//sys\tUtime(path string, buf *Utimbuf) (err error)\n\n//sys\tGetsystemcfg(label int) (n uint64)\n\n//sys\tumount(target string) (err error)\nfunc Unmount(target string, flags int) (err error) {\n\tif flags != 0 {\n\t\t// AIX doesn't have any flags for umount.\n\t\treturn ENOSYS\n\t}\n\treturn umount(target)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_aix_ppc.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix\n// +build ppc\n\npackage unix\n\n//sysnb\tGetrlimit(resource int, rlim *Rlimit) (err error) = getrlimit64\n//sysnb\tSetrlimit(resource int, rlim *Rlimit) (err error) = setrlimit64\n//sys\tSeek(fd int, offset int64, whence int) (off int64, err error) = lseek64\n\n//sys\tmmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: int32(sec), Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: int32(sec), Usec: int32(usec)}\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc Fstat(fd int, stat *Stat_t) error {\n\treturn fstat(fd, stat)\n}\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {\n\treturn fstatat(dirfd, path, stat, flags)\n}\n\nfunc Lstat(path string, stat *Stat_t) error {\n\treturn lstat(path, stat)\n}\n\nfunc Stat(path string, statptr *Stat_t) error {\n\treturn stat(path, statptr)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix\n// +build ppc64\n\npackage unix\n\n//sysnb\tGetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tSetrlimit(resource int, rlim *Rlimit) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (off int64, err error) = lseek\n\n//sys\tmmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) = mmap64\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: int64(sec), Usec: int32(usec)}\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\n// In order to only have Timespec structure, type of Stat_t's fields\n// Atim, Mtim and Ctim is changed from StTimespec to Timespec during\n// ztypes generation.\n// On ppc64, Timespec.Nsec is an int64 while StTimespec.Nsec is an\n// int32, so the fields' value must be modified.\nfunc fixStatTimFields(stat *Stat_t) {\n\tstat.Atim.Nsec >>= 32\n\tstat.Mtim.Nsec >>= 32\n\tstat.Ctim.Nsec >>= 32\n}\n\nfunc Fstat(fd int, stat *Stat_t) error {\n\terr := fstat(fd, stat)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfixStatTimFields(stat)\n\treturn nil\n}\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {\n\terr := fstatat(dirfd, path, stat, flags)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfixStatTimFields(stat)\n\treturn nil\n}\n\nfunc Lstat(path string, stat *Stat_t) error {\n\terr := lstat(path, stat)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfixStatTimFields(stat)\n\treturn nil\n}\n\nfunc Stat(path string, statptr *Stat_t) error {\n\terr := stat(path, statptr)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfixStatTimFields(statptr)\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_bsd.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build darwin dragonfly freebsd netbsd openbsd\n\n// BSD system call wrappers shared by *BSD based systems\n// including OS X (Darwin) and FreeBSD.  Like the other\n// syscall_*.go files it is compiled as Go code but also\n// used as input to mksyscall which parses the //sys\n// lines and generates system call stubs.\n\npackage unix\n\nimport (\n\t\"runtime\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nconst ImplementsGetwd = true\n\nfunc Getwd() (string, error) {\n\tvar buf [PathMax]byte\n\t_, err := Getcwd(buf[0:])\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tn := clen(buf[:])\n\tif n < 1 {\n\t\treturn \"\", EINVAL\n\t}\n\treturn string(buf[:n]), nil\n}\n\n/*\n * Wrapped\n */\n\n//sysnb\tgetgroups(ngid int, gid *_Gid_t) (n int, err error)\n//sysnb\tsetgroups(ngid int, gid *_Gid_t) (err error)\n\nfunc Getgroups() (gids []int, err error) {\n\tn, err := getgroups(0, nil)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif n == 0 {\n\t\treturn nil, nil\n\t}\n\n\t// Sanity check group count. Max is 16 on BSD.\n\tif n < 0 || n > 1000 {\n\t\treturn nil, EINVAL\n\t}\n\n\ta := make([]_Gid_t, n)\n\tn, err = getgroups(n, &a[0])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tgids = make([]int, n)\n\tfor i, v := range a[0:n] {\n\t\tgids[i] = int(v)\n\t}\n\treturn\n}\n\nfunc Setgroups(gids []int) (err error) {\n\tif len(gids) == 0 {\n\t\treturn setgroups(0, nil)\n\t}\n\n\ta := make([]_Gid_t, len(gids))\n\tfor i, v := range gids {\n\t\ta[i] = _Gid_t(v)\n\t}\n\treturn setgroups(len(a), &a[0])\n}\n\n// Wait status is 7 bits at bottom, either 0 (exited),\n// 0x7F (stopped), or a signal number that caused an exit.\n// The 0x80 bit is whether there was a core dump.\n// An extra number (exit code, signal causing a stop)\n// is in the high bits.\n\ntype WaitStatus uint32\n\nconst (\n\tmask  = 0x7F\n\tcore  = 0x80\n\tshift = 8\n\n\texited  = 0\n\tkilled  = 9\n\tstopped = 0x7F\n)\n\nfunc (w WaitStatus) Exited() bool { return w&mask == exited }\n\nfunc (w WaitStatus) ExitStatus() int {\n\tif w&mask != exited {\n\t\treturn -1\n\t}\n\treturn int(w >> shift)\n}\n\nfunc (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }\n\nfunc (w WaitStatus) Signal() syscall.Signal {\n\tsig := syscall.Signal(w & mask)\n\tif sig == stopped || sig == 0 {\n\t\treturn -1\n\t}\n\treturn sig\n}\n\nfunc (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }\n\nfunc (w WaitStatus) Stopped() bool { return w&mask == stopped && syscall.Signal(w>>shift) != SIGSTOP }\n\nfunc (w WaitStatus) Killed() bool { return w&mask == killed && syscall.Signal(w>>shift) != SIGKILL }\n\nfunc (w WaitStatus) Continued() bool { return w&mask == stopped && syscall.Signal(w>>shift) == SIGSTOP }\n\nfunc (w WaitStatus) StopSignal() syscall.Signal {\n\tif !w.Stopped() {\n\t\treturn -1\n\t}\n\treturn syscall.Signal(w>>shift) & 0xFF\n}\n\nfunc (w WaitStatus) TrapCause() int { return -1 }\n\n//sys\twait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error)\n\nfunc Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {\n\tvar status _C_int\n\twpid, err = wait4(pid, &status, options, rusage)\n\tif wstatus != nil {\n\t\t*wstatus = WaitStatus(status)\n\t}\n\treturn\n}\n\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\tShutdown(s int, how int) (err error)\n\nfunc (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Len = SizeofSockaddrInet4\n\tsa.raw.Family = AF_INET\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil\n}\n\nfunc (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Len = SizeofSockaddrInet6\n\tsa.raw.Family = AF_INET6\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tsa.raw.Scope_id = sa.ZoneId\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil\n}\n\nfunc (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tname := sa.Name\n\tn := len(name)\n\tif n >= len(sa.raw.Path) || n == 0 {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Len = byte(3 + n) // 2 for Family, Len; 1 for NUL\n\tsa.raw.Family = AF_UNIX\n\tfor i := 0; i < n; i++ {\n\t\tsa.raw.Path[i] = int8(name[i])\n\t}\n\treturn unsafe.Pointer(&sa.raw), _Socklen(sa.raw.Len), nil\n}\n\nfunc (sa *SockaddrDatalink) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Index == 0 {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Len = sa.Len\n\tsa.raw.Family = AF_LINK\n\tsa.raw.Index = sa.Index\n\tsa.raw.Type = sa.Type\n\tsa.raw.Nlen = sa.Nlen\n\tsa.raw.Alen = sa.Alen\n\tsa.raw.Slen = sa.Slen\n\tfor i := 0; i < len(sa.raw.Data); i++ {\n\t\tsa.raw.Data[i] = sa.Data[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrDatalink, nil\n}\n\nfunc anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {\n\tswitch rsa.Addr.Family {\n\tcase AF_LINK:\n\t\tpp := (*RawSockaddrDatalink)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrDatalink)\n\t\tsa.Len = pp.Len\n\t\tsa.Family = pp.Family\n\t\tsa.Index = pp.Index\n\t\tsa.Type = pp.Type\n\t\tsa.Nlen = pp.Nlen\n\t\tsa.Alen = pp.Alen\n\t\tsa.Slen = pp.Slen\n\t\tfor i := 0; i < len(sa.Data); i++ {\n\t\t\tsa.Data[i] = pp.Data[i]\n\t\t}\n\t\treturn sa, nil\n\n\tcase AF_UNIX:\n\t\tpp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))\n\t\tif pp.Len < 2 || pp.Len > SizeofSockaddrUnix {\n\t\t\treturn nil, EINVAL\n\t\t}\n\t\tsa := new(SockaddrUnix)\n\n\t\t// Some BSDs include the trailing NUL in the length, whereas\n\t\t// others do not. Work around this by subtracting the leading\n\t\t// family and len. The path is then scanned to see if a NUL\n\t\t// terminator still exists within the length.\n\t\tn := int(pp.Len) - 2 // subtract leading Family, Len\n\t\tfor i := 0; i < n; i++ {\n\t\t\tif pp.Path[i] == 0 {\n\t\t\t\t// found early NUL; assume Len included the NUL\n\t\t\t\t// or was overestimating.\n\t\t\t\tn = i\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tbytes := (*[len(pp.Path)]byte)(unsafe.Pointer(&pp.Path[0]))[0:n]\n\t\tsa.Name = string(bytes)\n\t\treturn sa, nil\n\n\tcase AF_INET:\n\t\tpp := (*RawSockaddrInet4)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrInet4)\n\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t}\n\t\treturn sa, nil\n\n\tcase AF_INET6:\n\t\tpp := (*RawSockaddrInet6)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrInet6)\n\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\tsa.ZoneId = pp.Scope_id\n\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t}\n\t\treturn sa, nil\n\t}\n\treturn nil, EAFNOSUPPORT\n}\n\nfunc Accept(fd int) (nfd int, sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tnfd, err = accept(fd, &rsa, &len)\n\tif err != nil {\n\t\treturn\n\t}\n\tif (runtime.GOOS == \"darwin\" || runtime.GOOS == \"ios\") && len == 0 {\n\t\t// Accepted socket has no address.\n\t\t// This is likely due to a bug in xnu kernels,\n\t\t// where instead of ECONNABORTED error socket\n\t\t// is accepted, but has no address.\n\t\tClose(nfd)\n\t\treturn 0, nil, ECONNABORTED\n\t}\n\tsa, err = anyToSockaddr(fd, &rsa)\n\tif err != nil {\n\t\tClose(nfd)\n\t\tnfd = 0\n\t}\n\treturn\n}\n\nfunc Getsockname(fd int) (sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tif err = getsockname(fd, &rsa, &len); err != nil {\n\t\treturn\n\t}\n\t// TODO(jsing): DragonFly has a \"bug\" (see issue 3349), which should be\n\t// reported upstream.\n\tif runtime.GOOS == \"dragonfly\" && rsa.Addr.Family == AF_UNSPEC && rsa.Addr.Len == 0 {\n\t\trsa.Addr.Family = AF_UNIX\n\t\trsa.Addr.Len = SizeofSockaddrUnix\n\t}\n\treturn anyToSockaddr(fd, &rsa)\n}\n\n//sysnb socketpair(domain int, typ int, proto int, fd *[2]int32) (err error)\n\n// GetsockoptString returns the string value of the socket option opt for the\n// socket associated with fd at the given socket level.\nfunc GetsockoptString(fd, level, opt int) (string, error) {\n\tbuf := make([]byte, 256)\n\tvallen := _Socklen(len(buf))\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&buf[0]), &vallen)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn string(buf[:vallen-1]), nil\n}\n\n//sys   recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys   sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error)\n\nfunc Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {\n\tvar msg Msghdr\n\tvar rsa RawSockaddrAny\n\tmsg.Name = (*byte)(unsafe.Pointer(&rsa))\n\tmsg.Namelen = uint32(SizeofSockaddrAny)\n\tvar iov Iovec\n\tif len(p) > 0 {\n\t\tiov.Base = (*byte)(unsafe.Pointer(&p[0]))\n\t\tiov.SetLen(len(p))\n\t}\n\tvar dummy byte\n\tif len(oob) > 0 {\n\t\t// receive at least one normal byte\n\t\tif len(p) == 0 {\n\t\t\tiov.Base = &dummy\n\t\t\tiov.SetLen(1)\n\t\t}\n\t\tmsg.Control = (*byte)(unsafe.Pointer(&oob[0]))\n\t\tmsg.SetControllen(len(oob))\n\t}\n\tmsg.Iov = &iov\n\tmsg.Iovlen = 1\n\tif n, err = recvmsg(fd, &msg, flags); err != nil {\n\t\treturn\n\t}\n\toobn = int(msg.Controllen)\n\trecvflags = int(msg.Flags)\n\t// source address is only specified if the socket is unconnected\n\tif rsa.Addr.Family != AF_UNSPEC {\n\t\tfrom, err = anyToSockaddr(fd, &rsa)\n\t}\n\treturn\n}\n\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error)\n\nfunc Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) {\n\t_, err = SendmsgN(fd, p, oob, to, flags)\n\treturn\n}\n\nfunc SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err error) {\n\tvar ptr unsafe.Pointer\n\tvar salen _Socklen\n\tif to != nil {\n\t\tptr, salen, err = to.sockaddr()\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t}\n\tvar msg Msghdr\n\tmsg.Name = (*byte)(unsafe.Pointer(ptr))\n\tmsg.Namelen = uint32(salen)\n\tvar iov Iovec\n\tif len(p) > 0 {\n\t\tiov.Base = (*byte)(unsafe.Pointer(&p[0]))\n\t\tiov.SetLen(len(p))\n\t}\n\tvar dummy byte\n\tif len(oob) > 0 {\n\t\t// send at least one normal byte\n\t\tif len(p) == 0 {\n\t\t\tiov.Base = &dummy\n\t\t\tiov.SetLen(1)\n\t\t}\n\t\tmsg.Control = (*byte)(unsafe.Pointer(&oob[0]))\n\t\tmsg.SetControllen(len(oob))\n\t}\n\tmsg.Iov = &iov\n\tmsg.Iovlen = 1\n\tif n, err = sendmsg(fd, &msg, flags); err != nil {\n\t\treturn 0, err\n\t}\n\tif len(oob) > 0 && len(p) == 0 {\n\t\tn = 0\n\t}\n\treturn n, nil\n}\n\n//sys\tkevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error)\n\nfunc Kevent(kq int, changes, events []Kevent_t, timeout *Timespec) (n int, err error) {\n\tvar change, event unsafe.Pointer\n\tif len(changes) > 0 {\n\t\tchange = unsafe.Pointer(&changes[0])\n\t}\n\tif len(events) > 0 {\n\t\tevent = unsafe.Pointer(&events[0])\n\t}\n\treturn kevent(kq, change, len(changes), event, len(events), timeout)\n}\n\n// sysctlmib translates name to mib number and appends any additional args.\nfunc sysctlmib(name string, args ...int) ([]_C_int, error) {\n\t// Translate name to mib number.\n\tmib, err := nametomib(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tfor _, a := range args {\n\t\tmib = append(mib, _C_int(a))\n\t}\n\n\treturn mib, nil\n}\n\nfunc Sysctl(name string) (string, error) {\n\treturn SysctlArgs(name)\n}\n\nfunc SysctlArgs(name string, args ...int) (string, error) {\n\tbuf, err := SysctlRaw(name, args...)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tn := len(buf)\n\n\t// Throw away terminating NUL.\n\tif n > 0 && buf[n-1] == '\\x00' {\n\t\tn--\n\t}\n\treturn string(buf[0:n]), nil\n}\n\nfunc SysctlUint32(name string) (uint32, error) {\n\treturn SysctlUint32Args(name)\n}\n\nfunc SysctlUint32Args(name string, args ...int) (uint32, error) {\n\tmib, err := sysctlmib(name, args...)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\n\tn := uintptr(4)\n\tbuf := make([]byte, 4)\n\tif err := sysctl(mib, &buf[0], &n, nil, 0); err != nil {\n\t\treturn 0, err\n\t}\n\tif n != 4 {\n\t\treturn 0, EIO\n\t}\n\treturn *(*uint32)(unsafe.Pointer(&buf[0])), nil\n}\n\nfunc SysctlUint64(name string, args ...int) (uint64, error) {\n\tmib, err := sysctlmib(name, args...)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\n\tn := uintptr(8)\n\tbuf := make([]byte, 8)\n\tif err := sysctl(mib, &buf[0], &n, nil, 0); err != nil {\n\t\treturn 0, err\n\t}\n\tif n != 8 {\n\t\treturn 0, EIO\n\t}\n\treturn *(*uint64)(unsafe.Pointer(&buf[0])), nil\n}\n\nfunc SysctlRaw(name string, args ...int) ([]byte, error) {\n\tmib, err := sysctlmib(name, args...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Find size.\n\tn := uintptr(0)\n\tif err := sysctl(mib, nil, &n, nil, 0); err != nil {\n\t\treturn nil, err\n\t}\n\tif n == 0 {\n\t\treturn nil, nil\n\t}\n\n\t// Read into buffer of that size.\n\tbuf := make([]byte, n)\n\tif err := sysctl(mib, &buf[0], &n, nil, 0); err != nil {\n\t\treturn nil, err\n\t}\n\n\t// The actual call may return less than the original reported required\n\t// size so ensure we deal with that.\n\treturn buf[:n], nil\n}\n\nfunc SysctlClockinfo(name string) (*Clockinfo, error) {\n\tmib, err := sysctlmib(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tn := uintptr(SizeofClockinfo)\n\tvar ci Clockinfo\n\tif err := sysctl(mib, (*byte)(unsafe.Pointer(&ci)), &n, nil, 0); err != nil {\n\t\treturn nil, err\n\t}\n\tif n != SizeofClockinfo {\n\t\treturn nil, EIO\n\t}\n\treturn &ci, nil\n}\n\nfunc SysctlTimeval(name string) (*Timeval, error) {\n\tmib, err := sysctlmib(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar tv Timeval\n\tn := uintptr(unsafe.Sizeof(tv))\n\tif err := sysctl(mib, (*byte)(unsafe.Pointer(&tv)), &n, nil, 0); err != nil {\n\t\treturn nil, err\n\t}\n\tif n != unsafe.Sizeof(tv) {\n\t\treturn nil, EIO\n\t}\n\treturn &tv, nil\n}\n\n//sys\tutimes(path string, timeval *[2]Timeval) (err error)\n\nfunc Utimes(path string, tv []Timeval) error {\n\tif tv == nil {\n\t\treturn utimes(path, nil)\n\t}\n\tif len(tv) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\nfunc UtimesNano(path string, ts []Timespec) error {\n\tif ts == nil {\n\t\terr := utimensat(AT_FDCWD, path, nil, 0)\n\t\tif err != ENOSYS {\n\t\t\treturn err\n\t\t}\n\t\treturn utimes(path, nil)\n\t}\n\tif len(ts) != 2 {\n\t\treturn EINVAL\n\t}\n\t// Darwin setattrlist can set nanosecond timestamps\n\terr := setattrlistTimes(path, ts, 0)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\terr = utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\t// Not as efficient as it could be because Timespec and\n\t// Timeval have different types in the different OSes\n\ttv := [2]Timeval{\n\t\tNsecToTimeval(TimespecToNsec(ts[0])),\n\t\tNsecToTimeval(TimespecToNsec(ts[1])),\n\t}\n\treturn utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\nfunc UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {\n\tif ts == nil {\n\t\treturn utimensat(dirfd, path, nil, flags)\n\t}\n\tif len(ts) != 2 {\n\t\treturn EINVAL\n\t}\n\terr := setattrlistTimes(path, ts, flags)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\treturn utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), flags)\n}\n\n//sys\tfutimes(fd int, timeval *[2]Timeval) (err error)\n\nfunc Futimes(fd int, tv []Timeval) error {\n\tif tv == nil {\n\t\treturn futimes(fd, nil)\n\t}\n\tif len(tv) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn futimes(fd, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\n//sys   poll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n\n// TODO: wrap\n//\tAcct(name nil-string) (err error)\n//\tGethostuuid(uuid *byte, timeout *Timespec) (err error)\n//\tPtrace(req int, pid int, addr uintptr, data int) (ret uintptr, err error)\n\nvar mapper = &mmapper{\n\tactive: make(map[*byte][]byte),\n\tmmap:   mmap,\n\tmunmap: munmap,\n}\n\nfunc Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error) {\n\treturn mapper.Mmap(fd, offset, length, prot, flags)\n}\n\nfunc Munmap(b []byte) (err error) {\n\treturn mapper.Munmap(b)\n}\n\n//sys\tMadvise(b []byte, behav int) (err error)\n//sys\tMlock(b []byte) (err error)\n//sys\tMlockall(flags int) (err error)\n//sys\tMprotect(b []byte, prot int) (err error)\n//sys\tMsync(b []byte, flags int) (err error)\n//sys\tMunlock(b []byte) (err error)\n//sys\tMunlockall() (err error)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_darwin.1_12.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build darwin,go1.12,!go1.13\n\npackage unix\n\nimport (\n\t\"unsafe\"\n)\n\nconst _SYS_GETDIRENTRIES64 = 344\n\nfunc Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\t// To implement this using libSystem we'd need syscall_syscallPtr for\n\t// fdopendir. However, syscallPtr was only added in Go 1.13, so we fall\n\t// back to raw syscalls for this func on Go 1.12.\n\tvar p unsafe.Pointer\n\tif len(buf) > 0 {\n\t\tp = unsafe.Pointer(&buf[0])\n\t} else {\n\t\tp = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(_SYS_GETDIRENTRIES64, uintptr(fd), uintptr(p), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\treturn n, errnoErr(e1)\n\t}\n\treturn n, nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_darwin.1_13.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build darwin,go1.13\n\npackage unix\n\nimport (\n\t\"unsafe\"\n\n\t\"golang.org/x/sys/internal/unsafeheader\"\n)\n\n//sys\tclosedir(dir uintptr) (err error)\n//sys\treaddir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno)\n\nfunc fdopendir(fd int) (dir uintptr, err error) {\n\tr0, _, e1 := syscall_syscallPtr(funcPC(libc_fdopendir_trampoline), uintptr(fd), 0, 0)\n\tdir = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fdopendir_trampoline()\n\n//go:linkname libc_fdopendir libc_fdopendir\n//go:cgo_import_dynamic libc_fdopendir fdopendir \"/usr/lib/libSystem.B.dylib\"\n\nfunc Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\t// Simulate Getdirentries using fdopendir/readdir_r/closedir.\n\t// We store the number of entries to skip in the seek\n\t// offset of fd. See issue #31368.\n\t// It's not the full required semantics, but should handle the case\n\t// of calling Getdirentries or ReadDirent repeatedly.\n\t// It won't handle assigning the results of lseek to *basep, or handle\n\t// the directory being edited underfoot.\n\tskip, err := Seek(fd, 0, 1 /* SEEK_CUR */)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\n\t// We need to duplicate the incoming file descriptor\n\t// because the caller expects to retain control of it, but\n\t// fdopendir expects to take control of its argument.\n\t// Just Dup'ing the file descriptor is not enough, as the\n\t// result shares underlying state. Use Openat to make a really\n\t// new file descriptor referring to the same directory.\n\tfd2, err := Openat(fd, \".\", O_RDONLY, 0)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\td, err := fdopendir(fd2)\n\tif err != nil {\n\t\tClose(fd2)\n\t\treturn 0, err\n\t}\n\tdefer closedir(d)\n\n\tvar cnt int64\n\tfor {\n\t\tvar entry Dirent\n\t\tvar entryp *Dirent\n\t\te := readdir_r(d, &entry, &entryp)\n\t\tif e != 0 {\n\t\t\treturn n, errnoErr(e)\n\t\t}\n\t\tif entryp == nil {\n\t\t\tbreak\n\t\t}\n\t\tif skip > 0 {\n\t\t\tskip--\n\t\t\tcnt++\n\t\t\tcontinue\n\t\t}\n\n\t\treclen := int(entry.Reclen)\n\t\tif reclen > len(buf) {\n\t\t\t// Not enough room. Return for now.\n\t\t\t// The counter will let us know where we should start up again.\n\t\t\t// Note: this strategy for suspending in the middle and\n\t\t\t// restarting is O(n^2) in the length of the directory. Oh well.\n\t\t\tbreak\n\t\t}\n\n\t\t// Copy entry into return buffer.\n\t\tvar s []byte\n\t\thdr := (*unsafeheader.Slice)(unsafe.Pointer(&s))\n\t\thdr.Data = unsafe.Pointer(&entry)\n\t\thdr.Cap = reclen\n\t\thdr.Len = reclen\n\t\tcopy(buf, s)\n\n\t\tbuf = buf[reclen:]\n\t\tn += reclen\n\t\tcnt++\n\t}\n\t// Set the seek offset of the input fd to record\n\t// how many files we've already returned.\n\t_, err = Seek(fd, cnt, 0 /* SEEK_SET */)\n\tif err != nil {\n\t\treturn n, err\n\t}\n\n\treturn n, nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_darwin.go",
    "content": "// Copyright 2009,2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Darwin system calls.\n// This file is compiled as ordinary Go code,\n// but it is also input to mksyscall,\n// which parses the //sys lines and generates system call stubs.\n// Note that sometimes we use a lowercase //sys name and wrap\n// it in our own nicer implementation, either here or in\n// syscall_bsd.go or syscall_unix.go.\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.\ntype SockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n\traw    RawSockaddrDatalink\n}\n\n// Some external packages rely on SYS___SYSCTL being defined to implement their\n// own sysctl wrappers. Provide it here, even though direct syscalls are no\n// longer supported on darwin.\nconst SYS___SYSCTL = 202\n\n// Translate \"kern.hostname\" to []_C_int{0,1,2,3}.\nfunc nametomib(name string) (mib []_C_int, err error) {\n\tconst siz = unsafe.Sizeof(mib[0])\n\n\t// NOTE(rsc): It seems strange to set the buffer to have\n\t// size CTL_MAXNAME+2 but use only CTL_MAXNAME\n\t// as the size. I don't know why the +2 is here, but the\n\t// kernel uses +2 for its own implementation of this function.\n\t// I am scared that if we don't include the +2 here, the kernel\n\t// will silently write 2 words farther than we specify\n\t// and we'll get memory corruption.\n\tvar buf [CTL_MAXNAME + 2]_C_int\n\tn := uintptr(CTL_MAXNAME) * siz\n\n\tp := (*byte)(unsafe.Pointer(&buf[0]))\n\tbytes, err := ByteSliceFromString(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Magic sysctl: \"setting\" 0.3 to a string name\n\t// lets you read back the array of integers form.\n\tif err = sysctl([]_C_int{0, 3}, p, &n, &bytes[0], uintptr(len(name))); err != nil {\n\t\treturn nil, err\n\t}\n\treturn buf[0 : n/siz], nil\n}\n\nfunc direntIno(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Ino), unsafe.Sizeof(Dirent{}.Ino))\n}\n\nfunc direntReclen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))\n}\n\nfunc direntNamlen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Namlen), unsafe.Sizeof(Dirent{}.Namlen))\n}\n\nfunc PtraceAttach(pid int) (err error) { return ptrace(PT_ATTACH, pid, 0, 0) }\nfunc PtraceDetach(pid int) (err error) { return ptrace(PT_DETACH, pid, 0, 0) }\n\ntype attrList struct {\n\tbitmapCount uint16\n\t_           uint16\n\tCommonAttr  uint32\n\tVolAttr     uint32\n\tDirAttr     uint32\n\tFileAttr    uint32\n\tForkattr    uint32\n}\n\n//sysnb pipe() (r int, w int, err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tp[0], p[1], err = pipe()\n\treturn\n}\n\nfunc Getfsstat(buf []Statfs_t, flags int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tvar bufsize uintptr\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t\tbufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))\n\t}\n\treturn getfsstat(_p0, bufsize, flags)\n}\n\nfunc xattrPointer(dest []byte) *byte {\n\t// It's only when dest is set to NULL that the OS X implementations of\n\t// getxattr() and listxattr() return the current sizes of the named attributes.\n\t// An empty byte array is not sufficient. To maintain the same behaviour as the\n\t// linux implementation, we wrap around the system calls and pass in NULL when\n\t// dest is empty.\n\tvar destp *byte\n\tif len(dest) > 0 {\n\t\tdestp = &dest[0]\n\t}\n\treturn destp\n}\n\n//sys\tgetxattr(path string, attr string, dest *byte, size int, position uint32, options int) (sz int, err error)\n\nfunc Getxattr(path string, attr string, dest []byte) (sz int, err error) {\n\treturn getxattr(path, attr, xattrPointer(dest), len(dest), 0, 0)\n}\n\nfunc Lgetxattr(link string, attr string, dest []byte) (sz int, err error) {\n\treturn getxattr(link, attr, xattrPointer(dest), len(dest), 0, XATTR_NOFOLLOW)\n}\n\n//sys\tfgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error)\n\nfunc Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {\n\treturn fgetxattr(fd, attr, xattrPointer(dest), len(dest), 0, 0)\n}\n\n//sys\tsetxattr(path string, attr string, data *byte, size int, position uint32, options int) (err error)\n\nfunc Setxattr(path string, attr string, data []byte, flags int) (err error) {\n\t// The parameters for the OS X implementation vary slightly compared to the\n\t// linux system call, specifically the position parameter:\n\t//\n\t//  linux:\n\t//      int setxattr(\n\t//          const char *path,\n\t//          const char *name,\n\t//          const void *value,\n\t//          size_t size,\n\t//          int flags\n\t//      );\n\t//\n\t//  darwin:\n\t//      int setxattr(\n\t//          const char *path,\n\t//          const char *name,\n\t//          void *value,\n\t//          size_t size,\n\t//          u_int32_t position,\n\t//          int options\n\t//      );\n\t//\n\t// position specifies the offset within the extended attribute. In the\n\t// current implementation, only the resource fork extended attribute makes\n\t// use of this argument. For all others, position is reserved. We simply\n\t// default to setting it to zero.\n\treturn setxattr(path, attr, xattrPointer(data), len(data), 0, flags)\n}\n\nfunc Lsetxattr(link string, attr string, data []byte, flags int) (err error) {\n\treturn setxattr(link, attr, xattrPointer(data), len(data), 0, flags|XATTR_NOFOLLOW)\n}\n\n//sys\tfsetxattr(fd int, attr string, data *byte, size int, position uint32, options int) (err error)\n\nfunc Fsetxattr(fd int, attr string, data []byte, flags int) (err error) {\n\treturn fsetxattr(fd, attr, xattrPointer(data), len(data), 0, 0)\n}\n\n//sys\tremovexattr(path string, attr string, options int) (err error)\n\nfunc Removexattr(path string, attr string) (err error) {\n\t// We wrap around and explicitly zero out the options provided to the OS X\n\t// implementation of removexattr, we do so for interoperability with the\n\t// linux variant.\n\treturn removexattr(path, attr, 0)\n}\n\nfunc Lremovexattr(link string, attr string) (err error) {\n\treturn removexattr(link, attr, XATTR_NOFOLLOW)\n}\n\n//sys\tfremovexattr(fd int, attr string, options int) (err error)\n\nfunc Fremovexattr(fd int, attr string) (err error) {\n\treturn fremovexattr(fd, attr, 0)\n}\n\n//sys\tlistxattr(path string, dest *byte, size int, options int) (sz int, err error)\n\nfunc Listxattr(path string, dest []byte) (sz int, err error) {\n\treturn listxattr(path, xattrPointer(dest), len(dest), 0)\n}\n\nfunc Llistxattr(link string, dest []byte) (sz int, err error) {\n\treturn listxattr(link, xattrPointer(dest), len(dest), XATTR_NOFOLLOW)\n}\n\n//sys\tflistxattr(fd int, dest *byte, size int, options int) (sz int, err error)\n\nfunc Flistxattr(fd int, dest []byte) (sz int, err error) {\n\treturn flistxattr(fd, xattrPointer(dest), len(dest), 0)\n}\n\nfunc setattrlistTimes(path string, times []Timespec, flags int) error {\n\t_p0, err := BytePtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tvar attrList attrList\n\tattrList.bitmapCount = ATTR_BIT_MAP_COUNT\n\tattrList.CommonAttr = ATTR_CMN_MODTIME | ATTR_CMN_ACCTIME\n\n\t// order is mtime, atime: the opposite of Chtimes\n\tattributes := [2]Timespec{times[1], times[0]}\n\toptions := 0\n\tif flags&AT_SYMLINK_NOFOLLOW != 0 {\n\t\toptions |= FSOPT_NOFOLLOW\n\t}\n\treturn setattrlist(\n\t\t_p0,\n\t\tunsafe.Pointer(&attrList),\n\t\tunsafe.Pointer(&attributes),\n\t\tunsafe.Sizeof(attributes),\n\t\toptions)\n}\n\n//sys setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, size uintptr, options int) (err error)\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) error {\n\t// Darwin doesn't support SYS_UTIMENSAT\n\treturn ENOSYS\n}\n\n/*\n * Wrapped\n */\n\n//sys\tfcntl(fd int, cmd int, arg int) (val int, err error)\n\n//sys\tkill(pid int, signum int, posix int) (err error)\n\nfunc Kill(pid int, signum syscall.Signal) (err error) { return kill(pid, int(signum), 1) }\n\n//sys\tioctl(fd int, req uint, arg uintptr) (err error)\n\n//sys   sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS_SYSCTL\n\nfunc Uname(uname *Utsname) error {\n\tmib := []_C_int{CTL_KERN, KERN_OSTYPE}\n\tn := unsafe.Sizeof(uname.Sysname)\n\tif err := sysctl(mib, &uname.Sysname[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_HOSTNAME}\n\tn = unsafe.Sizeof(uname.Nodename)\n\tif err := sysctl(mib, &uname.Nodename[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_OSRELEASE}\n\tn = unsafe.Sizeof(uname.Release)\n\tif err := sysctl(mib, &uname.Release[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_VERSION}\n\tn = unsafe.Sizeof(uname.Version)\n\tif err := sysctl(mib, &uname.Version[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\t// The version might have newlines or tabs in it, convert them to\n\t// spaces.\n\tfor i, b := range uname.Version {\n\t\tif b == '\\n' || b == '\\t' {\n\t\t\tif i == len(uname.Version)-1 {\n\t\t\t\tuname.Version[i] = 0\n\t\t\t} else {\n\t\t\t\tuname.Version[i] = ' '\n\t\t\t}\n\t\t}\n\t}\n\n\tmib = []_C_int{CTL_HW, HW_MACHINE}\n\tn = unsafe.Sizeof(uname.Machine)\n\tif err := sysctl(mib, &uname.Machine[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\treturn nil\n}\n\nfunc Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\tvar length = int64(count)\n\terr = sendfile(infd, outfd, *offset, &length, nil, 0)\n\twritten = int(length)\n\treturn\n}\n\n//sys\tsendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe.Pointer, flags int) (err error)\n\n/*\n * Exposed directly\n */\n//sys\tAccess(path string, mode uint32) (err error)\n//sys\tAdjtime(delta *Timeval, olddelta *Timeval) (err error)\n//sys\tChdir(path string) (err error)\n//sys\tChflags(path string, flags int) (err error)\n//sys\tChmod(path string, mode uint32) (err error)\n//sys\tChown(path string, uid int, gid int) (err error)\n//sys\tChroot(path string) (err error)\n//sys\tClockGettime(clockid int32, time *Timespec) (err error)\n//sys\tClose(fd int) (err error)\n//sys\tClonefile(src string, dst string, flags int) (err error)\n//sys\tClonefileat(srcDirfd int, src string, dstDirfd int, dst string, flags int) (err error)\n//sys\tDup(fd int) (nfd int, err error)\n//sys\tDup2(from int, to int) (err error)\n//sys\tExchangedata(path1 string, path2 string, options int) (err error)\n//sys\tExit(code int)\n//sys\tFaccessat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchdir(fd int) (err error)\n//sys\tFchflags(fd int, flags int) (err error)\n//sys\tFchmod(fd int, mode uint32) (err error)\n//sys\tFchmodat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFchownat(dirfd int, path string, uid int, gid int, flags int) (err error)\n//sys\tFclonefileat(srcDirfd int, dstDirfd int, dst string, flags int) (err error)\n//sys\tFlock(fd int, how int) (err error)\n//sys\tFpathconf(fd int, name int) (val int, err error)\n//sys\tFsync(fd int) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sys\tGetcwd(buf []byte) (n int, err error)\n//sys\tGetdtablesize() (size int)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (uid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetpgid(pid int) (pgid int, err error)\n//sysnb\tGetpgrp() (pgrp int)\n//sysnb\tGetpid() (pid int)\n//sysnb\tGetppid() (ppid int)\n//sys\tGetpriority(which int, who int) (prio int, err error)\n//sysnb\tGetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tGetrusage(who int, rusage *Rusage) (err error)\n//sysnb\tGetsid(pid int) (sid int, err error)\n//sysnb\tGettimeofday(tp *Timeval) (err error)\n//sysnb\tGetuid() (uid int)\n//sysnb\tIssetugid() (tainted bool)\n//sys\tKqueue() (fd int, err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tLink(path string, link string) (err error)\n//sys\tLinkat(pathfd int, path string, linkfd int, link string, flags int) (err error)\n//sys\tListen(s int, backlog int) (err error)\n//sys\tMkdir(path string, mode uint32) (err error)\n//sys\tMkdirat(dirfd int, path string, mode uint32) (err error)\n//sys\tMkfifo(path string, mode uint32) (err error)\n//sys\tMknod(path string, mode uint32, dev int) (err error)\n//sys\tOpen(path string, mode int, perm uint32) (fd int, err error)\n//sys\tOpenat(dirfd int, path string, mode int, perm uint32) (fd int, err error)\n//sys\tPathconf(path string, name int) (val int, err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error)\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error)\n//sys\tread(fd int, p []byte) (n int, err error)\n//sys\tReadlink(path string, buf []byte) (n int, err error)\n//sys\tReadlinkat(dirfd int, path string, buf []byte) (n int, err error)\n//sys\tRename(from string, to string) (err error)\n//sys\tRenameat(fromfd int, from string, tofd int, to string) (err error)\n//sys\tRevoke(path string) (err error)\n//sys\tRmdir(path string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)\n//sys\tSetegid(egid int) (err error)\n//sysnb\tSeteuid(euid int) (err error)\n//sysnb\tSetgid(gid int) (err error)\n//sys\tSetlogin(name string) (err error)\n//sysnb\tSetpgid(pid int, pgid int) (err error)\n//sys\tSetpriority(which int, who int, prio int) (err error)\n//sys\tSetprivexec(flag int) (err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sysnb\tSetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tSetsid() (pid int, err error)\n//sysnb\tSettimeofday(tp *Timeval) (err error)\n//sysnb\tSetuid(uid int) (err error)\n//sys\tSymlink(path string, link string) (err error)\n//sys\tSymlinkat(oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSync() (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tUmask(newmask int) (oldmask int)\n//sys\tUndelete(path string) (err error)\n//sys\tUnlink(path string) (err error)\n//sys\tUnlinkat(dirfd int, path string, flags int) (err error)\n//sys\tUnmount(path string, flags int) (err error)\n//sys\twrite(fd int, p []byte) (n int, err error)\n//sys   mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)\n//sys   munmap(addr uintptr, length uintptr) (err error)\n//sys\treadlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ\n//sys\twritelen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_WRITE\n\n/*\n * Unimplemented\n */\n// Profil\n// Sigaction\n// Sigprocmask\n// Getlogin\n// Sigpending\n// Sigaltstack\n// Ioctl\n// Reboot\n// Execve\n// Vfork\n// Sbrk\n// Sstk\n// Ovadvise\n// Mincore\n// Setitimer\n// Swapon\n// Select\n// Sigsuspend\n// Readv\n// Writev\n// Nfssvc\n// Getfh\n// Quotactl\n// Mount\n// Csops\n// Waitid\n// Add_profil\n// Kdebug_trace\n// Sigreturn\n// Atsocket\n// Kqueue_from_portset_np\n// Kqueue_portset\n// Getattrlist\n// Setattrlist\n// Getdirentriesattr\n// Searchfs\n// Delete\n// Copyfile\n// Watchevent\n// Waitevent\n// Modwatch\n// Fsctl\n// Initgroups\n// Posix_spawn\n// Nfsclnt\n// Fhopen\n// Minherit\n// Semsys\n// Msgsys\n// Shmsys\n// Semctl\n// Semget\n// Semop\n// Msgctl\n// Msgget\n// Msgsnd\n// Msgrcv\n// Shmat\n// Shmctl\n// Shmdt\n// Shmget\n// Shm_open\n// Shm_unlink\n// Sem_open\n// Sem_close\n// Sem_unlink\n// Sem_wait\n// Sem_trywait\n// Sem_post\n// Sem_getvalue\n// Sem_init\n// Sem_destroy\n// Open_extended\n// Umask_extended\n// Stat_extended\n// Lstat_extended\n// Fstat_extended\n// Chmod_extended\n// Fchmod_extended\n// Access_extended\n// Settid\n// Gettid\n// Setsgroups\n// Getsgroups\n// Setwgroups\n// Getwgroups\n// Mkfifo_extended\n// Mkdir_extended\n// Identitysvc\n// Shared_region_check_np\n// Shared_region_map_np\n// __pthread_mutex_destroy\n// __pthread_mutex_init\n// __pthread_mutex_lock\n// __pthread_mutex_trylock\n// __pthread_mutex_unlock\n// __pthread_cond_init\n// __pthread_cond_destroy\n// __pthread_cond_broadcast\n// __pthread_cond_signal\n// Setsid_with_pid\n// __pthread_cond_timedwait\n// Aio_fsync\n// Aio_return\n// Aio_suspend\n// Aio_cancel\n// Aio_error\n// Aio_read\n// Aio_write\n// Lio_listio\n// __pthread_cond_wait\n// Iopolicysys\n// __pthread_kill\n// __pthread_sigmask\n// __sigwait\n// __disable_threadsignal\n// __pthread_markcancel\n// __pthread_canceled\n// __semwait_signal\n// Proc_info\n// sendfile\n// Stat64_extended\n// Lstat64_extended\n// Fstat64_extended\n// __pthread_chdir\n// __pthread_fchdir\n// Audit\n// Auditon\n// Getauid\n// Setauid\n// Getaudit\n// Setaudit\n// Getaudit_addr\n// Setaudit_addr\n// Auditctl\n// Bsdthread_create\n// Bsdthread_terminate\n// Stack_snapshot\n// Bsdthread_register\n// Workq_open\n// Workq_ops\n// __mac_execve\n// __mac_syscall\n// __mac_get_file\n// __mac_set_file\n// __mac_get_link\n// __mac_set_link\n// __mac_get_proc\n// __mac_set_proc\n// __mac_get_fd\n// __mac_set_fd\n// __mac_get_pid\n// __mac_get_lcid\n// __mac_get_lctx\n// __mac_set_lctx\n// Setlcid\n// Read_nocancel\n// Write_nocancel\n// Open_nocancel\n// Close_nocancel\n// Wait4_nocancel\n// Recvmsg_nocancel\n// Sendmsg_nocancel\n// Recvfrom_nocancel\n// Accept_nocancel\n// Fcntl_nocancel\n// Select_nocancel\n// Fsync_nocancel\n// Connect_nocancel\n// Sigsuspend_nocancel\n// Readv_nocancel\n// Writev_nocancel\n// Sendto_nocancel\n// Pread_nocancel\n// Pwrite_nocancel\n// Waitid_nocancel\n// Poll_nocancel\n// Msgsnd_nocancel\n// Msgrcv_nocancel\n// Sem_wait_nocancel\n// Aio_suspend_nocancel\n// __sigwait_nocancel\n// __semwait_signal_nocancel\n// __mac_mount\n// __mac_get_mount\n// __mac_getfsstat\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_darwin_386.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build 386,darwin\n\npackage unix\n\nimport (\n\t\"syscall\"\n)\n\n//sys   ptrace(request int, pid int, addr uintptr, data uintptr) (err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: int32(sec), Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: int32(sec), Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint32(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\n//sys\tFstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64\n//sys\tFstatfs(fd int, stat *Statfs_t) (err error) = SYS_FSTATFS64\n//sys\tgetfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) = SYS_GETFSSTAT64\n//sys\tLstat(path string, stat *Stat_t) (err error) = SYS_LSTAT64\n//sys\tStat(path string, stat *Stat_t) (err error) = SYS_STAT64\n//sys\tStatfs(path string, stat *Statfs_t) (err error) = SYS_STATFS64\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build amd64,darwin\n\npackage unix\n\nimport (\n\t\"syscall\"\n)\n\n//sys   ptrace(request int, pid int, addr uintptr, data uintptr) (err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\n//sys\tFstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64\n//sys\tFstatfs(fd int, stat *Statfs_t) (err error) = SYS_FSTATFS64\n//sys\tgetfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) = SYS_GETFSSTAT64\n//sys\tLstat(path string, stat *Stat_t) (err error) = SYS_LSTAT64\n//sys\tStat(path string, stat *Stat_t) (err error) = SYS_STAT64\n//sys\tStatfs(path string, stat *Statfs_t) (err error) = SYS_STATFS64\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_darwin_arm.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage unix\n\nimport (\n\t\"syscall\"\n)\n\nfunc ptrace(request int, pid int, addr uintptr, data uintptr) error {\n\treturn ENOTSUP\n}\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: int32(sec), Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: int32(sec), Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint32(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) // sic\n\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error)\n//sys\tFstatfs(fd int, stat *Statfs_t) (err error)\n//sys\tgetfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) = SYS_GETFSSTAT\n//sys\tLstat(path string, stat *Stat_t) (err error)\n//sys\tStat(path string, stat *Stat_t) (err error)\n//sys\tStatfs(path string, stat *Statfs_t) (err error)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm64,darwin\n\npackage unix\n\nimport (\n\t\"syscall\"\n)\n\nfunc ptrace(request int, pid int, addr uintptr, data uintptr) error {\n\treturn ENOTSUP\n}\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) // sic\n\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error)\n//sys\tFstatfs(fd int, stat *Statfs_t) (err error)\n//sys\tgetfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) = SYS_GETFSSTAT\n//sys\tLstat(path string, stat *Stat_t) (err error)\n//sys\tStat(path string, stat *Stat_t) (err error)\n//sys\tStatfs(path string, stat *Statfs_t) (err error)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build darwin,go1.12\n\npackage unix\n\nimport \"unsafe\"\n\n// Implemented in the runtime package (runtime/sys_darwin.go)\nfunc syscall_syscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)\nfunc syscall_syscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)\nfunc syscall_syscall6X(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)\nfunc syscall_syscall9(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno) // 32-bit only\nfunc syscall_rawSyscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)\nfunc syscall_rawSyscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)\nfunc syscall_syscallPtr(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)\n\n//go:linkname syscall_syscall syscall.syscall\n//go:linkname syscall_syscall6 syscall.syscall6\n//go:linkname syscall_syscall6X syscall.syscall6X\n//go:linkname syscall_syscall9 syscall.syscall9\n//go:linkname syscall_rawSyscall syscall.rawSyscall\n//go:linkname syscall_rawSyscall6 syscall.rawSyscall6\n//go:linkname syscall_syscallPtr syscall.syscallPtr\n\n// Find the entry point for f. See comments in runtime/proc.go for the\n// function of the same name.\n//go:nosplit\nfunc funcPC(f func()) uintptr {\n\treturn **(**uintptr)(unsafe.Pointer(&f))\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_dragonfly.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// DragonFly BSD system calls.\n// This file is compiled as ordinary Go code,\n// but it is also input to mksyscall,\n// which parses the //sys lines and generates system call stubs.\n// Note that sometimes we use a lowercase //sys name and wrap\n// it in our own nicer implementation, either here or in\n// syscall_bsd.go or syscall_unix.go.\n\npackage unix\n\nimport (\n\t\"sync\"\n\t\"unsafe\"\n)\n\n// See version list in https://github.com/DragonFlyBSD/DragonFlyBSD/blob/master/sys/sys/param.h\nvar (\n\tosreldateOnce sync.Once\n\tosreldate     uint32\n)\n\n// First __DragonFly_version after September 2019 ABI changes\n// http://lists.dragonflybsd.org/pipermail/users/2019-September/358280.html\nconst _dragonflyABIChangeVersion = 500705\n\nfunc supportsABI(ver uint32) bool {\n\tosreldateOnce.Do(func() { osreldate, _ = SysctlUint32(\"kern.osreldate\") })\n\treturn osreldate >= ver\n}\n\n// SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.\ntype SockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n\tRcf    uint16\n\tRoute  [16]uint16\n\traw    RawSockaddrDatalink\n}\n\n// Translate \"kern.hostname\" to []_C_int{0,1,2,3}.\nfunc nametomib(name string) (mib []_C_int, err error) {\n\tconst siz = unsafe.Sizeof(mib[0])\n\n\t// NOTE(rsc): It seems strange to set the buffer to have\n\t// size CTL_MAXNAME+2 but use only CTL_MAXNAME\n\t// as the size. I don't know why the +2 is here, but the\n\t// kernel uses +2 for its own implementation of this function.\n\t// I am scared that if we don't include the +2 here, the kernel\n\t// will silently write 2 words farther than we specify\n\t// and we'll get memory corruption.\n\tvar buf [CTL_MAXNAME + 2]_C_int\n\tn := uintptr(CTL_MAXNAME) * siz\n\n\tp := (*byte)(unsafe.Pointer(&buf[0]))\n\tbytes, err := ByteSliceFromString(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Magic sysctl: \"setting\" 0.3 to a string name\n\t// lets you read back the array of integers form.\n\tif err = sysctl([]_C_int{0, 3}, p, &n, &bytes[0], uintptr(len(name))); err != nil {\n\t\treturn nil, err\n\t}\n\treturn buf[0 : n/siz], nil\n}\n\nfunc direntIno(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Fileno), unsafe.Sizeof(Dirent{}.Fileno))\n}\n\nfunc direntReclen(buf []byte) (uint64, bool) {\n\tnamlen, ok := direntNamlen(buf)\n\tif !ok {\n\t\treturn 0, false\n\t}\n\treturn (16 + namlen + 1 + 7) &^ 7, true\n}\n\nfunc direntNamlen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Namlen), unsafe.Sizeof(Dirent{}.Namlen))\n}\n\n//sysnb pipe() (r int, w int, err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tp[0], p[1], err = pipe()\n\treturn\n}\n\n//sys\textpread(fd int, p []byte, flags int, offset int64) (n int, err error)\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\treturn extpread(fd, p, 0, offset)\n}\n\n//sys\textpwrite(fd int, p []byte, flags int, offset int64) (n int, err error)\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\treturn extpwrite(fd, p, 0, offset)\n}\n\nfunc Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tnfd, err = accept4(fd, &rsa, &len, flags)\n\tif err != nil {\n\t\treturn\n\t}\n\tif len > SizeofSockaddrAny {\n\t\tpanic(\"RawSockaddrAny too small\")\n\t}\n\tsa, err = anyToSockaddr(fd, &rsa)\n\tif err != nil {\n\t\tClose(nfd)\n\t\tnfd = 0\n\t}\n\treturn\n}\n\n//sys\tGetcwd(buf []byte) (n int, err error) = SYS___GETCWD\n\nfunc Getfsstat(buf []Statfs_t, flags int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tvar bufsize uintptr\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t\tbufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))\n\t}\n\tr0, _, e1 := Syscall(SYS_GETFSSTAT, uintptr(_p0), bufsize, uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nfunc setattrlistTimes(path string, times []Timespec, flags int) error {\n\t// used on Darwin for UtimesNano\n\treturn ENOSYS\n}\n\n//sys\tioctl(fd int, req uint, arg uintptr) (err error)\n\n//sys   sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS___SYSCTL\n\nfunc sysctlUname(mib []_C_int, old *byte, oldlen *uintptr) error {\n\terr := sysctl(mib, old, oldlen, nil, 0)\n\tif err != nil {\n\t\t// Utsname members on Dragonfly are only 32 bytes and\n\t\t// the syscall returns ENOMEM in case the actual value\n\t\t// is longer.\n\t\tif err == ENOMEM {\n\t\t\terr = nil\n\t\t}\n\t}\n\treturn err\n}\n\nfunc Uname(uname *Utsname) error {\n\tmib := []_C_int{CTL_KERN, KERN_OSTYPE}\n\tn := unsafe.Sizeof(uname.Sysname)\n\tif err := sysctlUname(mib, &uname.Sysname[0], &n); err != nil {\n\t\treturn err\n\t}\n\tuname.Sysname[unsafe.Sizeof(uname.Sysname)-1] = 0\n\n\tmib = []_C_int{CTL_KERN, KERN_HOSTNAME}\n\tn = unsafe.Sizeof(uname.Nodename)\n\tif err := sysctlUname(mib, &uname.Nodename[0], &n); err != nil {\n\t\treturn err\n\t}\n\tuname.Nodename[unsafe.Sizeof(uname.Nodename)-1] = 0\n\n\tmib = []_C_int{CTL_KERN, KERN_OSRELEASE}\n\tn = unsafe.Sizeof(uname.Release)\n\tif err := sysctlUname(mib, &uname.Release[0], &n); err != nil {\n\t\treturn err\n\t}\n\tuname.Release[unsafe.Sizeof(uname.Release)-1] = 0\n\n\tmib = []_C_int{CTL_KERN, KERN_VERSION}\n\tn = unsafe.Sizeof(uname.Version)\n\tif err := sysctlUname(mib, &uname.Version[0], &n); err != nil {\n\t\treturn err\n\t}\n\n\t// The version might have newlines or tabs in it, convert them to\n\t// spaces.\n\tfor i, b := range uname.Version {\n\t\tif b == '\\n' || b == '\\t' {\n\t\t\tif i == len(uname.Version)-1 {\n\t\t\t\tuname.Version[i] = 0\n\t\t\t} else {\n\t\t\t\tuname.Version[i] = ' '\n\t\t\t}\n\t\t}\n\t}\n\n\tmib = []_C_int{CTL_HW, HW_MACHINE}\n\tn = unsafe.Sizeof(uname.Machine)\n\tif err := sysctlUname(mib, &uname.Machine[0], &n); err != nil {\n\t\treturn err\n\t}\n\tuname.Machine[unsafe.Sizeof(uname.Machine)-1] = 0\n\n\treturn nil\n}\n\nfunc Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\treturn sendfile(outfd, infd, offset, count)\n}\n\n/*\n * Exposed directly\n */\n//sys\tAccess(path string, mode uint32) (err error)\n//sys\tAdjtime(delta *Timeval, olddelta *Timeval) (err error)\n//sys\tChdir(path string) (err error)\n//sys\tChflags(path string, flags int) (err error)\n//sys\tChmod(path string, mode uint32) (err error)\n//sys\tChown(path string, uid int, gid int) (err error)\n//sys\tChroot(path string) (err error)\n//sys\tClose(fd int) (err error)\n//sys\tDup(fd int) (nfd int, err error)\n//sys\tDup2(from int, to int) (err error)\n//sys\tExit(code int)\n//sys\tFaccessat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchdir(fd int) (err error)\n//sys\tFchflags(fd int, flags int) (err error)\n//sys\tFchmod(fd int, mode uint32) (err error)\n//sys\tFchmodat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFchownat(dirfd int, path string, uid int, gid int, flags int) (err error)\n//sys\tFlock(fd int, how int) (err error)\n//sys\tFpathconf(fd int, name int) (val int, err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error)\n//sys\tFstatfs(fd int, stat *Statfs_t) (err error)\n//sys\tFsync(fd int) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sys\tGetdents(fd int, buf []byte) (n int, err error)\n//sys\tGetdirentries(fd int, buf []byte, basep *uintptr) (n int, err error)\n//sys\tGetdtablesize() (size int)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (uid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetpgid(pid int) (pgid int, err error)\n//sysnb\tGetpgrp() (pgrp int)\n//sysnb\tGetpid() (pid int)\n//sysnb\tGetppid() (ppid int)\n//sys\tGetpriority(which int, who int) (prio int, err error)\n//sysnb\tGetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tGetrusage(who int, rusage *Rusage) (err error)\n//sysnb\tGetsid(pid int) (sid int, err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n//sysnb\tGetuid() (uid int)\n//sys\tIssetugid() (tainted bool)\n//sys\tKill(pid int, signum syscall.Signal) (err error)\n//sys\tKqueue() (fd int, err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tLink(path string, link string) (err error)\n//sys\tLinkat(pathfd int, path string, linkfd int, link string, flags int) (err error)\n//sys\tListen(s int, backlog int) (err error)\n//sys\tLstat(path string, stat *Stat_t) (err error)\n//sys\tMkdir(path string, mode uint32) (err error)\n//sys\tMkdirat(dirfd int, path string, mode uint32) (err error)\n//sys\tMkfifo(path string, mode uint32) (err error)\n//sys\tMknod(path string, mode uint32, dev int) (err error)\n//sys\tMknodat(fd int, path string, mode uint32, dev int) (err error)\n//sys\tNanosleep(time *Timespec, leftover *Timespec) (err error)\n//sys\tOpen(path string, mode int, perm uint32) (fd int, err error)\n//sys\tOpenat(dirfd int, path string, mode int, perm uint32) (fd int, err error)\n//sys\tPathconf(path string, name int) (val int, err error)\n//sys\tread(fd int, p []byte) (n int, err error)\n//sys\tReadlink(path string, buf []byte) (n int, err error)\n//sys\tRename(from string, to string) (err error)\n//sys\tRenameat(fromfd int, from string, tofd int, to string) (err error)\n//sys\tRevoke(path string) (err error)\n//sys\tRmdir(path string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)\n//sysnb\tSetegid(egid int) (err error)\n//sysnb\tSeteuid(euid int) (err error)\n//sysnb\tSetgid(gid int) (err error)\n//sys\tSetlogin(name string) (err error)\n//sysnb\tSetpgid(pid int, pgid int) (err error)\n//sys\tSetpriority(which int, who int, prio int) (err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tSetsid() (pid int, err error)\n//sysnb\tSettimeofday(tp *Timeval) (err error)\n//sysnb\tSetuid(uid int) (err error)\n//sys\tStat(path string, stat *Stat_t) (err error)\n//sys\tStatfs(path string, stat *Statfs_t) (err error)\n//sys\tSymlink(path string, link string) (err error)\n//sys\tSymlinkat(oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSync() (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tUmask(newmask int) (oldmask int)\n//sys\tUndelete(path string) (err error)\n//sys\tUnlink(path string) (err error)\n//sys\tUnlinkat(dirfd int, path string, flags int) (err error)\n//sys\tUnmount(path string, flags int) (err error)\n//sys\twrite(fd int, p []byte) (n int, err error)\n//sys   mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)\n//sys   munmap(addr uintptr, length uintptr) (err error)\n//sys\treadlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ\n//sys\twritelen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_WRITE\n//sys\taccept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error)\n//sys\tutimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)\n\n/*\n * Unimplemented\n * TODO(jsing): Update this list for DragonFly.\n */\n// Profil\n// Sigaction\n// Sigprocmask\n// Getlogin\n// Sigpending\n// Sigaltstack\n// Reboot\n// Execve\n// Vfork\n// Sbrk\n// Sstk\n// Ovadvise\n// Mincore\n// Setitimer\n// Swapon\n// Select\n// Sigsuspend\n// Readv\n// Writev\n// Nfssvc\n// Getfh\n// Quotactl\n// Mount\n// Csops\n// Waitid\n// Add_profil\n// Kdebug_trace\n// Sigreturn\n// Atsocket\n// Kqueue_from_portset_np\n// Kqueue_portset\n// Getattrlist\n// Setattrlist\n// Getdirentriesattr\n// Searchfs\n// Delete\n// Copyfile\n// Watchevent\n// Waitevent\n// Modwatch\n// Getxattr\n// Fgetxattr\n// Setxattr\n// Fsetxattr\n// Removexattr\n// Fremovexattr\n// Listxattr\n// Flistxattr\n// Fsctl\n// Initgroups\n// Posix_spawn\n// Nfsclnt\n// Fhopen\n// Minherit\n// Semsys\n// Msgsys\n// Shmsys\n// Semctl\n// Semget\n// Semop\n// Msgctl\n// Msgget\n// Msgsnd\n// Msgrcv\n// Shmat\n// Shmctl\n// Shmdt\n// Shmget\n// Shm_open\n// Shm_unlink\n// Sem_open\n// Sem_close\n// Sem_unlink\n// Sem_wait\n// Sem_trywait\n// Sem_post\n// Sem_getvalue\n// Sem_init\n// Sem_destroy\n// Open_extended\n// Umask_extended\n// Stat_extended\n// Lstat_extended\n// Fstat_extended\n// Chmod_extended\n// Fchmod_extended\n// Access_extended\n// Settid\n// Gettid\n// Setsgroups\n// Getsgroups\n// Setwgroups\n// Getwgroups\n// Mkfifo_extended\n// Mkdir_extended\n// Identitysvc\n// Shared_region_check_np\n// Shared_region_map_np\n// __pthread_mutex_destroy\n// __pthread_mutex_init\n// __pthread_mutex_lock\n// __pthread_mutex_trylock\n// __pthread_mutex_unlock\n// __pthread_cond_init\n// __pthread_cond_destroy\n// __pthread_cond_broadcast\n// __pthread_cond_signal\n// Setsid_with_pid\n// __pthread_cond_timedwait\n// Aio_fsync\n// Aio_return\n// Aio_suspend\n// Aio_cancel\n// Aio_error\n// Aio_read\n// Aio_write\n// Lio_listio\n// __pthread_cond_wait\n// Iopolicysys\n// __pthread_kill\n// __pthread_sigmask\n// __sigwait\n// __disable_threadsignal\n// __pthread_markcancel\n// __pthread_canceled\n// __semwait_signal\n// Proc_info\n// Stat64_extended\n// Lstat64_extended\n// Fstat64_extended\n// __pthread_chdir\n// __pthread_fchdir\n// Audit\n// Auditon\n// Getauid\n// Setauid\n// Getaudit\n// Setaudit\n// Getaudit_addr\n// Setaudit_addr\n// Auditctl\n// Bsdthread_create\n// Bsdthread_terminate\n// Stack_snapshot\n// Bsdthread_register\n// Workq_open\n// Workq_ops\n// __mac_execve\n// __mac_syscall\n// __mac_get_file\n// __mac_set_file\n// __mac_get_link\n// __mac_set_link\n// __mac_get_proc\n// __mac_set_proc\n// __mac_get_fd\n// __mac_set_fd\n// __mac_get_pid\n// __mac_get_lcid\n// __mac_get_lctx\n// __mac_set_lctx\n// Setlcid\n// Read_nocancel\n// Write_nocancel\n// Open_nocancel\n// Close_nocancel\n// Wait4_nocancel\n// Recvmsg_nocancel\n// Sendmsg_nocancel\n// Recvfrom_nocancel\n// Accept_nocancel\n// Fcntl_nocancel\n// Select_nocancel\n// Fsync_nocancel\n// Connect_nocancel\n// Sigsuspend_nocancel\n// Readv_nocancel\n// Writev_nocancel\n// Sendto_nocancel\n// Pread_nocancel\n// Pwrite_nocancel\n// Waitid_nocancel\n// Msgsnd_nocancel\n// Msgrcv_nocancel\n// Sem_wait_nocancel\n// Aio_suspend_nocancel\n// __sigwait_nocancel\n// __semwait_signal_nocancel\n// __mac_mount\n// __mac_get_mount\n// __mac_getfsstat\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build amd64,dragonfly\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tvar writtenOut uint64 = 0\n\t_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)\n\n\twritten = int(writtenOut)\n\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_freebsd.go",
    "content": "// Copyright 2009,2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// FreeBSD system calls.\n// This file is compiled as ordinary Go code,\n// but it is also input to mksyscall,\n// which parses the //sys lines and generates system call stubs.\n// Note that sometimes we use a lowercase //sys name and wrap\n// it in our own nicer implementation, either here or in\n// syscall_bsd.go or syscall_unix.go.\n\npackage unix\n\nimport (\n\t\"sync\"\n\t\"unsafe\"\n)\n\nconst (\n\tSYS_FSTAT_FREEBSD12         = 551 // { int fstat(int fd, _Out_ struct stat *sb); }\n\tSYS_FSTATAT_FREEBSD12       = 552 // { int fstatat(int fd, _In_z_ char *path, \\\n\tSYS_GETDIRENTRIES_FREEBSD12 = 554 // { ssize_t getdirentries(int fd, \\\n\tSYS_STATFS_FREEBSD12        = 555 // { int statfs(_In_z_ char *path, \\\n\tSYS_FSTATFS_FREEBSD12       = 556 // { int fstatfs(int fd, \\\n\tSYS_GETFSSTAT_FREEBSD12     = 557 // { int getfsstat( \\\n\tSYS_MKNODAT_FREEBSD12       = 559 // { int mknodat(int fd, _In_z_ char *path, \\\n)\n\n// See https://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/versions.html.\nvar (\n\tosreldateOnce sync.Once\n\tosreldate     uint32\n)\n\n// INO64_FIRST from /usr/src/lib/libc/sys/compat-ino64.h\nconst _ino64First = 1200031\n\nfunc supportsABI(ver uint32) bool {\n\tosreldateOnce.Do(func() { osreldate, _ = SysctlUint32(\"kern.osreldate\") })\n\treturn osreldate >= ver\n}\n\n// SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.\ntype SockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [46]int8\n\traw    RawSockaddrDatalink\n}\n\n// Translate \"kern.hostname\" to []_C_int{0,1,2,3}.\nfunc nametomib(name string) (mib []_C_int, err error) {\n\tconst siz = unsafe.Sizeof(mib[0])\n\n\t// NOTE(rsc): It seems strange to set the buffer to have\n\t// size CTL_MAXNAME+2 but use only CTL_MAXNAME\n\t// as the size. I don't know why the +2 is here, but the\n\t// kernel uses +2 for its own implementation of this function.\n\t// I am scared that if we don't include the +2 here, the kernel\n\t// will silently write 2 words farther than we specify\n\t// and we'll get memory corruption.\n\tvar buf [CTL_MAXNAME + 2]_C_int\n\tn := uintptr(CTL_MAXNAME) * siz\n\n\tp := (*byte)(unsafe.Pointer(&buf[0]))\n\tbytes, err := ByteSliceFromString(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Magic sysctl: \"setting\" 0.3 to a string name\n\t// lets you read back the array of integers form.\n\tif err = sysctl([]_C_int{0, 3}, p, &n, &bytes[0], uintptr(len(name))); err != nil {\n\t\treturn nil, err\n\t}\n\treturn buf[0 : n/siz], nil\n}\n\nfunc direntIno(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Fileno), unsafe.Sizeof(Dirent{}.Fileno))\n}\n\nfunc direntReclen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))\n}\n\nfunc direntNamlen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Namlen), unsafe.Sizeof(Dirent{}.Namlen))\n}\n\nfunc Pipe(p []int) (err error) {\n\treturn Pipe2(p, 0)\n}\n\n//sysnb\tpipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) error {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr := pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn err\n}\n\nfunc GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) {\n\tvar value IPMreqn\n\tvallen := _Socklen(SizeofIPMreqn)\n\terrno := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, errno\n}\n\nfunc SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(mreq), unsafe.Sizeof(*mreq))\n}\n\nfunc Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tnfd, err = accept4(fd, &rsa, &len, flags)\n\tif err != nil {\n\t\treturn\n\t}\n\tif len > SizeofSockaddrAny {\n\t\tpanic(\"RawSockaddrAny too small\")\n\t}\n\tsa, err = anyToSockaddr(fd, &rsa)\n\tif err != nil {\n\t\tClose(nfd)\n\t\tnfd = 0\n\t}\n\treturn\n}\n\n//sys\tGetcwd(buf []byte) (n int, err error) = SYS___GETCWD\n\nfunc Getfsstat(buf []Statfs_t, flags int) (n int, err error) {\n\tvar (\n\t\t_p0          unsafe.Pointer\n\t\tbufsize      uintptr\n\t\toldBuf       []statfs_freebsd11_t\n\t\tneedsConvert bool\n\t)\n\n\tif len(buf) > 0 {\n\t\tif supportsABI(_ino64First) {\n\t\t\t_p0 = unsafe.Pointer(&buf[0])\n\t\t\tbufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))\n\t\t} else {\n\t\t\tn := len(buf)\n\t\t\toldBuf = make([]statfs_freebsd11_t, n)\n\t\t\t_p0 = unsafe.Pointer(&oldBuf[0])\n\t\t\tbufsize = unsafe.Sizeof(statfs_freebsd11_t{}) * uintptr(n)\n\t\t\tneedsConvert = true\n\t\t}\n\t}\n\tvar sysno uintptr = SYS_GETFSSTAT\n\tif supportsABI(_ino64First) {\n\t\tsysno = SYS_GETFSSTAT_FREEBSD12\n\t}\n\tr0, _, e1 := Syscall(sysno, uintptr(_p0), bufsize, uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\tif e1 == 0 && needsConvert {\n\t\tfor i := range oldBuf {\n\t\t\tbuf[i].convertFrom(&oldBuf[i])\n\t\t}\n\t}\n\treturn\n}\n\nfunc setattrlistTimes(path string, times []Timespec, flags int) error {\n\t// used on Darwin for UtimesNano\n\treturn ENOSYS\n}\n\n//sys   ioctl(fd int, req uint, arg uintptr) (err error)\n\n//sys   sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS___SYSCTL\n\nfunc Uname(uname *Utsname) error {\n\tmib := []_C_int{CTL_KERN, KERN_OSTYPE}\n\tn := unsafe.Sizeof(uname.Sysname)\n\tif err := sysctl(mib, &uname.Sysname[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_HOSTNAME}\n\tn = unsafe.Sizeof(uname.Nodename)\n\tif err := sysctl(mib, &uname.Nodename[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_OSRELEASE}\n\tn = unsafe.Sizeof(uname.Release)\n\tif err := sysctl(mib, &uname.Release[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_VERSION}\n\tn = unsafe.Sizeof(uname.Version)\n\tif err := sysctl(mib, &uname.Version[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\t// The version might have newlines or tabs in it, convert them to\n\t// spaces.\n\tfor i, b := range uname.Version {\n\t\tif b == '\\n' || b == '\\t' {\n\t\t\tif i == len(uname.Version)-1 {\n\t\t\t\tuname.Version[i] = 0\n\t\t\t} else {\n\t\t\t\tuname.Version[i] = ' '\n\t\t\t}\n\t\t}\n\t}\n\n\tmib = []_C_int{CTL_HW, HW_MACHINE}\n\tn = unsafe.Sizeof(uname.Machine)\n\tif err := sysctl(mib, &uname.Machine[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\treturn nil\n}\n\nfunc Stat(path string, st *Stat_t) (err error) {\n\tvar oldStat stat_freebsd11_t\n\tif supportsABI(_ino64First) {\n\t\treturn fstatat_freebsd12(AT_FDCWD, path, st, 0)\n\t}\n\terr = stat(path, &oldStat)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tst.convertFrom(&oldStat)\n\treturn nil\n}\n\nfunc Lstat(path string, st *Stat_t) (err error) {\n\tvar oldStat stat_freebsd11_t\n\tif supportsABI(_ino64First) {\n\t\treturn fstatat_freebsd12(AT_FDCWD, path, st, AT_SYMLINK_NOFOLLOW)\n\t}\n\terr = lstat(path, &oldStat)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tst.convertFrom(&oldStat)\n\treturn nil\n}\n\nfunc Fstat(fd int, st *Stat_t) (err error) {\n\tvar oldStat stat_freebsd11_t\n\tif supportsABI(_ino64First) {\n\t\treturn fstat_freebsd12(fd, st)\n\t}\n\terr = fstat(fd, &oldStat)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tst.convertFrom(&oldStat)\n\treturn nil\n}\n\nfunc Fstatat(fd int, path string, st *Stat_t, flags int) (err error) {\n\tvar oldStat stat_freebsd11_t\n\tif supportsABI(_ino64First) {\n\t\treturn fstatat_freebsd12(fd, path, st, flags)\n\t}\n\terr = fstatat(fd, path, &oldStat, flags)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tst.convertFrom(&oldStat)\n\treturn nil\n}\n\nfunc Statfs(path string, st *Statfs_t) (err error) {\n\tvar oldStatfs statfs_freebsd11_t\n\tif supportsABI(_ino64First) {\n\t\treturn statfs_freebsd12(path, st)\n\t}\n\terr = statfs(path, &oldStatfs)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tst.convertFrom(&oldStatfs)\n\treturn nil\n}\n\nfunc Fstatfs(fd int, st *Statfs_t) (err error) {\n\tvar oldStatfs statfs_freebsd11_t\n\tif supportsABI(_ino64First) {\n\t\treturn fstatfs_freebsd12(fd, st)\n\t}\n\terr = fstatfs(fd, &oldStatfs)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tst.convertFrom(&oldStatfs)\n\treturn nil\n}\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\treturn Getdirentries(fd, buf, nil)\n}\n\nfunc Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\tif supportsABI(_ino64First) {\n\t\tif basep == nil || unsafe.Sizeof(*basep) == 8 {\n\t\t\treturn getdirentries_freebsd12(fd, buf, (*uint64)(unsafe.Pointer(basep)))\n\t\t}\n\t\t// The freebsd12 syscall needs a 64-bit base. On 32-bit machines\n\t\t// we can't just use the basep passed in. See #32498.\n\t\tvar base uint64 = uint64(*basep)\n\t\tn, err = getdirentries_freebsd12(fd, buf, &base)\n\t\t*basep = uintptr(base)\n\t\tif base>>32 != 0 {\n\t\t\t// We can't stuff the base back into a uintptr, so any\n\t\t\t// future calls would be suspect. Generate an error.\n\t\t\t// EIO is allowed by getdirentries.\n\t\t\terr = EIO\n\t\t}\n\t\treturn\n\t}\n\n\t// The old syscall entries are smaller than the new. Use 1/4 of the original\n\t// buffer size rounded up to DIRBLKSIZ (see /usr/src/lib/libc/sys/getdirentries.c).\n\toldBufLen := roundup(len(buf)/4, _dirblksiz)\n\toldBuf := make([]byte, oldBufLen)\n\tn, err = getdirentries(fd, oldBuf, basep)\n\tif err == nil && n > 0 {\n\t\tn = convertFromDirents11(buf, oldBuf[:n])\n\t}\n\treturn\n}\n\nfunc Mknod(path string, mode uint32, dev uint64) (err error) {\n\tvar oldDev int\n\tif supportsABI(_ino64First) {\n\t\treturn mknodat_freebsd12(AT_FDCWD, path, mode, dev)\n\t}\n\toldDev = int(dev)\n\treturn mknod(path, mode, oldDev)\n}\n\nfunc Mknodat(fd int, path string, mode uint32, dev uint64) (err error) {\n\tvar oldDev int\n\tif supportsABI(_ino64First) {\n\t\treturn mknodat_freebsd12(fd, path, mode, dev)\n\t}\n\toldDev = int(dev)\n\treturn mknodat(fd, path, mode, oldDev)\n}\n\n// round x to the nearest multiple of y, larger or equal to x.\n//\n// from /usr/include/sys/param.h Macros for counting and rounding.\n// #define roundup(x, y)   ((((x)+((y)-1))/(y))*(y))\nfunc roundup(x, y int) int {\n\treturn ((x + y - 1) / y) * y\n}\n\nfunc (s *Stat_t) convertFrom(old *stat_freebsd11_t) {\n\t*s = Stat_t{\n\t\tDev:     uint64(old.Dev),\n\t\tIno:     uint64(old.Ino),\n\t\tNlink:   uint64(old.Nlink),\n\t\tMode:    old.Mode,\n\t\tUid:     old.Uid,\n\t\tGid:     old.Gid,\n\t\tRdev:    uint64(old.Rdev),\n\t\tAtim:    old.Atim,\n\t\tMtim:    old.Mtim,\n\t\tCtim:    old.Ctim,\n\t\tBtim:    old.Btim,\n\t\tSize:    old.Size,\n\t\tBlocks:  old.Blocks,\n\t\tBlksize: old.Blksize,\n\t\tFlags:   old.Flags,\n\t\tGen:     uint64(old.Gen),\n\t}\n}\n\nfunc (s *Statfs_t) convertFrom(old *statfs_freebsd11_t) {\n\t*s = Statfs_t{\n\t\tVersion:     _statfsVersion,\n\t\tType:        old.Type,\n\t\tFlags:       old.Flags,\n\t\tBsize:       old.Bsize,\n\t\tIosize:      old.Iosize,\n\t\tBlocks:      old.Blocks,\n\t\tBfree:       old.Bfree,\n\t\tBavail:      old.Bavail,\n\t\tFiles:       old.Files,\n\t\tFfree:       old.Ffree,\n\t\tSyncwrites:  old.Syncwrites,\n\t\tAsyncwrites: old.Asyncwrites,\n\t\tSyncreads:   old.Syncreads,\n\t\tAsyncreads:  old.Asyncreads,\n\t\t// Spare\n\t\tNamemax: old.Namemax,\n\t\tOwner:   old.Owner,\n\t\tFsid:    old.Fsid,\n\t\t// Charspare\n\t\t// Fstypename\n\t\t// Mntfromname\n\t\t// Mntonname\n\t}\n\n\tsl := old.Fstypename[:]\n\tn := clen(*(*[]byte)(unsafe.Pointer(&sl)))\n\tcopy(s.Fstypename[:], old.Fstypename[:n])\n\n\tsl = old.Mntfromname[:]\n\tn = clen(*(*[]byte)(unsafe.Pointer(&sl)))\n\tcopy(s.Mntfromname[:], old.Mntfromname[:n])\n\n\tsl = old.Mntonname[:]\n\tn = clen(*(*[]byte)(unsafe.Pointer(&sl)))\n\tcopy(s.Mntonname[:], old.Mntonname[:n])\n}\n\nfunc convertFromDirents11(buf []byte, old []byte) int {\n\tconst (\n\t\tfixedSize    = int(unsafe.Offsetof(Dirent{}.Name))\n\t\toldFixedSize = int(unsafe.Offsetof(dirent_freebsd11{}.Name))\n\t)\n\n\tdstPos := 0\n\tsrcPos := 0\n\tfor dstPos+fixedSize < len(buf) && srcPos+oldFixedSize < len(old) {\n\t\tvar dstDirent Dirent\n\t\tvar srcDirent dirent_freebsd11\n\n\t\t// If multiple direntries are written, sometimes when we reach the final one,\n\t\t// we may have cap of old less than size of dirent_freebsd11.\n\t\tcopy((*[unsafe.Sizeof(srcDirent)]byte)(unsafe.Pointer(&srcDirent))[:], old[srcPos:])\n\n\t\treclen := roundup(fixedSize+int(srcDirent.Namlen)+1, 8)\n\t\tif dstPos+reclen > len(buf) {\n\t\t\tbreak\n\t\t}\n\n\t\tdstDirent.Fileno = uint64(srcDirent.Fileno)\n\t\tdstDirent.Off = 0\n\t\tdstDirent.Reclen = uint16(reclen)\n\t\tdstDirent.Type = srcDirent.Type\n\t\tdstDirent.Pad0 = 0\n\t\tdstDirent.Namlen = uint16(srcDirent.Namlen)\n\t\tdstDirent.Pad1 = 0\n\n\t\tcopy(dstDirent.Name[:], srcDirent.Name[:srcDirent.Namlen])\n\t\tcopy(buf[dstPos:], (*[unsafe.Sizeof(dstDirent)]byte)(unsafe.Pointer(&dstDirent))[:])\n\t\tpadding := buf[dstPos+fixedSize+int(dstDirent.Namlen) : dstPos+reclen]\n\t\tfor i := range padding {\n\t\t\tpadding[i] = 0\n\t\t}\n\n\t\tdstPos += int(dstDirent.Reclen)\n\t\tsrcPos += int(srcDirent.Reclen)\n\t}\n\n\treturn dstPos\n}\n\nfunc Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\treturn sendfile(outfd, infd, offset, count)\n}\n\n//sys\tptrace(request int, pid int, addr uintptr, data int) (err error)\n\nfunc PtraceAttach(pid int) (err error) {\n\treturn ptrace(PTRACE_ATTACH, pid, 0, 0)\n}\n\nfunc PtraceCont(pid int, signal int) (err error) {\n\treturn ptrace(PTRACE_CONT, pid, 1, signal)\n}\n\nfunc PtraceDetach(pid int) (err error) {\n\treturn ptrace(PTRACE_DETACH, pid, 1, 0)\n}\n\nfunc PtraceGetFpRegs(pid int, fpregsout *FpReg) (err error) {\n\treturn ptrace(PTRACE_GETFPREGS, pid, uintptr(unsafe.Pointer(fpregsout)), 0)\n}\n\nfunc PtraceGetRegs(pid int, regsout *Reg) (err error) {\n\treturn ptrace(PTRACE_GETREGS, pid, uintptr(unsafe.Pointer(regsout)), 0)\n}\n\nfunc PtraceLwpEvents(pid int, enable int) (err error) {\n\treturn ptrace(PTRACE_LWPEVENTS, pid, 0, enable)\n}\n\nfunc PtraceLwpInfo(pid int, info uintptr) (err error) {\n\treturn ptrace(PTRACE_LWPINFO, pid, info, int(unsafe.Sizeof(PtraceLwpInfoStruct{})))\n}\n\nfunc PtracePeekData(pid int, addr uintptr, out []byte) (count int, err error) {\n\treturn PtraceIO(PIOD_READ_D, pid, addr, out, SizeofLong)\n}\n\nfunc PtracePeekText(pid int, addr uintptr, out []byte) (count int, err error) {\n\treturn PtraceIO(PIOD_READ_I, pid, addr, out, SizeofLong)\n}\n\nfunc PtracePokeData(pid int, addr uintptr, data []byte) (count int, err error) {\n\treturn PtraceIO(PIOD_WRITE_D, pid, addr, data, SizeofLong)\n}\n\nfunc PtracePokeText(pid int, addr uintptr, data []byte) (count int, err error) {\n\treturn PtraceIO(PIOD_WRITE_I, pid, addr, data, SizeofLong)\n}\n\nfunc PtraceSetRegs(pid int, regs *Reg) (err error) {\n\treturn ptrace(PTRACE_SETREGS, pid, uintptr(unsafe.Pointer(regs)), 0)\n}\n\nfunc PtraceSingleStep(pid int) (err error) {\n\treturn ptrace(PTRACE_SINGLESTEP, pid, 1, 0)\n}\n\n/*\n * Exposed directly\n */\n//sys\tAccess(path string, mode uint32) (err error)\n//sys\tAdjtime(delta *Timeval, olddelta *Timeval) (err error)\n//sys\tCapEnter() (err error)\n//sys\tcapRightsGet(version int, fd int, rightsp *CapRights) (err error) = SYS___CAP_RIGHTS_GET\n//sys\tcapRightsLimit(fd int, rightsp *CapRights) (err error)\n//sys\tChdir(path string) (err error)\n//sys\tChflags(path string, flags int) (err error)\n//sys\tChmod(path string, mode uint32) (err error)\n//sys\tChown(path string, uid int, gid int) (err error)\n//sys\tChroot(path string) (err error)\n//sys\tClose(fd int) (err error)\n//sys\tDup(fd int) (nfd int, err error)\n//sys\tDup2(from int, to int) (err error)\n//sys\tExit(code int)\n//sys\tExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error)\n//sys\tExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error)\n//sys\tExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error)\n//sys\tExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_POSIX_FADVISE\n//sys\tFaccessat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchdir(fd int) (err error)\n//sys\tFchflags(fd int, flags int) (err error)\n//sys\tFchmod(fd int, mode uint32) (err error)\n//sys\tFchmodat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFchownat(dirfd int, path string, uid int, gid int, flags int) (err error)\n//sys\tFlock(fd int, how int) (err error)\n//sys\tFpathconf(fd int, name int) (val int, err error)\n//sys\tfstat(fd int, stat *stat_freebsd11_t) (err error)\n//sys\tfstat_freebsd12(fd int, stat *Stat_t) (err error)\n//sys\tfstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (err error)\n//sys\tfstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (err error)\n//sys\tfstatfs(fd int, stat *statfs_freebsd11_t) (err error)\n//sys\tfstatfs_freebsd12(fd int, stat *Statfs_t) (err error)\n//sys\tFsync(fd int) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sys\tgetdirentries(fd int, buf []byte, basep *uintptr) (n int, err error)\n//sys\tgetdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, err error)\n//sys\tGetdtablesize() (size int)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (uid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetpgid(pid int) (pgid int, err error)\n//sysnb\tGetpgrp() (pgrp int)\n//sysnb\tGetpid() (pid int)\n//sysnb\tGetppid() (ppid int)\n//sys\tGetpriority(which int, who int) (prio int, err error)\n//sysnb\tGetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tGetrusage(who int, rusage *Rusage) (err error)\n//sysnb\tGetsid(pid int) (sid int, err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n//sysnb\tGetuid() (uid int)\n//sys\tIssetugid() (tainted bool)\n//sys\tKill(pid int, signum syscall.Signal) (err error)\n//sys\tKqueue() (fd int, err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tLink(path string, link string) (err error)\n//sys\tLinkat(pathfd int, path string, linkfd int, link string, flags int) (err error)\n//sys\tListen(s int, backlog int) (err error)\n//sys\tlstat(path string, stat *stat_freebsd11_t) (err error)\n//sys\tMkdir(path string, mode uint32) (err error)\n//sys\tMkdirat(dirfd int, path string, mode uint32) (err error)\n//sys\tMkfifo(path string, mode uint32) (err error)\n//sys\tmknod(path string, mode uint32, dev int) (err error)\n//sys\tmknodat(fd int, path string, mode uint32, dev int) (err error)\n//sys\tmknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (err error)\n//sys\tNanosleep(time *Timespec, leftover *Timespec) (err error)\n//sys\tOpen(path string, mode int, perm uint32) (fd int, err error)\n//sys\tOpenat(fdat int, path string, mode int, perm uint32) (fd int, err error)\n//sys\tPathconf(path string, name int) (val int, err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error)\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error)\n//sys\tread(fd int, p []byte) (n int, err error)\n//sys\tReadlink(path string, buf []byte) (n int, err error)\n//sys\tReadlinkat(dirfd int, path string, buf []byte) (n int, err error)\n//sys\tRename(from string, to string) (err error)\n//sys\tRenameat(fromfd int, from string, tofd int, to string) (err error)\n//sys\tRevoke(path string) (err error)\n//sys\tRmdir(path string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)\n//sysnb\tSetegid(egid int) (err error)\n//sysnb\tSeteuid(euid int) (err error)\n//sysnb\tSetgid(gid int) (err error)\n//sys\tSetlogin(name string) (err error)\n//sysnb\tSetpgid(pid int, pgid int) (err error)\n//sys\tSetpriority(which int, who int, prio int) (err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tSetsid() (pid int, err error)\n//sysnb\tSettimeofday(tp *Timeval) (err error)\n//sysnb\tSetuid(uid int) (err error)\n//sys\tstat(path string, stat *stat_freebsd11_t) (err error)\n//sys\tstatfs(path string, stat *statfs_freebsd11_t) (err error)\n//sys\tstatfs_freebsd12(path string, stat *Statfs_t) (err error)\n//sys\tSymlink(path string, link string) (err error)\n//sys\tSymlinkat(oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSync() (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tUmask(newmask int) (oldmask int)\n//sys\tUndelete(path string) (err error)\n//sys\tUnlink(path string) (err error)\n//sys\tUnlinkat(dirfd int, path string, flags int) (err error)\n//sys\tUnmount(path string, flags int) (err error)\n//sys\twrite(fd int, p []byte) (n int, err error)\n//sys   mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)\n//sys   munmap(addr uintptr, length uintptr) (err error)\n//sys\treadlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ\n//sys\twritelen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_WRITE\n//sys\taccept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error)\n//sys\tutimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)\n\n/*\n * Unimplemented\n */\n// Profil\n// Sigaction\n// Sigprocmask\n// Getlogin\n// Sigpending\n// Sigaltstack\n// Ioctl\n// Reboot\n// Execve\n// Vfork\n// Sbrk\n// Sstk\n// Ovadvise\n// Mincore\n// Setitimer\n// Swapon\n// Select\n// Sigsuspend\n// Readv\n// Writev\n// Nfssvc\n// Getfh\n// Quotactl\n// Mount\n// Csops\n// Waitid\n// Add_profil\n// Kdebug_trace\n// Sigreturn\n// Atsocket\n// Kqueue_from_portset_np\n// Kqueue_portset\n// Getattrlist\n// Setattrlist\n// Getdents\n// Getdirentriesattr\n// Searchfs\n// Delete\n// Copyfile\n// Watchevent\n// Waitevent\n// Modwatch\n// Fsctl\n// Initgroups\n// Posix_spawn\n// Nfsclnt\n// Fhopen\n// Minherit\n// Semsys\n// Msgsys\n// Shmsys\n// Semctl\n// Semget\n// Semop\n// Msgctl\n// Msgget\n// Msgsnd\n// Msgrcv\n// Shmat\n// Shmctl\n// Shmdt\n// Shmget\n// Shm_open\n// Shm_unlink\n// Sem_open\n// Sem_close\n// Sem_unlink\n// Sem_wait\n// Sem_trywait\n// Sem_post\n// Sem_getvalue\n// Sem_init\n// Sem_destroy\n// Open_extended\n// Umask_extended\n// Stat_extended\n// Lstat_extended\n// Fstat_extended\n// Chmod_extended\n// Fchmod_extended\n// Access_extended\n// Settid\n// Gettid\n// Setsgroups\n// Getsgroups\n// Setwgroups\n// Getwgroups\n// Mkfifo_extended\n// Mkdir_extended\n// Identitysvc\n// Shared_region_check_np\n// Shared_region_map_np\n// __pthread_mutex_destroy\n// __pthread_mutex_init\n// __pthread_mutex_lock\n// __pthread_mutex_trylock\n// __pthread_mutex_unlock\n// __pthread_cond_init\n// __pthread_cond_destroy\n// __pthread_cond_broadcast\n// __pthread_cond_signal\n// Setsid_with_pid\n// __pthread_cond_timedwait\n// Aio_fsync\n// Aio_return\n// Aio_suspend\n// Aio_cancel\n// Aio_error\n// Aio_read\n// Aio_write\n// Lio_listio\n// __pthread_cond_wait\n// Iopolicysys\n// __pthread_kill\n// __pthread_sigmask\n// __sigwait\n// __disable_threadsignal\n// __pthread_markcancel\n// __pthread_canceled\n// __semwait_signal\n// Proc_info\n// Stat64_extended\n// Lstat64_extended\n// Fstat64_extended\n// __pthread_chdir\n// __pthread_fchdir\n// Audit\n// Auditon\n// Getauid\n// Setauid\n// Getaudit\n// Setaudit\n// Getaudit_addr\n// Setaudit_addr\n// Auditctl\n// Bsdthread_create\n// Bsdthread_terminate\n// Stack_snapshot\n// Bsdthread_register\n// Workq_open\n// Workq_ops\n// __mac_execve\n// __mac_syscall\n// __mac_get_file\n// __mac_set_file\n// __mac_get_link\n// __mac_set_link\n// __mac_get_proc\n// __mac_set_proc\n// __mac_get_fd\n// __mac_set_fd\n// __mac_get_pid\n// __mac_get_lcid\n// __mac_get_lctx\n// __mac_set_lctx\n// Setlcid\n// Read_nocancel\n// Write_nocancel\n// Open_nocancel\n// Close_nocancel\n// Wait4_nocancel\n// Recvmsg_nocancel\n// Sendmsg_nocancel\n// Recvfrom_nocancel\n// Accept_nocancel\n// Fcntl_nocancel\n// Select_nocancel\n// Fsync_nocancel\n// Connect_nocancel\n// Sigsuspend_nocancel\n// Readv_nocancel\n// Writev_nocancel\n// Sendto_nocancel\n// Pread_nocancel\n// Pwrite_nocancel\n// Waitid_nocancel\n// Poll_nocancel\n// Msgsnd_nocancel\n// Msgrcv_nocancel\n// Sem_wait_nocancel\n// Aio_suspend_nocancel\n// __sigwait_nocancel\n// __semwait_signal_nocancel\n// __mac_mount\n// __mac_get_mount\n// __mac_getfsstat\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_freebsd_386.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build 386,freebsd\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: int32(sec), Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: int32(sec), Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint32(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tvar writtenOut uint64 = 0\n\t_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr((*offset)>>32), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0)\n\n\twritten = int(writtenOut)\n\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\nfunc PtraceGetFsBase(pid int, fsbase *int64) (err error) {\n\treturn ptrace(PTRACE_GETFSBASE, pid, uintptr(unsafe.Pointer(fsbase)), 0)\n}\n\nfunc PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) {\n\tioDesc := PtraceIoDesc{Op: int32(req), Offs: (*byte)(unsafe.Pointer(addr)), Addr: (*byte)(unsafe.Pointer(&out[0])), Len: uint32(countin)}\n\terr = ptrace(PTRACE_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)\n\treturn int(ioDesc.Len), err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build amd64,freebsd\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tvar writtenOut uint64 = 0\n\t_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)\n\n\twritten = int(writtenOut)\n\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\nfunc PtraceGetFsBase(pid int, fsbase *int64) (err error) {\n\treturn ptrace(PTRACE_GETFSBASE, pid, uintptr(unsafe.Pointer(fsbase)), 0)\n}\n\nfunc PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) {\n\tioDesc := PtraceIoDesc{Op: int32(req), Offs: (*byte)(unsafe.Pointer(addr)), Addr: (*byte)(unsafe.Pointer(&out[0])), Len: uint64(countin)}\n\terr = ptrace(PTRACE_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)\n\treturn int(ioDesc.Len), err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm,freebsd\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint32(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tvar writtenOut uint64 = 0\n\t_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr((*offset)>>32), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0)\n\n\twritten = int(writtenOut)\n\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\nfunc PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) {\n\tioDesc := PtraceIoDesc{Op: int32(req), Offs: (*byte)(unsafe.Pointer(addr)), Addr: (*byte)(unsafe.Pointer(&out[0])), Len: uint32(countin)}\n\terr = ptrace(PTRACE_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)\n\treturn int(ioDesc.Len), err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm64,freebsd\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tvar writtenOut uint64 = 0\n\t_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)\n\n\twritten = int(writtenOut)\n\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\nfunc PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) {\n\tioDesc := PtraceIoDesc{Op: int32(req), Offs: (*byte)(unsafe.Pointer(addr)), Addr: (*byte)(unsafe.Pointer(&out[0])), Len: uint64(countin)}\n\terr = ptrace(PTRACE_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)\n\treturn int(ioDesc.Len), err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_illumos.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// illumos system calls not present on Solaris.\n\n// +build amd64,illumos\n\npackage unix\n\nimport \"unsafe\"\n\nfunc bytes2iovec(bs [][]byte) []Iovec {\n\tiovecs := make([]Iovec, len(bs))\n\tfor i, b := range bs {\n\t\tiovecs[i].SetLen(len(b))\n\t\tif len(b) > 0 {\n\t\t\t// somehow Iovec.Base on illumos is (*int8), not (*byte)\n\t\t\tiovecs[i].Base = (*int8)(unsafe.Pointer(&b[0]))\n\t\t} else {\n\t\t\tiovecs[i].Base = (*int8)(unsafe.Pointer(&_zero))\n\t\t}\n\t}\n\treturn iovecs\n}\n\n//sys\treadv(fd int, iovs []Iovec) (n int, err error)\n\nfunc Readv(fd int, iovs [][]byte) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tn, err = readv(fd, iovecs)\n\treturn n, err\n}\n\n//sys\tpreadv(fd int, iovs []Iovec, off int64) (n int, err error)\n\nfunc Preadv(fd int, iovs [][]byte, off int64) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tn, err = preadv(fd, iovecs, off)\n\treturn n, err\n}\n\n//sys\twritev(fd int, iovs []Iovec) (n int, err error)\n\nfunc Writev(fd int, iovs [][]byte) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tn, err = writev(fd, iovecs)\n\treturn n, err\n}\n\n//sys\tpwritev(fd int, iovs []Iovec, off int64) (n int, err error)\n\nfunc Pwritev(fd int, iovs [][]byte, off int64) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tn, err = pwritev(fd, iovecs, off)\n\treturn n, err\n}\n\n//sys\taccept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) = libsocket.accept4\n\nfunc Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tnfd, err = accept4(fd, &rsa, &len, flags)\n\tif err != nil {\n\t\treturn\n\t}\n\tif len > SizeofSockaddrAny {\n\t\tpanic(\"RawSockaddrAny too small\")\n\t}\n\tsa, err = anyToSockaddr(fd, &rsa)\n\tif err != nil {\n\t\tClose(nfd)\n\t\tnfd = 0\n\t}\n\treturn\n}\n\n//sysnb\tpipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) error {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr := pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Linux system calls.\n// This file is compiled as ordinary Go code,\n// but it is also input to mksyscall,\n// which parses the //sys lines and generates system call stubs.\n// Note that sometimes we use a lowercase //sys name and\n// wrap it in our own nicer implementation.\n\npackage unix\n\nimport (\n\t\"encoding/binary\"\n\t\"runtime\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n/*\n * Wrapped\n */\n\nfunc Access(path string, mode uint32) (err error) {\n\treturn Faccessat(AT_FDCWD, path, mode, 0)\n}\n\nfunc Chmod(path string, mode uint32) (err error) {\n\treturn Fchmodat(AT_FDCWD, path, mode, 0)\n}\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\treturn Fchownat(AT_FDCWD, path, uid, gid, 0)\n}\n\nfunc Creat(path string, mode uint32) (fd int, err error) {\n\treturn Open(path, O_CREAT|O_WRONLY|O_TRUNC, mode)\n}\n\n//sys\tFanotifyInit(flags uint, event_f_flags uint) (fd int, err error)\n//sys\tfanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error)\n\nfunc FanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname string) (err error) {\n\tif pathname == \"\" {\n\t\treturn fanotifyMark(fd, flags, mask, dirFd, nil)\n\t}\n\tp, err := BytePtrFromString(pathname)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn fanotifyMark(fd, flags, mask, dirFd, p)\n}\n\n//sys\tfchmodat(dirfd int, path string, mode uint32) (err error)\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\t// Linux fchmodat doesn't support the flags parameter. Mimick glibc's behavior\n\t// and check the flags. Otherwise the mode would be applied to the symlink\n\t// destination which is not what the user expects.\n\tif flags&^AT_SYMLINK_NOFOLLOW != 0 {\n\t\treturn EINVAL\n\t} else if flags&AT_SYMLINK_NOFOLLOW != 0 {\n\t\treturn EOPNOTSUPP\n\t}\n\treturn fchmodat(dirfd, path, mode)\n}\n\n//sys\tioctl(fd int, req uint, arg uintptr) (err error)\n\n// ioctl itself should not be exposed directly, but additional get/set\n// functions for specific types are permissible.\n\n// IoctlRetInt performs an ioctl operation specified by req on a device\n// associated with opened file descriptor fd, and returns a non-negative\n// integer that is returned by the ioctl syscall.\nfunc IoctlRetInt(fd int, req uint) (int, error) {\n\tret, _, err := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), 0)\n\tif err != 0 {\n\t\treturn 0, err\n\t}\n\treturn int(ret), nil\n}\n\nfunc IoctlSetRTCTime(fd int, value *RTCTime) error {\n\terr := ioctl(fd, RTC_SET_TIME, uintptr(unsafe.Pointer(value)))\n\truntime.KeepAlive(value)\n\treturn err\n}\n\nfunc IoctlSetRTCWkAlrm(fd int, value *RTCWkAlrm) error {\n\terr := ioctl(fd, RTC_WKALM_SET, uintptr(unsafe.Pointer(value)))\n\truntime.KeepAlive(value)\n\treturn err\n}\n\nfunc IoctlGetUint32(fd int, req uint) (uint32, error) {\n\tvar value uint32\n\terr := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))\n\treturn value, err\n}\n\nfunc IoctlGetRTCTime(fd int) (*RTCTime, error) {\n\tvar value RTCTime\n\terr := ioctl(fd, RTC_RD_TIME, uintptr(unsafe.Pointer(&value)))\n\treturn &value, err\n}\n\nfunc IoctlGetRTCWkAlrm(fd int) (*RTCWkAlrm, error) {\n\tvar value RTCWkAlrm\n\terr := ioctl(fd, RTC_WKALM_RD, uintptr(unsafe.Pointer(&value)))\n\treturn &value, err\n}\n\n// IoctlFileClone performs an FICLONERANGE ioctl operation to clone the range of\n// data conveyed in value to the file associated with the file descriptor\n// destFd. See the ioctl_ficlonerange(2) man page for details.\nfunc IoctlFileCloneRange(destFd int, value *FileCloneRange) error {\n\terr := ioctl(destFd, FICLONERANGE, uintptr(unsafe.Pointer(value)))\n\truntime.KeepAlive(value)\n\treturn err\n}\n\n// IoctlFileClone performs an FICLONE ioctl operation to clone the entire file\n// associated with the file description srcFd to the file associated with the\n// file descriptor destFd. See the ioctl_ficlone(2) man page for details.\nfunc IoctlFileClone(destFd, srcFd int) error {\n\treturn ioctl(destFd, FICLONE, uintptr(srcFd))\n}\n\n// IoctlFileClone performs an FIDEDUPERANGE ioctl operation to share the range of\n// data conveyed in value with the file associated with the file descriptor\n// destFd. See the ioctl_fideduperange(2) man page for details.\nfunc IoctlFileDedupeRange(destFd int, value *FileDedupeRange) error {\n\terr := ioctl(destFd, FIDEDUPERANGE, uintptr(unsafe.Pointer(value)))\n\truntime.KeepAlive(value)\n\treturn err\n}\n\n//sys\tLinkat(olddirfd int, oldpath string, newdirfd int, newpath string, flags int) (err error)\n\nfunc Link(oldpath string, newpath string) (err error) {\n\treturn Linkat(AT_FDCWD, oldpath, AT_FDCWD, newpath, 0)\n}\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\treturn Mkdirat(AT_FDCWD, path, mode)\n}\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\treturn Mknodat(AT_FDCWD, path, mode, dev)\n}\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\treturn openat(AT_FDCWD, path, mode|O_LARGEFILE, perm)\n}\n\n//sys\topenat(dirfd int, path string, flags int, mode uint32) (fd int, err error)\n\nfunc Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {\n\treturn openat(dirfd, path, flags|O_LARGEFILE, mode)\n}\n\n//sys\topenat2(dirfd int, path string, open_how *OpenHow, size int) (fd int, err error)\n\nfunc Openat2(dirfd int, path string, how *OpenHow) (fd int, err error) {\n\treturn openat2(dirfd, path, how, SizeofOpenHow)\n}\n\n//sys\tppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error)\n\nfunc Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn ppoll(nil, 0, timeout, sigmask)\n\t}\n\treturn ppoll(&fds[0], len(fds), timeout, sigmask)\n}\n\n//sys\tReadlinkat(dirfd int, path string, buf []byte) (n int, err error)\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\treturn Readlinkat(AT_FDCWD, path, buf)\n}\n\nfunc Rename(oldpath string, newpath string) (err error) {\n\treturn Renameat(AT_FDCWD, oldpath, AT_FDCWD, newpath)\n}\n\nfunc Rmdir(path string) error {\n\treturn Unlinkat(AT_FDCWD, path, AT_REMOVEDIR)\n}\n\n//sys\tSymlinkat(oldpath string, newdirfd int, newpath string) (err error)\n\nfunc Symlink(oldpath string, newpath string) (err error) {\n\treturn Symlinkat(oldpath, AT_FDCWD, newpath)\n}\n\nfunc Unlink(path string) error {\n\treturn Unlinkat(AT_FDCWD, path, 0)\n}\n\n//sys\tUnlinkat(dirfd int, path string, flags int) (err error)\n\nfunc Utimes(path string, tv []Timeval) error {\n\tif tv == nil {\n\t\terr := utimensat(AT_FDCWD, path, nil, 0)\n\t\tif err != ENOSYS {\n\t\t\treturn err\n\t\t}\n\t\treturn utimes(path, nil)\n\t}\n\tif len(tv) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar ts [2]Timespec\n\tts[0] = NsecToTimespec(TimevalToNsec(tv[0]))\n\tts[1] = NsecToTimespec(TimevalToNsec(tv[1]))\n\terr := utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\treturn utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\n//sys\tutimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)\n\nfunc UtimesNano(path string, ts []Timespec) error {\n\tif ts == nil {\n\t\terr := utimensat(AT_FDCWD, path, nil, 0)\n\t\tif err != ENOSYS {\n\t\t\treturn err\n\t\t}\n\t\treturn utimes(path, nil)\n\t}\n\tif len(ts) != 2 {\n\t\treturn EINVAL\n\t}\n\terr := utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\t// If the utimensat syscall isn't available (utimensat was added to Linux\n\t// in 2.6.22, Released, 8 July 2007) then fall back to utimes\n\tvar tv [2]Timeval\n\tfor i := 0; i < 2; i++ {\n\t\ttv[i] = NsecToTimeval(TimespecToNsec(ts[i]))\n\t}\n\treturn utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\nfunc UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {\n\tif ts == nil {\n\t\treturn utimensat(dirfd, path, nil, flags)\n\t}\n\tif len(ts) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), flags)\n}\n\nfunc Futimesat(dirfd int, path string, tv []Timeval) error {\n\tif tv == nil {\n\t\treturn futimesat(dirfd, path, nil)\n\t}\n\tif len(tv) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn futimesat(dirfd, path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\nfunc Futimes(fd int, tv []Timeval) (err error) {\n\t// Believe it or not, this is the best we can do on Linux\n\t// (and is what glibc does).\n\treturn Utimes(\"/proc/self/fd/\"+itoa(fd), tv)\n}\n\nconst ImplementsGetwd = true\n\n//sys\tGetcwd(buf []byte) (n int, err error)\n\nfunc Getwd() (wd string, err error) {\n\tvar buf [PathMax]byte\n\tn, err := Getcwd(buf[0:])\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\t// Getcwd returns the number of bytes written to buf, including the NUL.\n\tif n < 1 || n > len(buf) || buf[n-1] != 0 {\n\t\treturn \"\", EINVAL\n\t}\n\treturn string(buf[0 : n-1]), nil\n}\n\nfunc Getgroups() (gids []int, err error) {\n\tn, err := getgroups(0, nil)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif n == 0 {\n\t\treturn nil, nil\n\t}\n\n\t// Sanity check group count. Max is 1<<16 on Linux.\n\tif n < 0 || n > 1<<20 {\n\t\treturn nil, EINVAL\n\t}\n\n\ta := make([]_Gid_t, n)\n\tn, err = getgroups(n, &a[0])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tgids = make([]int, n)\n\tfor i, v := range a[0:n] {\n\t\tgids[i] = int(v)\n\t}\n\treturn\n}\n\nfunc Setgroups(gids []int) (err error) {\n\tif len(gids) == 0 {\n\t\treturn setgroups(0, nil)\n\t}\n\n\ta := make([]_Gid_t, len(gids))\n\tfor i, v := range gids {\n\t\ta[i] = _Gid_t(v)\n\t}\n\treturn setgroups(len(a), &a[0])\n}\n\ntype WaitStatus uint32\n\n// Wait status is 7 bits at bottom, either 0 (exited),\n// 0x7F (stopped), or a signal number that caused an exit.\n// The 0x80 bit is whether there was a core dump.\n// An extra number (exit code, signal causing a stop)\n// is in the high bits. At least that's the idea.\n// There are various irregularities. For example, the\n// \"continued\" status is 0xFFFF, distinguishing itself\n// from stopped via the core dump bit.\n\nconst (\n\tmask    = 0x7F\n\tcore    = 0x80\n\texited  = 0x00\n\tstopped = 0x7F\n\tshift   = 8\n)\n\nfunc (w WaitStatus) Exited() bool { return w&mask == exited }\n\nfunc (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }\n\nfunc (w WaitStatus) Stopped() bool { return w&0xFF == stopped }\n\nfunc (w WaitStatus) Continued() bool { return w == 0xFFFF }\n\nfunc (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }\n\nfunc (w WaitStatus) ExitStatus() int {\n\tif !w.Exited() {\n\t\treturn -1\n\t}\n\treturn int(w>>shift) & 0xFF\n}\n\nfunc (w WaitStatus) Signal() syscall.Signal {\n\tif !w.Signaled() {\n\t\treturn -1\n\t}\n\treturn syscall.Signal(w & mask)\n}\n\nfunc (w WaitStatus) StopSignal() syscall.Signal {\n\tif !w.Stopped() {\n\t\treturn -1\n\t}\n\treturn syscall.Signal(w>>shift) & 0xFF\n}\n\nfunc (w WaitStatus) TrapCause() int {\n\tif w.StopSignal() != SIGTRAP {\n\t\treturn -1\n\t}\n\treturn int(w>>shift) >> 8\n}\n\n//sys\twait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error)\n\nfunc Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {\n\tvar status _C_int\n\twpid, err = wait4(pid, &status, options, rusage)\n\tif wstatus != nil {\n\t\t*wstatus = WaitStatus(status)\n\t}\n\treturn\n}\n\nfunc Mkfifo(path string, mode uint32) error {\n\treturn Mknod(path, mode|S_IFIFO, 0)\n}\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) error {\n\treturn Mknodat(dirfd, path, mode|S_IFIFO, 0)\n}\n\nfunc (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_INET\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrInet4, nil\n}\n\nfunc (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_INET6\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tsa.raw.Scope_id = sa.ZoneId\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrInet6, nil\n}\n\nfunc (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tname := sa.Name\n\tn := len(name)\n\tif n >= len(sa.raw.Path) {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_UNIX\n\tfor i := 0; i < n; i++ {\n\t\tsa.raw.Path[i] = int8(name[i])\n\t}\n\t// length is family (uint16), name, NUL.\n\tsl := _Socklen(2)\n\tif n > 0 {\n\t\tsl += _Socklen(n) + 1\n\t}\n\tif sa.raw.Path[0] == '@' {\n\t\tsa.raw.Path[0] = 0\n\t\t// Don't count trailing NUL for abstract address.\n\t\tsl--\n\t}\n\n\treturn unsafe.Pointer(&sa.raw), sl, nil\n}\n\n// SockaddrLinklayer implements the Sockaddr interface for AF_PACKET type sockets.\ntype SockaddrLinklayer struct {\n\tProtocol uint16\n\tIfindex  int\n\tHatype   uint16\n\tPkttype  uint8\n\tHalen    uint8\n\tAddr     [8]byte\n\traw      RawSockaddrLinklayer\n}\n\nfunc (sa *SockaddrLinklayer) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Ifindex < 0 || sa.Ifindex > 0x7fffffff {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_PACKET\n\tsa.raw.Protocol = sa.Protocol\n\tsa.raw.Ifindex = int32(sa.Ifindex)\n\tsa.raw.Hatype = sa.Hatype\n\tsa.raw.Pkttype = sa.Pkttype\n\tsa.raw.Halen = sa.Halen\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrLinklayer, nil\n}\n\n// SockaddrNetlink implements the Sockaddr interface for AF_NETLINK type sockets.\ntype SockaddrNetlink struct {\n\tFamily uint16\n\tPad    uint16\n\tPid    uint32\n\tGroups uint32\n\traw    RawSockaddrNetlink\n}\n\nfunc (sa *SockaddrNetlink) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tsa.raw.Family = AF_NETLINK\n\tsa.raw.Pad = sa.Pad\n\tsa.raw.Pid = sa.Pid\n\tsa.raw.Groups = sa.Groups\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrNetlink, nil\n}\n\n// SockaddrHCI implements the Sockaddr interface for AF_BLUETOOTH type sockets\n// using the HCI protocol.\ntype SockaddrHCI struct {\n\tDev     uint16\n\tChannel uint16\n\traw     RawSockaddrHCI\n}\n\nfunc (sa *SockaddrHCI) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tsa.raw.Family = AF_BLUETOOTH\n\tsa.raw.Dev = sa.Dev\n\tsa.raw.Channel = sa.Channel\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrHCI, nil\n}\n\n// SockaddrL2 implements the Sockaddr interface for AF_BLUETOOTH type sockets\n// using the L2CAP protocol.\ntype SockaddrL2 struct {\n\tPSM      uint16\n\tCID      uint16\n\tAddr     [6]uint8\n\tAddrType uint8\n\traw      RawSockaddrL2\n}\n\nfunc (sa *SockaddrL2) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tsa.raw.Family = AF_BLUETOOTH\n\tpsm := (*[2]byte)(unsafe.Pointer(&sa.raw.Psm))\n\tpsm[0] = byte(sa.PSM)\n\tpsm[1] = byte(sa.PSM >> 8)\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Bdaddr[i] = sa.Addr[len(sa.Addr)-1-i]\n\t}\n\tcid := (*[2]byte)(unsafe.Pointer(&sa.raw.Cid))\n\tcid[0] = byte(sa.CID)\n\tcid[1] = byte(sa.CID >> 8)\n\tsa.raw.Bdaddr_type = sa.AddrType\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrL2, nil\n}\n\n// SockaddrRFCOMM implements the Sockaddr interface for AF_BLUETOOTH type sockets\n// using the RFCOMM protocol.\n//\n// Server example:\n//\n//      fd, _ := Socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM)\n//      _ = unix.Bind(fd, &unix.SockaddrRFCOMM{\n//      \tChannel: 1,\n//      \tAddr:    [6]uint8{0, 0, 0, 0, 0, 0}, // BDADDR_ANY or 00:00:00:00:00:00\n//      })\n//      _ = Listen(fd, 1)\n//      nfd, sa, _ := Accept(fd)\n//      fmt.Printf(\"conn addr=%v fd=%d\", sa.(*unix.SockaddrRFCOMM).Addr, nfd)\n//      Read(nfd, buf)\n//\n// Client example:\n//\n//      fd, _ := Socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM)\n//      _ = Connect(fd, &SockaddrRFCOMM{\n//      \tChannel: 1,\n//      \tAddr:    [6]byte{0x11, 0x22, 0x33, 0xaa, 0xbb, 0xcc}, // CC:BB:AA:33:22:11\n//      })\n//      Write(fd, []byte(`hello`))\ntype SockaddrRFCOMM struct {\n\t// Addr represents a bluetooth address, byte ordering is little-endian.\n\tAddr [6]uint8\n\n\t// Channel is a designated bluetooth channel, only 1-30 are available for use.\n\t// Since Linux 2.6.7 and further zero value is the first available channel.\n\tChannel uint8\n\n\traw RawSockaddrRFCOMM\n}\n\nfunc (sa *SockaddrRFCOMM) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tsa.raw.Family = AF_BLUETOOTH\n\tsa.raw.Channel = sa.Channel\n\tsa.raw.Bdaddr = sa.Addr\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrRFCOMM, nil\n}\n\n// SockaddrCAN implements the Sockaddr interface for AF_CAN type sockets.\n// The RxID and TxID fields are used for transport protocol addressing in\n// (CAN_TP16, CAN_TP20, CAN_MCNET, and CAN_ISOTP), they can be left with\n// zero values for CAN_RAW and CAN_BCM sockets as they have no meaning.\n//\n// The SockaddrCAN struct must be bound to the socket file descriptor\n// using Bind before the CAN socket can be used.\n//\n//      // Read one raw CAN frame\n//      fd, _ := Socket(AF_CAN, SOCK_RAW, CAN_RAW)\n//      addr := &SockaddrCAN{Ifindex: index}\n//      Bind(fd, addr)\n//      frame := make([]byte, 16)\n//      Read(fd, frame)\n//\n// The full SocketCAN documentation can be found in the linux kernel\n// archives at: https://www.kernel.org/doc/Documentation/networking/can.txt\ntype SockaddrCAN struct {\n\tIfindex int\n\tRxID    uint32\n\tTxID    uint32\n\traw     RawSockaddrCAN\n}\n\nfunc (sa *SockaddrCAN) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Ifindex < 0 || sa.Ifindex > 0x7fffffff {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_CAN\n\tsa.raw.Ifindex = int32(sa.Ifindex)\n\trx := (*[4]byte)(unsafe.Pointer(&sa.RxID))\n\tfor i := 0; i < 4; i++ {\n\t\tsa.raw.Addr[i] = rx[i]\n\t}\n\ttx := (*[4]byte)(unsafe.Pointer(&sa.TxID))\n\tfor i := 0; i < 4; i++ {\n\t\tsa.raw.Addr[i+4] = tx[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrCAN, nil\n}\n\n// SockaddrALG implements the Sockaddr interface for AF_ALG type sockets.\n// SockaddrALG enables userspace access to the Linux kernel's cryptography\n// subsystem. The Type and Name fields specify which type of hash or cipher\n// should be used with a given socket.\n//\n// To create a file descriptor that provides access to a hash or cipher, both\n// Bind and Accept must be used. Once the setup process is complete, input\n// data can be written to the socket, processed by the kernel, and then read\n// back as hash output or ciphertext.\n//\n// Here is an example of using an AF_ALG socket with SHA1 hashing.\n// The initial socket setup process is as follows:\n//\n//      // Open a socket to perform SHA1 hashing.\n//      fd, _ := unix.Socket(unix.AF_ALG, unix.SOCK_SEQPACKET, 0)\n//      addr := &unix.SockaddrALG{Type: \"hash\", Name: \"sha1\"}\n//      unix.Bind(fd, addr)\n//      // Note: unix.Accept does not work at this time; must invoke accept()\n//      // manually using unix.Syscall.\n//      hashfd, _, _ := unix.Syscall(unix.SYS_ACCEPT, uintptr(fd), 0, 0)\n//\n// Once a file descriptor has been returned from Accept, it may be used to\n// perform SHA1 hashing. The descriptor is not safe for concurrent use, but\n// may be re-used repeatedly with subsequent Write and Read operations.\n//\n// When hashing a small byte slice or string, a single Write and Read may\n// be used:\n//\n//      // Assume hashfd is already configured using the setup process.\n//      hash := os.NewFile(hashfd, \"sha1\")\n//      // Hash an input string and read the results. Each Write discards\n//      // previous hash state. Read always reads the current state.\n//      b := make([]byte, 20)\n//      for i := 0; i < 2; i++ {\n//          io.WriteString(hash, \"Hello, world.\")\n//          hash.Read(b)\n//          fmt.Println(hex.EncodeToString(b))\n//      }\n//      // Output:\n//      // 2ae01472317d1935a84797ec1983ae243fc6aa28\n//      // 2ae01472317d1935a84797ec1983ae243fc6aa28\n//\n// For hashing larger byte slices, or byte streams such as those read from\n// a file or socket, use Sendto with MSG_MORE to instruct the kernel to update\n// the hash digest instead of creating a new one for a given chunk and finalizing it.\n//\n//      // Assume hashfd and addr are already configured using the setup process.\n//      hash := os.NewFile(hashfd, \"sha1\")\n//      // Hash the contents of a file.\n//      f, _ := os.Open(\"/tmp/linux-4.10-rc7.tar.xz\")\n//      b := make([]byte, 4096)\n//      for {\n//          n, err := f.Read(b)\n//          if err == io.EOF {\n//              break\n//          }\n//          unix.Sendto(hashfd, b[:n], unix.MSG_MORE, addr)\n//      }\n//      hash.Read(b)\n//      fmt.Println(hex.EncodeToString(b))\n//      // Output: 85cdcad0c06eef66f805ecce353bec9accbeecc5\n//\n// For more information, see: http://www.chronox.de/crypto-API/crypto/userspace-if.html.\ntype SockaddrALG struct {\n\tType    string\n\tName    string\n\tFeature uint32\n\tMask    uint32\n\traw     RawSockaddrALG\n}\n\nfunc (sa *SockaddrALG) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\t// Leave room for NUL byte terminator.\n\tif len(sa.Type) > 13 {\n\t\treturn nil, 0, EINVAL\n\t}\n\tif len(sa.Name) > 63 {\n\t\treturn nil, 0, EINVAL\n\t}\n\n\tsa.raw.Family = AF_ALG\n\tsa.raw.Feat = sa.Feature\n\tsa.raw.Mask = sa.Mask\n\n\ttyp, err := ByteSliceFromString(sa.Type)\n\tif err != nil {\n\t\treturn nil, 0, err\n\t}\n\tname, err := ByteSliceFromString(sa.Name)\n\tif err != nil {\n\t\treturn nil, 0, err\n\t}\n\n\tcopy(sa.raw.Type[:], typ)\n\tcopy(sa.raw.Name[:], name)\n\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrALG, nil\n}\n\n// SockaddrVM implements the Sockaddr interface for AF_VSOCK type sockets.\n// SockaddrVM provides access to Linux VM sockets: a mechanism that enables\n// bidirectional communication between a hypervisor and its guest virtual\n// machines.\ntype SockaddrVM struct {\n\t// CID and Port specify a context ID and port address for a VM socket.\n\t// Guests have a unique CID, and hosts may have a well-known CID of:\n\t//  - VMADDR_CID_HYPERVISOR: refers to the hypervisor process.\n\t//  - VMADDR_CID_HOST: refers to other processes on the host.\n\tCID  uint32\n\tPort uint32\n\traw  RawSockaddrVM\n}\n\nfunc (sa *SockaddrVM) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tsa.raw.Family = AF_VSOCK\n\tsa.raw.Port = sa.Port\n\tsa.raw.Cid = sa.CID\n\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrVM, nil\n}\n\ntype SockaddrXDP struct {\n\tFlags        uint16\n\tIfindex      uint32\n\tQueueID      uint32\n\tSharedUmemFD uint32\n\traw          RawSockaddrXDP\n}\n\nfunc (sa *SockaddrXDP) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tsa.raw.Family = AF_XDP\n\tsa.raw.Flags = sa.Flags\n\tsa.raw.Ifindex = sa.Ifindex\n\tsa.raw.Queue_id = sa.QueueID\n\tsa.raw.Shared_umem_fd = sa.SharedUmemFD\n\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrXDP, nil\n}\n\n// This constant mirrors the #define of PX_PROTO_OE in\n// linux/if_pppox.h. We're defining this by hand here instead of\n// autogenerating through mkerrors.sh because including\n// linux/if_pppox.h causes some declaration conflicts with other\n// includes (linux/if_pppox.h includes linux/in.h, which conflicts\n// with netinet/in.h). Given that we only need a single zero constant\n// out of that file, it's cleaner to just define it by hand here.\nconst px_proto_oe = 0\n\ntype SockaddrPPPoE struct {\n\tSID    uint16\n\tRemote []byte\n\tDev    string\n\traw    RawSockaddrPPPoX\n}\n\nfunc (sa *SockaddrPPPoE) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif len(sa.Remote) != 6 {\n\t\treturn nil, 0, EINVAL\n\t}\n\tif len(sa.Dev) > IFNAMSIZ-1 {\n\t\treturn nil, 0, EINVAL\n\t}\n\n\t*(*uint16)(unsafe.Pointer(&sa.raw[0])) = AF_PPPOX\n\t// This next field is in host-endian byte order. We can't use the\n\t// same unsafe pointer cast as above, because this value is not\n\t// 32-bit aligned and some architectures don't allow unaligned\n\t// access.\n\t//\n\t// However, the value of px_proto_oe is 0, so we can use\n\t// encoding/binary helpers to write the bytes without worrying\n\t// about the ordering.\n\tbinary.BigEndian.PutUint32(sa.raw[2:6], px_proto_oe)\n\t// This field is deliberately big-endian, unlike the previous\n\t// one. The kernel expects SID to be in network byte order.\n\tbinary.BigEndian.PutUint16(sa.raw[6:8], sa.SID)\n\tcopy(sa.raw[8:14], sa.Remote)\n\tfor i := 14; i < 14+IFNAMSIZ; i++ {\n\t\tsa.raw[i] = 0\n\t}\n\tcopy(sa.raw[14:], sa.Dev)\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrPPPoX, nil\n}\n\n// SockaddrTIPC implements the Sockaddr interface for AF_TIPC type sockets.\n// For more information on TIPC, see: http://tipc.sourceforge.net/.\ntype SockaddrTIPC struct {\n\t// Scope is the publication scopes when binding service/service range.\n\t// Should be set to TIPC_CLUSTER_SCOPE or TIPC_NODE_SCOPE.\n\tScope int\n\n\t// Addr is the type of address used to manipulate a socket. Addr must be\n\t// one of:\n\t//  - *TIPCSocketAddr: \"id\" variant in the C addr union\n\t//  - *TIPCServiceRange: \"nameseq\" variant in the C addr union\n\t//  - *TIPCServiceName: \"name\" variant in the C addr union\n\t//\n\t// If nil, EINVAL will be returned when the structure is used.\n\tAddr TIPCAddr\n\n\traw RawSockaddrTIPC\n}\n\n// TIPCAddr is implemented by types that can be used as an address for\n// SockaddrTIPC. It is only implemented by *TIPCSocketAddr, *TIPCServiceRange,\n// and *TIPCServiceName.\ntype TIPCAddr interface {\n\ttipcAddrtype() uint8\n\ttipcAddr() [12]byte\n}\n\nfunc (sa *TIPCSocketAddr) tipcAddr() [12]byte {\n\tvar out [12]byte\n\tcopy(out[:], (*(*[unsafe.Sizeof(TIPCSocketAddr{})]byte)(unsafe.Pointer(sa)))[:])\n\treturn out\n}\n\nfunc (sa *TIPCSocketAddr) tipcAddrtype() uint8 { return TIPC_SOCKET_ADDR }\n\nfunc (sa *TIPCServiceRange) tipcAddr() [12]byte {\n\tvar out [12]byte\n\tcopy(out[:], (*(*[unsafe.Sizeof(TIPCServiceRange{})]byte)(unsafe.Pointer(sa)))[:])\n\treturn out\n}\n\nfunc (sa *TIPCServiceRange) tipcAddrtype() uint8 { return TIPC_SERVICE_RANGE }\n\nfunc (sa *TIPCServiceName) tipcAddr() [12]byte {\n\tvar out [12]byte\n\tcopy(out[:], (*(*[unsafe.Sizeof(TIPCServiceName{})]byte)(unsafe.Pointer(sa)))[:])\n\treturn out\n}\n\nfunc (sa *TIPCServiceName) tipcAddrtype() uint8 { return TIPC_SERVICE_ADDR }\n\nfunc (sa *SockaddrTIPC) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Addr == nil {\n\t\treturn nil, 0, EINVAL\n\t}\n\n\tsa.raw.Family = AF_TIPC\n\tsa.raw.Scope = int8(sa.Scope)\n\tsa.raw.Addrtype = sa.Addr.tipcAddrtype()\n\tsa.raw.Addr = sa.Addr.tipcAddr()\n\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrTIPC, nil\n}\n\n// SockaddrL2TPIP implements the Sockaddr interface for IPPROTO_L2TP/AF_INET sockets.\ntype SockaddrL2TPIP struct {\n\tAddr   [4]byte\n\tConnId uint32\n\traw    RawSockaddrL2TPIP\n}\n\nfunc (sa *SockaddrL2TPIP) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tsa.raw.Family = AF_INET\n\tsa.raw.Conn_id = sa.ConnId\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrL2TPIP, nil\n}\n\n// SockaddrL2TPIP6 implements the Sockaddr interface for IPPROTO_L2TP/AF_INET6 sockets.\ntype SockaddrL2TPIP6 struct {\n\tAddr   [16]byte\n\tZoneId uint32\n\tConnId uint32\n\traw    RawSockaddrL2TPIP6\n}\n\nfunc (sa *SockaddrL2TPIP6) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tsa.raw.Family = AF_INET6\n\tsa.raw.Conn_id = sa.ConnId\n\tsa.raw.Scope_id = sa.ZoneId\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrL2TPIP6, nil\n}\n\n// SockaddrIUCV implements the Sockaddr interface for AF_IUCV sockets.\ntype SockaddrIUCV struct {\n\tUserID string\n\tName   string\n\traw    RawSockaddrIUCV\n}\n\nfunc (sa *SockaddrIUCV) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tsa.raw.Family = AF_IUCV\n\t// These are EBCDIC encoded by the kernel, but we still need to pad them\n\t// with blanks. Initializing with blanks allows the caller to feed in either\n\t// a padded or an unpadded string.\n\tfor i := 0; i < 8; i++ {\n\t\tsa.raw.Nodeid[i] = ' '\n\t\tsa.raw.User_id[i] = ' '\n\t\tsa.raw.Name[i] = ' '\n\t}\n\tif len(sa.UserID) > 8 || len(sa.Name) > 8 {\n\t\treturn nil, 0, EINVAL\n\t}\n\tfor i, b := range []byte(sa.UserID[:]) {\n\t\tsa.raw.User_id[i] = int8(b)\n\t}\n\tfor i, b := range []byte(sa.Name[:]) {\n\t\tsa.raw.Name[i] = int8(b)\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrIUCV, nil\n}\n\nfunc anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {\n\tswitch rsa.Addr.Family {\n\tcase AF_NETLINK:\n\t\tpp := (*RawSockaddrNetlink)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrNetlink)\n\t\tsa.Family = pp.Family\n\t\tsa.Pad = pp.Pad\n\t\tsa.Pid = pp.Pid\n\t\tsa.Groups = pp.Groups\n\t\treturn sa, nil\n\n\tcase AF_PACKET:\n\t\tpp := (*RawSockaddrLinklayer)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrLinklayer)\n\t\tsa.Protocol = pp.Protocol\n\t\tsa.Ifindex = int(pp.Ifindex)\n\t\tsa.Hatype = pp.Hatype\n\t\tsa.Pkttype = pp.Pkttype\n\t\tsa.Halen = pp.Halen\n\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t}\n\t\treturn sa, nil\n\n\tcase AF_UNIX:\n\t\tpp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrUnix)\n\t\tif pp.Path[0] == 0 {\n\t\t\t// \"Abstract\" Unix domain socket.\n\t\t\t// Rewrite leading NUL as @ for textual display.\n\t\t\t// (This is the standard convention.)\n\t\t\t// Not friendly to overwrite in place,\n\t\t\t// but the callers below don't care.\n\t\t\tpp.Path[0] = '@'\n\t\t}\n\n\t\t// Assume path ends at NUL.\n\t\t// This is not technically the Linux semantics for\n\t\t// abstract Unix domain sockets--they are supposed\n\t\t// to be uninterpreted fixed-size binary blobs--but\n\t\t// everyone uses this convention.\n\t\tn := 0\n\t\tfor n < len(pp.Path) && pp.Path[n] != 0 {\n\t\t\tn++\n\t\t}\n\t\tbytes := (*[len(pp.Path)]byte)(unsafe.Pointer(&pp.Path[0]))[0:n]\n\t\tsa.Name = string(bytes)\n\t\treturn sa, nil\n\n\tcase AF_INET:\n\t\tproto, err := GetsockoptInt(fd, SOL_SOCKET, SO_PROTOCOL)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tswitch proto {\n\t\tcase IPPROTO_L2TP:\n\t\t\tpp := (*RawSockaddrL2TPIP)(unsafe.Pointer(rsa))\n\t\t\tsa := new(SockaddrL2TPIP)\n\t\t\tsa.ConnId = pp.Conn_id\n\t\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t\t}\n\t\t\treturn sa, nil\n\t\tdefault:\n\t\t\tpp := (*RawSockaddrInet4)(unsafe.Pointer(rsa))\n\t\t\tsa := new(SockaddrInet4)\n\t\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t\t}\n\t\t\treturn sa, nil\n\t\t}\n\n\tcase AF_INET6:\n\t\tproto, err := GetsockoptInt(fd, SOL_SOCKET, SO_PROTOCOL)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tswitch proto {\n\t\tcase IPPROTO_L2TP:\n\t\t\tpp := (*RawSockaddrL2TPIP6)(unsafe.Pointer(rsa))\n\t\t\tsa := new(SockaddrL2TPIP6)\n\t\t\tsa.ConnId = pp.Conn_id\n\t\t\tsa.ZoneId = pp.Scope_id\n\t\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t\t}\n\t\t\treturn sa, nil\n\t\tdefault:\n\t\t\tpp := (*RawSockaddrInet6)(unsafe.Pointer(rsa))\n\t\t\tsa := new(SockaddrInet6)\n\t\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\t\tsa.ZoneId = pp.Scope_id\n\t\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t\t}\n\t\t\treturn sa, nil\n\t\t}\n\n\tcase AF_VSOCK:\n\t\tpp := (*RawSockaddrVM)(unsafe.Pointer(rsa))\n\t\tsa := &SockaddrVM{\n\t\t\tCID:  pp.Cid,\n\t\t\tPort: pp.Port,\n\t\t}\n\t\treturn sa, nil\n\tcase AF_BLUETOOTH:\n\t\tproto, err := GetsockoptInt(fd, SOL_SOCKET, SO_PROTOCOL)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\t// only BTPROTO_L2CAP and BTPROTO_RFCOMM can accept connections\n\t\tswitch proto {\n\t\tcase BTPROTO_L2CAP:\n\t\t\tpp := (*RawSockaddrL2)(unsafe.Pointer(rsa))\n\t\t\tsa := &SockaddrL2{\n\t\t\t\tPSM:      pp.Psm,\n\t\t\t\tCID:      pp.Cid,\n\t\t\t\tAddr:     pp.Bdaddr,\n\t\t\t\tAddrType: pp.Bdaddr_type,\n\t\t\t}\n\t\t\treturn sa, nil\n\t\tcase BTPROTO_RFCOMM:\n\t\t\tpp := (*RawSockaddrRFCOMM)(unsafe.Pointer(rsa))\n\t\t\tsa := &SockaddrRFCOMM{\n\t\t\t\tChannel: pp.Channel,\n\t\t\t\tAddr:    pp.Bdaddr,\n\t\t\t}\n\t\t\treturn sa, nil\n\t\t}\n\tcase AF_XDP:\n\t\tpp := (*RawSockaddrXDP)(unsafe.Pointer(rsa))\n\t\tsa := &SockaddrXDP{\n\t\t\tFlags:        pp.Flags,\n\t\t\tIfindex:      pp.Ifindex,\n\t\t\tQueueID:      pp.Queue_id,\n\t\t\tSharedUmemFD: pp.Shared_umem_fd,\n\t\t}\n\t\treturn sa, nil\n\tcase AF_PPPOX:\n\t\tpp := (*RawSockaddrPPPoX)(unsafe.Pointer(rsa))\n\t\tif binary.BigEndian.Uint32(pp[2:6]) != px_proto_oe {\n\t\t\treturn nil, EINVAL\n\t\t}\n\t\tsa := &SockaddrPPPoE{\n\t\t\tSID:    binary.BigEndian.Uint16(pp[6:8]),\n\t\t\tRemote: pp[8:14],\n\t\t}\n\t\tfor i := 14; i < 14+IFNAMSIZ; i++ {\n\t\t\tif pp[i] == 0 {\n\t\t\t\tsa.Dev = string(pp[14:i])\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\treturn sa, nil\n\tcase AF_TIPC:\n\t\tpp := (*RawSockaddrTIPC)(unsafe.Pointer(rsa))\n\n\t\tsa := &SockaddrTIPC{\n\t\t\tScope: int(pp.Scope),\n\t\t}\n\n\t\t// Determine which union variant is present in pp.Addr by checking\n\t\t// pp.Addrtype.\n\t\tswitch pp.Addrtype {\n\t\tcase TIPC_SERVICE_RANGE:\n\t\t\tsa.Addr = (*TIPCServiceRange)(unsafe.Pointer(&pp.Addr))\n\t\tcase TIPC_SERVICE_ADDR:\n\t\t\tsa.Addr = (*TIPCServiceName)(unsafe.Pointer(&pp.Addr))\n\t\tcase TIPC_SOCKET_ADDR:\n\t\t\tsa.Addr = (*TIPCSocketAddr)(unsafe.Pointer(&pp.Addr))\n\t\tdefault:\n\t\t\treturn nil, EINVAL\n\t\t}\n\n\t\treturn sa, nil\n\tcase AF_IUCV:\n\t\tpp := (*RawSockaddrIUCV)(unsafe.Pointer(rsa))\n\n\t\tvar user [8]byte\n\t\tvar name [8]byte\n\n\t\tfor i := 0; i < 8; i++ {\n\t\t\tuser[i] = byte(pp.User_id[i])\n\t\t\tname[i] = byte(pp.Name[i])\n\t\t}\n\n\t\tsa := &SockaddrIUCV{\n\t\t\tUserID: string(user[:]),\n\t\t\tName:   string(name[:]),\n\t\t}\n\t\treturn sa, nil\n\n\tcase AF_CAN:\n\t\tpp := (*RawSockaddrCAN)(unsafe.Pointer(rsa))\n\t\tsa := &SockaddrCAN{\n\t\t\tIfindex: int(pp.Ifindex),\n\t\t}\n\t\trx := (*[4]byte)(unsafe.Pointer(&sa.RxID))\n\t\tfor i := 0; i < 4; i++ {\n\t\t\trx[i] = pp.Addr[i]\n\t\t}\n\t\ttx := (*[4]byte)(unsafe.Pointer(&sa.TxID))\n\t\tfor i := 0; i < 4; i++ {\n\t\t\ttx[i] = pp.Addr[i+4]\n\t\t}\n\t\treturn sa, nil\n\n\t}\n\treturn nil, EAFNOSUPPORT\n}\n\nfunc Accept(fd int) (nfd int, sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tnfd, err = accept(fd, &rsa, &len)\n\tif err != nil {\n\t\treturn\n\t}\n\tsa, err = anyToSockaddr(fd, &rsa)\n\tif err != nil {\n\t\tClose(nfd)\n\t\tnfd = 0\n\t}\n\treturn\n}\n\nfunc Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tnfd, err = accept4(fd, &rsa, &len, flags)\n\tif err != nil {\n\t\treturn\n\t}\n\tif len > SizeofSockaddrAny {\n\t\tpanic(\"RawSockaddrAny too small\")\n\t}\n\tsa, err = anyToSockaddr(fd, &rsa)\n\tif err != nil {\n\t\tClose(nfd)\n\t\tnfd = 0\n\t}\n\treturn\n}\n\nfunc Getsockname(fd int) (sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tif err = getsockname(fd, &rsa, &len); err != nil {\n\t\treturn\n\t}\n\treturn anyToSockaddr(fd, &rsa)\n}\n\nfunc GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) {\n\tvar value IPMreqn\n\tvallen := _Socklen(SizeofIPMreqn)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, err\n}\n\nfunc GetsockoptUcred(fd, level, opt int) (*Ucred, error) {\n\tvar value Ucred\n\tvallen := _Socklen(SizeofUcred)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, err\n}\n\nfunc GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) {\n\tvar value TCPInfo\n\tvallen := _Socklen(SizeofTCPInfo)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, err\n}\n\n// GetsockoptString returns the string value of the socket option opt for the\n// socket associated with fd at the given socket level.\nfunc GetsockoptString(fd, level, opt int) (string, error) {\n\tbuf := make([]byte, 256)\n\tvallen := _Socklen(len(buf))\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&buf[0]), &vallen)\n\tif err != nil {\n\t\tif err == ERANGE {\n\t\t\tbuf = make([]byte, vallen)\n\t\t\terr = getsockopt(fd, level, opt, unsafe.Pointer(&buf[0]), &vallen)\n\t\t}\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t}\n\treturn string(buf[:vallen-1]), nil\n}\n\nfunc GetsockoptTpacketStats(fd, level, opt int) (*TpacketStats, error) {\n\tvar value TpacketStats\n\tvallen := _Socklen(SizeofTpacketStats)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, err\n}\n\nfunc GetsockoptTpacketStatsV3(fd, level, opt int) (*TpacketStatsV3, error) {\n\tvar value TpacketStatsV3\n\tvallen := _Socklen(SizeofTpacketStatsV3)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, err\n}\n\nfunc SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(mreq), unsafe.Sizeof(*mreq))\n}\n\nfunc SetsockoptPacketMreq(fd, level, opt int, mreq *PacketMreq) error {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(mreq), unsafe.Sizeof(*mreq))\n}\n\n// SetsockoptSockFprog attaches a classic BPF or an extended BPF program to a\n// socket to filter incoming packets.  See 'man 7 socket' for usage information.\nfunc SetsockoptSockFprog(fd, level, opt int, fprog *SockFprog) error {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(fprog), unsafe.Sizeof(*fprog))\n}\n\nfunc SetsockoptCanRawFilter(fd, level, opt int, filter []CanFilter) error {\n\tvar p unsafe.Pointer\n\tif len(filter) > 0 {\n\t\tp = unsafe.Pointer(&filter[0])\n\t}\n\treturn setsockopt(fd, level, opt, p, uintptr(len(filter)*SizeofCanFilter))\n}\n\nfunc SetsockoptTpacketReq(fd, level, opt int, tp *TpacketReq) error {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(tp), unsafe.Sizeof(*tp))\n}\n\nfunc SetsockoptTpacketReq3(fd, level, opt int, tp *TpacketReq3) error {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(tp), unsafe.Sizeof(*tp))\n}\n\n// Keyctl Commands (http://man7.org/linux/man-pages/man2/keyctl.2.html)\n\n// KeyctlInt calls keyctl commands in which each argument is an int.\n// These commands are KEYCTL_REVOKE, KEYCTL_CHOWN, KEYCTL_CLEAR, KEYCTL_LINK,\n// KEYCTL_UNLINK, KEYCTL_NEGATE, KEYCTL_SET_REQKEY_KEYRING, KEYCTL_SET_TIMEOUT,\n// KEYCTL_ASSUME_AUTHORITY, KEYCTL_SESSION_TO_PARENT, KEYCTL_REJECT,\n// KEYCTL_INVALIDATE, and KEYCTL_GET_PERSISTENT.\n//sys\tKeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int, err error) = SYS_KEYCTL\n\n// KeyctlBuffer calls keyctl commands in which the third and fourth\n// arguments are a buffer and its length, respectively.\n// These commands are KEYCTL_UPDATE, KEYCTL_READ, and KEYCTL_INSTANTIATE.\n//sys\tKeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err error) = SYS_KEYCTL\n\n// KeyctlString calls keyctl commands which return a string.\n// These commands are KEYCTL_DESCRIBE and KEYCTL_GET_SECURITY.\nfunc KeyctlString(cmd int, id int) (string, error) {\n\t// We must loop as the string data may change in between the syscalls.\n\t// We could allocate a large buffer here to reduce the chance that the\n\t// syscall needs to be called twice; however, this is unnecessary as\n\t// the performance loss is negligible.\n\tvar buffer []byte\n\tfor {\n\t\t// Try to fill the buffer with data\n\t\tlength, err := KeyctlBuffer(cmd, id, buffer, 0)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\n\t\t// Check if the data was written\n\t\tif length <= len(buffer) {\n\t\t\t// Exclude the null terminator\n\t\t\treturn string(buffer[:length-1]), nil\n\t\t}\n\n\t\t// Make a bigger buffer if needed\n\t\tbuffer = make([]byte, length)\n\t}\n}\n\n// Keyctl commands with special signatures.\n\n// KeyctlGetKeyringID implements the KEYCTL_GET_KEYRING_ID command.\n// See the full documentation at:\n// http://man7.org/linux/man-pages/man3/keyctl_get_keyring_ID.3.html\nfunc KeyctlGetKeyringID(id int, create bool) (ringid int, err error) {\n\tcreateInt := 0\n\tif create {\n\t\tcreateInt = 1\n\t}\n\treturn KeyctlInt(KEYCTL_GET_KEYRING_ID, id, createInt, 0, 0)\n}\n\n// KeyctlSetperm implements the KEYCTL_SETPERM command. The perm value is the\n// key handle permission mask as described in the \"keyctl setperm\" section of\n// http://man7.org/linux/man-pages/man1/keyctl.1.html.\n// See the full documentation at:\n// http://man7.org/linux/man-pages/man3/keyctl_setperm.3.html\nfunc KeyctlSetperm(id int, perm uint32) error {\n\t_, err := KeyctlInt(KEYCTL_SETPERM, id, int(perm), 0, 0)\n\treturn err\n}\n\n//sys\tkeyctlJoin(cmd int, arg2 string) (ret int, err error) = SYS_KEYCTL\n\n// KeyctlJoinSessionKeyring implements the KEYCTL_JOIN_SESSION_KEYRING command.\n// See the full documentation at:\n// http://man7.org/linux/man-pages/man3/keyctl_join_session_keyring.3.html\nfunc KeyctlJoinSessionKeyring(name string) (ringid int, err error) {\n\treturn keyctlJoin(KEYCTL_JOIN_SESSION_KEYRING, name)\n}\n\n//sys\tkeyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int) (ret int, err error) = SYS_KEYCTL\n\n// KeyctlSearch implements the KEYCTL_SEARCH command.\n// See the full documentation at:\n// http://man7.org/linux/man-pages/man3/keyctl_search.3.html\nfunc KeyctlSearch(ringid int, keyType, description string, destRingid int) (id int, err error) {\n\treturn keyctlSearch(KEYCTL_SEARCH, ringid, keyType, description, destRingid)\n}\n\n//sys\tkeyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) = SYS_KEYCTL\n\n// KeyctlInstantiateIOV implements the KEYCTL_INSTANTIATE_IOV command. This\n// command is similar to KEYCTL_INSTANTIATE, except that the payload is a slice\n// of Iovec (each of which represents a buffer) instead of a single buffer.\n// See the full documentation at:\n// http://man7.org/linux/man-pages/man3/keyctl_instantiate_iov.3.html\nfunc KeyctlInstantiateIOV(id int, payload []Iovec, ringid int) error {\n\treturn keyctlIOV(KEYCTL_INSTANTIATE_IOV, id, payload, ringid)\n}\n\n//sys\tkeyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err error) = SYS_KEYCTL\n\n// KeyctlDHCompute implements the KEYCTL_DH_COMPUTE command. This command\n// computes a Diffie-Hellman shared secret based on the provide params. The\n// secret is written to the provided buffer and the returned size is the number\n// of bytes written (returning an error if there is insufficient space in the\n// buffer). If a nil buffer is passed in, this function returns the minimum\n// buffer length needed to store the appropriate data. Note that this differs\n// from KEYCTL_READ's behavior which always returns the requested payload size.\n// See the full documentation at:\n// http://man7.org/linux/man-pages/man3/keyctl_dh_compute.3.html\nfunc KeyctlDHCompute(params *KeyctlDHParams, buffer []byte) (size int, err error) {\n\treturn keyctlDH(KEYCTL_DH_COMPUTE, params, buffer)\n}\n\n// KeyctlRestrictKeyring implements the KEYCTL_RESTRICT_KEYRING command. This\n// command limits the set of keys that can be linked to the keyring, regardless\n// of keyring permissions. The command requires the \"setattr\" permission.\n//\n// When called with an empty keyType the command locks the keyring, preventing\n// any further keys from being linked to the keyring.\n//\n// The \"asymmetric\" keyType defines restrictions requiring key payloads to be\n// DER encoded X.509 certificates signed by keys in another keyring. Restrictions\n// for \"asymmetric\" include \"builtin_trusted\", \"builtin_and_secondary_trusted\",\n// \"key_or_keyring:<key>\", and \"key_or_keyring:<key>:chain\".\n//\n// As of Linux 4.12, only the \"asymmetric\" keyType defines type-specific\n// restrictions.\n//\n// See the full documentation at:\n// http://man7.org/linux/man-pages/man3/keyctl_restrict_keyring.3.html\n// http://man7.org/linux/man-pages/man2/keyctl.2.html\nfunc KeyctlRestrictKeyring(ringid int, keyType string, restriction string) error {\n\tif keyType == \"\" {\n\t\treturn keyctlRestrictKeyring(KEYCTL_RESTRICT_KEYRING, ringid)\n\t}\n\treturn keyctlRestrictKeyringByType(KEYCTL_RESTRICT_KEYRING, ringid, keyType, restriction)\n}\n\n//sys keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, restriction string) (err error) = SYS_KEYCTL\n//sys keyctlRestrictKeyring(cmd int, arg2 int) (err error) = SYS_KEYCTL\n\nfunc Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {\n\tvar msg Msghdr\n\tvar rsa RawSockaddrAny\n\tmsg.Name = (*byte)(unsafe.Pointer(&rsa))\n\tmsg.Namelen = uint32(SizeofSockaddrAny)\n\tvar iov Iovec\n\tif len(p) > 0 {\n\t\tiov.Base = &p[0]\n\t\tiov.SetLen(len(p))\n\t}\n\tvar dummy byte\n\tif len(oob) > 0 {\n\t\tif len(p) == 0 {\n\t\t\tvar sockType int\n\t\t\tsockType, err = GetsockoptInt(fd, SOL_SOCKET, SO_TYPE)\n\t\t\tif err != nil {\n\t\t\t\treturn\n\t\t\t}\n\t\t\t// receive at least one normal byte\n\t\t\tif sockType != SOCK_DGRAM {\n\t\t\t\tiov.Base = &dummy\n\t\t\t\tiov.SetLen(1)\n\t\t\t}\n\t\t}\n\t\tmsg.Control = &oob[0]\n\t\tmsg.SetControllen(len(oob))\n\t}\n\tmsg.Iov = &iov\n\tmsg.Iovlen = 1\n\tif n, err = recvmsg(fd, &msg, flags); err != nil {\n\t\treturn\n\t}\n\toobn = int(msg.Controllen)\n\trecvflags = int(msg.Flags)\n\t// source address is only specified if the socket is unconnected\n\tif rsa.Addr.Family != AF_UNSPEC {\n\t\tfrom, err = anyToSockaddr(fd, &rsa)\n\t}\n\treturn\n}\n\nfunc Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) {\n\t_, err = SendmsgN(fd, p, oob, to, flags)\n\treturn\n}\n\nfunc SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err error) {\n\tvar ptr unsafe.Pointer\n\tvar salen _Socklen\n\tif to != nil {\n\t\tvar err error\n\t\tptr, salen, err = to.sockaddr()\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t}\n\tvar msg Msghdr\n\tmsg.Name = (*byte)(ptr)\n\tmsg.Namelen = uint32(salen)\n\tvar iov Iovec\n\tif len(p) > 0 {\n\t\tiov.Base = &p[0]\n\t\tiov.SetLen(len(p))\n\t}\n\tvar dummy byte\n\tif len(oob) > 0 {\n\t\tif len(p) == 0 {\n\t\t\tvar sockType int\n\t\t\tsockType, err = GetsockoptInt(fd, SOL_SOCKET, SO_TYPE)\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\t// send at least one normal byte\n\t\t\tif sockType != SOCK_DGRAM {\n\t\t\t\tiov.Base = &dummy\n\t\t\t\tiov.SetLen(1)\n\t\t\t}\n\t\t}\n\t\tmsg.Control = &oob[0]\n\t\tmsg.SetControllen(len(oob))\n\t}\n\tmsg.Iov = &iov\n\tmsg.Iovlen = 1\n\tif n, err = sendmsg(fd, &msg, flags); err != nil {\n\t\treturn 0, err\n\t}\n\tif len(oob) > 0 && len(p) == 0 {\n\t\tn = 0\n\t}\n\treturn n, nil\n}\n\n// BindToDevice binds the socket associated with fd to device.\nfunc BindToDevice(fd int, device string) (err error) {\n\treturn SetsockoptString(fd, SOL_SOCKET, SO_BINDTODEVICE, device)\n}\n\n//sys\tptrace(request int, pid int, addr uintptr, data uintptr) (err error)\n\nfunc ptracePeek(req int, pid int, addr uintptr, out []byte) (count int, err error) {\n\t// The peek requests are machine-size oriented, so we wrap it\n\t// to retrieve arbitrary-length data.\n\n\t// The ptrace syscall differs from glibc's ptrace.\n\t// Peeks returns the word in *data, not as the return value.\n\n\tvar buf [SizeofPtr]byte\n\n\t// Leading edge. PEEKTEXT/PEEKDATA don't require aligned\n\t// access (PEEKUSER warns that it might), but if we don't\n\t// align our reads, we might straddle an unmapped page\n\t// boundary and not get the bytes leading up to the page\n\t// boundary.\n\tn := 0\n\tif addr%SizeofPtr != 0 {\n\t\terr = ptrace(req, pid, addr-addr%SizeofPtr, uintptr(unsafe.Pointer(&buf[0])))\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\tn += copy(out, buf[addr%SizeofPtr:])\n\t\tout = out[n:]\n\t}\n\n\t// Remainder.\n\tfor len(out) > 0 {\n\t\t// We use an internal buffer to guarantee alignment.\n\t\t// It's not documented if this is necessary, but we're paranoid.\n\t\terr = ptrace(req, pid, addr+uintptr(n), uintptr(unsafe.Pointer(&buf[0])))\n\t\tif err != nil {\n\t\t\treturn n, err\n\t\t}\n\t\tcopied := copy(out, buf[0:])\n\t\tn += copied\n\t\tout = out[copied:]\n\t}\n\n\treturn n, nil\n}\n\nfunc PtracePeekText(pid int, addr uintptr, out []byte) (count int, err error) {\n\treturn ptracePeek(PTRACE_PEEKTEXT, pid, addr, out)\n}\n\nfunc PtracePeekData(pid int, addr uintptr, out []byte) (count int, err error) {\n\treturn ptracePeek(PTRACE_PEEKDATA, pid, addr, out)\n}\n\nfunc PtracePeekUser(pid int, addr uintptr, out []byte) (count int, err error) {\n\treturn ptracePeek(PTRACE_PEEKUSR, pid, addr, out)\n}\n\nfunc ptracePoke(pokeReq int, peekReq int, pid int, addr uintptr, data []byte) (count int, err error) {\n\t// As for ptracePeek, we need to align our accesses to deal\n\t// with the possibility of straddling an invalid page.\n\n\t// Leading edge.\n\tn := 0\n\tif addr%SizeofPtr != 0 {\n\t\tvar buf [SizeofPtr]byte\n\t\terr = ptrace(peekReq, pid, addr-addr%SizeofPtr, uintptr(unsafe.Pointer(&buf[0])))\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\tn += copy(buf[addr%SizeofPtr:], data)\n\t\tword := *((*uintptr)(unsafe.Pointer(&buf[0])))\n\t\terr = ptrace(pokeReq, pid, addr-addr%SizeofPtr, word)\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\tdata = data[n:]\n\t}\n\n\t// Interior.\n\tfor len(data) > SizeofPtr {\n\t\tword := *((*uintptr)(unsafe.Pointer(&data[0])))\n\t\terr = ptrace(pokeReq, pid, addr+uintptr(n), word)\n\t\tif err != nil {\n\t\t\treturn n, err\n\t\t}\n\t\tn += SizeofPtr\n\t\tdata = data[SizeofPtr:]\n\t}\n\n\t// Trailing edge.\n\tif len(data) > 0 {\n\t\tvar buf [SizeofPtr]byte\n\t\terr = ptrace(peekReq, pid, addr+uintptr(n), uintptr(unsafe.Pointer(&buf[0])))\n\t\tif err != nil {\n\t\t\treturn n, err\n\t\t}\n\t\tcopy(buf[0:], data)\n\t\tword := *((*uintptr)(unsafe.Pointer(&buf[0])))\n\t\terr = ptrace(pokeReq, pid, addr+uintptr(n), word)\n\t\tif err != nil {\n\t\t\treturn n, err\n\t\t}\n\t\tn += len(data)\n\t}\n\n\treturn n, nil\n}\n\nfunc PtracePokeText(pid int, addr uintptr, data []byte) (count int, err error) {\n\treturn ptracePoke(PTRACE_POKETEXT, PTRACE_PEEKTEXT, pid, addr, data)\n}\n\nfunc PtracePokeData(pid int, addr uintptr, data []byte) (count int, err error) {\n\treturn ptracePoke(PTRACE_POKEDATA, PTRACE_PEEKDATA, pid, addr, data)\n}\n\nfunc PtracePokeUser(pid int, addr uintptr, data []byte) (count int, err error) {\n\treturn ptracePoke(PTRACE_POKEUSR, PTRACE_PEEKUSR, pid, addr, data)\n}\n\nfunc PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) {\n\treturn ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))\n}\n\nfunc PtraceSetRegs(pid int, regs *PtraceRegs) (err error) {\n\treturn ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))\n}\n\nfunc PtraceSetOptions(pid int, options int) (err error) {\n\treturn ptrace(PTRACE_SETOPTIONS, pid, 0, uintptr(options))\n}\n\nfunc PtraceGetEventMsg(pid int) (msg uint, err error) {\n\tvar data _C_long\n\terr = ptrace(PTRACE_GETEVENTMSG, pid, 0, uintptr(unsafe.Pointer(&data)))\n\tmsg = uint(data)\n\treturn\n}\n\nfunc PtraceCont(pid int, signal int) (err error) {\n\treturn ptrace(PTRACE_CONT, pid, 0, uintptr(signal))\n}\n\nfunc PtraceSyscall(pid int, signal int) (err error) {\n\treturn ptrace(PTRACE_SYSCALL, pid, 0, uintptr(signal))\n}\n\nfunc PtraceSingleStep(pid int) (err error) { return ptrace(PTRACE_SINGLESTEP, pid, 0, 0) }\n\nfunc PtraceInterrupt(pid int) (err error) { return ptrace(PTRACE_INTERRUPT, pid, 0, 0) }\n\nfunc PtraceAttach(pid int) (err error) { return ptrace(PTRACE_ATTACH, pid, 0, 0) }\n\nfunc PtraceSeize(pid int) (err error) { return ptrace(PTRACE_SEIZE, pid, 0, 0) }\n\nfunc PtraceDetach(pid int) (err error) { return ptrace(PTRACE_DETACH, pid, 0, 0) }\n\n//sys\treboot(magic1 uint, magic2 uint, cmd int, arg string) (err error)\n\nfunc Reboot(cmd int) (err error) {\n\treturn reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, cmd, \"\")\n}\n\nfunc direntIno(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Ino), unsafe.Sizeof(Dirent{}.Ino))\n}\n\nfunc direntReclen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))\n}\n\nfunc direntNamlen(buf []byte) (uint64, bool) {\n\treclen, ok := direntReclen(buf)\n\tif !ok {\n\t\treturn 0, false\n\t}\n\treturn reclen - uint64(unsafe.Offsetof(Dirent{}.Name)), true\n}\n\n//sys\tmount(source string, target string, fstype string, flags uintptr, data *byte) (err error)\n\nfunc Mount(source string, target string, fstype string, flags uintptr, data string) (err error) {\n\t// Certain file systems get rather angry and EINVAL if you give\n\t// them an empty string of data, rather than NULL.\n\tif data == \"\" {\n\t\treturn mount(source, target, fstype, flags, nil)\n\t}\n\tdatap, err := BytePtrFromString(data)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn mount(source, target, fstype, flags, datap)\n}\n\nfunc Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\treturn sendfile(outfd, infd, offset, count)\n}\n\n// Sendto\n// Recvfrom\n// Socketpair\n\n/*\n * Direct access\n */\n//sys\tAcct(path string) (err error)\n//sys\tAddKey(keyType string, description string, payload []byte, ringid int) (id int, err error)\n//sys\tAdjtimex(buf *Timex) (state int, err error)\n//sysnb\tCapget(hdr *CapUserHeader, data *CapUserData) (err error)\n//sysnb\tCapset(hdr *CapUserHeader, data *CapUserData) (err error)\n//sys\tChdir(path string) (err error)\n//sys\tChroot(path string) (err error)\n//sys\tClockGetres(clockid int32, res *Timespec) (err error)\n//sys\tClockGettime(clockid int32, time *Timespec) (err error)\n//sys\tClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error)\n//sys\tClose(fd int) (err error)\n//sys\tCopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)\n//sys\tDeleteModule(name string, flags int) (err error)\n//sys\tDup(oldfd int) (fd int, err error)\n\nfunc Dup2(oldfd, newfd int) error {\n\t// Android O and newer blocks dup2; riscv and arm64 don't implement dup2.\n\tif runtime.GOOS == \"android\" || runtime.GOARCH == \"riscv64\" || runtime.GOARCH == \"arm64\" {\n\t\treturn Dup3(oldfd, newfd, 0)\n\t}\n\treturn dup2(oldfd, newfd)\n}\n\n//sys\tDup3(oldfd int, newfd int, flags int) (err error)\n//sysnb\tEpollCreate1(flag int) (fd int, err error)\n//sysnb\tEpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error)\n//sys\tEventfd(initval uint, flags int) (fd int, err error) = SYS_EVENTFD2\n//sys\tExit(code int) = SYS_EXIT_GROUP\n//sys\tFallocate(fd int, mode uint32, off int64, len int64) (err error)\n//sys\tFchdir(fd int) (err error)\n//sys\tFchmod(fd int, mode uint32) (err error)\n//sys\tFchownat(dirfd int, path string, uid int, gid int, flags int) (err error)\n//sys\tFdatasync(fd int) (err error)\n//sys\tFgetxattr(fd int, attr string, dest []byte) (sz int, err error)\n//sys\tFinitModule(fd int, params string, flags int) (err error)\n//sys\tFlistxattr(fd int, dest []byte) (sz int, err error)\n//sys\tFlock(fd int, how int) (err error)\n//sys\tFremovexattr(fd int, attr string) (err error)\n//sys\tFsetxattr(fd int, attr string, dest []byte, flags int) (err error)\n//sys\tFsync(fd int) (err error)\n//sys\tGetdents(fd int, buf []byte) (n int, err error) = SYS_GETDENTS64\n//sysnb\tGetpgid(pid int) (pgid int, err error)\n\nfunc Getpgrp() (pid int) {\n\tpid, _ = Getpgid(0)\n\treturn\n}\n\n//sysnb\tGetpid() (pid int)\n//sysnb\tGetppid() (ppid int)\n//sys\tGetpriority(which int, who int) (prio int, err error)\n//sys\tGetrandom(buf []byte, flags int) (n int, err error)\n//sysnb\tGetrusage(who int, rusage *Rusage) (err error)\n//sysnb\tGetsid(pid int) (sid int, err error)\n//sysnb\tGettid() (tid int)\n//sys\tGetxattr(path string, attr string, dest []byte) (sz int, err error)\n//sys\tInitModule(moduleImage []byte, params string) (err error)\n//sys\tInotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc int, err error)\n//sysnb\tInotifyInit1(flags int) (fd int, err error)\n//sysnb\tInotifyRmWatch(fd int, watchdesc uint32) (success int, err error)\n//sysnb\tKill(pid int, sig syscall.Signal) (err error)\n//sys\tKlogctl(typ int, buf []byte) (n int, err error) = SYS_SYSLOG\n//sys\tLgetxattr(path string, attr string, dest []byte) (sz int, err error)\n//sys\tListxattr(path string, dest []byte) (sz int, err error)\n//sys\tLlistxattr(path string, dest []byte) (sz int, err error)\n//sys\tLremovexattr(path string, attr string) (err error)\n//sys\tLsetxattr(path string, attr string, data []byte, flags int) (err error)\n//sys\tMemfdCreate(name string, flags int) (fd int, err error)\n//sys\tMkdirat(dirfd int, path string, mode uint32) (err error)\n//sys\tMknodat(dirfd int, path string, mode uint32, dev int) (err error)\n//sys\tNanosleep(time *Timespec, leftover *Timespec) (err error)\n//sys\tPerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, flags int) (fd int, err error)\n//sys\tPivotRoot(newroot string, putold string) (err error) = SYS_PIVOT_ROOT\n//sysnb prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err error) = SYS_PRLIMIT64\n//sys   Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 uintptr) (err error)\n//sys\tPselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, sigmask *Sigset_t) (n int, err error) = SYS_PSELECT6\n//sys\tread(fd int, p []byte) (n int, err error)\n//sys\tRemovexattr(path string, attr string) (err error)\n//sys\tRenameat2(olddirfd int, oldpath string, newdirfd int, newpath string, flags uint) (err error)\n//sys\tRequestKey(keyType string, description string, callback string, destRingid int) (id int, err error)\n//sys\tSetdomainname(p []byte) (err error)\n//sys\tSethostname(p []byte) (err error)\n//sysnb\tSetpgid(pid int, pgid int) (err error)\n//sysnb\tSetsid() (pid int, err error)\n//sysnb\tSettimeofday(tv *Timeval) (err error)\n//sys\tSetns(fd int, nstype int) (err error)\n\n// PrctlRetInt performs a prctl operation specified by option and further\n// optional arguments arg2 through arg5 depending on option. It returns a\n// non-negative integer that is returned by the prctl syscall.\nfunc PrctlRetInt(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 uintptr) (int, error) {\n\tret, _, err := Syscall6(SYS_PRCTL, uintptr(option), uintptr(arg2), uintptr(arg3), uintptr(arg4), uintptr(arg5), 0)\n\tif err != 0 {\n\t\treturn 0, err\n\t}\n\treturn int(ret), nil\n}\n\n// issue 1435.\n// On linux Setuid and Setgid only affects the current thread, not the process.\n// This does not match what most callers expect so we must return an error\n// here rather than letting the caller think that the call succeeded.\n\nfunc Setuid(uid int) (err error) {\n\treturn EOPNOTSUPP\n}\n\nfunc Setgid(uid int) (err error) {\n\treturn EOPNOTSUPP\n}\n\n// SetfsgidRetGid sets fsgid for current thread and returns previous fsgid set.\n// setfsgid(2) will return a non-nil error only if its caller lacks CAP_SETUID capability.\n// If the call fails due to other reasons, current fsgid will be returned.\nfunc SetfsgidRetGid(gid int) (int, error) {\n\treturn setfsgid(gid)\n}\n\n// SetfsuidRetUid sets fsuid for current thread and returns previous fsuid set.\n// setfsgid(2) will return a non-nil error only if its caller lacks CAP_SETUID capability\n// If the call fails due to other reasons, current fsuid will be returned.\nfunc SetfsuidRetUid(uid int) (int, error) {\n\treturn setfsuid(uid)\n}\n\nfunc Setfsgid(gid int) error {\n\t_, err := setfsgid(gid)\n\treturn err\n}\n\nfunc Setfsuid(uid int) error {\n\t_, err := setfsuid(uid)\n\treturn err\n}\n\nfunc Signalfd(fd int, sigmask *Sigset_t, flags int) (newfd int, err error) {\n\treturn signalfd(fd, sigmask, _C__NSIG/8, flags)\n}\n\n//sys\tSetpriority(which int, who int, prio int) (err error)\n//sys\tSetxattr(path string, attr string, data []byte, flags int) (err error)\n//sys\tsignalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (newfd int, err error) = SYS_SIGNALFD4\n//sys\tStatx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error)\n//sys\tSync()\n//sys\tSyncfs(fd int) (err error)\n//sysnb\tSysinfo(info *Sysinfo_t) (err error)\n//sys\tTee(rfd int, wfd int, len int, flags int) (n int64, err error)\n//sysnb TimerfdCreate(clockid int, flags int) (fd int, err error)\n//sysnb TimerfdGettime(fd int, currValue *ItimerSpec) (err error)\n//sysnb TimerfdSettime(fd int, flags int, newValue *ItimerSpec, oldValue *ItimerSpec) (err error)\n//sysnb\tTgkill(tgid int, tid int, sig syscall.Signal) (err error)\n//sysnb\tTimes(tms *Tms) (ticks uintptr, err error)\n//sysnb\tUmask(mask int) (oldmask int)\n//sysnb\tUname(buf *Utsname) (err error)\n//sys\tUnmount(target string, flags int) (err error) = SYS_UMOUNT2\n//sys\tUnshare(flags int) (err error)\n//sys\twrite(fd int, p []byte) (n int, err error)\n//sys\texitThread(code int) (err error) = SYS_EXIT\n//sys\treadlen(fd int, p *byte, np int) (n int, err error) = SYS_READ\n//sys\twritelen(fd int, p *byte, np int) (n int, err error) = SYS_WRITE\n//sys\treadv(fd int, iovs []Iovec) (n int, err error) = SYS_READV\n//sys\twritev(fd int, iovs []Iovec) (n int, err error) = SYS_WRITEV\n//sys\tpreadv(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr) (n int, err error) = SYS_PREADV\n//sys\tpwritev(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr) (n int, err error) = SYS_PWRITEV\n//sys\tpreadv2(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr, flags int) (n int, err error) = SYS_PREADV2\n//sys\tpwritev2(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr, flags int) (n int, err error) = SYS_PWRITEV2\n\nfunc bytes2iovec(bs [][]byte) []Iovec {\n\tiovecs := make([]Iovec, len(bs))\n\tfor i, b := range bs {\n\t\tiovecs[i].SetLen(len(b))\n\t\tif len(b) > 0 {\n\t\t\tiovecs[i].Base = &b[0]\n\t\t} else {\n\t\t\tiovecs[i].Base = (*byte)(unsafe.Pointer(&_zero))\n\t\t}\n\t}\n\treturn iovecs\n}\n\n// offs2lohi splits offs into its lower and upper unsigned long. On 64-bit\n// systems, hi will always be 0. On 32-bit systems, offs will be split in half.\n// preadv/pwritev chose this calling convention so they don't need to add a\n// padding-register for alignment on ARM.\nfunc offs2lohi(offs int64) (lo, hi uintptr) {\n\treturn uintptr(offs), uintptr(uint64(offs) >> SizeofLong)\n}\n\nfunc Readv(fd int, iovs [][]byte) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tn, err = readv(fd, iovecs)\n\treadvRacedetect(iovecs, n, err)\n\treturn n, err\n}\n\nfunc Preadv(fd int, iovs [][]byte, offset int64) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tlo, hi := offs2lohi(offset)\n\tn, err = preadv(fd, iovecs, lo, hi)\n\treadvRacedetect(iovecs, n, err)\n\treturn n, err\n}\n\nfunc Preadv2(fd int, iovs [][]byte, offset int64, flags int) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tlo, hi := offs2lohi(offset)\n\tn, err = preadv2(fd, iovecs, lo, hi, flags)\n\treadvRacedetect(iovecs, n, err)\n\treturn n, err\n}\n\nfunc readvRacedetect(iovecs []Iovec, n int, err error) {\n\tif !raceenabled {\n\t\treturn\n\t}\n\tfor i := 0; n > 0 && i < len(iovecs); i++ {\n\t\tm := int(iovecs[i].Len)\n\t\tif m > n {\n\t\t\tm = n\n\t\t}\n\t\tn -= m\n\t\tif m > 0 {\n\t\t\traceWriteRange(unsafe.Pointer(iovecs[i].Base), m)\n\t\t}\n\t}\n\tif err == nil {\n\t\traceAcquire(unsafe.Pointer(&ioSync))\n\t}\n}\n\nfunc Writev(fd int, iovs [][]byte) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\tn, err = writev(fd, iovecs)\n\twritevRacedetect(iovecs, n)\n\treturn n, err\n}\n\nfunc Pwritev(fd int, iovs [][]byte, offset int64) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\tlo, hi := offs2lohi(offset)\n\tn, err = pwritev(fd, iovecs, lo, hi)\n\twritevRacedetect(iovecs, n)\n\treturn n, err\n}\n\nfunc Pwritev2(fd int, iovs [][]byte, offset int64, flags int) (n int, err error) {\n\tiovecs := bytes2iovec(iovs)\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\tlo, hi := offs2lohi(offset)\n\tn, err = pwritev2(fd, iovecs, lo, hi, flags)\n\twritevRacedetect(iovecs, n)\n\treturn n, err\n}\n\nfunc writevRacedetect(iovecs []Iovec, n int) {\n\tif !raceenabled {\n\t\treturn\n\t}\n\tfor i := 0; n > 0 && i < len(iovecs); i++ {\n\t\tm := int(iovecs[i].Len)\n\t\tif m > n {\n\t\t\tm = n\n\t\t}\n\t\tn -= m\n\t\tif m > 0 {\n\t\t\traceReadRange(unsafe.Pointer(iovecs[i].Base), m)\n\t\t}\n\t}\n}\n\n// mmap varies by architecture; see syscall_linux_*.go.\n//sys\tmunmap(addr uintptr, length uintptr) (err error)\n\nvar mapper = &mmapper{\n\tactive: make(map[*byte][]byte),\n\tmmap:   mmap,\n\tmunmap: munmap,\n}\n\nfunc Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error) {\n\treturn mapper.Mmap(fd, offset, length, prot, flags)\n}\n\nfunc Munmap(b []byte) (err error) {\n\treturn mapper.Munmap(b)\n}\n\n//sys\tMadvise(b []byte, advice int) (err error)\n//sys\tMprotect(b []byte, prot int) (err error)\n//sys\tMlock(b []byte) (err error)\n//sys\tMlockall(flags int) (err error)\n//sys\tMsync(b []byte, flags int) (err error)\n//sys\tMunlock(b []byte) (err error)\n//sys\tMunlockall() (err error)\n\n// Vmsplice splices user pages from a slice of Iovecs into a pipe specified by fd,\n// using the specified flags.\nfunc Vmsplice(fd int, iovs []Iovec, flags int) (int, error) {\n\tvar p unsafe.Pointer\n\tif len(iovs) > 0 {\n\t\tp = unsafe.Pointer(&iovs[0])\n\t}\n\n\tn, _, errno := Syscall6(SYS_VMSPLICE, uintptr(fd), uintptr(p), uintptr(len(iovs)), uintptr(flags), 0, 0)\n\tif errno != 0 {\n\t\treturn 0, syscall.Errno(errno)\n\t}\n\n\treturn int(n), nil\n}\n\nfunc isGroupMember(gid int) bool {\n\tgroups, err := Getgroups()\n\tif err != nil {\n\t\treturn false\n\t}\n\n\tfor _, g := range groups {\n\t\tif g == gid {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n//sys\tfaccessat(dirfd int, path string, mode uint32) (err error)\n//sys\tFaccessat2(dirfd int, path string, mode uint32, flags int) (err error)\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tif flags == 0 {\n\t\treturn faccessat(dirfd, path, mode)\n\t}\n\n\tif err := Faccessat2(dirfd, path, mode, flags); err != ENOSYS && err != EPERM {\n\t\treturn err\n\t}\n\n\t// The Linux kernel faccessat system call does not take any flags.\n\t// The glibc faccessat implements the flags itself; see\n\t// https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/unix/sysv/linux/faccessat.c;hb=HEAD\n\t// Because people naturally expect syscall.Faccessat to act\n\t// like C faccessat, we do the same.\n\n\tif flags & ^(AT_SYMLINK_NOFOLLOW|AT_EACCESS) != 0 {\n\t\treturn EINVAL\n\t}\n\n\tvar st Stat_t\n\tif err := Fstatat(dirfd, path, &st, flags&AT_SYMLINK_NOFOLLOW); err != nil {\n\t\treturn err\n\t}\n\n\tmode &= 7\n\tif mode == 0 {\n\t\treturn nil\n\t}\n\n\tvar uid int\n\tif flags&AT_EACCESS != 0 {\n\t\tuid = Geteuid()\n\t} else {\n\t\tuid = Getuid()\n\t}\n\n\tif uid == 0 {\n\t\tif mode&1 == 0 {\n\t\t\t// Root can read and write any file.\n\t\t\treturn nil\n\t\t}\n\t\tif st.Mode&0111 != 0 {\n\t\t\t// Root can execute any file that anybody can execute.\n\t\t\treturn nil\n\t\t}\n\t\treturn EACCES\n\t}\n\n\tvar fmode uint32\n\tif uint32(uid) == st.Uid {\n\t\tfmode = (st.Mode >> 6) & 7\n\t} else {\n\t\tvar gid int\n\t\tif flags&AT_EACCESS != 0 {\n\t\t\tgid = Getegid()\n\t\t} else {\n\t\t\tgid = Getgid()\n\t\t}\n\n\t\tif uint32(gid) == st.Gid || isGroupMember(gid) {\n\t\t\tfmode = (st.Mode >> 3) & 7\n\t\t} else {\n\t\t\tfmode = st.Mode & 7\n\t\t}\n\t}\n\n\tif fmode&mode == mode {\n\t\treturn nil\n\t}\n\n\treturn EACCES\n}\n\n//sys nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID *_C_int, flags int) (err error) = SYS_NAME_TO_HANDLE_AT\n//sys openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err error) = SYS_OPEN_BY_HANDLE_AT\n\n// fileHandle is the argument to nameToHandleAt and openByHandleAt. We\n// originally tried to generate it via unix/linux/types.go with \"type\n// fileHandle C.struct_file_handle\" but that generated empty structs\n// for mips64 and mips64le. Instead, hard code it for now (it's the\n// same everywhere else) until the mips64 generator issue is fixed.\ntype fileHandle struct {\n\tBytes uint32\n\tType  int32\n}\n\n// FileHandle represents the C struct file_handle used by\n// name_to_handle_at (see NameToHandleAt) and open_by_handle_at (see\n// OpenByHandleAt).\ntype FileHandle struct {\n\t*fileHandle\n}\n\n// NewFileHandle constructs a FileHandle.\nfunc NewFileHandle(handleType int32, handle []byte) FileHandle {\n\tconst hdrSize = unsafe.Sizeof(fileHandle{})\n\tbuf := make([]byte, hdrSize+uintptr(len(handle)))\n\tcopy(buf[hdrSize:], handle)\n\tfh := (*fileHandle)(unsafe.Pointer(&buf[0]))\n\tfh.Type = handleType\n\tfh.Bytes = uint32(len(handle))\n\treturn FileHandle{fh}\n}\n\nfunc (fh *FileHandle) Size() int   { return int(fh.fileHandle.Bytes) }\nfunc (fh *FileHandle) Type() int32 { return fh.fileHandle.Type }\nfunc (fh *FileHandle) Bytes() []byte {\n\tn := fh.Size()\n\tif n == 0 {\n\t\treturn nil\n\t}\n\treturn (*[1 << 30]byte)(unsafe.Pointer(uintptr(unsafe.Pointer(&fh.fileHandle.Type)) + 4))[:n:n]\n}\n\n// NameToHandleAt wraps the name_to_handle_at system call; it obtains\n// a handle for a path name.\nfunc NameToHandleAt(dirfd int, path string, flags int) (handle FileHandle, mountID int, err error) {\n\tvar mid _C_int\n\t// Try first with a small buffer, assuming the handle will\n\t// only be 32 bytes.\n\tsize := uint32(32 + unsafe.Sizeof(fileHandle{}))\n\tdidResize := false\n\tfor {\n\t\tbuf := make([]byte, size)\n\t\tfh := (*fileHandle)(unsafe.Pointer(&buf[0]))\n\t\tfh.Bytes = size - uint32(unsafe.Sizeof(fileHandle{}))\n\t\terr = nameToHandleAt(dirfd, path, fh, &mid, flags)\n\t\tif err == EOVERFLOW {\n\t\t\tif didResize {\n\t\t\t\t// We shouldn't need to resize more than once\n\t\t\t\treturn\n\t\t\t}\n\t\t\tdidResize = true\n\t\t\tsize = fh.Bytes + uint32(unsafe.Sizeof(fileHandle{}))\n\t\t\tcontinue\n\t\t}\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\t\treturn FileHandle{fh}, int(mid), nil\n\t}\n}\n\n// OpenByHandleAt wraps the open_by_handle_at system call; it opens a\n// file via a handle as previously returned by NameToHandleAt.\nfunc OpenByHandleAt(mountFD int, handle FileHandle, flags int) (fd int, err error) {\n\treturn openByHandleAt(mountFD, handle.fileHandle, flags)\n}\n\n// Klogset wraps the sys_syslog system call; it sets console_loglevel to\n// the value specified by arg and passes a dummy pointer to bufp.\nfunc Klogset(typ int, arg int) (err error) {\n\tvar p unsafe.Pointer\n\t_, _, errno := Syscall(SYS_SYSLOG, uintptr(typ), uintptr(p), uintptr(arg))\n\tif errno != 0 {\n\t\treturn errnoErr(errno)\n\t}\n\treturn nil\n}\n\n// RemoteIovec is Iovec with the pointer replaced with an integer.\n// It is used for ProcessVMReadv and ProcessVMWritev, where the pointer\n// refers to a location in a different process' address space, which\n// would confuse the Go garbage collector.\ntype RemoteIovec struct {\n\tBase uintptr\n\tLen  int\n}\n\n//sys\tProcessVMReadv(pid int, localIov []Iovec, remoteIov []RemoteIovec, flags uint) (n int, err error) = SYS_PROCESS_VM_READV\n//sys\tProcessVMWritev(pid int, localIov []Iovec, remoteIov []RemoteIovec, flags uint) (n int, err error) = SYS_PROCESS_VM_WRITEV\n\n/*\n * Unimplemented\n */\n// AfsSyscall\n// Alarm\n// ArchPrctl\n// Brk\n// ClockNanosleep\n// ClockSettime\n// Clone\n// EpollCtlOld\n// EpollPwait\n// EpollWaitOld\n// Execve\n// Fork\n// Futex\n// GetKernelSyms\n// GetMempolicy\n// GetRobustList\n// GetThreadArea\n// Getitimer\n// Getpmsg\n// IoCancel\n// IoDestroy\n// IoGetevents\n// IoSetup\n// IoSubmit\n// IoprioGet\n// IoprioSet\n// KexecLoad\n// LookupDcookie\n// Mbind\n// MigratePages\n// Mincore\n// ModifyLdt\n// Mount\n// MovePages\n// MqGetsetattr\n// MqNotify\n// MqOpen\n// MqTimedreceive\n// MqTimedsend\n// MqUnlink\n// Mremap\n// Msgctl\n// Msgget\n// Msgrcv\n// Msgsnd\n// Nfsservctl\n// Personality\n// Pselect6\n// Ptrace\n// Putpmsg\n// Quotactl\n// Readahead\n// Readv\n// RemapFilePages\n// RestartSyscall\n// RtSigaction\n// RtSigpending\n// RtSigprocmask\n// RtSigqueueinfo\n// RtSigreturn\n// RtSigsuspend\n// RtSigtimedwait\n// SchedGetPriorityMax\n// SchedGetPriorityMin\n// SchedGetparam\n// SchedGetscheduler\n// SchedRrGetInterval\n// SchedSetparam\n// SchedYield\n// Security\n// Semctl\n// Semget\n// Semop\n// Semtimedop\n// SetMempolicy\n// SetRobustList\n// SetThreadArea\n// SetTidAddress\n// Shmat\n// Shmctl\n// Shmdt\n// Shmget\n// Sigaltstack\n// Swapoff\n// Swapon\n// Sysfs\n// TimerCreate\n// TimerDelete\n// TimerGetoverrun\n// TimerGettime\n// TimerSettime\n// Tkill (obsolete)\n// Tuxcall\n// Umount2\n// Uselib\n// Utimensat\n// Vfork\n// Vhangup\n// Vserver\n// Waitid\n// _Sysctl\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_386.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// TODO(rsc): Rewrite all nn(SP) references into name+(nn-8)(FP)\n// so that go vet can check that they are correct.\n\n// +build 386,linux\n\npackage unix\n\nimport (\n\t\"unsafe\"\n)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: int32(sec), Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: int32(sec), Usec: int32(usec)}\n}\n\n//sysnb\tpipe(p *[2]_C_int) (err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe(&pp)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n// 64-bit file system and 32-bit uid calls\n// (386 default is 32-bit file system and 16-bit uid).\n//sys\tdup2(oldfd int, newfd int) (err error)\n//sysnb\tEpollCreate(size int) (fd int, err error)\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64_64\n//sys\tFchown(fd int, uid int, gid int) (err error) = SYS_FCHOWN32\n//sys\tFstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64\n//sys\tFstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64\n//sys\tFtruncate(fd int, length int64) (err error) = SYS_FTRUNCATE64\n//sysnb\tGetegid() (egid int) = SYS_GETEGID32\n//sysnb\tGeteuid() (euid int) = SYS_GETEUID32\n//sysnb\tGetgid() (gid int) = SYS_GETGID32\n//sysnb\tGetuid() (uid int) = SYS_GETUID32\n//sysnb\tInotifyInit() (fd int, err error)\n//sys\tIoperm(from int, num int, on int) (err error)\n//sys\tIopl(level int) (err error)\n//sys\tLchown(path string, uid int, gid int) (err error) = SYS_LCHOWN32\n//sys\tLstat(path string, stat *Stat_t) (err error) = SYS_LSTAT64\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error) = SYS_SENDFILE64\n//sys\tsetfsgid(gid int) (prev int, err error) = SYS_SETFSGID32\n//sys\tsetfsuid(uid int) (prev int, err error) = SYS_SETFSUID32\n//sysnb\tSetregid(rgid int, egid int) (err error) = SYS_SETREGID32\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error) = SYS_SETRESGID32\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error) = SYS_SETRESUID32\n//sysnb\tSetreuid(ruid int, euid int) (err error) = SYS_SETREUID32\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)\n//sys\tStat(path string, stat *Stat_t) (err error) = SYS_STAT64\n//sys\tSyncFileRange(fd int, off int64, n int64, flags int) (err error)\n//sys\tTruncate(path string, length int64) (err error) = SYS_TRUNCATE64\n//sys\tUstat(dev int, ubuf *Ustat_t) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error) = SYS_GETGROUPS32\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error) = SYS_SETGROUPS32\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS__NEWSELECT\n\n//sys\tmmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pageOffset uintptr) (xaddr uintptr, err error)\n//sys\tPause() (err error)\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tpage := uintptr(offset / 4096)\n\tif offset != int64(page)*4096 {\n\t\treturn 0, EINVAL\n\t}\n\treturn mmap2(addr, length, prot, flags, fd, page)\n}\n\ntype rlimit32 struct {\n\tCur uint32\n\tMax uint32\n}\n\n//sysnb getrlimit(resource int, rlim *rlimit32) (err error) = SYS_GETRLIMIT\n\nconst rlimInf32 = ^uint32(0)\nconst rlimInf64 = ^uint64(0)\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\terr = prlimit(0, resource, nil, rlim)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\n\trl := rlimit32{}\n\terr = getrlimit(resource, &rl)\n\tif err != nil {\n\t\treturn\n\t}\n\n\tif rl.Cur == rlimInf32 {\n\t\trlim.Cur = rlimInf64\n\t} else {\n\t\trlim.Cur = uint64(rl.Cur)\n\t}\n\n\tif rl.Max == rlimInf32 {\n\t\trlim.Max = rlimInf64\n\t} else {\n\t\trlim.Max = uint64(rl.Max)\n\t}\n\treturn\n}\n\n//sysnb setrlimit(resource int, rlim *rlimit32) (err error) = SYS_SETRLIMIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\terr = prlimit(0, resource, rlim, nil)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\n\trl := rlimit32{}\n\tif rlim.Cur == rlimInf64 {\n\t\trl.Cur = rlimInf32\n\t} else if rlim.Cur < uint64(rlimInf32) {\n\t\trl.Cur = uint32(rlim.Cur)\n\t} else {\n\t\treturn EINVAL\n\t}\n\tif rlim.Max == rlimInf64 {\n\t\trl.Max = rlimInf32\n\t} else if rlim.Max < uint64(rlimInf32) {\n\t\trl.Max = uint32(rlim.Max)\n\t} else {\n\t\treturn EINVAL\n\t}\n\n\treturn setrlimit(resource, &rl)\n}\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tnewoffset, errno := seek(fd, offset, whence)\n\tif errno != 0 {\n\t\treturn 0, errno\n\t}\n\treturn newoffset, nil\n}\n\n//sys\tfutimesat(dirfd int, path string, times *[2]Timeval) (err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n//sysnb\tTime(t *Time_t) (tt Time_t, err error)\n//sys\tUtime(path string, buf *Utimbuf) (err error)\n//sys\tutimes(path string, times *[2]Timeval) (err error)\n\n// On x86 Linux, all the socket calls go through an extra indirection,\n// I think because the 5-register system call interface can't handle\n// the 6-argument calls like sendto and recvfrom. Instead the\n// arguments to the underlying system call are the number below\n// and a pointer to an array of uintptr. We hide the pointer in the\n// socketcall assembly to avoid allocation on every system call.\n\nconst (\n\t// see linux/net.h\n\t_SOCKET      = 1\n\t_BIND        = 2\n\t_CONNECT     = 3\n\t_LISTEN      = 4\n\t_ACCEPT      = 5\n\t_GETSOCKNAME = 6\n\t_GETPEERNAME = 7\n\t_SOCKETPAIR  = 8\n\t_SEND        = 9\n\t_RECV        = 10\n\t_SENDTO      = 11\n\t_RECVFROM    = 12\n\t_SHUTDOWN    = 13\n\t_SETSOCKOPT  = 14\n\t_GETSOCKOPT  = 15\n\t_SENDMSG     = 16\n\t_RECVMSG     = 17\n\t_ACCEPT4     = 18\n\t_RECVMMSG    = 19\n\t_SENDMMSG    = 20\n)\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tfd, e := socketcall(_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tfd, e := socketcall(_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, e := rawsocketcall(_GETSOCKNAME, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, e := rawsocketcall(_GETPEERNAME, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) {\n\t_, e := rawsocketcall(_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(flags), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, e := socketcall(_BIND, uintptr(s), uintptr(addr), uintptr(addrlen), 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, e := socketcall(_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen), 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tfd, e := rawsocketcall(_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto), 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, e := socketcall(_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, e := socketcall(_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), vallen, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar base uintptr\n\tif len(p) > 0 {\n\t\tbase = uintptr(unsafe.Pointer(&p[0]))\n\t}\n\tn, e := socketcall(_RECVFROM, uintptr(s), base, uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar base uintptr\n\tif len(p) > 0 {\n\t\tbase = uintptr(unsafe.Pointer(&p[0]))\n\t}\n\t_, e := socketcall(_SENDTO, uintptr(s), base, uintptr(len(p)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tn, e := socketcall(_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags), 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tn, e := socketcall(_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags), 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc Listen(s int, n int) (err error) {\n\t_, e := socketcall(_LISTEN, uintptr(s), uintptr(n), 0, 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc Shutdown(s, how int) (err error) {\n\t_, e := socketcall(_SHUTDOWN, uintptr(s), uintptr(how), 0, 0, 0, 0)\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e := Syscall(SYS_FSTATFS64, uintptr(fd), unsafe.Sizeof(*buf), uintptr(unsafe.Pointer(buf)))\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tpathp, err := BytePtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, _, e := Syscall(SYS_STATFS64, uintptr(unsafe.Pointer(pathp)), unsafe.Sizeof(*buf), uintptr(unsafe.Pointer(buf)))\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return uint64(uint32(r.Eip)) }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\n//sys\tpoll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_amd64.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build amd64,linux\n\npackage unix\n\n//sys\tdup2(oldfd int, newfd int) (err error)\n//sysnb\tEpollCreate(size int) (fd int, err error)\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_NEWFSTATAT\n//sys\tFstatfs(fd int, buf *Statfs_t) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (euid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tGetuid() (uid int)\n//sysnb\tinotifyInit() (fd int, err error)\n\nfunc InotifyInit() (fd int, err error) {\n\t// First try inotify_init1, because Android's seccomp policy blocks the latter.\n\tfd, err = InotifyInit1(0)\n\tif err == ENOSYS {\n\t\tfd, err = inotifyInit()\n\t}\n\treturn\n}\n\n//sys\tIoperm(from int, num int, on int) (err error)\n//sys\tIopl(level int) (err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tListen(s int, n int) (err error)\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\treturn Fstatat(AT_FDCWD, path, stat, AT_SYMLINK_NOFOLLOW)\n}\n\n//sys\tPause() (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tvar ts *Timespec\n\tif timeout != nil {\n\t\tts = &Timespec{Sec: timeout.Sec, Nsec: timeout.Usec * 1000}\n\t}\n\treturn Pselect(nfd, r, w, e, ts, nil)\n}\n\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error)\n//sys\tsetfsgid(gid int) (prev int, err error)\n//sys\tsetfsuid(uid int) (prev int, err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sys\tShutdown(fd int, how int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\t// Use fstatat, because Android's seccomp policy blocks stat.\n\treturn Fstatat(AT_FDCWD, path, stat, 0)\n}\n\n//sys\tStatfs(path string, buf *Statfs_t) (err error)\n//sys\tSyncFileRange(fd int, off int64, n int64, flags int) (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tUstat(dev int, ubuf *Ustat_t) (err error)\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n//sys\taccept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error)\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sysnb\tsocketpair(domain int, typ int, proto int, fd *[2]int32) (err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tmmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)\n\n//sys\tfutimesat(dirfd int, path string, times *[2]Timeval) (err error)\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\terrno := gettimeofday(tv)\n\tif errno != 0 {\n\t\treturn errno\n\t}\n\treturn nil\n}\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tvar tv Timeval\n\terrno := gettimeofday(&tv)\n\tif errno != 0 {\n\t\treturn 0, errno\n\t}\n\tif t != nil {\n\t\t*t = Time_t(tv.Sec)\n\t}\n\treturn Time_t(tv.Sec), nil\n}\n\n//sys\tUtime(path string, buf *Utimbuf) (err error)\n//sys\tutimes(path string, times *[2]Timeval) (err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\n//sysnb\tpipe(p *[2]_C_int) (err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe(&pp)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return r.Rip }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Rip = pc }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint64(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint64(length)\n}\n\n//sys\tpoll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n\n//sys\tkexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)\n\nfunc KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {\n\tcmdlineLen := len(cmdline)\n\tif cmdlineLen > 0 {\n\t\t// Account for the additional NULL byte added by\n\t\t// BytePtrFromString in kexecFileLoad. The kexec_file_load\n\t\t// syscall expects a NULL-terminated string.\n\t\tcmdlineLen++\n\t}\n\treturn kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build amd64,linux\n// +build !gccgo\n\npackage unix\n\nimport \"syscall\"\n\n//go:noescape\nfunc gettimeofday(tv *Timeval) (err syscall.Errno)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_arm.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm,linux\n\npackage unix\n\nimport (\n\t\"unsafe\"\n)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: int32(sec), Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: int32(sec), Usec: int32(usec)}\n}\n\n//sysnb\tpipe(p *[2]_C_int) (err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\t// Try pipe2 first for Android O, then try pipe for kernel 2.6.23.\n\terr = pipe2(&pp, 0)\n\tif err == ENOSYS {\n\t\terr = pipe(&pp)\n\t}\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tnewoffset, errno := seek(fd, offset, whence)\n\tif errno != 0 {\n\t\treturn 0, errno\n\t}\n\treturn newoffset, nil\n}\n\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n//sys\taccept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error) = SYS_GETGROUPS32\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error) = SYS_SETGROUPS32\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tsocketpair(domain int, typ int, flags int, fd *[2]int32) (err error)\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error)\n\n// 64-bit file system and 32-bit uid calls\n// (16-bit uid calls are not always supported in newer kernels)\n//sys\tdup2(oldfd int, newfd int) (err error)\n//sysnb\tEpollCreate(size int) (fd int, err error)\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)\n//sys\tFchown(fd int, uid int, gid int) (err error) = SYS_FCHOWN32\n//sys\tFstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64\n//sys\tFstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64\n//sysnb\tGetegid() (egid int) = SYS_GETEGID32\n//sysnb\tGeteuid() (euid int) = SYS_GETEUID32\n//sysnb\tGetgid() (gid int) = SYS_GETGID32\n//sysnb\tGetuid() (uid int) = SYS_GETUID32\n//sysnb\tInotifyInit() (fd int, err error)\n//sys\tLchown(path string, uid int, gid int) (err error) = SYS_LCHOWN32\n//sys\tListen(s int, n int) (err error)\n//sys\tLstat(path string, stat *Stat_t) (err error) = SYS_LSTAT64\n//sys\tPause() (err error)\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error) = SYS_SENDFILE64\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS__NEWSELECT\n//sys\tsetfsgid(gid int) (prev int, err error) = SYS_SETFSGID32\n//sys\tsetfsuid(uid int) (prev int, err error) = SYS_SETFSUID32\n//sysnb\tSetregid(rgid int, egid int) (err error) = SYS_SETREGID32\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error) = SYS_SETRESGID32\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error) = SYS_SETRESUID32\n//sysnb\tSetreuid(ruid int, euid int) (err error) = SYS_SETREUID32\n//sys\tShutdown(fd int, how int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)\n//sys\tStat(path string, stat *Stat_t) (err error) = SYS_STAT64\n//sys\tUstat(dev int, ubuf *Ustat_t) (err error)\n\n//sys\tfutimesat(dirfd int, path string, times *[2]Timeval) (err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n\nfunc Time(t *Time_t) (Time_t, error) {\n\tvar tv Timeval\n\terr := Gettimeofday(&tv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tif t != nil {\n\t\t*t = Time_t(tv.Sec)\n\t}\n\treturn Time_t(tv.Sec), nil\n}\n\nfunc Utime(path string, buf *Utimbuf) error {\n\ttv := []Timeval{\n\t\t{Sec: buf.Actime},\n\t\t{Sec: buf.Modtime},\n\t}\n\treturn Utimes(path, tv)\n}\n\n//sys\tutimes(path string, times *[2]Timeval) (err error)\n\n//sys   Pread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys   Pwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tTruncate(path string, length int64) (err error) = SYS_TRUNCATE64\n//sys\tFtruncate(fd int, length int64) (err error) = SYS_FTRUNCATE64\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_ARM_FADVISE64_64, uintptr(fd), uintptr(advice), uintptr(offset), uintptr(offset>>32), uintptr(length), uintptr(length>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n//sys\tmmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pageOffset uintptr) (xaddr uintptr, err error)\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e := Syscall(SYS_FSTATFS64, uintptr(fd), unsafe.Sizeof(*buf), uintptr(unsafe.Pointer(buf)))\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tpathp, err := BytePtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, _, e := Syscall(SYS_STATFS64, uintptr(unsafe.Pointer(pathp)), unsafe.Sizeof(*buf), uintptr(unsafe.Pointer(buf)))\n\tif e != 0 {\n\t\terr = e\n\t}\n\treturn\n}\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tpage := uintptr(offset / 4096)\n\tif offset != int64(page)*4096 {\n\t\treturn 0, EINVAL\n\t}\n\treturn mmap2(addr, length, prot, flags, fd, page)\n}\n\ntype rlimit32 struct {\n\tCur uint32\n\tMax uint32\n}\n\n//sysnb getrlimit(resource int, rlim *rlimit32) (err error) = SYS_UGETRLIMIT\n\nconst rlimInf32 = ^uint32(0)\nconst rlimInf64 = ^uint64(0)\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\terr = prlimit(0, resource, nil, rlim)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\n\trl := rlimit32{}\n\terr = getrlimit(resource, &rl)\n\tif err != nil {\n\t\treturn\n\t}\n\n\tif rl.Cur == rlimInf32 {\n\t\trlim.Cur = rlimInf64\n\t} else {\n\t\trlim.Cur = uint64(rl.Cur)\n\t}\n\n\tif rl.Max == rlimInf32 {\n\t\trlim.Max = rlimInf64\n\t} else {\n\t\trlim.Max = uint64(rl.Max)\n\t}\n\treturn\n}\n\n//sysnb setrlimit(resource int, rlim *rlimit32) (err error) = SYS_SETRLIMIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\terr = prlimit(0, resource, rlim, nil)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\n\trl := rlimit32{}\n\tif rlim.Cur == rlimInf64 {\n\t\trl.Cur = rlimInf32\n\t} else if rlim.Cur < uint64(rlimInf32) {\n\t\trl.Cur = uint32(rlim.Cur)\n\t} else {\n\t\treturn EINVAL\n\t}\n\tif rlim.Max == rlimInf64 {\n\t\trl.Max = rlimInf32\n\t} else if rlim.Max < uint64(rlimInf32) {\n\t\trl.Max = uint32(rlim.Max)\n\t} else {\n\t\treturn EINVAL\n\t}\n\n\treturn setrlimit(resource, &rl)\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return uint64(r.Uregs[15]) }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Uregs[15] = uint32(pc) }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\n//sys\tpoll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n\n//sys\tarmSyncFileRange(fd int, flags int, off int64, n int64) (err error) = SYS_ARM_SYNC_FILE_RANGE\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) error {\n\t// The sync_file_range and arm_sync_file_range syscalls differ only in the\n\t// order of their arguments.\n\treturn armSyncFileRange(fd, flags, off, n)\n}\n\n//sys\tkexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)\n\nfunc KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {\n\tcmdlineLen := len(cmdline)\n\tif cmdlineLen > 0 {\n\t\t// Account for the additional NULL byte added by\n\t\t// BytePtrFromString in kexecFileLoad. The kexec_file_load\n\t\t// syscall expects a NULL-terminated string.\n\t\tcmdlineLen++\n\t}\n\treturn kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_arm64.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm64,linux\n\npackage unix\n\nimport \"unsafe\"\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tif size <= 0 {\n\t\treturn -1, EINVAL\n\t}\n\treturn EpollCreate1(0)\n}\n\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) = SYS_EPOLL_PWAIT\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error)\n//sys\tFstatfs(fd int, buf *Statfs_t) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (euid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tgetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tGetuid() (uid int)\n//sys\tListen(s int, n int) (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tvar ts *Timespec\n\tif timeout != nil {\n\t\tts = &Timespec{Sec: timeout.Sec, Nsec: timeout.Usec * 1000}\n\t}\n\treturn Pselect(nfd, r, w, e, ts, nil)\n}\n\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error)\n//sys\tsetfsgid(gid int) (prev int, err error)\n//sys\tsetfsuid(uid int) (prev int, err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tsetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sys\tShutdown(fd int, how int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\treturn Fstatat(AT_FDCWD, path, stat, 0)\n}\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\treturn Fchownat(AT_FDCWD, path, uid, gid, AT_SYMLINK_NOFOLLOW)\n}\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\treturn Fstatat(AT_FDCWD, path, stat, AT_SYMLINK_NOFOLLOW)\n}\n\n//sys\tStatfs(path string, buf *Statfs_t) (err error)\n//sys\tSyncFileRange(fd int, off int64, n int64, flags int) (err error)\n//sys\tTruncate(path string, length int64) (err error)\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\treturn ENOSYS\n}\n\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n//sys\taccept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error)\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sysnb\tsocketpair(domain int, typ int, proto int, fd *[2]int32) (err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tmmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)\n\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {\n\tif tv == nil {\n\t\treturn utimensat(dirfd, path, nil, 0)\n\t}\n\n\tts := []Timespec{\n\t\tNsecToTimespec(TimevalToNsec(tv[0])),\n\t\tNsecToTimespec(TimevalToNsec(tv[1])),\n\t}\n\treturn utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)\n}\n\nfunc Time(t *Time_t) (Time_t, error) {\n\tvar tv Timeval\n\terr := Gettimeofday(&tv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tif t != nil {\n\t\t*t = Time_t(tv.Sec)\n\t}\n\treturn Time_t(tv.Sec), nil\n}\n\nfunc Utime(path string, buf *Utimbuf) error {\n\ttv := []Timeval{\n\t\t{Sec: buf.Actime},\n\t\t{Sec: buf.Modtime},\n\t}\n\treturn Utimes(path, tv)\n}\n\nfunc utimes(path string, tv *[2]Timeval) (err error) {\n\tif tv == nil {\n\t\treturn utimensat(AT_FDCWD, path, nil, 0)\n\t}\n\n\tts := []Timespec{\n\t\tNsecToTimespec(TimevalToNsec(tv[0])),\n\t\tNsecToTimespec(TimevalToNsec(tv[1])),\n\t}\n\treturn utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)\n}\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, 0)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n// Getrlimit prefers the prlimit64 system call. See issue 38604.\nfunc Getrlimit(resource int, rlim *Rlimit) error {\n\terr := prlimit(0, resource, nil, rlim)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\treturn getrlimit(resource, rlim)\n}\n\n// Setrlimit prefers the prlimit64 system call. See issue 38604.\nfunc Setrlimit(resource int, rlim *Rlimit) error {\n\terr := prlimit(0, resource, rlim, nil)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\treturn setrlimit(resource, rlim)\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return r.Pc }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint64(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint64(length)\n}\n\nfunc InotifyInit() (fd int, err error) {\n\treturn InotifyInit1(0)\n}\n\n// dup2 exists because func Dup3 in syscall_linux.go references\n// it in an unreachable path. dup2 isn't available on arm64.\nfunc dup2(oldfd int, newfd int) error\n\nfunc Pause() error {\n\t_, err := ppoll(nil, 0, nil, nil)\n\treturn err\n}\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tvar ts *Timespec\n\tif timeout >= 0 {\n\t\tts = new(Timespec)\n\t\t*ts = NsecToTimespec(int64(timeout) * 1e6)\n\t}\n\tif len(fds) == 0 {\n\t\treturn ppoll(nil, 0, ts, nil)\n\t}\n\treturn ppoll(&fds[0], len(fds), ts, nil)\n}\n\n//sys\tkexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)\n\nfunc KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {\n\tcmdlineLen := len(cmdline)\n\tif cmdlineLen > 0 {\n\t\t// Account for the additional NULL byte added by\n\t\t// BytePtrFromString in kexecFileLoad. The kexec_file_load\n\t\t// syscall expects a NULL-terminated string.\n\t\tcmdlineLen++\n\t}\n\treturn kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_gc.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux,!gccgo\n\npackage unix\n\n// SyscallNoError may be used instead of Syscall for syscalls that don't fail.\nfunc SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr)\n\n// RawSyscallNoError may be used instead of RawSyscall for syscalls that don't\n// fail.\nfunc RawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux,!gccgo,386\n\npackage unix\n\nimport \"syscall\"\n\n// Underlying system call writes to newoffset via pointer.\n// Implemented in assembly to avoid allocation.\nfunc seek(fd int, offset int64, whence int) (newoffset int64, err syscall.Errno)\n\nfunc socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err syscall.Errno)\nfunc rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err syscall.Errno)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm,!gccgo,linux\n\npackage unix\n\nimport \"syscall\"\n\n// Underlying system call writes to newoffset via pointer.\n// Implemented in assembly to avoid allocation.\nfunc seek(fd int, offset int64, whence int) (newoffset int64, err syscall.Errno)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux,gccgo,386\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc seek(fd int, offset int64, whence int) (int64, syscall.Errno) {\n\tvar newoffset int64\n\toffsetLow := uint32(offset & 0xffffffff)\n\toffsetHigh := uint32((offset >> 32) & 0xffffffff)\n\t_, _, err := Syscall6(SYS__LLSEEK, uintptr(fd), uintptr(offsetHigh), uintptr(offsetLow), uintptr(unsafe.Pointer(&newoffset)), uintptr(whence), 0)\n\treturn newoffset, err\n}\n\nfunc socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall.Errno) {\n\tfd, _, err := Syscall(SYS_SOCKETCALL, uintptr(call), uintptr(unsafe.Pointer(&a0)), 0)\n\treturn int(fd), err\n}\n\nfunc rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall.Errno) {\n\tfd, _, err := RawSyscall(SYS_SOCKETCALL, uintptr(call), uintptr(unsafe.Pointer(&a0)), 0)\n\treturn int(fd), err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux,gccgo,arm\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc seek(fd int, offset int64, whence int) (int64, syscall.Errno) {\n\tvar newoffset int64\n\toffsetLow := uint32(offset & 0xffffffff)\n\toffsetHigh := uint32((offset >> 32) & 0xffffffff)\n\t_, _, err := Syscall6(SYS__LLSEEK, uintptr(fd), uintptr(offsetHigh), uintptr(offsetLow), uintptr(unsafe.Pointer(&newoffset)), uintptr(whence), 0)\n\treturn newoffset, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n// +build mips64 mips64le\n\npackage unix\n\n//sys\tdup2(oldfd int, newfd int) (err error)\n//sysnb\tEpollCreate(size int) (fd int, err error)\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFstatfs(fd int, buf *Statfs_t) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (euid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tGetuid() (uid int)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tListen(s int, n int) (err error)\n//sys\tPause() (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tvar ts *Timespec\n\tif timeout != nil {\n\t\tts = &Timespec{Sec: timeout.Sec, Nsec: timeout.Usec * 1000}\n\t}\n\treturn Pselect(nfd, r, w, e, ts, nil)\n}\n\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error)\n//sys\tsetfsgid(gid int) (prev int, err error)\n//sys\tsetfsuid(uid int) (prev int, err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sys\tShutdown(fd int, how int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)\n//sys\tStatfs(path string, buf *Statfs_t) (err error)\n//sys\tSyncFileRange(fd int, off int64, n int64, flags int) (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tUstat(dev int, ubuf *Ustat_t) (err error)\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n//sys\taccept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error)\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sysnb\tsocketpair(domain int, typ int, proto int, fd *[2]int32) (err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tmmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)\n\n//sys\tfutimesat(dirfd int, path string, times *[2]Timeval) (err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tvar tv Timeval\n\terr = Gettimeofday(&tv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tif t != nil {\n\t\t*t = Time_t(tv.Sec)\n\t}\n\treturn Time_t(tv.Sec), nil\n}\n\n//sys\tUtime(path string, buf *Utimbuf) (err error)\n//sys\tutimes(path string, times *[2]Timeval) (err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, 0)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\nfunc Ioperm(from int, num int, on int) (err error) {\n\treturn ENOSYS\n}\n\nfunc Iopl(level int) (err error) {\n\treturn ENOSYS\n}\n\ntype stat_t struct {\n\tDev        uint32\n\tPad0       [3]int32\n\tIno        uint64\n\tMode       uint32\n\tNlink      uint32\n\tUid        uint32\n\tGid        uint32\n\tRdev       uint32\n\tPad1       [3]uint32\n\tSize       int64\n\tAtime      uint32\n\tAtime_nsec uint32\n\tMtime      uint32\n\tMtime_nsec uint32\n\tCtime      uint32\n\tCtime_nsec uint32\n\tBlksize    uint32\n\tPad2       uint32\n\tBlocks     int64\n}\n\n//sys\tfstat(fd int, st *stat_t) (err error)\n//sys\tfstatat(dirfd int, path string, st *stat_t, flags int) (err error) = SYS_NEWFSTATAT\n//sys\tlstat(path string, st *stat_t) (err error)\n//sys\tstat(path string, st *stat_t) (err error)\n\nfunc Fstat(fd int, s *Stat_t) (err error) {\n\tst := &stat_t{}\n\terr = fstat(fd, st)\n\tfillStat_t(s, st)\n\treturn\n}\n\nfunc Fstatat(dirfd int, path string, s *Stat_t, flags int) (err error) {\n\tst := &stat_t{}\n\terr = fstatat(dirfd, path, st, flags)\n\tfillStat_t(s, st)\n\treturn\n}\n\nfunc Lstat(path string, s *Stat_t) (err error) {\n\tst := &stat_t{}\n\terr = lstat(path, st)\n\tfillStat_t(s, st)\n\treturn\n}\n\nfunc Stat(path string, s *Stat_t) (err error) {\n\tst := &stat_t{}\n\terr = stat(path, st)\n\tfillStat_t(s, st)\n\treturn\n}\n\nfunc fillStat_t(s *Stat_t, st *stat_t) {\n\ts.Dev = st.Dev\n\ts.Ino = st.Ino\n\ts.Mode = st.Mode\n\ts.Nlink = st.Nlink\n\ts.Uid = st.Uid\n\ts.Gid = st.Gid\n\ts.Rdev = st.Rdev\n\ts.Size = st.Size\n\ts.Atim = Timespec{int64(st.Atime), int64(st.Atime_nsec)}\n\ts.Mtim = Timespec{int64(st.Mtime), int64(st.Mtime_nsec)}\n\ts.Ctim = Timespec{int64(st.Ctime), int64(st.Ctime_nsec)}\n\ts.Blksize = st.Blksize\n\ts.Blocks = st.Blocks\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return r.Epc }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint64(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint64(length)\n}\n\nfunc InotifyInit() (fd int, err error) {\n\treturn InotifyInit1(0)\n}\n\n//sys\tpoll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n// +build mips mipsle\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\n//sys\tdup2(oldfd int, newfd int) (err error)\n//sysnb\tEpollCreate(size int) (fd int, err error)\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFtruncate(fd int, length int64) (err error) = SYS_FTRUNCATE64\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (euid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetuid() (uid int)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tListen(s int, n int) (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS__NEWSELECT\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error) = SYS_SENDFILE64\n//sys\tsetfsgid(gid int) (prev int, err error)\n//sys\tsetfsuid(uid int) (prev int, err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sys\tShutdown(fd int, how int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)\n//sys\tSyncFileRange(fd int, off int64, n int64, flags int) (err error)\n//sys\tTruncate(path string, length int64) (err error) = SYS_TRUNCATE64\n//sys\tUstat(dev int, ubuf *Ustat_t) (err error)\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n//sys\taccept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error)\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sysnb\tsocketpair(domain int, typ int, proto int, fd *[2]int32) (err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error)\n\n//sysnb\tInotifyInit() (fd int, err error)\n//sys\tIoperm(from int, num int, on int) (err error)\n//sys\tIopl(level int) (err error)\n\n//sys\tfutimesat(dirfd int, path string, times *[2]Timeval) (err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n//sysnb\tTime(t *Time_t) (tt Time_t, err error)\n//sys\tUtime(path string, buf *Utimbuf) (err error)\n//sys\tutimes(path string, times *[2]Timeval) (err error)\n\n//sys\tLstat(path string, stat *Stat_t) (err error) = SYS_LSTAT64\n//sys\tFstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64\n//sys\tFstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64\n//sys\tStat(path string, stat *Stat_t) (err error) = SYS_STAT64\n\n//sys\tPause() (err error)\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e := Syscall(SYS_FSTATFS64, uintptr(fd), unsafe.Sizeof(*buf), uintptr(unsafe.Pointer(buf)))\n\tif e != 0 {\n\t\terr = errnoErr(e)\n\t}\n\treturn\n}\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tp, err := BytePtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, _, e := Syscall(SYS_STATFS64, uintptr(unsafe.Pointer(p)), unsafe.Sizeof(*buf), uintptr(unsafe.Pointer(buf)))\n\tif e != 0 {\n\t\terr = errnoErr(e)\n\t}\n\treturn\n}\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\t_, _, e := Syscall6(SYS__LLSEEK, uintptr(fd), uintptr(offset>>32), uintptr(offset), uintptr(unsafe.Pointer(&off)), uintptr(whence), 0)\n\tif e != 0 {\n\t\terr = errnoErr(e)\n\t}\n\treturn\n}\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: int32(sec), Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: int32(sec), Usec: int32(usec)}\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe() (p1 int, p2 int, err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tp[0], p[1], err = pipe()\n\treturn\n}\n\n//sys\tmmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pageOffset uintptr) (xaddr uintptr, err error)\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tpage := uintptr(offset / 4096)\n\tif offset != int64(page)*4096 {\n\t\treturn 0, EINVAL\n\t}\n\treturn mmap2(addr, length, prot, flags, fd, page)\n}\n\nconst rlimInf32 = ^uint32(0)\nconst rlimInf64 = ^uint64(0)\n\ntype rlimit32 struct {\n\tCur uint32\n\tMax uint32\n}\n\n//sysnb getrlimit(resource int, rlim *rlimit32) (err error) = SYS_GETRLIMIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\terr = prlimit(0, resource, nil, rlim)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\n\trl := rlimit32{}\n\terr = getrlimit(resource, &rl)\n\tif err != nil {\n\t\treturn\n\t}\n\n\tif rl.Cur == rlimInf32 {\n\t\trlim.Cur = rlimInf64\n\t} else {\n\t\trlim.Cur = uint64(rl.Cur)\n\t}\n\n\tif rl.Max == rlimInf32 {\n\t\trlim.Max = rlimInf64\n\t} else {\n\t\trlim.Max = uint64(rl.Max)\n\t}\n\treturn\n}\n\n//sysnb setrlimit(resource int, rlim *rlimit32) (err error) = SYS_SETRLIMIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\terr = prlimit(0, resource, rlim, nil)\n\tif err != ENOSYS {\n\t\treturn err\n\t}\n\n\trl := rlimit32{}\n\tif rlim.Cur == rlimInf64 {\n\t\trl.Cur = rlimInf32\n\t} else if rlim.Cur < uint64(rlimInf32) {\n\t\trl.Cur = uint32(rlim.Cur)\n\t} else {\n\t\treturn EINVAL\n\t}\n\tif rlim.Max == rlimInf64 {\n\t\trl.Max = rlimInf32\n\t} else if rlim.Max < uint64(rlimInf32) {\n\t\trl.Max = uint32(rlim.Max)\n\t} else {\n\t\treturn EINVAL\n\t}\n\n\treturn setrlimit(resource, &rl)\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return r.Epc }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\n//sys\tpoll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n// +build ppc64 ppc64le\n\npackage unix\n\n//sys\tdup2(oldfd int, newfd int) (err error)\n//sysnb\tEpollCreate(size int) (fd int, err error)\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_NEWFSTATAT\n//sys\tFstatfs(fd int, buf *Statfs_t) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (euid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetrlimit(resource int, rlim *Rlimit) (err error) = SYS_UGETRLIMIT\n//sysnb\tGetuid() (uid int)\n//sysnb\tInotifyInit() (fd int, err error)\n//sys\tIoperm(from int, num int, on int) (err error)\n//sys\tIopl(level int) (err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tListen(s int, n int) (err error)\n//sys\tLstat(path string, stat *Stat_t) (err error)\n//sys\tPause() (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS__NEWSELECT\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error)\n//sys\tsetfsgid(gid int) (prev int, err error)\n//sys\tsetfsuid(uid int) (prev int, err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sys\tShutdown(fd int, how int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)\n//sys\tStat(path string, stat *Stat_t) (err error)\n//sys\tStatfs(path string, buf *Statfs_t) (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tUstat(dev int, ubuf *Ustat_t) (err error)\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n//sys\taccept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error)\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sysnb\tsocketpair(domain int, typ int, proto int, fd *[2]int32) (err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tmmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)\n\n//sys\tfutimesat(dirfd int, path string, times *[2]Timeval) (err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n//sysnb\tTime(t *Time_t) (tt Time_t, err error)\n//sys\tUtime(path string, buf *Utimbuf) (err error)\n//sys\tutimes(path string, times *[2]Timeval) (err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return r.Nip }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Nip = pc }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint64(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint64(length)\n}\n\n//sysnb pipe(p *[2]_C_int) (err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe(&pp)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sys\tpoll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n\n//sys\tsyncFileRange2(fd int, flags int, off int64, n int64) (err error) = SYS_SYNC_FILE_RANGE2\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) error {\n\t// The sync_file_range and sync_file_range2 syscalls differ only in the\n\t// order of their arguments.\n\treturn syncFileRange2(fd, flags, off, n)\n}\n\n//sys\tkexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)\n\nfunc KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {\n\tcmdlineLen := len(cmdline)\n\tif cmdlineLen > 0 {\n\t\t// Account for the additional NULL byte added by\n\t\t// BytePtrFromString in kexecFileLoad. The kexec_file_load\n\t\t// syscall expects a NULL-terminated string.\n\t\tcmdlineLen++\n\t}\n\treturn kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build riscv64,linux\n\npackage unix\n\nimport \"unsafe\"\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tif size <= 0 {\n\t\treturn -1, EINVAL\n\t}\n\treturn EpollCreate1(0)\n}\n\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) = SYS_EPOLL_PWAIT\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error)\n//sys\tFstatfs(fd int, buf *Statfs_t) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (euid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tGetuid() (uid int)\n//sys\tListen(s int, n int) (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tSeek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tvar ts *Timespec\n\tif timeout != nil {\n\t\tts = &Timespec{Sec: timeout.Sec, Nsec: timeout.Usec * 1000}\n\t}\n\treturn Pselect(nfd, r, w, e, ts, nil)\n}\n\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error)\n//sys\tsetfsgid(gid int) (prev int, err error)\n//sys\tsetfsuid(uid int) (prev int, err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sys\tShutdown(fd int, how int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\treturn Fstatat(AT_FDCWD, path, stat, 0)\n}\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\treturn Fchownat(AT_FDCWD, path, uid, gid, AT_SYMLINK_NOFOLLOW)\n}\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\treturn Fstatat(AT_FDCWD, path, stat, AT_SYMLINK_NOFOLLOW)\n}\n\n//sys\tStatfs(path string, buf *Statfs_t) (err error)\n//sys\tSyncFileRange(fd int, off int64, n int64, flags int) (err error)\n//sys\tTruncate(path string, length int64) (err error)\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\treturn ENOSYS\n}\n\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n//sys\taccept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error)\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sysnb\tsocketpair(domain int, typ int, proto int, fd *[2]int32) (err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tmmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)\n\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {\n\tif tv == nil {\n\t\treturn utimensat(dirfd, path, nil, 0)\n\t}\n\n\tts := []Timespec{\n\t\tNsecToTimespec(TimevalToNsec(tv[0])),\n\t\tNsecToTimespec(TimevalToNsec(tv[1])),\n\t}\n\treturn utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)\n}\n\nfunc Time(t *Time_t) (Time_t, error) {\n\tvar tv Timeval\n\terr := Gettimeofday(&tv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tif t != nil {\n\t\t*t = Time_t(tv.Sec)\n\t}\n\treturn Time_t(tv.Sec), nil\n}\n\nfunc Utime(path string, buf *Utimbuf) error {\n\ttv := []Timeval{\n\t\t{Sec: buf.Actime},\n\t\t{Sec: buf.Modtime},\n\t}\n\treturn Utimes(path, tv)\n}\n\nfunc utimes(path string, tv *[2]Timeval) (err error) {\n\tif tv == nil {\n\t\treturn utimensat(AT_FDCWD, path, nil, 0)\n\t}\n\n\tts := []Timespec{\n\t\tNsecToTimespec(TimevalToNsec(tv[0])),\n\t\tNsecToTimespec(TimevalToNsec(tv[1])),\n\t}\n\treturn utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)\n}\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, 0)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return r.Pc }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint64(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint64(length)\n}\n\nfunc InotifyInit() (fd int, err error) {\n\treturn InotifyInit1(0)\n}\n\nfunc Pause() error {\n\t_, err := ppoll(nil, 0, nil, nil)\n\treturn err\n}\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tvar ts *Timespec\n\tif timeout >= 0 {\n\t\tts = new(Timespec)\n\t\t*ts = NsecToTimespec(int64(timeout) * 1e6)\n\t}\n\tif len(fds) == 0 {\n\t\treturn ppoll(nil, 0, ts, nil)\n\t}\n\treturn ppoll(&fds[0], len(fds), ts, nil)\n}\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\treturn Renameat2(olddirfd, oldpath, newdirfd, newpath, 0)\n}\n\n//sys\tkexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)\n\nfunc KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {\n\tcmdlineLen := len(cmdline)\n\tif cmdlineLen > 0 {\n\t\t// Account for the additional NULL byte added by\n\t\t// BytePtrFromString in kexecFileLoad. The kexec_file_load\n\t\t// syscall expects a NULL-terminated string.\n\t\tcmdlineLen++\n\t}\n\treturn kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags)\n}\n\n// dup2 exists because func Dup3 in syscall_linux.go references\n// it in an unreachable path. dup2 isn't available on arm64.\nfunc dup2(oldfd int, newfd int) error\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_s390x.go",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build s390x,linux\n\npackage unix\n\nimport (\n\t\"unsafe\"\n)\n\n//sys\tdup2(oldfd int, newfd int) (err error)\n//sysnb\tEpollCreate(size int) (fd int, err error)\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_NEWFSTATAT\n//sys\tFstatfs(fd int, buf *Statfs_t) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (euid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tGetuid() (uid int)\n//sysnb\tInotifyInit() (fd int, err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tLstat(path string, stat *Stat_t) (err error)\n//sys\tPause() (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error)\n//sys\tsetfsgid(gid int) (prev int, err error)\n//sys\tsetfsuid(uid int) (prev int, err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)\n//sys\tStat(path string, stat *Stat_t) (err error)\n//sys\tStatfs(path string, buf *Statfs_t) (err error)\n//sys\tSyncFileRange(fd int, off int64, n int64, flags int) (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tUstat(dev int, ubuf *Ustat_t) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error)\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error)\n\n//sys\tfutimesat(dirfd int, path string, times *[2]Timeval) (err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tvar tv Timeval\n\terr = Gettimeofday(&tv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tif t != nil {\n\t\t*t = Time_t(tv.Sec)\n\t}\n\treturn Time_t(tv.Sec), nil\n}\n\n//sys\tUtime(path string, buf *Utimbuf) (err error)\n//sys\tutimes(path string, times *[2]Timeval) (err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, 0) // pipe2 is the same as pipe when flags are set to 0.\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\nfunc Ioperm(from int, num int, on int) (err error) {\n\treturn ENOSYS\n}\n\nfunc Iopl(level int) (err error) {\n\treturn ENOSYS\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return r.Psw.Addr }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Psw.Addr = pc }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint64(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint64(length)\n}\n\n// Linux on s390x uses the old mmap interface, which requires arguments to be passed in a struct.\n// mmap2 also requires arguments to be passed in a struct; it is currently not exposed in <asm/unistd.h>.\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tmmap_args := [6]uintptr{addr, length, uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset)}\n\tr0, _, e1 := Syscall(SYS_MMAP, uintptr(unsafe.Pointer(&mmap_args[0])), 0, 0)\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// On s390x Linux, all the socket calls go through an extra indirection.\n// The arguments to the underlying system call (SYS_SOCKETCALL) are the\n// number below and a pointer to an array of uintptr.\nconst (\n\t// see linux/net.h\n\tnetSocket      = 1\n\tnetBind        = 2\n\tnetConnect     = 3\n\tnetListen      = 4\n\tnetAccept      = 5\n\tnetGetSockName = 6\n\tnetGetPeerName = 7\n\tnetSocketPair  = 8\n\tnetSend        = 9\n\tnetRecv        = 10\n\tnetSendTo      = 11\n\tnetRecvFrom    = 12\n\tnetShutdown    = 13\n\tnetSetSockOpt  = 14\n\tnetGetSockOpt  = 15\n\tnetSendMsg     = 16\n\tnetRecvMsg     = 17\n\tnetAccept4     = 18\n\tnetRecvMMsg    = 19\n\tnetSendMMsg    = 20\n)\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (int, error) {\n\targs := [3]uintptr{uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen))}\n\tfd, _, err := Syscall(SYS_SOCKETCALL, netAccept, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn 0, err\n\t}\n\treturn int(fd), nil\n}\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (int, error) {\n\targs := [4]uintptr{uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags)}\n\tfd, _, err := Syscall(SYS_SOCKETCALL, netAccept4, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn 0, err\n\t}\n\treturn int(fd), nil\n}\n\nfunc getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error {\n\targs := [3]uintptr{uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen))}\n\t_, _, err := RawSyscall(SYS_SOCKETCALL, netGetSockName, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error {\n\targs := [3]uintptr{uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen))}\n\t_, _, err := RawSyscall(SYS_SOCKETCALL, netGetPeerName, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc socketpair(domain int, typ int, flags int, fd *[2]int32) error {\n\targs := [4]uintptr{uintptr(domain), uintptr(typ), uintptr(flags), uintptr(unsafe.Pointer(fd))}\n\t_, _, err := RawSyscall(SYS_SOCKETCALL, netSocketPair, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) error {\n\targs := [3]uintptr{uintptr(s), uintptr(addr), uintptr(addrlen)}\n\t_, _, err := Syscall(SYS_SOCKETCALL, netBind, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) error {\n\targs := [3]uintptr{uintptr(s), uintptr(addr), uintptr(addrlen)}\n\t_, _, err := Syscall(SYS_SOCKETCALL, netConnect, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc socket(domain int, typ int, proto int) (int, error) {\n\targs := [3]uintptr{uintptr(domain), uintptr(typ), uintptr(proto)}\n\tfd, _, err := RawSyscall(SYS_SOCKETCALL, netSocket, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn 0, err\n\t}\n\treturn int(fd), nil\n}\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) error {\n\targs := [5]uintptr{uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen))}\n\t_, _, err := Syscall(SYS_SOCKETCALL, netGetSockOpt, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) error {\n\targs := [4]uintptr{uintptr(s), uintptr(level), uintptr(name), uintptr(val)}\n\t_, _, err := Syscall(SYS_SOCKETCALL, netSetSockOpt, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (int, error) {\n\tvar base uintptr\n\tif len(p) > 0 {\n\t\tbase = uintptr(unsafe.Pointer(&p[0]))\n\t}\n\targs := [6]uintptr{uintptr(s), base, uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen))}\n\tn, _, err := Syscall(SYS_SOCKETCALL, netRecvFrom, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn 0, err\n\t}\n\treturn int(n), nil\n}\n\nfunc sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Socklen) error {\n\tvar base uintptr\n\tif len(p) > 0 {\n\t\tbase = uintptr(unsafe.Pointer(&p[0]))\n\t}\n\targs := [6]uintptr{uintptr(s), base, uintptr(len(p)), uintptr(flags), uintptr(to), uintptr(addrlen)}\n\t_, _, err := Syscall(SYS_SOCKETCALL, netSendTo, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (int, error) {\n\targs := [3]uintptr{uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags)}\n\tn, _, err := Syscall(SYS_SOCKETCALL, netRecvMsg, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn 0, err\n\t}\n\treturn int(n), nil\n}\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (int, error) {\n\targs := [3]uintptr{uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags)}\n\tn, _, err := Syscall(SYS_SOCKETCALL, netSendMsg, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn 0, err\n\t}\n\treturn int(n), nil\n}\n\nfunc Listen(s int, n int) error {\n\targs := [2]uintptr{uintptr(s), uintptr(n)}\n\t_, _, err := Syscall(SYS_SOCKETCALL, netListen, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\nfunc Shutdown(s, how int) error {\n\targs := [2]uintptr{uintptr(s), uintptr(how)}\n\t_, _, err := Syscall(SYS_SOCKETCALL, netShutdown, uintptr(unsafe.Pointer(&args)), 0)\n\tif err != 0 {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n//sys\tpoll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n\n//sys\tkexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error)\n\nfunc KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error {\n\tcmdlineLen := len(cmdline)\n\tif cmdlineLen > 0 {\n\t\t// Account for the additional NULL byte added by\n\t\t// BytePtrFromString in kexecFileLoad. The kexec_file_load\n\t\t// syscall expects a NULL-terminated string.\n\t\tcmdlineLen++\n\t}\n\treturn kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build sparc64,linux\n\npackage unix\n\n//sys\tEpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64\n//sys\tdup2(oldfd int, newfd int) (err error)\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64\n//sys\tFstatfs(fd int, buf *Statfs_t) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (euid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tGetuid() (uid int)\n//sysnb\tInotifyInit() (fd int, err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tListen(s int, n int) (err error)\n//sys\tLstat(path string, stat *Stat_t) (err error)\n//sys\tPause() (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error)\n//sys\tsetfsgid(gid int) (prev int, err error)\n//sys\tsetfsuid(uid int) (prev int, err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetrlimit(resource int, rlim *Rlimit) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sys\tShutdown(fd int, how int) (err error)\n//sys\tSplice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)\n//sys\tStat(path string, stat *Stat_t) (err error)\n//sys\tStatfs(path string, buf *Statfs_t) (err error)\n//sys\tSyncFileRange(fd int, off int64, n int64, flags int) (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)\n//sys\taccept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)\n//sysnb\tgetgroups(n int, list *_Gid_t) (nn int, err error)\n//sysnb\tsetgroups(n int, list *_Gid_t) (err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)\n//sysnb\tsocket(domain int, typ int, proto int) (fd int, err error)\n//sysnb\tsocketpair(domain int, typ int, proto int, fd *[2]int32) (err error)\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sysnb\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error)\n//sys\tmmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)\n\nfunc Ioperm(from int, num int, on int) (err error) {\n\treturn ENOSYS\n}\n\nfunc Iopl(level int) (err error) {\n\treturn ENOSYS\n}\n\n//sys\tfutimesat(dirfd int, path string, times *[2]Timeval) (err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tvar tv Timeval\n\terr = Gettimeofday(&tv)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tif t != nil {\n\t\t*t = Time_t(tv.Sec)\n\t}\n\treturn Time_t(tv.Sec), nil\n}\n\n//sys\tUtime(path string, buf *Utimbuf) (err error)\n//sys\tutimes(path string, times *[2]Timeval) (err error)\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc (r *PtraceRegs) PC() uint64 { return r.Tpc }\n\nfunc (r *PtraceRegs) SetPC(pc uint64) { r.Tpc = pc }\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint64(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint64(length)\n}\n\n//sysnb pipe(p *[2]_C_int) (err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe(&pp)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sys\tpoll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_netbsd.go",
    "content": "// Copyright 2009,2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// NetBSD system calls.\n// This file is compiled as ordinary Go code,\n// but it is also input to mksyscall,\n// which parses the //sys lines and generates system call stubs.\n// Note that sometimes we use a lowercase //sys name and wrap\n// it in our own nicer implementation, either here or in\n// syscall_bsd.go or syscall_unix.go.\n\npackage unix\n\nimport (\n\t\"runtime\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.\ntype SockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n\traw    RawSockaddrDatalink\n}\n\nfunc Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\nfunc sysctlNodes(mib []_C_int) (nodes []Sysctlnode, err error) {\n\tvar olen uintptr\n\n\t// Get a list of all sysctl nodes below the given MIB by performing\n\t// a sysctl for the given MIB with CTL_QUERY appended.\n\tmib = append(mib, CTL_QUERY)\n\tqnode := Sysctlnode{Flags: SYSCTL_VERS_1}\n\tqp := (*byte)(unsafe.Pointer(&qnode))\n\tsz := unsafe.Sizeof(qnode)\n\tif err = sysctl(mib, nil, &olen, qp, sz); err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Now that we know the size, get the actual nodes.\n\tnodes = make([]Sysctlnode, olen/sz)\n\tnp := (*byte)(unsafe.Pointer(&nodes[0]))\n\tif err = sysctl(mib, np, &olen, qp, sz); err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn nodes, nil\n}\n\nfunc nametomib(name string) (mib []_C_int, err error) {\n\t// Split name into components.\n\tvar parts []string\n\tlast := 0\n\tfor i := 0; i < len(name); i++ {\n\t\tif name[i] == '.' {\n\t\t\tparts = append(parts, name[last:i])\n\t\t\tlast = i + 1\n\t\t}\n\t}\n\tparts = append(parts, name[last:])\n\n\t// Discover the nodes and construct the MIB OID.\n\tfor partno, part := range parts {\n\t\tnodes, err := sysctlNodes(mib)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tfor _, node := range nodes {\n\t\t\tn := make([]byte, 0)\n\t\t\tfor i := range node.Name {\n\t\t\t\tif node.Name[i] != 0 {\n\t\t\t\t\tn = append(n, byte(node.Name[i]))\n\t\t\t\t}\n\t\t\t}\n\t\t\tif string(n) == part {\n\t\t\t\tmib = append(mib, _C_int(node.Num))\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif len(mib) != partno+1 {\n\t\t\treturn nil, EINVAL\n\t\t}\n\t}\n\n\treturn mib, nil\n}\n\nfunc direntIno(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Fileno), unsafe.Sizeof(Dirent{}.Fileno))\n}\n\nfunc direntReclen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))\n}\n\nfunc direntNamlen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Namlen), unsafe.Sizeof(Dirent{}.Namlen))\n}\n\n//sysnb pipe() (fd1 int, fd2 int, err error)\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tp[0], p[1], err = pipe()\n\treturn\n}\n\n//sys Getdents(fd int, buf []byte) (n int, err error)\nfunc Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\tn, err = Getdents(fd, buf)\n\tif err != nil || basep == nil {\n\t\treturn\n\t}\n\n\tvar off int64\n\toff, err = Seek(fd, 0, 1 /* SEEK_CUR */)\n\tif err != nil {\n\t\t*basep = ^uintptr(0)\n\t\treturn\n\t}\n\t*basep = uintptr(off)\n\tif unsafe.Sizeof(*basep) == 8 {\n\t\treturn\n\t}\n\tif off>>32 != 0 {\n\t\t// We can't stuff the offset back into a uintptr, so any\n\t\t// future calls would be suspect. Generate an error.\n\t\t// EIO is allowed by getdirentries.\n\t\terr = EIO\n\t}\n\treturn\n}\n\n//sys\tGetcwd(buf []byte) (n int, err error) = SYS___GETCWD\n\n// TODO\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\treturn -1, ENOSYS\n}\n\nfunc setattrlistTimes(path string, times []Timespec, flags int) error {\n\t// used on Darwin for UtimesNano\n\treturn ENOSYS\n}\n\n//sys\tioctl(fd int, req uint, arg uintptr) (err error)\n\n//sys   sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS___SYSCTL\n\nfunc IoctlGetPtmget(fd int, req uint) (*Ptmget, error) {\n\tvar value Ptmget\n\terr := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))\n\truntime.KeepAlive(value)\n\treturn &value, err\n}\n\nfunc Uname(uname *Utsname) error {\n\tmib := []_C_int{CTL_KERN, KERN_OSTYPE}\n\tn := unsafe.Sizeof(uname.Sysname)\n\tif err := sysctl(mib, &uname.Sysname[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_HOSTNAME}\n\tn = unsafe.Sizeof(uname.Nodename)\n\tif err := sysctl(mib, &uname.Nodename[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_OSRELEASE}\n\tn = unsafe.Sizeof(uname.Release)\n\tif err := sysctl(mib, &uname.Release[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_VERSION}\n\tn = unsafe.Sizeof(uname.Version)\n\tif err := sysctl(mib, &uname.Version[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\t// The version might have newlines or tabs in it, convert them to\n\t// spaces.\n\tfor i, b := range uname.Version {\n\t\tif b == '\\n' || b == '\\t' {\n\t\t\tif i == len(uname.Version)-1 {\n\t\t\t\tuname.Version[i] = 0\n\t\t\t} else {\n\t\t\t\tuname.Version[i] = ' '\n\t\t\t}\n\t\t}\n\t}\n\n\tmib = []_C_int{CTL_HW, HW_MACHINE}\n\tn = unsafe.Sizeof(uname.Machine)\n\tif err := sysctl(mib, &uname.Machine[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\treturn nil\n}\n\nfunc Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\treturn sendfile(outfd, infd, offset, count)\n}\n\nfunc Fstatvfs(fd int, buf *Statvfs_t) (err error) {\n\treturn Fstatvfs1(fd, buf, ST_WAIT)\n}\n\nfunc Statvfs(path string, buf *Statvfs_t) (err error) {\n\treturn Statvfs1(path, buf, ST_WAIT)\n}\n\n/*\n * Exposed directly\n */\n//sys\tAccess(path string, mode uint32) (err error)\n//sys\tAdjtime(delta *Timeval, olddelta *Timeval) (err error)\n//sys\tChdir(path string) (err error)\n//sys\tChflags(path string, flags int) (err error)\n//sys\tChmod(path string, mode uint32) (err error)\n//sys\tChown(path string, uid int, gid int) (err error)\n//sys\tChroot(path string) (err error)\n//sys\tClose(fd int) (err error)\n//sys\tDup(fd int) (nfd int, err error)\n//sys\tDup2(from int, to int) (err error)\n//sys\tDup3(from int, to int, flags int) (err error)\n//sys\tExit(code int)\n//sys\tExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error)\n//sys\tExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error)\n//sys\tExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)\n//sys\tExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error)\n//sys\tExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error)\n//sys\tFaccessat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_POSIX_FADVISE\n//sys\tFchdir(fd int) (err error)\n//sys\tFchflags(fd int, flags int) (err error)\n//sys\tFchmod(fd int, mode uint32) (err error)\n//sys\tFchmodat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFchownat(dirfd int, path string, uid int, gid int, flags int) (err error)\n//sys\tFlock(fd int, how int) (err error)\n//sys\tFpathconf(fd int, name int) (val int, err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error)\n//sys\tFstatvfs1(fd int, buf *Statvfs_t, flags int) (err error) = SYS_FSTATVFS1\n//sys\tFsync(fd int) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (uid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetpgid(pid int) (pgid int, err error)\n//sysnb\tGetpgrp() (pgrp int)\n//sysnb\tGetpid() (pid int)\n//sysnb\tGetppid() (ppid int)\n//sys\tGetpriority(which int, who int) (prio int, err error)\n//sysnb\tGetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tGetrusage(who int, rusage *Rusage) (err error)\n//sysnb\tGetsid(pid int) (sid int, err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n//sysnb\tGetuid() (uid int)\n//sys\tIssetugid() (tainted bool)\n//sys\tKill(pid int, signum syscall.Signal) (err error)\n//sys\tKqueue() (fd int, err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tLink(path string, link string) (err error)\n//sys\tLinkat(pathfd int, path string, linkfd int, link string, flags int) (err error)\n//sys\tListen(s int, backlog int) (err error)\n//sys\tLstat(path string, stat *Stat_t) (err error)\n//sys\tMkdir(path string, mode uint32) (err error)\n//sys\tMkdirat(dirfd int, path string, mode uint32) (err error)\n//sys\tMkfifo(path string, mode uint32) (err error)\n//sys\tMkfifoat(dirfd int, path string, mode uint32) (err error)\n//sys\tMknod(path string, mode uint32, dev int) (err error)\n//sys\tMknodat(dirfd int, path string, mode uint32, dev int) (err error)\n//sys\tNanosleep(time *Timespec, leftover *Timespec) (err error)\n//sys\tOpen(path string, mode int, perm uint32) (fd int, err error)\n//sys\tOpenat(dirfd int, path string, mode int, perm uint32) (fd int, err error)\n//sys\tPathconf(path string, name int) (val int, err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error)\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error)\n//sys\tread(fd int, p []byte) (n int, err error)\n//sys\tReadlink(path string, buf []byte) (n int, err error)\n//sys\tReadlinkat(dirfd int, path string, buf []byte) (n int, err error)\n//sys\tRename(from string, to string) (err error)\n//sys\tRenameat(fromfd int, from string, tofd int, to string) (err error)\n//sys\tRevoke(path string) (err error)\n//sys\tRmdir(path string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)\n//sysnb\tSetegid(egid int) (err error)\n//sysnb\tSeteuid(euid int) (err error)\n//sysnb\tSetgid(gid int) (err error)\n//sysnb\tSetpgid(pid int, pgid int) (err error)\n//sys\tSetpriority(which int, who int, prio int) (err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sysnb\tSetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tSetsid() (pid int, err error)\n//sysnb\tSettimeofday(tp *Timeval) (err error)\n//sysnb\tSetuid(uid int) (err error)\n//sys\tStat(path string, stat *Stat_t) (err error)\n//sys\tStatvfs1(path string, buf *Statvfs_t, flags int) (err error) = SYS_STATVFS1\n//sys\tSymlink(path string, link string) (err error)\n//sys\tSymlinkat(oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSync() (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tUmask(newmask int) (oldmask int)\n//sys\tUnlink(path string) (err error)\n//sys\tUnlinkat(dirfd int, path string, flags int) (err error)\n//sys\tUnmount(path string, flags int) (err error)\n//sys\twrite(fd int, p []byte) (n int, err error)\n//sys\tmmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)\n//sys\tmunmap(addr uintptr, length uintptr) (err error)\n//sys\treadlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ\n//sys\twritelen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_WRITE\n//sys\tutimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)\n\n/*\n * Unimplemented\n */\n// ____semctl13\n// __clone\n// __fhopen40\n// __fhstat40\n// __fhstatvfs140\n// __fstat30\n// __getcwd\n// __getfh30\n// __getlogin\n// __lstat30\n// __mount50\n// __msgctl13\n// __msync13\n// __ntp_gettime30\n// __posix_chown\n// __posix_fchown\n// __posix_lchown\n// __posix_rename\n// __setlogin\n// __shmctl13\n// __sigaction_sigtramp\n// __sigaltstack14\n// __sigpending14\n// __sigprocmask14\n// __sigsuspend14\n// __sigtimedwait\n// __stat30\n// __syscall\n// __vfork14\n// _ksem_close\n// _ksem_destroy\n// _ksem_getvalue\n// _ksem_init\n// _ksem_open\n// _ksem_post\n// _ksem_trywait\n// _ksem_unlink\n// _ksem_wait\n// _lwp_continue\n// _lwp_create\n// _lwp_ctl\n// _lwp_detach\n// _lwp_exit\n// _lwp_getname\n// _lwp_getprivate\n// _lwp_kill\n// _lwp_park\n// _lwp_self\n// _lwp_setname\n// _lwp_setprivate\n// _lwp_suspend\n// _lwp_unpark\n// _lwp_unpark_all\n// _lwp_wait\n// _lwp_wakeup\n// _pset_bind\n// _sched_getaffinity\n// _sched_getparam\n// _sched_setaffinity\n// _sched_setparam\n// acct\n// aio_cancel\n// aio_error\n// aio_fsync\n// aio_read\n// aio_return\n// aio_suspend\n// aio_write\n// break\n// clock_getres\n// clock_gettime\n// clock_settime\n// compat_09_ogetdomainname\n// compat_09_osetdomainname\n// compat_09_ouname\n// compat_10_omsgsys\n// compat_10_osemsys\n// compat_10_oshmsys\n// compat_12_fstat12\n// compat_12_getdirentries\n// compat_12_lstat12\n// compat_12_msync\n// compat_12_oreboot\n// compat_12_oswapon\n// compat_12_stat12\n// compat_13_sigaction13\n// compat_13_sigaltstack13\n// compat_13_sigpending13\n// compat_13_sigprocmask13\n// compat_13_sigreturn13\n// compat_13_sigsuspend13\n// compat_14___semctl\n// compat_14_msgctl\n// compat_14_shmctl\n// compat_16___sigaction14\n// compat_16___sigreturn14\n// compat_20_fhstatfs\n// compat_20_fstatfs\n// compat_20_getfsstat\n// compat_20_statfs\n// compat_30___fhstat30\n// compat_30___fstat13\n// compat_30___lstat13\n// compat_30___stat13\n// compat_30_fhopen\n// compat_30_fhstat\n// compat_30_fhstatvfs1\n// compat_30_getdents\n// compat_30_getfh\n// compat_30_ntp_gettime\n// compat_30_socket\n// compat_40_mount\n// compat_43_fstat43\n// compat_43_lstat43\n// compat_43_oaccept\n// compat_43_ocreat\n// compat_43_oftruncate\n// compat_43_ogetdirentries\n// compat_43_ogetdtablesize\n// compat_43_ogethostid\n// compat_43_ogethostname\n// compat_43_ogetkerninfo\n// compat_43_ogetpagesize\n// compat_43_ogetpeername\n// compat_43_ogetrlimit\n// compat_43_ogetsockname\n// compat_43_okillpg\n// compat_43_olseek\n// compat_43_ommap\n// compat_43_oquota\n// compat_43_orecv\n// compat_43_orecvfrom\n// compat_43_orecvmsg\n// compat_43_osend\n// compat_43_osendmsg\n// compat_43_osethostid\n// compat_43_osethostname\n// compat_43_osetrlimit\n// compat_43_osigblock\n// compat_43_osigsetmask\n// compat_43_osigstack\n// compat_43_osigvec\n// compat_43_otruncate\n// compat_43_owait\n// compat_43_stat43\n// execve\n// extattr_delete_fd\n// extattr_delete_file\n// extattr_delete_link\n// extattr_get_fd\n// extattr_get_file\n// extattr_get_link\n// extattr_list_fd\n// extattr_list_file\n// extattr_list_link\n// extattr_set_fd\n// extattr_set_file\n// extattr_set_link\n// extattrctl\n// fchroot\n// fdatasync\n// fgetxattr\n// fktrace\n// flistxattr\n// fork\n// fremovexattr\n// fsetxattr\n// fstatvfs1\n// fsync_range\n// getcontext\n// getitimer\n// getvfsstat\n// getxattr\n// ktrace\n// lchflags\n// lchmod\n// lfs_bmapv\n// lfs_markv\n// lfs_segclean\n// lfs_segwait\n// lgetxattr\n// lio_listio\n// listxattr\n// llistxattr\n// lremovexattr\n// lseek\n// lsetxattr\n// lutimes\n// madvise\n// mincore\n// minherit\n// modctl\n// mq_close\n// mq_getattr\n// mq_notify\n// mq_open\n// mq_receive\n// mq_send\n// mq_setattr\n// mq_timedreceive\n// mq_timedsend\n// mq_unlink\n// mremap\n// msgget\n// msgrcv\n// msgsnd\n// nfssvc\n// ntp_adjtime\n// pmc_control\n// pmc_get_info\n// pollts\n// preadv\n// profil\n// pselect\n// pset_assign\n// pset_create\n// pset_destroy\n// ptrace\n// pwritev\n// quotactl\n// rasctl\n// readv\n// reboot\n// removexattr\n// sa_enable\n// sa_preempt\n// sa_register\n// sa_setconcurrency\n// sa_stacks\n// sa_yield\n// sbrk\n// sched_yield\n// semconfig\n// semget\n// semop\n// setcontext\n// setitimer\n// setxattr\n// shmat\n// shmdt\n// shmget\n// sstk\n// statvfs1\n// swapctl\n// sysarch\n// syscall\n// timer_create\n// timer_delete\n// timer_getoverrun\n// timer_gettime\n// timer_settime\n// undelete\n// utrace\n// uuidgen\n// vadvise\n// vfork\n// writev\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_netbsd_386.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build 386,netbsd\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint32(fd)\n\tk.Filter = uint32(mode)\n\tk.Flags = uint32(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build amd64,netbsd\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = uint32(mode)\n\tk.Flags = uint32(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm,netbsd\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint32(fd)\n\tk.Filter = uint32(mode)\n\tk.Flags = uint32(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm64,netbsd\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = uint32(mode)\n\tk.Flags = uint32(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_openbsd.go",
    "content": "// Copyright 2009,2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// OpenBSD system calls.\n// This file is compiled as ordinary Go code,\n// but it is also input to mksyscall,\n// which parses the //sys lines and generates system call stubs.\n// Note that sometimes we use a lowercase //sys name and wrap\n// it in our own nicer implementation, either here or in\n// syscall_bsd.go or syscall_unix.go.\n\npackage unix\n\nimport (\n\t\"sort\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.\ntype SockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [24]int8\n\traw    RawSockaddrDatalink\n}\n\nfunc Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\nfunc nametomib(name string) (mib []_C_int, err error) {\n\ti := sort.Search(len(sysctlMib), func(i int) bool {\n\t\treturn sysctlMib[i].ctlname >= name\n\t})\n\tif i < len(sysctlMib) && sysctlMib[i].ctlname == name {\n\t\treturn sysctlMib[i].ctloid, nil\n\t}\n\treturn nil, EINVAL\n}\n\nfunc direntIno(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Fileno), unsafe.Sizeof(Dirent{}.Fileno))\n}\n\nfunc direntReclen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))\n}\n\nfunc direntNamlen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Namlen), unsafe.Sizeof(Dirent{}.Namlen))\n}\n\nfunc SysctlUvmexp(name string) (*Uvmexp, error) {\n\tmib, err := sysctlmib(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tn := uintptr(SizeofUvmexp)\n\tvar u Uvmexp\n\tif err := sysctl(mib, (*byte)(unsafe.Pointer(&u)), &n, nil, 0); err != nil {\n\t\treturn nil, err\n\t}\n\tif n != SizeofUvmexp {\n\t\treturn nil, EIO\n\t}\n\treturn &u, nil\n}\n\nfunc Pipe(p []int) (err error) {\n\treturn Pipe2(p, 0)\n}\n\n//sysnb\tpipe2(p *[2]_C_int, flags int) (err error)\nfunc Pipe2(p []int, flags int) error {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr := pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn err\n}\n\n//sys Getdents(fd int, buf []byte) (n int, err error)\nfunc Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\tn, err = Getdents(fd, buf)\n\tif err != nil || basep == nil {\n\t\treturn\n\t}\n\n\tvar off int64\n\toff, err = Seek(fd, 0, 1 /* SEEK_CUR */)\n\tif err != nil {\n\t\t*basep = ^uintptr(0)\n\t\treturn\n\t}\n\t*basep = uintptr(off)\n\tif unsafe.Sizeof(*basep) == 8 {\n\t\treturn\n\t}\n\tif off>>32 != 0 {\n\t\t// We can't stuff the offset back into a uintptr, so any\n\t\t// future calls would be suspect. Generate an error.\n\t\t// EIO was allowed by getdirentries.\n\t\terr = EIO\n\t}\n\treturn\n}\n\n//sys\tGetcwd(buf []byte) (n int, err error) = SYS___GETCWD\n\nfunc Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\treturn sendfile(outfd, infd, offset, count)\n}\n\n// TODO\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\treturn -1, ENOSYS\n}\n\nfunc Getfsstat(buf []Statfs_t, flags int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tvar bufsize uintptr\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t\tbufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))\n\t}\n\tr0, _, e1 := Syscall(SYS_GETFSSTAT, uintptr(_p0), bufsize, uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nfunc setattrlistTimes(path string, times []Timespec, flags int) error {\n\t// used on Darwin for UtimesNano\n\treturn ENOSYS\n}\n\n//sys\tioctl(fd int, req uint, arg uintptr) (err error)\n\n//sys   sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS___SYSCTL\n\n//sys\tppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error)\n\nfunc Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn ppoll(nil, 0, timeout, sigmask)\n\t}\n\treturn ppoll(&fds[0], len(fds), timeout, sigmask)\n}\n\nfunc Uname(uname *Utsname) error {\n\tmib := []_C_int{CTL_KERN, KERN_OSTYPE}\n\tn := unsafe.Sizeof(uname.Sysname)\n\tif err := sysctl(mib, &uname.Sysname[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_HOSTNAME}\n\tn = unsafe.Sizeof(uname.Nodename)\n\tif err := sysctl(mib, &uname.Nodename[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_OSRELEASE}\n\tn = unsafe.Sizeof(uname.Release)\n\tif err := sysctl(mib, &uname.Release[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\tmib = []_C_int{CTL_KERN, KERN_VERSION}\n\tn = unsafe.Sizeof(uname.Version)\n\tif err := sysctl(mib, &uname.Version[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\t// The version might have newlines or tabs in it, convert them to\n\t// spaces.\n\tfor i, b := range uname.Version {\n\t\tif b == '\\n' || b == '\\t' {\n\t\t\tif i == len(uname.Version)-1 {\n\t\t\t\tuname.Version[i] = 0\n\t\t\t} else {\n\t\t\t\tuname.Version[i] = ' '\n\t\t\t}\n\t\t}\n\t}\n\n\tmib = []_C_int{CTL_HW, HW_MACHINE}\n\tn = unsafe.Sizeof(uname.Machine)\n\tif err := sysctl(mib, &uname.Machine[0], &n, nil, 0); err != nil {\n\t\treturn err\n\t}\n\n\treturn nil\n}\n\n/*\n * Exposed directly\n */\n//sys\tAccess(path string, mode uint32) (err error)\n//sys\tAdjtime(delta *Timeval, olddelta *Timeval) (err error)\n//sys\tChdir(path string) (err error)\n//sys\tChflags(path string, flags int) (err error)\n//sys\tChmod(path string, mode uint32) (err error)\n//sys\tChown(path string, uid int, gid int) (err error)\n//sys\tChroot(path string) (err error)\n//sys\tClose(fd int) (err error)\n//sys\tDup(fd int) (nfd int, err error)\n//sys\tDup2(from int, to int) (err error)\n//sys\tDup3(from int, to int, flags int) (err error)\n//sys\tExit(code int)\n//sys\tFaccessat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchdir(fd int) (err error)\n//sys\tFchflags(fd int, flags int) (err error)\n//sys\tFchmod(fd int, mode uint32) (err error)\n//sys\tFchmodat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFchownat(dirfd int, path string, uid int, gid int, flags int) (err error)\n//sys\tFlock(fd int, how int) (err error)\n//sys\tFpathconf(fd int, name int) (val int, err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error)\n//sys\tFstatfs(fd int, stat *Statfs_t) (err error)\n//sys\tFsync(fd int) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sysnb\tGetegid() (egid int)\n//sysnb\tGeteuid() (uid int)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetpgid(pid int) (pgid int, err error)\n//sysnb\tGetpgrp() (pgrp int)\n//sysnb\tGetpid() (pid int)\n//sysnb\tGetppid() (ppid int)\n//sys\tGetpriority(which int, who int) (prio int, err error)\n//sysnb\tGetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tGetrtable() (rtable int, err error)\n//sysnb\tGetrusage(who int, rusage *Rusage) (err error)\n//sysnb\tGetsid(pid int) (sid int, err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n//sysnb\tGetuid() (uid int)\n//sys\tIssetugid() (tainted bool)\n//sys\tKill(pid int, signum syscall.Signal) (err error)\n//sys\tKqueue() (fd int, err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tLink(path string, link string) (err error)\n//sys\tLinkat(pathfd int, path string, linkfd int, link string, flags int) (err error)\n//sys\tListen(s int, backlog int) (err error)\n//sys\tLstat(path string, stat *Stat_t) (err error)\n//sys\tMkdir(path string, mode uint32) (err error)\n//sys\tMkdirat(dirfd int, path string, mode uint32) (err error)\n//sys\tMkfifo(path string, mode uint32) (err error)\n//sys\tMkfifoat(dirfd int, path string, mode uint32) (err error)\n//sys\tMknod(path string, mode uint32, dev int) (err error)\n//sys\tMknodat(dirfd int, path string, mode uint32, dev int) (err error)\n//sys\tNanosleep(time *Timespec, leftover *Timespec) (err error)\n//sys\tOpen(path string, mode int, perm uint32) (fd int, err error)\n//sys\tOpenat(dirfd int, path string, mode int, perm uint32) (fd int, err error)\n//sys\tPathconf(path string, name int) (val int, err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error)\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error)\n//sys\tread(fd int, p []byte) (n int, err error)\n//sys\tReadlink(path string, buf []byte) (n int, err error)\n//sys\tReadlinkat(dirfd int, path string, buf []byte) (n int, err error)\n//sys\tRename(from string, to string) (err error)\n//sys\tRenameat(fromfd int, from string, tofd int, to string) (err error)\n//sys\tRevoke(path string) (err error)\n//sys\tRmdir(path string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)\n//sysnb\tSetegid(egid int) (err error)\n//sysnb\tSeteuid(euid int) (err error)\n//sysnb\tSetgid(gid int) (err error)\n//sys\tSetlogin(name string) (err error)\n//sysnb\tSetpgid(pid int, pgid int) (err error)\n//sys\tSetpriority(which int, who int, prio int) (err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sysnb\tSetresgid(rgid int, egid int, sgid int) (err error)\n//sysnb\tSetresuid(ruid int, euid int, suid int) (err error)\n//sysnb\tSetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tSetrtable(rtable int) (err error)\n//sysnb\tSetsid() (pid int, err error)\n//sysnb\tSettimeofday(tp *Timeval) (err error)\n//sysnb\tSetuid(uid int) (err error)\n//sys\tStat(path string, stat *Stat_t) (err error)\n//sys\tStatfs(path string, stat *Statfs_t) (err error)\n//sys\tSymlink(path string, link string) (err error)\n//sys\tSymlinkat(oldpath string, newdirfd int, newpath string) (err error)\n//sys\tSync() (err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tUmask(newmask int) (oldmask int)\n//sys\tUnlink(path string) (err error)\n//sys\tUnlinkat(dirfd int, path string, flags int) (err error)\n//sys\tUnmount(path string, flags int) (err error)\n//sys\twrite(fd int, p []byte) (n int, err error)\n//sys\tmmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)\n//sys\tmunmap(addr uintptr, length uintptr) (err error)\n//sys\treadlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ\n//sys\twritelen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_WRITE\n//sys\tutimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)\n\n/*\n * Unimplemented\n */\n// __getcwd\n// __semctl\n// __syscall\n// __sysctl\n// adjfreq\n// break\n// clock_getres\n// clock_gettime\n// clock_settime\n// closefrom\n// execve\n// fhopen\n// fhstat\n// fhstatfs\n// fork\n// futimens\n// getfh\n// getgid\n// getitimer\n// getlogin\n// getresgid\n// getresuid\n// getthrid\n// ktrace\n// lfs_bmapv\n// lfs_markv\n// lfs_segclean\n// lfs_segwait\n// mincore\n// minherit\n// mount\n// mquery\n// msgctl\n// msgget\n// msgrcv\n// msgsnd\n// nfssvc\n// nnpfspioctl\n// preadv\n// profil\n// pwritev\n// quotactl\n// readv\n// reboot\n// renameat\n// rfork\n// sched_yield\n// semget\n// semop\n// setgroups\n// setitimer\n// setsockopt\n// shmat\n// shmctl\n// shmdt\n// shmget\n// sigaction\n// sigaltstack\n// sigpending\n// sigprocmask\n// sigreturn\n// sigsuspend\n// sysarch\n// syscall\n// threxit\n// thrsigdivert\n// thrsleep\n// thrwakeup\n// vfork\n// writev\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_openbsd_386.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build 386,openbsd\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint32(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\n// SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions\n// of openbsd/386 the syscall is called sysctl instead of __sysctl.\nconst SYS___SYSCTL = SYS_SYSCTL\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build amd64,openbsd\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\n// SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions\n// of openbsd/amd64 the syscall is called sysctl instead of __sysctl.\nconst SYS___SYSCTL = SYS_SYSCTL\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm,openbsd\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: int32(nsec)}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: int32(usec)}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint32(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\n// SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions\n// of openbsd/arm the syscall is called sysctl instead of __sysctl.\nconst SYS___SYSCTL = SYS_SYSCTL\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build arm64,openbsd\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = uint32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\n// SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions\n// of openbsd/amd64 the syscall is called sysctl instead of __sysctl.\nconst SYS___SYSCTL = SYS_SYSCTL\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\n// SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions\n// of OpenBSD the syscall is called sysctl instead of __sysctl.\nconst SYS___SYSCTL = SYS_SYSCTL\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_solaris.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Solaris system calls.\n// This file is compiled as ordinary Go code,\n// but it is also input to mksyscall,\n// which parses the //sys lines and generates system call stubs.\n// Note that sometimes we use a lowercase //sys name and wrap\n// it in our own nicer implementation, either here or in\n// syscall_solaris.go or syscall_unix.go.\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// Implemented in runtime/syscall_solaris.go.\ntype syscallFunc uintptr\n\nfunc rawSysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)\nfunc sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\n// SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.\ntype SockaddrDatalink struct {\n\tFamily uint16\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [244]int8\n\traw    RawSockaddrDatalink\n}\n\nfunc direntIno(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Ino), unsafe.Sizeof(Dirent{}.Ino))\n}\n\nfunc direntReclen(buf []byte) (uint64, bool) {\n\treturn readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))\n}\n\nfunc direntNamlen(buf []byte) (uint64, bool) {\n\treclen, ok := direntReclen(buf)\n\tif !ok {\n\t\treturn 0, false\n\t}\n\treturn reclen - uint64(unsafe.Offsetof(Dirent{}.Name)), true\n}\n\n//sysnb\tpipe(p *[2]_C_int) (n int, err error)\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\tn, err := pipe(&pp)\n\tif n != 0 {\n\t\treturn err\n\t}\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn nil\n}\n\nfunc (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_INET\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrInet4, nil\n}\n\nfunc (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_INET6\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tsa.raw.Scope_id = sa.ZoneId\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), SizeofSockaddrInet6, nil\n}\n\nfunc (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {\n\tname := sa.Name\n\tn := len(name)\n\tif n >= len(sa.raw.Path) {\n\t\treturn nil, 0, EINVAL\n\t}\n\tsa.raw.Family = AF_UNIX\n\tfor i := 0; i < n; i++ {\n\t\tsa.raw.Path[i] = int8(name[i])\n\t}\n\t// length is family (uint16), name, NUL.\n\tsl := _Socklen(2)\n\tif n > 0 {\n\t\tsl += _Socklen(n) + 1\n\t}\n\tif sa.raw.Path[0] == '@' {\n\t\tsa.raw.Path[0] = 0\n\t\t// Don't count trailing NUL for abstract address.\n\t\tsl--\n\t}\n\n\treturn unsafe.Pointer(&sa.raw), sl, nil\n}\n\n//sys\tgetsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) = libsocket.getsockname\n\nfunc Getsockname(fd int) (sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tif err = getsockname(fd, &rsa, &len); err != nil {\n\t\treturn\n\t}\n\treturn anyToSockaddr(fd, &rsa)\n}\n\n// GetsockoptString returns the string value of the socket option opt for the\n// socket associated with fd at the given socket level.\nfunc GetsockoptString(fd, level, opt int) (string, error) {\n\tbuf := make([]byte, 256)\n\tvallen := _Socklen(len(buf))\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&buf[0]), &vallen)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn string(buf[:vallen-1]), nil\n}\n\nconst ImplementsGetwd = true\n\n//sys\tGetcwd(buf []byte) (n int, err error)\n\nfunc Getwd() (wd string, err error) {\n\tvar buf [PathMax]byte\n\t// Getcwd will return an error if it failed for any reason.\n\t_, err = Getcwd(buf[0:])\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tn := clen(buf[:])\n\tif n < 1 {\n\t\treturn \"\", EINVAL\n\t}\n\treturn string(buf[:n]), nil\n}\n\n/*\n * Wrapped\n */\n\n//sysnb\tgetgroups(ngid int, gid *_Gid_t) (n int, err error)\n//sysnb\tsetgroups(ngid int, gid *_Gid_t) (err error)\n\nfunc Getgroups() (gids []int, err error) {\n\tn, err := getgroups(0, nil)\n\t// Check for error and sanity check group count. Newer versions of\n\t// Solaris allow up to 1024 (NGROUPS_MAX).\n\tif n < 0 || n > 1024 {\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\treturn nil, EINVAL\n\t} else if n == 0 {\n\t\treturn nil, nil\n\t}\n\n\ta := make([]_Gid_t, n)\n\tn, err = getgroups(n, &a[0])\n\tif n == -1 {\n\t\treturn nil, err\n\t}\n\tgids = make([]int, n)\n\tfor i, v := range a[0:n] {\n\t\tgids[i] = int(v)\n\t}\n\treturn\n}\n\nfunc Setgroups(gids []int) (err error) {\n\tif len(gids) == 0 {\n\t\treturn setgroups(0, nil)\n\t}\n\n\ta := make([]_Gid_t, len(gids))\n\tfor i, v := range gids {\n\t\ta[i] = _Gid_t(v)\n\t}\n\treturn setgroups(len(a), &a[0])\n}\n\n// ReadDirent reads directory entries from fd and writes them into buf.\nfunc ReadDirent(fd int, buf []byte) (n int, err error) {\n\t// Final argument is (basep *uintptr) and the syscall doesn't take nil.\n\t// TODO(rsc): Can we use a single global basep for all calls?\n\treturn Getdents(fd, buf, new(uintptr))\n}\n\n// Wait status is 7 bits at bottom, either 0 (exited),\n// 0x7F (stopped), or a signal number that caused an exit.\n// The 0x80 bit is whether there was a core dump.\n// An extra number (exit code, signal causing a stop)\n// is in the high bits.\n\ntype WaitStatus uint32\n\nconst (\n\tmask  = 0x7F\n\tcore  = 0x80\n\tshift = 8\n\n\texited  = 0\n\tstopped = 0x7F\n)\n\nfunc (w WaitStatus) Exited() bool { return w&mask == exited }\n\nfunc (w WaitStatus) ExitStatus() int {\n\tif w&mask != exited {\n\t\treturn -1\n\t}\n\treturn int(w >> shift)\n}\n\nfunc (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }\n\nfunc (w WaitStatus) Signal() syscall.Signal {\n\tsig := syscall.Signal(w & mask)\n\tif sig == stopped || sig == 0 {\n\t\treturn -1\n\t}\n\treturn sig\n}\n\nfunc (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }\n\nfunc (w WaitStatus) Stopped() bool { return w&mask == stopped && syscall.Signal(w>>shift) != SIGSTOP }\n\nfunc (w WaitStatus) Continued() bool { return w&mask == stopped && syscall.Signal(w>>shift) == SIGSTOP }\n\nfunc (w WaitStatus) StopSignal() syscall.Signal {\n\tif !w.Stopped() {\n\t\treturn -1\n\t}\n\treturn syscall.Signal(w>>shift) & 0xFF\n}\n\nfunc (w WaitStatus) TrapCause() int { return -1 }\n\n//sys\twait4(pid int32, statusp *_C_int, options int, rusage *Rusage) (wpid int32, err error)\n\nfunc Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (int, error) {\n\tvar status _C_int\n\trpid, err := wait4(int32(pid), &status, options, rusage)\n\twpid := int(rpid)\n\tif wpid == -1 {\n\t\treturn wpid, err\n\t}\n\tif wstatus != nil {\n\t\t*wstatus = WaitStatus(status)\n\t}\n\treturn wpid, nil\n}\n\n//sys\tgethostname(buf []byte) (n int, err error)\n\nfunc Gethostname() (name string, err error) {\n\tvar buf [MaxHostNameLen]byte\n\tn, err := gethostname(buf[:])\n\tif n != 0 {\n\t\treturn \"\", err\n\t}\n\tn = clen(buf[:])\n\tif n < 1 {\n\t\treturn \"\", EFAULT\n\t}\n\treturn string(buf[:n]), nil\n}\n\n//sys\tutimes(path string, times *[2]Timeval) (err error)\n\nfunc Utimes(path string, tv []Timeval) (err error) {\n\tif tv == nil {\n\t\treturn utimes(path, nil)\n\t}\n\tif len(tv) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\n//sys\tutimensat(fd int, path string, times *[2]Timespec, flag int) (err error)\n\nfunc UtimesNano(path string, ts []Timespec) error {\n\tif ts == nil {\n\t\treturn utimensat(AT_FDCWD, path, nil, 0)\n\t}\n\tif len(ts) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)\n}\n\nfunc UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {\n\tif ts == nil {\n\t\treturn utimensat(dirfd, path, nil, flags)\n\t}\n\tif len(ts) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), flags)\n}\n\n//sys\tfcntl(fd int, cmd int, arg int) (val int, err error)\n\n// FcntlInt performs a fcntl syscall on fd with the provided command and argument.\nfunc FcntlInt(fd uintptr, cmd, arg int) (int, error) {\n\tvalptr, _, errno := sysvicall6(uintptr(unsafe.Pointer(&procfcntl)), 3, uintptr(fd), uintptr(cmd), uintptr(arg), 0, 0, 0)\n\tvar err error\n\tif errno != 0 {\n\t\terr = errno\n\t}\n\treturn int(valptr), err\n}\n\n// FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.\nfunc FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procfcntl)), 3, uintptr(fd), uintptr(cmd), uintptr(unsafe.Pointer(lk)), 0, 0, 0)\n\tif e1 != 0 {\n\t\treturn e1\n\t}\n\treturn nil\n}\n\n//sys\tfutimesat(fildes int, path *byte, times *[2]Timeval) (err error)\n\nfunc Futimesat(dirfd int, path string, tv []Timeval) error {\n\tpathp, err := BytePtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif tv == nil {\n\t\treturn futimesat(dirfd, pathp, nil)\n\t}\n\tif len(tv) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn futimesat(dirfd, pathp, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\n// Solaris doesn't have an futimes function because it allows NULL to be\n// specified as the path for futimesat. However, Go doesn't like\n// NULL-style string interfaces, so this simple wrapper is provided.\nfunc Futimes(fd int, tv []Timeval) error {\n\tif tv == nil {\n\t\treturn futimesat(fd, nil, nil)\n\t}\n\tif len(tv) != 2 {\n\t\treturn EINVAL\n\t}\n\treturn futimesat(fd, nil, (*[2]Timeval)(unsafe.Pointer(&tv[0])))\n}\n\nfunc anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {\n\tswitch rsa.Addr.Family {\n\tcase AF_UNIX:\n\t\tpp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrUnix)\n\t\t// Assume path ends at NUL.\n\t\t// This is not technically the Solaris semantics for\n\t\t// abstract Unix domain sockets -- they are supposed\n\t\t// to be uninterpreted fixed-size binary blobs -- but\n\t\t// everyone uses this convention.\n\t\tn := 0\n\t\tfor n < len(pp.Path) && pp.Path[n] != 0 {\n\t\t\tn++\n\t\t}\n\t\tbytes := (*[len(pp.Path)]byte)(unsafe.Pointer(&pp.Path[0]))[0:n]\n\t\tsa.Name = string(bytes)\n\t\treturn sa, nil\n\n\tcase AF_INET:\n\t\tpp := (*RawSockaddrInet4)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrInet4)\n\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t}\n\t\treturn sa, nil\n\n\tcase AF_INET6:\n\t\tpp := (*RawSockaddrInet6)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrInet6)\n\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\tsa.ZoneId = pp.Scope_id\n\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t}\n\t\treturn sa, nil\n\t}\n\treturn nil, EAFNOSUPPORT\n}\n\n//sys\taccept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) = libsocket.accept\n\nfunc Accept(fd int) (nfd int, sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tnfd, err = accept(fd, &rsa, &len)\n\tif nfd == -1 {\n\t\treturn\n\t}\n\tsa, err = anyToSockaddr(fd, &rsa)\n\tif err != nil {\n\t\tClose(nfd)\n\t\tnfd = 0\n\t}\n\treturn\n}\n\n//sys\trecvmsg(s int, msg *Msghdr, flags int) (n int, err error) = libsocket.__xnet_recvmsg\n\nfunc Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {\n\tvar msg Msghdr\n\tvar rsa RawSockaddrAny\n\tmsg.Name = (*byte)(unsafe.Pointer(&rsa))\n\tmsg.Namelen = uint32(SizeofSockaddrAny)\n\tvar iov Iovec\n\tif len(p) > 0 {\n\t\tiov.Base = (*int8)(unsafe.Pointer(&p[0]))\n\t\tiov.SetLen(len(p))\n\t}\n\tvar dummy int8\n\tif len(oob) > 0 {\n\t\t// receive at least one normal byte\n\t\tif len(p) == 0 {\n\t\t\tiov.Base = &dummy\n\t\t\tiov.SetLen(1)\n\t\t}\n\t\tmsg.Accrightslen = int32(len(oob))\n\t}\n\tmsg.Iov = &iov\n\tmsg.Iovlen = 1\n\tif n, err = recvmsg(fd, &msg, flags); n == -1 {\n\t\treturn\n\t}\n\toobn = int(msg.Accrightslen)\n\t// source address is only specified if the socket is unconnected\n\tif rsa.Addr.Family != AF_UNSPEC {\n\t\tfrom, err = anyToSockaddr(fd, &rsa)\n\t}\n\treturn\n}\n\nfunc Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) {\n\t_, err = SendmsgN(fd, p, oob, to, flags)\n\treturn\n}\n\n//sys\tsendmsg(s int, msg *Msghdr, flags int) (n int, err error) = libsocket.__xnet_sendmsg\n\nfunc SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err error) {\n\tvar ptr unsafe.Pointer\n\tvar salen _Socklen\n\tif to != nil {\n\t\tptr, salen, err = to.sockaddr()\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t}\n\tvar msg Msghdr\n\tmsg.Name = (*byte)(unsafe.Pointer(ptr))\n\tmsg.Namelen = uint32(salen)\n\tvar iov Iovec\n\tif len(p) > 0 {\n\t\tiov.Base = (*int8)(unsafe.Pointer(&p[0]))\n\t\tiov.SetLen(len(p))\n\t}\n\tvar dummy int8\n\tif len(oob) > 0 {\n\t\t// send at least one normal byte\n\t\tif len(p) == 0 {\n\t\t\tiov.Base = &dummy\n\t\t\tiov.SetLen(1)\n\t\t}\n\t\tmsg.Accrightslen = int32(len(oob))\n\t}\n\tmsg.Iov = &iov\n\tmsg.Iovlen = 1\n\tif n, err = sendmsg(fd, &msg, flags); err != nil {\n\t\treturn 0, err\n\t}\n\tif len(oob) > 0 && len(p) == 0 {\n\t\tn = 0\n\t}\n\treturn n, nil\n}\n\n//sys\tacct(path *byte) (err error)\n\nfunc Acct(path string) (err error) {\n\tif len(path) == 0 {\n\t\t// Assume caller wants to disable accounting.\n\t\treturn acct(nil)\n\t}\n\n\tpathp, err := BytePtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn acct(pathp)\n}\n\n//sys\t__makedev(version int, major uint, minor uint) (val uint64)\n\nfunc Mkdev(major, minor uint32) uint64 {\n\treturn __makedev(NEWDEV, uint(major), uint(minor))\n}\n\n//sys\t__major(version int, dev uint64) (val uint)\n\nfunc Major(dev uint64) uint32 {\n\treturn uint32(__major(NEWDEV, dev))\n}\n\n//sys\t__minor(version int, dev uint64) (val uint)\n\nfunc Minor(dev uint64) uint32 {\n\treturn uint32(__minor(NEWDEV, dev))\n}\n\n/*\n * Expose the ioctl function\n */\n\n//sys\tioctl(fd int, req uint, arg uintptr) (err error)\n\nfunc IoctlSetTermio(fd int, req uint, value *Termio) (err error) {\n\treturn ioctl(fd, req, uintptr(unsafe.Pointer(value)))\n}\n\nfunc IoctlGetTermio(fd int, req uint) (*Termio, error) {\n\tvar value Termio\n\terr := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))\n\treturn &value, err\n}\n\n//sys   poll(fds *PollFd, nfds int, timeout int) (n int, err error)\n\nfunc Poll(fds []PollFd, timeout int) (n int, err error) {\n\tif len(fds) == 0 {\n\t\treturn poll(nil, 0, timeout)\n\t}\n\treturn poll(&fds[0], len(fds), timeout)\n}\n\nfunc Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\treturn sendfile(outfd, infd, offset, count)\n}\n\n/*\n * Exposed directly\n */\n//sys\tAccess(path string, mode uint32) (err error)\n//sys\tAdjtime(delta *Timeval, olddelta *Timeval) (err error)\n//sys\tChdir(path string) (err error)\n//sys\tChmod(path string, mode uint32) (err error)\n//sys\tChown(path string, uid int, gid int) (err error)\n//sys\tChroot(path string) (err error)\n//sys\tClose(fd int) (err error)\n//sys\tCreat(path string, mode uint32) (fd int, err error)\n//sys\tDup(fd int) (nfd int, err error)\n//sys\tDup2(oldfd int, newfd int) (err error)\n//sys\tExit(code int)\n//sys\tFaccessat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchdir(fd int) (err error)\n//sys\tFchmod(fd int, mode uint32) (err error)\n//sys\tFchmodat(dirfd int, path string, mode uint32, flags int) (err error)\n//sys\tFchown(fd int, uid int, gid int) (err error)\n//sys\tFchownat(dirfd int, path string, uid int, gid int, flags int) (err error)\n//sys\tFdatasync(fd int) (err error)\n//sys\tFlock(fd int, how int) (err error)\n//sys\tFpathconf(fd int, name int) (val int, err error)\n//sys\tFstat(fd int, stat *Stat_t) (err error)\n//sys\tFstatat(fd int, path string, stat *Stat_t, flags int) (err error)\n//sys\tFstatvfs(fd int, vfsstat *Statvfs_t) (err error)\n//sys\tGetdents(fd int, buf []byte, basep *uintptr) (n int, err error)\n//sysnb\tGetgid() (gid int)\n//sysnb\tGetpid() (pid int)\n//sysnb\tGetpgid(pid int) (pgid int, err error)\n//sysnb\tGetpgrp() (pgid int, err error)\n//sys\tGeteuid() (euid int)\n//sys\tGetegid() (egid int)\n//sys\tGetppid() (ppid int)\n//sys\tGetpriority(which int, who int) (n int, err error)\n//sysnb\tGetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tGetrusage(who int, rusage *Rusage) (err error)\n//sysnb\tGettimeofday(tv *Timeval) (err error)\n//sysnb\tGetuid() (uid int)\n//sys\tKill(pid int, signum syscall.Signal) (err error)\n//sys\tLchown(path string, uid int, gid int) (err error)\n//sys\tLink(path string, link string) (err error)\n//sys\tListen(s int, backlog int) (err error) = libsocket.__xnet_llisten\n//sys\tLstat(path string, stat *Stat_t) (err error)\n//sys\tMadvise(b []byte, advice int) (err error)\n//sys\tMkdir(path string, mode uint32) (err error)\n//sys\tMkdirat(dirfd int, path string, mode uint32) (err error)\n//sys\tMkfifo(path string, mode uint32) (err error)\n//sys\tMkfifoat(dirfd int, path string, mode uint32) (err error)\n//sys\tMknod(path string, mode uint32, dev int) (err error)\n//sys\tMknodat(dirfd int, path string, mode uint32, dev int) (err error)\n//sys\tMlock(b []byte) (err error)\n//sys\tMlockall(flags int) (err error)\n//sys\tMprotect(b []byte, prot int) (err error)\n//sys\tMsync(b []byte, flags int) (err error)\n//sys\tMunlock(b []byte) (err error)\n//sys\tMunlockall() (err error)\n//sys\tNanosleep(time *Timespec, leftover *Timespec) (err error)\n//sys\tOpen(path string, mode int, perm uint32) (fd int, err error)\n//sys\tOpenat(dirfd int, path string, flags int, mode uint32) (fd int, err error)\n//sys\tPathconf(path string, name int) (val int, err error)\n//sys\tPause() (err error)\n//sys\tPread(fd int, p []byte, offset int64) (n int, err error)\n//sys\tPwrite(fd int, p []byte, offset int64) (n int, err error)\n//sys\tread(fd int, p []byte) (n int, err error)\n//sys\tReadlink(path string, buf []byte) (n int, err error)\n//sys\tRename(from string, to string) (err error)\n//sys\tRenameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)\n//sys\tRmdir(path string) (err error)\n//sys\tSeek(fd int, offset int64, whence int) (newoffset int64, err error) = lseek\n//sys\tSelect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)\n//sysnb\tSetegid(egid int) (err error)\n//sysnb\tSeteuid(euid int) (err error)\n//sysnb\tSetgid(gid int) (err error)\n//sys\tSethostname(p []byte) (err error)\n//sysnb\tSetpgid(pid int, pgid int) (err error)\n//sys\tSetpriority(which int, who int, prio int) (err error)\n//sysnb\tSetregid(rgid int, egid int) (err error)\n//sysnb\tSetreuid(ruid int, euid int) (err error)\n//sysnb\tSetrlimit(which int, lim *Rlimit) (err error)\n//sysnb\tSetsid() (pid int, err error)\n//sysnb\tSetuid(uid int) (err error)\n//sys\tShutdown(s int, how int) (err error) = libsocket.shutdown\n//sys\tStat(path string, stat *Stat_t) (err error)\n//sys\tStatvfs(path string, vfsstat *Statvfs_t) (err error)\n//sys\tSymlink(path string, link string) (err error)\n//sys\tSync() (err error)\n//sysnb\tTimes(tms *Tms) (ticks uintptr, err error)\n//sys\tTruncate(path string, length int64) (err error)\n//sys\tFsync(fd int) (err error)\n//sys\tFtruncate(fd int, length int64) (err error)\n//sys\tUmask(mask int) (oldmask int)\n//sysnb\tUname(buf *Utsname) (err error)\n//sys\tUnmount(target string, flags int) (err error) = libc.umount\n//sys\tUnlink(path string) (err error)\n//sys\tUnlinkat(dirfd int, path string, flags int) (err error)\n//sys\tUstat(dev int, ubuf *Ustat_t) (err error)\n//sys\tUtime(path string, buf *Utimbuf) (err error)\n//sys\tbind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) = libsocket.__xnet_bind\n//sys\tconnect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) = libsocket.__xnet_connect\n//sys\tmmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)\n//sys\tmunmap(addr uintptr, length uintptr) (err error)\n//sys\tsendfile(outfd int, infd int, offset *int64, count int) (written int, err error) = libsendfile.sendfile\n//sys\tsendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) = libsocket.__xnet_sendto\n//sys\tsocket(domain int, typ int, proto int) (fd int, err error) = libsocket.__xnet_socket\n//sysnb\tsocketpair(domain int, typ int, proto int, fd *[2]int32) (err error) = libsocket.__xnet_socketpair\n//sys\twrite(fd int, p []byte) (n int, err error)\n//sys\tgetsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) = libsocket.__xnet_getsockopt\n//sysnb\tgetpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) = libsocket.getpeername\n//sys\tsetsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) = libsocket.setsockopt\n//sys\trecvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) = libsocket.recvfrom\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procread)), 3, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procwrite)), 3, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nvar mapper = &mmapper{\n\tactive: make(map[*byte][]byte),\n\tmmap:   mmap,\n\tmunmap: munmap,\n}\n\nfunc Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error) {\n\treturn mapper.Mmap(fd, offset, length, prot, flags)\n}\n\nfunc Munmap(b []byte) (err error) {\n\treturn mapper.Munmap(b)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build amd64,solaris\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_unix.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\npackage unix\n\nimport (\n\t\"bytes\"\n\t\"sort\"\n\t\"sync\"\n\t\"syscall\"\n\t\"unsafe\"\n\n\t\"golang.org/x/sys/internal/unsafeheader\"\n)\n\nvar (\n\tStdin  = 0\n\tStdout = 1\n\tStderr = 2\n)\n\n// Do the interface allocations only once for common\n// Errno values.\nvar (\n\terrEAGAIN error = syscall.EAGAIN\n\terrEINVAL error = syscall.EINVAL\n\terrENOENT error = syscall.ENOENT\n)\n\nvar (\n\tsignalNameMapOnce sync.Once\n\tsignalNameMap     map[string]syscall.Signal\n)\n\n// errnoErr returns common boxed Errno values, to prevent\n// allocations at runtime.\nfunc errnoErr(e syscall.Errno) error {\n\tswitch e {\n\tcase 0:\n\t\treturn nil\n\tcase EAGAIN:\n\t\treturn errEAGAIN\n\tcase EINVAL:\n\t\treturn errEINVAL\n\tcase ENOENT:\n\t\treturn errENOENT\n\t}\n\treturn e\n}\n\n// ErrnoName returns the error name for error number e.\nfunc ErrnoName(e syscall.Errno) string {\n\ti := sort.Search(len(errorList), func(i int) bool {\n\t\treturn errorList[i].num >= e\n\t})\n\tif i < len(errorList) && errorList[i].num == e {\n\t\treturn errorList[i].name\n\t}\n\treturn \"\"\n}\n\n// SignalName returns the signal name for signal number s.\nfunc SignalName(s syscall.Signal) string {\n\ti := sort.Search(len(signalList), func(i int) bool {\n\t\treturn signalList[i].num >= s\n\t})\n\tif i < len(signalList) && signalList[i].num == s {\n\t\treturn signalList[i].name\n\t}\n\treturn \"\"\n}\n\n// SignalNum returns the syscall.Signal for signal named s,\n// or 0 if a signal with such name is not found.\n// The signal name should start with \"SIG\".\nfunc SignalNum(s string) syscall.Signal {\n\tsignalNameMapOnce.Do(func() {\n\t\tsignalNameMap = make(map[string]syscall.Signal, len(signalList))\n\t\tfor _, signal := range signalList {\n\t\t\tsignalNameMap[signal.name] = signal.num\n\t\t}\n\t})\n\treturn signalNameMap[s]\n}\n\n// clen returns the index of the first NULL byte in n or len(n) if n contains no NULL byte.\nfunc clen(n []byte) int {\n\ti := bytes.IndexByte(n, 0)\n\tif i == -1 {\n\t\ti = len(n)\n\t}\n\treturn i\n}\n\n// Mmap manager, for use by operating system-specific implementations.\n\ntype mmapper struct {\n\tsync.Mutex\n\tactive map[*byte][]byte // active mappings; key is last byte in mapping\n\tmmap   func(addr, length uintptr, prot, flags, fd int, offset int64) (uintptr, error)\n\tmunmap func(addr uintptr, length uintptr) error\n}\n\nfunc (m *mmapper) Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error) {\n\tif length <= 0 {\n\t\treturn nil, EINVAL\n\t}\n\n\t// Map the requested memory.\n\taddr, errno := m.mmap(0, uintptr(length), prot, flags, fd, offset)\n\tif errno != nil {\n\t\treturn nil, errno\n\t}\n\n\t// Use unsafe to convert addr into a []byte.\n\tvar b []byte\n\thdr := (*unsafeheader.Slice)(unsafe.Pointer(&b))\n\thdr.Data = unsafe.Pointer(addr)\n\thdr.Cap = length\n\thdr.Len = length\n\n\t// Register mapping in m and return it.\n\tp := &b[cap(b)-1]\n\tm.Lock()\n\tdefer m.Unlock()\n\tm.active[p] = b\n\treturn b, nil\n}\n\nfunc (m *mmapper) Munmap(data []byte) (err error) {\n\tif len(data) == 0 || len(data) != cap(data) {\n\t\treturn EINVAL\n\t}\n\n\t// Find the base of the mapping.\n\tp := &data[cap(data)-1]\n\tm.Lock()\n\tdefer m.Unlock()\n\tb := m.active[p]\n\tif b == nil || &b[0] != &data[0] {\n\t\treturn EINVAL\n\t}\n\n\t// Unmap the memory and update m.\n\tif errno := m.munmap(uintptr(unsafe.Pointer(&b[0])), uintptr(len(b))); errno != nil {\n\t\treturn errno\n\t}\n\tdelete(m.active, p)\n\treturn nil\n}\n\nfunc Read(fd int, p []byte) (n int, err error) {\n\tn, err = read(fd, p)\n\tif raceenabled {\n\t\tif n > 0 {\n\t\t\traceWriteRange(unsafe.Pointer(&p[0]), n)\n\t\t}\n\t\tif err == nil {\n\t\t\traceAcquire(unsafe.Pointer(&ioSync))\n\t\t}\n\t}\n\treturn\n}\n\nfunc Write(fd int, p []byte) (n int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\tn, err = write(fd, p)\n\tif raceenabled && n > 0 {\n\t\traceReadRange(unsafe.Pointer(&p[0]), n)\n\t}\n\treturn\n}\n\n// For testing: clients can set this flag to force\n// creation of IPv6 sockets to return EAFNOSUPPORT.\nvar SocketDisableIPv6 bool\n\n// Sockaddr represents a socket address.\ntype Sockaddr interface {\n\tsockaddr() (ptr unsafe.Pointer, len _Socklen, err error) // lowercase; only we can define Sockaddrs\n}\n\n// SockaddrInet4 implements the Sockaddr interface for AF_INET type sockets.\ntype SockaddrInet4 struct {\n\tPort int\n\tAddr [4]byte\n\traw  RawSockaddrInet4\n}\n\n// SockaddrInet6 implements the Sockaddr interface for AF_INET6 type sockets.\ntype SockaddrInet6 struct {\n\tPort   int\n\tZoneId uint32\n\tAddr   [16]byte\n\traw    RawSockaddrInet6\n}\n\n// SockaddrUnix implements the Sockaddr interface for AF_UNIX type sockets.\ntype SockaddrUnix struct {\n\tName string\n\traw  RawSockaddrUnix\n}\n\nfunc Bind(fd int, sa Sockaddr) (err error) {\n\tptr, n, err := sa.sockaddr()\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn bind(fd, ptr, n)\n}\n\nfunc Connect(fd int, sa Sockaddr) (err error) {\n\tptr, n, err := sa.sockaddr()\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn connect(fd, ptr, n)\n}\n\nfunc Getpeername(fd int) (sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tif err = getpeername(fd, &rsa, &len); err != nil {\n\t\treturn\n\t}\n\treturn anyToSockaddr(fd, &rsa)\n}\n\nfunc GetsockoptByte(fd, level, opt int) (value byte, err error) {\n\tvar n byte\n\tvallen := _Socklen(1)\n\terr = getsockopt(fd, level, opt, unsafe.Pointer(&n), &vallen)\n\treturn n, err\n}\n\nfunc GetsockoptInt(fd, level, opt int) (value int, err error) {\n\tvar n int32\n\tvallen := _Socklen(4)\n\terr = getsockopt(fd, level, opt, unsafe.Pointer(&n), &vallen)\n\treturn int(n), err\n}\n\nfunc GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error) {\n\tvallen := _Socklen(4)\n\terr = getsockopt(fd, level, opt, unsafe.Pointer(&value[0]), &vallen)\n\treturn value, err\n}\n\nfunc GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error) {\n\tvar value IPMreq\n\tvallen := _Socklen(SizeofIPMreq)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, err\n}\n\nfunc GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error) {\n\tvar value IPv6Mreq\n\tvallen := _Socklen(SizeofIPv6Mreq)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, err\n}\n\nfunc GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error) {\n\tvar value IPv6MTUInfo\n\tvallen := _Socklen(SizeofIPv6MTUInfo)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, err\n}\n\nfunc GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error) {\n\tvar value ICMPv6Filter\n\tvallen := _Socklen(SizeofICMPv6Filter)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)\n\treturn &value, err\n}\n\nfunc GetsockoptLinger(fd, level, opt int) (*Linger, error) {\n\tvar linger Linger\n\tvallen := _Socklen(SizeofLinger)\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&linger), &vallen)\n\treturn &linger, err\n}\n\nfunc GetsockoptTimeval(fd, level, opt int) (*Timeval, error) {\n\tvar tv Timeval\n\tvallen := _Socklen(unsafe.Sizeof(tv))\n\terr := getsockopt(fd, level, opt, unsafe.Pointer(&tv), &vallen)\n\treturn &tv, err\n}\n\nfunc GetsockoptUint64(fd, level, opt int) (value uint64, err error) {\n\tvar n uint64\n\tvallen := _Socklen(8)\n\terr = getsockopt(fd, level, opt, unsafe.Pointer(&n), &vallen)\n\treturn n, err\n}\n\nfunc Recvfrom(fd int, p []byte, flags int) (n int, from Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tvar len _Socklen = SizeofSockaddrAny\n\tif n, err = recvfrom(fd, p, flags, &rsa, &len); err != nil {\n\t\treturn\n\t}\n\tif rsa.Addr.Family != AF_UNSPEC {\n\t\tfrom, err = anyToSockaddr(fd, &rsa)\n\t}\n\treturn\n}\n\nfunc Sendto(fd int, p []byte, flags int, to Sockaddr) (err error) {\n\tptr, n, err := to.sockaddr()\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn sendto(fd, p, flags, ptr, n)\n}\n\nfunc SetsockoptByte(fd, level, opt int, value byte) (err error) {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(&value), 1)\n}\n\nfunc SetsockoptInt(fd, level, opt int, value int) (err error) {\n\tvar n = int32(value)\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(&n), 4)\n}\n\nfunc SetsockoptInet4Addr(fd, level, opt int, value [4]byte) (err error) {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(&value[0]), 4)\n}\n\nfunc SetsockoptIPMreq(fd, level, opt int, mreq *IPMreq) (err error) {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(mreq), SizeofIPMreq)\n}\n\nfunc SetsockoptIPv6Mreq(fd, level, opt int, mreq *IPv6Mreq) (err error) {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(mreq), SizeofIPv6Mreq)\n}\n\nfunc SetsockoptICMPv6Filter(fd, level, opt int, filter *ICMPv6Filter) error {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(filter), SizeofICMPv6Filter)\n}\n\nfunc SetsockoptLinger(fd, level, opt int, l *Linger) (err error) {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(l), SizeofLinger)\n}\n\nfunc SetsockoptString(fd, level, opt int, s string) (err error) {\n\tvar p unsafe.Pointer\n\tif len(s) > 0 {\n\t\tp = unsafe.Pointer(&[]byte(s)[0])\n\t}\n\treturn setsockopt(fd, level, opt, p, uintptr(len(s)))\n}\n\nfunc SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error) {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(tv), unsafe.Sizeof(*tv))\n}\n\nfunc SetsockoptUint64(fd, level, opt int, value uint64) (err error) {\n\treturn setsockopt(fd, level, opt, unsafe.Pointer(&value), 8)\n}\n\nfunc Socket(domain, typ, proto int) (fd int, err error) {\n\tif domain == AF_INET6 && SocketDisableIPv6 {\n\t\treturn -1, EAFNOSUPPORT\n\t}\n\tfd, err = socket(domain, typ, proto)\n\treturn\n}\n\nfunc Socketpair(domain, typ, proto int) (fd [2]int, err error) {\n\tvar fdx [2]int32\n\terr = socketpair(domain, typ, proto, &fdx)\n\tif err == nil {\n\t\tfd[0] = int(fdx[0])\n\t\tfd[1] = int(fdx[1])\n\t}\n\treturn\n}\n\nvar ioSync int64\n\nfunc CloseOnExec(fd int) { fcntl(fd, F_SETFD, FD_CLOEXEC) }\n\nfunc SetNonblock(fd int, nonblocking bool) (err error) {\n\tflag, err := fcntl(fd, F_GETFL, 0)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif nonblocking {\n\t\tflag |= O_NONBLOCK\n\t} else {\n\t\tflag &= ^O_NONBLOCK\n\t}\n\t_, err = fcntl(fd, F_SETFL, flag)\n\treturn err\n}\n\n// Exec calls execve(2), which replaces the calling executable in the process\n// tree. argv0 should be the full path to an executable (\"/bin/ls\") and the\n// executable name should also be the first argument in argv ([\"ls\", \"-l\"]).\n// envv are the environment variables that should be passed to the new\n// process ([\"USER=go\", \"PWD=/tmp\"]).\nfunc Exec(argv0 string, argv []string, envv []string) error {\n\treturn syscall.Exec(argv0, argv, envv)\n}\n\n// Lutimes sets the access and modification times tv on path. If path refers to\n// a symlink, it is not dereferenced and the timestamps are set on the symlink.\n// If tv is nil, the access and modification times are set to the current time.\n// Otherwise tv must contain exactly 2 elements, with access time as the first\n// element and modification time as the second element.\nfunc Lutimes(path string, tv []Timeval) error {\n\tif tv == nil {\n\t\treturn UtimesNanoAt(AT_FDCWD, path, nil, AT_SYMLINK_NOFOLLOW)\n\t}\n\tif len(tv) != 2 {\n\t\treturn EINVAL\n\t}\n\tts := []Timespec{\n\t\tNsecToTimespec(TimevalToNsec(tv[0])),\n\t\tNsecToTimespec(TimevalToNsec(tv[1])),\n\t}\n\treturn UtimesNanoAt(AT_FDCWD, path, ts, AT_SYMLINK_NOFOLLOW)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_unix_gc.go",
    "content": "// Copyright 2016 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build darwin dragonfly freebsd linux netbsd openbsd solaris\n// +build !gccgo,!ppc64le,!ppc64\n\npackage unix\n\nimport \"syscall\"\n\nfunc Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno)\nfunc Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)\nfunc RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno)\nfunc RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build linux\n// +build ppc64le ppc64\n// +build !gccgo\n\npackage unix\n\nimport \"syscall\"\n\nfunc Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) {\n\treturn syscall.Syscall(trap, a1, a2, a3)\n}\nfunc Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno) {\n\treturn syscall.Syscall6(trap, a1, a2, a3, a4, a5, a6)\n}\nfunc RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) {\n\treturn syscall.RawSyscall(trap, a1, a2, a3)\n}\nfunc RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno) {\n\treturn syscall.RawSyscall6(trap, a1, a2, a3, a4, a5, a6)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/timestruct.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris\n\npackage unix\n\nimport \"time\"\n\n// TimespecToNsec converts a Timespec value into a number of\n// nanoseconds since the Unix epoch.\nfunc TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }\n\n// NsecToTimespec takes a number of nanoseconds since the Unix epoch\n// and returns the corresponding Timespec value.\nfunc NsecToTimespec(nsec int64) Timespec {\n\tsec := nsec / 1e9\n\tnsec = nsec % 1e9\n\tif nsec < 0 {\n\t\tnsec += 1e9\n\t\tsec--\n\t}\n\treturn setTimespec(sec, nsec)\n}\n\n// TimeToTimespec converts t into a Timespec.\n// On some 32-bit systems the range of valid Timespec values are smaller\n// than that of time.Time values.  So if t is out of the valid range of\n// Timespec, it returns a zero Timespec and ERANGE.\nfunc TimeToTimespec(t time.Time) (Timespec, error) {\n\tsec := t.Unix()\n\tnsec := int64(t.Nanosecond())\n\tts := setTimespec(sec, nsec)\n\n\t// Currently all targets have either int32 or int64 for Timespec.Sec.\n\t// If there were a new target with floating point type for it, we have\n\t// to consider the rounding error.\n\tif int64(ts.Sec) != sec {\n\t\treturn Timespec{}, ERANGE\n\t}\n\treturn ts, nil\n}\n\n// TimevalToNsec converts a Timeval value into a number of nanoseconds\n// since the Unix epoch.\nfunc TimevalToNsec(tv Timeval) int64 { return int64(tv.Sec)*1e9 + int64(tv.Usec)*1e3 }\n\n// NsecToTimeval takes a number of nanoseconds since the Unix epoch\n// and returns the corresponding Timeval value.\nfunc NsecToTimeval(nsec int64) Timeval {\n\tnsec += 999 // round up to microsecond\n\tusec := nsec % 1e9 / 1e3\n\tsec := nsec / 1e9\n\tif usec < 0 {\n\t\tusec += 1e6\n\t\tsec--\n\t}\n\treturn setTimeval(sec, usec)\n}\n\n// Unix returns ts as the number of seconds and nanoseconds elapsed since the\n// Unix epoch.\nfunc (ts *Timespec) Unix() (sec int64, nsec int64) {\n\treturn int64(ts.Sec), int64(ts.Nsec)\n}\n\n// Unix returns tv as the number of seconds and nanoseconds elapsed since the\n// Unix epoch.\nfunc (tv *Timeval) Unix() (sec int64, nsec int64) {\n\treturn int64(tv.Sec), int64(tv.Usec) * 1000\n}\n\n// Nano returns ts as the number of nanoseconds elapsed since the Unix epoch.\nfunc (ts *Timespec) Nano() int64 {\n\treturn int64(ts.Sec)*1e9 + int64(ts.Nsec)\n}\n\n// Nano returns tv as the number of nanoseconds elapsed since the Unix epoch.\nfunc (tv *Timeval) Nano() int64 {\n\treturn int64(tv.Sec)*1e9 + int64(tv.Usec)*1000\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/unveil_openbsd.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// Unveil implements the unveil syscall.\n// For more information see unveil(2).\n// Note that the special case of blocking further\n// unveil calls is handled by UnveilBlock.\nfunc Unveil(path string, flags string) error {\n\tpathPtr, err := syscall.BytePtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\tflagsPtr, err := syscall.BytePtrFromString(flags)\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, _, e := syscall.Syscall(SYS_UNVEIL, uintptr(unsafe.Pointer(pathPtr)), uintptr(unsafe.Pointer(flagsPtr)), 0)\n\tif e != 0 {\n\t\treturn e\n\t}\n\treturn nil\n}\n\n// UnveilBlock blocks future unveil calls.\n// For more information see unveil(2).\nfunc UnveilBlock() error {\n\t// Both pointers must be nil.\n\tvar pathUnsafe, flagsUnsafe unsafe.Pointer\n\t_, _, e := syscall.Syscall(SYS_UNVEIL, uintptr(pathUnsafe), uintptr(flagsUnsafe), 0)\n\tif e != 0 {\n\t\treturn e\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/xattr_bsd.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build freebsd netbsd\n\npackage unix\n\nimport (\n\t\"strings\"\n\t\"unsafe\"\n)\n\n// Derive extattr namespace and attribute name\n\nfunc xattrnamespace(fullattr string) (ns int, attr string, err error) {\n\ts := strings.IndexByte(fullattr, '.')\n\tif s == -1 {\n\t\treturn -1, \"\", ENOATTR\n\t}\n\n\tnamespace := fullattr[0:s]\n\tattr = fullattr[s+1:]\n\n\tswitch namespace {\n\tcase \"user\":\n\t\treturn EXTATTR_NAMESPACE_USER, attr, nil\n\tcase \"system\":\n\t\treturn EXTATTR_NAMESPACE_SYSTEM, attr, nil\n\tdefault:\n\t\treturn -1, \"\", ENOATTR\n\t}\n}\n\nfunc initxattrdest(dest []byte, idx int) (d unsafe.Pointer) {\n\tif len(dest) > idx {\n\t\treturn unsafe.Pointer(&dest[idx])\n\t} else {\n\t\treturn unsafe.Pointer(_zero)\n\t}\n}\n\n// FreeBSD and NetBSD implement their own syscalls to handle extended attributes\n\nfunc Getxattr(file string, attr string, dest []byte) (sz int, err error) {\n\td := initxattrdest(dest, 0)\n\tdestsize := len(dest)\n\n\tnsid, a, err := xattrnamespace(attr)\n\tif err != nil {\n\t\treturn -1, err\n\t}\n\n\treturn ExtattrGetFile(file, nsid, a, uintptr(d), destsize)\n}\n\nfunc Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {\n\td := initxattrdest(dest, 0)\n\tdestsize := len(dest)\n\n\tnsid, a, err := xattrnamespace(attr)\n\tif err != nil {\n\t\treturn -1, err\n\t}\n\n\treturn ExtattrGetFd(fd, nsid, a, uintptr(d), destsize)\n}\n\nfunc Lgetxattr(link string, attr string, dest []byte) (sz int, err error) {\n\td := initxattrdest(dest, 0)\n\tdestsize := len(dest)\n\n\tnsid, a, err := xattrnamespace(attr)\n\tif err != nil {\n\t\treturn -1, err\n\t}\n\n\treturn ExtattrGetLink(link, nsid, a, uintptr(d), destsize)\n}\n\n// flags are unused on FreeBSD\n\nfunc Fsetxattr(fd int, attr string, data []byte, flags int) (err error) {\n\tvar d unsafe.Pointer\n\tif len(data) > 0 {\n\t\td = unsafe.Pointer(&data[0])\n\t}\n\tdatasiz := len(data)\n\n\tnsid, a, err := xattrnamespace(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\n\t_, err = ExtattrSetFd(fd, nsid, a, uintptr(d), datasiz)\n\treturn\n}\n\nfunc Setxattr(file string, attr string, data []byte, flags int) (err error) {\n\tvar d unsafe.Pointer\n\tif len(data) > 0 {\n\t\td = unsafe.Pointer(&data[0])\n\t}\n\tdatasiz := len(data)\n\n\tnsid, a, err := xattrnamespace(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\n\t_, err = ExtattrSetFile(file, nsid, a, uintptr(d), datasiz)\n\treturn\n}\n\nfunc Lsetxattr(link string, attr string, data []byte, flags int) (err error) {\n\tvar d unsafe.Pointer\n\tif len(data) > 0 {\n\t\td = unsafe.Pointer(&data[0])\n\t}\n\tdatasiz := len(data)\n\n\tnsid, a, err := xattrnamespace(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\n\t_, err = ExtattrSetLink(link, nsid, a, uintptr(d), datasiz)\n\treturn\n}\n\nfunc Removexattr(file string, attr string) (err error) {\n\tnsid, a, err := xattrnamespace(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\n\terr = ExtattrDeleteFile(file, nsid, a)\n\treturn\n}\n\nfunc Fremovexattr(fd int, attr string) (err error) {\n\tnsid, a, err := xattrnamespace(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\n\terr = ExtattrDeleteFd(fd, nsid, a)\n\treturn\n}\n\nfunc Lremovexattr(link string, attr string) (err error) {\n\tnsid, a, err := xattrnamespace(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\n\terr = ExtattrDeleteLink(link, nsid, a)\n\treturn\n}\n\nfunc Listxattr(file string, dest []byte) (sz int, err error) {\n\td := initxattrdest(dest, 0)\n\tdestsiz := len(dest)\n\n\t// FreeBSD won't allow you to list xattrs from multiple namespaces\n\ts := 0\n\tfor _, nsid := range [...]int{EXTATTR_NAMESPACE_USER, EXTATTR_NAMESPACE_SYSTEM} {\n\t\tstmp, e := ExtattrListFile(file, nsid, uintptr(d), destsiz)\n\n\t\t/* Errors accessing system attrs are ignored so that\n\t\t * we can implement the Linux-like behavior of omitting errors that\n\t\t * we don't have read permissions on\n\t\t *\n\t\t * Linux will still error if we ask for user attributes on a file that\n\t\t * we don't have read permissions on, so don't ignore those errors\n\t\t */\n\t\tif e != nil && e == EPERM && nsid != EXTATTR_NAMESPACE_USER {\n\t\t\tcontinue\n\t\t} else if e != nil {\n\t\t\treturn s, e\n\t\t}\n\n\t\ts += stmp\n\t\tdestsiz -= s\n\t\tif destsiz < 0 {\n\t\t\tdestsiz = 0\n\t\t}\n\t\td = initxattrdest(dest, s)\n\t}\n\n\treturn s, nil\n}\n\nfunc Flistxattr(fd int, dest []byte) (sz int, err error) {\n\td := initxattrdest(dest, 0)\n\tdestsiz := len(dest)\n\n\ts := 0\n\tfor _, nsid := range [...]int{EXTATTR_NAMESPACE_USER, EXTATTR_NAMESPACE_SYSTEM} {\n\t\tstmp, e := ExtattrListFd(fd, nsid, uintptr(d), destsiz)\n\t\tif e != nil && e == EPERM && nsid != EXTATTR_NAMESPACE_USER {\n\t\t\tcontinue\n\t\t} else if e != nil {\n\t\t\treturn s, e\n\t\t}\n\n\t\ts += stmp\n\t\tdestsiz -= s\n\t\tif destsiz < 0 {\n\t\t\tdestsiz = 0\n\t\t}\n\t\td = initxattrdest(dest, s)\n\t}\n\n\treturn s, nil\n}\n\nfunc Llistxattr(link string, dest []byte) (sz int, err error) {\n\td := initxattrdest(dest, 0)\n\tdestsiz := len(dest)\n\n\ts := 0\n\tfor _, nsid := range [...]int{EXTATTR_NAMESPACE_USER, EXTATTR_NAMESPACE_SYSTEM} {\n\t\tstmp, e := ExtattrListLink(link, nsid, uintptr(d), destsiz)\n\t\tif e != nil && e == EPERM && nsid != EXTATTR_NAMESPACE_USER {\n\t\t\tcontinue\n\t\t} else if e != nil {\n\t\t\treturn s, e\n\t\t}\n\n\t\ts += stmp\n\t\tdestsiz -= s\n\t\tif destsiz < 0 {\n\t\t\tdestsiz = 0\n\t\t}\n\t\td = initxattrdest(dest, s)\n\t}\n\n\treturn s, nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go",
    "content": "// mkerrors.sh -maix32\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc,aix\n\n// Created by cgo -godefs - DO NOT EDIT\n// cgo -godefs -- -maix32 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                  = 0x10\n\tAF_BYPASS                     = 0x19\n\tAF_CCITT                      = 0xa\n\tAF_CHAOS                      = 0x5\n\tAF_DATAKIT                    = 0x9\n\tAF_DECnet                     = 0xc\n\tAF_DLI                        = 0xd\n\tAF_ECMA                       = 0x8\n\tAF_HYLINK                     = 0xf\n\tAF_IMPLINK                    = 0x3\n\tAF_INET                       = 0x2\n\tAF_INET6                      = 0x18\n\tAF_INTF                       = 0x14\n\tAF_ISO                        = 0x7\n\tAF_LAT                        = 0xe\n\tAF_LINK                       = 0x12\n\tAF_LOCAL                      = 0x1\n\tAF_MAX                        = 0x1e\n\tAF_NDD                        = 0x17\n\tAF_NETWARE                    = 0x16\n\tAF_NS                         = 0x6\n\tAF_OSI                        = 0x7\n\tAF_PUP                        = 0x4\n\tAF_RIF                        = 0x15\n\tAF_ROUTE                      = 0x11\n\tAF_SNA                        = 0xb\n\tAF_UNIX                       = 0x1\n\tAF_UNSPEC                     = 0x0\n\tALTWERASE                     = 0x400000\n\tARPHRD_802_3                  = 0x6\n\tARPHRD_802_5                  = 0x6\n\tARPHRD_ETHER                  = 0x1\n\tARPHRD_FDDI                   = 0x1\n\tB0                            = 0x0\n\tB110                          = 0x3\n\tB1200                         = 0x9\n\tB134                          = 0x4\n\tB150                          = 0x5\n\tB1800                         = 0xa\n\tB19200                        = 0xe\n\tB200                          = 0x6\n\tB2400                         = 0xb\n\tB300                          = 0x7\n\tB38400                        = 0xf\n\tB4800                         = 0xc\n\tB50                           = 0x1\n\tB600                          = 0x8\n\tB75                           = 0x2\n\tB9600                         = 0xd\n\tBRKINT                        = 0x2\n\tBS0                           = 0x0\n\tBS1                           = 0x1000\n\tBSDLY                         = 0x1000\n\tCAP_AACCT                     = 0x6\n\tCAP_ARM_APPLICATION           = 0x5\n\tCAP_BYPASS_RAC_VMM            = 0x3\n\tCAP_CLEAR                     = 0x0\n\tCAP_CREDENTIALS               = 0x7\n\tCAP_EFFECTIVE                 = 0x1\n\tCAP_EWLM_AGENT                = 0x4\n\tCAP_INHERITABLE               = 0x2\n\tCAP_MAXIMUM                   = 0x7\n\tCAP_NUMA_ATTACH               = 0x2\n\tCAP_PERMITTED                 = 0x3\n\tCAP_PROPAGATE                 = 0x1\n\tCAP_PROPOGATE                 = 0x1\n\tCAP_SET                       = 0x1\n\tCBAUD                         = 0xf\n\tCFLUSH                        = 0xf\n\tCIBAUD                        = 0xf0000\n\tCLOCAL                        = 0x800\n\tCLOCK_MONOTONIC               = 0xa\n\tCLOCK_PROCESS_CPUTIME_ID      = 0xb\n\tCLOCK_REALTIME                = 0x9\n\tCLOCK_THREAD_CPUTIME_ID       = 0xc\n\tCR0                           = 0x0\n\tCR1                           = 0x100\n\tCR2                           = 0x200\n\tCR3                           = 0x300\n\tCRDLY                         = 0x300\n\tCREAD                         = 0x80\n\tCS5                           = 0x0\n\tCS6                           = 0x10\n\tCS7                           = 0x20\n\tCS8                           = 0x30\n\tCSIOCGIFCONF                  = -0x3ff796dc\n\tCSIZE                         = 0x30\n\tCSMAP_DIR                     = \"/usr/lib/nls/csmap/\"\n\tCSTART                        = '\\021'\n\tCSTOP                         = '\\023'\n\tCSTOPB                        = 0x40\n\tCSUSP                         = 0x1a\n\tECHO                          = 0x8\n\tECHOCTL                       = 0x20000\n\tECHOE                         = 0x10\n\tECHOK                         = 0x20\n\tECHOKE                        = 0x80000\n\tECHONL                        = 0x40\n\tECHOPRT                       = 0x40000\n\tECH_ICMPID                    = 0x2\n\tETHERNET_CSMACD               = 0x6\n\tEVENP                         = 0x80\n\tEXCONTINUE                    = 0x0\n\tEXDLOK                        = 0x3\n\tEXIO                          = 0x2\n\tEXPGIO                        = 0x0\n\tEXRESUME                      = 0x2\n\tEXRETURN                      = 0x1\n\tEXSIG                         = 0x4\n\tEXTA                          = 0xe\n\tEXTB                          = 0xf\n\tEXTRAP                        = 0x1\n\tEYEC_RTENTRYA                 = 0x257274656e747241\n\tEYEC_RTENTRYF                 = 0x257274656e747246\n\tE_ACC                         = 0x0\n\tFD_CLOEXEC                    = 0x1\n\tFD_SETSIZE                    = 0xfffe\n\tFF0                           = 0x0\n\tFF1                           = 0x2000\n\tFFDLY                         = 0x2000\n\tFLUSHBAND                     = 0x40\n\tFLUSHLOW                      = 0x8\n\tFLUSHO                        = 0x100000\n\tFLUSHR                        = 0x1\n\tFLUSHRW                       = 0x3\n\tFLUSHW                        = 0x2\n\tF_CLOSEM                      = 0xa\n\tF_DUP2FD                      = 0xe\n\tF_DUPFD                       = 0x0\n\tF_GETFD                       = 0x1\n\tF_GETFL                       = 0x3\n\tF_GETLK                       = 0x5\n\tF_GETLK64                     = 0xb\n\tF_GETOWN                      = 0x8\n\tF_LOCK                        = 0x1\n\tF_OK                          = 0x0\n\tF_RDLCK                       = 0x1\n\tF_SETFD                       = 0x2\n\tF_SETFL                       = 0x4\n\tF_SETLK                       = 0x6\n\tF_SETLK64                     = 0xc\n\tF_SETLKW                      = 0x7\n\tF_SETLKW64                    = 0xd\n\tF_SETOWN                      = 0x9\n\tF_TEST                        = 0x3\n\tF_TLOCK                       = 0x2\n\tF_TSTLK                       = 0xf\n\tF_ULOCK                       = 0x0\n\tF_UNLCK                       = 0x3\n\tF_WRLCK                       = 0x2\n\tHUPCL                         = 0x400\n\tIBSHIFT                       = 0x10\n\tICANON                        = 0x2\n\tICMP6_FILTER                  = 0x26\n\tICMP6_SEC_SEND_DEL            = 0x46\n\tICMP6_SEC_SEND_GET            = 0x47\n\tICMP6_SEC_SEND_SET            = 0x44\n\tICMP6_SEC_SEND_SET_CGA_ADDR   = 0x45\n\tICRNL                         = 0x100\n\tIEXTEN                        = 0x200000\n\tIFA_FIRSTALIAS                = 0x2000\n\tIFA_ROUTE                     = 0x1\n\tIFF_64BIT                     = 0x4000000\n\tIFF_ALLCAST                   = 0x20000\n\tIFF_ALLMULTI                  = 0x200\n\tIFF_BPF                       = 0x8000000\n\tIFF_BRIDGE                    = 0x40000\n\tIFF_BROADCAST                 = 0x2\n\tIFF_CANTCHANGE                = 0x80c52\n\tIFF_CHECKSUM_OFFLOAD          = 0x10000000\n\tIFF_D1                        = 0x8000\n\tIFF_D2                        = 0x4000\n\tIFF_D3                        = 0x2000\n\tIFF_D4                        = 0x1000\n\tIFF_DEBUG                     = 0x4\n\tIFF_DEVHEALTH                 = 0x4000\n\tIFF_DO_HW_LOOPBACK            = 0x10000\n\tIFF_GROUP_ROUTING             = 0x2000000\n\tIFF_IFBUFMGT                  = 0x800000\n\tIFF_LINK0                     = 0x100000\n\tIFF_LINK1                     = 0x200000\n\tIFF_LINK2                     = 0x400000\n\tIFF_LOOPBACK                  = 0x8\n\tIFF_MULTICAST                 = 0x80000\n\tIFF_NOARP                     = 0x80\n\tIFF_NOECHO                    = 0x800\n\tIFF_NOTRAILERS                = 0x20\n\tIFF_OACTIVE                   = 0x400\n\tIFF_POINTOPOINT               = 0x10\n\tIFF_PROMISC                   = 0x100\n\tIFF_PSEG                      = 0x40000000\n\tIFF_RUNNING                   = 0x40\n\tIFF_SIMPLEX                   = 0x800\n\tIFF_SNAP                      = 0x8000\n\tIFF_TCP_DISABLE_CKSUM         = 0x20000000\n\tIFF_TCP_NOCKSUM               = 0x1000000\n\tIFF_UP                        = 0x1\n\tIFF_VIPA                      = 0x80000000\n\tIFNAMSIZ                      = 0x10\n\tIFO_FLUSH                     = 0x1\n\tIFT_1822                      = 0x2\n\tIFT_AAL5                      = 0x31\n\tIFT_ARCNET                    = 0x23\n\tIFT_ARCNETPLUS                = 0x24\n\tIFT_ATM                       = 0x25\n\tIFT_CEPT                      = 0x13\n\tIFT_CLUSTER                   = 0x3e\n\tIFT_DS3                       = 0x1e\n\tIFT_EON                       = 0x19\n\tIFT_ETHER                     = 0x6\n\tIFT_FCS                       = 0x3a\n\tIFT_FDDI                      = 0xf\n\tIFT_FRELAY                    = 0x20\n\tIFT_FRELAYDCE                 = 0x2c\n\tIFT_GIFTUNNEL                 = 0x3c\n\tIFT_HDH1822                   = 0x3\n\tIFT_HF                        = 0x3d\n\tIFT_HIPPI                     = 0x2f\n\tIFT_HSSI                      = 0x2e\n\tIFT_HY                        = 0xe\n\tIFT_IB                        = 0xc7\n\tIFT_ISDNBASIC                 = 0x14\n\tIFT_ISDNPRIMARY               = 0x15\n\tIFT_ISO88022LLC               = 0x29\n\tIFT_ISO88023                  = 0x7\n\tIFT_ISO88024                  = 0x8\n\tIFT_ISO88025                  = 0x9\n\tIFT_ISO88026                  = 0xa\n\tIFT_LAPB                      = 0x10\n\tIFT_LOCALTALK                 = 0x2a\n\tIFT_LOOP                      = 0x18\n\tIFT_MIOX25                    = 0x26\n\tIFT_MODEM                     = 0x30\n\tIFT_NSIP                      = 0x1b\n\tIFT_OTHER                     = 0x1\n\tIFT_P10                       = 0xc\n\tIFT_P80                       = 0xd\n\tIFT_PARA                      = 0x22\n\tIFT_PPP                       = 0x17\n\tIFT_PROPMUX                   = 0x36\n\tIFT_PROPVIRTUAL               = 0x35\n\tIFT_PTPSERIAL                 = 0x16\n\tIFT_RS232                     = 0x21\n\tIFT_SDLC                      = 0x11\n\tIFT_SIP                       = 0x1f\n\tIFT_SLIP                      = 0x1c\n\tIFT_SMDSDXI                   = 0x2b\n\tIFT_SMDSICIP                  = 0x34\n\tIFT_SN                        = 0x38\n\tIFT_SONET                     = 0x27\n\tIFT_SONETPATH                 = 0x32\n\tIFT_SONETVT                   = 0x33\n\tIFT_SP                        = 0x39\n\tIFT_STARLAN                   = 0xb\n\tIFT_T1                        = 0x12\n\tIFT_TUNNEL                    = 0x3b\n\tIFT_ULTRA                     = 0x1d\n\tIFT_V35                       = 0x2d\n\tIFT_VIPA                      = 0x37\n\tIFT_X25                       = 0x5\n\tIFT_X25DDN                    = 0x4\n\tIFT_X25PLE                    = 0x28\n\tIFT_XETHER                    = 0x1a\n\tIGNBRK                        = 0x1\n\tIGNCR                         = 0x80\n\tIGNPAR                        = 0x4\n\tIMAXBEL                       = 0x10000\n\tINLCR                         = 0x40\n\tINPCK                         = 0x10\n\tIN_CLASSA_HOST                = 0xffffff\n\tIN_CLASSA_MAX                 = 0x80\n\tIN_CLASSA_NET                 = 0xff000000\n\tIN_CLASSA_NSHIFT              = 0x18\n\tIN_CLASSB_HOST                = 0xffff\n\tIN_CLASSB_MAX                 = 0x10000\n\tIN_CLASSB_NET                 = 0xffff0000\n\tIN_CLASSB_NSHIFT              = 0x10\n\tIN_CLASSC_HOST                = 0xff\n\tIN_CLASSC_NET                 = 0xffffff00\n\tIN_CLASSC_NSHIFT              = 0x8\n\tIN_CLASSD_HOST                = 0xfffffff\n\tIN_CLASSD_NET                 = 0xf0000000\n\tIN_CLASSD_NSHIFT              = 0x1c\n\tIN_LOOPBACKNET                = 0x7f\n\tIN_USE                        = 0x1\n\tIPPROTO_AH                    = 0x33\n\tIPPROTO_BIP                   = 0x53\n\tIPPROTO_DSTOPTS               = 0x3c\n\tIPPROTO_EGP                   = 0x8\n\tIPPROTO_EON                   = 0x50\n\tIPPROTO_ESP                   = 0x32\n\tIPPROTO_FRAGMENT              = 0x2c\n\tIPPROTO_GGP                   = 0x3\n\tIPPROTO_GIF                   = 0x8c\n\tIPPROTO_GRE                   = 0x2f\n\tIPPROTO_HOPOPTS               = 0x0\n\tIPPROTO_ICMP                  = 0x1\n\tIPPROTO_ICMPV6                = 0x3a\n\tIPPROTO_IDP                   = 0x16\n\tIPPROTO_IGMP                  = 0x2\n\tIPPROTO_IP                    = 0x0\n\tIPPROTO_IPIP                  = 0x4\n\tIPPROTO_IPV6                  = 0x29\n\tIPPROTO_LOCAL                 = 0x3f\n\tIPPROTO_MAX                   = 0x100\n\tIPPROTO_MH                    = 0x87\n\tIPPROTO_NONE                  = 0x3b\n\tIPPROTO_PUP                   = 0xc\n\tIPPROTO_QOS                   = 0x2d\n\tIPPROTO_RAW                   = 0xff\n\tIPPROTO_ROUTING               = 0x2b\n\tIPPROTO_RSVP                  = 0x2e\n\tIPPROTO_SCTP                  = 0x84\n\tIPPROTO_TCP                   = 0x6\n\tIPPROTO_TP                    = 0x1d\n\tIPPROTO_UDP                   = 0x11\n\tIPV6_ADDRFORM                 = 0x16\n\tIPV6_ADDR_PREFERENCES         = 0x4a\n\tIPV6_ADD_MEMBERSHIP           = 0xc\n\tIPV6_AIXRAWSOCKET             = 0x39\n\tIPV6_CHECKSUM                 = 0x27\n\tIPV6_DONTFRAG                 = 0x2d\n\tIPV6_DROP_MEMBERSHIP          = 0xd\n\tIPV6_DSTOPTS                  = 0x36\n\tIPV6_FLOWINFO_FLOWLABEL       = 0xffffff\n\tIPV6_FLOWINFO_PRIFLOW         = 0xfffffff\n\tIPV6_FLOWINFO_PRIORITY        = 0xf000000\n\tIPV6_FLOWINFO_SRFLAG          = 0x10000000\n\tIPV6_FLOWINFO_VERSION         = 0xf0000000\n\tIPV6_HOPLIMIT                 = 0x28\n\tIPV6_HOPOPTS                  = 0x34\n\tIPV6_JOIN_GROUP               = 0xc\n\tIPV6_LEAVE_GROUP              = 0xd\n\tIPV6_MIPDSTOPTS               = 0x36\n\tIPV6_MULTICAST_HOPS           = 0xa\n\tIPV6_MULTICAST_IF             = 0x9\n\tIPV6_MULTICAST_LOOP           = 0xb\n\tIPV6_NEXTHOP                  = 0x30\n\tIPV6_NOPROBE                  = 0x1c\n\tIPV6_PATHMTU                  = 0x2e\n\tIPV6_PKTINFO                  = 0x21\n\tIPV6_PKTOPTIONS               = 0x24\n\tIPV6_PRIORITY_10              = 0xa000000\n\tIPV6_PRIORITY_11              = 0xb000000\n\tIPV6_PRIORITY_12              = 0xc000000\n\tIPV6_PRIORITY_13              = 0xd000000\n\tIPV6_PRIORITY_14              = 0xe000000\n\tIPV6_PRIORITY_15              = 0xf000000\n\tIPV6_PRIORITY_8               = 0x8000000\n\tIPV6_PRIORITY_9               = 0x9000000\n\tIPV6_PRIORITY_BULK            = 0x4000000\n\tIPV6_PRIORITY_CONTROL         = 0x7000000\n\tIPV6_PRIORITY_FILLER          = 0x1000000\n\tIPV6_PRIORITY_INTERACTIVE     = 0x6000000\n\tIPV6_PRIORITY_RESERVED1       = 0x3000000\n\tIPV6_PRIORITY_RESERVED2       = 0x5000000\n\tIPV6_PRIORITY_UNATTENDED      = 0x2000000\n\tIPV6_PRIORITY_UNCHARACTERIZED = 0x0\n\tIPV6_RECVDSTOPTS              = 0x38\n\tIPV6_RECVHOPLIMIT             = 0x29\n\tIPV6_RECVHOPOPTS              = 0x35\n\tIPV6_RECVHOPS                 = 0x22\n\tIPV6_RECVIF                   = 0x1e\n\tIPV6_RECVPATHMTU              = 0x2f\n\tIPV6_RECVPKTINFO              = 0x23\n\tIPV6_RECVRTHDR                = 0x33\n\tIPV6_RECVSRCRT                = 0x1d\n\tIPV6_RECVTCLASS               = 0x2a\n\tIPV6_RTHDR                    = 0x32\n\tIPV6_RTHDRDSTOPTS             = 0x37\n\tIPV6_RTHDR_TYPE_0             = 0x0\n\tIPV6_RTHDR_TYPE_2             = 0x2\n\tIPV6_SENDIF                   = 0x1f\n\tIPV6_SRFLAG_LOOSE             = 0x0\n\tIPV6_SRFLAG_STRICT            = 0x10000000\n\tIPV6_TCLASS                   = 0x2b\n\tIPV6_TOKEN_LENGTH             = 0x40\n\tIPV6_UNICAST_HOPS             = 0x4\n\tIPV6_USE_MIN_MTU              = 0x2c\n\tIPV6_V6ONLY                   = 0x25\n\tIPV6_VERSION                  = 0x60000000\n\tIP_ADDRFORM                   = 0x16\n\tIP_ADD_MEMBERSHIP             = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP      = 0x3c\n\tIP_BLOCK_SOURCE               = 0x3a\n\tIP_BROADCAST_IF               = 0x10\n\tIP_CACHE_LINE_SIZE            = 0x80\n\tIP_DEFAULT_MULTICAST_LOOP     = 0x1\n\tIP_DEFAULT_MULTICAST_TTL      = 0x1\n\tIP_DF                         = 0x4000\n\tIP_DHCPMODE                   = 0x11\n\tIP_DONTFRAG                   = 0x19\n\tIP_DROP_MEMBERSHIP            = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP     = 0x3d\n\tIP_FINDPMTU                   = 0x1a\n\tIP_HDRINCL                    = 0x2\n\tIP_INC_MEMBERSHIPS            = 0x14\n\tIP_INIT_MEMBERSHIP            = 0x14\n\tIP_MAXPACKET                  = 0xffff\n\tIP_MF                         = 0x2000\n\tIP_MSS                        = 0x240\n\tIP_MULTICAST_HOPS             = 0xa\n\tIP_MULTICAST_IF               = 0x9\n\tIP_MULTICAST_LOOP             = 0xb\n\tIP_MULTICAST_TTL              = 0xa\n\tIP_OPT                        = 0x1b\n\tIP_OPTIONS                    = 0x1\n\tIP_PMTUAGE                    = 0x1b\n\tIP_RECVDSTADDR                = 0x7\n\tIP_RECVIF                     = 0x14\n\tIP_RECVIFINFO                 = 0xf\n\tIP_RECVINTERFACE              = 0x20\n\tIP_RECVMACHDR                 = 0xe\n\tIP_RECVOPTS                   = 0x5\n\tIP_RECVRETOPTS                = 0x6\n\tIP_RECVTTL                    = 0x22\n\tIP_RETOPTS                    = 0x8\n\tIP_SOURCE_FILTER              = 0x48\n\tIP_TOS                        = 0x3\n\tIP_TTL                        = 0x4\n\tIP_UNBLOCK_SOURCE             = 0x3b\n\tIP_UNICAST_HOPS               = 0x4\n\tISIG                          = 0x1\n\tISTRIP                        = 0x20\n\tIUCLC                         = 0x800\n\tIXANY                         = 0x1000\n\tIXOFF                         = 0x400\n\tIXON                          = 0x200\n\tI_FLUSH                       = 0x20005305\n\tLNOFLSH                       = 0x8000\n\tLOCK_EX                       = 0x2\n\tLOCK_NB                       = 0x4\n\tLOCK_SH                       = 0x1\n\tLOCK_UN                       = 0x8\n\tMADV_DONTNEED                 = 0x4\n\tMADV_NORMAL                   = 0x0\n\tMADV_RANDOM                   = 0x1\n\tMADV_SEQUENTIAL               = 0x2\n\tMADV_SPACEAVAIL               = 0x5\n\tMADV_WILLNEED                 = 0x3\n\tMAP_ANON                      = 0x10\n\tMAP_ANONYMOUS                 = 0x10\n\tMAP_FILE                      = 0x0\n\tMAP_FIXED                     = 0x100\n\tMAP_PRIVATE                   = 0x2\n\tMAP_SHARED                    = 0x1\n\tMAP_TYPE                      = 0xf0\n\tMAP_VARIABLE                  = 0x0\n\tMCAST_BLOCK_SOURCE            = 0x40\n\tMCAST_EXCLUDE                 = 0x2\n\tMCAST_INCLUDE                 = 0x1\n\tMCAST_JOIN_GROUP              = 0x3e\n\tMCAST_JOIN_SOURCE_GROUP       = 0x42\n\tMCAST_LEAVE_GROUP             = 0x3f\n\tMCAST_LEAVE_SOURCE_GROUP      = 0x43\n\tMCAST_SOURCE_FILTER           = 0x49\n\tMCAST_UNBLOCK_SOURCE          = 0x41\n\tMCL_CURRENT                   = 0x100\n\tMCL_FUTURE                    = 0x200\n\tMSG_ANY                       = 0x4\n\tMSG_ARGEXT                    = 0x400\n\tMSG_BAND                      = 0x2\n\tMSG_COMPAT                    = 0x8000\n\tMSG_CTRUNC                    = 0x20\n\tMSG_DONTROUTE                 = 0x4\n\tMSG_EOR                       = 0x8\n\tMSG_HIPRI                     = 0x1\n\tMSG_MAXIOVLEN                 = 0x10\n\tMSG_MPEG2                     = 0x80\n\tMSG_NONBLOCK                  = 0x4000\n\tMSG_NOSIGNAL                  = 0x100\n\tMSG_OOB                       = 0x1\n\tMSG_PEEK                      = 0x2\n\tMSG_TRUNC                     = 0x10\n\tMSG_WAITALL                   = 0x40\n\tMSG_WAITFORONE                = 0x200\n\tMS_ASYNC                      = 0x10\n\tMS_EINTR                      = 0x80\n\tMS_INVALIDATE                 = 0x40\n\tMS_PER_SEC                    = 0x3e8\n\tMS_SYNC                       = 0x20\n\tNFDBITS                       = 0x20\n\tNL0                           = 0x0\n\tNL1                           = 0x4000\n\tNL2                           = 0x8000\n\tNL3                           = 0xc000\n\tNLDLY                         = 0x4000\n\tNOFLSH                        = 0x80\n\tNOFLUSH                       = 0x80000000\n\tOCRNL                         = 0x8\n\tOFDEL                         = 0x80\n\tOFILL                         = 0x40\n\tOLCUC                         = 0x2\n\tONLCR                         = 0x4\n\tONLRET                        = 0x20\n\tONOCR                         = 0x10\n\tONOEOT                        = 0x80000\n\tOPOST                         = 0x1\n\tOXTABS                        = 0x40000\n\tO_ACCMODE                     = 0x23\n\tO_APPEND                      = 0x8\n\tO_CIO                         = 0x80\n\tO_CIOR                        = 0x800000000\n\tO_CLOEXEC                     = 0x800000\n\tO_CREAT                       = 0x100\n\tO_DEFER                       = 0x2000\n\tO_DELAY                       = 0x4000\n\tO_DIRECT                      = 0x8000000\n\tO_DIRECTORY                   = 0x80000\n\tO_DSYNC                       = 0x400000\n\tO_EFSOFF                      = 0x400000000\n\tO_EFSON                       = 0x200000000\n\tO_EXCL                        = 0x400\n\tO_EXEC                        = 0x20\n\tO_LARGEFILE                   = 0x4000000\n\tO_NDELAY                      = 0x8000\n\tO_NOCACHE                     = 0x100000\n\tO_NOCTTY                      = 0x800\n\tO_NOFOLLOW                    = 0x1000000\n\tO_NONBLOCK                    = 0x4\n\tO_NONE                        = 0x3\n\tO_NSHARE                      = 0x10000\n\tO_RAW                         = 0x100000000\n\tO_RDONLY                      = 0x0\n\tO_RDWR                        = 0x2\n\tO_RSHARE                      = 0x1000\n\tO_RSYNC                       = 0x200000\n\tO_SEARCH                      = 0x20\n\tO_SNAPSHOT                    = 0x40\n\tO_SYNC                        = 0x10\n\tO_TRUNC                       = 0x200\n\tO_TTY_INIT                    = 0x0\n\tO_WRONLY                      = 0x1\n\tPARENB                        = 0x100\n\tPAREXT                        = 0x100000\n\tPARMRK                        = 0x8\n\tPARODD                        = 0x200\n\tPENDIN                        = 0x20000000\n\tPRIO_PGRP                     = 0x1\n\tPRIO_PROCESS                  = 0x0\n\tPRIO_USER                     = 0x2\n\tPROT_EXEC                     = 0x4\n\tPROT_NONE                     = 0x0\n\tPROT_READ                     = 0x1\n\tPROT_WRITE                    = 0x2\n\tPR_64BIT                      = 0x20\n\tPR_ADDR                       = 0x2\n\tPR_ARGEXT                     = 0x400\n\tPR_ATOMIC                     = 0x1\n\tPR_CONNREQUIRED               = 0x4\n\tPR_FASTHZ                     = 0x5\n\tPR_INP                        = 0x40\n\tPR_INTRLEVEL                  = 0x8000\n\tPR_MLS                        = 0x100\n\tPR_MLS_1_LABEL                = 0x200\n\tPR_NOEOR                      = 0x4000\n\tPR_RIGHTS                     = 0x10\n\tPR_SLOWHZ                     = 0x2\n\tPR_WANTRCVD                   = 0x8\n\tRLIMIT_AS                     = 0x6\n\tRLIMIT_CORE                   = 0x4\n\tRLIMIT_CPU                    = 0x0\n\tRLIMIT_DATA                   = 0x2\n\tRLIMIT_FSIZE                  = 0x1\n\tRLIMIT_NOFILE                 = 0x7\n\tRLIMIT_NPROC                  = 0x9\n\tRLIMIT_RSS                    = 0x5\n\tRLIMIT_STACK                  = 0x3\n\tRLIM_INFINITY                 = 0x7fffffff\n\tRTAX_AUTHOR                   = 0x6\n\tRTAX_BRD                      = 0x7\n\tRTAX_DST                      = 0x0\n\tRTAX_GATEWAY                  = 0x1\n\tRTAX_GENMASK                  = 0x3\n\tRTAX_IFA                      = 0x5\n\tRTAX_IFP                      = 0x4\n\tRTAX_MAX                      = 0x8\n\tRTAX_NETMASK                  = 0x2\n\tRTA_AUTHOR                    = 0x40\n\tRTA_BRD                       = 0x80\n\tRTA_DOWNSTREAM                = 0x100\n\tRTA_DST                       = 0x1\n\tRTA_GATEWAY                   = 0x2\n\tRTA_GENMASK                   = 0x8\n\tRTA_IFA                       = 0x20\n\tRTA_IFP                       = 0x10\n\tRTA_NETMASK                   = 0x4\n\tRTC_IA64                      = 0x3\n\tRTC_POWER                     = 0x1\n\tRTC_POWER_PC                  = 0x2\n\tRTF_ACTIVE_DGD                = 0x1000000\n\tRTF_BCE                       = 0x80000\n\tRTF_BLACKHOLE                 = 0x1000\n\tRTF_BROADCAST                 = 0x400000\n\tRTF_BUL                       = 0x2000\n\tRTF_CLONE                     = 0x10000\n\tRTF_CLONED                    = 0x20000\n\tRTF_CLONING                   = 0x100\n\tRTF_DONE                      = 0x40\n\tRTF_DYNAMIC                   = 0x10\n\tRTF_FREE_IN_PROG              = 0x4000000\n\tRTF_GATEWAY                   = 0x2\n\tRTF_HOST                      = 0x4\n\tRTF_LLINFO                    = 0x400\n\tRTF_LOCAL                     = 0x200000\n\tRTF_MASK                      = 0x80\n\tRTF_MODIFIED                  = 0x20\n\tRTF_MULTICAST                 = 0x800000\n\tRTF_PERMANENT6                = 0x8000000\n\tRTF_PINNED                    = 0x100000\n\tRTF_PROTO1                    = 0x8000\n\tRTF_PROTO2                    = 0x4000\n\tRTF_PROTO3                    = 0x40000\n\tRTF_REJECT                    = 0x8\n\tRTF_SMALLMTU                  = 0x40000\n\tRTF_STATIC                    = 0x800\n\tRTF_STOPSRCH                  = 0x2000000\n\tRTF_UNREACHABLE               = 0x10000000\n\tRTF_UP                        = 0x1\n\tRTF_XRESOLVE                  = 0x200\n\tRTM_ADD                       = 0x1\n\tRTM_CHANGE                    = 0x3\n\tRTM_DELADDR                   = 0xd\n\tRTM_DELETE                    = 0x2\n\tRTM_EXPIRE                    = 0xf\n\tRTM_GET                       = 0x4\n\tRTM_GETNEXT                   = 0x11\n\tRTM_IFINFO                    = 0xe\n\tRTM_LOCK                      = 0x8\n\tRTM_LOSING                    = 0x5\n\tRTM_MISS                      = 0x7\n\tRTM_NEWADDR                   = 0xc\n\tRTM_OLDADD                    = 0x9\n\tRTM_OLDDEL                    = 0xa\n\tRTM_REDIRECT                  = 0x6\n\tRTM_RESOLVE                   = 0xb\n\tRTM_RTLOST                    = 0x10\n\tRTM_RTTUNIT                   = 0xf4240\n\tRTM_SAMEADDR                  = 0x12\n\tRTM_SET                       = 0x13\n\tRTM_VERSION                   = 0x2\n\tRTM_VERSION_GR                = 0x4\n\tRTM_VERSION_GR_COMPAT         = 0x3\n\tRTM_VERSION_POLICY            = 0x5\n\tRTM_VERSION_POLICY_EXT        = 0x6\n\tRTM_VERSION_POLICY_PRFN       = 0x7\n\tRTV_EXPIRE                    = 0x4\n\tRTV_HOPCOUNT                  = 0x2\n\tRTV_MTU                       = 0x1\n\tRTV_RPIPE                     = 0x8\n\tRTV_RTT                       = 0x40\n\tRTV_RTTVAR                    = 0x80\n\tRTV_SPIPE                     = 0x10\n\tRTV_SSTHRESH                  = 0x20\n\tRUSAGE_CHILDREN               = -0x1\n\tRUSAGE_SELF                   = 0x0\n\tRUSAGE_THREAD                 = 0x1\n\tSCM_RIGHTS                    = 0x1\n\tSHUT_RD                       = 0x0\n\tSHUT_RDWR                     = 0x2\n\tSHUT_WR                       = 0x1\n\tSIGMAX64                      = 0xff\n\tSIGQUEUE_MAX                  = 0x20\n\tSIOCADDIFVIPA                 = 0x20006942\n\tSIOCADDMTU                    = -0x7ffb9690\n\tSIOCADDMULTI                  = -0x7fdf96cf\n\tSIOCADDNETID                  = -0x7fd796a9\n\tSIOCADDRT                     = -0x7fcf8df6\n\tSIOCAIFADDR                   = -0x7fbf96e6\n\tSIOCATMARK                    = 0x40047307\n\tSIOCDARP                      = -0x7fb396e0\n\tSIOCDELIFVIPA                 = 0x20006943\n\tSIOCDELMTU                    = -0x7ffb968f\n\tSIOCDELMULTI                  = -0x7fdf96ce\n\tSIOCDELPMTU                   = -0x7fd78ff6\n\tSIOCDELRT                     = -0x7fcf8df5\n\tSIOCDIFADDR                   = -0x7fd796e7\n\tSIOCDNETOPT                   = -0x3ffe9680\n\tSIOCDX25XLATE                 = -0x7fd7969b\n\tSIOCFIFADDR                   = -0x7fdf966d\n\tSIOCGARP                      = -0x3fb396da\n\tSIOCGETMTUS                   = 0x2000696f\n\tSIOCGETSGCNT                  = -0x3feb8acc\n\tSIOCGETVIFCNT                 = -0x3feb8acd\n\tSIOCGHIWAT                    = 0x40047301\n\tSIOCGIFADDR                   = -0x3fd796df\n\tSIOCGIFADDRS                  = 0x2000698c\n\tSIOCGIFBAUDRATE               = -0x3fdf9669\n\tSIOCGIFBRDADDR                = -0x3fd796dd\n\tSIOCGIFCONF                   = -0x3ff796bb\n\tSIOCGIFCONFGLOB               = -0x3ff79670\n\tSIOCGIFDSTADDR                = -0x3fd796de\n\tSIOCGIFFLAGS                  = -0x3fd796ef\n\tSIOCGIFGIDLIST                = 0x20006968\n\tSIOCGIFHWADDR                 = -0x3fab966b\n\tSIOCGIFMETRIC                 = -0x3fd796e9\n\tSIOCGIFMTU                    = -0x3fd796aa\n\tSIOCGIFNETMASK                = -0x3fd796db\n\tSIOCGIFOPTIONS                = -0x3fd796d6\n\tSIOCGISNO                     = -0x3fd79695\n\tSIOCGLOADF                    = -0x3ffb967e\n\tSIOCGLOWAT                    = 0x40047303\n\tSIOCGNETOPT                   = -0x3ffe96a5\n\tSIOCGNETOPT1                  = -0x3fdf967f\n\tSIOCGNMTUS                    = 0x2000696e\n\tSIOCGPGRP                     = 0x40047309\n\tSIOCGSIZIFCONF                = 0x4004696a\n\tSIOCGSRCFILTER                = -0x3fe796cb\n\tSIOCGTUNEPHASE                = -0x3ffb9676\n\tSIOCGX25XLATE                 = -0x3fd7969c\n\tSIOCIFATTACH                  = -0x7fdf9699\n\tSIOCIFDETACH                  = -0x7fdf969a\n\tSIOCIFGETPKEY                 = -0x7fdf969b\n\tSIOCIF_ATM_DARP               = -0x7fdf9683\n\tSIOCIF_ATM_DUMPARP            = -0x7fdf9685\n\tSIOCIF_ATM_GARP               = -0x7fdf9682\n\tSIOCIF_ATM_IDLE               = -0x7fdf9686\n\tSIOCIF_ATM_SARP               = -0x7fdf9681\n\tSIOCIF_ATM_SNMPARP            = -0x7fdf9687\n\tSIOCIF_ATM_SVC                = -0x7fdf9684\n\tSIOCIF_ATM_UBR                = -0x7fdf9688\n\tSIOCIF_DEVHEALTH              = -0x7ffb966c\n\tSIOCIF_IB_ARP_INCOMP          = -0x7fdf9677\n\tSIOCIF_IB_ARP_TIMER           = -0x7fdf9678\n\tSIOCIF_IB_CLEAR_PINFO         = -0x3fdf966f\n\tSIOCIF_IB_DEL_ARP             = -0x7fdf967f\n\tSIOCIF_IB_DEL_PINFO           = -0x3fdf9670\n\tSIOCIF_IB_DUMP_ARP            = -0x7fdf9680\n\tSIOCIF_IB_GET_ARP             = -0x7fdf967e\n\tSIOCIF_IB_GET_INFO            = -0x3f879675\n\tSIOCIF_IB_GET_STATS           = -0x3f879672\n\tSIOCIF_IB_NOTIFY_ADDR_REM     = -0x3f87966a\n\tSIOCIF_IB_RESET_STATS         = -0x3f879671\n\tSIOCIF_IB_RESIZE_CQ           = -0x7fdf9679\n\tSIOCIF_IB_SET_ARP             = -0x7fdf967d\n\tSIOCIF_IB_SET_PKEY            = -0x7fdf967c\n\tSIOCIF_IB_SET_PORT            = -0x7fdf967b\n\tSIOCIF_IB_SET_QKEY            = -0x7fdf9676\n\tSIOCIF_IB_SET_QSIZE           = -0x7fdf967a\n\tSIOCLISTIFVIPA                = 0x20006944\n\tSIOCSARP                      = -0x7fb396e2\n\tSIOCSHIWAT                    = 0x80047300\n\tSIOCSIFADDR                   = -0x7fd796f4\n\tSIOCSIFADDRORI                = -0x7fdb9673\n\tSIOCSIFBRDADDR                = -0x7fd796ed\n\tSIOCSIFDSTADDR                = -0x7fd796f2\n\tSIOCSIFFLAGS                  = -0x7fd796f0\n\tSIOCSIFGIDLIST                = 0x20006969\n\tSIOCSIFMETRIC                 = -0x7fd796e8\n\tSIOCSIFMTU                    = -0x7fd796a8\n\tSIOCSIFNETDUMP                = -0x7fd796e4\n\tSIOCSIFNETMASK                = -0x7fd796ea\n\tSIOCSIFOPTIONS                = -0x7fd796d7\n\tSIOCSIFSUBCHAN                = -0x7fd796e5\n\tSIOCSISNO                     = -0x7fd79694\n\tSIOCSLOADF                    = -0x3ffb967d\n\tSIOCSLOWAT                    = 0x80047302\n\tSIOCSNETOPT                   = -0x7ffe96a6\n\tSIOCSPGRP                     = 0x80047308\n\tSIOCSX25XLATE                 = -0x7fd7969d\n\tSOCK_CONN_DGRAM               = 0x6\n\tSOCK_DGRAM                    = 0x2\n\tSOCK_RAW                      = 0x3\n\tSOCK_RDM                      = 0x4\n\tSOCK_SEQPACKET                = 0x5\n\tSOCK_STREAM                   = 0x1\n\tSOL_SOCKET                    = 0xffff\n\tSOMAXCONN                     = 0x400\n\tSO_ACCEPTCONN                 = 0x2\n\tSO_AUDIT                      = 0x8000\n\tSO_BROADCAST                  = 0x20\n\tSO_CKSUMRECV                  = 0x800\n\tSO_DEBUG                      = 0x1\n\tSO_DONTROUTE                  = 0x10\n\tSO_ERROR                      = 0x1007\n\tSO_KEEPALIVE                  = 0x8\n\tSO_KERNACCEPT                 = 0x2000\n\tSO_LINGER                     = 0x80\n\tSO_NOMULTIPATH                = 0x4000\n\tSO_NOREUSEADDR                = 0x1000\n\tSO_OOBINLINE                  = 0x100\n\tSO_PEERID                     = 0x1009\n\tSO_RCVBUF                     = 0x1002\n\tSO_RCVLOWAT                   = 0x1004\n\tSO_RCVTIMEO                   = 0x1006\n\tSO_REUSEADDR                  = 0x4\n\tSO_REUSEPORT                  = 0x200\n\tSO_SNDBUF                     = 0x1001\n\tSO_SNDLOWAT                   = 0x1003\n\tSO_SNDTIMEO                   = 0x1005\n\tSO_TIMESTAMPNS                = 0x100a\n\tSO_TYPE                       = 0x1008\n\tSO_USELOOPBACK                = 0x40\n\tSO_USE_IFBUFS                 = 0x400\n\tS_BANDURG                     = 0x400\n\tS_EMODFMT                     = 0x3c000000\n\tS_ENFMT                       = 0x400\n\tS_ERROR                       = 0x100\n\tS_HANGUP                      = 0x200\n\tS_HIPRI                       = 0x2\n\tS_ICRYPTO                     = 0x80000\n\tS_IEXEC                       = 0x40\n\tS_IFBLK                       = 0x6000\n\tS_IFCHR                       = 0x2000\n\tS_IFDIR                       = 0x4000\n\tS_IFIFO                       = 0x1000\n\tS_IFJOURNAL                   = 0x10000\n\tS_IFLNK                       = 0xa000\n\tS_IFMPX                       = 0x2200\n\tS_IFMT                        = 0xf000\n\tS_IFPDIR                      = 0x4000000\n\tS_IFPSDIR                     = 0x8000000\n\tS_IFPSSDIR                    = 0xc000000\n\tS_IFREG                       = 0x8000\n\tS_IFSOCK                      = 0xc000\n\tS_IFSYSEA                     = 0x30000000\n\tS_INPUT                       = 0x1\n\tS_IREAD                       = 0x100\n\tS_IRGRP                       = 0x20\n\tS_IROTH                       = 0x4\n\tS_IRUSR                       = 0x100\n\tS_IRWXG                       = 0x38\n\tS_IRWXO                       = 0x7\n\tS_IRWXU                       = 0x1c0\n\tS_ISGID                       = 0x400\n\tS_ISUID                       = 0x800\n\tS_ISVTX                       = 0x200\n\tS_ITCB                        = 0x1000000\n\tS_ITP                         = 0x800000\n\tS_IWGRP                       = 0x10\n\tS_IWOTH                       = 0x2\n\tS_IWRITE                      = 0x80\n\tS_IWUSR                       = 0x80\n\tS_IXACL                       = 0x2000000\n\tS_IXATTR                      = 0x40000\n\tS_IXGRP                       = 0x8\n\tS_IXINTERFACE                 = 0x100000\n\tS_IXMOD                       = 0x40000000\n\tS_IXOTH                       = 0x1\n\tS_IXUSR                       = 0x40\n\tS_MSG                         = 0x8\n\tS_OUTPUT                      = 0x4\n\tS_RDBAND                      = 0x20\n\tS_RDNORM                      = 0x10\n\tS_RESERVED1                   = 0x20000\n\tS_RESERVED2                   = 0x200000\n\tS_RESERVED3                   = 0x400000\n\tS_RESERVED4                   = 0x80000000\n\tS_RESFMT1                     = 0x10000000\n\tS_RESFMT10                    = 0x34000000\n\tS_RESFMT11                    = 0x38000000\n\tS_RESFMT12                    = 0x3c000000\n\tS_RESFMT2                     = 0x14000000\n\tS_RESFMT3                     = 0x18000000\n\tS_RESFMT4                     = 0x1c000000\n\tS_RESFMT5                     = 0x20000000\n\tS_RESFMT6                     = 0x24000000\n\tS_RESFMT7                     = 0x28000000\n\tS_RESFMT8                     = 0x2c000000\n\tS_WRBAND                      = 0x80\n\tS_WRNORM                      = 0x40\n\tTAB0                          = 0x0\n\tTAB1                          = 0x400\n\tTAB2                          = 0x800\n\tTAB3                          = 0xc00\n\tTABDLY                        = 0xc00\n\tTCFLSH                        = 0x540c\n\tTCGETA                        = 0x5405\n\tTCGETS                        = 0x5401\n\tTCIFLUSH                      = 0x0\n\tTCIOFF                        = 0x2\n\tTCIOFLUSH                     = 0x2\n\tTCION                         = 0x3\n\tTCOFLUSH                      = 0x1\n\tTCOOFF                        = 0x0\n\tTCOON                         = 0x1\n\tTCP_24DAYS_WORTH_OF_SLOWTICKS = 0x3f4800\n\tTCP_ACLADD                    = 0x23\n\tTCP_ACLBIND                   = 0x26\n\tTCP_ACLCLEAR                  = 0x22\n\tTCP_ACLDEL                    = 0x24\n\tTCP_ACLDENY                   = 0x8\n\tTCP_ACLFLUSH                  = 0x21\n\tTCP_ACLGID                    = 0x1\n\tTCP_ACLLS                     = 0x25\n\tTCP_ACLSUBNET                 = 0x4\n\tTCP_ACLUID                    = 0x2\n\tTCP_CWND_DF                   = 0x16\n\tTCP_CWND_IF                   = 0x15\n\tTCP_DELAY_ACK_FIN             = 0x2\n\tTCP_DELAY_ACK_SYN             = 0x1\n\tTCP_FASTNAME                  = 0x101080a\n\tTCP_KEEPCNT                   = 0x13\n\tTCP_KEEPIDLE                  = 0x11\n\tTCP_KEEPINTVL                 = 0x12\n\tTCP_LSPRIV                    = 0x29\n\tTCP_LUID                      = 0x20\n\tTCP_MAXBURST                  = 0x8\n\tTCP_MAXDF                     = 0x64\n\tTCP_MAXIF                     = 0x64\n\tTCP_MAXSEG                    = 0x2\n\tTCP_MAXWIN                    = 0xffff\n\tTCP_MAXWINDOWSCALE            = 0xe\n\tTCP_MAX_SACK                  = 0x4\n\tTCP_MSS                       = 0x5b4\n\tTCP_NODELAY                   = 0x1\n\tTCP_NODELAYACK                = 0x14\n\tTCP_NOREDUCE_CWND_EXIT_FRXMT  = 0x19\n\tTCP_NOREDUCE_CWND_IN_FRXMT    = 0x18\n\tTCP_NOTENTER_SSTART           = 0x17\n\tTCP_OPT                       = 0x19\n\tTCP_RFC1323                   = 0x4\n\tTCP_SETPRIV                   = 0x27\n\tTCP_STDURG                    = 0x10\n\tTCP_TIMESTAMP_OPTLEN          = 0xc\n\tTCP_UNSETPRIV                 = 0x28\n\tTCSAFLUSH                     = 0x2\n\tTCSBRK                        = 0x5409\n\tTCSETA                        = 0x5406\n\tTCSETAF                       = 0x5408\n\tTCSETAW                       = 0x5407\n\tTCSETS                        = 0x5402\n\tTCSETSF                       = 0x5404\n\tTCSETSW                       = 0x5403\n\tTCXONC                        = 0x540b\n\tTIMER_ABSTIME                 = 0x3e7\n\tTIMER_MAX                     = 0x20\n\tTIOC                          = 0x5400\n\tTIOCCBRK                      = 0x2000747a\n\tTIOCCDTR                      = 0x20007478\n\tTIOCCONS                      = 0x80047462\n\tTIOCEXCL                      = 0x2000740d\n\tTIOCFLUSH                     = 0x80047410\n\tTIOCGETC                      = 0x40067412\n\tTIOCGETD                      = 0x40047400\n\tTIOCGETP                      = 0x40067408\n\tTIOCGLTC                      = 0x40067474\n\tTIOCGPGRP                     = 0x40047477\n\tTIOCGSID                      = 0x40047448\n\tTIOCGSIZE                     = 0x40087468\n\tTIOCGWINSZ                    = 0x40087468\n\tTIOCHPCL                      = 0x20007402\n\tTIOCLBIC                      = 0x8004747e\n\tTIOCLBIS                      = 0x8004747f\n\tTIOCLGET                      = 0x4004747c\n\tTIOCLSET                      = 0x8004747d\n\tTIOCMBIC                      = 0x8004746b\n\tTIOCMBIS                      = 0x8004746c\n\tTIOCMGET                      = 0x4004746a\n\tTIOCMIWAIT                    = 0x80047464\n\tTIOCMODG                      = 0x40047403\n\tTIOCMODS                      = 0x80047404\n\tTIOCMSET                      = 0x8004746d\n\tTIOCM_CAR                     = 0x40\n\tTIOCM_CD                      = 0x40\n\tTIOCM_CTS                     = 0x20\n\tTIOCM_DSR                     = 0x100\n\tTIOCM_DTR                     = 0x2\n\tTIOCM_LE                      = 0x1\n\tTIOCM_RI                      = 0x80\n\tTIOCM_RNG                     = 0x80\n\tTIOCM_RTS                     = 0x4\n\tTIOCM_SR                      = 0x10\n\tTIOCM_ST                      = 0x8\n\tTIOCNOTTY                     = 0x20007471\n\tTIOCNXCL                      = 0x2000740e\n\tTIOCOUTQ                      = 0x40047473\n\tTIOCPKT                       = 0x80047470\n\tTIOCPKT_DATA                  = 0x0\n\tTIOCPKT_DOSTOP                = 0x20\n\tTIOCPKT_FLUSHREAD             = 0x1\n\tTIOCPKT_FLUSHWRITE            = 0x2\n\tTIOCPKT_NOSTOP                = 0x10\n\tTIOCPKT_START                 = 0x8\n\tTIOCPKT_STOP                  = 0x4\n\tTIOCREMOTE                    = 0x80047469\n\tTIOCSBRK                      = 0x2000747b\n\tTIOCSDTR                      = 0x20007479\n\tTIOCSETC                      = 0x80067411\n\tTIOCSETD                      = 0x80047401\n\tTIOCSETN                      = 0x8006740a\n\tTIOCSETP                      = 0x80067409\n\tTIOCSLTC                      = 0x80067475\n\tTIOCSPGRP                     = 0x80047476\n\tTIOCSSIZE                     = 0x80087467\n\tTIOCSTART                     = 0x2000746e\n\tTIOCSTI                       = 0x80017472\n\tTIOCSTOP                      = 0x2000746f\n\tTIOCSWINSZ                    = 0x80087467\n\tTIOCUCNTL                     = 0x80047466\n\tTOSTOP                        = 0x10000\n\tUTIME_NOW                     = -0x2\n\tUTIME_OMIT                    = -0x3\n\tVDISCRD                       = 0xc\n\tVDSUSP                        = 0xa\n\tVEOF                          = 0x4\n\tVEOL                          = 0x5\n\tVEOL2                         = 0x6\n\tVERASE                        = 0x2\n\tVINTR                         = 0x0\n\tVKILL                         = 0x3\n\tVLNEXT                        = 0xe\n\tVMIN                          = 0x4\n\tVQUIT                         = 0x1\n\tVREPRINT                      = 0xb\n\tVSTART                        = 0x7\n\tVSTOP                         = 0x8\n\tVSTRT                         = 0x7\n\tVSUSP                         = 0x9\n\tVT0                           = 0x0\n\tVT1                           = 0x8000\n\tVTDELAY                       = 0x2000\n\tVTDLY                         = 0x8000\n\tVTIME                         = 0x5\n\tVWERSE                        = 0xd\n\tWPARSTART                     = 0x1\n\tWPARSTOP                      = 0x2\n\tWPARTTYNAME                   = \"Global\"\n\tXCASE                         = 0x4\n\tXTABS                         = 0xc00\n\t_FDATAFLUSH                   = 0x2000000000\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x43)\n\tEADDRNOTAVAIL   = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x42)\n\tEAGAIN          = syscall.Errno(0xb)\n\tEALREADY        = syscall.Errno(0x38)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x78)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x75)\n\tECHILD          = syscall.Errno(0xa)\n\tECHRNG          = syscall.Errno(0x25)\n\tECLONEME        = syscall.Errno(0x52)\n\tECONNABORTED    = syscall.Errno(0x48)\n\tECONNREFUSED    = syscall.Errno(0x4f)\n\tECONNRESET      = syscall.Errno(0x49)\n\tECORRUPT        = syscall.Errno(0x59)\n\tEDEADLK         = syscall.Errno(0x2d)\n\tEDESTADDREQ     = syscall.Errno(0x3a)\n\tEDESTADDRREQ    = syscall.Errno(0x3a)\n\tEDIST           = syscall.Errno(0x35)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x58)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFORMAT         = syscall.Errno(0x30)\n\tEHOSTDOWN       = syscall.Errno(0x50)\n\tEHOSTUNREACH    = syscall.Errno(0x51)\n\tEIDRM           = syscall.Errno(0x24)\n\tEILSEQ          = syscall.Errno(0x74)\n\tEINPROGRESS     = syscall.Errno(0x37)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x4b)\n\tEISDIR          = syscall.Errno(0x15)\n\tEL2HLT          = syscall.Errno(0x2c)\n\tEL2NSYNC        = syscall.Errno(0x26)\n\tEL3HLT          = syscall.Errno(0x27)\n\tEL3RST          = syscall.Errno(0x28)\n\tELNRNG          = syscall.Errno(0x29)\n\tELOOP           = syscall.Errno(0x55)\n\tEMEDIA          = syscall.Errno(0x6e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x3b)\n\tEMULTIHOP       = syscall.Errno(0x7d)\n\tENAMETOOLONG    = syscall.Errno(0x56)\n\tENETDOWN        = syscall.Errno(0x45)\n\tENETRESET       = syscall.Errno(0x47)\n\tENETUNREACH     = syscall.Errno(0x46)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x70)\n\tENOBUFS         = syscall.Errno(0x4a)\n\tENOCONNECT      = syscall.Errno(0x32)\n\tENOCSI          = syscall.Errno(0x2b)\n\tENODATA         = syscall.Errno(0x7a)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x31)\n\tENOLINK         = syscall.Errno(0x7e)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x23)\n\tENOPROTOOPT     = syscall.Errno(0x3d)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x76)\n\tENOSTR          = syscall.Errno(0x7b)\n\tENOSYS          = syscall.Errno(0x6d)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x4c)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x11)\n\tENOTREADY       = syscall.Errno(0x2e)\n\tENOTRECOVERABLE = syscall.Errno(0x5e)\n\tENOTRUST        = syscall.Errno(0x72)\n\tENOTSOCK        = syscall.Errno(0x39)\n\tENOTSUP         = syscall.Errno(0x7c)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x40)\n\tEOVERFLOW       = syscall.Errno(0x7f)\n\tEOWNERDEAD      = syscall.Errno(0x5f)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x41)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x53)\n\tEPROTO          = syscall.Errno(0x79)\n\tEPROTONOSUPPORT = syscall.Errno(0x3e)\n\tEPROTOTYPE      = syscall.Errno(0x3c)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x5d)\n\tERESTART        = syscall.Errno(0x52)\n\tEROFS           = syscall.Errno(0x1e)\n\tESAD            = syscall.Errno(0x71)\n\tESHUTDOWN       = syscall.Errno(0x4d)\n\tESOCKTNOSUPPORT = syscall.Errno(0x3f)\n\tESOFT           = syscall.Errno(0x6f)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x34)\n\tESYSERROR       = syscall.Errno(0x5a)\n\tETIME           = syscall.Errno(0x77)\n\tETIMEDOUT       = syscall.Errno(0x4e)\n\tETOOMANYREFS    = syscall.Errno(0x73)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUNATCH         = syscall.Errno(0x2a)\n\tEUSERS          = syscall.Errno(0x54)\n\tEWOULDBLOCK     = syscall.Errno(0xb)\n\tEWRPROTECT      = syscall.Errno(0x2f)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT     = syscall.Signal(0x6)\n\tSIGAIO      = syscall.Signal(0x17)\n\tSIGALRM     = syscall.Signal(0xe)\n\tSIGALRM1    = syscall.Signal(0x26)\n\tSIGBUS      = syscall.Signal(0xa)\n\tSIGCAPI     = syscall.Signal(0x31)\n\tSIGCHLD     = syscall.Signal(0x14)\n\tSIGCLD      = syscall.Signal(0x14)\n\tSIGCONT     = syscall.Signal(0x13)\n\tSIGCPUFAIL  = syscall.Signal(0x3b)\n\tSIGDANGER   = syscall.Signal(0x21)\n\tSIGEMT      = syscall.Signal(0x7)\n\tSIGFPE      = syscall.Signal(0x8)\n\tSIGGRANT    = syscall.Signal(0x3c)\n\tSIGHUP      = syscall.Signal(0x1)\n\tSIGILL      = syscall.Signal(0x4)\n\tSIGINT      = syscall.Signal(0x2)\n\tSIGIO       = syscall.Signal(0x17)\n\tSIGIOINT    = syscall.Signal(0x10)\n\tSIGIOT      = syscall.Signal(0x6)\n\tSIGKAP      = syscall.Signal(0x3c)\n\tSIGKILL     = syscall.Signal(0x9)\n\tSIGLOST     = syscall.Signal(0x6)\n\tSIGMAX      = syscall.Signal(0x3f)\n\tSIGMAX32    = syscall.Signal(0x3f)\n\tSIGMIGRATE  = syscall.Signal(0x23)\n\tSIGMSG      = syscall.Signal(0x1b)\n\tSIGPIPE     = syscall.Signal(0xd)\n\tSIGPOLL     = syscall.Signal(0x17)\n\tSIGPRE      = syscall.Signal(0x24)\n\tSIGPROF     = syscall.Signal(0x20)\n\tSIGPTY      = syscall.Signal(0x17)\n\tSIGPWR      = syscall.Signal(0x1d)\n\tSIGQUIT     = syscall.Signal(0x3)\n\tSIGRECONFIG = syscall.Signal(0x3a)\n\tSIGRETRACT  = syscall.Signal(0x3d)\n\tSIGSAK      = syscall.Signal(0x3f)\n\tSIGSEGV     = syscall.Signal(0xb)\n\tSIGSOUND    = syscall.Signal(0x3e)\n\tSIGSTOP     = syscall.Signal(0x11)\n\tSIGSYS      = syscall.Signal(0xc)\n\tSIGSYSERROR = syscall.Signal(0x30)\n\tSIGTALRM    = syscall.Signal(0x26)\n\tSIGTERM     = syscall.Signal(0xf)\n\tSIGTRAP     = syscall.Signal(0x5)\n\tSIGTSTP     = syscall.Signal(0x12)\n\tSIGTTIN     = syscall.Signal(0x15)\n\tSIGTTOU     = syscall.Signal(0x16)\n\tSIGURG      = syscall.Signal(0x10)\n\tSIGUSR1     = syscall.Signal(0x1e)\n\tSIGUSR2     = syscall.Signal(0x1f)\n\tSIGVIRT     = syscall.Signal(0x25)\n\tSIGVTALRM   = syscall.Signal(0x22)\n\tSIGWAITING  = syscall.Signal(0x27)\n\tSIGWINCH    = syscall.Signal(0x1c)\n\tSIGXCPU     = syscall.Signal(0x18)\n\tSIGXFSZ     = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"not owner\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"I/O error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"arg list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file number\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EWOULDBLOCK\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"not enough space\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"ENOTEMPTY\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"file table overflow\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"not a typewriter\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"ENOMSG\", \"no message of desired type\"},\n\t{36, \"EIDRM\", \"identifier removed\"},\n\t{37, \"ECHRNG\", \"channel number out of range\"},\n\t{38, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{39, \"EL3HLT\", \"level 3 halted\"},\n\t{40, \"EL3RST\", \"level 3 reset\"},\n\t{41, \"ELNRNG\", \"link number out of range\"},\n\t{42, \"EUNATCH\", \"protocol driver not attached\"},\n\t{43, \"ENOCSI\", \"no CSI structure available\"},\n\t{44, \"EL2HLT\", \"level 2 halted\"},\n\t{45, \"EDEADLK\", \"deadlock condition if locked\"},\n\t{46, \"ENOTREADY\", \"device not ready\"},\n\t{47, \"EWRPROTECT\", \"write-protected media\"},\n\t{48, \"EFORMAT\", \"unformatted or incompatible media\"},\n\t{49, \"ENOLCK\", \"no locks available\"},\n\t{50, \"ENOCONNECT\", \"cannot Establish Connection\"},\n\t{52, \"ESTALE\", \"missing file or filesystem\"},\n\t{53, \"EDIST\", \"requests blocked by Administrator\"},\n\t{55, \"EINPROGRESS\", \"operation now in progress\"},\n\t{56, \"EALREADY\", \"operation already in progress\"},\n\t{57, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{58, \"EDESTADDREQ\", \"destination address required\"},\n\t{59, \"EMSGSIZE\", \"message too long\"},\n\t{60, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{61, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{62, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{63, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{64, \"EOPNOTSUPP\", \"operation not supported on socket\"},\n\t{65, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{66, \"EAFNOSUPPORT\", \"addr family not supported by protocol\"},\n\t{67, \"EADDRINUSE\", \"address already in use\"},\n\t{68, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{69, \"ENETDOWN\", \"network is down\"},\n\t{70, \"ENETUNREACH\", \"network is unreachable\"},\n\t{71, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{72, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{73, \"ECONNRESET\", \"connection reset by peer\"},\n\t{74, \"ENOBUFS\", \"no buffer space available\"},\n\t{75, \"EISCONN\", \"socket is already connected\"},\n\t{76, \"ENOTCONN\", \"socket is not connected\"},\n\t{77, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{78, \"ETIMEDOUT\", \"connection timed out\"},\n\t{79, \"ECONNREFUSED\", \"connection refused\"},\n\t{80, \"EHOSTDOWN\", \"host is down\"},\n\t{81, \"EHOSTUNREACH\", \"no route to host\"},\n\t{82, \"ERESTART\", \"restart the system call\"},\n\t{83, \"EPROCLIM\", \"too many processes\"},\n\t{84, \"EUSERS\", \"too many users\"},\n\t{85, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{86, \"ENAMETOOLONG\", \"file name too long\"},\n\t{88, \"EDQUOT\", \"disk quota exceeded\"},\n\t{89, \"ECORRUPT\", \"invalid file system control data detected\"},\n\t{90, \"ESYSERROR\", \"for future use \"},\n\t{93, \"EREMOTE\", \"item is not local to host\"},\n\t{94, \"ENOTRECOVERABLE\", \"state not recoverable \"},\n\t{95, \"EOWNERDEAD\", \"previous owner died \"},\n\t{109, \"ENOSYS\", \"function not implemented\"},\n\t{110, \"EMEDIA\", \"media surface error\"},\n\t{111, \"ESOFT\", \"I/O completed, but needs relocation\"},\n\t{112, \"ENOATTR\", \"no attribute found\"},\n\t{113, \"ESAD\", \"security Authentication Denied\"},\n\t{114, \"ENOTRUST\", \"not a Trusted Program\"},\n\t{115, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{116, \"EILSEQ\", \"invalid wide character\"},\n\t{117, \"ECANCELED\", \"asynchronous I/O cancelled\"},\n\t{118, \"ENOSR\", \"out of STREAMS resources\"},\n\t{119, \"ETIME\", \"system call timed out\"},\n\t{120, \"EBADMSG\", \"next message has wrong type\"},\n\t{121, \"EPROTO\", \"error in protocol\"},\n\t{122, \"ENODATA\", \"no message on stream head read q\"},\n\t{123, \"ENOSTR\", \"fd not associated with a stream\"},\n\t{124, \"ENOTSUP\", \"unsupported attribute value\"},\n\t{125, \"EMULTIHOP\", \"multihop is not allowed\"},\n\t{126, \"ENOLINK\", \"the server link has been severed\"},\n\t{127, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"IOT/Abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"stopped (signal)\"},\n\t{18, \"SIGTSTP\", \"stopped\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible/complete\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{27, \"SIGMSG\", \"input device data\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGPWR\", \"power-failure\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGPROF\", \"profiling timer expired\"},\n\t{33, \"SIGDANGER\", \"paging space low\"},\n\t{34, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{35, \"SIGMIGRATE\", \"signal 35\"},\n\t{36, \"SIGPRE\", \"signal 36\"},\n\t{37, \"SIGVIRT\", \"signal 37\"},\n\t{38, \"SIGTALRM\", \"signal 38\"},\n\t{39, \"SIGWAITING\", \"signal 39\"},\n\t{48, \"SIGSYSERROR\", \"signal 48\"},\n\t{49, \"SIGCAPI\", \"signal 49\"},\n\t{58, \"SIGRECONFIG\", \"signal 58\"},\n\t{59, \"SIGCPUFAIL\", \"CPU Failure Predicted\"},\n\t{60, \"SIGKAP\", \"monitor mode granted\"},\n\t{61, \"SIGRETRACT\", \"monitor mode retracted\"},\n\t{62, \"SIGSOUND\", \"sound completed\"},\n\t{63, \"SIGSAK\", \"secure attention\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go",
    "content": "// mkerrors.sh -maix64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc64,aix\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -maix64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                  = 0x10\n\tAF_BYPASS                     = 0x19\n\tAF_CCITT                      = 0xa\n\tAF_CHAOS                      = 0x5\n\tAF_DATAKIT                    = 0x9\n\tAF_DECnet                     = 0xc\n\tAF_DLI                        = 0xd\n\tAF_ECMA                       = 0x8\n\tAF_HYLINK                     = 0xf\n\tAF_IMPLINK                    = 0x3\n\tAF_INET                       = 0x2\n\tAF_INET6                      = 0x18\n\tAF_INTF                       = 0x14\n\tAF_ISO                        = 0x7\n\tAF_LAT                        = 0xe\n\tAF_LINK                       = 0x12\n\tAF_LOCAL                      = 0x1\n\tAF_MAX                        = 0x1e\n\tAF_NDD                        = 0x17\n\tAF_NETWARE                    = 0x16\n\tAF_NS                         = 0x6\n\tAF_OSI                        = 0x7\n\tAF_PUP                        = 0x4\n\tAF_RIF                        = 0x15\n\tAF_ROUTE                      = 0x11\n\tAF_SNA                        = 0xb\n\tAF_UNIX                       = 0x1\n\tAF_UNSPEC                     = 0x0\n\tALTWERASE                     = 0x400000\n\tARPHRD_802_3                  = 0x6\n\tARPHRD_802_5                  = 0x6\n\tARPHRD_ETHER                  = 0x1\n\tARPHRD_FDDI                   = 0x1\n\tB0                            = 0x0\n\tB110                          = 0x3\n\tB1200                         = 0x9\n\tB134                          = 0x4\n\tB150                          = 0x5\n\tB1800                         = 0xa\n\tB19200                        = 0xe\n\tB200                          = 0x6\n\tB2400                         = 0xb\n\tB300                          = 0x7\n\tB38400                        = 0xf\n\tB4800                         = 0xc\n\tB50                           = 0x1\n\tB600                          = 0x8\n\tB75                           = 0x2\n\tB9600                         = 0xd\n\tBRKINT                        = 0x2\n\tBS0                           = 0x0\n\tBS1                           = 0x1000\n\tBSDLY                         = 0x1000\n\tCAP_AACCT                     = 0x6\n\tCAP_ARM_APPLICATION           = 0x5\n\tCAP_BYPASS_RAC_VMM            = 0x3\n\tCAP_CLEAR                     = 0x0\n\tCAP_CREDENTIALS               = 0x7\n\tCAP_EFFECTIVE                 = 0x1\n\tCAP_EWLM_AGENT                = 0x4\n\tCAP_INHERITABLE               = 0x2\n\tCAP_MAXIMUM                   = 0x7\n\tCAP_NUMA_ATTACH               = 0x2\n\tCAP_PERMITTED                 = 0x3\n\tCAP_PROPAGATE                 = 0x1\n\tCAP_PROPOGATE                 = 0x1\n\tCAP_SET                       = 0x1\n\tCBAUD                         = 0xf\n\tCFLUSH                        = 0xf\n\tCIBAUD                        = 0xf0000\n\tCLOCAL                        = 0x800\n\tCLOCK_MONOTONIC               = 0xa\n\tCLOCK_PROCESS_CPUTIME_ID      = 0xb\n\tCLOCK_REALTIME                = 0x9\n\tCLOCK_THREAD_CPUTIME_ID       = 0xc\n\tCR0                           = 0x0\n\tCR1                           = 0x100\n\tCR2                           = 0x200\n\tCR3                           = 0x300\n\tCRDLY                         = 0x300\n\tCREAD                         = 0x80\n\tCS5                           = 0x0\n\tCS6                           = 0x10\n\tCS7                           = 0x20\n\tCS8                           = 0x30\n\tCSIOCGIFCONF                  = -0x3fef96dc\n\tCSIZE                         = 0x30\n\tCSMAP_DIR                     = \"/usr/lib/nls/csmap/\"\n\tCSTART                        = '\\021'\n\tCSTOP                         = '\\023'\n\tCSTOPB                        = 0x40\n\tCSUSP                         = 0x1a\n\tECHO                          = 0x8\n\tECHOCTL                       = 0x20000\n\tECHOE                         = 0x10\n\tECHOK                         = 0x20\n\tECHOKE                        = 0x80000\n\tECHONL                        = 0x40\n\tECHOPRT                       = 0x40000\n\tECH_ICMPID                    = 0x2\n\tETHERNET_CSMACD               = 0x6\n\tEVENP                         = 0x80\n\tEXCONTINUE                    = 0x0\n\tEXDLOK                        = 0x3\n\tEXIO                          = 0x2\n\tEXPGIO                        = 0x0\n\tEXRESUME                      = 0x2\n\tEXRETURN                      = 0x1\n\tEXSIG                         = 0x4\n\tEXTA                          = 0xe\n\tEXTB                          = 0xf\n\tEXTRAP                        = 0x1\n\tEYEC_RTENTRYA                 = 0x257274656e747241\n\tEYEC_RTENTRYF                 = 0x257274656e747246\n\tE_ACC                         = 0x0\n\tFD_CLOEXEC                    = 0x1\n\tFD_SETSIZE                    = 0xfffe\n\tFF0                           = 0x0\n\tFF1                           = 0x2000\n\tFFDLY                         = 0x2000\n\tFLUSHBAND                     = 0x40\n\tFLUSHLOW                      = 0x8\n\tFLUSHO                        = 0x100000\n\tFLUSHR                        = 0x1\n\tFLUSHRW                       = 0x3\n\tFLUSHW                        = 0x2\n\tF_CLOSEM                      = 0xa\n\tF_DUP2FD                      = 0xe\n\tF_DUPFD                       = 0x0\n\tF_GETFD                       = 0x1\n\tF_GETFL                       = 0x3\n\tF_GETLK                       = 0xb\n\tF_GETLK64                     = 0xb\n\tF_GETOWN                      = 0x8\n\tF_LOCK                        = 0x1\n\tF_OK                          = 0x0\n\tF_RDLCK                       = 0x1\n\tF_SETFD                       = 0x2\n\tF_SETFL                       = 0x4\n\tF_SETLK                       = 0xc\n\tF_SETLK64                     = 0xc\n\tF_SETLKW                      = 0xd\n\tF_SETLKW64                    = 0xd\n\tF_SETOWN                      = 0x9\n\tF_TEST                        = 0x3\n\tF_TLOCK                       = 0x2\n\tF_TSTLK                       = 0xf\n\tF_ULOCK                       = 0x0\n\tF_UNLCK                       = 0x3\n\tF_WRLCK                       = 0x2\n\tHUPCL                         = 0x400\n\tIBSHIFT                       = 0x10\n\tICANON                        = 0x2\n\tICMP6_FILTER                  = 0x26\n\tICMP6_SEC_SEND_DEL            = 0x46\n\tICMP6_SEC_SEND_GET            = 0x47\n\tICMP6_SEC_SEND_SET            = 0x44\n\tICMP6_SEC_SEND_SET_CGA_ADDR   = 0x45\n\tICRNL                         = 0x100\n\tIEXTEN                        = 0x200000\n\tIFA_FIRSTALIAS                = 0x2000\n\tIFA_ROUTE                     = 0x1\n\tIFF_64BIT                     = 0x4000000\n\tIFF_ALLCAST                   = 0x20000\n\tIFF_ALLMULTI                  = 0x200\n\tIFF_BPF                       = 0x8000000\n\tIFF_BRIDGE                    = 0x40000\n\tIFF_BROADCAST                 = 0x2\n\tIFF_CANTCHANGE                = 0x80c52\n\tIFF_CHECKSUM_OFFLOAD          = 0x10000000\n\tIFF_D1                        = 0x8000\n\tIFF_D2                        = 0x4000\n\tIFF_D3                        = 0x2000\n\tIFF_D4                        = 0x1000\n\tIFF_DEBUG                     = 0x4\n\tIFF_DEVHEALTH                 = 0x4000\n\tIFF_DO_HW_LOOPBACK            = 0x10000\n\tIFF_GROUP_ROUTING             = 0x2000000\n\tIFF_IFBUFMGT                  = 0x800000\n\tIFF_LINK0                     = 0x100000\n\tIFF_LINK1                     = 0x200000\n\tIFF_LINK2                     = 0x400000\n\tIFF_LOOPBACK                  = 0x8\n\tIFF_MULTICAST                 = 0x80000\n\tIFF_NOARP                     = 0x80\n\tIFF_NOECHO                    = 0x800\n\tIFF_NOTRAILERS                = 0x20\n\tIFF_OACTIVE                   = 0x400\n\tIFF_POINTOPOINT               = 0x10\n\tIFF_PROMISC                   = 0x100\n\tIFF_PSEG                      = 0x40000000\n\tIFF_RUNNING                   = 0x40\n\tIFF_SIMPLEX                   = 0x800\n\tIFF_SNAP                      = 0x8000\n\tIFF_TCP_DISABLE_CKSUM         = 0x20000000\n\tIFF_TCP_NOCKSUM               = 0x1000000\n\tIFF_UP                        = 0x1\n\tIFF_VIPA                      = 0x80000000\n\tIFNAMSIZ                      = 0x10\n\tIFO_FLUSH                     = 0x1\n\tIFT_1822                      = 0x2\n\tIFT_AAL5                      = 0x31\n\tIFT_ARCNET                    = 0x23\n\tIFT_ARCNETPLUS                = 0x24\n\tIFT_ATM                       = 0x25\n\tIFT_CEPT                      = 0x13\n\tIFT_CLUSTER                   = 0x3e\n\tIFT_DS3                       = 0x1e\n\tIFT_EON                       = 0x19\n\tIFT_ETHER                     = 0x6\n\tIFT_FCS                       = 0x3a\n\tIFT_FDDI                      = 0xf\n\tIFT_FRELAY                    = 0x20\n\tIFT_FRELAYDCE                 = 0x2c\n\tIFT_GIFTUNNEL                 = 0x3c\n\tIFT_HDH1822                   = 0x3\n\tIFT_HF                        = 0x3d\n\tIFT_HIPPI                     = 0x2f\n\tIFT_HSSI                      = 0x2e\n\tIFT_HY                        = 0xe\n\tIFT_IB                        = 0xc7\n\tIFT_ISDNBASIC                 = 0x14\n\tIFT_ISDNPRIMARY               = 0x15\n\tIFT_ISO88022LLC               = 0x29\n\tIFT_ISO88023                  = 0x7\n\tIFT_ISO88024                  = 0x8\n\tIFT_ISO88025                  = 0x9\n\tIFT_ISO88026                  = 0xa\n\tIFT_LAPB                      = 0x10\n\tIFT_LOCALTALK                 = 0x2a\n\tIFT_LOOP                      = 0x18\n\tIFT_MIOX25                    = 0x26\n\tIFT_MODEM                     = 0x30\n\tIFT_NSIP                      = 0x1b\n\tIFT_OTHER                     = 0x1\n\tIFT_P10                       = 0xc\n\tIFT_P80                       = 0xd\n\tIFT_PARA                      = 0x22\n\tIFT_PPP                       = 0x17\n\tIFT_PROPMUX                   = 0x36\n\tIFT_PROPVIRTUAL               = 0x35\n\tIFT_PTPSERIAL                 = 0x16\n\tIFT_RS232                     = 0x21\n\tIFT_SDLC                      = 0x11\n\tIFT_SIP                       = 0x1f\n\tIFT_SLIP                      = 0x1c\n\tIFT_SMDSDXI                   = 0x2b\n\tIFT_SMDSICIP                  = 0x34\n\tIFT_SN                        = 0x38\n\tIFT_SONET                     = 0x27\n\tIFT_SONETPATH                 = 0x32\n\tIFT_SONETVT                   = 0x33\n\tIFT_SP                        = 0x39\n\tIFT_STARLAN                   = 0xb\n\tIFT_T1                        = 0x12\n\tIFT_TUNNEL                    = 0x3b\n\tIFT_ULTRA                     = 0x1d\n\tIFT_V35                       = 0x2d\n\tIFT_VIPA                      = 0x37\n\tIFT_X25                       = 0x5\n\tIFT_X25DDN                    = 0x4\n\tIFT_X25PLE                    = 0x28\n\tIFT_XETHER                    = 0x1a\n\tIGNBRK                        = 0x1\n\tIGNCR                         = 0x80\n\tIGNPAR                        = 0x4\n\tIMAXBEL                       = 0x10000\n\tINLCR                         = 0x40\n\tINPCK                         = 0x10\n\tIN_CLASSA_HOST                = 0xffffff\n\tIN_CLASSA_MAX                 = 0x80\n\tIN_CLASSA_NET                 = 0xff000000\n\tIN_CLASSA_NSHIFT              = 0x18\n\tIN_CLASSB_HOST                = 0xffff\n\tIN_CLASSB_MAX                 = 0x10000\n\tIN_CLASSB_NET                 = 0xffff0000\n\tIN_CLASSB_NSHIFT              = 0x10\n\tIN_CLASSC_HOST                = 0xff\n\tIN_CLASSC_NET                 = 0xffffff00\n\tIN_CLASSC_NSHIFT              = 0x8\n\tIN_CLASSD_HOST                = 0xfffffff\n\tIN_CLASSD_NET                 = 0xf0000000\n\tIN_CLASSD_NSHIFT              = 0x1c\n\tIN_LOOPBACKNET                = 0x7f\n\tIN_USE                        = 0x1\n\tIPPROTO_AH                    = 0x33\n\tIPPROTO_BIP                   = 0x53\n\tIPPROTO_DSTOPTS               = 0x3c\n\tIPPROTO_EGP                   = 0x8\n\tIPPROTO_EON                   = 0x50\n\tIPPROTO_ESP                   = 0x32\n\tIPPROTO_FRAGMENT              = 0x2c\n\tIPPROTO_GGP                   = 0x3\n\tIPPROTO_GIF                   = 0x8c\n\tIPPROTO_GRE                   = 0x2f\n\tIPPROTO_HOPOPTS               = 0x0\n\tIPPROTO_ICMP                  = 0x1\n\tIPPROTO_ICMPV6                = 0x3a\n\tIPPROTO_IDP                   = 0x16\n\tIPPROTO_IGMP                  = 0x2\n\tIPPROTO_IP                    = 0x0\n\tIPPROTO_IPIP                  = 0x4\n\tIPPROTO_IPV6                  = 0x29\n\tIPPROTO_LOCAL                 = 0x3f\n\tIPPROTO_MAX                   = 0x100\n\tIPPROTO_MH                    = 0x87\n\tIPPROTO_NONE                  = 0x3b\n\tIPPROTO_PUP                   = 0xc\n\tIPPROTO_QOS                   = 0x2d\n\tIPPROTO_RAW                   = 0xff\n\tIPPROTO_ROUTING               = 0x2b\n\tIPPROTO_RSVP                  = 0x2e\n\tIPPROTO_SCTP                  = 0x84\n\tIPPROTO_TCP                   = 0x6\n\tIPPROTO_TP                    = 0x1d\n\tIPPROTO_UDP                   = 0x11\n\tIPV6_ADDRFORM                 = 0x16\n\tIPV6_ADDR_PREFERENCES         = 0x4a\n\tIPV6_ADD_MEMBERSHIP           = 0xc\n\tIPV6_AIXRAWSOCKET             = 0x39\n\tIPV6_CHECKSUM                 = 0x27\n\tIPV6_DONTFRAG                 = 0x2d\n\tIPV6_DROP_MEMBERSHIP          = 0xd\n\tIPV6_DSTOPTS                  = 0x36\n\tIPV6_FLOWINFO_FLOWLABEL       = 0xffffff\n\tIPV6_FLOWINFO_PRIFLOW         = 0xfffffff\n\tIPV6_FLOWINFO_PRIORITY        = 0xf000000\n\tIPV6_FLOWINFO_SRFLAG          = 0x10000000\n\tIPV6_FLOWINFO_VERSION         = 0xf0000000\n\tIPV6_HOPLIMIT                 = 0x28\n\tIPV6_HOPOPTS                  = 0x34\n\tIPV6_JOIN_GROUP               = 0xc\n\tIPV6_LEAVE_GROUP              = 0xd\n\tIPV6_MIPDSTOPTS               = 0x36\n\tIPV6_MULTICAST_HOPS           = 0xa\n\tIPV6_MULTICAST_IF             = 0x9\n\tIPV6_MULTICAST_LOOP           = 0xb\n\tIPV6_NEXTHOP                  = 0x30\n\tIPV6_NOPROBE                  = 0x1c\n\tIPV6_PATHMTU                  = 0x2e\n\tIPV6_PKTINFO                  = 0x21\n\tIPV6_PKTOPTIONS               = 0x24\n\tIPV6_PRIORITY_10              = 0xa000000\n\tIPV6_PRIORITY_11              = 0xb000000\n\tIPV6_PRIORITY_12              = 0xc000000\n\tIPV6_PRIORITY_13              = 0xd000000\n\tIPV6_PRIORITY_14              = 0xe000000\n\tIPV6_PRIORITY_15              = 0xf000000\n\tIPV6_PRIORITY_8               = 0x8000000\n\tIPV6_PRIORITY_9               = 0x9000000\n\tIPV6_PRIORITY_BULK            = 0x4000000\n\tIPV6_PRIORITY_CONTROL         = 0x7000000\n\tIPV6_PRIORITY_FILLER          = 0x1000000\n\tIPV6_PRIORITY_INTERACTIVE     = 0x6000000\n\tIPV6_PRIORITY_RESERVED1       = 0x3000000\n\tIPV6_PRIORITY_RESERVED2       = 0x5000000\n\tIPV6_PRIORITY_UNATTENDED      = 0x2000000\n\tIPV6_PRIORITY_UNCHARACTERIZED = 0x0\n\tIPV6_RECVDSTOPTS              = 0x38\n\tIPV6_RECVHOPLIMIT             = 0x29\n\tIPV6_RECVHOPOPTS              = 0x35\n\tIPV6_RECVHOPS                 = 0x22\n\tIPV6_RECVIF                   = 0x1e\n\tIPV6_RECVPATHMTU              = 0x2f\n\tIPV6_RECVPKTINFO              = 0x23\n\tIPV6_RECVRTHDR                = 0x33\n\tIPV6_RECVSRCRT                = 0x1d\n\tIPV6_RECVTCLASS               = 0x2a\n\tIPV6_RTHDR                    = 0x32\n\tIPV6_RTHDRDSTOPTS             = 0x37\n\tIPV6_RTHDR_TYPE_0             = 0x0\n\tIPV6_RTHDR_TYPE_2             = 0x2\n\tIPV6_SENDIF                   = 0x1f\n\tIPV6_SRFLAG_LOOSE             = 0x0\n\tIPV6_SRFLAG_STRICT            = 0x10000000\n\tIPV6_TCLASS                   = 0x2b\n\tIPV6_TOKEN_LENGTH             = 0x40\n\tIPV6_UNICAST_HOPS             = 0x4\n\tIPV6_USE_MIN_MTU              = 0x2c\n\tIPV6_V6ONLY                   = 0x25\n\tIPV6_VERSION                  = 0x60000000\n\tIP_ADDRFORM                   = 0x16\n\tIP_ADD_MEMBERSHIP             = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP      = 0x3c\n\tIP_BLOCK_SOURCE               = 0x3a\n\tIP_BROADCAST_IF               = 0x10\n\tIP_CACHE_LINE_SIZE            = 0x80\n\tIP_DEFAULT_MULTICAST_LOOP     = 0x1\n\tIP_DEFAULT_MULTICAST_TTL      = 0x1\n\tIP_DF                         = 0x4000\n\tIP_DHCPMODE                   = 0x11\n\tIP_DONTFRAG                   = 0x19\n\tIP_DROP_MEMBERSHIP            = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP     = 0x3d\n\tIP_FINDPMTU                   = 0x1a\n\tIP_HDRINCL                    = 0x2\n\tIP_INC_MEMBERSHIPS            = 0x14\n\tIP_INIT_MEMBERSHIP            = 0x14\n\tIP_MAXPACKET                  = 0xffff\n\tIP_MF                         = 0x2000\n\tIP_MSS                        = 0x240\n\tIP_MULTICAST_HOPS             = 0xa\n\tIP_MULTICAST_IF               = 0x9\n\tIP_MULTICAST_LOOP             = 0xb\n\tIP_MULTICAST_TTL              = 0xa\n\tIP_OPT                        = 0x1b\n\tIP_OPTIONS                    = 0x1\n\tIP_PMTUAGE                    = 0x1b\n\tIP_RECVDSTADDR                = 0x7\n\tIP_RECVIF                     = 0x14\n\tIP_RECVIFINFO                 = 0xf\n\tIP_RECVINTERFACE              = 0x20\n\tIP_RECVMACHDR                 = 0xe\n\tIP_RECVOPTS                   = 0x5\n\tIP_RECVRETOPTS                = 0x6\n\tIP_RECVTTL                    = 0x22\n\tIP_RETOPTS                    = 0x8\n\tIP_SOURCE_FILTER              = 0x48\n\tIP_TOS                        = 0x3\n\tIP_TTL                        = 0x4\n\tIP_UNBLOCK_SOURCE             = 0x3b\n\tIP_UNICAST_HOPS               = 0x4\n\tISIG                          = 0x1\n\tISTRIP                        = 0x20\n\tIUCLC                         = 0x800\n\tIXANY                         = 0x1000\n\tIXOFF                         = 0x400\n\tIXON                          = 0x200\n\tI_FLUSH                       = 0x20005305\n\tLNOFLSH                       = 0x8000\n\tLOCK_EX                       = 0x2\n\tLOCK_NB                       = 0x4\n\tLOCK_SH                       = 0x1\n\tLOCK_UN                       = 0x8\n\tMADV_DONTNEED                 = 0x4\n\tMADV_NORMAL                   = 0x0\n\tMADV_RANDOM                   = 0x1\n\tMADV_SEQUENTIAL               = 0x2\n\tMADV_SPACEAVAIL               = 0x5\n\tMADV_WILLNEED                 = 0x3\n\tMAP_ANON                      = 0x10\n\tMAP_ANONYMOUS                 = 0x10\n\tMAP_FILE                      = 0x0\n\tMAP_FIXED                     = 0x100\n\tMAP_PRIVATE                   = 0x2\n\tMAP_SHARED                    = 0x1\n\tMAP_TYPE                      = 0xf0\n\tMAP_VARIABLE                  = 0x0\n\tMCAST_BLOCK_SOURCE            = 0x40\n\tMCAST_EXCLUDE                 = 0x2\n\tMCAST_INCLUDE                 = 0x1\n\tMCAST_JOIN_GROUP              = 0x3e\n\tMCAST_JOIN_SOURCE_GROUP       = 0x42\n\tMCAST_LEAVE_GROUP             = 0x3f\n\tMCAST_LEAVE_SOURCE_GROUP      = 0x43\n\tMCAST_SOURCE_FILTER           = 0x49\n\tMCAST_UNBLOCK_SOURCE          = 0x41\n\tMCL_CURRENT                   = 0x100\n\tMCL_FUTURE                    = 0x200\n\tMSG_ANY                       = 0x4\n\tMSG_ARGEXT                    = 0x400\n\tMSG_BAND                      = 0x2\n\tMSG_COMPAT                    = 0x8000\n\tMSG_CTRUNC                    = 0x20\n\tMSG_DONTROUTE                 = 0x4\n\tMSG_EOR                       = 0x8\n\tMSG_HIPRI                     = 0x1\n\tMSG_MAXIOVLEN                 = 0x10\n\tMSG_MPEG2                     = 0x80\n\tMSG_NONBLOCK                  = 0x4000\n\tMSG_NOSIGNAL                  = 0x100\n\tMSG_OOB                       = 0x1\n\tMSG_PEEK                      = 0x2\n\tMSG_TRUNC                     = 0x10\n\tMSG_WAITALL                   = 0x40\n\tMSG_WAITFORONE                = 0x200\n\tMS_ASYNC                      = 0x10\n\tMS_EINTR                      = 0x80\n\tMS_INVALIDATE                 = 0x40\n\tMS_PER_SEC                    = 0x3e8\n\tMS_SYNC                       = 0x20\n\tNFDBITS                       = 0x40\n\tNL0                           = 0x0\n\tNL1                           = 0x4000\n\tNL2                           = 0x8000\n\tNL3                           = 0xc000\n\tNLDLY                         = 0x4000\n\tNOFLSH                        = 0x80\n\tNOFLUSH                       = 0x80000000\n\tOCRNL                         = 0x8\n\tOFDEL                         = 0x80\n\tOFILL                         = 0x40\n\tOLCUC                         = 0x2\n\tONLCR                         = 0x4\n\tONLRET                        = 0x20\n\tONOCR                         = 0x10\n\tONOEOT                        = 0x80000\n\tOPOST                         = 0x1\n\tOXTABS                        = 0x40000\n\tO_ACCMODE                     = 0x23\n\tO_APPEND                      = 0x8\n\tO_CIO                         = 0x80\n\tO_CIOR                        = 0x800000000\n\tO_CLOEXEC                     = 0x800000\n\tO_CREAT                       = 0x100\n\tO_DEFER                       = 0x2000\n\tO_DELAY                       = 0x4000\n\tO_DIRECT                      = 0x8000000\n\tO_DIRECTORY                   = 0x80000\n\tO_DSYNC                       = 0x400000\n\tO_EFSOFF                      = 0x400000000\n\tO_EFSON                       = 0x200000000\n\tO_EXCL                        = 0x400\n\tO_EXEC                        = 0x20\n\tO_LARGEFILE                   = 0x4000000\n\tO_NDELAY                      = 0x8000\n\tO_NOCACHE                     = 0x100000\n\tO_NOCTTY                      = 0x800\n\tO_NOFOLLOW                    = 0x1000000\n\tO_NONBLOCK                    = 0x4\n\tO_NONE                        = 0x3\n\tO_NSHARE                      = 0x10000\n\tO_RAW                         = 0x100000000\n\tO_RDONLY                      = 0x0\n\tO_RDWR                        = 0x2\n\tO_RSHARE                      = 0x1000\n\tO_RSYNC                       = 0x200000\n\tO_SEARCH                      = 0x20\n\tO_SNAPSHOT                    = 0x40\n\tO_SYNC                        = 0x10\n\tO_TRUNC                       = 0x200\n\tO_TTY_INIT                    = 0x0\n\tO_WRONLY                      = 0x1\n\tPARENB                        = 0x100\n\tPAREXT                        = 0x100000\n\tPARMRK                        = 0x8\n\tPARODD                        = 0x200\n\tPENDIN                        = 0x20000000\n\tPRIO_PGRP                     = 0x1\n\tPRIO_PROCESS                  = 0x0\n\tPRIO_USER                     = 0x2\n\tPROT_EXEC                     = 0x4\n\tPROT_NONE                     = 0x0\n\tPROT_READ                     = 0x1\n\tPROT_WRITE                    = 0x2\n\tPR_64BIT                      = 0x20\n\tPR_ADDR                       = 0x2\n\tPR_ARGEXT                     = 0x400\n\tPR_ATOMIC                     = 0x1\n\tPR_CONNREQUIRED               = 0x4\n\tPR_FASTHZ                     = 0x5\n\tPR_INP                        = 0x40\n\tPR_INTRLEVEL                  = 0x8000\n\tPR_MLS                        = 0x100\n\tPR_MLS_1_LABEL                = 0x200\n\tPR_NOEOR                      = 0x4000\n\tPR_RIGHTS                     = 0x10\n\tPR_SLOWHZ                     = 0x2\n\tPR_WANTRCVD                   = 0x8\n\tRLIMIT_AS                     = 0x6\n\tRLIMIT_CORE                   = 0x4\n\tRLIMIT_CPU                    = 0x0\n\tRLIMIT_DATA                   = 0x2\n\tRLIMIT_FSIZE                  = 0x1\n\tRLIMIT_NOFILE                 = 0x7\n\tRLIMIT_NPROC                  = 0x9\n\tRLIMIT_RSS                    = 0x5\n\tRLIMIT_STACK                  = 0x3\n\tRLIM_INFINITY                 = 0x7fffffffffffffff\n\tRTAX_AUTHOR                   = 0x6\n\tRTAX_BRD                      = 0x7\n\tRTAX_DST                      = 0x0\n\tRTAX_GATEWAY                  = 0x1\n\tRTAX_GENMASK                  = 0x3\n\tRTAX_IFA                      = 0x5\n\tRTAX_IFP                      = 0x4\n\tRTAX_MAX                      = 0x8\n\tRTAX_NETMASK                  = 0x2\n\tRTA_AUTHOR                    = 0x40\n\tRTA_BRD                       = 0x80\n\tRTA_DOWNSTREAM                = 0x100\n\tRTA_DST                       = 0x1\n\tRTA_GATEWAY                   = 0x2\n\tRTA_GENMASK                   = 0x8\n\tRTA_IFA                       = 0x20\n\tRTA_IFP                       = 0x10\n\tRTA_NETMASK                   = 0x4\n\tRTC_IA64                      = 0x3\n\tRTC_POWER                     = 0x1\n\tRTC_POWER_PC                  = 0x2\n\tRTF_ACTIVE_DGD                = 0x1000000\n\tRTF_BCE                       = 0x80000\n\tRTF_BLACKHOLE                 = 0x1000\n\tRTF_BROADCAST                 = 0x400000\n\tRTF_BUL                       = 0x2000\n\tRTF_CLONE                     = 0x10000\n\tRTF_CLONED                    = 0x20000\n\tRTF_CLONING                   = 0x100\n\tRTF_DONE                      = 0x40\n\tRTF_DYNAMIC                   = 0x10\n\tRTF_FREE_IN_PROG              = 0x4000000\n\tRTF_GATEWAY                   = 0x2\n\tRTF_HOST                      = 0x4\n\tRTF_LLINFO                    = 0x400\n\tRTF_LOCAL                     = 0x200000\n\tRTF_MASK                      = 0x80\n\tRTF_MODIFIED                  = 0x20\n\tRTF_MULTICAST                 = 0x800000\n\tRTF_PERMANENT6                = 0x8000000\n\tRTF_PINNED                    = 0x100000\n\tRTF_PROTO1                    = 0x8000\n\tRTF_PROTO2                    = 0x4000\n\tRTF_PROTO3                    = 0x40000\n\tRTF_REJECT                    = 0x8\n\tRTF_SMALLMTU                  = 0x40000\n\tRTF_STATIC                    = 0x800\n\tRTF_STOPSRCH                  = 0x2000000\n\tRTF_UNREACHABLE               = 0x10000000\n\tRTF_UP                        = 0x1\n\tRTF_XRESOLVE                  = 0x200\n\tRTM_ADD                       = 0x1\n\tRTM_CHANGE                    = 0x3\n\tRTM_DELADDR                   = 0xd\n\tRTM_DELETE                    = 0x2\n\tRTM_EXPIRE                    = 0xf\n\tRTM_GET                       = 0x4\n\tRTM_GETNEXT                   = 0x11\n\tRTM_IFINFO                    = 0xe\n\tRTM_LOCK                      = 0x8\n\tRTM_LOSING                    = 0x5\n\tRTM_MISS                      = 0x7\n\tRTM_NEWADDR                   = 0xc\n\tRTM_OLDADD                    = 0x9\n\tRTM_OLDDEL                    = 0xa\n\tRTM_REDIRECT                  = 0x6\n\tRTM_RESOLVE                   = 0xb\n\tRTM_RTLOST                    = 0x10\n\tRTM_RTTUNIT                   = 0xf4240\n\tRTM_SAMEADDR                  = 0x12\n\tRTM_SET                       = 0x13\n\tRTM_VERSION                   = 0x2\n\tRTM_VERSION_GR                = 0x4\n\tRTM_VERSION_GR_COMPAT         = 0x3\n\tRTM_VERSION_POLICY            = 0x5\n\tRTM_VERSION_POLICY_EXT        = 0x6\n\tRTM_VERSION_POLICY_PRFN       = 0x7\n\tRTV_EXPIRE                    = 0x4\n\tRTV_HOPCOUNT                  = 0x2\n\tRTV_MTU                       = 0x1\n\tRTV_RPIPE                     = 0x8\n\tRTV_RTT                       = 0x40\n\tRTV_RTTVAR                    = 0x80\n\tRTV_SPIPE                     = 0x10\n\tRTV_SSTHRESH                  = 0x20\n\tRUSAGE_CHILDREN               = -0x1\n\tRUSAGE_SELF                   = 0x0\n\tRUSAGE_THREAD                 = 0x1\n\tSCM_RIGHTS                    = 0x1\n\tSHUT_RD                       = 0x0\n\tSHUT_RDWR                     = 0x2\n\tSHUT_WR                       = 0x1\n\tSIGMAX64                      = 0xff\n\tSIGQUEUE_MAX                  = 0x20\n\tSIOCADDIFVIPA                 = 0x20006942\n\tSIOCADDMTU                    = -0x7ffb9690\n\tSIOCADDMULTI                  = -0x7fdf96cf\n\tSIOCADDNETID                  = -0x7fd796a9\n\tSIOCADDRT                     = -0x7fc78df6\n\tSIOCAIFADDR                   = -0x7fbf96e6\n\tSIOCATMARK                    = 0x40047307\n\tSIOCDARP                      = -0x7fb396e0\n\tSIOCDELIFVIPA                 = 0x20006943\n\tSIOCDELMTU                    = -0x7ffb968f\n\tSIOCDELMULTI                  = -0x7fdf96ce\n\tSIOCDELPMTU                   = -0x7fd78ff6\n\tSIOCDELRT                     = -0x7fc78df5\n\tSIOCDIFADDR                   = -0x7fd796e7\n\tSIOCDNETOPT                   = -0x3ffe9680\n\tSIOCDX25XLATE                 = -0x7fd7969b\n\tSIOCFIFADDR                   = -0x7fdf966d\n\tSIOCGARP                      = -0x3fb396da\n\tSIOCGETMTUS                   = 0x2000696f\n\tSIOCGETSGCNT                  = -0x3feb8acc\n\tSIOCGETVIFCNT                 = -0x3feb8acd\n\tSIOCGHIWAT                    = 0x40047301\n\tSIOCGIFADDR                   = -0x3fd796df\n\tSIOCGIFADDRS                  = 0x2000698c\n\tSIOCGIFBAUDRATE               = -0x3fdf9669\n\tSIOCGIFBRDADDR                = -0x3fd796dd\n\tSIOCGIFCONF                   = -0x3fef96bb\n\tSIOCGIFCONFGLOB               = -0x3fef9670\n\tSIOCGIFDSTADDR                = -0x3fd796de\n\tSIOCGIFFLAGS                  = -0x3fd796ef\n\tSIOCGIFGIDLIST                = 0x20006968\n\tSIOCGIFHWADDR                 = -0x3fab966b\n\tSIOCGIFMETRIC                 = -0x3fd796e9\n\tSIOCGIFMTU                    = -0x3fd796aa\n\tSIOCGIFNETMASK                = -0x3fd796db\n\tSIOCGIFOPTIONS                = -0x3fd796d6\n\tSIOCGISNO                     = -0x3fd79695\n\tSIOCGLOADF                    = -0x3ffb967e\n\tSIOCGLOWAT                    = 0x40047303\n\tSIOCGNETOPT                   = -0x3ffe96a5\n\tSIOCGNETOPT1                  = -0x3fdf967f\n\tSIOCGNMTUS                    = 0x2000696e\n\tSIOCGPGRP                     = 0x40047309\n\tSIOCGSIZIFCONF                = 0x4004696a\n\tSIOCGSRCFILTER                = -0x3fe796cb\n\tSIOCGTUNEPHASE                = -0x3ffb9676\n\tSIOCGX25XLATE                 = -0x3fd7969c\n\tSIOCIFATTACH                  = -0x7fdf9699\n\tSIOCIFDETACH                  = -0x7fdf969a\n\tSIOCIFGETPKEY                 = -0x7fdf969b\n\tSIOCIF_ATM_DARP               = -0x7fdf9683\n\tSIOCIF_ATM_DUMPARP            = -0x7fdf9685\n\tSIOCIF_ATM_GARP               = -0x7fdf9682\n\tSIOCIF_ATM_IDLE               = -0x7fdf9686\n\tSIOCIF_ATM_SARP               = -0x7fdf9681\n\tSIOCIF_ATM_SNMPARP            = -0x7fdf9687\n\tSIOCIF_ATM_SVC                = -0x7fdf9684\n\tSIOCIF_ATM_UBR                = -0x7fdf9688\n\tSIOCIF_DEVHEALTH              = -0x7ffb966c\n\tSIOCIF_IB_ARP_INCOMP          = -0x7fdf9677\n\tSIOCIF_IB_ARP_TIMER           = -0x7fdf9678\n\tSIOCIF_IB_CLEAR_PINFO         = -0x3fdf966f\n\tSIOCIF_IB_DEL_ARP             = -0x7fdf967f\n\tSIOCIF_IB_DEL_PINFO           = -0x3fdf9670\n\tSIOCIF_IB_DUMP_ARP            = -0x7fdf9680\n\tSIOCIF_IB_GET_ARP             = -0x7fdf967e\n\tSIOCIF_IB_GET_INFO            = -0x3f879675\n\tSIOCIF_IB_GET_STATS           = -0x3f879672\n\tSIOCIF_IB_NOTIFY_ADDR_REM     = -0x3f87966a\n\tSIOCIF_IB_RESET_STATS         = -0x3f879671\n\tSIOCIF_IB_RESIZE_CQ           = -0x7fdf9679\n\tSIOCIF_IB_SET_ARP             = -0x7fdf967d\n\tSIOCIF_IB_SET_PKEY            = -0x7fdf967c\n\tSIOCIF_IB_SET_PORT            = -0x7fdf967b\n\tSIOCIF_IB_SET_QKEY            = -0x7fdf9676\n\tSIOCIF_IB_SET_QSIZE           = -0x7fdf967a\n\tSIOCLISTIFVIPA                = 0x20006944\n\tSIOCSARP                      = -0x7fb396e2\n\tSIOCSHIWAT                    = 0xffffffff80047300\n\tSIOCSIFADDR                   = -0x7fd796f4\n\tSIOCSIFADDRORI                = -0x7fdb9673\n\tSIOCSIFBRDADDR                = -0x7fd796ed\n\tSIOCSIFDSTADDR                = -0x7fd796f2\n\tSIOCSIFFLAGS                  = -0x7fd796f0\n\tSIOCSIFGIDLIST                = 0x20006969\n\tSIOCSIFMETRIC                 = -0x7fd796e8\n\tSIOCSIFMTU                    = -0x7fd796a8\n\tSIOCSIFNETDUMP                = -0x7fd796e4\n\tSIOCSIFNETMASK                = -0x7fd796ea\n\tSIOCSIFOPTIONS                = -0x7fd796d7\n\tSIOCSIFSUBCHAN                = -0x7fd796e5\n\tSIOCSISNO                     = -0x7fd79694\n\tSIOCSLOADF                    = -0x3ffb967d\n\tSIOCSLOWAT                    = 0xffffffff80047302\n\tSIOCSNETOPT                   = -0x7ffe96a6\n\tSIOCSPGRP                     = 0xffffffff80047308\n\tSIOCSX25XLATE                 = -0x7fd7969d\n\tSOCK_CONN_DGRAM               = 0x6\n\tSOCK_DGRAM                    = 0x2\n\tSOCK_RAW                      = 0x3\n\tSOCK_RDM                      = 0x4\n\tSOCK_SEQPACKET                = 0x5\n\tSOCK_STREAM                   = 0x1\n\tSOL_SOCKET                    = 0xffff\n\tSOMAXCONN                     = 0x400\n\tSO_ACCEPTCONN                 = 0x2\n\tSO_AUDIT                      = 0x8000\n\tSO_BROADCAST                  = 0x20\n\tSO_CKSUMRECV                  = 0x800\n\tSO_DEBUG                      = 0x1\n\tSO_DONTROUTE                  = 0x10\n\tSO_ERROR                      = 0x1007\n\tSO_KEEPALIVE                  = 0x8\n\tSO_KERNACCEPT                 = 0x2000\n\tSO_LINGER                     = 0x80\n\tSO_NOMULTIPATH                = 0x4000\n\tSO_NOREUSEADDR                = 0x1000\n\tSO_OOBINLINE                  = 0x100\n\tSO_PEERID                     = 0x1009\n\tSO_RCVBUF                     = 0x1002\n\tSO_RCVLOWAT                   = 0x1004\n\tSO_RCVTIMEO                   = 0x1006\n\tSO_REUSEADDR                  = 0x4\n\tSO_REUSEPORT                  = 0x200\n\tSO_SNDBUF                     = 0x1001\n\tSO_SNDLOWAT                   = 0x1003\n\tSO_SNDTIMEO                   = 0x1005\n\tSO_TIMESTAMPNS                = 0x100a\n\tSO_TYPE                       = 0x1008\n\tSO_USELOOPBACK                = 0x40\n\tSO_USE_IFBUFS                 = 0x400\n\tS_BANDURG                     = 0x400\n\tS_EMODFMT                     = 0x3c000000\n\tS_ENFMT                       = 0x400\n\tS_ERROR                       = 0x100\n\tS_HANGUP                      = 0x200\n\tS_HIPRI                       = 0x2\n\tS_ICRYPTO                     = 0x80000\n\tS_IEXEC                       = 0x40\n\tS_IFBLK                       = 0x6000\n\tS_IFCHR                       = 0x2000\n\tS_IFDIR                       = 0x4000\n\tS_IFIFO                       = 0x1000\n\tS_IFJOURNAL                   = 0x10000\n\tS_IFLNK                       = 0xa000\n\tS_IFMPX                       = 0x2200\n\tS_IFMT                        = 0xf000\n\tS_IFPDIR                      = 0x4000000\n\tS_IFPSDIR                     = 0x8000000\n\tS_IFPSSDIR                    = 0xc000000\n\tS_IFREG                       = 0x8000\n\tS_IFSOCK                      = 0xc000\n\tS_IFSYSEA                     = 0x30000000\n\tS_INPUT                       = 0x1\n\tS_IREAD                       = 0x100\n\tS_IRGRP                       = 0x20\n\tS_IROTH                       = 0x4\n\tS_IRUSR                       = 0x100\n\tS_IRWXG                       = 0x38\n\tS_IRWXO                       = 0x7\n\tS_IRWXU                       = 0x1c0\n\tS_ISGID                       = 0x400\n\tS_ISUID                       = 0x800\n\tS_ISVTX                       = 0x200\n\tS_ITCB                        = 0x1000000\n\tS_ITP                         = 0x800000\n\tS_IWGRP                       = 0x10\n\tS_IWOTH                       = 0x2\n\tS_IWRITE                      = 0x80\n\tS_IWUSR                       = 0x80\n\tS_IXACL                       = 0x2000000\n\tS_IXATTR                      = 0x40000\n\tS_IXGRP                       = 0x8\n\tS_IXINTERFACE                 = 0x100000\n\tS_IXMOD                       = 0x40000000\n\tS_IXOTH                       = 0x1\n\tS_IXUSR                       = 0x40\n\tS_MSG                         = 0x8\n\tS_OUTPUT                      = 0x4\n\tS_RDBAND                      = 0x20\n\tS_RDNORM                      = 0x10\n\tS_RESERVED1                   = 0x20000\n\tS_RESERVED2                   = 0x200000\n\tS_RESERVED3                   = 0x400000\n\tS_RESERVED4                   = 0x80000000\n\tS_RESFMT1                     = 0x10000000\n\tS_RESFMT10                    = 0x34000000\n\tS_RESFMT11                    = 0x38000000\n\tS_RESFMT12                    = 0x3c000000\n\tS_RESFMT2                     = 0x14000000\n\tS_RESFMT3                     = 0x18000000\n\tS_RESFMT4                     = 0x1c000000\n\tS_RESFMT5                     = 0x20000000\n\tS_RESFMT6                     = 0x24000000\n\tS_RESFMT7                     = 0x28000000\n\tS_RESFMT8                     = 0x2c000000\n\tS_WRBAND                      = 0x80\n\tS_WRNORM                      = 0x40\n\tTAB0                          = 0x0\n\tTAB1                          = 0x400\n\tTAB2                          = 0x800\n\tTAB3                          = 0xc00\n\tTABDLY                        = 0xc00\n\tTCFLSH                        = 0x540c\n\tTCGETA                        = 0x5405\n\tTCGETS                        = 0x5401\n\tTCIFLUSH                      = 0x0\n\tTCIOFF                        = 0x2\n\tTCIOFLUSH                     = 0x2\n\tTCION                         = 0x3\n\tTCOFLUSH                      = 0x1\n\tTCOOFF                        = 0x0\n\tTCOON                         = 0x1\n\tTCP_24DAYS_WORTH_OF_SLOWTICKS = 0x3f4800\n\tTCP_ACLADD                    = 0x23\n\tTCP_ACLBIND                   = 0x26\n\tTCP_ACLCLEAR                  = 0x22\n\tTCP_ACLDEL                    = 0x24\n\tTCP_ACLDENY                   = 0x8\n\tTCP_ACLFLUSH                  = 0x21\n\tTCP_ACLGID                    = 0x1\n\tTCP_ACLLS                     = 0x25\n\tTCP_ACLSUBNET                 = 0x4\n\tTCP_ACLUID                    = 0x2\n\tTCP_CWND_DF                   = 0x16\n\tTCP_CWND_IF                   = 0x15\n\tTCP_DELAY_ACK_FIN             = 0x2\n\tTCP_DELAY_ACK_SYN             = 0x1\n\tTCP_FASTNAME                  = 0x101080a\n\tTCP_KEEPCNT                   = 0x13\n\tTCP_KEEPIDLE                  = 0x11\n\tTCP_KEEPINTVL                 = 0x12\n\tTCP_LSPRIV                    = 0x29\n\tTCP_LUID                      = 0x20\n\tTCP_MAXBURST                  = 0x8\n\tTCP_MAXDF                     = 0x64\n\tTCP_MAXIF                     = 0x64\n\tTCP_MAXSEG                    = 0x2\n\tTCP_MAXWIN                    = 0xffff\n\tTCP_MAXWINDOWSCALE            = 0xe\n\tTCP_MAX_SACK                  = 0x4\n\tTCP_MSS                       = 0x5b4\n\tTCP_NODELAY                   = 0x1\n\tTCP_NODELAYACK                = 0x14\n\tTCP_NOREDUCE_CWND_EXIT_FRXMT  = 0x19\n\tTCP_NOREDUCE_CWND_IN_FRXMT    = 0x18\n\tTCP_NOTENTER_SSTART           = 0x17\n\tTCP_OPT                       = 0x19\n\tTCP_RFC1323                   = 0x4\n\tTCP_SETPRIV                   = 0x27\n\tTCP_STDURG                    = 0x10\n\tTCP_TIMESTAMP_OPTLEN          = 0xc\n\tTCP_UNSETPRIV                 = 0x28\n\tTCSAFLUSH                     = 0x2\n\tTCSBRK                        = 0x5409\n\tTCSETA                        = 0x5406\n\tTCSETAF                       = 0x5408\n\tTCSETAW                       = 0x5407\n\tTCSETS                        = 0x5402\n\tTCSETSF                       = 0x5404\n\tTCSETSW                       = 0x5403\n\tTCXONC                        = 0x540b\n\tTIMER_ABSTIME                 = 0x3e7\n\tTIMER_MAX                     = 0x20\n\tTIOC                          = 0x5400\n\tTIOCCBRK                      = 0x2000747a\n\tTIOCCDTR                      = 0x20007478\n\tTIOCCONS                      = 0xffffffff80047462\n\tTIOCEXCL                      = 0x2000740d\n\tTIOCFLUSH                     = 0xffffffff80047410\n\tTIOCGETC                      = 0x40067412\n\tTIOCGETD                      = 0x40047400\n\tTIOCGETP                      = 0x40067408\n\tTIOCGLTC                      = 0x40067474\n\tTIOCGPGRP                     = 0x40047477\n\tTIOCGSID                      = 0x40047448\n\tTIOCGSIZE                     = 0x40087468\n\tTIOCGWINSZ                    = 0x40087468\n\tTIOCHPCL                      = 0x20007402\n\tTIOCLBIC                      = 0xffffffff8004747e\n\tTIOCLBIS                      = 0xffffffff8004747f\n\tTIOCLGET                      = 0x4004747c\n\tTIOCLSET                      = 0xffffffff8004747d\n\tTIOCMBIC                      = 0xffffffff8004746b\n\tTIOCMBIS                      = 0xffffffff8004746c\n\tTIOCMGET                      = 0x4004746a\n\tTIOCMIWAIT                    = 0xffffffff80047464\n\tTIOCMODG                      = 0x40047403\n\tTIOCMODS                      = 0xffffffff80047404\n\tTIOCMSET                      = 0xffffffff8004746d\n\tTIOCM_CAR                     = 0x40\n\tTIOCM_CD                      = 0x40\n\tTIOCM_CTS                     = 0x20\n\tTIOCM_DSR                     = 0x100\n\tTIOCM_DTR                     = 0x2\n\tTIOCM_LE                      = 0x1\n\tTIOCM_RI                      = 0x80\n\tTIOCM_RNG                     = 0x80\n\tTIOCM_RTS                     = 0x4\n\tTIOCM_SR                      = 0x10\n\tTIOCM_ST                      = 0x8\n\tTIOCNOTTY                     = 0x20007471\n\tTIOCNXCL                      = 0x2000740e\n\tTIOCOUTQ                      = 0x40047473\n\tTIOCPKT                       = 0xffffffff80047470\n\tTIOCPKT_DATA                  = 0x0\n\tTIOCPKT_DOSTOP                = 0x20\n\tTIOCPKT_FLUSHREAD             = 0x1\n\tTIOCPKT_FLUSHWRITE            = 0x2\n\tTIOCPKT_NOSTOP                = 0x10\n\tTIOCPKT_START                 = 0x8\n\tTIOCPKT_STOP                  = 0x4\n\tTIOCREMOTE                    = 0xffffffff80047469\n\tTIOCSBRK                      = 0x2000747b\n\tTIOCSDTR                      = 0x20007479\n\tTIOCSETC                      = 0xffffffff80067411\n\tTIOCSETD                      = 0xffffffff80047401\n\tTIOCSETN                      = 0xffffffff8006740a\n\tTIOCSETP                      = 0xffffffff80067409\n\tTIOCSLTC                      = 0xffffffff80067475\n\tTIOCSPGRP                     = 0xffffffff80047476\n\tTIOCSSIZE                     = 0xffffffff80087467\n\tTIOCSTART                     = 0x2000746e\n\tTIOCSTI                       = 0xffffffff80017472\n\tTIOCSTOP                      = 0x2000746f\n\tTIOCSWINSZ                    = 0xffffffff80087467\n\tTIOCUCNTL                     = 0xffffffff80047466\n\tTOSTOP                        = 0x10000\n\tUTIME_NOW                     = -0x2\n\tUTIME_OMIT                    = -0x3\n\tVDISCRD                       = 0xc\n\tVDSUSP                        = 0xa\n\tVEOF                          = 0x4\n\tVEOL                          = 0x5\n\tVEOL2                         = 0x6\n\tVERASE                        = 0x2\n\tVINTR                         = 0x0\n\tVKILL                         = 0x3\n\tVLNEXT                        = 0xe\n\tVMIN                          = 0x4\n\tVQUIT                         = 0x1\n\tVREPRINT                      = 0xb\n\tVSTART                        = 0x7\n\tVSTOP                         = 0x8\n\tVSTRT                         = 0x7\n\tVSUSP                         = 0x9\n\tVT0                           = 0x0\n\tVT1                           = 0x8000\n\tVTDELAY                       = 0x2000\n\tVTDLY                         = 0x8000\n\tVTIME                         = 0x5\n\tVWERSE                        = 0xd\n\tWPARSTART                     = 0x1\n\tWPARSTOP                      = 0x2\n\tWPARTTYNAME                   = \"Global\"\n\tXCASE                         = 0x4\n\tXTABS                         = 0xc00\n\t_FDATAFLUSH                   = 0x2000000000\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x43)\n\tEADDRNOTAVAIL   = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x42)\n\tEAGAIN          = syscall.Errno(0xb)\n\tEALREADY        = syscall.Errno(0x38)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x78)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x75)\n\tECHILD          = syscall.Errno(0xa)\n\tECHRNG          = syscall.Errno(0x25)\n\tECLONEME        = syscall.Errno(0x52)\n\tECONNABORTED    = syscall.Errno(0x48)\n\tECONNREFUSED    = syscall.Errno(0x4f)\n\tECONNRESET      = syscall.Errno(0x49)\n\tECORRUPT        = syscall.Errno(0x59)\n\tEDEADLK         = syscall.Errno(0x2d)\n\tEDESTADDREQ     = syscall.Errno(0x3a)\n\tEDESTADDRREQ    = syscall.Errno(0x3a)\n\tEDIST           = syscall.Errno(0x35)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x58)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFORMAT         = syscall.Errno(0x30)\n\tEHOSTDOWN       = syscall.Errno(0x50)\n\tEHOSTUNREACH    = syscall.Errno(0x51)\n\tEIDRM           = syscall.Errno(0x24)\n\tEILSEQ          = syscall.Errno(0x74)\n\tEINPROGRESS     = syscall.Errno(0x37)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x4b)\n\tEISDIR          = syscall.Errno(0x15)\n\tEL2HLT          = syscall.Errno(0x2c)\n\tEL2NSYNC        = syscall.Errno(0x26)\n\tEL3HLT          = syscall.Errno(0x27)\n\tEL3RST          = syscall.Errno(0x28)\n\tELNRNG          = syscall.Errno(0x29)\n\tELOOP           = syscall.Errno(0x55)\n\tEMEDIA          = syscall.Errno(0x6e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x3b)\n\tEMULTIHOP       = syscall.Errno(0x7d)\n\tENAMETOOLONG    = syscall.Errno(0x56)\n\tENETDOWN        = syscall.Errno(0x45)\n\tENETRESET       = syscall.Errno(0x47)\n\tENETUNREACH     = syscall.Errno(0x46)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x70)\n\tENOBUFS         = syscall.Errno(0x4a)\n\tENOCONNECT      = syscall.Errno(0x32)\n\tENOCSI          = syscall.Errno(0x2b)\n\tENODATA         = syscall.Errno(0x7a)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x31)\n\tENOLINK         = syscall.Errno(0x7e)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x23)\n\tENOPROTOOPT     = syscall.Errno(0x3d)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x76)\n\tENOSTR          = syscall.Errno(0x7b)\n\tENOSYS          = syscall.Errno(0x6d)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x4c)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x11)\n\tENOTREADY       = syscall.Errno(0x2e)\n\tENOTRECOVERABLE = syscall.Errno(0x5e)\n\tENOTRUST        = syscall.Errno(0x72)\n\tENOTSOCK        = syscall.Errno(0x39)\n\tENOTSUP         = syscall.Errno(0x7c)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x40)\n\tEOVERFLOW       = syscall.Errno(0x7f)\n\tEOWNERDEAD      = syscall.Errno(0x5f)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x41)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x53)\n\tEPROTO          = syscall.Errno(0x79)\n\tEPROTONOSUPPORT = syscall.Errno(0x3e)\n\tEPROTOTYPE      = syscall.Errno(0x3c)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x5d)\n\tERESTART        = syscall.Errno(0x52)\n\tEROFS           = syscall.Errno(0x1e)\n\tESAD            = syscall.Errno(0x71)\n\tESHUTDOWN       = syscall.Errno(0x4d)\n\tESOCKTNOSUPPORT = syscall.Errno(0x3f)\n\tESOFT           = syscall.Errno(0x6f)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x34)\n\tESYSERROR       = syscall.Errno(0x5a)\n\tETIME           = syscall.Errno(0x77)\n\tETIMEDOUT       = syscall.Errno(0x4e)\n\tETOOMANYREFS    = syscall.Errno(0x73)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUNATCH         = syscall.Errno(0x2a)\n\tEUSERS          = syscall.Errno(0x54)\n\tEWOULDBLOCK     = syscall.Errno(0xb)\n\tEWRPROTECT      = syscall.Errno(0x2f)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT     = syscall.Signal(0x6)\n\tSIGAIO      = syscall.Signal(0x17)\n\tSIGALRM     = syscall.Signal(0xe)\n\tSIGALRM1    = syscall.Signal(0x26)\n\tSIGBUS      = syscall.Signal(0xa)\n\tSIGCAPI     = syscall.Signal(0x31)\n\tSIGCHLD     = syscall.Signal(0x14)\n\tSIGCLD      = syscall.Signal(0x14)\n\tSIGCONT     = syscall.Signal(0x13)\n\tSIGCPUFAIL  = syscall.Signal(0x3b)\n\tSIGDANGER   = syscall.Signal(0x21)\n\tSIGEMT      = syscall.Signal(0x7)\n\tSIGFPE      = syscall.Signal(0x8)\n\tSIGGRANT    = syscall.Signal(0x3c)\n\tSIGHUP      = syscall.Signal(0x1)\n\tSIGILL      = syscall.Signal(0x4)\n\tSIGINT      = syscall.Signal(0x2)\n\tSIGIO       = syscall.Signal(0x17)\n\tSIGIOINT    = syscall.Signal(0x10)\n\tSIGIOT      = syscall.Signal(0x6)\n\tSIGKAP      = syscall.Signal(0x3c)\n\tSIGKILL     = syscall.Signal(0x9)\n\tSIGLOST     = syscall.Signal(0x6)\n\tSIGMAX      = syscall.Signal(0xff)\n\tSIGMAX32    = syscall.Signal(0x3f)\n\tSIGMIGRATE  = syscall.Signal(0x23)\n\tSIGMSG      = syscall.Signal(0x1b)\n\tSIGPIPE     = syscall.Signal(0xd)\n\tSIGPOLL     = syscall.Signal(0x17)\n\tSIGPRE      = syscall.Signal(0x24)\n\tSIGPROF     = syscall.Signal(0x20)\n\tSIGPTY      = syscall.Signal(0x17)\n\tSIGPWR      = syscall.Signal(0x1d)\n\tSIGQUIT     = syscall.Signal(0x3)\n\tSIGRECONFIG = syscall.Signal(0x3a)\n\tSIGRETRACT  = syscall.Signal(0x3d)\n\tSIGSAK      = syscall.Signal(0x3f)\n\tSIGSEGV     = syscall.Signal(0xb)\n\tSIGSOUND    = syscall.Signal(0x3e)\n\tSIGSTOP     = syscall.Signal(0x11)\n\tSIGSYS      = syscall.Signal(0xc)\n\tSIGSYSERROR = syscall.Signal(0x30)\n\tSIGTALRM    = syscall.Signal(0x26)\n\tSIGTERM     = syscall.Signal(0xf)\n\tSIGTRAP     = syscall.Signal(0x5)\n\tSIGTSTP     = syscall.Signal(0x12)\n\tSIGTTIN     = syscall.Signal(0x15)\n\tSIGTTOU     = syscall.Signal(0x16)\n\tSIGURG      = syscall.Signal(0x10)\n\tSIGUSR1     = syscall.Signal(0x1e)\n\tSIGUSR2     = syscall.Signal(0x1f)\n\tSIGVIRT     = syscall.Signal(0x25)\n\tSIGVTALRM   = syscall.Signal(0x22)\n\tSIGWAITING  = syscall.Signal(0x27)\n\tSIGWINCH    = syscall.Signal(0x1c)\n\tSIGXCPU     = syscall.Signal(0x18)\n\tSIGXFSZ     = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"not owner\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"I/O error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"arg list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file number\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EWOULDBLOCK\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"not enough space\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"ENOTEMPTY\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"file table overflow\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"not a typewriter\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"ENOMSG\", \"no message of desired type\"},\n\t{36, \"EIDRM\", \"identifier removed\"},\n\t{37, \"ECHRNG\", \"channel number out of range\"},\n\t{38, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{39, \"EL3HLT\", \"level 3 halted\"},\n\t{40, \"EL3RST\", \"level 3 reset\"},\n\t{41, \"ELNRNG\", \"link number out of range\"},\n\t{42, \"EUNATCH\", \"protocol driver not attached\"},\n\t{43, \"ENOCSI\", \"no CSI structure available\"},\n\t{44, \"EL2HLT\", \"level 2 halted\"},\n\t{45, \"EDEADLK\", \"deadlock condition if locked\"},\n\t{46, \"ENOTREADY\", \"device not ready\"},\n\t{47, \"EWRPROTECT\", \"write-protected media\"},\n\t{48, \"EFORMAT\", \"unformatted or incompatible media\"},\n\t{49, \"ENOLCK\", \"no locks available\"},\n\t{50, \"ENOCONNECT\", \"cannot Establish Connection\"},\n\t{52, \"ESTALE\", \"missing file or filesystem\"},\n\t{53, \"EDIST\", \"requests blocked by Administrator\"},\n\t{55, \"EINPROGRESS\", \"operation now in progress\"},\n\t{56, \"EALREADY\", \"operation already in progress\"},\n\t{57, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{58, \"EDESTADDREQ\", \"destination address required\"},\n\t{59, \"EMSGSIZE\", \"message too long\"},\n\t{60, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{61, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{62, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{63, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{64, \"EOPNOTSUPP\", \"operation not supported on socket\"},\n\t{65, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{66, \"EAFNOSUPPORT\", \"addr family not supported by protocol\"},\n\t{67, \"EADDRINUSE\", \"address already in use\"},\n\t{68, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{69, \"ENETDOWN\", \"network is down\"},\n\t{70, \"ENETUNREACH\", \"network is unreachable\"},\n\t{71, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{72, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{73, \"ECONNRESET\", \"connection reset by peer\"},\n\t{74, \"ENOBUFS\", \"no buffer space available\"},\n\t{75, \"EISCONN\", \"socket is already connected\"},\n\t{76, \"ENOTCONN\", \"socket is not connected\"},\n\t{77, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{78, \"ETIMEDOUT\", \"connection timed out\"},\n\t{79, \"ECONNREFUSED\", \"connection refused\"},\n\t{80, \"EHOSTDOWN\", \"host is down\"},\n\t{81, \"EHOSTUNREACH\", \"no route to host\"},\n\t{82, \"ERESTART\", \"restart the system call\"},\n\t{83, \"EPROCLIM\", \"too many processes\"},\n\t{84, \"EUSERS\", \"too many users\"},\n\t{85, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{86, \"ENAMETOOLONG\", \"file name too long\"},\n\t{88, \"EDQUOT\", \"disk quota exceeded\"},\n\t{89, \"ECORRUPT\", \"invalid file system control data detected\"},\n\t{90, \"ESYSERROR\", \"for future use \"},\n\t{93, \"EREMOTE\", \"item is not local to host\"},\n\t{94, \"ENOTRECOVERABLE\", \"state not recoverable \"},\n\t{95, \"EOWNERDEAD\", \"previous owner died \"},\n\t{109, \"ENOSYS\", \"function not implemented\"},\n\t{110, \"EMEDIA\", \"media surface error\"},\n\t{111, \"ESOFT\", \"I/O completed, but needs relocation\"},\n\t{112, \"ENOATTR\", \"no attribute found\"},\n\t{113, \"ESAD\", \"security Authentication Denied\"},\n\t{114, \"ENOTRUST\", \"not a Trusted Program\"},\n\t{115, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{116, \"EILSEQ\", \"invalid wide character\"},\n\t{117, \"ECANCELED\", \"asynchronous I/O cancelled\"},\n\t{118, \"ENOSR\", \"out of STREAMS resources\"},\n\t{119, \"ETIME\", \"system call timed out\"},\n\t{120, \"EBADMSG\", \"next message has wrong type\"},\n\t{121, \"EPROTO\", \"error in protocol\"},\n\t{122, \"ENODATA\", \"no message on stream head read q\"},\n\t{123, \"ENOSTR\", \"fd not associated with a stream\"},\n\t{124, \"ENOTSUP\", \"unsupported attribute value\"},\n\t{125, \"EMULTIHOP\", \"multihop is not allowed\"},\n\t{126, \"ENOLINK\", \"the server link has been severed\"},\n\t{127, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"IOT/Abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"stopped (signal)\"},\n\t{18, \"SIGTSTP\", \"stopped\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible/complete\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{27, \"SIGMSG\", \"input device data\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGPWR\", \"power-failure\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGPROF\", \"profiling timer expired\"},\n\t{33, \"SIGDANGER\", \"paging space low\"},\n\t{34, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{35, \"SIGMIGRATE\", \"signal 35\"},\n\t{36, \"SIGPRE\", \"signal 36\"},\n\t{37, \"SIGVIRT\", \"signal 37\"},\n\t{38, \"SIGTALRM\", \"signal 38\"},\n\t{39, \"SIGWAITING\", \"signal 39\"},\n\t{48, \"SIGSYSERROR\", \"signal 48\"},\n\t{49, \"SIGCAPI\", \"signal 49\"},\n\t{58, \"SIGRECONFIG\", \"signal 58\"},\n\t{59, \"SIGCPUFAIL\", \"CPU Failure Predicted\"},\n\t{60, \"SIGGRANT\", \"monitor mode granted\"},\n\t{61, \"SIGRETRACT\", \"monitor mode retracted\"},\n\t{62, \"SIGSOUND\", \"sound completed\"},\n\t{63, \"SIGMAX32\", \"secure attention\"},\n\t{255, \"SIGMAX\", \"signal 255\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_darwin_386.go",
    "content": "// mkerrors.sh -m32\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,darwin\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m32 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1c\n\tAF_ECMA                           = 0x8\n\tAF_HYLINK                         = 0xf\n\tAF_IEEE80211                      = 0x25\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x1e\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1c\n\tAF_ISO                            = 0x7\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x28\n\tAF_NATM                           = 0x1f\n\tAF_NDRV                           = 0x1b\n\tAF_NETBIOS                        = 0x21\n\tAF_NS                             = 0x6\n\tAF_OSI                            = 0x7\n\tAF_PPP                            = 0x22\n\tAF_PUP                            = 0x4\n\tAF_RESERVED_36                    = 0x24\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x18\n\tAF_SNA                            = 0xb\n\tAF_SYSTEM                         = 0x20\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tAF_UTUN                           = 0x26\n\tALTWERASE                         = 0x200\n\tATTR_BIT_MAP_COUNT                = 0x5\n\tATTR_CMN_ACCESSMASK               = 0x20000\n\tATTR_CMN_ACCTIME                  = 0x1000\n\tATTR_CMN_ADDEDTIME                = 0x10000000\n\tATTR_CMN_BKUPTIME                 = 0x2000\n\tATTR_CMN_CHGTIME                  = 0x800\n\tATTR_CMN_CRTIME                   = 0x200\n\tATTR_CMN_DATA_PROTECT_FLAGS       = 0x40000000\n\tATTR_CMN_DEVID                    = 0x2\n\tATTR_CMN_DOCUMENT_ID              = 0x100000\n\tATTR_CMN_ERROR                    = 0x20000000\n\tATTR_CMN_EXTENDED_SECURITY        = 0x400000\n\tATTR_CMN_FILEID                   = 0x2000000\n\tATTR_CMN_FLAGS                    = 0x40000\n\tATTR_CMN_FNDRINFO                 = 0x4000\n\tATTR_CMN_FSID                     = 0x4\n\tATTR_CMN_FULLPATH                 = 0x8000000\n\tATTR_CMN_GEN_COUNT                = 0x80000\n\tATTR_CMN_GRPID                    = 0x10000\n\tATTR_CMN_GRPUUID                  = 0x1000000\n\tATTR_CMN_MODTIME                  = 0x400\n\tATTR_CMN_NAME                     = 0x1\n\tATTR_CMN_NAMEDATTRCOUNT           = 0x80000\n\tATTR_CMN_NAMEDATTRLIST            = 0x100000\n\tATTR_CMN_OBJID                    = 0x20\n\tATTR_CMN_OBJPERMANENTID           = 0x40\n\tATTR_CMN_OBJTAG                   = 0x10\n\tATTR_CMN_OBJTYPE                  = 0x8\n\tATTR_CMN_OWNERID                  = 0x8000\n\tATTR_CMN_PARENTID                 = 0x4000000\n\tATTR_CMN_PAROBJID                 = 0x80\n\tATTR_CMN_RETURNED_ATTRS           = 0x80000000\n\tATTR_CMN_SCRIPT                   = 0x100\n\tATTR_CMN_SETMASK                  = 0x41c7ff00\n\tATTR_CMN_USERACCESS               = 0x200000\n\tATTR_CMN_UUID                     = 0x800000\n\tATTR_CMN_VALIDMASK                = 0xffffffff\n\tATTR_CMN_VOLSETMASK               = 0x6700\n\tATTR_FILE_ALLOCSIZE               = 0x4\n\tATTR_FILE_CLUMPSIZE               = 0x10\n\tATTR_FILE_DATAALLOCSIZE           = 0x400\n\tATTR_FILE_DATAEXTENTS             = 0x800\n\tATTR_FILE_DATALENGTH              = 0x200\n\tATTR_FILE_DEVTYPE                 = 0x20\n\tATTR_FILE_FILETYPE                = 0x40\n\tATTR_FILE_FORKCOUNT               = 0x80\n\tATTR_FILE_FORKLIST                = 0x100\n\tATTR_FILE_IOBLOCKSIZE             = 0x8\n\tATTR_FILE_LINKCOUNT               = 0x1\n\tATTR_FILE_RSRCALLOCSIZE           = 0x2000\n\tATTR_FILE_RSRCEXTENTS             = 0x4000\n\tATTR_FILE_RSRCLENGTH              = 0x1000\n\tATTR_FILE_SETMASK                 = 0x20\n\tATTR_FILE_TOTALSIZE               = 0x2\n\tATTR_FILE_VALIDMASK               = 0x37ff\n\tATTR_VOL_ALLOCATIONCLUMP          = 0x40\n\tATTR_VOL_ATTRIBUTES               = 0x40000000\n\tATTR_VOL_CAPABILITIES             = 0x20000\n\tATTR_VOL_DIRCOUNT                 = 0x400\n\tATTR_VOL_ENCODINGSUSED            = 0x10000\n\tATTR_VOL_FILECOUNT                = 0x200\n\tATTR_VOL_FSTYPE                   = 0x1\n\tATTR_VOL_INFO                     = 0x80000000\n\tATTR_VOL_IOBLOCKSIZE              = 0x80\n\tATTR_VOL_MAXOBJCOUNT              = 0x800\n\tATTR_VOL_MINALLOCATION            = 0x20\n\tATTR_VOL_MOUNTEDDEVICE            = 0x8000\n\tATTR_VOL_MOUNTFLAGS               = 0x4000\n\tATTR_VOL_MOUNTPOINT               = 0x1000\n\tATTR_VOL_NAME                     = 0x2000\n\tATTR_VOL_OBJCOUNT                 = 0x100\n\tATTR_VOL_QUOTA_SIZE               = 0x10000000\n\tATTR_VOL_RESERVED_SIZE            = 0x20000000\n\tATTR_VOL_SETMASK                  = 0x80002000\n\tATTR_VOL_SIGNATURE                = 0x2\n\tATTR_VOL_SIZE                     = 0x4\n\tATTR_VOL_SPACEAVAIL               = 0x10\n\tATTR_VOL_SPACEFREE                = 0x8\n\tATTR_VOL_UUID                     = 0x40000\n\tATTR_VOL_VALIDMASK                = 0xf007ffff\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc00c4279\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044272\n\tBIOCGRTIMEOUT                     = 0x4008426e\n\tBIOCGSEESENT                      = 0x40044276\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDLT                          = 0x80044278\n\tBIOCSETF                          = 0x80084267\n\tBIOCSETFNR                        = 0x8008427e\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044273\n\tBIOCSRTIMEOUT                     = 0x8008426d\n\tBIOCSSEESENT                      = 0x80044277\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x80000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tBS0                               = 0x0\n\tBS1                               = 0x8000\n\tBSDLY                             = 0x8000\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLOCK_MONOTONIC                   = 0x6\n\tCLOCK_MONOTONIC_RAW               = 0x4\n\tCLOCK_MONOTONIC_RAW_APPROX        = 0x5\n\tCLOCK_PROCESS_CPUTIME_ID          = 0xc\n\tCLOCK_REALTIME                    = 0x0\n\tCLOCK_THREAD_CPUTIME_ID           = 0x10\n\tCLOCK_UPTIME_RAW                  = 0x8\n\tCLOCK_UPTIME_RAW_APPROX           = 0x9\n\tCLONE_NOFOLLOW                    = 0x1\n\tCLONE_NOOWNERCOPY                 = 0x2\n\tCR0                               = 0x0\n\tCR1                               = 0x1000\n\tCR2                               = 0x2000\n\tCR3                               = 0x3000\n\tCRDLY                             = 0x3000\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x30000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0x14\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDLT_A429                          = 0xb8\n\tDLT_A653_ICM                      = 0xb9\n\tDLT_AIRONET_HEADER                = 0x78\n\tDLT_AOS                           = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394        = 0x8a\n\tDLT_ARCNET                        = 0x7\n\tDLT_ARCNET_LINUX                  = 0x81\n\tDLT_ATM_CLIP                      = 0x13\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AURORA                        = 0x7e\n\tDLT_AX25                          = 0x3\n\tDLT_AX25_KISS                     = 0xca\n\tDLT_BACNET_MS_TP                  = 0xa5\n\tDLT_BLUETOOTH_HCI_H4              = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR    = 0xc9\n\tDLT_CAN20B                        = 0xbe\n\tDLT_CAN_SOCKETCAN                 = 0xe3\n\tDLT_CHAOS                         = 0x5\n\tDLT_CHDLC                         = 0x68\n\tDLT_CISCO_IOS                     = 0x76\n\tDLT_C_HDLC                        = 0x68\n\tDLT_C_HDLC_WITH_DIR               = 0xcd\n\tDLT_DBUS                          = 0xe7\n\tDLT_DECT                          = 0xdd\n\tDLT_DOCSIS                        = 0x8f\n\tDLT_DVB_CI                        = 0xeb\n\tDLT_ECONET                        = 0x73\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0x6d\n\tDLT_ERF                           = 0xc5\n\tDLT_ERF_ETH                       = 0xaf\n\tDLT_ERF_POS                       = 0xb0\n\tDLT_FC_2                          = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS        = 0xe1\n\tDLT_FDDI                          = 0xa\n\tDLT_FLEXRAY                       = 0xd2\n\tDLT_FRELAY                        = 0x6b\n\tDLT_FRELAY_WITH_DIR               = 0xce\n\tDLT_GCOM_SERIAL                   = 0xad\n\tDLT_GCOM_T1E1                     = 0xac\n\tDLT_GPF_F                         = 0xab\n\tDLT_GPF_T                         = 0xaa\n\tDLT_GPRS_LLC                      = 0xa9\n\tDLT_GSMTAP_ABIS                   = 0xda\n\tDLT_GSMTAP_UM                     = 0xd9\n\tDLT_HHDLC                         = 0x79\n\tDLT_IBM_SN                        = 0x92\n\tDLT_IBM_SP                        = 0x91\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS          = 0xa3\n\tDLT_IEEE802_15_4                  = 0xc3\n\tDLT_IEEE802_15_4_LINUX            = 0xbf\n\tDLT_IEEE802_15_4_NOFCS            = 0xe6\n\tDLT_IEEE802_15_4_NONASK_PHY       = 0xd7\n\tDLT_IEEE802_16_MAC_CPS            = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO      = 0xc1\n\tDLT_IPFILTER                      = 0x74\n\tDLT_IPMB                          = 0xc7\n\tDLT_IPMB_LINUX                    = 0xd1\n\tDLT_IPNET                         = 0xe2\n\tDLT_IPOIB                         = 0xf2\n\tDLT_IPV4                          = 0xe4\n\tDLT_IPV6                          = 0xe5\n\tDLT_IP_OVER_FC                    = 0x7a\n\tDLT_JUNIPER_ATM1                  = 0x89\n\tDLT_JUNIPER_ATM2                  = 0x87\n\tDLT_JUNIPER_ATM_CEMIC             = 0xee\n\tDLT_JUNIPER_CHDLC                 = 0xb5\n\tDLT_JUNIPER_ES                    = 0x84\n\tDLT_JUNIPER_ETHER                 = 0xb2\n\tDLT_JUNIPER_FIBRECHANNEL          = 0xea\n\tDLT_JUNIPER_FRELAY                = 0xb4\n\tDLT_JUNIPER_GGSN                  = 0x85\n\tDLT_JUNIPER_ISM                   = 0xc2\n\tDLT_JUNIPER_MFR                   = 0x86\n\tDLT_JUNIPER_MLFR                  = 0x83\n\tDLT_JUNIPER_MLPPP                 = 0x82\n\tDLT_JUNIPER_MONITOR               = 0xa4\n\tDLT_JUNIPER_PIC_PEER              = 0xae\n\tDLT_JUNIPER_PPP                   = 0xb3\n\tDLT_JUNIPER_PPPOE                 = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM             = 0xa8\n\tDLT_JUNIPER_SERVICES              = 0x88\n\tDLT_JUNIPER_SRX_E2E               = 0xe9\n\tDLT_JUNIPER_ST                    = 0xc8\n\tDLT_JUNIPER_VP                    = 0xb7\n\tDLT_JUNIPER_VS                    = 0xe8\n\tDLT_LAPB_WITH_DIR                 = 0xcf\n\tDLT_LAPD                          = 0xcb\n\tDLT_LIN                           = 0xd4\n\tDLT_LINUX_EVDEV                   = 0xd8\n\tDLT_LINUX_IRDA                    = 0x90\n\tDLT_LINUX_LAPD                    = 0xb1\n\tDLT_LINUX_PPP_WITHDIRECTION       = 0xa6\n\tDLT_LINUX_SLL                     = 0x71\n\tDLT_LOOP                          = 0x6c\n\tDLT_LTALK                         = 0x72\n\tDLT_MATCHING_MAX                  = 0xf5\n\tDLT_MATCHING_MIN                  = 0x68\n\tDLT_MFR                           = 0xb6\n\tDLT_MOST                          = 0xd3\n\tDLT_MPEG_2_TS                     = 0xf3\n\tDLT_MPLS                          = 0xdb\n\tDLT_MTP2                          = 0x8c\n\tDLT_MTP2_WITH_PHDR                = 0x8b\n\tDLT_MTP3                          = 0x8d\n\tDLT_MUX27010                      = 0xec\n\tDLT_NETANALYZER                   = 0xf0\n\tDLT_NETANALYZER_TRANSPARENT       = 0xf1\n\tDLT_NFC_LLCP                      = 0xf5\n\tDLT_NFLOG                         = 0xef\n\tDLT_NG40                          = 0xf4\n\tDLT_NULL                          = 0x0\n\tDLT_PCI_EXP                       = 0x7d\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPI                           = 0xc0\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_PPPD                      = 0xa6\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PPP_WITH_DIR                  = 0xcc\n\tDLT_PPP_WITH_DIRECTION            = 0xa6\n\tDLT_PRISM_HEADER                  = 0x77\n\tDLT_PRONET                        = 0x4\n\tDLT_RAIF1                         = 0xc6\n\tDLT_RAW                           = 0xc\n\tDLT_RIO                           = 0x7c\n\tDLT_SCCP                          = 0x8e\n\tDLT_SITA                          = 0xc4\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDLT_STANAG_5066_D_PDU             = 0xed\n\tDLT_SUNATM                        = 0x7b\n\tDLT_SYMANTEC_FIREWALL             = 0x63\n\tDLT_TZSP                          = 0x80\n\tDLT_USB                           = 0xba\n\tDLT_USB_LINUX                     = 0xbd\n\tDLT_USB_LINUX_MMAPPED             = 0xdc\n\tDLT_USER0                         = 0x93\n\tDLT_USER1                         = 0x94\n\tDLT_USER10                        = 0x9d\n\tDLT_USER11                        = 0x9e\n\tDLT_USER12                        = 0x9f\n\tDLT_USER13                        = 0xa0\n\tDLT_USER14                        = 0xa1\n\tDLT_USER15                        = 0xa2\n\tDLT_USER2                         = 0x95\n\tDLT_USER3                         = 0x96\n\tDLT_USER4                         = 0x97\n\tDLT_USER5                         = 0x98\n\tDLT_USER6                         = 0x99\n\tDLT_USER7                         = 0x9a\n\tDLT_USER8                         = 0x9b\n\tDLT_USER9                         = 0x9c\n\tDLT_WIHART                        = 0xdf\n\tDLT_X2E_SERIAL                    = 0xd5\n\tDLT_X2E_XORAYA                    = 0xd6\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tDT_WHT                            = 0xe\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_EXCEPT                     = -0xf\n\tEVFILT_FS                         = -0x9\n\tEVFILT_MACHPORT                   = -0x8\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0xf\n\tEVFILT_THREADMARKER               = 0xf\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_USER                       = -0xa\n\tEVFILT_VM                         = -0xc\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_DISPATCH                       = 0x80\n\tEV_DISPATCH2                      = 0x180\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG0                          = 0x1000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_OOBAND                         = 0x2000\n\tEV_POLL                           = 0x1000\n\tEV_RECEIPT                        = 0x40\n\tEV_SYSFLAGS                       = 0xf000\n\tEV_UDATA_SPECIFIC                 = 0x100\n\tEV_VANISHED                       = 0x200\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFF0                               = 0x0\n\tFF1                               = 0x4000\n\tFFDLY                             = 0x4000\n\tFLUSHO                            = 0x800000\n\tFSOPT_ATTR_CMN_EXTENDED           = 0x20\n\tFSOPT_NOFOLLOW                    = 0x1\n\tFSOPT_NOINMEMUPDATE               = 0x2\n\tFSOPT_PACK_INVAL_ATTRS            = 0x8\n\tFSOPT_REPORT_FULLSIZE             = 0x4\n\tF_ADDFILESIGS                     = 0x3d\n\tF_ADDFILESIGS_FOR_DYLD_SIM        = 0x53\n\tF_ADDFILESIGS_RETURN              = 0x61\n\tF_ADDSIGS                         = 0x3b\n\tF_ALLOCATEALL                     = 0x4\n\tF_ALLOCATECONTIG                  = 0x2\n\tF_BARRIERFSYNC                    = 0x55\n\tF_CHECK_LV                        = 0x62\n\tF_CHKCLEAN                        = 0x29\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0x43\n\tF_FINDSIGS                        = 0x4e\n\tF_FLUSH_DATA                      = 0x28\n\tF_FREEZE_FS                       = 0x35\n\tF_FULLFSYNC                       = 0x33\n\tF_GETCODEDIR                      = 0x48\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETLKPID                        = 0x42\n\tF_GETNOSIGPIPE                    = 0x4a\n\tF_GETOWN                          = 0x5\n\tF_GETPATH                         = 0x32\n\tF_GETPATH_MTMINFO                 = 0x47\n\tF_GETPROTECTIONCLASS              = 0x3f\n\tF_GETPROTECTIONLEVEL              = 0x4d\n\tF_GLOBAL_NOCACHE                  = 0x37\n\tF_LOG2PHYS                        = 0x31\n\tF_LOG2PHYS_EXT                    = 0x41\n\tF_NOCACHE                         = 0x30\n\tF_NODIRECT                        = 0x3e\n\tF_OK                              = 0x0\n\tF_PATHPKG_CHECK                   = 0x34\n\tF_PEOFPOSMODE                     = 0x3\n\tF_PREALLOCATE                     = 0x2a\n\tF_PUNCHHOLE                       = 0x63\n\tF_RDADVISE                        = 0x2c\n\tF_RDAHEAD                         = 0x2d\n\tF_RDLCK                           = 0x1\n\tF_SETBACKINGSTORE                 = 0x46\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETLKWTIMEOUT                   = 0xa\n\tF_SETNOSIGPIPE                    = 0x49\n\tF_SETOWN                          = 0x6\n\tF_SETPROTECTIONCLASS              = 0x40\n\tF_SETSIZE                         = 0x2b\n\tF_SINGLE_WRITER                   = 0x4c\n\tF_THAW_FS                         = 0x36\n\tF_TRANSCODEKEY                    = 0x4b\n\tF_TRIM_ACTIVE_FILE                = 0x64\n\tF_UNLCK                           = 0x2\n\tF_VOLPOSMODE                      = 0x4\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_ALTPHYS                       = 0x4000\n\tIFF_BROADCAST                     = 0x2\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_AAL5                          = 0x31\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ATM                           = 0x25\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_CARP                          = 0xf8\n\tIFT_CELLULAR                      = 0xff\n\tIFT_CEPT                          = 0x13\n\tIFT_DS3                           = 0x1e\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0x38\n\tIFT_FDDI                          = 0xf\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_GIF                           = 0x37\n\tIFT_HDH1822                       = 0x3\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE8023ADLAG                 = 0x88\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88026                      = 0xa\n\tIFT_L2VLAN                        = 0x87\n\tIFT_LAPB                          = 0x10\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_NSIP                          = 0x1b\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PDP                           = 0xff\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PKTAP                         = 0xfe\n\tIFT_PPP                           = 0x17\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_RS232                         = 0x21\n\tIFT_SDLC                          = 0x11\n\tIFT_SIP                           = 0x1f\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0x39\n\tIFT_T1                            = 0x12\n\tIFT_ULTRA                         = 0x1d\n\tIFT_V35                           = 0x2d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LINKLOCALNETNUM                = 0xa9fe0000\n\tIN_LOOPBACKNET                    = 0x7f\n\tIPPROTO_3PC                       = 0x22\n\tIPPROTO_ADFS                      = 0x44\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_AHIP                      = 0x3d\n\tIPPROTO_APES                      = 0x63\n\tIPPROTO_ARGUS                     = 0xd\n\tIPPROTO_AX25                      = 0x5d\n\tIPPROTO_BHA                       = 0x31\n\tIPPROTO_BLT                       = 0x1e\n\tIPPROTO_BRSATMON                  = 0x4c\n\tIPPROTO_CFTP                      = 0x3e\n\tIPPROTO_CHAOS                     = 0x10\n\tIPPROTO_CMTP                      = 0x26\n\tIPPROTO_CPHB                      = 0x49\n\tIPPROTO_CPNX                      = 0x48\n\tIPPROTO_DDP                       = 0x25\n\tIPPROTO_DGP                       = 0x56\n\tIPPROTO_DIVERT                    = 0xfe\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_EMCON                     = 0xe\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GMTP                      = 0x64\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HELLO                     = 0x3f\n\tIPPROTO_HMP                       = 0x14\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IDPR                      = 0x23\n\tIPPROTO_IDRP                      = 0x2d\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IGP                       = 0x55\n\tIPPROTO_IGRP                      = 0x58\n\tIPPROTO_IL                        = 0x28\n\tIPPROTO_INLSP                     = 0x34\n\tIPPROTO_INP                       = 0x20\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPCV                      = 0x47\n\tIPPROTO_IPEIP                     = 0x5e\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPPC                      = 0x43\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_IRTP                      = 0x1c\n\tIPPROTO_KRYPTOLAN                 = 0x41\n\tIPPROTO_LARP                      = 0x5b\n\tIPPROTO_LEAF1                     = 0x19\n\tIPPROTO_LEAF2                     = 0x1a\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x34\n\tIPPROTO_MEAS                      = 0x13\n\tIPPROTO_MHRP                      = 0x30\n\tIPPROTO_MICP                      = 0x5f\n\tIPPROTO_MTP                       = 0x5c\n\tIPPROTO_MUX                       = 0x12\n\tIPPROTO_ND                        = 0x4d\n\tIPPROTO_NHRP                      = 0x36\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_NSP                       = 0x1f\n\tIPPROTO_NVPII                     = 0xb\n\tIPPROTO_OSPFIGP                   = 0x59\n\tIPPROTO_PGM                       = 0x71\n\tIPPROTO_PIGP                      = 0x9\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PRM                       = 0x15\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_PVP                       = 0x4b\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_RCCMON                    = 0xa\n\tIPPROTO_RDP                       = 0x1b\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_RVD                       = 0x42\n\tIPPROTO_SATEXPAK                  = 0x40\n\tIPPROTO_SATMON                    = 0x45\n\tIPPROTO_SCCSP                     = 0x60\n\tIPPROTO_SCTP                      = 0x84\n\tIPPROTO_SDRP                      = 0x2a\n\tIPPROTO_SEP                       = 0x21\n\tIPPROTO_SRPC                      = 0x5a\n\tIPPROTO_ST                        = 0x7\n\tIPPROTO_SVMTP                     = 0x52\n\tIPPROTO_SWIPE                     = 0x35\n\tIPPROTO_TCF                       = 0x57\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_TPXX                      = 0x27\n\tIPPROTO_TRUNK1                    = 0x17\n\tIPPROTO_TRUNK2                    = 0x18\n\tIPPROTO_TTP                       = 0x54\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_VINES                     = 0x53\n\tIPPROTO_VISA                      = 0x46\n\tIPPROTO_VMTP                      = 0x51\n\tIPPROTO_WBEXPAK                   = 0x4f\n\tIPPROTO_WBMON                     = 0x4e\n\tIPPROTO_WSN                       = 0x4a\n\tIPPROTO_XNET                      = 0xf\n\tIPPROTO_XTP                       = 0x24\n\tIPV6_2292DSTOPTS                  = 0x17\n\tIPV6_2292HOPLIMIT                 = 0x14\n\tIPV6_2292HOPOPTS                  = 0x16\n\tIPV6_2292NEXTHOP                  = 0x15\n\tIPV6_2292PKTINFO                  = 0x13\n\tIPV6_2292PKTOPTIONS               = 0x19\n\tIPV6_2292RTHDR                    = 0x18\n\tIPV6_BINDV6ONLY                   = 0x1b\n\tIPV6_BOUND_IF                     = 0x7d\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FLOW_ECN_MASK                = 0x300\n\tIPV6_FRAGTTL                      = 0x3c\n\tIPV6_FW_ADD                       = 0x1e\n\tIPV6_FW_DEL                       = 0x1f\n\tIPV6_FW_FLUSH                     = 0x20\n\tIPV6_FW_GET                       = 0x22\n\tIPV6_FW_ZERO                      = 0x21\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_IPSEC_POLICY                 = 0x1c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXOPTHDR                    = 0x800\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MAX_GROUP_SRC_FILTER         = 0x200\n\tIPV6_MAX_MEMBERSHIPS              = 0xfff\n\tIPV6_MAX_SOCK_SRC_FILTER          = 0x80\n\tIPV6_MIN_MEMBERSHIPS              = 0x1f\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVTCLASS                   = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x24\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP          = 0x46\n\tIP_BLOCK_SOURCE                   = 0x48\n\tIP_BOUND_IF                       = 0x19\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP         = 0x47\n\tIP_DUMMYNET_CONFIGURE             = 0x3c\n\tIP_DUMMYNET_DEL                   = 0x3d\n\tIP_DUMMYNET_FLUSH                 = 0x3e\n\tIP_DUMMYNET_GET                   = 0x40\n\tIP_FAITH                          = 0x16\n\tIP_FW_ADD                         = 0x28\n\tIP_FW_DEL                         = 0x29\n\tIP_FW_FLUSH                       = 0x2a\n\tIP_FW_GET                         = 0x2c\n\tIP_FW_RESETLOG                    = 0x2d\n\tIP_FW_ZERO                        = 0x2b\n\tIP_HDRINCL                        = 0x2\n\tIP_IPSEC_POLICY                   = 0x15\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_GROUP_SRC_FILTER           = 0x200\n\tIP_MAX_MEMBERSHIPS                = 0xfff\n\tIP_MAX_SOCK_MUTE_FILTER           = 0x80\n\tIP_MAX_SOCK_SRC_FILTER            = 0x80\n\tIP_MF                             = 0x2000\n\tIP_MIN_MEMBERSHIPS                = 0x1f\n\tIP_MSFILTER                       = 0x4a\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_IFINDEX              = 0x42\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_MULTICAST_VIF                  = 0xe\n\tIP_NAT__XXX                       = 0x37\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OLD_FW_ADD                     = 0x32\n\tIP_OLD_FW_DEL                     = 0x33\n\tIP_OLD_FW_FLUSH                   = 0x34\n\tIP_OLD_FW_GET                     = 0x36\n\tIP_OLD_FW_RESETLOG                = 0x38\n\tIP_OLD_FW_ZERO                    = 0x35\n\tIP_OPTIONS                        = 0x1\n\tIP_PKTINFO                        = 0x1a\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVIF                         = 0x14\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVPKTINFO                    = 0x1a\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVTOS                        = 0x1b\n\tIP_RECVTTL                        = 0x18\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RSVP_OFF                       = 0x10\n\tIP_RSVP_ON                        = 0xf\n\tIP_RSVP_VIF_OFF                   = 0x12\n\tIP_RSVP_VIF_ON                    = 0x11\n\tIP_STRIPHDR                       = 0x17\n\tIP_TOS                            = 0x3\n\tIP_TRAFFIC_MGT_BACKGROUND         = 0x41\n\tIP_TTL                            = 0x4\n\tIP_UNBLOCK_SOURCE                 = 0x49\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIUTF8                             = 0x4000\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_CAN_REUSE                    = 0x9\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x5\n\tMADV_FREE_REUSABLE                = 0x7\n\tMADV_FREE_REUSE                   = 0x8\n\tMADV_NORMAL                       = 0x0\n\tMADV_PAGEOUT                      = 0xa\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_WILLNEED                     = 0x3\n\tMADV_ZERO_WIRED_PAGES             = 0x6\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_HASSEMAPHORE                  = 0x200\n\tMAP_JIT                           = 0x800\n\tMAP_NOCACHE                       = 0x400\n\tMAP_NOEXTEND                      = 0x100\n\tMAP_NORESERVE                     = 0x40\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_RESERVED0080                  = 0x80\n\tMAP_RESILIENT_CODESIGN            = 0x2000\n\tMAP_RESILIENT_MEDIA               = 0x4000\n\tMAP_SHARED                        = 0x1\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_AUTOMOUNTED                   = 0x400000\n\tMNT_CMDFLAGS                      = 0xf0000\n\tMNT_CPROTECT                      = 0x80\n\tMNT_DEFWRITE                      = 0x2000000\n\tMNT_DONTBROWSE                    = 0x100000\n\tMNT_DOVOLFS                       = 0x8000\n\tMNT_DWAIT                         = 0x4\n\tMNT_EXPORTED                      = 0x100\n\tMNT_FORCE                         = 0x80000\n\tMNT_IGNORE_OWNERSHIP              = 0x200000\n\tMNT_JOURNALED                     = 0x800000\n\tMNT_LOCAL                         = 0x1000\n\tMNT_MULTILABEL                    = 0x4000000\n\tMNT_NOATIME                       = 0x10000000\n\tMNT_NOBLOCK                       = 0x20000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOUSERXATTR                   = 0x1000000\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUARANTINE                    = 0x400\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UNION                         = 0x20\n\tMNT_UNKNOWNPERMISSIONS            = 0x200000\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0x17f0f5ff\n\tMNT_WAIT                          = 0x1\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOF                           = 0x100\n\tMSG_EOR                           = 0x8\n\tMSG_FLUSH                         = 0x400\n\tMSG_HAVEMORE                      = 0x2000\n\tMSG_HOLD                          = 0x800\n\tMSG_NEEDSA                        = 0x10000\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_RCVMORE                       = 0x4000\n\tMSG_SEND                          = 0x1000\n\tMSG_TRUNC                         = 0x10\n\tMSG_WAITALL                       = 0x40\n\tMSG_WAITSTREAM                    = 0x200\n\tMS_ASYNC                          = 0x1\n\tMS_DEACTIVATE                     = 0x8\n\tMS_INVALIDATE                     = 0x2\n\tMS_KILLPAGES                      = 0x4\n\tMS_SYNC                           = 0x10\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_DUMP2                      = 0x7\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_IFLIST2                    = 0x6\n\tNET_RT_MAXID                      = 0xa\n\tNET_RT_STAT                       = 0x4\n\tNET_RT_TRASH                      = 0x5\n\tNFDBITS                           = 0x20\n\tNL0                               = 0x0\n\tNL1                               = 0x100\n\tNL2                               = 0x200\n\tNL3                               = 0x300\n\tNLDLY                             = 0x300\n\tNOFLSH                            = 0x80000000\n\tNOKERNINFO                        = 0x2000000\n\tNOTE_ABSOLUTE                     = 0x8\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_BACKGROUND                   = 0x40\n\tNOTE_CHILD                        = 0x4\n\tNOTE_CRITICAL                     = 0x20\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXITSTATUS                   = 0x4000000\n\tNOTE_EXIT_CSERROR                 = 0x40000\n\tNOTE_EXIT_DECRYPTFAIL             = 0x10000\n\tNOTE_EXIT_DETAIL                  = 0x2000000\n\tNOTE_EXIT_DETAIL_MASK             = 0x70000\n\tNOTE_EXIT_MEMORY                  = 0x20000\n\tNOTE_EXIT_REPARENTED              = 0x80000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FFAND                        = 0x40000000\n\tNOTE_FFCOPY                       = 0xc0000000\n\tNOTE_FFCTRLMASK                   = 0xc0000000\n\tNOTE_FFLAGSMASK                   = 0xffffff\n\tNOTE_FFNOP                        = 0x0\n\tNOTE_FFOR                         = 0x80000000\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_FUNLOCK                      = 0x100\n\tNOTE_LEEWAY                       = 0x10\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_MACH_CONTINUOUS_TIME         = 0x80\n\tNOTE_NONE                         = 0x80\n\tNOTE_NSECONDS                     = 0x4\n\tNOTE_OOB                          = 0x2\n\tNOTE_PCTRLMASK                    = -0x100000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_REAP                         = 0x10000000\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_SECONDS                      = 0x1\n\tNOTE_SIGNAL                       = 0x8000000\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRIGGER                      = 0x1000000\n\tNOTE_USECONDS                     = 0x2\n\tNOTE_VM_ERROR                     = 0x10000000\n\tNOTE_VM_PRESSURE                  = 0x80000000\n\tNOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000\n\tNOTE_VM_PRESSURE_TERMINATE        = 0x40000000\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOFDEL                             = 0x20000\n\tOFILL                             = 0x80\n\tONLCR                             = 0x2\n\tONLRET                            = 0x40\n\tONOCR                             = 0x20\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tOXTABS                            = 0x4\n\tO_ACCMODE                         = 0x3\n\tO_ALERT                           = 0x20000000\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x1000000\n\tO_CREAT                           = 0x200\n\tO_DIRECTORY                       = 0x100000\n\tO_DP_GETRAWENCRYPTED              = 0x1\n\tO_DP_GETRAWUNENCRYPTED            = 0x2\n\tO_DSYNC                           = 0x400000\n\tO_EVTONLY                         = 0x8000\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x20000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_POPUP                           = 0x80000000\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_SHLOCK                          = 0x10\n\tO_SYMLINK                         = 0x200000\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tPT_ATTACH                         = 0xa\n\tPT_ATTACHEXC                      = 0xe\n\tPT_CONTINUE                       = 0x7\n\tPT_DENY_ATTACH                    = 0x1f\n\tPT_DETACH                         = 0xb\n\tPT_FIRSTMACH                      = 0x20\n\tPT_FORCEQUOTA                     = 0x1e\n\tPT_KILL                           = 0x8\n\tPT_READ_D                         = 0x2\n\tPT_READ_I                         = 0x1\n\tPT_READ_U                         = 0x3\n\tPT_SIGEXC                         = 0xc\n\tPT_STEP                           = 0x9\n\tPT_THUPDATE                       = 0xd\n\tPT_TRACE_ME                       = 0x0\n\tPT_WRITE_D                        = 0x5\n\tPT_WRITE_I                        = 0x4\n\tPT_WRITE_U                        = 0x6\n\tRLIMIT_AS                         = 0x5\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_CPU_USAGE_MONITOR          = 0x2\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_MAX                          = 0x8\n\tRTAX_NETMASK                      = 0x2\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_NETMASK                       = 0x4\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_BROADCAST                     = 0x400000\n\tRTF_CLONING                       = 0x100\n\tRTF_CONDEMNED                     = 0x2000000\n\tRTF_DELCLONE                      = 0x80\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_IFREF                         = 0x4000000\n\tRTF_IFSCOPE                       = 0x1000000\n\tRTF_LLINFO                        = 0x400\n\tRTF_LOCAL                         = 0x200000\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MULTICAST                     = 0x800000\n\tRTF_NOIFREF                       = 0x2000\n\tRTF_PINNED                        = 0x100000\n\tRTF_PRCLONING                     = 0x10000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x40000\n\tRTF_PROXY                         = 0x8000000\n\tRTF_REJECT                        = 0x8\n\tRTF_ROUTER                        = 0x10000000\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_WASCLONED                     = 0x20000\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DELMADDR                      = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_GET2                          = 0x14\n\tRTM_IFINFO                        = 0xe\n\tRTM_IFINFO2                       = 0x12\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_NEWMADDR                      = 0xf\n\tRTM_NEWMADDR2                     = 0x13\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x5\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tSCM_CREDS                         = 0x3\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x2\n\tSCM_TIMESTAMP_MONOTONIC           = 0x4\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCARPIPLL                       = 0xc0206928\n\tSIOCATMARK                        = 0x40047307\n\tSIOCAUTOADDR                      = 0xc0206926\n\tSIOCAUTONETMASK                   = 0x80206927\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFPHYADDR                    = 0x80206941\n\tSIOCGDRVSPEC                      = 0xc01c697b\n\tSIOCGETVLAN                       = 0xc020697f\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFALTMTU                     = 0xc0206948\n\tSIOCGIFASYNCMAP                   = 0xc020697c\n\tSIOCGIFBOND                       = 0xc0206947\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCAP                        = 0xc020695b\n\tSIOCGIFCONF                       = 0xc0086924\n\tSIOCGIFDEVMTU                     = 0xc0206944\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFKPI                        = 0xc0206987\n\tSIOCGIFMAC                        = 0xc0206982\n\tSIOCGIFMEDIA                      = 0xc0286938\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc0206933\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPDSTADDR                   = 0xc0206940\n\tSIOCGIFPHYS                       = 0xc0206935\n\tSIOCGIFPSRCADDR                   = 0xc020693f\n\tSIOCGIFSTATUS                     = 0xc331693d\n\tSIOCGIFVLAN                       = 0xc020697f\n\tSIOCGIFWAKEFLAGS                  = 0xc0206988\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCIFCREATE                      = 0xc0206978\n\tSIOCIFCREATE2                     = 0xc020697a\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc00c6981\n\tSIOCRSLVMULTI                     = 0xc008693b\n\tSIOCSDRVSPEC                      = 0x801c697b\n\tSIOCSETVLAN                       = 0x8020697e\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFALTMTU                     = 0x80206945\n\tSIOCSIFASYNCMAP                   = 0x8020697d\n\tSIOCSIFBOND                       = 0x80206946\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFCAP                        = 0x8020695a\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFKPI                        = 0x80206986\n\tSIOCSIFLLADDR                     = 0x8020693c\n\tSIOCSIFMAC                        = 0x80206983\n\tSIOCSIFMEDIA                      = 0xc0206937\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x80206934\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPHYADDR                    = 0x8040693e\n\tSIOCSIFPHYS                       = 0x80206936\n\tSIOCSIFVLAN                       = 0x8020697e\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_MAXADDRLEN                   = 0xff\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_DONTTRUNC                      = 0x2000\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LABEL                          = 0x1010\n\tSO_LINGER                         = 0x80\n\tSO_LINGER_SEC                     = 0x1080\n\tSO_NETSVC_MARKING_LEVEL           = 0x1119\n\tSO_NET_SERVICE_TYPE               = 0x1116\n\tSO_NKE                            = 0x1021\n\tSO_NOADDRERR                      = 0x1023\n\tSO_NOSIGPIPE                      = 0x1022\n\tSO_NOTIFYCONFLICT                 = 0x1026\n\tSO_NP_EXTENSIONS                  = 0x1083\n\tSO_NREAD                          = 0x1020\n\tSO_NUMRCVPKT                      = 0x1112\n\tSO_NWRITE                         = 0x1024\n\tSO_OOBINLINE                      = 0x100\n\tSO_PEERLABEL                      = 0x1011\n\tSO_RANDOMPORT                     = 0x1082\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_REUSESHAREUID                  = 0x1025\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_TIMESTAMP                      = 0x400\n\tSO_TIMESTAMP_MONOTONIC            = 0x800\n\tSO_TYPE                           = 0x1008\n\tSO_UPCALLCLOSEWAIT                = 0x1027\n\tSO_USELOOPBACK                    = 0x40\n\tSO_WANTMORE                       = 0x4000\n\tSO_WANTOOBFLAG                    = 0x8000\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IFWHT                           = 0xe000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTAB0                              = 0x0\n\tTAB1                              = 0x400\n\tTAB2                              = 0x800\n\tTAB3                              = 0x4\n\tTABDLY                            = 0xc04\n\tTCIFLUSH                          = 0x1\n\tTCIOFF                            = 0x3\n\tTCIOFLUSH                         = 0x3\n\tTCION                             = 0x4\n\tTCOFLUSH                          = 0x2\n\tTCOOFF                            = 0x1\n\tTCOON                             = 0x2\n\tTCP_CONNECTIONTIMEOUT             = 0x20\n\tTCP_CONNECTION_INFO               = 0x106\n\tTCP_ENABLE_ECN                    = 0x104\n\tTCP_FASTOPEN                      = 0x105\n\tTCP_KEEPALIVE                     = 0x10\n\tTCP_KEEPCNT                       = 0x102\n\tTCP_KEEPINTVL                     = 0x101\n\tTCP_MAXHLEN                       = 0x3c\n\tTCP_MAXOLEN                       = 0x28\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_SACK                      = 0x4\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MINMSS                        = 0xd8\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOOPT                         = 0x8\n\tTCP_NOPUSH                        = 0x4\n\tTCP_NOTSENT_LOWAT                 = 0x201\n\tTCP_RXT_CONNDROPTIME              = 0x80\n\tTCP_RXT_FINDROP                   = 0x100\n\tTCP_SENDMOREACKS                  = 0x103\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDCDTIMESTAMP                  = 0x40087458\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCDSIMICROCODE                  = 0x20007455\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGDRAINWAIT                    = 0x40047456\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCIXOFF                         = 0x20007480\n\tTIOCIXON                          = 0x20007481\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGDTRWAIT                     = 0x4004745a\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x40047403\n\tTIOCMODS                          = 0x80047404\n\tTIOCMSDTRWAIT                     = 0x8004745b\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCPTYGNAME                      = 0x40807453\n\tTIOCPTYGRANT                      = 0x20007454\n\tTIOCPTYUNLK                       = 0x20007452\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCONS                         = 0x20007463\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDRAINWAIT                    = 0x80047457\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSIG                           = 0x2000745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x20007465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCTIMESTAMP                     = 0x40087459\n\tTIOCUCNTL                         = 0x80047466\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVM_LOADAVG                        = 0x2\n\tVM_MACHFACTOR                     = 0x4\n\tVM_MAXID                          = 0x6\n\tVM_METER                          = 0x1\n\tVM_SWAPUSAGE                      = 0x5\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVT0                               = 0x0\n\tVT1                               = 0x10000\n\tVTDLY                             = 0x10000\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWCONTINUED                        = 0x10\n\tWCOREFLAG                         = 0x80\n\tWEXITED                           = 0x4\n\tWNOHANG                           = 0x1\n\tWNOWAIT                           = 0x20\n\tWORDSIZE                          = 0x20\n\tWSTOPPED                          = 0x8\n\tWUNTRACED                         = 0x2\n\tXATTR_CREATE                      = 0x2\n\tXATTR_NODEFAULT                   = 0x10\n\tXATTR_NOFOLLOW                    = 0x1\n\tXATTR_NOSECURITY                  = 0x8\n\tXATTR_REPLACE                     = 0x4\n\tXATTR_SHOWCOMPRESSION             = 0x20\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADARCH        = syscall.Errno(0x56)\n\tEBADEXEC        = syscall.Errno(0x55)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMACHO       = syscall.Errno(0x58)\n\tEBADMSG         = syscall.Errno(0x5e)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x59)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDEVERR         = syscall.Errno(0x53)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x5a)\n\tEILSEQ          = syscall.Errno(0x5c)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x6a)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5f)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x5d)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODATA         = syscall.Errno(0x60)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x61)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x5b)\n\tENOPOLICY       = syscall.Errno(0x67)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x62)\n\tENOSTR          = syscall.Errno(0x63)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x68)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x66)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEOWNERDEAD      = syscall.Errno(0x69)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x64)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tEPWROFF         = syscall.Errno(0x52)\n\tEQFULL          = syscall.Errno(0x6a)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHLIBVERS      = syscall.Errno(0x57)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIME           = syscall.Errno(0x65)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"ENOTSUP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EPWROFF\", \"device power is off\"},\n\t{83, \"EDEVERR\", \"device error\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"EBADEXEC\", \"bad executable (or shared library)\"},\n\t{86, \"EBADARCH\", \"bad CPU type in executable\"},\n\t{87, \"ESHLIBVERS\", \"shared library version mismatch\"},\n\t{88, \"EBADMACHO\", \"malformed Mach-o file\"},\n\t{89, \"ECANCELED\", \"operation canceled\"},\n\t{90, \"EIDRM\", \"identifier removed\"},\n\t{91, \"ENOMSG\", \"no message of desired type\"},\n\t{92, \"EILSEQ\", \"illegal byte sequence\"},\n\t{93, \"ENOATTR\", \"attribute not found\"},\n\t{94, \"EBADMSG\", \"bad message\"},\n\t{95, \"EMULTIHOP\", \"EMULTIHOP (Reserved)\"},\n\t{96, \"ENODATA\", \"no message available on STREAM\"},\n\t{97, \"ENOLINK\", \"ENOLINK (Reserved)\"},\n\t{98, \"ENOSR\", \"no STREAM resources\"},\n\t{99, \"ENOSTR\", \"not a STREAM\"},\n\t{100, \"EPROTO\", \"protocol error\"},\n\t{101, \"ETIME\", \"STREAM ioctl timeout\"},\n\t{102, \"EOPNOTSUPP\", \"operation not supported on socket\"},\n\t{103, \"ENOPOLICY\", \"policy not found\"},\n\t{104, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{105, \"EOWNERDEAD\", \"previous owner died\"},\n\t{106, \"EQFULL\", \"interface output queue is full\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGABRT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,darwin\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1c\n\tAF_ECMA                           = 0x8\n\tAF_HYLINK                         = 0xf\n\tAF_IEEE80211                      = 0x25\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x1e\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1c\n\tAF_ISO                            = 0x7\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x28\n\tAF_NATM                           = 0x1f\n\tAF_NDRV                           = 0x1b\n\tAF_NETBIOS                        = 0x21\n\tAF_NS                             = 0x6\n\tAF_OSI                            = 0x7\n\tAF_PPP                            = 0x22\n\tAF_PUP                            = 0x4\n\tAF_RESERVED_36                    = 0x24\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x18\n\tAF_SNA                            = 0xb\n\tAF_SYSTEM                         = 0x20\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tAF_UTUN                           = 0x26\n\tALTWERASE                         = 0x200\n\tATTR_BIT_MAP_COUNT                = 0x5\n\tATTR_CMN_ACCESSMASK               = 0x20000\n\tATTR_CMN_ACCTIME                  = 0x1000\n\tATTR_CMN_ADDEDTIME                = 0x10000000\n\tATTR_CMN_BKUPTIME                 = 0x2000\n\tATTR_CMN_CHGTIME                  = 0x800\n\tATTR_CMN_CRTIME                   = 0x200\n\tATTR_CMN_DATA_PROTECT_FLAGS       = 0x40000000\n\tATTR_CMN_DEVID                    = 0x2\n\tATTR_CMN_DOCUMENT_ID              = 0x100000\n\tATTR_CMN_ERROR                    = 0x20000000\n\tATTR_CMN_EXTENDED_SECURITY        = 0x400000\n\tATTR_CMN_FILEID                   = 0x2000000\n\tATTR_CMN_FLAGS                    = 0x40000\n\tATTR_CMN_FNDRINFO                 = 0x4000\n\tATTR_CMN_FSID                     = 0x4\n\tATTR_CMN_FULLPATH                 = 0x8000000\n\tATTR_CMN_GEN_COUNT                = 0x80000\n\tATTR_CMN_GRPID                    = 0x10000\n\tATTR_CMN_GRPUUID                  = 0x1000000\n\tATTR_CMN_MODTIME                  = 0x400\n\tATTR_CMN_NAME                     = 0x1\n\tATTR_CMN_NAMEDATTRCOUNT           = 0x80000\n\tATTR_CMN_NAMEDATTRLIST            = 0x100000\n\tATTR_CMN_OBJID                    = 0x20\n\tATTR_CMN_OBJPERMANENTID           = 0x40\n\tATTR_CMN_OBJTAG                   = 0x10\n\tATTR_CMN_OBJTYPE                  = 0x8\n\tATTR_CMN_OWNERID                  = 0x8000\n\tATTR_CMN_PARENTID                 = 0x4000000\n\tATTR_CMN_PAROBJID                 = 0x80\n\tATTR_CMN_RETURNED_ATTRS           = 0x80000000\n\tATTR_CMN_SCRIPT                   = 0x100\n\tATTR_CMN_SETMASK                  = 0x41c7ff00\n\tATTR_CMN_USERACCESS               = 0x200000\n\tATTR_CMN_UUID                     = 0x800000\n\tATTR_CMN_VALIDMASK                = 0xffffffff\n\tATTR_CMN_VOLSETMASK               = 0x6700\n\tATTR_FILE_ALLOCSIZE               = 0x4\n\tATTR_FILE_CLUMPSIZE               = 0x10\n\tATTR_FILE_DATAALLOCSIZE           = 0x400\n\tATTR_FILE_DATAEXTENTS             = 0x800\n\tATTR_FILE_DATALENGTH              = 0x200\n\tATTR_FILE_DEVTYPE                 = 0x20\n\tATTR_FILE_FILETYPE                = 0x40\n\tATTR_FILE_FORKCOUNT               = 0x80\n\tATTR_FILE_FORKLIST                = 0x100\n\tATTR_FILE_IOBLOCKSIZE             = 0x8\n\tATTR_FILE_LINKCOUNT               = 0x1\n\tATTR_FILE_RSRCALLOCSIZE           = 0x2000\n\tATTR_FILE_RSRCEXTENTS             = 0x4000\n\tATTR_FILE_RSRCLENGTH              = 0x1000\n\tATTR_FILE_SETMASK                 = 0x20\n\tATTR_FILE_TOTALSIZE               = 0x2\n\tATTR_FILE_VALIDMASK               = 0x37ff\n\tATTR_VOL_ALLOCATIONCLUMP          = 0x40\n\tATTR_VOL_ATTRIBUTES               = 0x40000000\n\tATTR_VOL_CAPABILITIES             = 0x20000\n\tATTR_VOL_DIRCOUNT                 = 0x400\n\tATTR_VOL_ENCODINGSUSED            = 0x10000\n\tATTR_VOL_FILECOUNT                = 0x200\n\tATTR_VOL_FSTYPE                   = 0x1\n\tATTR_VOL_INFO                     = 0x80000000\n\tATTR_VOL_IOBLOCKSIZE              = 0x80\n\tATTR_VOL_MAXOBJCOUNT              = 0x800\n\tATTR_VOL_MINALLOCATION            = 0x20\n\tATTR_VOL_MOUNTEDDEVICE            = 0x8000\n\tATTR_VOL_MOUNTFLAGS               = 0x4000\n\tATTR_VOL_MOUNTPOINT               = 0x1000\n\tATTR_VOL_NAME                     = 0x2000\n\tATTR_VOL_OBJCOUNT                 = 0x100\n\tATTR_VOL_QUOTA_SIZE               = 0x10000000\n\tATTR_VOL_RESERVED_SIZE            = 0x20000000\n\tATTR_VOL_SETMASK                  = 0x80002000\n\tATTR_VOL_SIGNATURE                = 0x2\n\tATTR_VOL_SIZE                     = 0x4\n\tATTR_VOL_SPACEAVAIL               = 0x10\n\tATTR_VOL_SPACEFREE                = 0x8\n\tATTR_VOL_UUID                     = 0x40000\n\tATTR_VOL_VALIDMASK                = 0xf007ffff\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc00c4279\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044272\n\tBIOCGRTIMEOUT                     = 0x4010426e\n\tBIOCGSEESENT                      = 0x40044276\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDLT                          = 0x80044278\n\tBIOCSETF                          = 0x80104267\n\tBIOCSETFNR                        = 0x8010427e\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044273\n\tBIOCSRTIMEOUT                     = 0x8010426d\n\tBIOCSSEESENT                      = 0x80044277\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x80000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tBS0                               = 0x0\n\tBS1                               = 0x8000\n\tBSDLY                             = 0x8000\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLOCK_MONOTONIC                   = 0x6\n\tCLOCK_MONOTONIC_RAW               = 0x4\n\tCLOCK_MONOTONIC_RAW_APPROX        = 0x5\n\tCLOCK_PROCESS_CPUTIME_ID          = 0xc\n\tCLOCK_REALTIME                    = 0x0\n\tCLOCK_THREAD_CPUTIME_ID           = 0x10\n\tCLOCK_UPTIME_RAW                  = 0x8\n\tCLOCK_UPTIME_RAW_APPROX           = 0x9\n\tCLONE_NOFOLLOW                    = 0x1\n\tCLONE_NOOWNERCOPY                 = 0x2\n\tCR0                               = 0x0\n\tCR1                               = 0x1000\n\tCR2                               = 0x2000\n\tCR3                               = 0x3000\n\tCRDLY                             = 0x3000\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x30000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0x14\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDLT_A429                          = 0xb8\n\tDLT_A653_ICM                      = 0xb9\n\tDLT_AIRONET_HEADER                = 0x78\n\tDLT_AOS                           = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394        = 0x8a\n\tDLT_ARCNET                        = 0x7\n\tDLT_ARCNET_LINUX                  = 0x81\n\tDLT_ATM_CLIP                      = 0x13\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AURORA                        = 0x7e\n\tDLT_AX25                          = 0x3\n\tDLT_AX25_KISS                     = 0xca\n\tDLT_BACNET_MS_TP                  = 0xa5\n\tDLT_BLUETOOTH_HCI_H4              = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR    = 0xc9\n\tDLT_CAN20B                        = 0xbe\n\tDLT_CAN_SOCKETCAN                 = 0xe3\n\tDLT_CHAOS                         = 0x5\n\tDLT_CHDLC                         = 0x68\n\tDLT_CISCO_IOS                     = 0x76\n\tDLT_C_HDLC                        = 0x68\n\tDLT_C_HDLC_WITH_DIR               = 0xcd\n\tDLT_DBUS                          = 0xe7\n\tDLT_DECT                          = 0xdd\n\tDLT_DOCSIS                        = 0x8f\n\tDLT_DVB_CI                        = 0xeb\n\tDLT_ECONET                        = 0x73\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0x6d\n\tDLT_ERF                           = 0xc5\n\tDLT_ERF_ETH                       = 0xaf\n\tDLT_ERF_POS                       = 0xb0\n\tDLT_FC_2                          = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS        = 0xe1\n\tDLT_FDDI                          = 0xa\n\tDLT_FLEXRAY                       = 0xd2\n\tDLT_FRELAY                        = 0x6b\n\tDLT_FRELAY_WITH_DIR               = 0xce\n\tDLT_GCOM_SERIAL                   = 0xad\n\tDLT_GCOM_T1E1                     = 0xac\n\tDLT_GPF_F                         = 0xab\n\tDLT_GPF_T                         = 0xaa\n\tDLT_GPRS_LLC                      = 0xa9\n\tDLT_GSMTAP_ABIS                   = 0xda\n\tDLT_GSMTAP_UM                     = 0xd9\n\tDLT_HHDLC                         = 0x79\n\tDLT_IBM_SN                        = 0x92\n\tDLT_IBM_SP                        = 0x91\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS          = 0xa3\n\tDLT_IEEE802_15_4                  = 0xc3\n\tDLT_IEEE802_15_4_LINUX            = 0xbf\n\tDLT_IEEE802_15_4_NOFCS            = 0xe6\n\tDLT_IEEE802_15_4_NONASK_PHY       = 0xd7\n\tDLT_IEEE802_16_MAC_CPS            = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO      = 0xc1\n\tDLT_IPFILTER                      = 0x74\n\tDLT_IPMB                          = 0xc7\n\tDLT_IPMB_LINUX                    = 0xd1\n\tDLT_IPNET                         = 0xe2\n\tDLT_IPOIB                         = 0xf2\n\tDLT_IPV4                          = 0xe4\n\tDLT_IPV6                          = 0xe5\n\tDLT_IP_OVER_FC                    = 0x7a\n\tDLT_JUNIPER_ATM1                  = 0x89\n\tDLT_JUNIPER_ATM2                  = 0x87\n\tDLT_JUNIPER_ATM_CEMIC             = 0xee\n\tDLT_JUNIPER_CHDLC                 = 0xb5\n\tDLT_JUNIPER_ES                    = 0x84\n\tDLT_JUNIPER_ETHER                 = 0xb2\n\tDLT_JUNIPER_FIBRECHANNEL          = 0xea\n\tDLT_JUNIPER_FRELAY                = 0xb4\n\tDLT_JUNIPER_GGSN                  = 0x85\n\tDLT_JUNIPER_ISM                   = 0xc2\n\tDLT_JUNIPER_MFR                   = 0x86\n\tDLT_JUNIPER_MLFR                  = 0x83\n\tDLT_JUNIPER_MLPPP                 = 0x82\n\tDLT_JUNIPER_MONITOR               = 0xa4\n\tDLT_JUNIPER_PIC_PEER              = 0xae\n\tDLT_JUNIPER_PPP                   = 0xb3\n\tDLT_JUNIPER_PPPOE                 = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM             = 0xa8\n\tDLT_JUNIPER_SERVICES              = 0x88\n\tDLT_JUNIPER_SRX_E2E               = 0xe9\n\tDLT_JUNIPER_ST                    = 0xc8\n\tDLT_JUNIPER_VP                    = 0xb7\n\tDLT_JUNIPER_VS                    = 0xe8\n\tDLT_LAPB_WITH_DIR                 = 0xcf\n\tDLT_LAPD                          = 0xcb\n\tDLT_LIN                           = 0xd4\n\tDLT_LINUX_EVDEV                   = 0xd8\n\tDLT_LINUX_IRDA                    = 0x90\n\tDLT_LINUX_LAPD                    = 0xb1\n\tDLT_LINUX_PPP_WITHDIRECTION       = 0xa6\n\tDLT_LINUX_SLL                     = 0x71\n\tDLT_LOOP                          = 0x6c\n\tDLT_LTALK                         = 0x72\n\tDLT_MATCHING_MAX                  = 0xf5\n\tDLT_MATCHING_MIN                  = 0x68\n\tDLT_MFR                           = 0xb6\n\tDLT_MOST                          = 0xd3\n\tDLT_MPEG_2_TS                     = 0xf3\n\tDLT_MPLS                          = 0xdb\n\tDLT_MTP2                          = 0x8c\n\tDLT_MTP2_WITH_PHDR                = 0x8b\n\tDLT_MTP3                          = 0x8d\n\tDLT_MUX27010                      = 0xec\n\tDLT_NETANALYZER                   = 0xf0\n\tDLT_NETANALYZER_TRANSPARENT       = 0xf1\n\tDLT_NFC_LLCP                      = 0xf5\n\tDLT_NFLOG                         = 0xef\n\tDLT_NG40                          = 0xf4\n\tDLT_NULL                          = 0x0\n\tDLT_PCI_EXP                       = 0x7d\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPI                           = 0xc0\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_PPPD                      = 0xa6\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PPP_WITH_DIR                  = 0xcc\n\tDLT_PPP_WITH_DIRECTION            = 0xa6\n\tDLT_PRISM_HEADER                  = 0x77\n\tDLT_PRONET                        = 0x4\n\tDLT_RAIF1                         = 0xc6\n\tDLT_RAW                           = 0xc\n\tDLT_RIO                           = 0x7c\n\tDLT_SCCP                          = 0x8e\n\tDLT_SITA                          = 0xc4\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDLT_STANAG_5066_D_PDU             = 0xed\n\tDLT_SUNATM                        = 0x7b\n\tDLT_SYMANTEC_FIREWALL             = 0x63\n\tDLT_TZSP                          = 0x80\n\tDLT_USB                           = 0xba\n\tDLT_USB_LINUX                     = 0xbd\n\tDLT_USB_LINUX_MMAPPED             = 0xdc\n\tDLT_USER0                         = 0x93\n\tDLT_USER1                         = 0x94\n\tDLT_USER10                        = 0x9d\n\tDLT_USER11                        = 0x9e\n\tDLT_USER12                        = 0x9f\n\tDLT_USER13                        = 0xa0\n\tDLT_USER14                        = 0xa1\n\tDLT_USER15                        = 0xa2\n\tDLT_USER2                         = 0x95\n\tDLT_USER3                         = 0x96\n\tDLT_USER4                         = 0x97\n\tDLT_USER5                         = 0x98\n\tDLT_USER6                         = 0x99\n\tDLT_USER7                         = 0x9a\n\tDLT_USER8                         = 0x9b\n\tDLT_USER9                         = 0x9c\n\tDLT_WIHART                        = 0xdf\n\tDLT_X2E_SERIAL                    = 0xd5\n\tDLT_X2E_XORAYA                    = 0xd6\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tDT_WHT                            = 0xe\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_EXCEPT                     = -0xf\n\tEVFILT_FS                         = -0x9\n\tEVFILT_MACHPORT                   = -0x8\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0xf\n\tEVFILT_THREADMARKER               = 0xf\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_USER                       = -0xa\n\tEVFILT_VM                         = -0xc\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_DISPATCH                       = 0x80\n\tEV_DISPATCH2                      = 0x180\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG0                          = 0x1000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_OOBAND                         = 0x2000\n\tEV_POLL                           = 0x1000\n\tEV_RECEIPT                        = 0x40\n\tEV_SYSFLAGS                       = 0xf000\n\tEV_UDATA_SPECIFIC                 = 0x100\n\tEV_VANISHED                       = 0x200\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFF0                               = 0x0\n\tFF1                               = 0x4000\n\tFFDLY                             = 0x4000\n\tFLUSHO                            = 0x800000\n\tFSOPT_ATTR_CMN_EXTENDED           = 0x20\n\tFSOPT_NOFOLLOW                    = 0x1\n\tFSOPT_NOINMEMUPDATE               = 0x2\n\tFSOPT_PACK_INVAL_ATTRS            = 0x8\n\tFSOPT_REPORT_FULLSIZE             = 0x4\n\tF_ADDFILESIGS                     = 0x3d\n\tF_ADDFILESIGS_FOR_DYLD_SIM        = 0x53\n\tF_ADDFILESIGS_RETURN              = 0x61\n\tF_ADDSIGS                         = 0x3b\n\tF_ALLOCATEALL                     = 0x4\n\tF_ALLOCATECONTIG                  = 0x2\n\tF_BARRIERFSYNC                    = 0x55\n\tF_CHECK_LV                        = 0x62\n\tF_CHKCLEAN                        = 0x29\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0x43\n\tF_FINDSIGS                        = 0x4e\n\tF_FLUSH_DATA                      = 0x28\n\tF_FREEZE_FS                       = 0x35\n\tF_FULLFSYNC                       = 0x33\n\tF_GETCODEDIR                      = 0x48\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETLKPID                        = 0x42\n\tF_GETNOSIGPIPE                    = 0x4a\n\tF_GETOWN                          = 0x5\n\tF_GETPATH                         = 0x32\n\tF_GETPATH_MTMINFO                 = 0x47\n\tF_GETPROTECTIONCLASS              = 0x3f\n\tF_GETPROTECTIONLEVEL              = 0x4d\n\tF_GLOBAL_NOCACHE                  = 0x37\n\tF_LOG2PHYS                        = 0x31\n\tF_LOG2PHYS_EXT                    = 0x41\n\tF_NOCACHE                         = 0x30\n\tF_NODIRECT                        = 0x3e\n\tF_OK                              = 0x0\n\tF_PATHPKG_CHECK                   = 0x34\n\tF_PEOFPOSMODE                     = 0x3\n\tF_PREALLOCATE                     = 0x2a\n\tF_PUNCHHOLE                       = 0x63\n\tF_RDADVISE                        = 0x2c\n\tF_RDAHEAD                         = 0x2d\n\tF_RDLCK                           = 0x1\n\tF_SETBACKINGSTORE                 = 0x46\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETLKWTIMEOUT                   = 0xa\n\tF_SETNOSIGPIPE                    = 0x49\n\tF_SETOWN                          = 0x6\n\tF_SETPROTECTIONCLASS              = 0x40\n\tF_SETSIZE                         = 0x2b\n\tF_SINGLE_WRITER                   = 0x4c\n\tF_THAW_FS                         = 0x36\n\tF_TRANSCODEKEY                    = 0x4b\n\tF_TRIM_ACTIVE_FILE                = 0x64\n\tF_UNLCK                           = 0x2\n\tF_VOLPOSMODE                      = 0x4\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_ALTPHYS                       = 0x4000\n\tIFF_BROADCAST                     = 0x2\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_AAL5                          = 0x31\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ATM                           = 0x25\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_CARP                          = 0xf8\n\tIFT_CELLULAR                      = 0xff\n\tIFT_CEPT                          = 0x13\n\tIFT_DS3                           = 0x1e\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0x38\n\tIFT_FDDI                          = 0xf\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_GIF                           = 0x37\n\tIFT_HDH1822                       = 0x3\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE8023ADLAG                 = 0x88\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88026                      = 0xa\n\tIFT_L2VLAN                        = 0x87\n\tIFT_LAPB                          = 0x10\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_NSIP                          = 0x1b\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PDP                           = 0xff\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PKTAP                         = 0xfe\n\tIFT_PPP                           = 0x17\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_RS232                         = 0x21\n\tIFT_SDLC                          = 0x11\n\tIFT_SIP                           = 0x1f\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0x39\n\tIFT_T1                            = 0x12\n\tIFT_ULTRA                         = 0x1d\n\tIFT_V35                           = 0x2d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LINKLOCALNETNUM                = 0xa9fe0000\n\tIN_LOOPBACKNET                    = 0x7f\n\tIPPROTO_3PC                       = 0x22\n\tIPPROTO_ADFS                      = 0x44\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_AHIP                      = 0x3d\n\tIPPROTO_APES                      = 0x63\n\tIPPROTO_ARGUS                     = 0xd\n\tIPPROTO_AX25                      = 0x5d\n\tIPPROTO_BHA                       = 0x31\n\tIPPROTO_BLT                       = 0x1e\n\tIPPROTO_BRSATMON                  = 0x4c\n\tIPPROTO_CFTP                      = 0x3e\n\tIPPROTO_CHAOS                     = 0x10\n\tIPPROTO_CMTP                      = 0x26\n\tIPPROTO_CPHB                      = 0x49\n\tIPPROTO_CPNX                      = 0x48\n\tIPPROTO_DDP                       = 0x25\n\tIPPROTO_DGP                       = 0x56\n\tIPPROTO_DIVERT                    = 0xfe\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_EMCON                     = 0xe\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GMTP                      = 0x64\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HELLO                     = 0x3f\n\tIPPROTO_HMP                       = 0x14\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IDPR                      = 0x23\n\tIPPROTO_IDRP                      = 0x2d\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IGP                       = 0x55\n\tIPPROTO_IGRP                      = 0x58\n\tIPPROTO_IL                        = 0x28\n\tIPPROTO_INLSP                     = 0x34\n\tIPPROTO_INP                       = 0x20\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPCV                      = 0x47\n\tIPPROTO_IPEIP                     = 0x5e\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPPC                      = 0x43\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_IRTP                      = 0x1c\n\tIPPROTO_KRYPTOLAN                 = 0x41\n\tIPPROTO_LARP                      = 0x5b\n\tIPPROTO_LEAF1                     = 0x19\n\tIPPROTO_LEAF2                     = 0x1a\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x34\n\tIPPROTO_MEAS                      = 0x13\n\tIPPROTO_MHRP                      = 0x30\n\tIPPROTO_MICP                      = 0x5f\n\tIPPROTO_MTP                       = 0x5c\n\tIPPROTO_MUX                       = 0x12\n\tIPPROTO_ND                        = 0x4d\n\tIPPROTO_NHRP                      = 0x36\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_NSP                       = 0x1f\n\tIPPROTO_NVPII                     = 0xb\n\tIPPROTO_OSPFIGP                   = 0x59\n\tIPPROTO_PGM                       = 0x71\n\tIPPROTO_PIGP                      = 0x9\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PRM                       = 0x15\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_PVP                       = 0x4b\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_RCCMON                    = 0xa\n\tIPPROTO_RDP                       = 0x1b\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_RVD                       = 0x42\n\tIPPROTO_SATEXPAK                  = 0x40\n\tIPPROTO_SATMON                    = 0x45\n\tIPPROTO_SCCSP                     = 0x60\n\tIPPROTO_SCTP                      = 0x84\n\tIPPROTO_SDRP                      = 0x2a\n\tIPPROTO_SEP                       = 0x21\n\tIPPROTO_SRPC                      = 0x5a\n\tIPPROTO_ST                        = 0x7\n\tIPPROTO_SVMTP                     = 0x52\n\tIPPROTO_SWIPE                     = 0x35\n\tIPPROTO_TCF                       = 0x57\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_TPXX                      = 0x27\n\tIPPROTO_TRUNK1                    = 0x17\n\tIPPROTO_TRUNK2                    = 0x18\n\tIPPROTO_TTP                       = 0x54\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_VINES                     = 0x53\n\tIPPROTO_VISA                      = 0x46\n\tIPPROTO_VMTP                      = 0x51\n\tIPPROTO_WBEXPAK                   = 0x4f\n\tIPPROTO_WBMON                     = 0x4e\n\tIPPROTO_WSN                       = 0x4a\n\tIPPROTO_XNET                      = 0xf\n\tIPPROTO_XTP                       = 0x24\n\tIPV6_2292DSTOPTS                  = 0x17\n\tIPV6_2292HOPLIMIT                 = 0x14\n\tIPV6_2292HOPOPTS                  = 0x16\n\tIPV6_2292NEXTHOP                  = 0x15\n\tIPV6_2292PKTINFO                  = 0x13\n\tIPV6_2292PKTOPTIONS               = 0x19\n\tIPV6_2292RTHDR                    = 0x18\n\tIPV6_BINDV6ONLY                   = 0x1b\n\tIPV6_BOUND_IF                     = 0x7d\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FLOW_ECN_MASK                = 0x300\n\tIPV6_FRAGTTL                      = 0x3c\n\tIPV6_FW_ADD                       = 0x1e\n\tIPV6_FW_DEL                       = 0x1f\n\tIPV6_FW_FLUSH                     = 0x20\n\tIPV6_FW_GET                       = 0x22\n\tIPV6_FW_ZERO                      = 0x21\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_IPSEC_POLICY                 = 0x1c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXOPTHDR                    = 0x800\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MAX_GROUP_SRC_FILTER         = 0x200\n\tIPV6_MAX_MEMBERSHIPS              = 0xfff\n\tIPV6_MAX_SOCK_SRC_FILTER          = 0x80\n\tIPV6_MIN_MEMBERSHIPS              = 0x1f\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVTCLASS                   = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x24\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP          = 0x46\n\tIP_BLOCK_SOURCE                   = 0x48\n\tIP_BOUND_IF                       = 0x19\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP         = 0x47\n\tIP_DUMMYNET_CONFIGURE             = 0x3c\n\tIP_DUMMYNET_DEL                   = 0x3d\n\tIP_DUMMYNET_FLUSH                 = 0x3e\n\tIP_DUMMYNET_GET                   = 0x40\n\tIP_FAITH                          = 0x16\n\tIP_FW_ADD                         = 0x28\n\tIP_FW_DEL                         = 0x29\n\tIP_FW_FLUSH                       = 0x2a\n\tIP_FW_GET                         = 0x2c\n\tIP_FW_RESETLOG                    = 0x2d\n\tIP_FW_ZERO                        = 0x2b\n\tIP_HDRINCL                        = 0x2\n\tIP_IPSEC_POLICY                   = 0x15\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_GROUP_SRC_FILTER           = 0x200\n\tIP_MAX_MEMBERSHIPS                = 0xfff\n\tIP_MAX_SOCK_MUTE_FILTER           = 0x80\n\tIP_MAX_SOCK_SRC_FILTER            = 0x80\n\tIP_MF                             = 0x2000\n\tIP_MIN_MEMBERSHIPS                = 0x1f\n\tIP_MSFILTER                       = 0x4a\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_IFINDEX              = 0x42\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_MULTICAST_VIF                  = 0xe\n\tIP_NAT__XXX                       = 0x37\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OLD_FW_ADD                     = 0x32\n\tIP_OLD_FW_DEL                     = 0x33\n\tIP_OLD_FW_FLUSH                   = 0x34\n\tIP_OLD_FW_GET                     = 0x36\n\tIP_OLD_FW_RESETLOG                = 0x38\n\tIP_OLD_FW_ZERO                    = 0x35\n\tIP_OPTIONS                        = 0x1\n\tIP_PKTINFO                        = 0x1a\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVIF                         = 0x14\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVPKTINFO                    = 0x1a\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVTOS                        = 0x1b\n\tIP_RECVTTL                        = 0x18\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RSVP_OFF                       = 0x10\n\tIP_RSVP_ON                        = 0xf\n\tIP_RSVP_VIF_OFF                   = 0x12\n\tIP_RSVP_VIF_ON                    = 0x11\n\tIP_STRIPHDR                       = 0x17\n\tIP_TOS                            = 0x3\n\tIP_TRAFFIC_MGT_BACKGROUND         = 0x41\n\tIP_TTL                            = 0x4\n\tIP_UNBLOCK_SOURCE                 = 0x49\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIUTF8                             = 0x4000\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_CAN_REUSE                    = 0x9\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x5\n\tMADV_FREE_REUSABLE                = 0x7\n\tMADV_FREE_REUSE                   = 0x8\n\tMADV_NORMAL                       = 0x0\n\tMADV_PAGEOUT                      = 0xa\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_WILLNEED                     = 0x3\n\tMADV_ZERO_WIRED_PAGES             = 0x6\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_HASSEMAPHORE                  = 0x200\n\tMAP_JIT                           = 0x800\n\tMAP_NOCACHE                       = 0x400\n\tMAP_NOEXTEND                      = 0x100\n\tMAP_NORESERVE                     = 0x40\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_RESERVED0080                  = 0x80\n\tMAP_RESILIENT_CODESIGN            = 0x2000\n\tMAP_RESILIENT_MEDIA               = 0x4000\n\tMAP_SHARED                        = 0x1\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_AUTOMOUNTED                   = 0x400000\n\tMNT_CMDFLAGS                      = 0xf0000\n\tMNT_CPROTECT                      = 0x80\n\tMNT_DEFWRITE                      = 0x2000000\n\tMNT_DONTBROWSE                    = 0x100000\n\tMNT_DOVOLFS                       = 0x8000\n\tMNT_DWAIT                         = 0x4\n\tMNT_EXPORTED                      = 0x100\n\tMNT_FORCE                         = 0x80000\n\tMNT_IGNORE_OWNERSHIP              = 0x200000\n\tMNT_JOURNALED                     = 0x800000\n\tMNT_LOCAL                         = 0x1000\n\tMNT_MULTILABEL                    = 0x4000000\n\tMNT_NOATIME                       = 0x10000000\n\tMNT_NOBLOCK                       = 0x20000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOUSERXATTR                   = 0x1000000\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUARANTINE                    = 0x400\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UNION                         = 0x20\n\tMNT_UNKNOWNPERMISSIONS            = 0x200000\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0x17f0f5ff\n\tMNT_WAIT                          = 0x1\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOF                           = 0x100\n\tMSG_EOR                           = 0x8\n\tMSG_FLUSH                         = 0x400\n\tMSG_HAVEMORE                      = 0x2000\n\tMSG_HOLD                          = 0x800\n\tMSG_NEEDSA                        = 0x10000\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_RCVMORE                       = 0x4000\n\tMSG_SEND                          = 0x1000\n\tMSG_TRUNC                         = 0x10\n\tMSG_WAITALL                       = 0x40\n\tMSG_WAITSTREAM                    = 0x200\n\tMS_ASYNC                          = 0x1\n\tMS_DEACTIVATE                     = 0x8\n\tMS_INVALIDATE                     = 0x2\n\tMS_KILLPAGES                      = 0x4\n\tMS_SYNC                           = 0x10\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_DUMP2                      = 0x7\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_IFLIST2                    = 0x6\n\tNET_RT_MAXID                      = 0xa\n\tNET_RT_STAT                       = 0x4\n\tNET_RT_TRASH                      = 0x5\n\tNFDBITS                           = 0x20\n\tNL0                               = 0x0\n\tNL1                               = 0x100\n\tNL2                               = 0x200\n\tNL3                               = 0x300\n\tNLDLY                             = 0x300\n\tNOFLSH                            = 0x80000000\n\tNOKERNINFO                        = 0x2000000\n\tNOTE_ABSOLUTE                     = 0x8\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_BACKGROUND                   = 0x40\n\tNOTE_CHILD                        = 0x4\n\tNOTE_CRITICAL                     = 0x20\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXITSTATUS                   = 0x4000000\n\tNOTE_EXIT_CSERROR                 = 0x40000\n\tNOTE_EXIT_DECRYPTFAIL             = 0x10000\n\tNOTE_EXIT_DETAIL                  = 0x2000000\n\tNOTE_EXIT_DETAIL_MASK             = 0x70000\n\tNOTE_EXIT_MEMORY                  = 0x20000\n\tNOTE_EXIT_REPARENTED              = 0x80000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FFAND                        = 0x40000000\n\tNOTE_FFCOPY                       = 0xc0000000\n\tNOTE_FFCTRLMASK                   = 0xc0000000\n\tNOTE_FFLAGSMASK                   = 0xffffff\n\tNOTE_FFNOP                        = 0x0\n\tNOTE_FFOR                         = 0x80000000\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_FUNLOCK                      = 0x100\n\tNOTE_LEEWAY                       = 0x10\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_MACH_CONTINUOUS_TIME         = 0x80\n\tNOTE_NONE                         = 0x80\n\tNOTE_NSECONDS                     = 0x4\n\tNOTE_OOB                          = 0x2\n\tNOTE_PCTRLMASK                    = -0x100000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_REAP                         = 0x10000000\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_SECONDS                      = 0x1\n\tNOTE_SIGNAL                       = 0x8000000\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRIGGER                      = 0x1000000\n\tNOTE_USECONDS                     = 0x2\n\tNOTE_VM_ERROR                     = 0x10000000\n\tNOTE_VM_PRESSURE                  = 0x80000000\n\tNOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000\n\tNOTE_VM_PRESSURE_TERMINATE        = 0x40000000\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOFDEL                             = 0x20000\n\tOFILL                             = 0x80\n\tONLCR                             = 0x2\n\tONLRET                            = 0x40\n\tONOCR                             = 0x20\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tOXTABS                            = 0x4\n\tO_ACCMODE                         = 0x3\n\tO_ALERT                           = 0x20000000\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x1000000\n\tO_CREAT                           = 0x200\n\tO_DIRECTORY                       = 0x100000\n\tO_DP_GETRAWENCRYPTED              = 0x1\n\tO_DP_GETRAWUNENCRYPTED            = 0x2\n\tO_DSYNC                           = 0x400000\n\tO_EVTONLY                         = 0x8000\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x20000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_POPUP                           = 0x80000000\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_SHLOCK                          = 0x10\n\tO_SYMLINK                         = 0x200000\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tPT_ATTACH                         = 0xa\n\tPT_ATTACHEXC                      = 0xe\n\tPT_CONTINUE                       = 0x7\n\tPT_DENY_ATTACH                    = 0x1f\n\tPT_DETACH                         = 0xb\n\tPT_FIRSTMACH                      = 0x20\n\tPT_FORCEQUOTA                     = 0x1e\n\tPT_KILL                           = 0x8\n\tPT_READ_D                         = 0x2\n\tPT_READ_I                         = 0x1\n\tPT_READ_U                         = 0x3\n\tPT_SIGEXC                         = 0xc\n\tPT_STEP                           = 0x9\n\tPT_THUPDATE                       = 0xd\n\tPT_TRACE_ME                       = 0x0\n\tPT_WRITE_D                        = 0x5\n\tPT_WRITE_I                        = 0x4\n\tPT_WRITE_U                        = 0x6\n\tRLIMIT_AS                         = 0x5\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_CPU_USAGE_MONITOR          = 0x2\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_MAX                          = 0x8\n\tRTAX_NETMASK                      = 0x2\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_NETMASK                       = 0x4\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_BROADCAST                     = 0x400000\n\tRTF_CLONING                       = 0x100\n\tRTF_CONDEMNED                     = 0x2000000\n\tRTF_DELCLONE                      = 0x80\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_IFREF                         = 0x4000000\n\tRTF_IFSCOPE                       = 0x1000000\n\tRTF_LLINFO                        = 0x400\n\tRTF_LOCAL                         = 0x200000\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MULTICAST                     = 0x800000\n\tRTF_NOIFREF                       = 0x2000\n\tRTF_PINNED                        = 0x100000\n\tRTF_PRCLONING                     = 0x10000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x40000\n\tRTF_PROXY                         = 0x8000000\n\tRTF_REJECT                        = 0x8\n\tRTF_ROUTER                        = 0x10000000\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_WASCLONED                     = 0x20000\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DELMADDR                      = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_GET2                          = 0x14\n\tRTM_IFINFO                        = 0xe\n\tRTM_IFINFO2                       = 0x12\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_NEWMADDR                      = 0xf\n\tRTM_NEWMADDR2                     = 0x13\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x5\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tSCM_CREDS                         = 0x3\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x2\n\tSCM_TIMESTAMP_MONOTONIC           = 0x4\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCARPIPLL                       = 0xc0206928\n\tSIOCATMARK                        = 0x40047307\n\tSIOCAUTOADDR                      = 0xc0206926\n\tSIOCAUTONETMASK                   = 0x80206927\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFPHYADDR                    = 0x80206941\n\tSIOCGDRVSPEC                      = 0xc028697b\n\tSIOCGETVLAN                       = 0xc020697f\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFALTMTU                     = 0xc0206948\n\tSIOCGIFASYNCMAP                   = 0xc020697c\n\tSIOCGIFBOND                       = 0xc0206947\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCAP                        = 0xc020695b\n\tSIOCGIFCONF                       = 0xc00c6924\n\tSIOCGIFDEVMTU                     = 0xc0206944\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFKPI                        = 0xc0206987\n\tSIOCGIFMAC                        = 0xc0206982\n\tSIOCGIFMEDIA                      = 0xc02c6938\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc0206933\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPDSTADDR                   = 0xc0206940\n\tSIOCGIFPHYS                       = 0xc0206935\n\tSIOCGIFPSRCADDR                   = 0xc020693f\n\tSIOCGIFSTATUS                     = 0xc331693d\n\tSIOCGIFVLAN                       = 0xc020697f\n\tSIOCGIFWAKEFLAGS                  = 0xc0206988\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCIFCREATE                      = 0xc0206978\n\tSIOCIFCREATE2                     = 0xc020697a\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc0106981\n\tSIOCRSLVMULTI                     = 0xc010693b\n\tSIOCSDRVSPEC                      = 0x8028697b\n\tSIOCSETVLAN                       = 0x8020697e\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFALTMTU                     = 0x80206945\n\tSIOCSIFASYNCMAP                   = 0x8020697d\n\tSIOCSIFBOND                       = 0x80206946\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFCAP                        = 0x8020695a\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFKPI                        = 0x80206986\n\tSIOCSIFLLADDR                     = 0x8020693c\n\tSIOCSIFMAC                        = 0x80206983\n\tSIOCSIFMEDIA                      = 0xc0206937\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x80206934\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPHYADDR                    = 0x8040693e\n\tSIOCSIFPHYS                       = 0x80206936\n\tSIOCSIFVLAN                       = 0x8020697e\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_MAXADDRLEN                   = 0xff\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_DONTTRUNC                      = 0x2000\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LABEL                          = 0x1010\n\tSO_LINGER                         = 0x80\n\tSO_LINGER_SEC                     = 0x1080\n\tSO_NETSVC_MARKING_LEVEL           = 0x1119\n\tSO_NET_SERVICE_TYPE               = 0x1116\n\tSO_NKE                            = 0x1021\n\tSO_NOADDRERR                      = 0x1023\n\tSO_NOSIGPIPE                      = 0x1022\n\tSO_NOTIFYCONFLICT                 = 0x1026\n\tSO_NP_EXTENSIONS                  = 0x1083\n\tSO_NREAD                          = 0x1020\n\tSO_NUMRCVPKT                      = 0x1112\n\tSO_NWRITE                         = 0x1024\n\tSO_OOBINLINE                      = 0x100\n\tSO_PEERLABEL                      = 0x1011\n\tSO_RANDOMPORT                     = 0x1082\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_REUSESHAREUID                  = 0x1025\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_TIMESTAMP                      = 0x400\n\tSO_TIMESTAMP_MONOTONIC            = 0x800\n\tSO_TYPE                           = 0x1008\n\tSO_UPCALLCLOSEWAIT                = 0x1027\n\tSO_USELOOPBACK                    = 0x40\n\tSO_WANTMORE                       = 0x4000\n\tSO_WANTOOBFLAG                    = 0x8000\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IFWHT                           = 0xe000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTAB0                              = 0x0\n\tTAB1                              = 0x400\n\tTAB2                              = 0x800\n\tTAB3                              = 0x4\n\tTABDLY                            = 0xc04\n\tTCIFLUSH                          = 0x1\n\tTCIOFF                            = 0x3\n\tTCIOFLUSH                         = 0x3\n\tTCION                             = 0x4\n\tTCOFLUSH                          = 0x2\n\tTCOOFF                            = 0x1\n\tTCOON                             = 0x2\n\tTCP_CONNECTIONTIMEOUT             = 0x20\n\tTCP_CONNECTION_INFO               = 0x106\n\tTCP_ENABLE_ECN                    = 0x104\n\tTCP_FASTOPEN                      = 0x105\n\tTCP_KEEPALIVE                     = 0x10\n\tTCP_KEEPCNT                       = 0x102\n\tTCP_KEEPINTVL                     = 0x101\n\tTCP_MAXHLEN                       = 0x3c\n\tTCP_MAXOLEN                       = 0x28\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_SACK                      = 0x4\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MINMSS                        = 0xd8\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOOPT                         = 0x8\n\tTCP_NOPUSH                        = 0x4\n\tTCP_NOTSENT_LOWAT                 = 0x201\n\tTCP_RXT_CONNDROPTIME              = 0x80\n\tTCP_RXT_FINDROP                   = 0x100\n\tTCP_SENDMOREACKS                  = 0x103\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDCDTIMESTAMP                  = 0x40107458\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCDSIMICROCODE                  = 0x20007455\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGDRAINWAIT                    = 0x40047456\n\tTIOCGETA                          = 0x40487413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCIXOFF                         = 0x20007480\n\tTIOCIXON                          = 0x20007481\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGDTRWAIT                     = 0x4004745a\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x40047403\n\tTIOCMODS                          = 0x80047404\n\tTIOCMSDTRWAIT                     = 0x8004745b\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCPTYGNAME                      = 0x40807453\n\tTIOCPTYGRANT                      = 0x20007454\n\tTIOCPTYUNLK                       = 0x20007452\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCONS                         = 0x20007463\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDRAINWAIT                    = 0x80047457\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x80487414\n\tTIOCSETAF                         = 0x80487416\n\tTIOCSETAW                         = 0x80487415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSIG                           = 0x2000745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x20007465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCTIMESTAMP                     = 0x40107459\n\tTIOCUCNTL                         = 0x80047466\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVM_LOADAVG                        = 0x2\n\tVM_MACHFACTOR                     = 0x4\n\tVM_MAXID                          = 0x6\n\tVM_METER                          = 0x1\n\tVM_SWAPUSAGE                      = 0x5\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVT0                               = 0x0\n\tVT1                               = 0x10000\n\tVTDLY                             = 0x10000\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWCONTINUED                        = 0x10\n\tWCOREFLAG                         = 0x80\n\tWEXITED                           = 0x4\n\tWNOHANG                           = 0x1\n\tWNOWAIT                           = 0x20\n\tWORDSIZE                          = 0x40\n\tWSTOPPED                          = 0x8\n\tWUNTRACED                         = 0x2\n\tXATTR_CREATE                      = 0x2\n\tXATTR_NODEFAULT                   = 0x10\n\tXATTR_NOFOLLOW                    = 0x1\n\tXATTR_NOSECURITY                  = 0x8\n\tXATTR_REPLACE                     = 0x4\n\tXATTR_SHOWCOMPRESSION             = 0x20\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADARCH        = syscall.Errno(0x56)\n\tEBADEXEC        = syscall.Errno(0x55)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMACHO       = syscall.Errno(0x58)\n\tEBADMSG         = syscall.Errno(0x5e)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x59)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDEVERR         = syscall.Errno(0x53)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x5a)\n\tEILSEQ          = syscall.Errno(0x5c)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x6a)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5f)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x5d)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODATA         = syscall.Errno(0x60)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x61)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x5b)\n\tENOPOLICY       = syscall.Errno(0x67)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x62)\n\tENOSTR          = syscall.Errno(0x63)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x68)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x66)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEOWNERDEAD      = syscall.Errno(0x69)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x64)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tEPWROFF         = syscall.Errno(0x52)\n\tEQFULL          = syscall.Errno(0x6a)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHLIBVERS      = syscall.Errno(0x57)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIME           = syscall.Errno(0x65)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"ENOTSUP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EPWROFF\", \"device power is off\"},\n\t{83, \"EDEVERR\", \"device error\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"EBADEXEC\", \"bad executable (or shared library)\"},\n\t{86, \"EBADARCH\", \"bad CPU type in executable\"},\n\t{87, \"ESHLIBVERS\", \"shared library version mismatch\"},\n\t{88, \"EBADMACHO\", \"malformed Mach-o file\"},\n\t{89, \"ECANCELED\", \"operation canceled\"},\n\t{90, \"EIDRM\", \"identifier removed\"},\n\t{91, \"ENOMSG\", \"no message of desired type\"},\n\t{92, \"EILSEQ\", \"illegal byte sequence\"},\n\t{93, \"ENOATTR\", \"attribute not found\"},\n\t{94, \"EBADMSG\", \"bad message\"},\n\t{95, \"EMULTIHOP\", \"EMULTIHOP (Reserved)\"},\n\t{96, \"ENODATA\", \"no message available on STREAM\"},\n\t{97, \"ENOLINK\", \"ENOLINK (Reserved)\"},\n\t{98, \"ENOSR\", \"no STREAM resources\"},\n\t{99, \"ENOSTR\", \"not a STREAM\"},\n\t{100, \"EPROTO\", \"protocol error\"},\n\t{101, \"ETIME\", \"STREAM ioctl timeout\"},\n\t{102, \"EOPNOTSUPP\", \"operation not supported on socket\"},\n\t{103, \"ENOPOLICY\", \"policy not found\"},\n\t{104, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{105, \"EOWNERDEAD\", \"previous owner died\"},\n\t{106, \"EQFULL\", \"interface output queue is full\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGABRT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go",
    "content": "// mkerrors.sh\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,darwin\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1c\n\tAF_ECMA                           = 0x8\n\tAF_HYLINK                         = 0xf\n\tAF_IEEE80211                      = 0x25\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x1e\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1c\n\tAF_ISO                            = 0x7\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x28\n\tAF_NATM                           = 0x1f\n\tAF_NDRV                           = 0x1b\n\tAF_NETBIOS                        = 0x21\n\tAF_NS                             = 0x6\n\tAF_OSI                            = 0x7\n\tAF_PPP                            = 0x22\n\tAF_PUP                            = 0x4\n\tAF_RESERVED_36                    = 0x24\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x18\n\tAF_SNA                            = 0xb\n\tAF_SYSTEM                         = 0x20\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tAF_UTUN                           = 0x26\n\tALTWERASE                         = 0x200\n\tATTR_BIT_MAP_COUNT                = 0x5\n\tATTR_CMN_ACCESSMASK               = 0x20000\n\tATTR_CMN_ACCTIME                  = 0x1000\n\tATTR_CMN_ADDEDTIME                = 0x10000000\n\tATTR_CMN_BKUPTIME                 = 0x2000\n\tATTR_CMN_CHGTIME                  = 0x800\n\tATTR_CMN_CRTIME                   = 0x200\n\tATTR_CMN_DATA_PROTECT_FLAGS       = 0x40000000\n\tATTR_CMN_DEVID                    = 0x2\n\tATTR_CMN_DOCUMENT_ID              = 0x100000\n\tATTR_CMN_ERROR                    = 0x20000000\n\tATTR_CMN_EXTENDED_SECURITY        = 0x400000\n\tATTR_CMN_FILEID                   = 0x2000000\n\tATTR_CMN_FLAGS                    = 0x40000\n\tATTR_CMN_FNDRINFO                 = 0x4000\n\tATTR_CMN_FSID                     = 0x4\n\tATTR_CMN_FULLPATH                 = 0x8000000\n\tATTR_CMN_GEN_COUNT                = 0x80000\n\tATTR_CMN_GRPID                    = 0x10000\n\tATTR_CMN_GRPUUID                  = 0x1000000\n\tATTR_CMN_MODTIME                  = 0x400\n\tATTR_CMN_NAME                     = 0x1\n\tATTR_CMN_NAMEDATTRCOUNT           = 0x80000\n\tATTR_CMN_NAMEDATTRLIST            = 0x100000\n\tATTR_CMN_OBJID                    = 0x20\n\tATTR_CMN_OBJPERMANENTID           = 0x40\n\tATTR_CMN_OBJTAG                   = 0x10\n\tATTR_CMN_OBJTYPE                  = 0x8\n\tATTR_CMN_OWNERID                  = 0x8000\n\tATTR_CMN_PARENTID                 = 0x4000000\n\tATTR_CMN_PAROBJID                 = 0x80\n\tATTR_CMN_RETURNED_ATTRS           = 0x80000000\n\tATTR_CMN_SCRIPT                   = 0x100\n\tATTR_CMN_SETMASK                  = 0x41c7ff00\n\tATTR_CMN_USERACCESS               = 0x200000\n\tATTR_CMN_UUID                     = 0x800000\n\tATTR_CMN_VALIDMASK                = 0xffffffff\n\tATTR_CMN_VOLSETMASK               = 0x6700\n\tATTR_FILE_ALLOCSIZE               = 0x4\n\tATTR_FILE_CLUMPSIZE               = 0x10\n\tATTR_FILE_DATAALLOCSIZE           = 0x400\n\tATTR_FILE_DATAEXTENTS             = 0x800\n\tATTR_FILE_DATALENGTH              = 0x200\n\tATTR_FILE_DEVTYPE                 = 0x20\n\tATTR_FILE_FILETYPE                = 0x40\n\tATTR_FILE_FORKCOUNT               = 0x80\n\tATTR_FILE_FORKLIST                = 0x100\n\tATTR_FILE_IOBLOCKSIZE             = 0x8\n\tATTR_FILE_LINKCOUNT               = 0x1\n\tATTR_FILE_RSRCALLOCSIZE           = 0x2000\n\tATTR_FILE_RSRCEXTENTS             = 0x4000\n\tATTR_FILE_RSRCLENGTH              = 0x1000\n\tATTR_FILE_SETMASK                 = 0x20\n\tATTR_FILE_TOTALSIZE               = 0x2\n\tATTR_FILE_VALIDMASK               = 0x37ff\n\tATTR_VOL_ALLOCATIONCLUMP          = 0x40\n\tATTR_VOL_ATTRIBUTES               = 0x40000000\n\tATTR_VOL_CAPABILITIES             = 0x20000\n\tATTR_VOL_DIRCOUNT                 = 0x400\n\tATTR_VOL_ENCODINGSUSED            = 0x10000\n\tATTR_VOL_FILECOUNT                = 0x200\n\tATTR_VOL_FSTYPE                   = 0x1\n\tATTR_VOL_INFO                     = 0x80000000\n\tATTR_VOL_IOBLOCKSIZE              = 0x80\n\tATTR_VOL_MAXOBJCOUNT              = 0x800\n\tATTR_VOL_MINALLOCATION            = 0x20\n\tATTR_VOL_MOUNTEDDEVICE            = 0x8000\n\tATTR_VOL_MOUNTFLAGS               = 0x4000\n\tATTR_VOL_MOUNTPOINT               = 0x1000\n\tATTR_VOL_NAME                     = 0x2000\n\tATTR_VOL_OBJCOUNT                 = 0x100\n\tATTR_VOL_QUOTA_SIZE               = 0x10000000\n\tATTR_VOL_RESERVED_SIZE            = 0x20000000\n\tATTR_VOL_SETMASK                  = 0x80002000\n\tATTR_VOL_SIGNATURE                = 0x2\n\tATTR_VOL_SIZE                     = 0x4\n\tATTR_VOL_SPACEAVAIL               = 0x10\n\tATTR_VOL_SPACEFREE                = 0x8\n\tATTR_VOL_UUID                     = 0x40000\n\tATTR_VOL_VALIDMASK                = 0xf007ffff\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc00c4279\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044272\n\tBIOCGRTIMEOUT                     = 0x4010426e\n\tBIOCGSEESENT                      = 0x40044276\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDLT                          = 0x80044278\n\tBIOCSETF                          = 0x80104267\n\tBIOCSETFNR                        = 0x8010427e\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044273\n\tBIOCSRTIMEOUT                     = 0x8010426d\n\tBIOCSSEESENT                      = 0x80044277\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x80000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tBS0                               = 0x0\n\tBS1                               = 0x8000\n\tBSDLY                             = 0x8000\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLOCK_MONOTONIC                   = 0x6\n\tCLOCK_MONOTONIC_RAW               = 0x4\n\tCLOCK_MONOTONIC_RAW_APPROX        = 0x5\n\tCLOCK_PROCESS_CPUTIME_ID          = 0xc\n\tCLOCK_REALTIME                    = 0x0\n\tCLOCK_THREAD_CPUTIME_ID           = 0x10\n\tCLOCK_UPTIME_RAW                  = 0x8\n\tCLOCK_UPTIME_RAW_APPROX           = 0x9\n\tCLONE_NOFOLLOW                    = 0x1\n\tCLONE_NOOWNERCOPY                 = 0x2\n\tCR0                               = 0x0\n\tCR1                               = 0x1000\n\tCR2                               = 0x2000\n\tCR3                               = 0x3000\n\tCRDLY                             = 0x3000\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x30000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0x14\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDLT_A429                          = 0xb8\n\tDLT_A653_ICM                      = 0xb9\n\tDLT_AIRONET_HEADER                = 0x78\n\tDLT_AOS                           = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394        = 0x8a\n\tDLT_ARCNET                        = 0x7\n\tDLT_ARCNET_LINUX                  = 0x81\n\tDLT_ATM_CLIP                      = 0x13\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AURORA                        = 0x7e\n\tDLT_AX25                          = 0x3\n\tDLT_AX25_KISS                     = 0xca\n\tDLT_BACNET_MS_TP                  = 0xa5\n\tDLT_BLUETOOTH_HCI_H4              = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR    = 0xc9\n\tDLT_CAN20B                        = 0xbe\n\tDLT_CAN_SOCKETCAN                 = 0xe3\n\tDLT_CHAOS                         = 0x5\n\tDLT_CHDLC                         = 0x68\n\tDLT_CISCO_IOS                     = 0x76\n\tDLT_C_HDLC                        = 0x68\n\tDLT_C_HDLC_WITH_DIR               = 0xcd\n\tDLT_DBUS                          = 0xe7\n\tDLT_DECT                          = 0xdd\n\tDLT_DOCSIS                        = 0x8f\n\tDLT_DVB_CI                        = 0xeb\n\tDLT_ECONET                        = 0x73\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0x6d\n\tDLT_ERF                           = 0xc5\n\tDLT_ERF_ETH                       = 0xaf\n\tDLT_ERF_POS                       = 0xb0\n\tDLT_FC_2                          = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS        = 0xe1\n\tDLT_FDDI                          = 0xa\n\tDLT_FLEXRAY                       = 0xd2\n\tDLT_FRELAY                        = 0x6b\n\tDLT_FRELAY_WITH_DIR               = 0xce\n\tDLT_GCOM_SERIAL                   = 0xad\n\tDLT_GCOM_T1E1                     = 0xac\n\tDLT_GPF_F                         = 0xab\n\tDLT_GPF_T                         = 0xaa\n\tDLT_GPRS_LLC                      = 0xa9\n\tDLT_GSMTAP_ABIS                   = 0xda\n\tDLT_GSMTAP_UM                     = 0xd9\n\tDLT_HHDLC                         = 0x79\n\tDLT_IBM_SN                        = 0x92\n\tDLT_IBM_SP                        = 0x91\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS          = 0xa3\n\tDLT_IEEE802_15_4                  = 0xc3\n\tDLT_IEEE802_15_4_LINUX            = 0xbf\n\tDLT_IEEE802_15_4_NOFCS            = 0xe6\n\tDLT_IEEE802_15_4_NONASK_PHY       = 0xd7\n\tDLT_IEEE802_16_MAC_CPS            = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO      = 0xc1\n\tDLT_IPFILTER                      = 0x74\n\tDLT_IPMB                          = 0xc7\n\tDLT_IPMB_LINUX                    = 0xd1\n\tDLT_IPNET                         = 0xe2\n\tDLT_IPOIB                         = 0xf2\n\tDLT_IPV4                          = 0xe4\n\tDLT_IPV6                          = 0xe5\n\tDLT_IP_OVER_FC                    = 0x7a\n\tDLT_JUNIPER_ATM1                  = 0x89\n\tDLT_JUNIPER_ATM2                  = 0x87\n\tDLT_JUNIPER_ATM_CEMIC             = 0xee\n\tDLT_JUNIPER_CHDLC                 = 0xb5\n\tDLT_JUNIPER_ES                    = 0x84\n\tDLT_JUNIPER_ETHER                 = 0xb2\n\tDLT_JUNIPER_FIBRECHANNEL          = 0xea\n\tDLT_JUNIPER_FRELAY                = 0xb4\n\tDLT_JUNIPER_GGSN                  = 0x85\n\tDLT_JUNIPER_ISM                   = 0xc2\n\tDLT_JUNIPER_MFR                   = 0x86\n\tDLT_JUNIPER_MLFR                  = 0x83\n\tDLT_JUNIPER_MLPPP                 = 0x82\n\tDLT_JUNIPER_MONITOR               = 0xa4\n\tDLT_JUNIPER_PIC_PEER              = 0xae\n\tDLT_JUNIPER_PPP                   = 0xb3\n\tDLT_JUNIPER_PPPOE                 = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM             = 0xa8\n\tDLT_JUNIPER_SERVICES              = 0x88\n\tDLT_JUNIPER_SRX_E2E               = 0xe9\n\tDLT_JUNIPER_ST                    = 0xc8\n\tDLT_JUNIPER_VP                    = 0xb7\n\tDLT_JUNIPER_VS                    = 0xe8\n\tDLT_LAPB_WITH_DIR                 = 0xcf\n\tDLT_LAPD                          = 0xcb\n\tDLT_LIN                           = 0xd4\n\tDLT_LINUX_EVDEV                   = 0xd8\n\tDLT_LINUX_IRDA                    = 0x90\n\tDLT_LINUX_LAPD                    = 0xb1\n\tDLT_LINUX_PPP_WITHDIRECTION       = 0xa6\n\tDLT_LINUX_SLL                     = 0x71\n\tDLT_LOOP                          = 0x6c\n\tDLT_LTALK                         = 0x72\n\tDLT_MATCHING_MAX                  = 0xf5\n\tDLT_MATCHING_MIN                  = 0x68\n\tDLT_MFR                           = 0xb6\n\tDLT_MOST                          = 0xd3\n\tDLT_MPEG_2_TS                     = 0xf3\n\tDLT_MPLS                          = 0xdb\n\tDLT_MTP2                          = 0x8c\n\tDLT_MTP2_WITH_PHDR                = 0x8b\n\tDLT_MTP3                          = 0x8d\n\tDLT_MUX27010                      = 0xec\n\tDLT_NETANALYZER                   = 0xf0\n\tDLT_NETANALYZER_TRANSPARENT       = 0xf1\n\tDLT_NFC_LLCP                      = 0xf5\n\tDLT_NFLOG                         = 0xef\n\tDLT_NG40                          = 0xf4\n\tDLT_NULL                          = 0x0\n\tDLT_PCI_EXP                       = 0x7d\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPI                           = 0xc0\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_PPPD                      = 0xa6\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PPP_WITH_DIR                  = 0xcc\n\tDLT_PPP_WITH_DIRECTION            = 0xa6\n\tDLT_PRISM_HEADER                  = 0x77\n\tDLT_PRONET                        = 0x4\n\tDLT_RAIF1                         = 0xc6\n\tDLT_RAW                           = 0xc\n\tDLT_RIO                           = 0x7c\n\tDLT_SCCP                          = 0x8e\n\tDLT_SITA                          = 0xc4\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDLT_STANAG_5066_D_PDU             = 0xed\n\tDLT_SUNATM                        = 0x7b\n\tDLT_SYMANTEC_FIREWALL             = 0x63\n\tDLT_TZSP                          = 0x80\n\tDLT_USB                           = 0xba\n\tDLT_USB_LINUX                     = 0xbd\n\tDLT_USB_LINUX_MMAPPED             = 0xdc\n\tDLT_USER0                         = 0x93\n\tDLT_USER1                         = 0x94\n\tDLT_USER10                        = 0x9d\n\tDLT_USER11                        = 0x9e\n\tDLT_USER12                        = 0x9f\n\tDLT_USER13                        = 0xa0\n\tDLT_USER14                        = 0xa1\n\tDLT_USER15                        = 0xa2\n\tDLT_USER2                         = 0x95\n\tDLT_USER3                         = 0x96\n\tDLT_USER4                         = 0x97\n\tDLT_USER5                         = 0x98\n\tDLT_USER6                         = 0x99\n\tDLT_USER7                         = 0x9a\n\tDLT_USER8                         = 0x9b\n\tDLT_USER9                         = 0x9c\n\tDLT_WIHART                        = 0xdf\n\tDLT_X2E_SERIAL                    = 0xd5\n\tDLT_X2E_XORAYA                    = 0xd6\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tDT_WHT                            = 0xe\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_EXCEPT                     = -0xf\n\tEVFILT_FS                         = -0x9\n\tEVFILT_MACHPORT                   = -0x8\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0xf\n\tEVFILT_THREADMARKER               = 0xf\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_USER                       = -0xa\n\tEVFILT_VM                         = -0xc\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_DISPATCH                       = 0x80\n\tEV_DISPATCH2                      = 0x180\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG0                          = 0x1000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_OOBAND                         = 0x2000\n\tEV_POLL                           = 0x1000\n\tEV_RECEIPT                        = 0x40\n\tEV_SYSFLAGS                       = 0xf000\n\tEV_UDATA_SPECIFIC                 = 0x100\n\tEV_VANISHED                       = 0x200\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFF0                               = 0x0\n\tFF1                               = 0x4000\n\tFFDLY                             = 0x4000\n\tFLUSHO                            = 0x800000\n\tFSOPT_ATTR_CMN_EXTENDED           = 0x20\n\tFSOPT_NOFOLLOW                    = 0x1\n\tFSOPT_NOINMEMUPDATE               = 0x2\n\tFSOPT_PACK_INVAL_ATTRS            = 0x8\n\tFSOPT_REPORT_FULLSIZE             = 0x4\n\tF_ADDFILESIGS                     = 0x3d\n\tF_ADDFILESIGS_FOR_DYLD_SIM        = 0x53\n\tF_ADDFILESIGS_RETURN              = 0x61\n\tF_ADDSIGS                         = 0x3b\n\tF_ALLOCATEALL                     = 0x4\n\tF_ALLOCATECONTIG                  = 0x2\n\tF_BARRIERFSYNC                    = 0x55\n\tF_CHECK_LV                        = 0x62\n\tF_CHKCLEAN                        = 0x29\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0x43\n\tF_FINDSIGS                        = 0x4e\n\tF_FLUSH_DATA                      = 0x28\n\tF_FREEZE_FS                       = 0x35\n\tF_FULLFSYNC                       = 0x33\n\tF_GETCODEDIR                      = 0x48\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETLKPID                        = 0x42\n\tF_GETNOSIGPIPE                    = 0x4a\n\tF_GETOWN                          = 0x5\n\tF_GETPATH                         = 0x32\n\tF_GETPATH_MTMINFO                 = 0x47\n\tF_GETPROTECTIONCLASS              = 0x3f\n\tF_GETPROTECTIONLEVEL              = 0x4d\n\tF_GLOBAL_NOCACHE                  = 0x37\n\tF_LOG2PHYS                        = 0x31\n\tF_LOG2PHYS_EXT                    = 0x41\n\tF_NOCACHE                         = 0x30\n\tF_NODIRECT                        = 0x3e\n\tF_OK                              = 0x0\n\tF_PATHPKG_CHECK                   = 0x34\n\tF_PEOFPOSMODE                     = 0x3\n\tF_PREALLOCATE                     = 0x2a\n\tF_PUNCHHOLE                       = 0x63\n\tF_RDADVISE                        = 0x2c\n\tF_RDAHEAD                         = 0x2d\n\tF_RDLCK                           = 0x1\n\tF_SETBACKINGSTORE                 = 0x46\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETLKWTIMEOUT                   = 0xa\n\tF_SETNOSIGPIPE                    = 0x49\n\tF_SETOWN                          = 0x6\n\tF_SETPROTECTIONCLASS              = 0x40\n\tF_SETSIZE                         = 0x2b\n\tF_SINGLE_WRITER                   = 0x4c\n\tF_THAW_FS                         = 0x36\n\tF_TRANSCODEKEY                    = 0x4b\n\tF_TRIM_ACTIVE_FILE                = 0x64\n\tF_UNLCK                           = 0x2\n\tF_VOLPOSMODE                      = 0x4\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_ALTPHYS                       = 0x4000\n\tIFF_BROADCAST                     = 0x2\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_AAL5                          = 0x31\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ATM                           = 0x25\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_CARP                          = 0xf8\n\tIFT_CELLULAR                      = 0xff\n\tIFT_CEPT                          = 0x13\n\tIFT_DS3                           = 0x1e\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0x38\n\tIFT_FDDI                          = 0xf\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_GIF                           = 0x37\n\tIFT_HDH1822                       = 0x3\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE8023ADLAG                 = 0x88\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88026                      = 0xa\n\tIFT_L2VLAN                        = 0x87\n\tIFT_LAPB                          = 0x10\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_NSIP                          = 0x1b\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PDP                           = 0xff\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PKTAP                         = 0xfe\n\tIFT_PPP                           = 0x17\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_RS232                         = 0x21\n\tIFT_SDLC                          = 0x11\n\tIFT_SIP                           = 0x1f\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0x39\n\tIFT_T1                            = 0x12\n\tIFT_ULTRA                         = 0x1d\n\tIFT_V35                           = 0x2d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LINKLOCALNETNUM                = 0xa9fe0000\n\tIN_LOOPBACKNET                    = 0x7f\n\tIPPROTO_3PC                       = 0x22\n\tIPPROTO_ADFS                      = 0x44\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_AHIP                      = 0x3d\n\tIPPROTO_APES                      = 0x63\n\tIPPROTO_ARGUS                     = 0xd\n\tIPPROTO_AX25                      = 0x5d\n\tIPPROTO_BHA                       = 0x31\n\tIPPROTO_BLT                       = 0x1e\n\tIPPROTO_BRSATMON                  = 0x4c\n\tIPPROTO_CFTP                      = 0x3e\n\tIPPROTO_CHAOS                     = 0x10\n\tIPPROTO_CMTP                      = 0x26\n\tIPPROTO_CPHB                      = 0x49\n\tIPPROTO_CPNX                      = 0x48\n\tIPPROTO_DDP                       = 0x25\n\tIPPROTO_DGP                       = 0x56\n\tIPPROTO_DIVERT                    = 0xfe\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_EMCON                     = 0xe\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GMTP                      = 0x64\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HELLO                     = 0x3f\n\tIPPROTO_HMP                       = 0x14\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IDPR                      = 0x23\n\tIPPROTO_IDRP                      = 0x2d\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IGP                       = 0x55\n\tIPPROTO_IGRP                      = 0x58\n\tIPPROTO_IL                        = 0x28\n\tIPPROTO_INLSP                     = 0x34\n\tIPPROTO_INP                       = 0x20\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPCV                      = 0x47\n\tIPPROTO_IPEIP                     = 0x5e\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPPC                      = 0x43\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_IRTP                      = 0x1c\n\tIPPROTO_KRYPTOLAN                 = 0x41\n\tIPPROTO_LARP                      = 0x5b\n\tIPPROTO_LEAF1                     = 0x19\n\tIPPROTO_LEAF2                     = 0x1a\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x34\n\tIPPROTO_MEAS                      = 0x13\n\tIPPROTO_MHRP                      = 0x30\n\tIPPROTO_MICP                      = 0x5f\n\tIPPROTO_MTP                       = 0x5c\n\tIPPROTO_MUX                       = 0x12\n\tIPPROTO_ND                        = 0x4d\n\tIPPROTO_NHRP                      = 0x36\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_NSP                       = 0x1f\n\tIPPROTO_NVPII                     = 0xb\n\tIPPROTO_OSPFIGP                   = 0x59\n\tIPPROTO_PGM                       = 0x71\n\tIPPROTO_PIGP                      = 0x9\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PRM                       = 0x15\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_PVP                       = 0x4b\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_RCCMON                    = 0xa\n\tIPPROTO_RDP                       = 0x1b\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_RVD                       = 0x42\n\tIPPROTO_SATEXPAK                  = 0x40\n\tIPPROTO_SATMON                    = 0x45\n\tIPPROTO_SCCSP                     = 0x60\n\tIPPROTO_SCTP                      = 0x84\n\tIPPROTO_SDRP                      = 0x2a\n\tIPPROTO_SEP                       = 0x21\n\tIPPROTO_SRPC                      = 0x5a\n\tIPPROTO_ST                        = 0x7\n\tIPPROTO_SVMTP                     = 0x52\n\tIPPROTO_SWIPE                     = 0x35\n\tIPPROTO_TCF                       = 0x57\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_TPXX                      = 0x27\n\tIPPROTO_TRUNK1                    = 0x17\n\tIPPROTO_TRUNK2                    = 0x18\n\tIPPROTO_TTP                       = 0x54\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_VINES                     = 0x53\n\tIPPROTO_VISA                      = 0x46\n\tIPPROTO_VMTP                      = 0x51\n\tIPPROTO_WBEXPAK                   = 0x4f\n\tIPPROTO_WBMON                     = 0x4e\n\tIPPROTO_WSN                       = 0x4a\n\tIPPROTO_XNET                      = 0xf\n\tIPPROTO_XTP                       = 0x24\n\tIPV6_2292DSTOPTS                  = 0x17\n\tIPV6_2292HOPLIMIT                 = 0x14\n\tIPV6_2292HOPOPTS                  = 0x16\n\tIPV6_2292NEXTHOP                  = 0x15\n\tIPV6_2292PKTINFO                  = 0x13\n\tIPV6_2292PKTOPTIONS               = 0x19\n\tIPV6_2292RTHDR                    = 0x18\n\tIPV6_BINDV6ONLY                   = 0x1b\n\tIPV6_BOUND_IF                     = 0x7d\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FLOW_ECN_MASK                = 0x300\n\tIPV6_FRAGTTL                      = 0x3c\n\tIPV6_FW_ADD                       = 0x1e\n\tIPV6_FW_DEL                       = 0x1f\n\tIPV6_FW_FLUSH                     = 0x20\n\tIPV6_FW_GET                       = 0x22\n\tIPV6_FW_ZERO                      = 0x21\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_IPSEC_POLICY                 = 0x1c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXOPTHDR                    = 0x800\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MAX_GROUP_SRC_FILTER         = 0x200\n\tIPV6_MAX_MEMBERSHIPS              = 0xfff\n\tIPV6_MAX_SOCK_SRC_FILTER          = 0x80\n\tIPV6_MIN_MEMBERSHIPS              = 0x1f\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVTCLASS                   = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x24\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP          = 0x46\n\tIP_BLOCK_SOURCE                   = 0x48\n\tIP_BOUND_IF                       = 0x19\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP         = 0x47\n\tIP_DUMMYNET_CONFIGURE             = 0x3c\n\tIP_DUMMYNET_DEL                   = 0x3d\n\tIP_DUMMYNET_FLUSH                 = 0x3e\n\tIP_DUMMYNET_GET                   = 0x40\n\tIP_FAITH                          = 0x16\n\tIP_FW_ADD                         = 0x28\n\tIP_FW_DEL                         = 0x29\n\tIP_FW_FLUSH                       = 0x2a\n\tIP_FW_GET                         = 0x2c\n\tIP_FW_RESETLOG                    = 0x2d\n\tIP_FW_ZERO                        = 0x2b\n\tIP_HDRINCL                        = 0x2\n\tIP_IPSEC_POLICY                   = 0x15\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_GROUP_SRC_FILTER           = 0x200\n\tIP_MAX_MEMBERSHIPS                = 0xfff\n\tIP_MAX_SOCK_MUTE_FILTER           = 0x80\n\tIP_MAX_SOCK_SRC_FILTER            = 0x80\n\tIP_MF                             = 0x2000\n\tIP_MIN_MEMBERSHIPS                = 0x1f\n\tIP_MSFILTER                       = 0x4a\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_IFINDEX              = 0x42\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_MULTICAST_VIF                  = 0xe\n\tIP_NAT__XXX                       = 0x37\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OLD_FW_ADD                     = 0x32\n\tIP_OLD_FW_DEL                     = 0x33\n\tIP_OLD_FW_FLUSH                   = 0x34\n\tIP_OLD_FW_GET                     = 0x36\n\tIP_OLD_FW_RESETLOG                = 0x38\n\tIP_OLD_FW_ZERO                    = 0x35\n\tIP_OPTIONS                        = 0x1\n\tIP_PKTINFO                        = 0x1a\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVIF                         = 0x14\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVPKTINFO                    = 0x1a\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVTOS                        = 0x1b\n\tIP_RECVTTL                        = 0x18\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RSVP_OFF                       = 0x10\n\tIP_RSVP_ON                        = 0xf\n\tIP_RSVP_VIF_OFF                   = 0x12\n\tIP_RSVP_VIF_ON                    = 0x11\n\tIP_STRIPHDR                       = 0x17\n\tIP_TOS                            = 0x3\n\tIP_TRAFFIC_MGT_BACKGROUND         = 0x41\n\tIP_TTL                            = 0x4\n\tIP_UNBLOCK_SOURCE                 = 0x49\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIUTF8                             = 0x4000\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_CAN_REUSE                    = 0x9\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x5\n\tMADV_FREE_REUSABLE                = 0x7\n\tMADV_FREE_REUSE                   = 0x8\n\tMADV_NORMAL                       = 0x0\n\tMADV_PAGEOUT                      = 0xa\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_WILLNEED                     = 0x3\n\tMADV_ZERO_WIRED_PAGES             = 0x6\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_HASSEMAPHORE                  = 0x200\n\tMAP_JIT                           = 0x800\n\tMAP_NOCACHE                       = 0x400\n\tMAP_NOEXTEND                      = 0x100\n\tMAP_NORESERVE                     = 0x40\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_RESERVED0080                  = 0x80\n\tMAP_RESILIENT_CODESIGN            = 0x2000\n\tMAP_RESILIENT_MEDIA               = 0x4000\n\tMAP_SHARED                        = 0x1\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_AUTOMOUNTED                   = 0x400000\n\tMNT_CMDFLAGS                      = 0xf0000\n\tMNT_CPROTECT                      = 0x80\n\tMNT_DEFWRITE                      = 0x2000000\n\tMNT_DONTBROWSE                    = 0x100000\n\tMNT_DOVOLFS                       = 0x8000\n\tMNT_DWAIT                         = 0x4\n\tMNT_EXPORTED                      = 0x100\n\tMNT_FORCE                         = 0x80000\n\tMNT_IGNORE_OWNERSHIP              = 0x200000\n\tMNT_JOURNALED                     = 0x800000\n\tMNT_LOCAL                         = 0x1000\n\tMNT_MULTILABEL                    = 0x4000000\n\tMNT_NOATIME                       = 0x10000000\n\tMNT_NOBLOCK                       = 0x20000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOUSERXATTR                   = 0x1000000\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUARANTINE                    = 0x400\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UNION                         = 0x20\n\tMNT_UNKNOWNPERMISSIONS            = 0x200000\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0x17f0f5ff\n\tMNT_WAIT                          = 0x1\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOF                           = 0x100\n\tMSG_EOR                           = 0x8\n\tMSG_FLUSH                         = 0x400\n\tMSG_HAVEMORE                      = 0x2000\n\tMSG_HOLD                          = 0x800\n\tMSG_NEEDSA                        = 0x10000\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_RCVMORE                       = 0x4000\n\tMSG_SEND                          = 0x1000\n\tMSG_TRUNC                         = 0x10\n\tMSG_WAITALL                       = 0x40\n\tMSG_WAITSTREAM                    = 0x200\n\tMS_ASYNC                          = 0x1\n\tMS_DEACTIVATE                     = 0x8\n\tMS_INVALIDATE                     = 0x2\n\tMS_KILLPAGES                      = 0x4\n\tMS_SYNC                           = 0x10\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_DUMP2                      = 0x7\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_IFLIST2                    = 0x6\n\tNET_RT_MAXID                      = 0xa\n\tNET_RT_STAT                       = 0x4\n\tNET_RT_TRASH                      = 0x5\n\tNFDBITS                           = 0x20\n\tNL0                               = 0x0\n\tNL1                               = 0x100\n\tNL2                               = 0x200\n\tNL3                               = 0x300\n\tNLDLY                             = 0x300\n\tNOFLSH                            = 0x80000000\n\tNOKERNINFO                        = 0x2000000\n\tNOTE_ABSOLUTE                     = 0x8\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_BACKGROUND                   = 0x40\n\tNOTE_CHILD                        = 0x4\n\tNOTE_CRITICAL                     = 0x20\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXITSTATUS                   = 0x4000000\n\tNOTE_EXIT_CSERROR                 = 0x40000\n\tNOTE_EXIT_DECRYPTFAIL             = 0x10000\n\tNOTE_EXIT_DETAIL                  = 0x2000000\n\tNOTE_EXIT_DETAIL_MASK             = 0x70000\n\tNOTE_EXIT_MEMORY                  = 0x20000\n\tNOTE_EXIT_REPARENTED              = 0x80000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FFAND                        = 0x40000000\n\tNOTE_FFCOPY                       = 0xc0000000\n\tNOTE_FFCTRLMASK                   = 0xc0000000\n\tNOTE_FFLAGSMASK                   = 0xffffff\n\tNOTE_FFNOP                        = 0x0\n\tNOTE_FFOR                         = 0x80000000\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_FUNLOCK                      = 0x100\n\tNOTE_LEEWAY                       = 0x10\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_MACH_CONTINUOUS_TIME         = 0x80\n\tNOTE_NONE                         = 0x80\n\tNOTE_NSECONDS                     = 0x4\n\tNOTE_OOB                          = 0x2\n\tNOTE_PCTRLMASK                    = -0x100000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_REAP                         = 0x10000000\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_SECONDS                      = 0x1\n\tNOTE_SIGNAL                       = 0x8000000\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRIGGER                      = 0x1000000\n\tNOTE_USECONDS                     = 0x2\n\tNOTE_VM_ERROR                     = 0x10000000\n\tNOTE_VM_PRESSURE                  = 0x80000000\n\tNOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000\n\tNOTE_VM_PRESSURE_TERMINATE        = 0x40000000\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOFDEL                             = 0x20000\n\tOFILL                             = 0x80\n\tONLCR                             = 0x2\n\tONLRET                            = 0x40\n\tONOCR                             = 0x20\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tOXTABS                            = 0x4\n\tO_ACCMODE                         = 0x3\n\tO_ALERT                           = 0x20000000\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x1000000\n\tO_CREAT                           = 0x200\n\tO_DIRECTORY                       = 0x100000\n\tO_DP_GETRAWENCRYPTED              = 0x1\n\tO_DP_GETRAWUNENCRYPTED            = 0x2\n\tO_DSYNC                           = 0x400000\n\tO_EVTONLY                         = 0x8000\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x20000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_POPUP                           = 0x80000000\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_SHLOCK                          = 0x10\n\tO_SYMLINK                         = 0x200000\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tPT_ATTACH                         = 0xa\n\tPT_ATTACHEXC                      = 0xe\n\tPT_CONTINUE                       = 0x7\n\tPT_DENY_ATTACH                    = 0x1f\n\tPT_DETACH                         = 0xb\n\tPT_FIRSTMACH                      = 0x20\n\tPT_FORCEQUOTA                     = 0x1e\n\tPT_KILL                           = 0x8\n\tPT_READ_D                         = 0x2\n\tPT_READ_I                         = 0x1\n\tPT_READ_U                         = 0x3\n\tPT_SIGEXC                         = 0xc\n\tPT_STEP                           = 0x9\n\tPT_THUPDATE                       = 0xd\n\tPT_TRACE_ME                       = 0x0\n\tPT_WRITE_D                        = 0x5\n\tPT_WRITE_I                        = 0x4\n\tPT_WRITE_U                        = 0x6\n\tRLIMIT_AS                         = 0x5\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_CPU_USAGE_MONITOR          = 0x2\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_MAX                          = 0x8\n\tRTAX_NETMASK                      = 0x2\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_NETMASK                       = 0x4\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_BROADCAST                     = 0x400000\n\tRTF_CLONING                       = 0x100\n\tRTF_CONDEMNED                     = 0x2000000\n\tRTF_DELCLONE                      = 0x80\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_IFREF                         = 0x4000000\n\tRTF_IFSCOPE                       = 0x1000000\n\tRTF_LLINFO                        = 0x400\n\tRTF_LOCAL                         = 0x200000\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MULTICAST                     = 0x800000\n\tRTF_NOIFREF                       = 0x2000\n\tRTF_PINNED                        = 0x100000\n\tRTF_PRCLONING                     = 0x10000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x40000\n\tRTF_PROXY                         = 0x8000000\n\tRTF_REJECT                        = 0x8\n\tRTF_ROUTER                        = 0x10000000\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_WASCLONED                     = 0x20000\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DELMADDR                      = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_GET2                          = 0x14\n\tRTM_IFINFO                        = 0xe\n\tRTM_IFINFO2                       = 0x12\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_NEWMADDR                      = 0xf\n\tRTM_NEWMADDR2                     = 0x13\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x5\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tSCM_CREDS                         = 0x3\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x2\n\tSCM_TIMESTAMP_MONOTONIC           = 0x4\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCARPIPLL                       = 0xc0206928\n\tSIOCATMARK                        = 0x40047307\n\tSIOCAUTOADDR                      = 0xc0206926\n\tSIOCAUTONETMASK                   = 0x80206927\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFPHYADDR                    = 0x80206941\n\tSIOCGDRVSPEC                      = 0xc028697b\n\tSIOCGETVLAN                       = 0xc020697f\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFALTMTU                     = 0xc0206948\n\tSIOCGIFASYNCMAP                   = 0xc020697c\n\tSIOCGIFBOND                       = 0xc0206947\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCAP                        = 0xc020695b\n\tSIOCGIFCONF                       = 0xc00c6924\n\tSIOCGIFDEVMTU                     = 0xc0206944\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFKPI                        = 0xc0206987\n\tSIOCGIFMAC                        = 0xc0206982\n\tSIOCGIFMEDIA                      = 0xc02c6938\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc0206933\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPDSTADDR                   = 0xc0206940\n\tSIOCGIFPHYS                       = 0xc0206935\n\tSIOCGIFPSRCADDR                   = 0xc020693f\n\tSIOCGIFSTATUS                     = 0xc331693d\n\tSIOCGIFVLAN                       = 0xc020697f\n\tSIOCGIFWAKEFLAGS                  = 0xc0206988\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCIFCREATE                      = 0xc0206978\n\tSIOCIFCREATE2                     = 0xc020697a\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc0106981\n\tSIOCRSLVMULTI                     = 0xc010693b\n\tSIOCSDRVSPEC                      = 0x8028697b\n\tSIOCSETVLAN                       = 0x8020697e\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFALTMTU                     = 0x80206945\n\tSIOCSIFASYNCMAP                   = 0x8020697d\n\tSIOCSIFBOND                       = 0x80206946\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFCAP                        = 0x8020695a\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFKPI                        = 0x80206986\n\tSIOCSIFLLADDR                     = 0x8020693c\n\tSIOCSIFMAC                        = 0x80206983\n\tSIOCSIFMEDIA                      = 0xc0206937\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x80206934\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPHYADDR                    = 0x8040693e\n\tSIOCSIFPHYS                       = 0x80206936\n\tSIOCSIFVLAN                       = 0x8020697e\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_MAXADDRLEN                   = 0xff\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_DONTTRUNC                      = 0x2000\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LABEL                          = 0x1010\n\tSO_LINGER                         = 0x80\n\tSO_LINGER_SEC                     = 0x1080\n\tSO_NETSVC_MARKING_LEVEL           = 0x1119\n\tSO_NET_SERVICE_TYPE               = 0x1116\n\tSO_NKE                            = 0x1021\n\tSO_NOADDRERR                      = 0x1023\n\tSO_NOSIGPIPE                      = 0x1022\n\tSO_NOTIFYCONFLICT                 = 0x1026\n\tSO_NP_EXTENSIONS                  = 0x1083\n\tSO_NREAD                          = 0x1020\n\tSO_NUMRCVPKT                      = 0x1112\n\tSO_NWRITE                         = 0x1024\n\tSO_OOBINLINE                      = 0x100\n\tSO_PEERLABEL                      = 0x1011\n\tSO_RANDOMPORT                     = 0x1082\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_REUSESHAREUID                  = 0x1025\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_TIMESTAMP                      = 0x400\n\tSO_TIMESTAMP_MONOTONIC            = 0x800\n\tSO_TYPE                           = 0x1008\n\tSO_UPCALLCLOSEWAIT                = 0x1027\n\tSO_USELOOPBACK                    = 0x40\n\tSO_WANTMORE                       = 0x4000\n\tSO_WANTOOBFLAG                    = 0x8000\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IFWHT                           = 0xe000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTAB0                              = 0x0\n\tTAB1                              = 0x400\n\tTAB2                              = 0x800\n\tTAB3                              = 0x4\n\tTABDLY                            = 0xc04\n\tTCIFLUSH                          = 0x1\n\tTCIOFF                            = 0x3\n\tTCIOFLUSH                         = 0x3\n\tTCION                             = 0x4\n\tTCOFLUSH                          = 0x2\n\tTCOOFF                            = 0x1\n\tTCOON                             = 0x2\n\tTCP_CONNECTIONTIMEOUT             = 0x20\n\tTCP_CONNECTION_INFO               = 0x106\n\tTCP_ENABLE_ECN                    = 0x104\n\tTCP_FASTOPEN                      = 0x105\n\tTCP_KEEPALIVE                     = 0x10\n\tTCP_KEEPCNT                       = 0x102\n\tTCP_KEEPINTVL                     = 0x101\n\tTCP_MAXHLEN                       = 0x3c\n\tTCP_MAXOLEN                       = 0x28\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_SACK                      = 0x4\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MINMSS                        = 0xd8\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOOPT                         = 0x8\n\tTCP_NOPUSH                        = 0x4\n\tTCP_NOTSENT_LOWAT                 = 0x201\n\tTCP_RXT_CONNDROPTIME              = 0x80\n\tTCP_RXT_FINDROP                   = 0x100\n\tTCP_SENDMOREACKS                  = 0x103\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDCDTIMESTAMP                  = 0x40107458\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCDSIMICROCODE                  = 0x20007455\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGDRAINWAIT                    = 0x40047456\n\tTIOCGETA                          = 0x40487413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCIXOFF                         = 0x20007480\n\tTIOCIXON                          = 0x20007481\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGDTRWAIT                     = 0x4004745a\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x40047403\n\tTIOCMODS                          = 0x80047404\n\tTIOCMSDTRWAIT                     = 0x8004745b\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCPTYGNAME                      = 0x40807453\n\tTIOCPTYGRANT                      = 0x20007454\n\tTIOCPTYUNLK                       = 0x20007452\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCONS                         = 0x20007463\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDRAINWAIT                    = 0x80047457\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x80487414\n\tTIOCSETAF                         = 0x80487416\n\tTIOCSETAW                         = 0x80487415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSIG                           = 0x2000745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x20007465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCTIMESTAMP                     = 0x40107459\n\tTIOCUCNTL                         = 0x80047466\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVM_LOADAVG                        = 0x2\n\tVM_MACHFACTOR                     = 0x4\n\tVM_MAXID                          = 0x6\n\tVM_METER                          = 0x1\n\tVM_SWAPUSAGE                      = 0x5\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVT0                               = 0x0\n\tVT1                               = 0x10000\n\tVTDLY                             = 0x10000\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWCONTINUED                        = 0x10\n\tWCOREFLAG                         = 0x80\n\tWEXITED                           = 0x4\n\tWNOHANG                           = 0x1\n\tWNOWAIT                           = 0x20\n\tWORDSIZE                          = 0x40\n\tWSTOPPED                          = 0x8\n\tWUNTRACED                         = 0x2\n\tXATTR_CREATE                      = 0x2\n\tXATTR_NODEFAULT                   = 0x10\n\tXATTR_NOFOLLOW                    = 0x1\n\tXATTR_NOSECURITY                  = 0x8\n\tXATTR_REPLACE                     = 0x4\n\tXATTR_SHOWCOMPRESSION             = 0x20\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADARCH        = syscall.Errno(0x56)\n\tEBADEXEC        = syscall.Errno(0x55)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMACHO       = syscall.Errno(0x58)\n\tEBADMSG         = syscall.Errno(0x5e)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x59)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDEVERR         = syscall.Errno(0x53)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x5a)\n\tEILSEQ          = syscall.Errno(0x5c)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x6a)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5f)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x5d)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODATA         = syscall.Errno(0x60)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x61)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x5b)\n\tENOPOLICY       = syscall.Errno(0x67)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x62)\n\tENOSTR          = syscall.Errno(0x63)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x68)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x66)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEOWNERDEAD      = syscall.Errno(0x69)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x64)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tEPWROFF         = syscall.Errno(0x52)\n\tEQFULL          = syscall.Errno(0x6a)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHLIBVERS      = syscall.Errno(0x57)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIME           = syscall.Errno(0x65)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"ENOTSUP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EPWROFF\", \"device power is off\"},\n\t{83, \"EDEVERR\", \"device error\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"EBADEXEC\", \"bad executable (or shared library)\"},\n\t{86, \"EBADARCH\", \"bad CPU type in executable\"},\n\t{87, \"ESHLIBVERS\", \"shared library version mismatch\"},\n\t{88, \"EBADMACHO\", \"malformed Mach-o file\"},\n\t{89, \"ECANCELED\", \"operation canceled\"},\n\t{90, \"EIDRM\", \"identifier removed\"},\n\t{91, \"ENOMSG\", \"no message of desired type\"},\n\t{92, \"EILSEQ\", \"illegal byte sequence\"},\n\t{93, \"ENOATTR\", \"attribute not found\"},\n\t{94, \"EBADMSG\", \"bad message\"},\n\t{95, \"EMULTIHOP\", \"EMULTIHOP (Reserved)\"},\n\t{96, \"ENODATA\", \"no message available on STREAM\"},\n\t{97, \"ENOLINK\", \"ENOLINK (Reserved)\"},\n\t{98, \"ENOSR\", \"no STREAM resources\"},\n\t{99, \"ENOSTR\", \"not a STREAM\"},\n\t{100, \"EPROTO\", \"protocol error\"},\n\t{101, \"ETIME\", \"STREAM ioctl timeout\"},\n\t{102, \"EOPNOTSUPP\", \"operation not supported on socket\"},\n\t{103, \"ENOPOLICY\", \"policy not found\"},\n\t{104, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{105, \"EOWNERDEAD\", \"previous owner died\"},\n\t{106, \"EQFULL\", \"interface output queue is full\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGABRT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,darwin\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1c\n\tAF_ECMA                           = 0x8\n\tAF_HYLINK                         = 0xf\n\tAF_IEEE80211                      = 0x25\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x1e\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1c\n\tAF_ISO                            = 0x7\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x28\n\tAF_NATM                           = 0x1f\n\tAF_NDRV                           = 0x1b\n\tAF_NETBIOS                        = 0x21\n\tAF_NS                             = 0x6\n\tAF_OSI                            = 0x7\n\tAF_PPP                            = 0x22\n\tAF_PUP                            = 0x4\n\tAF_RESERVED_36                    = 0x24\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x18\n\tAF_SNA                            = 0xb\n\tAF_SYSTEM                         = 0x20\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tAF_UTUN                           = 0x26\n\tALTWERASE                         = 0x200\n\tATTR_BIT_MAP_COUNT                = 0x5\n\tATTR_CMN_ACCESSMASK               = 0x20000\n\tATTR_CMN_ACCTIME                  = 0x1000\n\tATTR_CMN_ADDEDTIME                = 0x10000000\n\tATTR_CMN_BKUPTIME                 = 0x2000\n\tATTR_CMN_CHGTIME                  = 0x800\n\tATTR_CMN_CRTIME                   = 0x200\n\tATTR_CMN_DATA_PROTECT_FLAGS       = 0x40000000\n\tATTR_CMN_DEVID                    = 0x2\n\tATTR_CMN_DOCUMENT_ID              = 0x100000\n\tATTR_CMN_ERROR                    = 0x20000000\n\tATTR_CMN_EXTENDED_SECURITY        = 0x400000\n\tATTR_CMN_FILEID                   = 0x2000000\n\tATTR_CMN_FLAGS                    = 0x40000\n\tATTR_CMN_FNDRINFO                 = 0x4000\n\tATTR_CMN_FSID                     = 0x4\n\tATTR_CMN_FULLPATH                 = 0x8000000\n\tATTR_CMN_GEN_COUNT                = 0x80000\n\tATTR_CMN_GRPID                    = 0x10000\n\tATTR_CMN_GRPUUID                  = 0x1000000\n\tATTR_CMN_MODTIME                  = 0x400\n\tATTR_CMN_NAME                     = 0x1\n\tATTR_CMN_NAMEDATTRCOUNT           = 0x80000\n\tATTR_CMN_NAMEDATTRLIST            = 0x100000\n\tATTR_CMN_OBJID                    = 0x20\n\tATTR_CMN_OBJPERMANENTID           = 0x40\n\tATTR_CMN_OBJTAG                   = 0x10\n\tATTR_CMN_OBJTYPE                  = 0x8\n\tATTR_CMN_OWNERID                  = 0x8000\n\tATTR_CMN_PARENTID                 = 0x4000000\n\tATTR_CMN_PAROBJID                 = 0x80\n\tATTR_CMN_RETURNED_ATTRS           = 0x80000000\n\tATTR_CMN_SCRIPT                   = 0x100\n\tATTR_CMN_SETMASK                  = 0x41c7ff00\n\tATTR_CMN_USERACCESS               = 0x200000\n\tATTR_CMN_UUID                     = 0x800000\n\tATTR_CMN_VALIDMASK                = 0xffffffff\n\tATTR_CMN_VOLSETMASK               = 0x6700\n\tATTR_FILE_ALLOCSIZE               = 0x4\n\tATTR_FILE_CLUMPSIZE               = 0x10\n\tATTR_FILE_DATAALLOCSIZE           = 0x400\n\tATTR_FILE_DATAEXTENTS             = 0x800\n\tATTR_FILE_DATALENGTH              = 0x200\n\tATTR_FILE_DEVTYPE                 = 0x20\n\tATTR_FILE_FILETYPE                = 0x40\n\tATTR_FILE_FORKCOUNT               = 0x80\n\tATTR_FILE_FORKLIST                = 0x100\n\tATTR_FILE_IOBLOCKSIZE             = 0x8\n\tATTR_FILE_LINKCOUNT               = 0x1\n\tATTR_FILE_RSRCALLOCSIZE           = 0x2000\n\tATTR_FILE_RSRCEXTENTS             = 0x4000\n\tATTR_FILE_RSRCLENGTH              = 0x1000\n\tATTR_FILE_SETMASK                 = 0x20\n\tATTR_FILE_TOTALSIZE               = 0x2\n\tATTR_FILE_VALIDMASK               = 0x37ff\n\tATTR_VOL_ALLOCATIONCLUMP          = 0x40\n\tATTR_VOL_ATTRIBUTES               = 0x40000000\n\tATTR_VOL_CAPABILITIES             = 0x20000\n\tATTR_VOL_DIRCOUNT                 = 0x400\n\tATTR_VOL_ENCODINGSUSED            = 0x10000\n\tATTR_VOL_FILECOUNT                = 0x200\n\tATTR_VOL_FSTYPE                   = 0x1\n\tATTR_VOL_INFO                     = 0x80000000\n\tATTR_VOL_IOBLOCKSIZE              = 0x80\n\tATTR_VOL_MAXOBJCOUNT              = 0x800\n\tATTR_VOL_MINALLOCATION            = 0x20\n\tATTR_VOL_MOUNTEDDEVICE            = 0x8000\n\tATTR_VOL_MOUNTFLAGS               = 0x4000\n\tATTR_VOL_MOUNTPOINT               = 0x1000\n\tATTR_VOL_NAME                     = 0x2000\n\tATTR_VOL_OBJCOUNT                 = 0x100\n\tATTR_VOL_QUOTA_SIZE               = 0x10000000\n\tATTR_VOL_RESERVED_SIZE            = 0x20000000\n\tATTR_VOL_SETMASK                  = 0x80002000\n\tATTR_VOL_SIGNATURE                = 0x2\n\tATTR_VOL_SIZE                     = 0x4\n\tATTR_VOL_SPACEAVAIL               = 0x10\n\tATTR_VOL_SPACEFREE                = 0x8\n\tATTR_VOL_UUID                     = 0x40000\n\tATTR_VOL_VALIDMASK                = 0xf007ffff\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc00c4279\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044272\n\tBIOCGRTIMEOUT                     = 0x4010426e\n\tBIOCGSEESENT                      = 0x40044276\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDLT                          = 0x80044278\n\tBIOCSETF                          = 0x80104267\n\tBIOCSETFNR                        = 0x8010427e\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044273\n\tBIOCSRTIMEOUT                     = 0x8010426d\n\tBIOCSSEESENT                      = 0x80044277\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x80000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tBS0                               = 0x0\n\tBS1                               = 0x8000\n\tBSDLY                             = 0x8000\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLOCK_MONOTONIC                   = 0x6\n\tCLOCK_MONOTONIC_RAW               = 0x4\n\tCLOCK_MONOTONIC_RAW_APPROX        = 0x5\n\tCLOCK_PROCESS_CPUTIME_ID          = 0xc\n\tCLOCK_REALTIME                    = 0x0\n\tCLOCK_THREAD_CPUTIME_ID           = 0x10\n\tCLOCK_UPTIME_RAW                  = 0x8\n\tCLOCK_UPTIME_RAW_APPROX           = 0x9\n\tCLONE_NOFOLLOW                    = 0x1\n\tCLONE_NOOWNERCOPY                 = 0x2\n\tCR0                               = 0x0\n\tCR1                               = 0x1000\n\tCR2                               = 0x2000\n\tCR3                               = 0x3000\n\tCRDLY                             = 0x3000\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x30000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0x14\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDLT_A429                          = 0xb8\n\tDLT_A653_ICM                      = 0xb9\n\tDLT_AIRONET_HEADER                = 0x78\n\tDLT_AOS                           = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394        = 0x8a\n\tDLT_ARCNET                        = 0x7\n\tDLT_ARCNET_LINUX                  = 0x81\n\tDLT_ATM_CLIP                      = 0x13\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AURORA                        = 0x7e\n\tDLT_AX25                          = 0x3\n\tDLT_AX25_KISS                     = 0xca\n\tDLT_BACNET_MS_TP                  = 0xa5\n\tDLT_BLUETOOTH_HCI_H4              = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR    = 0xc9\n\tDLT_CAN20B                        = 0xbe\n\tDLT_CAN_SOCKETCAN                 = 0xe3\n\tDLT_CHAOS                         = 0x5\n\tDLT_CHDLC                         = 0x68\n\tDLT_CISCO_IOS                     = 0x76\n\tDLT_C_HDLC                        = 0x68\n\tDLT_C_HDLC_WITH_DIR               = 0xcd\n\tDLT_DBUS                          = 0xe7\n\tDLT_DECT                          = 0xdd\n\tDLT_DOCSIS                        = 0x8f\n\tDLT_DVB_CI                        = 0xeb\n\tDLT_ECONET                        = 0x73\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0x6d\n\tDLT_ERF                           = 0xc5\n\tDLT_ERF_ETH                       = 0xaf\n\tDLT_ERF_POS                       = 0xb0\n\tDLT_FC_2                          = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS        = 0xe1\n\tDLT_FDDI                          = 0xa\n\tDLT_FLEXRAY                       = 0xd2\n\tDLT_FRELAY                        = 0x6b\n\tDLT_FRELAY_WITH_DIR               = 0xce\n\tDLT_GCOM_SERIAL                   = 0xad\n\tDLT_GCOM_T1E1                     = 0xac\n\tDLT_GPF_F                         = 0xab\n\tDLT_GPF_T                         = 0xaa\n\tDLT_GPRS_LLC                      = 0xa9\n\tDLT_GSMTAP_ABIS                   = 0xda\n\tDLT_GSMTAP_UM                     = 0xd9\n\tDLT_HHDLC                         = 0x79\n\tDLT_IBM_SN                        = 0x92\n\tDLT_IBM_SP                        = 0x91\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS          = 0xa3\n\tDLT_IEEE802_15_4                  = 0xc3\n\tDLT_IEEE802_15_4_LINUX            = 0xbf\n\tDLT_IEEE802_15_4_NOFCS            = 0xe6\n\tDLT_IEEE802_15_4_NONASK_PHY       = 0xd7\n\tDLT_IEEE802_16_MAC_CPS            = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO      = 0xc1\n\tDLT_IPFILTER                      = 0x74\n\tDLT_IPMB                          = 0xc7\n\tDLT_IPMB_LINUX                    = 0xd1\n\tDLT_IPNET                         = 0xe2\n\tDLT_IPOIB                         = 0xf2\n\tDLT_IPV4                          = 0xe4\n\tDLT_IPV6                          = 0xe5\n\tDLT_IP_OVER_FC                    = 0x7a\n\tDLT_JUNIPER_ATM1                  = 0x89\n\tDLT_JUNIPER_ATM2                  = 0x87\n\tDLT_JUNIPER_ATM_CEMIC             = 0xee\n\tDLT_JUNIPER_CHDLC                 = 0xb5\n\tDLT_JUNIPER_ES                    = 0x84\n\tDLT_JUNIPER_ETHER                 = 0xb2\n\tDLT_JUNIPER_FIBRECHANNEL          = 0xea\n\tDLT_JUNIPER_FRELAY                = 0xb4\n\tDLT_JUNIPER_GGSN                  = 0x85\n\tDLT_JUNIPER_ISM                   = 0xc2\n\tDLT_JUNIPER_MFR                   = 0x86\n\tDLT_JUNIPER_MLFR                  = 0x83\n\tDLT_JUNIPER_MLPPP                 = 0x82\n\tDLT_JUNIPER_MONITOR               = 0xa4\n\tDLT_JUNIPER_PIC_PEER              = 0xae\n\tDLT_JUNIPER_PPP                   = 0xb3\n\tDLT_JUNIPER_PPPOE                 = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM             = 0xa8\n\tDLT_JUNIPER_SERVICES              = 0x88\n\tDLT_JUNIPER_SRX_E2E               = 0xe9\n\tDLT_JUNIPER_ST                    = 0xc8\n\tDLT_JUNIPER_VP                    = 0xb7\n\tDLT_JUNIPER_VS                    = 0xe8\n\tDLT_LAPB_WITH_DIR                 = 0xcf\n\tDLT_LAPD                          = 0xcb\n\tDLT_LIN                           = 0xd4\n\tDLT_LINUX_EVDEV                   = 0xd8\n\tDLT_LINUX_IRDA                    = 0x90\n\tDLT_LINUX_LAPD                    = 0xb1\n\tDLT_LINUX_PPP_WITHDIRECTION       = 0xa6\n\tDLT_LINUX_SLL                     = 0x71\n\tDLT_LOOP                          = 0x6c\n\tDLT_LTALK                         = 0x72\n\tDLT_MATCHING_MAX                  = 0xf5\n\tDLT_MATCHING_MIN                  = 0x68\n\tDLT_MFR                           = 0xb6\n\tDLT_MOST                          = 0xd3\n\tDLT_MPEG_2_TS                     = 0xf3\n\tDLT_MPLS                          = 0xdb\n\tDLT_MTP2                          = 0x8c\n\tDLT_MTP2_WITH_PHDR                = 0x8b\n\tDLT_MTP3                          = 0x8d\n\tDLT_MUX27010                      = 0xec\n\tDLT_NETANALYZER                   = 0xf0\n\tDLT_NETANALYZER_TRANSPARENT       = 0xf1\n\tDLT_NFC_LLCP                      = 0xf5\n\tDLT_NFLOG                         = 0xef\n\tDLT_NG40                          = 0xf4\n\tDLT_NULL                          = 0x0\n\tDLT_PCI_EXP                       = 0x7d\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPI                           = 0xc0\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_PPPD                      = 0xa6\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PPP_WITH_DIR                  = 0xcc\n\tDLT_PPP_WITH_DIRECTION            = 0xa6\n\tDLT_PRISM_HEADER                  = 0x77\n\tDLT_PRONET                        = 0x4\n\tDLT_RAIF1                         = 0xc6\n\tDLT_RAW                           = 0xc\n\tDLT_RIO                           = 0x7c\n\tDLT_SCCP                          = 0x8e\n\tDLT_SITA                          = 0xc4\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDLT_STANAG_5066_D_PDU             = 0xed\n\tDLT_SUNATM                        = 0x7b\n\tDLT_SYMANTEC_FIREWALL             = 0x63\n\tDLT_TZSP                          = 0x80\n\tDLT_USB                           = 0xba\n\tDLT_USB_LINUX                     = 0xbd\n\tDLT_USB_LINUX_MMAPPED             = 0xdc\n\tDLT_USER0                         = 0x93\n\tDLT_USER1                         = 0x94\n\tDLT_USER10                        = 0x9d\n\tDLT_USER11                        = 0x9e\n\tDLT_USER12                        = 0x9f\n\tDLT_USER13                        = 0xa0\n\tDLT_USER14                        = 0xa1\n\tDLT_USER15                        = 0xa2\n\tDLT_USER2                         = 0x95\n\tDLT_USER3                         = 0x96\n\tDLT_USER4                         = 0x97\n\tDLT_USER5                         = 0x98\n\tDLT_USER6                         = 0x99\n\tDLT_USER7                         = 0x9a\n\tDLT_USER8                         = 0x9b\n\tDLT_USER9                         = 0x9c\n\tDLT_WIHART                        = 0xdf\n\tDLT_X2E_SERIAL                    = 0xd5\n\tDLT_X2E_XORAYA                    = 0xd6\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tDT_WHT                            = 0xe\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_EXCEPT                     = -0xf\n\tEVFILT_FS                         = -0x9\n\tEVFILT_MACHPORT                   = -0x8\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0xf\n\tEVFILT_THREADMARKER               = 0xf\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_USER                       = -0xa\n\tEVFILT_VM                         = -0xc\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_DISPATCH                       = 0x80\n\tEV_DISPATCH2                      = 0x180\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG0                          = 0x1000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_OOBAND                         = 0x2000\n\tEV_POLL                           = 0x1000\n\tEV_RECEIPT                        = 0x40\n\tEV_SYSFLAGS                       = 0xf000\n\tEV_UDATA_SPECIFIC                 = 0x100\n\tEV_VANISHED                       = 0x200\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFF0                               = 0x0\n\tFF1                               = 0x4000\n\tFFDLY                             = 0x4000\n\tFLUSHO                            = 0x800000\n\tFSOPT_ATTR_CMN_EXTENDED           = 0x20\n\tFSOPT_NOFOLLOW                    = 0x1\n\tFSOPT_NOINMEMUPDATE               = 0x2\n\tFSOPT_PACK_INVAL_ATTRS            = 0x8\n\tFSOPT_REPORT_FULLSIZE             = 0x4\n\tF_ADDFILESIGS                     = 0x3d\n\tF_ADDFILESIGS_FOR_DYLD_SIM        = 0x53\n\tF_ADDFILESIGS_RETURN              = 0x61\n\tF_ADDSIGS                         = 0x3b\n\tF_ALLOCATEALL                     = 0x4\n\tF_ALLOCATECONTIG                  = 0x2\n\tF_BARRIERFSYNC                    = 0x55\n\tF_CHECK_LV                        = 0x62\n\tF_CHKCLEAN                        = 0x29\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0x43\n\tF_FINDSIGS                        = 0x4e\n\tF_FLUSH_DATA                      = 0x28\n\tF_FREEZE_FS                       = 0x35\n\tF_FULLFSYNC                       = 0x33\n\tF_GETCODEDIR                      = 0x48\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETLKPID                        = 0x42\n\tF_GETNOSIGPIPE                    = 0x4a\n\tF_GETOWN                          = 0x5\n\tF_GETPATH                         = 0x32\n\tF_GETPATH_MTMINFO                 = 0x47\n\tF_GETPROTECTIONCLASS              = 0x3f\n\tF_GETPROTECTIONLEVEL              = 0x4d\n\tF_GLOBAL_NOCACHE                  = 0x37\n\tF_LOG2PHYS                        = 0x31\n\tF_LOG2PHYS_EXT                    = 0x41\n\tF_NOCACHE                         = 0x30\n\tF_NODIRECT                        = 0x3e\n\tF_OK                              = 0x0\n\tF_PATHPKG_CHECK                   = 0x34\n\tF_PEOFPOSMODE                     = 0x3\n\tF_PREALLOCATE                     = 0x2a\n\tF_PUNCHHOLE                       = 0x63\n\tF_RDADVISE                        = 0x2c\n\tF_RDAHEAD                         = 0x2d\n\tF_RDLCK                           = 0x1\n\tF_SETBACKINGSTORE                 = 0x46\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETLKWTIMEOUT                   = 0xa\n\tF_SETNOSIGPIPE                    = 0x49\n\tF_SETOWN                          = 0x6\n\tF_SETPROTECTIONCLASS              = 0x40\n\tF_SETSIZE                         = 0x2b\n\tF_SINGLE_WRITER                   = 0x4c\n\tF_THAW_FS                         = 0x36\n\tF_TRANSCODEKEY                    = 0x4b\n\tF_TRIM_ACTIVE_FILE                = 0x64\n\tF_UNLCK                           = 0x2\n\tF_VOLPOSMODE                      = 0x4\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_ALTPHYS                       = 0x4000\n\tIFF_BROADCAST                     = 0x2\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_AAL5                          = 0x31\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ATM                           = 0x25\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_CARP                          = 0xf8\n\tIFT_CELLULAR                      = 0xff\n\tIFT_CEPT                          = 0x13\n\tIFT_DS3                           = 0x1e\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0x38\n\tIFT_FDDI                          = 0xf\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_GIF                           = 0x37\n\tIFT_HDH1822                       = 0x3\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE8023ADLAG                 = 0x88\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88026                      = 0xa\n\tIFT_L2VLAN                        = 0x87\n\tIFT_LAPB                          = 0x10\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_NSIP                          = 0x1b\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PDP                           = 0xff\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PKTAP                         = 0xfe\n\tIFT_PPP                           = 0x17\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_RS232                         = 0x21\n\tIFT_SDLC                          = 0x11\n\tIFT_SIP                           = 0x1f\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0x39\n\tIFT_T1                            = 0x12\n\tIFT_ULTRA                         = 0x1d\n\tIFT_V35                           = 0x2d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LINKLOCALNETNUM                = 0xa9fe0000\n\tIN_LOOPBACKNET                    = 0x7f\n\tIPPROTO_3PC                       = 0x22\n\tIPPROTO_ADFS                      = 0x44\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_AHIP                      = 0x3d\n\tIPPROTO_APES                      = 0x63\n\tIPPROTO_ARGUS                     = 0xd\n\tIPPROTO_AX25                      = 0x5d\n\tIPPROTO_BHA                       = 0x31\n\tIPPROTO_BLT                       = 0x1e\n\tIPPROTO_BRSATMON                  = 0x4c\n\tIPPROTO_CFTP                      = 0x3e\n\tIPPROTO_CHAOS                     = 0x10\n\tIPPROTO_CMTP                      = 0x26\n\tIPPROTO_CPHB                      = 0x49\n\tIPPROTO_CPNX                      = 0x48\n\tIPPROTO_DDP                       = 0x25\n\tIPPROTO_DGP                       = 0x56\n\tIPPROTO_DIVERT                    = 0xfe\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_EMCON                     = 0xe\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GMTP                      = 0x64\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HELLO                     = 0x3f\n\tIPPROTO_HMP                       = 0x14\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IDPR                      = 0x23\n\tIPPROTO_IDRP                      = 0x2d\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IGP                       = 0x55\n\tIPPROTO_IGRP                      = 0x58\n\tIPPROTO_IL                        = 0x28\n\tIPPROTO_INLSP                     = 0x34\n\tIPPROTO_INP                       = 0x20\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPCV                      = 0x47\n\tIPPROTO_IPEIP                     = 0x5e\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPPC                      = 0x43\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_IRTP                      = 0x1c\n\tIPPROTO_KRYPTOLAN                 = 0x41\n\tIPPROTO_LARP                      = 0x5b\n\tIPPROTO_LEAF1                     = 0x19\n\tIPPROTO_LEAF2                     = 0x1a\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x34\n\tIPPROTO_MEAS                      = 0x13\n\tIPPROTO_MHRP                      = 0x30\n\tIPPROTO_MICP                      = 0x5f\n\tIPPROTO_MTP                       = 0x5c\n\tIPPROTO_MUX                       = 0x12\n\tIPPROTO_ND                        = 0x4d\n\tIPPROTO_NHRP                      = 0x36\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_NSP                       = 0x1f\n\tIPPROTO_NVPII                     = 0xb\n\tIPPROTO_OSPFIGP                   = 0x59\n\tIPPROTO_PGM                       = 0x71\n\tIPPROTO_PIGP                      = 0x9\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PRM                       = 0x15\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_PVP                       = 0x4b\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_RCCMON                    = 0xa\n\tIPPROTO_RDP                       = 0x1b\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_RVD                       = 0x42\n\tIPPROTO_SATEXPAK                  = 0x40\n\tIPPROTO_SATMON                    = 0x45\n\tIPPROTO_SCCSP                     = 0x60\n\tIPPROTO_SCTP                      = 0x84\n\tIPPROTO_SDRP                      = 0x2a\n\tIPPROTO_SEP                       = 0x21\n\tIPPROTO_SRPC                      = 0x5a\n\tIPPROTO_ST                        = 0x7\n\tIPPROTO_SVMTP                     = 0x52\n\tIPPROTO_SWIPE                     = 0x35\n\tIPPROTO_TCF                       = 0x57\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_TPXX                      = 0x27\n\tIPPROTO_TRUNK1                    = 0x17\n\tIPPROTO_TRUNK2                    = 0x18\n\tIPPROTO_TTP                       = 0x54\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_VINES                     = 0x53\n\tIPPROTO_VISA                      = 0x46\n\tIPPROTO_VMTP                      = 0x51\n\tIPPROTO_WBEXPAK                   = 0x4f\n\tIPPROTO_WBMON                     = 0x4e\n\tIPPROTO_WSN                       = 0x4a\n\tIPPROTO_XNET                      = 0xf\n\tIPPROTO_XTP                       = 0x24\n\tIPV6_2292DSTOPTS                  = 0x17\n\tIPV6_2292HOPLIMIT                 = 0x14\n\tIPV6_2292HOPOPTS                  = 0x16\n\tIPV6_2292NEXTHOP                  = 0x15\n\tIPV6_2292PKTINFO                  = 0x13\n\tIPV6_2292PKTOPTIONS               = 0x19\n\tIPV6_2292RTHDR                    = 0x18\n\tIPV6_BINDV6ONLY                   = 0x1b\n\tIPV6_BOUND_IF                     = 0x7d\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FLOW_ECN_MASK                = 0x300\n\tIPV6_FRAGTTL                      = 0x3c\n\tIPV6_FW_ADD                       = 0x1e\n\tIPV6_FW_DEL                       = 0x1f\n\tIPV6_FW_FLUSH                     = 0x20\n\tIPV6_FW_GET                       = 0x22\n\tIPV6_FW_ZERO                      = 0x21\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_IPSEC_POLICY                 = 0x1c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXOPTHDR                    = 0x800\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MAX_GROUP_SRC_FILTER         = 0x200\n\tIPV6_MAX_MEMBERSHIPS              = 0xfff\n\tIPV6_MAX_SOCK_SRC_FILTER          = 0x80\n\tIPV6_MIN_MEMBERSHIPS              = 0x1f\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVTCLASS                   = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x24\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP          = 0x46\n\tIP_BLOCK_SOURCE                   = 0x48\n\tIP_BOUND_IF                       = 0x19\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP         = 0x47\n\tIP_DUMMYNET_CONFIGURE             = 0x3c\n\tIP_DUMMYNET_DEL                   = 0x3d\n\tIP_DUMMYNET_FLUSH                 = 0x3e\n\tIP_DUMMYNET_GET                   = 0x40\n\tIP_FAITH                          = 0x16\n\tIP_FW_ADD                         = 0x28\n\tIP_FW_DEL                         = 0x29\n\tIP_FW_FLUSH                       = 0x2a\n\tIP_FW_GET                         = 0x2c\n\tIP_FW_RESETLOG                    = 0x2d\n\tIP_FW_ZERO                        = 0x2b\n\tIP_HDRINCL                        = 0x2\n\tIP_IPSEC_POLICY                   = 0x15\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_GROUP_SRC_FILTER           = 0x200\n\tIP_MAX_MEMBERSHIPS                = 0xfff\n\tIP_MAX_SOCK_MUTE_FILTER           = 0x80\n\tIP_MAX_SOCK_SRC_FILTER            = 0x80\n\tIP_MF                             = 0x2000\n\tIP_MIN_MEMBERSHIPS                = 0x1f\n\tIP_MSFILTER                       = 0x4a\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_IFINDEX              = 0x42\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_MULTICAST_VIF                  = 0xe\n\tIP_NAT__XXX                       = 0x37\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OLD_FW_ADD                     = 0x32\n\tIP_OLD_FW_DEL                     = 0x33\n\tIP_OLD_FW_FLUSH                   = 0x34\n\tIP_OLD_FW_GET                     = 0x36\n\tIP_OLD_FW_RESETLOG                = 0x38\n\tIP_OLD_FW_ZERO                    = 0x35\n\tIP_OPTIONS                        = 0x1\n\tIP_PKTINFO                        = 0x1a\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVIF                         = 0x14\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVPKTINFO                    = 0x1a\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVTOS                        = 0x1b\n\tIP_RECVTTL                        = 0x18\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RSVP_OFF                       = 0x10\n\tIP_RSVP_ON                        = 0xf\n\tIP_RSVP_VIF_OFF                   = 0x12\n\tIP_RSVP_VIF_ON                    = 0x11\n\tIP_STRIPHDR                       = 0x17\n\tIP_TOS                            = 0x3\n\tIP_TRAFFIC_MGT_BACKGROUND         = 0x41\n\tIP_TTL                            = 0x4\n\tIP_UNBLOCK_SOURCE                 = 0x49\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIUTF8                             = 0x4000\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_CAN_REUSE                    = 0x9\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x5\n\tMADV_FREE_REUSABLE                = 0x7\n\tMADV_FREE_REUSE                   = 0x8\n\tMADV_NORMAL                       = 0x0\n\tMADV_PAGEOUT                      = 0xa\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_WILLNEED                     = 0x3\n\tMADV_ZERO_WIRED_PAGES             = 0x6\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_HASSEMAPHORE                  = 0x200\n\tMAP_JIT                           = 0x800\n\tMAP_NOCACHE                       = 0x400\n\tMAP_NOEXTEND                      = 0x100\n\tMAP_NORESERVE                     = 0x40\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_RESERVED0080                  = 0x80\n\tMAP_RESILIENT_CODESIGN            = 0x2000\n\tMAP_RESILIENT_MEDIA               = 0x4000\n\tMAP_SHARED                        = 0x1\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_AUTOMOUNTED                   = 0x400000\n\tMNT_CMDFLAGS                      = 0xf0000\n\tMNT_CPROTECT                      = 0x80\n\tMNT_DEFWRITE                      = 0x2000000\n\tMNT_DONTBROWSE                    = 0x100000\n\tMNT_DOVOLFS                       = 0x8000\n\tMNT_DWAIT                         = 0x4\n\tMNT_EXPORTED                      = 0x100\n\tMNT_FORCE                         = 0x80000\n\tMNT_IGNORE_OWNERSHIP              = 0x200000\n\tMNT_JOURNALED                     = 0x800000\n\tMNT_LOCAL                         = 0x1000\n\tMNT_MULTILABEL                    = 0x4000000\n\tMNT_NOATIME                       = 0x10000000\n\tMNT_NOBLOCK                       = 0x20000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOUSERXATTR                   = 0x1000000\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUARANTINE                    = 0x400\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UNION                         = 0x20\n\tMNT_UNKNOWNPERMISSIONS            = 0x200000\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0x17f0f5ff\n\tMNT_WAIT                          = 0x1\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOF                           = 0x100\n\tMSG_EOR                           = 0x8\n\tMSG_FLUSH                         = 0x400\n\tMSG_HAVEMORE                      = 0x2000\n\tMSG_HOLD                          = 0x800\n\tMSG_NEEDSA                        = 0x10000\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_RCVMORE                       = 0x4000\n\tMSG_SEND                          = 0x1000\n\tMSG_TRUNC                         = 0x10\n\tMSG_WAITALL                       = 0x40\n\tMSG_WAITSTREAM                    = 0x200\n\tMS_ASYNC                          = 0x1\n\tMS_DEACTIVATE                     = 0x8\n\tMS_INVALIDATE                     = 0x2\n\tMS_KILLPAGES                      = 0x4\n\tMS_SYNC                           = 0x10\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_DUMP2                      = 0x7\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_IFLIST2                    = 0x6\n\tNET_RT_MAXID                      = 0xa\n\tNET_RT_STAT                       = 0x4\n\tNET_RT_TRASH                      = 0x5\n\tNFDBITS                           = 0x20\n\tNL0                               = 0x0\n\tNL1                               = 0x100\n\tNL2                               = 0x200\n\tNL3                               = 0x300\n\tNLDLY                             = 0x300\n\tNOFLSH                            = 0x80000000\n\tNOKERNINFO                        = 0x2000000\n\tNOTE_ABSOLUTE                     = 0x8\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_BACKGROUND                   = 0x40\n\tNOTE_CHILD                        = 0x4\n\tNOTE_CRITICAL                     = 0x20\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXITSTATUS                   = 0x4000000\n\tNOTE_EXIT_CSERROR                 = 0x40000\n\tNOTE_EXIT_DECRYPTFAIL             = 0x10000\n\tNOTE_EXIT_DETAIL                  = 0x2000000\n\tNOTE_EXIT_DETAIL_MASK             = 0x70000\n\tNOTE_EXIT_MEMORY                  = 0x20000\n\tNOTE_EXIT_REPARENTED              = 0x80000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FFAND                        = 0x40000000\n\tNOTE_FFCOPY                       = 0xc0000000\n\tNOTE_FFCTRLMASK                   = 0xc0000000\n\tNOTE_FFLAGSMASK                   = 0xffffff\n\tNOTE_FFNOP                        = 0x0\n\tNOTE_FFOR                         = 0x80000000\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_FUNLOCK                      = 0x100\n\tNOTE_LEEWAY                       = 0x10\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_MACH_CONTINUOUS_TIME         = 0x80\n\tNOTE_NONE                         = 0x80\n\tNOTE_NSECONDS                     = 0x4\n\tNOTE_OOB                          = 0x2\n\tNOTE_PCTRLMASK                    = -0x100000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_REAP                         = 0x10000000\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_SECONDS                      = 0x1\n\tNOTE_SIGNAL                       = 0x8000000\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRIGGER                      = 0x1000000\n\tNOTE_USECONDS                     = 0x2\n\tNOTE_VM_ERROR                     = 0x10000000\n\tNOTE_VM_PRESSURE                  = 0x80000000\n\tNOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000\n\tNOTE_VM_PRESSURE_TERMINATE        = 0x40000000\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOFDEL                             = 0x20000\n\tOFILL                             = 0x80\n\tONLCR                             = 0x2\n\tONLRET                            = 0x40\n\tONOCR                             = 0x20\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tOXTABS                            = 0x4\n\tO_ACCMODE                         = 0x3\n\tO_ALERT                           = 0x20000000\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x1000000\n\tO_CREAT                           = 0x200\n\tO_DIRECTORY                       = 0x100000\n\tO_DP_GETRAWENCRYPTED              = 0x1\n\tO_DP_GETRAWUNENCRYPTED            = 0x2\n\tO_DSYNC                           = 0x400000\n\tO_EVTONLY                         = 0x8000\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x20000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_POPUP                           = 0x80000000\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_SHLOCK                          = 0x10\n\tO_SYMLINK                         = 0x200000\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tPT_ATTACH                         = 0xa\n\tPT_ATTACHEXC                      = 0xe\n\tPT_CONTINUE                       = 0x7\n\tPT_DENY_ATTACH                    = 0x1f\n\tPT_DETACH                         = 0xb\n\tPT_FIRSTMACH                      = 0x20\n\tPT_FORCEQUOTA                     = 0x1e\n\tPT_KILL                           = 0x8\n\tPT_READ_D                         = 0x2\n\tPT_READ_I                         = 0x1\n\tPT_READ_U                         = 0x3\n\tPT_SIGEXC                         = 0xc\n\tPT_STEP                           = 0x9\n\tPT_THUPDATE                       = 0xd\n\tPT_TRACE_ME                       = 0x0\n\tPT_WRITE_D                        = 0x5\n\tPT_WRITE_I                        = 0x4\n\tPT_WRITE_U                        = 0x6\n\tRLIMIT_AS                         = 0x5\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_CPU_USAGE_MONITOR          = 0x2\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_MAX                          = 0x8\n\tRTAX_NETMASK                      = 0x2\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_NETMASK                       = 0x4\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_BROADCAST                     = 0x400000\n\tRTF_CLONING                       = 0x100\n\tRTF_CONDEMNED                     = 0x2000000\n\tRTF_DELCLONE                      = 0x80\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_IFREF                         = 0x4000000\n\tRTF_IFSCOPE                       = 0x1000000\n\tRTF_LLINFO                        = 0x400\n\tRTF_LOCAL                         = 0x200000\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MULTICAST                     = 0x800000\n\tRTF_NOIFREF                       = 0x2000\n\tRTF_PINNED                        = 0x100000\n\tRTF_PRCLONING                     = 0x10000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x40000\n\tRTF_PROXY                         = 0x8000000\n\tRTF_REJECT                        = 0x8\n\tRTF_ROUTER                        = 0x10000000\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_WASCLONED                     = 0x20000\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DELMADDR                      = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_GET2                          = 0x14\n\tRTM_IFINFO                        = 0xe\n\tRTM_IFINFO2                       = 0x12\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_NEWMADDR                      = 0xf\n\tRTM_NEWMADDR2                     = 0x13\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x5\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tSCM_CREDS                         = 0x3\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x2\n\tSCM_TIMESTAMP_MONOTONIC           = 0x4\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCARPIPLL                       = 0xc0206928\n\tSIOCATMARK                        = 0x40047307\n\tSIOCAUTOADDR                      = 0xc0206926\n\tSIOCAUTONETMASK                   = 0x80206927\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFPHYADDR                    = 0x80206941\n\tSIOCGDRVSPEC                      = 0xc028697b\n\tSIOCGETVLAN                       = 0xc020697f\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFALTMTU                     = 0xc0206948\n\tSIOCGIFASYNCMAP                   = 0xc020697c\n\tSIOCGIFBOND                       = 0xc0206947\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCAP                        = 0xc020695b\n\tSIOCGIFCONF                       = 0xc00c6924\n\tSIOCGIFDEVMTU                     = 0xc0206944\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFKPI                        = 0xc0206987\n\tSIOCGIFMAC                        = 0xc0206982\n\tSIOCGIFMEDIA                      = 0xc02c6938\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc0206933\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPDSTADDR                   = 0xc0206940\n\tSIOCGIFPHYS                       = 0xc0206935\n\tSIOCGIFPSRCADDR                   = 0xc020693f\n\tSIOCGIFSTATUS                     = 0xc331693d\n\tSIOCGIFVLAN                       = 0xc020697f\n\tSIOCGIFWAKEFLAGS                  = 0xc0206988\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCIFCREATE                      = 0xc0206978\n\tSIOCIFCREATE2                     = 0xc020697a\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc0106981\n\tSIOCRSLVMULTI                     = 0xc010693b\n\tSIOCSDRVSPEC                      = 0x8028697b\n\tSIOCSETVLAN                       = 0x8020697e\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFALTMTU                     = 0x80206945\n\tSIOCSIFASYNCMAP                   = 0x8020697d\n\tSIOCSIFBOND                       = 0x80206946\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFCAP                        = 0x8020695a\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFKPI                        = 0x80206986\n\tSIOCSIFLLADDR                     = 0x8020693c\n\tSIOCSIFMAC                        = 0x80206983\n\tSIOCSIFMEDIA                      = 0xc0206937\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x80206934\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPHYADDR                    = 0x8040693e\n\tSIOCSIFPHYS                       = 0x80206936\n\tSIOCSIFVLAN                       = 0x8020697e\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_MAXADDRLEN                   = 0xff\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_DONTTRUNC                      = 0x2000\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LABEL                          = 0x1010\n\tSO_LINGER                         = 0x80\n\tSO_LINGER_SEC                     = 0x1080\n\tSO_NETSVC_MARKING_LEVEL           = 0x1119\n\tSO_NET_SERVICE_TYPE               = 0x1116\n\tSO_NKE                            = 0x1021\n\tSO_NOADDRERR                      = 0x1023\n\tSO_NOSIGPIPE                      = 0x1022\n\tSO_NOTIFYCONFLICT                 = 0x1026\n\tSO_NP_EXTENSIONS                  = 0x1083\n\tSO_NREAD                          = 0x1020\n\tSO_NUMRCVPKT                      = 0x1112\n\tSO_NWRITE                         = 0x1024\n\tSO_OOBINLINE                      = 0x100\n\tSO_PEERLABEL                      = 0x1011\n\tSO_RANDOMPORT                     = 0x1082\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_REUSESHAREUID                  = 0x1025\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_TIMESTAMP                      = 0x400\n\tSO_TIMESTAMP_MONOTONIC            = 0x800\n\tSO_TYPE                           = 0x1008\n\tSO_UPCALLCLOSEWAIT                = 0x1027\n\tSO_USELOOPBACK                    = 0x40\n\tSO_WANTMORE                       = 0x4000\n\tSO_WANTOOBFLAG                    = 0x8000\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IFWHT                           = 0xe000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTAB0                              = 0x0\n\tTAB1                              = 0x400\n\tTAB2                              = 0x800\n\tTAB3                              = 0x4\n\tTABDLY                            = 0xc04\n\tTCIFLUSH                          = 0x1\n\tTCIOFF                            = 0x3\n\tTCIOFLUSH                         = 0x3\n\tTCION                             = 0x4\n\tTCOFLUSH                          = 0x2\n\tTCOOFF                            = 0x1\n\tTCOON                             = 0x2\n\tTCP_CONNECTIONTIMEOUT             = 0x20\n\tTCP_CONNECTION_INFO               = 0x106\n\tTCP_ENABLE_ECN                    = 0x104\n\tTCP_FASTOPEN                      = 0x105\n\tTCP_KEEPALIVE                     = 0x10\n\tTCP_KEEPCNT                       = 0x102\n\tTCP_KEEPINTVL                     = 0x101\n\tTCP_MAXHLEN                       = 0x3c\n\tTCP_MAXOLEN                       = 0x28\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_SACK                      = 0x4\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MINMSS                        = 0xd8\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOOPT                         = 0x8\n\tTCP_NOPUSH                        = 0x4\n\tTCP_NOTSENT_LOWAT                 = 0x201\n\tTCP_RXT_CONNDROPTIME              = 0x80\n\tTCP_RXT_FINDROP                   = 0x100\n\tTCP_SENDMOREACKS                  = 0x103\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDCDTIMESTAMP                  = 0x40107458\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCDSIMICROCODE                  = 0x20007455\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGDRAINWAIT                    = 0x40047456\n\tTIOCGETA                          = 0x40487413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCIXOFF                         = 0x20007480\n\tTIOCIXON                          = 0x20007481\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGDTRWAIT                     = 0x4004745a\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x40047403\n\tTIOCMODS                          = 0x80047404\n\tTIOCMSDTRWAIT                     = 0x8004745b\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCPTYGNAME                      = 0x40807453\n\tTIOCPTYGRANT                      = 0x20007454\n\tTIOCPTYUNLK                       = 0x20007452\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCONS                         = 0x20007463\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDRAINWAIT                    = 0x80047457\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x80487414\n\tTIOCSETAF                         = 0x80487416\n\tTIOCSETAW                         = 0x80487415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSIG                           = 0x2000745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x20007465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCTIMESTAMP                     = 0x40107459\n\tTIOCUCNTL                         = 0x80047466\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVM_LOADAVG                        = 0x2\n\tVM_MACHFACTOR                     = 0x4\n\tVM_MAXID                          = 0x6\n\tVM_METER                          = 0x1\n\tVM_SWAPUSAGE                      = 0x5\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVT0                               = 0x0\n\tVT1                               = 0x10000\n\tVTDLY                             = 0x10000\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWCONTINUED                        = 0x10\n\tWCOREFLAG                         = 0x80\n\tWEXITED                           = 0x4\n\tWNOHANG                           = 0x1\n\tWNOWAIT                           = 0x20\n\tWORDSIZE                          = 0x40\n\tWSTOPPED                          = 0x8\n\tWUNTRACED                         = 0x2\n\tXATTR_CREATE                      = 0x2\n\tXATTR_NODEFAULT                   = 0x10\n\tXATTR_NOFOLLOW                    = 0x1\n\tXATTR_NOSECURITY                  = 0x8\n\tXATTR_REPLACE                     = 0x4\n\tXATTR_SHOWCOMPRESSION             = 0x20\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADARCH        = syscall.Errno(0x56)\n\tEBADEXEC        = syscall.Errno(0x55)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMACHO       = syscall.Errno(0x58)\n\tEBADMSG         = syscall.Errno(0x5e)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x59)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDEVERR         = syscall.Errno(0x53)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x5a)\n\tEILSEQ          = syscall.Errno(0x5c)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x6a)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5f)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x5d)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODATA         = syscall.Errno(0x60)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x61)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x5b)\n\tENOPOLICY       = syscall.Errno(0x67)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x62)\n\tENOSTR          = syscall.Errno(0x63)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x68)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x66)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEOWNERDEAD      = syscall.Errno(0x69)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x64)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tEPWROFF         = syscall.Errno(0x52)\n\tEQFULL          = syscall.Errno(0x6a)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHLIBVERS      = syscall.Errno(0x57)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIME           = syscall.Errno(0x65)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"ENOTSUP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EPWROFF\", \"device power is off\"},\n\t{83, \"EDEVERR\", \"device error\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"EBADEXEC\", \"bad executable (or shared library)\"},\n\t{86, \"EBADARCH\", \"bad CPU type in executable\"},\n\t{87, \"ESHLIBVERS\", \"shared library version mismatch\"},\n\t{88, \"EBADMACHO\", \"malformed Mach-o file\"},\n\t{89, \"ECANCELED\", \"operation canceled\"},\n\t{90, \"EIDRM\", \"identifier removed\"},\n\t{91, \"ENOMSG\", \"no message of desired type\"},\n\t{92, \"EILSEQ\", \"illegal byte sequence\"},\n\t{93, \"ENOATTR\", \"attribute not found\"},\n\t{94, \"EBADMSG\", \"bad message\"},\n\t{95, \"EMULTIHOP\", \"EMULTIHOP (Reserved)\"},\n\t{96, \"ENODATA\", \"no message available on STREAM\"},\n\t{97, \"ENOLINK\", \"ENOLINK (Reserved)\"},\n\t{98, \"ENOSR\", \"no STREAM resources\"},\n\t{99, \"ENOSTR\", \"not a STREAM\"},\n\t{100, \"EPROTO\", \"protocol error\"},\n\t{101, \"ETIME\", \"STREAM ioctl timeout\"},\n\t{102, \"EOPNOTSUPP\", \"operation not supported on socket\"},\n\t{103, \"ENOPOLICY\", \"policy not found\"},\n\t{104, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{105, \"EOWNERDEAD\", \"previous owner died\"},\n\t{106, \"EQFULL\", \"interface output queue is full\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGABRT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,dragonfly\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_ATM                            = 0x1e\n\tAF_BLUETOOTH                      = 0x21\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_HYLINK                         = 0xf\n\tAF_IEEE80211                      = 0x23\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x1c\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x24\n\tAF_MPLS                           = 0x22\n\tAF_NATM                           = 0x1d\n\tAF_NETBIOS                        = 0x6\n\tAF_NETGRAPH                       = 0x20\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x18\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tALTWERASE                         = 0x200\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc0104279\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044272\n\tBIOCGRTIMEOUT                     = 0x4010426e\n\tBIOCGSEESENT                      = 0x40044276\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCLOCK                          = 0x2000427a\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDLT                          = 0x80044278\n\tBIOCSETF                          = 0x80104267\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSETWF                         = 0x8010427b\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044273\n\tBIOCSRTIMEOUT                     = 0x8010426d\n\tBIOCSSEESENT                      = 0x80044277\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x8\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DEFAULTBUFSIZE                = 0x1000\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x80000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MAX_CLONES                    = 0x80\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLOCK_MONOTONIC                   = 0x4\n\tCLOCK_MONOTONIC_FAST              = 0xc\n\tCLOCK_MONOTONIC_PRECISE           = 0xb\n\tCLOCK_PROCESS_CPUTIME_ID          = 0xf\n\tCLOCK_PROF                        = 0x2\n\tCLOCK_REALTIME                    = 0x0\n\tCLOCK_REALTIME_FAST               = 0xa\n\tCLOCK_REALTIME_PRECISE            = 0x9\n\tCLOCK_SECOND                      = 0xd\n\tCLOCK_THREAD_CPUTIME_ID           = 0xe\n\tCLOCK_UPTIME                      = 0x5\n\tCLOCK_UPTIME_FAST                 = 0x8\n\tCLOCK_UPTIME_PRECISE              = 0x7\n\tCLOCK_VIRTUAL                     = 0x1\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x30000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0x14\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDLT_A429                          = 0xb8\n\tDLT_A653_ICM                      = 0xb9\n\tDLT_AIRONET_HEADER                = 0x78\n\tDLT_APPLE_IP_OVER_IEEE1394        = 0x8a\n\tDLT_ARCNET                        = 0x7\n\tDLT_ARCNET_LINUX                  = 0x81\n\tDLT_ATM_CLIP                      = 0x13\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AURORA                        = 0x7e\n\tDLT_AX25                          = 0x3\n\tDLT_AX25_KISS                     = 0xca\n\tDLT_BACNET_MS_TP                  = 0xa5\n\tDLT_BLUETOOTH_HCI_H4              = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR    = 0xc9\n\tDLT_CAN20B                        = 0xbe\n\tDLT_CHAOS                         = 0x5\n\tDLT_CHDLC                         = 0x68\n\tDLT_CISCO_IOS                     = 0x76\n\tDLT_C_HDLC                        = 0x68\n\tDLT_C_HDLC_WITH_DIR               = 0xcd\n\tDLT_DOCSIS                        = 0x8f\n\tDLT_ECONET                        = 0x73\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0x6d\n\tDLT_ERF                           = 0xc5\n\tDLT_ERF_ETH                       = 0xaf\n\tDLT_ERF_POS                       = 0xb0\n\tDLT_FDDI                          = 0xa\n\tDLT_FLEXRAY                       = 0xd2\n\tDLT_FRELAY                        = 0x6b\n\tDLT_FRELAY_WITH_DIR               = 0xce\n\tDLT_GCOM_SERIAL                   = 0xad\n\tDLT_GCOM_T1E1                     = 0xac\n\tDLT_GPF_F                         = 0xab\n\tDLT_GPF_T                         = 0xaa\n\tDLT_GPRS_LLC                      = 0xa9\n\tDLT_HHDLC                         = 0x79\n\tDLT_IBM_SN                        = 0x92\n\tDLT_IBM_SP                        = 0x91\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS          = 0xa3\n\tDLT_IEEE802_15_4                  = 0xc3\n\tDLT_IEEE802_15_4_LINUX            = 0xbf\n\tDLT_IEEE802_15_4_NONASK_PHY       = 0xd7\n\tDLT_IEEE802_16_MAC_CPS            = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO      = 0xc1\n\tDLT_IPFILTER                      = 0x74\n\tDLT_IPMB                          = 0xc7\n\tDLT_IPMB_LINUX                    = 0xd1\n\tDLT_IP_OVER_FC                    = 0x7a\n\tDLT_JUNIPER_ATM1                  = 0x89\n\tDLT_JUNIPER_ATM2                  = 0x87\n\tDLT_JUNIPER_CHDLC                 = 0xb5\n\tDLT_JUNIPER_ES                    = 0x84\n\tDLT_JUNIPER_ETHER                 = 0xb2\n\tDLT_JUNIPER_FRELAY                = 0xb4\n\tDLT_JUNIPER_GGSN                  = 0x85\n\tDLT_JUNIPER_ISM                   = 0xc2\n\tDLT_JUNIPER_MFR                   = 0x86\n\tDLT_JUNIPER_MLFR                  = 0x83\n\tDLT_JUNIPER_MLPPP                 = 0x82\n\tDLT_JUNIPER_MONITOR               = 0xa4\n\tDLT_JUNIPER_PIC_PEER              = 0xae\n\tDLT_JUNIPER_PPP                   = 0xb3\n\tDLT_JUNIPER_PPPOE                 = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM             = 0xa8\n\tDLT_JUNIPER_SERVICES              = 0x88\n\tDLT_JUNIPER_ST                    = 0xc8\n\tDLT_JUNIPER_VP                    = 0xb7\n\tDLT_LAPB_WITH_DIR                 = 0xcf\n\tDLT_LAPD                          = 0xcb\n\tDLT_LIN                           = 0xd4\n\tDLT_LINUX_IRDA                    = 0x90\n\tDLT_LINUX_LAPD                    = 0xb1\n\tDLT_LINUX_SLL                     = 0x71\n\tDLT_LOOP                          = 0x6c\n\tDLT_LTALK                         = 0x72\n\tDLT_MFR                           = 0xb6\n\tDLT_MOST                          = 0xd3\n\tDLT_MTP2                          = 0x8c\n\tDLT_MTP2_WITH_PHDR                = 0x8b\n\tDLT_MTP3                          = 0x8d\n\tDLT_NULL                          = 0x0\n\tDLT_PCI_EXP                       = 0x7d\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPI                           = 0xc0\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_PPPD                      = 0xa6\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PPP_WITH_DIR                  = 0xcc\n\tDLT_PRISM_HEADER                  = 0x77\n\tDLT_PRONET                        = 0x4\n\tDLT_RAIF1                         = 0xc6\n\tDLT_RAW                           = 0xc\n\tDLT_REDBACK_SMARTEDGE             = 0x20\n\tDLT_RIO                           = 0x7c\n\tDLT_SCCP                          = 0x8e\n\tDLT_SITA                          = 0xc4\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDLT_SUNATM                        = 0x7b\n\tDLT_SYMANTEC_FIREWALL             = 0x63\n\tDLT_TZSP                          = 0x80\n\tDLT_USB                           = 0xba\n\tDLT_USB_LINUX                     = 0xbd\n\tDLT_X2E_SERIAL                    = 0xd5\n\tDLT_X2E_XORAYA                    = 0xd6\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DBF                            = 0xf\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tDT_WHT                            = 0xe\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_EXCEPT                     = -0x8\n\tEVFILT_FS                         = -0xa\n\tEVFILT_MARKER                     = 0xf\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0xa\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_USER                       = -0x9\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_DISPATCH                       = 0x80\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_NODATA                         = 0x1000\n\tEV_ONESHOT                        = 0x10\n\tEV_RECEIPT                        = 0x40\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTEXIT_LWP                       = 0x10000\n\tEXTEXIT_PROC                      = 0x0\n\tEXTEXIT_SETINT                    = 0x1\n\tEXTEXIT_SIMPLE                    = 0x0\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFLUSHO                            = 0x800000\n\tF_DUP2FD                          = 0xa\n\tF_DUP2FD_CLOEXEC                  = 0x12\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0x11\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETOWN                          = 0x5\n\tF_OK                              = 0x0\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_ALTPHYS                       = 0x4000\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x118e72\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MONITOR                       = 0x40000\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NPOLLING                      = 0x100000\n\tIFF_OACTIVE                       = 0x400\n\tIFF_OACTIVE_COMPAT                = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_POLLING                       = 0x10000\n\tIFF_POLLING_COMPAT                = 0x10000\n\tIFF_PPROMISC                      = 0x20000\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_SMART                         = 0x20\n\tIFF_STATICARP                     = 0x80000\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf8\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf2\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf1\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0xf3\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIPPROTO_3PC                       = 0x22\n\tIPPROTO_ADFS                      = 0x44\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_AHIP                      = 0x3d\n\tIPPROTO_APES                      = 0x63\n\tIPPROTO_ARGUS                     = 0xd\n\tIPPROTO_AX25                      = 0x5d\n\tIPPROTO_BHA                       = 0x31\n\tIPPROTO_BLT                       = 0x1e\n\tIPPROTO_BRSATMON                  = 0x4c\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_CFTP                      = 0x3e\n\tIPPROTO_CHAOS                     = 0x10\n\tIPPROTO_CMTP                      = 0x26\n\tIPPROTO_CPHB                      = 0x49\n\tIPPROTO_CPNX                      = 0x48\n\tIPPROTO_DDP                       = 0x25\n\tIPPROTO_DGP                       = 0x56\n\tIPPROTO_DIVERT                    = 0xfe\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_EMCON                     = 0xe\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GMTP                      = 0x64\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HELLO                     = 0x3f\n\tIPPROTO_HMP                       = 0x14\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IDPR                      = 0x23\n\tIPPROTO_IDRP                      = 0x2d\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IGP                       = 0x55\n\tIPPROTO_IGRP                      = 0x58\n\tIPPROTO_IL                        = 0x28\n\tIPPROTO_INLSP                     = 0x34\n\tIPPROTO_INP                       = 0x20\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPCV                      = 0x47\n\tIPPROTO_IPEIP                     = 0x5e\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPPC                      = 0x43\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_IRTP                      = 0x1c\n\tIPPROTO_KRYPTOLAN                 = 0x41\n\tIPPROTO_LARP                      = 0x5b\n\tIPPROTO_LEAF1                     = 0x19\n\tIPPROTO_LEAF2                     = 0x1a\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x34\n\tIPPROTO_MEAS                      = 0x13\n\tIPPROTO_MHRP                      = 0x30\n\tIPPROTO_MICP                      = 0x5f\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_MTP                       = 0x5c\n\tIPPROTO_MUX                       = 0x12\n\tIPPROTO_ND                        = 0x4d\n\tIPPROTO_NHRP                      = 0x36\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_NSP                       = 0x1f\n\tIPPROTO_NVPII                     = 0xb\n\tIPPROTO_OSPFIGP                   = 0x59\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PGM                       = 0x71\n\tIPPROTO_PIGP                      = 0x9\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PRM                       = 0x15\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_PVP                       = 0x4b\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_RCCMON                    = 0xa\n\tIPPROTO_RDP                       = 0x1b\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_RVD                       = 0x42\n\tIPPROTO_SATEXPAK                  = 0x40\n\tIPPROTO_SATMON                    = 0x45\n\tIPPROTO_SCCSP                     = 0x60\n\tIPPROTO_SDRP                      = 0x2a\n\tIPPROTO_SEP                       = 0x21\n\tIPPROTO_SKIP                      = 0x39\n\tIPPROTO_SRPC                      = 0x5a\n\tIPPROTO_ST                        = 0x7\n\tIPPROTO_SVMTP                     = 0x52\n\tIPPROTO_SWIPE                     = 0x35\n\tIPPROTO_TCF                       = 0x57\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TLSP                      = 0x38\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_TPXX                      = 0x27\n\tIPPROTO_TRUNK1                    = 0x17\n\tIPPROTO_TRUNK2                    = 0x18\n\tIPPROTO_TTP                       = 0x54\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_UNKNOWN                   = 0x102\n\tIPPROTO_VINES                     = 0x53\n\tIPPROTO_VISA                      = 0x46\n\tIPPROTO_VMTP                      = 0x51\n\tIPPROTO_WBEXPAK                   = 0x4f\n\tIPPROTO_WBMON                     = 0x4e\n\tIPPROTO_WSN                       = 0x4a\n\tIPPROTO_XNET                      = 0xf\n\tIPPROTO_XTP                       = 0x24\n\tIPV6_AUTOFLOWLABEL                = 0x3b\n\tIPV6_BINDV6ONLY                   = 0x1b\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_FW_ADD                       = 0x1e\n\tIPV6_FW_DEL                       = 0x1f\n\tIPV6_FW_FLUSH                     = 0x20\n\tIPV6_FW_GET                       = 0x22\n\tIPV6_FW_ZERO                      = 0x21\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPSEC_POLICY                 = 0x1c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MINHLIM                      = 0x28\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MSFILTER                     = 0x4a\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PKTOPTIONS                   = 0x34\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_PREFER_TEMPADDR              = 0x3f\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_DUMMYNET_CONFIGURE             = 0x3c\n\tIP_DUMMYNET_DEL                   = 0x3d\n\tIP_DUMMYNET_FLUSH                 = 0x3e\n\tIP_DUMMYNET_GET                   = 0x40\n\tIP_FAITH                          = 0x16\n\tIP_FW_ADD                         = 0x32\n\tIP_FW_DEL                         = 0x33\n\tIP_FW_FLUSH                       = 0x34\n\tIP_FW_GET                         = 0x36\n\tIP_FW_RESETLOG                    = 0x37\n\tIP_FW_X                           = 0x31\n\tIP_FW_ZERO                        = 0x35\n\tIP_HDRINCL                        = 0x2\n\tIP_IPSEC_POLICY                   = 0x15\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0x14\n\tIP_MF                             = 0x2000\n\tIP_MINTTL                         = 0x42\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_MULTICAST_VIF                  = 0xe\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVIF                         = 0x14\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVTTL                        = 0x41\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RSVP_OFF                       = 0x10\n\tIP_RSVP_ON                        = 0xf\n\tIP_RSVP_VIF_OFF                   = 0x12\n\tIP_RSVP_VIF_ON                    = 0x11\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_AUTOSYNC                     = 0x7\n\tMADV_CONTROL_END                  = 0xb\n\tMADV_CONTROL_START                = 0xa\n\tMADV_CORE                         = 0x9\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x5\n\tMADV_INVAL                        = 0xa\n\tMADV_NOCORE                       = 0x8\n\tMADV_NORMAL                       = 0x0\n\tMADV_NOSYNC                       = 0x6\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SETMAP                       = 0xb\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_HASSEMAPHORE                  = 0x200\n\tMAP_INHERIT                       = 0x80\n\tMAP_NOCORE                        = 0x20000\n\tMAP_NOEXTEND                      = 0x100\n\tMAP_NORESERVE                     = 0x40\n\tMAP_NOSYNC                        = 0x800\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_SHARED                        = 0x1\n\tMAP_SIZEALIGN                     = 0x40000\n\tMAP_STACK                         = 0x400\n\tMAP_TRYFIXED                      = 0x10000\n\tMAP_VPAGETABLE                    = 0x2000\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_AUTOMOUNTED                   = 0x20\n\tMNT_CMDFLAGS                      = 0xf0000\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DELEXPORT                     = 0x20000\n\tMNT_EXKERB                        = 0x800\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXPUBLIC                      = 0x20000000\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_FORCE                         = 0x80000\n\tMNT_IGNORE                        = 0x800000\n\tMNT_LAZY                          = 0x4\n\tMNT_LOCAL                         = 0x1000\n\tMNT_NOATIME                       = 0x10000000\n\tMNT_NOCLUSTERR                    = 0x40000000\n\tMNT_NOCLUSTERW                    = 0x80000000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOSYMFOLLOW                   = 0x400000\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x200000\n\tMNT_SUIDDIR                       = 0x100000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_TRIM                          = 0x1000000\n\tMNT_UPDATE                        = 0x10000\n\tMNT_USER                          = 0x8000\n\tMNT_VISFLAGMASK                   = 0xf1f0ffff\n\tMNT_WAIT                          = 0x1\n\tMSG_CMSG_CLOEXEC                  = 0x1000\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOF                           = 0x100\n\tMSG_EOR                           = 0x8\n\tMSG_FBLOCKING                     = 0x10000\n\tMSG_FMASK                         = 0xffff0000\n\tMSG_FNONBLOCKING                  = 0x20000\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_SYNC                          = 0x800\n\tMSG_TRUNC                         = 0x10\n\tMSG_UNUSED09                      = 0x200\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x2\n\tMS_SYNC                           = 0x0\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_MAXID                      = 0x4\n\tNFDBITS                           = 0x40\n\tNOFLSH                            = 0x80000000\n\tNOKERNINFO                        = 0x2000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FFAND                        = 0x40000000\n\tNOTE_FFCOPY                       = 0xc0000000\n\tNOTE_FFCTRLMASK                   = 0xc0000000\n\tNOTE_FFLAGSMASK                   = 0xffffff\n\tNOTE_FFNOP                        = 0x0\n\tNOTE_FFOR                         = 0x80000000\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_OOB                          = 0x2\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRIGGER                      = 0x1000000\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tONLCR                             = 0x2\n\tONLRET                            = 0x40\n\tONOCR                             = 0x20\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tOXTABS                            = 0x4\n\tO_ACCMODE                         = 0x3\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x20000\n\tO_CREAT                           = 0x200\n\tO_DIRECT                          = 0x10000\n\tO_DIRECTORY                       = 0x8000000\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FAPPEND                         = 0x100000\n\tO_FASYNCWRITE                     = 0x800000\n\tO_FBLOCKING                       = 0x40000\n\tO_FMASK                           = 0xfc0000\n\tO_FNONBLOCKING                    = 0x80000\n\tO_FOFFSET                         = 0x200000\n\tO_FSYNC                           = 0x80\n\tO_FSYNCWRITE                      = 0x400000\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tRLIMIT_AS                         = 0xa\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_MAX                          = 0xb\n\tRTAX_MPLS1                        = 0x8\n\tRTAX_MPLS2                        = 0x9\n\tRTAX_MPLS3                        = 0xa\n\tRTAX_NETMASK                      = 0x2\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_MPLS1                         = 0x100\n\tRTA_MPLS2                         = 0x200\n\tRTA_MPLS3                         = 0x400\n\tRTA_NETMASK                       = 0x4\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_BROADCAST                     = 0x400000\n\tRTF_CLONING                       = 0x100\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_LOCAL                         = 0x200000\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MPLSOPS                       = 0x1000000\n\tRTF_MULTICAST                     = 0x800000\n\tRTF_PINNED                        = 0x100000\n\tRTF_PRCLONING                     = 0x10000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x40000\n\tRTF_REJECT                        = 0x8\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_WASCLONED                     = 0x20000\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DELMADDR                      = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_IEEE80211                     = 0x12\n\tRTM_IFANNOUNCE                    = 0x11\n\tRTM_IFINFO                        = 0xe\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_NEWMADDR                      = 0xf\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x6\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_IWCAPSEGS                     = 0x400\n\tRTV_IWMAXSEGS                     = 0x200\n\tRTV_MSL                           = 0x100\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tSCM_CREDS                         = 0x3\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x2\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCADDRT                         = 0x8040720a\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCALIFADDR                      = 0x8118691b\n\tSIOCATMARK                        = 0x40047307\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDELRT                         = 0x8040720b\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFPHYADDR                    = 0x80206949\n\tSIOCDLIFADDR                      = 0x8118691d\n\tSIOCGDRVSPEC                      = 0xc028697b\n\tSIOCGETSGCNT                      = 0xc0207210\n\tSIOCGETVIFCNT                     = 0xc028720f\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCAP                        = 0xc020691f\n\tSIOCGIFCONF                       = 0xc0106924\n\tSIOCGIFDATA                       = 0xc0206926\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFGMEMB                      = 0xc028698a\n\tSIOCGIFINDEX                      = 0xc0206920\n\tSIOCGIFMEDIA                      = 0xc0306938\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc0206933\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPDSTADDR                   = 0xc0206948\n\tSIOCGIFPHYS                       = 0xc0206935\n\tSIOCGIFPOLLCPU                    = 0xc020697e\n\tSIOCGIFPSRCADDR                   = 0xc0206947\n\tSIOCGIFSTATUS                     = 0xc331693b\n\tSIOCGIFTSOLEN                     = 0xc0206980\n\tSIOCGLIFADDR                      = 0xc118691c\n\tSIOCGLIFPHYADDR                   = 0xc118694b\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGPRIVATE_0                    = 0xc0206950\n\tSIOCGPRIVATE_1                    = 0xc0206951\n\tSIOCIFCREATE                      = 0xc020697a\n\tSIOCIFCREATE2                     = 0xc020697c\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc0106978\n\tSIOCSDRVSPEC                      = 0x8028697b\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFCAP                        = 0x8020691e\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFLLADDR                     = 0x8020693c\n\tSIOCSIFMEDIA                      = 0xc0206937\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x80206934\n\tSIOCSIFNAME                       = 0x80206928\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPHYADDR                    = 0x80406946\n\tSIOCSIFPHYS                       = 0x80206936\n\tSIOCSIFPOLLCPU                    = 0x8020697d\n\tSIOCSIFTSOLEN                     = 0x8020697f\n\tSIOCSLIFPHYADDR                   = 0x8118694a\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSOCK_CLOEXEC                      = 0x10000000\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_MAXADDRLEN                   = 0xff\n\tSOCK_NONBLOCK                     = 0x20000000\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_ACCEPTFILTER                   = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_CPUHINT                        = 0x1030\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NOSIGPIPE                      = 0x800\n\tSO_OOBINLINE                      = 0x100\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDSPACE                       = 0x100a\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_TIMESTAMP                      = 0x400\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDB                            = 0x9000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IFWHT                           = 0xe000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTCIFLUSH                          = 0x1\n\tTCIOFF                            = 0x3\n\tTCIOFLUSH                         = 0x3\n\tTCION                             = 0x4\n\tTCOFLUSH                          = 0x2\n\tTCOOFF                            = 0x1\n\tTCOON                             = 0x2\n\tTCP_FASTKEEP                      = 0x80\n\tTCP_KEEPCNT                       = 0x400\n\tTCP_KEEPIDLE                      = 0x100\n\tTCP_KEEPINIT                      = 0x20\n\tTCP_KEEPINTVL                     = 0x200\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXHLEN                       = 0x3c\n\tTCP_MAXOLEN                       = 0x28\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MINMSS                        = 0x100\n\tTCP_MIN_WINSHIFT                  = 0x5\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOOPT                         = 0x8\n\tTCP_NOPUSH                        = 0x4\n\tTCP_SIGNATURE_ENABLE              = 0x10\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDCDTIMESTAMP                  = 0x40107458\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGDRAINWAIT                    = 0x40047456\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGSID                          = 0x40047463\n\tTIOCGSIZE                         = 0x40087468\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCISPTMASTER                    = 0x20007455\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGDTRWAIT                     = 0x4004745a\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x40047403\n\tTIOCMODS                          = 0x80047404\n\tTIOCMSDTRWAIT                     = 0x8004745b\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDRAINWAIT                    = 0x80047457\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSIG                           = 0x2000745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSSIZE                         = 0x80087467\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x20007465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCTIMESTAMP                     = 0x40107459\n\tTIOCUCNTL                         = 0x80047466\n\tTOSTOP                            = 0x400000\n\tVCHECKPT                          = 0x13\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVERASE2                           = 0x7\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVM_BCACHE_SIZE_MAX                = 0x0\n\tVM_SWZONE_SIZE_MAX                = 0x4000000000\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWCONTINUED                        = 0x4\n\tWCOREFLAG                         = 0x80\n\tWLINUXCLONE                       = 0x80000000\n\tWNOHANG                           = 0x1\n\tWSTOPPED                          = 0x7f\n\tWUNTRACED                         = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEASYNC          = syscall.Errno(0x63)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x59)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x55)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDOOFUS         = syscall.Errno(0x58)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x52)\n\tEILSEQ          = syscall.Errno(0x56)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x63)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5a)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x57)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x5b)\n\tENOMEDIUM       = syscall.Errno(0x5d)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x53)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x5c)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUNUSED94       = syscall.Errno(0x5e)\n\tEUNUSED95       = syscall.Errno(0x5f)\n\tEUNUSED96       = syscall.Errno(0x60)\n\tEUNUSED97       = syscall.Errno(0x61)\n\tEUNUSED98       = syscall.Errno(0x62)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT     = syscall.Signal(0x6)\n\tSIGALRM     = syscall.Signal(0xe)\n\tSIGBUS      = syscall.Signal(0xa)\n\tSIGCHLD     = syscall.Signal(0x14)\n\tSIGCKPT     = syscall.Signal(0x21)\n\tSIGCKPTEXIT = syscall.Signal(0x22)\n\tSIGCONT     = syscall.Signal(0x13)\n\tSIGEMT      = syscall.Signal(0x7)\n\tSIGFPE      = syscall.Signal(0x8)\n\tSIGHUP      = syscall.Signal(0x1)\n\tSIGILL      = syscall.Signal(0x4)\n\tSIGINFO     = syscall.Signal(0x1d)\n\tSIGINT      = syscall.Signal(0x2)\n\tSIGIO       = syscall.Signal(0x17)\n\tSIGIOT      = syscall.Signal(0x6)\n\tSIGKILL     = syscall.Signal(0x9)\n\tSIGPIPE     = syscall.Signal(0xd)\n\tSIGPROF     = syscall.Signal(0x1b)\n\tSIGQUIT     = syscall.Signal(0x3)\n\tSIGSEGV     = syscall.Signal(0xb)\n\tSIGSTOP     = syscall.Signal(0x11)\n\tSIGSYS      = syscall.Signal(0xc)\n\tSIGTERM     = syscall.Signal(0xf)\n\tSIGTHR      = syscall.Signal(0x20)\n\tSIGTRAP     = syscall.Signal(0x5)\n\tSIGTSTP     = syscall.Signal(0x12)\n\tSIGTTIN     = syscall.Signal(0x15)\n\tSIGTTOU     = syscall.Signal(0x16)\n\tSIGURG      = syscall.Signal(0x10)\n\tSIGUSR1     = syscall.Signal(0x1e)\n\tSIGUSR2     = syscall.Signal(0x1f)\n\tSIGVTALRM   = syscall.Signal(0x1a)\n\tSIGWINCH    = syscall.Signal(0x1c)\n\tSIGXCPU     = syscall.Signal(0x18)\n\tSIGXFSZ     = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EWOULDBLOCK\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIDRM\", \"identifier removed\"},\n\t{83, \"ENOMSG\", \"no message of desired type\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"ECANCELED\", \"operation canceled\"},\n\t{86, \"EILSEQ\", \"illegal byte sequence\"},\n\t{87, \"ENOATTR\", \"attribute not found\"},\n\t{88, \"EDOOFUS\", \"programming error\"},\n\t{89, \"EBADMSG\", \"bad message\"},\n\t{90, \"EMULTIHOP\", \"multihop attempted\"},\n\t{91, \"ENOLINK\", \"link has been severed\"},\n\t{92, \"EPROTO\", \"protocol error\"},\n\t{93, \"ENOMEDIUM\", \"no medium found\"},\n\t{94, \"EUNUSED94\", \"unknown error: 94\"},\n\t{95, \"EUNUSED95\", \"unknown error: 95\"},\n\t{96, \"EUNUSED96\", \"unknown error: 96\"},\n\t{97, \"EUNUSED97\", \"unknown error: 97\"},\n\t{98, \"EUNUSED98\", \"unknown error: 98\"},\n\t{99, \"ELAST\", \"unknown error: 99\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"thread Scheduler\"},\n\t{33, \"SIGCKPT\", \"checkPoint\"},\n\t{34, \"SIGCKPTEXIT\", \"checkPointExit\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go",
    "content": "// mkerrors.sh -m32\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,freebsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m32 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                   = 0x10\n\tAF_ARP                         = 0x23\n\tAF_ATM                         = 0x1e\n\tAF_BLUETOOTH                   = 0x24\n\tAF_CCITT                       = 0xa\n\tAF_CHAOS                       = 0x5\n\tAF_CNT                         = 0x15\n\tAF_COIP                        = 0x14\n\tAF_DATAKIT                     = 0x9\n\tAF_DECnet                      = 0xc\n\tAF_DLI                         = 0xd\n\tAF_E164                        = 0x1a\n\tAF_ECMA                        = 0x8\n\tAF_HYLINK                      = 0xf\n\tAF_IEEE80211                   = 0x25\n\tAF_IMPLINK                     = 0x3\n\tAF_INET                        = 0x2\n\tAF_INET6                       = 0x1c\n\tAF_INET6_SDP                   = 0x2a\n\tAF_INET_SDP                    = 0x28\n\tAF_IPX                         = 0x17\n\tAF_ISDN                        = 0x1a\n\tAF_ISO                         = 0x7\n\tAF_LAT                         = 0xe\n\tAF_LINK                        = 0x12\n\tAF_LOCAL                       = 0x1\n\tAF_MAX                         = 0x2a\n\tAF_NATM                        = 0x1d\n\tAF_NETBIOS                     = 0x6\n\tAF_NETGRAPH                    = 0x20\n\tAF_OSI                         = 0x7\n\tAF_PUP                         = 0x4\n\tAF_ROUTE                       = 0x11\n\tAF_SCLUSTER                    = 0x22\n\tAF_SIP                         = 0x18\n\tAF_SLOW                        = 0x21\n\tAF_SNA                         = 0xb\n\tAF_UNIX                        = 0x1\n\tAF_UNSPEC                      = 0x0\n\tAF_VENDOR00                    = 0x27\n\tAF_VENDOR01                    = 0x29\n\tAF_VENDOR02                    = 0x2b\n\tAF_VENDOR03                    = 0x2d\n\tAF_VENDOR04                    = 0x2f\n\tAF_VENDOR05                    = 0x31\n\tAF_VENDOR06                    = 0x33\n\tAF_VENDOR07                    = 0x35\n\tAF_VENDOR08                    = 0x37\n\tAF_VENDOR09                    = 0x39\n\tAF_VENDOR10                    = 0x3b\n\tAF_VENDOR11                    = 0x3d\n\tAF_VENDOR12                    = 0x3f\n\tAF_VENDOR13                    = 0x41\n\tAF_VENDOR14                    = 0x43\n\tAF_VENDOR15                    = 0x45\n\tAF_VENDOR16                    = 0x47\n\tAF_VENDOR17                    = 0x49\n\tAF_VENDOR18                    = 0x4b\n\tAF_VENDOR19                    = 0x4d\n\tAF_VENDOR20                    = 0x4f\n\tAF_VENDOR21                    = 0x51\n\tAF_VENDOR22                    = 0x53\n\tAF_VENDOR23                    = 0x55\n\tAF_VENDOR24                    = 0x57\n\tAF_VENDOR25                    = 0x59\n\tAF_VENDOR26                    = 0x5b\n\tAF_VENDOR27                    = 0x5d\n\tAF_VENDOR28                    = 0x5f\n\tAF_VENDOR29                    = 0x61\n\tAF_VENDOR30                    = 0x63\n\tAF_VENDOR31                    = 0x65\n\tAF_VENDOR32                    = 0x67\n\tAF_VENDOR33                    = 0x69\n\tAF_VENDOR34                    = 0x6b\n\tAF_VENDOR35                    = 0x6d\n\tAF_VENDOR36                    = 0x6f\n\tAF_VENDOR37                    = 0x71\n\tAF_VENDOR38                    = 0x73\n\tAF_VENDOR39                    = 0x75\n\tAF_VENDOR40                    = 0x77\n\tAF_VENDOR41                    = 0x79\n\tAF_VENDOR42                    = 0x7b\n\tAF_VENDOR43                    = 0x7d\n\tAF_VENDOR44                    = 0x7f\n\tAF_VENDOR45                    = 0x81\n\tAF_VENDOR46                    = 0x83\n\tAF_VENDOR47                    = 0x85\n\tALTWERASE                      = 0x200\n\tB0                             = 0x0\n\tB110                           = 0x6e\n\tB115200                        = 0x1c200\n\tB1200                          = 0x4b0\n\tB134                           = 0x86\n\tB14400                         = 0x3840\n\tB150                           = 0x96\n\tB1800                          = 0x708\n\tB19200                         = 0x4b00\n\tB200                           = 0xc8\n\tB230400                        = 0x38400\n\tB2400                          = 0x960\n\tB28800                         = 0x7080\n\tB300                           = 0x12c\n\tB38400                         = 0x9600\n\tB460800                        = 0x70800\n\tB4800                          = 0x12c0\n\tB50                            = 0x32\n\tB57600                         = 0xe100\n\tB600                           = 0x258\n\tB7200                          = 0x1c20\n\tB75                            = 0x4b\n\tB76800                         = 0x12c00\n\tB921600                        = 0xe1000\n\tB9600                          = 0x2580\n\tBIOCFEEDBACK                   = 0x8004427c\n\tBIOCFLUSH                      = 0x20004268\n\tBIOCGBLEN                      = 0x40044266\n\tBIOCGDIRECTION                 = 0x40044276\n\tBIOCGDLT                       = 0x4004426a\n\tBIOCGDLTLIST                   = 0xc0084279\n\tBIOCGETBUFMODE                 = 0x4004427d\n\tBIOCGETIF                      = 0x4020426b\n\tBIOCGETZMAX                    = 0x4004427f\n\tBIOCGHDRCMPLT                  = 0x40044274\n\tBIOCGRSIG                      = 0x40044272\n\tBIOCGRTIMEOUT                  = 0x4008426e\n\tBIOCGSEESENT                   = 0x40044276\n\tBIOCGSTATS                     = 0x4008426f\n\tBIOCGTSTAMP                    = 0x40044283\n\tBIOCIMMEDIATE                  = 0x80044270\n\tBIOCLOCK                       = 0x2000427a\n\tBIOCPROMISC                    = 0x20004269\n\tBIOCROTZBUF                    = 0x400c4280\n\tBIOCSBLEN                      = 0xc0044266\n\tBIOCSDIRECTION                 = 0x80044277\n\tBIOCSDLT                       = 0x80044278\n\tBIOCSETBUFMODE                 = 0x8004427e\n\tBIOCSETF                       = 0x80084267\n\tBIOCSETFNR                     = 0x80084282\n\tBIOCSETIF                      = 0x8020426c\n\tBIOCSETWF                      = 0x8008427b\n\tBIOCSETZBUF                    = 0x800c4281\n\tBIOCSHDRCMPLT                  = 0x80044275\n\tBIOCSRSIG                      = 0x80044273\n\tBIOCSRTIMEOUT                  = 0x8008426d\n\tBIOCSSEESENT                   = 0x80044277\n\tBIOCSTSTAMP                    = 0x80044284\n\tBIOCVERSION                    = 0x40044271\n\tBPF_A                          = 0x10\n\tBPF_ABS                        = 0x20\n\tBPF_ADD                        = 0x0\n\tBPF_ALIGNMENT                  = 0x4\n\tBPF_ALU                        = 0x4\n\tBPF_AND                        = 0x50\n\tBPF_B                          = 0x10\n\tBPF_BUFMODE_BUFFER             = 0x1\n\tBPF_BUFMODE_ZBUF               = 0x2\n\tBPF_DIV                        = 0x30\n\tBPF_H                          = 0x8\n\tBPF_IMM                        = 0x0\n\tBPF_IND                        = 0x40\n\tBPF_JA                         = 0x0\n\tBPF_JEQ                        = 0x10\n\tBPF_JGE                        = 0x30\n\tBPF_JGT                        = 0x20\n\tBPF_JMP                        = 0x5\n\tBPF_JSET                       = 0x40\n\tBPF_K                          = 0x0\n\tBPF_LD                         = 0x0\n\tBPF_LDX                        = 0x1\n\tBPF_LEN                        = 0x80\n\tBPF_LSH                        = 0x60\n\tBPF_MAJOR_VERSION              = 0x1\n\tBPF_MAXBUFSIZE                 = 0x80000\n\tBPF_MAXINSNS                   = 0x200\n\tBPF_MEM                        = 0x60\n\tBPF_MEMWORDS                   = 0x10\n\tBPF_MINBUFSIZE                 = 0x20\n\tBPF_MINOR_VERSION              = 0x1\n\tBPF_MISC                       = 0x7\n\tBPF_MOD                        = 0x90\n\tBPF_MSH                        = 0xa0\n\tBPF_MUL                        = 0x20\n\tBPF_NEG                        = 0x80\n\tBPF_OR                         = 0x40\n\tBPF_RELEASE                    = 0x30bb6\n\tBPF_RET                        = 0x6\n\tBPF_RSH                        = 0x70\n\tBPF_ST                         = 0x2\n\tBPF_STX                        = 0x3\n\tBPF_SUB                        = 0x10\n\tBPF_TAX                        = 0x0\n\tBPF_TXA                        = 0x80\n\tBPF_T_BINTIME                  = 0x2\n\tBPF_T_BINTIME_FAST             = 0x102\n\tBPF_T_BINTIME_MONOTONIC        = 0x202\n\tBPF_T_BINTIME_MONOTONIC_FAST   = 0x302\n\tBPF_T_FAST                     = 0x100\n\tBPF_T_FLAG_MASK                = 0x300\n\tBPF_T_FORMAT_MASK              = 0x3\n\tBPF_T_MICROTIME                = 0x0\n\tBPF_T_MICROTIME_FAST           = 0x100\n\tBPF_T_MICROTIME_MONOTONIC      = 0x200\n\tBPF_T_MICROTIME_MONOTONIC_FAST = 0x300\n\tBPF_T_MONOTONIC                = 0x200\n\tBPF_T_MONOTONIC_FAST           = 0x300\n\tBPF_T_NANOTIME                 = 0x1\n\tBPF_T_NANOTIME_FAST            = 0x101\n\tBPF_T_NANOTIME_MONOTONIC       = 0x201\n\tBPF_T_NANOTIME_MONOTONIC_FAST  = 0x301\n\tBPF_T_NONE                     = 0x3\n\tBPF_T_NORMAL                   = 0x0\n\tBPF_W                          = 0x0\n\tBPF_X                          = 0x8\n\tBPF_XOR                        = 0xa0\n\tBRKINT                         = 0x2\n\tCAP_ACCEPT                     = 0x200000020000000\n\tCAP_ACL_CHECK                  = 0x400000000010000\n\tCAP_ACL_DELETE                 = 0x400000000020000\n\tCAP_ACL_GET                    = 0x400000000040000\n\tCAP_ACL_SET                    = 0x400000000080000\n\tCAP_ALL0                       = 0x20007ffffffffff\n\tCAP_ALL1                       = 0x4000000001fffff\n\tCAP_BIND                       = 0x200000040000000\n\tCAP_BINDAT                     = 0x200008000000400\n\tCAP_CHFLAGSAT                  = 0x200000000001400\n\tCAP_CONNECT                    = 0x200000080000000\n\tCAP_CONNECTAT                  = 0x200010000000400\n\tCAP_CREATE                     = 0x200000000000040\n\tCAP_EVENT                      = 0x400000000000020\n\tCAP_EXTATTR_DELETE             = 0x400000000001000\n\tCAP_EXTATTR_GET                = 0x400000000002000\n\tCAP_EXTATTR_LIST               = 0x400000000004000\n\tCAP_EXTATTR_SET                = 0x400000000008000\n\tCAP_FCHDIR                     = 0x200000000000800\n\tCAP_FCHFLAGS                   = 0x200000000001000\n\tCAP_FCHMOD                     = 0x200000000002000\n\tCAP_FCHMODAT                   = 0x200000000002400\n\tCAP_FCHOWN                     = 0x200000000004000\n\tCAP_FCHOWNAT                   = 0x200000000004400\n\tCAP_FCNTL                      = 0x200000000008000\n\tCAP_FCNTL_ALL                  = 0x78\n\tCAP_FCNTL_GETFL                = 0x8\n\tCAP_FCNTL_GETOWN               = 0x20\n\tCAP_FCNTL_SETFL                = 0x10\n\tCAP_FCNTL_SETOWN               = 0x40\n\tCAP_FEXECVE                    = 0x200000000000080\n\tCAP_FLOCK                      = 0x200000000010000\n\tCAP_FPATHCONF                  = 0x200000000020000\n\tCAP_FSCK                       = 0x200000000040000\n\tCAP_FSTAT                      = 0x200000000080000\n\tCAP_FSTATAT                    = 0x200000000080400\n\tCAP_FSTATFS                    = 0x200000000100000\n\tCAP_FSYNC                      = 0x200000000000100\n\tCAP_FTRUNCATE                  = 0x200000000000200\n\tCAP_FUTIMES                    = 0x200000000200000\n\tCAP_FUTIMESAT                  = 0x200000000200400\n\tCAP_GETPEERNAME                = 0x200000100000000\n\tCAP_GETSOCKNAME                = 0x200000200000000\n\tCAP_GETSOCKOPT                 = 0x200000400000000\n\tCAP_IOCTL                      = 0x400000000000080\n\tCAP_IOCTLS_ALL                 = 0x7fffffff\n\tCAP_KQUEUE                     = 0x400000000100040\n\tCAP_KQUEUE_CHANGE              = 0x400000000100000\n\tCAP_KQUEUE_EVENT               = 0x400000000000040\n\tCAP_LINKAT_SOURCE              = 0x200020000000400\n\tCAP_LINKAT_TARGET              = 0x200000000400400\n\tCAP_LISTEN                     = 0x200000800000000\n\tCAP_LOOKUP                     = 0x200000000000400\n\tCAP_MAC_GET                    = 0x400000000000001\n\tCAP_MAC_SET                    = 0x400000000000002\n\tCAP_MKDIRAT                    = 0x200000000800400\n\tCAP_MKFIFOAT                   = 0x200000001000400\n\tCAP_MKNODAT                    = 0x200000002000400\n\tCAP_MMAP                       = 0x200000000000010\n\tCAP_MMAP_R                     = 0x20000000000001d\n\tCAP_MMAP_RW                    = 0x20000000000001f\n\tCAP_MMAP_RWX                   = 0x20000000000003f\n\tCAP_MMAP_RX                    = 0x20000000000003d\n\tCAP_MMAP_W                     = 0x20000000000001e\n\tCAP_MMAP_WX                    = 0x20000000000003e\n\tCAP_MMAP_X                     = 0x20000000000003c\n\tCAP_PDGETPID                   = 0x400000000000200\n\tCAP_PDKILL                     = 0x400000000000800\n\tCAP_PDWAIT                     = 0x400000000000400\n\tCAP_PEELOFF                    = 0x200001000000000\n\tCAP_POLL_EVENT                 = 0x400000000000020\n\tCAP_PREAD                      = 0x20000000000000d\n\tCAP_PWRITE                     = 0x20000000000000e\n\tCAP_READ                       = 0x200000000000001\n\tCAP_RECV                       = 0x200000000000001\n\tCAP_RENAMEAT_SOURCE            = 0x200000004000400\n\tCAP_RENAMEAT_TARGET            = 0x200040000000400\n\tCAP_RIGHTS_VERSION             = 0x0\n\tCAP_RIGHTS_VERSION_00          = 0x0\n\tCAP_SEEK                       = 0x20000000000000c\n\tCAP_SEEK_TELL                  = 0x200000000000004\n\tCAP_SEM_GETVALUE               = 0x400000000000004\n\tCAP_SEM_POST                   = 0x400000000000008\n\tCAP_SEM_WAIT                   = 0x400000000000010\n\tCAP_SEND                       = 0x200000000000002\n\tCAP_SETSOCKOPT                 = 0x200002000000000\n\tCAP_SHUTDOWN                   = 0x200004000000000\n\tCAP_SOCK_CLIENT                = 0x200007780000003\n\tCAP_SOCK_SERVER                = 0x200007f60000003\n\tCAP_SYMLINKAT                  = 0x200000008000400\n\tCAP_TTYHOOK                    = 0x400000000000100\n\tCAP_UNLINKAT                   = 0x200000010000400\n\tCAP_UNUSED0_44                 = 0x200080000000000\n\tCAP_UNUSED0_57                 = 0x300000000000000\n\tCAP_UNUSED1_22                 = 0x400000000200000\n\tCAP_UNUSED1_57                 = 0x500000000000000\n\tCAP_WRITE                      = 0x200000000000002\n\tCFLUSH                         = 0xf\n\tCLOCAL                         = 0x8000\n\tCLOCK_MONOTONIC                = 0x4\n\tCLOCK_MONOTONIC_FAST           = 0xc\n\tCLOCK_MONOTONIC_PRECISE        = 0xb\n\tCLOCK_PROCESS_CPUTIME_ID       = 0xf\n\tCLOCK_PROF                     = 0x2\n\tCLOCK_REALTIME                 = 0x0\n\tCLOCK_REALTIME_FAST            = 0xa\n\tCLOCK_REALTIME_PRECISE         = 0x9\n\tCLOCK_SECOND                   = 0xd\n\tCLOCK_THREAD_CPUTIME_ID        = 0xe\n\tCLOCK_UPTIME                   = 0x5\n\tCLOCK_UPTIME_FAST              = 0x8\n\tCLOCK_UPTIME_PRECISE           = 0x7\n\tCLOCK_VIRTUAL                  = 0x1\n\tCPUSTATES                      = 0x5\n\tCP_IDLE                        = 0x4\n\tCP_INTR                        = 0x3\n\tCP_NICE                        = 0x1\n\tCP_SYS                         = 0x2\n\tCP_USER                        = 0x0\n\tCREAD                          = 0x800\n\tCRTSCTS                        = 0x30000\n\tCS5                            = 0x0\n\tCS6                            = 0x100\n\tCS7                            = 0x200\n\tCS8                            = 0x300\n\tCSIZE                          = 0x300\n\tCSTART                         = 0x11\n\tCSTATUS                        = 0x14\n\tCSTOP                          = 0x13\n\tCSTOPB                         = 0x400\n\tCSUSP                          = 0x1a\n\tCTL_HW                         = 0x6\n\tCTL_KERN                       = 0x1\n\tCTL_MAXNAME                    = 0x18\n\tCTL_NET                        = 0x4\n\tDIOCGATTR                      = 0xc144648e\n\tDIOCGDELETE                    = 0x80106488\n\tDIOCGFLUSH                     = 0x20006487\n\tDIOCGFRONTSTUFF                = 0x40086486\n\tDIOCGFWHEADS                   = 0x40046483\n\tDIOCGFWSECTORS                 = 0x40046482\n\tDIOCGIDENT                     = 0x41006489\n\tDIOCGMEDIASIZE                 = 0x40086481\n\tDIOCGPHYSPATH                  = 0x4400648d\n\tDIOCGPROVIDERNAME              = 0x4400648a\n\tDIOCGSECTORSIZE                = 0x40046480\n\tDIOCGSTRIPEOFFSET              = 0x4008648c\n\tDIOCGSTRIPESIZE                = 0x4008648b\n\tDIOCSKERNELDUMP                = 0x804c6490\n\tDIOCSKERNELDUMP_FREEBSD11      = 0x80046485\n\tDIOCZONECMD                    = 0xc06c648f\n\tDLT_A429                       = 0xb8\n\tDLT_A653_ICM                   = 0xb9\n\tDLT_AIRONET_HEADER             = 0x78\n\tDLT_AOS                        = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394     = 0x8a\n\tDLT_ARCNET                     = 0x7\n\tDLT_ARCNET_LINUX               = 0x81\n\tDLT_ATM_CLIP                   = 0x13\n\tDLT_ATM_RFC1483                = 0xb\n\tDLT_AURORA                     = 0x7e\n\tDLT_AX25                       = 0x3\n\tDLT_AX25_KISS                  = 0xca\n\tDLT_BACNET_MS_TP               = 0xa5\n\tDLT_BLUETOOTH_BREDR_BB         = 0xff\n\tDLT_BLUETOOTH_HCI_H4           = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9\n\tDLT_BLUETOOTH_LE_LL            = 0xfb\n\tDLT_BLUETOOTH_LE_LL_WITH_PHDR  = 0x100\n\tDLT_BLUETOOTH_LINUX_MONITOR    = 0xfe\n\tDLT_CAN20B                     = 0xbe\n\tDLT_CAN_SOCKETCAN              = 0xe3\n\tDLT_CHAOS                      = 0x5\n\tDLT_CHDLC                      = 0x68\n\tDLT_CISCO_IOS                  = 0x76\n\tDLT_CLASS_NETBSD_RAWAF         = 0x2240000\n\tDLT_C_HDLC                     = 0x68\n\tDLT_C_HDLC_WITH_DIR            = 0xcd\n\tDLT_DBUS                       = 0xe7\n\tDLT_DECT                       = 0xdd\n\tDLT_DISPLAYPORT_AUX            = 0x113\n\tDLT_DOCSIS                     = 0x8f\n\tDLT_DOCSIS31_XRA31             = 0x111\n\tDLT_DVB_CI                     = 0xeb\n\tDLT_ECONET                     = 0x73\n\tDLT_EN10MB                     = 0x1\n\tDLT_EN3MB                      = 0x2\n\tDLT_ENC                        = 0x6d\n\tDLT_EPON                       = 0x103\n\tDLT_ERF                        = 0xc5\n\tDLT_ERF_ETH                    = 0xaf\n\tDLT_ERF_POS                    = 0xb0\n\tDLT_ETHERNET_MPACKET           = 0x112\n\tDLT_FC_2                       = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS     = 0xe1\n\tDLT_FDDI                       = 0xa\n\tDLT_FLEXRAY                    = 0xd2\n\tDLT_FRELAY                     = 0x6b\n\tDLT_FRELAY_WITH_DIR            = 0xce\n\tDLT_GCOM_SERIAL                = 0xad\n\tDLT_GCOM_T1E1                  = 0xac\n\tDLT_GPF_F                      = 0xab\n\tDLT_GPF_T                      = 0xaa\n\tDLT_GPRS_LLC                   = 0xa9\n\tDLT_GSMTAP_ABIS                = 0xda\n\tDLT_GSMTAP_UM                  = 0xd9\n\tDLT_IBM_SN                     = 0x92\n\tDLT_IBM_SP                     = 0x91\n\tDLT_IEEE802                    = 0x6\n\tDLT_IEEE802_11                 = 0x69\n\tDLT_IEEE802_11_RADIO           = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS       = 0xa3\n\tDLT_IEEE802_15_4               = 0xc3\n\tDLT_IEEE802_15_4_LINUX         = 0xbf\n\tDLT_IEEE802_15_4_NOFCS         = 0xe6\n\tDLT_IEEE802_15_4_NONASK_PHY    = 0xd7\n\tDLT_IEEE802_16_MAC_CPS         = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO   = 0xc1\n\tDLT_INFINIBAND                 = 0xf7\n\tDLT_IPFILTER                   = 0x74\n\tDLT_IPMB                       = 0xc7\n\tDLT_IPMB_LINUX                 = 0xd1\n\tDLT_IPMI_HPM_2                 = 0x104\n\tDLT_IPNET                      = 0xe2\n\tDLT_IPOIB                      = 0xf2\n\tDLT_IPV4                       = 0xe4\n\tDLT_IPV6                       = 0xe5\n\tDLT_IP_OVER_FC                 = 0x7a\n\tDLT_ISO_14443                  = 0x108\n\tDLT_JUNIPER_ATM1               = 0x89\n\tDLT_JUNIPER_ATM2               = 0x87\n\tDLT_JUNIPER_ATM_CEMIC          = 0xee\n\tDLT_JUNIPER_CHDLC              = 0xb5\n\tDLT_JUNIPER_ES                 = 0x84\n\tDLT_JUNIPER_ETHER              = 0xb2\n\tDLT_JUNIPER_FIBRECHANNEL       = 0xea\n\tDLT_JUNIPER_FRELAY             = 0xb4\n\tDLT_JUNIPER_GGSN               = 0x85\n\tDLT_JUNIPER_ISM                = 0xc2\n\tDLT_JUNIPER_MFR                = 0x86\n\tDLT_JUNIPER_MLFR               = 0x83\n\tDLT_JUNIPER_MLPPP              = 0x82\n\tDLT_JUNIPER_MONITOR            = 0xa4\n\tDLT_JUNIPER_PIC_PEER           = 0xae\n\tDLT_JUNIPER_PPP                = 0xb3\n\tDLT_JUNIPER_PPPOE              = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM          = 0xa8\n\tDLT_JUNIPER_SERVICES           = 0x88\n\tDLT_JUNIPER_SRX_E2E            = 0xe9\n\tDLT_JUNIPER_ST                 = 0xc8\n\tDLT_JUNIPER_VP                 = 0xb7\n\tDLT_JUNIPER_VS                 = 0xe8\n\tDLT_LAPB_WITH_DIR              = 0xcf\n\tDLT_LAPD                       = 0xcb\n\tDLT_LIN                        = 0xd4\n\tDLT_LINUX_EVDEV                = 0xd8\n\tDLT_LINUX_IRDA                 = 0x90\n\tDLT_LINUX_LAPD                 = 0xb1\n\tDLT_LINUX_PPP_WITHDIRECTION    = 0xa6\n\tDLT_LINUX_SLL                  = 0x71\n\tDLT_LOOP                       = 0x6c\n\tDLT_LORATAP                    = 0x10e\n\tDLT_LTALK                      = 0x72\n\tDLT_MATCHING_MAX               = 0x113\n\tDLT_MATCHING_MIN               = 0x68\n\tDLT_MFR                        = 0xb6\n\tDLT_MOST                       = 0xd3\n\tDLT_MPEG_2_TS                  = 0xf3\n\tDLT_MPLS                       = 0xdb\n\tDLT_MTP2                       = 0x8c\n\tDLT_MTP2_WITH_PHDR             = 0x8b\n\tDLT_MTP3                       = 0x8d\n\tDLT_MUX27010                   = 0xec\n\tDLT_NETANALYZER                = 0xf0\n\tDLT_NETANALYZER_TRANSPARENT    = 0xf1\n\tDLT_NETLINK                    = 0xfd\n\tDLT_NFC_LLCP                   = 0xf5\n\tDLT_NFLOG                      = 0xef\n\tDLT_NG40                       = 0xf4\n\tDLT_NORDIC_BLE                 = 0x110\n\tDLT_NULL                       = 0x0\n\tDLT_OPENFLOW                   = 0x10b\n\tDLT_PCI_EXP                    = 0x7d\n\tDLT_PFLOG                      = 0x75\n\tDLT_PFSYNC                     = 0x79\n\tDLT_PKTAP                      = 0x102\n\tDLT_PPI                        = 0xc0\n\tDLT_PPP                        = 0x9\n\tDLT_PPP_BSDOS                  = 0xe\n\tDLT_PPP_ETHER                  = 0x33\n\tDLT_PPP_PPPD                   = 0xa6\n\tDLT_PPP_SERIAL                 = 0x32\n\tDLT_PPP_WITH_DIR               = 0xcc\n\tDLT_PPP_WITH_DIRECTION         = 0xa6\n\tDLT_PRISM_HEADER               = 0x77\n\tDLT_PROFIBUS_DL                = 0x101\n\tDLT_PRONET                     = 0x4\n\tDLT_RAIF1                      = 0xc6\n\tDLT_RAW                        = 0xc\n\tDLT_RDS                        = 0x109\n\tDLT_REDBACK_SMARTEDGE          = 0x20\n\tDLT_RIO                        = 0x7c\n\tDLT_RTAC_SERIAL                = 0xfa\n\tDLT_SCCP                       = 0x8e\n\tDLT_SCTP                       = 0xf8\n\tDLT_SDLC                       = 0x10c\n\tDLT_SITA                       = 0xc4\n\tDLT_SLIP                       = 0x8\n\tDLT_SLIP_BSDOS                 = 0xd\n\tDLT_STANAG_5066_D_PDU          = 0xed\n\tDLT_SUNATM                     = 0x7b\n\tDLT_SYMANTEC_FIREWALL          = 0x63\n\tDLT_TI_LLN_SNIFFER             = 0x10d\n\tDLT_TZSP                       = 0x80\n\tDLT_USB                        = 0xba\n\tDLT_USBPCAP                    = 0xf9\n\tDLT_USB_DARWIN                 = 0x10a\n\tDLT_USB_FREEBSD                = 0xba\n\tDLT_USB_LINUX                  = 0xbd\n\tDLT_USB_LINUX_MMAPPED          = 0xdc\n\tDLT_USER0                      = 0x93\n\tDLT_USER1                      = 0x94\n\tDLT_USER10                     = 0x9d\n\tDLT_USER11                     = 0x9e\n\tDLT_USER12                     = 0x9f\n\tDLT_USER13                     = 0xa0\n\tDLT_USER14                     = 0xa1\n\tDLT_USER15                     = 0xa2\n\tDLT_USER2                      = 0x95\n\tDLT_USER3                      = 0x96\n\tDLT_USER4                      = 0x97\n\tDLT_USER5                      = 0x98\n\tDLT_USER6                      = 0x99\n\tDLT_USER7                      = 0x9a\n\tDLT_USER8                      = 0x9b\n\tDLT_USER9                      = 0x9c\n\tDLT_VSOCK                      = 0x10f\n\tDLT_WATTSTOPPER_DLM            = 0x107\n\tDLT_WIHART                     = 0xdf\n\tDLT_WIRESHARK_UPPER_PDU        = 0xfc\n\tDLT_X2E_SERIAL                 = 0xd5\n\tDLT_X2E_XORAYA                 = 0xd6\n\tDLT_ZWAVE_R1_R2                = 0x105\n\tDLT_ZWAVE_R3                   = 0x106\n\tDT_BLK                         = 0x6\n\tDT_CHR                         = 0x2\n\tDT_DIR                         = 0x4\n\tDT_FIFO                        = 0x1\n\tDT_LNK                         = 0xa\n\tDT_REG                         = 0x8\n\tDT_SOCK                        = 0xc\n\tDT_UNKNOWN                     = 0x0\n\tDT_WHT                         = 0xe\n\tECHO                           = 0x8\n\tECHOCTL                        = 0x40\n\tECHOE                          = 0x2\n\tECHOK                          = 0x4\n\tECHOKE                         = 0x1\n\tECHONL                         = 0x10\n\tECHOPRT                        = 0x20\n\tEVFILT_AIO                     = -0x3\n\tEVFILT_EMPTY                   = -0xd\n\tEVFILT_FS                      = -0x9\n\tEVFILT_LIO                     = -0xa\n\tEVFILT_PROC                    = -0x5\n\tEVFILT_PROCDESC                = -0x8\n\tEVFILT_READ                    = -0x1\n\tEVFILT_SENDFILE                = -0xc\n\tEVFILT_SIGNAL                  = -0x6\n\tEVFILT_SYSCOUNT                = 0xd\n\tEVFILT_TIMER                   = -0x7\n\tEVFILT_USER                    = -0xb\n\tEVFILT_VNODE                   = -0x4\n\tEVFILT_WRITE                   = -0x2\n\tEVNAMEMAP_NAME_SIZE            = 0x40\n\tEV_ADD                         = 0x1\n\tEV_CLEAR                       = 0x20\n\tEV_DELETE                      = 0x2\n\tEV_DISABLE                     = 0x8\n\tEV_DISPATCH                    = 0x80\n\tEV_DROP                        = 0x1000\n\tEV_ENABLE                      = 0x4\n\tEV_EOF                         = 0x8000\n\tEV_ERROR                       = 0x4000\n\tEV_FLAG1                       = 0x2000\n\tEV_FLAG2                       = 0x4000\n\tEV_FORCEONESHOT                = 0x100\n\tEV_ONESHOT                     = 0x10\n\tEV_RECEIPT                     = 0x40\n\tEV_SYSFLAGS                    = 0xf000\n\tEXTA                           = 0x4b00\n\tEXTATTR_MAXNAMELEN             = 0xff\n\tEXTATTR_NAMESPACE_EMPTY        = 0x0\n\tEXTATTR_NAMESPACE_SYSTEM       = 0x2\n\tEXTATTR_NAMESPACE_USER         = 0x1\n\tEXTB                           = 0x9600\n\tEXTPROC                        = 0x800\n\tFD_CLOEXEC                     = 0x1\n\tFD_SETSIZE                     = 0x400\n\tFLUSHO                         = 0x800000\n\tF_CANCEL                       = 0x5\n\tF_DUP2FD                       = 0xa\n\tF_DUP2FD_CLOEXEC               = 0x12\n\tF_DUPFD                        = 0x0\n\tF_DUPFD_CLOEXEC                = 0x11\n\tF_GETFD                        = 0x1\n\tF_GETFL                        = 0x3\n\tF_GETLK                        = 0xb\n\tF_GETOWN                       = 0x5\n\tF_OGETLK                       = 0x7\n\tF_OK                           = 0x0\n\tF_OSETLK                       = 0x8\n\tF_OSETLKW                      = 0x9\n\tF_RDAHEAD                      = 0x10\n\tF_RDLCK                        = 0x1\n\tF_READAHEAD                    = 0xf\n\tF_SETFD                        = 0x2\n\tF_SETFL                        = 0x4\n\tF_SETLK                        = 0xc\n\tF_SETLKW                       = 0xd\n\tF_SETLK_REMOTE                 = 0xe\n\tF_SETOWN                       = 0x6\n\tF_UNLCK                        = 0x2\n\tF_UNLCKSYS                     = 0x4\n\tF_WRLCK                        = 0x3\n\tHUPCL                          = 0x4000\n\tHW_MACHINE                     = 0x1\n\tICANON                         = 0x100\n\tICMP6_FILTER                   = 0x12\n\tICRNL                          = 0x100\n\tIEXTEN                         = 0x400\n\tIFAN_ARRIVAL                   = 0x0\n\tIFAN_DEPARTURE                 = 0x1\n\tIFCAP_WOL_MAGIC                = 0x2000\n\tIFF_ALLMULTI                   = 0x200\n\tIFF_ALTPHYS                    = 0x4000\n\tIFF_BROADCAST                  = 0x2\n\tIFF_CANTCHANGE                 = 0x218f52\n\tIFF_CANTCONFIG                 = 0x10000\n\tIFF_DEBUG                      = 0x4\n\tIFF_DRV_OACTIVE                = 0x400\n\tIFF_DRV_RUNNING                = 0x40\n\tIFF_DYING                      = 0x200000\n\tIFF_LINK0                      = 0x1000\n\tIFF_LINK1                      = 0x2000\n\tIFF_LINK2                      = 0x4000\n\tIFF_LOOPBACK                   = 0x8\n\tIFF_MONITOR                    = 0x40000\n\tIFF_MULTICAST                  = 0x8000\n\tIFF_NOARP                      = 0x80\n\tIFF_NOGROUP                    = 0x800000\n\tIFF_OACTIVE                    = 0x400\n\tIFF_POINTOPOINT                = 0x10\n\tIFF_PPROMISC                   = 0x20000\n\tIFF_PROMISC                    = 0x100\n\tIFF_RENAMING                   = 0x400000\n\tIFF_RUNNING                    = 0x40\n\tIFF_SIMPLEX                    = 0x800\n\tIFF_STATICARP                  = 0x80000\n\tIFF_UP                         = 0x1\n\tIFNAMSIZ                       = 0x10\n\tIFT_BRIDGE                     = 0xd1\n\tIFT_CARP                       = 0xf8\n\tIFT_IEEE1394                   = 0x90\n\tIFT_INFINIBAND                 = 0xc7\n\tIFT_L2VLAN                     = 0x87\n\tIFT_L3IPVLAN                   = 0x88\n\tIFT_PPP                        = 0x17\n\tIFT_PROPVIRTUAL                = 0x35\n\tIGNBRK                         = 0x1\n\tIGNCR                          = 0x80\n\tIGNPAR                         = 0x4\n\tIMAXBEL                        = 0x2000\n\tINLCR                          = 0x40\n\tINPCK                          = 0x10\n\tIN_CLASSA_HOST                 = 0xffffff\n\tIN_CLASSA_MAX                  = 0x80\n\tIN_CLASSA_NET                  = 0xff000000\n\tIN_CLASSA_NSHIFT               = 0x18\n\tIN_CLASSB_HOST                 = 0xffff\n\tIN_CLASSB_MAX                  = 0x10000\n\tIN_CLASSB_NET                  = 0xffff0000\n\tIN_CLASSB_NSHIFT               = 0x10\n\tIN_CLASSC_HOST                 = 0xff\n\tIN_CLASSC_NET                  = 0xffffff00\n\tIN_CLASSC_NSHIFT               = 0x8\n\tIN_CLASSD_HOST                 = 0xfffffff\n\tIN_CLASSD_NET                  = 0xf0000000\n\tIN_CLASSD_NSHIFT               = 0x1c\n\tIN_LOOPBACKNET                 = 0x7f\n\tIN_RFC3021_MASK                = 0xfffffffe\n\tIPPROTO_3PC                    = 0x22\n\tIPPROTO_ADFS                   = 0x44\n\tIPPROTO_AH                     = 0x33\n\tIPPROTO_AHIP                   = 0x3d\n\tIPPROTO_APES                   = 0x63\n\tIPPROTO_ARGUS                  = 0xd\n\tIPPROTO_AX25                   = 0x5d\n\tIPPROTO_BHA                    = 0x31\n\tIPPROTO_BLT                    = 0x1e\n\tIPPROTO_BRSATMON               = 0x4c\n\tIPPROTO_CARP                   = 0x70\n\tIPPROTO_CFTP                   = 0x3e\n\tIPPROTO_CHAOS                  = 0x10\n\tIPPROTO_CMTP                   = 0x26\n\tIPPROTO_CPHB                   = 0x49\n\tIPPROTO_CPNX                   = 0x48\n\tIPPROTO_DDP                    = 0x25\n\tIPPROTO_DGP                    = 0x56\n\tIPPROTO_DIVERT                 = 0x102\n\tIPPROTO_DONE                   = 0x101\n\tIPPROTO_DSTOPTS                = 0x3c\n\tIPPROTO_EGP                    = 0x8\n\tIPPROTO_EMCON                  = 0xe\n\tIPPROTO_ENCAP                  = 0x62\n\tIPPROTO_EON                    = 0x50\n\tIPPROTO_ESP                    = 0x32\n\tIPPROTO_ETHERIP                = 0x61\n\tIPPROTO_FRAGMENT               = 0x2c\n\tIPPROTO_GGP                    = 0x3\n\tIPPROTO_GMTP                   = 0x64\n\tIPPROTO_GRE                    = 0x2f\n\tIPPROTO_HELLO                  = 0x3f\n\tIPPROTO_HIP                    = 0x8b\n\tIPPROTO_HMP                    = 0x14\n\tIPPROTO_HOPOPTS                = 0x0\n\tIPPROTO_ICMP                   = 0x1\n\tIPPROTO_ICMPV6                 = 0x3a\n\tIPPROTO_IDP                    = 0x16\n\tIPPROTO_IDPR                   = 0x23\n\tIPPROTO_IDRP                   = 0x2d\n\tIPPROTO_IGMP                   = 0x2\n\tIPPROTO_IGP                    = 0x55\n\tIPPROTO_IGRP                   = 0x58\n\tIPPROTO_IL                     = 0x28\n\tIPPROTO_INLSP                  = 0x34\n\tIPPROTO_INP                    = 0x20\n\tIPPROTO_IP                     = 0x0\n\tIPPROTO_IPCOMP                 = 0x6c\n\tIPPROTO_IPCV                   = 0x47\n\tIPPROTO_IPEIP                  = 0x5e\n\tIPPROTO_IPIP                   = 0x4\n\tIPPROTO_IPPC                   = 0x43\n\tIPPROTO_IPV4                   = 0x4\n\tIPPROTO_IPV6                   = 0x29\n\tIPPROTO_IRTP                   = 0x1c\n\tIPPROTO_KRYPTOLAN              = 0x41\n\tIPPROTO_LARP                   = 0x5b\n\tIPPROTO_LEAF1                  = 0x19\n\tIPPROTO_LEAF2                  = 0x1a\n\tIPPROTO_MAX                    = 0x100\n\tIPPROTO_MEAS                   = 0x13\n\tIPPROTO_MH                     = 0x87\n\tIPPROTO_MHRP                   = 0x30\n\tIPPROTO_MICP                   = 0x5f\n\tIPPROTO_MOBILE                 = 0x37\n\tIPPROTO_MPLS                   = 0x89\n\tIPPROTO_MTP                    = 0x5c\n\tIPPROTO_MUX                    = 0x12\n\tIPPROTO_ND                     = 0x4d\n\tIPPROTO_NHRP                   = 0x36\n\tIPPROTO_NONE                   = 0x3b\n\tIPPROTO_NSP                    = 0x1f\n\tIPPROTO_NVPII                  = 0xb\n\tIPPROTO_OLD_DIVERT             = 0xfe\n\tIPPROTO_OSPFIGP                = 0x59\n\tIPPROTO_PFSYNC                 = 0xf0\n\tIPPROTO_PGM                    = 0x71\n\tIPPROTO_PIGP                   = 0x9\n\tIPPROTO_PIM                    = 0x67\n\tIPPROTO_PRM                    = 0x15\n\tIPPROTO_PUP                    = 0xc\n\tIPPROTO_PVP                    = 0x4b\n\tIPPROTO_RAW                    = 0xff\n\tIPPROTO_RCCMON                 = 0xa\n\tIPPROTO_RDP                    = 0x1b\n\tIPPROTO_RESERVED_253           = 0xfd\n\tIPPROTO_RESERVED_254           = 0xfe\n\tIPPROTO_ROUTING                = 0x2b\n\tIPPROTO_RSVP                   = 0x2e\n\tIPPROTO_RVD                    = 0x42\n\tIPPROTO_SATEXPAK               = 0x40\n\tIPPROTO_SATMON                 = 0x45\n\tIPPROTO_SCCSP                  = 0x60\n\tIPPROTO_SCTP                   = 0x84\n\tIPPROTO_SDRP                   = 0x2a\n\tIPPROTO_SEND                   = 0x103\n\tIPPROTO_SEP                    = 0x21\n\tIPPROTO_SHIM6                  = 0x8c\n\tIPPROTO_SKIP                   = 0x39\n\tIPPROTO_SPACER                 = 0x7fff\n\tIPPROTO_SRPC                   = 0x5a\n\tIPPROTO_ST                     = 0x7\n\tIPPROTO_SVMTP                  = 0x52\n\tIPPROTO_SWIPE                  = 0x35\n\tIPPROTO_TCF                    = 0x57\n\tIPPROTO_TCP                    = 0x6\n\tIPPROTO_TLSP                   = 0x38\n\tIPPROTO_TP                     = 0x1d\n\tIPPROTO_TPXX                   = 0x27\n\tIPPROTO_TRUNK1                 = 0x17\n\tIPPROTO_TRUNK2                 = 0x18\n\tIPPROTO_TTP                    = 0x54\n\tIPPROTO_UDP                    = 0x11\n\tIPPROTO_UDPLITE                = 0x88\n\tIPPROTO_VINES                  = 0x53\n\tIPPROTO_VISA                   = 0x46\n\tIPPROTO_VMTP                   = 0x51\n\tIPPROTO_WBEXPAK                = 0x4f\n\tIPPROTO_WBMON                  = 0x4e\n\tIPPROTO_WSN                    = 0x4a\n\tIPPROTO_XNET                   = 0xf\n\tIPPROTO_XTP                    = 0x24\n\tIPV6_AUTOFLOWLABEL             = 0x3b\n\tIPV6_BINDANY                   = 0x40\n\tIPV6_BINDMULTI                 = 0x41\n\tIPV6_BINDV6ONLY                = 0x1b\n\tIPV6_CHECKSUM                  = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS    = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP    = 0x1\n\tIPV6_DEFHLIM                   = 0x40\n\tIPV6_DONTFRAG                  = 0x3e\n\tIPV6_DSTOPTS                   = 0x32\n\tIPV6_FLOWID                    = 0x43\n\tIPV6_FLOWINFO_MASK             = 0xffffff0f\n\tIPV6_FLOWLABEL_LEN             = 0x14\n\tIPV6_FLOWLABEL_MASK            = 0xffff0f00\n\tIPV6_FLOWTYPE                  = 0x44\n\tIPV6_FRAGTTL                   = 0x78\n\tIPV6_FW_ADD                    = 0x1e\n\tIPV6_FW_DEL                    = 0x1f\n\tIPV6_FW_FLUSH                  = 0x20\n\tIPV6_FW_GET                    = 0x22\n\tIPV6_FW_ZERO                   = 0x21\n\tIPV6_HLIMDEC                   = 0x1\n\tIPV6_HOPLIMIT                  = 0x2f\n\tIPV6_HOPOPTS                   = 0x31\n\tIPV6_IPSEC_POLICY              = 0x1c\n\tIPV6_JOIN_GROUP                = 0xc\n\tIPV6_LEAVE_GROUP               = 0xd\n\tIPV6_MAXHLIM                   = 0xff\n\tIPV6_MAXOPTHDR                 = 0x800\n\tIPV6_MAXPACKET                 = 0xffff\n\tIPV6_MAX_GROUP_SRC_FILTER      = 0x200\n\tIPV6_MAX_MEMBERSHIPS           = 0xfff\n\tIPV6_MAX_SOCK_SRC_FILTER       = 0x80\n\tIPV6_MMTU                      = 0x500\n\tIPV6_MSFILTER                  = 0x4a\n\tIPV6_MULTICAST_HOPS            = 0xa\n\tIPV6_MULTICAST_IF              = 0x9\n\tIPV6_MULTICAST_LOOP            = 0xb\n\tIPV6_NEXTHOP                   = 0x30\n\tIPV6_ORIGDSTADDR               = 0x48\n\tIPV6_PATHMTU                   = 0x2c\n\tIPV6_PKTINFO                   = 0x2e\n\tIPV6_PORTRANGE                 = 0xe\n\tIPV6_PORTRANGE_DEFAULT         = 0x0\n\tIPV6_PORTRANGE_HIGH            = 0x1\n\tIPV6_PORTRANGE_LOW             = 0x2\n\tIPV6_PREFER_TEMPADDR           = 0x3f\n\tIPV6_RECVDSTOPTS               = 0x28\n\tIPV6_RECVFLOWID                = 0x46\n\tIPV6_RECVHOPLIMIT              = 0x25\n\tIPV6_RECVHOPOPTS               = 0x27\n\tIPV6_RECVORIGDSTADDR           = 0x48\n\tIPV6_RECVPATHMTU               = 0x2b\n\tIPV6_RECVPKTINFO               = 0x24\n\tIPV6_RECVRSSBUCKETID           = 0x47\n\tIPV6_RECVRTHDR                 = 0x26\n\tIPV6_RECVTCLASS                = 0x39\n\tIPV6_RSSBUCKETID               = 0x45\n\tIPV6_RSS_LISTEN_BUCKET         = 0x42\n\tIPV6_RTHDR                     = 0x33\n\tIPV6_RTHDRDSTOPTS              = 0x23\n\tIPV6_RTHDR_LOOSE               = 0x0\n\tIPV6_RTHDR_STRICT              = 0x1\n\tIPV6_RTHDR_TYPE_0              = 0x0\n\tIPV6_SOCKOPT_RESERVED1         = 0x3\n\tIPV6_TCLASS                    = 0x3d\n\tIPV6_UNICAST_HOPS              = 0x4\n\tIPV6_USE_MIN_MTU               = 0x2a\n\tIPV6_V6ONLY                    = 0x1b\n\tIPV6_VERSION                   = 0x60\n\tIPV6_VERSION_MASK              = 0xf0\n\tIP_ADD_MEMBERSHIP              = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP       = 0x46\n\tIP_BINDANY                     = 0x18\n\tIP_BINDMULTI                   = 0x19\n\tIP_BLOCK_SOURCE                = 0x48\n\tIP_DEFAULT_MULTICAST_LOOP      = 0x1\n\tIP_DEFAULT_MULTICAST_TTL       = 0x1\n\tIP_DF                          = 0x4000\n\tIP_DONTFRAG                    = 0x43\n\tIP_DROP_MEMBERSHIP             = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP      = 0x47\n\tIP_DUMMYNET3                   = 0x31\n\tIP_DUMMYNET_CONFIGURE          = 0x3c\n\tIP_DUMMYNET_DEL                = 0x3d\n\tIP_DUMMYNET_FLUSH              = 0x3e\n\tIP_DUMMYNET_GET                = 0x40\n\tIP_FLOWID                      = 0x5a\n\tIP_FLOWTYPE                    = 0x5b\n\tIP_FW3                         = 0x30\n\tIP_FW_ADD                      = 0x32\n\tIP_FW_DEL                      = 0x33\n\tIP_FW_FLUSH                    = 0x34\n\tIP_FW_GET                      = 0x36\n\tIP_FW_NAT_CFG                  = 0x38\n\tIP_FW_NAT_DEL                  = 0x39\n\tIP_FW_NAT_GET_CONFIG           = 0x3a\n\tIP_FW_NAT_GET_LOG              = 0x3b\n\tIP_FW_RESETLOG                 = 0x37\n\tIP_FW_TABLE_ADD                = 0x28\n\tIP_FW_TABLE_DEL                = 0x29\n\tIP_FW_TABLE_FLUSH              = 0x2a\n\tIP_FW_TABLE_GETSIZE            = 0x2b\n\tIP_FW_TABLE_LIST               = 0x2c\n\tIP_FW_ZERO                     = 0x35\n\tIP_HDRINCL                     = 0x2\n\tIP_IPSEC_POLICY                = 0x15\n\tIP_MAXPACKET                   = 0xffff\n\tIP_MAX_GROUP_SRC_FILTER        = 0x200\n\tIP_MAX_MEMBERSHIPS             = 0xfff\n\tIP_MAX_SOCK_MUTE_FILTER        = 0x80\n\tIP_MAX_SOCK_SRC_FILTER         = 0x80\n\tIP_MF                          = 0x2000\n\tIP_MINTTL                      = 0x42\n\tIP_MSFILTER                    = 0x4a\n\tIP_MSS                         = 0x240\n\tIP_MULTICAST_IF                = 0x9\n\tIP_MULTICAST_LOOP              = 0xb\n\tIP_MULTICAST_TTL               = 0xa\n\tIP_MULTICAST_VIF               = 0xe\n\tIP_OFFMASK                     = 0x1fff\n\tIP_ONESBCAST                   = 0x17\n\tIP_OPTIONS                     = 0x1\n\tIP_ORIGDSTADDR                 = 0x1b\n\tIP_PORTRANGE                   = 0x13\n\tIP_PORTRANGE_DEFAULT           = 0x0\n\tIP_PORTRANGE_HIGH              = 0x1\n\tIP_PORTRANGE_LOW               = 0x2\n\tIP_RECVDSTADDR                 = 0x7\n\tIP_RECVFLOWID                  = 0x5d\n\tIP_RECVIF                      = 0x14\n\tIP_RECVOPTS                    = 0x5\n\tIP_RECVORIGDSTADDR             = 0x1b\n\tIP_RECVRETOPTS                 = 0x6\n\tIP_RECVRSSBUCKETID             = 0x5e\n\tIP_RECVTOS                     = 0x44\n\tIP_RECVTTL                     = 0x41\n\tIP_RETOPTS                     = 0x8\n\tIP_RF                          = 0x8000\n\tIP_RSSBUCKETID                 = 0x5c\n\tIP_RSS_LISTEN_BUCKET           = 0x1a\n\tIP_RSVP_OFF                    = 0x10\n\tIP_RSVP_ON                     = 0xf\n\tIP_RSVP_VIF_OFF                = 0x12\n\tIP_RSVP_VIF_ON                 = 0x11\n\tIP_SENDSRCADDR                 = 0x7\n\tIP_TOS                         = 0x3\n\tIP_TTL                         = 0x4\n\tIP_UNBLOCK_SOURCE              = 0x49\n\tISIG                           = 0x80\n\tISTRIP                         = 0x20\n\tIXANY                          = 0x800\n\tIXOFF                          = 0x400\n\tIXON                           = 0x200\n\tKERN_HOSTNAME                  = 0xa\n\tKERN_OSRELEASE                 = 0x2\n\tKERN_OSTYPE                    = 0x1\n\tKERN_VERSION                   = 0x4\n\tLOCK_EX                        = 0x2\n\tLOCK_NB                        = 0x4\n\tLOCK_SH                        = 0x1\n\tLOCK_UN                        = 0x8\n\tMADV_AUTOSYNC                  = 0x7\n\tMADV_CORE                      = 0x9\n\tMADV_DONTNEED                  = 0x4\n\tMADV_FREE                      = 0x5\n\tMADV_NOCORE                    = 0x8\n\tMADV_NORMAL                    = 0x0\n\tMADV_NOSYNC                    = 0x6\n\tMADV_PROTECT                   = 0xa\n\tMADV_RANDOM                    = 0x1\n\tMADV_SEQUENTIAL                = 0x2\n\tMADV_WILLNEED                  = 0x3\n\tMAP_ALIGNED_SUPER              = 0x1000000\n\tMAP_ALIGNMENT_MASK             = -0x1000000\n\tMAP_ALIGNMENT_SHIFT            = 0x18\n\tMAP_ANON                       = 0x1000\n\tMAP_ANONYMOUS                  = 0x1000\n\tMAP_COPY                       = 0x2\n\tMAP_EXCL                       = 0x4000\n\tMAP_FILE                       = 0x0\n\tMAP_FIXED                      = 0x10\n\tMAP_GUARD                      = 0x2000\n\tMAP_HASSEMAPHORE               = 0x200\n\tMAP_NOCORE                     = 0x20000\n\tMAP_NOSYNC                     = 0x800\n\tMAP_PREFAULT_READ              = 0x40000\n\tMAP_PRIVATE                    = 0x2\n\tMAP_RESERVED0020               = 0x20\n\tMAP_RESERVED0040               = 0x40\n\tMAP_RESERVED0080               = 0x80\n\tMAP_RESERVED0100               = 0x100\n\tMAP_SHARED                     = 0x1\n\tMAP_STACK                      = 0x400\n\tMCAST_BLOCK_SOURCE             = 0x54\n\tMCAST_EXCLUDE                  = 0x2\n\tMCAST_INCLUDE                  = 0x1\n\tMCAST_JOIN_GROUP               = 0x50\n\tMCAST_JOIN_SOURCE_GROUP        = 0x52\n\tMCAST_LEAVE_GROUP              = 0x51\n\tMCAST_LEAVE_SOURCE_GROUP       = 0x53\n\tMCAST_UNBLOCK_SOURCE           = 0x55\n\tMCAST_UNDEFINED                = 0x0\n\tMCL_CURRENT                    = 0x1\n\tMCL_FUTURE                     = 0x2\n\tMNT_ACLS                       = 0x8000000\n\tMNT_ASYNC                      = 0x40\n\tMNT_AUTOMOUNTED                = 0x200000000\n\tMNT_BYFSID                     = 0x8000000\n\tMNT_CMDFLAGS                   = 0xd0f0000\n\tMNT_DEFEXPORTED                = 0x200\n\tMNT_DELEXPORT                  = 0x20000\n\tMNT_EXKERB                     = 0x800\n\tMNT_EXPORTANON                 = 0x400\n\tMNT_EXPORTED                   = 0x100\n\tMNT_EXPUBLIC                   = 0x20000000\n\tMNT_EXRDONLY                   = 0x80\n\tMNT_FORCE                      = 0x80000\n\tMNT_GJOURNAL                   = 0x2000000\n\tMNT_IGNORE                     = 0x800000\n\tMNT_LAZY                       = 0x3\n\tMNT_LOCAL                      = 0x1000\n\tMNT_MULTILABEL                 = 0x4000000\n\tMNT_NFS4ACLS                   = 0x10\n\tMNT_NOATIME                    = 0x10000000\n\tMNT_NOCLUSTERR                 = 0x40000000\n\tMNT_NOCLUSTERW                 = 0x80000000\n\tMNT_NOEXEC                     = 0x4\n\tMNT_NONBUSY                    = 0x4000000\n\tMNT_NOSUID                     = 0x8\n\tMNT_NOSYMFOLLOW                = 0x400000\n\tMNT_NOWAIT                     = 0x2\n\tMNT_QUOTA                      = 0x2000\n\tMNT_RDONLY                     = 0x1\n\tMNT_RELOAD                     = 0x40000\n\tMNT_ROOTFS                     = 0x4000\n\tMNT_SNAPSHOT                   = 0x1000000\n\tMNT_SOFTDEP                    = 0x200000\n\tMNT_SUIDDIR                    = 0x100000\n\tMNT_SUJ                        = 0x100000000\n\tMNT_SUSPEND                    = 0x4\n\tMNT_SYNCHRONOUS                = 0x2\n\tMNT_UNION                      = 0x20\n\tMNT_UNTRUSTED                  = 0x800000000\n\tMNT_UPDATE                     = 0x10000\n\tMNT_UPDATEMASK                 = 0xad8d0807e\n\tMNT_USER                       = 0x8000\n\tMNT_VERIFIED                   = 0x400000000\n\tMNT_VISFLAGMASK                = 0xffef0ffff\n\tMNT_WAIT                       = 0x1\n\tMSG_CMSG_CLOEXEC               = 0x40000\n\tMSG_COMPAT                     = 0x8000\n\tMSG_CTRUNC                     = 0x20\n\tMSG_DONTROUTE                  = 0x4\n\tMSG_DONTWAIT                   = 0x80\n\tMSG_EOF                        = 0x100\n\tMSG_EOR                        = 0x8\n\tMSG_NBIO                       = 0x4000\n\tMSG_NOSIGNAL                   = 0x20000\n\tMSG_NOTIFICATION               = 0x2000\n\tMSG_OOB                        = 0x1\n\tMSG_PEEK                       = 0x2\n\tMSG_TRUNC                      = 0x10\n\tMSG_WAITALL                    = 0x40\n\tMSG_WAITFORONE                 = 0x80000\n\tMS_ASYNC                       = 0x1\n\tMS_INVALIDATE                  = 0x2\n\tMS_SYNC                        = 0x0\n\tNAME_MAX                       = 0xff\n\tNET_RT_DUMP                    = 0x1\n\tNET_RT_FLAGS                   = 0x2\n\tNET_RT_IFLIST                  = 0x3\n\tNET_RT_IFLISTL                 = 0x5\n\tNET_RT_IFMALIST                = 0x4\n\tNFDBITS                        = 0x20\n\tNOFLSH                         = 0x80000000\n\tNOKERNINFO                     = 0x2000000\n\tNOTE_ABSTIME                   = 0x10\n\tNOTE_ATTRIB                    = 0x8\n\tNOTE_CHILD                     = 0x4\n\tNOTE_CLOSE                     = 0x100\n\tNOTE_CLOSE_WRITE               = 0x200\n\tNOTE_DELETE                    = 0x1\n\tNOTE_EXEC                      = 0x20000000\n\tNOTE_EXIT                      = 0x80000000\n\tNOTE_EXTEND                    = 0x4\n\tNOTE_FFAND                     = 0x40000000\n\tNOTE_FFCOPY                    = 0xc0000000\n\tNOTE_FFCTRLMASK                = 0xc0000000\n\tNOTE_FFLAGSMASK                = 0xffffff\n\tNOTE_FFNOP                     = 0x0\n\tNOTE_FFOR                      = 0x80000000\n\tNOTE_FILE_POLL                 = 0x2\n\tNOTE_FORK                      = 0x40000000\n\tNOTE_LINK                      = 0x10\n\tNOTE_LOWAT                     = 0x1\n\tNOTE_MSECONDS                  = 0x2\n\tNOTE_NSECONDS                  = 0x8\n\tNOTE_OPEN                      = 0x80\n\tNOTE_PCTRLMASK                 = 0xf0000000\n\tNOTE_PDATAMASK                 = 0xfffff\n\tNOTE_READ                      = 0x400\n\tNOTE_RENAME                    = 0x20\n\tNOTE_REVOKE                    = 0x40\n\tNOTE_SECONDS                   = 0x1\n\tNOTE_TRACK                     = 0x1\n\tNOTE_TRACKERR                  = 0x2\n\tNOTE_TRIGGER                   = 0x1000000\n\tNOTE_USECONDS                  = 0x4\n\tNOTE_WRITE                     = 0x2\n\tOCRNL                          = 0x10\n\tONLCR                          = 0x2\n\tONLRET                         = 0x40\n\tONOCR                          = 0x20\n\tONOEOT                         = 0x8\n\tOPOST                          = 0x1\n\tOXTABS                         = 0x4\n\tO_ACCMODE                      = 0x3\n\tO_APPEND                       = 0x8\n\tO_ASYNC                        = 0x40\n\tO_CLOEXEC                      = 0x100000\n\tO_CREAT                        = 0x200\n\tO_DIRECT                       = 0x10000\n\tO_DIRECTORY                    = 0x20000\n\tO_EXCL                         = 0x800\n\tO_EXEC                         = 0x40000\n\tO_EXLOCK                       = 0x20\n\tO_FSYNC                        = 0x80\n\tO_NDELAY                       = 0x4\n\tO_NOCTTY                       = 0x8000\n\tO_NOFOLLOW                     = 0x100\n\tO_NONBLOCK                     = 0x4\n\tO_RDONLY                       = 0x0\n\tO_RDWR                         = 0x2\n\tO_SHLOCK                       = 0x10\n\tO_SYNC                         = 0x80\n\tO_TRUNC                        = 0x400\n\tO_TTY_INIT                     = 0x80000\n\tO_VERIFY                       = 0x200000\n\tO_WRONLY                       = 0x1\n\tPARENB                         = 0x1000\n\tPARMRK                         = 0x8\n\tPARODD                         = 0x2000\n\tPENDIN                         = 0x20000000\n\tPRIO_PGRP                      = 0x1\n\tPRIO_PROCESS                   = 0x0\n\tPRIO_USER                      = 0x2\n\tPROT_EXEC                      = 0x4\n\tPROT_NONE                      = 0x0\n\tPROT_READ                      = 0x1\n\tPROT_WRITE                     = 0x2\n\tRLIMIT_AS                      = 0xa\n\tRLIMIT_CORE                    = 0x4\n\tRLIMIT_CPU                     = 0x0\n\tRLIMIT_DATA                    = 0x2\n\tRLIMIT_FSIZE                   = 0x1\n\tRLIMIT_MEMLOCK                 = 0x6\n\tRLIMIT_NOFILE                  = 0x8\n\tRLIMIT_NPROC                   = 0x7\n\tRLIMIT_RSS                     = 0x5\n\tRLIMIT_STACK                   = 0x3\n\tRLIM_INFINITY                  = 0x7fffffffffffffff\n\tRTAX_AUTHOR                    = 0x6\n\tRTAX_BRD                       = 0x7\n\tRTAX_DST                       = 0x0\n\tRTAX_GATEWAY                   = 0x1\n\tRTAX_GENMASK                   = 0x3\n\tRTAX_IFA                       = 0x5\n\tRTAX_IFP                       = 0x4\n\tRTAX_MAX                       = 0x8\n\tRTAX_NETMASK                   = 0x2\n\tRTA_AUTHOR                     = 0x40\n\tRTA_BRD                        = 0x80\n\tRTA_DST                        = 0x1\n\tRTA_GATEWAY                    = 0x2\n\tRTA_GENMASK                    = 0x8\n\tRTA_IFA                        = 0x20\n\tRTA_IFP                        = 0x10\n\tRTA_NETMASK                    = 0x4\n\tRTF_BLACKHOLE                  = 0x1000\n\tRTF_BROADCAST                  = 0x400000\n\tRTF_DONE                       = 0x40\n\tRTF_DYNAMIC                    = 0x10\n\tRTF_FIXEDMTU                   = 0x80000\n\tRTF_FMASK                      = 0x1004d808\n\tRTF_GATEWAY                    = 0x2\n\tRTF_GWFLAG_COMPAT              = 0x80000000\n\tRTF_HOST                       = 0x4\n\tRTF_LLDATA                     = 0x400\n\tRTF_LLINFO                     = 0x400\n\tRTF_LOCAL                      = 0x200000\n\tRTF_MODIFIED                   = 0x20\n\tRTF_MULTICAST                  = 0x800000\n\tRTF_PINNED                     = 0x100000\n\tRTF_PROTO1                     = 0x8000\n\tRTF_PROTO2                     = 0x4000\n\tRTF_PROTO3                     = 0x40000\n\tRTF_REJECT                     = 0x8\n\tRTF_RNH_LOCKED                 = 0x40000000\n\tRTF_STATIC                     = 0x800\n\tRTF_STICKY                     = 0x10000000\n\tRTF_UP                         = 0x1\n\tRTF_XRESOLVE                   = 0x200\n\tRTM_ADD                        = 0x1\n\tRTM_CHANGE                     = 0x3\n\tRTM_DELADDR                    = 0xd\n\tRTM_DELETE                     = 0x2\n\tRTM_DELMADDR                   = 0x10\n\tRTM_GET                        = 0x4\n\tRTM_IEEE80211                  = 0x12\n\tRTM_IFANNOUNCE                 = 0x11\n\tRTM_IFINFO                     = 0xe\n\tRTM_LOCK                       = 0x8\n\tRTM_LOSING                     = 0x5\n\tRTM_MISS                       = 0x7\n\tRTM_NEWADDR                    = 0xc\n\tRTM_NEWMADDR                   = 0xf\n\tRTM_REDIRECT                   = 0x6\n\tRTM_RESOLVE                    = 0xb\n\tRTM_RTTUNIT                    = 0xf4240\n\tRTM_VERSION                    = 0x5\n\tRTV_EXPIRE                     = 0x4\n\tRTV_HOPCOUNT                   = 0x2\n\tRTV_MTU                        = 0x1\n\tRTV_RPIPE                      = 0x8\n\tRTV_RTT                        = 0x40\n\tRTV_RTTVAR                     = 0x80\n\tRTV_SPIPE                      = 0x10\n\tRTV_SSTHRESH                   = 0x20\n\tRTV_WEIGHT                     = 0x100\n\tRT_ALL_FIBS                    = -0x1\n\tRT_BLACKHOLE                   = 0x40\n\tRT_DEFAULT_FIB                 = 0x0\n\tRT_HAS_GW                      = 0x80\n\tRT_HAS_HEADER                  = 0x10\n\tRT_HAS_HEADER_BIT              = 0x4\n\tRT_L2_ME                       = 0x4\n\tRT_L2_ME_BIT                   = 0x2\n\tRT_LLE_CACHE                   = 0x100\n\tRT_MAY_LOOP                    = 0x8\n\tRT_MAY_LOOP_BIT                = 0x3\n\tRT_REJECT                      = 0x20\n\tRUSAGE_CHILDREN                = -0x1\n\tRUSAGE_SELF                    = 0x0\n\tRUSAGE_THREAD                  = 0x1\n\tSCM_BINTIME                    = 0x4\n\tSCM_CREDS                      = 0x3\n\tSCM_MONOTONIC                  = 0x6\n\tSCM_REALTIME                   = 0x5\n\tSCM_RIGHTS                     = 0x1\n\tSCM_TIMESTAMP                  = 0x2\n\tSCM_TIME_INFO                  = 0x7\n\tSHUT_RD                        = 0x0\n\tSHUT_RDWR                      = 0x2\n\tSHUT_WR                        = 0x1\n\tSIOCADDMULTI                   = 0x80206931\n\tSIOCAIFADDR                    = 0x8040691a\n\tSIOCAIFGROUP                   = 0x80246987\n\tSIOCATMARK                     = 0x40047307\n\tSIOCDELMULTI                   = 0x80206932\n\tSIOCDIFADDR                    = 0x80206919\n\tSIOCDIFGROUP                   = 0x80246989\n\tSIOCDIFPHYADDR                 = 0x80206949\n\tSIOCGDRVSPEC                   = 0xc01c697b\n\tSIOCGETSGCNT                   = 0xc0147210\n\tSIOCGETVIFCNT                  = 0xc014720f\n\tSIOCGHIWAT                     = 0x40047301\n\tSIOCGHWADDR                    = 0xc020693e\n\tSIOCGI2C                       = 0xc020693d\n\tSIOCGIFADDR                    = 0xc0206921\n\tSIOCGIFBRDADDR                 = 0xc0206923\n\tSIOCGIFCAP                     = 0xc020691f\n\tSIOCGIFCONF                    = 0xc0086924\n\tSIOCGIFDESCR                   = 0xc020692a\n\tSIOCGIFDSTADDR                 = 0xc0206922\n\tSIOCGIFFIB                     = 0xc020695c\n\tSIOCGIFFLAGS                   = 0xc0206911\n\tSIOCGIFGENERIC                 = 0xc020693a\n\tSIOCGIFGMEMB                   = 0xc024698a\n\tSIOCGIFGROUP                   = 0xc0246988\n\tSIOCGIFINDEX                   = 0xc0206920\n\tSIOCGIFMAC                     = 0xc0206926\n\tSIOCGIFMEDIA                   = 0xc0286938\n\tSIOCGIFMETRIC                  = 0xc0206917\n\tSIOCGIFMTU                     = 0xc0206933\n\tSIOCGIFNETMASK                 = 0xc0206925\n\tSIOCGIFPDSTADDR                = 0xc0206948\n\tSIOCGIFPHYS                    = 0xc0206935\n\tSIOCGIFPSRCADDR                = 0xc0206947\n\tSIOCGIFRSSHASH                 = 0xc0186997\n\tSIOCGIFRSSKEY                  = 0xc0946996\n\tSIOCGIFSTATUS                  = 0xc331693b\n\tSIOCGIFXMEDIA                  = 0xc028698b\n\tSIOCGLANPCP                    = 0xc0206998\n\tSIOCGLOWAT                     = 0x40047303\n\tSIOCGPGRP                      = 0x40047309\n\tSIOCGPRIVATE_0                 = 0xc0206950\n\tSIOCGPRIVATE_1                 = 0xc0206951\n\tSIOCGTUNFIB                    = 0xc020695e\n\tSIOCIFCREATE                   = 0xc020697a\n\tSIOCIFCREATE2                  = 0xc020697c\n\tSIOCIFDESTROY                  = 0x80206979\n\tSIOCIFGCLONERS                 = 0xc00c6978\n\tSIOCSDRVSPEC                   = 0x801c697b\n\tSIOCSHIWAT                     = 0x80047300\n\tSIOCSIFADDR                    = 0x8020690c\n\tSIOCSIFBRDADDR                 = 0x80206913\n\tSIOCSIFCAP                     = 0x8020691e\n\tSIOCSIFDESCR                   = 0x80206929\n\tSIOCSIFDSTADDR                 = 0x8020690e\n\tSIOCSIFFIB                     = 0x8020695d\n\tSIOCSIFFLAGS                   = 0x80206910\n\tSIOCSIFGENERIC                 = 0x80206939\n\tSIOCSIFLLADDR                  = 0x8020693c\n\tSIOCSIFMAC                     = 0x80206927\n\tSIOCSIFMEDIA                   = 0xc0206937\n\tSIOCSIFMETRIC                  = 0x80206918\n\tSIOCSIFMTU                     = 0x80206934\n\tSIOCSIFNAME                    = 0x80206928\n\tSIOCSIFNETMASK                 = 0x80206916\n\tSIOCSIFPHYADDR                 = 0x80406946\n\tSIOCSIFPHYS                    = 0x80206936\n\tSIOCSIFRVNET                   = 0xc020695b\n\tSIOCSIFVNET                    = 0xc020695a\n\tSIOCSLANPCP                    = 0x80206999\n\tSIOCSLOWAT                     = 0x80047302\n\tSIOCSPGRP                      = 0x80047308\n\tSIOCSTUNFIB                    = 0x8020695f\n\tSOCK_CLOEXEC                   = 0x10000000\n\tSOCK_DGRAM                     = 0x2\n\tSOCK_MAXADDRLEN                = 0xff\n\tSOCK_NONBLOCK                  = 0x20000000\n\tSOCK_RAW                       = 0x3\n\tSOCK_RDM                       = 0x4\n\tSOCK_SEQPACKET                 = 0x5\n\tSOCK_STREAM                    = 0x1\n\tSOL_SOCKET                     = 0xffff\n\tSOMAXCONN                      = 0x80\n\tSO_ACCEPTCONN                  = 0x2\n\tSO_ACCEPTFILTER                = 0x1000\n\tSO_BINTIME                     = 0x2000\n\tSO_BROADCAST                   = 0x20\n\tSO_DEBUG                       = 0x1\n\tSO_DOMAIN                      = 0x1019\n\tSO_DONTROUTE                   = 0x10\n\tSO_ERROR                       = 0x1007\n\tSO_KEEPALIVE                   = 0x8\n\tSO_LABEL                       = 0x1009\n\tSO_LINGER                      = 0x80\n\tSO_LISTENINCQLEN               = 0x1013\n\tSO_LISTENQLEN                  = 0x1012\n\tSO_LISTENQLIMIT                = 0x1011\n\tSO_MAX_PACING_RATE             = 0x1018\n\tSO_NOSIGPIPE                   = 0x800\n\tSO_NO_DDP                      = 0x8000\n\tSO_NO_OFFLOAD                  = 0x4000\n\tSO_OOBINLINE                   = 0x100\n\tSO_PEERLABEL                   = 0x1010\n\tSO_PROTOCOL                    = 0x1016\n\tSO_PROTOTYPE                   = 0x1016\n\tSO_RCVBUF                      = 0x1002\n\tSO_RCVLOWAT                    = 0x1004\n\tSO_RCVTIMEO                    = 0x1006\n\tSO_REUSEADDR                   = 0x4\n\tSO_REUSEPORT                   = 0x200\n\tSO_REUSEPORT_LB                = 0x10000\n\tSO_SETFIB                      = 0x1014\n\tSO_SNDBUF                      = 0x1001\n\tSO_SNDLOWAT                    = 0x1003\n\tSO_SNDTIMEO                    = 0x1005\n\tSO_TIMESTAMP                   = 0x400\n\tSO_TS_BINTIME                  = 0x1\n\tSO_TS_CLOCK                    = 0x1017\n\tSO_TS_CLOCK_MAX                = 0x3\n\tSO_TS_DEFAULT                  = 0x0\n\tSO_TS_MONOTONIC                = 0x3\n\tSO_TS_REALTIME                 = 0x2\n\tSO_TS_REALTIME_MICRO           = 0x0\n\tSO_TYPE                        = 0x1008\n\tSO_USELOOPBACK                 = 0x40\n\tSO_USER_COOKIE                 = 0x1015\n\tSO_VENDOR                      = 0x80000000\n\tS_BLKSIZE                      = 0x200\n\tS_IEXEC                        = 0x40\n\tS_IFBLK                        = 0x6000\n\tS_IFCHR                        = 0x2000\n\tS_IFDIR                        = 0x4000\n\tS_IFIFO                        = 0x1000\n\tS_IFLNK                        = 0xa000\n\tS_IFMT                         = 0xf000\n\tS_IFREG                        = 0x8000\n\tS_IFSOCK                       = 0xc000\n\tS_IFWHT                        = 0xe000\n\tS_IREAD                        = 0x100\n\tS_IRGRP                        = 0x20\n\tS_IROTH                        = 0x4\n\tS_IRUSR                        = 0x100\n\tS_IRWXG                        = 0x38\n\tS_IRWXO                        = 0x7\n\tS_IRWXU                        = 0x1c0\n\tS_ISGID                        = 0x400\n\tS_ISTXT                        = 0x200\n\tS_ISUID                        = 0x800\n\tS_ISVTX                        = 0x200\n\tS_IWGRP                        = 0x10\n\tS_IWOTH                        = 0x2\n\tS_IWRITE                       = 0x80\n\tS_IWUSR                        = 0x80\n\tS_IXGRP                        = 0x8\n\tS_IXOTH                        = 0x1\n\tS_IXUSR                        = 0x40\n\tTAB0                           = 0x0\n\tTAB3                           = 0x4\n\tTABDLY                         = 0x4\n\tTCIFLUSH                       = 0x1\n\tTCIOFF                         = 0x3\n\tTCIOFLUSH                      = 0x3\n\tTCION                          = 0x4\n\tTCOFLUSH                       = 0x2\n\tTCOOFF                         = 0x1\n\tTCOON                          = 0x2\n\tTCP_BBR_ACK_COMP_ALG           = 0x448\n\tTCP_BBR_DRAIN_INC_EXTRA        = 0x43c\n\tTCP_BBR_DRAIN_PG               = 0x42e\n\tTCP_BBR_EXTRA_GAIN             = 0x449\n\tTCP_BBR_IWINTSO                = 0x42b\n\tTCP_BBR_LOWGAIN_FD             = 0x436\n\tTCP_BBR_LOWGAIN_HALF           = 0x435\n\tTCP_BBR_LOWGAIN_THRESH         = 0x434\n\tTCP_BBR_MAX_RTO                = 0x439\n\tTCP_BBR_MIN_RTO                = 0x438\n\tTCP_BBR_ONE_RETRAN             = 0x431\n\tTCP_BBR_PACE_CROSS             = 0x442\n\tTCP_BBR_PACE_DEL_TAR           = 0x43f\n\tTCP_BBR_PACE_PER_SEC           = 0x43e\n\tTCP_BBR_PACE_SEG_MAX           = 0x440\n\tTCP_BBR_PACE_SEG_MIN           = 0x441\n\tTCP_BBR_PROBE_RTT_GAIN         = 0x44d\n\tTCP_BBR_PROBE_RTT_INT          = 0x430\n\tTCP_BBR_PROBE_RTT_LEN          = 0x44e\n\tTCP_BBR_RACK_RTT_USE           = 0x44a\n\tTCP_BBR_RECFORCE               = 0x42c\n\tTCP_BBR_REC_OVER_HPTS          = 0x43a\n\tTCP_BBR_RETRAN_WTSO            = 0x44b\n\tTCP_BBR_RWND_IS_APP            = 0x42f\n\tTCP_BBR_STARTUP_EXIT_EPOCH     = 0x43d\n\tTCP_BBR_STARTUP_LOSS_EXIT      = 0x432\n\tTCP_BBR_STARTUP_PG             = 0x42d\n\tTCP_BBR_UNLIMITED              = 0x43b\n\tTCP_BBR_USEDEL_RATE            = 0x437\n\tTCP_BBR_USE_LOWGAIN            = 0x433\n\tTCP_CA_NAME_MAX                = 0x10\n\tTCP_CCALGOOPT                  = 0x41\n\tTCP_CONGESTION                 = 0x40\n\tTCP_DATA_AFTER_CLOSE           = 0x44c\n\tTCP_DELACK                     = 0x48\n\tTCP_FASTOPEN                   = 0x401\n\tTCP_FASTOPEN_MAX_COOKIE_LEN    = 0x10\n\tTCP_FASTOPEN_MIN_COOKIE_LEN    = 0x4\n\tTCP_FASTOPEN_PSK_LEN           = 0x10\n\tTCP_FUNCTION_BLK               = 0x2000\n\tTCP_FUNCTION_NAME_LEN_MAX      = 0x20\n\tTCP_INFO                       = 0x20\n\tTCP_KEEPCNT                    = 0x400\n\tTCP_KEEPIDLE                   = 0x100\n\tTCP_KEEPINIT                   = 0x80\n\tTCP_KEEPINTVL                  = 0x200\n\tTCP_LOG                        = 0x22\n\tTCP_LOGBUF                     = 0x23\n\tTCP_LOGDUMP                    = 0x25\n\tTCP_LOGDUMPID                  = 0x26\n\tTCP_LOGID                      = 0x24\n\tTCP_LOG_ID_LEN                 = 0x40\n\tTCP_MAXBURST                   = 0x4\n\tTCP_MAXHLEN                    = 0x3c\n\tTCP_MAXOLEN                    = 0x28\n\tTCP_MAXSEG                     = 0x2\n\tTCP_MAXWIN                     = 0xffff\n\tTCP_MAX_SACK                   = 0x4\n\tTCP_MAX_WINSHIFT               = 0xe\n\tTCP_MD5SIG                     = 0x10\n\tTCP_MINMSS                     = 0xd8\n\tTCP_MSS                        = 0x218\n\tTCP_NODELAY                    = 0x1\n\tTCP_NOOPT                      = 0x8\n\tTCP_NOPUSH                     = 0x4\n\tTCP_PCAP_IN                    = 0x1000\n\tTCP_PCAP_OUT                   = 0x800\n\tTCP_RACK_EARLY_RECOV           = 0x423\n\tTCP_RACK_EARLY_SEG             = 0x424\n\tTCP_RACK_IDLE_REDUCE_HIGH      = 0x444\n\tTCP_RACK_MIN_PACE              = 0x445\n\tTCP_RACK_MIN_PACE_SEG          = 0x446\n\tTCP_RACK_MIN_TO                = 0x422\n\tTCP_RACK_PACE_ALWAYS           = 0x41f\n\tTCP_RACK_PACE_MAX_SEG          = 0x41e\n\tTCP_RACK_PACE_REDUCE           = 0x41d\n\tTCP_RACK_PKT_DELAY             = 0x428\n\tTCP_RACK_PROP                  = 0x41b\n\tTCP_RACK_PROP_RATE             = 0x420\n\tTCP_RACK_PRR_SENDALOT          = 0x421\n\tTCP_RACK_REORD_FADE            = 0x426\n\tTCP_RACK_REORD_THRESH          = 0x425\n\tTCP_RACK_SESS_CWV              = 0x42a\n\tTCP_RACK_TLP_INC_VAR           = 0x429\n\tTCP_RACK_TLP_REDUCE            = 0x41c\n\tTCP_RACK_TLP_THRESH            = 0x427\n\tTCP_RACK_TLP_USE               = 0x447\n\tTCP_VENDOR                     = 0x80000000\n\tTCSAFLUSH                      = 0x2\n\tTIMER_ABSTIME                  = 0x1\n\tTIMER_RELTIME                  = 0x0\n\tTIOCCBRK                       = 0x2000747a\n\tTIOCCDTR                       = 0x20007478\n\tTIOCCONS                       = 0x80047462\n\tTIOCDRAIN                      = 0x2000745e\n\tTIOCEXCL                       = 0x2000740d\n\tTIOCEXT                        = 0x80047460\n\tTIOCFLUSH                      = 0x80047410\n\tTIOCGDRAINWAIT                 = 0x40047456\n\tTIOCGETA                       = 0x402c7413\n\tTIOCGETD                       = 0x4004741a\n\tTIOCGPGRP                      = 0x40047477\n\tTIOCGPTN                       = 0x4004740f\n\tTIOCGSID                       = 0x40047463\n\tTIOCGWINSZ                     = 0x40087468\n\tTIOCMBIC                       = 0x8004746b\n\tTIOCMBIS                       = 0x8004746c\n\tTIOCMGDTRWAIT                  = 0x4004745a\n\tTIOCMGET                       = 0x4004746a\n\tTIOCMSDTRWAIT                  = 0x8004745b\n\tTIOCMSET                       = 0x8004746d\n\tTIOCM_CAR                      = 0x40\n\tTIOCM_CD                       = 0x40\n\tTIOCM_CTS                      = 0x20\n\tTIOCM_DCD                      = 0x40\n\tTIOCM_DSR                      = 0x100\n\tTIOCM_DTR                      = 0x2\n\tTIOCM_LE                       = 0x1\n\tTIOCM_RI                       = 0x80\n\tTIOCM_RNG                      = 0x80\n\tTIOCM_RTS                      = 0x4\n\tTIOCM_SR                       = 0x10\n\tTIOCM_ST                       = 0x8\n\tTIOCNOTTY                      = 0x20007471\n\tTIOCNXCL                       = 0x2000740e\n\tTIOCOUTQ                       = 0x40047473\n\tTIOCPKT                        = 0x80047470\n\tTIOCPKT_DATA                   = 0x0\n\tTIOCPKT_DOSTOP                 = 0x20\n\tTIOCPKT_FLUSHREAD              = 0x1\n\tTIOCPKT_FLUSHWRITE             = 0x2\n\tTIOCPKT_IOCTL                  = 0x40\n\tTIOCPKT_NOSTOP                 = 0x10\n\tTIOCPKT_START                  = 0x8\n\tTIOCPKT_STOP                   = 0x4\n\tTIOCPTMASTER                   = 0x2000741c\n\tTIOCSBRK                       = 0x2000747b\n\tTIOCSCTTY                      = 0x20007461\n\tTIOCSDRAINWAIT                 = 0x80047457\n\tTIOCSDTR                       = 0x20007479\n\tTIOCSETA                       = 0x802c7414\n\tTIOCSETAF                      = 0x802c7416\n\tTIOCSETAW                      = 0x802c7415\n\tTIOCSETD                       = 0x8004741b\n\tTIOCSIG                        = 0x2004745f\n\tTIOCSPGRP                      = 0x80047476\n\tTIOCSTART                      = 0x2000746e\n\tTIOCSTAT                       = 0x20007465\n\tTIOCSTI                        = 0x80017472\n\tTIOCSTOP                       = 0x2000746f\n\tTIOCSWINSZ                     = 0x80087467\n\tTIOCTIMESTAMP                  = 0x40087459\n\tTIOCUCNTL                      = 0x80047466\n\tTOSTOP                         = 0x400000\n\tUTIME_NOW                      = -0x1\n\tUTIME_OMIT                     = -0x2\n\tVDISCARD                       = 0xf\n\tVDSUSP                         = 0xb\n\tVEOF                           = 0x0\n\tVEOL                           = 0x1\n\tVEOL2                          = 0x2\n\tVERASE                         = 0x3\n\tVERASE2                        = 0x7\n\tVINTR                          = 0x8\n\tVKILL                          = 0x5\n\tVLNEXT                         = 0xe\n\tVMIN                           = 0x10\n\tVM_BCACHE_SIZE_MAX             = 0x70e0000\n\tVM_SWZONE_SIZE_MAX             = 0x2280000\n\tVQUIT                          = 0x9\n\tVREPRINT                       = 0x6\n\tVSTART                         = 0xc\n\tVSTATUS                        = 0x12\n\tVSTOP                          = 0xd\n\tVSUSP                          = 0xa\n\tVTIME                          = 0x11\n\tVWERASE                        = 0x4\n\tWCONTINUED                     = 0x4\n\tWCOREFLAG                      = 0x80\n\tWEXITED                        = 0x10\n\tWLINUXCLONE                    = 0x80000000\n\tWNOHANG                        = 0x1\n\tWNOWAIT                        = 0x8\n\tWSTOPPED                       = 0x2\n\tWTRAPPED                       = 0x20\n\tWUNTRACED                      = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x59)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x55)\n\tECAPMODE        = syscall.Errno(0x5e)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDOOFUS         = syscall.Errno(0x58)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x52)\n\tEILSEQ          = syscall.Errno(0x56)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x60)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5a)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x57)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x5b)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x53)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCAPABLE     = syscall.Errno(0x5d)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x5f)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEOWNERDEAD      = syscall.Errno(0x60)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x5c)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGLIBRT  = syscall.Signal(0x21)\n\tSIGLWP    = syscall.Signal(0x20)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTHR    = syscall.Signal(0x20)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIDRM\", \"identifier removed\"},\n\t{83, \"ENOMSG\", \"no message of desired type\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"ECANCELED\", \"operation canceled\"},\n\t{86, \"EILSEQ\", \"illegal byte sequence\"},\n\t{87, \"ENOATTR\", \"attribute not found\"},\n\t{88, \"EDOOFUS\", \"programming error\"},\n\t{89, \"EBADMSG\", \"bad message\"},\n\t{90, \"EMULTIHOP\", \"multihop attempted\"},\n\t{91, \"ENOLINK\", \"link has been severed\"},\n\t{92, \"EPROTO\", \"protocol error\"},\n\t{93, \"ENOTCAPABLE\", \"capabilities insufficient\"},\n\t{94, \"ECAPMODE\", \"not permitted in capability mode\"},\n\t{95, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{96, \"EOWNERDEAD\", \"previous owner died\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"unknown signal\"},\n\t{33, \"SIGLIBRT\", \"unknown signal\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,freebsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                   = 0x10\n\tAF_ARP                         = 0x23\n\tAF_ATM                         = 0x1e\n\tAF_BLUETOOTH                   = 0x24\n\tAF_CCITT                       = 0xa\n\tAF_CHAOS                       = 0x5\n\tAF_CNT                         = 0x15\n\tAF_COIP                        = 0x14\n\tAF_DATAKIT                     = 0x9\n\tAF_DECnet                      = 0xc\n\tAF_DLI                         = 0xd\n\tAF_E164                        = 0x1a\n\tAF_ECMA                        = 0x8\n\tAF_HYLINK                      = 0xf\n\tAF_IEEE80211                   = 0x25\n\tAF_IMPLINK                     = 0x3\n\tAF_INET                        = 0x2\n\tAF_INET6                       = 0x1c\n\tAF_INET6_SDP                   = 0x2a\n\tAF_INET_SDP                    = 0x28\n\tAF_IPX                         = 0x17\n\tAF_ISDN                        = 0x1a\n\tAF_ISO                         = 0x7\n\tAF_LAT                         = 0xe\n\tAF_LINK                        = 0x12\n\tAF_LOCAL                       = 0x1\n\tAF_MAX                         = 0x2a\n\tAF_NATM                        = 0x1d\n\tAF_NETBIOS                     = 0x6\n\tAF_NETGRAPH                    = 0x20\n\tAF_OSI                         = 0x7\n\tAF_PUP                         = 0x4\n\tAF_ROUTE                       = 0x11\n\tAF_SCLUSTER                    = 0x22\n\tAF_SIP                         = 0x18\n\tAF_SLOW                        = 0x21\n\tAF_SNA                         = 0xb\n\tAF_UNIX                        = 0x1\n\tAF_UNSPEC                      = 0x0\n\tAF_VENDOR00                    = 0x27\n\tAF_VENDOR01                    = 0x29\n\tAF_VENDOR02                    = 0x2b\n\tAF_VENDOR03                    = 0x2d\n\tAF_VENDOR04                    = 0x2f\n\tAF_VENDOR05                    = 0x31\n\tAF_VENDOR06                    = 0x33\n\tAF_VENDOR07                    = 0x35\n\tAF_VENDOR08                    = 0x37\n\tAF_VENDOR09                    = 0x39\n\tAF_VENDOR10                    = 0x3b\n\tAF_VENDOR11                    = 0x3d\n\tAF_VENDOR12                    = 0x3f\n\tAF_VENDOR13                    = 0x41\n\tAF_VENDOR14                    = 0x43\n\tAF_VENDOR15                    = 0x45\n\tAF_VENDOR16                    = 0x47\n\tAF_VENDOR17                    = 0x49\n\tAF_VENDOR18                    = 0x4b\n\tAF_VENDOR19                    = 0x4d\n\tAF_VENDOR20                    = 0x4f\n\tAF_VENDOR21                    = 0x51\n\tAF_VENDOR22                    = 0x53\n\tAF_VENDOR23                    = 0x55\n\tAF_VENDOR24                    = 0x57\n\tAF_VENDOR25                    = 0x59\n\tAF_VENDOR26                    = 0x5b\n\tAF_VENDOR27                    = 0x5d\n\tAF_VENDOR28                    = 0x5f\n\tAF_VENDOR29                    = 0x61\n\tAF_VENDOR30                    = 0x63\n\tAF_VENDOR31                    = 0x65\n\tAF_VENDOR32                    = 0x67\n\tAF_VENDOR33                    = 0x69\n\tAF_VENDOR34                    = 0x6b\n\tAF_VENDOR35                    = 0x6d\n\tAF_VENDOR36                    = 0x6f\n\tAF_VENDOR37                    = 0x71\n\tAF_VENDOR38                    = 0x73\n\tAF_VENDOR39                    = 0x75\n\tAF_VENDOR40                    = 0x77\n\tAF_VENDOR41                    = 0x79\n\tAF_VENDOR42                    = 0x7b\n\tAF_VENDOR43                    = 0x7d\n\tAF_VENDOR44                    = 0x7f\n\tAF_VENDOR45                    = 0x81\n\tAF_VENDOR46                    = 0x83\n\tAF_VENDOR47                    = 0x85\n\tALTWERASE                      = 0x200\n\tB0                             = 0x0\n\tB110                           = 0x6e\n\tB115200                        = 0x1c200\n\tB1200                          = 0x4b0\n\tB134                           = 0x86\n\tB14400                         = 0x3840\n\tB150                           = 0x96\n\tB1800                          = 0x708\n\tB19200                         = 0x4b00\n\tB200                           = 0xc8\n\tB230400                        = 0x38400\n\tB2400                          = 0x960\n\tB28800                         = 0x7080\n\tB300                           = 0x12c\n\tB38400                         = 0x9600\n\tB460800                        = 0x70800\n\tB4800                          = 0x12c0\n\tB50                            = 0x32\n\tB57600                         = 0xe100\n\tB600                           = 0x258\n\tB7200                          = 0x1c20\n\tB75                            = 0x4b\n\tB76800                         = 0x12c00\n\tB921600                        = 0xe1000\n\tB9600                          = 0x2580\n\tBIOCFEEDBACK                   = 0x8004427c\n\tBIOCFLUSH                      = 0x20004268\n\tBIOCGBLEN                      = 0x40044266\n\tBIOCGDIRECTION                 = 0x40044276\n\tBIOCGDLT                       = 0x4004426a\n\tBIOCGDLTLIST                   = 0xc0104279\n\tBIOCGETBUFMODE                 = 0x4004427d\n\tBIOCGETIF                      = 0x4020426b\n\tBIOCGETZMAX                    = 0x4008427f\n\tBIOCGHDRCMPLT                  = 0x40044274\n\tBIOCGRSIG                      = 0x40044272\n\tBIOCGRTIMEOUT                  = 0x4010426e\n\tBIOCGSEESENT                   = 0x40044276\n\tBIOCGSTATS                     = 0x4008426f\n\tBIOCGTSTAMP                    = 0x40044283\n\tBIOCIMMEDIATE                  = 0x80044270\n\tBIOCLOCK                       = 0x2000427a\n\tBIOCPROMISC                    = 0x20004269\n\tBIOCROTZBUF                    = 0x40184280\n\tBIOCSBLEN                      = 0xc0044266\n\tBIOCSDIRECTION                 = 0x80044277\n\tBIOCSDLT                       = 0x80044278\n\tBIOCSETBUFMODE                 = 0x8004427e\n\tBIOCSETF                       = 0x80104267\n\tBIOCSETFNR                     = 0x80104282\n\tBIOCSETIF                      = 0x8020426c\n\tBIOCSETWF                      = 0x8010427b\n\tBIOCSETZBUF                    = 0x80184281\n\tBIOCSHDRCMPLT                  = 0x80044275\n\tBIOCSRSIG                      = 0x80044273\n\tBIOCSRTIMEOUT                  = 0x8010426d\n\tBIOCSSEESENT                   = 0x80044277\n\tBIOCSTSTAMP                    = 0x80044284\n\tBIOCVERSION                    = 0x40044271\n\tBPF_A                          = 0x10\n\tBPF_ABS                        = 0x20\n\tBPF_ADD                        = 0x0\n\tBPF_ALIGNMENT                  = 0x8\n\tBPF_ALU                        = 0x4\n\tBPF_AND                        = 0x50\n\tBPF_B                          = 0x10\n\tBPF_BUFMODE_BUFFER             = 0x1\n\tBPF_BUFMODE_ZBUF               = 0x2\n\tBPF_DIV                        = 0x30\n\tBPF_H                          = 0x8\n\tBPF_IMM                        = 0x0\n\tBPF_IND                        = 0x40\n\tBPF_JA                         = 0x0\n\tBPF_JEQ                        = 0x10\n\tBPF_JGE                        = 0x30\n\tBPF_JGT                        = 0x20\n\tBPF_JMP                        = 0x5\n\tBPF_JSET                       = 0x40\n\tBPF_K                          = 0x0\n\tBPF_LD                         = 0x0\n\tBPF_LDX                        = 0x1\n\tBPF_LEN                        = 0x80\n\tBPF_LSH                        = 0x60\n\tBPF_MAJOR_VERSION              = 0x1\n\tBPF_MAXBUFSIZE                 = 0x80000\n\tBPF_MAXINSNS                   = 0x200\n\tBPF_MEM                        = 0x60\n\tBPF_MEMWORDS                   = 0x10\n\tBPF_MINBUFSIZE                 = 0x20\n\tBPF_MINOR_VERSION              = 0x1\n\tBPF_MISC                       = 0x7\n\tBPF_MOD                        = 0x90\n\tBPF_MSH                        = 0xa0\n\tBPF_MUL                        = 0x20\n\tBPF_NEG                        = 0x80\n\tBPF_OR                         = 0x40\n\tBPF_RELEASE                    = 0x30bb6\n\tBPF_RET                        = 0x6\n\tBPF_RSH                        = 0x70\n\tBPF_ST                         = 0x2\n\tBPF_STX                        = 0x3\n\tBPF_SUB                        = 0x10\n\tBPF_TAX                        = 0x0\n\tBPF_TXA                        = 0x80\n\tBPF_T_BINTIME                  = 0x2\n\tBPF_T_BINTIME_FAST             = 0x102\n\tBPF_T_BINTIME_MONOTONIC        = 0x202\n\tBPF_T_BINTIME_MONOTONIC_FAST   = 0x302\n\tBPF_T_FAST                     = 0x100\n\tBPF_T_FLAG_MASK                = 0x300\n\tBPF_T_FORMAT_MASK              = 0x3\n\tBPF_T_MICROTIME                = 0x0\n\tBPF_T_MICROTIME_FAST           = 0x100\n\tBPF_T_MICROTIME_MONOTONIC      = 0x200\n\tBPF_T_MICROTIME_MONOTONIC_FAST = 0x300\n\tBPF_T_MONOTONIC                = 0x200\n\tBPF_T_MONOTONIC_FAST           = 0x300\n\tBPF_T_NANOTIME                 = 0x1\n\tBPF_T_NANOTIME_FAST            = 0x101\n\tBPF_T_NANOTIME_MONOTONIC       = 0x201\n\tBPF_T_NANOTIME_MONOTONIC_FAST  = 0x301\n\tBPF_T_NONE                     = 0x3\n\tBPF_T_NORMAL                   = 0x0\n\tBPF_W                          = 0x0\n\tBPF_X                          = 0x8\n\tBPF_XOR                        = 0xa0\n\tBRKINT                         = 0x2\n\tCAP_ACCEPT                     = 0x200000020000000\n\tCAP_ACL_CHECK                  = 0x400000000010000\n\tCAP_ACL_DELETE                 = 0x400000000020000\n\tCAP_ACL_GET                    = 0x400000000040000\n\tCAP_ACL_SET                    = 0x400000000080000\n\tCAP_ALL0                       = 0x20007ffffffffff\n\tCAP_ALL1                       = 0x4000000001fffff\n\tCAP_BIND                       = 0x200000040000000\n\tCAP_BINDAT                     = 0x200008000000400\n\tCAP_CHFLAGSAT                  = 0x200000000001400\n\tCAP_CONNECT                    = 0x200000080000000\n\tCAP_CONNECTAT                  = 0x200010000000400\n\tCAP_CREATE                     = 0x200000000000040\n\tCAP_EVENT                      = 0x400000000000020\n\tCAP_EXTATTR_DELETE             = 0x400000000001000\n\tCAP_EXTATTR_GET                = 0x400000000002000\n\tCAP_EXTATTR_LIST               = 0x400000000004000\n\tCAP_EXTATTR_SET                = 0x400000000008000\n\tCAP_FCHDIR                     = 0x200000000000800\n\tCAP_FCHFLAGS                   = 0x200000000001000\n\tCAP_FCHMOD                     = 0x200000000002000\n\tCAP_FCHMODAT                   = 0x200000000002400\n\tCAP_FCHOWN                     = 0x200000000004000\n\tCAP_FCHOWNAT                   = 0x200000000004400\n\tCAP_FCNTL                      = 0x200000000008000\n\tCAP_FCNTL_ALL                  = 0x78\n\tCAP_FCNTL_GETFL                = 0x8\n\tCAP_FCNTL_GETOWN               = 0x20\n\tCAP_FCNTL_SETFL                = 0x10\n\tCAP_FCNTL_SETOWN               = 0x40\n\tCAP_FEXECVE                    = 0x200000000000080\n\tCAP_FLOCK                      = 0x200000000010000\n\tCAP_FPATHCONF                  = 0x200000000020000\n\tCAP_FSCK                       = 0x200000000040000\n\tCAP_FSTAT                      = 0x200000000080000\n\tCAP_FSTATAT                    = 0x200000000080400\n\tCAP_FSTATFS                    = 0x200000000100000\n\tCAP_FSYNC                      = 0x200000000000100\n\tCAP_FTRUNCATE                  = 0x200000000000200\n\tCAP_FUTIMES                    = 0x200000000200000\n\tCAP_FUTIMESAT                  = 0x200000000200400\n\tCAP_GETPEERNAME                = 0x200000100000000\n\tCAP_GETSOCKNAME                = 0x200000200000000\n\tCAP_GETSOCKOPT                 = 0x200000400000000\n\tCAP_IOCTL                      = 0x400000000000080\n\tCAP_IOCTLS_ALL                 = 0x7fffffffffffffff\n\tCAP_KQUEUE                     = 0x400000000100040\n\tCAP_KQUEUE_CHANGE              = 0x400000000100000\n\tCAP_KQUEUE_EVENT               = 0x400000000000040\n\tCAP_LINKAT_SOURCE              = 0x200020000000400\n\tCAP_LINKAT_TARGET              = 0x200000000400400\n\tCAP_LISTEN                     = 0x200000800000000\n\tCAP_LOOKUP                     = 0x200000000000400\n\tCAP_MAC_GET                    = 0x400000000000001\n\tCAP_MAC_SET                    = 0x400000000000002\n\tCAP_MKDIRAT                    = 0x200000000800400\n\tCAP_MKFIFOAT                   = 0x200000001000400\n\tCAP_MKNODAT                    = 0x200000002000400\n\tCAP_MMAP                       = 0x200000000000010\n\tCAP_MMAP_R                     = 0x20000000000001d\n\tCAP_MMAP_RW                    = 0x20000000000001f\n\tCAP_MMAP_RWX                   = 0x20000000000003f\n\tCAP_MMAP_RX                    = 0x20000000000003d\n\tCAP_MMAP_W                     = 0x20000000000001e\n\tCAP_MMAP_WX                    = 0x20000000000003e\n\tCAP_MMAP_X                     = 0x20000000000003c\n\tCAP_PDGETPID                   = 0x400000000000200\n\tCAP_PDKILL                     = 0x400000000000800\n\tCAP_PDWAIT                     = 0x400000000000400\n\tCAP_PEELOFF                    = 0x200001000000000\n\tCAP_POLL_EVENT                 = 0x400000000000020\n\tCAP_PREAD                      = 0x20000000000000d\n\tCAP_PWRITE                     = 0x20000000000000e\n\tCAP_READ                       = 0x200000000000001\n\tCAP_RECV                       = 0x200000000000001\n\tCAP_RENAMEAT_SOURCE            = 0x200000004000400\n\tCAP_RENAMEAT_TARGET            = 0x200040000000400\n\tCAP_RIGHTS_VERSION             = 0x0\n\tCAP_RIGHTS_VERSION_00          = 0x0\n\tCAP_SEEK                       = 0x20000000000000c\n\tCAP_SEEK_TELL                  = 0x200000000000004\n\tCAP_SEM_GETVALUE               = 0x400000000000004\n\tCAP_SEM_POST                   = 0x400000000000008\n\tCAP_SEM_WAIT                   = 0x400000000000010\n\tCAP_SEND                       = 0x200000000000002\n\tCAP_SETSOCKOPT                 = 0x200002000000000\n\tCAP_SHUTDOWN                   = 0x200004000000000\n\tCAP_SOCK_CLIENT                = 0x200007780000003\n\tCAP_SOCK_SERVER                = 0x200007f60000003\n\tCAP_SYMLINKAT                  = 0x200000008000400\n\tCAP_TTYHOOK                    = 0x400000000000100\n\tCAP_UNLINKAT                   = 0x200000010000400\n\tCAP_UNUSED0_44                 = 0x200080000000000\n\tCAP_UNUSED0_57                 = 0x300000000000000\n\tCAP_UNUSED1_22                 = 0x400000000200000\n\tCAP_UNUSED1_57                 = 0x500000000000000\n\tCAP_WRITE                      = 0x200000000000002\n\tCFLUSH                         = 0xf\n\tCLOCAL                         = 0x8000\n\tCLOCK_MONOTONIC                = 0x4\n\tCLOCK_MONOTONIC_FAST           = 0xc\n\tCLOCK_MONOTONIC_PRECISE        = 0xb\n\tCLOCK_PROCESS_CPUTIME_ID       = 0xf\n\tCLOCK_PROF                     = 0x2\n\tCLOCK_REALTIME                 = 0x0\n\tCLOCK_REALTIME_FAST            = 0xa\n\tCLOCK_REALTIME_PRECISE         = 0x9\n\tCLOCK_SECOND                   = 0xd\n\tCLOCK_THREAD_CPUTIME_ID        = 0xe\n\tCLOCK_UPTIME                   = 0x5\n\tCLOCK_UPTIME_FAST              = 0x8\n\tCLOCK_UPTIME_PRECISE           = 0x7\n\tCLOCK_VIRTUAL                  = 0x1\n\tCPUSTATES                      = 0x5\n\tCP_IDLE                        = 0x4\n\tCP_INTR                        = 0x3\n\tCP_NICE                        = 0x1\n\tCP_SYS                         = 0x2\n\tCP_USER                        = 0x0\n\tCREAD                          = 0x800\n\tCRTSCTS                        = 0x30000\n\tCS5                            = 0x0\n\tCS6                            = 0x100\n\tCS7                            = 0x200\n\tCS8                            = 0x300\n\tCSIZE                          = 0x300\n\tCSTART                         = 0x11\n\tCSTATUS                        = 0x14\n\tCSTOP                          = 0x13\n\tCSTOPB                         = 0x400\n\tCSUSP                          = 0x1a\n\tCTL_HW                         = 0x6\n\tCTL_KERN                       = 0x1\n\tCTL_MAXNAME                    = 0x18\n\tCTL_NET                        = 0x4\n\tDIOCGATTR                      = 0xc148648e\n\tDIOCGDELETE                    = 0x80106488\n\tDIOCGFLUSH                     = 0x20006487\n\tDIOCGFRONTSTUFF                = 0x40086486\n\tDIOCGFWHEADS                   = 0x40046483\n\tDIOCGFWSECTORS                 = 0x40046482\n\tDIOCGIDENT                     = 0x41006489\n\tDIOCGMEDIASIZE                 = 0x40086481\n\tDIOCGPHYSPATH                  = 0x4400648d\n\tDIOCGPROVIDERNAME              = 0x4400648a\n\tDIOCGSECTORSIZE                = 0x40046480\n\tDIOCGSTRIPEOFFSET              = 0x4008648c\n\tDIOCGSTRIPESIZE                = 0x4008648b\n\tDIOCSKERNELDUMP                = 0x80506490\n\tDIOCSKERNELDUMP_FREEBSD11      = 0x80046485\n\tDIOCZONECMD                    = 0xc080648f\n\tDLT_A429                       = 0xb8\n\tDLT_A653_ICM                   = 0xb9\n\tDLT_AIRONET_HEADER             = 0x78\n\tDLT_AOS                        = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394     = 0x8a\n\tDLT_ARCNET                     = 0x7\n\tDLT_ARCNET_LINUX               = 0x81\n\tDLT_ATM_CLIP                   = 0x13\n\tDLT_ATM_RFC1483                = 0xb\n\tDLT_AURORA                     = 0x7e\n\tDLT_AX25                       = 0x3\n\tDLT_AX25_KISS                  = 0xca\n\tDLT_BACNET_MS_TP               = 0xa5\n\tDLT_BLUETOOTH_BREDR_BB         = 0xff\n\tDLT_BLUETOOTH_HCI_H4           = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9\n\tDLT_BLUETOOTH_LE_LL            = 0xfb\n\tDLT_BLUETOOTH_LE_LL_WITH_PHDR  = 0x100\n\tDLT_BLUETOOTH_LINUX_MONITOR    = 0xfe\n\tDLT_CAN20B                     = 0xbe\n\tDLT_CAN_SOCKETCAN              = 0xe3\n\tDLT_CHAOS                      = 0x5\n\tDLT_CHDLC                      = 0x68\n\tDLT_CISCO_IOS                  = 0x76\n\tDLT_CLASS_NETBSD_RAWAF         = 0x2240000\n\tDLT_C_HDLC                     = 0x68\n\tDLT_C_HDLC_WITH_DIR            = 0xcd\n\tDLT_DBUS                       = 0xe7\n\tDLT_DECT                       = 0xdd\n\tDLT_DISPLAYPORT_AUX            = 0x113\n\tDLT_DOCSIS                     = 0x8f\n\tDLT_DOCSIS31_XRA31             = 0x111\n\tDLT_DVB_CI                     = 0xeb\n\tDLT_ECONET                     = 0x73\n\tDLT_EN10MB                     = 0x1\n\tDLT_EN3MB                      = 0x2\n\tDLT_ENC                        = 0x6d\n\tDLT_EPON                       = 0x103\n\tDLT_ERF                        = 0xc5\n\tDLT_ERF_ETH                    = 0xaf\n\tDLT_ERF_POS                    = 0xb0\n\tDLT_ETHERNET_MPACKET           = 0x112\n\tDLT_FC_2                       = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS     = 0xe1\n\tDLT_FDDI                       = 0xa\n\tDLT_FLEXRAY                    = 0xd2\n\tDLT_FRELAY                     = 0x6b\n\tDLT_FRELAY_WITH_DIR            = 0xce\n\tDLT_GCOM_SERIAL                = 0xad\n\tDLT_GCOM_T1E1                  = 0xac\n\tDLT_GPF_F                      = 0xab\n\tDLT_GPF_T                      = 0xaa\n\tDLT_GPRS_LLC                   = 0xa9\n\tDLT_GSMTAP_ABIS                = 0xda\n\tDLT_GSMTAP_UM                  = 0xd9\n\tDLT_IBM_SN                     = 0x92\n\tDLT_IBM_SP                     = 0x91\n\tDLT_IEEE802                    = 0x6\n\tDLT_IEEE802_11                 = 0x69\n\tDLT_IEEE802_11_RADIO           = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS       = 0xa3\n\tDLT_IEEE802_15_4               = 0xc3\n\tDLT_IEEE802_15_4_LINUX         = 0xbf\n\tDLT_IEEE802_15_4_NOFCS         = 0xe6\n\tDLT_IEEE802_15_4_NONASK_PHY    = 0xd7\n\tDLT_IEEE802_16_MAC_CPS         = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO   = 0xc1\n\tDLT_INFINIBAND                 = 0xf7\n\tDLT_IPFILTER                   = 0x74\n\tDLT_IPMB                       = 0xc7\n\tDLT_IPMB_LINUX                 = 0xd1\n\tDLT_IPMI_HPM_2                 = 0x104\n\tDLT_IPNET                      = 0xe2\n\tDLT_IPOIB                      = 0xf2\n\tDLT_IPV4                       = 0xe4\n\tDLT_IPV6                       = 0xe5\n\tDLT_IP_OVER_FC                 = 0x7a\n\tDLT_ISO_14443                  = 0x108\n\tDLT_JUNIPER_ATM1               = 0x89\n\tDLT_JUNIPER_ATM2               = 0x87\n\tDLT_JUNIPER_ATM_CEMIC          = 0xee\n\tDLT_JUNIPER_CHDLC              = 0xb5\n\tDLT_JUNIPER_ES                 = 0x84\n\tDLT_JUNIPER_ETHER              = 0xb2\n\tDLT_JUNIPER_FIBRECHANNEL       = 0xea\n\tDLT_JUNIPER_FRELAY             = 0xb4\n\tDLT_JUNIPER_GGSN               = 0x85\n\tDLT_JUNIPER_ISM                = 0xc2\n\tDLT_JUNIPER_MFR                = 0x86\n\tDLT_JUNIPER_MLFR               = 0x83\n\tDLT_JUNIPER_MLPPP              = 0x82\n\tDLT_JUNIPER_MONITOR            = 0xa4\n\tDLT_JUNIPER_PIC_PEER           = 0xae\n\tDLT_JUNIPER_PPP                = 0xb3\n\tDLT_JUNIPER_PPPOE              = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM          = 0xa8\n\tDLT_JUNIPER_SERVICES           = 0x88\n\tDLT_JUNIPER_SRX_E2E            = 0xe9\n\tDLT_JUNIPER_ST                 = 0xc8\n\tDLT_JUNIPER_VP                 = 0xb7\n\tDLT_JUNIPER_VS                 = 0xe8\n\tDLT_LAPB_WITH_DIR              = 0xcf\n\tDLT_LAPD                       = 0xcb\n\tDLT_LIN                        = 0xd4\n\tDLT_LINUX_EVDEV                = 0xd8\n\tDLT_LINUX_IRDA                 = 0x90\n\tDLT_LINUX_LAPD                 = 0xb1\n\tDLT_LINUX_PPP_WITHDIRECTION    = 0xa6\n\tDLT_LINUX_SLL                  = 0x71\n\tDLT_LOOP                       = 0x6c\n\tDLT_LORATAP                    = 0x10e\n\tDLT_LTALK                      = 0x72\n\tDLT_MATCHING_MAX               = 0x113\n\tDLT_MATCHING_MIN               = 0x68\n\tDLT_MFR                        = 0xb6\n\tDLT_MOST                       = 0xd3\n\tDLT_MPEG_2_TS                  = 0xf3\n\tDLT_MPLS                       = 0xdb\n\tDLT_MTP2                       = 0x8c\n\tDLT_MTP2_WITH_PHDR             = 0x8b\n\tDLT_MTP3                       = 0x8d\n\tDLT_MUX27010                   = 0xec\n\tDLT_NETANALYZER                = 0xf0\n\tDLT_NETANALYZER_TRANSPARENT    = 0xf1\n\tDLT_NETLINK                    = 0xfd\n\tDLT_NFC_LLCP                   = 0xf5\n\tDLT_NFLOG                      = 0xef\n\tDLT_NG40                       = 0xf4\n\tDLT_NORDIC_BLE                 = 0x110\n\tDLT_NULL                       = 0x0\n\tDLT_OPENFLOW                   = 0x10b\n\tDLT_PCI_EXP                    = 0x7d\n\tDLT_PFLOG                      = 0x75\n\tDLT_PFSYNC                     = 0x79\n\tDLT_PKTAP                      = 0x102\n\tDLT_PPI                        = 0xc0\n\tDLT_PPP                        = 0x9\n\tDLT_PPP_BSDOS                  = 0xe\n\tDLT_PPP_ETHER                  = 0x33\n\tDLT_PPP_PPPD                   = 0xa6\n\tDLT_PPP_SERIAL                 = 0x32\n\tDLT_PPP_WITH_DIR               = 0xcc\n\tDLT_PPP_WITH_DIRECTION         = 0xa6\n\tDLT_PRISM_HEADER               = 0x77\n\tDLT_PROFIBUS_DL                = 0x101\n\tDLT_PRONET                     = 0x4\n\tDLT_RAIF1                      = 0xc6\n\tDLT_RAW                        = 0xc\n\tDLT_RDS                        = 0x109\n\tDLT_REDBACK_SMARTEDGE          = 0x20\n\tDLT_RIO                        = 0x7c\n\tDLT_RTAC_SERIAL                = 0xfa\n\tDLT_SCCP                       = 0x8e\n\tDLT_SCTP                       = 0xf8\n\tDLT_SDLC                       = 0x10c\n\tDLT_SITA                       = 0xc4\n\tDLT_SLIP                       = 0x8\n\tDLT_SLIP_BSDOS                 = 0xd\n\tDLT_STANAG_5066_D_PDU          = 0xed\n\tDLT_SUNATM                     = 0x7b\n\tDLT_SYMANTEC_FIREWALL          = 0x63\n\tDLT_TI_LLN_SNIFFER             = 0x10d\n\tDLT_TZSP                       = 0x80\n\tDLT_USB                        = 0xba\n\tDLT_USBPCAP                    = 0xf9\n\tDLT_USB_DARWIN                 = 0x10a\n\tDLT_USB_FREEBSD                = 0xba\n\tDLT_USB_LINUX                  = 0xbd\n\tDLT_USB_LINUX_MMAPPED          = 0xdc\n\tDLT_USER0                      = 0x93\n\tDLT_USER1                      = 0x94\n\tDLT_USER10                     = 0x9d\n\tDLT_USER11                     = 0x9e\n\tDLT_USER12                     = 0x9f\n\tDLT_USER13                     = 0xa0\n\tDLT_USER14                     = 0xa1\n\tDLT_USER15                     = 0xa2\n\tDLT_USER2                      = 0x95\n\tDLT_USER3                      = 0x96\n\tDLT_USER4                      = 0x97\n\tDLT_USER5                      = 0x98\n\tDLT_USER6                      = 0x99\n\tDLT_USER7                      = 0x9a\n\tDLT_USER8                      = 0x9b\n\tDLT_USER9                      = 0x9c\n\tDLT_VSOCK                      = 0x10f\n\tDLT_WATTSTOPPER_DLM            = 0x107\n\tDLT_WIHART                     = 0xdf\n\tDLT_WIRESHARK_UPPER_PDU        = 0xfc\n\tDLT_X2E_SERIAL                 = 0xd5\n\tDLT_X2E_XORAYA                 = 0xd6\n\tDLT_ZWAVE_R1_R2                = 0x105\n\tDLT_ZWAVE_R3                   = 0x106\n\tDT_BLK                         = 0x6\n\tDT_CHR                         = 0x2\n\tDT_DIR                         = 0x4\n\tDT_FIFO                        = 0x1\n\tDT_LNK                         = 0xa\n\tDT_REG                         = 0x8\n\tDT_SOCK                        = 0xc\n\tDT_UNKNOWN                     = 0x0\n\tDT_WHT                         = 0xe\n\tECHO                           = 0x8\n\tECHOCTL                        = 0x40\n\tECHOE                          = 0x2\n\tECHOK                          = 0x4\n\tECHOKE                         = 0x1\n\tECHONL                         = 0x10\n\tECHOPRT                        = 0x20\n\tEVFILT_AIO                     = -0x3\n\tEVFILT_EMPTY                   = -0xd\n\tEVFILT_FS                      = -0x9\n\tEVFILT_LIO                     = -0xa\n\tEVFILT_PROC                    = -0x5\n\tEVFILT_PROCDESC                = -0x8\n\tEVFILT_READ                    = -0x1\n\tEVFILT_SENDFILE                = -0xc\n\tEVFILT_SIGNAL                  = -0x6\n\tEVFILT_SYSCOUNT                = 0xd\n\tEVFILT_TIMER                   = -0x7\n\tEVFILT_USER                    = -0xb\n\tEVFILT_VNODE                   = -0x4\n\tEVFILT_WRITE                   = -0x2\n\tEVNAMEMAP_NAME_SIZE            = 0x40\n\tEV_ADD                         = 0x1\n\tEV_CLEAR                       = 0x20\n\tEV_DELETE                      = 0x2\n\tEV_DISABLE                     = 0x8\n\tEV_DISPATCH                    = 0x80\n\tEV_DROP                        = 0x1000\n\tEV_ENABLE                      = 0x4\n\tEV_EOF                         = 0x8000\n\tEV_ERROR                       = 0x4000\n\tEV_FLAG1                       = 0x2000\n\tEV_FLAG2                       = 0x4000\n\tEV_FORCEONESHOT                = 0x100\n\tEV_ONESHOT                     = 0x10\n\tEV_RECEIPT                     = 0x40\n\tEV_SYSFLAGS                    = 0xf000\n\tEXTA                           = 0x4b00\n\tEXTATTR_MAXNAMELEN             = 0xff\n\tEXTATTR_NAMESPACE_EMPTY        = 0x0\n\tEXTATTR_NAMESPACE_SYSTEM       = 0x2\n\tEXTATTR_NAMESPACE_USER         = 0x1\n\tEXTB                           = 0x9600\n\tEXTPROC                        = 0x800\n\tFD_CLOEXEC                     = 0x1\n\tFD_SETSIZE                     = 0x400\n\tFLUSHO                         = 0x800000\n\tF_CANCEL                       = 0x5\n\tF_DUP2FD                       = 0xa\n\tF_DUP2FD_CLOEXEC               = 0x12\n\tF_DUPFD                        = 0x0\n\tF_DUPFD_CLOEXEC                = 0x11\n\tF_GETFD                        = 0x1\n\tF_GETFL                        = 0x3\n\tF_GETLK                        = 0xb\n\tF_GETOWN                       = 0x5\n\tF_OGETLK                       = 0x7\n\tF_OK                           = 0x0\n\tF_OSETLK                       = 0x8\n\tF_OSETLKW                      = 0x9\n\tF_RDAHEAD                      = 0x10\n\tF_RDLCK                        = 0x1\n\tF_READAHEAD                    = 0xf\n\tF_SETFD                        = 0x2\n\tF_SETFL                        = 0x4\n\tF_SETLK                        = 0xc\n\tF_SETLKW                       = 0xd\n\tF_SETLK_REMOTE                 = 0xe\n\tF_SETOWN                       = 0x6\n\tF_UNLCK                        = 0x2\n\tF_UNLCKSYS                     = 0x4\n\tF_WRLCK                        = 0x3\n\tHUPCL                          = 0x4000\n\tHW_MACHINE                     = 0x1\n\tICANON                         = 0x100\n\tICMP6_FILTER                   = 0x12\n\tICRNL                          = 0x100\n\tIEXTEN                         = 0x400\n\tIFAN_ARRIVAL                   = 0x0\n\tIFAN_DEPARTURE                 = 0x1\n\tIFCAP_WOL_MAGIC                = 0x2000\n\tIFF_ALLMULTI                   = 0x200\n\tIFF_ALTPHYS                    = 0x4000\n\tIFF_BROADCAST                  = 0x2\n\tIFF_CANTCHANGE                 = 0x218f52\n\tIFF_CANTCONFIG                 = 0x10000\n\tIFF_DEBUG                      = 0x4\n\tIFF_DRV_OACTIVE                = 0x400\n\tIFF_DRV_RUNNING                = 0x40\n\tIFF_DYING                      = 0x200000\n\tIFF_LINK0                      = 0x1000\n\tIFF_LINK1                      = 0x2000\n\tIFF_LINK2                      = 0x4000\n\tIFF_LOOPBACK                   = 0x8\n\tIFF_MONITOR                    = 0x40000\n\tIFF_MULTICAST                  = 0x8000\n\tIFF_NOARP                      = 0x80\n\tIFF_NOGROUP                    = 0x800000\n\tIFF_OACTIVE                    = 0x400\n\tIFF_POINTOPOINT                = 0x10\n\tIFF_PPROMISC                   = 0x20000\n\tIFF_PROMISC                    = 0x100\n\tIFF_RENAMING                   = 0x400000\n\tIFF_RUNNING                    = 0x40\n\tIFF_SIMPLEX                    = 0x800\n\tIFF_STATICARP                  = 0x80000\n\tIFF_UP                         = 0x1\n\tIFNAMSIZ                       = 0x10\n\tIFT_BRIDGE                     = 0xd1\n\tIFT_CARP                       = 0xf8\n\tIFT_IEEE1394                   = 0x90\n\tIFT_INFINIBAND                 = 0xc7\n\tIFT_L2VLAN                     = 0x87\n\tIFT_L3IPVLAN                   = 0x88\n\tIFT_PPP                        = 0x17\n\tIFT_PROPVIRTUAL                = 0x35\n\tIGNBRK                         = 0x1\n\tIGNCR                          = 0x80\n\tIGNPAR                         = 0x4\n\tIMAXBEL                        = 0x2000\n\tINLCR                          = 0x40\n\tINPCK                          = 0x10\n\tIN_CLASSA_HOST                 = 0xffffff\n\tIN_CLASSA_MAX                  = 0x80\n\tIN_CLASSA_NET                  = 0xff000000\n\tIN_CLASSA_NSHIFT               = 0x18\n\tIN_CLASSB_HOST                 = 0xffff\n\tIN_CLASSB_MAX                  = 0x10000\n\tIN_CLASSB_NET                  = 0xffff0000\n\tIN_CLASSB_NSHIFT               = 0x10\n\tIN_CLASSC_HOST                 = 0xff\n\tIN_CLASSC_NET                  = 0xffffff00\n\tIN_CLASSC_NSHIFT               = 0x8\n\tIN_CLASSD_HOST                 = 0xfffffff\n\tIN_CLASSD_NET                  = 0xf0000000\n\tIN_CLASSD_NSHIFT               = 0x1c\n\tIN_LOOPBACKNET                 = 0x7f\n\tIN_RFC3021_MASK                = 0xfffffffe\n\tIPPROTO_3PC                    = 0x22\n\tIPPROTO_ADFS                   = 0x44\n\tIPPROTO_AH                     = 0x33\n\tIPPROTO_AHIP                   = 0x3d\n\tIPPROTO_APES                   = 0x63\n\tIPPROTO_ARGUS                  = 0xd\n\tIPPROTO_AX25                   = 0x5d\n\tIPPROTO_BHA                    = 0x31\n\tIPPROTO_BLT                    = 0x1e\n\tIPPROTO_BRSATMON               = 0x4c\n\tIPPROTO_CARP                   = 0x70\n\tIPPROTO_CFTP                   = 0x3e\n\tIPPROTO_CHAOS                  = 0x10\n\tIPPROTO_CMTP                   = 0x26\n\tIPPROTO_CPHB                   = 0x49\n\tIPPROTO_CPNX                   = 0x48\n\tIPPROTO_DDP                    = 0x25\n\tIPPROTO_DGP                    = 0x56\n\tIPPROTO_DIVERT                 = 0x102\n\tIPPROTO_DONE                   = 0x101\n\tIPPROTO_DSTOPTS                = 0x3c\n\tIPPROTO_EGP                    = 0x8\n\tIPPROTO_EMCON                  = 0xe\n\tIPPROTO_ENCAP                  = 0x62\n\tIPPROTO_EON                    = 0x50\n\tIPPROTO_ESP                    = 0x32\n\tIPPROTO_ETHERIP                = 0x61\n\tIPPROTO_FRAGMENT               = 0x2c\n\tIPPROTO_GGP                    = 0x3\n\tIPPROTO_GMTP                   = 0x64\n\tIPPROTO_GRE                    = 0x2f\n\tIPPROTO_HELLO                  = 0x3f\n\tIPPROTO_HIP                    = 0x8b\n\tIPPROTO_HMP                    = 0x14\n\tIPPROTO_HOPOPTS                = 0x0\n\tIPPROTO_ICMP                   = 0x1\n\tIPPROTO_ICMPV6                 = 0x3a\n\tIPPROTO_IDP                    = 0x16\n\tIPPROTO_IDPR                   = 0x23\n\tIPPROTO_IDRP                   = 0x2d\n\tIPPROTO_IGMP                   = 0x2\n\tIPPROTO_IGP                    = 0x55\n\tIPPROTO_IGRP                   = 0x58\n\tIPPROTO_IL                     = 0x28\n\tIPPROTO_INLSP                  = 0x34\n\tIPPROTO_INP                    = 0x20\n\tIPPROTO_IP                     = 0x0\n\tIPPROTO_IPCOMP                 = 0x6c\n\tIPPROTO_IPCV                   = 0x47\n\tIPPROTO_IPEIP                  = 0x5e\n\tIPPROTO_IPIP                   = 0x4\n\tIPPROTO_IPPC                   = 0x43\n\tIPPROTO_IPV4                   = 0x4\n\tIPPROTO_IPV6                   = 0x29\n\tIPPROTO_IRTP                   = 0x1c\n\tIPPROTO_KRYPTOLAN              = 0x41\n\tIPPROTO_LARP                   = 0x5b\n\tIPPROTO_LEAF1                  = 0x19\n\tIPPROTO_LEAF2                  = 0x1a\n\tIPPROTO_MAX                    = 0x100\n\tIPPROTO_MEAS                   = 0x13\n\tIPPROTO_MH                     = 0x87\n\tIPPROTO_MHRP                   = 0x30\n\tIPPROTO_MICP                   = 0x5f\n\tIPPROTO_MOBILE                 = 0x37\n\tIPPROTO_MPLS                   = 0x89\n\tIPPROTO_MTP                    = 0x5c\n\tIPPROTO_MUX                    = 0x12\n\tIPPROTO_ND                     = 0x4d\n\tIPPROTO_NHRP                   = 0x36\n\tIPPROTO_NONE                   = 0x3b\n\tIPPROTO_NSP                    = 0x1f\n\tIPPROTO_NVPII                  = 0xb\n\tIPPROTO_OLD_DIVERT             = 0xfe\n\tIPPROTO_OSPFIGP                = 0x59\n\tIPPROTO_PFSYNC                 = 0xf0\n\tIPPROTO_PGM                    = 0x71\n\tIPPROTO_PIGP                   = 0x9\n\tIPPROTO_PIM                    = 0x67\n\tIPPROTO_PRM                    = 0x15\n\tIPPROTO_PUP                    = 0xc\n\tIPPROTO_PVP                    = 0x4b\n\tIPPROTO_RAW                    = 0xff\n\tIPPROTO_RCCMON                 = 0xa\n\tIPPROTO_RDP                    = 0x1b\n\tIPPROTO_RESERVED_253           = 0xfd\n\tIPPROTO_RESERVED_254           = 0xfe\n\tIPPROTO_ROUTING                = 0x2b\n\tIPPROTO_RSVP                   = 0x2e\n\tIPPROTO_RVD                    = 0x42\n\tIPPROTO_SATEXPAK               = 0x40\n\tIPPROTO_SATMON                 = 0x45\n\tIPPROTO_SCCSP                  = 0x60\n\tIPPROTO_SCTP                   = 0x84\n\tIPPROTO_SDRP                   = 0x2a\n\tIPPROTO_SEND                   = 0x103\n\tIPPROTO_SEP                    = 0x21\n\tIPPROTO_SHIM6                  = 0x8c\n\tIPPROTO_SKIP                   = 0x39\n\tIPPROTO_SPACER                 = 0x7fff\n\tIPPROTO_SRPC                   = 0x5a\n\tIPPROTO_ST                     = 0x7\n\tIPPROTO_SVMTP                  = 0x52\n\tIPPROTO_SWIPE                  = 0x35\n\tIPPROTO_TCF                    = 0x57\n\tIPPROTO_TCP                    = 0x6\n\tIPPROTO_TLSP                   = 0x38\n\tIPPROTO_TP                     = 0x1d\n\tIPPROTO_TPXX                   = 0x27\n\tIPPROTO_TRUNK1                 = 0x17\n\tIPPROTO_TRUNK2                 = 0x18\n\tIPPROTO_TTP                    = 0x54\n\tIPPROTO_UDP                    = 0x11\n\tIPPROTO_UDPLITE                = 0x88\n\tIPPROTO_VINES                  = 0x53\n\tIPPROTO_VISA                   = 0x46\n\tIPPROTO_VMTP                   = 0x51\n\tIPPROTO_WBEXPAK                = 0x4f\n\tIPPROTO_WBMON                  = 0x4e\n\tIPPROTO_WSN                    = 0x4a\n\tIPPROTO_XNET                   = 0xf\n\tIPPROTO_XTP                    = 0x24\n\tIPV6_AUTOFLOWLABEL             = 0x3b\n\tIPV6_BINDANY                   = 0x40\n\tIPV6_BINDMULTI                 = 0x41\n\tIPV6_BINDV6ONLY                = 0x1b\n\tIPV6_CHECKSUM                  = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS    = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP    = 0x1\n\tIPV6_DEFHLIM                   = 0x40\n\tIPV6_DONTFRAG                  = 0x3e\n\tIPV6_DSTOPTS                   = 0x32\n\tIPV6_FLOWID                    = 0x43\n\tIPV6_FLOWINFO_MASK             = 0xffffff0f\n\tIPV6_FLOWLABEL_LEN             = 0x14\n\tIPV6_FLOWLABEL_MASK            = 0xffff0f00\n\tIPV6_FLOWTYPE                  = 0x44\n\tIPV6_FRAGTTL                   = 0x78\n\tIPV6_FW_ADD                    = 0x1e\n\tIPV6_FW_DEL                    = 0x1f\n\tIPV6_FW_FLUSH                  = 0x20\n\tIPV6_FW_GET                    = 0x22\n\tIPV6_FW_ZERO                   = 0x21\n\tIPV6_HLIMDEC                   = 0x1\n\tIPV6_HOPLIMIT                  = 0x2f\n\tIPV6_HOPOPTS                   = 0x31\n\tIPV6_IPSEC_POLICY              = 0x1c\n\tIPV6_JOIN_GROUP                = 0xc\n\tIPV6_LEAVE_GROUP               = 0xd\n\tIPV6_MAXHLIM                   = 0xff\n\tIPV6_MAXOPTHDR                 = 0x800\n\tIPV6_MAXPACKET                 = 0xffff\n\tIPV6_MAX_GROUP_SRC_FILTER      = 0x200\n\tIPV6_MAX_MEMBERSHIPS           = 0xfff\n\tIPV6_MAX_SOCK_SRC_FILTER       = 0x80\n\tIPV6_MMTU                      = 0x500\n\tIPV6_MSFILTER                  = 0x4a\n\tIPV6_MULTICAST_HOPS            = 0xa\n\tIPV6_MULTICAST_IF              = 0x9\n\tIPV6_MULTICAST_LOOP            = 0xb\n\tIPV6_NEXTHOP                   = 0x30\n\tIPV6_ORIGDSTADDR               = 0x48\n\tIPV6_PATHMTU                   = 0x2c\n\tIPV6_PKTINFO                   = 0x2e\n\tIPV6_PORTRANGE                 = 0xe\n\tIPV6_PORTRANGE_DEFAULT         = 0x0\n\tIPV6_PORTRANGE_HIGH            = 0x1\n\tIPV6_PORTRANGE_LOW             = 0x2\n\tIPV6_PREFER_TEMPADDR           = 0x3f\n\tIPV6_RECVDSTOPTS               = 0x28\n\tIPV6_RECVFLOWID                = 0x46\n\tIPV6_RECVHOPLIMIT              = 0x25\n\tIPV6_RECVHOPOPTS               = 0x27\n\tIPV6_RECVORIGDSTADDR           = 0x48\n\tIPV6_RECVPATHMTU               = 0x2b\n\tIPV6_RECVPKTINFO               = 0x24\n\tIPV6_RECVRSSBUCKETID           = 0x47\n\tIPV6_RECVRTHDR                 = 0x26\n\tIPV6_RECVTCLASS                = 0x39\n\tIPV6_RSSBUCKETID               = 0x45\n\tIPV6_RSS_LISTEN_BUCKET         = 0x42\n\tIPV6_RTHDR                     = 0x33\n\tIPV6_RTHDRDSTOPTS              = 0x23\n\tIPV6_RTHDR_LOOSE               = 0x0\n\tIPV6_RTHDR_STRICT              = 0x1\n\tIPV6_RTHDR_TYPE_0              = 0x0\n\tIPV6_SOCKOPT_RESERVED1         = 0x3\n\tIPV6_TCLASS                    = 0x3d\n\tIPV6_UNICAST_HOPS              = 0x4\n\tIPV6_USE_MIN_MTU               = 0x2a\n\tIPV6_V6ONLY                    = 0x1b\n\tIPV6_VERSION                   = 0x60\n\tIPV6_VERSION_MASK              = 0xf0\n\tIP_ADD_MEMBERSHIP              = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP       = 0x46\n\tIP_BINDANY                     = 0x18\n\tIP_BINDMULTI                   = 0x19\n\tIP_BLOCK_SOURCE                = 0x48\n\tIP_DEFAULT_MULTICAST_LOOP      = 0x1\n\tIP_DEFAULT_MULTICAST_TTL       = 0x1\n\tIP_DF                          = 0x4000\n\tIP_DONTFRAG                    = 0x43\n\tIP_DROP_MEMBERSHIP             = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP      = 0x47\n\tIP_DUMMYNET3                   = 0x31\n\tIP_DUMMYNET_CONFIGURE          = 0x3c\n\tIP_DUMMYNET_DEL                = 0x3d\n\tIP_DUMMYNET_FLUSH              = 0x3e\n\tIP_DUMMYNET_GET                = 0x40\n\tIP_FLOWID                      = 0x5a\n\tIP_FLOWTYPE                    = 0x5b\n\tIP_FW3                         = 0x30\n\tIP_FW_ADD                      = 0x32\n\tIP_FW_DEL                      = 0x33\n\tIP_FW_FLUSH                    = 0x34\n\tIP_FW_GET                      = 0x36\n\tIP_FW_NAT_CFG                  = 0x38\n\tIP_FW_NAT_DEL                  = 0x39\n\tIP_FW_NAT_GET_CONFIG           = 0x3a\n\tIP_FW_NAT_GET_LOG              = 0x3b\n\tIP_FW_RESETLOG                 = 0x37\n\tIP_FW_TABLE_ADD                = 0x28\n\tIP_FW_TABLE_DEL                = 0x29\n\tIP_FW_TABLE_FLUSH              = 0x2a\n\tIP_FW_TABLE_GETSIZE            = 0x2b\n\tIP_FW_TABLE_LIST               = 0x2c\n\tIP_FW_ZERO                     = 0x35\n\tIP_HDRINCL                     = 0x2\n\tIP_IPSEC_POLICY                = 0x15\n\tIP_MAXPACKET                   = 0xffff\n\tIP_MAX_GROUP_SRC_FILTER        = 0x200\n\tIP_MAX_MEMBERSHIPS             = 0xfff\n\tIP_MAX_SOCK_MUTE_FILTER        = 0x80\n\tIP_MAX_SOCK_SRC_FILTER         = 0x80\n\tIP_MF                          = 0x2000\n\tIP_MINTTL                      = 0x42\n\tIP_MSFILTER                    = 0x4a\n\tIP_MSS                         = 0x240\n\tIP_MULTICAST_IF                = 0x9\n\tIP_MULTICAST_LOOP              = 0xb\n\tIP_MULTICAST_TTL               = 0xa\n\tIP_MULTICAST_VIF               = 0xe\n\tIP_OFFMASK                     = 0x1fff\n\tIP_ONESBCAST                   = 0x17\n\tIP_OPTIONS                     = 0x1\n\tIP_ORIGDSTADDR                 = 0x1b\n\tIP_PORTRANGE                   = 0x13\n\tIP_PORTRANGE_DEFAULT           = 0x0\n\tIP_PORTRANGE_HIGH              = 0x1\n\tIP_PORTRANGE_LOW               = 0x2\n\tIP_RECVDSTADDR                 = 0x7\n\tIP_RECVFLOWID                  = 0x5d\n\tIP_RECVIF                      = 0x14\n\tIP_RECVOPTS                    = 0x5\n\tIP_RECVORIGDSTADDR             = 0x1b\n\tIP_RECVRETOPTS                 = 0x6\n\tIP_RECVRSSBUCKETID             = 0x5e\n\tIP_RECVTOS                     = 0x44\n\tIP_RECVTTL                     = 0x41\n\tIP_RETOPTS                     = 0x8\n\tIP_RF                          = 0x8000\n\tIP_RSSBUCKETID                 = 0x5c\n\tIP_RSS_LISTEN_BUCKET           = 0x1a\n\tIP_RSVP_OFF                    = 0x10\n\tIP_RSVP_ON                     = 0xf\n\tIP_RSVP_VIF_OFF                = 0x12\n\tIP_RSVP_VIF_ON                 = 0x11\n\tIP_SENDSRCADDR                 = 0x7\n\tIP_TOS                         = 0x3\n\tIP_TTL                         = 0x4\n\tIP_UNBLOCK_SOURCE              = 0x49\n\tISIG                           = 0x80\n\tISTRIP                         = 0x20\n\tIXANY                          = 0x800\n\tIXOFF                          = 0x400\n\tIXON                           = 0x200\n\tKERN_HOSTNAME                  = 0xa\n\tKERN_OSRELEASE                 = 0x2\n\tKERN_OSTYPE                    = 0x1\n\tKERN_VERSION                   = 0x4\n\tLOCK_EX                        = 0x2\n\tLOCK_NB                        = 0x4\n\tLOCK_SH                        = 0x1\n\tLOCK_UN                        = 0x8\n\tMADV_AUTOSYNC                  = 0x7\n\tMADV_CORE                      = 0x9\n\tMADV_DONTNEED                  = 0x4\n\tMADV_FREE                      = 0x5\n\tMADV_NOCORE                    = 0x8\n\tMADV_NORMAL                    = 0x0\n\tMADV_NOSYNC                    = 0x6\n\tMADV_PROTECT                   = 0xa\n\tMADV_RANDOM                    = 0x1\n\tMADV_SEQUENTIAL                = 0x2\n\tMADV_WILLNEED                  = 0x3\n\tMAP_32BIT                      = 0x80000\n\tMAP_ALIGNED_SUPER              = 0x1000000\n\tMAP_ALIGNMENT_MASK             = -0x1000000\n\tMAP_ALIGNMENT_SHIFT            = 0x18\n\tMAP_ANON                       = 0x1000\n\tMAP_ANONYMOUS                  = 0x1000\n\tMAP_COPY                       = 0x2\n\tMAP_EXCL                       = 0x4000\n\tMAP_FILE                       = 0x0\n\tMAP_FIXED                      = 0x10\n\tMAP_GUARD                      = 0x2000\n\tMAP_HASSEMAPHORE               = 0x200\n\tMAP_NOCORE                     = 0x20000\n\tMAP_NOSYNC                     = 0x800\n\tMAP_PREFAULT_READ              = 0x40000\n\tMAP_PRIVATE                    = 0x2\n\tMAP_RESERVED0020               = 0x20\n\tMAP_RESERVED0040               = 0x40\n\tMAP_RESERVED0080               = 0x80\n\tMAP_RESERVED0100               = 0x100\n\tMAP_SHARED                     = 0x1\n\tMAP_STACK                      = 0x400\n\tMCAST_BLOCK_SOURCE             = 0x54\n\tMCAST_EXCLUDE                  = 0x2\n\tMCAST_INCLUDE                  = 0x1\n\tMCAST_JOIN_GROUP               = 0x50\n\tMCAST_JOIN_SOURCE_GROUP        = 0x52\n\tMCAST_LEAVE_GROUP              = 0x51\n\tMCAST_LEAVE_SOURCE_GROUP       = 0x53\n\tMCAST_UNBLOCK_SOURCE           = 0x55\n\tMCAST_UNDEFINED                = 0x0\n\tMCL_CURRENT                    = 0x1\n\tMCL_FUTURE                     = 0x2\n\tMNT_ACLS                       = 0x8000000\n\tMNT_ASYNC                      = 0x40\n\tMNT_AUTOMOUNTED                = 0x200000000\n\tMNT_BYFSID                     = 0x8000000\n\tMNT_CMDFLAGS                   = 0xd0f0000\n\tMNT_DEFEXPORTED                = 0x200\n\tMNT_DELEXPORT                  = 0x20000\n\tMNT_EXKERB                     = 0x800\n\tMNT_EXPORTANON                 = 0x400\n\tMNT_EXPORTED                   = 0x100\n\tMNT_EXPUBLIC                   = 0x20000000\n\tMNT_EXRDONLY                   = 0x80\n\tMNT_FORCE                      = 0x80000\n\tMNT_GJOURNAL                   = 0x2000000\n\tMNT_IGNORE                     = 0x800000\n\tMNT_LAZY                       = 0x3\n\tMNT_LOCAL                      = 0x1000\n\tMNT_MULTILABEL                 = 0x4000000\n\tMNT_NFS4ACLS                   = 0x10\n\tMNT_NOATIME                    = 0x10000000\n\tMNT_NOCLUSTERR                 = 0x40000000\n\tMNT_NOCLUSTERW                 = 0x80000000\n\tMNT_NOEXEC                     = 0x4\n\tMNT_NONBUSY                    = 0x4000000\n\tMNT_NOSUID                     = 0x8\n\tMNT_NOSYMFOLLOW                = 0x400000\n\tMNT_NOWAIT                     = 0x2\n\tMNT_QUOTA                      = 0x2000\n\tMNT_RDONLY                     = 0x1\n\tMNT_RELOAD                     = 0x40000\n\tMNT_ROOTFS                     = 0x4000\n\tMNT_SNAPSHOT                   = 0x1000000\n\tMNT_SOFTDEP                    = 0x200000\n\tMNT_SUIDDIR                    = 0x100000\n\tMNT_SUJ                        = 0x100000000\n\tMNT_SUSPEND                    = 0x4\n\tMNT_SYNCHRONOUS                = 0x2\n\tMNT_UNION                      = 0x20\n\tMNT_UNTRUSTED                  = 0x800000000\n\tMNT_UPDATE                     = 0x10000\n\tMNT_UPDATEMASK                 = 0xad8d0807e\n\tMNT_USER                       = 0x8000\n\tMNT_VERIFIED                   = 0x400000000\n\tMNT_VISFLAGMASK                = 0xffef0ffff\n\tMNT_WAIT                       = 0x1\n\tMSG_CMSG_CLOEXEC               = 0x40000\n\tMSG_COMPAT                     = 0x8000\n\tMSG_CTRUNC                     = 0x20\n\tMSG_DONTROUTE                  = 0x4\n\tMSG_DONTWAIT                   = 0x80\n\tMSG_EOF                        = 0x100\n\tMSG_EOR                        = 0x8\n\tMSG_NBIO                       = 0x4000\n\tMSG_NOSIGNAL                   = 0x20000\n\tMSG_NOTIFICATION               = 0x2000\n\tMSG_OOB                        = 0x1\n\tMSG_PEEK                       = 0x2\n\tMSG_TRUNC                      = 0x10\n\tMSG_WAITALL                    = 0x40\n\tMSG_WAITFORONE                 = 0x80000\n\tMS_ASYNC                       = 0x1\n\tMS_INVALIDATE                  = 0x2\n\tMS_SYNC                        = 0x0\n\tNAME_MAX                       = 0xff\n\tNET_RT_DUMP                    = 0x1\n\tNET_RT_FLAGS                   = 0x2\n\tNET_RT_IFLIST                  = 0x3\n\tNET_RT_IFLISTL                 = 0x5\n\tNET_RT_IFMALIST                = 0x4\n\tNFDBITS                        = 0x40\n\tNOFLSH                         = 0x80000000\n\tNOKERNINFO                     = 0x2000000\n\tNOTE_ABSTIME                   = 0x10\n\tNOTE_ATTRIB                    = 0x8\n\tNOTE_CHILD                     = 0x4\n\tNOTE_CLOSE                     = 0x100\n\tNOTE_CLOSE_WRITE               = 0x200\n\tNOTE_DELETE                    = 0x1\n\tNOTE_EXEC                      = 0x20000000\n\tNOTE_EXIT                      = 0x80000000\n\tNOTE_EXTEND                    = 0x4\n\tNOTE_FFAND                     = 0x40000000\n\tNOTE_FFCOPY                    = 0xc0000000\n\tNOTE_FFCTRLMASK                = 0xc0000000\n\tNOTE_FFLAGSMASK                = 0xffffff\n\tNOTE_FFNOP                     = 0x0\n\tNOTE_FFOR                      = 0x80000000\n\tNOTE_FILE_POLL                 = 0x2\n\tNOTE_FORK                      = 0x40000000\n\tNOTE_LINK                      = 0x10\n\tNOTE_LOWAT                     = 0x1\n\tNOTE_MSECONDS                  = 0x2\n\tNOTE_NSECONDS                  = 0x8\n\tNOTE_OPEN                      = 0x80\n\tNOTE_PCTRLMASK                 = 0xf0000000\n\tNOTE_PDATAMASK                 = 0xfffff\n\tNOTE_READ                      = 0x400\n\tNOTE_RENAME                    = 0x20\n\tNOTE_REVOKE                    = 0x40\n\tNOTE_SECONDS                   = 0x1\n\tNOTE_TRACK                     = 0x1\n\tNOTE_TRACKERR                  = 0x2\n\tNOTE_TRIGGER                   = 0x1000000\n\tNOTE_USECONDS                  = 0x4\n\tNOTE_WRITE                     = 0x2\n\tOCRNL                          = 0x10\n\tONLCR                          = 0x2\n\tONLRET                         = 0x40\n\tONOCR                          = 0x20\n\tONOEOT                         = 0x8\n\tOPOST                          = 0x1\n\tOXTABS                         = 0x4\n\tO_ACCMODE                      = 0x3\n\tO_APPEND                       = 0x8\n\tO_ASYNC                        = 0x40\n\tO_CLOEXEC                      = 0x100000\n\tO_CREAT                        = 0x200\n\tO_DIRECT                       = 0x10000\n\tO_DIRECTORY                    = 0x20000\n\tO_EXCL                         = 0x800\n\tO_EXEC                         = 0x40000\n\tO_EXLOCK                       = 0x20\n\tO_FSYNC                        = 0x80\n\tO_NDELAY                       = 0x4\n\tO_NOCTTY                       = 0x8000\n\tO_NOFOLLOW                     = 0x100\n\tO_NONBLOCK                     = 0x4\n\tO_RDONLY                       = 0x0\n\tO_RDWR                         = 0x2\n\tO_SHLOCK                       = 0x10\n\tO_SYNC                         = 0x80\n\tO_TRUNC                        = 0x400\n\tO_TTY_INIT                     = 0x80000\n\tO_VERIFY                       = 0x200000\n\tO_WRONLY                       = 0x1\n\tPARENB                         = 0x1000\n\tPARMRK                         = 0x8\n\tPARODD                         = 0x2000\n\tPENDIN                         = 0x20000000\n\tPRIO_PGRP                      = 0x1\n\tPRIO_PROCESS                   = 0x0\n\tPRIO_USER                      = 0x2\n\tPROT_EXEC                      = 0x4\n\tPROT_NONE                      = 0x0\n\tPROT_READ                      = 0x1\n\tPROT_WRITE                     = 0x2\n\tRLIMIT_AS                      = 0xa\n\tRLIMIT_CORE                    = 0x4\n\tRLIMIT_CPU                     = 0x0\n\tRLIMIT_DATA                    = 0x2\n\tRLIMIT_FSIZE                   = 0x1\n\tRLIMIT_MEMLOCK                 = 0x6\n\tRLIMIT_NOFILE                  = 0x8\n\tRLIMIT_NPROC                   = 0x7\n\tRLIMIT_RSS                     = 0x5\n\tRLIMIT_STACK                   = 0x3\n\tRLIM_INFINITY                  = 0x7fffffffffffffff\n\tRTAX_AUTHOR                    = 0x6\n\tRTAX_BRD                       = 0x7\n\tRTAX_DST                       = 0x0\n\tRTAX_GATEWAY                   = 0x1\n\tRTAX_GENMASK                   = 0x3\n\tRTAX_IFA                       = 0x5\n\tRTAX_IFP                       = 0x4\n\tRTAX_MAX                       = 0x8\n\tRTAX_NETMASK                   = 0x2\n\tRTA_AUTHOR                     = 0x40\n\tRTA_BRD                        = 0x80\n\tRTA_DST                        = 0x1\n\tRTA_GATEWAY                    = 0x2\n\tRTA_GENMASK                    = 0x8\n\tRTA_IFA                        = 0x20\n\tRTA_IFP                        = 0x10\n\tRTA_NETMASK                    = 0x4\n\tRTF_BLACKHOLE                  = 0x1000\n\tRTF_BROADCAST                  = 0x400000\n\tRTF_DONE                       = 0x40\n\tRTF_DYNAMIC                    = 0x10\n\tRTF_FIXEDMTU                   = 0x80000\n\tRTF_FMASK                      = 0x1004d808\n\tRTF_GATEWAY                    = 0x2\n\tRTF_GWFLAG_COMPAT              = 0x80000000\n\tRTF_HOST                       = 0x4\n\tRTF_LLDATA                     = 0x400\n\tRTF_LLINFO                     = 0x400\n\tRTF_LOCAL                      = 0x200000\n\tRTF_MODIFIED                   = 0x20\n\tRTF_MULTICAST                  = 0x800000\n\tRTF_PINNED                     = 0x100000\n\tRTF_PROTO1                     = 0x8000\n\tRTF_PROTO2                     = 0x4000\n\tRTF_PROTO3                     = 0x40000\n\tRTF_REJECT                     = 0x8\n\tRTF_RNH_LOCKED                 = 0x40000000\n\tRTF_STATIC                     = 0x800\n\tRTF_STICKY                     = 0x10000000\n\tRTF_UP                         = 0x1\n\tRTF_XRESOLVE                   = 0x200\n\tRTM_ADD                        = 0x1\n\tRTM_CHANGE                     = 0x3\n\tRTM_DELADDR                    = 0xd\n\tRTM_DELETE                     = 0x2\n\tRTM_DELMADDR                   = 0x10\n\tRTM_GET                        = 0x4\n\tRTM_IEEE80211                  = 0x12\n\tRTM_IFANNOUNCE                 = 0x11\n\tRTM_IFINFO                     = 0xe\n\tRTM_LOCK                       = 0x8\n\tRTM_LOSING                     = 0x5\n\tRTM_MISS                       = 0x7\n\tRTM_NEWADDR                    = 0xc\n\tRTM_NEWMADDR                   = 0xf\n\tRTM_REDIRECT                   = 0x6\n\tRTM_RESOLVE                    = 0xb\n\tRTM_RTTUNIT                    = 0xf4240\n\tRTM_VERSION                    = 0x5\n\tRTV_EXPIRE                     = 0x4\n\tRTV_HOPCOUNT                   = 0x2\n\tRTV_MTU                        = 0x1\n\tRTV_RPIPE                      = 0x8\n\tRTV_RTT                        = 0x40\n\tRTV_RTTVAR                     = 0x80\n\tRTV_SPIPE                      = 0x10\n\tRTV_SSTHRESH                   = 0x20\n\tRTV_WEIGHT                     = 0x100\n\tRT_ALL_FIBS                    = -0x1\n\tRT_BLACKHOLE                   = 0x40\n\tRT_DEFAULT_FIB                 = 0x0\n\tRT_HAS_GW                      = 0x80\n\tRT_HAS_HEADER                  = 0x10\n\tRT_HAS_HEADER_BIT              = 0x4\n\tRT_L2_ME                       = 0x4\n\tRT_L2_ME_BIT                   = 0x2\n\tRT_LLE_CACHE                   = 0x100\n\tRT_MAY_LOOP                    = 0x8\n\tRT_MAY_LOOP_BIT                = 0x3\n\tRT_REJECT                      = 0x20\n\tRUSAGE_CHILDREN                = -0x1\n\tRUSAGE_SELF                    = 0x0\n\tRUSAGE_THREAD                  = 0x1\n\tSCM_BINTIME                    = 0x4\n\tSCM_CREDS                      = 0x3\n\tSCM_MONOTONIC                  = 0x6\n\tSCM_REALTIME                   = 0x5\n\tSCM_RIGHTS                     = 0x1\n\tSCM_TIMESTAMP                  = 0x2\n\tSCM_TIME_INFO                  = 0x7\n\tSHUT_RD                        = 0x0\n\tSHUT_RDWR                      = 0x2\n\tSHUT_WR                        = 0x1\n\tSIOCADDMULTI                   = 0x80206931\n\tSIOCAIFADDR                    = 0x8040691a\n\tSIOCAIFGROUP                   = 0x80286987\n\tSIOCATMARK                     = 0x40047307\n\tSIOCDELMULTI                   = 0x80206932\n\tSIOCDIFADDR                    = 0x80206919\n\tSIOCDIFGROUP                   = 0x80286989\n\tSIOCDIFPHYADDR                 = 0x80206949\n\tSIOCGDRVSPEC                   = 0xc028697b\n\tSIOCGETSGCNT                   = 0xc0207210\n\tSIOCGETVIFCNT                  = 0xc028720f\n\tSIOCGHIWAT                     = 0x40047301\n\tSIOCGHWADDR                    = 0xc020693e\n\tSIOCGI2C                       = 0xc020693d\n\tSIOCGIFADDR                    = 0xc0206921\n\tSIOCGIFBRDADDR                 = 0xc0206923\n\tSIOCGIFCAP                     = 0xc020691f\n\tSIOCGIFCONF                    = 0xc0106924\n\tSIOCGIFDESCR                   = 0xc020692a\n\tSIOCGIFDSTADDR                 = 0xc0206922\n\tSIOCGIFFIB                     = 0xc020695c\n\tSIOCGIFFLAGS                   = 0xc0206911\n\tSIOCGIFGENERIC                 = 0xc020693a\n\tSIOCGIFGMEMB                   = 0xc028698a\n\tSIOCGIFGROUP                   = 0xc0286988\n\tSIOCGIFINDEX                   = 0xc0206920\n\tSIOCGIFMAC                     = 0xc0206926\n\tSIOCGIFMEDIA                   = 0xc0306938\n\tSIOCGIFMETRIC                  = 0xc0206917\n\tSIOCGIFMTU                     = 0xc0206933\n\tSIOCGIFNETMASK                 = 0xc0206925\n\tSIOCGIFPDSTADDR                = 0xc0206948\n\tSIOCGIFPHYS                    = 0xc0206935\n\tSIOCGIFPSRCADDR                = 0xc0206947\n\tSIOCGIFRSSHASH                 = 0xc0186997\n\tSIOCGIFRSSKEY                  = 0xc0946996\n\tSIOCGIFSTATUS                  = 0xc331693b\n\tSIOCGIFXMEDIA                  = 0xc030698b\n\tSIOCGLANPCP                    = 0xc0206998\n\tSIOCGLOWAT                     = 0x40047303\n\tSIOCGPGRP                      = 0x40047309\n\tSIOCGPRIVATE_0                 = 0xc0206950\n\tSIOCGPRIVATE_1                 = 0xc0206951\n\tSIOCGTUNFIB                    = 0xc020695e\n\tSIOCIFCREATE                   = 0xc020697a\n\tSIOCIFCREATE2                  = 0xc020697c\n\tSIOCIFDESTROY                  = 0x80206979\n\tSIOCIFGCLONERS                 = 0xc0106978\n\tSIOCSDRVSPEC                   = 0x8028697b\n\tSIOCSHIWAT                     = 0x80047300\n\tSIOCSIFADDR                    = 0x8020690c\n\tSIOCSIFBRDADDR                 = 0x80206913\n\tSIOCSIFCAP                     = 0x8020691e\n\tSIOCSIFDESCR                   = 0x80206929\n\tSIOCSIFDSTADDR                 = 0x8020690e\n\tSIOCSIFFIB                     = 0x8020695d\n\tSIOCSIFFLAGS                   = 0x80206910\n\tSIOCSIFGENERIC                 = 0x80206939\n\tSIOCSIFLLADDR                  = 0x8020693c\n\tSIOCSIFMAC                     = 0x80206927\n\tSIOCSIFMEDIA                   = 0xc0206937\n\tSIOCSIFMETRIC                  = 0x80206918\n\tSIOCSIFMTU                     = 0x80206934\n\tSIOCSIFNAME                    = 0x80206928\n\tSIOCSIFNETMASK                 = 0x80206916\n\tSIOCSIFPHYADDR                 = 0x80406946\n\tSIOCSIFPHYS                    = 0x80206936\n\tSIOCSIFRVNET                   = 0xc020695b\n\tSIOCSIFVNET                    = 0xc020695a\n\tSIOCSLANPCP                    = 0x80206999\n\tSIOCSLOWAT                     = 0x80047302\n\tSIOCSPGRP                      = 0x80047308\n\tSIOCSTUNFIB                    = 0x8020695f\n\tSOCK_CLOEXEC                   = 0x10000000\n\tSOCK_DGRAM                     = 0x2\n\tSOCK_MAXADDRLEN                = 0xff\n\tSOCK_NONBLOCK                  = 0x20000000\n\tSOCK_RAW                       = 0x3\n\tSOCK_RDM                       = 0x4\n\tSOCK_SEQPACKET                 = 0x5\n\tSOCK_STREAM                    = 0x1\n\tSOL_SOCKET                     = 0xffff\n\tSOMAXCONN                      = 0x80\n\tSO_ACCEPTCONN                  = 0x2\n\tSO_ACCEPTFILTER                = 0x1000\n\tSO_BINTIME                     = 0x2000\n\tSO_BROADCAST                   = 0x20\n\tSO_DEBUG                       = 0x1\n\tSO_DOMAIN                      = 0x1019\n\tSO_DONTROUTE                   = 0x10\n\tSO_ERROR                       = 0x1007\n\tSO_KEEPALIVE                   = 0x8\n\tSO_LABEL                       = 0x1009\n\tSO_LINGER                      = 0x80\n\tSO_LISTENINCQLEN               = 0x1013\n\tSO_LISTENQLEN                  = 0x1012\n\tSO_LISTENQLIMIT                = 0x1011\n\tSO_MAX_PACING_RATE             = 0x1018\n\tSO_NOSIGPIPE                   = 0x800\n\tSO_NO_DDP                      = 0x8000\n\tSO_NO_OFFLOAD                  = 0x4000\n\tSO_OOBINLINE                   = 0x100\n\tSO_PEERLABEL                   = 0x1010\n\tSO_PROTOCOL                    = 0x1016\n\tSO_PROTOTYPE                   = 0x1016\n\tSO_RCVBUF                      = 0x1002\n\tSO_RCVLOWAT                    = 0x1004\n\tSO_RCVTIMEO                    = 0x1006\n\tSO_REUSEADDR                   = 0x4\n\tSO_REUSEPORT                   = 0x200\n\tSO_REUSEPORT_LB                = 0x10000\n\tSO_SETFIB                      = 0x1014\n\tSO_SNDBUF                      = 0x1001\n\tSO_SNDLOWAT                    = 0x1003\n\tSO_SNDTIMEO                    = 0x1005\n\tSO_TIMESTAMP                   = 0x400\n\tSO_TS_BINTIME                  = 0x1\n\tSO_TS_CLOCK                    = 0x1017\n\tSO_TS_CLOCK_MAX                = 0x3\n\tSO_TS_DEFAULT                  = 0x0\n\tSO_TS_MONOTONIC                = 0x3\n\tSO_TS_REALTIME                 = 0x2\n\tSO_TS_REALTIME_MICRO           = 0x0\n\tSO_TYPE                        = 0x1008\n\tSO_USELOOPBACK                 = 0x40\n\tSO_USER_COOKIE                 = 0x1015\n\tSO_VENDOR                      = 0x80000000\n\tS_BLKSIZE                      = 0x200\n\tS_IEXEC                        = 0x40\n\tS_IFBLK                        = 0x6000\n\tS_IFCHR                        = 0x2000\n\tS_IFDIR                        = 0x4000\n\tS_IFIFO                        = 0x1000\n\tS_IFLNK                        = 0xa000\n\tS_IFMT                         = 0xf000\n\tS_IFREG                        = 0x8000\n\tS_IFSOCK                       = 0xc000\n\tS_IFWHT                        = 0xe000\n\tS_IREAD                        = 0x100\n\tS_IRGRP                        = 0x20\n\tS_IROTH                        = 0x4\n\tS_IRUSR                        = 0x100\n\tS_IRWXG                        = 0x38\n\tS_IRWXO                        = 0x7\n\tS_IRWXU                        = 0x1c0\n\tS_ISGID                        = 0x400\n\tS_ISTXT                        = 0x200\n\tS_ISUID                        = 0x800\n\tS_ISVTX                        = 0x200\n\tS_IWGRP                        = 0x10\n\tS_IWOTH                        = 0x2\n\tS_IWRITE                       = 0x80\n\tS_IWUSR                        = 0x80\n\tS_IXGRP                        = 0x8\n\tS_IXOTH                        = 0x1\n\tS_IXUSR                        = 0x40\n\tTAB0                           = 0x0\n\tTAB3                           = 0x4\n\tTABDLY                         = 0x4\n\tTCIFLUSH                       = 0x1\n\tTCIOFF                         = 0x3\n\tTCIOFLUSH                      = 0x3\n\tTCION                          = 0x4\n\tTCOFLUSH                       = 0x2\n\tTCOOFF                         = 0x1\n\tTCOON                          = 0x2\n\tTCP_BBR_ACK_COMP_ALG           = 0x448\n\tTCP_BBR_DRAIN_INC_EXTRA        = 0x43c\n\tTCP_BBR_DRAIN_PG               = 0x42e\n\tTCP_BBR_EXTRA_GAIN             = 0x449\n\tTCP_BBR_IWINTSO                = 0x42b\n\tTCP_BBR_LOWGAIN_FD             = 0x436\n\tTCP_BBR_LOWGAIN_HALF           = 0x435\n\tTCP_BBR_LOWGAIN_THRESH         = 0x434\n\tTCP_BBR_MAX_RTO                = 0x439\n\tTCP_BBR_MIN_RTO                = 0x438\n\tTCP_BBR_ONE_RETRAN             = 0x431\n\tTCP_BBR_PACE_CROSS             = 0x442\n\tTCP_BBR_PACE_DEL_TAR           = 0x43f\n\tTCP_BBR_PACE_PER_SEC           = 0x43e\n\tTCP_BBR_PACE_SEG_MAX           = 0x440\n\tTCP_BBR_PACE_SEG_MIN           = 0x441\n\tTCP_BBR_PROBE_RTT_GAIN         = 0x44d\n\tTCP_BBR_PROBE_RTT_INT          = 0x430\n\tTCP_BBR_PROBE_RTT_LEN          = 0x44e\n\tTCP_BBR_RACK_RTT_USE           = 0x44a\n\tTCP_BBR_RECFORCE               = 0x42c\n\tTCP_BBR_REC_OVER_HPTS          = 0x43a\n\tTCP_BBR_RETRAN_WTSO            = 0x44b\n\tTCP_BBR_RWND_IS_APP            = 0x42f\n\tTCP_BBR_STARTUP_EXIT_EPOCH     = 0x43d\n\tTCP_BBR_STARTUP_LOSS_EXIT      = 0x432\n\tTCP_BBR_STARTUP_PG             = 0x42d\n\tTCP_BBR_UNLIMITED              = 0x43b\n\tTCP_BBR_USEDEL_RATE            = 0x437\n\tTCP_BBR_USE_LOWGAIN            = 0x433\n\tTCP_CA_NAME_MAX                = 0x10\n\tTCP_CCALGOOPT                  = 0x41\n\tTCP_CONGESTION                 = 0x40\n\tTCP_DATA_AFTER_CLOSE           = 0x44c\n\tTCP_DELACK                     = 0x48\n\tTCP_FASTOPEN                   = 0x401\n\tTCP_FASTOPEN_MAX_COOKIE_LEN    = 0x10\n\tTCP_FASTOPEN_MIN_COOKIE_LEN    = 0x4\n\tTCP_FASTOPEN_PSK_LEN           = 0x10\n\tTCP_FUNCTION_BLK               = 0x2000\n\tTCP_FUNCTION_NAME_LEN_MAX      = 0x20\n\tTCP_INFO                       = 0x20\n\tTCP_KEEPCNT                    = 0x400\n\tTCP_KEEPIDLE                   = 0x100\n\tTCP_KEEPINIT                   = 0x80\n\tTCP_KEEPINTVL                  = 0x200\n\tTCP_LOG                        = 0x22\n\tTCP_LOGBUF                     = 0x23\n\tTCP_LOGDUMP                    = 0x25\n\tTCP_LOGDUMPID                  = 0x26\n\tTCP_LOGID                      = 0x24\n\tTCP_LOG_ID_LEN                 = 0x40\n\tTCP_MAXBURST                   = 0x4\n\tTCP_MAXHLEN                    = 0x3c\n\tTCP_MAXOLEN                    = 0x28\n\tTCP_MAXSEG                     = 0x2\n\tTCP_MAXWIN                     = 0xffff\n\tTCP_MAX_SACK                   = 0x4\n\tTCP_MAX_WINSHIFT               = 0xe\n\tTCP_MD5SIG                     = 0x10\n\tTCP_MINMSS                     = 0xd8\n\tTCP_MSS                        = 0x218\n\tTCP_NODELAY                    = 0x1\n\tTCP_NOOPT                      = 0x8\n\tTCP_NOPUSH                     = 0x4\n\tTCP_PCAP_IN                    = 0x1000\n\tTCP_PCAP_OUT                   = 0x800\n\tTCP_RACK_EARLY_RECOV           = 0x423\n\tTCP_RACK_EARLY_SEG             = 0x424\n\tTCP_RACK_IDLE_REDUCE_HIGH      = 0x444\n\tTCP_RACK_MIN_PACE              = 0x445\n\tTCP_RACK_MIN_PACE_SEG          = 0x446\n\tTCP_RACK_MIN_TO                = 0x422\n\tTCP_RACK_PACE_ALWAYS           = 0x41f\n\tTCP_RACK_PACE_MAX_SEG          = 0x41e\n\tTCP_RACK_PACE_REDUCE           = 0x41d\n\tTCP_RACK_PKT_DELAY             = 0x428\n\tTCP_RACK_PROP                  = 0x41b\n\tTCP_RACK_PROP_RATE             = 0x420\n\tTCP_RACK_PRR_SENDALOT          = 0x421\n\tTCP_RACK_REORD_FADE            = 0x426\n\tTCP_RACK_REORD_THRESH          = 0x425\n\tTCP_RACK_SESS_CWV              = 0x42a\n\tTCP_RACK_TLP_INC_VAR           = 0x429\n\tTCP_RACK_TLP_REDUCE            = 0x41c\n\tTCP_RACK_TLP_THRESH            = 0x427\n\tTCP_RACK_TLP_USE               = 0x447\n\tTCP_VENDOR                     = 0x80000000\n\tTCSAFLUSH                      = 0x2\n\tTIMER_ABSTIME                  = 0x1\n\tTIMER_RELTIME                  = 0x0\n\tTIOCCBRK                       = 0x2000747a\n\tTIOCCDTR                       = 0x20007478\n\tTIOCCONS                       = 0x80047462\n\tTIOCDRAIN                      = 0x2000745e\n\tTIOCEXCL                       = 0x2000740d\n\tTIOCEXT                        = 0x80047460\n\tTIOCFLUSH                      = 0x80047410\n\tTIOCGDRAINWAIT                 = 0x40047456\n\tTIOCGETA                       = 0x402c7413\n\tTIOCGETD                       = 0x4004741a\n\tTIOCGPGRP                      = 0x40047477\n\tTIOCGPTN                       = 0x4004740f\n\tTIOCGSID                       = 0x40047463\n\tTIOCGWINSZ                     = 0x40087468\n\tTIOCMBIC                       = 0x8004746b\n\tTIOCMBIS                       = 0x8004746c\n\tTIOCMGDTRWAIT                  = 0x4004745a\n\tTIOCMGET                       = 0x4004746a\n\tTIOCMSDTRWAIT                  = 0x8004745b\n\tTIOCMSET                       = 0x8004746d\n\tTIOCM_CAR                      = 0x40\n\tTIOCM_CD                       = 0x40\n\tTIOCM_CTS                      = 0x20\n\tTIOCM_DCD                      = 0x40\n\tTIOCM_DSR                      = 0x100\n\tTIOCM_DTR                      = 0x2\n\tTIOCM_LE                       = 0x1\n\tTIOCM_RI                       = 0x80\n\tTIOCM_RNG                      = 0x80\n\tTIOCM_RTS                      = 0x4\n\tTIOCM_SR                       = 0x10\n\tTIOCM_ST                       = 0x8\n\tTIOCNOTTY                      = 0x20007471\n\tTIOCNXCL                       = 0x2000740e\n\tTIOCOUTQ                       = 0x40047473\n\tTIOCPKT                        = 0x80047470\n\tTIOCPKT_DATA                   = 0x0\n\tTIOCPKT_DOSTOP                 = 0x20\n\tTIOCPKT_FLUSHREAD              = 0x1\n\tTIOCPKT_FLUSHWRITE             = 0x2\n\tTIOCPKT_IOCTL                  = 0x40\n\tTIOCPKT_NOSTOP                 = 0x10\n\tTIOCPKT_START                  = 0x8\n\tTIOCPKT_STOP                   = 0x4\n\tTIOCPTMASTER                   = 0x2000741c\n\tTIOCSBRK                       = 0x2000747b\n\tTIOCSCTTY                      = 0x20007461\n\tTIOCSDRAINWAIT                 = 0x80047457\n\tTIOCSDTR                       = 0x20007479\n\tTIOCSETA                       = 0x802c7414\n\tTIOCSETAF                      = 0x802c7416\n\tTIOCSETAW                      = 0x802c7415\n\tTIOCSETD                       = 0x8004741b\n\tTIOCSIG                        = 0x2004745f\n\tTIOCSPGRP                      = 0x80047476\n\tTIOCSTART                      = 0x2000746e\n\tTIOCSTAT                       = 0x20007465\n\tTIOCSTI                        = 0x80017472\n\tTIOCSTOP                       = 0x2000746f\n\tTIOCSWINSZ                     = 0x80087467\n\tTIOCTIMESTAMP                  = 0x40107459\n\tTIOCUCNTL                      = 0x80047466\n\tTOSTOP                         = 0x400000\n\tUTIME_NOW                      = -0x1\n\tUTIME_OMIT                     = -0x2\n\tVDISCARD                       = 0xf\n\tVDSUSP                         = 0xb\n\tVEOF                           = 0x0\n\tVEOL                           = 0x1\n\tVEOL2                          = 0x2\n\tVERASE                         = 0x3\n\tVERASE2                        = 0x7\n\tVINTR                          = 0x8\n\tVKILL                          = 0x5\n\tVLNEXT                         = 0xe\n\tVMIN                           = 0x10\n\tVQUIT                          = 0x9\n\tVREPRINT                       = 0x6\n\tVSTART                         = 0xc\n\tVSTATUS                        = 0x12\n\tVSTOP                          = 0xd\n\tVSUSP                          = 0xa\n\tVTIME                          = 0x11\n\tVWERASE                        = 0x4\n\tWCONTINUED                     = 0x4\n\tWCOREFLAG                      = 0x80\n\tWEXITED                        = 0x10\n\tWLINUXCLONE                    = 0x80000000\n\tWNOHANG                        = 0x1\n\tWNOWAIT                        = 0x8\n\tWSTOPPED                       = 0x2\n\tWTRAPPED                       = 0x20\n\tWUNTRACED                      = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x59)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x55)\n\tECAPMODE        = syscall.Errno(0x5e)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDOOFUS         = syscall.Errno(0x58)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x52)\n\tEILSEQ          = syscall.Errno(0x56)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x60)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5a)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x57)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x5b)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x53)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCAPABLE     = syscall.Errno(0x5d)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x5f)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEOWNERDEAD      = syscall.Errno(0x60)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x5c)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGLIBRT  = syscall.Signal(0x21)\n\tSIGLWP    = syscall.Signal(0x20)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTHR    = syscall.Signal(0x20)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIDRM\", \"identifier removed\"},\n\t{83, \"ENOMSG\", \"no message of desired type\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"ECANCELED\", \"operation canceled\"},\n\t{86, \"EILSEQ\", \"illegal byte sequence\"},\n\t{87, \"ENOATTR\", \"attribute not found\"},\n\t{88, \"EDOOFUS\", \"programming error\"},\n\t{89, \"EBADMSG\", \"bad message\"},\n\t{90, \"EMULTIHOP\", \"multihop attempted\"},\n\t{91, \"ENOLINK\", \"link has been severed\"},\n\t{92, \"EPROTO\", \"protocol error\"},\n\t{93, \"ENOTCAPABLE\", \"capabilities insufficient\"},\n\t{94, \"ECAPMODE\", \"not permitted in capability mode\"},\n\t{95, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{96, \"EOWNERDEAD\", \"previous owner died\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"unknown signal\"},\n\t{33, \"SIGLIBRT\", \"unknown signal\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go",
    "content": "// mkerrors.sh\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,freebsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                   = 0x10\n\tAF_ARP                         = 0x23\n\tAF_ATM                         = 0x1e\n\tAF_BLUETOOTH                   = 0x24\n\tAF_CCITT                       = 0xa\n\tAF_CHAOS                       = 0x5\n\tAF_CNT                         = 0x15\n\tAF_COIP                        = 0x14\n\tAF_DATAKIT                     = 0x9\n\tAF_DECnet                      = 0xc\n\tAF_DLI                         = 0xd\n\tAF_E164                        = 0x1a\n\tAF_ECMA                        = 0x8\n\tAF_HYLINK                      = 0xf\n\tAF_IEEE80211                   = 0x25\n\tAF_IMPLINK                     = 0x3\n\tAF_INET                        = 0x2\n\tAF_INET6                       = 0x1c\n\tAF_INET6_SDP                   = 0x2a\n\tAF_INET_SDP                    = 0x28\n\tAF_IPX                         = 0x17\n\tAF_ISDN                        = 0x1a\n\tAF_ISO                         = 0x7\n\tAF_LAT                         = 0xe\n\tAF_LINK                        = 0x12\n\tAF_LOCAL                       = 0x1\n\tAF_MAX                         = 0x2a\n\tAF_NATM                        = 0x1d\n\tAF_NETBIOS                     = 0x6\n\tAF_NETGRAPH                    = 0x20\n\tAF_OSI                         = 0x7\n\tAF_PUP                         = 0x4\n\tAF_ROUTE                       = 0x11\n\tAF_SCLUSTER                    = 0x22\n\tAF_SIP                         = 0x18\n\tAF_SLOW                        = 0x21\n\tAF_SNA                         = 0xb\n\tAF_UNIX                        = 0x1\n\tAF_UNSPEC                      = 0x0\n\tAF_VENDOR00                    = 0x27\n\tAF_VENDOR01                    = 0x29\n\tAF_VENDOR02                    = 0x2b\n\tAF_VENDOR03                    = 0x2d\n\tAF_VENDOR04                    = 0x2f\n\tAF_VENDOR05                    = 0x31\n\tAF_VENDOR06                    = 0x33\n\tAF_VENDOR07                    = 0x35\n\tAF_VENDOR08                    = 0x37\n\tAF_VENDOR09                    = 0x39\n\tAF_VENDOR10                    = 0x3b\n\tAF_VENDOR11                    = 0x3d\n\tAF_VENDOR12                    = 0x3f\n\tAF_VENDOR13                    = 0x41\n\tAF_VENDOR14                    = 0x43\n\tAF_VENDOR15                    = 0x45\n\tAF_VENDOR16                    = 0x47\n\tAF_VENDOR17                    = 0x49\n\tAF_VENDOR18                    = 0x4b\n\tAF_VENDOR19                    = 0x4d\n\tAF_VENDOR20                    = 0x4f\n\tAF_VENDOR21                    = 0x51\n\tAF_VENDOR22                    = 0x53\n\tAF_VENDOR23                    = 0x55\n\tAF_VENDOR24                    = 0x57\n\tAF_VENDOR25                    = 0x59\n\tAF_VENDOR26                    = 0x5b\n\tAF_VENDOR27                    = 0x5d\n\tAF_VENDOR28                    = 0x5f\n\tAF_VENDOR29                    = 0x61\n\tAF_VENDOR30                    = 0x63\n\tAF_VENDOR31                    = 0x65\n\tAF_VENDOR32                    = 0x67\n\tAF_VENDOR33                    = 0x69\n\tAF_VENDOR34                    = 0x6b\n\tAF_VENDOR35                    = 0x6d\n\tAF_VENDOR36                    = 0x6f\n\tAF_VENDOR37                    = 0x71\n\tAF_VENDOR38                    = 0x73\n\tAF_VENDOR39                    = 0x75\n\tAF_VENDOR40                    = 0x77\n\tAF_VENDOR41                    = 0x79\n\tAF_VENDOR42                    = 0x7b\n\tAF_VENDOR43                    = 0x7d\n\tAF_VENDOR44                    = 0x7f\n\tAF_VENDOR45                    = 0x81\n\tAF_VENDOR46                    = 0x83\n\tAF_VENDOR47                    = 0x85\n\tALTWERASE                      = 0x200\n\tB0                             = 0x0\n\tB110                           = 0x6e\n\tB115200                        = 0x1c200\n\tB1200                          = 0x4b0\n\tB134                           = 0x86\n\tB14400                         = 0x3840\n\tB150                           = 0x96\n\tB1800                          = 0x708\n\tB19200                         = 0x4b00\n\tB200                           = 0xc8\n\tB230400                        = 0x38400\n\tB2400                          = 0x960\n\tB28800                         = 0x7080\n\tB300                           = 0x12c\n\tB38400                         = 0x9600\n\tB460800                        = 0x70800\n\tB4800                          = 0x12c0\n\tB50                            = 0x32\n\tB57600                         = 0xe100\n\tB600                           = 0x258\n\tB7200                          = 0x1c20\n\tB75                            = 0x4b\n\tB76800                         = 0x12c00\n\tB921600                        = 0xe1000\n\tB9600                          = 0x2580\n\tBIOCFEEDBACK                   = 0x8004427c\n\tBIOCFLUSH                      = 0x20004268\n\tBIOCGBLEN                      = 0x40044266\n\tBIOCGDIRECTION                 = 0x40044276\n\tBIOCGDLT                       = 0x4004426a\n\tBIOCGDLTLIST                   = 0xc0084279\n\tBIOCGETBUFMODE                 = 0x4004427d\n\tBIOCGETIF                      = 0x4020426b\n\tBIOCGETZMAX                    = 0x4004427f\n\tBIOCGHDRCMPLT                  = 0x40044274\n\tBIOCGRSIG                      = 0x40044272\n\tBIOCGRTIMEOUT                  = 0x4010426e\n\tBIOCGSEESENT                   = 0x40044276\n\tBIOCGSTATS                     = 0x4008426f\n\tBIOCGTSTAMP                    = 0x40044283\n\tBIOCIMMEDIATE                  = 0x80044270\n\tBIOCLOCK                       = 0x2000427a\n\tBIOCPROMISC                    = 0x20004269\n\tBIOCROTZBUF                    = 0x400c4280\n\tBIOCSBLEN                      = 0xc0044266\n\tBIOCSDIRECTION                 = 0x80044277\n\tBIOCSDLT                       = 0x80044278\n\tBIOCSETBUFMODE                 = 0x8004427e\n\tBIOCSETF                       = 0x80084267\n\tBIOCSETFNR                     = 0x80084282\n\tBIOCSETIF                      = 0x8020426c\n\tBIOCSETWF                      = 0x8008427b\n\tBIOCSETZBUF                    = 0x800c4281\n\tBIOCSHDRCMPLT                  = 0x80044275\n\tBIOCSRSIG                      = 0x80044273\n\tBIOCSRTIMEOUT                  = 0x8010426d\n\tBIOCSSEESENT                   = 0x80044277\n\tBIOCSTSTAMP                    = 0x80044284\n\tBIOCVERSION                    = 0x40044271\n\tBPF_A                          = 0x10\n\tBPF_ABS                        = 0x20\n\tBPF_ADD                        = 0x0\n\tBPF_ALIGNMENT                  = 0x4\n\tBPF_ALU                        = 0x4\n\tBPF_AND                        = 0x50\n\tBPF_B                          = 0x10\n\tBPF_BUFMODE_BUFFER             = 0x1\n\tBPF_BUFMODE_ZBUF               = 0x2\n\tBPF_DIV                        = 0x30\n\tBPF_H                          = 0x8\n\tBPF_IMM                        = 0x0\n\tBPF_IND                        = 0x40\n\tBPF_JA                         = 0x0\n\tBPF_JEQ                        = 0x10\n\tBPF_JGE                        = 0x30\n\tBPF_JGT                        = 0x20\n\tBPF_JMP                        = 0x5\n\tBPF_JSET                       = 0x40\n\tBPF_K                          = 0x0\n\tBPF_LD                         = 0x0\n\tBPF_LDX                        = 0x1\n\tBPF_LEN                        = 0x80\n\tBPF_LSH                        = 0x60\n\tBPF_MAJOR_VERSION              = 0x1\n\tBPF_MAXBUFSIZE                 = 0x80000\n\tBPF_MAXINSNS                   = 0x200\n\tBPF_MEM                        = 0x60\n\tBPF_MEMWORDS                   = 0x10\n\tBPF_MINBUFSIZE                 = 0x20\n\tBPF_MINOR_VERSION              = 0x1\n\tBPF_MISC                       = 0x7\n\tBPF_MOD                        = 0x90\n\tBPF_MSH                        = 0xa0\n\tBPF_MUL                        = 0x20\n\tBPF_NEG                        = 0x80\n\tBPF_OR                         = 0x40\n\tBPF_RELEASE                    = 0x30bb6\n\tBPF_RET                        = 0x6\n\tBPF_RSH                        = 0x70\n\tBPF_ST                         = 0x2\n\tBPF_STX                        = 0x3\n\tBPF_SUB                        = 0x10\n\tBPF_TAX                        = 0x0\n\tBPF_TXA                        = 0x80\n\tBPF_T_BINTIME                  = 0x2\n\tBPF_T_BINTIME_FAST             = 0x102\n\tBPF_T_BINTIME_MONOTONIC        = 0x202\n\tBPF_T_BINTIME_MONOTONIC_FAST   = 0x302\n\tBPF_T_FAST                     = 0x100\n\tBPF_T_FLAG_MASK                = 0x300\n\tBPF_T_FORMAT_MASK              = 0x3\n\tBPF_T_MICROTIME                = 0x0\n\tBPF_T_MICROTIME_FAST           = 0x100\n\tBPF_T_MICROTIME_MONOTONIC      = 0x200\n\tBPF_T_MICROTIME_MONOTONIC_FAST = 0x300\n\tBPF_T_MONOTONIC                = 0x200\n\tBPF_T_MONOTONIC_FAST           = 0x300\n\tBPF_T_NANOTIME                 = 0x1\n\tBPF_T_NANOTIME_FAST            = 0x101\n\tBPF_T_NANOTIME_MONOTONIC       = 0x201\n\tBPF_T_NANOTIME_MONOTONIC_FAST  = 0x301\n\tBPF_T_NONE                     = 0x3\n\tBPF_T_NORMAL                   = 0x0\n\tBPF_W                          = 0x0\n\tBPF_X                          = 0x8\n\tBPF_XOR                        = 0xa0\n\tBRKINT                         = 0x2\n\tCAP_ACCEPT                     = 0x200000020000000\n\tCAP_ACL_CHECK                  = 0x400000000010000\n\tCAP_ACL_DELETE                 = 0x400000000020000\n\tCAP_ACL_GET                    = 0x400000000040000\n\tCAP_ACL_SET                    = 0x400000000080000\n\tCAP_ALL0                       = 0x20007ffffffffff\n\tCAP_ALL1                       = 0x4000000001fffff\n\tCAP_BIND                       = 0x200000040000000\n\tCAP_BINDAT                     = 0x200008000000400\n\tCAP_CHFLAGSAT                  = 0x200000000001400\n\tCAP_CONNECT                    = 0x200000080000000\n\tCAP_CONNECTAT                  = 0x200010000000400\n\tCAP_CREATE                     = 0x200000000000040\n\tCAP_EVENT                      = 0x400000000000020\n\tCAP_EXTATTR_DELETE             = 0x400000000001000\n\tCAP_EXTATTR_GET                = 0x400000000002000\n\tCAP_EXTATTR_LIST               = 0x400000000004000\n\tCAP_EXTATTR_SET                = 0x400000000008000\n\tCAP_FCHDIR                     = 0x200000000000800\n\tCAP_FCHFLAGS                   = 0x200000000001000\n\tCAP_FCHMOD                     = 0x200000000002000\n\tCAP_FCHMODAT                   = 0x200000000002400\n\tCAP_FCHOWN                     = 0x200000000004000\n\tCAP_FCHOWNAT                   = 0x200000000004400\n\tCAP_FCNTL                      = 0x200000000008000\n\tCAP_FCNTL_ALL                  = 0x78\n\tCAP_FCNTL_GETFL                = 0x8\n\tCAP_FCNTL_GETOWN               = 0x20\n\tCAP_FCNTL_SETFL                = 0x10\n\tCAP_FCNTL_SETOWN               = 0x40\n\tCAP_FEXECVE                    = 0x200000000000080\n\tCAP_FLOCK                      = 0x200000000010000\n\tCAP_FPATHCONF                  = 0x200000000020000\n\tCAP_FSCK                       = 0x200000000040000\n\tCAP_FSTAT                      = 0x200000000080000\n\tCAP_FSTATAT                    = 0x200000000080400\n\tCAP_FSTATFS                    = 0x200000000100000\n\tCAP_FSYNC                      = 0x200000000000100\n\tCAP_FTRUNCATE                  = 0x200000000000200\n\tCAP_FUTIMES                    = 0x200000000200000\n\tCAP_FUTIMESAT                  = 0x200000000200400\n\tCAP_GETPEERNAME                = 0x200000100000000\n\tCAP_GETSOCKNAME                = 0x200000200000000\n\tCAP_GETSOCKOPT                 = 0x200000400000000\n\tCAP_IOCTL                      = 0x400000000000080\n\tCAP_IOCTLS_ALL                 = 0x7fffffff\n\tCAP_KQUEUE                     = 0x400000000100040\n\tCAP_KQUEUE_CHANGE              = 0x400000000100000\n\tCAP_KQUEUE_EVENT               = 0x400000000000040\n\tCAP_LINKAT_SOURCE              = 0x200020000000400\n\tCAP_LINKAT_TARGET              = 0x200000000400400\n\tCAP_LISTEN                     = 0x200000800000000\n\tCAP_LOOKUP                     = 0x200000000000400\n\tCAP_MAC_GET                    = 0x400000000000001\n\tCAP_MAC_SET                    = 0x400000000000002\n\tCAP_MKDIRAT                    = 0x200000000800400\n\tCAP_MKFIFOAT                   = 0x200000001000400\n\tCAP_MKNODAT                    = 0x200000002000400\n\tCAP_MMAP                       = 0x200000000000010\n\tCAP_MMAP_R                     = 0x20000000000001d\n\tCAP_MMAP_RW                    = 0x20000000000001f\n\tCAP_MMAP_RWX                   = 0x20000000000003f\n\tCAP_MMAP_RX                    = 0x20000000000003d\n\tCAP_MMAP_W                     = 0x20000000000001e\n\tCAP_MMAP_WX                    = 0x20000000000003e\n\tCAP_MMAP_X                     = 0x20000000000003c\n\tCAP_PDGETPID                   = 0x400000000000200\n\tCAP_PDKILL                     = 0x400000000000800\n\tCAP_PDWAIT                     = 0x400000000000400\n\tCAP_PEELOFF                    = 0x200001000000000\n\tCAP_POLL_EVENT                 = 0x400000000000020\n\tCAP_PREAD                      = 0x20000000000000d\n\tCAP_PWRITE                     = 0x20000000000000e\n\tCAP_READ                       = 0x200000000000001\n\tCAP_RECV                       = 0x200000000000001\n\tCAP_RENAMEAT_SOURCE            = 0x200000004000400\n\tCAP_RENAMEAT_TARGET            = 0x200040000000400\n\tCAP_RIGHTS_VERSION             = 0x0\n\tCAP_RIGHTS_VERSION_00          = 0x0\n\tCAP_SEEK                       = 0x20000000000000c\n\tCAP_SEEK_TELL                  = 0x200000000000004\n\tCAP_SEM_GETVALUE               = 0x400000000000004\n\tCAP_SEM_POST                   = 0x400000000000008\n\tCAP_SEM_WAIT                   = 0x400000000000010\n\tCAP_SEND                       = 0x200000000000002\n\tCAP_SETSOCKOPT                 = 0x200002000000000\n\tCAP_SHUTDOWN                   = 0x200004000000000\n\tCAP_SOCK_CLIENT                = 0x200007780000003\n\tCAP_SOCK_SERVER                = 0x200007f60000003\n\tCAP_SYMLINKAT                  = 0x200000008000400\n\tCAP_TTYHOOK                    = 0x400000000000100\n\tCAP_UNLINKAT                   = 0x200000010000400\n\tCAP_UNUSED0_44                 = 0x200080000000000\n\tCAP_UNUSED0_57                 = 0x300000000000000\n\tCAP_UNUSED1_22                 = 0x400000000200000\n\tCAP_UNUSED1_57                 = 0x500000000000000\n\tCAP_WRITE                      = 0x200000000000002\n\tCFLUSH                         = 0xf\n\tCLOCAL                         = 0x8000\n\tCLOCK_MONOTONIC                = 0x4\n\tCLOCK_MONOTONIC_FAST           = 0xc\n\tCLOCK_MONOTONIC_PRECISE        = 0xb\n\tCLOCK_PROCESS_CPUTIME_ID       = 0xf\n\tCLOCK_PROF                     = 0x2\n\tCLOCK_REALTIME                 = 0x0\n\tCLOCK_REALTIME_FAST            = 0xa\n\tCLOCK_REALTIME_PRECISE         = 0x9\n\tCLOCK_SECOND                   = 0xd\n\tCLOCK_THREAD_CPUTIME_ID        = 0xe\n\tCLOCK_UPTIME                   = 0x5\n\tCLOCK_UPTIME_FAST              = 0x8\n\tCLOCK_UPTIME_PRECISE           = 0x7\n\tCLOCK_VIRTUAL                  = 0x1\n\tCPUSTATES                      = 0x5\n\tCP_IDLE                        = 0x4\n\tCP_INTR                        = 0x3\n\tCP_NICE                        = 0x1\n\tCP_SYS                         = 0x2\n\tCP_USER                        = 0x0\n\tCREAD                          = 0x800\n\tCRTSCTS                        = 0x30000\n\tCS5                            = 0x0\n\tCS6                            = 0x100\n\tCS7                            = 0x200\n\tCS8                            = 0x300\n\tCSIZE                          = 0x300\n\tCSTART                         = 0x11\n\tCSTATUS                        = 0x14\n\tCSTOP                          = 0x13\n\tCSTOPB                         = 0x400\n\tCSUSP                          = 0x1a\n\tCTL_HW                         = 0x6\n\tCTL_KERN                       = 0x1\n\tCTL_MAXNAME                    = 0x18\n\tCTL_NET                        = 0x4\n\tDIOCGATTR                      = 0xc144648e\n\tDIOCGDELETE                    = 0x80106488\n\tDIOCGFLUSH                     = 0x20006487\n\tDIOCGFRONTSTUFF                = 0x40086486\n\tDIOCGFWHEADS                   = 0x40046483\n\tDIOCGFWSECTORS                 = 0x40046482\n\tDIOCGIDENT                     = 0x41006489\n\tDIOCGMEDIASIZE                 = 0x40086481\n\tDIOCGPHYSPATH                  = 0x4400648d\n\tDIOCGPROVIDERNAME              = 0x4400648a\n\tDIOCGSECTORSIZE                = 0x40046480\n\tDIOCGSTRIPEOFFSET              = 0x4008648c\n\tDIOCGSTRIPESIZE                = 0x4008648b\n\tDIOCSKERNELDUMP                = 0x804c6490\n\tDIOCSKERNELDUMP_FREEBSD11      = 0x80046485\n\tDIOCZONECMD                    = 0xc06c648f\n\tDLT_A429                       = 0xb8\n\tDLT_A653_ICM                   = 0xb9\n\tDLT_AIRONET_HEADER             = 0x78\n\tDLT_AOS                        = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394     = 0x8a\n\tDLT_ARCNET                     = 0x7\n\tDLT_ARCNET_LINUX               = 0x81\n\tDLT_ATM_CLIP                   = 0x13\n\tDLT_ATM_RFC1483                = 0xb\n\tDLT_AURORA                     = 0x7e\n\tDLT_AX25                       = 0x3\n\tDLT_AX25_KISS                  = 0xca\n\tDLT_BACNET_MS_TP               = 0xa5\n\tDLT_BLUETOOTH_BREDR_BB         = 0xff\n\tDLT_BLUETOOTH_HCI_H4           = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9\n\tDLT_BLUETOOTH_LE_LL            = 0xfb\n\tDLT_BLUETOOTH_LE_LL_WITH_PHDR  = 0x100\n\tDLT_BLUETOOTH_LINUX_MONITOR    = 0xfe\n\tDLT_CAN20B                     = 0xbe\n\tDLT_CAN_SOCKETCAN              = 0xe3\n\tDLT_CHAOS                      = 0x5\n\tDLT_CHDLC                      = 0x68\n\tDLT_CISCO_IOS                  = 0x76\n\tDLT_CLASS_NETBSD_RAWAF         = 0x2240000\n\tDLT_C_HDLC                     = 0x68\n\tDLT_C_HDLC_WITH_DIR            = 0xcd\n\tDLT_DBUS                       = 0xe7\n\tDLT_DECT                       = 0xdd\n\tDLT_DOCSIS                     = 0x8f\n\tDLT_DVB_CI                     = 0xeb\n\tDLT_ECONET                     = 0x73\n\tDLT_EN10MB                     = 0x1\n\tDLT_EN3MB                      = 0x2\n\tDLT_ENC                        = 0x6d\n\tDLT_EPON                       = 0x103\n\tDLT_ERF                        = 0xc5\n\tDLT_ERF_ETH                    = 0xaf\n\tDLT_ERF_POS                    = 0xb0\n\tDLT_FC_2                       = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS     = 0xe1\n\tDLT_FDDI                       = 0xa\n\tDLT_FLEXRAY                    = 0xd2\n\tDLT_FRELAY                     = 0x6b\n\tDLT_FRELAY_WITH_DIR            = 0xce\n\tDLT_GCOM_SERIAL                = 0xad\n\tDLT_GCOM_T1E1                  = 0xac\n\tDLT_GPF_F                      = 0xab\n\tDLT_GPF_T                      = 0xaa\n\tDLT_GPRS_LLC                   = 0xa9\n\tDLT_GSMTAP_ABIS                = 0xda\n\tDLT_GSMTAP_UM                  = 0xd9\n\tDLT_IBM_SN                     = 0x92\n\tDLT_IBM_SP                     = 0x91\n\tDLT_IEEE802                    = 0x6\n\tDLT_IEEE802_11                 = 0x69\n\tDLT_IEEE802_11_RADIO           = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS       = 0xa3\n\tDLT_IEEE802_15_4               = 0xc3\n\tDLT_IEEE802_15_4_LINUX         = 0xbf\n\tDLT_IEEE802_15_4_NOFCS         = 0xe6\n\tDLT_IEEE802_15_4_NONASK_PHY    = 0xd7\n\tDLT_IEEE802_16_MAC_CPS         = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO   = 0xc1\n\tDLT_INFINIBAND                 = 0xf7\n\tDLT_IPFILTER                   = 0x74\n\tDLT_IPMB                       = 0xc7\n\tDLT_IPMB_LINUX                 = 0xd1\n\tDLT_IPMI_HPM_2                 = 0x104\n\tDLT_IPNET                      = 0xe2\n\tDLT_IPOIB                      = 0xf2\n\tDLT_IPV4                       = 0xe4\n\tDLT_IPV6                       = 0xe5\n\tDLT_IP_OVER_FC                 = 0x7a\n\tDLT_ISO_14443                  = 0x108\n\tDLT_JUNIPER_ATM1               = 0x89\n\tDLT_JUNIPER_ATM2               = 0x87\n\tDLT_JUNIPER_ATM_CEMIC          = 0xee\n\tDLT_JUNIPER_CHDLC              = 0xb5\n\tDLT_JUNIPER_ES                 = 0x84\n\tDLT_JUNIPER_ETHER              = 0xb2\n\tDLT_JUNIPER_FIBRECHANNEL       = 0xea\n\tDLT_JUNIPER_FRELAY             = 0xb4\n\tDLT_JUNIPER_GGSN               = 0x85\n\tDLT_JUNIPER_ISM                = 0xc2\n\tDLT_JUNIPER_MFR                = 0x86\n\tDLT_JUNIPER_MLFR               = 0x83\n\tDLT_JUNIPER_MLPPP              = 0x82\n\tDLT_JUNIPER_MONITOR            = 0xa4\n\tDLT_JUNIPER_PIC_PEER           = 0xae\n\tDLT_JUNIPER_PPP                = 0xb3\n\tDLT_JUNIPER_PPPOE              = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM          = 0xa8\n\tDLT_JUNIPER_SERVICES           = 0x88\n\tDLT_JUNIPER_SRX_E2E            = 0xe9\n\tDLT_JUNIPER_ST                 = 0xc8\n\tDLT_JUNIPER_VP                 = 0xb7\n\tDLT_JUNIPER_VS                 = 0xe8\n\tDLT_LAPB_WITH_DIR              = 0xcf\n\tDLT_LAPD                       = 0xcb\n\tDLT_LIN                        = 0xd4\n\tDLT_LINUX_EVDEV                = 0xd8\n\tDLT_LINUX_IRDA                 = 0x90\n\tDLT_LINUX_LAPD                 = 0xb1\n\tDLT_LINUX_PPP_WITHDIRECTION    = 0xa6\n\tDLT_LINUX_SLL                  = 0x71\n\tDLT_LOOP                       = 0x6c\n\tDLT_LTALK                      = 0x72\n\tDLT_MATCHING_MAX               = 0x109\n\tDLT_MATCHING_MIN               = 0x68\n\tDLT_MFR                        = 0xb6\n\tDLT_MOST                       = 0xd3\n\tDLT_MPEG_2_TS                  = 0xf3\n\tDLT_MPLS                       = 0xdb\n\tDLT_MTP2                       = 0x8c\n\tDLT_MTP2_WITH_PHDR             = 0x8b\n\tDLT_MTP3                       = 0x8d\n\tDLT_MUX27010                   = 0xec\n\tDLT_NETANALYZER                = 0xf0\n\tDLT_NETANALYZER_TRANSPARENT    = 0xf1\n\tDLT_NETLINK                    = 0xfd\n\tDLT_NFC_LLCP                   = 0xf5\n\tDLT_NFLOG                      = 0xef\n\tDLT_NG40                       = 0xf4\n\tDLT_NULL                       = 0x0\n\tDLT_PCI_EXP                    = 0x7d\n\tDLT_PFLOG                      = 0x75\n\tDLT_PFSYNC                     = 0x79\n\tDLT_PKTAP                      = 0x102\n\tDLT_PPI                        = 0xc0\n\tDLT_PPP                        = 0x9\n\tDLT_PPP_BSDOS                  = 0xe\n\tDLT_PPP_ETHER                  = 0x33\n\tDLT_PPP_PPPD                   = 0xa6\n\tDLT_PPP_SERIAL                 = 0x32\n\tDLT_PPP_WITH_DIR               = 0xcc\n\tDLT_PPP_WITH_DIRECTION         = 0xa6\n\tDLT_PRISM_HEADER               = 0x77\n\tDLT_PROFIBUS_DL                = 0x101\n\tDLT_PRONET                     = 0x4\n\tDLT_RAIF1                      = 0xc6\n\tDLT_RAW                        = 0xc\n\tDLT_RDS                        = 0x109\n\tDLT_REDBACK_SMARTEDGE          = 0x20\n\tDLT_RIO                        = 0x7c\n\tDLT_RTAC_SERIAL                = 0xfa\n\tDLT_SCCP                       = 0x8e\n\tDLT_SCTP                       = 0xf8\n\tDLT_SITA                       = 0xc4\n\tDLT_SLIP                       = 0x8\n\tDLT_SLIP_BSDOS                 = 0xd\n\tDLT_STANAG_5066_D_PDU          = 0xed\n\tDLT_SUNATM                     = 0x7b\n\tDLT_SYMANTEC_FIREWALL          = 0x63\n\tDLT_TZSP                       = 0x80\n\tDLT_USB                        = 0xba\n\tDLT_USBPCAP                    = 0xf9\n\tDLT_USB_FREEBSD                = 0xba\n\tDLT_USB_LINUX                  = 0xbd\n\tDLT_USB_LINUX_MMAPPED          = 0xdc\n\tDLT_USER0                      = 0x93\n\tDLT_USER1                      = 0x94\n\tDLT_USER10                     = 0x9d\n\tDLT_USER11                     = 0x9e\n\tDLT_USER12                     = 0x9f\n\tDLT_USER13                     = 0xa0\n\tDLT_USER14                     = 0xa1\n\tDLT_USER15                     = 0xa2\n\tDLT_USER2                      = 0x95\n\tDLT_USER3                      = 0x96\n\tDLT_USER4                      = 0x97\n\tDLT_USER5                      = 0x98\n\tDLT_USER6                      = 0x99\n\tDLT_USER7                      = 0x9a\n\tDLT_USER8                      = 0x9b\n\tDLT_USER9                      = 0x9c\n\tDLT_WATTSTOPPER_DLM            = 0x107\n\tDLT_WIHART                     = 0xdf\n\tDLT_WIRESHARK_UPPER_PDU        = 0xfc\n\tDLT_X2E_SERIAL                 = 0xd5\n\tDLT_X2E_XORAYA                 = 0xd6\n\tDLT_ZWAVE_R1_R2                = 0x105\n\tDLT_ZWAVE_R3                   = 0x106\n\tDT_BLK                         = 0x6\n\tDT_CHR                         = 0x2\n\tDT_DIR                         = 0x4\n\tDT_FIFO                        = 0x1\n\tDT_LNK                         = 0xa\n\tDT_REG                         = 0x8\n\tDT_SOCK                        = 0xc\n\tDT_UNKNOWN                     = 0x0\n\tDT_WHT                         = 0xe\n\tECHO                           = 0x8\n\tECHOCTL                        = 0x40\n\tECHOE                          = 0x2\n\tECHOK                          = 0x4\n\tECHOKE                         = 0x1\n\tECHONL                         = 0x10\n\tECHOPRT                        = 0x20\n\tEVFILT_AIO                     = -0x3\n\tEVFILT_FS                      = -0x9\n\tEVFILT_LIO                     = -0xa\n\tEVFILT_PROC                    = -0x5\n\tEVFILT_PROCDESC                = -0x8\n\tEVFILT_READ                    = -0x1\n\tEVFILT_SENDFILE                = -0xc\n\tEVFILT_SIGNAL                  = -0x6\n\tEVFILT_SYSCOUNT                = 0xc\n\tEVFILT_TIMER                   = -0x7\n\tEVFILT_USER                    = -0xb\n\tEVFILT_VNODE                   = -0x4\n\tEVFILT_WRITE                   = -0x2\n\tEV_ADD                         = 0x1\n\tEV_CLEAR                       = 0x20\n\tEV_DELETE                      = 0x2\n\tEV_DISABLE                     = 0x8\n\tEV_DISPATCH                    = 0x80\n\tEV_DROP                        = 0x1000\n\tEV_ENABLE                      = 0x4\n\tEV_EOF                         = 0x8000\n\tEV_ERROR                       = 0x4000\n\tEV_FLAG1                       = 0x2000\n\tEV_FLAG2                       = 0x4000\n\tEV_FORCEONESHOT                = 0x100\n\tEV_ONESHOT                     = 0x10\n\tEV_RECEIPT                     = 0x40\n\tEV_SYSFLAGS                    = 0xf000\n\tEXTA                           = 0x4b00\n\tEXTATTR_NAMESPACE_EMPTY        = 0x0\n\tEXTATTR_NAMESPACE_SYSTEM       = 0x2\n\tEXTATTR_NAMESPACE_USER         = 0x1\n\tEXTB                           = 0x9600\n\tEXTPROC                        = 0x800\n\tFD_CLOEXEC                     = 0x1\n\tFD_SETSIZE                     = 0x400\n\tFLUSHO                         = 0x800000\n\tF_CANCEL                       = 0x5\n\tF_DUP2FD                       = 0xa\n\tF_DUP2FD_CLOEXEC               = 0x12\n\tF_DUPFD                        = 0x0\n\tF_DUPFD_CLOEXEC                = 0x11\n\tF_GETFD                        = 0x1\n\tF_GETFL                        = 0x3\n\tF_GETLK                        = 0xb\n\tF_GETOWN                       = 0x5\n\tF_OGETLK                       = 0x7\n\tF_OK                           = 0x0\n\tF_OSETLK                       = 0x8\n\tF_OSETLKW                      = 0x9\n\tF_RDAHEAD                      = 0x10\n\tF_RDLCK                        = 0x1\n\tF_READAHEAD                    = 0xf\n\tF_SETFD                        = 0x2\n\tF_SETFL                        = 0x4\n\tF_SETLK                        = 0xc\n\tF_SETLKW                       = 0xd\n\tF_SETLK_REMOTE                 = 0xe\n\tF_SETOWN                       = 0x6\n\tF_UNLCK                        = 0x2\n\tF_UNLCKSYS                     = 0x4\n\tF_WRLCK                        = 0x3\n\tHUPCL                          = 0x4000\n\tHW_MACHINE                     = 0x1\n\tICANON                         = 0x100\n\tICMP6_FILTER                   = 0x12\n\tICRNL                          = 0x100\n\tIEXTEN                         = 0x400\n\tIFAN_ARRIVAL                   = 0x0\n\tIFAN_DEPARTURE                 = 0x1\n\tIFF_ALLMULTI                   = 0x200\n\tIFF_ALTPHYS                    = 0x4000\n\tIFF_BROADCAST                  = 0x2\n\tIFF_CANTCHANGE                 = 0x218f52\n\tIFF_CANTCONFIG                 = 0x10000\n\tIFF_DEBUG                      = 0x4\n\tIFF_DRV_OACTIVE                = 0x400\n\tIFF_DRV_RUNNING                = 0x40\n\tIFF_DYING                      = 0x200000\n\tIFF_LINK0                      = 0x1000\n\tIFF_LINK1                      = 0x2000\n\tIFF_LINK2                      = 0x4000\n\tIFF_LOOPBACK                   = 0x8\n\tIFF_MONITOR                    = 0x40000\n\tIFF_MULTICAST                  = 0x8000\n\tIFF_NOARP                      = 0x80\n\tIFF_OACTIVE                    = 0x400\n\tIFF_POINTOPOINT                = 0x10\n\tIFF_PPROMISC                   = 0x20000\n\tIFF_PROMISC                    = 0x100\n\tIFF_RENAMING                   = 0x400000\n\tIFF_RUNNING                    = 0x40\n\tIFF_SIMPLEX                    = 0x800\n\tIFF_STATICARP                  = 0x80000\n\tIFF_UP                         = 0x1\n\tIFNAMSIZ                       = 0x10\n\tIFT_BRIDGE                     = 0xd1\n\tIFT_CARP                       = 0xf8\n\tIFT_IEEE1394                   = 0x90\n\tIFT_INFINIBAND                 = 0xc7\n\tIFT_L2VLAN                     = 0x87\n\tIFT_L3IPVLAN                   = 0x88\n\tIFT_PPP                        = 0x17\n\tIFT_PROPVIRTUAL                = 0x35\n\tIGNBRK                         = 0x1\n\tIGNCR                          = 0x80\n\tIGNPAR                         = 0x4\n\tIMAXBEL                        = 0x2000\n\tINLCR                          = 0x40\n\tINPCK                          = 0x10\n\tIN_CLASSA_HOST                 = 0xffffff\n\tIN_CLASSA_MAX                  = 0x80\n\tIN_CLASSA_NET                  = 0xff000000\n\tIN_CLASSA_NSHIFT               = 0x18\n\tIN_CLASSB_HOST                 = 0xffff\n\tIN_CLASSB_MAX                  = 0x10000\n\tIN_CLASSB_NET                  = 0xffff0000\n\tIN_CLASSB_NSHIFT               = 0x10\n\tIN_CLASSC_HOST                 = 0xff\n\tIN_CLASSC_NET                  = 0xffffff00\n\tIN_CLASSC_NSHIFT               = 0x8\n\tIN_CLASSD_HOST                 = 0xfffffff\n\tIN_CLASSD_NET                  = 0xf0000000\n\tIN_CLASSD_NSHIFT               = 0x1c\n\tIN_LOOPBACKNET                 = 0x7f\n\tIN_RFC3021_MASK                = 0xfffffffe\n\tIPPROTO_3PC                    = 0x22\n\tIPPROTO_ADFS                   = 0x44\n\tIPPROTO_AH                     = 0x33\n\tIPPROTO_AHIP                   = 0x3d\n\tIPPROTO_APES                   = 0x63\n\tIPPROTO_ARGUS                  = 0xd\n\tIPPROTO_AX25                   = 0x5d\n\tIPPROTO_BHA                    = 0x31\n\tIPPROTO_BLT                    = 0x1e\n\tIPPROTO_BRSATMON               = 0x4c\n\tIPPROTO_CARP                   = 0x70\n\tIPPROTO_CFTP                   = 0x3e\n\tIPPROTO_CHAOS                  = 0x10\n\tIPPROTO_CMTP                   = 0x26\n\tIPPROTO_CPHB                   = 0x49\n\tIPPROTO_CPNX                   = 0x48\n\tIPPROTO_DDP                    = 0x25\n\tIPPROTO_DGP                    = 0x56\n\tIPPROTO_DIVERT                 = 0x102\n\tIPPROTO_DONE                   = 0x101\n\tIPPROTO_DSTOPTS                = 0x3c\n\tIPPROTO_EGP                    = 0x8\n\tIPPROTO_EMCON                  = 0xe\n\tIPPROTO_ENCAP                  = 0x62\n\tIPPROTO_EON                    = 0x50\n\tIPPROTO_ESP                    = 0x32\n\tIPPROTO_ETHERIP                = 0x61\n\tIPPROTO_FRAGMENT               = 0x2c\n\tIPPROTO_GGP                    = 0x3\n\tIPPROTO_GMTP                   = 0x64\n\tIPPROTO_GRE                    = 0x2f\n\tIPPROTO_HELLO                  = 0x3f\n\tIPPROTO_HIP                    = 0x8b\n\tIPPROTO_HMP                    = 0x14\n\tIPPROTO_HOPOPTS                = 0x0\n\tIPPROTO_ICMP                   = 0x1\n\tIPPROTO_ICMPV6                 = 0x3a\n\tIPPROTO_IDP                    = 0x16\n\tIPPROTO_IDPR                   = 0x23\n\tIPPROTO_IDRP                   = 0x2d\n\tIPPROTO_IGMP                   = 0x2\n\tIPPROTO_IGP                    = 0x55\n\tIPPROTO_IGRP                   = 0x58\n\tIPPROTO_IL                     = 0x28\n\tIPPROTO_INLSP                  = 0x34\n\tIPPROTO_INP                    = 0x20\n\tIPPROTO_IP                     = 0x0\n\tIPPROTO_IPCOMP                 = 0x6c\n\tIPPROTO_IPCV                   = 0x47\n\tIPPROTO_IPEIP                  = 0x5e\n\tIPPROTO_IPIP                   = 0x4\n\tIPPROTO_IPPC                   = 0x43\n\tIPPROTO_IPV4                   = 0x4\n\tIPPROTO_IPV6                   = 0x29\n\tIPPROTO_IRTP                   = 0x1c\n\tIPPROTO_KRYPTOLAN              = 0x41\n\tIPPROTO_LARP                   = 0x5b\n\tIPPROTO_LEAF1                  = 0x19\n\tIPPROTO_LEAF2                  = 0x1a\n\tIPPROTO_MAX                    = 0x100\n\tIPPROTO_MEAS                   = 0x13\n\tIPPROTO_MH                     = 0x87\n\tIPPROTO_MHRP                   = 0x30\n\tIPPROTO_MICP                   = 0x5f\n\tIPPROTO_MOBILE                 = 0x37\n\tIPPROTO_MPLS                   = 0x89\n\tIPPROTO_MTP                    = 0x5c\n\tIPPROTO_MUX                    = 0x12\n\tIPPROTO_ND                     = 0x4d\n\tIPPROTO_NHRP                   = 0x36\n\tIPPROTO_NONE                   = 0x3b\n\tIPPROTO_NSP                    = 0x1f\n\tIPPROTO_NVPII                  = 0xb\n\tIPPROTO_OLD_DIVERT             = 0xfe\n\tIPPROTO_OSPFIGP                = 0x59\n\tIPPROTO_PFSYNC                 = 0xf0\n\tIPPROTO_PGM                    = 0x71\n\tIPPROTO_PIGP                   = 0x9\n\tIPPROTO_PIM                    = 0x67\n\tIPPROTO_PRM                    = 0x15\n\tIPPROTO_PUP                    = 0xc\n\tIPPROTO_PVP                    = 0x4b\n\tIPPROTO_RAW                    = 0xff\n\tIPPROTO_RCCMON                 = 0xa\n\tIPPROTO_RDP                    = 0x1b\n\tIPPROTO_RESERVED_253           = 0xfd\n\tIPPROTO_RESERVED_254           = 0xfe\n\tIPPROTO_ROUTING                = 0x2b\n\tIPPROTO_RSVP                   = 0x2e\n\tIPPROTO_RVD                    = 0x42\n\tIPPROTO_SATEXPAK               = 0x40\n\tIPPROTO_SATMON                 = 0x45\n\tIPPROTO_SCCSP                  = 0x60\n\tIPPROTO_SCTP                   = 0x84\n\tIPPROTO_SDRP                   = 0x2a\n\tIPPROTO_SEND                   = 0x103\n\tIPPROTO_SEP                    = 0x21\n\tIPPROTO_SHIM6                  = 0x8c\n\tIPPROTO_SKIP                   = 0x39\n\tIPPROTO_SPACER                 = 0x7fff\n\tIPPROTO_SRPC                   = 0x5a\n\tIPPROTO_ST                     = 0x7\n\tIPPROTO_SVMTP                  = 0x52\n\tIPPROTO_SWIPE                  = 0x35\n\tIPPROTO_TCF                    = 0x57\n\tIPPROTO_TCP                    = 0x6\n\tIPPROTO_TLSP                   = 0x38\n\tIPPROTO_TP                     = 0x1d\n\tIPPROTO_TPXX                   = 0x27\n\tIPPROTO_TRUNK1                 = 0x17\n\tIPPROTO_TRUNK2                 = 0x18\n\tIPPROTO_TTP                    = 0x54\n\tIPPROTO_UDP                    = 0x11\n\tIPPROTO_UDPLITE                = 0x88\n\tIPPROTO_VINES                  = 0x53\n\tIPPROTO_VISA                   = 0x46\n\tIPPROTO_VMTP                   = 0x51\n\tIPPROTO_WBEXPAK                = 0x4f\n\tIPPROTO_WBMON                  = 0x4e\n\tIPPROTO_WSN                    = 0x4a\n\tIPPROTO_XNET                   = 0xf\n\tIPPROTO_XTP                    = 0x24\n\tIPV6_AUTOFLOWLABEL             = 0x3b\n\tIPV6_BINDANY                   = 0x40\n\tIPV6_BINDMULTI                 = 0x41\n\tIPV6_BINDV6ONLY                = 0x1b\n\tIPV6_CHECKSUM                  = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS    = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP    = 0x1\n\tIPV6_DEFHLIM                   = 0x40\n\tIPV6_DONTFRAG                  = 0x3e\n\tIPV6_DSTOPTS                   = 0x32\n\tIPV6_FLOWID                    = 0x43\n\tIPV6_FLOWINFO_MASK             = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK            = 0xffff0f00\n\tIPV6_FLOWTYPE                  = 0x44\n\tIPV6_FRAGTTL                   = 0x78\n\tIPV6_FW_ADD                    = 0x1e\n\tIPV6_FW_DEL                    = 0x1f\n\tIPV6_FW_FLUSH                  = 0x20\n\tIPV6_FW_GET                    = 0x22\n\tIPV6_FW_ZERO                   = 0x21\n\tIPV6_HLIMDEC                   = 0x1\n\tIPV6_HOPLIMIT                  = 0x2f\n\tIPV6_HOPOPTS                   = 0x31\n\tIPV6_IPSEC_POLICY              = 0x1c\n\tIPV6_JOIN_GROUP                = 0xc\n\tIPV6_LEAVE_GROUP               = 0xd\n\tIPV6_MAXHLIM                   = 0xff\n\tIPV6_MAXOPTHDR                 = 0x800\n\tIPV6_MAXPACKET                 = 0xffff\n\tIPV6_MAX_GROUP_SRC_FILTER      = 0x200\n\tIPV6_MAX_MEMBERSHIPS           = 0xfff\n\tIPV6_MAX_SOCK_SRC_FILTER       = 0x80\n\tIPV6_MIN_MEMBERSHIPS           = 0x1f\n\tIPV6_MMTU                      = 0x500\n\tIPV6_MSFILTER                  = 0x4a\n\tIPV6_MULTICAST_HOPS            = 0xa\n\tIPV6_MULTICAST_IF              = 0x9\n\tIPV6_MULTICAST_LOOP            = 0xb\n\tIPV6_NEXTHOP                   = 0x30\n\tIPV6_PATHMTU                   = 0x2c\n\tIPV6_PKTINFO                   = 0x2e\n\tIPV6_PORTRANGE                 = 0xe\n\tIPV6_PORTRANGE_DEFAULT         = 0x0\n\tIPV6_PORTRANGE_HIGH            = 0x1\n\tIPV6_PORTRANGE_LOW             = 0x2\n\tIPV6_PREFER_TEMPADDR           = 0x3f\n\tIPV6_RECVDSTOPTS               = 0x28\n\tIPV6_RECVFLOWID                = 0x46\n\tIPV6_RECVHOPLIMIT              = 0x25\n\tIPV6_RECVHOPOPTS               = 0x27\n\tIPV6_RECVPATHMTU               = 0x2b\n\tIPV6_RECVPKTINFO               = 0x24\n\tIPV6_RECVRSSBUCKETID           = 0x47\n\tIPV6_RECVRTHDR                 = 0x26\n\tIPV6_RECVTCLASS                = 0x39\n\tIPV6_RSSBUCKETID               = 0x45\n\tIPV6_RSS_LISTEN_BUCKET         = 0x42\n\tIPV6_RTHDR                     = 0x33\n\tIPV6_RTHDRDSTOPTS              = 0x23\n\tIPV6_RTHDR_LOOSE               = 0x0\n\tIPV6_RTHDR_STRICT              = 0x1\n\tIPV6_RTHDR_TYPE_0              = 0x0\n\tIPV6_SOCKOPT_RESERVED1         = 0x3\n\tIPV6_TCLASS                    = 0x3d\n\tIPV6_UNICAST_HOPS              = 0x4\n\tIPV6_USE_MIN_MTU               = 0x2a\n\tIPV6_V6ONLY                    = 0x1b\n\tIPV6_VERSION                   = 0x60\n\tIPV6_VERSION_MASK              = 0xf0\n\tIP_ADD_MEMBERSHIP              = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP       = 0x46\n\tIP_BINDANY                     = 0x18\n\tIP_BINDMULTI                   = 0x19\n\tIP_BLOCK_SOURCE                = 0x48\n\tIP_DEFAULT_MULTICAST_LOOP      = 0x1\n\tIP_DEFAULT_MULTICAST_TTL       = 0x1\n\tIP_DF                          = 0x4000\n\tIP_DONTFRAG                    = 0x43\n\tIP_DROP_MEMBERSHIP             = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP      = 0x47\n\tIP_DUMMYNET3                   = 0x31\n\tIP_DUMMYNET_CONFIGURE          = 0x3c\n\tIP_DUMMYNET_DEL                = 0x3d\n\tIP_DUMMYNET_FLUSH              = 0x3e\n\tIP_DUMMYNET_GET                = 0x40\n\tIP_FLOWID                      = 0x5a\n\tIP_FLOWTYPE                    = 0x5b\n\tIP_FW3                         = 0x30\n\tIP_FW_ADD                      = 0x32\n\tIP_FW_DEL                      = 0x33\n\tIP_FW_FLUSH                    = 0x34\n\tIP_FW_GET                      = 0x36\n\tIP_FW_NAT_CFG                  = 0x38\n\tIP_FW_NAT_DEL                  = 0x39\n\tIP_FW_NAT_GET_CONFIG           = 0x3a\n\tIP_FW_NAT_GET_LOG              = 0x3b\n\tIP_FW_RESETLOG                 = 0x37\n\tIP_FW_TABLE_ADD                = 0x28\n\tIP_FW_TABLE_DEL                = 0x29\n\tIP_FW_TABLE_FLUSH              = 0x2a\n\tIP_FW_TABLE_GETSIZE            = 0x2b\n\tIP_FW_TABLE_LIST               = 0x2c\n\tIP_FW_ZERO                     = 0x35\n\tIP_HDRINCL                     = 0x2\n\tIP_IPSEC_POLICY                = 0x15\n\tIP_MAXPACKET                   = 0xffff\n\tIP_MAX_GROUP_SRC_FILTER        = 0x200\n\tIP_MAX_MEMBERSHIPS             = 0xfff\n\tIP_MAX_SOCK_MUTE_FILTER        = 0x80\n\tIP_MAX_SOCK_SRC_FILTER         = 0x80\n\tIP_MAX_SOURCE_FILTER           = 0x400\n\tIP_MF                          = 0x2000\n\tIP_MINTTL                      = 0x42\n\tIP_MIN_MEMBERSHIPS             = 0x1f\n\tIP_MSFILTER                    = 0x4a\n\tIP_MSS                         = 0x240\n\tIP_MULTICAST_IF                = 0x9\n\tIP_MULTICAST_LOOP              = 0xb\n\tIP_MULTICAST_TTL               = 0xa\n\tIP_MULTICAST_VIF               = 0xe\n\tIP_OFFMASK                     = 0x1fff\n\tIP_ONESBCAST                   = 0x17\n\tIP_OPTIONS                     = 0x1\n\tIP_PORTRANGE                   = 0x13\n\tIP_PORTRANGE_DEFAULT           = 0x0\n\tIP_PORTRANGE_HIGH              = 0x1\n\tIP_PORTRANGE_LOW               = 0x2\n\tIP_RECVDSTADDR                 = 0x7\n\tIP_RECVFLOWID                  = 0x5d\n\tIP_RECVIF                      = 0x14\n\tIP_RECVOPTS                    = 0x5\n\tIP_RECVRETOPTS                 = 0x6\n\tIP_RECVRSSBUCKETID             = 0x5e\n\tIP_RECVTOS                     = 0x44\n\tIP_RECVTTL                     = 0x41\n\tIP_RETOPTS                     = 0x8\n\tIP_RF                          = 0x8000\n\tIP_RSSBUCKETID                 = 0x5c\n\tIP_RSS_LISTEN_BUCKET           = 0x1a\n\tIP_RSVP_OFF                    = 0x10\n\tIP_RSVP_ON                     = 0xf\n\tIP_RSVP_VIF_OFF                = 0x12\n\tIP_RSVP_VIF_ON                 = 0x11\n\tIP_SENDSRCADDR                 = 0x7\n\tIP_TOS                         = 0x3\n\tIP_TTL                         = 0x4\n\tIP_UNBLOCK_SOURCE              = 0x49\n\tISIG                           = 0x80\n\tISTRIP                         = 0x20\n\tIXANY                          = 0x800\n\tIXOFF                          = 0x400\n\tIXON                           = 0x200\n\tKERN_HOSTNAME                  = 0xa\n\tKERN_OSRELEASE                 = 0x2\n\tKERN_OSTYPE                    = 0x1\n\tKERN_VERSION                   = 0x4\n\tLOCK_EX                        = 0x2\n\tLOCK_NB                        = 0x4\n\tLOCK_SH                        = 0x1\n\tLOCK_UN                        = 0x8\n\tMADV_AUTOSYNC                  = 0x7\n\tMADV_CORE                      = 0x9\n\tMADV_DONTNEED                  = 0x4\n\tMADV_FREE                      = 0x5\n\tMADV_NOCORE                    = 0x8\n\tMADV_NORMAL                    = 0x0\n\tMADV_NOSYNC                    = 0x6\n\tMADV_PROTECT                   = 0xa\n\tMADV_RANDOM                    = 0x1\n\tMADV_SEQUENTIAL                = 0x2\n\tMADV_WILLNEED                  = 0x3\n\tMAP_ALIGNED_SUPER              = 0x1000000\n\tMAP_ALIGNMENT_MASK             = -0x1000000\n\tMAP_ALIGNMENT_SHIFT            = 0x18\n\tMAP_ANON                       = 0x1000\n\tMAP_ANONYMOUS                  = 0x1000\n\tMAP_COPY                       = 0x2\n\tMAP_EXCL                       = 0x4000\n\tMAP_FILE                       = 0x0\n\tMAP_FIXED                      = 0x10\n\tMAP_GUARD                      = 0x2000\n\tMAP_HASSEMAPHORE               = 0x200\n\tMAP_NOCORE                     = 0x20000\n\tMAP_NOSYNC                     = 0x800\n\tMAP_PREFAULT_READ              = 0x40000\n\tMAP_PRIVATE                    = 0x2\n\tMAP_RESERVED0020               = 0x20\n\tMAP_RESERVED0040               = 0x40\n\tMAP_RESERVED0080               = 0x80\n\tMAP_RESERVED0100               = 0x100\n\tMAP_SHARED                     = 0x1\n\tMAP_STACK                      = 0x400\n\tMCL_CURRENT                    = 0x1\n\tMCL_FUTURE                     = 0x2\n\tMNT_ACLS                       = 0x8000000\n\tMNT_ASYNC                      = 0x40\n\tMNT_AUTOMOUNTED                = 0x200000000\n\tMNT_BYFSID                     = 0x8000000\n\tMNT_CMDFLAGS                   = 0xd0f0000\n\tMNT_DEFEXPORTED                = 0x200\n\tMNT_DELEXPORT                  = 0x20000\n\tMNT_EXKERB                     = 0x800\n\tMNT_EXPORTANON                 = 0x400\n\tMNT_EXPORTED                   = 0x100\n\tMNT_EXPUBLIC                   = 0x20000000\n\tMNT_EXRDONLY                   = 0x80\n\tMNT_FORCE                      = 0x80000\n\tMNT_GJOURNAL                   = 0x2000000\n\tMNT_IGNORE                     = 0x800000\n\tMNT_LAZY                       = 0x3\n\tMNT_LOCAL                      = 0x1000\n\tMNT_MULTILABEL                 = 0x4000000\n\tMNT_NFS4ACLS                   = 0x10\n\tMNT_NOATIME                    = 0x10000000\n\tMNT_NOCLUSTERR                 = 0x40000000\n\tMNT_NOCLUSTERW                 = 0x80000000\n\tMNT_NOEXEC                     = 0x4\n\tMNT_NONBUSY                    = 0x4000000\n\tMNT_NOSUID                     = 0x8\n\tMNT_NOSYMFOLLOW                = 0x400000\n\tMNT_NOWAIT                     = 0x2\n\tMNT_QUOTA                      = 0x2000\n\tMNT_RDONLY                     = 0x1\n\tMNT_RELOAD                     = 0x40000\n\tMNT_ROOTFS                     = 0x4000\n\tMNT_SNAPSHOT                   = 0x1000000\n\tMNT_SOFTDEP                    = 0x200000\n\tMNT_SUIDDIR                    = 0x100000\n\tMNT_SUJ                        = 0x100000000\n\tMNT_SUSPEND                    = 0x4\n\tMNT_SYNCHRONOUS                = 0x2\n\tMNT_UNION                      = 0x20\n\tMNT_UPDATE                     = 0x10000\n\tMNT_UPDATEMASK                 = 0x2d8d0807e\n\tMNT_USER                       = 0x8000\n\tMNT_VISFLAGMASK                = 0x3fef0ffff\n\tMNT_WAIT                       = 0x1\n\tMSG_CMSG_CLOEXEC               = 0x40000\n\tMSG_COMPAT                     = 0x8000\n\tMSG_CTRUNC                     = 0x20\n\tMSG_DONTROUTE                  = 0x4\n\tMSG_DONTWAIT                   = 0x80\n\tMSG_EOF                        = 0x100\n\tMSG_EOR                        = 0x8\n\tMSG_NBIO                       = 0x4000\n\tMSG_NOSIGNAL                   = 0x20000\n\tMSG_NOTIFICATION               = 0x2000\n\tMSG_OOB                        = 0x1\n\tMSG_PEEK                       = 0x2\n\tMSG_TRUNC                      = 0x10\n\tMSG_WAITALL                    = 0x40\n\tMSG_WAITFORONE                 = 0x80000\n\tMS_ASYNC                       = 0x1\n\tMS_INVALIDATE                  = 0x2\n\tMS_SYNC                        = 0x0\n\tNAME_MAX                       = 0xff\n\tNET_RT_DUMP                    = 0x1\n\tNET_RT_FLAGS                   = 0x2\n\tNET_RT_IFLIST                  = 0x3\n\tNET_RT_IFLISTL                 = 0x5\n\tNET_RT_IFMALIST                = 0x4\n\tNFDBITS                        = 0x20\n\tNOFLSH                         = 0x80000000\n\tNOKERNINFO                     = 0x2000000\n\tNOTE_ATTRIB                    = 0x8\n\tNOTE_CHILD                     = 0x4\n\tNOTE_CLOSE                     = 0x100\n\tNOTE_CLOSE_WRITE               = 0x200\n\tNOTE_DELETE                    = 0x1\n\tNOTE_EXEC                      = 0x20000000\n\tNOTE_EXIT                      = 0x80000000\n\tNOTE_EXTEND                    = 0x4\n\tNOTE_FFAND                     = 0x40000000\n\tNOTE_FFCOPY                    = 0xc0000000\n\tNOTE_FFCTRLMASK                = 0xc0000000\n\tNOTE_FFLAGSMASK                = 0xffffff\n\tNOTE_FFNOP                     = 0x0\n\tNOTE_FFOR                      = 0x80000000\n\tNOTE_FILE_POLL                 = 0x2\n\tNOTE_FORK                      = 0x40000000\n\tNOTE_LINK                      = 0x10\n\tNOTE_LOWAT                     = 0x1\n\tNOTE_MSECONDS                  = 0x2\n\tNOTE_NSECONDS                  = 0x8\n\tNOTE_OPEN                      = 0x80\n\tNOTE_PCTRLMASK                 = 0xf0000000\n\tNOTE_PDATAMASK                 = 0xfffff\n\tNOTE_READ                      = 0x400\n\tNOTE_RENAME                    = 0x20\n\tNOTE_REVOKE                    = 0x40\n\tNOTE_SECONDS                   = 0x1\n\tNOTE_TRACK                     = 0x1\n\tNOTE_TRACKERR                  = 0x2\n\tNOTE_TRIGGER                   = 0x1000000\n\tNOTE_USECONDS                  = 0x4\n\tNOTE_WRITE                     = 0x2\n\tOCRNL                          = 0x10\n\tONLCR                          = 0x2\n\tONLRET                         = 0x40\n\tONOCR                          = 0x20\n\tONOEOT                         = 0x8\n\tOPOST                          = 0x1\n\tOXTABS                         = 0x4\n\tO_ACCMODE                      = 0x3\n\tO_APPEND                       = 0x8\n\tO_ASYNC                        = 0x40\n\tO_CLOEXEC                      = 0x100000\n\tO_CREAT                        = 0x200\n\tO_DIRECT                       = 0x10000\n\tO_DIRECTORY                    = 0x20000\n\tO_EXCL                         = 0x800\n\tO_EXEC                         = 0x40000\n\tO_EXLOCK                       = 0x20\n\tO_FSYNC                        = 0x80\n\tO_NDELAY                       = 0x4\n\tO_NOCTTY                       = 0x8000\n\tO_NOFOLLOW                     = 0x100\n\tO_NONBLOCK                     = 0x4\n\tO_RDONLY                       = 0x0\n\tO_RDWR                         = 0x2\n\tO_SHLOCK                       = 0x10\n\tO_SYNC                         = 0x80\n\tO_TRUNC                        = 0x400\n\tO_TTY_INIT                     = 0x80000\n\tO_VERIFY                       = 0x200000\n\tO_WRONLY                       = 0x1\n\tPARENB                         = 0x1000\n\tPARMRK                         = 0x8\n\tPARODD                         = 0x2000\n\tPENDIN                         = 0x20000000\n\tPRIO_PGRP                      = 0x1\n\tPRIO_PROCESS                   = 0x0\n\tPRIO_USER                      = 0x2\n\tPROT_EXEC                      = 0x4\n\tPROT_NONE                      = 0x0\n\tPROT_READ                      = 0x1\n\tPROT_WRITE                     = 0x2\n\tRLIMIT_AS                      = 0xa\n\tRLIMIT_CORE                    = 0x4\n\tRLIMIT_CPU                     = 0x0\n\tRLIMIT_DATA                    = 0x2\n\tRLIMIT_FSIZE                   = 0x1\n\tRLIMIT_MEMLOCK                 = 0x6\n\tRLIMIT_NOFILE                  = 0x8\n\tRLIMIT_NPROC                   = 0x7\n\tRLIMIT_RSS                     = 0x5\n\tRLIMIT_STACK                   = 0x3\n\tRLIM_INFINITY                  = 0x7fffffffffffffff\n\tRTAX_AUTHOR                    = 0x6\n\tRTAX_BRD                       = 0x7\n\tRTAX_DST                       = 0x0\n\tRTAX_GATEWAY                   = 0x1\n\tRTAX_GENMASK                   = 0x3\n\tRTAX_IFA                       = 0x5\n\tRTAX_IFP                       = 0x4\n\tRTAX_MAX                       = 0x8\n\tRTAX_NETMASK                   = 0x2\n\tRTA_AUTHOR                     = 0x40\n\tRTA_BRD                        = 0x80\n\tRTA_DST                        = 0x1\n\tRTA_GATEWAY                    = 0x2\n\tRTA_GENMASK                    = 0x8\n\tRTA_IFA                        = 0x20\n\tRTA_IFP                        = 0x10\n\tRTA_NETMASK                    = 0x4\n\tRTF_BLACKHOLE                  = 0x1000\n\tRTF_BROADCAST                  = 0x400000\n\tRTF_DONE                       = 0x40\n\tRTF_DYNAMIC                    = 0x10\n\tRTF_FIXEDMTU                   = 0x80000\n\tRTF_FMASK                      = 0x1004d808\n\tRTF_GATEWAY                    = 0x2\n\tRTF_GWFLAG_COMPAT              = 0x80000000\n\tRTF_HOST                       = 0x4\n\tRTF_LLDATA                     = 0x400\n\tRTF_LLINFO                     = 0x400\n\tRTF_LOCAL                      = 0x200000\n\tRTF_MODIFIED                   = 0x20\n\tRTF_MULTICAST                  = 0x800000\n\tRTF_PINNED                     = 0x100000\n\tRTF_PROTO1                     = 0x8000\n\tRTF_PROTO2                     = 0x4000\n\tRTF_PROTO3                     = 0x40000\n\tRTF_REJECT                     = 0x8\n\tRTF_RNH_LOCKED                 = 0x40000000\n\tRTF_STATIC                     = 0x800\n\tRTF_STICKY                     = 0x10000000\n\tRTF_UP                         = 0x1\n\tRTF_XRESOLVE                   = 0x200\n\tRTM_ADD                        = 0x1\n\tRTM_CHANGE                     = 0x3\n\tRTM_DELADDR                    = 0xd\n\tRTM_DELETE                     = 0x2\n\tRTM_DELMADDR                   = 0x10\n\tRTM_GET                        = 0x4\n\tRTM_IEEE80211                  = 0x12\n\tRTM_IFANNOUNCE                 = 0x11\n\tRTM_IFINFO                     = 0xe\n\tRTM_LOCK                       = 0x8\n\tRTM_LOSING                     = 0x5\n\tRTM_MISS                       = 0x7\n\tRTM_NEWADDR                    = 0xc\n\tRTM_NEWMADDR                   = 0xf\n\tRTM_REDIRECT                   = 0x6\n\tRTM_RESOLVE                    = 0xb\n\tRTM_RTTUNIT                    = 0xf4240\n\tRTM_VERSION                    = 0x5\n\tRTV_EXPIRE                     = 0x4\n\tRTV_HOPCOUNT                   = 0x2\n\tRTV_MTU                        = 0x1\n\tRTV_RPIPE                      = 0x8\n\tRTV_RTT                        = 0x40\n\tRTV_RTTVAR                     = 0x80\n\tRTV_SPIPE                      = 0x10\n\tRTV_SSTHRESH                   = 0x20\n\tRTV_WEIGHT                     = 0x100\n\tRT_ALL_FIBS                    = -0x1\n\tRT_BLACKHOLE                   = 0x40\n\tRT_CACHING_CONTEXT             = 0x1\n\tRT_DEFAULT_FIB                 = 0x0\n\tRT_HAS_GW                      = 0x80\n\tRT_HAS_HEADER                  = 0x10\n\tRT_HAS_HEADER_BIT              = 0x4\n\tRT_L2_ME                       = 0x4\n\tRT_L2_ME_BIT                   = 0x2\n\tRT_LLE_CACHE                   = 0x100\n\tRT_MAY_LOOP                    = 0x8\n\tRT_MAY_LOOP_BIT                = 0x3\n\tRT_NORTREF                     = 0x2\n\tRT_REJECT                      = 0x20\n\tRUSAGE_CHILDREN                = -0x1\n\tRUSAGE_SELF                    = 0x0\n\tRUSAGE_THREAD                  = 0x1\n\tSCM_BINTIME                    = 0x4\n\tSCM_CREDS                      = 0x3\n\tSCM_RIGHTS                     = 0x1\n\tSCM_TIMESTAMP                  = 0x2\n\tSHUT_RD                        = 0x0\n\tSHUT_RDWR                      = 0x2\n\tSHUT_WR                        = 0x1\n\tSIOCADDMULTI                   = 0x80206931\n\tSIOCAIFADDR                    = 0x8040691a\n\tSIOCAIFGROUP                   = 0x80246987\n\tSIOCATMARK                     = 0x40047307\n\tSIOCDELMULTI                   = 0x80206932\n\tSIOCDIFADDR                    = 0x80206919\n\tSIOCDIFGROUP                   = 0x80246989\n\tSIOCDIFPHYADDR                 = 0x80206949\n\tSIOCGDRVSPEC                   = 0xc01c697b\n\tSIOCGETSGCNT                   = 0xc0147210\n\tSIOCGETVIFCNT                  = 0xc014720f\n\tSIOCGHIWAT                     = 0x40047301\n\tSIOCGHWADDR                    = 0xc020693e\n\tSIOCGI2C                       = 0xc020693d\n\tSIOCGIFADDR                    = 0xc0206921\n\tSIOCGIFBRDADDR                 = 0xc0206923\n\tSIOCGIFCAP                     = 0xc020691f\n\tSIOCGIFCONF                    = 0xc0086924\n\tSIOCGIFDESCR                   = 0xc020692a\n\tSIOCGIFDSTADDR                 = 0xc0206922\n\tSIOCGIFFIB                     = 0xc020695c\n\tSIOCGIFFLAGS                   = 0xc0206911\n\tSIOCGIFGENERIC                 = 0xc020693a\n\tSIOCGIFGMEMB                   = 0xc024698a\n\tSIOCGIFGROUP                   = 0xc0246988\n\tSIOCGIFINDEX                   = 0xc0206920\n\tSIOCGIFMAC                     = 0xc0206926\n\tSIOCGIFMEDIA                   = 0xc0286938\n\tSIOCGIFMETRIC                  = 0xc0206917\n\tSIOCGIFMTU                     = 0xc0206933\n\tSIOCGIFNETMASK                 = 0xc0206925\n\tSIOCGIFPDSTADDR                = 0xc0206948\n\tSIOCGIFPHYS                    = 0xc0206935\n\tSIOCGIFPSRCADDR                = 0xc0206947\n\tSIOCGIFSTATUS                  = 0xc331693b\n\tSIOCGIFXMEDIA                  = 0xc028698b\n\tSIOCGLOWAT                     = 0x40047303\n\tSIOCGPGRP                      = 0x40047309\n\tSIOCGPRIVATE_0                 = 0xc0206950\n\tSIOCGPRIVATE_1                 = 0xc0206951\n\tSIOCGTUNFIB                    = 0xc020695e\n\tSIOCIFCREATE                   = 0xc020697a\n\tSIOCIFCREATE2                  = 0xc020697c\n\tSIOCIFDESTROY                  = 0x80206979\n\tSIOCIFGCLONERS                 = 0xc00c6978\n\tSIOCSDRVSPEC                   = 0x801c697b\n\tSIOCSHIWAT                     = 0x80047300\n\tSIOCSIFADDR                    = 0x8020690c\n\tSIOCSIFBRDADDR                 = 0x80206913\n\tSIOCSIFCAP                     = 0x8020691e\n\tSIOCSIFDESCR                   = 0x80206929\n\tSIOCSIFDSTADDR                 = 0x8020690e\n\tSIOCSIFFIB                     = 0x8020695d\n\tSIOCSIFFLAGS                   = 0x80206910\n\tSIOCSIFGENERIC                 = 0x80206939\n\tSIOCSIFLLADDR                  = 0x8020693c\n\tSIOCSIFMAC                     = 0x80206927\n\tSIOCSIFMEDIA                   = 0xc0206937\n\tSIOCSIFMETRIC                  = 0x80206918\n\tSIOCSIFMTU                     = 0x80206934\n\tSIOCSIFNAME                    = 0x80206928\n\tSIOCSIFNETMASK                 = 0x80206916\n\tSIOCSIFPHYADDR                 = 0x80406946\n\tSIOCSIFPHYS                    = 0x80206936\n\tSIOCSIFRVNET                   = 0xc020695b\n\tSIOCSIFVNET                    = 0xc020695a\n\tSIOCSLOWAT                     = 0x80047302\n\tSIOCSPGRP                      = 0x80047308\n\tSIOCSTUNFIB                    = 0x8020695f\n\tSOCK_CLOEXEC                   = 0x10000000\n\tSOCK_DGRAM                     = 0x2\n\tSOCK_MAXADDRLEN                = 0xff\n\tSOCK_NONBLOCK                  = 0x20000000\n\tSOCK_RAW                       = 0x3\n\tSOCK_RDM                       = 0x4\n\tSOCK_SEQPACKET                 = 0x5\n\tSOCK_STREAM                    = 0x1\n\tSOL_SOCKET                     = 0xffff\n\tSOMAXCONN                      = 0x80\n\tSO_ACCEPTCONN                  = 0x2\n\tSO_ACCEPTFILTER                = 0x1000\n\tSO_BINTIME                     = 0x2000\n\tSO_BROADCAST                   = 0x20\n\tSO_DEBUG                       = 0x1\n\tSO_DONTROUTE                   = 0x10\n\tSO_ERROR                       = 0x1007\n\tSO_KEEPALIVE                   = 0x8\n\tSO_LABEL                       = 0x1009\n\tSO_LINGER                      = 0x80\n\tSO_LISTENINCQLEN               = 0x1013\n\tSO_LISTENQLEN                  = 0x1012\n\tSO_LISTENQLIMIT                = 0x1011\n\tSO_NOSIGPIPE                   = 0x800\n\tSO_NO_DDP                      = 0x8000\n\tSO_NO_OFFLOAD                  = 0x4000\n\tSO_OOBINLINE                   = 0x100\n\tSO_PEERLABEL                   = 0x1010\n\tSO_PROTOCOL                    = 0x1016\n\tSO_PROTOTYPE                   = 0x1016\n\tSO_RCVBUF                      = 0x1002\n\tSO_RCVLOWAT                    = 0x1004\n\tSO_RCVTIMEO                    = 0x1006\n\tSO_REUSEADDR                   = 0x4\n\tSO_REUSEPORT                   = 0x200\n\tSO_SETFIB                      = 0x1014\n\tSO_SNDBUF                      = 0x1001\n\tSO_SNDLOWAT                    = 0x1003\n\tSO_SNDTIMEO                    = 0x1005\n\tSO_TIMESTAMP                   = 0x400\n\tSO_TYPE                        = 0x1008\n\tSO_USELOOPBACK                 = 0x40\n\tSO_USER_COOKIE                 = 0x1015\n\tSO_VENDOR                      = 0x80000000\n\tS_BLKSIZE                      = 0x200\n\tS_IEXEC                        = 0x40\n\tS_IFBLK                        = 0x6000\n\tS_IFCHR                        = 0x2000\n\tS_IFDIR                        = 0x4000\n\tS_IFIFO                        = 0x1000\n\tS_IFLNK                        = 0xa000\n\tS_IFMT                         = 0xf000\n\tS_IFREG                        = 0x8000\n\tS_IFSOCK                       = 0xc000\n\tS_IFWHT                        = 0xe000\n\tS_IREAD                        = 0x100\n\tS_IRGRP                        = 0x20\n\tS_IROTH                        = 0x4\n\tS_IRUSR                        = 0x100\n\tS_IRWXG                        = 0x38\n\tS_IRWXO                        = 0x7\n\tS_IRWXU                        = 0x1c0\n\tS_ISGID                        = 0x400\n\tS_ISTXT                        = 0x200\n\tS_ISUID                        = 0x800\n\tS_ISVTX                        = 0x200\n\tS_IWGRP                        = 0x10\n\tS_IWOTH                        = 0x2\n\tS_IWRITE                       = 0x80\n\tS_IWUSR                        = 0x80\n\tS_IXGRP                        = 0x8\n\tS_IXOTH                        = 0x1\n\tS_IXUSR                        = 0x40\n\tTAB0                           = 0x0\n\tTAB3                           = 0x4\n\tTABDLY                         = 0x4\n\tTCIFLUSH                       = 0x1\n\tTCIOFF                         = 0x3\n\tTCIOFLUSH                      = 0x3\n\tTCION                          = 0x4\n\tTCOFLUSH                       = 0x2\n\tTCOOFF                         = 0x1\n\tTCOON                          = 0x2\n\tTCP_CA_NAME_MAX                = 0x10\n\tTCP_CCALGOOPT                  = 0x41\n\tTCP_CONGESTION                 = 0x40\n\tTCP_FASTOPEN                   = 0x401\n\tTCP_FUNCTION_BLK               = 0x2000\n\tTCP_FUNCTION_NAME_LEN_MAX      = 0x20\n\tTCP_INFO                       = 0x20\n\tTCP_KEEPCNT                    = 0x400\n\tTCP_KEEPIDLE                   = 0x100\n\tTCP_KEEPINIT                   = 0x80\n\tTCP_KEEPINTVL                  = 0x200\n\tTCP_MAXBURST                   = 0x4\n\tTCP_MAXHLEN                    = 0x3c\n\tTCP_MAXOLEN                    = 0x28\n\tTCP_MAXSEG                     = 0x2\n\tTCP_MAXWIN                     = 0xffff\n\tTCP_MAX_SACK                   = 0x4\n\tTCP_MAX_WINSHIFT               = 0xe\n\tTCP_MD5SIG                     = 0x10\n\tTCP_MINMSS                     = 0xd8\n\tTCP_MSS                        = 0x218\n\tTCP_NODELAY                    = 0x1\n\tTCP_NOOPT                      = 0x8\n\tTCP_NOPUSH                     = 0x4\n\tTCP_PCAP_IN                    = 0x1000\n\tTCP_PCAP_OUT                   = 0x800\n\tTCP_VENDOR                     = 0x80000000\n\tTCSAFLUSH                      = 0x2\n\tTIOCCBRK                       = 0x2000747a\n\tTIOCCDTR                       = 0x20007478\n\tTIOCCONS                       = 0x80047462\n\tTIOCDRAIN                      = 0x2000745e\n\tTIOCEXCL                       = 0x2000740d\n\tTIOCEXT                        = 0x80047460\n\tTIOCFLUSH                      = 0x80047410\n\tTIOCGDRAINWAIT                 = 0x40047456\n\tTIOCGETA                       = 0x402c7413\n\tTIOCGETD                       = 0x4004741a\n\tTIOCGPGRP                      = 0x40047477\n\tTIOCGPTN                       = 0x4004740f\n\tTIOCGSID                       = 0x40047463\n\tTIOCGWINSZ                     = 0x40087468\n\tTIOCMBIC                       = 0x8004746b\n\tTIOCMBIS                       = 0x8004746c\n\tTIOCMGDTRWAIT                  = 0x4004745a\n\tTIOCMGET                       = 0x4004746a\n\tTIOCMSDTRWAIT                  = 0x8004745b\n\tTIOCMSET                       = 0x8004746d\n\tTIOCM_CAR                      = 0x40\n\tTIOCM_CD                       = 0x40\n\tTIOCM_CTS                      = 0x20\n\tTIOCM_DCD                      = 0x40\n\tTIOCM_DSR                      = 0x100\n\tTIOCM_DTR                      = 0x2\n\tTIOCM_LE                       = 0x1\n\tTIOCM_RI                       = 0x80\n\tTIOCM_RNG                      = 0x80\n\tTIOCM_RTS                      = 0x4\n\tTIOCM_SR                       = 0x10\n\tTIOCM_ST                       = 0x8\n\tTIOCNOTTY                      = 0x20007471\n\tTIOCNXCL                       = 0x2000740e\n\tTIOCOUTQ                       = 0x40047473\n\tTIOCPKT                        = 0x80047470\n\tTIOCPKT_DATA                   = 0x0\n\tTIOCPKT_DOSTOP                 = 0x20\n\tTIOCPKT_FLUSHREAD              = 0x1\n\tTIOCPKT_FLUSHWRITE             = 0x2\n\tTIOCPKT_IOCTL                  = 0x40\n\tTIOCPKT_NOSTOP                 = 0x10\n\tTIOCPKT_START                  = 0x8\n\tTIOCPKT_STOP                   = 0x4\n\tTIOCPTMASTER                   = 0x2000741c\n\tTIOCSBRK                       = 0x2000747b\n\tTIOCSCTTY                      = 0x20007461\n\tTIOCSDRAINWAIT                 = 0x80047457\n\tTIOCSDTR                       = 0x20007479\n\tTIOCSETA                       = 0x802c7414\n\tTIOCSETAF                      = 0x802c7416\n\tTIOCSETAW                      = 0x802c7415\n\tTIOCSETD                       = 0x8004741b\n\tTIOCSIG                        = 0x2004745f\n\tTIOCSPGRP                      = 0x80047476\n\tTIOCSTART                      = 0x2000746e\n\tTIOCSTAT                       = 0x20007465\n\tTIOCSTI                        = 0x80017472\n\tTIOCSTOP                       = 0x2000746f\n\tTIOCSWINSZ                     = 0x80087467\n\tTIOCTIMESTAMP                  = 0x40107459\n\tTIOCUCNTL                      = 0x80047466\n\tTOSTOP                         = 0x400000\n\tVDISCARD                       = 0xf\n\tVDSUSP                         = 0xb\n\tVEOF                           = 0x0\n\tVEOL                           = 0x1\n\tVEOL2                          = 0x2\n\tVERASE                         = 0x3\n\tVERASE2                        = 0x7\n\tVINTR                          = 0x8\n\tVKILL                          = 0x5\n\tVLNEXT                         = 0xe\n\tVMIN                           = 0x10\n\tVQUIT                          = 0x9\n\tVREPRINT                       = 0x6\n\tVSTART                         = 0xc\n\tVSTATUS                        = 0x12\n\tVSTOP                          = 0xd\n\tVSUSP                          = 0xa\n\tVTIME                          = 0x11\n\tVWERASE                        = 0x4\n\tWCONTINUED                     = 0x4\n\tWCOREFLAG                      = 0x80\n\tWEXITED                        = 0x10\n\tWLINUXCLONE                    = 0x80000000\n\tWNOHANG                        = 0x1\n\tWNOWAIT                        = 0x8\n\tWSTOPPED                       = 0x2\n\tWTRAPPED                       = 0x20\n\tWUNTRACED                      = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x59)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x55)\n\tECAPMODE        = syscall.Errno(0x5e)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDOOFUS         = syscall.Errno(0x58)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x52)\n\tEILSEQ          = syscall.Errno(0x56)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x60)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5a)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x57)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x5b)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x53)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCAPABLE     = syscall.Errno(0x5d)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x5f)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEOWNERDEAD      = syscall.Errno(0x60)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x5c)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGLIBRT  = syscall.Signal(0x21)\n\tSIGLWP    = syscall.Signal(0x20)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTHR    = syscall.Signal(0x20)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIDRM\", \"identifier removed\"},\n\t{83, \"ENOMSG\", \"no message of desired type\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"ECANCELED\", \"operation canceled\"},\n\t{86, \"EILSEQ\", \"illegal byte sequence\"},\n\t{87, \"ENOATTR\", \"attribute not found\"},\n\t{88, \"EDOOFUS\", \"programming error\"},\n\t{89, \"EBADMSG\", \"bad message\"},\n\t{90, \"EMULTIHOP\", \"multihop attempted\"},\n\t{91, \"ENOLINK\", \"link has been severed\"},\n\t{92, \"EPROTO\", \"protocol error\"},\n\t{93, \"ENOTCAPABLE\", \"capabilities insufficient\"},\n\t{94, \"ECAPMODE\", \"not permitted in capability mode\"},\n\t{95, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{96, \"EOWNERDEAD\", \"previous owner died\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"unknown signal\"},\n\t{33, \"SIGLIBRT\", \"unknown signal\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,freebsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                   = 0x10\n\tAF_ARP                         = 0x23\n\tAF_ATM                         = 0x1e\n\tAF_BLUETOOTH                   = 0x24\n\tAF_CCITT                       = 0xa\n\tAF_CHAOS                       = 0x5\n\tAF_CNT                         = 0x15\n\tAF_COIP                        = 0x14\n\tAF_DATAKIT                     = 0x9\n\tAF_DECnet                      = 0xc\n\tAF_DLI                         = 0xd\n\tAF_E164                        = 0x1a\n\tAF_ECMA                        = 0x8\n\tAF_HYLINK                      = 0xf\n\tAF_IEEE80211                   = 0x25\n\tAF_IMPLINK                     = 0x3\n\tAF_INET                        = 0x2\n\tAF_INET6                       = 0x1c\n\tAF_INET6_SDP                   = 0x2a\n\tAF_INET_SDP                    = 0x28\n\tAF_IPX                         = 0x17\n\tAF_ISDN                        = 0x1a\n\tAF_ISO                         = 0x7\n\tAF_LAT                         = 0xe\n\tAF_LINK                        = 0x12\n\tAF_LOCAL                       = 0x1\n\tAF_MAX                         = 0x2a\n\tAF_NATM                        = 0x1d\n\tAF_NETBIOS                     = 0x6\n\tAF_NETGRAPH                    = 0x20\n\tAF_OSI                         = 0x7\n\tAF_PUP                         = 0x4\n\tAF_ROUTE                       = 0x11\n\tAF_SCLUSTER                    = 0x22\n\tAF_SIP                         = 0x18\n\tAF_SLOW                        = 0x21\n\tAF_SNA                         = 0xb\n\tAF_UNIX                        = 0x1\n\tAF_UNSPEC                      = 0x0\n\tAF_VENDOR00                    = 0x27\n\tAF_VENDOR01                    = 0x29\n\tAF_VENDOR02                    = 0x2b\n\tAF_VENDOR03                    = 0x2d\n\tAF_VENDOR04                    = 0x2f\n\tAF_VENDOR05                    = 0x31\n\tAF_VENDOR06                    = 0x33\n\tAF_VENDOR07                    = 0x35\n\tAF_VENDOR08                    = 0x37\n\tAF_VENDOR09                    = 0x39\n\tAF_VENDOR10                    = 0x3b\n\tAF_VENDOR11                    = 0x3d\n\tAF_VENDOR12                    = 0x3f\n\tAF_VENDOR13                    = 0x41\n\tAF_VENDOR14                    = 0x43\n\tAF_VENDOR15                    = 0x45\n\tAF_VENDOR16                    = 0x47\n\tAF_VENDOR17                    = 0x49\n\tAF_VENDOR18                    = 0x4b\n\tAF_VENDOR19                    = 0x4d\n\tAF_VENDOR20                    = 0x4f\n\tAF_VENDOR21                    = 0x51\n\tAF_VENDOR22                    = 0x53\n\tAF_VENDOR23                    = 0x55\n\tAF_VENDOR24                    = 0x57\n\tAF_VENDOR25                    = 0x59\n\tAF_VENDOR26                    = 0x5b\n\tAF_VENDOR27                    = 0x5d\n\tAF_VENDOR28                    = 0x5f\n\tAF_VENDOR29                    = 0x61\n\tAF_VENDOR30                    = 0x63\n\tAF_VENDOR31                    = 0x65\n\tAF_VENDOR32                    = 0x67\n\tAF_VENDOR33                    = 0x69\n\tAF_VENDOR34                    = 0x6b\n\tAF_VENDOR35                    = 0x6d\n\tAF_VENDOR36                    = 0x6f\n\tAF_VENDOR37                    = 0x71\n\tAF_VENDOR38                    = 0x73\n\tAF_VENDOR39                    = 0x75\n\tAF_VENDOR40                    = 0x77\n\tAF_VENDOR41                    = 0x79\n\tAF_VENDOR42                    = 0x7b\n\tAF_VENDOR43                    = 0x7d\n\tAF_VENDOR44                    = 0x7f\n\tAF_VENDOR45                    = 0x81\n\tAF_VENDOR46                    = 0x83\n\tAF_VENDOR47                    = 0x85\n\tALTWERASE                      = 0x200\n\tB0                             = 0x0\n\tB110                           = 0x6e\n\tB115200                        = 0x1c200\n\tB1200                          = 0x4b0\n\tB134                           = 0x86\n\tB14400                         = 0x3840\n\tB150                           = 0x96\n\tB1800                          = 0x708\n\tB19200                         = 0x4b00\n\tB200                           = 0xc8\n\tB230400                        = 0x38400\n\tB2400                          = 0x960\n\tB28800                         = 0x7080\n\tB300                           = 0x12c\n\tB38400                         = 0x9600\n\tB460800                        = 0x70800\n\tB4800                          = 0x12c0\n\tB50                            = 0x32\n\tB57600                         = 0xe100\n\tB600                           = 0x258\n\tB7200                          = 0x1c20\n\tB75                            = 0x4b\n\tB76800                         = 0x12c00\n\tB921600                        = 0xe1000\n\tB9600                          = 0x2580\n\tBIOCFEEDBACK                   = 0x8004427c\n\tBIOCFLUSH                      = 0x20004268\n\tBIOCGBLEN                      = 0x40044266\n\tBIOCGDIRECTION                 = 0x40044276\n\tBIOCGDLT                       = 0x4004426a\n\tBIOCGDLTLIST                   = 0xc0104279\n\tBIOCGETBUFMODE                 = 0x4004427d\n\tBIOCGETIF                      = 0x4020426b\n\tBIOCGETZMAX                    = 0x4008427f\n\tBIOCGHDRCMPLT                  = 0x40044274\n\tBIOCGRSIG                      = 0x40044272\n\tBIOCGRTIMEOUT                  = 0x4010426e\n\tBIOCGSEESENT                   = 0x40044276\n\tBIOCGSTATS                     = 0x4008426f\n\tBIOCGTSTAMP                    = 0x40044283\n\tBIOCIMMEDIATE                  = 0x80044270\n\tBIOCLOCK                       = 0x2000427a\n\tBIOCPROMISC                    = 0x20004269\n\tBIOCROTZBUF                    = 0x40184280\n\tBIOCSBLEN                      = 0xc0044266\n\tBIOCSDIRECTION                 = 0x80044277\n\tBIOCSDLT                       = 0x80044278\n\tBIOCSETBUFMODE                 = 0x8004427e\n\tBIOCSETF                       = 0x80104267\n\tBIOCSETFNR                     = 0x80104282\n\tBIOCSETIF                      = 0x8020426c\n\tBIOCSETWF                      = 0x8010427b\n\tBIOCSETZBUF                    = 0x80184281\n\tBIOCSHDRCMPLT                  = 0x80044275\n\tBIOCSRSIG                      = 0x80044273\n\tBIOCSRTIMEOUT                  = 0x8010426d\n\tBIOCSSEESENT                   = 0x80044277\n\tBIOCSTSTAMP                    = 0x80044284\n\tBIOCVERSION                    = 0x40044271\n\tBPF_A                          = 0x10\n\tBPF_ABS                        = 0x20\n\tBPF_ADD                        = 0x0\n\tBPF_ALIGNMENT                  = 0x8\n\tBPF_ALU                        = 0x4\n\tBPF_AND                        = 0x50\n\tBPF_B                          = 0x10\n\tBPF_BUFMODE_BUFFER             = 0x1\n\tBPF_BUFMODE_ZBUF               = 0x2\n\tBPF_DIV                        = 0x30\n\tBPF_H                          = 0x8\n\tBPF_IMM                        = 0x0\n\tBPF_IND                        = 0x40\n\tBPF_JA                         = 0x0\n\tBPF_JEQ                        = 0x10\n\tBPF_JGE                        = 0x30\n\tBPF_JGT                        = 0x20\n\tBPF_JMP                        = 0x5\n\tBPF_JSET                       = 0x40\n\tBPF_K                          = 0x0\n\tBPF_LD                         = 0x0\n\tBPF_LDX                        = 0x1\n\tBPF_LEN                        = 0x80\n\tBPF_LSH                        = 0x60\n\tBPF_MAJOR_VERSION              = 0x1\n\tBPF_MAXBUFSIZE                 = 0x80000\n\tBPF_MAXINSNS                   = 0x200\n\tBPF_MEM                        = 0x60\n\tBPF_MEMWORDS                   = 0x10\n\tBPF_MINBUFSIZE                 = 0x20\n\tBPF_MINOR_VERSION              = 0x1\n\tBPF_MISC                       = 0x7\n\tBPF_MOD                        = 0x90\n\tBPF_MSH                        = 0xa0\n\tBPF_MUL                        = 0x20\n\tBPF_NEG                        = 0x80\n\tBPF_OR                         = 0x40\n\tBPF_RELEASE                    = 0x30bb6\n\tBPF_RET                        = 0x6\n\tBPF_RSH                        = 0x70\n\tBPF_ST                         = 0x2\n\tBPF_STX                        = 0x3\n\tBPF_SUB                        = 0x10\n\tBPF_TAX                        = 0x0\n\tBPF_TXA                        = 0x80\n\tBPF_T_BINTIME                  = 0x2\n\tBPF_T_BINTIME_FAST             = 0x102\n\tBPF_T_BINTIME_MONOTONIC        = 0x202\n\tBPF_T_BINTIME_MONOTONIC_FAST   = 0x302\n\tBPF_T_FAST                     = 0x100\n\tBPF_T_FLAG_MASK                = 0x300\n\tBPF_T_FORMAT_MASK              = 0x3\n\tBPF_T_MICROTIME                = 0x0\n\tBPF_T_MICROTIME_FAST           = 0x100\n\tBPF_T_MICROTIME_MONOTONIC      = 0x200\n\tBPF_T_MICROTIME_MONOTONIC_FAST = 0x300\n\tBPF_T_MONOTONIC                = 0x200\n\tBPF_T_MONOTONIC_FAST           = 0x300\n\tBPF_T_NANOTIME                 = 0x1\n\tBPF_T_NANOTIME_FAST            = 0x101\n\tBPF_T_NANOTIME_MONOTONIC       = 0x201\n\tBPF_T_NANOTIME_MONOTONIC_FAST  = 0x301\n\tBPF_T_NONE                     = 0x3\n\tBPF_T_NORMAL                   = 0x0\n\tBPF_W                          = 0x0\n\tBPF_X                          = 0x8\n\tBPF_XOR                        = 0xa0\n\tBRKINT                         = 0x2\n\tCAP_ACCEPT                     = 0x200000020000000\n\tCAP_ACL_CHECK                  = 0x400000000010000\n\tCAP_ACL_DELETE                 = 0x400000000020000\n\tCAP_ACL_GET                    = 0x400000000040000\n\tCAP_ACL_SET                    = 0x400000000080000\n\tCAP_ALL0                       = 0x20007ffffffffff\n\tCAP_ALL1                       = 0x4000000001fffff\n\tCAP_BIND                       = 0x200000040000000\n\tCAP_BINDAT                     = 0x200008000000400\n\tCAP_CHFLAGSAT                  = 0x200000000001400\n\tCAP_CONNECT                    = 0x200000080000000\n\tCAP_CONNECTAT                  = 0x200010000000400\n\tCAP_CREATE                     = 0x200000000000040\n\tCAP_EVENT                      = 0x400000000000020\n\tCAP_EXTATTR_DELETE             = 0x400000000001000\n\tCAP_EXTATTR_GET                = 0x400000000002000\n\tCAP_EXTATTR_LIST               = 0x400000000004000\n\tCAP_EXTATTR_SET                = 0x400000000008000\n\tCAP_FCHDIR                     = 0x200000000000800\n\tCAP_FCHFLAGS                   = 0x200000000001000\n\tCAP_FCHMOD                     = 0x200000000002000\n\tCAP_FCHMODAT                   = 0x200000000002400\n\tCAP_FCHOWN                     = 0x200000000004000\n\tCAP_FCHOWNAT                   = 0x200000000004400\n\tCAP_FCNTL                      = 0x200000000008000\n\tCAP_FCNTL_ALL                  = 0x78\n\tCAP_FCNTL_GETFL                = 0x8\n\tCAP_FCNTL_GETOWN               = 0x20\n\tCAP_FCNTL_SETFL                = 0x10\n\tCAP_FCNTL_SETOWN               = 0x40\n\tCAP_FEXECVE                    = 0x200000000000080\n\tCAP_FLOCK                      = 0x200000000010000\n\tCAP_FPATHCONF                  = 0x200000000020000\n\tCAP_FSCK                       = 0x200000000040000\n\tCAP_FSTAT                      = 0x200000000080000\n\tCAP_FSTATAT                    = 0x200000000080400\n\tCAP_FSTATFS                    = 0x200000000100000\n\tCAP_FSYNC                      = 0x200000000000100\n\tCAP_FTRUNCATE                  = 0x200000000000200\n\tCAP_FUTIMES                    = 0x200000000200000\n\tCAP_FUTIMESAT                  = 0x200000000200400\n\tCAP_GETPEERNAME                = 0x200000100000000\n\tCAP_GETSOCKNAME                = 0x200000200000000\n\tCAP_GETSOCKOPT                 = 0x200000400000000\n\tCAP_IOCTL                      = 0x400000000000080\n\tCAP_IOCTLS_ALL                 = 0x7fffffffffffffff\n\tCAP_KQUEUE                     = 0x400000000100040\n\tCAP_KQUEUE_CHANGE              = 0x400000000100000\n\tCAP_KQUEUE_EVENT               = 0x400000000000040\n\tCAP_LINKAT_SOURCE              = 0x200020000000400\n\tCAP_LINKAT_TARGET              = 0x200000000400400\n\tCAP_LISTEN                     = 0x200000800000000\n\tCAP_LOOKUP                     = 0x200000000000400\n\tCAP_MAC_GET                    = 0x400000000000001\n\tCAP_MAC_SET                    = 0x400000000000002\n\tCAP_MKDIRAT                    = 0x200000000800400\n\tCAP_MKFIFOAT                   = 0x200000001000400\n\tCAP_MKNODAT                    = 0x200000002000400\n\tCAP_MMAP                       = 0x200000000000010\n\tCAP_MMAP_R                     = 0x20000000000001d\n\tCAP_MMAP_RW                    = 0x20000000000001f\n\tCAP_MMAP_RWX                   = 0x20000000000003f\n\tCAP_MMAP_RX                    = 0x20000000000003d\n\tCAP_MMAP_W                     = 0x20000000000001e\n\tCAP_MMAP_WX                    = 0x20000000000003e\n\tCAP_MMAP_X                     = 0x20000000000003c\n\tCAP_PDGETPID                   = 0x400000000000200\n\tCAP_PDKILL                     = 0x400000000000800\n\tCAP_PDWAIT                     = 0x400000000000400\n\tCAP_PEELOFF                    = 0x200001000000000\n\tCAP_POLL_EVENT                 = 0x400000000000020\n\tCAP_PREAD                      = 0x20000000000000d\n\tCAP_PWRITE                     = 0x20000000000000e\n\tCAP_READ                       = 0x200000000000001\n\tCAP_RECV                       = 0x200000000000001\n\tCAP_RENAMEAT_SOURCE            = 0x200000004000400\n\tCAP_RENAMEAT_TARGET            = 0x200040000000400\n\tCAP_RIGHTS_VERSION             = 0x0\n\tCAP_RIGHTS_VERSION_00          = 0x0\n\tCAP_SEEK                       = 0x20000000000000c\n\tCAP_SEEK_TELL                  = 0x200000000000004\n\tCAP_SEM_GETVALUE               = 0x400000000000004\n\tCAP_SEM_POST                   = 0x400000000000008\n\tCAP_SEM_WAIT                   = 0x400000000000010\n\tCAP_SEND                       = 0x200000000000002\n\tCAP_SETSOCKOPT                 = 0x200002000000000\n\tCAP_SHUTDOWN                   = 0x200004000000000\n\tCAP_SOCK_CLIENT                = 0x200007780000003\n\tCAP_SOCK_SERVER                = 0x200007f60000003\n\tCAP_SYMLINKAT                  = 0x200000008000400\n\tCAP_TTYHOOK                    = 0x400000000000100\n\tCAP_UNLINKAT                   = 0x200000010000400\n\tCAP_UNUSED0_44                 = 0x200080000000000\n\tCAP_UNUSED0_57                 = 0x300000000000000\n\tCAP_UNUSED1_22                 = 0x400000000200000\n\tCAP_UNUSED1_57                 = 0x500000000000000\n\tCAP_WRITE                      = 0x200000000000002\n\tCFLUSH                         = 0xf\n\tCLOCAL                         = 0x8000\n\tCLOCK_MONOTONIC                = 0x4\n\tCLOCK_MONOTONIC_FAST           = 0xc\n\tCLOCK_MONOTONIC_PRECISE        = 0xb\n\tCLOCK_PROCESS_CPUTIME_ID       = 0xf\n\tCLOCK_PROF                     = 0x2\n\tCLOCK_REALTIME                 = 0x0\n\tCLOCK_REALTIME_FAST            = 0xa\n\tCLOCK_REALTIME_PRECISE         = 0x9\n\tCLOCK_SECOND                   = 0xd\n\tCLOCK_THREAD_CPUTIME_ID        = 0xe\n\tCLOCK_UPTIME                   = 0x5\n\tCLOCK_UPTIME_FAST              = 0x8\n\tCLOCK_UPTIME_PRECISE           = 0x7\n\tCLOCK_VIRTUAL                  = 0x1\n\tCPUSTATES                      = 0x5\n\tCP_IDLE                        = 0x4\n\tCP_INTR                        = 0x3\n\tCP_NICE                        = 0x1\n\tCP_SYS                         = 0x2\n\tCP_USER                        = 0x0\n\tCREAD                          = 0x800\n\tCRTSCTS                        = 0x30000\n\tCS5                            = 0x0\n\tCS6                            = 0x100\n\tCS7                            = 0x200\n\tCS8                            = 0x300\n\tCSIZE                          = 0x300\n\tCSTART                         = 0x11\n\tCSTATUS                        = 0x14\n\tCSTOP                          = 0x13\n\tCSTOPB                         = 0x400\n\tCSUSP                          = 0x1a\n\tCTL_HW                         = 0x6\n\tCTL_KERN                       = 0x1\n\tCTL_MAXNAME                    = 0x18\n\tCTL_NET                        = 0x4\n\tDIOCGATTR                      = 0xc148648e\n\tDIOCGDELETE                    = 0x80106488\n\tDIOCGFLUSH                     = 0x20006487\n\tDIOCGFRONTSTUFF                = 0x40086486\n\tDIOCGFWHEADS                   = 0x40046483\n\tDIOCGFWSECTORS                 = 0x40046482\n\tDIOCGIDENT                     = 0x41006489\n\tDIOCGMEDIASIZE                 = 0x40086481\n\tDIOCGPHYSPATH                  = 0x4400648d\n\tDIOCGPROVIDERNAME              = 0x4400648a\n\tDIOCGSECTORSIZE                = 0x40046480\n\tDIOCGSTRIPEOFFSET              = 0x4008648c\n\tDIOCGSTRIPESIZE                = 0x4008648b\n\tDIOCSKERNELDUMP                = 0x80506490\n\tDIOCSKERNELDUMP_FREEBSD11      = 0x80046485\n\tDIOCZONECMD                    = 0xc080648f\n\tDLT_A429                       = 0xb8\n\tDLT_A653_ICM                   = 0xb9\n\tDLT_AIRONET_HEADER             = 0x78\n\tDLT_AOS                        = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394     = 0x8a\n\tDLT_ARCNET                     = 0x7\n\tDLT_ARCNET_LINUX               = 0x81\n\tDLT_ATM_CLIP                   = 0x13\n\tDLT_ATM_RFC1483                = 0xb\n\tDLT_AURORA                     = 0x7e\n\tDLT_AX25                       = 0x3\n\tDLT_AX25_KISS                  = 0xca\n\tDLT_BACNET_MS_TP               = 0xa5\n\tDLT_BLUETOOTH_BREDR_BB         = 0xff\n\tDLT_BLUETOOTH_HCI_H4           = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9\n\tDLT_BLUETOOTH_LE_LL            = 0xfb\n\tDLT_BLUETOOTH_LE_LL_WITH_PHDR  = 0x100\n\tDLT_BLUETOOTH_LINUX_MONITOR    = 0xfe\n\tDLT_CAN20B                     = 0xbe\n\tDLT_CAN_SOCKETCAN              = 0xe3\n\tDLT_CHAOS                      = 0x5\n\tDLT_CHDLC                      = 0x68\n\tDLT_CISCO_IOS                  = 0x76\n\tDLT_CLASS_NETBSD_RAWAF         = 0x2240000\n\tDLT_C_HDLC                     = 0x68\n\tDLT_C_HDLC_WITH_DIR            = 0xcd\n\tDLT_DBUS                       = 0xe7\n\tDLT_DECT                       = 0xdd\n\tDLT_DISPLAYPORT_AUX            = 0x113\n\tDLT_DOCSIS                     = 0x8f\n\tDLT_DOCSIS31_XRA31             = 0x111\n\tDLT_DVB_CI                     = 0xeb\n\tDLT_ECONET                     = 0x73\n\tDLT_EN10MB                     = 0x1\n\tDLT_EN3MB                      = 0x2\n\tDLT_ENC                        = 0x6d\n\tDLT_EPON                       = 0x103\n\tDLT_ERF                        = 0xc5\n\tDLT_ERF_ETH                    = 0xaf\n\tDLT_ERF_POS                    = 0xb0\n\tDLT_ETHERNET_MPACKET           = 0x112\n\tDLT_FC_2                       = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS     = 0xe1\n\tDLT_FDDI                       = 0xa\n\tDLT_FLEXRAY                    = 0xd2\n\tDLT_FRELAY                     = 0x6b\n\tDLT_FRELAY_WITH_DIR            = 0xce\n\tDLT_GCOM_SERIAL                = 0xad\n\tDLT_GCOM_T1E1                  = 0xac\n\tDLT_GPF_F                      = 0xab\n\tDLT_GPF_T                      = 0xaa\n\tDLT_GPRS_LLC                   = 0xa9\n\tDLT_GSMTAP_ABIS                = 0xda\n\tDLT_GSMTAP_UM                  = 0xd9\n\tDLT_IBM_SN                     = 0x92\n\tDLT_IBM_SP                     = 0x91\n\tDLT_IEEE802                    = 0x6\n\tDLT_IEEE802_11                 = 0x69\n\tDLT_IEEE802_11_RADIO           = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS       = 0xa3\n\tDLT_IEEE802_15_4               = 0xc3\n\tDLT_IEEE802_15_4_LINUX         = 0xbf\n\tDLT_IEEE802_15_4_NOFCS         = 0xe6\n\tDLT_IEEE802_15_4_NONASK_PHY    = 0xd7\n\tDLT_IEEE802_16_MAC_CPS         = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO   = 0xc1\n\tDLT_INFINIBAND                 = 0xf7\n\tDLT_IPFILTER                   = 0x74\n\tDLT_IPMB                       = 0xc7\n\tDLT_IPMB_LINUX                 = 0xd1\n\tDLT_IPMI_HPM_2                 = 0x104\n\tDLT_IPNET                      = 0xe2\n\tDLT_IPOIB                      = 0xf2\n\tDLT_IPV4                       = 0xe4\n\tDLT_IPV6                       = 0xe5\n\tDLT_IP_OVER_FC                 = 0x7a\n\tDLT_ISO_14443                  = 0x108\n\tDLT_JUNIPER_ATM1               = 0x89\n\tDLT_JUNIPER_ATM2               = 0x87\n\tDLT_JUNIPER_ATM_CEMIC          = 0xee\n\tDLT_JUNIPER_CHDLC              = 0xb5\n\tDLT_JUNIPER_ES                 = 0x84\n\tDLT_JUNIPER_ETHER              = 0xb2\n\tDLT_JUNIPER_FIBRECHANNEL       = 0xea\n\tDLT_JUNIPER_FRELAY             = 0xb4\n\tDLT_JUNIPER_GGSN               = 0x85\n\tDLT_JUNIPER_ISM                = 0xc2\n\tDLT_JUNIPER_MFR                = 0x86\n\tDLT_JUNIPER_MLFR               = 0x83\n\tDLT_JUNIPER_MLPPP              = 0x82\n\tDLT_JUNIPER_MONITOR            = 0xa4\n\tDLT_JUNIPER_PIC_PEER           = 0xae\n\tDLT_JUNIPER_PPP                = 0xb3\n\tDLT_JUNIPER_PPPOE              = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM          = 0xa8\n\tDLT_JUNIPER_SERVICES           = 0x88\n\tDLT_JUNIPER_SRX_E2E            = 0xe9\n\tDLT_JUNIPER_ST                 = 0xc8\n\tDLT_JUNIPER_VP                 = 0xb7\n\tDLT_JUNIPER_VS                 = 0xe8\n\tDLT_LAPB_WITH_DIR              = 0xcf\n\tDLT_LAPD                       = 0xcb\n\tDLT_LIN                        = 0xd4\n\tDLT_LINUX_EVDEV                = 0xd8\n\tDLT_LINUX_IRDA                 = 0x90\n\tDLT_LINUX_LAPD                 = 0xb1\n\tDLT_LINUX_PPP_WITHDIRECTION    = 0xa6\n\tDLT_LINUX_SLL                  = 0x71\n\tDLT_LOOP                       = 0x6c\n\tDLT_LORATAP                    = 0x10e\n\tDLT_LTALK                      = 0x72\n\tDLT_MATCHING_MAX               = 0x113\n\tDLT_MATCHING_MIN               = 0x68\n\tDLT_MFR                        = 0xb6\n\tDLT_MOST                       = 0xd3\n\tDLT_MPEG_2_TS                  = 0xf3\n\tDLT_MPLS                       = 0xdb\n\tDLT_MTP2                       = 0x8c\n\tDLT_MTP2_WITH_PHDR             = 0x8b\n\tDLT_MTP3                       = 0x8d\n\tDLT_MUX27010                   = 0xec\n\tDLT_NETANALYZER                = 0xf0\n\tDLT_NETANALYZER_TRANSPARENT    = 0xf1\n\tDLT_NETLINK                    = 0xfd\n\tDLT_NFC_LLCP                   = 0xf5\n\tDLT_NFLOG                      = 0xef\n\tDLT_NG40                       = 0xf4\n\tDLT_NORDIC_BLE                 = 0x110\n\tDLT_NULL                       = 0x0\n\tDLT_OPENFLOW                   = 0x10b\n\tDLT_PCI_EXP                    = 0x7d\n\tDLT_PFLOG                      = 0x75\n\tDLT_PFSYNC                     = 0x79\n\tDLT_PKTAP                      = 0x102\n\tDLT_PPI                        = 0xc0\n\tDLT_PPP                        = 0x9\n\tDLT_PPP_BSDOS                  = 0xe\n\tDLT_PPP_ETHER                  = 0x33\n\tDLT_PPP_PPPD                   = 0xa6\n\tDLT_PPP_SERIAL                 = 0x32\n\tDLT_PPP_WITH_DIR               = 0xcc\n\tDLT_PPP_WITH_DIRECTION         = 0xa6\n\tDLT_PRISM_HEADER               = 0x77\n\tDLT_PROFIBUS_DL                = 0x101\n\tDLT_PRONET                     = 0x4\n\tDLT_RAIF1                      = 0xc6\n\tDLT_RAW                        = 0xc\n\tDLT_RDS                        = 0x109\n\tDLT_REDBACK_SMARTEDGE          = 0x20\n\tDLT_RIO                        = 0x7c\n\tDLT_RTAC_SERIAL                = 0xfa\n\tDLT_SCCP                       = 0x8e\n\tDLT_SCTP                       = 0xf8\n\tDLT_SDLC                       = 0x10c\n\tDLT_SITA                       = 0xc4\n\tDLT_SLIP                       = 0x8\n\tDLT_SLIP_BSDOS                 = 0xd\n\tDLT_STANAG_5066_D_PDU          = 0xed\n\tDLT_SUNATM                     = 0x7b\n\tDLT_SYMANTEC_FIREWALL          = 0x63\n\tDLT_TI_LLN_SNIFFER             = 0x10d\n\tDLT_TZSP                       = 0x80\n\tDLT_USB                        = 0xba\n\tDLT_USBPCAP                    = 0xf9\n\tDLT_USB_DARWIN                 = 0x10a\n\tDLT_USB_FREEBSD                = 0xba\n\tDLT_USB_LINUX                  = 0xbd\n\tDLT_USB_LINUX_MMAPPED          = 0xdc\n\tDLT_USER0                      = 0x93\n\tDLT_USER1                      = 0x94\n\tDLT_USER10                     = 0x9d\n\tDLT_USER11                     = 0x9e\n\tDLT_USER12                     = 0x9f\n\tDLT_USER13                     = 0xa0\n\tDLT_USER14                     = 0xa1\n\tDLT_USER15                     = 0xa2\n\tDLT_USER2                      = 0x95\n\tDLT_USER3                      = 0x96\n\tDLT_USER4                      = 0x97\n\tDLT_USER5                      = 0x98\n\tDLT_USER6                      = 0x99\n\tDLT_USER7                      = 0x9a\n\tDLT_USER8                      = 0x9b\n\tDLT_USER9                      = 0x9c\n\tDLT_VSOCK                      = 0x10f\n\tDLT_WATTSTOPPER_DLM            = 0x107\n\tDLT_WIHART                     = 0xdf\n\tDLT_WIRESHARK_UPPER_PDU        = 0xfc\n\tDLT_X2E_SERIAL                 = 0xd5\n\tDLT_X2E_XORAYA                 = 0xd6\n\tDLT_ZWAVE_R1_R2                = 0x105\n\tDLT_ZWAVE_R3                   = 0x106\n\tDT_BLK                         = 0x6\n\tDT_CHR                         = 0x2\n\tDT_DIR                         = 0x4\n\tDT_FIFO                        = 0x1\n\tDT_LNK                         = 0xa\n\tDT_REG                         = 0x8\n\tDT_SOCK                        = 0xc\n\tDT_UNKNOWN                     = 0x0\n\tDT_WHT                         = 0xe\n\tECHO                           = 0x8\n\tECHOCTL                        = 0x40\n\tECHOE                          = 0x2\n\tECHOK                          = 0x4\n\tECHOKE                         = 0x1\n\tECHONL                         = 0x10\n\tECHOPRT                        = 0x20\n\tEVFILT_AIO                     = -0x3\n\tEVFILT_EMPTY                   = -0xd\n\tEVFILT_FS                      = -0x9\n\tEVFILT_LIO                     = -0xa\n\tEVFILT_PROC                    = -0x5\n\tEVFILT_PROCDESC                = -0x8\n\tEVFILT_READ                    = -0x1\n\tEVFILT_SENDFILE                = -0xc\n\tEVFILT_SIGNAL                  = -0x6\n\tEVFILT_SYSCOUNT                = 0xd\n\tEVFILT_TIMER                   = -0x7\n\tEVFILT_USER                    = -0xb\n\tEVFILT_VNODE                   = -0x4\n\tEVFILT_WRITE                   = -0x2\n\tEVNAMEMAP_NAME_SIZE            = 0x40\n\tEV_ADD                         = 0x1\n\tEV_CLEAR                       = 0x20\n\tEV_DELETE                      = 0x2\n\tEV_DISABLE                     = 0x8\n\tEV_DISPATCH                    = 0x80\n\tEV_DROP                        = 0x1000\n\tEV_ENABLE                      = 0x4\n\tEV_EOF                         = 0x8000\n\tEV_ERROR                       = 0x4000\n\tEV_FLAG1                       = 0x2000\n\tEV_FLAG2                       = 0x4000\n\tEV_FORCEONESHOT                = 0x100\n\tEV_ONESHOT                     = 0x10\n\tEV_RECEIPT                     = 0x40\n\tEV_SYSFLAGS                    = 0xf000\n\tEXTA                           = 0x4b00\n\tEXTATTR_MAXNAMELEN             = 0xff\n\tEXTATTR_NAMESPACE_EMPTY        = 0x0\n\tEXTATTR_NAMESPACE_SYSTEM       = 0x2\n\tEXTATTR_NAMESPACE_USER         = 0x1\n\tEXTB                           = 0x9600\n\tEXTPROC                        = 0x800\n\tFD_CLOEXEC                     = 0x1\n\tFD_SETSIZE                     = 0x400\n\tFLUSHO                         = 0x800000\n\tF_CANCEL                       = 0x5\n\tF_DUP2FD                       = 0xa\n\tF_DUP2FD_CLOEXEC               = 0x12\n\tF_DUPFD                        = 0x0\n\tF_DUPFD_CLOEXEC                = 0x11\n\tF_GETFD                        = 0x1\n\tF_GETFL                        = 0x3\n\tF_GETLK                        = 0xb\n\tF_GETOWN                       = 0x5\n\tF_OGETLK                       = 0x7\n\tF_OK                           = 0x0\n\tF_OSETLK                       = 0x8\n\tF_OSETLKW                      = 0x9\n\tF_RDAHEAD                      = 0x10\n\tF_RDLCK                        = 0x1\n\tF_READAHEAD                    = 0xf\n\tF_SETFD                        = 0x2\n\tF_SETFL                        = 0x4\n\tF_SETLK                        = 0xc\n\tF_SETLKW                       = 0xd\n\tF_SETLK_REMOTE                 = 0xe\n\tF_SETOWN                       = 0x6\n\tF_UNLCK                        = 0x2\n\tF_UNLCKSYS                     = 0x4\n\tF_WRLCK                        = 0x3\n\tHUPCL                          = 0x4000\n\tHW_MACHINE                     = 0x1\n\tICANON                         = 0x100\n\tICMP6_FILTER                   = 0x12\n\tICRNL                          = 0x100\n\tIEXTEN                         = 0x400\n\tIFAN_ARRIVAL                   = 0x0\n\tIFAN_DEPARTURE                 = 0x1\n\tIFCAP_WOL_MAGIC                = 0x2000\n\tIFF_ALLMULTI                   = 0x200\n\tIFF_ALTPHYS                    = 0x4000\n\tIFF_BROADCAST                  = 0x2\n\tIFF_CANTCHANGE                 = 0x218f52\n\tIFF_CANTCONFIG                 = 0x10000\n\tIFF_DEBUG                      = 0x4\n\tIFF_DRV_OACTIVE                = 0x400\n\tIFF_DRV_RUNNING                = 0x40\n\tIFF_DYING                      = 0x200000\n\tIFF_LINK0                      = 0x1000\n\tIFF_LINK1                      = 0x2000\n\tIFF_LINK2                      = 0x4000\n\tIFF_LOOPBACK                   = 0x8\n\tIFF_MONITOR                    = 0x40000\n\tIFF_MULTICAST                  = 0x8000\n\tIFF_NOARP                      = 0x80\n\tIFF_NOGROUP                    = 0x800000\n\tIFF_OACTIVE                    = 0x400\n\tIFF_POINTOPOINT                = 0x10\n\tIFF_PPROMISC                   = 0x20000\n\tIFF_PROMISC                    = 0x100\n\tIFF_RENAMING                   = 0x400000\n\tIFF_RUNNING                    = 0x40\n\tIFF_SIMPLEX                    = 0x800\n\tIFF_STATICARP                  = 0x80000\n\tIFF_UP                         = 0x1\n\tIFNAMSIZ                       = 0x10\n\tIFT_BRIDGE                     = 0xd1\n\tIFT_CARP                       = 0xf8\n\tIFT_IEEE1394                   = 0x90\n\tIFT_INFINIBAND                 = 0xc7\n\tIFT_L2VLAN                     = 0x87\n\tIFT_L3IPVLAN                   = 0x88\n\tIFT_PPP                        = 0x17\n\tIFT_PROPVIRTUAL                = 0x35\n\tIGNBRK                         = 0x1\n\tIGNCR                          = 0x80\n\tIGNPAR                         = 0x4\n\tIMAXBEL                        = 0x2000\n\tINLCR                          = 0x40\n\tINPCK                          = 0x10\n\tIN_CLASSA_HOST                 = 0xffffff\n\tIN_CLASSA_MAX                  = 0x80\n\tIN_CLASSA_NET                  = 0xff000000\n\tIN_CLASSA_NSHIFT               = 0x18\n\tIN_CLASSB_HOST                 = 0xffff\n\tIN_CLASSB_MAX                  = 0x10000\n\tIN_CLASSB_NET                  = 0xffff0000\n\tIN_CLASSB_NSHIFT               = 0x10\n\tIN_CLASSC_HOST                 = 0xff\n\tIN_CLASSC_NET                  = 0xffffff00\n\tIN_CLASSC_NSHIFT               = 0x8\n\tIN_CLASSD_HOST                 = 0xfffffff\n\tIN_CLASSD_NET                  = 0xf0000000\n\tIN_CLASSD_NSHIFT               = 0x1c\n\tIN_LOOPBACKNET                 = 0x7f\n\tIN_RFC3021_MASK                = 0xfffffffe\n\tIPPROTO_3PC                    = 0x22\n\tIPPROTO_ADFS                   = 0x44\n\tIPPROTO_AH                     = 0x33\n\tIPPROTO_AHIP                   = 0x3d\n\tIPPROTO_APES                   = 0x63\n\tIPPROTO_ARGUS                  = 0xd\n\tIPPROTO_AX25                   = 0x5d\n\tIPPROTO_BHA                    = 0x31\n\tIPPROTO_BLT                    = 0x1e\n\tIPPROTO_BRSATMON               = 0x4c\n\tIPPROTO_CARP                   = 0x70\n\tIPPROTO_CFTP                   = 0x3e\n\tIPPROTO_CHAOS                  = 0x10\n\tIPPROTO_CMTP                   = 0x26\n\tIPPROTO_CPHB                   = 0x49\n\tIPPROTO_CPNX                   = 0x48\n\tIPPROTO_DDP                    = 0x25\n\tIPPROTO_DGP                    = 0x56\n\tIPPROTO_DIVERT                 = 0x102\n\tIPPROTO_DONE                   = 0x101\n\tIPPROTO_DSTOPTS                = 0x3c\n\tIPPROTO_EGP                    = 0x8\n\tIPPROTO_EMCON                  = 0xe\n\tIPPROTO_ENCAP                  = 0x62\n\tIPPROTO_EON                    = 0x50\n\tIPPROTO_ESP                    = 0x32\n\tIPPROTO_ETHERIP                = 0x61\n\tIPPROTO_FRAGMENT               = 0x2c\n\tIPPROTO_GGP                    = 0x3\n\tIPPROTO_GMTP                   = 0x64\n\tIPPROTO_GRE                    = 0x2f\n\tIPPROTO_HELLO                  = 0x3f\n\tIPPROTO_HIP                    = 0x8b\n\tIPPROTO_HMP                    = 0x14\n\tIPPROTO_HOPOPTS                = 0x0\n\tIPPROTO_ICMP                   = 0x1\n\tIPPROTO_ICMPV6                 = 0x3a\n\tIPPROTO_IDP                    = 0x16\n\tIPPROTO_IDPR                   = 0x23\n\tIPPROTO_IDRP                   = 0x2d\n\tIPPROTO_IGMP                   = 0x2\n\tIPPROTO_IGP                    = 0x55\n\tIPPROTO_IGRP                   = 0x58\n\tIPPROTO_IL                     = 0x28\n\tIPPROTO_INLSP                  = 0x34\n\tIPPROTO_INP                    = 0x20\n\tIPPROTO_IP                     = 0x0\n\tIPPROTO_IPCOMP                 = 0x6c\n\tIPPROTO_IPCV                   = 0x47\n\tIPPROTO_IPEIP                  = 0x5e\n\tIPPROTO_IPIP                   = 0x4\n\tIPPROTO_IPPC                   = 0x43\n\tIPPROTO_IPV4                   = 0x4\n\tIPPROTO_IPV6                   = 0x29\n\tIPPROTO_IRTP                   = 0x1c\n\tIPPROTO_KRYPTOLAN              = 0x41\n\tIPPROTO_LARP                   = 0x5b\n\tIPPROTO_LEAF1                  = 0x19\n\tIPPROTO_LEAF2                  = 0x1a\n\tIPPROTO_MAX                    = 0x100\n\tIPPROTO_MEAS                   = 0x13\n\tIPPROTO_MH                     = 0x87\n\tIPPROTO_MHRP                   = 0x30\n\tIPPROTO_MICP                   = 0x5f\n\tIPPROTO_MOBILE                 = 0x37\n\tIPPROTO_MPLS                   = 0x89\n\tIPPROTO_MTP                    = 0x5c\n\tIPPROTO_MUX                    = 0x12\n\tIPPROTO_ND                     = 0x4d\n\tIPPROTO_NHRP                   = 0x36\n\tIPPROTO_NONE                   = 0x3b\n\tIPPROTO_NSP                    = 0x1f\n\tIPPROTO_NVPII                  = 0xb\n\tIPPROTO_OLD_DIVERT             = 0xfe\n\tIPPROTO_OSPFIGP                = 0x59\n\tIPPROTO_PFSYNC                 = 0xf0\n\tIPPROTO_PGM                    = 0x71\n\tIPPROTO_PIGP                   = 0x9\n\tIPPROTO_PIM                    = 0x67\n\tIPPROTO_PRM                    = 0x15\n\tIPPROTO_PUP                    = 0xc\n\tIPPROTO_PVP                    = 0x4b\n\tIPPROTO_RAW                    = 0xff\n\tIPPROTO_RCCMON                 = 0xa\n\tIPPROTO_RDP                    = 0x1b\n\tIPPROTO_RESERVED_253           = 0xfd\n\tIPPROTO_RESERVED_254           = 0xfe\n\tIPPROTO_ROUTING                = 0x2b\n\tIPPROTO_RSVP                   = 0x2e\n\tIPPROTO_RVD                    = 0x42\n\tIPPROTO_SATEXPAK               = 0x40\n\tIPPROTO_SATMON                 = 0x45\n\tIPPROTO_SCCSP                  = 0x60\n\tIPPROTO_SCTP                   = 0x84\n\tIPPROTO_SDRP                   = 0x2a\n\tIPPROTO_SEND                   = 0x103\n\tIPPROTO_SEP                    = 0x21\n\tIPPROTO_SHIM6                  = 0x8c\n\tIPPROTO_SKIP                   = 0x39\n\tIPPROTO_SPACER                 = 0x7fff\n\tIPPROTO_SRPC                   = 0x5a\n\tIPPROTO_ST                     = 0x7\n\tIPPROTO_SVMTP                  = 0x52\n\tIPPROTO_SWIPE                  = 0x35\n\tIPPROTO_TCF                    = 0x57\n\tIPPROTO_TCP                    = 0x6\n\tIPPROTO_TLSP                   = 0x38\n\tIPPROTO_TP                     = 0x1d\n\tIPPROTO_TPXX                   = 0x27\n\tIPPROTO_TRUNK1                 = 0x17\n\tIPPROTO_TRUNK2                 = 0x18\n\tIPPROTO_TTP                    = 0x54\n\tIPPROTO_UDP                    = 0x11\n\tIPPROTO_UDPLITE                = 0x88\n\tIPPROTO_VINES                  = 0x53\n\tIPPROTO_VISA                   = 0x46\n\tIPPROTO_VMTP                   = 0x51\n\tIPPROTO_WBEXPAK                = 0x4f\n\tIPPROTO_WBMON                  = 0x4e\n\tIPPROTO_WSN                    = 0x4a\n\tIPPROTO_XNET                   = 0xf\n\tIPPROTO_XTP                    = 0x24\n\tIPV6_AUTOFLOWLABEL             = 0x3b\n\tIPV6_BINDANY                   = 0x40\n\tIPV6_BINDMULTI                 = 0x41\n\tIPV6_BINDV6ONLY                = 0x1b\n\tIPV6_CHECKSUM                  = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS    = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP    = 0x1\n\tIPV6_DEFHLIM                   = 0x40\n\tIPV6_DONTFRAG                  = 0x3e\n\tIPV6_DSTOPTS                   = 0x32\n\tIPV6_FLOWID                    = 0x43\n\tIPV6_FLOWINFO_MASK             = 0xffffff0f\n\tIPV6_FLOWLABEL_LEN             = 0x14\n\tIPV6_FLOWLABEL_MASK            = 0xffff0f00\n\tIPV6_FLOWTYPE                  = 0x44\n\tIPV6_FRAGTTL                   = 0x78\n\tIPV6_FW_ADD                    = 0x1e\n\tIPV6_FW_DEL                    = 0x1f\n\tIPV6_FW_FLUSH                  = 0x20\n\tIPV6_FW_GET                    = 0x22\n\tIPV6_FW_ZERO                   = 0x21\n\tIPV6_HLIMDEC                   = 0x1\n\tIPV6_HOPLIMIT                  = 0x2f\n\tIPV6_HOPOPTS                   = 0x31\n\tIPV6_IPSEC_POLICY              = 0x1c\n\tIPV6_JOIN_GROUP                = 0xc\n\tIPV6_LEAVE_GROUP               = 0xd\n\tIPV6_MAXHLIM                   = 0xff\n\tIPV6_MAXOPTHDR                 = 0x800\n\tIPV6_MAXPACKET                 = 0xffff\n\tIPV6_MAX_GROUP_SRC_FILTER      = 0x200\n\tIPV6_MAX_MEMBERSHIPS           = 0xfff\n\tIPV6_MAX_SOCK_SRC_FILTER       = 0x80\n\tIPV6_MMTU                      = 0x500\n\tIPV6_MSFILTER                  = 0x4a\n\tIPV6_MULTICAST_HOPS            = 0xa\n\tIPV6_MULTICAST_IF              = 0x9\n\tIPV6_MULTICAST_LOOP            = 0xb\n\tIPV6_NEXTHOP                   = 0x30\n\tIPV6_ORIGDSTADDR               = 0x48\n\tIPV6_PATHMTU                   = 0x2c\n\tIPV6_PKTINFO                   = 0x2e\n\tIPV6_PORTRANGE                 = 0xe\n\tIPV6_PORTRANGE_DEFAULT         = 0x0\n\tIPV6_PORTRANGE_HIGH            = 0x1\n\tIPV6_PORTRANGE_LOW             = 0x2\n\tIPV6_PREFER_TEMPADDR           = 0x3f\n\tIPV6_RECVDSTOPTS               = 0x28\n\tIPV6_RECVFLOWID                = 0x46\n\tIPV6_RECVHOPLIMIT              = 0x25\n\tIPV6_RECVHOPOPTS               = 0x27\n\tIPV6_RECVORIGDSTADDR           = 0x48\n\tIPV6_RECVPATHMTU               = 0x2b\n\tIPV6_RECVPKTINFO               = 0x24\n\tIPV6_RECVRSSBUCKETID           = 0x47\n\tIPV6_RECVRTHDR                 = 0x26\n\tIPV6_RECVTCLASS                = 0x39\n\tIPV6_RSSBUCKETID               = 0x45\n\tIPV6_RSS_LISTEN_BUCKET         = 0x42\n\tIPV6_RTHDR                     = 0x33\n\tIPV6_RTHDRDSTOPTS              = 0x23\n\tIPV6_RTHDR_LOOSE               = 0x0\n\tIPV6_RTHDR_STRICT              = 0x1\n\tIPV6_RTHDR_TYPE_0              = 0x0\n\tIPV6_SOCKOPT_RESERVED1         = 0x3\n\tIPV6_TCLASS                    = 0x3d\n\tIPV6_UNICAST_HOPS              = 0x4\n\tIPV6_USE_MIN_MTU               = 0x2a\n\tIPV6_V6ONLY                    = 0x1b\n\tIPV6_VERSION                   = 0x60\n\tIPV6_VERSION_MASK              = 0xf0\n\tIP_ADD_MEMBERSHIP              = 0xc\n\tIP_ADD_SOURCE_MEMBERSHIP       = 0x46\n\tIP_BINDANY                     = 0x18\n\tIP_BINDMULTI                   = 0x19\n\tIP_BLOCK_SOURCE                = 0x48\n\tIP_DEFAULT_MULTICAST_LOOP      = 0x1\n\tIP_DEFAULT_MULTICAST_TTL       = 0x1\n\tIP_DF                          = 0x4000\n\tIP_DONTFRAG                    = 0x43\n\tIP_DROP_MEMBERSHIP             = 0xd\n\tIP_DROP_SOURCE_MEMBERSHIP      = 0x47\n\tIP_DUMMYNET3                   = 0x31\n\tIP_DUMMYNET_CONFIGURE          = 0x3c\n\tIP_DUMMYNET_DEL                = 0x3d\n\tIP_DUMMYNET_FLUSH              = 0x3e\n\tIP_DUMMYNET_GET                = 0x40\n\tIP_FLOWID                      = 0x5a\n\tIP_FLOWTYPE                    = 0x5b\n\tIP_FW3                         = 0x30\n\tIP_FW_ADD                      = 0x32\n\tIP_FW_DEL                      = 0x33\n\tIP_FW_FLUSH                    = 0x34\n\tIP_FW_GET                      = 0x36\n\tIP_FW_NAT_CFG                  = 0x38\n\tIP_FW_NAT_DEL                  = 0x39\n\tIP_FW_NAT_GET_CONFIG           = 0x3a\n\tIP_FW_NAT_GET_LOG              = 0x3b\n\tIP_FW_RESETLOG                 = 0x37\n\tIP_FW_TABLE_ADD                = 0x28\n\tIP_FW_TABLE_DEL                = 0x29\n\tIP_FW_TABLE_FLUSH              = 0x2a\n\tIP_FW_TABLE_GETSIZE            = 0x2b\n\tIP_FW_TABLE_LIST               = 0x2c\n\tIP_FW_ZERO                     = 0x35\n\tIP_HDRINCL                     = 0x2\n\tIP_IPSEC_POLICY                = 0x15\n\tIP_MAXPACKET                   = 0xffff\n\tIP_MAX_GROUP_SRC_FILTER        = 0x200\n\tIP_MAX_MEMBERSHIPS             = 0xfff\n\tIP_MAX_SOCK_MUTE_FILTER        = 0x80\n\tIP_MAX_SOCK_SRC_FILTER         = 0x80\n\tIP_MF                          = 0x2000\n\tIP_MINTTL                      = 0x42\n\tIP_MSFILTER                    = 0x4a\n\tIP_MSS                         = 0x240\n\tIP_MULTICAST_IF                = 0x9\n\tIP_MULTICAST_LOOP              = 0xb\n\tIP_MULTICAST_TTL               = 0xa\n\tIP_MULTICAST_VIF               = 0xe\n\tIP_OFFMASK                     = 0x1fff\n\tIP_ONESBCAST                   = 0x17\n\tIP_OPTIONS                     = 0x1\n\tIP_ORIGDSTADDR                 = 0x1b\n\tIP_PORTRANGE                   = 0x13\n\tIP_PORTRANGE_DEFAULT           = 0x0\n\tIP_PORTRANGE_HIGH              = 0x1\n\tIP_PORTRANGE_LOW               = 0x2\n\tIP_RECVDSTADDR                 = 0x7\n\tIP_RECVFLOWID                  = 0x5d\n\tIP_RECVIF                      = 0x14\n\tIP_RECVOPTS                    = 0x5\n\tIP_RECVORIGDSTADDR             = 0x1b\n\tIP_RECVRETOPTS                 = 0x6\n\tIP_RECVRSSBUCKETID             = 0x5e\n\tIP_RECVTOS                     = 0x44\n\tIP_RECVTTL                     = 0x41\n\tIP_RETOPTS                     = 0x8\n\tIP_RF                          = 0x8000\n\tIP_RSSBUCKETID                 = 0x5c\n\tIP_RSS_LISTEN_BUCKET           = 0x1a\n\tIP_RSVP_OFF                    = 0x10\n\tIP_RSVP_ON                     = 0xf\n\tIP_RSVP_VIF_OFF                = 0x12\n\tIP_RSVP_VIF_ON                 = 0x11\n\tIP_SENDSRCADDR                 = 0x7\n\tIP_TOS                         = 0x3\n\tIP_TTL                         = 0x4\n\tIP_UNBLOCK_SOURCE              = 0x49\n\tISIG                           = 0x80\n\tISTRIP                         = 0x20\n\tIXANY                          = 0x800\n\tIXOFF                          = 0x400\n\tIXON                           = 0x200\n\tKERN_HOSTNAME                  = 0xa\n\tKERN_OSRELEASE                 = 0x2\n\tKERN_OSTYPE                    = 0x1\n\tKERN_VERSION                   = 0x4\n\tLOCK_EX                        = 0x2\n\tLOCK_NB                        = 0x4\n\tLOCK_SH                        = 0x1\n\tLOCK_UN                        = 0x8\n\tMADV_AUTOSYNC                  = 0x7\n\tMADV_CORE                      = 0x9\n\tMADV_DONTNEED                  = 0x4\n\tMADV_FREE                      = 0x5\n\tMADV_NOCORE                    = 0x8\n\tMADV_NORMAL                    = 0x0\n\tMADV_NOSYNC                    = 0x6\n\tMADV_PROTECT                   = 0xa\n\tMADV_RANDOM                    = 0x1\n\tMADV_SEQUENTIAL                = 0x2\n\tMADV_WILLNEED                  = 0x3\n\tMAP_32BIT                      = 0x80000\n\tMAP_ALIGNED_SUPER              = 0x1000000\n\tMAP_ALIGNMENT_MASK             = -0x1000000\n\tMAP_ALIGNMENT_SHIFT            = 0x18\n\tMAP_ANON                       = 0x1000\n\tMAP_ANONYMOUS                  = 0x1000\n\tMAP_COPY                       = 0x2\n\tMAP_EXCL                       = 0x4000\n\tMAP_FILE                       = 0x0\n\tMAP_FIXED                      = 0x10\n\tMAP_GUARD                      = 0x2000\n\tMAP_HASSEMAPHORE               = 0x200\n\tMAP_NOCORE                     = 0x20000\n\tMAP_NOSYNC                     = 0x800\n\tMAP_PREFAULT_READ              = 0x40000\n\tMAP_PRIVATE                    = 0x2\n\tMAP_RESERVED0020               = 0x20\n\tMAP_RESERVED0040               = 0x40\n\tMAP_RESERVED0080               = 0x80\n\tMAP_RESERVED0100               = 0x100\n\tMAP_SHARED                     = 0x1\n\tMAP_STACK                      = 0x400\n\tMCAST_BLOCK_SOURCE             = 0x54\n\tMCAST_EXCLUDE                  = 0x2\n\tMCAST_INCLUDE                  = 0x1\n\tMCAST_JOIN_GROUP               = 0x50\n\tMCAST_JOIN_SOURCE_GROUP        = 0x52\n\tMCAST_LEAVE_GROUP              = 0x51\n\tMCAST_LEAVE_SOURCE_GROUP       = 0x53\n\tMCAST_UNBLOCK_SOURCE           = 0x55\n\tMCAST_UNDEFINED                = 0x0\n\tMCL_CURRENT                    = 0x1\n\tMCL_FUTURE                     = 0x2\n\tMNT_ACLS                       = 0x8000000\n\tMNT_ASYNC                      = 0x40\n\tMNT_AUTOMOUNTED                = 0x200000000\n\tMNT_BYFSID                     = 0x8000000\n\tMNT_CMDFLAGS                   = 0xd0f0000\n\tMNT_DEFEXPORTED                = 0x200\n\tMNT_DELEXPORT                  = 0x20000\n\tMNT_EXKERB                     = 0x800\n\tMNT_EXPORTANON                 = 0x400\n\tMNT_EXPORTED                   = 0x100\n\tMNT_EXPUBLIC                   = 0x20000000\n\tMNT_EXRDONLY                   = 0x80\n\tMNT_FORCE                      = 0x80000\n\tMNT_GJOURNAL                   = 0x2000000\n\tMNT_IGNORE                     = 0x800000\n\tMNT_LAZY                       = 0x3\n\tMNT_LOCAL                      = 0x1000\n\tMNT_MULTILABEL                 = 0x4000000\n\tMNT_NFS4ACLS                   = 0x10\n\tMNT_NOATIME                    = 0x10000000\n\tMNT_NOCLUSTERR                 = 0x40000000\n\tMNT_NOCLUSTERW                 = 0x80000000\n\tMNT_NOEXEC                     = 0x4\n\tMNT_NONBUSY                    = 0x4000000\n\tMNT_NOSUID                     = 0x8\n\tMNT_NOSYMFOLLOW                = 0x400000\n\tMNT_NOWAIT                     = 0x2\n\tMNT_QUOTA                      = 0x2000\n\tMNT_RDONLY                     = 0x1\n\tMNT_RELOAD                     = 0x40000\n\tMNT_ROOTFS                     = 0x4000\n\tMNT_SNAPSHOT                   = 0x1000000\n\tMNT_SOFTDEP                    = 0x200000\n\tMNT_SUIDDIR                    = 0x100000\n\tMNT_SUJ                        = 0x100000000\n\tMNT_SUSPEND                    = 0x4\n\tMNT_SYNCHRONOUS                = 0x2\n\tMNT_UNION                      = 0x20\n\tMNT_UNTRUSTED                  = 0x800000000\n\tMNT_UPDATE                     = 0x10000\n\tMNT_UPDATEMASK                 = 0xad8d0807e\n\tMNT_USER                       = 0x8000\n\tMNT_VERIFIED                   = 0x400000000\n\tMNT_VISFLAGMASK                = 0xffef0ffff\n\tMNT_WAIT                       = 0x1\n\tMSG_CMSG_CLOEXEC               = 0x40000\n\tMSG_COMPAT                     = 0x8000\n\tMSG_CTRUNC                     = 0x20\n\tMSG_DONTROUTE                  = 0x4\n\tMSG_DONTWAIT                   = 0x80\n\tMSG_EOF                        = 0x100\n\tMSG_EOR                        = 0x8\n\tMSG_NBIO                       = 0x4000\n\tMSG_NOSIGNAL                   = 0x20000\n\tMSG_NOTIFICATION               = 0x2000\n\tMSG_OOB                        = 0x1\n\tMSG_PEEK                       = 0x2\n\tMSG_TRUNC                      = 0x10\n\tMSG_WAITALL                    = 0x40\n\tMSG_WAITFORONE                 = 0x80000\n\tMS_ASYNC                       = 0x1\n\tMS_INVALIDATE                  = 0x2\n\tMS_SYNC                        = 0x0\n\tNAME_MAX                       = 0xff\n\tNET_RT_DUMP                    = 0x1\n\tNET_RT_FLAGS                   = 0x2\n\tNET_RT_IFLIST                  = 0x3\n\tNET_RT_IFLISTL                 = 0x5\n\tNET_RT_IFMALIST                = 0x4\n\tNFDBITS                        = 0x40\n\tNOFLSH                         = 0x80000000\n\tNOKERNINFO                     = 0x2000000\n\tNOTE_ABSTIME                   = 0x10\n\tNOTE_ATTRIB                    = 0x8\n\tNOTE_CHILD                     = 0x4\n\tNOTE_CLOSE                     = 0x100\n\tNOTE_CLOSE_WRITE               = 0x200\n\tNOTE_DELETE                    = 0x1\n\tNOTE_EXEC                      = 0x20000000\n\tNOTE_EXIT                      = 0x80000000\n\tNOTE_EXTEND                    = 0x4\n\tNOTE_FFAND                     = 0x40000000\n\tNOTE_FFCOPY                    = 0xc0000000\n\tNOTE_FFCTRLMASK                = 0xc0000000\n\tNOTE_FFLAGSMASK                = 0xffffff\n\tNOTE_FFNOP                     = 0x0\n\tNOTE_FFOR                      = 0x80000000\n\tNOTE_FILE_POLL                 = 0x2\n\tNOTE_FORK                      = 0x40000000\n\tNOTE_LINK                      = 0x10\n\tNOTE_LOWAT                     = 0x1\n\tNOTE_MSECONDS                  = 0x2\n\tNOTE_NSECONDS                  = 0x8\n\tNOTE_OPEN                      = 0x80\n\tNOTE_PCTRLMASK                 = 0xf0000000\n\tNOTE_PDATAMASK                 = 0xfffff\n\tNOTE_READ                      = 0x400\n\tNOTE_RENAME                    = 0x20\n\tNOTE_REVOKE                    = 0x40\n\tNOTE_SECONDS                   = 0x1\n\tNOTE_TRACK                     = 0x1\n\tNOTE_TRACKERR                  = 0x2\n\tNOTE_TRIGGER                   = 0x1000000\n\tNOTE_USECONDS                  = 0x4\n\tNOTE_WRITE                     = 0x2\n\tOCRNL                          = 0x10\n\tONLCR                          = 0x2\n\tONLRET                         = 0x40\n\tONOCR                          = 0x20\n\tONOEOT                         = 0x8\n\tOPOST                          = 0x1\n\tOXTABS                         = 0x4\n\tO_ACCMODE                      = 0x3\n\tO_APPEND                       = 0x8\n\tO_ASYNC                        = 0x40\n\tO_CLOEXEC                      = 0x100000\n\tO_CREAT                        = 0x200\n\tO_DIRECT                       = 0x10000\n\tO_DIRECTORY                    = 0x20000\n\tO_EXCL                         = 0x800\n\tO_EXEC                         = 0x40000\n\tO_EXLOCK                       = 0x20\n\tO_FSYNC                        = 0x80\n\tO_NDELAY                       = 0x4\n\tO_NOCTTY                       = 0x8000\n\tO_NOFOLLOW                     = 0x100\n\tO_NONBLOCK                     = 0x4\n\tO_RDONLY                       = 0x0\n\tO_RDWR                         = 0x2\n\tO_SHLOCK                       = 0x10\n\tO_SYNC                         = 0x80\n\tO_TRUNC                        = 0x400\n\tO_TTY_INIT                     = 0x80000\n\tO_VERIFY                       = 0x200000\n\tO_WRONLY                       = 0x1\n\tPARENB                         = 0x1000\n\tPARMRK                         = 0x8\n\tPARODD                         = 0x2000\n\tPENDIN                         = 0x20000000\n\tPRIO_PGRP                      = 0x1\n\tPRIO_PROCESS                   = 0x0\n\tPRIO_USER                      = 0x2\n\tPROT_EXEC                      = 0x4\n\tPROT_NONE                      = 0x0\n\tPROT_READ                      = 0x1\n\tPROT_WRITE                     = 0x2\n\tRLIMIT_AS                      = 0xa\n\tRLIMIT_CORE                    = 0x4\n\tRLIMIT_CPU                     = 0x0\n\tRLIMIT_DATA                    = 0x2\n\tRLIMIT_FSIZE                   = 0x1\n\tRLIMIT_MEMLOCK                 = 0x6\n\tRLIMIT_NOFILE                  = 0x8\n\tRLIMIT_NPROC                   = 0x7\n\tRLIMIT_RSS                     = 0x5\n\tRLIMIT_STACK                   = 0x3\n\tRLIM_INFINITY                  = 0x7fffffffffffffff\n\tRTAX_AUTHOR                    = 0x6\n\tRTAX_BRD                       = 0x7\n\tRTAX_DST                       = 0x0\n\tRTAX_GATEWAY                   = 0x1\n\tRTAX_GENMASK                   = 0x3\n\tRTAX_IFA                       = 0x5\n\tRTAX_IFP                       = 0x4\n\tRTAX_MAX                       = 0x8\n\tRTAX_NETMASK                   = 0x2\n\tRTA_AUTHOR                     = 0x40\n\tRTA_BRD                        = 0x80\n\tRTA_DST                        = 0x1\n\tRTA_GATEWAY                    = 0x2\n\tRTA_GENMASK                    = 0x8\n\tRTA_IFA                        = 0x20\n\tRTA_IFP                        = 0x10\n\tRTA_NETMASK                    = 0x4\n\tRTF_BLACKHOLE                  = 0x1000\n\tRTF_BROADCAST                  = 0x400000\n\tRTF_DONE                       = 0x40\n\tRTF_DYNAMIC                    = 0x10\n\tRTF_FIXEDMTU                   = 0x80000\n\tRTF_FMASK                      = 0x1004d808\n\tRTF_GATEWAY                    = 0x2\n\tRTF_GWFLAG_COMPAT              = 0x80000000\n\tRTF_HOST                       = 0x4\n\tRTF_LLDATA                     = 0x400\n\tRTF_LLINFO                     = 0x400\n\tRTF_LOCAL                      = 0x200000\n\tRTF_MODIFIED                   = 0x20\n\tRTF_MULTICAST                  = 0x800000\n\tRTF_PINNED                     = 0x100000\n\tRTF_PROTO1                     = 0x8000\n\tRTF_PROTO2                     = 0x4000\n\tRTF_PROTO3                     = 0x40000\n\tRTF_REJECT                     = 0x8\n\tRTF_RNH_LOCKED                 = 0x40000000\n\tRTF_STATIC                     = 0x800\n\tRTF_STICKY                     = 0x10000000\n\tRTF_UP                         = 0x1\n\tRTF_XRESOLVE                   = 0x200\n\tRTM_ADD                        = 0x1\n\tRTM_CHANGE                     = 0x3\n\tRTM_DELADDR                    = 0xd\n\tRTM_DELETE                     = 0x2\n\tRTM_DELMADDR                   = 0x10\n\tRTM_GET                        = 0x4\n\tRTM_IEEE80211                  = 0x12\n\tRTM_IFANNOUNCE                 = 0x11\n\tRTM_IFINFO                     = 0xe\n\tRTM_LOCK                       = 0x8\n\tRTM_LOSING                     = 0x5\n\tRTM_MISS                       = 0x7\n\tRTM_NEWADDR                    = 0xc\n\tRTM_NEWMADDR                   = 0xf\n\tRTM_REDIRECT                   = 0x6\n\tRTM_RESOLVE                    = 0xb\n\tRTM_RTTUNIT                    = 0xf4240\n\tRTM_VERSION                    = 0x5\n\tRTV_EXPIRE                     = 0x4\n\tRTV_HOPCOUNT                   = 0x2\n\tRTV_MTU                        = 0x1\n\tRTV_RPIPE                      = 0x8\n\tRTV_RTT                        = 0x40\n\tRTV_RTTVAR                     = 0x80\n\tRTV_SPIPE                      = 0x10\n\tRTV_SSTHRESH                   = 0x20\n\tRTV_WEIGHT                     = 0x100\n\tRT_ALL_FIBS                    = -0x1\n\tRT_BLACKHOLE                   = 0x40\n\tRT_DEFAULT_FIB                 = 0x0\n\tRT_HAS_GW                      = 0x80\n\tRT_HAS_HEADER                  = 0x10\n\tRT_HAS_HEADER_BIT              = 0x4\n\tRT_L2_ME                       = 0x4\n\tRT_L2_ME_BIT                   = 0x2\n\tRT_LLE_CACHE                   = 0x100\n\tRT_MAY_LOOP                    = 0x8\n\tRT_MAY_LOOP_BIT                = 0x3\n\tRT_REJECT                      = 0x20\n\tRUSAGE_CHILDREN                = -0x1\n\tRUSAGE_SELF                    = 0x0\n\tRUSAGE_THREAD                  = 0x1\n\tSCM_BINTIME                    = 0x4\n\tSCM_CREDS                      = 0x3\n\tSCM_MONOTONIC                  = 0x6\n\tSCM_REALTIME                   = 0x5\n\tSCM_RIGHTS                     = 0x1\n\tSCM_TIMESTAMP                  = 0x2\n\tSCM_TIME_INFO                  = 0x7\n\tSHUT_RD                        = 0x0\n\tSHUT_RDWR                      = 0x2\n\tSHUT_WR                        = 0x1\n\tSIOCADDMULTI                   = 0x80206931\n\tSIOCAIFADDR                    = 0x8040691a\n\tSIOCAIFGROUP                   = 0x80286987\n\tSIOCATMARK                     = 0x40047307\n\tSIOCDELMULTI                   = 0x80206932\n\tSIOCDIFADDR                    = 0x80206919\n\tSIOCDIFGROUP                   = 0x80286989\n\tSIOCDIFPHYADDR                 = 0x80206949\n\tSIOCGDRVSPEC                   = 0xc028697b\n\tSIOCGETSGCNT                   = 0xc0207210\n\tSIOCGETVIFCNT                  = 0xc028720f\n\tSIOCGHIWAT                     = 0x40047301\n\tSIOCGHWADDR                    = 0xc020693e\n\tSIOCGI2C                       = 0xc020693d\n\tSIOCGIFADDR                    = 0xc0206921\n\tSIOCGIFBRDADDR                 = 0xc0206923\n\tSIOCGIFCAP                     = 0xc020691f\n\tSIOCGIFCONF                    = 0xc0106924\n\tSIOCGIFDESCR                   = 0xc020692a\n\tSIOCGIFDSTADDR                 = 0xc0206922\n\tSIOCGIFFIB                     = 0xc020695c\n\tSIOCGIFFLAGS                   = 0xc0206911\n\tSIOCGIFGENERIC                 = 0xc020693a\n\tSIOCGIFGMEMB                   = 0xc028698a\n\tSIOCGIFGROUP                   = 0xc0286988\n\tSIOCGIFINDEX                   = 0xc0206920\n\tSIOCGIFMAC                     = 0xc0206926\n\tSIOCGIFMEDIA                   = 0xc0306938\n\tSIOCGIFMETRIC                  = 0xc0206917\n\tSIOCGIFMTU                     = 0xc0206933\n\tSIOCGIFNETMASK                 = 0xc0206925\n\tSIOCGIFPDSTADDR                = 0xc0206948\n\tSIOCGIFPHYS                    = 0xc0206935\n\tSIOCGIFPSRCADDR                = 0xc0206947\n\tSIOCGIFRSSHASH                 = 0xc0186997\n\tSIOCGIFRSSKEY                  = 0xc0946996\n\tSIOCGIFSTATUS                  = 0xc331693b\n\tSIOCGIFXMEDIA                  = 0xc030698b\n\tSIOCGLANPCP                    = 0xc0206998\n\tSIOCGLOWAT                     = 0x40047303\n\tSIOCGPGRP                      = 0x40047309\n\tSIOCGPRIVATE_0                 = 0xc0206950\n\tSIOCGPRIVATE_1                 = 0xc0206951\n\tSIOCGTUNFIB                    = 0xc020695e\n\tSIOCIFCREATE                   = 0xc020697a\n\tSIOCIFCREATE2                  = 0xc020697c\n\tSIOCIFDESTROY                  = 0x80206979\n\tSIOCIFGCLONERS                 = 0xc0106978\n\tSIOCSDRVSPEC                   = 0x8028697b\n\tSIOCSHIWAT                     = 0x80047300\n\tSIOCSIFADDR                    = 0x8020690c\n\tSIOCSIFBRDADDR                 = 0x80206913\n\tSIOCSIFCAP                     = 0x8020691e\n\tSIOCSIFDESCR                   = 0x80206929\n\tSIOCSIFDSTADDR                 = 0x8020690e\n\tSIOCSIFFIB                     = 0x8020695d\n\tSIOCSIFFLAGS                   = 0x80206910\n\tSIOCSIFGENERIC                 = 0x80206939\n\tSIOCSIFLLADDR                  = 0x8020693c\n\tSIOCSIFMAC                     = 0x80206927\n\tSIOCSIFMEDIA                   = 0xc0206937\n\tSIOCSIFMETRIC                  = 0x80206918\n\tSIOCSIFMTU                     = 0x80206934\n\tSIOCSIFNAME                    = 0x80206928\n\tSIOCSIFNETMASK                 = 0x80206916\n\tSIOCSIFPHYADDR                 = 0x80406946\n\tSIOCSIFPHYS                    = 0x80206936\n\tSIOCSIFRVNET                   = 0xc020695b\n\tSIOCSIFVNET                    = 0xc020695a\n\tSIOCSLANPCP                    = 0x80206999\n\tSIOCSLOWAT                     = 0x80047302\n\tSIOCSPGRP                      = 0x80047308\n\tSIOCSTUNFIB                    = 0x8020695f\n\tSOCK_CLOEXEC                   = 0x10000000\n\tSOCK_DGRAM                     = 0x2\n\tSOCK_MAXADDRLEN                = 0xff\n\tSOCK_NONBLOCK                  = 0x20000000\n\tSOCK_RAW                       = 0x3\n\tSOCK_RDM                       = 0x4\n\tSOCK_SEQPACKET                 = 0x5\n\tSOCK_STREAM                    = 0x1\n\tSOL_SOCKET                     = 0xffff\n\tSOMAXCONN                      = 0x80\n\tSO_ACCEPTCONN                  = 0x2\n\tSO_ACCEPTFILTER                = 0x1000\n\tSO_BINTIME                     = 0x2000\n\tSO_BROADCAST                   = 0x20\n\tSO_DEBUG                       = 0x1\n\tSO_DOMAIN                      = 0x1019\n\tSO_DONTROUTE                   = 0x10\n\tSO_ERROR                       = 0x1007\n\tSO_KEEPALIVE                   = 0x8\n\tSO_LABEL                       = 0x1009\n\tSO_LINGER                      = 0x80\n\tSO_LISTENINCQLEN               = 0x1013\n\tSO_LISTENQLEN                  = 0x1012\n\tSO_LISTENQLIMIT                = 0x1011\n\tSO_MAX_PACING_RATE             = 0x1018\n\tSO_NOSIGPIPE                   = 0x800\n\tSO_NO_DDP                      = 0x8000\n\tSO_NO_OFFLOAD                  = 0x4000\n\tSO_OOBINLINE                   = 0x100\n\tSO_PEERLABEL                   = 0x1010\n\tSO_PROTOCOL                    = 0x1016\n\tSO_PROTOTYPE                   = 0x1016\n\tSO_RCVBUF                      = 0x1002\n\tSO_RCVLOWAT                    = 0x1004\n\tSO_RCVTIMEO                    = 0x1006\n\tSO_REUSEADDR                   = 0x4\n\tSO_REUSEPORT                   = 0x200\n\tSO_REUSEPORT_LB                = 0x10000\n\tSO_SETFIB                      = 0x1014\n\tSO_SNDBUF                      = 0x1001\n\tSO_SNDLOWAT                    = 0x1003\n\tSO_SNDTIMEO                    = 0x1005\n\tSO_TIMESTAMP                   = 0x400\n\tSO_TS_BINTIME                  = 0x1\n\tSO_TS_CLOCK                    = 0x1017\n\tSO_TS_CLOCK_MAX                = 0x3\n\tSO_TS_DEFAULT                  = 0x0\n\tSO_TS_MONOTONIC                = 0x3\n\tSO_TS_REALTIME                 = 0x2\n\tSO_TS_REALTIME_MICRO           = 0x0\n\tSO_TYPE                        = 0x1008\n\tSO_USELOOPBACK                 = 0x40\n\tSO_USER_COOKIE                 = 0x1015\n\tSO_VENDOR                      = 0x80000000\n\tS_BLKSIZE                      = 0x200\n\tS_IEXEC                        = 0x40\n\tS_IFBLK                        = 0x6000\n\tS_IFCHR                        = 0x2000\n\tS_IFDIR                        = 0x4000\n\tS_IFIFO                        = 0x1000\n\tS_IFLNK                        = 0xa000\n\tS_IFMT                         = 0xf000\n\tS_IFREG                        = 0x8000\n\tS_IFSOCK                       = 0xc000\n\tS_IFWHT                        = 0xe000\n\tS_IREAD                        = 0x100\n\tS_IRGRP                        = 0x20\n\tS_IROTH                        = 0x4\n\tS_IRUSR                        = 0x100\n\tS_IRWXG                        = 0x38\n\tS_IRWXO                        = 0x7\n\tS_IRWXU                        = 0x1c0\n\tS_ISGID                        = 0x400\n\tS_ISTXT                        = 0x200\n\tS_ISUID                        = 0x800\n\tS_ISVTX                        = 0x200\n\tS_IWGRP                        = 0x10\n\tS_IWOTH                        = 0x2\n\tS_IWRITE                       = 0x80\n\tS_IWUSR                        = 0x80\n\tS_IXGRP                        = 0x8\n\tS_IXOTH                        = 0x1\n\tS_IXUSR                        = 0x40\n\tTAB0                           = 0x0\n\tTAB3                           = 0x4\n\tTABDLY                         = 0x4\n\tTCIFLUSH                       = 0x1\n\tTCIOFF                         = 0x3\n\tTCIOFLUSH                      = 0x3\n\tTCION                          = 0x4\n\tTCOFLUSH                       = 0x2\n\tTCOOFF                         = 0x1\n\tTCOON                          = 0x2\n\tTCP_BBR_ACK_COMP_ALG           = 0x448\n\tTCP_BBR_DRAIN_INC_EXTRA        = 0x43c\n\tTCP_BBR_DRAIN_PG               = 0x42e\n\tTCP_BBR_EXTRA_GAIN             = 0x449\n\tTCP_BBR_IWINTSO                = 0x42b\n\tTCP_BBR_LOWGAIN_FD             = 0x436\n\tTCP_BBR_LOWGAIN_HALF           = 0x435\n\tTCP_BBR_LOWGAIN_THRESH         = 0x434\n\tTCP_BBR_MAX_RTO                = 0x439\n\tTCP_BBR_MIN_RTO                = 0x438\n\tTCP_BBR_ONE_RETRAN             = 0x431\n\tTCP_BBR_PACE_CROSS             = 0x442\n\tTCP_BBR_PACE_DEL_TAR           = 0x43f\n\tTCP_BBR_PACE_PER_SEC           = 0x43e\n\tTCP_BBR_PACE_SEG_MAX           = 0x440\n\tTCP_BBR_PACE_SEG_MIN           = 0x441\n\tTCP_BBR_PROBE_RTT_GAIN         = 0x44d\n\tTCP_BBR_PROBE_RTT_INT          = 0x430\n\tTCP_BBR_PROBE_RTT_LEN          = 0x44e\n\tTCP_BBR_RACK_RTT_USE           = 0x44a\n\tTCP_BBR_RECFORCE               = 0x42c\n\tTCP_BBR_REC_OVER_HPTS          = 0x43a\n\tTCP_BBR_RETRAN_WTSO            = 0x44b\n\tTCP_BBR_RWND_IS_APP            = 0x42f\n\tTCP_BBR_STARTUP_EXIT_EPOCH     = 0x43d\n\tTCP_BBR_STARTUP_LOSS_EXIT      = 0x432\n\tTCP_BBR_STARTUP_PG             = 0x42d\n\tTCP_BBR_UNLIMITED              = 0x43b\n\tTCP_BBR_USEDEL_RATE            = 0x437\n\tTCP_BBR_USE_LOWGAIN            = 0x433\n\tTCP_CA_NAME_MAX                = 0x10\n\tTCP_CCALGOOPT                  = 0x41\n\tTCP_CONGESTION                 = 0x40\n\tTCP_DATA_AFTER_CLOSE           = 0x44c\n\tTCP_DELACK                     = 0x48\n\tTCP_FASTOPEN                   = 0x401\n\tTCP_FASTOPEN_MAX_COOKIE_LEN    = 0x10\n\tTCP_FASTOPEN_MIN_COOKIE_LEN    = 0x4\n\tTCP_FASTOPEN_PSK_LEN           = 0x10\n\tTCP_FUNCTION_BLK               = 0x2000\n\tTCP_FUNCTION_NAME_LEN_MAX      = 0x20\n\tTCP_INFO                       = 0x20\n\tTCP_KEEPCNT                    = 0x400\n\tTCP_KEEPIDLE                   = 0x100\n\tTCP_KEEPINIT                   = 0x80\n\tTCP_KEEPINTVL                  = 0x200\n\tTCP_LOG                        = 0x22\n\tTCP_LOGBUF                     = 0x23\n\tTCP_LOGDUMP                    = 0x25\n\tTCP_LOGDUMPID                  = 0x26\n\tTCP_LOGID                      = 0x24\n\tTCP_LOG_ID_LEN                 = 0x40\n\tTCP_MAXBURST                   = 0x4\n\tTCP_MAXHLEN                    = 0x3c\n\tTCP_MAXOLEN                    = 0x28\n\tTCP_MAXSEG                     = 0x2\n\tTCP_MAXWIN                     = 0xffff\n\tTCP_MAX_SACK                   = 0x4\n\tTCP_MAX_WINSHIFT               = 0xe\n\tTCP_MD5SIG                     = 0x10\n\tTCP_MINMSS                     = 0xd8\n\tTCP_MSS                        = 0x218\n\tTCP_NODELAY                    = 0x1\n\tTCP_NOOPT                      = 0x8\n\tTCP_NOPUSH                     = 0x4\n\tTCP_PCAP_IN                    = 0x1000\n\tTCP_PCAP_OUT                   = 0x800\n\tTCP_RACK_EARLY_RECOV           = 0x423\n\tTCP_RACK_EARLY_SEG             = 0x424\n\tTCP_RACK_IDLE_REDUCE_HIGH      = 0x444\n\tTCP_RACK_MIN_PACE              = 0x445\n\tTCP_RACK_MIN_PACE_SEG          = 0x446\n\tTCP_RACK_MIN_TO                = 0x422\n\tTCP_RACK_PACE_ALWAYS           = 0x41f\n\tTCP_RACK_PACE_MAX_SEG          = 0x41e\n\tTCP_RACK_PACE_REDUCE           = 0x41d\n\tTCP_RACK_PKT_DELAY             = 0x428\n\tTCP_RACK_PROP                  = 0x41b\n\tTCP_RACK_PROP_RATE             = 0x420\n\tTCP_RACK_PRR_SENDALOT          = 0x421\n\tTCP_RACK_REORD_FADE            = 0x426\n\tTCP_RACK_REORD_THRESH          = 0x425\n\tTCP_RACK_SESS_CWV              = 0x42a\n\tTCP_RACK_TLP_INC_VAR           = 0x429\n\tTCP_RACK_TLP_REDUCE            = 0x41c\n\tTCP_RACK_TLP_THRESH            = 0x427\n\tTCP_RACK_TLP_USE               = 0x447\n\tTCP_VENDOR                     = 0x80000000\n\tTCSAFLUSH                      = 0x2\n\tTIMER_ABSTIME                  = 0x1\n\tTIMER_RELTIME                  = 0x0\n\tTIOCCBRK                       = 0x2000747a\n\tTIOCCDTR                       = 0x20007478\n\tTIOCCONS                       = 0x80047462\n\tTIOCDRAIN                      = 0x2000745e\n\tTIOCEXCL                       = 0x2000740d\n\tTIOCEXT                        = 0x80047460\n\tTIOCFLUSH                      = 0x80047410\n\tTIOCGDRAINWAIT                 = 0x40047456\n\tTIOCGETA                       = 0x402c7413\n\tTIOCGETD                       = 0x4004741a\n\tTIOCGPGRP                      = 0x40047477\n\tTIOCGPTN                       = 0x4004740f\n\tTIOCGSID                       = 0x40047463\n\tTIOCGWINSZ                     = 0x40087468\n\tTIOCMBIC                       = 0x8004746b\n\tTIOCMBIS                       = 0x8004746c\n\tTIOCMGDTRWAIT                  = 0x4004745a\n\tTIOCMGET                       = 0x4004746a\n\tTIOCMSDTRWAIT                  = 0x8004745b\n\tTIOCMSET                       = 0x8004746d\n\tTIOCM_CAR                      = 0x40\n\tTIOCM_CD                       = 0x40\n\tTIOCM_CTS                      = 0x20\n\tTIOCM_DCD                      = 0x40\n\tTIOCM_DSR                      = 0x100\n\tTIOCM_DTR                      = 0x2\n\tTIOCM_LE                       = 0x1\n\tTIOCM_RI                       = 0x80\n\tTIOCM_RNG                      = 0x80\n\tTIOCM_RTS                      = 0x4\n\tTIOCM_SR                       = 0x10\n\tTIOCM_ST                       = 0x8\n\tTIOCNOTTY                      = 0x20007471\n\tTIOCNXCL                       = 0x2000740e\n\tTIOCOUTQ                       = 0x40047473\n\tTIOCPKT                        = 0x80047470\n\tTIOCPKT_DATA                   = 0x0\n\tTIOCPKT_DOSTOP                 = 0x20\n\tTIOCPKT_FLUSHREAD              = 0x1\n\tTIOCPKT_FLUSHWRITE             = 0x2\n\tTIOCPKT_IOCTL                  = 0x40\n\tTIOCPKT_NOSTOP                 = 0x10\n\tTIOCPKT_START                  = 0x8\n\tTIOCPKT_STOP                   = 0x4\n\tTIOCPTMASTER                   = 0x2000741c\n\tTIOCSBRK                       = 0x2000747b\n\tTIOCSCTTY                      = 0x20007461\n\tTIOCSDRAINWAIT                 = 0x80047457\n\tTIOCSDTR                       = 0x20007479\n\tTIOCSETA                       = 0x802c7414\n\tTIOCSETAF                      = 0x802c7416\n\tTIOCSETAW                      = 0x802c7415\n\tTIOCSETD                       = 0x8004741b\n\tTIOCSIG                        = 0x2004745f\n\tTIOCSPGRP                      = 0x80047476\n\tTIOCSTART                      = 0x2000746e\n\tTIOCSTAT                       = 0x20007465\n\tTIOCSTI                        = 0x80017472\n\tTIOCSTOP                       = 0x2000746f\n\tTIOCSWINSZ                     = 0x80087467\n\tTIOCTIMESTAMP                  = 0x40107459\n\tTIOCUCNTL                      = 0x80047466\n\tTOSTOP                         = 0x400000\n\tUTIME_NOW                      = -0x1\n\tUTIME_OMIT                     = -0x2\n\tVDISCARD                       = 0xf\n\tVDSUSP                         = 0xb\n\tVEOF                           = 0x0\n\tVEOL                           = 0x1\n\tVEOL2                          = 0x2\n\tVERASE                         = 0x3\n\tVERASE2                        = 0x7\n\tVINTR                          = 0x8\n\tVKILL                          = 0x5\n\tVLNEXT                         = 0xe\n\tVMIN                           = 0x10\n\tVM_BCACHE_SIZE_MAX             = 0x19000000\n\tVQUIT                          = 0x9\n\tVREPRINT                       = 0x6\n\tVSTART                         = 0xc\n\tVSTATUS                        = 0x12\n\tVSTOP                          = 0xd\n\tVSUSP                          = 0xa\n\tVTIME                          = 0x11\n\tVWERASE                        = 0x4\n\tWCONTINUED                     = 0x4\n\tWCOREFLAG                      = 0x80\n\tWEXITED                        = 0x10\n\tWLINUXCLONE                    = 0x80000000\n\tWNOHANG                        = 0x1\n\tWNOWAIT                        = 0x8\n\tWSTOPPED                       = 0x2\n\tWTRAPPED                       = 0x20\n\tWUNTRACED                      = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x59)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x55)\n\tECAPMODE        = syscall.Errno(0x5e)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDOOFUS         = syscall.Errno(0x58)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x52)\n\tEILSEQ          = syscall.Errno(0x56)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x60)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5a)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x57)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x5b)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x53)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCAPABLE     = syscall.Errno(0x5d)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x5f)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEOWNERDEAD      = syscall.Errno(0x60)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x5c)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGLIBRT  = syscall.Signal(0x21)\n\tSIGLWP    = syscall.Signal(0x20)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTHR    = syscall.Signal(0x20)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIDRM\", \"identifier removed\"},\n\t{83, \"ENOMSG\", \"no message of desired type\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"ECANCELED\", \"operation canceled\"},\n\t{86, \"EILSEQ\", \"illegal byte sequence\"},\n\t{87, \"ENOATTR\", \"attribute not found\"},\n\t{88, \"EDOOFUS\", \"programming error\"},\n\t{89, \"EBADMSG\", \"bad message\"},\n\t{90, \"EMULTIHOP\", \"multihop attempted\"},\n\t{91, \"ENOLINK\", \"link has been severed\"},\n\t{92, \"EPROTO\", \"protocol error\"},\n\t{93, \"ENOTCAPABLE\", \"capabilities insufficient\"},\n\t{94, \"ECAPMODE\", \"not permitted in capability mode\"},\n\t{95, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{96, \"EOWNERDEAD\", \"previous owner died\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"unknown signal\"},\n\t{33, \"SIGLIBRT\", \"unknown signal\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux.go",
    "content": "// Code generated by mkmerge.go; DO NOT EDIT.\n\n// +build linux\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAAFS_MAGIC                                  = 0x5a3c69f0\n\tADFS_SUPER_MAGIC                            = 0xadf5\n\tAFFS_SUPER_MAGIC                            = 0xadff\n\tAFS_FS_MAGIC                                = 0x6b414653\n\tAFS_SUPER_MAGIC                             = 0x5346414f\n\tAF_ALG                                      = 0x26\n\tAF_APPLETALK                                = 0x5\n\tAF_ASH                                      = 0x12\n\tAF_ATMPVC                                   = 0x8\n\tAF_ATMSVC                                   = 0x14\n\tAF_AX25                                     = 0x3\n\tAF_BLUETOOTH                                = 0x1f\n\tAF_BRIDGE                                   = 0x7\n\tAF_CAIF                                     = 0x25\n\tAF_CAN                                      = 0x1d\n\tAF_DECnet                                   = 0xc\n\tAF_ECONET                                   = 0x13\n\tAF_FILE                                     = 0x1\n\tAF_IB                                       = 0x1b\n\tAF_IEEE802154                               = 0x24\n\tAF_INET                                     = 0x2\n\tAF_INET6                                    = 0xa\n\tAF_IPX                                      = 0x4\n\tAF_IRDA                                     = 0x17\n\tAF_ISDN                                     = 0x22\n\tAF_IUCV                                     = 0x20\n\tAF_KCM                                      = 0x29\n\tAF_KEY                                      = 0xf\n\tAF_LLC                                      = 0x1a\n\tAF_LOCAL                                    = 0x1\n\tAF_MAX                                      = 0x2d\n\tAF_MPLS                                     = 0x1c\n\tAF_NETBEUI                                  = 0xd\n\tAF_NETLINK                                  = 0x10\n\tAF_NETROM                                   = 0x6\n\tAF_NFC                                      = 0x27\n\tAF_PACKET                                   = 0x11\n\tAF_PHONET                                   = 0x23\n\tAF_PPPOX                                    = 0x18\n\tAF_QIPCRTR                                  = 0x2a\n\tAF_RDS                                      = 0x15\n\tAF_ROSE                                     = 0xb\n\tAF_ROUTE                                    = 0x10\n\tAF_RXRPC                                    = 0x21\n\tAF_SECURITY                                 = 0xe\n\tAF_SMC                                      = 0x2b\n\tAF_SNA                                      = 0x16\n\tAF_TIPC                                     = 0x1e\n\tAF_UNIX                                     = 0x1\n\tAF_UNSPEC                                   = 0x0\n\tAF_VSOCK                                    = 0x28\n\tAF_WANPIPE                                  = 0x19\n\tAF_X25                                      = 0x9\n\tAF_XDP                                      = 0x2c\n\tALG_OP_DECRYPT                              = 0x0\n\tALG_OP_ENCRYPT                              = 0x1\n\tALG_SET_AEAD_ASSOCLEN                       = 0x4\n\tALG_SET_AEAD_AUTHSIZE                       = 0x5\n\tALG_SET_IV                                  = 0x2\n\tALG_SET_KEY                                 = 0x1\n\tALG_SET_OP                                  = 0x3\n\tANON_INODE_FS_MAGIC                         = 0x9041934\n\tARPHRD_6LOWPAN                              = 0x339\n\tARPHRD_ADAPT                                = 0x108\n\tARPHRD_APPLETLK                             = 0x8\n\tARPHRD_ARCNET                               = 0x7\n\tARPHRD_ASH                                  = 0x30d\n\tARPHRD_ATM                                  = 0x13\n\tARPHRD_AX25                                 = 0x3\n\tARPHRD_BIF                                  = 0x307\n\tARPHRD_CAIF                                 = 0x336\n\tARPHRD_CAN                                  = 0x118\n\tARPHRD_CHAOS                                = 0x5\n\tARPHRD_CISCO                                = 0x201\n\tARPHRD_CSLIP                                = 0x101\n\tARPHRD_CSLIP6                               = 0x103\n\tARPHRD_DDCMP                                = 0x205\n\tARPHRD_DLCI                                 = 0xf\n\tARPHRD_ECONET                               = 0x30e\n\tARPHRD_EETHER                               = 0x2\n\tARPHRD_ETHER                                = 0x1\n\tARPHRD_EUI64                                = 0x1b\n\tARPHRD_FCAL                                 = 0x311\n\tARPHRD_FCFABRIC                             = 0x313\n\tARPHRD_FCPL                                 = 0x312\n\tARPHRD_FCPP                                 = 0x310\n\tARPHRD_FDDI                                 = 0x306\n\tARPHRD_FRAD                                 = 0x302\n\tARPHRD_HDLC                                 = 0x201\n\tARPHRD_HIPPI                                = 0x30c\n\tARPHRD_HWX25                                = 0x110\n\tARPHRD_IEEE1394                             = 0x18\n\tARPHRD_IEEE802                              = 0x6\n\tARPHRD_IEEE80211                            = 0x321\n\tARPHRD_IEEE80211_PRISM                      = 0x322\n\tARPHRD_IEEE80211_RADIOTAP                   = 0x323\n\tARPHRD_IEEE802154                           = 0x324\n\tARPHRD_IEEE802154_MONITOR                   = 0x325\n\tARPHRD_IEEE802_TR                           = 0x320\n\tARPHRD_INFINIBAND                           = 0x20\n\tARPHRD_IP6GRE                               = 0x337\n\tARPHRD_IPDDP                                = 0x309\n\tARPHRD_IPGRE                                = 0x30a\n\tARPHRD_IRDA                                 = 0x30f\n\tARPHRD_LAPB                                 = 0x204\n\tARPHRD_LOCALTLK                             = 0x305\n\tARPHRD_LOOPBACK                             = 0x304\n\tARPHRD_METRICOM                             = 0x17\n\tARPHRD_NETLINK                              = 0x338\n\tARPHRD_NETROM                               = 0x0\n\tARPHRD_NONE                                 = 0xfffe\n\tARPHRD_PHONET                               = 0x334\n\tARPHRD_PHONET_PIPE                          = 0x335\n\tARPHRD_PIMREG                               = 0x30b\n\tARPHRD_PPP                                  = 0x200\n\tARPHRD_PRONET                               = 0x4\n\tARPHRD_RAWHDLC                              = 0x206\n\tARPHRD_RAWIP                                = 0x207\n\tARPHRD_ROSE                                 = 0x10e\n\tARPHRD_RSRVD                                = 0x104\n\tARPHRD_SIT                                  = 0x308\n\tARPHRD_SKIP                                 = 0x303\n\tARPHRD_SLIP                                 = 0x100\n\tARPHRD_SLIP6                                = 0x102\n\tARPHRD_TUNNEL                               = 0x300\n\tARPHRD_TUNNEL6                              = 0x301\n\tARPHRD_VOID                                 = 0xffff\n\tARPHRD_VSOCKMON                             = 0x33a\n\tARPHRD_X25                                  = 0x10f\n\tAUTOFS_SUPER_MAGIC                          = 0x187\n\tB0                                          = 0x0\n\tB110                                        = 0x3\n\tB1200                                       = 0x9\n\tB134                                        = 0x4\n\tB150                                        = 0x5\n\tB1800                                       = 0xa\n\tB19200                                      = 0xe\n\tB200                                        = 0x6\n\tB2400                                       = 0xb\n\tB300                                        = 0x7\n\tB38400                                      = 0xf\n\tB4800                                       = 0xc\n\tB50                                         = 0x1\n\tB600                                        = 0x8\n\tB75                                         = 0x2\n\tB9600                                       = 0xd\n\tBALLOON_KVM_MAGIC                           = 0x13661366\n\tBDEVFS_MAGIC                                = 0x62646576\n\tBINDERFS_SUPER_MAGIC                        = 0x6c6f6f70\n\tBINFMTFS_MAGIC                              = 0x42494e4d\n\tBPF_A                                       = 0x10\n\tBPF_ABS                                     = 0x20\n\tBPF_ADD                                     = 0x0\n\tBPF_ALU                                     = 0x4\n\tBPF_ALU64                                   = 0x7\n\tBPF_AND                                     = 0x50\n\tBPF_ARSH                                    = 0xc0\n\tBPF_B                                       = 0x10\n\tBPF_BUILD_ID_SIZE                           = 0x14\n\tBPF_CALL                                    = 0x80\n\tBPF_DIV                                     = 0x30\n\tBPF_DW                                      = 0x18\n\tBPF_END                                     = 0xd0\n\tBPF_EXIT                                    = 0x90\n\tBPF_FROM_BE                                 = 0x8\n\tBPF_FROM_LE                                 = 0x0\n\tBPF_FS_MAGIC                                = 0xcafe4a11\n\tBPF_F_ALLOW_MULTI                           = 0x2\n\tBPF_F_ALLOW_OVERRIDE                        = 0x1\n\tBPF_F_ANY_ALIGNMENT                         = 0x2\n\tBPF_F_QUERY_EFFECTIVE                       = 0x1\n\tBPF_F_REPLACE                               = 0x4\n\tBPF_F_STRICT_ALIGNMENT                      = 0x1\n\tBPF_F_TEST_RND_HI32                         = 0x4\n\tBPF_F_TEST_STATE_FREQ                       = 0x8\n\tBPF_H                                       = 0x8\n\tBPF_IMM                                     = 0x0\n\tBPF_IND                                     = 0x40\n\tBPF_JA                                      = 0x0\n\tBPF_JEQ                                     = 0x10\n\tBPF_JGE                                     = 0x30\n\tBPF_JGT                                     = 0x20\n\tBPF_JLE                                     = 0xb0\n\tBPF_JLT                                     = 0xa0\n\tBPF_JMP                                     = 0x5\n\tBPF_JMP32                                   = 0x6\n\tBPF_JNE                                     = 0x50\n\tBPF_JSET                                    = 0x40\n\tBPF_JSGE                                    = 0x70\n\tBPF_JSGT                                    = 0x60\n\tBPF_JSLE                                    = 0xd0\n\tBPF_JSLT                                    = 0xc0\n\tBPF_K                                       = 0x0\n\tBPF_LD                                      = 0x0\n\tBPF_LDX                                     = 0x1\n\tBPF_LEN                                     = 0x80\n\tBPF_LL_OFF                                  = -0x200000\n\tBPF_LSH                                     = 0x60\n\tBPF_MAJOR_VERSION                           = 0x1\n\tBPF_MAXINSNS                                = 0x1000\n\tBPF_MEM                                     = 0x60\n\tBPF_MEMWORDS                                = 0x10\n\tBPF_MINOR_VERSION                           = 0x1\n\tBPF_MISC                                    = 0x7\n\tBPF_MOD                                     = 0x90\n\tBPF_MOV                                     = 0xb0\n\tBPF_MSH                                     = 0xa0\n\tBPF_MUL                                     = 0x20\n\tBPF_NEG                                     = 0x80\n\tBPF_NET_OFF                                 = -0x100000\n\tBPF_OBJ_NAME_LEN                            = 0x10\n\tBPF_OR                                      = 0x40\n\tBPF_PSEUDO_CALL                             = 0x1\n\tBPF_PSEUDO_MAP_FD                           = 0x1\n\tBPF_PSEUDO_MAP_VALUE                        = 0x2\n\tBPF_RET                                     = 0x6\n\tBPF_RSH                                     = 0x70\n\tBPF_ST                                      = 0x2\n\tBPF_STX                                     = 0x3\n\tBPF_SUB                                     = 0x10\n\tBPF_TAG_SIZE                                = 0x8\n\tBPF_TAX                                     = 0x0\n\tBPF_TO_BE                                   = 0x8\n\tBPF_TO_LE                                   = 0x0\n\tBPF_TXA                                     = 0x80\n\tBPF_W                                       = 0x0\n\tBPF_X                                       = 0x8\n\tBPF_XADD                                    = 0xc0\n\tBPF_XOR                                     = 0xa0\n\tBRKINT                                      = 0x2\n\tBS0                                         = 0x0\n\tBTRFS_SUPER_MAGIC                           = 0x9123683e\n\tBTRFS_TEST_MAGIC                            = 0x73727279\n\tCAN_BCM                                     = 0x2\n\tCAN_EFF_FLAG                                = 0x80000000\n\tCAN_EFF_ID_BITS                             = 0x1d\n\tCAN_EFF_MASK                                = 0x1fffffff\n\tCAN_ERR_ACK                                 = 0x20\n\tCAN_ERR_BUSERROR                            = 0x80\n\tCAN_ERR_BUSOFF                              = 0x40\n\tCAN_ERR_CRTL                                = 0x4\n\tCAN_ERR_CRTL_ACTIVE                         = 0x40\n\tCAN_ERR_CRTL_RX_OVERFLOW                    = 0x1\n\tCAN_ERR_CRTL_RX_PASSIVE                     = 0x10\n\tCAN_ERR_CRTL_RX_WARNING                     = 0x4\n\tCAN_ERR_CRTL_TX_OVERFLOW                    = 0x2\n\tCAN_ERR_CRTL_TX_PASSIVE                     = 0x20\n\tCAN_ERR_CRTL_TX_WARNING                     = 0x8\n\tCAN_ERR_CRTL_UNSPEC                         = 0x0\n\tCAN_ERR_DLC                                 = 0x8\n\tCAN_ERR_FLAG                                = 0x20000000\n\tCAN_ERR_LOSTARB                             = 0x2\n\tCAN_ERR_LOSTARB_UNSPEC                      = 0x0\n\tCAN_ERR_MASK                                = 0x1fffffff\n\tCAN_ERR_PROT                                = 0x8\n\tCAN_ERR_PROT_ACTIVE                         = 0x40\n\tCAN_ERR_PROT_BIT                            = 0x1\n\tCAN_ERR_PROT_BIT0                           = 0x8\n\tCAN_ERR_PROT_BIT1                           = 0x10\n\tCAN_ERR_PROT_FORM                           = 0x2\n\tCAN_ERR_PROT_LOC_ACK                        = 0x19\n\tCAN_ERR_PROT_LOC_ACK_DEL                    = 0x1b\n\tCAN_ERR_PROT_LOC_CRC_DEL                    = 0x18\n\tCAN_ERR_PROT_LOC_CRC_SEQ                    = 0x8\n\tCAN_ERR_PROT_LOC_DATA                       = 0xa\n\tCAN_ERR_PROT_LOC_DLC                        = 0xb\n\tCAN_ERR_PROT_LOC_EOF                        = 0x1a\n\tCAN_ERR_PROT_LOC_ID04_00                    = 0xe\n\tCAN_ERR_PROT_LOC_ID12_05                    = 0xf\n\tCAN_ERR_PROT_LOC_ID17_13                    = 0x7\n\tCAN_ERR_PROT_LOC_ID20_18                    = 0x6\n\tCAN_ERR_PROT_LOC_ID28_21                    = 0x2\n\tCAN_ERR_PROT_LOC_IDE                        = 0x5\n\tCAN_ERR_PROT_LOC_INTERM                     = 0x12\n\tCAN_ERR_PROT_LOC_RES0                       = 0x9\n\tCAN_ERR_PROT_LOC_RES1                       = 0xd\n\tCAN_ERR_PROT_LOC_RTR                        = 0xc\n\tCAN_ERR_PROT_LOC_SOF                        = 0x3\n\tCAN_ERR_PROT_LOC_SRTR                       = 0x4\n\tCAN_ERR_PROT_LOC_UNSPEC                     = 0x0\n\tCAN_ERR_PROT_OVERLOAD                       = 0x20\n\tCAN_ERR_PROT_STUFF                          = 0x4\n\tCAN_ERR_PROT_TX                             = 0x80\n\tCAN_ERR_PROT_UNSPEC                         = 0x0\n\tCAN_ERR_RESTARTED                           = 0x100\n\tCAN_ERR_TRX                                 = 0x10\n\tCAN_ERR_TRX_CANH_NO_WIRE                    = 0x4\n\tCAN_ERR_TRX_CANH_SHORT_TO_BAT               = 0x5\n\tCAN_ERR_TRX_CANH_SHORT_TO_GND               = 0x7\n\tCAN_ERR_TRX_CANH_SHORT_TO_VCC               = 0x6\n\tCAN_ERR_TRX_CANL_NO_WIRE                    = 0x40\n\tCAN_ERR_TRX_CANL_SHORT_TO_BAT               = 0x50\n\tCAN_ERR_TRX_CANL_SHORT_TO_CANH              = 0x80\n\tCAN_ERR_TRX_CANL_SHORT_TO_GND               = 0x70\n\tCAN_ERR_TRX_CANL_SHORT_TO_VCC               = 0x60\n\tCAN_ERR_TRX_UNSPEC                          = 0x0\n\tCAN_ERR_TX_TIMEOUT                          = 0x1\n\tCAN_INV_FILTER                              = 0x20000000\n\tCAN_ISOTP                                   = 0x6\n\tCAN_J1939                                   = 0x7\n\tCAN_MAX_DLC                                 = 0x8\n\tCAN_MAX_DLEN                                = 0x8\n\tCAN_MCNET                                   = 0x5\n\tCAN_MTU                                     = 0x10\n\tCAN_NPROTO                                  = 0x8\n\tCAN_RAW                                     = 0x1\n\tCAN_RAW_FILTER_MAX                          = 0x200\n\tCAN_RTR_FLAG                                = 0x40000000\n\tCAN_SFF_ID_BITS                             = 0xb\n\tCAN_SFF_MASK                                = 0x7ff\n\tCAN_TP16                                    = 0x3\n\tCAN_TP20                                    = 0x4\n\tCAP_AUDIT_CONTROL                           = 0x1e\n\tCAP_AUDIT_READ                              = 0x25\n\tCAP_AUDIT_WRITE                             = 0x1d\n\tCAP_BLOCK_SUSPEND                           = 0x24\n\tCAP_BPF                                     = 0x27\n\tCAP_CHOWN                                   = 0x0\n\tCAP_DAC_OVERRIDE                            = 0x1\n\tCAP_DAC_READ_SEARCH                         = 0x2\n\tCAP_FOWNER                                  = 0x3\n\tCAP_FSETID                                  = 0x4\n\tCAP_IPC_LOCK                                = 0xe\n\tCAP_IPC_OWNER                               = 0xf\n\tCAP_KILL                                    = 0x5\n\tCAP_LAST_CAP                                = 0x27\n\tCAP_LEASE                                   = 0x1c\n\tCAP_LINUX_IMMUTABLE                         = 0x9\n\tCAP_MAC_ADMIN                               = 0x21\n\tCAP_MAC_OVERRIDE                            = 0x20\n\tCAP_MKNOD                                   = 0x1b\n\tCAP_NET_ADMIN                               = 0xc\n\tCAP_NET_BIND_SERVICE                        = 0xa\n\tCAP_NET_BROADCAST                           = 0xb\n\tCAP_NET_RAW                                 = 0xd\n\tCAP_PERFMON                                 = 0x26\n\tCAP_SETFCAP                                 = 0x1f\n\tCAP_SETGID                                  = 0x6\n\tCAP_SETPCAP                                 = 0x8\n\tCAP_SETUID                                  = 0x7\n\tCAP_SYSLOG                                  = 0x22\n\tCAP_SYS_ADMIN                               = 0x15\n\tCAP_SYS_BOOT                                = 0x16\n\tCAP_SYS_CHROOT                              = 0x12\n\tCAP_SYS_MODULE                              = 0x10\n\tCAP_SYS_NICE                                = 0x17\n\tCAP_SYS_PACCT                               = 0x14\n\tCAP_SYS_PTRACE                              = 0x13\n\tCAP_SYS_RAWIO                               = 0x11\n\tCAP_SYS_RESOURCE                            = 0x18\n\tCAP_SYS_TIME                                = 0x19\n\tCAP_SYS_TTY_CONFIG                          = 0x1a\n\tCAP_WAKE_ALARM                              = 0x23\n\tCFLUSH                                      = 0xf\n\tCGROUP2_SUPER_MAGIC                         = 0x63677270\n\tCGROUP_SUPER_MAGIC                          = 0x27e0eb\n\tCLOCK_BOOTTIME                              = 0x7\n\tCLOCK_BOOTTIME_ALARM                        = 0x9\n\tCLOCK_DEFAULT                               = 0x0\n\tCLOCK_EXT                                   = 0x1\n\tCLOCK_INT                                   = 0x2\n\tCLOCK_MONOTONIC                             = 0x1\n\tCLOCK_MONOTONIC_COARSE                      = 0x6\n\tCLOCK_MONOTONIC_RAW                         = 0x4\n\tCLOCK_PROCESS_CPUTIME_ID                    = 0x2\n\tCLOCK_REALTIME                              = 0x0\n\tCLOCK_REALTIME_ALARM                        = 0x8\n\tCLOCK_REALTIME_COARSE                       = 0x5\n\tCLOCK_TAI                                   = 0xb\n\tCLOCK_THREAD_CPUTIME_ID                     = 0x3\n\tCLOCK_TXFROMRX                              = 0x4\n\tCLOCK_TXINT                                 = 0x3\n\tCLONE_ARGS_SIZE_VER0                        = 0x40\n\tCLONE_ARGS_SIZE_VER1                        = 0x50\n\tCLONE_ARGS_SIZE_VER2                        = 0x58\n\tCLONE_CHILD_CLEARTID                        = 0x200000\n\tCLONE_CHILD_SETTID                          = 0x1000000\n\tCLONE_CLEAR_SIGHAND                         = 0x100000000\n\tCLONE_DETACHED                              = 0x400000\n\tCLONE_FILES                                 = 0x400\n\tCLONE_FS                                    = 0x200\n\tCLONE_INTO_CGROUP                           = 0x200000000\n\tCLONE_IO                                    = 0x80000000\n\tCLONE_NEWCGROUP                             = 0x2000000\n\tCLONE_NEWIPC                                = 0x8000000\n\tCLONE_NEWNET                                = 0x40000000\n\tCLONE_NEWNS                                 = 0x20000\n\tCLONE_NEWPID                                = 0x20000000\n\tCLONE_NEWTIME                               = 0x80\n\tCLONE_NEWUSER                               = 0x10000000\n\tCLONE_NEWUTS                                = 0x4000000\n\tCLONE_PARENT                                = 0x8000\n\tCLONE_PARENT_SETTID                         = 0x100000\n\tCLONE_PIDFD                                 = 0x1000\n\tCLONE_PTRACE                                = 0x2000\n\tCLONE_SETTLS                                = 0x80000\n\tCLONE_SIGHAND                               = 0x800\n\tCLONE_SYSVSEM                               = 0x40000\n\tCLONE_THREAD                                = 0x10000\n\tCLONE_UNTRACED                              = 0x800000\n\tCLONE_VFORK                                 = 0x4000\n\tCLONE_VM                                    = 0x100\n\tCMSPAR                                      = 0x40000000\n\tCODA_SUPER_MAGIC                            = 0x73757245\n\tCR0                                         = 0x0\n\tCRAMFS_MAGIC                                = 0x28cd3d45\n\tCRTSCTS                                     = 0x80000000\n\tCRYPTO_MAX_NAME                             = 0x40\n\tCRYPTO_MSG_MAX                              = 0x15\n\tCRYPTO_NR_MSGTYPES                          = 0x6\n\tCRYPTO_REPORT_MAXSIZE                       = 0x160\n\tCS5                                         = 0x0\n\tCSIGNAL                                     = 0xff\n\tCSTART                                      = 0x11\n\tCSTATUS                                     = 0x0\n\tCSTOP                                       = 0x13\n\tCSUSP                                       = 0x1a\n\tDAXFS_MAGIC                                 = 0x64646178\n\tDEBUGFS_MAGIC                               = 0x64626720\n\tDEVLINK_CMD_ESWITCH_MODE_GET                = 0x1d\n\tDEVLINK_CMD_ESWITCH_MODE_SET                = 0x1e\n\tDEVLINK_GENL_MCGRP_CONFIG_NAME              = \"config\"\n\tDEVLINK_GENL_NAME                           = \"devlink\"\n\tDEVLINK_GENL_VERSION                        = 0x1\n\tDEVLINK_SB_THRESHOLD_TO_ALPHA_MAX           = 0x14\n\tDEVMEM_MAGIC                                = 0x454d444d\n\tDEVPTS_SUPER_MAGIC                          = 0x1cd1\n\tDMA_BUF_MAGIC                               = 0x444d4142\n\tDM_ACTIVE_PRESENT_FLAG                      = 0x20\n\tDM_BUFFER_FULL_FLAG                         = 0x100\n\tDM_CONTROL_NODE                             = \"control\"\n\tDM_DATA_OUT_FLAG                            = 0x10000\n\tDM_DEFERRED_REMOVE                          = 0x20000\n\tDM_DEV_ARM_POLL                             = 0xc138fd10\n\tDM_DEV_CREATE                               = 0xc138fd03\n\tDM_DEV_REMOVE                               = 0xc138fd04\n\tDM_DEV_RENAME                               = 0xc138fd05\n\tDM_DEV_SET_GEOMETRY                         = 0xc138fd0f\n\tDM_DEV_STATUS                               = 0xc138fd07\n\tDM_DEV_SUSPEND                              = 0xc138fd06\n\tDM_DEV_WAIT                                 = 0xc138fd08\n\tDM_DIR                                      = \"mapper\"\n\tDM_GET_TARGET_VERSION                       = 0xc138fd11\n\tDM_INACTIVE_PRESENT_FLAG                    = 0x40\n\tDM_INTERNAL_SUSPEND_FLAG                    = 0x40000\n\tDM_IOCTL                                    = 0xfd\n\tDM_LIST_DEVICES                             = 0xc138fd02\n\tDM_LIST_VERSIONS                            = 0xc138fd0d\n\tDM_MAX_TYPE_NAME                            = 0x10\n\tDM_NAME_LEN                                 = 0x80\n\tDM_NOFLUSH_FLAG                             = 0x800\n\tDM_PERSISTENT_DEV_FLAG                      = 0x8\n\tDM_QUERY_INACTIVE_TABLE_FLAG                = 0x1000\n\tDM_READONLY_FLAG                            = 0x1\n\tDM_REMOVE_ALL                               = 0xc138fd01\n\tDM_SECURE_DATA_FLAG                         = 0x8000\n\tDM_SKIP_BDGET_FLAG                          = 0x200\n\tDM_SKIP_LOCKFS_FLAG                         = 0x400\n\tDM_STATUS_TABLE_FLAG                        = 0x10\n\tDM_SUSPEND_FLAG                             = 0x2\n\tDM_TABLE_CLEAR                              = 0xc138fd0a\n\tDM_TABLE_DEPS                               = 0xc138fd0b\n\tDM_TABLE_LOAD                               = 0xc138fd09\n\tDM_TABLE_STATUS                             = 0xc138fd0c\n\tDM_TARGET_MSG                               = 0xc138fd0e\n\tDM_UEVENT_GENERATED_FLAG                    = 0x2000\n\tDM_UUID_FLAG                                = 0x4000\n\tDM_UUID_LEN                                 = 0x81\n\tDM_VERSION                                  = 0xc138fd00\n\tDM_VERSION_EXTRA                            = \"-ioctl (2020-02-27)\"\n\tDM_VERSION_MAJOR                            = 0x4\n\tDM_VERSION_MINOR                            = 0x2a\n\tDM_VERSION_PATCHLEVEL                       = 0x0\n\tDT_BLK                                      = 0x6\n\tDT_CHR                                      = 0x2\n\tDT_DIR                                      = 0x4\n\tDT_FIFO                                     = 0x1\n\tDT_LNK                                      = 0xa\n\tDT_REG                                      = 0x8\n\tDT_SOCK                                     = 0xc\n\tDT_UNKNOWN                                  = 0x0\n\tDT_WHT                                      = 0xe\n\tECHO                                        = 0x8\n\tECRYPTFS_SUPER_MAGIC                        = 0xf15f\n\tEFD_SEMAPHORE                               = 0x1\n\tEFIVARFS_MAGIC                              = 0xde5e81e4\n\tEFS_SUPER_MAGIC                             = 0x414a53\n\tENCODING_DEFAULT                            = 0x0\n\tENCODING_FM_MARK                            = 0x3\n\tENCODING_FM_SPACE                           = 0x4\n\tENCODING_MANCHESTER                         = 0x5\n\tENCODING_NRZ                                = 0x1\n\tENCODING_NRZI                               = 0x2\n\tEPOLLERR                                    = 0x8\n\tEPOLLET                                     = 0x80000000\n\tEPOLLEXCLUSIVE                              = 0x10000000\n\tEPOLLHUP                                    = 0x10\n\tEPOLLIN                                     = 0x1\n\tEPOLLMSG                                    = 0x400\n\tEPOLLONESHOT                                = 0x40000000\n\tEPOLLOUT                                    = 0x4\n\tEPOLLPRI                                    = 0x2\n\tEPOLLRDBAND                                 = 0x80\n\tEPOLLRDHUP                                  = 0x2000\n\tEPOLLRDNORM                                 = 0x40\n\tEPOLLWAKEUP                                 = 0x20000000\n\tEPOLLWRBAND                                 = 0x200\n\tEPOLLWRNORM                                 = 0x100\n\tEPOLL_CTL_ADD                               = 0x1\n\tEPOLL_CTL_DEL                               = 0x2\n\tEPOLL_CTL_MOD                               = 0x3\n\tEROFS_SUPER_MAGIC_V1                        = 0xe0f5e1e2\n\tETH_P_1588                                  = 0x88f7\n\tETH_P_8021AD                                = 0x88a8\n\tETH_P_8021AH                                = 0x88e7\n\tETH_P_8021Q                                 = 0x8100\n\tETH_P_80221                                 = 0x8917\n\tETH_P_802_2                                 = 0x4\n\tETH_P_802_3                                 = 0x1\n\tETH_P_802_3_MIN                             = 0x600\n\tETH_P_802_EX1                               = 0x88b5\n\tETH_P_AARP                                  = 0x80f3\n\tETH_P_AF_IUCV                               = 0xfbfb\n\tETH_P_ALL                                   = 0x3\n\tETH_P_AOE                                   = 0x88a2\n\tETH_P_ARCNET                                = 0x1a\n\tETH_P_ARP                                   = 0x806\n\tETH_P_ATALK                                 = 0x809b\n\tETH_P_ATMFATE                               = 0x8884\n\tETH_P_ATMMPOA                               = 0x884c\n\tETH_P_AX25                                  = 0x2\n\tETH_P_BATMAN                                = 0x4305\n\tETH_P_BPQ                                   = 0x8ff\n\tETH_P_CAIF                                  = 0xf7\n\tETH_P_CAN                                   = 0xc\n\tETH_P_CANFD                                 = 0xd\n\tETH_P_CONTROL                               = 0x16\n\tETH_P_CUST                                  = 0x6006\n\tETH_P_DDCMP                                 = 0x6\n\tETH_P_DEC                                   = 0x6000\n\tETH_P_DIAG                                  = 0x6005\n\tETH_P_DNA_DL                                = 0x6001\n\tETH_P_DNA_RC                                = 0x6002\n\tETH_P_DNA_RT                                = 0x6003\n\tETH_P_DSA                                   = 0x1b\n\tETH_P_DSA_8021Q                             = 0xdadb\n\tETH_P_ECONET                                = 0x18\n\tETH_P_EDSA                                  = 0xdada\n\tETH_P_ERSPAN                                = 0x88be\n\tETH_P_ERSPAN2                               = 0x22eb\n\tETH_P_FCOE                                  = 0x8906\n\tETH_P_FIP                                   = 0x8914\n\tETH_P_HDLC                                  = 0x19\n\tETH_P_HSR                                   = 0x892f\n\tETH_P_IBOE                                  = 0x8915\n\tETH_P_IEEE802154                            = 0xf6\n\tETH_P_IEEEPUP                               = 0xa00\n\tETH_P_IEEEPUPAT                             = 0xa01\n\tETH_P_IFE                                   = 0xed3e\n\tETH_P_IP                                    = 0x800\n\tETH_P_IPV6                                  = 0x86dd\n\tETH_P_IPX                                   = 0x8137\n\tETH_P_IRDA                                  = 0x17\n\tETH_P_LAT                                   = 0x6004\n\tETH_P_LINK_CTL                              = 0x886c\n\tETH_P_LLDP                                  = 0x88cc\n\tETH_P_LOCALTALK                             = 0x9\n\tETH_P_LOOP                                  = 0x60\n\tETH_P_LOOPBACK                              = 0x9000\n\tETH_P_MACSEC                                = 0x88e5\n\tETH_P_MAP                                   = 0xf9\n\tETH_P_MOBITEX                               = 0x15\n\tETH_P_MPLS_MC                               = 0x8848\n\tETH_P_MPLS_UC                               = 0x8847\n\tETH_P_MRP                                   = 0x88e3\n\tETH_P_MVRP                                  = 0x88f5\n\tETH_P_NCSI                                  = 0x88f8\n\tETH_P_NSH                                   = 0x894f\n\tETH_P_PAE                                   = 0x888e\n\tETH_P_PAUSE                                 = 0x8808\n\tETH_P_PHONET                                = 0xf5\n\tETH_P_PPPTALK                               = 0x10\n\tETH_P_PPP_DISC                              = 0x8863\n\tETH_P_PPP_MP                                = 0x8\n\tETH_P_PPP_SES                               = 0x8864\n\tETH_P_PREAUTH                               = 0x88c7\n\tETH_P_PRP                                   = 0x88fb\n\tETH_P_PUP                                   = 0x200\n\tETH_P_PUPAT                                 = 0x201\n\tETH_P_QINQ1                                 = 0x9100\n\tETH_P_QINQ2                                 = 0x9200\n\tETH_P_QINQ3                                 = 0x9300\n\tETH_P_RARP                                  = 0x8035\n\tETH_P_SCA                                   = 0x6007\n\tETH_P_SLOW                                  = 0x8809\n\tETH_P_SNAP                                  = 0x5\n\tETH_P_TDLS                                  = 0x890d\n\tETH_P_TEB                                   = 0x6558\n\tETH_P_TIPC                                  = 0x88ca\n\tETH_P_TRAILER                               = 0x1c\n\tETH_P_TR_802_2                              = 0x11\n\tETH_P_TSN                                   = 0x22f0\n\tETH_P_WAN_PPP                               = 0x7\n\tETH_P_WCCP                                  = 0x883e\n\tETH_P_X25                                   = 0x805\n\tETH_P_XDSA                                  = 0xf8\n\tEXABYTE_ENABLE_NEST                         = 0xf0\n\tEXT2_SUPER_MAGIC                            = 0xef53\n\tEXT3_SUPER_MAGIC                            = 0xef53\n\tEXT4_SUPER_MAGIC                            = 0xef53\n\tEXTA                                        = 0xe\n\tEXTB                                        = 0xf\n\tF2FS_SUPER_MAGIC                            = 0xf2f52010\n\tFALLOC_FL_COLLAPSE_RANGE                    = 0x8\n\tFALLOC_FL_INSERT_RANGE                      = 0x20\n\tFALLOC_FL_KEEP_SIZE                         = 0x1\n\tFALLOC_FL_NO_HIDE_STALE                     = 0x4\n\tFALLOC_FL_PUNCH_HOLE                        = 0x2\n\tFALLOC_FL_UNSHARE_RANGE                     = 0x40\n\tFALLOC_FL_ZERO_RANGE                        = 0x10\n\tFANOTIFY_METADATA_VERSION                   = 0x3\n\tFAN_ACCESS                                  = 0x1\n\tFAN_ACCESS_PERM                             = 0x20000\n\tFAN_ALLOW                                   = 0x1\n\tFAN_ALL_CLASS_BITS                          = 0xc\n\tFAN_ALL_EVENTS                              = 0x3b\n\tFAN_ALL_INIT_FLAGS                          = 0x3f\n\tFAN_ALL_MARK_FLAGS                          = 0xff\n\tFAN_ALL_OUTGOING_EVENTS                     = 0x3403b\n\tFAN_ALL_PERM_EVENTS                         = 0x30000\n\tFAN_ATTRIB                                  = 0x4\n\tFAN_AUDIT                                   = 0x10\n\tFAN_CLASS_CONTENT                           = 0x4\n\tFAN_CLASS_NOTIF                             = 0x0\n\tFAN_CLASS_PRE_CONTENT                       = 0x8\n\tFAN_CLOEXEC                                 = 0x1\n\tFAN_CLOSE                                   = 0x18\n\tFAN_CLOSE_NOWRITE                           = 0x10\n\tFAN_CLOSE_WRITE                             = 0x8\n\tFAN_CREATE                                  = 0x100\n\tFAN_DELETE                                  = 0x200\n\tFAN_DELETE_SELF                             = 0x400\n\tFAN_DENY                                    = 0x2\n\tFAN_DIR_MODIFY                              = 0x80000\n\tFAN_ENABLE_AUDIT                            = 0x40\n\tFAN_EVENT_INFO_TYPE_DFID_NAME               = 0x2\n\tFAN_EVENT_INFO_TYPE_FID                     = 0x1\n\tFAN_EVENT_METADATA_LEN                      = 0x18\n\tFAN_EVENT_ON_CHILD                          = 0x8000000\n\tFAN_MARK_ADD                                = 0x1\n\tFAN_MARK_DONT_FOLLOW                        = 0x4\n\tFAN_MARK_FILESYSTEM                         = 0x100\n\tFAN_MARK_FLUSH                              = 0x80\n\tFAN_MARK_IGNORED_MASK                       = 0x20\n\tFAN_MARK_IGNORED_SURV_MODIFY                = 0x40\n\tFAN_MARK_INODE                              = 0x0\n\tFAN_MARK_MOUNT                              = 0x10\n\tFAN_MARK_ONLYDIR                            = 0x8\n\tFAN_MARK_REMOVE                             = 0x2\n\tFAN_MODIFY                                  = 0x2\n\tFAN_MOVE                                    = 0xc0\n\tFAN_MOVED_FROM                              = 0x40\n\tFAN_MOVED_TO                                = 0x80\n\tFAN_MOVE_SELF                               = 0x800\n\tFAN_NOFD                                    = -0x1\n\tFAN_NONBLOCK                                = 0x2\n\tFAN_ONDIR                                   = 0x40000000\n\tFAN_OPEN                                    = 0x20\n\tFAN_OPEN_EXEC                               = 0x1000\n\tFAN_OPEN_EXEC_PERM                          = 0x40000\n\tFAN_OPEN_PERM                               = 0x10000\n\tFAN_Q_OVERFLOW                              = 0x4000\n\tFAN_REPORT_FID                              = 0x200\n\tFAN_REPORT_TID                              = 0x100\n\tFAN_UNLIMITED_MARKS                         = 0x20\n\tFAN_UNLIMITED_QUEUE                         = 0x10\n\tFD_CLOEXEC                                  = 0x1\n\tFD_SETSIZE                                  = 0x400\n\tFF0                                         = 0x0\n\tFIDEDUPERANGE                               = 0xc0189436\n\tFSCRYPT_KEY_DESCRIPTOR_SIZE                 = 0x8\n\tFSCRYPT_KEY_DESC_PREFIX                     = \"fscrypt:\"\n\tFSCRYPT_KEY_DESC_PREFIX_SIZE                = 0x8\n\tFSCRYPT_KEY_IDENTIFIER_SIZE                 = 0x10\n\tFSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY  = 0x1\n\tFSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS = 0x2\n\tFSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR            = 0x1\n\tFSCRYPT_KEY_SPEC_TYPE_IDENTIFIER            = 0x2\n\tFSCRYPT_KEY_STATUS_ABSENT                   = 0x1\n\tFSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF       = 0x1\n\tFSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED     = 0x3\n\tFSCRYPT_KEY_STATUS_PRESENT                  = 0x2\n\tFSCRYPT_MAX_KEY_SIZE                        = 0x40\n\tFSCRYPT_MODE_ADIANTUM                       = 0x9\n\tFSCRYPT_MODE_AES_128_CBC                    = 0x5\n\tFSCRYPT_MODE_AES_128_CTS                    = 0x6\n\tFSCRYPT_MODE_AES_256_CTS                    = 0x4\n\tFSCRYPT_MODE_AES_256_XTS                    = 0x1\n\tFSCRYPT_POLICY_FLAGS_PAD_16                 = 0x2\n\tFSCRYPT_POLICY_FLAGS_PAD_32                 = 0x3\n\tFSCRYPT_POLICY_FLAGS_PAD_4                  = 0x0\n\tFSCRYPT_POLICY_FLAGS_PAD_8                  = 0x1\n\tFSCRYPT_POLICY_FLAGS_PAD_MASK               = 0x3\n\tFSCRYPT_POLICY_FLAGS_VALID                  = 0x1f\n\tFSCRYPT_POLICY_FLAG_DIRECT_KEY              = 0x4\n\tFSCRYPT_POLICY_FLAG_IV_INO_LBLK_32          = 0x10\n\tFSCRYPT_POLICY_FLAG_IV_INO_LBLK_64          = 0x8\n\tFSCRYPT_POLICY_V1                           = 0x0\n\tFSCRYPT_POLICY_V2                           = 0x2\n\tFS_ENCRYPTION_MODE_ADIANTUM                 = 0x9\n\tFS_ENCRYPTION_MODE_AES_128_CBC              = 0x5\n\tFS_ENCRYPTION_MODE_AES_128_CTS              = 0x6\n\tFS_ENCRYPTION_MODE_AES_256_CBC              = 0x3\n\tFS_ENCRYPTION_MODE_AES_256_CTS              = 0x4\n\tFS_ENCRYPTION_MODE_AES_256_GCM              = 0x2\n\tFS_ENCRYPTION_MODE_AES_256_XTS              = 0x1\n\tFS_ENCRYPTION_MODE_INVALID                  = 0x0\n\tFS_ENCRYPTION_MODE_SPECK128_256_CTS         = 0x8\n\tFS_ENCRYPTION_MODE_SPECK128_256_XTS         = 0x7\n\tFS_IOC_ADD_ENCRYPTION_KEY                   = 0xc0506617\n\tFS_IOC_GET_ENCRYPTION_KEY_STATUS            = 0xc080661a\n\tFS_IOC_GET_ENCRYPTION_POLICY_EX             = 0xc0096616\n\tFS_IOC_MEASURE_VERITY                       = 0xc0046686\n\tFS_IOC_REMOVE_ENCRYPTION_KEY                = 0xc0406618\n\tFS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS      = 0xc0406619\n\tFS_KEY_DESCRIPTOR_SIZE                      = 0x8\n\tFS_KEY_DESC_PREFIX                          = \"fscrypt:\"\n\tFS_KEY_DESC_PREFIX_SIZE                     = 0x8\n\tFS_MAX_KEY_SIZE                             = 0x40\n\tFS_POLICY_FLAGS_PAD_16                      = 0x2\n\tFS_POLICY_FLAGS_PAD_32                      = 0x3\n\tFS_POLICY_FLAGS_PAD_4                       = 0x0\n\tFS_POLICY_FLAGS_PAD_8                       = 0x1\n\tFS_POLICY_FLAGS_PAD_MASK                    = 0x3\n\tFS_POLICY_FLAGS_VALID                       = 0x1f\n\tFS_VERITY_FL                                = 0x100000\n\tFS_VERITY_HASH_ALG_SHA256                   = 0x1\n\tFS_VERITY_HASH_ALG_SHA512                   = 0x2\n\tFUTEXFS_SUPER_MAGIC                         = 0xbad1dea\n\tF_ADD_SEALS                                 = 0x409\n\tF_DUPFD                                     = 0x0\n\tF_DUPFD_CLOEXEC                             = 0x406\n\tF_EXLCK                                     = 0x4\n\tF_GETFD                                     = 0x1\n\tF_GETFL                                     = 0x3\n\tF_GETLEASE                                  = 0x401\n\tF_GETOWN_EX                                 = 0x10\n\tF_GETPIPE_SZ                                = 0x408\n\tF_GETSIG                                    = 0xb\n\tF_GET_FILE_RW_HINT                          = 0x40d\n\tF_GET_RW_HINT                               = 0x40b\n\tF_GET_SEALS                                 = 0x40a\n\tF_LOCK                                      = 0x1\n\tF_NOTIFY                                    = 0x402\n\tF_OFD_GETLK                                 = 0x24\n\tF_OFD_SETLK                                 = 0x25\n\tF_OFD_SETLKW                                = 0x26\n\tF_OK                                        = 0x0\n\tF_SEAL_FUTURE_WRITE                         = 0x10\n\tF_SEAL_GROW                                 = 0x4\n\tF_SEAL_SEAL                                 = 0x1\n\tF_SEAL_SHRINK                               = 0x2\n\tF_SEAL_WRITE                                = 0x8\n\tF_SETFD                                     = 0x2\n\tF_SETFL                                     = 0x4\n\tF_SETLEASE                                  = 0x400\n\tF_SETOWN_EX                                 = 0xf\n\tF_SETPIPE_SZ                                = 0x407\n\tF_SETSIG                                    = 0xa\n\tF_SET_FILE_RW_HINT                          = 0x40e\n\tF_SET_RW_HINT                               = 0x40c\n\tF_SHLCK                                     = 0x8\n\tF_TEST                                      = 0x3\n\tF_TLOCK                                     = 0x2\n\tF_ULOCK                                     = 0x0\n\tGENL_ADMIN_PERM                             = 0x1\n\tGENL_CMD_CAP_DO                             = 0x2\n\tGENL_CMD_CAP_DUMP                           = 0x4\n\tGENL_CMD_CAP_HASPOL                         = 0x8\n\tGENL_HDRLEN                                 = 0x4\n\tGENL_ID_CTRL                                = 0x10\n\tGENL_ID_PMCRAID                             = 0x12\n\tGENL_ID_VFS_DQUOT                           = 0x11\n\tGENL_MAX_ID                                 = 0x3ff\n\tGENL_MIN_ID                                 = 0x10\n\tGENL_NAMSIZ                                 = 0x10\n\tGENL_START_ALLOC                            = 0x13\n\tGENL_UNS_ADMIN_PERM                         = 0x10\n\tGRND_INSECURE                               = 0x4\n\tGRND_NONBLOCK                               = 0x1\n\tGRND_RANDOM                                 = 0x2\n\tHDIO_DRIVE_CMD                              = 0x31f\n\tHDIO_DRIVE_CMD_AEB                          = 0x31e\n\tHDIO_DRIVE_CMD_HDR_SIZE                     = 0x4\n\tHDIO_DRIVE_HOB_HDR_SIZE                     = 0x8\n\tHDIO_DRIVE_RESET                            = 0x31c\n\tHDIO_DRIVE_TASK                             = 0x31e\n\tHDIO_DRIVE_TASKFILE                         = 0x31d\n\tHDIO_DRIVE_TASK_HDR_SIZE                    = 0x8\n\tHDIO_GETGEO                                 = 0x301\n\tHDIO_GET_32BIT                              = 0x309\n\tHDIO_GET_ACOUSTIC                           = 0x30f\n\tHDIO_GET_ADDRESS                            = 0x310\n\tHDIO_GET_BUSSTATE                           = 0x31a\n\tHDIO_GET_DMA                                = 0x30b\n\tHDIO_GET_IDENTITY                           = 0x30d\n\tHDIO_GET_KEEPSETTINGS                       = 0x308\n\tHDIO_GET_MULTCOUNT                          = 0x304\n\tHDIO_GET_NICE                               = 0x30c\n\tHDIO_GET_NOWERR                             = 0x30a\n\tHDIO_GET_QDMA                               = 0x305\n\tHDIO_GET_UNMASKINTR                         = 0x302\n\tHDIO_GET_WCACHE                             = 0x30e\n\tHDIO_OBSOLETE_IDENTITY                      = 0x307\n\tHDIO_SCAN_HWIF                              = 0x328\n\tHDIO_SET_32BIT                              = 0x324\n\tHDIO_SET_ACOUSTIC                           = 0x32c\n\tHDIO_SET_ADDRESS                            = 0x32f\n\tHDIO_SET_BUSSTATE                           = 0x32d\n\tHDIO_SET_DMA                                = 0x326\n\tHDIO_SET_KEEPSETTINGS                       = 0x323\n\tHDIO_SET_MULTCOUNT                          = 0x321\n\tHDIO_SET_NICE                               = 0x329\n\tHDIO_SET_NOWERR                             = 0x325\n\tHDIO_SET_PIO_MODE                           = 0x327\n\tHDIO_SET_QDMA                               = 0x32e\n\tHDIO_SET_UNMASKINTR                         = 0x322\n\tHDIO_SET_WCACHE                             = 0x32b\n\tHDIO_SET_XFER                               = 0x306\n\tHDIO_TRISTATE_HWIF                          = 0x31b\n\tHDIO_UNREGISTER_HWIF                        = 0x32a\n\tHOSTFS_SUPER_MAGIC                          = 0xc0ffee\n\tHPFS_SUPER_MAGIC                            = 0xf995e849\n\tHUGETLBFS_MAGIC                             = 0x958458f6\n\tIBSHIFT                                     = 0x10\n\tICMPV6_FILTER                               = 0x1\n\tICRNL                                       = 0x100\n\tIFA_F_DADFAILED                             = 0x8\n\tIFA_F_DEPRECATED                            = 0x20\n\tIFA_F_HOMEADDRESS                           = 0x10\n\tIFA_F_MANAGETEMPADDR                        = 0x100\n\tIFA_F_MCAUTOJOIN                            = 0x400\n\tIFA_F_NODAD                                 = 0x2\n\tIFA_F_NOPREFIXROUTE                         = 0x200\n\tIFA_F_OPTIMISTIC                            = 0x4\n\tIFA_F_PERMANENT                             = 0x80\n\tIFA_F_SECONDARY                             = 0x1\n\tIFA_F_STABLE_PRIVACY                        = 0x800\n\tIFA_F_TEMPORARY                             = 0x1\n\tIFA_F_TENTATIVE                             = 0x40\n\tIFA_MAX                                     = 0xa\n\tIFF_ALLMULTI                                = 0x200\n\tIFF_ATTACH_QUEUE                            = 0x200\n\tIFF_AUTOMEDIA                               = 0x4000\n\tIFF_BROADCAST                               = 0x2\n\tIFF_DEBUG                                   = 0x4\n\tIFF_DETACH_QUEUE                            = 0x400\n\tIFF_DORMANT                                 = 0x20000\n\tIFF_DYNAMIC                                 = 0x8000\n\tIFF_ECHO                                    = 0x40000\n\tIFF_LOOPBACK                                = 0x8\n\tIFF_LOWER_UP                                = 0x10000\n\tIFF_MASTER                                  = 0x400\n\tIFF_MULTICAST                               = 0x1000\n\tIFF_MULTI_QUEUE                             = 0x100\n\tIFF_NAPI                                    = 0x10\n\tIFF_NAPI_FRAGS                              = 0x20\n\tIFF_NOARP                                   = 0x80\n\tIFF_NOFILTER                                = 0x1000\n\tIFF_NOTRAILERS                              = 0x20\n\tIFF_NO_PI                                   = 0x1000\n\tIFF_ONE_QUEUE                               = 0x2000\n\tIFF_PERSIST                                 = 0x800\n\tIFF_POINTOPOINT                             = 0x10\n\tIFF_PORTSEL                                 = 0x2000\n\tIFF_PROMISC                                 = 0x100\n\tIFF_RUNNING                                 = 0x40\n\tIFF_SLAVE                                   = 0x800\n\tIFF_TAP                                     = 0x2\n\tIFF_TUN                                     = 0x1\n\tIFF_TUN_EXCL                                = 0x8000\n\tIFF_UP                                      = 0x1\n\tIFF_VNET_HDR                                = 0x4000\n\tIFF_VOLATILE                                = 0x70c5a\n\tIFNAMSIZ                                    = 0x10\n\tIGNBRK                                      = 0x1\n\tIGNCR                                       = 0x80\n\tIGNPAR                                      = 0x4\n\tIMAXBEL                                     = 0x2000\n\tINLCR                                       = 0x40\n\tINPCK                                       = 0x10\n\tIN_ACCESS                                   = 0x1\n\tIN_ALL_EVENTS                               = 0xfff\n\tIN_ATTRIB                                   = 0x4\n\tIN_CLASSA_HOST                              = 0xffffff\n\tIN_CLASSA_MAX                               = 0x80\n\tIN_CLASSA_NET                               = 0xff000000\n\tIN_CLASSA_NSHIFT                            = 0x18\n\tIN_CLASSB_HOST                              = 0xffff\n\tIN_CLASSB_MAX                               = 0x10000\n\tIN_CLASSB_NET                               = 0xffff0000\n\tIN_CLASSB_NSHIFT                            = 0x10\n\tIN_CLASSC_HOST                              = 0xff\n\tIN_CLASSC_NET                               = 0xffffff00\n\tIN_CLASSC_NSHIFT                            = 0x8\n\tIN_CLOSE                                    = 0x18\n\tIN_CLOSE_NOWRITE                            = 0x10\n\tIN_CLOSE_WRITE                              = 0x8\n\tIN_CREATE                                   = 0x100\n\tIN_DELETE                                   = 0x200\n\tIN_DELETE_SELF                              = 0x400\n\tIN_DONT_FOLLOW                              = 0x2000000\n\tIN_EXCL_UNLINK                              = 0x4000000\n\tIN_IGNORED                                  = 0x8000\n\tIN_ISDIR                                    = 0x40000000\n\tIN_LOOPBACKNET                              = 0x7f\n\tIN_MASK_ADD                                 = 0x20000000\n\tIN_MASK_CREATE                              = 0x10000000\n\tIN_MODIFY                                   = 0x2\n\tIN_MOVE                                     = 0xc0\n\tIN_MOVED_FROM                               = 0x40\n\tIN_MOVED_TO                                 = 0x80\n\tIN_MOVE_SELF                                = 0x800\n\tIN_ONESHOT                                  = 0x80000000\n\tIN_ONLYDIR                                  = 0x1000000\n\tIN_OPEN                                     = 0x20\n\tIN_Q_OVERFLOW                               = 0x4000\n\tIN_UNMOUNT                                  = 0x2000\n\tIPPROTO_AH                                  = 0x33\n\tIPPROTO_BEETPH                              = 0x5e\n\tIPPROTO_COMP                                = 0x6c\n\tIPPROTO_DCCP                                = 0x21\n\tIPPROTO_DSTOPTS                             = 0x3c\n\tIPPROTO_EGP                                 = 0x8\n\tIPPROTO_ENCAP                               = 0x62\n\tIPPROTO_ESP                                 = 0x32\n\tIPPROTO_ETHERNET                            = 0x8f\n\tIPPROTO_FRAGMENT                            = 0x2c\n\tIPPROTO_GRE                                 = 0x2f\n\tIPPROTO_HOPOPTS                             = 0x0\n\tIPPROTO_ICMP                                = 0x1\n\tIPPROTO_ICMPV6                              = 0x3a\n\tIPPROTO_IDP                                 = 0x16\n\tIPPROTO_IGMP                                = 0x2\n\tIPPROTO_IP                                  = 0x0\n\tIPPROTO_IPIP                                = 0x4\n\tIPPROTO_IPV6                                = 0x29\n\tIPPROTO_L2TP                                = 0x73\n\tIPPROTO_MH                                  = 0x87\n\tIPPROTO_MPLS                                = 0x89\n\tIPPROTO_MPTCP                               = 0x106\n\tIPPROTO_MTP                                 = 0x5c\n\tIPPROTO_NONE                                = 0x3b\n\tIPPROTO_PIM                                 = 0x67\n\tIPPROTO_PUP                                 = 0xc\n\tIPPROTO_RAW                                 = 0xff\n\tIPPROTO_ROUTING                             = 0x2b\n\tIPPROTO_RSVP                                = 0x2e\n\tIPPROTO_SCTP                                = 0x84\n\tIPPROTO_TCP                                 = 0x6\n\tIPPROTO_TP                                  = 0x1d\n\tIPPROTO_UDP                                 = 0x11\n\tIPPROTO_UDPLITE                             = 0x88\n\tIPV6_2292DSTOPTS                            = 0x4\n\tIPV6_2292HOPLIMIT                           = 0x8\n\tIPV6_2292HOPOPTS                            = 0x3\n\tIPV6_2292PKTINFO                            = 0x2\n\tIPV6_2292PKTOPTIONS                         = 0x6\n\tIPV6_2292RTHDR                              = 0x5\n\tIPV6_ADDRFORM                               = 0x1\n\tIPV6_ADDR_PREFERENCES                       = 0x48\n\tIPV6_ADD_MEMBERSHIP                         = 0x14\n\tIPV6_AUTHHDR                                = 0xa\n\tIPV6_AUTOFLOWLABEL                          = 0x46\n\tIPV6_CHECKSUM                               = 0x7\n\tIPV6_DONTFRAG                               = 0x3e\n\tIPV6_DROP_MEMBERSHIP                        = 0x15\n\tIPV6_DSTOPTS                                = 0x3b\n\tIPV6_FREEBIND                               = 0x4e\n\tIPV6_HDRINCL                                = 0x24\n\tIPV6_HOPLIMIT                               = 0x34\n\tIPV6_HOPOPTS                                = 0x36\n\tIPV6_IPSEC_POLICY                           = 0x22\n\tIPV6_JOIN_ANYCAST                           = 0x1b\n\tIPV6_JOIN_GROUP                             = 0x14\n\tIPV6_LEAVE_ANYCAST                          = 0x1c\n\tIPV6_LEAVE_GROUP                            = 0x15\n\tIPV6_MINHOPCOUNT                            = 0x49\n\tIPV6_MTU                                    = 0x18\n\tIPV6_MTU_DISCOVER                           = 0x17\n\tIPV6_MULTICAST_ALL                          = 0x1d\n\tIPV6_MULTICAST_HOPS                         = 0x12\n\tIPV6_MULTICAST_IF                           = 0x11\n\tIPV6_MULTICAST_LOOP                         = 0x13\n\tIPV6_NEXTHOP                                = 0x9\n\tIPV6_ORIGDSTADDR                            = 0x4a\n\tIPV6_PATHMTU                                = 0x3d\n\tIPV6_PKTINFO                                = 0x32\n\tIPV6_PMTUDISC_DO                            = 0x2\n\tIPV6_PMTUDISC_DONT                          = 0x0\n\tIPV6_PMTUDISC_INTERFACE                     = 0x4\n\tIPV6_PMTUDISC_OMIT                          = 0x5\n\tIPV6_PMTUDISC_PROBE                         = 0x3\n\tIPV6_PMTUDISC_WANT                          = 0x1\n\tIPV6_RECVDSTOPTS                            = 0x3a\n\tIPV6_RECVERR                                = 0x19\n\tIPV6_RECVFRAGSIZE                           = 0x4d\n\tIPV6_RECVHOPLIMIT                           = 0x33\n\tIPV6_RECVHOPOPTS                            = 0x35\n\tIPV6_RECVORIGDSTADDR                        = 0x4a\n\tIPV6_RECVPATHMTU                            = 0x3c\n\tIPV6_RECVPKTINFO                            = 0x31\n\tIPV6_RECVRTHDR                              = 0x38\n\tIPV6_RECVTCLASS                             = 0x42\n\tIPV6_ROUTER_ALERT                           = 0x16\n\tIPV6_ROUTER_ALERT_ISOLATE                   = 0x1e\n\tIPV6_RTHDR                                  = 0x39\n\tIPV6_RTHDRDSTOPTS                           = 0x37\n\tIPV6_RTHDR_LOOSE                            = 0x0\n\tIPV6_RTHDR_STRICT                           = 0x1\n\tIPV6_RTHDR_TYPE_0                           = 0x0\n\tIPV6_RXDSTOPTS                              = 0x3b\n\tIPV6_RXHOPOPTS                              = 0x36\n\tIPV6_TCLASS                                 = 0x43\n\tIPV6_TRANSPARENT                            = 0x4b\n\tIPV6_UNICAST_HOPS                           = 0x10\n\tIPV6_UNICAST_IF                             = 0x4c\n\tIPV6_V6ONLY                                 = 0x1a\n\tIPV6_XFRM_POLICY                            = 0x23\n\tIP_ADD_MEMBERSHIP                           = 0x23\n\tIP_ADD_SOURCE_MEMBERSHIP                    = 0x27\n\tIP_BIND_ADDRESS_NO_PORT                     = 0x18\n\tIP_BLOCK_SOURCE                             = 0x26\n\tIP_CHECKSUM                                 = 0x17\n\tIP_DEFAULT_MULTICAST_LOOP                   = 0x1\n\tIP_DEFAULT_MULTICAST_TTL                    = 0x1\n\tIP_DF                                       = 0x4000\n\tIP_DROP_MEMBERSHIP                          = 0x24\n\tIP_DROP_SOURCE_MEMBERSHIP                   = 0x28\n\tIP_FREEBIND                                 = 0xf\n\tIP_HDRINCL                                  = 0x3\n\tIP_IPSEC_POLICY                             = 0x10\n\tIP_MAXPACKET                                = 0xffff\n\tIP_MAX_MEMBERSHIPS                          = 0x14\n\tIP_MF                                       = 0x2000\n\tIP_MINTTL                                   = 0x15\n\tIP_MSFILTER                                 = 0x29\n\tIP_MSS                                      = 0x240\n\tIP_MTU                                      = 0xe\n\tIP_MTU_DISCOVER                             = 0xa\n\tIP_MULTICAST_ALL                            = 0x31\n\tIP_MULTICAST_IF                             = 0x20\n\tIP_MULTICAST_LOOP                           = 0x22\n\tIP_MULTICAST_TTL                            = 0x21\n\tIP_NODEFRAG                                 = 0x16\n\tIP_OFFMASK                                  = 0x1fff\n\tIP_OPTIONS                                  = 0x4\n\tIP_ORIGDSTADDR                              = 0x14\n\tIP_PASSSEC                                  = 0x12\n\tIP_PKTINFO                                  = 0x8\n\tIP_PKTOPTIONS                               = 0x9\n\tIP_PMTUDISC                                 = 0xa\n\tIP_PMTUDISC_DO                              = 0x2\n\tIP_PMTUDISC_DONT                            = 0x0\n\tIP_PMTUDISC_INTERFACE                       = 0x4\n\tIP_PMTUDISC_OMIT                            = 0x5\n\tIP_PMTUDISC_PROBE                           = 0x3\n\tIP_PMTUDISC_WANT                            = 0x1\n\tIP_RECVERR                                  = 0xb\n\tIP_RECVFRAGSIZE                             = 0x19\n\tIP_RECVOPTS                                 = 0x6\n\tIP_RECVORIGDSTADDR                          = 0x14\n\tIP_RECVRETOPTS                              = 0x7\n\tIP_RECVTOS                                  = 0xd\n\tIP_RECVTTL                                  = 0xc\n\tIP_RETOPTS                                  = 0x7\n\tIP_RF                                       = 0x8000\n\tIP_ROUTER_ALERT                             = 0x5\n\tIP_TOS                                      = 0x1\n\tIP_TRANSPARENT                              = 0x13\n\tIP_TTL                                      = 0x2\n\tIP_UNBLOCK_SOURCE                           = 0x25\n\tIP_UNICAST_IF                               = 0x32\n\tIP_XFRM_POLICY                              = 0x11\n\tISOFS_SUPER_MAGIC                           = 0x9660\n\tISTRIP                                      = 0x20\n\tIUTF8                                       = 0x4000\n\tIXANY                                       = 0x800\n\tJFFS2_SUPER_MAGIC                           = 0x72b6\n\tKEXEC_ARCH_386                              = 0x30000\n\tKEXEC_ARCH_68K                              = 0x40000\n\tKEXEC_ARCH_AARCH64                          = 0xb70000\n\tKEXEC_ARCH_ARM                              = 0x280000\n\tKEXEC_ARCH_DEFAULT                          = 0x0\n\tKEXEC_ARCH_IA_64                            = 0x320000\n\tKEXEC_ARCH_MASK                             = 0xffff0000\n\tKEXEC_ARCH_MIPS                             = 0x80000\n\tKEXEC_ARCH_MIPS_LE                          = 0xa0000\n\tKEXEC_ARCH_PARISC                           = 0xf0000\n\tKEXEC_ARCH_PPC                              = 0x140000\n\tKEXEC_ARCH_PPC64                            = 0x150000\n\tKEXEC_ARCH_S390                             = 0x160000\n\tKEXEC_ARCH_SH                               = 0x2a0000\n\tKEXEC_ARCH_X86_64                           = 0x3e0000\n\tKEXEC_FILE_NO_INITRAMFS                     = 0x4\n\tKEXEC_FILE_ON_CRASH                         = 0x2\n\tKEXEC_FILE_UNLOAD                           = 0x1\n\tKEXEC_ON_CRASH                              = 0x1\n\tKEXEC_PRESERVE_CONTEXT                      = 0x2\n\tKEXEC_SEGMENT_MAX                           = 0x10\n\tKEYCTL_ASSUME_AUTHORITY                     = 0x10\n\tKEYCTL_CAPABILITIES                         = 0x1f\n\tKEYCTL_CAPS0_BIG_KEY                        = 0x10\n\tKEYCTL_CAPS0_CAPABILITIES                   = 0x1\n\tKEYCTL_CAPS0_DIFFIE_HELLMAN                 = 0x4\n\tKEYCTL_CAPS0_INVALIDATE                     = 0x20\n\tKEYCTL_CAPS0_MOVE                           = 0x80\n\tKEYCTL_CAPS0_PERSISTENT_KEYRINGS            = 0x2\n\tKEYCTL_CAPS0_PUBLIC_KEY                     = 0x8\n\tKEYCTL_CAPS0_RESTRICT_KEYRING               = 0x40\n\tKEYCTL_CAPS1_NOTIFICATIONS                  = 0x4\n\tKEYCTL_CAPS1_NS_KEYRING_NAME                = 0x1\n\tKEYCTL_CAPS1_NS_KEY_TAG                     = 0x2\n\tKEYCTL_CHOWN                                = 0x4\n\tKEYCTL_CLEAR                                = 0x7\n\tKEYCTL_DESCRIBE                             = 0x6\n\tKEYCTL_DH_COMPUTE                           = 0x17\n\tKEYCTL_GET_KEYRING_ID                       = 0x0\n\tKEYCTL_GET_PERSISTENT                       = 0x16\n\tKEYCTL_GET_SECURITY                         = 0x11\n\tKEYCTL_INSTANTIATE                          = 0xc\n\tKEYCTL_INSTANTIATE_IOV                      = 0x14\n\tKEYCTL_INVALIDATE                           = 0x15\n\tKEYCTL_JOIN_SESSION_KEYRING                 = 0x1\n\tKEYCTL_LINK                                 = 0x8\n\tKEYCTL_MOVE                                 = 0x1e\n\tKEYCTL_MOVE_EXCL                            = 0x1\n\tKEYCTL_NEGATE                               = 0xd\n\tKEYCTL_PKEY_DECRYPT                         = 0x1a\n\tKEYCTL_PKEY_ENCRYPT                         = 0x19\n\tKEYCTL_PKEY_QUERY                           = 0x18\n\tKEYCTL_PKEY_SIGN                            = 0x1b\n\tKEYCTL_PKEY_VERIFY                          = 0x1c\n\tKEYCTL_READ                                 = 0xb\n\tKEYCTL_REJECT                               = 0x13\n\tKEYCTL_RESTRICT_KEYRING                     = 0x1d\n\tKEYCTL_REVOKE                               = 0x3\n\tKEYCTL_SEARCH                               = 0xa\n\tKEYCTL_SESSION_TO_PARENT                    = 0x12\n\tKEYCTL_SETPERM                              = 0x5\n\tKEYCTL_SET_REQKEY_KEYRING                   = 0xe\n\tKEYCTL_SET_TIMEOUT                          = 0xf\n\tKEYCTL_SUPPORTS_DECRYPT                     = 0x2\n\tKEYCTL_SUPPORTS_ENCRYPT                     = 0x1\n\tKEYCTL_SUPPORTS_SIGN                        = 0x4\n\tKEYCTL_SUPPORTS_VERIFY                      = 0x8\n\tKEYCTL_UNLINK                               = 0x9\n\tKEYCTL_UPDATE                               = 0x2\n\tKEYCTL_WATCH_KEY                            = 0x20\n\tKEY_REQKEY_DEFL_DEFAULT                     = 0x0\n\tKEY_REQKEY_DEFL_GROUP_KEYRING               = 0x6\n\tKEY_REQKEY_DEFL_NO_CHANGE                   = -0x1\n\tKEY_REQKEY_DEFL_PROCESS_KEYRING             = 0x2\n\tKEY_REQKEY_DEFL_REQUESTOR_KEYRING           = 0x7\n\tKEY_REQKEY_DEFL_SESSION_KEYRING             = 0x3\n\tKEY_REQKEY_DEFL_THREAD_KEYRING              = 0x1\n\tKEY_REQKEY_DEFL_USER_KEYRING                = 0x4\n\tKEY_REQKEY_DEFL_USER_SESSION_KEYRING        = 0x5\n\tKEY_SPEC_GROUP_KEYRING                      = -0x6\n\tKEY_SPEC_PROCESS_KEYRING                    = -0x2\n\tKEY_SPEC_REQKEY_AUTH_KEY                    = -0x7\n\tKEY_SPEC_REQUESTOR_KEYRING                  = -0x8\n\tKEY_SPEC_SESSION_KEYRING                    = -0x3\n\tKEY_SPEC_THREAD_KEYRING                     = -0x1\n\tKEY_SPEC_USER_KEYRING                       = -0x4\n\tKEY_SPEC_USER_SESSION_KEYRING               = -0x5\n\tLINUX_REBOOT_CMD_CAD_OFF                    = 0x0\n\tLINUX_REBOOT_CMD_CAD_ON                     = 0x89abcdef\n\tLINUX_REBOOT_CMD_HALT                       = 0xcdef0123\n\tLINUX_REBOOT_CMD_KEXEC                      = 0x45584543\n\tLINUX_REBOOT_CMD_POWER_OFF                  = 0x4321fedc\n\tLINUX_REBOOT_CMD_RESTART                    = 0x1234567\n\tLINUX_REBOOT_CMD_RESTART2                   = 0xa1b2c3d4\n\tLINUX_REBOOT_CMD_SW_SUSPEND                 = 0xd000fce2\n\tLINUX_REBOOT_MAGIC1                         = 0xfee1dead\n\tLINUX_REBOOT_MAGIC2                         = 0x28121969\n\tLOCK_EX                                     = 0x2\n\tLOCK_NB                                     = 0x4\n\tLOCK_SH                                     = 0x1\n\tLOCK_UN                                     = 0x8\n\tLOOP_CLR_FD                                 = 0x4c01\n\tLOOP_CTL_ADD                                = 0x4c80\n\tLOOP_CTL_GET_FREE                           = 0x4c82\n\tLOOP_CTL_REMOVE                             = 0x4c81\n\tLOOP_GET_STATUS                             = 0x4c03\n\tLOOP_GET_STATUS64                           = 0x4c05\n\tLOOP_SET_BLOCK_SIZE                         = 0x4c09\n\tLOOP_SET_CAPACITY                           = 0x4c07\n\tLOOP_SET_DIRECT_IO                          = 0x4c08\n\tLOOP_SET_FD                                 = 0x4c00\n\tLOOP_SET_STATUS                             = 0x4c02\n\tLOOP_SET_STATUS64                           = 0x4c04\n\tLOOP_SET_STATUS_CLEARABLE_FLAGS             = 0x4\n\tLOOP_SET_STATUS_SETTABLE_FLAGS              = 0xc\n\tLO_KEY_SIZE                                 = 0x20\n\tLO_NAME_SIZE                                = 0x40\n\tMADV_COLD                                   = 0x14\n\tMADV_DODUMP                                 = 0x11\n\tMADV_DOFORK                                 = 0xb\n\tMADV_DONTDUMP                               = 0x10\n\tMADV_DONTFORK                               = 0xa\n\tMADV_DONTNEED                               = 0x4\n\tMADV_FREE                                   = 0x8\n\tMADV_HUGEPAGE                               = 0xe\n\tMADV_HWPOISON                               = 0x64\n\tMADV_KEEPONFORK                             = 0x13\n\tMADV_MERGEABLE                              = 0xc\n\tMADV_NOHUGEPAGE                             = 0xf\n\tMADV_NORMAL                                 = 0x0\n\tMADV_PAGEOUT                                = 0x15\n\tMADV_RANDOM                                 = 0x1\n\tMADV_REMOVE                                 = 0x9\n\tMADV_SEQUENTIAL                             = 0x2\n\tMADV_UNMERGEABLE                            = 0xd\n\tMADV_WILLNEED                               = 0x3\n\tMADV_WIPEONFORK                             = 0x12\n\tMAP_FILE                                    = 0x0\n\tMAP_FIXED                                   = 0x10\n\tMAP_FIXED_NOREPLACE                         = 0x100000\n\tMAP_HUGE_MASK                               = 0x3f\n\tMAP_HUGE_SHIFT                              = 0x1a\n\tMAP_PRIVATE                                 = 0x2\n\tMAP_SHARED                                  = 0x1\n\tMAP_SHARED_VALIDATE                         = 0x3\n\tMAP_TYPE                                    = 0xf\n\tMCAST_BLOCK_SOURCE                          = 0x2b\n\tMCAST_EXCLUDE                               = 0x0\n\tMCAST_INCLUDE                               = 0x1\n\tMCAST_JOIN_GROUP                            = 0x2a\n\tMCAST_JOIN_SOURCE_GROUP                     = 0x2e\n\tMCAST_LEAVE_GROUP                           = 0x2d\n\tMCAST_LEAVE_SOURCE_GROUP                    = 0x2f\n\tMCAST_MSFILTER                              = 0x30\n\tMCAST_UNBLOCK_SOURCE                        = 0x2c\n\tMFD_ALLOW_SEALING                           = 0x2\n\tMFD_CLOEXEC                                 = 0x1\n\tMFD_HUGETLB                                 = 0x4\n\tMFD_HUGE_16GB                               = -0x78000000\n\tMFD_HUGE_16MB                               = 0x60000000\n\tMFD_HUGE_1GB                                = 0x78000000\n\tMFD_HUGE_1MB                                = 0x50000000\n\tMFD_HUGE_256MB                              = 0x70000000\n\tMFD_HUGE_2GB                                = 0x7c000000\n\tMFD_HUGE_2MB                                = 0x54000000\n\tMFD_HUGE_32MB                               = 0x64000000\n\tMFD_HUGE_512KB                              = 0x4c000000\n\tMFD_HUGE_512MB                              = 0x74000000\n\tMFD_HUGE_64KB                               = 0x40000000\n\tMFD_HUGE_8MB                                = 0x5c000000\n\tMFD_HUGE_MASK                               = 0x3f\n\tMFD_HUGE_SHIFT                              = 0x1a\n\tMINIX2_SUPER_MAGIC                          = 0x2468\n\tMINIX2_SUPER_MAGIC2                         = 0x2478\n\tMINIX3_SUPER_MAGIC                          = 0x4d5a\n\tMINIX_SUPER_MAGIC                           = 0x137f\n\tMINIX_SUPER_MAGIC2                          = 0x138f\n\tMNT_DETACH                                  = 0x2\n\tMNT_EXPIRE                                  = 0x4\n\tMNT_FORCE                                   = 0x1\n\tMODULE_INIT_IGNORE_MODVERSIONS              = 0x1\n\tMODULE_INIT_IGNORE_VERMAGIC                 = 0x2\n\tMSDOS_SUPER_MAGIC                           = 0x4d44\n\tMSG_BATCH                                   = 0x40000\n\tMSG_CMSG_CLOEXEC                            = 0x40000000\n\tMSG_CONFIRM                                 = 0x800\n\tMSG_CTRUNC                                  = 0x8\n\tMSG_DONTROUTE                               = 0x4\n\tMSG_DONTWAIT                                = 0x40\n\tMSG_EOR                                     = 0x80\n\tMSG_ERRQUEUE                                = 0x2000\n\tMSG_FASTOPEN                                = 0x20000000\n\tMSG_FIN                                     = 0x200\n\tMSG_MORE                                    = 0x8000\n\tMSG_NOSIGNAL                                = 0x4000\n\tMSG_OOB                                     = 0x1\n\tMSG_PEEK                                    = 0x2\n\tMSG_PROXY                                   = 0x10\n\tMSG_RST                                     = 0x1000\n\tMSG_SYN                                     = 0x400\n\tMSG_TRUNC                                   = 0x20\n\tMSG_TRYHARD                                 = 0x4\n\tMSG_WAITALL                                 = 0x100\n\tMSG_WAITFORONE                              = 0x10000\n\tMSG_ZEROCOPY                                = 0x4000000\n\tMS_ACTIVE                                   = 0x40000000\n\tMS_ASYNC                                    = 0x1\n\tMS_BIND                                     = 0x1000\n\tMS_BORN                                     = 0x20000000\n\tMS_DIRSYNC                                  = 0x80\n\tMS_INVALIDATE                               = 0x2\n\tMS_I_VERSION                                = 0x800000\n\tMS_KERNMOUNT                                = 0x400000\n\tMS_LAZYTIME                                 = 0x2000000\n\tMS_MANDLOCK                                 = 0x40\n\tMS_MGC_MSK                                  = 0xffff0000\n\tMS_MGC_VAL                                  = 0xc0ed0000\n\tMS_MOVE                                     = 0x2000\n\tMS_NOATIME                                  = 0x400\n\tMS_NODEV                                    = 0x4\n\tMS_NODIRATIME                               = 0x800\n\tMS_NOEXEC                                   = 0x8\n\tMS_NOREMOTELOCK                             = 0x8000000\n\tMS_NOSEC                                    = 0x10000000\n\tMS_NOSUID                                   = 0x2\n\tMS_NOUSER                                   = -0x80000000\n\tMS_POSIXACL                                 = 0x10000\n\tMS_PRIVATE                                  = 0x40000\n\tMS_RDONLY                                   = 0x1\n\tMS_REC                                      = 0x4000\n\tMS_RELATIME                                 = 0x200000\n\tMS_REMOUNT                                  = 0x20\n\tMS_RMT_MASK                                 = 0x2800051\n\tMS_SHARED                                   = 0x100000\n\tMS_SILENT                                   = 0x8000\n\tMS_SLAVE                                    = 0x80000\n\tMS_STRICTATIME                              = 0x1000000\n\tMS_SUBMOUNT                                 = 0x4000000\n\tMS_SYNC                                     = 0x4\n\tMS_SYNCHRONOUS                              = 0x10\n\tMS_UNBINDABLE                               = 0x20000\n\tMS_VERBOSE                                  = 0x8000\n\tMTD_INODE_FS_MAGIC                          = 0x11307854\n\tNAME_MAX                                    = 0xff\n\tNCP_SUPER_MAGIC                             = 0x564c\n\tNETLINK_ADD_MEMBERSHIP                      = 0x1\n\tNETLINK_AUDIT                               = 0x9\n\tNETLINK_BROADCAST_ERROR                     = 0x4\n\tNETLINK_CAP_ACK                             = 0xa\n\tNETLINK_CONNECTOR                           = 0xb\n\tNETLINK_CRYPTO                              = 0x15\n\tNETLINK_DNRTMSG                             = 0xe\n\tNETLINK_DROP_MEMBERSHIP                     = 0x2\n\tNETLINK_ECRYPTFS                            = 0x13\n\tNETLINK_EXT_ACK                             = 0xb\n\tNETLINK_FIB_LOOKUP                          = 0xa\n\tNETLINK_FIREWALL                            = 0x3\n\tNETLINK_GENERIC                             = 0x10\n\tNETLINK_GET_STRICT_CHK                      = 0xc\n\tNETLINK_INET_DIAG                           = 0x4\n\tNETLINK_IP6_FW                              = 0xd\n\tNETLINK_ISCSI                               = 0x8\n\tNETLINK_KOBJECT_UEVENT                      = 0xf\n\tNETLINK_LISTEN_ALL_NSID                     = 0x8\n\tNETLINK_LIST_MEMBERSHIPS                    = 0x9\n\tNETLINK_NETFILTER                           = 0xc\n\tNETLINK_NFLOG                               = 0x5\n\tNETLINK_NO_ENOBUFS                          = 0x5\n\tNETLINK_PKTINFO                             = 0x3\n\tNETLINK_RDMA                                = 0x14\n\tNETLINK_ROUTE                               = 0x0\n\tNETLINK_RX_RING                             = 0x6\n\tNETLINK_SCSITRANSPORT                       = 0x12\n\tNETLINK_SELINUX                             = 0x7\n\tNETLINK_SMC                                 = 0x16\n\tNETLINK_SOCK_DIAG                           = 0x4\n\tNETLINK_TX_RING                             = 0x7\n\tNETLINK_UNUSED                              = 0x1\n\tNETLINK_USERSOCK                            = 0x2\n\tNETLINK_XFRM                                = 0x6\n\tNETNSA_MAX                                  = 0x5\n\tNETNSA_NSID_NOT_ASSIGNED                    = -0x1\n\tNFNETLINK_V0                                = 0x0\n\tNFNLGRP_ACCT_QUOTA                          = 0x8\n\tNFNLGRP_CONNTRACK_DESTROY                   = 0x3\n\tNFNLGRP_CONNTRACK_EXP_DESTROY               = 0x6\n\tNFNLGRP_CONNTRACK_EXP_NEW                   = 0x4\n\tNFNLGRP_CONNTRACK_EXP_UPDATE                = 0x5\n\tNFNLGRP_CONNTRACK_NEW                       = 0x1\n\tNFNLGRP_CONNTRACK_UPDATE                    = 0x2\n\tNFNLGRP_MAX                                 = 0x9\n\tNFNLGRP_NFTABLES                            = 0x7\n\tNFNLGRP_NFTRACE                             = 0x9\n\tNFNLGRP_NONE                                = 0x0\n\tNFNL_BATCH_MAX                              = 0x1\n\tNFNL_MSG_BATCH_BEGIN                        = 0x10\n\tNFNL_MSG_BATCH_END                          = 0x11\n\tNFNL_NFA_NEST                               = 0x8000\n\tNFNL_SUBSYS_ACCT                            = 0x7\n\tNFNL_SUBSYS_COUNT                           = 0xc\n\tNFNL_SUBSYS_CTHELPER                        = 0x9\n\tNFNL_SUBSYS_CTNETLINK                       = 0x1\n\tNFNL_SUBSYS_CTNETLINK_EXP                   = 0x2\n\tNFNL_SUBSYS_CTNETLINK_TIMEOUT               = 0x8\n\tNFNL_SUBSYS_IPSET                           = 0x6\n\tNFNL_SUBSYS_NFTABLES                        = 0xa\n\tNFNL_SUBSYS_NFT_COMPAT                      = 0xb\n\tNFNL_SUBSYS_NONE                            = 0x0\n\tNFNL_SUBSYS_OSF                             = 0x5\n\tNFNL_SUBSYS_QUEUE                           = 0x3\n\tNFNL_SUBSYS_ULOG                            = 0x4\n\tNFS_SUPER_MAGIC                             = 0x6969\n\tNILFS_SUPER_MAGIC                           = 0x3434\n\tNL0                                         = 0x0\n\tNL1                                         = 0x100\n\tNLA_ALIGNTO                                 = 0x4\n\tNLA_F_NESTED                                = 0x8000\n\tNLA_F_NET_BYTEORDER                         = 0x4000\n\tNLA_HDRLEN                                  = 0x4\n\tNLMSG_ALIGNTO                               = 0x4\n\tNLMSG_DONE                                  = 0x3\n\tNLMSG_ERROR                                 = 0x2\n\tNLMSG_HDRLEN                                = 0x10\n\tNLMSG_MIN_TYPE                              = 0x10\n\tNLMSG_NOOP                                  = 0x1\n\tNLMSG_OVERRUN                               = 0x4\n\tNLM_F_ACK                                   = 0x4\n\tNLM_F_ACK_TLVS                              = 0x200\n\tNLM_F_APPEND                                = 0x800\n\tNLM_F_ATOMIC                                = 0x400\n\tNLM_F_CAPPED                                = 0x100\n\tNLM_F_CREATE                                = 0x400\n\tNLM_F_DUMP                                  = 0x300\n\tNLM_F_DUMP_FILTERED                         = 0x20\n\tNLM_F_DUMP_INTR                             = 0x10\n\tNLM_F_ECHO                                  = 0x8\n\tNLM_F_EXCL                                  = 0x200\n\tNLM_F_MATCH                                 = 0x200\n\tNLM_F_MULTI                                 = 0x2\n\tNLM_F_NONREC                                = 0x100\n\tNLM_F_REPLACE                               = 0x100\n\tNLM_F_REQUEST                               = 0x1\n\tNLM_F_ROOT                                  = 0x100\n\tNSFS_MAGIC                                  = 0x6e736673\n\tOCFS2_SUPER_MAGIC                           = 0x7461636f\n\tOCRNL                                       = 0x8\n\tOFDEL                                       = 0x80\n\tOFILL                                       = 0x40\n\tONLRET                                      = 0x20\n\tONOCR                                       = 0x10\n\tOPENPROM_SUPER_MAGIC                        = 0x9fa1\n\tOPOST                                       = 0x1\n\tOVERLAYFS_SUPER_MAGIC                       = 0x794c7630\n\tO_ACCMODE                                   = 0x3\n\tO_RDONLY                                    = 0x0\n\tO_RDWR                                      = 0x2\n\tO_WRONLY                                    = 0x1\n\tPACKET_ADD_MEMBERSHIP                       = 0x1\n\tPACKET_AUXDATA                              = 0x8\n\tPACKET_BROADCAST                            = 0x1\n\tPACKET_COPY_THRESH                          = 0x7\n\tPACKET_DROP_MEMBERSHIP                      = 0x2\n\tPACKET_FANOUT                               = 0x12\n\tPACKET_FANOUT_CBPF                          = 0x6\n\tPACKET_FANOUT_CPU                           = 0x2\n\tPACKET_FANOUT_DATA                          = 0x16\n\tPACKET_FANOUT_EBPF                          = 0x7\n\tPACKET_FANOUT_FLAG_DEFRAG                   = 0x8000\n\tPACKET_FANOUT_FLAG_ROLLOVER                 = 0x1000\n\tPACKET_FANOUT_FLAG_UNIQUEID                 = 0x2000\n\tPACKET_FANOUT_HASH                          = 0x0\n\tPACKET_FANOUT_LB                            = 0x1\n\tPACKET_FANOUT_QM                            = 0x5\n\tPACKET_FANOUT_RND                           = 0x4\n\tPACKET_FANOUT_ROLLOVER                      = 0x3\n\tPACKET_FASTROUTE                            = 0x6\n\tPACKET_HDRLEN                               = 0xb\n\tPACKET_HOST                                 = 0x0\n\tPACKET_IGNORE_OUTGOING                      = 0x17\n\tPACKET_KERNEL                               = 0x7\n\tPACKET_LOOPBACK                             = 0x5\n\tPACKET_LOSS                                 = 0xe\n\tPACKET_MR_ALLMULTI                          = 0x2\n\tPACKET_MR_MULTICAST                         = 0x0\n\tPACKET_MR_PROMISC                           = 0x1\n\tPACKET_MR_UNICAST                           = 0x3\n\tPACKET_MULTICAST                            = 0x2\n\tPACKET_ORIGDEV                              = 0x9\n\tPACKET_OTHERHOST                            = 0x3\n\tPACKET_OUTGOING                             = 0x4\n\tPACKET_QDISC_BYPASS                         = 0x14\n\tPACKET_RECV_OUTPUT                          = 0x3\n\tPACKET_RESERVE                              = 0xc\n\tPACKET_ROLLOVER_STATS                       = 0x15\n\tPACKET_RX_RING                              = 0x5\n\tPACKET_STATISTICS                           = 0x6\n\tPACKET_TIMESTAMP                            = 0x11\n\tPACKET_TX_HAS_OFF                           = 0x13\n\tPACKET_TX_RING                              = 0xd\n\tPACKET_TX_TIMESTAMP                         = 0x10\n\tPACKET_USER                                 = 0x6\n\tPACKET_VERSION                              = 0xa\n\tPACKET_VNET_HDR                             = 0xf\n\tPARITY_CRC16_PR0                            = 0x2\n\tPARITY_CRC16_PR0_CCITT                      = 0x4\n\tPARITY_CRC16_PR1                            = 0x3\n\tPARITY_CRC16_PR1_CCITT                      = 0x5\n\tPARITY_CRC32_PR0_CCITT                      = 0x6\n\tPARITY_CRC32_PR1_CCITT                      = 0x7\n\tPARITY_DEFAULT                              = 0x0\n\tPARITY_NONE                                 = 0x1\n\tPARMRK                                      = 0x8\n\tPIPEFS_MAGIC                                = 0x50495045\n\tPPC_CMM_MAGIC                               = 0xc7571590\n\tPPPIOCGNPMODE                               = 0xc008744c\n\tPPPIOCNEWUNIT                               = 0xc004743e\n\tPRIO_PGRP                                   = 0x1\n\tPRIO_PROCESS                                = 0x0\n\tPRIO_USER                                   = 0x2\n\tPROC_SUPER_MAGIC                            = 0x9fa0\n\tPROT_EXEC                                   = 0x4\n\tPROT_GROWSDOWN                              = 0x1000000\n\tPROT_GROWSUP                                = 0x2000000\n\tPROT_NONE                                   = 0x0\n\tPROT_READ                                   = 0x1\n\tPROT_WRITE                                  = 0x2\n\tPR_CAPBSET_DROP                             = 0x18\n\tPR_CAPBSET_READ                             = 0x17\n\tPR_CAP_AMBIENT                              = 0x2f\n\tPR_CAP_AMBIENT_CLEAR_ALL                    = 0x4\n\tPR_CAP_AMBIENT_IS_SET                       = 0x1\n\tPR_CAP_AMBIENT_LOWER                        = 0x3\n\tPR_CAP_AMBIENT_RAISE                        = 0x2\n\tPR_ENDIAN_BIG                               = 0x0\n\tPR_ENDIAN_LITTLE                            = 0x1\n\tPR_ENDIAN_PPC_LITTLE                        = 0x2\n\tPR_FPEMU_NOPRINT                            = 0x1\n\tPR_FPEMU_SIGFPE                             = 0x2\n\tPR_FP_EXC_ASYNC                             = 0x2\n\tPR_FP_EXC_DISABLED                          = 0x0\n\tPR_FP_EXC_DIV                               = 0x10000\n\tPR_FP_EXC_INV                               = 0x100000\n\tPR_FP_EXC_NONRECOV                          = 0x1\n\tPR_FP_EXC_OVF                               = 0x20000\n\tPR_FP_EXC_PRECISE                           = 0x3\n\tPR_FP_EXC_RES                               = 0x80000\n\tPR_FP_EXC_SW_ENABLE                         = 0x80\n\tPR_FP_EXC_UND                               = 0x40000\n\tPR_FP_MODE_FR                               = 0x1\n\tPR_FP_MODE_FRE                              = 0x2\n\tPR_GET_CHILD_SUBREAPER                      = 0x25\n\tPR_GET_DUMPABLE                             = 0x3\n\tPR_GET_ENDIAN                               = 0x13\n\tPR_GET_FPEMU                                = 0x9\n\tPR_GET_FPEXC                                = 0xb\n\tPR_GET_FP_MODE                              = 0x2e\n\tPR_GET_IO_FLUSHER                           = 0x3a\n\tPR_GET_KEEPCAPS                             = 0x7\n\tPR_GET_NAME                                 = 0x10\n\tPR_GET_NO_NEW_PRIVS                         = 0x27\n\tPR_GET_PDEATHSIG                            = 0x2\n\tPR_GET_SECCOMP                              = 0x15\n\tPR_GET_SECUREBITS                           = 0x1b\n\tPR_GET_SPECULATION_CTRL                     = 0x34\n\tPR_GET_TAGGED_ADDR_CTRL                     = 0x38\n\tPR_GET_THP_DISABLE                          = 0x2a\n\tPR_GET_TID_ADDRESS                          = 0x28\n\tPR_GET_TIMERSLACK                           = 0x1e\n\tPR_GET_TIMING                               = 0xd\n\tPR_GET_TSC                                  = 0x19\n\tPR_GET_UNALIGN                              = 0x5\n\tPR_MCE_KILL                                 = 0x21\n\tPR_MCE_KILL_CLEAR                           = 0x0\n\tPR_MCE_KILL_DEFAULT                         = 0x2\n\tPR_MCE_KILL_EARLY                           = 0x1\n\tPR_MCE_KILL_GET                             = 0x22\n\tPR_MCE_KILL_LATE                            = 0x0\n\tPR_MCE_KILL_SET                             = 0x1\n\tPR_MPX_DISABLE_MANAGEMENT                   = 0x2c\n\tPR_MPX_ENABLE_MANAGEMENT                    = 0x2b\n\tPR_PAC_APDAKEY                              = 0x4\n\tPR_PAC_APDBKEY                              = 0x8\n\tPR_PAC_APGAKEY                              = 0x10\n\tPR_PAC_APIAKEY                              = 0x1\n\tPR_PAC_APIBKEY                              = 0x2\n\tPR_PAC_RESET_KEYS                           = 0x36\n\tPR_SET_CHILD_SUBREAPER                      = 0x24\n\tPR_SET_DUMPABLE                             = 0x4\n\tPR_SET_ENDIAN                               = 0x14\n\tPR_SET_FPEMU                                = 0xa\n\tPR_SET_FPEXC                                = 0xc\n\tPR_SET_FP_MODE                              = 0x2d\n\tPR_SET_IO_FLUSHER                           = 0x39\n\tPR_SET_KEEPCAPS                             = 0x8\n\tPR_SET_MM                                   = 0x23\n\tPR_SET_MM_ARG_END                           = 0x9\n\tPR_SET_MM_ARG_START                         = 0x8\n\tPR_SET_MM_AUXV                              = 0xc\n\tPR_SET_MM_BRK                               = 0x7\n\tPR_SET_MM_END_CODE                          = 0x2\n\tPR_SET_MM_END_DATA                          = 0x4\n\tPR_SET_MM_ENV_END                           = 0xb\n\tPR_SET_MM_ENV_START                         = 0xa\n\tPR_SET_MM_EXE_FILE                          = 0xd\n\tPR_SET_MM_MAP                               = 0xe\n\tPR_SET_MM_MAP_SIZE                          = 0xf\n\tPR_SET_MM_START_BRK                         = 0x6\n\tPR_SET_MM_START_CODE                        = 0x1\n\tPR_SET_MM_START_DATA                        = 0x3\n\tPR_SET_MM_START_STACK                       = 0x5\n\tPR_SET_NAME                                 = 0xf\n\tPR_SET_NO_NEW_PRIVS                         = 0x26\n\tPR_SET_PDEATHSIG                            = 0x1\n\tPR_SET_PTRACER                              = 0x59616d61\n\tPR_SET_SECCOMP                              = 0x16\n\tPR_SET_SECUREBITS                           = 0x1c\n\tPR_SET_SPECULATION_CTRL                     = 0x35\n\tPR_SET_TAGGED_ADDR_CTRL                     = 0x37\n\tPR_SET_THP_DISABLE                          = 0x29\n\tPR_SET_TIMERSLACK                           = 0x1d\n\tPR_SET_TIMING                               = 0xe\n\tPR_SET_TSC                                  = 0x1a\n\tPR_SET_UNALIGN                              = 0x6\n\tPR_SPEC_DISABLE                             = 0x4\n\tPR_SPEC_DISABLE_NOEXEC                      = 0x10\n\tPR_SPEC_ENABLE                              = 0x2\n\tPR_SPEC_FORCE_DISABLE                       = 0x8\n\tPR_SPEC_INDIRECT_BRANCH                     = 0x1\n\tPR_SPEC_NOT_AFFECTED                        = 0x0\n\tPR_SPEC_PRCTL                               = 0x1\n\tPR_SPEC_STORE_BYPASS                        = 0x0\n\tPR_SVE_GET_VL                               = 0x33\n\tPR_SVE_SET_VL                               = 0x32\n\tPR_SVE_SET_VL_ONEXEC                        = 0x40000\n\tPR_SVE_VL_INHERIT                           = 0x20000\n\tPR_SVE_VL_LEN_MASK                          = 0xffff\n\tPR_TAGGED_ADDR_ENABLE                       = 0x1\n\tPR_TASK_PERF_EVENTS_DISABLE                 = 0x1f\n\tPR_TASK_PERF_EVENTS_ENABLE                  = 0x20\n\tPR_TIMING_STATISTICAL                       = 0x0\n\tPR_TIMING_TIMESTAMP                         = 0x1\n\tPR_TSC_ENABLE                               = 0x1\n\tPR_TSC_SIGSEGV                              = 0x2\n\tPR_UNALIGN_NOPRINT                          = 0x1\n\tPR_UNALIGN_SIGBUS                           = 0x2\n\tPSTOREFS_MAGIC                              = 0x6165676c\n\tPTRACE_ATTACH                               = 0x10\n\tPTRACE_CONT                                 = 0x7\n\tPTRACE_DETACH                               = 0x11\n\tPTRACE_EVENTMSG_SYSCALL_ENTRY               = 0x1\n\tPTRACE_EVENTMSG_SYSCALL_EXIT                = 0x2\n\tPTRACE_EVENT_CLONE                          = 0x3\n\tPTRACE_EVENT_EXEC                           = 0x4\n\tPTRACE_EVENT_EXIT                           = 0x6\n\tPTRACE_EVENT_FORK                           = 0x1\n\tPTRACE_EVENT_SECCOMP                        = 0x7\n\tPTRACE_EVENT_STOP                           = 0x80\n\tPTRACE_EVENT_VFORK                          = 0x2\n\tPTRACE_EVENT_VFORK_DONE                     = 0x5\n\tPTRACE_GETEVENTMSG                          = 0x4201\n\tPTRACE_GETREGS                              = 0xc\n\tPTRACE_GETREGSET                            = 0x4204\n\tPTRACE_GETSIGINFO                           = 0x4202\n\tPTRACE_GETSIGMASK                           = 0x420a\n\tPTRACE_GET_SYSCALL_INFO                     = 0x420e\n\tPTRACE_INTERRUPT                            = 0x4207\n\tPTRACE_KILL                                 = 0x8\n\tPTRACE_LISTEN                               = 0x4208\n\tPTRACE_O_EXITKILL                           = 0x100000\n\tPTRACE_O_MASK                               = 0x3000ff\n\tPTRACE_O_SUSPEND_SECCOMP                    = 0x200000\n\tPTRACE_O_TRACECLONE                         = 0x8\n\tPTRACE_O_TRACEEXEC                          = 0x10\n\tPTRACE_O_TRACEEXIT                          = 0x40\n\tPTRACE_O_TRACEFORK                          = 0x2\n\tPTRACE_O_TRACESECCOMP                       = 0x80\n\tPTRACE_O_TRACESYSGOOD                       = 0x1\n\tPTRACE_O_TRACEVFORK                         = 0x4\n\tPTRACE_O_TRACEVFORKDONE                     = 0x20\n\tPTRACE_PEEKDATA                             = 0x2\n\tPTRACE_PEEKSIGINFO                          = 0x4209\n\tPTRACE_PEEKSIGINFO_SHARED                   = 0x1\n\tPTRACE_PEEKTEXT                             = 0x1\n\tPTRACE_PEEKUSR                              = 0x3\n\tPTRACE_POKEDATA                             = 0x5\n\tPTRACE_POKETEXT                             = 0x4\n\tPTRACE_POKEUSR                              = 0x6\n\tPTRACE_SECCOMP_GET_FILTER                   = 0x420c\n\tPTRACE_SECCOMP_GET_METADATA                 = 0x420d\n\tPTRACE_SEIZE                                = 0x4206\n\tPTRACE_SETOPTIONS                           = 0x4200\n\tPTRACE_SETREGS                              = 0xd\n\tPTRACE_SETREGSET                            = 0x4205\n\tPTRACE_SETSIGINFO                           = 0x4203\n\tPTRACE_SETSIGMASK                           = 0x420b\n\tPTRACE_SINGLESTEP                           = 0x9\n\tPTRACE_SYSCALL                              = 0x18\n\tPTRACE_SYSCALL_INFO_ENTRY                   = 0x1\n\tPTRACE_SYSCALL_INFO_EXIT                    = 0x2\n\tPTRACE_SYSCALL_INFO_NONE                    = 0x0\n\tPTRACE_SYSCALL_INFO_SECCOMP                 = 0x3\n\tPTRACE_TRACEME                              = 0x0\n\tQNX4_SUPER_MAGIC                            = 0x2f\n\tQNX6_SUPER_MAGIC                            = 0x68191122\n\tRAMFS_MAGIC                                 = 0x858458f6\n\tRDTGROUP_SUPER_MAGIC                        = 0x7655821\n\tREISERFS_SUPER_MAGIC                        = 0x52654973\n\tRENAME_EXCHANGE                             = 0x2\n\tRENAME_NOREPLACE                            = 0x1\n\tRENAME_WHITEOUT                             = 0x4\n\tRLIMIT_CORE                                 = 0x4\n\tRLIMIT_CPU                                  = 0x0\n\tRLIMIT_DATA                                 = 0x2\n\tRLIMIT_FSIZE                                = 0x1\n\tRLIMIT_LOCKS                                = 0xa\n\tRLIMIT_MSGQUEUE                             = 0xc\n\tRLIMIT_NICE                                 = 0xd\n\tRLIMIT_RTPRIO                               = 0xe\n\tRLIMIT_RTTIME                               = 0xf\n\tRLIMIT_SIGPENDING                           = 0xb\n\tRLIMIT_STACK                                = 0x3\n\tRLIM_INFINITY                               = 0xffffffffffffffff\n\tRTAX_ADVMSS                                 = 0x8\n\tRTAX_CC_ALGO                                = 0x10\n\tRTAX_CWND                                   = 0x7\n\tRTAX_FASTOPEN_NO_COOKIE                     = 0x11\n\tRTAX_FEATURES                               = 0xc\n\tRTAX_FEATURE_ALLFRAG                        = 0x8\n\tRTAX_FEATURE_ECN                            = 0x1\n\tRTAX_FEATURE_MASK                           = 0xf\n\tRTAX_FEATURE_SACK                           = 0x2\n\tRTAX_FEATURE_TIMESTAMP                      = 0x4\n\tRTAX_HOPLIMIT                               = 0xa\n\tRTAX_INITCWND                               = 0xb\n\tRTAX_INITRWND                               = 0xe\n\tRTAX_LOCK                                   = 0x1\n\tRTAX_MAX                                    = 0x11\n\tRTAX_MTU                                    = 0x2\n\tRTAX_QUICKACK                               = 0xf\n\tRTAX_REORDERING                             = 0x9\n\tRTAX_RTO_MIN                                = 0xd\n\tRTAX_RTT                                    = 0x4\n\tRTAX_RTTVAR                                 = 0x5\n\tRTAX_SSTHRESH                               = 0x6\n\tRTAX_UNSPEC                                 = 0x0\n\tRTAX_WINDOW                                 = 0x3\n\tRTA_ALIGNTO                                 = 0x4\n\tRTA_MAX                                     = 0x1e\n\tRTCF_DIRECTSRC                              = 0x4000000\n\tRTCF_DOREDIRECT                             = 0x1000000\n\tRTCF_LOG                                    = 0x2000000\n\tRTCF_MASQ                                   = 0x400000\n\tRTCF_NAT                                    = 0x800000\n\tRTCF_VALVE                                  = 0x200000\n\tRTC_AF                                      = 0x20\n\tRTC_IRQF                                    = 0x80\n\tRTC_MAX_FREQ                                = 0x2000\n\tRTC_PF                                      = 0x40\n\tRTC_UF                                      = 0x10\n\tRTF_ADDRCLASSMASK                           = 0xf8000000\n\tRTF_ADDRCONF                                = 0x40000\n\tRTF_ALLONLINK                               = 0x20000\n\tRTF_BROADCAST                               = 0x10000000\n\tRTF_CACHE                                   = 0x1000000\n\tRTF_DEFAULT                                 = 0x10000\n\tRTF_DYNAMIC                                 = 0x10\n\tRTF_FLOW                                    = 0x2000000\n\tRTF_GATEWAY                                 = 0x2\n\tRTF_HOST                                    = 0x4\n\tRTF_INTERFACE                               = 0x40000000\n\tRTF_IRTT                                    = 0x100\n\tRTF_LINKRT                                  = 0x100000\n\tRTF_LOCAL                                   = 0x80000000\n\tRTF_MODIFIED                                = 0x20\n\tRTF_MSS                                     = 0x40\n\tRTF_MTU                                     = 0x40\n\tRTF_MULTICAST                               = 0x20000000\n\tRTF_NAT                                     = 0x8000000\n\tRTF_NOFORWARD                               = 0x1000\n\tRTF_NONEXTHOP                               = 0x200000\n\tRTF_NOPMTUDISC                              = 0x4000\n\tRTF_POLICY                                  = 0x4000000\n\tRTF_REINSTATE                               = 0x8\n\tRTF_REJECT                                  = 0x200\n\tRTF_STATIC                                  = 0x400\n\tRTF_THROW                                   = 0x2000\n\tRTF_UP                                      = 0x1\n\tRTF_WINDOW                                  = 0x80\n\tRTF_XRESOLVE                                = 0x800\n\tRTMGRP_DECnet_IFADDR                        = 0x1000\n\tRTMGRP_DECnet_ROUTE                         = 0x4000\n\tRTMGRP_IPV4_IFADDR                          = 0x10\n\tRTMGRP_IPV4_MROUTE                          = 0x20\n\tRTMGRP_IPV4_ROUTE                           = 0x40\n\tRTMGRP_IPV4_RULE                            = 0x80\n\tRTMGRP_IPV6_IFADDR                          = 0x100\n\tRTMGRP_IPV6_IFINFO                          = 0x800\n\tRTMGRP_IPV6_MROUTE                          = 0x200\n\tRTMGRP_IPV6_PREFIX                          = 0x20000\n\tRTMGRP_IPV6_ROUTE                           = 0x400\n\tRTMGRP_LINK                                 = 0x1\n\tRTMGRP_NEIGH                                = 0x4\n\tRTMGRP_NOTIFY                               = 0x2\n\tRTMGRP_TC                                   = 0x8\n\tRTM_BASE                                    = 0x10\n\tRTM_DELACTION                               = 0x31\n\tRTM_DELADDR                                 = 0x15\n\tRTM_DELADDRLABEL                            = 0x49\n\tRTM_DELCHAIN                                = 0x65\n\tRTM_DELLINK                                 = 0x11\n\tRTM_DELLINKPROP                             = 0x6d\n\tRTM_DELMDB                                  = 0x55\n\tRTM_DELNEIGH                                = 0x1d\n\tRTM_DELNETCONF                              = 0x51\n\tRTM_DELNEXTHOP                              = 0x69\n\tRTM_DELNSID                                 = 0x59\n\tRTM_DELQDISC                                = 0x25\n\tRTM_DELROUTE                                = 0x19\n\tRTM_DELRULE                                 = 0x21\n\tRTM_DELTCLASS                               = 0x29\n\tRTM_DELTFILTER                              = 0x2d\n\tRTM_DELVLAN                                 = 0x71\n\tRTM_F_CLONED                                = 0x200\n\tRTM_F_EQUALIZE                              = 0x400\n\tRTM_F_FIB_MATCH                             = 0x2000\n\tRTM_F_LOOKUP_TABLE                          = 0x1000\n\tRTM_F_NOTIFY                                = 0x100\n\tRTM_F_OFFLOAD                               = 0x4000\n\tRTM_F_PREFIX                                = 0x800\n\tRTM_F_TRAP                                  = 0x8000\n\tRTM_GETACTION                               = 0x32\n\tRTM_GETADDR                                 = 0x16\n\tRTM_GETADDRLABEL                            = 0x4a\n\tRTM_GETANYCAST                              = 0x3e\n\tRTM_GETCHAIN                                = 0x66\n\tRTM_GETDCB                                  = 0x4e\n\tRTM_GETLINK                                 = 0x12\n\tRTM_GETLINKPROP                             = 0x6e\n\tRTM_GETMDB                                  = 0x56\n\tRTM_GETMULTICAST                            = 0x3a\n\tRTM_GETNEIGH                                = 0x1e\n\tRTM_GETNEIGHTBL                             = 0x42\n\tRTM_GETNETCONF                              = 0x52\n\tRTM_GETNEXTHOP                              = 0x6a\n\tRTM_GETNSID                                 = 0x5a\n\tRTM_GETQDISC                                = 0x26\n\tRTM_GETROUTE                                = 0x1a\n\tRTM_GETRULE                                 = 0x22\n\tRTM_GETSTATS                                = 0x5e\n\tRTM_GETTCLASS                               = 0x2a\n\tRTM_GETTFILTER                              = 0x2e\n\tRTM_GETVLAN                                 = 0x72\n\tRTM_MAX                                     = 0x73\n\tRTM_NEWACTION                               = 0x30\n\tRTM_NEWADDR                                 = 0x14\n\tRTM_NEWADDRLABEL                            = 0x48\n\tRTM_NEWCACHEREPORT                          = 0x60\n\tRTM_NEWCHAIN                                = 0x64\n\tRTM_NEWLINK                                 = 0x10\n\tRTM_NEWLINKPROP                             = 0x6c\n\tRTM_NEWMDB                                  = 0x54\n\tRTM_NEWNDUSEROPT                            = 0x44\n\tRTM_NEWNEIGH                                = 0x1c\n\tRTM_NEWNEIGHTBL                             = 0x40\n\tRTM_NEWNETCONF                              = 0x50\n\tRTM_NEWNEXTHOP                              = 0x68\n\tRTM_NEWNSID                                 = 0x58\n\tRTM_NEWNVLAN                                = 0x70\n\tRTM_NEWPREFIX                               = 0x34\n\tRTM_NEWQDISC                                = 0x24\n\tRTM_NEWROUTE                                = 0x18\n\tRTM_NEWRULE                                 = 0x20\n\tRTM_NEWSTATS                                = 0x5c\n\tRTM_NEWTCLASS                               = 0x28\n\tRTM_NEWTFILTER                              = 0x2c\n\tRTM_NR_FAMILIES                             = 0x19\n\tRTM_NR_MSGTYPES                             = 0x64\n\tRTM_SETDCB                                  = 0x4f\n\tRTM_SETLINK                                 = 0x13\n\tRTM_SETNEIGHTBL                             = 0x43\n\tRTNH_ALIGNTO                                = 0x4\n\tRTNH_COMPARE_MASK                           = 0x19\n\tRTNH_F_DEAD                                 = 0x1\n\tRTNH_F_LINKDOWN                             = 0x10\n\tRTNH_F_OFFLOAD                              = 0x8\n\tRTNH_F_ONLINK                               = 0x4\n\tRTNH_F_PERVASIVE                            = 0x2\n\tRTNH_F_UNRESOLVED                           = 0x20\n\tRTN_MAX                                     = 0xb\n\tRTPROT_BABEL                                = 0x2a\n\tRTPROT_BGP                                  = 0xba\n\tRTPROT_BIRD                                 = 0xc\n\tRTPROT_BOOT                                 = 0x3\n\tRTPROT_DHCP                                 = 0x10\n\tRTPROT_DNROUTED                             = 0xd\n\tRTPROT_EIGRP                                = 0xc0\n\tRTPROT_GATED                                = 0x8\n\tRTPROT_ISIS                                 = 0xbb\n\tRTPROT_KERNEL                               = 0x2\n\tRTPROT_MROUTED                              = 0x11\n\tRTPROT_MRT                                  = 0xa\n\tRTPROT_NTK                                  = 0xf\n\tRTPROT_OSPF                                 = 0xbc\n\tRTPROT_RA                                   = 0x9\n\tRTPROT_REDIRECT                             = 0x1\n\tRTPROT_RIP                                  = 0xbd\n\tRTPROT_STATIC                               = 0x4\n\tRTPROT_UNSPEC                               = 0x0\n\tRTPROT_XORP                                 = 0xe\n\tRTPROT_ZEBRA                                = 0xb\n\tRT_CLASS_DEFAULT                            = 0xfd\n\tRT_CLASS_LOCAL                              = 0xff\n\tRT_CLASS_MAIN                               = 0xfe\n\tRT_CLASS_MAX                                = 0xff\n\tRT_CLASS_UNSPEC                             = 0x0\n\tRUSAGE_CHILDREN                             = -0x1\n\tRUSAGE_SELF                                 = 0x0\n\tRUSAGE_THREAD                               = 0x1\n\tRWF_APPEND                                  = 0x10\n\tRWF_DSYNC                                   = 0x2\n\tRWF_HIPRI                                   = 0x1\n\tRWF_NOWAIT                                  = 0x8\n\tRWF_SUPPORTED                               = 0x1f\n\tRWF_SYNC                                    = 0x4\n\tRWF_WRITE_LIFE_NOT_SET                      = 0x0\n\tSCM_CREDENTIALS                             = 0x2\n\tSCM_RIGHTS                                  = 0x1\n\tSCM_TIMESTAMP                               = 0x1d\n\tSC_LOG_FLUSH                                = 0x100000\n\tSECCOMP_MODE_DISABLED                       = 0x0\n\tSECCOMP_MODE_FILTER                         = 0x2\n\tSECCOMP_MODE_STRICT                         = 0x1\n\tSECURITYFS_MAGIC                            = 0x73636673\n\tSELINUX_MAGIC                               = 0xf97cff8c\n\tSHUT_RD                                     = 0x0\n\tSHUT_RDWR                                   = 0x2\n\tSHUT_WR                                     = 0x1\n\tSIOCADDDLCI                                 = 0x8980\n\tSIOCADDMULTI                                = 0x8931\n\tSIOCADDRT                                   = 0x890b\n\tSIOCBONDCHANGEACTIVE                        = 0x8995\n\tSIOCBONDENSLAVE                             = 0x8990\n\tSIOCBONDINFOQUERY                           = 0x8994\n\tSIOCBONDRELEASE                             = 0x8991\n\tSIOCBONDSETHWADDR                           = 0x8992\n\tSIOCBONDSLAVEINFOQUERY                      = 0x8993\n\tSIOCBRADDBR                                 = 0x89a0\n\tSIOCBRADDIF                                 = 0x89a2\n\tSIOCBRDELBR                                 = 0x89a1\n\tSIOCBRDELIF                                 = 0x89a3\n\tSIOCDARP                                    = 0x8953\n\tSIOCDELDLCI                                 = 0x8981\n\tSIOCDELMULTI                                = 0x8932\n\tSIOCDELRT                                   = 0x890c\n\tSIOCDEVPRIVATE                              = 0x89f0\n\tSIOCDIFADDR                                 = 0x8936\n\tSIOCDRARP                                   = 0x8960\n\tSIOCETHTOOL                                 = 0x8946\n\tSIOCGARP                                    = 0x8954\n\tSIOCGETLINKNAME                             = 0x89e0\n\tSIOCGETNODEID                               = 0x89e1\n\tSIOCGHWTSTAMP                               = 0x89b1\n\tSIOCGIFADDR                                 = 0x8915\n\tSIOCGIFBR                                   = 0x8940\n\tSIOCGIFBRDADDR                              = 0x8919\n\tSIOCGIFCONF                                 = 0x8912\n\tSIOCGIFCOUNT                                = 0x8938\n\tSIOCGIFDSTADDR                              = 0x8917\n\tSIOCGIFENCAP                                = 0x8925\n\tSIOCGIFFLAGS                                = 0x8913\n\tSIOCGIFHWADDR                               = 0x8927\n\tSIOCGIFINDEX                                = 0x8933\n\tSIOCGIFMAP                                  = 0x8970\n\tSIOCGIFMEM                                  = 0x891f\n\tSIOCGIFMETRIC                               = 0x891d\n\tSIOCGIFMTU                                  = 0x8921\n\tSIOCGIFNAME                                 = 0x8910\n\tSIOCGIFNETMASK                              = 0x891b\n\tSIOCGIFPFLAGS                               = 0x8935\n\tSIOCGIFSLAVE                                = 0x8929\n\tSIOCGIFTXQLEN                               = 0x8942\n\tSIOCGIFVLAN                                 = 0x8982\n\tSIOCGMIIPHY                                 = 0x8947\n\tSIOCGMIIREG                                 = 0x8948\n\tSIOCGPPPCSTATS                              = 0x89f2\n\tSIOCGPPPSTATS                               = 0x89f0\n\tSIOCGPPPVER                                 = 0x89f1\n\tSIOCGRARP                                   = 0x8961\n\tSIOCGSKNS                                   = 0x894c\n\tSIOCGSTAMP                                  = 0x8906\n\tSIOCGSTAMPNS                                = 0x8907\n\tSIOCGSTAMPNS_OLD                            = 0x8907\n\tSIOCGSTAMP_OLD                              = 0x8906\n\tSIOCOUTQNSD                                 = 0x894b\n\tSIOCPROTOPRIVATE                            = 0x89e0\n\tSIOCRTMSG                                   = 0x890d\n\tSIOCSARP                                    = 0x8955\n\tSIOCSHWTSTAMP                               = 0x89b0\n\tSIOCSIFADDR                                 = 0x8916\n\tSIOCSIFBR                                   = 0x8941\n\tSIOCSIFBRDADDR                              = 0x891a\n\tSIOCSIFDSTADDR                              = 0x8918\n\tSIOCSIFENCAP                                = 0x8926\n\tSIOCSIFFLAGS                                = 0x8914\n\tSIOCSIFHWADDR                               = 0x8924\n\tSIOCSIFHWBROADCAST                          = 0x8937\n\tSIOCSIFLINK                                 = 0x8911\n\tSIOCSIFMAP                                  = 0x8971\n\tSIOCSIFMEM                                  = 0x8920\n\tSIOCSIFMETRIC                               = 0x891e\n\tSIOCSIFMTU                                  = 0x8922\n\tSIOCSIFNAME                                 = 0x8923\n\tSIOCSIFNETMASK                              = 0x891c\n\tSIOCSIFPFLAGS                               = 0x8934\n\tSIOCSIFSLAVE                                = 0x8930\n\tSIOCSIFTXQLEN                               = 0x8943\n\tSIOCSIFVLAN                                 = 0x8983\n\tSIOCSMIIREG                                 = 0x8949\n\tSIOCSRARP                                   = 0x8962\n\tSIOCWANDEV                                  = 0x894a\n\tSMACK_MAGIC                                 = 0x43415d53\n\tSMART_AUTOSAVE                              = 0xd2\n\tSMART_AUTO_OFFLINE                          = 0xdb\n\tSMART_DISABLE                               = 0xd9\n\tSMART_ENABLE                                = 0xd8\n\tSMART_HCYL_PASS                             = 0xc2\n\tSMART_IMMEDIATE_OFFLINE                     = 0xd4\n\tSMART_LCYL_PASS                             = 0x4f\n\tSMART_READ_LOG_SECTOR                       = 0xd5\n\tSMART_READ_THRESHOLDS                       = 0xd1\n\tSMART_READ_VALUES                           = 0xd0\n\tSMART_SAVE                                  = 0xd3\n\tSMART_STATUS                                = 0xda\n\tSMART_WRITE_LOG_SECTOR                      = 0xd6\n\tSMART_WRITE_THRESHOLDS                      = 0xd7\n\tSMB_SUPER_MAGIC                             = 0x517b\n\tSOCKFS_MAGIC                                = 0x534f434b\n\tSOCK_DCCP                                   = 0x6\n\tSOCK_IOC_TYPE                               = 0x89\n\tSOCK_PACKET                                 = 0xa\n\tSOCK_RAW                                    = 0x3\n\tSOCK_RDM                                    = 0x4\n\tSOCK_SEQPACKET                              = 0x5\n\tSOL_AAL                                     = 0x109\n\tSOL_ALG                                     = 0x117\n\tSOL_ATM                                     = 0x108\n\tSOL_CAIF                                    = 0x116\n\tSOL_CAN_BASE                                = 0x64\n\tSOL_CAN_RAW                                 = 0x65\n\tSOL_DCCP                                    = 0x10d\n\tSOL_DECNET                                  = 0x105\n\tSOL_ICMPV6                                  = 0x3a\n\tSOL_IP                                      = 0x0\n\tSOL_IPV6                                    = 0x29\n\tSOL_IRDA                                    = 0x10a\n\tSOL_IUCV                                    = 0x115\n\tSOL_KCM                                     = 0x119\n\tSOL_LLC                                     = 0x10c\n\tSOL_NETBEUI                                 = 0x10b\n\tSOL_NETLINK                                 = 0x10e\n\tSOL_NFC                                     = 0x118\n\tSOL_PACKET                                  = 0x107\n\tSOL_PNPIPE                                  = 0x113\n\tSOL_PPPOL2TP                                = 0x111\n\tSOL_RAW                                     = 0xff\n\tSOL_RDS                                     = 0x114\n\tSOL_RXRPC                                   = 0x110\n\tSOL_TCP                                     = 0x6\n\tSOL_TIPC                                    = 0x10f\n\tSOL_TLS                                     = 0x11a\n\tSOL_X25                                     = 0x106\n\tSOL_XDP                                     = 0x11b\n\tSOMAXCONN                                   = 0x1000\n\tSO_ATTACH_FILTER                            = 0x1a\n\tSO_DEBUG                                    = 0x1\n\tSO_DETACH_BPF                               = 0x1b\n\tSO_DETACH_FILTER                            = 0x1b\n\tSO_EE_CODE_TXTIME_INVALID_PARAM             = 0x1\n\tSO_EE_CODE_TXTIME_MISSED                    = 0x2\n\tSO_EE_CODE_ZEROCOPY_COPIED                  = 0x1\n\tSO_EE_ORIGIN_ICMP                           = 0x2\n\tSO_EE_ORIGIN_ICMP6                          = 0x3\n\tSO_EE_ORIGIN_LOCAL                          = 0x1\n\tSO_EE_ORIGIN_NONE                           = 0x0\n\tSO_EE_ORIGIN_TIMESTAMPING                   = 0x4\n\tSO_EE_ORIGIN_TXSTATUS                       = 0x4\n\tSO_EE_ORIGIN_TXTIME                         = 0x6\n\tSO_EE_ORIGIN_ZEROCOPY                       = 0x5\n\tSO_GET_FILTER                               = 0x1a\n\tSO_NO_CHECK                                 = 0xb\n\tSO_PEERNAME                                 = 0x1c\n\tSO_PRIORITY                                 = 0xc\n\tSO_TIMESTAMP                                = 0x1d\n\tSO_TIMESTAMP_OLD                            = 0x1d\n\tSO_VM_SOCKETS_BUFFER_MAX_SIZE               = 0x2\n\tSO_VM_SOCKETS_BUFFER_MIN_SIZE               = 0x1\n\tSO_VM_SOCKETS_BUFFER_SIZE                   = 0x0\n\tSO_VM_SOCKETS_CONNECT_TIMEOUT               = 0x6\n\tSO_VM_SOCKETS_NONBLOCK_TXRX                 = 0x7\n\tSO_VM_SOCKETS_PEER_HOST_VM_ID               = 0x3\n\tSO_VM_SOCKETS_TRUSTED                       = 0x5\n\tSPLICE_F_GIFT                               = 0x8\n\tSPLICE_F_MORE                               = 0x4\n\tSPLICE_F_MOVE                               = 0x1\n\tSPLICE_F_NONBLOCK                           = 0x2\n\tSQUASHFS_MAGIC                              = 0x73717368\n\tSTACK_END_MAGIC                             = 0x57ac6e9d\n\tSTATX_ALL                                   = 0xfff\n\tSTATX_ATIME                                 = 0x20\n\tSTATX_ATTR_APPEND                           = 0x20\n\tSTATX_ATTR_AUTOMOUNT                        = 0x1000\n\tSTATX_ATTR_COMPRESSED                       = 0x4\n\tSTATX_ATTR_DAX                              = 0x2000\n\tSTATX_ATTR_ENCRYPTED                        = 0x800\n\tSTATX_ATTR_IMMUTABLE                        = 0x10\n\tSTATX_ATTR_MOUNT_ROOT                       = 0x2000\n\tSTATX_ATTR_NODUMP                           = 0x40\n\tSTATX_ATTR_VERITY                           = 0x100000\n\tSTATX_BASIC_STATS                           = 0x7ff\n\tSTATX_BLOCKS                                = 0x400\n\tSTATX_BTIME                                 = 0x800\n\tSTATX_CTIME                                 = 0x80\n\tSTATX_GID                                   = 0x10\n\tSTATX_INO                                   = 0x100\n\tSTATX_MNT_ID                                = 0x1000\n\tSTATX_MODE                                  = 0x2\n\tSTATX_MTIME                                 = 0x40\n\tSTATX_NLINK                                 = 0x4\n\tSTATX_SIZE                                  = 0x200\n\tSTATX_TYPE                                  = 0x1\n\tSTATX_UID                                   = 0x8\n\tSTATX__RESERVED                             = 0x80000000\n\tSYNC_FILE_RANGE_WAIT_AFTER                  = 0x4\n\tSYNC_FILE_RANGE_WAIT_BEFORE                 = 0x1\n\tSYNC_FILE_RANGE_WRITE                       = 0x2\n\tSYNC_FILE_RANGE_WRITE_AND_WAIT              = 0x7\n\tSYSFS_MAGIC                                 = 0x62656572\n\tS_BLKSIZE                                   = 0x200\n\tS_IEXEC                                     = 0x40\n\tS_IFBLK                                     = 0x6000\n\tS_IFCHR                                     = 0x2000\n\tS_IFDIR                                     = 0x4000\n\tS_IFIFO                                     = 0x1000\n\tS_IFLNK                                     = 0xa000\n\tS_IFMT                                      = 0xf000\n\tS_IFREG                                     = 0x8000\n\tS_IFSOCK                                    = 0xc000\n\tS_IREAD                                     = 0x100\n\tS_IRGRP                                     = 0x20\n\tS_IROTH                                     = 0x4\n\tS_IRUSR                                     = 0x100\n\tS_IRWXG                                     = 0x38\n\tS_IRWXO                                     = 0x7\n\tS_IRWXU                                     = 0x1c0\n\tS_ISGID                                     = 0x400\n\tS_ISUID                                     = 0x800\n\tS_ISVTX                                     = 0x200\n\tS_IWGRP                                     = 0x10\n\tS_IWOTH                                     = 0x2\n\tS_IWRITE                                    = 0x80\n\tS_IWUSR                                     = 0x80\n\tS_IXGRP                                     = 0x8\n\tS_IXOTH                                     = 0x1\n\tS_IXUSR                                     = 0x40\n\tTAB0                                        = 0x0\n\tTASKSTATS_CMD_ATTR_MAX                      = 0x4\n\tTASKSTATS_CMD_MAX                           = 0x2\n\tTASKSTATS_GENL_NAME                         = \"TASKSTATS\"\n\tTASKSTATS_GENL_VERSION                      = 0x1\n\tTASKSTATS_TYPE_MAX                          = 0x6\n\tTASKSTATS_VERSION                           = 0xa\n\tTCIFLUSH                                    = 0x0\n\tTCIOFF                                      = 0x2\n\tTCIOFLUSH                                   = 0x2\n\tTCION                                       = 0x3\n\tTCOFLUSH                                    = 0x1\n\tTCOOFF                                      = 0x0\n\tTCOON                                       = 0x1\n\tTCP_CC_INFO                                 = 0x1a\n\tTCP_CM_INQ                                  = 0x24\n\tTCP_CONGESTION                              = 0xd\n\tTCP_COOKIE_IN_ALWAYS                        = 0x1\n\tTCP_COOKIE_MAX                              = 0x10\n\tTCP_COOKIE_MIN                              = 0x8\n\tTCP_COOKIE_OUT_NEVER                        = 0x2\n\tTCP_COOKIE_PAIR_SIZE                        = 0x20\n\tTCP_COOKIE_TRANSACTIONS                     = 0xf\n\tTCP_CORK                                    = 0x3\n\tTCP_DEFER_ACCEPT                            = 0x9\n\tTCP_FASTOPEN                                = 0x17\n\tTCP_FASTOPEN_CONNECT                        = 0x1e\n\tTCP_FASTOPEN_KEY                            = 0x21\n\tTCP_FASTOPEN_NO_COOKIE                      = 0x22\n\tTCP_INFO                                    = 0xb\n\tTCP_INQ                                     = 0x24\n\tTCP_KEEPCNT                                 = 0x6\n\tTCP_KEEPIDLE                                = 0x4\n\tTCP_KEEPINTVL                               = 0x5\n\tTCP_LINGER2                                 = 0x8\n\tTCP_MAXSEG                                  = 0x2\n\tTCP_MAXWIN                                  = 0xffff\n\tTCP_MAX_WINSHIFT                            = 0xe\n\tTCP_MD5SIG                                  = 0xe\n\tTCP_MD5SIG_EXT                              = 0x20\n\tTCP_MD5SIG_FLAG_PREFIX                      = 0x1\n\tTCP_MD5SIG_MAXKEYLEN                        = 0x50\n\tTCP_MSS                                     = 0x200\n\tTCP_MSS_DEFAULT                             = 0x218\n\tTCP_MSS_DESIRED                             = 0x4c4\n\tTCP_NODELAY                                 = 0x1\n\tTCP_NOTSENT_LOWAT                           = 0x19\n\tTCP_QUEUE_SEQ                               = 0x15\n\tTCP_QUICKACK                                = 0xc\n\tTCP_REPAIR                                  = 0x13\n\tTCP_REPAIR_OFF                              = 0x0\n\tTCP_REPAIR_OFF_NO_WP                        = -0x1\n\tTCP_REPAIR_ON                               = 0x1\n\tTCP_REPAIR_OPTIONS                          = 0x16\n\tTCP_REPAIR_QUEUE                            = 0x14\n\tTCP_REPAIR_WINDOW                           = 0x1d\n\tTCP_SAVED_SYN                               = 0x1c\n\tTCP_SAVE_SYN                                = 0x1b\n\tTCP_SYNCNT                                  = 0x7\n\tTCP_S_DATA_IN                               = 0x4\n\tTCP_S_DATA_OUT                              = 0x8\n\tTCP_THIN_DUPACK                             = 0x11\n\tTCP_THIN_LINEAR_TIMEOUTS                    = 0x10\n\tTCP_TIMESTAMP                               = 0x18\n\tTCP_TX_DELAY                                = 0x25\n\tTCP_ULP                                     = 0x1f\n\tTCP_USER_TIMEOUT                            = 0x12\n\tTCP_WINDOW_CLAMP                            = 0xa\n\tTCP_ZEROCOPY_RECEIVE                        = 0x23\n\tTFD_TIMER_ABSTIME                           = 0x1\n\tTFD_TIMER_CANCEL_ON_SET                     = 0x2\n\tTIMER_ABSTIME                               = 0x1\n\tTIOCM_DTR                                   = 0x2\n\tTIOCM_LE                                    = 0x1\n\tTIOCM_RTS                                   = 0x4\n\tTIOCPKT_DATA                                = 0x0\n\tTIOCPKT_DOSTOP                              = 0x20\n\tTIOCPKT_FLUSHREAD                           = 0x1\n\tTIOCPKT_FLUSHWRITE                          = 0x2\n\tTIOCPKT_IOCTL                               = 0x40\n\tTIOCPKT_NOSTOP                              = 0x10\n\tTIOCPKT_START                               = 0x8\n\tTIOCPKT_STOP                                = 0x4\n\tTIPC_ADDR_ID                                = 0x3\n\tTIPC_ADDR_MCAST                             = 0x1\n\tTIPC_ADDR_NAME                              = 0x2\n\tTIPC_ADDR_NAMESEQ                           = 0x1\n\tTIPC_AEAD_ALG_NAME                          = 0x20\n\tTIPC_AEAD_KEYLEN_MAX                        = 0x24\n\tTIPC_AEAD_KEYLEN_MIN                        = 0x14\n\tTIPC_AEAD_KEY_SIZE_MAX                      = 0x48\n\tTIPC_CFG_SRV                                = 0x0\n\tTIPC_CLUSTER_BITS                           = 0xc\n\tTIPC_CLUSTER_MASK                           = 0xfff000\n\tTIPC_CLUSTER_OFFSET                         = 0xc\n\tTIPC_CLUSTER_SIZE                           = 0xfff\n\tTIPC_CONN_SHUTDOWN                          = 0x5\n\tTIPC_CONN_TIMEOUT                           = 0x82\n\tTIPC_CRITICAL_IMPORTANCE                    = 0x3\n\tTIPC_DESTNAME                               = 0x3\n\tTIPC_DEST_DROPPABLE                         = 0x81\n\tTIPC_ERRINFO                                = 0x1\n\tTIPC_ERR_NO_NAME                            = 0x1\n\tTIPC_ERR_NO_NODE                            = 0x3\n\tTIPC_ERR_NO_PORT                            = 0x2\n\tTIPC_ERR_OVERLOAD                           = 0x4\n\tTIPC_GROUP_JOIN                             = 0x87\n\tTIPC_GROUP_LEAVE                            = 0x88\n\tTIPC_GROUP_LOOPBACK                         = 0x1\n\tTIPC_GROUP_MEMBER_EVTS                      = 0x2\n\tTIPC_HIGH_IMPORTANCE                        = 0x2\n\tTIPC_IMPORTANCE                             = 0x7f\n\tTIPC_LINK_STATE                             = 0x2\n\tTIPC_LOW_IMPORTANCE                         = 0x0\n\tTIPC_MAX_BEARER_NAME                        = 0x20\n\tTIPC_MAX_IF_NAME                            = 0x10\n\tTIPC_MAX_LINK_NAME                          = 0x44\n\tTIPC_MAX_MEDIA_NAME                         = 0x10\n\tTIPC_MAX_USER_MSG_SIZE                      = 0x101d0\n\tTIPC_MCAST_BROADCAST                        = 0x85\n\tTIPC_MCAST_REPLICAST                        = 0x86\n\tTIPC_MEDIUM_IMPORTANCE                      = 0x1\n\tTIPC_NODEID_LEN                             = 0x10\n\tTIPC_NODELAY                                = 0x8a\n\tTIPC_NODE_BITS                              = 0xc\n\tTIPC_NODE_MASK                              = 0xfff\n\tTIPC_NODE_OFFSET                            = 0x0\n\tTIPC_NODE_RECVQ_DEPTH                       = 0x83\n\tTIPC_NODE_SIZE                              = 0xfff\n\tTIPC_NODE_STATE                             = 0x0\n\tTIPC_OK                                     = 0x0\n\tTIPC_PUBLISHED                              = 0x1\n\tTIPC_RESERVED_TYPES                         = 0x40\n\tTIPC_RETDATA                                = 0x2\n\tTIPC_SERVICE_ADDR                           = 0x2\n\tTIPC_SERVICE_RANGE                          = 0x1\n\tTIPC_SOCKET_ADDR                            = 0x3\n\tTIPC_SOCK_RECVQ_DEPTH                       = 0x84\n\tTIPC_SOCK_RECVQ_USED                        = 0x89\n\tTIPC_SRC_DROPPABLE                          = 0x80\n\tTIPC_SUBSCR_TIMEOUT                         = 0x3\n\tTIPC_SUB_CANCEL                             = 0x4\n\tTIPC_SUB_PORTS                              = 0x1\n\tTIPC_SUB_SERVICE                            = 0x2\n\tTIPC_TOP_SRV                                = 0x1\n\tTIPC_WAIT_FOREVER                           = 0xffffffff\n\tTIPC_WITHDRAWN                              = 0x2\n\tTIPC_ZONE_BITS                              = 0x8\n\tTIPC_ZONE_CLUSTER_MASK                      = 0xfffff000\n\tTIPC_ZONE_MASK                              = 0xff000000\n\tTIPC_ZONE_OFFSET                            = 0x18\n\tTIPC_ZONE_SCOPE                             = 0x1\n\tTIPC_ZONE_SIZE                              = 0xff\n\tTMPFS_MAGIC                                 = 0x1021994\n\tTPACKET_ALIGNMENT                           = 0x10\n\tTPACKET_HDRLEN                              = 0x34\n\tTP_STATUS_AVAILABLE                         = 0x0\n\tTP_STATUS_BLK_TMO                           = 0x20\n\tTP_STATUS_COPY                              = 0x2\n\tTP_STATUS_CSUMNOTREADY                      = 0x8\n\tTP_STATUS_CSUM_VALID                        = 0x80\n\tTP_STATUS_KERNEL                            = 0x0\n\tTP_STATUS_LOSING                            = 0x4\n\tTP_STATUS_SENDING                           = 0x2\n\tTP_STATUS_SEND_REQUEST                      = 0x1\n\tTP_STATUS_TS_RAW_HARDWARE                   = 0x80000000\n\tTP_STATUS_TS_SOFTWARE                       = 0x20000000\n\tTP_STATUS_TS_SYS_HARDWARE                   = 0x40000000\n\tTP_STATUS_USER                              = 0x1\n\tTP_STATUS_VLAN_TPID_VALID                   = 0x40\n\tTP_STATUS_VLAN_VALID                        = 0x10\n\tTP_STATUS_WRONG_FORMAT                      = 0x4\n\tTRACEFS_MAGIC                               = 0x74726163\n\tTS_COMM_LEN                                 = 0x20\n\tUDF_SUPER_MAGIC                             = 0x15013346\n\tUMOUNT_NOFOLLOW                             = 0x8\n\tUSBDEVICE_SUPER_MAGIC                       = 0x9fa2\n\tUTIME_NOW                                   = 0x3fffffff\n\tUTIME_OMIT                                  = 0x3ffffffe\n\tV9FS_MAGIC                                  = 0x1021997\n\tVERASE                                      = 0x2\n\tVINTR                                       = 0x0\n\tVKILL                                       = 0x3\n\tVLNEXT                                      = 0xf\n\tVMADDR_CID_ANY                              = 0xffffffff\n\tVMADDR_CID_HOST                             = 0x2\n\tVMADDR_CID_HYPERVISOR                       = 0x0\n\tVMADDR_CID_LOCAL                            = 0x1\n\tVMADDR_PORT_ANY                             = 0xffffffff\n\tVM_SOCKETS_INVALID_VERSION                  = 0xffffffff\n\tVQUIT                                       = 0x1\n\tVT0                                         = 0x0\n\tWALL                                        = 0x40000000\n\tWCLONE                                      = 0x80000000\n\tWCONTINUED                                  = 0x8\n\tWDIOC_SETPRETIMEOUT                         = 0xc0045708\n\tWDIOC_SETTIMEOUT                            = 0xc0045706\n\tWEXITED                                     = 0x4\n\tWIN_ACKMEDIACHANGE                          = 0xdb\n\tWIN_CHECKPOWERMODE1                         = 0xe5\n\tWIN_CHECKPOWERMODE2                         = 0x98\n\tWIN_DEVICE_RESET                            = 0x8\n\tWIN_DIAGNOSE                                = 0x90\n\tWIN_DOORLOCK                                = 0xde\n\tWIN_DOORUNLOCK                              = 0xdf\n\tWIN_DOWNLOAD_MICROCODE                      = 0x92\n\tWIN_FLUSH_CACHE                             = 0xe7\n\tWIN_FLUSH_CACHE_EXT                         = 0xea\n\tWIN_FORMAT                                  = 0x50\n\tWIN_GETMEDIASTATUS                          = 0xda\n\tWIN_IDENTIFY                                = 0xec\n\tWIN_IDENTIFY_DMA                            = 0xee\n\tWIN_IDLEIMMEDIATE                           = 0xe1\n\tWIN_INIT                                    = 0x60\n\tWIN_MEDIAEJECT                              = 0xed\n\tWIN_MULTREAD                                = 0xc4\n\tWIN_MULTREAD_EXT                            = 0x29\n\tWIN_MULTWRITE                               = 0xc5\n\tWIN_MULTWRITE_EXT                           = 0x39\n\tWIN_NOP                                     = 0x0\n\tWIN_PACKETCMD                               = 0xa0\n\tWIN_PIDENTIFY                               = 0xa1\n\tWIN_POSTBOOT                                = 0xdc\n\tWIN_PREBOOT                                 = 0xdd\n\tWIN_QUEUED_SERVICE                          = 0xa2\n\tWIN_READ                                    = 0x20\n\tWIN_READDMA                                 = 0xc8\n\tWIN_READDMA_EXT                             = 0x25\n\tWIN_READDMA_ONCE                            = 0xc9\n\tWIN_READDMA_QUEUED                          = 0xc7\n\tWIN_READDMA_QUEUED_EXT                      = 0x26\n\tWIN_READ_BUFFER                             = 0xe4\n\tWIN_READ_EXT                                = 0x24\n\tWIN_READ_LONG                               = 0x22\n\tWIN_READ_LONG_ONCE                          = 0x23\n\tWIN_READ_NATIVE_MAX                         = 0xf8\n\tWIN_READ_NATIVE_MAX_EXT                     = 0x27\n\tWIN_READ_ONCE                               = 0x21\n\tWIN_RECAL                                   = 0x10\n\tWIN_RESTORE                                 = 0x10\n\tWIN_SECURITY_DISABLE                        = 0xf6\n\tWIN_SECURITY_ERASE_PREPARE                  = 0xf3\n\tWIN_SECURITY_ERASE_UNIT                     = 0xf4\n\tWIN_SECURITY_FREEZE_LOCK                    = 0xf5\n\tWIN_SECURITY_SET_PASS                       = 0xf1\n\tWIN_SECURITY_UNLOCK                         = 0xf2\n\tWIN_SEEK                                    = 0x70\n\tWIN_SETFEATURES                             = 0xef\n\tWIN_SETIDLE1                                = 0xe3\n\tWIN_SETIDLE2                                = 0x97\n\tWIN_SETMULT                                 = 0xc6\n\tWIN_SET_MAX                                 = 0xf9\n\tWIN_SET_MAX_EXT                             = 0x37\n\tWIN_SLEEPNOW1                               = 0xe6\n\tWIN_SLEEPNOW2                               = 0x99\n\tWIN_SMART                                   = 0xb0\n\tWIN_SPECIFY                                 = 0x91\n\tWIN_SRST                                    = 0x8\n\tWIN_STANDBY                                 = 0xe2\n\tWIN_STANDBY2                                = 0x96\n\tWIN_STANDBYNOW1                             = 0xe0\n\tWIN_STANDBYNOW2                             = 0x94\n\tWIN_VERIFY                                  = 0x40\n\tWIN_VERIFY_EXT                              = 0x42\n\tWIN_VERIFY_ONCE                             = 0x41\n\tWIN_WRITE                                   = 0x30\n\tWIN_WRITEDMA                                = 0xca\n\tWIN_WRITEDMA_EXT                            = 0x35\n\tWIN_WRITEDMA_ONCE                           = 0xcb\n\tWIN_WRITEDMA_QUEUED                         = 0xcc\n\tWIN_WRITEDMA_QUEUED_EXT                     = 0x36\n\tWIN_WRITE_BUFFER                            = 0xe8\n\tWIN_WRITE_EXT                               = 0x34\n\tWIN_WRITE_LONG                              = 0x32\n\tWIN_WRITE_LONG_ONCE                         = 0x33\n\tWIN_WRITE_ONCE                              = 0x31\n\tWIN_WRITE_SAME                              = 0xe9\n\tWIN_WRITE_VERIFY                            = 0x3c\n\tWNOHANG                                     = 0x1\n\tWNOTHREAD                                   = 0x20000000\n\tWNOWAIT                                     = 0x1000000\n\tWSTOPPED                                    = 0x2\n\tWUNTRACED                                   = 0x2\n\tXATTR_CREATE                                = 0x1\n\tXATTR_REPLACE                               = 0x2\n\tXDP_COPY                                    = 0x2\n\tXDP_FLAGS_DRV_MODE                          = 0x4\n\tXDP_FLAGS_HW_MODE                           = 0x8\n\tXDP_FLAGS_MASK                              = 0x1f\n\tXDP_FLAGS_MODES                             = 0xe\n\tXDP_FLAGS_REPLACE                           = 0x10\n\tXDP_FLAGS_SKB_MODE                          = 0x2\n\tXDP_FLAGS_UPDATE_IF_NOEXIST                 = 0x1\n\tXDP_MMAP_OFFSETS                            = 0x1\n\tXDP_OPTIONS                                 = 0x8\n\tXDP_OPTIONS_ZEROCOPY                        = 0x1\n\tXDP_PACKET_HEADROOM                         = 0x100\n\tXDP_PGOFF_RX_RING                           = 0x0\n\tXDP_PGOFF_TX_RING                           = 0x80000000\n\tXDP_RING_NEED_WAKEUP                        = 0x1\n\tXDP_RX_RING                                 = 0x2\n\tXDP_SHARED_UMEM                             = 0x1\n\tXDP_STATISTICS                              = 0x7\n\tXDP_TX_RING                                 = 0x3\n\tXDP_UMEM_COMPLETION_RING                    = 0x6\n\tXDP_UMEM_FILL_RING                          = 0x5\n\tXDP_UMEM_PGOFF_COMPLETION_RING              = 0x180000000\n\tXDP_UMEM_PGOFF_FILL_RING                    = 0x100000000\n\tXDP_UMEM_REG                                = 0x4\n\tXDP_UMEM_UNALIGNED_CHUNK_FLAG               = 0x1\n\tXDP_USE_NEED_WAKEUP                         = 0x8\n\tXDP_ZEROCOPY                                = 0x4\n\tXENFS_SUPER_MAGIC                           = 0xabba1974\n\tXFS_SUPER_MAGIC                             = 0x58465342\n\tZ3FOLD_MAGIC                                = 0x33\n\tZONEFS_MAGIC                                = 0x5a4f4653\n\tZSMALLOC_MAGIC                              = 0x58295829\n)\n\n// Errors\nconst (\n\tE2BIG       = syscall.Errno(0x7)\n\tEACCES      = syscall.Errno(0xd)\n\tEAGAIN      = syscall.Errno(0xb)\n\tEBADF       = syscall.Errno(0x9)\n\tEBUSY       = syscall.Errno(0x10)\n\tECHILD      = syscall.Errno(0xa)\n\tEDOM        = syscall.Errno(0x21)\n\tEEXIST      = syscall.Errno(0x11)\n\tEFAULT      = syscall.Errno(0xe)\n\tEFBIG       = syscall.Errno(0x1b)\n\tEINTR       = syscall.Errno(0x4)\n\tEINVAL      = syscall.Errno(0x16)\n\tEIO         = syscall.Errno(0x5)\n\tEISDIR      = syscall.Errno(0x15)\n\tEMFILE      = syscall.Errno(0x18)\n\tEMLINK      = syscall.Errno(0x1f)\n\tENFILE      = syscall.Errno(0x17)\n\tENODEV      = syscall.Errno(0x13)\n\tENOENT      = syscall.Errno(0x2)\n\tENOEXEC     = syscall.Errno(0x8)\n\tENOMEM      = syscall.Errno(0xc)\n\tENOSPC      = syscall.Errno(0x1c)\n\tENOTBLK     = syscall.Errno(0xf)\n\tENOTDIR     = syscall.Errno(0x14)\n\tENOTTY      = syscall.Errno(0x19)\n\tENXIO       = syscall.Errno(0x6)\n\tEPERM       = syscall.Errno(0x1)\n\tEPIPE       = syscall.Errno(0x20)\n\tERANGE      = syscall.Errno(0x22)\n\tEROFS       = syscall.Errno(0x1e)\n\tESPIPE      = syscall.Errno(0x1d)\n\tESRCH       = syscall.Errno(0x3)\n\tETXTBSY     = syscall.Errno(0x1a)\n\tEWOULDBLOCK = syscall.Errno(0xb)\n\tEXDEV       = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT = syscall.Signal(0x6)\n\tSIGALRM = syscall.Signal(0xe)\n\tSIGFPE  = syscall.Signal(0x8)\n\tSIGHUP  = syscall.Signal(0x1)\n\tSIGILL  = syscall.Signal(0x4)\n\tSIGINT  = syscall.Signal(0x2)\n\tSIGIOT  = syscall.Signal(0x6)\n\tSIGKILL = syscall.Signal(0x9)\n\tSIGPIPE = syscall.Signal(0xd)\n\tSIGQUIT = syscall.Signal(0x3)\n\tSIGSEGV = syscall.Signal(0xb)\n\tSIGTERM = syscall.Signal(0xf)\n\tSIGTRAP = syscall.Signal(0x5)\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_386.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include -m32\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include -m32 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x80041270\n\tBLKBSZSET                        = 0x40041271\n\tBLKFLSBUF                        = 0x1261\n\tBLKFRAGET                        = 0x1265\n\tBLKFRASET                        = 0x1264\n\tBLKGETSIZE                       = 0x1260\n\tBLKGETSIZE64                     = 0x80041272\n\tBLKPBSZGET                       = 0x127b\n\tBLKRAGET                         = 0x1263\n\tBLKRASET                         = 0x1262\n\tBLKROGET                         = 0x125e\n\tBLKROSET                         = 0x125d\n\tBLKRRPART                        = 0x125f\n\tBLKSECTGET                       = 0x1267\n\tBLKSECTSET                       = 0x1266\n\tBLKSSZGET                        = 0x1268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x800\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x40049409\n\tFICLONERANGE                     = 0x4020940d\n\tFLUSHO                           = 0x1000\n\tFP_XSTATE_MAGIC2                 = 0x46505845\n\tFS_IOC_ENABLE_VERITY             = 0x40806685\n\tFS_IOC_GETFLAGS                  = 0x80046601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x8010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x400c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x40106614\n\tFS_IOC_SETFLAGS                  = 0x40046602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x800c6613\n\tF_GETLK                          = 0xc\n\tF_GETLK64                        = 0xc\n\tF_GETOWN                         = 0x9\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0xd\n\tF_SETLK64                        = 0xd\n\tF_SETLKW                         = 0xe\n\tF_SETLKW64                       = 0xe\n\tF_SETOWN                         = 0x8\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x8000\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x800\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x7b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_32BIT                        = 0x40\n\tMAP_ANON                         = 0x20\n\tMAP_ANONYMOUS                    = 0x20\n\tMAP_DENYWRITE                    = 0x800\n\tMAP_EXECUTABLE                   = 0x1000\n\tMAP_GROWSDOWN                    = 0x100\n\tMAP_HUGETLB                      = 0x40000\n\tMAP_LOCKED                       = 0x2000\n\tMAP_NONBLOCK                     = 0x10000\n\tMAP_NORESERVE                    = 0x4000\n\tMAP_POPULATE                     = 0x8000\n\tMAP_STACK                        = 0x20000\n\tMAP_SYNC                         = 0x80000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x20\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0xb703\n\tNS_GET_OWNER_UID                 = 0xb704\n\tNS_GET_PARENT                    = 0xb702\n\tNS_GET_USERNS                    = 0xb701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x400\n\tO_ASYNC                          = 0x2000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x40\n\tO_DIRECT                         = 0x4000\n\tO_DIRECTORY                      = 0x10000\n\tO_DSYNC                          = 0x1000\n\tO_EXCL                           = 0x80\n\tO_FSYNC                          = 0x101000\n\tO_LARGEFILE                      = 0x8000\n\tO_NDELAY                         = 0x800\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x100\n\tO_NOFOLLOW                       = 0x20000\n\tO_NONBLOCK                       = 0x800\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x101000\n\tO_SYNC                           = 0x101000\n\tO_TMPFILE                        = 0x410000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x2401\n\tPERF_EVENT_IOC_ENABLE            = 0x2400\n\tPERF_EVENT_IOC_ID                = 0x80042407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4004240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x40042409\n\tPERF_EVENT_IOC_PERIOD            = 0x40082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc004240a\n\tPERF_EVENT_IOC_REFRESH           = 0x2402\n\tPERF_EVENT_IOC_RESET             = 0x2403\n\tPERF_EVENT_IOC_SET_BPF           = 0x40042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x40042406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x2405\n\tPPPIOCATTACH                     = 0x4004743d\n\tPPPIOCATTCHAN                    = 0x40047438\n\tPPPIOCCONNECT                    = 0x4004743a\n\tPPPIOCDETACH                     = 0x4004743c\n\tPPPIOCDISCONN                    = 0x7439\n\tPPPIOCGASYNCMAP                  = 0x80047458\n\tPPPIOCGCHAN                      = 0x80047437\n\tPPPIOCGDEBUG                     = 0x80047441\n\tPPPIOCGFLAGS                     = 0x8004745a\n\tPPPIOCGIDLE                      = 0x8008743f\n\tPPPIOCGIDLE32                    = 0x8008743f\n\tPPPIOCGIDLE64                    = 0x8010743f\n\tPPPIOCGL2TPSTATS                 = 0x80487436\n\tPPPIOCGMRU                       = 0x80047453\n\tPPPIOCGRASYNCMAP                 = 0x80047455\n\tPPPIOCGUNIT                      = 0x80047456\n\tPPPIOCGXASYNCMAP                 = 0x80207450\n\tPPPIOCSACTIVE                    = 0x40087446\n\tPPPIOCSASYNCMAP                  = 0x40047457\n\tPPPIOCSCOMPRESS                  = 0x400c744d\n\tPPPIOCSDEBUG                     = 0x40047440\n\tPPPIOCSFLAGS                     = 0x40047459\n\tPPPIOCSMAXCID                    = 0x40047451\n\tPPPIOCSMRRU                      = 0x4004743b\n\tPPPIOCSMRU                       = 0x40047452\n\tPPPIOCSNPMODE                    = 0x4008744b\n\tPPPIOCSPASS                      = 0x40087447\n\tPPPIOCSRASYNCMAP                 = 0x40047454\n\tPPPIOCSXASYNCMAP                 = 0x4020744f\n\tPPPIOCXFERUNIT                   = 0x744e\n\tPR_SET_PTRACER_ANY               = 0xffffffff\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GETFPXREGS                = 0x12\n\tPTRACE_GET_THREAD_AREA           = 0x19\n\tPTRACE_OLDSETOPTIONS             = 0x15\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SETFPXREGS                = 0x13\n\tPTRACE_SET_THREAD_AREA           = 0x1a\n\tPTRACE_SINGLEBLOCK               = 0x21\n\tPTRACE_SYSEMU                    = 0x1f\n\tPTRACE_SYSEMU_SINGLESTEP         = 0x20\n\tRLIMIT_AS                        = 0x9\n\tRLIMIT_MEMLOCK                   = 0x8\n\tRLIMIT_NOFILE                    = 0x7\n\tRLIMIT_NPROC                     = 0x6\n\tRLIMIT_RSS                       = 0x5\n\tRNDADDENTROPY                    = 0x40085203\n\tRNDADDTOENTCNT                   = 0x40045201\n\tRNDCLEARPOOL                     = 0x5206\n\tRNDGETENTCNT                     = 0x80045200\n\tRNDGETPOOL                       = 0x80085202\n\tRNDRESEEDCRNG                    = 0x5207\n\tRNDZAPENTCNT                     = 0x5204\n\tRTC_AIE_OFF                      = 0x7002\n\tRTC_AIE_ON                       = 0x7001\n\tRTC_ALM_READ                     = 0x80247008\n\tRTC_ALM_SET                      = 0x40247007\n\tRTC_EPOCH_READ                   = 0x8004700d\n\tRTC_EPOCH_SET                    = 0x4004700e\n\tRTC_IRQP_READ                    = 0x8004700b\n\tRTC_IRQP_SET                     = 0x4004700c\n\tRTC_PIE_OFF                      = 0x7006\n\tRTC_PIE_ON                       = 0x7005\n\tRTC_PLL_GET                      = 0x801c7011\n\tRTC_PLL_SET                      = 0x401c7012\n\tRTC_RD_TIME                      = 0x80247009\n\tRTC_SET_TIME                     = 0x4024700a\n\tRTC_UIE_OFF                      = 0x7004\n\tRTC_UIE_ON                       = 0x7003\n\tRTC_VL_CLR                       = 0x7014\n\tRTC_VL_READ                      = 0x80047013\n\tRTC_WIE_OFF                      = 0x7010\n\tRTC_WIE_ON                       = 0x700f\n\tRTC_WKALM_RD                     = 0x80287010\n\tRTC_WKALM_SET                    = 0x4028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x800\n\tSIOCATMARK                       = 0x8905\n\tSIOCGPGRP                        = 0x8904\n\tSIOCGSTAMPNS_NEW                 = 0x80108907\n\tSIOCGSTAMP_NEW                   = 0x80108906\n\tSIOCINQ                          = 0x541b\n\tSIOCOUTQ                         = 0x5411\n\tSIOCSPGRP                        = 0x8902\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x2\n\tSOCK_NONBLOCK                    = 0x800\n\tSOCK_STREAM                      = 0x1\n\tSOL_SOCKET                       = 0x1\n\tSO_ACCEPTCONN                    = 0x1e\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x6\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x27\n\tSO_DONTROUTE                     = 0x5\n\tSO_ERROR                         = 0x4\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x9\n\tSO_LINGER                        = 0xd\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0xa\n\tSO_PASSCRED                      = 0x10\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x11\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1f\n\tSO_PROTOCOL                      = 0x26\n\tSO_RCVBUF                        = 0x8\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x12\n\tSO_RCVTIMEO                      = 0x14\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x14\n\tSO_REUSEADDR                     = 0x2\n\tSO_REUSEPORT                     = 0xf\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x7\n\tSO_SNDBUFFORCE                   = 0x20\n\tSO_SNDLOWAT                      = 0x13\n\tSO_SNDTIMEO                      = 0x15\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x15\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x3\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x540b\n\tTCGETA                           = 0x5405\n\tTCGETS                           = 0x5401\n\tTCGETS2                          = 0x802c542a\n\tTCGETX                           = 0x5432\n\tTCSAFLUSH                        = 0x2\n\tTCSBRK                           = 0x5409\n\tTCSBRKP                          = 0x5425\n\tTCSETA                           = 0x5406\n\tTCSETAF                          = 0x5408\n\tTCSETAW                          = 0x5407\n\tTCSETS                           = 0x5402\n\tTCSETS2                          = 0x402c542b\n\tTCSETSF                          = 0x5404\n\tTCSETSF2                         = 0x402c542d\n\tTCSETSW                          = 0x5403\n\tTCSETSW2                         = 0x402c542c\n\tTCSETX                           = 0x5433\n\tTCSETXF                          = 0x5434\n\tTCSETXW                          = 0x5435\n\tTCXONC                           = 0x540a\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x800\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x541d\n\tTIOCEXCL                         = 0x540c\n\tTIOCGDEV                         = 0x80045432\n\tTIOCGETD                         = 0x5424\n\tTIOCGEXCL                        = 0x80045440\n\tTIOCGICOUNT                      = 0x545d\n\tTIOCGISO7816                     = 0x80285442\n\tTIOCGLCKTRMIOS                   = 0x5456\n\tTIOCGPGRP                        = 0x540f\n\tTIOCGPKT                         = 0x80045438\n\tTIOCGPTLCK                       = 0x80045439\n\tTIOCGPTN                         = 0x80045430\n\tTIOCGPTPEER                      = 0x5441\n\tTIOCGRS485                       = 0x542e\n\tTIOCGSERIAL                      = 0x541e\n\tTIOCGSID                         = 0x5429\n\tTIOCGSOFTCAR                     = 0x5419\n\tTIOCGWINSZ                       = 0x5413\n\tTIOCINQ                          = 0x541b\n\tTIOCLINUX                        = 0x541c\n\tTIOCMBIC                         = 0x5417\n\tTIOCMBIS                         = 0x5416\n\tTIOCMGET                         = 0x5415\n\tTIOCMIWAIT                       = 0x545c\n\tTIOCMSET                         = 0x5418\n\tTIOCM_CAR                        = 0x40\n\tTIOCM_CD                         = 0x40\n\tTIOCM_CTS                        = 0x20\n\tTIOCM_DSR                        = 0x100\n\tTIOCM_RI                         = 0x80\n\tTIOCM_RNG                        = 0x80\n\tTIOCM_SR                         = 0x10\n\tTIOCM_ST                         = 0x8\n\tTIOCNOTTY                        = 0x5422\n\tTIOCNXCL                         = 0x540d\n\tTIOCOUTQ                         = 0x5411\n\tTIOCPKT                          = 0x5420\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x540e\n\tTIOCSERCONFIG                    = 0x5453\n\tTIOCSERGETLSR                    = 0x5459\n\tTIOCSERGETMULTI                  = 0x545a\n\tTIOCSERGSTRUCT                   = 0x5458\n\tTIOCSERGWILD                     = 0x5454\n\tTIOCSERSETMULTI                  = 0x545b\n\tTIOCSERSWILD                     = 0x5455\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x5423\n\tTIOCSIG                          = 0x40045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x5457\n\tTIOCSPGRP                        = 0x5410\n\tTIOCSPTLCK                       = 0x40045431\n\tTIOCSRS485                       = 0x542f\n\tTIOCSSERIAL                      = 0x541f\n\tTIOCSSOFTCAR                     = 0x541a\n\tTIOCSTI                          = 0x5412\n\tTIOCSWINSZ                       = 0x5414\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x100\n\tTUNATTACHFILTER                  = 0x400854d5\n\tTUNDETACHFILTER                  = 0x400854d6\n\tTUNGETDEVNETNS                   = 0x54e3\n\tTUNGETFEATURES                   = 0x800454cf\n\tTUNGETFILTER                     = 0x800854db\n\tTUNGETIFF                        = 0x800454d2\n\tTUNGETSNDBUF                     = 0x800454d3\n\tTUNGETVNETBE                     = 0x800454df\n\tTUNGETVNETHDRSZ                  = 0x800454d7\n\tTUNGETVNETLE                     = 0x800454dd\n\tTUNSETCARRIER                    = 0x400454e2\n\tTUNSETDEBUG                      = 0x400454c9\n\tTUNSETFILTEREBPF                 = 0x800454e1\n\tTUNSETGROUP                      = 0x400454ce\n\tTUNSETIFF                        = 0x400454ca\n\tTUNSETIFINDEX                    = 0x400454da\n\tTUNSETLINK                       = 0x400454cd\n\tTUNSETNOCSUM                     = 0x400454c8\n\tTUNSETOFFLOAD                    = 0x400454d0\n\tTUNSETOWNER                      = 0x400454cc\n\tTUNSETPERSIST                    = 0x400454cb\n\tTUNSETQUEUE                      = 0x400454d9\n\tTUNSETSNDBUF                     = 0x400454d4\n\tTUNSETSTEERINGEBPF               = 0x800454e0\n\tTUNSETTXFILTER                   = 0x400454d1\n\tTUNSETVNETBE                     = 0x400454de\n\tTUNSETVNETHDRSZ                  = 0x400454d8\n\tTUNSETVNETLE                     = 0x400454dc\n\tUBI_IOCATT                       = 0x40186f40\n\tUBI_IOCDET                       = 0x40046f41\n\tUBI_IOCEBCH                      = 0x40044f02\n\tUBI_IOCEBER                      = 0x40044f01\n\tUBI_IOCEBISMAP                   = 0x80044f05\n\tUBI_IOCEBMAP                     = 0x40084f03\n\tUBI_IOCEBUNMAP                   = 0x40044f04\n\tUBI_IOCMKVOL                     = 0x40986f00\n\tUBI_IOCRMVOL                     = 0x40046f01\n\tUBI_IOCRNVOL                     = 0x51106f03\n\tUBI_IOCRPEB                      = 0x40046f04\n\tUBI_IOCRSVOL                     = 0x400c6f02\n\tUBI_IOCSETVOLPROP                = 0x40104f06\n\tUBI_IOCSPEB                      = 0x40046f05\n\tUBI_IOCVOLCRBLK                  = 0x40804f07\n\tUBI_IOCVOLRMBLK                  = 0x4f08\n\tUBI_IOCVOLUP                     = 0x40084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x4\n\tVEOL                             = 0xb\n\tVEOL2                            = 0x10\n\tVMIN                             = 0x6\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x80045702\n\tWDIOC_GETPRETIMEOUT              = 0x80045709\n\tWDIOC_GETSTATUS                  = 0x80045701\n\tWDIOC_GETSUPPORT                 = 0x80285700\n\tWDIOC_GETTEMP                    = 0x80045703\n\tWDIOC_GETTIMELEFT                = 0x8004570a\n\tWDIOC_GETTIMEOUT                 = 0x80045707\n\tWDIOC_KEEPALIVE                  = 0x80045705\n\tWDIOC_SETOPTIONS                 = 0x80045704\n\tWORDSIZE                         = 0x20\n\tX86_FXSR_MAGIC                   = 0x0\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x62)\n\tEADDRNOTAVAIL   = syscall.Errno(0x63)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x61)\n\tEALREADY        = syscall.Errno(0x72)\n\tEBADE           = syscall.Errno(0x34)\n\tEBADFD          = syscall.Errno(0x4d)\n\tEBADMSG         = syscall.Errno(0x4a)\n\tEBADR           = syscall.Errno(0x35)\n\tEBADRQC         = syscall.Errno(0x38)\n\tEBADSLT         = syscall.Errno(0x39)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x7d)\n\tECHRNG          = syscall.Errno(0x2c)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x67)\n\tECONNREFUSED    = syscall.Errno(0x6f)\n\tECONNRESET      = syscall.Errno(0x68)\n\tEDEADLK         = syscall.Errno(0x23)\n\tEDEADLOCK       = syscall.Errno(0x23)\n\tEDESTADDRREQ    = syscall.Errno(0x59)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x7a)\n\tEHOSTDOWN       = syscall.Errno(0x70)\n\tEHOSTUNREACH    = syscall.Errno(0x71)\n\tEHWPOISON       = syscall.Errno(0x85)\n\tEIDRM           = syscall.Errno(0x2b)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x73)\n\tEISCONN         = syscall.Errno(0x6a)\n\tEISNAM          = syscall.Errno(0x78)\n\tEKEYEXPIRED     = syscall.Errno(0x7f)\n\tEKEYREJECTED    = syscall.Errno(0x81)\n\tEKEYREVOKED     = syscall.Errno(0x80)\n\tEL2HLT          = syscall.Errno(0x33)\n\tEL2NSYNC        = syscall.Errno(0x2d)\n\tEL3HLT          = syscall.Errno(0x2e)\n\tEL3RST          = syscall.Errno(0x2f)\n\tELIBACC         = syscall.Errno(0x4f)\n\tELIBBAD         = syscall.Errno(0x50)\n\tELIBEXEC        = syscall.Errno(0x53)\n\tELIBMAX         = syscall.Errno(0x52)\n\tELIBSCN         = syscall.Errno(0x51)\n\tELNRNG          = syscall.Errno(0x30)\n\tELOOP           = syscall.Errno(0x28)\n\tEMEDIUMTYPE     = syscall.Errno(0x7c)\n\tEMSGSIZE        = syscall.Errno(0x5a)\n\tEMULTIHOP       = syscall.Errno(0x48)\n\tENAMETOOLONG    = syscall.Errno(0x24)\n\tENAVAIL         = syscall.Errno(0x77)\n\tENETDOWN        = syscall.Errno(0x64)\n\tENETRESET       = syscall.Errno(0x66)\n\tENETUNREACH     = syscall.Errno(0x65)\n\tENOANO          = syscall.Errno(0x37)\n\tENOBUFS         = syscall.Errno(0x69)\n\tENOCSI          = syscall.Errno(0x32)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0x7e)\n\tENOLCK          = syscall.Errno(0x25)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x7b)\n\tENOMSG          = syscall.Errno(0x2a)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x5c)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x26)\n\tENOTCONN        = syscall.Errno(0x6b)\n\tENOTEMPTY       = syscall.Errno(0x27)\n\tENOTNAM         = syscall.Errno(0x76)\n\tENOTRECOVERABLE = syscall.Errno(0x83)\n\tENOTSOCK        = syscall.Errno(0x58)\n\tENOTSUP         = syscall.Errno(0x5f)\n\tENOTUNIQ        = syscall.Errno(0x4c)\n\tEOPNOTSUPP      = syscall.Errno(0x5f)\n\tEOVERFLOW       = syscall.Errno(0x4b)\n\tEOWNERDEAD      = syscall.Errno(0x82)\n\tEPFNOSUPPORT    = syscall.Errno(0x60)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x5d)\n\tEPROTOTYPE      = syscall.Errno(0x5b)\n\tEREMCHG         = syscall.Errno(0x4e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x79)\n\tERESTART        = syscall.Errno(0x55)\n\tERFKILL         = syscall.Errno(0x84)\n\tESHUTDOWN       = syscall.Errno(0x6c)\n\tESOCKTNOSUPPORT = syscall.Errno(0x5e)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x74)\n\tESTRPIPE        = syscall.Errno(0x56)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x6e)\n\tETOOMANYREFS    = syscall.Errno(0x6d)\n\tEUCLEAN         = syscall.Errno(0x75)\n\tEUNATCH         = syscall.Errno(0x31)\n\tEUSERS          = syscall.Errno(0x57)\n\tEXFULL          = syscall.Errno(0x36)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0x7)\n\tSIGCHLD   = syscall.Signal(0x11)\n\tSIGCLD    = syscall.Signal(0x11)\n\tSIGCONT   = syscall.Signal(0x12)\n\tSIGIO     = syscall.Signal(0x1d)\n\tSIGPOLL   = syscall.Signal(0x1d)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x1e)\n\tSIGSTKFLT = syscall.Signal(0x10)\n\tSIGSTOP   = syscall.Signal(0x13)\n\tSIGSYS    = syscall.Signal(0x1f)\n\tSIGTSTP   = syscall.Signal(0x14)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x17)\n\tSIGUSR1   = syscall.Signal(0xa)\n\tSIGUSR2   = syscall.Signal(0xc)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{36, \"ENAMETOOLONG\", \"file name too long\"},\n\t{37, \"ENOLCK\", \"no locks available\"},\n\t{38, \"ENOSYS\", \"function not implemented\"},\n\t{39, \"ENOTEMPTY\", \"directory not empty\"},\n\t{40, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{42, \"ENOMSG\", \"no message of desired type\"},\n\t{43, \"EIDRM\", \"identifier removed\"},\n\t{44, \"ECHRNG\", \"channel number out of range\"},\n\t{45, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{46, \"EL3HLT\", \"level 3 halted\"},\n\t{47, \"EL3RST\", \"level 3 reset\"},\n\t{48, \"ELNRNG\", \"link number out of range\"},\n\t{49, \"EUNATCH\", \"protocol driver not attached\"},\n\t{50, \"ENOCSI\", \"no CSI structure available\"},\n\t{51, \"EL2HLT\", \"level 2 halted\"},\n\t{52, \"EBADE\", \"invalid exchange\"},\n\t{53, \"EBADR\", \"invalid request descriptor\"},\n\t{54, \"EXFULL\", \"exchange full\"},\n\t{55, \"ENOANO\", \"no anode\"},\n\t{56, \"EBADRQC\", \"invalid request code\"},\n\t{57, \"EBADSLT\", \"invalid slot\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{72, \"EMULTIHOP\", \"multihop attempted\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EBADMSG\", \"bad message\"},\n\t{75, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{76, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{77, \"EBADFD\", \"file descriptor in bad state\"},\n\t{78, \"EREMCHG\", \"remote address changed\"},\n\t{79, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{80, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{81, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{82, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{83, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{84, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{85, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{86, \"ESTRPIPE\", \"streams pipe error\"},\n\t{87, \"EUSERS\", \"too many users\"},\n\t{88, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{89, \"EDESTADDRREQ\", \"destination address required\"},\n\t{90, \"EMSGSIZE\", \"message too long\"},\n\t{91, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{92, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{93, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{94, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{95, \"ENOTSUP\", \"operation not supported\"},\n\t{96, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{97, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{98, \"EADDRINUSE\", \"address already in use\"},\n\t{99, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{100, \"ENETDOWN\", \"network is down\"},\n\t{101, \"ENETUNREACH\", \"network is unreachable\"},\n\t{102, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{103, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{104, \"ECONNRESET\", \"connection reset by peer\"},\n\t{105, \"ENOBUFS\", \"no buffer space available\"},\n\t{106, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{107, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{108, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{109, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{110, \"ETIMEDOUT\", \"connection timed out\"},\n\t{111, \"ECONNREFUSED\", \"connection refused\"},\n\t{112, \"EHOSTDOWN\", \"host is down\"},\n\t{113, \"EHOSTUNREACH\", \"no route to host\"},\n\t{114, \"EALREADY\", \"operation already in progress\"},\n\t{115, \"EINPROGRESS\", \"operation now in progress\"},\n\t{116, \"ESTALE\", \"stale file handle\"},\n\t{117, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{118, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{119, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{120, \"EISNAM\", \"is a named type file\"},\n\t{121, \"EREMOTEIO\", \"remote I/O error\"},\n\t{122, \"EDQUOT\", \"disk quota exceeded\"},\n\t{123, \"ENOMEDIUM\", \"no medium found\"},\n\t{124, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{125, \"ECANCELED\", \"operation canceled\"},\n\t{126, \"ENOKEY\", \"required key not available\"},\n\t{127, \"EKEYEXPIRED\", \"key has expired\"},\n\t{128, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{129, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{130, \"EOWNERDEAD\", \"owner died\"},\n\t{131, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{132, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{133, \"EHWPOISON\", \"memory page has hardware error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGBUS\", \"bus error\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGUSR1\", \"user defined signal 1\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGUSR2\", \"user defined signal 2\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGSTKFLT\", \"stack fault\"},\n\t{17, \"SIGCHLD\", \"child exited\"},\n\t{18, \"SIGCONT\", \"continued\"},\n\t{19, \"SIGSTOP\", \"stopped (signal)\"},\n\t{20, \"SIGTSTP\", \"stopped\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGURG\", \"urgent I/O condition\"},\n\t{24, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"file size limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window changed\"},\n\t{29, \"SIGIO\", \"I/O possible\"},\n\t{30, \"SIGPWR\", \"power failure\"},\n\t{31, \"SIGSYS\", \"bad system call\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x80081270\n\tBLKBSZSET                        = 0x40081271\n\tBLKFLSBUF                        = 0x1261\n\tBLKFRAGET                        = 0x1265\n\tBLKFRASET                        = 0x1264\n\tBLKGETSIZE                       = 0x1260\n\tBLKGETSIZE64                     = 0x80081272\n\tBLKPBSZGET                       = 0x127b\n\tBLKRAGET                         = 0x1263\n\tBLKRASET                         = 0x1262\n\tBLKROGET                         = 0x125e\n\tBLKROSET                         = 0x125d\n\tBLKRRPART                        = 0x125f\n\tBLKSECTGET                       = 0x1267\n\tBLKSECTSET                       = 0x1266\n\tBLKSSZGET                        = 0x1268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x800\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x40049409\n\tFICLONERANGE                     = 0x4020940d\n\tFLUSHO                           = 0x1000\n\tFP_XSTATE_MAGIC2                 = 0x46505845\n\tFS_IOC_ENABLE_VERITY             = 0x40806685\n\tFS_IOC_GETFLAGS                  = 0x80086601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x8010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x400c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x40106614\n\tFS_IOC_SETFLAGS                  = 0x40086602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x800c6613\n\tF_GETLK                          = 0x5\n\tF_GETLK64                        = 0x5\n\tF_GETOWN                         = 0x9\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x6\n\tF_SETLK64                        = 0x6\n\tF_SETLKW                         = 0x7\n\tF_SETLKW64                       = 0x7\n\tF_SETOWN                         = 0x8\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x8000\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x800\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x7b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_32BIT                        = 0x40\n\tMAP_ANON                         = 0x20\n\tMAP_ANONYMOUS                    = 0x20\n\tMAP_DENYWRITE                    = 0x800\n\tMAP_EXECUTABLE                   = 0x1000\n\tMAP_GROWSDOWN                    = 0x100\n\tMAP_HUGETLB                      = 0x40000\n\tMAP_LOCKED                       = 0x2000\n\tMAP_NONBLOCK                     = 0x10000\n\tMAP_NORESERVE                    = 0x4000\n\tMAP_POPULATE                     = 0x8000\n\tMAP_STACK                        = 0x20000\n\tMAP_SYNC                         = 0x80000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x40\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0xb703\n\tNS_GET_OWNER_UID                 = 0xb704\n\tNS_GET_PARENT                    = 0xb702\n\tNS_GET_USERNS                    = 0xb701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x400\n\tO_ASYNC                          = 0x2000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x40\n\tO_DIRECT                         = 0x4000\n\tO_DIRECTORY                      = 0x10000\n\tO_DSYNC                          = 0x1000\n\tO_EXCL                           = 0x80\n\tO_FSYNC                          = 0x101000\n\tO_LARGEFILE                      = 0x0\n\tO_NDELAY                         = 0x800\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x100\n\tO_NOFOLLOW                       = 0x20000\n\tO_NONBLOCK                       = 0x800\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x101000\n\tO_SYNC                           = 0x101000\n\tO_TMPFILE                        = 0x410000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x2401\n\tPERF_EVENT_IOC_ENABLE            = 0x2400\n\tPERF_EVENT_IOC_ID                = 0x80082407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x40042409\n\tPERF_EVENT_IOC_PERIOD            = 0x40082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc008240a\n\tPERF_EVENT_IOC_REFRESH           = 0x2402\n\tPERF_EVENT_IOC_RESET             = 0x2403\n\tPERF_EVENT_IOC_SET_BPF           = 0x40042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x40082406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x2405\n\tPPPIOCATTACH                     = 0x4004743d\n\tPPPIOCATTCHAN                    = 0x40047438\n\tPPPIOCCONNECT                    = 0x4004743a\n\tPPPIOCDETACH                     = 0x4004743c\n\tPPPIOCDISCONN                    = 0x7439\n\tPPPIOCGASYNCMAP                  = 0x80047458\n\tPPPIOCGCHAN                      = 0x80047437\n\tPPPIOCGDEBUG                     = 0x80047441\n\tPPPIOCGFLAGS                     = 0x8004745a\n\tPPPIOCGIDLE                      = 0x8010743f\n\tPPPIOCGIDLE32                    = 0x8008743f\n\tPPPIOCGIDLE64                    = 0x8010743f\n\tPPPIOCGL2TPSTATS                 = 0x80487436\n\tPPPIOCGMRU                       = 0x80047453\n\tPPPIOCGRASYNCMAP                 = 0x80047455\n\tPPPIOCGUNIT                      = 0x80047456\n\tPPPIOCGXASYNCMAP                 = 0x80207450\n\tPPPIOCSACTIVE                    = 0x40107446\n\tPPPIOCSASYNCMAP                  = 0x40047457\n\tPPPIOCSCOMPRESS                  = 0x4010744d\n\tPPPIOCSDEBUG                     = 0x40047440\n\tPPPIOCSFLAGS                     = 0x40047459\n\tPPPIOCSMAXCID                    = 0x40047451\n\tPPPIOCSMRRU                      = 0x4004743b\n\tPPPIOCSMRU                       = 0x40047452\n\tPPPIOCSNPMODE                    = 0x4008744b\n\tPPPIOCSPASS                      = 0x40107447\n\tPPPIOCSRASYNCMAP                 = 0x40047454\n\tPPPIOCSXASYNCMAP                 = 0x4020744f\n\tPPPIOCXFERUNIT                   = 0x744e\n\tPR_SET_PTRACER_ANY               = 0xffffffffffffffff\n\tPTRACE_ARCH_PRCTL                = 0x1e\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GETFPXREGS                = 0x12\n\tPTRACE_GET_THREAD_AREA           = 0x19\n\tPTRACE_OLDSETOPTIONS             = 0x15\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SETFPXREGS                = 0x13\n\tPTRACE_SET_THREAD_AREA           = 0x1a\n\tPTRACE_SINGLEBLOCK               = 0x21\n\tPTRACE_SYSEMU                    = 0x1f\n\tPTRACE_SYSEMU_SINGLESTEP         = 0x20\n\tRLIMIT_AS                        = 0x9\n\tRLIMIT_MEMLOCK                   = 0x8\n\tRLIMIT_NOFILE                    = 0x7\n\tRLIMIT_NPROC                     = 0x6\n\tRLIMIT_RSS                       = 0x5\n\tRNDADDENTROPY                    = 0x40085203\n\tRNDADDTOENTCNT                   = 0x40045201\n\tRNDCLEARPOOL                     = 0x5206\n\tRNDGETENTCNT                     = 0x80045200\n\tRNDGETPOOL                       = 0x80085202\n\tRNDRESEEDCRNG                    = 0x5207\n\tRNDZAPENTCNT                     = 0x5204\n\tRTC_AIE_OFF                      = 0x7002\n\tRTC_AIE_ON                       = 0x7001\n\tRTC_ALM_READ                     = 0x80247008\n\tRTC_ALM_SET                      = 0x40247007\n\tRTC_EPOCH_READ                   = 0x8008700d\n\tRTC_EPOCH_SET                    = 0x4008700e\n\tRTC_IRQP_READ                    = 0x8008700b\n\tRTC_IRQP_SET                     = 0x4008700c\n\tRTC_PIE_OFF                      = 0x7006\n\tRTC_PIE_ON                       = 0x7005\n\tRTC_PLL_GET                      = 0x80207011\n\tRTC_PLL_SET                      = 0x40207012\n\tRTC_RD_TIME                      = 0x80247009\n\tRTC_SET_TIME                     = 0x4024700a\n\tRTC_UIE_OFF                      = 0x7004\n\tRTC_UIE_ON                       = 0x7003\n\tRTC_VL_CLR                       = 0x7014\n\tRTC_VL_READ                      = 0x80047013\n\tRTC_WIE_OFF                      = 0x7010\n\tRTC_WIE_ON                       = 0x700f\n\tRTC_WKALM_RD                     = 0x80287010\n\tRTC_WKALM_SET                    = 0x4028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x800\n\tSIOCATMARK                       = 0x8905\n\tSIOCGPGRP                        = 0x8904\n\tSIOCGSTAMPNS_NEW                 = 0x80108907\n\tSIOCGSTAMP_NEW                   = 0x80108906\n\tSIOCINQ                          = 0x541b\n\tSIOCOUTQ                         = 0x5411\n\tSIOCSPGRP                        = 0x8902\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x2\n\tSOCK_NONBLOCK                    = 0x800\n\tSOCK_STREAM                      = 0x1\n\tSOL_SOCKET                       = 0x1\n\tSO_ACCEPTCONN                    = 0x1e\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x6\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x27\n\tSO_DONTROUTE                     = 0x5\n\tSO_ERROR                         = 0x4\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x9\n\tSO_LINGER                        = 0xd\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0xa\n\tSO_PASSCRED                      = 0x10\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x11\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1f\n\tSO_PROTOCOL                      = 0x26\n\tSO_RCVBUF                        = 0x8\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x12\n\tSO_RCVTIMEO                      = 0x14\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x14\n\tSO_REUSEADDR                     = 0x2\n\tSO_REUSEPORT                     = 0xf\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x7\n\tSO_SNDBUFFORCE                   = 0x20\n\tSO_SNDLOWAT                      = 0x13\n\tSO_SNDTIMEO                      = 0x15\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x15\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x3\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x540b\n\tTCGETA                           = 0x5405\n\tTCGETS                           = 0x5401\n\tTCGETS2                          = 0x802c542a\n\tTCGETX                           = 0x5432\n\tTCSAFLUSH                        = 0x2\n\tTCSBRK                           = 0x5409\n\tTCSBRKP                          = 0x5425\n\tTCSETA                           = 0x5406\n\tTCSETAF                          = 0x5408\n\tTCSETAW                          = 0x5407\n\tTCSETS                           = 0x5402\n\tTCSETS2                          = 0x402c542b\n\tTCSETSF                          = 0x5404\n\tTCSETSF2                         = 0x402c542d\n\tTCSETSW                          = 0x5403\n\tTCSETSW2                         = 0x402c542c\n\tTCSETX                           = 0x5433\n\tTCSETXF                          = 0x5434\n\tTCSETXW                          = 0x5435\n\tTCXONC                           = 0x540a\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x800\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x541d\n\tTIOCEXCL                         = 0x540c\n\tTIOCGDEV                         = 0x80045432\n\tTIOCGETD                         = 0x5424\n\tTIOCGEXCL                        = 0x80045440\n\tTIOCGICOUNT                      = 0x545d\n\tTIOCGISO7816                     = 0x80285442\n\tTIOCGLCKTRMIOS                   = 0x5456\n\tTIOCGPGRP                        = 0x540f\n\tTIOCGPKT                         = 0x80045438\n\tTIOCGPTLCK                       = 0x80045439\n\tTIOCGPTN                         = 0x80045430\n\tTIOCGPTPEER                      = 0x5441\n\tTIOCGRS485                       = 0x542e\n\tTIOCGSERIAL                      = 0x541e\n\tTIOCGSID                         = 0x5429\n\tTIOCGSOFTCAR                     = 0x5419\n\tTIOCGWINSZ                       = 0x5413\n\tTIOCINQ                          = 0x541b\n\tTIOCLINUX                        = 0x541c\n\tTIOCMBIC                         = 0x5417\n\tTIOCMBIS                         = 0x5416\n\tTIOCMGET                         = 0x5415\n\tTIOCMIWAIT                       = 0x545c\n\tTIOCMSET                         = 0x5418\n\tTIOCM_CAR                        = 0x40\n\tTIOCM_CD                         = 0x40\n\tTIOCM_CTS                        = 0x20\n\tTIOCM_DSR                        = 0x100\n\tTIOCM_RI                         = 0x80\n\tTIOCM_RNG                        = 0x80\n\tTIOCM_SR                         = 0x10\n\tTIOCM_ST                         = 0x8\n\tTIOCNOTTY                        = 0x5422\n\tTIOCNXCL                         = 0x540d\n\tTIOCOUTQ                         = 0x5411\n\tTIOCPKT                          = 0x5420\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x540e\n\tTIOCSERCONFIG                    = 0x5453\n\tTIOCSERGETLSR                    = 0x5459\n\tTIOCSERGETMULTI                  = 0x545a\n\tTIOCSERGSTRUCT                   = 0x5458\n\tTIOCSERGWILD                     = 0x5454\n\tTIOCSERSETMULTI                  = 0x545b\n\tTIOCSERSWILD                     = 0x5455\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x5423\n\tTIOCSIG                          = 0x40045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x5457\n\tTIOCSPGRP                        = 0x5410\n\tTIOCSPTLCK                       = 0x40045431\n\tTIOCSRS485                       = 0x542f\n\tTIOCSSERIAL                      = 0x541f\n\tTIOCSSOFTCAR                     = 0x541a\n\tTIOCSTI                          = 0x5412\n\tTIOCSWINSZ                       = 0x5414\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x100\n\tTUNATTACHFILTER                  = 0x401054d5\n\tTUNDETACHFILTER                  = 0x401054d6\n\tTUNGETDEVNETNS                   = 0x54e3\n\tTUNGETFEATURES                   = 0x800454cf\n\tTUNGETFILTER                     = 0x801054db\n\tTUNGETIFF                        = 0x800454d2\n\tTUNGETSNDBUF                     = 0x800454d3\n\tTUNGETVNETBE                     = 0x800454df\n\tTUNGETVNETHDRSZ                  = 0x800454d7\n\tTUNGETVNETLE                     = 0x800454dd\n\tTUNSETCARRIER                    = 0x400454e2\n\tTUNSETDEBUG                      = 0x400454c9\n\tTUNSETFILTEREBPF                 = 0x800454e1\n\tTUNSETGROUP                      = 0x400454ce\n\tTUNSETIFF                        = 0x400454ca\n\tTUNSETIFINDEX                    = 0x400454da\n\tTUNSETLINK                       = 0x400454cd\n\tTUNSETNOCSUM                     = 0x400454c8\n\tTUNSETOFFLOAD                    = 0x400454d0\n\tTUNSETOWNER                      = 0x400454cc\n\tTUNSETPERSIST                    = 0x400454cb\n\tTUNSETQUEUE                      = 0x400454d9\n\tTUNSETSNDBUF                     = 0x400454d4\n\tTUNSETSTEERINGEBPF               = 0x800454e0\n\tTUNSETTXFILTER                   = 0x400454d1\n\tTUNSETVNETBE                     = 0x400454de\n\tTUNSETVNETHDRSZ                  = 0x400454d8\n\tTUNSETVNETLE                     = 0x400454dc\n\tUBI_IOCATT                       = 0x40186f40\n\tUBI_IOCDET                       = 0x40046f41\n\tUBI_IOCEBCH                      = 0x40044f02\n\tUBI_IOCEBER                      = 0x40044f01\n\tUBI_IOCEBISMAP                   = 0x80044f05\n\tUBI_IOCEBMAP                     = 0x40084f03\n\tUBI_IOCEBUNMAP                   = 0x40044f04\n\tUBI_IOCMKVOL                     = 0x40986f00\n\tUBI_IOCRMVOL                     = 0x40046f01\n\tUBI_IOCRNVOL                     = 0x51106f03\n\tUBI_IOCRPEB                      = 0x40046f04\n\tUBI_IOCRSVOL                     = 0x400c6f02\n\tUBI_IOCSETVOLPROP                = 0x40104f06\n\tUBI_IOCSPEB                      = 0x40046f05\n\tUBI_IOCVOLCRBLK                  = 0x40804f07\n\tUBI_IOCVOLRMBLK                  = 0x4f08\n\tUBI_IOCVOLUP                     = 0x40084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x4\n\tVEOL                             = 0xb\n\tVEOL2                            = 0x10\n\tVMIN                             = 0x6\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x80045702\n\tWDIOC_GETPRETIMEOUT              = 0x80045709\n\tWDIOC_GETSTATUS                  = 0x80045701\n\tWDIOC_GETSUPPORT                 = 0x80285700\n\tWDIOC_GETTEMP                    = 0x80045703\n\tWDIOC_GETTIMELEFT                = 0x8004570a\n\tWDIOC_GETTIMEOUT                 = 0x80045707\n\tWDIOC_KEEPALIVE                  = 0x80045705\n\tWDIOC_SETOPTIONS                 = 0x80045704\n\tWORDSIZE                         = 0x40\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x62)\n\tEADDRNOTAVAIL   = syscall.Errno(0x63)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x61)\n\tEALREADY        = syscall.Errno(0x72)\n\tEBADE           = syscall.Errno(0x34)\n\tEBADFD          = syscall.Errno(0x4d)\n\tEBADMSG         = syscall.Errno(0x4a)\n\tEBADR           = syscall.Errno(0x35)\n\tEBADRQC         = syscall.Errno(0x38)\n\tEBADSLT         = syscall.Errno(0x39)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x7d)\n\tECHRNG          = syscall.Errno(0x2c)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x67)\n\tECONNREFUSED    = syscall.Errno(0x6f)\n\tECONNRESET      = syscall.Errno(0x68)\n\tEDEADLK         = syscall.Errno(0x23)\n\tEDEADLOCK       = syscall.Errno(0x23)\n\tEDESTADDRREQ    = syscall.Errno(0x59)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x7a)\n\tEHOSTDOWN       = syscall.Errno(0x70)\n\tEHOSTUNREACH    = syscall.Errno(0x71)\n\tEHWPOISON       = syscall.Errno(0x85)\n\tEIDRM           = syscall.Errno(0x2b)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x73)\n\tEISCONN         = syscall.Errno(0x6a)\n\tEISNAM          = syscall.Errno(0x78)\n\tEKEYEXPIRED     = syscall.Errno(0x7f)\n\tEKEYREJECTED    = syscall.Errno(0x81)\n\tEKEYREVOKED     = syscall.Errno(0x80)\n\tEL2HLT          = syscall.Errno(0x33)\n\tEL2NSYNC        = syscall.Errno(0x2d)\n\tEL3HLT          = syscall.Errno(0x2e)\n\tEL3RST          = syscall.Errno(0x2f)\n\tELIBACC         = syscall.Errno(0x4f)\n\tELIBBAD         = syscall.Errno(0x50)\n\tELIBEXEC        = syscall.Errno(0x53)\n\tELIBMAX         = syscall.Errno(0x52)\n\tELIBSCN         = syscall.Errno(0x51)\n\tELNRNG          = syscall.Errno(0x30)\n\tELOOP           = syscall.Errno(0x28)\n\tEMEDIUMTYPE     = syscall.Errno(0x7c)\n\tEMSGSIZE        = syscall.Errno(0x5a)\n\tEMULTIHOP       = syscall.Errno(0x48)\n\tENAMETOOLONG    = syscall.Errno(0x24)\n\tENAVAIL         = syscall.Errno(0x77)\n\tENETDOWN        = syscall.Errno(0x64)\n\tENETRESET       = syscall.Errno(0x66)\n\tENETUNREACH     = syscall.Errno(0x65)\n\tENOANO          = syscall.Errno(0x37)\n\tENOBUFS         = syscall.Errno(0x69)\n\tENOCSI          = syscall.Errno(0x32)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0x7e)\n\tENOLCK          = syscall.Errno(0x25)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x7b)\n\tENOMSG          = syscall.Errno(0x2a)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x5c)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x26)\n\tENOTCONN        = syscall.Errno(0x6b)\n\tENOTEMPTY       = syscall.Errno(0x27)\n\tENOTNAM         = syscall.Errno(0x76)\n\tENOTRECOVERABLE = syscall.Errno(0x83)\n\tENOTSOCK        = syscall.Errno(0x58)\n\tENOTSUP         = syscall.Errno(0x5f)\n\tENOTUNIQ        = syscall.Errno(0x4c)\n\tEOPNOTSUPP      = syscall.Errno(0x5f)\n\tEOVERFLOW       = syscall.Errno(0x4b)\n\tEOWNERDEAD      = syscall.Errno(0x82)\n\tEPFNOSUPPORT    = syscall.Errno(0x60)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x5d)\n\tEPROTOTYPE      = syscall.Errno(0x5b)\n\tEREMCHG         = syscall.Errno(0x4e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x79)\n\tERESTART        = syscall.Errno(0x55)\n\tERFKILL         = syscall.Errno(0x84)\n\tESHUTDOWN       = syscall.Errno(0x6c)\n\tESOCKTNOSUPPORT = syscall.Errno(0x5e)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x74)\n\tESTRPIPE        = syscall.Errno(0x56)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x6e)\n\tETOOMANYREFS    = syscall.Errno(0x6d)\n\tEUCLEAN         = syscall.Errno(0x75)\n\tEUNATCH         = syscall.Errno(0x31)\n\tEUSERS          = syscall.Errno(0x57)\n\tEXFULL          = syscall.Errno(0x36)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0x7)\n\tSIGCHLD   = syscall.Signal(0x11)\n\tSIGCLD    = syscall.Signal(0x11)\n\tSIGCONT   = syscall.Signal(0x12)\n\tSIGIO     = syscall.Signal(0x1d)\n\tSIGPOLL   = syscall.Signal(0x1d)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x1e)\n\tSIGSTKFLT = syscall.Signal(0x10)\n\tSIGSTOP   = syscall.Signal(0x13)\n\tSIGSYS    = syscall.Signal(0x1f)\n\tSIGTSTP   = syscall.Signal(0x14)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x17)\n\tSIGUSR1   = syscall.Signal(0xa)\n\tSIGUSR2   = syscall.Signal(0xc)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{36, \"ENAMETOOLONG\", \"file name too long\"},\n\t{37, \"ENOLCK\", \"no locks available\"},\n\t{38, \"ENOSYS\", \"function not implemented\"},\n\t{39, \"ENOTEMPTY\", \"directory not empty\"},\n\t{40, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{42, \"ENOMSG\", \"no message of desired type\"},\n\t{43, \"EIDRM\", \"identifier removed\"},\n\t{44, \"ECHRNG\", \"channel number out of range\"},\n\t{45, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{46, \"EL3HLT\", \"level 3 halted\"},\n\t{47, \"EL3RST\", \"level 3 reset\"},\n\t{48, \"ELNRNG\", \"link number out of range\"},\n\t{49, \"EUNATCH\", \"protocol driver not attached\"},\n\t{50, \"ENOCSI\", \"no CSI structure available\"},\n\t{51, \"EL2HLT\", \"level 2 halted\"},\n\t{52, \"EBADE\", \"invalid exchange\"},\n\t{53, \"EBADR\", \"invalid request descriptor\"},\n\t{54, \"EXFULL\", \"exchange full\"},\n\t{55, \"ENOANO\", \"no anode\"},\n\t{56, \"EBADRQC\", \"invalid request code\"},\n\t{57, \"EBADSLT\", \"invalid slot\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{72, \"EMULTIHOP\", \"multihop attempted\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EBADMSG\", \"bad message\"},\n\t{75, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{76, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{77, \"EBADFD\", \"file descriptor in bad state\"},\n\t{78, \"EREMCHG\", \"remote address changed\"},\n\t{79, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{80, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{81, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{82, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{83, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{84, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{85, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{86, \"ESTRPIPE\", \"streams pipe error\"},\n\t{87, \"EUSERS\", \"too many users\"},\n\t{88, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{89, \"EDESTADDRREQ\", \"destination address required\"},\n\t{90, \"EMSGSIZE\", \"message too long\"},\n\t{91, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{92, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{93, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{94, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{95, \"ENOTSUP\", \"operation not supported\"},\n\t{96, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{97, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{98, \"EADDRINUSE\", \"address already in use\"},\n\t{99, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{100, \"ENETDOWN\", \"network is down\"},\n\t{101, \"ENETUNREACH\", \"network is unreachable\"},\n\t{102, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{103, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{104, \"ECONNRESET\", \"connection reset by peer\"},\n\t{105, \"ENOBUFS\", \"no buffer space available\"},\n\t{106, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{107, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{108, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{109, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{110, \"ETIMEDOUT\", \"connection timed out\"},\n\t{111, \"ECONNREFUSED\", \"connection refused\"},\n\t{112, \"EHOSTDOWN\", \"host is down\"},\n\t{113, \"EHOSTUNREACH\", \"no route to host\"},\n\t{114, \"EALREADY\", \"operation already in progress\"},\n\t{115, \"EINPROGRESS\", \"operation now in progress\"},\n\t{116, \"ESTALE\", \"stale file handle\"},\n\t{117, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{118, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{119, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{120, \"EISNAM\", \"is a named type file\"},\n\t{121, \"EREMOTEIO\", \"remote I/O error\"},\n\t{122, \"EDQUOT\", \"disk quota exceeded\"},\n\t{123, \"ENOMEDIUM\", \"no medium found\"},\n\t{124, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{125, \"ECANCELED\", \"operation canceled\"},\n\t{126, \"ENOKEY\", \"required key not available\"},\n\t{127, \"EKEYEXPIRED\", \"key has expired\"},\n\t{128, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{129, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{130, \"EOWNERDEAD\", \"owner died\"},\n\t{131, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{132, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{133, \"EHWPOISON\", \"memory page has hardware error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGBUS\", \"bus error\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGUSR1\", \"user defined signal 1\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGUSR2\", \"user defined signal 2\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGSTKFLT\", \"stack fault\"},\n\t{17, \"SIGCHLD\", \"child exited\"},\n\t{18, \"SIGCONT\", \"continued\"},\n\t{19, \"SIGSTOP\", \"stopped (signal)\"},\n\t{20, \"SIGTSTP\", \"stopped\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGURG\", \"urgent I/O condition\"},\n\t{24, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"file size limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window changed\"},\n\t{29, \"SIGIO\", \"I/O possible\"},\n\t{30, \"SIGPWR\", \"power failure\"},\n\t{31, \"SIGSYS\", \"bad system call\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_arm.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x80041270\n\tBLKBSZSET                        = 0x40041271\n\tBLKFLSBUF                        = 0x1261\n\tBLKFRAGET                        = 0x1265\n\tBLKFRASET                        = 0x1264\n\tBLKGETSIZE                       = 0x1260\n\tBLKGETSIZE64                     = 0x80041272\n\tBLKPBSZGET                       = 0x127b\n\tBLKRAGET                         = 0x1263\n\tBLKRASET                         = 0x1262\n\tBLKROGET                         = 0x125e\n\tBLKROSET                         = 0x125d\n\tBLKRRPART                        = 0x125f\n\tBLKSECTGET                       = 0x1267\n\tBLKSECTSET                       = 0x1266\n\tBLKSSZGET                        = 0x1268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x800\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x40049409\n\tFICLONERANGE                     = 0x4020940d\n\tFLUSHO                           = 0x1000\n\tFS_IOC_ENABLE_VERITY             = 0x40806685\n\tFS_IOC_GETFLAGS                  = 0x80046601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x8010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x400c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x40106614\n\tFS_IOC_SETFLAGS                  = 0x40046602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x800c6613\n\tF_GETLK                          = 0xc\n\tF_GETLK64                        = 0xc\n\tF_GETOWN                         = 0x9\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0xd\n\tF_SETLK64                        = 0xd\n\tF_SETLKW                         = 0xe\n\tF_SETLKW64                       = 0xe\n\tF_SETOWN                         = 0x8\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x8000\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x800\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x7b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_ANON                         = 0x20\n\tMAP_ANONYMOUS                    = 0x20\n\tMAP_DENYWRITE                    = 0x800\n\tMAP_EXECUTABLE                   = 0x1000\n\tMAP_GROWSDOWN                    = 0x100\n\tMAP_HUGETLB                      = 0x40000\n\tMAP_LOCKED                       = 0x2000\n\tMAP_NONBLOCK                     = 0x10000\n\tMAP_NORESERVE                    = 0x4000\n\tMAP_POPULATE                     = 0x8000\n\tMAP_STACK                        = 0x20000\n\tMAP_SYNC                         = 0x80000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x20\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0xb703\n\tNS_GET_OWNER_UID                 = 0xb704\n\tNS_GET_PARENT                    = 0xb702\n\tNS_GET_USERNS                    = 0xb701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x400\n\tO_ASYNC                          = 0x2000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x40\n\tO_DIRECT                         = 0x10000\n\tO_DIRECTORY                      = 0x4000\n\tO_DSYNC                          = 0x1000\n\tO_EXCL                           = 0x80\n\tO_FSYNC                          = 0x101000\n\tO_LARGEFILE                      = 0x20000\n\tO_NDELAY                         = 0x800\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x100\n\tO_NOFOLLOW                       = 0x8000\n\tO_NONBLOCK                       = 0x800\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x101000\n\tO_SYNC                           = 0x101000\n\tO_TMPFILE                        = 0x404000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x2401\n\tPERF_EVENT_IOC_ENABLE            = 0x2400\n\tPERF_EVENT_IOC_ID                = 0x80042407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4004240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x40042409\n\tPERF_EVENT_IOC_PERIOD            = 0x40082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc004240a\n\tPERF_EVENT_IOC_REFRESH           = 0x2402\n\tPERF_EVENT_IOC_RESET             = 0x2403\n\tPERF_EVENT_IOC_SET_BPF           = 0x40042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x40042406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x2405\n\tPPPIOCATTACH                     = 0x4004743d\n\tPPPIOCATTCHAN                    = 0x40047438\n\tPPPIOCCONNECT                    = 0x4004743a\n\tPPPIOCDETACH                     = 0x4004743c\n\tPPPIOCDISCONN                    = 0x7439\n\tPPPIOCGASYNCMAP                  = 0x80047458\n\tPPPIOCGCHAN                      = 0x80047437\n\tPPPIOCGDEBUG                     = 0x80047441\n\tPPPIOCGFLAGS                     = 0x8004745a\n\tPPPIOCGIDLE                      = 0x8008743f\n\tPPPIOCGIDLE32                    = 0x8008743f\n\tPPPIOCGIDLE64                    = 0x8010743f\n\tPPPIOCGL2TPSTATS                 = 0x80487436\n\tPPPIOCGMRU                       = 0x80047453\n\tPPPIOCGRASYNCMAP                 = 0x80047455\n\tPPPIOCGUNIT                      = 0x80047456\n\tPPPIOCGXASYNCMAP                 = 0x80207450\n\tPPPIOCSACTIVE                    = 0x40087446\n\tPPPIOCSASYNCMAP                  = 0x40047457\n\tPPPIOCSCOMPRESS                  = 0x400c744d\n\tPPPIOCSDEBUG                     = 0x40047440\n\tPPPIOCSFLAGS                     = 0x40047459\n\tPPPIOCSMAXCID                    = 0x40047451\n\tPPPIOCSMRRU                      = 0x4004743b\n\tPPPIOCSMRU                       = 0x40047452\n\tPPPIOCSNPMODE                    = 0x4008744b\n\tPPPIOCSPASS                      = 0x40087447\n\tPPPIOCSRASYNCMAP                 = 0x40047454\n\tPPPIOCSXASYNCMAP                 = 0x4020744f\n\tPPPIOCXFERUNIT                   = 0x744e\n\tPR_SET_PTRACER_ANY               = 0xffffffff\n\tPTRACE_GETCRUNCHREGS             = 0x19\n\tPTRACE_GETFDPIC                  = 0x1f\n\tPTRACE_GETFDPIC_EXEC             = 0x0\n\tPTRACE_GETFDPIC_INTERP           = 0x1\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GETHBPREGS                = 0x1d\n\tPTRACE_GETVFPREGS                = 0x1b\n\tPTRACE_GETWMMXREGS               = 0x12\n\tPTRACE_GET_THREAD_AREA           = 0x16\n\tPTRACE_OLDSETOPTIONS             = 0x15\n\tPTRACE_SETCRUNCHREGS             = 0x1a\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SETHBPREGS                = 0x1e\n\tPTRACE_SETVFPREGS                = 0x1c\n\tPTRACE_SETWMMXREGS               = 0x13\n\tPTRACE_SET_SYSCALL               = 0x17\n\tPT_DATA_ADDR                     = 0x10004\n\tPT_TEXT_ADDR                     = 0x10000\n\tPT_TEXT_END_ADDR                 = 0x10008\n\tRLIMIT_AS                        = 0x9\n\tRLIMIT_MEMLOCK                   = 0x8\n\tRLIMIT_NOFILE                    = 0x7\n\tRLIMIT_NPROC                     = 0x6\n\tRLIMIT_RSS                       = 0x5\n\tRNDADDENTROPY                    = 0x40085203\n\tRNDADDTOENTCNT                   = 0x40045201\n\tRNDCLEARPOOL                     = 0x5206\n\tRNDGETENTCNT                     = 0x80045200\n\tRNDGETPOOL                       = 0x80085202\n\tRNDRESEEDCRNG                    = 0x5207\n\tRNDZAPENTCNT                     = 0x5204\n\tRTC_AIE_OFF                      = 0x7002\n\tRTC_AIE_ON                       = 0x7001\n\tRTC_ALM_READ                     = 0x80247008\n\tRTC_ALM_SET                      = 0x40247007\n\tRTC_EPOCH_READ                   = 0x8004700d\n\tRTC_EPOCH_SET                    = 0x4004700e\n\tRTC_IRQP_READ                    = 0x8004700b\n\tRTC_IRQP_SET                     = 0x4004700c\n\tRTC_PIE_OFF                      = 0x7006\n\tRTC_PIE_ON                       = 0x7005\n\tRTC_PLL_GET                      = 0x801c7011\n\tRTC_PLL_SET                      = 0x401c7012\n\tRTC_RD_TIME                      = 0x80247009\n\tRTC_SET_TIME                     = 0x4024700a\n\tRTC_UIE_OFF                      = 0x7004\n\tRTC_UIE_ON                       = 0x7003\n\tRTC_VL_CLR                       = 0x7014\n\tRTC_VL_READ                      = 0x80047013\n\tRTC_WIE_OFF                      = 0x7010\n\tRTC_WIE_ON                       = 0x700f\n\tRTC_WKALM_RD                     = 0x80287010\n\tRTC_WKALM_SET                    = 0x4028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x800\n\tSIOCATMARK                       = 0x8905\n\tSIOCGPGRP                        = 0x8904\n\tSIOCGSTAMPNS_NEW                 = 0x80108907\n\tSIOCGSTAMP_NEW                   = 0x80108906\n\tSIOCINQ                          = 0x541b\n\tSIOCOUTQ                         = 0x5411\n\tSIOCSPGRP                        = 0x8902\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x2\n\tSOCK_NONBLOCK                    = 0x800\n\tSOCK_STREAM                      = 0x1\n\tSOL_SOCKET                       = 0x1\n\tSO_ACCEPTCONN                    = 0x1e\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x6\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x27\n\tSO_DONTROUTE                     = 0x5\n\tSO_ERROR                         = 0x4\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x9\n\tSO_LINGER                        = 0xd\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0xa\n\tSO_PASSCRED                      = 0x10\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x11\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1f\n\tSO_PROTOCOL                      = 0x26\n\tSO_RCVBUF                        = 0x8\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x12\n\tSO_RCVTIMEO                      = 0x14\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x14\n\tSO_REUSEADDR                     = 0x2\n\tSO_REUSEPORT                     = 0xf\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x7\n\tSO_SNDBUFFORCE                   = 0x20\n\tSO_SNDLOWAT                      = 0x13\n\tSO_SNDTIMEO                      = 0x15\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x15\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x3\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x540b\n\tTCGETA                           = 0x5405\n\tTCGETS                           = 0x5401\n\tTCGETS2                          = 0x802c542a\n\tTCGETX                           = 0x5432\n\tTCSAFLUSH                        = 0x2\n\tTCSBRK                           = 0x5409\n\tTCSBRKP                          = 0x5425\n\tTCSETA                           = 0x5406\n\tTCSETAF                          = 0x5408\n\tTCSETAW                          = 0x5407\n\tTCSETS                           = 0x5402\n\tTCSETS2                          = 0x402c542b\n\tTCSETSF                          = 0x5404\n\tTCSETSF2                         = 0x402c542d\n\tTCSETSW                          = 0x5403\n\tTCSETSW2                         = 0x402c542c\n\tTCSETX                           = 0x5433\n\tTCSETXF                          = 0x5434\n\tTCSETXW                          = 0x5435\n\tTCXONC                           = 0x540a\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x800\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x541d\n\tTIOCEXCL                         = 0x540c\n\tTIOCGDEV                         = 0x80045432\n\tTIOCGETD                         = 0x5424\n\tTIOCGEXCL                        = 0x80045440\n\tTIOCGICOUNT                      = 0x545d\n\tTIOCGISO7816                     = 0x80285442\n\tTIOCGLCKTRMIOS                   = 0x5456\n\tTIOCGPGRP                        = 0x540f\n\tTIOCGPKT                         = 0x80045438\n\tTIOCGPTLCK                       = 0x80045439\n\tTIOCGPTN                         = 0x80045430\n\tTIOCGPTPEER                      = 0x5441\n\tTIOCGRS485                       = 0x542e\n\tTIOCGSERIAL                      = 0x541e\n\tTIOCGSID                         = 0x5429\n\tTIOCGSOFTCAR                     = 0x5419\n\tTIOCGWINSZ                       = 0x5413\n\tTIOCINQ                          = 0x541b\n\tTIOCLINUX                        = 0x541c\n\tTIOCMBIC                         = 0x5417\n\tTIOCMBIS                         = 0x5416\n\tTIOCMGET                         = 0x5415\n\tTIOCMIWAIT                       = 0x545c\n\tTIOCMSET                         = 0x5418\n\tTIOCM_CAR                        = 0x40\n\tTIOCM_CD                         = 0x40\n\tTIOCM_CTS                        = 0x20\n\tTIOCM_DSR                        = 0x100\n\tTIOCM_RI                         = 0x80\n\tTIOCM_RNG                        = 0x80\n\tTIOCM_SR                         = 0x10\n\tTIOCM_ST                         = 0x8\n\tTIOCNOTTY                        = 0x5422\n\tTIOCNXCL                         = 0x540d\n\tTIOCOUTQ                         = 0x5411\n\tTIOCPKT                          = 0x5420\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x540e\n\tTIOCSERCONFIG                    = 0x5453\n\tTIOCSERGETLSR                    = 0x5459\n\tTIOCSERGETMULTI                  = 0x545a\n\tTIOCSERGSTRUCT                   = 0x5458\n\tTIOCSERGWILD                     = 0x5454\n\tTIOCSERSETMULTI                  = 0x545b\n\tTIOCSERSWILD                     = 0x5455\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x5423\n\tTIOCSIG                          = 0x40045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x5457\n\tTIOCSPGRP                        = 0x5410\n\tTIOCSPTLCK                       = 0x40045431\n\tTIOCSRS485                       = 0x542f\n\tTIOCSSERIAL                      = 0x541f\n\tTIOCSSOFTCAR                     = 0x541a\n\tTIOCSTI                          = 0x5412\n\tTIOCSWINSZ                       = 0x5414\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x100\n\tTUNATTACHFILTER                  = 0x400854d5\n\tTUNDETACHFILTER                  = 0x400854d6\n\tTUNGETDEVNETNS                   = 0x54e3\n\tTUNGETFEATURES                   = 0x800454cf\n\tTUNGETFILTER                     = 0x800854db\n\tTUNGETIFF                        = 0x800454d2\n\tTUNGETSNDBUF                     = 0x800454d3\n\tTUNGETVNETBE                     = 0x800454df\n\tTUNGETVNETHDRSZ                  = 0x800454d7\n\tTUNGETVNETLE                     = 0x800454dd\n\tTUNSETCARRIER                    = 0x400454e2\n\tTUNSETDEBUG                      = 0x400454c9\n\tTUNSETFILTEREBPF                 = 0x800454e1\n\tTUNSETGROUP                      = 0x400454ce\n\tTUNSETIFF                        = 0x400454ca\n\tTUNSETIFINDEX                    = 0x400454da\n\tTUNSETLINK                       = 0x400454cd\n\tTUNSETNOCSUM                     = 0x400454c8\n\tTUNSETOFFLOAD                    = 0x400454d0\n\tTUNSETOWNER                      = 0x400454cc\n\tTUNSETPERSIST                    = 0x400454cb\n\tTUNSETQUEUE                      = 0x400454d9\n\tTUNSETSNDBUF                     = 0x400454d4\n\tTUNSETSTEERINGEBPF               = 0x800454e0\n\tTUNSETTXFILTER                   = 0x400454d1\n\tTUNSETVNETBE                     = 0x400454de\n\tTUNSETVNETHDRSZ                  = 0x400454d8\n\tTUNSETVNETLE                     = 0x400454dc\n\tUBI_IOCATT                       = 0x40186f40\n\tUBI_IOCDET                       = 0x40046f41\n\tUBI_IOCEBCH                      = 0x40044f02\n\tUBI_IOCEBER                      = 0x40044f01\n\tUBI_IOCEBISMAP                   = 0x80044f05\n\tUBI_IOCEBMAP                     = 0x40084f03\n\tUBI_IOCEBUNMAP                   = 0x40044f04\n\tUBI_IOCMKVOL                     = 0x40986f00\n\tUBI_IOCRMVOL                     = 0x40046f01\n\tUBI_IOCRNVOL                     = 0x51106f03\n\tUBI_IOCRPEB                      = 0x40046f04\n\tUBI_IOCRSVOL                     = 0x400c6f02\n\tUBI_IOCSETVOLPROP                = 0x40104f06\n\tUBI_IOCSPEB                      = 0x40046f05\n\tUBI_IOCVOLCRBLK                  = 0x40804f07\n\tUBI_IOCVOLRMBLK                  = 0x4f08\n\tUBI_IOCVOLUP                     = 0x40084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x4\n\tVEOL                             = 0xb\n\tVEOL2                            = 0x10\n\tVMIN                             = 0x6\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x80045702\n\tWDIOC_GETPRETIMEOUT              = 0x80045709\n\tWDIOC_GETSTATUS                  = 0x80045701\n\tWDIOC_GETSUPPORT                 = 0x80285700\n\tWDIOC_GETTEMP                    = 0x80045703\n\tWDIOC_GETTIMELEFT                = 0x8004570a\n\tWDIOC_GETTIMEOUT                 = 0x80045707\n\tWDIOC_KEEPALIVE                  = 0x80045705\n\tWDIOC_SETOPTIONS                 = 0x80045704\n\tWORDSIZE                         = 0x20\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x62)\n\tEADDRNOTAVAIL   = syscall.Errno(0x63)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x61)\n\tEALREADY        = syscall.Errno(0x72)\n\tEBADE           = syscall.Errno(0x34)\n\tEBADFD          = syscall.Errno(0x4d)\n\tEBADMSG         = syscall.Errno(0x4a)\n\tEBADR           = syscall.Errno(0x35)\n\tEBADRQC         = syscall.Errno(0x38)\n\tEBADSLT         = syscall.Errno(0x39)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x7d)\n\tECHRNG          = syscall.Errno(0x2c)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x67)\n\tECONNREFUSED    = syscall.Errno(0x6f)\n\tECONNRESET      = syscall.Errno(0x68)\n\tEDEADLK         = syscall.Errno(0x23)\n\tEDEADLOCK       = syscall.Errno(0x23)\n\tEDESTADDRREQ    = syscall.Errno(0x59)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x7a)\n\tEHOSTDOWN       = syscall.Errno(0x70)\n\tEHOSTUNREACH    = syscall.Errno(0x71)\n\tEHWPOISON       = syscall.Errno(0x85)\n\tEIDRM           = syscall.Errno(0x2b)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x73)\n\tEISCONN         = syscall.Errno(0x6a)\n\tEISNAM          = syscall.Errno(0x78)\n\tEKEYEXPIRED     = syscall.Errno(0x7f)\n\tEKEYREJECTED    = syscall.Errno(0x81)\n\tEKEYREVOKED     = syscall.Errno(0x80)\n\tEL2HLT          = syscall.Errno(0x33)\n\tEL2NSYNC        = syscall.Errno(0x2d)\n\tEL3HLT          = syscall.Errno(0x2e)\n\tEL3RST          = syscall.Errno(0x2f)\n\tELIBACC         = syscall.Errno(0x4f)\n\tELIBBAD         = syscall.Errno(0x50)\n\tELIBEXEC        = syscall.Errno(0x53)\n\tELIBMAX         = syscall.Errno(0x52)\n\tELIBSCN         = syscall.Errno(0x51)\n\tELNRNG          = syscall.Errno(0x30)\n\tELOOP           = syscall.Errno(0x28)\n\tEMEDIUMTYPE     = syscall.Errno(0x7c)\n\tEMSGSIZE        = syscall.Errno(0x5a)\n\tEMULTIHOP       = syscall.Errno(0x48)\n\tENAMETOOLONG    = syscall.Errno(0x24)\n\tENAVAIL         = syscall.Errno(0x77)\n\tENETDOWN        = syscall.Errno(0x64)\n\tENETRESET       = syscall.Errno(0x66)\n\tENETUNREACH     = syscall.Errno(0x65)\n\tENOANO          = syscall.Errno(0x37)\n\tENOBUFS         = syscall.Errno(0x69)\n\tENOCSI          = syscall.Errno(0x32)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0x7e)\n\tENOLCK          = syscall.Errno(0x25)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x7b)\n\tENOMSG          = syscall.Errno(0x2a)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x5c)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x26)\n\tENOTCONN        = syscall.Errno(0x6b)\n\tENOTEMPTY       = syscall.Errno(0x27)\n\tENOTNAM         = syscall.Errno(0x76)\n\tENOTRECOVERABLE = syscall.Errno(0x83)\n\tENOTSOCK        = syscall.Errno(0x58)\n\tENOTSUP         = syscall.Errno(0x5f)\n\tENOTUNIQ        = syscall.Errno(0x4c)\n\tEOPNOTSUPP      = syscall.Errno(0x5f)\n\tEOVERFLOW       = syscall.Errno(0x4b)\n\tEOWNERDEAD      = syscall.Errno(0x82)\n\tEPFNOSUPPORT    = syscall.Errno(0x60)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x5d)\n\tEPROTOTYPE      = syscall.Errno(0x5b)\n\tEREMCHG         = syscall.Errno(0x4e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x79)\n\tERESTART        = syscall.Errno(0x55)\n\tERFKILL         = syscall.Errno(0x84)\n\tESHUTDOWN       = syscall.Errno(0x6c)\n\tESOCKTNOSUPPORT = syscall.Errno(0x5e)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x74)\n\tESTRPIPE        = syscall.Errno(0x56)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x6e)\n\tETOOMANYREFS    = syscall.Errno(0x6d)\n\tEUCLEAN         = syscall.Errno(0x75)\n\tEUNATCH         = syscall.Errno(0x31)\n\tEUSERS          = syscall.Errno(0x57)\n\tEXFULL          = syscall.Errno(0x36)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0x7)\n\tSIGCHLD   = syscall.Signal(0x11)\n\tSIGCLD    = syscall.Signal(0x11)\n\tSIGCONT   = syscall.Signal(0x12)\n\tSIGIO     = syscall.Signal(0x1d)\n\tSIGPOLL   = syscall.Signal(0x1d)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x1e)\n\tSIGSTKFLT = syscall.Signal(0x10)\n\tSIGSTOP   = syscall.Signal(0x13)\n\tSIGSYS    = syscall.Signal(0x1f)\n\tSIGTSTP   = syscall.Signal(0x14)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x17)\n\tSIGUSR1   = syscall.Signal(0xa)\n\tSIGUSR2   = syscall.Signal(0xc)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{36, \"ENAMETOOLONG\", \"file name too long\"},\n\t{37, \"ENOLCK\", \"no locks available\"},\n\t{38, \"ENOSYS\", \"function not implemented\"},\n\t{39, \"ENOTEMPTY\", \"directory not empty\"},\n\t{40, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{42, \"ENOMSG\", \"no message of desired type\"},\n\t{43, \"EIDRM\", \"identifier removed\"},\n\t{44, \"ECHRNG\", \"channel number out of range\"},\n\t{45, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{46, \"EL3HLT\", \"level 3 halted\"},\n\t{47, \"EL3RST\", \"level 3 reset\"},\n\t{48, \"ELNRNG\", \"link number out of range\"},\n\t{49, \"EUNATCH\", \"protocol driver not attached\"},\n\t{50, \"ENOCSI\", \"no CSI structure available\"},\n\t{51, \"EL2HLT\", \"level 2 halted\"},\n\t{52, \"EBADE\", \"invalid exchange\"},\n\t{53, \"EBADR\", \"invalid request descriptor\"},\n\t{54, \"EXFULL\", \"exchange full\"},\n\t{55, \"ENOANO\", \"no anode\"},\n\t{56, \"EBADRQC\", \"invalid request code\"},\n\t{57, \"EBADSLT\", \"invalid slot\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{72, \"EMULTIHOP\", \"multihop attempted\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EBADMSG\", \"bad message\"},\n\t{75, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{76, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{77, \"EBADFD\", \"file descriptor in bad state\"},\n\t{78, \"EREMCHG\", \"remote address changed\"},\n\t{79, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{80, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{81, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{82, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{83, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{84, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{85, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{86, \"ESTRPIPE\", \"streams pipe error\"},\n\t{87, \"EUSERS\", \"too many users\"},\n\t{88, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{89, \"EDESTADDRREQ\", \"destination address required\"},\n\t{90, \"EMSGSIZE\", \"message too long\"},\n\t{91, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{92, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{93, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{94, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{95, \"ENOTSUP\", \"operation not supported\"},\n\t{96, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{97, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{98, \"EADDRINUSE\", \"address already in use\"},\n\t{99, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{100, \"ENETDOWN\", \"network is down\"},\n\t{101, \"ENETUNREACH\", \"network is unreachable\"},\n\t{102, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{103, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{104, \"ECONNRESET\", \"connection reset by peer\"},\n\t{105, \"ENOBUFS\", \"no buffer space available\"},\n\t{106, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{107, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{108, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{109, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{110, \"ETIMEDOUT\", \"connection timed out\"},\n\t{111, \"ECONNREFUSED\", \"connection refused\"},\n\t{112, \"EHOSTDOWN\", \"host is down\"},\n\t{113, \"EHOSTUNREACH\", \"no route to host\"},\n\t{114, \"EALREADY\", \"operation already in progress\"},\n\t{115, \"EINPROGRESS\", \"operation now in progress\"},\n\t{116, \"ESTALE\", \"stale file handle\"},\n\t{117, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{118, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{119, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{120, \"EISNAM\", \"is a named type file\"},\n\t{121, \"EREMOTEIO\", \"remote I/O error\"},\n\t{122, \"EDQUOT\", \"disk quota exceeded\"},\n\t{123, \"ENOMEDIUM\", \"no medium found\"},\n\t{124, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{125, \"ECANCELED\", \"operation canceled\"},\n\t{126, \"ENOKEY\", \"required key not available\"},\n\t{127, \"EKEYEXPIRED\", \"key has expired\"},\n\t{128, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{129, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{130, \"EOWNERDEAD\", \"owner died\"},\n\t{131, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{132, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{133, \"EHWPOISON\", \"memory page has hardware error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGBUS\", \"bus error\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGUSR1\", \"user defined signal 1\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGUSR2\", \"user defined signal 2\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGSTKFLT\", \"stack fault\"},\n\t{17, \"SIGCHLD\", \"child exited\"},\n\t{18, \"SIGCONT\", \"continued\"},\n\t{19, \"SIGSTOP\", \"stopped (signal)\"},\n\t{20, \"SIGTSTP\", \"stopped\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGURG\", \"urgent I/O condition\"},\n\t{24, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"file size limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window changed\"},\n\t{29, \"SIGIO\", \"I/O possible\"},\n\t{30, \"SIGPWR\", \"power failure\"},\n\t{31, \"SIGSYS\", \"bad system call\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include -fsigned-char\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include -fsigned-char _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x80081270\n\tBLKBSZSET                        = 0x40081271\n\tBLKFLSBUF                        = 0x1261\n\tBLKFRAGET                        = 0x1265\n\tBLKFRASET                        = 0x1264\n\tBLKGETSIZE                       = 0x1260\n\tBLKGETSIZE64                     = 0x80081272\n\tBLKPBSZGET                       = 0x127b\n\tBLKRAGET                         = 0x1263\n\tBLKRASET                         = 0x1262\n\tBLKROGET                         = 0x125e\n\tBLKROSET                         = 0x125d\n\tBLKRRPART                        = 0x125f\n\tBLKSECTGET                       = 0x1267\n\tBLKSECTSET                       = 0x1266\n\tBLKSSZGET                        = 0x1268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x800\n\tEPOLL_CLOEXEC                    = 0x80000\n\tESR_MAGIC                        = 0x45535201\n\tEXTPROC                          = 0x10000\n\tEXTRA_MAGIC                      = 0x45585401\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x40049409\n\tFICLONERANGE                     = 0x4020940d\n\tFLUSHO                           = 0x1000\n\tFPSIMD_MAGIC                     = 0x46508001\n\tFS_IOC_ENABLE_VERITY             = 0x40806685\n\tFS_IOC_GETFLAGS                  = 0x80086601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x8010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x400c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x40106614\n\tFS_IOC_SETFLAGS                  = 0x40086602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x800c6613\n\tF_GETLK                          = 0x5\n\tF_GETLK64                        = 0x5\n\tF_GETOWN                         = 0x9\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x6\n\tF_SETLK64                        = 0x6\n\tF_SETLKW                         = 0x7\n\tF_SETLKW64                       = 0x7\n\tF_SETOWN                         = 0x8\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x8000\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x800\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x7b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_ANON                         = 0x20\n\tMAP_ANONYMOUS                    = 0x20\n\tMAP_DENYWRITE                    = 0x800\n\tMAP_EXECUTABLE                   = 0x1000\n\tMAP_GROWSDOWN                    = 0x100\n\tMAP_HUGETLB                      = 0x40000\n\tMAP_LOCKED                       = 0x2000\n\tMAP_NONBLOCK                     = 0x10000\n\tMAP_NORESERVE                    = 0x4000\n\tMAP_POPULATE                     = 0x8000\n\tMAP_STACK                        = 0x20000\n\tMAP_SYNC                         = 0x80000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x40\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0xb703\n\tNS_GET_OWNER_UID                 = 0xb704\n\tNS_GET_PARENT                    = 0xb702\n\tNS_GET_USERNS                    = 0xb701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x400\n\tO_ASYNC                          = 0x2000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x40\n\tO_DIRECT                         = 0x10000\n\tO_DIRECTORY                      = 0x4000\n\tO_DSYNC                          = 0x1000\n\tO_EXCL                           = 0x80\n\tO_FSYNC                          = 0x101000\n\tO_LARGEFILE                      = 0x0\n\tO_NDELAY                         = 0x800\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x100\n\tO_NOFOLLOW                       = 0x8000\n\tO_NONBLOCK                       = 0x800\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x101000\n\tO_SYNC                           = 0x101000\n\tO_TMPFILE                        = 0x404000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x2401\n\tPERF_EVENT_IOC_ENABLE            = 0x2400\n\tPERF_EVENT_IOC_ID                = 0x80082407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x40042409\n\tPERF_EVENT_IOC_PERIOD            = 0x40082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc008240a\n\tPERF_EVENT_IOC_REFRESH           = 0x2402\n\tPERF_EVENT_IOC_RESET             = 0x2403\n\tPERF_EVENT_IOC_SET_BPF           = 0x40042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x40082406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x2405\n\tPPPIOCATTACH                     = 0x4004743d\n\tPPPIOCATTCHAN                    = 0x40047438\n\tPPPIOCCONNECT                    = 0x4004743a\n\tPPPIOCDETACH                     = 0x4004743c\n\tPPPIOCDISCONN                    = 0x7439\n\tPPPIOCGASYNCMAP                  = 0x80047458\n\tPPPIOCGCHAN                      = 0x80047437\n\tPPPIOCGDEBUG                     = 0x80047441\n\tPPPIOCGFLAGS                     = 0x8004745a\n\tPPPIOCGIDLE                      = 0x8010743f\n\tPPPIOCGIDLE32                    = 0x8008743f\n\tPPPIOCGIDLE64                    = 0x8010743f\n\tPPPIOCGL2TPSTATS                 = 0x80487436\n\tPPPIOCGMRU                       = 0x80047453\n\tPPPIOCGRASYNCMAP                 = 0x80047455\n\tPPPIOCGUNIT                      = 0x80047456\n\tPPPIOCGXASYNCMAP                 = 0x80207450\n\tPPPIOCSACTIVE                    = 0x40107446\n\tPPPIOCSASYNCMAP                  = 0x40047457\n\tPPPIOCSCOMPRESS                  = 0x4010744d\n\tPPPIOCSDEBUG                     = 0x40047440\n\tPPPIOCSFLAGS                     = 0x40047459\n\tPPPIOCSMAXCID                    = 0x40047451\n\tPPPIOCSMRRU                      = 0x4004743b\n\tPPPIOCSMRU                       = 0x40047452\n\tPPPIOCSNPMODE                    = 0x4008744b\n\tPPPIOCSPASS                      = 0x40107447\n\tPPPIOCSRASYNCMAP                 = 0x40047454\n\tPPPIOCSXASYNCMAP                 = 0x4020744f\n\tPPPIOCXFERUNIT                   = 0x744e\n\tPROT_BTI                         = 0x10\n\tPR_SET_PTRACER_ANY               = 0xffffffffffffffff\n\tPTRACE_SYSEMU                    = 0x1f\n\tPTRACE_SYSEMU_SINGLESTEP         = 0x20\n\tRLIMIT_AS                        = 0x9\n\tRLIMIT_MEMLOCK                   = 0x8\n\tRLIMIT_NOFILE                    = 0x7\n\tRLIMIT_NPROC                     = 0x6\n\tRLIMIT_RSS                       = 0x5\n\tRNDADDENTROPY                    = 0x40085203\n\tRNDADDTOENTCNT                   = 0x40045201\n\tRNDCLEARPOOL                     = 0x5206\n\tRNDGETENTCNT                     = 0x80045200\n\tRNDGETPOOL                       = 0x80085202\n\tRNDRESEEDCRNG                    = 0x5207\n\tRNDZAPENTCNT                     = 0x5204\n\tRTC_AIE_OFF                      = 0x7002\n\tRTC_AIE_ON                       = 0x7001\n\tRTC_ALM_READ                     = 0x80247008\n\tRTC_ALM_SET                      = 0x40247007\n\tRTC_EPOCH_READ                   = 0x8008700d\n\tRTC_EPOCH_SET                    = 0x4008700e\n\tRTC_IRQP_READ                    = 0x8008700b\n\tRTC_IRQP_SET                     = 0x4008700c\n\tRTC_PIE_OFF                      = 0x7006\n\tRTC_PIE_ON                       = 0x7005\n\tRTC_PLL_GET                      = 0x80207011\n\tRTC_PLL_SET                      = 0x40207012\n\tRTC_RD_TIME                      = 0x80247009\n\tRTC_SET_TIME                     = 0x4024700a\n\tRTC_UIE_OFF                      = 0x7004\n\tRTC_UIE_ON                       = 0x7003\n\tRTC_VL_CLR                       = 0x7014\n\tRTC_VL_READ                      = 0x80047013\n\tRTC_WIE_OFF                      = 0x7010\n\tRTC_WIE_ON                       = 0x700f\n\tRTC_WKALM_RD                     = 0x80287010\n\tRTC_WKALM_SET                    = 0x4028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x800\n\tSIOCATMARK                       = 0x8905\n\tSIOCGPGRP                        = 0x8904\n\tSIOCGSTAMPNS_NEW                 = 0x80108907\n\tSIOCGSTAMP_NEW                   = 0x80108906\n\tSIOCINQ                          = 0x541b\n\tSIOCOUTQ                         = 0x5411\n\tSIOCSPGRP                        = 0x8902\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x2\n\tSOCK_NONBLOCK                    = 0x800\n\tSOCK_STREAM                      = 0x1\n\tSOL_SOCKET                       = 0x1\n\tSO_ACCEPTCONN                    = 0x1e\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x6\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x27\n\tSO_DONTROUTE                     = 0x5\n\tSO_ERROR                         = 0x4\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x9\n\tSO_LINGER                        = 0xd\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0xa\n\tSO_PASSCRED                      = 0x10\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x11\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1f\n\tSO_PROTOCOL                      = 0x26\n\tSO_RCVBUF                        = 0x8\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x12\n\tSO_RCVTIMEO                      = 0x14\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x14\n\tSO_REUSEADDR                     = 0x2\n\tSO_REUSEPORT                     = 0xf\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x7\n\tSO_SNDBUFFORCE                   = 0x20\n\tSO_SNDLOWAT                      = 0x13\n\tSO_SNDTIMEO                      = 0x15\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x15\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x3\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tSVE_MAGIC                        = 0x53564501\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x540b\n\tTCGETA                           = 0x5405\n\tTCGETS                           = 0x5401\n\tTCGETS2                          = 0x802c542a\n\tTCGETX                           = 0x5432\n\tTCSAFLUSH                        = 0x2\n\tTCSBRK                           = 0x5409\n\tTCSBRKP                          = 0x5425\n\tTCSETA                           = 0x5406\n\tTCSETAF                          = 0x5408\n\tTCSETAW                          = 0x5407\n\tTCSETS                           = 0x5402\n\tTCSETS2                          = 0x402c542b\n\tTCSETSF                          = 0x5404\n\tTCSETSF2                         = 0x402c542d\n\tTCSETSW                          = 0x5403\n\tTCSETSW2                         = 0x402c542c\n\tTCSETX                           = 0x5433\n\tTCSETXF                          = 0x5434\n\tTCSETXW                          = 0x5435\n\tTCXONC                           = 0x540a\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x800\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x541d\n\tTIOCEXCL                         = 0x540c\n\tTIOCGDEV                         = 0x80045432\n\tTIOCGETD                         = 0x5424\n\tTIOCGEXCL                        = 0x80045440\n\tTIOCGICOUNT                      = 0x545d\n\tTIOCGISO7816                     = 0x80285442\n\tTIOCGLCKTRMIOS                   = 0x5456\n\tTIOCGPGRP                        = 0x540f\n\tTIOCGPKT                         = 0x80045438\n\tTIOCGPTLCK                       = 0x80045439\n\tTIOCGPTN                         = 0x80045430\n\tTIOCGPTPEER                      = 0x5441\n\tTIOCGRS485                       = 0x542e\n\tTIOCGSERIAL                      = 0x541e\n\tTIOCGSID                         = 0x5429\n\tTIOCGSOFTCAR                     = 0x5419\n\tTIOCGWINSZ                       = 0x5413\n\tTIOCINQ                          = 0x541b\n\tTIOCLINUX                        = 0x541c\n\tTIOCMBIC                         = 0x5417\n\tTIOCMBIS                         = 0x5416\n\tTIOCMGET                         = 0x5415\n\tTIOCMIWAIT                       = 0x545c\n\tTIOCMSET                         = 0x5418\n\tTIOCM_CAR                        = 0x40\n\tTIOCM_CD                         = 0x40\n\tTIOCM_CTS                        = 0x20\n\tTIOCM_DSR                        = 0x100\n\tTIOCM_RI                         = 0x80\n\tTIOCM_RNG                        = 0x80\n\tTIOCM_SR                         = 0x10\n\tTIOCM_ST                         = 0x8\n\tTIOCNOTTY                        = 0x5422\n\tTIOCNXCL                         = 0x540d\n\tTIOCOUTQ                         = 0x5411\n\tTIOCPKT                          = 0x5420\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x540e\n\tTIOCSERCONFIG                    = 0x5453\n\tTIOCSERGETLSR                    = 0x5459\n\tTIOCSERGETMULTI                  = 0x545a\n\tTIOCSERGSTRUCT                   = 0x5458\n\tTIOCSERGWILD                     = 0x5454\n\tTIOCSERSETMULTI                  = 0x545b\n\tTIOCSERSWILD                     = 0x5455\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x5423\n\tTIOCSIG                          = 0x40045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x5457\n\tTIOCSPGRP                        = 0x5410\n\tTIOCSPTLCK                       = 0x40045431\n\tTIOCSRS485                       = 0x542f\n\tTIOCSSERIAL                      = 0x541f\n\tTIOCSSOFTCAR                     = 0x541a\n\tTIOCSTI                          = 0x5412\n\tTIOCSWINSZ                       = 0x5414\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x100\n\tTUNATTACHFILTER                  = 0x401054d5\n\tTUNDETACHFILTER                  = 0x401054d6\n\tTUNGETDEVNETNS                   = 0x54e3\n\tTUNGETFEATURES                   = 0x800454cf\n\tTUNGETFILTER                     = 0x801054db\n\tTUNGETIFF                        = 0x800454d2\n\tTUNGETSNDBUF                     = 0x800454d3\n\tTUNGETVNETBE                     = 0x800454df\n\tTUNGETVNETHDRSZ                  = 0x800454d7\n\tTUNGETVNETLE                     = 0x800454dd\n\tTUNSETCARRIER                    = 0x400454e2\n\tTUNSETDEBUG                      = 0x400454c9\n\tTUNSETFILTEREBPF                 = 0x800454e1\n\tTUNSETGROUP                      = 0x400454ce\n\tTUNSETIFF                        = 0x400454ca\n\tTUNSETIFINDEX                    = 0x400454da\n\tTUNSETLINK                       = 0x400454cd\n\tTUNSETNOCSUM                     = 0x400454c8\n\tTUNSETOFFLOAD                    = 0x400454d0\n\tTUNSETOWNER                      = 0x400454cc\n\tTUNSETPERSIST                    = 0x400454cb\n\tTUNSETQUEUE                      = 0x400454d9\n\tTUNSETSNDBUF                     = 0x400454d4\n\tTUNSETSTEERINGEBPF               = 0x800454e0\n\tTUNSETTXFILTER                   = 0x400454d1\n\tTUNSETVNETBE                     = 0x400454de\n\tTUNSETVNETHDRSZ                  = 0x400454d8\n\tTUNSETVNETLE                     = 0x400454dc\n\tUBI_IOCATT                       = 0x40186f40\n\tUBI_IOCDET                       = 0x40046f41\n\tUBI_IOCEBCH                      = 0x40044f02\n\tUBI_IOCEBER                      = 0x40044f01\n\tUBI_IOCEBISMAP                   = 0x80044f05\n\tUBI_IOCEBMAP                     = 0x40084f03\n\tUBI_IOCEBUNMAP                   = 0x40044f04\n\tUBI_IOCMKVOL                     = 0x40986f00\n\tUBI_IOCRMVOL                     = 0x40046f01\n\tUBI_IOCRNVOL                     = 0x51106f03\n\tUBI_IOCRPEB                      = 0x40046f04\n\tUBI_IOCRSVOL                     = 0x400c6f02\n\tUBI_IOCSETVOLPROP                = 0x40104f06\n\tUBI_IOCSPEB                      = 0x40046f05\n\tUBI_IOCVOLCRBLK                  = 0x40804f07\n\tUBI_IOCVOLRMBLK                  = 0x4f08\n\tUBI_IOCVOLUP                     = 0x40084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x4\n\tVEOL                             = 0xb\n\tVEOL2                            = 0x10\n\tVMIN                             = 0x6\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x80045702\n\tWDIOC_GETPRETIMEOUT              = 0x80045709\n\tWDIOC_GETSTATUS                  = 0x80045701\n\tWDIOC_GETSUPPORT                 = 0x80285700\n\tWDIOC_GETTEMP                    = 0x80045703\n\tWDIOC_GETTIMELEFT                = 0x8004570a\n\tWDIOC_GETTIMEOUT                 = 0x80045707\n\tWDIOC_KEEPALIVE                  = 0x80045705\n\tWDIOC_SETOPTIONS                 = 0x80045704\n\tWORDSIZE                         = 0x40\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x62)\n\tEADDRNOTAVAIL   = syscall.Errno(0x63)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x61)\n\tEALREADY        = syscall.Errno(0x72)\n\tEBADE           = syscall.Errno(0x34)\n\tEBADFD          = syscall.Errno(0x4d)\n\tEBADMSG         = syscall.Errno(0x4a)\n\tEBADR           = syscall.Errno(0x35)\n\tEBADRQC         = syscall.Errno(0x38)\n\tEBADSLT         = syscall.Errno(0x39)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x7d)\n\tECHRNG          = syscall.Errno(0x2c)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x67)\n\tECONNREFUSED    = syscall.Errno(0x6f)\n\tECONNRESET      = syscall.Errno(0x68)\n\tEDEADLK         = syscall.Errno(0x23)\n\tEDEADLOCK       = syscall.Errno(0x23)\n\tEDESTADDRREQ    = syscall.Errno(0x59)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x7a)\n\tEHOSTDOWN       = syscall.Errno(0x70)\n\tEHOSTUNREACH    = syscall.Errno(0x71)\n\tEHWPOISON       = syscall.Errno(0x85)\n\tEIDRM           = syscall.Errno(0x2b)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x73)\n\tEISCONN         = syscall.Errno(0x6a)\n\tEISNAM          = syscall.Errno(0x78)\n\tEKEYEXPIRED     = syscall.Errno(0x7f)\n\tEKEYREJECTED    = syscall.Errno(0x81)\n\tEKEYREVOKED     = syscall.Errno(0x80)\n\tEL2HLT          = syscall.Errno(0x33)\n\tEL2NSYNC        = syscall.Errno(0x2d)\n\tEL3HLT          = syscall.Errno(0x2e)\n\tEL3RST          = syscall.Errno(0x2f)\n\tELIBACC         = syscall.Errno(0x4f)\n\tELIBBAD         = syscall.Errno(0x50)\n\tELIBEXEC        = syscall.Errno(0x53)\n\tELIBMAX         = syscall.Errno(0x52)\n\tELIBSCN         = syscall.Errno(0x51)\n\tELNRNG          = syscall.Errno(0x30)\n\tELOOP           = syscall.Errno(0x28)\n\tEMEDIUMTYPE     = syscall.Errno(0x7c)\n\tEMSGSIZE        = syscall.Errno(0x5a)\n\tEMULTIHOP       = syscall.Errno(0x48)\n\tENAMETOOLONG    = syscall.Errno(0x24)\n\tENAVAIL         = syscall.Errno(0x77)\n\tENETDOWN        = syscall.Errno(0x64)\n\tENETRESET       = syscall.Errno(0x66)\n\tENETUNREACH     = syscall.Errno(0x65)\n\tENOANO          = syscall.Errno(0x37)\n\tENOBUFS         = syscall.Errno(0x69)\n\tENOCSI          = syscall.Errno(0x32)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0x7e)\n\tENOLCK          = syscall.Errno(0x25)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x7b)\n\tENOMSG          = syscall.Errno(0x2a)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x5c)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x26)\n\tENOTCONN        = syscall.Errno(0x6b)\n\tENOTEMPTY       = syscall.Errno(0x27)\n\tENOTNAM         = syscall.Errno(0x76)\n\tENOTRECOVERABLE = syscall.Errno(0x83)\n\tENOTSOCK        = syscall.Errno(0x58)\n\tENOTSUP         = syscall.Errno(0x5f)\n\tENOTUNIQ        = syscall.Errno(0x4c)\n\tEOPNOTSUPP      = syscall.Errno(0x5f)\n\tEOVERFLOW       = syscall.Errno(0x4b)\n\tEOWNERDEAD      = syscall.Errno(0x82)\n\tEPFNOSUPPORT    = syscall.Errno(0x60)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x5d)\n\tEPROTOTYPE      = syscall.Errno(0x5b)\n\tEREMCHG         = syscall.Errno(0x4e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x79)\n\tERESTART        = syscall.Errno(0x55)\n\tERFKILL         = syscall.Errno(0x84)\n\tESHUTDOWN       = syscall.Errno(0x6c)\n\tESOCKTNOSUPPORT = syscall.Errno(0x5e)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x74)\n\tESTRPIPE        = syscall.Errno(0x56)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x6e)\n\tETOOMANYREFS    = syscall.Errno(0x6d)\n\tEUCLEAN         = syscall.Errno(0x75)\n\tEUNATCH         = syscall.Errno(0x31)\n\tEUSERS          = syscall.Errno(0x57)\n\tEXFULL          = syscall.Errno(0x36)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0x7)\n\tSIGCHLD   = syscall.Signal(0x11)\n\tSIGCLD    = syscall.Signal(0x11)\n\tSIGCONT   = syscall.Signal(0x12)\n\tSIGIO     = syscall.Signal(0x1d)\n\tSIGPOLL   = syscall.Signal(0x1d)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x1e)\n\tSIGSTKFLT = syscall.Signal(0x10)\n\tSIGSTOP   = syscall.Signal(0x13)\n\tSIGSYS    = syscall.Signal(0x1f)\n\tSIGTSTP   = syscall.Signal(0x14)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x17)\n\tSIGUSR1   = syscall.Signal(0xa)\n\tSIGUSR2   = syscall.Signal(0xc)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{36, \"ENAMETOOLONG\", \"file name too long\"},\n\t{37, \"ENOLCK\", \"no locks available\"},\n\t{38, \"ENOSYS\", \"function not implemented\"},\n\t{39, \"ENOTEMPTY\", \"directory not empty\"},\n\t{40, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{42, \"ENOMSG\", \"no message of desired type\"},\n\t{43, \"EIDRM\", \"identifier removed\"},\n\t{44, \"ECHRNG\", \"channel number out of range\"},\n\t{45, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{46, \"EL3HLT\", \"level 3 halted\"},\n\t{47, \"EL3RST\", \"level 3 reset\"},\n\t{48, \"ELNRNG\", \"link number out of range\"},\n\t{49, \"EUNATCH\", \"protocol driver not attached\"},\n\t{50, \"ENOCSI\", \"no CSI structure available\"},\n\t{51, \"EL2HLT\", \"level 2 halted\"},\n\t{52, \"EBADE\", \"invalid exchange\"},\n\t{53, \"EBADR\", \"invalid request descriptor\"},\n\t{54, \"EXFULL\", \"exchange full\"},\n\t{55, \"ENOANO\", \"no anode\"},\n\t{56, \"EBADRQC\", \"invalid request code\"},\n\t{57, \"EBADSLT\", \"invalid slot\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{72, \"EMULTIHOP\", \"multihop attempted\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EBADMSG\", \"bad message\"},\n\t{75, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{76, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{77, \"EBADFD\", \"file descriptor in bad state\"},\n\t{78, \"EREMCHG\", \"remote address changed\"},\n\t{79, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{80, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{81, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{82, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{83, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{84, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{85, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{86, \"ESTRPIPE\", \"streams pipe error\"},\n\t{87, \"EUSERS\", \"too many users\"},\n\t{88, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{89, \"EDESTADDRREQ\", \"destination address required\"},\n\t{90, \"EMSGSIZE\", \"message too long\"},\n\t{91, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{92, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{93, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{94, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{95, \"ENOTSUP\", \"operation not supported\"},\n\t{96, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{97, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{98, \"EADDRINUSE\", \"address already in use\"},\n\t{99, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{100, \"ENETDOWN\", \"network is down\"},\n\t{101, \"ENETUNREACH\", \"network is unreachable\"},\n\t{102, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{103, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{104, \"ECONNRESET\", \"connection reset by peer\"},\n\t{105, \"ENOBUFS\", \"no buffer space available\"},\n\t{106, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{107, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{108, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{109, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{110, \"ETIMEDOUT\", \"connection timed out\"},\n\t{111, \"ECONNREFUSED\", \"connection refused\"},\n\t{112, \"EHOSTDOWN\", \"host is down\"},\n\t{113, \"EHOSTUNREACH\", \"no route to host\"},\n\t{114, \"EALREADY\", \"operation already in progress\"},\n\t{115, \"EINPROGRESS\", \"operation now in progress\"},\n\t{116, \"ESTALE\", \"stale file handle\"},\n\t{117, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{118, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{119, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{120, \"EISNAM\", \"is a named type file\"},\n\t{121, \"EREMOTEIO\", \"remote I/O error\"},\n\t{122, \"EDQUOT\", \"disk quota exceeded\"},\n\t{123, \"ENOMEDIUM\", \"no medium found\"},\n\t{124, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{125, \"ECANCELED\", \"operation canceled\"},\n\t{126, \"ENOKEY\", \"required key not available\"},\n\t{127, \"EKEYEXPIRED\", \"key has expired\"},\n\t{128, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{129, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{130, \"EOWNERDEAD\", \"owner died\"},\n\t{131, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{132, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{133, \"EHWPOISON\", \"memory page has hardware error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGBUS\", \"bus error\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGUSR1\", \"user defined signal 1\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGUSR2\", \"user defined signal 2\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGSTKFLT\", \"stack fault\"},\n\t{17, \"SIGCHLD\", \"child exited\"},\n\t{18, \"SIGCONT\", \"continued\"},\n\t{19, \"SIGSTOP\", \"stopped (signal)\"},\n\t{20, \"SIGTSTP\", \"stopped\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGURG\", \"urgent I/O condition\"},\n\t{24, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"file size limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window changed\"},\n\t{29, \"SIGIO\", \"I/O possible\"},\n\t{30, \"SIGPWR\", \"power failure\"},\n\t{31, \"SIGSYS\", \"bad system call\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_mips.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x40041270\n\tBLKBSZSET                        = 0x80041271\n\tBLKFLSBUF                        = 0x20001261\n\tBLKFRAGET                        = 0x20001265\n\tBLKFRASET                        = 0x20001264\n\tBLKGETSIZE                       = 0x20001260\n\tBLKGETSIZE64                     = 0x40041272\n\tBLKPBSZGET                       = 0x2000127b\n\tBLKRAGET                         = 0x20001263\n\tBLKRASET                         = 0x20001262\n\tBLKROGET                         = 0x2000125e\n\tBLKROSET                         = 0x2000125d\n\tBLKRRPART                        = 0x2000125f\n\tBLKSECTGET                       = 0x20001267\n\tBLKSECTSET                       = 0x20001266\n\tBLKSSZGET                        = 0x20001268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x80\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x80049409\n\tFICLONERANGE                     = 0x8020940d\n\tFLUSHO                           = 0x2000\n\tFS_IOC_ENABLE_VERITY             = 0x80806685\n\tFS_IOC_GETFLAGS                  = 0x40046601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x4010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x800c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x80106614\n\tFS_IOC_SETFLAGS                  = 0x80046602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x400c6613\n\tF_GETLK                          = 0x21\n\tF_GETLK64                        = 0x21\n\tF_GETOWN                         = 0x17\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x22\n\tF_SETLK64                        = 0x22\n\tF_SETLKW                         = 0x23\n\tF_SETLKW64                       = 0x23\n\tF_SETOWN                         = 0x18\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x100\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x80\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x200007b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_ANON                         = 0x800\n\tMAP_ANONYMOUS                    = 0x800\n\tMAP_DENYWRITE                    = 0x2000\n\tMAP_EXECUTABLE                   = 0x4000\n\tMAP_GROWSDOWN                    = 0x1000\n\tMAP_HUGETLB                      = 0x80000\n\tMAP_LOCKED                       = 0x8000\n\tMAP_NONBLOCK                     = 0x20000\n\tMAP_NORESERVE                    = 0x400\n\tMAP_POPULATE                     = 0x10000\n\tMAP_RENAME                       = 0x800\n\tMAP_STACK                        = 0x40000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x20\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0x2000b703\n\tNS_GET_OWNER_UID                 = 0x2000b704\n\tNS_GET_PARENT                    = 0x2000b702\n\tNS_GET_USERNS                    = 0x2000b701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x8\n\tO_ASYNC                          = 0x1000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x100\n\tO_DIRECT                         = 0x8000\n\tO_DIRECTORY                      = 0x10000\n\tO_DSYNC                          = 0x10\n\tO_EXCL                           = 0x400\n\tO_FSYNC                          = 0x4010\n\tO_LARGEFILE                      = 0x2000\n\tO_NDELAY                         = 0x80\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x800\n\tO_NOFOLLOW                       = 0x20000\n\tO_NONBLOCK                       = 0x80\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x4010\n\tO_SYNC                           = 0x4010\n\tO_TMPFILE                        = 0x410000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x20002401\n\tPERF_EVENT_IOC_ENABLE            = 0x20002400\n\tPERF_EVENT_IOC_ID                = 0x40042407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8004240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x80042409\n\tPERF_EVENT_IOC_PERIOD            = 0x80082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc004240a\n\tPERF_EVENT_IOC_REFRESH           = 0x20002402\n\tPERF_EVENT_IOC_RESET             = 0x20002403\n\tPERF_EVENT_IOC_SET_BPF           = 0x80042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x80042406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x20002405\n\tPPPIOCATTACH                     = 0x8004743d\n\tPPPIOCATTCHAN                    = 0x80047438\n\tPPPIOCCONNECT                    = 0x8004743a\n\tPPPIOCDETACH                     = 0x8004743c\n\tPPPIOCDISCONN                    = 0x20007439\n\tPPPIOCGASYNCMAP                  = 0x40047458\n\tPPPIOCGCHAN                      = 0x40047437\n\tPPPIOCGDEBUG                     = 0x40047441\n\tPPPIOCGFLAGS                     = 0x4004745a\n\tPPPIOCGIDLE                      = 0x4008743f\n\tPPPIOCGIDLE32                    = 0x4008743f\n\tPPPIOCGIDLE64                    = 0x4010743f\n\tPPPIOCGL2TPSTATS                 = 0x40487436\n\tPPPIOCGMRU                       = 0x40047453\n\tPPPIOCGRASYNCMAP                 = 0x40047455\n\tPPPIOCGUNIT                      = 0x40047456\n\tPPPIOCGXASYNCMAP                 = 0x40207450\n\tPPPIOCSACTIVE                    = 0x80087446\n\tPPPIOCSASYNCMAP                  = 0x80047457\n\tPPPIOCSCOMPRESS                  = 0x800c744d\n\tPPPIOCSDEBUG                     = 0x80047440\n\tPPPIOCSFLAGS                     = 0x80047459\n\tPPPIOCSMAXCID                    = 0x80047451\n\tPPPIOCSMRRU                      = 0x8004743b\n\tPPPIOCSMRU                       = 0x80047452\n\tPPPIOCSNPMODE                    = 0x8008744b\n\tPPPIOCSPASS                      = 0x80087447\n\tPPPIOCSRASYNCMAP                 = 0x80047454\n\tPPPIOCSXASYNCMAP                 = 0x8020744f\n\tPPPIOCXFERUNIT                   = 0x2000744e\n\tPR_SET_PTRACER_ANY               = 0xffffffff\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GET_THREAD_AREA           = 0x19\n\tPTRACE_GET_THREAD_AREA_3264      = 0xc4\n\tPTRACE_GET_WATCH_REGS            = 0xd0\n\tPTRACE_OLDSETOPTIONS             = 0x15\n\tPTRACE_PEEKDATA_3264             = 0xc1\n\tPTRACE_PEEKTEXT_3264             = 0xc0\n\tPTRACE_POKEDATA_3264             = 0xc3\n\tPTRACE_POKETEXT_3264             = 0xc2\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SET_THREAD_AREA           = 0x1a\n\tPTRACE_SET_WATCH_REGS            = 0xd1\n\tRLIMIT_AS                        = 0x6\n\tRLIMIT_MEMLOCK                   = 0x9\n\tRLIMIT_NOFILE                    = 0x5\n\tRLIMIT_NPROC                     = 0x8\n\tRLIMIT_RSS                       = 0x7\n\tRNDADDENTROPY                    = 0x80085203\n\tRNDADDTOENTCNT                   = 0x80045201\n\tRNDCLEARPOOL                     = 0x20005206\n\tRNDGETENTCNT                     = 0x40045200\n\tRNDGETPOOL                       = 0x40085202\n\tRNDRESEEDCRNG                    = 0x20005207\n\tRNDZAPENTCNT                     = 0x20005204\n\tRTC_AIE_OFF                      = 0x20007002\n\tRTC_AIE_ON                       = 0x20007001\n\tRTC_ALM_READ                     = 0x40247008\n\tRTC_ALM_SET                      = 0x80247007\n\tRTC_EPOCH_READ                   = 0x4004700d\n\tRTC_EPOCH_SET                    = 0x8004700e\n\tRTC_IRQP_READ                    = 0x4004700b\n\tRTC_IRQP_SET                     = 0x8004700c\n\tRTC_PIE_OFF                      = 0x20007006\n\tRTC_PIE_ON                       = 0x20007005\n\tRTC_PLL_GET                      = 0x401c7011\n\tRTC_PLL_SET                      = 0x801c7012\n\tRTC_RD_TIME                      = 0x40247009\n\tRTC_SET_TIME                     = 0x8024700a\n\tRTC_UIE_OFF                      = 0x20007004\n\tRTC_UIE_ON                       = 0x20007003\n\tRTC_VL_CLR                       = 0x20007014\n\tRTC_VL_READ                      = 0x40047013\n\tRTC_WIE_OFF                      = 0x20007010\n\tRTC_WIE_ON                       = 0x2000700f\n\tRTC_WKALM_RD                     = 0x40287010\n\tRTC_WKALM_SET                    = 0x8028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x80\n\tSIOCATMARK                       = 0x40047307\n\tSIOCGPGRP                        = 0x40047309\n\tSIOCGSTAMPNS_NEW                 = 0x40108907\n\tSIOCGSTAMP_NEW                   = 0x40108906\n\tSIOCINQ                          = 0x467f\n\tSIOCOUTQ                         = 0x7472\n\tSIOCSPGRP                        = 0x80047308\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x1\n\tSOCK_NONBLOCK                    = 0x80\n\tSOCK_STREAM                      = 0x2\n\tSOL_SOCKET                       = 0xffff\n\tSO_ACCEPTCONN                    = 0x1009\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x20\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x1029\n\tSO_DONTROUTE                     = 0x10\n\tSO_ERROR                         = 0x1007\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x8\n\tSO_LINGER                        = 0x80\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0x100\n\tSO_PASSCRED                      = 0x11\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x12\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1e\n\tSO_PROTOCOL                      = 0x1028\n\tSO_RCVBUF                        = 0x1002\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x1004\n\tSO_RCVTIMEO                      = 0x1006\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x1006\n\tSO_REUSEADDR                     = 0x4\n\tSO_REUSEPORT                     = 0x200\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x1001\n\tSO_SNDBUFFORCE                   = 0x1f\n\tSO_SNDLOWAT                      = 0x1003\n\tSO_SNDTIMEO                      = 0x1005\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x1005\n\tSO_STYLE                         = 0x1008\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x1008\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x5407\n\tTCGETA                           = 0x5401\n\tTCGETS                           = 0x540d\n\tTCGETS2                          = 0x4030542a\n\tTCSAFLUSH                        = 0x5410\n\tTCSBRK                           = 0x5405\n\tTCSBRKP                          = 0x5486\n\tTCSETA                           = 0x5402\n\tTCSETAF                          = 0x5404\n\tTCSETAW                          = 0x5403\n\tTCSETS                           = 0x540e\n\tTCSETS2                          = 0x8030542b\n\tTCSETSF                          = 0x5410\n\tTCSETSF2                         = 0x8030542d\n\tTCSETSW                          = 0x540f\n\tTCSETSW2                         = 0x8030542c\n\tTCXONC                           = 0x5406\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x80\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x80047478\n\tTIOCEXCL                         = 0x740d\n\tTIOCGDEV                         = 0x40045432\n\tTIOCGETD                         = 0x7400\n\tTIOCGETP                         = 0x7408\n\tTIOCGEXCL                        = 0x40045440\n\tTIOCGICOUNT                      = 0x5492\n\tTIOCGISO7816                     = 0x40285442\n\tTIOCGLCKTRMIOS                   = 0x548b\n\tTIOCGLTC                         = 0x7474\n\tTIOCGPGRP                        = 0x40047477\n\tTIOCGPKT                         = 0x40045438\n\tTIOCGPTLCK                       = 0x40045439\n\tTIOCGPTN                         = 0x40045430\n\tTIOCGPTPEER                      = 0x20005441\n\tTIOCGRS485                       = 0x4020542e\n\tTIOCGSERIAL                      = 0x5484\n\tTIOCGSID                         = 0x7416\n\tTIOCGSOFTCAR                     = 0x5481\n\tTIOCGWINSZ                       = 0x40087468\n\tTIOCINQ                          = 0x467f\n\tTIOCLINUX                        = 0x5483\n\tTIOCMBIC                         = 0x741c\n\tTIOCMBIS                         = 0x741b\n\tTIOCMGET                         = 0x741d\n\tTIOCMIWAIT                       = 0x5491\n\tTIOCMSET                         = 0x741a\n\tTIOCM_CAR                        = 0x100\n\tTIOCM_CD                         = 0x100\n\tTIOCM_CTS                        = 0x40\n\tTIOCM_DSR                        = 0x400\n\tTIOCM_RI                         = 0x200\n\tTIOCM_RNG                        = 0x200\n\tTIOCM_SR                         = 0x20\n\tTIOCM_ST                         = 0x10\n\tTIOCNOTTY                        = 0x5471\n\tTIOCNXCL                         = 0x740e\n\tTIOCOUTQ                         = 0x7472\n\tTIOCPKT                          = 0x5470\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x5480\n\tTIOCSERCONFIG                    = 0x5488\n\tTIOCSERGETLSR                    = 0x548e\n\tTIOCSERGETMULTI                  = 0x548f\n\tTIOCSERGSTRUCT                   = 0x548d\n\tTIOCSERGWILD                     = 0x5489\n\tTIOCSERSETMULTI                  = 0x5490\n\tTIOCSERSWILD                     = 0x548a\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x7401\n\tTIOCSETN                         = 0x740a\n\tTIOCSETP                         = 0x7409\n\tTIOCSIG                          = 0x80045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x548c\n\tTIOCSLTC                         = 0x7475\n\tTIOCSPGRP                        = 0x80047476\n\tTIOCSPTLCK                       = 0x80045431\n\tTIOCSRS485                       = 0xc020542f\n\tTIOCSSERIAL                      = 0x5485\n\tTIOCSSOFTCAR                     = 0x5482\n\tTIOCSTI                          = 0x5472\n\tTIOCSWINSZ                       = 0x80087467\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x8000\n\tTUNATTACHFILTER                  = 0x800854d5\n\tTUNDETACHFILTER                  = 0x800854d6\n\tTUNGETDEVNETNS                   = 0x200054e3\n\tTUNGETFEATURES                   = 0x400454cf\n\tTUNGETFILTER                     = 0x400854db\n\tTUNGETIFF                        = 0x400454d2\n\tTUNGETSNDBUF                     = 0x400454d3\n\tTUNGETVNETBE                     = 0x400454df\n\tTUNGETVNETHDRSZ                  = 0x400454d7\n\tTUNGETVNETLE                     = 0x400454dd\n\tTUNSETCARRIER                    = 0x800454e2\n\tTUNSETDEBUG                      = 0x800454c9\n\tTUNSETFILTEREBPF                 = 0x400454e1\n\tTUNSETGROUP                      = 0x800454ce\n\tTUNSETIFF                        = 0x800454ca\n\tTUNSETIFINDEX                    = 0x800454da\n\tTUNSETLINK                       = 0x800454cd\n\tTUNSETNOCSUM                     = 0x800454c8\n\tTUNSETOFFLOAD                    = 0x800454d0\n\tTUNSETOWNER                      = 0x800454cc\n\tTUNSETPERSIST                    = 0x800454cb\n\tTUNSETQUEUE                      = 0x800454d9\n\tTUNSETSNDBUF                     = 0x800454d4\n\tTUNSETSTEERINGEBPF               = 0x400454e0\n\tTUNSETTXFILTER                   = 0x800454d1\n\tTUNSETVNETBE                     = 0x800454de\n\tTUNSETVNETHDRSZ                  = 0x800454d8\n\tTUNSETVNETLE                     = 0x800454dc\n\tUBI_IOCATT                       = 0x80186f40\n\tUBI_IOCDET                       = 0x80046f41\n\tUBI_IOCEBCH                      = 0x80044f02\n\tUBI_IOCEBER                      = 0x80044f01\n\tUBI_IOCEBISMAP                   = 0x40044f05\n\tUBI_IOCEBMAP                     = 0x80084f03\n\tUBI_IOCEBUNMAP                   = 0x80044f04\n\tUBI_IOCMKVOL                     = 0x80986f00\n\tUBI_IOCRMVOL                     = 0x80046f01\n\tUBI_IOCRNVOL                     = 0x91106f03\n\tUBI_IOCRPEB                      = 0x80046f04\n\tUBI_IOCRSVOL                     = 0x800c6f02\n\tUBI_IOCSETVOLPROP                = 0x80104f06\n\tUBI_IOCSPEB                      = 0x80046f05\n\tUBI_IOCVOLCRBLK                  = 0x80804f07\n\tUBI_IOCVOLRMBLK                  = 0x20004f08\n\tUBI_IOCVOLUP                     = 0x80084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x10\n\tVEOL                             = 0x11\n\tVEOL2                            = 0x6\n\tVMIN                             = 0x4\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVSWTCH                           = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x40045702\n\tWDIOC_GETPRETIMEOUT              = 0x40045709\n\tWDIOC_GETSTATUS                  = 0x40045701\n\tWDIOC_GETSUPPORT                 = 0x40285700\n\tWDIOC_GETTEMP                    = 0x40045703\n\tWDIOC_GETTIMELEFT                = 0x4004570a\n\tWDIOC_GETTIMEOUT                 = 0x40045707\n\tWDIOC_KEEPALIVE                  = 0x40045705\n\tWDIOC_SETOPTIONS                 = 0x40045704\n\tWORDSIZE                         = 0x20\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x7d)\n\tEADDRNOTAVAIL   = syscall.Errno(0x7e)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x7c)\n\tEALREADY        = syscall.Errno(0x95)\n\tEBADE           = syscall.Errno(0x32)\n\tEBADFD          = syscall.Errno(0x51)\n\tEBADMSG         = syscall.Errno(0x4d)\n\tEBADR           = syscall.Errno(0x33)\n\tEBADRQC         = syscall.Errno(0x36)\n\tEBADSLT         = syscall.Errno(0x37)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x9e)\n\tECHRNG          = syscall.Errno(0x25)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x82)\n\tECONNREFUSED    = syscall.Errno(0x92)\n\tECONNRESET      = syscall.Errno(0x83)\n\tEDEADLK         = syscall.Errno(0x2d)\n\tEDEADLOCK       = syscall.Errno(0x38)\n\tEDESTADDRREQ    = syscall.Errno(0x60)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x46d)\n\tEHOSTDOWN       = syscall.Errno(0x93)\n\tEHOSTUNREACH    = syscall.Errno(0x94)\n\tEHWPOISON       = syscall.Errno(0xa8)\n\tEIDRM           = syscall.Errno(0x24)\n\tEILSEQ          = syscall.Errno(0x58)\n\tEINIT           = syscall.Errno(0x8d)\n\tEINPROGRESS     = syscall.Errno(0x96)\n\tEISCONN         = syscall.Errno(0x85)\n\tEISNAM          = syscall.Errno(0x8b)\n\tEKEYEXPIRED     = syscall.Errno(0xa2)\n\tEKEYREJECTED    = syscall.Errno(0xa4)\n\tEKEYREVOKED     = syscall.Errno(0xa3)\n\tEL2HLT          = syscall.Errno(0x2c)\n\tEL2NSYNC        = syscall.Errno(0x26)\n\tEL3HLT          = syscall.Errno(0x27)\n\tEL3RST          = syscall.Errno(0x28)\n\tELIBACC         = syscall.Errno(0x53)\n\tELIBBAD         = syscall.Errno(0x54)\n\tELIBEXEC        = syscall.Errno(0x57)\n\tELIBMAX         = syscall.Errno(0x56)\n\tELIBSCN         = syscall.Errno(0x55)\n\tELNRNG          = syscall.Errno(0x29)\n\tELOOP           = syscall.Errno(0x5a)\n\tEMEDIUMTYPE     = syscall.Errno(0xa0)\n\tEMSGSIZE        = syscall.Errno(0x61)\n\tEMULTIHOP       = syscall.Errno(0x4a)\n\tENAMETOOLONG    = syscall.Errno(0x4e)\n\tENAVAIL         = syscall.Errno(0x8a)\n\tENETDOWN        = syscall.Errno(0x7f)\n\tENETRESET       = syscall.Errno(0x81)\n\tENETUNREACH     = syscall.Errno(0x80)\n\tENOANO          = syscall.Errno(0x35)\n\tENOBUFS         = syscall.Errno(0x84)\n\tENOCSI          = syscall.Errno(0x2b)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0xa1)\n\tENOLCK          = syscall.Errno(0x2e)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x9f)\n\tENOMSG          = syscall.Errno(0x23)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x63)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x59)\n\tENOTCONN        = syscall.Errno(0x86)\n\tENOTEMPTY       = syscall.Errno(0x5d)\n\tENOTNAM         = syscall.Errno(0x89)\n\tENOTRECOVERABLE = syscall.Errno(0xa6)\n\tENOTSOCK        = syscall.Errno(0x5f)\n\tENOTSUP         = syscall.Errno(0x7a)\n\tENOTUNIQ        = syscall.Errno(0x50)\n\tEOPNOTSUPP      = syscall.Errno(0x7a)\n\tEOVERFLOW       = syscall.Errno(0x4f)\n\tEOWNERDEAD      = syscall.Errno(0xa5)\n\tEPFNOSUPPORT    = syscall.Errno(0x7b)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x78)\n\tEPROTOTYPE      = syscall.Errno(0x62)\n\tEREMCHG         = syscall.Errno(0x52)\n\tEREMDEV         = syscall.Errno(0x8e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x8c)\n\tERESTART        = syscall.Errno(0x5b)\n\tERFKILL         = syscall.Errno(0xa7)\n\tESHUTDOWN       = syscall.Errno(0x8f)\n\tESOCKTNOSUPPORT = syscall.Errno(0x79)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x97)\n\tESTRPIPE        = syscall.Errno(0x5c)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x91)\n\tETOOMANYREFS    = syscall.Errno(0x90)\n\tEUCLEAN         = syscall.Errno(0x87)\n\tEUNATCH         = syscall.Errno(0x2a)\n\tEUSERS          = syscall.Errno(0x5e)\n\tEXFULL          = syscall.Errno(0x34)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x12)\n\tSIGCLD    = syscall.Signal(0x12)\n\tSIGCONT   = syscall.Signal(0x19)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGIO     = syscall.Signal(0x16)\n\tSIGPOLL   = syscall.Signal(0x16)\n\tSIGPROF   = syscall.Signal(0x1d)\n\tSIGPWR    = syscall.Signal(0x13)\n\tSIGSTOP   = syscall.Signal(0x17)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTSTP   = syscall.Signal(0x18)\n\tSIGTTIN   = syscall.Signal(0x1a)\n\tSIGTTOU   = syscall.Signal(0x1b)\n\tSIGURG    = syscall.Signal(0x15)\n\tSIGUSR1   = syscall.Signal(0x10)\n\tSIGUSR2   = syscall.Signal(0x11)\n\tSIGVTALRM = syscall.Signal(0x1c)\n\tSIGWINCH  = syscall.Signal(0x14)\n\tSIGXCPU   = syscall.Signal(0x1e)\n\tSIGXFSZ   = syscall.Signal(0x1f)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"ENOMSG\", \"no message of desired type\"},\n\t{36, \"EIDRM\", \"identifier removed\"},\n\t{37, \"ECHRNG\", \"channel number out of range\"},\n\t{38, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{39, \"EL3HLT\", \"level 3 halted\"},\n\t{40, \"EL3RST\", \"level 3 reset\"},\n\t{41, \"ELNRNG\", \"link number out of range\"},\n\t{42, \"EUNATCH\", \"protocol driver not attached\"},\n\t{43, \"ENOCSI\", \"no CSI structure available\"},\n\t{44, \"EL2HLT\", \"level 2 halted\"},\n\t{45, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{46, \"ENOLCK\", \"no locks available\"},\n\t{50, \"EBADE\", \"invalid exchange\"},\n\t{51, \"EBADR\", \"invalid request descriptor\"},\n\t{52, \"EXFULL\", \"exchange full\"},\n\t{53, \"ENOANO\", \"no anode\"},\n\t{54, \"EBADRQC\", \"invalid request code\"},\n\t{55, \"EBADSLT\", \"invalid slot\"},\n\t{56, \"EDEADLOCK\", \"file locking deadlock error\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EMULTIHOP\", \"multihop attempted\"},\n\t{77, \"EBADMSG\", \"bad message\"},\n\t{78, \"ENAMETOOLONG\", \"file name too long\"},\n\t{79, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{80, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{81, \"EBADFD\", \"file descriptor in bad state\"},\n\t{82, \"EREMCHG\", \"remote address changed\"},\n\t{83, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{84, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{85, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{86, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{87, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{88, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{89, \"ENOSYS\", \"function not implemented\"},\n\t{90, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{91, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{92, \"ESTRPIPE\", \"streams pipe error\"},\n\t{93, \"ENOTEMPTY\", \"directory not empty\"},\n\t{94, \"EUSERS\", \"too many users\"},\n\t{95, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{96, \"EDESTADDRREQ\", \"destination address required\"},\n\t{97, \"EMSGSIZE\", \"message too long\"},\n\t{98, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{99, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{120, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{121, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{122, \"ENOTSUP\", \"operation not supported\"},\n\t{123, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{124, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{125, \"EADDRINUSE\", \"address already in use\"},\n\t{126, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{127, \"ENETDOWN\", \"network is down\"},\n\t{128, \"ENETUNREACH\", \"network is unreachable\"},\n\t{129, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{130, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{131, \"ECONNRESET\", \"connection reset by peer\"},\n\t{132, \"ENOBUFS\", \"no buffer space available\"},\n\t{133, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{134, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{135, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{137, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{138, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{139, \"EISNAM\", \"is a named type file\"},\n\t{140, \"EREMOTEIO\", \"remote I/O error\"},\n\t{141, \"EINIT\", \"unknown error 141\"},\n\t{142, \"EREMDEV\", \"unknown error 142\"},\n\t{143, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{144, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{145, \"ETIMEDOUT\", \"connection timed out\"},\n\t{146, \"ECONNREFUSED\", \"connection refused\"},\n\t{147, \"EHOSTDOWN\", \"host is down\"},\n\t{148, \"EHOSTUNREACH\", \"no route to host\"},\n\t{149, \"EALREADY\", \"operation already in progress\"},\n\t{150, \"EINPROGRESS\", \"operation now in progress\"},\n\t{151, \"ESTALE\", \"stale file handle\"},\n\t{158, \"ECANCELED\", \"operation canceled\"},\n\t{159, \"ENOMEDIUM\", \"no medium found\"},\n\t{160, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{161, \"ENOKEY\", \"required key not available\"},\n\t{162, \"EKEYEXPIRED\", \"key has expired\"},\n\t{163, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{164, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{165, \"EOWNERDEAD\", \"owner died\"},\n\t{166, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{167, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{168, \"EHWPOISON\", \"memory page has hardware error\"},\n\t{1133, \"EDQUOT\", \"disk quota exceeded\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGUSR1\", \"user defined signal 1\"},\n\t{17, \"SIGUSR2\", \"user defined signal 2\"},\n\t{18, \"SIGCHLD\", \"child exited\"},\n\t{19, \"SIGPWR\", \"power failure\"},\n\t{20, \"SIGWINCH\", \"window changed\"},\n\t{21, \"SIGURG\", \"urgent I/O condition\"},\n\t{22, \"SIGIO\", \"I/O possible\"},\n\t{23, \"SIGSTOP\", \"stopped (signal)\"},\n\t{24, \"SIGTSTP\", \"stopped\"},\n\t{25, \"SIGCONT\", \"continued\"},\n\t{26, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{27, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{28, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{29, \"SIGPROF\", \"profiling timer expired\"},\n\t{30, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{31, \"SIGXFSZ\", \"file size limit exceeded\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips64,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x40081270\n\tBLKBSZSET                        = 0x80081271\n\tBLKFLSBUF                        = 0x20001261\n\tBLKFRAGET                        = 0x20001265\n\tBLKFRASET                        = 0x20001264\n\tBLKGETSIZE                       = 0x20001260\n\tBLKGETSIZE64                     = 0x40081272\n\tBLKPBSZGET                       = 0x2000127b\n\tBLKRAGET                         = 0x20001263\n\tBLKRASET                         = 0x20001262\n\tBLKROGET                         = 0x2000125e\n\tBLKROSET                         = 0x2000125d\n\tBLKRRPART                        = 0x2000125f\n\tBLKSECTGET                       = 0x20001267\n\tBLKSECTSET                       = 0x20001266\n\tBLKSSZGET                        = 0x20001268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x80\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x80049409\n\tFICLONERANGE                     = 0x8020940d\n\tFLUSHO                           = 0x2000\n\tFS_IOC_ENABLE_VERITY             = 0x80806685\n\tFS_IOC_GETFLAGS                  = 0x40086601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x4010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x800c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x80106614\n\tFS_IOC_SETFLAGS                  = 0x80086602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x400c6613\n\tF_GETLK                          = 0xe\n\tF_GETLK64                        = 0xe\n\tF_GETOWN                         = 0x17\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x6\n\tF_SETLK64                        = 0x6\n\tF_SETLKW                         = 0x7\n\tF_SETLKW64                       = 0x7\n\tF_SETOWN                         = 0x18\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x100\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x80\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x200007b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_ANON                         = 0x800\n\tMAP_ANONYMOUS                    = 0x800\n\tMAP_DENYWRITE                    = 0x2000\n\tMAP_EXECUTABLE                   = 0x4000\n\tMAP_GROWSDOWN                    = 0x1000\n\tMAP_HUGETLB                      = 0x80000\n\tMAP_LOCKED                       = 0x8000\n\tMAP_NONBLOCK                     = 0x20000\n\tMAP_NORESERVE                    = 0x400\n\tMAP_POPULATE                     = 0x10000\n\tMAP_RENAME                       = 0x800\n\tMAP_STACK                        = 0x40000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x40\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0x2000b703\n\tNS_GET_OWNER_UID                 = 0x2000b704\n\tNS_GET_PARENT                    = 0x2000b702\n\tNS_GET_USERNS                    = 0x2000b701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x8\n\tO_ASYNC                          = 0x1000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x100\n\tO_DIRECT                         = 0x8000\n\tO_DIRECTORY                      = 0x10000\n\tO_DSYNC                          = 0x10\n\tO_EXCL                           = 0x400\n\tO_FSYNC                          = 0x4010\n\tO_LARGEFILE                      = 0x0\n\tO_NDELAY                         = 0x80\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x800\n\tO_NOFOLLOW                       = 0x20000\n\tO_NONBLOCK                       = 0x80\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x4010\n\tO_SYNC                           = 0x4010\n\tO_TMPFILE                        = 0x410000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x20002401\n\tPERF_EVENT_IOC_ENABLE            = 0x20002400\n\tPERF_EVENT_IOC_ID                = 0x40082407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x80042409\n\tPERF_EVENT_IOC_PERIOD            = 0x80082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc008240a\n\tPERF_EVENT_IOC_REFRESH           = 0x20002402\n\tPERF_EVENT_IOC_RESET             = 0x20002403\n\tPERF_EVENT_IOC_SET_BPF           = 0x80042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x80082406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x20002405\n\tPPPIOCATTACH                     = 0x8004743d\n\tPPPIOCATTCHAN                    = 0x80047438\n\tPPPIOCCONNECT                    = 0x8004743a\n\tPPPIOCDETACH                     = 0x8004743c\n\tPPPIOCDISCONN                    = 0x20007439\n\tPPPIOCGASYNCMAP                  = 0x40047458\n\tPPPIOCGCHAN                      = 0x40047437\n\tPPPIOCGDEBUG                     = 0x40047441\n\tPPPIOCGFLAGS                     = 0x4004745a\n\tPPPIOCGIDLE                      = 0x4010743f\n\tPPPIOCGIDLE32                    = 0x4008743f\n\tPPPIOCGIDLE64                    = 0x4010743f\n\tPPPIOCGL2TPSTATS                 = 0x40487436\n\tPPPIOCGMRU                       = 0x40047453\n\tPPPIOCGRASYNCMAP                 = 0x40047455\n\tPPPIOCGUNIT                      = 0x40047456\n\tPPPIOCGXASYNCMAP                 = 0x40207450\n\tPPPIOCSACTIVE                    = 0x80107446\n\tPPPIOCSASYNCMAP                  = 0x80047457\n\tPPPIOCSCOMPRESS                  = 0x8010744d\n\tPPPIOCSDEBUG                     = 0x80047440\n\tPPPIOCSFLAGS                     = 0x80047459\n\tPPPIOCSMAXCID                    = 0x80047451\n\tPPPIOCSMRRU                      = 0x8004743b\n\tPPPIOCSMRU                       = 0x80047452\n\tPPPIOCSNPMODE                    = 0x8008744b\n\tPPPIOCSPASS                      = 0x80107447\n\tPPPIOCSRASYNCMAP                 = 0x80047454\n\tPPPIOCSXASYNCMAP                 = 0x8020744f\n\tPPPIOCXFERUNIT                   = 0x2000744e\n\tPR_SET_PTRACER_ANY               = 0xffffffffffffffff\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GET_THREAD_AREA           = 0x19\n\tPTRACE_GET_THREAD_AREA_3264      = 0xc4\n\tPTRACE_GET_WATCH_REGS            = 0xd0\n\tPTRACE_OLDSETOPTIONS             = 0x15\n\tPTRACE_PEEKDATA_3264             = 0xc1\n\tPTRACE_PEEKTEXT_3264             = 0xc0\n\tPTRACE_POKEDATA_3264             = 0xc3\n\tPTRACE_POKETEXT_3264             = 0xc2\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SET_THREAD_AREA           = 0x1a\n\tPTRACE_SET_WATCH_REGS            = 0xd1\n\tRLIMIT_AS                        = 0x6\n\tRLIMIT_MEMLOCK                   = 0x9\n\tRLIMIT_NOFILE                    = 0x5\n\tRLIMIT_NPROC                     = 0x8\n\tRLIMIT_RSS                       = 0x7\n\tRNDADDENTROPY                    = 0x80085203\n\tRNDADDTOENTCNT                   = 0x80045201\n\tRNDCLEARPOOL                     = 0x20005206\n\tRNDGETENTCNT                     = 0x40045200\n\tRNDGETPOOL                       = 0x40085202\n\tRNDRESEEDCRNG                    = 0x20005207\n\tRNDZAPENTCNT                     = 0x20005204\n\tRTC_AIE_OFF                      = 0x20007002\n\tRTC_AIE_ON                       = 0x20007001\n\tRTC_ALM_READ                     = 0x40247008\n\tRTC_ALM_SET                      = 0x80247007\n\tRTC_EPOCH_READ                   = 0x4008700d\n\tRTC_EPOCH_SET                    = 0x8008700e\n\tRTC_IRQP_READ                    = 0x4008700b\n\tRTC_IRQP_SET                     = 0x8008700c\n\tRTC_PIE_OFF                      = 0x20007006\n\tRTC_PIE_ON                       = 0x20007005\n\tRTC_PLL_GET                      = 0x40207011\n\tRTC_PLL_SET                      = 0x80207012\n\tRTC_RD_TIME                      = 0x40247009\n\tRTC_SET_TIME                     = 0x8024700a\n\tRTC_UIE_OFF                      = 0x20007004\n\tRTC_UIE_ON                       = 0x20007003\n\tRTC_VL_CLR                       = 0x20007014\n\tRTC_VL_READ                      = 0x40047013\n\tRTC_WIE_OFF                      = 0x20007010\n\tRTC_WIE_ON                       = 0x2000700f\n\tRTC_WKALM_RD                     = 0x40287010\n\tRTC_WKALM_SET                    = 0x8028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x80\n\tSIOCATMARK                       = 0x40047307\n\tSIOCGPGRP                        = 0x40047309\n\tSIOCGSTAMPNS_NEW                 = 0x40108907\n\tSIOCGSTAMP_NEW                   = 0x40108906\n\tSIOCINQ                          = 0x467f\n\tSIOCOUTQ                         = 0x7472\n\tSIOCSPGRP                        = 0x80047308\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x1\n\tSOCK_NONBLOCK                    = 0x80\n\tSOCK_STREAM                      = 0x2\n\tSOL_SOCKET                       = 0xffff\n\tSO_ACCEPTCONN                    = 0x1009\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x20\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x1029\n\tSO_DONTROUTE                     = 0x10\n\tSO_ERROR                         = 0x1007\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x8\n\tSO_LINGER                        = 0x80\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0x100\n\tSO_PASSCRED                      = 0x11\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x12\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1e\n\tSO_PROTOCOL                      = 0x1028\n\tSO_RCVBUF                        = 0x1002\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x1004\n\tSO_RCVTIMEO                      = 0x1006\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x1006\n\tSO_REUSEADDR                     = 0x4\n\tSO_REUSEPORT                     = 0x200\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x1001\n\tSO_SNDBUFFORCE                   = 0x1f\n\tSO_SNDLOWAT                      = 0x1003\n\tSO_SNDTIMEO                      = 0x1005\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x1005\n\tSO_STYLE                         = 0x1008\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x1008\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x5407\n\tTCGETA                           = 0x5401\n\tTCGETS                           = 0x540d\n\tTCGETS2                          = 0x4030542a\n\tTCSAFLUSH                        = 0x5410\n\tTCSBRK                           = 0x5405\n\tTCSBRKP                          = 0x5486\n\tTCSETA                           = 0x5402\n\tTCSETAF                          = 0x5404\n\tTCSETAW                          = 0x5403\n\tTCSETS                           = 0x540e\n\tTCSETS2                          = 0x8030542b\n\tTCSETSF                          = 0x5410\n\tTCSETSF2                         = 0x8030542d\n\tTCSETSW                          = 0x540f\n\tTCSETSW2                         = 0x8030542c\n\tTCXONC                           = 0x5406\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x80\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x80047478\n\tTIOCEXCL                         = 0x740d\n\tTIOCGDEV                         = 0x40045432\n\tTIOCGETD                         = 0x7400\n\tTIOCGETP                         = 0x7408\n\tTIOCGEXCL                        = 0x40045440\n\tTIOCGICOUNT                      = 0x5492\n\tTIOCGISO7816                     = 0x40285442\n\tTIOCGLCKTRMIOS                   = 0x548b\n\tTIOCGLTC                         = 0x7474\n\tTIOCGPGRP                        = 0x40047477\n\tTIOCGPKT                         = 0x40045438\n\tTIOCGPTLCK                       = 0x40045439\n\tTIOCGPTN                         = 0x40045430\n\tTIOCGPTPEER                      = 0x20005441\n\tTIOCGRS485                       = 0x4020542e\n\tTIOCGSERIAL                      = 0x5484\n\tTIOCGSID                         = 0x7416\n\tTIOCGSOFTCAR                     = 0x5481\n\tTIOCGWINSZ                       = 0x40087468\n\tTIOCINQ                          = 0x467f\n\tTIOCLINUX                        = 0x5483\n\tTIOCMBIC                         = 0x741c\n\tTIOCMBIS                         = 0x741b\n\tTIOCMGET                         = 0x741d\n\tTIOCMIWAIT                       = 0x5491\n\tTIOCMSET                         = 0x741a\n\tTIOCM_CAR                        = 0x100\n\tTIOCM_CD                         = 0x100\n\tTIOCM_CTS                        = 0x40\n\tTIOCM_DSR                        = 0x400\n\tTIOCM_RI                         = 0x200\n\tTIOCM_RNG                        = 0x200\n\tTIOCM_SR                         = 0x20\n\tTIOCM_ST                         = 0x10\n\tTIOCNOTTY                        = 0x5471\n\tTIOCNXCL                         = 0x740e\n\tTIOCOUTQ                         = 0x7472\n\tTIOCPKT                          = 0x5470\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x5480\n\tTIOCSERCONFIG                    = 0x5488\n\tTIOCSERGETLSR                    = 0x548e\n\tTIOCSERGETMULTI                  = 0x548f\n\tTIOCSERGSTRUCT                   = 0x548d\n\tTIOCSERGWILD                     = 0x5489\n\tTIOCSERSETMULTI                  = 0x5490\n\tTIOCSERSWILD                     = 0x548a\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x7401\n\tTIOCSETN                         = 0x740a\n\tTIOCSETP                         = 0x7409\n\tTIOCSIG                          = 0x80045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x548c\n\tTIOCSLTC                         = 0x7475\n\tTIOCSPGRP                        = 0x80047476\n\tTIOCSPTLCK                       = 0x80045431\n\tTIOCSRS485                       = 0xc020542f\n\tTIOCSSERIAL                      = 0x5485\n\tTIOCSSOFTCAR                     = 0x5482\n\tTIOCSTI                          = 0x5472\n\tTIOCSWINSZ                       = 0x80087467\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x8000\n\tTUNATTACHFILTER                  = 0x801054d5\n\tTUNDETACHFILTER                  = 0x801054d6\n\tTUNGETDEVNETNS                   = 0x200054e3\n\tTUNGETFEATURES                   = 0x400454cf\n\tTUNGETFILTER                     = 0x401054db\n\tTUNGETIFF                        = 0x400454d2\n\tTUNGETSNDBUF                     = 0x400454d3\n\tTUNGETVNETBE                     = 0x400454df\n\tTUNGETVNETHDRSZ                  = 0x400454d7\n\tTUNGETVNETLE                     = 0x400454dd\n\tTUNSETCARRIER                    = 0x800454e2\n\tTUNSETDEBUG                      = 0x800454c9\n\tTUNSETFILTEREBPF                 = 0x400454e1\n\tTUNSETGROUP                      = 0x800454ce\n\tTUNSETIFF                        = 0x800454ca\n\tTUNSETIFINDEX                    = 0x800454da\n\tTUNSETLINK                       = 0x800454cd\n\tTUNSETNOCSUM                     = 0x800454c8\n\tTUNSETOFFLOAD                    = 0x800454d0\n\tTUNSETOWNER                      = 0x800454cc\n\tTUNSETPERSIST                    = 0x800454cb\n\tTUNSETQUEUE                      = 0x800454d9\n\tTUNSETSNDBUF                     = 0x800454d4\n\tTUNSETSTEERINGEBPF               = 0x400454e0\n\tTUNSETTXFILTER                   = 0x800454d1\n\tTUNSETVNETBE                     = 0x800454de\n\tTUNSETVNETHDRSZ                  = 0x800454d8\n\tTUNSETVNETLE                     = 0x800454dc\n\tUBI_IOCATT                       = 0x80186f40\n\tUBI_IOCDET                       = 0x80046f41\n\tUBI_IOCEBCH                      = 0x80044f02\n\tUBI_IOCEBER                      = 0x80044f01\n\tUBI_IOCEBISMAP                   = 0x40044f05\n\tUBI_IOCEBMAP                     = 0x80084f03\n\tUBI_IOCEBUNMAP                   = 0x80044f04\n\tUBI_IOCMKVOL                     = 0x80986f00\n\tUBI_IOCRMVOL                     = 0x80046f01\n\tUBI_IOCRNVOL                     = 0x91106f03\n\tUBI_IOCRPEB                      = 0x80046f04\n\tUBI_IOCRSVOL                     = 0x800c6f02\n\tUBI_IOCSETVOLPROP                = 0x80104f06\n\tUBI_IOCSPEB                      = 0x80046f05\n\tUBI_IOCVOLCRBLK                  = 0x80804f07\n\tUBI_IOCVOLRMBLK                  = 0x20004f08\n\tUBI_IOCVOLUP                     = 0x80084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x10\n\tVEOL                             = 0x11\n\tVEOL2                            = 0x6\n\tVMIN                             = 0x4\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVSWTCH                           = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x40045702\n\tWDIOC_GETPRETIMEOUT              = 0x40045709\n\tWDIOC_GETSTATUS                  = 0x40045701\n\tWDIOC_GETSUPPORT                 = 0x40285700\n\tWDIOC_GETTEMP                    = 0x40045703\n\tWDIOC_GETTIMELEFT                = 0x4004570a\n\tWDIOC_GETTIMEOUT                 = 0x40045707\n\tWDIOC_KEEPALIVE                  = 0x40045705\n\tWDIOC_SETOPTIONS                 = 0x40045704\n\tWORDSIZE                         = 0x40\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x7d)\n\tEADDRNOTAVAIL   = syscall.Errno(0x7e)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x7c)\n\tEALREADY        = syscall.Errno(0x95)\n\tEBADE           = syscall.Errno(0x32)\n\tEBADFD          = syscall.Errno(0x51)\n\tEBADMSG         = syscall.Errno(0x4d)\n\tEBADR           = syscall.Errno(0x33)\n\tEBADRQC         = syscall.Errno(0x36)\n\tEBADSLT         = syscall.Errno(0x37)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x9e)\n\tECHRNG          = syscall.Errno(0x25)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x82)\n\tECONNREFUSED    = syscall.Errno(0x92)\n\tECONNRESET      = syscall.Errno(0x83)\n\tEDEADLK         = syscall.Errno(0x2d)\n\tEDEADLOCK       = syscall.Errno(0x38)\n\tEDESTADDRREQ    = syscall.Errno(0x60)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x46d)\n\tEHOSTDOWN       = syscall.Errno(0x93)\n\tEHOSTUNREACH    = syscall.Errno(0x94)\n\tEHWPOISON       = syscall.Errno(0xa8)\n\tEIDRM           = syscall.Errno(0x24)\n\tEILSEQ          = syscall.Errno(0x58)\n\tEINIT           = syscall.Errno(0x8d)\n\tEINPROGRESS     = syscall.Errno(0x96)\n\tEISCONN         = syscall.Errno(0x85)\n\tEISNAM          = syscall.Errno(0x8b)\n\tEKEYEXPIRED     = syscall.Errno(0xa2)\n\tEKEYREJECTED    = syscall.Errno(0xa4)\n\tEKEYREVOKED     = syscall.Errno(0xa3)\n\tEL2HLT          = syscall.Errno(0x2c)\n\tEL2NSYNC        = syscall.Errno(0x26)\n\tEL3HLT          = syscall.Errno(0x27)\n\tEL3RST          = syscall.Errno(0x28)\n\tELIBACC         = syscall.Errno(0x53)\n\tELIBBAD         = syscall.Errno(0x54)\n\tELIBEXEC        = syscall.Errno(0x57)\n\tELIBMAX         = syscall.Errno(0x56)\n\tELIBSCN         = syscall.Errno(0x55)\n\tELNRNG          = syscall.Errno(0x29)\n\tELOOP           = syscall.Errno(0x5a)\n\tEMEDIUMTYPE     = syscall.Errno(0xa0)\n\tEMSGSIZE        = syscall.Errno(0x61)\n\tEMULTIHOP       = syscall.Errno(0x4a)\n\tENAMETOOLONG    = syscall.Errno(0x4e)\n\tENAVAIL         = syscall.Errno(0x8a)\n\tENETDOWN        = syscall.Errno(0x7f)\n\tENETRESET       = syscall.Errno(0x81)\n\tENETUNREACH     = syscall.Errno(0x80)\n\tENOANO          = syscall.Errno(0x35)\n\tENOBUFS         = syscall.Errno(0x84)\n\tENOCSI          = syscall.Errno(0x2b)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0xa1)\n\tENOLCK          = syscall.Errno(0x2e)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x9f)\n\tENOMSG          = syscall.Errno(0x23)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x63)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x59)\n\tENOTCONN        = syscall.Errno(0x86)\n\tENOTEMPTY       = syscall.Errno(0x5d)\n\tENOTNAM         = syscall.Errno(0x89)\n\tENOTRECOVERABLE = syscall.Errno(0xa6)\n\tENOTSOCK        = syscall.Errno(0x5f)\n\tENOTSUP         = syscall.Errno(0x7a)\n\tENOTUNIQ        = syscall.Errno(0x50)\n\tEOPNOTSUPP      = syscall.Errno(0x7a)\n\tEOVERFLOW       = syscall.Errno(0x4f)\n\tEOWNERDEAD      = syscall.Errno(0xa5)\n\tEPFNOSUPPORT    = syscall.Errno(0x7b)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x78)\n\tEPROTOTYPE      = syscall.Errno(0x62)\n\tEREMCHG         = syscall.Errno(0x52)\n\tEREMDEV         = syscall.Errno(0x8e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x8c)\n\tERESTART        = syscall.Errno(0x5b)\n\tERFKILL         = syscall.Errno(0xa7)\n\tESHUTDOWN       = syscall.Errno(0x8f)\n\tESOCKTNOSUPPORT = syscall.Errno(0x79)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x97)\n\tESTRPIPE        = syscall.Errno(0x5c)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x91)\n\tETOOMANYREFS    = syscall.Errno(0x90)\n\tEUCLEAN         = syscall.Errno(0x87)\n\tEUNATCH         = syscall.Errno(0x2a)\n\tEUSERS          = syscall.Errno(0x5e)\n\tEXFULL          = syscall.Errno(0x34)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x12)\n\tSIGCLD    = syscall.Signal(0x12)\n\tSIGCONT   = syscall.Signal(0x19)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGIO     = syscall.Signal(0x16)\n\tSIGPOLL   = syscall.Signal(0x16)\n\tSIGPROF   = syscall.Signal(0x1d)\n\tSIGPWR    = syscall.Signal(0x13)\n\tSIGSTOP   = syscall.Signal(0x17)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTSTP   = syscall.Signal(0x18)\n\tSIGTTIN   = syscall.Signal(0x1a)\n\tSIGTTOU   = syscall.Signal(0x1b)\n\tSIGURG    = syscall.Signal(0x15)\n\tSIGUSR1   = syscall.Signal(0x10)\n\tSIGUSR2   = syscall.Signal(0x11)\n\tSIGVTALRM = syscall.Signal(0x1c)\n\tSIGWINCH  = syscall.Signal(0x14)\n\tSIGXCPU   = syscall.Signal(0x1e)\n\tSIGXFSZ   = syscall.Signal(0x1f)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"ENOMSG\", \"no message of desired type\"},\n\t{36, \"EIDRM\", \"identifier removed\"},\n\t{37, \"ECHRNG\", \"channel number out of range\"},\n\t{38, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{39, \"EL3HLT\", \"level 3 halted\"},\n\t{40, \"EL3RST\", \"level 3 reset\"},\n\t{41, \"ELNRNG\", \"link number out of range\"},\n\t{42, \"EUNATCH\", \"protocol driver not attached\"},\n\t{43, \"ENOCSI\", \"no CSI structure available\"},\n\t{44, \"EL2HLT\", \"level 2 halted\"},\n\t{45, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{46, \"ENOLCK\", \"no locks available\"},\n\t{50, \"EBADE\", \"invalid exchange\"},\n\t{51, \"EBADR\", \"invalid request descriptor\"},\n\t{52, \"EXFULL\", \"exchange full\"},\n\t{53, \"ENOANO\", \"no anode\"},\n\t{54, \"EBADRQC\", \"invalid request code\"},\n\t{55, \"EBADSLT\", \"invalid slot\"},\n\t{56, \"EDEADLOCK\", \"file locking deadlock error\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EMULTIHOP\", \"multihop attempted\"},\n\t{77, \"EBADMSG\", \"bad message\"},\n\t{78, \"ENAMETOOLONG\", \"file name too long\"},\n\t{79, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{80, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{81, \"EBADFD\", \"file descriptor in bad state\"},\n\t{82, \"EREMCHG\", \"remote address changed\"},\n\t{83, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{84, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{85, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{86, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{87, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{88, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{89, \"ENOSYS\", \"function not implemented\"},\n\t{90, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{91, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{92, \"ESTRPIPE\", \"streams pipe error\"},\n\t{93, \"ENOTEMPTY\", \"directory not empty\"},\n\t{94, \"EUSERS\", \"too many users\"},\n\t{95, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{96, \"EDESTADDRREQ\", \"destination address required\"},\n\t{97, \"EMSGSIZE\", \"message too long\"},\n\t{98, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{99, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{120, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{121, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{122, \"ENOTSUP\", \"operation not supported\"},\n\t{123, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{124, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{125, \"EADDRINUSE\", \"address already in use\"},\n\t{126, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{127, \"ENETDOWN\", \"network is down\"},\n\t{128, \"ENETUNREACH\", \"network is unreachable\"},\n\t{129, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{130, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{131, \"ECONNRESET\", \"connection reset by peer\"},\n\t{132, \"ENOBUFS\", \"no buffer space available\"},\n\t{133, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{134, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{135, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{137, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{138, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{139, \"EISNAM\", \"is a named type file\"},\n\t{140, \"EREMOTEIO\", \"remote I/O error\"},\n\t{141, \"EINIT\", \"unknown error 141\"},\n\t{142, \"EREMDEV\", \"unknown error 142\"},\n\t{143, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{144, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{145, \"ETIMEDOUT\", \"connection timed out\"},\n\t{146, \"ECONNREFUSED\", \"connection refused\"},\n\t{147, \"EHOSTDOWN\", \"host is down\"},\n\t{148, \"EHOSTUNREACH\", \"no route to host\"},\n\t{149, \"EALREADY\", \"operation already in progress\"},\n\t{150, \"EINPROGRESS\", \"operation now in progress\"},\n\t{151, \"ESTALE\", \"stale file handle\"},\n\t{158, \"ECANCELED\", \"operation canceled\"},\n\t{159, \"ENOMEDIUM\", \"no medium found\"},\n\t{160, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{161, \"ENOKEY\", \"required key not available\"},\n\t{162, \"EKEYEXPIRED\", \"key has expired\"},\n\t{163, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{164, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{165, \"EOWNERDEAD\", \"owner died\"},\n\t{166, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{167, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{168, \"EHWPOISON\", \"memory page has hardware error\"},\n\t{1133, \"EDQUOT\", \"disk quota exceeded\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGUSR1\", \"user defined signal 1\"},\n\t{17, \"SIGUSR2\", \"user defined signal 2\"},\n\t{18, \"SIGCHLD\", \"child exited\"},\n\t{19, \"SIGPWR\", \"power failure\"},\n\t{20, \"SIGWINCH\", \"window changed\"},\n\t{21, \"SIGURG\", \"urgent I/O condition\"},\n\t{22, \"SIGIO\", \"I/O possible\"},\n\t{23, \"SIGSTOP\", \"stopped (signal)\"},\n\t{24, \"SIGTSTP\", \"stopped\"},\n\t{25, \"SIGCONT\", \"continued\"},\n\t{26, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{27, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{28, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{29, \"SIGPROF\", \"profiling timer expired\"},\n\t{30, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{31, \"SIGXFSZ\", \"file size limit exceeded\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips64le,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x40081270\n\tBLKBSZSET                        = 0x80081271\n\tBLKFLSBUF                        = 0x20001261\n\tBLKFRAGET                        = 0x20001265\n\tBLKFRASET                        = 0x20001264\n\tBLKGETSIZE                       = 0x20001260\n\tBLKGETSIZE64                     = 0x40081272\n\tBLKPBSZGET                       = 0x2000127b\n\tBLKRAGET                         = 0x20001263\n\tBLKRASET                         = 0x20001262\n\tBLKROGET                         = 0x2000125e\n\tBLKROSET                         = 0x2000125d\n\tBLKRRPART                        = 0x2000125f\n\tBLKSECTGET                       = 0x20001267\n\tBLKSECTSET                       = 0x20001266\n\tBLKSSZGET                        = 0x20001268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x80\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x80049409\n\tFICLONERANGE                     = 0x8020940d\n\tFLUSHO                           = 0x2000\n\tFS_IOC_ENABLE_VERITY             = 0x80806685\n\tFS_IOC_GETFLAGS                  = 0x40086601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x4010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x800c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x80106614\n\tFS_IOC_SETFLAGS                  = 0x80086602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x400c6613\n\tF_GETLK                          = 0xe\n\tF_GETLK64                        = 0xe\n\tF_GETOWN                         = 0x17\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x6\n\tF_SETLK64                        = 0x6\n\tF_SETLKW                         = 0x7\n\tF_SETLKW64                       = 0x7\n\tF_SETOWN                         = 0x18\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x100\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x80\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x200007b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_ANON                         = 0x800\n\tMAP_ANONYMOUS                    = 0x800\n\tMAP_DENYWRITE                    = 0x2000\n\tMAP_EXECUTABLE                   = 0x4000\n\tMAP_GROWSDOWN                    = 0x1000\n\tMAP_HUGETLB                      = 0x80000\n\tMAP_LOCKED                       = 0x8000\n\tMAP_NONBLOCK                     = 0x20000\n\tMAP_NORESERVE                    = 0x400\n\tMAP_POPULATE                     = 0x10000\n\tMAP_RENAME                       = 0x800\n\tMAP_STACK                        = 0x40000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x40\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0x2000b703\n\tNS_GET_OWNER_UID                 = 0x2000b704\n\tNS_GET_PARENT                    = 0x2000b702\n\tNS_GET_USERNS                    = 0x2000b701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x8\n\tO_ASYNC                          = 0x1000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x100\n\tO_DIRECT                         = 0x8000\n\tO_DIRECTORY                      = 0x10000\n\tO_DSYNC                          = 0x10\n\tO_EXCL                           = 0x400\n\tO_FSYNC                          = 0x4010\n\tO_LARGEFILE                      = 0x0\n\tO_NDELAY                         = 0x80\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x800\n\tO_NOFOLLOW                       = 0x20000\n\tO_NONBLOCK                       = 0x80\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x4010\n\tO_SYNC                           = 0x4010\n\tO_TMPFILE                        = 0x410000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x20002401\n\tPERF_EVENT_IOC_ENABLE            = 0x20002400\n\tPERF_EVENT_IOC_ID                = 0x40082407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x80042409\n\tPERF_EVENT_IOC_PERIOD            = 0x80082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc008240a\n\tPERF_EVENT_IOC_REFRESH           = 0x20002402\n\tPERF_EVENT_IOC_RESET             = 0x20002403\n\tPERF_EVENT_IOC_SET_BPF           = 0x80042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x80082406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x20002405\n\tPPPIOCATTACH                     = 0x8004743d\n\tPPPIOCATTCHAN                    = 0x80047438\n\tPPPIOCCONNECT                    = 0x8004743a\n\tPPPIOCDETACH                     = 0x8004743c\n\tPPPIOCDISCONN                    = 0x20007439\n\tPPPIOCGASYNCMAP                  = 0x40047458\n\tPPPIOCGCHAN                      = 0x40047437\n\tPPPIOCGDEBUG                     = 0x40047441\n\tPPPIOCGFLAGS                     = 0x4004745a\n\tPPPIOCGIDLE                      = 0x4010743f\n\tPPPIOCGIDLE32                    = 0x4008743f\n\tPPPIOCGIDLE64                    = 0x4010743f\n\tPPPIOCGL2TPSTATS                 = 0x40487436\n\tPPPIOCGMRU                       = 0x40047453\n\tPPPIOCGRASYNCMAP                 = 0x40047455\n\tPPPIOCGUNIT                      = 0x40047456\n\tPPPIOCGXASYNCMAP                 = 0x40207450\n\tPPPIOCSACTIVE                    = 0x80107446\n\tPPPIOCSASYNCMAP                  = 0x80047457\n\tPPPIOCSCOMPRESS                  = 0x8010744d\n\tPPPIOCSDEBUG                     = 0x80047440\n\tPPPIOCSFLAGS                     = 0x80047459\n\tPPPIOCSMAXCID                    = 0x80047451\n\tPPPIOCSMRRU                      = 0x8004743b\n\tPPPIOCSMRU                       = 0x80047452\n\tPPPIOCSNPMODE                    = 0x8008744b\n\tPPPIOCSPASS                      = 0x80107447\n\tPPPIOCSRASYNCMAP                 = 0x80047454\n\tPPPIOCSXASYNCMAP                 = 0x8020744f\n\tPPPIOCXFERUNIT                   = 0x2000744e\n\tPR_SET_PTRACER_ANY               = 0xffffffffffffffff\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GET_THREAD_AREA           = 0x19\n\tPTRACE_GET_THREAD_AREA_3264      = 0xc4\n\tPTRACE_GET_WATCH_REGS            = 0xd0\n\tPTRACE_OLDSETOPTIONS             = 0x15\n\tPTRACE_PEEKDATA_3264             = 0xc1\n\tPTRACE_PEEKTEXT_3264             = 0xc0\n\tPTRACE_POKEDATA_3264             = 0xc3\n\tPTRACE_POKETEXT_3264             = 0xc2\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SET_THREAD_AREA           = 0x1a\n\tPTRACE_SET_WATCH_REGS            = 0xd1\n\tRLIMIT_AS                        = 0x6\n\tRLIMIT_MEMLOCK                   = 0x9\n\tRLIMIT_NOFILE                    = 0x5\n\tRLIMIT_NPROC                     = 0x8\n\tRLIMIT_RSS                       = 0x7\n\tRNDADDENTROPY                    = 0x80085203\n\tRNDADDTOENTCNT                   = 0x80045201\n\tRNDCLEARPOOL                     = 0x20005206\n\tRNDGETENTCNT                     = 0x40045200\n\tRNDGETPOOL                       = 0x40085202\n\tRNDRESEEDCRNG                    = 0x20005207\n\tRNDZAPENTCNT                     = 0x20005204\n\tRTC_AIE_OFF                      = 0x20007002\n\tRTC_AIE_ON                       = 0x20007001\n\tRTC_ALM_READ                     = 0x40247008\n\tRTC_ALM_SET                      = 0x80247007\n\tRTC_EPOCH_READ                   = 0x4008700d\n\tRTC_EPOCH_SET                    = 0x8008700e\n\tRTC_IRQP_READ                    = 0x4008700b\n\tRTC_IRQP_SET                     = 0x8008700c\n\tRTC_PIE_OFF                      = 0x20007006\n\tRTC_PIE_ON                       = 0x20007005\n\tRTC_PLL_GET                      = 0x40207011\n\tRTC_PLL_SET                      = 0x80207012\n\tRTC_RD_TIME                      = 0x40247009\n\tRTC_SET_TIME                     = 0x8024700a\n\tRTC_UIE_OFF                      = 0x20007004\n\tRTC_UIE_ON                       = 0x20007003\n\tRTC_VL_CLR                       = 0x20007014\n\tRTC_VL_READ                      = 0x40047013\n\tRTC_WIE_OFF                      = 0x20007010\n\tRTC_WIE_ON                       = 0x2000700f\n\tRTC_WKALM_RD                     = 0x40287010\n\tRTC_WKALM_SET                    = 0x8028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x80\n\tSIOCATMARK                       = 0x40047307\n\tSIOCGPGRP                        = 0x40047309\n\tSIOCGSTAMPNS_NEW                 = 0x40108907\n\tSIOCGSTAMP_NEW                   = 0x40108906\n\tSIOCINQ                          = 0x467f\n\tSIOCOUTQ                         = 0x7472\n\tSIOCSPGRP                        = 0x80047308\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x1\n\tSOCK_NONBLOCK                    = 0x80\n\tSOCK_STREAM                      = 0x2\n\tSOL_SOCKET                       = 0xffff\n\tSO_ACCEPTCONN                    = 0x1009\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x20\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x1029\n\tSO_DONTROUTE                     = 0x10\n\tSO_ERROR                         = 0x1007\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x8\n\tSO_LINGER                        = 0x80\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0x100\n\tSO_PASSCRED                      = 0x11\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x12\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1e\n\tSO_PROTOCOL                      = 0x1028\n\tSO_RCVBUF                        = 0x1002\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x1004\n\tSO_RCVTIMEO                      = 0x1006\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x1006\n\tSO_REUSEADDR                     = 0x4\n\tSO_REUSEPORT                     = 0x200\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x1001\n\tSO_SNDBUFFORCE                   = 0x1f\n\tSO_SNDLOWAT                      = 0x1003\n\tSO_SNDTIMEO                      = 0x1005\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x1005\n\tSO_STYLE                         = 0x1008\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x1008\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x5407\n\tTCGETA                           = 0x5401\n\tTCGETS                           = 0x540d\n\tTCGETS2                          = 0x4030542a\n\tTCSAFLUSH                        = 0x5410\n\tTCSBRK                           = 0x5405\n\tTCSBRKP                          = 0x5486\n\tTCSETA                           = 0x5402\n\tTCSETAF                          = 0x5404\n\tTCSETAW                          = 0x5403\n\tTCSETS                           = 0x540e\n\tTCSETS2                          = 0x8030542b\n\tTCSETSF                          = 0x5410\n\tTCSETSF2                         = 0x8030542d\n\tTCSETSW                          = 0x540f\n\tTCSETSW2                         = 0x8030542c\n\tTCXONC                           = 0x5406\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x80\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x80047478\n\tTIOCEXCL                         = 0x740d\n\tTIOCGDEV                         = 0x40045432\n\tTIOCGETD                         = 0x7400\n\tTIOCGETP                         = 0x7408\n\tTIOCGEXCL                        = 0x40045440\n\tTIOCGICOUNT                      = 0x5492\n\tTIOCGISO7816                     = 0x40285442\n\tTIOCGLCKTRMIOS                   = 0x548b\n\tTIOCGLTC                         = 0x7474\n\tTIOCGPGRP                        = 0x40047477\n\tTIOCGPKT                         = 0x40045438\n\tTIOCGPTLCK                       = 0x40045439\n\tTIOCGPTN                         = 0x40045430\n\tTIOCGPTPEER                      = 0x20005441\n\tTIOCGRS485                       = 0x4020542e\n\tTIOCGSERIAL                      = 0x5484\n\tTIOCGSID                         = 0x7416\n\tTIOCGSOFTCAR                     = 0x5481\n\tTIOCGWINSZ                       = 0x40087468\n\tTIOCINQ                          = 0x467f\n\tTIOCLINUX                        = 0x5483\n\tTIOCMBIC                         = 0x741c\n\tTIOCMBIS                         = 0x741b\n\tTIOCMGET                         = 0x741d\n\tTIOCMIWAIT                       = 0x5491\n\tTIOCMSET                         = 0x741a\n\tTIOCM_CAR                        = 0x100\n\tTIOCM_CD                         = 0x100\n\tTIOCM_CTS                        = 0x40\n\tTIOCM_DSR                        = 0x400\n\tTIOCM_RI                         = 0x200\n\tTIOCM_RNG                        = 0x200\n\tTIOCM_SR                         = 0x20\n\tTIOCM_ST                         = 0x10\n\tTIOCNOTTY                        = 0x5471\n\tTIOCNXCL                         = 0x740e\n\tTIOCOUTQ                         = 0x7472\n\tTIOCPKT                          = 0x5470\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x5480\n\tTIOCSERCONFIG                    = 0x5488\n\tTIOCSERGETLSR                    = 0x548e\n\tTIOCSERGETMULTI                  = 0x548f\n\tTIOCSERGSTRUCT                   = 0x548d\n\tTIOCSERGWILD                     = 0x5489\n\tTIOCSERSETMULTI                  = 0x5490\n\tTIOCSERSWILD                     = 0x548a\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x7401\n\tTIOCSETN                         = 0x740a\n\tTIOCSETP                         = 0x7409\n\tTIOCSIG                          = 0x80045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x548c\n\tTIOCSLTC                         = 0x7475\n\tTIOCSPGRP                        = 0x80047476\n\tTIOCSPTLCK                       = 0x80045431\n\tTIOCSRS485                       = 0xc020542f\n\tTIOCSSERIAL                      = 0x5485\n\tTIOCSSOFTCAR                     = 0x5482\n\tTIOCSTI                          = 0x5472\n\tTIOCSWINSZ                       = 0x80087467\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x8000\n\tTUNATTACHFILTER                  = 0x801054d5\n\tTUNDETACHFILTER                  = 0x801054d6\n\tTUNGETDEVNETNS                   = 0x200054e3\n\tTUNGETFEATURES                   = 0x400454cf\n\tTUNGETFILTER                     = 0x401054db\n\tTUNGETIFF                        = 0x400454d2\n\tTUNGETSNDBUF                     = 0x400454d3\n\tTUNGETVNETBE                     = 0x400454df\n\tTUNGETVNETHDRSZ                  = 0x400454d7\n\tTUNGETVNETLE                     = 0x400454dd\n\tTUNSETCARRIER                    = 0x800454e2\n\tTUNSETDEBUG                      = 0x800454c9\n\tTUNSETFILTEREBPF                 = 0x400454e1\n\tTUNSETGROUP                      = 0x800454ce\n\tTUNSETIFF                        = 0x800454ca\n\tTUNSETIFINDEX                    = 0x800454da\n\tTUNSETLINK                       = 0x800454cd\n\tTUNSETNOCSUM                     = 0x800454c8\n\tTUNSETOFFLOAD                    = 0x800454d0\n\tTUNSETOWNER                      = 0x800454cc\n\tTUNSETPERSIST                    = 0x800454cb\n\tTUNSETQUEUE                      = 0x800454d9\n\tTUNSETSNDBUF                     = 0x800454d4\n\tTUNSETSTEERINGEBPF               = 0x400454e0\n\tTUNSETTXFILTER                   = 0x800454d1\n\tTUNSETVNETBE                     = 0x800454de\n\tTUNSETVNETHDRSZ                  = 0x800454d8\n\tTUNSETVNETLE                     = 0x800454dc\n\tUBI_IOCATT                       = 0x80186f40\n\tUBI_IOCDET                       = 0x80046f41\n\tUBI_IOCEBCH                      = 0x80044f02\n\tUBI_IOCEBER                      = 0x80044f01\n\tUBI_IOCEBISMAP                   = 0x40044f05\n\tUBI_IOCEBMAP                     = 0x80084f03\n\tUBI_IOCEBUNMAP                   = 0x80044f04\n\tUBI_IOCMKVOL                     = 0x80986f00\n\tUBI_IOCRMVOL                     = 0x80046f01\n\tUBI_IOCRNVOL                     = 0x91106f03\n\tUBI_IOCRPEB                      = 0x80046f04\n\tUBI_IOCRSVOL                     = 0x800c6f02\n\tUBI_IOCSETVOLPROP                = 0x80104f06\n\tUBI_IOCSPEB                      = 0x80046f05\n\tUBI_IOCVOLCRBLK                  = 0x80804f07\n\tUBI_IOCVOLRMBLK                  = 0x20004f08\n\tUBI_IOCVOLUP                     = 0x80084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x10\n\tVEOL                             = 0x11\n\tVEOL2                            = 0x6\n\tVMIN                             = 0x4\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVSWTCH                           = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x40045702\n\tWDIOC_GETPRETIMEOUT              = 0x40045709\n\tWDIOC_GETSTATUS                  = 0x40045701\n\tWDIOC_GETSUPPORT                 = 0x40285700\n\tWDIOC_GETTEMP                    = 0x40045703\n\tWDIOC_GETTIMELEFT                = 0x4004570a\n\tWDIOC_GETTIMEOUT                 = 0x40045707\n\tWDIOC_KEEPALIVE                  = 0x40045705\n\tWDIOC_SETOPTIONS                 = 0x40045704\n\tWORDSIZE                         = 0x40\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x7d)\n\tEADDRNOTAVAIL   = syscall.Errno(0x7e)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x7c)\n\tEALREADY        = syscall.Errno(0x95)\n\tEBADE           = syscall.Errno(0x32)\n\tEBADFD          = syscall.Errno(0x51)\n\tEBADMSG         = syscall.Errno(0x4d)\n\tEBADR           = syscall.Errno(0x33)\n\tEBADRQC         = syscall.Errno(0x36)\n\tEBADSLT         = syscall.Errno(0x37)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x9e)\n\tECHRNG          = syscall.Errno(0x25)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x82)\n\tECONNREFUSED    = syscall.Errno(0x92)\n\tECONNRESET      = syscall.Errno(0x83)\n\tEDEADLK         = syscall.Errno(0x2d)\n\tEDEADLOCK       = syscall.Errno(0x38)\n\tEDESTADDRREQ    = syscall.Errno(0x60)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x46d)\n\tEHOSTDOWN       = syscall.Errno(0x93)\n\tEHOSTUNREACH    = syscall.Errno(0x94)\n\tEHWPOISON       = syscall.Errno(0xa8)\n\tEIDRM           = syscall.Errno(0x24)\n\tEILSEQ          = syscall.Errno(0x58)\n\tEINIT           = syscall.Errno(0x8d)\n\tEINPROGRESS     = syscall.Errno(0x96)\n\tEISCONN         = syscall.Errno(0x85)\n\tEISNAM          = syscall.Errno(0x8b)\n\tEKEYEXPIRED     = syscall.Errno(0xa2)\n\tEKEYREJECTED    = syscall.Errno(0xa4)\n\tEKEYREVOKED     = syscall.Errno(0xa3)\n\tEL2HLT          = syscall.Errno(0x2c)\n\tEL2NSYNC        = syscall.Errno(0x26)\n\tEL3HLT          = syscall.Errno(0x27)\n\tEL3RST          = syscall.Errno(0x28)\n\tELIBACC         = syscall.Errno(0x53)\n\tELIBBAD         = syscall.Errno(0x54)\n\tELIBEXEC        = syscall.Errno(0x57)\n\tELIBMAX         = syscall.Errno(0x56)\n\tELIBSCN         = syscall.Errno(0x55)\n\tELNRNG          = syscall.Errno(0x29)\n\tELOOP           = syscall.Errno(0x5a)\n\tEMEDIUMTYPE     = syscall.Errno(0xa0)\n\tEMSGSIZE        = syscall.Errno(0x61)\n\tEMULTIHOP       = syscall.Errno(0x4a)\n\tENAMETOOLONG    = syscall.Errno(0x4e)\n\tENAVAIL         = syscall.Errno(0x8a)\n\tENETDOWN        = syscall.Errno(0x7f)\n\tENETRESET       = syscall.Errno(0x81)\n\tENETUNREACH     = syscall.Errno(0x80)\n\tENOANO          = syscall.Errno(0x35)\n\tENOBUFS         = syscall.Errno(0x84)\n\tENOCSI          = syscall.Errno(0x2b)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0xa1)\n\tENOLCK          = syscall.Errno(0x2e)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x9f)\n\tENOMSG          = syscall.Errno(0x23)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x63)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x59)\n\tENOTCONN        = syscall.Errno(0x86)\n\tENOTEMPTY       = syscall.Errno(0x5d)\n\tENOTNAM         = syscall.Errno(0x89)\n\tENOTRECOVERABLE = syscall.Errno(0xa6)\n\tENOTSOCK        = syscall.Errno(0x5f)\n\tENOTSUP         = syscall.Errno(0x7a)\n\tENOTUNIQ        = syscall.Errno(0x50)\n\tEOPNOTSUPP      = syscall.Errno(0x7a)\n\tEOVERFLOW       = syscall.Errno(0x4f)\n\tEOWNERDEAD      = syscall.Errno(0xa5)\n\tEPFNOSUPPORT    = syscall.Errno(0x7b)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x78)\n\tEPROTOTYPE      = syscall.Errno(0x62)\n\tEREMCHG         = syscall.Errno(0x52)\n\tEREMDEV         = syscall.Errno(0x8e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x8c)\n\tERESTART        = syscall.Errno(0x5b)\n\tERFKILL         = syscall.Errno(0xa7)\n\tESHUTDOWN       = syscall.Errno(0x8f)\n\tESOCKTNOSUPPORT = syscall.Errno(0x79)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x97)\n\tESTRPIPE        = syscall.Errno(0x5c)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x91)\n\tETOOMANYREFS    = syscall.Errno(0x90)\n\tEUCLEAN         = syscall.Errno(0x87)\n\tEUNATCH         = syscall.Errno(0x2a)\n\tEUSERS          = syscall.Errno(0x5e)\n\tEXFULL          = syscall.Errno(0x34)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x12)\n\tSIGCLD    = syscall.Signal(0x12)\n\tSIGCONT   = syscall.Signal(0x19)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGIO     = syscall.Signal(0x16)\n\tSIGPOLL   = syscall.Signal(0x16)\n\tSIGPROF   = syscall.Signal(0x1d)\n\tSIGPWR    = syscall.Signal(0x13)\n\tSIGSTOP   = syscall.Signal(0x17)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTSTP   = syscall.Signal(0x18)\n\tSIGTTIN   = syscall.Signal(0x1a)\n\tSIGTTOU   = syscall.Signal(0x1b)\n\tSIGURG    = syscall.Signal(0x15)\n\tSIGUSR1   = syscall.Signal(0x10)\n\tSIGUSR2   = syscall.Signal(0x11)\n\tSIGVTALRM = syscall.Signal(0x1c)\n\tSIGWINCH  = syscall.Signal(0x14)\n\tSIGXCPU   = syscall.Signal(0x1e)\n\tSIGXFSZ   = syscall.Signal(0x1f)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"ENOMSG\", \"no message of desired type\"},\n\t{36, \"EIDRM\", \"identifier removed\"},\n\t{37, \"ECHRNG\", \"channel number out of range\"},\n\t{38, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{39, \"EL3HLT\", \"level 3 halted\"},\n\t{40, \"EL3RST\", \"level 3 reset\"},\n\t{41, \"ELNRNG\", \"link number out of range\"},\n\t{42, \"EUNATCH\", \"protocol driver not attached\"},\n\t{43, \"ENOCSI\", \"no CSI structure available\"},\n\t{44, \"EL2HLT\", \"level 2 halted\"},\n\t{45, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{46, \"ENOLCK\", \"no locks available\"},\n\t{50, \"EBADE\", \"invalid exchange\"},\n\t{51, \"EBADR\", \"invalid request descriptor\"},\n\t{52, \"EXFULL\", \"exchange full\"},\n\t{53, \"ENOANO\", \"no anode\"},\n\t{54, \"EBADRQC\", \"invalid request code\"},\n\t{55, \"EBADSLT\", \"invalid slot\"},\n\t{56, \"EDEADLOCK\", \"file locking deadlock error\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EMULTIHOP\", \"multihop attempted\"},\n\t{77, \"EBADMSG\", \"bad message\"},\n\t{78, \"ENAMETOOLONG\", \"file name too long\"},\n\t{79, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{80, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{81, \"EBADFD\", \"file descriptor in bad state\"},\n\t{82, \"EREMCHG\", \"remote address changed\"},\n\t{83, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{84, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{85, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{86, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{87, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{88, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{89, \"ENOSYS\", \"function not implemented\"},\n\t{90, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{91, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{92, \"ESTRPIPE\", \"streams pipe error\"},\n\t{93, \"ENOTEMPTY\", \"directory not empty\"},\n\t{94, \"EUSERS\", \"too many users\"},\n\t{95, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{96, \"EDESTADDRREQ\", \"destination address required\"},\n\t{97, \"EMSGSIZE\", \"message too long\"},\n\t{98, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{99, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{120, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{121, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{122, \"ENOTSUP\", \"operation not supported\"},\n\t{123, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{124, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{125, \"EADDRINUSE\", \"address already in use\"},\n\t{126, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{127, \"ENETDOWN\", \"network is down\"},\n\t{128, \"ENETUNREACH\", \"network is unreachable\"},\n\t{129, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{130, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{131, \"ECONNRESET\", \"connection reset by peer\"},\n\t{132, \"ENOBUFS\", \"no buffer space available\"},\n\t{133, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{134, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{135, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{137, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{138, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{139, \"EISNAM\", \"is a named type file\"},\n\t{140, \"EREMOTEIO\", \"remote I/O error\"},\n\t{141, \"EINIT\", \"unknown error 141\"},\n\t{142, \"EREMDEV\", \"unknown error 142\"},\n\t{143, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{144, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{145, \"ETIMEDOUT\", \"connection timed out\"},\n\t{146, \"ECONNREFUSED\", \"connection refused\"},\n\t{147, \"EHOSTDOWN\", \"host is down\"},\n\t{148, \"EHOSTUNREACH\", \"no route to host\"},\n\t{149, \"EALREADY\", \"operation already in progress\"},\n\t{150, \"EINPROGRESS\", \"operation now in progress\"},\n\t{151, \"ESTALE\", \"stale file handle\"},\n\t{158, \"ECANCELED\", \"operation canceled\"},\n\t{159, \"ENOMEDIUM\", \"no medium found\"},\n\t{160, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{161, \"ENOKEY\", \"required key not available\"},\n\t{162, \"EKEYEXPIRED\", \"key has expired\"},\n\t{163, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{164, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{165, \"EOWNERDEAD\", \"owner died\"},\n\t{166, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{167, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{168, \"EHWPOISON\", \"memory page has hardware error\"},\n\t{1133, \"EDQUOT\", \"disk quota exceeded\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGUSR1\", \"user defined signal 1\"},\n\t{17, \"SIGUSR2\", \"user defined signal 2\"},\n\t{18, \"SIGCHLD\", \"child exited\"},\n\t{19, \"SIGPWR\", \"power failure\"},\n\t{20, \"SIGWINCH\", \"window changed\"},\n\t{21, \"SIGURG\", \"urgent I/O condition\"},\n\t{22, \"SIGIO\", \"I/O possible\"},\n\t{23, \"SIGSTOP\", \"stopped (signal)\"},\n\t{24, \"SIGTSTP\", \"stopped\"},\n\t{25, \"SIGCONT\", \"continued\"},\n\t{26, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{27, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{28, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{29, \"SIGPROF\", \"profiling timer expired\"},\n\t{30, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{31, \"SIGXFSZ\", \"file size limit exceeded\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mipsle,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x40041270\n\tBLKBSZSET                        = 0x80041271\n\tBLKFLSBUF                        = 0x20001261\n\tBLKFRAGET                        = 0x20001265\n\tBLKFRASET                        = 0x20001264\n\tBLKGETSIZE                       = 0x20001260\n\tBLKGETSIZE64                     = 0x40041272\n\tBLKPBSZGET                       = 0x2000127b\n\tBLKRAGET                         = 0x20001263\n\tBLKRASET                         = 0x20001262\n\tBLKROGET                         = 0x2000125e\n\tBLKROSET                         = 0x2000125d\n\tBLKRRPART                        = 0x2000125f\n\tBLKSECTGET                       = 0x20001267\n\tBLKSECTSET                       = 0x20001266\n\tBLKSSZGET                        = 0x20001268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x80\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x80049409\n\tFICLONERANGE                     = 0x8020940d\n\tFLUSHO                           = 0x2000\n\tFS_IOC_ENABLE_VERITY             = 0x80806685\n\tFS_IOC_GETFLAGS                  = 0x40046601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x4010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x800c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x80106614\n\tFS_IOC_SETFLAGS                  = 0x80046602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x400c6613\n\tF_GETLK                          = 0x21\n\tF_GETLK64                        = 0x21\n\tF_GETOWN                         = 0x17\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x22\n\tF_SETLK64                        = 0x22\n\tF_SETLKW                         = 0x23\n\tF_SETLKW64                       = 0x23\n\tF_SETOWN                         = 0x18\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x100\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x80\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x200007b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_ANON                         = 0x800\n\tMAP_ANONYMOUS                    = 0x800\n\tMAP_DENYWRITE                    = 0x2000\n\tMAP_EXECUTABLE                   = 0x4000\n\tMAP_GROWSDOWN                    = 0x1000\n\tMAP_HUGETLB                      = 0x80000\n\tMAP_LOCKED                       = 0x8000\n\tMAP_NONBLOCK                     = 0x20000\n\tMAP_NORESERVE                    = 0x400\n\tMAP_POPULATE                     = 0x10000\n\tMAP_RENAME                       = 0x800\n\tMAP_STACK                        = 0x40000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x20\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0x2000b703\n\tNS_GET_OWNER_UID                 = 0x2000b704\n\tNS_GET_PARENT                    = 0x2000b702\n\tNS_GET_USERNS                    = 0x2000b701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x8\n\tO_ASYNC                          = 0x1000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x100\n\tO_DIRECT                         = 0x8000\n\tO_DIRECTORY                      = 0x10000\n\tO_DSYNC                          = 0x10\n\tO_EXCL                           = 0x400\n\tO_FSYNC                          = 0x4010\n\tO_LARGEFILE                      = 0x2000\n\tO_NDELAY                         = 0x80\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x800\n\tO_NOFOLLOW                       = 0x20000\n\tO_NONBLOCK                       = 0x80\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x4010\n\tO_SYNC                           = 0x4010\n\tO_TMPFILE                        = 0x410000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x20002401\n\tPERF_EVENT_IOC_ENABLE            = 0x20002400\n\tPERF_EVENT_IOC_ID                = 0x40042407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8004240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x80042409\n\tPERF_EVENT_IOC_PERIOD            = 0x80082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc004240a\n\tPERF_EVENT_IOC_REFRESH           = 0x20002402\n\tPERF_EVENT_IOC_RESET             = 0x20002403\n\tPERF_EVENT_IOC_SET_BPF           = 0x80042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x80042406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x20002405\n\tPPPIOCATTACH                     = 0x8004743d\n\tPPPIOCATTCHAN                    = 0x80047438\n\tPPPIOCCONNECT                    = 0x8004743a\n\tPPPIOCDETACH                     = 0x8004743c\n\tPPPIOCDISCONN                    = 0x20007439\n\tPPPIOCGASYNCMAP                  = 0x40047458\n\tPPPIOCGCHAN                      = 0x40047437\n\tPPPIOCGDEBUG                     = 0x40047441\n\tPPPIOCGFLAGS                     = 0x4004745a\n\tPPPIOCGIDLE                      = 0x4008743f\n\tPPPIOCGIDLE32                    = 0x4008743f\n\tPPPIOCGIDLE64                    = 0x4010743f\n\tPPPIOCGL2TPSTATS                 = 0x40487436\n\tPPPIOCGMRU                       = 0x40047453\n\tPPPIOCGRASYNCMAP                 = 0x40047455\n\tPPPIOCGUNIT                      = 0x40047456\n\tPPPIOCGXASYNCMAP                 = 0x40207450\n\tPPPIOCSACTIVE                    = 0x80087446\n\tPPPIOCSASYNCMAP                  = 0x80047457\n\tPPPIOCSCOMPRESS                  = 0x800c744d\n\tPPPIOCSDEBUG                     = 0x80047440\n\tPPPIOCSFLAGS                     = 0x80047459\n\tPPPIOCSMAXCID                    = 0x80047451\n\tPPPIOCSMRRU                      = 0x8004743b\n\tPPPIOCSMRU                       = 0x80047452\n\tPPPIOCSNPMODE                    = 0x8008744b\n\tPPPIOCSPASS                      = 0x80087447\n\tPPPIOCSRASYNCMAP                 = 0x80047454\n\tPPPIOCSXASYNCMAP                 = 0x8020744f\n\tPPPIOCXFERUNIT                   = 0x2000744e\n\tPR_SET_PTRACER_ANY               = 0xffffffff\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GET_THREAD_AREA           = 0x19\n\tPTRACE_GET_THREAD_AREA_3264      = 0xc4\n\tPTRACE_GET_WATCH_REGS            = 0xd0\n\tPTRACE_OLDSETOPTIONS             = 0x15\n\tPTRACE_PEEKDATA_3264             = 0xc1\n\tPTRACE_PEEKTEXT_3264             = 0xc0\n\tPTRACE_POKEDATA_3264             = 0xc3\n\tPTRACE_POKETEXT_3264             = 0xc2\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SET_THREAD_AREA           = 0x1a\n\tPTRACE_SET_WATCH_REGS            = 0xd1\n\tRLIMIT_AS                        = 0x6\n\tRLIMIT_MEMLOCK                   = 0x9\n\tRLIMIT_NOFILE                    = 0x5\n\tRLIMIT_NPROC                     = 0x8\n\tRLIMIT_RSS                       = 0x7\n\tRNDADDENTROPY                    = 0x80085203\n\tRNDADDTOENTCNT                   = 0x80045201\n\tRNDCLEARPOOL                     = 0x20005206\n\tRNDGETENTCNT                     = 0x40045200\n\tRNDGETPOOL                       = 0x40085202\n\tRNDRESEEDCRNG                    = 0x20005207\n\tRNDZAPENTCNT                     = 0x20005204\n\tRTC_AIE_OFF                      = 0x20007002\n\tRTC_AIE_ON                       = 0x20007001\n\tRTC_ALM_READ                     = 0x40247008\n\tRTC_ALM_SET                      = 0x80247007\n\tRTC_EPOCH_READ                   = 0x4004700d\n\tRTC_EPOCH_SET                    = 0x8004700e\n\tRTC_IRQP_READ                    = 0x4004700b\n\tRTC_IRQP_SET                     = 0x8004700c\n\tRTC_PIE_OFF                      = 0x20007006\n\tRTC_PIE_ON                       = 0x20007005\n\tRTC_PLL_GET                      = 0x401c7011\n\tRTC_PLL_SET                      = 0x801c7012\n\tRTC_RD_TIME                      = 0x40247009\n\tRTC_SET_TIME                     = 0x8024700a\n\tRTC_UIE_OFF                      = 0x20007004\n\tRTC_UIE_ON                       = 0x20007003\n\tRTC_VL_CLR                       = 0x20007014\n\tRTC_VL_READ                      = 0x40047013\n\tRTC_WIE_OFF                      = 0x20007010\n\tRTC_WIE_ON                       = 0x2000700f\n\tRTC_WKALM_RD                     = 0x40287010\n\tRTC_WKALM_SET                    = 0x8028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x80\n\tSIOCATMARK                       = 0x40047307\n\tSIOCGPGRP                        = 0x40047309\n\tSIOCGSTAMPNS_NEW                 = 0x40108907\n\tSIOCGSTAMP_NEW                   = 0x40108906\n\tSIOCINQ                          = 0x467f\n\tSIOCOUTQ                         = 0x7472\n\tSIOCSPGRP                        = 0x80047308\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x1\n\tSOCK_NONBLOCK                    = 0x80\n\tSOCK_STREAM                      = 0x2\n\tSOL_SOCKET                       = 0xffff\n\tSO_ACCEPTCONN                    = 0x1009\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x20\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x1029\n\tSO_DONTROUTE                     = 0x10\n\tSO_ERROR                         = 0x1007\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x8\n\tSO_LINGER                        = 0x80\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0x100\n\tSO_PASSCRED                      = 0x11\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x12\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1e\n\tSO_PROTOCOL                      = 0x1028\n\tSO_RCVBUF                        = 0x1002\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x1004\n\tSO_RCVTIMEO                      = 0x1006\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x1006\n\tSO_REUSEADDR                     = 0x4\n\tSO_REUSEPORT                     = 0x200\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x1001\n\tSO_SNDBUFFORCE                   = 0x1f\n\tSO_SNDLOWAT                      = 0x1003\n\tSO_SNDTIMEO                      = 0x1005\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x1005\n\tSO_STYLE                         = 0x1008\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x1008\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x5407\n\tTCGETA                           = 0x5401\n\tTCGETS                           = 0x540d\n\tTCGETS2                          = 0x4030542a\n\tTCSAFLUSH                        = 0x5410\n\tTCSBRK                           = 0x5405\n\tTCSBRKP                          = 0x5486\n\tTCSETA                           = 0x5402\n\tTCSETAF                          = 0x5404\n\tTCSETAW                          = 0x5403\n\tTCSETS                           = 0x540e\n\tTCSETS2                          = 0x8030542b\n\tTCSETSF                          = 0x5410\n\tTCSETSF2                         = 0x8030542d\n\tTCSETSW                          = 0x540f\n\tTCSETSW2                         = 0x8030542c\n\tTCXONC                           = 0x5406\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x80\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x80047478\n\tTIOCEXCL                         = 0x740d\n\tTIOCGDEV                         = 0x40045432\n\tTIOCGETD                         = 0x7400\n\tTIOCGETP                         = 0x7408\n\tTIOCGEXCL                        = 0x40045440\n\tTIOCGICOUNT                      = 0x5492\n\tTIOCGISO7816                     = 0x40285442\n\tTIOCGLCKTRMIOS                   = 0x548b\n\tTIOCGLTC                         = 0x7474\n\tTIOCGPGRP                        = 0x40047477\n\tTIOCGPKT                         = 0x40045438\n\tTIOCGPTLCK                       = 0x40045439\n\tTIOCGPTN                         = 0x40045430\n\tTIOCGPTPEER                      = 0x20005441\n\tTIOCGRS485                       = 0x4020542e\n\tTIOCGSERIAL                      = 0x5484\n\tTIOCGSID                         = 0x7416\n\tTIOCGSOFTCAR                     = 0x5481\n\tTIOCGWINSZ                       = 0x40087468\n\tTIOCINQ                          = 0x467f\n\tTIOCLINUX                        = 0x5483\n\tTIOCMBIC                         = 0x741c\n\tTIOCMBIS                         = 0x741b\n\tTIOCMGET                         = 0x741d\n\tTIOCMIWAIT                       = 0x5491\n\tTIOCMSET                         = 0x741a\n\tTIOCM_CAR                        = 0x100\n\tTIOCM_CD                         = 0x100\n\tTIOCM_CTS                        = 0x40\n\tTIOCM_DSR                        = 0x400\n\tTIOCM_RI                         = 0x200\n\tTIOCM_RNG                        = 0x200\n\tTIOCM_SR                         = 0x20\n\tTIOCM_ST                         = 0x10\n\tTIOCNOTTY                        = 0x5471\n\tTIOCNXCL                         = 0x740e\n\tTIOCOUTQ                         = 0x7472\n\tTIOCPKT                          = 0x5470\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x5480\n\tTIOCSERCONFIG                    = 0x5488\n\tTIOCSERGETLSR                    = 0x548e\n\tTIOCSERGETMULTI                  = 0x548f\n\tTIOCSERGSTRUCT                   = 0x548d\n\tTIOCSERGWILD                     = 0x5489\n\tTIOCSERSETMULTI                  = 0x5490\n\tTIOCSERSWILD                     = 0x548a\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x7401\n\tTIOCSETN                         = 0x740a\n\tTIOCSETP                         = 0x7409\n\tTIOCSIG                          = 0x80045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x548c\n\tTIOCSLTC                         = 0x7475\n\tTIOCSPGRP                        = 0x80047476\n\tTIOCSPTLCK                       = 0x80045431\n\tTIOCSRS485                       = 0xc020542f\n\tTIOCSSERIAL                      = 0x5485\n\tTIOCSSOFTCAR                     = 0x5482\n\tTIOCSTI                          = 0x5472\n\tTIOCSWINSZ                       = 0x80087467\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x8000\n\tTUNATTACHFILTER                  = 0x800854d5\n\tTUNDETACHFILTER                  = 0x800854d6\n\tTUNGETDEVNETNS                   = 0x200054e3\n\tTUNGETFEATURES                   = 0x400454cf\n\tTUNGETFILTER                     = 0x400854db\n\tTUNGETIFF                        = 0x400454d2\n\tTUNGETSNDBUF                     = 0x400454d3\n\tTUNGETVNETBE                     = 0x400454df\n\tTUNGETVNETHDRSZ                  = 0x400454d7\n\tTUNGETVNETLE                     = 0x400454dd\n\tTUNSETCARRIER                    = 0x800454e2\n\tTUNSETDEBUG                      = 0x800454c9\n\tTUNSETFILTEREBPF                 = 0x400454e1\n\tTUNSETGROUP                      = 0x800454ce\n\tTUNSETIFF                        = 0x800454ca\n\tTUNSETIFINDEX                    = 0x800454da\n\tTUNSETLINK                       = 0x800454cd\n\tTUNSETNOCSUM                     = 0x800454c8\n\tTUNSETOFFLOAD                    = 0x800454d0\n\tTUNSETOWNER                      = 0x800454cc\n\tTUNSETPERSIST                    = 0x800454cb\n\tTUNSETQUEUE                      = 0x800454d9\n\tTUNSETSNDBUF                     = 0x800454d4\n\tTUNSETSTEERINGEBPF               = 0x400454e0\n\tTUNSETTXFILTER                   = 0x800454d1\n\tTUNSETVNETBE                     = 0x800454de\n\tTUNSETVNETHDRSZ                  = 0x800454d8\n\tTUNSETVNETLE                     = 0x800454dc\n\tUBI_IOCATT                       = 0x80186f40\n\tUBI_IOCDET                       = 0x80046f41\n\tUBI_IOCEBCH                      = 0x80044f02\n\tUBI_IOCEBER                      = 0x80044f01\n\tUBI_IOCEBISMAP                   = 0x40044f05\n\tUBI_IOCEBMAP                     = 0x80084f03\n\tUBI_IOCEBUNMAP                   = 0x80044f04\n\tUBI_IOCMKVOL                     = 0x80986f00\n\tUBI_IOCRMVOL                     = 0x80046f01\n\tUBI_IOCRNVOL                     = 0x91106f03\n\tUBI_IOCRPEB                      = 0x80046f04\n\tUBI_IOCRSVOL                     = 0x800c6f02\n\tUBI_IOCSETVOLPROP                = 0x80104f06\n\tUBI_IOCSPEB                      = 0x80046f05\n\tUBI_IOCVOLCRBLK                  = 0x80804f07\n\tUBI_IOCVOLRMBLK                  = 0x20004f08\n\tUBI_IOCVOLUP                     = 0x80084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x10\n\tVEOL                             = 0x11\n\tVEOL2                            = 0x6\n\tVMIN                             = 0x4\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVSWTCH                           = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x40045702\n\tWDIOC_GETPRETIMEOUT              = 0x40045709\n\tWDIOC_GETSTATUS                  = 0x40045701\n\tWDIOC_GETSUPPORT                 = 0x40285700\n\tWDIOC_GETTEMP                    = 0x40045703\n\tWDIOC_GETTIMELEFT                = 0x4004570a\n\tWDIOC_GETTIMEOUT                 = 0x40045707\n\tWDIOC_KEEPALIVE                  = 0x40045705\n\tWDIOC_SETOPTIONS                 = 0x40045704\n\tWORDSIZE                         = 0x20\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x7d)\n\tEADDRNOTAVAIL   = syscall.Errno(0x7e)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x7c)\n\tEALREADY        = syscall.Errno(0x95)\n\tEBADE           = syscall.Errno(0x32)\n\tEBADFD          = syscall.Errno(0x51)\n\tEBADMSG         = syscall.Errno(0x4d)\n\tEBADR           = syscall.Errno(0x33)\n\tEBADRQC         = syscall.Errno(0x36)\n\tEBADSLT         = syscall.Errno(0x37)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x9e)\n\tECHRNG          = syscall.Errno(0x25)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x82)\n\tECONNREFUSED    = syscall.Errno(0x92)\n\tECONNRESET      = syscall.Errno(0x83)\n\tEDEADLK         = syscall.Errno(0x2d)\n\tEDEADLOCK       = syscall.Errno(0x38)\n\tEDESTADDRREQ    = syscall.Errno(0x60)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x46d)\n\tEHOSTDOWN       = syscall.Errno(0x93)\n\tEHOSTUNREACH    = syscall.Errno(0x94)\n\tEHWPOISON       = syscall.Errno(0xa8)\n\tEIDRM           = syscall.Errno(0x24)\n\tEILSEQ          = syscall.Errno(0x58)\n\tEINIT           = syscall.Errno(0x8d)\n\tEINPROGRESS     = syscall.Errno(0x96)\n\tEISCONN         = syscall.Errno(0x85)\n\tEISNAM          = syscall.Errno(0x8b)\n\tEKEYEXPIRED     = syscall.Errno(0xa2)\n\tEKEYREJECTED    = syscall.Errno(0xa4)\n\tEKEYREVOKED     = syscall.Errno(0xa3)\n\tEL2HLT          = syscall.Errno(0x2c)\n\tEL2NSYNC        = syscall.Errno(0x26)\n\tEL3HLT          = syscall.Errno(0x27)\n\tEL3RST          = syscall.Errno(0x28)\n\tELIBACC         = syscall.Errno(0x53)\n\tELIBBAD         = syscall.Errno(0x54)\n\tELIBEXEC        = syscall.Errno(0x57)\n\tELIBMAX         = syscall.Errno(0x56)\n\tELIBSCN         = syscall.Errno(0x55)\n\tELNRNG          = syscall.Errno(0x29)\n\tELOOP           = syscall.Errno(0x5a)\n\tEMEDIUMTYPE     = syscall.Errno(0xa0)\n\tEMSGSIZE        = syscall.Errno(0x61)\n\tEMULTIHOP       = syscall.Errno(0x4a)\n\tENAMETOOLONG    = syscall.Errno(0x4e)\n\tENAVAIL         = syscall.Errno(0x8a)\n\tENETDOWN        = syscall.Errno(0x7f)\n\tENETRESET       = syscall.Errno(0x81)\n\tENETUNREACH     = syscall.Errno(0x80)\n\tENOANO          = syscall.Errno(0x35)\n\tENOBUFS         = syscall.Errno(0x84)\n\tENOCSI          = syscall.Errno(0x2b)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0xa1)\n\tENOLCK          = syscall.Errno(0x2e)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x9f)\n\tENOMSG          = syscall.Errno(0x23)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x63)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x59)\n\tENOTCONN        = syscall.Errno(0x86)\n\tENOTEMPTY       = syscall.Errno(0x5d)\n\tENOTNAM         = syscall.Errno(0x89)\n\tENOTRECOVERABLE = syscall.Errno(0xa6)\n\tENOTSOCK        = syscall.Errno(0x5f)\n\tENOTSUP         = syscall.Errno(0x7a)\n\tENOTUNIQ        = syscall.Errno(0x50)\n\tEOPNOTSUPP      = syscall.Errno(0x7a)\n\tEOVERFLOW       = syscall.Errno(0x4f)\n\tEOWNERDEAD      = syscall.Errno(0xa5)\n\tEPFNOSUPPORT    = syscall.Errno(0x7b)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x78)\n\tEPROTOTYPE      = syscall.Errno(0x62)\n\tEREMCHG         = syscall.Errno(0x52)\n\tEREMDEV         = syscall.Errno(0x8e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x8c)\n\tERESTART        = syscall.Errno(0x5b)\n\tERFKILL         = syscall.Errno(0xa7)\n\tESHUTDOWN       = syscall.Errno(0x8f)\n\tESOCKTNOSUPPORT = syscall.Errno(0x79)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x97)\n\tESTRPIPE        = syscall.Errno(0x5c)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x91)\n\tETOOMANYREFS    = syscall.Errno(0x90)\n\tEUCLEAN         = syscall.Errno(0x87)\n\tEUNATCH         = syscall.Errno(0x2a)\n\tEUSERS          = syscall.Errno(0x5e)\n\tEXFULL          = syscall.Errno(0x34)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x12)\n\tSIGCLD    = syscall.Signal(0x12)\n\tSIGCONT   = syscall.Signal(0x19)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGIO     = syscall.Signal(0x16)\n\tSIGPOLL   = syscall.Signal(0x16)\n\tSIGPROF   = syscall.Signal(0x1d)\n\tSIGPWR    = syscall.Signal(0x13)\n\tSIGSTOP   = syscall.Signal(0x17)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTSTP   = syscall.Signal(0x18)\n\tSIGTTIN   = syscall.Signal(0x1a)\n\tSIGTTOU   = syscall.Signal(0x1b)\n\tSIGURG    = syscall.Signal(0x15)\n\tSIGUSR1   = syscall.Signal(0x10)\n\tSIGUSR2   = syscall.Signal(0x11)\n\tSIGVTALRM = syscall.Signal(0x1c)\n\tSIGWINCH  = syscall.Signal(0x14)\n\tSIGXCPU   = syscall.Signal(0x1e)\n\tSIGXFSZ   = syscall.Signal(0x1f)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"ENOMSG\", \"no message of desired type\"},\n\t{36, \"EIDRM\", \"identifier removed\"},\n\t{37, \"ECHRNG\", \"channel number out of range\"},\n\t{38, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{39, \"EL3HLT\", \"level 3 halted\"},\n\t{40, \"EL3RST\", \"level 3 reset\"},\n\t{41, \"ELNRNG\", \"link number out of range\"},\n\t{42, \"EUNATCH\", \"protocol driver not attached\"},\n\t{43, \"ENOCSI\", \"no CSI structure available\"},\n\t{44, \"EL2HLT\", \"level 2 halted\"},\n\t{45, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{46, \"ENOLCK\", \"no locks available\"},\n\t{50, \"EBADE\", \"invalid exchange\"},\n\t{51, \"EBADR\", \"invalid request descriptor\"},\n\t{52, \"EXFULL\", \"exchange full\"},\n\t{53, \"ENOANO\", \"no anode\"},\n\t{54, \"EBADRQC\", \"invalid request code\"},\n\t{55, \"EBADSLT\", \"invalid slot\"},\n\t{56, \"EDEADLOCK\", \"file locking deadlock error\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EMULTIHOP\", \"multihop attempted\"},\n\t{77, \"EBADMSG\", \"bad message\"},\n\t{78, \"ENAMETOOLONG\", \"file name too long\"},\n\t{79, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{80, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{81, \"EBADFD\", \"file descriptor in bad state\"},\n\t{82, \"EREMCHG\", \"remote address changed\"},\n\t{83, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{84, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{85, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{86, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{87, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{88, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{89, \"ENOSYS\", \"function not implemented\"},\n\t{90, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{91, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{92, \"ESTRPIPE\", \"streams pipe error\"},\n\t{93, \"ENOTEMPTY\", \"directory not empty\"},\n\t{94, \"EUSERS\", \"too many users\"},\n\t{95, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{96, \"EDESTADDRREQ\", \"destination address required\"},\n\t{97, \"EMSGSIZE\", \"message too long\"},\n\t{98, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{99, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{120, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{121, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{122, \"ENOTSUP\", \"operation not supported\"},\n\t{123, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{124, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{125, \"EADDRINUSE\", \"address already in use\"},\n\t{126, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{127, \"ENETDOWN\", \"network is down\"},\n\t{128, \"ENETUNREACH\", \"network is unreachable\"},\n\t{129, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{130, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{131, \"ECONNRESET\", \"connection reset by peer\"},\n\t{132, \"ENOBUFS\", \"no buffer space available\"},\n\t{133, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{134, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{135, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{137, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{138, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{139, \"EISNAM\", \"is a named type file\"},\n\t{140, \"EREMOTEIO\", \"remote I/O error\"},\n\t{141, \"EINIT\", \"unknown error 141\"},\n\t{142, \"EREMDEV\", \"unknown error 142\"},\n\t{143, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{144, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{145, \"ETIMEDOUT\", \"connection timed out\"},\n\t{146, \"ECONNREFUSED\", \"connection refused\"},\n\t{147, \"EHOSTDOWN\", \"host is down\"},\n\t{148, \"EHOSTUNREACH\", \"no route to host\"},\n\t{149, \"EALREADY\", \"operation already in progress\"},\n\t{150, \"EINPROGRESS\", \"operation now in progress\"},\n\t{151, \"ESTALE\", \"stale file handle\"},\n\t{158, \"ECANCELED\", \"operation canceled\"},\n\t{159, \"ENOMEDIUM\", \"no medium found\"},\n\t{160, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{161, \"ENOKEY\", \"required key not available\"},\n\t{162, \"EKEYEXPIRED\", \"key has expired\"},\n\t{163, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{164, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{165, \"EOWNERDEAD\", \"owner died\"},\n\t{166, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{167, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{168, \"EHWPOISON\", \"memory page has hardware error\"},\n\t{1133, \"EDQUOT\", \"disk quota exceeded\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGUSR1\", \"user defined signal 1\"},\n\t{17, \"SIGUSR2\", \"user defined signal 2\"},\n\t{18, \"SIGCHLD\", \"child exited\"},\n\t{19, \"SIGPWR\", \"power failure\"},\n\t{20, \"SIGWINCH\", \"window changed\"},\n\t{21, \"SIGURG\", \"urgent I/O condition\"},\n\t{22, \"SIGIO\", \"I/O possible\"},\n\t{23, \"SIGSTOP\", \"stopped (signal)\"},\n\t{24, \"SIGTSTP\", \"stopped\"},\n\t{25, \"SIGCONT\", \"continued\"},\n\t{26, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{27, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{28, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{29, \"SIGPROF\", \"profiling timer expired\"},\n\t{30, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{31, \"SIGXFSZ\", \"file size limit exceeded\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc64,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x17\n\tB115200                          = 0x11\n\tB1152000                         = 0x18\n\tB1500000                         = 0x19\n\tB2000000                         = 0x1a\n\tB230400                          = 0x12\n\tB2500000                         = 0x1b\n\tB3000000                         = 0x1c\n\tB3500000                         = 0x1d\n\tB4000000                         = 0x1e\n\tB460800                          = 0x13\n\tB500000                          = 0x14\n\tB57600                           = 0x10\n\tB576000                          = 0x15\n\tB921600                          = 0x16\n\tBLKBSZGET                        = 0x40081270\n\tBLKBSZSET                        = 0x80081271\n\tBLKFLSBUF                        = 0x20001261\n\tBLKFRAGET                        = 0x20001265\n\tBLKFRASET                        = 0x20001264\n\tBLKGETSIZE                       = 0x20001260\n\tBLKGETSIZE64                     = 0x40081272\n\tBLKPBSZGET                       = 0x2000127b\n\tBLKRAGET                         = 0x20001263\n\tBLKRASET                         = 0x20001262\n\tBLKROGET                         = 0x2000125e\n\tBLKROSET                         = 0x2000125d\n\tBLKRRPART                        = 0x2000125f\n\tBLKSECTGET                       = 0x20001267\n\tBLKSECTSET                       = 0x20001266\n\tBLKSSZGET                        = 0x20001268\n\tBOTHER                           = 0x1f\n\tBS1                              = 0x8000\n\tBSDLY                            = 0x8000\n\tCBAUD                            = 0xff\n\tCBAUDEX                          = 0x0\n\tCIBAUD                           = 0xff0000\n\tCLOCAL                           = 0x8000\n\tCR1                              = 0x1000\n\tCR2                              = 0x2000\n\tCR3                              = 0x3000\n\tCRDLY                            = 0x3000\n\tCREAD                            = 0x800\n\tCS6                              = 0x100\n\tCS7                              = 0x200\n\tCS8                              = 0x300\n\tCSIZE                            = 0x300\n\tCSTOPB                           = 0x400\n\tECHOCTL                          = 0x40\n\tECHOE                            = 0x2\n\tECHOK                            = 0x4\n\tECHOKE                           = 0x1\n\tECHONL                           = 0x10\n\tECHOPRT                          = 0x20\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x800\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000000\n\tFF1                              = 0x4000\n\tFFDLY                            = 0x4000\n\tFICLONE                          = 0x80049409\n\tFICLONERANGE                     = 0x8020940d\n\tFLUSHO                           = 0x800000\n\tFS_IOC_ENABLE_VERITY             = 0x80806685\n\tFS_IOC_GETFLAGS                  = 0x40086601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x4010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x800c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x80106614\n\tFS_IOC_SETFLAGS                  = 0x80086602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x400c6613\n\tF_GETLK                          = 0x5\n\tF_GETLK64                        = 0xc\n\tF_GETOWN                         = 0x9\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x6\n\tF_SETLK64                        = 0xd\n\tF_SETLKW                         = 0x7\n\tF_SETLKW64                       = 0xe\n\tF_SETOWN                         = 0x8\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x4000\n\tICANON                           = 0x100\n\tIEXTEN                           = 0x400\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x800\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x200007b9\n\tISIG                             = 0x80\n\tIUCLC                            = 0x1000\n\tIXOFF                            = 0x400\n\tIXON                             = 0x200\n\tMAP_ANON                         = 0x20\n\tMAP_ANONYMOUS                    = 0x20\n\tMAP_DENYWRITE                    = 0x800\n\tMAP_EXECUTABLE                   = 0x1000\n\tMAP_GROWSDOWN                    = 0x100\n\tMAP_HUGETLB                      = 0x40000\n\tMAP_LOCKED                       = 0x80\n\tMAP_NONBLOCK                     = 0x10000\n\tMAP_NORESERVE                    = 0x40\n\tMAP_POPULATE                     = 0x8000\n\tMAP_STACK                        = 0x20000\n\tMAP_SYNC                         = 0x80000\n\tMCL_CURRENT                      = 0x2000\n\tMCL_FUTURE                       = 0x4000\n\tMCL_ONFAULT                      = 0x8000\n\tNFDBITS                          = 0x40\n\tNL2                              = 0x200\n\tNL3                              = 0x300\n\tNLDLY                            = 0x300\n\tNOFLSH                           = 0x80000000\n\tNS_GET_NSTYPE                    = 0x2000b703\n\tNS_GET_OWNER_UID                 = 0x2000b704\n\tNS_GET_PARENT                    = 0x2000b702\n\tNS_GET_USERNS                    = 0x2000b701\n\tOLCUC                            = 0x4\n\tONLCR                            = 0x2\n\tO_APPEND                         = 0x400\n\tO_ASYNC                          = 0x2000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x40\n\tO_DIRECT                         = 0x20000\n\tO_DIRECTORY                      = 0x4000\n\tO_DSYNC                          = 0x1000\n\tO_EXCL                           = 0x80\n\tO_FSYNC                          = 0x101000\n\tO_LARGEFILE                      = 0x0\n\tO_NDELAY                         = 0x800\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x100\n\tO_NOFOLLOW                       = 0x8000\n\tO_NONBLOCK                       = 0x800\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x101000\n\tO_SYNC                           = 0x101000\n\tO_TMPFILE                        = 0x404000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x1000\n\tPARODD                           = 0x2000\n\tPENDIN                           = 0x20000000\n\tPERF_EVENT_IOC_DISABLE           = 0x20002401\n\tPERF_EVENT_IOC_ENABLE            = 0x20002400\n\tPERF_EVENT_IOC_ID                = 0x40082407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x80042409\n\tPERF_EVENT_IOC_PERIOD            = 0x80082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc008240a\n\tPERF_EVENT_IOC_REFRESH           = 0x20002402\n\tPERF_EVENT_IOC_RESET             = 0x20002403\n\tPERF_EVENT_IOC_SET_BPF           = 0x80042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x80082406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x20002405\n\tPPPIOCATTACH                     = 0x8004743d\n\tPPPIOCATTCHAN                    = 0x80047438\n\tPPPIOCCONNECT                    = 0x8004743a\n\tPPPIOCDETACH                     = 0x8004743c\n\tPPPIOCDISCONN                    = 0x20007439\n\tPPPIOCGASYNCMAP                  = 0x40047458\n\tPPPIOCGCHAN                      = 0x40047437\n\tPPPIOCGDEBUG                     = 0x40047441\n\tPPPIOCGFLAGS                     = 0x4004745a\n\tPPPIOCGIDLE                      = 0x4010743f\n\tPPPIOCGIDLE32                    = 0x4008743f\n\tPPPIOCGIDLE64                    = 0x4010743f\n\tPPPIOCGL2TPSTATS                 = 0x40487436\n\tPPPIOCGMRU                       = 0x40047453\n\tPPPIOCGRASYNCMAP                 = 0x40047455\n\tPPPIOCGUNIT                      = 0x40047456\n\tPPPIOCGXASYNCMAP                 = 0x40207450\n\tPPPIOCSACTIVE                    = 0x80107446\n\tPPPIOCSASYNCMAP                  = 0x80047457\n\tPPPIOCSCOMPRESS                  = 0x8010744d\n\tPPPIOCSDEBUG                     = 0x80047440\n\tPPPIOCSFLAGS                     = 0x80047459\n\tPPPIOCSMAXCID                    = 0x80047451\n\tPPPIOCSMRRU                      = 0x8004743b\n\tPPPIOCSMRU                       = 0x80047452\n\tPPPIOCSNPMODE                    = 0x8008744b\n\tPPPIOCSPASS                      = 0x80107447\n\tPPPIOCSRASYNCMAP                 = 0x80047454\n\tPPPIOCSXASYNCMAP                 = 0x8020744f\n\tPPPIOCXFERUNIT                   = 0x2000744e\n\tPROT_SAO                         = 0x10\n\tPR_SET_PTRACER_ANY               = 0xffffffffffffffff\n\tPTRACE_GETEVRREGS                = 0x14\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GETREGS64                 = 0x16\n\tPTRACE_GETVRREGS                 = 0x12\n\tPTRACE_GETVSRREGS                = 0x1b\n\tPTRACE_GET_DEBUGREG              = 0x19\n\tPTRACE_SETEVRREGS                = 0x15\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SETREGS64                 = 0x17\n\tPTRACE_SETVRREGS                 = 0x13\n\tPTRACE_SETVSRREGS                = 0x1c\n\tPTRACE_SET_DEBUGREG              = 0x1a\n\tPTRACE_SINGLEBLOCK               = 0x100\n\tPTRACE_SYSEMU                    = 0x1d\n\tPTRACE_SYSEMU_SINGLESTEP         = 0x1e\n\tPT_CCR                           = 0x26\n\tPT_CTR                           = 0x23\n\tPT_DAR                           = 0x29\n\tPT_DSCR                          = 0x2c\n\tPT_DSISR                         = 0x2a\n\tPT_FPR0                          = 0x30\n\tPT_FPSCR                         = 0x50\n\tPT_LNK                           = 0x24\n\tPT_MSR                           = 0x21\n\tPT_NIP                           = 0x20\n\tPT_ORIG_R3                       = 0x22\n\tPT_R0                            = 0x0\n\tPT_R1                            = 0x1\n\tPT_R10                           = 0xa\n\tPT_R11                           = 0xb\n\tPT_R12                           = 0xc\n\tPT_R13                           = 0xd\n\tPT_R14                           = 0xe\n\tPT_R15                           = 0xf\n\tPT_R16                           = 0x10\n\tPT_R17                           = 0x11\n\tPT_R18                           = 0x12\n\tPT_R19                           = 0x13\n\tPT_R2                            = 0x2\n\tPT_R20                           = 0x14\n\tPT_R21                           = 0x15\n\tPT_R22                           = 0x16\n\tPT_R23                           = 0x17\n\tPT_R24                           = 0x18\n\tPT_R25                           = 0x19\n\tPT_R26                           = 0x1a\n\tPT_R27                           = 0x1b\n\tPT_R28                           = 0x1c\n\tPT_R29                           = 0x1d\n\tPT_R3                            = 0x3\n\tPT_R30                           = 0x1e\n\tPT_R31                           = 0x1f\n\tPT_R4                            = 0x4\n\tPT_R5                            = 0x5\n\tPT_R6                            = 0x6\n\tPT_R7                            = 0x7\n\tPT_R8                            = 0x8\n\tPT_R9                            = 0x9\n\tPT_REGS_COUNT                    = 0x2c\n\tPT_RESULT                        = 0x2b\n\tPT_SOFTE                         = 0x27\n\tPT_TRAP                          = 0x28\n\tPT_VR0                           = 0x52\n\tPT_VRSAVE                        = 0x94\n\tPT_VSCR                          = 0x93\n\tPT_VSR0                          = 0x96\n\tPT_VSR31                         = 0xd4\n\tPT_XER                           = 0x25\n\tRLIMIT_AS                        = 0x9\n\tRLIMIT_MEMLOCK                   = 0x8\n\tRLIMIT_NOFILE                    = 0x7\n\tRLIMIT_NPROC                     = 0x6\n\tRLIMIT_RSS                       = 0x5\n\tRNDADDENTROPY                    = 0x80085203\n\tRNDADDTOENTCNT                   = 0x80045201\n\tRNDCLEARPOOL                     = 0x20005206\n\tRNDGETENTCNT                     = 0x40045200\n\tRNDGETPOOL                       = 0x40085202\n\tRNDRESEEDCRNG                    = 0x20005207\n\tRNDZAPENTCNT                     = 0x20005204\n\tRTC_AIE_OFF                      = 0x20007002\n\tRTC_AIE_ON                       = 0x20007001\n\tRTC_ALM_READ                     = 0x40247008\n\tRTC_ALM_SET                      = 0x80247007\n\tRTC_EPOCH_READ                   = 0x4008700d\n\tRTC_EPOCH_SET                    = 0x8008700e\n\tRTC_IRQP_READ                    = 0x4008700b\n\tRTC_IRQP_SET                     = 0x8008700c\n\tRTC_PIE_OFF                      = 0x20007006\n\tRTC_PIE_ON                       = 0x20007005\n\tRTC_PLL_GET                      = 0x40207011\n\tRTC_PLL_SET                      = 0x80207012\n\tRTC_RD_TIME                      = 0x40247009\n\tRTC_SET_TIME                     = 0x8024700a\n\tRTC_UIE_OFF                      = 0x20007004\n\tRTC_UIE_ON                       = 0x20007003\n\tRTC_VL_CLR                       = 0x20007014\n\tRTC_VL_READ                      = 0x40047013\n\tRTC_WIE_OFF                      = 0x20007010\n\tRTC_WIE_ON                       = 0x2000700f\n\tRTC_WKALM_RD                     = 0x40287010\n\tRTC_WKALM_SET                    = 0x8028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x800\n\tSIOCATMARK                       = 0x8905\n\tSIOCGPGRP                        = 0x8904\n\tSIOCGSTAMPNS_NEW                 = 0x40108907\n\tSIOCGSTAMP_NEW                   = 0x40108906\n\tSIOCINQ                          = 0x4004667f\n\tSIOCOUTQ                         = 0x40047473\n\tSIOCSPGRP                        = 0x8902\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x2\n\tSOCK_NONBLOCK                    = 0x800\n\tSOCK_STREAM                      = 0x1\n\tSOL_SOCKET                       = 0x1\n\tSO_ACCEPTCONN                    = 0x1e\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x6\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x27\n\tSO_DONTROUTE                     = 0x5\n\tSO_ERROR                         = 0x4\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x9\n\tSO_LINGER                        = 0xd\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0xa\n\tSO_PASSCRED                      = 0x14\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x15\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1f\n\tSO_PROTOCOL                      = 0x26\n\tSO_RCVBUF                        = 0x8\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x10\n\tSO_RCVTIMEO                      = 0x12\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x12\n\tSO_REUSEADDR                     = 0x2\n\tSO_REUSEPORT                     = 0xf\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x7\n\tSO_SNDBUFFORCE                   = 0x20\n\tSO_SNDLOWAT                      = 0x11\n\tSO_SNDTIMEO                      = 0x13\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x13\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x3\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x400\n\tTAB2                             = 0x800\n\tTAB3                             = 0xc00\n\tTABDLY                           = 0xc00\n\tTCFLSH                           = 0x2000741f\n\tTCGETA                           = 0x40147417\n\tTCGETS                           = 0x402c7413\n\tTCSAFLUSH                        = 0x2\n\tTCSBRK                           = 0x2000741d\n\tTCSBRKP                          = 0x5425\n\tTCSETA                           = 0x80147418\n\tTCSETAF                          = 0x8014741c\n\tTCSETAW                          = 0x80147419\n\tTCSETS                           = 0x802c7414\n\tTCSETSF                          = 0x802c7416\n\tTCSETSW                          = 0x802c7415\n\tTCXONC                           = 0x2000741e\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x800\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x541d\n\tTIOCEXCL                         = 0x540c\n\tTIOCGDEV                         = 0x40045432\n\tTIOCGETC                         = 0x40067412\n\tTIOCGETD                         = 0x5424\n\tTIOCGETP                         = 0x40067408\n\tTIOCGEXCL                        = 0x40045440\n\tTIOCGICOUNT                      = 0x545d\n\tTIOCGISO7816                     = 0x40285442\n\tTIOCGLCKTRMIOS                   = 0x5456\n\tTIOCGLTC                         = 0x40067474\n\tTIOCGPGRP                        = 0x40047477\n\tTIOCGPKT                         = 0x40045438\n\tTIOCGPTLCK                       = 0x40045439\n\tTIOCGPTN                         = 0x40045430\n\tTIOCGPTPEER                      = 0x20005441\n\tTIOCGRS485                       = 0x542e\n\tTIOCGSERIAL                      = 0x541e\n\tTIOCGSID                         = 0x5429\n\tTIOCGSOFTCAR                     = 0x5419\n\tTIOCGWINSZ                       = 0x40087468\n\tTIOCINQ                          = 0x4004667f\n\tTIOCLINUX                        = 0x541c\n\tTIOCMBIC                         = 0x5417\n\tTIOCMBIS                         = 0x5416\n\tTIOCMGET                         = 0x5415\n\tTIOCMIWAIT                       = 0x545c\n\tTIOCMSET                         = 0x5418\n\tTIOCM_CAR                        = 0x40\n\tTIOCM_CD                         = 0x40\n\tTIOCM_CTS                        = 0x20\n\tTIOCM_DSR                        = 0x100\n\tTIOCM_LOOP                       = 0x8000\n\tTIOCM_OUT1                       = 0x2000\n\tTIOCM_OUT2                       = 0x4000\n\tTIOCM_RI                         = 0x80\n\tTIOCM_RNG                        = 0x80\n\tTIOCM_SR                         = 0x10\n\tTIOCM_ST                         = 0x8\n\tTIOCNOTTY                        = 0x5422\n\tTIOCNXCL                         = 0x540d\n\tTIOCOUTQ                         = 0x40047473\n\tTIOCPKT                          = 0x5420\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x540e\n\tTIOCSERCONFIG                    = 0x5453\n\tTIOCSERGETLSR                    = 0x5459\n\tTIOCSERGETMULTI                  = 0x545a\n\tTIOCSERGSTRUCT                   = 0x5458\n\tTIOCSERGWILD                     = 0x5454\n\tTIOCSERSETMULTI                  = 0x545b\n\tTIOCSERSWILD                     = 0x5455\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETC                         = 0x80067411\n\tTIOCSETD                         = 0x5423\n\tTIOCSETN                         = 0x8006740a\n\tTIOCSETP                         = 0x80067409\n\tTIOCSIG                          = 0x80045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x5457\n\tTIOCSLTC                         = 0x80067475\n\tTIOCSPGRP                        = 0x80047476\n\tTIOCSPTLCK                       = 0x80045431\n\tTIOCSRS485                       = 0x542f\n\tTIOCSSERIAL                      = 0x541f\n\tTIOCSSOFTCAR                     = 0x541a\n\tTIOCSTART                        = 0x2000746e\n\tTIOCSTI                          = 0x5412\n\tTIOCSTOP                         = 0x2000746f\n\tTIOCSWINSZ                       = 0x80087467\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x400000\n\tTUNATTACHFILTER                  = 0x801054d5\n\tTUNDETACHFILTER                  = 0x801054d6\n\tTUNGETDEVNETNS                   = 0x200054e3\n\tTUNGETFEATURES                   = 0x400454cf\n\tTUNGETFILTER                     = 0x401054db\n\tTUNGETIFF                        = 0x400454d2\n\tTUNGETSNDBUF                     = 0x400454d3\n\tTUNGETVNETBE                     = 0x400454df\n\tTUNGETVNETHDRSZ                  = 0x400454d7\n\tTUNGETVNETLE                     = 0x400454dd\n\tTUNSETCARRIER                    = 0x800454e2\n\tTUNSETDEBUG                      = 0x800454c9\n\tTUNSETFILTEREBPF                 = 0x400454e1\n\tTUNSETGROUP                      = 0x800454ce\n\tTUNSETIFF                        = 0x800454ca\n\tTUNSETIFINDEX                    = 0x800454da\n\tTUNSETLINK                       = 0x800454cd\n\tTUNSETNOCSUM                     = 0x800454c8\n\tTUNSETOFFLOAD                    = 0x800454d0\n\tTUNSETOWNER                      = 0x800454cc\n\tTUNSETPERSIST                    = 0x800454cb\n\tTUNSETQUEUE                      = 0x800454d9\n\tTUNSETSNDBUF                     = 0x800454d4\n\tTUNSETSTEERINGEBPF               = 0x400454e0\n\tTUNSETTXFILTER                   = 0x800454d1\n\tTUNSETVNETBE                     = 0x800454de\n\tTUNSETVNETHDRSZ                  = 0x800454d8\n\tTUNSETVNETLE                     = 0x800454dc\n\tUBI_IOCATT                       = 0x80186f40\n\tUBI_IOCDET                       = 0x80046f41\n\tUBI_IOCEBCH                      = 0x80044f02\n\tUBI_IOCEBER                      = 0x80044f01\n\tUBI_IOCEBISMAP                   = 0x40044f05\n\tUBI_IOCEBMAP                     = 0x80084f03\n\tUBI_IOCEBUNMAP                   = 0x80044f04\n\tUBI_IOCMKVOL                     = 0x80986f00\n\tUBI_IOCRMVOL                     = 0x80046f01\n\tUBI_IOCRNVOL                     = 0x91106f03\n\tUBI_IOCRPEB                      = 0x80046f04\n\tUBI_IOCRSVOL                     = 0x800c6f02\n\tUBI_IOCSETVOLPROP                = 0x80104f06\n\tUBI_IOCSPEB                      = 0x80046f05\n\tUBI_IOCVOLCRBLK                  = 0x80804f07\n\tUBI_IOCVOLRMBLK                  = 0x20004f08\n\tUBI_IOCVOLUP                     = 0x80084f00\n\tVDISCARD                         = 0x10\n\tVEOF                             = 0x4\n\tVEOL                             = 0x6\n\tVEOL2                            = 0x8\n\tVMIN                             = 0x5\n\tVREPRINT                         = 0xb\n\tVSTART                           = 0xd\n\tVSTOP                            = 0xe\n\tVSUSP                            = 0xc\n\tVSWTC                            = 0x9\n\tVT1                              = 0x10000\n\tVTDLY                            = 0x10000\n\tVTIME                            = 0x7\n\tVWERASE                          = 0xa\n\tWDIOC_GETBOOTSTATUS              = 0x40045702\n\tWDIOC_GETPRETIMEOUT              = 0x40045709\n\tWDIOC_GETSTATUS                  = 0x40045701\n\tWDIOC_GETSUPPORT                 = 0x40285700\n\tWDIOC_GETTEMP                    = 0x40045703\n\tWDIOC_GETTIMELEFT                = 0x4004570a\n\tWDIOC_GETTIMEOUT                 = 0x40045707\n\tWDIOC_KEEPALIVE                  = 0x40045705\n\tWDIOC_SETOPTIONS                 = 0x40045704\n\tWORDSIZE                         = 0x40\n\tXCASE                            = 0x4000\n\tXTABS                            = 0xc00\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x62)\n\tEADDRNOTAVAIL   = syscall.Errno(0x63)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x61)\n\tEALREADY        = syscall.Errno(0x72)\n\tEBADE           = syscall.Errno(0x34)\n\tEBADFD          = syscall.Errno(0x4d)\n\tEBADMSG         = syscall.Errno(0x4a)\n\tEBADR           = syscall.Errno(0x35)\n\tEBADRQC         = syscall.Errno(0x38)\n\tEBADSLT         = syscall.Errno(0x39)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x7d)\n\tECHRNG          = syscall.Errno(0x2c)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x67)\n\tECONNREFUSED    = syscall.Errno(0x6f)\n\tECONNRESET      = syscall.Errno(0x68)\n\tEDEADLK         = syscall.Errno(0x23)\n\tEDEADLOCK       = syscall.Errno(0x3a)\n\tEDESTADDRREQ    = syscall.Errno(0x59)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x7a)\n\tEHOSTDOWN       = syscall.Errno(0x70)\n\tEHOSTUNREACH    = syscall.Errno(0x71)\n\tEHWPOISON       = syscall.Errno(0x85)\n\tEIDRM           = syscall.Errno(0x2b)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x73)\n\tEISCONN         = syscall.Errno(0x6a)\n\tEISNAM          = syscall.Errno(0x78)\n\tEKEYEXPIRED     = syscall.Errno(0x7f)\n\tEKEYREJECTED    = syscall.Errno(0x81)\n\tEKEYREVOKED     = syscall.Errno(0x80)\n\tEL2HLT          = syscall.Errno(0x33)\n\tEL2NSYNC        = syscall.Errno(0x2d)\n\tEL3HLT          = syscall.Errno(0x2e)\n\tEL3RST          = syscall.Errno(0x2f)\n\tELIBACC         = syscall.Errno(0x4f)\n\tELIBBAD         = syscall.Errno(0x50)\n\tELIBEXEC        = syscall.Errno(0x53)\n\tELIBMAX         = syscall.Errno(0x52)\n\tELIBSCN         = syscall.Errno(0x51)\n\tELNRNG          = syscall.Errno(0x30)\n\tELOOP           = syscall.Errno(0x28)\n\tEMEDIUMTYPE     = syscall.Errno(0x7c)\n\tEMSGSIZE        = syscall.Errno(0x5a)\n\tEMULTIHOP       = syscall.Errno(0x48)\n\tENAMETOOLONG    = syscall.Errno(0x24)\n\tENAVAIL         = syscall.Errno(0x77)\n\tENETDOWN        = syscall.Errno(0x64)\n\tENETRESET       = syscall.Errno(0x66)\n\tENETUNREACH     = syscall.Errno(0x65)\n\tENOANO          = syscall.Errno(0x37)\n\tENOBUFS         = syscall.Errno(0x69)\n\tENOCSI          = syscall.Errno(0x32)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0x7e)\n\tENOLCK          = syscall.Errno(0x25)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x7b)\n\tENOMSG          = syscall.Errno(0x2a)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x5c)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x26)\n\tENOTCONN        = syscall.Errno(0x6b)\n\tENOTEMPTY       = syscall.Errno(0x27)\n\tENOTNAM         = syscall.Errno(0x76)\n\tENOTRECOVERABLE = syscall.Errno(0x83)\n\tENOTSOCK        = syscall.Errno(0x58)\n\tENOTSUP         = syscall.Errno(0x5f)\n\tENOTUNIQ        = syscall.Errno(0x4c)\n\tEOPNOTSUPP      = syscall.Errno(0x5f)\n\tEOVERFLOW       = syscall.Errno(0x4b)\n\tEOWNERDEAD      = syscall.Errno(0x82)\n\tEPFNOSUPPORT    = syscall.Errno(0x60)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x5d)\n\tEPROTOTYPE      = syscall.Errno(0x5b)\n\tEREMCHG         = syscall.Errno(0x4e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x79)\n\tERESTART        = syscall.Errno(0x55)\n\tERFKILL         = syscall.Errno(0x84)\n\tESHUTDOWN       = syscall.Errno(0x6c)\n\tESOCKTNOSUPPORT = syscall.Errno(0x5e)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x74)\n\tESTRPIPE        = syscall.Errno(0x56)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x6e)\n\tETOOMANYREFS    = syscall.Errno(0x6d)\n\tEUCLEAN         = syscall.Errno(0x75)\n\tEUNATCH         = syscall.Errno(0x31)\n\tEUSERS          = syscall.Errno(0x57)\n\tEXFULL          = syscall.Errno(0x36)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0x7)\n\tSIGCHLD   = syscall.Signal(0x11)\n\tSIGCLD    = syscall.Signal(0x11)\n\tSIGCONT   = syscall.Signal(0x12)\n\tSIGIO     = syscall.Signal(0x1d)\n\tSIGPOLL   = syscall.Signal(0x1d)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x1e)\n\tSIGSTKFLT = syscall.Signal(0x10)\n\tSIGSTOP   = syscall.Signal(0x13)\n\tSIGSYS    = syscall.Signal(0x1f)\n\tSIGTSTP   = syscall.Signal(0x14)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x17)\n\tSIGUSR1   = syscall.Signal(0xa)\n\tSIGUSR2   = syscall.Signal(0xc)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{36, \"ENAMETOOLONG\", \"file name too long\"},\n\t{37, \"ENOLCK\", \"no locks available\"},\n\t{38, \"ENOSYS\", \"function not implemented\"},\n\t{39, \"ENOTEMPTY\", \"directory not empty\"},\n\t{40, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{42, \"ENOMSG\", \"no message of desired type\"},\n\t{43, \"EIDRM\", \"identifier removed\"},\n\t{44, \"ECHRNG\", \"channel number out of range\"},\n\t{45, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{46, \"EL3HLT\", \"level 3 halted\"},\n\t{47, \"EL3RST\", \"level 3 reset\"},\n\t{48, \"ELNRNG\", \"link number out of range\"},\n\t{49, \"EUNATCH\", \"protocol driver not attached\"},\n\t{50, \"ENOCSI\", \"no CSI structure available\"},\n\t{51, \"EL2HLT\", \"level 2 halted\"},\n\t{52, \"EBADE\", \"invalid exchange\"},\n\t{53, \"EBADR\", \"invalid request descriptor\"},\n\t{54, \"EXFULL\", \"exchange full\"},\n\t{55, \"ENOANO\", \"no anode\"},\n\t{56, \"EBADRQC\", \"invalid request code\"},\n\t{57, \"EBADSLT\", \"invalid slot\"},\n\t{58, \"EDEADLOCK\", \"file locking deadlock error\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{72, \"EMULTIHOP\", \"multihop attempted\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EBADMSG\", \"bad message\"},\n\t{75, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{76, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{77, \"EBADFD\", \"file descriptor in bad state\"},\n\t{78, \"EREMCHG\", \"remote address changed\"},\n\t{79, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{80, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{81, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{82, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{83, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{84, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{85, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{86, \"ESTRPIPE\", \"streams pipe error\"},\n\t{87, \"EUSERS\", \"too many users\"},\n\t{88, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{89, \"EDESTADDRREQ\", \"destination address required\"},\n\t{90, \"EMSGSIZE\", \"message too long\"},\n\t{91, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{92, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{93, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{94, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{95, \"ENOTSUP\", \"operation not supported\"},\n\t{96, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{97, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{98, \"EADDRINUSE\", \"address already in use\"},\n\t{99, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{100, \"ENETDOWN\", \"network is down\"},\n\t{101, \"ENETUNREACH\", \"network is unreachable\"},\n\t{102, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{103, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{104, \"ECONNRESET\", \"connection reset by peer\"},\n\t{105, \"ENOBUFS\", \"no buffer space available\"},\n\t{106, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{107, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{108, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{109, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{110, \"ETIMEDOUT\", \"connection timed out\"},\n\t{111, \"ECONNREFUSED\", \"connection refused\"},\n\t{112, \"EHOSTDOWN\", \"host is down\"},\n\t{113, \"EHOSTUNREACH\", \"no route to host\"},\n\t{114, \"EALREADY\", \"operation already in progress\"},\n\t{115, \"EINPROGRESS\", \"operation now in progress\"},\n\t{116, \"ESTALE\", \"stale file handle\"},\n\t{117, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{118, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{119, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{120, \"EISNAM\", \"is a named type file\"},\n\t{121, \"EREMOTEIO\", \"remote I/O error\"},\n\t{122, \"EDQUOT\", \"disk quota exceeded\"},\n\t{123, \"ENOMEDIUM\", \"no medium found\"},\n\t{124, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{125, \"ECANCELED\", \"operation canceled\"},\n\t{126, \"ENOKEY\", \"required key not available\"},\n\t{127, \"EKEYEXPIRED\", \"key has expired\"},\n\t{128, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{129, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{130, \"EOWNERDEAD\", \"owner died\"},\n\t{131, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{132, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{133, \"EHWPOISON\", \"memory page has hardware error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGBUS\", \"bus error\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGUSR1\", \"user defined signal 1\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGUSR2\", \"user defined signal 2\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGSTKFLT\", \"stack fault\"},\n\t{17, \"SIGCHLD\", \"child exited\"},\n\t{18, \"SIGCONT\", \"continued\"},\n\t{19, \"SIGSTOP\", \"stopped (signal)\"},\n\t{20, \"SIGTSTP\", \"stopped\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGURG\", \"urgent I/O condition\"},\n\t{24, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"file size limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window changed\"},\n\t{29, \"SIGIO\", \"I/O possible\"},\n\t{30, \"SIGPWR\", \"power failure\"},\n\t{31, \"SIGSYS\", \"bad system call\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc64le,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x17\n\tB115200                          = 0x11\n\tB1152000                         = 0x18\n\tB1500000                         = 0x19\n\tB2000000                         = 0x1a\n\tB230400                          = 0x12\n\tB2500000                         = 0x1b\n\tB3000000                         = 0x1c\n\tB3500000                         = 0x1d\n\tB4000000                         = 0x1e\n\tB460800                          = 0x13\n\tB500000                          = 0x14\n\tB57600                           = 0x10\n\tB576000                          = 0x15\n\tB921600                          = 0x16\n\tBLKBSZGET                        = 0x40081270\n\tBLKBSZSET                        = 0x80081271\n\tBLKFLSBUF                        = 0x20001261\n\tBLKFRAGET                        = 0x20001265\n\tBLKFRASET                        = 0x20001264\n\tBLKGETSIZE                       = 0x20001260\n\tBLKGETSIZE64                     = 0x40081272\n\tBLKPBSZGET                       = 0x2000127b\n\tBLKRAGET                         = 0x20001263\n\tBLKRASET                         = 0x20001262\n\tBLKROGET                         = 0x2000125e\n\tBLKROSET                         = 0x2000125d\n\tBLKRRPART                        = 0x2000125f\n\tBLKSECTGET                       = 0x20001267\n\tBLKSECTSET                       = 0x20001266\n\tBLKSSZGET                        = 0x20001268\n\tBOTHER                           = 0x1f\n\tBS1                              = 0x8000\n\tBSDLY                            = 0x8000\n\tCBAUD                            = 0xff\n\tCBAUDEX                          = 0x0\n\tCIBAUD                           = 0xff0000\n\tCLOCAL                           = 0x8000\n\tCR1                              = 0x1000\n\tCR2                              = 0x2000\n\tCR3                              = 0x3000\n\tCRDLY                            = 0x3000\n\tCREAD                            = 0x800\n\tCS6                              = 0x100\n\tCS7                              = 0x200\n\tCS8                              = 0x300\n\tCSIZE                            = 0x300\n\tCSTOPB                           = 0x400\n\tECHOCTL                          = 0x40\n\tECHOE                            = 0x2\n\tECHOK                            = 0x4\n\tECHOKE                           = 0x1\n\tECHONL                           = 0x10\n\tECHOPRT                          = 0x20\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x800\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000000\n\tFF1                              = 0x4000\n\tFFDLY                            = 0x4000\n\tFICLONE                          = 0x80049409\n\tFICLONERANGE                     = 0x8020940d\n\tFLUSHO                           = 0x800000\n\tFS_IOC_ENABLE_VERITY             = 0x80806685\n\tFS_IOC_GETFLAGS                  = 0x40086601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x4010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x800c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x80106614\n\tFS_IOC_SETFLAGS                  = 0x80086602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x400c6613\n\tF_GETLK                          = 0x5\n\tF_GETLK64                        = 0xc\n\tF_GETOWN                         = 0x9\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x6\n\tF_SETLK64                        = 0xd\n\tF_SETLKW                         = 0x7\n\tF_SETLKW64                       = 0xe\n\tF_SETOWN                         = 0x8\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x4000\n\tICANON                           = 0x100\n\tIEXTEN                           = 0x400\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x800\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x200007b9\n\tISIG                             = 0x80\n\tIUCLC                            = 0x1000\n\tIXOFF                            = 0x400\n\tIXON                             = 0x200\n\tMAP_ANON                         = 0x20\n\tMAP_ANONYMOUS                    = 0x20\n\tMAP_DENYWRITE                    = 0x800\n\tMAP_EXECUTABLE                   = 0x1000\n\tMAP_GROWSDOWN                    = 0x100\n\tMAP_HUGETLB                      = 0x40000\n\tMAP_LOCKED                       = 0x80\n\tMAP_NONBLOCK                     = 0x10000\n\tMAP_NORESERVE                    = 0x40\n\tMAP_POPULATE                     = 0x8000\n\tMAP_STACK                        = 0x20000\n\tMAP_SYNC                         = 0x80000\n\tMCL_CURRENT                      = 0x2000\n\tMCL_FUTURE                       = 0x4000\n\tMCL_ONFAULT                      = 0x8000\n\tNFDBITS                          = 0x40\n\tNL2                              = 0x200\n\tNL3                              = 0x300\n\tNLDLY                            = 0x300\n\tNOFLSH                           = 0x80000000\n\tNS_GET_NSTYPE                    = 0x2000b703\n\tNS_GET_OWNER_UID                 = 0x2000b704\n\tNS_GET_PARENT                    = 0x2000b702\n\tNS_GET_USERNS                    = 0x2000b701\n\tOLCUC                            = 0x4\n\tONLCR                            = 0x2\n\tO_APPEND                         = 0x400\n\tO_ASYNC                          = 0x2000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x40\n\tO_DIRECT                         = 0x20000\n\tO_DIRECTORY                      = 0x4000\n\tO_DSYNC                          = 0x1000\n\tO_EXCL                           = 0x80\n\tO_FSYNC                          = 0x101000\n\tO_LARGEFILE                      = 0x0\n\tO_NDELAY                         = 0x800\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x100\n\tO_NOFOLLOW                       = 0x8000\n\tO_NONBLOCK                       = 0x800\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x101000\n\tO_SYNC                           = 0x101000\n\tO_TMPFILE                        = 0x404000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x1000\n\tPARODD                           = 0x2000\n\tPENDIN                           = 0x20000000\n\tPERF_EVENT_IOC_DISABLE           = 0x20002401\n\tPERF_EVENT_IOC_ENABLE            = 0x20002400\n\tPERF_EVENT_IOC_ID                = 0x40082407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x80042409\n\tPERF_EVENT_IOC_PERIOD            = 0x80082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc008240a\n\tPERF_EVENT_IOC_REFRESH           = 0x20002402\n\tPERF_EVENT_IOC_RESET             = 0x20002403\n\tPERF_EVENT_IOC_SET_BPF           = 0x80042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x80082406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x20002405\n\tPPPIOCATTACH                     = 0x8004743d\n\tPPPIOCATTCHAN                    = 0x80047438\n\tPPPIOCCONNECT                    = 0x8004743a\n\tPPPIOCDETACH                     = 0x8004743c\n\tPPPIOCDISCONN                    = 0x20007439\n\tPPPIOCGASYNCMAP                  = 0x40047458\n\tPPPIOCGCHAN                      = 0x40047437\n\tPPPIOCGDEBUG                     = 0x40047441\n\tPPPIOCGFLAGS                     = 0x4004745a\n\tPPPIOCGIDLE                      = 0x4010743f\n\tPPPIOCGIDLE32                    = 0x4008743f\n\tPPPIOCGIDLE64                    = 0x4010743f\n\tPPPIOCGL2TPSTATS                 = 0x40487436\n\tPPPIOCGMRU                       = 0x40047453\n\tPPPIOCGRASYNCMAP                 = 0x40047455\n\tPPPIOCGUNIT                      = 0x40047456\n\tPPPIOCGXASYNCMAP                 = 0x40207450\n\tPPPIOCSACTIVE                    = 0x80107446\n\tPPPIOCSASYNCMAP                  = 0x80047457\n\tPPPIOCSCOMPRESS                  = 0x8010744d\n\tPPPIOCSDEBUG                     = 0x80047440\n\tPPPIOCSFLAGS                     = 0x80047459\n\tPPPIOCSMAXCID                    = 0x80047451\n\tPPPIOCSMRRU                      = 0x8004743b\n\tPPPIOCSMRU                       = 0x80047452\n\tPPPIOCSNPMODE                    = 0x8008744b\n\tPPPIOCSPASS                      = 0x80107447\n\tPPPIOCSRASYNCMAP                 = 0x80047454\n\tPPPIOCSXASYNCMAP                 = 0x8020744f\n\tPPPIOCXFERUNIT                   = 0x2000744e\n\tPROT_SAO                         = 0x10\n\tPR_SET_PTRACER_ANY               = 0xffffffffffffffff\n\tPTRACE_GETEVRREGS                = 0x14\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GETREGS64                 = 0x16\n\tPTRACE_GETVRREGS                 = 0x12\n\tPTRACE_GETVSRREGS                = 0x1b\n\tPTRACE_GET_DEBUGREG              = 0x19\n\tPTRACE_SETEVRREGS                = 0x15\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SETREGS64                 = 0x17\n\tPTRACE_SETVRREGS                 = 0x13\n\tPTRACE_SETVSRREGS                = 0x1c\n\tPTRACE_SET_DEBUGREG              = 0x1a\n\tPTRACE_SINGLEBLOCK               = 0x100\n\tPTRACE_SYSEMU                    = 0x1d\n\tPTRACE_SYSEMU_SINGLESTEP         = 0x1e\n\tPT_CCR                           = 0x26\n\tPT_CTR                           = 0x23\n\tPT_DAR                           = 0x29\n\tPT_DSCR                          = 0x2c\n\tPT_DSISR                         = 0x2a\n\tPT_FPR0                          = 0x30\n\tPT_FPSCR                         = 0x50\n\tPT_LNK                           = 0x24\n\tPT_MSR                           = 0x21\n\tPT_NIP                           = 0x20\n\tPT_ORIG_R3                       = 0x22\n\tPT_R0                            = 0x0\n\tPT_R1                            = 0x1\n\tPT_R10                           = 0xa\n\tPT_R11                           = 0xb\n\tPT_R12                           = 0xc\n\tPT_R13                           = 0xd\n\tPT_R14                           = 0xe\n\tPT_R15                           = 0xf\n\tPT_R16                           = 0x10\n\tPT_R17                           = 0x11\n\tPT_R18                           = 0x12\n\tPT_R19                           = 0x13\n\tPT_R2                            = 0x2\n\tPT_R20                           = 0x14\n\tPT_R21                           = 0x15\n\tPT_R22                           = 0x16\n\tPT_R23                           = 0x17\n\tPT_R24                           = 0x18\n\tPT_R25                           = 0x19\n\tPT_R26                           = 0x1a\n\tPT_R27                           = 0x1b\n\tPT_R28                           = 0x1c\n\tPT_R29                           = 0x1d\n\tPT_R3                            = 0x3\n\tPT_R30                           = 0x1e\n\tPT_R31                           = 0x1f\n\tPT_R4                            = 0x4\n\tPT_R5                            = 0x5\n\tPT_R6                            = 0x6\n\tPT_R7                            = 0x7\n\tPT_R8                            = 0x8\n\tPT_R9                            = 0x9\n\tPT_REGS_COUNT                    = 0x2c\n\tPT_RESULT                        = 0x2b\n\tPT_SOFTE                         = 0x27\n\tPT_TRAP                          = 0x28\n\tPT_VR0                           = 0x52\n\tPT_VRSAVE                        = 0x94\n\tPT_VSCR                          = 0x93\n\tPT_VSR0                          = 0x96\n\tPT_VSR31                         = 0xd4\n\tPT_XER                           = 0x25\n\tRLIMIT_AS                        = 0x9\n\tRLIMIT_MEMLOCK                   = 0x8\n\tRLIMIT_NOFILE                    = 0x7\n\tRLIMIT_NPROC                     = 0x6\n\tRLIMIT_RSS                       = 0x5\n\tRNDADDENTROPY                    = 0x80085203\n\tRNDADDTOENTCNT                   = 0x80045201\n\tRNDCLEARPOOL                     = 0x20005206\n\tRNDGETENTCNT                     = 0x40045200\n\tRNDGETPOOL                       = 0x40085202\n\tRNDRESEEDCRNG                    = 0x20005207\n\tRNDZAPENTCNT                     = 0x20005204\n\tRTC_AIE_OFF                      = 0x20007002\n\tRTC_AIE_ON                       = 0x20007001\n\tRTC_ALM_READ                     = 0x40247008\n\tRTC_ALM_SET                      = 0x80247007\n\tRTC_EPOCH_READ                   = 0x4008700d\n\tRTC_EPOCH_SET                    = 0x8008700e\n\tRTC_IRQP_READ                    = 0x4008700b\n\tRTC_IRQP_SET                     = 0x8008700c\n\tRTC_PIE_OFF                      = 0x20007006\n\tRTC_PIE_ON                       = 0x20007005\n\tRTC_PLL_GET                      = 0x40207011\n\tRTC_PLL_SET                      = 0x80207012\n\tRTC_RD_TIME                      = 0x40247009\n\tRTC_SET_TIME                     = 0x8024700a\n\tRTC_UIE_OFF                      = 0x20007004\n\tRTC_UIE_ON                       = 0x20007003\n\tRTC_VL_CLR                       = 0x20007014\n\tRTC_VL_READ                      = 0x40047013\n\tRTC_WIE_OFF                      = 0x20007010\n\tRTC_WIE_ON                       = 0x2000700f\n\tRTC_WKALM_RD                     = 0x40287010\n\tRTC_WKALM_SET                    = 0x8028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x800\n\tSIOCATMARK                       = 0x8905\n\tSIOCGPGRP                        = 0x8904\n\tSIOCGSTAMPNS_NEW                 = 0x40108907\n\tSIOCGSTAMP_NEW                   = 0x40108906\n\tSIOCINQ                          = 0x4004667f\n\tSIOCOUTQ                         = 0x40047473\n\tSIOCSPGRP                        = 0x8902\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x2\n\tSOCK_NONBLOCK                    = 0x800\n\tSOCK_STREAM                      = 0x1\n\tSOL_SOCKET                       = 0x1\n\tSO_ACCEPTCONN                    = 0x1e\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x6\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x27\n\tSO_DONTROUTE                     = 0x5\n\tSO_ERROR                         = 0x4\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x9\n\tSO_LINGER                        = 0xd\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0xa\n\tSO_PASSCRED                      = 0x14\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x15\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1f\n\tSO_PROTOCOL                      = 0x26\n\tSO_RCVBUF                        = 0x8\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x10\n\tSO_RCVTIMEO                      = 0x12\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x12\n\tSO_REUSEADDR                     = 0x2\n\tSO_REUSEPORT                     = 0xf\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x7\n\tSO_SNDBUFFORCE                   = 0x20\n\tSO_SNDLOWAT                      = 0x11\n\tSO_SNDTIMEO                      = 0x13\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x13\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x3\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x400\n\tTAB2                             = 0x800\n\tTAB3                             = 0xc00\n\tTABDLY                           = 0xc00\n\tTCFLSH                           = 0x2000741f\n\tTCGETA                           = 0x40147417\n\tTCGETS                           = 0x402c7413\n\tTCSAFLUSH                        = 0x2\n\tTCSBRK                           = 0x2000741d\n\tTCSBRKP                          = 0x5425\n\tTCSETA                           = 0x80147418\n\tTCSETAF                          = 0x8014741c\n\tTCSETAW                          = 0x80147419\n\tTCSETS                           = 0x802c7414\n\tTCSETSF                          = 0x802c7416\n\tTCSETSW                          = 0x802c7415\n\tTCXONC                           = 0x2000741e\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x800\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x541d\n\tTIOCEXCL                         = 0x540c\n\tTIOCGDEV                         = 0x40045432\n\tTIOCGETC                         = 0x40067412\n\tTIOCGETD                         = 0x5424\n\tTIOCGETP                         = 0x40067408\n\tTIOCGEXCL                        = 0x40045440\n\tTIOCGICOUNT                      = 0x545d\n\tTIOCGISO7816                     = 0x40285442\n\tTIOCGLCKTRMIOS                   = 0x5456\n\tTIOCGLTC                         = 0x40067474\n\tTIOCGPGRP                        = 0x40047477\n\tTIOCGPKT                         = 0x40045438\n\tTIOCGPTLCK                       = 0x40045439\n\tTIOCGPTN                         = 0x40045430\n\tTIOCGPTPEER                      = 0x20005441\n\tTIOCGRS485                       = 0x542e\n\tTIOCGSERIAL                      = 0x541e\n\tTIOCGSID                         = 0x5429\n\tTIOCGSOFTCAR                     = 0x5419\n\tTIOCGWINSZ                       = 0x40087468\n\tTIOCINQ                          = 0x4004667f\n\tTIOCLINUX                        = 0x541c\n\tTIOCMBIC                         = 0x5417\n\tTIOCMBIS                         = 0x5416\n\tTIOCMGET                         = 0x5415\n\tTIOCMIWAIT                       = 0x545c\n\tTIOCMSET                         = 0x5418\n\tTIOCM_CAR                        = 0x40\n\tTIOCM_CD                         = 0x40\n\tTIOCM_CTS                        = 0x20\n\tTIOCM_DSR                        = 0x100\n\tTIOCM_LOOP                       = 0x8000\n\tTIOCM_OUT1                       = 0x2000\n\tTIOCM_OUT2                       = 0x4000\n\tTIOCM_RI                         = 0x80\n\tTIOCM_RNG                        = 0x80\n\tTIOCM_SR                         = 0x10\n\tTIOCM_ST                         = 0x8\n\tTIOCNOTTY                        = 0x5422\n\tTIOCNXCL                         = 0x540d\n\tTIOCOUTQ                         = 0x40047473\n\tTIOCPKT                          = 0x5420\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x540e\n\tTIOCSERCONFIG                    = 0x5453\n\tTIOCSERGETLSR                    = 0x5459\n\tTIOCSERGETMULTI                  = 0x545a\n\tTIOCSERGSTRUCT                   = 0x5458\n\tTIOCSERGWILD                     = 0x5454\n\tTIOCSERSETMULTI                  = 0x545b\n\tTIOCSERSWILD                     = 0x5455\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETC                         = 0x80067411\n\tTIOCSETD                         = 0x5423\n\tTIOCSETN                         = 0x8006740a\n\tTIOCSETP                         = 0x80067409\n\tTIOCSIG                          = 0x80045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x5457\n\tTIOCSLTC                         = 0x80067475\n\tTIOCSPGRP                        = 0x80047476\n\tTIOCSPTLCK                       = 0x80045431\n\tTIOCSRS485                       = 0x542f\n\tTIOCSSERIAL                      = 0x541f\n\tTIOCSSOFTCAR                     = 0x541a\n\tTIOCSTART                        = 0x2000746e\n\tTIOCSTI                          = 0x5412\n\tTIOCSTOP                         = 0x2000746f\n\tTIOCSWINSZ                       = 0x80087467\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x400000\n\tTUNATTACHFILTER                  = 0x801054d5\n\tTUNDETACHFILTER                  = 0x801054d6\n\tTUNGETDEVNETNS                   = 0x200054e3\n\tTUNGETFEATURES                   = 0x400454cf\n\tTUNGETFILTER                     = 0x401054db\n\tTUNGETIFF                        = 0x400454d2\n\tTUNGETSNDBUF                     = 0x400454d3\n\tTUNGETVNETBE                     = 0x400454df\n\tTUNGETVNETHDRSZ                  = 0x400454d7\n\tTUNGETVNETLE                     = 0x400454dd\n\tTUNSETCARRIER                    = 0x800454e2\n\tTUNSETDEBUG                      = 0x800454c9\n\tTUNSETFILTEREBPF                 = 0x400454e1\n\tTUNSETGROUP                      = 0x800454ce\n\tTUNSETIFF                        = 0x800454ca\n\tTUNSETIFINDEX                    = 0x800454da\n\tTUNSETLINK                       = 0x800454cd\n\tTUNSETNOCSUM                     = 0x800454c8\n\tTUNSETOFFLOAD                    = 0x800454d0\n\tTUNSETOWNER                      = 0x800454cc\n\tTUNSETPERSIST                    = 0x800454cb\n\tTUNSETQUEUE                      = 0x800454d9\n\tTUNSETSNDBUF                     = 0x800454d4\n\tTUNSETSTEERINGEBPF               = 0x400454e0\n\tTUNSETTXFILTER                   = 0x800454d1\n\tTUNSETVNETBE                     = 0x800454de\n\tTUNSETVNETHDRSZ                  = 0x800454d8\n\tTUNSETVNETLE                     = 0x800454dc\n\tUBI_IOCATT                       = 0x80186f40\n\tUBI_IOCDET                       = 0x80046f41\n\tUBI_IOCEBCH                      = 0x80044f02\n\tUBI_IOCEBER                      = 0x80044f01\n\tUBI_IOCEBISMAP                   = 0x40044f05\n\tUBI_IOCEBMAP                     = 0x80084f03\n\tUBI_IOCEBUNMAP                   = 0x80044f04\n\tUBI_IOCMKVOL                     = 0x80986f00\n\tUBI_IOCRMVOL                     = 0x80046f01\n\tUBI_IOCRNVOL                     = 0x91106f03\n\tUBI_IOCRPEB                      = 0x80046f04\n\tUBI_IOCRSVOL                     = 0x800c6f02\n\tUBI_IOCSETVOLPROP                = 0x80104f06\n\tUBI_IOCSPEB                      = 0x80046f05\n\tUBI_IOCVOLCRBLK                  = 0x80804f07\n\tUBI_IOCVOLRMBLK                  = 0x20004f08\n\tUBI_IOCVOLUP                     = 0x80084f00\n\tVDISCARD                         = 0x10\n\tVEOF                             = 0x4\n\tVEOL                             = 0x6\n\tVEOL2                            = 0x8\n\tVMIN                             = 0x5\n\tVREPRINT                         = 0xb\n\tVSTART                           = 0xd\n\tVSTOP                            = 0xe\n\tVSUSP                            = 0xc\n\tVSWTC                            = 0x9\n\tVT1                              = 0x10000\n\tVTDLY                            = 0x10000\n\tVTIME                            = 0x7\n\tVWERASE                          = 0xa\n\tWDIOC_GETBOOTSTATUS              = 0x40045702\n\tWDIOC_GETPRETIMEOUT              = 0x40045709\n\tWDIOC_GETSTATUS                  = 0x40045701\n\tWDIOC_GETSUPPORT                 = 0x40285700\n\tWDIOC_GETTEMP                    = 0x40045703\n\tWDIOC_GETTIMELEFT                = 0x4004570a\n\tWDIOC_GETTIMEOUT                 = 0x40045707\n\tWDIOC_KEEPALIVE                  = 0x40045705\n\tWDIOC_SETOPTIONS                 = 0x40045704\n\tWORDSIZE                         = 0x40\n\tXCASE                            = 0x4000\n\tXTABS                            = 0xc00\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x62)\n\tEADDRNOTAVAIL   = syscall.Errno(0x63)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x61)\n\tEALREADY        = syscall.Errno(0x72)\n\tEBADE           = syscall.Errno(0x34)\n\tEBADFD          = syscall.Errno(0x4d)\n\tEBADMSG         = syscall.Errno(0x4a)\n\tEBADR           = syscall.Errno(0x35)\n\tEBADRQC         = syscall.Errno(0x38)\n\tEBADSLT         = syscall.Errno(0x39)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x7d)\n\tECHRNG          = syscall.Errno(0x2c)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x67)\n\tECONNREFUSED    = syscall.Errno(0x6f)\n\tECONNRESET      = syscall.Errno(0x68)\n\tEDEADLK         = syscall.Errno(0x23)\n\tEDEADLOCK       = syscall.Errno(0x3a)\n\tEDESTADDRREQ    = syscall.Errno(0x59)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x7a)\n\tEHOSTDOWN       = syscall.Errno(0x70)\n\tEHOSTUNREACH    = syscall.Errno(0x71)\n\tEHWPOISON       = syscall.Errno(0x85)\n\tEIDRM           = syscall.Errno(0x2b)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x73)\n\tEISCONN         = syscall.Errno(0x6a)\n\tEISNAM          = syscall.Errno(0x78)\n\tEKEYEXPIRED     = syscall.Errno(0x7f)\n\tEKEYREJECTED    = syscall.Errno(0x81)\n\tEKEYREVOKED     = syscall.Errno(0x80)\n\tEL2HLT          = syscall.Errno(0x33)\n\tEL2NSYNC        = syscall.Errno(0x2d)\n\tEL3HLT          = syscall.Errno(0x2e)\n\tEL3RST          = syscall.Errno(0x2f)\n\tELIBACC         = syscall.Errno(0x4f)\n\tELIBBAD         = syscall.Errno(0x50)\n\tELIBEXEC        = syscall.Errno(0x53)\n\tELIBMAX         = syscall.Errno(0x52)\n\tELIBSCN         = syscall.Errno(0x51)\n\tELNRNG          = syscall.Errno(0x30)\n\tELOOP           = syscall.Errno(0x28)\n\tEMEDIUMTYPE     = syscall.Errno(0x7c)\n\tEMSGSIZE        = syscall.Errno(0x5a)\n\tEMULTIHOP       = syscall.Errno(0x48)\n\tENAMETOOLONG    = syscall.Errno(0x24)\n\tENAVAIL         = syscall.Errno(0x77)\n\tENETDOWN        = syscall.Errno(0x64)\n\tENETRESET       = syscall.Errno(0x66)\n\tENETUNREACH     = syscall.Errno(0x65)\n\tENOANO          = syscall.Errno(0x37)\n\tENOBUFS         = syscall.Errno(0x69)\n\tENOCSI          = syscall.Errno(0x32)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0x7e)\n\tENOLCK          = syscall.Errno(0x25)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x7b)\n\tENOMSG          = syscall.Errno(0x2a)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x5c)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x26)\n\tENOTCONN        = syscall.Errno(0x6b)\n\tENOTEMPTY       = syscall.Errno(0x27)\n\tENOTNAM         = syscall.Errno(0x76)\n\tENOTRECOVERABLE = syscall.Errno(0x83)\n\tENOTSOCK        = syscall.Errno(0x58)\n\tENOTSUP         = syscall.Errno(0x5f)\n\tENOTUNIQ        = syscall.Errno(0x4c)\n\tEOPNOTSUPP      = syscall.Errno(0x5f)\n\tEOVERFLOW       = syscall.Errno(0x4b)\n\tEOWNERDEAD      = syscall.Errno(0x82)\n\tEPFNOSUPPORT    = syscall.Errno(0x60)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x5d)\n\tEPROTOTYPE      = syscall.Errno(0x5b)\n\tEREMCHG         = syscall.Errno(0x4e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x79)\n\tERESTART        = syscall.Errno(0x55)\n\tERFKILL         = syscall.Errno(0x84)\n\tESHUTDOWN       = syscall.Errno(0x6c)\n\tESOCKTNOSUPPORT = syscall.Errno(0x5e)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x74)\n\tESTRPIPE        = syscall.Errno(0x56)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x6e)\n\tETOOMANYREFS    = syscall.Errno(0x6d)\n\tEUCLEAN         = syscall.Errno(0x75)\n\tEUNATCH         = syscall.Errno(0x31)\n\tEUSERS          = syscall.Errno(0x57)\n\tEXFULL          = syscall.Errno(0x36)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0x7)\n\tSIGCHLD   = syscall.Signal(0x11)\n\tSIGCLD    = syscall.Signal(0x11)\n\tSIGCONT   = syscall.Signal(0x12)\n\tSIGIO     = syscall.Signal(0x1d)\n\tSIGPOLL   = syscall.Signal(0x1d)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x1e)\n\tSIGSTKFLT = syscall.Signal(0x10)\n\tSIGSTOP   = syscall.Signal(0x13)\n\tSIGSYS    = syscall.Signal(0x1f)\n\tSIGTSTP   = syscall.Signal(0x14)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x17)\n\tSIGUSR1   = syscall.Signal(0xa)\n\tSIGUSR2   = syscall.Signal(0xc)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{36, \"ENAMETOOLONG\", \"file name too long\"},\n\t{37, \"ENOLCK\", \"no locks available\"},\n\t{38, \"ENOSYS\", \"function not implemented\"},\n\t{39, \"ENOTEMPTY\", \"directory not empty\"},\n\t{40, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{42, \"ENOMSG\", \"no message of desired type\"},\n\t{43, \"EIDRM\", \"identifier removed\"},\n\t{44, \"ECHRNG\", \"channel number out of range\"},\n\t{45, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{46, \"EL3HLT\", \"level 3 halted\"},\n\t{47, \"EL3RST\", \"level 3 reset\"},\n\t{48, \"ELNRNG\", \"link number out of range\"},\n\t{49, \"EUNATCH\", \"protocol driver not attached\"},\n\t{50, \"ENOCSI\", \"no CSI structure available\"},\n\t{51, \"EL2HLT\", \"level 2 halted\"},\n\t{52, \"EBADE\", \"invalid exchange\"},\n\t{53, \"EBADR\", \"invalid request descriptor\"},\n\t{54, \"EXFULL\", \"exchange full\"},\n\t{55, \"ENOANO\", \"no anode\"},\n\t{56, \"EBADRQC\", \"invalid request code\"},\n\t{57, \"EBADSLT\", \"invalid slot\"},\n\t{58, \"EDEADLOCK\", \"file locking deadlock error\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{72, \"EMULTIHOP\", \"multihop attempted\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EBADMSG\", \"bad message\"},\n\t{75, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{76, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{77, \"EBADFD\", \"file descriptor in bad state\"},\n\t{78, \"EREMCHG\", \"remote address changed\"},\n\t{79, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{80, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{81, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{82, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{83, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{84, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{85, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{86, \"ESTRPIPE\", \"streams pipe error\"},\n\t{87, \"EUSERS\", \"too many users\"},\n\t{88, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{89, \"EDESTADDRREQ\", \"destination address required\"},\n\t{90, \"EMSGSIZE\", \"message too long\"},\n\t{91, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{92, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{93, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{94, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{95, \"ENOTSUP\", \"operation not supported\"},\n\t{96, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{97, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{98, \"EADDRINUSE\", \"address already in use\"},\n\t{99, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{100, \"ENETDOWN\", \"network is down\"},\n\t{101, \"ENETUNREACH\", \"network is unreachable\"},\n\t{102, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{103, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{104, \"ECONNRESET\", \"connection reset by peer\"},\n\t{105, \"ENOBUFS\", \"no buffer space available\"},\n\t{106, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{107, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{108, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{109, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{110, \"ETIMEDOUT\", \"connection timed out\"},\n\t{111, \"ECONNREFUSED\", \"connection refused\"},\n\t{112, \"EHOSTDOWN\", \"host is down\"},\n\t{113, \"EHOSTUNREACH\", \"no route to host\"},\n\t{114, \"EALREADY\", \"operation already in progress\"},\n\t{115, \"EINPROGRESS\", \"operation now in progress\"},\n\t{116, \"ESTALE\", \"stale file handle\"},\n\t{117, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{118, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{119, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{120, \"EISNAM\", \"is a named type file\"},\n\t{121, \"EREMOTEIO\", \"remote I/O error\"},\n\t{122, \"EDQUOT\", \"disk quota exceeded\"},\n\t{123, \"ENOMEDIUM\", \"no medium found\"},\n\t{124, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{125, \"ECANCELED\", \"operation canceled\"},\n\t{126, \"ENOKEY\", \"required key not available\"},\n\t{127, \"EKEYEXPIRED\", \"key has expired\"},\n\t{128, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{129, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{130, \"EOWNERDEAD\", \"owner died\"},\n\t{131, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{132, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{133, \"EHWPOISON\", \"memory page has hardware error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGBUS\", \"bus error\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGUSR1\", \"user defined signal 1\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGUSR2\", \"user defined signal 2\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGSTKFLT\", \"stack fault\"},\n\t{17, \"SIGCHLD\", \"child exited\"},\n\t{18, \"SIGCONT\", \"continued\"},\n\t{19, \"SIGSTOP\", \"stopped (signal)\"},\n\t{20, \"SIGTSTP\", \"stopped\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGURG\", \"urgent I/O condition\"},\n\t{24, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"file size limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window changed\"},\n\t{29, \"SIGIO\", \"I/O possible\"},\n\t{30, \"SIGPWR\", \"power failure\"},\n\t{31, \"SIGSYS\", \"bad system call\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build riscv64,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x80081270\n\tBLKBSZSET                        = 0x40081271\n\tBLKFLSBUF                        = 0x1261\n\tBLKFRAGET                        = 0x1265\n\tBLKFRASET                        = 0x1264\n\tBLKGETSIZE                       = 0x1260\n\tBLKGETSIZE64                     = 0x80081272\n\tBLKPBSZGET                       = 0x127b\n\tBLKRAGET                         = 0x1263\n\tBLKRASET                         = 0x1262\n\tBLKROGET                         = 0x125e\n\tBLKROSET                         = 0x125d\n\tBLKRRPART                        = 0x125f\n\tBLKSECTGET                       = 0x1267\n\tBLKSECTSET                       = 0x1266\n\tBLKSSZGET                        = 0x1268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x800\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x40049409\n\tFICLONERANGE                     = 0x4020940d\n\tFLUSHO                           = 0x1000\n\tFS_IOC_ENABLE_VERITY             = 0x40806685\n\tFS_IOC_GETFLAGS                  = 0x80086601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x8010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x400c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x40106614\n\tFS_IOC_SETFLAGS                  = 0x40086602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x800c6613\n\tF_GETLK                          = 0x5\n\tF_GETLK64                        = 0x5\n\tF_GETOWN                         = 0x9\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x6\n\tF_SETLK64                        = 0x6\n\tF_SETLKW                         = 0x7\n\tF_SETLKW64                       = 0x7\n\tF_SETOWN                         = 0x8\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x8000\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x800\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x7b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_ANON                         = 0x20\n\tMAP_ANONYMOUS                    = 0x20\n\tMAP_DENYWRITE                    = 0x800\n\tMAP_EXECUTABLE                   = 0x1000\n\tMAP_GROWSDOWN                    = 0x100\n\tMAP_HUGETLB                      = 0x40000\n\tMAP_LOCKED                       = 0x2000\n\tMAP_NONBLOCK                     = 0x10000\n\tMAP_NORESERVE                    = 0x4000\n\tMAP_POPULATE                     = 0x8000\n\tMAP_STACK                        = 0x20000\n\tMAP_SYNC                         = 0x80000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x40\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0xb703\n\tNS_GET_OWNER_UID                 = 0xb704\n\tNS_GET_PARENT                    = 0xb702\n\tNS_GET_USERNS                    = 0xb701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x400\n\tO_ASYNC                          = 0x2000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x40\n\tO_DIRECT                         = 0x4000\n\tO_DIRECTORY                      = 0x10000\n\tO_DSYNC                          = 0x1000\n\tO_EXCL                           = 0x80\n\tO_FSYNC                          = 0x101000\n\tO_LARGEFILE                      = 0x0\n\tO_NDELAY                         = 0x800\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x100\n\tO_NOFOLLOW                       = 0x20000\n\tO_NONBLOCK                       = 0x800\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x101000\n\tO_SYNC                           = 0x101000\n\tO_TMPFILE                        = 0x410000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x2401\n\tPERF_EVENT_IOC_ENABLE            = 0x2400\n\tPERF_EVENT_IOC_ID                = 0x80082407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x40042409\n\tPERF_EVENT_IOC_PERIOD            = 0x40082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc008240a\n\tPERF_EVENT_IOC_REFRESH           = 0x2402\n\tPERF_EVENT_IOC_RESET             = 0x2403\n\tPERF_EVENT_IOC_SET_BPF           = 0x40042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x40082406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x2405\n\tPPPIOCATTACH                     = 0x4004743d\n\tPPPIOCATTCHAN                    = 0x40047438\n\tPPPIOCCONNECT                    = 0x4004743a\n\tPPPIOCDETACH                     = 0x4004743c\n\tPPPIOCDISCONN                    = 0x7439\n\tPPPIOCGASYNCMAP                  = 0x80047458\n\tPPPIOCGCHAN                      = 0x80047437\n\tPPPIOCGDEBUG                     = 0x80047441\n\tPPPIOCGFLAGS                     = 0x8004745a\n\tPPPIOCGIDLE                      = 0x8010743f\n\tPPPIOCGIDLE32                    = 0x8008743f\n\tPPPIOCGIDLE64                    = 0x8010743f\n\tPPPIOCGL2TPSTATS                 = 0x80487436\n\tPPPIOCGMRU                       = 0x80047453\n\tPPPIOCGRASYNCMAP                 = 0x80047455\n\tPPPIOCGUNIT                      = 0x80047456\n\tPPPIOCGXASYNCMAP                 = 0x80207450\n\tPPPIOCSACTIVE                    = 0x40107446\n\tPPPIOCSASYNCMAP                  = 0x40047457\n\tPPPIOCSCOMPRESS                  = 0x4010744d\n\tPPPIOCSDEBUG                     = 0x40047440\n\tPPPIOCSFLAGS                     = 0x40047459\n\tPPPIOCSMAXCID                    = 0x40047451\n\tPPPIOCSMRRU                      = 0x4004743b\n\tPPPIOCSMRU                       = 0x40047452\n\tPPPIOCSNPMODE                    = 0x4008744b\n\tPPPIOCSPASS                      = 0x40107447\n\tPPPIOCSRASYNCMAP                 = 0x40047454\n\tPPPIOCSXASYNCMAP                 = 0x4020744f\n\tPPPIOCXFERUNIT                   = 0x744e\n\tPR_SET_PTRACER_ANY               = 0xffffffffffffffff\n\tRLIMIT_AS                        = 0x9\n\tRLIMIT_MEMLOCK                   = 0x8\n\tRLIMIT_NOFILE                    = 0x7\n\tRLIMIT_NPROC                     = 0x6\n\tRLIMIT_RSS                       = 0x5\n\tRNDADDENTROPY                    = 0x40085203\n\tRNDADDTOENTCNT                   = 0x40045201\n\tRNDCLEARPOOL                     = 0x5206\n\tRNDGETENTCNT                     = 0x80045200\n\tRNDGETPOOL                       = 0x80085202\n\tRNDRESEEDCRNG                    = 0x5207\n\tRNDZAPENTCNT                     = 0x5204\n\tRTC_AIE_OFF                      = 0x7002\n\tRTC_AIE_ON                       = 0x7001\n\tRTC_ALM_READ                     = 0x80247008\n\tRTC_ALM_SET                      = 0x40247007\n\tRTC_EPOCH_READ                   = 0x8008700d\n\tRTC_EPOCH_SET                    = 0x4008700e\n\tRTC_IRQP_READ                    = 0x8008700b\n\tRTC_IRQP_SET                     = 0x4008700c\n\tRTC_PIE_OFF                      = 0x7006\n\tRTC_PIE_ON                       = 0x7005\n\tRTC_PLL_GET                      = 0x80207011\n\tRTC_PLL_SET                      = 0x40207012\n\tRTC_RD_TIME                      = 0x80247009\n\tRTC_SET_TIME                     = 0x4024700a\n\tRTC_UIE_OFF                      = 0x7004\n\tRTC_UIE_ON                       = 0x7003\n\tRTC_VL_CLR                       = 0x7014\n\tRTC_VL_READ                      = 0x80047013\n\tRTC_WIE_OFF                      = 0x7010\n\tRTC_WIE_ON                       = 0x700f\n\tRTC_WKALM_RD                     = 0x80287010\n\tRTC_WKALM_SET                    = 0x4028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x800\n\tSIOCATMARK                       = 0x8905\n\tSIOCGPGRP                        = 0x8904\n\tSIOCGSTAMPNS_NEW                 = 0x80108907\n\tSIOCGSTAMP_NEW                   = 0x80108906\n\tSIOCINQ                          = 0x541b\n\tSIOCOUTQ                         = 0x5411\n\tSIOCSPGRP                        = 0x8902\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x2\n\tSOCK_NONBLOCK                    = 0x800\n\tSOCK_STREAM                      = 0x1\n\tSOL_SOCKET                       = 0x1\n\tSO_ACCEPTCONN                    = 0x1e\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x6\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x27\n\tSO_DONTROUTE                     = 0x5\n\tSO_ERROR                         = 0x4\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x9\n\tSO_LINGER                        = 0xd\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0xa\n\tSO_PASSCRED                      = 0x10\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x11\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1f\n\tSO_PROTOCOL                      = 0x26\n\tSO_RCVBUF                        = 0x8\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x12\n\tSO_RCVTIMEO                      = 0x14\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x14\n\tSO_REUSEADDR                     = 0x2\n\tSO_REUSEPORT                     = 0xf\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x7\n\tSO_SNDBUFFORCE                   = 0x20\n\tSO_SNDLOWAT                      = 0x13\n\tSO_SNDTIMEO                      = 0x15\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x15\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x3\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x540b\n\tTCGETA                           = 0x5405\n\tTCGETS                           = 0x5401\n\tTCGETS2                          = 0x802c542a\n\tTCGETX                           = 0x5432\n\tTCSAFLUSH                        = 0x2\n\tTCSBRK                           = 0x5409\n\tTCSBRKP                          = 0x5425\n\tTCSETA                           = 0x5406\n\tTCSETAF                          = 0x5408\n\tTCSETAW                          = 0x5407\n\tTCSETS                           = 0x5402\n\tTCSETS2                          = 0x402c542b\n\tTCSETSF                          = 0x5404\n\tTCSETSF2                         = 0x402c542d\n\tTCSETSW                          = 0x5403\n\tTCSETSW2                         = 0x402c542c\n\tTCSETX                           = 0x5433\n\tTCSETXF                          = 0x5434\n\tTCSETXW                          = 0x5435\n\tTCXONC                           = 0x540a\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x800\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x541d\n\tTIOCEXCL                         = 0x540c\n\tTIOCGDEV                         = 0x80045432\n\tTIOCGETD                         = 0x5424\n\tTIOCGEXCL                        = 0x80045440\n\tTIOCGICOUNT                      = 0x545d\n\tTIOCGISO7816                     = 0x80285442\n\tTIOCGLCKTRMIOS                   = 0x5456\n\tTIOCGPGRP                        = 0x540f\n\tTIOCGPKT                         = 0x80045438\n\tTIOCGPTLCK                       = 0x80045439\n\tTIOCGPTN                         = 0x80045430\n\tTIOCGPTPEER                      = 0x5441\n\tTIOCGRS485                       = 0x542e\n\tTIOCGSERIAL                      = 0x541e\n\tTIOCGSID                         = 0x5429\n\tTIOCGSOFTCAR                     = 0x5419\n\tTIOCGWINSZ                       = 0x5413\n\tTIOCINQ                          = 0x541b\n\tTIOCLINUX                        = 0x541c\n\tTIOCMBIC                         = 0x5417\n\tTIOCMBIS                         = 0x5416\n\tTIOCMGET                         = 0x5415\n\tTIOCMIWAIT                       = 0x545c\n\tTIOCMSET                         = 0x5418\n\tTIOCM_CAR                        = 0x40\n\tTIOCM_CD                         = 0x40\n\tTIOCM_CTS                        = 0x20\n\tTIOCM_DSR                        = 0x100\n\tTIOCM_RI                         = 0x80\n\tTIOCM_RNG                        = 0x80\n\tTIOCM_SR                         = 0x10\n\tTIOCM_ST                         = 0x8\n\tTIOCNOTTY                        = 0x5422\n\tTIOCNXCL                         = 0x540d\n\tTIOCOUTQ                         = 0x5411\n\tTIOCPKT                          = 0x5420\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x540e\n\tTIOCSERCONFIG                    = 0x5453\n\tTIOCSERGETLSR                    = 0x5459\n\tTIOCSERGETMULTI                  = 0x545a\n\tTIOCSERGSTRUCT                   = 0x5458\n\tTIOCSERGWILD                     = 0x5454\n\tTIOCSERSETMULTI                  = 0x545b\n\tTIOCSERSWILD                     = 0x5455\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x5423\n\tTIOCSIG                          = 0x40045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x5457\n\tTIOCSPGRP                        = 0x5410\n\tTIOCSPTLCK                       = 0x40045431\n\tTIOCSRS485                       = 0x542f\n\tTIOCSSERIAL                      = 0x541f\n\tTIOCSSOFTCAR                     = 0x541a\n\tTIOCSTI                          = 0x5412\n\tTIOCSWINSZ                       = 0x5414\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x100\n\tTUNATTACHFILTER                  = 0x401054d5\n\tTUNDETACHFILTER                  = 0x401054d6\n\tTUNGETDEVNETNS                   = 0x54e3\n\tTUNGETFEATURES                   = 0x800454cf\n\tTUNGETFILTER                     = 0x801054db\n\tTUNGETIFF                        = 0x800454d2\n\tTUNGETSNDBUF                     = 0x800454d3\n\tTUNGETVNETBE                     = 0x800454df\n\tTUNGETVNETHDRSZ                  = 0x800454d7\n\tTUNGETVNETLE                     = 0x800454dd\n\tTUNSETCARRIER                    = 0x400454e2\n\tTUNSETDEBUG                      = 0x400454c9\n\tTUNSETFILTEREBPF                 = 0x800454e1\n\tTUNSETGROUP                      = 0x400454ce\n\tTUNSETIFF                        = 0x400454ca\n\tTUNSETIFINDEX                    = 0x400454da\n\tTUNSETLINK                       = 0x400454cd\n\tTUNSETNOCSUM                     = 0x400454c8\n\tTUNSETOFFLOAD                    = 0x400454d0\n\tTUNSETOWNER                      = 0x400454cc\n\tTUNSETPERSIST                    = 0x400454cb\n\tTUNSETQUEUE                      = 0x400454d9\n\tTUNSETSNDBUF                     = 0x400454d4\n\tTUNSETSTEERINGEBPF               = 0x800454e0\n\tTUNSETTXFILTER                   = 0x400454d1\n\tTUNSETVNETBE                     = 0x400454de\n\tTUNSETVNETHDRSZ                  = 0x400454d8\n\tTUNSETVNETLE                     = 0x400454dc\n\tUBI_IOCATT                       = 0x40186f40\n\tUBI_IOCDET                       = 0x40046f41\n\tUBI_IOCEBCH                      = 0x40044f02\n\tUBI_IOCEBER                      = 0x40044f01\n\tUBI_IOCEBISMAP                   = 0x80044f05\n\tUBI_IOCEBMAP                     = 0x40084f03\n\tUBI_IOCEBUNMAP                   = 0x40044f04\n\tUBI_IOCMKVOL                     = 0x40986f00\n\tUBI_IOCRMVOL                     = 0x40046f01\n\tUBI_IOCRNVOL                     = 0x51106f03\n\tUBI_IOCRPEB                      = 0x40046f04\n\tUBI_IOCRSVOL                     = 0x400c6f02\n\tUBI_IOCSETVOLPROP                = 0x40104f06\n\tUBI_IOCSPEB                      = 0x40046f05\n\tUBI_IOCVOLCRBLK                  = 0x40804f07\n\tUBI_IOCVOLRMBLK                  = 0x4f08\n\tUBI_IOCVOLUP                     = 0x40084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x4\n\tVEOL                             = 0xb\n\tVEOL2                            = 0x10\n\tVMIN                             = 0x6\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x80045702\n\tWDIOC_GETPRETIMEOUT              = 0x80045709\n\tWDIOC_GETSTATUS                  = 0x80045701\n\tWDIOC_GETSUPPORT                 = 0x80285700\n\tWDIOC_GETTEMP                    = 0x80045703\n\tWDIOC_GETTIMELEFT                = 0x8004570a\n\tWDIOC_GETTIMEOUT                 = 0x80045707\n\tWDIOC_KEEPALIVE                  = 0x80045705\n\tWDIOC_SETOPTIONS                 = 0x80045704\n\tWORDSIZE                         = 0x40\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x62)\n\tEADDRNOTAVAIL   = syscall.Errno(0x63)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x61)\n\tEALREADY        = syscall.Errno(0x72)\n\tEBADE           = syscall.Errno(0x34)\n\tEBADFD          = syscall.Errno(0x4d)\n\tEBADMSG         = syscall.Errno(0x4a)\n\tEBADR           = syscall.Errno(0x35)\n\tEBADRQC         = syscall.Errno(0x38)\n\tEBADSLT         = syscall.Errno(0x39)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x7d)\n\tECHRNG          = syscall.Errno(0x2c)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x67)\n\tECONNREFUSED    = syscall.Errno(0x6f)\n\tECONNRESET      = syscall.Errno(0x68)\n\tEDEADLK         = syscall.Errno(0x23)\n\tEDEADLOCK       = syscall.Errno(0x23)\n\tEDESTADDRREQ    = syscall.Errno(0x59)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x7a)\n\tEHOSTDOWN       = syscall.Errno(0x70)\n\tEHOSTUNREACH    = syscall.Errno(0x71)\n\tEHWPOISON       = syscall.Errno(0x85)\n\tEIDRM           = syscall.Errno(0x2b)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x73)\n\tEISCONN         = syscall.Errno(0x6a)\n\tEISNAM          = syscall.Errno(0x78)\n\tEKEYEXPIRED     = syscall.Errno(0x7f)\n\tEKEYREJECTED    = syscall.Errno(0x81)\n\tEKEYREVOKED     = syscall.Errno(0x80)\n\tEL2HLT          = syscall.Errno(0x33)\n\tEL2NSYNC        = syscall.Errno(0x2d)\n\tEL3HLT          = syscall.Errno(0x2e)\n\tEL3RST          = syscall.Errno(0x2f)\n\tELIBACC         = syscall.Errno(0x4f)\n\tELIBBAD         = syscall.Errno(0x50)\n\tELIBEXEC        = syscall.Errno(0x53)\n\tELIBMAX         = syscall.Errno(0x52)\n\tELIBSCN         = syscall.Errno(0x51)\n\tELNRNG          = syscall.Errno(0x30)\n\tELOOP           = syscall.Errno(0x28)\n\tEMEDIUMTYPE     = syscall.Errno(0x7c)\n\tEMSGSIZE        = syscall.Errno(0x5a)\n\tEMULTIHOP       = syscall.Errno(0x48)\n\tENAMETOOLONG    = syscall.Errno(0x24)\n\tENAVAIL         = syscall.Errno(0x77)\n\tENETDOWN        = syscall.Errno(0x64)\n\tENETRESET       = syscall.Errno(0x66)\n\tENETUNREACH     = syscall.Errno(0x65)\n\tENOANO          = syscall.Errno(0x37)\n\tENOBUFS         = syscall.Errno(0x69)\n\tENOCSI          = syscall.Errno(0x32)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0x7e)\n\tENOLCK          = syscall.Errno(0x25)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x7b)\n\tENOMSG          = syscall.Errno(0x2a)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x5c)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x26)\n\tENOTCONN        = syscall.Errno(0x6b)\n\tENOTEMPTY       = syscall.Errno(0x27)\n\tENOTNAM         = syscall.Errno(0x76)\n\tENOTRECOVERABLE = syscall.Errno(0x83)\n\tENOTSOCK        = syscall.Errno(0x58)\n\tENOTSUP         = syscall.Errno(0x5f)\n\tENOTUNIQ        = syscall.Errno(0x4c)\n\tEOPNOTSUPP      = syscall.Errno(0x5f)\n\tEOVERFLOW       = syscall.Errno(0x4b)\n\tEOWNERDEAD      = syscall.Errno(0x82)\n\tEPFNOSUPPORT    = syscall.Errno(0x60)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x5d)\n\tEPROTOTYPE      = syscall.Errno(0x5b)\n\tEREMCHG         = syscall.Errno(0x4e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x79)\n\tERESTART        = syscall.Errno(0x55)\n\tERFKILL         = syscall.Errno(0x84)\n\tESHUTDOWN       = syscall.Errno(0x6c)\n\tESOCKTNOSUPPORT = syscall.Errno(0x5e)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x74)\n\tESTRPIPE        = syscall.Errno(0x56)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x6e)\n\tETOOMANYREFS    = syscall.Errno(0x6d)\n\tEUCLEAN         = syscall.Errno(0x75)\n\tEUNATCH         = syscall.Errno(0x31)\n\tEUSERS          = syscall.Errno(0x57)\n\tEXFULL          = syscall.Errno(0x36)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0x7)\n\tSIGCHLD   = syscall.Signal(0x11)\n\tSIGCLD    = syscall.Signal(0x11)\n\tSIGCONT   = syscall.Signal(0x12)\n\tSIGIO     = syscall.Signal(0x1d)\n\tSIGPOLL   = syscall.Signal(0x1d)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x1e)\n\tSIGSTKFLT = syscall.Signal(0x10)\n\tSIGSTOP   = syscall.Signal(0x13)\n\tSIGSYS    = syscall.Signal(0x1f)\n\tSIGTSTP   = syscall.Signal(0x14)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x17)\n\tSIGUSR1   = syscall.Signal(0xa)\n\tSIGUSR2   = syscall.Signal(0xc)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{36, \"ENAMETOOLONG\", \"file name too long\"},\n\t{37, \"ENOLCK\", \"no locks available\"},\n\t{38, \"ENOSYS\", \"function not implemented\"},\n\t{39, \"ENOTEMPTY\", \"directory not empty\"},\n\t{40, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{42, \"ENOMSG\", \"no message of desired type\"},\n\t{43, \"EIDRM\", \"identifier removed\"},\n\t{44, \"ECHRNG\", \"channel number out of range\"},\n\t{45, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{46, \"EL3HLT\", \"level 3 halted\"},\n\t{47, \"EL3RST\", \"level 3 reset\"},\n\t{48, \"ELNRNG\", \"link number out of range\"},\n\t{49, \"EUNATCH\", \"protocol driver not attached\"},\n\t{50, \"ENOCSI\", \"no CSI structure available\"},\n\t{51, \"EL2HLT\", \"level 2 halted\"},\n\t{52, \"EBADE\", \"invalid exchange\"},\n\t{53, \"EBADR\", \"invalid request descriptor\"},\n\t{54, \"EXFULL\", \"exchange full\"},\n\t{55, \"ENOANO\", \"no anode\"},\n\t{56, \"EBADRQC\", \"invalid request code\"},\n\t{57, \"EBADSLT\", \"invalid slot\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{72, \"EMULTIHOP\", \"multihop attempted\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EBADMSG\", \"bad message\"},\n\t{75, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{76, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{77, \"EBADFD\", \"file descriptor in bad state\"},\n\t{78, \"EREMCHG\", \"remote address changed\"},\n\t{79, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{80, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{81, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{82, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{83, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{84, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{85, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{86, \"ESTRPIPE\", \"streams pipe error\"},\n\t{87, \"EUSERS\", \"too many users\"},\n\t{88, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{89, \"EDESTADDRREQ\", \"destination address required\"},\n\t{90, \"EMSGSIZE\", \"message too long\"},\n\t{91, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{92, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{93, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{94, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{95, \"ENOTSUP\", \"operation not supported\"},\n\t{96, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{97, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{98, \"EADDRINUSE\", \"address already in use\"},\n\t{99, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{100, \"ENETDOWN\", \"network is down\"},\n\t{101, \"ENETUNREACH\", \"network is unreachable\"},\n\t{102, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{103, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{104, \"ECONNRESET\", \"connection reset by peer\"},\n\t{105, \"ENOBUFS\", \"no buffer space available\"},\n\t{106, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{107, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{108, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{109, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{110, \"ETIMEDOUT\", \"connection timed out\"},\n\t{111, \"ECONNREFUSED\", \"connection refused\"},\n\t{112, \"EHOSTDOWN\", \"host is down\"},\n\t{113, \"EHOSTUNREACH\", \"no route to host\"},\n\t{114, \"EALREADY\", \"operation already in progress\"},\n\t{115, \"EINPROGRESS\", \"operation now in progress\"},\n\t{116, \"ESTALE\", \"stale file handle\"},\n\t{117, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{118, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{119, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{120, \"EISNAM\", \"is a named type file\"},\n\t{121, \"EREMOTEIO\", \"remote I/O error\"},\n\t{122, \"EDQUOT\", \"disk quota exceeded\"},\n\t{123, \"ENOMEDIUM\", \"no medium found\"},\n\t{124, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{125, \"ECANCELED\", \"operation canceled\"},\n\t{126, \"ENOKEY\", \"required key not available\"},\n\t{127, \"EKEYEXPIRED\", \"key has expired\"},\n\t{128, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{129, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{130, \"EOWNERDEAD\", \"owner died\"},\n\t{131, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{132, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{133, \"EHWPOISON\", \"memory page has hardware error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGBUS\", \"bus error\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGUSR1\", \"user defined signal 1\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGUSR2\", \"user defined signal 2\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGSTKFLT\", \"stack fault\"},\n\t{17, \"SIGCHLD\", \"child exited\"},\n\t{18, \"SIGCONT\", \"continued\"},\n\t{19, \"SIGSTOP\", \"stopped (signal)\"},\n\t{20, \"SIGTSTP\", \"stopped\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGURG\", \"urgent I/O condition\"},\n\t{24, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"file size limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window changed\"},\n\t{29, \"SIGIO\", \"I/O possible\"},\n\t{30, \"SIGPWR\", \"power failure\"},\n\t{31, \"SIGSYS\", \"bad system call\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include -fsigned-char\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build s390x,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include -fsigned-char _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x80081270\n\tBLKBSZSET                        = 0x40081271\n\tBLKFLSBUF                        = 0x1261\n\tBLKFRAGET                        = 0x1265\n\tBLKFRASET                        = 0x1264\n\tBLKGETSIZE                       = 0x1260\n\tBLKGETSIZE64                     = 0x80081272\n\tBLKPBSZGET                       = 0x127b\n\tBLKRAGET                         = 0x1263\n\tBLKRASET                         = 0x1262\n\tBLKROGET                         = 0x125e\n\tBLKROSET                         = 0x125d\n\tBLKRRPART                        = 0x125f\n\tBLKSECTGET                       = 0x1267\n\tBLKSECTSET                       = 0x1266\n\tBLKSSZGET                        = 0x1268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x80000\n\tEFD_NONBLOCK                     = 0x800\n\tEPOLL_CLOEXEC                    = 0x80000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x40049409\n\tFICLONERANGE                     = 0x4020940d\n\tFLUSHO                           = 0x1000\n\tFS_IOC_ENABLE_VERITY             = 0x40806685\n\tFS_IOC_GETFLAGS                  = 0x80086601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x8010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x400c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x40106614\n\tFS_IOC_SETFLAGS                  = 0x40086602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x800c6613\n\tF_GETLK                          = 0x5\n\tF_GETLK64                        = 0x5\n\tF_GETOWN                         = 0x9\n\tF_RDLCK                          = 0x0\n\tF_SETLK                          = 0x6\n\tF_SETLK64                        = 0x6\n\tF_SETLKW                         = 0x7\n\tF_SETLKW64                       = 0x7\n\tF_SETOWN                         = 0x8\n\tF_UNLCK                          = 0x2\n\tF_WRLCK                          = 0x1\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x8000\n\tIN_CLOEXEC                       = 0x80000\n\tIN_NONBLOCK                      = 0x800\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x7b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_ANON                         = 0x20\n\tMAP_ANONYMOUS                    = 0x20\n\tMAP_DENYWRITE                    = 0x800\n\tMAP_EXECUTABLE                   = 0x1000\n\tMAP_GROWSDOWN                    = 0x100\n\tMAP_HUGETLB                      = 0x40000\n\tMAP_LOCKED                       = 0x2000\n\tMAP_NONBLOCK                     = 0x10000\n\tMAP_NORESERVE                    = 0x4000\n\tMAP_POPULATE                     = 0x8000\n\tMAP_STACK                        = 0x20000\n\tMAP_SYNC                         = 0x80000\n\tMCL_CURRENT                      = 0x1\n\tMCL_FUTURE                       = 0x2\n\tMCL_ONFAULT                      = 0x4\n\tNFDBITS                          = 0x40\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0xb703\n\tNS_GET_OWNER_UID                 = 0xb704\n\tNS_GET_PARENT                    = 0xb702\n\tNS_GET_USERNS                    = 0xb701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x400\n\tO_ASYNC                          = 0x2000\n\tO_CLOEXEC                        = 0x80000\n\tO_CREAT                          = 0x40\n\tO_DIRECT                         = 0x4000\n\tO_DIRECTORY                      = 0x10000\n\tO_DSYNC                          = 0x1000\n\tO_EXCL                           = 0x80\n\tO_FSYNC                          = 0x101000\n\tO_LARGEFILE                      = 0x0\n\tO_NDELAY                         = 0x800\n\tO_NOATIME                        = 0x40000\n\tO_NOCTTY                         = 0x100\n\tO_NOFOLLOW                       = 0x20000\n\tO_NONBLOCK                       = 0x800\n\tO_PATH                           = 0x200000\n\tO_RSYNC                          = 0x101000\n\tO_SYNC                           = 0x101000\n\tO_TMPFILE                        = 0x410000\n\tO_TRUNC                          = 0x200\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x2401\n\tPERF_EVENT_IOC_ENABLE            = 0x2400\n\tPERF_EVENT_IOC_ID                = 0x80082407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x40042409\n\tPERF_EVENT_IOC_PERIOD            = 0x40082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc008240a\n\tPERF_EVENT_IOC_REFRESH           = 0x2402\n\tPERF_EVENT_IOC_RESET             = 0x2403\n\tPERF_EVENT_IOC_SET_BPF           = 0x40042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x40082406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x2405\n\tPPPIOCATTACH                     = 0x4004743d\n\tPPPIOCATTCHAN                    = 0x40047438\n\tPPPIOCCONNECT                    = 0x4004743a\n\tPPPIOCDETACH                     = 0x4004743c\n\tPPPIOCDISCONN                    = 0x7439\n\tPPPIOCGASYNCMAP                  = 0x80047458\n\tPPPIOCGCHAN                      = 0x80047437\n\tPPPIOCGDEBUG                     = 0x80047441\n\tPPPIOCGFLAGS                     = 0x8004745a\n\tPPPIOCGIDLE                      = 0x8010743f\n\tPPPIOCGIDLE32                    = 0x8008743f\n\tPPPIOCGIDLE64                    = 0x8010743f\n\tPPPIOCGL2TPSTATS                 = 0x80487436\n\tPPPIOCGMRU                       = 0x80047453\n\tPPPIOCGRASYNCMAP                 = 0x80047455\n\tPPPIOCGUNIT                      = 0x80047456\n\tPPPIOCGXASYNCMAP                 = 0x80207450\n\tPPPIOCSACTIVE                    = 0x40107446\n\tPPPIOCSASYNCMAP                  = 0x40047457\n\tPPPIOCSCOMPRESS                  = 0x4010744d\n\tPPPIOCSDEBUG                     = 0x40047440\n\tPPPIOCSFLAGS                     = 0x40047459\n\tPPPIOCSMAXCID                    = 0x40047451\n\tPPPIOCSMRRU                      = 0x4004743b\n\tPPPIOCSMRU                       = 0x40047452\n\tPPPIOCSNPMODE                    = 0x4008744b\n\tPPPIOCSPASS                      = 0x40107447\n\tPPPIOCSRASYNCMAP                 = 0x40047454\n\tPPPIOCSXASYNCMAP                 = 0x4020744f\n\tPPPIOCXFERUNIT                   = 0x744e\n\tPR_SET_PTRACER_ANY               = 0xffffffffffffffff\n\tPTRACE_DISABLE_TE                = 0x5010\n\tPTRACE_ENABLE_TE                 = 0x5009\n\tPTRACE_GET_LAST_BREAK            = 0x5006\n\tPTRACE_OLDSETOPTIONS             = 0x15\n\tPTRACE_PEEKDATA_AREA             = 0x5003\n\tPTRACE_PEEKTEXT_AREA             = 0x5002\n\tPTRACE_PEEKUSR_AREA              = 0x5000\n\tPTRACE_PEEK_SYSTEM_CALL          = 0x5007\n\tPTRACE_POKEDATA_AREA             = 0x5005\n\tPTRACE_POKETEXT_AREA             = 0x5004\n\tPTRACE_POKEUSR_AREA              = 0x5001\n\tPTRACE_POKE_SYSTEM_CALL          = 0x5008\n\tPTRACE_PROT                      = 0x15\n\tPTRACE_SINGLEBLOCK               = 0xc\n\tPTRACE_TE_ABORT_RAND             = 0x5011\n\tPT_ACR0                          = 0x90\n\tPT_ACR1                          = 0x94\n\tPT_ACR10                         = 0xb8\n\tPT_ACR11                         = 0xbc\n\tPT_ACR12                         = 0xc0\n\tPT_ACR13                         = 0xc4\n\tPT_ACR14                         = 0xc8\n\tPT_ACR15                         = 0xcc\n\tPT_ACR2                          = 0x98\n\tPT_ACR3                          = 0x9c\n\tPT_ACR4                          = 0xa0\n\tPT_ACR5                          = 0xa4\n\tPT_ACR6                          = 0xa8\n\tPT_ACR7                          = 0xac\n\tPT_ACR8                          = 0xb0\n\tPT_ACR9                          = 0xb4\n\tPT_CR_10                         = 0x168\n\tPT_CR_11                         = 0x170\n\tPT_CR_9                          = 0x160\n\tPT_ENDREGS                       = 0x1af\n\tPT_FPC                           = 0xd8\n\tPT_FPR0                          = 0xe0\n\tPT_FPR1                          = 0xe8\n\tPT_FPR10                         = 0x130\n\tPT_FPR11                         = 0x138\n\tPT_FPR12                         = 0x140\n\tPT_FPR13                         = 0x148\n\tPT_FPR14                         = 0x150\n\tPT_FPR15                         = 0x158\n\tPT_FPR2                          = 0xf0\n\tPT_FPR3                          = 0xf8\n\tPT_FPR4                          = 0x100\n\tPT_FPR5                          = 0x108\n\tPT_FPR6                          = 0x110\n\tPT_FPR7                          = 0x118\n\tPT_FPR8                          = 0x120\n\tPT_FPR9                          = 0x128\n\tPT_GPR0                          = 0x10\n\tPT_GPR1                          = 0x18\n\tPT_GPR10                         = 0x60\n\tPT_GPR11                         = 0x68\n\tPT_GPR12                         = 0x70\n\tPT_GPR13                         = 0x78\n\tPT_GPR14                         = 0x80\n\tPT_GPR15                         = 0x88\n\tPT_GPR2                          = 0x20\n\tPT_GPR3                          = 0x28\n\tPT_GPR4                          = 0x30\n\tPT_GPR5                          = 0x38\n\tPT_GPR6                          = 0x40\n\tPT_GPR7                          = 0x48\n\tPT_GPR8                          = 0x50\n\tPT_GPR9                          = 0x58\n\tPT_IEEE_IP                       = 0x1a8\n\tPT_LASTOFF                       = 0x1a8\n\tPT_ORIGGPR2                      = 0xd0\n\tPT_PSWADDR                       = 0x8\n\tPT_PSWMASK                       = 0x0\n\tRLIMIT_AS                        = 0x9\n\tRLIMIT_MEMLOCK                   = 0x8\n\tRLIMIT_NOFILE                    = 0x7\n\tRLIMIT_NPROC                     = 0x6\n\tRLIMIT_RSS                       = 0x5\n\tRNDADDENTROPY                    = 0x40085203\n\tRNDADDTOENTCNT                   = 0x40045201\n\tRNDCLEARPOOL                     = 0x5206\n\tRNDGETENTCNT                     = 0x80045200\n\tRNDGETPOOL                       = 0x80085202\n\tRNDRESEEDCRNG                    = 0x5207\n\tRNDZAPENTCNT                     = 0x5204\n\tRTC_AIE_OFF                      = 0x7002\n\tRTC_AIE_ON                       = 0x7001\n\tRTC_ALM_READ                     = 0x80247008\n\tRTC_ALM_SET                      = 0x40247007\n\tRTC_EPOCH_READ                   = 0x8008700d\n\tRTC_EPOCH_SET                    = 0x4008700e\n\tRTC_IRQP_READ                    = 0x8008700b\n\tRTC_IRQP_SET                     = 0x4008700c\n\tRTC_PIE_OFF                      = 0x7006\n\tRTC_PIE_ON                       = 0x7005\n\tRTC_PLL_GET                      = 0x80207011\n\tRTC_PLL_SET                      = 0x40207012\n\tRTC_RD_TIME                      = 0x80247009\n\tRTC_SET_TIME                     = 0x4024700a\n\tRTC_UIE_OFF                      = 0x7004\n\tRTC_UIE_ON                       = 0x7003\n\tRTC_VL_CLR                       = 0x7014\n\tRTC_VL_READ                      = 0x80047013\n\tRTC_WIE_OFF                      = 0x7010\n\tRTC_WIE_ON                       = 0x700f\n\tRTC_WKALM_RD                     = 0x80287010\n\tRTC_WKALM_SET                    = 0x4028700f\n\tSCM_TIMESTAMPING                 = 0x25\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x36\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3a\n\tSCM_TIMESTAMPNS                  = 0x23\n\tSCM_TXTIME                       = 0x3d\n\tSCM_WIFI_STATUS                  = 0x29\n\tSFD_CLOEXEC                      = 0x80000\n\tSFD_NONBLOCK                     = 0x800\n\tSIOCATMARK                       = 0x8905\n\tSIOCGPGRP                        = 0x8904\n\tSIOCGSTAMPNS_NEW                 = 0x80108907\n\tSIOCGSTAMP_NEW                   = 0x80108906\n\tSIOCINQ                          = 0x541b\n\tSIOCOUTQ                         = 0x5411\n\tSIOCSPGRP                        = 0x8902\n\tSOCK_CLOEXEC                     = 0x80000\n\tSOCK_DGRAM                       = 0x2\n\tSOCK_NONBLOCK                    = 0x800\n\tSOCK_STREAM                      = 0x1\n\tSOL_SOCKET                       = 0x1\n\tSO_ACCEPTCONN                    = 0x1e\n\tSO_ATTACH_BPF                    = 0x32\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x33\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x34\n\tSO_BINDTODEVICE                  = 0x19\n\tSO_BINDTOIFINDEX                 = 0x3e\n\tSO_BPF_EXTENSIONS                = 0x30\n\tSO_BROADCAST                     = 0x6\n\tSO_BSDCOMPAT                     = 0xe\n\tSO_BUSY_POLL                     = 0x2e\n\tSO_CNX_ADVICE                    = 0x35\n\tSO_COOKIE                        = 0x39\n\tSO_DETACH_REUSEPORT_BPF          = 0x44\n\tSO_DOMAIN                        = 0x27\n\tSO_DONTROUTE                     = 0x5\n\tSO_ERROR                         = 0x4\n\tSO_INCOMING_CPU                  = 0x31\n\tSO_INCOMING_NAPI_ID              = 0x38\n\tSO_KEEPALIVE                     = 0x9\n\tSO_LINGER                        = 0xd\n\tSO_LOCK_FILTER                   = 0x2c\n\tSO_MARK                          = 0x24\n\tSO_MAX_PACING_RATE               = 0x2f\n\tSO_MEMINFO                       = 0x37\n\tSO_NOFCS                         = 0x2b\n\tSO_OOBINLINE                     = 0xa\n\tSO_PASSCRED                      = 0x10\n\tSO_PASSSEC                       = 0x22\n\tSO_PEEK_OFF                      = 0x2a\n\tSO_PEERCRED                      = 0x11\n\tSO_PEERGROUPS                    = 0x3b\n\tSO_PEERSEC                       = 0x1f\n\tSO_PROTOCOL                      = 0x26\n\tSO_RCVBUF                        = 0x8\n\tSO_RCVBUFFORCE                   = 0x21\n\tSO_RCVLOWAT                      = 0x12\n\tSO_RCVTIMEO                      = 0x14\n\tSO_RCVTIMEO_NEW                  = 0x42\n\tSO_RCVTIMEO_OLD                  = 0x14\n\tSO_REUSEADDR                     = 0x2\n\tSO_REUSEPORT                     = 0xf\n\tSO_RXQ_OVFL                      = 0x28\n\tSO_SECURITY_AUTHENTICATION       = 0x16\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x18\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x17\n\tSO_SELECT_ERR_QUEUE              = 0x2d\n\tSO_SNDBUF                        = 0x7\n\tSO_SNDBUFFORCE                   = 0x20\n\tSO_SNDLOWAT                      = 0x13\n\tSO_SNDTIMEO                      = 0x15\n\tSO_SNDTIMEO_NEW                  = 0x43\n\tSO_SNDTIMEO_OLD                  = 0x15\n\tSO_TIMESTAMPING                  = 0x25\n\tSO_TIMESTAMPING_NEW              = 0x41\n\tSO_TIMESTAMPING_OLD              = 0x25\n\tSO_TIMESTAMPNS                   = 0x23\n\tSO_TIMESTAMPNS_NEW               = 0x40\n\tSO_TIMESTAMPNS_OLD               = 0x23\n\tSO_TIMESTAMP_NEW                 = 0x3f\n\tSO_TXTIME                        = 0x3d\n\tSO_TYPE                          = 0x3\n\tSO_WIFI_STATUS                   = 0x29\n\tSO_ZEROCOPY                      = 0x3c\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x540b\n\tTCGETA                           = 0x5405\n\tTCGETS                           = 0x5401\n\tTCGETS2                          = 0x802c542a\n\tTCGETX                           = 0x5432\n\tTCSAFLUSH                        = 0x2\n\tTCSBRK                           = 0x5409\n\tTCSBRKP                          = 0x5425\n\tTCSETA                           = 0x5406\n\tTCSETAF                          = 0x5408\n\tTCSETAW                          = 0x5407\n\tTCSETS                           = 0x5402\n\tTCSETS2                          = 0x402c542b\n\tTCSETSF                          = 0x5404\n\tTCSETSF2                         = 0x402c542d\n\tTCSETSW                          = 0x5403\n\tTCSETSW2                         = 0x402c542c\n\tTCSETX                           = 0x5433\n\tTCSETXF                          = 0x5434\n\tTCSETXW                          = 0x5435\n\tTCXONC                           = 0x540a\n\tTFD_CLOEXEC                      = 0x80000\n\tTFD_NONBLOCK                     = 0x800\n\tTIOCCBRK                         = 0x5428\n\tTIOCCONS                         = 0x541d\n\tTIOCEXCL                         = 0x540c\n\tTIOCGDEV                         = 0x80045432\n\tTIOCGETD                         = 0x5424\n\tTIOCGEXCL                        = 0x80045440\n\tTIOCGICOUNT                      = 0x545d\n\tTIOCGISO7816                     = 0x80285442\n\tTIOCGLCKTRMIOS                   = 0x5456\n\tTIOCGPGRP                        = 0x540f\n\tTIOCGPKT                         = 0x80045438\n\tTIOCGPTLCK                       = 0x80045439\n\tTIOCGPTN                         = 0x80045430\n\tTIOCGPTPEER                      = 0x5441\n\tTIOCGRS485                       = 0x542e\n\tTIOCGSERIAL                      = 0x541e\n\tTIOCGSID                         = 0x5429\n\tTIOCGSOFTCAR                     = 0x5419\n\tTIOCGWINSZ                       = 0x5413\n\tTIOCINQ                          = 0x541b\n\tTIOCLINUX                        = 0x541c\n\tTIOCMBIC                         = 0x5417\n\tTIOCMBIS                         = 0x5416\n\tTIOCMGET                         = 0x5415\n\tTIOCMIWAIT                       = 0x545c\n\tTIOCMSET                         = 0x5418\n\tTIOCM_CAR                        = 0x40\n\tTIOCM_CD                         = 0x40\n\tTIOCM_CTS                        = 0x20\n\tTIOCM_DSR                        = 0x100\n\tTIOCM_RI                         = 0x80\n\tTIOCM_RNG                        = 0x80\n\tTIOCM_SR                         = 0x10\n\tTIOCM_ST                         = 0x8\n\tTIOCNOTTY                        = 0x5422\n\tTIOCNXCL                         = 0x540d\n\tTIOCOUTQ                         = 0x5411\n\tTIOCPKT                          = 0x5420\n\tTIOCSBRK                         = 0x5427\n\tTIOCSCTTY                        = 0x540e\n\tTIOCSERCONFIG                    = 0x5453\n\tTIOCSERGETLSR                    = 0x5459\n\tTIOCSERGETMULTI                  = 0x545a\n\tTIOCSERGSTRUCT                   = 0x5458\n\tTIOCSERGWILD                     = 0x5454\n\tTIOCSERSETMULTI                  = 0x545b\n\tTIOCSERSWILD                     = 0x5455\n\tTIOCSER_TEMT                     = 0x1\n\tTIOCSETD                         = 0x5423\n\tTIOCSIG                          = 0x40045436\n\tTIOCSISO7816                     = 0xc0285443\n\tTIOCSLCKTRMIOS                   = 0x5457\n\tTIOCSPGRP                        = 0x5410\n\tTIOCSPTLCK                       = 0x40045431\n\tTIOCSRS485                       = 0x542f\n\tTIOCSSERIAL                      = 0x541f\n\tTIOCSSOFTCAR                     = 0x541a\n\tTIOCSTI                          = 0x5412\n\tTIOCSWINSZ                       = 0x5414\n\tTIOCVHANGUP                      = 0x5437\n\tTOSTOP                           = 0x100\n\tTUNATTACHFILTER                  = 0x401054d5\n\tTUNDETACHFILTER                  = 0x401054d6\n\tTUNGETDEVNETNS                   = 0x54e3\n\tTUNGETFEATURES                   = 0x800454cf\n\tTUNGETFILTER                     = 0x801054db\n\tTUNGETIFF                        = 0x800454d2\n\tTUNGETSNDBUF                     = 0x800454d3\n\tTUNGETVNETBE                     = 0x800454df\n\tTUNGETVNETHDRSZ                  = 0x800454d7\n\tTUNGETVNETLE                     = 0x800454dd\n\tTUNSETCARRIER                    = 0x400454e2\n\tTUNSETDEBUG                      = 0x400454c9\n\tTUNSETFILTEREBPF                 = 0x800454e1\n\tTUNSETGROUP                      = 0x400454ce\n\tTUNSETIFF                        = 0x400454ca\n\tTUNSETIFINDEX                    = 0x400454da\n\tTUNSETLINK                       = 0x400454cd\n\tTUNSETNOCSUM                     = 0x400454c8\n\tTUNSETOFFLOAD                    = 0x400454d0\n\tTUNSETOWNER                      = 0x400454cc\n\tTUNSETPERSIST                    = 0x400454cb\n\tTUNSETQUEUE                      = 0x400454d9\n\tTUNSETSNDBUF                     = 0x400454d4\n\tTUNSETSTEERINGEBPF               = 0x800454e0\n\tTUNSETTXFILTER                   = 0x400454d1\n\tTUNSETVNETBE                     = 0x400454de\n\tTUNSETVNETHDRSZ                  = 0x400454d8\n\tTUNSETVNETLE                     = 0x400454dc\n\tUBI_IOCATT                       = 0x40186f40\n\tUBI_IOCDET                       = 0x40046f41\n\tUBI_IOCEBCH                      = 0x40044f02\n\tUBI_IOCEBER                      = 0x40044f01\n\tUBI_IOCEBISMAP                   = 0x80044f05\n\tUBI_IOCEBMAP                     = 0x40084f03\n\tUBI_IOCEBUNMAP                   = 0x40044f04\n\tUBI_IOCMKVOL                     = 0x40986f00\n\tUBI_IOCRMVOL                     = 0x40046f01\n\tUBI_IOCRNVOL                     = 0x51106f03\n\tUBI_IOCRPEB                      = 0x40046f04\n\tUBI_IOCRSVOL                     = 0x400c6f02\n\tUBI_IOCSETVOLPROP                = 0x40104f06\n\tUBI_IOCSPEB                      = 0x40046f05\n\tUBI_IOCVOLCRBLK                  = 0x40804f07\n\tUBI_IOCVOLRMBLK                  = 0x4f08\n\tUBI_IOCVOLUP                     = 0x40084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x4\n\tVEOL                             = 0xb\n\tVEOL2                            = 0x10\n\tVMIN                             = 0x6\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x80045702\n\tWDIOC_GETPRETIMEOUT              = 0x80045709\n\tWDIOC_GETSTATUS                  = 0x80045701\n\tWDIOC_GETSUPPORT                 = 0x80285700\n\tWDIOC_GETTEMP                    = 0x80045703\n\tWDIOC_GETTIMELEFT                = 0x8004570a\n\tWDIOC_GETTIMEOUT                 = 0x80045707\n\tWDIOC_KEEPALIVE                  = 0x80045705\n\tWDIOC_SETOPTIONS                 = 0x80045704\n\tWORDSIZE                         = 0x40\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x62)\n\tEADDRNOTAVAIL   = syscall.Errno(0x63)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x61)\n\tEALREADY        = syscall.Errno(0x72)\n\tEBADE           = syscall.Errno(0x34)\n\tEBADFD          = syscall.Errno(0x4d)\n\tEBADMSG         = syscall.Errno(0x4a)\n\tEBADR           = syscall.Errno(0x35)\n\tEBADRQC         = syscall.Errno(0x38)\n\tEBADSLT         = syscall.Errno(0x39)\n\tEBFONT          = syscall.Errno(0x3b)\n\tECANCELED       = syscall.Errno(0x7d)\n\tECHRNG          = syscall.Errno(0x2c)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x67)\n\tECONNREFUSED    = syscall.Errno(0x6f)\n\tECONNRESET      = syscall.Errno(0x68)\n\tEDEADLK         = syscall.Errno(0x23)\n\tEDEADLOCK       = syscall.Errno(0x23)\n\tEDESTADDRREQ    = syscall.Errno(0x59)\n\tEDOTDOT         = syscall.Errno(0x49)\n\tEDQUOT          = syscall.Errno(0x7a)\n\tEHOSTDOWN       = syscall.Errno(0x70)\n\tEHOSTUNREACH    = syscall.Errno(0x71)\n\tEHWPOISON       = syscall.Errno(0x85)\n\tEIDRM           = syscall.Errno(0x2b)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x73)\n\tEISCONN         = syscall.Errno(0x6a)\n\tEISNAM          = syscall.Errno(0x78)\n\tEKEYEXPIRED     = syscall.Errno(0x7f)\n\tEKEYREJECTED    = syscall.Errno(0x81)\n\tEKEYREVOKED     = syscall.Errno(0x80)\n\tEL2HLT          = syscall.Errno(0x33)\n\tEL2NSYNC        = syscall.Errno(0x2d)\n\tEL3HLT          = syscall.Errno(0x2e)\n\tEL3RST          = syscall.Errno(0x2f)\n\tELIBACC         = syscall.Errno(0x4f)\n\tELIBBAD         = syscall.Errno(0x50)\n\tELIBEXEC        = syscall.Errno(0x53)\n\tELIBMAX         = syscall.Errno(0x52)\n\tELIBSCN         = syscall.Errno(0x51)\n\tELNRNG          = syscall.Errno(0x30)\n\tELOOP           = syscall.Errno(0x28)\n\tEMEDIUMTYPE     = syscall.Errno(0x7c)\n\tEMSGSIZE        = syscall.Errno(0x5a)\n\tEMULTIHOP       = syscall.Errno(0x48)\n\tENAMETOOLONG    = syscall.Errno(0x24)\n\tENAVAIL         = syscall.Errno(0x77)\n\tENETDOWN        = syscall.Errno(0x64)\n\tENETRESET       = syscall.Errno(0x66)\n\tENETUNREACH     = syscall.Errno(0x65)\n\tENOANO          = syscall.Errno(0x37)\n\tENOBUFS         = syscall.Errno(0x69)\n\tENOCSI          = syscall.Errno(0x32)\n\tENODATA         = syscall.Errno(0x3d)\n\tENOKEY          = syscall.Errno(0x7e)\n\tENOLCK          = syscall.Errno(0x25)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEDIUM       = syscall.Errno(0x7b)\n\tENOMSG          = syscall.Errno(0x2a)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x5c)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x26)\n\tENOTCONN        = syscall.Errno(0x6b)\n\tENOTEMPTY       = syscall.Errno(0x27)\n\tENOTNAM         = syscall.Errno(0x76)\n\tENOTRECOVERABLE = syscall.Errno(0x83)\n\tENOTSOCK        = syscall.Errno(0x58)\n\tENOTSUP         = syscall.Errno(0x5f)\n\tENOTUNIQ        = syscall.Errno(0x4c)\n\tEOPNOTSUPP      = syscall.Errno(0x5f)\n\tEOVERFLOW       = syscall.Errno(0x4b)\n\tEOWNERDEAD      = syscall.Errno(0x82)\n\tEPFNOSUPPORT    = syscall.Errno(0x60)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x5d)\n\tEPROTOTYPE      = syscall.Errno(0x5b)\n\tEREMCHG         = syscall.Errno(0x4e)\n\tEREMOTE         = syscall.Errno(0x42)\n\tEREMOTEIO       = syscall.Errno(0x79)\n\tERESTART        = syscall.Errno(0x55)\n\tERFKILL         = syscall.Errno(0x84)\n\tESHUTDOWN       = syscall.Errno(0x6c)\n\tESOCKTNOSUPPORT = syscall.Errno(0x5e)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x74)\n\tESTRPIPE        = syscall.Errno(0x56)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x6e)\n\tETOOMANYREFS    = syscall.Errno(0x6d)\n\tEUCLEAN         = syscall.Errno(0x75)\n\tEUNATCH         = syscall.Errno(0x31)\n\tEUSERS          = syscall.Errno(0x57)\n\tEXFULL          = syscall.Errno(0x36)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0x7)\n\tSIGCHLD   = syscall.Signal(0x11)\n\tSIGCLD    = syscall.Signal(0x11)\n\tSIGCONT   = syscall.Signal(0x12)\n\tSIGIO     = syscall.Signal(0x1d)\n\tSIGPOLL   = syscall.Signal(0x1d)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x1e)\n\tSIGSTKFLT = syscall.Signal(0x10)\n\tSIGSTOP   = syscall.Signal(0x13)\n\tSIGSYS    = syscall.Signal(0x1f)\n\tSIGTSTP   = syscall.Signal(0x14)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x17)\n\tSIGUSR1   = syscall.Signal(0xa)\n\tSIGUSR2   = syscall.Signal(0xc)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{35, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{36, \"ENAMETOOLONG\", \"file name too long\"},\n\t{37, \"ENOLCK\", \"no locks available\"},\n\t{38, \"ENOSYS\", \"function not implemented\"},\n\t{39, \"ENOTEMPTY\", \"directory not empty\"},\n\t{40, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{42, \"ENOMSG\", \"no message of desired type\"},\n\t{43, \"EIDRM\", \"identifier removed\"},\n\t{44, \"ECHRNG\", \"channel number out of range\"},\n\t{45, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{46, \"EL3HLT\", \"level 3 halted\"},\n\t{47, \"EL3RST\", \"level 3 reset\"},\n\t{48, \"ELNRNG\", \"link number out of range\"},\n\t{49, \"EUNATCH\", \"protocol driver not attached\"},\n\t{50, \"ENOCSI\", \"no CSI structure available\"},\n\t{51, \"EL2HLT\", \"level 2 halted\"},\n\t{52, \"EBADE\", \"invalid exchange\"},\n\t{53, \"EBADR\", \"invalid request descriptor\"},\n\t{54, \"EXFULL\", \"exchange full\"},\n\t{55, \"ENOANO\", \"no anode\"},\n\t{56, \"EBADRQC\", \"invalid request code\"},\n\t{57, \"EBADSLT\", \"invalid slot\"},\n\t{59, \"EBFONT\", \"bad font file format\"},\n\t{60, \"ENOSTR\", \"device not a stream\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of streams resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{72, \"EMULTIHOP\", \"multihop attempted\"},\n\t{73, \"EDOTDOT\", \"RFS specific error\"},\n\t{74, \"EBADMSG\", \"bad message\"},\n\t{75, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{76, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{77, \"EBADFD\", \"file descriptor in bad state\"},\n\t{78, \"EREMCHG\", \"remote address changed\"},\n\t{79, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{80, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{81, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{82, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{83, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{84, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{85, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{86, \"ESTRPIPE\", \"streams pipe error\"},\n\t{87, \"EUSERS\", \"too many users\"},\n\t{88, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{89, \"EDESTADDRREQ\", \"destination address required\"},\n\t{90, \"EMSGSIZE\", \"message too long\"},\n\t{91, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{92, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{93, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{94, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{95, \"ENOTSUP\", \"operation not supported\"},\n\t{96, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{97, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{98, \"EADDRINUSE\", \"address already in use\"},\n\t{99, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{100, \"ENETDOWN\", \"network is down\"},\n\t{101, \"ENETUNREACH\", \"network is unreachable\"},\n\t{102, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{103, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{104, \"ECONNRESET\", \"connection reset by peer\"},\n\t{105, \"ENOBUFS\", \"no buffer space available\"},\n\t{106, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{107, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{108, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{109, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{110, \"ETIMEDOUT\", \"connection timed out\"},\n\t{111, \"ECONNREFUSED\", \"connection refused\"},\n\t{112, \"EHOSTDOWN\", \"host is down\"},\n\t{113, \"EHOSTUNREACH\", \"no route to host\"},\n\t{114, \"EALREADY\", \"operation already in progress\"},\n\t{115, \"EINPROGRESS\", \"operation now in progress\"},\n\t{116, \"ESTALE\", \"stale file handle\"},\n\t{117, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{118, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{119, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{120, \"EISNAM\", \"is a named type file\"},\n\t{121, \"EREMOTEIO\", \"remote I/O error\"},\n\t{122, \"EDQUOT\", \"disk quota exceeded\"},\n\t{123, \"ENOMEDIUM\", \"no medium found\"},\n\t{124, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{125, \"ECANCELED\", \"operation canceled\"},\n\t{126, \"ENOKEY\", \"required key not available\"},\n\t{127, \"EKEYEXPIRED\", \"key has expired\"},\n\t{128, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{129, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{130, \"EOWNERDEAD\", \"owner died\"},\n\t{131, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{132, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{133, \"EHWPOISON\", \"memory page has hardware error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGBUS\", \"bus error\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGUSR1\", \"user defined signal 1\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGUSR2\", \"user defined signal 2\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGSTKFLT\", \"stack fault\"},\n\t{17, \"SIGCHLD\", \"child exited\"},\n\t{18, \"SIGCONT\", \"continued\"},\n\t{19, \"SIGSTOP\", \"stopped (signal)\"},\n\t{20, \"SIGTSTP\", \"stopped\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGURG\", \"urgent I/O condition\"},\n\t{24, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"file size limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window changed\"},\n\t{29, \"SIGIO\", \"I/O possible\"},\n\t{30, \"SIGPWR\", \"power failure\"},\n\t{31, \"SIGSYS\", \"bad system call\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go",
    "content": "// mkerrors.sh -Wall -Werror -static -I/tmp/include\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build sparc64,linux\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -Wall -Werror -static -I/tmp/include _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tASI_LEON_DFLUSH                  = 0x11\n\tASI_LEON_IFLUSH                  = 0x10\n\tASI_LEON_MMUFLUSH                = 0x18\n\tB1000000                         = 0x1008\n\tB115200                          = 0x1002\n\tB1152000                         = 0x1009\n\tB1500000                         = 0x100a\n\tB2000000                         = 0x100b\n\tB230400                          = 0x1003\n\tB2500000                         = 0x100c\n\tB3000000                         = 0x100d\n\tB3500000                         = 0x100e\n\tB4000000                         = 0x100f\n\tB460800                          = 0x1004\n\tB500000                          = 0x1005\n\tB57600                           = 0x1001\n\tB576000                          = 0x1006\n\tB921600                          = 0x1007\n\tBLKBSZGET                        = 0x40081270\n\tBLKBSZSET                        = 0x80081271\n\tBLKFLSBUF                        = 0x20001261\n\tBLKFRAGET                        = 0x20001265\n\tBLKFRASET                        = 0x20001264\n\tBLKGETSIZE                       = 0x20001260\n\tBLKGETSIZE64                     = 0x40081272\n\tBLKPBSZGET                       = 0x2000127b\n\tBLKRAGET                         = 0x20001263\n\tBLKRASET                         = 0x20001262\n\tBLKROGET                         = 0x2000125e\n\tBLKROSET                         = 0x2000125d\n\tBLKRRPART                        = 0x2000125f\n\tBLKSECTGET                       = 0x20001267\n\tBLKSECTSET                       = 0x20001266\n\tBLKSSZGET                        = 0x20001268\n\tBOTHER                           = 0x1000\n\tBS1                              = 0x2000\n\tBSDLY                            = 0x2000\n\tCBAUD                            = 0x100f\n\tCBAUDEX                          = 0x1000\n\tCIBAUD                           = 0x100f0000\n\tCLOCAL                           = 0x800\n\tCR1                              = 0x200\n\tCR2                              = 0x400\n\tCR3                              = 0x600\n\tCRDLY                            = 0x600\n\tCREAD                            = 0x80\n\tCS6                              = 0x10\n\tCS7                              = 0x20\n\tCS8                              = 0x30\n\tCSIZE                            = 0x30\n\tCSTOPB                           = 0x40\n\tECHOCTL                          = 0x200\n\tECHOE                            = 0x10\n\tECHOK                            = 0x20\n\tECHOKE                           = 0x800\n\tECHONL                           = 0x40\n\tECHOPRT                          = 0x400\n\tEFD_CLOEXEC                      = 0x400000\n\tEFD_NONBLOCK                     = 0x4000\n\tEMT_TAGOVF                       = 0x1\n\tEPOLL_CLOEXEC                    = 0x400000\n\tEXTPROC                          = 0x10000\n\tFF1                              = 0x8000\n\tFFDLY                            = 0x8000\n\tFICLONE                          = 0x80049409\n\tFICLONERANGE                     = 0x8020940d\n\tFLUSHO                           = 0x1000\n\tFS_IOC_ENABLE_VERITY             = 0x80806685\n\tFS_IOC_GETFLAGS                  = 0x40086601\n\tFS_IOC_GET_ENCRYPTION_NONCE      = 0x4010661b\n\tFS_IOC_GET_ENCRYPTION_POLICY     = 0x800c6615\n\tFS_IOC_GET_ENCRYPTION_PWSALT     = 0x80106614\n\tFS_IOC_SETFLAGS                  = 0x80086602\n\tFS_IOC_SET_ENCRYPTION_POLICY     = 0x400c6613\n\tF_GETLK                          = 0x7\n\tF_GETLK64                        = 0x7\n\tF_GETOWN                         = 0x5\n\tF_RDLCK                          = 0x1\n\tF_SETLK                          = 0x8\n\tF_SETLK64                        = 0x8\n\tF_SETLKW                         = 0x9\n\tF_SETLKW64                       = 0x9\n\tF_SETOWN                         = 0x6\n\tF_UNLCK                          = 0x3\n\tF_WRLCK                          = 0x2\n\tHUPCL                            = 0x400\n\tICANON                           = 0x2\n\tIEXTEN                           = 0x8000\n\tIN_CLOEXEC                       = 0x400000\n\tIN_NONBLOCK                      = 0x4000\n\tIOCTL_VM_SOCKETS_GET_LOCAL_CID   = 0x200007b9\n\tISIG                             = 0x1\n\tIUCLC                            = 0x200\n\tIXOFF                            = 0x1000\n\tIXON                             = 0x400\n\tMAP_ANON                         = 0x20\n\tMAP_ANONYMOUS                    = 0x20\n\tMAP_DENYWRITE                    = 0x800\n\tMAP_EXECUTABLE                   = 0x1000\n\tMAP_GROWSDOWN                    = 0x200\n\tMAP_HUGETLB                      = 0x40000\n\tMAP_LOCKED                       = 0x100\n\tMAP_NONBLOCK                     = 0x10000\n\tMAP_NORESERVE                    = 0x40\n\tMAP_POPULATE                     = 0x8000\n\tMAP_RENAME                       = 0x20\n\tMAP_STACK                        = 0x20000\n\tMAP_SYNC                         = 0x80000\n\tMCL_CURRENT                      = 0x2000\n\tMCL_FUTURE                       = 0x4000\n\tMCL_ONFAULT                      = 0x8000\n\tNFDBITS                          = 0x40\n\tNLDLY                            = 0x100\n\tNOFLSH                           = 0x80\n\tNS_GET_NSTYPE                    = 0x2000b703\n\tNS_GET_OWNER_UID                 = 0x2000b704\n\tNS_GET_PARENT                    = 0x2000b702\n\tNS_GET_USERNS                    = 0x2000b701\n\tOLCUC                            = 0x2\n\tONLCR                            = 0x4\n\tO_APPEND                         = 0x8\n\tO_ASYNC                          = 0x40\n\tO_CLOEXEC                        = 0x400000\n\tO_CREAT                          = 0x200\n\tO_DIRECT                         = 0x100000\n\tO_DIRECTORY                      = 0x10000\n\tO_DSYNC                          = 0x2000\n\tO_EXCL                           = 0x800\n\tO_FSYNC                          = 0x802000\n\tO_LARGEFILE                      = 0x0\n\tO_NDELAY                         = 0x4004\n\tO_NOATIME                        = 0x200000\n\tO_NOCTTY                         = 0x8000\n\tO_NOFOLLOW                       = 0x20000\n\tO_NONBLOCK                       = 0x4000\n\tO_PATH                           = 0x1000000\n\tO_RSYNC                          = 0x802000\n\tO_SYNC                           = 0x802000\n\tO_TMPFILE                        = 0x2010000\n\tO_TRUNC                          = 0x400\n\tPARENB                           = 0x100\n\tPARODD                           = 0x200\n\tPENDIN                           = 0x4000\n\tPERF_EVENT_IOC_DISABLE           = 0x20002401\n\tPERF_EVENT_IOC_ENABLE            = 0x20002400\n\tPERF_EVENT_IOC_ID                = 0x40082407\n\tPERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b\n\tPERF_EVENT_IOC_PAUSE_OUTPUT      = 0x80042409\n\tPERF_EVENT_IOC_PERIOD            = 0x80082404\n\tPERF_EVENT_IOC_QUERY_BPF         = 0xc008240a\n\tPERF_EVENT_IOC_REFRESH           = 0x20002402\n\tPERF_EVENT_IOC_RESET             = 0x20002403\n\tPERF_EVENT_IOC_SET_BPF           = 0x80042408\n\tPERF_EVENT_IOC_SET_FILTER        = 0x80082406\n\tPERF_EVENT_IOC_SET_OUTPUT        = 0x20002405\n\tPPPIOCATTACH                     = 0x8004743d\n\tPPPIOCATTCHAN                    = 0x80047438\n\tPPPIOCCONNECT                    = 0x8004743a\n\tPPPIOCDETACH                     = 0x8004743c\n\tPPPIOCDISCONN                    = 0x20007439\n\tPPPIOCGASYNCMAP                  = 0x40047458\n\tPPPIOCGCHAN                      = 0x40047437\n\tPPPIOCGDEBUG                     = 0x40047441\n\tPPPIOCGFLAGS                     = 0x4004745a\n\tPPPIOCGIDLE                      = 0x4010743f\n\tPPPIOCGIDLE32                    = 0x4008743f\n\tPPPIOCGIDLE64                    = 0x4010743f\n\tPPPIOCGL2TPSTATS                 = 0x40487436\n\tPPPIOCGMRU                       = 0x40047453\n\tPPPIOCGRASYNCMAP                 = 0x40047455\n\tPPPIOCGUNIT                      = 0x40047456\n\tPPPIOCGXASYNCMAP                 = 0x40207450\n\tPPPIOCSACTIVE                    = 0x80107446\n\tPPPIOCSASYNCMAP                  = 0x80047457\n\tPPPIOCSCOMPRESS                  = 0x8010744d\n\tPPPIOCSDEBUG                     = 0x80047440\n\tPPPIOCSFLAGS                     = 0x80047459\n\tPPPIOCSMAXCID                    = 0x80047451\n\tPPPIOCSMRRU                      = 0x8004743b\n\tPPPIOCSMRU                       = 0x80047452\n\tPPPIOCSNPMODE                    = 0x8008744b\n\tPPPIOCSPASS                      = 0x80107447\n\tPPPIOCSRASYNCMAP                 = 0x80047454\n\tPPPIOCSXASYNCMAP                 = 0x8020744f\n\tPPPIOCXFERUNIT                   = 0x2000744e\n\tPR_SET_PTRACER_ANY               = 0xffffffffffffffff\n\tPTRACE_GETFPAREGS                = 0x14\n\tPTRACE_GETFPREGS                 = 0xe\n\tPTRACE_GETFPREGS64               = 0x19\n\tPTRACE_GETREGS64                 = 0x16\n\tPTRACE_READDATA                  = 0x10\n\tPTRACE_READTEXT                  = 0x12\n\tPTRACE_SETFPAREGS                = 0x15\n\tPTRACE_SETFPREGS                 = 0xf\n\tPTRACE_SETFPREGS64               = 0x1a\n\tPTRACE_SETREGS64                 = 0x17\n\tPTRACE_SPARC_DETACH              = 0xb\n\tPTRACE_WRITEDATA                 = 0x11\n\tPTRACE_WRITETEXT                 = 0x13\n\tPT_FP                            = 0x48\n\tPT_G0                            = 0x10\n\tPT_G1                            = 0x14\n\tPT_G2                            = 0x18\n\tPT_G3                            = 0x1c\n\tPT_G4                            = 0x20\n\tPT_G5                            = 0x24\n\tPT_G6                            = 0x28\n\tPT_G7                            = 0x2c\n\tPT_I0                            = 0x30\n\tPT_I1                            = 0x34\n\tPT_I2                            = 0x38\n\tPT_I3                            = 0x3c\n\tPT_I4                            = 0x40\n\tPT_I5                            = 0x44\n\tPT_I6                            = 0x48\n\tPT_I7                            = 0x4c\n\tPT_NPC                           = 0x8\n\tPT_PC                            = 0x4\n\tPT_PSR                           = 0x0\n\tPT_REGS_MAGIC                    = 0x57ac6c00\n\tPT_TNPC                          = 0x90\n\tPT_TPC                           = 0x88\n\tPT_TSTATE                        = 0x80\n\tPT_V9_FP                         = 0x70\n\tPT_V9_G0                         = 0x0\n\tPT_V9_G1                         = 0x8\n\tPT_V9_G2                         = 0x10\n\tPT_V9_G3                         = 0x18\n\tPT_V9_G4                         = 0x20\n\tPT_V9_G5                         = 0x28\n\tPT_V9_G6                         = 0x30\n\tPT_V9_G7                         = 0x38\n\tPT_V9_I0                         = 0x40\n\tPT_V9_I1                         = 0x48\n\tPT_V9_I2                         = 0x50\n\tPT_V9_I3                         = 0x58\n\tPT_V9_I4                         = 0x60\n\tPT_V9_I5                         = 0x68\n\tPT_V9_I6                         = 0x70\n\tPT_V9_I7                         = 0x78\n\tPT_V9_MAGIC                      = 0x9c\n\tPT_V9_TNPC                       = 0x90\n\tPT_V9_TPC                        = 0x88\n\tPT_V9_TSTATE                     = 0x80\n\tPT_V9_Y                          = 0x98\n\tPT_WIM                           = 0x10\n\tPT_Y                             = 0xc\n\tRLIMIT_AS                        = 0x9\n\tRLIMIT_MEMLOCK                   = 0x8\n\tRLIMIT_NOFILE                    = 0x6\n\tRLIMIT_NPROC                     = 0x7\n\tRLIMIT_RSS                       = 0x5\n\tRNDADDENTROPY                    = 0x80085203\n\tRNDADDTOENTCNT                   = 0x80045201\n\tRNDCLEARPOOL                     = 0x20005206\n\tRNDGETENTCNT                     = 0x40045200\n\tRNDGETPOOL                       = 0x40085202\n\tRNDRESEEDCRNG                    = 0x20005207\n\tRNDZAPENTCNT                     = 0x20005204\n\tRTC_AIE_OFF                      = 0x20007002\n\tRTC_AIE_ON                       = 0x20007001\n\tRTC_ALM_READ                     = 0x40247008\n\tRTC_ALM_SET                      = 0x80247007\n\tRTC_EPOCH_READ                   = 0x4008700d\n\tRTC_EPOCH_SET                    = 0x8008700e\n\tRTC_IRQP_READ                    = 0x4008700b\n\tRTC_IRQP_SET                     = 0x8008700c\n\tRTC_PIE_OFF                      = 0x20007006\n\tRTC_PIE_ON                       = 0x20007005\n\tRTC_PLL_GET                      = 0x40207011\n\tRTC_PLL_SET                      = 0x80207012\n\tRTC_RD_TIME                      = 0x40247009\n\tRTC_SET_TIME                     = 0x8024700a\n\tRTC_UIE_OFF                      = 0x20007004\n\tRTC_UIE_ON                       = 0x20007003\n\tRTC_VL_CLR                       = 0x20007014\n\tRTC_VL_READ                      = 0x40047013\n\tRTC_WIE_OFF                      = 0x20007010\n\tRTC_WIE_ON                       = 0x2000700f\n\tRTC_WKALM_RD                     = 0x40287010\n\tRTC_WKALM_SET                    = 0x8028700f\n\tSCM_TIMESTAMPING                 = 0x23\n\tSCM_TIMESTAMPING_OPT_STATS       = 0x38\n\tSCM_TIMESTAMPING_PKTINFO         = 0x3c\n\tSCM_TIMESTAMPNS                  = 0x21\n\tSCM_TXTIME                       = 0x3f\n\tSCM_WIFI_STATUS                  = 0x25\n\tSFD_CLOEXEC                      = 0x400000\n\tSFD_NONBLOCK                     = 0x4000\n\tSIOCATMARK                       = 0x8905\n\tSIOCGPGRP                        = 0x8904\n\tSIOCGSTAMPNS_NEW                 = 0x40108907\n\tSIOCGSTAMP_NEW                   = 0x40108906\n\tSIOCINQ                          = 0x4004667f\n\tSIOCOUTQ                         = 0x40047473\n\tSIOCSPGRP                        = 0x8902\n\tSOCK_CLOEXEC                     = 0x400000\n\tSOCK_DGRAM                       = 0x2\n\tSOCK_NONBLOCK                    = 0x4000\n\tSOCK_STREAM                      = 0x1\n\tSOL_SOCKET                       = 0xffff\n\tSO_ACCEPTCONN                    = 0x8000\n\tSO_ATTACH_BPF                    = 0x34\n\tSO_ATTACH_REUSEPORT_CBPF         = 0x35\n\tSO_ATTACH_REUSEPORT_EBPF         = 0x36\n\tSO_BINDTODEVICE                  = 0xd\n\tSO_BINDTOIFINDEX                 = 0x41\n\tSO_BPF_EXTENSIONS                = 0x32\n\tSO_BROADCAST                     = 0x20\n\tSO_BSDCOMPAT                     = 0x400\n\tSO_BUSY_POLL                     = 0x30\n\tSO_CNX_ADVICE                    = 0x37\n\tSO_COOKIE                        = 0x3b\n\tSO_DETACH_REUSEPORT_BPF          = 0x47\n\tSO_DOMAIN                        = 0x1029\n\tSO_DONTROUTE                     = 0x10\n\tSO_ERROR                         = 0x1007\n\tSO_INCOMING_CPU                  = 0x33\n\tSO_INCOMING_NAPI_ID              = 0x3a\n\tSO_KEEPALIVE                     = 0x8\n\tSO_LINGER                        = 0x80\n\tSO_LOCK_FILTER                   = 0x28\n\tSO_MARK                          = 0x22\n\tSO_MAX_PACING_RATE               = 0x31\n\tSO_MEMINFO                       = 0x39\n\tSO_NOFCS                         = 0x27\n\tSO_OOBINLINE                     = 0x100\n\tSO_PASSCRED                      = 0x2\n\tSO_PASSSEC                       = 0x1f\n\tSO_PEEK_OFF                      = 0x26\n\tSO_PEERCRED                      = 0x40\n\tSO_PEERGROUPS                    = 0x3d\n\tSO_PEERSEC                       = 0x1e\n\tSO_PROTOCOL                      = 0x1028\n\tSO_RCVBUF                        = 0x1002\n\tSO_RCVBUFFORCE                   = 0x100b\n\tSO_RCVLOWAT                      = 0x800\n\tSO_RCVTIMEO                      = 0x2000\n\tSO_RCVTIMEO_NEW                  = 0x44\n\tSO_RCVTIMEO_OLD                  = 0x2000\n\tSO_REUSEADDR                     = 0x4\n\tSO_REUSEPORT                     = 0x200\n\tSO_RXQ_OVFL                      = 0x24\n\tSO_SECURITY_AUTHENTICATION       = 0x5001\n\tSO_SECURITY_ENCRYPTION_NETWORK   = 0x5004\n\tSO_SECURITY_ENCRYPTION_TRANSPORT = 0x5002\n\tSO_SELECT_ERR_QUEUE              = 0x29\n\tSO_SNDBUF                        = 0x1001\n\tSO_SNDBUFFORCE                   = 0x100a\n\tSO_SNDLOWAT                      = 0x1000\n\tSO_SNDTIMEO                      = 0x4000\n\tSO_SNDTIMEO_NEW                  = 0x45\n\tSO_SNDTIMEO_OLD                  = 0x4000\n\tSO_TIMESTAMPING                  = 0x23\n\tSO_TIMESTAMPING_NEW              = 0x43\n\tSO_TIMESTAMPING_OLD              = 0x23\n\tSO_TIMESTAMPNS                   = 0x21\n\tSO_TIMESTAMPNS_NEW               = 0x42\n\tSO_TIMESTAMPNS_OLD               = 0x21\n\tSO_TIMESTAMP_NEW                 = 0x46\n\tSO_TXTIME                        = 0x3f\n\tSO_TYPE                          = 0x1008\n\tSO_WIFI_STATUS                   = 0x25\n\tSO_ZEROCOPY                      = 0x3e\n\tTAB1                             = 0x800\n\tTAB2                             = 0x1000\n\tTAB3                             = 0x1800\n\tTABDLY                           = 0x1800\n\tTCFLSH                           = 0x20005407\n\tTCGETA                           = 0x40125401\n\tTCGETS                           = 0x40245408\n\tTCGETS2                          = 0x402c540c\n\tTCSAFLUSH                        = 0x2\n\tTCSBRK                           = 0x20005405\n\tTCSBRKP                          = 0x5425\n\tTCSETA                           = 0x80125402\n\tTCSETAF                          = 0x80125404\n\tTCSETAW                          = 0x80125403\n\tTCSETS                           = 0x80245409\n\tTCSETS2                          = 0x802c540d\n\tTCSETSF                          = 0x8024540b\n\tTCSETSF2                         = 0x802c540f\n\tTCSETSW                          = 0x8024540a\n\tTCSETSW2                         = 0x802c540e\n\tTCXONC                           = 0x20005406\n\tTFD_CLOEXEC                      = 0x400000\n\tTFD_NONBLOCK                     = 0x4000\n\tTIOCCBRK                         = 0x2000747a\n\tTIOCCONS                         = 0x20007424\n\tTIOCEXCL                         = 0x2000740d\n\tTIOCGDEV                         = 0x40045432\n\tTIOCGETD                         = 0x40047400\n\tTIOCGEXCL                        = 0x40045440\n\tTIOCGICOUNT                      = 0x545d\n\tTIOCGISO7816                     = 0x40285443\n\tTIOCGLCKTRMIOS                   = 0x5456\n\tTIOCGPGRP                        = 0x40047483\n\tTIOCGPKT                         = 0x40045438\n\tTIOCGPTLCK                       = 0x40045439\n\tTIOCGPTN                         = 0x40047486\n\tTIOCGPTPEER                      = 0x20007489\n\tTIOCGRS485                       = 0x40205441\n\tTIOCGSERIAL                      = 0x541e\n\tTIOCGSID                         = 0x40047485\n\tTIOCGSOFTCAR                     = 0x40047464\n\tTIOCGWINSZ                       = 0x40087468\n\tTIOCINQ                          = 0x4004667f\n\tTIOCLINUX                        = 0x541c\n\tTIOCMBIC                         = 0x8004746b\n\tTIOCMBIS                         = 0x8004746c\n\tTIOCMGET                         = 0x4004746a\n\tTIOCMIWAIT                       = 0x545c\n\tTIOCMSET                         = 0x8004746d\n\tTIOCM_CAR                        = 0x40\n\tTIOCM_CD                         = 0x40\n\tTIOCM_CTS                        = 0x20\n\tTIOCM_DSR                        = 0x100\n\tTIOCM_RI                         = 0x80\n\tTIOCM_RNG                        = 0x80\n\tTIOCM_SR                         = 0x10\n\tTIOCM_ST                         = 0x8\n\tTIOCNOTTY                        = 0x20007471\n\tTIOCNXCL                         = 0x2000740e\n\tTIOCOUTQ                         = 0x40047473\n\tTIOCPKT                          = 0x80047470\n\tTIOCSBRK                         = 0x2000747b\n\tTIOCSCTTY                        = 0x20007484\n\tTIOCSERCONFIG                    = 0x5453\n\tTIOCSERGETLSR                    = 0x5459\n\tTIOCSERGETMULTI                  = 0x545a\n\tTIOCSERGSTRUCT                   = 0x5458\n\tTIOCSERGWILD                     = 0x5454\n\tTIOCSERSETMULTI                  = 0x545b\n\tTIOCSERSWILD                     = 0x5455\n\tTIOCSETD                         = 0x80047401\n\tTIOCSIG                          = 0x80047488\n\tTIOCSISO7816                     = 0xc0285444\n\tTIOCSLCKTRMIOS                   = 0x5457\n\tTIOCSPGRP                        = 0x80047482\n\tTIOCSPTLCK                       = 0x80047487\n\tTIOCSRS485                       = 0xc0205442\n\tTIOCSSERIAL                      = 0x541f\n\tTIOCSSOFTCAR                     = 0x80047465\n\tTIOCSTART                        = 0x2000746e\n\tTIOCSTI                          = 0x80017472\n\tTIOCSTOP                         = 0x2000746f\n\tTIOCSWINSZ                       = 0x80087467\n\tTIOCVHANGUP                      = 0x20005437\n\tTOSTOP                           = 0x100\n\tTUNATTACHFILTER                  = 0x801054d5\n\tTUNDETACHFILTER                  = 0x801054d6\n\tTUNGETDEVNETNS                   = 0x200054e3\n\tTUNGETFEATURES                   = 0x400454cf\n\tTUNGETFILTER                     = 0x401054db\n\tTUNGETIFF                        = 0x400454d2\n\tTUNGETSNDBUF                     = 0x400454d3\n\tTUNGETVNETBE                     = 0x400454df\n\tTUNGETVNETHDRSZ                  = 0x400454d7\n\tTUNGETVNETLE                     = 0x400454dd\n\tTUNSETCARRIER                    = 0x800454e2\n\tTUNSETDEBUG                      = 0x800454c9\n\tTUNSETFILTEREBPF                 = 0x400454e1\n\tTUNSETGROUP                      = 0x800454ce\n\tTUNSETIFF                        = 0x800454ca\n\tTUNSETIFINDEX                    = 0x800454da\n\tTUNSETLINK                       = 0x800454cd\n\tTUNSETNOCSUM                     = 0x800454c8\n\tTUNSETOFFLOAD                    = 0x800454d0\n\tTUNSETOWNER                      = 0x800454cc\n\tTUNSETPERSIST                    = 0x800454cb\n\tTUNSETQUEUE                      = 0x800454d9\n\tTUNSETSNDBUF                     = 0x800454d4\n\tTUNSETSTEERINGEBPF               = 0x400454e0\n\tTUNSETTXFILTER                   = 0x800454d1\n\tTUNSETVNETBE                     = 0x800454de\n\tTUNSETVNETHDRSZ                  = 0x800454d8\n\tTUNSETVNETLE                     = 0x800454dc\n\tUBI_IOCATT                       = 0x80186f40\n\tUBI_IOCDET                       = 0x80046f41\n\tUBI_IOCEBCH                      = 0x80044f02\n\tUBI_IOCEBER                      = 0x80044f01\n\tUBI_IOCEBISMAP                   = 0x40044f05\n\tUBI_IOCEBMAP                     = 0x80084f03\n\tUBI_IOCEBUNMAP                   = 0x80044f04\n\tUBI_IOCMKVOL                     = 0x80986f00\n\tUBI_IOCRMVOL                     = 0x80046f01\n\tUBI_IOCRNVOL                     = 0x91106f03\n\tUBI_IOCRPEB                      = 0x80046f04\n\tUBI_IOCRSVOL                     = 0x800c6f02\n\tUBI_IOCSETVOLPROP                = 0x80104f06\n\tUBI_IOCSPEB                      = 0x80046f05\n\tUBI_IOCVOLCRBLK                  = 0x80804f07\n\tUBI_IOCVOLRMBLK                  = 0x20004f08\n\tUBI_IOCVOLUP                     = 0x80084f00\n\tVDISCARD                         = 0xd\n\tVEOF                             = 0x4\n\tVEOL                             = 0xb\n\tVEOL2                            = 0x10\n\tVMIN                             = 0x6\n\tVREPRINT                         = 0xc\n\tVSTART                           = 0x8\n\tVSTOP                            = 0x9\n\tVSUSP                            = 0xa\n\tVSWTC                            = 0x7\n\tVT1                              = 0x4000\n\tVTDLY                            = 0x4000\n\tVTIME                            = 0x5\n\tVWERASE                          = 0xe\n\tWDIOC_GETBOOTSTATUS              = 0x40045702\n\tWDIOC_GETPRETIMEOUT              = 0x40045709\n\tWDIOC_GETSTATUS                  = 0x40045701\n\tWDIOC_GETSUPPORT                 = 0x40285700\n\tWDIOC_GETTEMP                    = 0x40045703\n\tWDIOC_GETTIMELEFT                = 0x4004570a\n\tWDIOC_GETTIMEOUT                 = 0x40045707\n\tWDIOC_KEEPALIVE                  = 0x40045705\n\tWDIOC_SETOPTIONS                 = 0x40045704\n\tWORDSIZE                         = 0x40\n\tXCASE                            = 0x4\n\tXTABS                            = 0x1800\n\t__TIOCFLUSH                      = 0x80047410\n)\n\n// Errors\nconst (\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEADV            = syscall.Errno(0x53)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEALREADY        = syscall.Errno(0x25)\n\tEBADE           = syscall.Errno(0x66)\n\tEBADFD          = syscall.Errno(0x5d)\n\tEBADMSG         = syscall.Errno(0x4c)\n\tEBADR           = syscall.Errno(0x67)\n\tEBADRQC         = syscall.Errno(0x6a)\n\tEBADSLT         = syscall.Errno(0x6b)\n\tEBFONT          = syscall.Errno(0x6d)\n\tECANCELED       = syscall.Errno(0x7f)\n\tECHRNG          = syscall.Errno(0x5e)\n\tECOMM           = syscall.Errno(0x55)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0x4e)\n\tEDEADLOCK       = syscall.Errno(0x6c)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOTDOT         = syscall.Errno(0x58)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEHWPOISON       = syscall.Errno(0x87)\n\tEIDRM           = syscall.Errno(0x4d)\n\tEILSEQ          = syscall.Errno(0x7a)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISNAM          = syscall.Errno(0x78)\n\tEKEYEXPIRED     = syscall.Errno(0x81)\n\tEKEYREJECTED    = syscall.Errno(0x83)\n\tEKEYREVOKED     = syscall.Errno(0x82)\n\tEL2HLT          = syscall.Errno(0x65)\n\tEL2NSYNC        = syscall.Errno(0x5f)\n\tEL3HLT          = syscall.Errno(0x60)\n\tEL3RST          = syscall.Errno(0x61)\n\tELIBACC         = syscall.Errno(0x72)\n\tELIBBAD         = syscall.Errno(0x70)\n\tELIBEXEC        = syscall.Errno(0x6e)\n\tELIBMAX         = syscall.Errno(0x7b)\n\tELIBSCN         = syscall.Errno(0x7c)\n\tELNRNG          = syscall.Errno(0x62)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMEDIUMTYPE     = syscall.Errno(0x7e)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x57)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENAVAIL         = syscall.Errno(0x77)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENOANO          = syscall.Errno(0x69)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENOCSI          = syscall.Errno(0x64)\n\tENODATA         = syscall.Errno(0x6f)\n\tENOKEY          = syscall.Errno(0x80)\n\tENOLCK          = syscall.Errno(0x4f)\n\tENOLINK         = syscall.Errno(0x52)\n\tENOMEDIUM       = syscall.Errno(0x7d)\n\tENOMSG          = syscall.Errno(0x4b)\n\tENONET          = syscall.Errno(0x50)\n\tENOPKG          = syscall.Errno(0x71)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSR           = syscall.Errno(0x4a)\n\tENOSTR          = syscall.Errno(0x48)\n\tENOSYS          = syscall.Errno(0x5a)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTNAM         = syscall.Errno(0x76)\n\tENOTRECOVERABLE = syscall.Errno(0x85)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x2d)\n\tENOTUNIQ        = syscall.Errno(0x73)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x5c)\n\tEOWNERDEAD      = syscall.Errno(0x84)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROTO          = syscall.Errno(0x56)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tEREMCHG         = syscall.Errno(0x59)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEREMOTEIO       = syscall.Errno(0x79)\n\tERESTART        = syscall.Errno(0x74)\n\tERFKILL         = syscall.Errno(0x86)\n\tERREMOTE        = syscall.Errno(0x51)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESRMNT          = syscall.Errno(0x54)\n\tESTALE          = syscall.Errno(0x46)\n\tESTRPIPE        = syscall.Errno(0x5b)\n\tETIME           = syscall.Errno(0x49)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tEUCLEAN         = syscall.Errno(0x75)\n\tEUNATCH         = syscall.Errno(0x63)\n\tEUSERS          = syscall.Errno(0x44)\n\tEXFULL          = syscall.Errno(0x68)\n)\n\n// Signals\nconst (\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCLD    = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGLOST   = syscall.Signal(0x1d)\n\tSIGPOLL   = syscall.Signal(0x17)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x1d)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device or resource busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"invalid cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"numerical result out of range\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"ENOTSUP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{57, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{58, \"ESHUTDOWN\", \"cannot send after transport endpoint shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{60, \"ETIMEDOUT\", \"connection timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disk quota exceeded\"},\n\t{70, \"ESTALE\", \"stale file handle\"},\n\t{71, \"EREMOTE\", \"object is remote\"},\n\t{72, \"ENOSTR\", \"device not a stream\"},\n\t{73, \"ETIME\", \"timer expired\"},\n\t{74, \"ENOSR\", \"out of streams resources\"},\n\t{75, \"ENOMSG\", \"no message of desired type\"},\n\t{76, \"EBADMSG\", \"bad message\"},\n\t{77, \"EIDRM\", \"identifier removed\"},\n\t{78, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{79, \"ENOLCK\", \"no locks available\"},\n\t{80, \"ENONET\", \"machine is not on the network\"},\n\t{81, \"ERREMOTE\", \"unknown error 81\"},\n\t{82, \"ENOLINK\", \"link has been severed\"},\n\t{83, \"EADV\", \"advertise error\"},\n\t{84, \"ESRMNT\", \"srmount error\"},\n\t{85, \"ECOMM\", \"communication error on send\"},\n\t{86, \"EPROTO\", \"protocol error\"},\n\t{87, \"EMULTIHOP\", \"multihop attempted\"},\n\t{88, \"EDOTDOT\", \"RFS specific error\"},\n\t{89, \"EREMCHG\", \"remote address changed\"},\n\t{90, \"ENOSYS\", \"function not implemented\"},\n\t{91, \"ESTRPIPE\", \"streams pipe error\"},\n\t{92, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{93, \"EBADFD\", \"file descriptor in bad state\"},\n\t{94, \"ECHRNG\", \"channel number out of range\"},\n\t{95, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{96, \"EL3HLT\", \"level 3 halted\"},\n\t{97, \"EL3RST\", \"level 3 reset\"},\n\t{98, \"ELNRNG\", \"link number out of range\"},\n\t{99, \"EUNATCH\", \"protocol driver not attached\"},\n\t{100, \"ENOCSI\", \"no CSI structure available\"},\n\t{101, \"EL2HLT\", \"level 2 halted\"},\n\t{102, \"EBADE\", \"invalid exchange\"},\n\t{103, \"EBADR\", \"invalid request descriptor\"},\n\t{104, \"EXFULL\", \"exchange full\"},\n\t{105, \"ENOANO\", \"no anode\"},\n\t{106, \"EBADRQC\", \"invalid request code\"},\n\t{107, \"EBADSLT\", \"invalid slot\"},\n\t{108, \"EDEADLOCK\", \"file locking deadlock error\"},\n\t{109, \"EBFONT\", \"bad font file format\"},\n\t{110, \"ELIBEXEC\", \"cannot exec a shared library directly\"},\n\t{111, \"ENODATA\", \"no data available\"},\n\t{112, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{113, \"ENOPKG\", \"package not installed\"},\n\t{114, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{115, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{116, \"ERESTART\", \"interrupted system call should be restarted\"},\n\t{117, \"EUCLEAN\", \"structure needs cleaning\"},\n\t{118, \"ENOTNAM\", \"not a XENIX named type file\"},\n\t{119, \"ENAVAIL\", \"no XENIX semaphores available\"},\n\t{120, \"EISNAM\", \"is a named type file\"},\n\t{121, \"EREMOTEIO\", \"remote I/O error\"},\n\t{122, \"EILSEQ\", \"invalid or incomplete multibyte or wide character\"},\n\t{123, \"ELIBMAX\", \"attempting to link in too many shared libraries\"},\n\t{124, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{125, \"ENOMEDIUM\", \"no medium found\"},\n\t{126, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{127, \"ECANCELED\", \"operation canceled\"},\n\t{128, \"ENOKEY\", \"required key not available\"},\n\t{129, \"EKEYEXPIRED\", \"key has expired\"},\n\t{130, \"EKEYREVOKED\", \"key has been revoked\"},\n\t{131, \"EKEYREJECTED\", \"key was rejected by service\"},\n\t{132, \"EOWNERDEAD\", \"owner died\"},\n\t{133, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{134, \"ERFKILL\", \"operation not possible due to RF-kill\"},\n\t{135, \"EHWPOISON\", \"memory page has hardware error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/breakpoint trap\"},\n\t{6, \"SIGABRT\", \"aborted\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"stopped (signal)\"},\n\t{18, \"SIGTSTP\", \"stopped\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"CPU time limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"file size limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window changed\"},\n\t{29, \"SIGLOST\", \"power failure\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go",
    "content": "// mkerrors.sh -m32\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,netbsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m32 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_ARP                            = 0x1c\n\tAF_BLUETOOTH                      = 0x1f\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_HYLINK                         = 0xf\n\tAF_IEEE80211                      = 0x20\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x18\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x23\n\tAF_MPLS                           = 0x21\n\tAF_NATM                           = 0x1b\n\tAF_NS                             = 0x6\n\tAF_OROUTE                         = 0x11\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x22\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tARPHRD_ARCNET                     = 0x7\n\tARPHRD_ETHER                      = 0x1\n\tARPHRD_FRELAY                     = 0xf\n\tARPHRD_IEEE1394                   = 0x18\n\tARPHRD_IEEE802                    = 0x6\n\tARPHRD_STRIP                      = 0x17\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB460800                           = 0x70800\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB921600                           = 0xe1000\n\tB9600                             = 0x2580\n\tBIOCFEEDBACK                      = 0x8004427d\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc0084277\n\tBIOCGETIF                         = 0x4090426b\n\tBIOCGFEEDBACK                     = 0x4004427c\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRTIMEOUT                     = 0x400c427b\n\tBIOCGSEESENT                      = 0x40044278\n\tBIOCGSTATS                        = 0x4080426f\n\tBIOCGSTATSOLD                     = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDLT                          = 0x80044276\n\tBIOCSETF                          = 0x80084267\n\tBIOCSETIF                         = 0x8090426c\n\tBIOCSFEEDBACK                     = 0x8004427d\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRTIMEOUT                     = 0x800c427a\n\tBIOCSSEESENT                      = 0x80044279\n\tBIOCSTCPF                         = 0x80084272\n\tBIOCSUDPF                         = 0x80084273\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALIGNMENT32                   = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DFLTBUFSIZE                   = 0x100000\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x1000000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLONE_CSIGNAL                     = 0xff\n\tCLONE_FILES                       = 0x400\n\tCLONE_FS                          = 0x200\n\tCLONE_PID                         = 0x1000\n\tCLONE_PTRACE                      = 0x2000\n\tCLONE_SIGHAND                     = 0x800\n\tCLONE_VFORK                       = 0x4000\n\tCLONE_VM                          = 0x100\n\tCPUSTATES                         = 0x5\n\tCP_IDLE                           = 0x4\n\tCP_INTR                           = 0x3\n\tCP_NICE                           = 0x1\n\tCP_SYS                            = 0x2\n\tCP_USER                           = 0x0\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x10000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0x14\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tCTL_QUERY                         = -0x2\n\tDIOCBSFLUSH                       = 0x20006478\n\tDLT_A429                          = 0xb8\n\tDLT_A653_ICM                      = 0xb9\n\tDLT_AIRONET_HEADER                = 0x78\n\tDLT_AOS                           = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394        = 0x8a\n\tDLT_ARCNET                        = 0x7\n\tDLT_ARCNET_LINUX                  = 0x81\n\tDLT_ATM_CLIP                      = 0x13\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AURORA                        = 0x7e\n\tDLT_AX25                          = 0x3\n\tDLT_AX25_KISS                     = 0xca\n\tDLT_BACNET_MS_TP                  = 0xa5\n\tDLT_BLUETOOTH_HCI_H4              = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR    = 0xc9\n\tDLT_CAN20B                        = 0xbe\n\tDLT_CAN_SOCKETCAN                 = 0xe3\n\tDLT_CHAOS                         = 0x5\n\tDLT_CISCO_IOS                     = 0x76\n\tDLT_C_HDLC                        = 0x68\n\tDLT_C_HDLC_WITH_DIR               = 0xcd\n\tDLT_DECT                          = 0xdd\n\tDLT_DOCSIS                        = 0x8f\n\tDLT_ECONET                        = 0x73\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0x6d\n\tDLT_ERF                           = 0xc5\n\tDLT_ERF_ETH                       = 0xaf\n\tDLT_ERF_POS                       = 0xb0\n\tDLT_FC_2                          = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS        = 0xe1\n\tDLT_FDDI                          = 0xa\n\tDLT_FLEXRAY                       = 0xd2\n\tDLT_FRELAY                        = 0x6b\n\tDLT_FRELAY_WITH_DIR               = 0xce\n\tDLT_GCOM_SERIAL                   = 0xad\n\tDLT_GCOM_T1E1                     = 0xac\n\tDLT_GPF_F                         = 0xab\n\tDLT_GPF_T                         = 0xaa\n\tDLT_GPRS_LLC                      = 0xa9\n\tDLT_GSMTAP_ABIS                   = 0xda\n\tDLT_GSMTAP_UM                     = 0xd9\n\tDLT_HDLC                          = 0x10\n\tDLT_HHDLC                         = 0x79\n\tDLT_HIPPI                         = 0xf\n\tDLT_IBM_SN                        = 0x92\n\tDLT_IBM_SP                        = 0x91\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS          = 0xa3\n\tDLT_IEEE802_15_4                  = 0xc3\n\tDLT_IEEE802_15_4_LINUX            = 0xbf\n\tDLT_IEEE802_15_4_NONASK_PHY       = 0xd7\n\tDLT_IEEE802_16_MAC_CPS            = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO      = 0xc1\n\tDLT_IPMB                          = 0xc7\n\tDLT_IPMB_LINUX                    = 0xd1\n\tDLT_IPNET                         = 0xe2\n\tDLT_IPV4                          = 0xe4\n\tDLT_IPV6                          = 0xe5\n\tDLT_IP_OVER_FC                    = 0x7a\n\tDLT_JUNIPER_ATM1                  = 0x89\n\tDLT_JUNIPER_ATM2                  = 0x87\n\tDLT_JUNIPER_CHDLC                 = 0xb5\n\tDLT_JUNIPER_ES                    = 0x84\n\tDLT_JUNIPER_ETHER                 = 0xb2\n\tDLT_JUNIPER_FRELAY                = 0xb4\n\tDLT_JUNIPER_GGSN                  = 0x85\n\tDLT_JUNIPER_ISM                   = 0xc2\n\tDLT_JUNIPER_MFR                   = 0x86\n\tDLT_JUNIPER_MLFR                  = 0x83\n\tDLT_JUNIPER_MLPPP                 = 0x82\n\tDLT_JUNIPER_MONITOR               = 0xa4\n\tDLT_JUNIPER_PIC_PEER              = 0xae\n\tDLT_JUNIPER_PPP                   = 0xb3\n\tDLT_JUNIPER_PPPOE                 = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM             = 0xa8\n\tDLT_JUNIPER_SERVICES              = 0x88\n\tDLT_JUNIPER_ST                    = 0xc8\n\tDLT_JUNIPER_VP                    = 0xb7\n\tDLT_LAPB_WITH_DIR                 = 0xcf\n\tDLT_LAPD                          = 0xcb\n\tDLT_LIN                           = 0xd4\n\tDLT_LINUX_EVDEV                   = 0xd8\n\tDLT_LINUX_IRDA                    = 0x90\n\tDLT_LINUX_LAPD                    = 0xb1\n\tDLT_LINUX_SLL                     = 0x71\n\tDLT_LOOP                          = 0x6c\n\tDLT_LTALK                         = 0x72\n\tDLT_MFR                           = 0xb6\n\tDLT_MOST                          = 0xd3\n\tDLT_MPLS                          = 0xdb\n\tDLT_MTP2                          = 0x8c\n\tDLT_MTP2_WITH_PHDR                = 0x8b\n\tDLT_MTP3                          = 0x8d\n\tDLT_NULL                          = 0x0\n\tDLT_PCI_EXP                       = 0x7d\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPI                           = 0xc0\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0xe\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_PPPD                      = 0xa6\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PPP_WITH_DIR                  = 0xcc\n\tDLT_PRISM_HEADER                  = 0x77\n\tDLT_PRONET                        = 0x4\n\tDLT_RAIF1                         = 0xc6\n\tDLT_RAW                           = 0xc\n\tDLT_RAWAF_MASK                    = 0x2240000\n\tDLT_RIO                           = 0x7c\n\tDLT_SCCP                          = 0x8e\n\tDLT_SITA                          = 0xc4\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xd\n\tDLT_SUNATM                        = 0x7b\n\tDLT_SYMANTEC_FIREWALL             = 0x63\n\tDLT_TZSP                          = 0x80\n\tDLT_USB                           = 0xba\n\tDLT_USB_LINUX                     = 0xbd\n\tDLT_USB_LINUX_MMAPPED             = 0xdc\n\tDLT_WIHART                        = 0xdf\n\tDLT_X2E_SERIAL                    = 0xd5\n\tDLT_X2E_XORAYA                    = 0xd6\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tDT_WHT                            = 0xe\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEMUL_LINUX                        = 0x1\n\tEMUL_LINUX32                      = 0x5\n\tEMUL_MAXID                        = 0x6\n\tEN_SW_CTL_INF                     = 0x1000\n\tEN_SW_CTL_PREC                    = 0x300\n\tEN_SW_CTL_ROUND                   = 0xc00\n\tEN_SW_DATACHAIN                   = 0x80\n\tEN_SW_DENORM                      = 0x2\n\tEN_SW_INVOP                       = 0x1\n\tEN_SW_OVERFLOW                    = 0x8\n\tEN_SW_PRECLOSS                    = 0x20\n\tEN_SW_UNDERFLOW                   = 0x10\n\tEN_SW_ZERODIV                     = 0x4\n\tETHERCAP_JUMBO_MTU                = 0x4\n\tETHERCAP_VLAN_HWTAGGING           = 0x2\n\tETHERCAP_VLAN_MTU                 = 0x1\n\tETHERMIN                          = 0x2e\n\tETHERMTU                          = 0x5dc\n\tETHERMTU_JUMBO                    = 0x2328\n\tETHERTYPE_8023                    = 0x4\n\tETHERTYPE_AARP                    = 0x80f3\n\tETHERTYPE_ACCTON                  = 0x8390\n\tETHERTYPE_AEONIC                  = 0x8036\n\tETHERTYPE_ALPHA                   = 0x814a\n\tETHERTYPE_AMBER                   = 0x6008\n\tETHERTYPE_AMOEBA                  = 0x8145\n\tETHERTYPE_APOLLO                  = 0x80f7\n\tETHERTYPE_APOLLODOMAIN            = 0x8019\n\tETHERTYPE_APPLETALK               = 0x809b\n\tETHERTYPE_APPLITEK                = 0x80c7\n\tETHERTYPE_ARGONAUT                = 0x803a\n\tETHERTYPE_ARP                     = 0x806\n\tETHERTYPE_AT                      = 0x809b\n\tETHERTYPE_ATALK                   = 0x809b\n\tETHERTYPE_ATOMIC                  = 0x86df\n\tETHERTYPE_ATT                     = 0x8069\n\tETHERTYPE_ATTSTANFORD             = 0x8008\n\tETHERTYPE_AUTOPHON                = 0x806a\n\tETHERTYPE_AXIS                    = 0x8856\n\tETHERTYPE_BCLOOP                  = 0x9003\n\tETHERTYPE_BOFL                    = 0x8102\n\tETHERTYPE_CABLETRON               = 0x7034\n\tETHERTYPE_CHAOS                   = 0x804\n\tETHERTYPE_COMDESIGN               = 0x806c\n\tETHERTYPE_COMPUGRAPHIC            = 0x806d\n\tETHERTYPE_COUNTERPOINT            = 0x8062\n\tETHERTYPE_CRONUS                  = 0x8004\n\tETHERTYPE_CRONUSVLN               = 0x8003\n\tETHERTYPE_DCA                     = 0x1234\n\tETHERTYPE_DDE                     = 0x807b\n\tETHERTYPE_DEBNI                   = 0xaaaa\n\tETHERTYPE_DECAM                   = 0x8048\n\tETHERTYPE_DECCUST                 = 0x6006\n\tETHERTYPE_DECDIAG                 = 0x6005\n\tETHERTYPE_DECDNS                  = 0x803c\n\tETHERTYPE_DECDTS                  = 0x803e\n\tETHERTYPE_DECEXPER                = 0x6000\n\tETHERTYPE_DECLAST                 = 0x8041\n\tETHERTYPE_DECLTM                  = 0x803f\n\tETHERTYPE_DECMUMPS                = 0x6009\n\tETHERTYPE_DECNETBIOS              = 0x8040\n\tETHERTYPE_DELTACON                = 0x86de\n\tETHERTYPE_DIDDLE                  = 0x4321\n\tETHERTYPE_DLOG1                   = 0x660\n\tETHERTYPE_DLOG2                   = 0x661\n\tETHERTYPE_DN                      = 0x6003\n\tETHERTYPE_DOGFIGHT                = 0x1989\n\tETHERTYPE_DSMD                    = 0x8039\n\tETHERTYPE_ECMA                    = 0x803\n\tETHERTYPE_ENCRYPT                 = 0x803d\n\tETHERTYPE_ES                      = 0x805d\n\tETHERTYPE_EXCELAN                 = 0x8010\n\tETHERTYPE_EXPERDATA               = 0x8049\n\tETHERTYPE_FLIP                    = 0x8146\n\tETHERTYPE_FLOWCONTROL             = 0x8808\n\tETHERTYPE_FRARP                   = 0x808\n\tETHERTYPE_GENDYN                  = 0x8068\n\tETHERTYPE_HAYES                   = 0x8130\n\tETHERTYPE_HIPPI_FP                = 0x8180\n\tETHERTYPE_HITACHI                 = 0x8820\n\tETHERTYPE_HP                      = 0x8005\n\tETHERTYPE_IEEEPUP                 = 0xa00\n\tETHERTYPE_IEEEPUPAT               = 0xa01\n\tETHERTYPE_IMLBL                   = 0x4c42\n\tETHERTYPE_IMLBLDIAG               = 0x424c\n\tETHERTYPE_IP                      = 0x800\n\tETHERTYPE_IPAS                    = 0x876c\n\tETHERTYPE_IPV6                    = 0x86dd\n\tETHERTYPE_IPX                     = 0x8137\n\tETHERTYPE_IPXNEW                  = 0x8037\n\tETHERTYPE_KALPANA                 = 0x8582\n\tETHERTYPE_LANBRIDGE               = 0x8038\n\tETHERTYPE_LANPROBE                = 0x8888\n\tETHERTYPE_LAT                     = 0x6004\n\tETHERTYPE_LBACK                   = 0x9000\n\tETHERTYPE_LITTLE                  = 0x8060\n\tETHERTYPE_LOGICRAFT               = 0x8148\n\tETHERTYPE_LOOPBACK                = 0x9000\n\tETHERTYPE_MATRA                   = 0x807a\n\tETHERTYPE_MAX                     = 0xffff\n\tETHERTYPE_MERIT                   = 0x807c\n\tETHERTYPE_MICP                    = 0x873a\n\tETHERTYPE_MOPDL                   = 0x6001\n\tETHERTYPE_MOPRC                   = 0x6002\n\tETHERTYPE_MOTOROLA                = 0x818d\n\tETHERTYPE_MPLS                    = 0x8847\n\tETHERTYPE_MPLS_MCAST              = 0x8848\n\tETHERTYPE_MUMPS                   = 0x813f\n\tETHERTYPE_NBPCC                   = 0x3c04\n\tETHERTYPE_NBPCLAIM                = 0x3c09\n\tETHERTYPE_NBPCLREQ                = 0x3c05\n\tETHERTYPE_NBPCLRSP                = 0x3c06\n\tETHERTYPE_NBPCREQ                 = 0x3c02\n\tETHERTYPE_NBPCRSP                 = 0x3c03\n\tETHERTYPE_NBPDG                   = 0x3c07\n\tETHERTYPE_NBPDGB                  = 0x3c08\n\tETHERTYPE_NBPDLTE                 = 0x3c0a\n\tETHERTYPE_NBPRAR                  = 0x3c0c\n\tETHERTYPE_NBPRAS                  = 0x3c0b\n\tETHERTYPE_NBPRST                  = 0x3c0d\n\tETHERTYPE_NBPSCD                  = 0x3c01\n\tETHERTYPE_NBPVCD                  = 0x3c00\n\tETHERTYPE_NBS                     = 0x802\n\tETHERTYPE_NCD                     = 0x8149\n\tETHERTYPE_NESTAR                  = 0x8006\n\tETHERTYPE_NETBEUI                 = 0x8191\n\tETHERTYPE_NOVELL                  = 0x8138\n\tETHERTYPE_NS                      = 0x600\n\tETHERTYPE_NSAT                    = 0x601\n\tETHERTYPE_NSCOMPAT                = 0x807\n\tETHERTYPE_NTRAILER                = 0x10\n\tETHERTYPE_OS9                     = 0x7007\n\tETHERTYPE_OS9NET                  = 0x7009\n\tETHERTYPE_PACER                   = 0x80c6\n\tETHERTYPE_PAE                     = 0x888e\n\tETHERTYPE_PCS                     = 0x4242\n\tETHERTYPE_PLANNING                = 0x8044\n\tETHERTYPE_PPP                     = 0x880b\n\tETHERTYPE_PPPOE                   = 0x8864\n\tETHERTYPE_PPPOEDISC               = 0x8863\n\tETHERTYPE_PRIMENTS                = 0x7031\n\tETHERTYPE_PUP                     = 0x200\n\tETHERTYPE_PUPAT                   = 0x200\n\tETHERTYPE_RACAL                   = 0x7030\n\tETHERTYPE_RATIONAL                = 0x8150\n\tETHERTYPE_RAWFR                   = 0x6559\n\tETHERTYPE_RCL                     = 0x1995\n\tETHERTYPE_RDP                     = 0x8739\n\tETHERTYPE_RETIX                   = 0x80f2\n\tETHERTYPE_REVARP                  = 0x8035\n\tETHERTYPE_SCA                     = 0x6007\n\tETHERTYPE_SECTRA                  = 0x86db\n\tETHERTYPE_SECUREDATA              = 0x876d\n\tETHERTYPE_SGITW                   = 0x817e\n\tETHERTYPE_SG_BOUNCE               = 0x8016\n\tETHERTYPE_SG_DIAG                 = 0x8013\n\tETHERTYPE_SG_NETGAMES             = 0x8014\n\tETHERTYPE_SG_RESV                 = 0x8015\n\tETHERTYPE_SIMNET                  = 0x5208\n\tETHERTYPE_SLOWPROTOCOLS           = 0x8809\n\tETHERTYPE_SNA                     = 0x80d5\n\tETHERTYPE_SNMP                    = 0x814c\n\tETHERTYPE_SONIX                   = 0xfaf5\n\tETHERTYPE_SPIDER                  = 0x809f\n\tETHERTYPE_SPRITE                  = 0x500\n\tETHERTYPE_STP                     = 0x8181\n\tETHERTYPE_TALARIS                 = 0x812b\n\tETHERTYPE_TALARISMC               = 0x852b\n\tETHERTYPE_TCPCOMP                 = 0x876b\n\tETHERTYPE_TCPSM                   = 0x9002\n\tETHERTYPE_TEC                     = 0x814f\n\tETHERTYPE_TIGAN                   = 0x802f\n\tETHERTYPE_TRAIL                   = 0x1000\n\tETHERTYPE_TRANSETHER              = 0x6558\n\tETHERTYPE_TYMSHARE                = 0x802e\n\tETHERTYPE_UBBST                   = 0x7005\n\tETHERTYPE_UBDEBUG                 = 0x900\n\tETHERTYPE_UBDIAGLOOP              = 0x7002\n\tETHERTYPE_UBDL                    = 0x7000\n\tETHERTYPE_UBNIU                   = 0x7001\n\tETHERTYPE_UBNMC                   = 0x7003\n\tETHERTYPE_VALID                   = 0x1600\n\tETHERTYPE_VARIAN                  = 0x80dd\n\tETHERTYPE_VAXELN                  = 0x803b\n\tETHERTYPE_VEECO                   = 0x8067\n\tETHERTYPE_VEXP                    = 0x805b\n\tETHERTYPE_VGLAB                   = 0x8131\n\tETHERTYPE_VINES                   = 0xbad\n\tETHERTYPE_VINESECHO               = 0xbaf\n\tETHERTYPE_VINESLOOP               = 0xbae\n\tETHERTYPE_VITAL                   = 0xff00\n\tETHERTYPE_VLAN                    = 0x8100\n\tETHERTYPE_VLTLMAN                 = 0x8080\n\tETHERTYPE_VPROD                   = 0x805c\n\tETHERTYPE_VURESERVED              = 0x8147\n\tETHERTYPE_WATERLOO                = 0x8130\n\tETHERTYPE_WELLFLEET               = 0x8103\n\tETHERTYPE_X25                     = 0x805\n\tETHERTYPE_X75                     = 0x801\n\tETHERTYPE_XNSSM                   = 0x9001\n\tETHERTYPE_XTP                     = 0x817d\n\tETHER_ADDR_LEN                    = 0x6\n\tETHER_CRC_LEN                     = 0x4\n\tETHER_CRC_POLY_BE                 = 0x4c11db6\n\tETHER_CRC_POLY_LE                 = 0xedb88320\n\tETHER_HDR_LEN                     = 0xe\n\tETHER_MAX_LEN                     = 0x5ee\n\tETHER_MAX_LEN_JUMBO               = 0x233a\n\tETHER_MIN_LEN                     = 0x40\n\tETHER_PPPOE_ENCAP_LEN             = 0x8\n\tETHER_TYPE_LEN                    = 0x2\n\tETHER_VLAN_ENCAP_LEN              = 0x4\n\tEVFILT_AIO                        = 0x2\n\tEVFILT_PROC                       = 0x4\n\tEVFILT_READ                       = 0x0\n\tEVFILT_SIGNAL                     = 0x5\n\tEVFILT_SYSCOUNT                   = 0x7\n\tEVFILT_TIMER                      = 0x6\n\tEVFILT_VNODE                      = 0x3\n\tEVFILT_WRITE                      = 0x1\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTATTR_CMD_START                 = 0x1\n\tEXTATTR_CMD_STOP                  = 0x2\n\tEXTATTR_NAMESPACE_SYSTEM          = 0x2\n\tEXTATTR_NAMESPACE_USER            = 0x1\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x100\n\tFLUSHO                            = 0x800000\n\tF_CLOSEM                          = 0xa\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0xc\n\tF_FSCTL                           = -0x80000000\n\tF_FSDIRMASK                       = 0x70000000\n\tF_FSIN                            = 0x10000000\n\tF_FSINOUT                         = 0x30000000\n\tF_FSOUT                           = 0x20000000\n\tF_FSPRIV                          = 0x8000\n\tF_FSVOID                          = 0x40000000\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETNOSIGPIPE                    = 0xd\n\tF_GETOWN                          = 0x5\n\tF_MAXFD                           = 0xb\n\tF_OK                              = 0x0\n\tF_PARAM_MASK                      = 0xfff\n\tF_PARAM_MAX                       = 0xfff\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETNOSIGPIPE                    = 0xe\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFA_ROUTE                         = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x8f52\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf8\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DOCSCABLEUPSTREAMCHANNEL      = 0xcd\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ECONET                        = 0xce\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf2\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INFINIBAND                    = 0xc7\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LINEGROUP                     = 0xd2\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_PON155                        = 0xcf\n\tIFT_PON622                        = 0xd0\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPATM                       = 0xc5\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf1\n\tIFT_Q2931                         = 0xc9\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SIPSIG                        = 0xcc\n\tIFT_SIPTG                         = 0xcb\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0xd7\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TELINK                        = 0xc8\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VIRTUALTG                     = 0xca\n\tIFT_VOICEDID                      = 0xd5\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEEMFGD                    = 0xd3\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFGDEANA                  = 0xd4\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERCABLE                = 0xc6\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_IPV6_ICMP                 = 0x3a\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x34\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_VRRP                      = 0x70\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPSEC_POLICY                 = 0x1c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_EF                             = 0x8000\n\tIP_ERRORMTU                       = 0x15\n\tIP_HDRINCL                        = 0x2\n\tIP_IPSEC_POLICY                   = 0x16\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0x14\n\tIP_MF                             = 0x2000\n\tIP_MINFRAGSIZE                    = 0x45\n\tIP_MINTTL                         = 0x18\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVIF                         = 0x14\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVTTL                        = 0x17\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x6\n\tMADV_NORMAL                       = 0x0\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SPACEAVAIL                   = 0x5\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ALIGNMENT_16MB                = 0x18000000\n\tMAP_ALIGNMENT_1TB                 = 0x28000000\n\tMAP_ALIGNMENT_256TB               = 0x30000000\n\tMAP_ALIGNMENT_4GB                 = 0x20000000\n\tMAP_ALIGNMENT_64KB                = 0x10000000\n\tMAP_ALIGNMENT_64PB                = 0x38000000\n\tMAP_ALIGNMENT_MASK                = -0x1000000\n\tMAP_ALIGNMENT_SHIFT               = 0x18\n\tMAP_ANON                          = 0x1000\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_HASSEMAPHORE                  = 0x200\n\tMAP_INHERIT                       = 0x80\n\tMAP_INHERIT_COPY                  = 0x1\n\tMAP_INHERIT_DEFAULT               = 0x1\n\tMAP_INHERIT_DONATE_COPY           = 0x3\n\tMAP_INHERIT_NONE                  = 0x2\n\tMAP_INHERIT_SHARE                 = 0x0\n\tMAP_NORESERVE                     = 0x40\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_SHARED                        = 0x1\n\tMAP_STACK                         = 0x2000\n\tMAP_TRYFIXED                      = 0x400\n\tMAP_WIRED                         = 0x800\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_BASIC_FLAGS                   = 0xe782807f\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DISCARD                       = 0x800000\n\tMNT_EXKERB                        = 0x800\n\tMNT_EXNORESPORT                   = 0x8000000\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXPUBLIC                      = 0x10000000\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_EXTATTR                       = 0x1000000\n\tMNT_FORCE                         = 0x80000\n\tMNT_GETARGS                       = 0x400000\n\tMNT_IGNORE                        = 0x100000\n\tMNT_LAZY                          = 0x3\n\tMNT_LOCAL                         = 0x1000\n\tMNT_LOG                           = 0x2000000\n\tMNT_NOATIME                       = 0x4000000\n\tMNT_NOCOREDUMP                    = 0x8000\n\tMNT_NODEV                         = 0x10\n\tMNT_NODEVMTIME                    = 0x40000000\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOWAIT                        = 0x2\n\tMNT_OP_FLAGS                      = 0x4d0000\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELATIME                      = 0x20000\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x80000000\n\tMNT_SYMPERM                       = 0x20000000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UNION                         = 0x20\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0xff90ffff\n\tMNT_WAIT                          = 0x1\n\tMSG_BCAST                         = 0x100\n\tMSG_CMSG_CLOEXEC                  = 0x800\n\tMSG_CONTROLMBUF                   = 0x2000000\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOR                           = 0x8\n\tMSG_IOVUSRSPACE                   = 0x4000000\n\tMSG_LENUSRSPACE                   = 0x8000000\n\tMSG_MCAST                         = 0x200\n\tMSG_NAMEMBUF                      = 0x1000000\n\tMSG_NBIO                          = 0x1000\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_TRUNC                         = 0x10\n\tMSG_USERFLAGS                     = 0xffffff\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x2\n\tMS_SYNC                           = 0x4\n\tNAME_MAX                          = 0x1ff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x5\n\tNET_RT_MAXID                      = 0x6\n\tNET_RT_OIFLIST                    = 0x4\n\tNET_RT_OOIFLIST                   = 0x3\n\tNFDBITS                           = 0x20\n\tNOFLSH                            = 0x80000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOFIOGETBMAP                       = 0xc004667a\n\tONLCR                             = 0x2\n\tONLRET                            = 0x40\n\tONOCR                             = 0x20\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tO_ACCMODE                         = 0x3\n\tO_ALT_IO                          = 0x40000\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x400000\n\tO_CREAT                           = 0x200\n\tO_DIRECT                          = 0x80000\n\tO_DIRECTORY                       = 0x200000\n\tO_DSYNC                           = 0x10000\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_NOSIGPIPE                       = 0x1000000\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_RSYNC                           = 0x20000\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPRI_IOFLUSH                       = 0x7c\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tRLIMIT_AS                         = 0xa\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_MAX                          = 0x9\n\tRTAX_NETMASK                      = 0x2\n\tRTAX_TAG                          = 0x8\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_NETMASK                       = 0x4\n\tRTA_TAG                           = 0x100\n\tRTF_ANNOUNCE                      = 0x20000\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_CLONED                        = 0x2000\n\tRTF_CLONING                       = 0x100\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_MASK                          = 0x80\n\tRTF_MODIFIED                      = 0x20\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_REJECT                        = 0x8\n\tRTF_SRC                           = 0x10000\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_CHGADDR                       = 0x15\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_GET                           = 0x4\n\tRTM_IEEE80211                     = 0x11\n\tRTM_IFANNOUNCE                    = 0x10\n\tRTM_IFINFO                        = 0x14\n\tRTM_LLINFO_UPD                    = 0x13\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_OIFINFO                       = 0xf\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRTM_OOIFINFO                      = 0xe\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_SETGATE                       = 0x12\n\tRTM_VERSION                       = 0x4\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tSCM_CREDS                         = 0x4\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x8\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80906931\n\tSIOCADDRT                         = 0x8030720a\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCALIFADDR                      = 0x8118691c\n\tSIOCATMARK                        = 0x40047307\n\tSIOCDELMULTI                      = 0x80906932\n\tSIOCDELRT                         = 0x8030720b\n\tSIOCDIFADDR                       = 0x80906919\n\tSIOCDIFPHYADDR                    = 0x80906949\n\tSIOCDLIFADDR                      = 0x8118691e\n\tSIOCGDRVSPEC                      = 0xc01c697b\n\tSIOCGETPFSYNC                     = 0xc09069f8\n\tSIOCGETSGCNT                      = 0xc0147534\n\tSIOCGETVIFCNT                     = 0xc0147533\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0906921\n\tSIOCGIFADDRPREF                   = 0xc0946920\n\tSIOCGIFALIAS                      = 0xc040691b\n\tSIOCGIFBRDADDR                    = 0xc0906923\n\tSIOCGIFCAP                        = 0xc0206976\n\tSIOCGIFCONF                       = 0xc0086926\n\tSIOCGIFDATA                       = 0xc0946985\n\tSIOCGIFDLT                        = 0xc0906977\n\tSIOCGIFDSTADDR                    = 0xc0906922\n\tSIOCGIFFLAGS                      = 0xc0906911\n\tSIOCGIFGENERIC                    = 0xc090693a\n\tSIOCGIFMEDIA                      = 0xc0286936\n\tSIOCGIFMETRIC                     = 0xc0906917\n\tSIOCGIFMTU                        = 0xc090697e\n\tSIOCGIFNETMASK                    = 0xc0906925\n\tSIOCGIFPDSTADDR                   = 0xc0906948\n\tSIOCGIFPSRCADDR                   = 0xc0906947\n\tSIOCGLIFADDR                      = 0xc118691d\n\tSIOCGLIFPHYADDR                   = 0xc118694b\n\tSIOCGLINKSTR                      = 0xc01c6987\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGVH                           = 0xc0906983\n\tSIOCIFCREATE                      = 0x8090697a\n\tSIOCIFDESTROY                     = 0x80906979\n\tSIOCIFGCLONERS                    = 0xc00c6978\n\tSIOCINITIFADDR                    = 0xc0446984\n\tSIOCSDRVSPEC                      = 0x801c697b\n\tSIOCSETPFSYNC                     = 0x809069f7\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8090690c\n\tSIOCSIFADDRPREF                   = 0x8094691f\n\tSIOCSIFBRDADDR                    = 0x80906913\n\tSIOCSIFCAP                        = 0x80206975\n\tSIOCSIFDSTADDR                    = 0x8090690e\n\tSIOCSIFFLAGS                      = 0x80906910\n\tSIOCSIFGENERIC                    = 0x80906939\n\tSIOCSIFMEDIA                      = 0xc0906935\n\tSIOCSIFMETRIC                     = 0x80906918\n\tSIOCSIFMTU                        = 0x8090697f\n\tSIOCSIFNETMASK                    = 0x80906916\n\tSIOCSIFPHYADDR                    = 0x80406946\n\tSIOCSLIFPHYADDR                   = 0x8118694a\n\tSIOCSLINKSTR                      = 0x801c6988\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSIOCSVH                           = 0xc0906982\n\tSIOCZIFDATA                       = 0xc0946986\n\tSOCK_CLOEXEC                      = 0x10000000\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_FLAGS_MASK                   = 0xf0000000\n\tSOCK_NONBLOCK                     = 0x20000000\n\tSOCK_NOSIGPIPE                    = 0x40000000\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_ACCEPTFILTER                   = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NOHEADER                       = 0x100a\n\tSO_NOSIGPIPE                      = 0x800\n\tSO_OOBINLINE                      = 0x100\n\tSO_OVERFLOWED                     = 0x1009\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x100c\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x100b\n\tSO_TIMESTAMP                      = 0x2000\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tSYSCTL_VERSION                    = 0x1000000\n\tSYSCTL_VERS_0                     = 0x0\n\tSYSCTL_VERS_1                     = 0x1000000\n\tSYSCTL_VERS_MASK                  = 0xff000000\n\tS_ARCH1                           = 0x10000\n\tS_ARCH2                           = 0x20000\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IFWHT                           = 0xe000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tS_LOGIN_SET                       = 0x1\n\tTCIFLUSH                          = 0x1\n\tTCIOFLUSH                         = 0x3\n\tTCOFLUSH                          = 0x2\n\tTCP_CONGCTL                       = 0x20\n\tTCP_KEEPCNT                       = 0x6\n\tTCP_KEEPIDLE                      = 0x3\n\tTCP_KEEPINIT                      = 0x7\n\tTCP_KEEPINTVL                     = 0x5\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MD5SIG                        = 0x10\n\tTCP_MINMSS                        = 0xd8\n\tTCP_MSS                           = 0x218\n\tTCP_NODELAY                       = 0x1\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDCDTIMESTAMP                  = 0x400c7458\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLAG_CDTRCTS                  = 0x10\n\tTIOCFLAG_CLOCAL                   = 0x2\n\tTIOCFLAG_CRTSCTS                  = 0x4\n\tTIOCFLAG_MDMBUF                   = 0x8\n\tTIOCFLAG_SOFTCAR                  = 0x1\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGFLAGS                        = 0x4004745d\n\tTIOCGLINED                        = 0x40207442\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGQSIZE                        = 0x40047481\n\tTIOCGRANTPT                       = 0x20007447\n\tTIOCGSID                          = 0x40047463\n\tTIOCGSIZE                         = 0x40087468\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCPTMGET                        = 0x40287446\n\tTIOCPTSNAME                       = 0x40287448\n\tTIOCRCVFRAME                      = 0x80047445\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSFLAGS                        = 0x8004745c\n\tTIOCSIG                           = 0x2000745f\n\tTIOCSLINED                        = 0x80207443\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSQSIZE                        = 0x80047480\n\tTIOCSSIZE                         = 0x80087467\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x80047465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCUCNTL                         = 0x80047466\n\tTIOCXMTFRAME                      = 0x80047444\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWALL                              = 0x8\n\tWALLSIG                           = 0x8\n\tWALTSIG                           = 0x4\n\tWCLONE                            = 0x4\n\tWCOREFLAG                         = 0x80\n\tWNOHANG                           = 0x1\n\tWNOWAIT                           = 0x10000\n\tWNOZOMBIE                         = 0x20000\n\tWOPTSCHECKED                      = 0x40000\n\tWSTOPPED                          = 0x7f\n\tWUNTRACED                         = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x58)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x57)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x52)\n\tEILSEQ          = syscall.Errno(0x55)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x60)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5e)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x5d)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODATA         = syscall.Errno(0x59)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x5f)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x53)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x5a)\n\tENOSTR          = syscall.Errno(0x5b)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x56)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x60)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIME           = syscall.Errno(0x5c)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x20)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large or too small\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol option not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"connection timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIDRM\", \"identifier removed\"},\n\t{83, \"ENOMSG\", \"no message of desired type\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"EILSEQ\", \"illegal byte sequence\"},\n\t{86, \"ENOTSUP\", \"not supported\"},\n\t{87, \"ECANCELED\", \"operation Canceled\"},\n\t{88, \"EBADMSG\", \"bad or Corrupt message\"},\n\t{89, \"ENODATA\", \"no message available\"},\n\t{90, \"ENOSR\", \"no STREAM resources\"},\n\t{91, \"ENOSTR\", \"not a STREAM\"},\n\t{92, \"ETIME\", \"STREAM ioctl timeout\"},\n\t{93, \"ENOATTR\", \"attribute not found\"},\n\t{94, \"EMULTIHOP\", \"multihop attempted\"},\n\t{95, \"ENOLINK\", \"link has been severed\"},\n\t{96, \"ELAST\", \"protocol error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"stopped (signal)\"},\n\t{18, \"SIGTSTP\", \"stopped\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGPWR\", \"power fail/restart\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,netbsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_ARP                            = 0x1c\n\tAF_BLUETOOTH                      = 0x1f\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_HYLINK                         = 0xf\n\tAF_IEEE80211                      = 0x20\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x18\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x23\n\tAF_MPLS                           = 0x21\n\tAF_NATM                           = 0x1b\n\tAF_NS                             = 0x6\n\tAF_OROUTE                         = 0x11\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x22\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tARPHRD_ARCNET                     = 0x7\n\tARPHRD_ETHER                      = 0x1\n\tARPHRD_FRELAY                     = 0xf\n\tARPHRD_IEEE1394                   = 0x18\n\tARPHRD_IEEE802                    = 0x6\n\tARPHRD_STRIP                      = 0x17\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB460800                           = 0x70800\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB921600                           = 0xe1000\n\tB9600                             = 0x2580\n\tBIOCFEEDBACK                      = 0x8004427d\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc0104277\n\tBIOCGETIF                         = 0x4090426b\n\tBIOCGFEEDBACK                     = 0x4004427c\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRTIMEOUT                     = 0x4010427b\n\tBIOCGSEESENT                      = 0x40044278\n\tBIOCGSTATS                        = 0x4080426f\n\tBIOCGSTATSOLD                     = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDLT                          = 0x80044276\n\tBIOCSETF                          = 0x80104267\n\tBIOCSETIF                         = 0x8090426c\n\tBIOCSFEEDBACK                     = 0x8004427d\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRTIMEOUT                     = 0x8010427a\n\tBIOCSSEESENT                      = 0x80044279\n\tBIOCSTCPF                         = 0x80104272\n\tBIOCSUDPF                         = 0x80104273\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x8\n\tBPF_ALIGNMENT32                   = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DFLTBUFSIZE                   = 0x100000\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x1000000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLONE_CSIGNAL                     = 0xff\n\tCLONE_FILES                       = 0x400\n\tCLONE_FS                          = 0x200\n\tCLONE_PID                         = 0x1000\n\tCLONE_PTRACE                      = 0x2000\n\tCLONE_SIGHAND                     = 0x800\n\tCLONE_VFORK                       = 0x4000\n\tCLONE_VM                          = 0x100\n\tCPUSTATES                         = 0x5\n\tCP_IDLE                           = 0x4\n\tCP_INTR                           = 0x3\n\tCP_NICE                           = 0x1\n\tCP_SYS                            = 0x2\n\tCP_USER                           = 0x0\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x10000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0x14\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tCTL_QUERY                         = -0x2\n\tDIOCBSFLUSH                       = 0x20006478\n\tDLT_A429                          = 0xb8\n\tDLT_A653_ICM                      = 0xb9\n\tDLT_AIRONET_HEADER                = 0x78\n\tDLT_AOS                           = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394        = 0x8a\n\tDLT_ARCNET                        = 0x7\n\tDLT_ARCNET_LINUX                  = 0x81\n\tDLT_ATM_CLIP                      = 0x13\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AURORA                        = 0x7e\n\tDLT_AX25                          = 0x3\n\tDLT_AX25_KISS                     = 0xca\n\tDLT_BACNET_MS_TP                  = 0xa5\n\tDLT_BLUETOOTH_HCI_H4              = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR    = 0xc9\n\tDLT_CAN20B                        = 0xbe\n\tDLT_CAN_SOCKETCAN                 = 0xe3\n\tDLT_CHAOS                         = 0x5\n\tDLT_CISCO_IOS                     = 0x76\n\tDLT_C_HDLC                        = 0x68\n\tDLT_C_HDLC_WITH_DIR               = 0xcd\n\tDLT_DECT                          = 0xdd\n\tDLT_DOCSIS                        = 0x8f\n\tDLT_ECONET                        = 0x73\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0x6d\n\tDLT_ERF                           = 0xc5\n\tDLT_ERF_ETH                       = 0xaf\n\tDLT_ERF_POS                       = 0xb0\n\tDLT_FC_2                          = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS        = 0xe1\n\tDLT_FDDI                          = 0xa\n\tDLT_FLEXRAY                       = 0xd2\n\tDLT_FRELAY                        = 0x6b\n\tDLT_FRELAY_WITH_DIR               = 0xce\n\tDLT_GCOM_SERIAL                   = 0xad\n\tDLT_GCOM_T1E1                     = 0xac\n\tDLT_GPF_F                         = 0xab\n\tDLT_GPF_T                         = 0xaa\n\tDLT_GPRS_LLC                      = 0xa9\n\tDLT_GSMTAP_ABIS                   = 0xda\n\tDLT_GSMTAP_UM                     = 0xd9\n\tDLT_HDLC                          = 0x10\n\tDLT_HHDLC                         = 0x79\n\tDLT_HIPPI                         = 0xf\n\tDLT_IBM_SN                        = 0x92\n\tDLT_IBM_SP                        = 0x91\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS          = 0xa3\n\tDLT_IEEE802_15_4                  = 0xc3\n\tDLT_IEEE802_15_4_LINUX            = 0xbf\n\tDLT_IEEE802_15_4_NONASK_PHY       = 0xd7\n\tDLT_IEEE802_16_MAC_CPS            = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO      = 0xc1\n\tDLT_IPMB                          = 0xc7\n\tDLT_IPMB_LINUX                    = 0xd1\n\tDLT_IPNET                         = 0xe2\n\tDLT_IPV4                          = 0xe4\n\tDLT_IPV6                          = 0xe5\n\tDLT_IP_OVER_FC                    = 0x7a\n\tDLT_JUNIPER_ATM1                  = 0x89\n\tDLT_JUNIPER_ATM2                  = 0x87\n\tDLT_JUNIPER_CHDLC                 = 0xb5\n\tDLT_JUNIPER_ES                    = 0x84\n\tDLT_JUNIPER_ETHER                 = 0xb2\n\tDLT_JUNIPER_FRELAY                = 0xb4\n\tDLT_JUNIPER_GGSN                  = 0x85\n\tDLT_JUNIPER_ISM                   = 0xc2\n\tDLT_JUNIPER_MFR                   = 0x86\n\tDLT_JUNIPER_MLFR                  = 0x83\n\tDLT_JUNIPER_MLPPP                 = 0x82\n\tDLT_JUNIPER_MONITOR               = 0xa4\n\tDLT_JUNIPER_PIC_PEER              = 0xae\n\tDLT_JUNIPER_PPP                   = 0xb3\n\tDLT_JUNIPER_PPPOE                 = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM             = 0xa8\n\tDLT_JUNIPER_SERVICES              = 0x88\n\tDLT_JUNIPER_ST                    = 0xc8\n\tDLT_JUNIPER_VP                    = 0xb7\n\tDLT_LAPB_WITH_DIR                 = 0xcf\n\tDLT_LAPD                          = 0xcb\n\tDLT_LIN                           = 0xd4\n\tDLT_LINUX_EVDEV                   = 0xd8\n\tDLT_LINUX_IRDA                    = 0x90\n\tDLT_LINUX_LAPD                    = 0xb1\n\tDLT_LINUX_SLL                     = 0x71\n\tDLT_LOOP                          = 0x6c\n\tDLT_LTALK                         = 0x72\n\tDLT_MFR                           = 0xb6\n\tDLT_MOST                          = 0xd3\n\tDLT_MPLS                          = 0xdb\n\tDLT_MTP2                          = 0x8c\n\tDLT_MTP2_WITH_PHDR                = 0x8b\n\tDLT_MTP3                          = 0x8d\n\tDLT_NULL                          = 0x0\n\tDLT_PCI_EXP                       = 0x7d\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPI                           = 0xc0\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0xe\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_PPPD                      = 0xa6\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PPP_WITH_DIR                  = 0xcc\n\tDLT_PRISM_HEADER                  = 0x77\n\tDLT_PRONET                        = 0x4\n\tDLT_RAIF1                         = 0xc6\n\tDLT_RAW                           = 0xc\n\tDLT_RAWAF_MASK                    = 0x2240000\n\tDLT_RIO                           = 0x7c\n\tDLT_SCCP                          = 0x8e\n\tDLT_SITA                          = 0xc4\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xd\n\tDLT_SUNATM                        = 0x7b\n\tDLT_SYMANTEC_FIREWALL             = 0x63\n\tDLT_TZSP                          = 0x80\n\tDLT_USB                           = 0xba\n\tDLT_USB_LINUX                     = 0xbd\n\tDLT_USB_LINUX_MMAPPED             = 0xdc\n\tDLT_WIHART                        = 0xdf\n\tDLT_X2E_SERIAL                    = 0xd5\n\tDLT_X2E_XORAYA                    = 0xd6\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tDT_WHT                            = 0xe\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEMUL_LINUX                        = 0x1\n\tEMUL_LINUX32                      = 0x5\n\tEMUL_MAXID                        = 0x6\n\tETHERCAP_JUMBO_MTU                = 0x4\n\tETHERCAP_VLAN_HWTAGGING           = 0x2\n\tETHERCAP_VLAN_MTU                 = 0x1\n\tETHERMIN                          = 0x2e\n\tETHERMTU                          = 0x5dc\n\tETHERMTU_JUMBO                    = 0x2328\n\tETHERTYPE_8023                    = 0x4\n\tETHERTYPE_AARP                    = 0x80f3\n\tETHERTYPE_ACCTON                  = 0x8390\n\tETHERTYPE_AEONIC                  = 0x8036\n\tETHERTYPE_ALPHA                   = 0x814a\n\tETHERTYPE_AMBER                   = 0x6008\n\tETHERTYPE_AMOEBA                  = 0x8145\n\tETHERTYPE_APOLLO                  = 0x80f7\n\tETHERTYPE_APOLLODOMAIN            = 0x8019\n\tETHERTYPE_APPLETALK               = 0x809b\n\tETHERTYPE_APPLITEK                = 0x80c7\n\tETHERTYPE_ARGONAUT                = 0x803a\n\tETHERTYPE_ARP                     = 0x806\n\tETHERTYPE_AT                      = 0x809b\n\tETHERTYPE_ATALK                   = 0x809b\n\tETHERTYPE_ATOMIC                  = 0x86df\n\tETHERTYPE_ATT                     = 0x8069\n\tETHERTYPE_ATTSTANFORD             = 0x8008\n\tETHERTYPE_AUTOPHON                = 0x806a\n\tETHERTYPE_AXIS                    = 0x8856\n\tETHERTYPE_BCLOOP                  = 0x9003\n\tETHERTYPE_BOFL                    = 0x8102\n\tETHERTYPE_CABLETRON               = 0x7034\n\tETHERTYPE_CHAOS                   = 0x804\n\tETHERTYPE_COMDESIGN               = 0x806c\n\tETHERTYPE_COMPUGRAPHIC            = 0x806d\n\tETHERTYPE_COUNTERPOINT            = 0x8062\n\tETHERTYPE_CRONUS                  = 0x8004\n\tETHERTYPE_CRONUSVLN               = 0x8003\n\tETHERTYPE_DCA                     = 0x1234\n\tETHERTYPE_DDE                     = 0x807b\n\tETHERTYPE_DEBNI                   = 0xaaaa\n\tETHERTYPE_DECAM                   = 0x8048\n\tETHERTYPE_DECCUST                 = 0x6006\n\tETHERTYPE_DECDIAG                 = 0x6005\n\tETHERTYPE_DECDNS                  = 0x803c\n\tETHERTYPE_DECDTS                  = 0x803e\n\tETHERTYPE_DECEXPER                = 0x6000\n\tETHERTYPE_DECLAST                 = 0x8041\n\tETHERTYPE_DECLTM                  = 0x803f\n\tETHERTYPE_DECMUMPS                = 0x6009\n\tETHERTYPE_DECNETBIOS              = 0x8040\n\tETHERTYPE_DELTACON                = 0x86de\n\tETHERTYPE_DIDDLE                  = 0x4321\n\tETHERTYPE_DLOG1                   = 0x660\n\tETHERTYPE_DLOG2                   = 0x661\n\tETHERTYPE_DN                      = 0x6003\n\tETHERTYPE_DOGFIGHT                = 0x1989\n\tETHERTYPE_DSMD                    = 0x8039\n\tETHERTYPE_ECMA                    = 0x803\n\tETHERTYPE_ENCRYPT                 = 0x803d\n\tETHERTYPE_ES                      = 0x805d\n\tETHERTYPE_EXCELAN                 = 0x8010\n\tETHERTYPE_EXPERDATA               = 0x8049\n\tETHERTYPE_FLIP                    = 0x8146\n\tETHERTYPE_FLOWCONTROL             = 0x8808\n\tETHERTYPE_FRARP                   = 0x808\n\tETHERTYPE_GENDYN                  = 0x8068\n\tETHERTYPE_HAYES                   = 0x8130\n\tETHERTYPE_HIPPI_FP                = 0x8180\n\tETHERTYPE_HITACHI                 = 0x8820\n\tETHERTYPE_HP                      = 0x8005\n\tETHERTYPE_IEEEPUP                 = 0xa00\n\tETHERTYPE_IEEEPUPAT               = 0xa01\n\tETHERTYPE_IMLBL                   = 0x4c42\n\tETHERTYPE_IMLBLDIAG               = 0x424c\n\tETHERTYPE_IP                      = 0x800\n\tETHERTYPE_IPAS                    = 0x876c\n\tETHERTYPE_IPV6                    = 0x86dd\n\tETHERTYPE_IPX                     = 0x8137\n\tETHERTYPE_IPXNEW                  = 0x8037\n\tETHERTYPE_KALPANA                 = 0x8582\n\tETHERTYPE_LANBRIDGE               = 0x8038\n\tETHERTYPE_LANPROBE                = 0x8888\n\tETHERTYPE_LAT                     = 0x6004\n\tETHERTYPE_LBACK                   = 0x9000\n\tETHERTYPE_LITTLE                  = 0x8060\n\tETHERTYPE_LOGICRAFT               = 0x8148\n\tETHERTYPE_LOOPBACK                = 0x9000\n\tETHERTYPE_MATRA                   = 0x807a\n\tETHERTYPE_MAX                     = 0xffff\n\tETHERTYPE_MERIT                   = 0x807c\n\tETHERTYPE_MICP                    = 0x873a\n\tETHERTYPE_MOPDL                   = 0x6001\n\tETHERTYPE_MOPRC                   = 0x6002\n\tETHERTYPE_MOTOROLA                = 0x818d\n\tETHERTYPE_MPLS                    = 0x8847\n\tETHERTYPE_MPLS_MCAST              = 0x8848\n\tETHERTYPE_MUMPS                   = 0x813f\n\tETHERTYPE_NBPCC                   = 0x3c04\n\tETHERTYPE_NBPCLAIM                = 0x3c09\n\tETHERTYPE_NBPCLREQ                = 0x3c05\n\tETHERTYPE_NBPCLRSP                = 0x3c06\n\tETHERTYPE_NBPCREQ                 = 0x3c02\n\tETHERTYPE_NBPCRSP                 = 0x3c03\n\tETHERTYPE_NBPDG                   = 0x3c07\n\tETHERTYPE_NBPDGB                  = 0x3c08\n\tETHERTYPE_NBPDLTE                 = 0x3c0a\n\tETHERTYPE_NBPRAR                  = 0x3c0c\n\tETHERTYPE_NBPRAS                  = 0x3c0b\n\tETHERTYPE_NBPRST                  = 0x3c0d\n\tETHERTYPE_NBPSCD                  = 0x3c01\n\tETHERTYPE_NBPVCD                  = 0x3c00\n\tETHERTYPE_NBS                     = 0x802\n\tETHERTYPE_NCD                     = 0x8149\n\tETHERTYPE_NESTAR                  = 0x8006\n\tETHERTYPE_NETBEUI                 = 0x8191\n\tETHERTYPE_NOVELL                  = 0x8138\n\tETHERTYPE_NS                      = 0x600\n\tETHERTYPE_NSAT                    = 0x601\n\tETHERTYPE_NSCOMPAT                = 0x807\n\tETHERTYPE_NTRAILER                = 0x10\n\tETHERTYPE_OS9                     = 0x7007\n\tETHERTYPE_OS9NET                  = 0x7009\n\tETHERTYPE_PACER                   = 0x80c6\n\tETHERTYPE_PAE                     = 0x888e\n\tETHERTYPE_PCS                     = 0x4242\n\tETHERTYPE_PLANNING                = 0x8044\n\tETHERTYPE_PPP                     = 0x880b\n\tETHERTYPE_PPPOE                   = 0x8864\n\tETHERTYPE_PPPOEDISC               = 0x8863\n\tETHERTYPE_PRIMENTS                = 0x7031\n\tETHERTYPE_PUP                     = 0x200\n\tETHERTYPE_PUPAT                   = 0x200\n\tETHERTYPE_RACAL                   = 0x7030\n\tETHERTYPE_RATIONAL                = 0x8150\n\tETHERTYPE_RAWFR                   = 0x6559\n\tETHERTYPE_RCL                     = 0x1995\n\tETHERTYPE_RDP                     = 0x8739\n\tETHERTYPE_RETIX                   = 0x80f2\n\tETHERTYPE_REVARP                  = 0x8035\n\tETHERTYPE_SCA                     = 0x6007\n\tETHERTYPE_SECTRA                  = 0x86db\n\tETHERTYPE_SECUREDATA              = 0x876d\n\tETHERTYPE_SGITW                   = 0x817e\n\tETHERTYPE_SG_BOUNCE               = 0x8016\n\tETHERTYPE_SG_DIAG                 = 0x8013\n\tETHERTYPE_SG_NETGAMES             = 0x8014\n\tETHERTYPE_SG_RESV                 = 0x8015\n\tETHERTYPE_SIMNET                  = 0x5208\n\tETHERTYPE_SLOWPROTOCOLS           = 0x8809\n\tETHERTYPE_SNA                     = 0x80d5\n\tETHERTYPE_SNMP                    = 0x814c\n\tETHERTYPE_SONIX                   = 0xfaf5\n\tETHERTYPE_SPIDER                  = 0x809f\n\tETHERTYPE_SPRITE                  = 0x500\n\tETHERTYPE_STP                     = 0x8181\n\tETHERTYPE_TALARIS                 = 0x812b\n\tETHERTYPE_TALARISMC               = 0x852b\n\tETHERTYPE_TCPCOMP                 = 0x876b\n\tETHERTYPE_TCPSM                   = 0x9002\n\tETHERTYPE_TEC                     = 0x814f\n\tETHERTYPE_TIGAN                   = 0x802f\n\tETHERTYPE_TRAIL                   = 0x1000\n\tETHERTYPE_TRANSETHER              = 0x6558\n\tETHERTYPE_TYMSHARE                = 0x802e\n\tETHERTYPE_UBBST                   = 0x7005\n\tETHERTYPE_UBDEBUG                 = 0x900\n\tETHERTYPE_UBDIAGLOOP              = 0x7002\n\tETHERTYPE_UBDL                    = 0x7000\n\tETHERTYPE_UBNIU                   = 0x7001\n\tETHERTYPE_UBNMC                   = 0x7003\n\tETHERTYPE_VALID                   = 0x1600\n\tETHERTYPE_VARIAN                  = 0x80dd\n\tETHERTYPE_VAXELN                  = 0x803b\n\tETHERTYPE_VEECO                   = 0x8067\n\tETHERTYPE_VEXP                    = 0x805b\n\tETHERTYPE_VGLAB                   = 0x8131\n\tETHERTYPE_VINES                   = 0xbad\n\tETHERTYPE_VINESECHO               = 0xbaf\n\tETHERTYPE_VINESLOOP               = 0xbae\n\tETHERTYPE_VITAL                   = 0xff00\n\tETHERTYPE_VLAN                    = 0x8100\n\tETHERTYPE_VLTLMAN                 = 0x8080\n\tETHERTYPE_VPROD                   = 0x805c\n\tETHERTYPE_VURESERVED              = 0x8147\n\tETHERTYPE_WATERLOO                = 0x8130\n\tETHERTYPE_WELLFLEET               = 0x8103\n\tETHERTYPE_X25                     = 0x805\n\tETHERTYPE_X75                     = 0x801\n\tETHERTYPE_XNSSM                   = 0x9001\n\tETHERTYPE_XTP                     = 0x817d\n\tETHER_ADDR_LEN                    = 0x6\n\tETHER_CRC_LEN                     = 0x4\n\tETHER_CRC_POLY_BE                 = 0x4c11db6\n\tETHER_CRC_POLY_LE                 = 0xedb88320\n\tETHER_HDR_LEN                     = 0xe\n\tETHER_MAX_LEN                     = 0x5ee\n\tETHER_MAX_LEN_JUMBO               = 0x233a\n\tETHER_MIN_LEN                     = 0x40\n\tETHER_PPPOE_ENCAP_LEN             = 0x8\n\tETHER_TYPE_LEN                    = 0x2\n\tETHER_VLAN_ENCAP_LEN              = 0x4\n\tEVFILT_AIO                        = 0x2\n\tEVFILT_PROC                       = 0x4\n\tEVFILT_READ                       = 0x0\n\tEVFILT_SIGNAL                     = 0x5\n\tEVFILT_SYSCOUNT                   = 0x7\n\tEVFILT_TIMER                      = 0x6\n\tEVFILT_VNODE                      = 0x3\n\tEVFILT_WRITE                      = 0x1\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTATTR_CMD_START                 = 0x1\n\tEXTATTR_CMD_STOP                  = 0x2\n\tEXTATTR_NAMESPACE_SYSTEM          = 0x2\n\tEXTATTR_NAMESPACE_USER            = 0x1\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x100\n\tFLUSHO                            = 0x800000\n\tF_CLOSEM                          = 0xa\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0xc\n\tF_FSCTL                           = -0x80000000\n\tF_FSDIRMASK                       = 0x70000000\n\tF_FSIN                            = 0x10000000\n\tF_FSINOUT                         = 0x30000000\n\tF_FSOUT                           = 0x20000000\n\tF_FSPRIV                          = 0x8000\n\tF_FSVOID                          = 0x40000000\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETNOSIGPIPE                    = 0xd\n\tF_GETOWN                          = 0x5\n\tF_MAXFD                           = 0xb\n\tF_OK                              = 0x0\n\tF_PARAM_MASK                      = 0xfff\n\tF_PARAM_MAX                       = 0xfff\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETNOSIGPIPE                    = 0xe\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFA_ROUTE                         = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x8f52\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf8\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DOCSCABLEUPSTREAMCHANNEL      = 0xcd\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ECONET                        = 0xce\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf2\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INFINIBAND                    = 0xc7\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LINEGROUP                     = 0xd2\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_PON155                        = 0xcf\n\tIFT_PON622                        = 0xd0\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPATM                       = 0xc5\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf1\n\tIFT_Q2931                         = 0xc9\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SIPSIG                        = 0xcc\n\tIFT_SIPTG                         = 0xcb\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0xd7\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TELINK                        = 0xc8\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VIRTUALTG                     = 0xca\n\tIFT_VOICEDID                      = 0xd5\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEEMFGD                    = 0xd3\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFGDEANA                  = 0xd4\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERCABLE                = 0xc6\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_IPV6_ICMP                 = 0x3a\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x34\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_VRRP                      = 0x70\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPSEC_POLICY                 = 0x1c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_EF                             = 0x8000\n\tIP_ERRORMTU                       = 0x15\n\tIP_HDRINCL                        = 0x2\n\tIP_IPSEC_POLICY                   = 0x16\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0x14\n\tIP_MF                             = 0x2000\n\tIP_MINFRAGSIZE                    = 0x45\n\tIP_MINTTL                         = 0x18\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVIF                         = 0x14\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVTTL                        = 0x17\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x6\n\tMADV_NORMAL                       = 0x0\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SPACEAVAIL                   = 0x5\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ALIGNMENT_16MB                = 0x18000000\n\tMAP_ALIGNMENT_1TB                 = 0x28000000\n\tMAP_ALIGNMENT_256TB               = 0x30000000\n\tMAP_ALIGNMENT_4GB                 = 0x20000000\n\tMAP_ALIGNMENT_64KB                = 0x10000000\n\tMAP_ALIGNMENT_64PB                = 0x38000000\n\tMAP_ALIGNMENT_MASK                = -0x1000000\n\tMAP_ALIGNMENT_SHIFT               = 0x18\n\tMAP_ANON                          = 0x1000\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_HASSEMAPHORE                  = 0x200\n\tMAP_INHERIT                       = 0x80\n\tMAP_INHERIT_COPY                  = 0x1\n\tMAP_INHERIT_DEFAULT               = 0x1\n\tMAP_INHERIT_DONATE_COPY           = 0x3\n\tMAP_INHERIT_NONE                  = 0x2\n\tMAP_INHERIT_SHARE                 = 0x0\n\tMAP_NORESERVE                     = 0x40\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_SHARED                        = 0x1\n\tMAP_STACK                         = 0x2000\n\tMAP_TRYFIXED                      = 0x400\n\tMAP_WIRED                         = 0x800\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_BASIC_FLAGS                   = 0xe782807f\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DISCARD                       = 0x800000\n\tMNT_EXKERB                        = 0x800\n\tMNT_EXNORESPORT                   = 0x8000000\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXPUBLIC                      = 0x10000000\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_EXTATTR                       = 0x1000000\n\tMNT_FORCE                         = 0x80000\n\tMNT_GETARGS                       = 0x400000\n\tMNT_IGNORE                        = 0x100000\n\tMNT_LAZY                          = 0x3\n\tMNT_LOCAL                         = 0x1000\n\tMNT_LOG                           = 0x2000000\n\tMNT_NOATIME                       = 0x4000000\n\tMNT_NOCOREDUMP                    = 0x8000\n\tMNT_NODEV                         = 0x10\n\tMNT_NODEVMTIME                    = 0x40000000\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOWAIT                        = 0x2\n\tMNT_OP_FLAGS                      = 0x4d0000\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELATIME                      = 0x20000\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x80000000\n\tMNT_SYMPERM                       = 0x20000000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UNION                         = 0x20\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0xff90ffff\n\tMNT_WAIT                          = 0x1\n\tMSG_BCAST                         = 0x100\n\tMSG_CMSG_CLOEXEC                  = 0x800\n\tMSG_CONTROLMBUF                   = 0x2000000\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOR                           = 0x8\n\tMSG_IOVUSRSPACE                   = 0x4000000\n\tMSG_LENUSRSPACE                   = 0x8000000\n\tMSG_MCAST                         = 0x200\n\tMSG_NAMEMBUF                      = 0x1000000\n\tMSG_NBIO                          = 0x1000\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_TRUNC                         = 0x10\n\tMSG_USERFLAGS                     = 0xffffff\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x2\n\tMS_SYNC                           = 0x4\n\tNAME_MAX                          = 0x1ff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x5\n\tNET_RT_MAXID                      = 0x6\n\tNET_RT_OIFLIST                    = 0x4\n\tNET_RT_OOIFLIST                   = 0x3\n\tNFDBITS                           = 0x20\n\tNOFLSH                            = 0x80000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOFIOGETBMAP                       = 0xc004667a\n\tONLCR                             = 0x2\n\tONLRET                            = 0x40\n\tONOCR                             = 0x20\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tO_ACCMODE                         = 0x3\n\tO_ALT_IO                          = 0x40000\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x400000\n\tO_CREAT                           = 0x200\n\tO_DIRECT                          = 0x80000\n\tO_DIRECTORY                       = 0x200000\n\tO_DSYNC                           = 0x10000\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_NOSIGPIPE                       = 0x1000000\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_RSYNC                           = 0x20000\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPRI_IOFLUSH                       = 0x7c\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tRLIMIT_AS                         = 0xa\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_MAX                          = 0x9\n\tRTAX_NETMASK                      = 0x2\n\tRTAX_TAG                          = 0x8\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_NETMASK                       = 0x4\n\tRTA_TAG                           = 0x100\n\tRTF_ANNOUNCE                      = 0x20000\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_CLONED                        = 0x2000\n\tRTF_CLONING                       = 0x100\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_MASK                          = 0x80\n\tRTF_MODIFIED                      = 0x20\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_REJECT                        = 0x8\n\tRTF_SRC                           = 0x10000\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_CHGADDR                       = 0x15\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_GET                           = 0x4\n\tRTM_IEEE80211                     = 0x11\n\tRTM_IFANNOUNCE                    = 0x10\n\tRTM_IFINFO                        = 0x14\n\tRTM_LLINFO_UPD                    = 0x13\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_OIFINFO                       = 0xf\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRTM_OOIFINFO                      = 0xe\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_SETGATE                       = 0x12\n\tRTM_VERSION                       = 0x4\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tSCM_CREDS                         = 0x4\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x8\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80906931\n\tSIOCADDRT                         = 0x8038720a\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCALIFADDR                      = 0x8118691c\n\tSIOCATMARK                        = 0x40047307\n\tSIOCDELMULTI                      = 0x80906932\n\tSIOCDELRT                         = 0x8038720b\n\tSIOCDIFADDR                       = 0x80906919\n\tSIOCDIFPHYADDR                    = 0x80906949\n\tSIOCDLIFADDR                      = 0x8118691e\n\tSIOCGDRVSPEC                      = 0xc028697b\n\tSIOCGETPFSYNC                     = 0xc09069f8\n\tSIOCGETSGCNT                      = 0xc0207534\n\tSIOCGETVIFCNT                     = 0xc0287533\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0906921\n\tSIOCGIFADDRPREF                   = 0xc0986920\n\tSIOCGIFALIAS                      = 0xc040691b\n\tSIOCGIFBRDADDR                    = 0xc0906923\n\tSIOCGIFCAP                        = 0xc0206976\n\tSIOCGIFCONF                       = 0xc0106926\n\tSIOCGIFDATA                       = 0xc0986985\n\tSIOCGIFDLT                        = 0xc0906977\n\tSIOCGIFDSTADDR                    = 0xc0906922\n\tSIOCGIFFLAGS                      = 0xc0906911\n\tSIOCGIFGENERIC                    = 0xc090693a\n\tSIOCGIFMEDIA                      = 0xc0306936\n\tSIOCGIFMETRIC                     = 0xc0906917\n\tSIOCGIFMTU                        = 0xc090697e\n\tSIOCGIFNETMASK                    = 0xc0906925\n\tSIOCGIFPDSTADDR                   = 0xc0906948\n\tSIOCGIFPSRCADDR                   = 0xc0906947\n\tSIOCGLIFADDR                      = 0xc118691d\n\tSIOCGLIFPHYADDR                   = 0xc118694b\n\tSIOCGLINKSTR                      = 0xc0286987\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGVH                           = 0xc0906983\n\tSIOCIFCREATE                      = 0x8090697a\n\tSIOCIFDESTROY                     = 0x80906979\n\tSIOCIFGCLONERS                    = 0xc0106978\n\tSIOCINITIFADDR                    = 0xc0706984\n\tSIOCSDRVSPEC                      = 0x8028697b\n\tSIOCSETPFSYNC                     = 0x809069f7\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8090690c\n\tSIOCSIFADDRPREF                   = 0x8098691f\n\tSIOCSIFBRDADDR                    = 0x80906913\n\tSIOCSIFCAP                        = 0x80206975\n\tSIOCSIFDSTADDR                    = 0x8090690e\n\tSIOCSIFFLAGS                      = 0x80906910\n\tSIOCSIFGENERIC                    = 0x80906939\n\tSIOCSIFMEDIA                      = 0xc0906935\n\tSIOCSIFMETRIC                     = 0x80906918\n\tSIOCSIFMTU                        = 0x8090697f\n\tSIOCSIFNETMASK                    = 0x80906916\n\tSIOCSIFPHYADDR                    = 0x80406946\n\tSIOCSLIFPHYADDR                   = 0x8118694a\n\tSIOCSLINKSTR                      = 0x80286988\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSIOCSVH                           = 0xc0906982\n\tSIOCZIFDATA                       = 0xc0986986\n\tSOCK_CLOEXEC                      = 0x10000000\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_FLAGS_MASK                   = 0xf0000000\n\tSOCK_NONBLOCK                     = 0x20000000\n\tSOCK_NOSIGPIPE                    = 0x40000000\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_ACCEPTFILTER                   = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NOHEADER                       = 0x100a\n\tSO_NOSIGPIPE                      = 0x800\n\tSO_OOBINLINE                      = 0x100\n\tSO_OVERFLOWED                     = 0x1009\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x100c\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x100b\n\tSO_TIMESTAMP                      = 0x2000\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tSYSCTL_VERSION                    = 0x1000000\n\tSYSCTL_VERS_0                     = 0x0\n\tSYSCTL_VERS_1                     = 0x1000000\n\tSYSCTL_VERS_MASK                  = 0xff000000\n\tS_ARCH1                           = 0x10000\n\tS_ARCH2                           = 0x20000\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IFWHT                           = 0xe000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tS_LOGIN_SET                       = 0x1\n\tTCIFLUSH                          = 0x1\n\tTCIOFLUSH                         = 0x3\n\tTCOFLUSH                          = 0x2\n\tTCP_CONGCTL                       = 0x20\n\tTCP_KEEPCNT                       = 0x6\n\tTCP_KEEPIDLE                      = 0x3\n\tTCP_KEEPINIT                      = 0x7\n\tTCP_KEEPINTVL                     = 0x5\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MD5SIG                        = 0x10\n\tTCP_MINMSS                        = 0xd8\n\tTCP_MSS                           = 0x218\n\tTCP_NODELAY                       = 0x1\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDCDTIMESTAMP                  = 0x40107458\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLAG_CDTRCTS                  = 0x10\n\tTIOCFLAG_CLOCAL                   = 0x2\n\tTIOCFLAG_CRTSCTS                  = 0x4\n\tTIOCFLAG_MDMBUF                   = 0x8\n\tTIOCFLAG_SOFTCAR                  = 0x1\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGFLAGS                        = 0x4004745d\n\tTIOCGLINED                        = 0x40207442\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGQSIZE                        = 0x40047481\n\tTIOCGRANTPT                       = 0x20007447\n\tTIOCGSID                          = 0x40047463\n\tTIOCGSIZE                         = 0x40087468\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCPTMGET                        = 0x40287446\n\tTIOCPTSNAME                       = 0x40287448\n\tTIOCRCVFRAME                      = 0x80087445\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSFLAGS                        = 0x8004745c\n\tTIOCSIG                           = 0x2000745f\n\tTIOCSLINED                        = 0x80207443\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSQSIZE                        = 0x80047480\n\tTIOCSSIZE                         = 0x80087467\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x80047465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCUCNTL                         = 0x80047466\n\tTIOCXMTFRAME                      = 0x80087444\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWALL                              = 0x8\n\tWALLSIG                           = 0x8\n\tWALTSIG                           = 0x4\n\tWCLONE                            = 0x4\n\tWCOREFLAG                         = 0x80\n\tWNOHANG                           = 0x1\n\tWNOWAIT                           = 0x10000\n\tWNOZOMBIE                         = 0x20000\n\tWOPTSCHECKED                      = 0x40000\n\tWSTOPPED                          = 0x7f\n\tWUNTRACED                         = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x58)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x57)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x52)\n\tEILSEQ          = syscall.Errno(0x55)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x60)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5e)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x5d)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODATA         = syscall.Errno(0x59)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x5f)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x53)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x5a)\n\tENOSTR          = syscall.Errno(0x5b)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x56)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x60)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIME           = syscall.Errno(0x5c)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x20)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large or too small\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol option not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"connection timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIDRM\", \"identifier removed\"},\n\t{83, \"ENOMSG\", \"no message of desired type\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"EILSEQ\", \"illegal byte sequence\"},\n\t{86, \"ENOTSUP\", \"not supported\"},\n\t{87, \"ECANCELED\", \"operation Canceled\"},\n\t{88, \"EBADMSG\", \"bad or Corrupt message\"},\n\t{89, \"ENODATA\", \"no message available\"},\n\t{90, \"ENOSR\", \"no STREAM resources\"},\n\t{91, \"ENOSTR\", \"not a STREAM\"},\n\t{92, \"ETIME\", \"STREAM ioctl timeout\"},\n\t{93, \"ENOATTR\", \"attribute not found\"},\n\t{94, \"EMULTIHOP\", \"multihop attempted\"},\n\t{95, \"ENOLINK\", \"link has been severed\"},\n\t{96, \"ELAST\", \"protocol error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"stopped (signal)\"},\n\t{18, \"SIGTSTP\", \"stopped\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGPWR\", \"power fail/restart\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go",
    "content": "// mkerrors.sh -marm\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,netbsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -marm _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_ARP                            = 0x1c\n\tAF_BLUETOOTH                      = 0x1f\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_HYLINK                         = 0xf\n\tAF_IEEE80211                      = 0x20\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x18\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x23\n\tAF_MPLS                           = 0x21\n\tAF_NATM                           = 0x1b\n\tAF_NS                             = 0x6\n\tAF_OROUTE                         = 0x11\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x22\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tARPHRD_ARCNET                     = 0x7\n\tARPHRD_ETHER                      = 0x1\n\tARPHRD_FRELAY                     = 0xf\n\tARPHRD_IEEE1394                   = 0x18\n\tARPHRD_IEEE802                    = 0x6\n\tARPHRD_STRIP                      = 0x17\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB460800                           = 0x70800\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB921600                           = 0xe1000\n\tB9600                             = 0x2580\n\tBIOCFEEDBACK                      = 0x8004427d\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc0084277\n\tBIOCGETIF                         = 0x4090426b\n\tBIOCGFEEDBACK                     = 0x4004427c\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRTIMEOUT                     = 0x400c427b\n\tBIOCGSEESENT                      = 0x40044278\n\tBIOCGSTATS                        = 0x4080426f\n\tBIOCGSTATSOLD                     = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDLT                          = 0x80044276\n\tBIOCSETF                          = 0x80084267\n\tBIOCSETIF                         = 0x8090426c\n\tBIOCSFEEDBACK                     = 0x8004427d\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRTIMEOUT                     = 0x800c427a\n\tBIOCSSEESENT                      = 0x80044279\n\tBIOCSTCPF                         = 0x80084272\n\tBIOCSUDPF                         = 0x80084273\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALIGNMENT32                   = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DFLTBUFSIZE                   = 0x100000\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x1000000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCPUSTATES                         = 0x5\n\tCP_IDLE                           = 0x4\n\tCP_INTR                           = 0x3\n\tCP_NICE                           = 0x1\n\tCP_SYS                            = 0x2\n\tCP_USER                           = 0x0\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x10000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0x14\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tCTL_QUERY                         = -0x2\n\tDIOCBSFLUSH                       = 0x20006478\n\tDLT_A429                          = 0xb8\n\tDLT_A653_ICM                      = 0xb9\n\tDLT_AIRONET_HEADER                = 0x78\n\tDLT_AOS                           = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394        = 0x8a\n\tDLT_ARCNET                        = 0x7\n\tDLT_ARCNET_LINUX                  = 0x81\n\tDLT_ATM_CLIP                      = 0x13\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AURORA                        = 0x7e\n\tDLT_AX25                          = 0x3\n\tDLT_AX25_KISS                     = 0xca\n\tDLT_BACNET_MS_TP                  = 0xa5\n\tDLT_BLUETOOTH_HCI_H4              = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR    = 0xc9\n\tDLT_CAN20B                        = 0xbe\n\tDLT_CAN_SOCKETCAN                 = 0xe3\n\tDLT_CHAOS                         = 0x5\n\tDLT_CISCO_IOS                     = 0x76\n\tDLT_C_HDLC                        = 0x68\n\tDLT_C_HDLC_WITH_DIR               = 0xcd\n\tDLT_DECT                          = 0xdd\n\tDLT_DOCSIS                        = 0x8f\n\tDLT_ECONET                        = 0x73\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0x6d\n\tDLT_ERF                           = 0xc5\n\tDLT_ERF_ETH                       = 0xaf\n\tDLT_ERF_POS                       = 0xb0\n\tDLT_FC_2                          = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS        = 0xe1\n\tDLT_FDDI                          = 0xa\n\tDLT_FLEXRAY                       = 0xd2\n\tDLT_FRELAY                        = 0x6b\n\tDLT_FRELAY_WITH_DIR               = 0xce\n\tDLT_GCOM_SERIAL                   = 0xad\n\tDLT_GCOM_T1E1                     = 0xac\n\tDLT_GPF_F                         = 0xab\n\tDLT_GPF_T                         = 0xaa\n\tDLT_GPRS_LLC                      = 0xa9\n\tDLT_GSMTAP_ABIS                   = 0xda\n\tDLT_GSMTAP_UM                     = 0xd9\n\tDLT_HDLC                          = 0x10\n\tDLT_HHDLC                         = 0x79\n\tDLT_HIPPI                         = 0xf\n\tDLT_IBM_SN                        = 0x92\n\tDLT_IBM_SP                        = 0x91\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS          = 0xa3\n\tDLT_IEEE802_15_4                  = 0xc3\n\tDLT_IEEE802_15_4_LINUX            = 0xbf\n\tDLT_IEEE802_15_4_NONASK_PHY       = 0xd7\n\tDLT_IEEE802_16_MAC_CPS            = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO      = 0xc1\n\tDLT_IPMB                          = 0xc7\n\tDLT_IPMB_LINUX                    = 0xd1\n\tDLT_IPNET                         = 0xe2\n\tDLT_IPV4                          = 0xe4\n\tDLT_IPV6                          = 0xe5\n\tDLT_IP_OVER_FC                    = 0x7a\n\tDLT_JUNIPER_ATM1                  = 0x89\n\tDLT_JUNIPER_ATM2                  = 0x87\n\tDLT_JUNIPER_CHDLC                 = 0xb5\n\tDLT_JUNIPER_ES                    = 0x84\n\tDLT_JUNIPER_ETHER                 = 0xb2\n\tDLT_JUNIPER_FRELAY                = 0xb4\n\tDLT_JUNIPER_GGSN                  = 0x85\n\tDLT_JUNIPER_ISM                   = 0xc2\n\tDLT_JUNIPER_MFR                   = 0x86\n\tDLT_JUNIPER_MLFR                  = 0x83\n\tDLT_JUNIPER_MLPPP                 = 0x82\n\tDLT_JUNIPER_MONITOR               = 0xa4\n\tDLT_JUNIPER_PIC_PEER              = 0xae\n\tDLT_JUNIPER_PPP                   = 0xb3\n\tDLT_JUNIPER_PPPOE                 = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM             = 0xa8\n\tDLT_JUNIPER_SERVICES              = 0x88\n\tDLT_JUNIPER_ST                    = 0xc8\n\tDLT_JUNIPER_VP                    = 0xb7\n\tDLT_LAPB_WITH_DIR                 = 0xcf\n\tDLT_LAPD                          = 0xcb\n\tDLT_LIN                           = 0xd4\n\tDLT_LINUX_EVDEV                   = 0xd8\n\tDLT_LINUX_IRDA                    = 0x90\n\tDLT_LINUX_LAPD                    = 0xb1\n\tDLT_LINUX_SLL                     = 0x71\n\tDLT_LOOP                          = 0x6c\n\tDLT_LTALK                         = 0x72\n\tDLT_MFR                           = 0xb6\n\tDLT_MOST                          = 0xd3\n\tDLT_MPLS                          = 0xdb\n\tDLT_MTP2                          = 0x8c\n\tDLT_MTP2_WITH_PHDR                = 0x8b\n\tDLT_MTP3                          = 0x8d\n\tDLT_NULL                          = 0x0\n\tDLT_PCI_EXP                       = 0x7d\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPI                           = 0xc0\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0xe\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_PPPD                      = 0xa6\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PPP_WITH_DIR                  = 0xcc\n\tDLT_PRISM_HEADER                  = 0x77\n\tDLT_PRONET                        = 0x4\n\tDLT_RAIF1                         = 0xc6\n\tDLT_RAW                           = 0xc\n\tDLT_RAWAF_MASK                    = 0x2240000\n\tDLT_RIO                           = 0x7c\n\tDLT_SCCP                          = 0x8e\n\tDLT_SITA                          = 0xc4\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xd\n\tDLT_SUNATM                        = 0x7b\n\tDLT_SYMANTEC_FIREWALL             = 0x63\n\tDLT_TZSP                          = 0x80\n\tDLT_USB                           = 0xba\n\tDLT_USB_LINUX                     = 0xbd\n\tDLT_USB_LINUX_MMAPPED             = 0xdc\n\tDLT_WIHART                        = 0xdf\n\tDLT_X2E_SERIAL                    = 0xd5\n\tDLT_X2E_XORAYA                    = 0xd6\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tDT_WHT                            = 0xe\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEMUL_LINUX                        = 0x1\n\tEMUL_LINUX32                      = 0x5\n\tEMUL_MAXID                        = 0x6\n\tETHERCAP_JUMBO_MTU                = 0x4\n\tETHERCAP_VLAN_HWTAGGING           = 0x2\n\tETHERCAP_VLAN_MTU                 = 0x1\n\tETHERMIN                          = 0x2e\n\tETHERMTU                          = 0x5dc\n\tETHERMTU_JUMBO                    = 0x2328\n\tETHERTYPE_8023                    = 0x4\n\tETHERTYPE_AARP                    = 0x80f3\n\tETHERTYPE_ACCTON                  = 0x8390\n\tETHERTYPE_AEONIC                  = 0x8036\n\tETHERTYPE_ALPHA                   = 0x814a\n\tETHERTYPE_AMBER                   = 0x6008\n\tETHERTYPE_AMOEBA                  = 0x8145\n\tETHERTYPE_APOLLO                  = 0x80f7\n\tETHERTYPE_APOLLODOMAIN            = 0x8019\n\tETHERTYPE_APPLETALK               = 0x809b\n\tETHERTYPE_APPLITEK                = 0x80c7\n\tETHERTYPE_ARGONAUT                = 0x803a\n\tETHERTYPE_ARP                     = 0x806\n\tETHERTYPE_AT                      = 0x809b\n\tETHERTYPE_ATALK                   = 0x809b\n\tETHERTYPE_ATOMIC                  = 0x86df\n\tETHERTYPE_ATT                     = 0x8069\n\tETHERTYPE_ATTSTANFORD             = 0x8008\n\tETHERTYPE_AUTOPHON                = 0x806a\n\tETHERTYPE_AXIS                    = 0x8856\n\tETHERTYPE_BCLOOP                  = 0x9003\n\tETHERTYPE_BOFL                    = 0x8102\n\tETHERTYPE_CABLETRON               = 0x7034\n\tETHERTYPE_CHAOS                   = 0x804\n\tETHERTYPE_COMDESIGN               = 0x806c\n\tETHERTYPE_COMPUGRAPHIC            = 0x806d\n\tETHERTYPE_COUNTERPOINT            = 0x8062\n\tETHERTYPE_CRONUS                  = 0x8004\n\tETHERTYPE_CRONUSVLN               = 0x8003\n\tETHERTYPE_DCA                     = 0x1234\n\tETHERTYPE_DDE                     = 0x807b\n\tETHERTYPE_DEBNI                   = 0xaaaa\n\tETHERTYPE_DECAM                   = 0x8048\n\tETHERTYPE_DECCUST                 = 0x6006\n\tETHERTYPE_DECDIAG                 = 0x6005\n\tETHERTYPE_DECDNS                  = 0x803c\n\tETHERTYPE_DECDTS                  = 0x803e\n\tETHERTYPE_DECEXPER                = 0x6000\n\tETHERTYPE_DECLAST                 = 0x8041\n\tETHERTYPE_DECLTM                  = 0x803f\n\tETHERTYPE_DECMUMPS                = 0x6009\n\tETHERTYPE_DECNETBIOS              = 0x8040\n\tETHERTYPE_DELTACON                = 0x86de\n\tETHERTYPE_DIDDLE                  = 0x4321\n\tETHERTYPE_DLOG1                   = 0x660\n\tETHERTYPE_DLOG2                   = 0x661\n\tETHERTYPE_DN                      = 0x6003\n\tETHERTYPE_DOGFIGHT                = 0x1989\n\tETHERTYPE_DSMD                    = 0x8039\n\tETHERTYPE_ECMA                    = 0x803\n\tETHERTYPE_ENCRYPT                 = 0x803d\n\tETHERTYPE_ES                      = 0x805d\n\tETHERTYPE_EXCELAN                 = 0x8010\n\tETHERTYPE_EXPERDATA               = 0x8049\n\tETHERTYPE_FLIP                    = 0x8146\n\tETHERTYPE_FLOWCONTROL             = 0x8808\n\tETHERTYPE_FRARP                   = 0x808\n\tETHERTYPE_GENDYN                  = 0x8068\n\tETHERTYPE_HAYES                   = 0x8130\n\tETHERTYPE_HIPPI_FP                = 0x8180\n\tETHERTYPE_HITACHI                 = 0x8820\n\tETHERTYPE_HP                      = 0x8005\n\tETHERTYPE_IEEEPUP                 = 0xa00\n\tETHERTYPE_IEEEPUPAT               = 0xa01\n\tETHERTYPE_IMLBL                   = 0x4c42\n\tETHERTYPE_IMLBLDIAG               = 0x424c\n\tETHERTYPE_IP                      = 0x800\n\tETHERTYPE_IPAS                    = 0x876c\n\tETHERTYPE_IPV6                    = 0x86dd\n\tETHERTYPE_IPX                     = 0x8137\n\tETHERTYPE_IPXNEW                  = 0x8037\n\tETHERTYPE_KALPANA                 = 0x8582\n\tETHERTYPE_LANBRIDGE               = 0x8038\n\tETHERTYPE_LANPROBE                = 0x8888\n\tETHERTYPE_LAT                     = 0x6004\n\tETHERTYPE_LBACK                   = 0x9000\n\tETHERTYPE_LITTLE                  = 0x8060\n\tETHERTYPE_LOGICRAFT               = 0x8148\n\tETHERTYPE_LOOPBACK                = 0x9000\n\tETHERTYPE_MATRA                   = 0x807a\n\tETHERTYPE_MAX                     = 0xffff\n\tETHERTYPE_MERIT                   = 0x807c\n\tETHERTYPE_MICP                    = 0x873a\n\tETHERTYPE_MOPDL                   = 0x6001\n\tETHERTYPE_MOPRC                   = 0x6002\n\tETHERTYPE_MOTOROLA                = 0x818d\n\tETHERTYPE_MPLS                    = 0x8847\n\tETHERTYPE_MPLS_MCAST              = 0x8848\n\tETHERTYPE_MUMPS                   = 0x813f\n\tETHERTYPE_NBPCC                   = 0x3c04\n\tETHERTYPE_NBPCLAIM                = 0x3c09\n\tETHERTYPE_NBPCLREQ                = 0x3c05\n\tETHERTYPE_NBPCLRSP                = 0x3c06\n\tETHERTYPE_NBPCREQ                 = 0x3c02\n\tETHERTYPE_NBPCRSP                 = 0x3c03\n\tETHERTYPE_NBPDG                   = 0x3c07\n\tETHERTYPE_NBPDGB                  = 0x3c08\n\tETHERTYPE_NBPDLTE                 = 0x3c0a\n\tETHERTYPE_NBPRAR                  = 0x3c0c\n\tETHERTYPE_NBPRAS                  = 0x3c0b\n\tETHERTYPE_NBPRST                  = 0x3c0d\n\tETHERTYPE_NBPSCD                  = 0x3c01\n\tETHERTYPE_NBPVCD                  = 0x3c00\n\tETHERTYPE_NBS                     = 0x802\n\tETHERTYPE_NCD                     = 0x8149\n\tETHERTYPE_NESTAR                  = 0x8006\n\tETHERTYPE_NETBEUI                 = 0x8191\n\tETHERTYPE_NOVELL                  = 0x8138\n\tETHERTYPE_NS                      = 0x600\n\tETHERTYPE_NSAT                    = 0x601\n\tETHERTYPE_NSCOMPAT                = 0x807\n\tETHERTYPE_NTRAILER                = 0x10\n\tETHERTYPE_OS9                     = 0x7007\n\tETHERTYPE_OS9NET                  = 0x7009\n\tETHERTYPE_PACER                   = 0x80c6\n\tETHERTYPE_PAE                     = 0x888e\n\tETHERTYPE_PCS                     = 0x4242\n\tETHERTYPE_PLANNING                = 0x8044\n\tETHERTYPE_PPP                     = 0x880b\n\tETHERTYPE_PPPOE                   = 0x8864\n\tETHERTYPE_PPPOEDISC               = 0x8863\n\tETHERTYPE_PRIMENTS                = 0x7031\n\tETHERTYPE_PUP                     = 0x200\n\tETHERTYPE_PUPAT                   = 0x200\n\tETHERTYPE_RACAL                   = 0x7030\n\tETHERTYPE_RATIONAL                = 0x8150\n\tETHERTYPE_RAWFR                   = 0x6559\n\tETHERTYPE_RCL                     = 0x1995\n\tETHERTYPE_RDP                     = 0x8739\n\tETHERTYPE_RETIX                   = 0x80f2\n\tETHERTYPE_REVARP                  = 0x8035\n\tETHERTYPE_SCA                     = 0x6007\n\tETHERTYPE_SECTRA                  = 0x86db\n\tETHERTYPE_SECUREDATA              = 0x876d\n\tETHERTYPE_SGITW                   = 0x817e\n\tETHERTYPE_SG_BOUNCE               = 0x8016\n\tETHERTYPE_SG_DIAG                 = 0x8013\n\tETHERTYPE_SG_NETGAMES             = 0x8014\n\tETHERTYPE_SG_RESV                 = 0x8015\n\tETHERTYPE_SIMNET                  = 0x5208\n\tETHERTYPE_SLOWPROTOCOLS           = 0x8809\n\tETHERTYPE_SNA                     = 0x80d5\n\tETHERTYPE_SNMP                    = 0x814c\n\tETHERTYPE_SONIX                   = 0xfaf5\n\tETHERTYPE_SPIDER                  = 0x809f\n\tETHERTYPE_SPRITE                  = 0x500\n\tETHERTYPE_STP                     = 0x8181\n\tETHERTYPE_TALARIS                 = 0x812b\n\tETHERTYPE_TALARISMC               = 0x852b\n\tETHERTYPE_TCPCOMP                 = 0x876b\n\tETHERTYPE_TCPSM                   = 0x9002\n\tETHERTYPE_TEC                     = 0x814f\n\tETHERTYPE_TIGAN                   = 0x802f\n\tETHERTYPE_TRAIL                   = 0x1000\n\tETHERTYPE_TRANSETHER              = 0x6558\n\tETHERTYPE_TYMSHARE                = 0x802e\n\tETHERTYPE_UBBST                   = 0x7005\n\tETHERTYPE_UBDEBUG                 = 0x900\n\tETHERTYPE_UBDIAGLOOP              = 0x7002\n\tETHERTYPE_UBDL                    = 0x7000\n\tETHERTYPE_UBNIU                   = 0x7001\n\tETHERTYPE_UBNMC                   = 0x7003\n\tETHERTYPE_VALID                   = 0x1600\n\tETHERTYPE_VARIAN                  = 0x80dd\n\tETHERTYPE_VAXELN                  = 0x803b\n\tETHERTYPE_VEECO                   = 0x8067\n\tETHERTYPE_VEXP                    = 0x805b\n\tETHERTYPE_VGLAB                   = 0x8131\n\tETHERTYPE_VINES                   = 0xbad\n\tETHERTYPE_VINESECHO               = 0xbaf\n\tETHERTYPE_VINESLOOP               = 0xbae\n\tETHERTYPE_VITAL                   = 0xff00\n\tETHERTYPE_VLAN                    = 0x8100\n\tETHERTYPE_VLTLMAN                 = 0x8080\n\tETHERTYPE_VPROD                   = 0x805c\n\tETHERTYPE_VURESERVED              = 0x8147\n\tETHERTYPE_WATERLOO                = 0x8130\n\tETHERTYPE_WELLFLEET               = 0x8103\n\tETHERTYPE_X25                     = 0x805\n\tETHERTYPE_X75                     = 0x801\n\tETHERTYPE_XNSSM                   = 0x9001\n\tETHERTYPE_XTP                     = 0x817d\n\tETHER_ADDR_LEN                    = 0x6\n\tETHER_CRC_LEN                     = 0x4\n\tETHER_CRC_POLY_BE                 = 0x4c11db6\n\tETHER_CRC_POLY_LE                 = 0xedb88320\n\tETHER_HDR_LEN                     = 0xe\n\tETHER_MAX_LEN                     = 0x5ee\n\tETHER_MAX_LEN_JUMBO               = 0x233a\n\tETHER_MIN_LEN                     = 0x40\n\tETHER_PPPOE_ENCAP_LEN             = 0x8\n\tETHER_TYPE_LEN                    = 0x2\n\tETHER_VLAN_ENCAP_LEN              = 0x4\n\tEVFILT_AIO                        = 0x2\n\tEVFILT_PROC                       = 0x4\n\tEVFILT_READ                       = 0x0\n\tEVFILT_SIGNAL                     = 0x5\n\tEVFILT_SYSCOUNT                   = 0x7\n\tEVFILT_TIMER                      = 0x6\n\tEVFILT_VNODE                      = 0x3\n\tEVFILT_WRITE                      = 0x1\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTATTR_CMD_START                 = 0x1\n\tEXTATTR_CMD_STOP                  = 0x2\n\tEXTATTR_NAMESPACE_SYSTEM          = 0x2\n\tEXTATTR_NAMESPACE_USER            = 0x1\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x100\n\tFLUSHO                            = 0x800000\n\tF_CLOSEM                          = 0xa\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0xc\n\tF_FSCTL                           = -0x80000000\n\tF_FSDIRMASK                       = 0x70000000\n\tF_FSIN                            = 0x10000000\n\tF_FSINOUT                         = 0x30000000\n\tF_FSOUT                           = 0x20000000\n\tF_FSPRIV                          = 0x8000\n\tF_FSVOID                          = 0x40000000\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETNOSIGPIPE                    = 0xd\n\tF_GETOWN                          = 0x5\n\tF_MAXFD                           = 0xb\n\tF_OK                              = 0x0\n\tF_PARAM_MASK                      = 0xfff\n\tF_PARAM_MAX                       = 0xfff\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETNOSIGPIPE                    = 0xe\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFA_ROUTE                         = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x8f52\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf8\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DOCSCABLEUPSTREAMCHANNEL      = 0xcd\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ECONET                        = 0xce\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf2\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INFINIBAND                    = 0xc7\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LINEGROUP                     = 0xd2\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_PON155                        = 0xcf\n\tIFT_PON622                        = 0xd0\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPATM                       = 0xc5\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf1\n\tIFT_Q2931                         = 0xc9\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SIPSIG                        = 0xcc\n\tIFT_SIPTG                         = 0xcb\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0xd7\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TELINK                        = 0xc8\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VIRTUALTG                     = 0xca\n\tIFT_VOICEDID                      = 0xd5\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEEMFGD                    = 0xd3\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFGDEANA                  = 0xd4\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERCABLE                = 0xc6\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_IPV6_ICMP                 = 0x3a\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x34\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_VRRP                      = 0x70\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPSEC_POLICY                 = 0x1c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_EF                             = 0x8000\n\tIP_ERRORMTU                       = 0x15\n\tIP_HDRINCL                        = 0x2\n\tIP_IPSEC_POLICY                   = 0x16\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0x14\n\tIP_MF                             = 0x2000\n\tIP_MINFRAGSIZE                    = 0x45\n\tIP_MINTTL                         = 0x18\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVIF                         = 0x14\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVTTL                        = 0x17\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x6\n\tMADV_NORMAL                       = 0x0\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SPACEAVAIL                   = 0x5\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ALIGNMENT_16MB                = 0x18000000\n\tMAP_ALIGNMENT_1TB                 = 0x28000000\n\tMAP_ALIGNMENT_256TB               = 0x30000000\n\tMAP_ALIGNMENT_4GB                 = 0x20000000\n\tMAP_ALIGNMENT_64KB                = 0x10000000\n\tMAP_ALIGNMENT_64PB                = 0x38000000\n\tMAP_ALIGNMENT_MASK                = -0x1000000\n\tMAP_ALIGNMENT_SHIFT               = 0x18\n\tMAP_ANON                          = 0x1000\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_HASSEMAPHORE                  = 0x200\n\tMAP_INHERIT                       = 0x80\n\tMAP_INHERIT_COPY                  = 0x1\n\tMAP_INHERIT_DEFAULT               = 0x1\n\tMAP_INHERIT_DONATE_COPY           = 0x3\n\tMAP_INHERIT_NONE                  = 0x2\n\tMAP_INHERIT_SHARE                 = 0x0\n\tMAP_NORESERVE                     = 0x40\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_SHARED                        = 0x1\n\tMAP_STACK                         = 0x2000\n\tMAP_TRYFIXED                      = 0x400\n\tMAP_WIRED                         = 0x800\n\tMNT_ASYNC                         = 0x40\n\tMNT_BASIC_FLAGS                   = 0xe782807f\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DISCARD                       = 0x800000\n\tMNT_EXKERB                        = 0x800\n\tMNT_EXNORESPORT                   = 0x8000000\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXPUBLIC                      = 0x10000000\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_EXTATTR                       = 0x1000000\n\tMNT_FORCE                         = 0x80000\n\tMNT_GETARGS                       = 0x400000\n\tMNT_IGNORE                        = 0x100000\n\tMNT_LAZY                          = 0x3\n\tMNT_LOCAL                         = 0x1000\n\tMNT_LOG                           = 0x2000000\n\tMNT_NOATIME                       = 0x4000000\n\tMNT_NOCOREDUMP                    = 0x8000\n\tMNT_NODEV                         = 0x10\n\tMNT_NODEVMTIME                    = 0x40000000\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOWAIT                        = 0x2\n\tMNT_OP_FLAGS                      = 0x4d0000\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELATIME                      = 0x20000\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x80000000\n\tMNT_SYMPERM                       = 0x20000000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UNION                         = 0x20\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0xff90ffff\n\tMNT_WAIT                          = 0x1\n\tMSG_BCAST                         = 0x100\n\tMSG_CMSG_CLOEXEC                  = 0x800\n\tMSG_CONTROLMBUF                   = 0x2000000\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOR                           = 0x8\n\tMSG_IOVUSRSPACE                   = 0x4000000\n\tMSG_LENUSRSPACE                   = 0x8000000\n\tMSG_MCAST                         = 0x200\n\tMSG_NAMEMBUF                      = 0x1000000\n\tMSG_NBIO                          = 0x1000\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_TRUNC                         = 0x10\n\tMSG_USERFLAGS                     = 0xffffff\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x2\n\tMS_SYNC                           = 0x4\n\tNAME_MAX                          = 0x1ff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x5\n\tNET_RT_MAXID                      = 0x6\n\tNET_RT_OIFLIST                    = 0x4\n\tNET_RT_OOIFLIST                   = 0x3\n\tNFDBITS                           = 0x20\n\tNOFLSH                            = 0x80000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOFIOGETBMAP                       = 0xc004667a\n\tONLCR                             = 0x2\n\tONLRET                            = 0x40\n\tONOCR                             = 0x20\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tO_ACCMODE                         = 0x3\n\tO_ALT_IO                          = 0x40000\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x400000\n\tO_CREAT                           = 0x200\n\tO_DIRECT                          = 0x80000\n\tO_DIRECTORY                       = 0x200000\n\tO_DSYNC                           = 0x10000\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_NOSIGPIPE                       = 0x1000000\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_RSYNC                           = 0x20000\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tPRI_IOFLUSH                       = 0x7c\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tRLIMIT_AS                         = 0xa\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_MAX                          = 0x9\n\tRTAX_NETMASK                      = 0x2\n\tRTAX_TAG                          = 0x8\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_NETMASK                       = 0x4\n\tRTA_TAG                           = 0x100\n\tRTF_ANNOUNCE                      = 0x20000\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_CLONED                        = 0x2000\n\tRTF_CLONING                       = 0x100\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_MASK                          = 0x80\n\tRTF_MODIFIED                      = 0x20\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_REJECT                        = 0x8\n\tRTF_SRC                           = 0x10000\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_CHGADDR                       = 0x15\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_GET                           = 0x4\n\tRTM_IEEE80211                     = 0x11\n\tRTM_IFANNOUNCE                    = 0x10\n\tRTM_IFINFO                        = 0x14\n\tRTM_LLINFO_UPD                    = 0x13\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_OIFINFO                       = 0xf\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRTM_OOIFINFO                      = 0xe\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_SETGATE                       = 0x12\n\tRTM_VERSION                       = 0x4\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tSCM_CREDS                         = 0x4\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x8\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80906931\n\tSIOCADDRT                         = 0x8030720a\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCALIFADDR                      = 0x8118691c\n\tSIOCATMARK                        = 0x40047307\n\tSIOCDELMULTI                      = 0x80906932\n\tSIOCDELRT                         = 0x8030720b\n\tSIOCDIFADDR                       = 0x80906919\n\tSIOCDIFPHYADDR                    = 0x80906949\n\tSIOCDLIFADDR                      = 0x8118691e\n\tSIOCGDRVSPEC                      = 0xc01c697b\n\tSIOCGETPFSYNC                     = 0xc09069f8\n\tSIOCGETSGCNT                      = 0xc0147534\n\tSIOCGETVIFCNT                     = 0xc0147533\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0906921\n\tSIOCGIFADDRPREF                   = 0xc0946920\n\tSIOCGIFALIAS                      = 0xc040691b\n\tSIOCGIFBRDADDR                    = 0xc0906923\n\tSIOCGIFCAP                        = 0xc0206976\n\tSIOCGIFCONF                       = 0xc0086926\n\tSIOCGIFDATA                       = 0xc0946985\n\tSIOCGIFDLT                        = 0xc0906977\n\tSIOCGIFDSTADDR                    = 0xc0906922\n\tSIOCGIFFLAGS                      = 0xc0906911\n\tSIOCGIFGENERIC                    = 0xc090693a\n\tSIOCGIFMEDIA                      = 0xc0286936\n\tSIOCGIFMETRIC                     = 0xc0906917\n\tSIOCGIFMTU                        = 0xc090697e\n\tSIOCGIFNETMASK                    = 0xc0906925\n\tSIOCGIFPDSTADDR                   = 0xc0906948\n\tSIOCGIFPSRCADDR                   = 0xc0906947\n\tSIOCGLIFADDR                      = 0xc118691d\n\tSIOCGLIFPHYADDR                   = 0xc118694b\n\tSIOCGLINKSTR                      = 0xc01c6987\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGVH                           = 0xc0906983\n\tSIOCIFCREATE                      = 0x8090697a\n\tSIOCIFDESTROY                     = 0x80906979\n\tSIOCIFGCLONERS                    = 0xc00c6978\n\tSIOCINITIFADDR                    = 0xc0446984\n\tSIOCSDRVSPEC                      = 0x801c697b\n\tSIOCSETPFSYNC                     = 0x809069f7\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8090690c\n\tSIOCSIFADDRPREF                   = 0x8094691f\n\tSIOCSIFBRDADDR                    = 0x80906913\n\tSIOCSIFCAP                        = 0x80206975\n\tSIOCSIFDSTADDR                    = 0x8090690e\n\tSIOCSIFFLAGS                      = 0x80906910\n\tSIOCSIFGENERIC                    = 0x80906939\n\tSIOCSIFMEDIA                      = 0xc0906935\n\tSIOCSIFMETRIC                     = 0x80906918\n\tSIOCSIFMTU                        = 0x8090697f\n\tSIOCSIFNETMASK                    = 0x80906916\n\tSIOCSIFPHYADDR                    = 0x80406946\n\tSIOCSLIFPHYADDR                   = 0x8118694a\n\tSIOCSLINKSTR                      = 0x801c6988\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSIOCSVH                           = 0xc0906982\n\tSIOCZIFDATA                       = 0xc0946986\n\tSOCK_CLOEXEC                      = 0x10000000\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_FLAGS_MASK                   = 0xf0000000\n\tSOCK_NONBLOCK                     = 0x20000000\n\tSOCK_NOSIGPIPE                    = 0x40000000\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_ACCEPTFILTER                   = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NOHEADER                       = 0x100a\n\tSO_NOSIGPIPE                      = 0x800\n\tSO_OOBINLINE                      = 0x100\n\tSO_OVERFLOWED                     = 0x1009\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x100c\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x100b\n\tSO_TIMESTAMP                      = 0x2000\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tSYSCTL_VERSION                    = 0x1000000\n\tSYSCTL_VERS_0                     = 0x0\n\tSYSCTL_VERS_1                     = 0x1000000\n\tSYSCTL_VERS_MASK                  = 0xff000000\n\tS_ARCH1                           = 0x10000\n\tS_ARCH2                           = 0x20000\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IFWHT                           = 0xe000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTCIFLUSH                          = 0x1\n\tTCIOFLUSH                         = 0x3\n\tTCOFLUSH                          = 0x2\n\tTCP_CONGCTL                       = 0x20\n\tTCP_KEEPCNT                       = 0x6\n\tTCP_KEEPIDLE                      = 0x3\n\tTCP_KEEPINIT                      = 0x7\n\tTCP_KEEPINTVL                     = 0x5\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MD5SIG                        = 0x10\n\tTCP_MINMSS                        = 0xd8\n\tTCP_MSS                           = 0x218\n\tTCP_NODELAY                       = 0x1\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDCDTIMESTAMP                  = 0x400c7458\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLAG_CDTRCTS                  = 0x10\n\tTIOCFLAG_CLOCAL                   = 0x2\n\tTIOCFLAG_CRTSCTS                  = 0x4\n\tTIOCFLAG_MDMBUF                   = 0x8\n\tTIOCFLAG_SOFTCAR                  = 0x1\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGFLAGS                        = 0x4004745d\n\tTIOCGLINED                        = 0x40207442\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGQSIZE                        = 0x40047481\n\tTIOCGRANTPT                       = 0x20007447\n\tTIOCGSID                          = 0x40047463\n\tTIOCGSIZE                         = 0x40087468\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCPTMGET                        = 0x48087446\n\tTIOCPTSNAME                       = 0x48087448\n\tTIOCRCVFRAME                      = 0x80047445\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSFLAGS                        = 0x8004745c\n\tTIOCSIG                           = 0x2000745f\n\tTIOCSLINED                        = 0x80207443\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSQSIZE                        = 0x80047480\n\tTIOCSSIZE                         = 0x80087467\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x80047465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCUCNTL                         = 0x80047466\n\tTIOCXMTFRAME                      = 0x80047444\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWALL                              = 0x8\n\tWALLSIG                           = 0x8\n\tWALTSIG                           = 0x4\n\tWCLONE                            = 0x4\n\tWCOREFLAG                         = 0x80\n\tWNOHANG                           = 0x1\n\tWNOWAIT                           = 0x10000\n\tWNOZOMBIE                         = 0x20000\n\tWOPTSCHECKED                      = 0x40000\n\tWSTOPPED                          = 0x7f\n\tWUNTRACED                         = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x58)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x57)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x52)\n\tEILSEQ          = syscall.Errno(0x55)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x60)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5e)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x5d)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODATA         = syscall.Errno(0x59)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x5f)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x53)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x5a)\n\tENOSTR          = syscall.Errno(0x5b)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x56)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x60)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIME           = syscall.Errno(0x5c)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x20)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large or too small\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol option not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"connection timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIDRM\", \"identifier removed\"},\n\t{83, \"ENOMSG\", \"no message of desired type\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"EILSEQ\", \"illegal byte sequence\"},\n\t{86, \"ENOTSUP\", \"not supported\"},\n\t{87, \"ECANCELED\", \"operation Canceled\"},\n\t{88, \"EBADMSG\", \"bad or Corrupt message\"},\n\t{89, \"ENODATA\", \"no message available\"},\n\t{90, \"ENOSR\", \"no STREAM resources\"},\n\t{91, \"ENOSTR\", \"not a STREAM\"},\n\t{92, \"ETIME\", \"STREAM ioctl timeout\"},\n\t{93, \"ENOATTR\", \"attribute not found\"},\n\t{94, \"EMULTIHOP\", \"multihop attempted\"},\n\t{95, \"ENOLINK\", \"link has been severed\"},\n\t{96, \"ELAST\", \"protocol error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"stopped (signal)\"},\n\t{18, \"SIGTSTP\", \"stopped\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGPWR\", \"power fail/restart\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,netbsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_ARP                            = 0x1c\n\tAF_BLUETOOTH                      = 0x1f\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_HYLINK                         = 0xf\n\tAF_IEEE80211                      = 0x20\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x18\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x23\n\tAF_MPLS                           = 0x21\n\tAF_NATM                           = 0x1b\n\tAF_NS                             = 0x6\n\tAF_OROUTE                         = 0x11\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x22\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tARPHRD_ARCNET                     = 0x7\n\tARPHRD_ETHER                      = 0x1\n\tARPHRD_FRELAY                     = 0xf\n\tARPHRD_IEEE1394                   = 0x18\n\tARPHRD_IEEE802                    = 0x6\n\tARPHRD_STRIP                      = 0x17\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB460800                           = 0x70800\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB921600                           = 0xe1000\n\tB9600                             = 0x2580\n\tBIOCFEEDBACK                      = 0x8004427d\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc0104277\n\tBIOCGETIF                         = 0x4090426b\n\tBIOCGFEEDBACK                     = 0x4004427c\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRTIMEOUT                     = 0x4010427b\n\tBIOCGSEESENT                      = 0x40044278\n\tBIOCGSTATS                        = 0x4080426f\n\tBIOCGSTATSOLD                     = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDLT                          = 0x80044276\n\tBIOCSETF                          = 0x80104267\n\tBIOCSETIF                         = 0x8090426c\n\tBIOCSFEEDBACK                     = 0x8004427d\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRTIMEOUT                     = 0x8010427a\n\tBIOCSSEESENT                      = 0x80044279\n\tBIOCSTCPF                         = 0x80104272\n\tBIOCSUDPF                         = 0x80104273\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x8\n\tBPF_ALIGNMENT32                   = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DFLTBUFSIZE                   = 0x100000\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x1000000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLONE_CSIGNAL                     = 0xff\n\tCLONE_FILES                       = 0x400\n\tCLONE_FS                          = 0x200\n\tCLONE_PID                         = 0x1000\n\tCLONE_PTRACE                      = 0x2000\n\tCLONE_SIGHAND                     = 0x800\n\tCLONE_VFORK                       = 0x4000\n\tCLONE_VM                          = 0x100\n\tCPUSTATES                         = 0x5\n\tCP_IDLE                           = 0x4\n\tCP_INTR                           = 0x3\n\tCP_NICE                           = 0x1\n\tCP_SYS                            = 0x2\n\tCP_USER                           = 0x0\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x10000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0x14\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tCTL_QUERY                         = -0x2\n\tDIOCBSFLUSH                       = 0x20006478\n\tDLT_A429                          = 0xb8\n\tDLT_A653_ICM                      = 0xb9\n\tDLT_AIRONET_HEADER                = 0x78\n\tDLT_AOS                           = 0xde\n\tDLT_APPLE_IP_OVER_IEEE1394        = 0x8a\n\tDLT_ARCNET                        = 0x7\n\tDLT_ARCNET_LINUX                  = 0x81\n\tDLT_ATM_CLIP                      = 0x13\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AURORA                        = 0x7e\n\tDLT_AX25                          = 0x3\n\tDLT_AX25_KISS                     = 0xca\n\tDLT_BACNET_MS_TP                  = 0xa5\n\tDLT_BLUETOOTH_HCI_H4              = 0xbb\n\tDLT_BLUETOOTH_HCI_H4_WITH_PHDR    = 0xc9\n\tDLT_CAN20B                        = 0xbe\n\tDLT_CAN_SOCKETCAN                 = 0xe3\n\tDLT_CHAOS                         = 0x5\n\tDLT_CISCO_IOS                     = 0x76\n\tDLT_C_HDLC                        = 0x68\n\tDLT_C_HDLC_WITH_DIR               = 0xcd\n\tDLT_DECT                          = 0xdd\n\tDLT_DOCSIS                        = 0x8f\n\tDLT_ECONET                        = 0x73\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0x6d\n\tDLT_ERF                           = 0xc5\n\tDLT_ERF_ETH                       = 0xaf\n\tDLT_ERF_POS                       = 0xb0\n\tDLT_FC_2                          = 0xe0\n\tDLT_FC_2_WITH_FRAME_DELIMS        = 0xe1\n\tDLT_FDDI                          = 0xa\n\tDLT_FLEXRAY                       = 0xd2\n\tDLT_FRELAY                        = 0x6b\n\tDLT_FRELAY_WITH_DIR               = 0xce\n\tDLT_GCOM_SERIAL                   = 0xad\n\tDLT_GCOM_T1E1                     = 0xac\n\tDLT_GPF_F                         = 0xab\n\tDLT_GPF_T                         = 0xaa\n\tDLT_GPRS_LLC                      = 0xa9\n\tDLT_GSMTAP_ABIS                   = 0xda\n\tDLT_GSMTAP_UM                     = 0xd9\n\tDLT_HDLC                          = 0x10\n\tDLT_HHDLC                         = 0x79\n\tDLT_HIPPI                         = 0xf\n\tDLT_IBM_SN                        = 0x92\n\tDLT_IBM_SP                        = 0x91\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS          = 0xa3\n\tDLT_IEEE802_15_4                  = 0xc3\n\tDLT_IEEE802_15_4_LINUX            = 0xbf\n\tDLT_IEEE802_15_4_NONASK_PHY       = 0xd7\n\tDLT_IEEE802_16_MAC_CPS            = 0xbc\n\tDLT_IEEE802_16_MAC_CPS_RADIO      = 0xc1\n\tDLT_IPMB                          = 0xc7\n\tDLT_IPMB_LINUX                    = 0xd1\n\tDLT_IPNET                         = 0xe2\n\tDLT_IPV4                          = 0xe4\n\tDLT_IPV6                          = 0xe5\n\tDLT_IP_OVER_FC                    = 0x7a\n\tDLT_JUNIPER_ATM1                  = 0x89\n\tDLT_JUNIPER_ATM2                  = 0x87\n\tDLT_JUNIPER_CHDLC                 = 0xb5\n\tDLT_JUNIPER_ES                    = 0x84\n\tDLT_JUNIPER_ETHER                 = 0xb2\n\tDLT_JUNIPER_FRELAY                = 0xb4\n\tDLT_JUNIPER_GGSN                  = 0x85\n\tDLT_JUNIPER_ISM                   = 0xc2\n\tDLT_JUNIPER_MFR                   = 0x86\n\tDLT_JUNIPER_MLFR                  = 0x83\n\tDLT_JUNIPER_MLPPP                 = 0x82\n\tDLT_JUNIPER_MONITOR               = 0xa4\n\tDLT_JUNIPER_PIC_PEER              = 0xae\n\tDLT_JUNIPER_PPP                   = 0xb3\n\tDLT_JUNIPER_PPPOE                 = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM             = 0xa8\n\tDLT_JUNIPER_SERVICES              = 0x88\n\tDLT_JUNIPER_ST                    = 0xc8\n\tDLT_JUNIPER_VP                    = 0xb7\n\tDLT_LAPB_WITH_DIR                 = 0xcf\n\tDLT_LAPD                          = 0xcb\n\tDLT_LIN                           = 0xd4\n\tDLT_LINUX_EVDEV                   = 0xd8\n\tDLT_LINUX_IRDA                    = 0x90\n\tDLT_LINUX_LAPD                    = 0xb1\n\tDLT_LINUX_SLL                     = 0x71\n\tDLT_LOOP                          = 0x6c\n\tDLT_LTALK                         = 0x72\n\tDLT_MFR                           = 0xb6\n\tDLT_MOST                          = 0xd3\n\tDLT_MPLS                          = 0xdb\n\tDLT_MTP2                          = 0x8c\n\tDLT_MTP2_WITH_PHDR                = 0x8b\n\tDLT_MTP3                          = 0x8d\n\tDLT_NULL                          = 0x0\n\tDLT_PCI_EXP                       = 0x7d\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPI                           = 0xc0\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0xe\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_PPPD                      = 0xa6\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PPP_WITH_DIR                  = 0xcc\n\tDLT_PRISM_HEADER                  = 0x77\n\tDLT_PRONET                        = 0x4\n\tDLT_RAIF1                         = 0xc6\n\tDLT_RAW                           = 0xc\n\tDLT_RAWAF_MASK                    = 0x2240000\n\tDLT_RIO                           = 0x7c\n\tDLT_SCCP                          = 0x8e\n\tDLT_SITA                          = 0xc4\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xd\n\tDLT_SUNATM                        = 0x7b\n\tDLT_SYMANTEC_FIREWALL             = 0x63\n\tDLT_TZSP                          = 0x80\n\tDLT_USB                           = 0xba\n\tDLT_USB_LINUX                     = 0xbd\n\tDLT_USB_LINUX_MMAPPED             = 0xdc\n\tDLT_WIHART                        = 0xdf\n\tDLT_X2E_SERIAL                    = 0xd5\n\tDLT_X2E_XORAYA                    = 0xd6\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tDT_WHT                            = 0xe\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEMUL_LINUX                        = 0x1\n\tEMUL_LINUX32                      = 0x5\n\tEMUL_MAXID                        = 0x6\n\tETHERCAP_JUMBO_MTU                = 0x4\n\tETHERCAP_VLAN_HWTAGGING           = 0x2\n\tETHERCAP_VLAN_MTU                 = 0x1\n\tETHERMIN                          = 0x2e\n\tETHERMTU                          = 0x5dc\n\tETHERMTU_JUMBO                    = 0x2328\n\tETHERTYPE_8023                    = 0x4\n\tETHERTYPE_AARP                    = 0x80f3\n\tETHERTYPE_ACCTON                  = 0x8390\n\tETHERTYPE_AEONIC                  = 0x8036\n\tETHERTYPE_ALPHA                   = 0x814a\n\tETHERTYPE_AMBER                   = 0x6008\n\tETHERTYPE_AMOEBA                  = 0x8145\n\tETHERTYPE_APOLLO                  = 0x80f7\n\tETHERTYPE_APOLLODOMAIN            = 0x8019\n\tETHERTYPE_APPLETALK               = 0x809b\n\tETHERTYPE_APPLITEK                = 0x80c7\n\tETHERTYPE_ARGONAUT                = 0x803a\n\tETHERTYPE_ARP                     = 0x806\n\tETHERTYPE_AT                      = 0x809b\n\tETHERTYPE_ATALK                   = 0x809b\n\tETHERTYPE_ATOMIC                  = 0x86df\n\tETHERTYPE_ATT                     = 0x8069\n\tETHERTYPE_ATTSTANFORD             = 0x8008\n\tETHERTYPE_AUTOPHON                = 0x806a\n\tETHERTYPE_AXIS                    = 0x8856\n\tETHERTYPE_BCLOOP                  = 0x9003\n\tETHERTYPE_BOFL                    = 0x8102\n\tETHERTYPE_CABLETRON               = 0x7034\n\tETHERTYPE_CHAOS                   = 0x804\n\tETHERTYPE_COMDESIGN               = 0x806c\n\tETHERTYPE_COMPUGRAPHIC            = 0x806d\n\tETHERTYPE_COUNTERPOINT            = 0x8062\n\tETHERTYPE_CRONUS                  = 0x8004\n\tETHERTYPE_CRONUSVLN               = 0x8003\n\tETHERTYPE_DCA                     = 0x1234\n\tETHERTYPE_DDE                     = 0x807b\n\tETHERTYPE_DEBNI                   = 0xaaaa\n\tETHERTYPE_DECAM                   = 0x8048\n\tETHERTYPE_DECCUST                 = 0x6006\n\tETHERTYPE_DECDIAG                 = 0x6005\n\tETHERTYPE_DECDNS                  = 0x803c\n\tETHERTYPE_DECDTS                  = 0x803e\n\tETHERTYPE_DECEXPER                = 0x6000\n\tETHERTYPE_DECLAST                 = 0x8041\n\tETHERTYPE_DECLTM                  = 0x803f\n\tETHERTYPE_DECMUMPS                = 0x6009\n\tETHERTYPE_DECNETBIOS              = 0x8040\n\tETHERTYPE_DELTACON                = 0x86de\n\tETHERTYPE_DIDDLE                  = 0x4321\n\tETHERTYPE_DLOG1                   = 0x660\n\tETHERTYPE_DLOG2                   = 0x661\n\tETHERTYPE_DN                      = 0x6003\n\tETHERTYPE_DOGFIGHT                = 0x1989\n\tETHERTYPE_DSMD                    = 0x8039\n\tETHERTYPE_ECMA                    = 0x803\n\tETHERTYPE_ENCRYPT                 = 0x803d\n\tETHERTYPE_ES                      = 0x805d\n\tETHERTYPE_EXCELAN                 = 0x8010\n\tETHERTYPE_EXPERDATA               = 0x8049\n\tETHERTYPE_FLIP                    = 0x8146\n\tETHERTYPE_FLOWCONTROL             = 0x8808\n\tETHERTYPE_FRARP                   = 0x808\n\tETHERTYPE_GENDYN                  = 0x8068\n\tETHERTYPE_HAYES                   = 0x8130\n\tETHERTYPE_HIPPI_FP                = 0x8180\n\tETHERTYPE_HITACHI                 = 0x8820\n\tETHERTYPE_HP                      = 0x8005\n\tETHERTYPE_IEEEPUP                 = 0xa00\n\tETHERTYPE_IEEEPUPAT               = 0xa01\n\tETHERTYPE_IMLBL                   = 0x4c42\n\tETHERTYPE_IMLBLDIAG               = 0x424c\n\tETHERTYPE_IP                      = 0x800\n\tETHERTYPE_IPAS                    = 0x876c\n\tETHERTYPE_IPV6                    = 0x86dd\n\tETHERTYPE_IPX                     = 0x8137\n\tETHERTYPE_IPXNEW                  = 0x8037\n\tETHERTYPE_KALPANA                 = 0x8582\n\tETHERTYPE_LANBRIDGE               = 0x8038\n\tETHERTYPE_LANPROBE                = 0x8888\n\tETHERTYPE_LAT                     = 0x6004\n\tETHERTYPE_LBACK                   = 0x9000\n\tETHERTYPE_LITTLE                  = 0x8060\n\tETHERTYPE_LOGICRAFT               = 0x8148\n\tETHERTYPE_LOOPBACK                = 0x9000\n\tETHERTYPE_MATRA                   = 0x807a\n\tETHERTYPE_MAX                     = 0xffff\n\tETHERTYPE_MERIT                   = 0x807c\n\tETHERTYPE_MICP                    = 0x873a\n\tETHERTYPE_MOPDL                   = 0x6001\n\tETHERTYPE_MOPRC                   = 0x6002\n\tETHERTYPE_MOTOROLA                = 0x818d\n\tETHERTYPE_MPLS                    = 0x8847\n\tETHERTYPE_MPLS_MCAST              = 0x8848\n\tETHERTYPE_MUMPS                   = 0x813f\n\tETHERTYPE_NBPCC                   = 0x3c04\n\tETHERTYPE_NBPCLAIM                = 0x3c09\n\tETHERTYPE_NBPCLREQ                = 0x3c05\n\tETHERTYPE_NBPCLRSP                = 0x3c06\n\tETHERTYPE_NBPCREQ                 = 0x3c02\n\tETHERTYPE_NBPCRSP                 = 0x3c03\n\tETHERTYPE_NBPDG                   = 0x3c07\n\tETHERTYPE_NBPDGB                  = 0x3c08\n\tETHERTYPE_NBPDLTE                 = 0x3c0a\n\tETHERTYPE_NBPRAR                  = 0x3c0c\n\tETHERTYPE_NBPRAS                  = 0x3c0b\n\tETHERTYPE_NBPRST                  = 0x3c0d\n\tETHERTYPE_NBPSCD                  = 0x3c01\n\tETHERTYPE_NBPVCD                  = 0x3c00\n\tETHERTYPE_NBS                     = 0x802\n\tETHERTYPE_NCD                     = 0x8149\n\tETHERTYPE_NESTAR                  = 0x8006\n\tETHERTYPE_NETBEUI                 = 0x8191\n\tETHERTYPE_NOVELL                  = 0x8138\n\tETHERTYPE_NS                      = 0x600\n\tETHERTYPE_NSAT                    = 0x601\n\tETHERTYPE_NSCOMPAT                = 0x807\n\tETHERTYPE_NTRAILER                = 0x10\n\tETHERTYPE_OS9                     = 0x7007\n\tETHERTYPE_OS9NET                  = 0x7009\n\tETHERTYPE_PACER                   = 0x80c6\n\tETHERTYPE_PAE                     = 0x888e\n\tETHERTYPE_PCS                     = 0x4242\n\tETHERTYPE_PLANNING                = 0x8044\n\tETHERTYPE_PPP                     = 0x880b\n\tETHERTYPE_PPPOE                   = 0x8864\n\tETHERTYPE_PPPOEDISC               = 0x8863\n\tETHERTYPE_PRIMENTS                = 0x7031\n\tETHERTYPE_PUP                     = 0x200\n\tETHERTYPE_PUPAT                   = 0x200\n\tETHERTYPE_RACAL                   = 0x7030\n\tETHERTYPE_RATIONAL                = 0x8150\n\tETHERTYPE_RAWFR                   = 0x6559\n\tETHERTYPE_RCL                     = 0x1995\n\tETHERTYPE_RDP                     = 0x8739\n\tETHERTYPE_RETIX                   = 0x80f2\n\tETHERTYPE_REVARP                  = 0x8035\n\tETHERTYPE_SCA                     = 0x6007\n\tETHERTYPE_SECTRA                  = 0x86db\n\tETHERTYPE_SECUREDATA              = 0x876d\n\tETHERTYPE_SGITW                   = 0x817e\n\tETHERTYPE_SG_BOUNCE               = 0x8016\n\tETHERTYPE_SG_DIAG                 = 0x8013\n\tETHERTYPE_SG_NETGAMES             = 0x8014\n\tETHERTYPE_SG_RESV                 = 0x8015\n\tETHERTYPE_SIMNET                  = 0x5208\n\tETHERTYPE_SLOWPROTOCOLS           = 0x8809\n\tETHERTYPE_SNA                     = 0x80d5\n\tETHERTYPE_SNMP                    = 0x814c\n\tETHERTYPE_SONIX                   = 0xfaf5\n\tETHERTYPE_SPIDER                  = 0x809f\n\tETHERTYPE_SPRITE                  = 0x500\n\tETHERTYPE_STP                     = 0x8181\n\tETHERTYPE_TALARIS                 = 0x812b\n\tETHERTYPE_TALARISMC               = 0x852b\n\tETHERTYPE_TCPCOMP                 = 0x876b\n\tETHERTYPE_TCPSM                   = 0x9002\n\tETHERTYPE_TEC                     = 0x814f\n\tETHERTYPE_TIGAN                   = 0x802f\n\tETHERTYPE_TRAIL                   = 0x1000\n\tETHERTYPE_TRANSETHER              = 0x6558\n\tETHERTYPE_TYMSHARE                = 0x802e\n\tETHERTYPE_UBBST                   = 0x7005\n\tETHERTYPE_UBDEBUG                 = 0x900\n\tETHERTYPE_UBDIAGLOOP              = 0x7002\n\tETHERTYPE_UBDL                    = 0x7000\n\tETHERTYPE_UBNIU                   = 0x7001\n\tETHERTYPE_UBNMC                   = 0x7003\n\tETHERTYPE_VALID                   = 0x1600\n\tETHERTYPE_VARIAN                  = 0x80dd\n\tETHERTYPE_VAXELN                  = 0x803b\n\tETHERTYPE_VEECO                   = 0x8067\n\tETHERTYPE_VEXP                    = 0x805b\n\tETHERTYPE_VGLAB                   = 0x8131\n\tETHERTYPE_VINES                   = 0xbad\n\tETHERTYPE_VINESECHO               = 0xbaf\n\tETHERTYPE_VINESLOOP               = 0xbae\n\tETHERTYPE_VITAL                   = 0xff00\n\tETHERTYPE_VLAN                    = 0x8100\n\tETHERTYPE_VLTLMAN                 = 0x8080\n\tETHERTYPE_VPROD                   = 0x805c\n\tETHERTYPE_VURESERVED              = 0x8147\n\tETHERTYPE_WATERLOO                = 0x8130\n\tETHERTYPE_WELLFLEET               = 0x8103\n\tETHERTYPE_X25                     = 0x805\n\tETHERTYPE_X75                     = 0x801\n\tETHERTYPE_XNSSM                   = 0x9001\n\tETHERTYPE_XTP                     = 0x817d\n\tETHER_ADDR_LEN                    = 0x6\n\tETHER_CRC_LEN                     = 0x4\n\tETHER_CRC_POLY_BE                 = 0x4c11db6\n\tETHER_CRC_POLY_LE                 = 0xedb88320\n\tETHER_HDR_LEN                     = 0xe\n\tETHER_MAX_LEN                     = 0x5ee\n\tETHER_MAX_LEN_JUMBO               = 0x233a\n\tETHER_MIN_LEN                     = 0x40\n\tETHER_PPPOE_ENCAP_LEN             = 0x8\n\tETHER_TYPE_LEN                    = 0x2\n\tETHER_VLAN_ENCAP_LEN              = 0x4\n\tEVFILT_AIO                        = 0x2\n\tEVFILT_PROC                       = 0x4\n\tEVFILT_READ                       = 0x0\n\tEVFILT_SIGNAL                     = 0x5\n\tEVFILT_SYSCOUNT                   = 0x7\n\tEVFILT_TIMER                      = 0x6\n\tEVFILT_VNODE                      = 0x3\n\tEVFILT_WRITE                      = 0x1\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTATTR_CMD_START                 = 0x1\n\tEXTATTR_CMD_STOP                  = 0x2\n\tEXTATTR_NAMESPACE_SYSTEM          = 0x2\n\tEXTATTR_NAMESPACE_USER            = 0x1\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x100\n\tFLUSHO                            = 0x800000\n\tF_CLOSEM                          = 0xa\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0xc\n\tF_FSCTL                           = -0x80000000\n\tF_FSDIRMASK                       = 0x70000000\n\tF_FSIN                            = 0x10000000\n\tF_FSINOUT                         = 0x30000000\n\tF_FSOUT                           = 0x20000000\n\tF_FSPRIV                          = 0x8000\n\tF_FSVOID                          = 0x40000000\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETNOSIGPIPE                    = 0xd\n\tF_GETOWN                          = 0x5\n\tF_MAXFD                           = 0xb\n\tF_OK                              = 0x0\n\tF_PARAM_MASK                      = 0xfff\n\tF_PARAM_MAX                       = 0xfff\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETNOSIGPIPE                    = 0xe\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFA_ROUTE                         = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x8f52\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf8\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DOCSCABLEUPSTREAMCHANNEL      = 0xcd\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ECONET                        = 0xce\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf2\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INFINIBAND                    = 0xc7\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LINEGROUP                     = 0xd2\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_PON155                        = 0xcf\n\tIFT_PON622                        = 0xd0\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPATM                       = 0xc5\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf1\n\tIFT_Q2931                         = 0xc9\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SIPSIG                        = 0xcc\n\tIFT_SIPTG                         = 0xcb\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_STF                           = 0xd7\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TELINK                        = 0xc8\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VIRTUALTG                     = 0xca\n\tIFT_VOICEDID                      = 0xd5\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEEMFGD                    = 0xd3\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFGDEANA                  = 0xd4\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERCABLE                = 0xc6\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_IPV6_ICMP                 = 0x3a\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x34\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_VRRP                      = 0x70\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPSEC_POLICY                 = 0x1c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_EF                             = 0x8000\n\tIP_ERRORMTU                       = 0x15\n\tIP_HDRINCL                        = 0x2\n\tIP_IPSEC_POLICY                   = 0x16\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0x14\n\tIP_MF                             = 0x2000\n\tIP_MINFRAGSIZE                    = 0x45\n\tIP_MINTTL                         = 0x18\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVIF                         = 0x14\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVTTL                        = 0x17\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x6\n\tMADV_NORMAL                       = 0x0\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SPACEAVAIL                   = 0x5\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ALIGNMENT_16MB                = 0x18000000\n\tMAP_ALIGNMENT_1TB                 = 0x28000000\n\tMAP_ALIGNMENT_256TB               = 0x30000000\n\tMAP_ALIGNMENT_4GB                 = 0x20000000\n\tMAP_ALIGNMENT_64KB                = 0x10000000\n\tMAP_ALIGNMENT_64PB                = 0x38000000\n\tMAP_ALIGNMENT_MASK                = -0x1000000\n\tMAP_ALIGNMENT_SHIFT               = 0x18\n\tMAP_ANON                          = 0x1000\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_HASSEMAPHORE                  = 0x200\n\tMAP_INHERIT                       = 0x80\n\tMAP_INHERIT_COPY                  = 0x1\n\tMAP_INHERIT_DEFAULT               = 0x1\n\tMAP_INHERIT_DONATE_COPY           = 0x3\n\tMAP_INHERIT_NONE                  = 0x2\n\tMAP_INHERIT_SHARE                 = 0x0\n\tMAP_NORESERVE                     = 0x40\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_SHARED                        = 0x1\n\tMAP_STACK                         = 0x2000\n\tMAP_TRYFIXED                      = 0x400\n\tMAP_WIRED                         = 0x800\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_BASIC_FLAGS                   = 0xe782807f\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DISCARD                       = 0x800000\n\tMNT_EXKERB                        = 0x800\n\tMNT_EXNORESPORT                   = 0x8000000\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXPUBLIC                      = 0x10000000\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_EXTATTR                       = 0x1000000\n\tMNT_FORCE                         = 0x80000\n\tMNT_GETARGS                       = 0x400000\n\tMNT_IGNORE                        = 0x100000\n\tMNT_LAZY                          = 0x3\n\tMNT_LOCAL                         = 0x1000\n\tMNT_LOG                           = 0x2000000\n\tMNT_NOATIME                       = 0x4000000\n\tMNT_NOCOREDUMP                    = 0x8000\n\tMNT_NODEV                         = 0x10\n\tMNT_NODEVMTIME                    = 0x40000000\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOWAIT                        = 0x2\n\tMNT_OP_FLAGS                      = 0x4d0000\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELATIME                      = 0x20000\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x80000000\n\tMNT_SYMPERM                       = 0x20000000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UNION                         = 0x20\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0xff90ffff\n\tMNT_WAIT                          = 0x1\n\tMSG_BCAST                         = 0x100\n\tMSG_CMSG_CLOEXEC                  = 0x800\n\tMSG_CONTROLMBUF                   = 0x2000000\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOR                           = 0x8\n\tMSG_IOVUSRSPACE                   = 0x4000000\n\tMSG_LENUSRSPACE                   = 0x8000000\n\tMSG_MCAST                         = 0x200\n\tMSG_NAMEMBUF                      = 0x1000000\n\tMSG_NBIO                          = 0x1000\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_TRUNC                         = 0x10\n\tMSG_USERFLAGS                     = 0xffffff\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x2\n\tMS_SYNC                           = 0x4\n\tNAME_MAX                          = 0x1ff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x5\n\tNET_RT_MAXID                      = 0x6\n\tNET_RT_OIFLIST                    = 0x4\n\tNET_RT_OOIFLIST                   = 0x3\n\tNFDBITS                           = 0x20\n\tNOFLSH                            = 0x80000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOFIOGETBMAP                       = 0xc004667a\n\tONLCR                             = 0x2\n\tONLRET                            = 0x40\n\tONOCR                             = 0x20\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tO_ACCMODE                         = 0x3\n\tO_ALT_IO                          = 0x40000\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x400000\n\tO_CREAT                           = 0x200\n\tO_DIRECT                          = 0x80000\n\tO_DIRECTORY                       = 0x200000\n\tO_DSYNC                           = 0x10000\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_NOSIGPIPE                       = 0x1000000\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_RSYNC                           = 0x20000\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPRI_IOFLUSH                       = 0x7c\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tRLIMIT_AS                         = 0xa\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_MAX                          = 0x9\n\tRTAX_NETMASK                      = 0x2\n\tRTAX_TAG                          = 0x8\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_NETMASK                       = 0x4\n\tRTA_TAG                           = 0x100\n\tRTF_ANNOUNCE                      = 0x20000\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_CLONED                        = 0x2000\n\tRTF_CLONING                       = 0x100\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_MASK                          = 0x80\n\tRTF_MODIFIED                      = 0x20\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_REJECT                        = 0x8\n\tRTF_SRC                           = 0x10000\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_CHGADDR                       = 0x15\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_GET                           = 0x4\n\tRTM_IEEE80211                     = 0x11\n\tRTM_IFANNOUNCE                    = 0x10\n\tRTM_IFINFO                        = 0x14\n\tRTM_LLINFO_UPD                    = 0x13\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_OIFINFO                       = 0xf\n\tRTM_OLDADD                        = 0x9\n\tRTM_OLDDEL                        = 0xa\n\tRTM_OOIFINFO                      = 0xe\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_SETGATE                       = 0x12\n\tRTM_VERSION                       = 0x4\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tSCM_CREDS                         = 0x4\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x8\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80906931\n\tSIOCADDRT                         = 0x8038720a\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCALIFADDR                      = 0x8118691c\n\tSIOCATMARK                        = 0x40047307\n\tSIOCDELMULTI                      = 0x80906932\n\tSIOCDELRT                         = 0x8038720b\n\tSIOCDIFADDR                       = 0x80906919\n\tSIOCDIFPHYADDR                    = 0x80906949\n\tSIOCDLIFADDR                      = 0x8118691e\n\tSIOCGDRVSPEC                      = 0xc028697b\n\tSIOCGETPFSYNC                     = 0xc09069f8\n\tSIOCGETSGCNT                      = 0xc0207534\n\tSIOCGETVIFCNT                     = 0xc0287533\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0906921\n\tSIOCGIFADDRPREF                   = 0xc0986920\n\tSIOCGIFALIAS                      = 0xc040691b\n\tSIOCGIFBRDADDR                    = 0xc0906923\n\tSIOCGIFCAP                        = 0xc0206976\n\tSIOCGIFCONF                       = 0xc0106926\n\tSIOCGIFDATA                       = 0xc0986985\n\tSIOCGIFDLT                        = 0xc0906977\n\tSIOCGIFDSTADDR                    = 0xc0906922\n\tSIOCGIFFLAGS                      = 0xc0906911\n\tSIOCGIFGENERIC                    = 0xc090693a\n\tSIOCGIFMEDIA                      = 0xc0306936\n\tSIOCGIFMETRIC                     = 0xc0906917\n\tSIOCGIFMTU                        = 0xc090697e\n\tSIOCGIFNETMASK                    = 0xc0906925\n\tSIOCGIFPDSTADDR                   = 0xc0906948\n\tSIOCGIFPSRCADDR                   = 0xc0906947\n\tSIOCGLIFADDR                      = 0xc118691d\n\tSIOCGLIFPHYADDR                   = 0xc118694b\n\tSIOCGLINKSTR                      = 0xc0286987\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGVH                           = 0xc0906983\n\tSIOCIFCREATE                      = 0x8090697a\n\tSIOCIFDESTROY                     = 0x80906979\n\tSIOCIFGCLONERS                    = 0xc0106978\n\tSIOCINITIFADDR                    = 0xc0706984\n\tSIOCSDRVSPEC                      = 0x8028697b\n\tSIOCSETPFSYNC                     = 0x809069f7\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8090690c\n\tSIOCSIFADDRPREF                   = 0x8098691f\n\tSIOCSIFBRDADDR                    = 0x80906913\n\tSIOCSIFCAP                        = 0x80206975\n\tSIOCSIFDSTADDR                    = 0x8090690e\n\tSIOCSIFFLAGS                      = 0x80906910\n\tSIOCSIFGENERIC                    = 0x80906939\n\tSIOCSIFMEDIA                      = 0xc0906935\n\tSIOCSIFMETRIC                     = 0x80906918\n\tSIOCSIFMTU                        = 0x8090697f\n\tSIOCSIFNETMASK                    = 0x80906916\n\tSIOCSIFPHYADDR                    = 0x80406946\n\tSIOCSLIFPHYADDR                   = 0x8118694a\n\tSIOCSLINKSTR                      = 0x80286988\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSIOCSVH                           = 0xc0906982\n\tSIOCZIFDATA                       = 0xc0986986\n\tSOCK_CLOEXEC                      = 0x10000000\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_FLAGS_MASK                   = 0xf0000000\n\tSOCK_NONBLOCK                     = 0x20000000\n\tSOCK_NOSIGPIPE                    = 0x40000000\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_ACCEPTFILTER                   = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NOHEADER                       = 0x100a\n\tSO_NOSIGPIPE                      = 0x800\n\tSO_OOBINLINE                      = 0x100\n\tSO_OVERFLOWED                     = 0x1009\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x100c\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x100b\n\tSO_TIMESTAMP                      = 0x2000\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tSYSCTL_VERSION                    = 0x1000000\n\tSYSCTL_VERS_0                     = 0x0\n\tSYSCTL_VERS_1                     = 0x1000000\n\tSYSCTL_VERS_MASK                  = 0xff000000\n\tS_ARCH1                           = 0x10000\n\tS_ARCH2                           = 0x20000\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IFWHT                           = 0xe000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tS_LOGIN_SET                       = 0x1\n\tTCIFLUSH                          = 0x1\n\tTCIOFLUSH                         = 0x3\n\tTCOFLUSH                          = 0x2\n\tTCP_CONGCTL                       = 0x20\n\tTCP_KEEPCNT                       = 0x6\n\tTCP_KEEPIDLE                      = 0x3\n\tTCP_KEEPINIT                      = 0x7\n\tTCP_KEEPINTVL                     = 0x5\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MD5SIG                        = 0x10\n\tTCP_MINMSS                        = 0xd8\n\tTCP_MSS                           = 0x218\n\tTCP_NODELAY                       = 0x1\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDCDTIMESTAMP                  = 0x40107458\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLAG_CDTRCTS                  = 0x10\n\tTIOCFLAG_CLOCAL                   = 0x2\n\tTIOCFLAG_CRTSCTS                  = 0x4\n\tTIOCFLAG_MDMBUF                   = 0x8\n\tTIOCFLAG_SOFTCAR                  = 0x1\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGFLAGS                        = 0x4004745d\n\tTIOCGLINED                        = 0x40207442\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGQSIZE                        = 0x40047481\n\tTIOCGRANTPT                       = 0x20007447\n\tTIOCGSID                          = 0x40047463\n\tTIOCGSIZE                         = 0x40087468\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCPTMGET                        = 0x40287446\n\tTIOCPTSNAME                       = 0x40287448\n\tTIOCRCVFRAME                      = 0x80087445\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSFLAGS                        = 0x8004745c\n\tTIOCSIG                           = 0x2000745f\n\tTIOCSLINED                        = 0x80207443\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSQSIZE                        = 0x80047480\n\tTIOCSSIZE                         = 0x80087467\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x80047465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCUCNTL                         = 0x80047466\n\tTIOCXMTFRAME                      = 0x80087444\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWALL                              = 0x8\n\tWALLSIG                           = 0x8\n\tWALTSIG                           = 0x4\n\tWCLONE                            = 0x4\n\tWCOREFLAG                         = 0x80\n\tWNOHANG                           = 0x1\n\tWNOWAIT                           = 0x10000\n\tWNOZOMBIE                         = 0x20000\n\tWOPTSCHECKED                      = 0x40000\n\tWSTOPPED                          = 0x7f\n\tWUNTRACED                         = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x58)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x57)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x52)\n\tEILSEQ          = syscall.Errno(0x55)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x60)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tEMULTIHOP       = syscall.Errno(0x5e)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x5d)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODATA         = syscall.Errno(0x59)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOLINK         = syscall.Errno(0x5f)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x53)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x5a)\n\tENOSTR          = syscall.Errno(0x5b)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x56)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x54)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x60)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIME           = syscall.Errno(0x5c)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGPWR    = syscall.Signal(0x20)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large or too small\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol option not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"connection timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disc quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC prog. not avail\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIDRM\", \"identifier removed\"},\n\t{83, \"ENOMSG\", \"no message of desired type\"},\n\t{84, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{85, \"EILSEQ\", \"illegal byte sequence\"},\n\t{86, \"ENOTSUP\", \"not supported\"},\n\t{87, \"ECANCELED\", \"operation Canceled\"},\n\t{88, \"EBADMSG\", \"bad or Corrupt message\"},\n\t{89, \"ENODATA\", \"no message available\"},\n\t{90, \"ENOSR\", \"no STREAM resources\"},\n\t{91, \"ENOSTR\", \"not a STREAM\"},\n\t{92, \"ETIME\", \"STREAM ioctl timeout\"},\n\t{93, \"ENOATTR\", \"attribute not found\"},\n\t{94, \"EMULTIHOP\", \"multihop attempted\"},\n\t{95, \"ENOLINK\", \"link has been severed\"},\n\t{96, \"ELAST\", \"protocol error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGIOT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"stopped (signal)\"},\n\t{18, \"SIGTSTP\", \"stopped\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGPWR\", \"power fail/restart\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go",
    "content": "// mkerrors.sh -m32\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,openbsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m32 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_BLUETOOTH                      = 0x20\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_ENCAP                          = 0x1c\n\tAF_HYLINK                         = 0xf\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x18\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_KEY                            = 0x1e\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x24\n\tAF_MPLS                           = 0x21\n\tAF_NATM                           = 0x1b\n\tAF_NS                             = 0x6\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x1d\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tARPHRD_ETHER                      = 0x1\n\tARPHRD_FRELAY                     = 0xf\n\tARPHRD_IEEE1394                   = 0x18\n\tARPHRD_IEEE802                    = 0x6\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDIRFILT                      = 0x4004427c\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc008427b\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGFILDROP                      = 0x40044278\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044273\n\tBIOCGRTIMEOUT                     = 0x400c426e\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCLOCK                          = 0x20004276\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDIRFILT                      = 0x8004427d\n\tBIOCSDLT                          = 0x8004427a\n\tBIOCSETF                          = 0x80084267\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSETWF                         = 0x80084277\n\tBIOCSFILDROP                      = 0x80044279\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044272\n\tBIOCSRTIMEOUT                     = 0x800c426d\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DIRECTION_IN                  = 0x1\n\tBPF_DIRECTION_OUT                 = 0x2\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x200000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCPUSTATES                         = 0x6\n\tCP_IDLE                           = 0x5\n\tCP_INTR                           = 0x4\n\tCP_NICE                           = 0x1\n\tCP_SPIN                           = 0x3\n\tCP_SYS                            = 0x2\n\tCP_USER                           = 0x0\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x10000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0xff\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDIOCOSFPFLUSH                     = 0x2000444e\n\tDLT_ARCNET                        = 0x7\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AX25                          = 0x3\n\tDLT_CHAOS                         = 0x5\n\tDLT_C_HDLC                        = 0x68\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0xd\n\tDLT_FDDI                          = 0xa\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_LOOP                          = 0xc\n\tDLT_MPLS                          = 0xdb\n\tDLT_NULL                          = 0x0\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PRONET                        = 0x4\n\tDLT_RAW                           = 0xe\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEMT_TAGOVF                        = 0x1\n\tEMUL_ENABLED                      = 0x1\n\tEMUL_NATIVE                       = 0x2\n\tENDRUNDISC                        = 0x9\n\tETHERMIN                          = 0x2e\n\tETHERMTU                          = 0x5dc\n\tETHERTYPE_8023                    = 0x4\n\tETHERTYPE_AARP                    = 0x80f3\n\tETHERTYPE_ACCTON                  = 0x8390\n\tETHERTYPE_AEONIC                  = 0x8036\n\tETHERTYPE_ALPHA                   = 0x814a\n\tETHERTYPE_AMBER                   = 0x6008\n\tETHERTYPE_AMOEBA                  = 0x8145\n\tETHERTYPE_AOE                     = 0x88a2\n\tETHERTYPE_APOLLO                  = 0x80f7\n\tETHERTYPE_APOLLODOMAIN            = 0x8019\n\tETHERTYPE_APPLETALK               = 0x809b\n\tETHERTYPE_APPLITEK                = 0x80c7\n\tETHERTYPE_ARGONAUT                = 0x803a\n\tETHERTYPE_ARP                     = 0x806\n\tETHERTYPE_AT                      = 0x809b\n\tETHERTYPE_ATALK                   = 0x809b\n\tETHERTYPE_ATOMIC                  = 0x86df\n\tETHERTYPE_ATT                     = 0x8069\n\tETHERTYPE_ATTSTANFORD             = 0x8008\n\tETHERTYPE_AUTOPHON                = 0x806a\n\tETHERTYPE_AXIS                    = 0x8856\n\tETHERTYPE_BCLOOP                  = 0x9003\n\tETHERTYPE_BOFL                    = 0x8102\n\tETHERTYPE_CABLETRON               = 0x7034\n\tETHERTYPE_CHAOS                   = 0x804\n\tETHERTYPE_COMDESIGN               = 0x806c\n\tETHERTYPE_COMPUGRAPHIC            = 0x806d\n\tETHERTYPE_COUNTERPOINT            = 0x8062\n\tETHERTYPE_CRONUS                  = 0x8004\n\tETHERTYPE_CRONUSVLN               = 0x8003\n\tETHERTYPE_DCA                     = 0x1234\n\tETHERTYPE_DDE                     = 0x807b\n\tETHERTYPE_DEBNI                   = 0xaaaa\n\tETHERTYPE_DECAM                   = 0x8048\n\tETHERTYPE_DECCUST                 = 0x6006\n\tETHERTYPE_DECDIAG                 = 0x6005\n\tETHERTYPE_DECDNS                  = 0x803c\n\tETHERTYPE_DECDTS                  = 0x803e\n\tETHERTYPE_DECEXPER                = 0x6000\n\tETHERTYPE_DECLAST                 = 0x8041\n\tETHERTYPE_DECLTM                  = 0x803f\n\tETHERTYPE_DECMUMPS                = 0x6009\n\tETHERTYPE_DECNETBIOS              = 0x8040\n\tETHERTYPE_DELTACON                = 0x86de\n\tETHERTYPE_DIDDLE                  = 0x4321\n\tETHERTYPE_DLOG1                   = 0x660\n\tETHERTYPE_DLOG2                   = 0x661\n\tETHERTYPE_DN                      = 0x6003\n\tETHERTYPE_DOGFIGHT                = 0x1989\n\tETHERTYPE_DSMD                    = 0x8039\n\tETHERTYPE_ECMA                    = 0x803\n\tETHERTYPE_ENCRYPT                 = 0x803d\n\tETHERTYPE_ES                      = 0x805d\n\tETHERTYPE_EXCELAN                 = 0x8010\n\tETHERTYPE_EXPERDATA               = 0x8049\n\tETHERTYPE_FLIP                    = 0x8146\n\tETHERTYPE_FLOWCONTROL             = 0x8808\n\tETHERTYPE_FRARP                   = 0x808\n\tETHERTYPE_GENDYN                  = 0x8068\n\tETHERTYPE_HAYES                   = 0x8130\n\tETHERTYPE_HIPPI_FP                = 0x8180\n\tETHERTYPE_HITACHI                 = 0x8820\n\tETHERTYPE_HP                      = 0x8005\n\tETHERTYPE_IEEEPUP                 = 0xa00\n\tETHERTYPE_IEEEPUPAT               = 0xa01\n\tETHERTYPE_IMLBL                   = 0x4c42\n\tETHERTYPE_IMLBLDIAG               = 0x424c\n\tETHERTYPE_IP                      = 0x800\n\tETHERTYPE_IPAS                    = 0x876c\n\tETHERTYPE_IPV6                    = 0x86dd\n\tETHERTYPE_IPX                     = 0x8137\n\tETHERTYPE_IPXNEW                  = 0x8037\n\tETHERTYPE_KALPANA                 = 0x8582\n\tETHERTYPE_LANBRIDGE               = 0x8038\n\tETHERTYPE_LANPROBE                = 0x8888\n\tETHERTYPE_LAT                     = 0x6004\n\tETHERTYPE_LBACK                   = 0x9000\n\tETHERTYPE_LITTLE                  = 0x8060\n\tETHERTYPE_LLDP                    = 0x88cc\n\tETHERTYPE_LOGICRAFT               = 0x8148\n\tETHERTYPE_LOOPBACK                = 0x9000\n\tETHERTYPE_MATRA                   = 0x807a\n\tETHERTYPE_MAX                     = 0xffff\n\tETHERTYPE_MERIT                   = 0x807c\n\tETHERTYPE_MICP                    = 0x873a\n\tETHERTYPE_MOPDL                   = 0x6001\n\tETHERTYPE_MOPRC                   = 0x6002\n\tETHERTYPE_MOTOROLA                = 0x818d\n\tETHERTYPE_MPLS                    = 0x8847\n\tETHERTYPE_MPLS_MCAST              = 0x8848\n\tETHERTYPE_MUMPS                   = 0x813f\n\tETHERTYPE_NBPCC                   = 0x3c04\n\tETHERTYPE_NBPCLAIM                = 0x3c09\n\tETHERTYPE_NBPCLREQ                = 0x3c05\n\tETHERTYPE_NBPCLRSP                = 0x3c06\n\tETHERTYPE_NBPCREQ                 = 0x3c02\n\tETHERTYPE_NBPCRSP                 = 0x3c03\n\tETHERTYPE_NBPDG                   = 0x3c07\n\tETHERTYPE_NBPDGB                  = 0x3c08\n\tETHERTYPE_NBPDLTE                 = 0x3c0a\n\tETHERTYPE_NBPRAR                  = 0x3c0c\n\tETHERTYPE_NBPRAS                  = 0x3c0b\n\tETHERTYPE_NBPRST                  = 0x3c0d\n\tETHERTYPE_NBPSCD                  = 0x3c01\n\tETHERTYPE_NBPVCD                  = 0x3c00\n\tETHERTYPE_NBS                     = 0x802\n\tETHERTYPE_NCD                     = 0x8149\n\tETHERTYPE_NESTAR                  = 0x8006\n\tETHERTYPE_NETBEUI                 = 0x8191\n\tETHERTYPE_NOVELL                  = 0x8138\n\tETHERTYPE_NS                      = 0x600\n\tETHERTYPE_NSAT                    = 0x601\n\tETHERTYPE_NSCOMPAT                = 0x807\n\tETHERTYPE_NTRAILER                = 0x10\n\tETHERTYPE_OS9                     = 0x7007\n\tETHERTYPE_OS9NET                  = 0x7009\n\tETHERTYPE_PACER                   = 0x80c6\n\tETHERTYPE_PAE                     = 0x888e\n\tETHERTYPE_PCS                     = 0x4242\n\tETHERTYPE_PLANNING                = 0x8044\n\tETHERTYPE_PPP                     = 0x880b\n\tETHERTYPE_PPPOE                   = 0x8864\n\tETHERTYPE_PPPOEDISC               = 0x8863\n\tETHERTYPE_PRIMENTS                = 0x7031\n\tETHERTYPE_PUP                     = 0x200\n\tETHERTYPE_PUPAT                   = 0x200\n\tETHERTYPE_QINQ                    = 0x88a8\n\tETHERTYPE_RACAL                   = 0x7030\n\tETHERTYPE_RATIONAL                = 0x8150\n\tETHERTYPE_RAWFR                   = 0x6559\n\tETHERTYPE_RCL                     = 0x1995\n\tETHERTYPE_RDP                     = 0x8739\n\tETHERTYPE_RETIX                   = 0x80f2\n\tETHERTYPE_REVARP                  = 0x8035\n\tETHERTYPE_SCA                     = 0x6007\n\tETHERTYPE_SECTRA                  = 0x86db\n\tETHERTYPE_SECUREDATA              = 0x876d\n\tETHERTYPE_SGITW                   = 0x817e\n\tETHERTYPE_SG_BOUNCE               = 0x8016\n\tETHERTYPE_SG_DIAG                 = 0x8013\n\tETHERTYPE_SG_NETGAMES             = 0x8014\n\tETHERTYPE_SG_RESV                 = 0x8015\n\tETHERTYPE_SIMNET                  = 0x5208\n\tETHERTYPE_SLOW                    = 0x8809\n\tETHERTYPE_SNA                     = 0x80d5\n\tETHERTYPE_SNMP                    = 0x814c\n\tETHERTYPE_SONIX                   = 0xfaf5\n\tETHERTYPE_SPIDER                  = 0x809f\n\tETHERTYPE_SPRITE                  = 0x500\n\tETHERTYPE_STP                     = 0x8181\n\tETHERTYPE_TALARIS                 = 0x812b\n\tETHERTYPE_TALARISMC               = 0x852b\n\tETHERTYPE_TCPCOMP                 = 0x876b\n\tETHERTYPE_TCPSM                   = 0x9002\n\tETHERTYPE_TEC                     = 0x814f\n\tETHERTYPE_TIGAN                   = 0x802f\n\tETHERTYPE_TRAIL                   = 0x1000\n\tETHERTYPE_TRANSETHER              = 0x6558\n\tETHERTYPE_TYMSHARE                = 0x802e\n\tETHERTYPE_UBBST                   = 0x7005\n\tETHERTYPE_UBDEBUG                 = 0x900\n\tETHERTYPE_UBDIAGLOOP              = 0x7002\n\tETHERTYPE_UBDL                    = 0x7000\n\tETHERTYPE_UBNIU                   = 0x7001\n\tETHERTYPE_UBNMC                   = 0x7003\n\tETHERTYPE_VALID                   = 0x1600\n\tETHERTYPE_VARIAN                  = 0x80dd\n\tETHERTYPE_VAXELN                  = 0x803b\n\tETHERTYPE_VEECO                   = 0x8067\n\tETHERTYPE_VEXP                    = 0x805b\n\tETHERTYPE_VGLAB                   = 0x8131\n\tETHERTYPE_VINES                   = 0xbad\n\tETHERTYPE_VINESECHO               = 0xbaf\n\tETHERTYPE_VINESLOOP               = 0xbae\n\tETHERTYPE_VITAL                   = 0xff00\n\tETHERTYPE_VLAN                    = 0x8100\n\tETHERTYPE_VLTLMAN                 = 0x8080\n\tETHERTYPE_VPROD                   = 0x805c\n\tETHERTYPE_VURESERVED              = 0x8147\n\tETHERTYPE_WATERLOO                = 0x8130\n\tETHERTYPE_WELLFLEET               = 0x8103\n\tETHERTYPE_X25                     = 0x805\n\tETHERTYPE_X75                     = 0x801\n\tETHERTYPE_XNSSM                   = 0x9001\n\tETHERTYPE_XTP                     = 0x817d\n\tETHER_ADDR_LEN                    = 0x6\n\tETHER_ALIGN                       = 0x2\n\tETHER_CRC_LEN                     = 0x4\n\tETHER_CRC_POLY_BE                 = 0x4c11db6\n\tETHER_CRC_POLY_LE                 = 0xedb88320\n\tETHER_HDR_LEN                     = 0xe\n\tETHER_MAX_DIX_LEN                 = 0x600\n\tETHER_MAX_LEN                     = 0x5ee\n\tETHER_MIN_LEN                     = 0x40\n\tETHER_TYPE_LEN                    = 0x2\n\tETHER_VLAN_ENCAP_LEN              = 0x4\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0x7\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFLUSHO                            = 0x800000\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0xa\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETOWN                          = 0x5\n\tF_OK                              = 0x0\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFA_ROUTE                         = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x8e52\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BLUETOOTH                     = 0xf8\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf7\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DOCSCABLEUPSTREAMCHANNEL      = 0xcd\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DUMMY                         = 0xf1\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ECONET                        = 0xce\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf3\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INFINIBAND                    = 0xc7\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LINEGROUP                     = 0xd2\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFLOW                         = 0xf9\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_PON155                        = 0xcf\n\tIFT_PON622                        = 0xd0\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPATM                       = 0xc5\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf2\n\tIFT_Q2931                         = 0xc9\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SIPSIG                        = 0xcc\n\tIFT_SIPTG                         = 0xcb\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TELINK                        = 0xc8\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VIRTUALTG                     = 0xca\n\tIFT_VOICEDID                      = 0xd5\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEEMFGD                    = 0xd3\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFGDEANA                  = 0xd4\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERCABLE                = 0xc6\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIN_RFC3021_HOST                   = 0x1\n\tIN_RFC3021_NET                    = 0xfffffffe\n\tIN_RFC3021_NSHIFT                 = 0x1f\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_DIVERT                    = 0x102\n\tIPPROTO_DIVERT_INIT               = 0x2\n\tIPPROTO_DIVERT_RESP               = 0x1\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x103\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_MPLS                      = 0x89\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_UDP                       = 0x11\n\tIPV6_AUTH_LEVEL                   = 0x35\n\tIPV6_AUTOFLOWLABEL                = 0x3b\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_ESP_NETWORK_LEVEL            = 0x37\n\tIPV6_ESP_TRANS_LEVEL              = 0x36\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPCOMP_LEVEL                 = 0x3c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_OPTIONS                      = 0x1\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PIPEX                        = 0x3f\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVDSTPORT                  = 0x40\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTABLE                       = 0x1021\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_AUTH_LEVEL                     = 0x14\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DIVERTFL                       = 0x1022\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_ESP_NETWORK_LEVEL              = 0x16\n\tIP_ESP_TRANS_LEVEL                = 0x15\n\tIP_HDRINCL                        = 0x2\n\tIP_IPCOMP_LEVEL                   = 0x1d\n\tIP_IPSECFLOWINFO                  = 0x24\n\tIP_IPSEC_LOCAL_AUTH               = 0x1b\n\tIP_IPSEC_LOCAL_CRED               = 0x19\n\tIP_IPSEC_LOCAL_ID                 = 0x17\n\tIP_IPSEC_REMOTE_AUTH              = 0x1c\n\tIP_IPSEC_REMOTE_CRED              = 0x1a\n\tIP_IPSEC_REMOTE_ID                = 0x18\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0xfff\n\tIP_MF                             = 0x2000\n\tIP_MINTTL                         = 0x20\n\tIP_MIN_MEMBERSHIPS                = 0xf\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PIPEX                          = 0x22\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVDSTPORT                    = 0x21\n\tIP_RECVIF                         = 0x1e\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVRTABLE                     = 0x23\n\tIP_RECVTTL                        = 0x1f\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RTABLE                         = 0x1021\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLCNT_OVERLOAD_FLUSH               = 0x6\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x6\n\tMADV_NORMAL                       = 0x0\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SPACEAVAIL                   = 0x5\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_CONCEAL                       = 0x8000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_FLAGMASK                      = 0xfff7\n\tMAP_HASSEMAPHORE                  = 0x0\n\tMAP_INHERIT                       = 0x0\n\tMAP_INHERIT_COPY                  = 0x1\n\tMAP_INHERIT_NONE                  = 0x2\n\tMAP_INHERIT_SHARE                 = 0x0\n\tMAP_NOEXTEND                      = 0x100\n\tMAP_NORESERVE                     = 0x40\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x20\n\tMAP_SHARED                        = 0x1\n\tMAP_STACK                         = 0x4000\n\tMAP_TRYFIXED                      = 0x0\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DELEXPORT                     = 0x20000\n\tMNT_DOOMED                        = 0x8000000\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_FORCE                         = 0x80000\n\tMNT_LAZY                          = 0x3\n\tMNT_LOCAL                         = 0x1000\n\tMNT_NOATIME                       = 0x8000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x4000000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0x400ffff\n\tMNT_WAIT                          = 0x1\n\tMNT_WANTRDWR                      = 0x2000000\n\tMNT_WXALLOWED                     = 0x800\n\tMSG_BCAST                         = 0x100\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOR                           = 0x8\n\tMSG_MCAST                         = 0x200\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_TRUNC                         = 0x10\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x4\n\tMS_SYNC                           = 0x2\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_MAXID                      = 0x6\n\tNET_RT_STATS                      = 0x4\n\tNET_RT_TABLE                      = 0x5\n\tNFDBITS                           = 0x20\n\tNOFLSH                            = 0x80000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EOF                          = 0x2\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRUNCATE                     = 0x80\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tONLCR                             = 0x2\n\tONLRET                            = 0x80\n\tONOCR                             = 0x40\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tO_ACCMODE                         = 0x3\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x10000\n\tO_CREAT                           = 0x200\n\tO_DIRECTORY                       = 0x20000\n\tO_DSYNC                           = 0x80\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_RSYNC                           = 0x80\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPF_FLUSH                          = 0x1\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tPT_MASK                           = 0x3ff000\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_LABEL                        = 0xa\n\tRTAX_MAX                          = 0xb\n\tRTAX_NETMASK                      = 0x2\n\tRTAX_SRC                          = 0x8\n\tRTAX_SRCMASK                      = 0x9\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_LABEL                         = 0x400\n\tRTA_NETMASK                       = 0x4\n\tRTA_SRC                           = 0x100\n\tRTA_SRCMASK                       = 0x200\n\tRTF_ANNOUNCE                      = 0x4000\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_CLONED                        = 0x10000\n\tRTF_CLONING                       = 0x100\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_FMASK                         = 0x10f808\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_MASK                          = 0x80\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MPATH                         = 0x40000\n\tRTF_MPLS                          = 0x100000\n\tRTF_PERMANENT_ARP                 = 0x2000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x2000\n\tRTF_REJECT                        = 0x8\n\tRTF_SOURCE                        = 0x20000\n\tRTF_STATIC                        = 0x800\n\tRTF_TUNNEL                        = 0x100000\n\tRTF_UP                            = 0x1\n\tRTF_USETRAILERS                   = 0x8000\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DESYNC                        = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_IFANNOUNCE                    = 0xf\n\tRTM_IFINFO                        = 0xe\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MAXSIZE                       = 0x800\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x5\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRT_TABLEID_MAX                    = 0xff\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tRUSAGE_THREAD                     = 0x1\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x4\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCAIFGROUP                      = 0x80246987\n\tSIOCALIFADDR                      = 0x8218691c\n\tSIOCATMARK                        = 0x40047307\n\tSIOCBRDGADD                       = 0x8054693c\n\tSIOCBRDGADDS                      = 0x80546941\n\tSIOCBRDGARL                       = 0x806e694d\n\tSIOCBRDGDADDR                     = 0x81286947\n\tSIOCBRDGDEL                       = 0x8054693d\n\tSIOCBRDGDELS                      = 0x80546942\n\tSIOCBRDGFLUSH                     = 0x80546948\n\tSIOCBRDGFRL                       = 0x806e694e\n\tSIOCBRDGGCACHE                    = 0xc0146941\n\tSIOCBRDGGFD                       = 0xc0146952\n\tSIOCBRDGGHT                       = 0xc0146951\n\tSIOCBRDGGIFFLGS                   = 0xc054693e\n\tSIOCBRDGGMA                       = 0xc0146953\n\tSIOCBRDGGPARAM                    = 0xc03c6958\n\tSIOCBRDGGPRI                      = 0xc0146950\n\tSIOCBRDGGRL                       = 0xc028694f\n\tSIOCBRDGGSIFS                     = 0xc054693c\n\tSIOCBRDGGTO                       = 0xc0146946\n\tSIOCBRDGIFS                       = 0xc0546942\n\tSIOCBRDGRTS                       = 0xc0186943\n\tSIOCBRDGSADDR                     = 0xc1286944\n\tSIOCBRDGSCACHE                    = 0x80146940\n\tSIOCBRDGSFD                       = 0x80146952\n\tSIOCBRDGSHT                       = 0x80146951\n\tSIOCBRDGSIFCOST                   = 0x80546955\n\tSIOCBRDGSIFFLGS                   = 0x8054693f\n\tSIOCBRDGSIFPRIO                   = 0x80546954\n\tSIOCBRDGSMA                       = 0x80146953\n\tSIOCBRDGSPRI                      = 0x80146950\n\tSIOCBRDGSPROTO                    = 0x8014695a\n\tSIOCBRDGSTO                       = 0x80146945\n\tSIOCBRDGSTXHC                     = 0x80146959\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFGROUP                      = 0x80246989\n\tSIOCDIFPHYADDR                    = 0x80206949\n\tSIOCDLIFADDR                      = 0x8218691e\n\tSIOCGETKALIVE                     = 0xc01869a4\n\tSIOCGETLABEL                      = 0x8020699a\n\tSIOCGETPFLOW                      = 0xc02069fe\n\tSIOCGETPFSYNC                     = 0xc02069f8\n\tSIOCGETSGCNT                      = 0xc0147534\n\tSIOCGETVIFCNT                     = 0xc0147533\n\tSIOCGETVLAN                       = 0xc0206990\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFASYNCMAP                   = 0xc020697c\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCONF                       = 0xc0086924\n\tSIOCGIFDATA                       = 0xc020691b\n\tSIOCGIFDESCR                      = 0xc0206981\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGATTR                      = 0xc024698b\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFGMEMB                      = 0xc024698a\n\tSIOCGIFGROUP                      = 0xc0246988\n\tSIOCGIFHARDMTU                    = 0xc02069a5\n\tSIOCGIFMEDIA                      = 0xc0286936\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc020697e\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPDSTADDR                   = 0xc0206948\n\tSIOCGIFPRIORITY                   = 0xc020699c\n\tSIOCGIFPSRCADDR                   = 0xc0206947\n\tSIOCGIFRDOMAIN                    = 0xc02069a0\n\tSIOCGIFRTLABEL                    = 0xc0206983\n\tSIOCGIFTIMESLOT                   = 0xc0206986\n\tSIOCGIFXFLAGS                     = 0xc020699e\n\tSIOCGLIFADDR                      = 0xc218691d\n\tSIOCGLIFPHYADDR                   = 0xc218694b\n\tSIOCGLIFPHYRTABLE                 = 0xc02069a2\n\tSIOCGLIFPHYTTL                    = 0xc02069a9\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGSPPPPARAMS                   = 0xc0206994\n\tSIOCGVH                           = 0xc02069f6\n\tSIOCGVNETID                       = 0xc02069a7\n\tSIOCIFCREATE                      = 0x8020697a\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc00c6978\n\tSIOCSETKALIVE                     = 0x801869a3\n\tSIOCSETLABEL                      = 0x80206999\n\tSIOCSETPFLOW                      = 0x802069fd\n\tSIOCSETPFSYNC                     = 0x802069f7\n\tSIOCSETVLAN                       = 0x8020698f\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFASYNCMAP                   = 0x8020697d\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFDESCR                      = 0x80206980\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGATTR                      = 0x8024698c\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFLLADDR                     = 0x8020691f\n\tSIOCSIFMEDIA                      = 0xc0206935\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x8020697f\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPHYADDR                    = 0x80406946\n\tSIOCSIFPRIORITY                   = 0x8020699b\n\tSIOCSIFRDOMAIN                    = 0x8020699f\n\tSIOCSIFRTLABEL                    = 0x80206982\n\tSIOCSIFTIMESLOT                   = 0x80206985\n\tSIOCSIFXFLAGS                     = 0x8020699d\n\tSIOCSLIFPHYADDR                   = 0x8218694a\n\tSIOCSLIFPHYRTABLE                 = 0x802069a1\n\tSIOCSLIFPHYTTL                    = 0x802069a8\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSIOCSSPPPPARAMS                   = 0x80206993\n\tSIOCSVH                           = 0xc02069f5\n\tSIOCSVNETID                       = 0x802069a6\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_BINDANY                        = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NETPROC                        = 0x1020\n\tSO_OOBINLINE                      = 0x100\n\tSO_PEERCRED                       = 0x1022\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_RTABLE                         = 0x1021\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_SPLICE                         = 0x1023\n\tSO_TIMESTAMP                      = 0x800\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTCIFLUSH                          = 0x1\n\tTCIOFLUSH                         = 0x3\n\tTCOFLUSH                          = 0x2\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_SACK                      = 0x3\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MD5SIG                        = 0x4\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOPUSH                        = 0x10\n\tTCP_NSTATES                       = 0xb\n\tTCP_SACK_ENABLE                   = 0x8\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLAG_CLOCAL                   = 0x2\n\tTIOCFLAG_CRTSCTS                  = 0x4\n\tTIOCFLAG_MDMBUF                   = 0x8\n\tTIOCFLAG_PPS                      = 0x10\n\tTIOCFLAG_SOFTCAR                  = 0x1\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGFLAGS                        = 0x4004745d\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGSID                          = 0x40047463\n\tTIOCGTSTAMP                       = 0x400c745b\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x4004746a\n\tTIOCMODS                          = 0x8004746d\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSFLAGS                        = 0x8004745c\n\tTIOCSIG                           = 0x8004745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x80047465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSTSTAMP                       = 0x8008745a\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCUCNTL                         = 0x80047466\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWALTSIG                           = 0x4\n\tWCONTINUED                        = 0x8\n\tWCOREFLAG                         = 0x80\n\tWNOHANG                           = 0x1\n\tWSTOPPED                          = 0x7f\n\tWUNTRACED                         = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x58)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x59)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEIPSEC          = syscall.Errno(0x52)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x5b)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMEDIUMTYPE     = syscall.Errno(0x56)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x53)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOMEDIUM       = syscall.Errno(0x55)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x5a)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x5b)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x57)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTHR    = syscall.Signal(0x20)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EWOULDBLOCK\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disk quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC program not available\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIPSEC\", \"IPsec processing failure\"},\n\t{83, \"ENOATTR\", \"attribute not found\"},\n\t{84, \"EILSEQ\", \"illegal byte sequence\"},\n\t{85, \"ENOMEDIUM\", \"no medium found\"},\n\t{86, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{87, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{88, \"ECANCELED\", \"operation canceled\"},\n\t{89, \"EIDRM\", \"identifier removed\"},\n\t{90, \"ENOMSG\", \"no message of desired type\"},\n\t{91, \"ELAST\", \"not supported\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGABRT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"thread AST\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,openbsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_BLUETOOTH                      = 0x20\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_ENCAP                          = 0x1c\n\tAF_HYLINK                         = 0xf\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x18\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_KEY                            = 0x1e\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x24\n\tAF_MPLS                           = 0x21\n\tAF_NATM                           = 0x1b\n\tAF_NS                             = 0x6\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x1d\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tALTWERASE                         = 0x200\n\tARPHRD_ETHER                      = 0x1\n\tARPHRD_FRELAY                     = 0xf\n\tARPHRD_IEEE1394                   = 0x18\n\tARPHRD_IEEE802                    = 0x6\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDIRFILT                      = 0x4004427c\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc010427b\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGFILDROP                      = 0x40044278\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044273\n\tBIOCGRTIMEOUT                     = 0x4010426e\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCLOCK                          = 0x20004276\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDIRFILT                      = 0x8004427d\n\tBIOCSDLT                          = 0x8004427a\n\tBIOCSETF                          = 0x80104267\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSETWF                         = 0x80104277\n\tBIOCSFILDROP                      = 0x80044279\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044272\n\tBIOCSRTIMEOUT                     = 0x8010426d\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DIRECTION_IN                  = 0x1\n\tBPF_DIRECTION_OUT                 = 0x2\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x200000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLOCK_BOOTTIME                    = 0x6\n\tCLOCK_MONOTONIC                   = 0x3\n\tCLOCK_PROCESS_CPUTIME_ID          = 0x2\n\tCLOCK_REALTIME                    = 0x0\n\tCLOCK_THREAD_CPUTIME_ID           = 0x4\n\tCLOCK_UPTIME                      = 0x5\n\tCPUSTATES                         = 0x6\n\tCP_IDLE                           = 0x5\n\tCP_INTR                           = 0x4\n\tCP_NICE                           = 0x1\n\tCP_SPIN                           = 0x3\n\tCP_SYS                            = 0x2\n\tCP_USER                           = 0x0\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x10000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0xff\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDIOCOSFPFLUSH                     = 0x2000444e\n\tDLT_ARCNET                        = 0x7\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AX25                          = 0x3\n\tDLT_CHAOS                         = 0x5\n\tDLT_C_HDLC                        = 0x68\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0xd\n\tDLT_FDDI                          = 0xa\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_LOOP                          = 0xc\n\tDLT_MPLS                          = 0xdb\n\tDLT_NULL                          = 0x0\n\tDLT_OPENFLOW                      = 0x10b\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PRONET                        = 0x4\n\tDLT_RAW                           = 0xe\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDLT_USBPCAP                       = 0xf9\n\tDLT_USER0                         = 0x93\n\tDLT_USER1                         = 0x94\n\tDLT_USER10                        = 0x9d\n\tDLT_USER11                        = 0x9e\n\tDLT_USER12                        = 0x9f\n\tDLT_USER13                        = 0xa0\n\tDLT_USER14                        = 0xa1\n\tDLT_USER15                        = 0xa2\n\tDLT_USER2                         = 0x95\n\tDLT_USER3                         = 0x96\n\tDLT_USER4                         = 0x97\n\tDLT_USER5                         = 0x98\n\tDLT_USER6                         = 0x99\n\tDLT_USER7                         = 0x9a\n\tDLT_USER8                         = 0x9b\n\tDLT_USER9                         = 0x9c\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEMT_TAGOVF                        = 0x1\n\tEMUL_ENABLED                      = 0x1\n\tEMUL_NATIVE                       = 0x2\n\tENDRUNDISC                        = 0x9\n\tETHERMIN                          = 0x2e\n\tETHERMTU                          = 0x5dc\n\tETHERTYPE_8023                    = 0x4\n\tETHERTYPE_AARP                    = 0x80f3\n\tETHERTYPE_ACCTON                  = 0x8390\n\tETHERTYPE_AEONIC                  = 0x8036\n\tETHERTYPE_ALPHA                   = 0x814a\n\tETHERTYPE_AMBER                   = 0x6008\n\tETHERTYPE_AMOEBA                  = 0x8145\n\tETHERTYPE_AOE                     = 0x88a2\n\tETHERTYPE_APOLLO                  = 0x80f7\n\tETHERTYPE_APOLLODOMAIN            = 0x8019\n\tETHERTYPE_APPLETALK               = 0x809b\n\tETHERTYPE_APPLITEK                = 0x80c7\n\tETHERTYPE_ARGONAUT                = 0x803a\n\tETHERTYPE_ARP                     = 0x806\n\tETHERTYPE_AT                      = 0x809b\n\tETHERTYPE_ATALK                   = 0x809b\n\tETHERTYPE_ATOMIC                  = 0x86df\n\tETHERTYPE_ATT                     = 0x8069\n\tETHERTYPE_ATTSTANFORD             = 0x8008\n\tETHERTYPE_AUTOPHON                = 0x806a\n\tETHERTYPE_AXIS                    = 0x8856\n\tETHERTYPE_BCLOOP                  = 0x9003\n\tETHERTYPE_BOFL                    = 0x8102\n\tETHERTYPE_CABLETRON               = 0x7034\n\tETHERTYPE_CHAOS                   = 0x804\n\tETHERTYPE_COMDESIGN               = 0x806c\n\tETHERTYPE_COMPUGRAPHIC            = 0x806d\n\tETHERTYPE_COUNTERPOINT            = 0x8062\n\tETHERTYPE_CRONUS                  = 0x8004\n\tETHERTYPE_CRONUSVLN               = 0x8003\n\tETHERTYPE_DCA                     = 0x1234\n\tETHERTYPE_DDE                     = 0x807b\n\tETHERTYPE_DEBNI                   = 0xaaaa\n\tETHERTYPE_DECAM                   = 0x8048\n\tETHERTYPE_DECCUST                 = 0x6006\n\tETHERTYPE_DECDIAG                 = 0x6005\n\tETHERTYPE_DECDNS                  = 0x803c\n\tETHERTYPE_DECDTS                  = 0x803e\n\tETHERTYPE_DECEXPER                = 0x6000\n\tETHERTYPE_DECLAST                 = 0x8041\n\tETHERTYPE_DECLTM                  = 0x803f\n\tETHERTYPE_DECMUMPS                = 0x6009\n\tETHERTYPE_DECNETBIOS              = 0x8040\n\tETHERTYPE_DELTACON                = 0x86de\n\tETHERTYPE_DIDDLE                  = 0x4321\n\tETHERTYPE_DLOG1                   = 0x660\n\tETHERTYPE_DLOG2                   = 0x661\n\tETHERTYPE_DN                      = 0x6003\n\tETHERTYPE_DOGFIGHT                = 0x1989\n\tETHERTYPE_DSMD                    = 0x8039\n\tETHERTYPE_ECMA                    = 0x803\n\tETHERTYPE_ENCRYPT                 = 0x803d\n\tETHERTYPE_ES                      = 0x805d\n\tETHERTYPE_EXCELAN                 = 0x8010\n\tETHERTYPE_EXPERDATA               = 0x8049\n\tETHERTYPE_FLIP                    = 0x8146\n\tETHERTYPE_FLOWCONTROL             = 0x8808\n\tETHERTYPE_FRARP                   = 0x808\n\tETHERTYPE_GENDYN                  = 0x8068\n\tETHERTYPE_HAYES                   = 0x8130\n\tETHERTYPE_HIPPI_FP                = 0x8180\n\tETHERTYPE_HITACHI                 = 0x8820\n\tETHERTYPE_HP                      = 0x8005\n\tETHERTYPE_IEEEPUP                 = 0xa00\n\tETHERTYPE_IEEEPUPAT               = 0xa01\n\tETHERTYPE_IMLBL                   = 0x4c42\n\tETHERTYPE_IMLBLDIAG               = 0x424c\n\tETHERTYPE_IP                      = 0x800\n\tETHERTYPE_IPAS                    = 0x876c\n\tETHERTYPE_IPV6                    = 0x86dd\n\tETHERTYPE_IPX                     = 0x8137\n\tETHERTYPE_IPXNEW                  = 0x8037\n\tETHERTYPE_KALPANA                 = 0x8582\n\tETHERTYPE_LANBRIDGE               = 0x8038\n\tETHERTYPE_LANPROBE                = 0x8888\n\tETHERTYPE_LAT                     = 0x6004\n\tETHERTYPE_LBACK                   = 0x9000\n\tETHERTYPE_LITTLE                  = 0x8060\n\tETHERTYPE_LLDP                    = 0x88cc\n\tETHERTYPE_LOGICRAFT               = 0x8148\n\tETHERTYPE_LOOPBACK                = 0x9000\n\tETHERTYPE_MATRA                   = 0x807a\n\tETHERTYPE_MAX                     = 0xffff\n\tETHERTYPE_MERIT                   = 0x807c\n\tETHERTYPE_MICP                    = 0x873a\n\tETHERTYPE_MOPDL                   = 0x6001\n\tETHERTYPE_MOPRC                   = 0x6002\n\tETHERTYPE_MOTOROLA                = 0x818d\n\tETHERTYPE_MPLS                    = 0x8847\n\tETHERTYPE_MPLS_MCAST              = 0x8848\n\tETHERTYPE_MUMPS                   = 0x813f\n\tETHERTYPE_NBPCC                   = 0x3c04\n\tETHERTYPE_NBPCLAIM                = 0x3c09\n\tETHERTYPE_NBPCLREQ                = 0x3c05\n\tETHERTYPE_NBPCLRSP                = 0x3c06\n\tETHERTYPE_NBPCREQ                 = 0x3c02\n\tETHERTYPE_NBPCRSP                 = 0x3c03\n\tETHERTYPE_NBPDG                   = 0x3c07\n\tETHERTYPE_NBPDGB                  = 0x3c08\n\tETHERTYPE_NBPDLTE                 = 0x3c0a\n\tETHERTYPE_NBPRAR                  = 0x3c0c\n\tETHERTYPE_NBPRAS                  = 0x3c0b\n\tETHERTYPE_NBPRST                  = 0x3c0d\n\tETHERTYPE_NBPSCD                  = 0x3c01\n\tETHERTYPE_NBPVCD                  = 0x3c00\n\tETHERTYPE_NBS                     = 0x802\n\tETHERTYPE_NCD                     = 0x8149\n\tETHERTYPE_NESTAR                  = 0x8006\n\tETHERTYPE_NETBEUI                 = 0x8191\n\tETHERTYPE_NOVELL                  = 0x8138\n\tETHERTYPE_NS                      = 0x600\n\tETHERTYPE_NSAT                    = 0x601\n\tETHERTYPE_NSCOMPAT                = 0x807\n\tETHERTYPE_NTRAILER                = 0x10\n\tETHERTYPE_OS9                     = 0x7007\n\tETHERTYPE_OS9NET                  = 0x7009\n\tETHERTYPE_PACER                   = 0x80c6\n\tETHERTYPE_PAE                     = 0x888e\n\tETHERTYPE_PCS                     = 0x4242\n\tETHERTYPE_PLANNING                = 0x8044\n\tETHERTYPE_PPP                     = 0x880b\n\tETHERTYPE_PPPOE                   = 0x8864\n\tETHERTYPE_PPPOEDISC               = 0x8863\n\tETHERTYPE_PRIMENTS                = 0x7031\n\tETHERTYPE_PUP                     = 0x200\n\tETHERTYPE_PUPAT                   = 0x200\n\tETHERTYPE_QINQ                    = 0x88a8\n\tETHERTYPE_RACAL                   = 0x7030\n\tETHERTYPE_RATIONAL                = 0x8150\n\tETHERTYPE_RAWFR                   = 0x6559\n\tETHERTYPE_RCL                     = 0x1995\n\tETHERTYPE_RDP                     = 0x8739\n\tETHERTYPE_RETIX                   = 0x80f2\n\tETHERTYPE_REVARP                  = 0x8035\n\tETHERTYPE_SCA                     = 0x6007\n\tETHERTYPE_SECTRA                  = 0x86db\n\tETHERTYPE_SECUREDATA              = 0x876d\n\tETHERTYPE_SGITW                   = 0x817e\n\tETHERTYPE_SG_BOUNCE               = 0x8016\n\tETHERTYPE_SG_DIAG                 = 0x8013\n\tETHERTYPE_SG_NETGAMES             = 0x8014\n\tETHERTYPE_SG_RESV                 = 0x8015\n\tETHERTYPE_SIMNET                  = 0x5208\n\tETHERTYPE_SLOW                    = 0x8809\n\tETHERTYPE_SNA                     = 0x80d5\n\tETHERTYPE_SNMP                    = 0x814c\n\tETHERTYPE_SONIX                   = 0xfaf5\n\tETHERTYPE_SPIDER                  = 0x809f\n\tETHERTYPE_SPRITE                  = 0x500\n\tETHERTYPE_STP                     = 0x8181\n\tETHERTYPE_TALARIS                 = 0x812b\n\tETHERTYPE_TALARISMC               = 0x852b\n\tETHERTYPE_TCPCOMP                 = 0x876b\n\tETHERTYPE_TCPSM                   = 0x9002\n\tETHERTYPE_TEC                     = 0x814f\n\tETHERTYPE_TIGAN                   = 0x802f\n\tETHERTYPE_TRAIL                   = 0x1000\n\tETHERTYPE_TRANSETHER              = 0x6558\n\tETHERTYPE_TYMSHARE                = 0x802e\n\tETHERTYPE_UBBST                   = 0x7005\n\tETHERTYPE_UBDEBUG                 = 0x900\n\tETHERTYPE_UBDIAGLOOP              = 0x7002\n\tETHERTYPE_UBDL                    = 0x7000\n\tETHERTYPE_UBNIU                   = 0x7001\n\tETHERTYPE_UBNMC                   = 0x7003\n\tETHERTYPE_VALID                   = 0x1600\n\tETHERTYPE_VARIAN                  = 0x80dd\n\tETHERTYPE_VAXELN                  = 0x803b\n\tETHERTYPE_VEECO                   = 0x8067\n\tETHERTYPE_VEXP                    = 0x805b\n\tETHERTYPE_VGLAB                   = 0x8131\n\tETHERTYPE_VINES                   = 0xbad\n\tETHERTYPE_VINESECHO               = 0xbaf\n\tETHERTYPE_VINESLOOP               = 0xbae\n\tETHERTYPE_VITAL                   = 0xff00\n\tETHERTYPE_VLAN                    = 0x8100\n\tETHERTYPE_VLTLMAN                 = 0x8080\n\tETHERTYPE_VPROD                   = 0x805c\n\tETHERTYPE_VURESERVED              = 0x8147\n\tETHERTYPE_WATERLOO                = 0x8130\n\tETHERTYPE_WELLFLEET               = 0x8103\n\tETHERTYPE_X25                     = 0x805\n\tETHERTYPE_X75                     = 0x801\n\tETHERTYPE_XNSSM                   = 0x9001\n\tETHERTYPE_XTP                     = 0x817d\n\tETHER_ADDR_LEN                    = 0x6\n\tETHER_ALIGN                       = 0x2\n\tETHER_CRC_LEN                     = 0x4\n\tETHER_CRC_POLY_BE                 = 0x4c11db6\n\tETHER_CRC_POLY_LE                 = 0xedb88320\n\tETHER_HDR_LEN                     = 0xe\n\tETHER_MAX_DIX_LEN                 = 0x600\n\tETHER_MAX_HARDMTU_LEN             = 0xff9b\n\tETHER_MAX_LEN                     = 0x5ee\n\tETHER_MIN_LEN                     = 0x40\n\tETHER_TYPE_LEN                    = 0x2\n\tETHER_VLAN_ENCAP_LEN              = 0x4\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_DEVICE                     = -0x8\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0x8\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEVL_ENCAPLEN                      = 0x4\n\tEVL_PRIO_BITS                     = 0xd\n\tEVL_PRIO_MAX                      = 0x7\n\tEVL_VLID_MASK                     = 0xfff\n\tEVL_VLID_MAX                      = 0xffe\n\tEVL_VLID_MIN                      = 0x1\n\tEVL_VLID_NULL                     = 0x0\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_DISPATCH                       = 0x80\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_RECEIPT                        = 0x40\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFLUSHO                            = 0x800000\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0xa\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETOWN                          = 0x5\n\tF_ISATTY                          = 0xb\n\tF_OK                              = 0x0\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x8e52\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_STATICARP                     = 0x20\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BLUETOOTH                     = 0xf8\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf7\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DOCSCABLEUPSTREAMCHANNEL      = 0xcd\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DUMMY                         = 0xf1\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ECONET                        = 0xce\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf3\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INFINIBAND                    = 0xc7\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LINEGROUP                     = 0xd2\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MBIM                          = 0xfa\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFLOW                         = 0xf9\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_PON155                        = 0xcf\n\tIFT_PON622                        = 0xd0\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPATM                       = 0xc5\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf2\n\tIFT_Q2931                         = 0xc9\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SIPSIG                        = 0xcc\n\tIFT_SIPTG                         = 0xcb\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TELINK                        = 0xc8\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VIRTUALTG                     = 0xca\n\tIFT_VOICEDID                      = 0xd5\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEEMFGD                    = 0xd3\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFGDEANA                  = 0xd4\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERCABLE                = 0xc6\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIN_RFC3021_HOST                   = 0x1\n\tIN_RFC3021_NET                    = 0xfffffffe\n\tIN_RFC3021_NSHIFT                 = 0x1f\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_DIVERT                    = 0x102\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x103\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_MPLS                      = 0x89\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_UDP                       = 0x11\n\tIPV6_AUTH_LEVEL                   = 0x35\n\tIPV6_AUTOFLOWLABEL                = 0x3b\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_ESP_NETWORK_LEVEL            = 0x37\n\tIPV6_ESP_TRANS_LEVEL              = 0x36\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPCOMP_LEVEL                 = 0x3c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MINHOPCOUNT                  = 0x41\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_OPTIONS                      = 0x1\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PIPEX                        = 0x3f\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVDSTPORT                  = 0x40\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTABLE                       = 0x1021\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_AUTH_LEVEL                     = 0x14\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_ESP_NETWORK_LEVEL              = 0x16\n\tIP_ESP_TRANS_LEVEL                = 0x15\n\tIP_HDRINCL                        = 0x2\n\tIP_IPCOMP_LEVEL                   = 0x1d\n\tIP_IPDEFTTL                       = 0x25\n\tIP_IPSECFLOWINFO                  = 0x24\n\tIP_IPSEC_LOCAL_AUTH               = 0x1b\n\tIP_IPSEC_LOCAL_CRED               = 0x19\n\tIP_IPSEC_LOCAL_ID                 = 0x17\n\tIP_IPSEC_REMOTE_AUTH              = 0x1c\n\tIP_IPSEC_REMOTE_CRED              = 0x1a\n\tIP_IPSEC_REMOTE_ID                = 0x18\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0xfff\n\tIP_MF                             = 0x2000\n\tIP_MINTTL                         = 0x20\n\tIP_MIN_MEMBERSHIPS                = 0xf\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PIPEX                          = 0x22\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVDSTPORT                    = 0x21\n\tIP_RECVIF                         = 0x1e\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVRTABLE                     = 0x23\n\tIP_RECVTTL                        = 0x1f\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RTABLE                         = 0x1021\n\tIP_SENDSRCADDR                    = 0x7\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIUCLC                             = 0x1000\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLCNT_OVERLOAD_FLUSH               = 0x6\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x6\n\tMADV_NORMAL                       = 0x0\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SPACEAVAIL                   = 0x5\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_CONCEAL                       = 0x8000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_FLAGMASK                      = 0xfff7\n\tMAP_HASSEMAPHORE                  = 0x0\n\tMAP_INHERIT                       = 0x0\n\tMAP_INHERIT_COPY                  = 0x1\n\tMAP_INHERIT_NONE                  = 0x2\n\tMAP_INHERIT_SHARE                 = 0x0\n\tMAP_INHERIT_ZERO                  = 0x3\n\tMAP_NOEXTEND                      = 0x0\n\tMAP_NORESERVE                     = 0x0\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x0\n\tMAP_SHARED                        = 0x1\n\tMAP_STACK                         = 0x4000\n\tMAP_TRYFIXED                      = 0x0\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DELEXPORT                     = 0x20000\n\tMNT_DOOMED                        = 0x8000000\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_FORCE                         = 0x80000\n\tMNT_LAZY                          = 0x3\n\tMNT_LOCAL                         = 0x1000\n\tMNT_NOATIME                       = 0x8000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOPERM                        = 0x20\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x4000000\n\tMNT_STALLED                       = 0x100000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0x400ffff\n\tMNT_WAIT                          = 0x1\n\tMNT_WANTRDWR                      = 0x2000000\n\tMNT_WXALLOWED                     = 0x800\n\tMSG_BCAST                         = 0x100\n\tMSG_CMSG_CLOEXEC                  = 0x800\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOR                           = 0x8\n\tMSG_MCAST                         = 0x200\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_TRUNC                         = 0x10\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x4\n\tMS_SYNC                           = 0x2\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_IFNAMES                    = 0x6\n\tNET_RT_MAXID                      = 0x7\n\tNET_RT_STATS                      = 0x4\n\tNET_RT_TABLE                      = 0x5\n\tNFDBITS                           = 0x20\n\tNOFLSH                            = 0x80000000\n\tNOKERNINFO                        = 0x2000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHANGE                       = 0x1\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EOF                          = 0x2\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRUNCATE                     = 0x80\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOLCUC                             = 0x20\n\tONLCR                             = 0x2\n\tONLRET                            = 0x80\n\tONOCR                             = 0x40\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tOXTABS                            = 0x4\n\tO_ACCMODE                         = 0x3\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x10000\n\tO_CREAT                           = 0x200\n\tO_DIRECTORY                       = 0x20000\n\tO_DSYNC                           = 0x80\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_RSYNC                           = 0x80\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPF_FLUSH                          = 0x1\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BFD                          = 0xb\n\tRTAX_BRD                          = 0x7\n\tRTAX_DNS                          = 0xc\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_LABEL                        = 0xa\n\tRTAX_MAX                          = 0xf\n\tRTAX_NETMASK                      = 0x2\n\tRTAX_SEARCH                       = 0xe\n\tRTAX_SRC                          = 0x8\n\tRTAX_SRCMASK                      = 0x9\n\tRTAX_STATIC                       = 0xd\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BFD                           = 0x800\n\tRTA_BRD                           = 0x80\n\tRTA_DNS                           = 0x1000\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_LABEL                         = 0x400\n\tRTA_NETMASK                       = 0x4\n\tRTA_SEARCH                        = 0x4000\n\tRTA_SRC                           = 0x100\n\tRTA_SRCMASK                       = 0x200\n\tRTA_STATIC                        = 0x2000\n\tRTF_ANNOUNCE                      = 0x4000\n\tRTF_BFD                           = 0x1000000\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_BROADCAST                     = 0x400000\n\tRTF_CACHED                        = 0x20000\n\tRTF_CLONED                        = 0x10000\n\tRTF_CLONING                       = 0x100\n\tRTF_CONNECTED                     = 0x800000\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_FMASK                         = 0x110fc08\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_LOCAL                         = 0x200000\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MPATH                         = 0x40000\n\tRTF_MPLS                          = 0x100000\n\tRTF_MULTICAST                     = 0x200\n\tRTF_PERMANENT_ARP                 = 0x2000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x2000\n\tRTF_REJECT                        = 0x8\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_USETRAILERS                   = 0x8000\n\tRTM_ADD                           = 0x1\n\tRTM_BFD                           = 0x12\n\tRTM_CHANGE                        = 0x3\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DESYNC                        = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_IFANNOUNCE                    = 0xf\n\tRTM_IFINFO                        = 0xe\n\tRTM_INVALIDATE                    = 0x11\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MAXSIZE                       = 0x800\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_PROPOSAL                      = 0x13\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x5\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRT_TABLEID_BITS                   = 0x8\n\tRT_TABLEID_MASK                   = 0xff\n\tRT_TABLEID_MAX                    = 0xff\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tRUSAGE_THREAD                     = 0x1\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x4\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCAIFGROUP                      = 0x80286987\n\tSIOCATMARK                        = 0x40047307\n\tSIOCBRDGADD                       = 0x8060693c\n\tSIOCBRDGADDL                      = 0x80606949\n\tSIOCBRDGADDS                      = 0x80606941\n\tSIOCBRDGARL                       = 0x808c694d\n\tSIOCBRDGDADDR                     = 0x81286947\n\tSIOCBRDGDEL                       = 0x8060693d\n\tSIOCBRDGDELS                      = 0x80606942\n\tSIOCBRDGFLUSH                     = 0x80606948\n\tSIOCBRDGFRL                       = 0x808c694e\n\tSIOCBRDGGCACHE                    = 0xc0186941\n\tSIOCBRDGGFD                       = 0xc0186952\n\tSIOCBRDGGHT                       = 0xc0186951\n\tSIOCBRDGGIFFLGS                   = 0xc060693e\n\tSIOCBRDGGMA                       = 0xc0186953\n\tSIOCBRDGGPARAM                    = 0xc0406958\n\tSIOCBRDGGPRI                      = 0xc0186950\n\tSIOCBRDGGRL                       = 0xc030694f\n\tSIOCBRDGGTO                       = 0xc0186946\n\tSIOCBRDGIFS                       = 0xc0606942\n\tSIOCBRDGRTS                       = 0xc0206943\n\tSIOCBRDGSADDR                     = 0xc1286944\n\tSIOCBRDGSCACHE                    = 0x80186940\n\tSIOCBRDGSFD                       = 0x80186952\n\tSIOCBRDGSHT                       = 0x80186951\n\tSIOCBRDGSIFCOST                   = 0x80606955\n\tSIOCBRDGSIFFLGS                   = 0x8060693f\n\tSIOCBRDGSIFPRIO                   = 0x80606954\n\tSIOCBRDGSIFPROT                   = 0x8060694a\n\tSIOCBRDGSMA                       = 0x80186953\n\tSIOCBRDGSPRI                      = 0x80186950\n\tSIOCBRDGSPROTO                    = 0x8018695a\n\tSIOCBRDGSTO                       = 0x80186945\n\tSIOCBRDGSTXHC                     = 0x80186959\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFGROUP                      = 0x80286989\n\tSIOCDIFPARENT                     = 0x802069b4\n\tSIOCDIFPHYADDR                    = 0x80206949\n\tSIOCDVNETID                       = 0x802069af\n\tSIOCGETKALIVE                     = 0xc01869a4\n\tSIOCGETLABEL                      = 0x8020699a\n\tSIOCGETMPWCFG                     = 0xc02069ae\n\tSIOCGETPFLOW                      = 0xc02069fe\n\tSIOCGETPFSYNC                     = 0xc02069f8\n\tSIOCGETSGCNT                      = 0xc0207534\n\tSIOCGETVIFCNT                     = 0xc0287533\n\tSIOCGETVLAN                       = 0xc0206990\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCONF                       = 0xc0106924\n\tSIOCGIFDATA                       = 0xc020691b\n\tSIOCGIFDESCR                      = 0xc0206981\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGATTR                      = 0xc028698b\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFGMEMB                      = 0xc028698a\n\tSIOCGIFGROUP                      = 0xc0286988\n\tSIOCGIFHARDMTU                    = 0xc02069a5\n\tSIOCGIFLLPRIO                     = 0xc02069b6\n\tSIOCGIFMEDIA                      = 0xc0406938\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc020697e\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPAIR                       = 0xc02069b1\n\tSIOCGIFPARENT                     = 0xc02069b3\n\tSIOCGIFPRIORITY                   = 0xc020699c\n\tSIOCGIFRDOMAIN                    = 0xc02069a0\n\tSIOCGIFRTLABEL                    = 0xc0206983\n\tSIOCGIFRXR                        = 0x802069aa\n\tSIOCGIFXFLAGS                     = 0xc020699e\n\tSIOCGLIFPHYADDR                   = 0xc218694b\n\tSIOCGLIFPHYDF                     = 0xc02069c2\n\tSIOCGLIFPHYRTABLE                 = 0xc02069a2\n\tSIOCGLIFPHYTTL                    = 0xc02069a9\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGSPPPPARAMS                   = 0xc0206994\n\tSIOCGUMBINFO                      = 0xc02069be\n\tSIOCGUMBPARAM                     = 0xc02069c0\n\tSIOCGVH                           = 0xc02069f6\n\tSIOCGVNETFLOWID                   = 0xc02069c4\n\tSIOCGVNETID                       = 0xc02069a7\n\tSIOCIFAFATTACH                    = 0x801169ab\n\tSIOCIFAFDETACH                    = 0x801169ac\n\tSIOCIFCREATE                      = 0x8020697a\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc0106978\n\tSIOCSETKALIVE                     = 0x801869a3\n\tSIOCSETLABEL                      = 0x80206999\n\tSIOCSETMPWCFG                     = 0x802069ad\n\tSIOCSETPFLOW                      = 0x802069fd\n\tSIOCSETPFSYNC                     = 0x802069f7\n\tSIOCSETVLAN                       = 0x8020698f\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFDESCR                      = 0x80206980\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGATTR                      = 0x8028698c\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFLLADDR                     = 0x8020691f\n\tSIOCSIFLLPRIO                     = 0x802069b5\n\tSIOCSIFMEDIA                      = 0xc0206937\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x8020697f\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPAIR                       = 0x802069b0\n\tSIOCSIFPARENT                     = 0x802069b2\n\tSIOCSIFPRIORITY                   = 0x8020699b\n\tSIOCSIFRDOMAIN                    = 0x8020699f\n\tSIOCSIFRTLABEL                    = 0x80206982\n\tSIOCSIFXFLAGS                     = 0x8020699d\n\tSIOCSLIFPHYADDR                   = 0x8218694a\n\tSIOCSLIFPHYDF                     = 0x802069c1\n\tSIOCSLIFPHYRTABLE                 = 0x802069a1\n\tSIOCSLIFPHYTTL                    = 0x802069a8\n\tSIOCSPGRP                         = 0x80047308\n\tSIOCSSPPPPARAMS                   = 0x80206993\n\tSIOCSUMBPARAM                     = 0x802069bf\n\tSIOCSVH                           = 0xc02069f5\n\tSIOCSVNETFLOWID                   = 0x802069c3\n\tSIOCSVNETID                       = 0x802069a6\n\tSIOCSWGDPID                       = 0xc018695b\n\tSIOCSWGMAXFLOW                    = 0xc0186960\n\tSIOCSWGMAXGROUP                   = 0xc018695d\n\tSIOCSWSDPID                       = 0x8018695c\n\tSIOCSWSPORTNO                     = 0xc060695f\n\tSOCK_CLOEXEC                      = 0x8000\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_DNS                          = 0x1000\n\tSOCK_NONBLOCK                     = 0x4000\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_BINDANY                        = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NETPROC                        = 0x1020\n\tSO_OOBINLINE                      = 0x100\n\tSO_PEERCRED                       = 0x1022\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_RTABLE                         = 0x1021\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_SPLICE                         = 0x1023\n\tSO_TIMESTAMP                      = 0x800\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tSO_ZEROIZE                        = 0x2000\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTCIFLUSH                          = 0x1\n\tTCIOFF                            = 0x3\n\tTCIOFLUSH                         = 0x3\n\tTCION                             = 0x4\n\tTCOFLUSH                          = 0x2\n\tTCOOFF                            = 0x1\n\tTCOON                             = 0x2\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_SACK                      = 0x3\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MD5SIG                        = 0x4\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOPUSH                        = 0x10\n\tTCP_SACK_ENABLE                   = 0x8\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCHKVERAUTH                    = 0x2000741e\n\tTIOCCLRVERAUTH                    = 0x2000741d\n\tTIOCCONS                          = 0x80047462\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLAG_CLOCAL                   = 0x2\n\tTIOCFLAG_CRTSCTS                  = 0x4\n\tTIOCFLAG_MDMBUF                   = 0x8\n\tTIOCFLAG_PPS                      = 0x10\n\tTIOCFLAG_SOFTCAR                  = 0x1\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGFLAGS                        = 0x4004745d\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGSID                          = 0x40047463\n\tTIOCGTSTAMP                       = 0x4010745b\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x4004746a\n\tTIOCMODS                          = 0x8004746d\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSETVERAUTH                    = 0x8004741c\n\tTIOCSFLAGS                        = 0x8004745c\n\tTIOCSIG                           = 0x8004745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x20007465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSTSTAMP                       = 0x8008745a\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCUCNTL                         = 0x80047466\n\tTIOCUCNTL_CBRK                    = 0x7a\n\tTIOCUCNTL_SBRK                    = 0x7b\n\tTOSTOP                            = 0x400000\n\tUTIME_NOW                         = -0x2\n\tUTIME_OMIT                        = -0x1\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVM_ANONMIN                        = 0x7\n\tVM_LOADAVG                        = 0x2\n\tVM_MAXID                          = 0xc\n\tVM_MAXSLP                         = 0xa\n\tVM_METER                          = 0x1\n\tVM_NKMEMPAGES                     = 0x6\n\tVM_PSSTRINGS                      = 0x3\n\tVM_SWAPENCRYPT                    = 0x5\n\tVM_USPACE                         = 0xb\n\tVM_UVMEXP                         = 0x4\n\tVM_VNODEMIN                       = 0x9\n\tVM_VTEXTMIN                       = 0x8\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWALTSIG                           = 0x4\n\tWCONTINUED                        = 0x8\n\tWCOREFLAG                         = 0x80\n\tWNOHANG                           = 0x1\n\tWUNTRACED                         = 0x2\n\tXCASE                             = 0x1000000\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x5c)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x58)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x59)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEIPSEC          = syscall.Errno(0x52)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x5f)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMEDIUMTYPE     = syscall.Errno(0x56)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x53)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOMEDIUM       = syscall.Errno(0x55)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x5a)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x5d)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x5b)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x57)\n\tEOWNERDEAD      = syscall.Errno(0x5e)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x5f)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTHR    = syscall.Signal(0x20)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disk quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC program not available\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIPSEC\", \"IPsec processing failure\"},\n\t{83, \"ENOATTR\", \"attribute not found\"},\n\t{84, \"EILSEQ\", \"illegal byte sequence\"},\n\t{85, \"ENOMEDIUM\", \"no medium found\"},\n\t{86, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{87, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{88, \"ECANCELED\", \"operation canceled\"},\n\t{89, \"EIDRM\", \"identifier removed\"},\n\t{90, \"ENOMSG\", \"no message of desired type\"},\n\t{91, \"ENOTSUP\", \"not supported\"},\n\t{92, \"EBADMSG\", \"bad message\"},\n\t{93, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{94, \"EOWNERDEAD\", \"previous owner died\"},\n\t{95, \"ELAST\", \"protocol error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGABRT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"thread AST\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go",
    "content": "// mkerrors.sh\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,openbsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_BLUETOOTH                      = 0x20\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_ENCAP                          = 0x1c\n\tAF_HYLINK                         = 0xf\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x18\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_KEY                            = 0x1e\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x24\n\tAF_MPLS                           = 0x21\n\tAF_NATM                           = 0x1b\n\tAF_NS                             = 0x6\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x1d\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tARPHRD_ETHER                      = 0x1\n\tARPHRD_FRELAY                     = 0xf\n\tARPHRD_IEEE1394                   = 0x18\n\tARPHRD_IEEE802                    = 0x6\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDIRFILT                      = 0x4004427c\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc008427b\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGFILDROP                      = 0x40044278\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044273\n\tBIOCGRTIMEOUT                     = 0x400c426e\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCLOCK                          = 0x20004276\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDIRFILT                      = 0x8004427d\n\tBIOCSDLT                          = 0x8004427a\n\tBIOCSETF                          = 0x80084267\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSETWF                         = 0x80084277\n\tBIOCSFILDROP                      = 0x80044279\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044272\n\tBIOCSRTIMEOUT                     = 0x800c426d\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DIRECTION_IN                  = 0x1\n\tBPF_DIRECTION_OUT                 = 0x2\n\tBPF_DIV                           = 0x30\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x200000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCPUSTATES                         = 0x6\n\tCP_IDLE                           = 0x5\n\tCP_INTR                           = 0x4\n\tCP_NICE                           = 0x1\n\tCP_SPIN                           = 0x3\n\tCP_SYS                            = 0x2\n\tCP_USER                           = 0x0\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x10000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0xff\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDIOCOSFPFLUSH                     = 0x2000444e\n\tDLT_ARCNET                        = 0x7\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AX25                          = 0x3\n\tDLT_CHAOS                         = 0x5\n\tDLT_C_HDLC                        = 0x68\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0xd\n\tDLT_FDDI                          = 0xa\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_LOOP                          = 0xc\n\tDLT_MPLS                          = 0xdb\n\tDLT_NULL                          = 0x0\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PRONET                        = 0x4\n\tDLT_RAW                           = 0xe\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEMT_TAGOVF                        = 0x1\n\tEMUL_ENABLED                      = 0x1\n\tEMUL_NATIVE                       = 0x2\n\tENDRUNDISC                        = 0x9\n\tETHERMIN                          = 0x2e\n\tETHERMTU                          = 0x5dc\n\tETHERTYPE_8023                    = 0x4\n\tETHERTYPE_AARP                    = 0x80f3\n\tETHERTYPE_ACCTON                  = 0x8390\n\tETHERTYPE_AEONIC                  = 0x8036\n\tETHERTYPE_ALPHA                   = 0x814a\n\tETHERTYPE_AMBER                   = 0x6008\n\tETHERTYPE_AMOEBA                  = 0x8145\n\tETHERTYPE_AOE                     = 0x88a2\n\tETHERTYPE_APOLLO                  = 0x80f7\n\tETHERTYPE_APOLLODOMAIN            = 0x8019\n\tETHERTYPE_APPLETALK               = 0x809b\n\tETHERTYPE_APPLITEK                = 0x80c7\n\tETHERTYPE_ARGONAUT                = 0x803a\n\tETHERTYPE_ARP                     = 0x806\n\tETHERTYPE_AT                      = 0x809b\n\tETHERTYPE_ATALK                   = 0x809b\n\tETHERTYPE_ATOMIC                  = 0x86df\n\tETHERTYPE_ATT                     = 0x8069\n\tETHERTYPE_ATTSTANFORD             = 0x8008\n\tETHERTYPE_AUTOPHON                = 0x806a\n\tETHERTYPE_AXIS                    = 0x8856\n\tETHERTYPE_BCLOOP                  = 0x9003\n\tETHERTYPE_BOFL                    = 0x8102\n\tETHERTYPE_CABLETRON               = 0x7034\n\tETHERTYPE_CHAOS                   = 0x804\n\tETHERTYPE_COMDESIGN               = 0x806c\n\tETHERTYPE_COMPUGRAPHIC            = 0x806d\n\tETHERTYPE_COUNTERPOINT            = 0x8062\n\tETHERTYPE_CRONUS                  = 0x8004\n\tETHERTYPE_CRONUSVLN               = 0x8003\n\tETHERTYPE_DCA                     = 0x1234\n\tETHERTYPE_DDE                     = 0x807b\n\tETHERTYPE_DEBNI                   = 0xaaaa\n\tETHERTYPE_DECAM                   = 0x8048\n\tETHERTYPE_DECCUST                 = 0x6006\n\tETHERTYPE_DECDIAG                 = 0x6005\n\tETHERTYPE_DECDNS                  = 0x803c\n\tETHERTYPE_DECDTS                  = 0x803e\n\tETHERTYPE_DECEXPER                = 0x6000\n\tETHERTYPE_DECLAST                 = 0x8041\n\tETHERTYPE_DECLTM                  = 0x803f\n\tETHERTYPE_DECMUMPS                = 0x6009\n\tETHERTYPE_DECNETBIOS              = 0x8040\n\tETHERTYPE_DELTACON                = 0x86de\n\tETHERTYPE_DIDDLE                  = 0x4321\n\tETHERTYPE_DLOG1                   = 0x660\n\tETHERTYPE_DLOG2                   = 0x661\n\tETHERTYPE_DN                      = 0x6003\n\tETHERTYPE_DOGFIGHT                = 0x1989\n\tETHERTYPE_DSMD                    = 0x8039\n\tETHERTYPE_ECMA                    = 0x803\n\tETHERTYPE_ENCRYPT                 = 0x803d\n\tETHERTYPE_ES                      = 0x805d\n\tETHERTYPE_EXCELAN                 = 0x8010\n\tETHERTYPE_EXPERDATA               = 0x8049\n\tETHERTYPE_FLIP                    = 0x8146\n\tETHERTYPE_FLOWCONTROL             = 0x8808\n\tETHERTYPE_FRARP                   = 0x808\n\tETHERTYPE_GENDYN                  = 0x8068\n\tETHERTYPE_HAYES                   = 0x8130\n\tETHERTYPE_HIPPI_FP                = 0x8180\n\tETHERTYPE_HITACHI                 = 0x8820\n\tETHERTYPE_HP                      = 0x8005\n\tETHERTYPE_IEEEPUP                 = 0xa00\n\tETHERTYPE_IEEEPUPAT               = 0xa01\n\tETHERTYPE_IMLBL                   = 0x4c42\n\tETHERTYPE_IMLBLDIAG               = 0x424c\n\tETHERTYPE_IP                      = 0x800\n\tETHERTYPE_IPAS                    = 0x876c\n\tETHERTYPE_IPV6                    = 0x86dd\n\tETHERTYPE_IPX                     = 0x8137\n\tETHERTYPE_IPXNEW                  = 0x8037\n\tETHERTYPE_KALPANA                 = 0x8582\n\tETHERTYPE_LANBRIDGE               = 0x8038\n\tETHERTYPE_LANPROBE                = 0x8888\n\tETHERTYPE_LAT                     = 0x6004\n\tETHERTYPE_LBACK                   = 0x9000\n\tETHERTYPE_LITTLE                  = 0x8060\n\tETHERTYPE_LLDP                    = 0x88cc\n\tETHERTYPE_LOGICRAFT               = 0x8148\n\tETHERTYPE_LOOPBACK                = 0x9000\n\tETHERTYPE_MATRA                   = 0x807a\n\tETHERTYPE_MAX                     = 0xffff\n\tETHERTYPE_MERIT                   = 0x807c\n\tETHERTYPE_MICP                    = 0x873a\n\tETHERTYPE_MOPDL                   = 0x6001\n\tETHERTYPE_MOPRC                   = 0x6002\n\tETHERTYPE_MOTOROLA                = 0x818d\n\tETHERTYPE_MPLS                    = 0x8847\n\tETHERTYPE_MPLS_MCAST              = 0x8848\n\tETHERTYPE_MUMPS                   = 0x813f\n\tETHERTYPE_NBPCC                   = 0x3c04\n\tETHERTYPE_NBPCLAIM                = 0x3c09\n\tETHERTYPE_NBPCLREQ                = 0x3c05\n\tETHERTYPE_NBPCLRSP                = 0x3c06\n\tETHERTYPE_NBPCREQ                 = 0x3c02\n\tETHERTYPE_NBPCRSP                 = 0x3c03\n\tETHERTYPE_NBPDG                   = 0x3c07\n\tETHERTYPE_NBPDGB                  = 0x3c08\n\tETHERTYPE_NBPDLTE                 = 0x3c0a\n\tETHERTYPE_NBPRAR                  = 0x3c0c\n\tETHERTYPE_NBPRAS                  = 0x3c0b\n\tETHERTYPE_NBPRST                  = 0x3c0d\n\tETHERTYPE_NBPSCD                  = 0x3c01\n\tETHERTYPE_NBPVCD                  = 0x3c00\n\tETHERTYPE_NBS                     = 0x802\n\tETHERTYPE_NCD                     = 0x8149\n\tETHERTYPE_NESTAR                  = 0x8006\n\tETHERTYPE_NETBEUI                 = 0x8191\n\tETHERTYPE_NOVELL                  = 0x8138\n\tETHERTYPE_NS                      = 0x600\n\tETHERTYPE_NSAT                    = 0x601\n\tETHERTYPE_NSCOMPAT                = 0x807\n\tETHERTYPE_NTRAILER                = 0x10\n\tETHERTYPE_OS9                     = 0x7007\n\tETHERTYPE_OS9NET                  = 0x7009\n\tETHERTYPE_PACER                   = 0x80c6\n\tETHERTYPE_PAE                     = 0x888e\n\tETHERTYPE_PCS                     = 0x4242\n\tETHERTYPE_PLANNING                = 0x8044\n\tETHERTYPE_PPP                     = 0x880b\n\tETHERTYPE_PPPOE                   = 0x8864\n\tETHERTYPE_PPPOEDISC               = 0x8863\n\tETHERTYPE_PRIMENTS                = 0x7031\n\tETHERTYPE_PUP                     = 0x200\n\tETHERTYPE_PUPAT                   = 0x200\n\tETHERTYPE_QINQ                    = 0x88a8\n\tETHERTYPE_RACAL                   = 0x7030\n\tETHERTYPE_RATIONAL                = 0x8150\n\tETHERTYPE_RAWFR                   = 0x6559\n\tETHERTYPE_RCL                     = 0x1995\n\tETHERTYPE_RDP                     = 0x8739\n\tETHERTYPE_RETIX                   = 0x80f2\n\tETHERTYPE_REVARP                  = 0x8035\n\tETHERTYPE_SCA                     = 0x6007\n\tETHERTYPE_SECTRA                  = 0x86db\n\tETHERTYPE_SECUREDATA              = 0x876d\n\tETHERTYPE_SGITW                   = 0x817e\n\tETHERTYPE_SG_BOUNCE               = 0x8016\n\tETHERTYPE_SG_DIAG                 = 0x8013\n\tETHERTYPE_SG_NETGAMES             = 0x8014\n\tETHERTYPE_SG_RESV                 = 0x8015\n\tETHERTYPE_SIMNET                  = 0x5208\n\tETHERTYPE_SLOW                    = 0x8809\n\tETHERTYPE_SNA                     = 0x80d5\n\tETHERTYPE_SNMP                    = 0x814c\n\tETHERTYPE_SONIX                   = 0xfaf5\n\tETHERTYPE_SPIDER                  = 0x809f\n\tETHERTYPE_SPRITE                  = 0x500\n\tETHERTYPE_STP                     = 0x8181\n\tETHERTYPE_TALARIS                 = 0x812b\n\tETHERTYPE_TALARISMC               = 0x852b\n\tETHERTYPE_TCPCOMP                 = 0x876b\n\tETHERTYPE_TCPSM                   = 0x9002\n\tETHERTYPE_TEC                     = 0x814f\n\tETHERTYPE_TIGAN                   = 0x802f\n\tETHERTYPE_TRAIL                   = 0x1000\n\tETHERTYPE_TRANSETHER              = 0x6558\n\tETHERTYPE_TYMSHARE                = 0x802e\n\tETHERTYPE_UBBST                   = 0x7005\n\tETHERTYPE_UBDEBUG                 = 0x900\n\tETHERTYPE_UBDIAGLOOP              = 0x7002\n\tETHERTYPE_UBDL                    = 0x7000\n\tETHERTYPE_UBNIU                   = 0x7001\n\tETHERTYPE_UBNMC                   = 0x7003\n\tETHERTYPE_VALID                   = 0x1600\n\tETHERTYPE_VARIAN                  = 0x80dd\n\tETHERTYPE_VAXELN                  = 0x803b\n\tETHERTYPE_VEECO                   = 0x8067\n\tETHERTYPE_VEXP                    = 0x805b\n\tETHERTYPE_VGLAB                   = 0x8131\n\tETHERTYPE_VINES                   = 0xbad\n\tETHERTYPE_VINESECHO               = 0xbaf\n\tETHERTYPE_VINESLOOP               = 0xbae\n\tETHERTYPE_VITAL                   = 0xff00\n\tETHERTYPE_VLAN                    = 0x8100\n\tETHERTYPE_VLTLMAN                 = 0x8080\n\tETHERTYPE_VPROD                   = 0x805c\n\tETHERTYPE_VURESERVED              = 0x8147\n\tETHERTYPE_WATERLOO                = 0x8130\n\tETHERTYPE_WELLFLEET               = 0x8103\n\tETHERTYPE_X25                     = 0x805\n\tETHERTYPE_X75                     = 0x801\n\tETHERTYPE_XNSSM                   = 0x9001\n\tETHERTYPE_XTP                     = 0x817d\n\tETHER_ADDR_LEN                    = 0x6\n\tETHER_ALIGN                       = 0x2\n\tETHER_CRC_LEN                     = 0x4\n\tETHER_CRC_POLY_BE                 = 0x4c11db6\n\tETHER_CRC_POLY_LE                 = 0xedb88320\n\tETHER_HDR_LEN                     = 0xe\n\tETHER_MAX_DIX_LEN                 = 0x600\n\tETHER_MAX_LEN                     = 0x5ee\n\tETHER_MIN_LEN                     = 0x40\n\tETHER_TYPE_LEN                    = 0x2\n\tETHER_VLAN_ENCAP_LEN              = 0x4\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0x7\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFLUSHO                            = 0x800000\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0xa\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETOWN                          = 0x5\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFA_ROUTE                         = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x8e52\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_NOTRAILERS                    = 0x20\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BLUETOOTH                     = 0xf8\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf7\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DOCSCABLEUPSTREAMCHANNEL      = 0xcd\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DUMMY                         = 0xf1\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ECONET                        = 0xce\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf3\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INFINIBAND                    = 0xc7\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LINEGROUP                     = 0xd2\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFLOW                         = 0xf9\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_PON155                        = 0xcf\n\tIFT_PON622                        = 0xd0\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPATM                       = 0xc5\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf2\n\tIFT_Q2931                         = 0xc9\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SIPSIG                        = 0xcc\n\tIFT_SIPTG                         = 0xcb\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TELINK                        = 0xc8\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VIRTUALTG                     = 0xca\n\tIFT_VOICEDID                      = 0xd5\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEEMFGD                    = 0xd3\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFGDEANA                  = 0xd4\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERCABLE                = 0xc6\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIN_RFC3021_HOST                   = 0x1\n\tIN_RFC3021_NET                    = 0xfffffffe\n\tIN_RFC3021_NSHIFT                 = 0x1f\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_DIVERT                    = 0x102\n\tIPPROTO_DIVERT_INIT               = 0x2\n\tIPPROTO_DIVERT_RESP               = 0x1\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x103\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_MPLS                      = 0x89\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_UDP                       = 0x11\n\tIPV6_AUTH_LEVEL                   = 0x35\n\tIPV6_AUTOFLOWLABEL                = 0x3b\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_ESP_NETWORK_LEVEL            = 0x37\n\tIPV6_ESP_TRANS_LEVEL              = 0x36\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPCOMP_LEVEL                 = 0x3c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_OPTIONS                      = 0x1\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PIPEX                        = 0x3f\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVDSTPORT                  = 0x40\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTABLE                       = 0x1021\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_AUTH_LEVEL                     = 0x14\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DIVERTFL                       = 0x1022\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_ESP_NETWORK_LEVEL              = 0x16\n\tIP_ESP_TRANS_LEVEL                = 0x15\n\tIP_HDRINCL                        = 0x2\n\tIP_IPCOMP_LEVEL                   = 0x1d\n\tIP_IPSECFLOWINFO                  = 0x24\n\tIP_IPSEC_LOCAL_AUTH               = 0x1b\n\tIP_IPSEC_LOCAL_CRED               = 0x19\n\tIP_IPSEC_LOCAL_ID                 = 0x17\n\tIP_IPSEC_REMOTE_AUTH              = 0x1c\n\tIP_IPSEC_REMOTE_CRED              = 0x1a\n\tIP_IPSEC_REMOTE_ID                = 0x18\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0xfff\n\tIP_MF                             = 0x2000\n\tIP_MINTTL                         = 0x20\n\tIP_MIN_MEMBERSHIPS                = 0xf\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PIPEX                          = 0x22\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVDSTPORT                    = 0x21\n\tIP_RECVIF                         = 0x1e\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVRTABLE                     = 0x23\n\tIP_RECVTTL                        = 0x1f\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RTABLE                         = 0x1021\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLCNT_OVERLOAD_FLUSH               = 0x6\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x6\n\tMADV_NORMAL                       = 0x0\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SPACEAVAIL                   = 0x5\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_CONCEAL                       = 0x8000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_FLAGMASK                      = 0xfff7\n\tMAP_HASSEMAPHORE                  = 0x0\n\tMAP_INHERIT                       = 0x0\n\tMAP_INHERIT_COPY                  = 0x1\n\tMAP_INHERIT_NONE                  = 0x2\n\tMAP_INHERIT_SHARE                 = 0x0\n\tMAP_INHERIT_ZERO                  = 0x3\n\tMAP_NOEXTEND                      = 0x0\n\tMAP_NORESERVE                     = 0x0\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x0\n\tMAP_SHARED                        = 0x1\n\tMAP_STACK                         = 0x4000\n\tMAP_TRYFIXED                      = 0x0\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DELEXPORT                     = 0x20000\n\tMNT_DOOMED                        = 0x8000000\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_FORCE                         = 0x80000\n\tMNT_LAZY                          = 0x3\n\tMNT_LOCAL                         = 0x1000\n\tMNT_NOATIME                       = 0x8000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x4000000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0x400ffff\n\tMNT_WAIT                          = 0x1\n\tMNT_WANTRDWR                      = 0x2000000\n\tMNT_WXALLOWED                     = 0x800\n\tMSG_BCAST                         = 0x100\n\tMSG_CMSG_CLOEXEC                  = 0x800\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOR                           = 0x8\n\tMSG_MCAST                         = 0x200\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_TRUNC                         = 0x10\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x4\n\tMS_SYNC                           = 0x2\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_MAXID                      = 0x6\n\tNET_RT_STATS                      = 0x4\n\tNET_RT_TABLE                      = 0x5\n\tNFDBITS                           = 0x20\n\tNOFLSH                            = 0x80000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EOF                          = 0x2\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRUNCATE                     = 0x80\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tONLCR                             = 0x2\n\tONLRET                            = 0x80\n\tONOCR                             = 0x40\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tO_ACCMODE                         = 0x3\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x10000\n\tO_CREAT                           = 0x200\n\tO_DIRECTORY                       = 0x20000\n\tO_DSYNC                           = 0x80\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_RSYNC                           = 0x80\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPF_FLUSH                          = 0x1\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BRD                          = 0x7\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_LABEL                        = 0xa\n\tRTAX_MAX                          = 0xb\n\tRTAX_NETMASK                      = 0x2\n\tRTAX_SRC                          = 0x8\n\tRTAX_SRCMASK                      = 0x9\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BRD                           = 0x80\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_LABEL                         = 0x400\n\tRTA_NETMASK                       = 0x4\n\tRTA_SRC                           = 0x100\n\tRTA_SRCMASK                       = 0x200\n\tRTF_ANNOUNCE                      = 0x4000\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_BROADCAST                     = 0x400000\n\tRTF_CLONED                        = 0x10000\n\tRTF_CLONING                       = 0x100\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_FMASK                         = 0x70f808\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_LOCAL                         = 0x200000\n\tRTF_MASK                          = 0x80\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MPATH                         = 0x40000\n\tRTF_MPLS                          = 0x100000\n\tRTF_PERMANENT_ARP                 = 0x2000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x2000\n\tRTF_REJECT                        = 0x8\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_USETRAILERS                   = 0x8000\n\tRTF_XRESOLVE                      = 0x200\n\tRTM_ADD                           = 0x1\n\tRTM_CHANGE                        = 0x3\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DESYNC                        = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_IFANNOUNCE                    = 0xf\n\tRTM_IFINFO                        = 0xe\n\tRTM_LOCK                          = 0x8\n\tRTM_LOSING                        = 0x5\n\tRTM_MAXSIZE                       = 0x800\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x5\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRT_TABLEID_MAX                    = 0xff\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tRUSAGE_THREAD                     = 0x1\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x4\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCAIFGROUP                      = 0x80246987\n\tSIOCALIFADDR                      = 0x8218691c\n\tSIOCATMARK                        = 0x40047307\n\tSIOCBRDGADD                       = 0x8054693c\n\tSIOCBRDGADDS                      = 0x80546941\n\tSIOCBRDGARL                       = 0x806e694d\n\tSIOCBRDGDADDR                     = 0x81286947\n\tSIOCBRDGDEL                       = 0x8054693d\n\tSIOCBRDGDELS                      = 0x80546942\n\tSIOCBRDGFLUSH                     = 0x80546948\n\tSIOCBRDGFRL                       = 0x806e694e\n\tSIOCBRDGGCACHE                    = 0xc0146941\n\tSIOCBRDGGFD                       = 0xc0146952\n\tSIOCBRDGGHT                       = 0xc0146951\n\tSIOCBRDGGIFFLGS                   = 0xc054693e\n\tSIOCBRDGGMA                       = 0xc0146953\n\tSIOCBRDGGPARAM                    = 0xc03c6958\n\tSIOCBRDGGPRI                      = 0xc0146950\n\tSIOCBRDGGRL                       = 0xc028694f\n\tSIOCBRDGGSIFS                     = 0xc054693c\n\tSIOCBRDGGTO                       = 0xc0146946\n\tSIOCBRDGIFS                       = 0xc0546942\n\tSIOCBRDGRTS                       = 0xc0186943\n\tSIOCBRDGSADDR                     = 0xc1286944\n\tSIOCBRDGSCACHE                    = 0x80146940\n\tSIOCBRDGSFD                       = 0x80146952\n\tSIOCBRDGSHT                       = 0x80146951\n\tSIOCBRDGSIFCOST                   = 0x80546955\n\tSIOCBRDGSIFFLGS                   = 0x8054693f\n\tSIOCBRDGSIFPRIO                   = 0x80546954\n\tSIOCBRDGSMA                       = 0x80146953\n\tSIOCBRDGSPRI                      = 0x80146950\n\tSIOCBRDGSPROTO                    = 0x8014695a\n\tSIOCBRDGSTO                       = 0x80146945\n\tSIOCBRDGSTXHC                     = 0x80146959\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFGROUP                      = 0x80246989\n\tSIOCDIFPHYADDR                    = 0x80206949\n\tSIOCDLIFADDR                      = 0x8218691e\n\tSIOCGETKALIVE                     = 0xc01869a4\n\tSIOCGETLABEL                      = 0x8020699a\n\tSIOCGETPFLOW                      = 0xc02069fe\n\tSIOCGETPFSYNC                     = 0xc02069f8\n\tSIOCGETSGCNT                      = 0xc0147534\n\tSIOCGETVIFCNT                     = 0xc0147533\n\tSIOCGETVLAN                       = 0xc0206990\n\tSIOCGHIWAT                        = 0x40047301\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFASYNCMAP                   = 0xc020697c\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCONF                       = 0xc0086924\n\tSIOCGIFDATA                       = 0xc020691b\n\tSIOCGIFDESCR                      = 0xc0206981\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGATTR                      = 0xc024698b\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFGMEMB                      = 0xc024698a\n\tSIOCGIFGROUP                      = 0xc0246988\n\tSIOCGIFHARDMTU                    = 0xc02069a5\n\tSIOCGIFMEDIA                      = 0xc0286936\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc020697e\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPDSTADDR                   = 0xc0206948\n\tSIOCGIFPRIORITY                   = 0xc020699c\n\tSIOCGIFPSRCADDR                   = 0xc0206947\n\tSIOCGIFRDOMAIN                    = 0xc02069a0\n\tSIOCGIFRTLABEL                    = 0xc0206983\n\tSIOCGIFRXR                        = 0x802069aa\n\tSIOCGIFTIMESLOT                   = 0xc0206986\n\tSIOCGIFXFLAGS                     = 0xc020699e\n\tSIOCGLIFADDR                      = 0xc218691d\n\tSIOCGLIFPHYADDR                   = 0xc218694b\n\tSIOCGLIFPHYRTABLE                 = 0xc02069a2\n\tSIOCGLIFPHYTTL                    = 0xc02069a9\n\tSIOCGLOWAT                        = 0x40047303\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGSPPPPARAMS                   = 0xc0206994\n\tSIOCGVH                           = 0xc02069f6\n\tSIOCGVNETID                       = 0xc02069a7\n\tSIOCIFCREATE                      = 0x8020697a\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc00c6978\n\tSIOCSETKALIVE                     = 0x801869a3\n\tSIOCSETLABEL                      = 0x80206999\n\tSIOCSETPFLOW                      = 0x802069fd\n\tSIOCSETPFSYNC                     = 0x802069f7\n\tSIOCSETVLAN                       = 0x8020698f\n\tSIOCSHIWAT                        = 0x80047300\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFASYNCMAP                   = 0x8020697d\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFDESCR                      = 0x80206980\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGATTR                      = 0x8024698c\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFLLADDR                     = 0x8020691f\n\tSIOCSIFMEDIA                      = 0xc0206935\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x8020697f\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPHYADDR                    = 0x80406946\n\tSIOCSIFPRIORITY                   = 0x8020699b\n\tSIOCSIFRDOMAIN                    = 0x8020699f\n\tSIOCSIFRTLABEL                    = 0x80206982\n\tSIOCSIFTIMESLOT                   = 0x80206985\n\tSIOCSIFXFLAGS                     = 0x8020699d\n\tSIOCSLIFPHYADDR                   = 0x8218694a\n\tSIOCSLIFPHYRTABLE                 = 0x802069a1\n\tSIOCSLIFPHYTTL                    = 0x802069a8\n\tSIOCSLOWAT                        = 0x80047302\n\tSIOCSPGRP                         = 0x80047308\n\tSIOCSSPPPPARAMS                   = 0x80206993\n\tSIOCSVH                           = 0xc02069f5\n\tSIOCSVNETID                       = 0x802069a6\n\tSOCK_CLOEXEC                      = 0x8000\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_NONBLOCK                     = 0x4000\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_BINDANY                        = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NETPROC                        = 0x1020\n\tSO_OOBINLINE                      = 0x100\n\tSO_PEERCRED                       = 0x1022\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_RTABLE                         = 0x1021\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_SPLICE                         = 0x1023\n\tSO_TIMESTAMP                      = 0x800\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTCIFLUSH                          = 0x1\n\tTCIOFLUSH                         = 0x3\n\tTCOFLUSH                          = 0x2\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_SACK                      = 0x3\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MD5SIG                        = 0x4\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOPUSH                        = 0x10\n\tTCP_NSTATES                       = 0xb\n\tTCP_SACK_ENABLE                   = 0x8\n\tTCSAFLUSH                         = 0x2\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCONS                          = 0x80047462\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLAG_CLOCAL                   = 0x2\n\tTIOCFLAG_CRTSCTS                  = 0x4\n\tTIOCFLAG_MDMBUF                   = 0x8\n\tTIOCFLAG_PPS                      = 0x10\n\tTIOCFLAG_SOFTCAR                  = 0x1\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGFLAGS                        = 0x4004745d\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGSID                          = 0x40047463\n\tTIOCGTSTAMP                       = 0x400c745b\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x4004746a\n\tTIOCMODS                          = 0x8004746d\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSFLAGS                        = 0x8004745c\n\tTIOCSIG                           = 0x8004745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x80047465\n\tTIOCSTI                           = 0x80017472\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSTSTAMP                       = 0x8008745a\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCUCNTL                         = 0x80047466\n\tTOSTOP                            = 0x400000\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWALTSIG                           = 0x4\n\tWCONTINUED                        = 0x8\n\tWCOREFLAG                         = 0x80\n\tWNOHANG                           = 0x1\n\tWUNTRACED                         = 0x2\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x58)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x59)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEIPSEC          = syscall.Errno(0x52)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x5b)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMEDIUMTYPE     = syscall.Errno(0x56)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x53)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOMEDIUM       = syscall.Errno(0x55)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x5a)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x5b)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x57)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTHR    = syscall.Signal(0x20)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EWOULDBLOCK\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disk quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC program not available\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIPSEC\", \"IPsec processing failure\"},\n\t{83, \"ENOATTR\", \"attribute not found\"},\n\t{84, \"EILSEQ\", \"illegal byte sequence\"},\n\t{85, \"ENOMEDIUM\", \"no medium found\"},\n\t{86, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{87, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{88, \"ECANCELED\", \"operation canceled\"},\n\t{89, \"EIDRM\", \"identifier removed\"},\n\t{90, \"ENOMSG\", \"no message of desired type\"},\n\t{91, \"ELAST\", \"not supported\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGABRT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"thread AST\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,openbsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_BLUETOOTH                      = 0x20\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_ENCAP                          = 0x1c\n\tAF_HYLINK                         = 0xf\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x18\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_KEY                            = 0x1e\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x24\n\tAF_MPLS                           = 0x21\n\tAF_NATM                           = 0x1b\n\tAF_NS                             = 0x6\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x1d\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tALTWERASE                         = 0x200\n\tARPHRD_ETHER                      = 0x1\n\tARPHRD_FRELAY                     = 0xf\n\tARPHRD_IEEE1394                   = 0x18\n\tARPHRD_IEEE802                    = 0x6\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDIRFILT                      = 0x4004427c\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc010427b\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGFILDROP                      = 0x40044278\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044273\n\tBIOCGRTIMEOUT                     = 0x4010426e\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCLOCK                          = 0x20004276\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDIRFILT                      = 0x8004427d\n\tBIOCSDLT                          = 0x8004427a\n\tBIOCSETF                          = 0x80104267\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSETWF                         = 0x80104277\n\tBIOCSFILDROP                      = 0x80044279\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044272\n\tBIOCSRTIMEOUT                     = 0x8010426d\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DIRECTION_IN                  = 0x1\n\tBPF_DIRECTION_OUT                 = 0x2\n\tBPF_DIV                           = 0x30\n\tBPF_FILDROP_CAPTURE               = 0x1\n\tBPF_FILDROP_DROP                  = 0x2\n\tBPF_FILDROP_PASS                  = 0x0\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x200000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLOCK_BOOTTIME                    = 0x6\n\tCLOCK_MONOTONIC                   = 0x3\n\tCLOCK_PROCESS_CPUTIME_ID          = 0x2\n\tCLOCK_REALTIME                    = 0x0\n\tCLOCK_THREAD_CPUTIME_ID           = 0x4\n\tCLOCK_UPTIME                      = 0x5\n\tCPUSTATES                         = 0x6\n\tCP_IDLE                           = 0x5\n\tCP_INTR                           = 0x4\n\tCP_NICE                           = 0x1\n\tCP_SPIN                           = 0x3\n\tCP_SYS                            = 0x2\n\tCP_USER                           = 0x0\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x10000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0xff\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDIOCOSFPFLUSH                     = 0x2000444e\n\tDLT_ARCNET                        = 0x7\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AX25                          = 0x3\n\tDLT_CHAOS                         = 0x5\n\tDLT_C_HDLC                        = 0x68\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0xd\n\tDLT_FDDI                          = 0xa\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_LOOP                          = 0xc\n\tDLT_MPLS                          = 0xdb\n\tDLT_NULL                          = 0x0\n\tDLT_OPENFLOW                      = 0x10b\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PRONET                        = 0x4\n\tDLT_RAW                           = 0xe\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDLT_USBPCAP                       = 0xf9\n\tDLT_USER0                         = 0x93\n\tDLT_USER1                         = 0x94\n\tDLT_USER10                        = 0x9d\n\tDLT_USER11                        = 0x9e\n\tDLT_USER12                        = 0x9f\n\tDLT_USER13                        = 0xa0\n\tDLT_USER14                        = 0xa1\n\tDLT_USER15                        = 0xa2\n\tDLT_USER2                         = 0x95\n\tDLT_USER3                         = 0x96\n\tDLT_USER4                         = 0x97\n\tDLT_USER5                         = 0x98\n\tDLT_USER6                         = 0x99\n\tDLT_USER7                         = 0x9a\n\tDLT_USER8                         = 0x9b\n\tDLT_USER9                         = 0x9c\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEMT_TAGOVF                        = 0x1\n\tEMUL_ENABLED                      = 0x1\n\tEMUL_NATIVE                       = 0x2\n\tENDRUNDISC                        = 0x9\n\tETHERMIN                          = 0x2e\n\tETHERMTU                          = 0x5dc\n\tETHERTYPE_8023                    = 0x4\n\tETHERTYPE_AARP                    = 0x80f3\n\tETHERTYPE_ACCTON                  = 0x8390\n\tETHERTYPE_AEONIC                  = 0x8036\n\tETHERTYPE_ALPHA                   = 0x814a\n\tETHERTYPE_AMBER                   = 0x6008\n\tETHERTYPE_AMOEBA                  = 0x8145\n\tETHERTYPE_AOE                     = 0x88a2\n\tETHERTYPE_APOLLO                  = 0x80f7\n\tETHERTYPE_APOLLODOMAIN            = 0x8019\n\tETHERTYPE_APPLETALK               = 0x809b\n\tETHERTYPE_APPLITEK                = 0x80c7\n\tETHERTYPE_ARGONAUT                = 0x803a\n\tETHERTYPE_ARP                     = 0x806\n\tETHERTYPE_AT                      = 0x809b\n\tETHERTYPE_ATALK                   = 0x809b\n\tETHERTYPE_ATOMIC                  = 0x86df\n\tETHERTYPE_ATT                     = 0x8069\n\tETHERTYPE_ATTSTANFORD             = 0x8008\n\tETHERTYPE_AUTOPHON                = 0x806a\n\tETHERTYPE_AXIS                    = 0x8856\n\tETHERTYPE_BCLOOP                  = 0x9003\n\tETHERTYPE_BOFL                    = 0x8102\n\tETHERTYPE_CABLETRON               = 0x7034\n\tETHERTYPE_CHAOS                   = 0x804\n\tETHERTYPE_COMDESIGN               = 0x806c\n\tETHERTYPE_COMPUGRAPHIC            = 0x806d\n\tETHERTYPE_COUNTERPOINT            = 0x8062\n\tETHERTYPE_CRONUS                  = 0x8004\n\tETHERTYPE_CRONUSVLN               = 0x8003\n\tETHERTYPE_DCA                     = 0x1234\n\tETHERTYPE_DDE                     = 0x807b\n\tETHERTYPE_DEBNI                   = 0xaaaa\n\tETHERTYPE_DECAM                   = 0x8048\n\tETHERTYPE_DECCUST                 = 0x6006\n\tETHERTYPE_DECDIAG                 = 0x6005\n\tETHERTYPE_DECDNS                  = 0x803c\n\tETHERTYPE_DECDTS                  = 0x803e\n\tETHERTYPE_DECEXPER                = 0x6000\n\tETHERTYPE_DECLAST                 = 0x8041\n\tETHERTYPE_DECLTM                  = 0x803f\n\tETHERTYPE_DECMUMPS                = 0x6009\n\tETHERTYPE_DECNETBIOS              = 0x8040\n\tETHERTYPE_DELTACON                = 0x86de\n\tETHERTYPE_DIDDLE                  = 0x4321\n\tETHERTYPE_DLOG1                   = 0x660\n\tETHERTYPE_DLOG2                   = 0x661\n\tETHERTYPE_DN                      = 0x6003\n\tETHERTYPE_DOGFIGHT                = 0x1989\n\tETHERTYPE_DSMD                    = 0x8039\n\tETHERTYPE_ECMA                    = 0x803\n\tETHERTYPE_ENCRYPT                 = 0x803d\n\tETHERTYPE_ES                      = 0x805d\n\tETHERTYPE_EXCELAN                 = 0x8010\n\tETHERTYPE_EXPERDATA               = 0x8049\n\tETHERTYPE_FLIP                    = 0x8146\n\tETHERTYPE_FLOWCONTROL             = 0x8808\n\tETHERTYPE_FRARP                   = 0x808\n\tETHERTYPE_GENDYN                  = 0x8068\n\tETHERTYPE_HAYES                   = 0x8130\n\tETHERTYPE_HIPPI_FP                = 0x8180\n\tETHERTYPE_HITACHI                 = 0x8820\n\tETHERTYPE_HP                      = 0x8005\n\tETHERTYPE_IEEEPUP                 = 0xa00\n\tETHERTYPE_IEEEPUPAT               = 0xa01\n\tETHERTYPE_IMLBL                   = 0x4c42\n\tETHERTYPE_IMLBLDIAG               = 0x424c\n\tETHERTYPE_IP                      = 0x800\n\tETHERTYPE_IPAS                    = 0x876c\n\tETHERTYPE_IPV6                    = 0x86dd\n\tETHERTYPE_IPX                     = 0x8137\n\tETHERTYPE_IPXNEW                  = 0x8037\n\tETHERTYPE_KALPANA                 = 0x8582\n\tETHERTYPE_LANBRIDGE               = 0x8038\n\tETHERTYPE_LANPROBE                = 0x8888\n\tETHERTYPE_LAT                     = 0x6004\n\tETHERTYPE_LBACK                   = 0x9000\n\tETHERTYPE_LITTLE                  = 0x8060\n\tETHERTYPE_LLDP                    = 0x88cc\n\tETHERTYPE_LOGICRAFT               = 0x8148\n\tETHERTYPE_LOOPBACK                = 0x9000\n\tETHERTYPE_MATRA                   = 0x807a\n\tETHERTYPE_MAX                     = 0xffff\n\tETHERTYPE_MERIT                   = 0x807c\n\tETHERTYPE_MICP                    = 0x873a\n\tETHERTYPE_MOPDL                   = 0x6001\n\tETHERTYPE_MOPRC                   = 0x6002\n\tETHERTYPE_MOTOROLA                = 0x818d\n\tETHERTYPE_MPLS                    = 0x8847\n\tETHERTYPE_MPLS_MCAST              = 0x8848\n\tETHERTYPE_MUMPS                   = 0x813f\n\tETHERTYPE_NBPCC                   = 0x3c04\n\tETHERTYPE_NBPCLAIM                = 0x3c09\n\tETHERTYPE_NBPCLREQ                = 0x3c05\n\tETHERTYPE_NBPCLRSP                = 0x3c06\n\tETHERTYPE_NBPCREQ                 = 0x3c02\n\tETHERTYPE_NBPCRSP                 = 0x3c03\n\tETHERTYPE_NBPDG                   = 0x3c07\n\tETHERTYPE_NBPDGB                  = 0x3c08\n\tETHERTYPE_NBPDLTE                 = 0x3c0a\n\tETHERTYPE_NBPRAR                  = 0x3c0c\n\tETHERTYPE_NBPRAS                  = 0x3c0b\n\tETHERTYPE_NBPRST                  = 0x3c0d\n\tETHERTYPE_NBPSCD                  = 0x3c01\n\tETHERTYPE_NBPVCD                  = 0x3c00\n\tETHERTYPE_NBS                     = 0x802\n\tETHERTYPE_NCD                     = 0x8149\n\tETHERTYPE_NESTAR                  = 0x8006\n\tETHERTYPE_NETBEUI                 = 0x8191\n\tETHERTYPE_NOVELL                  = 0x8138\n\tETHERTYPE_NS                      = 0x600\n\tETHERTYPE_NSAT                    = 0x601\n\tETHERTYPE_NSCOMPAT                = 0x807\n\tETHERTYPE_NTRAILER                = 0x10\n\tETHERTYPE_OS9                     = 0x7007\n\tETHERTYPE_OS9NET                  = 0x7009\n\tETHERTYPE_PACER                   = 0x80c6\n\tETHERTYPE_PAE                     = 0x888e\n\tETHERTYPE_PBB                     = 0x88e7\n\tETHERTYPE_PCS                     = 0x4242\n\tETHERTYPE_PLANNING                = 0x8044\n\tETHERTYPE_PPP                     = 0x880b\n\tETHERTYPE_PPPOE                   = 0x8864\n\tETHERTYPE_PPPOEDISC               = 0x8863\n\tETHERTYPE_PRIMENTS                = 0x7031\n\tETHERTYPE_PUP                     = 0x200\n\tETHERTYPE_PUPAT                   = 0x200\n\tETHERTYPE_QINQ                    = 0x88a8\n\tETHERTYPE_RACAL                   = 0x7030\n\tETHERTYPE_RATIONAL                = 0x8150\n\tETHERTYPE_RAWFR                   = 0x6559\n\tETHERTYPE_RCL                     = 0x1995\n\tETHERTYPE_RDP                     = 0x8739\n\tETHERTYPE_RETIX                   = 0x80f2\n\tETHERTYPE_REVARP                  = 0x8035\n\tETHERTYPE_SCA                     = 0x6007\n\tETHERTYPE_SECTRA                  = 0x86db\n\tETHERTYPE_SECUREDATA              = 0x876d\n\tETHERTYPE_SGITW                   = 0x817e\n\tETHERTYPE_SG_BOUNCE               = 0x8016\n\tETHERTYPE_SG_DIAG                 = 0x8013\n\tETHERTYPE_SG_NETGAMES             = 0x8014\n\tETHERTYPE_SG_RESV                 = 0x8015\n\tETHERTYPE_SIMNET                  = 0x5208\n\tETHERTYPE_SLOW                    = 0x8809\n\tETHERTYPE_SNA                     = 0x80d5\n\tETHERTYPE_SNMP                    = 0x814c\n\tETHERTYPE_SONIX                   = 0xfaf5\n\tETHERTYPE_SPIDER                  = 0x809f\n\tETHERTYPE_SPRITE                  = 0x500\n\tETHERTYPE_STP                     = 0x8181\n\tETHERTYPE_TALARIS                 = 0x812b\n\tETHERTYPE_TALARISMC               = 0x852b\n\tETHERTYPE_TCPCOMP                 = 0x876b\n\tETHERTYPE_TCPSM                   = 0x9002\n\tETHERTYPE_TEC                     = 0x814f\n\tETHERTYPE_TIGAN                   = 0x802f\n\tETHERTYPE_TRAIL                   = 0x1000\n\tETHERTYPE_TRANSETHER              = 0x6558\n\tETHERTYPE_TYMSHARE                = 0x802e\n\tETHERTYPE_UBBST                   = 0x7005\n\tETHERTYPE_UBDEBUG                 = 0x900\n\tETHERTYPE_UBDIAGLOOP              = 0x7002\n\tETHERTYPE_UBDL                    = 0x7000\n\tETHERTYPE_UBNIU                   = 0x7001\n\tETHERTYPE_UBNMC                   = 0x7003\n\tETHERTYPE_VALID                   = 0x1600\n\tETHERTYPE_VARIAN                  = 0x80dd\n\tETHERTYPE_VAXELN                  = 0x803b\n\tETHERTYPE_VEECO                   = 0x8067\n\tETHERTYPE_VEXP                    = 0x805b\n\tETHERTYPE_VGLAB                   = 0x8131\n\tETHERTYPE_VINES                   = 0xbad\n\tETHERTYPE_VINESECHO               = 0xbaf\n\tETHERTYPE_VINESLOOP               = 0xbae\n\tETHERTYPE_VITAL                   = 0xff00\n\tETHERTYPE_VLAN                    = 0x8100\n\tETHERTYPE_VLTLMAN                 = 0x8080\n\tETHERTYPE_VPROD                   = 0x805c\n\tETHERTYPE_VURESERVED              = 0x8147\n\tETHERTYPE_WATERLOO                = 0x8130\n\tETHERTYPE_WELLFLEET               = 0x8103\n\tETHERTYPE_X25                     = 0x805\n\tETHERTYPE_X75                     = 0x801\n\tETHERTYPE_XNSSM                   = 0x9001\n\tETHERTYPE_XTP                     = 0x817d\n\tETHER_ADDR_LEN                    = 0x6\n\tETHER_ALIGN                       = 0x2\n\tETHER_CRC_LEN                     = 0x4\n\tETHER_CRC_POLY_BE                 = 0x4c11db6\n\tETHER_CRC_POLY_LE                 = 0xedb88320\n\tETHER_HDR_LEN                     = 0xe\n\tETHER_MAX_DIX_LEN                 = 0x600\n\tETHER_MAX_HARDMTU_LEN             = 0xff9b\n\tETHER_MAX_LEN                     = 0x5ee\n\tETHER_MIN_LEN                     = 0x40\n\tETHER_TYPE_LEN                    = 0x2\n\tETHER_VLAN_ENCAP_LEN              = 0x4\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_DEVICE                     = -0x8\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0x8\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEVL_ENCAPLEN                      = 0x4\n\tEVL_PRIO_BITS                     = 0xd\n\tEVL_PRIO_MAX                      = 0x7\n\tEVL_VLID_MASK                     = 0xfff\n\tEVL_VLID_MAX                      = 0xffe\n\tEVL_VLID_MIN                      = 0x1\n\tEVL_VLID_NULL                     = 0x0\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_DISPATCH                       = 0x80\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_RECEIPT                        = 0x40\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFLUSHO                            = 0x800000\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0xa\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETOWN                          = 0x5\n\tF_ISATTY                          = 0xb\n\tF_OK                              = 0x0\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x8e52\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_STATICARP                     = 0x20\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BLUETOOTH                     = 0xf8\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf7\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DOCSCABLEUPSTREAMCHANNEL      = 0xcd\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DUMMY                         = 0xf1\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ECONET                        = 0xce\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf3\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INFINIBAND                    = 0xc7\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LINEGROUP                     = 0xd2\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MBIM                          = 0xfa\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFLOW                         = 0xf9\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_PON155                        = 0xcf\n\tIFT_PON622                        = 0xd0\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPATM                       = 0xc5\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf2\n\tIFT_Q2931                         = 0xc9\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SIPSIG                        = 0xcc\n\tIFT_SIPTG                         = 0xcb\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TELINK                        = 0xc8\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VIRTUALTG                     = 0xca\n\tIFT_VOICEDID                      = 0xd5\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEEMFGD                    = 0xd3\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFGDEANA                  = 0xd4\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERCABLE                = 0xc6\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIN_RFC3021_HOST                   = 0x1\n\tIN_RFC3021_NET                    = 0xfffffffe\n\tIN_RFC3021_NSHIFT                 = 0x1f\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_DIVERT                    = 0x102\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x103\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_MPLS                      = 0x89\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_UDP                       = 0x11\n\tIPV6_AUTH_LEVEL                   = 0x35\n\tIPV6_AUTOFLOWLABEL                = 0x3b\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_ESP_NETWORK_LEVEL            = 0x37\n\tIPV6_ESP_TRANS_LEVEL              = 0x36\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xffffff0f\n\tIPV6_FLOWLABEL_MASK               = 0xffff0f00\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPCOMP_LEVEL                 = 0x3c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MINHOPCOUNT                  = 0x41\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_OPTIONS                      = 0x1\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PIPEX                        = 0x3f\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVDSTPORT                  = 0x40\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTABLE                       = 0x1021\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_AUTH_LEVEL                     = 0x14\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_ESP_NETWORK_LEVEL              = 0x16\n\tIP_ESP_TRANS_LEVEL                = 0x15\n\tIP_HDRINCL                        = 0x2\n\tIP_IPCOMP_LEVEL                   = 0x1d\n\tIP_IPDEFTTL                       = 0x25\n\tIP_IPSECFLOWINFO                  = 0x24\n\tIP_IPSEC_LOCAL_AUTH               = 0x1b\n\tIP_IPSEC_LOCAL_CRED               = 0x19\n\tIP_IPSEC_LOCAL_ID                 = 0x17\n\tIP_IPSEC_REMOTE_AUTH              = 0x1c\n\tIP_IPSEC_REMOTE_CRED              = 0x1a\n\tIP_IPSEC_REMOTE_ID                = 0x18\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0xfff\n\tIP_MF                             = 0x2000\n\tIP_MINTTL                         = 0x20\n\tIP_MIN_MEMBERSHIPS                = 0xf\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PIPEX                          = 0x22\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVDSTPORT                    = 0x21\n\tIP_RECVIF                         = 0x1e\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVRTABLE                     = 0x23\n\tIP_RECVTTL                        = 0x1f\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RTABLE                         = 0x1021\n\tIP_SENDSRCADDR                    = 0x7\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIUCLC                             = 0x1000\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLCNT_OVERLOAD_FLUSH               = 0x6\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x6\n\tMADV_NORMAL                       = 0x0\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SPACEAVAIL                   = 0x5\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_CONCEAL                       = 0x8000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_FLAGMASK                      = 0xfff7\n\tMAP_HASSEMAPHORE                  = 0x0\n\tMAP_INHERIT                       = 0x0\n\tMAP_INHERIT_COPY                  = 0x1\n\tMAP_INHERIT_NONE                  = 0x2\n\tMAP_INHERIT_SHARE                 = 0x0\n\tMAP_INHERIT_ZERO                  = 0x3\n\tMAP_NOEXTEND                      = 0x0\n\tMAP_NORESERVE                     = 0x0\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x0\n\tMAP_SHARED                        = 0x1\n\tMAP_STACK                         = 0x4000\n\tMAP_TRYFIXED                      = 0x0\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DELEXPORT                     = 0x20000\n\tMNT_DOOMED                        = 0x8000000\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_FORCE                         = 0x80000\n\tMNT_LAZY                          = 0x3\n\tMNT_LOCAL                         = 0x1000\n\tMNT_NOATIME                       = 0x8000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOPERM                        = 0x20\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x4000000\n\tMNT_STALLED                       = 0x100000\n\tMNT_SWAPPABLE                     = 0x200000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0x400ffff\n\tMNT_WAIT                          = 0x1\n\tMNT_WANTRDWR                      = 0x2000000\n\tMNT_WXALLOWED                     = 0x800\n\tMSG_BCAST                         = 0x100\n\tMSG_CMSG_CLOEXEC                  = 0x800\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOR                           = 0x8\n\tMSG_MCAST                         = 0x200\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_TRUNC                         = 0x10\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x4\n\tMS_SYNC                           = 0x2\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_IFNAMES                    = 0x6\n\tNET_RT_MAXID                      = 0x7\n\tNET_RT_STATS                      = 0x4\n\tNET_RT_TABLE                      = 0x5\n\tNFDBITS                           = 0x20\n\tNOFLSH                            = 0x80000000\n\tNOKERNINFO                        = 0x2000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHANGE                       = 0x1\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EOF                          = 0x2\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRUNCATE                     = 0x80\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOLCUC                             = 0x20\n\tONLCR                             = 0x2\n\tONLRET                            = 0x80\n\tONOCR                             = 0x40\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tOXTABS                            = 0x4\n\tO_ACCMODE                         = 0x3\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x10000\n\tO_CREAT                           = 0x200\n\tO_DIRECTORY                       = 0x20000\n\tO_DSYNC                           = 0x80\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_RSYNC                           = 0x80\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPF_FLUSH                          = 0x1\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BFD                          = 0xb\n\tRTAX_BRD                          = 0x7\n\tRTAX_DNS                          = 0xc\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_LABEL                        = 0xa\n\tRTAX_MAX                          = 0xf\n\tRTAX_NETMASK                      = 0x2\n\tRTAX_SEARCH                       = 0xe\n\tRTAX_SRC                          = 0x8\n\tRTAX_SRCMASK                      = 0x9\n\tRTAX_STATIC                       = 0xd\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BFD                           = 0x800\n\tRTA_BRD                           = 0x80\n\tRTA_DNS                           = 0x1000\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_LABEL                         = 0x400\n\tRTA_NETMASK                       = 0x4\n\tRTA_SEARCH                        = 0x4000\n\tRTA_SRC                           = 0x100\n\tRTA_SRCMASK                       = 0x200\n\tRTA_STATIC                        = 0x2000\n\tRTF_ANNOUNCE                      = 0x4000\n\tRTF_BFD                           = 0x1000000\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_BROADCAST                     = 0x400000\n\tRTF_CACHED                        = 0x20000\n\tRTF_CLONED                        = 0x10000\n\tRTF_CLONING                       = 0x100\n\tRTF_CONNECTED                     = 0x800000\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_FMASK                         = 0x110fc08\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_LOCAL                         = 0x200000\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MPATH                         = 0x40000\n\tRTF_MPLS                          = 0x100000\n\tRTF_MULTICAST                     = 0x200\n\tRTF_PERMANENT_ARP                 = 0x2000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x2000\n\tRTF_REJECT                        = 0x8\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_USETRAILERS                   = 0x8000\n\tRTM_80211INFO                     = 0x15\n\tRTM_ADD                           = 0x1\n\tRTM_BFD                           = 0x12\n\tRTM_CHANGE                        = 0x3\n\tRTM_CHGADDRATTR                   = 0x14\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DESYNC                        = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_IFANNOUNCE                    = 0xf\n\tRTM_IFINFO                        = 0xe\n\tRTM_INVALIDATE                    = 0x11\n\tRTM_LOSING                        = 0x5\n\tRTM_MAXSIZE                       = 0x800\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_PROPOSAL                      = 0x13\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x5\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRT_TABLEID_BITS                   = 0x8\n\tRT_TABLEID_MASK                   = 0xff\n\tRT_TABLEID_MAX                    = 0xff\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tRUSAGE_THREAD                     = 0x1\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x4\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCAIFGROUP                      = 0x80286987\n\tSIOCATMARK                        = 0x40047307\n\tSIOCBRDGADD                       = 0x8060693c\n\tSIOCBRDGADDL                      = 0x80606949\n\tSIOCBRDGADDS                      = 0x80606941\n\tSIOCBRDGARL                       = 0x808c694d\n\tSIOCBRDGDADDR                     = 0x81286947\n\tSIOCBRDGDEL                       = 0x8060693d\n\tSIOCBRDGDELS                      = 0x80606942\n\tSIOCBRDGFLUSH                     = 0x80606948\n\tSIOCBRDGFRL                       = 0x808c694e\n\tSIOCBRDGGCACHE                    = 0xc0186941\n\tSIOCBRDGGFD                       = 0xc0186952\n\tSIOCBRDGGHT                       = 0xc0186951\n\tSIOCBRDGGIFFLGS                   = 0xc060693e\n\tSIOCBRDGGMA                       = 0xc0186953\n\tSIOCBRDGGPARAM                    = 0xc0406958\n\tSIOCBRDGGPRI                      = 0xc0186950\n\tSIOCBRDGGRL                       = 0xc030694f\n\tSIOCBRDGGTO                       = 0xc0186946\n\tSIOCBRDGIFS                       = 0xc0606942\n\tSIOCBRDGRTS                       = 0xc0206943\n\tSIOCBRDGSADDR                     = 0xc1286944\n\tSIOCBRDGSCACHE                    = 0x80186940\n\tSIOCBRDGSFD                       = 0x80186952\n\tSIOCBRDGSHT                       = 0x80186951\n\tSIOCBRDGSIFCOST                   = 0x80606955\n\tSIOCBRDGSIFFLGS                   = 0x8060693f\n\tSIOCBRDGSIFPRIO                   = 0x80606954\n\tSIOCBRDGSIFPROT                   = 0x8060694a\n\tSIOCBRDGSMA                       = 0x80186953\n\tSIOCBRDGSPRI                      = 0x80186950\n\tSIOCBRDGSPROTO                    = 0x8018695a\n\tSIOCBRDGSTO                       = 0x80186945\n\tSIOCBRDGSTXHC                     = 0x80186959\n\tSIOCDELLABEL                      = 0x80206997\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFGROUP                      = 0x80286989\n\tSIOCDIFPARENT                     = 0x802069b4\n\tSIOCDIFPHYADDR                    = 0x80206949\n\tSIOCDPWE3NEIGHBOR                 = 0x802069de\n\tSIOCDVNETID                       = 0x802069af\n\tSIOCGETKALIVE                     = 0xc01869a4\n\tSIOCGETLABEL                      = 0x8020699a\n\tSIOCGETMPWCFG                     = 0xc02069ae\n\tSIOCGETPFLOW                      = 0xc02069fe\n\tSIOCGETPFSYNC                     = 0xc02069f8\n\tSIOCGETSGCNT                      = 0xc0207534\n\tSIOCGETVIFCNT                     = 0xc0287533\n\tSIOCGETVLAN                       = 0xc0206990\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCONF                       = 0xc0106924\n\tSIOCGIFDATA                       = 0xc020691b\n\tSIOCGIFDESCR                      = 0xc0206981\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGATTR                      = 0xc028698b\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFGLIST                      = 0xc028698d\n\tSIOCGIFGMEMB                      = 0xc028698a\n\tSIOCGIFGROUP                      = 0xc0286988\n\tSIOCGIFHARDMTU                    = 0xc02069a5\n\tSIOCGIFLLPRIO                     = 0xc02069b6\n\tSIOCGIFMEDIA                      = 0xc0406938\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc020697e\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPAIR                       = 0xc02069b1\n\tSIOCGIFPARENT                     = 0xc02069b3\n\tSIOCGIFPRIORITY                   = 0xc020699c\n\tSIOCGIFRDOMAIN                    = 0xc02069a0\n\tSIOCGIFRTLABEL                    = 0xc0206983\n\tSIOCGIFRXR                        = 0x802069aa\n\tSIOCGIFSFFPAGE                    = 0xc1126939\n\tSIOCGIFXFLAGS                     = 0xc020699e\n\tSIOCGLIFPHYADDR                   = 0xc218694b\n\tSIOCGLIFPHYDF                     = 0xc02069c2\n\tSIOCGLIFPHYECN                    = 0xc02069c8\n\tSIOCGLIFPHYRTABLE                 = 0xc02069a2\n\tSIOCGLIFPHYTTL                    = 0xc02069a9\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGPWE3                         = 0xc0206998\n\tSIOCGPWE3CTRLWORD                 = 0xc02069dc\n\tSIOCGPWE3FAT                      = 0xc02069dd\n\tSIOCGPWE3NEIGHBOR                 = 0xc21869de\n\tSIOCGSPPPPARAMS                   = 0xc0206994\n\tSIOCGTXHPRIO                      = 0xc02069c6\n\tSIOCGUMBINFO                      = 0xc02069be\n\tSIOCGUMBPARAM                     = 0xc02069c0\n\tSIOCGVH                           = 0xc02069f6\n\tSIOCGVNETFLOWID                   = 0xc02069c4\n\tSIOCGVNETID                       = 0xc02069a7\n\tSIOCIFAFATTACH                    = 0x801169ab\n\tSIOCIFAFDETACH                    = 0x801169ac\n\tSIOCIFCREATE                      = 0x8020697a\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc0106978\n\tSIOCSETKALIVE                     = 0x801869a3\n\tSIOCSETLABEL                      = 0x80206999\n\tSIOCSETMPWCFG                     = 0x802069ad\n\tSIOCSETPFLOW                      = 0x802069fd\n\tSIOCSETPFSYNC                     = 0x802069f7\n\tSIOCSETVLAN                       = 0x8020698f\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFDESCR                      = 0x80206980\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGATTR                      = 0x8028698c\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFLLADDR                     = 0x8020691f\n\tSIOCSIFLLPRIO                     = 0x802069b5\n\tSIOCSIFMEDIA                      = 0xc0206937\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x8020697f\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPAIR                       = 0x802069b0\n\tSIOCSIFPARENT                     = 0x802069b2\n\tSIOCSIFPRIORITY                   = 0x8020699b\n\tSIOCSIFRDOMAIN                    = 0x8020699f\n\tSIOCSIFRTLABEL                    = 0x80206982\n\tSIOCSIFXFLAGS                     = 0x8020699d\n\tSIOCSLIFPHYADDR                   = 0x8218694a\n\tSIOCSLIFPHYDF                     = 0x802069c1\n\tSIOCSLIFPHYECN                    = 0x802069c7\n\tSIOCSLIFPHYRTABLE                 = 0x802069a1\n\tSIOCSLIFPHYTTL                    = 0x802069a8\n\tSIOCSPGRP                         = 0x80047308\n\tSIOCSPWE3CTRLWORD                 = 0x802069dc\n\tSIOCSPWE3FAT                      = 0x802069dd\n\tSIOCSPWE3NEIGHBOR                 = 0x821869de\n\tSIOCSSPPPPARAMS                   = 0x80206993\n\tSIOCSTXHPRIO                      = 0x802069c5\n\tSIOCSUMBPARAM                     = 0x802069bf\n\tSIOCSVH                           = 0xc02069f5\n\tSIOCSVNETFLOWID                   = 0x802069c3\n\tSIOCSVNETID                       = 0x802069a6\n\tSIOCSWGDPID                       = 0xc018695b\n\tSIOCSWGMAXFLOW                    = 0xc0186960\n\tSIOCSWGMAXGROUP                   = 0xc018695d\n\tSIOCSWSDPID                       = 0x8018695c\n\tSIOCSWSPORTNO                     = 0xc060695f\n\tSOCK_CLOEXEC                      = 0x8000\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_DNS                          = 0x1000\n\tSOCK_NONBLOCK                     = 0x4000\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_BINDANY                        = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NETPROC                        = 0x1020\n\tSO_OOBINLINE                      = 0x100\n\tSO_PEERCRED                       = 0x1022\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_RTABLE                         = 0x1021\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_SPLICE                         = 0x1023\n\tSO_TIMESTAMP                      = 0x800\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tSO_ZEROIZE                        = 0x2000\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTCIFLUSH                          = 0x1\n\tTCIOFF                            = 0x3\n\tTCIOFLUSH                         = 0x3\n\tTCION                             = 0x4\n\tTCOFLUSH                          = 0x2\n\tTCOOFF                            = 0x1\n\tTCOON                             = 0x2\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_SACK                      = 0x3\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MD5SIG                        = 0x4\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOPUSH                        = 0x10\n\tTCP_SACK_ENABLE                   = 0x8\n\tTCSAFLUSH                         = 0x2\n\tTIMER_ABSTIME                     = 0x1\n\tTIMER_RELTIME                     = 0x0\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCHKVERAUTH                    = 0x2000741e\n\tTIOCCLRVERAUTH                    = 0x2000741d\n\tTIOCCONS                          = 0x80047462\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLAG_CLOCAL                   = 0x2\n\tTIOCFLAG_CRTSCTS                  = 0x4\n\tTIOCFLAG_MDMBUF                   = 0x8\n\tTIOCFLAG_PPS                      = 0x10\n\tTIOCFLAG_SOFTCAR                  = 0x1\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGFLAGS                        = 0x4004745d\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGSID                          = 0x40047463\n\tTIOCGTSTAMP                       = 0x4010745b\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x4004746a\n\tTIOCMODS                          = 0x8004746d\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSETVERAUTH                    = 0x8004741c\n\tTIOCSFLAGS                        = 0x8004745c\n\tTIOCSIG                           = 0x8004745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x20007465\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSTSTAMP                       = 0x8008745a\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCUCNTL                         = 0x80047466\n\tTIOCUCNTL_CBRK                    = 0x7a\n\tTIOCUCNTL_SBRK                    = 0x7b\n\tTOSTOP                            = 0x400000\n\tUTIME_NOW                         = -0x2\n\tUTIME_OMIT                        = -0x1\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVM_ANONMIN                        = 0x7\n\tVM_LOADAVG                        = 0x2\n\tVM_MALLOC_CONF                    = 0xc\n\tVM_MAXID                          = 0xd\n\tVM_MAXSLP                         = 0xa\n\tVM_METER                          = 0x1\n\tVM_NKMEMPAGES                     = 0x6\n\tVM_PSSTRINGS                      = 0x3\n\tVM_SWAPENCRYPT                    = 0x5\n\tVM_USPACE                         = 0xb\n\tVM_UVMEXP                         = 0x4\n\tVM_VNODEMIN                       = 0x9\n\tVM_VTEXTMIN                       = 0x8\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWALTSIG                           = 0x4\n\tWCONTINUED                        = 0x8\n\tWCOREFLAG                         = 0x80\n\tWNOHANG                           = 0x1\n\tWUNTRACED                         = 0x2\n\tXCASE                             = 0x1000000\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x5c)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x58)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x59)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEIPSEC          = syscall.Errno(0x52)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x5f)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMEDIUMTYPE     = syscall.Errno(0x56)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x53)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOMEDIUM       = syscall.Errno(0x55)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x5a)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x5d)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x5b)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x57)\n\tEOWNERDEAD      = syscall.Errno(0x5e)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x5f)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTHR    = syscall.Signal(0x20)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disk quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC program not available\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIPSEC\", \"IPsec processing failure\"},\n\t{83, \"ENOATTR\", \"attribute not found\"},\n\t{84, \"EILSEQ\", \"illegal byte sequence\"},\n\t{85, \"ENOMEDIUM\", \"no medium found\"},\n\t{86, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{87, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{88, \"ECANCELED\", \"operation canceled\"},\n\t{89, \"EIDRM\", \"identifier removed\"},\n\t{90, \"ENOMSG\", \"no message of desired type\"},\n\t{91, \"ENOTSUP\", \"not supported\"},\n\t{92, \"EBADMSG\", \"bad message\"},\n\t{93, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{94, \"EOWNERDEAD\", \"previous owner died\"},\n\t{95, \"ELAST\", \"protocol error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGABRT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"thread AST\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips64,openbsd\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_APPLETALK                      = 0x10\n\tAF_BLUETOOTH                      = 0x20\n\tAF_CCITT                          = 0xa\n\tAF_CHAOS                          = 0x5\n\tAF_CNT                            = 0x15\n\tAF_COIP                           = 0x14\n\tAF_DATAKIT                        = 0x9\n\tAF_DECnet                         = 0xc\n\tAF_DLI                            = 0xd\n\tAF_E164                           = 0x1a\n\tAF_ECMA                           = 0x8\n\tAF_ENCAP                          = 0x1c\n\tAF_HYLINK                         = 0xf\n\tAF_IMPLINK                        = 0x3\n\tAF_INET                           = 0x2\n\tAF_INET6                          = 0x18\n\tAF_IPX                            = 0x17\n\tAF_ISDN                           = 0x1a\n\tAF_ISO                            = 0x7\n\tAF_KEY                            = 0x1e\n\tAF_LAT                            = 0xe\n\tAF_LINK                           = 0x12\n\tAF_LOCAL                          = 0x1\n\tAF_MAX                            = 0x24\n\tAF_MPLS                           = 0x21\n\tAF_NATM                           = 0x1b\n\tAF_NS                             = 0x6\n\tAF_OSI                            = 0x7\n\tAF_PUP                            = 0x4\n\tAF_ROUTE                          = 0x11\n\tAF_SIP                            = 0x1d\n\tAF_SNA                            = 0xb\n\tAF_UNIX                           = 0x1\n\tAF_UNSPEC                         = 0x0\n\tALTWERASE                         = 0x200\n\tARPHRD_ETHER                      = 0x1\n\tARPHRD_FRELAY                     = 0xf\n\tARPHRD_IEEE1394                   = 0x18\n\tARPHRD_IEEE802                    = 0x6\n\tB0                                = 0x0\n\tB110                              = 0x6e\n\tB115200                           = 0x1c200\n\tB1200                             = 0x4b0\n\tB134                              = 0x86\n\tB14400                            = 0x3840\n\tB150                              = 0x96\n\tB1800                             = 0x708\n\tB19200                            = 0x4b00\n\tB200                              = 0xc8\n\tB230400                           = 0x38400\n\tB2400                             = 0x960\n\tB28800                            = 0x7080\n\tB300                              = 0x12c\n\tB38400                            = 0x9600\n\tB4800                             = 0x12c0\n\tB50                               = 0x32\n\tB57600                            = 0xe100\n\tB600                              = 0x258\n\tB7200                             = 0x1c20\n\tB75                               = 0x4b\n\tB76800                            = 0x12c00\n\tB9600                             = 0x2580\n\tBIOCFLUSH                         = 0x20004268\n\tBIOCGBLEN                         = 0x40044266\n\tBIOCGDIRFILT                      = 0x4004427c\n\tBIOCGDLT                          = 0x4004426a\n\tBIOCGDLTLIST                      = 0xc010427b\n\tBIOCGETIF                         = 0x4020426b\n\tBIOCGFILDROP                      = 0x40044278\n\tBIOCGHDRCMPLT                     = 0x40044274\n\tBIOCGRSIG                         = 0x40044273\n\tBIOCGRTIMEOUT                     = 0x4010426e\n\tBIOCGSTATS                        = 0x4008426f\n\tBIOCIMMEDIATE                     = 0x80044270\n\tBIOCLOCK                          = 0x20004276\n\tBIOCPROMISC                       = 0x20004269\n\tBIOCSBLEN                         = 0xc0044266\n\tBIOCSDIRFILT                      = 0x8004427d\n\tBIOCSDLT                          = 0x8004427a\n\tBIOCSETF                          = 0x80104267\n\tBIOCSETIF                         = 0x8020426c\n\tBIOCSETWF                         = 0x80104277\n\tBIOCSFILDROP                      = 0x80044279\n\tBIOCSHDRCMPLT                     = 0x80044275\n\tBIOCSRSIG                         = 0x80044272\n\tBIOCSRTIMEOUT                     = 0x8010426d\n\tBIOCVERSION                       = 0x40044271\n\tBPF_A                             = 0x10\n\tBPF_ABS                           = 0x20\n\tBPF_ADD                           = 0x0\n\tBPF_ALIGNMENT                     = 0x4\n\tBPF_ALU                           = 0x4\n\tBPF_AND                           = 0x50\n\tBPF_B                             = 0x10\n\tBPF_DIRECTION_IN                  = 0x1\n\tBPF_DIRECTION_OUT                 = 0x2\n\tBPF_DIV                           = 0x30\n\tBPF_FILDROP_CAPTURE               = 0x1\n\tBPF_FILDROP_DROP                  = 0x2\n\tBPF_FILDROP_PASS                  = 0x0\n\tBPF_H                             = 0x8\n\tBPF_IMM                           = 0x0\n\tBPF_IND                           = 0x40\n\tBPF_JA                            = 0x0\n\tBPF_JEQ                           = 0x10\n\tBPF_JGE                           = 0x30\n\tBPF_JGT                           = 0x20\n\tBPF_JMP                           = 0x5\n\tBPF_JSET                          = 0x40\n\tBPF_K                             = 0x0\n\tBPF_LD                            = 0x0\n\tBPF_LDX                           = 0x1\n\tBPF_LEN                           = 0x80\n\tBPF_LSH                           = 0x60\n\tBPF_MAJOR_VERSION                 = 0x1\n\tBPF_MAXBUFSIZE                    = 0x200000\n\tBPF_MAXINSNS                      = 0x200\n\tBPF_MEM                           = 0x60\n\tBPF_MEMWORDS                      = 0x10\n\tBPF_MINBUFSIZE                    = 0x20\n\tBPF_MINOR_VERSION                 = 0x1\n\tBPF_MISC                          = 0x7\n\tBPF_MSH                           = 0xa0\n\tBPF_MUL                           = 0x20\n\tBPF_NEG                           = 0x80\n\tBPF_OR                            = 0x40\n\tBPF_RELEASE                       = 0x30bb6\n\tBPF_RET                           = 0x6\n\tBPF_RSH                           = 0x70\n\tBPF_ST                            = 0x2\n\tBPF_STX                           = 0x3\n\tBPF_SUB                           = 0x10\n\tBPF_TAX                           = 0x0\n\tBPF_TXA                           = 0x80\n\tBPF_W                             = 0x0\n\tBPF_X                             = 0x8\n\tBRKINT                            = 0x2\n\tCFLUSH                            = 0xf\n\tCLOCAL                            = 0x8000\n\tCLOCK_BOOTTIME                    = 0x6\n\tCLOCK_MONOTONIC                   = 0x3\n\tCLOCK_PROCESS_CPUTIME_ID          = 0x2\n\tCLOCK_REALTIME                    = 0x0\n\tCLOCK_THREAD_CPUTIME_ID           = 0x4\n\tCLOCK_UPTIME                      = 0x5\n\tCPUSTATES                         = 0x6\n\tCP_IDLE                           = 0x5\n\tCP_INTR                           = 0x4\n\tCP_NICE                           = 0x1\n\tCP_SPIN                           = 0x3\n\tCP_SYS                            = 0x2\n\tCP_USER                           = 0x0\n\tCREAD                             = 0x800\n\tCRTSCTS                           = 0x10000\n\tCS5                               = 0x0\n\tCS6                               = 0x100\n\tCS7                               = 0x200\n\tCS8                               = 0x300\n\tCSIZE                             = 0x300\n\tCSTART                            = 0x11\n\tCSTATUS                           = 0xff\n\tCSTOP                             = 0x13\n\tCSTOPB                            = 0x400\n\tCSUSP                             = 0x1a\n\tCTL_HW                            = 0x6\n\tCTL_KERN                          = 0x1\n\tCTL_MAXNAME                       = 0xc\n\tCTL_NET                           = 0x4\n\tDIOCADDQUEUE                      = 0xc110445d\n\tDIOCADDRULE                       = 0xcd604404\n\tDIOCADDSTATE                      = 0xc1084425\n\tDIOCCHANGERULE                    = 0xcd60441a\n\tDIOCCLRIFFLAG                     = 0xc028445a\n\tDIOCCLRSRCNODES                   = 0x20004455\n\tDIOCCLRSTATES                     = 0xc0e04412\n\tDIOCCLRSTATUS                     = 0xc0284416\n\tDIOCGETLIMIT                      = 0xc0084427\n\tDIOCGETQSTATS                     = 0xc1204460\n\tDIOCGETQUEUE                      = 0xc110445f\n\tDIOCGETQUEUES                     = 0xc110445e\n\tDIOCGETRULE                       = 0xcd604407\n\tDIOCGETRULES                      = 0xcd604406\n\tDIOCGETRULESET                    = 0xc444443b\n\tDIOCGETRULESETS                   = 0xc444443a\n\tDIOCGETSRCNODES                   = 0xc0104454\n\tDIOCGETSTATE                      = 0xc1084413\n\tDIOCGETSTATES                     = 0xc0104419\n\tDIOCGETSTATUS                     = 0xc1e84415\n\tDIOCGETSYNFLWATS                  = 0xc0084463\n\tDIOCGETTIMEOUT                    = 0xc008441e\n\tDIOCIGETIFACES                    = 0xc0284457\n\tDIOCKILLSRCNODES                  = 0xc080445b\n\tDIOCKILLSTATES                    = 0xc0e04429\n\tDIOCNATLOOK                       = 0xc0504417\n\tDIOCOSFPADD                       = 0xc088444f\n\tDIOCOSFPFLUSH                     = 0x2000444e\n\tDIOCOSFPGET                       = 0xc0884450\n\tDIOCRADDADDRS                     = 0xc4504443\n\tDIOCRADDTABLES                    = 0xc450443d\n\tDIOCRCLRADDRS                     = 0xc4504442\n\tDIOCRCLRASTATS                    = 0xc4504448\n\tDIOCRCLRTABLES                    = 0xc450443c\n\tDIOCRCLRTSTATS                    = 0xc4504441\n\tDIOCRDELADDRS                     = 0xc4504444\n\tDIOCRDELTABLES                    = 0xc450443e\n\tDIOCRGETADDRS                     = 0xc4504446\n\tDIOCRGETASTATS                    = 0xc4504447\n\tDIOCRGETTABLES                    = 0xc450443f\n\tDIOCRGETTSTATS                    = 0xc4504440\n\tDIOCRINADEFINE                    = 0xc450444d\n\tDIOCRSETADDRS                     = 0xc4504445\n\tDIOCRSETTFLAGS                    = 0xc450444a\n\tDIOCRTSTADDRS                     = 0xc4504449\n\tDIOCSETDEBUG                      = 0xc0044418\n\tDIOCSETHOSTID                     = 0xc0044456\n\tDIOCSETIFFLAG                     = 0xc0284459\n\tDIOCSETLIMIT                      = 0xc0084428\n\tDIOCSETREASS                      = 0xc004445c\n\tDIOCSETSTATUSIF                   = 0xc0284414\n\tDIOCSETSYNCOOKIES                 = 0xc0014462\n\tDIOCSETSYNFLWATS                  = 0xc0084461\n\tDIOCSETTIMEOUT                    = 0xc008441d\n\tDIOCSTART                         = 0x20004401\n\tDIOCSTOP                          = 0x20004402\n\tDIOCXBEGIN                        = 0xc0104451\n\tDIOCXCOMMIT                       = 0xc0104452\n\tDIOCXROLLBACK                     = 0xc0104453\n\tDLT_ARCNET                        = 0x7\n\tDLT_ATM_RFC1483                   = 0xb\n\tDLT_AX25                          = 0x3\n\tDLT_CHAOS                         = 0x5\n\tDLT_C_HDLC                        = 0x68\n\tDLT_EN10MB                        = 0x1\n\tDLT_EN3MB                         = 0x2\n\tDLT_ENC                           = 0xd\n\tDLT_FDDI                          = 0xa\n\tDLT_IEEE802                       = 0x6\n\tDLT_IEEE802_11                    = 0x69\n\tDLT_IEEE802_11_RADIO              = 0x7f\n\tDLT_LOOP                          = 0xc\n\tDLT_MPLS                          = 0xdb\n\tDLT_NULL                          = 0x0\n\tDLT_OPENFLOW                      = 0x10b\n\tDLT_PFLOG                         = 0x75\n\tDLT_PFSYNC                        = 0x12\n\tDLT_PPP                           = 0x9\n\tDLT_PPP_BSDOS                     = 0x10\n\tDLT_PPP_ETHER                     = 0x33\n\tDLT_PPP_SERIAL                    = 0x32\n\tDLT_PRONET                        = 0x4\n\tDLT_RAW                           = 0xe\n\tDLT_SLIP                          = 0x8\n\tDLT_SLIP_BSDOS                    = 0xf\n\tDLT_USBPCAP                       = 0xf9\n\tDLT_USER0                         = 0x93\n\tDLT_USER1                         = 0x94\n\tDLT_USER10                        = 0x9d\n\tDLT_USER11                        = 0x9e\n\tDLT_USER12                        = 0x9f\n\tDLT_USER13                        = 0xa0\n\tDLT_USER14                        = 0xa1\n\tDLT_USER15                        = 0xa2\n\tDLT_USER2                         = 0x95\n\tDLT_USER3                         = 0x96\n\tDLT_USER4                         = 0x97\n\tDLT_USER5                         = 0x98\n\tDLT_USER6                         = 0x99\n\tDLT_USER7                         = 0x9a\n\tDLT_USER8                         = 0x9b\n\tDLT_USER9                         = 0x9c\n\tDT_BLK                            = 0x6\n\tDT_CHR                            = 0x2\n\tDT_DIR                            = 0x4\n\tDT_FIFO                           = 0x1\n\tDT_LNK                            = 0xa\n\tDT_REG                            = 0x8\n\tDT_SOCK                           = 0xc\n\tDT_UNKNOWN                        = 0x0\n\tECHO                              = 0x8\n\tECHOCTL                           = 0x40\n\tECHOE                             = 0x2\n\tECHOK                             = 0x4\n\tECHOKE                            = 0x1\n\tECHONL                            = 0x10\n\tECHOPRT                           = 0x20\n\tEMT_TAGOVF                        = 0x1\n\tEMUL_ENABLED                      = 0x1\n\tEMUL_NATIVE                       = 0x2\n\tENDRUNDISC                        = 0x9\n\tETHERMIN                          = 0x2e\n\tETHERMTU                          = 0x5dc\n\tETHERTYPE_8023                    = 0x4\n\tETHERTYPE_AARP                    = 0x80f3\n\tETHERTYPE_ACCTON                  = 0x8390\n\tETHERTYPE_AEONIC                  = 0x8036\n\tETHERTYPE_ALPHA                   = 0x814a\n\tETHERTYPE_AMBER                   = 0x6008\n\tETHERTYPE_AMOEBA                  = 0x8145\n\tETHERTYPE_AOE                     = 0x88a2\n\tETHERTYPE_APOLLO                  = 0x80f7\n\tETHERTYPE_APOLLODOMAIN            = 0x8019\n\tETHERTYPE_APPLETALK               = 0x809b\n\tETHERTYPE_APPLITEK                = 0x80c7\n\tETHERTYPE_ARGONAUT                = 0x803a\n\tETHERTYPE_ARP                     = 0x806\n\tETHERTYPE_AT                      = 0x809b\n\tETHERTYPE_ATALK                   = 0x809b\n\tETHERTYPE_ATOMIC                  = 0x86df\n\tETHERTYPE_ATT                     = 0x8069\n\tETHERTYPE_ATTSTANFORD             = 0x8008\n\tETHERTYPE_AUTOPHON                = 0x806a\n\tETHERTYPE_AXIS                    = 0x8856\n\tETHERTYPE_BCLOOP                  = 0x9003\n\tETHERTYPE_BOFL                    = 0x8102\n\tETHERTYPE_CABLETRON               = 0x7034\n\tETHERTYPE_CHAOS                   = 0x804\n\tETHERTYPE_COMDESIGN               = 0x806c\n\tETHERTYPE_COMPUGRAPHIC            = 0x806d\n\tETHERTYPE_COUNTERPOINT            = 0x8062\n\tETHERTYPE_CRONUS                  = 0x8004\n\tETHERTYPE_CRONUSVLN               = 0x8003\n\tETHERTYPE_DCA                     = 0x1234\n\tETHERTYPE_DDE                     = 0x807b\n\tETHERTYPE_DEBNI                   = 0xaaaa\n\tETHERTYPE_DECAM                   = 0x8048\n\tETHERTYPE_DECCUST                 = 0x6006\n\tETHERTYPE_DECDIAG                 = 0x6005\n\tETHERTYPE_DECDNS                  = 0x803c\n\tETHERTYPE_DECDTS                  = 0x803e\n\tETHERTYPE_DECEXPER                = 0x6000\n\tETHERTYPE_DECLAST                 = 0x8041\n\tETHERTYPE_DECLTM                  = 0x803f\n\tETHERTYPE_DECMUMPS                = 0x6009\n\tETHERTYPE_DECNETBIOS              = 0x8040\n\tETHERTYPE_DELTACON                = 0x86de\n\tETHERTYPE_DIDDLE                  = 0x4321\n\tETHERTYPE_DLOG1                   = 0x660\n\tETHERTYPE_DLOG2                   = 0x661\n\tETHERTYPE_DN                      = 0x6003\n\tETHERTYPE_DOGFIGHT                = 0x1989\n\tETHERTYPE_DSMD                    = 0x8039\n\tETHERTYPE_ECMA                    = 0x803\n\tETHERTYPE_ENCRYPT                 = 0x803d\n\tETHERTYPE_ES                      = 0x805d\n\tETHERTYPE_EXCELAN                 = 0x8010\n\tETHERTYPE_EXPERDATA               = 0x8049\n\tETHERTYPE_FLIP                    = 0x8146\n\tETHERTYPE_FLOWCONTROL             = 0x8808\n\tETHERTYPE_FRARP                   = 0x808\n\tETHERTYPE_GENDYN                  = 0x8068\n\tETHERTYPE_HAYES                   = 0x8130\n\tETHERTYPE_HIPPI_FP                = 0x8180\n\tETHERTYPE_HITACHI                 = 0x8820\n\tETHERTYPE_HP                      = 0x8005\n\tETHERTYPE_IEEEPUP                 = 0xa00\n\tETHERTYPE_IEEEPUPAT               = 0xa01\n\tETHERTYPE_IMLBL                   = 0x4c42\n\tETHERTYPE_IMLBLDIAG               = 0x424c\n\tETHERTYPE_IP                      = 0x800\n\tETHERTYPE_IPAS                    = 0x876c\n\tETHERTYPE_IPV6                    = 0x86dd\n\tETHERTYPE_IPX                     = 0x8137\n\tETHERTYPE_IPXNEW                  = 0x8037\n\tETHERTYPE_KALPANA                 = 0x8582\n\tETHERTYPE_LANBRIDGE               = 0x8038\n\tETHERTYPE_LANPROBE                = 0x8888\n\tETHERTYPE_LAT                     = 0x6004\n\tETHERTYPE_LBACK                   = 0x9000\n\tETHERTYPE_LITTLE                  = 0x8060\n\tETHERTYPE_LLDP                    = 0x88cc\n\tETHERTYPE_LOGICRAFT               = 0x8148\n\tETHERTYPE_LOOPBACK                = 0x9000\n\tETHERTYPE_MACSEC                  = 0x88e5\n\tETHERTYPE_MATRA                   = 0x807a\n\tETHERTYPE_MAX                     = 0xffff\n\tETHERTYPE_MERIT                   = 0x807c\n\tETHERTYPE_MICP                    = 0x873a\n\tETHERTYPE_MOPDL                   = 0x6001\n\tETHERTYPE_MOPRC                   = 0x6002\n\tETHERTYPE_MOTOROLA                = 0x818d\n\tETHERTYPE_MPLS                    = 0x8847\n\tETHERTYPE_MPLS_MCAST              = 0x8848\n\tETHERTYPE_MUMPS                   = 0x813f\n\tETHERTYPE_NBPCC                   = 0x3c04\n\tETHERTYPE_NBPCLAIM                = 0x3c09\n\tETHERTYPE_NBPCLREQ                = 0x3c05\n\tETHERTYPE_NBPCLRSP                = 0x3c06\n\tETHERTYPE_NBPCREQ                 = 0x3c02\n\tETHERTYPE_NBPCRSP                 = 0x3c03\n\tETHERTYPE_NBPDG                   = 0x3c07\n\tETHERTYPE_NBPDGB                  = 0x3c08\n\tETHERTYPE_NBPDLTE                 = 0x3c0a\n\tETHERTYPE_NBPRAR                  = 0x3c0c\n\tETHERTYPE_NBPRAS                  = 0x3c0b\n\tETHERTYPE_NBPRST                  = 0x3c0d\n\tETHERTYPE_NBPSCD                  = 0x3c01\n\tETHERTYPE_NBPVCD                  = 0x3c00\n\tETHERTYPE_NBS                     = 0x802\n\tETHERTYPE_NCD                     = 0x8149\n\tETHERTYPE_NESTAR                  = 0x8006\n\tETHERTYPE_NETBEUI                 = 0x8191\n\tETHERTYPE_NOVELL                  = 0x8138\n\tETHERTYPE_NS                      = 0x600\n\tETHERTYPE_NSAT                    = 0x601\n\tETHERTYPE_NSCOMPAT                = 0x807\n\tETHERTYPE_NTRAILER                = 0x10\n\tETHERTYPE_OS9                     = 0x7007\n\tETHERTYPE_OS9NET                  = 0x7009\n\tETHERTYPE_PACER                   = 0x80c6\n\tETHERTYPE_PAE                     = 0x888e\n\tETHERTYPE_PBB                     = 0x88e7\n\tETHERTYPE_PCS                     = 0x4242\n\tETHERTYPE_PLANNING                = 0x8044\n\tETHERTYPE_PPP                     = 0x880b\n\tETHERTYPE_PPPOE                   = 0x8864\n\tETHERTYPE_PPPOEDISC               = 0x8863\n\tETHERTYPE_PRIMENTS                = 0x7031\n\tETHERTYPE_PUP                     = 0x200\n\tETHERTYPE_PUPAT                   = 0x200\n\tETHERTYPE_QINQ                    = 0x88a8\n\tETHERTYPE_RACAL                   = 0x7030\n\tETHERTYPE_RATIONAL                = 0x8150\n\tETHERTYPE_RAWFR                   = 0x6559\n\tETHERTYPE_RCL                     = 0x1995\n\tETHERTYPE_RDP                     = 0x8739\n\tETHERTYPE_RETIX                   = 0x80f2\n\tETHERTYPE_REVARP                  = 0x8035\n\tETHERTYPE_SCA                     = 0x6007\n\tETHERTYPE_SECTRA                  = 0x86db\n\tETHERTYPE_SECUREDATA              = 0x876d\n\tETHERTYPE_SGITW                   = 0x817e\n\tETHERTYPE_SG_BOUNCE               = 0x8016\n\tETHERTYPE_SG_DIAG                 = 0x8013\n\tETHERTYPE_SG_NETGAMES             = 0x8014\n\tETHERTYPE_SG_RESV                 = 0x8015\n\tETHERTYPE_SIMNET                  = 0x5208\n\tETHERTYPE_SLOW                    = 0x8809\n\tETHERTYPE_SNA                     = 0x80d5\n\tETHERTYPE_SNMP                    = 0x814c\n\tETHERTYPE_SONIX                   = 0xfaf5\n\tETHERTYPE_SPIDER                  = 0x809f\n\tETHERTYPE_SPRITE                  = 0x500\n\tETHERTYPE_STP                     = 0x8181\n\tETHERTYPE_TALARIS                 = 0x812b\n\tETHERTYPE_TALARISMC               = 0x852b\n\tETHERTYPE_TCPCOMP                 = 0x876b\n\tETHERTYPE_TCPSM                   = 0x9002\n\tETHERTYPE_TEC                     = 0x814f\n\tETHERTYPE_TIGAN                   = 0x802f\n\tETHERTYPE_TRAIL                   = 0x1000\n\tETHERTYPE_TRANSETHER              = 0x6558\n\tETHERTYPE_TYMSHARE                = 0x802e\n\tETHERTYPE_UBBST                   = 0x7005\n\tETHERTYPE_UBDEBUG                 = 0x900\n\tETHERTYPE_UBDIAGLOOP              = 0x7002\n\tETHERTYPE_UBDL                    = 0x7000\n\tETHERTYPE_UBNIU                   = 0x7001\n\tETHERTYPE_UBNMC                   = 0x7003\n\tETHERTYPE_VALID                   = 0x1600\n\tETHERTYPE_VARIAN                  = 0x80dd\n\tETHERTYPE_VAXELN                  = 0x803b\n\tETHERTYPE_VEECO                   = 0x8067\n\tETHERTYPE_VEXP                    = 0x805b\n\tETHERTYPE_VGLAB                   = 0x8131\n\tETHERTYPE_VINES                   = 0xbad\n\tETHERTYPE_VINESECHO               = 0xbaf\n\tETHERTYPE_VINESLOOP               = 0xbae\n\tETHERTYPE_VITAL                   = 0xff00\n\tETHERTYPE_VLAN                    = 0x8100\n\tETHERTYPE_VLTLMAN                 = 0x8080\n\tETHERTYPE_VPROD                   = 0x805c\n\tETHERTYPE_VURESERVED              = 0x8147\n\tETHERTYPE_WATERLOO                = 0x8130\n\tETHERTYPE_WELLFLEET               = 0x8103\n\tETHERTYPE_X25                     = 0x805\n\tETHERTYPE_X75                     = 0x801\n\tETHERTYPE_XNSSM                   = 0x9001\n\tETHERTYPE_XTP                     = 0x817d\n\tETHER_ADDR_LEN                    = 0x6\n\tETHER_ALIGN                       = 0x2\n\tETHER_CRC_LEN                     = 0x4\n\tETHER_CRC_POLY_BE                 = 0x4c11db6\n\tETHER_CRC_POLY_LE                 = 0xedb88320\n\tETHER_HDR_LEN                     = 0xe\n\tETHER_MAX_DIX_LEN                 = 0x600\n\tETHER_MAX_HARDMTU_LEN             = 0xff9b\n\tETHER_MAX_LEN                     = 0x5ee\n\tETHER_MIN_LEN                     = 0x40\n\tETHER_TYPE_LEN                    = 0x2\n\tETHER_VLAN_ENCAP_LEN              = 0x4\n\tEVFILT_AIO                        = -0x3\n\tEVFILT_DEVICE                     = -0x8\n\tEVFILT_PROC                       = -0x5\n\tEVFILT_READ                       = -0x1\n\tEVFILT_SIGNAL                     = -0x6\n\tEVFILT_SYSCOUNT                   = 0x8\n\tEVFILT_TIMER                      = -0x7\n\tEVFILT_VNODE                      = -0x4\n\tEVFILT_WRITE                      = -0x2\n\tEVL_ENCAPLEN                      = 0x4\n\tEVL_PRIO_BITS                     = 0xd\n\tEVL_PRIO_MAX                      = 0x7\n\tEVL_VLID_MASK                     = 0xfff\n\tEVL_VLID_MAX                      = 0xffe\n\tEVL_VLID_MIN                      = 0x1\n\tEVL_VLID_NULL                     = 0x0\n\tEV_ADD                            = 0x1\n\tEV_CLEAR                          = 0x20\n\tEV_DELETE                         = 0x2\n\tEV_DISABLE                        = 0x8\n\tEV_DISPATCH                       = 0x80\n\tEV_ENABLE                         = 0x4\n\tEV_EOF                            = 0x8000\n\tEV_ERROR                          = 0x4000\n\tEV_FLAG1                          = 0x2000\n\tEV_ONESHOT                        = 0x10\n\tEV_RECEIPT                        = 0x40\n\tEV_SYSFLAGS                       = 0xf000\n\tEXTA                              = 0x4b00\n\tEXTB                              = 0x9600\n\tEXTPROC                           = 0x800\n\tFD_CLOEXEC                        = 0x1\n\tFD_SETSIZE                        = 0x400\n\tFLUSHO                            = 0x800000\n\tF_DUPFD                           = 0x0\n\tF_DUPFD_CLOEXEC                   = 0xa\n\tF_GETFD                           = 0x1\n\tF_GETFL                           = 0x3\n\tF_GETLK                           = 0x7\n\tF_GETOWN                          = 0x5\n\tF_ISATTY                          = 0xb\n\tF_OK                              = 0x0\n\tF_RDLCK                           = 0x1\n\tF_SETFD                           = 0x2\n\tF_SETFL                           = 0x4\n\tF_SETLK                           = 0x8\n\tF_SETLKW                          = 0x9\n\tF_SETOWN                          = 0x6\n\tF_UNLCK                           = 0x2\n\tF_WRLCK                           = 0x3\n\tHUPCL                             = 0x4000\n\tHW_MACHINE                        = 0x1\n\tICANON                            = 0x100\n\tICMP6_FILTER                      = 0x12\n\tICRNL                             = 0x100\n\tIEXTEN                            = 0x400\n\tIFAN_ARRIVAL                      = 0x0\n\tIFAN_DEPARTURE                    = 0x1\n\tIFF_ALLMULTI                      = 0x200\n\tIFF_BROADCAST                     = 0x2\n\tIFF_CANTCHANGE                    = 0x8e52\n\tIFF_DEBUG                         = 0x4\n\tIFF_LINK0                         = 0x1000\n\tIFF_LINK1                         = 0x2000\n\tIFF_LINK2                         = 0x4000\n\tIFF_LOOPBACK                      = 0x8\n\tIFF_MULTICAST                     = 0x8000\n\tIFF_NOARP                         = 0x80\n\tIFF_OACTIVE                       = 0x400\n\tIFF_POINTOPOINT                   = 0x10\n\tIFF_PROMISC                       = 0x100\n\tIFF_RUNNING                       = 0x40\n\tIFF_SIMPLEX                       = 0x800\n\tIFF_STATICARP                     = 0x20\n\tIFF_UP                            = 0x1\n\tIFNAMSIZ                          = 0x10\n\tIFT_1822                          = 0x2\n\tIFT_A12MPPSWITCH                  = 0x82\n\tIFT_AAL2                          = 0xbb\n\tIFT_AAL5                          = 0x31\n\tIFT_ADSL                          = 0x5e\n\tIFT_AFLANE8023                    = 0x3b\n\tIFT_AFLANE8025                    = 0x3c\n\tIFT_ARAP                          = 0x58\n\tIFT_ARCNET                        = 0x23\n\tIFT_ARCNETPLUS                    = 0x24\n\tIFT_ASYNC                         = 0x54\n\tIFT_ATM                           = 0x25\n\tIFT_ATMDXI                        = 0x69\n\tIFT_ATMFUNI                       = 0x6a\n\tIFT_ATMIMA                        = 0x6b\n\tIFT_ATMLOGICAL                    = 0x50\n\tIFT_ATMRADIO                      = 0xbd\n\tIFT_ATMSUBINTERFACE               = 0x86\n\tIFT_ATMVCIENDPT                   = 0xc2\n\tIFT_ATMVIRTUAL                    = 0x95\n\tIFT_BGPPOLICYACCOUNTING           = 0xa2\n\tIFT_BLUETOOTH                     = 0xf8\n\tIFT_BRIDGE                        = 0xd1\n\tIFT_BSC                           = 0x53\n\tIFT_CARP                          = 0xf7\n\tIFT_CCTEMUL                       = 0x3d\n\tIFT_CEPT                          = 0x13\n\tIFT_CES                           = 0x85\n\tIFT_CHANNEL                       = 0x46\n\tIFT_CNR                           = 0x55\n\tIFT_COFFEE                        = 0x84\n\tIFT_COMPOSITELINK                 = 0x9b\n\tIFT_DCN                           = 0x8d\n\tIFT_DIGITALPOWERLINE              = 0x8a\n\tIFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba\n\tIFT_DLSW                          = 0x4a\n\tIFT_DOCSCABLEDOWNSTREAM           = 0x80\n\tIFT_DOCSCABLEMACLAYER             = 0x7f\n\tIFT_DOCSCABLEUPSTREAM             = 0x81\n\tIFT_DOCSCABLEUPSTREAMCHANNEL      = 0xcd\n\tIFT_DS0                           = 0x51\n\tIFT_DS0BUNDLE                     = 0x52\n\tIFT_DS1FDL                        = 0xaa\n\tIFT_DS3                           = 0x1e\n\tIFT_DTM                           = 0x8c\n\tIFT_DUMMY                         = 0xf1\n\tIFT_DVBASILN                      = 0xac\n\tIFT_DVBASIOUT                     = 0xad\n\tIFT_DVBRCCDOWNSTREAM              = 0x93\n\tIFT_DVBRCCMACLAYER                = 0x92\n\tIFT_DVBRCCUPSTREAM                = 0x94\n\tIFT_ECONET                        = 0xce\n\tIFT_ENC                           = 0xf4\n\tIFT_EON                           = 0x19\n\tIFT_EPLRS                         = 0x57\n\tIFT_ESCON                         = 0x49\n\tIFT_ETHER                         = 0x6\n\tIFT_FAITH                         = 0xf3\n\tIFT_FAST                          = 0x7d\n\tIFT_FASTETHER                     = 0x3e\n\tIFT_FASTETHERFX                   = 0x45\n\tIFT_FDDI                          = 0xf\n\tIFT_FIBRECHANNEL                  = 0x38\n\tIFT_FRAMERELAYINTERCONNECT        = 0x3a\n\tIFT_FRAMERELAYMPI                 = 0x5c\n\tIFT_FRDLCIENDPT                   = 0xc1\n\tIFT_FRELAY                        = 0x20\n\tIFT_FRELAYDCE                     = 0x2c\n\tIFT_FRF16MFRBUNDLE                = 0xa3\n\tIFT_FRFORWARD                     = 0x9e\n\tIFT_G703AT2MB                     = 0x43\n\tIFT_G703AT64K                     = 0x42\n\tIFT_GIF                           = 0xf0\n\tIFT_GIGABITETHERNET               = 0x75\n\tIFT_GR303IDT                      = 0xb2\n\tIFT_GR303RDT                      = 0xb1\n\tIFT_H323GATEKEEPER                = 0xa4\n\tIFT_H323PROXY                     = 0xa5\n\tIFT_HDH1822                       = 0x3\n\tIFT_HDLC                          = 0x76\n\tIFT_HDSL2                         = 0xa8\n\tIFT_HIPERLAN2                     = 0xb7\n\tIFT_HIPPI                         = 0x2f\n\tIFT_HIPPIINTERFACE                = 0x39\n\tIFT_HOSTPAD                       = 0x5a\n\tIFT_HSSI                          = 0x2e\n\tIFT_HY                            = 0xe\n\tIFT_IBM370PARCHAN                 = 0x48\n\tIFT_IDSL                          = 0x9a\n\tIFT_IEEE1394                      = 0x90\n\tIFT_IEEE80211                     = 0x47\n\tIFT_IEEE80212                     = 0x37\n\tIFT_IEEE8023ADLAG                 = 0xa1\n\tIFT_IFGSN                         = 0x91\n\tIFT_IMT                           = 0xbe\n\tIFT_INFINIBAND                    = 0xc7\n\tIFT_INTERLEAVE                    = 0x7c\n\tIFT_IP                            = 0x7e\n\tIFT_IPFORWARD                     = 0x8e\n\tIFT_IPOVERATM                     = 0x72\n\tIFT_IPOVERCDLC                    = 0x6d\n\tIFT_IPOVERCLAW                    = 0x6e\n\tIFT_IPSWITCH                      = 0x4e\n\tIFT_ISDN                          = 0x3f\n\tIFT_ISDNBASIC                     = 0x14\n\tIFT_ISDNPRIMARY                   = 0x15\n\tIFT_ISDNS                         = 0x4b\n\tIFT_ISDNU                         = 0x4c\n\tIFT_ISO88022LLC                   = 0x29\n\tIFT_ISO88023                      = 0x7\n\tIFT_ISO88024                      = 0x8\n\tIFT_ISO88025                      = 0x9\n\tIFT_ISO88025CRFPINT               = 0x62\n\tIFT_ISO88025DTR                   = 0x56\n\tIFT_ISO88025FIBER                 = 0x73\n\tIFT_ISO88026                      = 0xa\n\tIFT_ISUP                          = 0xb3\n\tIFT_L2VLAN                        = 0x87\n\tIFT_L3IPVLAN                      = 0x88\n\tIFT_L3IPXVLAN                     = 0x89\n\tIFT_LAPB                          = 0x10\n\tIFT_LAPD                          = 0x4d\n\tIFT_LAPF                          = 0x77\n\tIFT_LINEGROUP                     = 0xd2\n\tIFT_LOCALTALK                     = 0x2a\n\tIFT_LOOP                          = 0x18\n\tIFT_MBIM                          = 0xfa\n\tIFT_MEDIAMAILOVERIP               = 0x8b\n\tIFT_MFSIGLINK                     = 0xa7\n\tIFT_MIOX25                        = 0x26\n\tIFT_MODEM                         = 0x30\n\tIFT_MPC                           = 0x71\n\tIFT_MPLS                          = 0xa6\n\tIFT_MPLSTUNNEL                    = 0x96\n\tIFT_MSDSL                         = 0x8f\n\tIFT_MVL                           = 0xbf\n\tIFT_MYRINET                       = 0x63\n\tIFT_NFAS                          = 0xaf\n\tIFT_NSIP                          = 0x1b\n\tIFT_OPTICALCHANNEL                = 0xc3\n\tIFT_OPTICALTRANSPORT              = 0xc4\n\tIFT_OTHER                         = 0x1\n\tIFT_P10                           = 0xc\n\tIFT_P80                           = 0xd\n\tIFT_PARA                          = 0x22\n\tIFT_PFLOG                         = 0xf5\n\tIFT_PFLOW                         = 0xf9\n\tIFT_PFSYNC                        = 0xf6\n\tIFT_PLC                           = 0xae\n\tIFT_PON155                        = 0xcf\n\tIFT_PON622                        = 0xd0\n\tIFT_POS                           = 0xab\n\tIFT_PPP                           = 0x17\n\tIFT_PPPMULTILINKBUNDLE            = 0x6c\n\tIFT_PROPATM                       = 0xc5\n\tIFT_PROPBWAP2MP                   = 0xb8\n\tIFT_PROPCNLS                      = 0x59\n\tIFT_PROPDOCSWIRELESSDOWNSTREAM    = 0xb5\n\tIFT_PROPDOCSWIRELESSMACLAYER      = 0xb4\n\tIFT_PROPDOCSWIRELESSUPSTREAM      = 0xb6\n\tIFT_PROPMUX                       = 0x36\n\tIFT_PROPVIRTUAL                   = 0x35\n\tIFT_PROPWIRELESSP2P               = 0x9d\n\tIFT_PTPSERIAL                     = 0x16\n\tIFT_PVC                           = 0xf2\n\tIFT_Q2931                         = 0xc9\n\tIFT_QLLC                          = 0x44\n\tIFT_RADIOMAC                      = 0xbc\n\tIFT_RADSL                         = 0x5f\n\tIFT_REACHDSL                      = 0xc0\n\tIFT_RFC1483                       = 0x9f\n\tIFT_RS232                         = 0x21\n\tIFT_RSRB                          = 0x4f\n\tIFT_SDLC                          = 0x11\n\tIFT_SDSL                          = 0x60\n\tIFT_SHDSL                         = 0xa9\n\tIFT_SIP                           = 0x1f\n\tIFT_SIPSIG                        = 0xcc\n\tIFT_SIPTG                         = 0xcb\n\tIFT_SLIP                          = 0x1c\n\tIFT_SMDSDXI                       = 0x2b\n\tIFT_SMDSICIP                      = 0x34\n\tIFT_SONET                         = 0x27\n\tIFT_SONETOVERHEADCHANNEL          = 0xb9\n\tIFT_SONETPATH                     = 0x32\n\tIFT_SONETVT                       = 0x33\n\tIFT_SRP                           = 0x97\n\tIFT_SS7SIGLINK                    = 0x9c\n\tIFT_STACKTOSTACK                  = 0x6f\n\tIFT_STARLAN                       = 0xb\n\tIFT_T1                            = 0x12\n\tIFT_TDLC                          = 0x74\n\tIFT_TELINK                        = 0xc8\n\tIFT_TERMPAD                       = 0x5b\n\tIFT_TR008                         = 0xb0\n\tIFT_TRANSPHDLC                    = 0x7b\n\tIFT_TUNNEL                        = 0x83\n\tIFT_ULTRA                         = 0x1d\n\tIFT_USB                           = 0xa0\n\tIFT_V11                           = 0x40\n\tIFT_V35                           = 0x2d\n\tIFT_V36                           = 0x41\n\tIFT_V37                           = 0x78\n\tIFT_VDSL                          = 0x61\n\tIFT_VIRTUALIPADDRESS              = 0x70\n\tIFT_VIRTUALTG                     = 0xca\n\tIFT_VOICEDID                      = 0xd5\n\tIFT_VOICEEM                       = 0x64\n\tIFT_VOICEEMFGD                    = 0xd3\n\tIFT_VOICEENCAP                    = 0x67\n\tIFT_VOICEFGDEANA                  = 0xd4\n\tIFT_VOICEFXO                      = 0x65\n\tIFT_VOICEFXS                      = 0x66\n\tIFT_VOICEOVERATM                  = 0x98\n\tIFT_VOICEOVERCABLE                = 0xc6\n\tIFT_VOICEOVERFRAMERELAY           = 0x99\n\tIFT_VOICEOVERIP                   = 0x68\n\tIFT_X213                          = 0x5d\n\tIFT_X25                           = 0x5\n\tIFT_X25DDN                        = 0x4\n\tIFT_X25HUNTGROUP                  = 0x7a\n\tIFT_X25MLP                        = 0x79\n\tIFT_X25PLE                        = 0x28\n\tIFT_XETHER                        = 0x1a\n\tIGNBRK                            = 0x1\n\tIGNCR                             = 0x80\n\tIGNPAR                            = 0x4\n\tIMAXBEL                           = 0x2000\n\tINLCR                             = 0x40\n\tINPCK                             = 0x10\n\tIN_CLASSA_HOST                    = 0xffffff\n\tIN_CLASSA_MAX                     = 0x80\n\tIN_CLASSA_NET                     = 0xff000000\n\tIN_CLASSA_NSHIFT                  = 0x18\n\tIN_CLASSB_HOST                    = 0xffff\n\tIN_CLASSB_MAX                     = 0x10000\n\tIN_CLASSB_NET                     = 0xffff0000\n\tIN_CLASSB_NSHIFT                  = 0x10\n\tIN_CLASSC_HOST                    = 0xff\n\tIN_CLASSC_NET                     = 0xffffff00\n\tIN_CLASSC_NSHIFT                  = 0x8\n\tIN_CLASSD_HOST                    = 0xfffffff\n\tIN_CLASSD_NET                     = 0xf0000000\n\tIN_CLASSD_NSHIFT                  = 0x1c\n\tIN_LOOPBACKNET                    = 0x7f\n\tIN_RFC3021_HOST                   = 0x1\n\tIN_RFC3021_NET                    = 0xfffffffe\n\tIN_RFC3021_NSHIFT                 = 0x1f\n\tIPPROTO_AH                        = 0x33\n\tIPPROTO_CARP                      = 0x70\n\tIPPROTO_DIVERT                    = 0x102\n\tIPPROTO_DONE                      = 0x101\n\tIPPROTO_DSTOPTS                   = 0x3c\n\tIPPROTO_EGP                       = 0x8\n\tIPPROTO_ENCAP                     = 0x62\n\tIPPROTO_EON                       = 0x50\n\tIPPROTO_ESP                       = 0x32\n\tIPPROTO_ETHERIP                   = 0x61\n\tIPPROTO_FRAGMENT                  = 0x2c\n\tIPPROTO_GGP                       = 0x3\n\tIPPROTO_GRE                       = 0x2f\n\tIPPROTO_HOPOPTS                   = 0x0\n\tIPPROTO_ICMP                      = 0x1\n\tIPPROTO_ICMPV6                    = 0x3a\n\tIPPROTO_IDP                       = 0x16\n\tIPPROTO_IGMP                      = 0x2\n\tIPPROTO_IP                        = 0x0\n\tIPPROTO_IPCOMP                    = 0x6c\n\tIPPROTO_IPIP                      = 0x4\n\tIPPROTO_IPV4                      = 0x4\n\tIPPROTO_IPV6                      = 0x29\n\tIPPROTO_MAX                       = 0x100\n\tIPPROTO_MAXID                     = 0x103\n\tIPPROTO_MOBILE                    = 0x37\n\tIPPROTO_MPLS                      = 0x89\n\tIPPROTO_NONE                      = 0x3b\n\tIPPROTO_PFSYNC                    = 0xf0\n\tIPPROTO_PIM                       = 0x67\n\tIPPROTO_PUP                       = 0xc\n\tIPPROTO_RAW                       = 0xff\n\tIPPROTO_ROUTING                   = 0x2b\n\tIPPROTO_RSVP                      = 0x2e\n\tIPPROTO_TCP                       = 0x6\n\tIPPROTO_TP                        = 0x1d\n\tIPPROTO_UDP                       = 0x11\n\tIPPROTO_UDPLITE                   = 0x88\n\tIPV6_AUTH_LEVEL                   = 0x35\n\tIPV6_AUTOFLOWLABEL                = 0x3b\n\tIPV6_CHECKSUM                     = 0x1a\n\tIPV6_DEFAULT_MULTICAST_HOPS       = 0x1\n\tIPV6_DEFAULT_MULTICAST_LOOP       = 0x1\n\tIPV6_DEFHLIM                      = 0x40\n\tIPV6_DONTFRAG                     = 0x3e\n\tIPV6_DSTOPTS                      = 0x32\n\tIPV6_ESP_NETWORK_LEVEL            = 0x37\n\tIPV6_ESP_TRANS_LEVEL              = 0x36\n\tIPV6_FAITH                        = 0x1d\n\tIPV6_FLOWINFO_MASK                = 0xfffffff\n\tIPV6_FLOWLABEL_MASK               = 0xfffff\n\tIPV6_FRAGTTL                      = 0x78\n\tIPV6_HLIMDEC                      = 0x1\n\tIPV6_HOPLIMIT                     = 0x2f\n\tIPV6_HOPOPTS                      = 0x31\n\tIPV6_IPCOMP_LEVEL                 = 0x3c\n\tIPV6_JOIN_GROUP                   = 0xc\n\tIPV6_LEAVE_GROUP                  = 0xd\n\tIPV6_MAXHLIM                      = 0xff\n\tIPV6_MAXPACKET                    = 0xffff\n\tIPV6_MINHOPCOUNT                  = 0x41\n\tIPV6_MMTU                         = 0x500\n\tIPV6_MULTICAST_HOPS               = 0xa\n\tIPV6_MULTICAST_IF                 = 0x9\n\tIPV6_MULTICAST_LOOP               = 0xb\n\tIPV6_NEXTHOP                      = 0x30\n\tIPV6_OPTIONS                      = 0x1\n\tIPV6_PATHMTU                      = 0x2c\n\tIPV6_PIPEX                        = 0x3f\n\tIPV6_PKTINFO                      = 0x2e\n\tIPV6_PORTRANGE                    = 0xe\n\tIPV6_PORTRANGE_DEFAULT            = 0x0\n\tIPV6_PORTRANGE_HIGH               = 0x1\n\tIPV6_PORTRANGE_LOW                = 0x2\n\tIPV6_RECVDSTOPTS                  = 0x28\n\tIPV6_RECVDSTPORT                  = 0x40\n\tIPV6_RECVHOPLIMIT                 = 0x25\n\tIPV6_RECVHOPOPTS                  = 0x27\n\tIPV6_RECVPATHMTU                  = 0x2b\n\tIPV6_RECVPKTINFO                  = 0x24\n\tIPV6_RECVRTHDR                    = 0x26\n\tIPV6_RECVTCLASS                   = 0x39\n\tIPV6_RTABLE                       = 0x1021\n\tIPV6_RTHDR                        = 0x33\n\tIPV6_RTHDRDSTOPTS                 = 0x23\n\tIPV6_RTHDR_LOOSE                  = 0x0\n\tIPV6_RTHDR_STRICT                 = 0x1\n\tIPV6_RTHDR_TYPE_0                 = 0x0\n\tIPV6_SOCKOPT_RESERVED1            = 0x3\n\tIPV6_TCLASS                       = 0x3d\n\tIPV6_UNICAST_HOPS                 = 0x4\n\tIPV6_USE_MIN_MTU                  = 0x2a\n\tIPV6_V6ONLY                       = 0x1b\n\tIPV6_VERSION                      = 0x60\n\tIPV6_VERSION_MASK                 = 0xf0\n\tIP_ADD_MEMBERSHIP                 = 0xc\n\tIP_AUTH_LEVEL                     = 0x14\n\tIP_DEFAULT_MULTICAST_LOOP         = 0x1\n\tIP_DEFAULT_MULTICAST_TTL          = 0x1\n\tIP_DF                             = 0x4000\n\tIP_DROP_MEMBERSHIP                = 0xd\n\tIP_ESP_NETWORK_LEVEL              = 0x16\n\tIP_ESP_TRANS_LEVEL                = 0x15\n\tIP_HDRINCL                        = 0x2\n\tIP_IPCOMP_LEVEL                   = 0x1d\n\tIP_IPDEFTTL                       = 0x25\n\tIP_IPSECFLOWINFO                  = 0x24\n\tIP_IPSEC_LOCAL_AUTH               = 0x1b\n\tIP_IPSEC_LOCAL_CRED               = 0x19\n\tIP_IPSEC_LOCAL_ID                 = 0x17\n\tIP_IPSEC_REMOTE_AUTH              = 0x1c\n\tIP_IPSEC_REMOTE_CRED              = 0x1a\n\tIP_IPSEC_REMOTE_ID                = 0x18\n\tIP_MAXPACKET                      = 0xffff\n\tIP_MAX_MEMBERSHIPS                = 0xfff\n\tIP_MF                             = 0x2000\n\tIP_MINTTL                         = 0x20\n\tIP_MIN_MEMBERSHIPS                = 0xf\n\tIP_MSS                            = 0x240\n\tIP_MULTICAST_IF                   = 0x9\n\tIP_MULTICAST_LOOP                 = 0xb\n\tIP_MULTICAST_TTL                  = 0xa\n\tIP_OFFMASK                        = 0x1fff\n\tIP_OPTIONS                        = 0x1\n\tIP_PIPEX                          = 0x22\n\tIP_PORTRANGE                      = 0x13\n\tIP_PORTRANGE_DEFAULT              = 0x0\n\tIP_PORTRANGE_HIGH                 = 0x1\n\tIP_PORTRANGE_LOW                  = 0x2\n\tIP_RECVDSTADDR                    = 0x7\n\tIP_RECVDSTPORT                    = 0x21\n\tIP_RECVIF                         = 0x1e\n\tIP_RECVOPTS                       = 0x5\n\tIP_RECVRETOPTS                    = 0x6\n\tIP_RECVRTABLE                     = 0x23\n\tIP_RECVTTL                        = 0x1f\n\tIP_RETOPTS                        = 0x8\n\tIP_RF                             = 0x8000\n\tIP_RTABLE                         = 0x1021\n\tIP_SENDSRCADDR                    = 0x7\n\tIP_TOS                            = 0x3\n\tIP_TTL                            = 0x4\n\tISIG                              = 0x80\n\tISTRIP                            = 0x20\n\tIUCLC                             = 0x1000\n\tIXANY                             = 0x800\n\tIXOFF                             = 0x400\n\tIXON                              = 0x200\n\tKERN_HOSTNAME                     = 0xa\n\tKERN_OSRELEASE                    = 0x2\n\tKERN_OSTYPE                       = 0x1\n\tKERN_VERSION                      = 0x4\n\tLCNT_OVERLOAD_FLUSH               = 0x6\n\tLOCK_EX                           = 0x2\n\tLOCK_NB                           = 0x4\n\tLOCK_SH                           = 0x1\n\tLOCK_UN                           = 0x8\n\tMADV_DONTNEED                     = 0x4\n\tMADV_FREE                         = 0x6\n\tMADV_NORMAL                       = 0x0\n\tMADV_RANDOM                       = 0x1\n\tMADV_SEQUENTIAL                   = 0x2\n\tMADV_SPACEAVAIL                   = 0x5\n\tMADV_WILLNEED                     = 0x3\n\tMAP_ANON                          = 0x1000\n\tMAP_ANONYMOUS                     = 0x1000\n\tMAP_CONCEAL                       = 0x8000\n\tMAP_COPY                          = 0x2\n\tMAP_FILE                          = 0x0\n\tMAP_FIXED                         = 0x10\n\tMAP_FLAGMASK                      = 0xfff7\n\tMAP_HASSEMAPHORE                  = 0x0\n\tMAP_INHERIT                       = 0x0\n\tMAP_INHERIT_COPY                  = 0x1\n\tMAP_INHERIT_NONE                  = 0x2\n\tMAP_INHERIT_SHARE                 = 0x0\n\tMAP_INHERIT_ZERO                  = 0x3\n\tMAP_NOEXTEND                      = 0x0\n\tMAP_NORESERVE                     = 0x0\n\tMAP_PRIVATE                       = 0x2\n\tMAP_RENAME                        = 0x0\n\tMAP_SHARED                        = 0x1\n\tMAP_STACK                         = 0x4000\n\tMAP_TRYFIXED                      = 0x0\n\tMCL_CURRENT                       = 0x1\n\tMCL_FUTURE                        = 0x2\n\tMNT_ASYNC                         = 0x40\n\tMNT_DEFEXPORTED                   = 0x200\n\tMNT_DELEXPORT                     = 0x20000\n\tMNT_DOOMED                        = 0x8000000\n\tMNT_EXPORTANON                    = 0x400\n\tMNT_EXPORTED                      = 0x100\n\tMNT_EXRDONLY                      = 0x80\n\tMNT_FORCE                         = 0x80000\n\tMNT_LAZY                          = 0x3\n\tMNT_LOCAL                         = 0x1000\n\tMNT_NOATIME                       = 0x8000\n\tMNT_NODEV                         = 0x10\n\tMNT_NOEXEC                        = 0x4\n\tMNT_NOPERM                        = 0x20\n\tMNT_NOSUID                        = 0x8\n\tMNT_NOWAIT                        = 0x2\n\tMNT_QUOTA                         = 0x2000\n\tMNT_RDONLY                        = 0x1\n\tMNT_RELOAD                        = 0x40000\n\tMNT_ROOTFS                        = 0x4000\n\tMNT_SOFTDEP                       = 0x4000000\n\tMNT_STALLED                       = 0x100000\n\tMNT_SWAPPABLE                     = 0x200000\n\tMNT_SYNCHRONOUS                   = 0x2\n\tMNT_UPDATE                        = 0x10000\n\tMNT_VISFLAGMASK                   = 0x400ffff\n\tMNT_WAIT                          = 0x1\n\tMNT_WANTRDWR                      = 0x2000000\n\tMNT_WXALLOWED                     = 0x800\n\tMSG_BCAST                         = 0x100\n\tMSG_CMSG_CLOEXEC                  = 0x800\n\tMSG_CTRUNC                        = 0x20\n\tMSG_DONTROUTE                     = 0x4\n\tMSG_DONTWAIT                      = 0x80\n\tMSG_EOR                           = 0x8\n\tMSG_MCAST                         = 0x200\n\tMSG_NOSIGNAL                      = 0x400\n\tMSG_OOB                           = 0x1\n\tMSG_PEEK                          = 0x2\n\tMSG_TRUNC                         = 0x10\n\tMSG_WAITALL                       = 0x40\n\tMS_ASYNC                          = 0x1\n\tMS_INVALIDATE                     = 0x4\n\tMS_SYNC                           = 0x2\n\tNAME_MAX                          = 0xff\n\tNET_RT_DUMP                       = 0x1\n\tNET_RT_FLAGS                      = 0x2\n\tNET_RT_IFLIST                     = 0x3\n\tNET_RT_IFNAMES                    = 0x6\n\tNET_RT_MAXID                      = 0x7\n\tNET_RT_STATS                      = 0x4\n\tNET_RT_TABLE                      = 0x5\n\tNFDBITS                           = 0x20\n\tNOFLSH                            = 0x80000000\n\tNOKERNINFO                        = 0x2000000\n\tNOTE_ATTRIB                       = 0x8\n\tNOTE_CHANGE                       = 0x1\n\tNOTE_CHILD                        = 0x4\n\tNOTE_DELETE                       = 0x1\n\tNOTE_EOF                          = 0x2\n\tNOTE_EXEC                         = 0x20000000\n\tNOTE_EXIT                         = 0x80000000\n\tNOTE_EXTEND                       = 0x4\n\tNOTE_FORK                         = 0x40000000\n\tNOTE_LINK                         = 0x10\n\tNOTE_LOWAT                        = 0x1\n\tNOTE_PCTRLMASK                    = 0xf0000000\n\tNOTE_PDATAMASK                    = 0xfffff\n\tNOTE_RENAME                       = 0x20\n\tNOTE_REVOKE                       = 0x40\n\tNOTE_TRACK                        = 0x1\n\tNOTE_TRACKERR                     = 0x2\n\tNOTE_TRUNCATE                     = 0x80\n\tNOTE_WRITE                        = 0x2\n\tOCRNL                             = 0x10\n\tOLCUC                             = 0x20\n\tONLCR                             = 0x2\n\tONLRET                            = 0x80\n\tONOCR                             = 0x40\n\tONOEOT                            = 0x8\n\tOPOST                             = 0x1\n\tOXTABS                            = 0x4\n\tO_ACCMODE                         = 0x3\n\tO_APPEND                          = 0x8\n\tO_ASYNC                           = 0x40\n\tO_CLOEXEC                         = 0x10000\n\tO_CREAT                           = 0x200\n\tO_DIRECTORY                       = 0x20000\n\tO_DSYNC                           = 0x80\n\tO_EXCL                            = 0x800\n\tO_EXLOCK                          = 0x20\n\tO_FSYNC                           = 0x80\n\tO_NDELAY                          = 0x4\n\tO_NOCTTY                          = 0x8000\n\tO_NOFOLLOW                        = 0x100\n\tO_NONBLOCK                        = 0x4\n\tO_RDONLY                          = 0x0\n\tO_RDWR                            = 0x2\n\tO_RSYNC                           = 0x80\n\tO_SHLOCK                          = 0x10\n\tO_SYNC                            = 0x80\n\tO_TRUNC                           = 0x400\n\tO_WRONLY                          = 0x1\n\tPARENB                            = 0x1000\n\tPARMRK                            = 0x8\n\tPARODD                            = 0x2000\n\tPENDIN                            = 0x20000000\n\tPF_FLUSH                          = 0x1\n\tPRIO_PGRP                         = 0x1\n\tPRIO_PROCESS                      = 0x0\n\tPRIO_USER                         = 0x2\n\tPROT_EXEC                         = 0x4\n\tPROT_NONE                         = 0x0\n\tPROT_READ                         = 0x1\n\tPROT_WRITE                        = 0x2\n\tRLIMIT_CORE                       = 0x4\n\tRLIMIT_CPU                        = 0x0\n\tRLIMIT_DATA                       = 0x2\n\tRLIMIT_FSIZE                      = 0x1\n\tRLIMIT_MEMLOCK                    = 0x6\n\tRLIMIT_NOFILE                     = 0x8\n\tRLIMIT_NPROC                      = 0x7\n\tRLIMIT_RSS                        = 0x5\n\tRLIMIT_STACK                      = 0x3\n\tRLIM_INFINITY                     = 0x7fffffffffffffff\n\tRTAX_AUTHOR                       = 0x6\n\tRTAX_BFD                          = 0xb\n\tRTAX_BRD                          = 0x7\n\tRTAX_DNS                          = 0xc\n\tRTAX_DST                          = 0x0\n\tRTAX_GATEWAY                      = 0x1\n\tRTAX_GENMASK                      = 0x3\n\tRTAX_IFA                          = 0x5\n\tRTAX_IFP                          = 0x4\n\tRTAX_LABEL                        = 0xa\n\tRTAX_MAX                          = 0xf\n\tRTAX_NETMASK                      = 0x2\n\tRTAX_SEARCH                       = 0xe\n\tRTAX_SRC                          = 0x8\n\tRTAX_SRCMASK                      = 0x9\n\tRTAX_STATIC                       = 0xd\n\tRTA_AUTHOR                        = 0x40\n\tRTA_BFD                           = 0x800\n\tRTA_BRD                           = 0x80\n\tRTA_DNS                           = 0x1000\n\tRTA_DST                           = 0x1\n\tRTA_GATEWAY                       = 0x2\n\tRTA_GENMASK                       = 0x8\n\tRTA_IFA                           = 0x20\n\tRTA_IFP                           = 0x10\n\tRTA_LABEL                         = 0x400\n\tRTA_NETMASK                       = 0x4\n\tRTA_SEARCH                        = 0x4000\n\tRTA_SRC                           = 0x100\n\tRTA_SRCMASK                       = 0x200\n\tRTA_STATIC                        = 0x2000\n\tRTF_ANNOUNCE                      = 0x4000\n\tRTF_BFD                           = 0x1000000\n\tRTF_BLACKHOLE                     = 0x1000\n\tRTF_BROADCAST                     = 0x400000\n\tRTF_CACHED                        = 0x20000\n\tRTF_CLONED                        = 0x10000\n\tRTF_CLONING                       = 0x100\n\tRTF_CONNECTED                     = 0x800000\n\tRTF_DONE                          = 0x40\n\tRTF_DYNAMIC                       = 0x10\n\tRTF_FMASK                         = 0x110fc08\n\tRTF_GATEWAY                       = 0x2\n\tRTF_HOST                          = 0x4\n\tRTF_LLINFO                        = 0x400\n\tRTF_LOCAL                         = 0x200000\n\tRTF_MODIFIED                      = 0x20\n\tRTF_MPATH                         = 0x40000\n\tRTF_MPLS                          = 0x100000\n\tRTF_MULTICAST                     = 0x200\n\tRTF_PERMANENT_ARP                 = 0x2000\n\tRTF_PROTO1                        = 0x8000\n\tRTF_PROTO2                        = 0x4000\n\tRTF_PROTO3                        = 0x2000\n\tRTF_REJECT                        = 0x8\n\tRTF_STATIC                        = 0x800\n\tRTF_UP                            = 0x1\n\tRTF_USETRAILERS                   = 0x8000\n\tRTM_80211INFO                     = 0x15\n\tRTM_ADD                           = 0x1\n\tRTM_BFD                           = 0x12\n\tRTM_CHANGE                        = 0x3\n\tRTM_CHGADDRATTR                   = 0x14\n\tRTM_DELADDR                       = 0xd\n\tRTM_DELETE                        = 0x2\n\tRTM_DESYNC                        = 0x10\n\tRTM_GET                           = 0x4\n\tRTM_IFANNOUNCE                    = 0xf\n\tRTM_IFINFO                        = 0xe\n\tRTM_INVALIDATE                    = 0x11\n\tRTM_LOSING                        = 0x5\n\tRTM_MAXSIZE                       = 0x800\n\tRTM_MISS                          = 0x7\n\tRTM_NEWADDR                       = 0xc\n\tRTM_PROPOSAL                      = 0x13\n\tRTM_REDIRECT                      = 0x6\n\tRTM_RESOLVE                       = 0xb\n\tRTM_RTTUNIT                       = 0xf4240\n\tRTM_VERSION                       = 0x5\n\tRTV_EXPIRE                        = 0x4\n\tRTV_HOPCOUNT                      = 0x2\n\tRTV_MTU                           = 0x1\n\tRTV_RPIPE                         = 0x8\n\tRTV_RTT                           = 0x40\n\tRTV_RTTVAR                        = 0x80\n\tRTV_SPIPE                         = 0x10\n\tRTV_SSTHRESH                      = 0x20\n\tRT_TABLEID_BITS                   = 0x8\n\tRT_TABLEID_MASK                   = 0xff\n\tRT_TABLEID_MAX                    = 0xff\n\tRUSAGE_CHILDREN                   = -0x1\n\tRUSAGE_SELF                       = 0x0\n\tRUSAGE_THREAD                     = 0x1\n\tSCM_RIGHTS                        = 0x1\n\tSCM_TIMESTAMP                     = 0x4\n\tSHUT_RD                           = 0x0\n\tSHUT_RDWR                         = 0x2\n\tSHUT_WR                           = 0x1\n\tSIOCADDMULTI                      = 0x80206931\n\tSIOCAIFADDR                       = 0x8040691a\n\tSIOCAIFGROUP                      = 0x80286987\n\tSIOCATMARK                        = 0x40047307\n\tSIOCBRDGADD                       = 0x8060693c\n\tSIOCBRDGADDL                      = 0x80606949\n\tSIOCBRDGADDS                      = 0x80606941\n\tSIOCBRDGARL                       = 0x808c694d\n\tSIOCBRDGDADDR                     = 0x81286947\n\tSIOCBRDGDEL                       = 0x8060693d\n\tSIOCBRDGDELS                      = 0x80606942\n\tSIOCBRDGFLUSH                     = 0x80606948\n\tSIOCBRDGFRL                       = 0x808c694e\n\tSIOCBRDGGCACHE                    = 0xc0186941\n\tSIOCBRDGGFD                       = 0xc0186952\n\tSIOCBRDGGHT                       = 0xc0186951\n\tSIOCBRDGGIFFLGS                   = 0xc060693e\n\tSIOCBRDGGMA                       = 0xc0186953\n\tSIOCBRDGGPARAM                    = 0xc0406958\n\tSIOCBRDGGPRI                      = 0xc0186950\n\tSIOCBRDGGRL                       = 0xc030694f\n\tSIOCBRDGGTO                       = 0xc0186946\n\tSIOCBRDGIFS                       = 0xc0606942\n\tSIOCBRDGRTS                       = 0xc0206943\n\tSIOCBRDGSADDR                     = 0xc1286944\n\tSIOCBRDGSCACHE                    = 0x80186940\n\tSIOCBRDGSFD                       = 0x80186952\n\tSIOCBRDGSHT                       = 0x80186951\n\tSIOCBRDGSIFCOST                   = 0x80606955\n\tSIOCBRDGSIFFLGS                   = 0x8060693f\n\tSIOCBRDGSIFPRIO                   = 0x80606954\n\tSIOCBRDGSIFPROT                   = 0x8060694a\n\tSIOCBRDGSMA                       = 0x80186953\n\tSIOCBRDGSPRI                      = 0x80186950\n\tSIOCBRDGSPROTO                    = 0x8018695a\n\tSIOCBRDGSTO                       = 0x80186945\n\tSIOCBRDGSTXHC                     = 0x80186959\n\tSIOCDELLABEL                      = 0x80206997\n\tSIOCDELMULTI                      = 0x80206932\n\tSIOCDIFADDR                       = 0x80206919\n\tSIOCDIFGROUP                      = 0x80286989\n\tSIOCDIFPARENT                     = 0x802069b4\n\tSIOCDIFPHYADDR                    = 0x80206949\n\tSIOCDPWE3NEIGHBOR                 = 0x802069de\n\tSIOCDVNETID                       = 0x802069af\n\tSIOCGETKALIVE                     = 0xc01869a4\n\tSIOCGETLABEL                      = 0x8020699a\n\tSIOCGETMPWCFG                     = 0xc02069ae\n\tSIOCGETPFLOW                      = 0xc02069fe\n\tSIOCGETPFSYNC                     = 0xc02069f8\n\tSIOCGETSGCNT                      = 0xc0207534\n\tSIOCGETVIFCNT                     = 0xc0287533\n\tSIOCGETVLAN                       = 0xc0206990\n\tSIOCGIFADDR                       = 0xc0206921\n\tSIOCGIFBRDADDR                    = 0xc0206923\n\tSIOCGIFCONF                       = 0xc0106924\n\tSIOCGIFDATA                       = 0xc020691b\n\tSIOCGIFDESCR                      = 0xc0206981\n\tSIOCGIFDSTADDR                    = 0xc0206922\n\tSIOCGIFFLAGS                      = 0xc0206911\n\tSIOCGIFGATTR                      = 0xc028698b\n\tSIOCGIFGENERIC                    = 0xc020693a\n\tSIOCGIFGLIST                      = 0xc028698d\n\tSIOCGIFGMEMB                      = 0xc028698a\n\tSIOCGIFGROUP                      = 0xc0286988\n\tSIOCGIFHARDMTU                    = 0xc02069a5\n\tSIOCGIFLLPRIO                     = 0xc02069b6\n\tSIOCGIFMEDIA                      = 0xc0406938\n\tSIOCGIFMETRIC                     = 0xc0206917\n\tSIOCGIFMTU                        = 0xc020697e\n\tSIOCGIFNETMASK                    = 0xc0206925\n\tSIOCGIFPAIR                       = 0xc02069b1\n\tSIOCGIFPARENT                     = 0xc02069b3\n\tSIOCGIFPRIORITY                   = 0xc020699c\n\tSIOCGIFRDOMAIN                    = 0xc02069a0\n\tSIOCGIFRTLABEL                    = 0xc0206983\n\tSIOCGIFRXR                        = 0x802069aa\n\tSIOCGIFSFFPAGE                    = 0xc1126939\n\tSIOCGIFXFLAGS                     = 0xc020699e\n\tSIOCGLIFPHYADDR                   = 0xc218694b\n\tSIOCGLIFPHYDF                     = 0xc02069c2\n\tSIOCGLIFPHYECN                    = 0xc02069c8\n\tSIOCGLIFPHYRTABLE                 = 0xc02069a2\n\tSIOCGLIFPHYTTL                    = 0xc02069a9\n\tSIOCGPGRP                         = 0x40047309\n\tSIOCGPWE3                         = 0xc0206998\n\tSIOCGPWE3CTRLWORD                 = 0xc02069dc\n\tSIOCGPWE3FAT                      = 0xc02069dd\n\tSIOCGPWE3NEIGHBOR                 = 0xc21869de\n\tSIOCGRXHPRIO                      = 0xc02069db\n\tSIOCGSPPPPARAMS                   = 0xc0206994\n\tSIOCGTXHPRIO                      = 0xc02069c6\n\tSIOCGUMBINFO                      = 0xc02069be\n\tSIOCGUMBPARAM                     = 0xc02069c0\n\tSIOCGVH                           = 0xc02069f6\n\tSIOCGVNETFLOWID                   = 0xc02069c4\n\tSIOCGVNETID                       = 0xc02069a7\n\tSIOCIFAFATTACH                    = 0x801169ab\n\tSIOCIFAFDETACH                    = 0x801169ac\n\tSIOCIFCREATE                      = 0x8020697a\n\tSIOCIFDESTROY                     = 0x80206979\n\tSIOCIFGCLONERS                    = 0xc0106978\n\tSIOCSETKALIVE                     = 0x801869a3\n\tSIOCSETLABEL                      = 0x80206999\n\tSIOCSETMPWCFG                     = 0x802069ad\n\tSIOCSETPFLOW                      = 0x802069fd\n\tSIOCSETPFSYNC                     = 0x802069f7\n\tSIOCSETVLAN                       = 0x8020698f\n\tSIOCSIFADDR                       = 0x8020690c\n\tSIOCSIFBRDADDR                    = 0x80206913\n\tSIOCSIFDESCR                      = 0x80206980\n\tSIOCSIFDSTADDR                    = 0x8020690e\n\tSIOCSIFFLAGS                      = 0x80206910\n\tSIOCSIFGATTR                      = 0x8028698c\n\tSIOCSIFGENERIC                    = 0x80206939\n\tSIOCSIFLLADDR                     = 0x8020691f\n\tSIOCSIFLLPRIO                     = 0x802069b5\n\tSIOCSIFMEDIA                      = 0xc0206937\n\tSIOCSIFMETRIC                     = 0x80206918\n\tSIOCSIFMTU                        = 0x8020697f\n\tSIOCSIFNETMASK                    = 0x80206916\n\tSIOCSIFPAIR                       = 0x802069b0\n\tSIOCSIFPARENT                     = 0x802069b2\n\tSIOCSIFPRIORITY                   = 0x8020699b\n\tSIOCSIFRDOMAIN                    = 0x8020699f\n\tSIOCSIFRTLABEL                    = 0x80206982\n\tSIOCSIFXFLAGS                     = 0x8020699d\n\tSIOCSLIFPHYADDR                   = 0x8218694a\n\tSIOCSLIFPHYDF                     = 0x802069c1\n\tSIOCSLIFPHYECN                    = 0x802069c7\n\tSIOCSLIFPHYRTABLE                 = 0x802069a1\n\tSIOCSLIFPHYTTL                    = 0x802069a8\n\tSIOCSPGRP                         = 0x80047308\n\tSIOCSPWE3CTRLWORD                 = 0x802069dc\n\tSIOCSPWE3FAT                      = 0x802069dd\n\tSIOCSPWE3NEIGHBOR                 = 0x821869de\n\tSIOCSRXHPRIO                      = 0x802069db\n\tSIOCSSPPPPARAMS                   = 0x80206993\n\tSIOCSTXHPRIO                      = 0x802069c5\n\tSIOCSUMBPARAM                     = 0x802069bf\n\tSIOCSVH                           = 0xc02069f5\n\tSIOCSVNETFLOWID                   = 0x802069c3\n\tSIOCSVNETID                       = 0x802069a6\n\tSIOCSWGDPID                       = 0xc018695b\n\tSIOCSWGMAXFLOW                    = 0xc0186960\n\tSIOCSWGMAXGROUP                   = 0xc018695d\n\tSIOCSWSDPID                       = 0x8018695c\n\tSIOCSWSPORTNO                     = 0xc060695f\n\tSOCK_CLOEXEC                      = 0x8000\n\tSOCK_DGRAM                        = 0x2\n\tSOCK_DNS                          = 0x1000\n\tSOCK_NONBLOCK                     = 0x4000\n\tSOCK_RAW                          = 0x3\n\tSOCK_RDM                          = 0x4\n\tSOCK_SEQPACKET                    = 0x5\n\tSOCK_STREAM                       = 0x1\n\tSOL_SOCKET                        = 0xffff\n\tSOMAXCONN                         = 0x80\n\tSO_ACCEPTCONN                     = 0x2\n\tSO_BINDANY                        = 0x1000\n\tSO_BROADCAST                      = 0x20\n\tSO_DEBUG                          = 0x1\n\tSO_DOMAIN                         = 0x1024\n\tSO_DONTROUTE                      = 0x10\n\tSO_ERROR                          = 0x1007\n\tSO_KEEPALIVE                      = 0x8\n\tSO_LINGER                         = 0x80\n\tSO_NETPROC                        = 0x1020\n\tSO_OOBINLINE                      = 0x100\n\tSO_PEERCRED                       = 0x1022\n\tSO_PROTOCOL                       = 0x1025\n\tSO_RCVBUF                         = 0x1002\n\tSO_RCVLOWAT                       = 0x1004\n\tSO_RCVTIMEO                       = 0x1006\n\tSO_REUSEADDR                      = 0x4\n\tSO_REUSEPORT                      = 0x200\n\tSO_RTABLE                         = 0x1021\n\tSO_SNDBUF                         = 0x1001\n\tSO_SNDLOWAT                       = 0x1003\n\tSO_SNDTIMEO                       = 0x1005\n\tSO_SPLICE                         = 0x1023\n\tSO_TIMESTAMP                      = 0x800\n\tSO_TYPE                           = 0x1008\n\tSO_USELOOPBACK                    = 0x40\n\tSO_ZEROIZE                        = 0x2000\n\tS_BLKSIZE                         = 0x200\n\tS_IEXEC                           = 0x40\n\tS_IFBLK                           = 0x6000\n\tS_IFCHR                           = 0x2000\n\tS_IFDIR                           = 0x4000\n\tS_IFIFO                           = 0x1000\n\tS_IFLNK                           = 0xa000\n\tS_IFMT                            = 0xf000\n\tS_IFREG                           = 0x8000\n\tS_IFSOCK                          = 0xc000\n\tS_IREAD                           = 0x100\n\tS_IRGRP                           = 0x20\n\tS_IROTH                           = 0x4\n\tS_IRUSR                           = 0x100\n\tS_IRWXG                           = 0x38\n\tS_IRWXO                           = 0x7\n\tS_IRWXU                           = 0x1c0\n\tS_ISGID                           = 0x400\n\tS_ISTXT                           = 0x200\n\tS_ISUID                           = 0x800\n\tS_ISVTX                           = 0x200\n\tS_IWGRP                           = 0x10\n\tS_IWOTH                           = 0x2\n\tS_IWRITE                          = 0x80\n\tS_IWUSR                           = 0x80\n\tS_IXGRP                           = 0x8\n\tS_IXOTH                           = 0x1\n\tS_IXUSR                           = 0x40\n\tTCIFLUSH                          = 0x1\n\tTCIOFF                            = 0x3\n\tTCIOFLUSH                         = 0x3\n\tTCION                             = 0x4\n\tTCOFLUSH                          = 0x2\n\tTCOOFF                            = 0x1\n\tTCOON                             = 0x2\n\tTCP_MAXBURST                      = 0x4\n\tTCP_MAXSEG                        = 0x2\n\tTCP_MAXWIN                        = 0xffff\n\tTCP_MAX_SACK                      = 0x3\n\tTCP_MAX_WINSHIFT                  = 0xe\n\tTCP_MD5SIG                        = 0x4\n\tTCP_MSS                           = 0x200\n\tTCP_NODELAY                       = 0x1\n\tTCP_NOPUSH                        = 0x10\n\tTCP_SACKHOLE_LIMIT                = 0x80\n\tTCP_SACK_ENABLE                   = 0x8\n\tTCSAFLUSH                         = 0x2\n\tTIMER_ABSTIME                     = 0x1\n\tTIMER_RELTIME                     = 0x0\n\tTIOCCBRK                          = 0x2000747a\n\tTIOCCDTR                          = 0x20007478\n\tTIOCCHKVERAUTH                    = 0x2000741e\n\tTIOCCLRVERAUTH                    = 0x2000741d\n\tTIOCCONS                          = 0x80047462\n\tTIOCDRAIN                         = 0x2000745e\n\tTIOCEXCL                          = 0x2000740d\n\tTIOCEXT                           = 0x80047460\n\tTIOCFLAG_CLOCAL                   = 0x2\n\tTIOCFLAG_CRTSCTS                  = 0x4\n\tTIOCFLAG_MDMBUF                   = 0x8\n\tTIOCFLAG_PPS                      = 0x10\n\tTIOCFLAG_SOFTCAR                  = 0x1\n\tTIOCFLUSH                         = 0x80047410\n\tTIOCGETA                          = 0x402c7413\n\tTIOCGETD                          = 0x4004741a\n\tTIOCGFLAGS                        = 0x4004745d\n\tTIOCGPGRP                         = 0x40047477\n\tTIOCGSID                          = 0x40047463\n\tTIOCGTSTAMP                       = 0x4010745b\n\tTIOCGWINSZ                        = 0x40087468\n\tTIOCMBIC                          = 0x8004746b\n\tTIOCMBIS                          = 0x8004746c\n\tTIOCMGET                          = 0x4004746a\n\tTIOCMODG                          = 0x4004746a\n\tTIOCMODS                          = 0x8004746d\n\tTIOCMSET                          = 0x8004746d\n\tTIOCM_CAR                         = 0x40\n\tTIOCM_CD                          = 0x40\n\tTIOCM_CTS                         = 0x20\n\tTIOCM_DSR                         = 0x100\n\tTIOCM_DTR                         = 0x2\n\tTIOCM_LE                          = 0x1\n\tTIOCM_RI                          = 0x80\n\tTIOCM_RNG                         = 0x80\n\tTIOCM_RTS                         = 0x4\n\tTIOCM_SR                          = 0x10\n\tTIOCM_ST                          = 0x8\n\tTIOCNOTTY                         = 0x20007471\n\tTIOCNXCL                          = 0x2000740e\n\tTIOCOUTQ                          = 0x40047473\n\tTIOCPKT                           = 0x80047470\n\tTIOCPKT_DATA                      = 0x0\n\tTIOCPKT_DOSTOP                    = 0x20\n\tTIOCPKT_FLUSHREAD                 = 0x1\n\tTIOCPKT_FLUSHWRITE                = 0x2\n\tTIOCPKT_IOCTL                     = 0x40\n\tTIOCPKT_NOSTOP                    = 0x10\n\tTIOCPKT_START                     = 0x8\n\tTIOCPKT_STOP                      = 0x4\n\tTIOCREMOTE                        = 0x80047469\n\tTIOCSBRK                          = 0x2000747b\n\tTIOCSCTTY                         = 0x20007461\n\tTIOCSDTR                          = 0x20007479\n\tTIOCSETA                          = 0x802c7414\n\tTIOCSETAF                         = 0x802c7416\n\tTIOCSETAW                         = 0x802c7415\n\tTIOCSETD                          = 0x8004741b\n\tTIOCSETVERAUTH                    = 0x8004741c\n\tTIOCSFLAGS                        = 0x8004745c\n\tTIOCSIG                           = 0x8004745f\n\tTIOCSPGRP                         = 0x80047476\n\tTIOCSTART                         = 0x2000746e\n\tTIOCSTAT                          = 0x20007465\n\tTIOCSTOP                          = 0x2000746f\n\tTIOCSTSTAMP                       = 0x8008745a\n\tTIOCSWINSZ                        = 0x80087467\n\tTIOCUCNTL                         = 0x80047466\n\tTIOCUCNTL_CBRK                    = 0x7a\n\tTIOCUCNTL_SBRK                    = 0x7b\n\tTOSTOP                            = 0x400000\n\tUTIME_NOW                         = -0x2\n\tUTIME_OMIT                        = -0x1\n\tVDISCARD                          = 0xf\n\tVDSUSP                            = 0xb\n\tVEOF                              = 0x0\n\tVEOL                              = 0x1\n\tVEOL2                             = 0x2\n\tVERASE                            = 0x3\n\tVINTR                             = 0x8\n\tVKILL                             = 0x5\n\tVLNEXT                            = 0xe\n\tVMIN                              = 0x10\n\tVM_ANONMIN                        = 0x7\n\tVM_LOADAVG                        = 0x2\n\tVM_MALLOC_CONF                    = 0xc\n\tVM_MAXID                          = 0xd\n\tVM_MAXSLP                         = 0xa\n\tVM_METER                          = 0x1\n\tVM_NKMEMPAGES                     = 0x6\n\tVM_PSSTRINGS                      = 0x3\n\tVM_SWAPENCRYPT                    = 0x5\n\tVM_USPACE                         = 0xb\n\tVM_UVMEXP                         = 0x4\n\tVM_VNODEMIN                       = 0x9\n\tVM_VTEXTMIN                       = 0x8\n\tVQUIT                             = 0x9\n\tVREPRINT                          = 0x6\n\tVSTART                            = 0xc\n\tVSTATUS                           = 0x12\n\tVSTOP                             = 0xd\n\tVSUSP                             = 0xa\n\tVTIME                             = 0x11\n\tVWERASE                           = 0x4\n\tWALTSIG                           = 0x4\n\tWCONTINUED                        = 0x8\n\tWCOREFLAG                         = 0x80\n\tWNOHANG                           = 0x1\n\tWUNTRACED                         = 0x2\n\tXCASE                             = 0x1000000\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x30)\n\tEADDRNOTAVAIL   = syscall.Errno(0x31)\n\tEAFNOSUPPORT    = syscall.Errno(0x2f)\n\tEAGAIN          = syscall.Errno(0x23)\n\tEALREADY        = syscall.Errno(0x25)\n\tEAUTH           = syscall.Errno(0x50)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADMSG         = syscall.Errno(0x5c)\n\tEBADRPC         = syscall.Errno(0x48)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x58)\n\tECHILD          = syscall.Errno(0xa)\n\tECONNABORTED    = syscall.Errno(0x35)\n\tECONNREFUSED    = syscall.Errno(0x3d)\n\tECONNRESET      = syscall.Errno(0x36)\n\tEDEADLK         = syscall.Errno(0xb)\n\tEDESTADDRREQ    = syscall.Errno(0x27)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x45)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEFTYPE          = syscall.Errno(0x4f)\n\tEHOSTDOWN       = syscall.Errno(0x40)\n\tEHOSTUNREACH    = syscall.Errno(0x41)\n\tEIDRM           = syscall.Errno(0x59)\n\tEILSEQ          = syscall.Errno(0x54)\n\tEINPROGRESS     = syscall.Errno(0x24)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEIPSEC          = syscall.Errno(0x52)\n\tEISCONN         = syscall.Errno(0x38)\n\tEISDIR          = syscall.Errno(0x15)\n\tELAST           = syscall.Errno(0x5f)\n\tELOOP           = syscall.Errno(0x3e)\n\tEMEDIUMTYPE     = syscall.Errno(0x56)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x28)\n\tENAMETOOLONG    = syscall.Errno(0x3f)\n\tENEEDAUTH       = syscall.Errno(0x51)\n\tENETDOWN        = syscall.Errno(0x32)\n\tENETRESET       = syscall.Errno(0x34)\n\tENETUNREACH     = syscall.Errno(0x33)\n\tENFILE          = syscall.Errno(0x17)\n\tENOATTR         = syscall.Errno(0x53)\n\tENOBUFS         = syscall.Errno(0x37)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x4d)\n\tENOMEDIUM       = syscall.Errno(0x55)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x5a)\n\tENOPROTOOPT     = syscall.Errno(0x2a)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSYS          = syscall.Errno(0x4e)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x39)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x42)\n\tENOTRECOVERABLE = syscall.Errno(0x5d)\n\tENOTSOCK        = syscall.Errno(0x26)\n\tENOTSUP         = syscall.Errno(0x5b)\n\tENOTTY          = syscall.Errno(0x19)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x2d)\n\tEOVERFLOW       = syscall.Errno(0x57)\n\tEOWNERDEAD      = syscall.Errno(0x5e)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x2e)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROCLIM        = syscall.Errno(0x43)\n\tEPROCUNAVAIL    = syscall.Errno(0x4c)\n\tEPROGMISMATCH   = syscall.Errno(0x4b)\n\tEPROGUNAVAIL    = syscall.Errno(0x4a)\n\tEPROTO          = syscall.Errno(0x5f)\n\tEPROTONOSUPPORT = syscall.Errno(0x2b)\n\tEPROTOTYPE      = syscall.Errno(0x29)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMOTE         = syscall.Errno(0x47)\n\tEROFS           = syscall.Errno(0x1e)\n\tERPCMISMATCH    = syscall.Errno(0x49)\n\tESHUTDOWN       = syscall.Errno(0x3a)\n\tESOCKTNOSUPPORT = syscall.Errno(0x2c)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESTALE          = syscall.Errno(0x46)\n\tETIMEDOUT       = syscall.Errno(0x3c)\n\tETOOMANYREFS    = syscall.Errno(0x3b)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUSERS          = syscall.Errno(0x44)\n\tEWOULDBLOCK     = syscall.Errno(0x23)\n\tEXDEV           = syscall.Errno(0x12)\n)\n\n// Signals\nconst (\n\tSIGABRT   = syscall.Signal(0x6)\n\tSIGALRM   = syscall.Signal(0xe)\n\tSIGBUS    = syscall.Signal(0xa)\n\tSIGCHLD   = syscall.Signal(0x14)\n\tSIGCONT   = syscall.Signal(0x13)\n\tSIGEMT    = syscall.Signal(0x7)\n\tSIGFPE    = syscall.Signal(0x8)\n\tSIGHUP    = syscall.Signal(0x1)\n\tSIGILL    = syscall.Signal(0x4)\n\tSIGINFO   = syscall.Signal(0x1d)\n\tSIGINT    = syscall.Signal(0x2)\n\tSIGIO     = syscall.Signal(0x17)\n\tSIGIOT    = syscall.Signal(0x6)\n\tSIGKILL   = syscall.Signal(0x9)\n\tSIGPIPE   = syscall.Signal(0xd)\n\tSIGPROF   = syscall.Signal(0x1b)\n\tSIGQUIT   = syscall.Signal(0x3)\n\tSIGSEGV   = syscall.Signal(0xb)\n\tSIGSTOP   = syscall.Signal(0x11)\n\tSIGSYS    = syscall.Signal(0xc)\n\tSIGTERM   = syscall.Signal(0xf)\n\tSIGTHR    = syscall.Signal(0x20)\n\tSIGTRAP   = syscall.Signal(0x5)\n\tSIGTSTP   = syscall.Signal(0x12)\n\tSIGTTIN   = syscall.Signal(0x15)\n\tSIGTTOU   = syscall.Signal(0x16)\n\tSIGURG    = syscall.Signal(0x10)\n\tSIGUSR1   = syscall.Signal(0x1e)\n\tSIGUSR2   = syscall.Signal(0x1f)\n\tSIGVTALRM = syscall.Signal(0x1a)\n\tSIGWINCH  = syscall.Signal(0x1c)\n\tSIGXCPU   = syscall.Signal(0x18)\n\tSIGXFSZ   = syscall.Signal(0x19)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"operation not permitted\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"input/output error\"},\n\t{6, \"ENXIO\", \"device not configured\"},\n\t{7, \"E2BIG\", \"argument list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file descriptor\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EDEADLK\", \"resource deadlock avoided\"},\n\t{12, \"ENOMEM\", \"cannot allocate memory\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"operation not supported by device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"too many open files in system\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"numerical argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{36, \"EINPROGRESS\", \"operation now in progress\"},\n\t{37, \"EALREADY\", \"operation already in progress\"},\n\t{38, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{39, \"EDESTADDRREQ\", \"destination address required\"},\n\t{40, \"EMSGSIZE\", \"message too long\"},\n\t{41, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{42, \"ENOPROTOOPT\", \"protocol not available\"},\n\t{43, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{44, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{45, \"EOPNOTSUPP\", \"operation not supported\"},\n\t{46, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{47, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{48, \"EADDRINUSE\", \"address already in use\"},\n\t{49, \"EADDRNOTAVAIL\", \"can't assign requested address\"},\n\t{50, \"ENETDOWN\", \"network is down\"},\n\t{51, \"ENETUNREACH\", \"network is unreachable\"},\n\t{52, \"ENETRESET\", \"network dropped connection on reset\"},\n\t{53, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{54, \"ECONNRESET\", \"connection reset by peer\"},\n\t{55, \"ENOBUFS\", \"no buffer space available\"},\n\t{56, \"EISCONN\", \"socket is already connected\"},\n\t{57, \"ENOTCONN\", \"socket is not connected\"},\n\t{58, \"ESHUTDOWN\", \"can't send after socket shutdown\"},\n\t{59, \"ETOOMANYREFS\", \"too many references: can't splice\"},\n\t{60, \"ETIMEDOUT\", \"operation timed out\"},\n\t{61, \"ECONNREFUSED\", \"connection refused\"},\n\t{62, \"ELOOP\", \"too many levels of symbolic links\"},\n\t{63, \"ENAMETOOLONG\", \"file name too long\"},\n\t{64, \"EHOSTDOWN\", \"host is down\"},\n\t{65, \"EHOSTUNREACH\", \"no route to host\"},\n\t{66, \"ENOTEMPTY\", \"directory not empty\"},\n\t{67, \"EPROCLIM\", \"too many processes\"},\n\t{68, \"EUSERS\", \"too many users\"},\n\t{69, \"EDQUOT\", \"disk quota exceeded\"},\n\t{70, \"ESTALE\", \"stale NFS file handle\"},\n\t{71, \"EREMOTE\", \"too many levels of remote in path\"},\n\t{72, \"EBADRPC\", \"RPC struct is bad\"},\n\t{73, \"ERPCMISMATCH\", \"RPC version wrong\"},\n\t{74, \"EPROGUNAVAIL\", \"RPC program not available\"},\n\t{75, \"EPROGMISMATCH\", \"program version wrong\"},\n\t{76, \"EPROCUNAVAIL\", \"bad procedure for program\"},\n\t{77, \"ENOLCK\", \"no locks available\"},\n\t{78, \"ENOSYS\", \"function not implemented\"},\n\t{79, \"EFTYPE\", \"inappropriate file type or format\"},\n\t{80, \"EAUTH\", \"authentication error\"},\n\t{81, \"ENEEDAUTH\", \"need authenticator\"},\n\t{82, \"EIPSEC\", \"IPsec processing failure\"},\n\t{83, \"ENOATTR\", \"attribute not found\"},\n\t{84, \"EILSEQ\", \"illegal byte sequence\"},\n\t{85, \"ENOMEDIUM\", \"no medium found\"},\n\t{86, \"EMEDIUMTYPE\", \"wrong medium type\"},\n\t{87, \"EOVERFLOW\", \"value too large to be stored in data type\"},\n\t{88, \"ECANCELED\", \"operation canceled\"},\n\t{89, \"EIDRM\", \"identifier removed\"},\n\t{90, \"ENOMSG\", \"no message of desired type\"},\n\t{91, \"ENOTSUP\", \"not supported\"},\n\t{92, \"EBADMSG\", \"bad message\"},\n\t{93, \"ENOTRECOVERABLE\", \"state not recoverable\"},\n\t{94, \"EOWNERDEAD\", \"previous owner died\"},\n\t{95, \"ELAST\", \"protocol error\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal instruction\"},\n\t{5, \"SIGTRAP\", \"trace/BPT trap\"},\n\t{6, \"SIGABRT\", \"abort trap\"},\n\t{7, \"SIGEMT\", \"EMT trap\"},\n\t{8, \"SIGFPE\", \"floating point exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus error\"},\n\t{11, \"SIGSEGV\", \"segmentation fault\"},\n\t{12, \"SIGSYS\", \"bad system call\"},\n\t{13, \"SIGPIPE\", \"broken pipe\"},\n\t{14, \"SIGALRM\", \"alarm clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGURG\", \"urgent I/O condition\"},\n\t{17, \"SIGSTOP\", \"suspended (signal)\"},\n\t{18, \"SIGTSTP\", \"suspended\"},\n\t{19, \"SIGCONT\", \"continued\"},\n\t{20, \"SIGCHLD\", \"child exited\"},\n\t{21, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{22, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{23, \"SIGIO\", \"I/O possible\"},\n\t{24, \"SIGXCPU\", \"cputime limit exceeded\"},\n\t{25, \"SIGXFSZ\", \"filesize limit exceeded\"},\n\t{26, \"SIGVTALRM\", \"virtual timer expired\"},\n\t{27, \"SIGPROF\", \"profiling timer expired\"},\n\t{28, \"SIGWINCH\", \"window size changes\"},\n\t{29, \"SIGINFO\", \"information request\"},\n\t{30, \"SIGUSR1\", \"user defined signal 1\"},\n\t{31, \"SIGUSR2\", \"user defined signal 2\"},\n\t{32, \"SIGTHR\", \"thread AST\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go",
    "content": "// mkerrors.sh -m64\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,solaris\n\n// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs -- -m64 _const.go\n\npackage unix\n\nimport \"syscall\"\n\nconst (\n\tAF_802                        = 0x12\n\tAF_APPLETALK                  = 0x10\n\tAF_CCITT                      = 0xa\n\tAF_CHAOS                      = 0x5\n\tAF_DATAKIT                    = 0x9\n\tAF_DECnet                     = 0xc\n\tAF_DLI                        = 0xd\n\tAF_ECMA                       = 0x8\n\tAF_FILE                       = 0x1\n\tAF_GOSIP                      = 0x16\n\tAF_HYLINK                     = 0xf\n\tAF_IMPLINK                    = 0x3\n\tAF_INET                       = 0x2\n\tAF_INET6                      = 0x1a\n\tAF_INET_OFFLOAD               = 0x1e\n\tAF_IPX                        = 0x17\n\tAF_KEY                        = 0x1b\n\tAF_LAT                        = 0xe\n\tAF_LINK                       = 0x19\n\tAF_LOCAL                      = 0x1\n\tAF_MAX                        = 0x20\n\tAF_NBS                        = 0x7\n\tAF_NCA                        = 0x1c\n\tAF_NIT                        = 0x11\n\tAF_NS                         = 0x6\n\tAF_OSI                        = 0x13\n\tAF_OSINET                     = 0x15\n\tAF_PACKET                     = 0x20\n\tAF_POLICY                     = 0x1d\n\tAF_PUP                        = 0x4\n\tAF_ROUTE                      = 0x18\n\tAF_SNA                        = 0xb\n\tAF_TRILL                      = 0x1f\n\tAF_UNIX                       = 0x1\n\tAF_UNSPEC                     = 0x0\n\tAF_X25                        = 0x14\n\tARPHRD_ARCNET                 = 0x7\n\tARPHRD_ATM                    = 0x10\n\tARPHRD_AX25                   = 0x3\n\tARPHRD_CHAOS                  = 0x5\n\tARPHRD_EETHER                 = 0x2\n\tARPHRD_ETHER                  = 0x1\n\tARPHRD_FC                     = 0x12\n\tARPHRD_FRAME                  = 0xf\n\tARPHRD_HDLC                   = 0x11\n\tARPHRD_IB                     = 0x20\n\tARPHRD_IEEE802                = 0x6\n\tARPHRD_IPATM                  = 0x13\n\tARPHRD_METRICOM               = 0x17\n\tARPHRD_TUNNEL                 = 0x1f\n\tB0                            = 0x0\n\tB110                          = 0x3\n\tB115200                       = 0x12\n\tB1200                         = 0x9\n\tB134                          = 0x4\n\tB150                          = 0x5\n\tB153600                       = 0x13\n\tB1800                         = 0xa\n\tB19200                        = 0xe\n\tB200                          = 0x6\n\tB230400                       = 0x14\n\tB2400                         = 0xb\n\tB300                          = 0x7\n\tB307200                       = 0x15\n\tB38400                        = 0xf\n\tB460800                       = 0x16\n\tB4800                         = 0xc\n\tB50                           = 0x1\n\tB57600                        = 0x10\n\tB600                          = 0x8\n\tB75                           = 0x2\n\tB76800                        = 0x11\n\tB921600                       = 0x17\n\tB9600                         = 0xd\n\tBIOCFLUSH                     = 0x20004268\n\tBIOCGBLEN                     = 0x40044266\n\tBIOCGDLT                      = 0x4004426a\n\tBIOCGDLTLIST                  = -0x3fefbd89\n\tBIOCGDLTLIST32                = -0x3ff7bd89\n\tBIOCGETIF                     = 0x4020426b\n\tBIOCGETLIF                    = 0x4078426b\n\tBIOCGHDRCMPLT                 = 0x40044274\n\tBIOCGRTIMEOUT                 = 0x4010427b\n\tBIOCGRTIMEOUT32               = 0x4008427b\n\tBIOCGSEESENT                  = 0x40044278\n\tBIOCGSTATS                    = 0x4080426f\n\tBIOCGSTATSOLD                 = 0x4008426f\n\tBIOCIMMEDIATE                 = -0x7ffbbd90\n\tBIOCPROMISC                   = 0x20004269\n\tBIOCSBLEN                     = -0x3ffbbd9a\n\tBIOCSDLT                      = -0x7ffbbd8a\n\tBIOCSETF                      = -0x7fefbd99\n\tBIOCSETF32                    = -0x7ff7bd99\n\tBIOCSETIF                     = -0x7fdfbd94\n\tBIOCSETLIF                    = -0x7f87bd94\n\tBIOCSHDRCMPLT                 = -0x7ffbbd8b\n\tBIOCSRTIMEOUT                 = -0x7fefbd86\n\tBIOCSRTIMEOUT32               = -0x7ff7bd86\n\tBIOCSSEESENT                  = -0x7ffbbd87\n\tBIOCSTCPF                     = -0x7fefbd8e\n\tBIOCSUDPF                     = -0x7fefbd8d\n\tBIOCVERSION                   = 0x40044271\n\tBPF_A                         = 0x10\n\tBPF_ABS                       = 0x20\n\tBPF_ADD                       = 0x0\n\tBPF_ALIGNMENT                 = 0x4\n\tBPF_ALU                       = 0x4\n\tBPF_AND                       = 0x50\n\tBPF_B                         = 0x10\n\tBPF_DFLTBUFSIZE               = 0x100000\n\tBPF_DIV                       = 0x30\n\tBPF_H                         = 0x8\n\tBPF_IMM                       = 0x0\n\tBPF_IND                       = 0x40\n\tBPF_JA                        = 0x0\n\tBPF_JEQ                       = 0x10\n\tBPF_JGE                       = 0x30\n\tBPF_JGT                       = 0x20\n\tBPF_JMP                       = 0x5\n\tBPF_JSET                      = 0x40\n\tBPF_K                         = 0x0\n\tBPF_LD                        = 0x0\n\tBPF_LDX                       = 0x1\n\tBPF_LEN                       = 0x80\n\tBPF_LSH                       = 0x60\n\tBPF_MAJOR_VERSION             = 0x1\n\tBPF_MAXBUFSIZE                = 0x1000000\n\tBPF_MAXINSNS                  = 0x200\n\tBPF_MEM                       = 0x60\n\tBPF_MEMWORDS                  = 0x10\n\tBPF_MINBUFSIZE                = 0x20\n\tBPF_MINOR_VERSION             = 0x1\n\tBPF_MISC                      = 0x7\n\tBPF_MSH                       = 0xa0\n\tBPF_MUL                       = 0x20\n\tBPF_NEG                       = 0x80\n\tBPF_OR                        = 0x40\n\tBPF_RELEASE                   = 0x30bb6\n\tBPF_RET                       = 0x6\n\tBPF_RSH                       = 0x70\n\tBPF_ST                        = 0x2\n\tBPF_STX                       = 0x3\n\tBPF_SUB                       = 0x10\n\tBPF_TAX                       = 0x0\n\tBPF_TXA                       = 0x80\n\tBPF_W                         = 0x0\n\tBPF_X                         = 0x8\n\tBRKINT                        = 0x2\n\tBS0                           = 0x0\n\tBS1                           = 0x2000\n\tBSDLY                         = 0x2000\n\tCBAUD                         = 0xf\n\tCFLUSH                        = 0xf\n\tCIBAUD                        = 0xf0000\n\tCLOCAL                        = 0x800\n\tCLOCK_HIGHRES                 = 0x4\n\tCLOCK_LEVEL                   = 0xa\n\tCLOCK_MONOTONIC               = 0x4\n\tCLOCK_PROCESS_CPUTIME_ID      = 0x5\n\tCLOCK_PROF                    = 0x2\n\tCLOCK_REALTIME                = 0x3\n\tCLOCK_THREAD_CPUTIME_ID       = 0x2\n\tCLOCK_VIRTUAL                 = 0x1\n\tCR0                           = 0x0\n\tCR1                           = 0x200\n\tCR2                           = 0x400\n\tCR3                           = 0x600\n\tCRDLY                         = 0x600\n\tCREAD                         = 0x80\n\tCRTSCTS                       = 0x80000000\n\tCS5                           = 0x0\n\tCS6                           = 0x10\n\tCS7                           = 0x20\n\tCS8                           = 0x30\n\tCSIZE                         = 0x30\n\tCSTART                        = 0x11\n\tCSTATUS                       = 0x14\n\tCSTOP                         = 0x13\n\tCSTOPB                        = 0x40\n\tCSUSP                         = 0x1a\n\tCSWTCH                        = 0x1a\n\tDLT_AIRONET_HEADER            = 0x78\n\tDLT_APPLE_IP_OVER_IEEE1394    = 0x8a\n\tDLT_ARCNET                    = 0x7\n\tDLT_ARCNET_LINUX              = 0x81\n\tDLT_ATM_CLIP                  = 0x13\n\tDLT_ATM_RFC1483               = 0xb\n\tDLT_AURORA                    = 0x7e\n\tDLT_AX25                      = 0x3\n\tDLT_BACNET_MS_TP              = 0xa5\n\tDLT_CHAOS                     = 0x5\n\tDLT_CISCO_IOS                 = 0x76\n\tDLT_C_HDLC                    = 0x68\n\tDLT_DOCSIS                    = 0x8f\n\tDLT_ECONET                    = 0x73\n\tDLT_EN10MB                    = 0x1\n\tDLT_EN3MB                     = 0x2\n\tDLT_ENC                       = 0x6d\n\tDLT_ERF_ETH                   = 0xaf\n\tDLT_ERF_POS                   = 0xb0\n\tDLT_FDDI                      = 0xa\n\tDLT_FRELAY                    = 0x6b\n\tDLT_GCOM_SERIAL               = 0xad\n\tDLT_GCOM_T1E1                 = 0xac\n\tDLT_GPF_F                     = 0xab\n\tDLT_GPF_T                     = 0xaa\n\tDLT_GPRS_LLC                  = 0xa9\n\tDLT_HDLC                      = 0x10\n\tDLT_HHDLC                     = 0x79\n\tDLT_HIPPI                     = 0xf\n\tDLT_IBM_SN                    = 0x92\n\tDLT_IBM_SP                    = 0x91\n\tDLT_IEEE802                   = 0x6\n\tDLT_IEEE802_11                = 0x69\n\tDLT_IEEE802_11_RADIO          = 0x7f\n\tDLT_IEEE802_11_RADIO_AVS      = 0xa3\n\tDLT_IPNET                     = 0xe2\n\tDLT_IPOIB                     = 0xa2\n\tDLT_IP_OVER_FC                = 0x7a\n\tDLT_JUNIPER_ATM1              = 0x89\n\tDLT_JUNIPER_ATM2              = 0x87\n\tDLT_JUNIPER_CHDLC             = 0xb5\n\tDLT_JUNIPER_ES                = 0x84\n\tDLT_JUNIPER_ETHER             = 0xb2\n\tDLT_JUNIPER_FRELAY            = 0xb4\n\tDLT_JUNIPER_GGSN              = 0x85\n\tDLT_JUNIPER_MFR               = 0x86\n\tDLT_JUNIPER_MLFR              = 0x83\n\tDLT_JUNIPER_MLPPP             = 0x82\n\tDLT_JUNIPER_MONITOR           = 0xa4\n\tDLT_JUNIPER_PIC_PEER          = 0xae\n\tDLT_JUNIPER_PPP               = 0xb3\n\tDLT_JUNIPER_PPPOE             = 0xa7\n\tDLT_JUNIPER_PPPOE_ATM         = 0xa8\n\tDLT_JUNIPER_SERVICES          = 0x88\n\tDLT_LINUX_IRDA                = 0x90\n\tDLT_LINUX_LAPD                = 0xb1\n\tDLT_LINUX_SLL                 = 0x71\n\tDLT_LOOP                      = 0x6c\n\tDLT_LTALK                     = 0x72\n\tDLT_MTP2                      = 0x8c\n\tDLT_MTP2_WITH_PHDR            = 0x8b\n\tDLT_MTP3                      = 0x8d\n\tDLT_NULL                      = 0x0\n\tDLT_PCI_EXP                   = 0x7d\n\tDLT_PFLOG                     = 0x75\n\tDLT_PFSYNC                    = 0x12\n\tDLT_PPP                       = 0x9\n\tDLT_PPP_BSDOS                 = 0xe\n\tDLT_PPP_PPPD                  = 0xa6\n\tDLT_PRISM_HEADER              = 0x77\n\tDLT_PRONET                    = 0x4\n\tDLT_RAW                       = 0xc\n\tDLT_RAWAF_MASK                = 0x2240000\n\tDLT_RIO                       = 0x7c\n\tDLT_SCCP                      = 0x8e\n\tDLT_SLIP                      = 0x8\n\tDLT_SLIP_BSDOS                = 0xd\n\tDLT_SUNATM                    = 0x7b\n\tDLT_SYMANTEC_FIREWALL         = 0x63\n\tDLT_TZSP                      = 0x80\n\tECHO                          = 0x8\n\tECHOCTL                       = 0x200\n\tECHOE                         = 0x10\n\tECHOK                         = 0x20\n\tECHOKE                        = 0x800\n\tECHONL                        = 0x40\n\tECHOPRT                       = 0x400\n\tEMPTY_SET                     = 0x0\n\tEMT_CPCOVF                    = 0x1\n\tEQUALITY_CHECK                = 0x0\n\tEXTA                          = 0xe\n\tEXTB                          = 0xf\n\tFD_CLOEXEC                    = 0x1\n\tFD_NFDBITS                    = 0x40\n\tFD_SETSIZE                    = 0x10000\n\tFF0                           = 0x0\n\tFF1                           = 0x8000\n\tFFDLY                         = 0x8000\n\tFLUSHALL                      = 0x1\n\tFLUSHDATA                     = 0x0\n\tFLUSHO                        = 0x2000\n\tF_ALLOCSP                     = 0xa\n\tF_ALLOCSP64                   = 0xa\n\tF_BADFD                       = 0x2e\n\tF_BLKSIZE                     = 0x13\n\tF_BLOCKS                      = 0x12\n\tF_CHKFL                       = 0x8\n\tF_COMPAT                      = 0x8\n\tF_DUP2FD                      = 0x9\n\tF_DUP2FD_CLOEXEC              = 0x24\n\tF_DUPFD                       = 0x0\n\tF_DUPFD_CLOEXEC               = 0x25\n\tF_FLOCK                       = 0x35\n\tF_FLOCK64                     = 0x35\n\tF_FLOCKW                      = 0x36\n\tF_FLOCKW64                    = 0x36\n\tF_FREESP                      = 0xb\n\tF_FREESP64                    = 0xb\n\tF_GETFD                       = 0x1\n\tF_GETFL                       = 0x3\n\tF_GETLK                       = 0xe\n\tF_GETLK64                     = 0xe\n\tF_GETOWN                      = 0x17\n\tF_GETXFL                      = 0x2d\n\tF_HASREMOTELOCKS              = 0x1a\n\tF_ISSTREAM                    = 0xd\n\tF_MANDDNY                     = 0x10\n\tF_MDACC                       = 0x20\n\tF_NODNY                       = 0x0\n\tF_NPRIV                       = 0x10\n\tF_OFD_GETLK                   = 0x2f\n\tF_OFD_GETLK64                 = 0x2f\n\tF_OFD_SETLK                   = 0x30\n\tF_OFD_SETLK64                 = 0x30\n\tF_OFD_SETLKW                  = 0x31\n\tF_OFD_SETLKW64                = 0x31\n\tF_PRIV                        = 0xf\n\tF_QUOTACTL                    = 0x11\n\tF_RDACC                       = 0x1\n\tF_RDDNY                       = 0x1\n\tF_RDLCK                       = 0x1\n\tF_REVOKE                      = 0x19\n\tF_RMACC                       = 0x4\n\tF_RMDNY                       = 0x4\n\tF_RWACC                       = 0x3\n\tF_RWDNY                       = 0x3\n\tF_SETFD                       = 0x2\n\tF_SETFL                       = 0x4\n\tF_SETLK                       = 0x6\n\tF_SETLK64                     = 0x6\n\tF_SETLK64_NBMAND              = 0x2a\n\tF_SETLKW                      = 0x7\n\tF_SETLKW64                    = 0x7\n\tF_SETLK_NBMAND                = 0x2a\n\tF_SETOWN                      = 0x18\n\tF_SHARE                       = 0x28\n\tF_SHARE_NBMAND                = 0x2b\n\tF_UNLCK                       = 0x3\n\tF_UNLKSYS                     = 0x4\n\tF_UNSHARE                     = 0x29\n\tF_WRACC                       = 0x2\n\tF_WRDNY                       = 0x2\n\tF_WRLCK                       = 0x2\n\tHUPCL                         = 0x400\n\tIBSHIFT                       = 0x10\n\tICANON                        = 0x2\n\tICRNL                         = 0x100\n\tIEXTEN                        = 0x8000\n\tIFF_ADDRCONF                  = 0x80000\n\tIFF_ALLMULTI                  = 0x200\n\tIFF_ANYCAST                   = 0x400000\n\tIFF_BROADCAST                 = 0x2\n\tIFF_CANTCHANGE                = 0x7f203003b5a\n\tIFF_COS_ENABLED               = 0x200000000\n\tIFF_DEBUG                     = 0x4\n\tIFF_DEPRECATED                = 0x40000\n\tIFF_DHCPRUNNING               = 0x4000\n\tIFF_DUPLICATE                 = 0x4000000000\n\tIFF_FAILED                    = 0x10000000\n\tIFF_FIXEDMTU                  = 0x1000000000\n\tIFF_INACTIVE                  = 0x40000000\n\tIFF_INTELLIGENT               = 0x400\n\tIFF_IPMP                      = 0x8000000000\n\tIFF_IPMP_CANTCHANGE           = 0x10000000\n\tIFF_IPMP_INVALID              = 0x1ec200080\n\tIFF_IPV4                      = 0x1000000\n\tIFF_IPV6                      = 0x2000000\n\tIFF_L3PROTECT                 = 0x40000000000\n\tIFF_LOOPBACK                  = 0x8\n\tIFF_MULTICAST                 = 0x800\n\tIFF_MULTI_BCAST               = 0x1000\n\tIFF_NOACCEPT                  = 0x4000000\n\tIFF_NOARP                     = 0x80\n\tIFF_NOFAILOVER                = 0x8000000\n\tIFF_NOLINKLOCAL               = 0x20000000000\n\tIFF_NOLOCAL                   = 0x20000\n\tIFF_NONUD                     = 0x200000\n\tIFF_NORTEXCH                  = 0x800000\n\tIFF_NOTRAILERS                = 0x20\n\tIFF_NOXMIT                    = 0x10000\n\tIFF_OFFLINE                   = 0x80000000\n\tIFF_POINTOPOINT               = 0x10\n\tIFF_PREFERRED                 = 0x400000000\n\tIFF_PRIVATE                   = 0x8000\n\tIFF_PROMISC                   = 0x100\n\tIFF_ROUTER                    = 0x100000\n\tIFF_RUNNING                   = 0x40\n\tIFF_STANDBY                   = 0x20000000\n\tIFF_TEMPORARY                 = 0x800000000\n\tIFF_UNNUMBERED                = 0x2000\n\tIFF_UP                        = 0x1\n\tIFF_VIRTUAL                   = 0x2000000000\n\tIFF_VRRP                      = 0x10000000000\n\tIFF_XRESOLV                   = 0x100000000\n\tIFNAMSIZ                      = 0x10\n\tIFT_1822                      = 0x2\n\tIFT_6TO4                      = 0xca\n\tIFT_AAL5                      = 0x31\n\tIFT_ARCNET                    = 0x23\n\tIFT_ARCNETPLUS                = 0x24\n\tIFT_ATM                       = 0x25\n\tIFT_CEPT                      = 0x13\n\tIFT_DS3                       = 0x1e\n\tIFT_EON                       = 0x19\n\tIFT_ETHER                     = 0x6\n\tIFT_FDDI                      = 0xf\n\tIFT_FRELAY                    = 0x20\n\tIFT_FRELAYDCE                 = 0x2c\n\tIFT_HDH1822                   = 0x3\n\tIFT_HIPPI                     = 0x2f\n\tIFT_HSSI                      = 0x2e\n\tIFT_HY                        = 0xe\n\tIFT_IB                        = 0xc7\n\tIFT_IPV4                      = 0xc8\n\tIFT_IPV6                      = 0xc9\n\tIFT_ISDNBASIC                 = 0x14\n\tIFT_ISDNPRIMARY               = 0x15\n\tIFT_ISO88022LLC               = 0x29\n\tIFT_ISO88023                  = 0x7\n\tIFT_ISO88024                  = 0x8\n\tIFT_ISO88025                  = 0x9\n\tIFT_ISO88026                  = 0xa\n\tIFT_LAPB                      = 0x10\n\tIFT_LOCALTALK                 = 0x2a\n\tIFT_LOOP                      = 0x18\n\tIFT_MIOX25                    = 0x26\n\tIFT_MODEM                     = 0x30\n\tIFT_NSIP                      = 0x1b\n\tIFT_OTHER                     = 0x1\n\tIFT_P10                       = 0xc\n\tIFT_P80                       = 0xd\n\tIFT_PARA                      = 0x22\n\tIFT_PPP                       = 0x17\n\tIFT_PROPMUX                   = 0x36\n\tIFT_PROPVIRTUAL               = 0x35\n\tIFT_PTPSERIAL                 = 0x16\n\tIFT_RS232                     = 0x21\n\tIFT_SDLC                      = 0x11\n\tIFT_SIP                       = 0x1f\n\tIFT_SLIP                      = 0x1c\n\tIFT_SMDSDXI                   = 0x2b\n\tIFT_SMDSICIP                  = 0x34\n\tIFT_SONET                     = 0x27\n\tIFT_SONETPATH                 = 0x32\n\tIFT_SONETVT                   = 0x33\n\tIFT_STARLAN                   = 0xb\n\tIFT_T1                        = 0x12\n\tIFT_ULTRA                     = 0x1d\n\tIFT_V35                       = 0x2d\n\tIFT_X25                       = 0x5\n\tIFT_X25DDN                    = 0x4\n\tIFT_X25PLE                    = 0x28\n\tIFT_XETHER                    = 0x1a\n\tIGNBRK                        = 0x1\n\tIGNCR                         = 0x80\n\tIGNPAR                        = 0x4\n\tIMAXBEL                       = 0x2000\n\tINLCR                         = 0x40\n\tINPCK                         = 0x10\n\tIN_AUTOCONF_MASK              = 0xffff0000\n\tIN_AUTOCONF_NET               = 0xa9fe0000\n\tIN_CLASSA_HOST                = 0xffffff\n\tIN_CLASSA_MAX                 = 0x80\n\tIN_CLASSA_NET                 = 0xff000000\n\tIN_CLASSA_NSHIFT              = 0x18\n\tIN_CLASSB_HOST                = 0xffff\n\tIN_CLASSB_MAX                 = 0x10000\n\tIN_CLASSB_NET                 = 0xffff0000\n\tIN_CLASSB_NSHIFT              = 0x10\n\tIN_CLASSC_HOST                = 0xff\n\tIN_CLASSC_NET                 = 0xffffff00\n\tIN_CLASSC_NSHIFT              = 0x8\n\tIN_CLASSD_HOST                = 0xfffffff\n\tIN_CLASSD_NET                 = 0xf0000000\n\tIN_CLASSD_NSHIFT              = 0x1c\n\tIN_CLASSE_NET                 = 0xffffffff\n\tIN_LOOPBACKNET                = 0x7f\n\tIN_PRIVATE12_MASK             = 0xfff00000\n\tIN_PRIVATE12_NET              = 0xac100000\n\tIN_PRIVATE16_MASK             = 0xffff0000\n\tIN_PRIVATE16_NET              = 0xc0a80000\n\tIN_PRIVATE8_MASK              = 0xff000000\n\tIN_PRIVATE8_NET               = 0xa000000\n\tIPPROTO_AH                    = 0x33\n\tIPPROTO_DSTOPTS               = 0x3c\n\tIPPROTO_EGP                   = 0x8\n\tIPPROTO_ENCAP                 = 0x4\n\tIPPROTO_EON                   = 0x50\n\tIPPROTO_ESP                   = 0x32\n\tIPPROTO_FRAGMENT              = 0x2c\n\tIPPROTO_GGP                   = 0x3\n\tIPPROTO_HELLO                 = 0x3f\n\tIPPROTO_HOPOPTS               = 0x0\n\tIPPROTO_ICMP                  = 0x1\n\tIPPROTO_ICMPV6                = 0x3a\n\tIPPROTO_IDP                   = 0x16\n\tIPPROTO_IGMP                  = 0x2\n\tIPPROTO_IP                    = 0x0\n\tIPPROTO_IPV6                  = 0x29\n\tIPPROTO_MAX                   = 0x100\n\tIPPROTO_ND                    = 0x4d\n\tIPPROTO_NONE                  = 0x3b\n\tIPPROTO_OSPF                  = 0x59\n\tIPPROTO_PIM                   = 0x67\n\tIPPROTO_PUP                   = 0xc\n\tIPPROTO_RAW                   = 0xff\n\tIPPROTO_ROUTING               = 0x2b\n\tIPPROTO_RSVP                  = 0x2e\n\tIPPROTO_SCTP                  = 0x84\n\tIPPROTO_TCP                   = 0x6\n\tIPPROTO_UDP                   = 0x11\n\tIPV6_ADD_MEMBERSHIP           = 0x9\n\tIPV6_BOUND_IF                 = 0x41\n\tIPV6_CHECKSUM                 = 0x18\n\tIPV6_DONTFRAG                 = 0x21\n\tIPV6_DROP_MEMBERSHIP          = 0xa\n\tIPV6_DSTOPTS                  = 0xf\n\tIPV6_FLOWINFO_FLOWLABEL       = 0xffff0f00\n\tIPV6_FLOWINFO_TCLASS          = 0xf00f\n\tIPV6_HOPLIMIT                 = 0xc\n\tIPV6_HOPOPTS                  = 0xe\n\tIPV6_JOIN_GROUP               = 0x9\n\tIPV6_LEAVE_GROUP              = 0xa\n\tIPV6_MULTICAST_HOPS           = 0x7\n\tIPV6_MULTICAST_IF             = 0x6\n\tIPV6_MULTICAST_LOOP           = 0x8\n\tIPV6_NEXTHOP                  = 0xd\n\tIPV6_PAD1_OPT                 = 0x0\n\tIPV6_PATHMTU                  = 0x25\n\tIPV6_PKTINFO                  = 0xb\n\tIPV6_PREFER_SRC_CGA           = 0x20\n\tIPV6_PREFER_SRC_CGADEFAULT    = 0x10\n\tIPV6_PREFER_SRC_CGAMASK       = 0x30\n\tIPV6_PREFER_SRC_COA           = 0x2\n\tIPV6_PREFER_SRC_DEFAULT       = 0x15\n\tIPV6_PREFER_SRC_HOME          = 0x1\n\tIPV6_PREFER_SRC_MASK          = 0x3f\n\tIPV6_PREFER_SRC_MIPDEFAULT    = 0x1\n\tIPV6_PREFER_SRC_MIPMASK       = 0x3\n\tIPV6_PREFER_SRC_NONCGA        = 0x10\n\tIPV6_PREFER_SRC_PUBLIC        = 0x4\n\tIPV6_PREFER_SRC_TMP           = 0x8\n\tIPV6_PREFER_SRC_TMPDEFAULT    = 0x4\n\tIPV6_PREFER_SRC_TMPMASK       = 0xc\n\tIPV6_RECVDSTOPTS              = 0x28\n\tIPV6_RECVHOPLIMIT             = 0x13\n\tIPV6_RECVHOPOPTS              = 0x14\n\tIPV6_RECVPATHMTU              = 0x24\n\tIPV6_RECVPKTINFO              = 0x12\n\tIPV6_RECVRTHDR                = 0x16\n\tIPV6_RECVRTHDRDSTOPTS         = 0x17\n\tIPV6_RECVTCLASS               = 0x19\n\tIPV6_RTHDR                    = 0x10\n\tIPV6_RTHDRDSTOPTS             = 0x11\n\tIPV6_RTHDR_TYPE_0             = 0x0\n\tIPV6_SEC_OPT                  = 0x22\n\tIPV6_SRC_PREFERENCES          = 0x23\n\tIPV6_TCLASS                   = 0x26\n\tIPV6_UNICAST_HOPS             = 0x5\n\tIPV6_UNSPEC_SRC               = 0x42\n\tIPV6_USE_MIN_MTU              = 0x20\n\tIPV6_V6ONLY                   = 0x27\n\tIP_ADD_MEMBERSHIP             = 0x13\n\tIP_ADD_SOURCE_MEMBERSHIP      = 0x17\n\tIP_BLOCK_SOURCE               = 0x15\n\tIP_BOUND_IF                   = 0x41\n\tIP_BROADCAST                  = 0x106\n\tIP_BROADCAST_TTL              = 0x43\n\tIP_DEFAULT_MULTICAST_LOOP     = 0x1\n\tIP_DEFAULT_MULTICAST_TTL      = 0x1\n\tIP_DF                         = 0x4000\n\tIP_DHCPINIT_IF                = 0x45\n\tIP_DONTFRAG                   = 0x1b\n\tIP_DONTROUTE                  = 0x105\n\tIP_DROP_MEMBERSHIP            = 0x14\n\tIP_DROP_SOURCE_MEMBERSHIP     = 0x18\n\tIP_HDRINCL                    = 0x2\n\tIP_MAXPACKET                  = 0xffff\n\tIP_MF                         = 0x2000\n\tIP_MSS                        = 0x240\n\tIP_MULTICAST_IF               = 0x10\n\tIP_MULTICAST_LOOP             = 0x12\n\tIP_MULTICAST_TTL              = 0x11\n\tIP_NEXTHOP                    = 0x19\n\tIP_OPTIONS                    = 0x1\n\tIP_PKTINFO                    = 0x1a\n\tIP_RECVDSTADDR                = 0x7\n\tIP_RECVIF                     = 0x9\n\tIP_RECVOPTS                   = 0x5\n\tIP_RECVPKTINFO                = 0x1a\n\tIP_RECVRETOPTS                = 0x6\n\tIP_RECVSLLA                   = 0xa\n\tIP_RECVTTL                    = 0xb\n\tIP_RETOPTS                    = 0x8\n\tIP_REUSEADDR                  = 0x104\n\tIP_SEC_OPT                    = 0x22\n\tIP_TOS                        = 0x3\n\tIP_TTL                        = 0x4\n\tIP_UNBLOCK_SOURCE             = 0x16\n\tIP_UNSPEC_SRC                 = 0x42\n\tISIG                          = 0x1\n\tISTRIP                        = 0x20\n\tIUCLC                         = 0x200\n\tIXANY                         = 0x800\n\tIXOFF                         = 0x1000\n\tIXON                          = 0x400\n\tLOCK_EX                       = 0x2\n\tLOCK_NB                       = 0x4\n\tLOCK_SH                       = 0x1\n\tLOCK_UN                       = 0x8\n\tMADV_ACCESS_DEFAULT           = 0x6\n\tMADV_ACCESS_LWP               = 0x7\n\tMADV_ACCESS_MANY              = 0x8\n\tMADV_DONTNEED                 = 0x4\n\tMADV_FREE                     = 0x5\n\tMADV_NORMAL                   = 0x0\n\tMADV_PURGE                    = 0x9\n\tMADV_RANDOM                   = 0x1\n\tMADV_SEQUENTIAL               = 0x2\n\tMADV_WILLNEED                 = 0x3\n\tMAP_32BIT                     = 0x80\n\tMAP_ALIGN                     = 0x200\n\tMAP_ANON                      = 0x100\n\tMAP_ANONYMOUS                 = 0x100\n\tMAP_FILE                      = 0x0\n\tMAP_FIXED                     = 0x10\n\tMAP_INITDATA                  = 0x800\n\tMAP_NORESERVE                 = 0x40\n\tMAP_PRIVATE                   = 0x2\n\tMAP_RENAME                    = 0x20\n\tMAP_SHARED                    = 0x1\n\tMAP_TEXT                      = 0x400\n\tMAP_TYPE                      = 0xf\n\tMCL_CURRENT                   = 0x1\n\tMCL_FUTURE                    = 0x2\n\tMSG_CTRUNC                    = 0x10\n\tMSG_DONTROUTE                 = 0x4\n\tMSG_DONTWAIT                  = 0x80\n\tMSG_DUPCTRL                   = 0x800\n\tMSG_EOR                       = 0x8\n\tMSG_MAXIOVLEN                 = 0x10\n\tMSG_NOTIFICATION              = 0x100\n\tMSG_OOB                       = 0x1\n\tMSG_PEEK                      = 0x2\n\tMSG_TRUNC                     = 0x20\n\tMSG_WAITALL                   = 0x40\n\tMSG_XPG4_2                    = 0x8000\n\tMS_ASYNC                      = 0x1\n\tMS_INVALIDATE                 = 0x2\n\tMS_OLDSYNC                    = 0x0\n\tMS_SYNC                       = 0x4\n\tM_FLUSH                       = 0x86\n\tNAME_MAX                      = 0xff\n\tNEWDEV                        = 0x1\n\tNFDBITS                       = 0x40\n\tNL0                           = 0x0\n\tNL1                           = 0x100\n\tNLDLY                         = 0x100\n\tNOFLSH                        = 0x80\n\tOCRNL                         = 0x8\n\tOFDEL                         = 0x80\n\tOFILL                         = 0x40\n\tOLCUC                         = 0x2\n\tOLDDEV                        = 0x0\n\tONBITSMAJOR                   = 0x7\n\tONBITSMINOR                   = 0x8\n\tONLCR                         = 0x4\n\tONLRET                        = 0x20\n\tONOCR                         = 0x10\n\tOPENFAIL                      = -0x1\n\tOPOST                         = 0x1\n\tO_ACCMODE                     = 0x600003\n\tO_APPEND                      = 0x8\n\tO_CLOEXEC                     = 0x800000\n\tO_CREAT                       = 0x100\n\tO_DSYNC                       = 0x40\n\tO_EXCL                        = 0x400\n\tO_EXEC                        = 0x400000\n\tO_LARGEFILE                   = 0x2000\n\tO_NDELAY                      = 0x4\n\tO_NOCTTY                      = 0x800\n\tO_NOFOLLOW                    = 0x20000\n\tO_NOLINKS                     = 0x40000\n\tO_NONBLOCK                    = 0x80\n\tO_RDONLY                      = 0x0\n\tO_RDWR                        = 0x2\n\tO_RSYNC                       = 0x8000\n\tO_SEARCH                      = 0x200000\n\tO_SIOCGIFCONF                 = -0x3ff796ec\n\tO_SIOCGLIFCONF                = -0x3fef9688\n\tO_SYNC                        = 0x10\n\tO_TRUNC                       = 0x200\n\tO_WRONLY                      = 0x1\n\tO_XATTR                       = 0x4000\n\tPARENB                        = 0x100\n\tPAREXT                        = 0x100000\n\tPARMRK                        = 0x8\n\tPARODD                        = 0x200\n\tPENDIN                        = 0x4000\n\tPRIO_PGRP                     = 0x1\n\tPRIO_PROCESS                  = 0x0\n\tPRIO_USER                     = 0x2\n\tPROT_EXEC                     = 0x4\n\tPROT_NONE                     = 0x0\n\tPROT_READ                     = 0x1\n\tPROT_WRITE                    = 0x2\n\tRLIMIT_AS                     = 0x6\n\tRLIMIT_CORE                   = 0x4\n\tRLIMIT_CPU                    = 0x0\n\tRLIMIT_DATA                   = 0x2\n\tRLIMIT_FSIZE                  = 0x1\n\tRLIMIT_NOFILE                 = 0x5\n\tRLIMIT_STACK                  = 0x3\n\tRLIM_INFINITY                 = -0x3\n\tRTAX_AUTHOR                   = 0x6\n\tRTAX_BRD                      = 0x7\n\tRTAX_DST                      = 0x0\n\tRTAX_GATEWAY                  = 0x1\n\tRTAX_GENMASK                  = 0x3\n\tRTAX_IFA                      = 0x5\n\tRTAX_IFP                      = 0x4\n\tRTAX_MAX                      = 0x9\n\tRTAX_NETMASK                  = 0x2\n\tRTAX_SRC                      = 0x8\n\tRTA_AUTHOR                    = 0x40\n\tRTA_BRD                       = 0x80\n\tRTA_DST                       = 0x1\n\tRTA_GATEWAY                   = 0x2\n\tRTA_GENMASK                   = 0x8\n\tRTA_IFA                       = 0x20\n\tRTA_IFP                       = 0x10\n\tRTA_NETMASK                   = 0x4\n\tRTA_NUMBITS                   = 0x9\n\tRTA_SRC                       = 0x100\n\tRTF_BLACKHOLE                 = 0x1000\n\tRTF_CLONING                   = 0x100\n\tRTF_DONE                      = 0x40\n\tRTF_DYNAMIC                   = 0x10\n\tRTF_GATEWAY                   = 0x2\n\tRTF_HOST                      = 0x4\n\tRTF_INDIRECT                  = 0x40000\n\tRTF_KERNEL                    = 0x80000\n\tRTF_LLINFO                    = 0x400\n\tRTF_MASK                      = 0x80\n\tRTF_MODIFIED                  = 0x20\n\tRTF_MULTIRT                   = 0x10000\n\tRTF_PRIVATE                   = 0x2000\n\tRTF_PROTO1                    = 0x8000\n\tRTF_PROTO2                    = 0x4000\n\tRTF_REJECT                    = 0x8\n\tRTF_SETSRC                    = 0x20000\n\tRTF_STATIC                    = 0x800\n\tRTF_UP                        = 0x1\n\tRTF_XRESOLVE                  = 0x200\n\tRTF_ZONE                      = 0x100000\n\tRTM_ADD                       = 0x1\n\tRTM_CHANGE                    = 0x3\n\tRTM_CHGADDR                   = 0xf\n\tRTM_DELADDR                   = 0xd\n\tRTM_DELETE                    = 0x2\n\tRTM_FREEADDR                  = 0x10\n\tRTM_GET                       = 0x4\n\tRTM_IFINFO                    = 0xe\n\tRTM_LOCK                      = 0x8\n\tRTM_LOSING                    = 0x5\n\tRTM_MISS                      = 0x7\n\tRTM_NEWADDR                   = 0xc\n\tRTM_OLDADD                    = 0x9\n\tRTM_OLDDEL                    = 0xa\n\tRTM_REDIRECT                  = 0x6\n\tRTM_RESOLVE                   = 0xb\n\tRTM_VERSION                   = 0x3\n\tRTV_EXPIRE                    = 0x4\n\tRTV_HOPCOUNT                  = 0x2\n\tRTV_MTU                       = 0x1\n\tRTV_RPIPE                     = 0x8\n\tRTV_RTT                       = 0x40\n\tRTV_RTTVAR                    = 0x80\n\tRTV_SPIPE                     = 0x10\n\tRTV_SSTHRESH                  = 0x20\n\tRT_AWARE                      = 0x1\n\tRUSAGE_CHILDREN               = -0x1\n\tRUSAGE_SELF                   = 0x0\n\tSCM_RIGHTS                    = 0x1010\n\tSCM_TIMESTAMP                 = 0x1013\n\tSCM_UCRED                     = 0x1012\n\tSHUT_RD                       = 0x0\n\tSHUT_RDWR                     = 0x2\n\tSHUT_WR                       = 0x1\n\tSIG2STR_MAX                   = 0x20\n\tSIOCADDMULTI                  = -0x7fdf96cf\n\tSIOCADDRT                     = -0x7fcf8df6\n\tSIOCATMARK                    = 0x40047307\n\tSIOCDARP                      = -0x7fdb96e0\n\tSIOCDELMULTI                  = -0x7fdf96ce\n\tSIOCDELRT                     = -0x7fcf8df5\n\tSIOCDXARP                     = -0x7fff9658\n\tSIOCGARP                      = -0x3fdb96e1\n\tSIOCGDSTINFO                  = -0x3fff965c\n\tSIOCGENADDR                   = -0x3fdf96ab\n\tSIOCGENPSTATS                 = -0x3fdf96c7\n\tSIOCGETLSGCNT                 = -0x3fef8deb\n\tSIOCGETNAME                   = 0x40107334\n\tSIOCGETPEER                   = 0x40107335\n\tSIOCGETPROP                   = -0x3fff8f44\n\tSIOCGETSGCNT                  = -0x3feb8deb\n\tSIOCGETSYNC                   = -0x3fdf96d3\n\tSIOCGETVIFCNT                 = -0x3feb8dec\n\tSIOCGHIWAT                    = 0x40047301\n\tSIOCGIFADDR                   = -0x3fdf96f3\n\tSIOCGIFBRDADDR                = -0x3fdf96e9\n\tSIOCGIFCONF                   = -0x3ff796a4\n\tSIOCGIFDSTADDR                = -0x3fdf96f1\n\tSIOCGIFFLAGS                  = -0x3fdf96ef\n\tSIOCGIFHWADDR                 = -0x3fdf9647\n\tSIOCGIFINDEX                  = -0x3fdf96a6\n\tSIOCGIFMEM                    = -0x3fdf96ed\n\tSIOCGIFMETRIC                 = -0x3fdf96e5\n\tSIOCGIFMTU                    = -0x3fdf96ea\n\tSIOCGIFMUXID                  = -0x3fdf96a8\n\tSIOCGIFNETMASK                = -0x3fdf96e7\n\tSIOCGIFNUM                    = 0x40046957\n\tSIOCGIP6ADDRPOLICY            = -0x3fff965e\n\tSIOCGIPMSFILTER               = -0x3ffb964c\n\tSIOCGLIFADDR                  = -0x3f87968f\n\tSIOCGLIFBINDING               = -0x3f879666\n\tSIOCGLIFBRDADDR               = -0x3f879685\n\tSIOCGLIFCONF                  = -0x3fef965b\n\tSIOCGLIFDADSTATE              = -0x3f879642\n\tSIOCGLIFDSTADDR               = -0x3f87968d\n\tSIOCGLIFFLAGS                 = -0x3f87968b\n\tSIOCGLIFGROUPINFO             = -0x3f4b9663\n\tSIOCGLIFGROUPNAME             = -0x3f879664\n\tSIOCGLIFHWADDR                = -0x3f879640\n\tSIOCGLIFINDEX                 = -0x3f87967b\n\tSIOCGLIFLNKINFO               = -0x3f879674\n\tSIOCGLIFMETRIC                = -0x3f879681\n\tSIOCGLIFMTU                   = -0x3f879686\n\tSIOCGLIFMUXID                 = -0x3f87967d\n\tSIOCGLIFNETMASK               = -0x3f879683\n\tSIOCGLIFNUM                   = -0x3ff3967e\n\tSIOCGLIFSRCOF                 = -0x3fef964f\n\tSIOCGLIFSUBNET                = -0x3f879676\n\tSIOCGLIFTOKEN                 = -0x3f879678\n\tSIOCGLIFUSESRC                = -0x3f879651\n\tSIOCGLIFZONE                  = -0x3f879656\n\tSIOCGLOWAT                    = 0x40047303\n\tSIOCGMSFILTER                 = -0x3ffb964e\n\tSIOCGPGRP                     = 0x40047309\n\tSIOCGSTAMP                    = -0x3fef9646\n\tSIOCGXARP                     = -0x3fff9659\n\tSIOCIFDETACH                  = -0x7fdf96c8\n\tSIOCILB                       = -0x3ffb9645\n\tSIOCLIFADDIF                  = -0x3f879691\n\tSIOCLIFDELND                  = -0x7f879673\n\tSIOCLIFGETND                  = -0x3f879672\n\tSIOCLIFREMOVEIF               = -0x7f879692\n\tSIOCLIFSETND                  = -0x7f879671\n\tSIOCLOWER                     = -0x7fdf96d7\n\tSIOCSARP                      = -0x7fdb96e2\n\tSIOCSCTPGOPT                  = -0x3fef9653\n\tSIOCSCTPPEELOFF               = -0x3ffb9652\n\tSIOCSCTPSOPT                  = -0x7fef9654\n\tSIOCSENABLESDP                = -0x3ffb9649\n\tSIOCSETPROP                   = -0x7ffb8f43\n\tSIOCSETSYNC                   = -0x7fdf96d4\n\tSIOCSHIWAT                    = -0x7ffb8d00\n\tSIOCSIFADDR                   = -0x7fdf96f4\n\tSIOCSIFBRDADDR                = -0x7fdf96e8\n\tSIOCSIFDSTADDR                = -0x7fdf96f2\n\tSIOCSIFFLAGS                  = -0x7fdf96f0\n\tSIOCSIFINDEX                  = -0x7fdf96a5\n\tSIOCSIFMEM                    = -0x7fdf96ee\n\tSIOCSIFMETRIC                 = -0x7fdf96e4\n\tSIOCSIFMTU                    = -0x7fdf96eb\n\tSIOCSIFMUXID                  = -0x7fdf96a7\n\tSIOCSIFNAME                   = -0x7fdf96b7\n\tSIOCSIFNETMASK                = -0x7fdf96e6\n\tSIOCSIP6ADDRPOLICY            = -0x7fff965d\n\tSIOCSIPMSFILTER               = -0x7ffb964b\n\tSIOCSLGETREQ                  = -0x3fdf96b9\n\tSIOCSLIFADDR                  = -0x7f879690\n\tSIOCSLIFBRDADDR               = -0x7f879684\n\tSIOCSLIFDSTADDR               = -0x7f87968e\n\tSIOCSLIFFLAGS                 = -0x7f87968c\n\tSIOCSLIFGROUPNAME             = -0x7f879665\n\tSIOCSLIFINDEX                 = -0x7f87967a\n\tSIOCSLIFLNKINFO               = -0x7f879675\n\tSIOCSLIFMETRIC                = -0x7f879680\n\tSIOCSLIFMTU                   = -0x7f879687\n\tSIOCSLIFMUXID                 = -0x7f87967c\n\tSIOCSLIFNAME                  = -0x3f87967f\n\tSIOCSLIFNETMASK               = -0x7f879682\n\tSIOCSLIFPREFIX                = -0x3f879641\n\tSIOCSLIFSUBNET                = -0x7f879677\n\tSIOCSLIFTOKEN                 = -0x7f879679\n\tSIOCSLIFUSESRC                = -0x7f879650\n\tSIOCSLIFZONE                  = -0x7f879655\n\tSIOCSLOWAT                    = -0x7ffb8cfe\n\tSIOCSLSTAT                    = -0x7fdf96b8\n\tSIOCSMSFILTER                 = -0x7ffb964d\n\tSIOCSPGRP                     = -0x7ffb8cf8\n\tSIOCSPROMISC                  = -0x7ffb96d0\n\tSIOCSQPTR                     = -0x3ffb9648\n\tSIOCSSDSTATS                  = -0x3fdf96d2\n\tSIOCSSESTATS                  = -0x3fdf96d1\n\tSIOCSXARP                     = -0x7fff965a\n\tSIOCTMYADDR                   = -0x3ff79670\n\tSIOCTMYSITE                   = -0x3ff7966e\n\tSIOCTONLINK                   = -0x3ff7966f\n\tSIOCUPPER                     = -0x7fdf96d8\n\tSIOCX25RCV                    = -0x3fdf96c4\n\tSIOCX25TBL                    = -0x3fdf96c3\n\tSIOCX25XMT                    = -0x3fdf96c5\n\tSIOCXPROTO                    = 0x20007337\n\tSOCK_CLOEXEC                  = 0x80000\n\tSOCK_DGRAM                    = 0x1\n\tSOCK_NDELAY                   = 0x200000\n\tSOCK_NONBLOCK                 = 0x100000\n\tSOCK_RAW                      = 0x4\n\tSOCK_RDM                      = 0x5\n\tSOCK_SEQPACKET                = 0x6\n\tSOCK_STREAM                   = 0x2\n\tSOCK_TYPE_MASK                = 0xffff\n\tSOL_FILTER                    = 0xfffc\n\tSOL_PACKET                    = 0xfffd\n\tSOL_ROUTE                     = 0xfffe\n\tSOL_SOCKET                    = 0xffff\n\tSOMAXCONN                     = 0x80\n\tSO_ACCEPTCONN                 = 0x2\n\tSO_ALL                        = 0x3f\n\tSO_ALLZONES                   = 0x1014\n\tSO_ANON_MLP                   = 0x100a\n\tSO_ATTACH_FILTER              = 0x40000001\n\tSO_BAND                       = 0x4000\n\tSO_BROADCAST                  = 0x20\n\tSO_COPYOPT                    = 0x80000\n\tSO_DEBUG                      = 0x1\n\tSO_DELIM                      = 0x8000\n\tSO_DETACH_FILTER              = 0x40000002\n\tSO_DGRAM_ERRIND               = 0x200\n\tSO_DOMAIN                     = 0x100c\n\tSO_DONTLINGER                 = -0x81\n\tSO_DONTROUTE                  = 0x10\n\tSO_ERROPT                     = 0x40000\n\tSO_ERROR                      = 0x1007\n\tSO_EXCLBIND                   = 0x1015\n\tSO_HIWAT                      = 0x10\n\tSO_ISNTTY                     = 0x800\n\tSO_ISTTY                      = 0x400\n\tSO_KEEPALIVE                  = 0x8\n\tSO_LINGER                     = 0x80\n\tSO_LOWAT                      = 0x20\n\tSO_MAC_EXEMPT                 = 0x100b\n\tSO_MAC_IMPLICIT               = 0x1016\n\tSO_MAXBLK                     = 0x100000\n\tSO_MAXPSZ                     = 0x8\n\tSO_MINPSZ                     = 0x4\n\tSO_MREADOFF                   = 0x80\n\tSO_MREADON                    = 0x40\n\tSO_NDELOFF                    = 0x200\n\tSO_NDELON                     = 0x100\n\tSO_NODELIM                    = 0x10000\n\tSO_OOBINLINE                  = 0x100\n\tSO_PROTOTYPE                  = 0x1009\n\tSO_RCVBUF                     = 0x1002\n\tSO_RCVLOWAT                   = 0x1004\n\tSO_RCVPSH                     = 0x100d\n\tSO_RCVTIMEO                   = 0x1006\n\tSO_READOPT                    = 0x1\n\tSO_RECVUCRED                  = 0x400\n\tSO_REUSEADDR                  = 0x4\n\tSO_SECATTR                    = 0x1011\n\tSO_SNDBUF                     = 0x1001\n\tSO_SNDLOWAT                   = 0x1003\n\tSO_SNDTIMEO                   = 0x1005\n\tSO_STRHOLD                    = 0x20000\n\tSO_TAIL                       = 0x200000\n\tSO_TIMESTAMP                  = 0x1013\n\tSO_TONSTOP                    = 0x2000\n\tSO_TOSTOP                     = 0x1000\n\tSO_TYPE                       = 0x1008\n\tSO_USELOOPBACK                = 0x40\n\tSO_VRRP                       = 0x1017\n\tSO_WROFF                      = 0x2\n\tS_ENFMT                       = 0x400\n\tS_IAMB                        = 0x1ff\n\tS_IEXEC                       = 0x40\n\tS_IFBLK                       = 0x6000\n\tS_IFCHR                       = 0x2000\n\tS_IFDIR                       = 0x4000\n\tS_IFDOOR                      = 0xd000\n\tS_IFIFO                       = 0x1000\n\tS_IFLNK                       = 0xa000\n\tS_IFMT                        = 0xf000\n\tS_IFNAM                       = 0x5000\n\tS_IFPORT                      = 0xe000\n\tS_IFREG                       = 0x8000\n\tS_IFSOCK                      = 0xc000\n\tS_INSEM                       = 0x1\n\tS_INSHD                       = 0x2\n\tS_IREAD                       = 0x100\n\tS_IRGRP                       = 0x20\n\tS_IROTH                       = 0x4\n\tS_IRUSR                       = 0x100\n\tS_IRWXG                       = 0x38\n\tS_IRWXO                       = 0x7\n\tS_IRWXU                       = 0x1c0\n\tS_ISGID                       = 0x400\n\tS_ISUID                       = 0x800\n\tS_ISVTX                       = 0x200\n\tS_IWGRP                       = 0x10\n\tS_IWOTH                       = 0x2\n\tS_IWRITE                      = 0x80\n\tS_IWUSR                       = 0x80\n\tS_IXGRP                       = 0x8\n\tS_IXOTH                       = 0x1\n\tS_IXUSR                       = 0x40\n\tTAB0                          = 0x0\n\tTAB1                          = 0x800\n\tTAB2                          = 0x1000\n\tTAB3                          = 0x1800\n\tTABDLY                        = 0x1800\n\tTCFLSH                        = 0x5407\n\tTCGETA                        = 0x5401\n\tTCGETS                        = 0x540d\n\tTCIFLUSH                      = 0x0\n\tTCIOFF                        = 0x2\n\tTCIOFLUSH                     = 0x2\n\tTCION                         = 0x3\n\tTCOFLUSH                      = 0x1\n\tTCOOFF                        = 0x0\n\tTCOON                         = 0x1\n\tTCP_ABORT_THRESHOLD           = 0x11\n\tTCP_ANONPRIVBIND              = 0x20\n\tTCP_CONN_ABORT_THRESHOLD      = 0x13\n\tTCP_CONN_NOTIFY_THRESHOLD     = 0x12\n\tTCP_CORK                      = 0x18\n\tTCP_EXCLBIND                  = 0x21\n\tTCP_INIT_CWND                 = 0x15\n\tTCP_KEEPALIVE                 = 0x8\n\tTCP_KEEPALIVE_ABORT_THRESHOLD = 0x17\n\tTCP_KEEPALIVE_THRESHOLD       = 0x16\n\tTCP_KEEPCNT                   = 0x23\n\tTCP_KEEPIDLE                  = 0x22\n\tTCP_KEEPINTVL                 = 0x24\n\tTCP_LINGER2                   = 0x1c\n\tTCP_MAXSEG                    = 0x2\n\tTCP_MSS                       = 0x218\n\tTCP_NODELAY                   = 0x1\n\tTCP_NOTIFY_THRESHOLD          = 0x10\n\tTCP_RECVDSTADDR               = 0x14\n\tTCP_RTO_INITIAL               = 0x19\n\tTCP_RTO_MAX                   = 0x1b\n\tTCP_RTO_MIN                   = 0x1a\n\tTCSAFLUSH                     = 0x5410\n\tTCSBRK                        = 0x5405\n\tTCSETA                        = 0x5402\n\tTCSETAF                       = 0x5404\n\tTCSETAW                       = 0x5403\n\tTCSETS                        = 0x540e\n\tTCSETSF                       = 0x5410\n\tTCSETSW                       = 0x540f\n\tTCXONC                        = 0x5406\n\tTIOC                          = 0x5400\n\tTIOCCBRK                      = 0x747a\n\tTIOCCDTR                      = 0x7478\n\tTIOCCILOOP                    = 0x746c\n\tTIOCEXCL                      = 0x740d\n\tTIOCFLUSH                     = 0x7410\n\tTIOCGETC                      = 0x7412\n\tTIOCGETD                      = 0x7400\n\tTIOCGETP                      = 0x7408\n\tTIOCGLTC                      = 0x7474\n\tTIOCGPGRP                     = 0x7414\n\tTIOCGPPS                      = 0x547d\n\tTIOCGPPSEV                    = 0x547f\n\tTIOCGSID                      = 0x7416\n\tTIOCGSOFTCAR                  = 0x5469\n\tTIOCGWINSZ                    = 0x5468\n\tTIOCHPCL                      = 0x7402\n\tTIOCKBOF                      = 0x5409\n\tTIOCKBON                      = 0x5408\n\tTIOCLBIC                      = 0x747e\n\tTIOCLBIS                      = 0x747f\n\tTIOCLGET                      = 0x747c\n\tTIOCLSET                      = 0x747d\n\tTIOCMBIC                      = 0x741c\n\tTIOCMBIS                      = 0x741b\n\tTIOCMGET                      = 0x741d\n\tTIOCMSET                      = 0x741a\n\tTIOCM_CAR                     = 0x40\n\tTIOCM_CD                      = 0x40\n\tTIOCM_CTS                     = 0x20\n\tTIOCM_DSR                     = 0x100\n\tTIOCM_DTR                     = 0x2\n\tTIOCM_LE                      = 0x1\n\tTIOCM_RI                      = 0x80\n\tTIOCM_RNG                     = 0x80\n\tTIOCM_RTS                     = 0x4\n\tTIOCM_SR                      = 0x10\n\tTIOCM_ST                      = 0x8\n\tTIOCNOTTY                     = 0x7471\n\tTIOCNXCL                      = 0x740e\n\tTIOCOUTQ                      = 0x7473\n\tTIOCREMOTE                    = 0x741e\n\tTIOCSBRK                      = 0x747b\n\tTIOCSCTTY                     = 0x7484\n\tTIOCSDTR                      = 0x7479\n\tTIOCSETC                      = 0x7411\n\tTIOCSETD                      = 0x7401\n\tTIOCSETN                      = 0x740a\n\tTIOCSETP                      = 0x7409\n\tTIOCSIGNAL                    = 0x741f\n\tTIOCSILOOP                    = 0x746d\n\tTIOCSLTC                      = 0x7475\n\tTIOCSPGRP                     = 0x7415\n\tTIOCSPPS                      = 0x547e\n\tTIOCSSOFTCAR                  = 0x546a\n\tTIOCSTART                     = 0x746e\n\tTIOCSTI                       = 0x7417\n\tTIOCSTOP                      = 0x746f\n\tTIOCSWINSZ                    = 0x5467\n\tTOSTOP                        = 0x100\n\tUTIME_NOW                     = -0x1\n\tUTIME_OMIT                    = -0x2\n\tVCEOF                         = 0x8\n\tVCEOL                         = 0x9\n\tVDISCARD                      = 0xd\n\tVDSUSP                        = 0xb\n\tVEOF                          = 0x4\n\tVEOL                          = 0x5\n\tVEOL2                         = 0x6\n\tVERASE                        = 0x2\n\tVERASE2                       = 0x11\n\tVINTR                         = 0x0\n\tVKILL                         = 0x3\n\tVLNEXT                        = 0xf\n\tVMIN                          = 0x4\n\tVQUIT                         = 0x1\n\tVREPRINT                      = 0xc\n\tVSTART                        = 0x8\n\tVSTATUS                       = 0x10\n\tVSTOP                         = 0x9\n\tVSUSP                         = 0xa\n\tVSWTCH                        = 0x7\n\tVT0                           = 0x0\n\tVT1                           = 0x4000\n\tVTDLY                         = 0x4000\n\tVTIME                         = 0x5\n\tVWERASE                       = 0xe\n\tWCONTFLG                      = 0xffff\n\tWCONTINUED                    = 0x8\n\tWCOREFLG                      = 0x80\n\tWEXITED                       = 0x1\n\tWNOHANG                       = 0x40\n\tWNOWAIT                       = 0x80\n\tWOPTMASK                      = 0xcf\n\tWRAP                          = 0x20000\n\tWSIGMASK                      = 0x7f\n\tWSTOPFLG                      = 0x7f\n\tWSTOPPED                      = 0x4\n\tWTRAPPED                      = 0x2\n\tWUNTRACED                     = 0x4\n\tXCASE                         = 0x4\n\tXTABS                         = 0x1800\n)\n\n// Errors\nconst (\n\tE2BIG           = syscall.Errno(0x7)\n\tEACCES          = syscall.Errno(0xd)\n\tEADDRINUSE      = syscall.Errno(0x7d)\n\tEADDRNOTAVAIL   = syscall.Errno(0x7e)\n\tEADV            = syscall.Errno(0x44)\n\tEAFNOSUPPORT    = syscall.Errno(0x7c)\n\tEAGAIN          = syscall.Errno(0xb)\n\tEALREADY        = syscall.Errno(0x95)\n\tEBADE           = syscall.Errno(0x32)\n\tEBADF           = syscall.Errno(0x9)\n\tEBADFD          = syscall.Errno(0x51)\n\tEBADMSG         = syscall.Errno(0x4d)\n\tEBADR           = syscall.Errno(0x33)\n\tEBADRQC         = syscall.Errno(0x36)\n\tEBADSLT         = syscall.Errno(0x37)\n\tEBFONT          = syscall.Errno(0x39)\n\tEBUSY           = syscall.Errno(0x10)\n\tECANCELED       = syscall.Errno(0x2f)\n\tECHILD          = syscall.Errno(0xa)\n\tECHRNG          = syscall.Errno(0x25)\n\tECOMM           = syscall.Errno(0x46)\n\tECONNABORTED    = syscall.Errno(0x82)\n\tECONNREFUSED    = syscall.Errno(0x92)\n\tECONNRESET      = syscall.Errno(0x83)\n\tEDEADLK         = syscall.Errno(0x2d)\n\tEDEADLOCK       = syscall.Errno(0x38)\n\tEDESTADDRREQ    = syscall.Errno(0x60)\n\tEDOM            = syscall.Errno(0x21)\n\tEDQUOT          = syscall.Errno(0x31)\n\tEEXIST          = syscall.Errno(0x11)\n\tEFAULT          = syscall.Errno(0xe)\n\tEFBIG           = syscall.Errno(0x1b)\n\tEHOSTDOWN       = syscall.Errno(0x93)\n\tEHOSTUNREACH    = syscall.Errno(0x94)\n\tEIDRM           = syscall.Errno(0x24)\n\tEILSEQ          = syscall.Errno(0x58)\n\tEINPROGRESS     = syscall.Errno(0x96)\n\tEINTR           = syscall.Errno(0x4)\n\tEINVAL          = syscall.Errno(0x16)\n\tEIO             = syscall.Errno(0x5)\n\tEISCONN         = syscall.Errno(0x85)\n\tEISDIR          = syscall.Errno(0x15)\n\tEL2HLT          = syscall.Errno(0x2c)\n\tEL2NSYNC        = syscall.Errno(0x26)\n\tEL3HLT          = syscall.Errno(0x27)\n\tEL3RST          = syscall.Errno(0x28)\n\tELIBACC         = syscall.Errno(0x53)\n\tELIBBAD         = syscall.Errno(0x54)\n\tELIBEXEC        = syscall.Errno(0x57)\n\tELIBMAX         = syscall.Errno(0x56)\n\tELIBSCN         = syscall.Errno(0x55)\n\tELNRNG          = syscall.Errno(0x29)\n\tELOCKUNMAPPED   = syscall.Errno(0x48)\n\tELOOP           = syscall.Errno(0x5a)\n\tEMFILE          = syscall.Errno(0x18)\n\tEMLINK          = syscall.Errno(0x1f)\n\tEMSGSIZE        = syscall.Errno(0x61)\n\tEMULTIHOP       = syscall.Errno(0x4a)\n\tENAMETOOLONG    = syscall.Errno(0x4e)\n\tENETDOWN        = syscall.Errno(0x7f)\n\tENETRESET       = syscall.Errno(0x81)\n\tENETUNREACH     = syscall.Errno(0x80)\n\tENFILE          = syscall.Errno(0x17)\n\tENOANO          = syscall.Errno(0x35)\n\tENOBUFS         = syscall.Errno(0x84)\n\tENOCSI          = syscall.Errno(0x2b)\n\tENODATA         = syscall.Errno(0x3d)\n\tENODEV          = syscall.Errno(0x13)\n\tENOENT          = syscall.Errno(0x2)\n\tENOEXEC         = syscall.Errno(0x8)\n\tENOLCK          = syscall.Errno(0x2e)\n\tENOLINK         = syscall.Errno(0x43)\n\tENOMEM          = syscall.Errno(0xc)\n\tENOMSG          = syscall.Errno(0x23)\n\tENONET          = syscall.Errno(0x40)\n\tENOPKG          = syscall.Errno(0x41)\n\tENOPROTOOPT     = syscall.Errno(0x63)\n\tENOSPC          = syscall.Errno(0x1c)\n\tENOSR           = syscall.Errno(0x3f)\n\tENOSTR          = syscall.Errno(0x3c)\n\tENOSYS          = syscall.Errno(0x59)\n\tENOTACTIVE      = syscall.Errno(0x49)\n\tENOTBLK         = syscall.Errno(0xf)\n\tENOTCONN        = syscall.Errno(0x86)\n\tENOTDIR         = syscall.Errno(0x14)\n\tENOTEMPTY       = syscall.Errno(0x5d)\n\tENOTRECOVERABLE = syscall.Errno(0x3b)\n\tENOTSOCK        = syscall.Errno(0x5f)\n\tENOTSUP         = syscall.Errno(0x30)\n\tENOTTY          = syscall.Errno(0x19)\n\tENOTUNIQ        = syscall.Errno(0x50)\n\tENXIO           = syscall.Errno(0x6)\n\tEOPNOTSUPP      = syscall.Errno(0x7a)\n\tEOVERFLOW       = syscall.Errno(0x4f)\n\tEOWNERDEAD      = syscall.Errno(0x3a)\n\tEPERM           = syscall.Errno(0x1)\n\tEPFNOSUPPORT    = syscall.Errno(0x7b)\n\tEPIPE           = syscall.Errno(0x20)\n\tEPROTO          = syscall.Errno(0x47)\n\tEPROTONOSUPPORT = syscall.Errno(0x78)\n\tEPROTOTYPE      = syscall.Errno(0x62)\n\tERANGE          = syscall.Errno(0x22)\n\tEREMCHG         = syscall.Errno(0x52)\n\tEREMOTE         = syscall.Errno(0x42)\n\tERESTART        = syscall.Errno(0x5b)\n\tEROFS           = syscall.Errno(0x1e)\n\tESHUTDOWN       = syscall.Errno(0x8f)\n\tESOCKTNOSUPPORT = syscall.Errno(0x79)\n\tESPIPE          = syscall.Errno(0x1d)\n\tESRCH           = syscall.Errno(0x3)\n\tESRMNT          = syscall.Errno(0x45)\n\tESTALE          = syscall.Errno(0x97)\n\tESTRPIPE        = syscall.Errno(0x5c)\n\tETIME           = syscall.Errno(0x3e)\n\tETIMEDOUT       = syscall.Errno(0x91)\n\tETOOMANYREFS    = syscall.Errno(0x90)\n\tETXTBSY         = syscall.Errno(0x1a)\n\tEUNATCH         = syscall.Errno(0x2a)\n\tEUSERS          = syscall.Errno(0x5e)\n\tEWOULDBLOCK     = syscall.Errno(0xb)\n\tEXDEV           = syscall.Errno(0x12)\n\tEXFULL          = syscall.Errno(0x34)\n)\n\n// Signals\nconst (\n\tSIGABRT    = syscall.Signal(0x6)\n\tSIGALRM    = syscall.Signal(0xe)\n\tSIGBUS     = syscall.Signal(0xa)\n\tSIGCANCEL  = syscall.Signal(0x24)\n\tSIGCHLD    = syscall.Signal(0x12)\n\tSIGCLD     = syscall.Signal(0x12)\n\tSIGCONT    = syscall.Signal(0x19)\n\tSIGEMT     = syscall.Signal(0x7)\n\tSIGFPE     = syscall.Signal(0x8)\n\tSIGFREEZE  = syscall.Signal(0x22)\n\tSIGHUP     = syscall.Signal(0x1)\n\tSIGILL     = syscall.Signal(0x4)\n\tSIGINFO    = syscall.Signal(0x29)\n\tSIGINT     = syscall.Signal(0x2)\n\tSIGIO      = syscall.Signal(0x16)\n\tSIGIOT     = syscall.Signal(0x6)\n\tSIGJVM1    = syscall.Signal(0x27)\n\tSIGJVM2    = syscall.Signal(0x28)\n\tSIGKILL    = syscall.Signal(0x9)\n\tSIGLOST    = syscall.Signal(0x25)\n\tSIGLWP     = syscall.Signal(0x21)\n\tSIGPIPE    = syscall.Signal(0xd)\n\tSIGPOLL    = syscall.Signal(0x16)\n\tSIGPROF    = syscall.Signal(0x1d)\n\tSIGPWR     = syscall.Signal(0x13)\n\tSIGQUIT    = syscall.Signal(0x3)\n\tSIGSEGV    = syscall.Signal(0xb)\n\tSIGSTOP    = syscall.Signal(0x17)\n\tSIGSYS     = syscall.Signal(0xc)\n\tSIGTERM    = syscall.Signal(0xf)\n\tSIGTHAW    = syscall.Signal(0x23)\n\tSIGTRAP    = syscall.Signal(0x5)\n\tSIGTSTP    = syscall.Signal(0x18)\n\tSIGTTIN    = syscall.Signal(0x1a)\n\tSIGTTOU    = syscall.Signal(0x1b)\n\tSIGURG     = syscall.Signal(0x15)\n\tSIGUSR1    = syscall.Signal(0x10)\n\tSIGUSR2    = syscall.Signal(0x11)\n\tSIGVTALRM  = syscall.Signal(0x1c)\n\tSIGWAITING = syscall.Signal(0x20)\n\tSIGWINCH   = syscall.Signal(0x14)\n\tSIGXCPU    = syscall.Signal(0x1e)\n\tSIGXFSZ    = syscall.Signal(0x1f)\n\tSIGXRES    = syscall.Signal(0x26)\n)\n\n// Error table\nvar errorList = [...]struct {\n\tnum  syscall.Errno\n\tname string\n\tdesc string\n}{\n\t{1, \"EPERM\", \"not owner\"},\n\t{2, \"ENOENT\", \"no such file or directory\"},\n\t{3, \"ESRCH\", \"no such process\"},\n\t{4, \"EINTR\", \"interrupted system call\"},\n\t{5, \"EIO\", \"I/O error\"},\n\t{6, \"ENXIO\", \"no such device or address\"},\n\t{7, \"E2BIG\", \"arg list too long\"},\n\t{8, \"ENOEXEC\", \"exec format error\"},\n\t{9, \"EBADF\", \"bad file number\"},\n\t{10, \"ECHILD\", \"no child processes\"},\n\t{11, \"EAGAIN\", \"resource temporarily unavailable\"},\n\t{12, \"ENOMEM\", \"not enough space\"},\n\t{13, \"EACCES\", \"permission denied\"},\n\t{14, \"EFAULT\", \"bad address\"},\n\t{15, \"ENOTBLK\", \"block device required\"},\n\t{16, \"EBUSY\", \"device busy\"},\n\t{17, \"EEXIST\", \"file exists\"},\n\t{18, \"EXDEV\", \"cross-device link\"},\n\t{19, \"ENODEV\", \"no such device\"},\n\t{20, \"ENOTDIR\", \"not a directory\"},\n\t{21, \"EISDIR\", \"is a directory\"},\n\t{22, \"EINVAL\", \"invalid argument\"},\n\t{23, \"ENFILE\", \"file table overflow\"},\n\t{24, \"EMFILE\", \"too many open files\"},\n\t{25, \"ENOTTY\", \"inappropriate ioctl for device\"},\n\t{26, \"ETXTBSY\", \"text file busy\"},\n\t{27, \"EFBIG\", \"file too large\"},\n\t{28, \"ENOSPC\", \"no space left on device\"},\n\t{29, \"ESPIPE\", \"illegal seek\"},\n\t{30, \"EROFS\", \"read-only file system\"},\n\t{31, \"EMLINK\", \"too many links\"},\n\t{32, \"EPIPE\", \"broken pipe\"},\n\t{33, \"EDOM\", \"argument out of domain\"},\n\t{34, \"ERANGE\", \"result too large\"},\n\t{35, \"ENOMSG\", \"no message of desired type\"},\n\t{36, \"EIDRM\", \"identifier removed\"},\n\t{37, \"ECHRNG\", \"channel number out of range\"},\n\t{38, \"EL2NSYNC\", \"level 2 not synchronized\"},\n\t{39, \"EL3HLT\", \"level 3 halted\"},\n\t{40, \"EL3RST\", \"level 3 reset\"},\n\t{41, \"ELNRNG\", \"link number out of range\"},\n\t{42, \"EUNATCH\", \"protocol driver not attached\"},\n\t{43, \"ENOCSI\", \"no CSI structure available\"},\n\t{44, \"EL2HLT\", \"level 2 halted\"},\n\t{45, \"EDEADLK\", \"deadlock situation detected/avoided\"},\n\t{46, \"ENOLCK\", \"no record locks available\"},\n\t{47, \"ECANCELED\", \"operation canceled\"},\n\t{48, \"ENOTSUP\", \"operation not supported\"},\n\t{49, \"EDQUOT\", \"disc quota exceeded\"},\n\t{50, \"EBADE\", \"bad exchange descriptor\"},\n\t{51, \"EBADR\", \"bad request descriptor\"},\n\t{52, \"EXFULL\", \"message tables full\"},\n\t{53, \"ENOANO\", \"anode table overflow\"},\n\t{54, \"EBADRQC\", \"bad request code\"},\n\t{55, \"EBADSLT\", \"invalid slot\"},\n\t{56, \"EDEADLOCK\", \"file locking deadlock\"},\n\t{57, \"EBFONT\", \"bad font file format\"},\n\t{58, \"EOWNERDEAD\", \"owner of the lock died\"},\n\t{59, \"ENOTRECOVERABLE\", \"lock is not recoverable\"},\n\t{60, \"ENOSTR\", \"not a stream device\"},\n\t{61, \"ENODATA\", \"no data available\"},\n\t{62, \"ETIME\", \"timer expired\"},\n\t{63, \"ENOSR\", \"out of stream resources\"},\n\t{64, \"ENONET\", \"machine is not on the network\"},\n\t{65, \"ENOPKG\", \"package not installed\"},\n\t{66, \"EREMOTE\", \"object is remote\"},\n\t{67, \"ENOLINK\", \"link has been severed\"},\n\t{68, \"EADV\", \"advertise error\"},\n\t{69, \"ESRMNT\", \"srmount error\"},\n\t{70, \"ECOMM\", \"communication error on send\"},\n\t{71, \"EPROTO\", \"protocol error\"},\n\t{72, \"ELOCKUNMAPPED\", \"locked lock was unmapped \"},\n\t{73, \"ENOTACTIVE\", \"facility is not active\"},\n\t{74, \"EMULTIHOP\", \"multihop attempted\"},\n\t{77, \"EBADMSG\", \"not a data message\"},\n\t{78, \"ENAMETOOLONG\", \"file name too long\"},\n\t{79, \"EOVERFLOW\", \"value too large for defined data type\"},\n\t{80, \"ENOTUNIQ\", \"name not unique on network\"},\n\t{81, \"EBADFD\", \"file descriptor in bad state\"},\n\t{82, \"EREMCHG\", \"remote address changed\"},\n\t{83, \"ELIBACC\", \"can not access a needed shared library\"},\n\t{84, \"ELIBBAD\", \"accessing a corrupted shared library\"},\n\t{85, \"ELIBSCN\", \".lib section in a.out corrupted\"},\n\t{86, \"ELIBMAX\", \"attempting to link in more shared libraries than system limit\"},\n\t{87, \"ELIBEXEC\", \"can not exec a shared library directly\"},\n\t{88, \"EILSEQ\", \"illegal byte sequence\"},\n\t{89, \"ENOSYS\", \"operation not applicable\"},\n\t{90, \"ELOOP\", \"number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS\"},\n\t{91, \"ERESTART\", \"error 91\"},\n\t{92, \"ESTRPIPE\", \"error 92\"},\n\t{93, \"ENOTEMPTY\", \"directory not empty\"},\n\t{94, \"EUSERS\", \"too many users\"},\n\t{95, \"ENOTSOCK\", \"socket operation on non-socket\"},\n\t{96, \"EDESTADDRREQ\", \"destination address required\"},\n\t{97, \"EMSGSIZE\", \"message too long\"},\n\t{98, \"EPROTOTYPE\", \"protocol wrong type for socket\"},\n\t{99, \"ENOPROTOOPT\", \"option not supported by protocol\"},\n\t{120, \"EPROTONOSUPPORT\", \"protocol not supported\"},\n\t{121, \"ESOCKTNOSUPPORT\", \"socket type not supported\"},\n\t{122, \"EOPNOTSUPP\", \"operation not supported on transport endpoint\"},\n\t{123, \"EPFNOSUPPORT\", \"protocol family not supported\"},\n\t{124, \"EAFNOSUPPORT\", \"address family not supported by protocol family\"},\n\t{125, \"EADDRINUSE\", \"address already in use\"},\n\t{126, \"EADDRNOTAVAIL\", \"cannot assign requested address\"},\n\t{127, \"ENETDOWN\", \"network is down\"},\n\t{128, \"ENETUNREACH\", \"network is unreachable\"},\n\t{129, \"ENETRESET\", \"network dropped connection because of reset\"},\n\t{130, \"ECONNABORTED\", \"software caused connection abort\"},\n\t{131, \"ECONNRESET\", \"connection reset by peer\"},\n\t{132, \"ENOBUFS\", \"no buffer space available\"},\n\t{133, \"EISCONN\", \"transport endpoint is already connected\"},\n\t{134, \"ENOTCONN\", \"transport endpoint is not connected\"},\n\t{143, \"ESHUTDOWN\", \"cannot send after socket shutdown\"},\n\t{144, \"ETOOMANYREFS\", \"too many references: cannot splice\"},\n\t{145, \"ETIMEDOUT\", \"connection timed out\"},\n\t{146, \"ECONNREFUSED\", \"connection refused\"},\n\t{147, \"EHOSTDOWN\", \"host is down\"},\n\t{148, \"EHOSTUNREACH\", \"no route to host\"},\n\t{149, \"EALREADY\", \"operation already in progress\"},\n\t{150, \"EINPROGRESS\", \"operation now in progress\"},\n\t{151, \"ESTALE\", \"stale NFS file handle\"},\n}\n\n// Signal table\nvar signalList = [...]struct {\n\tnum  syscall.Signal\n\tname string\n\tdesc string\n}{\n\t{1, \"SIGHUP\", \"hangup\"},\n\t{2, \"SIGINT\", \"interrupt\"},\n\t{3, \"SIGQUIT\", \"quit\"},\n\t{4, \"SIGILL\", \"illegal Instruction\"},\n\t{5, \"SIGTRAP\", \"trace/Breakpoint Trap\"},\n\t{6, \"SIGABRT\", \"abort\"},\n\t{7, \"SIGEMT\", \"emulation Trap\"},\n\t{8, \"SIGFPE\", \"arithmetic Exception\"},\n\t{9, \"SIGKILL\", \"killed\"},\n\t{10, \"SIGBUS\", \"bus Error\"},\n\t{11, \"SIGSEGV\", \"segmentation Fault\"},\n\t{12, \"SIGSYS\", \"bad System Call\"},\n\t{13, \"SIGPIPE\", \"broken Pipe\"},\n\t{14, \"SIGALRM\", \"alarm Clock\"},\n\t{15, \"SIGTERM\", \"terminated\"},\n\t{16, \"SIGUSR1\", \"user Signal 1\"},\n\t{17, \"SIGUSR2\", \"user Signal 2\"},\n\t{18, \"SIGCHLD\", \"child Status Changed\"},\n\t{19, \"SIGPWR\", \"power-Fail/Restart\"},\n\t{20, \"SIGWINCH\", \"window Size Change\"},\n\t{21, \"SIGURG\", \"urgent Socket Condition\"},\n\t{22, \"SIGIO\", \"pollable Event\"},\n\t{23, \"SIGSTOP\", \"stopped (signal)\"},\n\t{24, \"SIGTSTP\", \"stopped (user)\"},\n\t{25, \"SIGCONT\", \"continued\"},\n\t{26, \"SIGTTIN\", \"stopped (tty input)\"},\n\t{27, \"SIGTTOU\", \"stopped (tty output)\"},\n\t{28, \"SIGVTALRM\", \"virtual Timer Expired\"},\n\t{29, \"SIGPROF\", \"profiling Timer Expired\"},\n\t{30, \"SIGXCPU\", \"cpu Limit Exceeded\"},\n\t{31, \"SIGXFSZ\", \"file Size Limit Exceeded\"},\n\t{32, \"SIGWAITING\", \"no runnable lwp\"},\n\t{33, \"SIGLWP\", \"inter-lwp signal\"},\n\t{34, \"SIGFREEZE\", \"checkpoint Freeze\"},\n\t{35, \"SIGTHAW\", \"checkpoint Thaw\"},\n\t{36, \"SIGCANCEL\", \"thread Cancellation\"},\n\t{37, \"SIGLOST\", \"resource Lost\"},\n\t{38, \"SIGXRES\", \"resource Control Exceeded\"},\n\t{39, \"SIGJVM1\", \"reserved for JVM 1\"},\n\t{40, \"SIGJVM2\", \"reserved for JVM 2\"},\n\t{41, \"SIGINFO\", \"information Request\"},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go",
    "content": "// Code generated by linux/mkall.go generatePtracePair(\"arm\", \"arm64\"). DO NOT EDIT.\n\n// +build linux\n// +build arm arm64\n\npackage unix\n\nimport \"unsafe\"\n\n// PtraceRegsArm is the registers used by arm binaries.\ntype PtraceRegsArm struct {\n\tUregs [18]uint32\n}\n\n// PtraceGetRegsArm fetches the registers used by arm binaries.\nfunc PtraceGetRegsArm(pid int, regsout *PtraceRegsArm) error {\n\treturn ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))\n}\n\n// PtraceSetRegsArm sets the registers used by arm binaries.\nfunc PtraceSetRegsArm(pid int, regs *PtraceRegsArm) error {\n\treturn ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))\n}\n\n// PtraceRegsArm64 is the registers used by arm64 binaries.\ntype PtraceRegsArm64 struct {\n\tRegs   [31]uint64\n\tSp     uint64\n\tPc     uint64\n\tPstate uint64\n}\n\n// PtraceGetRegsArm64 fetches the registers used by arm64 binaries.\nfunc PtraceGetRegsArm64(pid int, regsout *PtraceRegsArm64) error {\n\treturn ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))\n}\n\n// PtraceSetRegsArm64 sets the registers used by arm64 binaries.\nfunc PtraceSetRegsArm64(pid int, regs *PtraceRegsArm64) error {\n\treturn ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go",
    "content": "// Code generated by linux/mkall.go generatePtraceRegSet(\"arm64\"). DO NOT EDIT.\n\npackage unix\n\nimport \"unsafe\"\n\n// PtraceGetRegSetArm64 fetches the registers used by arm64 binaries.\nfunc PtraceGetRegSetArm64(pid, addr int, regsout *PtraceRegsArm64) error {\n\tiovec := Iovec{(*byte)(unsafe.Pointer(regsout)), uint64(unsafe.Sizeof(*regsout))}\n\treturn ptrace(PTRACE_GETREGSET, pid, uintptr(addr), uintptr(unsafe.Pointer(&iovec)))\n}\n\n// PtraceSetRegSetArm64 sets the registers used by arm64 binaries.\nfunc PtraceSetRegSetArm64(pid, addr int, regs *PtraceRegsArm64) error {\n\tiovec := Iovec{(*byte)(unsafe.Pointer(regs)), uint64(unsafe.Sizeof(*regs))}\n\treturn ptrace(PTRACE_SETREGSET, pid, uintptr(addr), uintptr(unsafe.Pointer(&iovec)))\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go",
    "content": "// Code generated by linux/mkall.go generatePtracePair(\"mips\", \"mips64\"). DO NOT EDIT.\n\n// +build linux\n// +build mips mips64\n\npackage unix\n\nimport \"unsafe\"\n\n// PtraceRegsMips is the registers used by mips binaries.\ntype PtraceRegsMips struct {\n\tRegs     [32]uint64\n\tLo       uint64\n\tHi       uint64\n\tEpc      uint64\n\tBadvaddr uint64\n\tStatus   uint64\n\tCause    uint64\n}\n\n// PtraceGetRegsMips fetches the registers used by mips binaries.\nfunc PtraceGetRegsMips(pid int, regsout *PtraceRegsMips) error {\n\treturn ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))\n}\n\n// PtraceSetRegsMips sets the registers used by mips binaries.\nfunc PtraceSetRegsMips(pid int, regs *PtraceRegsMips) error {\n\treturn ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))\n}\n\n// PtraceRegsMips64 is the registers used by mips64 binaries.\ntype PtraceRegsMips64 struct {\n\tRegs     [32]uint64\n\tLo       uint64\n\tHi       uint64\n\tEpc      uint64\n\tBadvaddr uint64\n\tStatus   uint64\n\tCause    uint64\n}\n\n// PtraceGetRegsMips64 fetches the registers used by mips64 binaries.\nfunc PtraceGetRegsMips64(pid int, regsout *PtraceRegsMips64) error {\n\treturn ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))\n}\n\n// PtraceSetRegsMips64 sets the registers used by mips64 binaries.\nfunc PtraceSetRegsMips64(pid int, regs *PtraceRegsMips64) error {\n\treturn ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go",
    "content": "// Code generated by linux/mkall.go generatePtracePair(\"mipsle\", \"mips64le\"). DO NOT EDIT.\n\n// +build linux\n// +build mipsle mips64le\n\npackage unix\n\nimport \"unsafe\"\n\n// PtraceRegsMipsle is the registers used by mipsle binaries.\ntype PtraceRegsMipsle struct {\n\tRegs     [32]uint64\n\tLo       uint64\n\tHi       uint64\n\tEpc      uint64\n\tBadvaddr uint64\n\tStatus   uint64\n\tCause    uint64\n}\n\n// PtraceGetRegsMipsle fetches the registers used by mipsle binaries.\nfunc PtraceGetRegsMipsle(pid int, regsout *PtraceRegsMipsle) error {\n\treturn ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))\n}\n\n// PtraceSetRegsMipsle sets the registers used by mipsle binaries.\nfunc PtraceSetRegsMipsle(pid int, regs *PtraceRegsMipsle) error {\n\treturn ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))\n}\n\n// PtraceRegsMips64le is the registers used by mips64le binaries.\ntype PtraceRegsMips64le struct {\n\tRegs     [32]uint64\n\tLo       uint64\n\tHi       uint64\n\tEpc      uint64\n\tBadvaddr uint64\n\tStatus   uint64\n\tCause    uint64\n}\n\n// PtraceGetRegsMips64le fetches the registers used by mips64le binaries.\nfunc PtraceGetRegsMips64le(pid int, regsout *PtraceRegsMips64le) error {\n\treturn ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))\n}\n\n// PtraceSetRegsMips64le sets the registers used by mips64le binaries.\nfunc PtraceSetRegsMips64le(pid int, regs *PtraceRegsMips64le) error {\n\treturn ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zptrace_x86_linux.go",
    "content": "// Code generated by linux/mkall.go generatePtracePair(\"386\", \"amd64\"). DO NOT EDIT.\n\n// +build linux\n// +build 386 amd64\n\npackage unix\n\nimport \"unsafe\"\n\n// PtraceRegs386 is the registers used by 386 binaries.\ntype PtraceRegs386 struct {\n\tEbx      int32\n\tEcx      int32\n\tEdx      int32\n\tEsi      int32\n\tEdi      int32\n\tEbp      int32\n\tEax      int32\n\tXds      int32\n\tXes      int32\n\tXfs      int32\n\tXgs      int32\n\tOrig_eax int32\n\tEip      int32\n\tXcs      int32\n\tEflags   int32\n\tEsp      int32\n\tXss      int32\n}\n\n// PtraceGetRegs386 fetches the registers used by 386 binaries.\nfunc PtraceGetRegs386(pid int, regsout *PtraceRegs386) error {\n\treturn ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))\n}\n\n// PtraceSetRegs386 sets the registers used by 386 binaries.\nfunc PtraceSetRegs386(pid int, regs *PtraceRegs386) error {\n\treturn ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))\n}\n\n// PtraceRegsAmd64 is the registers used by amd64 binaries.\ntype PtraceRegsAmd64 struct {\n\tR15      uint64\n\tR14      uint64\n\tR13      uint64\n\tR12      uint64\n\tRbp      uint64\n\tRbx      uint64\n\tR11      uint64\n\tR10      uint64\n\tR9       uint64\n\tR8       uint64\n\tRax      uint64\n\tRcx      uint64\n\tRdx      uint64\n\tRsi      uint64\n\tRdi      uint64\n\tOrig_rax uint64\n\tRip      uint64\n\tCs       uint64\n\tEflags   uint64\n\tRsp      uint64\n\tSs       uint64\n\tFs_base  uint64\n\tGs_base  uint64\n\tDs       uint64\n\tEs       uint64\n\tFs       uint64\n\tGs       uint64\n}\n\n// PtraceGetRegsAmd64 fetches the registers used by amd64 binaries.\nfunc PtraceGetRegsAmd64(pid int, regsout *PtraceRegsAmd64) error {\n\treturn ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))\n}\n\n// PtraceSetRegsAmd64 sets the registers used by amd64 binaries.\nfunc PtraceSetRegsAmd64(pid int, regs *PtraceRegsAmd64) error {\n\treturn ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go",
    "content": "// go run mksyscall_aix_ppc.go -aix -tags aix,ppc syscall_aix.go syscall_aix_ppc.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build aix,ppc\n\npackage unix\n\n/*\n#include <stdint.h>\n#include <stddef.h>\nint utimes(uintptr_t, uintptr_t);\nint utimensat(int, uintptr_t, uintptr_t, int);\nint getcwd(uintptr_t, size_t);\nint accept(int, uintptr_t, uintptr_t);\nint getdirent(int, uintptr_t, size_t);\nint wait4(int, uintptr_t, int, uintptr_t);\nint ioctl(int, int, uintptr_t);\nint fcntl(uintptr_t, int, uintptr_t);\nint acct(uintptr_t);\nint chdir(uintptr_t);\nint chroot(uintptr_t);\nint close(int);\nint dup(int);\nvoid exit(int);\nint faccessat(int, uintptr_t, unsigned int, int);\nint fchdir(int);\nint fchmod(int, unsigned int);\nint fchmodat(int, uintptr_t, unsigned int, int);\nint fchownat(int, uintptr_t, int, int, int);\nint fdatasync(int);\nint fsync(int);\nint getpgid(int);\nint getpgrp();\nint getpid();\nint getppid();\nint getpriority(int, int);\nint getrusage(int, uintptr_t);\nint getsid(int);\nint kill(int, int);\nint syslog(int, uintptr_t, size_t);\nint mkdir(int, uintptr_t, unsigned int);\nint mkdirat(int, uintptr_t, unsigned int);\nint mkfifo(uintptr_t, unsigned int);\nint mknod(uintptr_t, unsigned int, int);\nint mknodat(int, uintptr_t, unsigned int, int);\nint nanosleep(uintptr_t, uintptr_t);\nint open64(uintptr_t, int, unsigned int);\nint openat(int, uintptr_t, int, unsigned int);\nint read(int, uintptr_t, size_t);\nint readlink(uintptr_t, uintptr_t, size_t);\nint renameat(int, uintptr_t, int, uintptr_t);\nint setdomainname(uintptr_t, size_t);\nint sethostname(uintptr_t, size_t);\nint setpgid(int, int);\nint setsid();\nint settimeofday(uintptr_t);\nint setuid(int);\nint setgid(int);\nint setpriority(int, int, int);\nint statx(int, uintptr_t, int, int, uintptr_t);\nint sync();\nuintptr_t times(uintptr_t);\nint umask(int);\nint uname(uintptr_t);\nint unlink(uintptr_t);\nint unlinkat(int, uintptr_t, int);\nint ustat(int, uintptr_t);\nint write(int, uintptr_t, size_t);\nint dup2(int, int);\nint posix_fadvise64(int, long long, long long, int);\nint fchown(int, int, int);\nint fstat(int, uintptr_t);\nint fstatat(int, uintptr_t, uintptr_t, int);\nint fstatfs(int, uintptr_t);\nint ftruncate(int, long long);\nint getegid();\nint geteuid();\nint getgid();\nint getuid();\nint lchown(uintptr_t, int, int);\nint listen(int, int);\nint lstat(uintptr_t, uintptr_t);\nint pause();\nint pread64(int, uintptr_t, size_t, long long);\nint pwrite64(int, uintptr_t, size_t, long long);\n#define c_select select\nint select(int, uintptr_t, uintptr_t, uintptr_t, uintptr_t);\nint pselect(int, uintptr_t, uintptr_t, uintptr_t, uintptr_t, uintptr_t);\nint setregid(int, int);\nint setreuid(int, int);\nint shutdown(int, int);\nlong long splice(int, uintptr_t, int, uintptr_t, int, int);\nint stat(uintptr_t, uintptr_t);\nint statfs(uintptr_t, uintptr_t);\nint truncate(uintptr_t, long long);\nint bind(int, uintptr_t, uintptr_t);\nint connect(int, uintptr_t, uintptr_t);\nint getgroups(int, uintptr_t);\nint setgroups(int, uintptr_t);\nint getsockopt(int, int, int, uintptr_t, uintptr_t);\nint setsockopt(int, int, int, uintptr_t, uintptr_t);\nint socket(int, int, int);\nint socketpair(int, int, int, uintptr_t);\nint getpeername(int, uintptr_t, uintptr_t);\nint getsockname(int, uintptr_t, uintptr_t);\nint recvfrom(int, uintptr_t, size_t, int, uintptr_t, uintptr_t);\nint sendto(int, uintptr_t, size_t, int, uintptr_t, uintptr_t);\nint nrecvmsg(int, uintptr_t, int);\nint nsendmsg(int, uintptr_t, int);\nint munmap(uintptr_t, uintptr_t);\nint madvise(uintptr_t, size_t, int);\nint mprotect(uintptr_t, size_t, int);\nint mlock(uintptr_t, size_t);\nint mlockall(int);\nint msync(uintptr_t, size_t, int);\nint munlock(uintptr_t, size_t);\nint munlockall();\nint pipe(uintptr_t);\nint poll(uintptr_t, int, int);\nint gettimeofday(uintptr_t, uintptr_t);\nint time(uintptr_t);\nint utime(uintptr_t, uintptr_t);\nunsigned long long getsystemcfg(int);\nint umount(uintptr_t);\nint getrlimit64(int, uintptr_t);\nint setrlimit64(int, uintptr_t);\nlong long lseek64(int, long long, int);\nuintptr_t mmap(uintptr_t, uintptr_t, int, int, int, long long);\n\n*/\nimport \"C\"\nimport (\n\t\"unsafe\"\n)\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.utimes(C.uintptr_t(_p0), C.uintptr_t(uintptr(unsafe.Pointer(times))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flag int) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.utimensat(C.int(dirfd), C.uintptr_t(_p0), C.uintptr_t(uintptr(unsafe.Pointer(times))), C.int(flag))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getcwd(buf []byte) (err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(buf)\n\tr0, er := C.getcwd(C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, er := C.accept(C.int(s), C.uintptr_t(uintptr(unsafe.Pointer(rsa))), C.uintptr_t(uintptr(unsafe.Pointer(addrlen))))\n\tfd = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirent(fd int, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(buf)\n\tr0, er := C.getdirent(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid Pid_t, err error) {\n\tr0, er := C.wait4(C.int(pid), C.uintptr_t(uintptr(unsafe.Pointer(status))), C.int(options), C.uintptr_t(uintptr(unsafe.Pointer(rusage))))\n\twpid = Pid_t(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\tr0, er := C.ioctl(C.int(fd), C.int(req), C.uintptr_t(arg))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc FcntlInt(fd uintptr, cmd int, arg int) (r int, err error) {\n\tr0, er := C.fcntl(C.uintptr_t(fd), C.int(cmd), C.uintptr_t(arg))\n\tr = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc FcntlFlock(fd uintptr, cmd int, lk *Flock_t) (err error) {\n\tr0, er := C.fcntl(C.uintptr_t(fd), C.int(cmd), C.uintptr_t(uintptr(unsafe.Pointer(lk))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fcntl(fd int, cmd int, arg int) (val int, err error) {\n\tr0, er := C.fcntl(C.uintptr_t(fd), C.int(cmd), C.uintptr_t(arg))\n\tval = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Acct(path string) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.acct(C.uintptr_t(_p0))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.chdir(C.uintptr_t(_p0))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.chroot(C.uintptr_t(_p0))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\tr0, er := C.close(C.int(fd))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(oldfd int) (fd int, err error) {\n\tr0, er := C.dup(C.int(oldfd))\n\tfd = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tC.exit(C.int(code))\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.faccessat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(flags))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\tr0, er := C.fchdir(C.int(fd))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\tr0, er := C.fchmod(C.int(fd), C.uint(mode))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.fchmodat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(flags))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.fchownat(C.int(dirfd), C.uintptr_t(_p0), C.int(uid), C.int(gid), C.int(flags))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fdatasync(fd int) (err error) {\n\tr0, er := C.fdatasync(C.int(fd))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\tr0, er := C.fsync(C.int(fd))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, er := C.getpgid(C.int(pid))\n\tpgid = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pid int) {\n\tr0, _ := C.getpgrp()\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _ := C.getpid()\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _ := C.getppid()\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, er := C.getpriority(C.int(which), C.int(who))\n\tprio = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\tr0, er := C.getrusage(C.int(who), C.uintptr_t(uintptr(unsafe.Pointer(rusage))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, er := C.getsid(C.int(pid))\n\tsid = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, sig Signal) (err error) {\n\tr0, er := C.kill(C.int(pid), C.int(sig))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Klogctl(typ int, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(buf)\n\tr0, er := C.syslog(C.int(typ), C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(dirfd int, path string, mode uint32) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.mkdir(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.mkdirat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.mkfifo(C.uintptr_t(_p0), C.uint(mode))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.mknod(C.uintptr_t(_p0), C.uint(mode), C.int(dev))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.mknodat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(dev))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\tr0, er := C.nanosleep(C.uintptr_t(uintptr(unsafe.Pointer(time))), C.uintptr_t(uintptr(unsafe.Pointer(leftover))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.open64(C.uintptr_t(_p0), C.int(mode), C.uint(perm))\n\tfd = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.openat(C.int(dirfd), C.uintptr_t(_p0), C.int(flags), C.uint(mode))\n\tfd = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(p)\n\tr0, er := C.read(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tvar _p1 *byte\n\tif len(buf) > 0 {\n\t\t_p1 = &buf[0]\n\t}\n\tvar _p2 int\n\t_p2 = len(buf)\n\tr0, er := C.readlink(C.uintptr_t(_p0), C.uintptr_t(uintptr(unsafe.Pointer(_p1))), C.size_t(_p2))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(oldpath)))\n\t_p1 := uintptr(unsafe.Pointer(C.CString(newpath)))\n\tr0, er := C.renameat(C.int(olddirfd), C.uintptr_t(_p0), C.int(newdirfd), C.uintptr_t(_p1))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setdomainname(p []byte) (err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(p)\n\tr0, er := C.setdomainname(C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sethostname(p []byte) (err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(p)\n\tr0, er := C.sethostname(C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\tr0, er := C.setpgid(C.int(pid), C.int(pgid))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, er := C.setsid()\n\tpid = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tv *Timeval) (err error) {\n\tr0, er := C.settimeofday(C.uintptr_t(uintptr(unsafe.Pointer(tv))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\tr0, er := C.setuid(C.int(uid))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(uid int) (err error) {\n\tr0, er := C.setgid(C.int(uid))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\tr0, er := C.setpriority(C.int(which), C.int(who), C.int(prio))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.statx(C.int(dirfd), C.uintptr_t(_p0), C.int(flags), C.int(mask), C.uintptr_t(uintptr(unsafe.Pointer(stat))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() {\n\tC.sync()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Times(tms *Tms) (ticks uintptr, err error) {\n\tr0, er := C.times(C.uintptr_t(uintptr(unsafe.Pointer(tms))))\n\tticks = uintptr(r0)\n\tif uintptr(r0) == ^uintptr(0) && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(mask int) (oldmask int) {\n\tr0, _ := C.umask(C.int(mask))\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Uname(buf *Utsname) (err error) {\n\tr0, er := C.uname(C.uintptr_t(uintptr(unsafe.Pointer(buf))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.unlink(C.uintptr_t(_p0))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.unlinkat(C.int(dirfd), C.uintptr_t(_p0), C.int(flags))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\tr0, er := C.ustat(C.int(dev), C.uintptr_t(uintptr(unsafe.Pointer(ubuf))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(p)\n\tr0, er := C.write(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, p *byte, np int) (n int, err error) {\n\tr0, er := C.read(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(p))), C.size_t(np))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, p *byte, np int) (n int, err error) {\n\tr0, er := C.write(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(p))), C.size_t(np))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(oldfd int, newfd int) (err error) {\n\tr0, er := C.dup2(C.int(oldfd), C.int(newfd))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\tr0, er := C.posix_fadvise64(C.int(fd), C.longlong(offset), C.longlong(length), C.int(advice))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\tr0, er := C.fchown(C.int(fd), C.int(uid), C.int(gid))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat(fd int, stat *Stat_t) (err error) {\n\tr0, er := C.fstat(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(stat))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.fstatat(C.int(dirfd), C.uintptr_t(_p0), C.uintptr_t(uintptr(unsafe.Pointer(stat))), C.int(flags))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\tr0, er := C.fstatfs(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(buf))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\tr0, er := C.ftruncate(C.int(fd), C.longlong(length))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := C.getegid()\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := C.geteuid()\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := C.getgid()\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := C.getuid()\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.lchown(C.uintptr_t(_p0), C.int(uid), C.int(gid))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\tr0, er := C.listen(C.int(s), C.int(n))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc lstat(path string, stat *Stat_t) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.lstat(C.uintptr_t(_p0), C.uintptr_t(uintptr(unsafe.Pointer(stat))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\tr0, er := C.pause()\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(p)\n\tr0, er := C.pread64(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1), C.longlong(offset))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(p)\n\tr0, er := C.pwrite64(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1), C.longlong(offset))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, er := C.c_select(C.int(nfd), C.uintptr_t(uintptr(unsafe.Pointer(r))), C.uintptr_t(uintptr(unsafe.Pointer(w))), C.uintptr_t(uintptr(unsafe.Pointer(e))), C.uintptr_t(uintptr(unsafe.Pointer(timeout))))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tr0, er := C.pselect(C.int(nfd), C.uintptr_t(uintptr(unsafe.Pointer(r))), C.uintptr_t(uintptr(unsafe.Pointer(w))), C.uintptr_t(uintptr(unsafe.Pointer(e))), C.uintptr_t(uintptr(unsafe.Pointer(timeout))), C.uintptr_t(uintptr(unsafe.Pointer(sigmask))))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\tr0, er := C.setregid(C.int(rgid), C.int(egid))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\tr0, er := C.setreuid(C.int(ruid), C.int(euid))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\tr0, er := C.shutdown(C.int(fd), C.int(how))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, er := C.splice(C.int(rfd), C.uintptr_t(uintptr(unsafe.Pointer(roff))), C.int(wfd), C.uintptr_t(uintptr(unsafe.Pointer(woff))), C.int(len), C.int(flags))\n\tn = int64(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc stat(path string, statptr *Stat_t) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.stat(C.uintptr_t(_p0), C.uintptr_t(uintptr(unsafe.Pointer(statptr))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.statfs(C.uintptr_t(_p0), C.uintptr_t(uintptr(unsafe.Pointer(buf))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.truncate(C.uintptr_t(_p0), C.longlong(length))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\tr0, er := C.bind(C.int(s), C.uintptr_t(uintptr(addr)), C.uintptr_t(uintptr(addrlen)))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\tr0, er := C.connect(C.int(s), C.uintptr_t(uintptr(addr)), C.uintptr_t(uintptr(addrlen)))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, er := C.getgroups(C.int(n), C.uintptr_t(uintptr(unsafe.Pointer(list))))\n\tnn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\tr0, er := C.setgroups(C.int(n), C.uintptr_t(uintptr(unsafe.Pointer(list))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\tr0, er := C.getsockopt(C.int(s), C.int(level), C.int(name), C.uintptr_t(uintptr(val)), C.uintptr_t(uintptr(unsafe.Pointer(vallen))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\tr0, er := C.setsockopt(C.int(s), C.int(level), C.int(name), C.uintptr_t(uintptr(val)), C.uintptr_t(vallen))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, er := C.socket(C.int(domain), C.int(typ), C.int(proto))\n\tfd = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\tr0, er := C.socketpair(C.int(domain), C.int(typ), C.int(proto), C.uintptr_t(uintptr(unsafe.Pointer(fd))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\tr0, er := C.getpeername(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(rsa))), C.uintptr_t(uintptr(unsafe.Pointer(addrlen))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\tr0, er := C.getsockname(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(rsa))), C.uintptr_t(uintptr(unsafe.Pointer(addrlen))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(p)\n\tr0, er := C.recvfrom(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1), C.int(flags), C.uintptr_t(uintptr(unsafe.Pointer(from))), C.uintptr_t(uintptr(unsafe.Pointer(fromlen))))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(buf)\n\tr0, er := C.sendto(C.int(s), C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1), C.int(flags), C.uintptr_t(uintptr(to)), C.uintptr_t(uintptr(addrlen)))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, er := C.nrecvmsg(C.int(s), C.uintptr_t(uintptr(unsafe.Pointer(msg))), C.int(flags))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, er := C.nsendmsg(C.int(s), C.uintptr_t(uintptr(unsafe.Pointer(msg))), C.int(flags))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\tr0, er := C.munmap(C.uintptr_t(addr), C.uintptr_t(length))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, advice int) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(b)\n\tr0, er := C.madvise(C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1), C.int(advice))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(b)\n\tr0, er := C.mprotect(C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1), C.int(prot))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(b)\n\tr0, er := C.mlock(C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\tr0, er := C.mlockall(C.int(flags))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(b)\n\tr0, er := C.msync(C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1), C.int(flags))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\tvar _p1 int\n\t_p1 = len(b)\n\tr0, er := C.munlock(C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\tr0, er := C.munlockall()\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe(p *[2]_C_int) (err error) {\n\tr0, er := C.pipe(C.uintptr_t(uintptr(unsafe.Pointer(p))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, er := C.poll(C.uintptr_t(uintptr(unsafe.Pointer(fds))), C.int(nfds), C.int(timeout))\n\tn = int(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc gettimeofday(tv *Timeval, tzp *Timezone) (err error) {\n\tr0, er := C.gettimeofday(C.uintptr_t(uintptr(unsafe.Pointer(tv))), C.uintptr_t(uintptr(unsafe.Pointer(tzp))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tr0, er := C.time(C.uintptr_t(uintptr(unsafe.Pointer(t))))\n\ttt = Time_t(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(path)))\n\tr0, er := C.utime(C.uintptr_t(_p0), C.uintptr_t(uintptr(unsafe.Pointer(buf))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsystemcfg(label int) (n uint64) {\n\tr0, _ := C.getsystemcfg(C.int(label))\n\tn = uint64(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc umount(target string) (err error) {\n\t_p0 := uintptr(unsafe.Pointer(C.CString(target)))\n\tr0, er := C.umount(C.uintptr_t(_p0))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\tr0, er := C.getrlimit64(C.int(resource), C.uintptr_t(uintptr(unsafe.Pointer(rlim))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\tr0, er := C.setrlimit64(C.int(resource), C.uintptr_t(uintptr(unsafe.Pointer(rlim))))\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, er := C.lseek64(C.int(fd), C.longlong(offset), C.int(whence))\n\toff = int64(r0)\n\tif r0 == -1 && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, er := C.mmap(C.uintptr_t(addr), C.uintptr_t(length), C.int(prot), C.int(flags), C.int(fd), C.longlong(offset))\n\txaddr = uintptr(r0)\n\tif uintptr(r0) == ^uintptr(0) && er != nil {\n\t\terr = er\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go",
    "content": "// go run mksyscall_aix_ppc64.go -aix -tags aix,ppc64 syscall_aix.go syscall_aix_ppc64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build aix,ppc64\n\npackage unix\n\nimport (\n\t\"unsafe\"\n)\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callutimes(uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flag int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callutimensat(dirfd, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), flag)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getcwd(buf []byte) (err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\t_, e1 := callgetcwd(uintptr(unsafe.Pointer(_p0)), len(buf))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, e1 := callaccept(s, uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirent(fd int, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr0, e1 := callgetdirent(fd, uintptr(unsafe.Pointer(_p0)), len(buf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid Pid_t, err error) {\n\tr0, e1 := callwait4(int(pid), uintptr(unsafe.Pointer(status)), options, uintptr(unsafe.Pointer(rusage)))\n\twpid = Pid_t(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, e1 := callioctl(fd, int(req), arg)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc FcntlInt(fd uintptr, cmd int, arg int) (r int, err error) {\n\tr0, e1 := callfcntl(fd, cmd, uintptr(arg))\n\tr = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc FcntlFlock(fd uintptr, cmd int, lk *Flock_t) (err error) {\n\t_, e1 := callfcntl(fd, cmd, uintptr(unsafe.Pointer(lk)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fcntl(fd int, cmd int, arg int) (val int, err error) {\n\tr0, e1 := callfcntl(uintptr(fd), cmd, uintptr(arg))\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Acct(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callacct(uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callchdir(uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callchroot(uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, e1 := callclose(fd)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(oldfd int) (fd int, err error) {\n\tr0, e1 := calldup(oldfd)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tcallexit(code)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callfaccessat(dirfd, uintptr(unsafe.Pointer(_p0)), mode, flags)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, e1 := callfchdir(fd)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, e1 := callfchmod(fd, mode)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callfchmodat(dirfd, uintptr(unsafe.Pointer(_p0)), mode, flags)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callfchownat(dirfd, uintptr(unsafe.Pointer(_p0)), uid, gid, flags)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fdatasync(fd int) (err error) {\n\t_, e1 := callfdatasync(fd)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, e1 := callfsync(fd)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, e1 := callgetpgid(pid)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pid int) {\n\tr0, _ := callgetpgrp()\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _ := callgetpid()\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _ := callgetppid()\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, e1 := callgetpriority(which, who)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, e1 := callgetrusage(who, uintptr(unsafe.Pointer(rusage)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, e1 := callgetsid(pid)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, sig Signal) (err error) {\n\t_, e1 := callkill(pid, int(sig))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Klogctl(typ int, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr0, e1 := callsyslog(typ, uintptr(unsafe.Pointer(_p0)), len(buf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callmkdir(dirfd, uintptr(unsafe.Pointer(_p0)), mode)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callmkdirat(dirfd, uintptr(unsafe.Pointer(_p0)), mode)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callmkfifo(uintptr(unsafe.Pointer(_p0)), mode)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callmknod(uintptr(unsafe.Pointer(_p0)), mode, dev)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callmknodat(dirfd, uintptr(unsafe.Pointer(_p0)), mode, dev)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, e1 := callnanosleep(uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, e1 := callopen64(uintptr(unsafe.Pointer(_p0)), mode, perm)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, e1 := callopenat(dirfd, uintptr(unsafe.Pointer(_p0)), flags, mode)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, e1 := callread(fd, uintptr(unsafe.Pointer(_p0)), len(p))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\tif len(buf) > 0 {\n\t\t_p1 = &buf[0]\n\t}\n\tr0, e1 := callreadlink(uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), len(buf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callrenameat(olddirfd, uintptr(unsafe.Pointer(_p0)), newdirfd, uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setdomainname(p []byte) (err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\t_, e1 := callsetdomainname(uintptr(unsafe.Pointer(_p0)), len(p))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sethostname(p []byte) (err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\t_, e1 := callsethostname(uintptr(unsafe.Pointer(_p0)), len(p))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, e1 := callsetpgid(pid, pgid)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, e1 := callsetsid()\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tv *Timeval) (err error) {\n\t_, e1 := callsettimeofday(uintptr(unsafe.Pointer(tv)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, e1 := callsetuid(uid)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(uid int) (err error) {\n\t_, e1 := callsetgid(uid)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, e1 := callsetpriority(which, who, prio)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callstatx(dirfd, uintptr(unsafe.Pointer(_p0)), flags, mask, uintptr(unsafe.Pointer(stat)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() {\n\tcallsync()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Times(tms *Tms) (ticks uintptr, err error) {\n\tr0, e1 := calltimes(uintptr(unsafe.Pointer(tms)))\n\tticks = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(mask int) (oldmask int) {\n\tr0, _ := callumask(mask)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Uname(buf *Utsname) (err error) {\n\t_, e1 := calluname(uintptr(unsafe.Pointer(buf)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callunlink(uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callunlinkat(dirfd, uintptr(unsafe.Pointer(_p0)), flags)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, e1 := callustat(dev, uintptr(unsafe.Pointer(ubuf)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, e1 := callwrite(fd, uintptr(unsafe.Pointer(_p0)), len(p))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, p *byte, np int) (n int, err error) {\n\tr0, e1 := callread(fd, uintptr(unsafe.Pointer(p)), np)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, p *byte, np int) (n int, err error) {\n\tr0, e1 := callwrite(fd, uintptr(unsafe.Pointer(p)), np)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(oldfd int, newfd int) (err error) {\n\t_, e1 := calldup2(oldfd, newfd)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, e1 := callposix_fadvise64(fd, offset, length, advice)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, e1 := callfchown(fd, uid, gid)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat(fd int, stat *Stat_t) (err error) {\n\t_, e1 := callfstat(fd, uintptr(unsafe.Pointer(stat)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callfstatat(dirfd, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), flags)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, e1 := callfstatfs(fd, uintptr(unsafe.Pointer(buf)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, e1 := callftruncate(fd, length)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := callgetegid()\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := callgeteuid()\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := callgetgid()\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := callgetuid()\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := calllchown(uintptr(unsafe.Pointer(_p0)), uid, gid)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, e1 := calllisten(s, n)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := calllstat(uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, e1 := callpause()\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, e1 := callpread64(fd, uintptr(unsafe.Pointer(_p0)), len(p), offset)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, e1 := callpwrite64(fd, uintptr(unsafe.Pointer(_p0)), len(p), offset)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, e1 := callselect(nfd, uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tr0, e1 := callpselect(nfd, uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), uintptr(unsafe.Pointer(sigmask)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, e1 := callsetregid(rgid, egid)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, e1 := callsetreuid(ruid, euid)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, e1 := callshutdown(fd, how)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, e1 := callsplice(rfd, uintptr(unsafe.Pointer(roff)), wfd, uintptr(unsafe.Pointer(woff)), len, flags)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc stat(path string, statptr *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callstat(uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(statptr)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callstatfs(uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := calltruncate(uintptr(unsafe.Pointer(_p0)), length)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, e1 := callbind(s, uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, e1 := callconnect(s, uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, e1 := callgetgroups(n, uintptr(unsafe.Pointer(list)))\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, e1 := callsetgroups(n, uintptr(unsafe.Pointer(list)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, e1 := callgetsockopt(s, level, name, uintptr(val), uintptr(unsafe.Pointer(vallen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, e1 := callsetsockopt(s, level, name, uintptr(val), vallen)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, e1 := callsocket(domain, typ, proto)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, e1 := callsocketpair(domain, typ, proto, uintptr(unsafe.Pointer(fd)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, e1 := callgetpeername(fd, uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, e1 := callgetsockname(fd, uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, e1 := callrecvfrom(fd, uintptr(unsafe.Pointer(_p0)), len(p), flags, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\t_, e1 := callsendto(s, uintptr(unsafe.Pointer(_p0)), len(buf), flags, uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, e1 := callnrecvmsg(s, uintptr(unsafe.Pointer(msg)), flags)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, e1 := callnsendmsg(s, uintptr(unsafe.Pointer(msg)), flags)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, e1 := callmunmap(addr, length)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, advice int) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, e1 := callmadvise(uintptr(unsafe.Pointer(_p0)), len(b), advice)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, e1 := callmprotect(uintptr(unsafe.Pointer(_p0)), len(b), prot)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, e1 := callmlock(uintptr(unsafe.Pointer(_p0)), len(b))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, e1 := callmlockall(flags)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, e1 := callmsync(uintptr(unsafe.Pointer(_p0)), len(b), flags)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, e1 := callmunlock(uintptr(unsafe.Pointer(_p0)), len(b))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, e1 := callmunlockall()\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe(p *[2]_C_int) (err error) {\n\t_, e1 := callpipe(uintptr(unsafe.Pointer(p)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, e1 := callpoll(uintptr(unsafe.Pointer(fds)), nfds, timeout)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc gettimeofday(tv *Timeval, tzp *Timezone) (err error) {\n\t_, e1 := callgettimeofday(uintptr(unsafe.Pointer(tv)), uintptr(unsafe.Pointer(tzp)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tr0, e1 := calltime(uintptr(unsafe.Pointer(t)))\n\ttt = Time_t(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callutime(uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsystemcfg(label int) (n uint64) {\n\tr0, _ := callgetsystemcfg(label)\n\tn = uint64(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc umount(target string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(target)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, e1 := callumount(uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, e1 := callgetrlimit(resource, uintptr(unsafe.Pointer(rlim)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, e1 := callsetrlimit(resource, uintptr(unsafe.Pointer(rlim)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, e1 := calllseek(fd, offset, whence)\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, e1 := callmmap64(addr, length, prot, flags, fd, offset)\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go",
    "content": "// go run mksyscall_aix_ppc64.go -aix -tags aix,ppc64 syscall_aix.go syscall_aix_ppc64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build aix,ppc64\n// +build !gccgo\n\npackage unix\n\nimport (\n\t\"unsafe\"\n)\n\n//go:cgo_import_dynamic libc_utimes utimes \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_utimensat utimensat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getcwd getcwd \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_accept accept \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getdirent getdirent \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_wait4 wait4 \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_ioctl ioctl \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fcntl fcntl \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_acct acct \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_chdir chdir \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_chroot chroot \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_close close \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_dup dup \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_exit exit \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_faccessat faccessat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fchdir fchdir \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fchmod fchmod \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fchmodat fchmodat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fchownat fchownat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fdatasync fdatasync \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fsync fsync \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getpgid getpgid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getpgrp getpgrp \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getpid getpid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getppid getppid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getpriority getpriority \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getrusage getrusage \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getsid getsid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_kill kill \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_syslog syslog \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_mkdir mkdir \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_mkdirat mkdirat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_mkfifo mkfifo \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_mknod mknod \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_mknodat mknodat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_nanosleep nanosleep \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_open64 open64 \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_openat openat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_read read \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_readlink readlink \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_renameat renameat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setdomainname setdomainname \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_sethostname sethostname \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setpgid setpgid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setsid setsid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_settimeofday settimeofday \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setuid setuid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setgid setgid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setpriority setpriority \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_statx statx \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_sync sync \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_times times \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_umask umask \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_uname uname \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_unlink unlink \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_unlinkat unlinkat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_ustat ustat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_write write \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_dup2 dup2 \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_posix_fadvise64 posix_fadvise64 \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fchown fchown \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fstat fstat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fstatat fstatat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_fstatfs fstatfs \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_ftruncate ftruncate \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getegid getegid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_geteuid geteuid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getgid getgid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getuid getuid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_lchown lchown \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_listen listen \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_lstat lstat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_pause pause \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_pread64 pread64 \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_pwrite64 pwrite64 \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_select select \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_pselect pselect \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setregid setregid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setreuid setreuid \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_shutdown shutdown \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_splice splice \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_stat stat \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_statfs statfs \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_truncate truncate \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_bind bind \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_connect connect \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getgroups getgroups \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setgroups setgroups \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getsockopt getsockopt \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setsockopt setsockopt \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_socket socket \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_socketpair socketpair \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getpeername getpeername \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getsockname getsockname \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_recvfrom recvfrom \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_sendto sendto \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_nrecvmsg nrecvmsg \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_nsendmsg nsendmsg \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_munmap munmap \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_madvise madvise \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_mprotect mprotect \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_mlock mlock \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_mlockall mlockall \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_msync msync \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_munlock munlock \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_munlockall munlockall \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_pipe pipe \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_poll poll \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_gettimeofday gettimeofday \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_time time \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_utime utime \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getsystemcfg getsystemcfg \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_umount umount \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_getrlimit getrlimit \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_setrlimit setrlimit \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_lseek lseek \"libc.a/shr_64.o\"\n//go:cgo_import_dynamic libc_mmap64 mmap64 \"libc.a/shr_64.o\"\n\n//go:linkname libc_utimes libc_utimes\n//go:linkname libc_utimensat libc_utimensat\n//go:linkname libc_getcwd libc_getcwd\n//go:linkname libc_accept libc_accept\n//go:linkname libc_getdirent libc_getdirent\n//go:linkname libc_wait4 libc_wait4\n//go:linkname libc_ioctl libc_ioctl\n//go:linkname libc_fcntl libc_fcntl\n//go:linkname libc_acct libc_acct\n//go:linkname libc_chdir libc_chdir\n//go:linkname libc_chroot libc_chroot\n//go:linkname libc_close libc_close\n//go:linkname libc_dup libc_dup\n//go:linkname libc_exit libc_exit\n//go:linkname libc_faccessat libc_faccessat\n//go:linkname libc_fchdir libc_fchdir\n//go:linkname libc_fchmod libc_fchmod\n//go:linkname libc_fchmodat libc_fchmodat\n//go:linkname libc_fchownat libc_fchownat\n//go:linkname libc_fdatasync libc_fdatasync\n//go:linkname libc_fsync libc_fsync\n//go:linkname libc_getpgid libc_getpgid\n//go:linkname libc_getpgrp libc_getpgrp\n//go:linkname libc_getpid libc_getpid\n//go:linkname libc_getppid libc_getppid\n//go:linkname libc_getpriority libc_getpriority\n//go:linkname libc_getrusage libc_getrusage\n//go:linkname libc_getsid libc_getsid\n//go:linkname libc_kill libc_kill\n//go:linkname libc_syslog libc_syslog\n//go:linkname libc_mkdir libc_mkdir\n//go:linkname libc_mkdirat libc_mkdirat\n//go:linkname libc_mkfifo libc_mkfifo\n//go:linkname libc_mknod libc_mknod\n//go:linkname libc_mknodat libc_mknodat\n//go:linkname libc_nanosleep libc_nanosleep\n//go:linkname libc_open64 libc_open64\n//go:linkname libc_openat libc_openat\n//go:linkname libc_read libc_read\n//go:linkname libc_readlink libc_readlink\n//go:linkname libc_renameat libc_renameat\n//go:linkname libc_setdomainname libc_setdomainname\n//go:linkname libc_sethostname libc_sethostname\n//go:linkname libc_setpgid libc_setpgid\n//go:linkname libc_setsid libc_setsid\n//go:linkname libc_settimeofday libc_settimeofday\n//go:linkname libc_setuid libc_setuid\n//go:linkname libc_setgid libc_setgid\n//go:linkname libc_setpriority libc_setpriority\n//go:linkname libc_statx libc_statx\n//go:linkname libc_sync libc_sync\n//go:linkname libc_times libc_times\n//go:linkname libc_umask libc_umask\n//go:linkname libc_uname libc_uname\n//go:linkname libc_unlink libc_unlink\n//go:linkname libc_unlinkat libc_unlinkat\n//go:linkname libc_ustat libc_ustat\n//go:linkname libc_write libc_write\n//go:linkname libc_dup2 libc_dup2\n//go:linkname libc_posix_fadvise64 libc_posix_fadvise64\n//go:linkname libc_fchown libc_fchown\n//go:linkname libc_fstat libc_fstat\n//go:linkname libc_fstatat libc_fstatat\n//go:linkname libc_fstatfs libc_fstatfs\n//go:linkname libc_ftruncate libc_ftruncate\n//go:linkname libc_getegid libc_getegid\n//go:linkname libc_geteuid libc_geteuid\n//go:linkname libc_getgid libc_getgid\n//go:linkname libc_getuid libc_getuid\n//go:linkname libc_lchown libc_lchown\n//go:linkname libc_listen libc_listen\n//go:linkname libc_lstat libc_lstat\n//go:linkname libc_pause libc_pause\n//go:linkname libc_pread64 libc_pread64\n//go:linkname libc_pwrite64 libc_pwrite64\n//go:linkname libc_select libc_select\n//go:linkname libc_pselect libc_pselect\n//go:linkname libc_setregid libc_setregid\n//go:linkname libc_setreuid libc_setreuid\n//go:linkname libc_shutdown libc_shutdown\n//go:linkname libc_splice libc_splice\n//go:linkname libc_stat libc_stat\n//go:linkname libc_statfs libc_statfs\n//go:linkname libc_truncate libc_truncate\n//go:linkname libc_bind libc_bind\n//go:linkname libc_connect libc_connect\n//go:linkname libc_getgroups libc_getgroups\n//go:linkname libc_setgroups libc_setgroups\n//go:linkname libc_getsockopt libc_getsockopt\n//go:linkname libc_setsockopt libc_setsockopt\n//go:linkname libc_socket libc_socket\n//go:linkname libc_socketpair libc_socketpair\n//go:linkname libc_getpeername libc_getpeername\n//go:linkname libc_getsockname libc_getsockname\n//go:linkname libc_recvfrom libc_recvfrom\n//go:linkname libc_sendto libc_sendto\n//go:linkname libc_nrecvmsg libc_nrecvmsg\n//go:linkname libc_nsendmsg libc_nsendmsg\n//go:linkname libc_munmap libc_munmap\n//go:linkname libc_madvise libc_madvise\n//go:linkname libc_mprotect libc_mprotect\n//go:linkname libc_mlock libc_mlock\n//go:linkname libc_mlockall libc_mlockall\n//go:linkname libc_msync libc_msync\n//go:linkname libc_munlock libc_munlock\n//go:linkname libc_munlockall libc_munlockall\n//go:linkname libc_pipe libc_pipe\n//go:linkname libc_poll libc_poll\n//go:linkname libc_gettimeofday libc_gettimeofday\n//go:linkname libc_time libc_time\n//go:linkname libc_utime libc_utime\n//go:linkname libc_getsystemcfg libc_getsystemcfg\n//go:linkname libc_umount libc_umount\n//go:linkname libc_getrlimit libc_getrlimit\n//go:linkname libc_setrlimit libc_setrlimit\n//go:linkname libc_lseek libc_lseek\n//go:linkname libc_mmap64 libc_mmap64\n\ntype syscallFunc uintptr\n\nvar (\n\tlibc_utimes,\n\tlibc_utimensat,\n\tlibc_getcwd,\n\tlibc_accept,\n\tlibc_getdirent,\n\tlibc_wait4,\n\tlibc_ioctl,\n\tlibc_fcntl,\n\tlibc_acct,\n\tlibc_chdir,\n\tlibc_chroot,\n\tlibc_close,\n\tlibc_dup,\n\tlibc_exit,\n\tlibc_faccessat,\n\tlibc_fchdir,\n\tlibc_fchmod,\n\tlibc_fchmodat,\n\tlibc_fchownat,\n\tlibc_fdatasync,\n\tlibc_fsync,\n\tlibc_getpgid,\n\tlibc_getpgrp,\n\tlibc_getpid,\n\tlibc_getppid,\n\tlibc_getpriority,\n\tlibc_getrusage,\n\tlibc_getsid,\n\tlibc_kill,\n\tlibc_syslog,\n\tlibc_mkdir,\n\tlibc_mkdirat,\n\tlibc_mkfifo,\n\tlibc_mknod,\n\tlibc_mknodat,\n\tlibc_nanosleep,\n\tlibc_open64,\n\tlibc_openat,\n\tlibc_read,\n\tlibc_readlink,\n\tlibc_renameat,\n\tlibc_setdomainname,\n\tlibc_sethostname,\n\tlibc_setpgid,\n\tlibc_setsid,\n\tlibc_settimeofday,\n\tlibc_setuid,\n\tlibc_setgid,\n\tlibc_setpriority,\n\tlibc_statx,\n\tlibc_sync,\n\tlibc_times,\n\tlibc_umask,\n\tlibc_uname,\n\tlibc_unlink,\n\tlibc_unlinkat,\n\tlibc_ustat,\n\tlibc_write,\n\tlibc_dup2,\n\tlibc_posix_fadvise64,\n\tlibc_fchown,\n\tlibc_fstat,\n\tlibc_fstatat,\n\tlibc_fstatfs,\n\tlibc_ftruncate,\n\tlibc_getegid,\n\tlibc_geteuid,\n\tlibc_getgid,\n\tlibc_getuid,\n\tlibc_lchown,\n\tlibc_listen,\n\tlibc_lstat,\n\tlibc_pause,\n\tlibc_pread64,\n\tlibc_pwrite64,\n\tlibc_select,\n\tlibc_pselect,\n\tlibc_setregid,\n\tlibc_setreuid,\n\tlibc_shutdown,\n\tlibc_splice,\n\tlibc_stat,\n\tlibc_statfs,\n\tlibc_truncate,\n\tlibc_bind,\n\tlibc_connect,\n\tlibc_getgroups,\n\tlibc_setgroups,\n\tlibc_getsockopt,\n\tlibc_setsockopt,\n\tlibc_socket,\n\tlibc_socketpair,\n\tlibc_getpeername,\n\tlibc_getsockname,\n\tlibc_recvfrom,\n\tlibc_sendto,\n\tlibc_nrecvmsg,\n\tlibc_nsendmsg,\n\tlibc_munmap,\n\tlibc_madvise,\n\tlibc_mprotect,\n\tlibc_mlock,\n\tlibc_mlockall,\n\tlibc_msync,\n\tlibc_munlock,\n\tlibc_munlockall,\n\tlibc_pipe,\n\tlibc_poll,\n\tlibc_gettimeofday,\n\tlibc_time,\n\tlibc_utime,\n\tlibc_getsystemcfg,\n\tlibc_umount,\n\tlibc_getrlimit,\n\tlibc_setrlimit,\n\tlibc_lseek,\n\tlibc_mmap64 syscallFunc\n)\n\n// Implemented in runtime/syscall_aix.go.\nfunc rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)\nfunc syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callutimes(_p0 uintptr, times uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_utimes)), 2, _p0, times, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callutimensat(dirfd int, _p0 uintptr, times uintptr, flag int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_utimensat)), 4, uintptr(dirfd), _p0, times, uintptr(flag), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetcwd(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getcwd)), 2, _p0, uintptr(_lenp0), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callaccept(s int, rsa uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_accept)), 3, uintptr(s), rsa, addrlen, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetdirent(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getdirent)), 3, uintptr(fd), _p0, uintptr(_lenp0), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callwait4(pid int, status uintptr, options int, rusage uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_wait4)), 4, uintptr(pid), status, uintptr(options), rusage, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callioctl(fd int, req int, arg uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_ioctl)), 3, uintptr(fd), uintptr(req), arg, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfcntl(fd uintptr, cmd int, arg uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fcntl)), 3, fd, uintptr(cmd), arg, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callacct(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_acct)), 1, _p0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callchdir(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_chdir)), 1, _p0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callchroot(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_chroot)), 1, _p0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callclose(fd int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_close)), 1, uintptr(fd), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calldup(oldfd int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_dup)), 1, uintptr(oldfd), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callexit(code int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_exit)), 1, uintptr(code), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfaccessat(dirfd int, _p0 uintptr, mode uint32, flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_faccessat)), 4, uintptr(dirfd), _p0, uintptr(mode), uintptr(flags), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchdir(fd int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fchdir)), 1, uintptr(fd), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchmod(fd int, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fchmod)), 2, uintptr(fd), uintptr(mode), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchmodat(dirfd int, _p0 uintptr, mode uint32, flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fchmodat)), 4, uintptr(dirfd), _p0, uintptr(mode), uintptr(flags), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchownat(dirfd int, _p0 uintptr, uid int, gid int, flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fchownat)), 5, uintptr(dirfd), _p0, uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfdatasync(fd int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fdatasync)), 1, uintptr(fd), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfsync(fd int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fsync)), 1, uintptr(fd), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpgid(pid int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getpgid)), 1, uintptr(pid), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpgrp() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getpgrp)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpid() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getpid)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetppid() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getppid)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpriority(which int, who int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getpriority)), 2, uintptr(which), uintptr(who), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetrusage(who int, rusage uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getrusage)), 2, uintptr(who), rusage, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetsid(pid int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getsid)), 1, uintptr(pid), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callkill(pid int, sig int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_kill)), 2, uintptr(pid), uintptr(sig), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsyslog(typ int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_syslog)), 3, uintptr(typ), _p0, uintptr(_lenp0), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmkdir(dirfd int, _p0 uintptr, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_mkdir)), 3, uintptr(dirfd), _p0, uintptr(mode), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmkdirat(dirfd int, _p0 uintptr, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_mkdirat)), 3, uintptr(dirfd), _p0, uintptr(mode), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmkfifo(_p0 uintptr, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_mkfifo)), 2, _p0, uintptr(mode), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmknod(_p0 uintptr, mode uint32, dev int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_mknod)), 3, _p0, uintptr(mode), uintptr(dev), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmknodat(dirfd int, _p0 uintptr, mode uint32, dev int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_mknodat)), 4, uintptr(dirfd), _p0, uintptr(mode), uintptr(dev), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callnanosleep(time uintptr, leftover uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_nanosleep)), 2, time, leftover, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callopen64(_p0 uintptr, mode int, perm uint32) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_open64)), 3, _p0, uintptr(mode), uintptr(perm), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callopenat(dirfd int, _p0 uintptr, flags int, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_openat)), 4, uintptr(dirfd), _p0, uintptr(flags), uintptr(mode), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callread(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_read)), 3, uintptr(fd), _p0, uintptr(_lenp0), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callreadlink(_p0 uintptr, _p1 uintptr, _lenp1 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_readlink)), 3, _p0, _p1, uintptr(_lenp1), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callrenameat(olddirfd int, _p0 uintptr, newdirfd int, _p1 uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_renameat)), 4, uintptr(olddirfd), _p0, uintptr(newdirfd), _p1, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetdomainname(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_setdomainname)), 2, _p0, uintptr(_lenp0), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsethostname(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_sethostname)), 2, _p0, uintptr(_lenp0), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetpgid(pid int, pgid int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_setpgid)), 2, uintptr(pid), uintptr(pgid), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetsid() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_setsid)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsettimeofday(tv uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_settimeofday)), 1, tv, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetuid(uid int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_setuid)), 1, uintptr(uid), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetgid(uid int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_setgid)), 1, uintptr(uid), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetpriority(which int, who int, prio int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_setpriority)), 3, uintptr(which), uintptr(who), uintptr(prio), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callstatx(dirfd int, _p0 uintptr, flags int, mask int, stat uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_statx)), 5, uintptr(dirfd), _p0, uintptr(flags), uintptr(mask), stat, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsync() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_sync)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calltimes(tms uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_times)), 1, tms, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callumask(mask int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_umask)), 1, uintptr(mask), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calluname(buf uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_uname)), 1, buf, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callunlink(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_unlink)), 1, _p0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callunlinkat(dirfd int, _p0 uintptr, flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_unlinkat)), 3, uintptr(dirfd), _p0, uintptr(flags), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callustat(dev int, ubuf uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_ustat)), 2, uintptr(dev), ubuf, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callwrite(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_write)), 3, uintptr(fd), _p0, uintptr(_lenp0), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calldup2(oldfd int, newfd int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_dup2)), 2, uintptr(oldfd), uintptr(newfd), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callposix_fadvise64(fd int, offset int64, length int64, advice int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_posix_fadvise64)), 4, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchown(fd int, uid int, gid int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fchown)), 3, uintptr(fd), uintptr(uid), uintptr(gid), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfstat(fd int, stat uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fstat)), 2, uintptr(fd), stat, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfstatat(dirfd int, _p0 uintptr, stat uintptr, flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fstatat)), 4, uintptr(dirfd), _p0, stat, uintptr(flags), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfstatfs(fd int, buf uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_fstatfs)), 2, uintptr(fd), buf, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callftruncate(fd int, length int64) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_ftruncate)), 2, uintptr(fd), uintptr(length), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetegid() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getegid)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgeteuid() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_geteuid)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetgid() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getgid)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetuid() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getuid)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calllchown(_p0 uintptr, uid int, gid int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_lchown)), 3, _p0, uintptr(uid), uintptr(gid), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calllisten(s int, n int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_listen)), 2, uintptr(s), uintptr(n), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calllstat(_p0 uintptr, stat uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_lstat)), 2, _p0, stat, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpause() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_pause)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpread64(fd int, _p0 uintptr, _lenp0 int, offset int64) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_pread64)), 4, uintptr(fd), _p0, uintptr(_lenp0), uintptr(offset), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpwrite64(fd int, _p0 uintptr, _lenp0 int, offset int64) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_pwrite64)), 4, uintptr(fd), _p0, uintptr(_lenp0), uintptr(offset), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callselect(nfd int, r uintptr, w uintptr, e uintptr, timeout uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_select)), 5, uintptr(nfd), r, w, e, timeout, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpselect(nfd int, r uintptr, w uintptr, e uintptr, timeout uintptr, sigmask uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_pselect)), 6, uintptr(nfd), r, w, e, timeout, sigmask)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetregid(rgid int, egid int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_setregid)), 2, uintptr(rgid), uintptr(egid), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetreuid(ruid int, euid int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_setreuid)), 2, uintptr(ruid), uintptr(euid), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callshutdown(fd int, how int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_shutdown)), 2, uintptr(fd), uintptr(how), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsplice(rfd int, roff uintptr, wfd int, woff uintptr, len int, flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_splice)), 6, uintptr(rfd), roff, uintptr(wfd), woff, uintptr(len), uintptr(flags))\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callstat(_p0 uintptr, statptr uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_stat)), 2, _p0, statptr, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callstatfs(_p0 uintptr, buf uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_statfs)), 2, _p0, buf, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calltruncate(_p0 uintptr, length int64) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_truncate)), 2, _p0, uintptr(length), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callbind(s int, addr uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_bind)), 3, uintptr(s), addr, addrlen, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callconnect(s int, addr uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_connect)), 3, uintptr(s), addr, addrlen, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetgroups(n int, list uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getgroups)), 2, uintptr(n), list, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetgroups(n int, list uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_setgroups)), 2, uintptr(n), list, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetsockopt(s int, level int, name int, val uintptr, vallen uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getsockopt)), 5, uintptr(s), uintptr(level), uintptr(name), val, vallen, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetsockopt(s int, level int, name int, val uintptr, vallen uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_setsockopt)), 5, uintptr(s), uintptr(level), uintptr(name), val, vallen, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsocket(domain int, typ int, proto int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_socket)), 3, uintptr(domain), uintptr(typ), uintptr(proto), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsocketpair(domain int, typ int, proto int, fd uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_socketpair)), 4, uintptr(domain), uintptr(typ), uintptr(proto), fd, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpeername(fd int, rsa uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getpeername)), 3, uintptr(fd), rsa, addrlen, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetsockname(fd int, rsa uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getsockname)), 3, uintptr(fd), rsa, addrlen, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callrecvfrom(fd int, _p0 uintptr, _lenp0 int, flags int, from uintptr, fromlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_recvfrom)), 6, uintptr(fd), _p0, uintptr(_lenp0), uintptr(flags), from, fromlen)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsendto(s int, _p0 uintptr, _lenp0 int, flags int, to uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_sendto)), 6, uintptr(s), _p0, uintptr(_lenp0), uintptr(flags), to, addrlen)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callnrecvmsg(s int, msg uintptr, flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_nrecvmsg)), 3, uintptr(s), msg, uintptr(flags), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callnsendmsg(s int, msg uintptr, flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_nsendmsg)), 3, uintptr(s), msg, uintptr(flags), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmunmap(addr uintptr, length uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_munmap)), 2, addr, length, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmadvise(_p0 uintptr, _lenp0 int, advice int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_madvise)), 3, _p0, uintptr(_lenp0), uintptr(advice), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmprotect(_p0 uintptr, _lenp0 int, prot int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_mprotect)), 3, _p0, uintptr(_lenp0), uintptr(prot), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmlock(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_mlock)), 2, _p0, uintptr(_lenp0), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmlockall(flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_mlockall)), 1, uintptr(flags), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmsync(_p0 uintptr, _lenp0 int, flags int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_msync)), 3, _p0, uintptr(_lenp0), uintptr(flags), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmunlock(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_munlock)), 2, _p0, uintptr(_lenp0), 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmunlockall() (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_munlockall)), 0, 0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpipe(p uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_pipe)), 1, p, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpoll(fds uintptr, nfds int, timeout int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_poll)), 3, fds, uintptr(nfds), uintptr(timeout), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgettimeofday(tv uintptr, tzp uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_gettimeofday)), 2, tv, tzp, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calltime(t uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_time)), 1, t, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callutime(_p0 uintptr, buf uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_utime)), 2, _p0, buf, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetsystemcfg(label int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getsystemcfg)), 1, uintptr(label), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callumount(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_umount)), 1, _p0, 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetrlimit(resource int, rlim uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_getrlimit)), 2, uintptr(resource), rlim, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetrlimit(resource int, rlim uintptr) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = rawSyscall6(uintptr(unsafe.Pointer(&libc_setrlimit)), 2, uintptr(resource), rlim, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calllseek(fd int, offset int64, whence int) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_lseek)), 3, uintptr(fd), uintptr(offset), uintptr(whence), 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmmap64(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (r1 uintptr, e1 Errno) {\n\tr1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_mmap64)), 6, addr, length, uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go",
    "content": "// go run mksyscall_aix_ppc64.go -aix -tags aix,ppc64 syscall_aix.go syscall_aix_ppc64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build aix,ppc64\n// +build gccgo\n\npackage unix\n\n/*\n#include <stdint.h>\nint utimes(uintptr_t, uintptr_t);\nint utimensat(int, uintptr_t, uintptr_t, int);\nint getcwd(uintptr_t, size_t);\nint accept(int, uintptr_t, uintptr_t);\nint getdirent(int, uintptr_t, size_t);\nint wait4(int, uintptr_t, int, uintptr_t);\nint ioctl(int, int, uintptr_t);\nint fcntl(uintptr_t, int, uintptr_t);\nint acct(uintptr_t);\nint chdir(uintptr_t);\nint chroot(uintptr_t);\nint close(int);\nint dup(int);\nvoid exit(int);\nint faccessat(int, uintptr_t, unsigned int, int);\nint fchdir(int);\nint fchmod(int, unsigned int);\nint fchmodat(int, uintptr_t, unsigned int, int);\nint fchownat(int, uintptr_t, int, int, int);\nint fdatasync(int);\nint fsync(int);\nint getpgid(int);\nint getpgrp();\nint getpid();\nint getppid();\nint getpriority(int, int);\nint getrusage(int, uintptr_t);\nint getsid(int);\nint kill(int, int);\nint syslog(int, uintptr_t, size_t);\nint mkdir(int, uintptr_t, unsigned int);\nint mkdirat(int, uintptr_t, unsigned int);\nint mkfifo(uintptr_t, unsigned int);\nint mknod(uintptr_t, unsigned int, int);\nint mknodat(int, uintptr_t, unsigned int, int);\nint nanosleep(uintptr_t, uintptr_t);\nint open64(uintptr_t, int, unsigned int);\nint openat(int, uintptr_t, int, unsigned int);\nint read(int, uintptr_t, size_t);\nint readlink(uintptr_t, uintptr_t, size_t);\nint renameat(int, uintptr_t, int, uintptr_t);\nint setdomainname(uintptr_t, size_t);\nint sethostname(uintptr_t, size_t);\nint setpgid(int, int);\nint setsid();\nint settimeofday(uintptr_t);\nint setuid(int);\nint setgid(int);\nint setpriority(int, int, int);\nint statx(int, uintptr_t, int, int, uintptr_t);\nint sync();\nuintptr_t times(uintptr_t);\nint umask(int);\nint uname(uintptr_t);\nint unlink(uintptr_t);\nint unlinkat(int, uintptr_t, int);\nint ustat(int, uintptr_t);\nint write(int, uintptr_t, size_t);\nint dup2(int, int);\nint posix_fadvise64(int, long long, long long, int);\nint fchown(int, int, int);\nint fstat(int, uintptr_t);\nint fstatat(int, uintptr_t, uintptr_t, int);\nint fstatfs(int, uintptr_t);\nint ftruncate(int, long long);\nint getegid();\nint geteuid();\nint getgid();\nint getuid();\nint lchown(uintptr_t, int, int);\nint listen(int, int);\nint lstat(uintptr_t, uintptr_t);\nint pause();\nint pread64(int, uintptr_t, size_t, long long);\nint pwrite64(int, uintptr_t, size_t, long long);\n#define c_select select\nint select(int, uintptr_t, uintptr_t, uintptr_t, uintptr_t);\nint pselect(int, uintptr_t, uintptr_t, uintptr_t, uintptr_t, uintptr_t);\nint setregid(int, int);\nint setreuid(int, int);\nint shutdown(int, int);\nlong long splice(int, uintptr_t, int, uintptr_t, int, int);\nint stat(uintptr_t, uintptr_t);\nint statfs(uintptr_t, uintptr_t);\nint truncate(uintptr_t, long long);\nint bind(int, uintptr_t, uintptr_t);\nint connect(int, uintptr_t, uintptr_t);\nint getgroups(int, uintptr_t);\nint setgroups(int, uintptr_t);\nint getsockopt(int, int, int, uintptr_t, uintptr_t);\nint setsockopt(int, int, int, uintptr_t, uintptr_t);\nint socket(int, int, int);\nint socketpair(int, int, int, uintptr_t);\nint getpeername(int, uintptr_t, uintptr_t);\nint getsockname(int, uintptr_t, uintptr_t);\nint recvfrom(int, uintptr_t, size_t, int, uintptr_t, uintptr_t);\nint sendto(int, uintptr_t, size_t, int, uintptr_t, uintptr_t);\nint nrecvmsg(int, uintptr_t, int);\nint nsendmsg(int, uintptr_t, int);\nint munmap(uintptr_t, uintptr_t);\nint madvise(uintptr_t, size_t, int);\nint mprotect(uintptr_t, size_t, int);\nint mlock(uintptr_t, size_t);\nint mlockall(int);\nint msync(uintptr_t, size_t, int);\nint munlock(uintptr_t, size_t);\nint munlockall();\nint pipe(uintptr_t);\nint poll(uintptr_t, int, int);\nint gettimeofday(uintptr_t, uintptr_t);\nint time(uintptr_t);\nint utime(uintptr_t, uintptr_t);\nunsigned long long getsystemcfg(int);\nint umount(uintptr_t);\nint getrlimit(int, uintptr_t);\nint setrlimit(int, uintptr_t);\nlong long lseek(int, long long, int);\nuintptr_t mmap64(uintptr_t, uintptr_t, int, int, int, long long);\n\n*/\nimport \"C\"\nimport (\n\t\"syscall\"\n)\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callutimes(_p0 uintptr, times uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.utimes(C.uintptr_t(_p0), C.uintptr_t(times)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callutimensat(dirfd int, _p0 uintptr, times uintptr, flag int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.utimensat(C.int(dirfd), C.uintptr_t(_p0), C.uintptr_t(times), C.int(flag)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetcwd(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getcwd(C.uintptr_t(_p0), C.size_t(_lenp0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callaccept(s int, rsa uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.accept(C.int(s), C.uintptr_t(rsa), C.uintptr_t(addrlen)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetdirent(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getdirent(C.int(fd), C.uintptr_t(_p0), C.size_t(_lenp0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callwait4(pid int, status uintptr, options int, rusage uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.wait4(C.int(pid), C.uintptr_t(status), C.int(options), C.uintptr_t(rusage)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callioctl(fd int, req int, arg uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.ioctl(C.int(fd), C.int(req), C.uintptr_t(arg)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfcntl(fd uintptr, cmd int, arg uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fcntl(C.uintptr_t(fd), C.int(cmd), C.uintptr_t(arg)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callacct(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.acct(C.uintptr_t(_p0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callchdir(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.chdir(C.uintptr_t(_p0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callchroot(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.chroot(C.uintptr_t(_p0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callclose(fd int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.close(C.int(fd)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calldup(oldfd int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.dup(C.int(oldfd)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callexit(code int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.exit(C.int(code)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfaccessat(dirfd int, _p0 uintptr, mode uint32, flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.faccessat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchdir(fd int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fchdir(C.int(fd)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchmod(fd int, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fchmod(C.int(fd), C.uint(mode)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchmodat(dirfd int, _p0 uintptr, mode uint32, flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fchmodat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchownat(dirfd int, _p0 uintptr, uid int, gid int, flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fchownat(C.int(dirfd), C.uintptr_t(_p0), C.int(uid), C.int(gid), C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfdatasync(fd int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fdatasync(C.int(fd)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfsync(fd int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fsync(C.int(fd)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpgid(pid int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getpgid(C.int(pid)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpgrp() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getpgrp())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpid() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getpid())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetppid() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getppid())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpriority(which int, who int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getpriority(C.int(which), C.int(who)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetrusage(who int, rusage uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getrusage(C.int(who), C.uintptr_t(rusage)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetsid(pid int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getsid(C.int(pid)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callkill(pid int, sig int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.kill(C.int(pid), C.int(sig)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsyslog(typ int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.syslog(C.int(typ), C.uintptr_t(_p0), C.size_t(_lenp0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmkdir(dirfd int, _p0 uintptr, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.mkdir(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmkdirat(dirfd int, _p0 uintptr, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.mkdirat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmkfifo(_p0 uintptr, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.mkfifo(C.uintptr_t(_p0), C.uint(mode)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmknod(_p0 uintptr, mode uint32, dev int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.mknod(C.uintptr_t(_p0), C.uint(mode), C.int(dev)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmknodat(dirfd int, _p0 uintptr, mode uint32, dev int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.mknodat(C.int(dirfd), C.uintptr_t(_p0), C.uint(mode), C.int(dev)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callnanosleep(time uintptr, leftover uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.nanosleep(C.uintptr_t(time), C.uintptr_t(leftover)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callopen64(_p0 uintptr, mode int, perm uint32) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.open64(C.uintptr_t(_p0), C.int(mode), C.uint(perm)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callopenat(dirfd int, _p0 uintptr, flags int, mode uint32) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.openat(C.int(dirfd), C.uintptr_t(_p0), C.int(flags), C.uint(mode)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callread(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.read(C.int(fd), C.uintptr_t(_p0), C.size_t(_lenp0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callreadlink(_p0 uintptr, _p1 uintptr, _lenp1 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.readlink(C.uintptr_t(_p0), C.uintptr_t(_p1), C.size_t(_lenp1)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callrenameat(olddirfd int, _p0 uintptr, newdirfd int, _p1 uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.renameat(C.int(olddirfd), C.uintptr_t(_p0), C.int(newdirfd), C.uintptr_t(_p1)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetdomainname(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setdomainname(C.uintptr_t(_p0), C.size_t(_lenp0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsethostname(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.sethostname(C.uintptr_t(_p0), C.size_t(_lenp0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetpgid(pid int, pgid int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setpgid(C.int(pid), C.int(pgid)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetsid() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setsid())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsettimeofday(tv uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.settimeofday(C.uintptr_t(tv)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetuid(uid int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setuid(C.int(uid)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetgid(uid int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setgid(C.int(uid)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetpriority(which int, who int, prio int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setpriority(C.int(which), C.int(who), C.int(prio)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callstatx(dirfd int, _p0 uintptr, flags int, mask int, stat uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.statx(C.int(dirfd), C.uintptr_t(_p0), C.int(flags), C.int(mask), C.uintptr_t(stat)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsync() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.sync())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calltimes(tms uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.times(C.uintptr_t(tms)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callumask(mask int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.umask(C.int(mask)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calluname(buf uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.uname(C.uintptr_t(buf)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callunlink(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.unlink(C.uintptr_t(_p0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callunlinkat(dirfd int, _p0 uintptr, flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.unlinkat(C.int(dirfd), C.uintptr_t(_p0), C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callustat(dev int, ubuf uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.ustat(C.int(dev), C.uintptr_t(ubuf)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callwrite(fd int, _p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.write(C.int(fd), C.uintptr_t(_p0), C.size_t(_lenp0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calldup2(oldfd int, newfd int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.dup2(C.int(oldfd), C.int(newfd)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callposix_fadvise64(fd int, offset int64, length int64, advice int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.posix_fadvise64(C.int(fd), C.longlong(offset), C.longlong(length), C.int(advice)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfchown(fd int, uid int, gid int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fchown(C.int(fd), C.int(uid), C.int(gid)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfstat(fd int, stat uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fstat(C.int(fd), C.uintptr_t(stat)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfstatat(dirfd int, _p0 uintptr, stat uintptr, flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fstatat(C.int(dirfd), C.uintptr_t(_p0), C.uintptr_t(stat), C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callfstatfs(fd int, buf uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.fstatfs(C.int(fd), C.uintptr_t(buf)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callftruncate(fd int, length int64) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.ftruncate(C.int(fd), C.longlong(length)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetegid() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getegid())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgeteuid() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.geteuid())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetgid() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getgid())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetuid() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getuid())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calllchown(_p0 uintptr, uid int, gid int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.lchown(C.uintptr_t(_p0), C.int(uid), C.int(gid)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calllisten(s int, n int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.listen(C.int(s), C.int(n)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calllstat(_p0 uintptr, stat uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.lstat(C.uintptr_t(_p0), C.uintptr_t(stat)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpause() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.pause())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpread64(fd int, _p0 uintptr, _lenp0 int, offset int64) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.pread64(C.int(fd), C.uintptr_t(_p0), C.size_t(_lenp0), C.longlong(offset)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpwrite64(fd int, _p0 uintptr, _lenp0 int, offset int64) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.pwrite64(C.int(fd), C.uintptr_t(_p0), C.size_t(_lenp0), C.longlong(offset)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callselect(nfd int, r uintptr, w uintptr, e uintptr, timeout uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.c_select(C.int(nfd), C.uintptr_t(r), C.uintptr_t(w), C.uintptr_t(e), C.uintptr_t(timeout)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpselect(nfd int, r uintptr, w uintptr, e uintptr, timeout uintptr, sigmask uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.pselect(C.int(nfd), C.uintptr_t(r), C.uintptr_t(w), C.uintptr_t(e), C.uintptr_t(timeout), C.uintptr_t(sigmask)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetregid(rgid int, egid int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setregid(C.int(rgid), C.int(egid)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetreuid(ruid int, euid int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setreuid(C.int(ruid), C.int(euid)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callshutdown(fd int, how int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.shutdown(C.int(fd), C.int(how)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsplice(rfd int, roff uintptr, wfd int, woff uintptr, len int, flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.splice(C.int(rfd), C.uintptr_t(roff), C.int(wfd), C.uintptr_t(woff), C.int(len), C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callstat(_p0 uintptr, statptr uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.stat(C.uintptr_t(_p0), C.uintptr_t(statptr)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callstatfs(_p0 uintptr, buf uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.statfs(C.uintptr_t(_p0), C.uintptr_t(buf)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calltruncate(_p0 uintptr, length int64) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.truncate(C.uintptr_t(_p0), C.longlong(length)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callbind(s int, addr uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.bind(C.int(s), C.uintptr_t(addr), C.uintptr_t(addrlen)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callconnect(s int, addr uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.connect(C.int(s), C.uintptr_t(addr), C.uintptr_t(addrlen)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetgroups(n int, list uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getgroups(C.int(n), C.uintptr_t(list)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetgroups(n int, list uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setgroups(C.int(n), C.uintptr_t(list)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetsockopt(s int, level int, name int, val uintptr, vallen uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getsockopt(C.int(s), C.int(level), C.int(name), C.uintptr_t(val), C.uintptr_t(vallen)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetsockopt(s int, level int, name int, val uintptr, vallen uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setsockopt(C.int(s), C.int(level), C.int(name), C.uintptr_t(val), C.uintptr_t(vallen)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsocket(domain int, typ int, proto int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.socket(C.int(domain), C.int(typ), C.int(proto)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsocketpair(domain int, typ int, proto int, fd uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.socketpair(C.int(domain), C.int(typ), C.int(proto), C.uintptr_t(fd)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetpeername(fd int, rsa uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getpeername(C.int(fd), C.uintptr_t(rsa), C.uintptr_t(addrlen)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetsockname(fd int, rsa uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getsockname(C.int(fd), C.uintptr_t(rsa), C.uintptr_t(addrlen)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callrecvfrom(fd int, _p0 uintptr, _lenp0 int, flags int, from uintptr, fromlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.recvfrom(C.int(fd), C.uintptr_t(_p0), C.size_t(_lenp0), C.int(flags), C.uintptr_t(from), C.uintptr_t(fromlen)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsendto(s int, _p0 uintptr, _lenp0 int, flags int, to uintptr, addrlen uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.sendto(C.int(s), C.uintptr_t(_p0), C.size_t(_lenp0), C.int(flags), C.uintptr_t(to), C.uintptr_t(addrlen)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callnrecvmsg(s int, msg uintptr, flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.nrecvmsg(C.int(s), C.uintptr_t(msg), C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callnsendmsg(s int, msg uintptr, flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.nsendmsg(C.int(s), C.uintptr_t(msg), C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmunmap(addr uintptr, length uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.munmap(C.uintptr_t(addr), C.uintptr_t(length)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmadvise(_p0 uintptr, _lenp0 int, advice int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.madvise(C.uintptr_t(_p0), C.size_t(_lenp0), C.int(advice)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmprotect(_p0 uintptr, _lenp0 int, prot int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.mprotect(C.uintptr_t(_p0), C.size_t(_lenp0), C.int(prot)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmlock(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.mlock(C.uintptr_t(_p0), C.size_t(_lenp0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmlockall(flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.mlockall(C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmsync(_p0 uintptr, _lenp0 int, flags int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.msync(C.uintptr_t(_p0), C.size_t(_lenp0), C.int(flags)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmunlock(_p0 uintptr, _lenp0 int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.munlock(C.uintptr_t(_p0), C.size_t(_lenp0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmunlockall() (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.munlockall())\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpipe(p uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.pipe(C.uintptr_t(p)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callpoll(fds uintptr, nfds int, timeout int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.poll(C.uintptr_t(fds), C.int(nfds), C.int(timeout)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgettimeofday(tv uintptr, tzp uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.gettimeofday(C.uintptr_t(tv), C.uintptr_t(tzp)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calltime(t uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.time(C.uintptr_t(t)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callutime(_p0 uintptr, buf uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.utime(C.uintptr_t(_p0), C.uintptr_t(buf)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetsystemcfg(label int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getsystemcfg(C.int(label)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callumount(_p0 uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.umount(C.uintptr_t(_p0)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callgetrlimit(resource int, rlim uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.getrlimit(C.int(resource), C.uintptr_t(rlim)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callsetrlimit(resource int, rlim uintptr) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.setrlimit(C.int(resource), C.uintptr_t(rlim)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc calllseek(fd int, offset int64, whence int) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.lseek(C.int(fd), C.longlong(offset), C.int(whence)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc callmmap64(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (r1 uintptr, e1 Errno) {\n\tr1 = uintptr(C.mmap64(C.uintptr_t(addr), C.uintptr_t(length), C.int(prot), C.int(flags), C.int(fd), C.longlong(offset)))\n\te1 = syscall.GetErrno()\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.go",
    "content": "// go run mksyscall.go -l32 -tags darwin,386,go1.13 syscall_darwin.1_13.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build darwin,386,go1.13\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc closedir(dir uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_closedir_trampoline), uintptr(dir), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_closedir_trampoline()\n\n//go:linkname libc_closedir libc_closedir\n//go:cgo_import_dynamic libc_closedir closedir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_readdir_r_trampoline), uintptr(dir), uintptr(unsafe.Pointer(entry)), uintptr(unsafe.Pointer(result)))\n\tres = Errno(r0)\n\treturn\n}\n\nfunc libc_readdir_r_trampoline()\n\n//go:linkname libc_readdir_r libc_readdir_r\n//go:cgo_import_dynamic libc_readdir_r readdir_r \"/usr/lib/libSystem.B.dylib\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.s",
    "content": "// go run mkasm_darwin.go 386\n// Code generated by the command above; DO NOT EDIT.\n\n// +build go1.13\n\n#include \"textflag.h\"\nTEXT ·libc_fdopendir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fdopendir(SB)\nTEXT ·libc_closedir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_closedir(SB)\nTEXT ·libc_readdir_r_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readdir_r(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go",
    "content": "// go run mksyscall.go -l32 -tags darwin,386,go1.12 syscall_bsd.go syscall_darwin.go syscall_darwin_386.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build darwin,386,go1.12\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getgroups_trampoline()\n\n//go:linkname libc_getgroups libc_getgroups\n//go:cgo_import_dynamic libc_getgroups getgroups \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setgroups_trampoline()\n\n//go:linkname libc_setgroups libc_setgroups\n//go:cgo_import_dynamic libc_setgroups setgroups \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_wait4_trampoline), uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_wait4_trampoline()\n\n//go:linkname libc_wait4 libc_wait4\n//go:cgo_import_dynamic libc_wait4 wait4 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_accept_trampoline), uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_accept_trampoline()\n\n//go:linkname libc_accept libc_accept\n//go:cgo_import_dynamic libc_accept accept \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_bind_trampoline()\n\n//go:linkname libc_bind libc_bind\n//go:cgo_import_dynamic libc_bind bind \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_connect_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_connect_trampoline()\n\n//go:linkname libc_connect libc_connect\n//go:cgo_import_dynamic libc_connect connect \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_socket_trampoline), uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_socket_trampoline()\n\n//go:linkname libc_socket libc_socket\n//go:cgo_import_dynamic libc_socket socket \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_getsockopt_trampoline), uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsockopt_trampoline()\n\n//go:linkname libc_getsockopt libc_getsockopt\n//go:cgo_import_dynamic libc_getsockopt getsockopt \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setsockopt_trampoline), uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setsockopt_trampoline()\n\n//go:linkname libc_setsockopt libc_setsockopt\n//go:cgo_import_dynamic libc_setsockopt setsockopt \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getpeername_trampoline), uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpeername_trampoline()\n\n//go:linkname libc_getpeername libc_getpeername\n//go:cgo_import_dynamic libc_getpeername getpeername \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getsockname_trampoline), uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsockname_trampoline()\n\n//go:linkname libc_getsockname libc_getsockname\n//go:cgo_import_dynamic libc_getsockname getsockname \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_shutdown_trampoline), uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_shutdown_trampoline()\n\n//go:linkname libc_shutdown libc_shutdown\n//go:cgo_import_dynamic libc_shutdown shutdown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := syscall_rawSyscall6(funcPC(libc_socketpair_trampoline), uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_socketpair_trampoline()\n\n//go:linkname libc_socketpair libc_socketpair\n//go:cgo_import_dynamic libc_socketpair socketpair \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_recvfrom_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_recvfrom_trampoline()\n\n//go:linkname libc_recvfrom libc_recvfrom\n//go:cgo_import_dynamic libc_recvfrom recvfrom \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sendto_trampoline), uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendto_trampoline()\n\n//go:linkname libc_sendto libc_sendto\n//go:cgo_import_dynamic libc_sendto sendto \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_recvmsg_trampoline), uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_recvmsg_trampoline()\n\n//go:linkname libc_recvmsg libc_recvmsg\n//go:cgo_import_dynamic libc_recvmsg recvmsg \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_sendmsg_trampoline), uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendmsg_trampoline()\n\n//go:linkname libc_sendmsg libc_sendmsg\n//go:cgo_import_dynamic libc_sendmsg sendmsg \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_kevent_trampoline), uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kevent_trampoline()\n\n//go:linkname libc_kevent libc_kevent\n//go:cgo_import_dynamic libc_kevent kevent \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_utimes_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_utimes_trampoline()\n\n//go:linkname libc_utimes libc_utimes\n//go:cgo_import_dynamic libc_utimes utimes \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_futimes_trampoline), uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_futimes_trampoline()\n\n//go:linkname libc_futimes libc_futimes\n//go:cgo_import_dynamic libc_futimes futimes \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_poll_trampoline), uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_poll_trampoline()\n\n//go:linkname libc_poll libc_poll\n//go:cgo_import_dynamic libc_poll poll \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_madvise_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_madvise_trampoline()\n\n//go:linkname libc_madvise libc_madvise\n//go:cgo_import_dynamic libc_madvise madvise \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mlock_trampoline), uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mlock_trampoline()\n\n//go:linkname libc_mlock libc_mlock\n//go:cgo_import_dynamic libc_mlock mlock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_mlockall_trampoline), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mlockall_trampoline()\n\n//go:linkname libc_mlockall libc_mlockall\n//go:cgo_import_dynamic libc_mlockall mlockall \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mprotect_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mprotect_trampoline()\n\n//go:linkname libc_mprotect libc_mprotect\n//go:cgo_import_dynamic libc_mprotect mprotect \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_msync_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_msync_trampoline()\n\n//go:linkname libc_msync libc_msync\n//go:cgo_import_dynamic libc_msync msync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_munlock_trampoline), uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munlock_trampoline()\n\n//go:linkname libc_munlock libc_munlock\n//go:cgo_import_dynamic libc_munlock munlock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_munlockall_trampoline), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munlockall_trampoline()\n\n//go:linkname libc_munlockall libc_munlockall\n//go:cgo_import_dynamic libc_munlockall munlockall \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (r int, w int, err error) {\n\tr0, r1, e1 := syscall_rawSyscall(funcPC(libc_pipe_trampoline), 0, 0, 0)\n\tr = int(r0)\n\tw = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pipe_trampoline()\n\n//go:linkname libc_pipe libc_pipe\n//go:cgo_import_dynamic libc_pipe pipe \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getxattr(path string, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_getxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getxattr_trampoline()\n\n//go:linkname libc_getxattr libc_getxattr\n//go:cgo_import_dynamic libc_getxattr getxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_fgetxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fgetxattr_trampoline()\n\n//go:linkname libc_fgetxattr libc_fgetxattr\n//go:cgo_import_dynamic libc_fgetxattr fgetxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setxattr(path string, attr string, data *byte, size int, position uint32, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(data)), uintptr(size), uintptr(position), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setxattr_trampoline()\n\n//go:linkname libc_setxattr libc_setxattr\n//go:cgo_import_dynamic libc_setxattr setxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fsetxattr(fd int, attr string, data *byte, size int, position uint32, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fsetxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(data)), uintptr(size), uintptr(position), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fsetxattr_trampoline()\n\n//go:linkname libc_fsetxattr libc_fsetxattr\n//go:cgo_import_dynamic libc_fsetxattr fsetxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc removexattr(path string, attr string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_removexattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_removexattr_trampoline()\n\n//go:linkname libc_removexattr libc_removexattr\n//go:cgo_import_dynamic libc_removexattr removexattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fremovexattr(fd int, attr string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_fremovexattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fremovexattr_trampoline()\n\n//go:linkname libc_fremovexattr libc_fremovexattr\n//go:cgo_import_dynamic libc_fremovexattr fremovexattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc listxattr(path string, dest *byte, size int, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_listxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(options), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_listxattr_trampoline()\n\n//go:linkname libc_listxattr libc_listxattr\n//go:cgo_import_dynamic libc_listxattr listxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc flistxattr(fd int, dest *byte, size int, options int) (sz int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_flistxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(options), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_flistxattr_trampoline()\n\n//go:linkname libc_flistxattr libc_flistxattr\n//go:cgo_import_dynamic libc_flistxattr flistxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, size uintptr, options int) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setattrlist_trampoline), uintptr(unsafe.Pointer(path)), uintptr(list), uintptr(buf), uintptr(size), uintptr(options), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setattrlist_trampoline()\n\n//go:linkname libc_setattrlist libc_setattrlist\n//go:cgo_import_dynamic libc_setattrlist setattrlist \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fcntl(fd int, cmd int, arg int) (val int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_fcntl_trampoline), uintptr(fd), uintptr(cmd), uintptr(arg))\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fcntl_trampoline()\n\n//go:linkname libc_fcntl libc_fcntl\n//go:cgo_import_dynamic libc_fcntl fcntl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kill(pid int, signum int, posix int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_kill_trampoline), uintptr(pid), uintptr(signum), uintptr(posix))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kill_trampoline()\n\n//go:linkname libc_kill libc_kill\n//go:cgo_import_dynamic libc_kill kill \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_ioctl_trampoline), uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ioctl_trampoline()\n\n//go:linkname libc_ioctl libc_ioctl\n//go:cgo_import_dynamic libc_ioctl ioctl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sysctl_trampoline), uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sysctl_trampoline()\n\n//go:linkname libc_sysctl libc_sysctl\n//go:cgo_import_dynamic libc_sysctl sysctl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe.Pointer, flags int) (err error) {\n\t_, _, e1 := syscall_syscall9(funcPC(libc_sendfile_trampoline), uintptr(infd), uintptr(outfd), uintptr(offset), uintptr(offset>>32), uintptr(unsafe.Pointer(len)), uintptr(hdtr), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendfile_trampoline()\n\n//go:linkname libc_sendfile libc_sendfile\n//go:cgo_import_dynamic libc_sendfile sendfile \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_access_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_access_trampoline()\n\n//go:linkname libc_access libc_access\n//go:cgo_import_dynamic libc_access access \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_adjtime_trampoline), uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_adjtime_trampoline()\n\n//go:linkname libc_adjtime libc_adjtime\n//go:cgo_import_dynamic libc_adjtime adjtime \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chdir_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chdir_trampoline()\n\n//go:linkname libc_chdir libc_chdir\n//go:cgo_import_dynamic libc_chdir chdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chflags_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chflags_trampoline()\n\n//go:linkname libc_chflags libc_chflags\n//go:cgo_import_dynamic libc_chflags chflags \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chmod_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chmod_trampoline()\n\n//go:linkname libc_chmod libc_chmod\n//go:cgo_import_dynamic libc_chmod chmod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chown_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chown_trampoline()\n\n//go:linkname libc_chown libc_chown\n//go:cgo_import_dynamic libc_chown chown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chroot_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chroot_trampoline()\n\n//go:linkname libc_chroot libc_chroot\n//go:cgo_import_dynamic libc_chroot chroot \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ClockGettime(clockid int32, time *Timespec) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_clock_gettime_trampoline), uintptr(clockid), uintptr(unsafe.Pointer(time)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clock_gettime_trampoline()\n\n//go:linkname libc_clock_gettime libc_clock_gettime\n//go:cgo_import_dynamic libc_clock_gettime clock_gettime \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_close_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_close_trampoline()\n\n//go:linkname libc_close libc_close\n//go:cgo_import_dynamic libc_close close \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Clonefile(src string, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(src)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_clonefile_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clonefile_trampoline()\n\n//go:linkname libc_clonefile libc_clonefile\n//go:cgo_import_dynamic libc_clonefile clonefile \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Clonefileat(srcDirfd int, src string, dstDirfd int, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(src)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_clonefileat_trampoline), uintptr(srcDirfd), uintptr(unsafe.Pointer(_p0)), uintptr(dstDirfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clonefileat_trampoline()\n\n//go:linkname libc_clonefileat libc_clonefileat\n//go:cgo_import_dynamic libc_clonefileat clonefileat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_dup_trampoline), uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_dup_trampoline()\n\n//go:linkname libc_dup libc_dup\n//go:cgo_import_dynamic libc_dup dup \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_dup2_trampoline), uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_dup2_trampoline()\n\n//go:linkname libc_dup2 libc_dup2\n//go:cgo_import_dynamic libc_dup2 dup2 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exchangedata(path1 string, path2 string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path1)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(path2)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_exchangedata_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_exchangedata_trampoline()\n\n//go:linkname libc_exchangedata libc_exchangedata\n//go:cgo_import_dynamic libc_exchangedata exchangedata \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tsyscall_syscall(funcPC(libc_exit_trampoline), uintptr(code), 0, 0)\n\treturn\n}\n\nfunc libc_exit_trampoline()\n\n//go:linkname libc_exit libc_exit\n//go:cgo_import_dynamic libc_exit exit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_faccessat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_faccessat_trampoline()\n\n//go:linkname libc_faccessat libc_faccessat\n//go:cgo_import_dynamic libc_faccessat faccessat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchdir_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchdir_trampoline()\n\n//go:linkname libc_fchdir libc_fchdir\n//go:cgo_import_dynamic libc_fchdir fchdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchflags_trampoline), uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchflags_trampoline()\n\n//go:linkname libc_fchflags libc_fchflags\n//go:cgo_import_dynamic libc_fchflags fchflags \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchmod_trampoline), uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchmod_trampoline()\n\n//go:linkname libc_fchmod libc_fchmod\n//go:cgo_import_dynamic libc_fchmod fchmod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fchmodat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchmodat_trampoline()\n\n//go:linkname libc_fchmodat libc_fchmodat\n//go:cgo_import_dynamic libc_fchmodat fchmodat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchown_trampoline), uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchown_trampoline()\n\n//go:linkname libc_fchown libc_fchown\n//go:cgo_import_dynamic libc_fchown fchown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fchownat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchownat_trampoline()\n\n//go:linkname libc_fchownat libc_fchownat\n//go:cgo_import_dynamic libc_fchownat fchownat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fclonefileat(srcDirfd int, dstDirfd int, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fclonefileat_trampoline), uintptr(srcDirfd), uintptr(dstDirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fclonefileat_trampoline()\n\n//go:linkname libc_fclonefileat libc_fclonefileat\n//go:cgo_import_dynamic libc_fclonefileat fclonefileat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_flock_trampoline), uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_flock_trampoline()\n\n//go:linkname libc_flock libc_flock\n//go:cgo_import_dynamic libc_flock flock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_fpathconf_trampoline), uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fpathconf_trampoline()\n\n//go:linkname libc_fpathconf libc_fpathconf\n//go:cgo_import_dynamic libc_fpathconf fpathconf \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fsync_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fsync_trampoline()\n\n//go:linkname libc_fsync libc_fsync\n//go:cgo_import_dynamic libc_fsync fsync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_ftruncate_trampoline), uintptr(fd), uintptr(length), uintptr(length>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ftruncate_trampoline()\n\n//go:linkname libc_ftruncate libc_ftruncate\n//go:cgo_import_dynamic libc_ftruncate ftruncate \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getcwd_trampoline), uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getcwd_trampoline()\n\n//go:linkname libc_getcwd libc_getcwd\n//go:cgo_import_dynamic libc_getcwd getcwd \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdtablesize() (size int) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_getdtablesize_trampoline), 0, 0, 0)\n\tsize = int(r0)\n\treturn\n}\n\nfunc libc_getdtablesize_trampoline()\n\n//go:linkname libc_getdtablesize libc_getdtablesize\n//go:cgo_import_dynamic libc_getdtablesize getdtablesize \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getegid_trampoline), 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\nfunc libc_getegid_trampoline()\n\n//go:linkname libc_getegid libc_getegid\n//go:cgo_import_dynamic libc_getegid getegid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_geteuid_trampoline), 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\nfunc libc_geteuid_trampoline()\n\n//go:linkname libc_geteuid libc_geteuid\n//go:cgo_import_dynamic libc_geteuid geteuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getgid_trampoline), 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\nfunc libc_getgid_trampoline()\n\n//go:linkname libc_getgid libc_getgid\n//go:cgo_import_dynamic libc_getgid getgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getpgid_trampoline), uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpgid_trampoline()\n\n//go:linkname libc_getpgid libc_getpgid\n//go:cgo_import_dynamic libc_getpgid getpgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getpgrp_trampoline), 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\nfunc libc_getpgrp_trampoline()\n\n//go:linkname libc_getpgrp libc_getpgrp\n//go:cgo_import_dynamic libc_getpgrp getpgrp \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getpid_trampoline), 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\nfunc libc_getpid_trampoline()\n\n//go:linkname libc_getpid libc_getpid\n//go:cgo_import_dynamic libc_getpid getpid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getppid_trampoline), 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\nfunc libc_getppid_trampoline()\n\n//go:linkname libc_getppid libc_getppid\n//go:cgo_import_dynamic libc_getppid getppid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getpriority_trampoline), uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpriority_trampoline()\n\n//go:linkname libc_getpriority libc_getpriority\n//go:cgo_import_dynamic libc_getpriority getpriority \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getrlimit_trampoline()\n\n//go:linkname libc_getrlimit libc_getrlimit\n//go:cgo_import_dynamic libc_getrlimit getrlimit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getrusage_trampoline), uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getrusage_trampoline()\n\n//go:linkname libc_getrusage libc_getrusage\n//go:cgo_import_dynamic libc_getrusage getrusage \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getsid_trampoline), uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsid_trampoline()\n\n//go:linkname libc_getsid libc_getsid\n//go:cgo_import_dynamic libc_getsid getsid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_gettimeofday_trampoline), uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_gettimeofday_trampoline()\n\n//go:linkname libc_gettimeofday libc_gettimeofday\n//go:cgo_import_dynamic libc_gettimeofday gettimeofday \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getuid_trampoline), 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\nfunc libc_getuid_trampoline()\n\n//go:linkname libc_getuid libc_getuid\n//go:cgo_import_dynamic libc_getuid getuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_issetugid_trampoline), 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\nfunc libc_issetugid_trampoline()\n\n//go:linkname libc_issetugid libc_issetugid\n//go:cgo_import_dynamic libc_issetugid issetugid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_kqueue_trampoline), 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kqueue_trampoline()\n\n//go:linkname libc_kqueue libc_kqueue\n//go:cgo_import_dynamic libc_kqueue kqueue \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_lchown_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lchown_trampoline()\n\n//go:linkname libc_lchown libc_lchown\n//go:cgo_import_dynamic libc_lchown lchown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_link_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_link_trampoline()\n\n//go:linkname libc_link libc_link\n//go:cgo_import_dynamic libc_link link \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_linkat_trampoline), uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_linkat_trampoline()\n\n//go:linkname libc_linkat libc_linkat\n//go:cgo_import_dynamic libc_linkat linkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_listen_trampoline), uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_listen_trampoline()\n\n//go:linkname libc_listen libc_listen\n//go:cgo_import_dynamic libc_listen listen \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkdir_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkdir_trampoline()\n\n//go:linkname libc_mkdir libc_mkdir\n//go:cgo_import_dynamic libc_mkdir mkdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkdirat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkdirat_trampoline()\n\n//go:linkname libc_mkdirat libc_mkdirat\n//go:cgo_import_dynamic libc_mkdirat mkdirat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkfifo_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkfifo_trampoline()\n\n//go:linkname libc_mkfifo libc_mkfifo\n//go:cgo_import_dynamic libc_mkfifo mkfifo \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mknod_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mknod_trampoline()\n\n//go:linkname libc_mknod libc_mknod\n//go:cgo_import_dynamic libc_mknod mknod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_open_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_open_trampoline()\n\n//go:linkname libc_open libc_open\n//go:cgo_import_dynamic libc_open open \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_openat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_openat_trampoline()\n\n//go:linkname libc_openat libc_openat\n//go:cgo_import_dynamic libc_openat openat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_pathconf_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pathconf_trampoline()\n\n//go:linkname libc_pathconf libc_pathconf\n//go:cgo_import_dynamic libc_pathconf pathconf \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_pread_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), uintptr(offset>>32), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pread_trampoline()\n\n//go:linkname libc_pread libc_pread\n//go:cgo_import_dynamic libc_pread pread \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_pwrite_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), uintptr(offset>>32), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pwrite_trampoline()\n\n//go:linkname libc_pwrite libc_pwrite\n//go:cgo_import_dynamic libc_pwrite pwrite \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_read_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_read_trampoline()\n\n//go:linkname libc_read libc_read\n//go:cgo_import_dynamic libc_read read \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_readlink_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_readlink_trampoline()\n\n//go:linkname libc_readlink libc_readlink\n//go:cgo_import_dynamic libc_readlink readlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_readlinkat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_readlinkat_trampoline()\n\n//go:linkname libc_readlinkat libc_readlinkat\n//go:cgo_import_dynamic libc_readlinkat readlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_rename_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_rename_trampoline()\n\n//go:linkname libc_rename libc_rename\n//go:cgo_import_dynamic libc_rename rename \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_renameat_trampoline), uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_renameat_trampoline()\n\n//go:linkname libc_renameat libc_renameat\n//go:cgo_import_dynamic libc_renameat renameat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_revoke_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_revoke_trampoline()\n\n//go:linkname libc_revoke libc_revoke\n//go:cgo_import_dynamic libc_revoke revoke \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_rmdir_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_rmdir_trampoline()\n\n//go:linkname libc_rmdir libc_rmdir\n//go:cgo_import_dynamic libc_rmdir rmdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, r1, e1 := syscall_syscall6(funcPC(libc_lseek_trampoline), uintptr(fd), uintptr(offset), uintptr(offset>>32), uintptr(whence), 0, 0)\n\tnewoffset = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lseek_trampoline()\n\n//go:linkname libc_lseek libc_lseek\n//go:cgo_import_dynamic libc_lseek lseek \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_select_trampoline), uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_select_trampoline()\n\n//go:linkname libc_select libc_select\n//go:cgo_import_dynamic libc_select select \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setegid_trampoline), uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setegid_trampoline()\n\n//go:linkname libc_setegid libc_setegid\n//go:cgo_import_dynamic libc_setegid setegid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_seteuid_trampoline), uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_seteuid_trampoline()\n\n//go:linkname libc_seteuid libc_seteuid\n//go:cgo_import_dynamic libc_seteuid seteuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setgid_trampoline), uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setgid_trampoline()\n\n//go:linkname libc_setgid libc_setgid\n//go:cgo_import_dynamic libc_setgid setgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_setlogin_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setlogin_trampoline()\n\n//go:linkname libc_setlogin libc_setlogin\n//go:cgo_import_dynamic libc_setlogin setlogin \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setpgid_trampoline), uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setpgid_trampoline()\n\n//go:linkname libc_setpgid libc_setpgid\n//go:cgo_import_dynamic libc_setpgid setpgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setpriority_trampoline), uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setpriority_trampoline()\n\n//go:linkname libc_setpriority libc_setpriority\n//go:cgo_import_dynamic libc_setpriority setpriority \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setprivexec(flag int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setprivexec_trampoline), uintptr(flag), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setprivexec_trampoline()\n\n//go:linkname libc_setprivexec libc_setprivexec\n//go:cgo_import_dynamic libc_setprivexec setprivexec \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setregid_trampoline), uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setregid_trampoline()\n\n//go:linkname libc_setregid libc_setregid\n//go:cgo_import_dynamic libc_setregid setregid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setreuid_trampoline), uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setreuid_trampoline()\n\n//go:linkname libc_setreuid libc_setreuid\n//go:cgo_import_dynamic libc_setreuid setreuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setrlimit_trampoline()\n\n//go:linkname libc_setrlimit libc_setrlimit\n//go:cgo_import_dynamic libc_setrlimit setrlimit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_setsid_trampoline), 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setsid_trampoline()\n\n//go:linkname libc_setsid libc_setsid\n//go:cgo_import_dynamic libc_setsid setsid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_settimeofday_trampoline), uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_settimeofday_trampoline()\n\n//go:linkname libc_settimeofday libc_settimeofday\n//go:cgo_import_dynamic libc_settimeofday settimeofday \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setuid_trampoline), uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setuid_trampoline()\n\n//go:linkname libc_setuid libc_setuid\n//go:cgo_import_dynamic libc_setuid setuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_symlink_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_symlink_trampoline()\n\n//go:linkname libc_symlink libc_symlink\n//go:cgo_import_dynamic libc_symlink symlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_symlinkat_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_symlinkat_trampoline()\n\n//go:linkname libc_symlinkat libc_symlinkat\n//go:cgo_import_dynamic libc_symlinkat symlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_sync_trampoline), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sync_trampoline()\n\n//go:linkname libc_sync libc_sync\n//go:cgo_import_dynamic libc_sync sync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_truncate_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(length), uintptr(length>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_truncate_trampoline()\n\n//go:linkname libc_truncate libc_truncate\n//go:cgo_import_dynamic libc_truncate truncate \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_umask_trampoline), uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\nfunc libc_umask_trampoline()\n\n//go:linkname libc_umask libc_umask\n//go:cgo_import_dynamic libc_umask umask \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Undelete(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_undelete_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_undelete_trampoline()\n\n//go:linkname libc_undelete libc_undelete\n//go:cgo_import_dynamic libc_undelete undelete \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unlink_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unlink_trampoline()\n\n//go:linkname libc_unlink libc_unlink\n//go:cgo_import_dynamic libc_unlink unlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unlinkat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unlinkat_trampoline()\n\n//go:linkname libc_unlinkat libc_unlinkat\n//go:cgo_import_dynamic libc_unlinkat unlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unmount_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unmount_trampoline()\n\n//go:linkname libc_unmount libc_unmount\n//go:cgo_import_dynamic libc_unmount unmount \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_write_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_write_trampoline()\n\n//go:linkname libc_write libc_write\n//go:cgo_import_dynamic libc_write write \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := syscall_syscall9(funcPC(libc_mmap_trampoline), uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos), uintptr(pos>>32), 0, 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mmap_trampoline()\n\n//go:linkname libc_mmap libc_mmap\n//go:cgo_import_dynamic libc_mmap mmap \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_munmap_trampoline), uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munmap_trampoline()\n\n//go:linkname libc_munmap libc_munmap\n//go:cgo_import_dynamic libc_munmap munmap \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_read_trampoline), uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_write_trampoline), uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_ptrace_trampoline), uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ptrace_trampoline()\n\n//go:linkname libc_ptrace libc_ptrace\n//go:cgo_import_dynamic libc_ptrace ptrace \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fstat64_trampoline), uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstat64_trampoline()\n\n//go:linkname libc_fstat64 libc_fstat64\n//go:cgo_import_dynamic libc_fstat64 fstat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fstatat64_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstatat64_trampoline()\n\n//go:linkname libc_fstatat64 libc_fstatat64\n//go:cgo_import_dynamic libc_fstatat64 fstatat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fstatfs64_trampoline), uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstatfs64_trampoline()\n\n//go:linkname libc_fstatfs64 libc_fstatfs64\n//go:cgo_import_dynamic libc_fstatfs64 fstatfs64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getfsstat64_trampoline), uintptr(buf), uintptr(size), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getfsstat64_trampoline()\n\n//go:linkname libc_getfsstat64 libc_getfsstat64\n//go:cgo_import_dynamic libc_getfsstat64 getfsstat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_lstat64_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lstat64_trampoline()\n\n//go:linkname libc_lstat64 libc_lstat64\n//go:cgo_import_dynamic libc_lstat64 lstat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_stat64_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_stat64_trampoline()\n\n//go:linkname libc_stat64 libc_stat64\n//go:cgo_import_dynamic libc_stat64 stat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_statfs64_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_statfs64_trampoline()\n\n//go:linkname libc_statfs64 libc_statfs64\n//go:cgo_import_dynamic libc_statfs64 statfs64 \"/usr/lib/libSystem.B.dylib\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_386.s",
    "content": "// go run mkasm_darwin.go 386\n// Code generated by the command above; DO NOT EDIT.\n\n// +build go1.12\n\n#include \"textflag.h\"\nTEXT ·libc_getgroups_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getgroups(SB)\nTEXT ·libc_setgroups_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setgroups(SB)\nTEXT ·libc_wait4_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_wait4(SB)\nTEXT ·libc_accept_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_accept(SB)\nTEXT ·libc_bind_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_bind(SB)\nTEXT ·libc_connect_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_connect(SB)\nTEXT ·libc_socket_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_socket(SB)\nTEXT ·libc_getsockopt_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsockopt(SB)\nTEXT ·libc_setsockopt_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setsockopt(SB)\nTEXT ·libc_getpeername_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpeername(SB)\nTEXT ·libc_getsockname_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsockname(SB)\nTEXT ·libc_shutdown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_shutdown(SB)\nTEXT ·libc_socketpair_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_socketpair(SB)\nTEXT ·libc_recvfrom_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_recvfrom(SB)\nTEXT ·libc_sendto_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendto(SB)\nTEXT ·libc_recvmsg_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_recvmsg(SB)\nTEXT ·libc_sendmsg_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendmsg(SB)\nTEXT ·libc_kevent_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kevent(SB)\nTEXT ·libc_utimes_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_utimes(SB)\nTEXT ·libc_futimes_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_futimes(SB)\nTEXT ·libc_poll_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_poll(SB)\nTEXT ·libc_madvise_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_madvise(SB)\nTEXT ·libc_mlock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mlock(SB)\nTEXT ·libc_mlockall_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mlockall(SB)\nTEXT ·libc_mprotect_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mprotect(SB)\nTEXT ·libc_msync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_msync(SB)\nTEXT ·libc_munlock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munlock(SB)\nTEXT ·libc_munlockall_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munlockall(SB)\nTEXT ·libc_pipe_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pipe(SB)\nTEXT ·libc_getxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getxattr(SB)\nTEXT ·libc_fgetxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fgetxattr(SB)\nTEXT ·libc_setxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setxattr(SB)\nTEXT ·libc_fsetxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fsetxattr(SB)\nTEXT ·libc_removexattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_removexattr(SB)\nTEXT ·libc_fremovexattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fremovexattr(SB)\nTEXT ·libc_listxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_listxattr(SB)\nTEXT ·libc_flistxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_flistxattr(SB)\nTEXT ·libc_setattrlist_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setattrlist(SB)\nTEXT ·libc_fcntl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fcntl(SB)\nTEXT ·libc_kill_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kill(SB)\nTEXT ·libc_ioctl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ioctl(SB)\nTEXT ·libc_sysctl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sysctl(SB)\nTEXT ·libc_sendfile_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendfile(SB)\nTEXT ·libc_access_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_access(SB)\nTEXT ·libc_adjtime_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_adjtime(SB)\nTEXT ·libc_chdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chdir(SB)\nTEXT ·libc_chflags_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chflags(SB)\nTEXT ·libc_chmod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chmod(SB)\nTEXT ·libc_chown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chown(SB)\nTEXT ·libc_chroot_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chroot(SB)\nTEXT ·libc_clock_gettime_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clock_gettime(SB)\nTEXT ·libc_close_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_close(SB)\nTEXT ·libc_clonefile_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clonefile(SB)\nTEXT ·libc_clonefileat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clonefileat(SB)\nTEXT ·libc_dup_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_dup(SB)\nTEXT ·libc_dup2_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_dup2(SB)\nTEXT ·libc_exchangedata_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_exchangedata(SB)\nTEXT ·libc_exit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_exit(SB)\nTEXT ·libc_faccessat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_faccessat(SB)\nTEXT ·libc_fchdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchdir(SB)\nTEXT ·libc_fchflags_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchflags(SB)\nTEXT ·libc_fchmod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchmod(SB)\nTEXT ·libc_fchmodat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchmodat(SB)\nTEXT ·libc_fchown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchown(SB)\nTEXT ·libc_fchownat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchownat(SB)\nTEXT ·libc_fclonefileat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fclonefileat(SB)\nTEXT ·libc_flock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_flock(SB)\nTEXT ·libc_fpathconf_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fpathconf(SB)\nTEXT ·libc_fsync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fsync(SB)\nTEXT ·libc_ftruncate_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ftruncate(SB)\nTEXT ·libc_getcwd_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getcwd(SB)\nTEXT ·libc_getdtablesize_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getdtablesize(SB)\nTEXT ·libc_getegid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getegid(SB)\nTEXT ·libc_geteuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_geteuid(SB)\nTEXT ·libc_getgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getgid(SB)\nTEXT ·libc_getpgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpgid(SB)\nTEXT ·libc_getpgrp_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpgrp(SB)\nTEXT ·libc_getpid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpid(SB)\nTEXT ·libc_getppid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getppid(SB)\nTEXT ·libc_getpriority_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpriority(SB)\nTEXT ·libc_getrlimit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getrlimit(SB)\nTEXT ·libc_getrusage_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getrusage(SB)\nTEXT ·libc_getsid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsid(SB)\nTEXT ·libc_gettimeofday_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_gettimeofday(SB)\nTEXT ·libc_getuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getuid(SB)\nTEXT ·libc_issetugid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_issetugid(SB)\nTEXT ·libc_kqueue_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kqueue(SB)\nTEXT ·libc_lchown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lchown(SB)\nTEXT ·libc_link_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_link(SB)\nTEXT ·libc_linkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_linkat(SB)\nTEXT ·libc_listen_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_listen(SB)\nTEXT ·libc_mkdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkdir(SB)\nTEXT ·libc_mkdirat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkdirat(SB)\nTEXT ·libc_mkfifo_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkfifo(SB)\nTEXT ·libc_mknod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mknod(SB)\nTEXT ·libc_open_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_open(SB)\nTEXT ·libc_openat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_openat(SB)\nTEXT ·libc_pathconf_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pathconf(SB)\nTEXT ·libc_pread_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pread(SB)\nTEXT ·libc_pwrite_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pwrite(SB)\nTEXT ·libc_read_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_read(SB)\nTEXT ·libc_readlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readlink(SB)\nTEXT ·libc_readlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readlinkat(SB)\nTEXT ·libc_rename_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_rename(SB)\nTEXT ·libc_renameat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_renameat(SB)\nTEXT ·libc_revoke_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_revoke(SB)\nTEXT ·libc_rmdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_rmdir(SB)\nTEXT ·libc_lseek_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lseek(SB)\nTEXT ·libc_select_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_select(SB)\nTEXT ·libc_setegid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setegid(SB)\nTEXT ·libc_seteuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_seteuid(SB)\nTEXT ·libc_setgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setgid(SB)\nTEXT ·libc_setlogin_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setlogin(SB)\nTEXT ·libc_setpgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setpgid(SB)\nTEXT ·libc_setpriority_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setpriority(SB)\nTEXT ·libc_setprivexec_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setprivexec(SB)\nTEXT ·libc_setregid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setregid(SB)\nTEXT ·libc_setreuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setreuid(SB)\nTEXT ·libc_setrlimit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setrlimit(SB)\nTEXT ·libc_setsid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setsid(SB)\nTEXT ·libc_settimeofday_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_settimeofday(SB)\nTEXT ·libc_setuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setuid(SB)\nTEXT ·libc_symlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_symlink(SB)\nTEXT ·libc_symlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_symlinkat(SB)\nTEXT ·libc_sync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sync(SB)\nTEXT ·libc_truncate_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_truncate(SB)\nTEXT ·libc_umask_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_umask(SB)\nTEXT ·libc_undelete_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_undelete(SB)\nTEXT ·libc_unlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unlink(SB)\nTEXT ·libc_unlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unlinkat(SB)\nTEXT ·libc_unmount_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unmount(SB)\nTEXT ·libc_write_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_write(SB)\nTEXT ·libc_mmap_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mmap(SB)\nTEXT ·libc_munmap_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munmap(SB)\nTEXT ·libc_ptrace_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ptrace(SB)\nTEXT ·libc_fstat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstat64(SB)\nTEXT ·libc_fstatat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstatat64(SB)\nTEXT ·libc_fstatfs64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstatfs64(SB)\nTEXT ·libc_getfsstat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getfsstat64(SB)\nTEXT ·libc_lstat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lstat64(SB)\nTEXT ·libc_stat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_stat64(SB)\nTEXT ·libc_statfs64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_statfs64(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go",
    "content": "// go run mksyscall.go -tags darwin,amd64,go1.13 syscall_darwin.1_13.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build darwin,amd64,go1.13\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc closedir(dir uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_closedir_trampoline), uintptr(dir), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_closedir_trampoline()\n\n//go:linkname libc_closedir libc_closedir\n//go:cgo_import_dynamic libc_closedir closedir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_readdir_r_trampoline), uintptr(dir), uintptr(unsafe.Pointer(entry)), uintptr(unsafe.Pointer(result)))\n\tres = Errno(r0)\n\treturn\n}\n\nfunc libc_readdir_r_trampoline()\n\n//go:linkname libc_readdir_r libc_readdir_r\n//go:cgo_import_dynamic libc_readdir_r readdir_r \"/usr/lib/libSystem.B.dylib\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.s",
    "content": "// go run mkasm_darwin.go amd64\n// Code generated by the command above; DO NOT EDIT.\n\n// +build go1.13\n\n#include \"textflag.h\"\nTEXT ·libc_fdopendir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fdopendir(SB)\nTEXT ·libc_closedir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_closedir(SB)\nTEXT ·libc_readdir_r_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readdir_r(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go",
    "content": "// go run mksyscall.go -tags darwin,amd64,go1.12 syscall_bsd.go syscall_darwin.go syscall_darwin_amd64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build darwin,amd64,go1.12\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getgroups_trampoline()\n\n//go:linkname libc_getgroups libc_getgroups\n//go:cgo_import_dynamic libc_getgroups getgroups \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setgroups_trampoline()\n\n//go:linkname libc_setgroups libc_setgroups\n//go:cgo_import_dynamic libc_setgroups setgroups \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_wait4_trampoline), uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_wait4_trampoline()\n\n//go:linkname libc_wait4 libc_wait4\n//go:cgo_import_dynamic libc_wait4 wait4 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_accept_trampoline), uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_accept_trampoline()\n\n//go:linkname libc_accept libc_accept\n//go:cgo_import_dynamic libc_accept accept \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_bind_trampoline()\n\n//go:linkname libc_bind libc_bind\n//go:cgo_import_dynamic libc_bind bind \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_connect_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_connect_trampoline()\n\n//go:linkname libc_connect libc_connect\n//go:cgo_import_dynamic libc_connect connect \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_socket_trampoline), uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_socket_trampoline()\n\n//go:linkname libc_socket libc_socket\n//go:cgo_import_dynamic libc_socket socket \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_getsockopt_trampoline), uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsockopt_trampoline()\n\n//go:linkname libc_getsockopt libc_getsockopt\n//go:cgo_import_dynamic libc_getsockopt getsockopt \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setsockopt_trampoline), uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setsockopt_trampoline()\n\n//go:linkname libc_setsockopt libc_setsockopt\n//go:cgo_import_dynamic libc_setsockopt setsockopt \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getpeername_trampoline), uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpeername_trampoline()\n\n//go:linkname libc_getpeername libc_getpeername\n//go:cgo_import_dynamic libc_getpeername getpeername \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getsockname_trampoline), uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsockname_trampoline()\n\n//go:linkname libc_getsockname libc_getsockname\n//go:cgo_import_dynamic libc_getsockname getsockname \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_shutdown_trampoline), uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_shutdown_trampoline()\n\n//go:linkname libc_shutdown libc_shutdown\n//go:cgo_import_dynamic libc_shutdown shutdown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := syscall_rawSyscall6(funcPC(libc_socketpair_trampoline), uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_socketpair_trampoline()\n\n//go:linkname libc_socketpair libc_socketpair\n//go:cgo_import_dynamic libc_socketpair socketpair \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_recvfrom_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_recvfrom_trampoline()\n\n//go:linkname libc_recvfrom libc_recvfrom\n//go:cgo_import_dynamic libc_recvfrom recvfrom \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sendto_trampoline), uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendto_trampoline()\n\n//go:linkname libc_sendto libc_sendto\n//go:cgo_import_dynamic libc_sendto sendto \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_recvmsg_trampoline), uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_recvmsg_trampoline()\n\n//go:linkname libc_recvmsg libc_recvmsg\n//go:cgo_import_dynamic libc_recvmsg recvmsg \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_sendmsg_trampoline), uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendmsg_trampoline()\n\n//go:linkname libc_sendmsg libc_sendmsg\n//go:cgo_import_dynamic libc_sendmsg sendmsg \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_kevent_trampoline), uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kevent_trampoline()\n\n//go:linkname libc_kevent libc_kevent\n//go:cgo_import_dynamic libc_kevent kevent \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_utimes_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_utimes_trampoline()\n\n//go:linkname libc_utimes libc_utimes\n//go:cgo_import_dynamic libc_utimes utimes \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_futimes_trampoline), uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_futimes_trampoline()\n\n//go:linkname libc_futimes libc_futimes\n//go:cgo_import_dynamic libc_futimes futimes \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_poll_trampoline), uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_poll_trampoline()\n\n//go:linkname libc_poll libc_poll\n//go:cgo_import_dynamic libc_poll poll \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_madvise_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_madvise_trampoline()\n\n//go:linkname libc_madvise libc_madvise\n//go:cgo_import_dynamic libc_madvise madvise \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mlock_trampoline), uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mlock_trampoline()\n\n//go:linkname libc_mlock libc_mlock\n//go:cgo_import_dynamic libc_mlock mlock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_mlockall_trampoline), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mlockall_trampoline()\n\n//go:linkname libc_mlockall libc_mlockall\n//go:cgo_import_dynamic libc_mlockall mlockall \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mprotect_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mprotect_trampoline()\n\n//go:linkname libc_mprotect libc_mprotect\n//go:cgo_import_dynamic libc_mprotect mprotect \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_msync_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_msync_trampoline()\n\n//go:linkname libc_msync libc_msync\n//go:cgo_import_dynamic libc_msync msync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_munlock_trampoline), uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munlock_trampoline()\n\n//go:linkname libc_munlock libc_munlock\n//go:cgo_import_dynamic libc_munlock munlock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_munlockall_trampoline), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munlockall_trampoline()\n\n//go:linkname libc_munlockall libc_munlockall\n//go:cgo_import_dynamic libc_munlockall munlockall \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (r int, w int, err error) {\n\tr0, r1, e1 := syscall_rawSyscall(funcPC(libc_pipe_trampoline), 0, 0, 0)\n\tr = int(r0)\n\tw = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pipe_trampoline()\n\n//go:linkname libc_pipe libc_pipe\n//go:cgo_import_dynamic libc_pipe pipe \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getxattr(path string, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_getxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getxattr_trampoline()\n\n//go:linkname libc_getxattr libc_getxattr\n//go:cgo_import_dynamic libc_getxattr getxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_fgetxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fgetxattr_trampoline()\n\n//go:linkname libc_fgetxattr libc_fgetxattr\n//go:cgo_import_dynamic libc_fgetxattr fgetxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setxattr(path string, attr string, data *byte, size int, position uint32, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(data)), uintptr(size), uintptr(position), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setxattr_trampoline()\n\n//go:linkname libc_setxattr libc_setxattr\n//go:cgo_import_dynamic libc_setxattr setxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fsetxattr(fd int, attr string, data *byte, size int, position uint32, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fsetxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(data)), uintptr(size), uintptr(position), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fsetxattr_trampoline()\n\n//go:linkname libc_fsetxattr libc_fsetxattr\n//go:cgo_import_dynamic libc_fsetxattr fsetxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc removexattr(path string, attr string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_removexattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_removexattr_trampoline()\n\n//go:linkname libc_removexattr libc_removexattr\n//go:cgo_import_dynamic libc_removexattr removexattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fremovexattr(fd int, attr string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_fremovexattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fremovexattr_trampoline()\n\n//go:linkname libc_fremovexattr libc_fremovexattr\n//go:cgo_import_dynamic libc_fremovexattr fremovexattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc listxattr(path string, dest *byte, size int, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_listxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(options), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_listxattr_trampoline()\n\n//go:linkname libc_listxattr libc_listxattr\n//go:cgo_import_dynamic libc_listxattr listxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc flistxattr(fd int, dest *byte, size int, options int) (sz int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_flistxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(options), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_flistxattr_trampoline()\n\n//go:linkname libc_flistxattr libc_flistxattr\n//go:cgo_import_dynamic libc_flistxattr flistxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, size uintptr, options int) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setattrlist_trampoline), uintptr(unsafe.Pointer(path)), uintptr(list), uintptr(buf), uintptr(size), uintptr(options), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setattrlist_trampoline()\n\n//go:linkname libc_setattrlist libc_setattrlist\n//go:cgo_import_dynamic libc_setattrlist setattrlist \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fcntl(fd int, cmd int, arg int) (val int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_fcntl_trampoline), uintptr(fd), uintptr(cmd), uintptr(arg))\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fcntl_trampoline()\n\n//go:linkname libc_fcntl libc_fcntl\n//go:cgo_import_dynamic libc_fcntl fcntl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kill(pid int, signum int, posix int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_kill_trampoline), uintptr(pid), uintptr(signum), uintptr(posix))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kill_trampoline()\n\n//go:linkname libc_kill libc_kill\n//go:cgo_import_dynamic libc_kill kill \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_ioctl_trampoline), uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ioctl_trampoline()\n\n//go:linkname libc_ioctl libc_ioctl\n//go:cgo_import_dynamic libc_ioctl ioctl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sysctl_trampoline), uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sysctl_trampoline()\n\n//go:linkname libc_sysctl libc_sysctl\n//go:cgo_import_dynamic libc_sysctl sysctl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe.Pointer, flags int) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sendfile_trampoline), uintptr(infd), uintptr(outfd), uintptr(offset), uintptr(unsafe.Pointer(len)), uintptr(hdtr), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendfile_trampoline()\n\n//go:linkname libc_sendfile libc_sendfile\n//go:cgo_import_dynamic libc_sendfile sendfile \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_access_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_access_trampoline()\n\n//go:linkname libc_access libc_access\n//go:cgo_import_dynamic libc_access access \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_adjtime_trampoline), uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_adjtime_trampoline()\n\n//go:linkname libc_adjtime libc_adjtime\n//go:cgo_import_dynamic libc_adjtime adjtime \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chdir_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chdir_trampoline()\n\n//go:linkname libc_chdir libc_chdir\n//go:cgo_import_dynamic libc_chdir chdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chflags_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chflags_trampoline()\n\n//go:linkname libc_chflags libc_chflags\n//go:cgo_import_dynamic libc_chflags chflags \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chmod_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chmod_trampoline()\n\n//go:linkname libc_chmod libc_chmod\n//go:cgo_import_dynamic libc_chmod chmod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chown_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chown_trampoline()\n\n//go:linkname libc_chown libc_chown\n//go:cgo_import_dynamic libc_chown chown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chroot_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chroot_trampoline()\n\n//go:linkname libc_chroot libc_chroot\n//go:cgo_import_dynamic libc_chroot chroot \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ClockGettime(clockid int32, time *Timespec) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_clock_gettime_trampoline), uintptr(clockid), uintptr(unsafe.Pointer(time)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clock_gettime_trampoline()\n\n//go:linkname libc_clock_gettime libc_clock_gettime\n//go:cgo_import_dynamic libc_clock_gettime clock_gettime \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_close_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_close_trampoline()\n\n//go:linkname libc_close libc_close\n//go:cgo_import_dynamic libc_close close \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Clonefile(src string, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(src)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_clonefile_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clonefile_trampoline()\n\n//go:linkname libc_clonefile libc_clonefile\n//go:cgo_import_dynamic libc_clonefile clonefile \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Clonefileat(srcDirfd int, src string, dstDirfd int, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(src)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_clonefileat_trampoline), uintptr(srcDirfd), uintptr(unsafe.Pointer(_p0)), uintptr(dstDirfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clonefileat_trampoline()\n\n//go:linkname libc_clonefileat libc_clonefileat\n//go:cgo_import_dynamic libc_clonefileat clonefileat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_dup_trampoline), uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_dup_trampoline()\n\n//go:linkname libc_dup libc_dup\n//go:cgo_import_dynamic libc_dup dup \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_dup2_trampoline), uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_dup2_trampoline()\n\n//go:linkname libc_dup2 libc_dup2\n//go:cgo_import_dynamic libc_dup2 dup2 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exchangedata(path1 string, path2 string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path1)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(path2)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_exchangedata_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_exchangedata_trampoline()\n\n//go:linkname libc_exchangedata libc_exchangedata\n//go:cgo_import_dynamic libc_exchangedata exchangedata \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tsyscall_syscall(funcPC(libc_exit_trampoline), uintptr(code), 0, 0)\n\treturn\n}\n\nfunc libc_exit_trampoline()\n\n//go:linkname libc_exit libc_exit\n//go:cgo_import_dynamic libc_exit exit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_faccessat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_faccessat_trampoline()\n\n//go:linkname libc_faccessat libc_faccessat\n//go:cgo_import_dynamic libc_faccessat faccessat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchdir_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchdir_trampoline()\n\n//go:linkname libc_fchdir libc_fchdir\n//go:cgo_import_dynamic libc_fchdir fchdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchflags_trampoline), uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchflags_trampoline()\n\n//go:linkname libc_fchflags libc_fchflags\n//go:cgo_import_dynamic libc_fchflags fchflags \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchmod_trampoline), uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchmod_trampoline()\n\n//go:linkname libc_fchmod libc_fchmod\n//go:cgo_import_dynamic libc_fchmod fchmod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fchmodat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchmodat_trampoline()\n\n//go:linkname libc_fchmodat libc_fchmodat\n//go:cgo_import_dynamic libc_fchmodat fchmodat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchown_trampoline), uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchown_trampoline()\n\n//go:linkname libc_fchown libc_fchown\n//go:cgo_import_dynamic libc_fchown fchown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fchownat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchownat_trampoline()\n\n//go:linkname libc_fchownat libc_fchownat\n//go:cgo_import_dynamic libc_fchownat fchownat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fclonefileat(srcDirfd int, dstDirfd int, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fclonefileat_trampoline), uintptr(srcDirfd), uintptr(dstDirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fclonefileat_trampoline()\n\n//go:linkname libc_fclonefileat libc_fclonefileat\n//go:cgo_import_dynamic libc_fclonefileat fclonefileat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_flock_trampoline), uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_flock_trampoline()\n\n//go:linkname libc_flock libc_flock\n//go:cgo_import_dynamic libc_flock flock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_fpathconf_trampoline), uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fpathconf_trampoline()\n\n//go:linkname libc_fpathconf libc_fpathconf\n//go:cgo_import_dynamic libc_fpathconf fpathconf \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fsync_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fsync_trampoline()\n\n//go:linkname libc_fsync libc_fsync\n//go:cgo_import_dynamic libc_fsync fsync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_ftruncate_trampoline), uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ftruncate_trampoline()\n\n//go:linkname libc_ftruncate libc_ftruncate\n//go:cgo_import_dynamic libc_ftruncate ftruncate \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getcwd_trampoline), uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getcwd_trampoline()\n\n//go:linkname libc_getcwd libc_getcwd\n//go:cgo_import_dynamic libc_getcwd getcwd \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdtablesize() (size int) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_getdtablesize_trampoline), 0, 0, 0)\n\tsize = int(r0)\n\treturn\n}\n\nfunc libc_getdtablesize_trampoline()\n\n//go:linkname libc_getdtablesize libc_getdtablesize\n//go:cgo_import_dynamic libc_getdtablesize getdtablesize \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getegid_trampoline), 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\nfunc libc_getegid_trampoline()\n\n//go:linkname libc_getegid libc_getegid\n//go:cgo_import_dynamic libc_getegid getegid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_geteuid_trampoline), 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\nfunc libc_geteuid_trampoline()\n\n//go:linkname libc_geteuid libc_geteuid\n//go:cgo_import_dynamic libc_geteuid geteuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getgid_trampoline), 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\nfunc libc_getgid_trampoline()\n\n//go:linkname libc_getgid libc_getgid\n//go:cgo_import_dynamic libc_getgid getgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getpgid_trampoline), uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpgid_trampoline()\n\n//go:linkname libc_getpgid libc_getpgid\n//go:cgo_import_dynamic libc_getpgid getpgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getpgrp_trampoline), 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\nfunc libc_getpgrp_trampoline()\n\n//go:linkname libc_getpgrp libc_getpgrp\n//go:cgo_import_dynamic libc_getpgrp getpgrp \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getpid_trampoline), 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\nfunc libc_getpid_trampoline()\n\n//go:linkname libc_getpid libc_getpid\n//go:cgo_import_dynamic libc_getpid getpid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getppid_trampoline), 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\nfunc libc_getppid_trampoline()\n\n//go:linkname libc_getppid libc_getppid\n//go:cgo_import_dynamic libc_getppid getppid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getpriority_trampoline), uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpriority_trampoline()\n\n//go:linkname libc_getpriority libc_getpriority\n//go:cgo_import_dynamic libc_getpriority getpriority \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getrlimit_trampoline()\n\n//go:linkname libc_getrlimit libc_getrlimit\n//go:cgo_import_dynamic libc_getrlimit getrlimit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getrusage_trampoline), uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getrusage_trampoline()\n\n//go:linkname libc_getrusage libc_getrusage\n//go:cgo_import_dynamic libc_getrusage getrusage \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getsid_trampoline), uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsid_trampoline()\n\n//go:linkname libc_getsid libc_getsid\n//go:cgo_import_dynamic libc_getsid getsid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_gettimeofday_trampoline), uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_gettimeofday_trampoline()\n\n//go:linkname libc_gettimeofday libc_gettimeofday\n//go:cgo_import_dynamic libc_gettimeofday gettimeofday \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getuid_trampoline), 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\nfunc libc_getuid_trampoline()\n\n//go:linkname libc_getuid libc_getuid\n//go:cgo_import_dynamic libc_getuid getuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_issetugid_trampoline), 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\nfunc libc_issetugid_trampoline()\n\n//go:linkname libc_issetugid libc_issetugid\n//go:cgo_import_dynamic libc_issetugid issetugid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_kqueue_trampoline), 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kqueue_trampoline()\n\n//go:linkname libc_kqueue libc_kqueue\n//go:cgo_import_dynamic libc_kqueue kqueue \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_lchown_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lchown_trampoline()\n\n//go:linkname libc_lchown libc_lchown\n//go:cgo_import_dynamic libc_lchown lchown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_link_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_link_trampoline()\n\n//go:linkname libc_link libc_link\n//go:cgo_import_dynamic libc_link link \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_linkat_trampoline), uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_linkat_trampoline()\n\n//go:linkname libc_linkat libc_linkat\n//go:cgo_import_dynamic libc_linkat linkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_listen_trampoline), uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_listen_trampoline()\n\n//go:linkname libc_listen libc_listen\n//go:cgo_import_dynamic libc_listen listen \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkdir_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkdir_trampoline()\n\n//go:linkname libc_mkdir libc_mkdir\n//go:cgo_import_dynamic libc_mkdir mkdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkdirat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkdirat_trampoline()\n\n//go:linkname libc_mkdirat libc_mkdirat\n//go:cgo_import_dynamic libc_mkdirat mkdirat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkfifo_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkfifo_trampoline()\n\n//go:linkname libc_mkfifo libc_mkfifo\n//go:cgo_import_dynamic libc_mkfifo mkfifo \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mknod_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mknod_trampoline()\n\n//go:linkname libc_mknod libc_mknod\n//go:cgo_import_dynamic libc_mknod mknod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_open_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_open_trampoline()\n\n//go:linkname libc_open libc_open\n//go:cgo_import_dynamic libc_open open \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_openat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_openat_trampoline()\n\n//go:linkname libc_openat libc_openat\n//go:cgo_import_dynamic libc_openat openat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_pathconf_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pathconf_trampoline()\n\n//go:linkname libc_pathconf libc_pathconf\n//go:cgo_import_dynamic libc_pathconf pathconf \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_pread_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pread_trampoline()\n\n//go:linkname libc_pread libc_pread\n//go:cgo_import_dynamic libc_pread pread \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_pwrite_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pwrite_trampoline()\n\n//go:linkname libc_pwrite libc_pwrite\n//go:cgo_import_dynamic libc_pwrite pwrite \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_read_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_read_trampoline()\n\n//go:linkname libc_read libc_read\n//go:cgo_import_dynamic libc_read read \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_readlink_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_readlink_trampoline()\n\n//go:linkname libc_readlink libc_readlink\n//go:cgo_import_dynamic libc_readlink readlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_readlinkat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_readlinkat_trampoline()\n\n//go:linkname libc_readlinkat libc_readlinkat\n//go:cgo_import_dynamic libc_readlinkat readlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_rename_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_rename_trampoline()\n\n//go:linkname libc_rename libc_rename\n//go:cgo_import_dynamic libc_rename rename \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_renameat_trampoline), uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_renameat_trampoline()\n\n//go:linkname libc_renameat libc_renameat\n//go:cgo_import_dynamic libc_renameat renameat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_revoke_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_revoke_trampoline()\n\n//go:linkname libc_revoke libc_revoke\n//go:cgo_import_dynamic libc_revoke revoke \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_rmdir_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_rmdir_trampoline()\n\n//go:linkname libc_rmdir libc_rmdir\n//go:cgo_import_dynamic libc_rmdir rmdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_lseek_trampoline), uintptr(fd), uintptr(offset), uintptr(whence))\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lseek_trampoline()\n\n//go:linkname libc_lseek libc_lseek\n//go:cgo_import_dynamic libc_lseek lseek \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_select_trampoline), uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_select_trampoline()\n\n//go:linkname libc_select libc_select\n//go:cgo_import_dynamic libc_select select \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setegid_trampoline), uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setegid_trampoline()\n\n//go:linkname libc_setegid libc_setegid\n//go:cgo_import_dynamic libc_setegid setegid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_seteuid_trampoline), uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_seteuid_trampoline()\n\n//go:linkname libc_seteuid libc_seteuid\n//go:cgo_import_dynamic libc_seteuid seteuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setgid_trampoline), uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setgid_trampoline()\n\n//go:linkname libc_setgid libc_setgid\n//go:cgo_import_dynamic libc_setgid setgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_setlogin_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setlogin_trampoline()\n\n//go:linkname libc_setlogin libc_setlogin\n//go:cgo_import_dynamic libc_setlogin setlogin \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setpgid_trampoline), uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setpgid_trampoline()\n\n//go:linkname libc_setpgid libc_setpgid\n//go:cgo_import_dynamic libc_setpgid setpgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setpriority_trampoline), uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setpriority_trampoline()\n\n//go:linkname libc_setpriority libc_setpriority\n//go:cgo_import_dynamic libc_setpriority setpriority \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setprivexec(flag int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setprivexec_trampoline), uintptr(flag), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setprivexec_trampoline()\n\n//go:linkname libc_setprivexec libc_setprivexec\n//go:cgo_import_dynamic libc_setprivexec setprivexec \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setregid_trampoline), uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setregid_trampoline()\n\n//go:linkname libc_setregid libc_setregid\n//go:cgo_import_dynamic libc_setregid setregid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setreuid_trampoline), uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setreuid_trampoline()\n\n//go:linkname libc_setreuid libc_setreuid\n//go:cgo_import_dynamic libc_setreuid setreuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setrlimit_trampoline()\n\n//go:linkname libc_setrlimit libc_setrlimit\n//go:cgo_import_dynamic libc_setrlimit setrlimit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_setsid_trampoline), 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setsid_trampoline()\n\n//go:linkname libc_setsid libc_setsid\n//go:cgo_import_dynamic libc_setsid setsid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_settimeofday_trampoline), uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_settimeofday_trampoline()\n\n//go:linkname libc_settimeofday libc_settimeofday\n//go:cgo_import_dynamic libc_settimeofday settimeofday \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setuid_trampoline), uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setuid_trampoline()\n\n//go:linkname libc_setuid libc_setuid\n//go:cgo_import_dynamic libc_setuid setuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_symlink_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_symlink_trampoline()\n\n//go:linkname libc_symlink libc_symlink\n//go:cgo_import_dynamic libc_symlink symlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_symlinkat_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_symlinkat_trampoline()\n\n//go:linkname libc_symlinkat libc_symlinkat\n//go:cgo_import_dynamic libc_symlinkat symlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_sync_trampoline), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sync_trampoline()\n\n//go:linkname libc_sync libc_sync\n//go:cgo_import_dynamic libc_sync sync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_truncate_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_truncate_trampoline()\n\n//go:linkname libc_truncate libc_truncate\n//go:cgo_import_dynamic libc_truncate truncate \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_umask_trampoline), uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\nfunc libc_umask_trampoline()\n\n//go:linkname libc_umask libc_umask\n//go:cgo_import_dynamic libc_umask umask \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Undelete(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_undelete_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_undelete_trampoline()\n\n//go:linkname libc_undelete libc_undelete\n//go:cgo_import_dynamic libc_undelete undelete \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unlink_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unlink_trampoline()\n\n//go:linkname libc_unlink libc_unlink\n//go:cgo_import_dynamic libc_unlink unlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unlinkat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unlinkat_trampoline()\n\n//go:linkname libc_unlinkat libc_unlinkat\n//go:cgo_import_dynamic libc_unlinkat unlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unmount_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unmount_trampoline()\n\n//go:linkname libc_unmount libc_unmount\n//go:cgo_import_dynamic libc_unmount unmount \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_write_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_write_trampoline()\n\n//go:linkname libc_write libc_write\n//go:cgo_import_dynamic libc_write write \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_mmap_trampoline), uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos))\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mmap_trampoline()\n\n//go:linkname libc_mmap libc_mmap\n//go:cgo_import_dynamic libc_mmap mmap \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_munmap_trampoline), uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munmap_trampoline()\n\n//go:linkname libc_munmap libc_munmap\n//go:cgo_import_dynamic libc_munmap munmap \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_read_trampoline), uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_write_trampoline), uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_ptrace_trampoline), uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ptrace_trampoline()\n\n//go:linkname libc_ptrace libc_ptrace\n//go:cgo_import_dynamic libc_ptrace ptrace \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fstat64_trampoline), uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstat64_trampoline()\n\n//go:linkname libc_fstat64 libc_fstat64\n//go:cgo_import_dynamic libc_fstat64 fstat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fstatat64_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstatat64_trampoline()\n\n//go:linkname libc_fstatat64 libc_fstatat64\n//go:cgo_import_dynamic libc_fstatat64 fstatat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fstatfs64_trampoline), uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstatfs64_trampoline()\n\n//go:linkname libc_fstatfs64 libc_fstatfs64\n//go:cgo_import_dynamic libc_fstatfs64 fstatfs64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getfsstat64_trampoline), uintptr(buf), uintptr(size), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getfsstat64_trampoline()\n\n//go:linkname libc_getfsstat64 libc_getfsstat64\n//go:cgo_import_dynamic libc_getfsstat64 getfsstat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_lstat64_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lstat64_trampoline()\n\n//go:linkname libc_lstat64 libc_lstat64\n//go:cgo_import_dynamic libc_lstat64 lstat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_stat64_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_stat64_trampoline()\n\n//go:linkname libc_stat64 libc_stat64\n//go:cgo_import_dynamic libc_stat64 stat64 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_statfs64_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_statfs64_trampoline()\n\n//go:linkname libc_statfs64 libc_statfs64\n//go:cgo_import_dynamic libc_statfs64 statfs64 \"/usr/lib/libSystem.B.dylib\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s",
    "content": "// go run mkasm_darwin.go amd64\n// Code generated by the command above; DO NOT EDIT.\n\n// +build go1.12\n\n#include \"textflag.h\"\nTEXT ·libc_getgroups_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getgroups(SB)\nTEXT ·libc_setgroups_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setgroups(SB)\nTEXT ·libc_wait4_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_wait4(SB)\nTEXT ·libc_accept_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_accept(SB)\nTEXT ·libc_bind_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_bind(SB)\nTEXT ·libc_connect_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_connect(SB)\nTEXT ·libc_socket_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_socket(SB)\nTEXT ·libc_getsockopt_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsockopt(SB)\nTEXT ·libc_setsockopt_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setsockopt(SB)\nTEXT ·libc_getpeername_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpeername(SB)\nTEXT ·libc_getsockname_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsockname(SB)\nTEXT ·libc_shutdown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_shutdown(SB)\nTEXT ·libc_socketpair_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_socketpair(SB)\nTEXT ·libc_recvfrom_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_recvfrom(SB)\nTEXT ·libc_sendto_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendto(SB)\nTEXT ·libc_recvmsg_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_recvmsg(SB)\nTEXT ·libc_sendmsg_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendmsg(SB)\nTEXT ·libc_kevent_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kevent(SB)\nTEXT ·libc_utimes_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_utimes(SB)\nTEXT ·libc_futimes_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_futimes(SB)\nTEXT ·libc_poll_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_poll(SB)\nTEXT ·libc_madvise_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_madvise(SB)\nTEXT ·libc_mlock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mlock(SB)\nTEXT ·libc_mlockall_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mlockall(SB)\nTEXT ·libc_mprotect_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mprotect(SB)\nTEXT ·libc_msync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_msync(SB)\nTEXT ·libc_munlock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munlock(SB)\nTEXT ·libc_munlockall_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munlockall(SB)\nTEXT ·libc_pipe_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pipe(SB)\nTEXT ·libc_getxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getxattr(SB)\nTEXT ·libc_fgetxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fgetxattr(SB)\nTEXT ·libc_setxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setxattr(SB)\nTEXT ·libc_fsetxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fsetxattr(SB)\nTEXT ·libc_removexattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_removexattr(SB)\nTEXT ·libc_fremovexattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fremovexattr(SB)\nTEXT ·libc_listxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_listxattr(SB)\nTEXT ·libc_flistxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_flistxattr(SB)\nTEXT ·libc_setattrlist_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setattrlist(SB)\nTEXT ·libc_fcntl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fcntl(SB)\nTEXT ·libc_kill_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kill(SB)\nTEXT ·libc_ioctl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ioctl(SB)\nTEXT ·libc_sysctl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sysctl(SB)\nTEXT ·libc_sendfile_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendfile(SB)\nTEXT ·libc_access_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_access(SB)\nTEXT ·libc_adjtime_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_adjtime(SB)\nTEXT ·libc_chdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chdir(SB)\nTEXT ·libc_chflags_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chflags(SB)\nTEXT ·libc_chmod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chmod(SB)\nTEXT ·libc_chown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chown(SB)\nTEXT ·libc_chroot_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chroot(SB)\nTEXT ·libc_clock_gettime_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clock_gettime(SB)\nTEXT ·libc_close_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_close(SB)\nTEXT ·libc_clonefile_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clonefile(SB)\nTEXT ·libc_clonefileat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clonefileat(SB)\nTEXT ·libc_dup_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_dup(SB)\nTEXT ·libc_dup2_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_dup2(SB)\nTEXT ·libc_exchangedata_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_exchangedata(SB)\nTEXT ·libc_exit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_exit(SB)\nTEXT ·libc_faccessat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_faccessat(SB)\nTEXT ·libc_fchdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchdir(SB)\nTEXT ·libc_fchflags_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchflags(SB)\nTEXT ·libc_fchmod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchmod(SB)\nTEXT ·libc_fchmodat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchmodat(SB)\nTEXT ·libc_fchown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchown(SB)\nTEXT ·libc_fchownat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchownat(SB)\nTEXT ·libc_fclonefileat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fclonefileat(SB)\nTEXT ·libc_flock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_flock(SB)\nTEXT ·libc_fpathconf_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fpathconf(SB)\nTEXT ·libc_fsync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fsync(SB)\nTEXT ·libc_ftruncate_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ftruncate(SB)\nTEXT ·libc_getcwd_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getcwd(SB)\nTEXT ·libc_getdtablesize_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getdtablesize(SB)\nTEXT ·libc_getegid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getegid(SB)\nTEXT ·libc_geteuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_geteuid(SB)\nTEXT ·libc_getgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getgid(SB)\nTEXT ·libc_getpgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpgid(SB)\nTEXT ·libc_getpgrp_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpgrp(SB)\nTEXT ·libc_getpid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpid(SB)\nTEXT ·libc_getppid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getppid(SB)\nTEXT ·libc_getpriority_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpriority(SB)\nTEXT ·libc_getrlimit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getrlimit(SB)\nTEXT ·libc_getrusage_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getrusage(SB)\nTEXT ·libc_getsid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsid(SB)\nTEXT ·libc_gettimeofday_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_gettimeofday(SB)\nTEXT ·libc_getuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getuid(SB)\nTEXT ·libc_issetugid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_issetugid(SB)\nTEXT ·libc_kqueue_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kqueue(SB)\nTEXT ·libc_lchown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lchown(SB)\nTEXT ·libc_link_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_link(SB)\nTEXT ·libc_linkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_linkat(SB)\nTEXT ·libc_listen_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_listen(SB)\nTEXT ·libc_mkdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkdir(SB)\nTEXT ·libc_mkdirat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkdirat(SB)\nTEXT ·libc_mkfifo_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkfifo(SB)\nTEXT ·libc_mknod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mknod(SB)\nTEXT ·libc_open_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_open(SB)\nTEXT ·libc_openat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_openat(SB)\nTEXT ·libc_pathconf_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pathconf(SB)\nTEXT ·libc_pread_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pread(SB)\nTEXT ·libc_pwrite_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pwrite(SB)\nTEXT ·libc_read_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_read(SB)\nTEXT ·libc_readlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readlink(SB)\nTEXT ·libc_readlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readlinkat(SB)\nTEXT ·libc_rename_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_rename(SB)\nTEXT ·libc_renameat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_renameat(SB)\nTEXT ·libc_revoke_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_revoke(SB)\nTEXT ·libc_rmdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_rmdir(SB)\nTEXT ·libc_lseek_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lseek(SB)\nTEXT ·libc_select_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_select(SB)\nTEXT ·libc_setegid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setegid(SB)\nTEXT ·libc_seteuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_seteuid(SB)\nTEXT ·libc_setgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setgid(SB)\nTEXT ·libc_setlogin_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setlogin(SB)\nTEXT ·libc_setpgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setpgid(SB)\nTEXT ·libc_setpriority_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setpriority(SB)\nTEXT ·libc_setprivexec_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setprivexec(SB)\nTEXT ·libc_setregid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setregid(SB)\nTEXT ·libc_setreuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setreuid(SB)\nTEXT ·libc_setrlimit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setrlimit(SB)\nTEXT ·libc_setsid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setsid(SB)\nTEXT ·libc_settimeofday_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_settimeofday(SB)\nTEXT ·libc_setuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setuid(SB)\nTEXT ·libc_symlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_symlink(SB)\nTEXT ·libc_symlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_symlinkat(SB)\nTEXT ·libc_sync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sync(SB)\nTEXT ·libc_truncate_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_truncate(SB)\nTEXT ·libc_umask_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_umask(SB)\nTEXT ·libc_undelete_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_undelete(SB)\nTEXT ·libc_unlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unlink(SB)\nTEXT ·libc_unlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unlinkat(SB)\nTEXT ·libc_unmount_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unmount(SB)\nTEXT ·libc_write_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_write(SB)\nTEXT ·libc_mmap_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mmap(SB)\nTEXT ·libc_munmap_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munmap(SB)\nTEXT ·libc_ptrace_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ptrace(SB)\nTEXT ·libc_fstat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstat64(SB)\nTEXT ·libc_fstatat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstatat64(SB)\nTEXT ·libc_fstatfs64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstatfs64(SB)\nTEXT ·libc_getfsstat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getfsstat64(SB)\nTEXT ·libc_lstat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lstat64(SB)\nTEXT ·libc_stat64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_stat64(SB)\nTEXT ·libc_statfs64_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_statfs64(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.go",
    "content": "// go run mksyscall.go -l32 -tags darwin,arm,go1.13 syscall_darwin.1_13.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build darwin,arm,go1.13\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc closedir(dir uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_closedir_trampoline), uintptr(dir), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_closedir_trampoline()\n\n//go:linkname libc_closedir libc_closedir\n//go:cgo_import_dynamic libc_closedir closedir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_readdir_r_trampoline), uintptr(dir), uintptr(unsafe.Pointer(entry)), uintptr(unsafe.Pointer(result)))\n\tres = Errno(r0)\n\treturn\n}\n\nfunc libc_readdir_r_trampoline()\n\n//go:linkname libc_readdir_r libc_readdir_r\n//go:cgo_import_dynamic libc_readdir_r readdir_r \"/usr/lib/libSystem.B.dylib\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.s",
    "content": "// go run mkasm_darwin.go arm\n// Code generated by the command above; DO NOT EDIT.\n\n// +build go1.13\n\n#include \"textflag.h\"\nTEXT ·libc_fdopendir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fdopendir(SB)\nTEXT ·libc_closedir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_closedir(SB)\nTEXT ·libc_readdir_r_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readdir_r(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go",
    "content": "// go run mksyscall.go -l32 -tags darwin,arm,go1.12 syscall_bsd.go syscall_darwin.go syscall_darwin_arm.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build darwin,arm,go1.12\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getgroups_trampoline()\n\n//go:linkname libc_getgroups libc_getgroups\n//go:cgo_import_dynamic libc_getgroups getgroups \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setgroups_trampoline()\n\n//go:linkname libc_setgroups libc_setgroups\n//go:cgo_import_dynamic libc_setgroups setgroups \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_wait4_trampoline), uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_wait4_trampoline()\n\n//go:linkname libc_wait4 libc_wait4\n//go:cgo_import_dynamic libc_wait4 wait4 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_accept_trampoline), uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_accept_trampoline()\n\n//go:linkname libc_accept libc_accept\n//go:cgo_import_dynamic libc_accept accept \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_bind_trampoline()\n\n//go:linkname libc_bind libc_bind\n//go:cgo_import_dynamic libc_bind bind \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_connect_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_connect_trampoline()\n\n//go:linkname libc_connect libc_connect\n//go:cgo_import_dynamic libc_connect connect \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_socket_trampoline), uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_socket_trampoline()\n\n//go:linkname libc_socket libc_socket\n//go:cgo_import_dynamic libc_socket socket \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_getsockopt_trampoline), uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsockopt_trampoline()\n\n//go:linkname libc_getsockopt libc_getsockopt\n//go:cgo_import_dynamic libc_getsockopt getsockopt \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setsockopt_trampoline), uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setsockopt_trampoline()\n\n//go:linkname libc_setsockopt libc_setsockopt\n//go:cgo_import_dynamic libc_setsockopt setsockopt \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getpeername_trampoline), uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpeername_trampoline()\n\n//go:linkname libc_getpeername libc_getpeername\n//go:cgo_import_dynamic libc_getpeername getpeername \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getsockname_trampoline), uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsockname_trampoline()\n\n//go:linkname libc_getsockname libc_getsockname\n//go:cgo_import_dynamic libc_getsockname getsockname \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_shutdown_trampoline), uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_shutdown_trampoline()\n\n//go:linkname libc_shutdown libc_shutdown\n//go:cgo_import_dynamic libc_shutdown shutdown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := syscall_rawSyscall6(funcPC(libc_socketpair_trampoline), uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_socketpair_trampoline()\n\n//go:linkname libc_socketpair libc_socketpair\n//go:cgo_import_dynamic libc_socketpair socketpair \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_recvfrom_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_recvfrom_trampoline()\n\n//go:linkname libc_recvfrom libc_recvfrom\n//go:cgo_import_dynamic libc_recvfrom recvfrom \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sendto_trampoline), uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendto_trampoline()\n\n//go:linkname libc_sendto libc_sendto\n//go:cgo_import_dynamic libc_sendto sendto \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_recvmsg_trampoline), uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_recvmsg_trampoline()\n\n//go:linkname libc_recvmsg libc_recvmsg\n//go:cgo_import_dynamic libc_recvmsg recvmsg \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_sendmsg_trampoline), uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendmsg_trampoline()\n\n//go:linkname libc_sendmsg libc_sendmsg\n//go:cgo_import_dynamic libc_sendmsg sendmsg \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_kevent_trampoline), uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kevent_trampoline()\n\n//go:linkname libc_kevent libc_kevent\n//go:cgo_import_dynamic libc_kevent kevent \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_utimes_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_utimes_trampoline()\n\n//go:linkname libc_utimes libc_utimes\n//go:cgo_import_dynamic libc_utimes utimes \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_futimes_trampoline), uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_futimes_trampoline()\n\n//go:linkname libc_futimes libc_futimes\n//go:cgo_import_dynamic libc_futimes futimes \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_poll_trampoline), uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_poll_trampoline()\n\n//go:linkname libc_poll libc_poll\n//go:cgo_import_dynamic libc_poll poll \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_madvise_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_madvise_trampoline()\n\n//go:linkname libc_madvise libc_madvise\n//go:cgo_import_dynamic libc_madvise madvise \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mlock_trampoline), uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mlock_trampoline()\n\n//go:linkname libc_mlock libc_mlock\n//go:cgo_import_dynamic libc_mlock mlock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_mlockall_trampoline), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mlockall_trampoline()\n\n//go:linkname libc_mlockall libc_mlockall\n//go:cgo_import_dynamic libc_mlockall mlockall \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mprotect_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mprotect_trampoline()\n\n//go:linkname libc_mprotect libc_mprotect\n//go:cgo_import_dynamic libc_mprotect mprotect \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_msync_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_msync_trampoline()\n\n//go:linkname libc_msync libc_msync\n//go:cgo_import_dynamic libc_msync msync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_munlock_trampoline), uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munlock_trampoline()\n\n//go:linkname libc_munlock libc_munlock\n//go:cgo_import_dynamic libc_munlock munlock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_munlockall_trampoline), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munlockall_trampoline()\n\n//go:linkname libc_munlockall libc_munlockall\n//go:cgo_import_dynamic libc_munlockall munlockall \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (r int, w int, err error) {\n\tr0, r1, e1 := syscall_rawSyscall(funcPC(libc_pipe_trampoline), 0, 0, 0)\n\tr = int(r0)\n\tw = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pipe_trampoline()\n\n//go:linkname libc_pipe libc_pipe\n//go:cgo_import_dynamic libc_pipe pipe \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getxattr(path string, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_getxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getxattr_trampoline()\n\n//go:linkname libc_getxattr libc_getxattr\n//go:cgo_import_dynamic libc_getxattr getxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_fgetxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fgetxattr_trampoline()\n\n//go:linkname libc_fgetxattr libc_fgetxattr\n//go:cgo_import_dynamic libc_fgetxattr fgetxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setxattr(path string, attr string, data *byte, size int, position uint32, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(data)), uintptr(size), uintptr(position), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setxattr_trampoline()\n\n//go:linkname libc_setxattr libc_setxattr\n//go:cgo_import_dynamic libc_setxattr setxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fsetxattr(fd int, attr string, data *byte, size int, position uint32, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fsetxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(data)), uintptr(size), uintptr(position), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fsetxattr_trampoline()\n\n//go:linkname libc_fsetxattr libc_fsetxattr\n//go:cgo_import_dynamic libc_fsetxattr fsetxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc removexattr(path string, attr string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_removexattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_removexattr_trampoline()\n\n//go:linkname libc_removexattr libc_removexattr\n//go:cgo_import_dynamic libc_removexattr removexattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fremovexattr(fd int, attr string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_fremovexattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fremovexattr_trampoline()\n\n//go:linkname libc_fremovexattr libc_fremovexattr\n//go:cgo_import_dynamic libc_fremovexattr fremovexattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc listxattr(path string, dest *byte, size int, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_listxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(options), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_listxattr_trampoline()\n\n//go:linkname libc_listxattr libc_listxattr\n//go:cgo_import_dynamic libc_listxattr listxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc flistxattr(fd int, dest *byte, size int, options int) (sz int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_flistxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(options), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_flistxattr_trampoline()\n\n//go:linkname libc_flistxattr libc_flistxattr\n//go:cgo_import_dynamic libc_flistxattr flistxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, size uintptr, options int) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setattrlist_trampoline), uintptr(unsafe.Pointer(path)), uintptr(list), uintptr(buf), uintptr(size), uintptr(options), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setattrlist_trampoline()\n\n//go:linkname libc_setattrlist libc_setattrlist\n//go:cgo_import_dynamic libc_setattrlist setattrlist \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fcntl(fd int, cmd int, arg int) (val int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_fcntl_trampoline), uintptr(fd), uintptr(cmd), uintptr(arg))\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fcntl_trampoline()\n\n//go:linkname libc_fcntl libc_fcntl\n//go:cgo_import_dynamic libc_fcntl fcntl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kill(pid int, signum int, posix int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_kill_trampoline), uintptr(pid), uintptr(signum), uintptr(posix))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kill_trampoline()\n\n//go:linkname libc_kill libc_kill\n//go:cgo_import_dynamic libc_kill kill \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_ioctl_trampoline), uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ioctl_trampoline()\n\n//go:linkname libc_ioctl libc_ioctl\n//go:cgo_import_dynamic libc_ioctl ioctl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sysctl_trampoline), uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sysctl_trampoline()\n\n//go:linkname libc_sysctl libc_sysctl\n//go:cgo_import_dynamic libc_sysctl sysctl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe.Pointer, flags int) (err error) {\n\t_, _, e1 := syscall_syscall9(funcPC(libc_sendfile_trampoline), uintptr(infd), uintptr(outfd), uintptr(offset), uintptr(offset>>32), uintptr(unsafe.Pointer(len)), uintptr(hdtr), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendfile_trampoline()\n\n//go:linkname libc_sendfile libc_sendfile\n//go:cgo_import_dynamic libc_sendfile sendfile \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_access_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_access_trampoline()\n\n//go:linkname libc_access libc_access\n//go:cgo_import_dynamic libc_access access \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_adjtime_trampoline), uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_adjtime_trampoline()\n\n//go:linkname libc_adjtime libc_adjtime\n//go:cgo_import_dynamic libc_adjtime adjtime \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chdir_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chdir_trampoline()\n\n//go:linkname libc_chdir libc_chdir\n//go:cgo_import_dynamic libc_chdir chdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chflags_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chflags_trampoline()\n\n//go:linkname libc_chflags libc_chflags\n//go:cgo_import_dynamic libc_chflags chflags \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chmod_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chmod_trampoline()\n\n//go:linkname libc_chmod libc_chmod\n//go:cgo_import_dynamic libc_chmod chmod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chown_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chown_trampoline()\n\n//go:linkname libc_chown libc_chown\n//go:cgo_import_dynamic libc_chown chown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chroot_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chroot_trampoline()\n\n//go:linkname libc_chroot libc_chroot\n//go:cgo_import_dynamic libc_chroot chroot \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ClockGettime(clockid int32, time *Timespec) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_clock_gettime_trampoline), uintptr(clockid), uintptr(unsafe.Pointer(time)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clock_gettime_trampoline()\n\n//go:linkname libc_clock_gettime libc_clock_gettime\n//go:cgo_import_dynamic libc_clock_gettime clock_gettime \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_close_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_close_trampoline()\n\n//go:linkname libc_close libc_close\n//go:cgo_import_dynamic libc_close close \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Clonefile(src string, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(src)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_clonefile_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clonefile_trampoline()\n\n//go:linkname libc_clonefile libc_clonefile\n//go:cgo_import_dynamic libc_clonefile clonefile \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Clonefileat(srcDirfd int, src string, dstDirfd int, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(src)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_clonefileat_trampoline), uintptr(srcDirfd), uintptr(unsafe.Pointer(_p0)), uintptr(dstDirfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clonefileat_trampoline()\n\n//go:linkname libc_clonefileat libc_clonefileat\n//go:cgo_import_dynamic libc_clonefileat clonefileat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_dup_trampoline), uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_dup_trampoline()\n\n//go:linkname libc_dup libc_dup\n//go:cgo_import_dynamic libc_dup dup \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_dup2_trampoline), uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_dup2_trampoline()\n\n//go:linkname libc_dup2 libc_dup2\n//go:cgo_import_dynamic libc_dup2 dup2 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exchangedata(path1 string, path2 string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path1)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(path2)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_exchangedata_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_exchangedata_trampoline()\n\n//go:linkname libc_exchangedata libc_exchangedata\n//go:cgo_import_dynamic libc_exchangedata exchangedata \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tsyscall_syscall(funcPC(libc_exit_trampoline), uintptr(code), 0, 0)\n\treturn\n}\n\nfunc libc_exit_trampoline()\n\n//go:linkname libc_exit libc_exit\n//go:cgo_import_dynamic libc_exit exit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_faccessat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_faccessat_trampoline()\n\n//go:linkname libc_faccessat libc_faccessat\n//go:cgo_import_dynamic libc_faccessat faccessat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchdir_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchdir_trampoline()\n\n//go:linkname libc_fchdir libc_fchdir\n//go:cgo_import_dynamic libc_fchdir fchdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchflags_trampoline), uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchflags_trampoline()\n\n//go:linkname libc_fchflags libc_fchflags\n//go:cgo_import_dynamic libc_fchflags fchflags \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchmod_trampoline), uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchmod_trampoline()\n\n//go:linkname libc_fchmod libc_fchmod\n//go:cgo_import_dynamic libc_fchmod fchmod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fchmodat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchmodat_trampoline()\n\n//go:linkname libc_fchmodat libc_fchmodat\n//go:cgo_import_dynamic libc_fchmodat fchmodat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchown_trampoline), uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchown_trampoline()\n\n//go:linkname libc_fchown libc_fchown\n//go:cgo_import_dynamic libc_fchown fchown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fchownat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchownat_trampoline()\n\n//go:linkname libc_fchownat libc_fchownat\n//go:cgo_import_dynamic libc_fchownat fchownat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fclonefileat(srcDirfd int, dstDirfd int, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fclonefileat_trampoline), uintptr(srcDirfd), uintptr(dstDirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fclonefileat_trampoline()\n\n//go:linkname libc_fclonefileat libc_fclonefileat\n//go:cgo_import_dynamic libc_fclonefileat fclonefileat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_flock_trampoline), uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_flock_trampoline()\n\n//go:linkname libc_flock libc_flock\n//go:cgo_import_dynamic libc_flock flock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_fpathconf_trampoline), uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fpathconf_trampoline()\n\n//go:linkname libc_fpathconf libc_fpathconf\n//go:cgo_import_dynamic libc_fpathconf fpathconf \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fsync_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fsync_trampoline()\n\n//go:linkname libc_fsync libc_fsync\n//go:cgo_import_dynamic libc_fsync fsync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_ftruncate_trampoline), uintptr(fd), uintptr(length), uintptr(length>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ftruncate_trampoline()\n\n//go:linkname libc_ftruncate libc_ftruncate\n//go:cgo_import_dynamic libc_ftruncate ftruncate \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getcwd_trampoline), uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getcwd_trampoline()\n\n//go:linkname libc_getcwd libc_getcwd\n//go:cgo_import_dynamic libc_getcwd getcwd \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdtablesize() (size int) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_getdtablesize_trampoline), 0, 0, 0)\n\tsize = int(r0)\n\treturn\n}\n\nfunc libc_getdtablesize_trampoline()\n\n//go:linkname libc_getdtablesize libc_getdtablesize\n//go:cgo_import_dynamic libc_getdtablesize getdtablesize \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getegid_trampoline), 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\nfunc libc_getegid_trampoline()\n\n//go:linkname libc_getegid libc_getegid\n//go:cgo_import_dynamic libc_getegid getegid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_geteuid_trampoline), 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\nfunc libc_geteuid_trampoline()\n\n//go:linkname libc_geteuid libc_geteuid\n//go:cgo_import_dynamic libc_geteuid geteuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getgid_trampoline), 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\nfunc libc_getgid_trampoline()\n\n//go:linkname libc_getgid libc_getgid\n//go:cgo_import_dynamic libc_getgid getgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getpgid_trampoline), uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpgid_trampoline()\n\n//go:linkname libc_getpgid libc_getpgid\n//go:cgo_import_dynamic libc_getpgid getpgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getpgrp_trampoline), 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\nfunc libc_getpgrp_trampoline()\n\n//go:linkname libc_getpgrp libc_getpgrp\n//go:cgo_import_dynamic libc_getpgrp getpgrp \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getpid_trampoline), 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\nfunc libc_getpid_trampoline()\n\n//go:linkname libc_getpid libc_getpid\n//go:cgo_import_dynamic libc_getpid getpid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getppid_trampoline), 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\nfunc libc_getppid_trampoline()\n\n//go:linkname libc_getppid libc_getppid\n//go:cgo_import_dynamic libc_getppid getppid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getpriority_trampoline), uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpriority_trampoline()\n\n//go:linkname libc_getpriority libc_getpriority\n//go:cgo_import_dynamic libc_getpriority getpriority \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getrlimit_trampoline()\n\n//go:linkname libc_getrlimit libc_getrlimit\n//go:cgo_import_dynamic libc_getrlimit getrlimit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getrusage_trampoline), uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getrusage_trampoline()\n\n//go:linkname libc_getrusage libc_getrusage\n//go:cgo_import_dynamic libc_getrusage getrusage \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getsid_trampoline), uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsid_trampoline()\n\n//go:linkname libc_getsid libc_getsid\n//go:cgo_import_dynamic libc_getsid getsid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_gettimeofday_trampoline), uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_gettimeofday_trampoline()\n\n//go:linkname libc_gettimeofday libc_gettimeofday\n//go:cgo_import_dynamic libc_gettimeofday gettimeofday \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getuid_trampoline), 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\nfunc libc_getuid_trampoline()\n\n//go:linkname libc_getuid libc_getuid\n//go:cgo_import_dynamic libc_getuid getuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_issetugid_trampoline), 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\nfunc libc_issetugid_trampoline()\n\n//go:linkname libc_issetugid libc_issetugid\n//go:cgo_import_dynamic libc_issetugid issetugid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_kqueue_trampoline), 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kqueue_trampoline()\n\n//go:linkname libc_kqueue libc_kqueue\n//go:cgo_import_dynamic libc_kqueue kqueue \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_lchown_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lchown_trampoline()\n\n//go:linkname libc_lchown libc_lchown\n//go:cgo_import_dynamic libc_lchown lchown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_link_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_link_trampoline()\n\n//go:linkname libc_link libc_link\n//go:cgo_import_dynamic libc_link link \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_linkat_trampoline), uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_linkat_trampoline()\n\n//go:linkname libc_linkat libc_linkat\n//go:cgo_import_dynamic libc_linkat linkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_listen_trampoline), uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_listen_trampoline()\n\n//go:linkname libc_listen libc_listen\n//go:cgo_import_dynamic libc_listen listen \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkdir_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkdir_trampoline()\n\n//go:linkname libc_mkdir libc_mkdir\n//go:cgo_import_dynamic libc_mkdir mkdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkdirat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkdirat_trampoline()\n\n//go:linkname libc_mkdirat libc_mkdirat\n//go:cgo_import_dynamic libc_mkdirat mkdirat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkfifo_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkfifo_trampoline()\n\n//go:linkname libc_mkfifo libc_mkfifo\n//go:cgo_import_dynamic libc_mkfifo mkfifo \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mknod_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mknod_trampoline()\n\n//go:linkname libc_mknod libc_mknod\n//go:cgo_import_dynamic libc_mknod mknod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_open_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_open_trampoline()\n\n//go:linkname libc_open libc_open\n//go:cgo_import_dynamic libc_open open \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_openat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_openat_trampoline()\n\n//go:linkname libc_openat libc_openat\n//go:cgo_import_dynamic libc_openat openat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_pathconf_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pathconf_trampoline()\n\n//go:linkname libc_pathconf libc_pathconf\n//go:cgo_import_dynamic libc_pathconf pathconf \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_pread_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), uintptr(offset>>32), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pread_trampoline()\n\n//go:linkname libc_pread libc_pread\n//go:cgo_import_dynamic libc_pread pread \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_pwrite_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), uintptr(offset>>32), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pwrite_trampoline()\n\n//go:linkname libc_pwrite libc_pwrite\n//go:cgo_import_dynamic libc_pwrite pwrite \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_read_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_read_trampoline()\n\n//go:linkname libc_read libc_read\n//go:cgo_import_dynamic libc_read read \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_readlink_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_readlink_trampoline()\n\n//go:linkname libc_readlink libc_readlink\n//go:cgo_import_dynamic libc_readlink readlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_readlinkat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_readlinkat_trampoline()\n\n//go:linkname libc_readlinkat libc_readlinkat\n//go:cgo_import_dynamic libc_readlinkat readlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_rename_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_rename_trampoline()\n\n//go:linkname libc_rename libc_rename\n//go:cgo_import_dynamic libc_rename rename \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_renameat_trampoline), uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_renameat_trampoline()\n\n//go:linkname libc_renameat libc_renameat\n//go:cgo_import_dynamic libc_renameat renameat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_revoke_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_revoke_trampoline()\n\n//go:linkname libc_revoke libc_revoke\n//go:cgo_import_dynamic libc_revoke revoke \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_rmdir_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_rmdir_trampoline()\n\n//go:linkname libc_rmdir libc_rmdir\n//go:cgo_import_dynamic libc_rmdir rmdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, r1, e1 := syscall_syscall6(funcPC(libc_lseek_trampoline), uintptr(fd), uintptr(offset), uintptr(offset>>32), uintptr(whence), 0, 0)\n\tnewoffset = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lseek_trampoline()\n\n//go:linkname libc_lseek libc_lseek\n//go:cgo_import_dynamic libc_lseek lseek \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_select_trampoline), uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_select_trampoline()\n\n//go:linkname libc_select libc_select\n//go:cgo_import_dynamic libc_select select \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setegid_trampoline), uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setegid_trampoline()\n\n//go:linkname libc_setegid libc_setegid\n//go:cgo_import_dynamic libc_setegid setegid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_seteuid_trampoline), uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_seteuid_trampoline()\n\n//go:linkname libc_seteuid libc_seteuid\n//go:cgo_import_dynamic libc_seteuid seteuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setgid_trampoline), uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setgid_trampoline()\n\n//go:linkname libc_setgid libc_setgid\n//go:cgo_import_dynamic libc_setgid setgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_setlogin_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setlogin_trampoline()\n\n//go:linkname libc_setlogin libc_setlogin\n//go:cgo_import_dynamic libc_setlogin setlogin \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setpgid_trampoline), uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setpgid_trampoline()\n\n//go:linkname libc_setpgid libc_setpgid\n//go:cgo_import_dynamic libc_setpgid setpgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setpriority_trampoline), uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setpriority_trampoline()\n\n//go:linkname libc_setpriority libc_setpriority\n//go:cgo_import_dynamic libc_setpriority setpriority \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setprivexec(flag int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setprivexec_trampoline), uintptr(flag), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setprivexec_trampoline()\n\n//go:linkname libc_setprivexec libc_setprivexec\n//go:cgo_import_dynamic libc_setprivexec setprivexec \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setregid_trampoline), uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setregid_trampoline()\n\n//go:linkname libc_setregid libc_setregid\n//go:cgo_import_dynamic libc_setregid setregid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setreuid_trampoline), uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setreuid_trampoline()\n\n//go:linkname libc_setreuid libc_setreuid\n//go:cgo_import_dynamic libc_setreuid setreuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setrlimit_trampoline()\n\n//go:linkname libc_setrlimit libc_setrlimit\n//go:cgo_import_dynamic libc_setrlimit setrlimit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_setsid_trampoline), 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setsid_trampoline()\n\n//go:linkname libc_setsid libc_setsid\n//go:cgo_import_dynamic libc_setsid setsid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_settimeofday_trampoline), uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_settimeofday_trampoline()\n\n//go:linkname libc_settimeofday libc_settimeofday\n//go:cgo_import_dynamic libc_settimeofday settimeofday \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setuid_trampoline), uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setuid_trampoline()\n\n//go:linkname libc_setuid libc_setuid\n//go:cgo_import_dynamic libc_setuid setuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_symlink_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_symlink_trampoline()\n\n//go:linkname libc_symlink libc_symlink\n//go:cgo_import_dynamic libc_symlink symlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_symlinkat_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_symlinkat_trampoline()\n\n//go:linkname libc_symlinkat libc_symlinkat\n//go:cgo_import_dynamic libc_symlinkat symlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_sync_trampoline), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sync_trampoline()\n\n//go:linkname libc_sync libc_sync\n//go:cgo_import_dynamic libc_sync sync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_truncate_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(length), uintptr(length>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_truncate_trampoline()\n\n//go:linkname libc_truncate libc_truncate\n//go:cgo_import_dynamic libc_truncate truncate \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_umask_trampoline), uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\nfunc libc_umask_trampoline()\n\n//go:linkname libc_umask libc_umask\n//go:cgo_import_dynamic libc_umask umask \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Undelete(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_undelete_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_undelete_trampoline()\n\n//go:linkname libc_undelete libc_undelete\n//go:cgo_import_dynamic libc_undelete undelete \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unlink_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unlink_trampoline()\n\n//go:linkname libc_unlink libc_unlink\n//go:cgo_import_dynamic libc_unlink unlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unlinkat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unlinkat_trampoline()\n\n//go:linkname libc_unlinkat libc_unlinkat\n//go:cgo_import_dynamic libc_unlinkat unlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unmount_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unmount_trampoline()\n\n//go:linkname libc_unmount libc_unmount\n//go:cgo_import_dynamic libc_unmount unmount \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_write_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_write_trampoline()\n\n//go:linkname libc_write libc_write\n//go:cgo_import_dynamic libc_write write \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := syscall_syscall9(funcPC(libc_mmap_trampoline), uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos), uintptr(pos>>32), 0, 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mmap_trampoline()\n\n//go:linkname libc_mmap libc_mmap\n//go:cgo_import_dynamic libc_mmap mmap \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_munmap_trampoline), uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munmap_trampoline()\n\n//go:linkname libc_munmap libc_munmap\n//go:cgo_import_dynamic libc_munmap munmap \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_read_trampoline), uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_write_trampoline), uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fstat_trampoline), uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstat_trampoline()\n\n//go:linkname libc_fstat libc_fstat\n//go:cgo_import_dynamic libc_fstat fstat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fstatat_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstatat_trampoline()\n\n//go:linkname libc_fstatat libc_fstatat\n//go:cgo_import_dynamic libc_fstatat fstatat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fstatfs_trampoline), uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstatfs_trampoline()\n\n//go:linkname libc_fstatfs libc_fstatfs\n//go:cgo_import_dynamic libc_fstatfs fstatfs \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getfsstat_trampoline), uintptr(buf), uintptr(size), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getfsstat_trampoline()\n\n//go:linkname libc_getfsstat libc_getfsstat\n//go:cgo_import_dynamic libc_getfsstat getfsstat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_lstat_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lstat_trampoline()\n\n//go:linkname libc_lstat libc_lstat\n//go:cgo_import_dynamic libc_lstat lstat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_stat_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_stat_trampoline()\n\n//go:linkname libc_stat libc_stat\n//go:cgo_import_dynamic libc_stat stat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_statfs_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_statfs_trampoline()\n\n//go:linkname libc_statfs libc_statfs\n//go:cgo_import_dynamic libc_statfs statfs \"/usr/lib/libSystem.B.dylib\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.s",
    "content": "// go run mkasm_darwin.go arm\n// Code generated by the command above; DO NOT EDIT.\n\n// +build go1.12\n\n#include \"textflag.h\"\nTEXT ·libc_getgroups_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getgroups(SB)\nTEXT ·libc_setgroups_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setgroups(SB)\nTEXT ·libc_wait4_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_wait4(SB)\nTEXT ·libc_accept_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_accept(SB)\nTEXT ·libc_bind_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_bind(SB)\nTEXT ·libc_connect_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_connect(SB)\nTEXT ·libc_socket_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_socket(SB)\nTEXT ·libc_getsockopt_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsockopt(SB)\nTEXT ·libc_setsockopt_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setsockopt(SB)\nTEXT ·libc_getpeername_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpeername(SB)\nTEXT ·libc_getsockname_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsockname(SB)\nTEXT ·libc_shutdown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_shutdown(SB)\nTEXT ·libc_socketpair_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_socketpair(SB)\nTEXT ·libc_recvfrom_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_recvfrom(SB)\nTEXT ·libc_sendto_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendto(SB)\nTEXT ·libc_recvmsg_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_recvmsg(SB)\nTEXT ·libc_sendmsg_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendmsg(SB)\nTEXT ·libc_kevent_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kevent(SB)\nTEXT ·libc_utimes_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_utimes(SB)\nTEXT ·libc_futimes_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_futimes(SB)\nTEXT ·libc_poll_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_poll(SB)\nTEXT ·libc_madvise_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_madvise(SB)\nTEXT ·libc_mlock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mlock(SB)\nTEXT ·libc_mlockall_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mlockall(SB)\nTEXT ·libc_mprotect_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mprotect(SB)\nTEXT ·libc_msync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_msync(SB)\nTEXT ·libc_munlock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munlock(SB)\nTEXT ·libc_munlockall_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munlockall(SB)\nTEXT ·libc_pipe_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pipe(SB)\nTEXT ·libc_getxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getxattr(SB)\nTEXT ·libc_fgetxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fgetxattr(SB)\nTEXT ·libc_setxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setxattr(SB)\nTEXT ·libc_fsetxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fsetxattr(SB)\nTEXT ·libc_removexattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_removexattr(SB)\nTEXT ·libc_fremovexattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fremovexattr(SB)\nTEXT ·libc_listxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_listxattr(SB)\nTEXT ·libc_flistxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_flistxattr(SB)\nTEXT ·libc_setattrlist_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setattrlist(SB)\nTEXT ·libc_fcntl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fcntl(SB)\nTEXT ·libc_kill_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kill(SB)\nTEXT ·libc_ioctl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ioctl(SB)\nTEXT ·libc_sysctl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sysctl(SB)\nTEXT ·libc_sendfile_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendfile(SB)\nTEXT ·libc_access_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_access(SB)\nTEXT ·libc_adjtime_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_adjtime(SB)\nTEXT ·libc_chdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chdir(SB)\nTEXT ·libc_chflags_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chflags(SB)\nTEXT ·libc_chmod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chmod(SB)\nTEXT ·libc_chown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chown(SB)\nTEXT ·libc_chroot_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chroot(SB)\nTEXT ·libc_clock_gettime_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clock_gettime(SB)\nTEXT ·libc_close_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_close(SB)\nTEXT ·libc_clonefile_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clonefile(SB)\nTEXT ·libc_clonefileat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clonefileat(SB)\nTEXT ·libc_dup_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_dup(SB)\nTEXT ·libc_dup2_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_dup2(SB)\nTEXT ·libc_exchangedata_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_exchangedata(SB)\nTEXT ·libc_exit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_exit(SB)\nTEXT ·libc_faccessat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_faccessat(SB)\nTEXT ·libc_fchdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchdir(SB)\nTEXT ·libc_fchflags_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchflags(SB)\nTEXT ·libc_fchmod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchmod(SB)\nTEXT ·libc_fchmodat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchmodat(SB)\nTEXT ·libc_fchown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchown(SB)\nTEXT ·libc_fchownat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchownat(SB)\nTEXT ·libc_fclonefileat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fclonefileat(SB)\nTEXT ·libc_flock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_flock(SB)\nTEXT ·libc_fpathconf_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fpathconf(SB)\nTEXT ·libc_fsync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fsync(SB)\nTEXT ·libc_ftruncate_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ftruncate(SB)\nTEXT ·libc_getcwd_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getcwd(SB)\nTEXT ·libc_getdtablesize_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getdtablesize(SB)\nTEXT ·libc_getegid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getegid(SB)\nTEXT ·libc_geteuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_geteuid(SB)\nTEXT ·libc_getgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getgid(SB)\nTEXT ·libc_getpgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpgid(SB)\nTEXT ·libc_getpgrp_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpgrp(SB)\nTEXT ·libc_getpid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpid(SB)\nTEXT ·libc_getppid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getppid(SB)\nTEXT ·libc_getpriority_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpriority(SB)\nTEXT ·libc_getrlimit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getrlimit(SB)\nTEXT ·libc_getrusage_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getrusage(SB)\nTEXT ·libc_getsid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsid(SB)\nTEXT ·libc_gettimeofday_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_gettimeofday(SB)\nTEXT ·libc_getuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getuid(SB)\nTEXT ·libc_issetugid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_issetugid(SB)\nTEXT ·libc_kqueue_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kqueue(SB)\nTEXT ·libc_lchown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lchown(SB)\nTEXT ·libc_link_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_link(SB)\nTEXT ·libc_linkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_linkat(SB)\nTEXT ·libc_listen_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_listen(SB)\nTEXT ·libc_mkdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkdir(SB)\nTEXT ·libc_mkdirat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkdirat(SB)\nTEXT ·libc_mkfifo_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkfifo(SB)\nTEXT ·libc_mknod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mknod(SB)\nTEXT ·libc_open_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_open(SB)\nTEXT ·libc_openat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_openat(SB)\nTEXT ·libc_pathconf_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pathconf(SB)\nTEXT ·libc_pread_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pread(SB)\nTEXT ·libc_pwrite_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pwrite(SB)\nTEXT ·libc_read_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_read(SB)\nTEXT ·libc_readlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readlink(SB)\nTEXT ·libc_readlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readlinkat(SB)\nTEXT ·libc_rename_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_rename(SB)\nTEXT ·libc_renameat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_renameat(SB)\nTEXT ·libc_revoke_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_revoke(SB)\nTEXT ·libc_rmdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_rmdir(SB)\nTEXT ·libc_lseek_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lseek(SB)\nTEXT ·libc_select_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_select(SB)\nTEXT ·libc_setegid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setegid(SB)\nTEXT ·libc_seteuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_seteuid(SB)\nTEXT ·libc_setgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setgid(SB)\nTEXT ·libc_setlogin_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setlogin(SB)\nTEXT ·libc_setpgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setpgid(SB)\nTEXT ·libc_setpriority_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setpriority(SB)\nTEXT ·libc_setprivexec_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setprivexec(SB)\nTEXT ·libc_setregid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setregid(SB)\nTEXT ·libc_setreuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setreuid(SB)\nTEXT ·libc_setrlimit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setrlimit(SB)\nTEXT ·libc_setsid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setsid(SB)\nTEXT ·libc_settimeofday_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_settimeofday(SB)\nTEXT ·libc_setuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setuid(SB)\nTEXT ·libc_symlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_symlink(SB)\nTEXT ·libc_symlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_symlinkat(SB)\nTEXT ·libc_sync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sync(SB)\nTEXT ·libc_truncate_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_truncate(SB)\nTEXT ·libc_umask_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_umask(SB)\nTEXT ·libc_undelete_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_undelete(SB)\nTEXT ·libc_unlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unlink(SB)\nTEXT ·libc_unlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unlinkat(SB)\nTEXT ·libc_unmount_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unmount(SB)\nTEXT ·libc_write_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_write(SB)\nTEXT ·libc_mmap_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mmap(SB)\nTEXT ·libc_munmap_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munmap(SB)\nTEXT ·libc_fstat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstat(SB)\nTEXT ·libc_fstatat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstatat(SB)\nTEXT ·libc_fstatfs_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstatfs(SB)\nTEXT ·libc_getfsstat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getfsstat(SB)\nTEXT ·libc_lstat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lstat(SB)\nTEXT ·libc_stat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_stat(SB)\nTEXT ·libc_statfs_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_statfs(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.go",
    "content": "// go run mksyscall.go -tags darwin,arm64,go1.13 syscall_darwin.1_13.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build darwin,arm64,go1.13\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc closedir(dir uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_closedir_trampoline), uintptr(dir), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_closedir_trampoline()\n\n//go:linkname libc_closedir libc_closedir\n//go:cgo_import_dynamic libc_closedir closedir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_readdir_r_trampoline), uintptr(dir), uintptr(unsafe.Pointer(entry)), uintptr(unsafe.Pointer(result)))\n\tres = Errno(r0)\n\treturn\n}\n\nfunc libc_readdir_r_trampoline()\n\n//go:linkname libc_readdir_r libc_readdir_r\n//go:cgo_import_dynamic libc_readdir_r readdir_r \"/usr/lib/libSystem.B.dylib\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.s",
    "content": "// go run mkasm_darwin.go arm64\n// Code generated by the command above; DO NOT EDIT.\n\n// +build go1.13\n\n#include \"textflag.h\"\nTEXT ·libc_fdopendir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fdopendir(SB)\nTEXT ·libc_closedir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_closedir(SB)\nTEXT ·libc_readdir_r_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readdir_r(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go",
    "content": "// go run mksyscall.go -tags darwin,arm64,go1.12 syscall_bsd.go syscall_darwin.go syscall_darwin_arm64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build darwin,arm64,go1.12\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getgroups_trampoline()\n\n//go:linkname libc_getgroups libc_getgroups\n//go:cgo_import_dynamic libc_getgroups getgroups \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setgroups_trampoline()\n\n//go:linkname libc_setgroups libc_setgroups\n//go:cgo_import_dynamic libc_setgroups setgroups \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_wait4_trampoline), uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_wait4_trampoline()\n\n//go:linkname libc_wait4 libc_wait4\n//go:cgo_import_dynamic libc_wait4 wait4 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_accept_trampoline), uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_accept_trampoline()\n\n//go:linkname libc_accept libc_accept\n//go:cgo_import_dynamic libc_accept accept \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_bind_trampoline()\n\n//go:linkname libc_bind libc_bind\n//go:cgo_import_dynamic libc_bind bind \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_connect_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_connect_trampoline()\n\n//go:linkname libc_connect libc_connect\n//go:cgo_import_dynamic libc_connect connect \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_socket_trampoline), uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_socket_trampoline()\n\n//go:linkname libc_socket libc_socket\n//go:cgo_import_dynamic libc_socket socket \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_getsockopt_trampoline), uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsockopt_trampoline()\n\n//go:linkname libc_getsockopt libc_getsockopt\n//go:cgo_import_dynamic libc_getsockopt getsockopt \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setsockopt_trampoline), uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setsockopt_trampoline()\n\n//go:linkname libc_setsockopt libc_setsockopt\n//go:cgo_import_dynamic libc_setsockopt setsockopt \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getpeername_trampoline), uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpeername_trampoline()\n\n//go:linkname libc_getpeername libc_getpeername\n//go:cgo_import_dynamic libc_getpeername getpeername \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getsockname_trampoline), uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsockname_trampoline()\n\n//go:linkname libc_getsockname libc_getsockname\n//go:cgo_import_dynamic libc_getsockname getsockname \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_shutdown_trampoline), uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_shutdown_trampoline()\n\n//go:linkname libc_shutdown libc_shutdown\n//go:cgo_import_dynamic libc_shutdown shutdown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := syscall_rawSyscall6(funcPC(libc_socketpair_trampoline), uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_socketpair_trampoline()\n\n//go:linkname libc_socketpair libc_socketpair\n//go:cgo_import_dynamic libc_socketpair socketpair \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_recvfrom_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_recvfrom_trampoline()\n\n//go:linkname libc_recvfrom libc_recvfrom\n//go:cgo_import_dynamic libc_recvfrom recvfrom \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sendto_trampoline), uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendto_trampoline()\n\n//go:linkname libc_sendto libc_sendto\n//go:cgo_import_dynamic libc_sendto sendto \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_recvmsg_trampoline), uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_recvmsg_trampoline()\n\n//go:linkname libc_recvmsg libc_recvmsg\n//go:cgo_import_dynamic libc_recvmsg recvmsg \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_sendmsg_trampoline), uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendmsg_trampoline()\n\n//go:linkname libc_sendmsg libc_sendmsg\n//go:cgo_import_dynamic libc_sendmsg sendmsg \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_kevent_trampoline), uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kevent_trampoline()\n\n//go:linkname libc_kevent libc_kevent\n//go:cgo_import_dynamic libc_kevent kevent \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_utimes_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_utimes_trampoline()\n\n//go:linkname libc_utimes libc_utimes\n//go:cgo_import_dynamic libc_utimes utimes \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_futimes_trampoline), uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_futimes_trampoline()\n\n//go:linkname libc_futimes libc_futimes\n//go:cgo_import_dynamic libc_futimes futimes \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_poll_trampoline), uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_poll_trampoline()\n\n//go:linkname libc_poll libc_poll\n//go:cgo_import_dynamic libc_poll poll \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_madvise_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_madvise_trampoline()\n\n//go:linkname libc_madvise libc_madvise\n//go:cgo_import_dynamic libc_madvise madvise \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mlock_trampoline), uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mlock_trampoline()\n\n//go:linkname libc_mlock libc_mlock\n//go:cgo_import_dynamic libc_mlock mlock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_mlockall_trampoline), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mlockall_trampoline()\n\n//go:linkname libc_mlockall libc_mlockall\n//go:cgo_import_dynamic libc_mlockall mlockall \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mprotect_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mprotect_trampoline()\n\n//go:linkname libc_mprotect libc_mprotect\n//go:cgo_import_dynamic libc_mprotect mprotect \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_msync_trampoline), uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_msync_trampoline()\n\n//go:linkname libc_msync libc_msync\n//go:cgo_import_dynamic libc_msync msync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_munlock_trampoline), uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munlock_trampoline()\n\n//go:linkname libc_munlock libc_munlock\n//go:cgo_import_dynamic libc_munlock munlock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_munlockall_trampoline), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munlockall_trampoline()\n\n//go:linkname libc_munlockall libc_munlockall\n//go:cgo_import_dynamic libc_munlockall munlockall \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (r int, w int, err error) {\n\tr0, r1, e1 := syscall_rawSyscall(funcPC(libc_pipe_trampoline), 0, 0, 0)\n\tr = int(r0)\n\tw = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pipe_trampoline()\n\n//go:linkname libc_pipe libc_pipe\n//go:cgo_import_dynamic libc_pipe pipe \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getxattr(path string, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_getxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getxattr_trampoline()\n\n//go:linkname libc_getxattr libc_getxattr\n//go:cgo_import_dynamic libc_getxattr getxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_fgetxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fgetxattr_trampoline()\n\n//go:linkname libc_fgetxattr libc_fgetxattr\n//go:cgo_import_dynamic libc_fgetxattr fgetxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setxattr(path string, attr string, data *byte, size int, position uint32, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(data)), uintptr(size), uintptr(position), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setxattr_trampoline()\n\n//go:linkname libc_setxattr libc_setxattr\n//go:cgo_import_dynamic libc_setxattr setxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fsetxattr(fd int, attr string, data *byte, size int, position uint32, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fsetxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(data)), uintptr(size), uintptr(position), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fsetxattr_trampoline()\n\n//go:linkname libc_fsetxattr libc_fsetxattr\n//go:cgo_import_dynamic libc_fsetxattr fsetxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc removexattr(path string, attr string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_removexattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_removexattr_trampoline()\n\n//go:linkname libc_removexattr libc_removexattr\n//go:cgo_import_dynamic libc_removexattr removexattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fremovexattr(fd int, attr string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_fremovexattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fremovexattr_trampoline()\n\n//go:linkname libc_fremovexattr libc_fremovexattr\n//go:cgo_import_dynamic libc_fremovexattr fremovexattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc listxattr(path string, dest *byte, size int, options int) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_listxattr_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(options), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_listxattr_trampoline()\n\n//go:linkname libc_listxattr libc_listxattr\n//go:cgo_import_dynamic libc_listxattr listxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc flistxattr(fd int, dest *byte, size int, options int) (sz int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_flistxattr_trampoline), uintptr(fd), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(options), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_flistxattr_trampoline()\n\n//go:linkname libc_flistxattr libc_flistxattr\n//go:cgo_import_dynamic libc_flistxattr flistxattr \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, size uintptr, options int) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_setattrlist_trampoline), uintptr(unsafe.Pointer(path)), uintptr(list), uintptr(buf), uintptr(size), uintptr(options), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setattrlist_trampoline()\n\n//go:linkname libc_setattrlist libc_setattrlist\n//go:cgo_import_dynamic libc_setattrlist setattrlist \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fcntl(fd int, cmd int, arg int) (val int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_fcntl_trampoline), uintptr(fd), uintptr(cmd), uintptr(arg))\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fcntl_trampoline()\n\n//go:linkname libc_fcntl libc_fcntl\n//go:cgo_import_dynamic libc_fcntl fcntl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kill(pid int, signum int, posix int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_kill_trampoline), uintptr(pid), uintptr(signum), uintptr(posix))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kill_trampoline()\n\n//go:linkname libc_kill libc_kill\n//go:cgo_import_dynamic libc_kill kill \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_ioctl_trampoline), uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ioctl_trampoline()\n\n//go:linkname libc_ioctl libc_ioctl\n//go:cgo_import_dynamic libc_ioctl ioctl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sysctl_trampoline), uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sysctl_trampoline()\n\n//go:linkname libc_sysctl libc_sysctl\n//go:cgo_import_dynamic libc_sysctl sysctl \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe.Pointer, flags int) (err error) {\n\t_, _, e1 := syscall_syscall6(funcPC(libc_sendfile_trampoline), uintptr(infd), uintptr(outfd), uintptr(offset), uintptr(unsafe.Pointer(len)), uintptr(hdtr), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sendfile_trampoline()\n\n//go:linkname libc_sendfile libc_sendfile\n//go:cgo_import_dynamic libc_sendfile sendfile \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_access_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_access_trampoline()\n\n//go:linkname libc_access libc_access\n//go:cgo_import_dynamic libc_access access \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_adjtime_trampoline), uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_adjtime_trampoline()\n\n//go:linkname libc_adjtime libc_adjtime\n//go:cgo_import_dynamic libc_adjtime adjtime \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chdir_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chdir_trampoline()\n\n//go:linkname libc_chdir libc_chdir\n//go:cgo_import_dynamic libc_chdir chdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chflags_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chflags_trampoline()\n\n//go:linkname libc_chflags libc_chflags\n//go:cgo_import_dynamic libc_chflags chflags \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chmod_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chmod_trampoline()\n\n//go:linkname libc_chmod libc_chmod\n//go:cgo_import_dynamic libc_chmod chmod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chown_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chown_trampoline()\n\n//go:linkname libc_chown libc_chown\n//go:cgo_import_dynamic libc_chown chown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_chroot_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_chroot_trampoline()\n\n//go:linkname libc_chroot libc_chroot\n//go:cgo_import_dynamic libc_chroot chroot \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ClockGettime(clockid int32, time *Timespec) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_clock_gettime_trampoline), uintptr(clockid), uintptr(unsafe.Pointer(time)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clock_gettime_trampoline()\n\n//go:linkname libc_clock_gettime libc_clock_gettime\n//go:cgo_import_dynamic libc_clock_gettime clock_gettime \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_close_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_close_trampoline()\n\n//go:linkname libc_close libc_close\n//go:cgo_import_dynamic libc_close close \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Clonefile(src string, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(src)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_clonefile_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clonefile_trampoline()\n\n//go:linkname libc_clonefile libc_clonefile\n//go:cgo_import_dynamic libc_clonefile clonefile \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Clonefileat(srcDirfd int, src string, dstDirfd int, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(src)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_clonefileat_trampoline), uintptr(srcDirfd), uintptr(unsafe.Pointer(_p0)), uintptr(dstDirfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_clonefileat_trampoline()\n\n//go:linkname libc_clonefileat libc_clonefileat\n//go:cgo_import_dynamic libc_clonefileat clonefileat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_dup_trampoline), uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_dup_trampoline()\n\n//go:linkname libc_dup libc_dup\n//go:cgo_import_dynamic libc_dup dup \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_dup2_trampoline), uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_dup2_trampoline()\n\n//go:linkname libc_dup2 libc_dup2\n//go:cgo_import_dynamic libc_dup2 dup2 \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exchangedata(path1 string, path2 string, options int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path1)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(path2)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_exchangedata_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(options))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_exchangedata_trampoline()\n\n//go:linkname libc_exchangedata libc_exchangedata\n//go:cgo_import_dynamic libc_exchangedata exchangedata \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tsyscall_syscall(funcPC(libc_exit_trampoline), uintptr(code), 0, 0)\n\treturn\n}\n\nfunc libc_exit_trampoline()\n\n//go:linkname libc_exit libc_exit\n//go:cgo_import_dynamic libc_exit exit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_faccessat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_faccessat_trampoline()\n\n//go:linkname libc_faccessat libc_faccessat\n//go:cgo_import_dynamic libc_faccessat faccessat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchdir_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchdir_trampoline()\n\n//go:linkname libc_fchdir libc_fchdir\n//go:cgo_import_dynamic libc_fchdir fchdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchflags_trampoline), uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchflags_trampoline()\n\n//go:linkname libc_fchflags libc_fchflags\n//go:cgo_import_dynamic libc_fchflags fchflags \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchmod_trampoline), uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchmod_trampoline()\n\n//go:linkname libc_fchmod libc_fchmod\n//go:cgo_import_dynamic libc_fchmod fchmod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fchmodat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchmodat_trampoline()\n\n//go:linkname libc_fchmodat libc_fchmodat\n//go:cgo_import_dynamic libc_fchmodat fchmodat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fchown_trampoline), uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchown_trampoline()\n\n//go:linkname libc_fchown libc_fchown\n//go:cgo_import_dynamic libc_fchown fchown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fchownat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fchownat_trampoline()\n\n//go:linkname libc_fchownat libc_fchownat\n//go:cgo_import_dynamic libc_fchownat fchownat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fclonefileat(srcDirfd int, dstDirfd int, dst string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(dst)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fclonefileat_trampoline), uintptr(srcDirfd), uintptr(dstDirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fclonefileat_trampoline()\n\n//go:linkname libc_fclonefileat libc_fclonefileat\n//go:cgo_import_dynamic libc_fclonefileat fclonefileat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_flock_trampoline), uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_flock_trampoline()\n\n//go:linkname libc_flock libc_flock\n//go:cgo_import_dynamic libc_flock flock \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_fpathconf_trampoline), uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fpathconf_trampoline()\n\n//go:linkname libc_fpathconf libc_fpathconf\n//go:cgo_import_dynamic libc_fpathconf fpathconf \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fsync_trampoline), uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fsync_trampoline()\n\n//go:linkname libc_fsync libc_fsync\n//go:cgo_import_dynamic libc_fsync fsync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_ftruncate_trampoline), uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_ftruncate_trampoline()\n\n//go:linkname libc_ftruncate libc_ftruncate\n//go:cgo_import_dynamic libc_ftruncate ftruncate \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getcwd_trampoline), uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getcwd_trampoline()\n\n//go:linkname libc_getcwd libc_getcwd\n//go:cgo_import_dynamic libc_getcwd getcwd \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdtablesize() (size int) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_getdtablesize_trampoline), 0, 0, 0)\n\tsize = int(r0)\n\treturn\n}\n\nfunc libc_getdtablesize_trampoline()\n\n//go:linkname libc_getdtablesize libc_getdtablesize\n//go:cgo_import_dynamic libc_getdtablesize getdtablesize \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getegid_trampoline), 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\nfunc libc_getegid_trampoline()\n\n//go:linkname libc_getegid libc_getegid\n//go:cgo_import_dynamic libc_getegid getegid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_geteuid_trampoline), 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\nfunc libc_geteuid_trampoline()\n\n//go:linkname libc_geteuid libc_geteuid\n//go:cgo_import_dynamic libc_geteuid geteuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getgid_trampoline), 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\nfunc libc_getgid_trampoline()\n\n//go:linkname libc_getgid libc_getgid\n//go:cgo_import_dynamic libc_getgid getgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getpgid_trampoline), uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpgid_trampoline()\n\n//go:linkname libc_getpgid libc_getpgid\n//go:cgo_import_dynamic libc_getpgid getpgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getpgrp_trampoline), 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\nfunc libc_getpgrp_trampoline()\n\n//go:linkname libc_getpgrp libc_getpgrp\n//go:cgo_import_dynamic libc_getpgrp getpgrp \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getpid_trampoline), 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\nfunc libc_getpid_trampoline()\n\n//go:linkname libc_getpid libc_getpid\n//go:cgo_import_dynamic libc_getpid getpid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getppid_trampoline), 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\nfunc libc_getppid_trampoline()\n\n//go:linkname libc_getppid libc_getppid\n//go:cgo_import_dynamic libc_getppid getppid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getpriority_trampoline), uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getpriority_trampoline()\n\n//go:linkname libc_getpriority libc_getpriority\n//go:cgo_import_dynamic libc_getpriority getpriority \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getrlimit_trampoline()\n\n//go:linkname libc_getrlimit libc_getrlimit\n//go:cgo_import_dynamic libc_getrlimit getrlimit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_getrusage_trampoline), uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getrusage_trampoline()\n\n//go:linkname libc_getrusage libc_getrusage\n//go:cgo_import_dynamic libc_getrusage getrusage \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_getsid_trampoline), uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getsid_trampoline()\n\n//go:linkname libc_getsid libc_getsid\n//go:cgo_import_dynamic libc_getsid getsid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_gettimeofday_trampoline), uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_gettimeofday_trampoline()\n\n//go:linkname libc_gettimeofday libc_gettimeofday\n//go:cgo_import_dynamic libc_gettimeofday gettimeofday \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_getuid_trampoline), 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\nfunc libc_getuid_trampoline()\n\n//go:linkname libc_getuid libc_getuid\n//go:cgo_import_dynamic libc_getuid getuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := syscall_rawSyscall(funcPC(libc_issetugid_trampoline), 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\nfunc libc_issetugid_trampoline()\n\n//go:linkname libc_issetugid libc_issetugid\n//go:cgo_import_dynamic libc_issetugid issetugid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_kqueue_trampoline), 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_kqueue_trampoline()\n\n//go:linkname libc_kqueue libc_kqueue\n//go:cgo_import_dynamic libc_kqueue kqueue \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_lchown_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lchown_trampoline()\n\n//go:linkname libc_lchown libc_lchown\n//go:cgo_import_dynamic libc_lchown lchown \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_link_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_link_trampoline()\n\n//go:linkname libc_link libc_link\n//go:cgo_import_dynamic libc_link link \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_linkat_trampoline), uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_linkat_trampoline()\n\n//go:linkname libc_linkat libc_linkat\n//go:cgo_import_dynamic libc_linkat linkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_listen_trampoline), uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_listen_trampoline()\n\n//go:linkname libc_listen libc_listen\n//go:cgo_import_dynamic libc_listen listen \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkdir_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkdir_trampoline()\n\n//go:linkname libc_mkdir libc_mkdir\n//go:cgo_import_dynamic libc_mkdir mkdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkdirat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkdirat_trampoline()\n\n//go:linkname libc_mkdirat libc_mkdirat\n//go:cgo_import_dynamic libc_mkdirat mkdirat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mkfifo_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mkfifo_trampoline()\n\n//go:linkname libc_mkfifo libc_mkfifo\n//go:cgo_import_dynamic libc_mkfifo mkfifo \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_mknod_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mknod_trampoline()\n\n//go:linkname libc_mknod libc_mknod\n//go:cgo_import_dynamic libc_mknod mknod \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_open_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_open_trampoline()\n\n//go:linkname libc_open libc_open\n//go:cgo_import_dynamic libc_open open \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_openat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_openat_trampoline()\n\n//go:linkname libc_openat libc_openat\n//go:cgo_import_dynamic libc_openat openat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_pathconf_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pathconf_trampoline()\n\n//go:linkname libc_pathconf libc_pathconf\n//go:cgo_import_dynamic libc_pathconf pathconf \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_pread_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pread_trampoline()\n\n//go:linkname libc_pread libc_pread\n//go:cgo_import_dynamic libc_pread pread \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_pwrite_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_pwrite_trampoline()\n\n//go:linkname libc_pwrite libc_pwrite\n//go:cgo_import_dynamic libc_pwrite pwrite \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_read_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_read_trampoline()\n\n//go:linkname libc_read libc_read\n//go:cgo_import_dynamic libc_read read \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_readlink_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_readlink_trampoline()\n\n//go:linkname libc_readlink libc_readlink\n//go:cgo_import_dynamic libc_readlink readlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_readlinkat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_readlinkat_trampoline()\n\n//go:linkname libc_readlinkat libc_readlinkat\n//go:cgo_import_dynamic libc_readlinkat readlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_rename_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_rename_trampoline()\n\n//go:linkname libc_rename libc_rename\n//go:cgo_import_dynamic libc_rename rename \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_renameat_trampoline), uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_renameat_trampoline()\n\n//go:linkname libc_renameat libc_renameat\n//go:cgo_import_dynamic libc_renameat renameat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_revoke_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_revoke_trampoline()\n\n//go:linkname libc_revoke libc_revoke\n//go:cgo_import_dynamic libc_revoke revoke \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_rmdir_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_rmdir_trampoline()\n\n//go:linkname libc_rmdir libc_rmdir\n//go:cgo_import_dynamic libc_rmdir rmdir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_lseek_trampoline), uintptr(fd), uintptr(offset), uintptr(whence))\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lseek_trampoline()\n\n//go:linkname libc_lseek libc_lseek\n//go:cgo_import_dynamic libc_lseek lseek \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_select_trampoline), uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_select_trampoline()\n\n//go:linkname libc_select libc_select\n//go:cgo_import_dynamic libc_select select \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setegid_trampoline), uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setegid_trampoline()\n\n//go:linkname libc_setegid libc_setegid\n//go:cgo_import_dynamic libc_setegid setegid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_seteuid_trampoline), uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_seteuid_trampoline()\n\n//go:linkname libc_seteuid libc_seteuid\n//go:cgo_import_dynamic libc_seteuid seteuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setgid_trampoline), uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setgid_trampoline()\n\n//go:linkname libc_setgid libc_setgid\n//go:cgo_import_dynamic libc_setgid setgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_setlogin_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setlogin_trampoline()\n\n//go:linkname libc_setlogin libc_setlogin\n//go:cgo_import_dynamic libc_setlogin setlogin \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setpgid_trampoline), uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setpgid_trampoline()\n\n//go:linkname libc_setpgid libc_setpgid\n//go:cgo_import_dynamic libc_setpgid setpgid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setpriority_trampoline), uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setpriority_trampoline()\n\n//go:linkname libc_setpriority libc_setpriority\n//go:cgo_import_dynamic libc_setpriority setpriority \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setprivexec(flag int) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_setprivexec_trampoline), uintptr(flag), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setprivexec_trampoline()\n\n//go:linkname libc_setprivexec libc_setprivexec\n//go:cgo_import_dynamic libc_setprivexec setprivexec \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setregid_trampoline), uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setregid_trampoline()\n\n//go:linkname libc_setregid libc_setregid\n//go:cgo_import_dynamic libc_setregid setregid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setreuid_trampoline), uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setreuid_trampoline()\n\n//go:linkname libc_setreuid libc_setreuid\n//go:cgo_import_dynamic libc_setreuid setreuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setrlimit_trampoline()\n\n//go:linkname libc_setrlimit libc_setrlimit\n//go:cgo_import_dynamic libc_setrlimit setrlimit \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := syscall_rawSyscall(funcPC(libc_setsid_trampoline), 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setsid_trampoline()\n\n//go:linkname libc_setsid libc_setsid\n//go:cgo_import_dynamic libc_setsid setsid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_settimeofday_trampoline), uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_settimeofday_trampoline()\n\n//go:linkname libc_settimeofday libc_settimeofday\n//go:cgo_import_dynamic libc_settimeofday settimeofday \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := syscall_rawSyscall(funcPC(libc_setuid_trampoline), uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_setuid_trampoline()\n\n//go:linkname libc_setuid libc_setuid\n//go:cgo_import_dynamic libc_setuid setuid \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_symlink_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_symlink_trampoline()\n\n//go:linkname libc_symlink libc_symlink\n//go:cgo_import_dynamic libc_symlink symlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_symlinkat_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_symlinkat_trampoline()\n\n//go:linkname libc_symlinkat libc_symlinkat\n//go:cgo_import_dynamic libc_symlinkat symlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_sync_trampoline), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_sync_trampoline()\n\n//go:linkname libc_sync libc_sync\n//go:cgo_import_dynamic libc_sync sync \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_truncate_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_truncate_trampoline()\n\n//go:linkname libc_truncate libc_truncate\n//go:cgo_import_dynamic libc_truncate truncate \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_umask_trampoline), uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\nfunc libc_umask_trampoline()\n\n//go:linkname libc_umask libc_umask\n//go:cgo_import_dynamic libc_umask umask \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Undelete(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_undelete_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_undelete_trampoline()\n\n//go:linkname libc_undelete libc_undelete\n//go:cgo_import_dynamic libc_undelete undelete \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unlink_trampoline), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unlink_trampoline()\n\n//go:linkname libc_unlink libc_unlink\n//go:cgo_import_dynamic libc_unlink unlink \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unlinkat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unlinkat_trampoline()\n\n//go:linkname libc_unlinkat libc_unlinkat\n//go:cgo_import_dynamic libc_unlinkat unlinkat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_unmount_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_unmount_trampoline()\n\n//go:linkname libc_unmount libc_unmount\n//go:cgo_import_dynamic libc_unmount unmount \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := syscall_syscall(funcPC(libc_write_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_write_trampoline()\n\n//go:linkname libc_write libc_write\n//go:cgo_import_dynamic libc_write write \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := syscall_syscall6(funcPC(libc_mmap_trampoline), uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos))\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_mmap_trampoline()\n\n//go:linkname libc_mmap libc_mmap\n//go:cgo_import_dynamic libc_mmap mmap \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_munmap_trampoline), uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_munmap_trampoline()\n\n//go:linkname libc_munmap libc_munmap\n//go:cgo_import_dynamic libc_munmap munmap \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_read_trampoline), uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_write_trampoline), uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fstat_trampoline), uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstat_trampoline()\n\n//go:linkname libc_fstat libc_fstat\n//go:cgo_import_dynamic libc_fstat fstat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall6(funcPC(libc_fstatat_trampoline), uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstatat_trampoline()\n\n//go:linkname libc_fstatat libc_fstatat\n//go:cgo_import_dynamic libc_fstatat fstatat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_fstatfs_trampoline), uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_fstatfs_trampoline()\n\n//go:linkname libc_fstatfs libc_fstatfs\n//go:cgo_import_dynamic libc_fstatfs fstatfs \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) {\n\tr0, _, e1 := syscall_syscall(funcPC(libc_getfsstat_trampoline), uintptr(buf), uintptr(size), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_getfsstat_trampoline()\n\n//go:linkname libc_getfsstat libc_getfsstat\n//go:cgo_import_dynamic libc_getfsstat getfsstat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_lstat_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_lstat_trampoline()\n\n//go:linkname libc_lstat libc_lstat\n//go:cgo_import_dynamic libc_lstat lstat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_stat_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_stat_trampoline()\n\n//go:linkname libc_stat libc_stat\n//go:cgo_import_dynamic libc_stat stat \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := syscall_syscall(funcPC(libc_statfs_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_statfs_trampoline()\n\n//go:linkname libc_statfs libc_statfs\n//go:cgo_import_dynamic libc_statfs statfs \"/usr/lib/libSystem.B.dylib\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s",
    "content": "// go run mkasm_darwin.go arm64\n// Code generated by the command above; DO NOT EDIT.\n\n// +build go1.12\n\n#include \"textflag.h\"\nTEXT ·libc_getgroups_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getgroups(SB)\nTEXT ·libc_setgroups_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setgroups(SB)\nTEXT ·libc_wait4_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_wait4(SB)\nTEXT ·libc_accept_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_accept(SB)\nTEXT ·libc_bind_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_bind(SB)\nTEXT ·libc_connect_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_connect(SB)\nTEXT ·libc_socket_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_socket(SB)\nTEXT ·libc_getsockopt_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsockopt(SB)\nTEXT ·libc_setsockopt_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setsockopt(SB)\nTEXT ·libc_getpeername_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpeername(SB)\nTEXT ·libc_getsockname_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsockname(SB)\nTEXT ·libc_shutdown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_shutdown(SB)\nTEXT ·libc_socketpair_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_socketpair(SB)\nTEXT ·libc_recvfrom_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_recvfrom(SB)\nTEXT ·libc_sendto_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendto(SB)\nTEXT ·libc_recvmsg_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_recvmsg(SB)\nTEXT ·libc_sendmsg_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendmsg(SB)\nTEXT ·libc_kevent_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kevent(SB)\nTEXT ·libc_utimes_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_utimes(SB)\nTEXT ·libc_futimes_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_futimes(SB)\nTEXT ·libc_poll_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_poll(SB)\nTEXT ·libc_madvise_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_madvise(SB)\nTEXT ·libc_mlock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mlock(SB)\nTEXT ·libc_mlockall_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mlockall(SB)\nTEXT ·libc_mprotect_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mprotect(SB)\nTEXT ·libc_msync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_msync(SB)\nTEXT ·libc_munlock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munlock(SB)\nTEXT ·libc_munlockall_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munlockall(SB)\nTEXT ·libc_pipe_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pipe(SB)\nTEXT ·libc_getxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getxattr(SB)\nTEXT ·libc_fgetxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fgetxattr(SB)\nTEXT ·libc_setxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setxattr(SB)\nTEXT ·libc_fsetxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fsetxattr(SB)\nTEXT ·libc_removexattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_removexattr(SB)\nTEXT ·libc_fremovexattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fremovexattr(SB)\nTEXT ·libc_listxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_listxattr(SB)\nTEXT ·libc_flistxattr_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_flistxattr(SB)\nTEXT ·libc_setattrlist_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setattrlist(SB)\nTEXT ·libc_fcntl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fcntl(SB)\nTEXT ·libc_kill_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kill(SB)\nTEXT ·libc_ioctl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ioctl(SB)\nTEXT ·libc_sysctl_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sysctl(SB)\nTEXT ·libc_sendfile_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sendfile(SB)\nTEXT ·libc_access_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_access(SB)\nTEXT ·libc_adjtime_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_adjtime(SB)\nTEXT ·libc_chdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chdir(SB)\nTEXT ·libc_chflags_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chflags(SB)\nTEXT ·libc_chmod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chmod(SB)\nTEXT ·libc_chown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chown(SB)\nTEXT ·libc_chroot_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_chroot(SB)\nTEXT ·libc_clock_gettime_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clock_gettime(SB)\nTEXT ·libc_close_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_close(SB)\nTEXT ·libc_clonefile_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clonefile(SB)\nTEXT ·libc_clonefileat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_clonefileat(SB)\nTEXT ·libc_dup_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_dup(SB)\nTEXT ·libc_dup2_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_dup2(SB)\nTEXT ·libc_exchangedata_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_exchangedata(SB)\nTEXT ·libc_exit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_exit(SB)\nTEXT ·libc_faccessat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_faccessat(SB)\nTEXT ·libc_fchdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchdir(SB)\nTEXT ·libc_fchflags_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchflags(SB)\nTEXT ·libc_fchmod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchmod(SB)\nTEXT ·libc_fchmodat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchmodat(SB)\nTEXT ·libc_fchown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchown(SB)\nTEXT ·libc_fchownat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fchownat(SB)\nTEXT ·libc_fclonefileat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fclonefileat(SB)\nTEXT ·libc_flock_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_flock(SB)\nTEXT ·libc_fpathconf_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fpathconf(SB)\nTEXT ·libc_fsync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fsync(SB)\nTEXT ·libc_ftruncate_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_ftruncate(SB)\nTEXT ·libc_getcwd_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getcwd(SB)\nTEXT ·libc_getdtablesize_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getdtablesize(SB)\nTEXT ·libc_getegid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getegid(SB)\nTEXT ·libc_geteuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_geteuid(SB)\nTEXT ·libc_getgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getgid(SB)\nTEXT ·libc_getpgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpgid(SB)\nTEXT ·libc_getpgrp_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpgrp(SB)\nTEXT ·libc_getpid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpid(SB)\nTEXT ·libc_getppid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getppid(SB)\nTEXT ·libc_getpriority_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getpriority(SB)\nTEXT ·libc_getrlimit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getrlimit(SB)\nTEXT ·libc_getrusage_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getrusage(SB)\nTEXT ·libc_getsid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getsid(SB)\nTEXT ·libc_gettimeofday_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_gettimeofday(SB)\nTEXT ·libc_getuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getuid(SB)\nTEXT ·libc_issetugid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_issetugid(SB)\nTEXT ·libc_kqueue_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_kqueue(SB)\nTEXT ·libc_lchown_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lchown(SB)\nTEXT ·libc_link_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_link(SB)\nTEXT ·libc_linkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_linkat(SB)\nTEXT ·libc_listen_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_listen(SB)\nTEXT ·libc_mkdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkdir(SB)\nTEXT ·libc_mkdirat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkdirat(SB)\nTEXT ·libc_mkfifo_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mkfifo(SB)\nTEXT ·libc_mknod_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mknod(SB)\nTEXT ·libc_open_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_open(SB)\nTEXT ·libc_openat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_openat(SB)\nTEXT ·libc_pathconf_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pathconf(SB)\nTEXT ·libc_pread_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pread(SB)\nTEXT ·libc_pwrite_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_pwrite(SB)\nTEXT ·libc_read_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_read(SB)\nTEXT ·libc_readlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readlink(SB)\nTEXT ·libc_readlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_readlinkat(SB)\nTEXT ·libc_rename_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_rename(SB)\nTEXT ·libc_renameat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_renameat(SB)\nTEXT ·libc_revoke_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_revoke(SB)\nTEXT ·libc_rmdir_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_rmdir(SB)\nTEXT ·libc_lseek_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lseek(SB)\nTEXT ·libc_select_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_select(SB)\nTEXT ·libc_setegid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setegid(SB)\nTEXT ·libc_seteuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_seteuid(SB)\nTEXT ·libc_setgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setgid(SB)\nTEXT ·libc_setlogin_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setlogin(SB)\nTEXT ·libc_setpgid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setpgid(SB)\nTEXT ·libc_setpriority_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setpriority(SB)\nTEXT ·libc_setprivexec_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setprivexec(SB)\nTEXT ·libc_setregid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setregid(SB)\nTEXT ·libc_setreuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setreuid(SB)\nTEXT ·libc_setrlimit_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setrlimit(SB)\nTEXT ·libc_setsid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setsid(SB)\nTEXT ·libc_settimeofday_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_settimeofday(SB)\nTEXT ·libc_setuid_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_setuid(SB)\nTEXT ·libc_symlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_symlink(SB)\nTEXT ·libc_symlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_symlinkat(SB)\nTEXT ·libc_sync_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_sync(SB)\nTEXT ·libc_truncate_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_truncate(SB)\nTEXT ·libc_umask_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_umask(SB)\nTEXT ·libc_undelete_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_undelete(SB)\nTEXT ·libc_unlink_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unlink(SB)\nTEXT ·libc_unlinkat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unlinkat(SB)\nTEXT ·libc_unmount_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_unmount(SB)\nTEXT ·libc_write_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_write(SB)\nTEXT ·libc_mmap_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_mmap(SB)\nTEXT ·libc_munmap_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_munmap(SB)\nTEXT ·libc_fstat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstat(SB)\nTEXT ·libc_fstatat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstatat(SB)\nTEXT ·libc_fstatfs_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_fstatfs(SB)\nTEXT ·libc_getfsstat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_getfsstat(SB)\nTEXT ·libc_lstat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_lstat(SB)\nTEXT ·libc_stat_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_stat(SB)\nTEXT ·libc_statfs_trampoline(SB),NOSPLIT,$0-0\n\tJMP\tlibc_statfs(SB)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go",
    "content": "// go run mksyscall.go -dragonfly -tags dragonfly,amd64 syscall_bsd.go syscall_dragonfly.go syscall_dragonfly_amd64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build dragonfly,amd64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (r int, w int, err error) {\n\tr0, r1, e1 := RawSyscall(SYS_PIPE, 0, 0, 0)\n\tr = int(r0)\n\tw = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc extpread(fd int, p []byte, flags int, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTPREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc extpwrite(fd int, p []byte, flags int, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTPWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETDIRENTRIES, uintptr(fd), uintptr(_p0), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdtablesize() (size int) {\n\tr0, _, _ := Syscall(SYS_GETDTABLESIZE, 0, 0, 0)\n\tsize = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(fd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(whence), 0, 0)\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Undelete(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNDELETE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), 0, 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go",
    "content": "// go run mksyscall.go -l32 -tags freebsd,386 syscall_bsd.go syscall_freebsd.go syscall_freebsd_386.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build freebsd,386\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ptrace(request int, pid int, addr uintptr, data int) (err error) {\n\t_, _, e1 := Syscall6(SYS_PTRACE, uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc CapEnter() (err error) {\n\t_, _, e1 := Syscall(SYS_CAP_ENTER, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc capRightsGet(version int, fd int, rightsp *CapRights) (err error) {\n\t_, _, e1 := Syscall(SYS___CAP_RIGHTS_GET, uintptr(version), uintptr(fd), uintptr(unsafe.Pointer(rightsp)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc capRightsLimit(fd int, rightsp *CapRights) (err error) {\n\t_, _, e1 := Syscall(SYS_CAP_RIGHTS_LIMIT, uintptr(fd), uintptr(unsafe.Pointer(rightsp)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FD, uintptr(fd), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_POSIX_FADVISE, uintptr(fd), uintptr(offset), uintptr(offset>>32), uintptr(length), uintptr(length>>32), uintptr(advice))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat(fd int, stat *stat_freebsd11_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat_freebsd12(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatfs(fd int, stat *statfs_freebsd11_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), uintptr(length>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETDIRENTRIES, uintptr(fd), uintptr(_p0), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETDIRENTRIES_FREEBSD12, uintptr(fd), uintptr(_p0), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdtablesize() (size int) {\n\tr0, _, _ := Syscall(SYS_GETDTABLESIZE, 0, 0, 0)\n\tsize = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc lstat(path string, stat *stat_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknodat(fd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), uintptr(dev>>32), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(fdat int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(fdat), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), uintptr(offset>>32), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), uintptr(offset>>32), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(offset>>32), uintptr(whence), 0, 0)\n\tnewoffset = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc stat(path string, stat *stat_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc statfs(path string, stat *statfs_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc statfs_freebsd12(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS_FREEBSD12, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), uintptr(length>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Undelete(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNDELETE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos), uintptr(pos>>32), 0, 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go",
    "content": "// go run mksyscall.go -tags freebsd,amd64 syscall_bsd.go syscall_freebsd.go syscall_freebsd_amd64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build freebsd,amd64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ptrace(request int, pid int, addr uintptr, data int) (err error) {\n\t_, _, e1 := Syscall6(SYS_PTRACE, uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc CapEnter() (err error) {\n\t_, _, e1 := Syscall(SYS_CAP_ENTER, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc capRightsGet(version int, fd int, rightsp *CapRights) (err error) {\n\t_, _, e1 := Syscall(SYS___CAP_RIGHTS_GET, uintptr(version), uintptr(fd), uintptr(unsafe.Pointer(rightsp)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc capRightsLimit(fd int, rightsp *CapRights) (err error) {\n\t_, _, e1 := Syscall(SYS_CAP_RIGHTS_LIMIT, uintptr(fd), uintptr(unsafe.Pointer(rightsp)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FD, uintptr(fd), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_POSIX_FADVISE, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat(fd int, stat *stat_freebsd11_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat_freebsd12(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatfs(fd int, stat *statfs_freebsd11_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETDIRENTRIES, uintptr(fd), uintptr(_p0), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETDIRENTRIES_FREEBSD12, uintptr(fd), uintptr(_p0), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdtablesize() (size int) {\n\tr0, _, _ := Syscall(SYS_GETDTABLESIZE, 0, 0, 0)\n\tsize = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc lstat(path string, stat *stat_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknodat(fd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(fdat int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(fdat), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc stat(path string, stat *stat_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc statfs(path string, stat *statfs_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc statfs_freebsd12(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS_FREEBSD12, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Undelete(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNDELETE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos))\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go",
    "content": "// go run mksyscall.go -l32 -arm -tags freebsd,arm syscall_bsd.go syscall_freebsd.go syscall_freebsd_arm.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build freebsd,arm\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ptrace(request int, pid int, addr uintptr, data int) (err error) {\n\t_, _, e1 := Syscall6(SYS_PTRACE, uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc CapEnter() (err error) {\n\t_, _, e1 := Syscall(SYS_CAP_ENTER, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc capRightsGet(version int, fd int, rightsp *CapRights) (err error) {\n\t_, _, e1 := Syscall(SYS___CAP_RIGHTS_GET, uintptr(version), uintptr(fd), uintptr(unsafe.Pointer(rightsp)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc capRightsLimit(fd int, rightsp *CapRights) (err error) {\n\t_, _, e1 := Syscall(SYS_CAP_RIGHTS_LIMIT, uintptr(fd), uintptr(unsafe.Pointer(rightsp)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FD, uintptr(fd), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall9(SYS_POSIX_FADVISE, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(length), uintptr(length>>32), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat(fd int, stat *stat_freebsd11_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat_freebsd12(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatfs(fd int, stat *statfs_freebsd11_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETDIRENTRIES, uintptr(fd), uintptr(_p0), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETDIRENTRIES_FREEBSD12, uintptr(fd), uintptr(_p0), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdtablesize() (size int) {\n\tr0, _, _ := Syscall(SYS_GETDTABLESIZE, 0, 0, 0)\n\tsize = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc lstat(path string, stat *stat_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknodat(fd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(fdat int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(fdat), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)\n\tnewoffset = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc stat(path string, stat *stat_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc statfs(path string, stat *statfs_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc statfs_freebsd12(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS_FREEBSD12, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Undelete(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNDELETE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), uintptr(pos>>32), 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go",
    "content": "// go run mksyscall.go -tags freebsd,arm64 syscall_bsd.go syscall_freebsd.go syscall_freebsd_arm64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build freebsd,arm64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ptrace(request int, pid int, addr uintptr, data int) (err error) {\n\t_, _, e1 := Syscall6(SYS_PTRACE, uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc CapEnter() (err error) {\n\t_, _, e1 := Syscall(SYS_CAP_ENTER, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc capRightsGet(version int, fd int, rightsp *CapRights) (err error) {\n\t_, _, e1 := Syscall(SYS___CAP_RIGHTS_GET, uintptr(version), uintptr(fd), uintptr(unsafe.Pointer(rightsp)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc capRightsLimit(fd int, rightsp *CapRights) (err error) {\n\t_, _, e1 := Syscall(SYS_CAP_RIGHTS_LIMIT, uintptr(fd), uintptr(unsafe.Pointer(rightsp)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FD, uintptr(fd), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_POSIX_FADVISE, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat(fd int, stat *stat_freebsd11_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat_freebsd12(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatfs(fd int, stat *statfs_freebsd11_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETDIRENTRIES, uintptr(fd), uintptr(_p0), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETDIRENTRIES_FREEBSD12, uintptr(fd), uintptr(_p0), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdtablesize() (size int) {\n\tr0, _, _ := Syscall(SYS_GETDTABLESIZE, 0, 0, 0)\n\tsize = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc lstat(path string, stat *stat_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknodat(fd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT_FREEBSD12, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(fdat int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(fdat), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc stat(path string, stat *stat_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc statfs(path string, stat *statfs_freebsd11_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc statfs_freebsd12(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS_FREEBSD12, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Undelete(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNDELETE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos))\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go",
    "content": "// go run mksyscall_solaris.go -illumos -tags illumos,amd64 syscall_illumos.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build illumos,amd64\n\npackage unix\n\nimport (\n\t\"unsafe\"\n)\n\n//go:cgo_import_dynamic libc_readv readv \"libc.so\"\n//go:cgo_import_dynamic libc_preadv preadv \"libc.so\"\n//go:cgo_import_dynamic libc_writev writev \"libc.so\"\n//go:cgo_import_dynamic libc_pwritev pwritev \"libc.so\"\n//go:cgo_import_dynamic libc_accept4 accept4 \"libsocket.so\"\n//go:cgo_import_dynamic libc_pipe2 pipe2 \"libc.so\"\n\n//go:linkname procreadv libc_readv\n//go:linkname procpreadv libc_preadv\n//go:linkname procwritev libc_writev\n//go:linkname procpwritev libc_pwritev\n//go:linkname procaccept4 libc_accept4\n//go:linkname procpipe2 libc_pipe2\n\nvar (\n\tprocreadv,\n\tprocpreadv,\n\tprocwritev,\n\tprocpwritev,\n\tprocaccept4,\n\tprocpipe2 syscallFunc\n)\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readv(fd int, iovs []Iovec) (n int, err error) {\n\tvar _p0 *Iovec\n\tif len(iovs) > 0 {\n\t\t_p0 = &iovs[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procreadv)), 3, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(iovs)), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc preadv(fd int, iovs []Iovec, off int64) (n int, err error) {\n\tvar _p0 *Iovec\n\tif len(iovs) > 0 {\n\t\t_p0 = &iovs[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procpreadv)), 4, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(iovs)), uintptr(off), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writev(fd int, iovs []Iovec) (n int, err error) {\n\tvar _p0 *Iovec\n\tif len(iovs) > 0 {\n\t\t_p0 = &iovs[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procwritev)), 3, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(iovs)), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pwritev(fd int, iovs []Iovec, off int64) (n int, err error) {\n\tvar _p0 *Iovec\n\tif len(iovs) > 0 {\n\t\t_p0 = &iovs[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procpwritev)), 4, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(iovs)), uintptr(off), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procaccept4)), 4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procpipe2)), 2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux.go",
    "content": "// Code generated by mkmerge.go; DO NOT EDIT.\n\n// +build linux\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_FANOTIFY_INIT, uintptr(flags), uintptr(event_f_flags), 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fchmodat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), uintptr(mode), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc openat2(dirfd int, path string, open_how *OpenHow, size int) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT2, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(open_how)), uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_PPOLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(unsafe.Pointer(timeout)), uintptr(unsafe.Pointer(sigmask)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEYCTL, uintptr(cmd), uintptr(arg2), uintptr(arg3), uintptr(arg4), uintptr(arg5), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_KEYCTL, uintptr(cmd), uintptr(arg2), uintptr(_p0), uintptr(len(buf)), uintptr(arg5), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc keyctlJoin(cmd int, arg2 string) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(arg2)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_KEYCTL, uintptr(cmd), uintptr(unsafe.Pointer(_p0)), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(arg3)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(arg4)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_KEYCTL, uintptr(cmd), uintptr(arg2), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(arg5), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(payload) > 0 {\n\t\t_p0 = unsafe.Pointer(&payload[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_KEYCTL, uintptr(cmd), uintptr(arg2), uintptr(_p0), uintptr(len(payload)), uintptr(arg5), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_KEYCTL, uintptr(cmd), uintptr(unsafe.Pointer(arg2)), uintptr(_p0), uintptr(len(buf)), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, restriction string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(keyType)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(restriction)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_KEYCTL, uintptr(cmd), uintptr(arg2), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc keyctlRestrictKeyring(cmd int, arg2 int) (err error) {\n\t_, _, e1 := Syscall(SYS_KEYCTL, uintptr(cmd), uintptr(arg2), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_PTRACE, uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(arg)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_REBOOT, uintptr(magic1), uintptr(magic2), uintptr(cmd), uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mount(source string, target string, fstype string, flags uintptr, data *byte) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(source)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(target)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p2 *byte\n\t_p2, err = BytePtrFromString(fstype)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(_p2)), uintptr(flags), uintptr(unsafe.Pointer(data)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Acct(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc AddKey(keyType string, description string, payload []byte, ringid int) (id int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(keyType)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(description)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p2 unsafe.Pointer\n\tif len(payload) > 0 {\n\t\t_p2 = unsafe.Pointer(&payload[0])\n\t} else {\n\t\t_p2 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_ADD_KEY, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(_p2), uintptr(len(payload)), uintptr(ringid), 0)\n\tid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtimex(buf *Timex) (state int, err error) {\n\tr0, _, e1 := Syscall(SYS_ADJTIMEX, uintptr(unsafe.Pointer(buf)), 0, 0)\n\tstate = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Capget(hdr *CapUserHeader, data *CapUserData) (err error) {\n\t_, _, e1 := RawSyscall(SYS_CAPGET, uintptr(unsafe.Pointer(hdr)), uintptr(unsafe.Pointer(data)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Capset(hdr *CapUserHeader, data *CapUserData) (err error) {\n\t_, _, e1 := RawSyscall(SYS_CAPSET, uintptr(unsafe.Pointer(hdr)), uintptr(unsafe.Pointer(data)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ClockGetres(clockid int32, res *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOCK_GETRES, uintptr(clockid), uintptr(unsafe.Pointer(res)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ClockGettime(clockid int32, time *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOCK_GETTIME, uintptr(clockid), uintptr(unsafe.Pointer(time)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error) {\n\t_, _, e1 := Syscall6(SYS_CLOCK_NANOSLEEP, uintptr(clockid), uintptr(flags), uintptr(unsafe.Pointer(request)), uintptr(unsafe.Pointer(remain)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_COPY_FILE_RANGE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc DeleteModule(name string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_DELETE_MODULE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(oldfd int) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(oldfd), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(oldfd int, newfd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(oldfd), uintptr(newfd), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate1(flag int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE1, uintptr(flag), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_EPOLL_CTL, uintptr(epfd), uintptr(op), uintptr(fd), uintptr(unsafe.Pointer(event)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Eventfd(initval uint, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_EVENTFD2, uintptr(initval), uintptr(flags), 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscallNoError(SYS_EXIT_GROUP, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fdatasync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FDATASYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(dest) > 0 {\n\t\t_p1 = unsafe.Pointer(&dest[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_FGETXATTR, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(dest)), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc FinitModule(fd int, params string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(params)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FINIT_MODULE, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flistxattr(fd int, dest []byte) (sz int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(dest) > 0 {\n\t\t_p0 = unsafe.Pointer(&dest[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_FLISTXATTR, uintptr(fd), uintptr(_p0), uintptr(len(dest)))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fremovexattr(fd int, attr string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FREMOVEXATTR, uintptr(fd), uintptr(unsafe.Pointer(_p0)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(dest) > 0 {\n\t\t_p1 = unsafe.Pointer(&dest[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_FSETXATTR, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(dest)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS64, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrandom(buf []byte, flags int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETRANDOM, uintptr(_p0), uintptr(len(buf)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettid() (tid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETTID, 0, 0, 0)\n\ttid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getxattr(path string, attr string, dest []byte) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p2 unsafe.Pointer\n\tif len(dest) > 0 {\n\t\t_p2 = unsafe.Pointer(&dest[0])\n\t} else {\n\t\t_p2 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_GETXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(_p2), uintptr(len(dest)), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InitModule(moduleImage []byte, params string) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(moduleImage) > 0 {\n\t\t_p0 = unsafe.Pointer(&moduleImage[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(params)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_INIT_MODULE, uintptr(_p0), uintptr(len(moduleImage)), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(pathname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_INOTIFY_ADD_WATCH, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mask))\n\twatchdesc = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyInit1(flags int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT1, uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_RM_WATCH, uintptr(fd), uintptr(watchdesc), 0)\n\tsuccess = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, sig syscall.Signal) (err error) {\n\t_, _, e1 := RawSyscall(SYS_KILL, uintptr(pid), uintptr(sig), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Klogctl(typ int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_SYSLOG, uintptr(typ), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lgetxattr(path string, attr string, dest []byte) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p2 unsafe.Pointer\n\tif len(dest) > 0 {\n\t\t_p2 = unsafe.Pointer(&dest[0])\n\t} else {\n\t\t_p2 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_LGETXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(_p2), uintptr(len(dest)), 0, 0)\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listxattr(path string, dest []byte) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(dest) > 0 {\n\t\t_p1 = unsafe.Pointer(&dest[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_LISTXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(dest)))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Llistxattr(path string, dest []byte) (sz int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(dest) > 0 {\n\t\t_p1 = unsafe.Pointer(&dest[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_LLISTXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(dest)))\n\tsz = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lremovexattr(path string, attr string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LREMOVEXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lsetxattr(path string, attr string, data []byte, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p2 unsafe.Pointer\n\tif len(data) > 0 {\n\t\t_p2 = unsafe.Pointer(&data[0])\n\t} else {\n\t\t_p2 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_LSETXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(_p2), uintptr(len(data)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc MemfdCreate(name string, flags int) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_MEMFD_CREATE, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_PERF_EVENT_OPEN, uintptr(unsafe.Pointer(attr)), uintptr(pid), uintptr(cpu), uintptr(groupFd), uintptr(flags), 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc PivotRoot(newroot string, putold string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(newroot)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(putold)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_PIVOT_ROOT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_PRLIMIT64, uintptr(pid), uintptr(resource), uintptr(unsafe.Pointer(newlimit)), uintptr(unsafe.Pointer(old)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_PRCTL, uintptr(option), uintptr(arg2), uintptr(arg3), uintptr(arg4), uintptr(arg5), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_PSELECT6, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), uintptr(unsafe.Pointer(sigmask)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Removexattr(path string, attr string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REMOVEXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat2(olddirfd int, oldpath string, newdirfd int, newpath string, flags uint) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT2, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc RequestKey(keyType string, description string, callback string, destRingid int) (id int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(keyType)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(description)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p2 *byte\n\t_p2, err = BytePtrFromString(callback)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_REQUEST_KEY, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(_p2)), uintptr(destRingid), 0, 0)\n\tid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setdomainname(p []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_SETDOMAINNAME, uintptr(_p0), uintptr(len(p)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sethostname(p []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_SETHOSTNAME, uintptr(_p0), uintptr(len(p)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setns(fd int, nstype int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETNS, uintptr(fd), uintptr(nstype), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setxattr(path string, attr string, data []byte, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attr)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p2 unsafe.Pointer\n\tif len(data) > 0 {\n\t\t_p2 = unsafe.Pointer(&data[0])\n\t} else {\n\t\t_p2 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SETXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(_p2), uintptr(len(data)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (newfd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SIGNALFD4, uintptr(fd), uintptr(unsafe.Pointer(sigmask)), uintptr(maskSize), uintptr(flags), 0, 0)\n\tnewfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_STATX, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), uintptr(mask), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() {\n\tSyscallNoError(SYS_SYNC, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Syncfs(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_SYNCFS, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sysinfo(info *Sysinfo_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SYSINFO, uintptr(unsafe.Pointer(info)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc TimerfdCreate(clockid int, flags int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_TIMERFD_CREATE, uintptr(clockid), uintptr(flags), 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc TimerfdGettime(fd int, currValue *ItimerSpec) (err error) {\n\t_, _, e1 := RawSyscall(SYS_TIMERFD_GETTIME, uintptr(fd), uintptr(unsafe.Pointer(currValue)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc TimerfdSettime(fd int, flags int, newValue *ItimerSpec, oldValue *ItimerSpec) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_TIMERFD_SETTIME, uintptr(fd), uintptr(flags), uintptr(unsafe.Pointer(newValue)), uintptr(unsafe.Pointer(oldValue)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {\n\t_, _, e1 := RawSyscall(SYS_TGKILL, uintptr(tgid), uintptr(tid), uintptr(sig))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Times(tms *Tms) (ticks uintptr, err error) {\n\tr0, _, e1 := RawSyscall(SYS_TIMES, uintptr(unsafe.Pointer(tms)), 0, 0)\n\tticks = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(mask int) (oldmask int) {\n\tr0, _ := RawSyscallNoError(SYS_UMASK, uintptr(mask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Uname(buf *Utsname) (err error) {\n\t_, _, e1 := RawSyscall(SYS_UNAME, uintptr(unsafe.Pointer(buf)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(target string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(target)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UMOUNT2, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unshare(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_UNSHARE, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc exitThread(code int) (err error) {\n\t_, _, e1 := Syscall(SYS_EXIT, uintptr(code), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, p *byte, np int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(p)), uintptr(np))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, p *byte, np int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(p)), uintptr(np))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readv(fd int, iovs []Iovec) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(iovs) > 0 {\n\t\t_p0 = unsafe.Pointer(&iovs[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READV, uintptr(fd), uintptr(_p0), uintptr(len(iovs)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writev(fd int, iovs []Iovec) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(iovs) > 0 {\n\t\t_p0 = unsafe.Pointer(&iovs[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITEV, uintptr(fd), uintptr(_p0), uintptr(len(iovs)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc preadv(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(iovs) > 0 {\n\t\t_p0 = unsafe.Pointer(&iovs[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREADV, uintptr(fd), uintptr(_p0), uintptr(len(iovs)), uintptr(offs_l), uintptr(offs_h), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pwritev(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(iovs) > 0 {\n\t\t_p0 = unsafe.Pointer(&iovs[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITEV, uintptr(fd), uintptr(_p0), uintptr(len(iovs)), uintptr(offs_l), uintptr(offs_h), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc preadv2(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr, flags int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(iovs) > 0 {\n\t\t_p0 = unsafe.Pointer(&iovs[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREADV2, uintptr(fd), uintptr(_p0), uintptr(len(iovs)), uintptr(offs_l), uintptr(offs_h), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pwritev2(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr, flags int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(iovs) > 0 {\n\t\t_p0 = unsafe.Pointer(&iovs[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITEV2, uintptr(fd), uintptr(_p0), uintptr(len(iovs)), uintptr(offs_l), uintptr(offs_h), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, advice int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(advice))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc faccessat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat2(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT2, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID *_C_int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(pathname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_NAME_TO_HANDLE_AT, uintptr(dirFD), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(fh)), uintptr(unsafe.Pointer(mountID)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_OPEN_BY_HANDLE_AT, uintptr(mountFD), uintptr(unsafe.Pointer(fh)), uintptr(flags))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ProcessVMReadv(pid int, localIov []Iovec, remoteIov []RemoteIovec, flags uint) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(localIov) > 0 {\n\t\t_p0 = unsafe.Pointer(&localIov[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(remoteIov) > 0 {\n\t\t_p1 = unsafe.Pointer(&remoteIov[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PROCESS_VM_READV, uintptr(pid), uintptr(_p0), uintptr(len(localIov)), uintptr(_p1), uintptr(len(remoteIov)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ProcessVMWritev(pid int, localIov []Iovec, remoteIov []RemoteIovec, flags uint) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(localIov) > 0 {\n\t\t_p0 = unsafe.Pointer(&localIov[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(remoteIov) > 0 {\n\t\t_p1 = unsafe.Pointer(&remoteIov[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PROCESS_VM_WRITEV, uintptr(pid), uintptr(_p0), uintptr(len(localIov)), uintptr(_p1), uintptr(len(remoteIov)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_386.go",
    "content": "// go run mksyscall.go -l32 -tags linux,386 syscall_linux.go syscall_linux_386.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,386\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(mask>>32), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(off>>32), uintptr(len), uintptr(len>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe(p *[2]_C_int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64_64, uintptr(fd), uintptr(offset), uintptr(offset>>32), uintptr(length), uintptr(length>>32), uintptr(advice))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN32, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT64, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT64, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE64, uintptr(fd), uintptr(length), uintptr(length>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID32, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID32, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID32, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID32, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyInit() (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ioperm(from int, num int, on int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPERM, uintptr(from), uintptr(num), uintptr(on))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Iopl(level int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPL, uintptr(level), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN32, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT64, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), uintptr(offset>>32), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), uintptr(offset>>32), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE64, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID32, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID32, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID32, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID32, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID32, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID32, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT64, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE, uintptr(fd), uintptr(off), uintptr(off>>32), uintptr(n), uintptr(n>>32), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE64, uintptr(unsafe.Pointer(_p0)), uintptr(length), uintptr(length>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS32, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS32, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS__NEWSELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pageOffset uintptr) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP2, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(pageOffset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getrlimit(resource int, rlim *rlimit32) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setrlimit(resource int, rlim *rlimit32) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tr0, _, e1 := RawSyscall(SYS_TIME, uintptr(unsafe.Pointer(t)), 0, 0)\n\ttt = Time_t(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go",
    "content": "// go run mksyscall.go -tags linux,amd64 syscall_linux.go syscall_linux_amd64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,amd64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(len), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_NEWFSTATAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc inotifyInit() (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ioperm(from int, num int, on int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPERM, uintptr(from), uintptr(num), uintptr(on))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Iopl(level int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPL, uintptr(level), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE, uintptr(fd), uintptr(off), uintptr(n), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe(p *[2]_C_int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(cmdline)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_KEXEC_FILE_LOAD, uintptr(kernelFd), uintptr(initrdFd), uintptr(cmdlineLen), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go",
    "content": "// go run mksyscall.go -l32 -arm -tags linux,arm syscall_linux.go syscall_linux_arm.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,arm\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(mask>>32), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(off>>32), uintptr(len), uintptr(len>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe(p *[2]_C_int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS32, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS32, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(flags), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN32, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT64, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT64, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID32, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID32, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID32, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID32, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyInit() (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN32, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT64, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE64, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS__NEWSELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID32, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID32, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID32, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID32, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID32, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID32, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT64, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_TRUNCATE64, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FTRUNCATE64, uintptr(fd), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pageOffset uintptr) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP2, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(pageOffset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getrlimit(resource int, rlim *rlimit32) (err error) {\n\t_, _, e1 := RawSyscall(SYS_UGETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setrlimit(resource int, rlim *rlimit32) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc armSyncFileRange(fd int, flags int, off int64, n int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_ARM_SYNC_FILE_RANGE, uintptr(fd), uintptr(flags), uintptr(off), uintptr(off>>32), uintptr(n), uintptr(n>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(cmdline)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_KEXEC_FILE_LOAD, uintptr(kernelFd), uintptr(initrdFd), uintptr(cmdlineLen), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go",
    "content": "// go run mksyscall.go -tags linux,arm64 syscall_linux.go syscall_linux_arm64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,arm64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(len), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_PWAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE, uintptr(fd), uintptr(off), uintptr(n), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(cmdline)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_KEXEC_FILE_LOAD, uintptr(kernelFd), uintptr(initrdFd), uintptr(cmdlineLen), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go",
    "content": "// go run mksyscall.go -b32 -arm -tags linux,mips syscall_linux.go syscall_linux_mipsx.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,mips\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask>>32), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off>>32), uintptr(off), uintptr(len>>32), uintptr(len))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(int64(r0)<<32 | int64(r1))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall9(SYS_FADVISE64, uintptr(fd), 0, uintptr(offset>>32), uintptr(offset), uintptr(length>>32), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FTRUNCATE64, uintptr(fd), 0, uintptr(length>>32), uintptr(length), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset>>32), uintptr(offset))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset>>32), uintptr(offset))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS__NEWSELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE64, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall9(SYS_SYNC_FILE_RANGE, uintptr(fd), 0, uintptr(off>>32), uintptr(off), uintptr(n>>32), uintptr(n), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_TRUNCATE64, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length>>32), uintptr(length), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyInit() (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ioperm(from int, num int, on int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPERM, uintptr(from), uintptr(num), uintptr(on))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Iopl(level int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPL, uintptr(level), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tr0, _, e1 := RawSyscall(SYS_TIME, uintptr(unsafe.Pointer(t)), 0, 0)\n\ttt = Time_t(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT64, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT64, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT64, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT64, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (p1 int, p2 int, err error) {\n\tr0, r1, e1 := RawSyscall(SYS_PIPE, 0, 0, 0)\n\tp1 = int(r0)\n\tp2 = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pageOffset uintptr) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP2, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(pageOffset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getrlimit(resource int, rlim *rlimit32) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setrlimit(resource int, rlim *rlimit32) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go",
    "content": "// go run mksyscall.go -tags linux,mips64 syscall_linux.go syscall_linux_mips64x.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,mips64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(len), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE, uintptr(fd), uintptr(off), uintptr(n), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat(fd int, st *stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(st)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat(dirfd int, path string, st *stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_NEWFSTATAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(st)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc lstat(path string, st *stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(st)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc stat(path string, st *stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(st)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go",
    "content": "// go run mksyscall.go -tags linux,mips64le syscall_linux.go syscall_linux_mips64x.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,mips64le\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(len), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE, uintptr(fd), uintptr(off), uintptr(n), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstat(fd int, st *stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(st)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fstatat(dirfd int, path string, st *stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_NEWFSTATAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(st)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc lstat(path string, st *stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(st)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc stat(path string, st *stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(st)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go",
    "content": "// go run mksyscall.go -l32 -arm -tags linux,mipsle syscall_linux.go syscall_linux_mipsx.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,mipsle\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(mask>>32), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(off>>32), uintptr(len), uintptr(len>>32))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall9(SYS_FADVISE64, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(length), uintptr(length>>32), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FTRUNCATE64, uintptr(fd), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS__NEWSELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE64, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall9(SYS_SYNC_FILE_RANGE, uintptr(fd), 0, uintptr(off), uintptr(off>>32), uintptr(n), uintptr(n>>32), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_TRUNCATE64, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyInit() (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ioperm(from int, num int, on int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPERM, uintptr(from), uintptr(num), uintptr(on))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Iopl(level int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPL, uintptr(level), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tr0, _, e1 := RawSyscall(SYS_TIME, uintptr(unsafe.Pointer(t)), 0, 0)\n\ttt = Time_t(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT64, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT64, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT64, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT64, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (p1 int, p2 int, err error) {\n\tr0, r1, e1 := RawSyscall(SYS_PIPE, 0, 0, 0)\n\tp1 = int(r0)\n\tp2 = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pageOffset uintptr) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP2, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(pageOffset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getrlimit(resource int, rlim *rlimit32) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setrlimit(resource int, rlim *rlimit32) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go",
    "content": "// go run mksyscall.go -tags linux,ppc64 syscall_linux.go syscall_linux_ppc64x.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,ppc64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(len), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_NEWFSTATAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_UGETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyInit() (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ioperm(from int, num int, on int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPERM, uintptr(from), uintptr(num), uintptr(on))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Iopl(level int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPL, uintptr(level), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS__NEWSELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tr0, _, e1 := RawSyscall(SYS_TIME, uintptr(unsafe.Pointer(t)), 0, 0)\n\ttt = Time_t(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe(p *[2]_C_int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc syncFileRange2(fd int, flags int, off int64, n int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE2, uintptr(fd), uintptr(flags), uintptr(off), uintptr(n), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(cmdline)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_KEXEC_FILE_LOAD, uintptr(kernelFd), uintptr(initrdFd), uintptr(cmdlineLen), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go",
    "content": "// go run mksyscall.go -tags linux,ppc64le syscall_linux.go syscall_linux_ppc64x.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,ppc64le\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(len), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_NEWFSTATAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_UGETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyInit() (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ioperm(from int, num int, on int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPERM, uintptr(from), uintptr(num), uintptr(on))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Iopl(level int) (err error) {\n\t_, _, e1 := Syscall(SYS_IOPL, uintptr(level), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS__NEWSELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Time(t *Time_t) (tt Time_t, err error) {\n\tr0, _, e1 := RawSyscall(SYS_TIME, uintptr(unsafe.Pointer(t)), 0, 0)\n\ttt = Time_t(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe(p *[2]_C_int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc syncFileRange2(fd int, flags int, off int64, n int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE2, uintptr(fd), uintptr(flags), uintptr(off), uintptr(n), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(cmdline)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_KEXEC_FILE_LOAD, uintptr(kernelFd), uintptr(initrdFd), uintptr(cmdlineLen), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go",
    "content": "// go run mksyscall.go -tags linux,riscv64 syscall_linux.go syscall_linux_riscv64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,riscv64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(len), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_PWAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE, uintptr(fd), uintptr(off), uintptr(n), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(cmdline)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_KEXEC_FILE_LOAD, uintptr(kernelFd), uintptr(initrdFd), uintptr(cmdlineLen), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go",
    "content": "// go run mksyscall.go -tags linux,s390x syscall_linux.go syscall_linux_s390x.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,s390x\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(len), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollCreate(size int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_EPOLL_CREATE, uintptr(size), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_NEWFSTATAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyInit() (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE, uintptr(fd), uintptr(off), uintptr(n), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(cmdline)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_KEXEC_FILE_LOAD, uintptr(kernelFd), uintptr(initrdFd), uintptr(cmdlineLen), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go",
    "content": "// go run mksyscall.go -tags linux,sparc64 syscall_linux.go syscall_linux_sparc64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build linux,sparc64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {\n\t_, _, e1 := Syscall6(SYS_FANOTIFY_MARK, uintptr(fd), uintptr(flags), uintptr(mask), uintptr(dirFd), uintptr(unsafe.Pointer(pathname)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fallocate(fd int, mode uint32, off int64, len int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FALLOCATE, uintptr(fd), uintptr(mode), uintptr(off), uintptr(len), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_TEE, uintptr(rfd), uintptr(wfd), uintptr(len), uintptr(flags), 0, 0)\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(events) > 0 {\n\t\t_p0 = unsafe.Pointer(&events[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_FADVISE64, uintptr(fd), uintptr(offset), uintptr(length), uintptr(advice), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT64, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, buf *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc InotifyInit() (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, n int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(n), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := Syscall(SYS_PAUSE, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE64, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (off int64, err error) {\n\tr0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))\n\toff = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsgid(gid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSGID, uintptr(gid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setfsuid(uid int) (prev int, err error) {\n\tr0, _, e1 := Syscall(SYS_SETFSUID, uintptr(uid), 0, 0)\n\tprev = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(resource int, rlim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))\n\tn = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, buf *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc SyncFileRange(fd int, off int64, n int64, flags int) (err error) {\n\t_, _, e1 := Syscall6(SYS_SYNC_FILE_RANGE, uintptr(fd), uintptr(off), uintptr(n), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {\n\tr0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(n int, list *_Gid_t) (nn int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tnn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(n int, list *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) {\n\tr0, _, e1 := Syscall6(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))\n\txaddr = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(dirfd int, path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe(p *[2]_C_int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE, uintptr(unsafe.Pointer(p)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go",
    "content": "// go run mksyscall.go -l32 -netbsd -tags netbsd,386 syscall_bsd.go syscall_netbsd.go syscall_netbsd_386.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build netbsd,386\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (fd1 int, fd2 int, err error) {\n\tr0, r1, e1 := RawSyscall(SYS_PIPE, 0, 0, 0)\n\tfd1 = int(r0)\n\tfd2 = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(from int, to int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(from), uintptr(to), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FD, uintptr(fd), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall9(SYS_POSIX_FADVISE, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), 0, uintptr(length), uintptr(length>>32), uintptr(advice), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatvfs1(fd int, buf *Statvfs_t, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATVFS1, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFOAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)\n\tnewoffset = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statvfs1(path string, buf *Statvfs_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATVFS1, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), uintptr(pos>>32), 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go",
    "content": "// go run mksyscall.go -netbsd -tags netbsd,amd64 syscall_bsd.go syscall_netbsd.go syscall_netbsd_amd64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build netbsd,amd64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (fd1 int, fd2 int, err error) {\n\tr0, r1, e1 := RawSyscall(SYS_PIPE, 0, 0, 0)\n\tfd1 = int(r0)\n\tfd2 = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(from int, to int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(from), uintptr(to), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FD, uintptr(fd), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_POSIX_FADVISE, uintptr(fd), 0, uintptr(offset), 0, uintptr(length), uintptr(advice))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatvfs1(fd int, buf *Statvfs_t, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATVFS1, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFOAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(whence), 0, 0)\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statvfs1(path string, buf *Statvfs_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATVFS1, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), 0, 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go",
    "content": "// go run mksyscall.go -l32 -netbsd -arm -tags netbsd,arm syscall_bsd.go syscall_netbsd.go syscall_netbsd_arm.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build netbsd,arm\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (fd1 int, fd2 int, err error) {\n\tr0, r1, e1 := RawSyscall(SYS_PIPE, 0, 0, 0)\n\tfd1 = int(r0)\n\tfd2 = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(from int, to int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(from), uintptr(to), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FD, uintptr(fd), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall9(SYS_POSIX_FADVISE, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), 0, uintptr(length), uintptr(length>>32), uintptr(advice), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatvfs1(fd int, buf *Statvfs_t, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATVFS1, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFOAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)\n\tnewoffset = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statvfs1(path string, buf *Statvfs_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATVFS1, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), uintptr(pos>>32), 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go",
    "content": "// go run mksyscall.go -netbsd -tags netbsd,arm64 syscall_bsd.go syscall_netbsd.go syscall_netbsd_arm64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build netbsd,arm64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe() (fd1 int, fd2 int, err error) {\n\tr0, r1, e1 := RawSyscall(SYS_PIPE, 0, 0, 0)\n\tfd1 = int(r0)\n\tfd2 = int(r1)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(from int, to int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(from), uintptr(to), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FD, uintptr(fd), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p0)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FD, uintptr(fd), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(file)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_FILE, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_GET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrSetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_SET_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)), uintptr(data), uintptr(nbytes), 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrDeleteLink(link string, attrnamespace int, attrname string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(attrname)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_EXTATTR_DELETE_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_EXTATTR_LIST_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(attrnamespace), uintptr(data), uintptr(nbytes), 0, 0)\n\tret = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fadvise(fd int, offset int64, length int64, advice int) (err error) {\n\t_, _, e1 := Syscall6(SYS_POSIX_FADVISE, uintptr(fd), 0, uintptr(offset), 0, uintptr(length), uintptr(advice))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatvfs1(fd int, buf *Statvfs_t, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATVFS1, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFOAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(whence), 0, 0)\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statvfs1(path string, buf *Statvfs_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATVFS1, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), 0, 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go",
    "content": "// go run mksyscall.go -l32 -openbsd -tags openbsd,386 syscall_bsd.go syscall_openbsd.go syscall_openbsd_386.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build openbsd,386\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_PPOLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(unsafe.Pointer(timeout)), uintptr(unsafe.Pointer(sigmask)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(from int, to int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(from), uintptr(to), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrtable() (rtable int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETRTABLE, 0, 0, 0)\n\trtable = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFOAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)\n\tnewoffset = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrtable(rtable int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRTABLE, uintptr(rtable), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), uintptr(pos>>32), 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go",
    "content": "// go run mksyscall.go -openbsd -tags openbsd,amd64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_amd64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build openbsd,amd64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_PPOLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(unsafe.Pointer(timeout)), uintptr(unsafe.Pointer(sigmask)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(from int, to int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(from), uintptr(to), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrtable() (rtable int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETRTABLE, 0, 0, 0)\n\trtable = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFOAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(whence), 0, 0)\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrtable(rtable int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRTABLE, uintptr(rtable), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), 0, 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go",
    "content": "// go run mksyscall.go -l32 -openbsd -arm -tags openbsd,arm syscall_bsd.go syscall_openbsd.go syscall_openbsd_arm.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build openbsd,arm\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_PPOLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(unsafe.Pointer(timeout)), uintptr(unsafe.Pointer(sigmask)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(from int, to int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(from), uintptr(to), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall6(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrtable() (rtable int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETRTABLE, 0, 0, 0)\n\trtable = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFOAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), uintptr(offset>>32))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)\n\tnewoffset = int64(int64(r1)<<32 | int64(r0))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrtable(rtable int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRTABLE, uintptr(rtable), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length), uintptr(length>>32), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), uintptr(pos>>32), 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go",
    "content": "// go run mksyscall.go -openbsd -tags openbsd,arm64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_arm64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build openbsd,arm64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_PPOLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(unsafe.Pointer(timeout)), uintptr(unsafe.Pointer(sigmask)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(from int, to int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(from), uintptr(to), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrtable() (rtable int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETRTABLE, 0, 0, 0)\n\trtable = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFOAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(whence), 0, 0)\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrtable(rtable int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRTABLE, uintptr(rtable), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), 0, 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go",
    "content": "// go run mksyscall.go -openbsd -tags openbsd,mips64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_mips64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build openbsd,mips64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGROUPS, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {\n\tr0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_ACCEPT, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_BIND, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := Syscall(SYS_CONNECT, uintptr(s), uintptr(addr), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := Syscall6(SYS_SETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(s), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS_SENDTO, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_KEVENT, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, timeval *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimes(fd int, timeval *[2]Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_POLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, behav int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MADVISE, uintptr(_p0), uintptr(len(b)), uintptr(behav))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MPROTECT, uintptr(_p0), uintptr(len(b)), uintptr(prot))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MSYNC, uintptr(_p0), uintptr(len(b)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(b) > 0 {\n\t\t_p0 = unsafe.Pointer(&b[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall(SYS_MUNLOCK, uintptr(_p0), uintptr(len(b)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := Syscall(SYS_MUNLOCKALL, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe2(p *[2]_C_int, flags int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_GETDENTS, uintptr(fd), uintptr(_p0), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p0 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS___GETCWD, uintptr(_p0), uintptr(len(buf)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), uintptr(arg))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(mib) > 0 {\n\t\t_p0 = unsafe.Pointer(&mib[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\t_, _, e1 := Syscall6(SYS___SYSCTL, uintptr(_p0), uintptr(len(mib)), uintptr(unsafe.Pointer(old)), uintptr(unsafe.Pointer(oldlen)), uintptr(unsafe.Pointer(new)), uintptr(newlen))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_PPOLL, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(unsafe.Pointer(timeout)), uintptr(unsafe.Pointer(sigmask)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_ACCESS, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := Syscall(SYS_ADJTIME, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chflags(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHFLAGS, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHMOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_CLOSE, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := Syscall(SYS_DUP, uintptr(fd), 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(from int, to int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP2, uintptr(from), uintptr(to), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup3(from int, to int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_DUP3, uintptr(from), uintptr(to), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tSyscall(SYS_EXIT, uintptr(code), 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHDIR, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchflags(fd int, flags int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHFLAGS, uintptr(fd), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHMOD, uintptr(fd), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := Syscall(SYS_FCHOWN, uintptr(fd), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := Syscall(SYS_FPATHCONF, uintptr(fd), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_FSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatfs(fd int, stat *Statfs_t) (err error) {\n\t_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := Syscall(SYS_FSYNC, uintptr(fd), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEGID, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETEUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := RawSyscall(SYS_GETGID, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgrp int) {\n\tr0, _, _ := RawSyscall(SYS_GETPGRP, 0, 0, 0)\n\tpgrp = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := RawSyscall(SYS_GETPPID, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (prio int, err error) {\n\tr0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)\n\tprio = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrtable() (rtable int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETRTABLE, 0, 0, 0)\n\trtable = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getsid(pid int) (sid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_GETSID, uintptr(pid), 0, 0)\n\tsid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_GETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := RawSyscall(SYS_GETUID, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Issetugid() (tainted bool) {\n\tr0, _, _ := Syscall(SYS_ISSETUGID, 0, 0, 0)\n\ttainted = bool(r0 != 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kqueue() (fd int, err error) {\n\tr0, _, e1 := Syscall(SYS_KQUEUE, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LCHOWN, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_LINKAT, uintptr(pathfd), uintptr(unsafe.Pointer(_p0)), uintptr(linkfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := Syscall(SYS_LISTEN, uintptr(s), uintptr(backlog), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_LSTAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIR, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFO, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKFIFOAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_MKNOD, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_OPEN, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := Syscall(SYS_PATHCONF, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PREAD, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_PWRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)), 0, uintptr(offset), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_READLINK, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 unsafe.Pointer\n\tif len(buf) > 0 {\n\t\t_p1 = unsafe.Pointer(&buf[0])\n\t} else {\n\t\t_p1 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RENAME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(fromfd int, from string, tofd int, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Revoke(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_REVOKE, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_RMDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(whence), 0, 0)\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setlogin(name string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SETLOGIN, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREGID, uintptr(rgid), uintptr(egid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETREUID, uintptr(ruid), uintptr(euid), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresgid(rgid int, egid int, sgid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESGID, uintptr(rgid), uintptr(egid), uintptr(sgid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setresuid(ruid int, euid int, suid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRESUID, uintptr(ruid), uintptr(euid), uintptr(suid))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(which), uintptr(unsafe.Pointer(lim)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrtable(rtable int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETRTABLE, uintptr(rtable), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Settimeofday(tp *Timeval) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tp)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := RawSyscall(SYS_SETUID, uintptr(uid), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STAT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statfs(path string, stat *Statfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINK, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlinkat(oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := Syscall(SYS_SYNC, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), 0, uintptr(length))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(newmask int) (oldmask int) {\n\tr0, _, _ := Syscall(SYS_UMASK, uintptr(newmask), 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINK, uintptr(unsafe.Pointer(_p0)), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall(SYS_UNMOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 unsafe.Pointer\n\tif len(p) > 0 {\n\t\t_p0 = unsafe.Pointer(&p[0])\n\t} else {\n\t\t_p0 = unsafe.Pointer(&_zero)\n\t}\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(_p0), uintptr(len(p)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := Syscall9(SYS_MMAP, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), 0, uintptr(pos), 0, 0)\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := Syscall(SYS_MUNMAP, uintptr(addr), uintptr(length), 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readlen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc writelen(fd int, buf *byte, nbuf int) (n int, err error) {\n\tr0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(buf)), uintptr(nbuf))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go",
    "content": "// go run mksyscall_solaris.go -tags solaris,amd64 syscall_solaris.go syscall_solaris_amd64.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build solaris,amd64\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n//go:cgo_import_dynamic libc_pipe pipe \"libc.so\"\n//go:cgo_import_dynamic libc_getsockname getsockname \"libsocket.so\"\n//go:cgo_import_dynamic libc_getcwd getcwd \"libc.so\"\n//go:cgo_import_dynamic libc_getgroups getgroups \"libc.so\"\n//go:cgo_import_dynamic libc_setgroups setgroups \"libc.so\"\n//go:cgo_import_dynamic libc_wait4 wait4 \"libc.so\"\n//go:cgo_import_dynamic libc_gethostname gethostname \"libc.so\"\n//go:cgo_import_dynamic libc_utimes utimes \"libc.so\"\n//go:cgo_import_dynamic libc_utimensat utimensat \"libc.so\"\n//go:cgo_import_dynamic libc_fcntl fcntl \"libc.so\"\n//go:cgo_import_dynamic libc_futimesat futimesat \"libc.so\"\n//go:cgo_import_dynamic libc_accept accept \"libsocket.so\"\n//go:cgo_import_dynamic libc___xnet_recvmsg __xnet_recvmsg \"libsocket.so\"\n//go:cgo_import_dynamic libc___xnet_sendmsg __xnet_sendmsg \"libsocket.so\"\n//go:cgo_import_dynamic libc_acct acct \"libc.so\"\n//go:cgo_import_dynamic libc___makedev __makedev \"libc.so\"\n//go:cgo_import_dynamic libc___major __major \"libc.so\"\n//go:cgo_import_dynamic libc___minor __minor \"libc.so\"\n//go:cgo_import_dynamic libc_ioctl ioctl \"libc.so\"\n//go:cgo_import_dynamic libc_poll poll \"libc.so\"\n//go:cgo_import_dynamic libc_access access \"libc.so\"\n//go:cgo_import_dynamic libc_adjtime adjtime \"libc.so\"\n//go:cgo_import_dynamic libc_chdir chdir \"libc.so\"\n//go:cgo_import_dynamic libc_chmod chmod \"libc.so\"\n//go:cgo_import_dynamic libc_chown chown \"libc.so\"\n//go:cgo_import_dynamic libc_chroot chroot \"libc.so\"\n//go:cgo_import_dynamic libc_close close \"libc.so\"\n//go:cgo_import_dynamic libc_creat creat \"libc.so\"\n//go:cgo_import_dynamic libc_dup dup \"libc.so\"\n//go:cgo_import_dynamic libc_dup2 dup2 \"libc.so\"\n//go:cgo_import_dynamic libc_exit exit \"libc.so\"\n//go:cgo_import_dynamic libc_faccessat faccessat \"libc.so\"\n//go:cgo_import_dynamic libc_fchdir fchdir \"libc.so\"\n//go:cgo_import_dynamic libc_fchmod fchmod \"libc.so\"\n//go:cgo_import_dynamic libc_fchmodat fchmodat \"libc.so\"\n//go:cgo_import_dynamic libc_fchown fchown \"libc.so\"\n//go:cgo_import_dynamic libc_fchownat fchownat \"libc.so\"\n//go:cgo_import_dynamic libc_fdatasync fdatasync \"libc.so\"\n//go:cgo_import_dynamic libc_flock flock \"libc.so\"\n//go:cgo_import_dynamic libc_fpathconf fpathconf \"libc.so\"\n//go:cgo_import_dynamic libc_fstat fstat \"libc.so\"\n//go:cgo_import_dynamic libc_fstatat fstatat \"libc.so\"\n//go:cgo_import_dynamic libc_fstatvfs fstatvfs \"libc.so\"\n//go:cgo_import_dynamic libc_getdents getdents \"libc.so\"\n//go:cgo_import_dynamic libc_getgid getgid \"libc.so\"\n//go:cgo_import_dynamic libc_getpid getpid \"libc.so\"\n//go:cgo_import_dynamic libc_getpgid getpgid \"libc.so\"\n//go:cgo_import_dynamic libc_getpgrp getpgrp \"libc.so\"\n//go:cgo_import_dynamic libc_geteuid geteuid \"libc.so\"\n//go:cgo_import_dynamic libc_getegid getegid \"libc.so\"\n//go:cgo_import_dynamic libc_getppid getppid \"libc.so\"\n//go:cgo_import_dynamic libc_getpriority getpriority \"libc.so\"\n//go:cgo_import_dynamic libc_getrlimit getrlimit \"libc.so\"\n//go:cgo_import_dynamic libc_getrusage getrusage \"libc.so\"\n//go:cgo_import_dynamic libc_gettimeofday gettimeofday \"libc.so\"\n//go:cgo_import_dynamic libc_getuid getuid \"libc.so\"\n//go:cgo_import_dynamic libc_kill kill \"libc.so\"\n//go:cgo_import_dynamic libc_lchown lchown \"libc.so\"\n//go:cgo_import_dynamic libc_link link \"libc.so\"\n//go:cgo_import_dynamic libc___xnet_llisten __xnet_llisten \"libsocket.so\"\n//go:cgo_import_dynamic libc_lstat lstat \"libc.so\"\n//go:cgo_import_dynamic libc_madvise madvise \"libc.so\"\n//go:cgo_import_dynamic libc_mkdir mkdir \"libc.so\"\n//go:cgo_import_dynamic libc_mkdirat mkdirat \"libc.so\"\n//go:cgo_import_dynamic libc_mkfifo mkfifo \"libc.so\"\n//go:cgo_import_dynamic libc_mkfifoat mkfifoat \"libc.so\"\n//go:cgo_import_dynamic libc_mknod mknod \"libc.so\"\n//go:cgo_import_dynamic libc_mknodat mknodat \"libc.so\"\n//go:cgo_import_dynamic libc_mlock mlock \"libc.so\"\n//go:cgo_import_dynamic libc_mlockall mlockall \"libc.so\"\n//go:cgo_import_dynamic libc_mprotect mprotect \"libc.so\"\n//go:cgo_import_dynamic libc_msync msync \"libc.so\"\n//go:cgo_import_dynamic libc_munlock munlock \"libc.so\"\n//go:cgo_import_dynamic libc_munlockall munlockall \"libc.so\"\n//go:cgo_import_dynamic libc_nanosleep nanosleep \"libc.so\"\n//go:cgo_import_dynamic libc_open open \"libc.so\"\n//go:cgo_import_dynamic libc_openat openat \"libc.so\"\n//go:cgo_import_dynamic libc_pathconf pathconf \"libc.so\"\n//go:cgo_import_dynamic libc_pause pause \"libc.so\"\n//go:cgo_import_dynamic libc_pread pread \"libc.so\"\n//go:cgo_import_dynamic libc_pwrite pwrite \"libc.so\"\n//go:cgo_import_dynamic libc_read read \"libc.so\"\n//go:cgo_import_dynamic libc_readlink readlink \"libc.so\"\n//go:cgo_import_dynamic libc_rename rename \"libc.so\"\n//go:cgo_import_dynamic libc_renameat renameat \"libc.so\"\n//go:cgo_import_dynamic libc_rmdir rmdir \"libc.so\"\n//go:cgo_import_dynamic libc_lseek lseek \"libc.so\"\n//go:cgo_import_dynamic libc_select select \"libc.so\"\n//go:cgo_import_dynamic libc_setegid setegid \"libc.so\"\n//go:cgo_import_dynamic libc_seteuid seteuid \"libc.so\"\n//go:cgo_import_dynamic libc_setgid setgid \"libc.so\"\n//go:cgo_import_dynamic libc_sethostname sethostname \"libc.so\"\n//go:cgo_import_dynamic libc_setpgid setpgid \"libc.so\"\n//go:cgo_import_dynamic libc_setpriority setpriority \"libc.so\"\n//go:cgo_import_dynamic libc_setregid setregid \"libc.so\"\n//go:cgo_import_dynamic libc_setreuid setreuid \"libc.so\"\n//go:cgo_import_dynamic libc_setrlimit setrlimit \"libc.so\"\n//go:cgo_import_dynamic libc_setsid setsid \"libc.so\"\n//go:cgo_import_dynamic libc_setuid setuid \"libc.so\"\n//go:cgo_import_dynamic libc_shutdown shutdown \"libsocket.so\"\n//go:cgo_import_dynamic libc_stat stat \"libc.so\"\n//go:cgo_import_dynamic libc_statvfs statvfs \"libc.so\"\n//go:cgo_import_dynamic libc_symlink symlink \"libc.so\"\n//go:cgo_import_dynamic libc_sync sync \"libc.so\"\n//go:cgo_import_dynamic libc_times times \"libc.so\"\n//go:cgo_import_dynamic libc_truncate truncate \"libc.so\"\n//go:cgo_import_dynamic libc_fsync fsync \"libc.so\"\n//go:cgo_import_dynamic libc_ftruncate ftruncate \"libc.so\"\n//go:cgo_import_dynamic libc_umask umask \"libc.so\"\n//go:cgo_import_dynamic libc_uname uname \"libc.so\"\n//go:cgo_import_dynamic libc_umount umount \"libc.so\"\n//go:cgo_import_dynamic libc_unlink unlink \"libc.so\"\n//go:cgo_import_dynamic libc_unlinkat unlinkat \"libc.so\"\n//go:cgo_import_dynamic libc_ustat ustat \"libc.so\"\n//go:cgo_import_dynamic libc_utime utime \"libc.so\"\n//go:cgo_import_dynamic libc___xnet_bind __xnet_bind \"libsocket.so\"\n//go:cgo_import_dynamic libc___xnet_connect __xnet_connect \"libsocket.so\"\n//go:cgo_import_dynamic libc_mmap mmap \"libc.so\"\n//go:cgo_import_dynamic libc_munmap munmap \"libc.so\"\n//go:cgo_import_dynamic libc_sendfile sendfile \"libsendfile.so\"\n//go:cgo_import_dynamic libc___xnet_sendto __xnet_sendto \"libsocket.so\"\n//go:cgo_import_dynamic libc___xnet_socket __xnet_socket \"libsocket.so\"\n//go:cgo_import_dynamic libc___xnet_socketpair __xnet_socketpair \"libsocket.so\"\n//go:cgo_import_dynamic libc_write write \"libc.so\"\n//go:cgo_import_dynamic libc___xnet_getsockopt __xnet_getsockopt \"libsocket.so\"\n//go:cgo_import_dynamic libc_getpeername getpeername \"libsocket.so\"\n//go:cgo_import_dynamic libc_setsockopt setsockopt \"libsocket.so\"\n//go:cgo_import_dynamic libc_recvfrom recvfrom \"libsocket.so\"\n\n//go:linkname procpipe libc_pipe\n//go:linkname procgetsockname libc_getsockname\n//go:linkname procGetcwd libc_getcwd\n//go:linkname procgetgroups libc_getgroups\n//go:linkname procsetgroups libc_setgroups\n//go:linkname procwait4 libc_wait4\n//go:linkname procgethostname libc_gethostname\n//go:linkname procutimes libc_utimes\n//go:linkname procutimensat libc_utimensat\n//go:linkname procfcntl libc_fcntl\n//go:linkname procfutimesat libc_futimesat\n//go:linkname procaccept libc_accept\n//go:linkname proc__xnet_recvmsg libc___xnet_recvmsg\n//go:linkname proc__xnet_sendmsg libc___xnet_sendmsg\n//go:linkname procacct libc_acct\n//go:linkname proc__makedev libc___makedev\n//go:linkname proc__major libc___major\n//go:linkname proc__minor libc___minor\n//go:linkname procioctl libc_ioctl\n//go:linkname procpoll libc_poll\n//go:linkname procAccess libc_access\n//go:linkname procAdjtime libc_adjtime\n//go:linkname procChdir libc_chdir\n//go:linkname procChmod libc_chmod\n//go:linkname procChown libc_chown\n//go:linkname procChroot libc_chroot\n//go:linkname procClose libc_close\n//go:linkname procCreat libc_creat\n//go:linkname procDup libc_dup\n//go:linkname procDup2 libc_dup2\n//go:linkname procExit libc_exit\n//go:linkname procFaccessat libc_faccessat\n//go:linkname procFchdir libc_fchdir\n//go:linkname procFchmod libc_fchmod\n//go:linkname procFchmodat libc_fchmodat\n//go:linkname procFchown libc_fchown\n//go:linkname procFchownat libc_fchownat\n//go:linkname procFdatasync libc_fdatasync\n//go:linkname procFlock libc_flock\n//go:linkname procFpathconf libc_fpathconf\n//go:linkname procFstat libc_fstat\n//go:linkname procFstatat libc_fstatat\n//go:linkname procFstatvfs libc_fstatvfs\n//go:linkname procGetdents libc_getdents\n//go:linkname procGetgid libc_getgid\n//go:linkname procGetpid libc_getpid\n//go:linkname procGetpgid libc_getpgid\n//go:linkname procGetpgrp libc_getpgrp\n//go:linkname procGeteuid libc_geteuid\n//go:linkname procGetegid libc_getegid\n//go:linkname procGetppid libc_getppid\n//go:linkname procGetpriority libc_getpriority\n//go:linkname procGetrlimit libc_getrlimit\n//go:linkname procGetrusage libc_getrusage\n//go:linkname procGettimeofday libc_gettimeofday\n//go:linkname procGetuid libc_getuid\n//go:linkname procKill libc_kill\n//go:linkname procLchown libc_lchown\n//go:linkname procLink libc_link\n//go:linkname proc__xnet_llisten libc___xnet_llisten\n//go:linkname procLstat libc_lstat\n//go:linkname procMadvise libc_madvise\n//go:linkname procMkdir libc_mkdir\n//go:linkname procMkdirat libc_mkdirat\n//go:linkname procMkfifo libc_mkfifo\n//go:linkname procMkfifoat libc_mkfifoat\n//go:linkname procMknod libc_mknod\n//go:linkname procMknodat libc_mknodat\n//go:linkname procMlock libc_mlock\n//go:linkname procMlockall libc_mlockall\n//go:linkname procMprotect libc_mprotect\n//go:linkname procMsync libc_msync\n//go:linkname procMunlock libc_munlock\n//go:linkname procMunlockall libc_munlockall\n//go:linkname procNanosleep libc_nanosleep\n//go:linkname procOpen libc_open\n//go:linkname procOpenat libc_openat\n//go:linkname procPathconf libc_pathconf\n//go:linkname procPause libc_pause\n//go:linkname procPread libc_pread\n//go:linkname procPwrite libc_pwrite\n//go:linkname procread libc_read\n//go:linkname procReadlink libc_readlink\n//go:linkname procRename libc_rename\n//go:linkname procRenameat libc_renameat\n//go:linkname procRmdir libc_rmdir\n//go:linkname proclseek libc_lseek\n//go:linkname procSelect libc_select\n//go:linkname procSetegid libc_setegid\n//go:linkname procSeteuid libc_seteuid\n//go:linkname procSetgid libc_setgid\n//go:linkname procSethostname libc_sethostname\n//go:linkname procSetpgid libc_setpgid\n//go:linkname procSetpriority libc_setpriority\n//go:linkname procSetregid libc_setregid\n//go:linkname procSetreuid libc_setreuid\n//go:linkname procSetrlimit libc_setrlimit\n//go:linkname procSetsid libc_setsid\n//go:linkname procSetuid libc_setuid\n//go:linkname procshutdown libc_shutdown\n//go:linkname procStat libc_stat\n//go:linkname procStatvfs libc_statvfs\n//go:linkname procSymlink libc_symlink\n//go:linkname procSync libc_sync\n//go:linkname procTimes libc_times\n//go:linkname procTruncate libc_truncate\n//go:linkname procFsync libc_fsync\n//go:linkname procFtruncate libc_ftruncate\n//go:linkname procUmask libc_umask\n//go:linkname procUname libc_uname\n//go:linkname procumount libc_umount\n//go:linkname procUnlink libc_unlink\n//go:linkname procUnlinkat libc_unlinkat\n//go:linkname procUstat libc_ustat\n//go:linkname procUtime libc_utime\n//go:linkname proc__xnet_bind libc___xnet_bind\n//go:linkname proc__xnet_connect libc___xnet_connect\n//go:linkname procmmap libc_mmap\n//go:linkname procmunmap libc_munmap\n//go:linkname procsendfile libc_sendfile\n//go:linkname proc__xnet_sendto libc___xnet_sendto\n//go:linkname proc__xnet_socket libc___xnet_socket\n//go:linkname proc__xnet_socketpair libc___xnet_socketpair\n//go:linkname procwrite libc_write\n//go:linkname proc__xnet_getsockopt libc___xnet_getsockopt\n//go:linkname procgetpeername libc_getpeername\n//go:linkname procsetsockopt libc_setsockopt\n//go:linkname procrecvfrom libc_recvfrom\n\nvar (\n\tprocpipe,\n\tprocgetsockname,\n\tprocGetcwd,\n\tprocgetgroups,\n\tprocsetgroups,\n\tprocwait4,\n\tprocgethostname,\n\tprocutimes,\n\tprocutimensat,\n\tprocfcntl,\n\tprocfutimesat,\n\tprocaccept,\n\tproc__xnet_recvmsg,\n\tproc__xnet_sendmsg,\n\tprocacct,\n\tproc__makedev,\n\tproc__major,\n\tproc__minor,\n\tprocioctl,\n\tprocpoll,\n\tprocAccess,\n\tprocAdjtime,\n\tprocChdir,\n\tprocChmod,\n\tprocChown,\n\tprocChroot,\n\tprocClose,\n\tprocCreat,\n\tprocDup,\n\tprocDup2,\n\tprocExit,\n\tprocFaccessat,\n\tprocFchdir,\n\tprocFchmod,\n\tprocFchmodat,\n\tprocFchown,\n\tprocFchownat,\n\tprocFdatasync,\n\tprocFlock,\n\tprocFpathconf,\n\tprocFstat,\n\tprocFstatat,\n\tprocFstatvfs,\n\tprocGetdents,\n\tprocGetgid,\n\tprocGetpid,\n\tprocGetpgid,\n\tprocGetpgrp,\n\tprocGeteuid,\n\tprocGetegid,\n\tprocGetppid,\n\tprocGetpriority,\n\tprocGetrlimit,\n\tprocGetrusage,\n\tprocGettimeofday,\n\tprocGetuid,\n\tprocKill,\n\tprocLchown,\n\tprocLink,\n\tproc__xnet_llisten,\n\tprocLstat,\n\tprocMadvise,\n\tprocMkdir,\n\tprocMkdirat,\n\tprocMkfifo,\n\tprocMkfifoat,\n\tprocMknod,\n\tprocMknodat,\n\tprocMlock,\n\tprocMlockall,\n\tprocMprotect,\n\tprocMsync,\n\tprocMunlock,\n\tprocMunlockall,\n\tprocNanosleep,\n\tprocOpen,\n\tprocOpenat,\n\tprocPathconf,\n\tprocPause,\n\tprocPread,\n\tprocPwrite,\n\tprocread,\n\tprocReadlink,\n\tprocRename,\n\tprocRenameat,\n\tprocRmdir,\n\tproclseek,\n\tprocSelect,\n\tprocSetegid,\n\tprocSeteuid,\n\tprocSetgid,\n\tprocSethostname,\n\tprocSetpgid,\n\tprocSetpriority,\n\tprocSetregid,\n\tprocSetreuid,\n\tprocSetrlimit,\n\tprocSetsid,\n\tprocSetuid,\n\tprocshutdown,\n\tprocStat,\n\tprocStatvfs,\n\tprocSymlink,\n\tprocSync,\n\tprocTimes,\n\tprocTruncate,\n\tprocFsync,\n\tprocFtruncate,\n\tprocUmask,\n\tprocUname,\n\tprocumount,\n\tprocUnlink,\n\tprocUnlinkat,\n\tprocUstat,\n\tprocUtime,\n\tproc__xnet_bind,\n\tproc__xnet_connect,\n\tprocmmap,\n\tprocmunmap,\n\tprocsendfile,\n\tproc__xnet_sendto,\n\tproc__xnet_socket,\n\tproc__xnet_socketpair,\n\tprocwrite,\n\tproc__xnet_getsockopt,\n\tprocgetpeername,\n\tprocsetsockopt,\n\tprocrecvfrom syscallFunc\n)\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc pipe(p *[2]_C_int) (n int, err error) {\n\tr0, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procpipe)), 1, uintptr(unsafe.Pointer(p)), 0, 0, 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procgetsockname)), 3, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getcwd(buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procGetcwd)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), 0, 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getgroups(ngid int, gid *_Gid_t) (n int, err error) {\n\tr0, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procgetgroups)), 2, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0, 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setgroups(ngid int, gid *_Gid_t) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procsetgroups)), 2, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc wait4(pid int32, statusp *_C_int, options int, rusage *Rusage) (wpid int32, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procwait4)), 4, uintptr(pid), uintptr(unsafe.Pointer(statusp)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)\n\twpid = int32(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc gethostname(buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procgethostname)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), 0, 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimes(path string, times *[2]Timeval) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procutimes)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc utimensat(fd int, path string, times *[2]Timespec, flag int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procutimensat)), 4, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flag), 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc fcntl(fd int, cmd int, arg int) (val int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procfcntl)), 3, uintptr(fd), uintptr(cmd), uintptr(arg), 0, 0, 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc futimesat(fildes int, path *byte, times *[2]Timeval) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procfutimesat)), 3, uintptr(fildes), uintptr(unsafe.Pointer(path)), uintptr(unsafe.Pointer(times)), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procaccept)), 3, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_recvmsg)), 3, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_sendmsg)), 3, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc acct(path *byte) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procacct)), 1, uintptr(unsafe.Pointer(path)), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc __makedev(version int, major uint, minor uint) (val uint64) {\n\tr0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&proc__makedev)), 3, uintptr(version), uintptr(major), uintptr(minor), 0, 0, 0)\n\tval = uint64(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc __major(version int, dev uint64) (val uint) {\n\tr0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&proc__major)), 2, uintptr(version), uintptr(dev), 0, 0, 0, 0)\n\tval = uint(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc __minor(version int, dev uint64) (val uint) {\n\tr0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&proc__minor)), 2, uintptr(version), uintptr(dev), 0, 0, 0, 0)\n\tval = uint(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc ioctl(fd int, req uint, arg uintptr) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procioctl)), 3, uintptr(fd), uintptr(req), uintptr(arg), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc poll(fds *PollFd, nfds int, timeout int) (n int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procpoll)), 3, uintptr(unsafe.Pointer(fds)), uintptr(nfds), uintptr(timeout), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Access(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procAccess)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Adjtime(delta *Timeval, olddelta *Timeval) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procAdjtime)), 2, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procChdir)), 1, uintptr(unsafe.Pointer(_p0)), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procChmod)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procChown)), 3, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Chroot(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procChroot)), 1, uintptr(unsafe.Pointer(_p0)), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Close(fd int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procClose)), 1, uintptr(fd), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Creat(path string, mode uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procCreat)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0, 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup(fd int) (nfd int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procDup)), 1, uintptr(fd), 0, 0, 0, 0, 0)\n\tnfd = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Dup2(oldfd int, newfd int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procDup2)), 2, uintptr(oldfd), uintptr(newfd), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Exit(code int) {\n\tsysvicall6(uintptr(unsafe.Pointer(&procExit)), 1, uintptr(code), 0, 0, 0, 0, 0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFaccessat)), 4, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchdir(fd int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFchdir)), 1, uintptr(fd), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmod(fd int, mode uint32) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFchmod)), 2, uintptr(fd), uintptr(mode), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFchmodat)), 4, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchown(fd int, uid int, gid int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFchown)), 3, uintptr(fd), uintptr(uid), uintptr(gid), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFchownat)), 5, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fdatasync(fd int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFdatasync)), 1, uintptr(fd), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Flock(fd int, how int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFlock)), 2, uintptr(fd), uintptr(how), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fpathconf(fd int, name int) (val int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFpathconf)), 2, uintptr(fd), uintptr(name), 0, 0, 0, 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstat(fd int, stat *Stat_t) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFstat)), 2, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFstatat)), 4, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fstatvfs(fd int, vfsstat *Statvfs_t) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFstatvfs)), 2, uintptr(fd), uintptr(unsafe.Pointer(vfsstat)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getdents(fd int, buf []byte, basep *uintptr) (n int, err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procGetdents)), 4, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), uintptr(unsafe.Pointer(basep)), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getgid() (gid int) {\n\tr0, _, _ := rawSysvicall6(uintptr(unsafe.Pointer(&procGetgid)), 0, 0, 0, 0, 0, 0, 0)\n\tgid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpid() (pid int) {\n\tr0, _, _ := rawSysvicall6(uintptr(unsafe.Pointer(&procGetpid)), 0, 0, 0, 0, 0, 0, 0)\n\tpid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgid(pid int) (pgid int, err error) {\n\tr0, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procGetpgid)), 1, uintptr(pid), 0, 0, 0, 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpgrp() (pgid int, err error) {\n\tr0, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procGetpgrp)), 0, 0, 0, 0, 0, 0, 0)\n\tpgid = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Geteuid() (euid int) {\n\tr0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&procGeteuid)), 0, 0, 0, 0, 0, 0, 0)\n\teuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getegid() (egid int) {\n\tr0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&procGetegid)), 0, 0, 0, 0, 0, 0, 0)\n\tegid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getppid() (ppid int) {\n\tr0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&procGetppid)), 0, 0, 0, 0, 0, 0, 0)\n\tppid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getpriority(which int, who int) (n int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procGetpriority)), 2, uintptr(which), uintptr(who), 0, 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procGetrlimit)), 2, uintptr(which), uintptr(unsafe.Pointer(lim)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getrusage(who int, rusage *Rusage) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procGetrusage)), 2, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procGettimeofday)), 1, uintptr(unsafe.Pointer(tv)), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Getuid() (uid int) {\n\tr0, _, _ := rawSysvicall6(uintptr(unsafe.Pointer(&procGetuid)), 0, 0, 0, 0, 0, 0, 0)\n\tuid = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Kill(pid int, signum syscall.Signal) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procKill)), 2, uintptr(pid), uintptr(signum), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lchown(path string, uid int, gid int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procLchown)), 3, uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Link(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procLink)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Listen(s int, backlog int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_llisten)), 2, uintptr(s), uintptr(backlog), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Lstat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procLstat)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Madvise(b []byte, advice int) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMadvise)), 3, uintptr(unsafe.Pointer(_p0)), uintptr(len(b)), uintptr(advice), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMkdir)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkdirat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMkdirat)), 3, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifo(path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMkfifo)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mkfifoat(dirfd int, path string, mode uint32) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMkfifoat)), 3, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknod(path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMknod)), 3, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mknodat(dirfd int, path string, mode uint32, dev int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMknodat)), 4, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlock(b []byte) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMlock)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(len(b)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mlockall(flags int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMlockall)), 1, uintptr(flags), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Mprotect(b []byte, prot int) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMprotect)), 3, uintptr(unsafe.Pointer(_p0)), uintptr(len(b)), uintptr(prot), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Msync(b []byte, flags int) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMsync)), 3, uintptr(unsafe.Pointer(_p0)), uintptr(len(b)), uintptr(flags), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlock(b []byte) (err error) {\n\tvar _p0 *byte\n\tif len(b) > 0 {\n\t\t_p0 = &b[0]\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMunlock)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(len(b)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Munlockall() (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procMunlockall)), 0, 0, 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Nanosleep(time *Timespec, leftover *Timespec) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procNanosleep)), 2, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Open(path string, mode int, perm uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procOpen)), 3, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm), 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procOpenat)), 4, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), uintptr(mode), 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pathconf(path string, name int) (val int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procPathconf)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(name), 0, 0, 0, 0)\n\tval = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pause() (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procPause)), 0, 0, 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pread(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procPread)), 4, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Pwrite(fd int, p []byte, offset int64) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procPwrite)), 4, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(p)), uintptr(offset), 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc read(fd int, p []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procread)), 3, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(p)), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\tif len(buf) > 0 {\n\t\t_p1 = &buf[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procReadlink)), 3, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(len(buf)), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rename(from string, to string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(from)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(to)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procRename)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(oldpath)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(newpath)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procRenameat)), 4, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Rmdir(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procRmdir)), 1, uintptr(unsafe.Pointer(_p0)), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seek(fd int, offset int64, whence int) (newoffset int64, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proclseek)), 3, uintptr(fd), uintptr(offset), uintptr(whence), 0, 0, 0)\n\tnewoffset = int64(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procSelect)), 5, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setegid(egid int) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procSetegid)), 1, uintptr(egid), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Seteuid(euid int) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procSeteuid)), 1, uintptr(euid), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setgid(gid int) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procSetgid)), 1, uintptr(gid), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sethostname(p []byte) (err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procSethostname)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(len(p)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpgid(pid int, pgid int) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procSetpgid)), 2, uintptr(pid), uintptr(pgid), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setpriority(which int, who int, prio int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procSetpriority)), 3, uintptr(which), uintptr(who), uintptr(prio), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setregid(rgid int, egid int) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procSetregid)), 2, uintptr(rgid), uintptr(egid), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setreuid(ruid int, euid int) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procSetreuid)), 2, uintptr(ruid), uintptr(euid), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setrlimit(which int, lim *Rlimit) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procSetrlimit)), 2, uintptr(which), uintptr(unsafe.Pointer(lim)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setsid() (pid int, err error) {\n\tr0, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procSetsid)), 0, 0, 0, 0, 0, 0, 0)\n\tpid = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Setuid(uid int) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procSetuid)), 1, uintptr(uid), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Shutdown(s int, how int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procshutdown)), 2, uintptr(s), uintptr(how), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Stat(path string, stat *Stat_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procStat)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Statvfs(path string, vfsstat *Statvfs_t) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procStatvfs)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(vfsstat)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Symlink(path string, link string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = BytePtrFromString(link)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procSymlink)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Sync() (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procSync)), 0, 0, 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Times(tms *Tms) (ticks uintptr, err error) {\n\tr0, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procTimes)), 1, uintptr(unsafe.Pointer(tms)), 0, 0, 0, 0, 0)\n\tticks = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Truncate(path string, length int64) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procTruncate)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Fsync(fd int) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFsync)), 1, uintptr(fd), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ftruncate(fd int, length int64) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procFtruncate)), 2, uintptr(fd), uintptr(length), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Umask(mask int) (oldmask int) {\n\tr0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&procUmask)), 1, uintptr(mask), 0, 0, 0, 0, 0)\n\toldmask = int(r0)\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Uname(buf *Utsname) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procUname)), 1, uintptr(unsafe.Pointer(buf)), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unmount(target string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(target)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procumount)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlink(path string) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procUnlink)), 1, uintptr(unsafe.Pointer(_p0)), 0, 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Unlinkat(dirfd int, path string, flags int) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procUnlinkat)), 3, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Ustat(dev int, ubuf *Ustat_t) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procUstat)), 2, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc Utime(path string, buf *Utimbuf) (err error) {\n\tvar _p0 *byte\n\t_p0, err = BytePtrFromString(path)\n\tif err != nil {\n\t\treturn\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procUtime)), 2, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_bind)), 3, uintptr(s), uintptr(addr), uintptr(addrlen), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_connect)), 3, uintptr(s), uintptr(addr), uintptr(addrlen), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procmmap)), 6, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos))\n\tret = uintptr(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc munmap(addr uintptr, length uintptr) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procmunmap)), 2, uintptr(addr), uintptr(length), 0, 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procsendfile)), 4, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)\n\twritten = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_sendto)), 6, uintptr(s), uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socket(domain int, typ int, proto int) (fd int, err error) {\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_socket)), 3, uintptr(domain), uintptr(typ), uintptr(proto), 0, 0, 0)\n\tfd = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&proc__xnet_socketpair)), 4, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc write(fd int, p []byte) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procwrite)), 3, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(p)), 0, 0, 0)\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_getsockopt)), 5, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error) {\n\t_, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procgetpeername)), 3, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), 0, 0, 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {\n\t_, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procsetsockopt)), 5, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(vallen), 0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {\n\tvar _p0 *byte\n\tif len(p) > 0 {\n\t\t_p0 = &p[0]\n\t}\n\tr0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procrecvfrom)), 6, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int(r0)\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go",
    "content": "// go run mksysctl_openbsd.go\n// Code generated by the command above; DO NOT EDIT.\n\n// +build 386,openbsd\n\npackage unix\n\ntype mibentry struct {\n\tctlname string\n\tctloid  []_C_int\n}\n\nvar sysctlMib = []mibentry{\n\t{\"ddb.console\", []_C_int{9, 6}},\n\t{\"ddb.log\", []_C_int{9, 7}},\n\t{\"ddb.max_line\", []_C_int{9, 3}},\n\t{\"ddb.max_width\", []_C_int{9, 2}},\n\t{\"ddb.panic\", []_C_int{9, 5}},\n\t{\"ddb.radix\", []_C_int{9, 1}},\n\t{\"ddb.tab_stop_width\", []_C_int{9, 4}},\n\t{\"ddb.trigger\", []_C_int{9, 8}},\n\t{\"fs.posix.setuid\", []_C_int{3, 1, 1}},\n\t{\"hw.allowpowerdown\", []_C_int{6, 22}},\n\t{\"hw.byteorder\", []_C_int{6, 4}},\n\t{\"hw.cpuspeed\", []_C_int{6, 12}},\n\t{\"hw.diskcount\", []_C_int{6, 10}},\n\t{\"hw.disknames\", []_C_int{6, 8}},\n\t{\"hw.diskstats\", []_C_int{6, 9}},\n\t{\"hw.machine\", []_C_int{6, 1}},\n\t{\"hw.model\", []_C_int{6, 2}},\n\t{\"hw.ncpu\", []_C_int{6, 3}},\n\t{\"hw.ncpufound\", []_C_int{6, 21}},\n\t{\"hw.ncpuonline\", []_C_int{6, 25}},\n\t{\"hw.pagesize\", []_C_int{6, 7}},\n\t{\"hw.physmem\", []_C_int{6, 19}},\n\t{\"hw.product\", []_C_int{6, 15}},\n\t{\"hw.serialno\", []_C_int{6, 17}},\n\t{\"hw.setperf\", []_C_int{6, 13}},\n\t{\"hw.usermem\", []_C_int{6, 20}},\n\t{\"hw.uuid\", []_C_int{6, 18}},\n\t{\"hw.vendor\", []_C_int{6, 14}},\n\t{\"hw.version\", []_C_int{6, 16}},\n\t{\"kern.arandom\", []_C_int{1, 37}},\n\t{\"kern.argmax\", []_C_int{1, 8}},\n\t{\"kern.boottime\", []_C_int{1, 21}},\n\t{\"kern.bufcachepercent\", []_C_int{1, 72}},\n\t{\"kern.ccpu\", []_C_int{1, 45}},\n\t{\"kern.clockrate\", []_C_int{1, 12}},\n\t{\"kern.consdev\", []_C_int{1, 75}},\n\t{\"kern.cp_time\", []_C_int{1, 40}},\n\t{\"kern.cp_time2\", []_C_int{1, 71}},\n\t{\"kern.cryptodevallowsoft\", []_C_int{1, 53}},\n\t{\"kern.domainname\", []_C_int{1, 22}},\n\t{\"kern.file\", []_C_int{1, 73}},\n\t{\"kern.forkstat\", []_C_int{1, 42}},\n\t{\"kern.fscale\", []_C_int{1, 46}},\n\t{\"kern.fsync\", []_C_int{1, 33}},\n\t{\"kern.hostid\", []_C_int{1, 11}},\n\t{\"kern.hostname\", []_C_int{1, 10}},\n\t{\"kern.intrcnt.nintrcnt\", []_C_int{1, 63, 1}},\n\t{\"kern.job_control\", []_C_int{1, 19}},\n\t{\"kern.malloc.buckets\", []_C_int{1, 39, 1}},\n\t{\"kern.malloc.kmemnames\", []_C_int{1, 39, 3}},\n\t{\"kern.maxclusters\", []_C_int{1, 67}},\n\t{\"kern.maxfiles\", []_C_int{1, 7}},\n\t{\"kern.maxlocksperuid\", []_C_int{1, 70}},\n\t{\"kern.maxpartitions\", []_C_int{1, 23}},\n\t{\"kern.maxproc\", []_C_int{1, 6}},\n\t{\"kern.maxthread\", []_C_int{1, 25}},\n\t{\"kern.maxvnodes\", []_C_int{1, 5}},\n\t{\"kern.mbstat\", []_C_int{1, 59}},\n\t{\"kern.msgbuf\", []_C_int{1, 48}},\n\t{\"kern.msgbufsize\", []_C_int{1, 38}},\n\t{\"kern.nchstats\", []_C_int{1, 41}},\n\t{\"kern.netlivelocks\", []_C_int{1, 76}},\n\t{\"kern.nfiles\", []_C_int{1, 56}},\n\t{\"kern.ngroups\", []_C_int{1, 18}},\n\t{\"kern.nosuidcoredump\", []_C_int{1, 32}},\n\t{\"kern.nprocs\", []_C_int{1, 47}},\n\t{\"kern.nselcoll\", []_C_int{1, 43}},\n\t{\"kern.nthreads\", []_C_int{1, 26}},\n\t{\"kern.numvnodes\", []_C_int{1, 58}},\n\t{\"kern.osrelease\", []_C_int{1, 2}},\n\t{\"kern.osrevision\", []_C_int{1, 3}},\n\t{\"kern.ostype\", []_C_int{1, 1}},\n\t{\"kern.osversion\", []_C_int{1, 27}},\n\t{\"kern.pool_debug\", []_C_int{1, 77}},\n\t{\"kern.posix1version\", []_C_int{1, 17}},\n\t{\"kern.proc\", []_C_int{1, 66}},\n\t{\"kern.random\", []_C_int{1, 31}},\n\t{\"kern.rawpartition\", []_C_int{1, 24}},\n\t{\"kern.saved_ids\", []_C_int{1, 20}},\n\t{\"kern.securelevel\", []_C_int{1, 9}},\n\t{\"kern.seminfo\", []_C_int{1, 61}},\n\t{\"kern.shminfo\", []_C_int{1, 62}},\n\t{\"kern.somaxconn\", []_C_int{1, 28}},\n\t{\"kern.sominconn\", []_C_int{1, 29}},\n\t{\"kern.splassert\", []_C_int{1, 54}},\n\t{\"kern.stackgap_random\", []_C_int{1, 50}},\n\t{\"kern.sysvipc_info\", []_C_int{1, 51}},\n\t{\"kern.sysvmsg\", []_C_int{1, 34}},\n\t{\"kern.sysvsem\", []_C_int{1, 35}},\n\t{\"kern.sysvshm\", []_C_int{1, 36}},\n\t{\"kern.timecounter.choice\", []_C_int{1, 69, 4}},\n\t{\"kern.timecounter.hardware\", []_C_int{1, 69, 3}},\n\t{\"kern.timecounter.tick\", []_C_int{1, 69, 1}},\n\t{\"kern.timecounter.timestepwarnings\", []_C_int{1, 69, 2}},\n\t{\"kern.tty.maxptys\", []_C_int{1, 44, 6}},\n\t{\"kern.tty.nptys\", []_C_int{1, 44, 7}},\n\t{\"kern.tty.tk_cancc\", []_C_int{1, 44, 4}},\n\t{\"kern.tty.tk_nin\", []_C_int{1, 44, 1}},\n\t{\"kern.tty.tk_nout\", []_C_int{1, 44, 2}},\n\t{\"kern.tty.tk_rawcc\", []_C_int{1, 44, 3}},\n\t{\"kern.tty.ttyinfo\", []_C_int{1, 44, 5}},\n\t{\"kern.ttycount\", []_C_int{1, 57}},\n\t{\"kern.userasymcrypto\", []_C_int{1, 60}},\n\t{\"kern.usercrypto\", []_C_int{1, 52}},\n\t{\"kern.usermount\", []_C_int{1, 30}},\n\t{\"kern.version\", []_C_int{1, 4}},\n\t{\"kern.vnode\", []_C_int{1, 13}},\n\t{\"kern.watchdog.auto\", []_C_int{1, 64, 2}},\n\t{\"kern.watchdog.period\", []_C_int{1, 64, 1}},\n\t{\"net.bpf.bufsize\", []_C_int{4, 31, 1}},\n\t{\"net.bpf.maxbufsize\", []_C_int{4, 31, 2}},\n\t{\"net.inet.ah.enable\", []_C_int{4, 2, 51, 1}},\n\t{\"net.inet.ah.stats\", []_C_int{4, 2, 51, 2}},\n\t{\"net.inet.carp.allow\", []_C_int{4, 2, 112, 1}},\n\t{\"net.inet.carp.log\", []_C_int{4, 2, 112, 3}},\n\t{\"net.inet.carp.preempt\", []_C_int{4, 2, 112, 2}},\n\t{\"net.inet.carp.stats\", []_C_int{4, 2, 112, 4}},\n\t{\"net.inet.divert.recvspace\", []_C_int{4, 2, 258, 1}},\n\t{\"net.inet.divert.sendspace\", []_C_int{4, 2, 258, 2}},\n\t{\"net.inet.divert.stats\", []_C_int{4, 2, 258, 3}},\n\t{\"net.inet.esp.enable\", []_C_int{4, 2, 50, 1}},\n\t{\"net.inet.esp.stats\", []_C_int{4, 2, 50, 4}},\n\t{\"net.inet.esp.udpencap\", []_C_int{4, 2, 50, 2}},\n\t{\"net.inet.esp.udpencap_port\", []_C_int{4, 2, 50, 3}},\n\t{\"net.inet.etherip.allow\", []_C_int{4, 2, 97, 1}},\n\t{\"net.inet.etherip.stats\", []_C_int{4, 2, 97, 2}},\n\t{\"net.inet.gre.allow\", []_C_int{4, 2, 47, 1}},\n\t{\"net.inet.gre.wccp\", []_C_int{4, 2, 47, 2}},\n\t{\"net.inet.icmp.bmcastecho\", []_C_int{4, 2, 1, 2}},\n\t{\"net.inet.icmp.errppslimit\", []_C_int{4, 2, 1, 3}},\n\t{\"net.inet.icmp.maskrepl\", []_C_int{4, 2, 1, 1}},\n\t{\"net.inet.icmp.rediraccept\", []_C_int{4, 2, 1, 4}},\n\t{\"net.inet.icmp.redirtimeout\", []_C_int{4, 2, 1, 5}},\n\t{\"net.inet.icmp.stats\", []_C_int{4, 2, 1, 7}},\n\t{\"net.inet.icmp.tstamprepl\", []_C_int{4, 2, 1, 6}},\n\t{\"net.inet.igmp.stats\", []_C_int{4, 2, 2, 1}},\n\t{\"net.inet.ip.arpqueued\", []_C_int{4, 2, 0, 36}},\n\t{\"net.inet.ip.encdebug\", []_C_int{4, 2, 0, 12}},\n\t{\"net.inet.ip.forwarding\", []_C_int{4, 2, 0, 1}},\n\t{\"net.inet.ip.ifq.congestion\", []_C_int{4, 2, 0, 30, 4}},\n\t{\"net.inet.ip.ifq.drops\", []_C_int{4, 2, 0, 30, 3}},\n\t{\"net.inet.ip.ifq.len\", []_C_int{4, 2, 0, 30, 1}},\n\t{\"net.inet.ip.ifq.maxlen\", []_C_int{4, 2, 0, 30, 2}},\n\t{\"net.inet.ip.maxqueue\", []_C_int{4, 2, 0, 11}},\n\t{\"net.inet.ip.mforwarding\", []_C_int{4, 2, 0, 31}},\n\t{\"net.inet.ip.mrtproto\", []_C_int{4, 2, 0, 34}},\n\t{\"net.inet.ip.mrtstats\", []_C_int{4, 2, 0, 35}},\n\t{\"net.inet.ip.mtu\", []_C_int{4, 2, 0, 4}},\n\t{\"net.inet.ip.mtudisc\", []_C_int{4, 2, 0, 27}},\n\t{\"net.inet.ip.mtudisctimeout\", []_C_int{4, 2, 0, 28}},\n\t{\"net.inet.ip.multipath\", []_C_int{4, 2, 0, 32}},\n\t{\"net.inet.ip.portfirst\", []_C_int{4, 2, 0, 7}},\n\t{\"net.inet.ip.porthifirst\", []_C_int{4, 2, 0, 9}},\n\t{\"net.inet.ip.porthilast\", []_C_int{4, 2, 0, 10}},\n\t{\"net.inet.ip.portlast\", []_C_int{4, 2, 0, 8}},\n\t{\"net.inet.ip.redirect\", []_C_int{4, 2, 0, 2}},\n\t{\"net.inet.ip.sourceroute\", []_C_int{4, 2, 0, 5}},\n\t{\"net.inet.ip.stats\", []_C_int{4, 2, 0, 33}},\n\t{\"net.inet.ip.ttl\", []_C_int{4, 2, 0, 3}},\n\t{\"net.inet.ipcomp.enable\", []_C_int{4, 2, 108, 1}},\n\t{\"net.inet.ipcomp.stats\", []_C_int{4, 2, 108, 2}},\n\t{\"net.inet.ipip.allow\", []_C_int{4, 2, 4, 1}},\n\t{\"net.inet.ipip.stats\", []_C_int{4, 2, 4, 2}},\n\t{\"net.inet.mobileip.allow\", []_C_int{4, 2, 55, 1}},\n\t{\"net.inet.pfsync.stats\", []_C_int{4, 2, 240, 1}},\n\t{\"net.inet.pim.stats\", []_C_int{4, 2, 103, 1}},\n\t{\"net.inet.tcp.ackonpush\", []_C_int{4, 2, 6, 13}},\n\t{\"net.inet.tcp.always_keepalive\", []_C_int{4, 2, 6, 22}},\n\t{\"net.inet.tcp.baddynamic\", []_C_int{4, 2, 6, 6}},\n\t{\"net.inet.tcp.drop\", []_C_int{4, 2, 6, 19}},\n\t{\"net.inet.tcp.ecn\", []_C_int{4, 2, 6, 14}},\n\t{\"net.inet.tcp.ident\", []_C_int{4, 2, 6, 9}},\n\t{\"net.inet.tcp.keepidle\", []_C_int{4, 2, 6, 3}},\n\t{\"net.inet.tcp.keepinittime\", []_C_int{4, 2, 6, 2}},\n\t{\"net.inet.tcp.keepintvl\", []_C_int{4, 2, 6, 4}},\n\t{\"net.inet.tcp.mssdflt\", []_C_int{4, 2, 6, 11}},\n\t{\"net.inet.tcp.reasslimit\", []_C_int{4, 2, 6, 18}},\n\t{\"net.inet.tcp.rfc1323\", []_C_int{4, 2, 6, 1}},\n\t{\"net.inet.tcp.rfc3390\", []_C_int{4, 2, 6, 17}},\n\t{\"net.inet.tcp.rstppslimit\", []_C_int{4, 2, 6, 12}},\n\t{\"net.inet.tcp.sack\", []_C_int{4, 2, 6, 10}},\n\t{\"net.inet.tcp.sackholelimit\", []_C_int{4, 2, 6, 20}},\n\t{\"net.inet.tcp.slowhz\", []_C_int{4, 2, 6, 5}},\n\t{\"net.inet.tcp.stats\", []_C_int{4, 2, 6, 21}},\n\t{\"net.inet.tcp.synbucketlimit\", []_C_int{4, 2, 6, 16}},\n\t{\"net.inet.tcp.syncachelimit\", []_C_int{4, 2, 6, 15}},\n\t{\"net.inet.udp.baddynamic\", []_C_int{4, 2, 17, 2}},\n\t{\"net.inet.udp.checksum\", []_C_int{4, 2, 17, 1}},\n\t{\"net.inet.udp.recvspace\", []_C_int{4, 2, 17, 3}},\n\t{\"net.inet.udp.sendspace\", []_C_int{4, 2, 17, 4}},\n\t{\"net.inet.udp.stats\", []_C_int{4, 2, 17, 5}},\n\t{\"net.inet6.divert.recvspace\", []_C_int{4, 24, 86, 1}},\n\t{\"net.inet6.divert.sendspace\", []_C_int{4, 24, 86, 2}},\n\t{\"net.inet6.divert.stats\", []_C_int{4, 24, 86, 3}},\n\t{\"net.inet6.icmp6.errppslimit\", []_C_int{4, 24, 30, 14}},\n\t{\"net.inet6.icmp6.mtudisc_hiwat\", []_C_int{4, 24, 30, 16}},\n\t{\"net.inet6.icmp6.mtudisc_lowat\", []_C_int{4, 24, 30, 17}},\n\t{\"net.inet6.icmp6.nd6_debug\", []_C_int{4, 24, 30, 18}},\n\t{\"net.inet6.icmp6.nd6_delay\", []_C_int{4, 24, 30, 8}},\n\t{\"net.inet6.icmp6.nd6_maxnudhint\", []_C_int{4, 24, 30, 15}},\n\t{\"net.inet6.icmp6.nd6_mmaxtries\", []_C_int{4, 24, 30, 10}},\n\t{\"net.inet6.icmp6.nd6_prune\", []_C_int{4, 24, 30, 6}},\n\t{\"net.inet6.icmp6.nd6_umaxtries\", []_C_int{4, 24, 30, 9}},\n\t{\"net.inet6.icmp6.nd6_useloopback\", []_C_int{4, 24, 30, 11}},\n\t{\"net.inet6.icmp6.nodeinfo\", []_C_int{4, 24, 30, 13}},\n\t{\"net.inet6.icmp6.rediraccept\", []_C_int{4, 24, 30, 2}},\n\t{\"net.inet6.icmp6.redirtimeout\", []_C_int{4, 24, 30, 3}},\n\t{\"net.inet6.ip6.accept_rtadv\", []_C_int{4, 24, 17, 12}},\n\t{\"net.inet6.ip6.auto_flowlabel\", []_C_int{4, 24, 17, 17}},\n\t{\"net.inet6.ip6.dad_count\", []_C_int{4, 24, 17, 16}},\n\t{\"net.inet6.ip6.dad_pending\", []_C_int{4, 24, 17, 49}},\n\t{\"net.inet6.ip6.defmcasthlim\", []_C_int{4, 24, 17, 18}},\n\t{\"net.inet6.ip6.forwarding\", []_C_int{4, 24, 17, 1}},\n\t{\"net.inet6.ip6.forwsrcrt\", []_C_int{4, 24, 17, 5}},\n\t{\"net.inet6.ip6.hdrnestlimit\", []_C_int{4, 24, 17, 15}},\n\t{\"net.inet6.ip6.hlim\", []_C_int{4, 24, 17, 3}},\n\t{\"net.inet6.ip6.log_interval\", []_C_int{4, 24, 17, 14}},\n\t{\"net.inet6.ip6.maxdynroutes\", []_C_int{4, 24, 17, 48}},\n\t{\"net.inet6.ip6.maxfragpackets\", []_C_int{4, 24, 17, 9}},\n\t{\"net.inet6.ip6.maxfrags\", []_C_int{4, 24, 17, 41}},\n\t{\"net.inet6.ip6.maxifdefrouters\", []_C_int{4, 24, 17, 47}},\n\t{\"net.inet6.ip6.maxifprefixes\", []_C_int{4, 24, 17, 46}},\n\t{\"net.inet6.ip6.mforwarding\", []_C_int{4, 24, 17, 42}},\n\t{\"net.inet6.ip6.mrtproto\", []_C_int{4, 24, 17, 8}},\n\t{\"net.inet6.ip6.mtudisctimeout\", []_C_int{4, 24, 17, 50}},\n\t{\"net.inet6.ip6.multicast_mtudisc\", []_C_int{4, 24, 17, 44}},\n\t{\"net.inet6.ip6.multipath\", []_C_int{4, 24, 17, 43}},\n\t{\"net.inet6.ip6.neighborgcthresh\", []_C_int{4, 24, 17, 45}},\n\t{\"net.inet6.ip6.redirect\", []_C_int{4, 24, 17, 2}},\n\t{\"net.inet6.ip6.rr_prune\", []_C_int{4, 24, 17, 22}},\n\t{\"net.inet6.ip6.sourcecheck\", []_C_int{4, 24, 17, 10}},\n\t{\"net.inet6.ip6.sourcecheck_logint\", []_C_int{4, 24, 17, 11}},\n\t{\"net.inet6.ip6.use_deprecated\", []_C_int{4, 24, 17, 21}},\n\t{\"net.inet6.ip6.v6only\", []_C_int{4, 24, 17, 24}},\n\t{\"net.key.sadb_dump\", []_C_int{4, 30, 1}},\n\t{\"net.key.spd_dump\", []_C_int{4, 30, 2}},\n\t{\"net.mpls.ifq.congestion\", []_C_int{4, 33, 3, 4}},\n\t{\"net.mpls.ifq.drops\", []_C_int{4, 33, 3, 3}},\n\t{\"net.mpls.ifq.len\", []_C_int{4, 33, 3, 1}},\n\t{\"net.mpls.ifq.maxlen\", []_C_int{4, 33, 3, 2}},\n\t{\"net.mpls.mapttl_ip\", []_C_int{4, 33, 5}},\n\t{\"net.mpls.mapttl_ip6\", []_C_int{4, 33, 6}},\n\t{\"net.mpls.maxloop_inkernel\", []_C_int{4, 33, 4}},\n\t{\"net.mpls.ttl\", []_C_int{4, 33, 2}},\n\t{\"net.pflow.stats\", []_C_int{4, 34, 1}},\n\t{\"net.pipex.enable\", []_C_int{4, 35, 1}},\n\t{\"vm.anonmin\", []_C_int{2, 7}},\n\t{\"vm.loadavg\", []_C_int{2, 2}},\n\t{\"vm.maxslp\", []_C_int{2, 10}},\n\t{\"vm.nkmempages\", []_C_int{2, 6}},\n\t{\"vm.psstrings\", []_C_int{2, 3}},\n\t{\"vm.swapencrypt.enable\", []_C_int{2, 5, 0}},\n\t{\"vm.swapencrypt.keyscreated\", []_C_int{2, 5, 1}},\n\t{\"vm.swapencrypt.keysdeleted\", []_C_int{2, 5, 2}},\n\t{\"vm.uspace\", []_C_int{2, 11}},\n\t{\"vm.uvmexp\", []_C_int{2, 4}},\n\t{\"vm.vmmeter\", []_C_int{2, 1}},\n\t{\"vm.vnodemin\", []_C_int{2, 9}},\n\t{\"vm.vtextmin\", []_C_int{2, 8}},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go",
    "content": "// go run mksysctl_openbsd.go\n// Code generated by the command above; DO NOT EDIT.\n\n// +build amd64,openbsd\n\npackage unix\n\ntype mibentry struct {\n\tctlname string\n\tctloid  []_C_int\n}\n\nvar sysctlMib = []mibentry{\n\t{\"ddb.console\", []_C_int{9, 6}},\n\t{\"ddb.log\", []_C_int{9, 7}},\n\t{\"ddb.max_line\", []_C_int{9, 3}},\n\t{\"ddb.max_width\", []_C_int{9, 2}},\n\t{\"ddb.panic\", []_C_int{9, 5}},\n\t{\"ddb.profile\", []_C_int{9, 9}},\n\t{\"ddb.radix\", []_C_int{9, 1}},\n\t{\"ddb.tab_stop_width\", []_C_int{9, 4}},\n\t{\"ddb.trigger\", []_C_int{9, 8}},\n\t{\"fs.posix.setuid\", []_C_int{3, 1, 1}},\n\t{\"hw.allowpowerdown\", []_C_int{6, 22}},\n\t{\"hw.byteorder\", []_C_int{6, 4}},\n\t{\"hw.cpuspeed\", []_C_int{6, 12}},\n\t{\"hw.diskcount\", []_C_int{6, 10}},\n\t{\"hw.disknames\", []_C_int{6, 8}},\n\t{\"hw.diskstats\", []_C_int{6, 9}},\n\t{\"hw.machine\", []_C_int{6, 1}},\n\t{\"hw.model\", []_C_int{6, 2}},\n\t{\"hw.ncpu\", []_C_int{6, 3}},\n\t{\"hw.ncpufound\", []_C_int{6, 21}},\n\t{\"hw.ncpuonline\", []_C_int{6, 25}},\n\t{\"hw.pagesize\", []_C_int{6, 7}},\n\t{\"hw.perfpolicy\", []_C_int{6, 23}},\n\t{\"hw.physmem\", []_C_int{6, 19}},\n\t{\"hw.product\", []_C_int{6, 15}},\n\t{\"hw.serialno\", []_C_int{6, 17}},\n\t{\"hw.setperf\", []_C_int{6, 13}},\n\t{\"hw.usermem\", []_C_int{6, 20}},\n\t{\"hw.uuid\", []_C_int{6, 18}},\n\t{\"hw.vendor\", []_C_int{6, 14}},\n\t{\"hw.version\", []_C_int{6, 16}},\n\t{\"kern.allowkmem\", []_C_int{1, 52}},\n\t{\"kern.argmax\", []_C_int{1, 8}},\n\t{\"kern.boottime\", []_C_int{1, 21}},\n\t{\"kern.bufcachepercent\", []_C_int{1, 72}},\n\t{\"kern.ccpu\", []_C_int{1, 45}},\n\t{\"kern.clockrate\", []_C_int{1, 12}},\n\t{\"kern.consdev\", []_C_int{1, 75}},\n\t{\"kern.cp_time\", []_C_int{1, 40}},\n\t{\"kern.cp_time2\", []_C_int{1, 71}},\n\t{\"kern.dnsjackport\", []_C_int{1, 13}},\n\t{\"kern.domainname\", []_C_int{1, 22}},\n\t{\"kern.file\", []_C_int{1, 73}},\n\t{\"kern.forkstat\", []_C_int{1, 42}},\n\t{\"kern.fscale\", []_C_int{1, 46}},\n\t{\"kern.fsync\", []_C_int{1, 33}},\n\t{\"kern.global_ptrace\", []_C_int{1, 81}},\n\t{\"kern.hostid\", []_C_int{1, 11}},\n\t{\"kern.hostname\", []_C_int{1, 10}},\n\t{\"kern.intrcnt.nintrcnt\", []_C_int{1, 63, 1}},\n\t{\"kern.job_control\", []_C_int{1, 19}},\n\t{\"kern.malloc.buckets\", []_C_int{1, 39, 1}},\n\t{\"kern.malloc.kmemnames\", []_C_int{1, 39, 3}},\n\t{\"kern.maxclusters\", []_C_int{1, 67}},\n\t{\"kern.maxfiles\", []_C_int{1, 7}},\n\t{\"kern.maxlocksperuid\", []_C_int{1, 70}},\n\t{\"kern.maxpartitions\", []_C_int{1, 23}},\n\t{\"kern.maxproc\", []_C_int{1, 6}},\n\t{\"kern.maxthread\", []_C_int{1, 25}},\n\t{\"kern.maxvnodes\", []_C_int{1, 5}},\n\t{\"kern.mbstat\", []_C_int{1, 59}},\n\t{\"kern.msgbuf\", []_C_int{1, 48}},\n\t{\"kern.msgbufsize\", []_C_int{1, 38}},\n\t{\"kern.nchstats\", []_C_int{1, 41}},\n\t{\"kern.netlivelocks\", []_C_int{1, 76}},\n\t{\"kern.nfiles\", []_C_int{1, 56}},\n\t{\"kern.ngroups\", []_C_int{1, 18}},\n\t{\"kern.nosuidcoredump\", []_C_int{1, 32}},\n\t{\"kern.nprocs\", []_C_int{1, 47}},\n\t{\"kern.nselcoll\", []_C_int{1, 43}},\n\t{\"kern.nthreads\", []_C_int{1, 26}},\n\t{\"kern.numvnodes\", []_C_int{1, 58}},\n\t{\"kern.osrelease\", []_C_int{1, 2}},\n\t{\"kern.osrevision\", []_C_int{1, 3}},\n\t{\"kern.ostype\", []_C_int{1, 1}},\n\t{\"kern.osversion\", []_C_int{1, 27}},\n\t{\"kern.pool_debug\", []_C_int{1, 77}},\n\t{\"kern.posix1version\", []_C_int{1, 17}},\n\t{\"kern.proc\", []_C_int{1, 66}},\n\t{\"kern.rawpartition\", []_C_int{1, 24}},\n\t{\"kern.saved_ids\", []_C_int{1, 20}},\n\t{\"kern.securelevel\", []_C_int{1, 9}},\n\t{\"kern.seminfo\", []_C_int{1, 61}},\n\t{\"kern.shminfo\", []_C_int{1, 62}},\n\t{\"kern.somaxconn\", []_C_int{1, 28}},\n\t{\"kern.sominconn\", []_C_int{1, 29}},\n\t{\"kern.splassert\", []_C_int{1, 54}},\n\t{\"kern.stackgap_random\", []_C_int{1, 50}},\n\t{\"kern.sysvipc_info\", []_C_int{1, 51}},\n\t{\"kern.sysvmsg\", []_C_int{1, 34}},\n\t{\"kern.sysvsem\", []_C_int{1, 35}},\n\t{\"kern.sysvshm\", []_C_int{1, 36}},\n\t{\"kern.timecounter.choice\", []_C_int{1, 69, 4}},\n\t{\"kern.timecounter.hardware\", []_C_int{1, 69, 3}},\n\t{\"kern.timecounter.tick\", []_C_int{1, 69, 1}},\n\t{\"kern.timecounter.timestepwarnings\", []_C_int{1, 69, 2}},\n\t{\"kern.tty.tk_cancc\", []_C_int{1, 44, 4}},\n\t{\"kern.tty.tk_nin\", []_C_int{1, 44, 1}},\n\t{\"kern.tty.tk_nout\", []_C_int{1, 44, 2}},\n\t{\"kern.tty.tk_rawcc\", []_C_int{1, 44, 3}},\n\t{\"kern.tty.ttyinfo\", []_C_int{1, 44, 5}},\n\t{\"kern.ttycount\", []_C_int{1, 57}},\n\t{\"kern.version\", []_C_int{1, 4}},\n\t{\"kern.watchdog.auto\", []_C_int{1, 64, 2}},\n\t{\"kern.watchdog.period\", []_C_int{1, 64, 1}},\n\t{\"kern.wxabort\", []_C_int{1, 74}},\n\t{\"net.bpf.bufsize\", []_C_int{4, 31, 1}},\n\t{\"net.bpf.maxbufsize\", []_C_int{4, 31, 2}},\n\t{\"net.inet.ah.enable\", []_C_int{4, 2, 51, 1}},\n\t{\"net.inet.ah.stats\", []_C_int{4, 2, 51, 2}},\n\t{\"net.inet.carp.allow\", []_C_int{4, 2, 112, 1}},\n\t{\"net.inet.carp.log\", []_C_int{4, 2, 112, 3}},\n\t{\"net.inet.carp.preempt\", []_C_int{4, 2, 112, 2}},\n\t{\"net.inet.carp.stats\", []_C_int{4, 2, 112, 4}},\n\t{\"net.inet.divert.recvspace\", []_C_int{4, 2, 258, 1}},\n\t{\"net.inet.divert.sendspace\", []_C_int{4, 2, 258, 2}},\n\t{\"net.inet.divert.stats\", []_C_int{4, 2, 258, 3}},\n\t{\"net.inet.esp.enable\", []_C_int{4, 2, 50, 1}},\n\t{\"net.inet.esp.stats\", []_C_int{4, 2, 50, 4}},\n\t{\"net.inet.esp.udpencap\", []_C_int{4, 2, 50, 2}},\n\t{\"net.inet.esp.udpencap_port\", []_C_int{4, 2, 50, 3}},\n\t{\"net.inet.etherip.allow\", []_C_int{4, 2, 97, 1}},\n\t{\"net.inet.etherip.stats\", []_C_int{4, 2, 97, 2}},\n\t{\"net.inet.gre.allow\", []_C_int{4, 2, 47, 1}},\n\t{\"net.inet.gre.wccp\", []_C_int{4, 2, 47, 2}},\n\t{\"net.inet.icmp.bmcastecho\", []_C_int{4, 2, 1, 2}},\n\t{\"net.inet.icmp.errppslimit\", []_C_int{4, 2, 1, 3}},\n\t{\"net.inet.icmp.maskrepl\", []_C_int{4, 2, 1, 1}},\n\t{\"net.inet.icmp.rediraccept\", []_C_int{4, 2, 1, 4}},\n\t{\"net.inet.icmp.redirtimeout\", []_C_int{4, 2, 1, 5}},\n\t{\"net.inet.icmp.stats\", []_C_int{4, 2, 1, 7}},\n\t{\"net.inet.icmp.tstamprepl\", []_C_int{4, 2, 1, 6}},\n\t{\"net.inet.igmp.stats\", []_C_int{4, 2, 2, 1}},\n\t{\"net.inet.ip.arpdown\", []_C_int{4, 2, 0, 40}},\n\t{\"net.inet.ip.arpqueued\", []_C_int{4, 2, 0, 36}},\n\t{\"net.inet.ip.arptimeout\", []_C_int{4, 2, 0, 39}},\n\t{\"net.inet.ip.encdebug\", []_C_int{4, 2, 0, 12}},\n\t{\"net.inet.ip.forwarding\", []_C_int{4, 2, 0, 1}},\n\t{\"net.inet.ip.ifq.congestion\", []_C_int{4, 2, 0, 30, 4}},\n\t{\"net.inet.ip.ifq.drops\", []_C_int{4, 2, 0, 30, 3}},\n\t{\"net.inet.ip.ifq.len\", []_C_int{4, 2, 0, 30, 1}},\n\t{\"net.inet.ip.ifq.maxlen\", []_C_int{4, 2, 0, 30, 2}},\n\t{\"net.inet.ip.maxqueue\", []_C_int{4, 2, 0, 11}},\n\t{\"net.inet.ip.mforwarding\", []_C_int{4, 2, 0, 31}},\n\t{\"net.inet.ip.mrtmfc\", []_C_int{4, 2, 0, 37}},\n\t{\"net.inet.ip.mrtproto\", []_C_int{4, 2, 0, 34}},\n\t{\"net.inet.ip.mrtstats\", []_C_int{4, 2, 0, 35}},\n\t{\"net.inet.ip.mrtvif\", []_C_int{4, 2, 0, 38}},\n\t{\"net.inet.ip.mtu\", []_C_int{4, 2, 0, 4}},\n\t{\"net.inet.ip.mtudisc\", []_C_int{4, 2, 0, 27}},\n\t{\"net.inet.ip.mtudisctimeout\", []_C_int{4, 2, 0, 28}},\n\t{\"net.inet.ip.multipath\", []_C_int{4, 2, 0, 32}},\n\t{\"net.inet.ip.portfirst\", []_C_int{4, 2, 0, 7}},\n\t{\"net.inet.ip.porthifirst\", []_C_int{4, 2, 0, 9}},\n\t{\"net.inet.ip.porthilast\", []_C_int{4, 2, 0, 10}},\n\t{\"net.inet.ip.portlast\", []_C_int{4, 2, 0, 8}},\n\t{\"net.inet.ip.redirect\", []_C_int{4, 2, 0, 2}},\n\t{\"net.inet.ip.sourceroute\", []_C_int{4, 2, 0, 5}},\n\t{\"net.inet.ip.stats\", []_C_int{4, 2, 0, 33}},\n\t{\"net.inet.ip.ttl\", []_C_int{4, 2, 0, 3}},\n\t{\"net.inet.ipcomp.enable\", []_C_int{4, 2, 108, 1}},\n\t{\"net.inet.ipcomp.stats\", []_C_int{4, 2, 108, 2}},\n\t{\"net.inet.ipip.allow\", []_C_int{4, 2, 4, 1}},\n\t{\"net.inet.ipip.stats\", []_C_int{4, 2, 4, 2}},\n\t{\"net.inet.mobileip.allow\", []_C_int{4, 2, 55, 1}},\n\t{\"net.inet.pfsync.stats\", []_C_int{4, 2, 240, 1}},\n\t{\"net.inet.tcp.ackonpush\", []_C_int{4, 2, 6, 13}},\n\t{\"net.inet.tcp.always_keepalive\", []_C_int{4, 2, 6, 22}},\n\t{\"net.inet.tcp.baddynamic\", []_C_int{4, 2, 6, 6}},\n\t{\"net.inet.tcp.drop\", []_C_int{4, 2, 6, 19}},\n\t{\"net.inet.tcp.ecn\", []_C_int{4, 2, 6, 14}},\n\t{\"net.inet.tcp.ident\", []_C_int{4, 2, 6, 9}},\n\t{\"net.inet.tcp.keepidle\", []_C_int{4, 2, 6, 3}},\n\t{\"net.inet.tcp.keepinittime\", []_C_int{4, 2, 6, 2}},\n\t{\"net.inet.tcp.keepintvl\", []_C_int{4, 2, 6, 4}},\n\t{\"net.inet.tcp.mssdflt\", []_C_int{4, 2, 6, 11}},\n\t{\"net.inet.tcp.reasslimit\", []_C_int{4, 2, 6, 18}},\n\t{\"net.inet.tcp.rfc1323\", []_C_int{4, 2, 6, 1}},\n\t{\"net.inet.tcp.rfc3390\", []_C_int{4, 2, 6, 17}},\n\t{\"net.inet.tcp.rootonly\", []_C_int{4, 2, 6, 24}},\n\t{\"net.inet.tcp.rstppslimit\", []_C_int{4, 2, 6, 12}},\n\t{\"net.inet.tcp.sack\", []_C_int{4, 2, 6, 10}},\n\t{\"net.inet.tcp.sackholelimit\", []_C_int{4, 2, 6, 20}},\n\t{\"net.inet.tcp.slowhz\", []_C_int{4, 2, 6, 5}},\n\t{\"net.inet.tcp.stats\", []_C_int{4, 2, 6, 21}},\n\t{\"net.inet.tcp.synbucketlimit\", []_C_int{4, 2, 6, 16}},\n\t{\"net.inet.tcp.syncachelimit\", []_C_int{4, 2, 6, 15}},\n\t{\"net.inet.tcp.synhashsize\", []_C_int{4, 2, 6, 25}},\n\t{\"net.inet.tcp.synuselimit\", []_C_int{4, 2, 6, 23}},\n\t{\"net.inet.udp.baddynamic\", []_C_int{4, 2, 17, 2}},\n\t{\"net.inet.udp.checksum\", []_C_int{4, 2, 17, 1}},\n\t{\"net.inet.udp.recvspace\", []_C_int{4, 2, 17, 3}},\n\t{\"net.inet.udp.rootonly\", []_C_int{4, 2, 17, 6}},\n\t{\"net.inet.udp.sendspace\", []_C_int{4, 2, 17, 4}},\n\t{\"net.inet.udp.stats\", []_C_int{4, 2, 17, 5}},\n\t{\"net.inet6.divert.recvspace\", []_C_int{4, 24, 86, 1}},\n\t{\"net.inet6.divert.sendspace\", []_C_int{4, 24, 86, 2}},\n\t{\"net.inet6.divert.stats\", []_C_int{4, 24, 86, 3}},\n\t{\"net.inet6.icmp6.errppslimit\", []_C_int{4, 24, 30, 14}},\n\t{\"net.inet6.icmp6.mtudisc_hiwat\", []_C_int{4, 24, 30, 16}},\n\t{\"net.inet6.icmp6.mtudisc_lowat\", []_C_int{4, 24, 30, 17}},\n\t{\"net.inet6.icmp6.nd6_debug\", []_C_int{4, 24, 30, 18}},\n\t{\"net.inet6.icmp6.nd6_delay\", []_C_int{4, 24, 30, 8}},\n\t{\"net.inet6.icmp6.nd6_maxnudhint\", []_C_int{4, 24, 30, 15}},\n\t{\"net.inet6.icmp6.nd6_mmaxtries\", []_C_int{4, 24, 30, 10}},\n\t{\"net.inet6.icmp6.nd6_umaxtries\", []_C_int{4, 24, 30, 9}},\n\t{\"net.inet6.icmp6.redirtimeout\", []_C_int{4, 24, 30, 3}},\n\t{\"net.inet6.ip6.auto_flowlabel\", []_C_int{4, 24, 17, 17}},\n\t{\"net.inet6.ip6.dad_count\", []_C_int{4, 24, 17, 16}},\n\t{\"net.inet6.ip6.dad_pending\", []_C_int{4, 24, 17, 49}},\n\t{\"net.inet6.ip6.defmcasthlim\", []_C_int{4, 24, 17, 18}},\n\t{\"net.inet6.ip6.forwarding\", []_C_int{4, 24, 17, 1}},\n\t{\"net.inet6.ip6.forwsrcrt\", []_C_int{4, 24, 17, 5}},\n\t{\"net.inet6.ip6.hdrnestlimit\", []_C_int{4, 24, 17, 15}},\n\t{\"net.inet6.ip6.hlim\", []_C_int{4, 24, 17, 3}},\n\t{\"net.inet6.ip6.log_interval\", []_C_int{4, 24, 17, 14}},\n\t{\"net.inet6.ip6.maxdynroutes\", []_C_int{4, 24, 17, 48}},\n\t{\"net.inet6.ip6.maxfragpackets\", []_C_int{4, 24, 17, 9}},\n\t{\"net.inet6.ip6.maxfrags\", []_C_int{4, 24, 17, 41}},\n\t{\"net.inet6.ip6.mforwarding\", []_C_int{4, 24, 17, 42}},\n\t{\"net.inet6.ip6.mrtmfc\", []_C_int{4, 24, 17, 53}},\n\t{\"net.inet6.ip6.mrtmif\", []_C_int{4, 24, 17, 52}},\n\t{\"net.inet6.ip6.mrtproto\", []_C_int{4, 24, 17, 8}},\n\t{\"net.inet6.ip6.mtudisctimeout\", []_C_int{4, 24, 17, 50}},\n\t{\"net.inet6.ip6.multicast_mtudisc\", []_C_int{4, 24, 17, 44}},\n\t{\"net.inet6.ip6.multipath\", []_C_int{4, 24, 17, 43}},\n\t{\"net.inet6.ip6.neighborgcthresh\", []_C_int{4, 24, 17, 45}},\n\t{\"net.inet6.ip6.redirect\", []_C_int{4, 24, 17, 2}},\n\t{\"net.inet6.ip6.soiikey\", []_C_int{4, 24, 17, 54}},\n\t{\"net.inet6.ip6.sourcecheck\", []_C_int{4, 24, 17, 10}},\n\t{\"net.inet6.ip6.sourcecheck_logint\", []_C_int{4, 24, 17, 11}},\n\t{\"net.inet6.ip6.use_deprecated\", []_C_int{4, 24, 17, 21}},\n\t{\"net.key.sadb_dump\", []_C_int{4, 30, 1}},\n\t{\"net.key.spd_dump\", []_C_int{4, 30, 2}},\n\t{\"net.mpls.ifq.congestion\", []_C_int{4, 33, 3, 4}},\n\t{\"net.mpls.ifq.drops\", []_C_int{4, 33, 3, 3}},\n\t{\"net.mpls.ifq.len\", []_C_int{4, 33, 3, 1}},\n\t{\"net.mpls.ifq.maxlen\", []_C_int{4, 33, 3, 2}},\n\t{\"net.mpls.mapttl_ip\", []_C_int{4, 33, 5}},\n\t{\"net.mpls.mapttl_ip6\", []_C_int{4, 33, 6}},\n\t{\"net.mpls.maxloop_inkernel\", []_C_int{4, 33, 4}},\n\t{\"net.mpls.ttl\", []_C_int{4, 33, 2}},\n\t{\"net.pflow.stats\", []_C_int{4, 34, 1}},\n\t{\"net.pipex.enable\", []_C_int{4, 35, 1}},\n\t{\"vm.anonmin\", []_C_int{2, 7}},\n\t{\"vm.loadavg\", []_C_int{2, 2}},\n\t{\"vm.maxslp\", []_C_int{2, 10}},\n\t{\"vm.nkmempages\", []_C_int{2, 6}},\n\t{\"vm.psstrings\", []_C_int{2, 3}},\n\t{\"vm.swapencrypt.enable\", []_C_int{2, 5, 0}},\n\t{\"vm.swapencrypt.keyscreated\", []_C_int{2, 5, 1}},\n\t{\"vm.swapencrypt.keysdeleted\", []_C_int{2, 5, 2}},\n\t{\"vm.uspace\", []_C_int{2, 11}},\n\t{\"vm.uvmexp\", []_C_int{2, 4}},\n\t{\"vm.vmmeter\", []_C_int{2, 1}},\n\t{\"vm.vnodemin\", []_C_int{2, 9}},\n\t{\"vm.vtextmin\", []_C_int{2, 8}},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go",
    "content": "// go run mksysctl_openbsd.go\n// Code generated by the command above; DO NOT EDIT.\n\n// +build arm,openbsd\n\npackage unix\n\ntype mibentry struct {\n\tctlname string\n\tctloid  []_C_int\n}\n\nvar sysctlMib = []mibentry{\n\t{\"ddb.console\", []_C_int{9, 6}},\n\t{\"ddb.log\", []_C_int{9, 7}},\n\t{\"ddb.max_line\", []_C_int{9, 3}},\n\t{\"ddb.max_width\", []_C_int{9, 2}},\n\t{\"ddb.panic\", []_C_int{9, 5}},\n\t{\"ddb.radix\", []_C_int{9, 1}},\n\t{\"ddb.tab_stop_width\", []_C_int{9, 4}},\n\t{\"ddb.trigger\", []_C_int{9, 8}},\n\t{\"fs.posix.setuid\", []_C_int{3, 1, 1}},\n\t{\"hw.allowpowerdown\", []_C_int{6, 22}},\n\t{\"hw.byteorder\", []_C_int{6, 4}},\n\t{\"hw.cpuspeed\", []_C_int{6, 12}},\n\t{\"hw.diskcount\", []_C_int{6, 10}},\n\t{\"hw.disknames\", []_C_int{6, 8}},\n\t{\"hw.diskstats\", []_C_int{6, 9}},\n\t{\"hw.machine\", []_C_int{6, 1}},\n\t{\"hw.model\", []_C_int{6, 2}},\n\t{\"hw.ncpu\", []_C_int{6, 3}},\n\t{\"hw.ncpufound\", []_C_int{6, 21}},\n\t{\"hw.ncpuonline\", []_C_int{6, 25}},\n\t{\"hw.pagesize\", []_C_int{6, 7}},\n\t{\"hw.physmem\", []_C_int{6, 19}},\n\t{\"hw.product\", []_C_int{6, 15}},\n\t{\"hw.serialno\", []_C_int{6, 17}},\n\t{\"hw.setperf\", []_C_int{6, 13}},\n\t{\"hw.usermem\", []_C_int{6, 20}},\n\t{\"hw.uuid\", []_C_int{6, 18}},\n\t{\"hw.vendor\", []_C_int{6, 14}},\n\t{\"hw.version\", []_C_int{6, 16}},\n\t{\"kern.arandom\", []_C_int{1, 37}},\n\t{\"kern.argmax\", []_C_int{1, 8}},\n\t{\"kern.boottime\", []_C_int{1, 21}},\n\t{\"kern.bufcachepercent\", []_C_int{1, 72}},\n\t{\"kern.ccpu\", []_C_int{1, 45}},\n\t{\"kern.clockrate\", []_C_int{1, 12}},\n\t{\"kern.consdev\", []_C_int{1, 75}},\n\t{\"kern.cp_time\", []_C_int{1, 40}},\n\t{\"kern.cp_time2\", []_C_int{1, 71}},\n\t{\"kern.cryptodevallowsoft\", []_C_int{1, 53}},\n\t{\"kern.domainname\", []_C_int{1, 22}},\n\t{\"kern.file\", []_C_int{1, 73}},\n\t{\"kern.forkstat\", []_C_int{1, 42}},\n\t{\"kern.fscale\", []_C_int{1, 46}},\n\t{\"kern.fsync\", []_C_int{1, 33}},\n\t{\"kern.hostid\", []_C_int{1, 11}},\n\t{\"kern.hostname\", []_C_int{1, 10}},\n\t{\"kern.intrcnt.nintrcnt\", []_C_int{1, 63, 1}},\n\t{\"kern.job_control\", []_C_int{1, 19}},\n\t{\"kern.malloc.buckets\", []_C_int{1, 39, 1}},\n\t{\"kern.malloc.kmemnames\", []_C_int{1, 39, 3}},\n\t{\"kern.maxclusters\", []_C_int{1, 67}},\n\t{\"kern.maxfiles\", []_C_int{1, 7}},\n\t{\"kern.maxlocksperuid\", []_C_int{1, 70}},\n\t{\"kern.maxpartitions\", []_C_int{1, 23}},\n\t{\"kern.maxproc\", []_C_int{1, 6}},\n\t{\"kern.maxthread\", []_C_int{1, 25}},\n\t{\"kern.maxvnodes\", []_C_int{1, 5}},\n\t{\"kern.mbstat\", []_C_int{1, 59}},\n\t{\"kern.msgbuf\", []_C_int{1, 48}},\n\t{\"kern.msgbufsize\", []_C_int{1, 38}},\n\t{\"kern.nchstats\", []_C_int{1, 41}},\n\t{\"kern.netlivelocks\", []_C_int{1, 76}},\n\t{\"kern.nfiles\", []_C_int{1, 56}},\n\t{\"kern.ngroups\", []_C_int{1, 18}},\n\t{\"kern.nosuidcoredump\", []_C_int{1, 32}},\n\t{\"kern.nprocs\", []_C_int{1, 47}},\n\t{\"kern.nselcoll\", []_C_int{1, 43}},\n\t{\"kern.nthreads\", []_C_int{1, 26}},\n\t{\"kern.numvnodes\", []_C_int{1, 58}},\n\t{\"kern.osrelease\", []_C_int{1, 2}},\n\t{\"kern.osrevision\", []_C_int{1, 3}},\n\t{\"kern.ostype\", []_C_int{1, 1}},\n\t{\"kern.osversion\", []_C_int{1, 27}},\n\t{\"kern.pool_debug\", []_C_int{1, 77}},\n\t{\"kern.posix1version\", []_C_int{1, 17}},\n\t{\"kern.proc\", []_C_int{1, 66}},\n\t{\"kern.random\", []_C_int{1, 31}},\n\t{\"kern.rawpartition\", []_C_int{1, 24}},\n\t{\"kern.saved_ids\", []_C_int{1, 20}},\n\t{\"kern.securelevel\", []_C_int{1, 9}},\n\t{\"kern.seminfo\", []_C_int{1, 61}},\n\t{\"kern.shminfo\", []_C_int{1, 62}},\n\t{\"kern.somaxconn\", []_C_int{1, 28}},\n\t{\"kern.sominconn\", []_C_int{1, 29}},\n\t{\"kern.splassert\", []_C_int{1, 54}},\n\t{\"kern.stackgap_random\", []_C_int{1, 50}},\n\t{\"kern.sysvipc_info\", []_C_int{1, 51}},\n\t{\"kern.sysvmsg\", []_C_int{1, 34}},\n\t{\"kern.sysvsem\", []_C_int{1, 35}},\n\t{\"kern.sysvshm\", []_C_int{1, 36}},\n\t{\"kern.timecounter.choice\", []_C_int{1, 69, 4}},\n\t{\"kern.timecounter.hardware\", []_C_int{1, 69, 3}},\n\t{\"kern.timecounter.tick\", []_C_int{1, 69, 1}},\n\t{\"kern.timecounter.timestepwarnings\", []_C_int{1, 69, 2}},\n\t{\"kern.tty.maxptys\", []_C_int{1, 44, 6}},\n\t{\"kern.tty.nptys\", []_C_int{1, 44, 7}},\n\t{\"kern.tty.tk_cancc\", []_C_int{1, 44, 4}},\n\t{\"kern.tty.tk_nin\", []_C_int{1, 44, 1}},\n\t{\"kern.tty.tk_nout\", []_C_int{1, 44, 2}},\n\t{\"kern.tty.tk_rawcc\", []_C_int{1, 44, 3}},\n\t{\"kern.tty.ttyinfo\", []_C_int{1, 44, 5}},\n\t{\"kern.ttycount\", []_C_int{1, 57}},\n\t{\"kern.userasymcrypto\", []_C_int{1, 60}},\n\t{\"kern.usercrypto\", []_C_int{1, 52}},\n\t{\"kern.usermount\", []_C_int{1, 30}},\n\t{\"kern.version\", []_C_int{1, 4}},\n\t{\"kern.vnode\", []_C_int{1, 13}},\n\t{\"kern.watchdog.auto\", []_C_int{1, 64, 2}},\n\t{\"kern.watchdog.period\", []_C_int{1, 64, 1}},\n\t{\"net.bpf.bufsize\", []_C_int{4, 31, 1}},\n\t{\"net.bpf.maxbufsize\", []_C_int{4, 31, 2}},\n\t{\"net.inet.ah.enable\", []_C_int{4, 2, 51, 1}},\n\t{\"net.inet.ah.stats\", []_C_int{4, 2, 51, 2}},\n\t{\"net.inet.carp.allow\", []_C_int{4, 2, 112, 1}},\n\t{\"net.inet.carp.log\", []_C_int{4, 2, 112, 3}},\n\t{\"net.inet.carp.preempt\", []_C_int{4, 2, 112, 2}},\n\t{\"net.inet.carp.stats\", []_C_int{4, 2, 112, 4}},\n\t{\"net.inet.divert.recvspace\", []_C_int{4, 2, 258, 1}},\n\t{\"net.inet.divert.sendspace\", []_C_int{4, 2, 258, 2}},\n\t{\"net.inet.divert.stats\", []_C_int{4, 2, 258, 3}},\n\t{\"net.inet.esp.enable\", []_C_int{4, 2, 50, 1}},\n\t{\"net.inet.esp.stats\", []_C_int{4, 2, 50, 4}},\n\t{\"net.inet.esp.udpencap\", []_C_int{4, 2, 50, 2}},\n\t{\"net.inet.esp.udpencap_port\", []_C_int{4, 2, 50, 3}},\n\t{\"net.inet.etherip.allow\", []_C_int{4, 2, 97, 1}},\n\t{\"net.inet.etherip.stats\", []_C_int{4, 2, 97, 2}},\n\t{\"net.inet.gre.allow\", []_C_int{4, 2, 47, 1}},\n\t{\"net.inet.gre.wccp\", []_C_int{4, 2, 47, 2}},\n\t{\"net.inet.icmp.bmcastecho\", []_C_int{4, 2, 1, 2}},\n\t{\"net.inet.icmp.errppslimit\", []_C_int{4, 2, 1, 3}},\n\t{\"net.inet.icmp.maskrepl\", []_C_int{4, 2, 1, 1}},\n\t{\"net.inet.icmp.rediraccept\", []_C_int{4, 2, 1, 4}},\n\t{\"net.inet.icmp.redirtimeout\", []_C_int{4, 2, 1, 5}},\n\t{\"net.inet.icmp.stats\", []_C_int{4, 2, 1, 7}},\n\t{\"net.inet.icmp.tstamprepl\", []_C_int{4, 2, 1, 6}},\n\t{\"net.inet.igmp.stats\", []_C_int{4, 2, 2, 1}},\n\t{\"net.inet.ip.arpqueued\", []_C_int{4, 2, 0, 36}},\n\t{\"net.inet.ip.encdebug\", []_C_int{4, 2, 0, 12}},\n\t{\"net.inet.ip.forwarding\", []_C_int{4, 2, 0, 1}},\n\t{\"net.inet.ip.ifq.congestion\", []_C_int{4, 2, 0, 30, 4}},\n\t{\"net.inet.ip.ifq.drops\", []_C_int{4, 2, 0, 30, 3}},\n\t{\"net.inet.ip.ifq.len\", []_C_int{4, 2, 0, 30, 1}},\n\t{\"net.inet.ip.ifq.maxlen\", []_C_int{4, 2, 0, 30, 2}},\n\t{\"net.inet.ip.maxqueue\", []_C_int{4, 2, 0, 11}},\n\t{\"net.inet.ip.mforwarding\", []_C_int{4, 2, 0, 31}},\n\t{\"net.inet.ip.mrtproto\", []_C_int{4, 2, 0, 34}},\n\t{\"net.inet.ip.mrtstats\", []_C_int{4, 2, 0, 35}},\n\t{\"net.inet.ip.mtu\", []_C_int{4, 2, 0, 4}},\n\t{\"net.inet.ip.mtudisc\", []_C_int{4, 2, 0, 27}},\n\t{\"net.inet.ip.mtudisctimeout\", []_C_int{4, 2, 0, 28}},\n\t{\"net.inet.ip.multipath\", []_C_int{4, 2, 0, 32}},\n\t{\"net.inet.ip.portfirst\", []_C_int{4, 2, 0, 7}},\n\t{\"net.inet.ip.porthifirst\", []_C_int{4, 2, 0, 9}},\n\t{\"net.inet.ip.porthilast\", []_C_int{4, 2, 0, 10}},\n\t{\"net.inet.ip.portlast\", []_C_int{4, 2, 0, 8}},\n\t{\"net.inet.ip.redirect\", []_C_int{4, 2, 0, 2}},\n\t{\"net.inet.ip.sourceroute\", []_C_int{4, 2, 0, 5}},\n\t{\"net.inet.ip.stats\", []_C_int{4, 2, 0, 33}},\n\t{\"net.inet.ip.ttl\", []_C_int{4, 2, 0, 3}},\n\t{\"net.inet.ipcomp.enable\", []_C_int{4, 2, 108, 1}},\n\t{\"net.inet.ipcomp.stats\", []_C_int{4, 2, 108, 2}},\n\t{\"net.inet.ipip.allow\", []_C_int{4, 2, 4, 1}},\n\t{\"net.inet.ipip.stats\", []_C_int{4, 2, 4, 2}},\n\t{\"net.inet.mobileip.allow\", []_C_int{4, 2, 55, 1}},\n\t{\"net.inet.pfsync.stats\", []_C_int{4, 2, 240, 1}},\n\t{\"net.inet.pim.stats\", []_C_int{4, 2, 103, 1}},\n\t{\"net.inet.tcp.ackonpush\", []_C_int{4, 2, 6, 13}},\n\t{\"net.inet.tcp.always_keepalive\", []_C_int{4, 2, 6, 22}},\n\t{\"net.inet.tcp.baddynamic\", []_C_int{4, 2, 6, 6}},\n\t{\"net.inet.tcp.drop\", []_C_int{4, 2, 6, 19}},\n\t{\"net.inet.tcp.ecn\", []_C_int{4, 2, 6, 14}},\n\t{\"net.inet.tcp.ident\", []_C_int{4, 2, 6, 9}},\n\t{\"net.inet.tcp.keepidle\", []_C_int{4, 2, 6, 3}},\n\t{\"net.inet.tcp.keepinittime\", []_C_int{4, 2, 6, 2}},\n\t{\"net.inet.tcp.keepintvl\", []_C_int{4, 2, 6, 4}},\n\t{\"net.inet.tcp.mssdflt\", []_C_int{4, 2, 6, 11}},\n\t{\"net.inet.tcp.reasslimit\", []_C_int{4, 2, 6, 18}},\n\t{\"net.inet.tcp.rfc1323\", []_C_int{4, 2, 6, 1}},\n\t{\"net.inet.tcp.rfc3390\", []_C_int{4, 2, 6, 17}},\n\t{\"net.inet.tcp.rstppslimit\", []_C_int{4, 2, 6, 12}},\n\t{\"net.inet.tcp.sack\", []_C_int{4, 2, 6, 10}},\n\t{\"net.inet.tcp.sackholelimit\", []_C_int{4, 2, 6, 20}},\n\t{\"net.inet.tcp.slowhz\", []_C_int{4, 2, 6, 5}},\n\t{\"net.inet.tcp.stats\", []_C_int{4, 2, 6, 21}},\n\t{\"net.inet.tcp.synbucketlimit\", []_C_int{4, 2, 6, 16}},\n\t{\"net.inet.tcp.syncachelimit\", []_C_int{4, 2, 6, 15}},\n\t{\"net.inet.udp.baddynamic\", []_C_int{4, 2, 17, 2}},\n\t{\"net.inet.udp.checksum\", []_C_int{4, 2, 17, 1}},\n\t{\"net.inet.udp.recvspace\", []_C_int{4, 2, 17, 3}},\n\t{\"net.inet.udp.sendspace\", []_C_int{4, 2, 17, 4}},\n\t{\"net.inet.udp.stats\", []_C_int{4, 2, 17, 5}},\n\t{\"net.inet6.divert.recvspace\", []_C_int{4, 24, 86, 1}},\n\t{\"net.inet6.divert.sendspace\", []_C_int{4, 24, 86, 2}},\n\t{\"net.inet6.divert.stats\", []_C_int{4, 24, 86, 3}},\n\t{\"net.inet6.icmp6.errppslimit\", []_C_int{4, 24, 30, 14}},\n\t{\"net.inet6.icmp6.mtudisc_hiwat\", []_C_int{4, 24, 30, 16}},\n\t{\"net.inet6.icmp6.mtudisc_lowat\", []_C_int{4, 24, 30, 17}},\n\t{\"net.inet6.icmp6.nd6_debug\", []_C_int{4, 24, 30, 18}},\n\t{\"net.inet6.icmp6.nd6_delay\", []_C_int{4, 24, 30, 8}},\n\t{\"net.inet6.icmp6.nd6_maxnudhint\", []_C_int{4, 24, 30, 15}},\n\t{\"net.inet6.icmp6.nd6_mmaxtries\", []_C_int{4, 24, 30, 10}},\n\t{\"net.inet6.icmp6.nd6_prune\", []_C_int{4, 24, 30, 6}},\n\t{\"net.inet6.icmp6.nd6_umaxtries\", []_C_int{4, 24, 30, 9}},\n\t{\"net.inet6.icmp6.nd6_useloopback\", []_C_int{4, 24, 30, 11}},\n\t{\"net.inet6.icmp6.nodeinfo\", []_C_int{4, 24, 30, 13}},\n\t{\"net.inet6.icmp6.rediraccept\", []_C_int{4, 24, 30, 2}},\n\t{\"net.inet6.icmp6.redirtimeout\", []_C_int{4, 24, 30, 3}},\n\t{\"net.inet6.ip6.accept_rtadv\", []_C_int{4, 24, 17, 12}},\n\t{\"net.inet6.ip6.auto_flowlabel\", []_C_int{4, 24, 17, 17}},\n\t{\"net.inet6.ip6.dad_count\", []_C_int{4, 24, 17, 16}},\n\t{\"net.inet6.ip6.dad_pending\", []_C_int{4, 24, 17, 49}},\n\t{\"net.inet6.ip6.defmcasthlim\", []_C_int{4, 24, 17, 18}},\n\t{\"net.inet6.ip6.forwarding\", []_C_int{4, 24, 17, 1}},\n\t{\"net.inet6.ip6.forwsrcrt\", []_C_int{4, 24, 17, 5}},\n\t{\"net.inet6.ip6.hdrnestlimit\", []_C_int{4, 24, 17, 15}},\n\t{\"net.inet6.ip6.hlim\", []_C_int{4, 24, 17, 3}},\n\t{\"net.inet6.ip6.log_interval\", []_C_int{4, 24, 17, 14}},\n\t{\"net.inet6.ip6.maxdynroutes\", []_C_int{4, 24, 17, 48}},\n\t{\"net.inet6.ip6.maxfragpackets\", []_C_int{4, 24, 17, 9}},\n\t{\"net.inet6.ip6.maxfrags\", []_C_int{4, 24, 17, 41}},\n\t{\"net.inet6.ip6.maxifdefrouters\", []_C_int{4, 24, 17, 47}},\n\t{\"net.inet6.ip6.maxifprefixes\", []_C_int{4, 24, 17, 46}},\n\t{\"net.inet6.ip6.mforwarding\", []_C_int{4, 24, 17, 42}},\n\t{\"net.inet6.ip6.mrtproto\", []_C_int{4, 24, 17, 8}},\n\t{\"net.inet6.ip6.mtudisctimeout\", []_C_int{4, 24, 17, 50}},\n\t{\"net.inet6.ip6.multicast_mtudisc\", []_C_int{4, 24, 17, 44}},\n\t{\"net.inet6.ip6.multipath\", []_C_int{4, 24, 17, 43}},\n\t{\"net.inet6.ip6.neighborgcthresh\", []_C_int{4, 24, 17, 45}},\n\t{\"net.inet6.ip6.redirect\", []_C_int{4, 24, 17, 2}},\n\t{\"net.inet6.ip6.rr_prune\", []_C_int{4, 24, 17, 22}},\n\t{\"net.inet6.ip6.sourcecheck\", []_C_int{4, 24, 17, 10}},\n\t{\"net.inet6.ip6.sourcecheck_logint\", []_C_int{4, 24, 17, 11}},\n\t{\"net.inet6.ip6.use_deprecated\", []_C_int{4, 24, 17, 21}},\n\t{\"net.inet6.ip6.v6only\", []_C_int{4, 24, 17, 24}},\n\t{\"net.key.sadb_dump\", []_C_int{4, 30, 1}},\n\t{\"net.key.spd_dump\", []_C_int{4, 30, 2}},\n\t{\"net.mpls.ifq.congestion\", []_C_int{4, 33, 3, 4}},\n\t{\"net.mpls.ifq.drops\", []_C_int{4, 33, 3, 3}},\n\t{\"net.mpls.ifq.len\", []_C_int{4, 33, 3, 1}},\n\t{\"net.mpls.ifq.maxlen\", []_C_int{4, 33, 3, 2}},\n\t{\"net.mpls.mapttl_ip\", []_C_int{4, 33, 5}},\n\t{\"net.mpls.mapttl_ip6\", []_C_int{4, 33, 6}},\n\t{\"net.mpls.maxloop_inkernel\", []_C_int{4, 33, 4}},\n\t{\"net.mpls.ttl\", []_C_int{4, 33, 2}},\n\t{\"net.pflow.stats\", []_C_int{4, 34, 1}},\n\t{\"net.pipex.enable\", []_C_int{4, 35, 1}},\n\t{\"vm.anonmin\", []_C_int{2, 7}},\n\t{\"vm.loadavg\", []_C_int{2, 2}},\n\t{\"vm.maxslp\", []_C_int{2, 10}},\n\t{\"vm.nkmempages\", []_C_int{2, 6}},\n\t{\"vm.psstrings\", []_C_int{2, 3}},\n\t{\"vm.swapencrypt.enable\", []_C_int{2, 5, 0}},\n\t{\"vm.swapencrypt.keyscreated\", []_C_int{2, 5, 1}},\n\t{\"vm.swapencrypt.keysdeleted\", []_C_int{2, 5, 2}},\n\t{\"vm.uspace\", []_C_int{2, 11}},\n\t{\"vm.uvmexp\", []_C_int{2, 4}},\n\t{\"vm.vmmeter\", []_C_int{2, 1}},\n\t{\"vm.vnodemin\", []_C_int{2, 9}},\n\t{\"vm.vtextmin\", []_C_int{2, 8}},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go",
    "content": "// go run mksysctl_openbsd.go\n// Code generated by the command above; DO NOT EDIT.\n\n// +build arm64,openbsd\n\npackage unix\n\ntype mibentry struct {\n\tctlname string\n\tctloid  []_C_int\n}\n\nvar sysctlMib = []mibentry{\n\t{\"ddb.console\", []_C_int{9, 6}},\n\t{\"ddb.log\", []_C_int{9, 7}},\n\t{\"ddb.max_line\", []_C_int{9, 3}},\n\t{\"ddb.max_width\", []_C_int{9, 2}},\n\t{\"ddb.panic\", []_C_int{9, 5}},\n\t{\"ddb.profile\", []_C_int{9, 9}},\n\t{\"ddb.radix\", []_C_int{9, 1}},\n\t{\"ddb.tab_stop_width\", []_C_int{9, 4}},\n\t{\"ddb.trigger\", []_C_int{9, 8}},\n\t{\"fs.posix.setuid\", []_C_int{3, 1, 1}},\n\t{\"hw.allowpowerdown\", []_C_int{6, 22}},\n\t{\"hw.byteorder\", []_C_int{6, 4}},\n\t{\"hw.cpuspeed\", []_C_int{6, 12}},\n\t{\"hw.diskcount\", []_C_int{6, 10}},\n\t{\"hw.disknames\", []_C_int{6, 8}},\n\t{\"hw.diskstats\", []_C_int{6, 9}},\n\t{\"hw.machine\", []_C_int{6, 1}},\n\t{\"hw.model\", []_C_int{6, 2}},\n\t{\"hw.ncpu\", []_C_int{6, 3}},\n\t{\"hw.ncpufound\", []_C_int{6, 21}},\n\t{\"hw.ncpuonline\", []_C_int{6, 25}},\n\t{\"hw.pagesize\", []_C_int{6, 7}},\n\t{\"hw.perfpolicy\", []_C_int{6, 23}},\n\t{\"hw.physmem\", []_C_int{6, 19}},\n\t{\"hw.product\", []_C_int{6, 15}},\n\t{\"hw.serialno\", []_C_int{6, 17}},\n\t{\"hw.setperf\", []_C_int{6, 13}},\n\t{\"hw.smt\", []_C_int{6, 24}},\n\t{\"hw.usermem\", []_C_int{6, 20}},\n\t{\"hw.uuid\", []_C_int{6, 18}},\n\t{\"hw.vendor\", []_C_int{6, 14}},\n\t{\"hw.version\", []_C_int{6, 16}},\n\t{\"kern.allowkmem\", []_C_int{1, 52}},\n\t{\"kern.argmax\", []_C_int{1, 8}},\n\t{\"kern.audio\", []_C_int{1, 84}},\n\t{\"kern.boottime\", []_C_int{1, 21}},\n\t{\"kern.bufcachepercent\", []_C_int{1, 72}},\n\t{\"kern.ccpu\", []_C_int{1, 45}},\n\t{\"kern.clockrate\", []_C_int{1, 12}},\n\t{\"kern.consdev\", []_C_int{1, 75}},\n\t{\"kern.cp_time\", []_C_int{1, 40}},\n\t{\"kern.cp_time2\", []_C_int{1, 71}},\n\t{\"kern.cpustats\", []_C_int{1, 85}},\n\t{\"kern.domainname\", []_C_int{1, 22}},\n\t{\"kern.file\", []_C_int{1, 73}},\n\t{\"kern.forkstat\", []_C_int{1, 42}},\n\t{\"kern.fscale\", []_C_int{1, 46}},\n\t{\"kern.fsync\", []_C_int{1, 33}},\n\t{\"kern.global_ptrace\", []_C_int{1, 81}},\n\t{\"kern.hostid\", []_C_int{1, 11}},\n\t{\"kern.hostname\", []_C_int{1, 10}},\n\t{\"kern.intrcnt.nintrcnt\", []_C_int{1, 63, 1}},\n\t{\"kern.job_control\", []_C_int{1, 19}},\n\t{\"kern.malloc.buckets\", []_C_int{1, 39, 1}},\n\t{\"kern.malloc.kmemnames\", []_C_int{1, 39, 3}},\n\t{\"kern.maxclusters\", []_C_int{1, 67}},\n\t{\"kern.maxfiles\", []_C_int{1, 7}},\n\t{\"kern.maxlocksperuid\", []_C_int{1, 70}},\n\t{\"kern.maxpartitions\", []_C_int{1, 23}},\n\t{\"kern.maxproc\", []_C_int{1, 6}},\n\t{\"kern.maxthread\", []_C_int{1, 25}},\n\t{\"kern.maxvnodes\", []_C_int{1, 5}},\n\t{\"kern.mbstat\", []_C_int{1, 59}},\n\t{\"kern.msgbuf\", []_C_int{1, 48}},\n\t{\"kern.msgbufsize\", []_C_int{1, 38}},\n\t{\"kern.nchstats\", []_C_int{1, 41}},\n\t{\"kern.netlivelocks\", []_C_int{1, 76}},\n\t{\"kern.nfiles\", []_C_int{1, 56}},\n\t{\"kern.ngroups\", []_C_int{1, 18}},\n\t{\"kern.nosuidcoredump\", []_C_int{1, 32}},\n\t{\"kern.nprocs\", []_C_int{1, 47}},\n\t{\"kern.nselcoll\", []_C_int{1, 43}},\n\t{\"kern.nthreads\", []_C_int{1, 26}},\n\t{\"kern.numvnodes\", []_C_int{1, 58}},\n\t{\"kern.osrelease\", []_C_int{1, 2}},\n\t{\"kern.osrevision\", []_C_int{1, 3}},\n\t{\"kern.ostype\", []_C_int{1, 1}},\n\t{\"kern.osversion\", []_C_int{1, 27}},\n\t{\"kern.pool_debug\", []_C_int{1, 77}},\n\t{\"kern.posix1version\", []_C_int{1, 17}},\n\t{\"kern.proc\", []_C_int{1, 66}},\n\t{\"kern.rawpartition\", []_C_int{1, 24}},\n\t{\"kern.saved_ids\", []_C_int{1, 20}},\n\t{\"kern.securelevel\", []_C_int{1, 9}},\n\t{\"kern.seminfo\", []_C_int{1, 61}},\n\t{\"kern.shminfo\", []_C_int{1, 62}},\n\t{\"kern.somaxconn\", []_C_int{1, 28}},\n\t{\"kern.sominconn\", []_C_int{1, 29}},\n\t{\"kern.splassert\", []_C_int{1, 54}},\n\t{\"kern.stackgap_random\", []_C_int{1, 50}},\n\t{\"kern.sysvipc_info\", []_C_int{1, 51}},\n\t{\"kern.sysvmsg\", []_C_int{1, 34}},\n\t{\"kern.sysvsem\", []_C_int{1, 35}},\n\t{\"kern.sysvshm\", []_C_int{1, 36}},\n\t{\"kern.timecounter.choice\", []_C_int{1, 69, 4}},\n\t{\"kern.timecounter.hardware\", []_C_int{1, 69, 3}},\n\t{\"kern.timecounter.tick\", []_C_int{1, 69, 1}},\n\t{\"kern.timecounter.timestepwarnings\", []_C_int{1, 69, 2}},\n\t{\"kern.tty.tk_cancc\", []_C_int{1, 44, 4}},\n\t{\"kern.tty.tk_nin\", []_C_int{1, 44, 1}},\n\t{\"kern.tty.tk_nout\", []_C_int{1, 44, 2}},\n\t{\"kern.tty.tk_rawcc\", []_C_int{1, 44, 3}},\n\t{\"kern.tty.ttyinfo\", []_C_int{1, 44, 5}},\n\t{\"kern.ttycount\", []_C_int{1, 57}},\n\t{\"kern.version\", []_C_int{1, 4}},\n\t{\"kern.watchdog.auto\", []_C_int{1, 64, 2}},\n\t{\"kern.watchdog.period\", []_C_int{1, 64, 1}},\n\t{\"kern.witnesswatch\", []_C_int{1, 53}},\n\t{\"kern.wxabort\", []_C_int{1, 74}},\n\t{\"net.bpf.bufsize\", []_C_int{4, 31, 1}},\n\t{\"net.bpf.maxbufsize\", []_C_int{4, 31, 2}},\n\t{\"net.inet.ah.enable\", []_C_int{4, 2, 51, 1}},\n\t{\"net.inet.ah.stats\", []_C_int{4, 2, 51, 2}},\n\t{\"net.inet.carp.allow\", []_C_int{4, 2, 112, 1}},\n\t{\"net.inet.carp.log\", []_C_int{4, 2, 112, 3}},\n\t{\"net.inet.carp.preempt\", []_C_int{4, 2, 112, 2}},\n\t{\"net.inet.carp.stats\", []_C_int{4, 2, 112, 4}},\n\t{\"net.inet.divert.recvspace\", []_C_int{4, 2, 258, 1}},\n\t{\"net.inet.divert.sendspace\", []_C_int{4, 2, 258, 2}},\n\t{\"net.inet.divert.stats\", []_C_int{4, 2, 258, 3}},\n\t{\"net.inet.esp.enable\", []_C_int{4, 2, 50, 1}},\n\t{\"net.inet.esp.stats\", []_C_int{4, 2, 50, 4}},\n\t{\"net.inet.esp.udpencap\", []_C_int{4, 2, 50, 2}},\n\t{\"net.inet.esp.udpencap_port\", []_C_int{4, 2, 50, 3}},\n\t{\"net.inet.etherip.allow\", []_C_int{4, 2, 97, 1}},\n\t{\"net.inet.etherip.stats\", []_C_int{4, 2, 97, 2}},\n\t{\"net.inet.gre.allow\", []_C_int{4, 2, 47, 1}},\n\t{\"net.inet.gre.wccp\", []_C_int{4, 2, 47, 2}},\n\t{\"net.inet.icmp.bmcastecho\", []_C_int{4, 2, 1, 2}},\n\t{\"net.inet.icmp.errppslimit\", []_C_int{4, 2, 1, 3}},\n\t{\"net.inet.icmp.maskrepl\", []_C_int{4, 2, 1, 1}},\n\t{\"net.inet.icmp.rediraccept\", []_C_int{4, 2, 1, 4}},\n\t{\"net.inet.icmp.redirtimeout\", []_C_int{4, 2, 1, 5}},\n\t{\"net.inet.icmp.stats\", []_C_int{4, 2, 1, 7}},\n\t{\"net.inet.icmp.tstamprepl\", []_C_int{4, 2, 1, 6}},\n\t{\"net.inet.igmp.stats\", []_C_int{4, 2, 2, 1}},\n\t{\"net.inet.ip.arpdown\", []_C_int{4, 2, 0, 40}},\n\t{\"net.inet.ip.arpqueued\", []_C_int{4, 2, 0, 36}},\n\t{\"net.inet.ip.arptimeout\", []_C_int{4, 2, 0, 39}},\n\t{\"net.inet.ip.encdebug\", []_C_int{4, 2, 0, 12}},\n\t{\"net.inet.ip.forwarding\", []_C_int{4, 2, 0, 1}},\n\t{\"net.inet.ip.ifq.congestion\", []_C_int{4, 2, 0, 30, 4}},\n\t{\"net.inet.ip.ifq.drops\", []_C_int{4, 2, 0, 30, 3}},\n\t{\"net.inet.ip.ifq.len\", []_C_int{4, 2, 0, 30, 1}},\n\t{\"net.inet.ip.ifq.maxlen\", []_C_int{4, 2, 0, 30, 2}},\n\t{\"net.inet.ip.maxqueue\", []_C_int{4, 2, 0, 11}},\n\t{\"net.inet.ip.mforwarding\", []_C_int{4, 2, 0, 31}},\n\t{\"net.inet.ip.mrtmfc\", []_C_int{4, 2, 0, 37}},\n\t{\"net.inet.ip.mrtproto\", []_C_int{4, 2, 0, 34}},\n\t{\"net.inet.ip.mrtstats\", []_C_int{4, 2, 0, 35}},\n\t{\"net.inet.ip.mrtvif\", []_C_int{4, 2, 0, 38}},\n\t{\"net.inet.ip.mtu\", []_C_int{4, 2, 0, 4}},\n\t{\"net.inet.ip.mtudisc\", []_C_int{4, 2, 0, 27}},\n\t{\"net.inet.ip.mtudisctimeout\", []_C_int{4, 2, 0, 28}},\n\t{\"net.inet.ip.multipath\", []_C_int{4, 2, 0, 32}},\n\t{\"net.inet.ip.portfirst\", []_C_int{4, 2, 0, 7}},\n\t{\"net.inet.ip.porthifirst\", []_C_int{4, 2, 0, 9}},\n\t{\"net.inet.ip.porthilast\", []_C_int{4, 2, 0, 10}},\n\t{\"net.inet.ip.portlast\", []_C_int{4, 2, 0, 8}},\n\t{\"net.inet.ip.redirect\", []_C_int{4, 2, 0, 2}},\n\t{\"net.inet.ip.sourceroute\", []_C_int{4, 2, 0, 5}},\n\t{\"net.inet.ip.stats\", []_C_int{4, 2, 0, 33}},\n\t{\"net.inet.ip.ttl\", []_C_int{4, 2, 0, 3}},\n\t{\"net.inet.ipcomp.enable\", []_C_int{4, 2, 108, 1}},\n\t{\"net.inet.ipcomp.stats\", []_C_int{4, 2, 108, 2}},\n\t{\"net.inet.ipip.allow\", []_C_int{4, 2, 4, 1}},\n\t{\"net.inet.ipip.stats\", []_C_int{4, 2, 4, 2}},\n\t{\"net.inet.mobileip.allow\", []_C_int{4, 2, 55, 1}},\n\t{\"net.inet.pfsync.stats\", []_C_int{4, 2, 240, 1}},\n\t{\"net.inet.tcp.ackonpush\", []_C_int{4, 2, 6, 13}},\n\t{\"net.inet.tcp.always_keepalive\", []_C_int{4, 2, 6, 22}},\n\t{\"net.inet.tcp.baddynamic\", []_C_int{4, 2, 6, 6}},\n\t{\"net.inet.tcp.drop\", []_C_int{4, 2, 6, 19}},\n\t{\"net.inet.tcp.ecn\", []_C_int{4, 2, 6, 14}},\n\t{\"net.inet.tcp.ident\", []_C_int{4, 2, 6, 9}},\n\t{\"net.inet.tcp.keepidle\", []_C_int{4, 2, 6, 3}},\n\t{\"net.inet.tcp.keepinittime\", []_C_int{4, 2, 6, 2}},\n\t{\"net.inet.tcp.keepintvl\", []_C_int{4, 2, 6, 4}},\n\t{\"net.inet.tcp.mssdflt\", []_C_int{4, 2, 6, 11}},\n\t{\"net.inet.tcp.reasslimit\", []_C_int{4, 2, 6, 18}},\n\t{\"net.inet.tcp.rfc1323\", []_C_int{4, 2, 6, 1}},\n\t{\"net.inet.tcp.rfc3390\", []_C_int{4, 2, 6, 17}},\n\t{\"net.inet.tcp.rootonly\", []_C_int{4, 2, 6, 24}},\n\t{\"net.inet.tcp.rstppslimit\", []_C_int{4, 2, 6, 12}},\n\t{\"net.inet.tcp.sack\", []_C_int{4, 2, 6, 10}},\n\t{\"net.inet.tcp.sackholelimit\", []_C_int{4, 2, 6, 20}},\n\t{\"net.inet.tcp.slowhz\", []_C_int{4, 2, 6, 5}},\n\t{\"net.inet.tcp.stats\", []_C_int{4, 2, 6, 21}},\n\t{\"net.inet.tcp.synbucketlimit\", []_C_int{4, 2, 6, 16}},\n\t{\"net.inet.tcp.syncachelimit\", []_C_int{4, 2, 6, 15}},\n\t{\"net.inet.tcp.synhashsize\", []_C_int{4, 2, 6, 25}},\n\t{\"net.inet.tcp.synuselimit\", []_C_int{4, 2, 6, 23}},\n\t{\"net.inet.udp.baddynamic\", []_C_int{4, 2, 17, 2}},\n\t{\"net.inet.udp.checksum\", []_C_int{4, 2, 17, 1}},\n\t{\"net.inet.udp.recvspace\", []_C_int{4, 2, 17, 3}},\n\t{\"net.inet.udp.rootonly\", []_C_int{4, 2, 17, 6}},\n\t{\"net.inet.udp.sendspace\", []_C_int{4, 2, 17, 4}},\n\t{\"net.inet.udp.stats\", []_C_int{4, 2, 17, 5}},\n\t{\"net.inet6.divert.recvspace\", []_C_int{4, 24, 86, 1}},\n\t{\"net.inet6.divert.sendspace\", []_C_int{4, 24, 86, 2}},\n\t{\"net.inet6.divert.stats\", []_C_int{4, 24, 86, 3}},\n\t{\"net.inet6.icmp6.errppslimit\", []_C_int{4, 24, 30, 14}},\n\t{\"net.inet6.icmp6.mtudisc_hiwat\", []_C_int{4, 24, 30, 16}},\n\t{\"net.inet6.icmp6.mtudisc_lowat\", []_C_int{4, 24, 30, 17}},\n\t{\"net.inet6.icmp6.nd6_debug\", []_C_int{4, 24, 30, 18}},\n\t{\"net.inet6.icmp6.nd6_delay\", []_C_int{4, 24, 30, 8}},\n\t{\"net.inet6.icmp6.nd6_maxnudhint\", []_C_int{4, 24, 30, 15}},\n\t{\"net.inet6.icmp6.nd6_mmaxtries\", []_C_int{4, 24, 30, 10}},\n\t{\"net.inet6.icmp6.nd6_umaxtries\", []_C_int{4, 24, 30, 9}},\n\t{\"net.inet6.icmp6.redirtimeout\", []_C_int{4, 24, 30, 3}},\n\t{\"net.inet6.ip6.auto_flowlabel\", []_C_int{4, 24, 17, 17}},\n\t{\"net.inet6.ip6.dad_count\", []_C_int{4, 24, 17, 16}},\n\t{\"net.inet6.ip6.dad_pending\", []_C_int{4, 24, 17, 49}},\n\t{\"net.inet6.ip6.defmcasthlim\", []_C_int{4, 24, 17, 18}},\n\t{\"net.inet6.ip6.forwarding\", []_C_int{4, 24, 17, 1}},\n\t{\"net.inet6.ip6.forwsrcrt\", []_C_int{4, 24, 17, 5}},\n\t{\"net.inet6.ip6.hdrnestlimit\", []_C_int{4, 24, 17, 15}},\n\t{\"net.inet6.ip6.hlim\", []_C_int{4, 24, 17, 3}},\n\t{\"net.inet6.ip6.log_interval\", []_C_int{4, 24, 17, 14}},\n\t{\"net.inet6.ip6.maxdynroutes\", []_C_int{4, 24, 17, 48}},\n\t{\"net.inet6.ip6.maxfragpackets\", []_C_int{4, 24, 17, 9}},\n\t{\"net.inet6.ip6.maxfrags\", []_C_int{4, 24, 17, 41}},\n\t{\"net.inet6.ip6.mforwarding\", []_C_int{4, 24, 17, 42}},\n\t{\"net.inet6.ip6.mrtmfc\", []_C_int{4, 24, 17, 53}},\n\t{\"net.inet6.ip6.mrtmif\", []_C_int{4, 24, 17, 52}},\n\t{\"net.inet6.ip6.mrtproto\", []_C_int{4, 24, 17, 8}},\n\t{\"net.inet6.ip6.mtudisctimeout\", []_C_int{4, 24, 17, 50}},\n\t{\"net.inet6.ip6.multicast_mtudisc\", []_C_int{4, 24, 17, 44}},\n\t{\"net.inet6.ip6.multipath\", []_C_int{4, 24, 17, 43}},\n\t{\"net.inet6.ip6.neighborgcthresh\", []_C_int{4, 24, 17, 45}},\n\t{\"net.inet6.ip6.redirect\", []_C_int{4, 24, 17, 2}},\n\t{\"net.inet6.ip6.soiikey\", []_C_int{4, 24, 17, 54}},\n\t{\"net.inet6.ip6.sourcecheck\", []_C_int{4, 24, 17, 10}},\n\t{\"net.inet6.ip6.sourcecheck_logint\", []_C_int{4, 24, 17, 11}},\n\t{\"net.inet6.ip6.use_deprecated\", []_C_int{4, 24, 17, 21}},\n\t{\"net.key.sadb_dump\", []_C_int{4, 30, 1}},\n\t{\"net.key.spd_dump\", []_C_int{4, 30, 2}},\n\t{\"net.mpls.ifq.congestion\", []_C_int{4, 33, 3, 4}},\n\t{\"net.mpls.ifq.drops\", []_C_int{4, 33, 3, 3}},\n\t{\"net.mpls.ifq.len\", []_C_int{4, 33, 3, 1}},\n\t{\"net.mpls.ifq.maxlen\", []_C_int{4, 33, 3, 2}},\n\t{\"net.mpls.mapttl_ip\", []_C_int{4, 33, 5}},\n\t{\"net.mpls.mapttl_ip6\", []_C_int{4, 33, 6}},\n\t{\"net.mpls.maxloop_inkernel\", []_C_int{4, 33, 4}},\n\t{\"net.mpls.ttl\", []_C_int{4, 33, 2}},\n\t{\"net.pflow.stats\", []_C_int{4, 34, 1}},\n\t{\"net.pipex.enable\", []_C_int{4, 35, 1}},\n\t{\"vm.anonmin\", []_C_int{2, 7}},\n\t{\"vm.loadavg\", []_C_int{2, 2}},\n\t{\"vm.malloc_conf\", []_C_int{2, 12}},\n\t{\"vm.maxslp\", []_C_int{2, 10}},\n\t{\"vm.nkmempages\", []_C_int{2, 6}},\n\t{\"vm.psstrings\", []_C_int{2, 3}},\n\t{\"vm.swapencrypt.enable\", []_C_int{2, 5, 0}},\n\t{\"vm.swapencrypt.keyscreated\", []_C_int{2, 5, 1}},\n\t{\"vm.swapencrypt.keysdeleted\", []_C_int{2, 5, 2}},\n\t{\"vm.uspace\", []_C_int{2, 11}},\n\t{\"vm.uvmexp\", []_C_int{2, 4}},\n\t{\"vm.vmmeter\", []_C_int{2, 1}},\n\t{\"vm.vnodemin\", []_C_int{2, 9}},\n\t{\"vm.vtextmin\", []_C_int{2, 8}},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go",
    "content": "// go run mksysctl_openbsd.go\n// Code generated by the command above; DO NOT EDIT.\n\n// +build mips64,openbsd\n\npackage unix\n\ntype mibentry struct {\n\tctlname string\n\tctloid  []_C_int\n}\n\nvar sysctlMib = []mibentry{\n\t{\"ddb.console\", []_C_int{9, 6}},\n\t{\"ddb.log\", []_C_int{9, 7}},\n\t{\"ddb.max_line\", []_C_int{9, 3}},\n\t{\"ddb.max_width\", []_C_int{9, 2}},\n\t{\"ddb.panic\", []_C_int{9, 5}},\n\t{\"ddb.profile\", []_C_int{9, 9}},\n\t{\"ddb.radix\", []_C_int{9, 1}},\n\t{\"ddb.tab_stop_width\", []_C_int{9, 4}},\n\t{\"ddb.trigger\", []_C_int{9, 8}},\n\t{\"fs.posix.setuid\", []_C_int{3, 1, 1}},\n\t{\"hw.allowpowerdown\", []_C_int{6, 22}},\n\t{\"hw.byteorder\", []_C_int{6, 4}},\n\t{\"hw.cpuspeed\", []_C_int{6, 12}},\n\t{\"hw.diskcount\", []_C_int{6, 10}},\n\t{\"hw.disknames\", []_C_int{6, 8}},\n\t{\"hw.diskstats\", []_C_int{6, 9}},\n\t{\"hw.machine\", []_C_int{6, 1}},\n\t{\"hw.model\", []_C_int{6, 2}},\n\t{\"hw.ncpu\", []_C_int{6, 3}},\n\t{\"hw.ncpufound\", []_C_int{6, 21}},\n\t{\"hw.ncpuonline\", []_C_int{6, 25}},\n\t{\"hw.pagesize\", []_C_int{6, 7}},\n\t{\"hw.perfpolicy\", []_C_int{6, 23}},\n\t{\"hw.physmem\", []_C_int{6, 19}},\n\t{\"hw.product\", []_C_int{6, 15}},\n\t{\"hw.serialno\", []_C_int{6, 17}},\n\t{\"hw.setperf\", []_C_int{6, 13}},\n\t{\"hw.smt\", []_C_int{6, 24}},\n\t{\"hw.usermem\", []_C_int{6, 20}},\n\t{\"hw.uuid\", []_C_int{6, 18}},\n\t{\"hw.vendor\", []_C_int{6, 14}},\n\t{\"hw.version\", []_C_int{6, 16}},\n\t{\"kern.allowdt\", []_C_int{1, 65}},\n\t{\"kern.allowkmem\", []_C_int{1, 52}},\n\t{\"kern.argmax\", []_C_int{1, 8}},\n\t{\"kern.audio\", []_C_int{1, 84}},\n\t{\"kern.boottime\", []_C_int{1, 21}},\n\t{\"kern.bufcachepercent\", []_C_int{1, 72}},\n\t{\"kern.ccpu\", []_C_int{1, 45}},\n\t{\"kern.clockrate\", []_C_int{1, 12}},\n\t{\"kern.consbuf\", []_C_int{1, 83}},\n\t{\"kern.consbufsize\", []_C_int{1, 82}},\n\t{\"kern.consdev\", []_C_int{1, 75}},\n\t{\"kern.cp_time\", []_C_int{1, 40}},\n\t{\"kern.cp_time2\", []_C_int{1, 71}},\n\t{\"kern.cpustats\", []_C_int{1, 85}},\n\t{\"kern.domainname\", []_C_int{1, 22}},\n\t{\"kern.file\", []_C_int{1, 73}},\n\t{\"kern.forkstat\", []_C_int{1, 42}},\n\t{\"kern.fscale\", []_C_int{1, 46}},\n\t{\"kern.fsync\", []_C_int{1, 33}},\n\t{\"kern.global_ptrace\", []_C_int{1, 81}},\n\t{\"kern.hostid\", []_C_int{1, 11}},\n\t{\"kern.hostname\", []_C_int{1, 10}},\n\t{\"kern.intrcnt.nintrcnt\", []_C_int{1, 63, 1}},\n\t{\"kern.job_control\", []_C_int{1, 19}},\n\t{\"kern.malloc.buckets\", []_C_int{1, 39, 1}},\n\t{\"kern.malloc.kmemnames\", []_C_int{1, 39, 3}},\n\t{\"kern.maxclusters\", []_C_int{1, 67}},\n\t{\"kern.maxfiles\", []_C_int{1, 7}},\n\t{\"kern.maxlocksperuid\", []_C_int{1, 70}},\n\t{\"kern.maxpartitions\", []_C_int{1, 23}},\n\t{\"kern.maxproc\", []_C_int{1, 6}},\n\t{\"kern.maxthread\", []_C_int{1, 25}},\n\t{\"kern.maxvnodes\", []_C_int{1, 5}},\n\t{\"kern.mbstat\", []_C_int{1, 59}},\n\t{\"kern.msgbuf\", []_C_int{1, 48}},\n\t{\"kern.msgbufsize\", []_C_int{1, 38}},\n\t{\"kern.nchstats\", []_C_int{1, 41}},\n\t{\"kern.netlivelocks\", []_C_int{1, 76}},\n\t{\"kern.nfiles\", []_C_int{1, 56}},\n\t{\"kern.ngroups\", []_C_int{1, 18}},\n\t{\"kern.nosuidcoredump\", []_C_int{1, 32}},\n\t{\"kern.nprocs\", []_C_int{1, 47}},\n\t{\"kern.nselcoll\", []_C_int{1, 43}},\n\t{\"kern.nthreads\", []_C_int{1, 26}},\n\t{\"kern.numvnodes\", []_C_int{1, 58}},\n\t{\"kern.osrelease\", []_C_int{1, 2}},\n\t{\"kern.osrevision\", []_C_int{1, 3}},\n\t{\"kern.ostype\", []_C_int{1, 1}},\n\t{\"kern.osversion\", []_C_int{1, 27}},\n\t{\"kern.pfstatus\", []_C_int{1, 86}},\n\t{\"kern.pool_debug\", []_C_int{1, 77}},\n\t{\"kern.posix1version\", []_C_int{1, 17}},\n\t{\"kern.proc\", []_C_int{1, 66}},\n\t{\"kern.rawpartition\", []_C_int{1, 24}},\n\t{\"kern.saved_ids\", []_C_int{1, 20}},\n\t{\"kern.securelevel\", []_C_int{1, 9}},\n\t{\"kern.seminfo\", []_C_int{1, 61}},\n\t{\"kern.shminfo\", []_C_int{1, 62}},\n\t{\"kern.somaxconn\", []_C_int{1, 28}},\n\t{\"kern.sominconn\", []_C_int{1, 29}},\n\t{\"kern.splassert\", []_C_int{1, 54}},\n\t{\"kern.stackgap_random\", []_C_int{1, 50}},\n\t{\"kern.sysvipc_info\", []_C_int{1, 51}},\n\t{\"kern.sysvmsg\", []_C_int{1, 34}},\n\t{\"kern.sysvsem\", []_C_int{1, 35}},\n\t{\"kern.sysvshm\", []_C_int{1, 36}},\n\t{\"kern.timecounter.choice\", []_C_int{1, 69, 4}},\n\t{\"kern.timecounter.hardware\", []_C_int{1, 69, 3}},\n\t{\"kern.timecounter.tick\", []_C_int{1, 69, 1}},\n\t{\"kern.timecounter.timestepwarnings\", []_C_int{1, 69, 2}},\n\t{\"kern.timeout_stats\", []_C_int{1, 87}},\n\t{\"kern.tty.tk_cancc\", []_C_int{1, 44, 4}},\n\t{\"kern.tty.tk_nin\", []_C_int{1, 44, 1}},\n\t{\"kern.tty.tk_nout\", []_C_int{1, 44, 2}},\n\t{\"kern.tty.tk_rawcc\", []_C_int{1, 44, 3}},\n\t{\"kern.tty.ttyinfo\", []_C_int{1, 44, 5}},\n\t{\"kern.ttycount\", []_C_int{1, 57}},\n\t{\"kern.utc_offset\", []_C_int{1, 88}},\n\t{\"kern.version\", []_C_int{1, 4}},\n\t{\"kern.watchdog.auto\", []_C_int{1, 64, 2}},\n\t{\"kern.watchdog.period\", []_C_int{1, 64, 1}},\n\t{\"kern.witnesswatch\", []_C_int{1, 53}},\n\t{\"kern.wxabort\", []_C_int{1, 74}},\n\t{\"net.bpf.bufsize\", []_C_int{4, 31, 1}},\n\t{\"net.bpf.maxbufsize\", []_C_int{4, 31, 2}},\n\t{\"net.inet.ah.enable\", []_C_int{4, 2, 51, 1}},\n\t{\"net.inet.ah.stats\", []_C_int{4, 2, 51, 2}},\n\t{\"net.inet.carp.allow\", []_C_int{4, 2, 112, 1}},\n\t{\"net.inet.carp.log\", []_C_int{4, 2, 112, 3}},\n\t{\"net.inet.carp.preempt\", []_C_int{4, 2, 112, 2}},\n\t{\"net.inet.carp.stats\", []_C_int{4, 2, 112, 4}},\n\t{\"net.inet.divert.recvspace\", []_C_int{4, 2, 258, 1}},\n\t{\"net.inet.divert.sendspace\", []_C_int{4, 2, 258, 2}},\n\t{\"net.inet.divert.stats\", []_C_int{4, 2, 258, 3}},\n\t{\"net.inet.esp.enable\", []_C_int{4, 2, 50, 1}},\n\t{\"net.inet.esp.stats\", []_C_int{4, 2, 50, 4}},\n\t{\"net.inet.esp.udpencap\", []_C_int{4, 2, 50, 2}},\n\t{\"net.inet.esp.udpencap_port\", []_C_int{4, 2, 50, 3}},\n\t{\"net.inet.etherip.allow\", []_C_int{4, 2, 97, 1}},\n\t{\"net.inet.etherip.stats\", []_C_int{4, 2, 97, 2}},\n\t{\"net.inet.gre.allow\", []_C_int{4, 2, 47, 1}},\n\t{\"net.inet.gre.wccp\", []_C_int{4, 2, 47, 2}},\n\t{\"net.inet.icmp.bmcastecho\", []_C_int{4, 2, 1, 2}},\n\t{\"net.inet.icmp.errppslimit\", []_C_int{4, 2, 1, 3}},\n\t{\"net.inet.icmp.maskrepl\", []_C_int{4, 2, 1, 1}},\n\t{\"net.inet.icmp.rediraccept\", []_C_int{4, 2, 1, 4}},\n\t{\"net.inet.icmp.redirtimeout\", []_C_int{4, 2, 1, 5}},\n\t{\"net.inet.icmp.stats\", []_C_int{4, 2, 1, 7}},\n\t{\"net.inet.icmp.tstamprepl\", []_C_int{4, 2, 1, 6}},\n\t{\"net.inet.igmp.stats\", []_C_int{4, 2, 2, 1}},\n\t{\"net.inet.ip.arpdown\", []_C_int{4, 2, 0, 40}},\n\t{\"net.inet.ip.arpqueued\", []_C_int{4, 2, 0, 36}},\n\t{\"net.inet.ip.arptimeout\", []_C_int{4, 2, 0, 39}},\n\t{\"net.inet.ip.encdebug\", []_C_int{4, 2, 0, 12}},\n\t{\"net.inet.ip.forwarding\", []_C_int{4, 2, 0, 1}},\n\t{\"net.inet.ip.ifq.congestion\", []_C_int{4, 2, 0, 30, 4}},\n\t{\"net.inet.ip.ifq.drops\", []_C_int{4, 2, 0, 30, 3}},\n\t{\"net.inet.ip.ifq.len\", []_C_int{4, 2, 0, 30, 1}},\n\t{\"net.inet.ip.ifq.maxlen\", []_C_int{4, 2, 0, 30, 2}},\n\t{\"net.inet.ip.maxqueue\", []_C_int{4, 2, 0, 11}},\n\t{\"net.inet.ip.mforwarding\", []_C_int{4, 2, 0, 31}},\n\t{\"net.inet.ip.mrtmfc\", []_C_int{4, 2, 0, 37}},\n\t{\"net.inet.ip.mrtproto\", []_C_int{4, 2, 0, 34}},\n\t{\"net.inet.ip.mrtstats\", []_C_int{4, 2, 0, 35}},\n\t{\"net.inet.ip.mrtvif\", []_C_int{4, 2, 0, 38}},\n\t{\"net.inet.ip.mtu\", []_C_int{4, 2, 0, 4}},\n\t{\"net.inet.ip.mtudisc\", []_C_int{4, 2, 0, 27}},\n\t{\"net.inet.ip.mtudisctimeout\", []_C_int{4, 2, 0, 28}},\n\t{\"net.inet.ip.multipath\", []_C_int{4, 2, 0, 32}},\n\t{\"net.inet.ip.portfirst\", []_C_int{4, 2, 0, 7}},\n\t{\"net.inet.ip.porthifirst\", []_C_int{4, 2, 0, 9}},\n\t{\"net.inet.ip.porthilast\", []_C_int{4, 2, 0, 10}},\n\t{\"net.inet.ip.portlast\", []_C_int{4, 2, 0, 8}},\n\t{\"net.inet.ip.redirect\", []_C_int{4, 2, 0, 2}},\n\t{\"net.inet.ip.sourceroute\", []_C_int{4, 2, 0, 5}},\n\t{\"net.inet.ip.stats\", []_C_int{4, 2, 0, 33}},\n\t{\"net.inet.ip.ttl\", []_C_int{4, 2, 0, 3}},\n\t{\"net.inet.ipcomp.enable\", []_C_int{4, 2, 108, 1}},\n\t{\"net.inet.ipcomp.stats\", []_C_int{4, 2, 108, 2}},\n\t{\"net.inet.ipip.allow\", []_C_int{4, 2, 4, 1}},\n\t{\"net.inet.ipip.stats\", []_C_int{4, 2, 4, 2}},\n\t{\"net.inet.pfsync.stats\", []_C_int{4, 2, 240, 1}},\n\t{\"net.inet.tcp.ackonpush\", []_C_int{4, 2, 6, 13}},\n\t{\"net.inet.tcp.always_keepalive\", []_C_int{4, 2, 6, 22}},\n\t{\"net.inet.tcp.baddynamic\", []_C_int{4, 2, 6, 6}},\n\t{\"net.inet.tcp.drop\", []_C_int{4, 2, 6, 19}},\n\t{\"net.inet.tcp.ecn\", []_C_int{4, 2, 6, 14}},\n\t{\"net.inet.tcp.ident\", []_C_int{4, 2, 6, 9}},\n\t{\"net.inet.tcp.keepidle\", []_C_int{4, 2, 6, 3}},\n\t{\"net.inet.tcp.keepinittime\", []_C_int{4, 2, 6, 2}},\n\t{\"net.inet.tcp.keepintvl\", []_C_int{4, 2, 6, 4}},\n\t{\"net.inet.tcp.mssdflt\", []_C_int{4, 2, 6, 11}},\n\t{\"net.inet.tcp.reasslimit\", []_C_int{4, 2, 6, 18}},\n\t{\"net.inet.tcp.rfc1323\", []_C_int{4, 2, 6, 1}},\n\t{\"net.inet.tcp.rfc3390\", []_C_int{4, 2, 6, 17}},\n\t{\"net.inet.tcp.rootonly\", []_C_int{4, 2, 6, 24}},\n\t{\"net.inet.tcp.rstppslimit\", []_C_int{4, 2, 6, 12}},\n\t{\"net.inet.tcp.sack\", []_C_int{4, 2, 6, 10}},\n\t{\"net.inet.tcp.sackholelimit\", []_C_int{4, 2, 6, 20}},\n\t{\"net.inet.tcp.slowhz\", []_C_int{4, 2, 6, 5}},\n\t{\"net.inet.tcp.stats\", []_C_int{4, 2, 6, 21}},\n\t{\"net.inet.tcp.synbucketlimit\", []_C_int{4, 2, 6, 16}},\n\t{\"net.inet.tcp.syncachelimit\", []_C_int{4, 2, 6, 15}},\n\t{\"net.inet.tcp.synhashsize\", []_C_int{4, 2, 6, 25}},\n\t{\"net.inet.tcp.synuselimit\", []_C_int{4, 2, 6, 23}},\n\t{\"net.inet.udp.baddynamic\", []_C_int{4, 2, 17, 2}},\n\t{\"net.inet.udp.checksum\", []_C_int{4, 2, 17, 1}},\n\t{\"net.inet.udp.recvspace\", []_C_int{4, 2, 17, 3}},\n\t{\"net.inet.udp.rootonly\", []_C_int{4, 2, 17, 6}},\n\t{\"net.inet.udp.sendspace\", []_C_int{4, 2, 17, 4}},\n\t{\"net.inet.udp.stats\", []_C_int{4, 2, 17, 5}},\n\t{\"net.inet6.divert.recvspace\", []_C_int{4, 24, 86, 1}},\n\t{\"net.inet6.divert.sendspace\", []_C_int{4, 24, 86, 2}},\n\t{\"net.inet6.divert.stats\", []_C_int{4, 24, 86, 3}},\n\t{\"net.inet6.icmp6.errppslimit\", []_C_int{4, 24, 30, 14}},\n\t{\"net.inet6.icmp6.mtudisc_hiwat\", []_C_int{4, 24, 30, 16}},\n\t{\"net.inet6.icmp6.mtudisc_lowat\", []_C_int{4, 24, 30, 17}},\n\t{\"net.inet6.icmp6.nd6_debug\", []_C_int{4, 24, 30, 18}},\n\t{\"net.inet6.icmp6.nd6_delay\", []_C_int{4, 24, 30, 8}},\n\t{\"net.inet6.icmp6.nd6_maxnudhint\", []_C_int{4, 24, 30, 15}},\n\t{\"net.inet6.icmp6.nd6_mmaxtries\", []_C_int{4, 24, 30, 10}},\n\t{\"net.inet6.icmp6.nd6_umaxtries\", []_C_int{4, 24, 30, 9}},\n\t{\"net.inet6.icmp6.redirtimeout\", []_C_int{4, 24, 30, 3}},\n\t{\"net.inet6.ip6.auto_flowlabel\", []_C_int{4, 24, 17, 17}},\n\t{\"net.inet6.ip6.dad_count\", []_C_int{4, 24, 17, 16}},\n\t{\"net.inet6.ip6.dad_pending\", []_C_int{4, 24, 17, 49}},\n\t{\"net.inet6.ip6.defmcasthlim\", []_C_int{4, 24, 17, 18}},\n\t{\"net.inet6.ip6.forwarding\", []_C_int{4, 24, 17, 1}},\n\t{\"net.inet6.ip6.forwsrcrt\", []_C_int{4, 24, 17, 5}},\n\t{\"net.inet6.ip6.hdrnestlimit\", []_C_int{4, 24, 17, 15}},\n\t{\"net.inet6.ip6.hlim\", []_C_int{4, 24, 17, 3}},\n\t{\"net.inet6.ip6.log_interval\", []_C_int{4, 24, 17, 14}},\n\t{\"net.inet6.ip6.maxdynroutes\", []_C_int{4, 24, 17, 48}},\n\t{\"net.inet6.ip6.maxfragpackets\", []_C_int{4, 24, 17, 9}},\n\t{\"net.inet6.ip6.maxfrags\", []_C_int{4, 24, 17, 41}},\n\t{\"net.inet6.ip6.mforwarding\", []_C_int{4, 24, 17, 42}},\n\t{\"net.inet6.ip6.mrtmfc\", []_C_int{4, 24, 17, 53}},\n\t{\"net.inet6.ip6.mrtmif\", []_C_int{4, 24, 17, 52}},\n\t{\"net.inet6.ip6.mrtproto\", []_C_int{4, 24, 17, 8}},\n\t{\"net.inet6.ip6.mtudisctimeout\", []_C_int{4, 24, 17, 50}},\n\t{\"net.inet6.ip6.multicast_mtudisc\", []_C_int{4, 24, 17, 44}},\n\t{\"net.inet6.ip6.multipath\", []_C_int{4, 24, 17, 43}},\n\t{\"net.inet6.ip6.neighborgcthresh\", []_C_int{4, 24, 17, 45}},\n\t{\"net.inet6.ip6.redirect\", []_C_int{4, 24, 17, 2}},\n\t{\"net.inet6.ip6.soiikey\", []_C_int{4, 24, 17, 54}},\n\t{\"net.inet6.ip6.sourcecheck\", []_C_int{4, 24, 17, 10}},\n\t{\"net.inet6.ip6.sourcecheck_logint\", []_C_int{4, 24, 17, 11}},\n\t{\"net.inet6.ip6.use_deprecated\", []_C_int{4, 24, 17, 21}},\n\t{\"net.key.sadb_dump\", []_C_int{4, 30, 1}},\n\t{\"net.key.spd_dump\", []_C_int{4, 30, 2}},\n\t{\"net.mpls.ifq.congestion\", []_C_int{4, 33, 3, 4}},\n\t{\"net.mpls.ifq.drops\", []_C_int{4, 33, 3, 3}},\n\t{\"net.mpls.ifq.len\", []_C_int{4, 33, 3, 1}},\n\t{\"net.mpls.ifq.maxlen\", []_C_int{4, 33, 3, 2}},\n\t{\"net.mpls.mapttl_ip\", []_C_int{4, 33, 5}},\n\t{\"net.mpls.mapttl_ip6\", []_C_int{4, 33, 6}},\n\t{\"net.mpls.ttl\", []_C_int{4, 33, 2}},\n\t{\"net.pflow.stats\", []_C_int{4, 34, 1}},\n\t{\"net.pipex.enable\", []_C_int{4, 35, 1}},\n\t{\"vm.anonmin\", []_C_int{2, 7}},\n\t{\"vm.loadavg\", []_C_int{2, 2}},\n\t{\"vm.malloc_conf\", []_C_int{2, 12}},\n\t{\"vm.maxslp\", []_C_int{2, 10}},\n\t{\"vm.nkmempages\", []_C_int{2, 6}},\n\t{\"vm.psstrings\", []_C_int{2, 3}},\n\t{\"vm.swapencrypt.enable\", []_C_int{2, 5, 0}},\n\t{\"vm.swapencrypt.keyscreated\", []_C_int{2, 5, 1}},\n\t{\"vm.swapencrypt.keysdeleted\", []_C_int{2, 5, 2}},\n\t{\"vm.uspace\", []_C_int{2, 11}},\n\t{\"vm.uvmexp\", []_C_int{2, 4}},\n\t{\"vm.vmmeter\", []_C_int{2, 1}},\n\t{\"vm.vnodemin\", []_C_int{2, 9}},\n\t{\"vm.vtextmin\", []_C_int{2, 8}},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go",
    "content": "// go run mksysnum.go https://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,dragonfly\n\npackage unix\n\nconst (\n\t// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int\n\tSYS_EXIT          = 1   // { void exit(int rval); }\n\tSYS_FORK          = 2   // { int fork(void); }\n\tSYS_READ          = 3   // { ssize_t read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE         = 4   // { ssize_t write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN          = 5   // { int open(char *path, int flags, int mode); }\n\tSYS_CLOSE         = 6   // { int close(int fd); }\n\tSYS_WAIT4         = 7   // { int wait4(int pid, int *status, int options, struct rusage *rusage); } wait4 wait_args int\n\tSYS_LINK          = 9   // { int link(char *path, char *link); }\n\tSYS_UNLINK        = 10  // { int unlink(char *path); }\n\tSYS_CHDIR         = 12  // { int chdir(char *path); }\n\tSYS_FCHDIR        = 13  // { int fchdir(int fd); }\n\tSYS_MKNOD         = 14  // { int mknod(char *path, int mode, int dev); }\n\tSYS_CHMOD         = 15  // { int chmod(char *path, int mode); }\n\tSYS_CHOWN         = 16  // { int chown(char *path, int uid, int gid); }\n\tSYS_OBREAK        = 17  // { int obreak(char *nsize); } break obreak_args int\n\tSYS_GETFSSTAT     = 18  // { int getfsstat(struct statfs *buf, long bufsize, int flags); }\n\tSYS_GETPID        = 20  // { pid_t getpid(void); }\n\tSYS_MOUNT         = 21  // { int mount(char *type, char *path, int flags, caddr_t data); }\n\tSYS_UNMOUNT       = 22  // { int unmount(char *path, int flags); }\n\tSYS_SETUID        = 23  // { int setuid(uid_t uid); }\n\tSYS_GETUID        = 24  // { uid_t getuid(void); }\n\tSYS_GETEUID       = 25  // { uid_t geteuid(void); }\n\tSYS_PTRACE        = 26  // { int ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG       = 27  // { int recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG       = 28  // { int sendmsg(int s, caddr_t msg, int flags); }\n\tSYS_RECVFROM      = 29  // { int recvfrom(int s, caddr_t buf, size_t len, int flags, caddr_t from, int *fromlenaddr); }\n\tSYS_ACCEPT        = 30  // { int accept(int s, caddr_t name, int *anamelen); }\n\tSYS_GETPEERNAME   = 31  // { int getpeername(int fdes, caddr_t asa, int *alen); }\n\tSYS_GETSOCKNAME   = 32  // { int getsockname(int fdes, caddr_t asa, int *alen); }\n\tSYS_ACCESS        = 33  // { int access(char *path, int flags); }\n\tSYS_CHFLAGS       = 34  // { int chflags(char *path, int flags); }\n\tSYS_FCHFLAGS      = 35  // { int fchflags(int fd, int flags); }\n\tSYS_SYNC          = 36  // { int sync(void); }\n\tSYS_KILL          = 37  // { int kill(int pid, int signum); }\n\tSYS_GETPPID       = 39  // { pid_t getppid(void); }\n\tSYS_DUP           = 41  // { int dup(int fd); }\n\tSYS_PIPE          = 42  // { int pipe(void); }\n\tSYS_GETEGID       = 43  // { gid_t getegid(void); }\n\tSYS_PROFIL        = 44  // { int profil(caddr_t samples, size_t size, size_t offset, u_int scale); }\n\tSYS_KTRACE        = 45  // { int ktrace(const char *fname, int ops, int facs, int pid); }\n\tSYS_GETGID        = 47  // { gid_t getgid(void); }\n\tSYS_GETLOGIN      = 49  // { int getlogin(char *namebuf, u_int namelen); }\n\tSYS_SETLOGIN      = 50  // { int setlogin(char *namebuf); }\n\tSYS_ACCT          = 51  // { int acct(char *path); }\n\tSYS_SIGALTSTACK   = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }\n\tSYS_IOCTL         = 54  // { int ioctl(int fd, u_long com, caddr_t data); }\n\tSYS_REBOOT        = 55  // { int reboot(int opt); }\n\tSYS_REVOKE        = 56  // { int revoke(char *path); }\n\tSYS_SYMLINK       = 57  // { int symlink(char *path, char *link); }\n\tSYS_READLINK      = 58  // { int readlink(char *path, char *buf, int count); }\n\tSYS_EXECVE        = 59  // { int execve(char *fname, char **argv, char **envv); }\n\tSYS_UMASK         = 60  // { int umask(int newmask); } umask umask_args int\n\tSYS_CHROOT        = 61  // { int chroot(char *path); }\n\tSYS_MSYNC         = 65  // { int msync(void *addr, size_t len, int flags); }\n\tSYS_VFORK         = 66  // { pid_t vfork(void); }\n\tSYS_SBRK          = 69  // { int sbrk(int incr); }\n\tSYS_SSTK          = 70  // { int sstk(int incr); }\n\tSYS_MUNMAP        = 73  // { int munmap(void *addr, size_t len); }\n\tSYS_MPROTECT      = 74  // { int mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE       = 75  // { int madvise(void *addr, size_t len, int behav); }\n\tSYS_MINCORE       = 78  // { int mincore(const void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS     = 79  // { int getgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS     = 80  // { int setgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_GETPGRP       = 81  // { int getpgrp(void); }\n\tSYS_SETPGID       = 82  // { int setpgid(int pid, int pgid); }\n\tSYS_SETITIMER     = 83  // { int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_SWAPON        = 85  // { int swapon(char *name); }\n\tSYS_GETITIMER     = 86  // { int getitimer(u_int which, struct itimerval *itv); }\n\tSYS_GETDTABLESIZE = 89  // { int getdtablesize(void); }\n\tSYS_DUP2          = 90  // { int dup2(int from, int to); }\n\tSYS_FCNTL         = 92  // { int fcntl(int fd, int cmd, long arg); }\n\tSYS_SELECT        = 93  // { int select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_FSYNC         = 95  // { int fsync(int fd); }\n\tSYS_SETPRIORITY   = 96  // { int setpriority(int which, int who, int prio); }\n\tSYS_SOCKET        = 97  // { int socket(int domain, int type, int protocol); }\n\tSYS_CONNECT       = 98  // { int connect(int s, caddr_t name, int namelen); }\n\tSYS_GETPRIORITY   = 100 // { int getpriority(int which, int who); }\n\tSYS_BIND          = 104 // { int bind(int s, caddr_t name, int namelen); }\n\tSYS_SETSOCKOPT    = 105 // { int setsockopt(int s, int level, int name, caddr_t val, int valsize); }\n\tSYS_LISTEN        = 106 // { int listen(int s, int backlog); }\n\tSYS_GETTIMEOFDAY  = 116 // { int gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_GETRUSAGE     = 117 // { int getrusage(int who, struct rusage *rusage); }\n\tSYS_GETSOCKOPT    = 118 // { int getsockopt(int s, int level, int name, caddr_t val, int *avalsize); }\n\tSYS_READV         = 120 // { int readv(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_WRITEV        = 121 // { int writev(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_SETTIMEOFDAY  = 122 // { int settimeofday(struct timeval *tv, struct timezone *tzp); }\n\tSYS_FCHOWN        = 123 // { int fchown(int fd, int uid, int gid); }\n\tSYS_FCHMOD        = 124 // { int fchmod(int fd, int mode); }\n\tSYS_SETREUID      = 126 // { int setreuid(int ruid, int euid); }\n\tSYS_SETREGID      = 127 // { int setregid(int rgid, int egid); }\n\tSYS_RENAME        = 128 // { int rename(char *from, char *to); }\n\tSYS_FLOCK         = 131 // { int flock(int fd, int how); }\n\tSYS_MKFIFO        = 132 // { int mkfifo(char *path, int mode); }\n\tSYS_SENDTO        = 133 // { int sendto(int s, caddr_t buf, size_t len, int flags, caddr_t to, int tolen); }\n\tSYS_SHUTDOWN      = 134 // { int shutdown(int s, int how); }\n\tSYS_SOCKETPAIR    = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR         = 136 // { int mkdir(char *path, int mode); }\n\tSYS_RMDIR         = 137 // { int rmdir(char *path); }\n\tSYS_UTIMES        = 138 // { int utimes(char *path, struct timeval *tptr); }\n\tSYS_ADJTIME       = 140 // { int adjtime(struct timeval *delta, struct timeval *olddelta); }\n\tSYS_SETSID        = 147 // { int setsid(void); }\n\tSYS_QUOTACTL      = 148 // { int quotactl(char *path, int cmd, int uid, caddr_t arg); }\n\tSYS_STATFS        = 157 // { int statfs(char *path, struct statfs *buf); }\n\tSYS_FSTATFS       = 158 // { int fstatfs(int fd, struct statfs *buf); }\n\tSYS_GETFH         = 161 // { int getfh(char *fname, struct fhandle *fhp); }\n\tSYS_GETDOMAINNAME = 162 // { int getdomainname(char *domainname, int len); }\n\tSYS_SETDOMAINNAME = 163 // { int setdomainname(char *domainname, int len); }\n\tSYS_UNAME         = 164 // { int uname(struct utsname *name); }\n\tSYS_SYSARCH       = 165 // { int sysarch(int op, char *parms); }\n\tSYS_RTPRIO        = 166 // { int rtprio(int function, pid_t pid, struct rtprio *rtp); }\n\tSYS_EXTPREAD      = 173 // { ssize_t extpread(int fd, void *buf, size_t nbyte, int flags, off_t offset); }\n\tSYS_EXTPWRITE     = 174 // { ssize_t extpwrite(int fd, const void *buf, size_t nbyte, int flags, off_t offset); }\n\tSYS_NTP_ADJTIME   = 176 // { int ntp_adjtime(struct timex *tp); }\n\tSYS_SETGID        = 181 // { int setgid(gid_t gid); }\n\tSYS_SETEGID       = 182 // { int setegid(gid_t egid); }\n\tSYS_SETEUID       = 183 // { int seteuid(uid_t euid); }\n\tSYS_PATHCONF      = 191 // { int pathconf(char *path, int name); }\n\tSYS_FPATHCONF     = 192 // { int fpathconf(int fd, int name); }\n\tSYS_GETRLIMIT     = 194 // { int getrlimit(u_int which, struct rlimit *rlp); } getrlimit __getrlimit_args int\n\tSYS_SETRLIMIT     = 195 // { int setrlimit(u_int which, struct rlimit *rlp); } setrlimit __setrlimit_args int\n\tSYS_MMAP          = 197 // { caddr_t mmap(caddr_t addr, size_t len, int prot, int flags, int fd, int pad, off_t pos); }\n\t// SYS_NOSYS = 198;  // { int nosys(void); } __syscall __syscall_args int\n\tSYS_LSEEK                  = 199 // { off_t lseek(int fd, int pad, off_t offset, int whence); }\n\tSYS_TRUNCATE               = 200 // { int truncate(char *path, int pad, off_t length); }\n\tSYS_FTRUNCATE              = 201 // { int ftruncate(int fd, int pad, off_t length); }\n\tSYS___SYSCTL               = 202 // { int __sysctl(int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); } __sysctl sysctl_args int\n\tSYS_MLOCK                  = 203 // { int mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK                = 204 // { int munlock(const void *addr, size_t len); }\n\tSYS_UNDELETE               = 205 // { int undelete(char *path); }\n\tSYS_FUTIMES                = 206 // { int futimes(int fd, struct timeval *tptr); }\n\tSYS_GETPGID                = 207 // { int getpgid(pid_t pid); }\n\tSYS_POLL                   = 209 // { int poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS___SEMCTL               = 220 // { int __semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_SEMGET                 = 221 // { int semget(key_t key, int nsems, int semflg); }\n\tSYS_SEMOP                  = 222 // { int semop(int semid, struct sembuf *sops, u_int nsops); }\n\tSYS_MSGCTL                 = 224 // { int msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_MSGGET                 = 225 // { int msgget(key_t key, int msgflg); }\n\tSYS_MSGSND                 = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV                 = 227 // { int msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT                  = 228 // { caddr_t shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMCTL                 = 229 // { int shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_SHMDT                  = 230 // { int shmdt(const void *shmaddr); }\n\tSYS_SHMGET                 = 231 // { int shmget(key_t key, size_t size, int shmflg); }\n\tSYS_CLOCK_GETTIME          = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME          = 233 // { int clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES           = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_NANOSLEEP              = 240 // { int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_MINHERIT               = 250 // { int minherit(void *addr, size_t len, int inherit); }\n\tSYS_RFORK                  = 251 // { int rfork(int flags); }\n\tSYS_OPENBSD_POLL           = 252 // { int openbsd_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID              = 253 // { int issetugid(void); }\n\tSYS_LCHOWN                 = 254 // { int lchown(char *path, int uid, int gid); }\n\tSYS_LCHMOD                 = 274 // { int lchmod(char *path, mode_t mode); }\n\tSYS_LUTIMES                = 276 // { int lutimes(char *path, struct timeval *tptr); }\n\tSYS_EXTPREADV              = 289 // { ssize_t extpreadv(int fd, struct iovec *iovp, u_int iovcnt, int flags, off_t offset); }\n\tSYS_EXTPWRITEV             = 290 // { ssize_t extpwritev(int fd, struct iovec *iovp,u_int iovcnt, int flags, off_t offset); }\n\tSYS_FHSTATFS               = 297 // { int fhstatfs(const struct fhandle *u_fhp, struct statfs *buf); }\n\tSYS_FHOPEN                 = 298 // { int fhopen(const struct fhandle *u_fhp, int flags); }\n\tSYS_MODNEXT                = 300 // { int modnext(int modid); }\n\tSYS_MODSTAT                = 301 // { int modstat(int modid, struct module_stat* stat); }\n\tSYS_MODFNEXT               = 302 // { int modfnext(int modid); }\n\tSYS_MODFIND                = 303 // { int modfind(const char *name); }\n\tSYS_KLDLOAD                = 304 // { int kldload(const char *file); }\n\tSYS_KLDUNLOAD              = 305 // { int kldunload(int fileid); }\n\tSYS_KLDFIND                = 306 // { int kldfind(const char *file); }\n\tSYS_KLDNEXT                = 307 // { int kldnext(int fileid); }\n\tSYS_KLDSTAT                = 308 // { int kldstat(int fileid, struct kld_file_stat* stat); }\n\tSYS_KLDFIRSTMOD            = 309 // { int kldfirstmod(int fileid); }\n\tSYS_GETSID                 = 310 // { int getsid(pid_t pid); }\n\tSYS_SETRESUID              = 311 // { int setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_SETRESGID              = 312 // { int setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_AIO_RETURN             = 314 // { int aio_return(struct aiocb *aiocbp); }\n\tSYS_AIO_SUSPEND            = 315 // { int aio_suspend(struct aiocb * const * aiocbp, int nent, const struct timespec *timeout); }\n\tSYS_AIO_CANCEL             = 316 // { int aio_cancel(int fd, struct aiocb *aiocbp); }\n\tSYS_AIO_ERROR              = 317 // { int aio_error(struct aiocb *aiocbp); }\n\tSYS_AIO_READ               = 318 // { int aio_read(struct aiocb *aiocbp); }\n\tSYS_AIO_WRITE              = 319 // { int aio_write(struct aiocb *aiocbp); }\n\tSYS_LIO_LISTIO             = 320 // { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }\n\tSYS_YIELD                  = 321 // { int yield(void); }\n\tSYS_MLOCKALL               = 324 // { int mlockall(int how); }\n\tSYS_MUNLOCKALL             = 325 // { int munlockall(void); }\n\tSYS___GETCWD               = 326 // { int __getcwd(u_char *buf, u_int buflen); }\n\tSYS_SCHED_SETPARAM         = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }\n\tSYS_SCHED_GETPARAM         = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }\n\tSYS_SCHED_SETSCHEDULER     = 329 // { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }\n\tSYS_SCHED_GETSCHEDULER     = 330 // { int sched_getscheduler (pid_t pid); }\n\tSYS_SCHED_YIELD            = 331 // { int sched_yield (void); }\n\tSYS_SCHED_GET_PRIORITY_MAX = 332 // { int sched_get_priority_max (int policy); }\n\tSYS_SCHED_GET_PRIORITY_MIN = 333 // { int sched_get_priority_min (int policy); }\n\tSYS_SCHED_RR_GET_INTERVAL  = 334 // { int sched_rr_get_interval (pid_t pid, struct timespec *interval); }\n\tSYS_UTRACE                 = 335 // { int utrace(const void *addr, size_t len); }\n\tSYS_KLDSYM                 = 337 // { int kldsym(int fileid, int cmd, void *data); }\n\tSYS_JAIL                   = 338 // { int jail(struct jail *jail); }\n\tSYS_SIGPROCMASK            = 340 // { int sigprocmask(int how, const sigset_t *set, sigset_t *oset); }\n\tSYS_SIGSUSPEND             = 341 // { int sigsuspend(const sigset_t *sigmask); }\n\tSYS_SIGACTION              = 342 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }\n\tSYS_SIGPENDING             = 343 // { int sigpending(sigset_t *set); }\n\tSYS_SIGRETURN              = 344 // { int sigreturn(ucontext_t *sigcntxp); }\n\tSYS_SIGTIMEDWAIT           = 345 // { int sigtimedwait(const sigset_t *set,siginfo_t *info, const struct timespec *timeout); }\n\tSYS_SIGWAITINFO            = 346 // { int sigwaitinfo(const sigset_t *set,siginfo_t *info); }\n\tSYS___ACL_GET_FILE         = 347 // { int __acl_get_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FILE         = 348 // { int __acl_set_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_GET_FD           = 349 // { int __acl_get_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FD           = 350 // { int __acl_set_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_DELETE_FILE      = 351 // { int __acl_delete_file(const char *path, acl_type_t type); }\n\tSYS___ACL_DELETE_FD        = 352 // { int __acl_delete_fd(int filedes, acl_type_t type); }\n\tSYS___ACL_ACLCHECK_FILE    = 353 // { int __acl_aclcheck_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_ACLCHECK_FD      = 354 // { int __acl_aclcheck_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS_EXTATTRCTL             = 355 // { int extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FILE       = 356 // { int extattr_set_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FILE       = 357 // { int extattr_get_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FILE    = 358 // { int extattr_delete_file(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_AIO_WAITCOMPLETE       = 359 // { int aio_waitcomplete(struct aiocb **aiocbp, struct timespec *timeout); }\n\tSYS_GETRESUID              = 360 // { int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_GETRESGID              = 361 // { int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_KQUEUE                 = 362 // { int kqueue(void); }\n\tSYS_KEVENT                 = 363 // { int kevent(int fd, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_KENV                   = 390 // { int kenv(int what, const char *name, char *value, int len); }\n\tSYS_LCHFLAGS               = 391 // { int lchflags(char *path, int flags); }\n\tSYS_UUIDGEN                = 392 // { int uuidgen(struct uuid *store, int count); }\n\tSYS_SENDFILE               = 393 // { int sendfile(int fd, int s, off_t offset, size_t nbytes, struct sf_hdtr *hdtr, off_t *sbytes, int flags); }\n\tSYS_VARSYM_SET             = 450 // { int varsym_set(int level, const char *name, const char *data); }\n\tSYS_VARSYM_GET             = 451 // { int varsym_get(int mask, const char *wild, char *buf, int bufsize); }\n\tSYS_VARSYM_LIST            = 452 // { int varsym_list(int level, char *buf, int maxsize, int *marker); }\n\tSYS_EXEC_SYS_REGISTER      = 465 // { int exec_sys_register(void *entry); }\n\tSYS_EXEC_SYS_UNREGISTER    = 466 // { int exec_sys_unregister(int id); }\n\tSYS_SYS_CHECKPOINT         = 467 // { int sys_checkpoint(int type, int fd, pid_t pid, int retval); }\n\tSYS_MOUNTCTL               = 468 // { int mountctl(const char *path, int op, int fd, const void *ctl, int ctllen, void *buf, int buflen); }\n\tSYS_UMTX_SLEEP             = 469 // { int umtx_sleep(volatile const int *ptr, int value, int timeout); }\n\tSYS_UMTX_WAKEUP            = 470 // { int umtx_wakeup(volatile const int *ptr, int count); }\n\tSYS_JAIL_ATTACH            = 471 // { int jail_attach(int jid); }\n\tSYS_SET_TLS_AREA           = 472 // { int set_tls_area(int which, struct tls_info *info, size_t infosize); }\n\tSYS_GET_TLS_AREA           = 473 // { int get_tls_area(int which, struct tls_info *info, size_t infosize); }\n\tSYS_CLOSEFROM              = 474 // { int closefrom(int fd); }\n\tSYS_STAT                   = 475 // { int stat(const char *path, struct stat *ub); }\n\tSYS_FSTAT                  = 476 // { int fstat(int fd, struct stat *sb); }\n\tSYS_LSTAT                  = 477 // { int lstat(const char *path, struct stat *ub); }\n\tSYS_FHSTAT                 = 478 // { int fhstat(const struct fhandle *u_fhp, struct stat *sb); }\n\tSYS_GETDIRENTRIES          = 479 // { int getdirentries(int fd, char *buf, u_int count, long *basep); }\n\tSYS_GETDENTS               = 480 // { int getdents(int fd, char *buf, size_t count); }\n\tSYS_USCHED_SET             = 481 // { int usched_set(pid_t pid, int cmd, void *data, int bytes); }\n\tSYS_EXTACCEPT              = 482 // { int extaccept(int s, int flags, caddr_t name, int *anamelen); }\n\tSYS_EXTCONNECT             = 483 // { int extconnect(int s, int flags, caddr_t name, int namelen); }\n\tSYS_MCONTROL               = 485 // { int mcontrol(void *addr, size_t len, int behav, off_t value); }\n\tSYS_VMSPACE_CREATE         = 486 // { int vmspace_create(void *id, int type, void *data); }\n\tSYS_VMSPACE_DESTROY        = 487 // { int vmspace_destroy(void *id); }\n\tSYS_VMSPACE_CTL            = 488 // { int vmspace_ctl(void *id, int cmd, \t\tstruct trapframe *tframe,\tstruct vextframe *vframe); }\n\tSYS_VMSPACE_MMAP           = 489 // { int vmspace_mmap(void *id, void *addr, size_t len, int prot, int flags, int fd, off_t offset); }\n\tSYS_VMSPACE_MUNMAP         = 490 // { int vmspace_munmap(void *id, void *addr,\tsize_t len); }\n\tSYS_VMSPACE_MCONTROL       = 491 // { int vmspace_mcontrol(void *id, void *addr, \tsize_t len, int behav, off_t value); }\n\tSYS_VMSPACE_PREAD          = 492 // { ssize_t vmspace_pread(void *id, void *buf, size_t nbyte, int flags, off_t offset); }\n\tSYS_VMSPACE_PWRITE         = 493 // { ssize_t vmspace_pwrite(void *id, const void *buf, size_t nbyte, int flags, off_t offset); }\n\tSYS_EXTEXIT                = 494 // { void extexit(int how, int status, void *addr); }\n\tSYS_LWP_CREATE             = 495 // { int lwp_create(struct lwp_params *params); }\n\tSYS_LWP_GETTID             = 496 // { lwpid_t lwp_gettid(void); }\n\tSYS_LWP_KILL               = 497 // { int lwp_kill(pid_t pid, lwpid_t tid, int signum); }\n\tSYS_LWP_RTPRIO             = 498 // { int lwp_rtprio(int function, pid_t pid, lwpid_t tid, struct rtprio *rtp); }\n\tSYS_PSELECT                = 499 // { int pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts,    const sigset_t *sigmask); }\n\tSYS_STATVFS                = 500 // { int statvfs(const char *path, struct statvfs *buf); }\n\tSYS_FSTATVFS               = 501 // { int fstatvfs(int fd, struct statvfs *buf); }\n\tSYS_FHSTATVFS              = 502 // { int fhstatvfs(const struct fhandle *u_fhp, struct statvfs *buf); }\n\tSYS_GETVFSSTAT             = 503 // { int getvfsstat(struct statfs *buf,          struct statvfs *vbuf, long vbufsize, int flags); }\n\tSYS_OPENAT                 = 504 // { int openat(int fd, char *path, int flags, int mode); }\n\tSYS_FSTATAT                = 505 // { int fstatat(int fd, char *path, \tstruct stat *sb, int flags); }\n\tSYS_FCHMODAT               = 506 // { int fchmodat(int fd, char *path, int mode, int flags); }\n\tSYS_FCHOWNAT               = 507 // { int fchownat(int fd, char *path, int uid, int gid, int flags); }\n\tSYS_UNLINKAT               = 508 // { int unlinkat(int fd, char *path, int flags); }\n\tSYS_FACCESSAT              = 509 // { int faccessat(int fd, char *path, int amode, int flags); }\n\tSYS_MQ_OPEN                = 510 // { mqd_t mq_open(const char * name, int oflag, mode_t mode, struct mq_attr *attr); }\n\tSYS_MQ_CLOSE               = 511 // { int mq_close(mqd_t mqdes); }\n\tSYS_MQ_UNLINK              = 512 // { int mq_unlink(const char *name); }\n\tSYS_MQ_GETATTR             = 513 // { int mq_getattr(mqd_t mqdes, struct mq_attr *mqstat); }\n\tSYS_MQ_SETATTR             = 514 // { int mq_setattr(mqd_t mqdes, const struct mq_attr *mqstat, struct mq_attr *omqstat); }\n\tSYS_MQ_NOTIFY              = 515 // { int mq_notify(mqd_t mqdes, const struct sigevent *notification); }\n\tSYS_MQ_SEND                = 516 // { int mq_send(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio); }\n\tSYS_MQ_RECEIVE             = 517 // { ssize_t mq_receive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned *msg_prio); }\n\tSYS_MQ_TIMEDSEND           = 518 // { int mq_timedsend(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio, const struct timespec *abs_timeout); }\n\tSYS_MQ_TIMEDRECEIVE        = 519 // { ssize_t mq_timedreceive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned *msg_prio, const struct timespec *abs_timeout); }\n\tSYS_IOPRIO_SET             = 520 // { int ioprio_set(int which, int who, int prio); }\n\tSYS_IOPRIO_GET             = 521 // { int ioprio_get(int which, int who); }\n\tSYS_CHROOT_KERNEL          = 522 // { int chroot_kernel(char *path); }\n\tSYS_RENAMEAT               = 523 // { int renameat(int oldfd, char *old, int newfd, char *new); }\n\tSYS_MKDIRAT                = 524 // { int mkdirat(int fd, char *path, mode_t mode); }\n\tSYS_MKFIFOAT               = 525 // { int mkfifoat(int fd, char *path, mode_t mode); }\n\tSYS_MKNODAT                = 526 // { int mknodat(int fd, char *path, mode_t mode, dev_t dev); }\n\tSYS_READLINKAT             = 527 // { int readlinkat(int fd, char *path, char *buf, size_t bufsize); }\n\tSYS_SYMLINKAT              = 528 // { int symlinkat(char *path1, int fd, char *path2); }\n\tSYS_SWAPOFF                = 529 // { int swapoff(char *name); }\n\tSYS_VQUOTACTL              = 530 // { int vquotactl(const char *path, struct plistref *pref); }\n\tSYS_LINKAT                 = 531 // { int linkat(int fd1, char *path1, int fd2, char *path2, int flags); }\n\tSYS_EACCESS                = 532 // { int eaccess(char *path, int flags); }\n\tSYS_LPATHCONF              = 533 // { int lpathconf(char *path, int name); }\n\tSYS_VMM_GUEST_CTL          = 534 // { int vmm_guest_ctl(int op, struct vmm_guest_options *options); }\n\tSYS_VMM_GUEST_SYNC_ADDR    = 535 // { int vmm_guest_sync_addr(long *dstaddr, long *srcaddr); }\n\tSYS_PROCCTL                = 536 // { int procctl(idtype_t idtype, id_t id, int cmd, void *data); }\n\tSYS_CHFLAGSAT              = 537 // { int chflagsat(int fd, const char *path, int flags, int atflags);}\n\tSYS_PIPE2                  = 538 // { int pipe2(int *fildes, int flags); }\n\tSYS_UTIMENSAT              = 539 // { int utimensat(int fd, const char *path, const struct timespec *ts, int flags); }\n\tSYS_FUTIMENS               = 540 // { int futimens(int fd, const struct timespec *ts); }\n\tSYS_ACCEPT4                = 541 // { int accept4(int s, caddr_t name, int *anamelen, int flags); }\n\tSYS_LWP_SETNAME            = 542 // { int lwp_setname(lwpid_t tid, const char *name); }\n\tSYS_PPOLL                  = 543 // { int ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *sigmask); }\n\tSYS_LWP_SETAFFINITY        = 544 // { int lwp_setaffinity(pid_t pid, lwpid_t tid, const cpumask_t *mask); }\n\tSYS_LWP_GETAFFINITY        = 545 // { int lwp_getaffinity(pid_t pid, lwpid_t tid, cpumask_t *mask); }\n\tSYS_LWP_CREATE2            = 546 // { int lwp_create2(struct lwp_params *params, const cpumask_t *mask); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go",
    "content": "// go run mksysnum.go https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,freebsd\n\npackage unix\n\nconst (\n\t// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int\n\tSYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void\n\tSYS_FORK                     = 2   // { int fork(void); }\n\tSYS_READ                     = 3   // { ssize_t read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE                    = 4   // { ssize_t write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN                     = 5   // { int open(char *path, int flags, int mode); }\n\tSYS_CLOSE                    = 6   // { int close(int fd); }\n\tSYS_WAIT4                    = 7   // { int wait4(int pid, int *status, int options, struct rusage *rusage); }\n\tSYS_LINK                     = 9   // { int link(char *path, char *link); }\n\tSYS_UNLINK                   = 10  // { int unlink(char *path); }\n\tSYS_CHDIR                    = 12  // { int chdir(char *path); }\n\tSYS_FCHDIR                   = 13  // { int fchdir(int fd); }\n\tSYS_MKNOD                    = 14  // { int mknod(char *path, int mode, int dev); }\n\tSYS_CHMOD                    = 15  // { int chmod(char *path, int mode); }\n\tSYS_CHOWN                    = 16  // { int chown(char *path, int uid, int gid); }\n\tSYS_OBREAK                   = 17  // { int obreak(char *nsize); } break obreak_args int\n\tSYS_GETPID                   = 20  // { pid_t getpid(void); }\n\tSYS_MOUNT                    = 21  // { int mount(char *type, char *path, int flags, caddr_t data); }\n\tSYS_UNMOUNT                  = 22  // { int unmount(char *path, int flags); }\n\tSYS_SETUID                   = 23  // { int setuid(uid_t uid); }\n\tSYS_GETUID                   = 24  // { uid_t getuid(void); }\n\tSYS_GETEUID                  = 25  // { uid_t geteuid(void); }\n\tSYS_PTRACE                   = 26  // { int ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG                  = 27  // { int recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG                  = 28  // { int sendmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_RECVFROM                 = 29  // { int recvfrom(int s, caddr_t buf, size_t len, int flags, struct sockaddr * __restrict from, __socklen_t * __restrict fromlenaddr); }\n\tSYS_ACCEPT                   = 30  // { int accept(int s, struct sockaddr * __restrict name, __socklen_t * __restrict anamelen); }\n\tSYS_GETPEERNAME              = 31  // { int getpeername(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }\n\tSYS_GETSOCKNAME              = 32  // { int getsockname(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }\n\tSYS_ACCESS                   = 33  // { int access(char *path, int amode); }\n\tSYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }\n\tSYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }\n\tSYS_SYNC                     = 36  // { int sync(void); }\n\tSYS_KILL                     = 37  // { int kill(int pid, int signum); }\n\tSYS_GETPPID                  = 39  // { pid_t getppid(void); }\n\tSYS_DUP                      = 41  // { int dup(u_int fd); }\n\tSYS_PIPE                     = 42  // { int pipe(void); }\n\tSYS_GETEGID                  = 43  // { gid_t getegid(void); }\n\tSYS_PROFIL                   = 44  // { int profil(caddr_t samples, size_t size, size_t offset, u_int scale); }\n\tSYS_KTRACE                   = 45  // { int ktrace(const char *fname, int ops, int facs, int pid); }\n\tSYS_GETGID                   = 47  // { gid_t getgid(void); }\n\tSYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int namelen); }\n\tSYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }\n\tSYS_ACCT                     = 51  // { int acct(char *path); }\n\tSYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }\n\tSYS_IOCTL                    = 54  // { int ioctl(int fd, u_long com, caddr_t data); }\n\tSYS_REBOOT                   = 55  // { int reboot(int opt); }\n\tSYS_REVOKE                   = 56  // { int revoke(char *path); }\n\tSYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }\n\tSYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, size_t count); }\n\tSYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, char **envv); }\n\tSYS_UMASK                    = 60  // { int umask(int newmask); } umask umask_args int\n\tSYS_CHROOT                   = 61  // { int chroot(char *path); }\n\tSYS_MSYNC                    = 65  // { int msync(void *addr, size_t len, int flags); }\n\tSYS_VFORK                    = 66  // { int vfork(void); }\n\tSYS_SBRK                     = 69  // { int sbrk(int incr); }\n\tSYS_SSTK                     = 70  // { int sstk(int incr); }\n\tSYS_OVADVISE                 = 72  // { int ovadvise(int anom); } vadvise ovadvise_args int\n\tSYS_MUNMAP                   = 73  // { int munmap(void *addr, size_t len); }\n\tSYS_MPROTECT                 = 74  // { int mprotect(const void *addr, size_t len, int prot); }\n\tSYS_MADVISE                  = 75  // { int madvise(void *addr, size_t len, int behav); }\n\tSYS_MINCORE                  = 78  // { int mincore(const void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS                = 79  // { int getgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS                = 80  // { int setgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_GETPGRP                  = 81  // { int getpgrp(void); }\n\tSYS_SETPGID                  = 82  // { int setpgid(int pid, int pgid); }\n\tSYS_SETITIMER                = 83  // { int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_SWAPON                   = 85  // { int swapon(char *name); }\n\tSYS_GETITIMER                = 86  // { int getitimer(u_int which, struct itimerval *itv); }\n\tSYS_GETDTABLESIZE            = 89  // { int getdtablesize(void); }\n\tSYS_DUP2                     = 90  // { int dup2(u_int from, u_int to); }\n\tSYS_FCNTL                    = 92  // { int fcntl(int fd, int cmd, long arg); }\n\tSYS_SELECT                   = 93  // { int select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_FSYNC                    = 95  // { int fsync(int fd); }\n\tSYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }\n\tSYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }\n\tSYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }\n\tSYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }\n\tSYS_BIND                     = 104 // { int bind(int s, caddr_t name, int namelen); }\n\tSYS_SETSOCKOPT               = 105 // { int setsockopt(int s, int level, int name, caddr_t val, int valsize); }\n\tSYS_LISTEN                   = 106 // { int listen(int s, int backlog); }\n\tSYS_GETTIMEOFDAY             = 116 // { int gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_GETRUSAGE                = 117 // { int getrusage(int who, struct rusage *rusage); }\n\tSYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, caddr_t val, int *avalsize); }\n\tSYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, struct timezone *tzp); }\n\tSYS_FCHOWN                   = 123 // { int fchown(int fd, int uid, int gid); }\n\tSYS_FCHMOD                   = 124 // { int fchmod(int fd, int mode); }\n\tSYS_SETREUID                 = 126 // { int setreuid(int ruid, int euid); }\n\tSYS_SETREGID                 = 127 // { int setregid(int rgid, int egid); }\n\tSYS_RENAME                   = 128 // { int rename(char *from, char *to); }\n\tSYS_FLOCK                    = 131 // { int flock(int fd, int how); }\n\tSYS_MKFIFO                   = 132 // { int mkfifo(char *path, int mode); }\n\tSYS_SENDTO                   = 133 // { int sendto(int s, caddr_t buf, size_t len, int flags, caddr_t to, int tolen); }\n\tSYS_SHUTDOWN                 = 134 // { int shutdown(int s, int how); }\n\tSYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }\n\tSYS_RMDIR                    = 137 // { int rmdir(char *path); }\n\tSYS_UTIMES                   = 138 // { int utimes(char *path, struct timeval *tptr); }\n\tSYS_ADJTIME                  = 140 // { int adjtime(struct timeval *delta, struct timeval *olddelta); }\n\tSYS_SETSID                   = 147 // { int setsid(void); }\n\tSYS_QUOTACTL                 = 148 // { int quotactl(char *path, int cmd, int uid, caddr_t arg); }\n\tSYS_NLM_SYSCALL              = 154 // { int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }\n\tSYS_NFSSVC                   = 155 // { int nfssvc(int flag, caddr_t argp); }\n\tSYS_LGETFH                   = 160 // { int lgetfh(char *fname, struct fhandle *fhp); }\n\tSYS_GETFH                    = 161 // { int getfh(char *fname, struct fhandle *fhp); }\n\tSYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }\n\tSYS_RTPRIO                   = 166 // { int rtprio(int function, pid_t pid, struct rtprio *rtp); }\n\tSYS_SEMSYS                   = 169 // { int semsys(int which, int a2, int a3, int a4, int a5); }\n\tSYS_MSGSYS                   = 170 // { int msgsys(int which, int a2, int a3, int a4, int a5, int a6); }\n\tSYS_SHMSYS                   = 171 // { int shmsys(int which, int a2, int a3, int a4); }\n\tSYS_SETFIB                   = 175 // { int setfib(int fibnum); }\n\tSYS_NTP_ADJTIME              = 176 // { int ntp_adjtime(struct timex *tp); }\n\tSYS_SETGID                   = 181 // { int setgid(gid_t gid); }\n\tSYS_SETEGID                  = 182 // { int setegid(gid_t egid); }\n\tSYS_SETEUID                  = 183 // { int seteuid(uid_t euid); }\n\tSYS_STAT                     = 188 // { int stat(char *path, struct stat *ub); }\n\tSYS_FSTAT                    = 189 // { int fstat(int fd, struct stat *sb); }\n\tSYS_LSTAT                    = 190 // { int lstat(char *path, struct stat *ub); }\n\tSYS_PATHCONF                 = 191 // { int pathconf(char *path, int name); }\n\tSYS_FPATHCONF                = 192 // { int fpathconf(int fd, int name); }\n\tSYS_GETRLIMIT                = 194 // { int getrlimit(u_int which, struct rlimit *rlp); } getrlimit __getrlimit_args int\n\tSYS_SETRLIMIT                = 195 // { int setrlimit(u_int which, struct rlimit *rlp); } setrlimit __setrlimit_args int\n\tSYS_GETDIRENTRIES            = 196 // { int getdirentries(int fd, char *buf, u_int count, long *basep); }\n\tSYS___SYSCTL                 = 202 // { int __sysctl(int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); } __sysctl sysctl_args int\n\tSYS_MLOCK                    = 203 // { int mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK                  = 204 // { int munlock(const void *addr, size_t len); }\n\tSYS_UNDELETE                 = 205 // { int undelete(char *path); }\n\tSYS_FUTIMES                  = 206 // { int futimes(int fd, struct timeval *tptr); }\n\tSYS_GETPGID                  = 207 // { int getpgid(pid_t pid); }\n\tSYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_SEMGET                   = 221 // { int semget(key_t key, int nsems, int semflg); }\n\tSYS_SEMOP                    = 222 // { int semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }\n\tSYS_MSGSND                   = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV                   = 227 // { int msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT                    = 228 // { int shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT                    = 230 // { int shmdt(const void *shmaddr); }\n\tSYS_SHMGET                   = 231 // { int shmget(key_t key, size_t size, int shmflg); }\n\tSYS_CLOCK_GETTIME            = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME            = 233 // { int clock_settime( clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES             = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_KTIMER_CREATE            = 235 // { int ktimer_create(clockid_t clock_id, struct sigevent *evp, int *timerid); }\n\tSYS_KTIMER_DELETE            = 236 // { int ktimer_delete(int timerid); }\n\tSYS_KTIMER_SETTIME           = 237 // { int ktimer_settime(int timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }\n\tSYS_KTIMER_GETTIME           = 238 // { int ktimer_gettime(int timerid, struct itimerspec *value); }\n\tSYS_KTIMER_GETOVERRUN        = 239 // { int ktimer_getoverrun(int timerid); }\n\tSYS_NANOSLEEP                = 240 // { int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_FFCLOCK_GETCOUNTER       = 241 // { int ffclock_getcounter(ffcounter *ffcount); }\n\tSYS_FFCLOCK_SETESTIMATE      = 242 // { int ffclock_setestimate( struct ffclock_estimate *cest); }\n\tSYS_FFCLOCK_GETESTIMATE      = 243 // { int ffclock_getestimate( struct ffclock_estimate *cest); }\n\tSYS_CLOCK_NANOSLEEP          = 244 // { int clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_CLOCK_GETCPUCLOCKID2     = 247 // { int clock_getcpuclockid2(id_t id,int which, clockid_t *clock_id); }\n\tSYS_NTP_GETTIME              = 248 // { int ntp_gettime(struct ntptimeval *ntvp); }\n\tSYS_MINHERIT                 = 250 // { int minherit(void *addr, size_t len, int inherit); }\n\tSYS_RFORK                    = 251 // { int rfork(int flags); }\n\tSYS_OPENBSD_POLL             = 252 // { int openbsd_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID                = 253 // { int issetugid(void); }\n\tSYS_LCHOWN                   = 254 // { int lchown(char *path, int uid, int gid); }\n\tSYS_AIO_READ                 = 255 // { int aio_read(struct aiocb *aiocbp); }\n\tSYS_AIO_WRITE                = 256 // { int aio_write(struct aiocb *aiocbp); }\n\tSYS_LIO_LISTIO               = 257 // { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }\n\tSYS_GETDENTS                 = 272 // { int getdents(int fd, char *buf, size_t count); }\n\tSYS_LCHMOD                   = 274 // { int lchmod(char *path, mode_t mode); }\n\tSYS_LUTIMES                  = 276 // { int lutimes(char *path, struct timeval *tptr); }\n\tSYS_NSTAT                    = 278 // { int nstat(char *path, struct nstat *ub); }\n\tSYS_NFSTAT                   = 279 // { int nfstat(int fd, struct nstat *sb); }\n\tSYS_NLSTAT                   = 280 // { int nlstat(char *path, struct nstat *ub); }\n\tSYS_PREADV                   = 289 // { ssize_t preadv(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }\n\tSYS_PWRITEV                  = 290 // { ssize_t pwritev(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }\n\tSYS_FHOPEN                   = 298 // { int fhopen(const struct fhandle *u_fhp, int flags); }\n\tSYS_FHSTAT                   = 299 // { int fhstat(const struct fhandle *u_fhp, struct stat *sb); }\n\tSYS_MODNEXT                  = 300 // { int modnext(int modid); }\n\tSYS_MODSTAT                  = 301 // { int modstat(int modid, struct module_stat *stat); }\n\tSYS_MODFNEXT                 = 302 // { int modfnext(int modid); }\n\tSYS_MODFIND                  = 303 // { int modfind(const char *name); }\n\tSYS_KLDLOAD                  = 304 // { int kldload(const char *file); }\n\tSYS_KLDUNLOAD                = 305 // { int kldunload(int fileid); }\n\tSYS_KLDFIND                  = 306 // { int kldfind(const char *file); }\n\tSYS_KLDNEXT                  = 307 // { int kldnext(int fileid); }\n\tSYS_KLDSTAT                  = 308 // { int kldstat(int fileid, struct kld_file_stat* stat); }\n\tSYS_KLDFIRSTMOD              = 309 // { int kldfirstmod(int fileid); }\n\tSYS_GETSID                   = 310 // { int getsid(pid_t pid); }\n\tSYS_SETRESUID                = 311 // { int setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_SETRESGID                = 312 // { int setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_AIO_RETURN               = 314 // { ssize_t aio_return(struct aiocb *aiocbp); }\n\tSYS_AIO_SUSPEND              = 315 // { int aio_suspend( struct aiocb * const * aiocbp, int nent, const struct timespec *timeout); }\n\tSYS_AIO_CANCEL               = 316 // { int aio_cancel(int fd, struct aiocb *aiocbp); }\n\tSYS_AIO_ERROR                = 317 // { int aio_error(struct aiocb *aiocbp); }\n\tSYS_YIELD                    = 321 // { int yield(void); }\n\tSYS_MLOCKALL                 = 324 // { int mlockall(int how); }\n\tSYS_MUNLOCKALL               = 325 // { int munlockall(void); }\n\tSYS___GETCWD                 = 326 // { int __getcwd(char *buf, u_int buflen); }\n\tSYS_SCHED_SETPARAM           = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }\n\tSYS_SCHED_GETPARAM           = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }\n\tSYS_SCHED_SETSCHEDULER       = 329 // { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }\n\tSYS_SCHED_GETSCHEDULER       = 330 // { int sched_getscheduler (pid_t pid); }\n\tSYS_SCHED_YIELD              = 331 // { int sched_yield (void); }\n\tSYS_SCHED_GET_PRIORITY_MAX   = 332 // { int sched_get_priority_max (int policy); }\n\tSYS_SCHED_GET_PRIORITY_MIN   = 333 // { int sched_get_priority_min (int policy); }\n\tSYS_SCHED_RR_GET_INTERVAL    = 334 // { int sched_rr_get_interval (pid_t pid, struct timespec *interval); }\n\tSYS_UTRACE                   = 335 // { int utrace(const void *addr, size_t len); }\n\tSYS_KLDSYM                   = 337 // { int kldsym(int fileid, int cmd, void *data); }\n\tSYS_JAIL                     = 338 // { int jail(struct jail *jail); }\n\tSYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, const sigset_t *set, sigset_t *oset); }\n\tSYS_SIGSUSPEND               = 341 // { int sigsuspend(const sigset_t *sigmask); }\n\tSYS_SIGPENDING               = 343 // { int sigpending(sigset_t *set); }\n\tSYS_SIGTIMEDWAIT             = 345 // { int sigtimedwait(const sigset_t *set, siginfo_t *info, const struct timespec *timeout); }\n\tSYS_SIGWAITINFO              = 346 // { int sigwaitinfo(const sigset_t *set, siginfo_t *info); }\n\tSYS___ACL_GET_FILE           = 347 // { int __acl_get_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FILE           = 348 // { int __acl_set_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_GET_FD             = 349 // { int __acl_get_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FD             = 350 // { int __acl_set_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_DELETE_FILE        = 351 // { int __acl_delete_file(const char *path, acl_type_t type); }\n\tSYS___ACL_DELETE_FD          = 352 // { int __acl_delete_fd(int filedes, acl_type_t type); }\n\tSYS___ACL_ACLCHECK_FILE      = 353 // { int __acl_aclcheck_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_ACLCHECK_FD        = 354 // { int __acl_aclcheck_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS_EXTATTRCTL               = 355 // { int extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FILE         = 356 // { ssize_t extattr_set_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FILE         = 357 // { ssize_t extattr_get_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FILE      = 358 // { int extattr_delete_file(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_AIO_WAITCOMPLETE         = 359 // { ssize_t aio_waitcomplete( struct aiocb **aiocbp, struct timespec *timeout); }\n\tSYS_GETRESUID                = 360 // { int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_GETRESGID                = 361 // { int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_KQUEUE                   = 362 // { int kqueue(void); }\n\tSYS_KEVENT                   = 363 // { int kevent(int fd, struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_EXTATTR_SET_FD           = 371 // { ssize_t extattr_set_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FD           = 372 // { ssize_t extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FD        = 373 // { int extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }\n\tSYS___SETUGID                = 374 // { int __setugid(int flag); }\n\tSYS_EACCESS                  = 376 // { int eaccess(char *path, int amode); }\n\tSYS_NMOUNT                   = 378 // { int nmount(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS___MAC_GET_PROC           = 384 // { int __mac_get_proc(struct mac *mac_p); }\n\tSYS___MAC_SET_PROC           = 385 // { int __mac_set_proc(struct mac *mac_p); }\n\tSYS___MAC_GET_FD             = 386 // { int __mac_get_fd(int fd, struct mac *mac_p); }\n\tSYS___MAC_GET_FILE           = 387 // { int __mac_get_file(const char *path_p, struct mac *mac_p); }\n\tSYS___MAC_SET_FD             = 388 // { int __mac_set_fd(int fd, struct mac *mac_p); }\n\tSYS___MAC_SET_FILE           = 389 // { int __mac_set_file(const char *path_p, struct mac *mac_p); }\n\tSYS_KENV                     = 390 // { int kenv(int what, const char *name, char *value, int len); }\n\tSYS_LCHFLAGS                 = 391 // { int lchflags(const char *path, u_long flags); }\n\tSYS_UUIDGEN                  = 392 // { int uuidgen(struct uuid *store, int count); }\n\tSYS_SENDFILE                 = 393 // { int sendfile(int fd, int s, off_t offset, size_t nbytes, struct sf_hdtr *hdtr, off_t *sbytes, int flags); }\n\tSYS_MAC_SYSCALL              = 394 // { int mac_syscall(const char *policy, int call, void *arg); }\n\tSYS_GETFSSTAT                = 395 // { int getfsstat(struct statfs *buf, long bufsize, int mode); }\n\tSYS_STATFS                   = 396 // { int statfs(char *path, struct statfs *buf); }\n\tSYS_FSTATFS                  = 397 // { int fstatfs(int fd, struct statfs *buf); }\n\tSYS_FHSTATFS                 = 398 // { int fhstatfs(const struct fhandle *u_fhp, struct statfs *buf); }\n\tSYS_KSEM_CLOSE               = 400 // { int ksem_close(semid_t id); }\n\tSYS_KSEM_POST                = 401 // { int ksem_post(semid_t id); }\n\tSYS_KSEM_WAIT                = 402 // { int ksem_wait(semid_t id); }\n\tSYS_KSEM_TRYWAIT             = 403 // { int ksem_trywait(semid_t id); }\n\tSYS_KSEM_INIT                = 404 // { int ksem_init(semid_t *idp, unsigned int value); }\n\tSYS_KSEM_OPEN                = 405 // { int ksem_open(semid_t *idp, const char *name, int oflag, mode_t mode, unsigned int value); }\n\tSYS_KSEM_UNLINK              = 406 // { int ksem_unlink(const char *name); }\n\tSYS_KSEM_GETVALUE            = 407 // { int ksem_getvalue(semid_t id, int *val); }\n\tSYS_KSEM_DESTROY             = 408 // { int ksem_destroy(semid_t id); }\n\tSYS___MAC_GET_PID            = 409 // { int __mac_get_pid(pid_t pid, struct mac *mac_p); }\n\tSYS___MAC_GET_LINK           = 410 // { int __mac_get_link(const char *path_p, struct mac *mac_p); }\n\tSYS___MAC_SET_LINK           = 411 // { int __mac_set_link(const char *path_p, struct mac *mac_p); }\n\tSYS_EXTATTR_SET_LINK         = 412 // { ssize_t extattr_set_link( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_LINK         = 413 // { ssize_t extattr_get_link( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_LINK      = 414 // { int extattr_delete_link( const char *path, int attrnamespace, const char *attrname); }\n\tSYS___MAC_EXECVE             = 415 // { int __mac_execve(char *fname, char **argv, char **envv, struct mac *mac_p); }\n\tSYS_SIGACTION                = 416 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }\n\tSYS_SIGRETURN                = 417 // { int sigreturn( const struct __ucontext *sigcntxp); }\n\tSYS_GETCONTEXT               = 421 // { int getcontext(struct __ucontext *ucp); }\n\tSYS_SETCONTEXT               = 422 // { int setcontext( const struct __ucontext *ucp); }\n\tSYS_SWAPCONTEXT              = 423 // { int swapcontext(struct __ucontext *oucp, const struct __ucontext *ucp); }\n\tSYS_SWAPOFF                  = 424 // { int swapoff(const char *name); }\n\tSYS___ACL_GET_LINK           = 425 // { int __acl_get_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_LINK           = 426 // { int __acl_set_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_DELETE_LINK        = 427 // { int __acl_delete_link(const char *path, acl_type_t type); }\n\tSYS___ACL_ACLCHECK_LINK      = 428 // { int __acl_aclcheck_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS_SIGWAIT                  = 429 // { int sigwait(const sigset_t *set, int *sig); }\n\tSYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, int flags); }\n\tSYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }\n\tSYS_THR_SELF                 = 432 // { int thr_self(long *id); }\n\tSYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }\n\tSYS_JAIL_ATTACH              = 436 // { int jail_attach(int jid); }\n\tSYS_EXTATTR_LIST_FD          = 437 // { ssize_t extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_FILE        = 438 // { ssize_t extattr_list_file( const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_LINK        = 439 // { ssize_t extattr_list_link( const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_KSEM_TIMEDWAIT           = 441 // { int ksem_timedwait(semid_t id, const struct timespec *abstime); }\n\tSYS_THR_SUSPEND              = 442 // { int thr_suspend( const struct timespec *timeout); }\n\tSYS_THR_WAKE                 = 443 // { int thr_wake(long id); }\n\tSYS_KLDUNLOADF               = 444 // { int kldunloadf(int fileid, int flags); }\n\tSYS_AUDIT                    = 445 // { int audit(const void *record, u_int length); }\n\tSYS_AUDITON                  = 446 // { int auditon(int cmd, void *data, u_int length); }\n\tSYS_GETAUID                  = 447 // { int getauid(uid_t *auid); }\n\tSYS_SETAUID                  = 448 // { int setauid(uid_t *auid); }\n\tSYS_GETAUDIT                 = 449 // { int getaudit(struct auditinfo *auditinfo); }\n\tSYS_SETAUDIT                 = 450 // { int setaudit(struct auditinfo *auditinfo); }\n\tSYS_GETAUDIT_ADDR            = 451 // { int getaudit_addr( struct auditinfo_addr *auditinfo_addr, u_int length); }\n\tSYS_SETAUDIT_ADDR            = 452 // { int setaudit_addr( struct auditinfo_addr *auditinfo_addr, u_int length); }\n\tSYS_AUDITCTL                 = 453 // { int auditctl(char *path); }\n\tSYS__UMTX_OP                 = 454 // { int _umtx_op(void *obj, int op, u_long val, void *uaddr1, void *uaddr2); }\n\tSYS_THR_NEW                  = 455 // { int thr_new(struct thr_param *param, int param_size); }\n\tSYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }\n\tSYS_KMQ_OPEN                 = 457 // { int kmq_open(const char *path, int flags, mode_t mode, const struct mq_attr *attr); }\n\tSYS_KMQ_SETATTR              = 458 // { int kmq_setattr(int mqd,\t\tconst struct mq_attr *attr,\t\tstruct mq_attr *oattr); }\n\tSYS_KMQ_TIMEDRECEIVE         = 459 // { int kmq_timedreceive(int mqd,\tchar *msg_ptr, size_t msg_len,\tunsigned *msg_prio,\t\t\tconst struct timespec *abs_timeout); }\n\tSYS_KMQ_TIMEDSEND            = 460 // { int kmq_timedsend(int mqd,\t\tconst char *msg_ptr, size_t msg_len,unsigned msg_prio,\t\t\tconst struct timespec *abs_timeout);}\n\tSYS_KMQ_NOTIFY               = 461 // { int kmq_notify(int mqd,\t\tconst struct sigevent *sigev); }\n\tSYS_KMQ_UNLINK               = 462 // { int kmq_unlink(const char *path); }\n\tSYS_ABORT2                   = 463 // { int abort2(const char *why, int nargs, void **args); }\n\tSYS_THR_SET_NAME             = 464 // { int thr_set_name(long id, const char *name); }\n\tSYS_AIO_FSYNC                = 465 // { int aio_fsync(int op, struct aiocb *aiocbp); }\n\tSYS_RTPRIO_THREAD            = 466 // { int rtprio_thread(int function, lwpid_t lwpid, struct rtprio *rtp); }\n\tSYS_SCTP_PEELOFF             = 471 // { int sctp_peeloff(int sd, uint32_t name); }\n\tSYS_SCTP_GENERIC_SENDMSG     = 472 // { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, caddr_t to, __socklen_t tolen, struct sctp_sndrcvinfo *sinfo, int flags); }\n\tSYS_SCTP_GENERIC_SENDMSG_IOV = 473 // { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, caddr_t to, __socklen_t tolen, struct sctp_sndrcvinfo *sinfo, int flags); }\n\tSYS_SCTP_GENERIC_RECVMSG     = 474 // { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, struct sockaddr * from, __socklen_t *fromlenaddr, struct sctp_sndrcvinfo *sinfo, int *msg_flags); }\n\tSYS_PREAD                    = 475 // { ssize_t pread(int fd, void *buf, size_t nbyte, off_t offset); }\n\tSYS_PWRITE                   = 476 // { ssize_t pwrite(int fd, const void *buf, size_t nbyte, off_t offset); }\n\tSYS_MMAP                     = 477 // { caddr_t mmap(caddr_t addr, size_t len, int prot, int flags, int fd, off_t pos); }\n\tSYS_LSEEK                    = 478 // { off_t lseek(int fd, off_t offset, int whence); }\n\tSYS_TRUNCATE                 = 479 // { int truncate(char *path, off_t length); }\n\tSYS_FTRUNCATE                = 480 // { int ftruncate(int fd, off_t length); }\n\tSYS_THR_KILL2                = 481 // { int thr_kill2(pid_t pid, long id, int sig); }\n\tSYS_SHM_OPEN                 = 482 // { int shm_open(const char *path, int flags, mode_t mode); }\n\tSYS_SHM_UNLINK               = 483 // { int shm_unlink(const char *path); }\n\tSYS_CPUSET                   = 484 // { int cpuset(cpusetid_t *setid); }\n\tSYS_CPUSET_SETID             = 485 // { int cpuset_setid(cpuwhich_t which, id_t id, cpusetid_t setid); }\n\tSYS_CPUSET_GETID             = 486 // { int cpuset_getid(cpulevel_t level, cpuwhich_t which, id_t id, cpusetid_t *setid); }\n\tSYS_CPUSET_GETAFFINITY       = 487 // { int cpuset_getaffinity(cpulevel_t level, cpuwhich_t which, id_t id, size_t cpusetsize, cpuset_t *mask); }\n\tSYS_CPUSET_SETAFFINITY       = 488 // { int cpuset_setaffinity(cpulevel_t level, cpuwhich_t which, id_t id, size_t cpusetsize, const cpuset_t *mask); }\n\tSYS_FACCESSAT                = 489 // { int faccessat(int fd, char *path, int amode, int flag); }\n\tSYS_FCHMODAT                 = 490 // { int fchmodat(int fd, char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT                 = 491 // { int fchownat(int fd, char *path, uid_t uid, gid_t gid, int flag); }\n\tSYS_FEXECVE                  = 492 // { int fexecve(int fd, char **argv, char **envv); }\n\tSYS_FSTATAT                  = 493 // { int fstatat(int fd, char *path, struct stat *buf, int flag); }\n\tSYS_FUTIMESAT                = 494 // { int futimesat(int fd, char *path, struct timeval *times); }\n\tSYS_LINKAT                   = 495 // { int linkat(int fd1, char *path1, int fd2, char *path2, int flag); }\n\tSYS_MKDIRAT                  = 496 // { int mkdirat(int fd, char *path, mode_t mode); }\n\tSYS_MKFIFOAT                 = 497 // { int mkfifoat(int fd, char *path, mode_t mode); }\n\tSYS_MKNODAT                  = 498 // { int mknodat(int fd, char *path, mode_t mode, dev_t dev); }\n\tSYS_OPENAT                   = 499 // { int openat(int fd, char *path, int flag, mode_t mode); }\n\tSYS_READLINKAT               = 500 // { int readlinkat(int fd, char *path, char *buf, size_t bufsize); }\n\tSYS_RENAMEAT                 = 501 // { int renameat(int oldfd, char *old, int newfd, char *new); }\n\tSYS_SYMLINKAT                = 502 // { int symlinkat(char *path1, int fd, char *path2); }\n\tSYS_UNLINKAT                 = 503 // { int unlinkat(int fd, char *path, int flag); }\n\tSYS_POSIX_OPENPT             = 504 // { int posix_openpt(int flags); }\n\tSYS_GSSD_SYSCALL             = 505 // { int gssd_syscall(char *path); }\n\tSYS_JAIL_GET                 = 506 // { int jail_get(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS_JAIL_SET                 = 507 // { int jail_set(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS_JAIL_REMOVE              = 508 // { int jail_remove(int jid); }\n\tSYS_CLOSEFROM                = 509 // { int closefrom(int lowfd); }\n\tSYS___SEMCTL                 = 510 // { int __semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_MSGCTL                   = 511 // { int msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_SHMCTL                   = 512 // { int shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_LPATHCONF                = 513 // { int lpathconf(char *path, int name); }\n\tSYS___CAP_RIGHTS_GET         = 515 // { int __cap_rights_get(int version, int fd, cap_rights_t *rightsp); }\n\tSYS_CAP_ENTER                = 516 // { int cap_enter(void); }\n\tSYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }\n\tSYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }\n\tSYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }\n\tSYS_PDGETPID                 = 520 // { int pdgetpid(int fd, pid_t *pidp); }\n\tSYS_PSELECT                  = 522 // { int pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *sm); }\n\tSYS_GETLOGINCLASS            = 523 // { int getloginclass(char *namebuf, size_t namelen); }\n\tSYS_SETLOGINCLASS            = 524 // { int setloginclass(const char *namebuf); }\n\tSYS_RCTL_GET_RACCT           = 525 // { int rctl_get_racct(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_GET_RULES           = 526 // { int rctl_get_rules(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_GET_LIMITS          = 527 // { int rctl_get_limits(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_ADD_RULE            = 528 // { int rctl_add_rule(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_REMOVE_RULE         = 529 // { int rctl_remove_rule(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_POSIX_FALLOCATE          = 530 // { int posix_fallocate(int fd, off_t offset, off_t len); }\n\tSYS_POSIX_FADVISE            = 531 // { int posix_fadvise(int fd, off_t offset, off_t len, int advice); }\n\tSYS_WAIT6                    = 532 // { int wait6(idtype_t idtype, id_t id, int *status, int options, struct __wrusage *wrusage, siginfo_t *info); }\n\tSYS_CAP_RIGHTS_LIMIT         = 533 // { int cap_rights_limit(int fd, cap_rights_t *rightsp); }\n\tSYS_CAP_IOCTLS_LIMIT         = 534 // { int cap_ioctls_limit(int fd, const u_long *cmds, size_t ncmds); }\n\tSYS_CAP_IOCTLS_GET           = 535 // { ssize_t cap_ioctls_get(int fd, u_long *cmds, size_t maxcmds); }\n\tSYS_CAP_FCNTLS_LIMIT         = 536 // { int cap_fcntls_limit(int fd, uint32_t fcntlrights); }\n\tSYS_CAP_FCNTLS_GET           = 537 // { int cap_fcntls_get(int fd, uint32_t *fcntlrightsp); }\n\tSYS_BINDAT                   = 538 // { int bindat(int fd, int s, caddr_t name, int namelen); }\n\tSYS_CONNECTAT                = 539 // { int connectat(int fd, int s, caddr_t name, int namelen); }\n\tSYS_CHFLAGSAT                = 540 // { int chflagsat(int fd, const char *path, u_long flags, int atflag); }\n\tSYS_ACCEPT4                  = 541 // { int accept4(int s, struct sockaddr * __restrict name, __socklen_t * __restrict anamelen, int flags); }\n\tSYS_PIPE2                    = 542 // { int pipe2(int *fildes, int flags); }\n\tSYS_AIO_MLOCK                = 543 // { int aio_mlock(struct aiocb *aiocbp); }\n\tSYS_PROCCTL                  = 544 // { int procctl(idtype_t idtype, id_t id, int com, void *data); }\n\tSYS_PPOLL                    = 545 // { int ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *set); }\n\tSYS_FUTIMENS                 = 546 // { int futimens(int fd, struct timespec *times); }\n\tSYS_UTIMENSAT                = 547 // { int utimensat(int fd, char *path, struct timespec *times, int flag); }\n\tSYS_NUMA_GETAFFINITY         = 548 // { int numa_getaffinity(cpuwhich_t which, id_t id, struct vm_domain_policy_entry *policy); }\n\tSYS_NUMA_SETAFFINITY         = 549 // { int numa_setaffinity(cpuwhich_t which, id_t id, const struct vm_domain_policy_entry *policy); }\n\tSYS_FDATASYNC                = 550 // { int fdatasync(int fd); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go",
    "content": "// go run mksysnum.go https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,freebsd\n\npackage unix\n\nconst (\n\t// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int\n\tSYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void\n\tSYS_FORK                     = 2   // { int fork(void); }\n\tSYS_READ                     = 3   // { ssize_t read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE                    = 4   // { ssize_t write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN                     = 5   // { int open(char *path, int flags, int mode); }\n\tSYS_CLOSE                    = 6   // { int close(int fd); }\n\tSYS_WAIT4                    = 7   // { int wait4(int pid, int *status, int options, struct rusage *rusage); }\n\tSYS_LINK                     = 9   // { int link(char *path, char *link); }\n\tSYS_UNLINK                   = 10  // { int unlink(char *path); }\n\tSYS_CHDIR                    = 12  // { int chdir(char *path); }\n\tSYS_FCHDIR                   = 13  // { int fchdir(int fd); }\n\tSYS_MKNOD                    = 14  // { int mknod(char *path, int mode, int dev); }\n\tSYS_CHMOD                    = 15  // { int chmod(char *path, int mode); }\n\tSYS_CHOWN                    = 16  // { int chown(char *path, int uid, int gid); }\n\tSYS_OBREAK                   = 17  // { int obreak(char *nsize); } break obreak_args int\n\tSYS_GETPID                   = 20  // { pid_t getpid(void); }\n\tSYS_MOUNT                    = 21  // { int mount(char *type, char *path, int flags, caddr_t data); }\n\tSYS_UNMOUNT                  = 22  // { int unmount(char *path, int flags); }\n\tSYS_SETUID                   = 23  // { int setuid(uid_t uid); }\n\tSYS_GETUID                   = 24  // { uid_t getuid(void); }\n\tSYS_GETEUID                  = 25  // { uid_t geteuid(void); }\n\tSYS_PTRACE                   = 26  // { int ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG                  = 27  // { int recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG                  = 28  // { int sendmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_RECVFROM                 = 29  // { int recvfrom(int s, caddr_t buf, size_t len, int flags, struct sockaddr * __restrict from, __socklen_t * __restrict fromlenaddr); }\n\tSYS_ACCEPT                   = 30  // { int accept(int s, struct sockaddr * __restrict name, __socklen_t * __restrict anamelen); }\n\tSYS_GETPEERNAME              = 31  // { int getpeername(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }\n\tSYS_GETSOCKNAME              = 32  // { int getsockname(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }\n\tSYS_ACCESS                   = 33  // { int access(char *path, int amode); }\n\tSYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }\n\tSYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }\n\tSYS_SYNC                     = 36  // { int sync(void); }\n\tSYS_KILL                     = 37  // { int kill(int pid, int signum); }\n\tSYS_GETPPID                  = 39  // { pid_t getppid(void); }\n\tSYS_DUP                      = 41  // { int dup(u_int fd); }\n\tSYS_PIPE                     = 42  // { int pipe(void); }\n\tSYS_GETEGID                  = 43  // { gid_t getegid(void); }\n\tSYS_PROFIL                   = 44  // { int profil(caddr_t samples, size_t size, size_t offset, u_int scale); }\n\tSYS_KTRACE                   = 45  // { int ktrace(const char *fname, int ops, int facs, int pid); }\n\tSYS_GETGID                   = 47  // { gid_t getgid(void); }\n\tSYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int namelen); }\n\tSYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }\n\tSYS_ACCT                     = 51  // { int acct(char *path); }\n\tSYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }\n\tSYS_IOCTL                    = 54  // { int ioctl(int fd, u_long com, caddr_t data); }\n\tSYS_REBOOT                   = 55  // { int reboot(int opt); }\n\tSYS_REVOKE                   = 56  // { int revoke(char *path); }\n\tSYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }\n\tSYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, size_t count); }\n\tSYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, char **envv); }\n\tSYS_UMASK                    = 60  // { int umask(int newmask); } umask umask_args int\n\tSYS_CHROOT                   = 61  // { int chroot(char *path); }\n\tSYS_MSYNC                    = 65  // { int msync(void *addr, size_t len, int flags); }\n\tSYS_VFORK                    = 66  // { int vfork(void); }\n\tSYS_SBRK                     = 69  // { int sbrk(int incr); }\n\tSYS_SSTK                     = 70  // { int sstk(int incr); }\n\tSYS_OVADVISE                 = 72  // { int ovadvise(int anom); } vadvise ovadvise_args int\n\tSYS_MUNMAP                   = 73  // { int munmap(void *addr, size_t len); }\n\tSYS_MPROTECT                 = 74  // { int mprotect(const void *addr, size_t len, int prot); }\n\tSYS_MADVISE                  = 75  // { int madvise(void *addr, size_t len, int behav); }\n\tSYS_MINCORE                  = 78  // { int mincore(const void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS                = 79  // { int getgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS                = 80  // { int setgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_GETPGRP                  = 81  // { int getpgrp(void); }\n\tSYS_SETPGID                  = 82  // { int setpgid(int pid, int pgid); }\n\tSYS_SETITIMER                = 83  // { int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_SWAPON                   = 85  // { int swapon(char *name); }\n\tSYS_GETITIMER                = 86  // { int getitimer(u_int which, struct itimerval *itv); }\n\tSYS_GETDTABLESIZE            = 89  // { int getdtablesize(void); }\n\tSYS_DUP2                     = 90  // { int dup2(u_int from, u_int to); }\n\tSYS_FCNTL                    = 92  // { int fcntl(int fd, int cmd, long arg); }\n\tSYS_SELECT                   = 93  // { int select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_FSYNC                    = 95  // { int fsync(int fd); }\n\tSYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }\n\tSYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }\n\tSYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }\n\tSYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }\n\tSYS_BIND                     = 104 // { int bind(int s, caddr_t name, int namelen); }\n\tSYS_SETSOCKOPT               = 105 // { int setsockopt(int s, int level, int name, caddr_t val, int valsize); }\n\tSYS_LISTEN                   = 106 // { int listen(int s, int backlog); }\n\tSYS_GETTIMEOFDAY             = 116 // { int gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_GETRUSAGE                = 117 // { int getrusage(int who, struct rusage *rusage); }\n\tSYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, caddr_t val, int *avalsize); }\n\tSYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, struct timezone *tzp); }\n\tSYS_FCHOWN                   = 123 // { int fchown(int fd, int uid, int gid); }\n\tSYS_FCHMOD                   = 124 // { int fchmod(int fd, int mode); }\n\tSYS_SETREUID                 = 126 // { int setreuid(int ruid, int euid); }\n\tSYS_SETREGID                 = 127 // { int setregid(int rgid, int egid); }\n\tSYS_RENAME                   = 128 // { int rename(char *from, char *to); }\n\tSYS_FLOCK                    = 131 // { int flock(int fd, int how); }\n\tSYS_MKFIFO                   = 132 // { int mkfifo(char *path, int mode); }\n\tSYS_SENDTO                   = 133 // { int sendto(int s, caddr_t buf, size_t len, int flags, caddr_t to, int tolen); }\n\tSYS_SHUTDOWN                 = 134 // { int shutdown(int s, int how); }\n\tSYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }\n\tSYS_RMDIR                    = 137 // { int rmdir(char *path); }\n\tSYS_UTIMES                   = 138 // { int utimes(char *path, struct timeval *tptr); }\n\tSYS_ADJTIME                  = 140 // { int adjtime(struct timeval *delta, struct timeval *olddelta); }\n\tSYS_SETSID                   = 147 // { int setsid(void); }\n\tSYS_QUOTACTL                 = 148 // { int quotactl(char *path, int cmd, int uid, caddr_t arg); }\n\tSYS_NLM_SYSCALL              = 154 // { int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }\n\tSYS_NFSSVC                   = 155 // { int nfssvc(int flag, caddr_t argp); }\n\tSYS_LGETFH                   = 160 // { int lgetfh(char *fname, struct fhandle *fhp); }\n\tSYS_GETFH                    = 161 // { int getfh(char *fname, struct fhandle *fhp); }\n\tSYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }\n\tSYS_RTPRIO                   = 166 // { int rtprio(int function, pid_t pid, struct rtprio *rtp); }\n\tSYS_SEMSYS                   = 169 // { int semsys(int which, int a2, int a3, int a4, int a5); }\n\tSYS_MSGSYS                   = 170 // { int msgsys(int which, int a2, int a3, int a4, int a5, int a6); }\n\tSYS_SHMSYS                   = 171 // { int shmsys(int which, int a2, int a3, int a4); }\n\tSYS_SETFIB                   = 175 // { int setfib(int fibnum); }\n\tSYS_NTP_ADJTIME              = 176 // { int ntp_adjtime(struct timex *tp); }\n\tSYS_SETGID                   = 181 // { int setgid(gid_t gid); }\n\tSYS_SETEGID                  = 182 // { int setegid(gid_t egid); }\n\tSYS_SETEUID                  = 183 // { int seteuid(uid_t euid); }\n\tSYS_STAT                     = 188 // { int stat(char *path, struct stat *ub); }\n\tSYS_FSTAT                    = 189 // { int fstat(int fd, struct stat *sb); }\n\tSYS_LSTAT                    = 190 // { int lstat(char *path, struct stat *ub); }\n\tSYS_PATHCONF                 = 191 // { int pathconf(char *path, int name); }\n\tSYS_FPATHCONF                = 192 // { int fpathconf(int fd, int name); }\n\tSYS_GETRLIMIT                = 194 // { int getrlimit(u_int which, struct rlimit *rlp); } getrlimit __getrlimit_args int\n\tSYS_SETRLIMIT                = 195 // { int setrlimit(u_int which, struct rlimit *rlp); } setrlimit __setrlimit_args int\n\tSYS_GETDIRENTRIES            = 196 // { int getdirentries(int fd, char *buf, u_int count, long *basep); }\n\tSYS___SYSCTL                 = 202 // { int __sysctl(int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); } __sysctl sysctl_args int\n\tSYS_MLOCK                    = 203 // { int mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK                  = 204 // { int munlock(const void *addr, size_t len); }\n\tSYS_UNDELETE                 = 205 // { int undelete(char *path); }\n\tSYS_FUTIMES                  = 206 // { int futimes(int fd, struct timeval *tptr); }\n\tSYS_GETPGID                  = 207 // { int getpgid(pid_t pid); }\n\tSYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_SEMGET                   = 221 // { int semget(key_t key, int nsems, int semflg); }\n\tSYS_SEMOP                    = 222 // { int semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }\n\tSYS_MSGSND                   = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV                   = 227 // { int msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT                    = 228 // { int shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT                    = 230 // { int shmdt(const void *shmaddr); }\n\tSYS_SHMGET                   = 231 // { int shmget(key_t key, size_t size, int shmflg); }\n\tSYS_CLOCK_GETTIME            = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME            = 233 // { int clock_settime( clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES             = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_KTIMER_CREATE            = 235 // { int ktimer_create(clockid_t clock_id, struct sigevent *evp, int *timerid); }\n\tSYS_KTIMER_DELETE            = 236 // { int ktimer_delete(int timerid); }\n\tSYS_KTIMER_SETTIME           = 237 // { int ktimer_settime(int timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }\n\tSYS_KTIMER_GETTIME           = 238 // { int ktimer_gettime(int timerid, struct itimerspec *value); }\n\tSYS_KTIMER_GETOVERRUN        = 239 // { int ktimer_getoverrun(int timerid); }\n\tSYS_NANOSLEEP                = 240 // { int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_FFCLOCK_GETCOUNTER       = 241 // { int ffclock_getcounter(ffcounter *ffcount); }\n\tSYS_FFCLOCK_SETESTIMATE      = 242 // { int ffclock_setestimate( struct ffclock_estimate *cest); }\n\tSYS_FFCLOCK_GETESTIMATE      = 243 // { int ffclock_getestimate( struct ffclock_estimate *cest); }\n\tSYS_CLOCK_NANOSLEEP          = 244 // { int clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_CLOCK_GETCPUCLOCKID2     = 247 // { int clock_getcpuclockid2(id_t id,int which, clockid_t *clock_id); }\n\tSYS_NTP_GETTIME              = 248 // { int ntp_gettime(struct ntptimeval *ntvp); }\n\tSYS_MINHERIT                 = 250 // { int minherit(void *addr, size_t len, int inherit); }\n\tSYS_RFORK                    = 251 // { int rfork(int flags); }\n\tSYS_OPENBSD_POLL             = 252 // { int openbsd_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID                = 253 // { int issetugid(void); }\n\tSYS_LCHOWN                   = 254 // { int lchown(char *path, int uid, int gid); }\n\tSYS_AIO_READ                 = 255 // { int aio_read(struct aiocb *aiocbp); }\n\tSYS_AIO_WRITE                = 256 // { int aio_write(struct aiocb *aiocbp); }\n\tSYS_LIO_LISTIO               = 257 // { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }\n\tSYS_GETDENTS                 = 272 // { int getdents(int fd, char *buf, size_t count); }\n\tSYS_LCHMOD                   = 274 // { int lchmod(char *path, mode_t mode); }\n\tSYS_LUTIMES                  = 276 // { int lutimes(char *path, struct timeval *tptr); }\n\tSYS_NSTAT                    = 278 // { int nstat(char *path, struct nstat *ub); }\n\tSYS_NFSTAT                   = 279 // { int nfstat(int fd, struct nstat *sb); }\n\tSYS_NLSTAT                   = 280 // { int nlstat(char *path, struct nstat *ub); }\n\tSYS_PREADV                   = 289 // { ssize_t preadv(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }\n\tSYS_PWRITEV                  = 290 // { ssize_t pwritev(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }\n\tSYS_FHOPEN                   = 298 // { int fhopen(const struct fhandle *u_fhp, int flags); }\n\tSYS_FHSTAT                   = 299 // { int fhstat(const struct fhandle *u_fhp, struct stat *sb); }\n\tSYS_MODNEXT                  = 300 // { int modnext(int modid); }\n\tSYS_MODSTAT                  = 301 // { int modstat(int modid, struct module_stat *stat); }\n\tSYS_MODFNEXT                 = 302 // { int modfnext(int modid); }\n\tSYS_MODFIND                  = 303 // { int modfind(const char *name); }\n\tSYS_KLDLOAD                  = 304 // { int kldload(const char *file); }\n\tSYS_KLDUNLOAD                = 305 // { int kldunload(int fileid); }\n\tSYS_KLDFIND                  = 306 // { int kldfind(const char *file); }\n\tSYS_KLDNEXT                  = 307 // { int kldnext(int fileid); }\n\tSYS_KLDSTAT                  = 308 // { int kldstat(int fileid, struct kld_file_stat* stat); }\n\tSYS_KLDFIRSTMOD              = 309 // { int kldfirstmod(int fileid); }\n\tSYS_GETSID                   = 310 // { int getsid(pid_t pid); }\n\tSYS_SETRESUID                = 311 // { int setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_SETRESGID                = 312 // { int setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_AIO_RETURN               = 314 // { ssize_t aio_return(struct aiocb *aiocbp); }\n\tSYS_AIO_SUSPEND              = 315 // { int aio_suspend( struct aiocb * const * aiocbp, int nent, const struct timespec *timeout); }\n\tSYS_AIO_CANCEL               = 316 // { int aio_cancel(int fd, struct aiocb *aiocbp); }\n\tSYS_AIO_ERROR                = 317 // { int aio_error(struct aiocb *aiocbp); }\n\tSYS_YIELD                    = 321 // { int yield(void); }\n\tSYS_MLOCKALL                 = 324 // { int mlockall(int how); }\n\tSYS_MUNLOCKALL               = 325 // { int munlockall(void); }\n\tSYS___GETCWD                 = 326 // { int __getcwd(char *buf, u_int buflen); }\n\tSYS_SCHED_SETPARAM           = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }\n\tSYS_SCHED_GETPARAM           = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }\n\tSYS_SCHED_SETSCHEDULER       = 329 // { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }\n\tSYS_SCHED_GETSCHEDULER       = 330 // { int sched_getscheduler (pid_t pid); }\n\tSYS_SCHED_YIELD              = 331 // { int sched_yield (void); }\n\tSYS_SCHED_GET_PRIORITY_MAX   = 332 // { int sched_get_priority_max (int policy); }\n\tSYS_SCHED_GET_PRIORITY_MIN   = 333 // { int sched_get_priority_min (int policy); }\n\tSYS_SCHED_RR_GET_INTERVAL    = 334 // { int sched_rr_get_interval (pid_t pid, struct timespec *interval); }\n\tSYS_UTRACE                   = 335 // { int utrace(const void *addr, size_t len); }\n\tSYS_KLDSYM                   = 337 // { int kldsym(int fileid, int cmd, void *data); }\n\tSYS_JAIL                     = 338 // { int jail(struct jail *jail); }\n\tSYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, const sigset_t *set, sigset_t *oset); }\n\tSYS_SIGSUSPEND               = 341 // { int sigsuspend(const sigset_t *sigmask); }\n\tSYS_SIGPENDING               = 343 // { int sigpending(sigset_t *set); }\n\tSYS_SIGTIMEDWAIT             = 345 // { int sigtimedwait(const sigset_t *set, siginfo_t *info, const struct timespec *timeout); }\n\tSYS_SIGWAITINFO              = 346 // { int sigwaitinfo(const sigset_t *set, siginfo_t *info); }\n\tSYS___ACL_GET_FILE           = 347 // { int __acl_get_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FILE           = 348 // { int __acl_set_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_GET_FD             = 349 // { int __acl_get_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FD             = 350 // { int __acl_set_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_DELETE_FILE        = 351 // { int __acl_delete_file(const char *path, acl_type_t type); }\n\tSYS___ACL_DELETE_FD          = 352 // { int __acl_delete_fd(int filedes, acl_type_t type); }\n\tSYS___ACL_ACLCHECK_FILE      = 353 // { int __acl_aclcheck_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_ACLCHECK_FD        = 354 // { int __acl_aclcheck_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS_EXTATTRCTL               = 355 // { int extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FILE         = 356 // { ssize_t extattr_set_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FILE         = 357 // { ssize_t extattr_get_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FILE      = 358 // { int extattr_delete_file(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_AIO_WAITCOMPLETE         = 359 // { ssize_t aio_waitcomplete( struct aiocb **aiocbp, struct timespec *timeout); }\n\tSYS_GETRESUID                = 360 // { int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_GETRESGID                = 361 // { int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_KQUEUE                   = 362 // { int kqueue(void); }\n\tSYS_KEVENT                   = 363 // { int kevent(int fd, struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_EXTATTR_SET_FD           = 371 // { ssize_t extattr_set_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FD           = 372 // { ssize_t extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FD        = 373 // { int extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }\n\tSYS___SETUGID                = 374 // { int __setugid(int flag); }\n\tSYS_EACCESS                  = 376 // { int eaccess(char *path, int amode); }\n\tSYS_NMOUNT                   = 378 // { int nmount(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS___MAC_GET_PROC           = 384 // { int __mac_get_proc(struct mac *mac_p); }\n\tSYS___MAC_SET_PROC           = 385 // { int __mac_set_proc(struct mac *mac_p); }\n\tSYS___MAC_GET_FD             = 386 // { int __mac_get_fd(int fd, struct mac *mac_p); }\n\tSYS___MAC_GET_FILE           = 387 // { int __mac_get_file(const char *path_p, struct mac *mac_p); }\n\tSYS___MAC_SET_FD             = 388 // { int __mac_set_fd(int fd, struct mac *mac_p); }\n\tSYS___MAC_SET_FILE           = 389 // { int __mac_set_file(const char *path_p, struct mac *mac_p); }\n\tSYS_KENV                     = 390 // { int kenv(int what, const char *name, char *value, int len); }\n\tSYS_LCHFLAGS                 = 391 // { int lchflags(const char *path, u_long flags); }\n\tSYS_UUIDGEN                  = 392 // { int uuidgen(struct uuid *store, int count); }\n\tSYS_SENDFILE                 = 393 // { int sendfile(int fd, int s, off_t offset, size_t nbytes, struct sf_hdtr *hdtr, off_t *sbytes, int flags); }\n\tSYS_MAC_SYSCALL              = 394 // { int mac_syscall(const char *policy, int call, void *arg); }\n\tSYS_GETFSSTAT                = 395 // { int getfsstat(struct statfs *buf, long bufsize, int mode); }\n\tSYS_STATFS                   = 396 // { int statfs(char *path, struct statfs *buf); }\n\tSYS_FSTATFS                  = 397 // { int fstatfs(int fd, struct statfs *buf); }\n\tSYS_FHSTATFS                 = 398 // { int fhstatfs(const struct fhandle *u_fhp, struct statfs *buf); }\n\tSYS_KSEM_CLOSE               = 400 // { int ksem_close(semid_t id); }\n\tSYS_KSEM_POST                = 401 // { int ksem_post(semid_t id); }\n\tSYS_KSEM_WAIT                = 402 // { int ksem_wait(semid_t id); }\n\tSYS_KSEM_TRYWAIT             = 403 // { int ksem_trywait(semid_t id); }\n\tSYS_KSEM_INIT                = 404 // { int ksem_init(semid_t *idp, unsigned int value); }\n\tSYS_KSEM_OPEN                = 405 // { int ksem_open(semid_t *idp, const char *name, int oflag, mode_t mode, unsigned int value); }\n\tSYS_KSEM_UNLINK              = 406 // { int ksem_unlink(const char *name); }\n\tSYS_KSEM_GETVALUE            = 407 // { int ksem_getvalue(semid_t id, int *val); }\n\tSYS_KSEM_DESTROY             = 408 // { int ksem_destroy(semid_t id); }\n\tSYS___MAC_GET_PID            = 409 // { int __mac_get_pid(pid_t pid, struct mac *mac_p); }\n\tSYS___MAC_GET_LINK           = 410 // { int __mac_get_link(const char *path_p, struct mac *mac_p); }\n\tSYS___MAC_SET_LINK           = 411 // { int __mac_set_link(const char *path_p, struct mac *mac_p); }\n\tSYS_EXTATTR_SET_LINK         = 412 // { ssize_t extattr_set_link( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_LINK         = 413 // { ssize_t extattr_get_link( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_LINK      = 414 // { int extattr_delete_link( const char *path, int attrnamespace, const char *attrname); }\n\tSYS___MAC_EXECVE             = 415 // { int __mac_execve(char *fname, char **argv, char **envv, struct mac *mac_p); }\n\tSYS_SIGACTION                = 416 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }\n\tSYS_SIGRETURN                = 417 // { int sigreturn( const struct __ucontext *sigcntxp); }\n\tSYS_GETCONTEXT               = 421 // { int getcontext(struct __ucontext *ucp); }\n\tSYS_SETCONTEXT               = 422 // { int setcontext( const struct __ucontext *ucp); }\n\tSYS_SWAPCONTEXT              = 423 // { int swapcontext(struct __ucontext *oucp, const struct __ucontext *ucp); }\n\tSYS_SWAPOFF                  = 424 // { int swapoff(const char *name); }\n\tSYS___ACL_GET_LINK           = 425 // { int __acl_get_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_LINK           = 426 // { int __acl_set_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_DELETE_LINK        = 427 // { int __acl_delete_link(const char *path, acl_type_t type); }\n\tSYS___ACL_ACLCHECK_LINK      = 428 // { int __acl_aclcheck_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS_SIGWAIT                  = 429 // { int sigwait(const sigset_t *set, int *sig); }\n\tSYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, int flags); }\n\tSYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }\n\tSYS_THR_SELF                 = 432 // { int thr_self(long *id); }\n\tSYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }\n\tSYS_JAIL_ATTACH              = 436 // { int jail_attach(int jid); }\n\tSYS_EXTATTR_LIST_FD          = 437 // { ssize_t extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_FILE        = 438 // { ssize_t extattr_list_file( const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_LINK        = 439 // { ssize_t extattr_list_link( const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_KSEM_TIMEDWAIT           = 441 // { int ksem_timedwait(semid_t id, const struct timespec *abstime); }\n\tSYS_THR_SUSPEND              = 442 // { int thr_suspend( const struct timespec *timeout); }\n\tSYS_THR_WAKE                 = 443 // { int thr_wake(long id); }\n\tSYS_KLDUNLOADF               = 444 // { int kldunloadf(int fileid, int flags); }\n\tSYS_AUDIT                    = 445 // { int audit(const void *record, u_int length); }\n\tSYS_AUDITON                  = 446 // { int auditon(int cmd, void *data, u_int length); }\n\tSYS_GETAUID                  = 447 // { int getauid(uid_t *auid); }\n\tSYS_SETAUID                  = 448 // { int setauid(uid_t *auid); }\n\tSYS_GETAUDIT                 = 449 // { int getaudit(struct auditinfo *auditinfo); }\n\tSYS_SETAUDIT                 = 450 // { int setaudit(struct auditinfo *auditinfo); }\n\tSYS_GETAUDIT_ADDR            = 451 // { int getaudit_addr( struct auditinfo_addr *auditinfo_addr, u_int length); }\n\tSYS_SETAUDIT_ADDR            = 452 // { int setaudit_addr( struct auditinfo_addr *auditinfo_addr, u_int length); }\n\tSYS_AUDITCTL                 = 453 // { int auditctl(char *path); }\n\tSYS__UMTX_OP                 = 454 // { int _umtx_op(void *obj, int op, u_long val, void *uaddr1, void *uaddr2); }\n\tSYS_THR_NEW                  = 455 // { int thr_new(struct thr_param *param, int param_size); }\n\tSYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }\n\tSYS_KMQ_OPEN                 = 457 // { int kmq_open(const char *path, int flags, mode_t mode, const struct mq_attr *attr); }\n\tSYS_KMQ_SETATTR              = 458 // { int kmq_setattr(int mqd,\t\tconst struct mq_attr *attr,\t\tstruct mq_attr *oattr); }\n\tSYS_KMQ_TIMEDRECEIVE         = 459 // { int kmq_timedreceive(int mqd,\tchar *msg_ptr, size_t msg_len,\tunsigned *msg_prio,\t\t\tconst struct timespec *abs_timeout); }\n\tSYS_KMQ_TIMEDSEND            = 460 // { int kmq_timedsend(int mqd,\t\tconst char *msg_ptr, size_t msg_len,unsigned msg_prio,\t\t\tconst struct timespec *abs_timeout);}\n\tSYS_KMQ_NOTIFY               = 461 // { int kmq_notify(int mqd,\t\tconst struct sigevent *sigev); }\n\tSYS_KMQ_UNLINK               = 462 // { int kmq_unlink(const char *path); }\n\tSYS_ABORT2                   = 463 // { int abort2(const char *why, int nargs, void **args); }\n\tSYS_THR_SET_NAME             = 464 // { int thr_set_name(long id, const char *name); }\n\tSYS_AIO_FSYNC                = 465 // { int aio_fsync(int op, struct aiocb *aiocbp); }\n\tSYS_RTPRIO_THREAD            = 466 // { int rtprio_thread(int function, lwpid_t lwpid, struct rtprio *rtp); }\n\tSYS_SCTP_PEELOFF             = 471 // { int sctp_peeloff(int sd, uint32_t name); }\n\tSYS_SCTP_GENERIC_SENDMSG     = 472 // { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, caddr_t to, __socklen_t tolen, struct sctp_sndrcvinfo *sinfo, int flags); }\n\tSYS_SCTP_GENERIC_SENDMSG_IOV = 473 // { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, caddr_t to, __socklen_t tolen, struct sctp_sndrcvinfo *sinfo, int flags); }\n\tSYS_SCTP_GENERIC_RECVMSG     = 474 // { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, struct sockaddr * from, __socklen_t *fromlenaddr, struct sctp_sndrcvinfo *sinfo, int *msg_flags); }\n\tSYS_PREAD                    = 475 // { ssize_t pread(int fd, void *buf, size_t nbyte, off_t offset); }\n\tSYS_PWRITE                   = 476 // { ssize_t pwrite(int fd, const void *buf, size_t nbyte, off_t offset); }\n\tSYS_MMAP                     = 477 // { caddr_t mmap(caddr_t addr, size_t len, int prot, int flags, int fd, off_t pos); }\n\tSYS_LSEEK                    = 478 // { off_t lseek(int fd, off_t offset, int whence); }\n\tSYS_TRUNCATE                 = 479 // { int truncate(char *path, off_t length); }\n\tSYS_FTRUNCATE                = 480 // { int ftruncate(int fd, off_t length); }\n\tSYS_THR_KILL2                = 481 // { int thr_kill2(pid_t pid, long id, int sig); }\n\tSYS_SHM_OPEN                 = 482 // { int shm_open(const char *path, int flags, mode_t mode); }\n\tSYS_SHM_UNLINK               = 483 // { int shm_unlink(const char *path); }\n\tSYS_CPUSET                   = 484 // { int cpuset(cpusetid_t *setid); }\n\tSYS_CPUSET_SETID             = 485 // { int cpuset_setid(cpuwhich_t which, id_t id, cpusetid_t setid); }\n\tSYS_CPUSET_GETID             = 486 // { int cpuset_getid(cpulevel_t level, cpuwhich_t which, id_t id, cpusetid_t *setid); }\n\tSYS_CPUSET_GETAFFINITY       = 487 // { int cpuset_getaffinity(cpulevel_t level, cpuwhich_t which, id_t id, size_t cpusetsize, cpuset_t *mask); }\n\tSYS_CPUSET_SETAFFINITY       = 488 // { int cpuset_setaffinity(cpulevel_t level, cpuwhich_t which, id_t id, size_t cpusetsize, const cpuset_t *mask); }\n\tSYS_FACCESSAT                = 489 // { int faccessat(int fd, char *path, int amode, int flag); }\n\tSYS_FCHMODAT                 = 490 // { int fchmodat(int fd, char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT                 = 491 // { int fchownat(int fd, char *path, uid_t uid, gid_t gid, int flag); }\n\tSYS_FEXECVE                  = 492 // { int fexecve(int fd, char **argv, char **envv); }\n\tSYS_FSTATAT                  = 493 // { int fstatat(int fd, char *path, struct stat *buf, int flag); }\n\tSYS_FUTIMESAT                = 494 // { int futimesat(int fd, char *path, struct timeval *times); }\n\tSYS_LINKAT                   = 495 // { int linkat(int fd1, char *path1, int fd2, char *path2, int flag); }\n\tSYS_MKDIRAT                  = 496 // { int mkdirat(int fd, char *path, mode_t mode); }\n\tSYS_MKFIFOAT                 = 497 // { int mkfifoat(int fd, char *path, mode_t mode); }\n\tSYS_MKNODAT                  = 498 // { int mknodat(int fd, char *path, mode_t mode, dev_t dev); }\n\tSYS_OPENAT                   = 499 // { int openat(int fd, char *path, int flag, mode_t mode); }\n\tSYS_READLINKAT               = 500 // { int readlinkat(int fd, char *path, char *buf, size_t bufsize); }\n\tSYS_RENAMEAT                 = 501 // { int renameat(int oldfd, char *old, int newfd, char *new); }\n\tSYS_SYMLINKAT                = 502 // { int symlinkat(char *path1, int fd, char *path2); }\n\tSYS_UNLINKAT                 = 503 // { int unlinkat(int fd, char *path, int flag); }\n\tSYS_POSIX_OPENPT             = 504 // { int posix_openpt(int flags); }\n\tSYS_GSSD_SYSCALL             = 505 // { int gssd_syscall(char *path); }\n\tSYS_JAIL_GET                 = 506 // { int jail_get(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS_JAIL_SET                 = 507 // { int jail_set(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS_JAIL_REMOVE              = 508 // { int jail_remove(int jid); }\n\tSYS_CLOSEFROM                = 509 // { int closefrom(int lowfd); }\n\tSYS___SEMCTL                 = 510 // { int __semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_MSGCTL                   = 511 // { int msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_SHMCTL                   = 512 // { int shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_LPATHCONF                = 513 // { int lpathconf(char *path, int name); }\n\tSYS___CAP_RIGHTS_GET         = 515 // { int __cap_rights_get(int version, int fd, cap_rights_t *rightsp); }\n\tSYS_CAP_ENTER                = 516 // { int cap_enter(void); }\n\tSYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }\n\tSYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }\n\tSYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }\n\tSYS_PDGETPID                 = 520 // { int pdgetpid(int fd, pid_t *pidp); }\n\tSYS_PSELECT                  = 522 // { int pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *sm); }\n\tSYS_GETLOGINCLASS            = 523 // { int getloginclass(char *namebuf, size_t namelen); }\n\tSYS_SETLOGINCLASS            = 524 // { int setloginclass(const char *namebuf); }\n\tSYS_RCTL_GET_RACCT           = 525 // { int rctl_get_racct(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_GET_RULES           = 526 // { int rctl_get_rules(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_GET_LIMITS          = 527 // { int rctl_get_limits(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_ADD_RULE            = 528 // { int rctl_add_rule(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_REMOVE_RULE         = 529 // { int rctl_remove_rule(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_POSIX_FALLOCATE          = 530 // { int posix_fallocate(int fd, off_t offset, off_t len); }\n\tSYS_POSIX_FADVISE            = 531 // { int posix_fadvise(int fd, off_t offset, off_t len, int advice); }\n\tSYS_WAIT6                    = 532 // { int wait6(idtype_t idtype, id_t id, int *status, int options, struct __wrusage *wrusage, siginfo_t *info); }\n\tSYS_CAP_RIGHTS_LIMIT         = 533 // { int cap_rights_limit(int fd, cap_rights_t *rightsp); }\n\tSYS_CAP_IOCTLS_LIMIT         = 534 // { int cap_ioctls_limit(int fd, const u_long *cmds, size_t ncmds); }\n\tSYS_CAP_IOCTLS_GET           = 535 // { ssize_t cap_ioctls_get(int fd, u_long *cmds, size_t maxcmds); }\n\tSYS_CAP_FCNTLS_LIMIT         = 536 // { int cap_fcntls_limit(int fd, uint32_t fcntlrights); }\n\tSYS_CAP_FCNTLS_GET           = 537 // { int cap_fcntls_get(int fd, uint32_t *fcntlrightsp); }\n\tSYS_BINDAT                   = 538 // { int bindat(int fd, int s, caddr_t name, int namelen); }\n\tSYS_CONNECTAT                = 539 // { int connectat(int fd, int s, caddr_t name, int namelen); }\n\tSYS_CHFLAGSAT                = 540 // { int chflagsat(int fd, const char *path, u_long flags, int atflag); }\n\tSYS_ACCEPT4                  = 541 // { int accept4(int s, struct sockaddr * __restrict name, __socklen_t * __restrict anamelen, int flags); }\n\tSYS_PIPE2                    = 542 // { int pipe2(int *fildes, int flags); }\n\tSYS_AIO_MLOCK                = 543 // { int aio_mlock(struct aiocb *aiocbp); }\n\tSYS_PROCCTL                  = 544 // { int procctl(idtype_t idtype, id_t id, int com, void *data); }\n\tSYS_PPOLL                    = 545 // { int ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *set); }\n\tSYS_FUTIMENS                 = 546 // { int futimens(int fd, struct timespec *times); }\n\tSYS_UTIMENSAT                = 547 // { int utimensat(int fd, char *path, struct timespec *times, int flag); }\n\tSYS_NUMA_GETAFFINITY         = 548 // { int numa_getaffinity(cpuwhich_t which, id_t id, struct vm_domain_policy_entry *policy); }\n\tSYS_NUMA_SETAFFINITY         = 549 // { int numa_setaffinity(cpuwhich_t which, id_t id, const struct vm_domain_policy_entry *policy); }\n\tSYS_FDATASYNC                = 550 // { int fdatasync(int fd); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go",
    "content": "// go run mksysnum.go https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,freebsd\n\npackage unix\n\nconst (\n\t// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int\n\tSYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void\n\tSYS_FORK                     = 2   // { int fork(void); }\n\tSYS_READ                     = 3   // { ssize_t read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE                    = 4   // { ssize_t write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN                     = 5   // { int open(char *path, int flags, int mode); }\n\tSYS_CLOSE                    = 6   // { int close(int fd); }\n\tSYS_WAIT4                    = 7   // { int wait4(int pid, int *status, int options, struct rusage *rusage); }\n\tSYS_LINK                     = 9   // { int link(char *path, char *link); }\n\tSYS_UNLINK                   = 10  // { int unlink(char *path); }\n\tSYS_CHDIR                    = 12  // { int chdir(char *path); }\n\tSYS_FCHDIR                   = 13  // { int fchdir(int fd); }\n\tSYS_MKNOD                    = 14  // { int mknod(char *path, int mode, int dev); }\n\tSYS_CHMOD                    = 15  // { int chmod(char *path, int mode); }\n\tSYS_CHOWN                    = 16  // { int chown(char *path, int uid, int gid); }\n\tSYS_OBREAK                   = 17  // { int obreak(char *nsize); } break obreak_args int\n\tSYS_GETPID                   = 20  // { pid_t getpid(void); }\n\tSYS_MOUNT                    = 21  // { int mount(char *type, char *path, int flags, caddr_t data); }\n\tSYS_UNMOUNT                  = 22  // { int unmount(char *path, int flags); }\n\tSYS_SETUID                   = 23  // { int setuid(uid_t uid); }\n\tSYS_GETUID                   = 24  // { uid_t getuid(void); }\n\tSYS_GETEUID                  = 25  // { uid_t geteuid(void); }\n\tSYS_PTRACE                   = 26  // { int ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG                  = 27  // { int recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG                  = 28  // { int sendmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_RECVFROM                 = 29  // { int recvfrom(int s, caddr_t buf, size_t len, int flags, struct sockaddr * __restrict from, __socklen_t * __restrict fromlenaddr); }\n\tSYS_ACCEPT                   = 30  // { int accept(int s, struct sockaddr * __restrict name, __socklen_t * __restrict anamelen); }\n\tSYS_GETPEERNAME              = 31  // { int getpeername(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }\n\tSYS_GETSOCKNAME              = 32  // { int getsockname(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }\n\tSYS_ACCESS                   = 33  // { int access(char *path, int amode); }\n\tSYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }\n\tSYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }\n\tSYS_SYNC                     = 36  // { int sync(void); }\n\tSYS_KILL                     = 37  // { int kill(int pid, int signum); }\n\tSYS_GETPPID                  = 39  // { pid_t getppid(void); }\n\tSYS_DUP                      = 41  // { int dup(u_int fd); }\n\tSYS_PIPE                     = 42  // { int pipe(void); }\n\tSYS_GETEGID                  = 43  // { gid_t getegid(void); }\n\tSYS_PROFIL                   = 44  // { int profil(caddr_t samples, size_t size, size_t offset, u_int scale); }\n\tSYS_KTRACE                   = 45  // { int ktrace(const char *fname, int ops, int facs, int pid); }\n\tSYS_GETGID                   = 47  // { gid_t getgid(void); }\n\tSYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int namelen); }\n\tSYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }\n\tSYS_ACCT                     = 51  // { int acct(char *path); }\n\tSYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }\n\tSYS_IOCTL                    = 54  // { int ioctl(int fd, u_long com, caddr_t data); }\n\tSYS_REBOOT                   = 55  // { int reboot(int opt); }\n\tSYS_REVOKE                   = 56  // { int revoke(char *path); }\n\tSYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }\n\tSYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, size_t count); }\n\tSYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, char **envv); }\n\tSYS_UMASK                    = 60  // { int umask(int newmask); } umask umask_args int\n\tSYS_CHROOT                   = 61  // { int chroot(char *path); }\n\tSYS_MSYNC                    = 65  // { int msync(void *addr, size_t len, int flags); }\n\tSYS_VFORK                    = 66  // { int vfork(void); }\n\tSYS_SBRK                     = 69  // { int sbrk(int incr); }\n\tSYS_SSTK                     = 70  // { int sstk(int incr); }\n\tSYS_OVADVISE                 = 72  // { int ovadvise(int anom); } vadvise ovadvise_args int\n\tSYS_MUNMAP                   = 73  // { int munmap(void *addr, size_t len); }\n\tSYS_MPROTECT                 = 74  // { int mprotect(const void *addr, size_t len, int prot); }\n\tSYS_MADVISE                  = 75  // { int madvise(void *addr, size_t len, int behav); }\n\tSYS_MINCORE                  = 78  // { int mincore(const void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS                = 79  // { int getgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS                = 80  // { int setgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_GETPGRP                  = 81  // { int getpgrp(void); }\n\tSYS_SETPGID                  = 82  // { int setpgid(int pid, int pgid); }\n\tSYS_SETITIMER                = 83  // { int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_SWAPON                   = 85  // { int swapon(char *name); }\n\tSYS_GETITIMER                = 86  // { int getitimer(u_int which, struct itimerval *itv); }\n\tSYS_GETDTABLESIZE            = 89  // { int getdtablesize(void); }\n\tSYS_DUP2                     = 90  // { int dup2(u_int from, u_int to); }\n\tSYS_FCNTL                    = 92  // { int fcntl(int fd, int cmd, long arg); }\n\tSYS_SELECT                   = 93  // { int select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_FSYNC                    = 95  // { int fsync(int fd); }\n\tSYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }\n\tSYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }\n\tSYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }\n\tSYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }\n\tSYS_BIND                     = 104 // { int bind(int s, caddr_t name, int namelen); }\n\tSYS_SETSOCKOPT               = 105 // { int setsockopt(int s, int level, int name, caddr_t val, int valsize); }\n\tSYS_LISTEN                   = 106 // { int listen(int s, int backlog); }\n\tSYS_GETTIMEOFDAY             = 116 // { int gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_GETRUSAGE                = 117 // { int getrusage(int who, struct rusage *rusage); }\n\tSYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, caddr_t val, int *avalsize); }\n\tSYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, struct timezone *tzp); }\n\tSYS_FCHOWN                   = 123 // { int fchown(int fd, int uid, int gid); }\n\tSYS_FCHMOD                   = 124 // { int fchmod(int fd, int mode); }\n\tSYS_SETREUID                 = 126 // { int setreuid(int ruid, int euid); }\n\tSYS_SETREGID                 = 127 // { int setregid(int rgid, int egid); }\n\tSYS_RENAME                   = 128 // { int rename(char *from, char *to); }\n\tSYS_FLOCK                    = 131 // { int flock(int fd, int how); }\n\tSYS_MKFIFO                   = 132 // { int mkfifo(char *path, int mode); }\n\tSYS_SENDTO                   = 133 // { int sendto(int s, caddr_t buf, size_t len, int flags, caddr_t to, int tolen); }\n\tSYS_SHUTDOWN                 = 134 // { int shutdown(int s, int how); }\n\tSYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }\n\tSYS_RMDIR                    = 137 // { int rmdir(char *path); }\n\tSYS_UTIMES                   = 138 // { int utimes(char *path, struct timeval *tptr); }\n\tSYS_ADJTIME                  = 140 // { int adjtime(struct timeval *delta, struct timeval *olddelta); }\n\tSYS_SETSID                   = 147 // { int setsid(void); }\n\tSYS_QUOTACTL                 = 148 // { int quotactl(char *path, int cmd, int uid, caddr_t arg); }\n\tSYS_NLM_SYSCALL              = 154 // { int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }\n\tSYS_NFSSVC                   = 155 // { int nfssvc(int flag, caddr_t argp); }\n\tSYS_LGETFH                   = 160 // { int lgetfh(char *fname, struct fhandle *fhp); }\n\tSYS_GETFH                    = 161 // { int getfh(char *fname, struct fhandle *fhp); }\n\tSYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }\n\tSYS_RTPRIO                   = 166 // { int rtprio(int function, pid_t pid, struct rtprio *rtp); }\n\tSYS_SEMSYS                   = 169 // { int semsys(int which, int a2, int a3, int a4, int a5); }\n\tSYS_MSGSYS                   = 170 // { int msgsys(int which, int a2, int a3, int a4, int a5, int a6); }\n\tSYS_SHMSYS                   = 171 // { int shmsys(int which, int a2, int a3, int a4); }\n\tSYS_SETFIB                   = 175 // { int setfib(int fibnum); }\n\tSYS_NTP_ADJTIME              = 176 // { int ntp_adjtime(struct timex *tp); }\n\tSYS_SETGID                   = 181 // { int setgid(gid_t gid); }\n\tSYS_SETEGID                  = 182 // { int setegid(gid_t egid); }\n\tSYS_SETEUID                  = 183 // { int seteuid(uid_t euid); }\n\tSYS_STAT                     = 188 // { int stat(char *path, struct stat *ub); }\n\tSYS_FSTAT                    = 189 // { int fstat(int fd, struct stat *sb); }\n\tSYS_LSTAT                    = 190 // { int lstat(char *path, struct stat *ub); }\n\tSYS_PATHCONF                 = 191 // { int pathconf(char *path, int name); }\n\tSYS_FPATHCONF                = 192 // { int fpathconf(int fd, int name); }\n\tSYS_GETRLIMIT                = 194 // { int getrlimit(u_int which, struct rlimit *rlp); } getrlimit __getrlimit_args int\n\tSYS_SETRLIMIT                = 195 // { int setrlimit(u_int which, struct rlimit *rlp); } setrlimit __setrlimit_args int\n\tSYS_GETDIRENTRIES            = 196 // { int getdirentries(int fd, char *buf, u_int count, long *basep); }\n\tSYS___SYSCTL                 = 202 // { int __sysctl(int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); } __sysctl sysctl_args int\n\tSYS_MLOCK                    = 203 // { int mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK                  = 204 // { int munlock(const void *addr, size_t len); }\n\tSYS_UNDELETE                 = 205 // { int undelete(char *path); }\n\tSYS_FUTIMES                  = 206 // { int futimes(int fd, struct timeval *tptr); }\n\tSYS_GETPGID                  = 207 // { int getpgid(pid_t pid); }\n\tSYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_SEMGET                   = 221 // { int semget(key_t key, int nsems, int semflg); }\n\tSYS_SEMOP                    = 222 // { int semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }\n\tSYS_MSGSND                   = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV                   = 227 // { int msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT                    = 228 // { int shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT                    = 230 // { int shmdt(const void *shmaddr); }\n\tSYS_SHMGET                   = 231 // { int shmget(key_t key, size_t size, int shmflg); }\n\tSYS_CLOCK_GETTIME            = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME            = 233 // { int clock_settime( clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES             = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_KTIMER_CREATE            = 235 // { int ktimer_create(clockid_t clock_id, struct sigevent *evp, int *timerid); }\n\tSYS_KTIMER_DELETE            = 236 // { int ktimer_delete(int timerid); }\n\tSYS_KTIMER_SETTIME           = 237 // { int ktimer_settime(int timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }\n\tSYS_KTIMER_GETTIME           = 238 // { int ktimer_gettime(int timerid, struct itimerspec *value); }\n\tSYS_KTIMER_GETOVERRUN        = 239 // { int ktimer_getoverrun(int timerid); }\n\tSYS_NANOSLEEP                = 240 // { int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_FFCLOCK_GETCOUNTER       = 241 // { int ffclock_getcounter(ffcounter *ffcount); }\n\tSYS_FFCLOCK_SETESTIMATE      = 242 // { int ffclock_setestimate( struct ffclock_estimate *cest); }\n\tSYS_FFCLOCK_GETESTIMATE      = 243 // { int ffclock_getestimate( struct ffclock_estimate *cest); }\n\tSYS_CLOCK_NANOSLEEP          = 244 // { int clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_CLOCK_GETCPUCLOCKID2     = 247 // { int clock_getcpuclockid2(id_t id,int which, clockid_t *clock_id); }\n\tSYS_NTP_GETTIME              = 248 // { int ntp_gettime(struct ntptimeval *ntvp); }\n\tSYS_MINHERIT                 = 250 // { int minherit(void *addr, size_t len, int inherit); }\n\tSYS_RFORK                    = 251 // { int rfork(int flags); }\n\tSYS_OPENBSD_POLL             = 252 // { int openbsd_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID                = 253 // { int issetugid(void); }\n\tSYS_LCHOWN                   = 254 // { int lchown(char *path, int uid, int gid); }\n\tSYS_AIO_READ                 = 255 // { int aio_read(struct aiocb *aiocbp); }\n\tSYS_AIO_WRITE                = 256 // { int aio_write(struct aiocb *aiocbp); }\n\tSYS_LIO_LISTIO               = 257 // { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }\n\tSYS_GETDENTS                 = 272 // { int getdents(int fd, char *buf, size_t count); }\n\tSYS_LCHMOD                   = 274 // { int lchmod(char *path, mode_t mode); }\n\tSYS_LUTIMES                  = 276 // { int lutimes(char *path, struct timeval *tptr); }\n\tSYS_NSTAT                    = 278 // { int nstat(char *path, struct nstat *ub); }\n\tSYS_NFSTAT                   = 279 // { int nfstat(int fd, struct nstat *sb); }\n\tSYS_NLSTAT                   = 280 // { int nlstat(char *path, struct nstat *ub); }\n\tSYS_PREADV                   = 289 // { ssize_t preadv(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }\n\tSYS_PWRITEV                  = 290 // { ssize_t pwritev(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }\n\tSYS_FHOPEN                   = 298 // { int fhopen(const struct fhandle *u_fhp, int flags); }\n\tSYS_FHSTAT                   = 299 // { int fhstat(const struct fhandle *u_fhp, struct stat *sb); }\n\tSYS_MODNEXT                  = 300 // { int modnext(int modid); }\n\tSYS_MODSTAT                  = 301 // { int modstat(int modid, struct module_stat *stat); }\n\tSYS_MODFNEXT                 = 302 // { int modfnext(int modid); }\n\tSYS_MODFIND                  = 303 // { int modfind(const char *name); }\n\tSYS_KLDLOAD                  = 304 // { int kldload(const char *file); }\n\tSYS_KLDUNLOAD                = 305 // { int kldunload(int fileid); }\n\tSYS_KLDFIND                  = 306 // { int kldfind(const char *file); }\n\tSYS_KLDNEXT                  = 307 // { int kldnext(int fileid); }\n\tSYS_KLDSTAT                  = 308 // { int kldstat(int fileid, struct kld_file_stat* stat); }\n\tSYS_KLDFIRSTMOD              = 309 // { int kldfirstmod(int fileid); }\n\tSYS_GETSID                   = 310 // { int getsid(pid_t pid); }\n\tSYS_SETRESUID                = 311 // { int setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_SETRESGID                = 312 // { int setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_AIO_RETURN               = 314 // { ssize_t aio_return(struct aiocb *aiocbp); }\n\tSYS_AIO_SUSPEND              = 315 // { int aio_suspend( struct aiocb * const * aiocbp, int nent, const struct timespec *timeout); }\n\tSYS_AIO_CANCEL               = 316 // { int aio_cancel(int fd, struct aiocb *aiocbp); }\n\tSYS_AIO_ERROR                = 317 // { int aio_error(struct aiocb *aiocbp); }\n\tSYS_YIELD                    = 321 // { int yield(void); }\n\tSYS_MLOCKALL                 = 324 // { int mlockall(int how); }\n\tSYS_MUNLOCKALL               = 325 // { int munlockall(void); }\n\tSYS___GETCWD                 = 326 // { int __getcwd(char *buf, u_int buflen); }\n\tSYS_SCHED_SETPARAM           = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }\n\tSYS_SCHED_GETPARAM           = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }\n\tSYS_SCHED_SETSCHEDULER       = 329 // { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }\n\tSYS_SCHED_GETSCHEDULER       = 330 // { int sched_getscheduler (pid_t pid); }\n\tSYS_SCHED_YIELD              = 331 // { int sched_yield (void); }\n\tSYS_SCHED_GET_PRIORITY_MAX   = 332 // { int sched_get_priority_max (int policy); }\n\tSYS_SCHED_GET_PRIORITY_MIN   = 333 // { int sched_get_priority_min (int policy); }\n\tSYS_SCHED_RR_GET_INTERVAL    = 334 // { int sched_rr_get_interval (pid_t pid, struct timespec *interval); }\n\tSYS_UTRACE                   = 335 // { int utrace(const void *addr, size_t len); }\n\tSYS_KLDSYM                   = 337 // { int kldsym(int fileid, int cmd, void *data); }\n\tSYS_JAIL                     = 338 // { int jail(struct jail *jail); }\n\tSYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, const sigset_t *set, sigset_t *oset); }\n\tSYS_SIGSUSPEND               = 341 // { int sigsuspend(const sigset_t *sigmask); }\n\tSYS_SIGPENDING               = 343 // { int sigpending(sigset_t *set); }\n\tSYS_SIGTIMEDWAIT             = 345 // { int sigtimedwait(const sigset_t *set, siginfo_t *info, const struct timespec *timeout); }\n\tSYS_SIGWAITINFO              = 346 // { int sigwaitinfo(const sigset_t *set, siginfo_t *info); }\n\tSYS___ACL_GET_FILE           = 347 // { int __acl_get_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FILE           = 348 // { int __acl_set_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_GET_FD             = 349 // { int __acl_get_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FD             = 350 // { int __acl_set_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_DELETE_FILE        = 351 // { int __acl_delete_file(const char *path, acl_type_t type); }\n\tSYS___ACL_DELETE_FD          = 352 // { int __acl_delete_fd(int filedes, acl_type_t type); }\n\tSYS___ACL_ACLCHECK_FILE      = 353 // { int __acl_aclcheck_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_ACLCHECK_FD        = 354 // { int __acl_aclcheck_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS_EXTATTRCTL               = 355 // { int extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FILE         = 356 // { ssize_t extattr_set_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FILE         = 357 // { ssize_t extattr_get_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FILE      = 358 // { int extattr_delete_file(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_AIO_WAITCOMPLETE         = 359 // { ssize_t aio_waitcomplete( struct aiocb **aiocbp, struct timespec *timeout); }\n\tSYS_GETRESUID                = 360 // { int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_GETRESGID                = 361 // { int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_KQUEUE                   = 362 // { int kqueue(void); }\n\tSYS_KEVENT                   = 363 // { int kevent(int fd, struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_EXTATTR_SET_FD           = 371 // { ssize_t extattr_set_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FD           = 372 // { ssize_t extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FD        = 373 // { int extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }\n\tSYS___SETUGID                = 374 // { int __setugid(int flag); }\n\tSYS_EACCESS                  = 376 // { int eaccess(char *path, int amode); }\n\tSYS_NMOUNT                   = 378 // { int nmount(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS___MAC_GET_PROC           = 384 // { int __mac_get_proc(struct mac *mac_p); }\n\tSYS___MAC_SET_PROC           = 385 // { int __mac_set_proc(struct mac *mac_p); }\n\tSYS___MAC_GET_FD             = 386 // { int __mac_get_fd(int fd, struct mac *mac_p); }\n\tSYS___MAC_GET_FILE           = 387 // { int __mac_get_file(const char *path_p, struct mac *mac_p); }\n\tSYS___MAC_SET_FD             = 388 // { int __mac_set_fd(int fd, struct mac *mac_p); }\n\tSYS___MAC_SET_FILE           = 389 // { int __mac_set_file(const char *path_p, struct mac *mac_p); }\n\tSYS_KENV                     = 390 // { int kenv(int what, const char *name, char *value, int len); }\n\tSYS_LCHFLAGS                 = 391 // { int lchflags(const char *path, u_long flags); }\n\tSYS_UUIDGEN                  = 392 // { int uuidgen(struct uuid *store, int count); }\n\tSYS_SENDFILE                 = 393 // { int sendfile(int fd, int s, off_t offset, size_t nbytes, struct sf_hdtr *hdtr, off_t *sbytes, int flags); }\n\tSYS_MAC_SYSCALL              = 394 // { int mac_syscall(const char *policy, int call, void *arg); }\n\tSYS_GETFSSTAT                = 395 // { int getfsstat(struct statfs *buf, long bufsize, int mode); }\n\tSYS_STATFS                   = 396 // { int statfs(char *path, struct statfs *buf); }\n\tSYS_FSTATFS                  = 397 // { int fstatfs(int fd, struct statfs *buf); }\n\tSYS_FHSTATFS                 = 398 // { int fhstatfs(const struct fhandle *u_fhp, struct statfs *buf); }\n\tSYS_KSEM_CLOSE               = 400 // { int ksem_close(semid_t id); }\n\tSYS_KSEM_POST                = 401 // { int ksem_post(semid_t id); }\n\tSYS_KSEM_WAIT                = 402 // { int ksem_wait(semid_t id); }\n\tSYS_KSEM_TRYWAIT             = 403 // { int ksem_trywait(semid_t id); }\n\tSYS_KSEM_INIT                = 404 // { int ksem_init(semid_t *idp, unsigned int value); }\n\tSYS_KSEM_OPEN                = 405 // { int ksem_open(semid_t *idp, const char *name, int oflag, mode_t mode, unsigned int value); }\n\tSYS_KSEM_UNLINK              = 406 // { int ksem_unlink(const char *name); }\n\tSYS_KSEM_GETVALUE            = 407 // { int ksem_getvalue(semid_t id, int *val); }\n\tSYS_KSEM_DESTROY             = 408 // { int ksem_destroy(semid_t id); }\n\tSYS___MAC_GET_PID            = 409 // { int __mac_get_pid(pid_t pid, struct mac *mac_p); }\n\tSYS___MAC_GET_LINK           = 410 // { int __mac_get_link(const char *path_p, struct mac *mac_p); }\n\tSYS___MAC_SET_LINK           = 411 // { int __mac_set_link(const char *path_p, struct mac *mac_p); }\n\tSYS_EXTATTR_SET_LINK         = 412 // { ssize_t extattr_set_link( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_LINK         = 413 // { ssize_t extattr_get_link( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_LINK      = 414 // { int extattr_delete_link( const char *path, int attrnamespace, const char *attrname); }\n\tSYS___MAC_EXECVE             = 415 // { int __mac_execve(char *fname, char **argv, char **envv, struct mac *mac_p); }\n\tSYS_SIGACTION                = 416 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }\n\tSYS_SIGRETURN                = 417 // { int sigreturn( const struct __ucontext *sigcntxp); }\n\tSYS_GETCONTEXT               = 421 // { int getcontext(struct __ucontext *ucp); }\n\tSYS_SETCONTEXT               = 422 // { int setcontext( const struct __ucontext *ucp); }\n\tSYS_SWAPCONTEXT              = 423 // { int swapcontext(struct __ucontext *oucp, const struct __ucontext *ucp); }\n\tSYS_SWAPOFF                  = 424 // { int swapoff(const char *name); }\n\tSYS___ACL_GET_LINK           = 425 // { int __acl_get_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_LINK           = 426 // { int __acl_set_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_DELETE_LINK        = 427 // { int __acl_delete_link(const char *path, acl_type_t type); }\n\tSYS___ACL_ACLCHECK_LINK      = 428 // { int __acl_aclcheck_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS_SIGWAIT                  = 429 // { int sigwait(const sigset_t *set, int *sig); }\n\tSYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, int flags); }\n\tSYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }\n\tSYS_THR_SELF                 = 432 // { int thr_self(long *id); }\n\tSYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }\n\tSYS_JAIL_ATTACH              = 436 // { int jail_attach(int jid); }\n\tSYS_EXTATTR_LIST_FD          = 437 // { ssize_t extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_FILE        = 438 // { ssize_t extattr_list_file( const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_LINK        = 439 // { ssize_t extattr_list_link( const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_KSEM_TIMEDWAIT           = 441 // { int ksem_timedwait(semid_t id, const struct timespec *abstime); }\n\tSYS_THR_SUSPEND              = 442 // { int thr_suspend( const struct timespec *timeout); }\n\tSYS_THR_WAKE                 = 443 // { int thr_wake(long id); }\n\tSYS_KLDUNLOADF               = 444 // { int kldunloadf(int fileid, int flags); }\n\tSYS_AUDIT                    = 445 // { int audit(const void *record, u_int length); }\n\tSYS_AUDITON                  = 446 // { int auditon(int cmd, void *data, u_int length); }\n\tSYS_GETAUID                  = 447 // { int getauid(uid_t *auid); }\n\tSYS_SETAUID                  = 448 // { int setauid(uid_t *auid); }\n\tSYS_GETAUDIT                 = 449 // { int getaudit(struct auditinfo *auditinfo); }\n\tSYS_SETAUDIT                 = 450 // { int setaudit(struct auditinfo *auditinfo); }\n\tSYS_GETAUDIT_ADDR            = 451 // { int getaudit_addr( struct auditinfo_addr *auditinfo_addr, u_int length); }\n\tSYS_SETAUDIT_ADDR            = 452 // { int setaudit_addr( struct auditinfo_addr *auditinfo_addr, u_int length); }\n\tSYS_AUDITCTL                 = 453 // { int auditctl(char *path); }\n\tSYS__UMTX_OP                 = 454 // { int _umtx_op(void *obj, int op, u_long val, void *uaddr1, void *uaddr2); }\n\tSYS_THR_NEW                  = 455 // { int thr_new(struct thr_param *param, int param_size); }\n\tSYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }\n\tSYS_KMQ_OPEN                 = 457 // { int kmq_open(const char *path, int flags, mode_t mode, const struct mq_attr *attr); }\n\tSYS_KMQ_SETATTR              = 458 // { int kmq_setattr(int mqd,\t\tconst struct mq_attr *attr,\t\tstruct mq_attr *oattr); }\n\tSYS_KMQ_TIMEDRECEIVE         = 459 // { int kmq_timedreceive(int mqd,\tchar *msg_ptr, size_t msg_len,\tunsigned *msg_prio,\t\t\tconst struct timespec *abs_timeout); }\n\tSYS_KMQ_TIMEDSEND            = 460 // { int kmq_timedsend(int mqd,\t\tconst char *msg_ptr, size_t msg_len,unsigned msg_prio,\t\t\tconst struct timespec *abs_timeout);}\n\tSYS_KMQ_NOTIFY               = 461 // { int kmq_notify(int mqd,\t\tconst struct sigevent *sigev); }\n\tSYS_KMQ_UNLINK               = 462 // { int kmq_unlink(const char *path); }\n\tSYS_ABORT2                   = 463 // { int abort2(const char *why, int nargs, void **args); }\n\tSYS_THR_SET_NAME             = 464 // { int thr_set_name(long id, const char *name); }\n\tSYS_AIO_FSYNC                = 465 // { int aio_fsync(int op, struct aiocb *aiocbp); }\n\tSYS_RTPRIO_THREAD            = 466 // { int rtprio_thread(int function, lwpid_t lwpid, struct rtprio *rtp); }\n\tSYS_SCTP_PEELOFF             = 471 // { int sctp_peeloff(int sd, uint32_t name); }\n\tSYS_SCTP_GENERIC_SENDMSG     = 472 // { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, caddr_t to, __socklen_t tolen, struct sctp_sndrcvinfo *sinfo, int flags); }\n\tSYS_SCTP_GENERIC_SENDMSG_IOV = 473 // { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, caddr_t to, __socklen_t tolen, struct sctp_sndrcvinfo *sinfo, int flags); }\n\tSYS_SCTP_GENERIC_RECVMSG     = 474 // { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, struct sockaddr * from, __socklen_t *fromlenaddr, struct sctp_sndrcvinfo *sinfo, int *msg_flags); }\n\tSYS_PREAD                    = 475 // { ssize_t pread(int fd, void *buf, size_t nbyte, off_t offset); }\n\tSYS_PWRITE                   = 476 // { ssize_t pwrite(int fd, const void *buf, size_t nbyte, off_t offset); }\n\tSYS_MMAP                     = 477 // { caddr_t mmap(caddr_t addr, size_t len, int prot, int flags, int fd, off_t pos); }\n\tSYS_LSEEK                    = 478 // { off_t lseek(int fd, off_t offset, int whence); }\n\tSYS_TRUNCATE                 = 479 // { int truncate(char *path, off_t length); }\n\tSYS_FTRUNCATE                = 480 // { int ftruncate(int fd, off_t length); }\n\tSYS_THR_KILL2                = 481 // { int thr_kill2(pid_t pid, long id, int sig); }\n\tSYS_SHM_OPEN                 = 482 // { int shm_open(const char *path, int flags, mode_t mode); }\n\tSYS_SHM_UNLINK               = 483 // { int shm_unlink(const char *path); }\n\tSYS_CPUSET                   = 484 // { int cpuset(cpusetid_t *setid); }\n\tSYS_CPUSET_SETID             = 485 // { int cpuset_setid(cpuwhich_t which, id_t id, cpusetid_t setid); }\n\tSYS_CPUSET_GETID             = 486 // { int cpuset_getid(cpulevel_t level, cpuwhich_t which, id_t id, cpusetid_t *setid); }\n\tSYS_CPUSET_GETAFFINITY       = 487 // { int cpuset_getaffinity(cpulevel_t level, cpuwhich_t which, id_t id, size_t cpusetsize, cpuset_t *mask); }\n\tSYS_CPUSET_SETAFFINITY       = 488 // { int cpuset_setaffinity(cpulevel_t level, cpuwhich_t which, id_t id, size_t cpusetsize, const cpuset_t *mask); }\n\tSYS_FACCESSAT                = 489 // { int faccessat(int fd, char *path, int amode, int flag); }\n\tSYS_FCHMODAT                 = 490 // { int fchmodat(int fd, char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT                 = 491 // { int fchownat(int fd, char *path, uid_t uid, gid_t gid, int flag); }\n\tSYS_FEXECVE                  = 492 // { int fexecve(int fd, char **argv, char **envv); }\n\tSYS_FSTATAT                  = 493 // { int fstatat(int fd, char *path, struct stat *buf, int flag); }\n\tSYS_FUTIMESAT                = 494 // { int futimesat(int fd, char *path, struct timeval *times); }\n\tSYS_LINKAT                   = 495 // { int linkat(int fd1, char *path1, int fd2, char *path2, int flag); }\n\tSYS_MKDIRAT                  = 496 // { int mkdirat(int fd, char *path, mode_t mode); }\n\tSYS_MKFIFOAT                 = 497 // { int mkfifoat(int fd, char *path, mode_t mode); }\n\tSYS_MKNODAT                  = 498 // { int mknodat(int fd, char *path, mode_t mode, dev_t dev); }\n\tSYS_OPENAT                   = 499 // { int openat(int fd, char *path, int flag, mode_t mode); }\n\tSYS_READLINKAT               = 500 // { int readlinkat(int fd, char *path, char *buf, size_t bufsize); }\n\tSYS_RENAMEAT                 = 501 // { int renameat(int oldfd, char *old, int newfd, char *new); }\n\tSYS_SYMLINKAT                = 502 // { int symlinkat(char *path1, int fd, char *path2); }\n\tSYS_UNLINKAT                 = 503 // { int unlinkat(int fd, char *path, int flag); }\n\tSYS_POSIX_OPENPT             = 504 // { int posix_openpt(int flags); }\n\tSYS_GSSD_SYSCALL             = 505 // { int gssd_syscall(char *path); }\n\tSYS_JAIL_GET                 = 506 // { int jail_get(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS_JAIL_SET                 = 507 // { int jail_set(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS_JAIL_REMOVE              = 508 // { int jail_remove(int jid); }\n\tSYS_CLOSEFROM                = 509 // { int closefrom(int lowfd); }\n\tSYS___SEMCTL                 = 510 // { int __semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_MSGCTL                   = 511 // { int msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_SHMCTL                   = 512 // { int shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_LPATHCONF                = 513 // { int lpathconf(char *path, int name); }\n\tSYS___CAP_RIGHTS_GET         = 515 // { int __cap_rights_get(int version, int fd, cap_rights_t *rightsp); }\n\tSYS_CAP_ENTER                = 516 // { int cap_enter(void); }\n\tSYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }\n\tSYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }\n\tSYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }\n\tSYS_PDGETPID                 = 520 // { int pdgetpid(int fd, pid_t *pidp); }\n\tSYS_PSELECT                  = 522 // { int pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *sm); }\n\tSYS_GETLOGINCLASS            = 523 // { int getloginclass(char *namebuf, size_t namelen); }\n\tSYS_SETLOGINCLASS            = 524 // { int setloginclass(const char *namebuf); }\n\tSYS_RCTL_GET_RACCT           = 525 // { int rctl_get_racct(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_GET_RULES           = 526 // { int rctl_get_rules(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_GET_LIMITS          = 527 // { int rctl_get_limits(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_ADD_RULE            = 528 // { int rctl_add_rule(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_REMOVE_RULE         = 529 // { int rctl_remove_rule(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_POSIX_FALLOCATE          = 530 // { int posix_fallocate(int fd, off_t offset, off_t len); }\n\tSYS_POSIX_FADVISE            = 531 // { int posix_fadvise(int fd, off_t offset, off_t len, int advice); }\n\tSYS_WAIT6                    = 532 // { int wait6(idtype_t idtype, id_t id, int *status, int options, struct __wrusage *wrusage, siginfo_t *info); }\n\tSYS_CAP_RIGHTS_LIMIT         = 533 // { int cap_rights_limit(int fd, cap_rights_t *rightsp); }\n\tSYS_CAP_IOCTLS_LIMIT         = 534 // { int cap_ioctls_limit(int fd, const u_long *cmds, size_t ncmds); }\n\tSYS_CAP_IOCTLS_GET           = 535 // { ssize_t cap_ioctls_get(int fd, u_long *cmds, size_t maxcmds); }\n\tSYS_CAP_FCNTLS_LIMIT         = 536 // { int cap_fcntls_limit(int fd, uint32_t fcntlrights); }\n\tSYS_CAP_FCNTLS_GET           = 537 // { int cap_fcntls_get(int fd, uint32_t *fcntlrightsp); }\n\tSYS_BINDAT                   = 538 // { int bindat(int fd, int s, caddr_t name, int namelen); }\n\tSYS_CONNECTAT                = 539 // { int connectat(int fd, int s, caddr_t name, int namelen); }\n\tSYS_CHFLAGSAT                = 540 // { int chflagsat(int fd, const char *path, u_long flags, int atflag); }\n\tSYS_ACCEPT4                  = 541 // { int accept4(int s, struct sockaddr * __restrict name, __socklen_t * __restrict anamelen, int flags); }\n\tSYS_PIPE2                    = 542 // { int pipe2(int *fildes, int flags); }\n\tSYS_AIO_MLOCK                = 543 // { int aio_mlock(struct aiocb *aiocbp); }\n\tSYS_PROCCTL                  = 544 // { int procctl(idtype_t idtype, id_t id, int com, void *data); }\n\tSYS_PPOLL                    = 545 // { int ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *set); }\n\tSYS_FUTIMENS                 = 546 // { int futimens(int fd, struct timespec *times); }\n\tSYS_UTIMENSAT                = 547 // { int utimensat(int fd, char *path, struct timespec *times, int flag); }\n\tSYS_NUMA_GETAFFINITY         = 548 // { int numa_getaffinity(cpuwhich_t which, id_t id, struct vm_domain_policy_entry *policy); }\n\tSYS_NUMA_SETAFFINITY         = 549 // { int numa_setaffinity(cpuwhich_t which, id_t id, const struct vm_domain_policy_entry *policy); }\n\tSYS_FDATASYNC                = 550 // { int fdatasync(int fd); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go",
    "content": "// go run mksysnum.go https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,freebsd\n\npackage unix\n\nconst (\n\t// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int\n\tSYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void\n\tSYS_FORK                     = 2   // { int fork(void); }\n\tSYS_READ                     = 3   // { ssize_t read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE                    = 4   // { ssize_t write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN                     = 5   // { int open(char *path, int flags, int mode); }\n\tSYS_CLOSE                    = 6   // { int close(int fd); }\n\tSYS_WAIT4                    = 7   // { int wait4(int pid, int *status, int options, struct rusage *rusage); }\n\tSYS_LINK                     = 9   // { int link(char *path, char *link); }\n\tSYS_UNLINK                   = 10  // { int unlink(char *path); }\n\tSYS_CHDIR                    = 12  // { int chdir(char *path); }\n\tSYS_FCHDIR                   = 13  // { int fchdir(int fd); }\n\tSYS_MKNOD                    = 14  // { int mknod(char *path, int mode, int dev); }\n\tSYS_CHMOD                    = 15  // { int chmod(char *path, int mode); }\n\tSYS_CHOWN                    = 16  // { int chown(char *path, int uid, int gid); }\n\tSYS_OBREAK                   = 17  // { int obreak(char *nsize); } break obreak_args int\n\tSYS_GETPID                   = 20  // { pid_t getpid(void); }\n\tSYS_MOUNT                    = 21  // { int mount(char *type, char *path, int flags, caddr_t data); }\n\tSYS_UNMOUNT                  = 22  // { int unmount(char *path, int flags); }\n\tSYS_SETUID                   = 23  // { int setuid(uid_t uid); }\n\tSYS_GETUID                   = 24  // { uid_t getuid(void); }\n\tSYS_GETEUID                  = 25  // { uid_t geteuid(void); }\n\tSYS_PTRACE                   = 26  // { int ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG                  = 27  // { int recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG                  = 28  // { int sendmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_RECVFROM                 = 29  // { int recvfrom(int s, caddr_t buf, size_t len, int flags, struct sockaddr * __restrict from, __socklen_t * __restrict fromlenaddr); }\n\tSYS_ACCEPT                   = 30  // { int accept(int s, struct sockaddr * __restrict name, __socklen_t * __restrict anamelen); }\n\tSYS_GETPEERNAME              = 31  // { int getpeername(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }\n\tSYS_GETSOCKNAME              = 32  // { int getsockname(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); }\n\tSYS_ACCESS                   = 33  // { int access(char *path, int amode); }\n\tSYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }\n\tSYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }\n\tSYS_SYNC                     = 36  // { int sync(void); }\n\tSYS_KILL                     = 37  // { int kill(int pid, int signum); }\n\tSYS_GETPPID                  = 39  // { pid_t getppid(void); }\n\tSYS_DUP                      = 41  // { int dup(u_int fd); }\n\tSYS_PIPE                     = 42  // { int pipe(void); }\n\tSYS_GETEGID                  = 43  // { gid_t getegid(void); }\n\tSYS_PROFIL                   = 44  // { int profil(caddr_t samples, size_t size, size_t offset, u_int scale); }\n\tSYS_KTRACE                   = 45  // { int ktrace(const char *fname, int ops, int facs, int pid); }\n\tSYS_GETGID                   = 47  // { gid_t getgid(void); }\n\tSYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int namelen); }\n\tSYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }\n\tSYS_ACCT                     = 51  // { int acct(char *path); }\n\tSYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }\n\tSYS_IOCTL                    = 54  // { int ioctl(int fd, u_long com, caddr_t data); }\n\tSYS_REBOOT                   = 55  // { int reboot(int opt); }\n\tSYS_REVOKE                   = 56  // { int revoke(char *path); }\n\tSYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }\n\tSYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, size_t count); }\n\tSYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, char **envv); }\n\tSYS_UMASK                    = 60  // { int umask(int newmask); } umask umask_args int\n\tSYS_CHROOT                   = 61  // { int chroot(char *path); }\n\tSYS_MSYNC                    = 65  // { int msync(void *addr, size_t len, int flags); }\n\tSYS_VFORK                    = 66  // { int vfork(void); }\n\tSYS_SBRK                     = 69  // { int sbrk(int incr); }\n\tSYS_SSTK                     = 70  // { int sstk(int incr); }\n\tSYS_OVADVISE                 = 72  // { int ovadvise(int anom); } vadvise ovadvise_args int\n\tSYS_MUNMAP                   = 73  // { int munmap(void *addr, size_t len); }\n\tSYS_MPROTECT                 = 74  // { int mprotect(const void *addr, size_t len, int prot); }\n\tSYS_MADVISE                  = 75  // { int madvise(void *addr, size_t len, int behav); }\n\tSYS_MINCORE                  = 78  // { int mincore(const void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS                = 79  // { int getgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS                = 80  // { int setgroups(u_int gidsetsize, gid_t *gidset); }\n\tSYS_GETPGRP                  = 81  // { int getpgrp(void); }\n\tSYS_SETPGID                  = 82  // { int setpgid(int pid, int pgid); }\n\tSYS_SETITIMER                = 83  // { int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_SWAPON                   = 85  // { int swapon(char *name); }\n\tSYS_GETITIMER                = 86  // { int getitimer(u_int which, struct itimerval *itv); }\n\tSYS_GETDTABLESIZE            = 89  // { int getdtablesize(void); }\n\tSYS_DUP2                     = 90  // { int dup2(u_int from, u_int to); }\n\tSYS_FCNTL                    = 92  // { int fcntl(int fd, int cmd, long arg); }\n\tSYS_SELECT                   = 93  // { int select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_FSYNC                    = 95  // { int fsync(int fd); }\n\tSYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }\n\tSYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }\n\tSYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }\n\tSYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }\n\tSYS_BIND                     = 104 // { int bind(int s, caddr_t name, int namelen); }\n\tSYS_SETSOCKOPT               = 105 // { int setsockopt(int s, int level, int name, caddr_t val, int valsize); }\n\tSYS_LISTEN                   = 106 // { int listen(int s, int backlog); }\n\tSYS_GETTIMEOFDAY             = 116 // { int gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_GETRUSAGE                = 117 // { int getrusage(int who, struct rusage *rusage); }\n\tSYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, caddr_t val, int *avalsize); }\n\tSYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, u_int iovcnt); }\n\tSYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, struct timezone *tzp); }\n\tSYS_FCHOWN                   = 123 // { int fchown(int fd, int uid, int gid); }\n\tSYS_FCHMOD                   = 124 // { int fchmod(int fd, int mode); }\n\tSYS_SETREUID                 = 126 // { int setreuid(int ruid, int euid); }\n\tSYS_SETREGID                 = 127 // { int setregid(int rgid, int egid); }\n\tSYS_RENAME                   = 128 // { int rename(char *from, char *to); }\n\tSYS_FLOCK                    = 131 // { int flock(int fd, int how); }\n\tSYS_MKFIFO                   = 132 // { int mkfifo(char *path, int mode); }\n\tSYS_SENDTO                   = 133 // { int sendto(int s, caddr_t buf, size_t len, int flags, caddr_t to, int tolen); }\n\tSYS_SHUTDOWN                 = 134 // { int shutdown(int s, int how); }\n\tSYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }\n\tSYS_RMDIR                    = 137 // { int rmdir(char *path); }\n\tSYS_UTIMES                   = 138 // { int utimes(char *path, struct timeval *tptr); }\n\tSYS_ADJTIME                  = 140 // { int adjtime(struct timeval *delta, struct timeval *olddelta); }\n\tSYS_SETSID                   = 147 // { int setsid(void); }\n\tSYS_QUOTACTL                 = 148 // { int quotactl(char *path, int cmd, int uid, caddr_t arg); }\n\tSYS_NLM_SYSCALL              = 154 // { int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }\n\tSYS_NFSSVC                   = 155 // { int nfssvc(int flag, caddr_t argp); }\n\tSYS_LGETFH                   = 160 // { int lgetfh(char *fname, struct fhandle *fhp); }\n\tSYS_GETFH                    = 161 // { int getfh(char *fname, struct fhandle *fhp); }\n\tSYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }\n\tSYS_RTPRIO                   = 166 // { int rtprio(int function, pid_t pid, struct rtprio *rtp); }\n\tSYS_SEMSYS                   = 169 // { int semsys(int which, int a2, int a3, int a4, int a5); }\n\tSYS_MSGSYS                   = 170 // { int msgsys(int which, int a2, int a3, int a4, int a5, int a6); }\n\tSYS_SHMSYS                   = 171 // { int shmsys(int which, int a2, int a3, int a4); }\n\tSYS_SETFIB                   = 175 // { int setfib(int fibnum); }\n\tSYS_NTP_ADJTIME              = 176 // { int ntp_adjtime(struct timex *tp); }\n\tSYS_SETGID                   = 181 // { int setgid(gid_t gid); }\n\tSYS_SETEGID                  = 182 // { int setegid(gid_t egid); }\n\tSYS_SETEUID                  = 183 // { int seteuid(uid_t euid); }\n\tSYS_STAT                     = 188 // { int stat(char *path, struct stat *ub); }\n\tSYS_FSTAT                    = 189 // { int fstat(int fd, struct stat *sb); }\n\tSYS_LSTAT                    = 190 // { int lstat(char *path, struct stat *ub); }\n\tSYS_PATHCONF                 = 191 // { int pathconf(char *path, int name); }\n\tSYS_FPATHCONF                = 192 // { int fpathconf(int fd, int name); }\n\tSYS_GETRLIMIT                = 194 // { int getrlimit(u_int which, struct rlimit *rlp); } getrlimit __getrlimit_args int\n\tSYS_SETRLIMIT                = 195 // { int setrlimit(u_int which, struct rlimit *rlp); } setrlimit __setrlimit_args int\n\tSYS_GETDIRENTRIES            = 196 // { int getdirentries(int fd, char *buf, u_int count, long *basep); }\n\tSYS___SYSCTL                 = 202 // { int __sysctl(int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); } __sysctl sysctl_args int\n\tSYS_MLOCK                    = 203 // { int mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK                  = 204 // { int munlock(const void *addr, size_t len); }\n\tSYS_UNDELETE                 = 205 // { int undelete(char *path); }\n\tSYS_FUTIMES                  = 206 // { int futimes(int fd, struct timeval *tptr); }\n\tSYS_GETPGID                  = 207 // { int getpgid(pid_t pid); }\n\tSYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_SEMGET                   = 221 // { int semget(key_t key, int nsems, int semflg); }\n\tSYS_SEMOP                    = 222 // { int semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }\n\tSYS_MSGSND                   = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV                   = 227 // { int msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT                    = 228 // { int shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT                    = 230 // { int shmdt(const void *shmaddr); }\n\tSYS_SHMGET                   = 231 // { int shmget(key_t key, size_t size, int shmflg); }\n\tSYS_CLOCK_GETTIME            = 232 // { int clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME            = 233 // { int clock_settime( clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES             = 234 // { int clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_KTIMER_CREATE            = 235 // { int ktimer_create(clockid_t clock_id, struct sigevent *evp, int *timerid); }\n\tSYS_KTIMER_DELETE            = 236 // { int ktimer_delete(int timerid); }\n\tSYS_KTIMER_SETTIME           = 237 // { int ktimer_settime(int timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }\n\tSYS_KTIMER_GETTIME           = 238 // { int ktimer_gettime(int timerid, struct itimerspec *value); }\n\tSYS_KTIMER_GETOVERRUN        = 239 // { int ktimer_getoverrun(int timerid); }\n\tSYS_NANOSLEEP                = 240 // { int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_FFCLOCK_GETCOUNTER       = 241 // { int ffclock_getcounter(ffcounter *ffcount); }\n\tSYS_FFCLOCK_SETESTIMATE      = 242 // { int ffclock_setestimate( struct ffclock_estimate *cest); }\n\tSYS_FFCLOCK_GETESTIMATE      = 243 // { int ffclock_getestimate( struct ffclock_estimate *cest); }\n\tSYS_CLOCK_NANOSLEEP          = 244 // { int clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_CLOCK_GETCPUCLOCKID2     = 247 // { int clock_getcpuclockid2(id_t id,int which, clockid_t *clock_id); }\n\tSYS_NTP_GETTIME              = 248 // { int ntp_gettime(struct ntptimeval *ntvp); }\n\tSYS_MINHERIT                 = 250 // { int minherit(void *addr, size_t len, int inherit); }\n\tSYS_RFORK                    = 251 // { int rfork(int flags); }\n\tSYS_OPENBSD_POLL             = 252 // { int openbsd_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID                = 253 // { int issetugid(void); }\n\tSYS_LCHOWN                   = 254 // { int lchown(char *path, int uid, int gid); }\n\tSYS_AIO_READ                 = 255 // { int aio_read(struct aiocb *aiocbp); }\n\tSYS_AIO_WRITE                = 256 // { int aio_write(struct aiocb *aiocbp); }\n\tSYS_LIO_LISTIO               = 257 // { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }\n\tSYS_GETDENTS                 = 272 // { int getdents(int fd, char *buf, size_t count); }\n\tSYS_LCHMOD                   = 274 // { int lchmod(char *path, mode_t mode); }\n\tSYS_LUTIMES                  = 276 // { int lutimes(char *path, struct timeval *tptr); }\n\tSYS_NSTAT                    = 278 // { int nstat(char *path, struct nstat *ub); }\n\tSYS_NFSTAT                   = 279 // { int nfstat(int fd, struct nstat *sb); }\n\tSYS_NLSTAT                   = 280 // { int nlstat(char *path, struct nstat *ub); }\n\tSYS_PREADV                   = 289 // { ssize_t preadv(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }\n\tSYS_PWRITEV                  = 290 // { ssize_t pwritev(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }\n\tSYS_FHOPEN                   = 298 // { int fhopen(const struct fhandle *u_fhp, int flags); }\n\tSYS_FHSTAT                   = 299 // { int fhstat(const struct fhandle *u_fhp, struct stat *sb); }\n\tSYS_MODNEXT                  = 300 // { int modnext(int modid); }\n\tSYS_MODSTAT                  = 301 // { int modstat(int modid, struct module_stat *stat); }\n\tSYS_MODFNEXT                 = 302 // { int modfnext(int modid); }\n\tSYS_MODFIND                  = 303 // { int modfind(const char *name); }\n\tSYS_KLDLOAD                  = 304 // { int kldload(const char *file); }\n\tSYS_KLDUNLOAD                = 305 // { int kldunload(int fileid); }\n\tSYS_KLDFIND                  = 306 // { int kldfind(const char *file); }\n\tSYS_KLDNEXT                  = 307 // { int kldnext(int fileid); }\n\tSYS_KLDSTAT                  = 308 // { int kldstat(int fileid, struct kld_file_stat* stat); }\n\tSYS_KLDFIRSTMOD              = 309 // { int kldfirstmod(int fileid); }\n\tSYS_GETSID                   = 310 // { int getsid(pid_t pid); }\n\tSYS_SETRESUID                = 311 // { int setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_SETRESGID                = 312 // { int setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_AIO_RETURN               = 314 // { ssize_t aio_return(struct aiocb *aiocbp); }\n\tSYS_AIO_SUSPEND              = 315 // { int aio_suspend( struct aiocb * const * aiocbp, int nent, const struct timespec *timeout); }\n\tSYS_AIO_CANCEL               = 316 // { int aio_cancel(int fd, struct aiocb *aiocbp); }\n\tSYS_AIO_ERROR                = 317 // { int aio_error(struct aiocb *aiocbp); }\n\tSYS_YIELD                    = 321 // { int yield(void); }\n\tSYS_MLOCKALL                 = 324 // { int mlockall(int how); }\n\tSYS_MUNLOCKALL               = 325 // { int munlockall(void); }\n\tSYS___GETCWD                 = 326 // { int __getcwd(char *buf, u_int buflen); }\n\tSYS_SCHED_SETPARAM           = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }\n\tSYS_SCHED_GETPARAM           = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }\n\tSYS_SCHED_SETSCHEDULER       = 329 // { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }\n\tSYS_SCHED_GETSCHEDULER       = 330 // { int sched_getscheduler (pid_t pid); }\n\tSYS_SCHED_YIELD              = 331 // { int sched_yield (void); }\n\tSYS_SCHED_GET_PRIORITY_MAX   = 332 // { int sched_get_priority_max (int policy); }\n\tSYS_SCHED_GET_PRIORITY_MIN   = 333 // { int sched_get_priority_min (int policy); }\n\tSYS_SCHED_RR_GET_INTERVAL    = 334 // { int sched_rr_get_interval (pid_t pid, struct timespec *interval); }\n\tSYS_UTRACE                   = 335 // { int utrace(const void *addr, size_t len); }\n\tSYS_KLDSYM                   = 337 // { int kldsym(int fileid, int cmd, void *data); }\n\tSYS_JAIL                     = 338 // { int jail(struct jail *jail); }\n\tSYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, const sigset_t *set, sigset_t *oset); }\n\tSYS_SIGSUSPEND               = 341 // { int sigsuspend(const sigset_t *sigmask); }\n\tSYS_SIGPENDING               = 343 // { int sigpending(sigset_t *set); }\n\tSYS_SIGTIMEDWAIT             = 345 // { int sigtimedwait(const sigset_t *set, siginfo_t *info, const struct timespec *timeout); }\n\tSYS_SIGWAITINFO              = 346 // { int sigwaitinfo(const sigset_t *set, siginfo_t *info); }\n\tSYS___ACL_GET_FILE           = 347 // { int __acl_get_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FILE           = 348 // { int __acl_set_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_GET_FD             = 349 // { int __acl_get_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_FD             = 350 // { int __acl_set_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_DELETE_FILE        = 351 // { int __acl_delete_file(const char *path, acl_type_t type); }\n\tSYS___ACL_DELETE_FD          = 352 // { int __acl_delete_fd(int filedes, acl_type_t type); }\n\tSYS___ACL_ACLCHECK_FILE      = 353 // { int __acl_aclcheck_file(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_ACLCHECK_FD        = 354 // { int __acl_aclcheck_fd(int filedes, acl_type_t type, struct acl *aclp); }\n\tSYS_EXTATTRCTL               = 355 // { int extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FILE         = 356 // { ssize_t extattr_set_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FILE         = 357 // { ssize_t extattr_get_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FILE      = 358 // { int extattr_delete_file(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_AIO_WAITCOMPLETE         = 359 // { ssize_t aio_waitcomplete( struct aiocb **aiocbp, struct timespec *timeout); }\n\tSYS_GETRESUID                = 360 // { int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_GETRESGID                = 361 // { int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_KQUEUE                   = 362 // { int kqueue(void); }\n\tSYS_KEVENT                   = 363 // { int kevent(int fd, struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_EXTATTR_SET_FD           = 371 // { ssize_t extattr_set_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FD           = 372 // { ssize_t extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FD        = 373 // { int extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }\n\tSYS___SETUGID                = 374 // { int __setugid(int flag); }\n\tSYS_EACCESS                  = 376 // { int eaccess(char *path, int amode); }\n\tSYS_NMOUNT                   = 378 // { int nmount(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS___MAC_GET_PROC           = 384 // { int __mac_get_proc(struct mac *mac_p); }\n\tSYS___MAC_SET_PROC           = 385 // { int __mac_set_proc(struct mac *mac_p); }\n\tSYS___MAC_GET_FD             = 386 // { int __mac_get_fd(int fd, struct mac *mac_p); }\n\tSYS___MAC_GET_FILE           = 387 // { int __mac_get_file(const char *path_p, struct mac *mac_p); }\n\tSYS___MAC_SET_FD             = 388 // { int __mac_set_fd(int fd, struct mac *mac_p); }\n\tSYS___MAC_SET_FILE           = 389 // { int __mac_set_file(const char *path_p, struct mac *mac_p); }\n\tSYS_KENV                     = 390 // { int kenv(int what, const char *name, char *value, int len); }\n\tSYS_LCHFLAGS                 = 391 // { int lchflags(const char *path, u_long flags); }\n\tSYS_UUIDGEN                  = 392 // { int uuidgen(struct uuid *store, int count); }\n\tSYS_SENDFILE                 = 393 // { int sendfile(int fd, int s, off_t offset, size_t nbytes, struct sf_hdtr *hdtr, off_t *sbytes, int flags); }\n\tSYS_MAC_SYSCALL              = 394 // { int mac_syscall(const char *policy, int call, void *arg); }\n\tSYS_GETFSSTAT                = 395 // { int getfsstat(struct statfs *buf, long bufsize, int mode); }\n\tSYS_STATFS                   = 396 // { int statfs(char *path, struct statfs *buf); }\n\tSYS_FSTATFS                  = 397 // { int fstatfs(int fd, struct statfs *buf); }\n\tSYS_FHSTATFS                 = 398 // { int fhstatfs(const struct fhandle *u_fhp, struct statfs *buf); }\n\tSYS_KSEM_CLOSE               = 400 // { int ksem_close(semid_t id); }\n\tSYS_KSEM_POST                = 401 // { int ksem_post(semid_t id); }\n\tSYS_KSEM_WAIT                = 402 // { int ksem_wait(semid_t id); }\n\tSYS_KSEM_TRYWAIT             = 403 // { int ksem_trywait(semid_t id); }\n\tSYS_KSEM_INIT                = 404 // { int ksem_init(semid_t *idp, unsigned int value); }\n\tSYS_KSEM_OPEN                = 405 // { int ksem_open(semid_t *idp, const char *name, int oflag, mode_t mode, unsigned int value); }\n\tSYS_KSEM_UNLINK              = 406 // { int ksem_unlink(const char *name); }\n\tSYS_KSEM_GETVALUE            = 407 // { int ksem_getvalue(semid_t id, int *val); }\n\tSYS_KSEM_DESTROY             = 408 // { int ksem_destroy(semid_t id); }\n\tSYS___MAC_GET_PID            = 409 // { int __mac_get_pid(pid_t pid, struct mac *mac_p); }\n\tSYS___MAC_GET_LINK           = 410 // { int __mac_get_link(const char *path_p, struct mac *mac_p); }\n\tSYS___MAC_SET_LINK           = 411 // { int __mac_set_link(const char *path_p, struct mac *mac_p); }\n\tSYS_EXTATTR_SET_LINK         = 412 // { ssize_t extattr_set_link( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_LINK         = 413 // { ssize_t extattr_get_link( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_LINK      = 414 // { int extattr_delete_link( const char *path, int attrnamespace, const char *attrname); }\n\tSYS___MAC_EXECVE             = 415 // { int __mac_execve(char *fname, char **argv, char **envv, struct mac *mac_p); }\n\tSYS_SIGACTION                = 416 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }\n\tSYS_SIGRETURN                = 417 // { int sigreturn( const struct __ucontext *sigcntxp); }\n\tSYS_GETCONTEXT               = 421 // { int getcontext(struct __ucontext *ucp); }\n\tSYS_SETCONTEXT               = 422 // { int setcontext( const struct __ucontext *ucp); }\n\tSYS_SWAPCONTEXT              = 423 // { int swapcontext(struct __ucontext *oucp, const struct __ucontext *ucp); }\n\tSYS_SWAPOFF                  = 424 // { int swapoff(const char *name); }\n\tSYS___ACL_GET_LINK           = 425 // { int __acl_get_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_SET_LINK           = 426 // { int __acl_set_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS___ACL_DELETE_LINK        = 427 // { int __acl_delete_link(const char *path, acl_type_t type); }\n\tSYS___ACL_ACLCHECK_LINK      = 428 // { int __acl_aclcheck_link(const char *path, acl_type_t type, struct acl *aclp); }\n\tSYS_SIGWAIT                  = 429 // { int sigwait(const sigset_t *set, int *sig); }\n\tSYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, int flags); }\n\tSYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }\n\tSYS_THR_SELF                 = 432 // { int thr_self(long *id); }\n\tSYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }\n\tSYS_JAIL_ATTACH              = 436 // { int jail_attach(int jid); }\n\tSYS_EXTATTR_LIST_FD          = 437 // { ssize_t extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_FILE        = 438 // { ssize_t extattr_list_file( const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_LINK        = 439 // { ssize_t extattr_list_link( const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_KSEM_TIMEDWAIT           = 441 // { int ksem_timedwait(semid_t id, const struct timespec *abstime); }\n\tSYS_THR_SUSPEND              = 442 // { int thr_suspend( const struct timespec *timeout); }\n\tSYS_THR_WAKE                 = 443 // { int thr_wake(long id); }\n\tSYS_KLDUNLOADF               = 444 // { int kldunloadf(int fileid, int flags); }\n\tSYS_AUDIT                    = 445 // { int audit(const void *record, u_int length); }\n\tSYS_AUDITON                  = 446 // { int auditon(int cmd, void *data, u_int length); }\n\tSYS_GETAUID                  = 447 // { int getauid(uid_t *auid); }\n\tSYS_SETAUID                  = 448 // { int setauid(uid_t *auid); }\n\tSYS_GETAUDIT                 = 449 // { int getaudit(struct auditinfo *auditinfo); }\n\tSYS_SETAUDIT                 = 450 // { int setaudit(struct auditinfo *auditinfo); }\n\tSYS_GETAUDIT_ADDR            = 451 // { int getaudit_addr( struct auditinfo_addr *auditinfo_addr, u_int length); }\n\tSYS_SETAUDIT_ADDR            = 452 // { int setaudit_addr( struct auditinfo_addr *auditinfo_addr, u_int length); }\n\tSYS_AUDITCTL                 = 453 // { int auditctl(char *path); }\n\tSYS__UMTX_OP                 = 454 // { int _umtx_op(void *obj, int op, u_long val, void *uaddr1, void *uaddr2); }\n\tSYS_THR_NEW                  = 455 // { int thr_new(struct thr_param *param, int param_size); }\n\tSYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }\n\tSYS_KMQ_OPEN                 = 457 // { int kmq_open(const char *path, int flags, mode_t mode, const struct mq_attr *attr); }\n\tSYS_KMQ_SETATTR              = 458 // { int kmq_setattr(int mqd,\t\tconst struct mq_attr *attr,\t\tstruct mq_attr *oattr); }\n\tSYS_KMQ_TIMEDRECEIVE         = 459 // { int kmq_timedreceive(int mqd,\tchar *msg_ptr, size_t msg_len,\tunsigned *msg_prio,\t\t\tconst struct timespec *abs_timeout); }\n\tSYS_KMQ_TIMEDSEND            = 460 // { int kmq_timedsend(int mqd,\t\tconst char *msg_ptr, size_t msg_len,unsigned msg_prio,\t\t\tconst struct timespec *abs_timeout);}\n\tSYS_KMQ_NOTIFY               = 461 // { int kmq_notify(int mqd,\t\tconst struct sigevent *sigev); }\n\tSYS_KMQ_UNLINK               = 462 // { int kmq_unlink(const char *path); }\n\tSYS_ABORT2                   = 463 // { int abort2(const char *why, int nargs, void **args); }\n\tSYS_THR_SET_NAME             = 464 // { int thr_set_name(long id, const char *name); }\n\tSYS_AIO_FSYNC                = 465 // { int aio_fsync(int op, struct aiocb *aiocbp); }\n\tSYS_RTPRIO_THREAD            = 466 // { int rtprio_thread(int function, lwpid_t lwpid, struct rtprio *rtp); }\n\tSYS_SCTP_PEELOFF             = 471 // { int sctp_peeloff(int sd, uint32_t name); }\n\tSYS_SCTP_GENERIC_SENDMSG     = 472 // { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, caddr_t to, __socklen_t tolen, struct sctp_sndrcvinfo *sinfo, int flags); }\n\tSYS_SCTP_GENERIC_SENDMSG_IOV = 473 // { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, caddr_t to, __socklen_t tolen, struct sctp_sndrcvinfo *sinfo, int flags); }\n\tSYS_SCTP_GENERIC_RECVMSG     = 474 // { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, struct sockaddr * from, __socklen_t *fromlenaddr, struct sctp_sndrcvinfo *sinfo, int *msg_flags); }\n\tSYS_PREAD                    = 475 // { ssize_t pread(int fd, void *buf, size_t nbyte, off_t offset); }\n\tSYS_PWRITE                   = 476 // { ssize_t pwrite(int fd, const void *buf, size_t nbyte, off_t offset); }\n\tSYS_MMAP                     = 477 // { caddr_t mmap(caddr_t addr, size_t len, int prot, int flags, int fd, off_t pos); }\n\tSYS_LSEEK                    = 478 // { off_t lseek(int fd, off_t offset, int whence); }\n\tSYS_TRUNCATE                 = 479 // { int truncate(char *path, off_t length); }\n\tSYS_FTRUNCATE                = 480 // { int ftruncate(int fd, off_t length); }\n\tSYS_THR_KILL2                = 481 // { int thr_kill2(pid_t pid, long id, int sig); }\n\tSYS_SHM_OPEN                 = 482 // { int shm_open(const char *path, int flags, mode_t mode); }\n\tSYS_SHM_UNLINK               = 483 // { int shm_unlink(const char *path); }\n\tSYS_CPUSET                   = 484 // { int cpuset(cpusetid_t *setid); }\n\tSYS_CPUSET_SETID             = 485 // { int cpuset_setid(cpuwhich_t which, id_t id, cpusetid_t setid); }\n\tSYS_CPUSET_GETID             = 486 // { int cpuset_getid(cpulevel_t level, cpuwhich_t which, id_t id, cpusetid_t *setid); }\n\tSYS_CPUSET_GETAFFINITY       = 487 // { int cpuset_getaffinity(cpulevel_t level, cpuwhich_t which, id_t id, size_t cpusetsize, cpuset_t *mask); }\n\tSYS_CPUSET_SETAFFINITY       = 488 // { int cpuset_setaffinity(cpulevel_t level, cpuwhich_t which, id_t id, size_t cpusetsize, const cpuset_t *mask); }\n\tSYS_FACCESSAT                = 489 // { int faccessat(int fd, char *path, int amode, int flag); }\n\tSYS_FCHMODAT                 = 490 // { int fchmodat(int fd, char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT                 = 491 // { int fchownat(int fd, char *path, uid_t uid, gid_t gid, int flag); }\n\tSYS_FEXECVE                  = 492 // { int fexecve(int fd, char **argv, char **envv); }\n\tSYS_FSTATAT                  = 493 // { int fstatat(int fd, char *path, struct stat *buf, int flag); }\n\tSYS_FUTIMESAT                = 494 // { int futimesat(int fd, char *path, struct timeval *times); }\n\tSYS_LINKAT                   = 495 // { int linkat(int fd1, char *path1, int fd2, char *path2, int flag); }\n\tSYS_MKDIRAT                  = 496 // { int mkdirat(int fd, char *path, mode_t mode); }\n\tSYS_MKFIFOAT                 = 497 // { int mkfifoat(int fd, char *path, mode_t mode); }\n\tSYS_MKNODAT                  = 498 // { int mknodat(int fd, char *path, mode_t mode, dev_t dev); }\n\tSYS_OPENAT                   = 499 // { int openat(int fd, char *path, int flag, mode_t mode); }\n\tSYS_READLINKAT               = 500 // { int readlinkat(int fd, char *path, char *buf, size_t bufsize); }\n\tSYS_RENAMEAT                 = 501 // { int renameat(int oldfd, char *old, int newfd, char *new); }\n\tSYS_SYMLINKAT                = 502 // { int symlinkat(char *path1, int fd, char *path2); }\n\tSYS_UNLINKAT                 = 503 // { int unlinkat(int fd, char *path, int flag); }\n\tSYS_POSIX_OPENPT             = 504 // { int posix_openpt(int flags); }\n\tSYS_GSSD_SYSCALL             = 505 // { int gssd_syscall(char *path); }\n\tSYS_JAIL_GET                 = 506 // { int jail_get(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS_JAIL_SET                 = 507 // { int jail_set(struct iovec *iovp, unsigned int iovcnt, int flags); }\n\tSYS_JAIL_REMOVE              = 508 // { int jail_remove(int jid); }\n\tSYS_CLOSEFROM                = 509 // { int closefrom(int lowfd); }\n\tSYS___SEMCTL                 = 510 // { int __semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_MSGCTL                   = 511 // { int msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_SHMCTL                   = 512 // { int shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_LPATHCONF                = 513 // { int lpathconf(char *path, int name); }\n\tSYS___CAP_RIGHTS_GET         = 515 // { int __cap_rights_get(int version, int fd, cap_rights_t *rightsp); }\n\tSYS_CAP_ENTER                = 516 // { int cap_enter(void); }\n\tSYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }\n\tSYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }\n\tSYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }\n\tSYS_PDGETPID                 = 520 // { int pdgetpid(int fd, pid_t *pidp); }\n\tSYS_PSELECT                  = 522 // { int pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *sm); }\n\tSYS_GETLOGINCLASS            = 523 // { int getloginclass(char *namebuf, size_t namelen); }\n\tSYS_SETLOGINCLASS            = 524 // { int setloginclass(const char *namebuf); }\n\tSYS_RCTL_GET_RACCT           = 525 // { int rctl_get_racct(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_GET_RULES           = 526 // { int rctl_get_rules(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_GET_LIMITS          = 527 // { int rctl_get_limits(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_ADD_RULE            = 528 // { int rctl_add_rule(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_RCTL_REMOVE_RULE         = 529 // { int rctl_remove_rule(const void *inbufp, size_t inbuflen, void *outbufp, size_t outbuflen); }\n\tSYS_POSIX_FALLOCATE          = 530 // { int posix_fallocate(int fd, off_t offset, off_t len); }\n\tSYS_POSIX_FADVISE            = 531 // { int posix_fadvise(int fd, off_t offset, off_t len, int advice); }\n\tSYS_WAIT6                    = 532 // { int wait6(idtype_t idtype, id_t id, int *status, int options, struct __wrusage *wrusage, siginfo_t *info); }\n\tSYS_CAP_RIGHTS_LIMIT         = 533 // { int cap_rights_limit(int fd, cap_rights_t *rightsp); }\n\tSYS_CAP_IOCTLS_LIMIT         = 534 // { int cap_ioctls_limit(int fd, const u_long *cmds, size_t ncmds); }\n\tSYS_CAP_IOCTLS_GET           = 535 // { ssize_t cap_ioctls_get(int fd, u_long *cmds, size_t maxcmds); }\n\tSYS_CAP_FCNTLS_LIMIT         = 536 // { int cap_fcntls_limit(int fd, uint32_t fcntlrights); }\n\tSYS_CAP_FCNTLS_GET           = 537 // { int cap_fcntls_get(int fd, uint32_t *fcntlrightsp); }\n\tSYS_BINDAT                   = 538 // { int bindat(int fd, int s, caddr_t name, int namelen); }\n\tSYS_CONNECTAT                = 539 // { int connectat(int fd, int s, caddr_t name, int namelen); }\n\tSYS_CHFLAGSAT                = 540 // { int chflagsat(int fd, const char *path, u_long flags, int atflag); }\n\tSYS_ACCEPT4                  = 541 // { int accept4(int s, struct sockaddr * __restrict name, __socklen_t * __restrict anamelen, int flags); }\n\tSYS_PIPE2                    = 542 // { int pipe2(int *fildes, int flags); }\n\tSYS_AIO_MLOCK                = 543 // { int aio_mlock(struct aiocb *aiocbp); }\n\tSYS_PROCCTL                  = 544 // { int procctl(idtype_t idtype, id_t id, int com, void *data); }\n\tSYS_PPOLL                    = 545 // { int ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *set); }\n\tSYS_FUTIMENS                 = 546 // { int futimens(int fd, struct timespec *times); }\n\tSYS_UTIMENSAT                = 547 // { int utimensat(int fd, char *path, struct timespec *times, int flag); }\n\tSYS_NUMA_GETAFFINITY         = 548 // { int numa_getaffinity(cpuwhich_t which, id_t id, struct vm_domain_policy_entry *policy); }\n\tSYS_NUMA_SETAFFINITY         = 549 // { int numa_setaffinity(cpuwhich_t which, id_t id, const struct vm_domain_policy_entry *policy); }\n\tSYS_FDATASYNC                = 550 // { int fdatasync(int fd); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_386.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include -m32 /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,linux\n\npackage unix\n\nconst (\n\tSYS_RESTART_SYSCALL              = 0\n\tSYS_EXIT                         = 1\n\tSYS_FORK                         = 2\n\tSYS_READ                         = 3\n\tSYS_WRITE                        = 4\n\tSYS_OPEN                         = 5\n\tSYS_CLOSE                        = 6\n\tSYS_WAITPID                      = 7\n\tSYS_CREAT                        = 8\n\tSYS_LINK                         = 9\n\tSYS_UNLINK                       = 10\n\tSYS_EXECVE                       = 11\n\tSYS_CHDIR                        = 12\n\tSYS_TIME                         = 13\n\tSYS_MKNOD                        = 14\n\tSYS_CHMOD                        = 15\n\tSYS_LCHOWN                       = 16\n\tSYS_BREAK                        = 17\n\tSYS_OLDSTAT                      = 18\n\tSYS_LSEEK                        = 19\n\tSYS_GETPID                       = 20\n\tSYS_MOUNT                        = 21\n\tSYS_UMOUNT                       = 22\n\tSYS_SETUID                       = 23\n\tSYS_GETUID                       = 24\n\tSYS_STIME                        = 25\n\tSYS_PTRACE                       = 26\n\tSYS_ALARM                        = 27\n\tSYS_OLDFSTAT                     = 28\n\tSYS_PAUSE                        = 29\n\tSYS_UTIME                        = 30\n\tSYS_STTY                         = 31\n\tSYS_GTTY                         = 32\n\tSYS_ACCESS                       = 33\n\tSYS_NICE                         = 34\n\tSYS_FTIME                        = 35\n\tSYS_SYNC                         = 36\n\tSYS_KILL                         = 37\n\tSYS_RENAME                       = 38\n\tSYS_MKDIR                        = 39\n\tSYS_RMDIR                        = 40\n\tSYS_DUP                          = 41\n\tSYS_PIPE                         = 42\n\tSYS_TIMES                        = 43\n\tSYS_PROF                         = 44\n\tSYS_BRK                          = 45\n\tSYS_SETGID                       = 46\n\tSYS_GETGID                       = 47\n\tSYS_SIGNAL                       = 48\n\tSYS_GETEUID                      = 49\n\tSYS_GETEGID                      = 50\n\tSYS_ACCT                         = 51\n\tSYS_UMOUNT2                      = 52\n\tSYS_LOCK                         = 53\n\tSYS_IOCTL                        = 54\n\tSYS_FCNTL                        = 55\n\tSYS_MPX                          = 56\n\tSYS_SETPGID                      = 57\n\tSYS_ULIMIT                       = 58\n\tSYS_OLDOLDUNAME                  = 59\n\tSYS_UMASK                        = 60\n\tSYS_CHROOT                       = 61\n\tSYS_USTAT                        = 62\n\tSYS_DUP2                         = 63\n\tSYS_GETPPID                      = 64\n\tSYS_GETPGRP                      = 65\n\tSYS_SETSID                       = 66\n\tSYS_SIGACTION                    = 67\n\tSYS_SGETMASK                     = 68\n\tSYS_SSETMASK                     = 69\n\tSYS_SETREUID                     = 70\n\tSYS_SETREGID                     = 71\n\tSYS_SIGSUSPEND                   = 72\n\tSYS_SIGPENDING                   = 73\n\tSYS_SETHOSTNAME                  = 74\n\tSYS_SETRLIMIT                    = 75\n\tSYS_GETRLIMIT                    = 76\n\tSYS_GETRUSAGE                    = 77\n\tSYS_GETTIMEOFDAY                 = 78\n\tSYS_SETTIMEOFDAY                 = 79\n\tSYS_GETGROUPS                    = 80\n\tSYS_SETGROUPS                    = 81\n\tSYS_SELECT                       = 82\n\tSYS_SYMLINK                      = 83\n\tSYS_OLDLSTAT                     = 84\n\tSYS_READLINK                     = 85\n\tSYS_USELIB                       = 86\n\tSYS_SWAPON                       = 87\n\tSYS_REBOOT                       = 88\n\tSYS_READDIR                      = 89\n\tSYS_MMAP                         = 90\n\tSYS_MUNMAP                       = 91\n\tSYS_TRUNCATE                     = 92\n\tSYS_FTRUNCATE                    = 93\n\tSYS_FCHMOD                       = 94\n\tSYS_FCHOWN                       = 95\n\tSYS_GETPRIORITY                  = 96\n\tSYS_SETPRIORITY                  = 97\n\tSYS_PROFIL                       = 98\n\tSYS_STATFS                       = 99\n\tSYS_FSTATFS                      = 100\n\tSYS_IOPERM                       = 101\n\tSYS_SOCKETCALL                   = 102\n\tSYS_SYSLOG                       = 103\n\tSYS_SETITIMER                    = 104\n\tSYS_GETITIMER                    = 105\n\tSYS_STAT                         = 106\n\tSYS_LSTAT                        = 107\n\tSYS_FSTAT                        = 108\n\tSYS_OLDUNAME                     = 109\n\tSYS_IOPL                         = 110\n\tSYS_VHANGUP                      = 111\n\tSYS_IDLE                         = 112\n\tSYS_VM86OLD                      = 113\n\tSYS_WAIT4                        = 114\n\tSYS_SWAPOFF                      = 115\n\tSYS_SYSINFO                      = 116\n\tSYS_IPC                          = 117\n\tSYS_FSYNC                        = 118\n\tSYS_SIGRETURN                    = 119\n\tSYS_CLONE                        = 120\n\tSYS_SETDOMAINNAME                = 121\n\tSYS_UNAME                        = 122\n\tSYS_MODIFY_LDT                   = 123\n\tSYS_ADJTIMEX                     = 124\n\tSYS_MPROTECT                     = 125\n\tSYS_SIGPROCMASK                  = 126\n\tSYS_CREATE_MODULE                = 127\n\tSYS_INIT_MODULE                  = 128\n\tSYS_DELETE_MODULE                = 129\n\tSYS_GET_KERNEL_SYMS              = 130\n\tSYS_QUOTACTL                     = 131\n\tSYS_GETPGID                      = 132\n\tSYS_FCHDIR                       = 133\n\tSYS_BDFLUSH                      = 134\n\tSYS_SYSFS                        = 135\n\tSYS_PERSONALITY                  = 136\n\tSYS_AFS_SYSCALL                  = 137\n\tSYS_SETFSUID                     = 138\n\tSYS_SETFSGID                     = 139\n\tSYS__LLSEEK                      = 140\n\tSYS_GETDENTS                     = 141\n\tSYS__NEWSELECT                   = 142\n\tSYS_FLOCK                        = 143\n\tSYS_MSYNC                        = 144\n\tSYS_READV                        = 145\n\tSYS_WRITEV                       = 146\n\tSYS_GETSID                       = 147\n\tSYS_FDATASYNC                    = 148\n\tSYS__SYSCTL                      = 149\n\tSYS_MLOCK                        = 150\n\tSYS_MUNLOCK                      = 151\n\tSYS_MLOCKALL                     = 152\n\tSYS_MUNLOCKALL                   = 153\n\tSYS_SCHED_SETPARAM               = 154\n\tSYS_SCHED_GETPARAM               = 155\n\tSYS_SCHED_SETSCHEDULER           = 156\n\tSYS_SCHED_GETSCHEDULER           = 157\n\tSYS_SCHED_YIELD                  = 158\n\tSYS_SCHED_GET_PRIORITY_MAX       = 159\n\tSYS_SCHED_GET_PRIORITY_MIN       = 160\n\tSYS_SCHED_RR_GET_INTERVAL        = 161\n\tSYS_NANOSLEEP                    = 162\n\tSYS_MREMAP                       = 163\n\tSYS_SETRESUID                    = 164\n\tSYS_GETRESUID                    = 165\n\tSYS_VM86                         = 166\n\tSYS_QUERY_MODULE                 = 167\n\tSYS_POLL                         = 168\n\tSYS_NFSSERVCTL                   = 169\n\tSYS_SETRESGID                    = 170\n\tSYS_GETRESGID                    = 171\n\tSYS_PRCTL                        = 172\n\tSYS_RT_SIGRETURN                 = 173\n\tSYS_RT_SIGACTION                 = 174\n\tSYS_RT_SIGPROCMASK               = 175\n\tSYS_RT_SIGPENDING                = 176\n\tSYS_RT_SIGTIMEDWAIT              = 177\n\tSYS_RT_SIGQUEUEINFO              = 178\n\tSYS_RT_SIGSUSPEND                = 179\n\tSYS_PREAD64                      = 180\n\tSYS_PWRITE64                     = 181\n\tSYS_CHOWN                        = 182\n\tSYS_GETCWD                       = 183\n\tSYS_CAPGET                       = 184\n\tSYS_CAPSET                       = 185\n\tSYS_SIGALTSTACK                  = 186\n\tSYS_SENDFILE                     = 187\n\tSYS_GETPMSG                      = 188\n\tSYS_PUTPMSG                      = 189\n\tSYS_VFORK                        = 190\n\tSYS_UGETRLIMIT                   = 191\n\tSYS_MMAP2                        = 192\n\tSYS_TRUNCATE64                   = 193\n\tSYS_FTRUNCATE64                  = 194\n\tSYS_STAT64                       = 195\n\tSYS_LSTAT64                      = 196\n\tSYS_FSTAT64                      = 197\n\tSYS_LCHOWN32                     = 198\n\tSYS_GETUID32                     = 199\n\tSYS_GETGID32                     = 200\n\tSYS_GETEUID32                    = 201\n\tSYS_GETEGID32                    = 202\n\tSYS_SETREUID32                   = 203\n\tSYS_SETREGID32                   = 204\n\tSYS_GETGROUPS32                  = 205\n\tSYS_SETGROUPS32                  = 206\n\tSYS_FCHOWN32                     = 207\n\tSYS_SETRESUID32                  = 208\n\tSYS_GETRESUID32                  = 209\n\tSYS_SETRESGID32                  = 210\n\tSYS_GETRESGID32                  = 211\n\tSYS_CHOWN32                      = 212\n\tSYS_SETUID32                     = 213\n\tSYS_SETGID32                     = 214\n\tSYS_SETFSUID32                   = 215\n\tSYS_SETFSGID32                   = 216\n\tSYS_PIVOT_ROOT                   = 217\n\tSYS_MINCORE                      = 218\n\tSYS_MADVISE                      = 219\n\tSYS_GETDENTS64                   = 220\n\tSYS_FCNTL64                      = 221\n\tSYS_GETTID                       = 224\n\tSYS_READAHEAD                    = 225\n\tSYS_SETXATTR                     = 226\n\tSYS_LSETXATTR                    = 227\n\tSYS_FSETXATTR                    = 228\n\tSYS_GETXATTR                     = 229\n\tSYS_LGETXATTR                    = 230\n\tSYS_FGETXATTR                    = 231\n\tSYS_LISTXATTR                    = 232\n\tSYS_LLISTXATTR                   = 233\n\tSYS_FLISTXATTR                   = 234\n\tSYS_REMOVEXATTR                  = 235\n\tSYS_LREMOVEXATTR                 = 236\n\tSYS_FREMOVEXATTR                 = 237\n\tSYS_TKILL                        = 238\n\tSYS_SENDFILE64                   = 239\n\tSYS_FUTEX                        = 240\n\tSYS_SCHED_SETAFFINITY            = 241\n\tSYS_SCHED_GETAFFINITY            = 242\n\tSYS_SET_THREAD_AREA              = 243\n\tSYS_GET_THREAD_AREA              = 244\n\tSYS_IO_SETUP                     = 245\n\tSYS_IO_DESTROY                   = 246\n\tSYS_IO_GETEVENTS                 = 247\n\tSYS_IO_SUBMIT                    = 248\n\tSYS_IO_CANCEL                    = 249\n\tSYS_FADVISE64                    = 250\n\tSYS_EXIT_GROUP                   = 252\n\tSYS_LOOKUP_DCOOKIE               = 253\n\tSYS_EPOLL_CREATE                 = 254\n\tSYS_EPOLL_CTL                    = 255\n\tSYS_EPOLL_WAIT                   = 256\n\tSYS_REMAP_FILE_PAGES             = 257\n\tSYS_SET_TID_ADDRESS              = 258\n\tSYS_TIMER_CREATE                 = 259\n\tSYS_TIMER_SETTIME                = 260\n\tSYS_TIMER_GETTIME                = 261\n\tSYS_TIMER_GETOVERRUN             = 262\n\tSYS_TIMER_DELETE                 = 263\n\tSYS_CLOCK_SETTIME                = 264\n\tSYS_CLOCK_GETTIME                = 265\n\tSYS_CLOCK_GETRES                 = 266\n\tSYS_CLOCK_NANOSLEEP              = 267\n\tSYS_STATFS64                     = 268\n\tSYS_FSTATFS64                    = 269\n\tSYS_TGKILL                       = 270\n\tSYS_UTIMES                       = 271\n\tSYS_FADVISE64_64                 = 272\n\tSYS_VSERVER                      = 273\n\tSYS_MBIND                        = 274\n\tSYS_GET_MEMPOLICY                = 275\n\tSYS_SET_MEMPOLICY                = 276\n\tSYS_MQ_OPEN                      = 277\n\tSYS_MQ_UNLINK                    = 278\n\tSYS_MQ_TIMEDSEND                 = 279\n\tSYS_MQ_TIMEDRECEIVE              = 280\n\tSYS_MQ_NOTIFY                    = 281\n\tSYS_MQ_GETSETATTR                = 282\n\tSYS_KEXEC_LOAD                   = 283\n\tSYS_WAITID                       = 284\n\tSYS_ADD_KEY                      = 286\n\tSYS_REQUEST_KEY                  = 287\n\tSYS_KEYCTL                       = 288\n\tSYS_IOPRIO_SET                   = 289\n\tSYS_IOPRIO_GET                   = 290\n\tSYS_INOTIFY_INIT                 = 291\n\tSYS_INOTIFY_ADD_WATCH            = 292\n\tSYS_INOTIFY_RM_WATCH             = 293\n\tSYS_MIGRATE_PAGES                = 294\n\tSYS_OPENAT                       = 295\n\tSYS_MKDIRAT                      = 296\n\tSYS_MKNODAT                      = 297\n\tSYS_FCHOWNAT                     = 298\n\tSYS_FUTIMESAT                    = 299\n\tSYS_FSTATAT64                    = 300\n\tSYS_UNLINKAT                     = 301\n\tSYS_RENAMEAT                     = 302\n\tSYS_LINKAT                       = 303\n\tSYS_SYMLINKAT                    = 304\n\tSYS_READLINKAT                   = 305\n\tSYS_FCHMODAT                     = 306\n\tSYS_FACCESSAT                    = 307\n\tSYS_PSELECT6                     = 308\n\tSYS_PPOLL                        = 309\n\tSYS_UNSHARE                      = 310\n\tSYS_SET_ROBUST_LIST              = 311\n\tSYS_GET_ROBUST_LIST              = 312\n\tSYS_SPLICE                       = 313\n\tSYS_SYNC_FILE_RANGE              = 314\n\tSYS_TEE                          = 315\n\tSYS_VMSPLICE                     = 316\n\tSYS_MOVE_PAGES                   = 317\n\tSYS_GETCPU                       = 318\n\tSYS_EPOLL_PWAIT                  = 319\n\tSYS_UTIMENSAT                    = 320\n\tSYS_SIGNALFD                     = 321\n\tSYS_TIMERFD_CREATE               = 322\n\tSYS_EVENTFD                      = 323\n\tSYS_FALLOCATE                    = 324\n\tSYS_TIMERFD_SETTIME              = 325\n\tSYS_TIMERFD_GETTIME              = 326\n\tSYS_SIGNALFD4                    = 327\n\tSYS_EVENTFD2                     = 328\n\tSYS_EPOLL_CREATE1                = 329\n\tSYS_DUP3                         = 330\n\tSYS_PIPE2                        = 331\n\tSYS_INOTIFY_INIT1                = 332\n\tSYS_PREADV                       = 333\n\tSYS_PWRITEV                      = 334\n\tSYS_RT_TGSIGQUEUEINFO            = 335\n\tSYS_PERF_EVENT_OPEN              = 336\n\tSYS_RECVMMSG                     = 337\n\tSYS_FANOTIFY_INIT                = 338\n\tSYS_FANOTIFY_MARK                = 339\n\tSYS_PRLIMIT64                    = 340\n\tSYS_NAME_TO_HANDLE_AT            = 341\n\tSYS_OPEN_BY_HANDLE_AT            = 342\n\tSYS_CLOCK_ADJTIME                = 343\n\tSYS_SYNCFS                       = 344\n\tSYS_SENDMMSG                     = 345\n\tSYS_SETNS                        = 346\n\tSYS_PROCESS_VM_READV             = 347\n\tSYS_PROCESS_VM_WRITEV            = 348\n\tSYS_KCMP                         = 349\n\tSYS_FINIT_MODULE                 = 350\n\tSYS_SCHED_SETATTR                = 351\n\tSYS_SCHED_GETATTR                = 352\n\tSYS_RENAMEAT2                    = 353\n\tSYS_SECCOMP                      = 354\n\tSYS_GETRANDOM                    = 355\n\tSYS_MEMFD_CREATE                 = 356\n\tSYS_BPF                          = 357\n\tSYS_EXECVEAT                     = 358\n\tSYS_SOCKET                       = 359\n\tSYS_SOCKETPAIR                   = 360\n\tSYS_BIND                         = 361\n\tSYS_CONNECT                      = 362\n\tSYS_LISTEN                       = 363\n\tSYS_ACCEPT4                      = 364\n\tSYS_GETSOCKOPT                   = 365\n\tSYS_SETSOCKOPT                   = 366\n\tSYS_GETSOCKNAME                  = 367\n\tSYS_GETPEERNAME                  = 368\n\tSYS_SENDTO                       = 369\n\tSYS_SENDMSG                      = 370\n\tSYS_RECVFROM                     = 371\n\tSYS_RECVMSG                      = 372\n\tSYS_SHUTDOWN                     = 373\n\tSYS_USERFAULTFD                  = 374\n\tSYS_MEMBARRIER                   = 375\n\tSYS_MLOCK2                       = 376\n\tSYS_COPY_FILE_RANGE              = 377\n\tSYS_PREADV2                      = 378\n\tSYS_PWRITEV2                     = 379\n\tSYS_PKEY_MPROTECT                = 380\n\tSYS_PKEY_ALLOC                   = 381\n\tSYS_PKEY_FREE                    = 382\n\tSYS_STATX                        = 383\n\tSYS_ARCH_PRCTL                   = 384\n\tSYS_IO_PGETEVENTS                = 385\n\tSYS_RSEQ                         = 386\n\tSYS_SEMGET                       = 393\n\tSYS_SEMCTL                       = 394\n\tSYS_SHMGET                       = 395\n\tSYS_SHMCTL                       = 396\n\tSYS_SHMAT                        = 397\n\tSYS_SHMDT                        = 398\n\tSYS_MSGGET                       = 399\n\tSYS_MSGSND                       = 400\n\tSYS_MSGRCV                       = 401\n\tSYS_MSGCTL                       = 402\n\tSYS_CLOCK_GETTIME64              = 403\n\tSYS_CLOCK_SETTIME64              = 404\n\tSYS_CLOCK_ADJTIME64              = 405\n\tSYS_CLOCK_GETRES_TIME64          = 406\n\tSYS_CLOCK_NANOSLEEP_TIME64       = 407\n\tSYS_TIMER_GETTIME64              = 408\n\tSYS_TIMER_SETTIME64              = 409\n\tSYS_TIMERFD_GETTIME64            = 410\n\tSYS_TIMERFD_SETTIME64            = 411\n\tSYS_UTIMENSAT_TIME64             = 412\n\tSYS_PSELECT6_TIME64              = 413\n\tSYS_PPOLL_TIME64                 = 414\n\tSYS_IO_PGETEVENTS_TIME64         = 416\n\tSYS_RECVMMSG_TIME64              = 417\n\tSYS_MQ_TIMEDSEND_TIME64          = 418\n\tSYS_MQ_TIMEDRECEIVE_TIME64       = 419\n\tSYS_SEMTIMEDOP_TIME64            = 420\n\tSYS_RT_SIGTIMEDWAIT_TIME64       = 421\n\tSYS_FUTEX_TIME64                 = 422\n\tSYS_SCHED_RR_GET_INTERVAL_TIME64 = 423\n\tSYS_PIDFD_SEND_SIGNAL            = 424\n\tSYS_IO_URING_SETUP               = 425\n\tSYS_IO_URING_ENTER               = 426\n\tSYS_IO_URING_REGISTER            = 427\n\tSYS_OPEN_TREE                    = 428\n\tSYS_MOVE_MOUNT                   = 429\n\tSYS_FSOPEN                       = 430\n\tSYS_FSCONFIG                     = 431\n\tSYS_FSMOUNT                      = 432\n\tSYS_FSPICK                       = 433\n\tSYS_PIDFD_OPEN                   = 434\n\tSYS_CLONE3                       = 435\n\tSYS_OPENAT2                      = 437\n\tSYS_PIDFD_GETFD                  = 438\n\tSYS_FACCESSAT2                   = 439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include -m64 /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,linux\n\npackage unix\n\nconst (\n\tSYS_READ                   = 0\n\tSYS_WRITE                  = 1\n\tSYS_OPEN                   = 2\n\tSYS_CLOSE                  = 3\n\tSYS_STAT                   = 4\n\tSYS_FSTAT                  = 5\n\tSYS_LSTAT                  = 6\n\tSYS_POLL                   = 7\n\tSYS_LSEEK                  = 8\n\tSYS_MMAP                   = 9\n\tSYS_MPROTECT               = 10\n\tSYS_MUNMAP                 = 11\n\tSYS_BRK                    = 12\n\tSYS_RT_SIGACTION           = 13\n\tSYS_RT_SIGPROCMASK         = 14\n\tSYS_RT_SIGRETURN           = 15\n\tSYS_IOCTL                  = 16\n\tSYS_PREAD64                = 17\n\tSYS_PWRITE64               = 18\n\tSYS_READV                  = 19\n\tSYS_WRITEV                 = 20\n\tSYS_ACCESS                 = 21\n\tSYS_PIPE                   = 22\n\tSYS_SELECT                 = 23\n\tSYS_SCHED_YIELD            = 24\n\tSYS_MREMAP                 = 25\n\tSYS_MSYNC                  = 26\n\tSYS_MINCORE                = 27\n\tSYS_MADVISE                = 28\n\tSYS_SHMGET                 = 29\n\tSYS_SHMAT                  = 30\n\tSYS_SHMCTL                 = 31\n\tSYS_DUP                    = 32\n\tSYS_DUP2                   = 33\n\tSYS_PAUSE                  = 34\n\tSYS_NANOSLEEP              = 35\n\tSYS_GETITIMER              = 36\n\tSYS_ALARM                  = 37\n\tSYS_SETITIMER              = 38\n\tSYS_GETPID                 = 39\n\tSYS_SENDFILE               = 40\n\tSYS_SOCKET                 = 41\n\tSYS_CONNECT                = 42\n\tSYS_ACCEPT                 = 43\n\tSYS_SENDTO                 = 44\n\tSYS_RECVFROM               = 45\n\tSYS_SENDMSG                = 46\n\tSYS_RECVMSG                = 47\n\tSYS_SHUTDOWN               = 48\n\tSYS_BIND                   = 49\n\tSYS_LISTEN                 = 50\n\tSYS_GETSOCKNAME            = 51\n\tSYS_GETPEERNAME            = 52\n\tSYS_SOCKETPAIR             = 53\n\tSYS_SETSOCKOPT             = 54\n\tSYS_GETSOCKOPT             = 55\n\tSYS_CLONE                  = 56\n\tSYS_FORK                   = 57\n\tSYS_VFORK                  = 58\n\tSYS_EXECVE                 = 59\n\tSYS_EXIT                   = 60\n\tSYS_WAIT4                  = 61\n\tSYS_KILL                   = 62\n\tSYS_UNAME                  = 63\n\tSYS_SEMGET                 = 64\n\tSYS_SEMOP                  = 65\n\tSYS_SEMCTL                 = 66\n\tSYS_SHMDT                  = 67\n\tSYS_MSGGET                 = 68\n\tSYS_MSGSND                 = 69\n\tSYS_MSGRCV                 = 70\n\tSYS_MSGCTL                 = 71\n\tSYS_FCNTL                  = 72\n\tSYS_FLOCK                  = 73\n\tSYS_FSYNC                  = 74\n\tSYS_FDATASYNC              = 75\n\tSYS_TRUNCATE               = 76\n\tSYS_FTRUNCATE              = 77\n\tSYS_GETDENTS               = 78\n\tSYS_GETCWD                 = 79\n\tSYS_CHDIR                  = 80\n\tSYS_FCHDIR                 = 81\n\tSYS_RENAME                 = 82\n\tSYS_MKDIR                  = 83\n\tSYS_RMDIR                  = 84\n\tSYS_CREAT                  = 85\n\tSYS_LINK                   = 86\n\tSYS_UNLINK                 = 87\n\tSYS_SYMLINK                = 88\n\tSYS_READLINK               = 89\n\tSYS_CHMOD                  = 90\n\tSYS_FCHMOD                 = 91\n\tSYS_CHOWN                  = 92\n\tSYS_FCHOWN                 = 93\n\tSYS_LCHOWN                 = 94\n\tSYS_UMASK                  = 95\n\tSYS_GETTIMEOFDAY           = 96\n\tSYS_GETRLIMIT              = 97\n\tSYS_GETRUSAGE              = 98\n\tSYS_SYSINFO                = 99\n\tSYS_TIMES                  = 100\n\tSYS_PTRACE                 = 101\n\tSYS_GETUID                 = 102\n\tSYS_SYSLOG                 = 103\n\tSYS_GETGID                 = 104\n\tSYS_SETUID                 = 105\n\tSYS_SETGID                 = 106\n\tSYS_GETEUID                = 107\n\tSYS_GETEGID                = 108\n\tSYS_SETPGID                = 109\n\tSYS_GETPPID                = 110\n\tSYS_GETPGRP                = 111\n\tSYS_SETSID                 = 112\n\tSYS_SETREUID               = 113\n\tSYS_SETREGID               = 114\n\tSYS_GETGROUPS              = 115\n\tSYS_SETGROUPS              = 116\n\tSYS_SETRESUID              = 117\n\tSYS_GETRESUID              = 118\n\tSYS_SETRESGID              = 119\n\tSYS_GETRESGID              = 120\n\tSYS_GETPGID                = 121\n\tSYS_SETFSUID               = 122\n\tSYS_SETFSGID               = 123\n\tSYS_GETSID                 = 124\n\tSYS_CAPGET                 = 125\n\tSYS_CAPSET                 = 126\n\tSYS_RT_SIGPENDING          = 127\n\tSYS_RT_SIGTIMEDWAIT        = 128\n\tSYS_RT_SIGQUEUEINFO        = 129\n\tSYS_RT_SIGSUSPEND          = 130\n\tSYS_SIGALTSTACK            = 131\n\tSYS_UTIME                  = 132\n\tSYS_MKNOD                  = 133\n\tSYS_USELIB                 = 134\n\tSYS_PERSONALITY            = 135\n\tSYS_USTAT                  = 136\n\tSYS_STATFS                 = 137\n\tSYS_FSTATFS                = 138\n\tSYS_SYSFS                  = 139\n\tSYS_GETPRIORITY            = 140\n\tSYS_SETPRIORITY            = 141\n\tSYS_SCHED_SETPARAM         = 142\n\tSYS_SCHED_GETPARAM         = 143\n\tSYS_SCHED_SETSCHEDULER     = 144\n\tSYS_SCHED_GETSCHEDULER     = 145\n\tSYS_SCHED_GET_PRIORITY_MAX = 146\n\tSYS_SCHED_GET_PRIORITY_MIN = 147\n\tSYS_SCHED_RR_GET_INTERVAL  = 148\n\tSYS_MLOCK                  = 149\n\tSYS_MUNLOCK                = 150\n\tSYS_MLOCKALL               = 151\n\tSYS_MUNLOCKALL             = 152\n\tSYS_VHANGUP                = 153\n\tSYS_MODIFY_LDT             = 154\n\tSYS_PIVOT_ROOT             = 155\n\tSYS__SYSCTL                = 156\n\tSYS_PRCTL                  = 157\n\tSYS_ARCH_PRCTL             = 158\n\tSYS_ADJTIMEX               = 159\n\tSYS_SETRLIMIT              = 160\n\tSYS_CHROOT                 = 161\n\tSYS_SYNC                   = 162\n\tSYS_ACCT                   = 163\n\tSYS_SETTIMEOFDAY           = 164\n\tSYS_MOUNT                  = 165\n\tSYS_UMOUNT2                = 166\n\tSYS_SWAPON                 = 167\n\tSYS_SWAPOFF                = 168\n\tSYS_REBOOT                 = 169\n\tSYS_SETHOSTNAME            = 170\n\tSYS_SETDOMAINNAME          = 171\n\tSYS_IOPL                   = 172\n\tSYS_IOPERM                 = 173\n\tSYS_CREATE_MODULE          = 174\n\tSYS_INIT_MODULE            = 175\n\tSYS_DELETE_MODULE          = 176\n\tSYS_GET_KERNEL_SYMS        = 177\n\tSYS_QUERY_MODULE           = 178\n\tSYS_QUOTACTL               = 179\n\tSYS_NFSSERVCTL             = 180\n\tSYS_GETPMSG                = 181\n\tSYS_PUTPMSG                = 182\n\tSYS_AFS_SYSCALL            = 183\n\tSYS_TUXCALL                = 184\n\tSYS_SECURITY               = 185\n\tSYS_GETTID                 = 186\n\tSYS_READAHEAD              = 187\n\tSYS_SETXATTR               = 188\n\tSYS_LSETXATTR              = 189\n\tSYS_FSETXATTR              = 190\n\tSYS_GETXATTR               = 191\n\tSYS_LGETXATTR              = 192\n\tSYS_FGETXATTR              = 193\n\tSYS_LISTXATTR              = 194\n\tSYS_LLISTXATTR             = 195\n\tSYS_FLISTXATTR             = 196\n\tSYS_REMOVEXATTR            = 197\n\tSYS_LREMOVEXATTR           = 198\n\tSYS_FREMOVEXATTR           = 199\n\tSYS_TKILL                  = 200\n\tSYS_TIME                   = 201\n\tSYS_FUTEX                  = 202\n\tSYS_SCHED_SETAFFINITY      = 203\n\tSYS_SCHED_GETAFFINITY      = 204\n\tSYS_SET_THREAD_AREA        = 205\n\tSYS_IO_SETUP               = 206\n\tSYS_IO_DESTROY             = 207\n\tSYS_IO_GETEVENTS           = 208\n\tSYS_IO_SUBMIT              = 209\n\tSYS_IO_CANCEL              = 210\n\tSYS_GET_THREAD_AREA        = 211\n\tSYS_LOOKUP_DCOOKIE         = 212\n\tSYS_EPOLL_CREATE           = 213\n\tSYS_EPOLL_CTL_OLD          = 214\n\tSYS_EPOLL_WAIT_OLD         = 215\n\tSYS_REMAP_FILE_PAGES       = 216\n\tSYS_GETDENTS64             = 217\n\tSYS_SET_TID_ADDRESS        = 218\n\tSYS_RESTART_SYSCALL        = 219\n\tSYS_SEMTIMEDOP             = 220\n\tSYS_FADVISE64              = 221\n\tSYS_TIMER_CREATE           = 222\n\tSYS_TIMER_SETTIME          = 223\n\tSYS_TIMER_GETTIME          = 224\n\tSYS_TIMER_GETOVERRUN       = 225\n\tSYS_TIMER_DELETE           = 226\n\tSYS_CLOCK_SETTIME          = 227\n\tSYS_CLOCK_GETTIME          = 228\n\tSYS_CLOCK_GETRES           = 229\n\tSYS_CLOCK_NANOSLEEP        = 230\n\tSYS_EXIT_GROUP             = 231\n\tSYS_EPOLL_WAIT             = 232\n\tSYS_EPOLL_CTL              = 233\n\tSYS_TGKILL                 = 234\n\tSYS_UTIMES                 = 235\n\tSYS_VSERVER                = 236\n\tSYS_MBIND                  = 237\n\tSYS_SET_MEMPOLICY          = 238\n\tSYS_GET_MEMPOLICY          = 239\n\tSYS_MQ_OPEN                = 240\n\tSYS_MQ_UNLINK              = 241\n\tSYS_MQ_TIMEDSEND           = 242\n\tSYS_MQ_TIMEDRECEIVE        = 243\n\tSYS_MQ_NOTIFY              = 244\n\tSYS_MQ_GETSETATTR          = 245\n\tSYS_KEXEC_LOAD             = 246\n\tSYS_WAITID                 = 247\n\tSYS_ADD_KEY                = 248\n\tSYS_REQUEST_KEY            = 249\n\tSYS_KEYCTL                 = 250\n\tSYS_IOPRIO_SET             = 251\n\tSYS_IOPRIO_GET             = 252\n\tSYS_INOTIFY_INIT           = 253\n\tSYS_INOTIFY_ADD_WATCH      = 254\n\tSYS_INOTIFY_RM_WATCH       = 255\n\tSYS_MIGRATE_PAGES          = 256\n\tSYS_OPENAT                 = 257\n\tSYS_MKDIRAT                = 258\n\tSYS_MKNODAT                = 259\n\tSYS_FCHOWNAT               = 260\n\tSYS_FUTIMESAT              = 261\n\tSYS_NEWFSTATAT             = 262\n\tSYS_UNLINKAT               = 263\n\tSYS_RENAMEAT               = 264\n\tSYS_LINKAT                 = 265\n\tSYS_SYMLINKAT              = 266\n\tSYS_READLINKAT             = 267\n\tSYS_FCHMODAT               = 268\n\tSYS_FACCESSAT              = 269\n\tSYS_PSELECT6               = 270\n\tSYS_PPOLL                  = 271\n\tSYS_UNSHARE                = 272\n\tSYS_SET_ROBUST_LIST        = 273\n\tSYS_GET_ROBUST_LIST        = 274\n\tSYS_SPLICE                 = 275\n\tSYS_TEE                    = 276\n\tSYS_SYNC_FILE_RANGE        = 277\n\tSYS_VMSPLICE               = 278\n\tSYS_MOVE_PAGES             = 279\n\tSYS_UTIMENSAT              = 280\n\tSYS_EPOLL_PWAIT            = 281\n\tSYS_SIGNALFD               = 282\n\tSYS_TIMERFD_CREATE         = 283\n\tSYS_EVENTFD                = 284\n\tSYS_FALLOCATE              = 285\n\tSYS_TIMERFD_SETTIME        = 286\n\tSYS_TIMERFD_GETTIME        = 287\n\tSYS_ACCEPT4                = 288\n\tSYS_SIGNALFD4              = 289\n\tSYS_EVENTFD2               = 290\n\tSYS_EPOLL_CREATE1          = 291\n\tSYS_DUP3                   = 292\n\tSYS_PIPE2                  = 293\n\tSYS_INOTIFY_INIT1          = 294\n\tSYS_PREADV                 = 295\n\tSYS_PWRITEV                = 296\n\tSYS_RT_TGSIGQUEUEINFO      = 297\n\tSYS_PERF_EVENT_OPEN        = 298\n\tSYS_RECVMMSG               = 299\n\tSYS_FANOTIFY_INIT          = 300\n\tSYS_FANOTIFY_MARK          = 301\n\tSYS_PRLIMIT64              = 302\n\tSYS_NAME_TO_HANDLE_AT      = 303\n\tSYS_OPEN_BY_HANDLE_AT      = 304\n\tSYS_CLOCK_ADJTIME          = 305\n\tSYS_SYNCFS                 = 306\n\tSYS_SENDMMSG               = 307\n\tSYS_SETNS                  = 308\n\tSYS_GETCPU                 = 309\n\tSYS_PROCESS_VM_READV       = 310\n\tSYS_PROCESS_VM_WRITEV      = 311\n\tSYS_KCMP                   = 312\n\tSYS_FINIT_MODULE           = 313\n\tSYS_SCHED_SETATTR          = 314\n\tSYS_SCHED_GETATTR          = 315\n\tSYS_RENAMEAT2              = 316\n\tSYS_SECCOMP                = 317\n\tSYS_GETRANDOM              = 318\n\tSYS_MEMFD_CREATE           = 319\n\tSYS_KEXEC_FILE_LOAD        = 320\n\tSYS_BPF                    = 321\n\tSYS_EXECVEAT               = 322\n\tSYS_USERFAULTFD            = 323\n\tSYS_MEMBARRIER             = 324\n\tSYS_MLOCK2                 = 325\n\tSYS_COPY_FILE_RANGE        = 326\n\tSYS_PREADV2                = 327\n\tSYS_PWRITEV2               = 328\n\tSYS_PKEY_MPROTECT          = 329\n\tSYS_PKEY_ALLOC             = 330\n\tSYS_PKEY_FREE              = 331\n\tSYS_STATX                  = 332\n\tSYS_IO_PGETEVENTS          = 333\n\tSYS_RSEQ                   = 334\n\tSYS_PIDFD_SEND_SIGNAL      = 424\n\tSYS_IO_URING_SETUP         = 425\n\tSYS_IO_URING_ENTER         = 426\n\tSYS_IO_URING_REGISTER      = 427\n\tSYS_OPEN_TREE              = 428\n\tSYS_MOVE_MOUNT             = 429\n\tSYS_FSOPEN                 = 430\n\tSYS_FSCONFIG               = 431\n\tSYS_FSMOUNT                = 432\n\tSYS_FSPICK                 = 433\n\tSYS_PIDFD_OPEN             = 434\n\tSYS_CLONE3                 = 435\n\tSYS_OPENAT2                = 437\n\tSYS_PIDFD_GETFD            = 438\n\tSYS_FACCESSAT2             = 439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,linux\n\npackage unix\n\nconst (\n\tSYS_RESTART_SYSCALL              = 0\n\tSYS_EXIT                         = 1\n\tSYS_FORK                         = 2\n\tSYS_READ                         = 3\n\tSYS_WRITE                        = 4\n\tSYS_OPEN                         = 5\n\tSYS_CLOSE                        = 6\n\tSYS_CREAT                        = 8\n\tSYS_LINK                         = 9\n\tSYS_UNLINK                       = 10\n\tSYS_EXECVE                       = 11\n\tSYS_CHDIR                        = 12\n\tSYS_MKNOD                        = 14\n\tSYS_CHMOD                        = 15\n\tSYS_LCHOWN                       = 16\n\tSYS_LSEEK                        = 19\n\tSYS_GETPID                       = 20\n\tSYS_MOUNT                        = 21\n\tSYS_SETUID                       = 23\n\tSYS_GETUID                       = 24\n\tSYS_PTRACE                       = 26\n\tSYS_PAUSE                        = 29\n\tSYS_ACCESS                       = 33\n\tSYS_NICE                         = 34\n\tSYS_SYNC                         = 36\n\tSYS_KILL                         = 37\n\tSYS_RENAME                       = 38\n\tSYS_MKDIR                        = 39\n\tSYS_RMDIR                        = 40\n\tSYS_DUP                          = 41\n\tSYS_PIPE                         = 42\n\tSYS_TIMES                        = 43\n\tSYS_BRK                          = 45\n\tSYS_SETGID                       = 46\n\tSYS_GETGID                       = 47\n\tSYS_GETEUID                      = 49\n\tSYS_GETEGID                      = 50\n\tSYS_ACCT                         = 51\n\tSYS_UMOUNT2                      = 52\n\tSYS_IOCTL                        = 54\n\tSYS_FCNTL                        = 55\n\tSYS_SETPGID                      = 57\n\tSYS_UMASK                        = 60\n\tSYS_CHROOT                       = 61\n\tSYS_USTAT                        = 62\n\tSYS_DUP2                         = 63\n\tSYS_GETPPID                      = 64\n\tSYS_GETPGRP                      = 65\n\tSYS_SETSID                       = 66\n\tSYS_SIGACTION                    = 67\n\tSYS_SETREUID                     = 70\n\tSYS_SETREGID                     = 71\n\tSYS_SIGSUSPEND                   = 72\n\tSYS_SIGPENDING                   = 73\n\tSYS_SETHOSTNAME                  = 74\n\tSYS_SETRLIMIT                    = 75\n\tSYS_GETRUSAGE                    = 77\n\tSYS_GETTIMEOFDAY                 = 78\n\tSYS_SETTIMEOFDAY                 = 79\n\tSYS_GETGROUPS                    = 80\n\tSYS_SETGROUPS                    = 81\n\tSYS_SYMLINK                      = 83\n\tSYS_READLINK                     = 85\n\tSYS_USELIB                       = 86\n\tSYS_SWAPON                       = 87\n\tSYS_REBOOT                       = 88\n\tSYS_MUNMAP                       = 91\n\tSYS_TRUNCATE                     = 92\n\tSYS_FTRUNCATE                    = 93\n\tSYS_FCHMOD                       = 94\n\tSYS_FCHOWN                       = 95\n\tSYS_GETPRIORITY                  = 96\n\tSYS_SETPRIORITY                  = 97\n\tSYS_STATFS                       = 99\n\tSYS_FSTATFS                      = 100\n\tSYS_SYSLOG                       = 103\n\tSYS_SETITIMER                    = 104\n\tSYS_GETITIMER                    = 105\n\tSYS_STAT                         = 106\n\tSYS_LSTAT                        = 107\n\tSYS_FSTAT                        = 108\n\tSYS_VHANGUP                      = 111\n\tSYS_WAIT4                        = 114\n\tSYS_SWAPOFF                      = 115\n\tSYS_SYSINFO                      = 116\n\tSYS_FSYNC                        = 118\n\tSYS_SIGRETURN                    = 119\n\tSYS_CLONE                        = 120\n\tSYS_SETDOMAINNAME                = 121\n\tSYS_UNAME                        = 122\n\tSYS_ADJTIMEX                     = 124\n\tSYS_MPROTECT                     = 125\n\tSYS_SIGPROCMASK                  = 126\n\tSYS_INIT_MODULE                  = 128\n\tSYS_DELETE_MODULE                = 129\n\tSYS_QUOTACTL                     = 131\n\tSYS_GETPGID                      = 132\n\tSYS_FCHDIR                       = 133\n\tSYS_BDFLUSH                      = 134\n\tSYS_SYSFS                        = 135\n\tSYS_PERSONALITY                  = 136\n\tSYS_SETFSUID                     = 138\n\tSYS_SETFSGID                     = 139\n\tSYS__LLSEEK                      = 140\n\tSYS_GETDENTS                     = 141\n\tSYS__NEWSELECT                   = 142\n\tSYS_FLOCK                        = 143\n\tSYS_MSYNC                        = 144\n\tSYS_READV                        = 145\n\tSYS_WRITEV                       = 146\n\tSYS_GETSID                       = 147\n\tSYS_FDATASYNC                    = 148\n\tSYS__SYSCTL                      = 149\n\tSYS_MLOCK                        = 150\n\tSYS_MUNLOCK                      = 151\n\tSYS_MLOCKALL                     = 152\n\tSYS_MUNLOCKALL                   = 153\n\tSYS_SCHED_SETPARAM               = 154\n\tSYS_SCHED_GETPARAM               = 155\n\tSYS_SCHED_SETSCHEDULER           = 156\n\tSYS_SCHED_GETSCHEDULER           = 157\n\tSYS_SCHED_YIELD                  = 158\n\tSYS_SCHED_GET_PRIORITY_MAX       = 159\n\tSYS_SCHED_GET_PRIORITY_MIN       = 160\n\tSYS_SCHED_RR_GET_INTERVAL        = 161\n\tSYS_NANOSLEEP                    = 162\n\tSYS_MREMAP                       = 163\n\tSYS_SETRESUID                    = 164\n\tSYS_GETRESUID                    = 165\n\tSYS_POLL                         = 168\n\tSYS_NFSSERVCTL                   = 169\n\tSYS_SETRESGID                    = 170\n\tSYS_GETRESGID                    = 171\n\tSYS_PRCTL                        = 172\n\tSYS_RT_SIGRETURN                 = 173\n\tSYS_RT_SIGACTION                 = 174\n\tSYS_RT_SIGPROCMASK               = 175\n\tSYS_RT_SIGPENDING                = 176\n\tSYS_RT_SIGTIMEDWAIT              = 177\n\tSYS_RT_SIGQUEUEINFO              = 178\n\tSYS_RT_SIGSUSPEND                = 179\n\tSYS_PREAD64                      = 180\n\tSYS_PWRITE64                     = 181\n\tSYS_CHOWN                        = 182\n\tSYS_GETCWD                       = 183\n\tSYS_CAPGET                       = 184\n\tSYS_CAPSET                       = 185\n\tSYS_SIGALTSTACK                  = 186\n\tSYS_SENDFILE                     = 187\n\tSYS_VFORK                        = 190\n\tSYS_UGETRLIMIT                   = 191\n\tSYS_MMAP2                        = 192\n\tSYS_TRUNCATE64                   = 193\n\tSYS_FTRUNCATE64                  = 194\n\tSYS_STAT64                       = 195\n\tSYS_LSTAT64                      = 196\n\tSYS_FSTAT64                      = 197\n\tSYS_LCHOWN32                     = 198\n\tSYS_GETUID32                     = 199\n\tSYS_GETGID32                     = 200\n\tSYS_GETEUID32                    = 201\n\tSYS_GETEGID32                    = 202\n\tSYS_SETREUID32                   = 203\n\tSYS_SETREGID32                   = 204\n\tSYS_GETGROUPS32                  = 205\n\tSYS_SETGROUPS32                  = 206\n\tSYS_FCHOWN32                     = 207\n\tSYS_SETRESUID32                  = 208\n\tSYS_GETRESUID32                  = 209\n\tSYS_SETRESGID32                  = 210\n\tSYS_GETRESGID32                  = 211\n\tSYS_CHOWN32                      = 212\n\tSYS_SETUID32                     = 213\n\tSYS_SETGID32                     = 214\n\tSYS_SETFSUID32                   = 215\n\tSYS_SETFSGID32                   = 216\n\tSYS_GETDENTS64                   = 217\n\tSYS_PIVOT_ROOT                   = 218\n\tSYS_MINCORE                      = 219\n\tSYS_MADVISE                      = 220\n\tSYS_FCNTL64                      = 221\n\tSYS_GETTID                       = 224\n\tSYS_READAHEAD                    = 225\n\tSYS_SETXATTR                     = 226\n\tSYS_LSETXATTR                    = 227\n\tSYS_FSETXATTR                    = 228\n\tSYS_GETXATTR                     = 229\n\tSYS_LGETXATTR                    = 230\n\tSYS_FGETXATTR                    = 231\n\tSYS_LISTXATTR                    = 232\n\tSYS_LLISTXATTR                   = 233\n\tSYS_FLISTXATTR                   = 234\n\tSYS_REMOVEXATTR                  = 235\n\tSYS_LREMOVEXATTR                 = 236\n\tSYS_FREMOVEXATTR                 = 237\n\tSYS_TKILL                        = 238\n\tSYS_SENDFILE64                   = 239\n\tSYS_FUTEX                        = 240\n\tSYS_SCHED_SETAFFINITY            = 241\n\tSYS_SCHED_GETAFFINITY            = 242\n\tSYS_IO_SETUP                     = 243\n\tSYS_IO_DESTROY                   = 244\n\tSYS_IO_GETEVENTS                 = 245\n\tSYS_IO_SUBMIT                    = 246\n\tSYS_IO_CANCEL                    = 247\n\tSYS_EXIT_GROUP                   = 248\n\tSYS_LOOKUP_DCOOKIE               = 249\n\tSYS_EPOLL_CREATE                 = 250\n\tSYS_EPOLL_CTL                    = 251\n\tSYS_EPOLL_WAIT                   = 252\n\tSYS_REMAP_FILE_PAGES             = 253\n\tSYS_SET_TID_ADDRESS              = 256\n\tSYS_TIMER_CREATE                 = 257\n\tSYS_TIMER_SETTIME                = 258\n\tSYS_TIMER_GETTIME                = 259\n\tSYS_TIMER_GETOVERRUN             = 260\n\tSYS_TIMER_DELETE                 = 261\n\tSYS_CLOCK_SETTIME                = 262\n\tSYS_CLOCK_GETTIME                = 263\n\tSYS_CLOCK_GETRES                 = 264\n\tSYS_CLOCK_NANOSLEEP              = 265\n\tSYS_STATFS64                     = 266\n\tSYS_FSTATFS64                    = 267\n\tSYS_TGKILL                       = 268\n\tSYS_UTIMES                       = 269\n\tSYS_ARM_FADVISE64_64             = 270\n\tSYS_PCICONFIG_IOBASE             = 271\n\tSYS_PCICONFIG_READ               = 272\n\tSYS_PCICONFIG_WRITE              = 273\n\tSYS_MQ_OPEN                      = 274\n\tSYS_MQ_UNLINK                    = 275\n\tSYS_MQ_TIMEDSEND                 = 276\n\tSYS_MQ_TIMEDRECEIVE              = 277\n\tSYS_MQ_NOTIFY                    = 278\n\tSYS_MQ_GETSETATTR                = 279\n\tSYS_WAITID                       = 280\n\tSYS_SOCKET                       = 281\n\tSYS_BIND                         = 282\n\tSYS_CONNECT                      = 283\n\tSYS_LISTEN                       = 284\n\tSYS_ACCEPT                       = 285\n\tSYS_GETSOCKNAME                  = 286\n\tSYS_GETPEERNAME                  = 287\n\tSYS_SOCKETPAIR                   = 288\n\tSYS_SEND                         = 289\n\tSYS_SENDTO                       = 290\n\tSYS_RECV                         = 291\n\tSYS_RECVFROM                     = 292\n\tSYS_SHUTDOWN                     = 293\n\tSYS_SETSOCKOPT                   = 294\n\tSYS_GETSOCKOPT                   = 295\n\tSYS_SENDMSG                      = 296\n\tSYS_RECVMSG                      = 297\n\tSYS_SEMOP                        = 298\n\tSYS_SEMGET                       = 299\n\tSYS_SEMCTL                       = 300\n\tSYS_MSGSND                       = 301\n\tSYS_MSGRCV                       = 302\n\tSYS_MSGGET                       = 303\n\tSYS_MSGCTL                       = 304\n\tSYS_SHMAT                        = 305\n\tSYS_SHMDT                        = 306\n\tSYS_SHMGET                       = 307\n\tSYS_SHMCTL                       = 308\n\tSYS_ADD_KEY                      = 309\n\tSYS_REQUEST_KEY                  = 310\n\tSYS_KEYCTL                       = 311\n\tSYS_SEMTIMEDOP                   = 312\n\tSYS_VSERVER                      = 313\n\tSYS_IOPRIO_SET                   = 314\n\tSYS_IOPRIO_GET                   = 315\n\tSYS_INOTIFY_INIT                 = 316\n\tSYS_INOTIFY_ADD_WATCH            = 317\n\tSYS_INOTIFY_RM_WATCH             = 318\n\tSYS_MBIND                        = 319\n\tSYS_GET_MEMPOLICY                = 320\n\tSYS_SET_MEMPOLICY                = 321\n\tSYS_OPENAT                       = 322\n\tSYS_MKDIRAT                      = 323\n\tSYS_MKNODAT                      = 324\n\tSYS_FCHOWNAT                     = 325\n\tSYS_FUTIMESAT                    = 326\n\tSYS_FSTATAT64                    = 327\n\tSYS_UNLINKAT                     = 328\n\tSYS_RENAMEAT                     = 329\n\tSYS_LINKAT                       = 330\n\tSYS_SYMLINKAT                    = 331\n\tSYS_READLINKAT                   = 332\n\tSYS_FCHMODAT                     = 333\n\tSYS_FACCESSAT                    = 334\n\tSYS_PSELECT6                     = 335\n\tSYS_PPOLL                        = 336\n\tSYS_UNSHARE                      = 337\n\tSYS_SET_ROBUST_LIST              = 338\n\tSYS_GET_ROBUST_LIST              = 339\n\tSYS_SPLICE                       = 340\n\tSYS_ARM_SYNC_FILE_RANGE          = 341\n\tSYS_TEE                          = 342\n\tSYS_VMSPLICE                     = 343\n\tSYS_MOVE_PAGES                   = 344\n\tSYS_GETCPU                       = 345\n\tSYS_EPOLL_PWAIT                  = 346\n\tSYS_KEXEC_LOAD                   = 347\n\tSYS_UTIMENSAT                    = 348\n\tSYS_SIGNALFD                     = 349\n\tSYS_TIMERFD_CREATE               = 350\n\tSYS_EVENTFD                      = 351\n\tSYS_FALLOCATE                    = 352\n\tSYS_TIMERFD_SETTIME              = 353\n\tSYS_TIMERFD_GETTIME              = 354\n\tSYS_SIGNALFD4                    = 355\n\tSYS_EVENTFD2                     = 356\n\tSYS_EPOLL_CREATE1                = 357\n\tSYS_DUP3                         = 358\n\tSYS_PIPE2                        = 359\n\tSYS_INOTIFY_INIT1                = 360\n\tSYS_PREADV                       = 361\n\tSYS_PWRITEV                      = 362\n\tSYS_RT_TGSIGQUEUEINFO            = 363\n\tSYS_PERF_EVENT_OPEN              = 364\n\tSYS_RECVMMSG                     = 365\n\tSYS_ACCEPT4                      = 366\n\tSYS_FANOTIFY_INIT                = 367\n\tSYS_FANOTIFY_MARK                = 368\n\tSYS_PRLIMIT64                    = 369\n\tSYS_NAME_TO_HANDLE_AT            = 370\n\tSYS_OPEN_BY_HANDLE_AT            = 371\n\tSYS_CLOCK_ADJTIME                = 372\n\tSYS_SYNCFS                       = 373\n\tSYS_SENDMMSG                     = 374\n\tSYS_SETNS                        = 375\n\tSYS_PROCESS_VM_READV             = 376\n\tSYS_PROCESS_VM_WRITEV            = 377\n\tSYS_KCMP                         = 378\n\tSYS_FINIT_MODULE                 = 379\n\tSYS_SCHED_SETATTR                = 380\n\tSYS_SCHED_GETATTR                = 381\n\tSYS_RENAMEAT2                    = 382\n\tSYS_SECCOMP                      = 383\n\tSYS_GETRANDOM                    = 384\n\tSYS_MEMFD_CREATE                 = 385\n\tSYS_BPF                          = 386\n\tSYS_EXECVEAT                     = 387\n\tSYS_USERFAULTFD                  = 388\n\tSYS_MEMBARRIER                   = 389\n\tSYS_MLOCK2                       = 390\n\tSYS_COPY_FILE_RANGE              = 391\n\tSYS_PREADV2                      = 392\n\tSYS_PWRITEV2                     = 393\n\tSYS_PKEY_MPROTECT                = 394\n\tSYS_PKEY_ALLOC                   = 395\n\tSYS_PKEY_FREE                    = 396\n\tSYS_STATX                        = 397\n\tSYS_RSEQ                         = 398\n\tSYS_IO_PGETEVENTS                = 399\n\tSYS_MIGRATE_PAGES                = 400\n\tSYS_KEXEC_FILE_LOAD              = 401\n\tSYS_CLOCK_GETTIME64              = 403\n\tSYS_CLOCK_SETTIME64              = 404\n\tSYS_CLOCK_ADJTIME64              = 405\n\tSYS_CLOCK_GETRES_TIME64          = 406\n\tSYS_CLOCK_NANOSLEEP_TIME64       = 407\n\tSYS_TIMER_GETTIME64              = 408\n\tSYS_TIMER_SETTIME64              = 409\n\tSYS_TIMERFD_GETTIME64            = 410\n\tSYS_TIMERFD_SETTIME64            = 411\n\tSYS_UTIMENSAT_TIME64             = 412\n\tSYS_PSELECT6_TIME64              = 413\n\tSYS_PPOLL_TIME64                 = 414\n\tSYS_IO_PGETEVENTS_TIME64         = 416\n\tSYS_RECVMMSG_TIME64              = 417\n\tSYS_MQ_TIMEDSEND_TIME64          = 418\n\tSYS_MQ_TIMEDRECEIVE_TIME64       = 419\n\tSYS_SEMTIMEDOP_TIME64            = 420\n\tSYS_RT_SIGTIMEDWAIT_TIME64       = 421\n\tSYS_FUTEX_TIME64                 = 422\n\tSYS_SCHED_RR_GET_INTERVAL_TIME64 = 423\n\tSYS_PIDFD_SEND_SIGNAL            = 424\n\tSYS_IO_URING_SETUP               = 425\n\tSYS_IO_URING_ENTER               = 426\n\tSYS_IO_URING_REGISTER            = 427\n\tSYS_OPEN_TREE                    = 428\n\tSYS_MOVE_MOUNT                   = 429\n\tSYS_FSOPEN                       = 430\n\tSYS_FSCONFIG                     = 431\n\tSYS_FSMOUNT                      = 432\n\tSYS_FSPICK                       = 433\n\tSYS_PIDFD_OPEN                   = 434\n\tSYS_CLONE3                       = 435\n\tSYS_OPENAT2                      = 437\n\tSYS_PIDFD_GETFD                  = 438\n\tSYS_FACCESSAT2                   = 439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include -fsigned-char /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,linux\n\npackage unix\n\nconst (\n\tSYS_IO_SETUP               = 0\n\tSYS_IO_DESTROY             = 1\n\tSYS_IO_SUBMIT              = 2\n\tSYS_IO_CANCEL              = 3\n\tSYS_IO_GETEVENTS           = 4\n\tSYS_SETXATTR               = 5\n\tSYS_LSETXATTR              = 6\n\tSYS_FSETXATTR              = 7\n\tSYS_GETXATTR               = 8\n\tSYS_LGETXATTR              = 9\n\tSYS_FGETXATTR              = 10\n\tSYS_LISTXATTR              = 11\n\tSYS_LLISTXATTR             = 12\n\tSYS_FLISTXATTR             = 13\n\tSYS_REMOVEXATTR            = 14\n\tSYS_LREMOVEXATTR           = 15\n\tSYS_FREMOVEXATTR           = 16\n\tSYS_GETCWD                 = 17\n\tSYS_LOOKUP_DCOOKIE         = 18\n\tSYS_EVENTFD2               = 19\n\tSYS_EPOLL_CREATE1          = 20\n\tSYS_EPOLL_CTL              = 21\n\tSYS_EPOLL_PWAIT            = 22\n\tSYS_DUP                    = 23\n\tSYS_DUP3                   = 24\n\tSYS_FCNTL                  = 25\n\tSYS_INOTIFY_INIT1          = 26\n\tSYS_INOTIFY_ADD_WATCH      = 27\n\tSYS_INOTIFY_RM_WATCH       = 28\n\tSYS_IOCTL                  = 29\n\tSYS_IOPRIO_SET             = 30\n\tSYS_IOPRIO_GET             = 31\n\tSYS_FLOCK                  = 32\n\tSYS_MKNODAT                = 33\n\tSYS_MKDIRAT                = 34\n\tSYS_UNLINKAT               = 35\n\tSYS_SYMLINKAT              = 36\n\tSYS_LINKAT                 = 37\n\tSYS_RENAMEAT               = 38\n\tSYS_UMOUNT2                = 39\n\tSYS_MOUNT                  = 40\n\tSYS_PIVOT_ROOT             = 41\n\tSYS_NFSSERVCTL             = 42\n\tSYS_STATFS                 = 43\n\tSYS_FSTATFS                = 44\n\tSYS_TRUNCATE               = 45\n\tSYS_FTRUNCATE              = 46\n\tSYS_FALLOCATE              = 47\n\tSYS_FACCESSAT              = 48\n\tSYS_CHDIR                  = 49\n\tSYS_FCHDIR                 = 50\n\tSYS_CHROOT                 = 51\n\tSYS_FCHMOD                 = 52\n\tSYS_FCHMODAT               = 53\n\tSYS_FCHOWNAT               = 54\n\tSYS_FCHOWN                 = 55\n\tSYS_OPENAT                 = 56\n\tSYS_CLOSE                  = 57\n\tSYS_VHANGUP                = 58\n\tSYS_PIPE2                  = 59\n\tSYS_QUOTACTL               = 60\n\tSYS_GETDENTS64             = 61\n\tSYS_LSEEK                  = 62\n\tSYS_READ                   = 63\n\tSYS_WRITE                  = 64\n\tSYS_READV                  = 65\n\tSYS_WRITEV                 = 66\n\tSYS_PREAD64                = 67\n\tSYS_PWRITE64               = 68\n\tSYS_PREADV                 = 69\n\tSYS_PWRITEV                = 70\n\tSYS_SENDFILE               = 71\n\tSYS_PSELECT6               = 72\n\tSYS_PPOLL                  = 73\n\tSYS_SIGNALFD4              = 74\n\tSYS_VMSPLICE               = 75\n\tSYS_SPLICE                 = 76\n\tSYS_TEE                    = 77\n\tSYS_READLINKAT             = 78\n\tSYS_FSTATAT                = 79\n\tSYS_FSTAT                  = 80\n\tSYS_SYNC                   = 81\n\tSYS_FSYNC                  = 82\n\tSYS_FDATASYNC              = 83\n\tSYS_SYNC_FILE_RANGE        = 84\n\tSYS_TIMERFD_CREATE         = 85\n\tSYS_TIMERFD_SETTIME        = 86\n\tSYS_TIMERFD_GETTIME        = 87\n\tSYS_UTIMENSAT              = 88\n\tSYS_ACCT                   = 89\n\tSYS_CAPGET                 = 90\n\tSYS_CAPSET                 = 91\n\tSYS_PERSONALITY            = 92\n\tSYS_EXIT                   = 93\n\tSYS_EXIT_GROUP             = 94\n\tSYS_WAITID                 = 95\n\tSYS_SET_TID_ADDRESS        = 96\n\tSYS_UNSHARE                = 97\n\tSYS_FUTEX                  = 98\n\tSYS_SET_ROBUST_LIST        = 99\n\tSYS_GET_ROBUST_LIST        = 100\n\tSYS_NANOSLEEP              = 101\n\tSYS_GETITIMER              = 102\n\tSYS_SETITIMER              = 103\n\tSYS_KEXEC_LOAD             = 104\n\tSYS_INIT_MODULE            = 105\n\tSYS_DELETE_MODULE          = 106\n\tSYS_TIMER_CREATE           = 107\n\tSYS_TIMER_GETTIME          = 108\n\tSYS_TIMER_GETOVERRUN       = 109\n\tSYS_TIMER_SETTIME          = 110\n\tSYS_TIMER_DELETE           = 111\n\tSYS_CLOCK_SETTIME          = 112\n\tSYS_CLOCK_GETTIME          = 113\n\tSYS_CLOCK_GETRES           = 114\n\tSYS_CLOCK_NANOSLEEP        = 115\n\tSYS_SYSLOG                 = 116\n\tSYS_PTRACE                 = 117\n\tSYS_SCHED_SETPARAM         = 118\n\tSYS_SCHED_SETSCHEDULER     = 119\n\tSYS_SCHED_GETSCHEDULER     = 120\n\tSYS_SCHED_GETPARAM         = 121\n\tSYS_SCHED_SETAFFINITY      = 122\n\tSYS_SCHED_GETAFFINITY      = 123\n\tSYS_SCHED_YIELD            = 124\n\tSYS_SCHED_GET_PRIORITY_MAX = 125\n\tSYS_SCHED_GET_PRIORITY_MIN = 126\n\tSYS_SCHED_RR_GET_INTERVAL  = 127\n\tSYS_RESTART_SYSCALL        = 128\n\tSYS_KILL                   = 129\n\tSYS_TKILL                  = 130\n\tSYS_TGKILL                 = 131\n\tSYS_SIGALTSTACK            = 132\n\tSYS_RT_SIGSUSPEND          = 133\n\tSYS_RT_SIGACTION           = 134\n\tSYS_RT_SIGPROCMASK         = 135\n\tSYS_RT_SIGPENDING          = 136\n\tSYS_RT_SIGTIMEDWAIT        = 137\n\tSYS_RT_SIGQUEUEINFO        = 138\n\tSYS_RT_SIGRETURN           = 139\n\tSYS_SETPRIORITY            = 140\n\tSYS_GETPRIORITY            = 141\n\tSYS_REBOOT                 = 142\n\tSYS_SETREGID               = 143\n\tSYS_SETGID                 = 144\n\tSYS_SETREUID               = 145\n\tSYS_SETUID                 = 146\n\tSYS_SETRESUID              = 147\n\tSYS_GETRESUID              = 148\n\tSYS_SETRESGID              = 149\n\tSYS_GETRESGID              = 150\n\tSYS_SETFSUID               = 151\n\tSYS_SETFSGID               = 152\n\tSYS_TIMES                  = 153\n\tSYS_SETPGID                = 154\n\tSYS_GETPGID                = 155\n\tSYS_GETSID                 = 156\n\tSYS_SETSID                 = 157\n\tSYS_GETGROUPS              = 158\n\tSYS_SETGROUPS              = 159\n\tSYS_UNAME                  = 160\n\tSYS_SETHOSTNAME            = 161\n\tSYS_SETDOMAINNAME          = 162\n\tSYS_GETRLIMIT              = 163\n\tSYS_SETRLIMIT              = 164\n\tSYS_GETRUSAGE              = 165\n\tSYS_UMASK                  = 166\n\tSYS_PRCTL                  = 167\n\tSYS_GETCPU                 = 168\n\tSYS_GETTIMEOFDAY           = 169\n\tSYS_SETTIMEOFDAY           = 170\n\tSYS_ADJTIMEX               = 171\n\tSYS_GETPID                 = 172\n\tSYS_GETPPID                = 173\n\tSYS_GETUID                 = 174\n\tSYS_GETEUID                = 175\n\tSYS_GETGID                 = 176\n\tSYS_GETEGID                = 177\n\tSYS_GETTID                 = 178\n\tSYS_SYSINFO                = 179\n\tSYS_MQ_OPEN                = 180\n\tSYS_MQ_UNLINK              = 181\n\tSYS_MQ_TIMEDSEND           = 182\n\tSYS_MQ_TIMEDRECEIVE        = 183\n\tSYS_MQ_NOTIFY              = 184\n\tSYS_MQ_GETSETATTR          = 185\n\tSYS_MSGGET                 = 186\n\tSYS_MSGCTL                 = 187\n\tSYS_MSGRCV                 = 188\n\tSYS_MSGSND                 = 189\n\tSYS_SEMGET                 = 190\n\tSYS_SEMCTL                 = 191\n\tSYS_SEMTIMEDOP             = 192\n\tSYS_SEMOP                  = 193\n\tSYS_SHMGET                 = 194\n\tSYS_SHMCTL                 = 195\n\tSYS_SHMAT                  = 196\n\tSYS_SHMDT                  = 197\n\tSYS_SOCKET                 = 198\n\tSYS_SOCKETPAIR             = 199\n\tSYS_BIND                   = 200\n\tSYS_LISTEN                 = 201\n\tSYS_ACCEPT                 = 202\n\tSYS_CONNECT                = 203\n\tSYS_GETSOCKNAME            = 204\n\tSYS_GETPEERNAME            = 205\n\tSYS_SENDTO                 = 206\n\tSYS_RECVFROM               = 207\n\tSYS_SETSOCKOPT             = 208\n\tSYS_GETSOCKOPT             = 209\n\tSYS_SHUTDOWN               = 210\n\tSYS_SENDMSG                = 211\n\tSYS_RECVMSG                = 212\n\tSYS_READAHEAD              = 213\n\tSYS_BRK                    = 214\n\tSYS_MUNMAP                 = 215\n\tSYS_MREMAP                 = 216\n\tSYS_ADD_KEY                = 217\n\tSYS_REQUEST_KEY            = 218\n\tSYS_KEYCTL                 = 219\n\tSYS_CLONE                  = 220\n\tSYS_EXECVE                 = 221\n\tSYS_MMAP                   = 222\n\tSYS_FADVISE64              = 223\n\tSYS_SWAPON                 = 224\n\tSYS_SWAPOFF                = 225\n\tSYS_MPROTECT               = 226\n\tSYS_MSYNC                  = 227\n\tSYS_MLOCK                  = 228\n\tSYS_MUNLOCK                = 229\n\tSYS_MLOCKALL               = 230\n\tSYS_MUNLOCKALL             = 231\n\tSYS_MINCORE                = 232\n\tSYS_MADVISE                = 233\n\tSYS_REMAP_FILE_PAGES       = 234\n\tSYS_MBIND                  = 235\n\tSYS_GET_MEMPOLICY          = 236\n\tSYS_SET_MEMPOLICY          = 237\n\tSYS_MIGRATE_PAGES          = 238\n\tSYS_MOVE_PAGES             = 239\n\tSYS_RT_TGSIGQUEUEINFO      = 240\n\tSYS_PERF_EVENT_OPEN        = 241\n\tSYS_ACCEPT4                = 242\n\tSYS_RECVMMSG               = 243\n\tSYS_ARCH_SPECIFIC_SYSCALL  = 244\n\tSYS_WAIT4                  = 260\n\tSYS_PRLIMIT64              = 261\n\tSYS_FANOTIFY_INIT          = 262\n\tSYS_FANOTIFY_MARK          = 263\n\tSYS_NAME_TO_HANDLE_AT      = 264\n\tSYS_OPEN_BY_HANDLE_AT      = 265\n\tSYS_CLOCK_ADJTIME          = 266\n\tSYS_SYNCFS                 = 267\n\tSYS_SETNS                  = 268\n\tSYS_SENDMMSG               = 269\n\tSYS_PROCESS_VM_READV       = 270\n\tSYS_PROCESS_VM_WRITEV      = 271\n\tSYS_KCMP                   = 272\n\tSYS_FINIT_MODULE           = 273\n\tSYS_SCHED_SETATTR          = 274\n\tSYS_SCHED_GETATTR          = 275\n\tSYS_RENAMEAT2              = 276\n\tSYS_SECCOMP                = 277\n\tSYS_GETRANDOM              = 278\n\tSYS_MEMFD_CREATE           = 279\n\tSYS_BPF                    = 280\n\tSYS_EXECVEAT               = 281\n\tSYS_USERFAULTFD            = 282\n\tSYS_MEMBARRIER             = 283\n\tSYS_MLOCK2                 = 284\n\tSYS_COPY_FILE_RANGE        = 285\n\tSYS_PREADV2                = 286\n\tSYS_PWRITEV2               = 287\n\tSYS_PKEY_MPROTECT          = 288\n\tSYS_PKEY_ALLOC             = 289\n\tSYS_PKEY_FREE              = 290\n\tSYS_STATX                  = 291\n\tSYS_IO_PGETEVENTS          = 292\n\tSYS_RSEQ                   = 293\n\tSYS_KEXEC_FILE_LOAD        = 294\n\tSYS_PIDFD_SEND_SIGNAL      = 424\n\tSYS_IO_URING_SETUP         = 425\n\tSYS_IO_URING_ENTER         = 426\n\tSYS_IO_URING_REGISTER      = 427\n\tSYS_OPEN_TREE              = 428\n\tSYS_MOVE_MOUNT             = 429\n\tSYS_FSOPEN                 = 430\n\tSYS_FSCONFIG               = 431\n\tSYS_FSMOUNT                = 432\n\tSYS_FSPICK                 = 433\n\tSYS_PIDFD_OPEN             = 434\n\tSYS_CLONE3                 = 435\n\tSYS_OPENAT2                = 437\n\tSYS_PIDFD_GETFD            = 438\n\tSYS_FACCESSAT2             = 439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips,linux\n\npackage unix\n\nconst (\n\tSYS_SYSCALL                      = 4000\n\tSYS_EXIT                         = 4001\n\tSYS_FORK                         = 4002\n\tSYS_READ                         = 4003\n\tSYS_WRITE                        = 4004\n\tSYS_OPEN                         = 4005\n\tSYS_CLOSE                        = 4006\n\tSYS_WAITPID                      = 4007\n\tSYS_CREAT                        = 4008\n\tSYS_LINK                         = 4009\n\tSYS_UNLINK                       = 4010\n\tSYS_EXECVE                       = 4011\n\tSYS_CHDIR                        = 4012\n\tSYS_TIME                         = 4013\n\tSYS_MKNOD                        = 4014\n\tSYS_CHMOD                        = 4015\n\tSYS_LCHOWN                       = 4016\n\tSYS_BREAK                        = 4017\n\tSYS_UNUSED18                     = 4018\n\tSYS_LSEEK                        = 4019\n\tSYS_GETPID                       = 4020\n\tSYS_MOUNT                        = 4021\n\tSYS_UMOUNT                       = 4022\n\tSYS_SETUID                       = 4023\n\tSYS_GETUID                       = 4024\n\tSYS_STIME                        = 4025\n\tSYS_PTRACE                       = 4026\n\tSYS_ALARM                        = 4027\n\tSYS_UNUSED28                     = 4028\n\tSYS_PAUSE                        = 4029\n\tSYS_UTIME                        = 4030\n\tSYS_STTY                         = 4031\n\tSYS_GTTY                         = 4032\n\tSYS_ACCESS                       = 4033\n\tSYS_NICE                         = 4034\n\tSYS_FTIME                        = 4035\n\tSYS_SYNC                         = 4036\n\tSYS_KILL                         = 4037\n\tSYS_RENAME                       = 4038\n\tSYS_MKDIR                        = 4039\n\tSYS_RMDIR                        = 4040\n\tSYS_DUP                          = 4041\n\tSYS_PIPE                         = 4042\n\tSYS_TIMES                        = 4043\n\tSYS_PROF                         = 4044\n\tSYS_BRK                          = 4045\n\tSYS_SETGID                       = 4046\n\tSYS_GETGID                       = 4047\n\tSYS_SIGNAL                       = 4048\n\tSYS_GETEUID                      = 4049\n\tSYS_GETEGID                      = 4050\n\tSYS_ACCT                         = 4051\n\tSYS_UMOUNT2                      = 4052\n\tSYS_LOCK                         = 4053\n\tSYS_IOCTL                        = 4054\n\tSYS_FCNTL                        = 4055\n\tSYS_MPX                          = 4056\n\tSYS_SETPGID                      = 4057\n\tSYS_ULIMIT                       = 4058\n\tSYS_UNUSED59                     = 4059\n\tSYS_UMASK                        = 4060\n\tSYS_CHROOT                       = 4061\n\tSYS_USTAT                        = 4062\n\tSYS_DUP2                         = 4063\n\tSYS_GETPPID                      = 4064\n\tSYS_GETPGRP                      = 4065\n\tSYS_SETSID                       = 4066\n\tSYS_SIGACTION                    = 4067\n\tSYS_SGETMASK                     = 4068\n\tSYS_SSETMASK                     = 4069\n\tSYS_SETREUID                     = 4070\n\tSYS_SETREGID                     = 4071\n\tSYS_SIGSUSPEND                   = 4072\n\tSYS_SIGPENDING                   = 4073\n\tSYS_SETHOSTNAME                  = 4074\n\tSYS_SETRLIMIT                    = 4075\n\tSYS_GETRLIMIT                    = 4076\n\tSYS_GETRUSAGE                    = 4077\n\tSYS_GETTIMEOFDAY                 = 4078\n\tSYS_SETTIMEOFDAY                 = 4079\n\tSYS_GETGROUPS                    = 4080\n\tSYS_SETGROUPS                    = 4081\n\tSYS_RESERVED82                   = 4082\n\tSYS_SYMLINK                      = 4083\n\tSYS_UNUSED84                     = 4084\n\tSYS_READLINK                     = 4085\n\tSYS_USELIB                       = 4086\n\tSYS_SWAPON                       = 4087\n\tSYS_REBOOT                       = 4088\n\tSYS_READDIR                      = 4089\n\tSYS_MMAP                         = 4090\n\tSYS_MUNMAP                       = 4091\n\tSYS_TRUNCATE                     = 4092\n\tSYS_FTRUNCATE                    = 4093\n\tSYS_FCHMOD                       = 4094\n\tSYS_FCHOWN                       = 4095\n\tSYS_GETPRIORITY                  = 4096\n\tSYS_SETPRIORITY                  = 4097\n\tSYS_PROFIL                       = 4098\n\tSYS_STATFS                       = 4099\n\tSYS_FSTATFS                      = 4100\n\tSYS_IOPERM                       = 4101\n\tSYS_SOCKETCALL                   = 4102\n\tSYS_SYSLOG                       = 4103\n\tSYS_SETITIMER                    = 4104\n\tSYS_GETITIMER                    = 4105\n\tSYS_STAT                         = 4106\n\tSYS_LSTAT                        = 4107\n\tSYS_FSTAT                        = 4108\n\tSYS_UNUSED109                    = 4109\n\tSYS_IOPL                         = 4110\n\tSYS_VHANGUP                      = 4111\n\tSYS_IDLE                         = 4112\n\tSYS_VM86                         = 4113\n\tSYS_WAIT4                        = 4114\n\tSYS_SWAPOFF                      = 4115\n\tSYS_SYSINFO                      = 4116\n\tSYS_IPC                          = 4117\n\tSYS_FSYNC                        = 4118\n\tSYS_SIGRETURN                    = 4119\n\tSYS_CLONE                        = 4120\n\tSYS_SETDOMAINNAME                = 4121\n\tSYS_UNAME                        = 4122\n\tSYS_MODIFY_LDT                   = 4123\n\tSYS_ADJTIMEX                     = 4124\n\tSYS_MPROTECT                     = 4125\n\tSYS_SIGPROCMASK                  = 4126\n\tSYS_CREATE_MODULE                = 4127\n\tSYS_INIT_MODULE                  = 4128\n\tSYS_DELETE_MODULE                = 4129\n\tSYS_GET_KERNEL_SYMS              = 4130\n\tSYS_QUOTACTL                     = 4131\n\tSYS_GETPGID                      = 4132\n\tSYS_FCHDIR                       = 4133\n\tSYS_BDFLUSH                      = 4134\n\tSYS_SYSFS                        = 4135\n\tSYS_PERSONALITY                  = 4136\n\tSYS_AFS_SYSCALL                  = 4137\n\tSYS_SETFSUID                     = 4138\n\tSYS_SETFSGID                     = 4139\n\tSYS__LLSEEK                      = 4140\n\tSYS_GETDENTS                     = 4141\n\tSYS__NEWSELECT                   = 4142\n\tSYS_FLOCK                        = 4143\n\tSYS_MSYNC                        = 4144\n\tSYS_READV                        = 4145\n\tSYS_WRITEV                       = 4146\n\tSYS_CACHEFLUSH                   = 4147\n\tSYS_CACHECTL                     = 4148\n\tSYS_SYSMIPS                      = 4149\n\tSYS_UNUSED150                    = 4150\n\tSYS_GETSID                       = 4151\n\tSYS_FDATASYNC                    = 4152\n\tSYS__SYSCTL                      = 4153\n\tSYS_MLOCK                        = 4154\n\tSYS_MUNLOCK                      = 4155\n\tSYS_MLOCKALL                     = 4156\n\tSYS_MUNLOCKALL                   = 4157\n\tSYS_SCHED_SETPARAM               = 4158\n\tSYS_SCHED_GETPARAM               = 4159\n\tSYS_SCHED_SETSCHEDULER           = 4160\n\tSYS_SCHED_GETSCHEDULER           = 4161\n\tSYS_SCHED_YIELD                  = 4162\n\tSYS_SCHED_GET_PRIORITY_MAX       = 4163\n\tSYS_SCHED_GET_PRIORITY_MIN       = 4164\n\tSYS_SCHED_RR_GET_INTERVAL        = 4165\n\tSYS_NANOSLEEP                    = 4166\n\tSYS_MREMAP                       = 4167\n\tSYS_ACCEPT                       = 4168\n\tSYS_BIND                         = 4169\n\tSYS_CONNECT                      = 4170\n\tSYS_GETPEERNAME                  = 4171\n\tSYS_GETSOCKNAME                  = 4172\n\tSYS_GETSOCKOPT                   = 4173\n\tSYS_LISTEN                       = 4174\n\tSYS_RECV                         = 4175\n\tSYS_RECVFROM                     = 4176\n\tSYS_RECVMSG                      = 4177\n\tSYS_SEND                         = 4178\n\tSYS_SENDMSG                      = 4179\n\tSYS_SENDTO                       = 4180\n\tSYS_SETSOCKOPT                   = 4181\n\tSYS_SHUTDOWN                     = 4182\n\tSYS_SOCKET                       = 4183\n\tSYS_SOCKETPAIR                   = 4184\n\tSYS_SETRESUID                    = 4185\n\tSYS_GETRESUID                    = 4186\n\tSYS_QUERY_MODULE                 = 4187\n\tSYS_POLL                         = 4188\n\tSYS_NFSSERVCTL                   = 4189\n\tSYS_SETRESGID                    = 4190\n\tSYS_GETRESGID                    = 4191\n\tSYS_PRCTL                        = 4192\n\tSYS_RT_SIGRETURN                 = 4193\n\tSYS_RT_SIGACTION                 = 4194\n\tSYS_RT_SIGPROCMASK               = 4195\n\tSYS_RT_SIGPENDING                = 4196\n\tSYS_RT_SIGTIMEDWAIT              = 4197\n\tSYS_RT_SIGQUEUEINFO              = 4198\n\tSYS_RT_SIGSUSPEND                = 4199\n\tSYS_PREAD64                      = 4200\n\tSYS_PWRITE64                     = 4201\n\tSYS_CHOWN                        = 4202\n\tSYS_GETCWD                       = 4203\n\tSYS_CAPGET                       = 4204\n\tSYS_CAPSET                       = 4205\n\tSYS_SIGALTSTACK                  = 4206\n\tSYS_SENDFILE                     = 4207\n\tSYS_GETPMSG                      = 4208\n\tSYS_PUTPMSG                      = 4209\n\tSYS_MMAP2                        = 4210\n\tSYS_TRUNCATE64                   = 4211\n\tSYS_FTRUNCATE64                  = 4212\n\tSYS_STAT64                       = 4213\n\tSYS_LSTAT64                      = 4214\n\tSYS_FSTAT64                      = 4215\n\tSYS_PIVOT_ROOT                   = 4216\n\tSYS_MINCORE                      = 4217\n\tSYS_MADVISE                      = 4218\n\tSYS_GETDENTS64                   = 4219\n\tSYS_FCNTL64                      = 4220\n\tSYS_RESERVED221                  = 4221\n\tSYS_GETTID                       = 4222\n\tSYS_READAHEAD                    = 4223\n\tSYS_SETXATTR                     = 4224\n\tSYS_LSETXATTR                    = 4225\n\tSYS_FSETXATTR                    = 4226\n\tSYS_GETXATTR                     = 4227\n\tSYS_LGETXATTR                    = 4228\n\tSYS_FGETXATTR                    = 4229\n\tSYS_LISTXATTR                    = 4230\n\tSYS_LLISTXATTR                   = 4231\n\tSYS_FLISTXATTR                   = 4232\n\tSYS_REMOVEXATTR                  = 4233\n\tSYS_LREMOVEXATTR                 = 4234\n\tSYS_FREMOVEXATTR                 = 4235\n\tSYS_TKILL                        = 4236\n\tSYS_SENDFILE64                   = 4237\n\tSYS_FUTEX                        = 4238\n\tSYS_SCHED_SETAFFINITY            = 4239\n\tSYS_SCHED_GETAFFINITY            = 4240\n\tSYS_IO_SETUP                     = 4241\n\tSYS_IO_DESTROY                   = 4242\n\tSYS_IO_GETEVENTS                 = 4243\n\tSYS_IO_SUBMIT                    = 4244\n\tSYS_IO_CANCEL                    = 4245\n\tSYS_EXIT_GROUP                   = 4246\n\tSYS_LOOKUP_DCOOKIE               = 4247\n\tSYS_EPOLL_CREATE                 = 4248\n\tSYS_EPOLL_CTL                    = 4249\n\tSYS_EPOLL_WAIT                   = 4250\n\tSYS_REMAP_FILE_PAGES             = 4251\n\tSYS_SET_TID_ADDRESS              = 4252\n\tSYS_RESTART_SYSCALL              = 4253\n\tSYS_FADVISE64                    = 4254\n\tSYS_STATFS64                     = 4255\n\tSYS_FSTATFS64                    = 4256\n\tSYS_TIMER_CREATE                 = 4257\n\tSYS_TIMER_SETTIME                = 4258\n\tSYS_TIMER_GETTIME                = 4259\n\tSYS_TIMER_GETOVERRUN             = 4260\n\tSYS_TIMER_DELETE                 = 4261\n\tSYS_CLOCK_SETTIME                = 4262\n\tSYS_CLOCK_GETTIME                = 4263\n\tSYS_CLOCK_GETRES                 = 4264\n\tSYS_CLOCK_NANOSLEEP              = 4265\n\tSYS_TGKILL                       = 4266\n\tSYS_UTIMES                       = 4267\n\tSYS_MBIND                        = 4268\n\tSYS_GET_MEMPOLICY                = 4269\n\tSYS_SET_MEMPOLICY                = 4270\n\tSYS_MQ_OPEN                      = 4271\n\tSYS_MQ_UNLINK                    = 4272\n\tSYS_MQ_TIMEDSEND                 = 4273\n\tSYS_MQ_TIMEDRECEIVE              = 4274\n\tSYS_MQ_NOTIFY                    = 4275\n\tSYS_MQ_GETSETATTR                = 4276\n\tSYS_VSERVER                      = 4277\n\tSYS_WAITID                       = 4278\n\tSYS_ADD_KEY                      = 4280\n\tSYS_REQUEST_KEY                  = 4281\n\tSYS_KEYCTL                       = 4282\n\tSYS_SET_THREAD_AREA              = 4283\n\tSYS_INOTIFY_INIT                 = 4284\n\tSYS_INOTIFY_ADD_WATCH            = 4285\n\tSYS_INOTIFY_RM_WATCH             = 4286\n\tSYS_MIGRATE_PAGES                = 4287\n\tSYS_OPENAT                       = 4288\n\tSYS_MKDIRAT                      = 4289\n\tSYS_MKNODAT                      = 4290\n\tSYS_FCHOWNAT                     = 4291\n\tSYS_FUTIMESAT                    = 4292\n\tSYS_FSTATAT64                    = 4293\n\tSYS_UNLINKAT                     = 4294\n\tSYS_RENAMEAT                     = 4295\n\tSYS_LINKAT                       = 4296\n\tSYS_SYMLINKAT                    = 4297\n\tSYS_READLINKAT                   = 4298\n\tSYS_FCHMODAT                     = 4299\n\tSYS_FACCESSAT                    = 4300\n\tSYS_PSELECT6                     = 4301\n\tSYS_PPOLL                        = 4302\n\tSYS_UNSHARE                      = 4303\n\tSYS_SPLICE                       = 4304\n\tSYS_SYNC_FILE_RANGE              = 4305\n\tSYS_TEE                          = 4306\n\tSYS_VMSPLICE                     = 4307\n\tSYS_MOVE_PAGES                   = 4308\n\tSYS_SET_ROBUST_LIST              = 4309\n\tSYS_GET_ROBUST_LIST              = 4310\n\tSYS_KEXEC_LOAD                   = 4311\n\tSYS_GETCPU                       = 4312\n\tSYS_EPOLL_PWAIT                  = 4313\n\tSYS_IOPRIO_SET                   = 4314\n\tSYS_IOPRIO_GET                   = 4315\n\tSYS_UTIMENSAT                    = 4316\n\tSYS_SIGNALFD                     = 4317\n\tSYS_TIMERFD                      = 4318\n\tSYS_EVENTFD                      = 4319\n\tSYS_FALLOCATE                    = 4320\n\tSYS_TIMERFD_CREATE               = 4321\n\tSYS_TIMERFD_GETTIME              = 4322\n\tSYS_TIMERFD_SETTIME              = 4323\n\tSYS_SIGNALFD4                    = 4324\n\tSYS_EVENTFD2                     = 4325\n\tSYS_EPOLL_CREATE1                = 4326\n\tSYS_DUP3                         = 4327\n\tSYS_PIPE2                        = 4328\n\tSYS_INOTIFY_INIT1                = 4329\n\tSYS_PREADV                       = 4330\n\tSYS_PWRITEV                      = 4331\n\tSYS_RT_TGSIGQUEUEINFO            = 4332\n\tSYS_PERF_EVENT_OPEN              = 4333\n\tSYS_ACCEPT4                      = 4334\n\tSYS_RECVMMSG                     = 4335\n\tSYS_FANOTIFY_INIT                = 4336\n\tSYS_FANOTIFY_MARK                = 4337\n\tSYS_PRLIMIT64                    = 4338\n\tSYS_NAME_TO_HANDLE_AT            = 4339\n\tSYS_OPEN_BY_HANDLE_AT            = 4340\n\tSYS_CLOCK_ADJTIME                = 4341\n\tSYS_SYNCFS                       = 4342\n\tSYS_SENDMMSG                     = 4343\n\tSYS_SETNS                        = 4344\n\tSYS_PROCESS_VM_READV             = 4345\n\tSYS_PROCESS_VM_WRITEV            = 4346\n\tSYS_KCMP                         = 4347\n\tSYS_FINIT_MODULE                 = 4348\n\tSYS_SCHED_SETATTR                = 4349\n\tSYS_SCHED_GETATTR                = 4350\n\tSYS_RENAMEAT2                    = 4351\n\tSYS_SECCOMP                      = 4352\n\tSYS_GETRANDOM                    = 4353\n\tSYS_MEMFD_CREATE                 = 4354\n\tSYS_BPF                          = 4355\n\tSYS_EXECVEAT                     = 4356\n\tSYS_USERFAULTFD                  = 4357\n\tSYS_MEMBARRIER                   = 4358\n\tSYS_MLOCK2                       = 4359\n\tSYS_COPY_FILE_RANGE              = 4360\n\tSYS_PREADV2                      = 4361\n\tSYS_PWRITEV2                     = 4362\n\tSYS_PKEY_MPROTECT                = 4363\n\tSYS_PKEY_ALLOC                   = 4364\n\tSYS_PKEY_FREE                    = 4365\n\tSYS_STATX                        = 4366\n\tSYS_RSEQ                         = 4367\n\tSYS_IO_PGETEVENTS                = 4368\n\tSYS_SEMGET                       = 4393\n\tSYS_SEMCTL                       = 4394\n\tSYS_SHMGET                       = 4395\n\tSYS_SHMCTL                       = 4396\n\tSYS_SHMAT                        = 4397\n\tSYS_SHMDT                        = 4398\n\tSYS_MSGGET                       = 4399\n\tSYS_MSGSND                       = 4400\n\tSYS_MSGRCV                       = 4401\n\tSYS_MSGCTL                       = 4402\n\tSYS_CLOCK_GETTIME64              = 4403\n\tSYS_CLOCK_SETTIME64              = 4404\n\tSYS_CLOCK_ADJTIME64              = 4405\n\tSYS_CLOCK_GETRES_TIME64          = 4406\n\tSYS_CLOCK_NANOSLEEP_TIME64       = 4407\n\tSYS_TIMER_GETTIME64              = 4408\n\tSYS_TIMER_SETTIME64              = 4409\n\tSYS_TIMERFD_GETTIME64            = 4410\n\tSYS_TIMERFD_SETTIME64            = 4411\n\tSYS_UTIMENSAT_TIME64             = 4412\n\tSYS_PSELECT6_TIME64              = 4413\n\tSYS_PPOLL_TIME64                 = 4414\n\tSYS_IO_PGETEVENTS_TIME64         = 4416\n\tSYS_RECVMMSG_TIME64              = 4417\n\tSYS_MQ_TIMEDSEND_TIME64          = 4418\n\tSYS_MQ_TIMEDRECEIVE_TIME64       = 4419\n\tSYS_SEMTIMEDOP_TIME64            = 4420\n\tSYS_RT_SIGTIMEDWAIT_TIME64       = 4421\n\tSYS_FUTEX_TIME64                 = 4422\n\tSYS_SCHED_RR_GET_INTERVAL_TIME64 = 4423\n\tSYS_PIDFD_SEND_SIGNAL            = 4424\n\tSYS_IO_URING_SETUP               = 4425\n\tSYS_IO_URING_ENTER               = 4426\n\tSYS_IO_URING_REGISTER            = 4427\n\tSYS_OPEN_TREE                    = 4428\n\tSYS_MOVE_MOUNT                   = 4429\n\tSYS_FSOPEN                       = 4430\n\tSYS_FSCONFIG                     = 4431\n\tSYS_FSMOUNT                      = 4432\n\tSYS_FSPICK                       = 4433\n\tSYS_PIDFD_OPEN                   = 4434\n\tSYS_CLONE3                       = 4435\n\tSYS_OPENAT2                      = 4437\n\tSYS_PIDFD_GETFD                  = 4438\n\tSYS_FACCESSAT2                   = 4439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips64,linux\n\npackage unix\n\nconst (\n\tSYS_READ                   = 5000\n\tSYS_WRITE                  = 5001\n\tSYS_OPEN                   = 5002\n\tSYS_CLOSE                  = 5003\n\tSYS_STAT                   = 5004\n\tSYS_FSTAT                  = 5005\n\tSYS_LSTAT                  = 5006\n\tSYS_POLL                   = 5007\n\tSYS_LSEEK                  = 5008\n\tSYS_MMAP                   = 5009\n\tSYS_MPROTECT               = 5010\n\tSYS_MUNMAP                 = 5011\n\tSYS_BRK                    = 5012\n\tSYS_RT_SIGACTION           = 5013\n\tSYS_RT_SIGPROCMASK         = 5014\n\tSYS_IOCTL                  = 5015\n\tSYS_PREAD64                = 5016\n\tSYS_PWRITE64               = 5017\n\tSYS_READV                  = 5018\n\tSYS_WRITEV                 = 5019\n\tSYS_ACCESS                 = 5020\n\tSYS_PIPE                   = 5021\n\tSYS__NEWSELECT             = 5022\n\tSYS_SCHED_YIELD            = 5023\n\tSYS_MREMAP                 = 5024\n\tSYS_MSYNC                  = 5025\n\tSYS_MINCORE                = 5026\n\tSYS_MADVISE                = 5027\n\tSYS_SHMGET                 = 5028\n\tSYS_SHMAT                  = 5029\n\tSYS_SHMCTL                 = 5030\n\tSYS_DUP                    = 5031\n\tSYS_DUP2                   = 5032\n\tSYS_PAUSE                  = 5033\n\tSYS_NANOSLEEP              = 5034\n\tSYS_GETITIMER              = 5035\n\tSYS_SETITIMER              = 5036\n\tSYS_ALARM                  = 5037\n\tSYS_GETPID                 = 5038\n\tSYS_SENDFILE               = 5039\n\tSYS_SOCKET                 = 5040\n\tSYS_CONNECT                = 5041\n\tSYS_ACCEPT                 = 5042\n\tSYS_SENDTO                 = 5043\n\tSYS_RECVFROM               = 5044\n\tSYS_SENDMSG                = 5045\n\tSYS_RECVMSG                = 5046\n\tSYS_SHUTDOWN               = 5047\n\tSYS_BIND                   = 5048\n\tSYS_LISTEN                 = 5049\n\tSYS_GETSOCKNAME            = 5050\n\tSYS_GETPEERNAME            = 5051\n\tSYS_SOCKETPAIR             = 5052\n\tSYS_SETSOCKOPT             = 5053\n\tSYS_GETSOCKOPT             = 5054\n\tSYS_CLONE                  = 5055\n\tSYS_FORK                   = 5056\n\tSYS_EXECVE                 = 5057\n\tSYS_EXIT                   = 5058\n\tSYS_WAIT4                  = 5059\n\tSYS_KILL                   = 5060\n\tSYS_UNAME                  = 5061\n\tSYS_SEMGET                 = 5062\n\tSYS_SEMOP                  = 5063\n\tSYS_SEMCTL                 = 5064\n\tSYS_SHMDT                  = 5065\n\tSYS_MSGGET                 = 5066\n\tSYS_MSGSND                 = 5067\n\tSYS_MSGRCV                 = 5068\n\tSYS_MSGCTL                 = 5069\n\tSYS_FCNTL                  = 5070\n\tSYS_FLOCK                  = 5071\n\tSYS_FSYNC                  = 5072\n\tSYS_FDATASYNC              = 5073\n\tSYS_TRUNCATE               = 5074\n\tSYS_FTRUNCATE              = 5075\n\tSYS_GETDENTS               = 5076\n\tSYS_GETCWD                 = 5077\n\tSYS_CHDIR                  = 5078\n\tSYS_FCHDIR                 = 5079\n\tSYS_RENAME                 = 5080\n\tSYS_MKDIR                  = 5081\n\tSYS_RMDIR                  = 5082\n\tSYS_CREAT                  = 5083\n\tSYS_LINK                   = 5084\n\tSYS_UNLINK                 = 5085\n\tSYS_SYMLINK                = 5086\n\tSYS_READLINK               = 5087\n\tSYS_CHMOD                  = 5088\n\tSYS_FCHMOD                 = 5089\n\tSYS_CHOWN                  = 5090\n\tSYS_FCHOWN                 = 5091\n\tSYS_LCHOWN                 = 5092\n\tSYS_UMASK                  = 5093\n\tSYS_GETTIMEOFDAY           = 5094\n\tSYS_GETRLIMIT              = 5095\n\tSYS_GETRUSAGE              = 5096\n\tSYS_SYSINFO                = 5097\n\tSYS_TIMES                  = 5098\n\tSYS_PTRACE                 = 5099\n\tSYS_GETUID                 = 5100\n\tSYS_SYSLOG                 = 5101\n\tSYS_GETGID                 = 5102\n\tSYS_SETUID                 = 5103\n\tSYS_SETGID                 = 5104\n\tSYS_GETEUID                = 5105\n\tSYS_GETEGID                = 5106\n\tSYS_SETPGID                = 5107\n\tSYS_GETPPID                = 5108\n\tSYS_GETPGRP                = 5109\n\tSYS_SETSID                 = 5110\n\tSYS_SETREUID               = 5111\n\tSYS_SETREGID               = 5112\n\tSYS_GETGROUPS              = 5113\n\tSYS_SETGROUPS              = 5114\n\tSYS_SETRESUID              = 5115\n\tSYS_GETRESUID              = 5116\n\tSYS_SETRESGID              = 5117\n\tSYS_GETRESGID              = 5118\n\tSYS_GETPGID                = 5119\n\tSYS_SETFSUID               = 5120\n\tSYS_SETFSGID               = 5121\n\tSYS_GETSID                 = 5122\n\tSYS_CAPGET                 = 5123\n\tSYS_CAPSET                 = 5124\n\tSYS_RT_SIGPENDING          = 5125\n\tSYS_RT_SIGTIMEDWAIT        = 5126\n\tSYS_RT_SIGQUEUEINFO        = 5127\n\tSYS_RT_SIGSUSPEND          = 5128\n\tSYS_SIGALTSTACK            = 5129\n\tSYS_UTIME                  = 5130\n\tSYS_MKNOD                  = 5131\n\tSYS_PERSONALITY            = 5132\n\tSYS_USTAT                  = 5133\n\tSYS_STATFS                 = 5134\n\tSYS_FSTATFS                = 5135\n\tSYS_SYSFS                  = 5136\n\tSYS_GETPRIORITY            = 5137\n\tSYS_SETPRIORITY            = 5138\n\tSYS_SCHED_SETPARAM         = 5139\n\tSYS_SCHED_GETPARAM         = 5140\n\tSYS_SCHED_SETSCHEDULER     = 5141\n\tSYS_SCHED_GETSCHEDULER     = 5142\n\tSYS_SCHED_GET_PRIORITY_MAX = 5143\n\tSYS_SCHED_GET_PRIORITY_MIN = 5144\n\tSYS_SCHED_RR_GET_INTERVAL  = 5145\n\tSYS_MLOCK                  = 5146\n\tSYS_MUNLOCK                = 5147\n\tSYS_MLOCKALL               = 5148\n\tSYS_MUNLOCKALL             = 5149\n\tSYS_VHANGUP                = 5150\n\tSYS_PIVOT_ROOT             = 5151\n\tSYS__SYSCTL                = 5152\n\tSYS_PRCTL                  = 5153\n\tSYS_ADJTIMEX               = 5154\n\tSYS_SETRLIMIT              = 5155\n\tSYS_CHROOT                 = 5156\n\tSYS_SYNC                   = 5157\n\tSYS_ACCT                   = 5158\n\tSYS_SETTIMEOFDAY           = 5159\n\tSYS_MOUNT                  = 5160\n\tSYS_UMOUNT2                = 5161\n\tSYS_SWAPON                 = 5162\n\tSYS_SWAPOFF                = 5163\n\tSYS_REBOOT                 = 5164\n\tSYS_SETHOSTNAME            = 5165\n\tSYS_SETDOMAINNAME          = 5166\n\tSYS_CREATE_MODULE          = 5167\n\tSYS_INIT_MODULE            = 5168\n\tSYS_DELETE_MODULE          = 5169\n\tSYS_GET_KERNEL_SYMS        = 5170\n\tSYS_QUERY_MODULE           = 5171\n\tSYS_QUOTACTL               = 5172\n\tSYS_NFSSERVCTL             = 5173\n\tSYS_GETPMSG                = 5174\n\tSYS_PUTPMSG                = 5175\n\tSYS_AFS_SYSCALL            = 5176\n\tSYS_RESERVED177            = 5177\n\tSYS_GETTID                 = 5178\n\tSYS_READAHEAD              = 5179\n\tSYS_SETXATTR               = 5180\n\tSYS_LSETXATTR              = 5181\n\tSYS_FSETXATTR              = 5182\n\tSYS_GETXATTR               = 5183\n\tSYS_LGETXATTR              = 5184\n\tSYS_FGETXATTR              = 5185\n\tSYS_LISTXATTR              = 5186\n\tSYS_LLISTXATTR             = 5187\n\tSYS_FLISTXATTR             = 5188\n\tSYS_REMOVEXATTR            = 5189\n\tSYS_LREMOVEXATTR           = 5190\n\tSYS_FREMOVEXATTR           = 5191\n\tSYS_TKILL                  = 5192\n\tSYS_RESERVED193            = 5193\n\tSYS_FUTEX                  = 5194\n\tSYS_SCHED_SETAFFINITY      = 5195\n\tSYS_SCHED_GETAFFINITY      = 5196\n\tSYS_CACHEFLUSH             = 5197\n\tSYS_CACHECTL               = 5198\n\tSYS_SYSMIPS                = 5199\n\tSYS_IO_SETUP               = 5200\n\tSYS_IO_DESTROY             = 5201\n\tSYS_IO_GETEVENTS           = 5202\n\tSYS_IO_SUBMIT              = 5203\n\tSYS_IO_CANCEL              = 5204\n\tSYS_EXIT_GROUP             = 5205\n\tSYS_LOOKUP_DCOOKIE         = 5206\n\tSYS_EPOLL_CREATE           = 5207\n\tSYS_EPOLL_CTL              = 5208\n\tSYS_EPOLL_WAIT             = 5209\n\tSYS_REMAP_FILE_PAGES       = 5210\n\tSYS_RT_SIGRETURN           = 5211\n\tSYS_SET_TID_ADDRESS        = 5212\n\tSYS_RESTART_SYSCALL        = 5213\n\tSYS_SEMTIMEDOP             = 5214\n\tSYS_FADVISE64              = 5215\n\tSYS_TIMER_CREATE           = 5216\n\tSYS_TIMER_SETTIME          = 5217\n\tSYS_TIMER_GETTIME          = 5218\n\tSYS_TIMER_GETOVERRUN       = 5219\n\tSYS_TIMER_DELETE           = 5220\n\tSYS_CLOCK_SETTIME          = 5221\n\tSYS_CLOCK_GETTIME          = 5222\n\tSYS_CLOCK_GETRES           = 5223\n\tSYS_CLOCK_NANOSLEEP        = 5224\n\tSYS_TGKILL                 = 5225\n\tSYS_UTIMES                 = 5226\n\tSYS_MBIND                  = 5227\n\tSYS_GET_MEMPOLICY          = 5228\n\tSYS_SET_MEMPOLICY          = 5229\n\tSYS_MQ_OPEN                = 5230\n\tSYS_MQ_UNLINK              = 5231\n\tSYS_MQ_TIMEDSEND           = 5232\n\tSYS_MQ_TIMEDRECEIVE        = 5233\n\tSYS_MQ_NOTIFY              = 5234\n\tSYS_MQ_GETSETATTR          = 5235\n\tSYS_VSERVER                = 5236\n\tSYS_WAITID                 = 5237\n\tSYS_ADD_KEY                = 5239\n\tSYS_REQUEST_KEY            = 5240\n\tSYS_KEYCTL                 = 5241\n\tSYS_SET_THREAD_AREA        = 5242\n\tSYS_INOTIFY_INIT           = 5243\n\tSYS_INOTIFY_ADD_WATCH      = 5244\n\tSYS_INOTIFY_RM_WATCH       = 5245\n\tSYS_MIGRATE_PAGES          = 5246\n\tSYS_OPENAT                 = 5247\n\tSYS_MKDIRAT                = 5248\n\tSYS_MKNODAT                = 5249\n\tSYS_FCHOWNAT               = 5250\n\tSYS_FUTIMESAT              = 5251\n\tSYS_NEWFSTATAT             = 5252\n\tSYS_UNLINKAT               = 5253\n\tSYS_RENAMEAT               = 5254\n\tSYS_LINKAT                 = 5255\n\tSYS_SYMLINKAT              = 5256\n\tSYS_READLINKAT             = 5257\n\tSYS_FCHMODAT               = 5258\n\tSYS_FACCESSAT              = 5259\n\tSYS_PSELECT6               = 5260\n\tSYS_PPOLL                  = 5261\n\tSYS_UNSHARE                = 5262\n\tSYS_SPLICE                 = 5263\n\tSYS_SYNC_FILE_RANGE        = 5264\n\tSYS_TEE                    = 5265\n\tSYS_VMSPLICE               = 5266\n\tSYS_MOVE_PAGES             = 5267\n\tSYS_SET_ROBUST_LIST        = 5268\n\tSYS_GET_ROBUST_LIST        = 5269\n\tSYS_KEXEC_LOAD             = 5270\n\tSYS_GETCPU                 = 5271\n\tSYS_EPOLL_PWAIT            = 5272\n\tSYS_IOPRIO_SET             = 5273\n\tSYS_IOPRIO_GET             = 5274\n\tSYS_UTIMENSAT              = 5275\n\tSYS_SIGNALFD               = 5276\n\tSYS_TIMERFD                = 5277\n\tSYS_EVENTFD                = 5278\n\tSYS_FALLOCATE              = 5279\n\tSYS_TIMERFD_CREATE         = 5280\n\tSYS_TIMERFD_GETTIME        = 5281\n\tSYS_TIMERFD_SETTIME        = 5282\n\tSYS_SIGNALFD4              = 5283\n\tSYS_EVENTFD2               = 5284\n\tSYS_EPOLL_CREATE1          = 5285\n\tSYS_DUP3                   = 5286\n\tSYS_PIPE2                  = 5287\n\tSYS_INOTIFY_INIT1          = 5288\n\tSYS_PREADV                 = 5289\n\tSYS_PWRITEV                = 5290\n\tSYS_RT_TGSIGQUEUEINFO      = 5291\n\tSYS_PERF_EVENT_OPEN        = 5292\n\tSYS_ACCEPT4                = 5293\n\tSYS_RECVMMSG               = 5294\n\tSYS_FANOTIFY_INIT          = 5295\n\tSYS_FANOTIFY_MARK          = 5296\n\tSYS_PRLIMIT64              = 5297\n\tSYS_NAME_TO_HANDLE_AT      = 5298\n\tSYS_OPEN_BY_HANDLE_AT      = 5299\n\tSYS_CLOCK_ADJTIME          = 5300\n\tSYS_SYNCFS                 = 5301\n\tSYS_SENDMMSG               = 5302\n\tSYS_SETNS                  = 5303\n\tSYS_PROCESS_VM_READV       = 5304\n\tSYS_PROCESS_VM_WRITEV      = 5305\n\tSYS_KCMP                   = 5306\n\tSYS_FINIT_MODULE           = 5307\n\tSYS_GETDENTS64             = 5308\n\tSYS_SCHED_SETATTR          = 5309\n\tSYS_SCHED_GETATTR          = 5310\n\tSYS_RENAMEAT2              = 5311\n\tSYS_SECCOMP                = 5312\n\tSYS_GETRANDOM              = 5313\n\tSYS_MEMFD_CREATE           = 5314\n\tSYS_BPF                    = 5315\n\tSYS_EXECVEAT               = 5316\n\tSYS_USERFAULTFD            = 5317\n\tSYS_MEMBARRIER             = 5318\n\tSYS_MLOCK2                 = 5319\n\tSYS_COPY_FILE_RANGE        = 5320\n\tSYS_PREADV2                = 5321\n\tSYS_PWRITEV2               = 5322\n\tSYS_PKEY_MPROTECT          = 5323\n\tSYS_PKEY_ALLOC             = 5324\n\tSYS_PKEY_FREE              = 5325\n\tSYS_STATX                  = 5326\n\tSYS_RSEQ                   = 5327\n\tSYS_IO_PGETEVENTS          = 5328\n\tSYS_PIDFD_SEND_SIGNAL      = 5424\n\tSYS_IO_URING_SETUP         = 5425\n\tSYS_IO_URING_ENTER         = 5426\n\tSYS_IO_URING_REGISTER      = 5427\n\tSYS_OPEN_TREE              = 5428\n\tSYS_MOVE_MOUNT             = 5429\n\tSYS_FSOPEN                 = 5430\n\tSYS_FSCONFIG               = 5431\n\tSYS_FSMOUNT                = 5432\n\tSYS_FSPICK                 = 5433\n\tSYS_PIDFD_OPEN             = 5434\n\tSYS_CLONE3                 = 5435\n\tSYS_OPENAT2                = 5437\n\tSYS_PIDFD_GETFD            = 5438\n\tSYS_FACCESSAT2             = 5439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips64le,linux\n\npackage unix\n\nconst (\n\tSYS_READ                   = 5000\n\tSYS_WRITE                  = 5001\n\tSYS_OPEN                   = 5002\n\tSYS_CLOSE                  = 5003\n\tSYS_STAT                   = 5004\n\tSYS_FSTAT                  = 5005\n\tSYS_LSTAT                  = 5006\n\tSYS_POLL                   = 5007\n\tSYS_LSEEK                  = 5008\n\tSYS_MMAP                   = 5009\n\tSYS_MPROTECT               = 5010\n\tSYS_MUNMAP                 = 5011\n\tSYS_BRK                    = 5012\n\tSYS_RT_SIGACTION           = 5013\n\tSYS_RT_SIGPROCMASK         = 5014\n\tSYS_IOCTL                  = 5015\n\tSYS_PREAD64                = 5016\n\tSYS_PWRITE64               = 5017\n\tSYS_READV                  = 5018\n\tSYS_WRITEV                 = 5019\n\tSYS_ACCESS                 = 5020\n\tSYS_PIPE                   = 5021\n\tSYS__NEWSELECT             = 5022\n\tSYS_SCHED_YIELD            = 5023\n\tSYS_MREMAP                 = 5024\n\tSYS_MSYNC                  = 5025\n\tSYS_MINCORE                = 5026\n\tSYS_MADVISE                = 5027\n\tSYS_SHMGET                 = 5028\n\tSYS_SHMAT                  = 5029\n\tSYS_SHMCTL                 = 5030\n\tSYS_DUP                    = 5031\n\tSYS_DUP2                   = 5032\n\tSYS_PAUSE                  = 5033\n\tSYS_NANOSLEEP              = 5034\n\tSYS_GETITIMER              = 5035\n\tSYS_SETITIMER              = 5036\n\tSYS_ALARM                  = 5037\n\tSYS_GETPID                 = 5038\n\tSYS_SENDFILE               = 5039\n\tSYS_SOCKET                 = 5040\n\tSYS_CONNECT                = 5041\n\tSYS_ACCEPT                 = 5042\n\tSYS_SENDTO                 = 5043\n\tSYS_RECVFROM               = 5044\n\tSYS_SENDMSG                = 5045\n\tSYS_RECVMSG                = 5046\n\tSYS_SHUTDOWN               = 5047\n\tSYS_BIND                   = 5048\n\tSYS_LISTEN                 = 5049\n\tSYS_GETSOCKNAME            = 5050\n\tSYS_GETPEERNAME            = 5051\n\tSYS_SOCKETPAIR             = 5052\n\tSYS_SETSOCKOPT             = 5053\n\tSYS_GETSOCKOPT             = 5054\n\tSYS_CLONE                  = 5055\n\tSYS_FORK                   = 5056\n\tSYS_EXECVE                 = 5057\n\tSYS_EXIT                   = 5058\n\tSYS_WAIT4                  = 5059\n\tSYS_KILL                   = 5060\n\tSYS_UNAME                  = 5061\n\tSYS_SEMGET                 = 5062\n\tSYS_SEMOP                  = 5063\n\tSYS_SEMCTL                 = 5064\n\tSYS_SHMDT                  = 5065\n\tSYS_MSGGET                 = 5066\n\tSYS_MSGSND                 = 5067\n\tSYS_MSGRCV                 = 5068\n\tSYS_MSGCTL                 = 5069\n\tSYS_FCNTL                  = 5070\n\tSYS_FLOCK                  = 5071\n\tSYS_FSYNC                  = 5072\n\tSYS_FDATASYNC              = 5073\n\tSYS_TRUNCATE               = 5074\n\tSYS_FTRUNCATE              = 5075\n\tSYS_GETDENTS               = 5076\n\tSYS_GETCWD                 = 5077\n\tSYS_CHDIR                  = 5078\n\tSYS_FCHDIR                 = 5079\n\tSYS_RENAME                 = 5080\n\tSYS_MKDIR                  = 5081\n\tSYS_RMDIR                  = 5082\n\tSYS_CREAT                  = 5083\n\tSYS_LINK                   = 5084\n\tSYS_UNLINK                 = 5085\n\tSYS_SYMLINK                = 5086\n\tSYS_READLINK               = 5087\n\tSYS_CHMOD                  = 5088\n\tSYS_FCHMOD                 = 5089\n\tSYS_CHOWN                  = 5090\n\tSYS_FCHOWN                 = 5091\n\tSYS_LCHOWN                 = 5092\n\tSYS_UMASK                  = 5093\n\tSYS_GETTIMEOFDAY           = 5094\n\tSYS_GETRLIMIT              = 5095\n\tSYS_GETRUSAGE              = 5096\n\tSYS_SYSINFO                = 5097\n\tSYS_TIMES                  = 5098\n\tSYS_PTRACE                 = 5099\n\tSYS_GETUID                 = 5100\n\tSYS_SYSLOG                 = 5101\n\tSYS_GETGID                 = 5102\n\tSYS_SETUID                 = 5103\n\tSYS_SETGID                 = 5104\n\tSYS_GETEUID                = 5105\n\tSYS_GETEGID                = 5106\n\tSYS_SETPGID                = 5107\n\tSYS_GETPPID                = 5108\n\tSYS_GETPGRP                = 5109\n\tSYS_SETSID                 = 5110\n\tSYS_SETREUID               = 5111\n\tSYS_SETREGID               = 5112\n\tSYS_GETGROUPS              = 5113\n\tSYS_SETGROUPS              = 5114\n\tSYS_SETRESUID              = 5115\n\tSYS_GETRESUID              = 5116\n\tSYS_SETRESGID              = 5117\n\tSYS_GETRESGID              = 5118\n\tSYS_GETPGID                = 5119\n\tSYS_SETFSUID               = 5120\n\tSYS_SETFSGID               = 5121\n\tSYS_GETSID                 = 5122\n\tSYS_CAPGET                 = 5123\n\tSYS_CAPSET                 = 5124\n\tSYS_RT_SIGPENDING          = 5125\n\tSYS_RT_SIGTIMEDWAIT        = 5126\n\tSYS_RT_SIGQUEUEINFO        = 5127\n\tSYS_RT_SIGSUSPEND          = 5128\n\tSYS_SIGALTSTACK            = 5129\n\tSYS_UTIME                  = 5130\n\tSYS_MKNOD                  = 5131\n\tSYS_PERSONALITY            = 5132\n\tSYS_USTAT                  = 5133\n\tSYS_STATFS                 = 5134\n\tSYS_FSTATFS                = 5135\n\tSYS_SYSFS                  = 5136\n\tSYS_GETPRIORITY            = 5137\n\tSYS_SETPRIORITY            = 5138\n\tSYS_SCHED_SETPARAM         = 5139\n\tSYS_SCHED_GETPARAM         = 5140\n\tSYS_SCHED_SETSCHEDULER     = 5141\n\tSYS_SCHED_GETSCHEDULER     = 5142\n\tSYS_SCHED_GET_PRIORITY_MAX = 5143\n\tSYS_SCHED_GET_PRIORITY_MIN = 5144\n\tSYS_SCHED_RR_GET_INTERVAL  = 5145\n\tSYS_MLOCK                  = 5146\n\tSYS_MUNLOCK                = 5147\n\tSYS_MLOCKALL               = 5148\n\tSYS_MUNLOCKALL             = 5149\n\tSYS_VHANGUP                = 5150\n\tSYS_PIVOT_ROOT             = 5151\n\tSYS__SYSCTL                = 5152\n\tSYS_PRCTL                  = 5153\n\tSYS_ADJTIMEX               = 5154\n\tSYS_SETRLIMIT              = 5155\n\tSYS_CHROOT                 = 5156\n\tSYS_SYNC                   = 5157\n\tSYS_ACCT                   = 5158\n\tSYS_SETTIMEOFDAY           = 5159\n\tSYS_MOUNT                  = 5160\n\tSYS_UMOUNT2                = 5161\n\tSYS_SWAPON                 = 5162\n\tSYS_SWAPOFF                = 5163\n\tSYS_REBOOT                 = 5164\n\tSYS_SETHOSTNAME            = 5165\n\tSYS_SETDOMAINNAME          = 5166\n\tSYS_CREATE_MODULE          = 5167\n\tSYS_INIT_MODULE            = 5168\n\tSYS_DELETE_MODULE          = 5169\n\tSYS_GET_KERNEL_SYMS        = 5170\n\tSYS_QUERY_MODULE           = 5171\n\tSYS_QUOTACTL               = 5172\n\tSYS_NFSSERVCTL             = 5173\n\tSYS_GETPMSG                = 5174\n\tSYS_PUTPMSG                = 5175\n\tSYS_AFS_SYSCALL            = 5176\n\tSYS_RESERVED177            = 5177\n\tSYS_GETTID                 = 5178\n\tSYS_READAHEAD              = 5179\n\tSYS_SETXATTR               = 5180\n\tSYS_LSETXATTR              = 5181\n\tSYS_FSETXATTR              = 5182\n\tSYS_GETXATTR               = 5183\n\tSYS_LGETXATTR              = 5184\n\tSYS_FGETXATTR              = 5185\n\tSYS_LISTXATTR              = 5186\n\tSYS_LLISTXATTR             = 5187\n\tSYS_FLISTXATTR             = 5188\n\tSYS_REMOVEXATTR            = 5189\n\tSYS_LREMOVEXATTR           = 5190\n\tSYS_FREMOVEXATTR           = 5191\n\tSYS_TKILL                  = 5192\n\tSYS_RESERVED193            = 5193\n\tSYS_FUTEX                  = 5194\n\tSYS_SCHED_SETAFFINITY      = 5195\n\tSYS_SCHED_GETAFFINITY      = 5196\n\tSYS_CACHEFLUSH             = 5197\n\tSYS_CACHECTL               = 5198\n\tSYS_SYSMIPS                = 5199\n\tSYS_IO_SETUP               = 5200\n\tSYS_IO_DESTROY             = 5201\n\tSYS_IO_GETEVENTS           = 5202\n\tSYS_IO_SUBMIT              = 5203\n\tSYS_IO_CANCEL              = 5204\n\tSYS_EXIT_GROUP             = 5205\n\tSYS_LOOKUP_DCOOKIE         = 5206\n\tSYS_EPOLL_CREATE           = 5207\n\tSYS_EPOLL_CTL              = 5208\n\tSYS_EPOLL_WAIT             = 5209\n\tSYS_REMAP_FILE_PAGES       = 5210\n\tSYS_RT_SIGRETURN           = 5211\n\tSYS_SET_TID_ADDRESS        = 5212\n\tSYS_RESTART_SYSCALL        = 5213\n\tSYS_SEMTIMEDOP             = 5214\n\tSYS_FADVISE64              = 5215\n\tSYS_TIMER_CREATE           = 5216\n\tSYS_TIMER_SETTIME          = 5217\n\tSYS_TIMER_GETTIME          = 5218\n\tSYS_TIMER_GETOVERRUN       = 5219\n\tSYS_TIMER_DELETE           = 5220\n\tSYS_CLOCK_SETTIME          = 5221\n\tSYS_CLOCK_GETTIME          = 5222\n\tSYS_CLOCK_GETRES           = 5223\n\tSYS_CLOCK_NANOSLEEP        = 5224\n\tSYS_TGKILL                 = 5225\n\tSYS_UTIMES                 = 5226\n\tSYS_MBIND                  = 5227\n\tSYS_GET_MEMPOLICY          = 5228\n\tSYS_SET_MEMPOLICY          = 5229\n\tSYS_MQ_OPEN                = 5230\n\tSYS_MQ_UNLINK              = 5231\n\tSYS_MQ_TIMEDSEND           = 5232\n\tSYS_MQ_TIMEDRECEIVE        = 5233\n\tSYS_MQ_NOTIFY              = 5234\n\tSYS_MQ_GETSETATTR          = 5235\n\tSYS_VSERVER                = 5236\n\tSYS_WAITID                 = 5237\n\tSYS_ADD_KEY                = 5239\n\tSYS_REQUEST_KEY            = 5240\n\tSYS_KEYCTL                 = 5241\n\tSYS_SET_THREAD_AREA        = 5242\n\tSYS_INOTIFY_INIT           = 5243\n\tSYS_INOTIFY_ADD_WATCH      = 5244\n\tSYS_INOTIFY_RM_WATCH       = 5245\n\tSYS_MIGRATE_PAGES          = 5246\n\tSYS_OPENAT                 = 5247\n\tSYS_MKDIRAT                = 5248\n\tSYS_MKNODAT                = 5249\n\tSYS_FCHOWNAT               = 5250\n\tSYS_FUTIMESAT              = 5251\n\tSYS_NEWFSTATAT             = 5252\n\tSYS_UNLINKAT               = 5253\n\tSYS_RENAMEAT               = 5254\n\tSYS_LINKAT                 = 5255\n\tSYS_SYMLINKAT              = 5256\n\tSYS_READLINKAT             = 5257\n\tSYS_FCHMODAT               = 5258\n\tSYS_FACCESSAT              = 5259\n\tSYS_PSELECT6               = 5260\n\tSYS_PPOLL                  = 5261\n\tSYS_UNSHARE                = 5262\n\tSYS_SPLICE                 = 5263\n\tSYS_SYNC_FILE_RANGE        = 5264\n\tSYS_TEE                    = 5265\n\tSYS_VMSPLICE               = 5266\n\tSYS_MOVE_PAGES             = 5267\n\tSYS_SET_ROBUST_LIST        = 5268\n\tSYS_GET_ROBUST_LIST        = 5269\n\tSYS_KEXEC_LOAD             = 5270\n\tSYS_GETCPU                 = 5271\n\tSYS_EPOLL_PWAIT            = 5272\n\tSYS_IOPRIO_SET             = 5273\n\tSYS_IOPRIO_GET             = 5274\n\tSYS_UTIMENSAT              = 5275\n\tSYS_SIGNALFD               = 5276\n\tSYS_TIMERFD                = 5277\n\tSYS_EVENTFD                = 5278\n\tSYS_FALLOCATE              = 5279\n\tSYS_TIMERFD_CREATE         = 5280\n\tSYS_TIMERFD_GETTIME        = 5281\n\tSYS_TIMERFD_SETTIME        = 5282\n\tSYS_SIGNALFD4              = 5283\n\tSYS_EVENTFD2               = 5284\n\tSYS_EPOLL_CREATE1          = 5285\n\tSYS_DUP3                   = 5286\n\tSYS_PIPE2                  = 5287\n\tSYS_INOTIFY_INIT1          = 5288\n\tSYS_PREADV                 = 5289\n\tSYS_PWRITEV                = 5290\n\tSYS_RT_TGSIGQUEUEINFO      = 5291\n\tSYS_PERF_EVENT_OPEN        = 5292\n\tSYS_ACCEPT4                = 5293\n\tSYS_RECVMMSG               = 5294\n\tSYS_FANOTIFY_INIT          = 5295\n\tSYS_FANOTIFY_MARK          = 5296\n\tSYS_PRLIMIT64              = 5297\n\tSYS_NAME_TO_HANDLE_AT      = 5298\n\tSYS_OPEN_BY_HANDLE_AT      = 5299\n\tSYS_CLOCK_ADJTIME          = 5300\n\tSYS_SYNCFS                 = 5301\n\tSYS_SENDMMSG               = 5302\n\tSYS_SETNS                  = 5303\n\tSYS_PROCESS_VM_READV       = 5304\n\tSYS_PROCESS_VM_WRITEV      = 5305\n\tSYS_KCMP                   = 5306\n\tSYS_FINIT_MODULE           = 5307\n\tSYS_GETDENTS64             = 5308\n\tSYS_SCHED_SETATTR          = 5309\n\tSYS_SCHED_GETATTR          = 5310\n\tSYS_RENAMEAT2              = 5311\n\tSYS_SECCOMP                = 5312\n\tSYS_GETRANDOM              = 5313\n\tSYS_MEMFD_CREATE           = 5314\n\tSYS_BPF                    = 5315\n\tSYS_EXECVEAT               = 5316\n\tSYS_USERFAULTFD            = 5317\n\tSYS_MEMBARRIER             = 5318\n\tSYS_MLOCK2                 = 5319\n\tSYS_COPY_FILE_RANGE        = 5320\n\tSYS_PREADV2                = 5321\n\tSYS_PWRITEV2               = 5322\n\tSYS_PKEY_MPROTECT          = 5323\n\tSYS_PKEY_ALLOC             = 5324\n\tSYS_PKEY_FREE              = 5325\n\tSYS_STATX                  = 5326\n\tSYS_RSEQ                   = 5327\n\tSYS_IO_PGETEVENTS          = 5328\n\tSYS_PIDFD_SEND_SIGNAL      = 5424\n\tSYS_IO_URING_SETUP         = 5425\n\tSYS_IO_URING_ENTER         = 5426\n\tSYS_IO_URING_REGISTER      = 5427\n\tSYS_OPEN_TREE              = 5428\n\tSYS_MOVE_MOUNT             = 5429\n\tSYS_FSOPEN                 = 5430\n\tSYS_FSCONFIG               = 5431\n\tSYS_FSMOUNT                = 5432\n\tSYS_FSPICK                 = 5433\n\tSYS_PIDFD_OPEN             = 5434\n\tSYS_CLONE3                 = 5435\n\tSYS_OPENAT2                = 5437\n\tSYS_PIDFD_GETFD            = 5438\n\tSYS_FACCESSAT2             = 5439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mipsle,linux\n\npackage unix\n\nconst (\n\tSYS_SYSCALL                      = 4000\n\tSYS_EXIT                         = 4001\n\tSYS_FORK                         = 4002\n\tSYS_READ                         = 4003\n\tSYS_WRITE                        = 4004\n\tSYS_OPEN                         = 4005\n\tSYS_CLOSE                        = 4006\n\tSYS_WAITPID                      = 4007\n\tSYS_CREAT                        = 4008\n\tSYS_LINK                         = 4009\n\tSYS_UNLINK                       = 4010\n\tSYS_EXECVE                       = 4011\n\tSYS_CHDIR                        = 4012\n\tSYS_TIME                         = 4013\n\tSYS_MKNOD                        = 4014\n\tSYS_CHMOD                        = 4015\n\tSYS_LCHOWN                       = 4016\n\tSYS_BREAK                        = 4017\n\tSYS_UNUSED18                     = 4018\n\tSYS_LSEEK                        = 4019\n\tSYS_GETPID                       = 4020\n\tSYS_MOUNT                        = 4021\n\tSYS_UMOUNT                       = 4022\n\tSYS_SETUID                       = 4023\n\tSYS_GETUID                       = 4024\n\tSYS_STIME                        = 4025\n\tSYS_PTRACE                       = 4026\n\tSYS_ALARM                        = 4027\n\tSYS_UNUSED28                     = 4028\n\tSYS_PAUSE                        = 4029\n\tSYS_UTIME                        = 4030\n\tSYS_STTY                         = 4031\n\tSYS_GTTY                         = 4032\n\tSYS_ACCESS                       = 4033\n\tSYS_NICE                         = 4034\n\tSYS_FTIME                        = 4035\n\tSYS_SYNC                         = 4036\n\tSYS_KILL                         = 4037\n\tSYS_RENAME                       = 4038\n\tSYS_MKDIR                        = 4039\n\tSYS_RMDIR                        = 4040\n\tSYS_DUP                          = 4041\n\tSYS_PIPE                         = 4042\n\tSYS_TIMES                        = 4043\n\tSYS_PROF                         = 4044\n\tSYS_BRK                          = 4045\n\tSYS_SETGID                       = 4046\n\tSYS_GETGID                       = 4047\n\tSYS_SIGNAL                       = 4048\n\tSYS_GETEUID                      = 4049\n\tSYS_GETEGID                      = 4050\n\tSYS_ACCT                         = 4051\n\tSYS_UMOUNT2                      = 4052\n\tSYS_LOCK                         = 4053\n\tSYS_IOCTL                        = 4054\n\tSYS_FCNTL                        = 4055\n\tSYS_MPX                          = 4056\n\tSYS_SETPGID                      = 4057\n\tSYS_ULIMIT                       = 4058\n\tSYS_UNUSED59                     = 4059\n\tSYS_UMASK                        = 4060\n\tSYS_CHROOT                       = 4061\n\tSYS_USTAT                        = 4062\n\tSYS_DUP2                         = 4063\n\tSYS_GETPPID                      = 4064\n\tSYS_GETPGRP                      = 4065\n\tSYS_SETSID                       = 4066\n\tSYS_SIGACTION                    = 4067\n\tSYS_SGETMASK                     = 4068\n\tSYS_SSETMASK                     = 4069\n\tSYS_SETREUID                     = 4070\n\tSYS_SETREGID                     = 4071\n\tSYS_SIGSUSPEND                   = 4072\n\tSYS_SIGPENDING                   = 4073\n\tSYS_SETHOSTNAME                  = 4074\n\tSYS_SETRLIMIT                    = 4075\n\tSYS_GETRLIMIT                    = 4076\n\tSYS_GETRUSAGE                    = 4077\n\tSYS_GETTIMEOFDAY                 = 4078\n\tSYS_SETTIMEOFDAY                 = 4079\n\tSYS_GETGROUPS                    = 4080\n\tSYS_SETGROUPS                    = 4081\n\tSYS_RESERVED82                   = 4082\n\tSYS_SYMLINK                      = 4083\n\tSYS_UNUSED84                     = 4084\n\tSYS_READLINK                     = 4085\n\tSYS_USELIB                       = 4086\n\tSYS_SWAPON                       = 4087\n\tSYS_REBOOT                       = 4088\n\tSYS_READDIR                      = 4089\n\tSYS_MMAP                         = 4090\n\tSYS_MUNMAP                       = 4091\n\tSYS_TRUNCATE                     = 4092\n\tSYS_FTRUNCATE                    = 4093\n\tSYS_FCHMOD                       = 4094\n\tSYS_FCHOWN                       = 4095\n\tSYS_GETPRIORITY                  = 4096\n\tSYS_SETPRIORITY                  = 4097\n\tSYS_PROFIL                       = 4098\n\tSYS_STATFS                       = 4099\n\tSYS_FSTATFS                      = 4100\n\tSYS_IOPERM                       = 4101\n\tSYS_SOCKETCALL                   = 4102\n\tSYS_SYSLOG                       = 4103\n\tSYS_SETITIMER                    = 4104\n\tSYS_GETITIMER                    = 4105\n\tSYS_STAT                         = 4106\n\tSYS_LSTAT                        = 4107\n\tSYS_FSTAT                        = 4108\n\tSYS_UNUSED109                    = 4109\n\tSYS_IOPL                         = 4110\n\tSYS_VHANGUP                      = 4111\n\tSYS_IDLE                         = 4112\n\tSYS_VM86                         = 4113\n\tSYS_WAIT4                        = 4114\n\tSYS_SWAPOFF                      = 4115\n\tSYS_SYSINFO                      = 4116\n\tSYS_IPC                          = 4117\n\tSYS_FSYNC                        = 4118\n\tSYS_SIGRETURN                    = 4119\n\tSYS_CLONE                        = 4120\n\tSYS_SETDOMAINNAME                = 4121\n\tSYS_UNAME                        = 4122\n\tSYS_MODIFY_LDT                   = 4123\n\tSYS_ADJTIMEX                     = 4124\n\tSYS_MPROTECT                     = 4125\n\tSYS_SIGPROCMASK                  = 4126\n\tSYS_CREATE_MODULE                = 4127\n\tSYS_INIT_MODULE                  = 4128\n\tSYS_DELETE_MODULE                = 4129\n\tSYS_GET_KERNEL_SYMS              = 4130\n\tSYS_QUOTACTL                     = 4131\n\tSYS_GETPGID                      = 4132\n\tSYS_FCHDIR                       = 4133\n\tSYS_BDFLUSH                      = 4134\n\tSYS_SYSFS                        = 4135\n\tSYS_PERSONALITY                  = 4136\n\tSYS_AFS_SYSCALL                  = 4137\n\tSYS_SETFSUID                     = 4138\n\tSYS_SETFSGID                     = 4139\n\tSYS__LLSEEK                      = 4140\n\tSYS_GETDENTS                     = 4141\n\tSYS__NEWSELECT                   = 4142\n\tSYS_FLOCK                        = 4143\n\tSYS_MSYNC                        = 4144\n\tSYS_READV                        = 4145\n\tSYS_WRITEV                       = 4146\n\tSYS_CACHEFLUSH                   = 4147\n\tSYS_CACHECTL                     = 4148\n\tSYS_SYSMIPS                      = 4149\n\tSYS_UNUSED150                    = 4150\n\tSYS_GETSID                       = 4151\n\tSYS_FDATASYNC                    = 4152\n\tSYS__SYSCTL                      = 4153\n\tSYS_MLOCK                        = 4154\n\tSYS_MUNLOCK                      = 4155\n\tSYS_MLOCKALL                     = 4156\n\tSYS_MUNLOCKALL                   = 4157\n\tSYS_SCHED_SETPARAM               = 4158\n\tSYS_SCHED_GETPARAM               = 4159\n\tSYS_SCHED_SETSCHEDULER           = 4160\n\tSYS_SCHED_GETSCHEDULER           = 4161\n\tSYS_SCHED_YIELD                  = 4162\n\tSYS_SCHED_GET_PRIORITY_MAX       = 4163\n\tSYS_SCHED_GET_PRIORITY_MIN       = 4164\n\tSYS_SCHED_RR_GET_INTERVAL        = 4165\n\tSYS_NANOSLEEP                    = 4166\n\tSYS_MREMAP                       = 4167\n\tSYS_ACCEPT                       = 4168\n\tSYS_BIND                         = 4169\n\tSYS_CONNECT                      = 4170\n\tSYS_GETPEERNAME                  = 4171\n\tSYS_GETSOCKNAME                  = 4172\n\tSYS_GETSOCKOPT                   = 4173\n\tSYS_LISTEN                       = 4174\n\tSYS_RECV                         = 4175\n\tSYS_RECVFROM                     = 4176\n\tSYS_RECVMSG                      = 4177\n\tSYS_SEND                         = 4178\n\tSYS_SENDMSG                      = 4179\n\tSYS_SENDTO                       = 4180\n\tSYS_SETSOCKOPT                   = 4181\n\tSYS_SHUTDOWN                     = 4182\n\tSYS_SOCKET                       = 4183\n\tSYS_SOCKETPAIR                   = 4184\n\tSYS_SETRESUID                    = 4185\n\tSYS_GETRESUID                    = 4186\n\tSYS_QUERY_MODULE                 = 4187\n\tSYS_POLL                         = 4188\n\tSYS_NFSSERVCTL                   = 4189\n\tSYS_SETRESGID                    = 4190\n\tSYS_GETRESGID                    = 4191\n\tSYS_PRCTL                        = 4192\n\tSYS_RT_SIGRETURN                 = 4193\n\tSYS_RT_SIGACTION                 = 4194\n\tSYS_RT_SIGPROCMASK               = 4195\n\tSYS_RT_SIGPENDING                = 4196\n\tSYS_RT_SIGTIMEDWAIT              = 4197\n\tSYS_RT_SIGQUEUEINFO              = 4198\n\tSYS_RT_SIGSUSPEND                = 4199\n\tSYS_PREAD64                      = 4200\n\tSYS_PWRITE64                     = 4201\n\tSYS_CHOWN                        = 4202\n\tSYS_GETCWD                       = 4203\n\tSYS_CAPGET                       = 4204\n\tSYS_CAPSET                       = 4205\n\tSYS_SIGALTSTACK                  = 4206\n\tSYS_SENDFILE                     = 4207\n\tSYS_GETPMSG                      = 4208\n\tSYS_PUTPMSG                      = 4209\n\tSYS_MMAP2                        = 4210\n\tSYS_TRUNCATE64                   = 4211\n\tSYS_FTRUNCATE64                  = 4212\n\tSYS_STAT64                       = 4213\n\tSYS_LSTAT64                      = 4214\n\tSYS_FSTAT64                      = 4215\n\tSYS_PIVOT_ROOT                   = 4216\n\tSYS_MINCORE                      = 4217\n\tSYS_MADVISE                      = 4218\n\tSYS_GETDENTS64                   = 4219\n\tSYS_FCNTL64                      = 4220\n\tSYS_RESERVED221                  = 4221\n\tSYS_GETTID                       = 4222\n\tSYS_READAHEAD                    = 4223\n\tSYS_SETXATTR                     = 4224\n\tSYS_LSETXATTR                    = 4225\n\tSYS_FSETXATTR                    = 4226\n\tSYS_GETXATTR                     = 4227\n\tSYS_LGETXATTR                    = 4228\n\tSYS_FGETXATTR                    = 4229\n\tSYS_LISTXATTR                    = 4230\n\tSYS_LLISTXATTR                   = 4231\n\tSYS_FLISTXATTR                   = 4232\n\tSYS_REMOVEXATTR                  = 4233\n\tSYS_LREMOVEXATTR                 = 4234\n\tSYS_FREMOVEXATTR                 = 4235\n\tSYS_TKILL                        = 4236\n\tSYS_SENDFILE64                   = 4237\n\tSYS_FUTEX                        = 4238\n\tSYS_SCHED_SETAFFINITY            = 4239\n\tSYS_SCHED_GETAFFINITY            = 4240\n\tSYS_IO_SETUP                     = 4241\n\tSYS_IO_DESTROY                   = 4242\n\tSYS_IO_GETEVENTS                 = 4243\n\tSYS_IO_SUBMIT                    = 4244\n\tSYS_IO_CANCEL                    = 4245\n\tSYS_EXIT_GROUP                   = 4246\n\tSYS_LOOKUP_DCOOKIE               = 4247\n\tSYS_EPOLL_CREATE                 = 4248\n\tSYS_EPOLL_CTL                    = 4249\n\tSYS_EPOLL_WAIT                   = 4250\n\tSYS_REMAP_FILE_PAGES             = 4251\n\tSYS_SET_TID_ADDRESS              = 4252\n\tSYS_RESTART_SYSCALL              = 4253\n\tSYS_FADVISE64                    = 4254\n\tSYS_STATFS64                     = 4255\n\tSYS_FSTATFS64                    = 4256\n\tSYS_TIMER_CREATE                 = 4257\n\tSYS_TIMER_SETTIME                = 4258\n\tSYS_TIMER_GETTIME                = 4259\n\tSYS_TIMER_GETOVERRUN             = 4260\n\tSYS_TIMER_DELETE                 = 4261\n\tSYS_CLOCK_SETTIME                = 4262\n\tSYS_CLOCK_GETTIME                = 4263\n\tSYS_CLOCK_GETRES                 = 4264\n\tSYS_CLOCK_NANOSLEEP              = 4265\n\tSYS_TGKILL                       = 4266\n\tSYS_UTIMES                       = 4267\n\tSYS_MBIND                        = 4268\n\tSYS_GET_MEMPOLICY                = 4269\n\tSYS_SET_MEMPOLICY                = 4270\n\tSYS_MQ_OPEN                      = 4271\n\tSYS_MQ_UNLINK                    = 4272\n\tSYS_MQ_TIMEDSEND                 = 4273\n\tSYS_MQ_TIMEDRECEIVE              = 4274\n\tSYS_MQ_NOTIFY                    = 4275\n\tSYS_MQ_GETSETATTR                = 4276\n\tSYS_VSERVER                      = 4277\n\tSYS_WAITID                       = 4278\n\tSYS_ADD_KEY                      = 4280\n\tSYS_REQUEST_KEY                  = 4281\n\tSYS_KEYCTL                       = 4282\n\tSYS_SET_THREAD_AREA              = 4283\n\tSYS_INOTIFY_INIT                 = 4284\n\tSYS_INOTIFY_ADD_WATCH            = 4285\n\tSYS_INOTIFY_RM_WATCH             = 4286\n\tSYS_MIGRATE_PAGES                = 4287\n\tSYS_OPENAT                       = 4288\n\tSYS_MKDIRAT                      = 4289\n\tSYS_MKNODAT                      = 4290\n\tSYS_FCHOWNAT                     = 4291\n\tSYS_FUTIMESAT                    = 4292\n\tSYS_FSTATAT64                    = 4293\n\tSYS_UNLINKAT                     = 4294\n\tSYS_RENAMEAT                     = 4295\n\tSYS_LINKAT                       = 4296\n\tSYS_SYMLINKAT                    = 4297\n\tSYS_READLINKAT                   = 4298\n\tSYS_FCHMODAT                     = 4299\n\tSYS_FACCESSAT                    = 4300\n\tSYS_PSELECT6                     = 4301\n\tSYS_PPOLL                        = 4302\n\tSYS_UNSHARE                      = 4303\n\tSYS_SPLICE                       = 4304\n\tSYS_SYNC_FILE_RANGE              = 4305\n\tSYS_TEE                          = 4306\n\tSYS_VMSPLICE                     = 4307\n\tSYS_MOVE_PAGES                   = 4308\n\tSYS_SET_ROBUST_LIST              = 4309\n\tSYS_GET_ROBUST_LIST              = 4310\n\tSYS_KEXEC_LOAD                   = 4311\n\tSYS_GETCPU                       = 4312\n\tSYS_EPOLL_PWAIT                  = 4313\n\tSYS_IOPRIO_SET                   = 4314\n\tSYS_IOPRIO_GET                   = 4315\n\tSYS_UTIMENSAT                    = 4316\n\tSYS_SIGNALFD                     = 4317\n\tSYS_TIMERFD                      = 4318\n\tSYS_EVENTFD                      = 4319\n\tSYS_FALLOCATE                    = 4320\n\tSYS_TIMERFD_CREATE               = 4321\n\tSYS_TIMERFD_GETTIME              = 4322\n\tSYS_TIMERFD_SETTIME              = 4323\n\tSYS_SIGNALFD4                    = 4324\n\tSYS_EVENTFD2                     = 4325\n\tSYS_EPOLL_CREATE1                = 4326\n\tSYS_DUP3                         = 4327\n\tSYS_PIPE2                        = 4328\n\tSYS_INOTIFY_INIT1                = 4329\n\tSYS_PREADV                       = 4330\n\tSYS_PWRITEV                      = 4331\n\tSYS_RT_TGSIGQUEUEINFO            = 4332\n\tSYS_PERF_EVENT_OPEN              = 4333\n\tSYS_ACCEPT4                      = 4334\n\tSYS_RECVMMSG                     = 4335\n\tSYS_FANOTIFY_INIT                = 4336\n\tSYS_FANOTIFY_MARK                = 4337\n\tSYS_PRLIMIT64                    = 4338\n\tSYS_NAME_TO_HANDLE_AT            = 4339\n\tSYS_OPEN_BY_HANDLE_AT            = 4340\n\tSYS_CLOCK_ADJTIME                = 4341\n\tSYS_SYNCFS                       = 4342\n\tSYS_SENDMMSG                     = 4343\n\tSYS_SETNS                        = 4344\n\tSYS_PROCESS_VM_READV             = 4345\n\tSYS_PROCESS_VM_WRITEV            = 4346\n\tSYS_KCMP                         = 4347\n\tSYS_FINIT_MODULE                 = 4348\n\tSYS_SCHED_SETATTR                = 4349\n\tSYS_SCHED_GETATTR                = 4350\n\tSYS_RENAMEAT2                    = 4351\n\tSYS_SECCOMP                      = 4352\n\tSYS_GETRANDOM                    = 4353\n\tSYS_MEMFD_CREATE                 = 4354\n\tSYS_BPF                          = 4355\n\tSYS_EXECVEAT                     = 4356\n\tSYS_USERFAULTFD                  = 4357\n\tSYS_MEMBARRIER                   = 4358\n\tSYS_MLOCK2                       = 4359\n\tSYS_COPY_FILE_RANGE              = 4360\n\tSYS_PREADV2                      = 4361\n\tSYS_PWRITEV2                     = 4362\n\tSYS_PKEY_MPROTECT                = 4363\n\tSYS_PKEY_ALLOC                   = 4364\n\tSYS_PKEY_FREE                    = 4365\n\tSYS_STATX                        = 4366\n\tSYS_RSEQ                         = 4367\n\tSYS_IO_PGETEVENTS                = 4368\n\tSYS_SEMGET                       = 4393\n\tSYS_SEMCTL                       = 4394\n\tSYS_SHMGET                       = 4395\n\tSYS_SHMCTL                       = 4396\n\tSYS_SHMAT                        = 4397\n\tSYS_SHMDT                        = 4398\n\tSYS_MSGGET                       = 4399\n\tSYS_MSGSND                       = 4400\n\tSYS_MSGRCV                       = 4401\n\tSYS_MSGCTL                       = 4402\n\tSYS_CLOCK_GETTIME64              = 4403\n\tSYS_CLOCK_SETTIME64              = 4404\n\tSYS_CLOCK_ADJTIME64              = 4405\n\tSYS_CLOCK_GETRES_TIME64          = 4406\n\tSYS_CLOCK_NANOSLEEP_TIME64       = 4407\n\tSYS_TIMER_GETTIME64              = 4408\n\tSYS_TIMER_SETTIME64              = 4409\n\tSYS_TIMERFD_GETTIME64            = 4410\n\tSYS_TIMERFD_SETTIME64            = 4411\n\tSYS_UTIMENSAT_TIME64             = 4412\n\tSYS_PSELECT6_TIME64              = 4413\n\tSYS_PPOLL_TIME64                 = 4414\n\tSYS_IO_PGETEVENTS_TIME64         = 4416\n\tSYS_RECVMMSG_TIME64              = 4417\n\tSYS_MQ_TIMEDSEND_TIME64          = 4418\n\tSYS_MQ_TIMEDRECEIVE_TIME64       = 4419\n\tSYS_SEMTIMEDOP_TIME64            = 4420\n\tSYS_RT_SIGTIMEDWAIT_TIME64       = 4421\n\tSYS_FUTEX_TIME64                 = 4422\n\tSYS_SCHED_RR_GET_INTERVAL_TIME64 = 4423\n\tSYS_PIDFD_SEND_SIGNAL            = 4424\n\tSYS_IO_URING_SETUP               = 4425\n\tSYS_IO_URING_ENTER               = 4426\n\tSYS_IO_URING_REGISTER            = 4427\n\tSYS_OPEN_TREE                    = 4428\n\tSYS_MOVE_MOUNT                   = 4429\n\tSYS_FSOPEN                       = 4430\n\tSYS_FSCONFIG                     = 4431\n\tSYS_FSMOUNT                      = 4432\n\tSYS_FSPICK                       = 4433\n\tSYS_PIDFD_OPEN                   = 4434\n\tSYS_CLONE3                       = 4435\n\tSYS_OPENAT2                      = 4437\n\tSYS_PIDFD_GETFD                  = 4438\n\tSYS_FACCESSAT2                   = 4439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc64,linux\n\npackage unix\n\nconst (\n\tSYS_RESTART_SYSCALL        = 0\n\tSYS_EXIT                   = 1\n\tSYS_FORK                   = 2\n\tSYS_READ                   = 3\n\tSYS_WRITE                  = 4\n\tSYS_OPEN                   = 5\n\tSYS_CLOSE                  = 6\n\tSYS_WAITPID                = 7\n\tSYS_CREAT                  = 8\n\tSYS_LINK                   = 9\n\tSYS_UNLINK                 = 10\n\tSYS_EXECVE                 = 11\n\tSYS_CHDIR                  = 12\n\tSYS_TIME                   = 13\n\tSYS_MKNOD                  = 14\n\tSYS_CHMOD                  = 15\n\tSYS_LCHOWN                 = 16\n\tSYS_BREAK                  = 17\n\tSYS_OLDSTAT                = 18\n\tSYS_LSEEK                  = 19\n\tSYS_GETPID                 = 20\n\tSYS_MOUNT                  = 21\n\tSYS_UMOUNT                 = 22\n\tSYS_SETUID                 = 23\n\tSYS_GETUID                 = 24\n\tSYS_STIME                  = 25\n\tSYS_PTRACE                 = 26\n\tSYS_ALARM                  = 27\n\tSYS_OLDFSTAT               = 28\n\tSYS_PAUSE                  = 29\n\tSYS_UTIME                  = 30\n\tSYS_STTY                   = 31\n\tSYS_GTTY                   = 32\n\tSYS_ACCESS                 = 33\n\tSYS_NICE                   = 34\n\tSYS_FTIME                  = 35\n\tSYS_SYNC                   = 36\n\tSYS_KILL                   = 37\n\tSYS_RENAME                 = 38\n\tSYS_MKDIR                  = 39\n\tSYS_RMDIR                  = 40\n\tSYS_DUP                    = 41\n\tSYS_PIPE                   = 42\n\tSYS_TIMES                  = 43\n\tSYS_PROF                   = 44\n\tSYS_BRK                    = 45\n\tSYS_SETGID                 = 46\n\tSYS_GETGID                 = 47\n\tSYS_SIGNAL                 = 48\n\tSYS_GETEUID                = 49\n\tSYS_GETEGID                = 50\n\tSYS_ACCT                   = 51\n\tSYS_UMOUNT2                = 52\n\tSYS_LOCK                   = 53\n\tSYS_IOCTL                  = 54\n\tSYS_FCNTL                  = 55\n\tSYS_MPX                    = 56\n\tSYS_SETPGID                = 57\n\tSYS_ULIMIT                 = 58\n\tSYS_OLDOLDUNAME            = 59\n\tSYS_UMASK                  = 60\n\tSYS_CHROOT                 = 61\n\tSYS_USTAT                  = 62\n\tSYS_DUP2                   = 63\n\tSYS_GETPPID                = 64\n\tSYS_GETPGRP                = 65\n\tSYS_SETSID                 = 66\n\tSYS_SIGACTION              = 67\n\tSYS_SGETMASK               = 68\n\tSYS_SSETMASK               = 69\n\tSYS_SETREUID               = 70\n\tSYS_SETREGID               = 71\n\tSYS_SIGSUSPEND             = 72\n\tSYS_SIGPENDING             = 73\n\tSYS_SETHOSTNAME            = 74\n\tSYS_SETRLIMIT              = 75\n\tSYS_GETRLIMIT              = 76\n\tSYS_GETRUSAGE              = 77\n\tSYS_GETTIMEOFDAY           = 78\n\tSYS_SETTIMEOFDAY           = 79\n\tSYS_GETGROUPS              = 80\n\tSYS_SETGROUPS              = 81\n\tSYS_SELECT                 = 82\n\tSYS_SYMLINK                = 83\n\tSYS_OLDLSTAT               = 84\n\tSYS_READLINK               = 85\n\tSYS_USELIB                 = 86\n\tSYS_SWAPON                 = 87\n\tSYS_REBOOT                 = 88\n\tSYS_READDIR                = 89\n\tSYS_MMAP                   = 90\n\tSYS_MUNMAP                 = 91\n\tSYS_TRUNCATE               = 92\n\tSYS_FTRUNCATE              = 93\n\tSYS_FCHMOD                 = 94\n\tSYS_FCHOWN                 = 95\n\tSYS_GETPRIORITY            = 96\n\tSYS_SETPRIORITY            = 97\n\tSYS_PROFIL                 = 98\n\tSYS_STATFS                 = 99\n\tSYS_FSTATFS                = 100\n\tSYS_IOPERM                 = 101\n\tSYS_SOCKETCALL             = 102\n\tSYS_SYSLOG                 = 103\n\tSYS_SETITIMER              = 104\n\tSYS_GETITIMER              = 105\n\tSYS_STAT                   = 106\n\tSYS_LSTAT                  = 107\n\tSYS_FSTAT                  = 108\n\tSYS_OLDUNAME               = 109\n\tSYS_IOPL                   = 110\n\tSYS_VHANGUP                = 111\n\tSYS_IDLE                   = 112\n\tSYS_VM86                   = 113\n\tSYS_WAIT4                  = 114\n\tSYS_SWAPOFF                = 115\n\tSYS_SYSINFO                = 116\n\tSYS_IPC                    = 117\n\tSYS_FSYNC                  = 118\n\tSYS_SIGRETURN              = 119\n\tSYS_CLONE                  = 120\n\tSYS_SETDOMAINNAME          = 121\n\tSYS_UNAME                  = 122\n\tSYS_MODIFY_LDT             = 123\n\tSYS_ADJTIMEX               = 124\n\tSYS_MPROTECT               = 125\n\tSYS_SIGPROCMASK            = 126\n\tSYS_CREATE_MODULE          = 127\n\tSYS_INIT_MODULE            = 128\n\tSYS_DELETE_MODULE          = 129\n\tSYS_GET_KERNEL_SYMS        = 130\n\tSYS_QUOTACTL               = 131\n\tSYS_GETPGID                = 132\n\tSYS_FCHDIR                 = 133\n\tSYS_BDFLUSH                = 134\n\tSYS_SYSFS                  = 135\n\tSYS_PERSONALITY            = 136\n\tSYS_AFS_SYSCALL            = 137\n\tSYS_SETFSUID               = 138\n\tSYS_SETFSGID               = 139\n\tSYS__LLSEEK                = 140\n\tSYS_GETDENTS               = 141\n\tSYS__NEWSELECT             = 142\n\tSYS_FLOCK                  = 143\n\tSYS_MSYNC                  = 144\n\tSYS_READV                  = 145\n\tSYS_WRITEV                 = 146\n\tSYS_GETSID                 = 147\n\tSYS_FDATASYNC              = 148\n\tSYS__SYSCTL                = 149\n\tSYS_MLOCK                  = 150\n\tSYS_MUNLOCK                = 151\n\tSYS_MLOCKALL               = 152\n\tSYS_MUNLOCKALL             = 153\n\tSYS_SCHED_SETPARAM         = 154\n\tSYS_SCHED_GETPARAM         = 155\n\tSYS_SCHED_SETSCHEDULER     = 156\n\tSYS_SCHED_GETSCHEDULER     = 157\n\tSYS_SCHED_YIELD            = 158\n\tSYS_SCHED_GET_PRIORITY_MAX = 159\n\tSYS_SCHED_GET_PRIORITY_MIN = 160\n\tSYS_SCHED_RR_GET_INTERVAL  = 161\n\tSYS_NANOSLEEP              = 162\n\tSYS_MREMAP                 = 163\n\tSYS_SETRESUID              = 164\n\tSYS_GETRESUID              = 165\n\tSYS_QUERY_MODULE           = 166\n\tSYS_POLL                   = 167\n\tSYS_NFSSERVCTL             = 168\n\tSYS_SETRESGID              = 169\n\tSYS_GETRESGID              = 170\n\tSYS_PRCTL                  = 171\n\tSYS_RT_SIGRETURN           = 172\n\tSYS_RT_SIGACTION           = 173\n\tSYS_RT_SIGPROCMASK         = 174\n\tSYS_RT_SIGPENDING          = 175\n\tSYS_RT_SIGTIMEDWAIT        = 176\n\tSYS_RT_SIGQUEUEINFO        = 177\n\tSYS_RT_SIGSUSPEND          = 178\n\tSYS_PREAD64                = 179\n\tSYS_PWRITE64               = 180\n\tSYS_CHOWN                  = 181\n\tSYS_GETCWD                 = 182\n\tSYS_CAPGET                 = 183\n\tSYS_CAPSET                 = 184\n\tSYS_SIGALTSTACK            = 185\n\tSYS_SENDFILE               = 186\n\tSYS_GETPMSG                = 187\n\tSYS_PUTPMSG                = 188\n\tSYS_VFORK                  = 189\n\tSYS_UGETRLIMIT             = 190\n\tSYS_READAHEAD              = 191\n\tSYS_PCICONFIG_READ         = 198\n\tSYS_PCICONFIG_WRITE        = 199\n\tSYS_PCICONFIG_IOBASE       = 200\n\tSYS_MULTIPLEXER            = 201\n\tSYS_GETDENTS64             = 202\n\tSYS_PIVOT_ROOT             = 203\n\tSYS_MADVISE                = 205\n\tSYS_MINCORE                = 206\n\tSYS_GETTID                 = 207\n\tSYS_TKILL                  = 208\n\tSYS_SETXATTR               = 209\n\tSYS_LSETXATTR              = 210\n\tSYS_FSETXATTR              = 211\n\tSYS_GETXATTR               = 212\n\tSYS_LGETXATTR              = 213\n\tSYS_FGETXATTR              = 214\n\tSYS_LISTXATTR              = 215\n\tSYS_LLISTXATTR             = 216\n\tSYS_FLISTXATTR             = 217\n\tSYS_REMOVEXATTR            = 218\n\tSYS_LREMOVEXATTR           = 219\n\tSYS_FREMOVEXATTR           = 220\n\tSYS_FUTEX                  = 221\n\tSYS_SCHED_SETAFFINITY      = 222\n\tSYS_SCHED_GETAFFINITY      = 223\n\tSYS_TUXCALL                = 225\n\tSYS_IO_SETUP               = 227\n\tSYS_IO_DESTROY             = 228\n\tSYS_IO_GETEVENTS           = 229\n\tSYS_IO_SUBMIT              = 230\n\tSYS_IO_CANCEL              = 231\n\tSYS_SET_TID_ADDRESS        = 232\n\tSYS_FADVISE64              = 233\n\tSYS_EXIT_GROUP             = 234\n\tSYS_LOOKUP_DCOOKIE         = 235\n\tSYS_EPOLL_CREATE           = 236\n\tSYS_EPOLL_CTL              = 237\n\tSYS_EPOLL_WAIT             = 238\n\tSYS_REMAP_FILE_PAGES       = 239\n\tSYS_TIMER_CREATE           = 240\n\tSYS_TIMER_SETTIME          = 241\n\tSYS_TIMER_GETTIME          = 242\n\tSYS_TIMER_GETOVERRUN       = 243\n\tSYS_TIMER_DELETE           = 244\n\tSYS_CLOCK_SETTIME          = 245\n\tSYS_CLOCK_GETTIME          = 246\n\tSYS_CLOCK_GETRES           = 247\n\tSYS_CLOCK_NANOSLEEP        = 248\n\tSYS_SWAPCONTEXT            = 249\n\tSYS_TGKILL                 = 250\n\tSYS_UTIMES                 = 251\n\tSYS_STATFS64               = 252\n\tSYS_FSTATFS64              = 253\n\tSYS_RTAS                   = 255\n\tSYS_SYS_DEBUG_SETCONTEXT   = 256\n\tSYS_MIGRATE_PAGES          = 258\n\tSYS_MBIND                  = 259\n\tSYS_GET_MEMPOLICY          = 260\n\tSYS_SET_MEMPOLICY          = 261\n\tSYS_MQ_OPEN                = 262\n\tSYS_MQ_UNLINK              = 263\n\tSYS_MQ_TIMEDSEND           = 264\n\tSYS_MQ_TIMEDRECEIVE        = 265\n\tSYS_MQ_NOTIFY              = 266\n\tSYS_MQ_GETSETATTR          = 267\n\tSYS_KEXEC_LOAD             = 268\n\tSYS_ADD_KEY                = 269\n\tSYS_REQUEST_KEY            = 270\n\tSYS_KEYCTL                 = 271\n\tSYS_WAITID                 = 272\n\tSYS_IOPRIO_SET             = 273\n\tSYS_IOPRIO_GET             = 274\n\tSYS_INOTIFY_INIT           = 275\n\tSYS_INOTIFY_ADD_WATCH      = 276\n\tSYS_INOTIFY_RM_WATCH       = 277\n\tSYS_SPU_RUN                = 278\n\tSYS_SPU_CREATE             = 279\n\tSYS_PSELECT6               = 280\n\tSYS_PPOLL                  = 281\n\tSYS_UNSHARE                = 282\n\tSYS_SPLICE                 = 283\n\tSYS_TEE                    = 284\n\tSYS_VMSPLICE               = 285\n\tSYS_OPENAT                 = 286\n\tSYS_MKDIRAT                = 287\n\tSYS_MKNODAT                = 288\n\tSYS_FCHOWNAT               = 289\n\tSYS_FUTIMESAT              = 290\n\tSYS_NEWFSTATAT             = 291\n\tSYS_UNLINKAT               = 292\n\tSYS_RENAMEAT               = 293\n\tSYS_LINKAT                 = 294\n\tSYS_SYMLINKAT              = 295\n\tSYS_READLINKAT             = 296\n\tSYS_FCHMODAT               = 297\n\tSYS_FACCESSAT              = 298\n\tSYS_GET_ROBUST_LIST        = 299\n\tSYS_SET_ROBUST_LIST        = 300\n\tSYS_MOVE_PAGES             = 301\n\tSYS_GETCPU                 = 302\n\tSYS_EPOLL_PWAIT            = 303\n\tSYS_UTIMENSAT              = 304\n\tSYS_SIGNALFD               = 305\n\tSYS_TIMERFD_CREATE         = 306\n\tSYS_EVENTFD                = 307\n\tSYS_SYNC_FILE_RANGE2       = 308\n\tSYS_FALLOCATE              = 309\n\tSYS_SUBPAGE_PROT           = 310\n\tSYS_TIMERFD_SETTIME        = 311\n\tSYS_TIMERFD_GETTIME        = 312\n\tSYS_SIGNALFD4              = 313\n\tSYS_EVENTFD2               = 314\n\tSYS_EPOLL_CREATE1          = 315\n\tSYS_DUP3                   = 316\n\tSYS_PIPE2                  = 317\n\tSYS_INOTIFY_INIT1          = 318\n\tSYS_PERF_EVENT_OPEN        = 319\n\tSYS_PREADV                 = 320\n\tSYS_PWRITEV                = 321\n\tSYS_RT_TGSIGQUEUEINFO      = 322\n\tSYS_FANOTIFY_INIT          = 323\n\tSYS_FANOTIFY_MARK          = 324\n\tSYS_PRLIMIT64              = 325\n\tSYS_SOCKET                 = 326\n\tSYS_BIND                   = 327\n\tSYS_CONNECT                = 328\n\tSYS_LISTEN                 = 329\n\tSYS_ACCEPT                 = 330\n\tSYS_GETSOCKNAME            = 331\n\tSYS_GETPEERNAME            = 332\n\tSYS_SOCKETPAIR             = 333\n\tSYS_SEND                   = 334\n\tSYS_SENDTO                 = 335\n\tSYS_RECV                   = 336\n\tSYS_RECVFROM               = 337\n\tSYS_SHUTDOWN               = 338\n\tSYS_SETSOCKOPT             = 339\n\tSYS_GETSOCKOPT             = 340\n\tSYS_SENDMSG                = 341\n\tSYS_RECVMSG                = 342\n\tSYS_RECVMMSG               = 343\n\tSYS_ACCEPT4                = 344\n\tSYS_NAME_TO_HANDLE_AT      = 345\n\tSYS_OPEN_BY_HANDLE_AT      = 346\n\tSYS_CLOCK_ADJTIME          = 347\n\tSYS_SYNCFS                 = 348\n\tSYS_SENDMMSG               = 349\n\tSYS_SETNS                  = 350\n\tSYS_PROCESS_VM_READV       = 351\n\tSYS_PROCESS_VM_WRITEV      = 352\n\tSYS_FINIT_MODULE           = 353\n\tSYS_KCMP                   = 354\n\tSYS_SCHED_SETATTR          = 355\n\tSYS_SCHED_GETATTR          = 356\n\tSYS_RENAMEAT2              = 357\n\tSYS_SECCOMP                = 358\n\tSYS_GETRANDOM              = 359\n\tSYS_MEMFD_CREATE           = 360\n\tSYS_BPF                    = 361\n\tSYS_EXECVEAT               = 362\n\tSYS_SWITCH_ENDIAN          = 363\n\tSYS_USERFAULTFD            = 364\n\tSYS_MEMBARRIER             = 365\n\tSYS_MLOCK2                 = 378\n\tSYS_COPY_FILE_RANGE        = 379\n\tSYS_PREADV2                = 380\n\tSYS_PWRITEV2               = 381\n\tSYS_KEXEC_FILE_LOAD        = 382\n\tSYS_STATX                  = 383\n\tSYS_PKEY_ALLOC             = 384\n\tSYS_PKEY_FREE              = 385\n\tSYS_PKEY_MPROTECT          = 386\n\tSYS_RSEQ                   = 387\n\tSYS_IO_PGETEVENTS          = 388\n\tSYS_SEMTIMEDOP             = 392\n\tSYS_SEMGET                 = 393\n\tSYS_SEMCTL                 = 394\n\tSYS_SHMGET                 = 395\n\tSYS_SHMCTL                 = 396\n\tSYS_SHMAT                  = 397\n\tSYS_SHMDT                  = 398\n\tSYS_MSGGET                 = 399\n\tSYS_MSGSND                 = 400\n\tSYS_MSGRCV                 = 401\n\tSYS_MSGCTL                 = 402\n\tSYS_PIDFD_SEND_SIGNAL      = 424\n\tSYS_IO_URING_SETUP         = 425\n\tSYS_IO_URING_ENTER         = 426\n\tSYS_IO_URING_REGISTER      = 427\n\tSYS_OPEN_TREE              = 428\n\tSYS_MOVE_MOUNT             = 429\n\tSYS_FSOPEN                 = 430\n\tSYS_FSCONFIG               = 431\n\tSYS_FSMOUNT                = 432\n\tSYS_FSPICK                 = 433\n\tSYS_PIDFD_OPEN             = 434\n\tSYS_CLONE3                 = 435\n\tSYS_OPENAT2                = 437\n\tSYS_PIDFD_GETFD            = 438\n\tSYS_FACCESSAT2             = 439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc64le,linux\n\npackage unix\n\nconst (\n\tSYS_RESTART_SYSCALL        = 0\n\tSYS_EXIT                   = 1\n\tSYS_FORK                   = 2\n\tSYS_READ                   = 3\n\tSYS_WRITE                  = 4\n\tSYS_OPEN                   = 5\n\tSYS_CLOSE                  = 6\n\tSYS_WAITPID                = 7\n\tSYS_CREAT                  = 8\n\tSYS_LINK                   = 9\n\tSYS_UNLINK                 = 10\n\tSYS_EXECVE                 = 11\n\tSYS_CHDIR                  = 12\n\tSYS_TIME                   = 13\n\tSYS_MKNOD                  = 14\n\tSYS_CHMOD                  = 15\n\tSYS_LCHOWN                 = 16\n\tSYS_BREAK                  = 17\n\tSYS_OLDSTAT                = 18\n\tSYS_LSEEK                  = 19\n\tSYS_GETPID                 = 20\n\tSYS_MOUNT                  = 21\n\tSYS_UMOUNT                 = 22\n\tSYS_SETUID                 = 23\n\tSYS_GETUID                 = 24\n\tSYS_STIME                  = 25\n\tSYS_PTRACE                 = 26\n\tSYS_ALARM                  = 27\n\tSYS_OLDFSTAT               = 28\n\tSYS_PAUSE                  = 29\n\tSYS_UTIME                  = 30\n\tSYS_STTY                   = 31\n\tSYS_GTTY                   = 32\n\tSYS_ACCESS                 = 33\n\tSYS_NICE                   = 34\n\tSYS_FTIME                  = 35\n\tSYS_SYNC                   = 36\n\tSYS_KILL                   = 37\n\tSYS_RENAME                 = 38\n\tSYS_MKDIR                  = 39\n\tSYS_RMDIR                  = 40\n\tSYS_DUP                    = 41\n\tSYS_PIPE                   = 42\n\tSYS_TIMES                  = 43\n\tSYS_PROF                   = 44\n\tSYS_BRK                    = 45\n\tSYS_SETGID                 = 46\n\tSYS_GETGID                 = 47\n\tSYS_SIGNAL                 = 48\n\tSYS_GETEUID                = 49\n\tSYS_GETEGID                = 50\n\tSYS_ACCT                   = 51\n\tSYS_UMOUNT2                = 52\n\tSYS_LOCK                   = 53\n\tSYS_IOCTL                  = 54\n\tSYS_FCNTL                  = 55\n\tSYS_MPX                    = 56\n\tSYS_SETPGID                = 57\n\tSYS_ULIMIT                 = 58\n\tSYS_OLDOLDUNAME            = 59\n\tSYS_UMASK                  = 60\n\tSYS_CHROOT                 = 61\n\tSYS_USTAT                  = 62\n\tSYS_DUP2                   = 63\n\tSYS_GETPPID                = 64\n\tSYS_GETPGRP                = 65\n\tSYS_SETSID                 = 66\n\tSYS_SIGACTION              = 67\n\tSYS_SGETMASK               = 68\n\tSYS_SSETMASK               = 69\n\tSYS_SETREUID               = 70\n\tSYS_SETREGID               = 71\n\tSYS_SIGSUSPEND             = 72\n\tSYS_SIGPENDING             = 73\n\tSYS_SETHOSTNAME            = 74\n\tSYS_SETRLIMIT              = 75\n\tSYS_GETRLIMIT              = 76\n\tSYS_GETRUSAGE              = 77\n\tSYS_GETTIMEOFDAY           = 78\n\tSYS_SETTIMEOFDAY           = 79\n\tSYS_GETGROUPS              = 80\n\tSYS_SETGROUPS              = 81\n\tSYS_SELECT                 = 82\n\tSYS_SYMLINK                = 83\n\tSYS_OLDLSTAT               = 84\n\tSYS_READLINK               = 85\n\tSYS_USELIB                 = 86\n\tSYS_SWAPON                 = 87\n\tSYS_REBOOT                 = 88\n\tSYS_READDIR                = 89\n\tSYS_MMAP                   = 90\n\tSYS_MUNMAP                 = 91\n\tSYS_TRUNCATE               = 92\n\tSYS_FTRUNCATE              = 93\n\tSYS_FCHMOD                 = 94\n\tSYS_FCHOWN                 = 95\n\tSYS_GETPRIORITY            = 96\n\tSYS_SETPRIORITY            = 97\n\tSYS_PROFIL                 = 98\n\tSYS_STATFS                 = 99\n\tSYS_FSTATFS                = 100\n\tSYS_IOPERM                 = 101\n\tSYS_SOCKETCALL             = 102\n\tSYS_SYSLOG                 = 103\n\tSYS_SETITIMER              = 104\n\tSYS_GETITIMER              = 105\n\tSYS_STAT                   = 106\n\tSYS_LSTAT                  = 107\n\tSYS_FSTAT                  = 108\n\tSYS_OLDUNAME               = 109\n\tSYS_IOPL                   = 110\n\tSYS_VHANGUP                = 111\n\tSYS_IDLE                   = 112\n\tSYS_VM86                   = 113\n\tSYS_WAIT4                  = 114\n\tSYS_SWAPOFF                = 115\n\tSYS_SYSINFO                = 116\n\tSYS_IPC                    = 117\n\tSYS_FSYNC                  = 118\n\tSYS_SIGRETURN              = 119\n\tSYS_CLONE                  = 120\n\tSYS_SETDOMAINNAME          = 121\n\tSYS_UNAME                  = 122\n\tSYS_MODIFY_LDT             = 123\n\tSYS_ADJTIMEX               = 124\n\tSYS_MPROTECT               = 125\n\tSYS_SIGPROCMASK            = 126\n\tSYS_CREATE_MODULE          = 127\n\tSYS_INIT_MODULE            = 128\n\tSYS_DELETE_MODULE          = 129\n\tSYS_GET_KERNEL_SYMS        = 130\n\tSYS_QUOTACTL               = 131\n\tSYS_GETPGID                = 132\n\tSYS_FCHDIR                 = 133\n\tSYS_BDFLUSH                = 134\n\tSYS_SYSFS                  = 135\n\tSYS_PERSONALITY            = 136\n\tSYS_AFS_SYSCALL            = 137\n\tSYS_SETFSUID               = 138\n\tSYS_SETFSGID               = 139\n\tSYS__LLSEEK                = 140\n\tSYS_GETDENTS               = 141\n\tSYS__NEWSELECT             = 142\n\tSYS_FLOCK                  = 143\n\tSYS_MSYNC                  = 144\n\tSYS_READV                  = 145\n\tSYS_WRITEV                 = 146\n\tSYS_GETSID                 = 147\n\tSYS_FDATASYNC              = 148\n\tSYS__SYSCTL                = 149\n\tSYS_MLOCK                  = 150\n\tSYS_MUNLOCK                = 151\n\tSYS_MLOCKALL               = 152\n\tSYS_MUNLOCKALL             = 153\n\tSYS_SCHED_SETPARAM         = 154\n\tSYS_SCHED_GETPARAM         = 155\n\tSYS_SCHED_SETSCHEDULER     = 156\n\tSYS_SCHED_GETSCHEDULER     = 157\n\tSYS_SCHED_YIELD            = 158\n\tSYS_SCHED_GET_PRIORITY_MAX = 159\n\tSYS_SCHED_GET_PRIORITY_MIN = 160\n\tSYS_SCHED_RR_GET_INTERVAL  = 161\n\tSYS_NANOSLEEP              = 162\n\tSYS_MREMAP                 = 163\n\tSYS_SETRESUID              = 164\n\tSYS_GETRESUID              = 165\n\tSYS_QUERY_MODULE           = 166\n\tSYS_POLL                   = 167\n\tSYS_NFSSERVCTL             = 168\n\tSYS_SETRESGID              = 169\n\tSYS_GETRESGID              = 170\n\tSYS_PRCTL                  = 171\n\tSYS_RT_SIGRETURN           = 172\n\tSYS_RT_SIGACTION           = 173\n\tSYS_RT_SIGPROCMASK         = 174\n\tSYS_RT_SIGPENDING          = 175\n\tSYS_RT_SIGTIMEDWAIT        = 176\n\tSYS_RT_SIGQUEUEINFO        = 177\n\tSYS_RT_SIGSUSPEND          = 178\n\tSYS_PREAD64                = 179\n\tSYS_PWRITE64               = 180\n\tSYS_CHOWN                  = 181\n\tSYS_GETCWD                 = 182\n\tSYS_CAPGET                 = 183\n\tSYS_CAPSET                 = 184\n\tSYS_SIGALTSTACK            = 185\n\tSYS_SENDFILE               = 186\n\tSYS_GETPMSG                = 187\n\tSYS_PUTPMSG                = 188\n\tSYS_VFORK                  = 189\n\tSYS_UGETRLIMIT             = 190\n\tSYS_READAHEAD              = 191\n\tSYS_PCICONFIG_READ         = 198\n\tSYS_PCICONFIG_WRITE        = 199\n\tSYS_PCICONFIG_IOBASE       = 200\n\tSYS_MULTIPLEXER            = 201\n\tSYS_GETDENTS64             = 202\n\tSYS_PIVOT_ROOT             = 203\n\tSYS_MADVISE                = 205\n\tSYS_MINCORE                = 206\n\tSYS_GETTID                 = 207\n\tSYS_TKILL                  = 208\n\tSYS_SETXATTR               = 209\n\tSYS_LSETXATTR              = 210\n\tSYS_FSETXATTR              = 211\n\tSYS_GETXATTR               = 212\n\tSYS_LGETXATTR              = 213\n\tSYS_FGETXATTR              = 214\n\tSYS_LISTXATTR              = 215\n\tSYS_LLISTXATTR             = 216\n\tSYS_FLISTXATTR             = 217\n\tSYS_REMOVEXATTR            = 218\n\tSYS_LREMOVEXATTR           = 219\n\tSYS_FREMOVEXATTR           = 220\n\tSYS_FUTEX                  = 221\n\tSYS_SCHED_SETAFFINITY      = 222\n\tSYS_SCHED_GETAFFINITY      = 223\n\tSYS_TUXCALL                = 225\n\tSYS_IO_SETUP               = 227\n\tSYS_IO_DESTROY             = 228\n\tSYS_IO_GETEVENTS           = 229\n\tSYS_IO_SUBMIT              = 230\n\tSYS_IO_CANCEL              = 231\n\tSYS_SET_TID_ADDRESS        = 232\n\tSYS_FADVISE64              = 233\n\tSYS_EXIT_GROUP             = 234\n\tSYS_LOOKUP_DCOOKIE         = 235\n\tSYS_EPOLL_CREATE           = 236\n\tSYS_EPOLL_CTL              = 237\n\tSYS_EPOLL_WAIT             = 238\n\tSYS_REMAP_FILE_PAGES       = 239\n\tSYS_TIMER_CREATE           = 240\n\tSYS_TIMER_SETTIME          = 241\n\tSYS_TIMER_GETTIME          = 242\n\tSYS_TIMER_GETOVERRUN       = 243\n\tSYS_TIMER_DELETE           = 244\n\tSYS_CLOCK_SETTIME          = 245\n\tSYS_CLOCK_GETTIME          = 246\n\tSYS_CLOCK_GETRES           = 247\n\tSYS_CLOCK_NANOSLEEP        = 248\n\tSYS_SWAPCONTEXT            = 249\n\tSYS_TGKILL                 = 250\n\tSYS_UTIMES                 = 251\n\tSYS_STATFS64               = 252\n\tSYS_FSTATFS64              = 253\n\tSYS_RTAS                   = 255\n\tSYS_SYS_DEBUG_SETCONTEXT   = 256\n\tSYS_MIGRATE_PAGES          = 258\n\tSYS_MBIND                  = 259\n\tSYS_GET_MEMPOLICY          = 260\n\tSYS_SET_MEMPOLICY          = 261\n\tSYS_MQ_OPEN                = 262\n\tSYS_MQ_UNLINK              = 263\n\tSYS_MQ_TIMEDSEND           = 264\n\tSYS_MQ_TIMEDRECEIVE        = 265\n\tSYS_MQ_NOTIFY              = 266\n\tSYS_MQ_GETSETATTR          = 267\n\tSYS_KEXEC_LOAD             = 268\n\tSYS_ADD_KEY                = 269\n\tSYS_REQUEST_KEY            = 270\n\tSYS_KEYCTL                 = 271\n\tSYS_WAITID                 = 272\n\tSYS_IOPRIO_SET             = 273\n\tSYS_IOPRIO_GET             = 274\n\tSYS_INOTIFY_INIT           = 275\n\tSYS_INOTIFY_ADD_WATCH      = 276\n\tSYS_INOTIFY_RM_WATCH       = 277\n\tSYS_SPU_RUN                = 278\n\tSYS_SPU_CREATE             = 279\n\tSYS_PSELECT6               = 280\n\tSYS_PPOLL                  = 281\n\tSYS_UNSHARE                = 282\n\tSYS_SPLICE                 = 283\n\tSYS_TEE                    = 284\n\tSYS_VMSPLICE               = 285\n\tSYS_OPENAT                 = 286\n\tSYS_MKDIRAT                = 287\n\tSYS_MKNODAT                = 288\n\tSYS_FCHOWNAT               = 289\n\tSYS_FUTIMESAT              = 290\n\tSYS_NEWFSTATAT             = 291\n\tSYS_UNLINKAT               = 292\n\tSYS_RENAMEAT               = 293\n\tSYS_LINKAT                 = 294\n\tSYS_SYMLINKAT              = 295\n\tSYS_READLINKAT             = 296\n\tSYS_FCHMODAT               = 297\n\tSYS_FACCESSAT              = 298\n\tSYS_GET_ROBUST_LIST        = 299\n\tSYS_SET_ROBUST_LIST        = 300\n\tSYS_MOVE_PAGES             = 301\n\tSYS_GETCPU                 = 302\n\tSYS_EPOLL_PWAIT            = 303\n\tSYS_UTIMENSAT              = 304\n\tSYS_SIGNALFD               = 305\n\tSYS_TIMERFD_CREATE         = 306\n\tSYS_EVENTFD                = 307\n\tSYS_SYNC_FILE_RANGE2       = 308\n\tSYS_FALLOCATE              = 309\n\tSYS_SUBPAGE_PROT           = 310\n\tSYS_TIMERFD_SETTIME        = 311\n\tSYS_TIMERFD_GETTIME        = 312\n\tSYS_SIGNALFD4              = 313\n\tSYS_EVENTFD2               = 314\n\tSYS_EPOLL_CREATE1          = 315\n\tSYS_DUP3                   = 316\n\tSYS_PIPE2                  = 317\n\tSYS_INOTIFY_INIT1          = 318\n\tSYS_PERF_EVENT_OPEN        = 319\n\tSYS_PREADV                 = 320\n\tSYS_PWRITEV                = 321\n\tSYS_RT_TGSIGQUEUEINFO      = 322\n\tSYS_FANOTIFY_INIT          = 323\n\tSYS_FANOTIFY_MARK          = 324\n\tSYS_PRLIMIT64              = 325\n\tSYS_SOCKET                 = 326\n\tSYS_BIND                   = 327\n\tSYS_CONNECT                = 328\n\tSYS_LISTEN                 = 329\n\tSYS_ACCEPT                 = 330\n\tSYS_GETSOCKNAME            = 331\n\tSYS_GETPEERNAME            = 332\n\tSYS_SOCKETPAIR             = 333\n\tSYS_SEND                   = 334\n\tSYS_SENDTO                 = 335\n\tSYS_RECV                   = 336\n\tSYS_RECVFROM               = 337\n\tSYS_SHUTDOWN               = 338\n\tSYS_SETSOCKOPT             = 339\n\tSYS_GETSOCKOPT             = 340\n\tSYS_SENDMSG                = 341\n\tSYS_RECVMSG                = 342\n\tSYS_RECVMMSG               = 343\n\tSYS_ACCEPT4                = 344\n\tSYS_NAME_TO_HANDLE_AT      = 345\n\tSYS_OPEN_BY_HANDLE_AT      = 346\n\tSYS_CLOCK_ADJTIME          = 347\n\tSYS_SYNCFS                 = 348\n\tSYS_SENDMMSG               = 349\n\tSYS_SETNS                  = 350\n\tSYS_PROCESS_VM_READV       = 351\n\tSYS_PROCESS_VM_WRITEV      = 352\n\tSYS_FINIT_MODULE           = 353\n\tSYS_KCMP                   = 354\n\tSYS_SCHED_SETATTR          = 355\n\tSYS_SCHED_GETATTR          = 356\n\tSYS_RENAMEAT2              = 357\n\tSYS_SECCOMP                = 358\n\tSYS_GETRANDOM              = 359\n\tSYS_MEMFD_CREATE           = 360\n\tSYS_BPF                    = 361\n\tSYS_EXECVEAT               = 362\n\tSYS_SWITCH_ENDIAN          = 363\n\tSYS_USERFAULTFD            = 364\n\tSYS_MEMBARRIER             = 365\n\tSYS_MLOCK2                 = 378\n\tSYS_COPY_FILE_RANGE        = 379\n\tSYS_PREADV2                = 380\n\tSYS_PWRITEV2               = 381\n\tSYS_KEXEC_FILE_LOAD        = 382\n\tSYS_STATX                  = 383\n\tSYS_PKEY_ALLOC             = 384\n\tSYS_PKEY_FREE              = 385\n\tSYS_PKEY_MPROTECT          = 386\n\tSYS_RSEQ                   = 387\n\tSYS_IO_PGETEVENTS          = 388\n\tSYS_SEMTIMEDOP             = 392\n\tSYS_SEMGET                 = 393\n\tSYS_SEMCTL                 = 394\n\tSYS_SHMGET                 = 395\n\tSYS_SHMCTL                 = 396\n\tSYS_SHMAT                  = 397\n\tSYS_SHMDT                  = 398\n\tSYS_MSGGET                 = 399\n\tSYS_MSGSND                 = 400\n\tSYS_MSGRCV                 = 401\n\tSYS_MSGCTL                 = 402\n\tSYS_PIDFD_SEND_SIGNAL      = 424\n\tSYS_IO_URING_SETUP         = 425\n\tSYS_IO_URING_ENTER         = 426\n\tSYS_IO_URING_REGISTER      = 427\n\tSYS_OPEN_TREE              = 428\n\tSYS_MOVE_MOUNT             = 429\n\tSYS_FSOPEN                 = 430\n\tSYS_FSCONFIG               = 431\n\tSYS_FSMOUNT                = 432\n\tSYS_FSPICK                 = 433\n\tSYS_PIDFD_OPEN             = 434\n\tSYS_CLONE3                 = 435\n\tSYS_OPENAT2                = 437\n\tSYS_PIDFD_GETFD            = 438\n\tSYS_FACCESSAT2             = 439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build riscv64,linux\n\npackage unix\n\nconst (\n\tSYS_IO_SETUP               = 0\n\tSYS_IO_DESTROY             = 1\n\tSYS_IO_SUBMIT              = 2\n\tSYS_IO_CANCEL              = 3\n\tSYS_IO_GETEVENTS           = 4\n\tSYS_SETXATTR               = 5\n\tSYS_LSETXATTR              = 6\n\tSYS_FSETXATTR              = 7\n\tSYS_GETXATTR               = 8\n\tSYS_LGETXATTR              = 9\n\tSYS_FGETXATTR              = 10\n\tSYS_LISTXATTR              = 11\n\tSYS_LLISTXATTR             = 12\n\tSYS_FLISTXATTR             = 13\n\tSYS_REMOVEXATTR            = 14\n\tSYS_LREMOVEXATTR           = 15\n\tSYS_FREMOVEXATTR           = 16\n\tSYS_GETCWD                 = 17\n\tSYS_LOOKUP_DCOOKIE         = 18\n\tSYS_EVENTFD2               = 19\n\tSYS_EPOLL_CREATE1          = 20\n\tSYS_EPOLL_CTL              = 21\n\tSYS_EPOLL_PWAIT            = 22\n\tSYS_DUP                    = 23\n\tSYS_DUP3                   = 24\n\tSYS_FCNTL                  = 25\n\tSYS_INOTIFY_INIT1          = 26\n\tSYS_INOTIFY_ADD_WATCH      = 27\n\tSYS_INOTIFY_RM_WATCH       = 28\n\tSYS_IOCTL                  = 29\n\tSYS_IOPRIO_SET             = 30\n\tSYS_IOPRIO_GET             = 31\n\tSYS_FLOCK                  = 32\n\tSYS_MKNODAT                = 33\n\tSYS_MKDIRAT                = 34\n\tSYS_UNLINKAT               = 35\n\tSYS_SYMLINKAT              = 36\n\tSYS_LINKAT                 = 37\n\tSYS_UMOUNT2                = 39\n\tSYS_MOUNT                  = 40\n\tSYS_PIVOT_ROOT             = 41\n\tSYS_NFSSERVCTL             = 42\n\tSYS_STATFS                 = 43\n\tSYS_FSTATFS                = 44\n\tSYS_TRUNCATE               = 45\n\tSYS_FTRUNCATE              = 46\n\tSYS_FALLOCATE              = 47\n\tSYS_FACCESSAT              = 48\n\tSYS_CHDIR                  = 49\n\tSYS_FCHDIR                 = 50\n\tSYS_CHROOT                 = 51\n\tSYS_FCHMOD                 = 52\n\tSYS_FCHMODAT               = 53\n\tSYS_FCHOWNAT               = 54\n\tSYS_FCHOWN                 = 55\n\tSYS_OPENAT                 = 56\n\tSYS_CLOSE                  = 57\n\tSYS_VHANGUP                = 58\n\tSYS_PIPE2                  = 59\n\tSYS_QUOTACTL               = 60\n\tSYS_GETDENTS64             = 61\n\tSYS_LSEEK                  = 62\n\tSYS_READ                   = 63\n\tSYS_WRITE                  = 64\n\tSYS_READV                  = 65\n\tSYS_WRITEV                 = 66\n\tSYS_PREAD64                = 67\n\tSYS_PWRITE64               = 68\n\tSYS_PREADV                 = 69\n\tSYS_PWRITEV                = 70\n\tSYS_SENDFILE               = 71\n\tSYS_PSELECT6               = 72\n\tSYS_PPOLL                  = 73\n\tSYS_SIGNALFD4              = 74\n\tSYS_VMSPLICE               = 75\n\tSYS_SPLICE                 = 76\n\tSYS_TEE                    = 77\n\tSYS_READLINKAT             = 78\n\tSYS_FSTATAT                = 79\n\tSYS_FSTAT                  = 80\n\tSYS_SYNC                   = 81\n\tSYS_FSYNC                  = 82\n\tSYS_FDATASYNC              = 83\n\tSYS_SYNC_FILE_RANGE        = 84\n\tSYS_TIMERFD_CREATE         = 85\n\tSYS_TIMERFD_SETTIME        = 86\n\tSYS_TIMERFD_GETTIME        = 87\n\tSYS_UTIMENSAT              = 88\n\tSYS_ACCT                   = 89\n\tSYS_CAPGET                 = 90\n\tSYS_CAPSET                 = 91\n\tSYS_PERSONALITY            = 92\n\tSYS_EXIT                   = 93\n\tSYS_EXIT_GROUP             = 94\n\tSYS_WAITID                 = 95\n\tSYS_SET_TID_ADDRESS        = 96\n\tSYS_UNSHARE                = 97\n\tSYS_FUTEX                  = 98\n\tSYS_SET_ROBUST_LIST        = 99\n\tSYS_GET_ROBUST_LIST        = 100\n\tSYS_NANOSLEEP              = 101\n\tSYS_GETITIMER              = 102\n\tSYS_SETITIMER              = 103\n\tSYS_KEXEC_LOAD             = 104\n\tSYS_INIT_MODULE            = 105\n\tSYS_DELETE_MODULE          = 106\n\tSYS_TIMER_CREATE           = 107\n\tSYS_TIMER_GETTIME          = 108\n\tSYS_TIMER_GETOVERRUN       = 109\n\tSYS_TIMER_SETTIME          = 110\n\tSYS_TIMER_DELETE           = 111\n\tSYS_CLOCK_SETTIME          = 112\n\tSYS_CLOCK_GETTIME          = 113\n\tSYS_CLOCK_GETRES           = 114\n\tSYS_CLOCK_NANOSLEEP        = 115\n\tSYS_SYSLOG                 = 116\n\tSYS_PTRACE                 = 117\n\tSYS_SCHED_SETPARAM         = 118\n\tSYS_SCHED_SETSCHEDULER     = 119\n\tSYS_SCHED_GETSCHEDULER     = 120\n\tSYS_SCHED_GETPARAM         = 121\n\tSYS_SCHED_SETAFFINITY      = 122\n\tSYS_SCHED_GETAFFINITY      = 123\n\tSYS_SCHED_YIELD            = 124\n\tSYS_SCHED_GET_PRIORITY_MAX = 125\n\tSYS_SCHED_GET_PRIORITY_MIN = 126\n\tSYS_SCHED_RR_GET_INTERVAL  = 127\n\tSYS_RESTART_SYSCALL        = 128\n\tSYS_KILL                   = 129\n\tSYS_TKILL                  = 130\n\tSYS_TGKILL                 = 131\n\tSYS_SIGALTSTACK            = 132\n\tSYS_RT_SIGSUSPEND          = 133\n\tSYS_RT_SIGACTION           = 134\n\tSYS_RT_SIGPROCMASK         = 135\n\tSYS_RT_SIGPENDING          = 136\n\tSYS_RT_SIGTIMEDWAIT        = 137\n\tSYS_RT_SIGQUEUEINFO        = 138\n\tSYS_RT_SIGRETURN           = 139\n\tSYS_SETPRIORITY            = 140\n\tSYS_GETPRIORITY            = 141\n\tSYS_REBOOT                 = 142\n\tSYS_SETREGID               = 143\n\tSYS_SETGID                 = 144\n\tSYS_SETREUID               = 145\n\tSYS_SETUID                 = 146\n\tSYS_SETRESUID              = 147\n\tSYS_GETRESUID              = 148\n\tSYS_SETRESGID              = 149\n\tSYS_GETRESGID              = 150\n\tSYS_SETFSUID               = 151\n\tSYS_SETFSGID               = 152\n\tSYS_TIMES                  = 153\n\tSYS_SETPGID                = 154\n\tSYS_GETPGID                = 155\n\tSYS_GETSID                 = 156\n\tSYS_SETSID                 = 157\n\tSYS_GETGROUPS              = 158\n\tSYS_SETGROUPS              = 159\n\tSYS_UNAME                  = 160\n\tSYS_SETHOSTNAME            = 161\n\tSYS_SETDOMAINNAME          = 162\n\tSYS_GETRLIMIT              = 163\n\tSYS_SETRLIMIT              = 164\n\tSYS_GETRUSAGE              = 165\n\tSYS_UMASK                  = 166\n\tSYS_PRCTL                  = 167\n\tSYS_GETCPU                 = 168\n\tSYS_GETTIMEOFDAY           = 169\n\tSYS_SETTIMEOFDAY           = 170\n\tSYS_ADJTIMEX               = 171\n\tSYS_GETPID                 = 172\n\tSYS_GETPPID                = 173\n\tSYS_GETUID                 = 174\n\tSYS_GETEUID                = 175\n\tSYS_GETGID                 = 176\n\tSYS_GETEGID                = 177\n\tSYS_GETTID                 = 178\n\tSYS_SYSINFO                = 179\n\tSYS_MQ_OPEN                = 180\n\tSYS_MQ_UNLINK              = 181\n\tSYS_MQ_TIMEDSEND           = 182\n\tSYS_MQ_TIMEDRECEIVE        = 183\n\tSYS_MQ_NOTIFY              = 184\n\tSYS_MQ_GETSETATTR          = 185\n\tSYS_MSGGET                 = 186\n\tSYS_MSGCTL                 = 187\n\tSYS_MSGRCV                 = 188\n\tSYS_MSGSND                 = 189\n\tSYS_SEMGET                 = 190\n\tSYS_SEMCTL                 = 191\n\tSYS_SEMTIMEDOP             = 192\n\tSYS_SEMOP                  = 193\n\tSYS_SHMGET                 = 194\n\tSYS_SHMCTL                 = 195\n\tSYS_SHMAT                  = 196\n\tSYS_SHMDT                  = 197\n\tSYS_SOCKET                 = 198\n\tSYS_SOCKETPAIR             = 199\n\tSYS_BIND                   = 200\n\tSYS_LISTEN                 = 201\n\tSYS_ACCEPT                 = 202\n\tSYS_CONNECT                = 203\n\tSYS_GETSOCKNAME            = 204\n\tSYS_GETPEERNAME            = 205\n\tSYS_SENDTO                 = 206\n\tSYS_RECVFROM               = 207\n\tSYS_SETSOCKOPT             = 208\n\tSYS_GETSOCKOPT             = 209\n\tSYS_SHUTDOWN               = 210\n\tSYS_SENDMSG                = 211\n\tSYS_RECVMSG                = 212\n\tSYS_READAHEAD              = 213\n\tSYS_BRK                    = 214\n\tSYS_MUNMAP                 = 215\n\tSYS_MREMAP                 = 216\n\tSYS_ADD_KEY                = 217\n\tSYS_REQUEST_KEY            = 218\n\tSYS_KEYCTL                 = 219\n\tSYS_CLONE                  = 220\n\tSYS_EXECVE                 = 221\n\tSYS_MMAP                   = 222\n\tSYS_FADVISE64              = 223\n\tSYS_SWAPON                 = 224\n\tSYS_SWAPOFF                = 225\n\tSYS_MPROTECT               = 226\n\tSYS_MSYNC                  = 227\n\tSYS_MLOCK                  = 228\n\tSYS_MUNLOCK                = 229\n\tSYS_MLOCKALL               = 230\n\tSYS_MUNLOCKALL             = 231\n\tSYS_MINCORE                = 232\n\tSYS_MADVISE                = 233\n\tSYS_REMAP_FILE_PAGES       = 234\n\tSYS_MBIND                  = 235\n\tSYS_GET_MEMPOLICY          = 236\n\tSYS_SET_MEMPOLICY          = 237\n\tSYS_MIGRATE_PAGES          = 238\n\tSYS_MOVE_PAGES             = 239\n\tSYS_RT_TGSIGQUEUEINFO      = 240\n\tSYS_PERF_EVENT_OPEN        = 241\n\tSYS_ACCEPT4                = 242\n\tSYS_RECVMMSG               = 243\n\tSYS_ARCH_SPECIFIC_SYSCALL  = 244\n\tSYS_WAIT4                  = 260\n\tSYS_PRLIMIT64              = 261\n\tSYS_FANOTIFY_INIT          = 262\n\tSYS_FANOTIFY_MARK          = 263\n\tSYS_NAME_TO_HANDLE_AT      = 264\n\tSYS_OPEN_BY_HANDLE_AT      = 265\n\tSYS_CLOCK_ADJTIME          = 266\n\tSYS_SYNCFS                 = 267\n\tSYS_SETNS                  = 268\n\tSYS_SENDMMSG               = 269\n\tSYS_PROCESS_VM_READV       = 270\n\tSYS_PROCESS_VM_WRITEV      = 271\n\tSYS_KCMP                   = 272\n\tSYS_FINIT_MODULE           = 273\n\tSYS_SCHED_SETATTR          = 274\n\tSYS_SCHED_GETATTR          = 275\n\tSYS_RENAMEAT2              = 276\n\tSYS_SECCOMP                = 277\n\tSYS_GETRANDOM              = 278\n\tSYS_MEMFD_CREATE           = 279\n\tSYS_BPF                    = 280\n\tSYS_EXECVEAT               = 281\n\tSYS_USERFAULTFD            = 282\n\tSYS_MEMBARRIER             = 283\n\tSYS_MLOCK2                 = 284\n\tSYS_COPY_FILE_RANGE        = 285\n\tSYS_PREADV2                = 286\n\tSYS_PWRITEV2               = 287\n\tSYS_PKEY_MPROTECT          = 288\n\tSYS_PKEY_ALLOC             = 289\n\tSYS_PKEY_FREE              = 290\n\tSYS_STATX                  = 291\n\tSYS_IO_PGETEVENTS          = 292\n\tSYS_RSEQ                   = 293\n\tSYS_KEXEC_FILE_LOAD        = 294\n\tSYS_PIDFD_SEND_SIGNAL      = 424\n\tSYS_IO_URING_SETUP         = 425\n\tSYS_IO_URING_ENTER         = 426\n\tSYS_IO_URING_REGISTER      = 427\n\tSYS_OPEN_TREE              = 428\n\tSYS_MOVE_MOUNT             = 429\n\tSYS_FSOPEN                 = 430\n\tSYS_FSCONFIG               = 431\n\tSYS_FSMOUNT                = 432\n\tSYS_FSPICK                 = 433\n\tSYS_PIDFD_OPEN             = 434\n\tSYS_CLONE3                 = 435\n\tSYS_OPENAT2                = 437\n\tSYS_PIDFD_GETFD            = 438\n\tSYS_FACCESSAT2             = 439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include -fsigned-char /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build s390x,linux\n\npackage unix\n\nconst (\n\tSYS_EXIT                   = 1\n\tSYS_FORK                   = 2\n\tSYS_READ                   = 3\n\tSYS_WRITE                  = 4\n\tSYS_OPEN                   = 5\n\tSYS_CLOSE                  = 6\n\tSYS_RESTART_SYSCALL        = 7\n\tSYS_CREAT                  = 8\n\tSYS_LINK                   = 9\n\tSYS_UNLINK                 = 10\n\tSYS_EXECVE                 = 11\n\tSYS_CHDIR                  = 12\n\tSYS_MKNOD                  = 14\n\tSYS_CHMOD                  = 15\n\tSYS_LSEEK                  = 19\n\tSYS_GETPID                 = 20\n\tSYS_MOUNT                  = 21\n\tSYS_UMOUNT                 = 22\n\tSYS_PTRACE                 = 26\n\tSYS_ALARM                  = 27\n\tSYS_PAUSE                  = 29\n\tSYS_UTIME                  = 30\n\tSYS_ACCESS                 = 33\n\tSYS_NICE                   = 34\n\tSYS_SYNC                   = 36\n\tSYS_KILL                   = 37\n\tSYS_RENAME                 = 38\n\tSYS_MKDIR                  = 39\n\tSYS_RMDIR                  = 40\n\tSYS_DUP                    = 41\n\tSYS_PIPE                   = 42\n\tSYS_TIMES                  = 43\n\tSYS_BRK                    = 45\n\tSYS_SIGNAL                 = 48\n\tSYS_ACCT                   = 51\n\tSYS_UMOUNT2                = 52\n\tSYS_IOCTL                  = 54\n\tSYS_FCNTL                  = 55\n\tSYS_SETPGID                = 57\n\tSYS_UMASK                  = 60\n\tSYS_CHROOT                 = 61\n\tSYS_USTAT                  = 62\n\tSYS_DUP2                   = 63\n\tSYS_GETPPID                = 64\n\tSYS_GETPGRP                = 65\n\tSYS_SETSID                 = 66\n\tSYS_SIGACTION              = 67\n\tSYS_SIGSUSPEND             = 72\n\tSYS_SIGPENDING             = 73\n\tSYS_SETHOSTNAME            = 74\n\tSYS_SETRLIMIT              = 75\n\tSYS_GETRUSAGE              = 77\n\tSYS_GETTIMEOFDAY           = 78\n\tSYS_SETTIMEOFDAY           = 79\n\tSYS_SYMLINK                = 83\n\tSYS_READLINK               = 85\n\tSYS_USELIB                 = 86\n\tSYS_SWAPON                 = 87\n\tSYS_REBOOT                 = 88\n\tSYS_READDIR                = 89\n\tSYS_MMAP                   = 90\n\tSYS_MUNMAP                 = 91\n\tSYS_TRUNCATE               = 92\n\tSYS_FTRUNCATE              = 93\n\tSYS_FCHMOD                 = 94\n\tSYS_GETPRIORITY            = 96\n\tSYS_SETPRIORITY            = 97\n\tSYS_STATFS                 = 99\n\tSYS_FSTATFS                = 100\n\tSYS_SOCKETCALL             = 102\n\tSYS_SYSLOG                 = 103\n\tSYS_SETITIMER              = 104\n\tSYS_GETITIMER              = 105\n\tSYS_STAT                   = 106\n\tSYS_LSTAT                  = 107\n\tSYS_FSTAT                  = 108\n\tSYS_LOOKUP_DCOOKIE         = 110\n\tSYS_VHANGUP                = 111\n\tSYS_IDLE                   = 112\n\tSYS_WAIT4                  = 114\n\tSYS_SWAPOFF                = 115\n\tSYS_SYSINFO                = 116\n\tSYS_IPC                    = 117\n\tSYS_FSYNC                  = 118\n\tSYS_SIGRETURN              = 119\n\tSYS_CLONE                  = 120\n\tSYS_SETDOMAINNAME          = 121\n\tSYS_UNAME                  = 122\n\tSYS_ADJTIMEX               = 124\n\tSYS_MPROTECT               = 125\n\tSYS_SIGPROCMASK            = 126\n\tSYS_CREATE_MODULE          = 127\n\tSYS_INIT_MODULE            = 128\n\tSYS_DELETE_MODULE          = 129\n\tSYS_GET_KERNEL_SYMS        = 130\n\tSYS_QUOTACTL               = 131\n\tSYS_GETPGID                = 132\n\tSYS_FCHDIR                 = 133\n\tSYS_BDFLUSH                = 134\n\tSYS_SYSFS                  = 135\n\tSYS_PERSONALITY            = 136\n\tSYS_AFS_SYSCALL            = 137\n\tSYS_GETDENTS               = 141\n\tSYS_SELECT                 = 142\n\tSYS_FLOCK                  = 143\n\tSYS_MSYNC                  = 144\n\tSYS_READV                  = 145\n\tSYS_WRITEV                 = 146\n\tSYS_GETSID                 = 147\n\tSYS_FDATASYNC              = 148\n\tSYS__SYSCTL                = 149\n\tSYS_MLOCK                  = 150\n\tSYS_MUNLOCK                = 151\n\tSYS_MLOCKALL               = 152\n\tSYS_MUNLOCKALL             = 153\n\tSYS_SCHED_SETPARAM         = 154\n\tSYS_SCHED_GETPARAM         = 155\n\tSYS_SCHED_SETSCHEDULER     = 156\n\tSYS_SCHED_GETSCHEDULER     = 157\n\tSYS_SCHED_YIELD            = 158\n\tSYS_SCHED_GET_PRIORITY_MAX = 159\n\tSYS_SCHED_GET_PRIORITY_MIN = 160\n\tSYS_SCHED_RR_GET_INTERVAL  = 161\n\tSYS_NANOSLEEP              = 162\n\tSYS_MREMAP                 = 163\n\tSYS_QUERY_MODULE           = 167\n\tSYS_POLL                   = 168\n\tSYS_NFSSERVCTL             = 169\n\tSYS_PRCTL                  = 172\n\tSYS_RT_SIGRETURN           = 173\n\tSYS_RT_SIGACTION           = 174\n\tSYS_RT_SIGPROCMASK         = 175\n\tSYS_RT_SIGPENDING          = 176\n\tSYS_RT_SIGTIMEDWAIT        = 177\n\tSYS_RT_SIGQUEUEINFO        = 178\n\tSYS_RT_SIGSUSPEND          = 179\n\tSYS_PREAD64                = 180\n\tSYS_PWRITE64               = 181\n\tSYS_GETCWD                 = 183\n\tSYS_CAPGET                 = 184\n\tSYS_CAPSET                 = 185\n\tSYS_SIGALTSTACK            = 186\n\tSYS_SENDFILE               = 187\n\tSYS_GETPMSG                = 188\n\tSYS_PUTPMSG                = 189\n\tSYS_VFORK                  = 190\n\tSYS_GETRLIMIT              = 191\n\tSYS_LCHOWN                 = 198\n\tSYS_GETUID                 = 199\n\tSYS_GETGID                 = 200\n\tSYS_GETEUID                = 201\n\tSYS_GETEGID                = 202\n\tSYS_SETREUID               = 203\n\tSYS_SETREGID               = 204\n\tSYS_GETGROUPS              = 205\n\tSYS_SETGROUPS              = 206\n\tSYS_FCHOWN                 = 207\n\tSYS_SETRESUID              = 208\n\tSYS_GETRESUID              = 209\n\tSYS_SETRESGID              = 210\n\tSYS_GETRESGID              = 211\n\tSYS_CHOWN                  = 212\n\tSYS_SETUID                 = 213\n\tSYS_SETGID                 = 214\n\tSYS_SETFSUID               = 215\n\tSYS_SETFSGID               = 216\n\tSYS_PIVOT_ROOT             = 217\n\tSYS_MINCORE                = 218\n\tSYS_MADVISE                = 219\n\tSYS_GETDENTS64             = 220\n\tSYS_READAHEAD              = 222\n\tSYS_SETXATTR               = 224\n\tSYS_LSETXATTR              = 225\n\tSYS_FSETXATTR              = 226\n\tSYS_GETXATTR               = 227\n\tSYS_LGETXATTR              = 228\n\tSYS_FGETXATTR              = 229\n\tSYS_LISTXATTR              = 230\n\tSYS_LLISTXATTR             = 231\n\tSYS_FLISTXATTR             = 232\n\tSYS_REMOVEXATTR            = 233\n\tSYS_LREMOVEXATTR           = 234\n\tSYS_FREMOVEXATTR           = 235\n\tSYS_GETTID                 = 236\n\tSYS_TKILL                  = 237\n\tSYS_FUTEX                  = 238\n\tSYS_SCHED_SETAFFINITY      = 239\n\tSYS_SCHED_GETAFFINITY      = 240\n\tSYS_TGKILL                 = 241\n\tSYS_IO_SETUP               = 243\n\tSYS_IO_DESTROY             = 244\n\tSYS_IO_GETEVENTS           = 245\n\tSYS_IO_SUBMIT              = 246\n\tSYS_IO_CANCEL              = 247\n\tSYS_EXIT_GROUP             = 248\n\tSYS_EPOLL_CREATE           = 249\n\tSYS_EPOLL_CTL              = 250\n\tSYS_EPOLL_WAIT             = 251\n\tSYS_SET_TID_ADDRESS        = 252\n\tSYS_FADVISE64              = 253\n\tSYS_TIMER_CREATE           = 254\n\tSYS_TIMER_SETTIME          = 255\n\tSYS_TIMER_GETTIME          = 256\n\tSYS_TIMER_GETOVERRUN       = 257\n\tSYS_TIMER_DELETE           = 258\n\tSYS_CLOCK_SETTIME          = 259\n\tSYS_CLOCK_GETTIME          = 260\n\tSYS_CLOCK_GETRES           = 261\n\tSYS_CLOCK_NANOSLEEP        = 262\n\tSYS_STATFS64               = 265\n\tSYS_FSTATFS64              = 266\n\tSYS_REMAP_FILE_PAGES       = 267\n\tSYS_MBIND                  = 268\n\tSYS_GET_MEMPOLICY          = 269\n\tSYS_SET_MEMPOLICY          = 270\n\tSYS_MQ_OPEN                = 271\n\tSYS_MQ_UNLINK              = 272\n\tSYS_MQ_TIMEDSEND           = 273\n\tSYS_MQ_TIMEDRECEIVE        = 274\n\tSYS_MQ_NOTIFY              = 275\n\tSYS_MQ_GETSETATTR          = 276\n\tSYS_KEXEC_LOAD             = 277\n\tSYS_ADD_KEY                = 278\n\tSYS_REQUEST_KEY            = 279\n\tSYS_KEYCTL                 = 280\n\tSYS_WAITID                 = 281\n\tSYS_IOPRIO_SET             = 282\n\tSYS_IOPRIO_GET             = 283\n\tSYS_INOTIFY_INIT           = 284\n\tSYS_INOTIFY_ADD_WATCH      = 285\n\tSYS_INOTIFY_RM_WATCH       = 286\n\tSYS_MIGRATE_PAGES          = 287\n\tSYS_OPENAT                 = 288\n\tSYS_MKDIRAT                = 289\n\tSYS_MKNODAT                = 290\n\tSYS_FCHOWNAT               = 291\n\tSYS_FUTIMESAT              = 292\n\tSYS_NEWFSTATAT             = 293\n\tSYS_UNLINKAT               = 294\n\tSYS_RENAMEAT               = 295\n\tSYS_LINKAT                 = 296\n\tSYS_SYMLINKAT              = 297\n\tSYS_READLINKAT             = 298\n\tSYS_FCHMODAT               = 299\n\tSYS_FACCESSAT              = 300\n\tSYS_PSELECT6               = 301\n\tSYS_PPOLL                  = 302\n\tSYS_UNSHARE                = 303\n\tSYS_SET_ROBUST_LIST        = 304\n\tSYS_GET_ROBUST_LIST        = 305\n\tSYS_SPLICE                 = 306\n\tSYS_SYNC_FILE_RANGE        = 307\n\tSYS_TEE                    = 308\n\tSYS_VMSPLICE               = 309\n\tSYS_MOVE_PAGES             = 310\n\tSYS_GETCPU                 = 311\n\tSYS_EPOLL_PWAIT            = 312\n\tSYS_UTIMES                 = 313\n\tSYS_FALLOCATE              = 314\n\tSYS_UTIMENSAT              = 315\n\tSYS_SIGNALFD               = 316\n\tSYS_TIMERFD                = 317\n\tSYS_EVENTFD                = 318\n\tSYS_TIMERFD_CREATE         = 319\n\tSYS_TIMERFD_SETTIME        = 320\n\tSYS_TIMERFD_GETTIME        = 321\n\tSYS_SIGNALFD4              = 322\n\tSYS_EVENTFD2               = 323\n\tSYS_INOTIFY_INIT1          = 324\n\tSYS_PIPE2                  = 325\n\tSYS_DUP3                   = 326\n\tSYS_EPOLL_CREATE1          = 327\n\tSYS_PREADV                 = 328\n\tSYS_PWRITEV                = 329\n\tSYS_RT_TGSIGQUEUEINFO      = 330\n\tSYS_PERF_EVENT_OPEN        = 331\n\tSYS_FANOTIFY_INIT          = 332\n\tSYS_FANOTIFY_MARK          = 333\n\tSYS_PRLIMIT64              = 334\n\tSYS_NAME_TO_HANDLE_AT      = 335\n\tSYS_OPEN_BY_HANDLE_AT      = 336\n\tSYS_CLOCK_ADJTIME          = 337\n\tSYS_SYNCFS                 = 338\n\tSYS_SETNS                  = 339\n\tSYS_PROCESS_VM_READV       = 340\n\tSYS_PROCESS_VM_WRITEV      = 341\n\tSYS_S390_RUNTIME_INSTR     = 342\n\tSYS_KCMP                   = 343\n\tSYS_FINIT_MODULE           = 344\n\tSYS_SCHED_SETATTR          = 345\n\tSYS_SCHED_GETATTR          = 346\n\tSYS_RENAMEAT2              = 347\n\tSYS_SECCOMP                = 348\n\tSYS_GETRANDOM              = 349\n\tSYS_MEMFD_CREATE           = 350\n\tSYS_BPF                    = 351\n\tSYS_S390_PCI_MMIO_WRITE    = 352\n\tSYS_S390_PCI_MMIO_READ     = 353\n\tSYS_EXECVEAT               = 354\n\tSYS_USERFAULTFD            = 355\n\tSYS_MEMBARRIER             = 356\n\tSYS_RECVMMSG               = 357\n\tSYS_SENDMMSG               = 358\n\tSYS_SOCKET                 = 359\n\tSYS_SOCKETPAIR             = 360\n\tSYS_BIND                   = 361\n\tSYS_CONNECT                = 362\n\tSYS_LISTEN                 = 363\n\tSYS_ACCEPT4                = 364\n\tSYS_GETSOCKOPT             = 365\n\tSYS_SETSOCKOPT             = 366\n\tSYS_GETSOCKNAME            = 367\n\tSYS_GETPEERNAME            = 368\n\tSYS_SENDTO                 = 369\n\tSYS_SENDMSG                = 370\n\tSYS_RECVFROM               = 371\n\tSYS_RECVMSG                = 372\n\tSYS_SHUTDOWN               = 373\n\tSYS_MLOCK2                 = 374\n\tSYS_COPY_FILE_RANGE        = 375\n\tSYS_PREADV2                = 376\n\tSYS_PWRITEV2               = 377\n\tSYS_S390_GUARDED_STORAGE   = 378\n\tSYS_STATX                  = 379\n\tSYS_S390_STHYI             = 380\n\tSYS_KEXEC_FILE_LOAD        = 381\n\tSYS_IO_PGETEVENTS          = 382\n\tSYS_RSEQ                   = 383\n\tSYS_PKEY_MPROTECT          = 384\n\tSYS_PKEY_ALLOC             = 385\n\tSYS_PKEY_FREE              = 386\n\tSYS_SEMTIMEDOP             = 392\n\tSYS_SEMGET                 = 393\n\tSYS_SEMCTL                 = 394\n\tSYS_SHMGET                 = 395\n\tSYS_SHMCTL                 = 396\n\tSYS_SHMAT                  = 397\n\tSYS_SHMDT                  = 398\n\tSYS_MSGGET                 = 399\n\tSYS_MSGSND                 = 400\n\tSYS_MSGRCV                 = 401\n\tSYS_MSGCTL                 = 402\n\tSYS_PIDFD_SEND_SIGNAL      = 424\n\tSYS_IO_URING_SETUP         = 425\n\tSYS_IO_URING_ENTER         = 426\n\tSYS_IO_URING_REGISTER      = 427\n\tSYS_OPEN_TREE              = 428\n\tSYS_MOVE_MOUNT             = 429\n\tSYS_FSOPEN                 = 430\n\tSYS_FSCONFIG               = 431\n\tSYS_FSMOUNT                = 432\n\tSYS_FSPICK                 = 433\n\tSYS_PIDFD_OPEN             = 434\n\tSYS_CLONE3                 = 435\n\tSYS_OPENAT2                = 437\n\tSYS_PIDFD_GETFD            = 438\n\tSYS_FACCESSAT2             = 439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go",
    "content": "// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build sparc64,linux\n\npackage unix\n\nconst (\n\tSYS_RESTART_SYSCALL        = 0\n\tSYS_EXIT                   = 1\n\tSYS_FORK                   = 2\n\tSYS_READ                   = 3\n\tSYS_WRITE                  = 4\n\tSYS_OPEN                   = 5\n\tSYS_CLOSE                  = 6\n\tSYS_WAIT4                  = 7\n\tSYS_CREAT                  = 8\n\tSYS_LINK                   = 9\n\tSYS_UNLINK                 = 10\n\tSYS_EXECV                  = 11\n\tSYS_CHDIR                  = 12\n\tSYS_CHOWN                  = 13\n\tSYS_MKNOD                  = 14\n\tSYS_CHMOD                  = 15\n\tSYS_LCHOWN                 = 16\n\tSYS_BRK                    = 17\n\tSYS_PERFCTR                = 18\n\tSYS_LSEEK                  = 19\n\tSYS_GETPID                 = 20\n\tSYS_CAPGET                 = 21\n\tSYS_CAPSET                 = 22\n\tSYS_SETUID                 = 23\n\tSYS_GETUID                 = 24\n\tSYS_VMSPLICE               = 25\n\tSYS_PTRACE                 = 26\n\tSYS_ALARM                  = 27\n\tSYS_SIGALTSTACK            = 28\n\tSYS_PAUSE                  = 29\n\tSYS_UTIME                  = 30\n\tSYS_ACCESS                 = 33\n\tSYS_NICE                   = 34\n\tSYS_SYNC                   = 36\n\tSYS_KILL                   = 37\n\tSYS_STAT                   = 38\n\tSYS_SENDFILE               = 39\n\tSYS_LSTAT                  = 40\n\tSYS_DUP                    = 41\n\tSYS_PIPE                   = 42\n\tSYS_TIMES                  = 43\n\tSYS_UMOUNT2                = 45\n\tSYS_SETGID                 = 46\n\tSYS_GETGID                 = 47\n\tSYS_SIGNAL                 = 48\n\tSYS_GETEUID                = 49\n\tSYS_GETEGID                = 50\n\tSYS_ACCT                   = 51\n\tSYS_MEMORY_ORDERING        = 52\n\tSYS_IOCTL                  = 54\n\tSYS_REBOOT                 = 55\n\tSYS_SYMLINK                = 57\n\tSYS_READLINK               = 58\n\tSYS_EXECVE                 = 59\n\tSYS_UMASK                  = 60\n\tSYS_CHROOT                 = 61\n\tSYS_FSTAT                  = 62\n\tSYS_FSTAT64                = 63\n\tSYS_GETPAGESIZE            = 64\n\tSYS_MSYNC                  = 65\n\tSYS_VFORK                  = 66\n\tSYS_PREAD64                = 67\n\tSYS_PWRITE64               = 68\n\tSYS_MMAP                   = 71\n\tSYS_MUNMAP                 = 73\n\tSYS_MPROTECT               = 74\n\tSYS_MADVISE                = 75\n\tSYS_VHANGUP                = 76\n\tSYS_MINCORE                = 78\n\tSYS_GETGROUPS              = 79\n\tSYS_SETGROUPS              = 80\n\tSYS_GETPGRP                = 81\n\tSYS_SETITIMER              = 83\n\tSYS_SWAPON                 = 85\n\tSYS_GETITIMER              = 86\n\tSYS_SETHOSTNAME            = 88\n\tSYS_DUP2                   = 90\n\tSYS_FCNTL                  = 92\n\tSYS_SELECT                 = 93\n\tSYS_FSYNC                  = 95\n\tSYS_SETPRIORITY            = 96\n\tSYS_SOCKET                 = 97\n\tSYS_CONNECT                = 98\n\tSYS_ACCEPT                 = 99\n\tSYS_GETPRIORITY            = 100\n\tSYS_RT_SIGRETURN           = 101\n\tSYS_RT_SIGACTION           = 102\n\tSYS_RT_SIGPROCMASK         = 103\n\tSYS_RT_SIGPENDING          = 104\n\tSYS_RT_SIGTIMEDWAIT        = 105\n\tSYS_RT_SIGQUEUEINFO        = 106\n\tSYS_RT_SIGSUSPEND          = 107\n\tSYS_SETRESUID              = 108\n\tSYS_GETRESUID              = 109\n\tSYS_SETRESGID              = 110\n\tSYS_GETRESGID              = 111\n\tSYS_RECVMSG                = 113\n\tSYS_SENDMSG                = 114\n\tSYS_GETTIMEOFDAY           = 116\n\tSYS_GETRUSAGE              = 117\n\tSYS_GETSOCKOPT             = 118\n\tSYS_GETCWD                 = 119\n\tSYS_READV                  = 120\n\tSYS_WRITEV                 = 121\n\tSYS_SETTIMEOFDAY           = 122\n\tSYS_FCHOWN                 = 123\n\tSYS_FCHMOD                 = 124\n\tSYS_RECVFROM               = 125\n\tSYS_SETREUID               = 126\n\tSYS_SETREGID               = 127\n\tSYS_RENAME                 = 128\n\tSYS_TRUNCATE               = 129\n\tSYS_FTRUNCATE              = 130\n\tSYS_FLOCK                  = 131\n\tSYS_LSTAT64                = 132\n\tSYS_SENDTO                 = 133\n\tSYS_SHUTDOWN               = 134\n\tSYS_SOCKETPAIR             = 135\n\tSYS_MKDIR                  = 136\n\tSYS_RMDIR                  = 137\n\tSYS_UTIMES                 = 138\n\tSYS_STAT64                 = 139\n\tSYS_SENDFILE64             = 140\n\tSYS_GETPEERNAME            = 141\n\tSYS_FUTEX                  = 142\n\tSYS_GETTID                 = 143\n\tSYS_GETRLIMIT              = 144\n\tSYS_SETRLIMIT              = 145\n\tSYS_PIVOT_ROOT             = 146\n\tSYS_PRCTL                  = 147\n\tSYS_PCICONFIG_READ         = 148\n\tSYS_PCICONFIG_WRITE        = 149\n\tSYS_GETSOCKNAME            = 150\n\tSYS_INOTIFY_INIT           = 151\n\tSYS_INOTIFY_ADD_WATCH      = 152\n\tSYS_POLL                   = 153\n\tSYS_GETDENTS64             = 154\n\tSYS_INOTIFY_RM_WATCH       = 156\n\tSYS_STATFS                 = 157\n\tSYS_FSTATFS                = 158\n\tSYS_UMOUNT                 = 159\n\tSYS_SCHED_SET_AFFINITY     = 160\n\tSYS_SCHED_GET_AFFINITY     = 161\n\tSYS_GETDOMAINNAME          = 162\n\tSYS_SETDOMAINNAME          = 163\n\tSYS_UTRAP_INSTALL          = 164\n\tSYS_QUOTACTL               = 165\n\tSYS_SET_TID_ADDRESS        = 166\n\tSYS_MOUNT                  = 167\n\tSYS_USTAT                  = 168\n\tSYS_SETXATTR               = 169\n\tSYS_LSETXATTR              = 170\n\tSYS_FSETXATTR              = 171\n\tSYS_GETXATTR               = 172\n\tSYS_LGETXATTR              = 173\n\tSYS_GETDENTS               = 174\n\tSYS_SETSID                 = 175\n\tSYS_FCHDIR                 = 176\n\tSYS_FGETXATTR              = 177\n\tSYS_LISTXATTR              = 178\n\tSYS_LLISTXATTR             = 179\n\tSYS_FLISTXATTR             = 180\n\tSYS_REMOVEXATTR            = 181\n\tSYS_LREMOVEXATTR           = 182\n\tSYS_SIGPENDING             = 183\n\tSYS_QUERY_MODULE           = 184\n\tSYS_SETPGID                = 185\n\tSYS_FREMOVEXATTR           = 186\n\tSYS_TKILL                  = 187\n\tSYS_EXIT_GROUP             = 188\n\tSYS_UNAME                  = 189\n\tSYS_INIT_MODULE            = 190\n\tSYS_PERSONALITY            = 191\n\tSYS_REMAP_FILE_PAGES       = 192\n\tSYS_EPOLL_CREATE           = 193\n\tSYS_EPOLL_CTL              = 194\n\tSYS_EPOLL_WAIT             = 195\n\tSYS_IOPRIO_SET             = 196\n\tSYS_GETPPID                = 197\n\tSYS_SIGACTION              = 198\n\tSYS_SGETMASK               = 199\n\tSYS_SSETMASK               = 200\n\tSYS_SIGSUSPEND             = 201\n\tSYS_OLDLSTAT               = 202\n\tSYS_USELIB                 = 203\n\tSYS_READDIR                = 204\n\tSYS_READAHEAD              = 205\n\tSYS_SOCKETCALL             = 206\n\tSYS_SYSLOG                 = 207\n\tSYS_LOOKUP_DCOOKIE         = 208\n\tSYS_FADVISE64              = 209\n\tSYS_FADVISE64_64           = 210\n\tSYS_TGKILL                 = 211\n\tSYS_WAITPID                = 212\n\tSYS_SWAPOFF                = 213\n\tSYS_SYSINFO                = 214\n\tSYS_IPC                    = 215\n\tSYS_SIGRETURN              = 216\n\tSYS_CLONE                  = 217\n\tSYS_IOPRIO_GET             = 218\n\tSYS_ADJTIMEX               = 219\n\tSYS_SIGPROCMASK            = 220\n\tSYS_CREATE_MODULE          = 221\n\tSYS_DELETE_MODULE          = 222\n\tSYS_GET_KERNEL_SYMS        = 223\n\tSYS_GETPGID                = 224\n\tSYS_BDFLUSH                = 225\n\tSYS_SYSFS                  = 226\n\tSYS_AFS_SYSCALL            = 227\n\tSYS_SETFSUID               = 228\n\tSYS_SETFSGID               = 229\n\tSYS__NEWSELECT             = 230\n\tSYS_SPLICE                 = 232\n\tSYS_STIME                  = 233\n\tSYS_STATFS64               = 234\n\tSYS_FSTATFS64              = 235\n\tSYS__LLSEEK                = 236\n\tSYS_MLOCK                  = 237\n\tSYS_MUNLOCK                = 238\n\tSYS_MLOCKALL               = 239\n\tSYS_MUNLOCKALL             = 240\n\tSYS_SCHED_SETPARAM         = 241\n\tSYS_SCHED_GETPARAM         = 242\n\tSYS_SCHED_SETSCHEDULER     = 243\n\tSYS_SCHED_GETSCHEDULER     = 244\n\tSYS_SCHED_YIELD            = 245\n\tSYS_SCHED_GET_PRIORITY_MAX = 246\n\tSYS_SCHED_GET_PRIORITY_MIN = 247\n\tSYS_SCHED_RR_GET_INTERVAL  = 248\n\tSYS_NANOSLEEP              = 249\n\tSYS_MREMAP                 = 250\n\tSYS__SYSCTL                = 251\n\tSYS_GETSID                 = 252\n\tSYS_FDATASYNC              = 253\n\tSYS_NFSSERVCTL             = 254\n\tSYS_SYNC_FILE_RANGE        = 255\n\tSYS_CLOCK_SETTIME          = 256\n\tSYS_CLOCK_GETTIME          = 257\n\tSYS_CLOCK_GETRES           = 258\n\tSYS_CLOCK_NANOSLEEP        = 259\n\tSYS_SCHED_GETAFFINITY      = 260\n\tSYS_SCHED_SETAFFINITY      = 261\n\tSYS_TIMER_SETTIME          = 262\n\tSYS_TIMER_GETTIME          = 263\n\tSYS_TIMER_GETOVERRUN       = 264\n\tSYS_TIMER_DELETE           = 265\n\tSYS_TIMER_CREATE           = 266\n\tSYS_VSERVER                = 267\n\tSYS_IO_SETUP               = 268\n\tSYS_IO_DESTROY             = 269\n\tSYS_IO_SUBMIT              = 270\n\tSYS_IO_CANCEL              = 271\n\tSYS_IO_GETEVENTS           = 272\n\tSYS_MQ_OPEN                = 273\n\tSYS_MQ_UNLINK              = 274\n\tSYS_MQ_TIMEDSEND           = 275\n\tSYS_MQ_TIMEDRECEIVE        = 276\n\tSYS_MQ_NOTIFY              = 277\n\tSYS_MQ_GETSETATTR          = 278\n\tSYS_WAITID                 = 279\n\tSYS_TEE                    = 280\n\tSYS_ADD_KEY                = 281\n\tSYS_REQUEST_KEY            = 282\n\tSYS_KEYCTL                 = 283\n\tSYS_OPENAT                 = 284\n\tSYS_MKDIRAT                = 285\n\tSYS_MKNODAT                = 286\n\tSYS_FCHOWNAT               = 287\n\tSYS_FUTIMESAT              = 288\n\tSYS_FSTATAT64              = 289\n\tSYS_UNLINKAT               = 290\n\tSYS_RENAMEAT               = 291\n\tSYS_LINKAT                 = 292\n\tSYS_SYMLINKAT              = 293\n\tSYS_READLINKAT             = 294\n\tSYS_FCHMODAT               = 295\n\tSYS_FACCESSAT              = 296\n\tSYS_PSELECT6               = 297\n\tSYS_PPOLL                  = 298\n\tSYS_UNSHARE                = 299\n\tSYS_SET_ROBUST_LIST        = 300\n\tSYS_GET_ROBUST_LIST        = 301\n\tSYS_MIGRATE_PAGES          = 302\n\tSYS_MBIND                  = 303\n\tSYS_GET_MEMPOLICY          = 304\n\tSYS_SET_MEMPOLICY          = 305\n\tSYS_KEXEC_LOAD             = 306\n\tSYS_MOVE_PAGES             = 307\n\tSYS_GETCPU                 = 308\n\tSYS_EPOLL_PWAIT            = 309\n\tSYS_UTIMENSAT              = 310\n\tSYS_SIGNALFD               = 311\n\tSYS_TIMERFD_CREATE         = 312\n\tSYS_EVENTFD                = 313\n\tSYS_FALLOCATE              = 314\n\tSYS_TIMERFD_SETTIME        = 315\n\tSYS_TIMERFD_GETTIME        = 316\n\tSYS_SIGNALFD4              = 317\n\tSYS_EVENTFD2               = 318\n\tSYS_EPOLL_CREATE1          = 319\n\tSYS_DUP3                   = 320\n\tSYS_PIPE2                  = 321\n\tSYS_INOTIFY_INIT1          = 322\n\tSYS_ACCEPT4                = 323\n\tSYS_PREADV                 = 324\n\tSYS_PWRITEV                = 325\n\tSYS_RT_TGSIGQUEUEINFO      = 326\n\tSYS_PERF_EVENT_OPEN        = 327\n\tSYS_RECVMMSG               = 328\n\tSYS_FANOTIFY_INIT          = 329\n\tSYS_FANOTIFY_MARK          = 330\n\tSYS_PRLIMIT64              = 331\n\tSYS_NAME_TO_HANDLE_AT      = 332\n\tSYS_OPEN_BY_HANDLE_AT      = 333\n\tSYS_CLOCK_ADJTIME          = 334\n\tSYS_SYNCFS                 = 335\n\tSYS_SENDMMSG               = 336\n\tSYS_SETNS                  = 337\n\tSYS_PROCESS_VM_READV       = 338\n\tSYS_PROCESS_VM_WRITEV      = 339\n\tSYS_KERN_FEATURES          = 340\n\tSYS_KCMP                   = 341\n\tSYS_FINIT_MODULE           = 342\n\tSYS_SCHED_SETATTR          = 343\n\tSYS_SCHED_GETATTR          = 344\n\tSYS_RENAMEAT2              = 345\n\tSYS_SECCOMP                = 346\n\tSYS_GETRANDOM              = 347\n\tSYS_MEMFD_CREATE           = 348\n\tSYS_BPF                    = 349\n\tSYS_EXECVEAT               = 350\n\tSYS_MEMBARRIER             = 351\n\tSYS_USERFAULTFD            = 352\n\tSYS_BIND                   = 353\n\tSYS_LISTEN                 = 354\n\tSYS_SETSOCKOPT             = 355\n\tSYS_MLOCK2                 = 356\n\tSYS_COPY_FILE_RANGE        = 357\n\tSYS_PREADV2                = 358\n\tSYS_PWRITEV2               = 359\n\tSYS_STATX                  = 360\n\tSYS_IO_PGETEVENTS          = 361\n\tSYS_PKEY_MPROTECT          = 362\n\tSYS_PKEY_ALLOC             = 363\n\tSYS_PKEY_FREE              = 364\n\tSYS_RSEQ                   = 365\n\tSYS_SEMTIMEDOP             = 392\n\tSYS_SEMGET                 = 393\n\tSYS_SEMCTL                 = 394\n\tSYS_SHMGET                 = 395\n\tSYS_SHMCTL                 = 396\n\tSYS_SHMAT                  = 397\n\tSYS_SHMDT                  = 398\n\tSYS_MSGGET                 = 399\n\tSYS_MSGSND                 = 400\n\tSYS_MSGRCV                 = 401\n\tSYS_MSGCTL                 = 402\n\tSYS_PIDFD_SEND_SIGNAL      = 424\n\tSYS_IO_URING_SETUP         = 425\n\tSYS_IO_URING_ENTER         = 426\n\tSYS_IO_URING_REGISTER      = 427\n\tSYS_OPEN_TREE              = 428\n\tSYS_MOVE_MOUNT             = 429\n\tSYS_FSOPEN                 = 430\n\tSYS_FSCONFIG               = 431\n\tSYS_FSMOUNT                = 432\n\tSYS_FSPICK                 = 433\n\tSYS_PIDFD_OPEN             = 434\n\tSYS_OPENAT2                = 437\n\tSYS_PIDFD_GETFD            = 438\n\tSYS_FACCESSAT2             = 439\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go",
    "content": "// go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,netbsd\n\npackage unix\n\nconst (\n\tSYS_EXIT                 = 1   // { void|sys||exit(int rval); }\n\tSYS_FORK                 = 2   // { int|sys||fork(void); }\n\tSYS_READ                 = 3   // { ssize_t|sys||read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE                = 4   // { ssize_t|sys||write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN                 = 5   // { int|sys||open(const char *path, int flags, ... mode_t mode); }\n\tSYS_CLOSE                = 6   // { int|sys||close(int fd); }\n\tSYS_LINK                 = 9   // { int|sys||link(const char *path, const char *link); }\n\tSYS_UNLINK               = 10  // { int|sys||unlink(const char *path); }\n\tSYS_CHDIR                = 12  // { int|sys||chdir(const char *path); }\n\tSYS_FCHDIR               = 13  // { int|sys||fchdir(int fd); }\n\tSYS_CHMOD                = 15  // { int|sys||chmod(const char *path, mode_t mode); }\n\tSYS_CHOWN                = 16  // { int|sys||chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_BREAK                = 17  // { int|sys||obreak(char *nsize); }\n\tSYS_GETPID               = 20  // { pid_t|sys||getpid_with_ppid(void); }\n\tSYS_UNMOUNT              = 22  // { int|sys||unmount(const char *path, int flags); }\n\tSYS_SETUID               = 23  // { int|sys||setuid(uid_t uid); }\n\tSYS_GETUID               = 24  // { uid_t|sys||getuid_with_euid(void); }\n\tSYS_GETEUID              = 25  // { uid_t|sys||geteuid(void); }\n\tSYS_PTRACE               = 26  // { int|sys||ptrace(int req, pid_t pid, void *addr, int data); }\n\tSYS_RECVMSG              = 27  // { ssize_t|sys||recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG              = 28  // { ssize_t|sys||sendmsg(int s, const struct msghdr *msg, int flags); }\n\tSYS_RECVFROM             = 29  // { ssize_t|sys||recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); }\n\tSYS_ACCEPT               = 30  // { int|sys||accept(int s, struct sockaddr *name, socklen_t *anamelen); }\n\tSYS_GETPEERNAME          = 31  // { int|sys||getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_GETSOCKNAME          = 32  // { int|sys||getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }\n\tSYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }\n\tSYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }\n\tSYS_SYNC                 = 36  // { void|sys||sync(void); }\n\tSYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }\n\tSYS_GETPPID              = 39  // { pid_t|sys||getppid(void); }\n\tSYS_DUP                  = 41  // { int|sys||dup(int fd); }\n\tSYS_PIPE                 = 42  // { int|sys||pipe(void); }\n\tSYS_GETEGID              = 43  // { gid_t|sys||getegid(void); }\n\tSYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }\n\tSYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }\n\tSYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }\n\tSYS___GETLOGIN           = 49  // { int|sys||__getlogin(char *namebuf, size_t namelen); }\n\tSYS___SETLOGIN           = 50  // { int|sys||__setlogin(const char *namebuf); }\n\tSYS_ACCT                 = 51  // { int|sys||acct(const char *path); }\n\tSYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }\n\tSYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }\n\tSYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }\n\tSYS_READLINK             = 58  // { ssize_t|sys||readlink(const char *path, char *buf, size_t count); }\n\tSYS_EXECVE               = 59  // { int|sys||execve(const char *path, char * const *argp, char * const *envp); }\n\tSYS_UMASK                = 60  // { mode_t|sys||umask(mode_t newmask); }\n\tSYS_CHROOT               = 61  // { int|sys||chroot(const char *path); }\n\tSYS_VFORK                = 66  // { int|sys||vfork(void); }\n\tSYS_SBRK                 = 69  // { int|sys||sbrk(intptr_t incr); }\n\tSYS_SSTK                 = 70  // { int|sys||sstk(int incr); }\n\tSYS_VADVISE              = 72  // { int|sys||ovadvise(int anom); }\n\tSYS_MUNMAP               = 73  // { int|sys||munmap(void *addr, size_t len); }\n\tSYS_MPROTECT             = 74  // { int|sys||mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE              = 75  // { int|sys||madvise(void *addr, size_t len, int behav); }\n\tSYS_MINCORE              = 78  // { int|sys||mincore(void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS            = 79  // { int|sys||getgroups(int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS            = 80  // { int|sys||setgroups(int gidsetsize, const gid_t *gidset); }\n\tSYS_GETPGRP              = 81  // { int|sys||getpgrp(void); }\n\tSYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }\n\tSYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }\n\tSYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }\n\tSYS_FSYNC                = 95  // { int|sys||fsync(int fd); }\n\tSYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }\n\tSYS_CONNECT              = 98  // { int|sys||connect(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_GETPRIORITY          = 100 // { int|sys||getpriority(int which, id_t who); }\n\tSYS_BIND                 = 104 // { int|sys||bind(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_SETSOCKOPT           = 105 // { int|sys||setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }\n\tSYS_LISTEN               = 106 // { int|sys||listen(int s, int backlog); }\n\tSYS_GETSOCKOPT           = 118 // { int|sys||getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); }\n\tSYS_READV                = 120 // { ssize_t|sys||readv(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_WRITEV               = 121 // { ssize_t|sys||writev(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_FCHOWN               = 123 // { int|sys||fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS_FCHMOD               = 124 // { int|sys||fchmod(int fd, mode_t mode); }\n\tSYS_SETREUID             = 126 // { int|sys||setreuid(uid_t ruid, uid_t euid); }\n\tSYS_SETREGID             = 127 // { int|sys||setregid(gid_t rgid, gid_t egid); }\n\tSYS_RENAME               = 128 // { int|sys||rename(const char *from, const char *to); }\n\tSYS_FLOCK                = 131 // { int|sys||flock(int fd, int how); }\n\tSYS_MKFIFO               = 132 // { int|sys||mkfifo(const char *path, mode_t mode); }\n\tSYS_SENDTO               = 133 // { ssize_t|sys||sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); }\n\tSYS_SHUTDOWN             = 134 // { int|sys||shutdown(int s, int how); }\n\tSYS_SOCKETPAIR           = 135 // { int|sys||socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR                = 136 // { int|sys||mkdir(const char *path, mode_t mode); }\n\tSYS_RMDIR                = 137 // { int|sys||rmdir(const char *path); }\n\tSYS_SETSID               = 147 // { int|sys||setsid(void); }\n\tSYS_SYSARCH              = 165 // { int|sys||sysarch(int op, void *parms); }\n\tSYS_PREAD                = 173 // { ssize_t|sys||pread(int fd, void *buf, size_t nbyte, int PAD, off_t offset); }\n\tSYS_PWRITE               = 174 // { ssize_t|sys||pwrite(int fd, const void *buf, size_t nbyte, int PAD, off_t offset); }\n\tSYS_NTP_ADJTIME          = 176 // { int|sys||ntp_adjtime(struct timex *tp); }\n\tSYS_SETGID               = 181 // { int|sys||setgid(gid_t gid); }\n\tSYS_SETEGID              = 182 // { int|sys||setegid(gid_t egid); }\n\tSYS_SETEUID              = 183 // { int|sys||seteuid(uid_t euid); }\n\tSYS_PATHCONF             = 191 // { long|sys||pathconf(const char *path, int name); }\n\tSYS_FPATHCONF            = 192 // { long|sys||fpathconf(int fd, int name); }\n\tSYS_GETRLIMIT            = 194 // { int|sys||getrlimit(int which, struct rlimit *rlp); }\n\tSYS_SETRLIMIT            = 195 // { int|sys||setrlimit(int which, const struct rlimit *rlp); }\n\tSYS_MMAP                 = 197 // { void *|sys||mmap(void *addr, size_t len, int prot, int flags, int fd, long PAD, off_t pos); }\n\tSYS_LSEEK                = 199 // { off_t|sys||lseek(int fd, int PAD, off_t offset, int whence); }\n\tSYS_TRUNCATE             = 200 // { int|sys||truncate(const char *path, int PAD, off_t length); }\n\tSYS_FTRUNCATE            = 201 // { int|sys||ftruncate(int fd, int PAD, off_t length); }\n\tSYS___SYSCTL             = 202 // { int|sys||__sysctl(const int *name, u_int namelen, void *old, size_t *oldlenp, const void *new, size_t newlen); }\n\tSYS_MLOCK                = 203 // { int|sys||mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK              = 204 // { int|sys||munlock(const void *addr, size_t len); }\n\tSYS_UNDELETE             = 205 // { int|sys||undelete(const char *path); }\n\tSYS_GETPGID              = 207 // { pid_t|sys||getpgid(pid_t pid); }\n\tSYS_REBOOT               = 208 // { int|sys||reboot(int opt, char *bootstr); }\n\tSYS_POLL                 = 209 // { int|sys||poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_SEMGET               = 221 // { int|sys||semget(key_t key, int nsems, int semflg); }\n\tSYS_SEMOP                = 222 // { int|sys||semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_SEMCONFIG            = 223 // { int|sys||semconfig(int flag); }\n\tSYS_MSGGET               = 225 // { int|sys||msgget(key_t key, int msgflg); }\n\tSYS_MSGSND               = 226 // { int|sys||msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV               = 227 // { ssize_t|sys||msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT                = 228 // { void *|sys||shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT                = 230 // { int|sys||shmdt(const void *shmaddr); }\n\tSYS_SHMGET               = 231 // { int|sys||shmget(key_t key, size_t size, int shmflg); }\n\tSYS_TIMER_CREATE         = 235 // { int|sys||timer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid); }\n\tSYS_TIMER_DELETE         = 236 // { int|sys||timer_delete(timer_t timerid); }\n\tSYS_TIMER_GETOVERRUN     = 239 // { int|sys||timer_getoverrun(timer_t timerid); }\n\tSYS_FDATASYNC            = 241 // { int|sys||fdatasync(int fd); }\n\tSYS_MLOCKALL             = 242 // { int|sys||mlockall(int flags); }\n\tSYS_MUNLOCKALL           = 243 // { int|sys||munlockall(void); }\n\tSYS_SIGQUEUEINFO         = 245 // { int|sys||sigqueueinfo(pid_t pid, const siginfo_t *info); }\n\tSYS_MODCTL               = 246 // { int|sys||modctl(int cmd, void *arg); }\n\tSYS___POSIX_RENAME       = 270 // { int|sys||__posix_rename(const char *from, const char *to); }\n\tSYS_SWAPCTL              = 271 // { int|sys||swapctl(int cmd, void *arg, int misc); }\n\tSYS_MINHERIT             = 273 // { int|sys||minherit(void *addr, size_t len, int inherit); }\n\tSYS_LCHMOD               = 274 // { int|sys||lchmod(const char *path, mode_t mode); }\n\tSYS_LCHOWN               = 275 // { int|sys||lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_MSYNC                = 277 // { int|sys|13|msync(void *addr, size_t len, int flags); }\n\tSYS___POSIX_CHOWN        = 283 // { int|sys||__posix_chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS___POSIX_FCHOWN       = 284 // { int|sys||__posix_fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS___POSIX_LCHOWN       = 285 // { int|sys||__posix_lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_GETSID               = 286 // { pid_t|sys||getsid(pid_t pid); }\n\tSYS___CLONE              = 287 // { pid_t|sys||__clone(int flags, void *stack); }\n\tSYS_FKTRACE              = 288 // { int|sys||fktrace(int fd, int ops, int facs, pid_t pid); }\n\tSYS_PREADV               = 289 // { ssize_t|sys||preadv(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }\n\tSYS_PWRITEV              = 290 // { ssize_t|sys||pwritev(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }\n\tSYS___GETCWD             = 296 // { int|sys||__getcwd(char *bufp, size_t length); }\n\tSYS_FCHROOT              = 297 // { int|sys||fchroot(int fd); }\n\tSYS_LCHFLAGS             = 304 // { int|sys||lchflags(const char *path, u_long flags); }\n\tSYS_ISSETUGID            = 305 // { int|sys||issetugid(void); }\n\tSYS_UTRACE               = 306 // { int|sys||utrace(const char *label, void *addr, size_t len); }\n\tSYS_GETCONTEXT           = 307 // { int|sys||getcontext(struct __ucontext *ucp); }\n\tSYS_SETCONTEXT           = 308 // { int|sys||setcontext(const struct __ucontext *ucp); }\n\tSYS__LWP_CREATE          = 309 // { int|sys||_lwp_create(const struct __ucontext *ucp, u_long flags, lwpid_t *new_lwp); }\n\tSYS__LWP_EXIT            = 310 // { int|sys||_lwp_exit(void); }\n\tSYS__LWP_SELF            = 311 // { lwpid_t|sys||_lwp_self(void); }\n\tSYS__LWP_WAIT            = 312 // { int|sys||_lwp_wait(lwpid_t wait_for, lwpid_t *departed); }\n\tSYS__LWP_SUSPEND         = 313 // { int|sys||_lwp_suspend(lwpid_t target); }\n\tSYS__LWP_CONTINUE        = 314 // { int|sys||_lwp_continue(lwpid_t target); }\n\tSYS__LWP_WAKEUP          = 315 // { int|sys||_lwp_wakeup(lwpid_t target); }\n\tSYS__LWP_GETPRIVATE      = 316 // { void *|sys||_lwp_getprivate(void); }\n\tSYS__LWP_SETPRIVATE      = 317 // { void|sys||_lwp_setprivate(void *ptr); }\n\tSYS__LWP_KILL            = 318 // { int|sys||_lwp_kill(lwpid_t target, int signo); }\n\tSYS__LWP_DETACH          = 319 // { int|sys||_lwp_detach(lwpid_t target); }\n\tSYS__LWP_UNPARK          = 321 // { int|sys||_lwp_unpark(lwpid_t target, const void *hint); }\n\tSYS__LWP_UNPARK_ALL      = 322 // { ssize_t|sys||_lwp_unpark_all(const lwpid_t *targets, size_t ntargets, const void *hint); }\n\tSYS__LWP_SETNAME         = 323 // { int|sys||_lwp_setname(lwpid_t target, const char *name); }\n\tSYS__LWP_GETNAME         = 324 // { int|sys||_lwp_getname(lwpid_t target, char *name, size_t len); }\n\tSYS__LWP_CTL             = 325 // { int|sys||_lwp_ctl(int features, struct lwpctl **address); }\n\tSYS___SIGACTION_SIGTRAMP = 340 // { int|sys||__sigaction_sigtramp(int signum, const struct sigaction *nsa, struct sigaction *osa, const void *tramp, int vers); }\n\tSYS_PMC_GET_INFO         = 341 // { int|sys||pmc_get_info(int ctr, int op, void *args); }\n\tSYS_PMC_CONTROL          = 342 // { int|sys||pmc_control(int ctr, int op, void *args); }\n\tSYS_RASCTL               = 343 // { int|sys||rasctl(void *addr, size_t len, int op); }\n\tSYS_KQUEUE               = 344 // { int|sys||kqueue(void); }\n\tSYS__SCHED_SETPARAM      = 346 // { int|sys||_sched_setparam(pid_t pid, lwpid_t lid, int policy, const struct sched_param *params); }\n\tSYS__SCHED_GETPARAM      = 347 // { int|sys||_sched_getparam(pid_t pid, lwpid_t lid, int *policy, struct sched_param *params); }\n\tSYS__SCHED_SETAFFINITY   = 348 // { int|sys||_sched_setaffinity(pid_t pid, lwpid_t lid, size_t size, const cpuset_t *cpuset); }\n\tSYS__SCHED_GETAFFINITY   = 349 // { int|sys||_sched_getaffinity(pid_t pid, lwpid_t lid, size_t size, cpuset_t *cpuset); }\n\tSYS_SCHED_YIELD          = 350 // { int|sys||sched_yield(void); }\n\tSYS_FSYNC_RANGE          = 354 // { int|sys||fsync_range(int fd, int flags, off_t start, off_t length); }\n\tSYS_UUIDGEN              = 355 // { int|sys||uuidgen(struct uuid *store, int count); }\n\tSYS_GETVFSSTAT           = 356 // { int|sys||getvfsstat(struct statvfs *buf, size_t bufsize, int flags); }\n\tSYS_STATVFS1             = 357 // { int|sys||statvfs1(const char *path, struct statvfs *buf, int flags); }\n\tSYS_FSTATVFS1            = 358 // { int|sys||fstatvfs1(int fd, struct statvfs *buf, int flags); }\n\tSYS_EXTATTRCTL           = 360 // { int|sys||extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FILE     = 361 // { int|sys||extattr_set_file(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FILE     = 362 // { ssize_t|sys||extattr_get_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FILE  = 363 // { int|sys||extattr_delete_file(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FD       = 364 // { int|sys||extattr_set_fd(int fd, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FD       = 365 // { ssize_t|sys||extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FD    = 366 // { int|sys||extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_LINK     = 367 // { int|sys||extattr_set_link(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_LINK     = 368 // { ssize_t|sys||extattr_get_link(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_LINK  = 369 // { int|sys||extattr_delete_link(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_LIST_FD      = 370 // { ssize_t|sys||extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_FILE    = 371 // { ssize_t|sys||extattr_list_file(const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_LINK    = 372 // { ssize_t|sys||extattr_list_link(const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_SETXATTR             = 375 // { int|sys||setxattr(const char *path, const char *name, const void *value, size_t size, int flags); }\n\tSYS_LSETXATTR            = 376 // { int|sys||lsetxattr(const char *path, const char *name, const void *value, size_t size, int flags); }\n\tSYS_FSETXATTR            = 377 // { int|sys||fsetxattr(int fd, const char *name, const void *value, size_t size, int flags); }\n\tSYS_GETXATTR             = 378 // { int|sys||getxattr(const char *path, const char *name, void *value, size_t size); }\n\tSYS_LGETXATTR            = 379 // { int|sys||lgetxattr(const char *path, const char *name, void *value, size_t size); }\n\tSYS_FGETXATTR            = 380 // { int|sys||fgetxattr(int fd, const char *name, void *value, size_t size); }\n\tSYS_LISTXATTR            = 381 // { int|sys||listxattr(const char *path, char *list, size_t size); }\n\tSYS_LLISTXATTR           = 382 // { int|sys||llistxattr(const char *path, char *list, size_t size); }\n\tSYS_FLISTXATTR           = 383 // { int|sys||flistxattr(int fd, char *list, size_t size); }\n\tSYS_REMOVEXATTR          = 384 // { int|sys||removexattr(const char *path, const char *name); }\n\tSYS_LREMOVEXATTR         = 385 // { int|sys||lremovexattr(const char *path, const char *name); }\n\tSYS_FREMOVEXATTR         = 386 // { int|sys||fremovexattr(int fd, const char *name); }\n\tSYS_GETDENTS             = 390 // { int|sys|30|getdents(int fd, char *buf, size_t count); }\n\tSYS_SOCKET               = 394 // { int|sys|30|socket(int domain, int type, int protocol); }\n\tSYS_GETFH                = 395 // { int|sys|30|getfh(const char *fname, void *fhp, size_t *fh_size); }\n\tSYS_MOUNT                = 410 // { int|sys|50|mount(const char *type, const char *path, int flags, void *data, size_t data_len); }\n\tSYS_MREMAP               = 411 // { void *|sys||mremap(void *old_address, size_t old_size, void *new_address, size_t new_size, int flags); }\n\tSYS_PSET_CREATE          = 412 // { int|sys||pset_create(psetid_t *psid); }\n\tSYS_PSET_DESTROY         = 413 // { int|sys||pset_destroy(psetid_t psid); }\n\tSYS_PSET_ASSIGN          = 414 // { int|sys||pset_assign(psetid_t psid, cpuid_t cpuid, psetid_t *opsid); }\n\tSYS__PSET_BIND           = 415 // { int|sys||_pset_bind(idtype_t idtype, id_t first_id, id_t second_id, psetid_t psid, psetid_t *opsid); }\n\tSYS_POSIX_FADVISE        = 416 // { int|sys|50|posix_fadvise(int fd, int PAD, off_t offset, off_t len, int advice); }\n\tSYS_SELECT               = 417 // { int|sys|50|select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_GETTIMEOFDAY         = 418 // { int|sys|50|gettimeofday(struct timeval *tp, void *tzp); }\n\tSYS_SETTIMEOFDAY         = 419 // { int|sys|50|settimeofday(const struct timeval *tv, const void *tzp); }\n\tSYS_UTIMES               = 420 // { int|sys|50|utimes(const char *path, const struct timeval *tptr); }\n\tSYS_ADJTIME              = 421 // { int|sys|50|adjtime(const struct timeval *delta, struct timeval *olddelta); }\n\tSYS_FUTIMES              = 423 // { int|sys|50|futimes(int fd, const struct timeval *tptr); }\n\tSYS_LUTIMES              = 424 // { int|sys|50|lutimes(const char *path, const struct timeval *tptr); }\n\tSYS_SETITIMER            = 425 // { int|sys|50|setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_GETITIMER            = 426 // { int|sys|50|getitimer(int which, struct itimerval *itv); }\n\tSYS_CLOCK_GETTIME        = 427 // { int|sys|50|clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME        = 428 // { int|sys|50|clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES         = 429 // { int|sys|50|clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_NANOSLEEP            = 430 // { int|sys|50|nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS___SIGTIMEDWAIT       = 431 // { int|sys|50|__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec *timeout); }\n\tSYS__LWP_PARK            = 434 // { int|sys|50|_lwp_park(const struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); }\n\tSYS_KEVENT               = 435 // { int|sys|50|kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec *timeout); }\n\tSYS_PSELECT              = 436 // { int|sys|50|pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_POLLTS               = 437 // { int|sys|50|pollts(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_STAT                 = 439 // { int|sys|50|stat(const char *path, struct stat *ub); }\n\tSYS_FSTAT                = 440 // { int|sys|50|fstat(int fd, struct stat *sb); }\n\tSYS_LSTAT                = 441 // { int|sys|50|lstat(const char *path, struct stat *ub); }\n\tSYS___SEMCTL             = 442 // { int|sys|50|__semctl(int semid, int semnum, int cmd, ... union __semun *arg); }\n\tSYS_SHMCTL               = 443 // { int|sys|50|shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_MSGCTL               = 444 // { int|sys|50|msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_GETRUSAGE            = 445 // { int|sys|50|getrusage(int who, struct rusage *rusage); }\n\tSYS_TIMER_SETTIME        = 446 // { int|sys|50|timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }\n\tSYS_TIMER_GETTIME        = 447 // { int|sys|50|timer_gettime(timer_t timerid, struct itimerspec *value); }\n\tSYS_NTP_GETTIME          = 448 // { int|sys|50|ntp_gettime(struct ntptimeval *ntvp); }\n\tSYS_WAIT4                = 449 // { int|sys|50|wait4(pid_t pid, int *status, int options, struct rusage *rusage); }\n\tSYS_MKNOD                = 450 // { int|sys|50|mknod(const char *path, mode_t mode, dev_t dev); }\n\tSYS_FHSTAT               = 451 // { int|sys|50|fhstat(const void *fhp, size_t fh_size, struct stat *sb); }\n\tSYS_PIPE2                = 453 // { int|sys||pipe2(int *fildes, int flags); }\n\tSYS_DUP3                 = 454 // { int|sys||dup3(int from, int to, int flags); }\n\tSYS_KQUEUE1              = 455 // { int|sys||kqueue1(int flags); }\n\tSYS_PACCEPT              = 456 // { int|sys||paccept(int s, struct sockaddr *name, socklen_t *anamelen, const sigset_t *mask, int flags); }\n\tSYS_LINKAT               = 457 // { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); }\n\tSYS_RENAMEAT             = 458 // { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); }\n\tSYS_MKFIFOAT             = 459 // { int|sys||mkfifoat(int fd, const char *path, mode_t mode); }\n\tSYS_MKNODAT              = 460 // { int|sys||mknodat(int fd, const char *path, mode_t mode, uint32_t dev); }\n\tSYS_MKDIRAT              = 461 // { int|sys||mkdirat(int fd, const char *path, mode_t mode); }\n\tSYS_FACCESSAT            = 462 // { int|sys||faccessat(int fd, const char *path, int amode, int flag); }\n\tSYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT             = 464 // { int|sys||fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag); }\n\tSYS_FEXECVE              = 465 // { int|sys||fexecve(int fd, char * const *argp, char * const *envp); }\n\tSYS_FSTATAT              = 466 // { int|sys||fstatat(int fd, const char *path, struct stat *buf, int flag); }\n\tSYS_UTIMENSAT            = 467 // { int|sys||utimensat(int fd, const char *path, const struct timespec *tptr, int flag); }\n\tSYS_OPENAT               = 468 // { int|sys||openat(int fd, const char *path, int oflags, ... mode_t mode); }\n\tSYS_READLINKAT           = 469 // { int|sys||readlinkat(int fd, const char *path, char *buf, size_t bufsize); }\n\tSYS_SYMLINKAT            = 470 // { int|sys||symlinkat(const char *path1, int fd, const char *path2); }\n\tSYS_UNLINKAT             = 471 // { int|sys||unlinkat(int fd, const char *path, int flag); }\n\tSYS_FUTIMENS             = 472 // { int|sys||futimens(int fd, const struct timespec *tptr); }\n\tSYS___QUOTACTL           = 473 // { int|sys||__quotactl(const char *path, struct quotactl_args *args); }\n\tSYS_POSIX_SPAWN          = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }\n\tSYS_RECVMMSG             = 475 // { int|sys||recvmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags, struct timespec *timeout); }\n\tSYS_SENDMMSG             = 476 // { int|sys||sendmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go",
    "content": "// go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,netbsd\n\npackage unix\n\nconst (\n\tSYS_EXIT                 = 1   // { void|sys||exit(int rval); }\n\tSYS_FORK                 = 2   // { int|sys||fork(void); }\n\tSYS_READ                 = 3   // { ssize_t|sys||read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE                = 4   // { ssize_t|sys||write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN                 = 5   // { int|sys||open(const char *path, int flags, ... mode_t mode); }\n\tSYS_CLOSE                = 6   // { int|sys||close(int fd); }\n\tSYS_LINK                 = 9   // { int|sys||link(const char *path, const char *link); }\n\tSYS_UNLINK               = 10  // { int|sys||unlink(const char *path); }\n\tSYS_CHDIR                = 12  // { int|sys||chdir(const char *path); }\n\tSYS_FCHDIR               = 13  // { int|sys||fchdir(int fd); }\n\tSYS_CHMOD                = 15  // { int|sys||chmod(const char *path, mode_t mode); }\n\tSYS_CHOWN                = 16  // { int|sys||chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_BREAK                = 17  // { int|sys||obreak(char *nsize); }\n\tSYS_GETPID               = 20  // { pid_t|sys||getpid_with_ppid(void); }\n\tSYS_UNMOUNT              = 22  // { int|sys||unmount(const char *path, int flags); }\n\tSYS_SETUID               = 23  // { int|sys||setuid(uid_t uid); }\n\tSYS_GETUID               = 24  // { uid_t|sys||getuid_with_euid(void); }\n\tSYS_GETEUID              = 25  // { uid_t|sys||geteuid(void); }\n\tSYS_PTRACE               = 26  // { int|sys||ptrace(int req, pid_t pid, void *addr, int data); }\n\tSYS_RECVMSG              = 27  // { ssize_t|sys||recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG              = 28  // { ssize_t|sys||sendmsg(int s, const struct msghdr *msg, int flags); }\n\tSYS_RECVFROM             = 29  // { ssize_t|sys||recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); }\n\tSYS_ACCEPT               = 30  // { int|sys||accept(int s, struct sockaddr *name, socklen_t *anamelen); }\n\tSYS_GETPEERNAME          = 31  // { int|sys||getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_GETSOCKNAME          = 32  // { int|sys||getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }\n\tSYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }\n\tSYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }\n\tSYS_SYNC                 = 36  // { void|sys||sync(void); }\n\tSYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }\n\tSYS_GETPPID              = 39  // { pid_t|sys||getppid(void); }\n\tSYS_DUP                  = 41  // { int|sys||dup(int fd); }\n\tSYS_PIPE                 = 42  // { int|sys||pipe(void); }\n\tSYS_GETEGID              = 43  // { gid_t|sys||getegid(void); }\n\tSYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }\n\tSYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }\n\tSYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }\n\tSYS___GETLOGIN           = 49  // { int|sys||__getlogin(char *namebuf, size_t namelen); }\n\tSYS___SETLOGIN           = 50  // { int|sys||__setlogin(const char *namebuf); }\n\tSYS_ACCT                 = 51  // { int|sys||acct(const char *path); }\n\tSYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }\n\tSYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }\n\tSYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }\n\tSYS_READLINK             = 58  // { ssize_t|sys||readlink(const char *path, char *buf, size_t count); }\n\tSYS_EXECVE               = 59  // { int|sys||execve(const char *path, char * const *argp, char * const *envp); }\n\tSYS_UMASK                = 60  // { mode_t|sys||umask(mode_t newmask); }\n\tSYS_CHROOT               = 61  // { int|sys||chroot(const char *path); }\n\tSYS_VFORK                = 66  // { int|sys||vfork(void); }\n\tSYS_SBRK                 = 69  // { int|sys||sbrk(intptr_t incr); }\n\tSYS_SSTK                 = 70  // { int|sys||sstk(int incr); }\n\tSYS_VADVISE              = 72  // { int|sys||ovadvise(int anom); }\n\tSYS_MUNMAP               = 73  // { int|sys||munmap(void *addr, size_t len); }\n\tSYS_MPROTECT             = 74  // { int|sys||mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE              = 75  // { int|sys||madvise(void *addr, size_t len, int behav); }\n\tSYS_MINCORE              = 78  // { int|sys||mincore(void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS            = 79  // { int|sys||getgroups(int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS            = 80  // { int|sys||setgroups(int gidsetsize, const gid_t *gidset); }\n\tSYS_GETPGRP              = 81  // { int|sys||getpgrp(void); }\n\tSYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }\n\tSYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }\n\tSYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }\n\tSYS_FSYNC                = 95  // { int|sys||fsync(int fd); }\n\tSYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }\n\tSYS_CONNECT              = 98  // { int|sys||connect(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_GETPRIORITY          = 100 // { int|sys||getpriority(int which, id_t who); }\n\tSYS_BIND                 = 104 // { int|sys||bind(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_SETSOCKOPT           = 105 // { int|sys||setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }\n\tSYS_LISTEN               = 106 // { int|sys||listen(int s, int backlog); }\n\tSYS_GETSOCKOPT           = 118 // { int|sys||getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); }\n\tSYS_READV                = 120 // { ssize_t|sys||readv(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_WRITEV               = 121 // { ssize_t|sys||writev(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_FCHOWN               = 123 // { int|sys||fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS_FCHMOD               = 124 // { int|sys||fchmod(int fd, mode_t mode); }\n\tSYS_SETREUID             = 126 // { int|sys||setreuid(uid_t ruid, uid_t euid); }\n\tSYS_SETREGID             = 127 // { int|sys||setregid(gid_t rgid, gid_t egid); }\n\tSYS_RENAME               = 128 // { int|sys||rename(const char *from, const char *to); }\n\tSYS_FLOCK                = 131 // { int|sys||flock(int fd, int how); }\n\tSYS_MKFIFO               = 132 // { int|sys||mkfifo(const char *path, mode_t mode); }\n\tSYS_SENDTO               = 133 // { ssize_t|sys||sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); }\n\tSYS_SHUTDOWN             = 134 // { int|sys||shutdown(int s, int how); }\n\tSYS_SOCKETPAIR           = 135 // { int|sys||socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR                = 136 // { int|sys||mkdir(const char *path, mode_t mode); }\n\tSYS_RMDIR                = 137 // { int|sys||rmdir(const char *path); }\n\tSYS_SETSID               = 147 // { int|sys||setsid(void); }\n\tSYS_SYSARCH              = 165 // { int|sys||sysarch(int op, void *parms); }\n\tSYS_PREAD                = 173 // { ssize_t|sys||pread(int fd, void *buf, size_t nbyte, int PAD, off_t offset); }\n\tSYS_PWRITE               = 174 // { ssize_t|sys||pwrite(int fd, const void *buf, size_t nbyte, int PAD, off_t offset); }\n\tSYS_NTP_ADJTIME          = 176 // { int|sys||ntp_adjtime(struct timex *tp); }\n\tSYS_SETGID               = 181 // { int|sys||setgid(gid_t gid); }\n\tSYS_SETEGID              = 182 // { int|sys||setegid(gid_t egid); }\n\tSYS_SETEUID              = 183 // { int|sys||seteuid(uid_t euid); }\n\tSYS_PATHCONF             = 191 // { long|sys||pathconf(const char *path, int name); }\n\tSYS_FPATHCONF            = 192 // { long|sys||fpathconf(int fd, int name); }\n\tSYS_GETRLIMIT            = 194 // { int|sys||getrlimit(int which, struct rlimit *rlp); }\n\tSYS_SETRLIMIT            = 195 // { int|sys||setrlimit(int which, const struct rlimit *rlp); }\n\tSYS_MMAP                 = 197 // { void *|sys||mmap(void *addr, size_t len, int prot, int flags, int fd, long PAD, off_t pos); }\n\tSYS_LSEEK                = 199 // { off_t|sys||lseek(int fd, int PAD, off_t offset, int whence); }\n\tSYS_TRUNCATE             = 200 // { int|sys||truncate(const char *path, int PAD, off_t length); }\n\tSYS_FTRUNCATE            = 201 // { int|sys||ftruncate(int fd, int PAD, off_t length); }\n\tSYS___SYSCTL             = 202 // { int|sys||__sysctl(const int *name, u_int namelen, void *old, size_t *oldlenp, const void *new, size_t newlen); }\n\tSYS_MLOCK                = 203 // { int|sys||mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK              = 204 // { int|sys||munlock(const void *addr, size_t len); }\n\tSYS_UNDELETE             = 205 // { int|sys||undelete(const char *path); }\n\tSYS_GETPGID              = 207 // { pid_t|sys||getpgid(pid_t pid); }\n\tSYS_REBOOT               = 208 // { int|sys||reboot(int opt, char *bootstr); }\n\tSYS_POLL                 = 209 // { int|sys||poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_SEMGET               = 221 // { int|sys||semget(key_t key, int nsems, int semflg); }\n\tSYS_SEMOP                = 222 // { int|sys||semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_SEMCONFIG            = 223 // { int|sys||semconfig(int flag); }\n\tSYS_MSGGET               = 225 // { int|sys||msgget(key_t key, int msgflg); }\n\tSYS_MSGSND               = 226 // { int|sys||msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV               = 227 // { ssize_t|sys||msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT                = 228 // { void *|sys||shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT                = 230 // { int|sys||shmdt(const void *shmaddr); }\n\tSYS_SHMGET               = 231 // { int|sys||shmget(key_t key, size_t size, int shmflg); }\n\tSYS_TIMER_CREATE         = 235 // { int|sys||timer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid); }\n\tSYS_TIMER_DELETE         = 236 // { int|sys||timer_delete(timer_t timerid); }\n\tSYS_TIMER_GETOVERRUN     = 239 // { int|sys||timer_getoverrun(timer_t timerid); }\n\tSYS_FDATASYNC            = 241 // { int|sys||fdatasync(int fd); }\n\tSYS_MLOCKALL             = 242 // { int|sys||mlockall(int flags); }\n\tSYS_MUNLOCKALL           = 243 // { int|sys||munlockall(void); }\n\tSYS_SIGQUEUEINFO         = 245 // { int|sys||sigqueueinfo(pid_t pid, const siginfo_t *info); }\n\tSYS_MODCTL               = 246 // { int|sys||modctl(int cmd, void *arg); }\n\tSYS___POSIX_RENAME       = 270 // { int|sys||__posix_rename(const char *from, const char *to); }\n\tSYS_SWAPCTL              = 271 // { int|sys||swapctl(int cmd, void *arg, int misc); }\n\tSYS_MINHERIT             = 273 // { int|sys||minherit(void *addr, size_t len, int inherit); }\n\tSYS_LCHMOD               = 274 // { int|sys||lchmod(const char *path, mode_t mode); }\n\tSYS_LCHOWN               = 275 // { int|sys||lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_MSYNC                = 277 // { int|sys|13|msync(void *addr, size_t len, int flags); }\n\tSYS___POSIX_CHOWN        = 283 // { int|sys||__posix_chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS___POSIX_FCHOWN       = 284 // { int|sys||__posix_fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS___POSIX_LCHOWN       = 285 // { int|sys||__posix_lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_GETSID               = 286 // { pid_t|sys||getsid(pid_t pid); }\n\tSYS___CLONE              = 287 // { pid_t|sys||__clone(int flags, void *stack); }\n\tSYS_FKTRACE              = 288 // { int|sys||fktrace(int fd, int ops, int facs, pid_t pid); }\n\tSYS_PREADV               = 289 // { ssize_t|sys||preadv(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }\n\tSYS_PWRITEV              = 290 // { ssize_t|sys||pwritev(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }\n\tSYS___GETCWD             = 296 // { int|sys||__getcwd(char *bufp, size_t length); }\n\tSYS_FCHROOT              = 297 // { int|sys||fchroot(int fd); }\n\tSYS_LCHFLAGS             = 304 // { int|sys||lchflags(const char *path, u_long flags); }\n\tSYS_ISSETUGID            = 305 // { int|sys||issetugid(void); }\n\tSYS_UTRACE               = 306 // { int|sys||utrace(const char *label, void *addr, size_t len); }\n\tSYS_GETCONTEXT           = 307 // { int|sys||getcontext(struct __ucontext *ucp); }\n\tSYS_SETCONTEXT           = 308 // { int|sys||setcontext(const struct __ucontext *ucp); }\n\tSYS__LWP_CREATE          = 309 // { int|sys||_lwp_create(const struct __ucontext *ucp, u_long flags, lwpid_t *new_lwp); }\n\tSYS__LWP_EXIT            = 310 // { int|sys||_lwp_exit(void); }\n\tSYS__LWP_SELF            = 311 // { lwpid_t|sys||_lwp_self(void); }\n\tSYS__LWP_WAIT            = 312 // { int|sys||_lwp_wait(lwpid_t wait_for, lwpid_t *departed); }\n\tSYS__LWP_SUSPEND         = 313 // { int|sys||_lwp_suspend(lwpid_t target); }\n\tSYS__LWP_CONTINUE        = 314 // { int|sys||_lwp_continue(lwpid_t target); }\n\tSYS__LWP_WAKEUP          = 315 // { int|sys||_lwp_wakeup(lwpid_t target); }\n\tSYS__LWP_GETPRIVATE      = 316 // { void *|sys||_lwp_getprivate(void); }\n\tSYS__LWP_SETPRIVATE      = 317 // { void|sys||_lwp_setprivate(void *ptr); }\n\tSYS__LWP_KILL            = 318 // { int|sys||_lwp_kill(lwpid_t target, int signo); }\n\tSYS__LWP_DETACH          = 319 // { int|sys||_lwp_detach(lwpid_t target); }\n\tSYS__LWP_UNPARK          = 321 // { int|sys||_lwp_unpark(lwpid_t target, const void *hint); }\n\tSYS__LWP_UNPARK_ALL      = 322 // { ssize_t|sys||_lwp_unpark_all(const lwpid_t *targets, size_t ntargets, const void *hint); }\n\tSYS__LWP_SETNAME         = 323 // { int|sys||_lwp_setname(lwpid_t target, const char *name); }\n\tSYS__LWP_GETNAME         = 324 // { int|sys||_lwp_getname(lwpid_t target, char *name, size_t len); }\n\tSYS__LWP_CTL             = 325 // { int|sys||_lwp_ctl(int features, struct lwpctl **address); }\n\tSYS___SIGACTION_SIGTRAMP = 340 // { int|sys||__sigaction_sigtramp(int signum, const struct sigaction *nsa, struct sigaction *osa, const void *tramp, int vers); }\n\tSYS_PMC_GET_INFO         = 341 // { int|sys||pmc_get_info(int ctr, int op, void *args); }\n\tSYS_PMC_CONTROL          = 342 // { int|sys||pmc_control(int ctr, int op, void *args); }\n\tSYS_RASCTL               = 343 // { int|sys||rasctl(void *addr, size_t len, int op); }\n\tSYS_KQUEUE               = 344 // { int|sys||kqueue(void); }\n\tSYS__SCHED_SETPARAM      = 346 // { int|sys||_sched_setparam(pid_t pid, lwpid_t lid, int policy, const struct sched_param *params); }\n\tSYS__SCHED_GETPARAM      = 347 // { int|sys||_sched_getparam(pid_t pid, lwpid_t lid, int *policy, struct sched_param *params); }\n\tSYS__SCHED_SETAFFINITY   = 348 // { int|sys||_sched_setaffinity(pid_t pid, lwpid_t lid, size_t size, const cpuset_t *cpuset); }\n\tSYS__SCHED_GETAFFINITY   = 349 // { int|sys||_sched_getaffinity(pid_t pid, lwpid_t lid, size_t size, cpuset_t *cpuset); }\n\tSYS_SCHED_YIELD          = 350 // { int|sys||sched_yield(void); }\n\tSYS_FSYNC_RANGE          = 354 // { int|sys||fsync_range(int fd, int flags, off_t start, off_t length); }\n\tSYS_UUIDGEN              = 355 // { int|sys||uuidgen(struct uuid *store, int count); }\n\tSYS_GETVFSSTAT           = 356 // { int|sys||getvfsstat(struct statvfs *buf, size_t bufsize, int flags); }\n\tSYS_STATVFS1             = 357 // { int|sys||statvfs1(const char *path, struct statvfs *buf, int flags); }\n\tSYS_FSTATVFS1            = 358 // { int|sys||fstatvfs1(int fd, struct statvfs *buf, int flags); }\n\tSYS_EXTATTRCTL           = 360 // { int|sys||extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FILE     = 361 // { int|sys||extattr_set_file(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FILE     = 362 // { ssize_t|sys||extattr_get_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FILE  = 363 // { int|sys||extattr_delete_file(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FD       = 364 // { int|sys||extattr_set_fd(int fd, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FD       = 365 // { ssize_t|sys||extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FD    = 366 // { int|sys||extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_LINK     = 367 // { int|sys||extattr_set_link(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_LINK     = 368 // { ssize_t|sys||extattr_get_link(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_LINK  = 369 // { int|sys||extattr_delete_link(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_LIST_FD      = 370 // { ssize_t|sys||extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_FILE    = 371 // { ssize_t|sys||extattr_list_file(const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_LINK    = 372 // { ssize_t|sys||extattr_list_link(const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_SETXATTR             = 375 // { int|sys||setxattr(const char *path, const char *name, const void *value, size_t size, int flags); }\n\tSYS_LSETXATTR            = 376 // { int|sys||lsetxattr(const char *path, const char *name, const void *value, size_t size, int flags); }\n\tSYS_FSETXATTR            = 377 // { int|sys||fsetxattr(int fd, const char *name, const void *value, size_t size, int flags); }\n\tSYS_GETXATTR             = 378 // { int|sys||getxattr(const char *path, const char *name, void *value, size_t size); }\n\tSYS_LGETXATTR            = 379 // { int|sys||lgetxattr(const char *path, const char *name, void *value, size_t size); }\n\tSYS_FGETXATTR            = 380 // { int|sys||fgetxattr(int fd, const char *name, void *value, size_t size); }\n\tSYS_LISTXATTR            = 381 // { int|sys||listxattr(const char *path, char *list, size_t size); }\n\tSYS_LLISTXATTR           = 382 // { int|sys||llistxattr(const char *path, char *list, size_t size); }\n\tSYS_FLISTXATTR           = 383 // { int|sys||flistxattr(int fd, char *list, size_t size); }\n\tSYS_REMOVEXATTR          = 384 // { int|sys||removexattr(const char *path, const char *name); }\n\tSYS_LREMOVEXATTR         = 385 // { int|sys||lremovexattr(const char *path, const char *name); }\n\tSYS_FREMOVEXATTR         = 386 // { int|sys||fremovexattr(int fd, const char *name); }\n\tSYS_GETDENTS             = 390 // { int|sys|30|getdents(int fd, char *buf, size_t count); }\n\tSYS_SOCKET               = 394 // { int|sys|30|socket(int domain, int type, int protocol); }\n\tSYS_GETFH                = 395 // { int|sys|30|getfh(const char *fname, void *fhp, size_t *fh_size); }\n\tSYS_MOUNT                = 410 // { int|sys|50|mount(const char *type, const char *path, int flags, void *data, size_t data_len); }\n\tSYS_MREMAP               = 411 // { void *|sys||mremap(void *old_address, size_t old_size, void *new_address, size_t new_size, int flags); }\n\tSYS_PSET_CREATE          = 412 // { int|sys||pset_create(psetid_t *psid); }\n\tSYS_PSET_DESTROY         = 413 // { int|sys||pset_destroy(psetid_t psid); }\n\tSYS_PSET_ASSIGN          = 414 // { int|sys||pset_assign(psetid_t psid, cpuid_t cpuid, psetid_t *opsid); }\n\tSYS__PSET_BIND           = 415 // { int|sys||_pset_bind(idtype_t idtype, id_t first_id, id_t second_id, psetid_t psid, psetid_t *opsid); }\n\tSYS_POSIX_FADVISE        = 416 // { int|sys|50|posix_fadvise(int fd, int PAD, off_t offset, off_t len, int advice); }\n\tSYS_SELECT               = 417 // { int|sys|50|select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_GETTIMEOFDAY         = 418 // { int|sys|50|gettimeofday(struct timeval *tp, void *tzp); }\n\tSYS_SETTIMEOFDAY         = 419 // { int|sys|50|settimeofday(const struct timeval *tv, const void *tzp); }\n\tSYS_UTIMES               = 420 // { int|sys|50|utimes(const char *path, const struct timeval *tptr); }\n\tSYS_ADJTIME              = 421 // { int|sys|50|adjtime(const struct timeval *delta, struct timeval *olddelta); }\n\tSYS_FUTIMES              = 423 // { int|sys|50|futimes(int fd, const struct timeval *tptr); }\n\tSYS_LUTIMES              = 424 // { int|sys|50|lutimes(const char *path, const struct timeval *tptr); }\n\tSYS_SETITIMER            = 425 // { int|sys|50|setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_GETITIMER            = 426 // { int|sys|50|getitimer(int which, struct itimerval *itv); }\n\tSYS_CLOCK_GETTIME        = 427 // { int|sys|50|clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME        = 428 // { int|sys|50|clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES         = 429 // { int|sys|50|clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_NANOSLEEP            = 430 // { int|sys|50|nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS___SIGTIMEDWAIT       = 431 // { int|sys|50|__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec *timeout); }\n\tSYS__LWP_PARK            = 434 // { int|sys|50|_lwp_park(const struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); }\n\tSYS_KEVENT               = 435 // { int|sys|50|kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec *timeout); }\n\tSYS_PSELECT              = 436 // { int|sys|50|pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_POLLTS               = 437 // { int|sys|50|pollts(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_STAT                 = 439 // { int|sys|50|stat(const char *path, struct stat *ub); }\n\tSYS_FSTAT                = 440 // { int|sys|50|fstat(int fd, struct stat *sb); }\n\tSYS_LSTAT                = 441 // { int|sys|50|lstat(const char *path, struct stat *ub); }\n\tSYS___SEMCTL             = 442 // { int|sys|50|__semctl(int semid, int semnum, int cmd, ... union __semun *arg); }\n\tSYS_SHMCTL               = 443 // { int|sys|50|shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_MSGCTL               = 444 // { int|sys|50|msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_GETRUSAGE            = 445 // { int|sys|50|getrusage(int who, struct rusage *rusage); }\n\tSYS_TIMER_SETTIME        = 446 // { int|sys|50|timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }\n\tSYS_TIMER_GETTIME        = 447 // { int|sys|50|timer_gettime(timer_t timerid, struct itimerspec *value); }\n\tSYS_NTP_GETTIME          = 448 // { int|sys|50|ntp_gettime(struct ntptimeval *ntvp); }\n\tSYS_WAIT4                = 449 // { int|sys|50|wait4(pid_t pid, int *status, int options, struct rusage *rusage); }\n\tSYS_MKNOD                = 450 // { int|sys|50|mknod(const char *path, mode_t mode, dev_t dev); }\n\tSYS_FHSTAT               = 451 // { int|sys|50|fhstat(const void *fhp, size_t fh_size, struct stat *sb); }\n\tSYS_PIPE2                = 453 // { int|sys||pipe2(int *fildes, int flags); }\n\tSYS_DUP3                 = 454 // { int|sys||dup3(int from, int to, int flags); }\n\tSYS_KQUEUE1              = 455 // { int|sys||kqueue1(int flags); }\n\tSYS_PACCEPT              = 456 // { int|sys||paccept(int s, struct sockaddr *name, socklen_t *anamelen, const sigset_t *mask, int flags); }\n\tSYS_LINKAT               = 457 // { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); }\n\tSYS_RENAMEAT             = 458 // { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); }\n\tSYS_MKFIFOAT             = 459 // { int|sys||mkfifoat(int fd, const char *path, mode_t mode); }\n\tSYS_MKNODAT              = 460 // { int|sys||mknodat(int fd, const char *path, mode_t mode, uint32_t dev); }\n\tSYS_MKDIRAT              = 461 // { int|sys||mkdirat(int fd, const char *path, mode_t mode); }\n\tSYS_FACCESSAT            = 462 // { int|sys||faccessat(int fd, const char *path, int amode, int flag); }\n\tSYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT             = 464 // { int|sys||fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag); }\n\tSYS_FEXECVE              = 465 // { int|sys||fexecve(int fd, char * const *argp, char * const *envp); }\n\tSYS_FSTATAT              = 466 // { int|sys||fstatat(int fd, const char *path, struct stat *buf, int flag); }\n\tSYS_UTIMENSAT            = 467 // { int|sys||utimensat(int fd, const char *path, const struct timespec *tptr, int flag); }\n\tSYS_OPENAT               = 468 // { int|sys||openat(int fd, const char *path, int oflags, ... mode_t mode); }\n\tSYS_READLINKAT           = 469 // { int|sys||readlinkat(int fd, const char *path, char *buf, size_t bufsize); }\n\tSYS_SYMLINKAT            = 470 // { int|sys||symlinkat(const char *path1, int fd, const char *path2); }\n\tSYS_UNLINKAT             = 471 // { int|sys||unlinkat(int fd, const char *path, int flag); }\n\tSYS_FUTIMENS             = 472 // { int|sys||futimens(int fd, const struct timespec *tptr); }\n\tSYS___QUOTACTL           = 473 // { int|sys||__quotactl(const char *path, struct quotactl_args *args); }\n\tSYS_POSIX_SPAWN          = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }\n\tSYS_RECVMMSG             = 475 // { int|sys||recvmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags, struct timespec *timeout); }\n\tSYS_SENDMMSG             = 476 // { int|sys||sendmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go",
    "content": "// go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,netbsd\n\npackage unix\n\nconst (\n\tSYS_EXIT                 = 1   // { void|sys||exit(int rval); }\n\tSYS_FORK                 = 2   // { int|sys||fork(void); }\n\tSYS_READ                 = 3   // { ssize_t|sys||read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE                = 4   // { ssize_t|sys||write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN                 = 5   // { int|sys||open(const char *path, int flags, ... mode_t mode); }\n\tSYS_CLOSE                = 6   // { int|sys||close(int fd); }\n\tSYS_LINK                 = 9   // { int|sys||link(const char *path, const char *link); }\n\tSYS_UNLINK               = 10  // { int|sys||unlink(const char *path); }\n\tSYS_CHDIR                = 12  // { int|sys||chdir(const char *path); }\n\tSYS_FCHDIR               = 13  // { int|sys||fchdir(int fd); }\n\tSYS_CHMOD                = 15  // { int|sys||chmod(const char *path, mode_t mode); }\n\tSYS_CHOWN                = 16  // { int|sys||chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_BREAK                = 17  // { int|sys||obreak(char *nsize); }\n\tSYS_GETPID               = 20  // { pid_t|sys||getpid_with_ppid(void); }\n\tSYS_UNMOUNT              = 22  // { int|sys||unmount(const char *path, int flags); }\n\tSYS_SETUID               = 23  // { int|sys||setuid(uid_t uid); }\n\tSYS_GETUID               = 24  // { uid_t|sys||getuid_with_euid(void); }\n\tSYS_GETEUID              = 25  // { uid_t|sys||geteuid(void); }\n\tSYS_PTRACE               = 26  // { int|sys||ptrace(int req, pid_t pid, void *addr, int data); }\n\tSYS_RECVMSG              = 27  // { ssize_t|sys||recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG              = 28  // { ssize_t|sys||sendmsg(int s, const struct msghdr *msg, int flags); }\n\tSYS_RECVFROM             = 29  // { ssize_t|sys||recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); }\n\tSYS_ACCEPT               = 30  // { int|sys||accept(int s, struct sockaddr *name, socklen_t *anamelen); }\n\tSYS_GETPEERNAME          = 31  // { int|sys||getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_GETSOCKNAME          = 32  // { int|sys||getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }\n\tSYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }\n\tSYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }\n\tSYS_SYNC                 = 36  // { void|sys||sync(void); }\n\tSYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }\n\tSYS_GETPPID              = 39  // { pid_t|sys||getppid(void); }\n\tSYS_DUP                  = 41  // { int|sys||dup(int fd); }\n\tSYS_PIPE                 = 42  // { int|sys||pipe(void); }\n\tSYS_GETEGID              = 43  // { gid_t|sys||getegid(void); }\n\tSYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }\n\tSYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }\n\tSYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }\n\tSYS___GETLOGIN           = 49  // { int|sys||__getlogin(char *namebuf, size_t namelen); }\n\tSYS___SETLOGIN           = 50  // { int|sys||__setlogin(const char *namebuf); }\n\tSYS_ACCT                 = 51  // { int|sys||acct(const char *path); }\n\tSYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }\n\tSYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }\n\tSYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }\n\tSYS_READLINK             = 58  // { ssize_t|sys||readlink(const char *path, char *buf, size_t count); }\n\tSYS_EXECVE               = 59  // { int|sys||execve(const char *path, char * const *argp, char * const *envp); }\n\tSYS_UMASK                = 60  // { mode_t|sys||umask(mode_t newmask); }\n\tSYS_CHROOT               = 61  // { int|sys||chroot(const char *path); }\n\tSYS_VFORK                = 66  // { int|sys||vfork(void); }\n\tSYS_SBRK                 = 69  // { int|sys||sbrk(intptr_t incr); }\n\tSYS_SSTK                 = 70  // { int|sys||sstk(int incr); }\n\tSYS_VADVISE              = 72  // { int|sys||ovadvise(int anom); }\n\tSYS_MUNMAP               = 73  // { int|sys||munmap(void *addr, size_t len); }\n\tSYS_MPROTECT             = 74  // { int|sys||mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE              = 75  // { int|sys||madvise(void *addr, size_t len, int behav); }\n\tSYS_MINCORE              = 78  // { int|sys||mincore(void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS            = 79  // { int|sys||getgroups(int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS            = 80  // { int|sys||setgroups(int gidsetsize, const gid_t *gidset); }\n\tSYS_GETPGRP              = 81  // { int|sys||getpgrp(void); }\n\tSYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }\n\tSYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }\n\tSYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }\n\tSYS_FSYNC                = 95  // { int|sys||fsync(int fd); }\n\tSYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }\n\tSYS_CONNECT              = 98  // { int|sys||connect(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_GETPRIORITY          = 100 // { int|sys||getpriority(int which, id_t who); }\n\tSYS_BIND                 = 104 // { int|sys||bind(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_SETSOCKOPT           = 105 // { int|sys||setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }\n\tSYS_LISTEN               = 106 // { int|sys||listen(int s, int backlog); }\n\tSYS_GETSOCKOPT           = 118 // { int|sys||getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); }\n\tSYS_READV                = 120 // { ssize_t|sys||readv(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_WRITEV               = 121 // { ssize_t|sys||writev(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_FCHOWN               = 123 // { int|sys||fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS_FCHMOD               = 124 // { int|sys||fchmod(int fd, mode_t mode); }\n\tSYS_SETREUID             = 126 // { int|sys||setreuid(uid_t ruid, uid_t euid); }\n\tSYS_SETREGID             = 127 // { int|sys||setregid(gid_t rgid, gid_t egid); }\n\tSYS_RENAME               = 128 // { int|sys||rename(const char *from, const char *to); }\n\tSYS_FLOCK                = 131 // { int|sys||flock(int fd, int how); }\n\tSYS_MKFIFO               = 132 // { int|sys||mkfifo(const char *path, mode_t mode); }\n\tSYS_SENDTO               = 133 // { ssize_t|sys||sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); }\n\tSYS_SHUTDOWN             = 134 // { int|sys||shutdown(int s, int how); }\n\tSYS_SOCKETPAIR           = 135 // { int|sys||socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR                = 136 // { int|sys||mkdir(const char *path, mode_t mode); }\n\tSYS_RMDIR                = 137 // { int|sys||rmdir(const char *path); }\n\tSYS_SETSID               = 147 // { int|sys||setsid(void); }\n\tSYS_SYSARCH              = 165 // { int|sys||sysarch(int op, void *parms); }\n\tSYS_PREAD                = 173 // { ssize_t|sys||pread(int fd, void *buf, size_t nbyte, int PAD, off_t offset); }\n\tSYS_PWRITE               = 174 // { ssize_t|sys||pwrite(int fd, const void *buf, size_t nbyte, int PAD, off_t offset); }\n\tSYS_NTP_ADJTIME          = 176 // { int|sys||ntp_adjtime(struct timex *tp); }\n\tSYS_SETGID               = 181 // { int|sys||setgid(gid_t gid); }\n\tSYS_SETEGID              = 182 // { int|sys||setegid(gid_t egid); }\n\tSYS_SETEUID              = 183 // { int|sys||seteuid(uid_t euid); }\n\tSYS_PATHCONF             = 191 // { long|sys||pathconf(const char *path, int name); }\n\tSYS_FPATHCONF            = 192 // { long|sys||fpathconf(int fd, int name); }\n\tSYS_GETRLIMIT            = 194 // { int|sys||getrlimit(int which, struct rlimit *rlp); }\n\tSYS_SETRLIMIT            = 195 // { int|sys||setrlimit(int which, const struct rlimit *rlp); }\n\tSYS_MMAP                 = 197 // { void *|sys||mmap(void *addr, size_t len, int prot, int flags, int fd, long PAD, off_t pos); }\n\tSYS_LSEEK                = 199 // { off_t|sys||lseek(int fd, int PAD, off_t offset, int whence); }\n\tSYS_TRUNCATE             = 200 // { int|sys||truncate(const char *path, int PAD, off_t length); }\n\tSYS_FTRUNCATE            = 201 // { int|sys||ftruncate(int fd, int PAD, off_t length); }\n\tSYS___SYSCTL             = 202 // { int|sys||__sysctl(const int *name, u_int namelen, void *old, size_t *oldlenp, const void *new, size_t newlen); }\n\tSYS_MLOCK                = 203 // { int|sys||mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK              = 204 // { int|sys||munlock(const void *addr, size_t len); }\n\tSYS_UNDELETE             = 205 // { int|sys||undelete(const char *path); }\n\tSYS_GETPGID              = 207 // { pid_t|sys||getpgid(pid_t pid); }\n\tSYS_REBOOT               = 208 // { int|sys||reboot(int opt, char *bootstr); }\n\tSYS_POLL                 = 209 // { int|sys||poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_SEMGET               = 221 // { int|sys||semget(key_t key, int nsems, int semflg); }\n\tSYS_SEMOP                = 222 // { int|sys||semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_SEMCONFIG            = 223 // { int|sys||semconfig(int flag); }\n\tSYS_MSGGET               = 225 // { int|sys||msgget(key_t key, int msgflg); }\n\tSYS_MSGSND               = 226 // { int|sys||msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV               = 227 // { ssize_t|sys||msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT                = 228 // { void *|sys||shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT                = 230 // { int|sys||shmdt(const void *shmaddr); }\n\tSYS_SHMGET               = 231 // { int|sys||shmget(key_t key, size_t size, int shmflg); }\n\tSYS_TIMER_CREATE         = 235 // { int|sys||timer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid); }\n\tSYS_TIMER_DELETE         = 236 // { int|sys||timer_delete(timer_t timerid); }\n\tSYS_TIMER_GETOVERRUN     = 239 // { int|sys||timer_getoverrun(timer_t timerid); }\n\tSYS_FDATASYNC            = 241 // { int|sys||fdatasync(int fd); }\n\tSYS_MLOCKALL             = 242 // { int|sys||mlockall(int flags); }\n\tSYS_MUNLOCKALL           = 243 // { int|sys||munlockall(void); }\n\tSYS_SIGQUEUEINFO         = 245 // { int|sys||sigqueueinfo(pid_t pid, const siginfo_t *info); }\n\tSYS_MODCTL               = 246 // { int|sys||modctl(int cmd, void *arg); }\n\tSYS___POSIX_RENAME       = 270 // { int|sys||__posix_rename(const char *from, const char *to); }\n\tSYS_SWAPCTL              = 271 // { int|sys||swapctl(int cmd, void *arg, int misc); }\n\tSYS_MINHERIT             = 273 // { int|sys||minherit(void *addr, size_t len, int inherit); }\n\tSYS_LCHMOD               = 274 // { int|sys||lchmod(const char *path, mode_t mode); }\n\tSYS_LCHOWN               = 275 // { int|sys||lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_MSYNC                = 277 // { int|sys|13|msync(void *addr, size_t len, int flags); }\n\tSYS___POSIX_CHOWN        = 283 // { int|sys||__posix_chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS___POSIX_FCHOWN       = 284 // { int|sys||__posix_fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS___POSIX_LCHOWN       = 285 // { int|sys||__posix_lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_GETSID               = 286 // { pid_t|sys||getsid(pid_t pid); }\n\tSYS___CLONE              = 287 // { pid_t|sys||__clone(int flags, void *stack); }\n\tSYS_FKTRACE              = 288 // { int|sys||fktrace(int fd, int ops, int facs, pid_t pid); }\n\tSYS_PREADV               = 289 // { ssize_t|sys||preadv(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }\n\tSYS_PWRITEV              = 290 // { ssize_t|sys||pwritev(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }\n\tSYS___GETCWD             = 296 // { int|sys||__getcwd(char *bufp, size_t length); }\n\tSYS_FCHROOT              = 297 // { int|sys||fchroot(int fd); }\n\tSYS_LCHFLAGS             = 304 // { int|sys||lchflags(const char *path, u_long flags); }\n\tSYS_ISSETUGID            = 305 // { int|sys||issetugid(void); }\n\tSYS_UTRACE               = 306 // { int|sys||utrace(const char *label, void *addr, size_t len); }\n\tSYS_GETCONTEXT           = 307 // { int|sys||getcontext(struct __ucontext *ucp); }\n\tSYS_SETCONTEXT           = 308 // { int|sys||setcontext(const struct __ucontext *ucp); }\n\tSYS__LWP_CREATE          = 309 // { int|sys||_lwp_create(const struct __ucontext *ucp, u_long flags, lwpid_t *new_lwp); }\n\tSYS__LWP_EXIT            = 310 // { int|sys||_lwp_exit(void); }\n\tSYS__LWP_SELF            = 311 // { lwpid_t|sys||_lwp_self(void); }\n\tSYS__LWP_WAIT            = 312 // { int|sys||_lwp_wait(lwpid_t wait_for, lwpid_t *departed); }\n\tSYS__LWP_SUSPEND         = 313 // { int|sys||_lwp_suspend(lwpid_t target); }\n\tSYS__LWP_CONTINUE        = 314 // { int|sys||_lwp_continue(lwpid_t target); }\n\tSYS__LWP_WAKEUP          = 315 // { int|sys||_lwp_wakeup(lwpid_t target); }\n\tSYS__LWP_GETPRIVATE      = 316 // { void *|sys||_lwp_getprivate(void); }\n\tSYS__LWP_SETPRIVATE      = 317 // { void|sys||_lwp_setprivate(void *ptr); }\n\tSYS__LWP_KILL            = 318 // { int|sys||_lwp_kill(lwpid_t target, int signo); }\n\tSYS__LWP_DETACH          = 319 // { int|sys||_lwp_detach(lwpid_t target); }\n\tSYS__LWP_UNPARK          = 321 // { int|sys||_lwp_unpark(lwpid_t target, const void *hint); }\n\tSYS__LWP_UNPARK_ALL      = 322 // { ssize_t|sys||_lwp_unpark_all(const lwpid_t *targets, size_t ntargets, const void *hint); }\n\tSYS__LWP_SETNAME         = 323 // { int|sys||_lwp_setname(lwpid_t target, const char *name); }\n\tSYS__LWP_GETNAME         = 324 // { int|sys||_lwp_getname(lwpid_t target, char *name, size_t len); }\n\tSYS__LWP_CTL             = 325 // { int|sys||_lwp_ctl(int features, struct lwpctl **address); }\n\tSYS___SIGACTION_SIGTRAMP = 340 // { int|sys||__sigaction_sigtramp(int signum, const struct sigaction *nsa, struct sigaction *osa, const void *tramp, int vers); }\n\tSYS_PMC_GET_INFO         = 341 // { int|sys||pmc_get_info(int ctr, int op, void *args); }\n\tSYS_PMC_CONTROL          = 342 // { int|sys||pmc_control(int ctr, int op, void *args); }\n\tSYS_RASCTL               = 343 // { int|sys||rasctl(void *addr, size_t len, int op); }\n\tSYS_KQUEUE               = 344 // { int|sys||kqueue(void); }\n\tSYS__SCHED_SETPARAM      = 346 // { int|sys||_sched_setparam(pid_t pid, lwpid_t lid, int policy, const struct sched_param *params); }\n\tSYS__SCHED_GETPARAM      = 347 // { int|sys||_sched_getparam(pid_t pid, lwpid_t lid, int *policy, struct sched_param *params); }\n\tSYS__SCHED_SETAFFINITY   = 348 // { int|sys||_sched_setaffinity(pid_t pid, lwpid_t lid, size_t size, const cpuset_t *cpuset); }\n\tSYS__SCHED_GETAFFINITY   = 349 // { int|sys||_sched_getaffinity(pid_t pid, lwpid_t lid, size_t size, cpuset_t *cpuset); }\n\tSYS_SCHED_YIELD          = 350 // { int|sys||sched_yield(void); }\n\tSYS_FSYNC_RANGE          = 354 // { int|sys||fsync_range(int fd, int flags, off_t start, off_t length); }\n\tSYS_UUIDGEN              = 355 // { int|sys||uuidgen(struct uuid *store, int count); }\n\tSYS_GETVFSSTAT           = 356 // { int|sys||getvfsstat(struct statvfs *buf, size_t bufsize, int flags); }\n\tSYS_STATVFS1             = 357 // { int|sys||statvfs1(const char *path, struct statvfs *buf, int flags); }\n\tSYS_FSTATVFS1            = 358 // { int|sys||fstatvfs1(int fd, struct statvfs *buf, int flags); }\n\tSYS_EXTATTRCTL           = 360 // { int|sys||extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FILE     = 361 // { int|sys||extattr_set_file(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FILE     = 362 // { ssize_t|sys||extattr_get_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FILE  = 363 // { int|sys||extattr_delete_file(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FD       = 364 // { int|sys||extattr_set_fd(int fd, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FD       = 365 // { ssize_t|sys||extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FD    = 366 // { int|sys||extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_LINK     = 367 // { int|sys||extattr_set_link(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_LINK     = 368 // { ssize_t|sys||extattr_get_link(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_LINK  = 369 // { int|sys||extattr_delete_link(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_LIST_FD      = 370 // { ssize_t|sys||extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_FILE    = 371 // { ssize_t|sys||extattr_list_file(const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_LINK    = 372 // { ssize_t|sys||extattr_list_link(const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_SETXATTR             = 375 // { int|sys||setxattr(const char *path, const char *name, const void *value, size_t size, int flags); }\n\tSYS_LSETXATTR            = 376 // { int|sys||lsetxattr(const char *path, const char *name, const void *value, size_t size, int flags); }\n\tSYS_FSETXATTR            = 377 // { int|sys||fsetxattr(int fd, const char *name, const void *value, size_t size, int flags); }\n\tSYS_GETXATTR             = 378 // { int|sys||getxattr(const char *path, const char *name, void *value, size_t size); }\n\tSYS_LGETXATTR            = 379 // { int|sys||lgetxattr(const char *path, const char *name, void *value, size_t size); }\n\tSYS_FGETXATTR            = 380 // { int|sys||fgetxattr(int fd, const char *name, void *value, size_t size); }\n\tSYS_LISTXATTR            = 381 // { int|sys||listxattr(const char *path, char *list, size_t size); }\n\tSYS_LLISTXATTR           = 382 // { int|sys||llistxattr(const char *path, char *list, size_t size); }\n\tSYS_FLISTXATTR           = 383 // { int|sys||flistxattr(int fd, char *list, size_t size); }\n\tSYS_REMOVEXATTR          = 384 // { int|sys||removexattr(const char *path, const char *name); }\n\tSYS_LREMOVEXATTR         = 385 // { int|sys||lremovexattr(const char *path, const char *name); }\n\tSYS_FREMOVEXATTR         = 386 // { int|sys||fremovexattr(int fd, const char *name); }\n\tSYS_GETDENTS             = 390 // { int|sys|30|getdents(int fd, char *buf, size_t count); }\n\tSYS_SOCKET               = 394 // { int|sys|30|socket(int domain, int type, int protocol); }\n\tSYS_GETFH                = 395 // { int|sys|30|getfh(const char *fname, void *fhp, size_t *fh_size); }\n\tSYS_MOUNT                = 410 // { int|sys|50|mount(const char *type, const char *path, int flags, void *data, size_t data_len); }\n\tSYS_MREMAP               = 411 // { void *|sys||mremap(void *old_address, size_t old_size, void *new_address, size_t new_size, int flags); }\n\tSYS_PSET_CREATE          = 412 // { int|sys||pset_create(psetid_t *psid); }\n\tSYS_PSET_DESTROY         = 413 // { int|sys||pset_destroy(psetid_t psid); }\n\tSYS_PSET_ASSIGN          = 414 // { int|sys||pset_assign(psetid_t psid, cpuid_t cpuid, psetid_t *opsid); }\n\tSYS__PSET_BIND           = 415 // { int|sys||_pset_bind(idtype_t idtype, id_t first_id, id_t second_id, psetid_t psid, psetid_t *opsid); }\n\tSYS_POSIX_FADVISE        = 416 // { int|sys|50|posix_fadvise(int fd, int PAD, off_t offset, off_t len, int advice); }\n\tSYS_SELECT               = 417 // { int|sys|50|select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_GETTIMEOFDAY         = 418 // { int|sys|50|gettimeofday(struct timeval *tp, void *tzp); }\n\tSYS_SETTIMEOFDAY         = 419 // { int|sys|50|settimeofday(const struct timeval *tv, const void *tzp); }\n\tSYS_UTIMES               = 420 // { int|sys|50|utimes(const char *path, const struct timeval *tptr); }\n\tSYS_ADJTIME              = 421 // { int|sys|50|adjtime(const struct timeval *delta, struct timeval *olddelta); }\n\tSYS_FUTIMES              = 423 // { int|sys|50|futimes(int fd, const struct timeval *tptr); }\n\tSYS_LUTIMES              = 424 // { int|sys|50|lutimes(const char *path, const struct timeval *tptr); }\n\tSYS_SETITIMER            = 425 // { int|sys|50|setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_GETITIMER            = 426 // { int|sys|50|getitimer(int which, struct itimerval *itv); }\n\tSYS_CLOCK_GETTIME        = 427 // { int|sys|50|clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME        = 428 // { int|sys|50|clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES         = 429 // { int|sys|50|clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_NANOSLEEP            = 430 // { int|sys|50|nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS___SIGTIMEDWAIT       = 431 // { int|sys|50|__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec *timeout); }\n\tSYS__LWP_PARK            = 434 // { int|sys|50|_lwp_park(const struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); }\n\tSYS_KEVENT               = 435 // { int|sys|50|kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec *timeout); }\n\tSYS_PSELECT              = 436 // { int|sys|50|pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_POLLTS               = 437 // { int|sys|50|pollts(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_STAT                 = 439 // { int|sys|50|stat(const char *path, struct stat *ub); }\n\tSYS_FSTAT                = 440 // { int|sys|50|fstat(int fd, struct stat *sb); }\n\tSYS_LSTAT                = 441 // { int|sys|50|lstat(const char *path, struct stat *ub); }\n\tSYS___SEMCTL             = 442 // { int|sys|50|__semctl(int semid, int semnum, int cmd, ... union __semun *arg); }\n\tSYS_SHMCTL               = 443 // { int|sys|50|shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_MSGCTL               = 444 // { int|sys|50|msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_GETRUSAGE            = 445 // { int|sys|50|getrusage(int who, struct rusage *rusage); }\n\tSYS_TIMER_SETTIME        = 446 // { int|sys|50|timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }\n\tSYS_TIMER_GETTIME        = 447 // { int|sys|50|timer_gettime(timer_t timerid, struct itimerspec *value); }\n\tSYS_NTP_GETTIME          = 448 // { int|sys|50|ntp_gettime(struct ntptimeval *ntvp); }\n\tSYS_WAIT4                = 449 // { int|sys|50|wait4(pid_t pid, int *status, int options, struct rusage *rusage); }\n\tSYS_MKNOD                = 450 // { int|sys|50|mknod(const char *path, mode_t mode, dev_t dev); }\n\tSYS_FHSTAT               = 451 // { int|sys|50|fhstat(const void *fhp, size_t fh_size, struct stat *sb); }\n\tSYS_PIPE2                = 453 // { int|sys||pipe2(int *fildes, int flags); }\n\tSYS_DUP3                 = 454 // { int|sys||dup3(int from, int to, int flags); }\n\tSYS_KQUEUE1              = 455 // { int|sys||kqueue1(int flags); }\n\tSYS_PACCEPT              = 456 // { int|sys||paccept(int s, struct sockaddr *name, socklen_t *anamelen, const sigset_t *mask, int flags); }\n\tSYS_LINKAT               = 457 // { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); }\n\tSYS_RENAMEAT             = 458 // { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); }\n\tSYS_MKFIFOAT             = 459 // { int|sys||mkfifoat(int fd, const char *path, mode_t mode); }\n\tSYS_MKNODAT              = 460 // { int|sys||mknodat(int fd, const char *path, mode_t mode, uint32_t dev); }\n\tSYS_MKDIRAT              = 461 // { int|sys||mkdirat(int fd, const char *path, mode_t mode); }\n\tSYS_FACCESSAT            = 462 // { int|sys||faccessat(int fd, const char *path, int amode, int flag); }\n\tSYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT             = 464 // { int|sys||fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag); }\n\tSYS_FEXECVE              = 465 // { int|sys||fexecve(int fd, char * const *argp, char * const *envp); }\n\tSYS_FSTATAT              = 466 // { int|sys||fstatat(int fd, const char *path, struct stat *buf, int flag); }\n\tSYS_UTIMENSAT            = 467 // { int|sys||utimensat(int fd, const char *path, const struct timespec *tptr, int flag); }\n\tSYS_OPENAT               = 468 // { int|sys||openat(int fd, const char *path, int oflags, ... mode_t mode); }\n\tSYS_READLINKAT           = 469 // { int|sys||readlinkat(int fd, const char *path, char *buf, size_t bufsize); }\n\tSYS_SYMLINKAT            = 470 // { int|sys||symlinkat(const char *path1, int fd, const char *path2); }\n\tSYS_UNLINKAT             = 471 // { int|sys||unlinkat(int fd, const char *path, int flag); }\n\tSYS_FUTIMENS             = 472 // { int|sys||futimens(int fd, const struct timespec *tptr); }\n\tSYS___QUOTACTL           = 473 // { int|sys||__quotactl(const char *path, struct quotactl_args *args); }\n\tSYS_POSIX_SPAWN          = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }\n\tSYS_RECVMMSG             = 475 // { int|sys||recvmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags, struct timespec *timeout); }\n\tSYS_SENDMMSG             = 476 // { int|sys||sendmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go",
    "content": "// go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master\n// Code generated by the command above; DO NOT EDIT.\n\n// +build arm64,netbsd\n\npackage unix\n\nconst (\n\tSYS_EXIT                 = 1   // { void|sys||exit(int rval); }\n\tSYS_FORK                 = 2   // { int|sys||fork(void); }\n\tSYS_READ                 = 3   // { ssize_t|sys||read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE                = 4   // { ssize_t|sys||write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN                 = 5   // { int|sys||open(const char *path, int flags, ... mode_t mode); }\n\tSYS_CLOSE                = 6   // { int|sys||close(int fd); }\n\tSYS_LINK                 = 9   // { int|sys||link(const char *path, const char *link); }\n\tSYS_UNLINK               = 10  // { int|sys||unlink(const char *path); }\n\tSYS_CHDIR                = 12  // { int|sys||chdir(const char *path); }\n\tSYS_FCHDIR               = 13  // { int|sys||fchdir(int fd); }\n\tSYS_CHMOD                = 15  // { int|sys||chmod(const char *path, mode_t mode); }\n\tSYS_CHOWN                = 16  // { int|sys||chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_BREAK                = 17  // { int|sys||obreak(char *nsize); }\n\tSYS_GETPID               = 20  // { pid_t|sys||getpid_with_ppid(void); }\n\tSYS_UNMOUNT              = 22  // { int|sys||unmount(const char *path, int flags); }\n\tSYS_SETUID               = 23  // { int|sys||setuid(uid_t uid); }\n\tSYS_GETUID               = 24  // { uid_t|sys||getuid_with_euid(void); }\n\tSYS_GETEUID              = 25  // { uid_t|sys||geteuid(void); }\n\tSYS_PTRACE               = 26  // { int|sys||ptrace(int req, pid_t pid, void *addr, int data); }\n\tSYS_RECVMSG              = 27  // { ssize_t|sys||recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG              = 28  // { ssize_t|sys||sendmsg(int s, const struct msghdr *msg, int flags); }\n\tSYS_RECVFROM             = 29  // { ssize_t|sys||recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); }\n\tSYS_ACCEPT               = 30  // { int|sys||accept(int s, struct sockaddr *name, socklen_t *anamelen); }\n\tSYS_GETPEERNAME          = 31  // { int|sys||getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_GETSOCKNAME          = 32  // { int|sys||getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }\n\tSYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }\n\tSYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }\n\tSYS_SYNC                 = 36  // { void|sys||sync(void); }\n\tSYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }\n\tSYS_GETPPID              = 39  // { pid_t|sys||getppid(void); }\n\tSYS_DUP                  = 41  // { int|sys||dup(int fd); }\n\tSYS_PIPE                 = 42  // { int|sys||pipe(void); }\n\tSYS_GETEGID              = 43  // { gid_t|sys||getegid(void); }\n\tSYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }\n\tSYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }\n\tSYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }\n\tSYS___GETLOGIN           = 49  // { int|sys||__getlogin(char *namebuf, size_t namelen); }\n\tSYS___SETLOGIN           = 50  // { int|sys||__setlogin(const char *namebuf); }\n\tSYS_ACCT                 = 51  // { int|sys||acct(const char *path); }\n\tSYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }\n\tSYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }\n\tSYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }\n\tSYS_READLINK             = 58  // { ssize_t|sys||readlink(const char *path, char *buf, size_t count); }\n\tSYS_EXECVE               = 59  // { int|sys||execve(const char *path, char * const *argp, char * const *envp); }\n\tSYS_UMASK                = 60  // { mode_t|sys||umask(mode_t newmask); }\n\tSYS_CHROOT               = 61  // { int|sys||chroot(const char *path); }\n\tSYS_VFORK                = 66  // { int|sys||vfork(void); }\n\tSYS_SBRK                 = 69  // { int|sys||sbrk(intptr_t incr); }\n\tSYS_SSTK                 = 70  // { int|sys||sstk(int incr); }\n\tSYS_VADVISE              = 72  // { int|sys||ovadvise(int anom); }\n\tSYS_MUNMAP               = 73  // { int|sys||munmap(void *addr, size_t len); }\n\tSYS_MPROTECT             = 74  // { int|sys||mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE              = 75  // { int|sys||madvise(void *addr, size_t len, int behav); }\n\tSYS_MINCORE              = 78  // { int|sys||mincore(void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS            = 79  // { int|sys||getgroups(int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS            = 80  // { int|sys||setgroups(int gidsetsize, const gid_t *gidset); }\n\tSYS_GETPGRP              = 81  // { int|sys||getpgrp(void); }\n\tSYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }\n\tSYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }\n\tSYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }\n\tSYS_FSYNC                = 95  // { int|sys||fsync(int fd); }\n\tSYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }\n\tSYS_CONNECT              = 98  // { int|sys||connect(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_GETPRIORITY          = 100 // { int|sys||getpriority(int which, id_t who); }\n\tSYS_BIND                 = 104 // { int|sys||bind(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_SETSOCKOPT           = 105 // { int|sys||setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }\n\tSYS_LISTEN               = 106 // { int|sys||listen(int s, int backlog); }\n\tSYS_GETSOCKOPT           = 118 // { int|sys||getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); }\n\tSYS_READV                = 120 // { ssize_t|sys||readv(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_WRITEV               = 121 // { ssize_t|sys||writev(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_FCHOWN               = 123 // { int|sys||fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS_FCHMOD               = 124 // { int|sys||fchmod(int fd, mode_t mode); }\n\tSYS_SETREUID             = 126 // { int|sys||setreuid(uid_t ruid, uid_t euid); }\n\tSYS_SETREGID             = 127 // { int|sys||setregid(gid_t rgid, gid_t egid); }\n\tSYS_RENAME               = 128 // { int|sys||rename(const char *from, const char *to); }\n\tSYS_FLOCK                = 131 // { int|sys||flock(int fd, int how); }\n\tSYS_MKFIFO               = 132 // { int|sys||mkfifo(const char *path, mode_t mode); }\n\tSYS_SENDTO               = 133 // { ssize_t|sys||sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); }\n\tSYS_SHUTDOWN             = 134 // { int|sys||shutdown(int s, int how); }\n\tSYS_SOCKETPAIR           = 135 // { int|sys||socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR                = 136 // { int|sys||mkdir(const char *path, mode_t mode); }\n\tSYS_RMDIR                = 137 // { int|sys||rmdir(const char *path); }\n\tSYS_SETSID               = 147 // { int|sys||setsid(void); }\n\tSYS_SYSARCH              = 165 // { int|sys||sysarch(int op, void *parms); }\n\tSYS_PREAD                = 173 // { ssize_t|sys||pread(int fd, void *buf, size_t nbyte, int PAD, off_t offset); }\n\tSYS_PWRITE               = 174 // { ssize_t|sys||pwrite(int fd, const void *buf, size_t nbyte, int PAD, off_t offset); }\n\tSYS_NTP_ADJTIME          = 176 // { int|sys||ntp_adjtime(struct timex *tp); }\n\tSYS_SETGID               = 181 // { int|sys||setgid(gid_t gid); }\n\tSYS_SETEGID              = 182 // { int|sys||setegid(gid_t egid); }\n\tSYS_SETEUID              = 183 // { int|sys||seteuid(uid_t euid); }\n\tSYS_PATHCONF             = 191 // { long|sys||pathconf(const char *path, int name); }\n\tSYS_FPATHCONF            = 192 // { long|sys||fpathconf(int fd, int name); }\n\tSYS_GETRLIMIT            = 194 // { int|sys||getrlimit(int which, struct rlimit *rlp); }\n\tSYS_SETRLIMIT            = 195 // { int|sys||setrlimit(int which, const struct rlimit *rlp); }\n\tSYS_MMAP                 = 197 // { void *|sys||mmap(void *addr, size_t len, int prot, int flags, int fd, long PAD, off_t pos); }\n\tSYS_LSEEK                = 199 // { off_t|sys||lseek(int fd, int PAD, off_t offset, int whence); }\n\tSYS_TRUNCATE             = 200 // { int|sys||truncate(const char *path, int PAD, off_t length); }\n\tSYS_FTRUNCATE            = 201 // { int|sys||ftruncate(int fd, int PAD, off_t length); }\n\tSYS___SYSCTL             = 202 // { int|sys||__sysctl(const int *name, u_int namelen, void *old, size_t *oldlenp, const void *new, size_t newlen); }\n\tSYS_MLOCK                = 203 // { int|sys||mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK              = 204 // { int|sys||munlock(const void *addr, size_t len); }\n\tSYS_UNDELETE             = 205 // { int|sys||undelete(const char *path); }\n\tSYS_GETPGID              = 207 // { pid_t|sys||getpgid(pid_t pid); }\n\tSYS_REBOOT               = 208 // { int|sys||reboot(int opt, char *bootstr); }\n\tSYS_POLL                 = 209 // { int|sys||poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_SEMGET               = 221 // { int|sys||semget(key_t key, int nsems, int semflg); }\n\tSYS_SEMOP                = 222 // { int|sys||semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_SEMCONFIG            = 223 // { int|sys||semconfig(int flag); }\n\tSYS_MSGGET               = 225 // { int|sys||msgget(key_t key, int msgflg); }\n\tSYS_MSGSND               = 226 // { int|sys||msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV               = 227 // { ssize_t|sys||msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT                = 228 // { void *|sys||shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT                = 230 // { int|sys||shmdt(const void *shmaddr); }\n\tSYS_SHMGET               = 231 // { int|sys||shmget(key_t key, size_t size, int shmflg); }\n\tSYS_TIMER_CREATE         = 235 // { int|sys||timer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid); }\n\tSYS_TIMER_DELETE         = 236 // { int|sys||timer_delete(timer_t timerid); }\n\tSYS_TIMER_GETOVERRUN     = 239 // { int|sys||timer_getoverrun(timer_t timerid); }\n\tSYS_FDATASYNC            = 241 // { int|sys||fdatasync(int fd); }\n\tSYS_MLOCKALL             = 242 // { int|sys||mlockall(int flags); }\n\tSYS_MUNLOCKALL           = 243 // { int|sys||munlockall(void); }\n\tSYS_SIGQUEUEINFO         = 245 // { int|sys||sigqueueinfo(pid_t pid, const siginfo_t *info); }\n\tSYS_MODCTL               = 246 // { int|sys||modctl(int cmd, void *arg); }\n\tSYS___POSIX_RENAME       = 270 // { int|sys||__posix_rename(const char *from, const char *to); }\n\tSYS_SWAPCTL              = 271 // { int|sys||swapctl(int cmd, void *arg, int misc); }\n\tSYS_MINHERIT             = 273 // { int|sys||minherit(void *addr, size_t len, int inherit); }\n\tSYS_LCHMOD               = 274 // { int|sys||lchmod(const char *path, mode_t mode); }\n\tSYS_LCHOWN               = 275 // { int|sys||lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_MSYNC                = 277 // { int|sys|13|msync(void *addr, size_t len, int flags); }\n\tSYS___POSIX_CHOWN        = 283 // { int|sys||__posix_chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS___POSIX_FCHOWN       = 284 // { int|sys||__posix_fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS___POSIX_LCHOWN       = 285 // { int|sys||__posix_lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_GETSID               = 286 // { pid_t|sys||getsid(pid_t pid); }\n\tSYS___CLONE              = 287 // { pid_t|sys||__clone(int flags, void *stack); }\n\tSYS_FKTRACE              = 288 // { int|sys||fktrace(int fd, int ops, int facs, pid_t pid); }\n\tSYS_PREADV               = 289 // { ssize_t|sys||preadv(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }\n\tSYS_PWRITEV              = 290 // { ssize_t|sys||pwritev(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }\n\tSYS___GETCWD             = 296 // { int|sys||__getcwd(char *bufp, size_t length); }\n\tSYS_FCHROOT              = 297 // { int|sys||fchroot(int fd); }\n\tSYS_LCHFLAGS             = 304 // { int|sys||lchflags(const char *path, u_long flags); }\n\tSYS_ISSETUGID            = 305 // { int|sys||issetugid(void); }\n\tSYS_UTRACE               = 306 // { int|sys||utrace(const char *label, void *addr, size_t len); }\n\tSYS_GETCONTEXT           = 307 // { int|sys||getcontext(struct __ucontext *ucp); }\n\tSYS_SETCONTEXT           = 308 // { int|sys||setcontext(const struct __ucontext *ucp); }\n\tSYS__LWP_CREATE          = 309 // { int|sys||_lwp_create(const struct __ucontext *ucp, u_long flags, lwpid_t *new_lwp); }\n\tSYS__LWP_EXIT            = 310 // { int|sys||_lwp_exit(void); }\n\tSYS__LWP_SELF            = 311 // { lwpid_t|sys||_lwp_self(void); }\n\tSYS__LWP_WAIT            = 312 // { int|sys||_lwp_wait(lwpid_t wait_for, lwpid_t *departed); }\n\tSYS__LWP_SUSPEND         = 313 // { int|sys||_lwp_suspend(lwpid_t target); }\n\tSYS__LWP_CONTINUE        = 314 // { int|sys||_lwp_continue(lwpid_t target); }\n\tSYS__LWP_WAKEUP          = 315 // { int|sys||_lwp_wakeup(lwpid_t target); }\n\tSYS__LWP_GETPRIVATE      = 316 // { void *|sys||_lwp_getprivate(void); }\n\tSYS__LWP_SETPRIVATE      = 317 // { void|sys||_lwp_setprivate(void *ptr); }\n\tSYS__LWP_KILL            = 318 // { int|sys||_lwp_kill(lwpid_t target, int signo); }\n\tSYS__LWP_DETACH          = 319 // { int|sys||_lwp_detach(lwpid_t target); }\n\tSYS__LWP_UNPARK          = 321 // { int|sys||_lwp_unpark(lwpid_t target, const void *hint); }\n\tSYS__LWP_UNPARK_ALL      = 322 // { ssize_t|sys||_lwp_unpark_all(const lwpid_t *targets, size_t ntargets, const void *hint); }\n\tSYS__LWP_SETNAME         = 323 // { int|sys||_lwp_setname(lwpid_t target, const char *name); }\n\tSYS__LWP_GETNAME         = 324 // { int|sys||_lwp_getname(lwpid_t target, char *name, size_t len); }\n\tSYS__LWP_CTL             = 325 // { int|sys||_lwp_ctl(int features, struct lwpctl **address); }\n\tSYS___SIGACTION_SIGTRAMP = 340 // { int|sys||__sigaction_sigtramp(int signum, const struct sigaction *nsa, struct sigaction *osa, const void *tramp, int vers); }\n\tSYS_PMC_GET_INFO         = 341 // { int|sys||pmc_get_info(int ctr, int op, void *args); }\n\tSYS_PMC_CONTROL          = 342 // { int|sys||pmc_control(int ctr, int op, void *args); }\n\tSYS_RASCTL               = 343 // { int|sys||rasctl(void *addr, size_t len, int op); }\n\tSYS_KQUEUE               = 344 // { int|sys||kqueue(void); }\n\tSYS__SCHED_SETPARAM      = 346 // { int|sys||_sched_setparam(pid_t pid, lwpid_t lid, int policy, const struct sched_param *params); }\n\tSYS__SCHED_GETPARAM      = 347 // { int|sys||_sched_getparam(pid_t pid, lwpid_t lid, int *policy, struct sched_param *params); }\n\tSYS__SCHED_SETAFFINITY   = 348 // { int|sys||_sched_setaffinity(pid_t pid, lwpid_t lid, size_t size, const cpuset_t *cpuset); }\n\tSYS__SCHED_GETAFFINITY   = 349 // { int|sys||_sched_getaffinity(pid_t pid, lwpid_t lid, size_t size, cpuset_t *cpuset); }\n\tSYS_SCHED_YIELD          = 350 // { int|sys||sched_yield(void); }\n\tSYS_FSYNC_RANGE          = 354 // { int|sys||fsync_range(int fd, int flags, off_t start, off_t length); }\n\tSYS_UUIDGEN              = 355 // { int|sys||uuidgen(struct uuid *store, int count); }\n\tSYS_GETVFSSTAT           = 356 // { int|sys||getvfsstat(struct statvfs *buf, size_t bufsize, int flags); }\n\tSYS_STATVFS1             = 357 // { int|sys||statvfs1(const char *path, struct statvfs *buf, int flags); }\n\tSYS_FSTATVFS1            = 358 // { int|sys||fstatvfs1(int fd, struct statvfs *buf, int flags); }\n\tSYS_EXTATTRCTL           = 360 // { int|sys||extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FILE     = 361 // { int|sys||extattr_set_file(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FILE     = 362 // { ssize_t|sys||extattr_get_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FILE  = 363 // { int|sys||extattr_delete_file(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_FD       = 364 // { int|sys||extattr_set_fd(int fd, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_FD       = 365 // { ssize_t|sys||extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_FD    = 366 // { int|sys||extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_SET_LINK     = 367 // { int|sys||extattr_set_link(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }\n\tSYS_EXTATTR_GET_LINK     = 368 // { ssize_t|sys||extattr_get_link(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }\n\tSYS_EXTATTR_DELETE_LINK  = 369 // { int|sys||extattr_delete_link(const char *path, int attrnamespace, const char *attrname); }\n\tSYS_EXTATTR_LIST_FD      = 370 // { ssize_t|sys||extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_FILE    = 371 // { ssize_t|sys||extattr_list_file(const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_EXTATTR_LIST_LINK    = 372 // { ssize_t|sys||extattr_list_link(const char *path, int attrnamespace, void *data, size_t nbytes); }\n\tSYS_SETXATTR             = 375 // { int|sys||setxattr(const char *path, const char *name, const void *value, size_t size, int flags); }\n\tSYS_LSETXATTR            = 376 // { int|sys||lsetxattr(const char *path, const char *name, const void *value, size_t size, int flags); }\n\tSYS_FSETXATTR            = 377 // { int|sys||fsetxattr(int fd, const char *name, const void *value, size_t size, int flags); }\n\tSYS_GETXATTR             = 378 // { int|sys||getxattr(const char *path, const char *name, void *value, size_t size); }\n\tSYS_LGETXATTR            = 379 // { int|sys||lgetxattr(const char *path, const char *name, void *value, size_t size); }\n\tSYS_FGETXATTR            = 380 // { int|sys||fgetxattr(int fd, const char *name, void *value, size_t size); }\n\tSYS_LISTXATTR            = 381 // { int|sys||listxattr(const char *path, char *list, size_t size); }\n\tSYS_LLISTXATTR           = 382 // { int|sys||llistxattr(const char *path, char *list, size_t size); }\n\tSYS_FLISTXATTR           = 383 // { int|sys||flistxattr(int fd, char *list, size_t size); }\n\tSYS_REMOVEXATTR          = 384 // { int|sys||removexattr(const char *path, const char *name); }\n\tSYS_LREMOVEXATTR         = 385 // { int|sys||lremovexattr(const char *path, const char *name); }\n\tSYS_FREMOVEXATTR         = 386 // { int|sys||fremovexattr(int fd, const char *name); }\n\tSYS_GETDENTS             = 390 // { int|sys|30|getdents(int fd, char *buf, size_t count); }\n\tSYS_SOCKET               = 394 // { int|sys|30|socket(int domain, int type, int protocol); }\n\tSYS_GETFH                = 395 // { int|sys|30|getfh(const char *fname, void *fhp, size_t *fh_size); }\n\tSYS_MOUNT                = 410 // { int|sys|50|mount(const char *type, const char *path, int flags, void *data, size_t data_len); }\n\tSYS_MREMAP               = 411 // { void *|sys||mremap(void *old_address, size_t old_size, void *new_address, size_t new_size, int flags); }\n\tSYS_PSET_CREATE          = 412 // { int|sys||pset_create(psetid_t *psid); }\n\tSYS_PSET_DESTROY         = 413 // { int|sys||pset_destroy(psetid_t psid); }\n\tSYS_PSET_ASSIGN          = 414 // { int|sys||pset_assign(psetid_t psid, cpuid_t cpuid, psetid_t *opsid); }\n\tSYS__PSET_BIND           = 415 // { int|sys||_pset_bind(idtype_t idtype, id_t first_id, id_t second_id, psetid_t psid, psetid_t *opsid); }\n\tSYS_POSIX_FADVISE        = 416 // { int|sys|50|posix_fadvise(int fd, int PAD, off_t offset, off_t len, int advice); }\n\tSYS_SELECT               = 417 // { int|sys|50|select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_GETTIMEOFDAY         = 418 // { int|sys|50|gettimeofday(struct timeval *tp, void *tzp); }\n\tSYS_SETTIMEOFDAY         = 419 // { int|sys|50|settimeofday(const struct timeval *tv, const void *tzp); }\n\tSYS_UTIMES               = 420 // { int|sys|50|utimes(const char *path, const struct timeval *tptr); }\n\tSYS_ADJTIME              = 421 // { int|sys|50|adjtime(const struct timeval *delta, struct timeval *olddelta); }\n\tSYS_FUTIMES              = 423 // { int|sys|50|futimes(int fd, const struct timeval *tptr); }\n\tSYS_LUTIMES              = 424 // { int|sys|50|lutimes(const char *path, const struct timeval *tptr); }\n\tSYS_SETITIMER            = 425 // { int|sys|50|setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_GETITIMER            = 426 // { int|sys|50|getitimer(int which, struct itimerval *itv); }\n\tSYS_CLOCK_GETTIME        = 427 // { int|sys|50|clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME        = 428 // { int|sys|50|clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES         = 429 // { int|sys|50|clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_NANOSLEEP            = 430 // { int|sys|50|nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS___SIGTIMEDWAIT       = 431 // { int|sys|50|__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec *timeout); }\n\tSYS__LWP_PARK            = 434 // { int|sys|50|_lwp_park(const struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); }\n\tSYS_KEVENT               = 435 // { int|sys|50|kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec *timeout); }\n\tSYS_PSELECT              = 436 // { int|sys|50|pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_POLLTS               = 437 // { int|sys|50|pollts(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_STAT                 = 439 // { int|sys|50|stat(const char *path, struct stat *ub); }\n\tSYS_FSTAT                = 440 // { int|sys|50|fstat(int fd, struct stat *sb); }\n\tSYS_LSTAT                = 441 // { int|sys|50|lstat(const char *path, struct stat *ub); }\n\tSYS___SEMCTL             = 442 // { int|sys|50|__semctl(int semid, int semnum, int cmd, ... union __semun *arg); }\n\tSYS_SHMCTL               = 443 // { int|sys|50|shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_MSGCTL               = 444 // { int|sys|50|msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_GETRUSAGE            = 445 // { int|sys|50|getrusage(int who, struct rusage *rusage); }\n\tSYS_TIMER_SETTIME        = 446 // { int|sys|50|timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }\n\tSYS_TIMER_GETTIME        = 447 // { int|sys|50|timer_gettime(timer_t timerid, struct itimerspec *value); }\n\tSYS_NTP_GETTIME          = 448 // { int|sys|50|ntp_gettime(struct ntptimeval *ntvp); }\n\tSYS_WAIT4                = 449 // { int|sys|50|wait4(pid_t pid, int *status, int options, struct rusage *rusage); }\n\tSYS_MKNOD                = 450 // { int|sys|50|mknod(const char *path, mode_t mode, dev_t dev); }\n\tSYS_FHSTAT               = 451 // { int|sys|50|fhstat(const void *fhp, size_t fh_size, struct stat *sb); }\n\tSYS_PIPE2                = 453 // { int|sys||pipe2(int *fildes, int flags); }\n\tSYS_DUP3                 = 454 // { int|sys||dup3(int from, int to, int flags); }\n\tSYS_KQUEUE1              = 455 // { int|sys||kqueue1(int flags); }\n\tSYS_PACCEPT              = 456 // { int|sys||paccept(int s, struct sockaddr *name, socklen_t *anamelen, const sigset_t *mask, int flags); }\n\tSYS_LINKAT               = 457 // { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); }\n\tSYS_RENAMEAT             = 458 // { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); }\n\tSYS_MKFIFOAT             = 459 // { int|sys||mkfifoat(int fd, const char *path, mode_t mode); }\n\tSYS_MKNODAT              = 460 // { int|sys||mknodat(int fd, const char *path, mode_t mode, uint32_t dev); }\n\tSYS_MKDIRAT              = 461 // { int|sys||mkdirat(int fd, const char *path, mode_t mode); }\n\tSYS_FACCESSAT            = 462 // { int|sys||faccessat(int fd, const char *path, int amode, int flag); }\n\tSYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT             = 464 // { int|sys||fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag); }\n\tSYS_FEXECVE              = 465 // { int|sys||fexecve(int fd, char * const *argp, char * const *envp); }\n\tSYS_FSTATAT              = 466 // { int|sys||fstatat(int fd, const char *path, struct stat *buf, int flag); }\n\tSYS_UTIMENSAT            = 467 // { int|sys||utimensat(int fd, const char *path, const struct timespec *tptr, int flag); }\n\tSYS_OPENAT               = 468 // { int|sys||openat(int fd, const char *path, int oflags, ... mode_t mode); }\n\tSYS_READLINKAT           = 469 // { int|sys||readlinkat(int fd, const char *path, char *buf, size_t bufsize); }\n\tSYS_SYMLINKAT            = 470 // { int|sys||symlinkat(const char *path1, int fd, const char *path2); }\n\tSYS_UNLINKAT             = 471 // { int|sys||unlinkat(int fd, const char *path, int flag); }\n\tSYS_FUTIMENS             = 472 // { int|sys||futimens(int fd, const struct timespec *tptr); }\n\tSYS___QUOTACTL           = 473 // { int|sys||__quotactl(const char *path, struct quotactl_args *args); }\n\tSYS_POSIX_SPAWN          = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }\n\tSYS_RECVMMSG             = 475 // { int|sys||recvmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags, struct timespec *timeout); }\n\tSYS_SENDMMSG             = 476 // { int|sys||sendmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go",
    "content": "// go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,openbsd\n\npackage unix\n\nconst (\n\tSYS_EXIT           = 1   // { void sys_exit(int rval); }\n\tSYS_FORK           = 2   // { int sys_fork(void); }\n\tSYS_READ           = 3   // { ssize_t sys_read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE          = 4   // { ssize_t sys_write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN           = 5   // { int sys_open(const char *path, int flags, ... mode_t mode); }\n\tSYS_CLOSE          = 6   // { int sys_close(int fd); }\n\tSYS_GETENTROPY     = 7   // { int sys_getentropy(void *buf, size_t nbyte); }\n\tSYS___TFORK        = 8   // { int sys___tfork(const struct __tfork *param, size_t psize); }\n\tSYS_LINK           = 9   // { int sys_link(const char *path, const char *link); }\n\tSYS_UNLINK         = 10  // { int sys_unlink(const char *path); }\n\tSYS_WAIT4          = 11  // { pid_t sys_wait4(pid_t pid, int *status, int options, struct rusage *rusage); }\n\tSYS_CHDIR          = 12  // { int sys_chdir(const char *path); }\n\tSYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }\n\tSYS_MKNOD          = 14  // { int sys_mknod(const char *path, mode_t mode, dev_t dev); }\n\tSYS_CHMOD          = 15  // { int sys_chmod(const char *path, mode_t mode); }\n\tSYS_CHOWN          = 16  // { int sys_chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_OBREAK         = 17  // { int sys_obreak(char *nsize); } break\n\tSYS_GETDTABLECOUNT = 18  // { int sys_getdtablecount(void); }\n\tSYS_GETRUSAGE      = 19  // { int sys_getrusage(int who, struct rusage *rusage); }\n\tSYS_GETPID         = 20  // { pid_t sys_getpid(void); }\n\tSYS_MOUNT          = 21  // { int sys_mount(const char *type, const char *path, int flags, void *data); }\n\tSYS_UNMOUNT        = 22  // { int sys_unmount(const char *path, int flags); }\n\tSYS_SETUID         = 23  // { int sys_setuid(uid_t uid); }\n\tSYS_GETUID         = 24  // { uid_t sys_getuid(void); }\n\tSYS_GETEUID        = 25  // { uid_t sys_geteuid(void); }\n\tSYS_PTRACE         = 26  // { int sys_ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG        = 27  // { ssize_t sys_recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG        = 28  // { ssize_t sys_sendmsg(int s, const struct msghdr *msg, int flags); }\n\tSYS_RECVFROM       = 29  // { ssize_t sys_recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); }\n\tSYS_ACCEPT         = 30  // { int sys_accept(int s, struct sockaddr *name, socklen_t *anamelen); }\n\tSYS_GETPEERNAME    = 31  // { int sys_getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_GETSOCKNAME    = 32  // { int sys_getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_ACCESS         = 33  // { int sys_access(const char *path, int amode); }\n\tSYS_CHFLAGS        = 34  // { int sys_chflags(const char *path, u_int flags); }\n\tSYS_FCHFLAGS       = 35  // { int sys_fchflags(int fd, u_int flags); }\n\tSYS_SYNC           = 36  // { void sys_sync(void); }\n\tSYS_STAT           = 38  // { int sys_stat(const char *path, struct stat *ub); }\n\tSYS_GETPPID        = 39  // { pid_t sys_getppid(void); }\n\tSYS_LSTAT          = 40  // { int sys_lstat(const char *path, struct stat *ub); }\n\tSYS_DUP            = 41  // { int sys_dup(int fd); }\n\tSYS_FSTATAT        = 42  // { int sys_fstatat(int fd, const char *path, struct stat *buf, int flag); }\n\tSYS_GETEGID        = 43  // { gid_t sys_getegid(void); }\n\tSYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }\n\tSYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }\n\tSYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }\n\tSYS_GETGID         = 47  // { gid_t sys_getgid(void); }\n\tSYS_SIGPROCMASK    = 48  // { int sys_sigprocmask(int how, sigset_t mask); }\n\tSYS_SETLOGIN       = 50  // { int sys_setlogin(const char *namebuf); }\n\tSYS_ACCT           = 51  // { int sys_acct(const char *path); }\n\tSYS_SIGPENDING     = 52  // { int sys_sigpending(void); }\n\tSYS_FSTAT          = 53  // { int sys_fstat(int fd, struct stat *sb); }\n\tSYS_IOCTL          = 54  // { int sys_ioctl(int fd, u_long com, ... void *data); }\n\tSYS_REBOOT         = 55  // { int sys_reboot(int opt); }\n\tSYS_REVOKE         = 56  // { int sys_revoke(const char *path); }\n\tSYS_SYMLINK        = 57  // { int sys_symlink(const char *path, const char *link); }\n\tSYS_READLINK       = 58  // { ssize_t sys_readlink(const char *path, char *buf, size_t count); }\n\tSYS_EXECVE         = 59  // { int sys_execve(const char *path, char * const *argp, char * const *envp); }\n\tSYS_UMASK          = 60  // { mode_t sys_umask(mode_t newmask); }\n\tSYS_CHROOT         = 61  // { int sys_chroot(const char *path); }\n\tSYS_GETFSSTAT      = 62  // { int sys_getfsstat(struct statfs *buf, size_t bufsize, int flags); }\n\tSYS_STATFS         = 63  // { int sys_statfs(const char *path, struct statfs *buf); }\n\tSYS_FSTATFS        = 64  // { int sys_fstatfs(int fd, struct statfs *buf); }\n\tSYS_FHSTATFS       = 65  // { int sys_fhstatfs(const fhandle_t *fhp, struct statfs *buf); }\n\tSYS_VFORK          = 66  // { int sys_vfork(void); }\n\tSYS_GETTIMEOFDAY   = 67  // { int sys_gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_SETTIMEOFDAY   = 68  // { int sys_settimeofday(const struct timeval *tv, const struct timezone *tzp); }\n\tSYS_SETITIMER      = 69  // { int sys_setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_GETITIMER      = 70  // { int sys_getitimer(int which, struct itimerval *itv); }\n\tSYS_SELECT         = 71  // { int sys_select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_KEVENT         = 72  // { int sys_kevent(int fd, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_MUNMAP         = 73  // { int sys_munmap(void *addr, size_t len); }\n\tSYS_MPROTECT       = 74  // { int sys_mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE        = 75  // { int sys_madvise(void *addr, size_t len, int behav); }\n\tSYS_UTIMES         = 76  // { int sys_utimes(const char *path, const struct timeval *tptr); }\n\tSYS_FUTIMES        = 77  // { int sys_futimes(int fd, const struct timeval *tptr); }\n\tSYS_MINCORE        = 78  // { int sys_mincore(void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS      = 79  // { int sys_getgroups(int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS      = 80  // { int sys_setgroups(int gidsetsize, const gid_t *gidset); }\n\tSYS_GETPGRP        = 81  // { int sys_getpgrp(void); }\n\tSYS_SETPGID        = 82  // { int sys_setpgid(pid_t pid, pid_t pgid); }\n\tSYS_FUTEX          = 83  // { int sys_futex(uint32_t *f, int op, int val, const struct timespec *timeout, uint32_t *g); }\n\tSYS_UTIMENSAT      = 84  // { int sys_utimensat(int fd, const char *path, const struct timespec *times, int flag); }\n\tSYS_FUTIMENS       = 85  // { int sys_futimens(int fd, const struct timespec *times); }\n\tSYS_KBIND          = 86  // { int sys_kbind(const struct __kbind *param, size_t psize, int64_t proc_cookie); }\n\tSYS_CLOCK_GETTIME  = 87  // { int sys_clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME  = 88  // { int sys_clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES   = 89  // { int sys_clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_DUP2           = 90  // { int sys_dup2(int from, int to); }\n\tSYS_NANOSLEEP      = 91  // { int sys_nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_FCNTL          = 92  // { int sys_fcntl(int fd, int cmd, ... void *arg); }\n\tSYS_ACCEPT4        = 93  // { int sys_accept4(int s, struct sockaddr *name, socklen_t *anamelen, int flags); }\n\tSYS___THRSLEEP     = 94  // { int sys___thrsleep(const volatile void *ident, clockid_t clock_id, const struct timespec *tp, void *lock, const int *abort); }\n\tSYS_FSYNC          = 95  // { int sys_fsync(int fd); }\n\tSYS_SETPRIORITY    = 96  // { int sys_setpriority(int which, id_t who, int prio); }\n\tSYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }\n\tSYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }\n\tSYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }\n\tSYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }\n\tSYS_DUP3           = 102 // { int sys_dup3(int from, int to, int flags); }\n\tSYS_SIGRETURN      = 103 // { int sys_sigreturn(struct sigcontext *sigcntxp); }\n\tSYS_BIND           = 104 // { int sys_bind(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_SETSOCKOPT     = 105 // { int sys_setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }\n\tSYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }\n\tSYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, u_int flags, int atflags); }\n\tSYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, const char *execpromises); }\n\tSYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }\n\tSYS_SENDSYSLOG     = 112 // { int sys_sendsyslog(const char *buf, size_t nbyte, int flags); }\n\tSYS_UNVEIL         = 114 // { int sys_unveil(const char *path, const char *permissions); }\n\tSYS_GETSOCKOPT     = 118 // { int sys_getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); }\n\tSYS_THRKILL        = 119 // { int sys_thrkill(pid_t tid, int signum, void *tcb); }\n\tSYS_READV          = 120 // { ssize_t sys_readv(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_WRITEV         = 121 // { ssize_t sys_writev(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_KILL           = 122 // { int sys_kill(int pid, int signum); }\n\tSYS_FCHOWN         = 123 // { int sys_fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS_FCHMOD         = 124 // { int sys_fchmod(int fd, mode_t mode); }\n\tSYS_SETREUID       = 126 // { int sys_setreuid(uid_t ruid, uid_t euid); }\n\tSYS_SETREGID       = 127 // { int sys_setregid(gid_t rgid, gid_t egid); }\n\tSYS_RENAME         = 128 // { int sys_rename(const char *from, const char *to); }\n\tSYS_FLOCK          = 131 // { int sys_flock(int fd, int how); }\n\tSYS_MKFIFO         = 132 // { int sys_mkfifo(const char *path, mode_t mode); }\n\tSYS_SENDTO         = 133 // { ssize_t sys_sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); }\n\tSYS_SHUTDOWN       = 134 // { int sys_shutdown(int s, int how); }\n\tSYS_SOCKETPAIR     = 135 // { int sys_socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR          = 136 // { int sys_mkdir(const char *path, mode_t mode); }\n\tSYS_RMDIR          = 137 // { int sys_rmdir(const char *path); }\n\tSYS_ADJTIME        = 140 // { int sys_adjtime(const struct timeval *delta, struct timeval *olddelta); }\n\tSYS_GETLOGIN_R     = 141 // { int sys_getlogin_r(char *namebuf, u_int namelen); }\n\tSYS_SETSID         = 147 // { int sys_setsid(void); }\n\tSYS_QUOTACTL       = 148 // { int sys_quotactl(const char *path, int cmd, int uid, char *arg); }\n\tSYS_NFSSVC         = 155 // { int sys_nfssvc(int flag, void *argp); }\n\tSYS_GETFH          = 161 // { int sys_getfh(const char *fname, fhandle_t *fhp); }\n\tSYS_SYSARCH        = 165 // { int sys_sysarch(int op, void *parms); }\n\tSYS_PREAD          = 173 // { ssize_t sys_pread(int fd, void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_PWRITE         = 174 // { ssize_t sys_pwrite(int fd, const void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_SETGID         = 181 // { int sys_setgid(gid_t gid); }\n\tSYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }\n\tSYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }\n\tSYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }\n\tSYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }\n\tSYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }\n\tSYS_GETRLIMIT      = 194 // { int sys_getrlimit(int which, struct rlimit *rlp); }\n\tSYS_SETRLIMIT      = 195 // { int sys_setrlimit(int which, const struct rlimit *rlp); }\n\tSYS_MMAP           = 197 // { void *sys_mmap(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_LSEEK          = 199 // { off_t sys_lseek(int fd, int pad, off_t offset, int whence); }\n\tSYS_TRUNCATE       = 200 // { int sys_truncate(const char *path, int pad, off_t length); }\n\tSYS_FTRUNCATE      = 201 // { int sys_ftruncate(int fd, int pad, off_t length); }\n\tSYS_SYSCTL         = 202 // { int sys_sysctl(const int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); }\n\tSYS_MLOCK          = 203 // { int sys_mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK        = 204 // { int sys_munlock(const void *addr, size_t len); }\n\tSYS_GETPGID        = 207 // { pid_t sys_getpgid(pid_t pid); }\n\tSYS_UTRACE         = 209 // { int sys_utrace(const char *label, const void *addr, size_t len); }\n\tSYS_SEMGET         = 221 // { int sys_semget(key_t key, int nsems, int semflg); }\n\tSYS_MSGGET         = 225 // { int sys_msgget(key_t key, int msgflg); }\n\tSYS_MSGSND         = 226 // { int sys_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV         = 227 // { int sys_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT          = 228 // { void *sys_shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT          = 230 // { int sys_shmdt(const void *shmaddr); }\n\tSYS_MINHERIT       = 250 // { int sys_minherit(void *addr, size_t len, int inherit); }\n\tSYS_POLL           = 252 // { int sys_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID      = 253 // { int sys_issetugid(void); }\n\tSYS_LCHOWN         = 254 // { int sys_lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_GETSID         = 255 // { pid_t sys_getsid(pid_t pid); }\n\tSYS_MSYNC          = 256 // { int sys_msync(void *addr, size_t len, int flags); }\n\tSYS_PIPE           = 263 // { int sys_pipe(int *fdp); }\n\tSYS_FHOPEN         = 264 // { int sys_fhopen(const fhandle_t *fhp, int flags); }\n\tSYS_PREADV         = 267 // { ssize_t sys_preadv(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_PWRITEV        = 268 // { ssize_t sys_pwritev(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_KQUEUE         = 269 // { int sys_kqueue(void); }\n\tSYS_MLOCKALL       = 271 // { int sys_mlockall(int flags); }\n\tSYS_MUNLOCKALL     = 272 // { int sys_munlockall(void); }\n\tSYS_GETRESUID      = 281 // { int sys_getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_SETRESUID      = 282 // { int sys_setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_GETRESGID      = 283 // { int sys_getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_SETRESGID      = 284 // { int sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_MQUERY         = 286 // { void *sys_mquery(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_CLOSEFROM      = 287 // { int sys_closefrom(int fd); }\n\tSYS_SIGALTSTACK    = 288 // { int sys_sigaltstack(const struct sigaltstack *nss, struct sigaltstack *oss); }\n\tSYS_SHMGET         = 289 // { int sys_shmget(key_t key, size_t size, int shmflg); }\n\tSYS_SEMOP          = 290 // { int sys_semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_FHSTAT         = 294 // { int sys_fhstat(const fhandle_t *fhp, struct stat *sb); }\n\tSYS___SEMCTL       = 295 // { int sys___semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_SHMCTL         = 296 // { int sys_shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_MSGCTL         = 297 // { int sys_msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_SCHED_YIELD    = 298 // { int sys_sched_yield(void); }\n\tSYS_GETTHRID       = 299 // { pid_t sys_getthrid(void); }\n\tSYS___THRWAKEUP    = 301 // { int sys___thrwakeup(const volatile void *ident, int n); }\n\tSYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }\n\tSYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }\n\tSYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }\n\tSYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }\n\tSYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }\n\tSYS_GETRTABLE      = 311 // { int sys_getrtable(void); }\n\tSYS_FACCESSAT      = 313 // { int sys_faccessat(int fd, const char *path, int amode, int flag); }\n\tSYS_FCHMODAT       = 314 // { int sys_fchmodat(int fd, const char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT       = 315 // { int sys_fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag); }\n\tSYS_LINKAT         = 317 // { int sys_linkat(int fd1, const char *path1, int fd2, const char *path2, int flag); }\n\tSYS_MKDIRAT        = 318 // { int sys_mkdirat(int fd, const char *path, mode_t mode); }\n\tSYS_MKFIFOAT       = 319 // { int sys_mkfifoat(int fd, const char *path, mode_t mode); }\n\tSYS_MKNODAT        = 320 // { int sys_mknodat(int fd, const char *path, mode_t mode, dev_t dev); }\n\tSYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, ... mode_t mode); }\n\tSYS_READLINKAT     = 322 // { ssize_t sys_readlinkat(int fd, const char *path, char *buf, size_t count); }\n\tSYS_RENAMEAT       = 323 // { int sys_renameat(int fromfd, const char *from, int tofd, const char *to); }\n\tSYS_SYMLINKAT      = 324 // { int sys_symlinkat(const char *path, int fd, const char *link); }\n\tSYS_UNLINKAT       = 325 // { int sys_unlinkat(int fd, const char *path, int flag); }\n\tSYS___SET_TCB      = 329 // { void sys___set_tcb(void *tcb); }\n\tSYS___GET_TCB      = 330 // { void *sys___get_tcb(void); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go",
    "content": "// go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,openbsd\n\npackage unix\n\nconst (\n\tSYS_EXIT           = 1   // { void sys_exit(int rval); }\n\tSYS_FORK           = 2   // { int sys_fork(void); }\n\tSYS_READ           = 3   // { ssize_t sys_read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE          = 4   // { ssize_t sys_write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN           = 5   // { int sys_open(const char *path, int flags, ... mode_t mode); }\n\tSYS_CLOSE          = 6   // { int sys_close(int fd); }\n\tSYS_GETENTROPY     = 7   // { int sys_getentropy(void *buf, size_t nbyte); }\n\tSYS___TFORK        = 8   // { int sys___tfork(const struct __tfork *param, size_t psize); }\n\tSYS_LINK           = 9   // { int sys_link(const char *path, const char *link); }\n\tSYS_UNLINK         = 10  // { int sys_unlink(const char *path); }\n\tSYS_WAIT4          = 11  // { pid_t sys_wait4(pid_t pid, int *status, int options, struct rusage *rusage); }\n\tSYS_CHDIR          = 12  // { int sys_chdir(const char *path); }\n\tSYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }\n\tSYS_MKNOD          = 14  // { int sys_mknod(const char *path, mode_t mode, dev_t dev); }\n\tSYS_CHMOD          = 15  // { int sys_chmod(const char *path, mode_t mode); }\n\tSYS_CHOWN          = 16  // { int sys_chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_OBREAK         = 17  // { int sys_obreak(char *nsize); } break\n\tSYS_GETDTABLECOUNT = 18  // { int sys_getdtablecount(void); }\n\tSYS_GETRUSAGE      = 19  // { int sys_getrusage(int who, struct rusage *rusage); }\n\tSYS_GETPID         = 20  // { pid_t sys_getpid(void); }\n\tSYS_MOUNT          = 21  // { int sys_mount(const char *type, const char *path, int flags, void *data); }\n\tSYS_UNMOUNT        = 22  // { int sys_unmount(const char *path, int flags); }\n\tSYS_SETUID         = 23  // { int sys_setuid(uid_t uid); }\n\tSYS_GETUID         = 24  // { uid_t sys_getuid(void); }\n\tSYS_GETEUID        = 25  // { uid_t sys_geteuid(void); }\n\tSYS_PTRACE         = 26  // { int sys_ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG        = 27  // { ssize_t sys_recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG        = 28  // { ssize_t sys_sendmsg(int s, const struct msghdr *msg, int flags); }\n\tSYS_RECVFROM       = 29  // { ssize_t sys_recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); }\n\tSYS_ACCEPT         = 30  // { int sys_accept(int s, struct sockaddr *name, socklen_t *anamelen); }\n\tSYS_GETPEERNAME    = 31  // { int sys_getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_GETSOCKNAME    = 32  // { int sys_getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_ACCESS         = 33  // { int sys_access(const char *path, int amode); }\n\tSYS_CHFLAGS        = 34  // { int sys_chflags(const char *path, u_int flags); }\n\tSYS_FCHFLAGS       = 35  // { int sys_fchflags(int fd, u_int flags); }\n\tSYS_SYNC           = 36  // { void sys_sync(void); }\n\tSYS_STAT           = 38  // { int sys_stat(const char *path, struct stat *ub); }\n\tSYS_GETPPID        = 39  // { pid_t sys_getppid(void); }\n\tSYS_LSTAT          = 40  // { int sys_lstat(const char *path, struct stat *ub); }\n\tSYS_DUP            = 41  // { int sys_dup(int fd); }\n\tSYS_FSTATAT        = 42  // { int sys_fstatat(int fd, const char *path, struct stat *buf, int flag); }\n\tSYS_GETEGID        = 43  // { gid_t sys_getegid(void); }\n\tSYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }\n\tSYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }\n\tSYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }\n\tSYS_GETGID         = 47  // { gid_t sys_getgid(void); }\n\tSYS_SIGPROCMASK    = 48  // { int sys_sigprocmask(int how, sigset_t mask); }\n\tSYS_SETLOGIN       = 50  // { int sys_setlogin(const char *namebuf); }\n\tSYS_ACCT           = 51  // { int sys_acct(const char *path); }\n\tSYS_SIGPENDING     = 52  // { int sys_sigpending(void); }\n\tSYS_FSTAT          = 53  // { int sys_fstat(int fd, struct stat *sb); }\n\tSYS_IOCTL          = 54  // { int sys_ioctl(int fd, u_long com, ... void *data); }\n\tSYS_REBOOT         = 55  // { int sys_reboot(int opt); }\n\tSYS_REVOKE         = 56  // { int sys_revoke(const char *path); }\n\tSYS_SYMLINK        = 57  // { int sys_symlink(const char *path, const char *link); }\n\tSYS_READLINK       = 58  // { ssize_t sys_readlink(const char *path, char *buf, size_t count); }\n\tSYS_EXECVE         = 59  // { int sys_execve(const char *path, char * const *argp, char * const *envp); }\n\tSYS_UMASK          = 60  // { mode_t sys_umask(mode_t newmask); }\n\tSYS_CHROOT         = 61  // { int sys_chroot(const char *path); }\n\tSYS_GETFSSTAT      = 62  // { int sys_getfsstat(struct statfs *buf, size_t bufsize, int flags); }\n\tSYS_STATFS         = 63  // { int sys_statfs(const char *path, struct statfs *buf); }\n\tSYS_FSTATFS        = 64  // { int sys_fstatfs(int fd, struct statfs *buf); }\n\tSYS_FHSTATFS       = 65  // { int sys_fhstatfs(const fhandle_t *fhp, struct statfs *buf); }\n\tSYS_VFORK          = 66  // { int sys_vfork(void); }\n\tSYS_GETTIMEOFDAY   = 67  // { int sys_gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_SETTIMEOFDAY   = 68  // { int sys_settimeofday(const struct timeval *tv, const struct timezone *tzp); }\n\tSYS_SETITIMER      = 69  // { int sys_setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_GETITIMER      = 70  // { int sys_getitimer(int which, struct itimerval *itv); }\n\tSYS_SELECT         = 71  // { int sys_select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_KEVENT         = 72  // { int sys_kevent(int fd, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_MUNMAP         = 73  // { int sys_munmap(void *addr, size_t len); }\n\tSYS_MPROTECT       = 74  // { int sys_mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE        = 75  // { int sys_madvise(void *addr, size_t len, int behav); }\n\tSYS_UTIMES         = 76  // { int sys_utimes(const char *path, const struct timeval *tptr); }\n\tSYS_FUTIMES        = 77  // { int sys_futimes(int fd, const struct timeval *tptr); }\n\tSYS_MINCORE        = 78  // { int sys_mincore(void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS      = 79  // { int sys_getgroups(int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS      = 80  // { int sys_setgroups(int gidsetsize, const gid_t *gidset); }\n\tSYS_GETPGRP        = 81  // { int sys_getpgrp(void); }\n\tSYS_SETPGID        = 82  // { int sys_setpgid(pid_t pid, pid_t pgid); }\n\tSYS_FUTEX          = 83  // { int sys_futex(uint32_t *f, int op, int val, const struct timespec *timeout, uint32_t *g); }\n\tSYS_UTIMENSAT      = 84  // { int sys_utimensat(int fd, const char *path, const struct timespec *times, int flag); }\n\tSYS_FUTIMENS       = 85  // { int sys_futimens(int fd, const struct timespec *times); }\n\tSYS_KBIND          = 86  // { int sys_kbind(const struct __kbind *param, size_t psize, int64_t proc_cookie); }\n\tSYS_CLOCK_GETTIME  = 87  // { int sys_clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME  = 88  // { int sys_clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES   = 89  // { int sys_clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_DUP2           = 90  // { int sys_dup2(int from, int to); }\n\tSYS_NANOSLEEP      = 91  // { int sys_nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_FCNTL          = 92  // { int sys_fcntl(int fd, int cmd, ... void *arg); }\n\tSYS_ACCEPT4        = 93  // { int sys_accept4(int s, struct sockaddr *name, socklen_t *anamelen, int flags); }\n\tSYS___THRSLEEP     = 94  // { int sys___thrsleep(const volatile void *ident, clockid_t clock_id, const struct timespec *tp, void *lock, const int *abort); }\n\tSYS_FSYNC          = 95  // { int sys_fsync(int fd); }\n\tSYS_SETPRIORITY    = 96  // { int sys_setpriority(int which, id_t who, int prio); }\n\tSYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }\n\tSYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }\n\tSYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }\n\tSYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }\n\tSYS_DUP3           = 102 // { int sys_dup3(int from, int to, int flags); }\n\tSYS_SIGRETURN      = 103 // { int sys_sigreturn(struct sigcontext *sigcntxp); }\n\tSYS_BIND           = 104 // { int sys_bind(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_SETSOCKOPT     = 105 // { int sys_setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }\n\tSYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }\n\tSYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, u_int flags, int atflags); }\n\tSYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, const char *execpromises); }\n\tSYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }\n\tSYS_SENDSYSLOG     = 112 // { int sys_sendsyslog(const char *buf, size_t nbyte, int flags); }\n\tSYS_UNVEIL         = 114 // { int sys_unveil(const char *path, const char *permissions); }\n\tSYS_GETSOCKOPT     = 118 // { int sys_getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); }\n\tSYS_THRKILL        = 119 // { int sys_thrkill(pid_t tid, int signum, void *tcb); }\n\tSYS_READV          = 120 // { ssize_t sys_readv(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_WRITEV         = 121 // { ssize_t sys_writev(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_KILL           = 122 // { int sys_kill(int pid, int signum); }\n\tSYS_FCHOWN         = 123 // { int sys_fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS_FCHMOD         = 124 // { int sys_fchmod(int fd, mode_t mode); }\n\tSYS_SETREUID       = 126 // { int sys_setreuid(uid_t ruid, uid_t euid); }\n\tSYS_SETREGID       = 127 // { int sys_setregid(gid_t rgid, gid_t egid); }\n\tSYS_RENAME         = 128 // { int sys_rename(const char *from, const char *to); }\n\tSYS_FLOCK          = 131 // { int sys_flock(int fd, int how); }\n\tSYS_MKFIFO         = 132 // { int sys_mkfifo(const char *path, mode_t mode); }\n\tSYS_SENDTO         = 133 // { ssize_t sys_sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); }\n\tSYS_SHUTDOWN       = 134 // { int sys_shutdown(int s, int how); }\n\tSYS_SOCKETPAIR     = 135 // { int sys_socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR          = 136 // { int sys_mkdir(const char *path, mode_t mode); }\n\tSYS_RMDIR          = 137 // { int sys_rmdir(const char *path); }\n\tSYS_ADJTIME        = 140 // { int sys_adjtime(const struct timeval *delta, struct timeval *olddelta); }\n\tSYS_GETLOGIN_R     = 141 // { int sys_getlogin_r(char *namebuf, u_int namelen); }\n\tSYS_SETSID         = 147 // { int sys_setsid(void); }\n\tSYS_QUOTACTL       = 148 // { int sys_quotactl(const char *path, int cmd, int uid, char *arg); }\n\tSYS_NFSSVC         = 155 // { int sys_nfssvc(int flag, void *argp); }\n\tSYS_GETFH          = 161 // { int sys_getfh(const char *fname, fhandle_t *fhp); }\n\tSYS_SYSARCH        = 165 // { int sys_sysarch(int op, void *parms); }\n\tSYS_PREAD          = 173 // { ssize_t sys_pread(int fd, void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_PWRITE         = 174 // { ssize_t sys_pwrite(int fd, const void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_SETGID         = 181 // { int sys_setgid(gid_t gid); }\n\tSYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }\n\tSYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }\n\tSYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }\n\tSYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }\n\tSYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }\n\tSYS_GETRLIMIT      = 194 // { int sys_getrlimit(int which, struct rlimit *rlp); }\n\tSYS_SETRLIMIT      = 195 // { int sys_setrlimit(int which, const struct rlimit *rlp); }\n\tSYS_MMAP           = 197 // { void *sys_mmap(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_LSEEK          = 199 // { off_t sys_lseek(int fd, int pad, off_t offset, int whence); }\n\tSYS_TRUNCATE       = 200 // { int sys_truncate(const char *path, int pad, off_t length); }\n\tSYS_FTRUNCATE      = 201 // { int sys_ftruncate(int fd, int pad, off_t length); }\n\tSYS_SYSCTL         = 202 // { int sys_sysctl(const int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); }\n\tSYS_MLOCK          = 203 // { int sys_mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK        = 204 // { int sys_munlock(const void *addr, size_t len); }\n\tSYS_GETPGID        = 207 // { pid_t sys_getpgid(pid_t pid); }\n\tSYS_UTRACE         = 209 // { int sys_utrace(const char *label, const void *addr, size_t len); }\n\tSYS_SEMGET         = 221 // { int sys_semget(key_t key, int nsems, int semflg); }\n\tSYS_MSGGET         = 225 // { int sys_msgget(key_t key, int msgflg); }\n\tSYS_MSGSND         = 226 // { int sys_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV         = 227 // { int sys_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT          = 228 // { void *sys_shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT          = 230 // { int sys_shmdt(const void *shmaddr); }\n\tSYS_MINHERIT       = 250 // { int sys_minherit(void *addr, size_t len, int inherit); }\n\tSYS_POLL           = 252 // { int sys_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID      = 253 // { int sys_issetugid(void); }\n\tSYS_LCHOWN         = 254 // { int sys_lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_GETSID         = 255 // { pid_t sys_getsid(pid_t pid); }\n\tSYS_MSYNC          = 256 // { int sys_msync(void *addr, size_t len, int flags); }\n\tSYS_PIPE           = 263 // { int sys_pipe(int *fdp); }\n\tSYS_FHOPEN         = 264 // { int sys_fhopen(const fhandle_t *fhp, int flags); }\n\tSYS_PREADV         = 267 // { ssize_t sys_preadv(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_PWRITEV        = 268 // { ssize_t sys_pwritev(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_KQUEUE         = 269 // { int sys_kqueue(void); }\n\tSYS_MLOCKALL       = 271 // { int sys_mlockall(int flags); }\n\tSYS_MUNLOCKALL     = 272 // { int sys_munlockall(void); }\n\tSYS_GETRESUID      = 281 // { int sys_getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_SETRESUID      = 282 // { int sys_setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_GETRESGID      = 283 // { int sys_getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_SETRESGID      = 284 // { int sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_MQUERY         = 286 // { void *sys_mquery(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_CLOSEFROM      = 287 // { int sys_closefrom(int fd); }\n\tSYS_SIGALTSTACK    = 288 // { int sys_sigaltstack(const struct sigaltstack *nss, struct sigaltstack *oss); }\n\tSYS_SHMGET         = 289 // { int sys_shmget(key_t key, size_t size, int shmflg); }\n\tSYS_SEMOP          = 290 // { int sys_semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_FHSTAT         = 294 // { int sys_fhstat(const fhandle_t *fhp, struct stat *sb); }\n\tSYS___SEMCTL       = 295 // { int sys___semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_SHMCTL         = 296 // { int sys_shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_MSGCTL         = 297 // { int sys_msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_SCHED_YIELD    = 298 // { int sys_sched_yield(void); }\n\tSYS_GETTHRID       = 299 // { pid_t sys_getthrid(void); }\n\tSYS___THRWAKEUP    = 301 // { int sys___thrwakeup(const volatile void *ident, int n); }\n\tSYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }\n\tSYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }\n\tSYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }\n\tSYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }\n\tSYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }\n\tSYS_GETRTABLE      = 311 // { int sys_getrtable(void); }\n\tSYS_FACCESSAT      = 313 // { int sys_faccessat(int fd, const char *path, int amode, int flag); }\n\tSYS_FCHMODAT       = 314 // { int sys_fchmodat(int fd, const char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT       = 315 // { int sys_fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag); }\n\tSYS_LINKAT         = 317 // { int sys_linkat(int fd1, const char *path1, int fd2, const char *path2, int flag); }\n\tSYS_MKDIRAT        = 318 // { int sys_mkdirat(int fd, const char *path, mode_t mode); }\n\tSYS_MKFIFOAT       = 319 // { int sys_mkfifoat(int fd, const char *path, mode_t mode); }\n\tSYS_MKNODAT        = 320 // { int sys_mknodat(int fd, const char *path, mode_t mode, dev_t dev); }\n\tSYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, ... mode_t mode); }\n\tSYS_READLINKAT     = 322 // { ssize_t sys_readlinkat(int fd, const char *path, char *buf, size_t count); }\n\tSYS_RENAMEAT       = 323 // { int sys_renameat(int fromfd, const char *from, int tofd, const char *to); }\n\tSYS_SYMLINKAT      = 324 // { int sys_symlinkat(const char *path, int fd, const char *link); }\n\tSYS_UNLINKAT       = 325 // { int sys_unlinkat(int fd, const char *path, int flag); }\n\tSYS___SET_TCB      = 329 // { void sys___set_tcb(void *tcb); }\n\tSYS___GET_TCB      = 330 // { void *sys___get_tcb(void); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go",
    "content": "// go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,openbsd\n\npackage unix\n\nconst (\n\tSYS_EXIT           = 1   // { void sys_exit(int rval); }\n\tSYS_FORK           = 2   // { int sys_fork(void); }\n\tSYS_READ           = 3   // { ssize_t sys_read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE          = 4   // { ssize_t sys_write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN           = 5   // { int sys_open(const char *path, int flags, ... mode_t mode); }\n\tSYS_CLOSE          = 6   // { int sys_close(int fd); }\n\tSYS_GETENTROPY     = 7   // { int sys_getentropy(void *buf, size_t nbyte); }\n\tSYS___TFORK        = 8   // { int sys___tfork(const struct __tfork *param, size_t psize); }\n\tSYS_LINK           = 9   // { int sys_link(const char *path, const char *link); }\n\tSYS_UNLINK         = 10  // { int sys_unlink(const char *path); }\n\tSYS_WAIT4          = 11  // { pid_t sys_wait4(pid_t pid, int *status, int options, struct rusage *rusage); }\n\tSYS_CHDIR          = 12  // { int sys_chdir(const char *path); }\n\tSYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }\n\tSYS_MKNOD          = 14  // { int sys_mknod(const char *path, mode_t mode, dev_t dev); }\n\tSYS_CHMOD          = 15  // { int sys_chmod(const char *path, mode_t mode); }\n\tSYS_CHOWN          = 16  // { int sys_chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_OBREAK         = 17  // { int sys_obreak(char *nsize); } break\n\tSYS_GETDTABLECOUNT = 18  // { int sys_getdtablecount(void); }\n\tSYS_GETRUSAGE      = 19  // { int sys_getrusage(int who, struct rusage *rusage); }\n\tSYS_GETPID         = 20  // { pid_t sys_getpid(void); }\n\tSYS_MOUNT          = 21  // { int sys_mount(const char *type, const char *path, int flags, void *data); }\n\tSYS_UNMOUNT        = 22  // { int sys_unmount(const char *path, int flags); }\n\tSYS_SETUID         = 23  // { int sys_setuid(uid_t uid); }\n\tSYS_GETUID         = 24  // { uid_t sys_getuid(void); }\n\tSYS_GETEUID        = 25  // { uid_t sys_geteuid(void); }\n\tSYS_PTRACE         = 26  // { int sys_ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG        = 27  // { ssize_t sys_recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG        = 28  // { ssize_t sys_sendmsg(int s, const struct msghdr *msg, int flags); }\n\tSYS_RECVFROM       = 29  // { ssize_t sys_recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); }\n\tSYS_ACCEPT         = 30  // { int sys_accept(int s, struct sockaddr *name, socklen_t *anamelen); }\n\tSYS_GETPEERNAME    = 31  // { int sys_getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_GETSOCKNAME    = 32  // { int sys_getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_ACCESS         = 33  // { int sys_access(const char *path, int amode); }\n\tSYS_CHFLAGS        = 34  // { int sys_chflags(const char *path, u_int flags); }\n\tSYS_FCHFLAGS       = 35  // { int sys_fchflags(int fd, u_int flags); }\n\tSYS_SYNC           = 36  // { void sys_sync(void); }\n\tSYS_STAT           = 38  // { int sys_stat(const char *path, struct stat *ub); }\n\tSYS_GETPPID        = 39  // { pid_t sys_getppid(void); }\n\tSYS_LSTAT          = 40  // { int sys_lstat(const char *path, struct stat *ub); }\n\tSYS_DUP            = 41  // { int sys_dup(int fd); }\n\tSYS_FSTATAT        = 42  // { int sys_fstatat(int fd, const char *path, struct stat *buf, int flag); }\n\tSYS_GETEGID        = 43  // { gid_t sys_getegid(void); }\n\tSYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }\n\tSYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }\n\tSYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }\n\tSYS_GETGID         = 47  // { gid_t sys_getgid(void); }\n\tSYS_SIGPROCMASK    = 48  // { int sys_sigprocmask(int how, sigset_t mask); }\n\tSYS_SETLOGIN       = 50  // { int sys_setlogin(const char *namebuf); }\n\tSYS_ACCT           = 51  // { int sys_acct(const char *path); }\n\tSYS_SIGPENDING     = 52  // { int sys_sigpending(void); }\n\tSYS_FSTAT          = 53  // { int sys_fstat(int fd, struct stat *sb); }\n\tSYS_IOCTL          = 54  // { int sys_ioctl(int fd, u_long com, ... void *data); }\n\tSYS_REBOOT         = 55  // { int sys_reboot(int opt); }\n\tSYS_REVOKE         = 56  // { int sys_revoke(const char *path); }\n\tSYS_SYMLINK        = 57  // { int sys_symlink(const char *path, const char *link); }\n\tSYS_READLINK       = 58  // { ssize_t sys_readlink(const char *path, char *buf, size_t count); }\n\tSYS_EXECVE         = 59  // { int sys_execve(const char *path, char * const *argp, char * const *envp); }\n\tSYS_UMASK          = 60  // { mode_t sys_umask(mode_t newmask); }\n\tSYS_CHROOT         = 61  // { int sys_chroot(const char *path); }\n\tSYS_GETFSSTAT      = 62  // { int sys_getfsstat(struct statfs *buf, size_t bufsize, int flags); }\n\tSYS_STATFS         = 63  // { int sys_statfs(const char *path, struct statfs *buf); }\n\tSYS_FSTATFS        = 64  // { int sys_fstatfs(int fd, struct statfs *buf); }\n\tSYS_FHSTATFS       = 65  // { int sys_fhstatfs(const fhandle_t *fhp, struct statfs *buf); }\n\tSYS_VFORK          = 66  // { int sys_vfork(void); }\n\tSYS_GETTIMEOFDAY   = 67  // { int sys_gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_SETTIMEOFDAY   = 68  // { int sys_settimeofday(const struct timeval *tv, const struct timezone *tzp); }\n\tSYS_SETITIMER      = 69  // { int sys_setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_GETITIMER      = 70  // { int sys_getitimer(int which, struct itimerval *itv); }\n\tSYS_SELECT         = 71  // { int sys_select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_KEVENT         = 72  // { int sys_kevent(int fd, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_MUNMAP         = 73  // { int sys_munmap(void *addr, size_t len); }\n\tSYS_MPROTECT       = 74  // { int sys_mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE        = 75  // { int sys_madvise(void *addr, size_t len, int behav); }\n\tSYS_UTIMES         = 76  // { int sys_utimes(const char *path, const struct timeval *tptr); }\n\tSYS_FUTIMES        = 77  // { int sys_futimes(int fd, const struct timeval *tptr); }\n\tSYS_MINCORE        = 78  // { int sys_mincore(void *addr, size_t len, char *vec); }\n\tSYS_GETGROUPS      = 79  // { int sys_getgroups(int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS      = 80  // { int sys_setgroups(int gidsetsize, const gid_t *gidset); }\n\tSYS_GETPGRP        = 81  // { int sys_getpgrp(void); }\n\tSYS_SETPGID        = 82  // { int sys_setpgid(pid_t pid, pid_t pgid); }\n\tSYS_FUTEX          = 83  // { int sys_futex(uint32_t *f, int op, int val, const struct timespec *timeout, uint32_t *g); }\n\tSYS_UTIMENSAT      = 84  // { int sys_utimensat(int fd, const char *path, const struct timespec *times, int flag); }\n\tSYS_FUTIMENS       = 85  // { int sys_futimens(int fd, const struct timespec *times); }\n\tSYS_KBIND          = 86  // { int sys_kbind(const struct __kbind *param, size_t psize, int64_t proc_cookie); }\n\tSYS_CLOCK_GETTIME  = 87  // { int sys_clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME  = 88  // { int sys_clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES   = 89  // { int sys_clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_DUP2           = 90  // { int sys_dup2(int from, int to); }\n\tSYS_NANOSLEEP      = 91  // { int sys_nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_FCNTL          = 92  // { int sys_fcntl(int fd, int cmd, ... void *arg); }\n\tSYS_ACCEPT4        = 93  // { int sys_accept4(int s, struct sockaddr *name, socklen_t *anamelen, int flags); }\n\tSYS___THRSLEEP     = 94  // { int sys___thrsleep(const volatile void *ident, clockid_t clock_id, const struct timespec *tp, void *lock, const int *abort); }\n\tSYS_FSYNC          = 95  // { int sys_fsync(int fd); }\n\tSYS_SETPRIORITY    = 96  // { int sys_setpriority(int which, id_t who, int prio); }\n\tSYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }\n\tSYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }\n\tSYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }\n\tSYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }\n\tSYS_DUP3           = 102 // { int sys_dup3(int from, int to, int flags); }\n\tSYS_SIGRETURN      = 103 // { int sys_sigreturn(struct sigcontext *sigcntxp); }\n\tSYS_BIND           = 104 // { int sys_bind(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_SETSOCKOPT     = 105 // { int sys_setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }\n\tSYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }\n\tSYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, u_int flags, int atflags); }\n\tSYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, const char *execpromises); }\n\tSYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }\n\tSYS_SENDSYSLOG     = 112 // { int sys_sendsyslog(const char *buf, size_t nbyte, int flags); }\n\tSYS_UNVEIL         = 114 // { int sys_unveil(const char *path, const char *permissions); }\n\tSYS_GETSOCKOPT     = 118 // { int sys_getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); }\n\tSYS_THRKILL        = 119 // { int sys_thrkill(pid_t tid, int signum, void *tcb); }\n\tSYS_READV          = 120 // { ssize_t sys_readv(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_WRITEV         = 121 // { ssize_t sys_writev(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_KILL           = 122 // { int sys_kill(int pid, int signum); }\n\tSYS_FCHOWN         = 123 // { int sys_fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS_FCHMOD         = 124 // { int sys_fchmod(int fd, mode_t mode); }\n\tSYS_SETREUID       = 126 // { int sys_setreuid(uid_t ruid, uid_t euid); }\n\tSYS_SETREGID       = 127 // { int sys_setregid(gid_t rgid, gid_t egid); }\n\tSYS_RENAME         = 128 // { int sys_rename(const char *from, const char *to); }\n\tSYS_FLOCK          = 131 // { int sys_flock(int fd, int how); }\n\tSYS_MKFIFO         = 132 // { int sys_mkfifo(const char *path, mode_t mode); }\n\tSYS_SENDTO         = 133 // { ssize_t sys_sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); }\n\tSYS_SHUTDOWN       = 134 // { int sys_shutdown(int s, int how); }\n\tSYS_SOCKETPAIR     = 135 // { int sys_socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR          = 136 // { int sys_mkdir(const char *path, mode_t mode); }\n\tSYS_RMDIR          = 137 // { int sys_rmdir(const char *path); }\n\tSYS_ADJTIME        = 140 // { int sys_adjtime(const struct timeval *delta, struct timeval *olddelta); }\n\tSYS_GETLOGIN_R     = 141 // { int sys_getlogin_r(char *namebuf, u_int namelen); }\n\tSYS_SETSID         = 147 // { int sys_setsid(void); }\n\tSYS_QUOTACTL       = 148 // { int sys_quotactl(const char *path, int cmd, int uid, char *arg); }\n\tSYS_NFSSVC         = 155 // { int sys_nfssvc(int flag, void *argp); }\n\tSYS_GETFH          = 161 // { int sys_getfh(const char *fname, fhandle_t *fhp); }\n\tSYS_SYSARCH        = 165 // { int sys_sysarch(int op, void *parms); }\n\tSYS_PREAD          = 173 // { ssize_t sys_pread(int fd, void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_PWRITE         = 174 // { ssize_t sys_pwrite(int fd, const void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_SETGID         = 181 // { int sys_setgid(gid_t gid); }\n\tSYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }\n\tSYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }\n\tSYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }\n\tSYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }\n\tSYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }\n\tSYS_GETRLIMIT      = 194 // { int sys_getrlimit(int which, struct rlimit *rlp); }\n\tSYS_SETRLIMIT      = 195 // { int sys_setrlimit(int which, const struct rlimit *rlp); }\n\tSYS_MMAP           = 197 // { void *sys_mmap(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_LSEEK          = 199 // { off_t sys_lseek(int fd, int pad, off_t offset, int whence); }\n\tSYS_TRUNCATE       = 200 // { int sys_truncate(const char *path, int pad, off_t length); }\n\tSYS_FTRUNCATE      = 201 // { int sys_ftruncate(int fd, int pad, off_t length); }\n\tSYS_SYSCTL         = 202 // { int sys_sysctl(const int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); }\n\tSYS_MLOCK          = 203 // { int sys_mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK        = 204 // { int sys_munlock(const void *addr, size_t len); }\n\tSYS_GETPGID        = 207 // { pid_t sys_getpgid(pid_t pid); }\n\tSYS_UTRACE         = 209 // { int sys_utrace(const char *label, const void *addr, size_t len); }\n\tSYS_SEMGET         = 221 // { int sys_semget(key_t key, int nsems, int semflg); }\n\tSYS_MSGGET         = 225 // { int sys_msgget(key_t key, int msgflg); }\n\tSYS_MSGSND         = 226 // { int sys_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV         = 227 // { int sys_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT          = 228 // { void *sys_shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT          = 230 // { int sys_shmdt(const void *shmaddr); }\n\tSYS_MINHERIT       = 250 // { int sys_minherit(void *addr, size_t len, int inherit); }\n\tSYS_POLL           = 252 // { int sys_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID      = 253 // { int sys_issetugid(void); }\n\tSYS_LCHOWN         = 254 // { int sys_lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_GETSID         = 255 // { pid_t sys_getsid(pid_t pid); }\n\tSYS_MSYNC          = 256 // { int sys_msync(void *addr, size_t len, int flags); }\n\tSYS_PIPE           = 263 // { int sys_pipe(int *fdp); }\n\tSYS_FHOPEN         = 264 // { int sys_fhopen(const fhandle_t *fhp, int flags); }\n\tSYS_PREADV         = 267 // { ssize_t sys_preadv(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_PWRITEV        = 268 // { ssize_t sys_pwritev(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_KQUEUE         = 269 // { int sys_kqueue(void); }\n\tSYS_MLOCKALL       = 271 // { int sys_mlockall(int flags); }\n\tSYS_MUNLOCKALL     = 272 // { int sys_munlockall(void); }\n\tSYS_GETRESUID      = 281 // { int sys_getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_SETRESUID      = 282 // { int sys_setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_GETRESGID      = 283 // { int sys_getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_SETRESGID      = 284 // { int sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_MQUERY         = 286 // { void *sys_mquery(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_CLOSEFROM      = 287 // { int sys_closefrom(int fd); }\n\tSYS_SIGALTSTACK    = 288 // { int sys_sigaltstack(const struct sigaltstack *nss, struct sigaltstack *oss); }\n\tSYS_SHMGET         = 289 // { int sys_shmget(key_t key, size_t size, int shmflg); }\n\tSYS_SEMOP          = 290 // { int sys_semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_FHSTAT         = 294 // { int sys_fhstat(const fhandle_t *fhp, struct stat *sb); }\n\tSYS___SEMCTL       = 295 // { int sys___semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_SHMCTL         = 296 // { int sys_shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_MSGCTL         = 297 // { int sys_msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_SCHED_YIELD    = 298 // { int sys_sched_yield(void); }\n\tSYS_GETTHRID       = 299 // { pid_t sys_getthrid(void); }\n\tSYS___THRWAKEUP    = 301 // { int sys___thrwakeup(const volatile void *ident, int n); }\n\tSYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }\n\tSYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }\n\tSYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }\n\tSYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }\n\tSYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }\n\tSYS_GETRTABLE      = 311 // { int sys_getrtable(void); }\n\tSYS_FACCESSAT      = 313 // { int sys_faccessat(int fd, const char *path, int amode, int flag); }\n\tSYS_FCHMODAT       = 314 // { int sys_fchmodat(int fd, const char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT       = 315 // { int sys_fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag); }\n\tSYS_LINKAT         = 317 // { int sys_linkat(int fd1, const char *path1, int fd2, const char *path2, int flag); }\n\tSYS_MKDIRAT        = 318 // { int sys_mkdirat(int fd, const char *path, mode_t mode); }\n\tSYS_MKFIFOAT       = 319 // { int sys_mkfifoat(int fd, const char *path, mode_t mode); }\n\tSYS_MKNODAT        = 320 // { int sys_mknodat(int fd, const char *path, mode_t mode, dev_t dev); }\n\tSYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, ... mode_t mode); }\n\tSYS_READLINKAT     = 322 // { ssize_t sys_readlinkat(int fd, const char *path, char *buf, size_t count); }\n\tSYS_RENAMEAT       = 323 // { int sys_renameat(int fromfd, const char *from, int tofd, const char *to); }\n\tSYS_SYMLINKAT      = 324 // { int sys_symlinkat(const char *path, int fd, const char *link); }\n\tSYS_UNLINKAT       = 325 // { int sys_unlinkat(int fd, const char *path, int flag); }\n\tSYS___SET_TCB      = 329 // { void sys___set_tcb(void *tcb); }\n\tSYS___GET_TCB      = 330 // { void *sys___get_tcb(void); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go",
    "content": "// go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,openbsd\n\npackage unix\n\nconst (\n\tSYS_EXIT           = 1   // { void sys_exit(int rval); }\n\tSYS_FORK           = 2   // { int sys_fork(void); }\n\tSYS_READ           = 3   // { ssize_t sys_read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE          = 4   // { ssize_t sys_write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN           = 5   // { int sys_open(const char *path, int flags, ... mode_t mode); }\n\tSYS_CLOSE          = 6   // { int sys_close(int fd); }\n\tSYS_GETENTROPY     = 7   // { int sys_getentropy(void *buf, size_t nbyte); }\n\tSYS___TFORK        = 8   // { int sys___tfork(const struct __tfork *param, size_t psize); }\n\tSYS_LINK           = 9   // { int sys_link(const char *path, const char *link); }\n\tSYS_UNLINK         = 10  // { int sys_unlink(const char *path); }\n\tSYS_WAIT4          = 11  // { pid_t sys_wait4(pid_t pid, int *status, int options, struct rusage *rusage); }\n\tSYS_CHDIR          = 12  // { int sys_chdir(const char *path); }\n\tSYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }\n\tSYS_MKNOD          = 14  // { int sys_mknod(const char *path, mode_t mode, dev_t dev); }\n\tSYS_CHMOD          = 15  // { int sys_chmod(const char *path, mode_t mode); }\n\tSYS_CHOWN          = 16  // { int sys_chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_OBREAK         = 17  // { int sys_obreak(char *nsize); } break\n\tSYS_GETDTABLECOUNT = 18  // { int sys_getdtablecount(void); }\n\tSYS_GETRUSAGE      = 19  // { int sys_getrusage(int who, struct rusage *rusage); }\n\tSYS_GETPID         = 20  // { pid_t sys_getpid(void); }\n\tSYS_MOUNT          = 21  // { int sys_mount(const char *type, const char *path, int flags, void *data); }\n\tSYS_UNMOUNT        = 22  // { int sys_unmount(const char *path, int flags); }\n\tSYS_SETUID         = 23  // { int sys_setuid(uid_t uid); }\n\tSYS_GETUID         = 24  // { uid_t sys_getuid(void); }\n\tSYS_GETEUID        = 25  // { uid_t sys_geteuid(void); }\n\tSYS_PTRACE         = 26  // { int sys_ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG        = 27  // { ssize_t sys_recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG        = 28  // { ssize_t sys_sendmsg(int s, const struct msghdr *msg, int flags); }\n\tSYS_RECVFROM       = 29  // { ssize_t sys_recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); }\n\tSYS_ACCEPT         = 30  // { int sys_accept(int s, struct sockaddr *name, socklen_t *anamelen); }\n\tSYS_GETPEERNAME    = 31  // { int sys_getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_GETSOCKNAME    = 32  // { int sys_getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_ACCESS         = 33  // { int sys_access(const char *path, int amode); }\n\tSYS_CHFLAGS        = 34  // { int sys_chflags(const char *path, u_int flags); }\n\tSYS_FCHFLAGS       = 35  // { int sys_fchflags(int fd, u_int flags); }\n\tSYS_SYNC           = 36  // { void sys_sync(void); }\n\tSYS_STAT           = 38  // { int sys_stat(const char *path, struct stat *ub); }\n\tSYS_GETPPID        = 39  // { pid_t sys_getppid(void); }\n\tSYS_LSTAT          = 40  // { int sys_lstat(const char *path, struct stat *ub); }\n\tSYS_DUP            = 41  // { int sys_dup(int fd); }\n\tSYS_FSTATAT        = 42  // { int sys_fstatat(int fd, const char *path, struct stat *buf, int flag); }\n\tSYS_GETEGID        = 43  // { gid_t sys_getegid(void); }\n\tSYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }\n\tSYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }\n\tSYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }\n\tSYS_GETGID         = 47  // { gid_t sys_getgid(void); }\n\tSYS_SIGPROCMASK    = 48  // { int sys_sigprocmask(int how, sigset_t mask); }\n\tSYS_SETLOGIN       = 50  // { int sys_setlogin(const char *namebuf); }\n\tSYS_ACCT           = 51  // { int sys_acct(const char *path); }\n\tSYS_SIGPENDING     = 52  // { int sys_sigpending(void); }\n\tSYS_FSTAT          = 53  // { int sys_fstat(int fd, struct stat *sb); }\n\tSYS_IOCTL          = 54  // { int sys_ioctl(int fd, u_long com, ... void *data); }\n\tSYS_REBOOT         = 55  // { int sys_reboot(int opt); }\n\tSYS_REVOKE         = 56  // { int sys_revoke(const char *path); }\n\tSYS_SYMLINK        = 57  // { int sys_symlink(const char *path, const char *link); }\n\tSYS_READLINK       = 58  // { ssize_t sys_readlink(const char *path, char *buf, size_t count); }\n\tSYS_EXECVE         = 59  // { int sys_execve(const char *path, char * const *argp, char * const *envp); }\n\tSYS_UMASK          = 60  // { mode_t sys_umask(mode_t newmask); }\n\tSYS_CHROOT         = 61  // { int sys_chroot(const char *path); }\n\tSYS_GETFSSTAT      = 62  // { int sys_getfsstat(struct statfs *buf, size_t bufsize, int flags); }\n\tSYS_STATFS         = 63  // { int sys_statfs(const char *path, struct statfs *buf); }\n\tSYS_FSTATFS        = 64  // { int sys_fstatfs(int fd, struct statfs *buf); }\n\tSYS_FHSTATFS       = 65  // { int sys_fhstatfs(const fhandle_t *fhp, struct statfs *buf); }\n\tSYS_VFORK          = 66  // { int sys_vfork(void); }\n\tSYS_GETTIMEOFDAY   = 67  // { int sys_gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_SETTIMEOFDAY   = 68  // { int sys_settimeofday(const struct timeval *tv, const struct timezone *tzp); }\n\tSYS_SETITIMER      = 69  // { int sys_setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_GETITIMER      = 70  // { int sys_getitimer(int which, struct itimerval *itv); }\n\tSYS_SELECT         = 71  // { int sys_select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_KEVENT         = 72  // { int sys_kevent(int fd, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_MUNMAP         = 73  // { int sys_munmap(void *addr, size_t len); }\n\tSYS_MPROTECT       = 74  // { int sys_mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE        = 75  // { int sys_madvise(void *addr, size_t len, int behav); }\n\tSYS_UTIMES         = 76  // { int sys_utimes(const char *path, const struct timeval *tptr); }\n\tSYS_FUTIMES        = 77  // { int sys_futimes(int fd, const struct timeval *tptr); }\n\tSYS_GETGROUPS      = 79  // { int sys_getgroups(int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS      = 80  // { int sys_setgroups(int gidsetsize, const gid_t *gidset); }\n\tSYS_GETPGRP        = 81  // { int sys_getpgrp(void); }\n\tSYS_SETPGID        = 82  // { int sys_setpgid(pid_t pid, pid_t pgid); }\n\tSYS_FUTEX          = 83  // { int sys_futex(uint32_t *f, int op, int val, const struct timespec *timeout, uint32_t *g); }\n\tSYS_UTIMENSAT      = 84  // { int sys_utimensat(int fd, const char *path, const struct timespec *times, int flag); }\n\tSYS_FUTIMENS       = 85  // { int sys_futimens(int fd, const struct timespec *times); }\n\tSYS_KBIND          = 86  // { int sys_kbind(const struct __kbind *param, size_t psize, int64_t proc_cookie); }\n\tSYS_CLOCK_GETTIME  = 87  // { int sys_clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME  = 88  // { int sys_clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES   = 89  // { int sys_clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_DUP2           = 90  // { int sys_dup2(int from, int to); }\n\tSYS_NANOSLEEP      = 91  // { int sys_nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_FCNTL          = 92  // { int sys_fcntl(int fd, int cmd, ... void *arg); }\n\tSYS_ACCEPT4        = 93  // { int sys_accept4(int s, struct sockaddr *name, socklen_t *anamelen, int flags); }\n\tSYS___THRSLEEP     = 94  // { int sys___thrsleep(const volatile void *ident, clockid_t clock_id, const struct timespec *tp, void *lock, const int *abort); }\n\tSYS_FSYNC          = 95  // { int sys_fsync(int fd); }\n\tSYS_SETPRIORITY    = 96  // { int sys_setpriority(int which, id_t who, int prio); }\n\tSYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }\n\tSYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }\n\tSYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }\n\tSYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }\n\tSYS_DUP3           = 102 // { int sys_dup3(int from, int to, int flags); }\n\tSYS_SIGRETURN      = 103 // { int sys_sigreturn(struct sigcontext *sigcntxp); }\n\tSYS_BIND           = 104 // { int sys_bind(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_SETSOCKOPT     = 105 // { int sys_setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }\n\tSYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }\n\tSYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, u_int flags, int atflags); }\n\tSYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, const char *execpromises); }\n\tSYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }\n\tSYS_SENDSYSLOG     = 112 // { int sys_sendsyslog(const char *buf, size_t nbyte, int flags); }\n\tSYS_UNVEIL         = 114 // { int sys_unveil(const char *path, const char *permissions); }\n\tSYS_GETSOCKOPT     = 118 // { int sys_getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); }\n\tSYS_THRKILL        = 119 // { int sys_thrkill(pid_t tid, int signum, void *tcb); }\n\tSYS_READV          = 120 // { ssize_t sys_readv(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_WRITEV         = 121 // { ssize_t sys_writev(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_KILL           = 122 // { int sys_kill(int pid, int signum); }\n\tSYS_FCHOWN         = 123 // { int sys_fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS_FCHMOD         = 124 // { int sys_fchmod(int fd, mode_t mode); }\n\tSYS_SETREUID       = 126 // { int sys_setreuid(uid_t ruid, uid_t euid); }\n\tSYS_SETREGID       = 127 // { int sys_setregid(gid_t rgid, gid_t egid); }\n\tSYS_RENAME         = 128 // { int sys_rename(const char *from, const char *to); }\n\tSYS_FLOCK          = 131 // { int sys_flock(int fd, int how); }\n\tSYS_MKFIFO         = 132 // { int sys_mkfifo(const char *path, mode_t mode); }\n\tSYS_SENDTO         = 133 // { ssize_t sys_sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); }\n\tSYS_SHUTDOWN       = 134 // { int sys_shutdown(int s, int how); }\n\tSYS_SOCKETPAIR     = 135 // { int sys_socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR          = 136 // { int sys_mkdir(const char *path, mode_t mode); }\n\tSYS_RMDIR          = 137 // { int sys_rmdir(const char *path); }\n\tSYS_ADJTIME        = 140 // { int sys_adjtime(const struct timeval *delta, struct timeval *olddelta); }\n\tSYS_GETLOGIN_R     = 141 // { int sys_getlogin_r(char *namebuf, u_int namelen); }\n\tSYS_SETSID         = 147 // { int sys_setsid(void); }\n\tSYS_QUOTACTL       = 148 // { int sys_quotactl(const char *path, int cmd, int uid, char *arg); }\n\tSYS_NFSSVC         = 155 // { int sys_nfssvc(int flag, void *argp); }\n\tSYS_GETFH          = 161 // { int sys_getfh(const char *fname, fhandle_t *fhp); }\n\tSYS_SYSARCH        = 165 // { int sys_sysarch(int op, void *parms); }\n\tSYS_PREAD          = 173 // { ssize_t sys_pread(int fd, void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_PWRITE         = 174 // { ssize_t sys_pwrite(int fd, const void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_SETGID         = 181 // { int sys_setgid(gid_t gid); }\n\tSYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }\n\tSYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }\n\tSYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }\n\tSYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }\n\tSYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }\n\tSYS_GETRLIMIT      = 194 // { int sys_getrlimit(int which, struct rlimit *rlp); }\n\tSYS_SETRLIMIT      = 195 // { int sys_setrlimit(int which, const struct rlimit *rlp); }\n\tSYS_MMAP           = 197 // { void *sys_mmap(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_LSEEK          = 199 // { off_t sys_lseek(int fd, int pad, off_t offset, int whence); }\n\tSYS_TRUNCATE       = 200 // { int sys_truncate(const char *path, int pad, off_t length); }\n\tSYS_FTRUNCATE      = 201 // { int sys_ftruncate(int fd, int pad, off_t length); }\n\tSYS_SYSCTL         = 202 // { int sys_sysctl(const int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); }\n\tSYS_MLOCK          = 203 // { int sys_mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK        = 204 // { int sys_munlock(const void *addr, size_t len); }\n\tSYS_GETPGID        = 207 // { pid_t sys_getpgid(pid_t pid); }\n\tSYS_UTRACE         = 209 // { int sys_utrace(const char *label, const void *addr, size_t len); }\n\tSYS_SEMGET         = 221 // { int sys_semget(key_t key, int nsems, int semflg); }\n\tSYS_MSGGET         = 225 // { int sys_msgget(key_t key, int msgflg); }\n\tSYS_MSGSND         = 226 // { int sys_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV         = 227 // { int sys_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT          = 228 // { void *sys_shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT          = 230 // { int sys_shmdt(const void *shmaddr); }\n\tSYS_MINHERIT       = 250 // { int sys_minherit(void *addr, size_t len, int inherit); }\n\tSYS_POLL           = 252 // { int sys_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID      = 253 // { int sys_issetugid(void); }\n\tSYS_LCHOWN         = 254 // { int sys_lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_GETSID         = 255 // { pid_t sys_getsid(pid_t pid); }\n\tSYS_MSYNC          = 256 // { int sys_msync(void *addr, size_t len, int flags); }\n\tSYS_PIPE           = 263 // { int sys_pipe(int *fdp); }\n\tSYS_FHOPEN         = 264 // { int sys_fhopen(const fhandle_t *fhp, int flags); }\n\tSYS_PREADV         = 267 // { ssize_t sys_preadv(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_PWRITEV        = 268 // { ssize_t sys_pwritev(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_KQUEUE         = 269 // { int sys_kqueue(void); }\n\tSYS_MLOCKALL       = 271 // { int sys_mlockall(int flags); }\n\tSYS_MUNLOCKALL     = 272 // { int sys_munlockall(void); }\n\tSYS_GETRESUID      = 281 // { int sys_getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_SETRESUID      = 282 // { int sys_setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_GETRESGID      = 283 // { int sys_getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_SETRESGID      = 284 // { int sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_MQUERY         = 286 // { void *sys_mquery(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_CLOSEFROM      = 287 // { int sys_closefrom(int fd); }\n\tSYS_SIGALTSTACK    = 288 // { int sys_sigaltstack(const struct sigaltstack *nss, struct sigaltstack *oss); }\n\tSYS_SHMGET         = 289 // { int sys_shmget(key_t key, size_t size, int shmflg); }\n\tSYS_SEMOP          = 290 // { int sys_semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_FHSTAT         = 294 // { int sys_fhstat(const fhandle_t *fhp, struct stat *sb); }\n\tSYS___SEMCTL       = 295 // { int sys___semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_SHMCTL         = 296 // { int sys_shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_MSGCTL         = 297 // { int sys_msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_SCHED_YIELD    = 298 // { int sys_sched_yield(void); }\n\tSYS_GETTHRID       = 299 // { pid_t sys_getthrid(void); }\n\tSYS___THRWAKEUP    = 301 // { int sys___thrwakeup(const volatile void *ident, int n); }\n\tSYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }\n\tSYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }\n\tSYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }\n\tSYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }\n\tSYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }\n\tSYS_GETRTABLE      = 311 // { int sys_getrtable(void); }\n\tSYS_FACCESSAT      = 313 // { int sys_faccessat(int fd, const char *path, int amode, int flag); }\n\tSYS_FCHMODAT       = 314 // { int sys_fchmodat(int fd, const char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT       = 315 // { int sys_fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag); }\n\tSYS_LINKAT         = 317 // { int sys_linkat(int fd1, const char *path1, int fd2, const char *path2, int flag); }\n\tSYS_MKDIRAT        = 318 // { int sys_mkdirat(int fd, const char *path, mode_t mode); }\n\tSYS_MKFIFOAT       = 319 // { int sys_mkfifoat(int fd, const char *path, mode_t mode); }\n\tSYS_MKNODAT        = 320 // { int sys_mknodat(int fd, const char *path, mode_t mode, dev_t dev); }\n\tSYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, ... mode_t mode); }\n\tSYS_READLINKAT     = 322 // { ssize_t sys_readlinkat(int fd, const char *path, char *buf, size_t count); }\n\tSYS_RENAMEAT       = 323 // { int sys_renameat(int fromfd, const char *from, int tofd, const char *to); }\n\tSYS_SYMLINKAT      = 324 // { int sys_symlinkat(const char *path, int fd, const char *link); }\n\tSYS_UNLINKAT       = 325 // { int sys_unlinkat(int fd, const char *path, int flag); }\n\tSYS___SET_TCB      = 329 // { void sys___set_tcb(void *tcb); }\n\tSYS___GET_TCB      = 330 // { void *sys___get_tcb(void); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go",
    "content": "// go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips64,openbsd\n\npackage unix\n\nconst (\n\tSYS_EXIT           = 1   // { void sys_exit(int rval); }\n\tSYS_FORK           = 2   // { int sys_fork(void); }\n\tSYS_READ           = 3   // { ssize_t sys_read(int fd, void *buf, size_t nbyte); }\n\tSYS_WRITE          = 4   // { ssize_t sys_write(int fd, const void *buf, size_t nbyte); }\n\tSYS_OPEN           = 5   // { int sys_open(const char *path, int flags, ... mode_t mode); }\n\tSYS_CLOSE          = 6   // { int sys_close(int fd); }\n\tSYS_GETENTROPY     = 7   // { int sys_getentropy(void *buf, size_t nbyte); }\n\tSYS___TFORK        = 8   // { int sys___tfork(const struct __tfork *param, size_t psize); }\n\tSYS_LINK           = 9   // { int sys_link(const char *path, const char *link); }\n\tSYS_UNLINK         = 10  // { int sys_unlink(const char *path); }\n\tSYS_WAIT4          = 11  // { pid_t sys_wait4(pid_t pid, int *status, int options, struct rusage *rusage); }\n\tSYS_CHDIR          = 12  // { int sys_chdir(const char *path); }\n\tSYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }\n\tSYS_MKNOD          = 14  // { int sys_mknod(const char *path, mode_t mode, dev_t dev); }\n\tSYS_CHMOD          = 15  // { int sys_chmod(const char *path, mode_t mode); }\n\tSYS_CHOWN          = 16  // { int sys_chown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_OBREAK         = 17  // { int sys_obreak(char *nsize); } break\n\tSYS_GETDTABLECOUNT = 18  // { int sys_getdtablecount(void); }\n\tSYS_GETRUSAGE      = 19  // { int sys_getrusage(int who, struct rusage *rusage); }\n\tSYS_GETPID         = 20  // { pid_t sys_getpid(void); }\n\tSYS_MOUNT          = 21  // { int sys_mount(const char *type, const char *path, int flags, void *data); }\n\tSYS_UNMOUNT        = 22  // { int sys_unmount(const char *path, int flags); }\n\tSYS_SETUID         = 23  // { int sys_setuid(uid_t uid); }\n\tSYS_GETUID         = 24  // { uid_t sys_getuid(void); }\n\tSYS_GETEUID        = 25  // { uid_t sys_geteuid(void); }\n\tSYS_PTRACE         = 26  // { int sys_ptrace(int req, pid_t pid, caddr_t addr, int data); }\n\tSYS_RECVMSG        = 27  // { ssize_t sys_recvmsg(int s, struct msghdr *msg, int flags); }\n\tSYS_SENDMSG        = 28  // { ssize_t sys_sendmsg(int s, const struct msghdr *msg, int flags); }\n\tSYS_RECVFROM       = 29  // { ssize_t sys_recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); }\n\tSYS_ACCEPT         = 30  // { int sys_accept(int s, struct sockaddr *name, socklen_t *anamelen); }\n\tSYS_GETPEERNAME    = 31  // { int sys_getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_GETSOCKNAME    = 32  // { int sys_getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); }\n\tSYS_ACCESS         = 33  // { int sys_access(const char *path, int amode); }\n\tSYS_CHFLAGS        = 34  // { int sys_chflags(const char *path, u_int flags); }\n\tSYS_FCHFLAGS       = 35  // { int sys_fchflags(int fd, u_int flags); }\n\tSYS_SYNC           = 36  // { void sys_sync(void); }\n\tSYS_MSYSCALL       = 37  // { int sys_msyscall(void *addr, size_t len); }\n\tSYS_STAT           = 38  // { int sys_stat(const char *path, struct stat *ub); }\n\tSYS_GETPPID        = 39  // { pid_t sys_getppid(void); }\n\tSYS_LSTAT          = 40  // { int sys_lstat(const char *path, struct stat *ub); }\n\tSYS_DUP            = 41  // { int sys_dup(int fd); }\n\tSYS_FSTATAT        = 42  // { int sys_fstatat(int fd, const char *path, struct stat *buf, int flag); }\n\tSYS_GETEGID        = 43  // { gid_t sys_getegid(void); }\n\tSYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }\n\tSYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }\n\tSYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }\n\tSYS_GETGID         = 47  // { gid_t sys_getgid(void); }\n\tSYS_SIGPROCMASK    = 48  // { int sys_sigprocmask(int how, sigset_t mask); }\n\tSYS_SETLOGIN       = 50  // { int sys_setlogin(const char *namebuf); }\n\tSYS_ACCT           = 51  // { int sys_acct(const char *path); }\n\tSYS_SIGPENDING     = 52  // { int sys_sigpending(void); }\n\tSYS_FSTAT          = 53  // { int sys_fstat(int fd, struct stat *sb); }\n\tSYS_IOCTL          = 54  // { int sys_ioctl(int fd, u_long com, ... void *data); }\n\tSYS_REBOOT         = 55  // { int sys_reboot(int opt); }\n\tSYS_REVOKE         = 56  // { int sys_revoke(const char *path); }\n\tSYS_SYMLINK        = 57  // { int sys_symlink(const char *path, const char *link); }\n\tSYS_READLINK       = 58  // { ssize_t sys_readlink(const char *path, char *buf, size_t count); }\n\tSYS_EXECVE         = 59  // { int sys_execve(const char *path, char * const *argp, char * const *envp); }\n\tSYS_UMASK          = 60  // { mode_t sys_umask(mode_t newmask); }\n\tSYS_CHROOT         = 61  // { int sys_chroot(const char *path); }\n\tSYS_GETFSSTAT      = 62  // { int sys_getfsstat(struct statfs *buf, size_t bufsize, int flags); }\n\tSYS_STATFS         = 63  // { int sys_statfs(const char *path, struct statfs *buf); }\n\tSYS_FSTATFS        = 64  // { int sys_fstatfs(int fd, struct statfs *buf); }\n\tSYS_FHSTATFS       = 65  // { int sys_fhstatfs(const fhandle_t *fhp, struct statfs *buf); }\n\tSYS_VFORK          = 66  // { int sys_vfork(void); }\n\tSYS_GETTIMEOFDAY   = 67  // { int sys_gettimeofday(struct timeval *tp, struct timezone *tzp); }\n\tSYS_SETTIMEOFDAY   = 68  // { int sys_settimeofday(const struct timeval *tv, const struct timezone *tzp); }\n\tSYS_SETITIMER      = 69  // { int sys_setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); }\n\tSYS_GETITIMER      = 70  // { int sys_getitimer(int which, struct itimerval *itv); }\n\tSYS_SELECT         = 71  // { int sys_select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); }\n\tSYS_KEVENT         = 72  // { int sys_kevent(int fd, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); }\n\tSYS_MUNMAP         = 73  // { int sys_munmap(void *addr, size_t len); }\n\tSYS_MPROTECT       = 74  // { int sys_mprotect(void *addr, size_t len, int prot); }\n\tSYS_MADVISE        = 75  // { int sys_madvise(void *addr, size_t len, int behav); }\n\tSYS_UTIMES         = 76  // { int sys_utimes(const char *path, const struct timeval *tptr); }\n\tSYS_FUTIMES        = 77  // { int sys_futimes(int fd, const struct timeval *tptr); }\n\tSYS_GETGROUPS      = 79  // { int sys_getgroups(int gidsetsize, gid_t *gidset); }\n\tSYS_SETGROUPS      = 80  // { int sys_setgroups(int gidsetsize, const gid_t *gidset); }\n\tSYS_GETPGRP        = 81  // { int sys_getpgrp(void); }\n\tSYS_SETPGID        = 82  // { int sys_setpgid(pid_t pid, pid_t pgid); }\n\tSYS_FUTEX          = 83  // { int sys_futex(uint32_t *f, int op, int val, const struct timespec *timeout, uint32_t *g); }\n\tSYS_UTIMENSAT      = 84  // { int sys_utimensat(int fd, const char *path, const struct timespec *times, int flag); }\n\tSYS_FUTIMENS       = 85  // { int sys_futimens(int fd, const struct timespec *times); }\n\tSYS_KBIND          = 86  // { int sys_kbind(const struct __kbind *param, size_t psize, int64_t proc_cookie); }\n\tSYS_CLOCK_GETTIME  = 87  // { int sys_clock_gettime(clockid_t clock_id, struct timespec *tp); }\n\tSYS_CLOCK_SETTIME  = 88  // { int sys_clock_settime(clockid_t clock_id, const struct timespec *tp); }\n\tSYS_CLOCK_GETRES   = 89  // { int sys_clock_getres(clockid_t clock_id, struct timespec *tp); }\n\tSYS_DUP2           = 90  // { int sys_dup2(int from, int to); }\n\tSYS_NANOSLEEP      = 91  // { int sys_nanosleep(const struct timespec *rqtp, struct timespec *rmtp); }\n\tSYS_FCNTL          = 92  // { int sys_fcntl(int fd, int cmd, ... void *arg); }\n\tSYS_ACCEPT4        = 93  // { int sys_accept4(int s, struct sockaddr *name, socklen_t *anamelen, int flags); }\n\tSYS___THRSLEEP     = 94  // { int sys___thrsleep(const volatile void *ident, clockid_t clock_id, const struct timespec *tp, void *lock, const int *abort); }\n\tSYS_FSYNC          = 95  // { int sys_fsync(int fd); }\n\tSYS_SETPRIORITY    = 96  // { int sys_setpriority(int which, id_t who, int prio); }\n\tSYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }\n\tSYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }\n\tSYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }\n\tSYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }\n\tSYS_DUP3           = 102 // { int sys_dup3(int from, int to, int flags); }\n\tSYS_SIGRETURN      = 103 // { int sys_sigreturn(struct sigcontext *sigcntxp); }\n\tSYS_BIND           = 104 // { int sys_bind(int s, const struct sockaddr *name, socklen_t namelen); }\n\tSYS_SETSOCKOPT     = 105 // { int sys_setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }\n\tSYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }\n\tSYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, u_int flags, int atflags); }\n\tSYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, const char *execpromises); }\n\tSYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }\n\tSYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }\n\tSYS_SENDSYSLOG     = 112 // { int sys_sendsyslog(const char *buf, size_t nbyte, int flags); }\n\tSYS_UNVEIL         = 114 // { int sys_unveil(const char *path, const char *permissions); }\n\tSYS___REALPATH     = 115 // { int sys___realpath(const char *pathname, char *resolved); }\n\tSYS_GETSOCKOPT     = 118 // { int sys_getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); }\n\tSYS_THRKILL        = 119 // { int sys_thrkill(pid_t tid, int signum, void *tcb); }\n\tSYS_READV          = 120 // { ssize_t sys_readv(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_WRITEV         = 121 // { ssize_t sys_writev(int fd, const struct iovec *iovp, int iovcnt); }\n\tSYS_KILL           = 122 // { int sys_kill(int pid, int signum); }\n\tSYS_FCHOWN         = 123 // { int sys_fchown(int fd, uid_t uid, gid_t gid); }\n\tSYS_FCHMOD         = 124 // { int sys_fchmod(int fd, mode_t mode); }\n\tSYS_SETREUID       = 126 // { int sys_setreuid(uid_t ruid, uid_t euid); }\n\tSYS_SETREGID       = 127 // { int sys_setregid(gid_t rgid, gid_t egid); }\n\tSYS_RENAME         = 128 // { int sys_rename(const char *from, const char *to); }\n\tSYS_FLOCK          = 131 // { int sys_flock(int fd, int how); }\n\tSYS_MKFIFO         = 132 // { int sys_mkfifo(const char *path, mode_t mode); }\n\tSYS_SENDTO         = 133 // { ssize_t sys_sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); }\n\tSYS_SHUTDOWN       = 134 // { int sys_shutdown(int s, int how); }\n\tSYS_SOCKETPAIR     = 135 // { int sys_socketpair(int domain, int type, int protocol, int *rsv); }\n\tSYS_MKDIR          = 136 // { int sys_mkdir(const char *path, mode_t mode); }\n\tSYS_RMDIR          = 137 // { int sys_rmdir(const char *path); }\n\tSYS_ADJTIME        = 140 // { int sys_adjtime(const struct timeval *delta, struct timeval *olddelta); }\n\tSYS_GETLOGIN_R     = 141 // { int sys_getlogin_r(char *namebuf, u_int namelen); }\n\tSYS_SETSID         = 147 // { int sys_setsid(void); }\n\tSYS_QUOTACTL       = 148 // { int sys_quotactl(const char *path, int cmd, int uid, char *arg); }\n\tSYS_NFSSVC         = 155 // { int sys_nfssvc(int flag, void *argp); }\n\tSYS_GETFH          = 161 // { int sys_getfh(const char *fname, fhandle_t *fhp); }\n\tSYS___TMPFD        = 164 // { int sys___tmpfd(int flags); }\n\tSYS_SYSARCH        = 165 // { int sys_sysarch(int op, void *parms); }\n\tSYS_PREAD          = 173 // { ssize_t sys_pread(int fd, void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_PWRITE         = 174 // { ssize_t sys_pwrite(int fd, const void *buf, size_t nbyte, int pad, off_t offset); }\n\tSYS_SETGID         = 181 // { int sys_setgid(gid_t gid); }\n\tSYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }\n\tSYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }\n\tSYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }\n\tSYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }\n\tSYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }\n\tSYS_GETRLIMIT      = 194 // { int sys_getrlimit(int which, struct rlimit *rlp); }\n\tSYS_SETRLIMIT      = 195 // { int sys_setrlimit(int which, const struct rlimit *rlp); }\n\tSYS_MMAP           = 197 // { void *sys_mmap(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_LSEEK          = 199 // { off_t sys_lseek(int fd, int pad, off_t offset, int whence); }\n\tSYS_TRUNCATE       = 200 // { int sys_truncate(const char *path, int pad, off_t length); }\n\tSYS_FTRUNCATE      = 201 // { int sys_ftruncate(int fd, int pad, off_t length); }\n\tSYS_SYSCTL         = 202 // { int sys_sysctl(const int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen); }\n\tSYS_MLOCK          = 203 // { int sys_mlock(const void *addr, size_t len); }\n\tSYS_MUNLOCK        = 204 // { int sys_munlock(const void *addr, size_t len); }\n\tSYS_GETPGID        = 207 // { pid_t sys_getpgid(pid_t pid); }\n\tSYS_UTRACE         = 209 // { int sys_utrace(const char *label, const void *addr, size_t len); }\n\tSYS_SEMGET         = 221 // { int sys_semget(key_t key, int nsems, int semflg); }\n\tSYS_MSGGET         = 225 // { int sys_msgget(key_t key, int msgflg); }\n\tSYS_MSGSND         = 226 // { int sys_msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }\n\tSYS_MSGRCV         = 227 // { int sys_msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }\n\tSYS_SHMAT          = 228 // { void *sys_shmat(int shmid, const void *shmaddr, int shmflg); }\n\tSYS_SHMDT          = 230 // { int sys_shmdt(const void *shmaddr); }\n\tSYS_MINHERIT       = 250 // { int sys_minherit(void *addr, size_t len, int inherit); }\n\tSYS_POLL           = 252 // { int sys_poll(struct pollfd *fds, u_int nfds, int timeout); }\n\tSYS_ISSETUGID      = 253 // { int sys_issetugid(void); }\n\tSYS_LCHOWN         = 254 // { int sys_lchown(const char *path, uid_t uid, gid_t gid); }\n\tSYS_GETSID         = 255 // { pid_t sys_getsid(pid_t pid); }\n\tSYS_MSYNC          = 256 // { int sys_msync(void *addr, size_t len, int flags); }\n\tSYS_PIPE           = 263 // { int sys_pipe(int *fdp); }\n\tSYS_FHOPEN         = 264 // { int sys_fhopen(const fhandle_t *fhp, int flags); }\n\tSYS_PREADV         = 267 // { ssize_t sys_preadv(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_PWRITEV        = 268 // { ssize_t sys_pwritev(int fd, const struct iovec *iovp, int iovcnt, int pad, off_t offset); }\n\tSYS_KQUEUE         = 269 // { int sys_kqueue(void); }\n\tSYS_MLOCKALL       = 271 // { int sys_mlockall(int flags); }\n\tSYS_MUNLOCKALL     = 272 // { int sys_munlockall(void); }\n\tSYS_GETRESUID      = 281 // { int sys_getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }\n\tSYS_SETRESUID      = 282 // { int sys_setresuid(uid_t ruid, uid_t euid, uid_t suid); }\n\tSYS_GETRESGID      = 283 // { int sys_getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }\n\tSYS_SETRESGID      = 284 // { int sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid); }\n\tSYS_MQUERY         = 286 // { void *sys_mquery(void *addr, size_t len, int prot, int flags, int fd, long pad, off_t pos); }\n\tSYS_CLOSEFROM      = 287 // { int sys_closefrom(int fd); }\n\tSYS_SIGALTSTACK    = 288 // { int sys_sigaltstack(const struct sigaltstack *nss, struct sigaltstack *oss); }\n\tSYS_SHMGET         = 289 // { int sys_shmget(key_t key, size_t size, int shmflg); }\n\tSYS_SEMOP          = 290 // { int sys_semop(int semid, struct sembuf *sops, size_t nsops); }\n\tSYS_FHSTAT         = 294 // { int sys_fhstat(const fhandle_t *fhp, struct stat *sb); }\n\tSYS___SEMCTL       = 295 // { int sys___semctl(int semid, int semnum, int cmd, union semun *arg); }\n\tSYS_SHMCTL         = 296 // { int sys_shmctl(int shmid, int cmd, struct shmid_ds *buf); }\n\tSYS_MSGCTL         = 297 // { int sys_msgctl(int msqid, int cmd, struct msqid_ds *buf); }\n\tSYS_SCHED_YIELD    = 298 // { int sys_sched_yield(void); }\n\tSYS_GETTHRID       = 299 // { pid_t sys_getthrid(void); }\n\tSYS___THRWAKEUP    = 301 // { int sys___thrwakeup(const volatile void *ident, int n); }\n\tSYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }\n\tSYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }\n\tSYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }\n\tSYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }\n\tSYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }\n\tSYS_GETRTABLE      = 311 // { int sys_getrtable(void); }\n\tSYS_FACCESSAT      = 313 // { int sys_faccessat(int fd, const char *path, int amode, int flag); }\n\tSYS_FCHMODAT       = 314 // { int sys_fchmodat(int fd, const char *path, mode_t mode, int flag); }\n\tSYS_FCHOWNAT       = 315 // { int sys_fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag); }\n\tSYS_LINKAT         = 317 // { int sys_linkat(int fd1, const char *path1, int fd2, const char *path2, int flag); }\n\tSYS_MKDIRAT        = 318 // { int sys_mkdirat(int fd, const char *path, mode_t mode); }\n\tSYS_MKFIFOAT       = 319 // { int sys_mkfifoat(int fd, const char *path, mode_t mode); }\n\tSYS_MKNODAT        = 320 // { int sys_mknodat(int fd, const char *path, mode_t mode, dev_t dev); }\n\tSYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, ... mode_t mode); }\n\tSYS_READLINKAT     = 322 // { ssize_t sys_readlinkat(int fd, const char *path, char *buf, size_t count); }\n\tSYS_RENAMEAT       = 323 // { int sys_renameat(int fromfd, const char *from, int tofd, const char *to); }\n\tSYS_SYMLINKAT      = 324 // { int sys_symlinkat(const char *path, int fd, const char *link); }\n\tSYS_UNLINKAT       = 325 // { int sys_unlinkat(int fd, const char *path, int flag); }\n\tSYS___SET_TCB      = 329 // { void sys___set_tcb(void *tcb); }\n\tSYS___GET_TCB      = 330 // { void *sys___get_tcb(void); }\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go",
    "content": "// cgo -godefs types_aix.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc,aix\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x4\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x4\n\tSizeofLongLong = 0x8\n\tPathMax        = 0x3ff\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int32\n\t_C_long_long int64\n)\n\ntype off64 int64\ntype off int32\ntype Mode_t uint32\n\ntype Timespec struct {\n\tSec  int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Timeval32 struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Timex struct{}\n\ntype Time_t int32\n\ntype Tms struct{}\n\ntype Utimbuf struct {\n\tActime  int32\n\tModtime int32\n}\n\ntype Timezone struct {\n\tMinuteswest int32\n\tDsttime     int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype Pid_t int32\n\ntype _Gid_t uint32\n\ntype dev_t uint32\n\ntype Stat_t struct {\n\tDev      uint32\n\tIno      uint32\n\tMode     uint32\n\tNlink    int16\n\tFlag     uint16\n\tUid      uint32\n\tGid      uint32\n\tRdev     uint32\n\tSize     int32\n\tAtim     Timespec\n\tMtim     Timespec\n\tCtim     Timespec\n\tBlksize  int32\n\tBlocks   int32\n\tVfstype  int32\n\tVfs      uint32\n\tType     uint32\n\tGen      uint32\n\tReserved [9]uint32\n}\n\ntype StatxTimestamp struct{}\n\ntype Statx_t struct{}\n\ntype Dirent struct {\n\tOffset uint32\n\tIno    uint32\n\tReclen uint16\n\tNamlen uint16\n\tName   [256]uint8\n}\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]uint8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [1023]uint8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [120]uint8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]uint8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [1012]uint8\n}\n\ntype _Socklen uint32\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x404\n\tSizeofSockaddrUnix     = 0x401\n\tSizeofSockaddrDatalink = 0x80\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofMsghdr           = 0x1c\n\tSizeofCmsghdr          = 0xc\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tSizeofIfMsghdr = 0x10\n)\n\ntype IfMsgHdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\tAddrlen uint8\n\t_       [1]byte\n}\n\ntype FdSet struct {\n\tBits [2048]int32\n}\n\ntype Utsname struct {\n\tSysname  [32]byte\n\tNodename [32]byte\n\tRelease  [32]byte\n\tVersion  [32]byte\n\tMachine  [32]byte\n}\n\ntype Ustat_t struct{}\n\ntype Sigset_t struct {\n\tLosigs uint32\n\tHisigs uint32\n}\n\nconst (\n\tAT_FDCWD            = -0x2\n\tAT_REMOVEDIR        = 0x1\n\tAT_SYMLINK_NOFOLLOW = 0x1\n)\n\ntype Termios struct {\n\tIflag uint32\n\tOflag uint32\n\tCflag uint32\n\tLflag uint32\n\tCc    [16]uint8\n}\n\ntype Termio struct {\n\tIflag uint16\n\tOflag uint16\n\tCflag uint16\n\tLflag uint16\n\tLine  uint8\n\tCc    [8]uint8\n\t_     [1]byte\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  uint16\n\tRevents uint16\n}\n\nconst (\n\tPOLLERR    = 0x4000\n\tPOLLHUP    = 0x2000\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x8000\n\tPOLLOUT    = 0x2\n\tPOLLPRI    = 0x4\n\tPOLLRDBAND = 0x20\n\tPOLLRDNORM = 0x10\n\tPOLLWRBAND = 0x40\n\tPOLLWRNORM = 0x2\n)\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tSysid  uint32\n\tPid    int32\n\tVfs    int32\n\tStart  int64\n\tLen    int64\n}\n\ntype Fsid_t struct {\n\tVal [2]uint32\n}\ntype Fsid64_t struct {\n\tVal [2]uint64\n}\n\ntype Statfs_t struct {\n\tVersion   int32\n\tType      int32\n\tBsize     uint32\n\tBlocks    uint32\n\tBfree     uint32\n\tBavail    uint32\n\tFiles     uint32\n\tFfree     uint32\n\tFsid      Fsid_t\n\tVfstype   int32\n\tFsize     uint32\n\tVfsnumber int32\n\tVfsoff    int32\n\tVfslen    int32\n\tVfsvers   int32\n\tFname     [32]uint8\n\tFpack     [32]uint8\n\tName_max  int32\n}\n\nconst RNDGETENTCNT = 0x80045200\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go",
    "content": "// cgo -godefs types_aix.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc64,aix\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n\tPathMax        = 0x3ff\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype off64 int64\ntype off int64\ntype Mode_t uint32\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int32\n\t_    [4]byte\n}\n\ntype Timeval32 struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Timex struct{}\n\ntype Time_t int64\n\ntype Tms struct{}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Timezone struct {\n\tMinuteswest int32\n\tDsttime     int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype Pid_t int32\n\ntype _Gid_t uint32\n\ntype dev_t uint64\n\ntype Stat_t struct {\n\tDev      uint64\n\tIno      uint64\n\tMode     uint32\n\tNlink    int16\n\tFlag     uint16\n\tUid      uint32\n\tGid      uint32\n\tRdev     uint64\n\tSsize    int32\n\tAtim     Timespec\n\tMtim     Timespec\n\tCtim     Timespec\n\tBlksize  int64\n\tBlocks   int64\n\tVfstype  int32\n\tVfs      uint32\n\tType     uint32\n\tGen      uint32\n\tReserved [9]uint32\n\tPadto_ll uint32\n\tSize     int64\n}\n\ntype StatxTimestamp struct{}\n\ntype Statx_t struct{}\n\ntype Dirent struct {\n\tOffset uint64\n\tIno    uint64\n\tReclen uint16\n\tNamlen uint16\n\tName   [256]uint8\n\t_      [4]byte\n}\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]uint8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [1023]uint8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [120]uint8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]uint8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [1012]uint8\n}\n\ntype _Socklen uint32\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x404\n\tSizeofSockaddrUnix     = 0x401\n\tSizeofSockaddrDatalink = 0x80\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tSizeofIfMsghdr = 0x10\n)\n\ntype IfMsgHdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\tAddrlen uint8\n\t_       [1]byte\n}\n\ntype FdSet struct {\n\tBits [1024]int64\n}\n\ntype Utsname struct {\n\tSysname  [32]byte\n\tNodename [32]byte\n\tRelease  [32]byte\n\tVersion  [32]byte\n\tMachine  [32]byte\n}\n\ntype Ustat_t struct{}\n\ntype Sigset_t struct {\n\tSet [4]uint64\n}\n\nconst (\n\tAT_FDCWD            = -0x2\n\tAT_REMOVEDIR        = 0x1\n\tAT_SYMLINK_NOFOLLOW = 0x1\n)\n\ntype Termios struct {\n\tIflag uint32\n\tOflag uint32\n\tCflag uint32\n\tLflag uint32\n\tCc    [16]uint8\n}\n\ntype Termio struct {\n\tIflag uint16\n\tOflag uint16\n\tCflag uint16\n\tLflag uint16\n\tLine  uint8\n\tCc    [8]uint8\n\t_     [1]byte\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  uint16\n\tRevents uint16\n}\n\nconst (\n\tPOLLERR    = 0x4000\n\tPOLLHUP    = 0x2000\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x8000\n\tPOLLOUT    = 0x2\n\tPOLLPRI    = 0x4\n\tPOLLRDBAND = 0x20\n\tPOLLRDNORM = 0x10\n\tPOLLWRBAND = 0x40\n\tPOLLWRNORM = 0x2\n)\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tSysid  uint32\n\tPid    int32\n\tVfs    int32\n\tStart  int64\n\tLen    int64\n}\n\ntype Fsid_t struct {\n\tVal [2]uint32\n}\ntype Fsid64_t struct {\n\tVal [2]uint64\n}\n\ntype Statfs_t struct {\n\tVersion   int32\n\tType      int32\n\tBsize     uint64\n\tBlocks    uint64\n\tBfree     uint64\n\tBavail    uint64\n\tFiles     uint64\n\tFfree     uint64\n\tFsid      Fsid64_t\n\tVfstype   int32\n\tFsize     uint64\n\tVfsnumber int32\n\tVfsoff    int32\n\tVfslen    int32\n\tVfsvers   int32\n\tFname     [32]uint8\n\tFpack     [32]uint8\n\tName_max  int32\n\t_         [4]byte\n}\n\nconst RNDGETENTCNT = 0x80045200\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_darwin_386.go",
    "content": "// cgo -godefs types_darwin.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,darwin\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x4\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x4\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Timeval32 struct{}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev     int32\n\tMode    uint16\n\tNlink   uint16\n\tIno     uint64\n\tUid     uint32\n\tGid     uint32\n\tRdev    int32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\tLspare  int32\n\tQspare  [2]int64\n}\n\ntype Statfs_t struct {\n\tBsize       uint32\n\tIosize      int32\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      uint64\n\tFiles       uint64\n\tFfree       uint64\n\tFsid        Fsid\n\tOwner       uint32\n\tType        uint32\n\tFlags       uint32\n\tFssubtype   uint32\n\tFstypename  [16]int8\n\tMntonname   [1024]int8\n\tMntfromname [1024]int8\n\tReserved    [8]uint32\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Fstore_t struct {\n\tFlags      uint32\n\tPosmode    int32\n\tOffset     int64\n\tLength     int64\n\tBytesalloc int64\n}\n\ntype Radvisory_t struct {\n\tOffset int64\n\tCount  int32\n}\n\ntype Fbootstraptransfer_t struct {\n\tOffset int64\n\tLength uint32\n\tBuffer *byte\n}\n\ntype Log2phys_t struct {\n\tFlags       uint32\n\tContigbytes int64\n\tDevoffset   int64\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\ntype Dirent struct {\n\tIno     uint64\n\tSeekoff uint64\n\tReclen  uint16\n\tNamlen  uint16\n\tType    uint8\n\tName    [1024]int8\n\t_       [3]byte\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet4Pktinfo struct {\n\tIfindex  uint32\n\tSpec_dst [4]byte /* in_addr */\n\tAddr     [4]byte /* in_addr */\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x14\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x1c\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet4Pktinfo     = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint32\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int32\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]int32\n}\n\nconst (\n\tSizeofIfMsghdr    = 0x70\n\tSizeofIfData      = 0x60\n\tSizeofIfaMsghdr   = 0x14\n\tSizeofIfmaMsghdr  = 0x10\n\tSizeofIfmaMsghdr2 = 0x14\n\tSizeofRtMsghdr    = 0x5c\n\tSizeofRtMetrics   = 0x38\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tData    IfData\n}\n\ntype IfData struct {\n\tType       uint8\n\tTypelen    uint8\n\tPhysical   uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tRecvquota  uint8\n\tXmitquota  uint8\n\tUnused1    uint8\n\tMtu        uint32\n\tMetric     uint32\n\tBaudrate   uint32\n\tIpackets   uint32\n\tIerrors    uint32\n\tOpackets   uint32\n\tOerrors    uint32\n\tCollisions uint32\n\tIbytes     uint32\n\tObytes     uint32\n\tImcasts    uint32\n\tOmcasts    uint32\n\tIqdrops    uint32\n\tNoproto    uint32\n\tRecvtiming uint32\n\tXmittiming uint32\n\tLastchange Timeval\n\tUnused2    uint32\n\tHwassist   uint32\n\tReserved1  uint32\n\tReserved2  uint32\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tMetric  int32\n}\n\ntype IfmaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n}\n\ntype IfmaMsghdr2 struct {\n\tMsglen   uint16\n\tVersion  uint8\n\tType     uint8\n\tAddrs    int32\n\tFlags    int32\n\tIndex    uint16\n\t_        [2]byte\n\tRefcount int32\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       [2]byte\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tUse     int32\n\tInits   uint32\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint32\n\tMtu      uint32\n\tHopcount uint32\n\tExpire   int32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPksent   uint32\n\tFiller   [4]uint32\n}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x8\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  Timeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x2\n\tAT_REMOVEDIR        = 0x80\n\tAT_SYMLINK_FOLLOW   = 0x40\n\tAT_SYMLINK_NOFOLLOW = 0x20\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go",
    "content": "// cgo -godefs types_darwin.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,darwin\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int32\n\t_    [4]byte\n}\n\ntype Timeval32 struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev     int32\n\tMode    uint16\n\tNlink   uint16\n\tIno     uint64\n\tUid     uint32\n\tGid     uint32\n\tRdev    int32\n\t_       [4]byte\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\tLspare  int32\n\tQspare  [2]int64\n}\n\ntype Statfs_t struct {\n\tBsize       uint32\n\tIosize      int32\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      uint64\n\tFiles       uint64\n\tFfree       uint64\n\tFsid        Fsid\n\tOwner       uint32\n\tType        uint32\n\tFlags       uint32\n\tFssubtype   uint32\n\tFstypename  [16]int8\n\tMntonname   [1024]int8\n\tMntfromname [1024]int8\n\tReserved    [8]uint32\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Fstore_t struct {\n\tFlags      uint32\n\tPosmode    int32\n\tOffset     int64\n\tLength     int64\n\tBytesalloc int64\n}\n\ntype Radvisory_t struct {\n\tOffset int64\n\tCount  int32\n\t_      [4]byte\n}\n\ntype Fbootstraptransfer_t struct {\n\tOffset int64\n\tLength uint64\n\tBuffer *byte\n}\n\ntype Log2phys_t struct {\n\tFlags uint32\n\t_     [8]byte\n\t_     [8]byte\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\ntype Dirent struct {\n\tIno     uint64\n\tSeekoff uint64\n\tReclen  uint16\n\tNamlen  uint16\n\tType    uint8\n\tName    [1024]int8\n\t_       [3]byte\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\t_          [4]byte\n\tIov        *Iovec\n\tIovlen     int32\n\t_          [4]byte\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet4Pktinfo struct {\n\tIfindex  uint32\n\tSpec_dst [4]byte /* in_addr */\n\tAddr     [4]byte /* in_addr */\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x14\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet4Pktinfo     = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint64\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int64\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]int32\n}\n\nconst (\n\tSizeofIfMsghdr    = 0x70\n\tSizeofIfData      = 0x60\n\tSizeofIfaMsghdr   = 0x14\n\tSizeofIfmaMsghdr  = 0x10\n\tSizeofIfmaMsghdr2 = 0x14\n\tSizeofRtMsghdr    = 0x5c\n\tSizeofRtMetrics   = 0x38\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tData    IfData\n}\n\ntype IfData struct {\n\tType       uint8\n\tTypelen    uint8\n\tPhysical   uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tRecvquota  uint8\n\tXmitquota  uint8\n\tUnused1    uint8\n\tMtu        uint32\n\tMetric     uint32\n\tBaudrate   uint32\n\tIpackets   uint32\n\tIerrors    uint32\n\tOpackets   uint32\n\tOerrors    uint32\n\tCollisions uint32\n\tIbytes     uint32\n\tObytes     uint32\n\tImcasts    uint32\n\tOmcasts    uint32\n\tIqdrops    uint32\n\tNoproto    uint32\n\tRecvtiming uint32\n\tXmittiming uint32\n\tLastchange Timeval32\n\tUnused2    uint32\n\tHwassist   uint32\n\tReserved1  uint32\n\tReserved2  uint32\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tMetric  int32\n}\n\ntype IfmaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n}\n\ntype IfmaMsghdr2 struct {\n\tMsglen   uint16\n\tVersion  uint8\n\tType     uint8\n\tAddrs    int32\n\tFlags    int32\n\tIndex    uint16\n\t_        [2]byte\n\tRefcount int32\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       [2]byte\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tUse     int32\n\tInits   uint32\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint32\n\tMtu      uint32\n\tHopcount uint32\n\tExpire   int32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPksent   uint32\n\tFiller   [4]uint32\n}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x10\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\t_     [4]byte\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  Timeval32\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype Termios struct {\n\tIflag  uint64\n\tOflag  uint64\n\tCflag  uint64\n\tLflag  uint64\n\tCc     [20]uint8\n\t_      [4]byte\n\tIspeed uint64\n\tOspeed uint64\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x2\n\tAT_REMOVEDIR        = 0x80\n\tAT_SYMLINK_FOLLOW   = 0x40\n\tAT_SYMLINK_NOFOLLOW = 0x20\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go",
    "content": "// NOTE: cgo can't generate struct Stat_t and struct Statfs_t yet\n// Created by cgo -godefs - DO NOT EDIT\n// cgo -godefs types_darwin.go\n\n// +build arm,darwin\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x4\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x4\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Timeval32 [0]byte\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev     int32\n\tMode    uint16\n\tNlink   uint16\n\tIno     uint64\n\tUid     uint32\n\tGid     uint32\n\tRdev    int32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\tLspare  int32\n\tQspare  [2]int64\n}\n\ntype Statfs_t struct {\n\tBsize       uint32\n\tIosize      int32\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      uint64\n\tFiles       uint64\n\tFfree       uint64\n\tFsid        Fsid\n\tOwner       uint32\n\tType        uint32\n\tFlags       uint32\n\tFssubtype   uint32\n\tFstypename  [16]int8\n\tMntonname   [1024]int8\n\tMntfromname [1024]int8\n\tReserved    [8]uint32\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Fstore_t struct {\n\tFlags      uint32\n\tPosmode    int32\n\tOffset     int64\n\tLength     int64\n\tBytesalloc int64\n}\n\ntype Radvisory_t struct {\n\tOffset int64\n\tCount  int32\n}\n\ntype Fbootstraptransfer_t struct {\n\tOffset int64\n\tLength uint32\n\tBuffer *byte\n}\n\ntype Log2phys_t struct {\n\tFlags       uint32\n\tContigbytes int64\n\tDevoffset   int64\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\ntype Dirent struct {\n\tIno     uint64\n\tSeekoff uint64\n\tReclen  uint16\n\tNamlen  uint16\n\tType    uint8\n\tName    [1024]int8\n\t_       [3]byte\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet4Pktinfo struct {\n\tIfindex  uint32\n\tSpec_dst [4]byte /* in_addr */\n\tAddr     [4]byte /* in_addr */\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x14\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x1c\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet4Pktinfo     = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint32\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int32\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]int32\n}\n\nconst (\n\tSizeofIfMsghdr    = 0x70\n\tSizeofIfData      = 0x60\n\tSizeofIfaMsghdr   = 0x14\n\tSizeofIfmaMsghdr  = 0x10\n\tSizeofIfmaMsghdr2 = 0x14\n\tSizeofRtMsghdr    = 0x5c\n\tSizeofRtMetrics   = 0x38\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tData    IfData\n}\n\ntype IfData struct {\n\tType       uint8\n\tTypelen    uint8\n\tPhysical   uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tRecvquota  uint8\n\tXmitquota  uint8\n\tUnused1    uint8\n\tMtu        uint32\n\tMetric     uint32\n\tBaudrate   uint32\n\tIpackets   uint32\n\tIerrors    uint32\n\tOpackets   uint32\n\tOerrors    uint32\n\tCollisions uint32\n\tIbytes     uint32\n\tObytes     uint32\n\tImcasts    uint32\n\tOmcasts    uint32\n\tIqdrops    uint32\n\tNoproto    uint32\n\tRecvtiming uint32\n\tXmittiming uint32\n\tLastchange Timeval\n\tUnused2    uint32\n\tHwassist   uint32\n\tReserved1  uint32\n\tReserved2  uint32\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tMetric  int32\n}\n\ntype IfmaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n}\n\ntype IfmaMsghdr2 struct {\n\tMsglen   uint16\n\tVersion  uint8\n\tType     uint8\n\tAddrs    int32\n\tFlags    int32\n\tIndex    uint16\n\t_        [2]byte\n\tRefcount int32\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       [2]byte\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tUse     int32\n\tInits   uint32\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint32\n\tMtu      uint32\n\tHopcount uint32\n\tExpire   int32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPksent   uint32\n\tFiller   [4]uint32\n}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x8\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  Timeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x2\n\tAT_REMOVEDIR        = 0x80\n\tAT_SYMLINK_FOLLOW   = 0x40\n\tAT_SYMLINK_NOFOLLOW = 0x20\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go",
    "content": "// cgo -godefs types_darwin.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,darwin\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int32\n\t_    [4]byte\n}\n\ntype Timeval32 struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev     int32\n\tMode    uint16\n\tNlink   uint16\n\tIno     uint64\n\tUid     uint32\n\tGid     uint32\n\tRdev    int32\n\t_       [4]byte\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\tLspare  int32\n\tQspare  [2]int64\n}\n\ntype Statfs_t struct {\n\tBsize       uint32\n\tIosize      int32\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      uint64\n\tFiles       uint64\n\tFfree       uint64\n\tFsid        Fsid\n\tOwner       uint32\n\tType        uint32\n\tFlags       uint32\n\tFssubtype   uint32\n\tFstypename  [16]int8\n\tMntonname   [1024]int8\n\tMntfromname [1024]int8\n\tReserved    [8]uint32\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Fstore_t struct {\n\tFlags      uint32\n\tPosmode    int32\n\tOffset     int64\n\tLength     int64\n\tBytesalloc int64\n}\n\ntype Radvisory_t struct {\n\tOffset int64\n\tCount  int32\n\t_      [4]byte\n}\n\ntype Fbootstraptransfer_t struct {\n\tOffset int64\n\tLength uint64\n\tBuffer *byte\n}\n\ntype Log2phys_t struct {\n\tFlags uint32\n\t_     [8]byte\n\t_     [8]byte\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\ntype Dirent struct {\n\tIno     uint64\n\tSeekoff uint64\n\tReclen  uint16\n\tNamlen  uint16\n\tType    uint8\n\tName    [1024]int8\n\t_       [3]byte\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\t_          [4]byte\n\tIov        *Iovec\n\tIovlen     int32\n\t_          [4]byte\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet4Pktinfo struct {\n\tIfindex  uint32\n\tSpec_dst [4]byte /* in_addr */\n\tAddr     [4]byte /* in_addr */\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x14\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet4Pktinfo     = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint64\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int64\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]int32\n}\n\nconst (\n\tSizeofIfMsghdr    = 0x70\n\tSizeofIfData      = 0x60\n\tSizeofIfaMsghdr   = 0x14\n\tSizeofIfmaMsghdr  = 0x10\n\tSizeofIfmaMsghdr2 = 0x14\n\tSizeofRtMsghdr    = 0x5c\n\tSizeofRtMetrics   = 0x38\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tData    IfData\n}\n\ntype IfData struct {\n\tType       uint8\n\tTypelen    uint8\n\tPhysical   uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tRecvquota  uint8\n\tXmitquota  uint8\n\tUnused1    uint8\n\tMtu        uint32\n\tMetric     uint32\n\tBaudrate   uint32\n\tIpackets   uint32\n\tIerrors    uint32\n\tOpackets   uint32\n\tOerrors    uint32\n\tCollisions uint32\n\tIbytes     uint32\n\tObytes     uint32\n\tImcasts    uint32\n\tOmcasts    uint32\n\tIqdrops    uint32\n\tNoproto    uint32\n\tRecvtiming uint32\n\tXmittiming uint32\n\tLastchange Timeval32\n\tUnused2    uint32\n\tHwassist   uint32\n\tReserved1  uint32\n\tReserved2  uint32\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tMetric  int32\n}\n\ntype IfmaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n}\n\ntype IfmaMsghdr2 struct {\n\tMsglen   uint16\n\tVersion  uint8\n\tType     uint8\n\tAddrs    int32\n\tFlags    int32\n\tIndex    uint16\n\t_        [2]byte\n\tRefcount int32\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       [2]byte\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tUse     int32\n\tInits   uint32\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint32\n\tMtu      uint32\n\tHopcount uint32\n\tExpire   int32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPksent   uint32\n\tFiller   [4]uint32\n}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x10\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\t_     [4]byte\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  Timeval32\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype Termios struct {\n\tIflag  uint64\n\tOflag  uint64\n\tCflag  uint64\n\tLflag  uint64\n\tCc     [20]uint8\n\t_      [4]byte\n\tIspeed uint64\n\tOspeed uint64\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x2\n\tAT_REMOVEDIR        = 0x80\n\tAT_SYMLINK_FOLLOW   = 0x40\n\tAT_SYMLINK_NOFOLLOW = 0x20\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go",
    "content": "// cgo -godefs types_dragonfly.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,dragonfly\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur int64\n\tMax int64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tIno     uint64\n\tNlink   uint32\n\tDev     uint32\n\tMode    uint16\n\t_1      uint16\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize uint32\n\tFlags   uint32\n\tGen     uint32\n\tLspare  int32\n\tQspare1 int64\n\tQspare2 int64\n}\n\ntype Statfs_t struct {\n\tSpare2      int64\n\tBsize       int64\n\tIosize      int64\n\tBlocks      int64\n\tBfree       int64\n\tBavail      int64\n\tFiles       int64\n\tFfree       int64\n\tFsid        Fsid\n\tOwner       uint32\n\tType        int32\n\tFlags       int32\n\t_           [4]byte\n\tSyncwrites  int64\n\tAsyncwrites int64\n\tFstypename  [16]int8\n\tMntonname   [80]int8\n\tSyncreads   int64\n\tAsyncreads  int64\n\tSpares1     int16\n\tMntfromname [80]int8\n\tSpares2     int16\n\t_           [4]byte\n\tSpare       [2]int64\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno  uint64\n\tNamlen  uint16\n\tType    uint8\n\tUnused1 uint8\n\tUnused2 uint32\n\tName    [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n\tRcf    uint16\n\tRoute  [16]uint16\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\t_          [4]byte\n\tIov        *Iovec\n\tIovlen     int32\n\t_          [4]byte\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x36\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint64\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int64\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [16]uint64\n}\n\nconst (\n\tSizeofIfMsghdr         = 0xb0\n\tSizeofIfData           = 0xa0\n\tSizeofIfaMsghdr        = 0x14\n\tSizeofIfmaMsghdr       = 0x10\n\tSizeofIfAnnounceMsghdr = 0x18\n\tSizeofRtMsghdr         = 0x98\n\tSizeofRtMetrics        = 0x70\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tData    IfData\n}\n\ntype IfData struct {\n\tType       uint8\n\tPhysical   uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tRecvquota  uint8\n\tXmitquota  uint8\n\t_          [2]byte\n\tMtu        uint64\n\tMetric     uint64\n\tLink_state uint64\n\tBaudrate   uint64\n\tIpackets   uint64\n\tIerrors    uint64\n\tOpackets   uint64\n\tOerrors    uint64\n\tCollisions uint64\n\tIbytes     uint64\n\tObytes     uint64\n\tImcasts    uint64\n\tOmcasts    uint64\n\tIqdrops    uint64\n\tNoproto    uint64\n\tHwassist   uint64\n\tOqdrops    uint64\n\tLastchange Timeval\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tMetric  int32\n}\n\ntype IfmaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\tName    [16]int8\n\tWhat    uint16\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       [2]byte\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tUse     int32\n\tInits   uint64\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks     uint64\n\tMtu       uint64\n\tPksent    uint64\n\tExpire    uint64\n\tSendpipe  uint64\n\tSsthresh  uint64\n\tRtt       uint64\n\tRttvar    uint64\n\tRecvpipe  uint64\n\tHopcount  uint64\n\tMssopt    uint16\n\tPad       uint16\n\t_         [4]byte\n\tMsl       uint64\n\tIwmaxsegs uint64\n\tIwcapsegs uint64\n}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x10\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x20\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\t_     [4]byte\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  Timeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [6]byte\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = 0xfffafdcd\n\tAT_SYMLINK_NOFOLLOW = 0x1\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Utsname struct {\n\tSysname  [32]byte\n\tNodename [32]byte\n\tRelease  [32]byte\n\tVersion  [32]byte\n\tMachine  [32]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go",
    "content": "// cgo -godefs types_freebsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,freebsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x4\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x4\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Rlimit struct {\n\tCur int64\n\tMax int64\n}\n\ntype _Gid_t uint32\n\nconst (\n\t_statfsVersion = 0x20140518\n\t_dirblksiz     = 0x400\n)\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tNlink   uint64\n\tMode    uint16\n\t_0      int16\n\tUid     uint32\n\tGid     uint32\n\t_1      int32\n\tRdev    uint64\n\t_       int32\n\tAtim    Timespec\n\t_       int32\n\tMtim    Timespec\n\t_       int32\n\tCtim    Timespec\n\t_       int32\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint64\n\tSpare   [10]uint64\n}\n\ntype stat_freebsd11_t struct {\n\tDev     uint32\n\tIno     uint32\n\tMode    uint16\n\tNlink   uint16\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\tLspare  int32\n\tBtim    Timespec\n\t_       [8]byte\n}\n\ntype Statfs_t struct {\n\tVersion     uint32\n\tType        uint32\n\tFlags       uint64\n\tBsize       uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      int64\n\tFiles       uint64\n\tFfree       int64\n\tSyncwrites  uint64\n\tAsyncwrites uint64\n\tSyncreads   uint64\n\tAsyncreads  uint64\n\tSpare       [10]uint64\n\tNamemax     uint32\n\tOwner       uint32\n\tFsid        Fsid\n\tCharspare   [80]int8\n\tFstypename  [16]byte\n\tMntfromname [1024]byte\n\tMntonname   [1024]byte\n}\n\ntype statfs_freebsd11_t struct {\n\tVersion     uint32\n\tType        uint32\n\tFlags       uint64\n\tBsize       uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      int64\n\tFiles       uint64\n\tFfree       int64\n\tSyncwrites  uint64\n\tAsyncwrites uint64\n\tSyncreads   uint64\n\tAsyncreads  uint64\n\tSpare       [10]uint64\n\tNamemax     uint32\n\tOwner       uint32\n\tFsid        Fsid\n\tCharspare   [80]int8\n\tFstypename  [16]byte\n\tMntfromname [88]byte\n\tMntonname   [88]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n\tSysid  int32\n}\n\ntype Dirent struct {\n\tFileno uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tPad0   uint8\n\tNamlen uint16\n\tPad1   uint16\n\tName   [256]int8\n}\n\ntype dirent_freebsd11 struct {\n\tFileno uint32\n\tReclen uint16\n\tType   uint8\n\tNamlen uint8\n\tName   [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\nconst (\n\tFADV_NORMAL     = 0x0\n\tFADV_RANDOM     = 0x1\n\tFADV_SEQUENTIAL = 0x2\n\tFADV_WILLNEED   = 0x3\n\tFADV_DONTNEED   = 0x4\n\tFADV_NOREUSE    = 0x5\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [46]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPMreqn struct {\n\tMultiaddr [4]byte /* in_addr */\n\tAddress   [4]byte /* in_addr */\n\tIfindex   int32\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x36\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPMreqn          = 0xc\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x1c\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_ATTACH     = 0xa\n\tPTRACE_CONT       = 0x7\n\tPTRACE_DETACH     = 0xb\n\tPTRACE_GETFPREGS  = 0x23\n\tPTRACE_GETFSBASE  = 0x47\n\tPTRACE_GETLWPLIST = 0xf\n\tPTRACE_GETNUMLWPS = 0xe\n\tPTRACE_GETREGS    = 0x21\n\tPTRACE_GETXSTATE  = 0x45\n\tPTRACE_IO         = 0xc\n\tPTRACE_KILL       = 0x8\n\tPTRACE_LWPEVENTS  = 0x18\n\tPTRACE_LWPINFO    = 0xd\n\tPTRACE_SETFPREGS  = 0x24\n\tPTRACE_SETREGS    = 0x22\n\tPTRACE_SINGLESTEP = 0x9\n\tPTRACE_TRACEME    = 0x0\n)\n\nconst (\n\tPIOD_READ_D  = 0x1\n\tPIOD_WRITE_D = 0x2\n\tPIOD_READ_I  = 0x3\n\tPIOD_WRITE_I = 0x4\n)\n\nconst (\n\tPL_FLAG_BORN   = 0x100\n\tPL_FLAG_EXITED = 0x200\n\tPL_FLAG_SI     = 0x20\n)\n\nconst (\n\tTRAP_BRKPT = 0x1\n\tTRAP_TRACE = 0x2\n)\n\ntype PtraceLwpInfoStruct struct {\n\tLwpid        int32\n\tEvent        int32\n\tFlags        int32\n\tSigmask      Sigset_t\n\tSiglist      Sigset_t\n\tSiginfo      __Siginfo\n\tTdname       [20]int8\n\tChild_pid    int32\n\tSyscall_code uint32\n\tSyscall_narg uint32\n}\n\ntype __Siginfo struct {\n\tSigno  int32\n\tErrno  int32\n\tCode   int32\n\tPid    int32\n\tUid    uint32\n\tStatus int32\n\tAddr   *byte\n\tValue  [4]byte\n\t_      [32]byte\n}\n\ntype Sigset_t struct {\n\tVal [4]uint32\n}\n\ntype Reg struct {\n\tFs     uint32\n\tEs     uint32\n\tDs     uint32\n\tEdi    uint32\n\tEsi    uint32\n\tEbp    uint32\n\tIsp    uint32\n\tEbx    uint32\n\tEdx    uint32\n\tEcx    uint32\n\tEax    uint32\n\tTrapno uint32\n\tErr    uint32\n\tEip    uint32\n\tCs     uint32\n\tEflags uint32\n\tEsp    uint32\n\tSs     uint32\n\tGs     uint32\n}\n\ntype FpReg struct {\n\tEnv   [7]uint32\n\tAcc   [8][10]uint8\n\tEx_sw uint32\n\tPad   [64]uint8\n}\n\ntype PtraceIoDesc struct {\n\tOp   int32\n\tOffs *byte\n\tAddr *byte\n\tLen  uint32\n}\n\ntype Kevent_t struct {\n\tIdent  uint32\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int32\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]uint32\n}\n\nconst (\n\tsizeofIfMsghdr         = 0xa8\n\tSizeofIfMsghdr         = 0x60\n\tsizeofIfData           = 0x98\n\tSizeofIfData           = 0x50\n\tSizeofIfaMsghdr        = 0x14\n\tSizeofIfmaMsghdr       = 0x10\n\tSizeofIfAnnounceMsghdr = 0x18\n\tSizeofRtMsghdr         = 0x5c\n\tSizeofRtMetrics        = 0x38\n)\n\ntype ifMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       uint16\n\tData    ifData\n}\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\tData    IfData\n}\n\ntype ifData struct {\n\tType       uint8\n\tPhysical   uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tLink_state uint8\n\tVhid       uint8\n\tDatalen    uint16\n\tMtu        uint32\n\tMetric     uint32\n\tBaudrate   uint64\n\tIpackets   uint64\n\tIerrors    uint64\n\tOpackets   uint64\n\tOerrors    uint64\n\tCollisions uint64\n\tIbytes     uint64\n\tObytes     uint64\n\tImcasts    uint64\n\tOmcasts    uint64\n\tIqdrops    uint64\n\tOqdrops    uint64\n\tNoproto    uint64\n\tHwassist   uint64\n\t_          [8]byte\n\t_          [16]byte\n}\n\ntype IfData struct {\n\tType        uint8\n\tPhysical    uint8\n\tAddrlen     uint8\n\tHdrlen      uint8\n\tLink_state  uint8\n\tSpare_char1 uint8\n\tSpare_char2 uint8\n\tDatalen     uint8\n\tMtu         uint32\n\tMetric      uint32\n\tBaudrate    uint32\n\tIpackets    uint32\n\tIerrors     uint32\n\tOpackets    uint32\n\tOerrors     uint32\n\tCollisions  uint32\n\tIbytes      uint32\n\tObytes      uint32\n\tImcasts     uint32\n\tOmcasts     uint32\n\tIqdrops     uint32\n\tNoproto     uint32\n\tHwassist    uint32\n\tEpoch       int32\n\tLastchange  Timeval\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       uint16\n\tMetric  int32\n}\n\ntype IfmaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       uint16\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\tName    [16]int8\n\tWhat    uint16\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       uint16\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tFmask   int32\n\tInits   uint32\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint32\n\tMtu      uint32\n\tHopcount uint32\n\tExpire   uint32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPksent   uint32\n\tWeight   uint32\n\tFiller   [3]uint32\n}\n\nconst (\n\tSizeofBpfVersion    = 0x4\n\tSizeofBpfStat       = 0x8\n\tSizeofBpfZbuf       = 0xc\n\tSizeofBpfProgram    = 0x8\n\tSizeofBpfInsn       = 0x8\n\tSizeofBpfHdr        = 0x14\n\tSizeofBpfZbufHeader = 0x20\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfZbuf struct {\n\tBufa   *byte\n\tBufb   *byte\n\tBuflen uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  Timeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype BpfZbufHeader struct {\n\tKernel_gen uint32\n\tKernel_len uint32\n\tUser_gen   uint32\n\t_          [5]uint32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_REMOVEDIR        = 0x800\n\tAT_SYMLINK_FOLLOW   = 0x400\n\tAT_SYMLINK_NOFOLLOW = 0x200\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR      = 0x8\n\tPOLLHUP      = 0x10\n\tPOLLIN       = 0x1\n\tPOLLINIGNEOF = 0x2000\n\tPOLLNVAL     = 0x20\n\tPOLLOUT      = 0x4\n\tPOLLPRI      = 0x2\n\tPOLLRDBAND   = 0x80\n\tPOLLRDNORM   = 0x40\n\tPOLLWRBAND   = 0x100\n\tPOLLWRNORM   = 0x4\n)\n\ntype CapRights struct {\n\tRights [2]uint64\n}\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz     int32\n\tTick   int32\n\tSpare  int32\n\tStathz int32\n\tProfhz int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go",
    "content": "// cgo -godefs types_freebsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,freebsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur int64\n\tMax int64\n}\n\ntype _Gid_t uint32\n\nconst (\n\t_statfsVersion = 0x20140518\n\t_dirblksiz     = 0x400\n)\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tNlink   uint64\n\tMode    uint16\n\t_0      int16\n\tUid     uint32\n\tGid     uint32\n\t_1      int32\n\tRdev    uint64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint64\n\tSpare   [10]uint64\n}\n\ntype stat_freebsd11_t struct {\n\tDev     uint32\n\tIno     uint32\n\tMode    uint16\n\tNlink   uint16\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\tLspare  int32\n\tBtim    Timespec\n}\n\ntype Statfs_t struct {\n\tVersion     uint32\n\tType        uint32\n\tFlags       uint64\n\tBsize       uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      int64\n\tFiles       uint64\n\tFfree       int64\n\tSyncwrites  uint64\n\tAsyncwrites uint64\n\tSyncreads   uint64\n\tAsyncreads  uint64\n\tSpare       [10]uint64\n\tNamemax     uint32\n\tOwner       uint32\n\tFsid        Fsid\n\tCharspare   [80]int8\n\tFstypename  [16]byte\n\tMntfromname [1024]byte\n\tMntonname   [1024]byte\n}\n\ntype statfs_freebsd11_t struct {\n\tVersion     uint32\n\tType        uint32\n\tFlags       uint64\n\tBsize       uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      int64\n\tFiles       uint64\n\tFfree       int64\n\tSyncwrites  uint64\n\tAsyncwrites uint64\n\tSyncreads   uint64\n\tAsyncreads  uint64\n\tSpare       [10]uint64\n\tNamemax     uint32\n\tOwner       uint32\n\tFsid        Fsid\n\tCharspare   [80]int8\n\tFstypename  [16]byte\n\tMntfromname [88]byte\n\tMntonname   [88]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n\tSysid  int32\n\t_      [4]byte\n}\n\ntype Dirent struct {\n\tFileno uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tPad0   uint8\n\tNamlen uint16\n\tPad1   uint16\n\tName   [256]int8\n}\n\ntype dirent_freebsd11 struct {\n\tFileno uint32\n\tReclen uint16\n\tType   uint8\n\tNamlen uint8\n\tName   [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\nconst (\n\tFADV_NORMAL     = 0x0\n\tFADV_RANDOM     = 0x1\n\tFADV_SEQUENTIAL = 0x2\n\tFADV_WILLNEED   = 0x3\n\tFADV_DONTNEED   = 0x4\n\tFADV_NOREUSE    = 0x5\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [46]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPMreqn struct {\n\tMultiaddr [4]byte /* in_addr */\n\tAddress   [4]byte /* in_addr */\n\tIfindex   int32\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x36\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPMreqn          = 0xc\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_ATTACH     = 0xa\n\tPTRACE_CONT       = 0x7\n\tPTRACE_DETACH     = 0xb\n\tPTRACE_GETFPREGS  = 0x23\n\tPTRACE_GETFSBASE  = 0x47\n\tPTRACE_GETLWPLIST = 0xf\n\tPTRACE_GETNUMLWPS = 0xe\n\tPTRACE_GETREGS    = 0x21\n\tPTRACE_GETXSTATE  = 0x45\n\tPTRACE_IO         = 0xc\n\tPTRACE_KILL       = 0x8\n\tPTRACE_LWPEVENTS  = 0x18\n\tPTRACE_LWPINFO    = 0xd\n\tPTRACE_SETFPREGS  = 0x24\n\tPTRACE_SETREGS    = 0x22\n\tPTRACE_SINGLESTEP = 0x9\n\tPTRACE_TRACEME    = 0x0\n)\n\nconst (\n\tPIOD_READ_D  = 0x1\n\tPIOD_WRITE_D = 0x2\n\tPIOD_READ_I  = 0x3\n\tPIOD_WRITE_I = 0x4\n)\n\nconst (\n\tPL_FLAG_BORN   = 0x100\n\tPL_FLAG_EXITED = 0x200\n\tPL_FLAG_SI     = 0x20\n)\n\nconst (\n\tTRAP_BRKPT = 0x1\n\tTRAP_TRACE = 0x2\n)\n\ntype PtraceLwpInfoStruct struct {\n\tLwpid        int32\n\tEvent        int32\n\tFlags        int32\n\tSigmask      Sigset_t\n\tSiglist      Sigset_t\n\tSiginfo      __Siginfo\n\tTdname       [20]int8\n\tChild_pid    int32\n\tSyscall_code uint32\n\tSyscall_narg uint32\n}\n\ntype __Siginfo struct {\n\tSigno  int32\n\tErrno  int32\n\tCode   int32\n\tPid    int32\n\tUid    uint32\n\tStatus int32\n\tAddr   *byte\n\tValue  [8]byte\n\t_      [40]byte\n}\n\ntype Sigset_t struct {\n\tVal [4]uint32\n}\n\ntype Reg struct {\n\tR15    int64\n\tR14    int64\n\tR13    int64\n\tR12    int64\n\tR11    int64\n\tR10    int64\n\tR9     int64\n\tR8     int64\n\tRdi    int64\n\tRsi    int64\n\tRbp    int64\n\tRbx    int64\n\tRdx    int64\n\tRcx    int64\n\tRax    int64\n\tTrapno uint32\n\tFs     uint16\n\tGs     uint16\n\tErr    uint32\n\tEs     uint16\n\tDs     uint16\n\tRip    int64\n\tCs     int64\n\tRflags int64\n\tRsp    int64\n\tSs     int64\n}\n\ntype FpReg struct {\n\tEnv   [4]uint64\n\tAcc   [8][16]uint8\n\tXacc  [16][16]uint8\n\tSpare [12]uint64\n}\n\ntype PtraceIoDesc struct {\n\tOp   int32\n\tOffs *byte\n\tAddr *byte\n\tLen  uint64\n}\n\ntype Kevent_t struct {\n\tIdent  uint64\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int64\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [16]uint64\n}\n\nconst (\n\tsizeofIfMsghdr         = 0xa8\n\tSizeofIfMsghdr         = 0xa8\n\tsizeofIfData           = 0x98\n\tSizeofIfData           = 0x98\n\tSizeofIfaMsghdr        = 0x14\n\tSizeofIfmaMsghdr       = 0x10\n\tSizeofIfAnnounceMsghdr = 0x18\n\tSizeofRtMsghdr         = 0x98\n\tSizeofRtMetrics        = 0x70\n)\n\ntype ifMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       uint16\n\tData    ifData\n}\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\tData    IfData\n}\n\ntype ifData struct {\n\tType       uint8\n\tPhysical   uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tLink_state uint8\n\tVhid       uint8\n\tDatalen    uint16\n\tMtu        uint32\n\tMetric     uint32\n\tBaudrate   uint64\n\tIpackets   uint64\n\tIerrors    uint64\n\tOpackets   uint64\n\tOerrors    uint64\n\tCollisions uint64\n\tIbytes     uint64\n\tObytes     uint64\n\tImcasts    uint64\n\tOmcasts    uint64\n\tIqdrops    uint64\n\tOqdrops    uint64\n\tNoproto    uint64\n\tHwassist   uint64\n\t_          [8]byte\n\t_          [16]byte\n}\n\ntype IfData struct {\n\tType        uint8\n\tPhysical    uint8\n\tAddrlen     uint8\n\tHdrlen      uint8\n\tLink_state  uint8\n\tSpare_char1 uint8\n\tSpare_char2 uint8\n\tDatalen     uint8\n\tMtu         uint64\n\tMetric      uint64\n\tBaudrate    uint64\n\tIpackets    uint64\n\tIerrors     uint64\n\tOpackets    uint64\n\tOerrors     uint64\n\tCollisions  uint64\n\tIbytes      uint64\n\tObytes      uint64\n\tImcasts     uint64\n\tOmcasts     uint64\n\tIqdrops     uint64\n\tNoproto     uint64\n\tHwassist    uint64\n\tEpoch       int64\n\tLastchange  Timeval\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       uint16\n\tMetric  int32\n}\n\ntype IfmaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       uint16\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\tName    [16]int8\n\tWhat    uint16\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       uint16\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tFmask   int32\n\tInits   uint64\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint64\n\tMtu      uint64\n\tHopcount uint64\n\tExpire   uint64\n\tRecvpipe uint64\n\tSendpipe uint64\n\tSsthresh uint64\n\tRtt      uint64\n\tRttvar   uint64\n\tPksent   uint64\n\tWeight   uint64\n\tFiller   [3]uint64\n}\n\nconst (\n\tSizeofBpfVersion    = 0x4\n\tSizeofBpfStat       = 0x8\n\tSizeofBpfZbuf       = 0x18\n\tSizeofBpfProgram    = 0x10\n\tSizeofBpfInsn       = 0x8\n\tSizeofBpfHdr        = 0x20\n\tSizeofBpfZbufHeader = 0x20\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfZbuf struct {\n\tBufa   *byte\n\tBufb   *byte\n\tBuflen uint64\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  Timeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [6]byte\n}\n\ntype BpfZbufHeader struct {\n\tKernel_gen uint32\n\tKernel_len uint32\n\tUser_gen   uint32\n\t_          [5]uint32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_REMOVEDIR        = 0x800\n\tAT_SYMLINK_FOLLOW   = 0x400\n\tAT_SYMLINK_NOFOLLOW = 0x200\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR      = 0x8\n\tPOLLHUP      = 0x10\n\tPOLLIN       = 0x1\n\tPOLLINIGNEOF = 0x2000\n\tPOLLNVAL     = 0x20\n\tPOLLOUT      = 0x4\n\tPOLLPRI      = 0x2\n\tPOLLRDBAND   = 0x80\n\tPOLLRDNORM   = 0x40\n\tPOLLWRBAND   = 0x100\n\tPOLLWRNORM   = 0x4\n)\n\ntype CapRights struct {\n\tRights [2]uint64\n}\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz     int32\n\tTick   int32\n\tSpare  int32\n\tStathz int32\n\tProfhz int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go",
    "content": "// cgo -godefs -- -fsigned-char types_freebsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,freebsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x4\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x4\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int32\n\t_    [4]byte\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int32\n\t_    [4]byte\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Rlimit struct {\n\tCur int64\n\tMax int64\n}\n\ntype _Gid_t uint32\n\nconst (\n\t_statfsVersion = 0x20140518\n\t_dirblksiz     = 0x400\n)\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tNlink   uint64\n\tMode    uint16\n\t_0      int16\n\tUid     uint32\n\tGid     uint32\n\t_1      int32\n\tRdev    uint64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint64\n\tSpare   [10]uint64\n}\n\ntype stat_freebsd11_t struct {\n\tDev     uint32\n\tIno     uint32\n\tMode    uint16\n\tNlink   uint16\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\tLspare  int32\n\tBtim    Timespec\n}\n\ntype Statfs_t struct {\n\tVersion     uint32\n\tType        uint32\n\tFlags       uint64\n\tBsize       uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      int64\n\tFiles       uint64\n\tFfree       int64\n\tSyncwrites  uint64\n\tAsyncwrites uint64\n\tSyncreads   uint64\n\tAsyncreads  uint64\n\tSpare       [10]uint64\n\tNamemax     uint32\n\tOwner       uint32\n\tFsid        Fsid\n\tCharspare   [80]int8\n\tFstypename  [16]byte\n\tMntfromname [1024]byte\n\tMntonname   [1024]byte\n}\n\ntype statfs_freebsd11_t struct {\n\tVersion     uint32\n\tType        uint32\n\tFlags       uint64\n\tBsize       uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      int64\n\tFiles       uint64\n\tFfree       int64\n\tSyncwrites  uint64\n\tAsyncwrites uint64\n\tSyncreads   uint64\n\tAsyncreads  uint64\n\tSpare       [10]uint64\n\tNamemax     uint32\n\tOwner       uint32\n\tFsid        Fsid\n\tCharspare   [80]int8\n\tFstypename  [16]byte\n\tMntfromname [88]byte\n\tMntonname   [88]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n\tSysid  int32\n\t_      [4]byte\n}\n\ntype Dirent struct {\n\tFileno uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tPad0   uint8\n\tNamlen uint16\n\tPad1   uint16\n\tName   [256]int8\n}\n\ntype dirent_freebsd11 struct {\n\tFileno uint32\n\tReclen uint16\n\tType   uint8\n\tNamlen uint8\n\tName   [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\nconst (\n\tFADV_NORMAL     = 0x0\n\tFADV_RANDOM     = 0x1\n\tFADV_SEQUENTIAL = 0x2\n\tFADV_WILLNEED   = 0x3\n\tFADV_DONTNEED   = 0x4\n\tFADV_NOREUSE    = 0x5\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [46]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPMreqn struct {\n\tMultiaddr [4]byte /* in_addr */\n\tAddress   [4]byte /* in_addr */\n\tIfindex   int32\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x36\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPMreqn          = 0xc\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x1c\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_ATTACH     = 0xa\n\tPTRACE_CONT       = 0x7\n\tPTRACE_DETACH     = 0xb\n\tPTRACE_GETFPREGS  = 0x23\n\tPTRACE_GETFSBASE  = 0x47\n\tPTRACE_GETLWPLIST = 0xf\n\tPTRACE_GETNUMLWPS = 0xe\n\tPTRACE_GETREGS    = 0x21\n\tPTRACE_GETXSTATE  = 0x45\n\tPTRACE_IO         = 0xc\n\tPTRACE_KILL       = 0x8\n\tPTRACE_LWPEVENTS  = 0x18\n\tPTRACE_LWPINFO    = 0xd\n\tPTRACE_SETFPREGS  = 0x24\n\tPTRACE_SETREGS    = 0x22\n\tPTRACE_SINGLESTEP = 0x9\n\tPTRACE_TRACEME    = 0x0\n)\n\nconst (\n\tPIOD_READ_D  = 0x1\n\tPIOD_WRITE_D = 0x2\n\tPIOD_READ_I  = 0x3\n\tPIOD_WRITE_I = 0x4\n)\n\nconst (\n\tPL_FLAG_BORN   = 0x100\n\tPL_FLAG_EXITED = 0x200\n\tPL_FLAG_SI     = 0x20\n)\n\nconst (\n\tTRAP_BRKPT = 0x1\n\tTRAP_TRACE = 0x2\n)\n\ntype PtraceLwpInfoStruct struct {\n\tLwpid        int32\n\tEvent        int32\n\tFlags        int32\n\tSigmask      Sigset_t\n\tSiglist      Sigset_t\n\tSiginfo      __Siginfo\n\tTdname       [20]int8\n\tChild_pid    int32\n\tSyscall_code uint32\n\tSyscall_narg uint32\n}\n\ntype __Siginfo struct {\n\tSigno    int32\n\tErrno    int32\n\tCode     int32\n\tPid      int32\n\tUid      uint32\n\tStatus   int32\n\tAddr     *byte\n\tValue    [4]byte\n\tX_reason [32]byte\n}\n\ntype Sigset_t struct {\n\tVal [4]uint32\n}\n\ntype Reg struct {\n\tR      [13]uint32\n\tR_sp   uint32\n\tR_lr   uint32\n\tR_pc   uint32\n\tR_cpsr uint32\n}\n\ntype FpReg struct {\n\tFpr_fpsr uint32\n\tFpr      [8][3]uint32\n}\n\ntype PtraceIoDesc struct {\n\tOp   int32\n\tOffs *byte\n\tAddr *byte\n\tLen  uint32\n}\n\ntype Kevent_t struct {\n\tIdent  uint32\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int32\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]uint32\n}\n\nconst (\n\tsizeofIfMsghdr         = 0xa8\n\tSizeofIfMsghdr         = 0x70\n\tsizeofIfData           = 0x98\n\tSizeofIfData           = 0x60\n\tSizeofIfaMsghdr        = 0x14\n\tSizeofIfmaMsghdr       = 0x10\n\tSizeofIfAnnounceMsghdr = 0x18\n\tSizeofRtMsghdr         = 0x5c\n\tSizeofRtMetrics        = 0x38\n)\n\ntype ifMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tData    ifData\n}\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tData    IfData\n}\n\ntype ifData struct {\n\tType       uint8\n\tPhysical   uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tLink_state uint8\n\tVhid       uint8\n\tDatalen    uint16\n\tMtu        uint32\n\tMetric     uint32\n\tBaudrate   uint64\n\tIpackets   uint64\n\tIerrors    uint64\n\tOpackets   uint64\n\tOerrors    uint64\n\tCollisions uint64\n\tIbytes     uint64\n\tObytes     uint64\n\tImcasts    uint64\n\tOmcasts    uint64\n\tIqdrops    uint64\n\tOqdrops    uint64\n\tNoproto    uint64\n\tHwassist   uint64\n\t_          [8]byte\n\t_          [16]byte\n}\n\ntype IfData struct {\n\tType        uint8\n\tPhysical    uint8\n\tAddrlen     uint8\n\tHdrlen      uint8\n\tLink_state  uint8\n\tSpare_char1 uint8\n\tSpare_char2 uint8\n\tDatalen     uint8\n\tMtu         uint32\n\tMetric      uint32\n\tBaudrate    uint32\n\tIpackets    uint32\n\tIerrors     uint32\n\tOpackets    uint32\n\tOerrors     uint32\n\tCollisions  uint32\n\tIbytes      uint32\n\tObytes      uint32\n\tImcasts     uint32\n\tOmcasts     uint32\n\tIqdrops     uint32\n\tNoproto     uint32\n\tHwassist    uint32\n\t_           [4]byte\n\tEpoch       int64\n\tLastchange  Timeval\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tMetric  int32\n}\n\ntype IfmaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\tName    [16]int8\n\tWhat    uint16\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       [2]byte\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tFmask   int32\n\tInits   uint32\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint32\n\tMtu      uint32\n\tHopcount uint32\n\tExpire   uint32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPksent   uint32\n\tWeight   uint32\n\tFiller   [3]uint32\n}\n\nconst (\n\tSizeofBpfVersion    = 0x4\n\tSizeofBpfStat       = 0x8\n\tSizeofBpfZbuf       = 0xc\n\tSizeofBpfProgram    = 0x8\n\tSizeofBpfInsn       = 0x8\n\tSizeofBpfHdr        = 0x20\n\tSizeofBpfZbufHeader = 0x20\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfZbuf struct {\n\tBufa   *byte\n\tBufb   *byte\n\tBuflen uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  Timeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [6]byte\n}\n\ntype BpfZbufHeader struct {\n\tKernel_gen uint32\n\tKernel_len uint32\n\tUser_gen   uint32\n\t_          [5]uint32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_REMOVEDIR        = 0x800\n\tAT_SYMLINK_FOLLOW   = 0x400\n\tAT_SYMLINK_NOFOLLOW = 0x200\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR      = 0x8\n\tPOLLHUP      = 0x10\n\tPOLLIN       = 0x1\n\tPOLLINIGNEOF = 0x2000\n\tPOLLNVAL     = 0x20\n\tPOLLOUT      = 0x4\n\tPOLLPRI      = 0x2\n\tPOLLRDBAND   = 0x80\n\tPOLLRDNORM   = 0x40\n\tPOLLWRBAND   = 0x100\n\tPOLLWRNORM   = 0x4\n)\n\ntype CapRights struct {\n\tRights [2]uint64\n}\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz     int32\n\tTick   int32\n\tSpare  int32\n\tStathz int32\n\tProfhz int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go",
    "content": "// cgo -godefs -- -fsigned-char types_freebsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,freebsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur int64\n\tMax int64\n}\n\ntype _Gid_t uint32\n\nconst (\n\t_statfsVersion = 0x20140518\n\t_dirblksiz     = 0x400\n)\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tNlink   uint64\n\tMode    uint16\n\t_0      int16\n\tUid     uint32\n\tGid     uint32\n\t_1      int32\n\tRdev    uint64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint64\n\tSpare   [10]uint64\n}\n\ntype stat_freebsd11_t struct {\n\tDev     uint32\n\tIno     uint32\n\tMode    uint16\n\tNlink   uint16\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\tLspare  int32\n\tBtim    Timespec\n}\n\ntype Statfs_t struct {\n\tVersion     uint32\n\tType        uint32\n\tFlags       uint64\n\tBsize       uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      int64\n\tFiles       uint64\n\tFfree       int64\n\tSyncwrites  uint64\n\tAsyncwrites uint64\n\tSyncreads   uint64\n\tAsyncreads  uint64\n\tSpare       [10]uint64\n\tNamemax     uint32\n\tOwner       uint32\n\tFsid        Fsid\n\tCharspare   [80]int8\n\tFstypename  [16]byte\n\tMntfromname [1024]byte\n\tMntonname   [1024]byte\n}\n\ntype statfs_freebsd11_t struct {\n\tVersion     uint32\n\tType        uint32\n\tFlags       uint64\n\tBsize       uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      int64\n\tFiles       uint64\n\tFfree       int64\n\tSyncwrites  uint64\n\tAsyncwrites uint64\n\tSyncreads   uint64\n\tAsyncreads  uint64\n\tSpare       [10]uint64\n\tNamemax     uint32\n\tOwner       uint32\n\tFsid        Fsid\n\tCharspare   [80]int8\n\tFstypename  [16]byte\n\tMntfromname [88]byte\n\tMntonname   [88]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n\tSysid  int32\n\t_      [4]byte\n}\n\ntype Dirent struct {\n\tFileno uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tPad0   uint8\n\tNamlen uint16\n\tPad1   uint16\n\tName   [256]int8\n}\n\ntype dirent_freebsd11 struct {\n\tFileno uint32\n\tReclen uint16\n\tType   uint8\n\tNamlen uint8\n\tName   [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\nconst (\n\tFADV_NORMAL     = 0x0\n\tFADV_RANDOM     = 0x1\n\tFADV_SEQUENTIAL = 0x2\n\tFADV_WILLNEED   = 0x3\n\tFADV_DONTNEED   = 0x4\n\tFADV_NOREUSE    = 0x5\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [46]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPMreqn struct {\n\tMultiaddr [4]byte /* in_addr */\n\tAddress   [4]byte /* in_addr */\n\tIfindex   int32\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x36\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPMreqn          = 0xc\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_ATTACH     = 0xa\n\tPTRACE_CONT       = 0x7\n\tPTRACE_DETACH     = 0xb\n\tPTRACE_GETFPREGS  = 0x23\n\tPTRACE_GETLWPLIST = 0xf\n\tPTRACE_GETNUMLWPS = 0xe\n\tPTRACE_GETREGS    = 0x21\n\tPTRACE_IO         = 0xc\n\tPTRACE_KILL       = 0x8\n\tPTRACE_LWPEVENTS  = 0x18\n\tPTRACE_LWPINFO    = 0xd\n\tPTRACE_SETFPREGS  = 0x24\n\tPTRACE_SETREGS    = 0x22\n\tPTRACE_SINGLESTEP = 0x9\n\tPTRACE_TRACEME    = 0x0\n)\n\nconst (\n\tPIOD_READ_D  = 0x1\n\tPIOD_WRITE_D = 0x2\n\tPIOD_READ_I  = 0x3\n\tPIOD_WRITE_I = 0x4\n)\n\nconst (\n\tPL_FLAG_BORN   = 0x100\n\tPL_FLAG_EXITED = 0x200\n\tPL_FLAG_SI     = 0x20\n)\n\nconst (\n\tTRAP_BRKPT = 0x1\n\tTRAP_TRACE = 0x2\n)\n\ntype PtraceLwpInfoStruct struct {\n\tLwpid        int32\n\tEvent        int32\n\tFlags        int32\n\tSigmask      Sigset_t\n\tSiglist      Sigset_t\n\tSiginfo      __Siginfo\n\tTdname       [20]int8\n\tChild_pid    int32\n\tSyscall_code uint32\n\tSyscall_narg uint32\n}\n\ntype __Siginfo struct {\n\tSigno  int32\n\tErrno  int32\n\tCode   int32\n\tPid    int32\n\tUid    uint32\n\tStatus int32\n\tAddr   *byte\n\tValue  [8]byte\n\t_      [40]byte\n}\n\ntype Sigset_t struct {\n\tVal [4]uint32\n}\n\ntype Reg struct {\n\tX    [30]uint64\n\tLr   uint64\n\tSp   uint64\n\tElr  uint64\n\tSpsr uint32\n\t_    [4]byte\n}\n\ntype FpReg struct {\n\tQ  [32][16]uint8\n\tSr uint32\n\tCr uint32\n\t_  [8]byte\n}\n\ntype PtraceIoDesc struct {\n\tOp   int32\n\tOffs *byte\n\tAddr *byte\n\tLen  uint64\n}\n\ntype Kevent_t struct {\n\tIdent  uint64\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int64\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [16]uint64\n}\n\nconst (\n\tsizeofIfMsghdr         = 0xa8\n\tSizeofIfMsghdr         = 0xa8\n\tsizeofIfData           = 0x98\n\tSizeofIfData           = 0x98\n\tSizeofIfaMsghdr        = 0x14\n\tSizeofIfmaMsghdr       = 0x10\n\tSizeofIfAnnounceMsghdr = 0x18\n\tSizeofRtMsghdr         = 0x98\n\tSizeofRtMetrics        = 0x70\n)\n\ntype ifMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       uint16\n\tData    ifData\n}\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\tData    IfData\n}\n\ntype ifData struct {\n\tType       uint8\n\tPhysical   uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tLink_state uint8\n\tVhid       uint8\n\tDatalen    uint16\n\tMtu        uint32\n\tMetric     uint32\n\tBaudrate   uint64\n\tIpackets   uint64\n\tIerrors    uint64\n\tOpackets   uint64\n\tOerrors    uint64\n\tCollisions uint64\n\tIbytes     uint64\n\tObytes     uint64\n\tImcasts    uint64\n\tOmcasts    uint64\n\tIqdrops    uint64\n\tOqdrops    uint64\n\tNoproto    uint64\n\tHwassist   uint64\n\t_          [8]byte\n\t_          [16]byte\n}\n\ntype IfData struct {\n\tType        uint8\n\tPhysical    uint8\n\tAddrlen     uint8\n\tHdrlen      uint8\n\tLink_state  uint8\n\tSpare_char1 uint8\n\tSpare_char2 uint8\n\tDatalen     uint8\n\tMtu         uint64\n\tMetric      uint64\n\tBaudrate    uint64\n\tIpackets    uint64\n\tIerrors     uint64\n\tOpackets    uint64\n\tOerrors     uint64\n\tCollisions  uint64\n\tIbytes      uint64\n\tObytes      uint64\n\tImcasts     uint64\n\tOmcasts     uint64\n\tIqdrops     uint64\n\tNoproto     uint64\n\tHwassist    uint64\n\tEpoch       int64\n\tLastchange  Timeval\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       uint16\n\tMetric  int32\n}\n\ntype IfmaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       uint16\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\tName    [16]int8\n\tWhat    uint16\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       uint16\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tFmask   int32\n\tInits   uint64\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint64\n\tMtu      uint64\n\tHopcount uint64\n\tExpire   uint64\n\tRecvpipe uint64\n\tSendpipe uint64\n\tSsthresh uint64\n\tRtt      uint64\n\tRttvar   uint64\n\tPksent   uint64\n\tWeight   uint64\n\tFiller   [3]uint64\n}\n\nconst (\n\tSizeofBpfVersion    = 0x4\n\tSizeofBpfStat       = 0x8\n\tSizeofBpfZbuf       = 0x18\n\tSizeofBpfProgram    = 0x10\n\tSizeofBpfInsn       = 0x8\n\tSizeofBpfHdr        = 0x20\n\tSizeofBpfZbufHeader = 0x20\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfZbuf struct {\n\tBufa   *byte\n\tBufb   *byte\n\tBuflen uint64\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  Timeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [6]byte\n}\n\ntype BpfZbufHeader struct {\n\tKernel_gen uint32\n\tKernel_len uint32\n\tUser_gen   uint32\n\t_          [5]uint32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_REMOVEDIR        = 0x800\n\tAT_SYMLINK_FOLLOW   = 0x400\n\tAT_SYMLINK_NOFOLLOW = 0x200\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR      = 0x8\n\tPOLLHUP      = 0x10\n\tPOLLIN       = 0x1\n\tPOLLINIGNEOF = 0x2000\n\tPOLLNVAL     = 0x20\n\tPOLLOUT      = 0x4\n\tPOLLPRI      = 0x2\n\tPOLLRDBAND   = 0x80\n\tPOLLRDNORM   = 0x40\n\tPOLLWRBAND   = 0x100\n\tPOLLWRNORM   = 0x4\n)\n\ntype CapRights struct {\n\tRights [2]uint64\n}\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz     int32\n\tTick   int32\n\tSpare  int32\n\tStathz int32\n\tProfhz int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux.go",
    "content": "// Code generated by mkmerge.go; DO NOT EDIT.\n\n// +build linux\n\npackage unix\n\nconst (\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLongLong = 0x8\n\tPathMax        = 0x1000\n)\n\ntype (\n\t_C_short int16\n\t_C_int   int32\n\n\t_C_long_long int64\n)\n\ntype ItimerSpec struct {\n\tInterval Timespec\n\tValue    Timespec\n}\n\nconst (\n\tTIME_OK    = 0x0\n\tTIME_INS   = 0x1\n\tTIME_DEL   = 0x2\n\tTIME_OOP   = 0x3\n\tTIME_WAIT  = 0x4\n\tTIME_ERROR = 0x5\n\tTIME_BAD   = 0x5\n)\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype StatxTimestamp struct {\n\tSec  int64\n\tNsec uint32\n\t_    int32\n}\n\ntype Statx_t struct {\n\tMask            uint32\n\tBlksize         uint32\n\tAttributes      uint64\n\tNlink           uint32\n\tUid             uint32\n\tGid             uint32\n\tMode            uint16\n\t_               [1]uint16\n\tIno             uint64\n\tSize            uint64\n\tBlocks          uint64\n\tAttributes_mask uint64\n\tAtime           StatxTimestamp\n\tBtime           StatxTimestamp\n\tCtime           StatxTimestamp\n\tMtime           StatxTimestamp\n\tRdev_major      uint32\n\tRdev_minor      uint32\n\tDev_major       uint32\n\tDev_minor       uint32\n\tMnt_id          uint64\n\t_               uint64\n\t_               [12]uint64\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\ntype FileCloneRange struct {\n\tSrc_fd      int64\n\tSrc_offset  uint64\n\tSrc_length  uint64\n\tDest_offset uint64\n}\n\ntype FileDedupeRange struct {\n\tSrc_offset uint64\n\tSrc_length uint64\n\tDest_count uint16\n\tReserved1  uint16\n\tReserved2  uint32\n}\n\ntype FscryptPolicy struct {\n\tVersion                   uint8\n\tContents_encryption_mode  uint8\n\tFilenames_encryption_mode uint8\n\tFlags                     uint8\n\tMaster_key_descriptor     [8]uint8\n}\n\ntype FscryptKey struct {\n\tMode uint32\n\tRaw  [64]uint8\n\tSize uint32\n}\n\ntype FscryptPolicyV1 struct {\n\tVersion                   uint8\n\tContents_encryption_mode  uint8\n\tFilenames_encryption_mode uint8\n\tFlags                     uint8\n\tMaster_key_descriptor     [8]uint8\n}\n\ntype FscryptPolicyV2 struct {\n\tVersion                   uint8\n\tContents_encryption_mode  uint8\n\tFilenames_encryption_mode uint8\n\tFlags                     uint8\n\t_                         [4]uint8\n\tMaster_key_identifier     [16]uint8\n}\n\ntype FscryptGetPolicyExArg struct {\n\tSize   uint64\n\tPolicy [24]byte\n}\n\ntype FscryptKeySpecifier struct {\n\tType uint32\n\t_    uint32\n\tU    [32]byte\n}\n\ntype FscryptAddKeyArg struct {\n\tKey_spec FscryptKeySpecifier\n\tRaw_size uint32\n\tKey_id   uint32\n\t_        [8]uint32\n}\n\ntype FscryptRemoveKeyArg struct {\n\tKey_spec             FscryptKeySpecifier\n\tRemoval_status_flags uint32\n\t_                    [5]uint32\n}\n\ntype FscryptGetKeyStatusArg struct {\n\tKey_spec     FscryptKeySpecifier\n\t_            [6]uint32\n\tStatus       uint32\n\tStatus_flags uint32\n\tUser_count   uint32\n\t_            [13]uint32\n}\n\ntype DmIoctl struct {\n\tVersion      [3]uint32\n\tData_size    uint32\n\tData_start   uint32\n\tTarget_count uint32\n\tOpen_count   int32\n\tFlags        uint32\n\tEvent_nr     uint32\n\t_            uint32\n\tDev          uint64\n\tName         [128]byte\n\tUuid         [129]byte\n\tData         [7]byte\n}\n\ntype DmTargetSpec struct {\n\tSector_start uint64\n\tLength       uint64\n\tStatus       int32\n\tNext         uint32\n\tTarget_type  [16]byte\n}\n\ntype DmTargetDeps struct {\n\tCount uint32\n\t_     uint32\n}\n\ntype DmTargetVersions struct {\n\tNext    uint32\n\tVersion [3]uint32\n}\n\ntype DmTargetMsg struct {\n\tSector uint64\n}\n\nconst (\n\tSizeofDmIoctl      = 0x138\n\tSizeofDmTargetSpec = 0x28\n)\n\ntype KeyctlDHParams struct {\n\tPrivate int32\n\tPrime   int32\n\tBase    int32\n}\n\nconst (\n\tFADV_NORMAL     = 0x0\n\tFADV_RANDOM     = 0x1\n\tFADV_SEQUENTIAL = 0x2\n\tFADV_WILLNEED   = 0x3\n)\n\ntype RawSockaddrInet4 struct {\n\tFamily uint16\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]uint8\n}\n\ntype RawSockaddrInet6 struct {\n\tFamily   uint16\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tFamily uint16\n\tPath   [108]int8\n}\n\ntype RawSockaddrLinklayer struct {\n\tFamily   uint16\n\tProtocol uint16\n\tIfindex  int32\n\tHatype   uint16\n\tPkttype  uint8\n\tHalen    uint8\n\tAddr     [8]uint8\n}\n\ntype RawSockaddrNetlink struct {\n\tFamily uint16\n\tPad    uint16\n\tPid    uint32\n\tGroups uint32\n}\n\ntype RawSockaddrHCI struct {\n\tFamily  uint16\n\tDev     uint16\n\tChannel uint16\n}\n\ntype RawSockaddrL2 struct {\n\tFamily      uint16\n\tPsm         uint16\n\tBdaddr      [6]uint8\n\tCid         uint16\n\tBdaddr_type uint8\n\t_           [1]byte\n}\n\ntype RawSockaddrRFCOMM struct {\n\tFamily  uint16\n\tBdaddr  [6]uint8\n\tChannel uint8\n\t_       [1]byte\n}\n\ntype RawSockaddrCAN struct {\n\tFamily  uint16\n\tIfindex int32\n\tAddr    [16]byte\n}\n\ntype RawSockaddrALG struct {\n\tFamily uint16\n\tType   [14]uint8\n\tFeat   uint32\n\tMask   uint32\n\tName   [64]uint8\n}\n\ntype RawSockaddrVM struct {\n\tFamily    uint16\n\tReserved1 uint16\n\tPort      uint32\n\tCid       uint32\n\tZero      [4]uint8\n}\n\ntype RawSockaddrXDP struct {\n\tFamily         uint16\n\tFlags          uint16\n\tIfindex        uint32\n\tQueue_id       uint32\n\tShared_umem_fd uint32\n}\n\ntype RawSockaddrPPPoX [0x1e]byte\n\ntype RawSockaddrTIPC struct {\n\tFamily   uint16\n\tAddrtype uint8\n\tScope    int8\n\tAddr     [12]byte\n}\n\ntype RawSockaddrL2TPIP struct {\n\tFamily  uint16\n\tUnused  uint16\n\tAddr    [4]byte /* in_addr */\n\tConn_id uint32\n\t_       [4]uint8\n}\n\ntype RawSockaddrL2TPIP6 struct {\n\tFamily   uint16\n\tUnused   uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n\tConn_id  uint32\n}\n\ntype RawSockaddrIUCV struct {\n\tFamily  uint16\n\tPort    uint16\n\tAddr    uint32\n\tNodeid  [8]int8\n\tUser_id [8]int8\n\tName    [8]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPMreqn struct {\n\tMultiaddr [4]byte /* in_addr */\n\tAddress   [4]byte /* in_addr */\n\tIfindex   int32\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype PacketMreq struct {\n\tIfindex int32\n\tType    uint16\n\tAlen    uint16\n\tAddress [8]uint8\n}\n\ntype Inet4Pktinfo struct {\n\tIfindex  int32\n\tSpec_dst [4]byte /* in_addr */\n\tAddr     [4]byte /* in_addr */\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tData [8]uint32\n}\n\ntype Ucred struct {\n\tPid int32\n\tUid uint32\n\tGid uint32\n}\n\ntype TCPInfo struct {\n\tState          uint8\n\tCa_state       uint8\n\tRetransmits    uint8\n\tProbes         uint8\n\tBackoff        uint8\n\tOptions        uint8\n\tRto            uint32\n\tAto            uint32\n\tSnd_mss        uint32\n\tRcv_mss        uint32\n\tUnacked        uint32\n\tSacked         uint32\n\tLost           uint32\n\tRetrans        uint32\n\tFackets        uint32\n\tLast_data_sent uint32\n\tLast_ack_sent  uint32\n\tLast_data_recv uint32\n\tLast_ack_recv  uint32\n\tPmtu           uint32\n\tRcv_ssthresh   uint32\n\tRtt            uint32\n\tRttvar         uint32\n\tSnd_ssthresh   uint32\n\tSnd_cwnd       uint32\n\tAdvmss         uint32\n\tReordering     uint32\n\tRcv_rtt        uint32\n\tRcv_space      uint32\n\tTotal_retrans  uint32\n}\n\ntype CanFilter struct {\n\tId   uint32\n\tMask uint32\n}\n\nconst (\n\tSizeofSockaddrInet4     = 0x10\n\tSizeofSockaddrInet6     = 0x1c\n\tSizeofSockaddrAny       = 0x70\n\tSizeofSockaddrUnix      = 0x6e\n\tSizeofSockaddrLinklayer = 0x14\n\tSizeofSockaddrNetlink   = 0xc\n\tSizeofSockaddrHCI       = 0x6\n\tSizeofSockaddrL2        = 0xe\n\tSizeofSockaddrRFCOMM    = 0xa\n\tSizeofSockaddrCAN       = 0x18\n\tSizeofSockaddrALG       = 0x58\n\tSizeofSockaddrVM        = 0x10\n\tSizeofSockaddrXDP       = 0x10\n\tSizeofSockaddrPPPoX     = 0x1e\n\tSizeofSockaddrTIPC      = 0x10\n\tSizeofSockaddrL2TPIP    = 0x10\n\tSizeofSockaddrL2TPIP6   = 0x20\n\tSizeofSockaddrIUCV      = 0x20\n\tSizeofLinger            = 0x8\n\tSizeofIPMreq            = 0x8\n\tSizeofIPMreqn           = 0xc\n\tSizeofIPv6Mreq          = 0x14\n\tSizeofPacketMreq        = 0x10\n\tSizeofInet4Pktinfo      = 0xc\n\tSizeofInet6Pktinfo      = 0x14\n\tSizeofIPv6MTUInfo       = 0x20\n\tSizeofICMPv6Filter      = 0x20\n\tSizeofUcred             = 0xc\n\tSizeofTCPInfo           = 0x68\n\tSizeofCanFilter         = 0x8\n)\n\nconst (\n\tNDA_UNSPEC              = 0x0\n\tNDA_DST                 = 0x1\n\tNDA_LLADDR              = 0x2\n\tNDA_CACHEINFO           = 0x3\n\tNDA_PROBES              = 0x4\n\tNDA_VLAN                = 0x5\n\tNDA_PORT                = 0x6\n\tNDA_VNI                 = 0x7\n\tNDA_IFINDEX             = 0x8\n\tNDA_MASTER              = 0x9\n\tNDA_LINK_NETNSID        = 0xa\n\tNDA_SRC_VNI             = 0xb\n\tNTF_USE                 = 0x1\n\tNTF_SELF                = 0x2\n\tNTF_MASTER              = 0x4\n\tNTF_PROXY               = 0x8\n\tNTF_EXT_LEARNED         = 0x10\n\tNTF_OFFLOADED           = 0x20\n\tNTF_ROUTER              = 0x80\n\tNUD_INCOMPLETE          = 0x1\n\tNUD_REACHABLE           = 0x2\n\tNUD_STALE               = 0x4\n\tNUD_DELAY               = 0x8\n\tNUD_PROBE               = 0x10\n\tNUD_FAILED              = 0x20\n\tNUD_NOARP               = 0x40\n\tNUD_PERMANENT           = 0x80\n\tNUD_NONE                = 0x0\n\tIFA_UNSPEC              = 0x0\n\tIFA_ADDRESS             = 0x1\n\tIFA_LOCAL               = 0x2\n\tIFA_LABEL               = 0x3\n\tIFA_BROADCAST           = 0x4\n\tIFA_ANYCAST             = 0x5\n\tIFA_CACHEINFO           = 0x6\n\tIFA_MULTICAST           = 0x7\n\tIFA_FLAGS               = 0x8\n\tIFA_RT_PRIORITY         = 0x9\n\tIFA_TARGET_NETNSID      = 0xa\n\tIFLA_UNSPEC             = 0x0\n\tIFLA_ADDRESS            = 0x1\n\tIFLA_BROADCAST          = 0x2\n\tIFLA_IFNAME             = 0x3\n\tIFLA_MTU                = 0x4\n\tIFLA_LINK               = 0x5\n\tIFLA_QDISC              = 0x6\n\tIFLA_STATS              = 0x7\n\tIFLA_COST               = 0x8\n\tIFLA_PRIORITY           = 0x9\n\tIFLA_MASTER             = 0xa\n\tIFLA_WIRELESS           = 0xb\n\tIFLA_PROTINFO           = 0xc\n\tIFLA_TXQLEN             = 0xd\n\tIFLA_MAP                = 0xe\n\tIFLA_WEIGHT             = 0xf\n\tIFLA_OPERSTATE          = 0x10\n\tIFLA_LINKMODE           = 0x11\n\tIFLA_LINKINFO           = 0x12\n\tIFLA_NET_NS_PID         = 0x13\n\tIFLA_IFALIAS            = 0x14\n\tIFLA_NUM_VF             = 0x15\n\tIFLA_VFINFO_LIST        = 0x16\n\tIFLA_STATS64            = 0x17\n\tIFLA_VF_PORTS           = 0x18\n\tIFLA_PORT_SELF          = 0x19\n\tIFLA_AF_SPEC            = 0x1a\n\tIFLA_GROUP              = 0x1b\n\tIFLA_NET_NS_FD          = 0x1c\n\tIFLA_EXT_MASK           = 0x1d\n\tIFLA_PROMISCUITY        = 0x1e\n\tIFLA_NUM_TX_QUEUES      = 0x1f\n\tIFLA_NUM_RX_QUEUES      = 0x20\n\tIFLA_CARRIER            = 0x21\n\tIFLA_PHYS_PORT_ID       = 0x22\n\tIFLA_CARRIER_CHANGES    = 0x23\n\tIFLA_PHYS_SWITCH_ID     = 0x24\n\tIFLA_LINK_NETNSID       = 0x25\n\tIFLA_PHYS_PORT_NAME     = 0x26\n\tIFLA_PROTO_DOWN         = 0x27\n\tIFLA_GSO_MAX_SEGS       = 0x28\n\tIFLA_GSO_MAX_SIZE       = 0x29\n\tIFLA_PAD                = 0x2a\n\tIFLA_XDP                = 0x2b\n\tIFLA_EVENT              = 0x2c\n\tIFLA_NEW_NETNSID        = 0x2d\n\tIFLA_IF_NETNSID         = 0x2e\n\tIFLA_TARGET_NETNSID     = 0x2e\n\tIFLA_CARRIER_UP_COUNT   = 0x2f\n\tIFLA_CARRIER_DOWN_COUNT = 0x30\n\tIFLA_NEW_IFINDEX        = 0x31\n\tIFLA_MIN_MTU            = 0x32\n\tIFLA_MAX_MTU            = 0x33\n\tIFLA_MAX                = 0x36\n\tIFLA_INFO_KIND          = 0x1\n\tIFLA_INFO_DATA          = 0x2\n\tIFLA_INFO_XSTATS        = 0x3\n\tIFLA_INFO_SLAVE_KIND    = 0x4\n\tIFLA_INFO_SLAVE_DATA    = 0x5\n\tRT_SCOPE_UNIVERSE       = 0x0\n\tRT_SCOPE_SITE           = 0xc8\n\tRT_SCOPE_LINK           = 0xfd\n\tRT_SCOPE_HOST           = 0xfe\n\tRT_SCOPE_NOWHERE        = 0xff\n\tRT_TABLE_UNSPEC         = 0x0\n\tRT_TABLE_COMPAT         = 0xfc\n\tRT_TABLE_DEFAULT        = 0xfd\n\tRT_TABLE_MAIN           = 0xfe\n\tRT_TABLE_LOCAL          = 0xff\n\tRT_TABLE_MAX            = 0xffffffff\n\tRTA_UNSPEC              = 0x0\n\tRTA_DST                 = 0x1\n\tRTA_SRC                 = 0x2\n\tRTA_IIF                 = 0x3\n\tRTA_OIF                 = 0x4\n\tRTA_GATEWAY             = 0x5\n\tRTA_PRIORITY            = 0x6\n\tRTA_PREFSRC             = 0x7\n\tRTA_METRICS             = 0x8\n\tRTA_MULTIPATH           = 0x9\n\tRTA_FLOW                = 0xb\n\tRTA_CACHEINFO           = 0xc\n\tRTA_TABLE               = 0xf\n\tRTA_MARK                = 0x10\n\tRTA_MFC_STATS           = 0x11\n\tRTA_VIA                 = 0x12\n\tRTA_NEWDST              = 0x13\n\tRTA_PREF                = 0x14\n\tRTA_ENCAP_TYPE          = 0x15\n\tRTA_ENCAP               = 0x16\n\tRTA_EXPIRES             = 0x17\n\tRTA_PAD                 = 0x18\n\tRTA_UID                 = 0x19\n\tRTA_TTL_PROPAGATE       = 0x1a\n\tRTA_IP_PROTO            = 0x1b\n\tRTA_SPORT               = 0x1c\n\tRTA_DPORT               = 0x1d\n\tRTN_UNSPEC              = 0x0\n\tRTN_UNICAST             = 0x1\n\tRTN_LOCAL               = 0x2\n\tRTN_BROADCAST           = 0x3\n\tRTN_ANYCAST             = 0x4\n\tRTN_MULTICAST           = 0x5\n\tRTN_BLACKHOLE           = 0x6\n\tRTN_UNREACHABLE         = 0x7\n\tRTN_PROHIBIT            = 0x8\n\tRTN_THROW               = 0x9\n\tRTN_NAT                 = 0xa\n\tRTN_XRESOLVE            = 0xb\n\tSizeofNlMsghdr          = 0x10\n\tSizeofNlMsgerr          = 0x14\n\tSizeofRtGenmsg          = 0x1\n\tSizeofNlAttr            = 0x4\n\tSizeofRtAttr            = 0x4\n\tSizeofIfInfomsg         = 0x10\n\tSizeofIfAddrmsg         = 0x8\n\tSizeofIfaCacheinfo      = 0x10\n\tSizeofRtMsg             = 0xc\n\tSizeofRtNexthop         = 0x8\n\tSizeofNdUseroptmsg      = 0x10\n\tSizeofNdMsg             = 0xc\n)\n\ntype NlMsghdr struct {\n\tLen   uint32\n\tType  uint16\n\tFlags uint16\n\tSeq   uint32\n\tPid   uint32\n}\n\ntype NlMsgerr struct {\n\tError int32\n\tMsg   NlMsghdr\n}\n\ntype RtGenmsg struct {\n\tFamily uint8\n}\n\ntype NlAttr struct {\n\tLen  uint16\n\tType uint16\n}\n\ntype RtAttr struct {\n\tLen  uint16\n\tType uint16\n}\n\ntype IfInfomsg struct {\n\tFamily uint8\n\t_      uint8\n\tType   uint16\n\tIndex  int32\n\tFlags  uint32\n\tChange uint32\n}\n\ntype IfAddrmsg struct {\n\tFamily    uint8\n\tPrefixlen uint8\n\tFlags     uint8\n\tScope     uint8\n\tIndex     uint32\n}\n\ntype IfaCacheinfo struct {\n\tPrefered uint32\n\tValid    uint32\n\tCstamp   uint32\n\tTstamp   uint32\n}\n\ntype RtMsg struct {\n\tFamily   uint8\n\tDst_len  uint8\n\tSrc_len  uint8\n\tTos      uint8\n\tTable    uint8\n\tProtocol uint8\n\tScope    uint8\n\tType     uint8\n\tFlags    uint32\n}\n\ntype RtNexthop struct {\n\tLen     uint16\n\tFlags   uint8\n\tHops    uint8\n\tIfindex int32\n}\n\ntype NdUseroptmsg struct {\n\tFamily    uint8\n\tPad1      uint8\n\tOpts_len  uint16\n\tIfindex   int32\n\tIcmp_type uint8\n\tIcmp_code uint8\n\tPad2      uint16\n\tPad3      uint32\n}\n\ntype NdMsg struct {\n\tFamily  uint8\n\tPad1    uint8\n\tPad2    uint16\n\tIfindex int32\n\tState   uint16\n\tFlags   uint8\n\tType    uint8\n}\n\nconst (\n\tSizeofSockFilter = 0x8\n)\n\ntype SockFilter struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype SockFprog struct {\n\tLen    uint16\n\tFilter *SockFilter\n}\n\ntype InotifyEvent struct {\n\tWd     int32\n\tMask   uint32\n\tCookie uint32\n\tLen    uint32\n}\n\nconst SizeofInotifyEvent = 0x10\n\nconst SI_LOAD_SHIFT = 0x10\n\ntype Utsname struct {\n\tSysname    [65]byte\n\tNodename   [65]byte\n\tRelease    [65]byte\n\tVersion    [65]byte\n\tMachine    [65]byte\n\tDomainname [65]byte\n}\n\nconst (\n\tAT_EMPTY_PATH   = 0x1000\n\tAT_FDCWD        = -0x64\n\tAT_NO_AUTOMOUNT = 0x800\n\tAT_REMOVEDIR    = 0x200\n\n\tAT_STATX_SYNC_AS_STAT = 0x0\n\tAT_STATX_FORCE_SYNC   = 0x2000\n\tAT_STATX_DONT_SYNC    = 0x4000\n\n\tAT_SYMLINK_FOLLOW   = 0x400\n\tAT_SYMLINK_NOFOLLOW = 0x100\n\n\tAT_EACCESS = 0x200\n)\n\ntype OpenHow struct {\n\tFlags   uint64\n\tMode    uint64\n\tResolve uint64\n}\n\nconst SizeofOpenHow = 0x18\n\nconst (\n\tRESOLVE_BENEATH       = 0x8\n\tRESOLVE_IN_ROOT       = 0x10\n\tRESOLVE_NO_MAGICLINKS = 0x2\n\tRESOLVE_NO_SYMLINKS   = 0x4\n\tRESOLVE_NO_XDEV       = 0x1\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLIN   = 0x1\n\tPOLLPRI  = 0x2\n\tPOLLOUT  = 0x4\n\tPOLLERR  = 0x8\n\tPOLLHUP  = 0x10\n\tPOLLNVAL = 0x20\n)\n\ntype SignalfdSiginfo struct {\n\tSigno     uint32\n\tErrno     int32\n\tCode      int32\n\tPid       uint32\n\tUid       uint32\n\tFd        int32\n\tTid       uint32\n\tBand      uint32\n\tOverrun   uint32\n\tTrapno    uint32\n\tStatus    int32\n\tInt       int32\n\tPtr       uint64\n\tUtime     uint64\n\tStime     uint64\n\tAddr      uint64\n\tAddr_lsb  uint16\n\t_         uint16\n\tSyscall   int32\n\tCall_addr uint64\n\tArch      uint32\n\t_         [28]uint8\n}\n\nconst PERF_IOC_FLAG_GROUP = 0x1\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tTASKSTATS_CMD_UNSPEC                  = 0x0\n\tTASKSTATS_CMD_GET                     = 0x1\n\tTASKSTATS_CMD_NEW                     = 0x2\n\tTASKSTATS_TYPE_UNSPEC                 = 0x0\n\tTASKSTATS_TYPE_PID                    = 0x1\n\tTASKSTATS_TYPE_TGID                   = 0x2\n\tTASKSTATS_TYPE_STATS                  = 0x3\n\tTASKSTATS_TYPE_AGGR_PID               = 0x4\n\tTASKSTATS_TYPE_AGGR_TGID              = 0x5\n\tTASKSTATS_TYPE_NULL                   = 0x6\n\tTASKSTATS_CMD_ATTR_UNSPEC             = 0x0\n\tTASKSTATS_CMD_ATTR_PID                = 0x1\n\tTASKSTATS_CMD_ATTR_TGID               = 0x2\n\tTASKSTATS_CMD_ATTR_REGISTER_CPUMASK   = 0x3\n\tTASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4\n)\n\ntype CGroupStats struct {\n\tSleeping        uint64\n\tRunning         uint64\n\tStopped         uint64\n\tUninterruptible uint64\n\tIo_wait         uint64\n}\n\nconst (\n\tCGROUPSTATS_CMD_UNSPEC        = 0x3\n\tCGROUPSTATS_CMD_GET           = 0x4\n\tCGROUPSTATS_CMD_NEW           = 0x5\n\tCGROUPSTATS_TYPE_UNSPEC       = 0x0\n\tCGROUPSTATS_TYPE_CGROUP_STATS = 0x1\n\tCGROUPSTATS_CMD_ATTR_UNSPEC   = 0x0\n\tCGROUPSTATS_CMD_ATTR_FD       = 0x1\n)\n\ntype Genlmsghdr struct {\n\tCmd      uint8\n\tVersion  uint8\n\tReserved uint16\n}\n\nconst (\n\tCTRL_CMD_UNSPEC            = 0x0\n\tCTRL_CMD_NEWFAMILY         = 0x1\n\tCTRL_CMD_DELFAMILY         = 0x2\n\tCTRL_CMD_GETFAMILY         = 0x3\n\tCTRL_CMD_NEWOPS            = 0x4\n\tCTRL_CMD_DELOPS            = 0x5\n\tCTRL_CMD_GETOPS            = 0x6\n\tCTRL_CMD_NEWMCAST_GRP      = 0x7\n\tCTRL_CMD_DELMCAST_GRP      = 0x8\n\tCTRL_CMD_GETMCAST_GRP      = 0x9\n\tCTRL_ATTR_UNSPEC           = 0x0\n\tCTRL_ATTR_FAMILY_ID        = 0x1\n\tCTRL_ATTR_FAMILY_NAME      = 0x2\n\tCTRL_ATTR_VERSION          = 0x3\n\tCTRL_ATTR_HDRSIZE          = 0x4\n\tCTRL_ATTR_MAXATTR          = 0x5\n\tCTRL_ATTR_OPS              = 0x6\n\tCTRL_ATTR_MCAST_GROUPS     = 0x7\n\tCTRL_ATTR_OP_UNSPEC        = 0x0\n\tCTRL_ATTR_OP_ID            = 0x1\n\tCTRL_ATTR_OP_FLAGS         = 0x2\n\tCTRL_ATTR_MCAST_GRP_UNSPEC = 0x0\n\tCTRL_ATTR_MCAST_GRP_NAME   = 0x1\n\tCTRL_ATTR_MCAST_GRP_ID     = 0x2\n)\n\nconst (\n\t_CPU_SETSIZE = 0x400\n)\n\nconst (\n\tBDADDR_BREDR     = 0x0\n\tBDADDR_LE_PUBLIC = 0x1\n\tBDADDR_LE_RANDOM = 0x2\n)\n\ntype PerfEventAttr struct {\n\tType               uint32\n\tSize               uint32\n\tConfig             uint64\n\tSample             uint64\n\tSample_type        uint64\n\tRead_format        uint64\n\tBits               uint64\n\tWakeup             uint32\n\tBp_type            uint32\n\tExt1               uint64\n\tExt2               uint64\n\tBranch_sample_type uint64\n\tSample_regs_user   uint64\n\tSample_stack_user  uint32\n\tClockid            int32\n\tSample_regs_intr   uint64\n\tAux_watermark      uint32\n\tSample_max_stack   uint16\n\t_                  uint16\n}\n\ntype PerfEventMmapPage struct {\n\tVersion        uint32\n\tCompat_version uint32\n\tLock           uint32\n\tIndex          uint32\n\tOffset         int64\n\tTime_enabled   uint64\n\tTime_running   uint64\n\tCapabilities   uint64\n\tPmc_width      uint16\n\tTime_shift     uint16\n\tTime_mult      uint32\n\tTime_offset    uint64\n\tTime_zero      uint64\n\tSize           uint32\n\t_              [948]uint8\n\tData_head      uint64\n\tData_tail      uint64\n\tData_offset    uint64\n\tData_size      uint64\n\tAux_head       uint64\n\tAux_tail       uint64\n\tAux_offset     uint64\n\tAux_size       uint64\n}\n\nconst (\n\tPerfBitDisabled               uint64 = CBitFieldMaskBit0\n\tPerfBitInherit                       = CBitFieldMaskBit1\n\tPerfBitPinned                        = CBitFieldMaskBit2\n\tPerfBitExclusive                     = CBitFieldMaskBit3\n\tPerfBitExcludeUser                   = CBitFieldMaskBit4\n\tPerfBitExcludeKernel                 = CBitFieldMaskBit5\n\tPerfBitExcludeHv                     = CBitFieldMaskBit6\n\tPerfBitExcludeIdle                   = CBitFieldMaskBit7\n\tPerfBitMmap                          = CBitFieldMaskBit8\n\tPerfBitComm                          = CBitFieldMaskBit9\n\tPerfBitFreq                          = CBitFieldMaskBit10\n\tPerfBitInheritStat                   = CBitFieldMaskBit11\n\tPerfBitEnableOnExec                  = CBitFieldMaskBit12\n\tPerfBitTask                          = CBitFieldMaskBit13\n\tPerfBitWatermark                     = CBitFieldMaskBit14\n\tPerfBitPreciseIPBit1                 = CBitFieldMaskBit15\n\tPerfBitPreciseIPBit2                 = CBitFieldMaskBit16\n\tPerfBitMmapData                      = CBitFieldMaskBit17\n\tPerfBitSampleIDAll                   = CBitFieldMaskBit18\n\tPerfBitExcludeHost                   = CBitFieldMaskBit19\n\tPerfBitExcludeGuest                  = CBitFieldMaskBit20\n\tPerfBitExcludeCallchainKernel        = CBitFieldMaskBit21\n\tPerfBitExcludeCallchainUser          = CBitFieldMaskBit22\n\tPerfBitMmap2                         = CBitFieldMaskBit23\n\tPerfBitCommExec                      = CBitFieldMaskBit24\n\tPerfBitUseClockID                    = CBitFieldMaskBit25\n\tPerfBitContextSwitch                 = CBitFieldMaskBit26\n)\n\nconst (\n\tPERF_TYPE_HARDWARE   = 0x0\n\tPERF_TYPE_SOFTWARE   = 0x1\n\tPERF_TYPE_TRACEPOINT = 0x2\n\tPERF_TYPE_HW_CACHE   = 0x3\n\tPERF_TYPE_RAW        = 0x4\n\tPERF_TYPE_BREAKPOINT = 0x5\n\n\tPERF_COUNT_HW_CPU_CYCLES              = 0x0\n\tPERF_COUNT_HW_INSTRUCTIONS            = 0x1\n\tPERF_COUNT_HW_CACHE_REFERENCES        = 0x2\n\tPERF_COUNT_HW_CACHE_MISSES            = 0x3\n\tPERF_COUNT_HW_BRANCH_INSTRUCTIONS     = 0x4\n\tPERF_COUNT_HW_BRANCH_MISSES           = 0x5\n\tPERF_COUNT_HW_BUS_CYCLES              = 0x6\n\tPERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7\n\tPERF_COUNT_HW_STALLED_CYCLES_BACKEND  = 0x8\n\tPERF_COUNT_HW_REF_CPU_CYCLES          = 0x9\n\n\tPERF_COUNT_HW_CACHE_L1D  = 0x0\n\tPERF_COUNT_HW_CACHE_L1I  = 0x1\n\tPERF_COUNT_HW_CACHE_LL   = 0x2\n\tPERF_COUNT_HW_CACHE_DTLB = 0x3\n\tPERF_COUNT_HW_CACHE_ITLB = 0x4\n\tPERF_COUNT_HW_CACHE_BPU  = 0x5\n\tPERF_COUNT_HW_CACHE_NODE = 0x6\n\n\tPERF_COUNT_HW_CACHE_OP_READ     = 0x0\n\tPERF_COUNT_HW_CACHE_OP_WRITE    = 0x1\n\tPERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2\n\n\tPERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0\n\tPERF_COUNT_HW_CACHE_RESULT_MISS   = 0x1\n\n\tPERF_COUNT_SW_CPU_CLOCK        = 0x0\n\tPERF_COUNT_SW_TASK_CLOCK       = 0x1\n\tPERF_COUNT_SW_PAGE_FAULTS      = 0x2\n\tPERF_COUNT_SW_CONTEXT_SWITCHES = 0x3\n\tPERF_COUNT_SW_CPU_MIGRATIONS   = 0x4\n\tPERF_COUNT_SW_PAGE_FAULTS_MIN  = 0x5\n\tPERF_COUNT_SW_PAGE_FAULTS_MAJ  = 0x6\n\tPERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7\n\tPERF_COUNT_SW_EMULATION_FAULTS = 0x8\n\tPERF_COUNT_SW_DUMMY            = 0x9\n\tPERF_COUNT_SW_BPF_OUTPUT       = 0xa\n\n\tPERF_SAMPLE_IP           = 0x1\n\tPERF_SAMPLE_TID          = 0x2\n\tPERF_SAMPLE_TIME         = 0x4\n\tPERF_SAMPLE_ADDR         = 0x8\n\tPERF_SAMPLE_READ         = 0x10\n\tPERF_SAMPLE_CALLCHAIN    = 0x20\n\tPERF_SAMPLE_ID           = 0x40\n\tPERF_SAMPLE_CPU          = 0x80\n\tPERF_SAMPLE_PERIOD       = 0x100\n\tPERF_SAMPLE_STREAM_ID    = 0x200\n\tPERF_SAMPLE_RAW          = 0x400\n\tPERF_SAMPLE_BRANCH_STACK = 0x800\n\tPERF_SAMPLE_REGS_USER    = 0x1000\n\tPERF_SAMPLE_STACK_USER   = 0x2000\n\tPERF_SAMPLE_WEIGHT       = 0x4000\n\tPERF_SAMPLE_DATA_SRC     = 0x8000\n\tPERF_SAMPLE_IDENTIFIER   = 0x10000\n\tPERF_SAMPLE_TRANSACTION  = 0x20000\n\tPERF_SAMPLE_REGS_INTR    = 0x40000\n\n\tPERF_SAMPLE_BRANCH_USER       = 0x1\n\tPERF_SAMPLE_BRANCH_KERNEL     = 0x2\n\tPERF_SAMPLE_BRANCH_HV         = 0x4\n\tPERF_SAMPLE_BRANCH_ANY        = 0x8\n\tPERF_SAMPLE_BRANCH_ANY_CALL   = 0x10\n\tPERF_SAMPLE_BRANCH_ANY_RETURN = 0x20\n\tPERF_SAMPLE_BRANCH_IND_CALL   = 0x40\n\tPERF_SAMPLE_BRANCH_ABORT_TX   = 0x80\n\tPERF_SAMPLE_BRANCH_IN_TX      = 0x100\n\tPERF_SAMPLE_BRANCH_NO_TX      = 0x200\n\tPERF_SAMPLE_BRANCH_COND       = 0x400\n\tPERF_SAMPLE_BRANCH_CALL_STACK = 0x800\n\tPERF_SAMPLE_BRANCH_IND_JUMP   = 0x1000\n\tPERF_SAMPLE_BRANCH_CALL       = 0x2000\n\tPERF_SAMPLE_BRANCH_NO_FLAGS   = 0x4000\n\tPERF_SAMPLE_BRANCH_NO_CYCLES  = 0x8000\n\tPERF_SAMPLE_BRANCH_TYPE_SAVE  = 0x10000\n\n\tPERF_FORMAT_TOTAL_TIME_ENABLED = 0x1\n\tPERF_FORMAT_TOTAL_TIME_RUNNING = 0x2\n\tPERF_FORMAT_ID                 = 0x4\n\tPERF_FORMAT_GROUP              = 0x8\n\n\tPERF_RECORD_MMAP            = 0x1\n\tPERF_RECORD_LOST            = 0x2\n\tPERF_RECORD_COMM            = 0x3\n\tPERF_RECORD_EXIT            = 0x4\n\tPERF_RECORD_THROTTLE        = 0x5\n\tPERF_RECORD_UNTHROTTLE      = 0x6\n\tPERF_RECORD_FORK            = 0x7\n\tPERF_RECORD_READ            = 0x8\n\tPERF_RECORD_SAMPLE          = 0x9\n\tPERF_RECORD_MMAP2           = 0xa\n\tPERF_RECORD_AUX             = 0xb\n\tPERF_RECORD_ITRACE_START    = 0xc\n\tPERF_RECORD_LOST_SAMPLES    = 0xd\n\tPERF_RECORD_SWITCH          = 0xe\n\tPERF_RECORD_SWITCH_CPU_WIDE = 0xf\n\tPERF_RECORD_NAMESPACES      = 0x10\n\n\tPERF_CONTEXT_HV     = -0x20\n\tPERF_CONTEXT_KERNEL = -0x80\n\tPERF_CONTEXT_USER   = -0x200\n\n\tPERF_CONTEXT_GUEST        = -0x800\n\tPERF_CONTEXT_GUEST_KERNEL = -0x880\n\tPERF_CONTEXT_GUEST_USER   = -0xa00\n\n\tPERF_FLAG_FD_NO_GROUP = 0x1\n\tPERF_FLAG_FD_OUTPUT   = 0x2\n\tPERF_FLAG_PID_CGROUP  = 0x4\n\tPERF_FLAG_FD_CLOEXEC  = 0x8\n)\n\ntype TCPMD5Sig struct {\n\tAddr      SockaddrStorage\n\tFlags     uint8\n\tPrefixlen uint8\n\tKeylen    uint16\n\t_         uint32\n\tKey       [80]uint8\n}\n\ntype HDDriveCmdHdr struct {\n\tCommand uint8\n\tNumber  uint8\n\tFeature uint8\n\tCount   uint8\n}\n\ntype HDDriveID struct {\n\tConfig         uint16\n\tCyls           uint16\n\tReserved2      uint16\n\tHeads          uint16\n\tTrack_bytes    uint16\n\tSector_bytes   uint16\n\tSectors        uint16\n\tVendor0        uint16\n\tVendor1        uint16\n\tVendor2        uint16\n\tSerial_no      [20]uint8\n\tBuf_type       uint16\n\tBuf_size       uint16\n\tEcc_bytes      uint16\n\tFw_rev         [8]uint8\n\tModel          [40]uint8\n\tMax_multsect   uint8\n\tVendor3        uint8\n\tDword_io       uint16\n\tVendor4        uint8\n\tCapability     uint8\n\tReserved50     uint16\n\tVendor5        uint8\n\tTPIO           uint8\n\tVendor6        uint8\n\tTDMA           uint8\n\tField_valid    uint16\n\tCur_cyls       uint16\n\tCur_heads      uint16\n\tCur_sectors    uint16\n\tCur_capacity0  uint16\n\tCur_capacity1  uint16\n\tMultsect       uint8\n\tMultsect_valid uint8\n\tLba_capacity   uint32\n\tDma_1word      uint16\n\tDma_mword      uint16\n\tEide_pio_modes uint16\n\tEide_dma_min   uint16\n\tEide_dma_time  uint16\n\tEide_pio       uint16\n\tEide_pio_iordy uint16\n\tWords69_70     [2]uint16\n\tWords71_74     [4]uint16\n\tQueue_depth    uint16\n\tWords76_79     [4]uint16\n\tMajor_rev_num  uint16\n\tMinor_rev_num  uint16\n\tCommand_set_1  uint16\n\tCommand_set_2  uint16\n\tCfsse          uint16\n\tCfs_enable_1   uint16\n\tCfs_enable_2   uint16\n\tCsf_default    uint16\n\tDma_ultra      uint16\n\tTrseuc         uint16\n\tTrsEuc         uint16\n\tCurAPMvalues   uint16\n\tMprc           uint16\n\tHw_config      uint16\n\tAcoustic       uint16\n\tMsrqs          uint16\n\tSxfert         uint16\n\tSal            uint16\n\tSpg            uint32\n\tLba_capacity_2 uint64\n\tWords104_125   [22]uint16\n\tLast_lun       uint16\n\tWord127        uint16\n\tDlf            uint16\n\tCsfo           uint16\n\tWords130_155   [26]uint16\n\tWord156        uint16\n\tWords157_159   [3]uint16\n\tCfa_power      uint16\n\tWords161_175   [15]uint16\n\tWords176_205   [30]uint16\n\tWords206_254   [49]uint16\n\tIntegrity_word uint16\n}\n\nconst (\n\tST_MANDLOCK    = 0x40\n\tST_NOATIME     = 0x400\n\tST_NODEV       = 0x4\n\tST_NODIRATIME  = 0x800\n\tST_NOEXEC      = 0x8\n\tST_NOSUID      = 0x2\n\tST_RDONLY      = 0x1\n\tST_RELATIME    = 0x1000\n\tST_SYNCHRONOUS = 0x10\n)\n\ntype Tpacket2Hdr struct {\n\tStatus    uint32\n\tLen       uint32\n\tSnaplen   uint32\n\tMac       uint16\n\tNet       uint16\n\tSec       uint32\n\tNsec      uint32\n\tVlan_tci  uint16\n\tVlan_tpid uint16\n\t_         [4]uint8\n}\n\ntype Tpacket3Hdr struct {\n\tNext_offset uint32\n\tSec         uint32\n\tNsec        uint32\n\tSnaplen     uint32\n\tLen         uint32\n\tStatus      uint32\n\tMac         uint16\n\tNet         uint16\n\tHv1         TpacketHdrVariant1\n\t_           [8]uint8\n}\n\ntype TpacketHdrVariant1 struct {\n\tRxhash    uint32\n\tVlan_tci  uint32\n\tVlan_tpid uint16\n\t_         uint16\n}\n\ntype TpacketBlockDesc struct {\n\tVersion uint32\n\tTo_priv uint32\n\tHdr     [40]byte\n}\n\ntype TpacketBDTS struct {\n\tSec  uint32\n\tUsec uint32\n}\n\ntype TpacketHdrV1 struct {\n\tBlock_status        uint32\n\tNum_pkts            uint32\n\tOffset_to_first_pkt uint32\n\tBlk_len             uint32\n\tSeq_num             uint64\n\tTs_first_pkt        TpacketBDTS\n\tTs_last_pkt         TpacketBDTS\n}\n\ntype TpacketReq struct {\n\tBlock_size uint32\n\tBlock_nr   uint32\n\tFrame_size uint32\n\tFrame_nr   uint32\n}\n\ntype TpacketReq3 struct {\n\tBlock_size       uint32\n\tBlock_nr         uint32\n\tFrame_size       uint32\n\tFrame_nr         uint32\n\tRetire_blk_tov   uint32\n\tSizeof_priv      uint32\n\tFeature_req_word uint32\n}\n\ntype TpacketStats struct {\n\tPackets uint32\n\tDrops   uint32\n}\n\ntype TpacketStatsV3 struct {\n\tPackets      uint32\n\tDrops        uint32\n\tFreeze_q_cnt uint32\n}\n\ntype TpacketAuxdata struct {\n\tStatus    uint32\n\tLen       uint32\n\tSnaplen   uint32\n\tMac       uint16\n\tNet       uint16\n\tVlan_tci  uint16\n\tVlan_tpid uint16\n}\n\nconst (\n\tTPACKET_V1 = 0x0\n\tTPACKET_V2 = 0x1\n\tTPACKET_V3 = 0x2\n)\n\nconst (\n\tSizeofTpacket2Hdr = 0x20\n\tSizeofTpacket3Hdr = 0x30\n\n\tSizeofTpacketStats   = 0x8\n\tSizeofTpacketStatsV3 = 0xc\n)\n\nconst (\n\tNF_INET_PRE_ROUTING  = 0x0\n\tNF_INET_LOCAL_IN     = 0x1\n\tNF_INET_FORWARD      = 0x2\n\tNF_INET_LOCAL_OUT    = 0x3\n\tNF_INET_POST_ROUTING = 0x4\n\tNF_INET_NUMHOOKS     = 0x5\n)\n\nconst (\n\tNF_NETDEV_INGRESS  = 0x0\n\tNF_NETDEV_NUMHOOKS = 0x1\n)\n\nconst (\n\tNFPROTO_UNSPEC   = 0x0\n\tNFPROTO_INET     = 0x1\n\tNFPROTO_IPV4     = 0x2\n\tNFPROTO_ARP      = 0x3\n\tNFPROTO_NETDEV   = 0x5\n\tNFPROTO_BRIDGE   = 0x7\n\tNFPROTO_IPV6     = 0xa\n\tNFPROTO_DECNET   = 0xc\n\tNFPROTO_NUMPROTO = 0xd\n)\n\ntype Nfgenmsg struct {\n\tNfgen_family uint8\n\tVersion      uint8\n\tRes_id       uint16\n}\n\nconst (\n\tNFNL_BATCH_UNSPEC = 0x0\n\tNFNL_BATCH_GENID  = 0x1\n)\n\nconst (\n\tNFT_REG_VERDICT                   = 0x0\n\tNFT_REG_1                         = 0x1\n\tNFT_REG_2                         = 0x2\n\tNFT_REG_3                         = 0x3\n\tNFT_REG_4                         = 0x4\n\tNFT_REG32_00                      = 0x8\n\tNFT_REG32_01                      = 0x9\n\tNFT_REG32_02                      = 0xa\n\tNFT_REG32_03                      = 0xb\n\tNFT_REG32_04                      = 0xc\n\tNFT_REG32_05                      = 0xd\n\tNFT_REG32_06                      = 0xe\n\tNFT_REG32_07                      = 0xf\n\tNFT_REG32_08                      = 0x10\n\tNFT_REG32_09                      = 0x11\n\tNFT_REG32_10                      = 0x12\n\tNFT_REG32_11                      = 0x13\n\tNFT_REG32_12                      = 0x14\n\tNFT_REG32_13                      = 0x15\n\tNFT_REG32_14                      = 0x16\n\tNFT_REG32_15                      = 0x17\n\tNFT_CONTINUE                      = -0x1\n\tNFT_BREAK                         = -0x2\n\tNFT_JUMP                          = -0x3\n\tNFT_GOTO                          = -0x4\n\tNFT_RETURN                        = -0x5\n\tNFT_MSG_NEWTABLE                  = 0x0\n\tNFT_MSG_GETTABLE                  = 0x1\n\tNFT_MSG_DELTABLE                  = 0x2\n\tNFT_MSG_NEWCHAIN                  = 0x3\n\tNFT_MSG_GETCHAIN                  = 0x4\n\tNFT_MSG_DELCHAIN                  = 0x5\n\tNFT_MSG_NEWRULE                   = 0x6\n\tNFT_MSG_GETRULE                   = 0x7\n\tNFT_MSG_DELRULE                   = 0x8\n\tNFT_MSG_NEWSET                    = 0x9\n\tNFT_MSG_GETSET                    = 0xa\n\tNFT_MSG_DELSET                    = 0xb\n\tNFT_MSG_NEWSETELEM                = 0xc\n\tNFT_MSG_GETSETELEM                = 0xd\n\tNFT_MSG_DELSETELEM                = 0xe\n\tNFT_MSG_NEWGEN                    = 0xf\n\tNFT_MSG_GETGEN                    = 0x10\n\tNFT_MSG_TRACE                     = 0x11\n\tNFT_MSG_NEWOBJ                    = 0x12\n\tNFT_MSG_GETOBJ                    = 0x13\n\tNFT_MSG_DELOBJ                    = 0x14\n\tNFT_MSG_GETOBJ_RESET              = 0x15\n\tNFT_MSG_MAX                       = 0x19\n\tNFTA_LIST_UNPEC                   = 0x0\n\tNFTA_LIST_ELEM                    = 0x1\n\tNFTA_HOOK_UNSPEC                  = 0x0\n\tNFTA_HOOK_HOOKNUM                 = 0x1\n\tNFTA_HOOK_PRIORITY                = 0x2\n\tNFTA_HOOK_DEV                     = 0x3\n\tNFT_TABLE_F_DORMANT               = 0x1\n\tNFTA_TABLE_UNSPEC                 = 0x0\n\tNFTA_TABLE_NAME                   = 0x1\n\tNFTA_TABLE_FLAGS                  = 0x2\n\tNFTA_TABLE_USE                    = 0x3\n\tNFTA_CHAIN_UNSPEC                 = 0x0\n\tNFTA_CHAIN_TABLE                  = 0x1\n\tNFTA_CHAIN_HANDLE                 = 0x2\n\tNFTA_CHAIN_NAME                   = 0x3\n\tNFTA_CHAIN_HOOK                   = 0x4\n\tNFTA_CHAIN_POLICY                 = 0x5\n\tNFTA_CHAIN_USE                    = 0x6\n\tNFTA_CHAIN_TYPE                   = 0x7\n\tNFTA_CHAIN_COUNTERS               = 0x8\n\tNFTA_CHAIN_PAD                    = 0x9\n\tNFTA_RULE_UNSPEC                  = 0x0\n\tNFTA_RULE_TABLE                   = 0x1\n\tNFTA_RULE_CHAIN                   = 0x2\n\tNFTA_RULE_HANDLE                  = 0x3\n\tNFTA_RULE_EXPRESSIONS             = 0x4\n\tNFTA_RULE_COMPAT                  = 0x5\n\tNFTA_RULE_POSITION                = 0x6\n\tNFTA_RULE_USERDATA                = 0x7\n\tNFTA_RULE_PAD                     = 0x8\n\tNFTA_RULE_ID                      = 0x9\n\tNFT_RULE_COMPAT_F_INV             = 0x2\n\tNFT_RULE_COMPAT_F_MASK            = 0x2\n\tNFTA_RULE_COMPAT_UNSPEC           = 0x0\n\tNFTA_RULE_COMPAT_PROTO            = 0x1\n\tNFTA_RULE_COMPAT_FLAGS            = 0x2\n\tNFT_SET_ANONYMOUS                 = 0x1\n\tNFT_SET_CONSTANT                  = 0x2\n\tNFT_SET_INTERVAL                  = 0x4\n\tNFT_SET_MAP                       = 0x8\n\tNFT_SET_TIMEOUT                   = 0x10\n\tNFT_SET_EVAL                      = 0x20\n\tNFT_SET_OBJECT                    = 0x40\n\tNFT_SET_POL_PERFORMANCE           = 0x0\n\tNFT_SET_POL_MEMORY                = 0x1\n\tNFTA_SET_DESC_UNSPEC              = 0x0\n\tNFTA_SET_DESC_SIZE                = 0x1\n\tNFTA_SET_UNSPEC                   = 0x0\n\tNFTA_SET_TABLE                    = 0x1\n\tNFTA_SET_NAME                     = 0x2\n\tNFTA_SET_FLAGS                    = 0x3\n\tNFTA_SET_KEY_TYPE                 = 0x4\n\tNFTA_SET_KEY_LEN                  = 0x5\n\tNFTA_SET_DATA_TYPE                = 0x6\n\tNFTA_SET_DATA_LEN                 = 0x7\n\tNFTA_SET_POLICY                   = 0x8\n\tNFTA_SET_DESC                     = 0x9\n\tNFTA_SET_ID                       = 0xa\n\tNFTA_SET_TIMEOUT                  = 0xb\n\tNFTA_SET_GC_INTERVAL              = 0xc\n\tNFTA_SET_USERDATA                 = 0xd\n\tNFTA_SET_PAD                      = 0xe\n\tNFTA_SET_OBJ_TYPE                 = 0xf\n\tNFT_SET_ELEM_INTERVAL_END         = 0x1\n\tNFTA_SET_ELEM_UNSPEC              = 0x0\n\tNFTA_SET_ELEM_KEY                 = 0x1\n\tNFTA_SET_ELEM_DATA                = 0x2\n\tNFTA_SET_ELEM_FLAGS               = 0x3\n\tNFTA_SET_ELEM_TIMEOUT             = 0x4\n\tNFTA_SET_ELEM_EXPIRATION          = 0x5\n\tNFTA_SET_ELEM_USERDATA            = 0x6\n\tNFTA_SET_ELEM_EXPR                = 0x7\n\tNFTA_SET_ELEM_PAD                 = 0x8\n\tNFTA_SET_ELEM_OBJREF              = 0x9\n\tNFTA_SET_ELEM_LIST_UNSPEC         = 0x0\n\tNFTA_SET_ELEM_LIST_TABLE          = 0x1\n\tNFTA_SET_ELEM_LIST_SET            = 0x2\n\tNFTA_SET_ELEM_LIST_ELEMENTS       = 0x3\n\tNFTA_SET_ELEM_LIST_SET_ID         = 0x4\n\tNFT_DATA_VALUE                    = 0x0\n\tNFT_DATA_VERDICT                  = 0xffffff00\n\tNFTA_DATA_UNSPEC                  = 0x0\n\tNFTA_DATA_VALUE                   = 0x1\n\tNFTA_DATA_VERDICT                 = 0x2\n\tNFTA_VERDICT_UNSPEC               = 0x0\n\tNFTA_VERDICT_CODE                 = 0x1\n\tNFTA_VERDICT_CHAIN                = 0x2\n\tNFTA_EXPR_UNSPEC                  = 0x0\n\tNFTA_EXPR_NAME                    = 0x1\n\tNFTA_EXPR_DATA                    = 0x2\n\tNFTA_IMMEDIATE_UNSPEC             = 0x0\n\tNFTA_IMMEDIATE_DREG               = 0x1\n\tNFTA_IMMEDIATE_DATA               = 0x2\n\tNFTA_BITWISE_UNSPEC               = 0x0\n\tNFTA_BITWISE_SREG                 = 0x1\n\tNFTA_BITWISE_DREG                 = 0x2\n\tNFTA_BITWISE_LEN                  = 0x3\n\tNFTA_BITWISE_MASK                 = 0x4\n\tNFTA_BITWISE_XOR                  = 0x5\n\tNFT_BYTEORDER_NTOH                = 0x0\n\tNFT_BYTEORDER_HTON                = 0x1\n\tNFTA_BYTEORDER_UNSPEC             = 0x0\n\tNFTA_BYTEORDER_SREG               = 0x1\n\tNFTA_BYTEORDER_DREG               = 0x2\n\tNFTA_BYTEORDER_OP                 = 0x3\n\tNFTA_BYTEORDER_LEN                = 0x4\n\tNFTA_BYTEORDER_SIZE               = 0x5\n\tNFT_CMP_EQ                        = 0x0\n\tNFT_CMP_NEQ                       = 0x1\n\tNFT_CMP_LT                        = 0x2\n\tNFT_CMP_LTE                       = 0x3\n\tNFT_CMP_GT                        = 0x4\n\tNFT_CMP_GTE                       = 0x5\n\tNFTA_CMP_UNSPEC                   = 0x0\n\tNFTA_CMP_SREG                     = 0x1\n\tNFTA_CMP_OP                       = 0x2\n\tNFTA_CMP_DATA                     = 0x3\n\tNFT_RANGE_EQ                      = 0x0\n\tNFT_RANGE_NEQ                     = 0x1\n\tNFTA_RANGE_UNSPEC                 = 0x0\n\tNFTA_RANGE_SREG                   = 0x1\n\tNFTA_RANGE_OP                     = 0x2\n\tNFTA_RANGE_FROM_DATA              = 0x3\n\tNFTA_RANGE_TO_DATA                = 0x4\n\tNFT_LOOKUP_F_INV                  = 0x1\n\tNFTA_LOOKUP_UNSPEC                = 0x0\n\tNFTA_LOOKUP_SET                   = 0x1\n\tNFTA_LOOKUP_SREG                  = 0x2\n\tNFTA_LOOKUP_DREG                  = 0x3\n\tNFTA_LOOKUP_SET_ID                = 0x4\n\tNFTA_LOOKUP_FLAGS                 = 0x5\n\tNFT_DYNSET_OP_ADD                 = 0x0\n\tNFT_DYNSET_OP_UPDATE              = 0x1\n\tNFT_DYNSET_F_INV                  = 0x1\n\tNFTA_DYNSET_UNSPEC                = 0x0\n\tNFTA_DYNSET_SET_NAME              = 0x1\n\tNFTA_DYNSET_SET_ID                = 0x2\n\tNFTA_DYNSET_OP                    = 0x3\n\tNFTA_DYNSET_SREG_KEY              = 0x4\n\tNFTA_DYNSET_SREG_DATA             = 0x5\n\tNFTA_DYNSET_TIMEOUT               = 0x6\n\tNFTA_DYNSET_EXPR                  = 0x7\n\tNFTA_DYNSET_PAD                   = 0x8\n\tNFTA_DYNSET_FLAGS                 = 0x9\n\tNFT_PAYLOAD_LL_HEADER             = 0x0\n\tNFT_PAYLOAD_NETWORK_HEADER        = 0x1\n\tNFT_PAYLOAD_TRANSPORT_HEADER      = 0x2\n\tNFT_PAYLOAD_CSUM_NONE             = 0x0\n\tNFT_PAYLOAD_CSUM_INET             = 0x1\n\tNFT_PAYLOAD_L4CSUM_PSEUDOHDR      = 0x1\n\tNFTA_PAYLOAD_UNSPEC               = 0x0\n\tNFTA_PAYLOAD_DREG                 = 0x1\n\tNFTA_PAYLOAD_BASE                 = 0x2\n\tNFTA_PAYLOAD_OFFSET               = 0x3\n\tNFTA_PAYLOAD_LEN                  = 0x4\n\tNFTA_PAYLOAD_SREG                 = 0x5\n\tNFTA_PAYLOAD_CSUM_TYPE            = 0x6\n\tNFTA_PAYLOAD_CSUM_OFFSET          = 0x7\n\tNFTA_PAYLOAD_CSUM_FLAGS           = 0x8\n\tNFT_EXTHDR_F_PRESENT              = 0x1\n\tNFT_EXTHDR_OP_IPV6                = 0x0\n\tNFT_EXTHDR_OP_TCPOPT              = 0x1\n\tNFTA_EXTHDR_UNSPEC                = 0x0\n\tNFTA_EXTHDR_DREG                  = 0x1\n\tNFTA_EXTHDR_TYPE                  = 0x2\n\tNFTA_EXTHDR_OFFSET                = 0x3\n\tNFTA_EXTHDR_LEN                   = 0x4\n\tNFTA_EXTHDR_FLAGS                 = 0x5\n\tNFTA_EXTHDR_OP                    = 0x6\n\tNFTA_EXTHDR_SREG                  = 0x7\n\tNFT_META_LEN                      = 0x0\n\tNFT_META_PROTOCOL                 = 0x1\n\tNFT_META_PRIORITY                 = 0x2\n\tNFT_META_MARK                     = 0x3\n\tNFT_META_IIF                      = 0x4\n\tNFT_META_OIF                      = 0x5\n\tNFT_META_IIFNAME                  = 0x6\n\tNFT_META_OIFNAME                  = 0x7\n\tNFT_META_IIFTYPE                  = 0x8\n\tNFT_META_OIFTYPE                  = 0x9\n\tNFT_META_SKUID                    = 0xa\n\tNFT_META_SKGID                    = 0xb\n\tNFT_META_NFTRACE                  = 0xc\n\tNFT_META_RTCLASSID                = 0xd\n\tNFT_META_SECMARK                  = 0xe\n\tNFT_META_NFPROTO                  = 0xf\n\tNFT_META_L4PROTO                  = 0x10\n\tNFT_META_BRI_IIFNAME              = 0x11\n\tNFT_META_BRI_OIFNAME              = 0x12\n\tNFT_META_PKTTYPE                  = 0x13\n\tNFT_META_CPU                      = 0x14\n\tNFT_META_IIFGROUP                 = 0x15\n\tNFT_META_OIFGROUP                 = 0x16\n\tNFT_META_CGROUP                   = 0x17\n\tNFT_META_PRANDOM                  = 0x18\n\tNFT_RT_CLASSID                    = 0x0\n\tNFT_RT_NEXTHOP4                   = 0x1\n\tNFT_RT_NEXTHOP6                   = 0x2\n\tNFT_RT_TCPMSS                     = 0x3\n\tNFT_HASH_JENKINS                  = 0x0\n\tNFT_HASH_SYM                      = 0x1\n\tNFTA_HASH_UNSPEC                  = 0x0\n\tNFTA_HASH_SREG                    = 0x1\n\tNFTA_HASH_DREG                    = 0x2\n\tNFTA_HASH_LEN                     = 0x3\n\tNFTA_HASH_MODULUS                 = 0x4\n\tNFTA_HASH_SEED                    = 0x5\n\tNFTA_HASH_OFFSET                  = 0x6\n\tNFTA_HASH_TYPE                    = 0x7\n\tNFTA_META_UNSPEC                  = 0x0\n\tNFTA_META_DREG                    = 0x1\n\tNFTA_META_KEY                     = 0x2\n\tNFTA_META_SREG                    = 0x3\n\tNFTA_RT_UNSPEC                    = 0x0\n\tNFTA_RT_DREG                      = 0x1\n\tNFTA_RT_KEY                       = 0x2\n\tNFT_CT_STATE                      = 0x0\n\tNFT_CT_DIRECTION                  = 0x1\n\tNFT_CT_STATUS                     = 0x2\n\tNFT_CT_MARK                       = 0x3\n\tNFT_CT_SECMARK                    = 0x4\n\tNFT_CT_EXPIRATION                 = 0x5\n\tNFT_CT_HELPER                     = 0x6\n\tNFT_CT_L3PROTOCOL                 = 0x7\n\tNFT_CT_SRC                        = 0x8\n\tNFT_CT_DST                        = 0x9\n\tNFT_CT_PROTOCOL                   = 0xa\n\tNFT_CT_PROTO_SRC                  = 0xb\n\tNFT_CT_PROTO_DST                  = 0xc\n\tNFT_CT_LABELS                     = 0xd\n\tNFT_CT_PKTS                       = 0xe\n\tNFT_CT_BYTES                      = 0xf\n\tNFT_CT_AVGPKT                     = 0x10\n\tNFT_CT_ZONE                       = 0x11\n\tNFT_CT_EVENTMASK                  = 0x12\n\tNFTA_CT_UNSPEC                    = 0x0\n\tNFTA_CT_DREG                      = 0x1\n\tNFTA_CT_KEY                       = 0x2\n\tNFTA_CT_DIRECTION                 = 0x3\n\tNFTA_CT_SREG                      = 0x4\n\tNFT_LIMIT_PKTS                    = 0x0\n\tNFT_LIMIT_PKT_BYTES               = 0x1\n\tNFT_LIMIT_F_INV                   = 0x1\n\tNFTA_LIMIT_UNSPEC                 = 0x0\n\tNFTA_LIMIT_RATE                   = 0x1\n\tNFTA_LIMIT_UNIT                   = 0x2\n\tNFTA_LIMIT_BURST                  = 0x3\n\tNFTA_LIMIT_TYPE                   = 0x4\n\tNFTA_LIMIT_FLAGS                  = 0x5\n\tNFTA_LIMIT_PAD                    = 0x6\n\tNFTA_COUNTER_UNSPEC               = 0x0\n\tNFTA_COUNTER_BYTES                = 0x1\n\tNFTA_COUNTER_PACKETS              = 0x2\n\tNFTA_COUNTER_PAD                  = 0x3\n\tNFTA_LOG_UNSPEC                   = 0x0\n\tNFTA_LOG_GROUP                    = 0x1\n\tNFTA_LOG_PREFIX                   = 0x2\n\tNFTA_LOG_SNAPLEN                  = 0x3\n\tNFTA_LOG_QTHRESHOLD               = 0x4\n\tNFTA_LOG_LEVEL                    = 0x5\n\tNFTA_LOG_FLAGS                    = 0x6\n\tNFTA_QUEUE_UNSPEC                 = 0x0\n\tNFTA_QUEUE_NUM                    = 0x1\n\tNFTA_QUEUE_TOTAL                  = 0x2\n\tNFTA_QUEUE_FLAGS                  = 0x3\n\tNFTA_QUEUE_SREG_QNUM              = 0x4\n\tNFT_QUOTA_F_INV                   = 0x1\n\tNFT_QUOTA_F_DEPLETED              = 0x2\n\tNFTA_QUOTA_UNSPEC                 = 0x0\n\tNFTA_QUOTA_BYTES                  = 0x1\n\tNFTA_QUOTA_FLAGS                  = 0x2\n\tNFTA_QUOTA_PAD                    = 0x3\n\tNFTA_QUOTA_CONSUMED               = 0x4\n\tNFT_REJECT_ICMP_UNREACH           = 0x0\n\tNFT_REJECT_TCP_RST                = 0x1\n\tNFT_REJECT_ICMPX_UNREACH          = 0x2\n\tNFT_REJECT_ICMPX_NO_ROUTE         = 0x0\n\tNFT_REJECT_ICMPX_PORT_UNREACH     = 0x1\n\tNFT_REJECT_ICMPX_HOST_UNREACH     = 0x2\n\tNFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3\n\tNFTA_REJECT_UNSPEC                = 0x0\n\tNFTA_REJECT_TYPE                  = 0x1\n\tNFTA_REJECT_ICMP_CODE             = 0x2\n\tNFT_NAT_SNAT                      = 0x0\n\tNFT_NAT_DNAT                      = 0x1\n\tNFTA_NAT_UNSPEC                   = 0x0\n\tNFTA_NAT_TYPE                     = 0x1\n\tNFTA_NAT_FAMILY                   = 0x2\n\tNFTA_NAT_REG_ADDR_MIN             = 0x3\n\tNFTA_NAT_REG_ADDR_MAX             = 0x4\n\tNFTA_NAT_REG_PROTO_MIN            = 0x5\n\tNFTA_NAT_REG_PROTO_MAX            = 0x6\n\tNFTA_NAT_FLAGS                    = 0x7\n\tNFTA_MASQ_UNSPEC                  = 0x0\n\tNFTA_MASQ_FLAGS                   = 0x1\n\tNFTA_MASQ_REG_PROTO_MIN           = 0x2\n\tNFTA_MASQ_REG_PROTO_MAX           = 0x3\n\tNFTA_REDIR_UNSPEC                 = 0x0\n\tNFTA_REDIR_REG_PROTO_MIN          = 0x1\n\tNFTA_REDIR_REG_PROTO_MAX          = 0x2\n\tNFTA_REDIR_FLAGS                  = 0x3\n\tNFTA_DUP_UNSPEC                   = 0x0\n\tNFTA_DUP_SREG_ADDR                = 0x1\n\tNFTA_DUP_SREG_DEV                 = 0x2\n\tNFTA_FWD_UNSPEC                   = 0x0\n\tNFTA_FWD_SREG_DEV                 = 0x1\n\tNFTA_OBJREF_UNSPEC                = 0x0\n\tNFTA_OBJREF_IMM_TYPE              = 0x1\n\tNFTA_OBJREF_IMM_NAME              = 0x2\n\tNFTA_OBJREF_SET_SREG              = 0x3\n\tNFTA_OBJREF_SET_NAME              = 0x4\n\tNFTA_OBJREF_SET_ID                = 0x5\n\tNFTA_GEN_UNSPEC                   = 0x0\n\tNFTA_GEN_ID                       = 0x1\n\tNFTA_GEN_PROC_PID                 = 0x2\n\tNFTA_GEN_PROC_NAME                = 0x3\n\tNFTA_FIB_UNSPEC                   = 0x0\n\tNFTA_FIB_DREG                     = 0x1\n\tNFTA_FIB_RESULT                   = 0x2\n\tNFTA_FIB_FLAGS                    = 0x3\n\tNFT_FIB_RESULT_UNSPEC             = 0x0\n\tNFT_FIB_RESULT_OIF                = 0x1\n\tNFT_FIB_RESULT_OIFNAME            = 0x2\n\tNFT_FIB_RESULT_ADDRTYPE           = 0x3\n\tNFTA_FIB_F_SADDR                  = 0x1\n\tNFTA_FIB_F_DADDR                  = 0x2\n\tNFTA_FIB_F_MARK                   = 0x4\n\tNFTA_FIB_F_IIF                    = 0x8\n\tNFTA_FIB_F_OIF                    = 0x10\n\tNFTA_FIB_F_PRESENT                = 0x20\n\tNFTA_CT_HELPER_UNSPEC             = 0x0\n\tNFTA_CT_HELPER_NAME               = 0x1\n\tNFTA_CT_HELPER_L3PROTO            = 0x2\n\tNFTA_CT_HELPER_L4PROTO            = 0x3\n\tNFTA_OBJ_UNSPEC                   = 0x0\n\tNFTA_OBJ_TABLE                    = 0x1\n\tNFTA_OBJ_NAME                     = 0x2\n\tNFTA_OBJ_TYPE                     = 0x3\n\tNFTA_OBJ_DATA                     = 0x4\n\tNFTA_OBJ_USE                      = 0x5\n\tNFTA_TRACE_UNSPEC                 = 0x0\n\tNFTA_TRACE_TABLE                  = 0x1\n\tNFTA_TRACE_CHAIN                  = 0x2\n\tNFTA_TRACE_RULE_HANDLE            = 0x3\n\tNFTA_TRACE_TYPE                   = 0x4\n\tNFTA_TRACE_VERDICT                = 0x5\n\tNFTA_TRACE_ID                     = 0x6\n\tNFTA_TRACE_LL_HEADER              = 0x7\n\tNFTA_TRACE_NETWORK_HEADER         = 0x8\n\tNFTA_TRACE_TRANSPORT_HEADER       = 0x9\n\tNFTA_TRACE_IIF                    = 0xa\n\tNFTA_TRACE_IIFTYPE                = 0xb\n\tNFTA_TRACE_OIF                    = 0xc\n\tNFTA_TRACE_OIFTYPE                = 0xd\n\tNFTA_TRACE_MARK                   = 0xe\n\tNFTA_TRACE_NFPROTO                = 0xf\n\tNFTA_TRACE_POLICY                 = 0x10\n\tNFTA_TRACE_PAD                    = 0x11\n\tNFT_TRACETYPE_UNSPEC              = 0x0\n\tNFT_TRACETYPE_POLICY              = 0x1\n\tNFT_TRACETYPE_RETURN              = 0x2\n\tNFT_TRACETYPE_RULE                = 0x3\n\tNFTA_NG_UNSPEC                    = 0x0\n\tNFTA_NG_DREG                      = 0x1\n\tNFTA_NG_MODULUS                   = 0x2\n\tNFTA_NG_TYPE                      = 0x3\n\tNFTA_NG_OFFSET                    = 0x4\n\tNFT_NG_INCREMENTAL                = 0x0\n\tNFT_NG_RANDOM                     = 0x1\n)\n\nconst (\n\tNFTA_TARGET_UNSPEC = 0x0\n\tNFTA_TARGET_NAME   = 0x1\n\tNFTA_TARGET_REV    = 0x2\n\tNFTA_TARGET_INFO   = 0x3\n\tNFTA_MATCH_UNSPEC  = 0x0\n\tNFTA_MATCH_NAME    = 0x1\n\tNFTA_MATCH_REV     = 0x2\n\tNFTA_MATCH_INFO    = 0x3\n\tNFTA_COMPAT_UNSPEC = 0x0\n\tNFTA_COMPAT_NAME   = 0x1\n\tNFTA_COMPAT_REV    = 0x2\n\tNFTA_COMPAT_TYPE   = 0x3\n)\n\ntype RTCTime struct {\n\tSec   int32\n\tMin   int32\n\tHour  int32\n\tMday  int32\n\tMon   int32\n\tYear  int32\n\tWday  int32\n\tYday  int32\n\tIsdst int32\n}\n\ntype RTCWkAlrm struct {\n\tEnabled uint8\n\tPending uint8\n\tTime    RTCTime\n}\n\ntype BlkpgIoctlArg struct {\n\tOp      int32\n\tFlags   int32\n\tDatalen int32\n\tData    *byte\n}\n\nconst (\n\tBLKPG_ADD_PARTITION    = 0x1\n\tBLKPG_DEL_PARTITION    = 0x2\n\tBLKPG_RESIZE_PARTITION = 0x3\n)\n\nconst (\n\tNETNSA_NONE = 0x0\n\tNETNSA_NSID = 0x1\n\tNETNSA_PID  = 0x2\n\tNETNSA_FD   = 0x3\n)\n\ntype XDPRingOffset struct {\n\tProducer uint64\n\tConsumer uint64\n\tDesc     uint64\n\tFlags    uint64\n}\n\ntype XDPMmapOffsets struct {\n\tRx XDPRingOffset\n\tTx XDPRingOffset\n\tFr XDPRingOffset\n\tCr XDPRingOffset\n}\n\ntype XDPStatistics struct {\n\tRx_dropped       uint64\n\tRx_invalid_descs uint64\n\tTx_invalid_descs uint64\n}\n\ntype XDPDesc struct {\n\tAddr    uint64\n\tLen     uint32\n\tOptions uint32\n}\n\nconst (\n\tNCSI_CMD_UNSPEC                 = 0x0\n\tNCSI_CMD_PKG_INFO               = 0x1\n\tNCSI_CMD_SET_INTERFACE          = 0x2\n\tNCSI_CMD_CLEAR_INTERFACE        = 0x3\n\tNCSI_ATTR_UNSPEC                = 0x0\n\tNCSI_ATTR_IFINDEX               = 0x1\n\tNCSI_ATTR_PACKAGE_LIST          = 0x2\n\tNCSI_ATTR_PACKAGE_ID            = 0x3\n\tNCSI_ATTR_CHANNEL_ID            = 0x4\n\tNCSI_PKG_ATTR_UNSPEC            = 0x0\n\tNCSI_PKG_ATTR                   = 0x1\n\tNCSI_PKG_ATTR_ID                = 0x2\n\tNCSI_PKG_ATTR_FORCED            = 0x3\n\tNCSI_PKG_ATTR_CHANNEL_LIST      = 0x4\n\tNCSI_CHANNEL_ATTR_UNSPEC        = 0x0\n\tNCSI_CHANNEL_ATTR               = 0x1\n\tNCSI_CHANNEL_ATTR_ID            = 0x2\n\tNCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3\n\tNCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4\n\tNCSI_CHANNEL_ATTR_VERSION_STR   = 0x5\n\tNCSI_CHANNEL_ATTR_LINK_STATE    = 0x6\n\tNCSI_CHANNEL_ATTR_ACTIVE        = 0x7\n\tNCSI_CHANNEL_ATTR_FORCED        = 0x8\n\tNCSI_CHANNEL_ATTR_VLAN_LIST     = 0x9\n\tNCSI_CHANNEL_ATTR_VLAN_ID       = 0xa\n)\n\ntype ScmTimestamping struct {\n\tTs [3]Timespec\n}\n\nconst (\n\tSOF_TIMESTAMPING_TX_HARDWARE  = 0x1\n\tSOF_TIMESTAMPING_TX_SOFTWARE  = 0x2\n\tSOF_TIMESTAMPING_RX_HARDWARE  = 0x4\n\tSOF_TIMESTAMPING_RX_SOFTWARE  = 0x8\n\tSOF_TIMESTAMPING_SOFTWARE     = 0x10\n\tSOF_TIMESTAMPING_SYS_HARDWARE = 0x20\n\tSOF_TIMESTAMPING_RAW_HARDWARE = 0x40\n\tSOF_TIMESTAMPING_OPT_ID       = 0x80\n\tSOF_TIMESTAMPING_TX_SCHED     = 0x100\n\tSOF_TIMESTAMPING_TX_ACK       = 0x200\n\tSOF_TIMESTAMPING_OPT_CMSG     = 0x400\n\tSOF_TIMESTAMPING_OPT_TSONLY   = 0x800\n\tSOF_TIMESTAMPING_OPT_STATS    = 0x1000\n\tSOF_TIMESTAMPING_OPT_PKTINFO  = 0x2000\n\tSOF_TIMESTAMPING_OPT_TX_SWHW  = 0x4000\n\n\tSOF_TIMESTAMPING_LAST = 0x4000\n\tSOF_TIMESTAMPING_MASK = 0x7fff\n\n\tSCM_TSTAMP_SND   = 0x0\n\tSCM_TSTAMP_SCHED = 0x1\n\tSCM_TSTAMP_ACK   = 0x2\n)\n\ntype SockExtendedErr struct {\n\tErrno  uint32\n\tOrigin uint8\n\tType   uint8\n\tCode   uint8\n\tPad    uint8\n\tInfo   uint32\n\tData   uint32\n}\n\ntype FanotifyEventMetadata struct {\n\tEvent_len    uint32\n\tVers         uint8\n\tReserved     uint8\n\tMetadata_len uint16\n\tMask         uint64\n\tFd           int32\n\tPid          int32\n}\n\ntype FanotifyResponse struct {\n\tFd       int32\n\tResponse uint32\n}\n\nconst (\n\tCRYPTO_MSG_BASE      = 0x10\n\tCRYPTO_MSG_NEWALG    = 0x10\n\tCRYPTO_MSG_DELALG    = 0x11\n\tCRYPTO_MSG_UPDATEALG = 0x12\n\tCRYPTO_MSG_GETALG    = 0x13\n\tCRYPTO_MSG_DELRNG    = 0x14\n\tCRYPTO_MSG_GETSTAT   = 0x15\n)\n\nconst (\n\tCRYPTOCFGA_UNSPEC           = 0x0\n\tCRYPTOCFGA_PRIORITY_VAL     = 0x1\n\tCRYPTOCFGA_REPORT_LARVAL    = 0x2\n\tCRYPTOCFGA_REPORT_HASH      = 0x3\n\tCRYPTOCFGA_REPORT_BLKCIPHER = 0x4\n\tCRYPTOCFGA_REPORT_AEAD      = 0x5\n\tCRYPTOCFGA_REPORT_COMPRESS  = 0x6\n\tCRYPTOCFGA_REPORT_RNG       = 0x7\n\tCRYPTOCFGA_REPORT_CIPHER    = 0x8\n\tCRYPTOCFGA_REPORT_AKCIPHER  = 0x9\n\tCRYPTOCFGA_REPORT_KPP       = 0xa\n\tCRYPTOCFGA_REPORT_ACOMP     = 0xb\n\tCRYPTOCFGA_STAT_LARVAL      = 0xc\n\tCRYPTOCFGA_STAT_HASH        = 0xd\n\tCRYPTOCFGA_STAT_BLKCIPHER   = 0xe\n\tCRYPTOCFGA_STAT_AEAD        = 0xf\n\tCRYPTOCFGA_STAT_COMPRESS    = 0x10\n\tCRYPTOCFGA_STAT_RNG         = 0x11\n\tCRYPTOCFGA_STAT_CIPHER      = 0x12\n\tCRYPTOCFGA_STAT_AKCIPHER    = 0x13\n\tCRYPTOCFGA_STAT_KPP         = 0x14\n\tCRYPTOCFGA_STAT_ACOMP       = 0x15\n)\n\nconst (\n\tBPF_REG_0                               = 0x0\n\tBPF_REG_1                               = 0x1\n\tBPF_REG_2                               = 0x2\n\tBPF_REG_3                               = 0x3\n\tBPF_REG_4                               = 0x4\n\tBPF_REG_5                               = 0x5\n\tBPF_REG_6                               = 0x6\n\tBPF_REG_7                               = 0x7\n\tBPF_REG_8                               = 0x8\n\tBPF_REG_9                               = 0x9\n\tBPF_REG_10                              = 0xa\n\tBPF_MAP_CREATE                          = 0x0\n\tBPF_MAP_LOOKUP_ELEM                     = 0x1\n\tBPF_MAP_UPDATE_ELEM                     = 0x2\n\tBPF_MAP_DELETE_ELEM                     = 0x3\n\tBPF_MAP_GET_NEXT_KEY                    = 0x4\n\tBPF_PROG_LOAD                           = 0x5\n\tBPF_OBJ_PIN                             = 0x6\n\tBPF_OBJ_GET                             = 0x7\n\tBPF_PROG_ATTACH                         = 0x8\n\tBPF_PROG_DETACH                         = 0x9\n\tBPF_PROG_TEST_RUN                       = 0xa\n\tBPF_PROG_GET_NEXT_ID                    = 0xb\n\tBPF_MAP_GET_NEXT_ID                     = 0xc\n\tBPF_PROG_GET_FD_BY_ID                   = 0xd\n\tBPF_MAP_GET_FD_BY_ID                    = 0xe\n\tBPF_OBJ_GET_INFO_BY_FD                  = 0xf\n\tBPF_PROG_QUERY                          = 0x10\n\tBPF_RAW_TRACEPOINT_OPEN                 = 0x11\n\tBPF_BTF_LOAD                            = 0x12\n\tBPF_BTF_GET_FD_BY_ID                    = 0x13\n\tBPF_TASK_FD_QUERY                       = 0x14\n\tBPF_MAP_LOOKUP_AND_DELETE_ELEM          = 0x15\n\tBPF_MAP_FREEZE                          = 0x16\n\tBPF_BTF_GET_NEXT_ID                     = 0x17\n\tBPF_MAP_LOOKUP_BATCH                    = 0x18\n\tBPF_MAP_LOOKUP_AND_DELETE_BATCH         = 0x19\n\tBPF_MAP_UPDATE_BATCH                    = 0x1a\n\tBPF_MAP_DELETE_BATCH                    = 0x1b\n\tBPF_LINK_CREATE                         = 0x1c\n\tBPF_LINK_UPDATE                         = 0x1d\n\tBPF_LINK_GET_FD_BY_ID                   = 0x1e\n\tBPF_LINK_GET_NEXT_ID                    = 0x1f\n\tBPF_ENABLE_STATS                        = 0x20\n\tBPF_ITER_CREATE                         = 0x21\n\tBPF_MAP_TYPE_UNSPEC                     = 0x0\n\tBPF_MAP_TYPE_HASH                       = 0x1\n\tBPF_MAP_TYPE_ARRAY                      = 0x2\n\tBPF_MAP_TYPE_PROG_ARRAY                 = 0x3\n\tBPF_MAP_TYPE_PERF_EVENT_ARRAY           = 0x4\n\tBPF_MAP_TYPE_PERCPU_HASH                = 0x5\n\tBPF_MAP_TYPE_PERCPU_ARRAY               = 0x6\n\tBPF_MAP_TYPE_STACK_TRACE                = 0x7\n\tBPF_MAP_TYPE_CGROUP_ARRAY               = 0x8\n\tBPF_MAP_TYPE_LRU_HASH                   = 0x9\n\tBPF_MAP_TYPE_LRU_PERCPU_HASH            = 0xa\n\tBPF_MAP_TYPE_LPM_TRIE                   = 0xb\n\tBPF_MAP_TYPE_ARRAY_OF_MAPS              = 0xc\n\tBPF_MAP_TYPE_HASH_OF_MAPS               = 0xd\n\tBPF_MAP_TYPE_DEVMAP                     = 0xe\n\tBPF_MAP_TYPE_SOCKMAP                    = 0xf\n\tBPF_MAP_TYPE_CPUMAP                     = 0x10\n\tBPF_MAP_TYPE_XSKMAP                     = 0x11\n\tBPF_MAP_TYPE_SOCKHASH                   = 0x12\n\tBPF_MAP_TYPE_CGROUP_STORAGE             = 0x13\n\tBPF_MAP_TYPE_REUSEPORT_SOCKARRAY        = 0x14\n\tBPF_MAP_TYPE_PERCPU_CGROUP_STORAGE      = 0x15\n\tBPF_MAP_TYPE_QUEUE                      = 0x16\n\tBPF_MAP_TYPE_STACK                      = 0x17\n\tBPF_MAP_TYPE_SK_STORAGE                 = 0x18\n\tBPF_MAP_TYPE_DEVMAP_HASH                = 0x19\n\tBPF_MAP_TYPE_STRUCT_OPS                 = 0x1a\n\tBPF_MAP_TYPE_RINGBUF                    = 0x1b\n\tBPF_PROG_TYPE_UNSPEC                    = 0x0\n\tBPF_PROG_TYPE_SOCKET_FILTER             = 0x1\n\tBPF_PROG_TYPE_KPROBE                    = 0x2\n\tBPF_PROG_TYPE_SCHED_CLS                 = 0x3\n\tBPF_PROG_TYPE_SCHED_ACT                 = 0x4\n\tBPF_PROG_TYPE_TRACEPOINT                = 0x5\n\tBPF_PROG_TYPE_XDP                       = 0x6\n\tBPF_PROG_TYPE_PERF_EVENT                = 0x7\n\tBPF_PROG_TYPE_CGROUP_SKB                = 0x8\n\tBPF_PROG_TYPE_CGROUP_SOCK               = 0x9\n\tBPF_PROG_TYPE_LWT_IN                    = 0xa\n\tBPF_PROG_TYPE_LWT_OUT                   = 0xb\n\tBPF_PROG_TYPE_LWT_XMIT                  = 0xc\n\tBPF_PROG_TYPE_SOCK_OPS                  = 0xd\n\tBPF_PROG_TYPE_SK_SKB                    = 0xe\n\tBPF_PROG_TYPE_CGROUP_DEVICE             = 0xf\n\tBPF_PROG_TYPE_SK_MSG                    = 0x10\n\tBPF_PROG_TYPE_RAW_TRACEPOINT            = 0x11\n\tBPF_PROG_TYPE_CGROUP_SOCK_ADDR          = 0x12\n\tBPF_PROG_TYPE_LWT_SEG6LOCAL             = 0x13\n\tBPF_PROG_TYPE_LIRC_MODE2                = 0x14\n\tBPF_PROG_TYPE_SK_REUSEPORT              = 0x15\n\tBPF_PROG_TYPE_FLOW_DISSECTOR            = 0x16\n\tBPF_PROG_TYPE_CGROUP_SYSCTL             = 0x17\n\tBPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE   = 0x18\n\tBPF_PROG_TYPE_CGROUP_SOCKOPT            = 0x19\n\tBPF_PROG_TYPE_TRACING                   = 0x1a\n\tBPF_PROG_TYPE_STRUCT_OPS                = 0x1b\n\tBPF_PROG_TYPE_EXT                       = 0x1c\n\tBPF_PROG_TYPE_LSM                       = 0x1d\n\tBPF_CGROUP_INET_INGRESS                 = 0x0\n\tBPF_CGROUP_INET_EGRESS                  = 0x1\n\tBPF_CGROUP_INET_SOCK_CREATE             = 0x2\n\tBPF_CGROUP_SOCK_OPS                     = 0x3\n\tBPF_SK_SKB_STREAM_PARSER                = 0x4\n\tBPF_SK_SKB_STREAM_VERDICT               = 0x5\n\tBPF_CGROUP_DEVICE                       = 0x6\n\tBPF_SK_MSG_VERDICT                      = 0x7\n\tBPF_CGROUP_INET4_BIND                   = 0x8\n\tBPF_CGROUP_INET6_BIND                   = 0x9\n\tBPF_CGROUP_INET4_CONNECT                = 0xa\n\tBPF_CGROUP_INET6_CONNECT                = 0xb\n\tBPF_CGROUP_INET4_POST_BIND              = 0xc\n\tBPF_CGROUP_INET6_POST_BIND              = 0xd\n\tBPF_CGROUP_UDP4_SENDMSG                 = 0xe\n\tBPF_CGROUP_UDP6_SENDMSG                 = 0xf\n\tBPF_LIRC_MODE2                          = 0x10\n\tBPF_FLOW_DISSECTOR                      = 0x11\n\tBPF_CGROUP_SYSCTL                       = 0x12\n\tBPF_CGROUP_UDP4_RECVMSG                 = 0x13\n\tBPF_CGROUP_UDP6_RECVMSG                 = 0x14\n\tBPF_CGROUP_GETSOCKOPT                   = 0x15\n\tBPF_CGROUP_SETSOCKOPT                   = 0x16\n\tBPF_TRACE_RAW_TP                        = 0x17\n\tBPF_TRACE_FENTRY                        = 0x18\n\tBPF_TRACE_FEXIT                         = 0x19\n\tBPF_MODIFY_RETURN                       = 0x1a\n\tBPF_LSM_MAC                             = 0x1b\n\tBPF_TRACE_ITER                          = 0x1c\n\tBPF_CGROUP_INET4_GETPEERNAME            = 0x1d\n\tBPF_CGROUP_INET6_GETPEERNAME            = 0x1e\n\tBPF_CGROUP_INET4_GETSOCKNAME            = 0x1f\n\tBPF_CGROUP_INET6_GETSOCKNAME            = 0x20\n\tBPF_XDP_DEVMAP                          = 0x21\n\tBPF_LINK_TYPE_UNSPEC                    = 0x0\n\tBPF_LINK_TYPE_RAW_TRACEPOINT            = 0x1\n\tBPF_LINK_TYPE_TRACING                   = 0x2\n\tBPF_LINK_TYPE_CGROUP                    = 0x3\n\tBPF_LINK_TYPE_ITER                      = 0x4\n\tBPF_LINK_TYPE_NETNS                     = 0x5\n\tBPF_ANY                                 = 0x0\n\tBPF_NOEXIST                             = 0x1\n\tBPF_EXIST                               = 0x2\n\tBPF_F_LOCK                              = 0x4\n\tBPF_F_NO_PREALLOC                       = 0x1\n\tBPF_F_NO_COMMON_LRU                     = 0x2\n\tBPF_F_NUMA_NODE                         = 0x4\n\tBPF_F_RDONLY                            = 0x8\n\tBPF_F_WRONLY                            = 0x10\n\tBPF_F_STACK_BUILD_ID                    = 0x20\n\tBPF_F_ZERO_SEED                         = 0x40\n\tBPF_F_RDONLY_PROG                       = 0x80\n\tBPF_F_WRONLY_PROG                       = 0x100\n\tBPF_F_CLONE                             = 0x200\n\tBPF_F_MMAPABLE                          = 0x400\n\tBPF_STATS_RUN_TIME                      = 0x0\n\tBPF_STACK_BUILD_ID_EMPTY                = 0x0\n\tBPF_STACK_BUILD_ID_VALID                = 0x1\n\tBPF_STACK_BUILD_ID_IP                   = 0x2\n\tBPF_F_RECOMPUTE_CSUM                    = 0x1\n\tBPF_F_INVALIDATE_HASH                   = 0x2\n\tBPF_F_HDR_FIELD_MASK                    = 0xf\n\tBPF_F_PSEUDO_HDR                        = 0x10\n\tBPF_F_MARK_MANGLED_0                    = 0x20\n\tBPF_F_MARK_ENFORCE                      = 0x40\n\tBPF_F_INGRESS                           = 0x1\n\tBPF_F_TUNINFO_IPV6                      = 0x1\n\tBPF_F_SKIP_FIELD_MASK                   = 0xff\n\tBPF_F_USER_STACK                        = 0x100\n\tBPF_F_FAST_STACK_CMP                    = 0x200\n\tBPF_F_REUSE_STACKID                     = 0x400\n\tBPF_F_USER_BUILD_ID                     = 0x800\n\tBPF_F_ZERO_CSUM_TX                      = 0x2\n\tBPF_F_DONT_FRAGMENT                     = 0x4\n\tBPF_F_SEQ_NUMBER                        = 0x8\n\tBPF_F_INDEX_MASK                        = 0xffffffff\n\tBPF_F_CURRENT_CPU                       = 0xffffffff\n\tBPF_F_CTXLEN_MASK                       = 0xfffff00000000\n\tBPF_F_CURRENT_NETNS                     = -0x1\n\tBPF_CSUM_LEVEL_QUERY                    = 0x0\n\tBPF_CSUM_LEVEL_INC                      = 0x1\n\tBPF_CSUM_LEVEL_DEC                      = 0x2\n\tBPF_CSUM_LEVEL_RESET                    = 0x3\n\tBPF_F_ADJ_ROOM_FIXED_GSO                = 0x1\n\tBPF_F_ADJ_ROOM_ENCAP_L3_IPV4            = 0x2\n\tBPF_F_ADJ_ROOM_ENCAP_L3_IPV6            = 0x4\n\tBPF_F_ADJ_ROOM_ENCAP_L4_GRE             = 0x8\n\tBPF_F_ADJ_ROOM_ENCAP_L4_UDP             = 0x10\n\tBPF_F_ADJ_ROOM_NO_CSUM_RESET            = 0x20\n\tBPF_ADJ_ROOM_ENCAP_L2_MASK              = 0xff\n\tBPF_ADJ_ROOM_ENCAP_L2_SHIFT             = 0x38\n\tBPF_F_SYSCTL_BASE_NAME                  = 0x1\n\tBPF_SK_STORAGE_GET_F_CREATE             = 0x1\n\tBPF_F_GET_BRANCH_RECORDS_SIZE           = 0x1\n\tBPF_RB_NO_WAKEUP                        = 0x1\n\tBPF_RB_FORCE_WAKEUP                     = 0x2\n\tBPF_RB_AVAIL_DATA                       = 0x0\n\tBPF_RB_RING_SIZE                        = 0x1\n\tBPF_RB_CONS_POS                         = 0x2\n\tBPF_RB_PROD_POS                         = 0x3\n\tBPF_RINGBUF_BUSY_BIT                    = 0x80000000\n\tBPF_RINGBUF_DISCARD_BIT                 = 0x40000000\n\tBPF_RINGBUF_HDR_SZ                      = 0x8\n\tBPF_ADJ_ROOM_NET                        = 0x0\n\tBPF_ADJ_ROOM_MAC                        = 0x1\n\tBPF_HDR_START_MAC                       = 0x0\n\tBPF_HDR_START_NET                       = 0x1\n\tBPF_LWT_ENCAP_SEG6                      = 0x0\n\tBPF_LWT_ENCAP_SEG6_INLINE               = 0x1\n\tBPF_LWT_ENCAP_IP                        = 0x2\n\tBPF_OK                                  = 0x0\n\tBPF_DROP                                = 0x2\n\tBPF_REDIRECT                            = 0x7\n\tBPF_LWT_REROUTE                         = 0x80\n\tBPF_SOCK_OPS_RTO_CB_FLAG                = 0x1\n\tBPF_SOCK_OPS_RETRANS_CB_FLAG            = 0x2\n\tBPF_SOCK_OPS_STATE_CB_FLAG              = 0x4\n\tBPF_SOCK_OPS_RTT_CB_FLAG                = 0x8\n\tBPF_SOCK_OPS_ALL_CB_FLAGS               = 0xf\n\tBPF_SOCK_OPS_VOID                       = 0x0\n\tBPF_SOCK_OPS_TIMEOUT_INIT               = 0x1\n\tBPF_SOCK_OPS_RWND_INIT                  = 0x2\n\tBPF_SOCK_OPS_TCP_CONNECT_CB             = 0x3\n\tBPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB      = 0x4\n\tBPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB     = 0x5\n\tBPF_SOCK_OPS_NEEDS_ECN                  = 0x6\n\tBPF_SOCK_OPS_BASE_RTT                   = 0x7\n\tBPF_SOCK_OPS_RTO_CB                     = 0x8\n\tBPF_SOCK_OPS_RETRANS_CB                 = 0x9\n\tBPF_SOCK_OPS_STATE_CB                   = 0xa\n\tBPF_SOCK_OPS_TCP_LISTEN_CB              = 0xb\n\tBPF_SOCK_OPS_RTT_CB                     = 0xc\n\tBPF_TCP_ESTABLISHED                     = 0x1\n\tBPF_TCP_SYN_SENT                        = 0x2\n\tBPF_TCP_SYN_RECV                        = 0x3\n\tBPF_TCP_FIN_WAIT1                       = 0x4\n\tBPF_TCP_FIN_WAIT2                       = 0x5\n\tBPF_TCP_TIME_WAIT                       = 0x6\n\tBPF_TCP_CLOSE                           = 0x7\n\tBPF_TCP_CLOSE_WAIT                      = 0x8\n\tBPF_TCP_LAST_ACK                        = 0x9\n\tBPF_TCP_LISTEN                          = 0xa\n\tBPF_TCP_CLOSING                         = 0xb\n\tBPF_TCP_NEW_SYN_RECV                    = 0xc\n\tBPF_TCP_MAX_STATES                      = 0xd\n\tTCP_BPF_IW                              = 0x3e9\n\tTCP_BPF_SNDCWND_CLAMP                   = 0x3ea\n\tBPF_DEVCG_ACC_MKNOD                     = 0x1\n\tBPF_DEVCG_ACC_READ                      = 0x2\n\tBPF_DEVCG_ACC_WRITE                     = 0x4\n\tBPF_DEVCG_DEV_BLOCK                     = 0x1\n\tBPF_DEVCG_DEV_CHAR                      = 0x2\n\tBPF_FIB_LOOKUP_DIRECT                   = 0x1\n\tBPF_FIB_LOOKUP_OUTPUT                   = 0x2\n\tBPF_FIB_LKUP_RET_SUCCESS                = 0x0\n\tBPF_FIB_LKUP_RET_BLACKHOLE              = 0x1\n\tBPF_FIB_LKUP_RET_UNREACHABLE            = 0x2\n\tBPF_FIB_LKUP_RET_PROHIBIT               = 0x3\n\tBPF_FIB_LKUP_RET_NOT_FWDED              = 0x4\n\tBPF_FIB_LKUP_RET_FWD_DISABLED           = 0x5\n\tBPF_FIB_LKUP_RET_UNSUPP_LWT             = 0x6\n\tBPF_FIB_LKUP_RET_NO_NEIGH               = 0x7\n\tBPF_FIB_LKUP_RET_FRAG_NEEDED            = 0x8\n\tBPF_FD_TYPE_RAW_TRACEPOINT              = 0x0\n\tBPF_FD_TYPE_TRACEPOINT                  = 0x1\n\tBPF_FD_TYPE_KPROBE                      = 0x2\n\tBPF_FD_TYPE_KRETPROBE                   = 0x3\n\tBPF_FD_TYPE_UPROBE                      = 0x4\n\tBPF_FD_TYPE_URETPROBE                   = 0x5\n\tBPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG     = 0x1\n\tBPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL = 0x2\n\tBPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP      = 0x4\n)\n\nconst (\n\tRTNLGRP_NONE          = 0x0\n\tRTNLGRP_LINK          = 0x1\n\tRTNLGRP_NOTIFY        = 0x2\n\tRTNLGRP_NEIGH         = 0x3\n\tRTNLGRP_TC            = 0x4\n\tRTNLGRP_IPV4_IFADDR   = 0x5\n\tRTNLGRP_IPV4_MROUTE   = 0x6\n\tRTNLGRP_IPV4_ROUTE    = 0x7\n\tRTNLGRP_IPV4_RULE     = 0x8\n\tRTNLGRP_IPV6_IFADDR   = 0x9\n\tRTNLGRP_IPV6_MROUTE   = 0xa\n\tRTNLGRP_IPV6_ROUTE    = 0xb\n\tRTNLGRP_IPV6_IFINFO   = 0xc\n\tRTNLGRP_DECnet_IFADDR = 0xd\n\tRTNLGRP_NOP2          = 0xe\n\tRTNLGRP_DECnet_ROUTE  = 0xf\n\tRTNLGRP_DECnet_RULE   = 0x10\n\tRTNLGRP_NOP4          = 0x11\n\tRTNLGRP_IPV6_PREFIX   = 0x12\n\tRTNLGRP_IPV6_RULE     = 0x13\n\tRTNLGRP_ND_USEROPT    = 0x14\n\tRTNLGRP_PHONET_IFADDR = 0x15\n\tRTNLGRP_PHONET_ROUTE  = 0x16\n\tRTNLGRP_DCB           = 0x17\n\tRTNLGRP_IPV4_NETCONF  = 0x18\n\tRTNLGRP_IPV6_NETCONF  = 0x19\n\tRTNLGRP_MDB           = 0x1a\n\tRTNLGRP_MPLS_ROUTE    = 0x1b\n\tRTNLGRP_NSID          = 0x1c\n\tRTNLGRP_MPLS_NETCONF  = 0x1d\n\tRTNLGRP_IPV4_MROUTE_R = 0x1e\n\tRTNLGRP_IPV6_MROUTE_R = 0x1f\n\tRTNLGRP_NEXTHOP       = 0x20\n)\n\ntype CapUserHeader struct {\n\tVersion uint32\n\tPid     int32\n}\n\ntype CapUserData struct {\n\tEffective   uint32\n\tPermitted   uint32\n\tInheritable uint32\n}\n\nconst (\n\tLINUX_CAPABILITY_VERSION_1 = 0x19980330\n\tLINUX_CAPABILITY_VERSION_2 = 0x20071026\n\tLINUX_CAPABILITY_VERSION_3 = 0x20080522\n)\n\nconst (\n\tLO_FLAGS_READ_ONLY = 0x1\n\tLO_FLAGS_AUTOCLEAR = 0x4\n\tLO_FLAGS_PARTSCAN  = 0x8\n\tLO_FLAGS_DIRECT_IO = 0x10\n)\n\ntype LoopInfo64 struct {\n\tDevice           uint64\n\tInode            uint64\n\tRdevice          uint64\n\tOffset           uint64\n\tSizelimit        uint64\n\tNumber           uint32\n\tEncrypt_type     uint32\n\tEncrypt_key_size uint32\n\tFlags            uint32\n\tFile_name        [64]uint8\n\tCrypt_name       [64]uint8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n}\n\ntype TIPCSocketAddr struct {\n\tRef  uint32\n\tNode uint32\n}\n\ntype TIPCServiceRange struct {\n\tType  uint32\n\tLower uint32\n\tUpper uint32\n}\n\ntype TIPCServiceName struct {\n\tType     uint32\n\tInstance uint32\n\tDomain   uint32\n}\n\ntype TIPCEvent struct {\n\tEvent uint32\n\tLower uint32\n\tUpper uint32\n\tPort  TIPCSocketAddr\n\tS     TIPCSubscr\n}\n\ntype TIPCGroupReq struct {\n\tType     uint32\n\tInstance uint32\n\tScope    uint32\n\tFlags    uint32\n}\n\nconst (\n\tTIPC_CLUSTER_SCOPE = 0x2\n\tTIPC_NODE_SCOPE    = 0x3\n)\n\nconst (\n\tSYSLOG_ACTION_CLOSE         = 0\n\tSYSLOG_ACTION_OPEN          = 1\n\tSYSLOG_ACTION_READ          = 2\n\tSYSLOG_ACTION_READ_ALL      = 3\n\tSYSLOG_ACTION_READ_CLEAR    = 4\n\tSYSLOG_ACTION_CLEAR         = 5\n\tSYSLOG_ACTION_CONSOLE_OFF   = 6\n\tSYSLOG_ACTION_CONSOLE_ON    = 7\n\tSYSLOG_ACTION_CONSOLE_LEVEL = 8\n\tSYSLOG_ACTION_SIZE_UNREAD   = 9\n\tSYSLOG_ACTION_SIZE_BUFFER   = 10\n)\n\nconst (\n\tDEVLINK_CMD_UNSPEC                        = 0x0\n\tDEVLINK_CMD_GET                           = 0x1\n\tDEVLINK_CMD_SET                           = 0x2\n\tDEVLINK_CMD_NEW                           = 0x3\n\tDEVLINK_CMD_DEL                           = 0x4\n\tDEVLINK_CMD_PORT_GET                      = 0x5\n\tDEVLINK_CMD_PORT_SET                      = 0x6\n\tDEVLINK_CMD_PORT_NEW                      = 0x7\n\tDEVLINK_CMD_PORT_DEL                      = 0x8\n\tDEVLINK_CMD_PORT_SPLIT                    = 0x9\n\tDEVLINK_CMD_PORT_UNSPLIT                  = 0xa\n\tDEVLINK_CMD_SB_GET                        = 0xb\n\tDEVLINK_CMD_SB_SET                        = 0xc\n\tDEVLINK_CMD_SB_NEW                        = 0xd\n\tDEVLINK_CMD_SB_DEL                        = 0xe\n\tDEVLINK_CMD_SB_POOL_GET                   = 0xf\n\tDEVLINK_CMD_SB_POOL_SET                   = 0x10\n\tDEVLINK_CMD_SB_POOL_NEW                   = 0x11\n\tDEVLINK_CMD_SB_POOL_DEL                   = 0x12\n\tDEVLINK_CMD_SB_PORT_POOL_GET              = 0x13\n\tDEVLINK_CMD_SB_PORT_POOL_SET              = 0x14\n\tDEVLINK_CMD_SB_PORT_POOL_NEW              = 0x15\n\tDEVLINK_CMD_SB_PORT_POOL_DEL              = 0x16\n\tDEVLINK_CMD_SB_TC_POOL_BIND_GET           = 0x17\n\tDEVLINK_CMD_SB_TC_POOL_BIND_SET           = 0x18\n\tDEVLINK_CMD_SB_TC_POOL_BIND_NEW           = 0x19\n\tDEVLINK_CMD_SB_TC_POOL_BIND_DEL           = 0x1a\n\tDEVLINK_CMD_SB_OCC_SNAPSHOT               = 0x1b\n\tDEVLINK_CMD_SB_OCC_MAX_CLEAR              = 0x1c\n\tDEVLINK_CMD_ESWITCH_GET                   = 0x1d\n\tDEVLINK_CMD_ESWITCH_SET                   = 0x1e\n\tDEVLINK_CMD_DPIPE_TABLE_GET               = 0x1f\n\tDEVLINK_CMD_DPIPE_ENTRIES_GET             = 0x20\n\tDEVLINK_CMD_DPIPE_HEADERS_GET             = 0x21\n\tDEVLINK_CMD_DPIPE_TABLE_COUNTERS_SET      = 0x22\n\tDEVLINK_CMD_MAX                           = 0x48\n\tDEVLINK_PORT_TYPE_NOTSET                  = 0x0\n\tDEVLINK_PORT_TYPE_AUTO                    = 0x1\n\tDEVLINK_PORT_TYPE_ETH                     = 0x2\n\tDEVLINK_PORT_TYPE_IB                      = 0x3\n\tDEVLINK_SB_POOL_TYPE_INGRESS              = 0x0\n\tDEVLINK_SB_POOL_TYPE_EGRESS               = 0x1\n\tDEVLINK_SB_THRESHOLD_TYPE_STATIC          = 0x0\n\tDEVLINK_SB_THRESHOLD_TYPE_DYNAMIC         = 0x1\n\tDEVLINK_ESWITCH_MODE_LEGACY               = 0x0\n\tDEVLINK_ESWITCH_MODE_SWITCHDEV            = 0x1\n\tDEVLINK_ESWITCH_INLINE_MODE_NONE          = 0x0\n\tDEVLINK_ESWITCH_INLINE_MODE_LINK          = 0x1\n\tDEVLINK_ESWITCH_INLINE_MODE_NETWORK       = 0x2\n\tDEVLINK_ESWITCH_INLINE_MODE_TRANSPORT     = 0x3\n\tDEVLINK_ESWITCH_ENCAP_MODE_NONE           = 0x0\n\tDEVLINK_ESWITCH_ENCAP_MODE_BASIC          = 0x1\n\tDEVLINK_ATTR_UNSPEC                       = 0x0\n\tDEVLINK_ATTR_BUS_NAME                     = 0x1\n\tDEVLINK_ATTR_DEV_NAME                     = 0x2\n\tDEVLINK_ATTR_PORT_INDEX                   = 0x3\n\tDEVLINK_ATTR_PORT_TYPE                    = 0x4\n\tDEVLINK_ATTR_PORT_DESIRED_TYPE            = 0x5\n\tDEVLINK_ATTR_PORT_NETDEV_IFINDEX          = 0x6\n\tDEVLINK_ATTR_PORT_NETDEV_NAME             = 0x7\n\tDEVLINK_ATTR_PORT_IBDEV_NAME              = 0x8\n\tDEVLINK_ATTR_PORT_SPLIT_COUNT             = 0x9\n\tDEVLINK_ATTR_PORT_SPLIT_GROUP             = 0xa\n\tDEVLINK_ATTR_SB_INDEX                     = 0xb\n\tDEVLINK_ATTR_SB_SIZE                      = 0xc\n\tDEVLINK_ATTR_SB_INGRESS_POOL_COUNT        = 0xd\n\tDEVLINK_ATTR_SB_EGRESS_POOL_COUNT         = 0xe\n\tDEVLINK_ATTR_SB_INGRESS_TC_COUNT          = 0xf\n\tDEVLINK_ATTR_SB_EGRESS_TC_COUNT           = 0x10\n\tDEVLINK_ATTR_SB_POOL_INDEX                = 0x11\n\tDEVLINK_ATTR_SB_POOL_TYPE                 = 0x12\n\tDEVLINK_ATTR_SB_POOL_SIZE                 = 0x13\n\tDEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE       = 0x14\n\tDEVLINK_ATTR_SB_THRESHOLD                 = 0x15\n\tDEVLINK_ATTR_SB_TC_INDEX                  = 0x16\n\tDEVLINK_ATTR_SB_OCC_CUR                   = 0x17\n\tDEVLINK_ATTR_SB_OCC_MAX                   = 0x18\n\tDEVLINK_ATTR_ESWITCH_MODE                 = 0x19\n\tDEVLINK_ATTR_ESWITCH_INLINE_MODE          = 0x1a\n\tDEVLINK_ATTR_DPIPE_TABLES                 = 0x1b\n\tDEVLINK_ATTR_DPIPE_TABLE                  = 0x1c\n\tDEVLINK_ATTR_DPIPE_TABLE_NAME             = 0x1d\n\tDEVLINK_ATTR_DPIPE_TABLE_SIZE             = 0x1e\n\tDEVLINK_ATTR_DPIPE_TABLE_MATCHES          = 0x1f\n\tDEVLINK_ATTR_DPIPE_TABLE_ACTIONS          = 0x20\n\tDEVLINK_ATTR_DPIPE_TABLE_COUNTERS_ENABLED = 0x21\n\tDEVLINK_ATTR_DPIPE_ENTRIES                = 0x22\n\tDEVLINK_ATTR_DPIPE_ENTRY                  = 0x23\n\tDEVLINK_ATTR_DPIPE_ENTRY_INDEX            = 0x24\n\tDEVLINK_ATTR_DPIPE_ENTRY_MATCH_VALUES     = 0x25\n\tDEVLINK_ATTR_DPIPE_ENTRY_ACTION_VALUES    = 0x26\n\tDEVLINK_ATTR_DPIPE_ENTRY_COUNTER          = 0x27\n\tDEVLINK_ATTR_DPIPE_MATCH                  = 0x28\n\tDEVLINK_ATTR_DPIPE_MATCH_VALUE            = 0x29\n\tDEVLINK_ATTR_DPIPE_MATCH_TYPE             = 0x2a\n\tDEVLINK_ATTR_DPIPE_ACTION                 = 0x2b\n\tDEVLINK_ATTR_DPIPE_ACTION_VALUE           = 0x2c\n\tDEVLINK_ATTR_DPIPE_ACTION_TYPE            = 0x2d\n\tDEVLINK_ATTR_DPIPE_VALUE                  = 0x2e\n\tDEVLINK_ATTR_DPIPE_VALUE_MASK             = 0x2f\n\tDEVLINK_ATTR_DPIPE_VALUE_MAPPING          = 0x30\n\tDEVLINK_ATTR_DPIPE_HEADERS                = 0x31\n\tDEVLINK_ATTR_DPIPE_HEADER                 = 0x32\n\tDEVLINK_ATTR_DPIPE_HEADER_NAME            = 0x33\n\tDEVLINK_ATTR_DPIPE_HEADER_ID              = 0x34\n\tDEVLINK_ATTR_DPIPE_HEADER_FIELDS          = 0x35\n\tDEVLINK_ATTR_DPIPE_HEADER_GLOBAL          = 0x36\n\tDEVLINK_ATTR_DPIPE_HEADER_INDEX           = 0x37\n\tDEVLINK_ATTR_DPIPE_FIELD                  = 0x38\n\tDEVLINK_ATTR_DPIPE_FIELD_NAME             = 0x39\n\tDEVLINK_ATTR_DPIPE_FIELD_ID               = 0x3a\n\tDEVLINK_ATTR_DPIPE_FIELD_BITWIDTH         = 0x3b\n\tDEVLINK_ATTR_DPIPE_FIELD_MAPPING_TYPE     = 0x3c\n\tDEVLINK_ATTR_PAD                          = 0x3d\n\tDEVLINK_ATTR_ESWITCH_ENCAP_MODE           = 0x3e\n\tDEVLINK_ATTR_MAX                          = 0x90\n\tDEVLINK_DPIPE_FIELD_MAPPING_TYPE_NONE     = 0x0\n\tDEVLINK_DPIPE_FIELD_MAPPING_TYPE_IFINDEX  = 0x1\n\tDEVLINK_DPIPE_MATCH_TYPE_FIELD_EXACT      = 0x0\n\tDEVLINK_DPIPE_ACTION_TYPE_FIELD_MODIFY    = 0x0\n\tDEVLINK_DPIPE_FIELD_ETHERNET_DST_MAC      = 0x0\n\tDEVLINK_DPIPE_FIELD_IPV4_DST_IP           = 0x0\n\tDEVLINK_DPIPE_FIELD_IPV6_DST_IP           = 0x0\n\tDEVLINK_DPIPE_HEADER_ETHERNET             = 0x0\n\tDEVLINK_DPIPE_HEADER_IPV4                 = 0x1\n\tDEVLINK_DPIPE_HEADER_IPV6                 = 0x2\n)\n\ntype FsverityDigest struct {\n\tAlgorithm uint16\n\tSize      uint16\n}\n\ntype FsverityEnableArg struct {\n\tVersion        uint32\n\tHash_algorithm uint32\n\tBlock_size     uint32\n\tSalt_size      uint32\n\tSalt_ptr       uint64\n\tSig_size       uint32\n\t_              uint32\n\tSig_ptr        uint64\n\t_              [11]uint64\n}\n\ntype Nhmsg struct {\n\tFamily   uint8\n\tScope    uint8\n\tProtocol uint8\n\tResvd    uint8\n\tFlags    uint32\n}\n\ntype NexthopGrp struct {\n\tId     uint32\n\tWeight uint8\n\tResvd1 uint8\n\tResvd2 uint16\n}\n\nconst (\n\tNHA_UNSPEC     = 0x0\n\tNHA_ID         = 0x1\n\tNHA_GROUP      = 0x2\n\tNHA_GROUP_TYPE = 0x3\n\tNHA_BLACKHOLE  = 0x4\n\tNHA_OIF        = 0x5\n\tNHA_GATEWAY    = 0x6\n\tNHA_ENCAP_TYPE = 0x7\n\tNHA_ENCAP      = 0x8\n\tNHA_GROUPS     = 0x9\n\tNHA_MASTER     = 0xa\n)\n\nconst (\n\tCAN_RAW_FILTER        = 0x1\n\tCAN_RAW_ERR_FILTER    = 0x2\n\tCAN_RAW_LOOPBACK      = 0x3\n\tCAN_RAW_RECV_OWN_MSGS = 0x4\n\tCAN_RAW_FD_FRAMES     = 0x5\n\tCAN_RAW_JOIN_FILTERS  = 0x6\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_386.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include -m32 linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x4\n\tSizeofLong = 0x4\n)\n\ntype (\n\t_C_long int32\n)\n\ntype Timespec struct {\n\tSec  int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int32\n\tFreq      int32\n\tMaxerror  int32\n\tEsterror  int32\n\tStatus    int32\n\tConstant  int32\n\tPrecision int32\n\tTolerance int32\n\tTime      Timeval\n\tTick      int32\n\tPpsfreq   int32\n\tJitter    int32\n\tShift     int32\n\tStabil    int32\n\tJitcnt    int32\n\tCalcnt    int32\n\tErrcnt    int32\n\tStbcnt    int32\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int32\n\ntype Tms struct {\n\tUtime  int32\n\tStime  int32\n\tCutime int32\n\tCstime int32\n}\n\ntype Utimbuf struct {\n\tActime  int32\n\tModtime int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Stat_t struct {\n\tDev     uint64\n\t_       uint16\n\t_       uint32\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint64\n\t_       uint16\n\tSize    int64\n\tBlksize int32\n\tBlocks  int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tIno     uint64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]int8\n\t_      [1]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]int8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x8\n\tSizeofMsghdr  = 0x1c\n\tSizeofCmsghdr = 0xc\n)\n\nconst (\n\tSizeofSockFprog = 0x8\n)\n\ntype PtraceRegs struct {\n\tEbx      int32\n\tEcx      int32\n\tEdx      int32\n\tEsi      int32\n\tEdi      int32\n\tEbp      int32\n\tEax      int32\n\tXds      int32\n\tXes      int32\n\tXfs      int32\n\tXgs      int32\n\tOrig_eax int32\n\tEip      int32\n\tXcs      int32\n\tEflags   int32\n\tEsp      int32\n\tXss      int32\n}\n\ntype FdSet struct {\n\tBits [32]int32\n}\n\ntype Sysinfo_t struct {\n\tUptime    int32\n\tLoads     [3]uint32\n\tTotalram  uint32\n\tFreeram   uint32\n\tSharedram uint32\n\tBufferram uint32\n\tTotalswap uint32\n\tFreeswap  uint32\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint32\n\tFreehigh  uint32\n\tUnit      uint32\n\t_         [8]int8\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint32\n\tFname  [6]int8\n\tFpack  [6]int8\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [32]uint32\n}\n\nconst _C__NSIG = 0x41\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [19]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\t_                         [4]byte\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]int8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\t_                         [4]byte\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint32\n\nconst (\n\t_NCPUBITS = 0x20\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x1\n\tCBitFieldMaskBit1  = 0x2\n\tCBitFieldMaskBit2  = 0x4\n\tCBitFieldMaskBit3  = 0x8\n\tCBitFieldMaskBit4  = 0x10\n\tCBitFieldMaskBit5  = 0x20\n\tCBitFieldMaskBit6  = 0x40\n\tCBitFieldMaskBit7  = 0x80\n\tCBitFieldMaskBit8  = 0x100\n\tCBitFieldMaskBit9  = 0x200\n\tCBitFieldMaskBit10 = 0x400\n\tCBitFieldMaskBit11 = 0x800\n\tCBitFieldMaskBit12 = 0x1000\n\tCBitFieldMaskBit13 = 0x2000\n\tCBitFieldMaskBit14 = 0x4000\n\tCBitFieldMaskBit15 = 0x8000\n\tCBitFieldMaskBit16 = 0x10000\n\tCBitFieldMaskBit17 = 0x20000\n\tCBitFieldMaskBit18 = 0x40000\n\tCBitFieldMaskBit19 = 0x80000\n\tCBitFieldMaskBit20 = 0x100000\n\tCBitFieldMaskBit21 = 0x200000\n\tCBitFieldMaskBit22 = 0x400000\n\tCBitFieldMaskBit23 = 0x800000\n\tCBitFieldMaskBit24 = 0x1000000\n\tCBitFieldMaskBit25 = 0x2000000\n\tCBitFieldMaskBit26 = 0x4000000\n\tCBitFieldMaskBit27 = 0x8000000\n\tCBitFieldMaskBit28 = 0x10000000\n\tCBitFieldMaskBit29 = 0x20000000\n\tCBitFieldMaskBit30 = 0x40000000\n\tCBitFieldMaskBit31 = 0x80000000\n\tCBitFieldMaskBit32 = 0x100000000\n\tCBitFieldMaskBit33 = 0x200000000\n\tCBitFieldMaskBit34 = 0x400000000\n\tCBitFieldMaskBit35 = 0x800000000\n\tCBitFieldMaskBit36 = 0x1000000000\n\tCBitFieldMaskBit37 = 0x2000000000\n\tCBitFieldMaskBit38 = 0x4000000000\n\tCBitFieldMaskBit39 = 0x8000000000\n\tCBitFieldMaskBit40 = 0x10000000000\n\tCBitFieldMaskBit41 = 0x20000000000\n\tCBitFieldMaskBit42 = 0x40000000000\n\tCBitFieldMaskBit43 = 0x80000000000\n\tCBitFieldMaskBit44 = 0x100000000000\n\tCBitFieldMaskBit45 = 0x200000000000\n\tCBitFieldMaskBit46 = 0x400000000000\n\tCBitFieldMaskBit47 = 0x800000000000\n\tCBitFieldMaskBit48 = 0x1000000000000\n\tCBitFieldMaskBit49 = 0x2000000000000\n\tCBitFieldMaskBit50 = 0x4000000000000\n\tCBitFieldMaskBit51 = 0x8000000000000\n\tCBitFieldMaskBit52 = 0x10000000000000\n\tCBitFieldMaskBit53 = 0x20000000000000\n\tCBitFieldMaskBit54 = 0x40000000000000\n\tCBitFieldMaskBit55 = 0x80000000000000\n\tCBitFieldMaskBit56 = 0x100000000000000\n\tCBitFieldMaskBit57 = 0x200000000000000\n\tCBitFieldMaskBit58 = 0x400000000000000\n\tCBitFieldMaskBit59 = 0x800000000000000\n\tCBitFieldMaskBit60 = 0x1000000000000000\n\tCBitFieldMaskBit61 = 0x2000000000000000\n\tCBitFieldMaskBit62 = 0x4000000000000000\n\tCBitFieldMaskBit63 = 0x8000000000000000\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [122]int8\n\t_      uint32\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint32\n}\n\ntype Statfs_t struct {\n\tType    int32\n\tBsize   int32\n\tBlocks  uint64\n\tBfree   uint64\n\tBavail  uint64\n\tFiles   uint64\n\tFfree   uint64\n\tFsid    Fsid\n\tNamelen int32\n\tFrsize  int32\n\tFlags   int32\n\tSpare   [4]int32\n}\n\ntype TpacketHdr struct {\n\tStatus  uint32\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n}\n\nconst (\n\tSizeofTpacketHdr = 0x18\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int32\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n}\n\nconst (\n\tBLKPG = 0x1269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]int8\n\tDriver_name [64]int8\n\tModule_name [64]int8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]int8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]int8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]int8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]int8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]int8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]int8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]int8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]int8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]int8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]int8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint16\n\tInode            uint32\n\tRdevice          uint16\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]int8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint32\n\tReserved         [4]int8\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]int8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]int8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]int8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include -m64 linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x8\n\tSizeofLong = 0x8\n)\n\ntype (\n\t_C_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int64\n\tFreq      int64\n\tMaxerror  int64\n\tEsterror  int64\n\tStatus    int32\n\tConstant  int64\n\tPrecision int64\n\tTolerance int64\n\tTime      Timeval\n\tTick      int64\n\tPpsfreq   int64\n\tJitter    int64\n\tShift     int32\n\tStabil    int64\n\tJitcnt    int64\n\tCalcnt    int64\n\tErrcnt    int64\n\tStbcnt    int64\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tNlink   uint64\n\tMode    uint32\n\tUid     uint32\n\tGid     uint32\n\t_       int32\n\tRdev    uint64\n\tSize    int64\n\tBlksize int64\n\tBlocks  int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\t_       [3]int64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]int8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]int8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint64\n\tControl    *byte\n\tControllen uint64\n\tFlags      int32\n\t_          [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint64\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x10\n\tSizeofMsghdr  = 0x38\n\tSizeofCmsghdr = 0x10\n)\n\nconst (\n\tSizeofSockFprog = 0x10\n)\n\ntype PtraceRegs struct {\n\tR15      uint64\n\tR14      uint64\n\tR13      uint64\n\tR12      uint64\n\tRbp      uint64\n\tRbx      uint64\n\tR11      uint64\n\tR10      uint64\n\tR9       uint64\n\tR8       uint64\n\tRax      uint64\n\tRcx      uint64\n\tRdx      uint64\n\tRsi      uint64\n\tRdi      uint64\n\tOrig_rax uint64\n\tRip      uint64\n\tCs       uint64\n\tEflags   uint64\n\tRsp      uint64\n\tSs       uint64\n\tFs_base  uint64\n\tGs_base  uint64\n\tDs       uint64\n\tEs       uint64\n\tFs       uint64\n\tGs       uint64\n}\n\ntype FdSet struct {\n\tBits [16]int64\n}\n\ntype Sysinfo_t struct {\n\tUptime    int64\n\tLoads     [3]uint64\n\tTotalram  uint64\n\tFreeram   uint64\n\tSharedram uint64\n\tBufferram uint64\n\tTotalswap uint64\n\tFreeswap  uint64\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint64\n\tFreehigh  uint64\n\tUnit      uint32\n\t_         [0]int8\n\t_         [4]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint64\n\tFname  [6]int8\n\tFpack  [6]int8\n\t_      [4]byte\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [16]uint64\n}\n\nconst _C__NSIG = 0x41\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [19]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]int8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint64\n\nconst (\n\t_NCPUBITS = 0x40\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x1\n\tCBitFieldMaskBit1  = 0x2\n\tCBitFieldMaskBit2  = 0x4\n\tCBitFieldMaskBit3  = 0x8\n\tCBitFieldMaskBit4  = 0x10\n\tCBitFieldMaskBit5  = 0x20\n\tCBitFieldMaskBit6  = 0x40\n\tCBitFieldMaskBit7  = 0x80\n\tCBitFieldMaskBit8  = 0x100\n\tCBitFieldMaskBit9  = 0x200\n\tCBitFieldMaskBit10 = 0x400\n\tCBitFieldMaskBit11 = 0x800\n\tCBitFieldMaskBit12 = 0x1000\n\tCBitFieldMaskBit13 = 0x2000\n\tCBitFieldMaskBit14 = 0x4000\n\tCBitFieldMaskBit15 = 0x8000\n\tCBitFieldMaskBit16 = 0x10000\n\tCBitFieldMaskBit17 = 0x20000\n\tCBitFieldMaskBit18 = 0x40000\n\tCBitFieldMaskBit19 = 0x80000\n\tCBitFieldMaskBit20 = 0x100000\n\tCBitFieldMaskBit21 = 0x200000\n\tCBitFieldMaskBit22 = 0x400000\n\tCBitFieldMaskBit23 = 0x800000\n\tCBitFieldMaskBit24 = 0x1000000\n\tCBitFieldMaskBit25 = 0x2000000\n\tCBitFieldMaskBit26 = 0x4000000\n\tCBitFieldMaskBit27 = 0x8000000\n\tCBitFieldMaskBit28 = 0x10000000\n\tCBitFieldMaskBit29 = 0x20000000\n\tCBitFieldMaskBit30 = 0x40000000\n\tCBitFieldMaskBit31 = 0x80000000\n\tCBitFieldMaskBit32 = 0x100000000\n\tCBitFieldMaskBit33 = 0x200000000\n\tCBitFieldMaskBit34 = 0x400000000\n\tCBitFieldMaskBit35 = 0x800000000\n\tCBitFieldMaskBit36 = 0x1000000000\n\tCBitFieldMaskBit37 = 0x2000000000\n\tCBitFieldMaskBit38 = 0x4000000000\n\tCBitFieldMaskBit39 = 0x8000000000\n\tCBitFieldMaskBit40 = 0x10000000000\n\tCBitFieldMaskBit41 = 0x20000000000\n\tCBitFieldMaskBit42 = 0x40000000000\n\tCBitFieldMaskBit43 = 0x80000000000\n\tCBitFieldMaskBit44 = 0x100000000000\n\tCBitFieldMaskBit45 = 0x200000000000\n\tCBitFieldMaskBit46 = 0x400000000000\n\tCBitFieldMaskBit47 = 0x800000000000\n\tCBitFieldMaskBit48 = 0x1000000000000\n\tCBitFieldMaskBit49 = 0x2000000000000\n\tCBitFieldMaskBit50 = 0x4000000000000\n\tCBitFieldMaskBit51 = 0x8000000000000\n\tCBitFieldMaskBit52 = 0x10000000000000\n\tCBitFieldMaskBit53 = 0x20000000000000\n\tCBitFieldMaskBit54 = 0x40000000000000\n\tCBitFieldMaskBit55 = 0x80000000000000\n\tCBitFieldMaskBit56 = 0x100000000000000\n\tCBitFieldMaskBit57 = 0x200000000000000\n\tCBitFieldMaskBit58 = 0x400000000000000\n\tCBitFieldMaskBit59 = 0x800000000000000\n\tCBitFieldMaskBit60 = 0x1000000000000000\n\tCBitFieldMaskBit61 = 0x2000000000000000\n\tCBitFieldMaskBit62 = 0x4000000000000000\n\tCBitFieldMaskBit63 = 0x8000000000000000\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [118]int8\n\t_      uint64\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint64\n}\n\ntype Statfs_t struct {\n\tType    int64\n\tBsize   int64\n\tBlocks  uint64\n\tBfree   uint64\n\tBavail  uint64\n\tFiles   uint64\n\tFfree   uint64\n\tFsid    Fsid\n\tNamelen int64\n\tFrsize  int64\n\tFlags   int64\n\tSpare   [4]int64\n}\n\ntype TpacketHdr struct {\n\tStatus  uint64\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n\t_       [4]byte\n}\n\nconst (\n\tSizeofTpacketHdr = 0x20\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int64\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x1269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]int8\n\tDriver_name [64]int8\n\tModule_name [64]int8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]int8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]int8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]int8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]int8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]int8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]int8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]int8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]int8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]int8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]int8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint64\n\tInode            uint64\n\tRdevice          uint64\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]int8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n\tReserved         [4]int8\n\t_                [4]byte\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]int8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]int8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]int8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_arm.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x4\n\tSizeofLong = 0x4\n)\n\ntype (\n\t_C_long int32\n)\n\ntype Timespec struct {\n\tSec  int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int32\n\tFreq      int32\n\tMaxerror  int32\n\tEsterror  int32\n\tStatus    int32\n\tConstant  int32\n\tPrecision int32\n\tTolerance int32\n\tTime      Timeval\n\tTick      int32\n\tPpsfreq   int32\n\tJitter    int32\n\tShift     int32\n\tStabil    int32\n\tJitcnt    int32\n\tCalcnt    int32\n\tErrcnt    int32\n\tStbcnt    int32\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int32\n\ntype Tms struct {\n\tUtime  int32\n\tStime  int32\n\tCutime int32\n\tCstime int32\n}\n\ntype Utimbuf struct {\n\tActime  int32\n\tModtime int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Stat_t struct {\n\tDev     uint64\n\t_       uint16\n\t_       uint32\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint64\n\t_       uint16\n\t_       [4]byte\n\tSize    int64\n\tBlksize int32\n\t_       [4]byte\n\tBlocks  int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tIno     uint64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]uint8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\t_      [4]byte\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]uint8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]uint8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x8\n\tSizeofMsghdr  = 0x1c\n\tSizeofCmsghdr = 0xc\n)\n\nconst (\n\tSizeofSockFprog = 0x8\n)\n\ntype PtraceRegs struct {\n\tUregs [18]uint32\n}\n\ntype FdSet struct {\n\tBits [32]int32\n}\n\ntype Sysinfo_t struct {\n\tUptime    int32\n\tLoads     [3]uint32\n\tTotalram  uint32\n\tFreeram   uint32\n\tSharedram uint32\n\tBufferram uint32\n\tTotalswap uint32\n\tFreeswap  uint32\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint32\n\tFreehigh  uint32\n\tUnit      uint32\n\t_         [8]uint8\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint32\n\tFname  [6]uint8\n\tFpack  [6]uint8\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\tPadFd  int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [32]uint32\n}\n\nconst _C__NSIG = 0x41\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [19]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\t_                         [4]byte\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]uint8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\t_                         [4]byte\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint32\n\nconst (\n\t_NCPUBITS = 0x20\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x1\n\tCBitFieldMaskBit1  = 0x2\n\tCBitFieldMaskBit2  = 0x4\n\tCBitFieldMaskBit3  = 0x8\n\tCBitFieldMaskBit4  = 0x10\n\tCBitFieldMaskBit5  = 0x20\n\tCBitFieldMaskBit6  = 0x40\n\tCBitFieldMaskBit7  = 0x80\n\tCBitFieldMaskBit8  = 0x100\n\tCBitFieldMaskBit9  = 0x200\n\tCBitFieldMaskBit10 = 0x400\n\tCBitFieldMaskBit11 = 0x800\n\tCBitFieldMaskBit12 = 0x1000\n\tCBitFieldMaskBit13 = 0x2000\n\tCBitFieldMaskBit14 = 0x4000\n\tCBitFieldMaskBit15 = 0x8000\n\tCBitFieldMaskBit16 = 0x10000\n\tCBitFieldMaskBit17 = 0x20000\n\tCBitFieldMaskBit18 = 0x40000\n\tCBitFieldMaskBit19 = 0x80000\n\tCBitFieldMaskBit20 = 0x100000\n\tCBitFieldMaskBit21 = 0x200000\n\tCBitFieldMaskBit22 = 0x400000\n\tCBitFieldMaskBit23 = 0x800000\n\tCBitFieldMaskBit24 = 0x1000000\n\tCBitFieldMaskBit25 = 0x2000000\n\tCBitFieldMaskBit26 = 0x4000000\n\tCBitFieldMaskBit27 = 0x8000000\n\tCBitFieldMaskBit28 = 0x10000000\n\tCBitFieldMaskBit29 = 0x20000000\n\tCBitFieldMaskBit30 = 0x40000000\n\tCBitFieldMaskBit31 = 0x80000000\n\tCBitFieldMaskBit32 = 0x100000000\n\tCBitFieldMaskBit33 = 0x200000000\n\tCBitFieldMaskBit34 = 0x400000000\n\tCBitFieldMaskBit35 = 0x800000000\n\tCBitFieldMaskBit36 = 0x1000000000\n\tCBitFieldMaskBit37 = 0x2000000000\n\tCBitFieldMaskBit38 = 0x4000000000\n\tCBitFieldMaskBit39 = 0x8000000000\n\tCBitFieldMaskBit40 = 0x10000000000\n\tCBitFieldMaskBit41 = 0x20000000000\n\tCBitFieldMaskBit42 = 0x40000000000\n\tCBitFieldMaskBit43 = 0x80000000000\n\tCBitFieldMaskBit44 = 0x100000000000\n\tCBitFieldMaskBit45 = 0x200000000000\n\tCBitFieldMaskBit46 = 0x400000000000\n\tCBitFieldMaskBit47 = 0x800000000000\n\tCBitFieldMaskBit48 = 0x1000000000000\n\tCBitFieldMaskBit49 = 0x2000000000000\n\tCBitFieldMaskBit50 = 0x4000000000000\n\tCBitFieldMaskBit51 = 0x8000000000000\n\tCBitFieldMaskBit52 = 0x10000000000000\n\tCBitFieldMaskBit53 = 0x20000000000000\n\tCBitFieldMaskBit54 = 0x40000000000000\n\tCBitFieldMaskBit55 = 0x80000000000000\n\tCBitFieldMaskBit56 = 0x100000000000000\n\tCBitFieldMaskBit57 = 0x200000000000000\n\tCBitFieldMaskBit58 = 0x400000000000000\n\tCBitFieldMaskBit59 = 0x800000000000000\n\tCBitFieldMaskBit60 = 0x1000000000000000\n\tCBitFieldMaskBit61 = 0x2000000000000000\n\tCBitFieldMaskBit62 = 0x4000000000000000\n\tCBitFieldMaskBit63 = 0x8000000000000000\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [122]uint8\n\t_      uint32\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint32\n}\n\ntype Statfs_t struct {\n\tType    int32\n\tBsize   int32\n\tBlocks  uint64\n\tBfree   uint64\n\tBavail  uint64\n\tFiles   uint64\n\tFfree   uint64\n\tFsid    Fsid\n\tNamelen int32\n\tFrsize  int32\n\tFlags   int32\n\tSpare   [4]int32\n\t_       [4]byte\n}\n\ntype TpacketHdr struct {\n\tStatus  uint32\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n}\n\nconst (\n\tSizeofTpacketHdr = 0x18\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int32\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x1269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]uint8\n\tDriver_name [64]uint8\n\tModule_name [64]uint8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]uint8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]uint8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]uint8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]uint8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]uint8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]uint8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]uint8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]uint8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]uint8\n\tGeniv       [64]uint8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]uint8\n\tGeniv       [64]uint8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]uint8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]uint8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]uint8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]uint8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]uint8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint16\n\tInode            uint32\n\tRdevice          uint16\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]uint8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint32\n\tReserved         [4]uint8\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]uint8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]uint8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]uint8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include -fsigned-char linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x8\n\tSizeofLong = 0x8\n)\n\ntype (\n\t_C_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int64\n\tFreq      int64\n\tMaxerror  int64\n\tEsterror  int64\n\tStatus    int32\n\tConstant  int64\n\tPrecision int64\n\tTolerance int64\n\tTime      Timeval\n\tTick      int64\n\tPpsfreq   int64\n\tJitter    int64\n\tShift     int32\n\tStabil    int64\n\tJitcnt    int64\n\tCalcnt    int64\n\tErrcnt    int64\n\tStbcnt    int64\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint64\n\t_       uint64\n\tSize    int64\n\tBlksize int32\n\t_       int32\n\tBlocks  int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\t_       [2]int32\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]int8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]int8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint64\n\tControl    *byte\n\tControllen uint64\n\tFlags      int32\n\t_          [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint64\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x10\n\tSizeofMsghdr  = 0x38\n\tSizeofCmsghdr = 0x10\n)\n\nconst (\n\tSizeofSockFprog = 0x10\n)\n\ntype PtraceRegs struct {\n\tRegs   [31]uint64\n\tSp     uint64\n\tPc     uint64\n\tPstate uint64\n}\n\ntype FdSet struct {\n\tBits [16]int64\n}\n\ntype Sysinfo_t struct {\n\tUptime    int64\n\tLoads     [3]uint64\n\tTotalram  uint64\n\tFreeram   uint64\n\tSharedram uint64\n\tBufferram uint64\n\tTotalswap uint64\n\tFreeswap  uint64\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint64\n\tFreehigh  uint64\n\tUnit      uint32\n\t_         [0]int8\n\t_         [4]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint64\n\tFname  [6]int8\n\tFpack  [6]int8\n\t_      [4]byte\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\tPadFd  int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [16]uint64\n}\n\nconst _C__NSIG = 0x41\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [19]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]int8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint64\n\nconst (\n\t_NCPUBITS = 0x40\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x1\n\tCBitFieldMaskBit1  = 0x2\n\tCBitFieldMaskBit2  = 0x4\n\tCBitFieldMaskBit3  = 0x8\n\tCBitFieldMaskBit4  = 0x10\n\tCBitFieldMaskBit5  = 0x20\n\tCBitFieldMaskBit6  = 0x40\n\tCBitFieldMaskBit7  = 0x80\n\tCBitFieldMaskBit8  = 0x100\n\tCBitFieldMaskBit9  = 0x200\n\tCBitFieldMaskBit10 = 0x400\n\tCBitFieldMaskBit11 = 0x800\n\tCBitFieldMaskBit12 = 0x1000\n\tCBitFieldMaskBit13 = 0x2000\n\tCBitFieldMaskBit14 = 0x4000\n\tCBitFieldMaskBit15 = 0x8000\n\tCBitFieldMaskBit16 = 0x10000\n\tCBitFieldMaskBit17 = 0x20000\n\tCBitFieldMaskBit18 = 0x40000\n\tCBitFieldMaskBit19 = 0x80000\n\tCBitFieldMaskBit20 = 0x100000\n\tCBitFieldMaskBit21 = 0x200000\n\tCBitFieldMaskBit22 = 0x400000\n\tCBitFieldMaskBit23 = 0x800000\n\tCBitFieldMaskBit24 = 0x1000000\n\tCBitFieldMaskBit25 = 0x2000000\n\tCBitFieldMaskBit26 = 0x4000000\n\tCBitFieldMaskBit27 = 0x8000000\n\tCBitFieldMaskBit28 = 0x10000000\n\tCBitFieldMaskBit29 = 0x20000000\n\tCBitFieldMaskBit30 = 0x40000000\n\tCBitFieldMaskBit31 = 0x80000000\n\tCBitFieldMaskBit32 = 0x100000000\n\tCBitFieldMaskBit33 = 0x200000000\n\tCBitFieldMaskBit34 = 0x400000000\n\tCBitFieldMaskBit35 = 0x800000000\n\tCBitFieldMaskBit36 = 0x1000000000\n\tCBitFieldMaskBit37 = 0x2000000000\n\tCBitFieldMaskBit38 = 0x4000000000\n\tCBitFieldMaskBit39 = 0x8000000000\n\tCBitFieldMaskBit40 = 0x10000000000\n\tCBitFieldMaskBit41 = 0x20000000000\n\tCBitFieldMaskBit42 = 0x40000000000\n\tCBitFieldMaskBit43 = 0x80000000000\n\tCBitFieldMaskBit44 = 0x100000000000\n\tCBitFieldMaskBit45 = 0x200000000000\n\tCBitFieldMaskBit46 = 0x400000000000\n\tCBitFieldMaskBit47 = 0x800000000000\n\tCBitFieldMaskBit48 = 0x1000000000000\n\tCBitFieldMaskBit49 = 0x2000000000000\n\tCBitFieldMaskBit50 = 0x4000000000000\n\tCBitFieldMaskBit51 = 0x8000000000000\n\tCBitFieldMaskBit52 = 0x10000000000000\n\tCBitFieldMaskBit53 = 0x20000000000000\n\tCBitFieldMaskBit54 = 0x40000000000000\n\tCBitFieldMaskBit55 = 0x80000000000000\n\tCBitFieldMaskBit56 = 0x100000000000000\n\tCBitFieldMaskBit57 = 0x200000000000000\n\tCBitFieldMaskBit58 = 0x400000000000000\n\tCBitFieldMaskBit59 = 0x800000000000000\n\tCBitFieldMaskBit60 = 0x1000000000000000\n\tCBitFieldMaskBit61 = 0x2000000000000000\n\tCBitFieldMaskBit62 = 0x4000000000000000\n\tCBitFieldMaskBit63 = 0x8000000000000000\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [118]int8\n\t_      uint64\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint64\n}\n\ntype Statfs_t struct {\n\tType    int64\n\tBsize   int64\n\tBlocks  uint64\n\tBfree   uint64\n\tBavail  uint64\n\tFiles   uint64\n\tFfree   uint64\n\tFsid    Fsid\n\tNamelen int64\n\tFrsize  int64\n\tFlags   int64\n\tSpare   [4]int64\n}\n\ntype TpacketHdr struct {\n\tStatus  uint64\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n\t_       [4]byte\n}\n\nconst (\n\tSizeofTpacketHdr = 0x20\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int64\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x1269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]int8\n\tDriver_name [64]int8\n\tModule_name [64]int8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]int8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]int8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]int8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]int8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]int8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]int8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]int8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]int8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]int8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]int8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint32\n\tInode            uint64\n\tRdevice          uint32\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]int8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n\tReserved         [4]int8\n\t_                [4]byte\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]int8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]int8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]int8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_mips.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x4\n\tSizeofLong = 0x4\n)\n\ntype (\n\t_C_long int32\n)\n\ntype Timespec struct {\n\tSec  int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int32\n\tFreq      int32\n\tMaxerror  int32\n\tEsterror  int32\n\tStatus    int32\n\tConstant  int32\n\tPrecision int32\n\tTolerance int32\n\tTime      Timeval\n\tTick      int32\n\tPpsfreq   int32\n\tJitter    int32\n\tShift     int32\n\tStabil    int32\n\tJitcnt    int32\n\tCalcnt    int32\n\tErrcnt    int32\n\tStbcnt    int32\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int32\n\ntype Tms struct {\n\tUtime  int32\n\tStime  int32\n\tCutime int32\n\tCstime int32\n}\n\ntype Utimbuf struct {\n\tActime  int32\n\tModtime int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Stat_t struct {\n\tDev     uint32\n\tPad1    [3]int32\n\tIno     uint64\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint32\n\tPad2    [3]int32\n\tSize    int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBlksize int32\n\tPad4    int32\n\tBlocks  int64\n\tPad5    [14]int32\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]int8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\t_      [4]byte\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]int8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x8\n\tSizeofMsghdr  = 0x1c\n\tSizeofCmsghdr = 0xc\n)\n\nconst (\n\tSizeofSockFprog = 0x8\n)\n\ntype PtraceRegs struct {\n\tRegs     [32]uint64\n\tLo       uint64\n\tHi       uint64\n\tEpc      uint64\n\tBadvaddr uint64\n\tStatus   uint64\n\tCause    uint64\n}\n\ntype FdSet struct {\n\tBits [32]int32\n}\n\ntype Sysinfo_t struct {\n\tUptime    int32\n\tLoads     [3]uint32\n\tTotalram  uint32\n\tFreeram   uint32\n\tSharedram uint32\n\tBufferram uint32\n\tTotalswap uint32\n\tFreeswap  uint32\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint32\n\tFreehigh  uint32\n\tUnit      uint32\n\t_         [8]int8\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint32\n\tFname  [6]int8\n\tFpack  [6]int8\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\tPadFd  int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [32]uint32\n}\n\nconst _C__NSIG = 0x80\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [23]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\t_                         [4]byte\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]int8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\t_                         [4]byte\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint32\n\nconst (\n\t_NCPUBITS = 0x20\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x8000000000000000\n\tCBitFieldMaskBit1  = 0x4000000000000000\n\tCBitFieldMaskBit2  = 0x2000000000000000\n\tCBitFieldMaskBit3  = 0x1000000000000000\n\tCBitFieldMaskBit4  = 0x800000000000000\n\tCBitFieldMaskBit5  = 0x400000000000000\n\tCBitFieldMaskBit6  = 0x200000000000000\n\tCBitFieldMaskBit7  = 0x100000000000000\n\tCBitFieldMaskBit8  = 0x80000000000000\n\tCBitFieldMaskBit9  = 0x40000000000000\n\tCBitFieldMaskBit10 = 0x20000000000000\n\tCBitFieldMaskBit11 = 0x10000000000000\n\tCBitFieldMaskBit12 = 0x8000000000000\n\tCBitFieldMaskBit13 = 0x4000000000000\n\tCBitFieldMaskBit14 = 0x2000000000000\n\tCBitFieldMaskBit15 = 0x1000000000000\n\tCBitFieldMaskBit16 = 0x800000000000\n\tCBitFieldMaskBit17 = 0x400000000000\n\tCBitFieldMaskBit18 = 0x200000000000\n\tCBitFieldMaskBit19 = 0x100000000000\n\tCBitFieldMaskBit20 = 0x80000000000\n\tCBitFieldMaskBit21 = 0x40000000000\n\tCBitFieldMaskBit22 = 0x20000000000\n\tCBitFieldMaskBit23 = 0x10000000000\n\tCBitFieldMaskBit24 = 0x8000000000\n\tCBitFieldMaskBit25 = 0x4000000000\n\tCBitFieldMaskBit26 = 0x2000000000\n\tCBitFieldMaskBit27 = 0x1000000000\n\tCBitFieldMaskBit28 = 0x800000000\n\tCBitFieldMaskBit29 = 0x400000000\n\tCBitFieldMaskBit30 = 0x200000000\n\tCBitFieldMaskBit31 = 0x100000000\n\tCBitFieldMaskBit32 = 0x80000000\n\tCBitFieldMaskBit33 = 0x40000000\n\tCBitFieldMaskBit34 = 0x20000000\n\tCBitFieldMaskBit35 = 0x10000000\n\tCBitFieldMaskBit36 = 0x8000000\n\tCBitFieldMaskBit37 = 0x4000000\n\tCBitFieldMaskBit38 = 0x2000000\n\tCBitFieldMaskBit39 = 0x1000000\n\tCBitFieldMaskBit40 = 0x800000\n\tCBitFieldMaskBit41 = 0x400000\n\tCBitFieldMaskBit42 = 0x200000\n\tCBitFieldMaskBit43 = 0x100000\n\tCBitFieldMaskBit44 = 0x80000\n\tCBitFieldMaskBit45 = 0x40000\n\tCBitFieldMaskBit46 = 0x20000\n\tCBitFieldMaskBit47 = 0x10000\n\tCBitFieldMaskBit48 = 0x8000\n\tCBitFieldMaskBit49 = 0x4000\n\tCBitFieldMaskBit50 = 0x2000\n\tCBitFieldMaskBit51 = 0x1000\n\tCBitFieldMaskBit52 = 0x800\n\tCBitFieldMaskBit53 = 0x400\n\tCBitFieldMaskBit54 = 0x200\n\tCBitFieldMaskBit55 = 0x100\n\tCBitFieldMaskBit56 = 0x80\n\tCBitFieldMaskBit57 = 0x40\n\tCBitFieldMaskBit58 = 0x20\n\tCBitFieldMaskBit59 = 0x10\n\tCBitFieldMaskBit60 = 0x8\n\tCBitFieldMaskBit61 = 0x4\n\tCBitFieldMaskBit62 = 0x2\n\tCBitFieldMaskBit63 = 0x1\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [122]int8\n\t_      uint32\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint32\n}\n\ntype Statfs_t struct {\n\tType    int32\n\tBsize   int32\n\tFrsize  int32\n\t_       [4]byte\n\tBlocks  uint64\n\tBfree   uint64\n\tFiles   uint64\n\tFfree   uint64\n\tBavail  uint64\n\tFsid    Fsid\n\tNamelen int32\n\tFlags   int32\n\tSpare   [5]int32\n\t_       [4]byte\n}\n\ntype TpacketHdr struct {\n\tStatus  uint32\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n}\n\nconst (\n\tSizeofTpacketHdr = 0x18\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int32\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x20001269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]int8\n\tDriver_name [64]int8\n\tModule_name [64]int8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]int8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]int8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]int8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]int8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]int8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]int8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]int8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]int8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]int8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]int8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint32\n\tInode            uint32\n\tRdevice          uint32\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]int8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint32\n\tReserved         [4]int8\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]int8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]int8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]int8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips64,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x8\n\tSizeofLong = 0x8\n)\n\ntype (\n\t_C_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int64\n\tFreq      int64\n\tMaxerror  int64\n\tEsterror  int64\n\tStatus    int32\n\tConstant  int64\n\tPrecision int64\n\tTolerance int64\n\tTime      Timeval\n\tTick      int64\n\tPpsfreq   int64\n\tJitter    int64\n\tShift     int32\n\tStabil    int64\n\tJitcnt    int64\n\tCalcnt    int64\n\tErrcnt    int64\n\tStbcnt    int64\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Stat_t struct {\n\tDev     uint32\n\tPad1    [3]uint32\n\tIno     uint64\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint32\n\tPad2    [3]uint32\n\tSize    int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBlksize uint32\n\tPad4    uint32\n\tBlocks  int64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]int8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]int8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint64\n\tControl    *byte\n\tControllen uint64\n\tFlags      int32\n\t_          [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint64\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x10\n\tSizeofMsghdr  = 0x38\n\tSizeofCmsghdr = 0x10\n)\n\nconst (\n\tSizeofSockFprog = 0x10\n)\n\ntype PtraceRegs struct {\n\tRegs     [32]uint64\n\tLo       uint64\n\tHi       uint64\n\tEpc      uint64\n\tBadvaddr uint64\n\tStatus   uint64\n\tCause    uint64\n}\n\ntype FdSet struct {\n\tBits [16]int64\n}\n\ntype Sysinfo_t struct {\n\tUptime    int64\n\tLoads     [3]uint64\n\tTotalram  uint64\n\tFreeram   uint64\n\tSharedram uint64\n\tBufferram uint64\n\tTotalswap uint64\n\tFreeswap  uint64\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint64\n\tFreehigh  uint64\n\tUnit      uint32\n\t_         [0]int8\n\t_         [4]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint64\n\tFname  [6]int8\n\tFpack  [6]int8\n\t_      [4]byte\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\t_      int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [16]uint64\n}\n\nconst _C__NSIG = 0x80\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [23]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]int8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint64\n\nconst (\n\t_NCPUBITS = 0x40\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x8000000000000000\n\tCBitFieldMaskBit1  = 0x4000000000000000\n\tCBitFieldMaskBit2  = 0x2000000000000000\n\tCBitFieldMaskBit3  = 0x1000000000000000\n\tCBitFieldMaskBit4  = 0x800000000000000\n\tCBitFieldMaskBit5  = 0x400000000000000\n\tCBitFieldMaskBit6  = 0x200000000000000\n\tCBitFieldMaskBit7  = 0x100000000000000\n\tCBitFieldMaskBit8  = 0x80000000000000\n\tCBitFieldMaskBit9  = 0x40000000000000\n\tCBitFieldMaskBit10 = 0x20000000000000\n\tCBitFieldMaskBit11 = 0x10000000000000\n\tCBitFieldMaskBit12 = 0x8000000000000\n\tCBitFieldMaskBit13 = 0x4000000000000\n\tCBitFieldMaskBit14 = 0x2000000000000\n\tCBitFieldMaskBit15 = 0x1000000000000\n\tCBitFieldMaskBit16 = 0x800000000000\n\tCBitFieldMaskBit17 = 0x400000000000\n\tCBitFieldMaskBit18 = 0x200000000000\n\tCBitFieldMaskBit19 = 0x100000000000\n\tCBitFieldMaskBit20 = 0x80000000000\n\tCBitFieldMaskBit21 = 0x40000000000\n\tCBitFieldMaskBit22 = 0x20000000000\n\tCBitFieldMaskBit23 = 0x10000000000\n\tCBitFieldMaskBit24 = 0x8000000000\n\tCBitFieldMaskBit25 = 0x4000000000\n\tCBitFieldMaskBit26 = 0x2000000000\n\tCBitFieldMaskBit27 = 0x1000000000\n\tCBitFieldMaskBit28 = 0x800000000\n\tCBitFieldMaskBit29 = 0x400000000\n\tCBitFieldMaskBit30 = 0x200000000\n\tCBitFieldMaskBit31 = 0x100000000\n\tCBitFieldMaskBit32 = 0x80000000\n\tCBitFieldMaskBit33 = 0x40000000\n\tCBitFieldMaskBit34 = 0x20000000\n\tCBitFieldMaskBit35 = 0x10000000\n\tCBitFieldMaskBit36 = 0x8000000\n\tCBitFieldMaskBit37 = 0x4000000\n\tCBitFieldMaskBit38 = 0x2000000\n\tCBitFieldMaskBit39 = 0x1000000\n\tCBitFieldMaskBit40 = 0x800000\n\tCBitFieldMaskBit41 = 0x400000\n\tCBitFieldMaskBit42 = 0x200000\n\tCBitFieldMaskBit43 = 0x100000\n\tCBitFieldMaskBit44 = 0x80000\n\tCBitFieldMaskBit45 = 0x40000\n\tCBitFieldMaskBit46 = 0x20000\n\tCBitFieldMaskBit47 = 0x10000\n\tCBitFieldMaskBit48 = 0x8000\n\tCBitFieldMaskBit49 = 0x4000\n\tCBitFieldMaskBit50 = 0x2000\n\tCBitFieldMaskBit51 = 0x1000\n\tCBitFieldMaskBit52 = 0x800\n\tCBitFieldMaskBit53 = 0x400\n\tCBitFieldMaskBit54 = 0x200\n\tCBitFieldMaskBit55 = 0x100\n\tCBitFieldMaskBit56 = 0x80\n\tCBitFieldMaskBit57 = 0x40\n\tCBitFieldMaskBit58 = 0x20\n\tCBitFieldMaskBit59 = 0x10\n\tCBitFieldMaskBit60 = 0x8\n\tCBitFieldMaskBit61 = 0x4\n\tCBitFieldMaskBit62 = 0x2\n\tCBitFieldMaskBit63 = 0x1\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [118]int8\n\t_      uint64\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint64\n}\n\ntype Statfs_t struct {\n\tType    int64\n\tBsize   int64\n\tFrsize  int64\n\tBlocks  uint64\n\tBfree   uint64\n\tFiles   uint64\n\tFfree   uint64\n\tBavail  uint64\n\tFsid    Fsid\n\tNamelen int64\n\tFlags   int64\n\tSpare   [5]int64\n}\n\ntype TpacketHdr struct {\n\tStatus  uint64\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n\t_       [4]byte\n}\n\nconst (\n\tSizeofTpacketHdr = 0x20\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int64\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x20001269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]int8\n\tDriver_name [64]int8\n\tModule_name [64]int8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]int8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]int8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]int8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]int8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]int8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]int8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]int8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]int8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]int8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]int8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint32\n\tInode            uint64\n\tRdevice          uint32\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]int8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n\tReserved         [4]int8\n\t_                [4]byte\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]int8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]int8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]int8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips64le,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x8\n\tSizeofLong = 0x8\n)\n\ntype (\n\t_C_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int64\n\tFreq      int64\n\tMaxerror  int64\n\tEsterror  int64\n\tStatus    int32\n\tConstant  int64\n\tPrecision int64\n\tTolerance int64\n\tTime      Timeval\n\tTick      int64\n\tPpsfreq   int64\n\tJitter    int64\n\tShift     int32\n\tStabil    int64\n\tJitcnt    int64\n\tCalcnt    int64\n\tErrcnt    int64\n\tStbcnt    int64\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Stat_t struct {\n\tDev     uint32\n\tPad1    [3]uint32\n\tIno     uint64\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint32\n\tPad2    [3]uint32\n\tSize    int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBlksize uint32\n\tPad4    uint32\n\tBlocks  int64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]int8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]int8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint64\n\tControl    *byte\n\tControllen uint64\n\tFlags      int32\n\t_          [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint64\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x10\n\tSizeofMsghdr  = 0x38\n\tSizeofCmsghdr = 0x10\n)\n\nconst (\n\tSizeofSockFprog = 0x10\n)\n\ntype PtraceRegs struct {\n\tRegs     [32]uint64\n\tLo       uint64\n\tHi       uint64\n\tEpc      uint64\n\tBadvaddr uint64\n\tStatus   uint64\n\tCause    uint64\n}\n\ntype FdSet struct {\n\tBits [16]int64\n}\n\ntype Sysinfo_t struct {\n\tUptime    int64\n\tLoads     [3]uint64\n\tTotalram  uint64\n\tFreeram   uint64\n\tSharedram uint64\n\tBufferram uint64\n\tTotalswap uint64\n\tFreeswap  uint64\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint64\n\tFreehigh  uint64\n\tUnit      uint32\n\t_         [0]int8\n\t_         [4]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint64\n\tFname  [6]int8\n\tFpack  [6]int8\n\t_      [4]byte\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\t_      int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [16]uint64\n}\n\nconst _C__NSIG = 0x80\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [23]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]int8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint64\n\nconst (\n\t_NCPUBITS = 0x40\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x1\n\tCBitFieldMaskBit1  = 0x2\n\tCBitFieldMaskBit2  = 0x4\n\tCBitFieldMaskBit3  = 0x8\n\tCBitFieldMaskBit4  = 0x10\n\tCBitFieldMaskBit5  = 0x20\n\tCBitFieldMaskBit6  = 0x40\n\tCBitFieldMaskBit7  = 0x80\n\tCBitFieldMaskBit8  = 0x100\n\tCBitFieldMaskBit9  = 0x200\n\tCBitFieldMaskBit10 = 0x400\n\tCBitFieldMaskBit11 = 0x800\n\tCBitFieldMaskBit12 = 0x1000\n\tCBitFieldMaskBit13 = 0x2000\n\tCBitFieldMaskBit14 = 0x4000\n\tCBitFieldMaskBit15 = 0x8000\n\tCBitFieldMaskBit16 = 0x10000\n\tCBitFieldMaskBit17 = 0x20000\n\tCBitFieldMaskBit18 = 0x40000\n\tCBitFieldMaskBit19 = 0x80000\n\tCBitFieldMaskBit20 = 0x100000\n\tCBitFieldMaskBit21 = 0x200000\n\tCBitFieldMaskBit22 = 0x400000\n\tCBitFieldMaskBit23 = 0x800000\n\tCBitFieldMaskBit24 = 0x1000000\n\tCBitFieldMaskBit25 = 0x2000000\n\tCBitFieldMaskBit26 = 0x4000000\n\tCBitFieldMaskBit27 = 0x8000000\n\tCBitFieldMaskBit28 = 0x10000000\n\tCBitFieldMaskBit29 = 0x20000000\n\tCBitFieldMaskBit30 = 0x40000000\n\tCBitFieldMaskBit31 = 0x80000000\n\tCBitFieldMaskBit32 = 0x100000000\n\tCBitFieldMaskBit33 = 0x200000000\n\tCBitFieldMaskBit34 = 0x400000000\n\tCBitFieldMaskBit35 = 0x800000000\n\tCBitFieldMaskBit36 = 0x1000000000\n\tCBitFieldMaskBit37 = 0x2000000000\n\tCBitFieldMaskBit38 = 0x4000000000\n\tCBitFieldMaskBit39 = 0x8000000000\n\tCBitFieldMaskBit40 = 0x10000000000\n\tCBitFieldMaskBit41 = 0x20000000000\n\tCBitFieldMaskBit42 = 0x40000000000\n\tCBitFieldMaskBit43 = 0x80000000000\n\tCBitFieldMaskBit44 = 0x100000000000\n\tCBitFieldMaskBit45 = 0x200000000000\n\tCBitFieldMaskBit46 = 0x400000000000\n\tCBitFieldMaskBit47 = 0x800000000000\n\tCBitFieldMaskBit48 = 0x1000000000000\n\tCBitFieldMaskBit49 = 0x2000000000000\n\tCBitFieldMaskBit50 = 0x4000000000000\n\tCBitFieldMaskBit51 = 0x8000000000000\n\tCBitFieldMaskBit52 = 0x10000000000000\n\tCBitFieldMaskBit53 = 0x20000000000000\n\tCBitFieldMaskBit54 = 0x40000000000000\n\tCBitFieldMaskBit55 = 0x80000000000000\n\tCBitFieldMaskBit56 = 0x100000000000000\n\tCBitFieldMaskBit57 = 0x200000000000000\n\tCBitFieldMaskBit58 = 0x400000000000000\n\tCBitFieldMaskBit59 = 0x800000000000000\n\tCBitFieldMaskBit60 = 0x1000000000000000\n\tCBitFieldMaskBit61 = 0x2000000000000000\n\tCBitFieldMaskBit62 = 0x4000000000000000\n\tCBitFieldMaskBit63 = 0x8000000000000000\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [118]int8\n\t_      uint64\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint64\n}\n\ntype Statfs_t struct {\n\tType    int64\n\tBsize   int64\n\tFrsize  int64\n\tBlocks  uint64\n\tBfree   uint64\n\tFiles   uint64\n\tFfree   uint64\n\tBavail  uint64\n\tFsid    Fsid\n\tNamelen int64\n\tFlags   int64\n\tSpare   [5]int64\n}\n\ntype TpacketHdr struct {\n\tStatus  uint64\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n\t_       [4]byte\n}\n\nconst (\n\tSizeofTpacketHdr = 0x20\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int64\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x20001269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]int8\n\tDriver_name [64]int8\n\tModule_name [64]int8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]int8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]int8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]int8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]int8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]int8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]int8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]int8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]int8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]int8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]int8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint32\n\tInode            uint64\n\tRdevice          uint32\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]int8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n\tReserved         [4]int8\n\t_                [4]byte\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]int8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]int8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]int8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mipsle,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x4\n\tSizeofLong = 0x4\n)\n\ntype (\n\t_C_long int32\n)\n\ntype Timespec struct {\n\tSec  int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int32\n\tFreq      int32\n\tMaxerror  int32\n\tEsterror  int32\n\tStatus    int32\n\tConstant  int32\n\tPrecision int32\n\tTolerance int32\n\tTime      Timeval\n\tTick      int32\n\tPpsfreq   int32\n\tJitter    int32\n\tShift     int32\n\tStabil    int32\n\tJitcnt    int32\n\tCalcnt    int32\n\tErrcnt    int32\n\tStbcnt    int32\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int32\n\ntype Tms struct {\n\tUtime  int32\n\tStime  int32\n\tCutime int32\n\tCstime int32\n}\n\ntype Utimbuf struct {\n\tActime  int32\n\tModtime int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Stat_t struct {\n\tDev     uint32\n\tPad1    [3]int32\n\tIno     uint64\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint32\n\tPad2    [3]int32\n\tSize    int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBlksize int32\n\tPad4    int32\n\tBlocks  int64\n\tPad5    [14]int32\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]int8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\t_      [4]byte\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]int8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x8\n\tSizeofMsghdr  = 0x1c\n\tSizeofCmsghdr = 0xc\n)\n\nconst (\n\tSizeofSockFprog = 0x8\n)\n\ntype PtraceRegs struct {\n\tRegs     [32]uint64\n\tLo       uint64\n\tHi       uint64\n\tEpc      uint64\n\tBadvaddr uint64\n\tStatus   uint64\n\tCause    uint64\n}\n\ntype FdSet struct {\n\tBits [32]int32\n}\n\ntype Sysinfo_t struct {\n\tUptime    int32\n\tLoads     [3]uint32\n\tTotalram  uint32\n\tFreeram   uint32\n\tSharedram uint32\n\tBufferram uint32\n\tTotalswap uint32\n\tFreeswap  uint32\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint32\n\tFreehigh  uint32\n\tUnit      uint32\n\t_         [8]int8\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint32\n\tFname  [6]int8\n\tFpack  [6]int8\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\tPadFd  int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [32]uint32\n}\n\nconst _C__NSIG = 0x80\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [23]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\t_                         [4]byte\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]int8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\t_                         [4]byte\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint32\n\nconst (\n\t_NCPUBITS = 0x20\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x1\n\tCBitFieldMaskBit1  = 0x2\n\tCBitFieldMaskBit2  = 0x4\n\tCBitFieldMaskBit3  = 0x8\n\tCBitFieldMaskBit4  = 0x10\n\tCBitFieldMaskBit5  = 0x20\n\tCBitFieldMaskBit6  = 0x40\n\tCBitFieldMaskBit7  = 0x80\n\tCBitFieldMaskBit8  = 0x100\n\tCBitFieldMaskBit9  = 0x200\n\tCBitFieldMaskBit10 = 0x400\n\tCBitFieldMaskBit11 = 0x800\n\tCBitFieldMaskBit12 = 0x1000\n\tCBitFieldMaskBit13 = 0x2000\n\tCBitFieldMaskBit14 = 0x4000\n\tCBitFieldMaskBit15 = 0x8000\n\tCBitFieldMaskBit16 = 0x10000\n\tCBitFieldMaskBit17 = 0x20000\n\tCBitFieldMaskBit18 = 0x40000\n\tCBitFieldMaskBit19 = 0x80000\n\tCBitFieldMaskBit20 = 0x100000\n\tCBitFieldMaskBit21 = 0x200000\n\tCBitFieldMaskBit22 = 0x400000\n\tCBitFieldMaskBit23 = 0x800000\n\tCBitFieldMaskBit24 = 0x1000000\n\tCBitFieldMaskBit25 = 0x2000000\n\tCBitFieldMaskBit26 = 0x4000000\n\tCBitFieldMaskBit27 = 0x8000000\n\tCBitFieldMaskBit28 = 0x10000000\n\tCBitFieldMaskBit29 = 0x20000000\n\tCBitFieldMaskBit30 = 0x40000000\n\tCBitFieldMaskBit31 = 0x80000000\n\tCBitFieldMaskBit32 = 0x100000000\n\tCBitFieldMaskBit33 = 0x200000000\n\tCBitFieldMaskBit34 = 0x400000000\n\tCBitFieldMaskBit35 = 0x800000000\n\tCBitFieldMaskBit36 = 0x1000000000\n\tCBitFieldMaskBit37 = 0x2000000000\n\tCBitFieldMaskBit38 = 0x4000000000\n\tCBitFieldMaskBit39 = 0x8000000000\n\tCBitFieldMaskBit40 = 0x10000000000\n\tCBitFieldMaskBit41 = 0x20000000000\n\tCBitFieldMaskBit42 = 0x40000000000\n\tCBitFieldMaskBit43 = 0x80000000000\n\tCBitFieldMaskBit44 = 0x100000000000\n\tCBitFieldMaskBit45 = 0x200000000000\n\tCBitFieldMaskBit46 = 0x400000000000\n\tCBitFieldMaskBit47 = 0x800000000000\n\tCBitFieldMaskBit48 = 0x1000000000000\n\tCBitFieldMaskBit49 = 0x2000000000000\n\tCBitFieldMaskBit50 = 0x4000000000000\n\tCBitFieldMaskBit51 = 0x8000000000000\n\tCBitFieldMaskBit52 = 0x10000000000000\n\tCBitFieldMaskBit53 = 0x20000000000000\n\tCBitFieldMaskBit54 = 0x40000000000000\n\tCBitFieldMaskBit55 = 0x80000000000000\n\tCBitFieldMaskBit56 = 0x100000000000000\n\tCBitFieldMaskBit57 = 0x200000000000000\n\tCBitFieldMaskBit58 = 0x400000000000000\n\tCBitFieldMaskBit59 = 0x800000000000000\n\tCBitFieldMaskBit60 = 0x1000000000000000\n\tCBitFieldMaskBit61 = 0x2000000000000000\n\tCBitFieldMaskBit62 = 0x4000000000000000\n\tCBitFieldMaskBit63 = 0x8000000000000000\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [122]int8\n\t_      uint32\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint32\n}\n\ntype Statfs_t struct {\n\tType    int32\n\tBsize   int32\n\tFrsize  int32\n\t_       [4]byte\n\tBlocks  uint64\n\tBfree   uint64\n\tFiles   uint64\n\tFfree   uint64\n\tBavail  uint64\n\tFsid    Fsid\n\tNamelen int32\n\tFlags   int32\n\tSpare   [5]int32\n\t_       [4]byte\n}\n\ntype TpacketHdr struct {\n\tStatus  uint32\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n}\n\nconst (\n\tSizeofTpacketHdr = 0x18\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int32\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x20001269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]int8\n\tDriver_name [64]int8\n\tModule_name [64]int8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]int8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]int8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]int8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]int8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]int8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]int8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]int8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]int8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]int8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]int8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint32\n\tInode            uint32\n\tRdevice          uint32\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]int8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint32\n\tReserved         [4]int8\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]int8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]int8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]int8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc64,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x8\n\tSizeofLong = 0x8\n)\n\ntype (\n\t_C_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int64\n\tFreq      int64\n\tMaxerror  int64\n\tEsterror  int64\n\tStatus    int32\n\tConstant  int64\n\tPrecision int64\n\tTolerance int64\n\tTime      Timeval\n\tTick      int64\n\tPpsfreq   int64\n\tJitter    int64\n\tShift     int32\n\tStabil    int64\n\tJitcnt    int64\n\tCalcnt    int64\n\tErrcnt    int64\n\tStbcnt    int64\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tNlink   uint64\n\tMode    uint32\n\tUid     uint32\n\tGid     uint32\n\t_       int32\n\tRdev    uint64\n\tSize    int64\n\tBlksize int64\n\tBlocks  int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\t_       uint64\n\t_       uint64\n\t_       uint64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]uint8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]uint8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]uint8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint64\n\tControl    *byte\n\tControllen uint64\n\tFlags      int32\n\t_          [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint64\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x10\n\tSizeofMsghdr  = 0x38\n\tSizeofCmsghdr = 0x10\n)\n\nconst (\n\tSizeofSockFprog = 0x10\n)\n\ntype PtraceRegs struct {\n\tGpr       [32]uint64\n\tNip       uint64\n\tMsr       uint64\n\tOrig_gpr3 uint64\n\tCtr       uint64\n\tLink      uint64\n\tXer       uint64\n\tCcr       uint64\n\tSofte     uint64\n\tTrap      uint64\n\tDar       uint64\n\tDsisr     uint64\n\tResult    uint64\n}\n\ntype FdSet struct {\n\tBits [16]int64\n}\n\ntype Sysinfo_t struct {\n\tUptime    int64\n\tLoads     [3]uint64\n\tTotalram  uint64\n\tFreeram   uint64\n\tSharedram uint64\n\tBufferram uint64\n\tTotalswap uint64\n\tFreeswap  uint64\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint64\n\tFreehigh  uint64\n\tUnit      uint32\n\t_         [0]uint8\n\t_         [4]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint64\n\tFname  [6]uint8\n\tFpack  [6]uint8\n\t_      [4]byte\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\t_      int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [16]uint64\n}\n\nconst _C__NSIG = 0x41\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [19]uint8\n\tLine   uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]uint8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint64\n\nconst (\n\t_NCPUBITS = 0x40\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x8000000000000000\n\tCBitFieldMaskBit1  = 0x4000000000000000\n\tCBitFieldMaskBit2  = 0x2000000000000000\n\tCBitFieldMaskBit3  = 0x1000000000000000\n\tCBitFieldMaskBit4  = 0x800000000000000\n\tCBitFieldMaskBit5  = 0x400000000000000\n\tCBitFieldMaskBit6  = 0x200000000000000\n\tCBitFieldMaskBit7  = 0x100000000000000\n\tCBitFieldMaskBit8  = 0x80000000000000\n\tCBitFieldMaskBit9  = 0x40000000000000\n\tCBitFieldMaskBit10 = 0x20000000000000\n\tCBitFieldMaskBit11 = 0x10000000000000\n\tCBitFieldMaskBit12 = 0x8000000000000\n\tCBitFieldMaskBit13 = 0x4000000000000\n\tCBitFieldMaskBit14 = 0x2000000000000\n\tCBitFieldMaskBit15 = 0x1000000000000\n\tCBitFieldMaskBit16 = 0x800000000000\n\tCBitFieldMaskBit17 = 0x400000000000\n\tCBitFieldMaskBit18 = 0x200000000000\n\tCBitFieldMaskBit19 = 0x100000000000\n\tCBitFieldMaskBit20 = 0x80000000000\n\tCBitFieldMaskBit21 = 0x40000000000\n\tCBitFieldMaskBit22 = 0x20000000000\n\tCBitFieldMaskBit23 = 0x10000000000\n\tCBitFieldMaskBit24 = 0x8000000000\n\tCBitFieldMaskBit25 = 0x4000000000\n\tCBitFieldMaskBit26 = 0x2000000000\n\tCBitFieldMaskBit27 = 0x1000000000\n\tCBitFieldMaskBit28 = 0x800000000\n\tCBitFieldMaskBit29 = 0x400000000\n\tCBitFieldMaskBit30 = 0x200000000\n\tCBitFieldMaskBit31 = 0x100000000\n\tCBitFieldMaskBit32 = 0x80000000\n\tCBitFieldMaskBit33 = 0x40000000\n\tCBitFieldMaskBit34 = 0x20000000\n\tCBitFieldMaskBit35 = 0x10000000\n\tCBitFieldMaskBit36 = 0x8000000\n\tCBitFieldMaskBit37 = 0x4000000\n\tCBitFieldMaskBit38 = 0x2000000\n\tCBitFieldMaskBit39 = 0x1000000\n\tCBitFieldMaskBit40 = 0x800000\n\tCBitFieldMaskBit41 = 0x400000\n\tCBitFieldMaskBit42 = 0x200000\n\tCBitFieldMaskBit43 = 0x100000\n\tCBitFieldMaskBit44 = 0x80000\n\tCBitFieldMaskBit45 = 0x40000\n\tCBitFieldMaskBit46 = 0x20000\n\tCBitFieldMaskBit47 = 0x10000\n\tCBitFieldMaskBit48 = 0x8000\n\tCBitFieldMaskBit49 = 0x4000\n\tCBitFieldMaskBit50 = 0x2000\n\tCBitFieldMaskBit51 = 0x1000\n\tCBitFieldMaskBit52 = 0x800\n\tCBitFieldMaskBit53 = 0x400\n\tCBitFieldMaskBit54 = 0x200\n\tCBitFieldMaskBit55 = 0x100\n\tCBitFieldMaskBit56 = 0x80\n\tCBitFieldMaskBit57 = 0x40\n\tCBitFieldMaskBit58 = 0x20\n\tCBitFieldMaskBit59 = 0x10\n\tCBitFieldMaskBit60 = 0x8\n\tCBitFieldMaskBit61 = 0x4\n\tCBitFieldMaskBit62 = 0x2\n\tCBitFieldMaskBit63 = 0x1\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [118]uint8\n\t_      uint64\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint64\n}\n\ntype Statfs_t struct {\n\tType    int64\n\tBsize   int64\n\tBlocks  uint64\n\tBfree   uint64\n\tBavail  uint64\n\tFiles   uint64\n\tFfree   uint64\n\tFsid    Fsid\n\tNamelen int64\n\tFrsize  int64\n\tFlags   int64\n\tSpare   [4]int64\n}\n\ntype TpacketHdr struct {\n\tStatus  uint64\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n\t_       [4]byte\n}\n\nconst (\n\tSizeofTpacketHdr = 0x20\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int64\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x20001269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]uint8\n\tDriver_name [64]uint8\n\tModule_name [64]uint8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]uint8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]uint8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]uint8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]uint8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]uint8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]uint8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]uint8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]uint8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]uint8\n\tGeniv       [64]uint8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]uint8\n\tGeniv       [64]uint8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]uint8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]uint8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]uint8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]uint8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]uint8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint64\n\tInode            uint64\n\tRdevice          uint64\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]uint8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n\tReserved         [4]uint8\n\t_                [4]byte\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]uint8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]uint8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]uint8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build ppc64le,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x8\n\tSizeofLong = 0x8\n)\n\ntype (\n\t_C_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int64\n\tFreq      int64\n\tMaxerror  int64\n\tEsterror  int64\n\tStatus    int32\n\tConstant  int64\n\tPrecision int64\n\tTolerance int64\n\tTime      Timeval\n\tTick      int64\n\tPpsfreq   int64\n\tJitter    int64\n\tShift     int32\n\tStabil    int64\n\tJitcnt    int64\n\tCalcnt    int64\n\tErrcnt    int64\n\tStbcnt    int64\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tNlink   uint64\n\tMode    uint32\n\tUid     uint32\n\tGid     uint32\n\t_       int32\n\tRdev    uint64\n\tSize    int64\n\tBlksize int64\n\tBlocks  int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\t_       uint64\n\t_       uint64\n\t_       uint64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]uint8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]uint8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]uint8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint64\n\tControl    *byte\n\tControllen uint64\n\tFlags      int32\n\t_          [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint64\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x10\n\tSizeofMsghdr  = 0x38\n\tSizeofCmsghdr = 0x10\n)\n\nconst (\n\tSizeofSockFprog = 0x10\n)\n\ntype PtraceRegs struct {\n\tGpr       [32]uint64\n\tNip       uint64\n\tMsr       uint64\n\tOrig_gpr3 uint64\n\tCtr       uint64\n\tLink      uint64\n\tXer       uint64\n\tCcr       uint64\n\tSofte     uint64\n\tTrap      uint64\n\tDar       uint64\n\tDsisr     uint64\n\tResult    uint64\n}\n\ntype FdSet struct {\n\tBits [16]int64\n}\n\ntype Sysinfo_t struct {\n\tUptime    int64\n\tLoads     [3]uint64\n\tTotalram  uint64\n\tFreeram   uint64\n\tSharedram uint64\n\tBufferram uint64\n\tTotalswap uint64\n\tFreeswap  uint64\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint64\n\tFreehigh  uint64\n\tUnit      uint32\n\t_         [0]uint8\n\t_         [4]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint64\n\tFname  [6]uint8\n\tFpack  [6]uint8\n\t_      [4]byte\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\t_      int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [16]uint64\n}\n\nconst _C__NSIG = 0x41\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [19]uint8\n\tLine   uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]uint8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint64\n\nconst (\n\t_NCPUBITS = 0x40\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x1\n\tCBitFieldMaskBit1  = 0x2\n\tCBitFieldMaskBit2  = 0x4\n\tCBitFieldMaskBit3  = 0x8\n\tCBitFieldMaskBit4  = 0x10\n\tCBitFieldMaskBit5  = 0x20\n\tCBitFieldMaskBit6  = 0x40\n\tCBitFieldMaskBit7  = 0x80\n\tCBitFieldMaskBit8  = 0x100\n\tCBitFieldMaskBit9  = 0x200\n\tCBitFieldMaskBit10 = 0x400\n\tCBitFieldMaskBit11 = 0x800\n\tCBitFieldMaskBit12 = 0x1000\n\tCBitFieldMaskBit13 = 0x2000\n\tCBitFieldMaskBit14 = 0x4000\n\tCBitFieldMaskBit15 = 0x8000\n\tCBitFieldMaskBit16 = 0x10000\n\tCBitFieldMaskBit17 = 0x20000\n\tCBitFieldMaskBit18 = 0x40000\n\tCBitFieldMaskBit19 = 0x80000\n\tCBitFieldMaskBit20 = 0x100000\n\tCBitFieldMaskBit21 = 0x200000\n\tCBitFieldMaskBit22 = 0x400000\n\tCBitFieldMaskBit23 = 0x800000\n\tCBitFieldMaskBit24 = 0x1000000\n\tCBitFieldMaskBit25 = 0x2000000\n\tCBitFieldMaskBit26 = 0x4000000\n\tCBitFieldMaskBit27 = 0x8000000\n\tCBitFieldMaskBit28 = 0x10000000\n\tCBitFieldMaskBit29 = 0x20000000\n\tCBitFieldMaskBit30 = 0x40000000\n\tCBitFieldMaskBit31 = 0x80000000\n\tCBitFieldMaskBit32 = 0x100000000\n\tCBitFieldMaskBit33 = 0x200000000\n\tCBitFieldMaskBit34 = 0x400000000\n\tCBitFieldMaskBit35 = 0x800000000\n\tCBitFieldMaskBit36 = 0x1000000000\n\tCBitFieldMaskBit37 = 0x2000000000\n\tCBitFieldMaskBit38 = 0x4000000000\n\tCBitFieldMaskBit39 = 0x8000000000\n\tCBitFieldMaskBit40 = 0x10000000000\n\tCBitFieldMaskBit41 = 0x20000000000\n\tCBitFieldMaskBit42 = 0x40000000000\n\tCBitFieldMaskBit43 = 0x80000000000\n\tCBitFieldMaskBit44 = 0x100000000000\n\tCBitFieldMaskBit45 = 0x200000000000\n\tCBitFieldMaskBit46 = 0x400000000000\n\tCBitFieldMaskBit47 = 0x800000000000\n\tCBitFieldMaskBit48 = 0x1000000000000\n\tCBitFieldMaskBit49 = 0x2000000000000\n\tCBitFieldMaskBit50 = 0x4000000000000\n\tCBitFieldMaskBit51 = 0x8000000000000\n\tCBitFieldMaskBit52 = 0x10000000000000\n\tCBitFieldMaskBit53 = 0x20000000000000\n\tCBitFieldMaskBit54 = 0x40000000000000\n\tCBitFieldMaskBit55 = 0x80000000000000\n\tCBitFieldMaskBit56 = 0x100000000000000\n\tCBitFieldMaskBit57 = 0x200000000000000\n\tCBitFieldMaskBit58 = 0x400000000000000\n\tCBitFieldMaskBit59 = 0x800000000000000\n\tCBitFieldMaskBit60 = 0x1000000000000000\n\tCBitFieldMaskBit61 = 0x2000000000000000\n\tCBitFieldMaskBit62 = 0x4000000000000000\n\tCBitFieldMaskBit63 = 0x8000000000000000\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [118]uint8\n\t_      uint64\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint64\n}\n\ntype Statfs_t struct {\n\tType    int64\n\tBsize   int64\n\tBlocks  uint64\n\tBfree   uint64\n\tBavail  uint64\n\tFiles   uint64\n\tFfree   uint64\n\tFsid    Fsid\n\tNamelen int64\n\tFrsize  int64\n\tFlags   int64\n\tSpare   [4]int64\n}\n\ntype TpacketHdr struct {\n\tStatus  uint64\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n\t_       [4]byte\n}\n\nconst (\n\tSizeofTpacketHdr = 0x20\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int64\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x20001269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]uint8\n\tDriver_name [64]uint8\n\tModule_name [64]uint8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]uint8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]uint8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]uint8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]uint8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]uint8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]uint8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]uint8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]uint8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]uint8\n\tGeniv       [64]uint8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]uint8\n\tGeniv       [64]uint8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]uint8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]uint8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]uint8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]uint8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]uint8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint64\n\tInode            uint64\n\tRdevice          uint64\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]uint8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n\tReserved         [4]uint8\n\t_                [4]byte\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]uint8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]uint8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]uint8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build riscv64,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x8\n\tSizeofLong = 0x8\n)\n\ntype (\n\t_C_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int64\n\tFreq      int64\n\tMaxerror  int64\n\tEsterror  int64\n\tStatus    int32\n\tConstant  int64\n\tPrecision int64\n\tTolerance int64\n\tTime      Timeval\n\tTick      int64\n\tPpsfreq   int64\n\tJitter    int64\n\tShift     int32\n\tStabil    int64\n\tJitcnt    int64\n\tCalcnt    int64\n\tErrcnt    int64\n\tStbcnt    int64\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint64\n\t_       uint64\n\tSize    int64\n\tBlksize int32\n\t_       int32\n\tBlocks  int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\t_       [2]int32\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]uint8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]uint8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]uint8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint64\n\tControl    *byte\n\tControllen uint64\n\tFlags      int32\n\t_          [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint64\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x10\n\tSizeofMsghdr  = 0x38\n\tSizeofCmsghdr = 0x10\n)\n\nconst (\n\tSizeofSockFprog = 0x10\n)\n\ntype PtraceRegs struct {\n\tPc  uint64\n\tRa  uint64\n\tSp  uint64\n\tGp  uint64\n\tTp  uint64\n\tT0  uint64\n\tT1  uint64\n\tT2  uint64\n\tS0  uint64\n\tS1  uint64\n\tA0  uint64\n\tA1  uint64\n\tA2  uint64\n\tA3  uint64\n\tA4  uint64\n\tA5  uint64\n\tA6  uint64\n\tA7  uint64\n\tS2  uint64\n\tS3  uint64\n\tS4  uint64\n\tS5  uint64\n\tS6  uint64\n\tS7  uint64\n\tS8  uint64\n\tS9  uint64\n\tS10 uint64\n\tS11 uint64\n\tT3  uint64\n\tT4  uint64\n\tT5  uint64\n\tT6  uint64\n}\n\ntype FdSet struct {\n\tBits [16]int64\n}\n\ntype Sysinfo_t struct {\n\tUptime    int64\n\tLoads     [3]uint64\n\tTotalram  uint64\n\tFreeram   uint64\n\tSharedram uint64\n\tBufferram uint64\n\tTotalswap uint64\n\tFreeswap  uint64\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint64\n\tFreehigh  uint64\n\tUnit      uint32\n\t_         [0]uint8\n\t_         [4]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint64\n\tFname  [6]uint8\n\tFpack  [6]uint8\n\t_      [4]byte\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\t_      int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [16]uint64\n}\n\nconst _C__NSIG = 0x41\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [19]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]uint8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint64\n\nconst (\n\t_NCPUBITS = 0x40\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x1\n\tCBitFieldMaskBit1  = 0x2\n\tCBitFieldMaskBit2  = 0x4\n\tCBitFieldMaskBit3  = 0x8\n\tCBitFieldMaskBit4  = 0x10\n\tCBitFieldMaskBit5  = 0x20\n\tCBitFieldMaskBit6  = 0x40\n\tCBitFieldMaskBit7  = 0x80\n\tCBitFieldMaskBit8  = 0x100\n\tCBitFieldMaskBit9  = 0x200\n\tCBitFieldMaskBit10 = 0x400\n\tCBitFieldMaskBit11 = 0x800\n\tCBitFieldMaskBit12 = 0x1000\n\tCBitFieldMaskBit13 = 0x2000\n\tCBitFieldMaskBit14 = 0x4000\n\tCBitFieldMaskBit15 = 0x8000\n\tCBitFieldMaskBit16 = 0x10000\n\tCBitFieldMaskBit17 = 0x20000\n\tCBitFieldMaskBit18 = 0x40000\n\tCBitFieldMaskBit19 = 0x80000\n\tCBitFieldMaskBit20 = 0x100000\n\tCBitFieldMaskBit21 = 0x200000\n\tCBitFieldMaskBit22 = 0x400000\n\tCBitFieldMaskBit23 = 0x800000\n\tCBitFieldMaskBit24 = 0x1000000\n\tCBitFieldMaskBit25 = 0x2000000\n\tCBitFieldMaskBit26 = 0x4000000\n\tCBitFieldMaskBit27 = 0x8000000\n\tCBitFieldMaskBit28 = 0x10000000\n\tCBitFieldMaskBit29 = 0x20000000\n\tCBitFieldMaskBit30 = 0x40000000\n\tCBitFieldMaskBit31 = 0x80000000\n\tCBitFieldMaskBit32 = 0x100000000\n\tCBitFieldMaskBit33 = 0x200000000\n\tCBitFieldMaskBit34 = 0x400000000\n\tCBitFieldMaskBit35 = 0x800000000\n\tCBitFieldMaskBit36 = 0x1000000000\n\tCBitFieldMaskBit37 = 0x2000000000\n\tCBitFieldMaskBit38 = 0x4000000000\n\tCBitFieldMaskBit39 = 0x8000000000\n\tCBitFieldMaskBit40 = 0x10000000000\n\tCBitFieldMaskBit41 = 0x20000000000\n\tCBitFieldMaskBit42 = 0x40000000000\n\tCBitFieldMaskBit43 = 0x80000000000\n\tCBitFieldMaskBit44 = 0x100000000000\n\tCBitFieldMaskBit45 = 0x200000000000\n\tCBitFieldMaskBit46 = 0x400000000000\n\tCBitFieldMaskBit47 = 0x800000000000\n\tCBitFieldMaskBit48 = 0x1000000000000\n\tCBitFieldMaskBit49 = 0x2000000000000\n\tCBitFieldMaskBit50 = 0x4000000000000\n\tCBitFieldMaskBit51 = 0x8000000000000\n\tCBitFieldMaskBit52 = 0x10000000000000\n\tCBitFieldMaskBit53 = 0x20000000000000\n\tCBitFieldMaskBit54 = 0x40000000000000\n\tCBitFieldMaskBit55 = 0x80000000000000\n\tCBitFieldMaskBit56 = 0x100000000000000\n\tCBitFieldMaskBit57 = 0x200000000000000\n\tCBitFieldMaskBit58 = 0x400000000000000\n\tCBitFieldMaskBit59 = 0x800000000000000\n\tCBitFieldMaskBit60 = 0x1000000000000000\n\tCBitFieldMaskBit61 = 0x2000000000000000\n\tCBitFieldMaskBit62 = 0x4000000000000000\n\tCBitFieldMaskBit63 = 0x8000000000000000\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [118]uint8\n\t_      uint64\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint64\n}\n\ntype Statfs_t struct {\n\tType    int64\n\tBsize   int64\n\tBlocks  uint64\n\tBfree   uint64\n\tBavail  uint64\n\tFiles   uint64\n\tFfree   uint64\n\tFsid    Fsid\n\tNamelen int64\n\tFrsize  int64\n\tFlags   int64\n\tSpare   [4]int64\n}\n\ntype TpacketHdr struct {\n\tStatus  uint64\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n\t_       [4]byte\n}\n\nconst (\n\tSizeofTpacketHdr = 0x20\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int64\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x1269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]uint8\n\tDriver_name [64]uint8\n\tModule_name [64]uint8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]uint8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]uint8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]uint8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]uint8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]uint8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]uint8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]uint8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]uint8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]uint8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]uint8\n\tGeniv       [64]uint8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]uint8\n\tGeniv       [64]uint8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]uint8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]uint8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]uint8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]uint8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]uint8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint32\n\tInode            uint64\n\tRdevice          uint32\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]uint8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n\tReserved         [4]uint8\n\t_                [4]byte\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]uint8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]uint8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]uint8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include -fsigned-char linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build s390x,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x8\n\tSizeofLong = 0x8\n)\n\ntype (\n\t_C_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int64\n\tFreq      int64\n\tMaxerror  int64\n\tEsterror  int64\n\tStatus    int32\n\tConstant  int64\n\tPrecision int64\n\tTolerance int64\n\tTime      Timeval\n\tTick      int64\n\tPpsfreq   int64\n\tJitter    int64\n\tShift     int32\n\tStabil    int64\n\tJitcnt    int64\n\tCalcnt    int64\n\tErrcnt    int64\n\tStbcnt    int64\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tNlink   uint64\n\tMode    uint32\n\tUid     uint32\n\tGid     uint32\n\t_       int32\n\tRdev    uint64\n\tSize    int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBlksize int64\n\tBlocks  int64\n\t_       [3]int64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]int8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      [4]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x6\n\tFADV_NOREUSE  = 0x7\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]int8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint64\n\tControl    *byte\n\tControllen uint64\n\tFlags      int32\n\t_          [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint64\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x10\n\tSizeofMsghdr  = 0x38\n\tSizeofCmsghdr = 0x10\n)\n\nconst (\n\tSizeofSockFprog = 0x10\n)\n\ntype PtraceRegs struct {\n\tPsw                      PtracePsw\n\tGprs                     [16]uint64\n\tAcrs                     [16]uint32\n\tOrig_gpr2                uint64\n\tFp_regs                  PtraceFpregs\n\tPer_info                 PtracePer\n\tIeee_instruction_pointer uint64\n}\n\ntype PtracePsw struct {\n\tMask uint64\n\tAddr uint64\n}\n\ntype PtraceFpregs struct {\n\tFpc  uint32\n\tFprs [16]float64\n}\n\ntype PtracePer struct {\n\t_             [0]uint64\n\t_             [32]byte\n\tStarting_addr uint64\n\tEnding_addr   uint64\n\tPerc_atmid    uint16\n\tAddress       uint64\n\tAccess_id     uint8\n\t_             [7]byte\n}\n\ntype FdSet struct {\n\tBits [16]int64\n}\n\ntype Sysinfo_t struct {\n\tUptime    int64\n\tLoads     [3]uint64\n\tTotalram  uint64\n\tFreeram   uint64\n\tSharedram uint64\n\tBufferram uint64\n\tTotalswap uint64\n\tFreeswap  uint64\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint64\n\tFreehigh  uint64\n\tUnit      uint32\n\t_         [0]int8\n\t_         [4]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint64\n\tFname  [6]int8\n\tFpack  [6]int8\n\t_      [4]byte\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\t_      int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x2000\n)\n\ntype Sigset_t struct {\n\tVal [16]uint64\n}\n\nconst _C__NSIG = 0x41\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [19]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]int8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint64\n\nconst (\n\t_NCPUBITS = 0x40\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x8000000000000000\n\tCBitFieldMaskBit1  = 0x4000000000000000\n\tCBitFieldMaskBit2  = 0x2000000000000000\n\tCBitFieldMaskBit3  = 0x1000000000000000\n\tCBitFieldMaskBit4  = 0x800000000000000\n\tCBitFieldMaskBit5  = 0x400000000000000\n\tCBitFieldMaskBit6  = 0x200000000000000\n\tCBitFieldMaskBit7  = 0x100000000000000\n\tCBitFieldMaskBit8  = 0x80000000000000\n\tCBitFieldMaskBit9  = 0x40000000000000\n\tCBitFieldMaskBit10 = 0x20000000000000\n\tCBitFieldMaskBit11 = 0x10000000000000\n\tCBitFieldMaskBit12 = 0x8000000000000\n\tCBitFieldMaskBit13 = 0x4000000000000\n\tCBitFieldMaskBit14 = 0x2000000000000\n\tCBitFieldMaskBit15 = 0x1000000000000\n\tCBitFieldMaskBit16 = 0x800000000000\n\tCBitFieldMaskBit17 = 0x400000000000\n\tCBitFieldMaskBit18 = 0x200000000000\n\tCBitFieldMaskBit19 = 0x100000000000\n\tCBitFieldMaskBit20 = 0x80000000000\n\tCBitFieldMaskBit21 = 0x40000000000\n\tCBitFieldMaskBit22 = 0x20000000000\n\tCBitFieldMaskBit23 = 0x10000000000\n\tCBitFieldMaskBit24 = 0x8000000000\n\tCBitFieldMaskBit25 = 0x4000000000\n\tCBitFieldMaskBit26 = 0x2000000000\n\tCBitFieldMaskBit27 = 0x1000000000\n\tCBitFieldMaskBit28 = 0x800000000\n\tCBitFieldMaskBit29 = 0x400000000\n\tCBitFieldMaskBit30 = 0x200000000\n\tCBitFieldMaskBit31 = 0x100000000\n\tCBitFieldMaskBit32 = 0x80000000\n\tCBitFieldMaskBit33 = 0x40000000\n\tCBitFieldMaskBit34 = 0x20000000\n\tCBitFieldMaskBit35 = 0x10000000\n\tCBitFieldMaskBit36 = 0x8000000\n\tCBitFieldMaskBit37 = 0x4000000\n\tCBitFieldMaskBit38 = 0x2000000\n\tCBitFieldMaskBit39 = 0x1000000\n\tCBitFieldMaskBit40 = 0x800000\n\tCBitFieldMaskBit41 = 0x400000\n\tCBitFieldMaskBit42 = 0x200000\n\tCBitFieldMaskBit43 = 0x100000\n\tCBitFieldMaskBit44 = 0x80000\n\tCBitFieldMaskBit45 = 0x40000\n\tCBitFieldMaskBit46 = 0x20000\n\tCBitFieldMaskBit47 = 0x10000\n\tCBitFieldMaskBit48 = 0x8000\n\tCBitFieldMaskBit49 = 0x4000\n\tCBitFieldMaskBit50 = 0x2000\n\tCBitFieldMaskBit51 = 0x1000\n\tCBitFieldMaskBit52 = 0x800\n\tCBitFieldMaskBit53 = 0x400\n\tCBitFieldMaskBit54 = 0x200\n\tCBitFieldMaskBit55 = 0x100\n\tCBitFieldMaskBit56 = 0x80\n\tCBitFieldMaskBit57 = 0x40\n\tCBitFieldMaskBit58 = 0x20\n\tCBitFieldMaskBit59 = 0x10\n\tCBitFieldMaskBit60 = 0x8\n\tCBitFieldMaskBit61 = 0x4\n\tCBitFieldMaskBit62 = 0x2\n\tCBitFieldMaskBit63 = 0x1\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [118]int8\n\t_      uint64\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint64\n}\n\ntype Statfs_t struct {\n\tType    uint32\n\tBsize   uint32\n\tBlocks  uint64\n\tBfree   uint64\n\tBavail  uint64\n\tFiles   uint64\n\tFfree   uint64\n\tFsid    Fsid\n\tNamelen uint32\n\tFrsize  uint32\n\tFlags   uint32\n\tSpare   [4]uint32\n\t_       [4]byte\n}\n\ntype TpacketHdr struct {\n\tStatus  uint64\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n\t_       [4]byte\n}\n\nconst (\n\tSizeofTpacketHdr = 0x20\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int64\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x1269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]int8\n\tDriver_name [64]int8\n\tModule_name [64]int8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]int8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]int8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]int8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]int8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]int8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]int8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]int8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]int8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]int8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]int8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint16\n\tInode            uint64\n\tRdevice          uint16\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]int8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n\tReserved         [4]int8\n\t_                [4]byte\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]int8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]int8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]int8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go",
    "content": "// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build sparc64,linux\n\npackage unix\n\nconst (\n\tSizeofPtr  = 0x8\n\tSizeofLong = 0x8\n)\n\ntype (\n\t_C_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int32\n\t_    [4]byte\n}\n\ntype Timex struct {\n\tModes     uint32\n\tOffset    int64\n\tFreq      int64\n\tMaxerror  int64\n\tEsterror  int64\n\tStatus    int32\n\tConstant  int64\n\tPrecision int64\n\tTolerance int64\n\tTime      Timeval\n\tTick      int64\n\tPpsfreq   int64\n\tJitter    int64\n\tShift     int32\n\tStabil    int64\n\tJitcnt    int64\n\tCalcnt    int64\n\tErrcnt    int64\n\tStbcnt    int64\n\tTai       int32\n\t_         [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Stat_t struct {\n\tDev     uint64\n\t_       uint16\n\tIno     uint64\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint64\n\t_       uint16\n\tSize    int64\n\tBlksize int64\n\tBlocks  int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\t_       uint64\n\t_       uint64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tName   [256]int8\n\t_      [5]byte\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\t_      int16\n\t_      [2]byte\n}\n\ntype DmNameList struct {\n\tDev  uint64\n\tNext uint32\n\tName [0]byte\n\t_    [4]byte\n}\n\nconst (\n\tFADV_DONTNEED = 0x4\n\tFADV_NOREUSE  = 0x5\n)\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [96]int8\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint64\n\tControl    *byte\n\tControllen uint64\n\tFlags      int32\n\t_          [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint64\n\tLevel int32\n\tType  int32\n}\n\nconst (\n\tSizeofIovec   = 0x10\n\tSizeofMsghdr  = 0x38\n\tSizeofCmsghdr = 0x10\n)\n\nconst (\n\tSizeofSockFprog = 0x10\n)\n\ntype PtraceRegs struct {\n\tRegs   [16]uint64\n\tTstate uint64\n\tTpc    uint64\n\tTnpc   uint64\n\tY      uint32\n\tMagic  uint32\n}\n\ntype FdSet struct {\n\tBits [16]int64\n}\n\ntype Sysinfo_t struct {\n\tUptime    int64\n\tLoads     [3]uint64\n\tTotalram  uint64\n\tFreeram   uint64\n\tSharedram uint64\n\tBufferram uint64\n\tTotalswap uint64\n\tFreeswap  uint64\n\tProcs     uint16\n\tPad       uint16\n\tTotalhigh uint64\n\tFreehigh  uint64\n\tUnit      uint32\n\t_         [0]int8\n\t_         [4]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int32\n\tTinode uint64\n\tFname  [6]int8\n\tFpack  [6]int8\n\t_      [4]byte\n}\n\ntype EpollEvent struct {\n\tEvents uint32\n\t_      int32\n\tFd     int32\n\tPad    int32\n}\n\nconst (\n\tPOLLRDHUP = 0x800\n)\n\ntype Sigset_t struct {\n\tVal [16]uint64\n}\n\nconst _C__NSIG = 0x41\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tLine   uint8\n\tCc     [19]uint8\n\tIspeed uint32\n\tOspeed uint32\n}\n\ntype Taskstats struct {\n\tVersion                   uint16\n\tAc_exitcode               uint32\n\tAc_flag                   uint8\n\tAc_nice                   uint8\n\tCpu_count                 uint64\n\tCpu_delay_total           uint64\n\tBlkio_count               uint64\n\tBlkio_delay_total         uint64\n\tSwapin_count              uint64\n\tSwapin_delay_total        uint64\n\tCpu_run_real_total        uint64\n\tCpu_run_virtual_total     uint64\n\tAc_comm                   [32]int8\n\tAc_sched                  uint8\n\tAc_pad                    [3]uint8\n\t_                         [4]byte\n\tAc_uid                    uint32\n\tAc_gid                    uint32\n\tAc_pid                    uint32\n\tAc_ppid                   uint32\n\tAc_btime                  uint32\n\tAc_etime                  uint64\n\tAc_utime                  uint64\n\tAc_stime                  uint64\n\tAc_minflt                 uint64\n\tAc_majflt                 uint64\n\tCoremem                   uint64\n\tVirtmem                   uint64\n\tHiwater_rss               uint64\n\tHiwater_vm                uint64\n\tRead_char                 uint64\n\tWrite_char                uint64\n\tRead_syscalls             uint64\n\tWrite_syscalls            uint64\n\tRead_bytes                uint64\n\tWrite_bytes               uint64\n\tCancelled_write_bytes     uint64\n\tNvcsw                     uint64\n\tNivcsw                    uint64\n\tAc_utimescaled            uint64\n\tAc_stimescaled            uint64\n\tCpu_scaled_run_real_total uint64\n\tFreepages_count           uint64\n\tFreepages_delay_total     uint64\n\tThrashing_count           uint64\n\tThrashing_delay_total     uint64\n\tAc_btime64                uint64\n}\n\ntype cpuMask uint64\n\nconst (\n\t_NCPUBITS = 0x40\n)\n\nconst (\n\tCBitFieldMaskBit0  = 0x8000000000000000\n\tCBitFieldMaskBit1  = 0x4000000000000000\n\tCBitFieldMaskBit2  = 0x2000000000000000\n\tCBitFieldMaskBit3  = 0x1000000000000000\n\tCBitFieldMaskBit4  = 0x800000000000000\n\tCBitFieldMaskBit5  = 0x400000000000000\n\tCBitFieldMaskBit6  = 0x200000000000000\n\tCBitFieldMaskBit7  = 0x100000000000000\n\tCBitFieldMaskBit8  = 0x80000000000000\n\tCBitFieldMaskBit9  = 0x40000000000000\n\tCBitFieldMaskBit10 = 0x20000000000000\n\tCBitFieldMaskBit11 = 0x10000000000000\n\tCBitFieldMaskBit12 = 0x8000000000000\n\tCBitFieldMaskBit13 = 0x4000000000000\n\tCBitFieldMaskBit14 = 0x2000000000000\n\tCBitFieldMaskBit15 = 0x1000000000000\n\tCBitFieldMaskBit16 = 0x800000000000\n\tCBitFieldMaskBit17 = 0x400000000000\n\tCBitFieldMaskBit18 = 0x200000000000\n\tCBitFieldMaskBit19 = 0x100000000000\n\tCBitFieldMaskBit20 = 0x80000000000\n\tCBitFieldMaskBit21 = 0x40000000000\n\tCBitFieldMaskBit22 = 0x20000000000\n\tCBitFieldMaskBit23 = 0x10000000000\n\tCBitFieldMaskBit24 = 0x8000000000\n\tCBitFieldMaskBit25 = 0x4000000000\n\tCBitFieldMaskBit26 = 0x2000000000\n\tCBitFieldMaskBit27 = 0x1000000000\n\tCBitFieldMaskBit28 = 0x800000000\n\tCBitFieldMaskBit29 = 0x400000000\n\tCBitFieldMaskBit30 = 0x200000000\n\tCBitFieldMaskBit31 = 0x100000000\n\tCBitFieldMaskBit32 = 0x80000000\n\tCBitFieldMaskBit33 = 0x40000000\n\tCBitFieldMaskBit34 = 0x20000000\n\tCBitFieldMaskBit35 = 0x10000000\n\tCBitFieldMaskBit36 = 0x8000000\n\tCBitFieldMaskBit37 = 0x4000000\n\tCBitFieldMaskBit38 = 0x2000000\n\tCBitFieldMaskBit39 = 0x1000000\n\tCBitFieldMaskBit40 = 0x800000\n\tCBitFieldMaskBit41 = 0x400000\n\tCBitFieldMaskBit42 = 0x200000\n\tCBitFieldMaskBit43 = 0x100000\n\tCBitFieldMaskBit44 = 0x80000\n\tCBitFieldMaskBit45 = 0x40000\n\tCBitFieldMaskBit46 = 0x20000\n\tCBitFieldMaskBit47 = 0x10000\n\tCBitFieldMaskBit48 = 0x8000\n\tCBitFieldMaskBit49 = 0x4000\n\tCBitFieldMaskBit50 = 0x2000\n\tCBitFieldMaskBit51 = 0x1000\n\tCBitFieldMaskBit52 = 0x800\n\tCBitFieldMaskBit53 = 0x400\n\tCBitFieldMaskBit54 = 0x200\n\tCBitFieldMaskBit55 = 0x100\n\tCBitFieldMaskBit56 = 0x80\n\tCBitFieldMaskBit57 = 0x40\n\tCBitFieldMaskBit58 = 0x20\n\tCBitFieldMaskBit59 = 0x10\n\tCBitFieldMaskBit60 = 0x8\n\tCBitFieldMaskBit61 = 0x4\n\tCBitFieldMaskBit62 = 0x2\n\tCBitFieldMaskBit63 = 0x1\n)\n\ntype SockaddrStorage struct {\n\tFamily uint16\n\t_      [118]int8\n\t_      uint64\n}\n\ntype HDGeometry struct {\n\tHeads     uint8\n\tSectors   uint8\n\tCylinders uint16\n\tStart     uint64\n}\n\ntype Statfs_t struct {\n\tType    int64\n\tBsize   int64\n\tBlocks  uint64\n\tBfree   uint64\n\tBavail  uint64\n\tFiles   uint64\n\tFfree   uint64\n\tFsid    Fsid\n\tNamelen int64\n\tFrsize  int64\n\tFlags   int64\n\tSpare   [4]int64\n}\n\ntype TpacketHdr struct {\n\tStatus  uint64\n\tLen     uint32\n\tSnaplen uint32\n\tMac     uint16\n\tNet     uint16\n\tSec     uint32\n\tUsec    uint32\n\t_       [4]byte\n}\n\nconst (\n\tSizeofTpacketHdr = 0x20\n)\n\ntype RTCPLLInfo struct {\n\tCtrl    int32\n\tValue   int32\n\tMax     int32\n\tMin     int32\n\tPosmult int32\n\tNegmult int32\n\tClock   int64\n}\n\ntype BlkpgPartition struct {\n\tStart   int64\n\tLength  int64\n\tPno     int32\n\tDevname [64]uint8\n\tVolname [64]uint8\n\t_       [4]byte\n}\n\nconst (\n\tBLKPG = 0x20001269\n)\n\ntype XDPUmemReg struct {\n\tAddr     uint64\n\tLen      uint64\n\tSize     uint32\n\tHeadroom uint32\n\tFlags    uint32\n\t_        [4]byte\n}\n\ntype CryptoUserAlg struct {\n\tName        [64]int8\n\tDriver_name [64]int8\n\tModule_name [64]int8\n\tType        uint32\n\tMask        uint32\n\tRefcnt      uint32\n\tFlags       uint32\n}\n\ntype CryptoStatAEAD struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatAKCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tVerify_cnt   uint64\n\tSign_cnt     uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCipher struct {\n\tType         [64]int8\n\tEncrypt_cnt  uint64\n\tEncrypt_tlen uint64\n\tDecrypt_cnt  uint64\n\tDecrypt_tlen uint64\n\tErr_cnt      uint64\n}\n\ntype CryptoStatCompress struct {\n\tType            [64]int8\n\tCompress_cnt    uint64\n\tCompress_tlen   uint64\n\tDecompress_cnt  uint64\n\tDecompress_tlen uint64\n\tErr_cnt         uint64\n}\n\ntype CryptoStatHash struct {\n\tType      [64]int8\n\tHash_cnt  uint64\n\tHash_tlen uint64\n\tErr_cnt   uint64\n}\n\ntype CryptoStatKPP struct {\n\tType                      [64]int8\n\tSetsecret_cnt             uint64\n\tGenerate_public_key_cnt   uint64\n\tCompute_shared_secret_cnt uint64\n\tErr_cnt                   uint64\n}\n\ntype CryptoStatRNG struct {\n\tType          [64]int8\n\tGenerate_cnt  uint64\n\tGenerate_tlen uint64\n\tSeed_cnt      uint64\n\tErr_cnt       uint64\n}\n\ntype CryptoStatLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportLarval struct {\n\tType [64]int8\n}\n\ntype CryptoReportHash struct {\n\tType       [64]int8\n\tBlocksize  uint32\n\tDigestsize uint32\n}\n\ntype CryptoReportCipher struct {\n\tType        [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n}\n\ntype CryptoReportBlkCipher struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMin_keysize uint32\n\tMax_keysize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportAEAD struct {\n\tType        [64]int8\n\tGeniv       [64]int8\n\tBlocksize   uint32\n\tMaxauthsize uint32\n\tIvsize      uint32\n}\n\ntype CryptoReportComp struct {\n\tType [64]int8\n}\n\ntype CryptoReportRNG struct {\n\tType     [64]int8\n\tSeedsize uint32\n}\n\ntype CryptoReportAKCipher struct {\n\tType [64]int8\n}\n\ntype CryptoReportKPP struct {\n\tType [64]int8\n}\n\ntype CryptoReportAcomp struct {\n\tType [64]int8\n}\n\ntype LoopInfo struct {\n\tNumber           int32\n\tDevice           uint32\n\tInode            uint64\n\tRdevice          uint32\n\tOffset           int32\n\tEncrypt_type     int32\n\tEncrypt_key_size int32\n\tFlags            int32\n\tName             [64]int8\n\tEncrypt_key      [32]uint8\n\tInit             [2]uint64\n\tReserved         [4]int8\n\t_                [4]byte\n}\n\ntype TIPCSubscr struct {\n\tSeq     TIPCServiceRange\n\tTimeout uint32\n\tFilter  uint32\n\tHandle  [8]int8\n}\n\ntype TIPCSIOCLNReq struct {\n\tPeer     uint32\n\tId       uint32\n\tLinkname [68]int8\n}\n\ntype TIPCSIOCNodeIDReq struct {\n\tPeer uint32\n\tId   [16]int8\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go",
    "content": "// cgo -godefs types_netbsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,netbsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x4\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x4\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev     uint64\n\tMode    uint32\n\tIno     uint64\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize uint32\n\tFlags   uint32\n\tGen     uint32\n\tSpare   [2]uint32\n}\n\ntype Statfs_t [0]byte\n\ntype Statvfs_t struct {\n\tFlag        uint32\n\tBsize       uint32\n\tFrsize      uint32\n\tIosize      uint32\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      uint64\n\tBresvd      uint64\n\tFiles       uint64\n\tFfree       uint64\n\tFavail      uint64\n\tFresvd      uint64\n\tSyncreads   uint64\n\tSyncwrites  uint64\n\tAsyncreads  uint64\n\tAsyncwrites uint64\n\tFsidx       Fsid\n\tFsid        uint32\n\tNamemax     uint32\n\tOwner       uint32\n\tSpare       [4]uint32\n\tFstypename  [32]byte\n\tMntonname   [1024]byte\n\tMntfromname [1024]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno    uint64\n\tReclen    uint16\n\tNamlen    uint16\n\tType      uint8\n\tName      [512]int8\n\tPad_cgo_0 [3]byte\n}\n\ntype Fsid struct {\n\tX__fsid_val [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\nconst (\n\tST_WAIT   = 0x1\n\tST_NOWAIT = 0x2\n)\n\nconst (\n\tFADV_NORMAL     = 0x0\n\tFADV_RANDOM     = 0x1\n\tFADV_SEQUENTIAL = 0x2\n\tFADV_WILLNEED   = 0x3\n\tFADV_DONTNEED   = 0x4\n\tFADV_NOREUSE    = 0x5\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x14\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x1c\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint32\n\tFilter uint32\n\tFlags  uint32\n\tFflags uint32\n\tData   int64\n\tUdata  int32\n}\n\ntype FdSet struct {\n\tBits [8]uint32\n}\n\nconst (\n\tSizeofIfMsghdr         = 0x98\n\tSizeofIfData           = 0x84\n\tSizeofIfaMsghdr        = 0x18\n\tSizeofIfAnnounceMsghdr = 0x18\n\tSizeofRtMsghdr         = 0x78\n\tSizeofRtMetrics        = 0x50\n)\n\ntype IfMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tAddrs     int32\n\tFlags     int32\n\tIndex     uint16\n\tPad_cgo_0 [2]byte\n\tData      IfData\n\tPad_cgo_1 [4]byte\n}\n\ntype IfData struct {\n\tType       uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tPad_cgo_0  [1]byte\n\tLink_state int32\n\tMtu        uint64\n\tMetric     uint64\n\tBaudrate   uint64\n\tIpackets   uint64\n\tIerrors    uint64\n\tOpackets   uint64\n\tOerrors    uint64\n\tCollisions uint64\n\tIbytes     uint64\n\tObytes     uint64\n\tImcasts    uint64\n\tOmcasts    uint64\n\tIqdrops    uint64\n\tNoproto    uint64\n\tLastchange Timespec\n}\n\ntype IfaMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tAddrs     int32\n\tFlags     int32\n\tMetric    int32\n\tIndex     uint16\n\tPad_cgo_0 [6]byte\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\tName    [16]int8\n\tWhat    uint16\n}\n\ntype RtMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tIndex     uint16\n\tPad_cgo_0 [2]byte\n\tFlags     int32\n\tAddrs     int32\n\tPid       int32\n\tSeq       int32\n\tErrno     int32\n\tUse       int32\n\tInits     int32\n\tPad_cgo_1 [4]byte\n\tRmx       RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint64\n\tMtu      uint64\n\tHopcount uint64\n\tRecvpipe uint64\n\tSendpipe uint64\n\tSsthresh uint64\n\tRtt      uint64\n\tRttvar   uint64\n\tExpire   int64\n\tPksent   int64\n}\n\ntype Mclpool [0]byte\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x80\n\tSizeofBpfProgram = 0x8\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv    uint64\n\tDrop    uint64\n\tCapt    uint64\n\tPadding [13]uint64\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp    BpfTimeval\n\tCaplen    uint32\n\tDatalen   uint32\n\tHdrlen    uint16\n\tPad_cgo_0 [2]byte\n}\n\ntype BpfTimeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed int32\n\tOspeed int32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\ntype Ptmget struct {\n\tCfd int32\n\tSfd int32\n\tCn  [1024]byte\n\tSn  [1024]byte\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_SYMLINK_FOLLOW   = 0x400\n\tAT_SYMLINK_NOFOLLOW = 0x200\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Sysctlnode struct {\n\tFlags           uint32\n\tNum             int32\n\tName            [32]int8\n\tVer             uint32\n\tX__rsvd         uint32\n\tUn              [16]byte\n\tX_sysctl_size   [8]byte\n\tX_sysctl_func   [8]byte\n\tX_sysctl_parent [8]byte\n\tX_sysctl_desc   [8]byte\n}\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go",
    "content": "// cgo -godefs types_netbsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,netbsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec       int64\n\tUsec      int32\n\tPad_cgo_0 [4]byte\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev     uint64\n\tMode    uint32\n\t_       [4]byte\n\tIno     uint64\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\t_       [4]byte\n\tRdev    uint64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize uint32\n\tFlags   uint32\n\tGen     uint32\n\tSpare   [2]uint32\n\t_       [4]byte\n}\n\ntype Statfs_t [0]byte\n\ntype Statvfs_t struct {\n\tFlag        uint64\n\tBsize       uint64\n\tFrsize      uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      uint64\n\tBresvd      uint64\n\tFiles       uint64\n\tFfree       uint64\n\tFavail      uint64\n\tFresvd      uint64\n\tSyncreads   uint64\n\tSyncwrites  uint64\n\tAsyncreads  uint64\n\tAsyncwrites uint64\n\tFsidx       Fsid\n\tFsid        uint64\n\tNamemax     uint64\n\tOwner       uint32\n\tSpare       [4]uint32\n\tFstypename  [32]byte\n\tMntonname   [1024]byte\n\tMntfromname [1024]byte\n\t_           [4]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno    uint64\n\tReclen    uint16\n\tNamlen    uint16\n\tType      uint8\n\tName      [512]int8\n\tPad_cgo_0 [3]byte\n}\n\ntype Fsid struct {\n\tX__fsid_val [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\nconst (\n\tST_WAIT   = 0x1\n\tST_NOWAIT = 0x2\n)\n\nconst (\n\tFADV_NORMAL     = 0x0\n\tFADV_RANDOM     = 0x1\n\tFADV_SEQUENTIAL = 0x2\n\tFADV_WILLNEED   = 0x3\n\tFADV_DONTNEED   = 0x4\n\tFADV_NOREUSE    = 0x5\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tPad_cgo_0  [4]byte\n\tIov        *Iovec\n\tIovlen     int32\n\tPad_cgo_1  [4]byte\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x14\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent     uint64\n\tFilter    uint32\n\tFlags     uint32\n\tFflags    uint32\n\tPad_cgo_0 [4]byte\n\tData      int64\n\tUdata     int64\n}\n\ntype FdSet struct {\n\tBits [8]uint32\n}\n\nconst (\n\tSizeofIfMsghdr         = 0x98\n\tSizeofIfData           = 0x88\n\tSizeofIfaMsghdr        = 0x18\n\tSizeofIfAnnounceMsghdr = 0x18\n\tSizeofRtMsghdr         = 0x78\n\tSizeofRtMetrics        = 0x50\n)\n\ntype IfMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tAddrs     int32\n\tFlags     int32\n\tIndex     uint16\n\tPad_cgo_0 [2]byte\n\tData      IfData\n}\n\ntype IfData struct {\n\tType       uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tPad_cgo_0  [1]byte\n\tLink_state int32\n\tMtu        uint64\n\tMetric     uint64\n\tBaudrate   uint64\n\tIpackets   uint64\n\tIerrors    uint64\n\tOpackets   uint64\n\tOerrors    uint64\n\tCollisions uint64\n\tIbytes     uint64\n\tObytes     uint64\n\tImcasts    uint64\n\tOmcasts    uint64\n\tIqdrops    uint64\n\tNoproto    uint64\n\tLastchange Timespec\n}\n\ntype IfaMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tAddrs     int32\n\tFlags     int32\n\tMetric    int32\n\tIndex     uint16\n\tPad_cgo_0 [6]byte\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\tName    [16]int8\n\tWhat    uint16\n}\n\ntype RtMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tIndex     uint16\n\tPad_cgo_0 [2]byte\n\tFlags     int32\n\tAddrs     int32\n\tPid       int32\n\tSeq       int32\n\tErrno     int32\n\tUse       int32\n\tInits     int32\n\tPad_cgo_1 [4]byte\n\tRmx       RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint64\n\tMtu      uint64\n\tHopcount uint64\n\tRecvpipe uint64\n\tSendpipe uint64\n\tSsthresh uint64\n\tRtt      uint64\n\tRttvar   uint64\n\tExpire   int64\n\tPksent   int64\n}\n\ntype Mclpool [0]byte\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x80\n\tSizeofBpfProgram = 0x10\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x20\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv    uint64\n\tDrop    uint64\n\tCapt    uint64\n\tPadding [13]uint64\n}\n\ntype BpfProgram struct {\n\tLen       uint32\n\tPad_cgo_0 [4]byte\n\tInsns     *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp    BpfTimeval\n\tCaplen    uint32\n\tDatalen   uint32\n\tHdrlen    uint16\n\tPad_cgo_0 [6]byte\n}\n\ntype BpfTimeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed int32\n\tOspeed int32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\ntype Ptmget struct {\n\tCfd int32\n\tSfd int32\n\tCn  [1024]byte\n\tSn  [1024]byte\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_SYMLINK_FOLLOW   = 0x400\n\tAT_SYMLINK_NOFOLLOW = 0x200\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Sysctlnode struct {\n\tFlags           uint32\n\tNum             int32\n\tName            [32]int8\n\tVer             uint32\n\tX__rsvd         uint32\n\tUn              [16]byte\n\tX_sysctl_size   [8]byte\n\tX_sysctl_func   [8]byte\n\tX_sysctl_parent [8]byte\n\tX_sysctl_desc   [8]byte\n}\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go",
    "content": "// cgo -godefs types_netbsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,netbsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x4\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x4\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec       int64\n\tNsec      int32\n\tPad_cgo_0 [4]byte\n}\n\ntype Timeval struct {\n\tSec       int64\n\tUsec      int32\n\tPad_cgo_0 [4]byte\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev     uint64\n\tMode    uint32\n\t_       [4]byte\n\tIno     uint64\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\t_       [4]byte\n\tRdev    uint64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize uint32\n\tFlags   uint32\n\tGen     uint32\n\tSpare   [2]uint32\n\t_       [4]byte\n}\n\ntype Statfs_t [0]byte\n\ntype Statvfs_t struct {\n\tFlag        uint32\n\tBsize       uint32\n\tFrsize      uint32\n\tIosize      uint32\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      uint64\n\tBresvd      uint64\n\tFiles       uint64\n\tFfree       uint64\n\tFavail      uint64\n\tFresvd      uint64\n\tSyncreads   uint64\n\tSyncwrites  uint64\n\tAsyncreads  uint64\n\tAsyncwrites uint64\n\tFsidx       Fsid\n\tFsid        uint32\n\tNamemax     uint32\n\tOwner       uint32\n\tSpare       [4]uint32\n\tFstypename  [32]byte\n\tMntonname   [1024]byte\n\tMntfromname [1024]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno    uint64\n\tReclen    uint16\n\tNamlen    uint16\n\tType      uint8\n\tName      [512]int8\n\tPad_cgo_0 [3]byte\n}\n\ntype Fsid struct {\n\tX__fsid_val [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\nconst (\n\tST_WAIT   = 0x1\n\tST_NOWAIT = 0x2\n)\n\nconst (\n\tFADV_NORMAL     = 0x0\n\tFADV_RANDOM     = 0x1\n\tFADV_SEQUENTIAL = 0x2\n\tFADV_WILLNEED   = 0x3\n\tFADV_DONTNEED   = 0x4\n\tFADV_NOREUSE    = 0x5\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     int32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x14\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x1c\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent     uint32\n\tFilter    uint32\n\tFlags     uint32\n\tFflags    uint32\n\tData      int64\n\tUdata     int32\n\tPad_cgo_0 [4]byte\n}\n\ntype FdSet struct {\n\tBits [8]uint32\n}\n\nconst (\n\tSizeofIfMsghdr         = 0x98\n\tSizeofIfData           = 0x88\n\tSizeofIfaMsghdr        = 0x18\n\tSizeofIfAnnounceMsghdr = 0x18\n\tSizeofRtMsghdr         = 0x78\n\tSizeofRtMetrics        = 0x50\n)\n\ntype IfMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tAddrs     int32\n\tFlags     int32\n\tIndex     uint16\n\tPad_cgo_0 [2]byte\n\tData      IfData\n}\n\ntype IfData struct {\n\tType       uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tPad_cgo_0  [1]byte\n\tLink_state int32\n\tMtu        uint64\n\tMetric     uint64\n\tBaudrate   uint64\n\tIpackets   uint64\n\tIerrors    uint64\n\tOpackets   uint64\n\tOerrors    uint64\n\tCollisions uint64\n\tIbytes     uint64\n\tObytes     uint64\n\tImcasts    uint64\n\tOmcasts    uint64\n\tIqdrops    uint64\n\tNoproto    uint64\n\tLastchange Timespec\n}\n\ntype IfaMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tAddrs     int32\n\tFlags     int32\n\tMetric    int32\n\tIndex     uint16\n\tPad_cgo_0 [6]byte\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\tName    [16]int8\n\tWhat    uint16\n}\n\ntype RtMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tIndex     uint16\n\tPad_cgo_0 [2]byte\n\tFlags     int32\n\tAddrs     int32\n\tPid       int32\n\tSeq       int32\n\tErrno     int32\n\tUse       int32\n\tInits     int32\n\tPad_cgo_1 [4]byte\n\tRmx       RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint64\n\tMtu      uint64\n\tHopcount uint64\n\tRecvpipe uint64\n\tSendpipe uint64\n\tSsthresh uint64\n\tRtt      uint64\n\tRttvar   uint64\n\tExpire   int64\n\tPksent   int64\n}\n\ntype Mclpool [0]byte\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x80\n\tSizeofBpfProgram = 0x8\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv    uint64\n\tDrop    uint64\n\tCapt    uint64\n\tPadding [13]uint64\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp    BpfTimeval\n\tCaplen    uint32\n\tDatalen   uint32\n\tHdrlen    uint16\n\tPad_cgo_0 [2]byte\n}\n\ntype BpfTimeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed int32\n\tOspeed int32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\ntype Ptmget struct {\n\tCfd int32\n\tSfd int32\n\tCn  [1024]byte\n\tSn  [1024]byte\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_SYMLINK_FOLLOW   = 0x400\n\tAT_SYMLINK_NOFOLLOW = 0x200\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Sysctlnode struct {\n\tFlags           uint32\n\tNum             int32\n\tName            [32]int8\n\tVer             uint32\n\tX__rsvd         uint32\n\tUn              [16]byte\n\tX_sysctl_size   [8]byte\n\tX_sysctl_func   [8]byte\n\tX_sysctl_parent [8]byte\n\tX_sysctl_desc   [8]byte\n}\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go",
    "content": "// cgo -godefs types_netbsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,netbsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec       int64\n\tUsec      int32\n\tPad_cgo_0 [4]byte\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev     uint64\n\tMode    uint32\n\t_       [4]byte\n\tIno     uint64\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\t_       [4]byte\n\tRdev    uint64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize uint32\n\tFlags   uint32\n\tGen     uint32\n\tSpare   [2]uint32\n\t_       [4]byte\n}\n\ntype Statfs_t [0]byte\n\ntype Statvfs_t struct {\n\tFlag        uint64\n\tBsize       uint64\n\tFrsize      uint64\n\tIosize      uint64\n\tBlocks      uint64\n\tBfree       uint64\n\tBavail      uint64\n\tBresvd      uint64\n\tFiles       uint64\n\tFfree       uint64\n\tFavail      uint64\n\tFresvd      uint64\n\tSyncreads   uint64\n\tSyncwrites  uint64\n\tAsyncreads  uint64\n\tAsyncwrites uint64\n\tFsidx       Fsid\n\tFsid        uint64\n\tNamemax     uint64\n\tOwner       uint32\n\tSpare       [4]uint32\n\tFstypename  [32]byte\n\tMntonname   [1024]byte\n\tMntfromname [1024]byte\n\t_           [4]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno    uint64\n\tReclen    uint16\n\tNamlen    uint16\n\tType      uint8\n\tName      [512]int8\n\tPad_cgo_0 [3]byte\n}\n\ntype Fsid struct {\n\tX__fsid_val [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\nconst (\n\tST_WAIT   = 0x1\n\tST_NOWAIT = 0x2\n)\n\nconst (\n\tFADV_NORMAL     = 0x0\n\tFADV_RANDOM     = 0x1\n\tFADV_SEQUENTIAL = 0x2\n\tFADV_WILLNEED   = 0x3\n\tFADV_DONTNEED   = 0x4\n\tFADV_NOREUSE    = 0x5\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [12]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tPad_cgo_0  [4]byte\n\tIov        *Iovec\n\tIovlen     int32\n\tPad_cgo_1  [4]byte\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x14\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent     uint64\n\tFilter    uint32\n\tFlags     uint32\n\tFflags    uint32\n\tPad_cgo_0 [4]byte\n\tData      int64\n\tUdata     int64\n}\n\ntype FdSet struct {\n\tBits [8]uint32\n}\n\nconst (\n\tSizeofIfMsghdr         = 0x98\n\tSizeofIfData           = 0x88\n\tSizeofIfaMsghdr        = 0x18\n\tSizeofIfAnnounceMsghdr = 0x18\n\tSizeofRtMsghdr         = 0x78\n\tSizeofRtMetrics        = 0x50\n)\n\ntype IfMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tAddrs     int32\n\tFlags     int32\n\tIndex     uint16\n\tPad_cgo_0 [2]byte\n\tData      IfData\n}\n\ntype IfData struct {\n\tType       uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\tPad_cgo_0  [1]byte\n\tLink_state int32\n\tMtu        uint64\n\tMetric     uint64\n\tBaudrate   uint64\n\tIpackets   uint64\n\tIerrors    uint64\n\tOpackets   uint64\n\tOerrors    uint64\n\tCollisions uint64\n\tIbytes     uint64\n\tObytes     uint64\n\tImcasts    uint64\n\tOmcasts    uint64\n\tIqdrops    uint64\n\tNoproto    uint64\n\tLastchange Timespec\n}\n\ntype IfaMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tAddrs     int32\n\tFlags     int32\n\tMetric    int32\n\tIndex     uint16\n\tPad_cgo_0 [6]byte\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\tName    [16]int8\n\tWhat    uint16\n}\n\ntype RtMsghdr struct {\n\tMsglen    uint16\n\tVersion   uint8\n\tType      uint8\n\tIndex     uint16\n\tPad_cgo_0 [2]byte\n\tFlags     int32\n\tAddrs     int32\n\tPid       int32\n\tSeq       int32\n\tErrno     int32\n\tUse       int32\n\tInits     int32\n\tPad_cgo_1 [4]byte\n\tRmx       RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint64\n\tMtu      uint64\n\tHopcount uint64\n\tRecvpipe uint64\n\tSendpipe uint64\n\tSsthresh uint64\n\tRtt      uint64\n\tRttvar   uint64\n\tExpire   int64\n\tPksent   int64\n}\n\ntype Mclpool [0]byte\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x80\n\tSizeofBpfProgram = 0x10\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x20\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv    uint64\n\tDrop    uint64\n\tCapt    uint64\n\tPadding [13]uint64\n}\n\ntype BpfProgram struct {\n\tLen       uint32\n\tPad_cgo_0 [4]byte\n\tInsns     *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp    BpfTimeval\n\tCaplen    uint32\n\tDatalen   uint32\n\tHdrlen    uint16\n\tPad_cgo_0 [6]byte\n}\n\ntype BpfTimeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed int32\n\tOspeed int32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\ntype Ptmget struct {\n\tCfd int32\n\tSfd int32\n\tCn  [1024]byte\n\tSn  [1024]byte\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_SYMLINK_FOLLOW   = 0x400\n\tAT_SYMLINK_NOFOLLOW = 0x200\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Sysctlnode struct {\n\tFlags           uint32\n\tNum             int32\n\tName            [32]int8\n\tVer             uint32\n\tX__rsvd         uint32\n\tUn              [16]byte\n\tX_sysctl_size   [8]byte\n\tX_sysctl_func   [8]byte\n\tX_sysctl_parent [8]byte\n\tX_sysctl_desc   [8]byte\n}\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go",
    "content": "// cgo -godefs types_openbsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,openbsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x4\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x4\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int32\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tMode           uint32\n\tDev            int32\n\tIno            uint64\n\tNlink          uint32\n\tUid            uint32\n\tGid            uint32\n\tRdev           int32\n\tAtim           Timespec\n\tMtim           Timespec\n\tCtim           Timespec\n\tSize           int64\n\tBlocks         int64\n\tBlksize        uint32\n\tFlags          uint32\n\tGen            uint32\n\tX__st_birthtim Timespec\n}\n\ntype Statfs_t struct {\n\tF_flags       uint32\n\tF_bsize       uint32\n\tF_iosize      uint32\n\tF_blocks      uint64\n\tF_bfree       uint64\n\tF_bavail      int64\n\tF_files       uint64\n\tF_ffree       uint64\n\tF_favail      int64\n\tF_syncwrites  uint64\n\tF_syncreads   uint64\n\tF_asyncwrites uint64\n\tF_asyncreads  uint64\n\tF_fsid        Fsid\n\tF_namemax     uint32\n\tF_owner       uint32\n\tF_ctime       uint64\n\tF_fstypename  [16]int8\n\tF_mntonname   [90]int8\n\tF_mntfromname [90]int8\n\tF_mntfromspec [90]int8\n\tPad_cgo_0     [2]byte\n\tMount_info    [160]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno       uint64\n\tOff          int64\n\tReclen       uint16\n\tType         uint8\n\tNamlen       uint8\n\tX__d_padding [4]uint8\n\tName         [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [24]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x20\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x1c\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint32\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int64\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]uint32\n}\n\nconst (\n\tSizeofIfMsghdr         = 0xec\n\tSizeofIfData           = 0xd4\n\tSizeofIfaMsghdr        = 0x18\n\tSizeofIfAnnounceMsghdr = 0x1a\n\tSizeofRtMsghdr         = 0x60\n\tSizeofRtMetrics        = 0x38\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tXflags  int32\n\tData    IfData\n}\n\ntype IfData struct {\n\tType         uint8\n\tAddrlen      uint8\n\tHdrlen       uint8\n\tLink_state   uint8\n\tMtu          uint32\n\tMetric       uint32\n\tPad          uint32\n\tBaudrate     uint64\n\tIpackets     uint64\n\tIerrors      uint64\n\tOpackets     uint64\n\tOerrors      uint64\n\tCollisions   uint64\n\tIbytes       uint64\n\tObytes       uint64\n\tImcasts      uint64\n\tOmcasts      uint64\n\tIqdrops      uint64\n\tNoproto      uint64\n\tCapabilities uint32\n\tLastchange   Timeval\n\tMclpool      [7]Mclpool\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tMetric  int32\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tWhat    uint16\n\tName    [16]int8\n}\n\ntype RtMsghdr struct {\n\tMsglen   uint16\n\tVersion  uint8\n\tType     uint8\n\tHdrlen   uint16\n\tIndex    uint16\n\tTableid  uint16\n\tPriority uint8\n\tMpls     uint8\n\tAddrs    int32\n\tFlags    int32\n\tFmask    int32\n\tPid      int32\n\tSeq      int32\n\tErrno    int32\n\tInits    uint32\n\tRmx      RtMetrics\n}\n\ntype RtMetrics struct {\n\tPksent   uint64\n\tExpire   int64\n\tLocks    uint32\n\tMtu      uint32\n\tRefcnt   uint32\n\tHopcount uint32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPad      uint32\n}\n\ntype Mclpool struct {\n\tGrown int32\n\tAlive uint16\n\tHwm   uint16\n\tCwm   uint16\n\tLwm   uint16\n}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x8\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp    BpfTimeval\n\tCaplen    uint32\n\tDatalen   uint32\n\tHdrlen    uint16\n\tPad_cgo_0 [2]byte\n}\n\ntype BpfTimeval struct {\n\tSec  uint32\n\tUsec uint32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed int32\n\tOspeed int32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_SYMLINK_FOLLOW   = 0x4\n\tAT_SYMLINK_NOFOLLOW = 0x2\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Sigset_t uint32\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofUvmexp = 0x158\n\ntype Uvmexp struct {\n\tPagesize           int32\n\tPagemask           int32\n\tPageshift          int32\n\tNpages             int32\n\tFree               int32\n\tActive             int32\n\tInactive           int32\n\tPaging             int32\n\tWired              int32\n\tZeropages          int32\n\tReserve_pagedaemon int32\n\tReserve_kernel     int32\n\tAnonpages          int32\n\tVnodepages         int32\n\tVtextpages         int32\n\tFreemin            int32\n\tFreetarg           int32\n\tInactarg           int32\n\tWiredmax           int32\n\tAnonmin            int32\n\tVtextmin           int32\n\tVnodemin           int32\n\tAnonminpct         int32\n\tVtextminpct        int32\n\tVnodeminpct        int32\n\tNswapdev           int32\n\tSwpages            int32\n\tSwpginuse          int32\n\tSwpgonly           int32\n\tNswget             int32\n\tNanon              int32\n\tNanonneeded        int32\n\tNfreeanon          int32\n\tFaults             int32\n\tTraps              int32\n\tIntrs              int32\n\tSwtch              int32\n\tSofts              int32\n\tSyscalls           int32\n\tPageins            int32\n\tObsolete_swapins   int32\n\tObsolete_swapouts  int32\n\tPgswapin           int32\n\tPgswapout          int32\n\tForks              int32\n\tForks_ppwait       int32\n\tForks_sharevm      int32\n\tPga_zerohit        int32\n\tPga_zeromiss       int32\n\tZeroaborts         int32\n\tFltnoram           int32\n\tFltnoanon          int32\n\tFltnoamap          int32\n\tFltpgwait          int32\n\tFltpgrele          int32\n\tFltrelck           int32\n\tFltrelckok         int32\n\tFltanget           int32\n\tFltanretry         int32\n\tFltamcopy          int32\n\tFltnamap           int32\n\tFltnomap           int32\n\tFltlget            int32\n\tFltget             int32\n\tFlt_anon           int32\n\tFlt_acow           int32\n\tFlt_obj            int32\n\tFlt_prcopy         int32\n\tFlt_przero         int32\n\tPdwoke             int32\n\tPdrevs             int32\n\tPdswout            int32\n\tPdfreed            int32\n\tPdscans            int32\n\tPdanscan           int32\n\tPdobscan           int32\n\tPdreact            int32\n\tPdbusy             int32\n\tPdpageouts         int32\n\tPdpending          int32\n\tPddeact            int32\n\tPdreanon           int32\n\tPdrevnode          int32\n\tPdrevtext          int32\n\tFpswtch            int32\n\tKmapent            int32\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go",
    "content": "// cgo -godefs types_openbsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,openbsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tMode    uint32\n\tDev     int32\n\tIno     uint64\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    int32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\t_       [4]byte\n\t_       Timespec\n}\n\ntype Statfs_t struct {\n\tF_flags       uint32\n\tF_bsize       uint32\n\tF_iosize      uint32\n\t_             [4]byte\n\tF_blocks      uint64\n\tF_bfree       uint64\n\tF_bavail      int64\n\tF_files       uint64\n\tF_ffree       uint64\n\tF_favail      int64\n\tF_syncwrites  uint64\n\tF_syncreads   uint64\n\tF_asyncwrites uint64\n\tF_asyncreads  uint64\n\tF_fsid        Fsid\n\tF_namemax     uint32\n\tF_owner       uint32\n\tF_ctime       uint64\n\tF_fstypename  [16]int8\n\tF_mntonname   [90]int8\n\tF_mntfromname [90]int8\n\tF_mntfromspec [90]int8\n\t_             [2]byte\n\tMount_info    [160]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tNamlen uint8\n\t_      [4]uint8\n\tName   [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [24]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\t_          [4]byte\n\tIov        *Iovec\n\tIovlen     uint32\n\t_          [4]byte\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x20\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint64\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int64\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]uint32\n}\n\nconst (\n\tSizeofIfMsghdr         = 0xa8\n\tSizeofIfData           = 0x90\n\tSizeofIfaMsghdr        = 0x18\n\tSizeofIfAnnounceMsghdr = 0x1a\n\tSizeofRtMsghdr         = 0x60\n\tSizeofRtMetrics        = 0x38\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tXflags  int32\n\tData    IfData\n}\n\ntype IfData struct {\n\tType         uint8\n\tAddrlen      uint8\n\tHdrlen       uint8\n\tLink_state   uint8\n\tMtu          uint32\n\tMetric       uint32\n\tRdomain      uint32\n\tBaudrate     uint64\n\tIpackets     uint64\n\tIerrors      uint64\n\tOpackets     uint64\n\tOerrors      uint64\n\tCollisions   uint64\n\tIbytes       uint64\n\tObytes       uint64\n\tImcasts      uint64\n\tOmcasts      uint64\n\tIqdrops      uint64\n\tOqdrops      uint64\n\tNoproto      uint64\n\tCapabilities uint32\n\t_            [4]byte\n\tLastchange   Timeval\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tMetric  int32\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tWhat    uint16\n\tName    [16]int8\n}\n\ntype RtMsghdr struct {\n\tMsglen   uint16\n\tVersion  uint8\n\tType     uint8\n\tHdrlen   uint16\n\tIndex    uint16\n\tTableid  uint16\n\tPriority uint8\n\tMpls     uint8\n\tAddrs    int32\n\tFlags    int32\n\tFmask    int32\n\tPid      int32\n\tSeq      int32\n\tErrno    int32\n\tInits    uint32\n\tRmx      RtMetrics\n}\n\ntype RtMetrics struct {\n\tPksent   uint64\n\tExpire   int64\n\tLocks    uint32\n\tMtu      uint32\n\tRefcnt   uint32\n\tHopcount uint32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPad      uint32\n}\n\ntype Mclpool struct{}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x10\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\t_     [4]byte\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  BpfTimeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype BpfTimeval struct {\n\tSec  uint32\n\tUsec uint32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed int32\n\tOspeed int32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_SYMLINK_FOLLOW   = 0x4\n\tAT_SYMLINK_NOFOLLOW = 0x2\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Sigset_t uint32\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofUvmexp = 0x158\n\ntype Uvmexp struct {\n\tPagesize           int32\n\tPagemask           int32\n\tPageshift          int32\n\tNpages             int32\n\tFree               int32\n\tActive             int32\n\tInactive           int32\n\tPaging             int32\n\tWired              int32\n\tZeropages          int32\n\tReserve_pagedaemon int32\n\tReserve_kernel     int32\n\tAnonpages          int32\n\tVnodepages         int32\n\tVtextpages         int32\n\tFreemin            int32\n\tFreetarg           int32\n\tInactarg           int32\n\tWiredmax           int32\n\tAnonmin            int32\n\tVtextmin           int32\n\tVnodemin           int32\n\tAnonminpct         int32\n\tVtextminpct        int32\n\tVnodeminpct        int32\n\tNswapdev           int32\n\tSwpages            int32\n\tSwpginuse          int32\n\tSwpgonly           int32\n\tNswget             int32\n\tNanon              int32\n\tNanonneeded        int32\n\tNfreeanon          int32\n\tFaults             int32\n\tTraps              int32\n\tIntrs              int32\n\tSwtch              int32\n\tSofts              int32\n\tSyscalls           int32\n\tPageins            int32\n\tObsolete_swapins   int32\n\tObsolete_swapouts  int32\n\tPgswapin           int32\n\tPgswapout          int32\n\tForks              int32\n\tForks_ppwait       int32\n\tForks_sharevm      int32\n\tPga_zerohit        int32\n\tPga_zeromiss       int32\n\tZeroaborts         int32\n\tFltnoram           int32\n\tFltnoanon          int32\n\tFltnoamap          int32\n\tFltpgwait          int32\n\tFltpgrele          int32\n\tFltrelck           int32\n\tFltrelckok         int32\n\tFltanget           int32\n\tFltanretry         int32\n\tFltamcopy          int32\n\tFltnamap           int32\n\tFltnomap           int32\n\tFltlget            int32\n\tFltget             int32\n\tFlt_anon           int32\n\tFlt_acow           int32\n\tFlt_obj            int32\n\tFlt_prcopy         int32\n\tFlt_przero         int32\n\tPdwoke             int32\n\tPdrevs             int32\n\tPdswout            int32\n\tPdfreed            int32\n\tPdscans            int32\n\tPdanscan           int32\n\tPdobscan           int32\n\tPdreact            int32\n\tPdbusy             int32\n\tPdpageouts         int32\n\tPdpending          int32\n\tPddeact            int32\n\tPdreanon           int32\n\tPdrevnode          int32\n\tPdrevtext          int32\n\tFpswtch            int32\n\tKmapent            int32\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go",
    "content": "// cgo -godefs -- -fsigned-char types_openbsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm,openbsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x4\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x4\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int32\n\t_    [4]byte\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int32\n\t_    [4]byte\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int32\n\tIxrss    int32\n\tIdrss    int32\n\tIsrss    int32\n\tMinflt   int32\n\tMajflt   int32\n\tNswap    int32\n\tInblock  int32\n\tOublock  int32\n\tMsgsnd   int32\n\tMsgrcv   int32\n\tNsignals int32\n\tNvcsw    int32\n\tNivcsw   int32\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tMode    uint32\n\tDev     int32\n\tIno     uint64\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    int32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\t_       [4]byte\n\t_       Timespec\n}\n\ntype Statfs_t struct {\n\tF_flags       uint32\n\tF_bsize       uint32\n\tF_iosize      uint32\n\t_             [4]byte\n\tF_blocks      uint64\n\tF_bfree       uint64\n\tF_bavail      int64\n\tF_files       uint64\n\tF_ffree       uint64\n\tF_favail      int64\n\tF_syncwrites  uint64\n\tF_syncreads   uint64\n\tF_asyncwrites uint64\n\tF_asyncreads  uint64\n\tF_fsid        Fsid\n\tF_namemax     uint32\n\tF_owner       uint32\n\tF_ctime       uint64\n\tF_fstypename  [16]int8\n\tF_mntonname   [90]int8\n\tF_mntfromname [90]int8\n\tF_mntfromspec [90]int8\n\t_             [2]byte\n\tMount_info    [160]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tNamlen uint8\n\t_      [4]uint8\n\tName   [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [24]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint32\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x20\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x1c\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint32\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\t_      [4]byte\n\tData   int64\n\tUdata  *byte\n\t_      [4]byte\n}\n\ntype FdSet struct {\n\tBits [32]uint32\n}\n\nconst (\n\tSizeofIfMsghdr         = 0xa8\n\tSizeofIfData           = 0x90\n\tSizeofIfaMsghdr        = 0x18\n\tSizeofIfAnnounceMsghdr = 0x1a\n\tSizeofRtMsghdr         = 0x60\n\tSizeofRtMetrics        = 0x38\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tXflags  int32\n\tData    IfData\n}\n\ntype IfData struct {\n\tType         uint8\n\tAddrlen      uint8\n\tHdrlen       uint8\n\tLink_state   uint8\n\tMtu          uint32\n\tMetric       uint32\n\tRdomain      uint32\n\tBaudrate     uint64\n\tIpackets     uint64\n\tIerrors      uint64\n\tOpackets     uint64\n\tOerrors      uint64\n\tCollisions   uint64\n\tIbytes       uint64\n\tObytes       uint64\n\tImcasts      uint64\n\tOmcasts      uint64\n\tIqdrops      uint64\n\tOqdrops      uint64\n\tNoproto      uint64\n\tCapabilities uint32\n\t_            [4]byte\n\tLastchange   Timeval\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tMetric  int32\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tWhat    uint16\n\tName    [16]int8\n}\n\ntype RtMsghdr struct {\n\tMsglen   uint16\n\tVersion  uint8\n\tType     uint8\n\tHdrlen   uint16\n\tIndex    uint16\n\tTableid  uint16\n\tPriority uint8\n\tMpls     uint8\n\tAddrs    int32\n\tFlags    int32\n\tFmask    int32\n\tPid      int32\n\tSeq      int32\n\tErrno    int32\n\tInits    uint32\n\tRmx      RtMetrics\n}\n\ntype RtMetrics struct {\n\tPksent   uint64\n\tExpire   int64\n\tLocks    uint32\n\tMtu      uint32\n\tRefcnt   uint32\n\tHopcount uint32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPad      uint32\n}\n\ntype Mclpool struct{}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x8\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  BpfTimeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype BpfTimeval struct {\n\tSec  uint32\n\tUsec uint32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed int32\n\tOspeed int32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_SYMLINK_FOLLOW   = 0x4\n\tAT_SYMLINK_NOFOLLOW = 0x2\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Sigset_t uint32\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofUvmexp = 0x158\n\ntype Uvmexp struct {\n\tPagesize           int32\n\tPagemask           int32\n\tPageshift          int32\n\tNpages             int32\n\tFree               int32\n\tActive             int32\n\tInactive           int32\n\tPaging             int32\n\tWired              int32\n\tZeropages          int32\n\tReserve_pagedaemon int32\n\tReserve_kernel     int32\n\tUnused01           int32\n\tVnodepages         int32\n\tVtextpages         int32\n\tFreemin            int32\n\tFreetarg           int32\n\tInactarg           int32\n\tWiredmax           int32\n\tAnonmin            int32\n\tVtextmin           int32\n\tVnodemin           int32\n\tAnonminpct         int32\n\tVtextminpct        int32\n\tVnodeminpct        int32\n\tNswapdev           int32\n\tSwpages            int32\n\tSwpginuse          int32\n\tSwpgonly           int32\n\tNswget             int32\n\tNanon              int32\n\tUnused05           int32\n\tUnused06           int32\n\tFaults             int32\n\tTraps              int32\n\tIntrs              int32\n\tSwtch              int32\n\tSofts              int32\n\tSyscalls           int32\n\tPageins            int32\n\tUnused07           int32\n\tUnused08           int32\n\tPgswapin           int32\n\tPgswapout          int32\n\tForks              int32\n\tForks_ppwait       int32\n\tForks_sharevm      int32\n\tPga_zerohit        int32\n\tPga_zeromiss       int32\n\tUnused09           int32\n\tFltnoram           int32\n\tFltnoanon          int32\n\tFltnoamap          int32\n\tFltpgwait          int32\n\tFltpgrele          int32\n\tFltrelck           int32\n\tFltrelckok         int32\n\tFltanget           int32\n\tFltanretry         int32\n\tFltamcopy          int32\n\tFltnamap           int32\n\tFltnomap           int32\n\tFltlget            int32\n\tFltget             int32\n\tFlt_anon           int32\n\tFlt_acow           int32\n\tFlt_obj            int32\n\tFlt_prcopy         int32\n\tFlt_przero         int32\n\tPdwoke             int32\n\tPdrevs             int32\n\tPdswout            int32\n\tPdfreed            int32\n\tPdscans            int32\n\tPdanscan           int32\n\tPdobscan           int32\n\tPdreact            int32\n\tPdbusy             int32\n\tPdpageouts         int32\n\tPdpending          int32\n\tPddeact            int32\n\tUnused11           int32\n\tUnused12           int32\n\tUnused13           int32\n\tFpswtch            int32\n\tKmapent            int32\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go",
    "content": "// cgo -godefs -- -fsigned-char types_openbsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build arm64,openbsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tMode    uint32\n\tDev     int32\n\tIno     uint64\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    int32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\t_       Timespec\n}\n\ntype Statfs_t struct {\n\tF_flags       uint32\n\tF_bsize       uint32\n\tF_iosize      uint32\n\tF_blocks      uint64\n\tF_bfree       uint64\n\tF_bavail      int64\n\tF_files       uint64\n\tF_ffree       uint64\n\tF_favail      int64\n\tF_syncwrites  uint64\n\tF_syncreads   uint64\n\tF_asyncwrites uint64\n\tF_asyncreads  uint64\n\tF_fsid        Fsid\n\tF_namemax     uint32\n\tF_owner       uint32\n\tF_ctime       uint64\n\tF_fstypename  [16]int8\n\tF_mntonname   [90]int8\n\tF_mntfromname [90]int8\n\tF_mntfromspec [90]int8\n\t_             [2]byte\n\tMount_info    [160]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tNamlen uint8\n\t_      [4]uint8\n\tName   [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [24]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x20\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint64\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int64\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]uint32\n}\n\nconst (\n\tSizeofIfMsghdr         = 0xa8\n\tSizeofIfData           = 0x90\n\tSizeofIfaMsghdr        = 0x18\n\tSizeofIfAnnounceMsghdr = 0x1a\n\tSizeofRtMsghdr         = 0x60\n\tSizeofRtMetrics        = 0x38\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tXflags  int32\n\tData    IfData\n}\n\ntype IfData struct {\n\tType         uint8\n\tAddrlen      uint8\n\tHdrlen       uint8\n\tLink_state   uint8\n\tMtu          uint32\n\tMetric       uint32\n\tRdomain      uint32\n\tBaudrate     uint64\n\tIpackets     uint64\n\tIerrors      uint64\n\tOpackets     uint64\n\tOerrors      uint64\n\tCollisions   uint64\n\tIbytes       uint64\n\tObytes       uint64\n\tImcasts      uint64\n\tOmcasts      uint64\n\tIqdrops      uint64\n\tOqdrops      uint64\n\tNoproto      uint64\n\tCapabilities uint32\n\tLastchange   Timeval\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tMetric  int32\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tWhat    uint16\n\tName    [16]int8\n}\n\ntype RtMsghdr struct {\n\tMsglen   uint16\n\tVersion  uint8\n\tType     uint8\n\tHdrlen   uint16\n\tIndex    uint16\n\tTableid  uint16\n\tPriority uint8\n\tMpls     uint8\n\tAddrs    int32\n\tFlags    int32\n\tFmask    int32\n\tPid      int32\n\tSeq      int32\n\tErrno    int32\n\tInits    uint32\n\tRmx      RtMetrics\n}\n\ntype RtMetrics struct {\n\tPksent   uint64\n\tExpire   int64\n\tLocks    uint32\n\tMtu      uint32\n\tRefcnt   uint32\n\tHopcount uint32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPad      uint32\n}\n\ntype Mclpool struct{}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x10\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  BpfTimeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype BpfTimeval struct {\n\tSec  uint32\n\tUsec uint32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed int32\n\tOspeed int32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_SYMLINK_FOLLOW   = 0x4\n\tAT_SYMLINK_NOFOLLOW = 0x2\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Sigset_t uint32\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofUvmexp = 0x158\n\ntype Uvmexp struct {\n\tPagesize           int32\n\tPagemask           int32\n\tPageshift          int32\n\tNpages             int32\n\tFree               int32\n\tActive             int32\n\tInactive           int32\n\tPaging             int32\n\tWired              int32\n\tZeropages          int32\n\tReserve_pagedaemon int32\n\tReserve_kernel     int32\n\tUnused01           int32\n\tVnodepages         int32\n\tVtextpages         int32\n\tFreemin            int32\n\tFreetarg           int32\n\tInactarg           int32\n\tWiredmax           int32\n\tAnonmin            int32\n\tVtextmin           int32\n\tVnodemin           int32\n\tAnonminpct         int32\n\tVtextminpct        int32\n\tVnodeminpct        int32\n\tNswapdev           int32\n\tSwpages            int32\n\tSwpginuse          int32\n\tSwpgonly           int32\n\tNswget             int32\n\tNanon              int32\n\tUnused05           int32\n\tUnused06           int32\n\tFaults             int32\n\tTraps              int32\n\tIntrs              int32\n\tSwtch              int32\n\tSofts              int32\n\tSyscalls           int32\n\tPageins            int32\n\tUnused07           int32\n\tUnused08           int32\n\tPgswapin           int32\n\tPgswapout          int32\n\tForks              int32\n\tForks_ppwait       int32\n\tForks_sharevm      int32\n\tPga_zerohit        int32\n\tPga_zeromiss       int32\n\tUnused09           int32\n\tFltnoram           int32\n\tFltnoanon          int32\n\tFltnoamap          int32\n\tFltpgwait          int32\n\tFltpgrele          int32\n\tFltrelck           int32\n\tFltrelckok         int32\n\tFltanget           int32\n\tFltanretry         int32\n\tFltamcopy          int32\n\tFltnamap           int32\n\tFltnomap           int32\n\tFltlget            int32\n\tFltget             int32\n\tFlt_anon           int32\n\tFlt_acow           int32\n\tFlt_obj            int32\n\tFlt_prcopy         int32\n\tFlt_przero         int32\n\tPdwoke             int32\n\tPdrevs             int32\n\tPdswout            int32\n\tPdfreed            int32\n\tPdscans            int32\n\tPdanscan           int32\n\tPdobscan           int32\n\tPdreact            int32\n\tPdbusy             int32\n\tPdpageouts         int32\n\tPdpending          int32\n\tPddeact            int32\n\tUnused11           int32\n\tUnused12           int32\n\tUnused13           int32\n\tFpswtch            int32\n\tKmapent            int32\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go",
    "content": "// cgo -godefs -- -fsigned-char types_openbsd.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build mips64,openbsd\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tMode    uint32\n\tDev     int32\n\tIno     uint64\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    int32\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tSize    int64\n\tBlocks  int64\n\tBlksize int32\n\tFlags   uint32\n\tGen     uint32\n\t_       Timespec\n}\n\ntype Statfs_t struct {\n\tF_flags       uint32\n\tF_bsize       uint32\n\tF_iosize      uint32\n\tF_blocks      uint64\n\tF_bfree       uint64\n\tF_bavail      int64\n\tF_files       uint64\n\tF_ffree       uint64\n\tF_favail      int64\n\tF_syncwrites  uint64\n\tF_syncreads   uint64\n\tF_asyncwrites uint64\n\tF_asyncreads  uint64\n\tF_fsid        Fsid\n\tF_namemax     uint32\n\tF_owner       uint32\n\tF_ctime       uint64\n\tF_fstypename  [16]int8\n\tF_mntonname   [90]int8\n\tF_mntfromname [90]int8\n\tF_mntfromspec [90]int8\n\t_             [2]byte\n\tMount_info    [160]byte\n}\n\ntype Flock_t struct {\n\tStart  int64\n\tLen    int64\n\tPid    int32\n\tType   int16\n\tWhence int16\n}\n\ntype Dirent struct {\n\tFileno uint64\n\tOff    int64\n\tReclen uint16\n\tType   uint8\n\tNamlen uint8\n\t_      [4]uint8\n\tName   [256]int8\n}\n\ntype Fsid struct {\n\tVal [2]int32\n}\n\nconst (\n\tPathMax = 0x400\n)\n\ntype RawSockaddrInet4 struct {\n\tLen    uint8\n\tFamily uint8\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tLen      uint8\n\tFamily   uint8\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tLen    uint8\n\tFamily uint8\n\tPath   [104]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tLen    uint8\n\tFamily uint8\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [24]int8\n}\n\ntype RawSockaddr struct {\n\tLen    uint8\n\tFamily uint8\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [92]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *byte\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName       *byte\n\tNamelen    uint32\n\tIov        *Iovec\n\tIovlen     uint32\n\tControl    *byte\n\tControllen uint32\n\tFlags      int32\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tFilt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x1c\n\tSizeofSockaddrAny      = 0x6c\n\tSizeofSockaddrUnix     = 0x6a\n\tSizeofSockaddrDatalink = 0x20\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x20\n\tSizeofICMPv6Filter     = 0x20\n)\n\nconst (\n\tPTRACE_TRACEME = 0x0\n\tPTRACE_CONT    = 0x7\n\tPTRACE_KILL    = 0x8\n)\n\ntype Kevent_t struct {\n\tIdent  uint64\n\tFilter int16\n\tFlags  uint16\n\tFflags uint32\n\tData   int64\n\tUdata  *byte\n}\n\ntype FdSet struct {\n\tBits [32]uint32\n}\n\nconst (\n\tSizeofIfMsghdr         = 0xa8\n\tSizeofIfData           = 0x90\n\tSizeofIfaMsghdr        = 0x18\n\tSizeofIfAnnounceMsghdr = 0x1a\n\tSizeofRtMsghdr         = 0x60\n\tSizeofRtMetrics        = 0x38\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tXflags  int32\n\tData    IfData\n}\n\ntype IfData struct {\n\tType         uint8\n\tAddrlen      uint8\n\tHdrlen       uint8\n\tLink_state   uint8\n\tMtu          uint32\n\tMetric       uint32\n\tRdomain      uint32\n\tBaudrate     uint64\n\tIpackets     uint64\n\tIerrors      uint64\n\tOpackets     uint64\n\tOerrors      uint64\n\tCollisions   uint64\n\tIbytes       uint64\n\tObytes       uint64\n\tImcasts      uint64\n\tOmcasts      uint64\n\tIqdrops      uint64\n\tOqdrops      uint64\n\tNoproto      uint64\n\tCapabilities uint32\n\tLastchange   Timeval\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tTableid uint16\n\tPad1    uint8\n\tPad2    uint8\n\tAddrs   int32\n\tFlags   int32\n\tMetric  int32\n}\n\ntype IfAnnounceMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tHdrlen  uint16\n\tIndex   uint16\n\tWhat    uint16\n\tName    [16]int8\n}\n\ntype RtMsghdr struct {\n\tMsglen   uint16\n\tVersion  uint8\n\tType     uint8\n\tHdrlen   uint16\n\tIndex    uint16\n\tTableid  uint16\n\tPriority uint8\n\tMpls     uint8\n\tAddrs    int32\n\tFlags    int32\n\tFmask    int32\n\tPid      int32\n\tSeq      int32\n\tErrno    int32\n\tInits    uint32\n\tRmx      RtMetrics\n}\n\ntype RtMetrics struct {\n\tPksent   uint64\n\tExpire   int64\n\tLocks    uint32\n\tMtu      uint32\n\tRefcnt   uint32\n\tHopcount uint32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPad      uint32\n}\n\ntype Mclpool struct{}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x8\n\tSizeofBpfProgram = 0x10\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv uint32\n\tDrop uint32\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfHdr struct {\n\tTstamp  BpfTimeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype BpfTimeval struct {\n\tSec  uint32\n\tUsec uint32\n}\n\ntype Termios struct {\n\tIflag  uint32\n\tOflag  uint32\n\tCflag  uint32\n\tLflag  uint32\n\tCc     [20]uint8\n\tIspeed int32\n\tOspeed int32\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\nconst (\n\tAT_FDCWD            = -0x64\n\tAT_SYMLINK_FOLLOW   = 0x4\n\tAT_SYMLINK_NOFOLLOW = 0x2\n)\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n\ntype Sigset_t uint32\n\ntype Utsname struct {\n\tSysname  [256]byte\n\tNodename [256]byte\n\tRelease  [256]byte\n\tVersion  [256]byte\n\tMachine  [256]byte\n}\n\nconst SizeofUvmexp = 0x158\n\ntype Uvmexp struct {\n\tPagesize           int32\n\tPagemask           int32\n\tPageshift          int32\n\tNpages             int32\n\tFree               int32\n\tActive             int32\n\tInactive           int32\n\tPaging             int32\n\tWired              int32\n\tZeropages          int32\n\tReserve_pagedaemon int32\n\tReserve_kernel     int32\n\tUnused01           int32\n\tVnodepages         int32\n\tVtextpages         int32\n\tFreemin            int32\n\tFreetarg           int32\n\tInactarg           int32\n\tWiredmax           int32\n\tAnonmin            int32\n\tVtextmin           int32\n\tVnodemin           int32\n\tAnonminpct         int32\n\tVtextminpct        int32\n\tVnodeminpct        int32\n\tNswapdev           int32\n\tSwpages            int32\n\tSwpginuse          int32\n\tSwpgonly           int32\n\tNswget             int32\n\tNanon              int32\n\tUnused05           int32\n\tUnused06           int32\n\tFaults             int32\n\tTraps              int32\n\tIntrs              int32\n\tSwtch              int32\n\tSofts              int32\n\tSyscalls           int32\n\tPageins            int32\n\tUnused07           int32\n\tUnused08           int32\n\tPgswapin           int32\n\tPgswapout          int32\n\tForks              int32\n\tForks_ppwait       int32\n\tForks_sharevm      int32\n\tPga_zerohit        int32\n\tPga_zeromiss       int32\n\tUnused09           int32\n\tFltnoram           int32\n\tFltnoanon          int32\n\tFltnoamap          int32\n\tFltpgwait          int32\n\tFltpgrele          int32\n\tFltrelck           int32\n\tFltrelckok         int32\n\tFltanget           int32\n\tFltanretry         int32\n\tFltamcopy          int32\n\tFltnamap           int32\n\tFltnomap           int32\n\tFltlget            int32\n\tFltget             int32\n\tFlt_anon           int32\n\tFlt_acow           int32\n\tFlt_obj            int32\n\tFlt_prcopy         int32\n\tFlt_przero         int32\n\tPdwoke             int32\n\tPdrevs             int32\n\tPdswout            int32\n\tPdfreed            int32\n\tPdscans            int32\n\tPdanscan           int32\n\tPdobscan           int32\n\tPdreact            int32\n\tPdbusy             int32\n\tPdpageouts         int32\n\tPdpending          int32\n\tPddeact            int32\n\tUnused11           int32\n\tUnused12           int32\n\tUnused13           int32\n\tFpswtch            int32\n\tKmapent            int32\n}\n\nconst SizeofClockinfo = 0x14\n\ntype Clockinfo struct {\n\tHz      int32\n\tTick    int32\n\tTickadj int32\n\tStathz  int32\n\tProfhz  int32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go",
    "content": "// cgo -godefs types_solaris.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build amd64,solaris\n\npackage unix\n\nconst (\n\tSizeofPtr      = 0x8\n\tSizeofShort    = 0x2\n\tSizeofInt      = 0x4\n\tSizeofLong     = 0x8\n\tSizeofLongLong = 0x8\n\tPathMax        = 0x400\n\tMaxHostNameLen = 0x100\n)\n\ntype (\n\t_C_short     int16\n\t_C_int       int32\n\t_C_long      int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec  int64\n\tUsec int64\n}\n\ntype Timeval32 struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype Tms struct {\n\tUtime  int64\n\tStime  int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime  int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime    Timeval\n\tStime    Timeval\n\tMaxrss   int64\n\tIxrss    int64\n\tIdrss    int64\n\tIsrss    int64\n\tMinflt   int64\n\tMajflt   int64\n\tNswap    int64\n\tInblock  int64\n\tOublock  int64\n\tMsgsnd   int64\n\tMsgrcv   int64\n\tNsignals int64\n\tNvcsw    int64\n\tNivcsw   int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev     uint64\n\tIno     uint64\n\tMode    uint32\n\tNlink   uint32\n\tUid     uint32\n\tGid     uint32\n\tRdev    uint64\n\tSize    int64\n\tAtim    Timespec\n\tMtim    Timespec\n\tCtim    Timespec\n\tBlksize int32\n\t_       [4]byte\n\tBlocks  int64\n\tFstype  [16]int8\n}\n\ntype Flock_t struct {\n\tType   int16\n\tWhence int16\n\t_      [4]byte\n\tStart  int64\n\tLen    int64\n\tSysid  int32\n\tPid    int32\n\tPad    [4]int64\n}\n\ntype Dirent struct {\n\tIno    uint64\n\tOff    int64\n\tReclen uint16\n\tName   [1]int8\n\t_      [5]byte\n}\n\ntype _Fsblkcnt_t uint64\n\ntype Statvfs_t struct {\n\tBsize    uint64\n\tFrsize   uint64\n\tBlocks   uint64\n\tBfree    uint64\n\tBavail   uint64\n\tFiles    uint64\n\tFfree    uint64\n\tFavail   uint64\n\tFsid     uint64\n\tBasetype [16]int8\n\tFlag     uint64\n\tNamemax  uint64\n\tFstr     [32]int8\n}\n\ntype RawSockaddrInet4 struct {\n\tFamily uint16\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]int8\n}\n\ntype RawSockaddrInet6 struct {\n\tFamily         uint16\n\tPort           uint16\n\tFlowinfo       uint32\n\tAddr           [16]byte /* in6_addr */\n\tScope_id       uint32\n\tX__sin6_src_id uint32\n}\n\ntype RawSockaddrUnix struct {\n\tFamily uint16\n\tPath   [108]int8\n}\n\ntype RawSockaddrDatalink struct {\n\tFamily uint16\n\tIndex  uint16\n\tType   uint8\n\tNlen   uint8\n\tAlen   uint8\n\tSlen   uint8\n\tData   [244]int8\n}\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [236]int8\n}\n\ntype _Socklen uint32\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype Iovec struct {\n\tBase *int8\n\tLen  uint64\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\ntype Msghdr struct {\n\tName         *byte\n\tNamelen      uint32\n\t_            [4]byte\n\tIov          *Iovec\n\tIovlen       int32\n\t_            [4]byte\n\tAccrights    *int8\n\tAccrightslen int32\n\t_            [4]byte\n}\n\ntype Cmsghdr struct {\n\tLen   uint32\n\tLevel int32\n\tType  int32\n}\n\ntype Inet4Pktinfo struct {\n\tIfindex  uint32\n\tSpec_dst [4]byte /* in_addr */\n\tAddr     [4]byte /* in_addr */\n}\n\ntype Inet6Pktinfo struct {\n\tAddr    [16]byte /* in6_addr */\n\tIfindex uint32\n}\n\ntype IPv6MTUInfo struct {\n\tAddr RawSockaddrInet6\n\tMtu  uint32\n}\n\ntype ICMPv6Filter struct {\n\tX__icmp6_filt [8]uint32\n}\n\nconst (\n\tSizeofSockaddrInet4    = 0x10\n\tSizeofSockaddrInet6    = 0x20\n\tSizeofSockaddrAny      = 0xfc\n\tSizeofSockaddrUnix     = 0x6e\n\tSizeofSockaddrDatalink = 0xfc\n\tSizeofLinger           = 0x8\n\tSizeofIPMreq           = 0x8\n\tSizeofIPv6Mreq         = 0x14\n\tSizeofMsghdr           = 0x30\n\tSizeofCmsghdr          = 0xc\n\tSizeofInet4Pktinfo     = 0xc\n\tSizeofInet6Pktinfo     = 0x14\n\tSizeofIPv6MTUInfo      = 0x24\n\tSizeofICMPv6Filter     = 0x20\n)\n\ntype FdSet struct {\n\tBits [1024]int64\n}\n\ntype Utsname struct {\n\tSysname  [257]byte\n\tNodename [257]byte\n\tRelease  [257]byte\n\tVersion  [257]byte\n\tMachine  [257]byte\n}\n\ntype Ustat_t struct {\n\tTfree  int64\n\tTinode uint64\n\tFname  [6]int8\n\tFpack  [6]int8\n\t_      [4]byte\n}\n\nconst (\n\tAT_FDCWD            = 0xffd19553\n\tAT_SYMLINK_NOFOLLOW = 0x1000\n\tAT_SYMLINK_FOLLOW   = 0x2000\n\tAT_REMOVEDIR        = 0x1\n\tAT_EACCESS          = 0x4\n)\n\nconst (\n\tSizeofIfMsghdr  = 0x54\n\tSizeofIfData    = 0x44\n\tSizeofIfaMsghdr = 0x14\n\tSizeofRtMsghdr  = 0x4c\n\tSizeofRtMetrics = 0x28\n)\n\ntype IfMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tData    IfData\n}\n\ntype IfData struct {\n\tType       uint8\n\tAddrlen    uint8\n\tHdrlen     uint8\n\t_          [1]byte\n\tMtu        uint32\n\tMetric     uint32\n\tBaudrate   uint32\n\tIpackets   uint32\n\tIerrors    uint32\n\tOpackets   uint32\n\tOerrors    uint32\n\tCollisions uint32\n\tIbytes     uint32\n\tObytes     uint32\n\tImcasts    uint32\n\tOmcasts    uint32\n\tIqdrops    uint32\n\tNoproto    uint32\n\tLastchange Timeval32\n}\n\ntype IfaMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tAddrs   int32\n\tFlags   int32\n\tIndex   uint16\n\t_       [2]byte\n\tMetric  int32\n}\n\ntype RtMsghdr struct {\n\tMsglen  uint16\n\tVersion uint8\n\tType    uint8\n\tIndex   uint16\n\t_       [2]byte\n\tFlags   int32\n\tAddrs   int32\n\tPid     int32\n\tSeq     int32\n\tErrno   int32\n\tUse     int32\n\tInits   uint32\n\tRmx     RtMetrics\n}\n\ntype RtMetrics struct {\n\tLocks    uint32\n\tMtu      uint32\n\tHopcount uint32\n\tExpire   uint32\n\tRecvpipe uint32\n\tSendpipe uint32\n\tSsthresh uint32\n\tRtt      uint32\n\tRttvar   uint32\n\tPksent   uint32\n}\n\nconst (\n\tSizeofBpfVersion = 0x4\n\tSizeofBpfStat    = 0x80\n\tSizeofBpfProgram = 0x10\n\tSizeofBpfInsn    = 0x8\n\tSizeofBpfHdr     = 0x14\n)\n\ntype BpfVersion struct {\n\tMajor uint16\n\tMinor uint16\n}\n\ntype BpfStat struct {\n\tRecv    uint64\n\tDrop    uint64\n\tCapt    uint64\n\tPadding [13]uint64\n}\n\ntype BpfProgram struct {\n\tLen   uint32\n\t_     [4]byte\n\tInsns *BpfInsn\n}\n\ntype BpfInsn struct {\n\tCode uint16\n\tJt   uint8\n\tJf   uint8\n\tK    uint32\n}\n\ntype BpfTimeval struct {\n\tSec  int32\n\tUsec int32\n}\n\ntype BpfHdr struct {\n\tTstamp  BpfTimeval\n\tCaplen  uint32\n\tDatalen uint32\n\tHdrlen  uint16\n\t_       [2]byte\n}\n\ntype Termios struct {\n\tIflag uint32\n\tOflag uint32\n\tCflag uint32\n\tLflag uint32\n\tCc    [19]uint8\n\t_     [1]byte\n}\n\ntype Termio struct {\n\tIflag uint16\n\tOflag uint16\n\tCflag uint16\n\tLflag uint16\n\tLine  int8\n\tCc    [8]uint8\n\t_     [1]byte\n}\n\ntype Winsize struct {\n\tRow    uint16\n\tCol    uint16\n\tXpixel uint16\n\tYpixel uint16\n}\n\ntype PollFd struct {\n\tFd      int32\n\tEvents  int16\n\tRevents int16\n}\n\nconst (\n\tPOLLERR    = 0x8\n\tPOLLHUP    = 0x10\n\tPOLLIN     = 0x1\n\tPOLLNVAL   = 0x20\n\tPOLLOUT    = 0x4\n\tPOLLPRI    = 0x2\n\tPOLLRDBAND = 0x80\n\tPOLLRDNORM = 0x40\n\tPOLLWRBAND = 0x100\n\tPOLLWRNORM = 0x4\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/aliases.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build windows\n// +build go1.9\n\npackage windows\n\nimport \"syscall\"\n\ntype Errno = syscall.Errno\ntype SysProcAttr = syscall.SysProcAttr\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/dll_windows.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage windows\n\nimport (\n\t\"sync\"\n\t\"sync/atomic\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// We need to use LoadLibrary and GetProcAddress from the Go runtime, because\n// the these symbols are loaded by the system linker and are required to\n// dynamically load additional symbols. Note that in the Go runtime, these\n// return syscall.Handle and syscall.Errno, but these are the same, in fact,\n// as windows.Handle and windows.Errno, and we intend to keep these the same.\n\n//go:linkname syscall_loadlibrary syscall.loadlibrary\nfunc syscall_loadlibrary(filename *uint16) (handle Handle, err Errno)\n\n//go:linkname syscall_getprocaddress syscall.getprocaddress\nfunc syscall_getprocaddress(handle Handle, procname *uint8) (proc uintptr, err Errno)\n\n// DLLError describes reasons for DLL load failures.\ntype DLLError struct {\n\tErr     error\n\tObjName string\n\tMsg     string\n}\n\nfunc (e *DLLError) Error() string { return e.Msg }\n\n// A DLL implements access to a single DLL.\ntype DLL struct {\n\tName   string\n\tHandle Handle\n}\n\n// LoadDLL loads DLL file into memory.\n//\n// Warning: using LoadDLL without an absolute path name is subject to\n// DLL preloading attacks. To safely load a system DLL, use LazyDLL\n// with System set to true, or use LoadLibraryEx directly.\nfunc LoadDLL(name string) (dll *DLL, err error) {\n\tnamep, err := UTF16PtrFromString(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\th, e := syscall_loadlibrary(namep)\n\tif e != 0 {\n\t\treturn nil, &DLLError{\n\t\t\tErr:     e,\n\t\t\tObjName: name,\n\t\t\tMsg:     \"Failed to load \" + name + \": \" + e.Error(),\n\t\t}\n\t}\n\td := &DLL{\n\t\tName:   name,\n\t\tHandle: h,\n\t}\n\treturn d, nil\n}\n\n// MustLoadDLL is like LoadDLL but panics if load operation failes.\nfunc MustLoadDLL(name string) *DLL {\n\td, e := LoadDLL(name)\n\tif e != nil {\n\t\tpanic(e)\n\t}\n\treturn d\n}\n\n// FindProc searches DLL d for procedure named name and returns *Proc\n// if found. It returns an error if search fails.\nfunc (d *DLL) FindProc(name string) (proc *Proc, err error) {\n\tnamep, err := BytePtrFromString(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\ta, e := syscall_getprocaddress(d.Handle, namep)\n\tif e != 0 {\n\t\treturn nil, &DLLError{\n\t\t\tErr:     e,\n\t\t\tObjName: name,\n\t\t\tMsg:     \"Failed to find \" + name + \" procedure in \" + d.Name + \": \" + e.Error(),\n\t\t}\n\t}\n\tp := &Proc{\n\t\tDll:  d,\n\t\tName: name,\n\t\taddr: a,\n\t}\n\treturn p, nil\n}\n\n// MustFindProc is like FindProc but panics if search fails.\nfunc (d *DLL) MustFindProc(name string) *Proc {\n\tp, e := d.FindProc(name)\n\tif e != nil {\n\t\tpanic(e)\n\t}\n\treturn p\n}\n\n// FindProcByOrdinal searches DLL d for procedure by ordinal and returns *Proc\n// if found. It returns an error if search fails.\nfunc (d *DLL) FindProcByOrdinal(ordinal uintptr) (proc *Proc, err error) {\n\ta, e := GetProcAddressByOrdinal(d.Handle, ordinal)\n\tname := \"#\" + itoa(int(ordinal))\n\tif e != nil {\n\t\treturn nil, &DLLError{\n\t\t\tErr:     e,\n\t\t\tObjName: name,\n\t\t\tMsg:     \"Failed to find \" + name + \" procedure in \" + d.Name + \": \" + e.Error(),\n\t\t}\n\t}\n\tp := &Proc{\n\t\tDll:  d,\n\t\tName: name,\n\t\taddr: a,\n\t}\n\treturn p, nil\n}\n\n// MustFindProcByOrdinal is like FindProcByOrdinal but panics if search fails.\nfunc (d *DLL) MustFindProcByOrdinal(ordinal uintptr) *Proc {\n\tp, e := d.FindProcByOrdinal(ordinal)\n\tif e != nil {\n\t\tpanic(e)\n\t}\n\treturn p\n}\n\n// Release unloads DLL d from memory.\nfunc (d *DLL) Release() (err error) {\n\treturn FreeLibrary(d.Handle)\n}\n\n// A Proc implements access to a procedure inside a DLL.\ntype Proc struct {\n\tDll  *DLL\n\tName string\n\taddr uintptr\n}\n\n// Addr returns the address of the procedure represented by p.\n// The return value can be passed to Syscall to run the procedure.\nfunc (p *Proc) Addr() uintptr {\n\treturn p.addr\n}\n\n//go:uintptrescapes\n\n// Call executes procedure p with arguments a. It will panic, if more than 15 arguments\n// are supplied.\n//\n// The returned error is always non-nil, constructed from the result of GetLastError.\n// Callers must inspect the primary return value to decide whether an error occurred\n// (according to the semantics of the specific function being called) before consulting\n// the error. The error will be guaranteed to contain windows.Errno.\nfunc (p *Proc) Call(a ...uintptr) (r1, r2 uintptr, lastErr error) {\n\tswitch len(a) {\n\tcase 0:\n\t\treturn syscall.Syscall(p.Addr(), uintptr(len(a)), 0, 0, 0)\n\tcase 1:\n\t\treturn syscall.Syscall(p.Addr(), uintptr(len(a)), a[0], 0, 0)\n\tcase 2:\n\t\treturn syscall.Syscall(p.Addr(), uintptr(len(a)), a[0], a[1], 0)\n\tcase 3:\n\t\treturn syscall.Syscall(p.Addr(), uintptr(len(a)), a[0], a[1], a[2])\n\tcase 4:\n\t\treturn syscall.Syscall6(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], 0, 0)\n\tcase 5:\n\t\treturn syscall.Syscall6(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], 0)\n\tcase 6:\n\t\treturn syscall.Syscall6(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5])\n\tcase 7:\n\t\treturn syscall.Syscall9(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5], a[6], 0, 0)\n\tcase 8:\n\t\treturn syscall.Syscall9(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], 0)\n\tcase 9:\n\t\treturn syscall.Syscall9(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8])\n\tcase 10:\n\t\treturn syscall.Syscall12(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8], a[9], 0, 0)\n\tcase 11:\n\t\treturn syscall.Syscall12(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8], a[9], a[10], 0)\n\tcase 12:\n\t\treturn syscall.Syscall12(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8], a[9], a[10], a[11])\n\tcase 13:\n\t\treturn syscall.Syscall15(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8], a[9], a[10], a[11], a[12], 0, 0)\n\tcase 14:\n\t\treturn syscall.Syscall15(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8], a[9], a[10], a[11], a[12], a[13], 0)\n\tcase 15:\n\t\treturn syscall.Syscall15(p.Addr(), uintptr(len(a)), a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8], a[9], a[10], a[11], a[12], a[13], a[14])\n\tdefault:\n\t\tpanic(\"Call \" + p.Name + \" with too many arguments \" + itoa(len(a)) + \".\")\n\t}\n}\n\n// A LazyDLL implements access to a single DLL.\n// It will delay the load of the DLL until the first\n// call to its Handle method or to one of its\n// LazyProc's Addr method.\ntype LazyDLL struct {\n\tName string\n\n\t// System determines whether the DLL must be loaded from the\n\t// Windows System directory, bypassing the normal DLL search\n\t// path.\n\tSystem bool\n\n\tmu  sync.Mutex\n\tdll *DLL // non nil once DLL is loaded\n}\n\n// Load loads DLL file d.Name into memory. It returns an error if fails.\n// Load will not try to load DLL, if it is already loaded into memory.\nfunc (d *LazyDLL) Load() error {\n\t// Non-racy version of:\n\t// if d.dll != nil {\n\tif atomic.LoadPointer((*unsafe.Pointer)(unsafe.Pointer(&d.dll))) != nil {\n\t\treturn nil\n\t}\n\td.mu.Lock()\n\tdefer d.mu.Unlock()\n\tif d.dll != nil {\n\t\treturn nil\n\t}\n\n\t// kernel32.dll is special, since it's where LoadLibraryEx comes from.\n\t// The kernel already special-cases its name, so it's always\n\t// loaded from system32.\n\tvar dll *DLL\n\tvar err error\n\tif d.Name == \"kernel32.dll\" {\n\t\tdll, err = LoadDLL(d.Name)\n\t} else {\n\t\tdll, err = loadLibraryEx(d.Name, d.System)\n\t}\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// Non-racy version of:\n\t// d.dll = dll\n\tatomic.StorePointer((*unsafe.Pointer)(unsafe.Pointer(&d.dll)), unsafe.Pointer(dll))\n\treturn nil\n}\n\n// mustLoad is like Load but panics if search fails.\nfunc (d *LazyDLL) mustLoad() {\n\te := d.Load()\n\tif e != nil {\n\t\tpanic(e)\n\t}\n}\n\n// Handle returns d's module handle.\nfunc (d *LazyDLL) Handle() uintptr {\n\td.mustLoad()\n\treturn uintptr(d.dll.Handle)\n}\n\n// NewProc returns a LazyProc for accessing the named procedure in the DLL d.\nfunc (d *LazyDLL) NewProc(name string) *LazyProc {\n\treturn &LazyProc{l: d, Name: name}\n}\n\n// NewLazyDLL creates new LazyDLL associated with DLL file.\nfunc NewLazyDLL(name string) *LazyDLL {\n\treturn &LazyDLL{Name: name}\n}\n\n// NewLazySystemDLL is like NewLazyDLL, but will only\n// search Windows System directory for the DLL if name is\n// a base name (like \"advapi32.dll\").\nfunc NewLazySystemDLL(name string) *LazyDLL {\n\treturn &LazyDLL{Name: name, System: true}\n}\n\n// A LazyProc implements access to a procedure inside a LazyDLL.\n// It delays the lookup until the Addr method is called.\ntype LazyProc struct {\n\tName string\n\n\tmu   sync.Mutex\n\tl    *LazyDLL\n\tproc *Proc\n}\n\n// Find searches DLL for procedure named p.Name. It returns\n// an error if search fails. Find will not search procedure,\n// if it is already found and loaded into memory.\nfunc (p *LazyProc) Find() error {\n\t// Non-racy version of:\n\t// if p.proc == nil {\n\tif atomic.LoadPointer((*unsafe.Pointer)(unsafe.Pointer(&p.proc))) == nil {\n\t\tp.mu.Lock()\n\t\tdefer p.mu.Unlock()\n\t\tif p.proc == nil {\n\t\t\te := p.l.Load()\n\t\t\tif e != nil {\n\t\t\t\treturn e\n\t\t\t}\n\t\t\tproc, e := p.l.dll.FindProc(p.Name)\n\t\t\tif e != nil {\n\t\t\t\treturn e\n\t\t\t}\n\t\t\t// Non-racy version of:\n\t\t\t// p.proc = proc\n\t\t\tatomic.StorePointer((*unsafe.Pointer)(unsafe.Pointer(&p.proc)), unsafe.Pointer(proc))\n\t\t}\n\t}\n\treturn nil\n}\n\n// mustFind is like Find but panics if search fails.\nfunc (p *LazyProc) mustFind() {\n\te := p.Find()\n\tif e != nil {\n\t\tpanic(e)\n\t}\n}\n\n// Addr returns the address of the procedure represented by p.\n// The return value can be passed to Syscall to run the procedure.\n// It will panic if the procedure cannot be found.\nfunc (p *LazyProc) Addr() uintptr {\n\tp.mustFind()\n\treturn p.proc.Addr()\n}\n\n//go:uintptrescapes\n\n// Call executes procedure p with arguments a. It will panic, if more than 15 arguments\n// are supplied. It will also panic if the procedure cannot be found.\n//\n// The returned error is always non-nil, constructed from the result of GetLastError.\n// Callers must inspect the primary return value to decide whether an error occurred\n// (according to the semantics of the specific function being called) before consulting\n// the error. The error will be guaranteed to contain windows.Errno.\nfunc (p *LazyProc) Call(a ...uintptr) (r1, r2 uintptr, lastErr error) {\n\tp.mustFind()\n\treturn p.proc.Call(a...)\n}\n\nvar canDoSearchSystem32Once struct {\n\tsync.Once\n\tv bool\n}\n\nfunc initCanDoSearchSystem32() {\n\t// https://msdn.microsoft.com/en-us/library/ms684179(v=vs.85).aspx says:\n\t// \"Windows 7, Windows Server 2008 R2, Windows Vista, and Windows\n\t// Server 2008: The LOAD_LIBRARY_SEARCH_* flags are available on\n\t// systems that have KB2533623 installed. To determine whether the\n\t// flags are available, use GetProcAddress to get the address of the\n\t// AddDllDirectory, RemoveDllDirectory, or SetDefaultDllDirectories\n\t// function. If GetProcAddress succeeds, the LOAD_LIBRARY_SEARCH_*\n\t// flags can be used with LoadLibraryEx.\"\n\tcanDoSearchSystem32Once.v = (modkernel32.NewProc(\"AddDllDirectory\").Find() == nil)\n}\n\nfunc canDoSearchSystem32() bool {\n\tcanDoSearchSystem32Once.Do(initCanDoSearchSystem32)\n\treturn canDoSearchSystem32Once.v\n}\n\nfunc isBaseName(name string) bool {\n\tfor _, c := range name {\n\t\tif c == ':' || c == '/' || c == '\\\\' {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// loadLibraryEx wraps the Windows LoadLibraryEx function.\n//\n// See https://msdn.microsoft.com/en-us/library/windows/desktop/ms684179(v=vs.85).aspx\n//\n// If name is not an absolute path, LoadLibraryEx searches for the DLL\n// in a variety of automatic locations unless constrained by flags.\n// See: https://msdn.microsoft.com/en-us/library/ff919712%28VS.85%29.aspx\nfunc loadLibraryEx(name string, system bool) (*DLL, error) {\n\tloadDLL := name\n\tvar flags uintptr\n\tif system {\n\t\tif canDoSearchSystem32() {\n\t\t\tconst LOAD_LIBRARY_SEARCH_SYSTEM32 = 0x00000800\n\t\t\tflags = LOAD_LIBRARY_SEARCH_SYSTEM32\n\t\t} else if isBaseName(name) {\n\t\t\t// WindowsXP or unpatched Windows machine\n\t\t\t// trying to load \"foo.dll\" out of the system\n\t\t\t// folder, but LoadLibraryEx doesn't support\n\t\t\t// that yet on their system, so emulate it.\n\t\t\tsystemdir, err := GetSystemDirectory()\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tloadDLL = systemdir + \"\\\\\" + name\n\t\t}\n\t}\n\th, err := LoadLibraryEx(loadDLL, 0, flags)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &DLL{Name: name, Handle: h}, nil\n}\n\ntype errString string\n\nfunc (s errString) Error() string { return string(s) }\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/empty.s",
    "content": "// Copyright 2019 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !go1.12\n\n// This file is here to allow bodyless functions with go:linkname for Go 1.11\n// and earlier (see https://golang.org/issue/23311).\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/env_windows.go",
    "content": "// Copyright 2010 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Windows environment variables.\n\npackage windows\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc Getenv(key string) (value string, found bool) {\n\treturn syscall.Getenv(key)\n}\n\nfunc Setenv(key, value string) error {\n\treturn syscall.Setenv(key, value)\n}\n\nfunc Clearenv() {\n\tsyscall.Clearenv()\n}\n\nfunc Environ() []string {\n\treturn syscall.Environ()\n}\n\n// Returns a default environment associated with the token, rather than the current\n// process. If inheritExisting is true, then this environment also inherits the\n// environment of the current process.\nfunc (token Token) Environ(inheritExisting bool) (env []string, err error) {\n\tvar block *uint16\n\terr = CreateEnvironmentBlock(&block, token, inheritExisting)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer DestroyEnvironmentBlock(block)\n\tblockp := uintptr(unsafe.Pointer(block))\n\tfor {\n\t\tentry := UTF16PtrToString((*uint16)(unsafe.Pointer(blockp)))\n\t\tif len(entry) == 0 {\n\t\t\tbreak\n\t\t}\n\t\tenv = append(env, entry)\n\t\tblockp += 2 * (uintptr(len(entry)) + 1)\n\t}\n\treturn env, nil\n}\n\nfunc Unsetenv(key string) error {\n\treturn syscall.Unsetenv(key)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/eventlog.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build windows\n\npackage windows\n\nconst (\n\tEVENTLOG_SUCCESS          = 0\n\tEVENTLOG_ERROR_TYPE       = 1\n\tEVENTLOG_WARNING_TYPE     = 2\n\tEVENTLOG_INFORMATION_TYPE = 4\n\tEVENTLOG_AUDIT_SUCCESS    = 8\n\tEVENTLOG_AUDIT_FAILURE    = 16\n)\n\n//sys\tRegisterEventSource(uncServerName *uint16, sourceName *uint16) (handle Handle, err error) [failretval==0] = advapi32.RegisterEventSourceW\n//sys\tDeregisterEventSource(handle Handle) (err error) = advapi32.DeregisterEventSource\n//sys\tReportEvent(log Handle, etype uint16, category uint16, eventId uint32, usrSId uintptr, numStrings uint16, dataSize uint32, strings **uint16, rawData *byte) (err error) = advapi32.ReportEventW\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/exec_windows.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Fork, exec, wait, etc.\n\npackage windows\n\n// EscapeArg rewrites command line argument s as prescribed\n// in http://msdn.microsoft.com/en-us/library/ms880421.\n// This function returns \"\" (2 double quotes) if s is empty.\n// Alternatively, these transformations are done:\n// - every back slash (\\) is doubled, but only if immediately\n//   followed by double quote (\");\n// - every double quote (\") is escaped by back slash (\\);\n// - finally, s is wrapped with double quotes (arg -> \"arg\"),\n//   but only if there is space or tab inside s.\nfunc EscapeArg(s string) string {\n\tif len(s) == 0 {\n\t\treturn \"\\\"\\\"\"\n\t}\n\tn := len(s)\n\thasSpace := false\n\tfor i := 0; i < len(s); i++ {\n\t\tswitch s[i] {\n\t\tcase '\"', '\\\\':\n\t\t\tn++\n\t\tcase ' ', '\\t':\n\t\t\thasSpace = true\n\t\t}\n\t}\n\tif hasSpace {\n\t\tn += 2\n\t}\n\tif n == len(s) {\n\t\treturn s\n\t}\n\n\tqs := make([]byte, n)\n\tj := 0\n\tif hasSpace {\n\t\tqs[j] = '\"'\n\t\tj++\n\t}\n\tslashes := 0\n\tfor i := 0; i < len(s); i++ {\n\t\tswitch s[i] {\n\t\tdefault:\n\t\t\tslashes = 0\n\t\t\tqs[j] = s[i]\n\t\tcase '\\\\':\n\t\t\tslashes++\n\t\t\tqs[j] = s[i]\n\t\tcase '\"':\n\t\t\tfor ; slashes > 0; slashes-- {\n\t\t\t\tqs[j] = '\\\\'\n\t\t\t\tj++\n\t\t\t}\n\t\t\tqs[j] = '\\\\'\n\t\t\tj++\n\t\t\tqs[j] = s[i]\n\t\t}\n\t\tj++\n\t}\n\tif hasSpace {\n\t\tfor ; slashes > 0; slashes-- {\n\t\t\tqs[j] = '\\\\'\n\t\t\tj++\n\t\t}\n\t\tqs[j] = '\"'\n\t\tj++\n\t}\n\treturn string(qs[:j])\n}\n\nfunc CloseOnExec(fd Handle) {\n\tSetHandleInformation(Handle(fd), HANDLE_FLAG_INHERIT, 0)\n}\n\n// FullPath retrieves the full path of the specified file.\nfunc FullPath(name string) (path string, err error) {\n\tp, err := UTF16PtrFromString(name)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tn := uint32(100)\n\tfor {\n\t\tbuf := make([]uint16, n)\n\t\tn, err = GetFullPathName(p, uint32(len(buf)), &buf[0], nil)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tif n <= uint32(len(buf)) {\n\t\t\treturn UTF16ToString(buf[:n]), nil\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/memory_windows.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage windows\n\nconst (\n\tMEM_COMMIT      = 0x00001000\n\tMEM_RESERVE     = 0x00002000\n\tMEM_DECOMMIT    = 0x00004000\n\tMEM_RELEASE     = 0x00008000\n\tMEM_RESET       = 0x00080000\n\tMEM_TOP_DOWN    = 0x00100000\n\tMEM_WRITE_WATCH = 0x00200000\n\tMEM_PHYSICAL    = 0x00400000\n\tMEM_RESET_UNDO  = 0x01000000\n\tMEM_LARGE_PAGES = 0x20000000\n\n\tPAGE_NOACCESS          = 0x01\n\tPAGE_READONLY          = 0x02\n\tPAGE_READWRITE         = 0x04\n\tPAGE_WRITECOPY         = 0x08\n\tPAGE_EXECUTE_READ      = 0x20\n\tPAGE_EXECUTE_READWRITE = 0x40\n\tPAGE_EXECUTE_WRITECOPY = 0x80\n\n\tQUOTA_LIMITS_HARDWS_MIN_DISABLE = 0x00000002\n\tQUOTA_LIMITS_HARDWS_MIN_ENABLE  = 0x00000001\n\tQUOTA_LIMITS_HARDWS_MAX_DISABLE = 0x00000008\n\tQUOTA_LIMITS_HARDWS_MAX_ENABLE  = 0x00000004\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/mkerrors.bash",
    "content": "#!/bin/bash\n\n# Copyright 2019 The Go Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style\n# license that can be found in the LICENSE file.\n\nset -e\nshopt -s nullglob\n\nwinerror=\"$(printf '%s\\n' \"/mnt/c/Program Files (x86)/Windows Kits/\"/*/Include/*/shared/winerror.h | sort -Vr | head -n 1)\"\n[[ -n $winerror ]] || { echo \"Unable to find winerror.h\" >&2; exit 1; }\n\ndeclare -A errors\n\n{\n\techo \"// Code generated by 'mkerrors.bash'; DO NOT EDIT.\"\n\techo\n\techo \"package windows\"\n\techo \"import \\\"syscall\\\"\"\n\techo \"const (\"\n\n\twhile read -r line; do\n\t\tunset vtype\n\t\tif [[ $line =~ ^#define\\ +([A-Z0-9_]+k?)\\ +([A-Z0-9_]+\\()?([A-Z][A-Z0-9_]+k?)\\)? ]]; then\n\t\t\tkey=\"${BASH_REMATCH[1]}\"\n\t\t\tvalue=\"${BASH_REMATCH[3]}\"\n\t\telif [[ $line =~ ^#define\\ +([A-Z0-9_]+k?)\\ +([A-Z0-9_]+\\()?((0x)?[0-9A-Fa-f]+)L?\\)? ]]; then\n\t\t\tkey=\"${BASH_REMATCH[1]}\"\n\t\t\tvalue=\"${BASH_REMATCH[3]}\"\n\t\t\tvtype=\"${BASH_REMATCH[2]}\"\n\t\telif [[ $line =~ ^#define\\ +([A-Z0-9_]+k?)\\ +\\(\\(([A-Z]+)\\)((0x)?[0-9A-Fa-f]+)L?\\) ]]; then\n\t\t\tkey=\"${BASH_REMATCH[1]}\"\n\t\t\tvalue=\"${BASH_REMATCH[3]}\"\n\t\t\tvtype=\"${BASH_REMATCH[2]}\"\n\t\telse\n\t\t\tcontinue\n\t\tfi\n\t\t[[ -n $key && -n $value ]] || continue\n\t\t[[ -z ${errors[\"$key\"]} ]] || continue\n\t\terrors[\"$key\"]=\"$value\"\n\t\tif [[ -v vtype ]]; then\n\t\t\tif [[ $key == FACILITY_* || $key == NO_ERROR ]]; then\n\t\t\t\tvtype=\"\"\n\t\t\telif [[ $vtype == *HANDLE* || $vtype == *HRESULT* ]]; then\n\t\t\t\tvtype=\"Handle\"\n\t\t\telse\n\t\t\t\tvtype=\"syscall.Errno\"\n\t\t\tfi\n\t\t\tlast_vtype=\"$vtype\"\n\t\telse\n\t\t\tvtype=\"\"\n\t\t\tif [[ $last_vtype == Handle && $value == NO_ERROR ]]; then\n\t\t\t\tvalue=\"S_OK\"\n\t\t\telif [[ $last_vtype == syscall.Errno && $value == NO_ERROR ]]; then\n\t\t\t\tvalue=\"ERROR_SUCCESS\"\n\t\t\tfi\n\t\tfi\n\n\t\techo \"$key $vtype = $value\"\n\tdone < \"$winerror\"\n\n\techo \")\"\n} | gofmt > \"zerrors_windows.go\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/mkknownfolderids.bash",
    "content": "#!/bin/bash\n\n# Copyright 2019 The Go Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style\n# license that can be found in the LICENSE file.\n\nset -e\nshopt -s nullglob\n\nknownfolders=\"$(printf '%s\\n' \"/mnt/c/Program Files (x86)/Windows Kits/\"/*/Include/*/um/KnownFolders.h | sort -Vr | head -n 1)\"\n[[ -n $knownfolders ]] || { echo \"Unable to find KnownFolders.h\" >&2; exit 1; }\n\n{\n\techo \"// Code generated by 'mkknownfolderids.bash'; DO NOT EDIT.\"\n\techo\n\techo \"package windows\"\n\techo \"type KNOWNFOLDERID GUID\"\n\techo \"var (\"\n\twhile read -r line; do\n\t\t[[ $line =~ DEFINE_KNOWN_FOLDER\\((FOLDERID_[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+),[\\t\\ ]*(0x[^,]+)\\) ]] || continue\n\t\tprintf \"%s = &KNOWNFOLDERID{0x%08x, 0x%04x, 0x%04x, [8]byte{0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x, 0x%02x}}\\n\" \\\n\t\t\t\"${BASH_REMATCH[1]}\" $(( \"${BASH_REMATCH[2]}\" )) $(( \"${BASH_REMATCH[3]}\" )) $(( \"${BASH_REMATCH[4]}\" )) \\\n\t\t\t$(( \"${BASH_REMATCH[5]}\" )) $(( \"${BASH_REMATCH[6]}\" )) $(( \"${BASH_REMATCH[7]}\" )) $(( \"${BASH_REMATCH[8]}\" )) \\\n\t\t\t$(( \"${BASH_REMATCH[9]}\" )) $(( \"${BASH_REMATCH[10]}\" )) $(( \"${BASH_REMATCH[11]}\" )) $(( \"${BASH_REMATCH[12]}\" ))\n\tdone < \"$knownfolders\"\n\techo \")\"\n} | gofmt > \"zknownfolderids_windows.go\"\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/mksyscall.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build generate\n\npackage windows\n\n//go:generate go run golang.org/x/sys/windows/mkwinsyscall -output zsyscall_windows.go eventlog.go service.go syscall_windows.go security_windows.go\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/race.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build windows,race\n\npackage windows\n\nimport (\n\t\"runtime\"\n\t\"unsafe\"\n)\n\nconst raceenabled = true\n\nfunc raceAcquire(addr unsafe.Pointer) {\n\truntime.RaceAcquire(addr)\n}\n\nfunc raceReleaseMerge(addr unsafe.Pointer) {\n\truntime.RaceReleaseMerge(addr)\n}\n\nfunc raceReadRange(addr unsafe.Pointer, len int) {\n\truntime.RaceReadRange(addr, len)\n}\n\nfunc raceWriteRange(addr unsafe.Pointer, len int) {\n\truntime.RaceWriteRange(addr, len)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/race0.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build windows,!race\n\npackage windows\n\nimport (\n\t\"unsafe\"\n)\n\nconst raceenabled = false\n\nfunc raceAcquire(addr unsafe.Pointer) {\n}\n\nfunc raceReleaseMerge(addr unsafe.Pointer) {\n}\n\nfunc raceReadRange(addr unsafe.Pointer, len int) {\n}\n\nfunc raceWriteRange(addr unsafe.Pointer, len int) {\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/security_windows.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage windows\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n\n\t\"golang.org/x/sys/internal/unsafeheader\"\n)\n\nconst (\n\tNameUnknown          = 0\n\tNameFullyQualifiedDN = 1\n\tNameSamCompatible    = 2\n\tNameDisplay          = 3\n\tNameUniqueId         = 6\n\tNameCanonical        = 7\n\tNameUserPrincipal    = 8\n\tNameCanonicalEx      = 9\n\tNameServicePrincipal = 10\n\tNameDnsDomain        = 12\n)\n\n// This function returns 1 byte BOOLEAN rather than the 4 byte BOOL.\n// http://blogs.msdn.com/b/drnick/archive/2007/12/19/windows-and-upn-format-credentials.aspx\n//sys\tTranslateName(accName *uint16, accNameFormat uint32, desiredNameFormat uint32, translatedName *uint16, nSize *uint32) (err error) [failretval&0xff==0] = secur32.TranslateNameW\n//sys\tGetUserNameEx(nameFormat uint32, nameBuffre *uint16, nSize *uint32) (err error) [failretval&0xff==0] = secur32.GetUserNameExW\n\n// TranslateAccountName converts a directory service\n// object name from one format to another.\nfunc TranslateAccountName(username string, from, to uint32, initSize int) (string, error) {\n\tu, e := UTF16PtrFromString(username)\n\tif e != nil {\n\t\treturn \"\", e\n\t}\n\tn := uint32(50)\n\tfor {\n\t\tb := make([]uint16, n)\n\t\te = TranslateName(u, from, to, &b[0], &n)\n\t\tif e == nil {\n\t\t\treturn UTF16ToString(b[:n]), nil\n\t\t}\n\t\tif e != ERROR_INSUFFICIENT_BUFFER {\n\t\t\treturn \"\", e\n\t\t}\n\t\tif n <= uint32(len(b)) {\n\t\t\treturn \"\", e\n\t\t}\n\t}\n}\n\nconst (\n\t// do not reorder\n\tNetSetupUnknownStatus = iota\n\tNetSetupUnjoined\n\tNetSetupWorkgroupName\n\tNetSetupDomainName\n)\n\ntype UserInfo10 struct {\n\tName       *uint16\n\tComment    *uint16\n\tUsrComment *uint16\n\tFullName   *uint16\n}\n\n//sys\tNetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) = netapi32.NetUserGetInfo\n//sys\tNetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (neterr error) = netapi32.NetGetJoinInformation\n//sys\tNetApiBufferFree(buf *byte) (neterr error) = netapi32.NetApiBufferFree\n\nconst (\n\t// do not reorder\n\tSidTypeUser = 1 + iota\n\tSidTypeGroup\n\tSidTypeDomain\n\tSidTypeAlias\n\tSidTypeWellKnownGroup\n\tSidTypeDeletedAccount\n\tSidTypeInvalid\n\tSidTypeUnknown\n\tSidTypeComputer\n\tSidTypeLabel\n)\n\ntype SidIdentifierAuthority struct {\n\tValue [6]byte\n}\n\nvar (\n\tSECURITY_NULL_SID_AUTHORITY        = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 0}}\n\tSECURITY_WORLD_SID_AUTHORITY       = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 1}}\n\tSECURITY_LOCAL_SID_AUTHORITY       = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 2}}\n\tSECURITY_CREATOR_SID_AUTHORITY     = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 3}}\n\tSECURITY_NON_UNIQUE_AUTHORITY      = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 4}}\n\tSECURITY_NT_AUTHORITY              = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 5}}\n\tSECURITY_MANDATORY_LABEL_AUTHORITY = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 16}}\n)\n\nconst (\n\tSECURITY_NULL_RID                   = 0\n\tSECURITY_WORLD_RID                  = 0\n\tSECURITY_LOCAL_RID                  = 0\n\tSECURITY_CREATOR_OWNER_RID          = 0\n\tSECURITY_CREATOR_GROUP_RID          = 1\n\tSECURITY_DIALUP_RID                 = 1\n\tSECURITY_NETWORK_RID                = 2\n\tSECURITY_BATCH_RID                  = 3\n\tSECURITY_INTERACTIVE_RID            = 4\n\tSECURITY_LOGON_IDS_RID              = 5\n\tSECURITY_SERVICE_RID                = 6\n\tSECURITY_LOCAL_SYSTEM_RID           = 18\n\tSECURITY_BUILTIN_DOMAIN_RID         = 32\n\tSECURITY_PRINCIPAL_SELF_RID         = 10\n\tSECURITY_CREATOR_OWNER_SERVER_RID   = 0x2\n\tSECURITY_CREATOR_GROUP_SERVER_RID   = 0x3\n\tSECURITY_LOGON_IDS_RID_COUNT        = 0x3\n\tSECURITY_ANONYMOUS_LOGON_RID        = 0x7\n\tSECURITY_PROXY_RID                  = 0x8\n\tSECURITY_ENTERPRISE_CONTROLLERS_RID = 0x9\n\tSECURITY_SERVER_LOGON_RID           = SECURITY_ENTERPRISE_CONTROLLERS_RID\n\tSECURITY_AUTHENTICATED_USER_RID     = 0xb\n\tSECURITY_RESTRICTED_CODE_RID        = 0xc\n\tSECURITY_NT_NON_UNIQUE_RID          = 0x15\n)\n\n// Predefined domain-relative RIDs for local groups.\n// See https://msdn.microsoft.com/en-us/library/windows/desktop/aa379649(v=vs.85).aspx\nconst (\n\tDOMAIN_ALIAS_RID_ADMINS                         = 0x220\n\tDOMAIN_ALIAS_RID_USERS                          = 0x221\n\tDOMAIN_ALIAS_RID_GUESTS                         = 0x222\n\tDOMAIN_ALIAS_RID_POWER_USERS                    = 0x223\n\tDOMAIN_ALIAS_RID_ACCOUNT_OPS                    = 0x224\n\tDOMAIN_ALIAS_RID_SYSTEM_OPS                     = 0x225\n\tDOMAIN_ALIAS_RID_PRINT_OPS                      = 0x226\n\tDOMAIN_ALIAS_RID_BACKUP_OPS                     = 0x227\n\tDOMAIN_ALIAS_RID_REPLICATOR                     = 0x228\n\tDOMAIN_ALIAS_RID_RAS_SERVERS                    = 0x229\n\tDOMAIN_ALIAS_RID_PREW2KCOMPACCESS               = 0x22a\n\tDOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS           = 0x22b\n\tDOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS      = 0x22c\n\tDOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS = 0x22d\n\tDOMAIN_ALIAS_RID_MONITORING_USERS               = 0x22e\n\tDOMAIN_ALIAS_RID_LOGGING_USERS                  = 0x22f\n\tDOMAIN_ALIAS_RID_AUTHORIZATIONACCESS            = 0x230\n\tDOMAIN_ALIAS_RID_TS_LICENSE_SERVERS             = 0x231\n\tDOMAIN_ALIAS_RID_DCOM_USERS                     = 0x232\n\tDOMAIN_ALIAS_RID_IUSERS                         = 0x238\n\tDOMAIN_ALIAS_RID_CRYPTO_OPERATORS               = 0x239\n\tDOMAIN_ALIAS_RID_CACHEABLE_PRINCIPALS_GROUP     = 0x23b\n\tDOMAIN_ALIAS_RID_NON_CACHEABLE_PRINCIPALS_GROUP = 0x23c\n\tDOMAIN_ALIAS_RID_EVENT_LOG_READERS_GROUP        = 0x23d\n\tDOMAIN_ALIAS_RID_CERTSVC_DCOM_ACCESS_GROUP      = 0x23e\n)\n\n//sys\tLookupAccountSid(systemName *uint16, sid *SID, name *uint16, nameLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) = advapi32.LookupAccountSidW\n//sys\tLookupAccountName(systemName *uint16, accountName *uint16, sid *SID, sidLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) = advapi32.LookupAccountNameW\n//sys\tConvertSidToStringSid(sid *SID, stringSid **uint16) (err error) = advapi32.ConvertSidToStringSidW\n//sys\tConvertStringSidToSid(stringSid *uint16, sid **SID) (err error) = advapi32.ConvertStringSidToSidW\n//sys\tGetLengthSid(sid *SID) (len uint32) = advapi32.GetLengthSid\n//sys\tCopySid(destSidLen uint32, destSid *SID, srcSid *SID) (err error) = advapi32.CopySid\n//sys\tAllocateAndInitializeSid(identAuth *SidIdentifierAuthority, subAuth byte, subAuth0 uint32, subAuth1 uint32, subAuth2 uint32, subAuth3 uint32, subAuth4 uint32, subAuth5 uint32, subAuth6 uint32, subAuth7 uint32, sid **SID) (err error) = advapi32.AllocateAndInitializeSid\n//sys\tcreateWellKnownSid(sidType WELL_KNOWN_SID_TYPE, domainSid *SID, sid *SID, sizeSid *uint32) (err error) = advapi32.CreateWellKnownSid\n//sys\tisWellKnownSid(sid *SID, sidType WELL_KNOWN_SID_TYPE) (isWellKnown bool) = advapi32.IsWellKnownSid\n//sys\tFreeSid(sid *SID) (err error) [failretval!=0] = advapi32.FreeSid\n//sys\tEqualSid(sid1 *SID, sid2 *SID) (isEqual bool) = advapi32.EqualSid\n//sys\tgetSidIdentifierAuthority(sid *SID) (authority *SidIdentifierAuthority) = advapi32.GetSidIdentifierAuthority\n//sys\tgetSidSubAuthorityCount(sid *SID) (count *uint8) = advapi32.GetSidSubAuthorityCount\n//sys\tgetSidSubAuthority(sid *SID, index uint32) (subAuthority *uint32) = advapi32.GetSidSubAuthority\n//sys\tisValidSid(sid *SID) (isValid bool) = advapi32.IsValidSid\n\n// The security identifier (SID) structure is a variable-length\n// structure used to uniquely identify users or groups.\ntype SID struct{}\n\n// StringToSid converts a string-format security identifier\n// SID into a valid, functional SID.\nfunc StringToSid(s string) (*SID, error) {\n\tvar sid *SID\n\tp, e := UTF16PtrFromString(s)\n\tif e != nil {\n\t\treturn nil, e\n\t}\n\te = ConvertStringSidToSid(p, &sid)\n\tif e != nil {\n\t\treturn nil, e\n\t}\n\tdefer LocalFree((Handle)(unsafe.Pointer(sid)))\n\treturn sid.Copy()\n}\n\n// LookupSID retrieves a security identifier SID for the account\n// and the name of the domain on which the account was found.\n// System specify target computer to search.\nfunc LookupSID(system, account string) (sid *SID, domain string, accType uint32, err error) {\n\tif len(account) == 0 {\n\t\treturn nil, \"\", 0, syscall.EINVAL\n\t}\n\tacc, e := UTF16PtrFromString(account)\n\tif e != nil {\n\t\treturn nil, \"\", 0, e\n\t}\n\tvar sys *uint16\n\tif len(system) > 0 {\n\t\tsys, e = UTF16PtrFromString(system)\n\t\tif e != nil {\n\t\t\treturn nil, \"\", 0, e\n\t\t}\n\t}\n\tn := uint32(50)\n\tdn := uint32(50)\n\tfor {\n\t\tb := make([]byte, n)\n\t\tdb := make([]uint16, dn)\n\t\tsid = (*SID)(unsafe.Pointer(&b[0]))\n\t\te = LookupAccountName(sys, acc, sid, &n, &db[0], &dn, &accType)\n\t\tif e == nil {\n\t\t\treturn sid, UTF16ToString(db), accType, nil\n\t\t}\n\t\tif e != ERROR_INSUFFICIENT_BUFFER {\n\t\t\treturn nil, \"\", 0, e\n\t\t}\n\t\tif n <= uint32(len(b)) {\n\t\t\treturn nil, \"\", 0, e\n\t\t}\n\t}\n}\n\n// String converts SID to a string format suitable for display, storage, or transmission.\nfunc (sid *SID) String() string {\n\tvar s *uint16\n\te := ConvertSidToStringSid(sid, &s)\n\tif e != nil {\n\t\treturn \"\"\n\t}\n\tdefer LocalFree((Handle)(unsafe.Pointer(s)))\n\treturn UTF16ToString((*[256]uint16)(unsafe.Pointer(s))[:])\n}\n\n// Len returns the length, in bytes, of a valid security identifier SID.\nfunc (sid *SID) Len() int {\n\treturn int(GetLengthSid(sid))\n}\n\n// Copy creates a duplicate of security identifier SID.\nfunc (sid *SID) Copy() (*SID, error) {\n\tb := make([]byte, sid.Len())\n\tsid2 := (*SID)(unsafe.Pointer(&b[0]))\n\te := CopySid(uint32(len(b)), sid2, sid)\n\tif e != nil {\n\t\treturn nil, e\n\t}\n\treturn sid2, nil\n}\n\n// IdentifierAuthority returns the identifier authority of the SID.\nfunc (sid *SID) IdentifierAuthority() SidIdentifierAuthority {\n\treturn *getSidIdentifierAuthority(sid)\n}\n\n// SubAuthorityCount returns the number of sub-authorities in the SID.\nfunc (sid *SID) SubAuthorityCount() uint8 {\n\treturn *getSidSubAuthorityCount(sid)\n}\n\n// SubAuthority returns the sub-authority of the SID as specified by\n// the index, which must be less than sid.SubAuthorityCount().\nfunc (sid *SID) SubAuthority(idx uint32) uint32 {\n\tif idx >= uint32(sid.SubAuthorityCount()) {\n\t\tpanic(\"sub-authority index out of range\")\n\t}\n\treturn *getSidSubAuthority(sid, idx)\n}\n\n// IsValid returns whether the SID has a valid revision and length.\nfunc (sid *SID) IsValid() bool {\n\treturn isValidSid(sid)\n}\n\n// Equals compares two SIDs for equality.\nfunc (sid *SID) Equals(sid2 *SID) bool {\n\treturn EqualSid(sid, sid2)\n}\n\n// IsWellKnown determines whether the SID matches the well-known sidType.\nfunc (sid *SID) IsWellKnown(sidType WELL_KNOWN_SID_TYPE) bool {\n\treturn isWellKnownSid(sid, sidType)\n}\n\n// LookupAccount retrieves the name of the account for this SID\n// and the name of the first domain on which this SID is found.\n// System specify target computer to search for.\nfunc (sid *SID) LookupAccount(system string) (account, domain string, accType uint32, err error) {\n\tvar sys *uint16\n\tif len(system) > 0 {\n\t\tsys, err = UTF16PtrFromString(system)\n\t\tif err != nil {\n\t\t\treturn \"\", \"\", 0, err\n\t\t}\n\t}\n\tn := uint32(50)\n\tdn := uint32(50)\n\tfor {\n\t\tb := make([]uint16, n)\n\t\tdb := make([]uint16, dn)\n\t\te := LookupAccountSid(sys, sid, &b[0], &n, &db[0], &dn, &accType)\n\t\tif e == nil {\n\t\t\treturn UTF16ToString(b), UTF16ToString(db), accType, nil\n\t\t}\n\t\tif e != ERROR_INSUFFICIENT_BUFFER {\n\t\t\treturn \"\", \"\", 0, e\n\t\t}\n\t\tif n <= uint32(len(b)) {\n\t\t\treturn \"\", \"\", 0, e\n\t\t}\n\t}\n}\n\n// Various types of pre-specified SIDs that can be synthesized and compared at runtime.\ntype WELL_KNOWN_SID_TYPE uint32\n\nconst (\n\tWinNullSid                                    = 0\n\tWinWorldSid                                   = 1\n\tWinLocalSid                                   = 2\n\tWinCreatorOwnerSid                            = 3\n\tWinCreatorGroupSid                            = 4\n\tWinCreatorOwnerServerSid                      = 5\n\tWinCreatorGroupServerSid                      = 6\n\tWinNtAuthoritySid                             = 7\n\tWinDialupSid                                  = 8\n\tWinNetworkSid                                 = 9\n\tWinBatchSid                                   = 10\n\tWinInteractiveSid                             = 11\n\tWinServiceSid                                 = 12\n\tWinAnonymousSid                               = 13\n\tWinProxySid                                   = 14\n\tWinEnterpriseControllersSid                   = 15\n\tWinSelfSid                                    = 16\n\tWinAuthenticatedUserSid                       = 17\n\tWinRestrictedCodeSid                          = 18\n\tWinTerminalServerSid                          = 19\n\tWinRemoteLogonIdSid                           = 20\n\tWinLogonIdsSid                                = 21\n\tWinLocalSystemSid                             = 22\n\tWinLocalServiceSid                            = 23\n\tWinNetworkServiceSid                          = 24\n\tWinBuiltinDomainSid                           = 25\n\tWinBuiltinAdministratorsSid                   = 26\n\tWinBuiltinUsersSid                            = 27\n\tWinBuiltinGuestsSid                           = 28\n\tWinBuiltinPowerUsersSid                       = 29\n\tWinBuiltinAccountOperatorsSid                 = 30\n\tWinBuiltinSystemOperatorsSid                  = 31\n\tWinBuiltinPrintOperatorsSid                   = 32\n\tWinBuiltinBackupOperatorsSid                  = 33\n\tWinBuiltinReplicatorSid                       = 34\n\tWinBuiltinPreWindows2000CompatibleAccessSid   = 35\n\tWinBuiltinRemoteDesktopUsersSid               = 36\n\tWinBuiltinNetworkConfigurationOperatorsSid    = 37\n\tWinAccountAdministratorSid                    = 38\n\tWinAccountGuestSid                            = 39\n\tWinAccountKrbtgtSid                           = 40\n\tWinAccountDomainAdminsSid                     = 41\n\tWinAccountDomainUsersSid                      = 42\n\tWinAccountDomainGuestsSid                     = 43\n\tWinAccountComputersSid                        = 44\n\tWinAccountControllersSid                      = 45\n\tWinAccountCertAdminsSid                       = 46\n\tWinAccountSchemaAdminsSid                     = 47\n\tWinAccountEnterpriseAdminsSid                 = 48\n\tWinAccountPolicyAdminsSid                     = 49\n\tWinAccountRasAndIasServersSid                 = 50\n\tWinNTLMAuthenticationSid                      = 51\n\tWinDigestAuthenticationSid                    = 52\n\tWinSChannelAuthenticationSid                  = 53\n\tWinThisOrganizationSid                        = 54\n\tWinOtherOrganizationSid                       = 55\n\tWinBuiltinIncomingForestTrustBuildersSid      = 56\n\tWinBuiltinPerfMonitoringUsersSid              = 57\n\tWinBuiltinPerfLoggingUsersSid                 = 58\n\tWinBuiltinAuthorizationAccessSid              = 59\n\tWinBuiltinTerminalServerLicenseServersSid     = 60\n\tWinBuiltinDCOMUsersSid                        = 61\n\tWinBuiltinIUsersSid                           = 62\n\tWinIUserSid                                   = 63\n\tWinBuiltinCryptoOperatorsSid                  = 64\n\tWinUntrustedLabelSid                          = 65\n\tWinLowLabelSid                                = 66\n\tWinMediumLabelSid                             = 67\n\tWinHighLabelSid                               = 68\n\tWinSystemLabelSid                             = 69\n\tWinWriteRestrictedCodeSid                     = 70\n\tWinCreatorOwnerRightsSid                      = 71\n\tWinCacheablePrincipalsGroupSid                = 72\n\tWinNonCacheablePrincipalsGroupSid             = 73\n\tWinEnterpriseReadonlyControllersSid           = 74\n\tWinAccountReadonlyControllersSid              = 75\n\tWinBuiltinEventLogReadersGroup                = 76\n\tWinNewEnterpriseReadonlyControllersSid        = 77\n\tWinBuiltinCertSvcDComAccessGroup              = 78\n\tWinMediumPlusLabelSid                         = 79\n\tWinLocalLogonSid                              = 80\n\tWinConsoleLogonSid                            = 81\n\tWinThisOrganizationCertificateSid             = 82\n\tWinApplicationPackageAuthoritySid             = 83\n\tWinBuiltinAnyPackageSid                       = 84\n\tWinCapabilityInternetClientSid                = 85\n\tWinCapabilityInternetClientServerSid          = 86\n\tWinCapabilityPrivateNetworkClientServerSid    = 87\n\tWinCapabilityPicturesLibrarySid               = 88\n\tWinCapabilityVideosLibrarySid                 = 89\n\tWinCapabilityMusicLibrarySid                  = 90\n\tWinCapabilityDocumentsLibrarySid              = 91\n\tWinCapabilitySharedUserCertificatesSid        = 92\n\tWinCapabilityEnterpriseAuthenticationSid      = 93\n\tWinCapabilityRemovableStorageSid              = 94\n\tWinBuiltinRDSRemoteAccessServersSid           = 95\n\tWinBuiltinRDSEndpointServersSid               = 96\n\tWinBuiltinRDSManagementServersSid             = 97\n\tWinUserModeDriversSid                         = 98\n\tWinBuiltinHyperVAdminsSid                     = 99\n\tWinAccountCloneableControllersSid             = 100\n\tWinBuiltinAccessControlAssistanceOperatorsSid = 101\n\tWinBuiltinRemoteManagementUsersSid            = 102\n\tWinAuthenticationAuthorityAssertedSid         = 103\n\tWinAuthenticationServiceAssertedSid           = 104\n\tWinLocalAccountSid                            = 105\n\tWinLocalAccountAndAdministratorSid            = 106\n\tWinAccountProtectedUsersSid                   = 107\n\tWinCapabilityAppointmentsSid                  = 108\n\tWinCapabilityContactsSid                      = 109\n\tWinAccountDefaultSystemManagedSid             = 110\n\tWinBuiltinDefaultSystemManagedGroupSid        = 111\n\tWinBuiltinStorageReplicaAdminsSid             = 112\n\tWinAccountKeyAdminsSid                        = 113\n\tWinAccountEnterpriseKeyAdminsSid              = 114\n\tWinAuthenticationKeyTrustSid                  = 115\n\tWinAuthenticationKeyPropertyMFASid            = 116\n\tWinAuthenticationKeyPropertyAttestationSid    = 117\n\tWinAuthenticationFreshKeyAuthSid              = 118\n\tWinBuiltinDeviceOwnersSid                     = 119\n)\n\n// Creates a SID for a well-known predefined alias, generally using the constants of the form\n// Win*Sid, for the local machine.\nfunc CreateWellKnownSid(sidType WELL_KNOWN_SID_TYPE) (*SID, error) {\n\treturn CreateWellKnownDomainSid(sidType, nil)\n}\n\n// Creates a SID for a well-known predefined alias, generally using the constants of the form\n// Win*Sid, for the domain specified by the domainSid parameter.\nfunc CreateWellKnownDomainSid(sidType WELL_KNOWN_SID_TYPE, domainSid *SID) (*SID, error) {\n\tn := uint32(50)\n\tfor {\n\t\tb := make([]byte, n)\n\t\tsid := (*SID)(unsafe.Pointer(&b[0]))\n\t\terr := createWellKnownSid(sidType, domainSid, sid, &n)\n\t\tif err == nil {\n\t\t\treturn sid, nil\n\t\t}\n\t\tif err != ERROR_INSUFFICIENT_BUFFER {\n\t\t\treturn nil, err\n\t\t}\n\t\tif n <= uint32(len(b)) {\n\t\t\treturn nil, err\n\t\t}\n\t}\n}\n\nconst (\n\t// do not reorder\n\tTOKEN_ASSIGN_PRIMARY = 1 << iota\n\tTOKEN_DUPLICATE\n\tTOKEN_IMPERSONATE\n\tTOKEN_QUERY\n\tTOKEN_QUERY_SOURCE\n\tTOKEN_ADJUST_PRIVILEGES\n\tTOKEN_ADJUST_GROUPS\n\tTOKEN_ADJUST_DEFAULT\n\tTOKEN_ADJUST_SESSIONID\n\n\tTOKEN_ALL_ACCESS = STANDARD_RIGHTS_REQUIRED |\n\t\tTOKEN_ASSIGN_PRIMARY |\n\t\tTOKEN_DUPLICATE |\n\t\tTOKEN_IMPERSONATE |\n\t\tTOKEN_QUERY |\n\t\tTOKEN_QUERY_SOURCE |\n\t\tTOKEN_ADJUST_PRIVILEGES |\n\t\tTOKEN_ADJUST_GROUPS |\n\t\tTOKEN_ADJUST_DEFAULT |\n\t\tTOKEN_ADJUST_SESSIONID\n\tTOKEN_READ  = STANDARD_RIGHTS_READ | TOKEN_QUERY\n\tTOKEN_WRITE = STANDARD_RIGHTS_WRITE |\n\t\tTOKEN_ADJUST_PRIVILEGES |\n\t\tTOKEN_ADJUST_GROUPS |\n\t\tTOKEN_ADJUST_DEFAULT\n\tTOKEN_EXECUTE = STANDARD_RIGHTS_EXECUTE\n)\n\nconst (\n\t// do not reorder\n\tTokenUser = 1 + iota\n\tTokenGroups\n\tTokenPrivileges\n\tTokenOwner\n\tTokenPrimaryGroup\n\tTokenDefaultDacl\n\tTokenSource\n\tTokenType\n\tTokenImpersonationLevel\n\tTokenStatistics\n\tTokenRestrictedSids\n\tTokenSessionId\n\tTokenGroupsAndPrivileges\n\tTokenSessionReference\n\tTokenSandBoxInert\n\tTokenAuditPolicy\n\tTokenOrigin\n\tTokenElevationType\n\tTokenLinkedToken\n\tTokenElevation\n\tTokenHasRestrictions\n\tTokenAccessInformation\n\tTokenVirtualizationAllowed\n\tTokenVirtualizationEnabled\n\tTokenIntegrityLevel\n\tTokenUIAccess\n\tTokenMandatoryPolicy\n\tTokenLogonSid\n\tMaxTokenInfoClass\n)\n\n// Group attributes inside of Tokengroups.Groups[i].Attributes\nconst (\n\tSE_GROUP_MANDATORY          = 0x00000001\n\tSE_GROUP_ENABLED_BY_DEFAULT = 0x00000002\n\tSE_GROUP_ENABLED            = 0x00000004\n\tSE_GROUP_OWNER              = 0x00000008\n\tSE_GROUP_USE_FOR_DENY_ONLY  = 0x00000010\n\tSE_GROUP_INTEGRITY          = 0x00000020\n\tSE_GROUP_INTEGRITY_ENABLED  = 0x00000040\n\tSE_GROUP_LOGON_ID           = 0xC0000000\n\tSE_GROUP_RESOURCE           = 0x20000000\n\tSE_GROUP_VALID_ATTRIBUTES   = SE_GROUP_MANDATORY | SE_GROUP_ENABLED_BY_DEFAULT | SE_GROUP_ENABLED | SE_GROUP_OWNER | SE_GROUP_USE_FOR_DENY_ONLY | SE_GROUP_LOGON_ID | SE_GROUP_RESOURCE | SE_GROUP_INTEGRITY | SE_GROUP_INTEGRITY_ENABLED\n)\n\n// Privilege attributes\nconst (\n\tSE_PRIVILEGE_ENABLED_BY_DEFAULT = 0x00000001\n\tSE_PRIVILEGE_ENABLED            = 0x00000002\n\tSE_PRIVILEGE_REMOVED            = 0x00000004\n\tSE_PRIVILEGE_USED_FOR_ACCESS    = 0x80000000\n\tSE_PRIVILEGE_VALID_ATTRIBUTES   = SE_PRIVILEGE_ENABLED_BY_DEFAULT | SE_PRIVILEGE_ENABLED | SE_PRIVILEGE_REMOVED | SE_PRIVILEGE_USED_FOR_ACCESS\n)\n\n// Token types\nconst (\n\tTokenPrimary       = 1\n\tTokenImpersonation = 2\n)\n\n// Impersonation levels\nconst (\n\tSecurityAnonymous      = 0\n\tSecurityIdentification = 1\n\tSecurityImpersonation  = 2\n\tSecurityDelegation     = 3\n)\n\ntype LUID struct {\n\tLowPart  uint32\n\tHighPart int32\n}\n\ntype LUIDAndAttributes struct {\n\tLuid       LUID\n\tAttributes uint32\n}\n\ntype SIDAndAttributes struct {\n\tSid        *SID\n\tAttributes uint32\n}\n\ntype Tokenuser struct {\n\tUser SIDAndAttributes\n}\n\ntype Tokenprimarygroup struct {\n\tPrimaryGroup *SID\n}\n\ntype Tokengroups struct {\n\tGroupCount uint32\n\tGroups     [1]SIDAndAttributes // Use AllGroups() for iterating.\n}\n\n// AllGroups returns a slice that can be used to iterate over the groups in g.\nfunc (g *Tokengroups) AllGroups() []SIDAndAttributes {\n\treturn (*[(1 << 28) - 1]SIDAndAttributes)(unsafe.Pointer(&g.Groups[0]))[:g.GroupCount:g.GroupCount]\n}\n\ntype Tokenprivileges struct {\n\tPrivilegeCount uint32\n\tPrivileges     [1]LUIDAndAttributes // Use AllPrivileges() for iterating.\n}\n\n// AllPrivileges returns a slice that can be used to iterate over the privileges in p.\nfunc (p *Tokenprivileges) AllPrivileges() []LUIDAndAttributes {\n\treturn (*[(1 << 27) - 1]LUIDAndAttributes)(unsafe.Pointer(&p.Privileges[0]))[:p.PrivilegeCount:p.PrivilegeCount]\n}\n\ntype Tokenmandatorylabel struct {\n\tLabel SIDAndAttributes\n}\n\nfunc (tml *Tokenmandatorylabel) Size() uint32 {\n\treturn uint32(unsafe.Sizeof(Tokenmandatorylabel{})) + GetLengthSid(tml.Label.Sid)\n}\n\n// Authorization Functions\n//sys\tcheckTokenMembership(tokenHandle Token, sidToCheck *SID, isMember *int32) (err error) = advapi32.CheckTokenMembership\n//sys\tOpenProcessToken(process Handle, access uint32, token *Token) (err error) = advapi32.OpenProcessToken\n//sys\tOpenThreadToken(thread Handle, access uint32, openAsSelf bool, token *Token) (err error) = advapi32.OpenThreadToken\n//sys\tImpersonateSelf(impersonationlevel uint32) (err error) = advapi32.ImpersonateSelf\n//sys\tRevertToSelf() (err error) = advapi32.RevertToSelf\n//sys\tSetThreadToken(thread *Handle, token Token) (err error) = advapi32.SetThreadToken\n//sys\tLookupPrivilegeValue(systemname *uint16, name *uint16, luid *LUID) (err error) = advapi32.LookupPrivilegeValueW\n//sys\tAdjustTokenPrivileges(token Token, disableAllPrivileges bool, newstate *Tokenprivileges, buflen uint32, prevstate *Tokenprivileges, returnlen *uint32) (err error) = advapi32.AdjustTokenPrivileges\n//sys\tAdjustTokenGroups(token Token, resetToDefault bool, newstate *Tokengroups, buflen uint32, prevstate *Tokengroups, returnlen *uint32) (err error) = advapi32.AdjustTokenGroups\n//sys\tGetTokenInformation(token Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error) = advapi32.GetTokenInformation\n//sys\tSetTokenInformation(token Token, infoClass uint32, info *byte, infoLen uint32) (err error) = advapi32.SetTokenInformation\n//sys\tDuplicateTokenEx(existingToken Token, desiredAccess uint32, tokenAttributes *SecurityAttributes, impersonationLevel uint32, tokenType uint32, newToken *Token) (err error) = advapi32.DuplicateTokenEx\n//sys\tGetUserProfileDirectory(t Token, dir *uint16, dirLen *uint32) (err error) = userenv.GetUserProfileDirectoryW\n//sys\tgetSystemDirectory(dir *uint16, dirLen uint32) (len uint32, err error) = kernel32.GetSystemDirectoryW\n//sys\tgetWindowsDirectory(dir *uint16, dirLen uint32) (len uint32, err error) = kernel32.GetWindowsDirectoryW\n//sys\tgetSystemWindowsDirectory(dir *uint16, dirLen uint32) (len uint32, err error) = kernel32.GetSystemWindowsDirectoryW\n\n// An access token contains the security information for a logon session.\n// The system creates an access token when a user logs on, and every\n// process executed on behalf of the user has a copy of the token.\n// The token identifies the user, the user's groups, and the user's\n// privileges. The system uses the token to control access to securable\n// objects and to control the ability of the user to perform various\n// system-related operations on the local computer.\ntype Token Handle\n\n// OpenCurrentProcessToken opens an access token associated with current\n// process with TOKEN_QUERY access. It is a real token that needs to be closed.\n//\n// Deprecated: Explicitly call OpenProcessToken(CurrentProcess(), ...)\n// with the desired access instead, or use GetCurrentProcessToken for a\n// TOKEN_QUERY token.\nfunc OpenCurrentProcessToken() (Token, error) {\n\tvar token Token\n\terr := OpenProcessToken(CurrentProcess(), TOKEN_QUERY, &token)\n\treturn token, err\n}\n\n// GetCurrentProcessToken returns the access token associated with\n// the current process. It is a pseudo token that does not need\n// to be closed.\nfunc GetCurrentProcessToken() Token {\n\treturn Token(^uintptr(4 - 1))\n}\n\n// GetCurrentThreadToken return the access token associated with\n// the current thread. It is a pseudo token that does not need\n// to be closed.\nfunc GetCurrentThreadToken() Token {\n\treturn Token(^uintptr(5 - 1))\n}\n\n// GetCurrentThreadEffectiveToken returns the effective access token\n// associated with the current thread. It is a pseudo token that does\n// not need to be closed.\nfunc GetCurrentThreadEffectiveToken() Token {\n\treturn Token(^uintptr(6 - 1))\n}\n\n// Close releases access to access token.\nfunc (t Token) Close() error {\n\treturn CloseHandle(Handle(t))\n}\n\n// getInfo retrieves a specified type of information about an access token.\nfunc (t Token) getInfo(class uint32, initSize int) (unsafe.Pointer, error) {\n\tn := uint32(initSize)\n\tfor {\n\t\tb := make([]byte, n)\n\t\te := GetTokenInformation(t, class, &b[0], uint32(len(b)), &n)\n\t\tif e == nil {\n\t\t\treturn unsafe.Pointer(&b[0]), nil\n\t\t}\n\t\tif e != ERROR_INSUFFICIENT_BUFFER {\n\t\t\treturn nil, e\n\t\t}\n\t\tif n <= uint32(len(b)) {\n\t\t\treturn nil, e\n\t\t}\n\t}\n}\n\n// GetTokenUser retrieves access token t user account information.\nfunc (t Token) GetTokenUser() (*Tokenuser, error) {\n\ti, e := t.getInfo(TokenUser, 50)\n\tif e != nil {\n\t\treturn nil, e\n\t}\n\treturn (*Tokenuser)(i), nil\n}\n\n// GetTokenGroups retrieves group accounts associated with access token t.\nfunc (t Token) GetTokenGroups() (*Tokengroups, error) {\n\ti, e := t.getInfo(TokenGroups, 50)\n\tif e != nil {\n\t\treturn nil, e\n\t}\n\treturn (*Tokengroups)(i), nil\n}\n\n// GetTokenPrimaryGroup retrieves access token t primary group information.\n// A pointer to a SID structure representing a group that will become\n// the primary group of any objects created by a process using this access token.\nfunc (t Token) GetTokenPrimaryGroup() (*Tokenprimarygroup, error) {\n\ti, e := t.getInfo(TokenPrimaryGroup, 50)\n\tif e != nil {\n\t\treturn nil, e\n\t}\n\treturn (*Tokenprimarygroup)(i), nil\n}\n\n// GetUserProfileDirectory retrieves path to the\n// root directory of the access token t user's profile.\nfunc (t Token) GetUserProfileDirectory() (string, error) {\n\tn := uint32(100)\n\tfor {\n\t\tb := make([]uint16, n)\n\t\te := GetUserProfileDirectory(t, &b[0], &n)\n\t\tif e == nil {\n\t\t\treturn UTF16ToString(b), nil\n\t\t}\n\t\tif e != ERROR_INSUFFICIENT_BUFFER {\n\t\t\treturn \"\", e\n\t\t}\n\t\tif n <= uint32(len(b)) {\n\t\t\treturn \"\", e\n\t\t}\n\t}\n}\n\n// IsElevated returns whether the current token is elevated from a UAC perspective.\nfunc (token Token) IsElevated() bool {\n\tvar isElevated uint32\n\tvar outLen uint32\n\terr := GetTokenInformation(token, TokenElevation, (*byte)(unsafe.Pointer(&isElevated)), uint32(unsafe.Sizeof(isElevated)), &outLen)\n\tif err != nil {\n\t\treturn false\n\t}\n\treturn outLen == uint32(unsafe.Sizeof(isElevated)) && isElevated != 0\n}\n\n// GetLinkedToken returns the linked token, which may be an elevated UAC token.\nfunc (token Token) GetLinkedToken() (Token, error) {\n\tvar linkedToken Token\n\tvar outLen uint32\n\terr := GetTokenInformation(token, TokenLinkedToken, (*byte)(unsafe.Pointer(&linkedToken)), uint32(unsafe.Sizeof(linkedToken)), &outLen)\n\tif err != nil {\n\t\treturn Token(0), err\n\t}\n\treturn linkedToken, nil\n}\n\n// GetSystemDirectory retrieves the path to current location of the system\n// directory, which is typically, though not always, `C:\\Windows\\System32`.\nfunc GetSystemDirectory() (string, error) {\n\tn := uint32(MAX_PATH)\n\tfor {\n\t\tb := make([]uint16, n)\n\t\tl, e := getSystemDirectory(&b[0], n)\n\t\tif e != nil {\n\t\t\treturn \"\", e\n\t\t}\n\t\tif l <= n {\n\t\t\treturn UTF16ToString(b[:l]), nil\n\t\t}\n\t\tn = l\n\t}\n}\n\n// GetWindowsDirectory retrieves the path to current location of the Windows\n// directory, which is typically, though not always, `C:\\Windows`. This may\n// be a private user directory in the case that the application is running\n// under a terminal server.\nfunc GetWindowsDirectory() (string, error) {\n\tn := uint32(MAX_PATH)\n\tfor {\n\t\tb := make([]uint16, n)\n\t\tl, e := getWindowsDirectory(&b[0], n)\n\t\tif e != nil {\n\t\t\treturn \"\", e\n\t\t}\n\t\tif l <= n {\n\t\t\treturn UTF16ToString(b[:l]), nil\n\t\t}\n\t\tn = l\n\t}\n}\n\n// GetSystemWindowsDirectory retrieves the path to current location of the\n// Windows directory, which is typically, though not always, `C:\\Windows`.\nfunc GetSystemWindowsDirectory() (string, error) {\n\tn := uint32(MAX_PATH)\n\tfor {\n\t\tb := make([]uint16, n)\n\t\tl, e := getSystemWindowsDirectory(&b[0], n)\n\t\tif e != nil {\n\t\t\treturn \"\", e\n\t\t}\n\t\tif l <= n {\n\t\t\treturn UTF16ToString(b[:l]), nil\n\t\t}\n\t\tn = l\n\t}\n}\n\n// IsMember reports whether the access token t is a member of the provided SID.\nfunc (t Token) IsMember(sid *SID) (bool, error) {\n\tvar b int32\n\tif e := checkTokenMembership(t, sid, &b); e != nil {\n\t\treturn false, e\n\t}\n\treturn b != 0, nil\n}\n\nconst (\n\tWTS_CONSOLE_CONNECT        = 0x1\n\tWTS_CONSOLE_DISCONNECT     = 0x2\n\tWTS_REMOTE_CONNECT         = 0x3\n\tWTS_REMOTE_DISCONNECT      = 0x4\n\tWTS_SESSION_LOGON          = 0x5\n\tWTS_SESSION_LOGOFF         = 0x6\n\tWTS_SESSION_LOCK           = 0x7\n\tWTS_SESSION_UNLOCK         = 0x8\n\tWTS_SESSION_REMOTE_CONTROL = 0x9\n\tWTS_SESSION_CREATE         = 0xa\n\tWTS_SESSION_TERMINATE      = 0xb\n)\n\nconst (\n\tWTSActive       = 0\n\tWTSConnected    = 1\n\tWTSConnectQuery = 2\n\tWTSShadow       = 3\n\tWTSDisconnected = 4\n\tWTSIdle         = 5\n\tWTSListen       = 6\n\tWTSReset        = 7\n\tWTSDown         = 8\n\tWTSInit         = 9\n)\n\ntype WTSSESSION_NOTIFICATION struct {\n\tSize      uint32\n\tSessionID uint32\n}\n\ntype WTS_SESSION_INFO struct {\n\tSessionID         uint32\n\tWindowStationName *uint16\n\tState             uint32\n}\n\n//sys WTSQueryUserToken(session uint32, token *Token) (err error) = wtsapi32.WTSQueryUserToken\n//sys WTSEnumerateSessions(handle Handle, reserved uint32, version uint32, sessions **WTS_SESSION_INFO, count *uint32) (err error) = wtsapi32.WTSEnumerateSessionsW\n//sys WTSFreeMemory(ptr uintptr) = wtsapi32.WTSFreeMemory\n\ntype ACL struct {\n\taclRevision byte\n\tsbz1        byte\n\taclSize     uint16\n\taceCount    uint16\n\tsbz2        uint16\n}\n\ntype SECURITY_DESCRIPTOR struct {\n\trevision byte\n\tsbz1     byte\n\tcontrol  SECURITY_DESCRIPTOR_CONTROL\n\towner    *SID\n\tgroup    *SID\n\tsacl     *ACL\n\tdacl     *ACL\n}\n\ntype SecurityAttributes struct {\n\tLength             uint32\n\tSecurityDescriptor *SECURITY_DESCRIPTOR\n\tInheritHandle      uint32\n}\n\ntype SE_OBJECT_TYPE uint32\n\n// Constants for type SE_OBJECT_TYPE\nconst (\n\tSE_UNKNOWN_OBJECT_TYPE     = 0\n\tSE_FILE_OBJECT             = 1\n\tSE_SERVICE                 = 2\n\tSE_PRINTER                 = 3\n\tSE_REGISTRY_KEY            = 4\n\tSE_LMSHARE                 = 5\n\tSE_KERNEL_OBJECT           = 6\n\tSE_WINDOW_OBJECT           = 7\n\tSE_DS_OBJECT               = 8\n\tSE_DS_OBJECT_ALL           = 9\n\tSE_PROVIDER_DEFINED_OBJECT = 10\n\tSE_WMIGUID_OBJECT          = 11\n\tSE_REGISTRY_WOW64_32KEY    = 12\n\tSE_REGISTRY_WOW64_64KEY    = 13\n)\n\ntype SECURITY_INFORMATION uint32\n\n// Constants for type SECURITY_INFORMATION\nconst (\n\tOWNER_SECURITY_INFORMATION            = 0x00000001\n\tGROUP_SECURITY_INFORMATION            = 0x00000002\n\tDACL_SECURITY_INFORMATION             = 0x00000004\n\tSACL_SECURITY_INFORMATION             = 0x00000008\n\tLABEL_SECURITY_INFORMATION            = 0x00000010\n\tATTRIBUTE_SECURITY_INFORMATION        = 0x00000020\n\tSCOPE_SECURITY_INFORMATION            = 0x00000040\n\tBACKUP_SECURITY_INFORMATION           = 0x00010000\n\tPROTECTED_DACL_SECURITY_INFORMATION   = 0x80000000\n\tPROTECTED_SACL_SECURITY_INFORMATION   = 0x40000000\n\tUNPROTECTED_DACL_SECURITY_INFORMATION = 0x20000000\n\tUNPROTECTED_SACL_SECURITY_INFORMATION = 0x10000000\n)\n\ntype SECURITY_DESCRIPTOR_CONTROL uint16\n\n// Constants for type SECURITY_DESCRIPTOR_CONTROL\nconst (\n\tSE_OWNER_DEFAULTED       = 0x0001\n\tSE_GROUP_DEFAULTED       = 0x0002\n\tSE_DACL_PRESENT          = 0x0004\n\tSE_DACL_DEFAULTED        = 0x0008\n\tSE_SACL_PRESENT          = 0x0010\n\tSE_SACL_DEFAULTED        = 0x0020\n\tSE_DACL_AUTO_INHERIT_REQ = 0x0100\n\tSE_SACL_AUTO_INHERIT_REQ = 0x0200\n\tSE_DACL_AUTO_INHERITED   = 0x0400\n\tSE_SACL_AUTO_INHERITED   = 0x0800\n\tSE_DACL_PROTECTED        = 0x1000\n\tSE_SACL_PROTECTED        = 0x2000\n\tSE_RM_CONTROL_VALID      = 0x4000\n\tSE_SELF_RELATIVE         = 0x8000\n)\n\ntype ACCESS_MASK uint32\n\n// Constants for type ACCESS_MASK\nconst (\n\tDELETE                   = 0x00010000\n\tREAD_CONTROL             = 0x00020000\n\tWRITE_DAC                = 0x00040000\n\tWRITE_OWNER              = 0x00080000\n\tSYNCHRONIZE              = 0x00100000\n\tSTANDARD_RIGHTS_REQUIRED = 0x000F0000\n\tSTANDARD_RIGHTS_READ     = READ_CONTROL\n\tSTANDARD_RIGHTS_WRITE    = READ_CONTROL\n\tSTANDARD_RIGHTS_EXECUTE  = READ_CONTROL\n\tSTANDARD_RIGHTS_ALL      = 0x001F0000\n\tSPECIFIC_RIGHTS_ALL      = 0x0000FFFF\n\tACCESS_SYSTEM_SECURITY   = 0x01000000\n\tMAXIMUM_ALLOWED          = 0x02000000\n\tGENERIC_READ             = 0x80000000\n\tGENERIC_WRITE            = 0x40000000\n\tGENERIC_EXECUTE          = 0x20000000\n\tGENERIC_ALL              = 0x10000000\n)\n\ntype ACCESS_MODE uint32\n\n// Constants for type ACCESS_MODE\nconst (\n\tNOT_USED_ACCESS   = 0\n\tGRANT_ACCESS      = 1\n\tSET_ACCESS        = 2\n\tDENY_ACCESS       = 3\n\tREVOKE_ACCESS     = 4\n\tSET_AUDIT_SUCCESS = 5\n\tSET_AUDIT_FAILURE = 6\n)\n\n// Constants for AceFlags and Inheritance fields\nconst (\n\tNO_INHERITANCE                     = 0x0\n\tSUB_OBJECTS_ONLY_INHERIT           = 0x1\n\tSUB_CONTAINERS_ONLY_INHERIT        = 0x2\n\tSUB_CONTAINERS_AND_OBJECTS_INHERIT = 0x3\n\tINHERIT_NO_PROPAGATE               = 0x4\n\tINHERIT_ONLY                       = 0x8\n\tINHERITED_ACCESS_ENTRY             = 0x10\n\tINHERITED_PARENT                   = 0x10000000\n\tINHERITED_GRANDPARENT              = 0x20000000\n\tOBJECT_INHERIT_ACE                 = 0x1\n\tCONTAINER_INHERIT_ACE              = 0x2\n\tNO_PROPAGATE_INHERIT_ACE           = 0x4\n\tINHERIT_ONLY_ACE                   = 0x8\n\tINHERITED_ACE                      = 0x10\n\tVALID_INHERIT_FLAGS                = 0x1F\n)\n\ntype MULTIPLE_TRUSTEE_OPERATION uint32\n\n// Constants for MULTIPLE_TRUSTEE_OPERATION\nconst (\n\tNO_MULTIPLE_TRUSTEE    = 0\n\tTRUSTEE_IS_IMPERSONATE = 1\n)\n\ntype TRUSTEE_FORM uint32\n\n// Constants for TRUSTEE_FORM\nconst (\n\tTRUSTEE_IS_SID              = 0\n\tTRUSTEE_IS_NAME             = 1\n\tTRUSTEE_BAD_FORM            = 2\n\tTRUSTEE_IS_OBJECTS_AND_SID  = 3\n\tTRUSTEE_IS_OBJECTS_AND_NAME = 4\n)\n\ntype TRUSTEE_TYPE uint32\n\n// Constants for TRUSTEE_TYPE\nconst (\n\tTRUSTEE_IS_UNKNOWN          = 0\n\tTRUSTEE_IS_USER             = 1\n\tTRUSTEE_IS_GROUP            = 2\n\tTRUSTEE_IS_DOMAIN           = 3\n\tTRUSTEE_IS_ALIAS            = 4\n\tTRUSTEE_IS_WELL_KNOWN_GROUP = 5\n\tTRUSTEE_IS_DELETED          = 6\n\tTRUSTEE_IS_INVALID          = 7\n\tTRUSTEE_IS_COMPUTER         = 8\n)\n\n// Constants for ObjectsPresent field\nconst (\n\tACE_OBJECT_TYPE_PRESENT           = 0x1\n\tACE_INHERITED_OBJECT_TYPE_PRESENT = 0x2\n)\n\ntype EXPLICIT_ACCESS struct {\n\tAccessPermissions ACCESS_MASK\n\tAccessMode        ACCESS_MODE\n\tInheritance       uint32\n\tTrustee           TRUSTEE\n}\n\n// This type is the union inside of TRUSTEE and must be created using one of the TrusteeValueFrom* functions.\ntype TrusteeValue uintptr\n\nfunc TrusteeValueFromString(str string) TrusteeValue {\n\treturn TrusteeValue(unsafe.Pointer(StringToUTF16Ptr(str)))\n}\nfunc TrusteeValueFromSID(sid *SID) TrusteeValue {\n\treturn TrusteeValue(unsafe.Pointer(sid))\n}\nfunc TrusteeValueFromObjectsAndSid(objectsAndSid *OBJECTS_AND_SID) TrusteeValue {\n\treturn TrusteeValue(unsafe.Pointer(objectsAndSid))\n}\nfunc TrusteeValueFromObjectsAndName(objectsAndName *OBJECTS_AND_NAME) TrusteeValue {\n\treturn TrusteeValue(unsafe.Pointer(objectsAndName))\n}\n\ntype TRUSTEE struct {\n\tMultipleTrustee          *TRUSTEE\n\tMultipleTrusteeOperation MULTIPLE_TRUSTEE_OPERATION\n\tTrusteeForm              TRUSTEE_FORM\n\tTrusteeType              TRUSTEE_TYPE\n\tTrusteeValue             TrusteeValue\n}\n\ntype OBJECTS_AND_SID struct {\n\tObjectsPresent          uint32\n\tObjectTypeGuid          GUID\n\tInheritedObjectTypeGuid GUID\n\tSid                     *SID\n}\n\ntype OBJECTS_AND_NAME struct {\n\tObjectsPresent          uint32\n\tObjectType              SE_OBJECT_TYPE\n\tObjectTypeName          *uint16\n\tInheritedObjectTypeName *uint16\n\tName                    *uint16\n}\n\n//sys\tgetSecurityInfo(handle Handle, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner **SID, group **SID, dacl **ACL, sacl **ACL, sd **SECURITY_DESCRIPTOR) (ret error) = advapi32.GetSecurityInfo\n//sys\tSetSecurityInfo(handle Handle, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner *SID, group *SID, dacl *ACL, sacl *ACL) = advapi32.SetSecurityInfo\n//sys\tgetNamedSecurityInfo(objectName string, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner **SID, group **SID, dacl **ACL, sacl **ACL, sd **SECURITY_DESCRIPTOR) (ret error) = advapi32.GetNamedSecurityInfoW\n//sys\tSetNamedSecurityInfo(objectName string, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner *SID, group *SID, dacl *ACL, sacl *ACL) (ret error) = advapi32.SetNamedSecurityInfoW\n\n//sys\tbuildSecurityDescriptor(owner *TRUSTEE, group *TRUSTEE, countAccessEntries uint32, accessEntries *EXPLICIT_ACCESS, countAuditEntries uint32, auditEntries *EXPLICIT_ACCESS, oldSecurityDescriptor *SECURITY_DESCRIPTOR, sizeNewSecurityDescriptor *uint32, newSecurityDescriptor **SECURITY_DESCRIPTOR) (ret error) = advapi32.BuildSecurityDescriptorW\n//sys\tinitializeSecurityDescriptor(absoluteSD *SECURITY_DESCRIPTOR, revision uint32) (err error) = advapi32.InitializeSecurityDescriptor\n\n//sys\tgetSecurityDescriptorControl(sd *SECURITY_DESCRIPTOR, control *SECURITY_DESCRIPTOR_CONTROL, revision *uint32) (err error) = advapi32.GetSecurityDescriptorControl\n//sys\tgetSecurityDescriptorDacl(sd *SECURITY_DESCRIPTOR, daclPresent *bool, dacl **ACL, daclDefaulted *bool) (err error) = advapi32.GetSecurityDescriptorDacl\n//sys\tgetSecurityDescriptorSacl(sd *SECURITY_DESCRIPTOR, saclPresent *bool, sacl **ACL, saclDefaulted *bool) (err error) = advapi32.GetSecurityDescriptorSacl\n//sys\tgetSecurityDescriptorOwner(sd *SECURITY_DESCRIPTOR, owner **SID, ownerDefaulted *bool) (err error) = advapi32.GetSecurityDescriptorOwner\n//sys\tgetSecurityDescriptorGroup(sd *SECURITY_DESCRIPTOR, group **SID, groupDefaulted *bool) (err error) = advapi32.GetSecurityDescriptorGroup\n//sys\tgetSecurityDescriptorLength(sd *SECURITY_DESCRIPTOR) (len uint32) = advapi32.GetSecurityDescriptorLength\n//sys\tgetSecurityDescriptorRMControl(sd *SECURITY_DESCRIPTOR, rmControl *uint8) (ret error) [failretval!=0] = advapi32.GetSecurityDescriptorRMControl\n//sys\tisValidSecurityDescriptor(sd *SECURITY_DESCRIPTOR) (isValid bool) = advapi32.IsValidSecurityDescriptor\n\n//sys\tsetSecurityDescriptorControl(sd *SECURITY_DESCRIPTOR, controlBitsOfInterest SECURITY_DESCRIPTOR_CONTROL, controlBitsToSet SECURITY_DESCRIPTOR_CONTROL) (err error) = advapi32.SetSecurityDescriptorControl\n//sys\tsetSecurityDescriptorDacl(sd *SECURITY_DESCRIPTOR, daclPresent bool, dacl *ACL, daclDefaulted bool) (err error) = advapi32.SetSecurityDescriptorDacl\n//sys\tsetSecurityDescriptorSacl(sd *SECURITY_DESCRIPTOR, saclPresent bool, sacl *ACL, saclDefaulted bool) (err error) = advapi32.SetSecurityDescriptorSacl\n//sys\tsetSecurityDescriptorOwner(sd *SECURITY_DESCRIPTOR, owner *SID, ownerDefaulted bool) (err error) = advapi32.SetSecurityDescriptorOwner\n//sys\tsetSecurityDescriptorGroup(sd *SECURITY_DESCRIPTOR, group *SID, groupDefaulted bool) (err error) = advapi32.SetSecurityDescriptorGroup\n//sys\tsetSecurityDescriptorRMControl(sd *SECURITY_DESCRIPTOR, rmControl *uint8) = advapi32.SetSecurityDescriptorRMControl\n\n//sys\tconvertStringSecurityDescriptorToSecurityDescriptor(str string, revision uint32, sd **SECURITY_DESCRIPTOR, size *uint32) (err error) = advapi32.ConvertStringSecurityDescriptorToSecurityDescriptorW\n//sys\tconvertSecurityDescriptorToStringSecurityDescriptor(sd *SECURITY_DESCRIPTOR, revision uint32, securityInformation SECURITY_INFORMATION, str **uint16, strLen *uint32) (err error) = advapi32.ConvertSecurityDescriptorToStringSecurityDescriptorW\n\n//sys\tmakeAbsoluteSD(selfRelativeSD *SECURITY_DESCRIPTOR, absoluteSD *SECURITY_DESCRIPTOR, absoluteSDSize *uint32, dacl *ACL, daclSize *uint32, sacl *ACL, saclSize *uint32, owner *SID, ownerSize *uint32, group *SID, groupSize *uint32) (err error) = advapi32.MakeAbsoluteSD\n//sys\tmakeSelfRelativeSD(absoluteSD *SECURITY_DESCRIPTOR, selfRelativeSD *SECURITY_DESCRIPTOR, selfRelativeSDSize *uint32) (err error) = advapi32.MakeSelfRelativeSD\n\n//sys\tsetEntriesInAcl(countExplicitEntries uint32, explicitEntries *EXPLICIT_ACCESS, oldACL *ACL, newACL **ACL) (ret error) = advapi32.SetEntriesInAclW\n\n// Control returns the security descriptor control bits.\nfunc (sd *SECURITY_DESCRIPTOR) Control() (control SECURITY_DESCRIPTOR_CONTROL, revision uint32, err error) {\n\terr = getSecurityDescriptorControl(sd, &control, &revision)\n\treturn\n}\n\n// SetControl sets the security descriptor control bits.\nfunc (sd *SECURITY_DESCRIPTOR) SetControl(controlBitsOfInterest SECURITY_DESCRIPTOR_CONTROL, controlBitsToSet SECURITY_DESCRIPTOR_CONTROL) error {\n\treturn setSecurityDescriptorControl(sd, controlBitsOfInterest, controlBitsToSet)\n}\n\n// RMControl returns the security descriptor resource manager control bits.\nfunc (sd *SECURITY_DESCRIPTOR) RMControl() (control uint8, err error) {\n\terr = getSecurityDescriptorRMControl(sd, &control)\n\treturn\n}\n\n// SetRMControl sets the security descriptor resource manager control bits.\nfunc (sd *SECURITY_DESCRIPTOR) SetRMControl(rmControl uint8) {\n\tsetSecurityDescriptorRMControl(sd, &rmControl)\n}\n\n// DACL returns the security descriptor DACL and whether it was defaulted. The dacl return value may be nil\n// if a DACL exists but is an \"empty DACL\", meaning fully permissive. If the DACL does not exist, err returns\n// ERROR_OBJECT_NOT_FOUND.\nfunc (sd *SECURITY_DESCRIPTOR) DACL() (dacl *ACL, defaulted bool, err error) {\n\tvar present bool\n\terr = getSecurityDescriptorDacl(sd, &present, &dacl, &defaulted)\n\tif !present {\n\t\terr = ERROR_OBJECT_NOT_FOUND\n\t}\n\treturn\n}\n\n// SetDACL sets the absolute security descriptor DACL.\nfunc (absoluteSD *SECURITY_DESCRIPTOR) SetDACL(dacl *ACL, present, defaulted bool) error {\n\treturn setSecurityDescriptorDacl(absoluteSD, present, dacl, defaulted)\n}\n\n// SACL returns the security descriptor SACL and whether it was defaulted. The sacl return value may be nil\n// if a SACL exists but is an \"empty SACL\", meaning fully permissive. If the SACL does not exist, err returns\n// ERROR_OBJECT_NOT_FOUND.\nfunc (sd *SECURITY_DESCRIPTOR) SACL() (sacl *ACL, defaulted bool, err error) {\n\tvar present bool\n\terr = getSecurityDescriptorSacl(sd, &present, &sacl, &defaulted)\n\tif !present {\n\t\terr = ERROR_OBJECT_NOT_FOUND\n\t}\n\treturn\n}\n\n// SetSACL sets the absolute security descriptor SACL.\nfunc (absoluteSD *SECURITY_DESCRIPTOR) SetSACL(sacl *ACL, present, defaulted bool) error {\n\treturn setSecurityDescriptorSacl(absoluteSD, present, sacl, defaulted)\n}\n\n// Owner returns the security descriptor owner and whether it was defaulted.\nfunc (sd *SECURITY_DESCRIPTOR) Owner() (owner *SID, defaulted bool, err error) {\n\terr = getSecurityDescriptorOwner(sd, &owner, &defaulted)\n\treturn\n}\n\n// SetOwner sets the absolute security descriptor owner.\nfunc (absoluteSD *SECURITY_DESCRIPTOR) SetOwner(owner *SID, defaulted bool) error {\n\treturn setSecurityDescriptorOwner(absoluteSD, owner, defaulted)\n}\n\n// Group returns the security descriptor group and whether it was defaulted.\nfunc (sd *SECURITY_DESCRIPTOR) Group() (group *SID, defaulted bool, err error) {\n\terr = getSecurityDescriptorGroup(sd, &group, &defaulted)\n\treturn\n}\n\n// SetGroup sets the absolute security descriptor owner.\nfunc (absoluteSD *SECURITY_DESCRIPTOR) SetGroup(group *SID, defaulted bool) error {\n\treturn setSecurityDescriptorGroup(absoluteSD, group, defaulted)\n}\n\n// Length returns the length of the security descriptor.\nfunc (sd *SECURITY_DESCRIPTOR) Length() uint32 {\n\treturn getSecurityDescriptorLength(sd)\n}\n\n// IsValid returns whether the security descriptor is valid.\nfunc (sd *SECURITY_DESCRIPTOR) IsValid() bool {\n\treturn isValidSecurityDescriptor(sd)\n}\n\n// String returns the SDDL form of the security descriptor, with a function signature that can be\n// used with %v formatting directives.\nfunc (sd *SECURITY_DESCRIPTOR) String() string {\n\tvar sddl *uint16\n\terr := convertSecurityDescriptorToStringSecurityDescriptor(sd, 1, 0xff, &sddl, nil)\n\tif err != nil {\n\t\treturn \"\"\n\t}\n\tdefer LocalFree(Handle(unsafe.Pointer(sddl)))\n\treturn UTF16PtrToString(sddl)\n}\n\n// ToAbsolute converts a self-relative security descriptor into an absolute one.\nfunc (selfRelativeSD *SECURITY_DESCRIPTOR) ToAbsolute() (absoluteSD *SECURITY_DESCRIPTOR, err error) {\n\tcontrol, _, err := selfRelativeSD.Control()\n\tif err != nil {\n\t\treturn\n\t}\n\tif control&SE_SELF_RELATIVE == 0 {\n\t\terr = ERROR_INVALID_PARAMETER\n\t\treturn\n\t}\n\tvar absoluteSDSize, daclSize, saclSize, ownerSize, groupSize uint32\n\terr = makeAbsoluteSD(selfRelativeSD, nil, &absoluteSDSize,\n\t\tnil, &daclSize, nil, &saclSize, nil, &ownerSize, nil, &groupSize)\n\tswitch err {\n\tcase ERROR_INSUFFICIENT_BUFFER:\n\tcase nil:\n\t\t// makeAbsoluteSD is expected to fail, but it succeeds.\n\t\treturn nil, ERROR_INTERNAL_ERROR\n\tdefault:\n\t\treturn nil, err\n\t}\n\tif absoluteSDSize > 0 {\n\t\tabsoluteSD = (*SECURITY_DESCRIPTOR)(unsafe.Pointer(&make([]byte, absoluteSDSize)[0]))\n\t}\n\tvar (\n\t\tdacl  *ACL\n\t\tsacl  *ACL\n\t\towner *SID\n\t\tgroup *SID\n\t)\n\tif daclSize > 0 {\n\t\tdacl = (*ACL)(unsafe.Pointer(&make([]byte, daclSize)[0]))\n\t}\n\tif saclSize > 0 {\n\t\tsacl = (*ACL)(unsafe.Pointer(&make([]byte, saclSize)[0]))\n\t}\n\tif ownerSize > 0 {\n\t\towner = (*SID)(unsafe.Pointer(&make([]byte, ownerSize)[0]))\n\t}\n\tif groupSize > 0 {\n\t\tgroup = (*SID)(unsafe.Pointer(&make([]byte, groupSize)[0]))\n\t}\n\terr = makeAbsoluteSD(selfRelativeSD, absoluteSD, &absoluteSDSize,\n\t\tdacl, &daclSize, sacl, &saclSize, owner, &ownerSize, group, &groupSize)\n\treturn\n}\n\n// ToSelfRelative converts an absolute security descriptor into a self-relative one.\nfunc (absoluteSD *SECURITY_DESCRIPTOR) ToSelfRelative() (selfRelativeSD *SECURITY_DESCRIPTOR, err error) {\n\tcontrol, _, err := absoluteSD.Control()\n\tif err != nil {\n\t\treturn\n\t}\n\tif control&SE_SELF_RELATIVE != 0 {\n\t\terr = ERROR_INVALID_PARAMETER\n\t\treturn\n\t}\n\tvar selfRelativeSDSize uint32\n\terr = makeSelfRelativeSD(absoluteSD, nil, &selfRelativeSDSize)\n\tswitch err {\n\tcase ERROR_INSUFFICIENT_BUFFER:\n\tcase nil:\n\t\t// makeSelfRelativeSD is expected to fail, but it succeeds.\n\t\treturn nil, ERROR_INTERNAL_ERROR\n\tdefault:\n\t\treturn nil, err\n\t}\n\tif selfRelativeSDSize > 0 {\n\t\tselfRelativeSD = (*SECURITY_DESCRIPTOR)(unsafe.Pointer(&make([]byte, selfRelativeSDSize)[0]))\n\t}\n\terr = makeSelfRelativeSD(absoluteSD, selfRelativeSD, &selfRelativeSDSize)\n\treturn\n}\n\nfunc (selfRelativeSD *SECURITY_DESCRIPTOR) copySelfRelativeSecurityDescriptor() *SECURITY_DESCRIPTOR {\n\tsdLen := (int)(selfRelativeSD.Length())\n\n\tvar src []byte\n\th := (*unsafeheader.Slice)(unsafe.Pointer(&src))\n\th.Data = unsafe.Pointer(selfRelativeSD)\n\th.Len = sdLen\n\th.Cap = sdLen\n\n\tdst := make([]byte, sdLen)\n\tcopy(dst, src)\n\treturn (*SECURITY_DESCRIPTOR)(unsafe.Pointer(&dst[0]))\n}\n\n// SecurityDescriptorFromString converts an SDDL string describing a security descriptor into a\n// self-relative security descriptor object allocated on the Go heap.\nfunc SecurityDescriptorFromString(sddl string) (sd *SECURITY_DESCRIPTOR, err error) {\n\tvar winHeapSD *SECURITY_DESCRIPTOR\n\terr = convertStringSecurityDescriptorToSecurityDescriptor(sddl, 1, &winHeapSD, nil)\n\tif err != nil {\n\t\treturn\n\t}\n\tdefer LocalFree(Handle(unsafe.Pointer(winHeapSD)))\n\treturn winHeapSD.copySelfRelativeSecurityDescriptor(), nil\n}\n\n// GetSecurityInfo queries the security information for a given handle and returns the self-relative security\n// descriptor result on the Go heap.\nfunc GetSecurityInfo(handle Handle, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION) (sd *SECURITY_DESCRIPTOR, err error) {\n\tvar winHeapSD *SECURITY_DESCRIPTOR\n\terr = getSecurityInfo(handle, objectType, securityInformation, nil, nil, nil, nil, &winHeapSD)\n\tif err != nil {\n\t\treturn\n\t}\n\tdefer LocalFree(Handle(unsafe.Pointer(winHeapSD)))\n\treturn winHeapSD.copySelfRelativeSecurityDescriptor(), nil\n}\n\n// GetNamedSecurityInfo queries the security information for a given named object and returns the self-relative security\n// descriptor result on the Go heap.\nfunc GetNamedSecurityInfo(objectName string, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION) (sd *SECURITY_DESCRIPTOR, err error) {\n\tvar winHeapSD *SECURITY_DESCRIPTOR\n\terr = getNamedSecurityInfo(objectName, objectType, securityInformation, nil, nil, nil, nil, &winHeapSD)\n\tif err != nil {\n\t\treturn\n\t}\n\tdefer LocalFree(Handle(unsafe.Pointer(winHeapSD)))\n\treturn winHeapSD.copySelfRelativeSecurityDescriptor(), nil\n}\n\n// BuildSecurityDescriptor makes a new security descriptor using the input trustees, explicit access lists, and\n// prior security descriptor to be merged, any of which can be nil, returning the self-relative security descriptor\n// result on the Go heap.\nfunc BuildSecurityDescriptor(owner *TRUSTEE, group *TRUSTEE, accessEntries []EXPLICIT_ACCESS, auditEntries []EXPLICIT_ACCESS, mergedSecurityDescriptor *SECURITY_DESCRIPTOR) (sd *SECURITY_DESCRIPTOR, err error) {\n\tvar winHeapSD *SECURITY_DESCRIPTOR\n\tvar winHeapSDSize uint32\n\tvar firstAccessEntry *EXPLICIT_ACCESS\n\tif len(accessEntries) > 0 {\n\t\tfirstAccessEntry = &accessEntries[0]\n\t}\n\tvar firstAuditEntry *EXPLICIT_ACCESS\n\tif len(auditEntries) > 0 {\n\t\tfirstAuditEntry = &auditEntries[0]\n\t}\n\terr = buildSecurityDescriptor(owner, group, uint32(len(accessEntries)), firstAccessEntry, uint32(len(auditEntries)), firstAuditEntry, mergedSecurityDescriptor, &winHeapSDSize, &winHeapSD)\n\tif err != nil {\n\t\treturn\n\t}\n\tdefer LocalFree(Handle(unsafe.Pointer(winHeapSD)))\n\treturn winHeapSD.copySelfRelativeSecurityDescriptor(), nil\n}\n\n// NewSecurityDescriptor creates and initializes a new absolute security descriptor.\nfunc NewSecurityDescriptor() (absoluteSD *SECURITY_DESCRIPTOR, err error) {\n\tabsoluteSD = &SECURITY_DESCRIPTOR{}\n\terr = initializeSecurityDescriptor(absoluteSD, 1)\n\treturn\n}\n\n// ACLFromEntries returns a new ACL on the Go heap containing a list of explicit entries as well as those of another ACL.\n// Both explicitEntries and mergedACL are optional and can be nil.\nfunc ACLFromEntries(explicitEntries []EXPLICIT_ACCESS, mergedACL *ACL) (acl *ACL, err error) {\n\tvar firstExplicitEntry *EXPLICIT_ACCESS\n\tif len(explicitEntries) > 0 {\n\t\tfirstExplicitEntry = &explicitEntries[0]\n\t}\n\tvar winHeapACL *ACL\n\terr = setEntriesInAcl(uint32(len(explicitEntries)), firstExplicitEntry, mergedACL, &winHeapACL)\n\tif err != nil {\n\t\treturn\n\t}\n\tdefer LocalFree(Handle(unsafe.Pointer(winHeapACL)))\n\taclBytes := make([]byte, winHeapACL.aclSize)\n\tcopy(aclBytes, (*[(1 << 31) - 1]byte)(unsafe.Pointer(winHeapACL))[:len(aclBytes):len(aclBytes)])\n\treturn (*ACL)(unsafe.Pointer(&aclBytes[0])), nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/service.go",
    "content": "// Copyright 2012 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build windows\n\npackage windows\n\nconst (\n\tSC_MANAGER_CONNECT            = 1\n\tSC_MANAGER_CREATE_SERVICE     = 2\n\tSC_MANAGER_ENUMERATE_SERVICE  = 4\n\tSC_MANAGER_LOCK               = 8\n\tSC_MANAGER_QUERY_LOCK_STATUS  = 16\n\tSC_MANAGER_MODIFY_BOOT_CONFIG = 32\n\tSC_MANAGER_ALL_ACCESS         = 0xf003f\n)\n\n//sys\tOpenSCManager(machineName *uint16, databaseName *uint16, access uint32) (handle Handle, err error) [failretval==0] = advapi32.OpenSCManagerW\n\nconst (\n\tSERVICE_KERNEL_DRIVER       = 1\n\tSERVICE_FILE_SYSTEM_DRIVER  = 2\n\tSERVICE_ADAPTER             = 4\n\tSERVICE_RECOGNIZER_DRIVER   = 8\n\tSERVICE_WIN32_OWN_PROCESS   = 16\n\tSERVICE_WIN32_SHARE_PROCESS = 32\n\tSERVICE_WIN32               = SERVICE_WIN32_OWN_PROCESS | SERVICE_WIN32_SHARE_PROCESS\n\tSERVICE_INTERACTIVE_PROCESS = 256\n\tSERVICE_DRIVER              = SERVICE_KERNEL_DRIVER | SERVICE_FILE_SYSTEM_DRIVER | SERVICE_RECOGNIZER_DRIVER\n\tSERVICE_TYPE_ALL            = SERVICE_WIN32 | SERVICE_ADAPTER | SERVICE_DRIVER | SERVICE_INTERACTIVE_PROCESS\n\n\tSERVICE_BOOT_START   = 0\n\tSERVICE_SYSTEM_START = 1\n\tSERVICE_AUTO_START   = 2\n\tSERVICE_DEMAND_START = 3\n\tSERVICE_DISABLED     = 4\n\n\tSERVICE_ERROR_IGNORE   = 0\n\tSERVICE_ERROR_NORMAL   = 1\n\tSERVICE_ERROR_SEVERE   = 2\n\tSERVICE_ERROR_CRITICAL = 3\n\n\tSC_STATUS_PROCESS_INFO = 0\n\n\tSC_ACTION_NONE        = 0\n\tSC_ACTION_RESTART     = 1\n\tSC_ACTION_REBOOT      = 2\n\tSC_ACTION_RUN_COMMAND = 3\n\n\tSERVICE_STOPPED          = 1\n\tSERVICE_START_PENDING    = 2\n\tSERVICE_STOP_PENDING     = 3\n\tSERVICE_RUNNING          = 4\n\tSERVICE_CONTINUE_PENDING = 5\n\tSERVICE_PAUSE_PENDING    = 6\n\tSERVICE_PAUSED           = 7\n\tSERVICE_NO_CHANGE        = 0xffffffff\n\n\tSERVICE_ACCEPT_STOP                  = 1\n\tSERVICE_ACCEPT_PAUSE_CONTINUE        = 2\n\tSERVICE_ACCEPT_SHUTDOWN              = 4\n\tSERVICE_ACCEPT_PARAMCHANGE           = 8\n\tSERVICE_ACCEPT_NETBINDCHANGE         = 16\n\tSERVICE_ACCEPT_HARDWAREPROFILECHANGE = 32\n\tSERVICE_ACCEPT_POWEREVENT            = 64\n\tSERVICE_ACCEPT_SESSIONCHANGE         = 128\n\tSERVICE_ACCEPT_PRESHUTDOWN           = 256\n\n\tSERVICE_CONTROL_STOP                  = 1\n\tSERVICE_CONTROL_PAUSE                 = 2\n\tSERVICE_CONTROL_CONTINUE              = 3\n\tSERVICE_CONTROL_INTERROGATE           = 4\n\tSERVICE_CONTROL_SHUTDOWN              = 5\n\tSERVICE_CONTROL_PARAMCHANGE           = 6\n\tSERVICE_CONTROL_NETBINDADD            = 7\n\tSERVICE_CONTROL_NETBINDREMOVE         = 8\n\tSERVICE_CONTROL_NETBINDENABLE         = 9\n\tSERVICE_CONTROL_NETBINDDISABLE        = 10\n\tSERVICE_CONTROL_DEVICEEVENT           = 11\n\tSERVICE_CONTROL_HARDWAREPROFILECHANGE = 12\n\tSERVICE_CONTROL_POWEREVENT            = 13\n\tSERVICE_CONTROL_SESSIONCHANGE         = 14\n\tSERVICE_CONTROL_PRESHUTDOWN           = 15\n\n\tSERVICE_ACTIVE    = 1\n\tSERVICE_INACTIVE  = 2\n\tSERVICE_STATE_ALL = 3\n\n\tSERVICE_QUERY_CONFIG         = 1\n\tSERVICE_CHANGE_CONFIG        = 2\n\tSERVICE_QUERY_STATUS         = 4\n\tSERVICE_ENUMERATE_DEPENDENTS = 8\n\tSERVICE_START                = 16\n\tSERVICE_STOP                 = 32\n\tSERVICE_PAUSE_CONTINUE       = 64\n\tSERVICE_INTERROGATE          = 128\n\tSERVICE_USER_DEFINED_CONTROL = 256\n\tSERVICE_ALL_ACCESS           = STANDARD_RIGHTS_REQUIRED | SERVICE_QUERY_CONFIG | SERVICE_CHANGE_CONFIG | SERVICE_QUERY_STATUS | SERVICE_ENUMERATE_DEPENDENTS | SERVICE_START | SERVICE_STOP | SERVICE_PAUSE_CONTINUE | SERVICE_INTERROGATE | SERVICE_USER_DEFINED_CONTROL\n\n\tSERVICE_RUNS_IN_SYSTEM_PROCESS = 1\n\n\tSERVICE_CONFIG_DESCRIPTION              = 1\n\tSERVICE_CONFIG_FAILURE_ACTIONS          = 2\n\tSERVICE_CONFIG_DELAYED_AUTO_START_INFO  = 3\n\tSERVICE_CONFIG_FAILURE_ACTIONS_FLAG     = 4\n\tSERVICE_CONFIG_SERVICE_SID_INFO         = 5\n\tSERVICE_CONFIG_REQUIRED_PRIVILEGES_INFO = 6\n\tSERVICE_CONFIG_PRESHUTDOWN_INFO         = 7\n\tSERVICE_CONFIG_TRIGGER_INFO             = 8\n\tSERVICE_CONFIG_PREFERRED_NODE           = 9\n\tSERVICE_CONFIG_LAUNCH_PROTECTED         = 12\n\n\tSERVICE_SID_TYPE_NONE         = 0\n\tSERVICE_SID_TYPE_UNRESTRICTED = 1\n\tSERVICE_SID_TYPE_RESTRICTED   = 2 | SERVICE_SID_TYPE_UNRESTRICTED\n\n\tSC_ENUM_PROCESS_INFO = 0\n\n\tSERVICE_NOTIFY_STATUS_CHANGE    = 2\n\tSERVICE_NOTIFY_STOPPED          = 0x00000001\n\tSERVICE_NOTIFY_START_PENDING    = 0x00000002\n\tSERVICE_NOTIFY_STOP_PENDING     = 0x00000004\n\tSERVICE_NOTIFY_RUNNING          = 0x00000008\n\tSERVICE_NOTIFY_CONTINUE_PENDING = 0x00000010\n\tSERVICE_NOTIFY_PAUSE_PENDING    = 0x00000020\n\tSERVICE_NOTIFY_PAUSED           = 0x00000040\n\tSERVICE_NOTIFY_CREATED          = 0x00000080\n\tSERVICE_NOTIFY_DELETED          = 0x00000100\n\tSERVICE_NOTIFY_DELETE_PENDING   = 0x00000200\n)\n\ntype SERVICE_STATUS struct {\n\tServiceType             uint32\n\tCurrentState            uint32\n\tControlsAccepted        uint32\n\tWin32ExitCode           uint32\n\tServiceSpecificExitCode uint32\n\tCheckPoint              uint32\n\tWaitHint                uint32\n}\n\ntype SERVICE_TABLE_ENTRY struct {\n\tServiceName *uint16\n\tServiceProc uintptr\n}\n\ntype QUERY_SERVICE_CONFIG struct {\n\tServiceType      uint32\n\tStartType        uint32\n\tErrorControl     uint32\n\tBinaryPathName   *uint16\n\tLoadOrderGroup   *uint16\n\tTagId            uint32\n\tDependencies     *uint16\n\tServiceStartName *uint16\n\tDisplayName      *uint16\n}\n\ntype SERVICE_DESCRIPTION struct {\n\tDescription *uint16\n}\n\ntype SERVICE_DELAYED_AUTO_START_INFO struct {\n\tIsDelayedAutoStartUp uint32\n}\n\ntype SERVICE_STATUS_PROCESS struct {\n\tServiceType             uint32\n\tCurrentState            uint32\n\tControlsAccepted        uint32\n\tWin32ExitCode           uint32\n\tServiceSpecificExitCode uint32\n\tCheckPoint              uint32\n\tWaitHint                uint32\n\tProcessId               uint32\n\tServiceFlags            uint32\n}\n\ntype ENUM_SERVICE_STATUS_PROCESS struct {\n\tServiceName          *uint16\n\tDisplayName          *uint16\n\tServiceStatusProcess SERVICE_STATUS_PROCESS\n}\n\ntype SERVICE_NOTIFY struct {\n\tVersion               uint32\n\tNotifyCallback        uintptr\n\tContext               uintptr\n\tNotificationStatus    uint32\n\tServiceStatus         SERVICE_STATUS_PROCESS\n\tNotificationTriggered uint32\n\tServiceNames          *uint16\n}\n\ntype SERVICE_FAILURE_ACTIONS struct {\n\tResetPeriod  uint32\n\tRebootMsg    *uint16\n\tCommand      *uint16\n\tActionsCount uint32\n\tActions      *SC_ACTION\n}\n\ntype SC_ACTION struct {\n\tType  uint32\n\tDelay uint32\n}\n\ntype QUERY_SERVICE_LOCK_STATUS struct {\n\tIsLocked     uint32\n\tLockOwner    *uint16\n\tLockDuration uint32\n}\n\n//sys\tCloseServiceHandle(handle Handle) (err error) = advapi32.CloseServiceHandle\n//sys\tCreateService(mgr Handle, serviceName *uint16, displayName *uint16, access uint32, srvType uint32, startType uint32, errCtl uint32, pathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16) (handle Handle, err error) [failretval==0] = advapi32.CreateServiceW\n//sys\tOpenService(mgr Handle, serviceName *uint16, access uint32) (handle Handle, err error) [failretval==0] = advapi32.OpenServiceW\n//sys\tDeleteService(service Handle) (err error) = advapi32.DeleteService\n//sys\tStartService(service Handle, numArgs uint32, argVectors **uint16) (err error) = advapi32.StartServiceW\n//sys\tQueryServiceStatus(service Handle, status *SERVICE_STATUS) (err error) = advapi32.QueryServiceStatus\n//sys\tQueryServiceLockStatus(mgr Handle, lockStatus *QUERY_SERVICE_LOCK_STATUS, bufSize uint32, bytesNeeded *uint32) (err error) = advapi32.QueryServiceLockStatusW\n//sys\tControlService(service Handle, control uint32, status *SERVICE_STATUS) (err error) = advapi32.ControlService\n//sys\tStartServiceCtrlDispatcher(serviceTable *SERVICE_TABLE_ENTRY) (err error) = advapi32.StartServiceCtrlDispatcherW\n//sys\tSetServiceStatus(service Handle, serviceStatus *SERVICE_STATUS) (err error) = advapi32.SetServiceStatus\n//sys\tChangeServiceConfig(service Handle, serviceType uint32, startType uint32, errorControl uint32, binaryPathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16, displayName *uint16) (err error) = advapi32.ChangeServiceConfigW\n//sys\tQueryServiceConfig(service Handle, serviceConfig *QUERY_SERVICE_CONFIG, bufSize uint32, bytesNeeded *uint32) (err error) = advapi32.QueryServiceConfigW\n//sys\tChangeServiceConfig2(service Handle, infoLevel uint32, info *byte) (err error) = advapi32.ChangeServiceConfig2W\n//sys\tQueryServiceConfig2(service Handle, infoLevel uint32, buff *byte, buffSize uint32, bytesNeeded *uint32) (err error) = advapi32.QueryServiceConfig2W\n//sys\tEnumServicesStatusEx(mgr Handle, infoLevel uint32, serviceType uint32, serviceState uint32, services *byte, bufSize uint32, bytesNeeded *uint32, servicesReturned *uint32, resumeHandle *uint32, groupName *uint16) (err error) = advapi32.EnumServicesStatusExW\n//sys\tQueryServiceStatusEx(service Handle, infoLevel uint32, buff *byte, buffSize uint32, bytesNeeded *uint32) (err error) = advapi32.QueryServiceStatusEx\n//sys\tNotifyServiceStatusChange(service Handle, notifyMask uint32, notifier *SERVICE_NOTIFY) (ret error) = advapi32.NotifyServiceStatusChangeW\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/str.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build windows\n\npackage windows\n\nfunc itoa(val int) string { // do it here rather than with fmt to avoid dependency\n\tif val < 0 {\n\t\treturn \"-\" + itoa(-val)\n\t}\n\tvar buf [32]byte // big enough for int64\n\ti := len(buf) - 1\n\tfor val >= 10 {\n\t\tbuf[i] = byte(val%10 + '0')\n\t\ti--\n\t\tval /= 10\n\t}\n\tbuf[i] = byte(val + '0')\n\treturn string(buf[i:])\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/syscall.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build windows\n\n// Package windows contains an interface to the low-level operating system\n// primitives. OS details vary depending on the underlying system, and\n// by default, godoc will display the OS-specific documentation for the current\n// system. If you want godoc to display syscall documentation for another\n// system, set $GOOS and $GOARCH to the desired system. For example, if\n// you want to view documentation for freebsd/arm on linux/amd64, set $GOOS\n// to freebsd and $GOARCH to arm.\n//\n// The primary use of this package is inside other packages that provide a more\n// portable interface to the system, such as \"os\", \"time\" and \"net\".  Use\n// those packages rather than this one if you can.\n//\n// For details of the functions and data types in this package consult\n// the manuals for the appropriate operating system.\n//\n// These calls return err == nil to indicate success; otherwise\n// err represents an operating system error describing the failure and\n// holds a value of type syscall.Errno.\npackage windows // import \"golang.org/x/sys/windows\"\n\nimport (\n\t\"syscall\"\n)\n\n// ByteSliceFromString returns a NUL-terminated slice of bytes\n// containing the text of s. If s contains a NUL byte at any\n// location, it returns (nil, syscall.EINVAL).\nfunc ByteSliceFromString(s string) ([]byte, error) {\n\tfor i := 0; i < len(s); i++ {\n\t\tif s[i] == 0 {\n\t\t\treturn nil, syscall.EINVAL\n\t\t}\n\t}\n\ta := make([]byte, len(s)+1)\n\tcopy(a, s)\n\treturn a, nil\n}\n\n// BytePtrFromString returns a pointer to a NUL-terminated array of\n// bytes containing the text of s. If s contains a NUL byte at any\n// location, it returns (nil, syscall.EINVAL).\nfunc BytePtrFromString(s string) (*byte, error) {\n\ta, err := ByteSliceFromString(s)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &a[0], nil\n}\n\n// Single-word zero for use when we need a valid pointer to 0 bytes.\n// See mksyscall.pl.\nvar _zero uintptr\n\nfunc (ts *Timespec) Unix() (sec int64, nsec int64) {\n\treturn int64(ts.Sec), int64(ts.Nsec)\n}\n\nfunc (tv *Timeval) Unix() (sec int64, nsec int64) {\n\treturn int64(tv.Sec), int64(tv.Usec) * 1000\n}\n\nfunc (ts *Timespec) Nano() int64 {\n\treturn int64(ts.Sec)*1e9 + int64(ts.Nsec)\n}\n\nfunc (tv *Timeval) Nano() int64 {\n\treturn int64(tv.Sec)*1e9 + int64(tv.Usec)*1000\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/syscall_windows.go",
    "content": "// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Windows system calls.\n\npackage windows\n\nimport (\n\terrorspkg \"errors\"\n\t\"sync\"\n\t\"syscall\"\n\t\"time\"\n\t\"unicode/utf16\"\n\t\"unsafe\"\n\n\t\"golang.org/x/sys/internal/unsafeheader\"\n)\n\ntype Handle uintptr\n\nconst (\n\tInvalidHandle = ^Handle(0)\n\n\t// Flags for DefineDosDevice.\n\tDDD_EXACT_MATCH_ON_REMOVE = 0x00000004\n\tDDD_NO_BROADCAST_SYSTEM   = 0x00000008\n\tDDD_RAW_TARGET_PATH       = 0x00000001\n\tDDD_REMOVE_DEFINITION     = 0x00000002\n\n\t// Return values for GetDriveType.\n\tDRIVE_UNKNOWN     = 0\n\tDRIVE_NO_ROOT_DIR = 1\n\tDRIVE_REMOVABLE   = 2\n\tDRIVE_FIXED       = 3\n\tDRIVE_REMOTE      = 4\n\tDRIVE_CDROM       = 5\n\tDRIVE_RAMDISK     = 6\n\n\t// File system flags from GetVolumeInformation and GetVolumeInformationByHandle.\n\tFILE_CASE_SENSITIVE_SEARCH        = 0x00000001\n\tFILE_CASE_PRESERVED_NAMES         = 0x00000002\n\tFILE_FILE_COMPRESSION             = 0x00000010\n\tFILE_DAX_VOLUME                   = 0x20000000\n\tFILE_NAMED_STREAMS                = 0x00040000\n\tFILE_PERSISTENT_ACLS              = 0x00000008\n\tFILE_READ_ONLY_VOLUME             = 0x00080000\n\tFILE_SEQUENTIAL_WRITE_ONCE        = 0x00100000\n\tFILE_SUPPORTS_ENCRYPTION          = 0x00020000\n\tFILE_SUPPORTS_EXTENDED_ATTRIBUTES = 0x00800000\n\tFILE_SUPPORTS_HARD_LINKS          = 0x00400000\n\tFILE_SUPPORTS_OBJECT_IDS          = 0x00010000\n\tFILE_SUPPORTS_OPEN_BY_FILE_ID     = 0x01000000\n\tFILE_SUPPORTS_REPARSE_POINTS      = 0x00000080\n\tFILE_SUPPORTS_SPARSE_FILES        = 0x00000040\n\tFILE_SUPPORTS_TRANSACTIONS        = 0x00200000\n\tFILE_SUPPORTS_USN_JOURNAL         = 0x02000000\n\tFILE_UNICODE_ON_DISK              = 0x00000004\n\tFILE_VOLUME_IS_COMPRESSED         = 0x00008000\n\tFILE_VOLUME_QUOTAS                = 0x00000020\n\n\t// Flags for LockFileEx.\n\tLOCKFILE_FAIL_IMMEDIATELY = 0x00000001\n\tLOCKFILE_EXCLUSIVE_LOCK   = 0x00000002\n\n\t// Return values of SleepEx and other APC functions\n\tSTATUS_USER_APC    = 0x000000C0\n\tWAIT_IO_COMPLETION = STATUS_USER_APC\n)\n\n// StringToUTF16 is deprecated. Use UTF16FromString instead.\n// If s contains a NUL byte this function panics instead of\n// returning an error.\nfunc StringToUTF16(s string) []uint16 {\n\ta, err := UTF16FromString(s)\n\tif err != nil {\n\t\tpanic(\"windows: string with NUL passed to StringToUTF16\")\n\t}\n\treturn a\n}\n\n// UTF16FromString returns the UTF-16 encoding of the UTF-8 string\n// s, with a terminating NUL added. If s contains a NUL byte at any\n// location, it returns (nil, syscall.EINVAL).\nfunc UTF16FromString(s string) ([]uint16, error) {\n\tfor i := 0; i < len(s); i++ {\n\t\tif s[i] == 0 {\n\t\t\treturn nil, syscall.EINVAL\n\t\t}\n\t}\n\treturn utf16.Encode([]rune(s + \"\\x00\")), nil\n}\n\n// UTF16ToString returns the UTF-8 encoding of the UTF-16 sequence s,\n// with a terminating NUL removed.\nfunc UTF16ToString(s []uint16) string {\n\tfor i, v := range s {\n\t\tif v == 0 {\n\t\t\ts = s[0:i]\n\t\t\tbreak\n\t\t}\n\t}\n\treturn string(utf16.Decode(s))\n}\n\n// StringToUTF16Ptr is deprecated. Use UTF16PtrFromString instead.\n// If s contains a NUL byte this function panics instead of\n// returning an error.\nfunc StringToUTF16Ptr(s string) *uint16 { return &StringToUTF16(s)[0] }\n\n// UTF16PtrFromString returns pointer to the UTF-16 encoding of\n// the UTF-8 string s, with a terminating NUL added. If s\n// contains a NUL byte at any location, it returns (nil, syscall.EINVAL).\nfunc UTF16PtrFromString(s string) (*uint16, error) {\n\ta, err := UTF16FromString(s)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &a[0], nil\n}\n\n// UTF16PtrToString takes a pointer to a UTF-16 sequence and returns the corresponding UTF-8 encoded string.\n// If the pointer is nil, this returns the empty string. This assumes that the UTF-16 sequence is terminated\n// at a zero word; if the zero word is not present, the program may crash.\nfunc UTF16PtrToString(p *uint16) string {\n\tif p == nil {\n\t\treturn \"\"\n\t}\n\tif *p == 0 {\n\t\treturn \"\"\n\t}\n\n\t// Find NUL terminator.\n\tn := 0\n\tfor ptr := unsafe.Pointer(p); *(*uint16)(ptr) != 0; n++ {\n\t\tptr = unsafe.Pointer(uintptr(ptr) + unsafe.Sizeof(*p))\n\t}\n\n\tvar s []uint16\n\th := (*unsafeheader.Slice)(unsafe.Pointer(&s))\n\th.Data = unsafe.Pointer(p)\n\th.Len = n\n\th.Cap = n\n\n\treturn string(utf16.Decode(s))\n}\n\nfunc Getpagesize() int { return 4096 }\n\n// NewCallback converts a Go function to a function pointer conforming to the stdcall calling convention.\n// This is useful when interoperating with Windows code requiring callbacks.\n// The argument is expected to be a function with with one uintptr-sized result. The function must not have arguments with size larger than the size of uintptr.\nfunc NewCallback(fn interface{}) uintptr {\n\treturn syscall.NewCallback(fn)\n}\n\n// NewCallbackCDecl converts a Go function to a function pointer conforming to the cdecl calling convention.\n// This is useful when interoperating with Windows code requiring callbacks.\n// The argument is expected to be a function with with one uintptr-sized result. The function must not have arguments with size larger than the size of uintptr.\nfunc NewCallbackCDecl(fn interface{}) uintptr {\n\treturn syscall.NewCallbackCDecl(fn)\n}\n\n// windows api calls\n\n//sys\tGetLastError() (lasterr error)\n//sys\tLoadLibrary(libname string) (handle Handle, err error) = LoadLibraryW\n//sys\tLoadLibraryEx(libname string, zero Handle, flags uintptr) (handle Handle, err error) = LoadLibraryExW\n//sys\tFreeLibrary(handle Handle) (err error)\n//sys\tGetProcAddress(module Handle, procname string) (proc uintptr, err error)\n//sys\tGetModuleFileName(module Handle, filename *uint16, size uint32) (n uint32, err error) = kernel32.GetModuleFileNameW\n//sys\tGetModuleHandleEx(flags uint32, moduleName *uint16, module *Handle) (err error) = kernel32.GetModuleHandleExW\n//sys\tGetVersion() (ver uint32, err error)\n//sys\tFormatMessage(flags uint32, msgsrc uintptr, msgid uint32, langid uint32, buf []uint16, args *byte) (n uint32, err error) = FormatMessageW\n//sys\tExitProcess(exitcode uint32)\n//sys\tIsWow64Process(handle Handle, isWow64 *bool) (err error) = IsWow64Process\n//sys\tCreateFile(name *uint16, access uint32, mode uint32, sa *SecurityAttributes, createmode uint32, attrs uint32, templatefile Handle) (handle Handle, err error) [failretval==InvalidHandle] = CreateFileW\n//sys\tReadFile(handle Handle, buf []byte, done *uint32, overlapped *Overlapped) (err error)\n//sys\tWriteFile(handle Handle, buf []byte, done *uint32, overlapped *Overlapped) (err error)\n//sys\tGetOverlappedResult(handle Handle, overlapped *Overlapped, done *uint32, wait bool) (err error)\n//sys\tSetFilePointer(handle Handle, lowoffset int32, highoffsetptr *int32, whence uint32) (newlowoffset uint32, err error) [failretval==0xffffffff]\n//sys\tCloseHandle(handle Handle) (err error)\n//sys\tGetStdHandle(stdhandle uint32) (handle Handle, err error) [failretval==InvalidHandle]\n//sys\tSetStdHandle(stdhandle uint32, handle Handle) (err error)\n//sys\tfindFirstFile1(name *uint16, data *win32finddata1) (handle Handle, err error) [failretval==InvalidHandle] = FindFirstFileW\n//sys\tfindNextFile1(handle Handle, data *win32finddata1) (err error) = FindNextFileW\n//sys\tFindClose(handle Handle) (err error)\n//sys\tGetFileInformationByHandle(handle Handle, data *ByHandleFileInformation) (err error)\n//sys\tGetFileInformationByHandleEx(handle Handle, class uint32, outBuffer *byte, outBufferLen uint32) (err error)\n//sys\tGetCurrentDirectory(buflen uint32, buf *uint16) (n uint32, err error) = GetCurrentDirectoryW\n//sys\tSetCurrentDirectory(path *uint16) (err error) = SetCurrentDirectoryW\n//sys\tCreateDirectory(path *uint16, sa *SecurityAttributes) (err error) = CreateDirectoryW\n//sys\tRemoveDirectory(path *uint16) (err error) = RemoveDirectoryW\n//sys\tDeleteFile(path *uint16) (err error) = DeleteFileW\n//sys\tMoveFile(from *uint16, to *uint16) (err error) = MoveFileW\n//sys\tMoveFileEx(from *uint16, to *uint16, flags uint32) (err error) = MoveFileExW\n//sys\tLockFileEx(file Handle, flags uint32, reserved uint32, bytesLow uint32, bytesHigh uint32, overlapped *Overlapped) (err error)\n//sys\tUnlockFileEx(file Handle, reserved uint32, bytesLow uint32, bytesHigh uint32, overlapped *Overlapped) (err error)\n//sys\tGetComputerName(buf *uint16, n *uint32) (err error) = GetComputerNameW\n//sys\tGetComputerNameEx(nametype uint32, buf *uint16, n *uint32) (err error) = GetComputerNameExW\n//sys\tSetEndOfFile(handle Handle) (err error)\n//sys\tGetSystemTimeAsFileTime(time *Filetime)\n//sys\tGetSystemTimePreciseAsFileTime(time *Filetime)\n//sys\tGetTimeZoneInformation(tzi *Timezoneinformation) (rc uint32, err error) [failretval==0xffffffff]\n//sys\tCreateIoCompletionPort(filehandle Handle, cphandle Handle, key uint32, threadcnt uint32) (handle Handle, err error)\n//sys\tGetQueuedCompletionStatus(cphandle Handle, qty *uint32, key *uint32, overlapped **Overlapped, timeout uint32) (err error)\n//sys\tPostQueuedCompletionStatus(cphandle Handle, qty uint32, key uint32, overlapped *Overlapped) (err error)\n//sys\tCancelIo(s Handle) (err error)\n//sys\tCancelIoEx(s Handle, o *Overlapped) (err error)\n//sys\tCreateProcess(appName *uint16, commandLine *uint16, procSecurity *SecurityAttributes, threadSecurity *SecurityAttributes, inheritHandles bool, creationFlags uint32, env *uint16, currentDir *uint16, startupInfo *StartupInfo, outProcInfo *ProcessInformation) (err error) = CreateProcessW\n//sys\tOpenProcess(desiredAccess uint32, inheritHandle bool, processId uint32) (handle Handle, err error)\n//sys\tShellExecute(hwnd Handle, verb *uint16, file *uint16, args *uint16, cwd *uint16, showCmd int32) (err error) [failretval<=32] = shell32.ShellExecuteW\n//sys\tshGetKnownFolderPath(id *KNOWNFOLDERID, flags uint32, token Token, path **uint16) (ret error) = shell32.SHGetKnownFolderPath\n//sys\tTerminateProcess(handle Handle, exitcode uint32) (err error)\n//sys\tGetExitCodeProcess(handle Handle, exitcode *uint32) (err error)\n//sys\tGetStartupInfo(startupInfo *StartupInfo) (err error) = GetStartupInfoW\n//sys\tGetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Filetime, kernelTime *Filetime, userTime *Filetime) (err error)\n//sys\tDuplicateHandle(hSourceProcessHandle Handle, hSourceHandle Handle, hTargetProcessHandle Handle, lpTargetHandle *Handle, dwDesiredAccess uint32, bInheritHandle bool, dwOptions uint32) (err error)\n//sys\tWaitForSingleObject(handle Handle, waitMilliseconds uint32) (event uint32, err error) [failretval==0xffffffff]\n//sys\twaitForMultipleObjects(count uint32, handles uintptr, waitAll bool, waitMilliseconds uint32) (event uint32, err error) [failretval==0xffffffff] = WaitForMultipleObjects\n//sys\tGetTempPath(buflen uint32, buf *uint16) (n uint32, err error) = GetTempPathW\n//sys\tCreatePipe(readhandle *Handle, writehandle *Handle, sa *SecurityAttributes, size uint32) (err error)\n//sys\tGetFileType(filehandle Handle) (n uint32, err error)\n//sys\tCryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error) = advapi32.CryptAcquireContextW\n//sys\tCryptReleaseContext(provhandle Handle, flags uint32) (err error) = advapi32.CryptReleaseContext\n//sys\tCryptGenRandom(provhandle Handle, buflen uint32, buf *byte) (err error) = advapi32.CryptGenRandom\n//sys\tGetEnvironmentStrings() (envs *uint16, err error) [failretval==nil] = kernel32.GetEnvironmentStringsW\n//sys\tFreeEnvironmentStrings(envs *uint16) (err error) = kernel32.FreeEnvironmentStringsW\n//sys\tGetEnvironmentVariable(name *uint16, buffer *uint16, size uint32) (n uint32, err error) = kernel32.GetEnvironmentVariableW\n//sys\tSetEnvironmentVariable(name *uint16, value *uint16) (err error) = kernel32.SetEnvironmentVariableW\n//sys\tCreateEnvironmentBlock(block **uint16, token Token, inheritExisting bool) (err error) = userenv.CreateEnvironmentBlock\n//sys\tDestroyEnvironmentBlock(block *uint16) (err error) = userenv.DestroyEnvironmentBlock\n//sys\tgetTickCount64() (ms uint64) = kernel32.GetTickCount64\n//sys\tSetFileTime(handle Handle, ctime *Filetime, atime *Filetime, wtime *Filetime) (err error)\n//sys\tGetFileAttributes(name *uint16) (attrs uint32, err error) [failretval==INVALID_FILE_ATTRIBUTES] = kernel32.GetFileAttributesW\n//sys\tSetFileAttributes(name *uint16, attrs uint32) (err error) = kernel32.SetFileAttributesW\n//sys\tGetFileAttributesEx(name *uint16, level uint32, info *byte) (err error) = kernel32.GetFileAttributesExW\n//sys\tGetCommandLine() (cmd *uint16) = kernel32.GetCommandLineW\n//sys\tCommandLineToArgv(cmd *uint16, argc *int32) (argv *[8192]*[8192]uint16, err error) [failretval==nil] = shell32.CommandLineToArgvW\n//sys\tLocalFree(hmem Handle) (handle Handle, err error) [failretval!=0]\n//sys\tSetHandleInformation(handle Handle, mask uint32, flags uint32) (err error)\n//sys\tFlushFileBuffers(handle Handle) (err error)\n//sys\tGetFullPathName(path *uint16, buflen uint32, buf *uint16, fname **uint16) (n uint32, err error) = kernel32.GetFullPathNameW\n//sys\tGetLongPathName(path *uint16, buf *uint16, buflen uint32) (n uint32, err error) = kernel32.GetLongPathNameW\n//sys\tGetShortPathName(longpath *uint16, shortpath *uint16, buflen uint32) (n uint32, err error) = kernel32.GetShortPathNameW\n//sys\tCreateFileMapping(fhandle Handle, sa *SecurityAttributes, prot uint32, maxSizeHigh uint32, maxSizeLow uint32, name *uint16) (handle Handle, err error) = kernel32.CreateFileMappingW\n//sys\tMapViewOfFile(handle Handle, access uint32, offsetHigh uint32, offsetLow uint32, length uintptr) (addr uintptr, err error)\n//sys\tUnmapViewOfFile(addr uintptr) (err error)\n//sys\tFlushViewOfFile(addr uintptr, length uintptr) (err error)\n//sys\tVirtualLock(addr uintptr, length uintptr) (err error)\n//sys\tVirtualUnlock(addr uintptr, length uintptr) (err error)\n//sys\tVirtualAlloc(address uintptr, size uintptr, alloctype uint32, protect uint32) (value uintptr, err error) = kernel32.VirtualAlloc\n//sys\tVirtualFree(address uintptr, size uintptr, freetype uint32) (err error) = kernel32.VirtualFree\n//sys\tVirtualProtect(address uintptr, size uintptr, newprotect uint32, oldprotect *uint32) (err error) = kernel32.VirtualProtect\n//sys\tTransmitFile(s Handle, handle Handle, bytesToWrite uint32, bytsPerSend uint32, overlapped *Overlapped, transmitFileBuf *TransmitFileBuffers, flags uint32) (err error) = mswsock.TransmitFile\n//sys\tReadDirectoryChanges(handle Handle, buf *byte, buflen uint32, watchSubTree bool, mask uint32, retlen *uint32, overlapped *Overlapped, completionRoutine uintptr) (err error) = kernel32.ReadDirectoryChangesW\n//sys\tCertOpenSystemStore(hprov Handle, name *uint16) (store Handle, err error) = crypt32.CertOpenSystemStoreW\n//sys   CertOpenStore(storeProvider uintptr, msgAndCertEncodingType uint32, cryptProv uintptr, flags uint32, para uintptr) (handle Handle, err error) [failretval==InvalidHandle] = crypt32.CertOpenStore\n//sys\tCertEnumCertificatesInStore(store Handle, prevContext *CertContext) (context *CertContext, err error) [failretval==nil] = crypt32.CertEnumCertificatesInStore\n//sys   CertAddCertificateContextToStore(store Handle, certContext *CertContext, addDisposition uint32, storeContext **CertContext) (err error) = crypt32.CertAddCertificateContextToStore\n//sys\tCertCloseStore(store Handle, flags uint32) (err error) = crypt32.CertCloseStore\n//sys   CertGetCertificateChain(engine Handle, leaf *CertContext, time *Filetime, additionalStore Handle, para *CertChainPara, flags uint32, reserved uintptr, chainCtx **CertChainContext) (err error) = crypt32.CertGetCertificateChain\n//sys   CertFreeCertificateChain(ctx *CertChainContext) = crypt32.CertFreeCertificateChain\n//sys   CertCreateCertificateContext(certEncodingType uint32, certEncoded *byte, encodedLen uint32) (context *CertContext, err error) [failretval==nil] = crypt32.CertCreateCertificateContext\n//sys   CertFreeCertificateContext(ctx *CertContext) (err error) = crypt32.CertFreeCertificateContext\n//sys   CertVerifyCertificateChainPolicy(policyOID uintptr, chain *CertChainContext, para *CertChainPolicyPara, status *CertChainPolicyStatus) (err error) = crypt32.CertVerifyCertificateChainPolicy\n//sys\tRegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAccess uint32, result *Handle) (regerrno error) = advapi32.RegOpenKeyExW\n//sys\tRegCloseKey(key Handle) (regerrno error) = advapi32.RegCloseKey\n//sys\tRegQueryInfoKey(key Handle, class *uint16, classLen *uint32, reserved *uint32, subkeysLen *uint32, maxSubkeyLen *uint32, maxClassLen *uint32, valuesLen *uint32, maxValueNameLen *uint32, maxValueLen *uint32, saLen *uint32, lastWriteTime *Filetime) (regerrno error) = advapi32.RegQueryInfoKeyW\n//sys\tRegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) = advapi32.RegEnumKeyExW\n//sys\tRegQueryValueEx(key Handle, name *uint16, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegQueryValueExW\n//sys\tGetCurrentProcessId() (pid uint32) = kernel32.GetCurrentProcessId\n//sys\tGetConsoleMode(console Handle, mode *uint32) (err error) = kernel32.GetConsoleMode\n//sys\tSetConsoleMode(console Handle, mode uint32) (err error) = kernel32.SetConsoleMode\n//sys\tGetConsoleScreenBufferInfo(console Handle, info *ConsoleScreenBufferInfo) (err error) = kernel32.GetConsoleScreenBufferInfo\n//sys\tWriteConsole(console Handle, buf *uint16, towrite uint32, written *uint32, reserved *byte) (err error) = kernel32.WriteConsoleW\n//sys\tReadConsole(console Handle, buf *uint16, toread uint32, read *uint32, inputControl *byte) (err error) = kernel32.ReadConsoleW\n//sys\tCreateToolhelp32Snapshot(flags uint32, processId uint32) (handle Handle, err error) [failretval==InvalidHandle] = kernel32.CreateToolhelp32Snapshot\n//sys\tProcess32First(snapshot Handle, procEntry *ProcessEntry32) (err error) = kernel32.Process32FirstW\n//sys\tProcess32Next(snapshot Handle, procEntry *ProcessEntry32) (err error) = kernel32.Process32NextW\n//sys\tThread32First(snapshot Handle, threadEntry *ThreadEntry32) (err error)\n//sys\tThread32Next(snapshot Handle, threadEntry *ThreadEntry32) (err error)\n//sys\tDeviceIoControl(handle Handle, ioControlCode uint32, inBuffer *byte, inBufferSize uint32, outBuffer *byte, outBufferSize uint32, bytesReturned *uint32, overlapped *Overlapped) (err error)\n// This function returns 1 byte BOOLEAN rather than the 4 byte BOOL.\n//sys\tCreateSymbolicLink(symlinkfilename *uint16, targetfilename *uint16, flags uint32) (err error) [failretval&0xff==0] = CreateSymbolicLinkW\n//sys\tCreateHardLink(filename *uint16, existingfilename *uint16, reserved uintptr) (err error) [failretval&0xff==0] = CreateHardLinkW\n//sys\tGetCurrentThreadId() (id uint32)\n//sys\tCreateEvent(eventAttrs *SecurityAttributes, manualReset uint32, initialState uint32, name *uint16) (handle Handle, err error) = kernel32.CreateEventW\n//sys\tCreateEventEx(eventAttrs *SecurityAttributes, name *uint16, flags uint32, desiredAccess uint32) (handle Handle, err error) = kernel32.CreateEventExW\n//sys\tOpenEvent(desiredAccess uint32, inheritHandle bool, name *uint16) (handle Handle, err error) = kernel32.OpenEventW\n//sys\tSetEvent(event Handle) (err error) = kernel32.SetEvent\n//sys\tResetEvent(event Handle) (err error) = kernel32.ResetEvent\n//sys\tPulseEvent(event Handle) (err error) = kernel32.PulseEvent\n//sys\tCreateMutex(mutexAttrs *SecurityAttributes, initialOwner bool, name *uint16) (handle Handle, err error) = kernel32.CreateMutexW\n//sys\tCreateMutexEx(mutexAttrs *SecurityAttributes, name *uint16, flags uint32, desiredAccess uint32) (handle Handle, err error) = kernel32.CreateMutexExW\n//sys\tOpenMutex(desiredAccess uint32, inheritHandle bool, name *uint16) (handle Handle, err error) = kernel32.OpenMutexW\n//sys\tReleaseMutex(mutex Handle) (err error) = kernel32.ReleaseMutex\n//sys\tSleepEx(milliseconds uint32, alertable bool) (ret uint32) = kernel32.SleepEx\n//sys\tCreateJobObject(jobAttr *SecurityAttributes, name *uint16) (handle Handle, err error) = kernel32.CreateJobObjectW\n//sys\tAssignProcessToJobObject(job Handle, process Handle) (err error) = kernel32.AssignProcessToJobObject\n//sys\tTerminateJobObject(job Handle, exitCode uint32) (err error) = kernel32.TerminateJobObject\n//sys\tSetErrorMode(mode uint32) (ret uint32) = kernel32.SetErrorMode\n//sys\tResumeThread(thread Handle) (ret uint32, err error) [failretval==0xffffffff] = kernel32.ResumeThread\n//sys\tSetPriorityClass(process Handle, priorityClass uint32) (err error) = kernel32.SetPriorityClass\n//sys\tGetPriorityClass(process Handle) (ret uint32, err error) = kernel32.GetPriorityClass\n//sys\tQueryInformationJobObject(job Handle, JobObjectInformationClass int32, JobObjectInformation uintptr, JobObjectInformationLength uint32, retlen *uint32) (err error) = kernel32.QueryInformationJobObject\n//sys\tSetInformationJobObject(job Handle, JobObjectInformationClass uint32, JobObjectInformation uintptr, JobObjectInformationLength uint32) (ret int, err error)\n//sys\tGenerateConsoleCtrlEvent(ctrlEvent uint32, processGroupID uint32) (err error)\n//sys\tGetProcessId(process Handle) (id uint32, err error)\n//sys\tOpenThread(desiredAccess uint32, inheritHandle bool, threadId uint32) (handle Handle, err error)\n//sys\tSetProcessPriorityBoost(process Handle, disable bool) (err error) = kernel32.SetProcessPriorityBoost\n//sys\tGetProcessWorkingSetSizeEx(hProcess Handle, lpMinimumWorkingSetSize *uintptr, lpMaximumWorkingSetSize *uintptr, flags *uint32)\n//sys\tSetProcessWorkingSetSizeEx(hProcess Handle, dwMinimumWorkingSetSize uintptr, dwMaximumWorkingSetSize uintptr, flags uint32) (err error)\n\n// Volume Management Functions\n//sys\tDefineDosDevice(flags uint32, deviceName *uint16, targetPath *uint16) (err error) = DefineDosDeviceW\n//sys\tDeleteVolumeMountPoint(volumeMountPoint *uint16) (err error) = DeleteVolumeMountPointW\n//sys\tFindFirstVolume(volumeName *uint16, bufferLength uint32) (handle Handle, err error) [failretval==InvalidHandle] = FindFirstVolumeW\n//sys\tFindFirstVolumeMountPoint(rootPathName *uint16, volumeMountPoint *uint16, bufferLength uint32) (handle Handle, err error) [failretval==InvalidHandle] = FindFirstVolumeMountPointW\n//sys\tFindNextVolume(findVolume Handle, volumeName *uint16, bufferLength uint32) (err error) = FindNextVolumeW\n//sys\tFindNextVolumeMountPoint(findVolumeMountPoint Handle, volumeMountPoint *uint16, bufferLength uint32) (err error) = FindNextVolumeMountPointW\n//sys\tFindVolumeClose(findVolume Handle) (err error)\n//sys\tFindVolumeMountPointClose(findVolumeMountPoint Handle) (err error)\n//sys\tGetDiskFreeSpaceEx(directoryName *uint16, freeBytesAvailableToCaller *uint64, totalNumberOfBytes *uint64, totalNumberOfFreeBytes *uint64) (err error) = GetDiskFreeSpaceExW\n//sys\tGetDriveType(rootPathName *uint16) (driveType uint32) = GetDriveTypeW\n//sys\tGetLogicalDrives() (drivesBitMask uint32, err error) [failretval==0]\n//sys\tGetLogicalDriveStrings(bufferLength uint32, buffer *uint16) (n uint32, err error) [failretval==0] = GetLogicalDriveStringsW\n//sys\tGetVolumeInformation(rootPathName *uint16, volumeNameBuffer *uint16, volumeNameSize uint32, volumeNameSerialNumber *uint32, maximumComponentLength *uint32, fileSystemFlags *uint32, fileSystemNameBuffer *uint16, fileSystemNameSize uint32) (err error) = GetVolumeInformationW\n//sys\tGetVolumeInformationByHandle(file Handle, volumeNameBuffer *uint16, volumeNameSize uint32, volumeNameSerialNumber *uint32, maximumComponentLength *uint32, fileSystemFlags *uint32, fileSystemNameBuffer *uint16, fileSystemNameSize uint32) (err error) = GetVolumeInformationByHandleW\n//sys\tGetVolumeNameForVolumeMountPoint(volumeMountPoint *uint16, volumeName *uint16, bufferlength uint32) (err error) = GetVolumeNameForVolumeMountPointW\n//sys\tGetVolumePathName(fileName *uint16, volumePathName *uint16, bufferLength uint32) (err error) = GetVolumePathNameW\n//sys\tGetVolumePathNamesForVolumeName(volumeName *uint16, volumePathNames *uint16, bufferLength uint32, returnLength *uint32) (err error) = GetVolumePathNamesForVolumeNameW\n//sys\tQueryDosDevice(deviceName *uint16, targetPath *uint16, max uint32) (n uint32, err error) [failretval==0] = QueryDosDeviceW\n//sys\tSetVolumeLabel(rootPathName *uint16, volumeName *uint16) (err error) = SetVolumeLabelW\n//sys\tSetVolumeMountPoint(volumeMountPoint *uint16, volumeName *uint16) (err error) = SetVolumeMountPointW\n//sys\tMessageBox(hwnd Handle, text *uint16, caption *uint16, boxtype uint32) (ret int32, err error) [failretval==0] = user32.MessageBoxW\n//sys\tExitWindowsEx(flags uint32, reason uint32) (err error) = user32.ExitWindowsEx\n//sys\tInitiateSystemShutdownEx(machineName *uint16, message *uint16, timeout uint32, forceAppsClosed bool, rebootAfterShutdown bool, reason uint32) (err error) = advapi32.InitiateSystemShutdownExW\n//sys\tSetProcessShutdownParameters(level uint32, flags uint32) (err error) = kernel32.SetProcessShutdownParameters\n//sys\tGetProcessShutdownParameters(level *uint32, flags *uint32) (err error) = kernel32.GetProcessShutdownParameters\n//sys\tclsidFromString(lpsz *uint16, pclsid *GUID) (ret error) = ole32.CLSIDFromString\n//sys\tstringFromGUID2(rguid *GUID, lpsz *uint16, cchMax int32) (chars int32) = ole32.StringFromGUID2\n//sys\tcoCreateGuid(pguid *GUID) (ret error) = ole32.CoCreateGuid\n//sys\tCoTaskMemFree(address unsafe.Pointer) = ole32.CoTaskMemFree\n//sys\trtlGetVersion(info *OsVersionInfoEx) (ret error) = ntdll.RtlGetVersion\n//sys\trtlGetNtVersionNumbers(majorVersion *uint32, minorVersion *uint32, buildNumber *uint32) = ntdll.RtlGetNtVersionNumbers\n//sys\tgetProcessPreferredUILanguages(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) (err error) = kernel32.GetProcessPreferredUILanguages\n//sys\tgetThreadPreferredUILanguages(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) (err error) = kernel32.GetThreadPreferredUILanguages\n//sys\tgetUserPreferredUILanguages(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) (err error) = kernel32.GetUserPreferredUILanguages\n//sys\tgetSystemPreferredUILanguages(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) (err error) = kernel32.GetSystemPreferredUILanguages\n\n// Process Status API (PSAPI)\n//sys\tEnumProcesses(processIds []uint32, bytesReturned *uint32) (err error) = psapi.EnumProcesses\n\n// syscall interface implementation for other packages\n\n// GetCurrentProcess returns the handle for the current process.\n// It is a pseudo handle that does not need to be closed.\n// The returned error is always nil.\n//\n// Deprecated: use CurrentProcess for the same Handle without the nil\n// error.\nfunc GetCurrentProcess() (Handle, error) {\n\treturn CurrentProcess(), nil\n}\n\n// CurrentProcess returns the handle for the current process.\n// It is a pseudo handle that does not need to be closed.\nfunc CurrentProcess() Handle { return Handle(^uintptr(1 - 1)) }\n\n// GetCurrentThread returns the handle for the current thread.\n// It is a pseudo handle that does not need to be closed.\n// The returned error is always nil.\n//\n// Deprecated: use CurrentThread for the same Handle without the nil\n// error.\nfunc GetCurrentThread() (Handle, error) {\n\treturn CurrentThread(), nil\n}\n\n// CurrentThread returns the handle for the current thread.\n// It is a pseudo handle that does not need to be closed.\nfunc CurrentThread() Handle { return Handle(^uintptr(2 - 1)) }\n\n// GetProcAddressByOrdinal retrieves the address of the exported\n// function from module by ordinal.\nfunc GetProcAddressByOrdinal(module Handle, ordinal uintptr) (proc uintptr, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetProcAddress.Addr(), 2, uintptr(module), ordinal, 0)\n\tproc = uintptr(r0)\n\tif proc == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc Exit(code int) { ExitProcess(uint32(code)) }\n\nfunc makeInheritSa() *SecurityAttributes {\n\tvar sa SecurityAttributes\n\tsa.Length = uint32(unsafe.Sizeof(sa))\n\tsa.InheritHandle = 1\n\treturn &sa\n}\n\nfunc Open(path string, mode int, perm uint32) (fd Handle, err error) {\n\tif len(path) == 0 {\n\t\treturn InvalidHandle, ERROR_FILE_NOT_FOUND\n\t}\n\tpathp, err := UTF16PtrFromString(path)\n\tif err != nil {\n\t\treturn InvalidHandle, err\n\t}\n\tvar access uint32\n\tswitch mode & (O_RDONLY | O_WRONLY | O_RDWR) {\n\tcase O_RDONLY:\n\t\taccess = GENERIC_READ\n\tcase O_WRONLY:\n\t\taccess = GENERIC_WRITE\n\tcase O_RDWR:\n\t\taccess = GENERIC_READ | GENERIC_WRITE\n\t}\n\tif mode&O_CREAT != 0 {\n\t\taccess |= GENERIC_WRITE\n\t}\n\tif mode&O_APPEND != 0 {\n\t\taccess &^= GENERIC_WRITE\n\t\taccess |= FILE_APPEND_DATA\n\t}\n\tsharemode := uint32(FILE_SHARE_READ | FILE_SHARE_WRITE)\n\tvar sa *SecurityAttributes\n\tif mode&O_CLOEXEC == 0 {\n\t\tsa = makeInheritSa()\n\t}\n\tvar createmode uint32\n\tswitch {\n\tcase mode&(O_CREAT|O_EXCL) == (O_CREAT | O_EXCL):\n\t\tcreatemode = CREATE_NEW\n\tcase mode&(O_CREAT|O_TRUNC) == (O_CREAT | O_TRUNC):\n\t\tcreatemode = CREATE_ALWAYS\n\tcase mode&O_CREAT == O_CREAT:\n\t\tcreatemode = OPEN_ALWAYS\n\tcase mode&O_TRUNC == O_TRUNC:\n\t\tcreatemode = TRUNCATE_EXISTING\n\tdefault:\n\t\tcreatemode = OPEN_EXISTING\n\t}\n\tvar attrs uint32 = FILE_ATTRIBUTE_NORMAL\n\tif perm&S_IWRITE == 0 {\n\t\tattrs = FILE_ATTRIBUTE_READONLY\n\t}\n\th, e := CreateFile(pathp, access, sharemode, sa, createmode, attrs, 0)\n\treturn h, e\n}\n\nfunc Read(fd Handle, p []byte) (n int, err error) {\n\tvar done uint32\n\te := ReadFile(fd, p, &done, nil)\n\tif e != nil {\n\t\tif e == ERROR_BROKEN_PIPE {\n\t\t\t// NOTE(brainman): work around ERROR_BROKEN_PIPE is returned on reading EOF from stdin\n\t\t\treturn 0, nil\n\t\t}\n\t\treturn 0, e\n\t}\n\tif raceenabled {\n\t\tif done > 0 {\n\t\t\traceWriteRange(unsafe.Pointer(&p[0]), int(done))\n\t\t}\n\t\traceAcquire(unsafe.Pointer(&ioSync))\n\t}\n\treturn int(done), nil\n}\n\nfunc Write(fd Handle, p []byte) (n int, err error) {\n\tif raceenabled {\n\t\traceReleaseMerge(unsafe.Pointer(&ioSync))\n\t}\n\tvar done uint32\n\te := WriteFile(fd, p, &done, nil)\n\tif e != nil {\n\t\treturn 0, e\n\t}\n\tif raceenabled && done > 0 {\n\t\traceReadRange(unsafe.Pointer(&p[0]), int(done))\n\t}\n\treturn int(done), nil\n}\n\nvar ioSync int64\n\nfunc Seek(fd Handle, offset int64, whence int) (newoffset int64, err error) {\n\tvar w uint32\n\tswitch whence {\n\tcase 0:\n\t\tw = FILE_BEGIN\n\tcase 1:\n\t\tw = FILE_CURRENT\n\tcase 2:\n\t\tw = FILE_END\n\t}\n\thi := int32(offset >> 32)\n\tlo := int32(offset)\n\t// use GetFileType to check pipe, pipe can't do seek\n\tft, _ := GetFileType(fd)\n\tif ft == FILE_TYPE_PIPE {\n\t\treturn 0, syscall.EPIPE\n\t}\n\trlo, e := SetFilePointer(fd, lo, &hi, w)\n\tif e != nil {\n\t\treturn 0, e\n\t}\n\treturn int64(hi)<<32 + int64(rlo), nil\n}\n\nfunc Close(fd Handle) (err error) {\n\treturn CloseHandle(fd)\n}\n\nvar (\n\tStdin  = getStdHandle(STD_INPUT_HANDLE)\n\tStdout = getStdHandle(STD_OUTPUT_HANDLE)\n\tStderr = getStdHandle(STD_ERROR_HANDLE)\n)\n\nfunc getStdHandle(stdhandle uint32) (fd Handle) {\n\tr, _ := GetStdHandle(stdhandle)\n\tCloseOnExec(r)\n\treturn r\n}\n\nconst ImplementsGetwd = true\n\nfunc Getwd() (wd string, err error) {\n\tb := make([]uint16, 300)\n\tn, e := GetCurrentDirectory(uint32(len(b)), &b[0])\n\tif e != nil {\n\t\treturn \"\", e\n\t}\n\treturn string(utf16.Decode(b[0:n])), nil\n}\n\nfunc Chdir(path string) (err error) {\n\tpathp, err := UTF16PtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn SetCurrentDirectory(pathp)\n}\n\nfunc Mkdir(path string, mode uint32) (err error) {\n\tpathp, err := UTF16PtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn CreateDirectory(pathp, nil)\n}\n\nfunc Rmdir(path string) (err error) {\n\tpathp, err := UTF16PtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn RemoveDirectory(pathp)\n}\n\nfunc Unlink(path string) (err error) {\n\tpathp, err := UTF16PtrFromString(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn DeleteFile(pathp)\n}\n\nfunc Rename(oldpath, newpath string) (err error) {\n\tfrom, err := UTF16PtrFromString(oldpath)\n\tif err != nil {\n\t\treturn err\n\t}\n\tto, err := UTF16PtrFromString(newpath)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn MoveFileEx(from, to, MOVEFILE_REPLACE_EXISTING)\n}\n\nfunc ComputerName() (name string, err error) {\n\tvar n uint32 = MAX_COMPUTERNAME_LENGTH + 1\n\tb := make([]uint16, n)\n\te := GetComputerName(&b[0], &n)\n\tif e != nil {\n\t\treturn \"\", e\n\t}\n\treturn string(utf16.Decode(b[0:n])), nil\n}\n\nfunc DurationSinceBoot() time.Duration {\n\treturn time.Duration(getTickCount64()) * time.Millisecond\n}\n\nfunc Ftruncate(fd Handle, length int64) (err error) {\n\tcuroffset, e := Seek(fd, 0, 1)\n\tif e != nil {\n\t\treturn e\n\t}\n\tdefer Seek(fd, curoffset, 0)\n\t_, e = Seek(fd, length, 0)\n\tif e != nil {\n\t\treturn e\n\t}\n\te = SetEndOfFile(fd)\n\tif e != nil {\n\t\treturn e\n\t}\n\treturn nil\n}\n\nfunc Gettimeofday(tv *Timeval) (err error) {\n\tvar ft Filetime\n\tGetSystemTimeAsFileTime(&ft)\n\t*tv = NsecToTimeval(ft.Nanoseconds())\n\treturn nil\n}\n\nfunc Pipe(p []Handle) (err error) {\n\tif len(p) != 2 {\n\t\treturn syscall.EINVAL\n\t}\n\tvar r, w Handle\n\te := CreatePipe(&r, &w, makeInheritSa(), 0)\n\tif e != nil {\n\t\treturn e\n\t}\n\tp[0] = r\n\tp[1] = w\n\treturn nil\n}\n\nfunc Utimes(path string, tv []Timeval) (err error) {\n\tif len(tv) != 2 {\n\t\treturn syscall.EINVAL\n\t}\n\tpathp, e := UTF16PtrFromString(path)\n\tif e != nil {\n\t\treturn e\n\t}\n\th, e := CreateFile(pathp,\n\t\tFILE_WRITE_ATTRIBUTES, FILE_SHARE_WRITE, nil,\n\t\tOPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0)\n\tif e != nil {\n\t\treturn e\n\t}\n\tdefer Close(h)\n\ta := NsecToFiletime(tv[0].Nanoseconds())\n\tw := NsecToFiletime(tv[1].Nanoseconds())\n\treturn SetFileTime(h, nil, &a, &w)\n}\n\nfunc UtimesNano(path string, ts []Timespec) (err error) {\n\tif len(ts) != 2 {\n\t\treturn syscall.EINVAL\n\t}\n\tpathp, e := UTF16PtrFromString(path)\n\tif e != nil {\n\t\treturn e\n\t}\n\th, e := CreateFile(pathp,\n\t\tFILE_WRITE_ATTRIBUTES, FILE_SHARE_WRITE, nil,\n\t\tOPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0)\n\tif e != nil {\n\t\treturn e\n\t}\n\tdefer Close(h)\n\ta := NsecToFiletime(TimespecToNsec(ts[0]))\n\tw := NsecToFiletime(TimespecToNsec(ts[1]))\n\treturn SetFileTime(h, nil, &a, &w)\n}\n\nfunc Fsync(fd Handle) (err error) {\n\treturn FlushFileBuffers(fd)\n}\n\nfunc Chmod(path string, mode uint32) (err error) {\n\tp, e := UTF16PtrFromString(path)\n\tif e != nil {\n\t\treturn e\n\t}\n\tattrs, e := GetFileAttributes(p)\n\tif e != nil {\n\t\treturn e\n\t}\n\tif mode&S_IWRITE != 0 {\n\t\tattrs &^= FILE_ATTRIBUTE_READONLY\n\t} else {\n\t\tattrs |= FILE_ATTRIBUTE_READONLY\n\t}\n\treturn SetFileAttributes(p, attrs)\n}\n\nfunc LoadGetSystemTimePreciseAsFileTime() error {\n\treturn procGetSystemTimePreciseAsFileTime.Find()\n}\n\nfunc LoadCancelIoEx() error {\n\treturn procCancelIoEx.Find()\n}\n\nfunc LoadSetFileCompletionNotificationModes() error {\n\treturn procSetFileCompletionNotificationModes.Find()\n}\n\nfunc WaitForMultipleObjects(handles []Handle, waitAll bool, waitMilliseconds uint32) (event uint32, err error) {\n\t// Every other win32 array API takes arguments as \"pointer, count\", except for this function. So we\n\t// can't declare it as a usual [] type, because mksyscall will use the opposite order. We therefore\n\t// trivially stub this ourselves.\n\n\tvar handlePtr *Handle\n\tif len(handles) > 0 {\n\t\thandlePtr = &handles[0]\n\t}\n\treturn waitForMultipleObjects(uint32(len(handles)), uintptr(unsafe.Pointer(handlePtr)), waitAll, waitMilliseconds)\n}\n\n// net api calls\n\nconst socket_error = uintptr(^uint32(0))\n\n//sys\tWSAStartup(verreq uint32, data *WSAData) (sockerr error) = ws2_32.WSAStartup\n//sys\tWSACleanup() (err error) [failretval==socket_error] = ws2_32.WSACleanup\n//sys\tWSAIoctl(s Handle, iocc uint32, inbuf *byte, cbif uint32, outbuf *byte, cbob uint32, cbbr *uint32, overlapped *Overlapped, completionRoutine uintptr) (err error) [failretval==socket_error] = ws2_32.WSAIoctl\n//sys\tsocket(af int32, typ int32, protocol int32) (handle Handle, err error) [failretval==InvalidHandle] = ws2_32.socket\n//sys\tsendto(s Handle, buf []byte, flags int32, to unsafe.Pointer, tolen int32) (err error) [failretval==socket_error] = ws2_32.sendto\n//sys\trecvfrom(s Handle, buf []byte, flags int32, from *RawSockaddrAny, fromlen *int32) (n int32, err error) [failretval==-1] = ws2_32.recvfrom\n//sys\tSetsockopt(s Handle, level int32, optname int32, optval *byte, optlen int32) (err error) [failretval==socket_error] = ws2_32.setsockopt\n//sys\tGetsockopt(s Handle, level int32, optname int32, optval *byte, optlen *int32) (err error) [failretval==socket_error] = ws2_32.getsockopt\n//sys\tbind(s Handle, name unsafe.Pointer, namelen int32) (err error) [failretval==socket_error] = ws2_32.bind\n//sys\tconnect(s Handle, name unsafe.Pointer, namelen int32) (err error) [failretval==socket_error] = ws2_32.connect\n//sys\tgetsockname(s Handle, rsa *RawSockaddrAny, addrlen *int32) (err error) [failretval==socket_error] = ws2_32.getsockname\n//sys\tgetpeername(s Handle, rsa *RawSockaddrAny, addrlen *int32) (err error) [failretval==socket_error] = ws2_32.getpeername\n//sys\tlisten(s Handle, backlog int32) (err error) [failretval==socket_error] = ws2_32.listen\n//sys\tshutdown(s Handle, how int32) (err error) [failretval==socket_error] = ws2_32.shutdown\n//sys\tClosesocket(s Handle) (err error) [failretval==socket_error] = ws2_32.closesocket\n//sys\tAcceptEx(ls Handle, as Handle, buf *byte, rxdatalen uint32, laddrlen uint32, raddrlen uint32, recvd *uint32, overlapped *Overlapped) (err error) = mswsock.AcceptEx\n//sys\tGetAcceptExSockaddrs(buf *byte, rxdatalen uint32, laddrlen uint32, raddrlen uint32, lrsa **RawSockaddrAny, lrsalen *int32, rrsa **RawSockaddrAny, rrsalen *int32) = mswsock.GetAcceptExSockaddrs\n//sys\tWSARecv(s Handle, bufs *WSABuf, bufcnt uint32, recvd *uint32, flags *uint32, overlapped *Overlapped, croutine *byte) (err error) [failretval==socket_error] = ws2_32.WSARecv\n//sys\tWSASend(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, overlapped *Overlapped, croutine *byte) (err error) [failretval==socket_error] = ws2_32.WSASend\n//sys\tWSARecvFrom(s Handle, bufs *WSABuf, bufcnt uint32, recvd *uint32, flags *uint32,  from *RawSockaddrAny, fromlen *int32, overlapped *Overlapped, croutine *byte) (err error) [failretval==socket_error] = ws2_32.WSARecvFrom\n//sys\tWSASendTo(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, to *RawSockaddrAny, tolen int32,  overlapped *Overlapped, croutine *byte) (err error) [failretval==socket_error] = ws2_32.WSASendTo\n//sys\tGetHostByName(name string) (h *Hostent, err error) [failretval==nil] = ws2_32.gethostbyname\n//sys\tGetServByName(name string, proto string) (s *Servent, err error) [failretval==nil] = ws2_32.getservbyname\n//sys\tNtohs(netshort uint16) (u uint16) = ws2_32.ntohs\n//sys\tGetProtoByName(name string) (p *Protoent, err error) [failretval==nil] = ws2_32.getprotobyname\n//sys\tDnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) = dnsapi.DnsQuery_W\n//sys\tDnsRecordListFree(rl *DNSRecord, freetype uint32) = dnsapi.DnsRecordListFree\n//sys\tDnsNameCompare(name1 *uint16, name2 *uint16) (same bool) = dnsapi.DnsNameCompare_W\n//sys\tGetAddrInfoW(nodename *uint16, servicename *uint16, hints *AddrinfoW, result **AddrinfoW) (sockerr error) = ws2_32.GetAddrInfoW\n//sys\tFreeAddrInfoW(addrinfo *AddrinfoW) = ws2_32.FreeAddrInfoW\n//sys\tGetIfEntry(pIfRow *MibIfRow) (errcode error) = iphlpapi.GetIfEntry\n//sys\tGetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) = iphlpapi.GetAdaptersInfo\n//sys\tSetFileCompletionNotificationModes(handle Handle, flags uint8) (err error) = kernel32.SetFileCompletionNotificationModes\n//sys\tWSAEnumProtocols(protocols *int32, protocolBuffer *WSAProtocolInfo, bufferLength *uint32) (n int32, err error) [failretval==-1] = ws2_32.WSAEnumProtocolsW\n//sys\tGetAdaptersAddresses(family uint32, flags uint32, reserved uintptr, adapterAddresses *IpAdapterAddresses, sizePointer *uint32) (errcode error) = iphlpapi.GetAdaptersAddresses\n//sys\tGetACP() (acp uint32) = kernel32.GetACP\n//sys\tMultiByteToWideChar(codePage uint32, dwFlags uint32, str *byte, nstr int32, wchar *uint16, nwchar int32) (nwrite int32, err error) = kernel32.MultiByteToWideChar\n\n// For testing: clients can set this flag to force\n// creation of IPv6 sockets to return EAFNOSUPPORT.\nvar SocketDisableIPv6 bool\n\ntype RawSockaddrInet4 struct {\n\tFamily uint16\n\tPort   uint16\n\tAddr   [4]byte /* in_addr */\n\tZero   [8]uint8\n}\n\ntype RawSockaddrInet6 struct {\n\tFamily   uint16\n\tPort     uint16\n\tFlowinfo uint32\n\tAddr     [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\ntype RawSockaddr struct {\n\tFamily uint16\n\tData   [14]int8\n}\n\ntype RawSockaddrAny struct {\n\tAddr RawSockaddr\n\tPad  [100]int8\n}\n\ntype Sockaddr interface {\n\tsockaddr() (ptr unsafe.Pointer, len int32, err error) // lowercase; only we can define Sockaddrs\n}\n\ntype SockaddrInet4 struct {\n\tPort int\n\tAddr [4]byte\n\traw  RawSockaddrInet4\n}\n\nfunc (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, int32, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, syscall.EINVAL\n\t}\n\tsa.raw.Family = AF_INET\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), int32(unsafe.Sizeof(sa.raw)), nil\n}\n\ntype SockaddrInet6 struct {\n\tPort   int\n\tZoneId uint32\n\tAddr   [16]byte\n\traw    RawSockaddrInet6\n}\n\nfunc (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, int32, error) {\n\tif sa.Port < 0 || sa.Port > 0xFFFF {\n\t\treturn nil, 0, syscall.EINVAL\n\t}\n\tsa.raw.Family = AF_INET6\n\tp := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))\n\tp[0] = byte(sa.Port >> 8)\n\tp[1] = byte(sa.Port)\n\tsa.raw.Scope_id = sa.ZoneId\n\tfor i := 0; i < len(sa.Addr); i++ {\n\t\tsa.raw.Addr[i] = sa.Addr[i]\n\t}\n\treturn unsafe.Pointer(&sa.raw), int32(unsafe.Sizeof(sa.raw)), nil\n}\n\ntype RawSockaddrUnix struct {\n\tFamily uint16\n\tPath   [UNIX_PATH_MAX]int8\n}\n\ntype SockaddrUnix struct {\n\tName string\n\traw  RawSockaddrUnix\n}\n\nfunc (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, int32, error) {\n\tname := sa.Name\n\tn := len(name)\n\tif n > len(sa.raw.Path) {\n\t\treturn nil, 0, syscall.EINVAL\n\t}\n\tif n == len(sa.raw.Path) && name[0] != '@' {\n\t\treturn nil, 0, syscall.EINVAL\n\t}\n\tsa.raw.Family = AF_UNIX\n\tfor i := 0; i < n; i++ {\n\t\tsa.raw.Path[i] = int8(name[i])\n\t}\n\t// length is family (uint16), name, NUL.\n\tsl := int32(2)\n\tif n > 0 {\n\t\tsl += int32(n) + 1\n\t}\n\tif sa.raw.Path[0] == '@' {\n\t\tsa.raw.Path[0] = 0\n\t\t// Don't count trailing NUL for abstract address.\n\t\tsl--\n\t}\n\n\treturn unsafe.Pointer(&sa.raw), sl, nil\n}\n\nfunc (rsa *RawSockaddrAny) Sockaddr() (Sockaddr, error) {\n\tswitch rsa.Addr.Family {\n\tcase AF_UNIX:\n\t\tpp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrUnix)\n\t\tif pp.Path[0] == 0 {\n\t\t\t// \"Abstract\" Unix domain socket.\n\t\t\t// Rewrite leading NUL as @ for textual display.\n\t\t\t// (This is the standard convention.)\n\t\t\t// Not friendly to overwrite in place,\n\t\t\t// but the callers below don't care.\n\t\t\tpp.Path[0] = '@'\n\t\t}\n\n\t\t// Assume path ends at NUL.\n\t\t// This is not technically the Linux semantics for\n\t\t// abstract Unix domain sockets--they are supposed\n\t\t// to be uninterpreted fixed-size binary blobs--but\n\t\t// everyone uses this convention.\n\t\tn := 0\n\t\tfor n < len(pp.Path) && pp.Path[n] != 0 {\n\t\t\tn++\n\t\t}\n\t\tbytes := (*[len(pp.Path)]byte)(unsafe.Pointer(&pp.Path[0]))[0:n]\n\t\tsa.Name = string(bytes)\n\t\treturn sa, nil\n\n\tcase AF_INET:\n\t\tpp := (*RawSockaddrInet4)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrInet4)\n\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t}\n\t\treturn sa, nil\n\n\tcase AF_INET6:\n\t\tpp := (*RawSockaddrInet6)(unsafe.Pointer(rsa))\n\t\tsa := new(SockaddrInet6)\n\t\tp := (*[2]byte)(unsafe.Pointer(&pp.Port))\n\t\tsa.Port = int(p[0])<<8 + int(p[1])\n\t\tsa.ZoneId = pp.Scope_id\n\t\tfor i := 0; i < len(sa.Addr); i++ {\n\t\t\tsa.Addr[i] = pp.Addr[i]\n\t\t}\n\t\treturn sa, nil\n\t}\n\treturn nil, syscall.EAFNOSUPPORT\n}\n\nfunc Socket(domain, typ, proto int) (fd Handle, err error) {\n\tif domain == AF_INET6 && SocketDisableIPv6 {\n\t\treturn InvalidHandle, syscall.EAFNOSUPPORT\n\t}\n\treturn socket(int32(domain), int32(typ), int32(proto))\n}\n\nfunc SetsockoptInt(fd Handle, level, opt int, value int) (err error) {\n\tv := int32(value)\n\treturn Setsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(&v)), int32(unsafe.Sizeof(v)))\n}\n\nfunc Bind(fd Handle, sa Sockaddr) (err error) {\n\tptr, n, err := sa.sockaddr()\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn bind(fd, ptr, n)\n}\n\nfunc Connect(fd Handle, sa Sockaddr) (err error) {\n\tptr, n, err := sa.sockaddr()\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn connect(fd, ptr, n)\n}\n\nfunc Getsockname(fd Handle) (sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tl := int32(unsafe.Sizeof(rsa))\n\tif err = getsockname(fd, &rsa, &l); err != nil {\n\t\treturn\n\t}\n\treturn rsa.Sockaddr()\n}\n\nfunc Getpeername(fd Handle) (sa Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tl := int32(unsafe.Sizeof(rsa))\n\tif err = getpeername(fd, &rsa, &l); err != nil {\n\t\treturn\n\t}\n\treturn rsa.Sockaddr()\n}\n\nfunc Listen(s Handle, n int) (err error) {\n\treturn listen(s, int32(n))\n}\n\nfunc Shutdown(fd Handle, how int) (err error) {\n\treturn shutdown(fd, int32(how))\n}\n\nfunc WSASendto(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, to Sockaddr, overlapped *Overlapped, croutine *byte) (err error) {\n\trsa, l, err := to.sockaddr()\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn WSASendTo(s, bufs, bufcnt, sent, flags, (*RawSockaddrAny)(unsafe.Pointer(rsa)), l, overlapped, croutine)\n}\n\nfunc LoadGetAddrInfo() error {\n\treturn procGetAddrInfoW.Find()\n}\n\nvar connectExFunc struct {\n\tonce sync.Once\n\taddr uintptr\n\terr  error\n}\n\nfunc LoadConnectEx() error {\n\tconnectExFunc.once.Do(func() {\n\t\tvar s Handle\n\t\ts, connectExFunc.err = Socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)\n\t\tif connectExFunc.err != nil {\n\t\t\treturn\n\t\t}\n\t\tdefer CloseHandle(s)\n\t\tvar n uint32\n\t\tconnectExFunc.err = WSAIoctl(s,\n\t\t\tSIO_GET_EXTENSION_FUNCTION_POINTER,\n\t\t\t(*byte)(unsafe.Pointer(&WSAID_CONNECTEX)),\n\t\t\tuint32(unsafe.Sizeof(WSAID_CONNECTEX)),\n\t\t\t(*byte)(unsafe.Pointer(&connectExFunc.addr)),\n\t\t\tuint32(unsafe.Sizeof(connectExFunc.addr)),\n\t\t\t&n, nil, 0)\n\t})\n\treturn connectExFunc.err\n}\n\nfunc connectEx(s Handle, name unsafe.Pointer, namelen int32, sendBuf *byte, sendDataLen uint32, bytesSent *uint32, overlapped *Overlapped) (err error) {\n\tr1, _, e1 := syscall.Syscall9(connectExFunc.addr, 7, uintptr(s), uintptr(name), uintptr(namelen), uintptr(unsafe.Pointer(sendBuf)), uintptr(sendDataLen), uintptr(unsafe.Pointer(bytesSent)), uintptr(unsafe.Pointer(overlapped)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = error(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ConnectEx(fd Handle, sa Sockaddr, sendBuf *byte, sendDataLen uint32, bytesSent *uint32, overlapped *Overlapped) error {\n\terr := LoadConnectEx()\n\tif err != nil {\n\t\treturn errorspkg.New(\"failed to find ConnectEx: \" + err.Error())\n\t}\n\tptr, n, err := sa.sockaddr()\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn connectEx(fd, ptr, n, sendBuf, sendDataLen, bytesSent, overlapped)\n}\n\nvar sendRecvMsgFunc struct {\n\tonce     sync.Once\n\tsendAddr uintptr\n\trecvAddr uintptr\n\terr      error\n}\n\nfunc loadWSASendRecvMsg() error {\n\tsendRecvMsgFunc.once.Do(func() {\n\t\tvar s Handle\n\t\ts, sendRecvMsgFunc.err = Socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)\n\t\tif sendRecvMsgFunc.err != nil {\n\t\t\treturn\n\t\t}\n\t\tdefer CloseHandle(s)\n\t\tvar n uint32\n\t\tsendRecvMsgFunc.err = WSAIoctl(s,\n\t\t\tSIO_GET_EXTENSION_FUNCTION_POINTER,\n\t\t\t(*byte)(unsafe.Pointer(&WSAID_WSARECVMSG)),\n\t\t\tuint32(unsafe.Sizeof(WSAID_WSARECVMSG)),\n\t\t\t(*byte)(unsafe.Pointer(&sendRecvMsgFunc.recvAddr)),\n\t\t\tuint32(unsafe.Sizeof(sendRecvMsgFunc.recvAddr)),\n\t\t\t&n, nil, 0)\n\t\tif sendRecvMsgFunc.err != nil {\n\t\t\treturn\n\t\t}\n\t\tsendRecvMsgFunc.err = WSAIoctl(s,\n\t\t\tSIO_GET_EXTENSION_FUNCTION_POINTER,\n\t\t\t(*byte)(unsafe.Pointer(&WSAID_WSASENDMSG)),\n\t\t\tuint32(unsafe.Sizeof(WSAID_WSASENDMSG)),\n\t\t\t(*byte)(unsafe.Pointer(&sendRecvMsgFunc.sendAddr)),\n\t\t\tuint32(unsafe.Sizeof(sendRecvMsgFunc.sendAddr)),\n\t\t\t&n, nil, 0)\n\t})\n\treturn sendRecvMsgFunc.err\n}\n\nfunc WSASendMsg(fd Handle, msg *WSAMsg, flags uint32, bytesSent *uint32, overlapped *Overlapped, croutine *byte) error {\n\terr := loadWSASendRecvMsg()\n\tif err != nil {\n\t\treturn err\n\t}\n\tr1, _, e1 := syscall.Syscall6(sendRecvMsgFunc.sendAddr, 6, uintptr(fd), uintptr(unsafe.Pointer(msg)), uintptr(flags), uintptr(unsafe.Pointer(bytesSent)), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(croutine)))\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn err\n}\n\nfunc WSARecvMsg(fd Handle, msg *WSAMsg, bytesReceived *uint32, overlapped *Overlapped, croutine *byte) error {\n\terr := loadWSASendRecvMsg()\n\tif err != nil {\n\t\treturn err\n\t}\n\tr1, _, e1 := syscall.Syscall6(sendRecvMsgFunc.recvAddr, 5, uintptr(fd), uintptr(unsafe.Pointer(msg)), uintptr(unsafe.Pointer(bytesReceived)), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(croutine)), 0)\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn err\n}\n\n// Invented structures to support what package os expects.\ntype Rusage struct {\n\tCreationTime Filetime\n\tExitTime     Filetime\n\tKernelTime   Filetime\n\tUserTime     Filetime\n}\n\ntype WaitStatus struct {\n\tExitCode uint32\n}\n\nfunc (w WaitStatus) Exited() bool { return true }\n\nfunc (w WaitStatus) ExitStatus() int { return int(w.ExitCode) }\n\nfunc (w WaitStatus) Signal() Signal { return -1 }\n\nfunc (w WaitStatus) CoreDump() bool { return false }\n\nfunc (w WaitStatus) Stopped() bool { return false }\n\nfunc (w WaitStatus) Continued() bool { return false }\n\nfunc (w WaitStatus) StopSignal() Signal { return -1 }\n\nfunc (w WaitStatus) Signaled() bool { return false }\n\nfunc (w WaitStatus) TrapCause() int { return -1 }\n\n// Timespec is an invented structure on Windows, but here for\n// consistency with the corresponding package for other operating systems.\ntype Timespec struct {\n\tSec  int64\n\tNsec int64\n}\n\nfunc TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }\n\nfunc NsecToTimespec(nsec int64) (ts Timespec) {\n\tts.Sec = nsec / 1e9\n\tts.Nsec = nsec % 1e9\n\treturn\n}\n\n// TODO(brainman): fix all needed for net\n\nfunc Accept(fd Handle) (nfd Handle, sa Sockaddr, err error) { return 0, nil, syscall.EWINDOWS }\n\nfunc Recvfrom(fd Handle, p []byte, flags int) (n int, from Sockaddr, err error) {\n\tvar rsa RawSockaddrAny\n\tl := int32(unsafe.Sizeof(rsa))\n\tn32, err := recvfrom(fd, p, int32(flags), &rsa, &l)\n\tn = int(n32)\n\tif err != nil {\n\t\treturn\n\t}\n\tfrom, err = rsa.Sockaddr()\n\treturn\n}\n\nfunc Sendto(fd Handle, p []byte, flags int, to Sockaddr) (err error) {\n\tptr, l, err := to.sockaddr()\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn sendto(fd, p, int32(flags), ptr, l)\n}\n\nfunc SetsockoptTimeval(fd Handle, level, opt int, tv *Timeval) (err error) { return syscall.EWINDOWS }\n\n// The Linger struct is wrong but we only noticed after Go 1.\n// sysLinger is the real system call structure.\n\n// BUG(brainman): The definition of Linger is not appropriate for direct use\n// with Setsockopt and Getsockopt.\n// Use SetsockoptLinger instead.\n\ntype Linger struct {\n\tOnoff  int32\n\tLinger int32\n}\n\ntype sysLinger struct {\n\tOnoff  uint16\n\tLinger uint16\n}\n\ntype IPMreq struct {\n\tMultiaddr [4]byte /* in_addr */\n\tInterface [4]byte /* in_addr */\n}\n\ntype IPv6Mreq struct {\n\tMultiaddr [16]byte /* in6_addr */\n\tInterface uint32\n}\n\nfunc GetsockoptInt(fd Handle, level, opt int) (int, error) {\n\tv := int32(0)\n\tl := int32(unsafe.Sizeof(v))\n\terr := Getsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(&v)), &l)\n\treturn int(v), err\n}\n\nfunc SetsockoptLinger(fd Handle, level, opt int, l *Linger) (err error) {\n\tsys := sysLinger{Onoff: uint16(l.Onoff), Linger: uint16(l.Linger)}\n\treturn Setsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(&sys)), int32(unsafe.Sizeof(sys)))\n}\n\nfunc SetsockoptInet4Addr(fd Handle, level, opt int, value [4]byte) (err error) {\n\treturn Setsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(&value[0])), 4)\n}\nfunc SetsockoptIPMreq(fd Handle, level, opt int, mreq *IPMreq) (err error) {\n\treturn Setsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(mreq)), int32(unsafe.Sizeof(*mreq)))\n}\nfunc SetsockoptIPv6Mreq(fd Handle, level, opt int, mreq *IPv6Mreq) (err error) {\n\treturn syscall.EWINDOWS\n}\n\nfunc Getpid() (pid int) { return int(GetCurrentProcessId()) }\n\nfunc FindFirstFile(name *uint16, data *Win32finddata) (handle Handle, err error) {\n\t// NOTE(rsc): The Win32finddata struct is wrong for the system call:\n\t// the two paths are each one uint16 short. Use the correct struct,\n\t// a win32finddata1, and then copy the results out.\n\t// There is no loss of expressivity here, because the final\n\t// uint16, if it is used, is supposed to be a NUL, and Go doesn't need that.\n\t// For Go 1.1, we might avoid the allocation of win32finddata1 here\n\t// by adding a final Bug [2]uint16 field to the struct and then\n\t// adjusting the fields in the result directly.\n\tvar data1 win32finddata1\n\thandle, err = findFirstFile1(name, &data1)\n\tif err == nil {\n\t\tcopyFindData(data, &data1)\n\t}\n\treturn\n}\n\nfunc FindNextFile(handle Handle, data *Win32finddata) (err error) {\n\tvar data1 win32finddata1\n\terr = findNextFile1(handle, &data1)\n\tif err == nil {\n\t\tcopyFindData(data, &data1)\n\t}\n\treturn\n}\n\nfunc getProcessEntry(pid int) (*ProcessEntry32, error) {\n\tsnapshot, err := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer CloseHandle(snapshot)\n\tvar procEntry ProcessEntry32\n\tprocEntry.Size = uint32(unsafe.Sizeof(procEntry))\n\tif err = Process32First(snapshot, &procEntry); err != nil {\n\t\treturn nil, err\n\t}\n\tfor {\n\t\tif procEntry.ProcessID == uint32(pid) {\n\t\t\treturn &procEntry, nil\n\t\t}\n\t\terr = Process32Next(snapshot, &procEntry)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n}\n\nfunc Getppid() (ppid int) {\n\tpe, err := getProcessEntry(Getpid())\n\tif err != nil {\n\t\treturn -1\n\t}\n\treturn int(pe.ParentProcessID)\n}\n\n// TODO(brainman): fix all needed for os\nfunc Fchdir(fd Handle) (err error)             { return syscall.EWINDOWS }\nfunc Link(oldpath, newpath string) (err error) { return syscall.EWINDOWS }\nfunc Symlink(path, link string) (err error)    { return syscall.EWINDOWS }\n\nfunc Fchmod(fd Handle, mode uint32) (err error)        { return syscall.EWINDOWS }\nfunc Chown(path string, uid int, gid int) (err error)  { return syscall.EWINDOWS }\nfunc Lchown(path string, uid int, gid int) (err error) { return syscall.EWINDOWS }\nfunc Fchown(fd Handle, uid int, gid int) (err error)   { return syscall.EWINDOWS }\n\nfunc Getuid() (uid int)                  { return -1 }\nfunc Geteuid() (euid int)                { return -1 }\nfunc Getgid() (gid int)                  { return -1 }\nfunc Getegid() (egid int)                { return -1 }\nfunc Getgroups() (gids []int, err error) { return nil, syscall.EWINDOWS }\n\ntype Signal int\n\nfunc (s Signal) Signal() {}\n\nfunc (s Signal) String() string {\n\tif 0 <= s && int(s) < len(signals) {\n\t\tstr := signals[s]\n\t\tif str != \"\" {\n\t\t\treturn str\n\t\t}\n\t}\n\treturn \"signal \" + itoa(int(s))\n}\n\nfunc LoadCreateSymbolicLink() error {\n\treturn procCreateSymbolicLinkW.Find()\n}\n\n// Readlink returns the destination of the named symbolic link.\nfunc Readlink(path string, buf []byte) (n int, err error) {\n\tfd, err := CreateFile(StringToUTF16Ptr(path), GENERIC_READ, 0, nil, OPEN_EXISTING,\n\t\tFILE_FLAG_OPEN_REPARSE_POINT|FILE_FLAG_BACKUP_SEMANTICS, 0)\n\tif err != nil {\n\t\treturn -1, err\n\t}\n\tdefer CloseHandle(fd)\n\n\trdbbuf := make([]byte, MAXIMUM_REPARSE_DATA_BUFFER_SIZE)\n\tvar bytesReturned uint32\n\terr = DeviceIoControl(fd, FSCTL_GET_REPARSE_POINT, nil, 0, &rdbbuf[0], uint32(len(rdbbuf)), &bytesReturned, nil)\n\tif err != nil {\n\t\treturn -1, err\n\t}\n\n\trdb := (*reparseDataBuffer)(unsafe.Pointer(&rdbbuf[0]))\n\tvar s string\n\tswitch rdb.ReparseTag {\n\tcase IO_REPARSE_TAG_SYMLINK:\n\t\tdata := (*symbolicLinkReparseBuffer)(unsafe.Pointer(&rdb.reparseBuffer))\n\t\tp := (*[0xffff]uint16)(unsafe.Pointer(&data.PathBuffer[0]))\n\t\ts = UTF16ToString(p[data.PrintNameOffset/2 : (data.PrintNameLength-data.PrintNameOffset)/2])\n\tcase IO_REPARSE_TAG_MOUNT_POINT:\n\t\tdata := (*mountPointReparseBuffer)(unsafe.Pointer(&rdb.reparseBuffer))\n\t\tp := (*[0xffff]uint16)(unsafe.Pointer(&data.PathBuffer[0]))\n\t\ts = UTF16ToString(p[data.PrintNameOffset/2 : (data.PrintNameLength-data.PrintNameOffset)/2])\n\tdefault:\n\t\t// the path is not a symlink or junction but another type of reparse\n\t\t// point\n\t\treturn -1, syscall.ENOENT\n\t}\n\tn = copy(buf, []byte(s))\n\n\treturn n, nil\n}\n\n// GUIDFromString parses a string in the form of\n// \"{XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}\" into a GUID.\nfunc GUIDFromString(str string) (GUID, error) {\n\tguid := GUID{}\n\tstr16, err := syscall.UTF16PtrFromString(str)\n\tif err != nil {\n\t\treturn guid, err\n\t}\n\terr = clsidFromString(str16, &guid)\n\tif err != nil {\n\t\treturn guid, err\n\t}\n\treturn guid, nil\n}\n\n// GenerateGUID creates a new random GUID.\nfunc GenerateGUID() (GUID, error) {\n\tguid := GUID{}\n\terr := coCreateGuid(&guid)\n\tif err != nil {\n\t\treturn guid, err\n\t}\n\treturn guid, nil\n}\n\n// String returns the canonical string form of the GUID,\n// in the form of \"{XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}\".\nfunc (guid GUID) String() string {\n\tvar str [100]uint16\n\tchars := stringFromGUID2(&guid, &str[0], int32(len(str)))\n\tif chars <= 1 {\n\t\treturn \"\"\n\t}\n\treturn string(utf16.Decode(str[:chars-1]))\n}\n\n// KnownFolderPath returns a well-known folder path for the current user, specified by one of\n// the FOLDERID_ constants, and chosen and optionally created based on a KF_ flag.\nfunc KnownFolderPath(folderID *KNOWNFOLDERID, flags uint32) (string, error) {\n\treturn Token(0).KnownFolderPath(folderID, flags)\n}\n\n// KnownFolderPath returns a well-known folder path for the user token, specified by one of\n// the FOLDERID_ constants, and chosen and optionally created based on a KF_ flag.\nfunc (t Token) KnownFolderPath(folderID *KNOWNFOLDERID, flags uint32) (string, error) {\n\tvar p *uint16\n\terr := shGetKnownFolderPath(folderID, flags, t, &p)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdefer CoTaskMemFree(unsafe.Pointer(p))\n\treturn UTF16PtrToString(p), nil\n}\n\n// RtlGetVersion returns the version of the underlying operating system, ignoring\n// manifest semantics but is affected by the application compatibility layer.\nfunc RtlGetVersion() *OsVersionInfoEx {\n\tinfo := &OsVersionInfoEx{}\n\tinfo.osVersionInfoSize = uint32(unsafe.Sizeof(*info))\n\t// According to documentation, this function always succeeds.\n\t// The function doesn't even check the validity of the\n\t// osVersionInfoSize member. Disassembling ntdll.dll indicates\n\t// that the documentation is indeed correct about that.\n\t_ = rtlGetVersion(info)\n\treturn info\n}\n\n// RtlGetNtVersionNumbers returns the version of the underlying operating system,\n// ignoring manifest semantics and the application compatibility layer.\nfunc RtlGetNtVersionNumbers() (majorVersion, minorVersion, buildNumber uint32) {\n\trtlGetNtVersionNumbers(&majorVersion, &minorVersion, &buildNumber)\n\tbuildNumber &= 0xffff\n\treturn\n}\n\n// GetProcessPreferredUILanguages retrieves the process preferred UI languages.\nfunc GetProcessPreferredUILanguages(flags uint32) ([]string, error) {\n\treturn getUILanguages(flags, getProcessPreferredUILanguages)\n}\n\n// GetThreadPreferredUILanguages retrieves the thread preferred UI languages for the current thread.\nfunc GetThreadPreferredUILanguages(flags uint32) ([]string, error) {\n\treturn getUILanguages(flags, getThreadPreferredUILanguages)\n}\n\n// GetUserPreferredUILanguages retrieves information about the user preferred UI languages.\nfunc GetUserPreferredUILanguages(flags uint32) ([]string, error) {\n\treturn getUILanguages(flags, getUserPreferredUILanguages)\n}\n\n// GetSystemPreferredUILanguages retrieves the system preferred UI languages.\nfunc GetSystemPreferredUILanguages(flags uint32) ([]string, error) {\n\treturn getUILanguages(flags, getSystemPreferredUILanguages)\n}\n\nfunc getUILanguages(flags uint32, f func(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) error) ([]string, error) {\n\tsize := uint32(128)\n\tfor {\n\t\tvar numLanguages uint32\n\t\tbuf := make([]uint16, size)\n\t\terr := f(flags, &numLanguages, &buf[0], &size)\n\t\tif err == ERROR_INSUFFICIENT_BUFFER {\n\t\t\tcontinue\n\t\t}\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tbuf = buf[:size]\n\t\tif numLanguages == 0 || len(buf) == 0 { // GetProcessPreferredUILanguages may return numLanguages==0 with \"\\0\\0\"\n\t\t\treturn []string{}, nil\n\t\t}\n\t\tif buf[len(buf)-1] == 0 {\n\t\t\tbuf = buf[:len(buf)-1] // remove terminating null\n\t\t}\n\t\tlanguages := make([]string, 0, numLanguages)\n\t\tfrom := 0\n\t\tfor i, c := range buf {\n\t\t\tif c == 0 {\n\t\t\t\tlanguages = append(languages, string(utf16.Decode(buf[from:i])))\n\t\t\t\tfrom = i + 1\n\t\t\t}\n\t\t}\n\t\treturn languages, nil\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/types_windows.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage windows\n\nimport (\n\t\"net\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nconst (\n\t// Invented values to support what package os expects.\n\tO_RDONLY   = 0x00000\n\tO_WRONLY   = 0x00001\n\tO_RDWR     = 0x00002\n\tO_CREAT    = 0x00040\n\tO_EXCL     = 0x00080\n\tO_NOCTTY   = 0x00100\n\tO_TRUNC    = 0x00200\n\tO_NONBLOCK = 0x00800\n\tO_APPEND   = 0x00400\n\tO_SYNC     = 0x01000\n\tO_ASYNC    = 0x02000\n\tO_CLOEXEC  = 0x80000\n)\n\nconst (\n\t// More invented values for signals\n\tSIGHUP  = Signal(0x1)\n\tSIGINT  = Signal(0x2)\n\tSIGQUIT = Signal(0x3)\n\tSIGILL  = Signal(0x4)\n\tSIGTRAP = Signal(0x5)\n\tSIGABRT = Signal(0x6)\n\tSIGBUS  = Signal(0x7)\n\tSIGFPE  = Signal(0x8)\n\tSIGKILL = Signal(0x9)\n\tSIGSEGV = Signal(0xb)\n\tSIGPIPE = Signal(0xd)\n\tSIGALRM = Signal(0xe)\n\tSIGTERM = Signal(0xf)\n)\n\nvar signals = [...]string{\n\t1:  \"hangup\",\n\t2:  \"interrupt\",\n\t3:  \"quit\",\n\t4:  \"illegal instruction\",\n\t5:  \"trace/breakpoint trap\",\n\t6:  \"aborted\",\n\t7:  \"bus error\",\n\t8:  \"floating point exception\",\n\t9:  \"killed\",\n\t10: \"user defined signal 1\",\n\t11: \"segmentation fault\",\n\t12: \"user defined signal 2\",\n\t13: \"broken pipe\",\n\t14: \"alarm clock\",\n\t15: \"terminated\",\n}\n\nconst (\n\tFILE_LIST_DIRECTORY   = 0x00000001\n\tFILE_APPEND_DATA      = 0x00000004\n\tFILE_WRITE_ATTRIBUTES = 0x00000100\n\n\tFILE_SHARE_READ   = 0x00000001\n\tFILE_SHARE_WRITE  = 0x00000002\n\tFILE_SHARE_DELETE = 0x00000004\n\n\tFILE_ATTRIBUTE_READONLY              = 0x00000001\n\tFILE_ATTRIBUTE_HIDDEN                = 0x00000002\n\tFILE_ATTRIBUTE_SYSTEM                = 0x00000004\n\tFILE_ATTRIBUTE_DIRECTORY             = 0x00000010\n\tFILE_ATTRIBUTE_ARCHIVE               = 0x00000020\n\tFILE_ATTRIBUTE_DEVICE                = 0x00000040\n\tFILE_ATTRIBUTE_NORMAL                = 0x00000080\n\tFILE_ATTRIBUTE_TEMPORARY             = 0x00000100\n\tFILE_ATTRIBUTE_SPARSE_FILE           = 0x00000200\n\tFILE_ATTRIBUTE_REPARSE_POINT         = 0x00000400\n\tFILE_ATTRIBUTE_COMPRESSED            = 0x00000800\n\tFILE_ATTRIBUTE_OFFLINE               = 0x00001000\n\tFILE_ATTRIBUTE_NOT_CONTENT_INDEXED   = 0x00002000\n\tFILE_ATTRIBUTE_ENCRYPTED             = 0x00004000\n\tFILE_ATTRIBUTE_INTEGRITY_STREAM      = 0x00008000\n\tFILE_ATTRIBUTE_VIRTUAL               = 0x00010000\n\tFILE_ATTRIBUTE_NO_SCRUB_DATA         = 0x00020000\n\tFILE_ATTRIBUTE_RECALL_ON_OPEN        = 0x00040000\n\tFILE_ATTRIBUTE_RECALL_ON_DATA_ACCESS = 0x00400000\n\n\tINVALID_FILE_ATTRIBUTES = 0xffffffff\n\n\tCREATE_NEW        = 1\n\tCREATE_ALWAYS     = 2\n\tOPEN_EXISTING     = 3\n\tOPEN_ALWAYS       = 4\n\tTRUNCATE_EXISTING = 5\n\n\tFILE_FLAG_OPEN_REQUIRING_OPLOCK = 0x00040000\n\tFILE_FLAG_FIRST_PIPE_INSTANCE   = 0x00080000\n\tFILE_FLAG_OPEN_NO_RECALL        = 0x00100000\n\tFILE_FLAG_OPEN_REPARSE_POINT    = 0x00200000\n\tFILE_FLAG_SESSION_AWARE         = 0x00800000\n\tFILE_FLAG_POSIX_SEMANTICS       = 0x01000000\n\tFILE_FLAG_BACKUP_SEMANTICS      = 0x02000000\n\tFILE_FLAG_DELETE_ON_CLOSE       = 0x04000000\n\tFILE_FLAG_SEQUENTIAL_SCAN       = 0x08000000\n\tFILE_FLAG_RANDOM_ACCESS         = 0x10000000\n\tFILE_FLAG_NO_BUFFERING          = 0x20000000\n\tFILE_FLAG_OVERLAPPED            = 0x40000000\n\tFILE_FLAG_WRITE_THROUGH         = 0x80000000\n\n\tHANDLE_FLAG_INHERIT    = 0x00000001\n\tSTARTF_USESTDHANDLES   = 0x00000100\n\tSTARTF_USESHOWWINDOW   = 0x00000001\n\tDUPLICATE_CLOSE_SOURCE = 0x00000001\n\tDUPLICATE_SAME_ACCESS  = 0x00000002\n\n\tSTD_INPUT_HANDLE  = -10 & (1<<32 - 1)\n\tSTD_OUTPUT_HANDLE = -11 & (1<<32 - 1)\n\tSTD_ERROR_HANDLE  = -12 & (1<<32 - 1)\n\n\tFILE_BEGIN   = 0\n\tFILE_CURRENT = 1\n\tFILE_END     = 2\n\n\tLANG_ENGLISH       = 0x09\n\tSUBLANG_ENGLISH_US = 0x01\n\n\tFORMAT_MESSAGE_ALLOCATE_BUFFER = 256\n\tFORMAT_MESSAGE_IGNORE_INSERTS  = 512\n\tFORMAT_MESSAGE_FROM_STRING     = 1024\n\tFORMAT_MESSAGE_FROM_HMODULE    = 2048\n\tFORMAT_MESSAGE_FROM_SYSTEM     = 4096\n\tFORMAT_MESSAGE_ARGUMENT_ARRAY  = 8192\n\tFORMAT_MESSAGE_MAX_WIDTH_MASK  = 255\n\n\tMAX_PATH      = 260\n\tMAX_LONG_PATH = 32768\n\n\tMAX_COMPUTERNAME_LENGTH = 15\n\n\tTIME_ZONE_ID_UNKNOWN  = 0\n\tTIME_ZONE_ID_STANDARD = 1\n\n\tTIME_ZONE_ID_DAYLIGHT = 2\n\tIGNORE                = 0\n\tINFINITE              = 0xffffffff\n\n\tWAIT_ABANDONED = 0x00000080\n\tWAIT_OBJECT_0  = 0x00000000\n\tWAIT_FAILED    = 0xFFFFFFFF\n\n\t// Access rights for process.\n\tPROCESS_CREATE_PROCESS            = 0x0080\n\tPROCESS_CREATE_THREAD             = 0x0002\n\tPROCESS_DUP_HANDLE                = 0x0040\n\tPROCESS_QUERY_INFORMATION         = 0x0400\n\tPROCESS_QUERY_LIMITED_INFORMATION = 0x1000\n\tPROCESS_SET_INFORMATION           = 0x0200\n\tPROCESS_SET_QUOTA                 = 0x0100\n\tPROCESS_SUSPEND_RESUME            = 0x0800\n\tPROCESS_TERMINATE                 = 0x0001\n\tPROCESS_VM_OPERATION              = 0x0008\n\tPROCESS_VM_READ                   = 0x0010\n\tPROCESS_VM_WRITE                  = 0x0020\n\n\t// Access rights for thread.\n\tTHREAD_DIRECT_IMPERSONATION      = 0x0200\n\tTHREAD_GET_CONTEXT               = 0x0008\n\tTHREAD_IMPERSONATE               = 0x0100\n\tTHREAD_QUERY_INFORMATION         = 0x0040\n\tTHREAD_QUERY_LIMITED_INFORMATION = 0x0800\n\tTHREAD_SET_CONTEXT               = 0x0010\n\tTHREAD_SET_INFORMATION           = 0x0020\n\tTHREAD_SET_LIMITED_INFORMATION   = 0x0400\n\tTHREAD_SET_THREAD_TOKEN          = 0x0080\n\tTHREAD_SUSPEND_RESUME            = 0x0002\n\tTHREAD_TERMINATE                 = 0x0001\n\n\tFILE_MAP_COPY    = 0x01\n\tFILE_MAP_WRITE   = 0x02\n\tFILE_MAP_READ    = 0x04\n\tFILE_MAP_EXECUTE = 0x20\n\n\tCTRL_C_EVENT        = 0\n\tCTRL_BREAK_EVENT    = 1\n\tCTRL_CLOSE_EVENT    = 2\n\tCTRL_LOGOFF_EVENT   = 5\n\tCTRL_SHUTDOWN_EVENT = 6\n\n\t// Windows reserves errors >= 1<<29 for application use.\n\tAPPLICATION_ERROR = 1 << 29\n)\n\nconst (\n\t// Process creation flags.\n\tCREATE_BREAKAWAY_FROM_JOB        = 0x01000000\n\tCREATE_DEFAULT_ERROR_MODE        = 0x04000000\n\tCREATE_NEW_CONSOLE               = 0x00000010\n\tCREATE_NEW_PROCESS_GROUP         = 0x00000200\n\tCREATE_NO_WINDOW                 = 0x08000000\n\tCREATE_PROTECTED_PROCESS         = 0x00040000\n\tCREATE_PRESERVE_CODE_AUTHZ_LEVEL = 0x02000000\n\tCREATE_SEPARATE_WOW_VDM          = 0x00000800\n\tCREATE_SHARED_WOW_VDM            = 0x00001000\n\tCREATE_SUSPENDED                 = 0x00000004\n\tCREATE_UNICODE_ENVIRONMENT       = 0x00000400\n\tDEBUG_ONLY_THIS_PROCESS          = 0x00000002\n\tDEBUG_PROCESS                    = 0x00000001\n\tDETACHED_PROCESS                 = 0x00000008\n\tEXTENDED_STARTUPINFO_PRESENT     = 0x00080000\n\tINHERIT_PARENT_AFFINITY          = 0x00010000\n)\n\nconst (\n\t// flags for CreateToolhelp32Snapshot\n\tTH32CS_SNAPHEAPLIST = 0x01\n\tTH32CS_SNAPPROCESS  = 0x02\n\tTH32CS_SNAPTHREAD   = 0x04\n\tTH32CS_SNAPMODULE   = 0x08\n\tTH32CS_SNAPMODULE32 = 0x10\n\tTH32CS_SNAPALL      = TH32CS_SNAPHEAPLIST | TH32CS_SNAPMODULE | TH32CS_SNAPPROCESS | TH32CS_SNAPTHREAD\n\tTH32CS_INHERIT      = 0x80000000\n)\n\nconst (\n\t// filters for ReadDirectoryChangesW\n\tFILE_NOTIFY_CHANGE_FILE_NAME   = 0x001\n\tFILE_NOTIFY_CHANGE_DIR_NAME    = 0x002\n\tFILE_NOTIFY_CHANGE_ATTRIBUTES  = 0x004\n\tFILE_NOTIFY_CHANGE_SIZE        = 0x008\n\tFILE_NOTIFY_CHANGE_LAST_WRITE  = 0x010\n\tFILE_NOTIFY_CHANGE_LAST_ACCESS = 0x020\n\tFILE_NOTIFY_CHANGE_CREATION    = 0x040\n\tFILE_NOTIFY_CHANGE_SECURITY    = 0x100\n)\n\nconst (\n\t// do not reorder\n\tFILE_ACTION_ADDED = iota + 1\n\tFILE_ACTION_REMOVED\n\tFILE_ACTION_MODIFIED\n\tFILE_ACTION_RENAMED_OLD_NAME\n\tFILE_ACTION_RENAMED_NEW_NAME\n)\n\nconst (\n\t// wincrypt.h\n\tPROV_RSA_FULL                    = 1\n\tPROV_RSA_SIG                     = 2\n\tPROV_DSS                         = 3\n\tPROV_FORTEZZA                    = 4\n\tPROV_MS_EXCHANGE                 = 5\n\tPROV_SSL                         = 6\n\tPROV_RSA_SCHANNEL                = 12\n\tPROV_DSS_DH                      = 13\n\tPROV_EC_ECDSA_SIG                = 14\n\tPROV_EC_ECNRA_SIG                = 15\n\tPROV_EC_ECDSA_FULL               = 16\n\tPROV_EC_ECNRA_FULL               = 17\n\tPROV_DH_SCHANNEL                 = 18\n\tPROV_SPYRUS_LYNKS                = 20\n\tPROV_RNG                         = 21\n\tPROV_INTEL_SEC                   = 22\n\tPROV_REPLACE_OWF                 = 23\n\tPROV_RSA_AES                     = 24\n\tCRYPT_VERIFYCONTEXT              = 0xF0000000\n\tCRYPT_NEWKEYSET                  = 0x00000008\n\tCRYPT_DELETEKEYSET               = 0x00000010\n\tCRYPT_MACHINE_KEYSET             = 0x00000020\n\tCRYPT_SILENT                     = 0x00000040\n\tCRYPT_DEFAULT_CONTAINER_OPTIONAL = 0x00000080\n\n\tUSAGE_MATCH_TYPE_AND = 0\n\tUSAGE_MATCH_TYPE_OR  = 1\n\n\t/* msgAndCertEncodingType values for CertOpenStore function */\n\tX509_ASN_ENCODING   = 0x00000001\n\tPKCS_7_ASN_ENCODING = 0x00010000\n\n\t/* storeProvider values for CertOpenStore function */\n\tCERT_STORE_PROV_MSG               = 1\n\tCERT_STORE_PROV_MEMORY            = 2\n\tCERT_STORE_PROV_FILE              = 3\n\tCERT_STORE_PROV_REG               = 4\n\tCERT_STORE_PROV_PKCS7             = 5\n\tCERT_STORE_PROV_SERIALIZED        = 6\n\tCERT_STORE_PROV_FILENAME_A        = 7\n\tCERT_STORE_PROV_FILENAME_W        = 8\n\tCERT_STORE_PROV_FILENAME          = CERT_STORE_PROV_FILENAME_W\n\tCERT_STORE_PROV_SYSTEM_A          = 9\n\tCERT_STORE_PROV_SYSTEM_W          = 10\n\tCERT_STORE_PROV_SYSTEM            = CERT_STORE_PROV_SYSTEM_W\n\tCERT_STORE_PROV_COLLECTION        = 11\n\tCERT_STORE_PROV_SYSTEM_REGISTRY_A = 12\n\tCERT_STORE_PROV_SYSTEM_REGISTRY_W = 13\n\tCERT_STORE_PROV_SYSTEM_REGISTRY   = CERT_STORE_PROV_SYSTEM_REGISTRY_W\n\tCERT_STORE_PROV_PHYSICAL_W        = 14\n\tCERT_STORE_PROV_PHYSICAL          = CERT_STORE_PROV_PHYSICAL_W\n\tCERT_STORE_PROV_SMART_CARD_W      = 15\n\tCERT_STORE_PROV_SMART_CARD        = CERT_STORE_PROV_SMART_CARD_W\n\tCERT_STORE_PROV_LDAP_W            = 16\n\tCERT_STORE_PROV_LDAP              = CERT_STORE_PROV_LDAP_W\n\tCERT_STORE_PROV_PKCS12            = 17\n\n\t/* store characteristics (low WORD of flag) for CertOpenStore function */\n\tCERT_STORE_NO_CRYPT_RELEASE_FLAG            = 0x00000001\n\tCERT_STORE_SET_LOCALIZED_NAME_FLAG          = 0x00000002\n\tCERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 0x00000004\n\tCERT_STORE_DELETE_FLAG                      = 0x00000010\n\tCERT_STORE_UNSAFE_PHYSICAL_FLAG             = 0x00000020\n\tCERT_STORE_SHARE_STORE_FLAG                 = 0x00000040\n\tCERT_STORE_SHARE_CONTEXT_FLAG               = 0x00000080\n\tCERT_STORE_MANIFOLD_FLAG                    = 0x00000100\n\tCERT_STORE_ENUM_ARCHIVED_FLAG               = 0x00000200\n\tCERT_STORE_UPDATE_KEYID_FLAG                = 0x00000400\n\tCERT_STORE_BACKUP_RESTORE_FLAG              = 0x00000800\n\tCERT_STORE_MAXIMUM_ALLOWED_FLAG             = 0x00001000\n\tCERT_STORE_CREATE_NEW_FLAG                  = 0x00002000\n\tCERT_STORE_OPEN_EXISTING_FLAG               = 0x00004000\n\tCERT_STORE_READONLY_FLAG                    = 0x00008000\n\n\t/* store locations (high WORD of flag) for CertOpenStore function */\n\tCERT_SYSTEM_STORE_CURRENT_USER               = 0x00010000\n\tCERT_SYSTEM_STORE_LOCAL_MACHINE              = 0x00020000\n\tCERT_SYSTEM_STORE_CURRENT_SERVICE            = 0x00040000\n\tCERT_SYSTEM_STORE_SERVICES                   = 0x00050000\n\tCERT_SYSTEM_STORE_USERS                      = 0x00060000\n\tCERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY  = 0x00070000\n\tCERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY = 0x00080000\n\tCERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE   = 0x00090000\n\tCERT_SYSTEM_STORE_UNPROTECTED_FLAG           = 0x40000000\n\tCERT_SYSTEM_STORE_RELOCATE_FLAG              = 0x80000000\n\n\t/* Miscellaneous high-WORD flags for CertOpenStore function */\n\tCERT_REGISTRY_STORE_REMOTE_FLAG      = 0x00010000\n\tCERT_REGISTRY_STORE_SERIALIZED_FLAG  = 0x00020000\n\tCERT_REGISTRY_STORE_ROAMING_FLAG     = 0x00040000\n\tCERT_REGISTRY_STORE_MY_IE_DIRTY_FLAG = 0x00080000\n\tCERT_REGISTRY_STORE_LM_GPT_FLAG      = 0x01000000\n\tCERT_REGISTRY_STORE_CLIENT_GPT_FLAG  = 0x80000000\n\tCERT_FILE_STORE_COMMIT_ENABLE_FLAG   = 0x00010000\n\tCERT_LDAP_STORE_SIGN_FLAG            = 0x00010000\n\tCERT_LDAP_STORE_AREC_EXCLUSIVE_FLAG  = 0x00020000\n\tCERT_LDAP_STORE_OPENED_FLAG          = 0x00040000\n\tCERT_LDAP_STORE_UNBIND_FLAG          = 0x00080000\n\n\t/* addDisposition values for CertAddCertificateContextToStore function */\n\tCERT_STORE_ADD_NEW                                 = 1\n\tCERT_STORE_ADD_USE_EXISTING                        = 2\n\tCERT_STORE_ADD_REPLACE_EXISTING                    = 3\n\tCERT_STORE_ADD_ALWAYS                              = 4\n\tCERT_STORE_ADD_REPLACE_EXISTING_INHERIT_PROPERTIES = 5\n\tCERT_STORE_ADD_NEWER                               = 6\n\tCERT_STORE_ADD_NEWER_INHERIT_PROPERTIES            = 7\n\n\t/* ErrorStatus values for CertTrustStatus struct */\n\tCERT_TRUST_NO_ERROR                          = 0x00000000\n\tCERT_TRUST_IS_NOT_TIME_VALID                 = 0x00000001\n\tCERT_TRUST_IS_REVOKED                        = 0x00000004\n\tCERT_TRUST_IS_NOT_SIGNATURE_VALID            = 0x00000008\n\tCERT_TRUST_IS_NOT_VALID_FOR_USAGE            = 0x00000010\n\tCERT_TRUST_IS_UNTRUSTED_ROOT                 = 0x00000020\n\tCERT_TRUST_REVOCATION_STATUS_UNKNOWN         = 0x00000040\n\tCERT_TRUST_IS_CYCLIC                         = 0x00000080\n\tCERT_TRUST_INVALID_EXTENSION                 = 0x00000100\n\tCERT_TRUST_INVALID_POLICY_CONSTRAINTS        = 0x00000200\n\tCERT_TRUST_INVALID_BASIC_CONSTRAINTS         = 0x00000400\n\tCERT_TRUST_INVALID_NAME_CONSTRAINTS          = 0x00000800\n\tCERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT = 0x00001000\n\tCERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT   = 0x00002000\n\tCERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT = 0x00004000\n\tCERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT      = 0x00008000\n\tCERT_TRUST_IS_PARTIAL_CHAIN                  = 0x00010000\n\tCERT_TRUST_CTL_IS_NOT_TIME_VALID             = 0x00020000\n\tCERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID        = 0x00040000\n\tCERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE        = 0x00080000\n\tCERT_TRUST_HAS_WEAK_SIGNATURE                = 0x00100000\n\tCERT_TRUST_IS_OFFLINE_REVOCATION             = 0x01000000\n\tCERT_TRUST_NO_ISSUANCE_CHAIN_POLICY          = 0x02000000\n\tCERT_TRUST_IS_EXPLICIT_DISTRUST              = 0x04000000\n\tCERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT    = 0x08000000\n\n\t/* InfoStatus values for CertTrustStatus struct */\n\tCERT_TRUST_HAS_EXACT_MATCH_ISSUER        = 0x00000001\n\tCERT_TRUST_HAS_KEY_MATCH_ISSUER          = 0x00000002\n\tCERT_TRUST_HAS_NAME_MATCH_ISSUER         = 0x00000004\n\tCERT_TRUST_IS_SELF_SIGNED                = 0x00000008\n\tCERT_TRUST_HAS_PREFERRED_ISSUER          = 0x00000100\n\tCERT_TRUST_HAS_ISSUANCE_CHAIN_POLICY     = 0x00000400\n\tCERT_TRUST_HAS_VALID_NAME_CONSTRAINTS    = 0x00000400\n\tCERT_TRUST_IS_PEER_TRUSTED               = 0x00000800\n\tCERT_TRUST_HAS_CRL_VALIDITY_EXTENDED     = 0x00001000\n\tCERT_TRUST_IS_FROM_EXCLUSIVE_TRUST_STORE = 0x00002000\n\tCERT_TRUST_IS_CA_TRUSTED                 = 0x00004000\n\tCERT_TRUST_IS_COMPLEX_CHAIN              = 0x00010000\n\n\t/* policyOID values for CertVerifyCertificateChainPolicy function */\n\tCERT_CHAIN_POLICY_BASE              = 1\n\tCERT_CHAIN_POLICY_AUTHENTICODE      = 2\n\tCERT_CHAIN_POLICY_AUTHENTICODE_TS   = 3\n\tCERT_CHAIN_POLICY_SSL               = 4\n\tCERT_CHAIN_POLICY_BASIC_CONSTRAINTS = 5\n\tCERT_CHAIN_POLICY_NT_AUTH           = 6\n\tCERT_CHAIN_POLICY_MICROSOFT_ROOT    = 7\n\tCERT_CHAIN_POLICY_EV                = 8\n\tCERT_CHAIN_POLICY_SSL_F12           = 9\n\n\t/* AuthType values for SSLExtraCertChainPolicyPara struct */\n\tAUTHTYPE_CLIENT = 1\n\tAUTHTYPE_SERVER = 2\n\n\t/* Checks values for SSLExtraCertChainPolicyPara struct */\n\tSECURITY_FLAG_IGNORE_REVOCATION        = 0x00000080\n\tSECURITY_FLAG_IGNORE_UNKNOWN_CA        = 0x00000100\n\tSECURITY_FLAG_IGNORE_WRONG_USAGE       = 0x00000200\n\tSECURITY_FLAG_IGNORE_CERT_CN_INVALID   = 0x00001000\n\tSECURITY_FLAG_IGNORE_CERT_DATE_INVALID = 0x00002000\n)\n\nconst (\n\t// flags for SetErrorMode\n\tSEM_FAILCRITICALERRORS     = 0x0001\n\tSEM_NOALIGNMENTFAULTEXCEPT = 0x0004\n\tSEM_NOGPFAULTERRORBOX      = 0x0002\n\tSEM_NOOPENFILEERRORBOX     = 0x8000\n)\n\nconst (\n\t// Priority class.\n\tABOVE_NORMAL_PRIORITY_CLASS   = 0x00008000\n\tBELOW_NORMAL_PRIORITY_CLASS   = 0x00004000\n\tHIGH_PRIORITY_CLASS           = 0x00000080\n\tIDLE_PRIORITY_CLASS           = 0x00000040\n\tNORMAL_PRIORITY_CLASS         = 0x00000020\n\tPROCESS_MODE_BACKGROUND_BEGIN = 0x00100000\n\tPROCESS_MODE_BACKGROUND_END   = 0x00200000\n\tREALTIME_PRIORITY_CLASS       = 0x00000100\n)\n\nvar (\n\tOID_PKIX_KP_SERVER_AUTH = []byte(\"1.3.6.1.5.5.7.3.1\\x00\")\n\tOID_SERVER_GATED_CRYPTO = []byte(\"1.3.6.1.4.1.311.10.3.3\\x00\")\n\tOID_SGC_NETSCAPE        = []byte(\"2.16.840.1.113730.4.1\\x00\")\n)\n\n// Pointer represents a pointer to an arbitrary Windows type.\n//\n// Pointer-typed fields may point to one of many different types. It's\n// up to the caller to provide a pointer to the appropriate type, cast\n// to Pointer. The caller must obey the unsafe.Pointer rules while\n// doing so.\ntype Pointer *struct{}\n\n// Invented values to support what package os expects.\ntype Timeval struct {\n\tSec  int32\n\tUsec int32\n}\n\nfunc (tv *Timeval) Nanoseconds() int64 {\n\treturn (int64(tv.Sec)*1e6 + int64(tv.Usec)) * 1e3\n}\n\nfunc NsecToTimeval(nsec int64) (tv Timeval) {\n\ttv.Sec = int32(nsec / 1e9)\n\ttv.Usec = int32(nsec % 1e9 / 1e3)\n\treturn\n}\n\ntype Overlapped struct {\n\tInternal     uintptr\n\tInternalHigh uintptr\n\tOffset       uint32\n\tOffsetHigh   uint32\n\tHEvent       Handle\n}\n\ntype FileNotifyInformation struct {\n\tNextEntryOffset uint32\n\tAction          uint32\n\tFileNameLength  uint32\n\tFileName        uint16\n}\n\ntype Filetime struct {\n\tLowDateTime  uint32\n\tHighDateTime uint32\n}\n\n// Nanoseconds returns Filetime ft in nanoseconds\n// since Epoch (00:00:00 UTC, January 1, 1970).\nfunc (ft *Filetime) Nanoseconds() int64 {\n\t// 100-nanosecond intervals since January 1, 1601\n\tnsec := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime)\n\t// change starting time to the Epoch (00:00:00 UTC, January 1, 1970)\n\tnsec -= 116444736000000000\n\t// convert into nanoseconds\n\tnsec *= 100\n\treturn nsec\n}\n\nfunc NsecToFiletime(nsec int64) (ft Filetime) {\n\t// convert into 100-nanosecond\n\tnsec /= 100\n\t// change starting time to January 1, 1601\n\tnsec += 116444736000000000\n\t// split into high / low\n\tft.LowDateTime = uint32(nsec & 0xffffffff)\n\tft.HighDateTime = uint32(nsec >> 32 & 0xffffffff)\n\treturn ft\n}\n\ntype Win32finddata struct {\n\tFileAttributes    uint32\n\tCreationTime      Filetime\n\tLastAccessTime    Filetime\n\tLastWriteTime     Filetime\n\tFileSizeHigh      uint32\n\tFileSizeLow       uint32\n\tReserved0         uint32\n\tReserved1         uint32\n\tFileName          [MAX_PATH - 1]uint16\n\tAlternateFileName [13]uint16\n}\n\n// This is the actual system call structure.\n// Win32finddata is what we committed to in Go 1.\ntype win32finddata1 struct {\n\tFileAttributes    uint32\n\tCreationTime      Filetime\n\tLastAccessTime    Filetime\n\tLastWriteTime     Filetime\n\tFileSizeHigh      uint32\n\tFileSizeLow       uint32\n\tReserved0         uint32\n\tReserved1         uint32\n\tFileName          [MAX_PATH]uint16\n\tAlternateFileName [14]uint16\n}\n\nfunc copyFindData(dst *Win32finddata, src *win32finddata1) {\n\tdst.FileAttributes = src.FileAttributes\n\tdst.CreationTime = src.CreationTime\n\tdst.LastAccessTime = src.LastAccessTime\n\tdst.LastWriteTime = src.LastWriteTime\n\tdst.FileSizeHigh = src.FileSizeHigh\n\tdst.FileSizeLow = src.FileSizeLow\n\tdst.Reserved0 = src.Reserved0\n\tdst.Reserved1 = src.Reserved1\n\n\t// The src is 1 element bigger than dst, but it must be NUL.\n\tcopy(dst.FileName[:], src.FileName[:])\n\tcopy(dst.AlternateFileName[:], src.AlternateFileName[:])\n}\n\ntype ByHandleFileInformation struct {\n\tFileAttributes     uint32\n\tCreationTime       Filetime\n\tLastAccessTime     Filetime\n\tLastWriteTime      Filetime\n\tVolumeSerialNumber uint32\n\tFileSizeHigh       uint32\n\tFileSizeLow        uint32\n\tNumberOfLinks      uint32\n\tFileIndexHigh      uint32\n\tFileIndexLow       uint32\n}\n\nconst (\n\tGetFileExInfoStandard = 0\n\tGetFileExMaxInfoLevel = 1\n)\n\ntype Win32FileAttributeData struct {\n\tFileAttributes uint32\n\tCreationTime   Filetime\n\tLastAccessTime Filetime\n\tLastWriteTime  Filetime\n\tFileSizeHigh   uint32\n\tFileSizeLow    uint32\n}\n\n// ShowWindow constants\nconst (\n\t// winuser.h\n\tSW_HIDE            = 0\n\tSW_NORMAL          = 1\n\tSW_SHOWNORMAL      = 1\n\tSW_SHOWMINIMIZED   = 2\n\tSW_SHOWMAXIMIZED   = 3\n\tSW_MAXIMIZE        = 3\n\tSW_SHOWNOACTIVATE  = 4\n\tSW_SHOW            = 5\n\tSW_MINIMIZE        = 6\n\tSW_SHOWMINNOACTIVE = 7\n\tSW_SHOWNA          = 8\n\tSW_RESTORE         = 9\n\tSW_SHOWDEFAULT     = 10\n\tSW_FORCEMINIMIZE   = 11\n)\n\ntype StartupInfo struct {\n\tCb            uint32\n\t_             *uint16\n\tDesktop       *uint16\n\tTitle         *uint16\n\tX             uint32\n\tY             uint32\n\tXSize         uint32\n\tYSize         uint32\n\tXCountChars   uint32\n\tYCountChars   uint32\n\tFillAttribute uint32\n\tFlags         uint32\n\tShowWindow    uint16\n\t_             uint16\n\t_             *byte\n\tStdInput      Handle\n\tStdOutput     Handle\n\tStdErr        Handle\n}\n\ntype ProcessInformation struct {\n\tProcess   Handle\n\tThread    Handle\n\tProcessId uint32\n\tThreadId  uint32\n}\n\ntype ProcessEntry32 struct {\n\tSize            uint32\n\tUsage           uint32\n\tProcessID       uint32\n\tDefaultHeapID   uintptr\n\tModuleID        uint32\n\tThreads         uint32\n\tParentProcessID uint32\n\tPriClassBase    int32\n\tFlags           uint32\n\tExeFile         [MAX_PATH]uint16\n}\n\ntype ThreadEntry32 struct {\n\tSize           uint32\n\tUsage          uint32\n\tThreadID       uint32\n\tOwnerProcessID uint32\n\tBasePri        int32\n\tDeltaPri       int32\n\tFlags          uint32\n}\n\ntype Systemtime struct {\n\tYear         uint16\n\tMonth        uint16\n\tDayOfWeek    uint16\n\tDay          uint16\n\tHour         uint16\n\tMinute       uint16\n\tSecond       uint16\n\tMilliseconds uint16\n}\n\ntype Timezoneinformation struct {\n\tBias         int32\n\tStandardName [32]uint16\n\tStandardDate Systemtime\n\tStandardBias int32\n\tDaylightName [32]uint16\n\tDaylightDate Systemtime\n\tDaylightBias int32\n}\n\n// Socket related.\n\nconst (\n\tAF_UNSPEC  = 0\n\tAF_UNIX    = 1\n\tAF_INET    = 2\n\tAF_NETBIOS = 17\n\tAF_INET6   = 23\n\tAF_IRDA    = 26\n\tAF_BTH     = 32\n\n\tSOCK_STREAM    = 1\n\tSOCK_DGRAM     = 2\n\tSOCK_RAW       = 3\n\tSOCK_RDM       = 4\n\tSOCK_SEQPACKET = 5\n\n\tIPPROTO_IP      = 0\n\tIPPROTO_ICMP    = 1\n\tIPPROTO_IGMP    = 2\n\tBTHPROTO_RFCOMM = 3\n\tIPPROTO_TCP     = 6\n\tIPPROTO_UDP     = 17\n\tIPPROTO_IPV6    = 41\n\tIPPROTO_ICMPV6  = 58\n\tIPPROTO_RM      = 113\n\n\tSOL_SOCKET                = 0xffff\n\tSO_REUSEADDR              = 4\n\tSO_KEEPALIVE              = 8\n\tSO_DONTROUTE              = 16\n\tSO_BROADCAST              = 32\n\tSO_LINGER                 = 128\n\tSO_RCVBUF                 = 0x1002\n\tSO_RCVTIMEO               = 0x1006\n\tSO_SNDBUF                 = 0x1001\n\tSO_UPDATE_ACCEPT_CONTEXT  = 0x700b\n\tSO_UPDATE_CONNECT_CONTEXT = 0x7010\n\n\tIOC_OUT                            = 0x40000000\n\tIOC_IN                             = 0x80000000\n\tIOC_VENDOR                         = 0x18000000\n\tIOC_INOUT                          = IOC_IN | IOC_OUT\n\tIOC_WS2                            = 0x08000000\n\tSIO_GET_EXTENSION_FUNCTION_POINTER = IOC_INOUT | IOC_WS2 | 6\n\tSIO_KEEPALIVE_VALS                 = IOC_IN | IOC_VENDOR | 4\n\tSIO_UDP_CONNRESET                  = IOC_IN | IOC_VENDOR | 12\n\n\t// cf. http://support.microsoft.com/default.aspx?scid=kb;en-us;257460\n\n\tIP_TOS             = 0x3\n\tIP_TTL             = 0x4\n\tIP_MULTICAST_IF    = 0x9\n\tIP_MULTICAST_TTL   = 0xa\n\tIP_MULTICAST_LOOP  = 0xb\n\tIP_ADD_MEMBERSHIP  = 0xc\n\tIP_DROP_MEMBERSHIP = 0xd\n\n\tIPV6_V6ONLY         = 0x1b\n\tIPV6_UNICAST_HOPS   = 0x4\n\tIPV6_MULTICAST_IF   = 0x9\n\tIPV6_MULTICAST_HOPS = 0xa\n\tIPV6_MULTICAST_LOOP = 0xb\n\tIPV6_JOIN_GROUP     = 0xc\n\tIPV6_LEAVE_GROUP    = 0xd\n\n\tMSG_OOB       = 0x1\n\tMSG_PEEK      = 0x2\n\tMSG_DONTROUTE = 0x4\n\tMSG_WAITALL   = 0x8\n\n\tMSG_TRUNC  = 0x0100\n\tMSG_CTRUNC = 0x0200\n\tMSG_BCAST  = 0x0400\n\tMSG_MCAST  = 0x0800\n\n\tSOMAXCONN = 0x7fffffff\n\n\tTCP_NODELAY = 1\n\n\tSHUT_RD   = 0\n\tSHUT_WR   = 1\n\tSHUT_RDWR = 2\n\n\tWSADESCRIPTION_LEN = 256\n\tWSASYS_STATUS_LEN  = 128\n)\n\ntype WSABuf struct {\n\tLen uint32\n\tBuf *byte\n}\n\ntype WSAMsg struct {\n\tName        *syscall.RawSockaddrAny\n\tNamelen     int32\n\tBuffers     *WSABuf\n\tBufferCount uint32\n\tControl     WSABuf\n\tFlags       uint32\n}\n\n// Invented values to support what package os expects.\nconst (\n\tS_IFMT   = 0x1f000\n\tS_IFIFO  = 0x1000\n\tS_IFCHR  = 0x2000\n\tS_IFDIR  = 0x4000\n\tS_IFBLK  = 0x6000\n\tS_IFREG  = 0x8000\n\tS_IFLNK  = 0xa000\n\tS_IFSOCK = 0xc000\n\tS_ISUID  = 0x800\n\tS_ISGID  = 0x400\n\tS_ISVTX  = 0x200\n\tS_IRUSR  = 0x100\n\tS_IWRITE = 0x80\n\tS_IWUSR  = 0x80\n\tS_IXUSR  = 0x40\n)\n\nconst (\n\tFILE_TYPE_CHAR    = 0x0002\n\tFILE_TYPE_DISK    = 0x0001\n\tFILE_TYPE_PIPE    = 0x0003\n\tFILE_TYPE_REMOTE  = 0x8000\n\tFILE_TYPE_UNKNOWN = 0x0000\n)\n\ntype Hostent struct {\n\tName     *byte\n\tAliases  **byte\n\tAddrType uint16\n\tLength   uint16\n\tAddrList **byte\n}\n\ntype Protoent struct {\n\tName    *byte\n\tAliases **byte\n\tProto   uint16\n}\n\nconst (\n\tDNS_TYPE_A       = 0x0001\n\tDNS_TYPE_NS      = 0x0002\n\tDNS_TYPE_MD      = 0x0003\n\tDNS_TYPE_MF      = 0x0004\n\tDNS_TYPE_CNAME   = 0x0005\n\tDNS_TYPE_SOA     = 0x0006\n\tDNS_TYPE_MB      = 0x0007\n\tDNS_TYPE_MG      = 0x0008\n\tDNS_TYPE_MR      = 0x0009\n\tDNS_TYPE_NULL    = 0x000a\n\tDNS_TYPE_WKS     = 0x000b\n\tDNS_TYPE_PTR     = 0x000c\n\tDNS_TYPE_HINFO   = 0x000d\n\tDNS_TYPE_MINFO   = 0x000e\n\tDNS_TYPE_MX      = 0x000f\n\tDNS_TYPE_TEXT    = 0x0010\n\tDNS_TYPE_RP      = 0x0011\n\tDNS_TYPE_AFSDB   = 0x0012\n\tDNS_TYPE_X25     = 0x0013\n\tDNS_TYPE_ISDN    = 0x0014\n\tDNS_TYPE_RT      = 0x0015\n\tDNS_TYPE_NSAP    = 0x0016\n\tDNS_TYPE_NSAPPTR = 0x0017\n\tDNS_TYPE_SIG     = 0x0018\n\tDNS_TYPE_KEY     = 0x0019\n\tDNS_TYPE_PX      = 0x001a\n\tDNS_TYPE_GPOS    = 0x001b\n\tDNS_TYPE_AAAA    = 0x001c\n\tDNS_TYPE_LOC     = 0x001d\n\tDNS_TYPE_NXT     = 0x001e\n\tDNS_TYPE_EID     = 0x001f\n\tDNS_TYPE_NIMLOC  = 0x0020\n\tDNS_TYPE_SRV     = 0x0021\n\tDNS_TYPE_ATMA    = 0x0022\n\tDNS_TYPE_NAPTR   = 0x0023\n\tDNS_TYPE_KX      = 0x0024\n\tDNS_TYPE_CERT    = 0x0025\n\tDNS_TYPE_A6      = 0x0026\n\tDNS_TYPE_DNAME   = 0x0027\n\tDNS_TYPE_SINK    = 0x0028\n\tDNS_TYPE_OPT     = 0x0029\n\tDNS_TYPE_DS      = 0x002B\n\tDNS_TYPE_RRSIG   = 0x002E\n\tDNS_TYPE_NSEC    = 0x002F\n\tDNS_TYPE_DNSKEY  = 0x0030\n\tDNS_TYPE_DHCID   = 0x0031\n\tDNS_TYPE_UINFO   = 0x0064\n\tDNS_TYPE_UID     = 0x0065\n\tDNS_TYPE_GID     = 0x0066\n\tDNS_TYPE_UNSPEC  = 0x0067\n\tDNS_TYPE_ADDRS   = 0x00f8\n\tDNS_TYPE_TKEY    = 0x00f9\n\tDNS_TYPE_TSIG    = 0x00fa\n\tDNS_TYPE_IXFR    = 0x00fb\n\tDNS_TYPE_AXFR    = 0x00fc\n\tDNS_TYPE_MAILB   = 0x00fd\n\tDNS_TYPE_MAILA   = 0x00fe\n\tDNS_TYPE_ALL     = 0x00ff\n\tDNS_TYPE_ANY     = 0x00ff\n\tDNS_TYPE_WINS    = 0xff01\n\tDNS_TYPE_WINSR   = 0xff02\n\tDNS_TYPE_NBSTAT  = 0xff01\n)\n\nconst (\n\t// flags inside DNSRecord.Dw\n\tDnsSectionQuestion   = 0x0000\n\tDnsSectionAnswer     = 0x0001\n\tDnsSectionAuthority  = 0x0002\n\tDnsSectionAdditional = 0x0003\n)\n\ntype DNSSRVData struct {\n\tTarget   *uint16\n\tPriority uint16\n\tWeight   uint16\n\tPort     uint16\n\tPad      uint16\n}\n\ntype DNSPTRData struct {\n\tHost *uint16\n}\n\ntype DNSMXData struct {\n\tNameExchange *uint16\n\tPreference   uint16\n\tPad          uint16\n}\n\ntype DNSTXTData struct {\n\tStringCount uint16\n\tStringArray [1]*uint16\n}\n\ntype DNSRecord struct {\n\tNext     *DNSRecord\n\tName     *uint16\n\tType     uint16\n\tLength   uint16\n\tDw       uint32\n\tTtl      uint32\n\tReserved uint32\n\tData     [40]byte\n}\n\nconst (\n\tTF_DISCONNECT         = 1\n\tTF_REUSE_SOCKET       = 2\n\tTF_WRITE_BEHIND       = 4\n\tTF_USE_DEFAULT_WORKER = 0\n\tTF_USE_SYSTEM_THREAD  = 16\n\tTF_USE_KERNEL_APC     = 32\n)\n\ntype TransmitFileBuffers struct {\n\tHead       uintptr\n\tHeadLength uint32\n\tTail       uintptr\n\tTailLength uint32\n}\n\nconst (\n\tIFF_UP           = 1\n\tIFF_BROADCAST    = 2\n\tIFF_LOOPBACK     = 4\n\tIFF_POINTTOPOINT = 8\n\tIFF_MULTICAST    = 16\n)\n\nconst SIO_GET_INTERFACE_LIST = 0x4004747F\n\n// TODO(mattn): SockaddrGen is union of sockaddr/sockaddr_in/sockaddr_in6_old.\n// will be fixed to change variable type as suitable.\n\ntype SockaddrGen [24]byte\n\ntype InterfaceInfo struct {\n\tFlags            uint32\n\tAddress          SockaddrGen\n\tBroadcastAddress SockaddrGen\n\tNetmask          SockaddrGen\n}\n\ntype IpAddressString struct {\n\tString [16]byte\n}\n\ntype IpMaskString IpAddressString\n\ntype IpAddrString struct {\n\tNext      *IpAddrString\n\tIpAddress IpAddressString\n\tIpMask    IpMaskString\n\tContext   uint32\n}\n\nconst MAX_ADAPTER_NAME_LENGTH = 256\nconst MAX_ADAPTER_DESCRIPTION_LENGTH = 128\nconst MAX_ADAPTER_ADDRESS_LENGTH = 8\n\ntype IpAdapterInfo struct {\n\tNext                *IpAdapterInfo\n\tComboIndex          uint32\n\tAdapterName         [MAX_ADAPTER_NAME_LENGTH + 4]byte\n\tDescription         [MAX_ADAPTER_DESCRIPTION_LENGTH + 4]byte\n\tAddressLength       uint32\n\tAddress             [MAX_ADAPTER_ADDRESS_LENGTH]byte\n\tIndex               uint32\n\tType                uint32\n\tDhcpEnabled         uint32\n\tCurrentIpAddress    *IpAddrString\n\tIpAddressList       IpAddrString\n\tGatewayList         IpAddrString\n\tDhcpServer          IpAddrString\n\tHaveWins            bool\n\tPrimaryWinsServer   IpAddrString\n\tSecondaryWinsServer IpAddrString\n\tLeaseObtained       int64\n\tLeaseExpires        int64\n}\n\nconst MAXLEN_PHYSADDR = 8\nconst MAX_INTERFACE_NAME_LEN = 256\nconst MAXLEN_IFDESCR = 256\n\ntype MibIfRow struct {\n\tName            [MAX_INTERFACE_NAME_LEN]uint16\n\tIndex           uint32\n\tType            uint32\n\tMtu             uint32\n\tSpeed           uint32\n\tPhysAddrLen     uint32\n\tPhysAddr        [MAXLEN_PHYSADDR]byte\n\tAdminStatus     uint32\n\tOperStatus      uint32\n\tLastChange      uint32\n\tInOctets        uint32\n\tInUcastPkts     uint32\n\tInNUcastPkts    uint32\n\tInDiscards      uint32\n\tInErrors        uint32\n\tInUnknownProtos uint32\n\tOutOctets       uint32\n\tOutUcastPkts    uint32\n\tOutNUcastPkts   uint32\n\tOutDiscards     uint32\n\tOutErrors       uint32\n\tOutQLen         uint32\n\tDescrLen        uint32\n\tDescr           [MAXLEN_IFDESCR]byte\n}\n\ntype CertInfo struct {\n\t// Not implemented\n}\n\ntype CertContext struct {\n\tEncodingType uint32\n\tEncodedCert  *byte\n\tLength       uint32\n\tCertInfo     *CertInfo\n\tStore        Handle\n}\n\ntype CertChainContext struct {\n\tSize                       uint32\n\tTrustStatus                CertTrustStatus\n\tChainCount                 uint32\n\tChains                     **CertSimpleChain\n\tLowerQualityChainCount     uint32\n\tLowerQualityChains         **CertChainContext\n\tHasRevocationFreshnessTime uint32\n\tRevocationFreshnessTime    uint32\n}\n\ntype CertTrustListInfo struct {\n\t// Not implemented\n}\n\ntype CertSimpleChain struct {\n\tSize                       uint32\n\tTrustStatus                CertTrustStatus\n\tNumElements                uint32\n\tElements                   **CertChainElement\n\tTrustListInfo              *CertTrustListInfo\n\tHasRevocationFreshnessTime uint32\n\tRevocationFreshnessTime    uint32\n}\n\ntype CertChainElement struct {\n\tSize              uint32\n\tCertContext       *CertContext\n\tTrustStatus       CertTrustStatus\n\tRevocationInfo    *CertRevocationInfo\n\tIssuanceUsage     *CertEnhKeyUsage\n\tApplicationUsage  *CertEnhKeyUsage\n\tExtendedErrorInfo *uint16\n}\n\ntype CertRevocationCrlInfo struct {\n\t// Not implemented\n}\n\ntype CertRevocationInfo struct {\n\tSize             uint32\n\tRevocationResult uint32\n\tRevocationOid    *byte\n\tOidSpecificInfo  Pointer\n\tHasFreshnessTime uint32\n\tFreshnessTime    uint32\n\tCrlInfo          *CertRevocationCrlInfo\n}\n\ntype CertTrustStatus struct {\n\tErrorStatus uint32\n\tInfoStatus  uint32\n}\n\ntype CertUsageMatch struct {\n\tType  uint32\n\tUsage CertEnhKeyUsage\n}\n\ntype CertEnhKeyUsage struct {\n\tLength           uint32\n\tUsageIdentifiers **byte\n}\n\ntype CertChainPara struct {\n\tSize                         uint32\n\tRequestedUsage               CertUsageMatch\n\tRequstedIssuancePolicy       CertUsageMatch\n\tURLRetrievalTimeout          uint32\n\tCheckRevocationFreshnessTime uint32\n\tRevocationFreshnessTime      uint32\n\tCacheResync                  *Filetime\n}\n\ntype CertChainPolicyPara struct {\n\tSize            uint32\n\tFlags           uint32\n\tExtraPolicyPara Pointer\n}\n\ntype SSLExtraCertChainPolicyPara struct {\n\tSize       uint32\n\tAuthType   uint32\n\tChecks     uint32\n\tServerName *uint16\n}\n\ntype CertChainPolicyStatus struct {\n\tSize              uint32\n\tError             uint32\n\tChainIndex        uint32\n\tElementIndex      uint32\n\tExtraPolicyStatus Pointer\n}\n\nconst (\n\t// do not reorder\n\tHKEY_CLASSES_ROOT = 0x80000000 + iota\n\tHKEY_CURRENT_USER\n\tHKEY_LOCAL_MACHINE\n\tHKEY_USERS\n\tHKEY_PERFORMANCE_DATA\n\tHKEY_CURRENT_CONFIG\n\tHKEY_DYN_DATA\n\n\tKEY_QUERY_VALUE        = 1\n\tKEY_SET_VALUE          = 2\n\tKEY_CREATE_SUB_KEY     = 4\n\tKEY_ENUMERATE_SUB_KEYS = 8\n\tKEY_NOTIFY             = 16\n\tKEY_CREATE_LINK        = 32\n\tKEY_WRITE              = 0x20006\n\tKEY_EXECUTE            = 0x20019\n\tKEY_READ               = 0x20019\n\tKEY_WOW64_64KEY        = 0x0100\n\tKEY_WOW64_32KEY        = 0x0200\n\tKEY_ALL_ACCESS         = 0xf003f\n)\n\nconst (\n\t// do not reorder\n\tREG_NONE = iota\n\tREG_SZ\n\tREG_EXPAND_SZ\n\tREG_BINARY\n\tREG_DWORD_LITTLE_ENDIAN\n\tREG_DWORD_BIG_ENDIAN\n\tREG_LINK\n\tREG_MULTI_SZ\n\tREG_RESOURCE_LIST\n\tREG_FULL_RESOURCE_DESCRIPTOR\n\tREG_RESOURCE_REQUIREMENTS_LIST\n\tREG_QWORD_LITTLE_ENDIAN\n\tREG_DWORD = REG_DWORD_LITTLE_ENDIAN\n\tREG_QWORD = REG_QWORD_LITTLE_ENDIAN\n)\n\nconst (\n\tEVENT_MODIFY_STATE = 0x0002\n\tEVENT_ALL_ACCESS   = STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | 0x3\n\n\tMUTANT_QUERY_STATE = 0x0001\n\tMUTANT_ALL_ACCESS  = STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | MUTANT_QUERY_STATE\n\n\tSEMAPHORE_MODIFY_STATE = 0x0002\n\tSEMAPHORE_ALL_ACCESS   = STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | 0x3\n\n\tTIMER_QUERY_STATE  = 0x0001\n\tTIMER_MODIFY_STATE = 0x0002\n\tTIMER_ALL_ACCESS   = STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | TIMER_QUERY_STATE | TIMER_MODIFY_STATE\n\n\tMUTEX_MODIFY_STATE = MUTANT_QUERY_STATE\n\tMUTEX_ALL_ACCESS   = MUTANT_ALL_ACCESS\n\n\tCREATE_EVENT_MANUAL_RESET  = 0x1\n\tCREATE_EVENT_INITIAL_SET   = 0x2\n\tCREATE_MUTEX_INITIAL_OWNER = 0x1\n)\n\ntype AddrinfoW struct {\n\tFlags     int32\n\tFamily    int32\n\tSocktype  int32\n\tProtocol  int32\n\tAddrlen   uintptr\n\tCanonname *uint16\n\tAddr      uintptr\n\tNext      *AddrinfoW\n}\n\nconst (\n\tAI_PASSIVE     = 1\n\tAI_CANONNAME   = 2\n\tAI_NUMERICHOST = 4\n)\n\ntype GUID struct {\n\tData1 uint32\n\tData2 uint16\n\tData3 uint16\n\tData4 [8]byte\n}\n\nvar WSAID_CONNECTEX = GUID{\n\t0x25a207b9,\n\t0xddf3,\n\t0x4660,\n\t[8]byte{0x8e, 0xe9, 0x76, 0xe5, 0x8c, 0x74, 0x06, 0x3e},\n}\n\nvar WSAID_WSASENDMSG = GUID{\n\t0xa441e712,\n\t0x754f,\n\t0x43ca,\n\t[8]byte{0x84, 0xa7, 0x0d, 0xee, 0x44, 0xcf, 0x60, 0x6d},\n}\n\nvar WSAID_WSARECVMSG = GUID{\n\t0xf689d7c8,\n\t0x6f1f,\n\t0x436b,\n\t[8]byte{0x8a, 0x53, 0xe5, 0x4f, 0xe3, 0x51, 0xc3, 0x22},\n}\n\nconst (\n\tFILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1\n\tFILE_SKIP_SET_EVENT_ON_HANDLE        = 2\n)\n\nconst (\n\tWSAPROTOCOL_LEN    = 255\n\tMAX_PROTOCOL_CHAIN = 7\n\tBASE_PROTOCOL      = 1\n\tLAYERED_PROTOCOL   = 0\n\n\tXP1_CONNECTIONLESS           = 0x00000001\n\tXP1_GUARANTEED_DELIVERY      = 0x00000002\n\tXP1_GUARANTEED_ORDER         = 0x00000004\n\tXP1_MESSAGE_ORIENTED         = 0x00000008\n\tXP1_PSEUDO_STREAM            = 0x00000010\n\tXP1_GRACEFUL_CLOSE           = 0x00000020\n\tXP1_EXPEDITED_DATA           = 0x00000040\n\tXP1_CONNECT_DATA             = 0x00000080\n\tXP1_DISCONNECT_DATA          = 0x00000100\n\tXP1_SUPPORT_BROADCAST        = 0x00000200\n\tXP1_SUPPORT_MULTIPOINT       = 0x00000400\n\tXP1_MULTIPOINT_CONTROL_PLANE = 0x00000800\n\tXP1_MULTIPOINT_DATA_PLANE    = 0x00001000\n\tXP1_QOS_SUPPORTED            = 0x00002000\n\tXP1_UNI_SEND                 = 0x00008000\n\tXP1_UNI_RECV                 = 0x00010000\n\tXP1_IFS_HANDLES              = 0x00020000\n\tXP1_PARTIAL_MESSAGE          = 0x00040000\n\tXP1_SAN_SUPPORT_SDP          = 0x00080000\n\n\tPFL_MULTIPLE_PROTO_ENTRIES  = 0x00000001\n\tPFL_RECOMMENDED_PROTO_ENTRY = 0x00000002\n\tPFL_HIDDEN                  = 0x00000004\n\tPFL_MATCHES_PROTOCOL_ZERO   = 0x00000008\n\tPFL_NETWORKDIRECT_PROVIDER  = 0x00000010\n)\n\ntype WSAProtocolInfo struct {\n\tServiceFlags1     uint32\n\tServiceFlags2     uint32\n\tServiceFlags3     uint32\n\tServiceFlags4     uint32\n\tProviderFlags     uint32\n\tProviderId        GUID\n\tCatalogEntryId    uint32\n\tProtocolChain     WSAProtocolChain\n\tVersion           int32\n\tAddressFamily     int32\n\tMaxSockAddr       int32\n\tMinSockAddr       int32\n\tSocketType        int32\n\tProtocol          int32\n\tProtocolMaxOffset int32\n\tNetworkByteOrder  int32\n\tSecurityScheme    int32\n\tMessageSize       uint32\n\tProviderReserved  uint32\n\tProtocolName      [WSAPROTOCOL_LEN + 1]uint16\n}\n\ntype WSAProtocolChain struct {\n\tChainLen     int32\n\tChainEntries [MAX_PROTOCOL_CHAIN]uint32\n}\n\ntype TCPKeepalive struct {\n\tOnOff    uint32\n\tTime     uint32\n\tInterval uint32\n}\n\ntype symbolicLinkReparseBuffer struct {\n\tSubstituteNameOffset uint16\n\tSubstituteNameLength uint16\n\tPrintNameOffset      uint16\n\tPrintNameLength      uint16\n\tFlags                uint32\n\tPathBuffer           [1]uint16\n}\n\ntype mountPointReparseBuffer struct {\n\tSubstituteNameOffset uint16\n\tSubstituteNameLength uint16\n\tPrintNameOffset      uint16\n\tPrintNameLength      uint16\n\tPathBuffer           [1]uint16\n}\n\ntype reparseDataBuffer struct {\n\tReparseTag        uint32\n\tReparseDataLength uint16\n\tReserved          uint16\n\n\t// GenericReparseBuffer\n\treparseBuffer byte\n}\n\nconst (\n\tFSCTL_GET_REPARSE_POINT          = 0x900A8\n\tMAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16 * 1024\n\tIO_REPARSE_TAG_MOUNT_POINT       = 0xA0000003\n\tIO_REPARSE_TAG_SYMLINK           = 0xA000000C\n\tSYMBOLIC_LINK_FLAG_DIRECTORY     = 0x1\n)\n\nconst (\n\tComputerNameNetBIOS                   = 0\n\tComputerNameDnsHostname               = 1\n\tComputerNameDnsDomain                 = 2\n\tComputerNameDnsFullyQualified         = 3\n\tComputerNamePhysicalNetBIOS           = 4\n\tComputerNamePhysicalDnsHostname       = 5\n\tComputerNamePhysicalDnsDomain         = 6\n\tComputerNamePhysicalDnsFullyQualified = 7\n\tComputerNameMax                       = 8\n)\n\n// For MessageBox()\nconst (\n\tMB_OK                   = 0x00000000\n\tMB_OKCANCEL             = 0x00000001\n\tMB_ABORTRETRYIGNORE     = 0x00000002\n\tMB_YESNOCANCEL          = 0x00000003\n\tMB_YESNO                = 0x00000004\n\tMB_RETRYCANCEL          = 0x00000005\n\tMB_CANCELTRYCONTINUE    = 0x00000006\n\tMB_ICONHAND             = 0x00000010\n\tMB_ICONQUESTION         = 0x00000020\n\tMB_ICONEXCLAMATION      = 0x00000030\n\tMB_ICONASTERISK         = 0x00000040\n\tMB_USERICON             = 0x00000080\n\tMB_ICONWARNING          = MB_ICONEXCLAMATION\n\tMB_ICONERROR            = MB_ICONHAND\n\tMB_ICONINFORMATION      = MB_ICONASTERISK\n\tMB_ICONSTOP             = MB_ICONHAND\n\tMB_DEFBUTTON1           = 0x00000000\n\tMB_DEFBUTTON2           = 0x00000100\n\tMB_DEFBUTTON3           = 0x00000200\n\tMB_DEFBUTTON4           = 0x00000300\n\tMB_APPLMODAL            = 0x00000000\n\tMB_SYSTEMMODAL          = 0x00001000\n\tMB_TASKMODAL            = 0x00002000\n\tMB_HELP                 = 0x00004000\n\tMB_NOFOCUS              = 0x00008000\n\tMB_SETFOREGROUND        = 0x00010000\n\tMB_DEFAULT_DESKTOP_ONLY = 0x00020000\n\tMB_TOPMOST              = 0x00040000\n\tMB_RIGHT                = 0x00080000\n\tMB_RTLREADING           = 0x00100000\n\tMB_SERVICE_NOTIFICATION = 0x00200000\n)\n\nconst (\n\tMOVEFILE_REPLACE_EXISTING      = 0x1\n\tMOVEFILE_COPY_ALLOWED          = 0x2\n\tMOVEFILE_DELAY_UNTIL_REBOOT    = 0x4\n\tMOVEFILE_WRITE_THROUGH         = 0x8\n\tMOVEFILE_CREATE_HARDLINK       = 0x10\n\tMOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x20\n)\n\nconst GAA_FLAG_INCLUDE_PREFIX = 0x00000010\n\nconst (\n\tIF_TYPE_OTHER              = 1\n\tIF_TYPE_ETHERNET_CSMACD    = 6\n\tIF_TYPE_ISO88025_TOKENRING = 9\n\tIF_TYPE_PPP                = 23\n\tIF_TYPE_SOFTWARE_LOOPBACK  = 24\n\tIF_TYPE_ATM                = 37\n\tIF_TYPE_IEEE80211          = 71\n\tIF_TYPE_TUNNEL             = 131\n\tIF_TYPE_IEEE1394           = 144\n)\n\ntype SocketAddress struct {\n\tSockaddr       *syscall.RawSockaddrAny\n\tSockaddrLength int32\n}\n\n// IP returns an IPv4 or IPv6 address, or nil if the underlying SocketAddress is neither.\nfunc (addr *SocketAddress) IP() net.IP {\n\tif uintptr(addr.SockaddrLength) >= unsafe.Sizeof(RawSockaddrInet4{}) && addr.Sockaddr.Addr.Family == AF_INET {\n\t\treturn (*RawSockaddrInet4)(unsafe.Pointer(addr.Sockaddr)).Addr[:]\n\t} else if uintptr(addr.SockaddrLength) >= unsafe.Sizeof(RawSockaddrInet6{}) && addr.Sockaddr.Addr.Family == AF_INET6 {\n\t\treturn (*RawSockaddrInet6)(unsafe.Pointer(addr.Sockaddr)).Addr[:]\n\t}\n\treturn nil\n}\n\ntype IpAdapterUnicastAddress struct {\n\tLength             uint32\n\tFlags              uint32\n\tNext               *IpAdapterUnicastAddress\n\tAddress            SocketAddress\n\tPrefixOrigin       int32\n\tSuffixOrigin       int32\n\tDadState           int32\n\tValidLifetime      uint32\n\tPreferredLifetime  uint32\n\tLeaseLifetime      uint32\n\tOnLinkPrefixLength uint8\n}\n\ntype IpAdapterAnycastAddress struct {\n\tLength  uint32\n\tFlags   uint32\n\tNext    *IpAdapterAnycastAddress\n\tAddress SocketAddress\n}\n\ntype IpAdapterMulticastAddress struct {\n\tLength  uint32\n\tFlags   uint32\n\tNext    *IpAdapterMulticastAddress\n\tAddress SocketAddress\n}\n\ntype IpAdapterDnsServerAdapter struct {\n\tLength   uint32\n\tReserved uint32\n\tNext     *IpAdapterDnsServerAdapter\n\tAddress  SocketAddress\n}\n\ntype IpAdapterPrefix struct {\n\tLength       uint32\n\tFlags        uint32\n\tNext         *IpAdapterPrefix\n\tAddress      SocketAddress\n\tPrefixLength uint32\n}\n\ntype IpAdapterAddresses struct {\n\tLength                uint32\n\tIfIndex               uint32\n\tNext                  *IpAdapterAddresses\n\tAdapterName           *byte\n\tFirstUnicastAddress   *IpAdapterUnicastAddress\n\tFirstAnycastAddress   *IpAdapterAnycastAddress\n\tFirstMulticastAddress *IpAdapterMulticastAddress\n\tFirstDnsServerAddress *IpAdapterDnsServerAdapter\n\tDnsSuffix             *uint16\n\tDescription           *uint16\n\tFriendlyName          *uint16\n\tPhysicalAddress       [syscall.MAX_ADAPTER_ADDRESS_LENGTH]byte\n\tPhysicalAddressLength uint32\n\tFlags                 uint32\n\tMtu                   uint32\n\tIfType                uint32\n\tOperStatus            uint32\n\tIpv6IfIndex           uint32\n\tZoneIndices           [16]uint32\n\tFirstPrefix           *IpAdapterPrefix\n\t/* more fields might be present here. */\n}\n\nconst (\n\tIfOperStatusUp             = 1\n\tIfOperStatusDown           = 2\n\tIfOperStatusTesting        = 3\n\tIfOperStatusUnknown        = 4\n\tIfOperStatusDormant        = 5\n\tIfOperStatusNotPresent     = 6\n\tIfOperStatusLowerLayerDown = 7\n)\n\n// Console related constants used for the mode parameter to SetConsoleMode. See\n// https://docs.microsoft.com/en-us/windows/console/setconsolemode for details.\n\nconst (\n\tENABLE_PROCESSED_INPUT        = 0x1\n\tENABLE_LINE_INPUT             = 0x2\n\tENABLE_ECHO_INPUT             = 0x4\n\tENABLE_WINDOW_INPUT           = 0x8\n\tENABLE_MOUSE_INPUT            = 0x10\n\tENABLE_INSERT_MODE            = 0x20\n\tENABLE_QUICK_EDIT_MODE        = 0x40\n\tENABLE_EXTENDED_FLAGS         = 0x80\n\tENABLE_AUTO_POSITION          = 0x100\n\tENABLE_VIRTUAL_TERMINAL_INPUT = 0x200\n\n\tENABLE_PROCESSED_OUTPUT            = 0x1\n\tENABLE_WRAP_AT_EOL_OUTPUT          = 0x2\n\tENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x4\n\tDISABLE_NEWLINE_AUTO_RETURN        = 0x8\n\tENABLE_LVB_GRID_WORLDWIDE          = 0x10\n)\n\ntype Coord struct {\n\tX int16\n\tY int16\n}\n\ntype SmallRect struct {\n\tLeft   int16\n\tTop    int16\n\tRight  int16\n\tBottom int16\n}\n\n// Used with GetConsoleScreenBuffer to retrieve information about a console\n// screen buffer. See\n// https://docs.microsoft.com/en-us/windows/console/console-screen-buffer-info-str\n// for details.\n\ntype ConsoleScreenBufferInfo struct {\n\tSize              Coord\n\tCursorPosition    Coord\n\tAttributes        uint16\n\tWindow            SmallRect\n\tMaximumWindowSize Coord\n}\n\nconst UNIX_PATH_MAX = 108 // defined in afunix.h\n\nconst (\n\t// flags for JOBOBJECT_BASIC_LIMIT_INFORMATION.LimitFlags\n\tJOB_OBJECT_LIMIT_ACTIVE_PROCESS             = 0x00000008\n\tJOB_OBJECT_LIMIT_AFFINITY                   = 0x00000010\n\tJOB_OBJECT_LIMIT_BREAKAWAY_OK               = 0x00000800\n\tJOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION = 0x00000400\n\tJOB_OBJECT_LIMIT_JOB_MEMORY                 = 0x00000200\n\tJOB_OBJECT_LIMIT_JOB_TIME                   = 0x00000004\n\tJOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE          = 0x00002000\n\tJOB_OBJECT_LIMIT_PRESERVE_JOB_TIME          = 0x00000040\n\tJOB_OBJECT_LIMIT_PRIORITY_CLASS             = 0x00000020\n\tJOB_OBJECT_LIMIT_PROCESS_MEMORY             = 0x00000100\n\tJOB_OBJECT_LIMIT_PROCESS_TIME               = 0x00000002\n\tJOB_OBJECT_LIMIT_SCHEDULING_CLASS           = 0x00000080\n\tJOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK        = 0x00001000\n\tJOB_OBJECT_LIMIT_SUBSET_AFFINITY            = 0x00004000\n\tJOB_OBJECT_LIMIT_WORKINGSET                 = 0x00000001\n)\n\ntype IO_COUNTERS struct {\n\tReadOperationCount  uint64\n\tWriteOperationCount uint64\n\tOtherOperationCount uint64\n\tReadTransferCount   uint64\n\tWriteTransferCount  uint64\n\tOtherTransferCount  uint64\n}\n\ntype JOBOBJECT_EXTENDED_LIMIT_INFORMATION struct {\n\tBasicLimitInformation JOBOBJECT_BASIC_LIMIT_INFORMATION\n\tIoInfo                IO_COUNTERS\n\tProcessMemoryLimit    uintptr\n\tJobMemoryLimit        uintptr\n\tPeakProcessMemoryUsed uintptr\n\tPeakJobMemoryUsed     uintptr\n}\n\nconst (\n\t// UIRestrictionsClass\n\tJOB_OBJECT_UILIMIT_DESKTOP          = 0x00000040\n\tJOB_OBJECT_UILIMIT_DISPLAYSETTINGS  = 0x00000010\n\tJOB_OBJECT_UILIMIT_EXITWINDOWS      = 0x00000080\n\tJOB_OBJECT_UILIMIT_GLOBALATOMS      = 0x00000020\n\tJOB_OBJECT_UILIMIT_HANDLES          = 0x00000001\n\tJOB_OBJECT_UILIMIT_READCLIPBOARD    = 0x00000002\n\tJOB_OBJECT_UILIMIT_SYSTEMPARAMETERS = 0x00000008\n\tJOB_OBJECT_UILIMIT_WRITECLIPBOARD   = 0x00000004\n)\n\ntype JOBOBJECT_BASIC_UI_RESTRICTIONS struct {\n\tUIRestrictionsClass uint32\n}\n\nconst (\n\t// JobObjectInformationClass\n\tJobObjectAssociateCompletionPortInformation = 7\n\tJobObjectBasicLimitInformation              = 2\n\tJobObjectBasicUIRestrictions                = 4\n\tJobObjectCpuRateControlInformation          = 15\n\tJobObjectEndOfJobTimeInformation            = 6\n\tJobObjectExtendedLimitInformation           = 9\n\tJobObjectGroupInformation                   = 11\n\tJobObjectGroupInformationEx                 = 14\n\tJobObjectLimitViolationInformation2         = 35\n\tJobObjectNetRateControlInformation          = 32\n\tJobObjectNotificationLimitInformation       = 12\n\tJobObjectNotificationLimitInformation2      = 34\n\tJobObjectSecurityLimitInformation           = 5\n)\n\nconst (\n\tKF_FLAG_DEFAULT                          = 0x00000000\n\tKF_FLAG_FORCE_APP_DATA_REDIRECTION       = 0x00080000\n\tKF_FLAG_RETURN_FILTER_REDIRECTION_TARGET = 0x00040000\n\tKF_FLAG_FORCE_PACKAGE_REDIRECTION        = 0x00020000\n\tKF_FLAG_NO_PACKAGE_REDIRECTION           = 0x00010000\n\tKF_FLAG_FORCE_APPCONTAINER_REDIRECTION   = 0x00020000\n\tKF_FLAG_NO_APPCONTAINER_REDIRECTION      = 0x00010000\n\tKF_FLAG_CREATE                           = 0x00008000\n\tKF_FLAG_DONT_VERIFY                      = 0x00004000\n\tKF_FLAG_DONT_UNEXPAND                    = 0x00002000\n\tKF_FLAG_NO_ALIAS                         = 0x00001000\n\tKF_FLAG_INIT                             = 0x00000800\n\tKF_FLAG_DEFAULT_PATH                     = 0x00000400\n\tKF_FLAG_NOT_PARENT_RELATIVE              = 0x00000200\n\tKF_FLAG_SIMPLE_IDLIST                    = 0x00000100\n\tKF_FLAG_ALIAS_ONLY                       = 0x80000000\n)\n\ntype OsVersionInfoEx struct {\n\tosVersionInfoSize uint32\n\tMajorVersion      uint32\n\tMinorVersion      uint32\n\tBuildNumber       uint32\n\tPlatformId        uint32\n\tCsdVersion        [128]uint16\n\tServicePackMajor  uint16\n\tServicePackMinor  uint16\n\tSuiteMask         uint16\n\tProductType       byte\n\t_                 byte\n}\n\nconst (\n\tEWX_LOGOFF          = 0x00000000\n\tEWX_SHUTDOWN        = 0x00000001\n\tEWX_REBOOT          = 0x00000002\n\tEWX_FORCE           = 0x00000004\n\tEWX_POWEROFF        = 0x00000008\n\tEWX_FORCEIFHUNG     = 0x00000010\n\tEWX_QUICKRESOLVE    = 0x00000020\n\tEWX_RESTARTAPPS     = 0x00000040\n\tEWX_HYBRID_SHUTDOWN = 0x00400000\n\tEWX_BOOTOPTIONS     = 0x01000000\n\n\tSHTDN_REASON_FLAG_COMMENT_REQUIRED          = 0x01000000\n\tSHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED = 0x02000000\n\tSHTDN_REASON_FLAG_CLEAN_UI                  = 0x04000000\n\tSHTDN_REASON_FLAG_DIRTY_UI                  = 0x08000000\n\tSHTDN_REASON_FLAG_USER_DEFINED              = 0x40000000\n\tSHTDN_REASON_FLAG_PLANNED                   = 0x80000000\n\tSHTDN_REASON_MAJOR_OTHER                    = 0x00000000\n\tSHTDN_REASON_MAJOR_NONE                     = 0x00000000\n\tSHTDN_REASON_MAJOR_HARDWARE                 = 0x00010000\n\tSHTDN_REASON_MAJOR_OPERATINGSYSTEM          = 0x00020000\n\tSHTDN_REASON_MAJOR_SOFTWARE                 = 0x00030000\n\tSHTDN_REASON_MAJOR_APPLICATION              = 0x00040000\n\tSHTDN_REASON_MAJOR_SYSTEM                   = 0x00050000\n\tSHTDN_REASON_MAJOR_POWER                    = 0x00060000\n\tSHTDN_REASON_MAJOR_LEGACY_API               = 0x00070000\n\tSHTDN_REASON_MINOR_OTHER                    = 0x00000000\n\tSHTDN_REASON_MINOR_NONE                     = 0x000000ff\n\tSHTDN_REASON_MINOR_MAINTENANCE              = 0x00000001\n\tSHTDN_REASON_MINOR_INSTALLATION             = 0x00000002\n\tSHTDN_REASON_MINOR_UPGRADE                  = 0x00000003\n\tSHTDN_REASON_MINOR_RECONFIG                 = 0x00000004\n\tSHTDN_REASON_MINOR_HUNG                     = 0x00000005\n\tSHTDN_REASON_MINOR_UNSTABLE                 = 0x00000006\n\tSHTDN_REASON_MINOR_DISK                     = 0x00000007\n\tSHTDN_REASON_MINOR_PROCESSOR                = 0x00000008\n\tSHTDN_REASON_MINOR_NETWORKCARD              = 0x00000009\n\tSHTDN_REASON_MINOR_POWER_SUPPLY             = 0x0000000a\n\tSHTDN_REASON_MINOR_CORDUNPLUGGED            = 0x0000000b\n\tSHTDN_REASON_MINOR_ENVIRONMENT              = 0x0000000c\n\tSHTDN_REASON_MINOR_HARDWARE_DRIVER          = 0x0000000d\n\tSHTDN_REASON_MINOR_OTHERDRIVER              = 0x0000000e\n\tSHTDN_REASON_MINOR_BLUESCREEN               = 0x0000000F\n\tSHTDN_REASON_MINOR_SERVICEPACK              = 0x00000010\n\tSHTDN_REASON_MINOR_HOTFIX                   = 0x00000011\n\tSHTDN_REASON_MINOR_SECURITYFIX              = 0x00000012\n\tSHTDN_REASON_MINOR_SECURITY                 = 0x00000013\n\tSHTDN_REASON_MINOR_NETWORK_CONNECTIVITY     = 0x00000014\n\tSHTDN_REASON_MINOR_WMI                      = 0x00000015\n\tSHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL    = 0x00000016\n\tSHTDN_REASON_MINOR_HOTFIX_UNINSTALL         = 0x00000017\n\tSHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL    = 0x00000018\n\tSHTDN_REASON_MINOR_MMC                      = 0x00000019\n\tSHTDN_REASON_MINOR_SYSTEMRESTORE            = 0x0000001a\n\tSHTDN_REASON_MINOR_TERMSRV                  = 0x00000020\n\tSHTDN_REASON_MINOR_DC_PROMOTION             = 0x00000021\n\tSHTDN_REASON_MINOR_DC_DEMOTION              = 0x00000022\n\tSHTDN_REASON_UNKNOWN                        = SHTDN_REASON_MINOR_NONE\n\tSHTDN_REASON_LEGACY_API                     = SHTDN_REASON_MAJOR_LEGACY_API | SHTDN_REASON_FLAG_PLANNED\n\tSHTDN_REASON_VALID_BIT_MASK                 = 0xc0ffffff\n\n\tSHUTDOWN_NORETRY = 0x1\n)\n\n// Flags used for GetModuleHandleEx\nconst (\n\tGET_MODULE_HANDLE_EX_FLAG_PIN                = 1\n\tGET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT = 2\n\tGET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS       = 4\n)\n\n// MUI function flag values\nconst (\n\tMUI_LANGUAGE_ID                    = 0x4\n\tMUI_LANGUAGE_NAME                  = 0x8\n\tMUI_MERGE_SYSTEM_FALLBACK          = 0x10\n\tMUI_MERGE_USER_FALLBACK            = 0x20\n\tMUI_UI_FALLBACK                    = MUI_MERGE_SYSTEM_FALLBACK | MUI_MERGE_USER_FALLBACK\n\tMUI_THREAD_LANGUAGES               = 0x40\n\tMUI_CONSOLE_FILTER                 = 0x100\n\tMUI_COMPLEX_SCRIPT_FILTER          = 0x200\n\tMUI_RESET_FILTERS                  = 0x001\n\tMUI_USER_PREFERRED_UI_LANGUAGES    = 0x10\n\tMUI_USE_INSTALLED_LANGUAGES        = 0x20\n\tMUI_USE_SEARCH_ALL_LANGUAGES       = 0x40\n\tMUI_LANG_NEUTRAL_PE_FILE           = 0x100\n\tMUI_NON_LANG_NEUTRAL_FILE          = 0x200\n\tMUI_MACHINE_LANGUAGE_SETTINGS      = 0x400\n\tMUI_FILETYPE_NOT_LANGUAGE_NEUTRAL  = 0x001\n\tMUI_FILETYPE_LANGUAGE_NEUTRAL_MAIN = 0x002\n\tMUI_FILETYPE_LANGUAGE_NEUTRAL_MUI  = 0x004\n\tMUI_QUERY_TYPE                     = 0x001\n\tMUI_QUERY_CHECKSUM                 = 0x002\n\tMUI_QUERY_LANGUAGE_NAME            = 0x004\n\tMUI_QUERY_RESOURCE_TYPES           = 0x008\n\tMUI_FILEINFO_VERSION               = 0x001\n\n\tMUI_FULL_LANGUAGE      = 0x01\n\tMUI_PARTIAL_LANGUAGE   = 0x02\n\tMUI_LIP_LANGUAGE       = 0x04\n\tMUI_LANGUAGE_INSTALLED = 0x20\n\tMUI_LANGUAGE_LICENSED  = 0x40\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/types_windows_386.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage windows\n\ntype WSAData struct {\n\tVersion      uint16\n\tHighVersion  uint16\n\tDescription  [WSADESCRIPTION_LEN + 1]byte\n\tSystemStatus [WSASYS_STATUS_LEN + 1]byte\n\tMaxSockets   uint16\n\tMaxUdpDg     uint16\n\tVendorInfo   *byte\n}\n\ntype Servent struct {\n\tName    *byte\n\tAliases **byte\n\tPort    uint16\n\tProto   *byte\n}\n\ntype JOBOBJECT_BASIC_LIMIT_INFORMATION struct {\n\tPerProcessUserTimeLimit int64\n\tPerJobUserTimeLimit     int64\n\tLimitFlags              uint32\n\tMinimumWorkingSetSize   uintptr\n\tMaximumWorkingSetSize   uintptr\n\tActiveProcessLimit      uint32\n\tAffinity                uintptr\n\tPriorityClass           uint32\n\tSchedulingClass         uint32\n\t_                       uint32 // pad to 8 byte boundary\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/types_windows_amd64.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage windows\n\ntype WSAData struct {\n\tVersion      uint16\n\tHighVersion  uint16\n\tMaxSockets   uint16\n\tMaxUdpDg     uint16\n\tVendorInfo   *byte\n\tDescription  [WSADESCRIPTION_LEN + 1]byte\n\tSystemStatus [WSASYS_STATUS_LEN + 1]byte\n}\n\ntype Servent struct {\n\tName    *byte\n\tAliases **byte\n\tProto   *byte\n\tPort    uint16\n}\n\ntype JOBOBJECT_BASIC_LIMIT_INFORMATION struct {\n\tPerProcessUserTimeLimit int64\n\tPerJobUserTimeLimit     int64\n\tLimitFlags              uint32\n\tMinimumWorkingSetSize   uintptr\n\tMaximumWorkingSetSize   uintptr\n\tActiveProcessLimit      uint32\n\tAffinity                uintptr\n\tPriorityClass           uint32\n\tSchedulingClass         uint32\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/types_windows_arm.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage windows\n\ntype WSAData struct {\n\tVersion      uint16\n\tHighVersion  uint16\n\tDescription  [WSADESCRIPTION_LEN + 1]byte\n\tSystemStatus [WSASYS_STATUS_LEN + 1]byte\n\tMaxSockets   uint16\n\tMaxUdpDg     uint16\n\tVendorInfo   *byte\n}\n\ntype Servent struct {\n\tName    *byte\n\tAliases **byte\n\tPort    uint16\n\tProto   *byte\n}\n\ntype JOBOBJECT_BASIC_LIMIT_INFORMATION struct {\n\tPerProcessUserTimeLimit int64\n\tPerJobUserTimeLimit     int64\n\tLimitFlags              uint32\n\tMinimumWorkingSetSize   uintptr\n\tMaximumWorkingSetSize   uintptr\n\tActiveProcessLimit      uint32\n\tAffinity                uintptr\n\tPriorityClass           uint32\n\tSchedulingClass         uint32\n\t_                       uint32 // pad to 8 byte boundary\n}\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/zerrors_windows.go",
    "content": "// Code generated by 'mkerrors.bash'; DO NOT EDIT.\n\npackage windows\n\nimport \"syscall\"\n\nconst (\n\tFACILITY_NULL                                                                           = 0\n\tFACILITY_RPC                                                                            = 1\n\tFACILITY_DISPATCH                                                                       = 2\n\tFACILITY_STORAGE                                                                        = 3\n\tFACILITY_ITF                                                                            = 4\n\tFACILITY_WIN32                                                                          = 7\n\tFACILITY_WINDOWS                                                                        = 8\n\tFACILITY_SSPI                                                                           = 9\n\tFACILITY_SECURITY                                                                       = 9\n\tFACILITY_CONTROL                                                                        = 10\n\tFACILITY_CERT                                                                           = 11\n\tFACILITY_INTERNET                                                                       = 12\n\tFACILITY_MEDIASERVER                                                                    = 13\n\tFACILITY_MSMQ                                                                           = 14\n\tFACILITY_SETUPAPI                                                                       = 15\n\tFACILITY_SCARD                                                                          = 16\n\tFACILITY_COMPLUS                                                                        = 17\n\tFACILITY_AAF                                                                            = 18\n\tFACILITY_URT                                                                            = 19\n\tFACILITY_ACS                                                                            = 20\n\tFACILITY_DPLAY                                                                          = 21\n\tFACILITY_UMI                                                                            = 22\n\tFACILITY_SXS                                                                            = 23\n\tFACILITY_WINDOWS_CE                                                                     = 24\n\tFACILITY_HTTP                                                                           = 25\n\tFACILITY_USERMODE_COMMONLOG                                                             = 26\n\tFACILITY_WER                                                                            = 27\n\tFACILITY_USERMODE_FILTER_MANAGER                                                        = 31\n\tFACILITY_BACKGROUNDCOPY                                                                 = 32\n\tFACILITY_CONFIGURATION                                                                  = 33\n\tFACILITY_WIA                                                                            = 33\n\tFACILITY_STATE_MANAGEMENT                                                               = 34\n\tFACILITY_METADIRECTORY                                                                  = 35\n\tFACILITY_WINDOWSUPDATE                                                                  = 36\n\tFACILITY_DIRECTORYSERVICE                                                               = 37\n\tFACILITY_GRAPHICS                                                                       = 38\n\tFACILITY_SHELL                                                                          = 39\n\tFACILITY_NAP                                                                            = 39\n\tFACILITY_TPM_SERVICES                                                                   = 40\n\tFACILITY_TPM_SOFTWARE                                                                   = 41\n\tFACILITY_UI                                                                             = 42\n\tFACILITY_XAML                                                                           = 43\n\tFACILITY_ACTION_QUEUE                                                                   = 44\n\tFACILITY_PLA                                                                            = 48\n\tFACILITY_WINDOWS_SETUP                                                                  = 48\n\tFACILITY_FVE                                                                            = 49\n\tFACILITY_FWP                                                                            = 50\n\tFACILITY_WINRM                                                                          = 51\n\tFACILITY_NDIS                                                                           = 52\n\tFACILITY_USERMODE_HYPERVISOR                                                            = 53\n\tFACILITY_CMI                                                                            = 54\n\tFACILITY_USERMODE_VIRTUALIZATION                                                        = 55\n\tFACILITY_USERMODE_VOLMGR                                                                = 56\n\tFACILITY_BCD                                                                            = 57\n\tFACILITY_USERMODE_VHD                                                                   = 58\n\tFACILITY_USERMODE_HNS                                                                   = 59\n\tFACILITY_SDIAG                                                                          = 60\n\tFACILITY_WEBSERVICES                                                                    = 61\n\tFACILITY_WINPE                                                                          = 61\n\tFACILITY_WPN                                                                            = 62\n\tFACILITY_WINDOWS_STORE                                                                  = 63\n\tFACILITY_INPUT                                                                          = 64\n\tFACILITY_EAP                                                                            = 66\n\tFACILITY_WINDOWS_DEFENDER                                                               = 80\n\tFACILITY_OPC                                                                            = 81\n\tFACILITY_XPS                                                                            = 82\n\tFACILITY_MBN                                                                            = 84\n\tFACILITY_POWERSHELL                                                                     = 84\n\tFACILITY_RAS                                                                            = 83\n\tFACILITY_P2P_INT                                                                        = 98\n\tFACILITY_P2P                                                                            = 99\n\tFACILITY_DAF                                                                            = 100\n\tFACILITY_BLUETOOTH_ATT                                                                  = 101\n\tFACILITY_AUDIO                                                                          = 102\n\tFACILITY_STATEREPOSITORY                                                                = 103\n\tFACILITY_VISUALCPP                                                                      = 109\n\tFACILITY_SCRIPT                                                                         = 112\n\tFACILITY_PARSE                                                                          = 113\n\tFACILITY_BLB                                                                            = 120\n\tFACILITY_BLB_CLI                                                                        = 121\n\tFACILITY_WSBAPP                                                                         = 122\n\tFACILITY_BLBUI                                                                          = 128\n\tFACILITY_USN                                                                            = 129\n\tFACILITY_USERMODE_VOLSNAP                                                               = 130\n\tFACILITY_TIERING                                                                        = 131\n\tFACILITY_WSB_ONLINE                                                                     = 133\n\tFACILITY_ONLINE_ID                                                                      = 134\n\tFACILITY_DEVICE_UPDATE_AGENT                                                            = 135\n\tFACILITY_DRVSERVICING                                                                   = 136\n\tFACILITY_DLS                                                                            = 153\n\tFACILITY_DELIVERY_OPTIMIZATION                                                          = 208\n\tFACILITY_USERMODE_SPACES                                                                = 231\n\tFACILITY_USER_MODE_SECURITY_CORE                                                        = 232\n\tFACILITY_USERMODE_LICENSING                                                             = 234\n\tFACILITY_SOS                                                                            = 160\n\tFACILITY_DEBUGGERS                                                                      = 176\n\tFACILITY_SPP                                                                            = 256\n\tFACILITY_RESTORE                                                                        = 256\n\tFACILITY_DMSERVER                                                                       = 256\n\tFACILITY_DEPLOYMENT_SERVICES_SERVER                                                     = 257\n\tFACILITY_DEPLOYMENT_SERVICES_IMAGING                                                    = 258\n\tFACILITY_DEPLOYMENT_SERVICES_MANAGEMENT                                                 = 259\n\tFACILITY_DEPLOYMENT_SERVICES_UTIL                                                       = 260\n\tFACILITY_DEPLOYMENT_SERVICES_BINLSVC                                                    = 261\n\tFACILITY_DEPLOYMENT_SERVICES_PXE                                                        = 263\n\tFACILITY_DEPLOYMENT_SERVICES_TFTP                                                       = 264\n\tFACILITY_DEPLOYMENT_SERVICES_TRANSPORT_MANAGEMENT                                       = 272\n\tFACILITY_DEPLOYMENT_SERVICES_DRIVER_PROVISIONING                                        = 278\n\tFACILITY_DEPLOYMENT_SERVICES_MULTICAST_SERVER                                           = 289\n\tFACILITY_DEPLOYMENT_SERVICES_MULTICAST_CLIENT                                           = 290\n\tFACILITY_DEPLOYMENT_SERVICES_CONTENT_PROVIDER                                           = 293\n\tFACILITY_LINGUISTIC_SERVICES                                                            = 305\n\tFACILITY_AUDIOSTREAMING                                                                 = 1094\n\tFACILITY_ACCELERATOR                                                                    = 1536\n\tFACILITY_WMAAECMA                                                                       = 1996\n\tFACILITY_DIRECTMUSIC                                                                    = 2168\n\tFACILITY_DIRECT3D10                                                                     = 2169\n\tFACILITY_DXGI                                                                           = 2170\n\tFACILITY_DXGI_DDI                                                                       = 2171\n\tFACILITY_DIRECT3D11                                                                     = 2172\n\tFACILITY_DIRECT3D11_DEBUG                                                               = 2173\n\tFACILITY_DIRECT3D12                                                                     = 2174\n\tFACILITY_DIRECT3D12_DEBUG                                                               = 2175\n\tFACILITY_LEAP                                                                           = 2184\n\tFACILITY_AUDCLNT                                                                        = 2185\n\tFACILITY_WINCODEC_DWRITE_DWM                                                            = 2200\n\tFACILITY_WINML                                                                          = 2192\n\tFACILITY_DIRECT2D                                                                       = 2201\n\tFACILITY_DEFRAG                                                                         = 2304\n\tFACILITY_USERMODE_SDBUS                                                                 = 2305\n\tFACILITY_JSCRIPT                                                                        = 2306\n\tFACILITY_PIDGENX                                                                        = 2561\n\tFACILITY_EAS                                                                            = 85\n\tFACILITY_WEB                                                                            = 885\n\tFACILITY_WEB_SOCKET                                                                     = 886\n\tFACILITY_MOBILE                                                                         = 1793\n\tFACILITY_SQLITE                                                                         = 1967\n\tFACILITY_UTC                                                                            = 1989\n\tFACILITY_WEP                                                                            = 2049\n\tFACILITY_SYNCENGINE                                                                     = 2050\n\tFACILITY_XBOX                                                                           = 2339\n\tFACILITY_PIX                                                                            = 2748\n\tERROR_SUCCESS                                                             syscall.Errno = 0\n\tNO_ERROR                                                                                = 0\n\tSEC_E_OK                                                                  Handle        = 0x00000000\n\tERROR_INVALID_FUNCTION                                                    syscall.Errno = 1\n\tERROR_FILE_NOT_FOUND                                                      syscall.Errno = 2\n\tERROR_PATH_NOT_FOUND                                                      syscall.Errno = 3\n\tERROR_TOO_MANY_OPEN_FILES                                                 syscall.Errno = 4\n\tERROR_ACCESS_DENIED                                                       syscall.Errno = 5\n\tERROR_INVALID_HANDLE                                                      syscall.Errno = 6\n\tERROR_ARENA_TRASHED                                                       syscall.Errno = 7\n\tERROR_NOT_ENOUGH_MEMORY                                                   syscall.Errno = 8\n\tERROR_INVALID_BLOCK                                                       syscall.Errno = 9\n\tERROR_BAD_ENVIRONMENT                                                     syscall.Errno = 10\n\tERROR_BAD_FORMAT                                                          syscall.Errno = 11\n\tERROR_INVALID_ACCESS                                                      syscall.Errno = 12\n\tERROR_INVALID_DATA                                                        syscall.Errno = 13\n\tERROR_OUTOFMEMORY                                                         syscall.Errno = 14\n\tERROR_INVALID_DRIVE                                                       syscall.Errno = 15\n\tERROR_CURRENT_DIRECTORY                                                   syscall.Errno = 16\n\tERROR_NOT_SAME_DEVICE                                                     syscall.Errno = 17\n\tERROR_NO_MORE_FILES                                                       syscall.Errno = 18\n\tERROR_WRITE_PROTECT                                                       syscall.Errno = 19\n\tERROR_BAD_UNIT                                                            syscall.Errno = 20\n\tERROR_NOT_READY                                                           syscall.Errno = 21\n\tERROR_BAD_COMMAND                                                         syscall.Errno = 22\n\tERROR_CRC                                                                 syscall.Errno = 23\n\tERROR_BAD_LENGTH                                                          syscall.Errno = 24\n\tERROR_SEEK                                                                syscall.Errno = 25\n\tERROR_NOT_DOS_DISK                                                        syscall.Errno = 26\n\tERROR_SECTOR_NOT_FOUND                                                    syscall.Errno = 27\n\tERROR_OUT_OF_PAPER                                                        syscall.Errno = 28\n\tERROR_WRITE_FAULT                                                         syscall.Errno = 29\n\tERROR_READ_FAULT                                                          syscall.Errno = 30\n\tERROR_GEN_FAILURE                                                         syscall.Errno = 31\n\tERROR_SHARING_VIOLATION                                                   syscall.Errno = 32\n\tERROR_LOCK_VIOLATION                                                      syscall.Errno = 33\n\tERROR_WRONG_DISK                                                          syscall.Errno = 34\n\tERROR_SHARING_BUFFER_EXCEEDED                                             syscall.Errno = 36\n\tERROR_HANDLE_EOF                                                          syscall.Errno = 38\n\tERROR_HANDLE_DISK_FULL                                                    syscall.Errno = 39\n\tERROR_NOT_SUPPORTED                                                       syscall.Errno = 50\n\tERROR_REM_NOT_LIST                                                        syscall.Errno = 51\n\tERROR_DUP_NAME                                                            syscall.Errno = 52\n\tERROR_BAD_NETPATH                                                         syscall.Errno = 53\n\tERROR_NETWORK_BUSY                                                        syscall.Errno = 54\n\tERROR_DEV_NOT_EXIST                                                       syscall.Errno = 55\n\tERROR_TOO_MANY_CMDS                                                       syscall.Errno = 56\n\tERROR_ADAP_HDW_ERR                                                        syscall.Errno = 57\n\tERROR_BAD_NET_RESP                                                        syscall.Errno = 58\n\tERROR_UNEXP_NET_ERR                                                       syscall.Errno = 59\n\tERROR_BAD_REM_ADAP                                                        syscall.Errno = 60\n\tERROR_PRINTQ_FULL                                                         syscall.Errno = 61\n\tERROR_NO_SPOOL_SPACE                                                      syscall.Errno = 62\n\tERROR_PRINT_CANCELLED                                                     syscall.Errno = 63\n\tERROR_NETNAME_DELETED                                                     syscall.Errno = 64\n\tERROR_NETWORK_ACCESS_DENIED                                               syscall.Errno = 65\n\tERROR_BAD_DEV_TYPE                                                        syscall.Errno = 66\n\tERROR_BAD_NET_NAME                                                        syscall.Errno = 67\n\tERROR_TOO_MANY_NAMES                                                      syscall.Errno = 68\n\tERROR_TOO_MANY_SESS                                                       syscall.Errno = 69\n\tERROR_SHARING_PAUSED                                                      syscall.Errno = 70\n\tERROR_REQ_NOT_ACCEP                                                       syscall.Errno = 71\n\tERROR_REDIR_PAUSED                                                        syscall.Errno = 72\n\tERROR_FILE_EXISTS                                                         syscall.Errno = 80\n\tERROR_CANNOT_MAKE                                                         syscall.Errno = 82\n\tERROR_FAIL_I24                                                            syscall.Errno = 83\n\tERROR_OUT_OF_STRUCTURES                                                   syscall.Errno = 84\n\tERROR_ALREADY_ASSIGNED                                                    syscall.Errno = 85\n\tERROR_INVALID_PASSWORD                                                    syscall.Errno = 86\n\tERROR_INVALID_PARAMETER                                                   syscall.Errno = 87\n\tERROR_NET_WRITE_FAULT                                                     syscall.Errno = 88\n\tERROR_NO_PROC_SLOTS                                                       syscall.Errno = 89\n\tERROR_TOO_MANY_SEMAPHORES                                                 syscall.Errno = 100\n\tERROR_EXCL_SEM_ALREADY_OWNED                                              syscall.Errno = 101\n\tERROR_SEM_IS_SET                                                          syscall.Errno = 102\n\tERROR_TOO_MANY_SEM_REQUESTS                                               syscall.Errno = 103\n\tERROR_INVALID_AT_INTERRUPT_TIME                                           syscall.Errno = 104\n\tERROR_SEM_OWNER_DIED                                                      syscall.Errno = 105\n\tERROR_SEM_USER_LIMIT                                                      syscall.Errno = 106\n\tERROR_DISK_CHANGE                                                         syscall.Errno = 107\n\tERROR_DRIVE_LOCKED                                                        syscall.Errno = 108\n\tERROR_BROKEN_PIPE                                                         syscall.Errno = 109\n\tERROR_OPEN_FAILED                                                         syscall.Errno = 110\n\tERROR_BUFFER_OVERFLOW                                                     syscall.Errno = 111\n\tERROR_DISK_FULL                                                           syscall.Errno = 112\n\tERROR_NO_MORE_SEARCH_HANDLES                                              syscall.Errno = 113\n\tERROR_INVALID_TARGET_HANDLE                                               syscall.Errno = 114\n\tERROR_INVALID_CATEGORY                                                    syscall.Errno = 117\n\tERROR_INVALID_VERIFY_SWITCH                                               syscall.Errno = 118\n\tERROR_BAD_DRIVER_LEVEL                                                    syscall.Errno = 119\n\tERROR_CALL_NOT_IMPLEMENTED                                                syscall.Errno = 120\n\tERROR_SEM_TIMEOUT                                                         syscall.Errno = 121\n\tERROR_INSUFFICIENT_BUFFER                                                 syscall.Errno = 122\n\tERROR_INVALID_NAME                                                        syscall.Errno = 123\n\tERROR_INVALID_LEVEL                                                       syscall.Errno = 124\n\tERROR_NO_VOLUME_LABEL                                                     syscall.Errno = 125\n\tERROR_MOD_NOT_FOUND                                                       syscall.Errno = 126\n\tERROR_PROC_NOT_FOUND                                                      syscall.Errno = 127\n\tERROR_WAIT_NO_CHILDREN                                                    syscall.Errno = 128\n\tERROR_CHILD_NOT_COMPLETE                                                  syscall.Errno = 129\n\tERROR_DIRECT_ACCESS_HANDLE                                                syscall.Errno = 130\n\tERROR_NEGATIVE_SEEK                                                       syscall.Errno = 131\n\tERROR_SEEK_ON_DEVICE                                                      syscall.Errno = 132\n\tERROR_IS_JOIN_TARGET                                                      syscall.Errno = 133\n\tERROR_IS_JOINED                                                           syscall.Errno = 134\n\tERROR_IS_SUBSTED                                                          syscall.Errno = 135\n\tERROR_NOT_JOINED                                                          syscall.Errno = 136\n\tERROR_NOT_SUBSTED                                                         syscall.Errno = 137\n\tERROR_JOIN_TO_JOIN                                                        syscall.Errno = 138\n\tERROR_SUBST_TO_SUBST                                                      syscall.Errno = 139\n\tERROR_JOIN_TO_SUBST                                                       syscall.Errno = 140\n\tERROR_SUBST_TO_JOIN                                                       syscall.Errno = 141\n\tERROR_BUSY_DRIVE                                                          syscall.Errno = 142\n\tERROR_SAME_DRIVE                                                          syscall.Errno = 143\n\tERROR_DIR_NOT_ROOT                                                        syscall.Errno = 144\n\tERROR_DIR_NOT_EMPTY                                                       syscall.Errno = 145\n\tERROR_IS_SUBST_PATH                                                       syscall.Errno = 146\n\tERROR_IS_JOIN_PATH                                                        syscall.Errno = 147\n\tERROR_PATH_BUSY                                                           syscall.Errno = 148\n\tERROR_IS_SUBST_TARGET                                                     syscall.Errno = 149\n\tERROR_SYSTEM_TRACE                                                        syscall.Errno = 150\n\tERROR_INVALID_EVENT_COUNT                                                 syscall.Errno = 151\n\tERROR_TOO_MANY_MUXWAITERS                                                 syscall.Errno = 152\n\tERROR_INVALID_LIST_FORMAT                                                 syscall.Errno = 153\n\tERROR_LABEL_TOO_LONG                                                      syscall.Errno = 154\n\tERROR_TOO_MANY_TCBS                                                       syscall.Errno = 155\n\tERROR_SIGNAL_REFUSED                                                      syscall.Errno = 156\n\tERROR_DISCARDED                                                           syscall.Errno = 157\n\tERROR_NOT_LOCKED                                                          syscall.Errno = 158\n\tERROR_BAD_THREADID_ADDR                                                   syscall.Errno = 159\n\tERROR_BAD_ARGUMENTS                                                       syscall.Errno = 160\n\tERROR_BAD_PATHNAME                                                        syscall.Errno = 161\n\tERROR_SIGNAL_PENDING                                                      syscall.Errno = 162\n\tERROR_MAX_THRDS_REACHED                                                   syscall.Errno = 164\n\tERROR_LOCK_FAILED                                                         syscall.Errno = 167\n\tERROR_BUSY                                                                syscall.Errno = 170\n\tERROR_DEVICE_SUPPORT_IN_PROGRESS                                          syscall.Errno = 171\n\tERROR_CANCEL_VIOLATION                                                    syscall.Errno = 173\n\tERROR_ATOMIC_LOCKS_NOT_SUPPORTED                                          syscall.Errno = 174\n\tERROR_INVALID_SEGMENT_NUMBER                                              syscall.Errno = 180\n\tERROR_INVALID_ORDINAL                                                     syscall.Errno = 182\n\tERROR_ALREADY_EXISTS                                                      syscall.Errno = 183\n\tERROR_INVALID_FLAG_NUMBER                                                 syscall.Errno = 186\n\tERROR_SEM_NOT_FOUND                                                       syscall.Errno = 187\n\tERROR_INVALID_STARTING_CODESEG                                            syscall.Errno = 188\n\tERROR_INVALID_STACKSEG                                                    syscall.Errno = 189\n\tERROR_INVALID_MODULETYPE                                                  syscall.Errno = 190\n\tERROR_INVALID_EXE_SIGNATURE                                               syscall.Errno = 191\n\tERROR_EXE_MARKED_INVALID                                                  syscall.Errno = 192\n\tERROR_BAD_EXE_FORMAT                                                      syscall.Errno = 193\n\tERROR_ITERATED_DATA_EXCEEDS_64k                                           syscall.Errno = 194\n\tERROR_INVALID_MINALLOCSIZE                                                syscall.Errno = 195\n\tERROR_DYNLINK_FROM_INVALID_RING                                           syscall.Errno = 196\n\tERROR_IOPL_NOT_ENABLED                                                    syscall.Errno = 197\n\tERROR_INVALID_SEGDPL                                                      syscall.Errno = 198\n\tERROR_AUTODATASEG_EXCEEDS_64k                                             syscall.Errno = 199\n\tERROR_RING2SEG_MUST_BE_MOVABLE                                            syscall.Errno = 200\n\tERROR_RELOC_CHAIN_XEEDS_SEGLIM                                            syscall.Errno = 201\n\tERROR_INFLOOP_IN_RELOC_CHAIN                                              syscall.Errno = 202\n\tERROR_ENVVAR_NOT_FOUND                                                    syscall.Errno = 203\n\tERROR_NO_SIGNAL_SENT                                                      syscall.Errno = 205\n\tERROR_FILENAME_EXCED_RANGE                                                syscall.Errno = 206\n\tERROR_RING2_STACK_IN_USE                                                  syscall.Errno = 207\n\tERROR_META_EXPANSION_TOO_LONG                                             syscall.Errno = 208\n\tERROR_INVALID_SIGNAL_NUMBER                                               syscall.Errno = 209\n\tERROR_THREAD_1_INACTIVE                                                   syscall.Errno = 210\n\tERROR_LOCKED                                                              syscall.Errno = 212\n\tERROR_TOO_MANY_MODULES                                                    syscall.Errno = 214\n\tERROR_NESTING_NOT_ALLOWED                                                 syscall.Errno = 215\n\tERROR_EXE_MACHINE_TYPE_MISMATCH                                           syscall.Errno = 216\n\tERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY                                     syscall.Errno = 217\n\tERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY                              syscall.Errno = 218\n\tERROR_FILE_CHECKED_OUT                                                    syscall.Errno = 220\n\tERROR_CHECKOUT_REQUIRED                                                   syscall.Errno = 221\n\tERROR_BAD_FILE_TYPE                                                       syscall.Errno = 222\n\tERROR_FILE_TOO_LARGE                                                      syscall.Errno = 223\n\tERROR_FORMS_AUTH_REQUIRED                                                 syscall.Errno = 224\n\tERROR_VIRUS_INFECTED                                                      syscall.Errno = 225\n\tERROR_VIRUS_DELETED                                                       syscall.Errno = 226\n\tERROR_PIPE_LOCAL                                                          syscall.Errno = 229\n\tERROR_BAD_PIPE                                                            syscall.Errno = 230\n\tERROR_PIPE_BUSY                                                           syscall.Errno = 231\n\tERROR_NO_DATA                                                             syscall.Errno = 232\n\tERROR_PIPE_NOT_CONNECTED                                                  syscall.Errno = 233\n\tERROR_MORE_DATA                                                           syscall.Errno = 234\n\tERROR_NO_WORK_DONE                                                        syscall.Errno = 235\n\tERROR_VC_DISCONNECTED                                                     syscall.Errno = 240\n\tERROR_INVALID_EA_NAME                                                     syscall.Errno = 254\n\tERROR_EA_LIST_INCONSISTENT                                                syscall.Errno = 255\n\tWAIT_TIMEOUT                                                              syscall.Errno = 258\n\tERROR_NO_MORE_ITEMS                                                       syscall.Errno = 259\n\tERROR_CANNOT_COPY                                                         syscall.Errno = 266\n\tERROR_DIRECTORY                                                           syscall.Errno = 267\n\tERROR_EAS_DIDNT_FIT                                                       syscall.Errno = 275\n\tERROR_EA_FILE_CORRUPT                                                     syscall.Errno = 276\n\tERROR_EA_TABLE_FULL                                                       syscall.Errno = 277\n\tERROR_INVALID_EA_HANDLE                                                   syscall.Errno = 278\n\tERROR_EAS_NOT_SUPPORTED                                                   syscall.Errno = 282\n\tERROR_NOT_OWNER                                                           syscall.Errno = 288\n\tERROR_TOO_MANY_POSTS                                                      syscall.Errno = 298\n\tERROR_PARTIAL_COPY                                                        syscall.Errno = 299\n\tERROR_OPLOCK_NOT_GRANTED                                                  syscall.Errno = 300\n\tERROR_INVALID_OPLOCK_PROTOCOL                                             syscall.Errno = 301\n\tERROR_DISK_TOO_FRAGMENTED                                                 syscall.Errno = 302\n\tERROR_DELETE_PENDING                                                      syscall.Errno = 303\n\tERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING                syscall.Errno = 304\n\tERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME                                   syscall.Errno = 305\n\tERROR_SECURITY_STREAM_IS_INCONSISTENT                                     syscall.Errno = 306\n\tERROR_INVALID_LOCK_RANGE                                                  syscall.Errno = 307\n\tERROR_IMAGE_SUBSYSTEM_NOT_PRESENT                                         syscall.Errno = 308\n\tERROR_NOTIFICATION_GUID_ALREADY_DEFINED                                   syscall.Errno = 309\n\tERROR_INVALID_EXCEPTION_HANDLER                                           syscall.Errno = 310\n\tERROR_DUPLICATE_PRIVILEGES                                                syscall.Errno = 311\n\tERROR_NO_RANGES_PROCESSED                                                 syscall.Errno = 312\n\tERROR_NOT_ALLOWED_ON_SYSTEM_FILE                                          syscall.Errno = 313\n\tERROR_DISK_RESOURCES_EXHAUSTED                                            syscall.Errno = 314\n\tERROR_INVALID_TOKEN                                                       syscall.Errno = 315\n\tERROR_DEVICE_FEATURE_NOT_SUPPORTED                                        syscall.Errno = 316\n\tERROR_MR_MID_NOT_FOUND                                                    syscall.Errno = 317\n\tERROR_SCOPE_NOT_FOUND                                                     syscall.Errno = 318\n\tERROR_UNDEFINED_SCOPE                                                     syscall.Errno = 319\n\tERROR_INVALID_CAP                                                         syscall.Errno = 320\n\tERROR_DEVICE_UNREACHABLE                                                  syscall.Errno = 321\n\tERROR_DEVICE_NO_RESOURCES                                                 syscall.Errno = 322\n\tERROR_DATA_CHECKSUM_ERROR                                                 syscall.Errno = 323\n\tERROR_INTERMIXED_KERNEL_EA_OPERATION                                      syscall.Errno = 324\n\tERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED                                       syscall.Errno = 326\n\tERROR_OFFSET_ALIGNMENT_VIOLATION                                          syscall.Errno = 327\n\tERROR_INVALID_FIELD_IN_PARAMETER_LIST                                     syscall.Errno = 328\n\tERROR_OPERATION_IN_PROGRESS                                               syscall.Errno = 329\n\tERROR_BAD_DEVICE_PATH                                                     syscall.Errno = 330\n\tERROR_TOO_MANY_DESCRIPTORS                                                syscall.Errno = 331\n\tERROR_SCRUB_DATA_DISABLED                                                 syscall.Errno = 332\n\tERROR_NOT_REDUNDANT_STORAGE                                               syscall.Errno = 333\n\tERROR_RESIDENT_FILE_NOT_SUPPORTED                                         syscall.Errno = 334\n\tERROR_COMPRESSED_FILE_NOT_SUPPORTED                                       syscall.Errno = 335\n\tERROR_DIRECTORY_NOT_SUPPORTED                                             syscall.Errno = 336\n\tERROR_NOT_READ_FROM_COPY                                                  syscall.Errno = 337\n\tERROR_FT_WRITE_FAILURE                                                    syscall.Errno = 338\n\tERROR_FT_DI_SCAN_REQUIRED                                                 syscall.Errno = 339\n\tERROR_INVALID_KERNEL_INFO_VERSION                                         syscall.Errno = 340\n\tERROR_INVALID_PEP_INFO_VERSION                                            syscall.Errno = 341\n\tERROR_OBJECT_NOT_EXTERNALLY_BACKED                                        syscall.Errno = 342\n\tERROR_EXTERNAL_BACKING_PROVIDER_UNKNOWN                                   syscall.Errno = 343\n\tERROR_COMPRESSION_NOT_BENEFICIAL                                          syscall.Errno = 344\n\tERROR_STORAGE_TOPOLOGY_ID_MISMATCH                                        syscall.Errno = 345\n\tERROR_BLOCKED_BY_PARENTAL_CONTROLS                                        syscall.Errno = 346\n\tERROR_BLOCK_TOO_MANY_REFERENCES                                           syscall.Errno = 347\n\tERROR_MARKED_TO_DISALLOW_WRITES                                           syscall.Errno = 348\n\tERROR_ENCLAVE_FAILURE                                                     syscall.Errno = 349\n\tERROR_FAIL_NOACTION_REBOOT                                                syscall.Errno = 350\n\tERROR_FAIL_SHUTDOWN                                                       syscall.Errno = 351\n\tERROR_FAIL_RESTART                                                        syscall.Errno = 352\n\tERROR_MAX_SESSIONS_REACHED                                                syscall.Errno = 353\n\tERROR_NETWORK_ACCESS_DENIED_EDP                                           syscall.Errno = 354\n\tERROR_DEVICE_HINT_NAME_BUFFER_TOO_SMALL                                   syscall.Errno = 355\n\tERROR_EDP_POLICY_DENIES_OPERATION                                         syscall.Errno = 356\n\tERROR_EDP_DPL_POLICY_CANT_BE_SATISFIED                                    syscall.Errno = 357\n\tERROR_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT                               syscall.Errno = 358\n\tERROR_DEVICE_IN_MAINTENANCE                                               syscall.Errno = 359\n\tERROR_NOT_SUPPORTED_ON_DAX                                                syscall.Errno = 360\n\tERROR_DAX_MAPPING_EXISTS                                                  syscall.Errno = 361\n\tERROR_CLOUD_FILE_PROVIDER_NOT_RUNNING                                     syscall.Errno = 362\n\tERROR_CLOUD_FILE_METADATA_CORRUPT                                         syscall.Errno = 363\n\tERROR_CLOUD_FILE_METADATA_TOO_LARGE                                       syscall.Errno = 364\n\tERROR_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE                                  syscall.Errno = 365\n\tERROR_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH                          syscall.Errno = 366\n\tERROR_CHILD_PROCESS_BLOCKED                                               syscall.Errno = 367\n\tERROR_STORAGE_LOST_DATA_PERSISTENCE                                       syscall.Errno = 368\n\tERROR_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE                              syscall.Errno = 369\n\tERROR_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT                         syscall.Errno = 370\n\tERROR_FILE_SYSTEM_VIRTUALIZATION_BUSY                                     syscall.Errno = 371\n\tERROR_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN                         syscall.Errno = 372\n\tERROR_GDI_HANDLE_LEAK                                                     syscall.Errno = 373\n\tERROR_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS                                  syscall.Errno = 374\n\tERROR_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED                           syscall.Errno = 375\n\tERROR_NOT_A_CLOUD_FILE                                                    syscall.Errno = 376\n\tERROR_CLOUD_FILE_NOT_IN_SYNC                                              syscall.Errno = 377\n\tERROR_CLOUD_FILE_ALREADY_CONNECTED                                        syscall.Errno = 378\n\tERROR_CLOUD_FILE_NOT_SUPPORTED                                            syscall.Errno = 379\n\tERROR_CLOUD_FILE_INVALID_REQUEST                                          syscall.Errno = 380\n\tERROR_CLOUD_FILE_READ_ONLY_VOLUME                                         syscall.Errno = 381\n\tERROR_CLOUD_FILE_CONNECTED_PROVIDER_ONLY                                  syscall.Errno = 382\n\tERROR_CLOUD_FILE_VALIDATION_FAILED                                        syscall.Errno = 383\n\tERROR_SMB1_NOT_AVAILABLE                                                  syscall.Errno = 384\n\tERROR_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION                        syscall.Errno = 385\n\tERROR_CLOUD_FILE_AUTHENTICATION_FAILED                                    syscall.Errno = 386\n\tERROR_CLOUD_FILE_INSUFFICIENT_RESOURCES                                   syscall.Errno = 387\n\tERROR_CLOUD_FILE_NETWORK_UNAVAILABLE                                      syscall.Errno = 388\n\tERROR_CLOUD_FILE_UNSUCCESSFUL                                             syscall.Errno = 389\n\tERROR_CLOUD_FILE_NOT_UNDER_SYNC_ROOT                                      syscall.Errno = 390\n\tERROR_CLOUD_FILE_IN_USE                                                   syscall.Errno = 391\n\tERROR_CLOUD_FILE_PINNED                                                   syscall.Errno = 392\n\tERROR_CLOUD_FILE_REQUEST_ABORTED                                          syscall.Errno = 393\n\tERROR_CLOUD_FILE_PROPERTY_CORRUPT                                         syscall.Errno = 394\n\tERROR_CLOUD_FILE_ACCESS_DENIED                                            syscall.Errno = 395\n\tERROR_CLOUD_FILE_INCOMPATIBLE_HARDLINKS                                   syscall.Errno = 396\n\tERROR_CLOUD_FILE_PROPERTY_LOCK_CONFLICT                                   syscall.Errno = 397\n\tERROR_CLOUD_FILE_REQUEST_CANCELED                                         syscall.Errno = 398\n\tERROR_EXTERNAL_SYSKEY_NOT_SUPPORTED                                       syscall.Errno = 399\n\tERROR_THREAD_MODE_ALREADY_BACKGROUND                                      syscall.Errno = 400\n\tERROR_THREAD_MODE_NOT_BACKGROUND                                          syscall.Errno = 401\n\tERROR_PROCESS_MODE_ALREADY_BACKGROUND                                     syscall.Errno = 402\n\tERROR_PROCESS_MODE_NOT_BACKGROUND                                         syscall.Errno = 403\n\tERROR_CLOUD_FILE_PROVIDER_TERMINATED                                      syscall.Errno = 404\n\tERROR_NOT_A_CLOUD_SYNC_ROOT                                               syscall.Errno = 405\n\tERROR_FILE_PROTECTED_UNDER_DPL                                            syscall.Errno = 406\n\tERROR_VOLUME_NOT_CLUSTER_ALIGNED                                          syscall.Errno = 407\n\tERROR_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND                              syscall.Errno = 408\n\tERROR_APPX_FILE_NOT_ENCRYPTED                                             syscall.Errno = 409\n\tERROR_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED                                  syscall.Errno = 410\n\tERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET                        syscall.Errno = 411\n\tERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE                         syscall.Errno = 412\n\tERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER                         syscall.Errno = 413\n\tERROR_LINUX_SUBSYSTEM_NOT_PRESENT                                         syscall.Errno = 414\n\tERROR_FT_READ_FAILURE                                                     syscall.Errno = 415\n\tERROR_STORAGE_RESERVE_ID_INVALID                                          syscall.Errno = 416\n\tERROR_STORAGE_RESERVE_DOES_NOT_EXIST                                      syscall.Errno = 417\n\tERROR_STORAGE_RESERVE_ALREADY_EXISTS                                      syscall.Errno = 418\n\tERROR_STORAGE_RESERVE_NOT_EMPTY                                           syscall.Errno = 419\n\tERROR_NOT_A_DAX_VOLUME                                                    syscall.Errno = 420\n\tERROR_NOT_DAX_MAPPABLE                                                    syscall.Errno = 421\n\tERROR_TIME_CRITICAL_THREAD                                                syscall.Errno = 422\n\tERROR_DPL_NOT_SUPPORTED_FOR_USER                                          syscall.Errno = 423\n\tERROR_CASE_DIFFERING_NAMES_IN_DIR                                         syscall.Errno = 424\n\tERROR_CAPAUTHZ_NOT_DEVUNLOCKED                                            syscall.Errno = 450\n\tERROR_CAPAUTHZ_CHANGE_TYPE                                                syscall.Errno = 451\n\tERROR_CAPAUTHZ_NOT_PROVISIONED                                            syscall.Errno = 452\n\tERROR_CAPAUTHZ_NOT_AUTHORIZED                                             syscall.Errno = 453\n\tERROR_CAPAUTHZ_NO_POLICY                                                  syscall.Errno = 454\n\tERROR_CAPAUTHZ_DB_CORRUPTED                                               syscall.Errno = 455\n\tERROR_CAPAUTHZ_SCCD_INVALID_CATALOG                                       syscall.Errno = 456\n\tERROR_CAPAUTHZ_SCCD_NO_AUTH_ENTITY                                        syscall.Errno = 457\n\tERROR_CAPAUTHZ_SCCD_PARSE_ERROR                                           syscall.Errno = 458\n\tERROR_CAPAUTHZ_SCCD_DEV_MODE_REQUIRED                                     syscall.Errno = 459\n\tERROR_CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH                                   syscall.Errno = 460\n\tERROR_PNP_QUERY_REMOVE_DEVICE_TIMEOUT                                     syscall.Errno = 480\n\tERROR_PNP_QUERY_REMOVE_RELATED_DEVICE_TIMEOUT                             syscall.Errno = 481\n\tERROR_PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT                           syscall.Errno = 482\n\tERROR_DEVICE_HARDWARE_ERROR                                               syscall.Errno = 483\n\tERROR_INVALID_ADDRESS                                                     syscall.Errno = 487\n\tERROR_VRF_CFG_ENABLED                                                     syscall.Errno = 1183\n\tERROR_PARTITION_TERMINATING                                               syscall.Errno = 1184\n\tERROR_USER_PROFILE_LOAD                                                   syscall.Errno = 500\n\tERROR_ARITHMETIC_OVERFLOW                                                 syscall.Errno = 534\n\tERROR_PIPE_CONNECTED                                                      syscall.Errno = 535\n\tERROR_PIPE_LISTENING                                                      syscall.Errno = 536\n\tERROR_VERIFIER_STOP                                                       syscall.Errno = 537\n\tERROR_ABIOS_ERROR                                                         syscall.Errno = 538\n\tERROR_WX86_WARNING                                                        syscall.Errno = 539\n\tERROR_WX86_ERROR                                                          syscall.Errno = 540\n\tERROR_TIMER_NOT_CANCELED                                                  syscall.Errno = 541\n\tERROR_UNWIND                                                              syscall.Errno = 542\n\tERROR_BAD_STACK                                                           syscall.Errno = 543\n\tERROR_INVALID_UNWIND_TARGET                                               syscall.Errno = 544\n\tERROR_INVALID_PORT_ATTRIBUTES                                             syscall.Errno = 545\n\tERROR_PORT_MESSAGE_TOO_LONG                                               syscall.Errno = 546\n\tERROR_INVALID_QUOTA_LOWER                                                 syscall.Errno = 547\n\tERROR_DEVICE_ALREADY_ATTACHED                                             syscall.Errno = 548\n\tERROR_INSTRUCTION_MISALIGNMENT                                            syscall.Errno = 549\n\tERROR_PROFILING_NOT_STARTED                                               syscall.Errno = 550\n\tERROR_PROFILING_NOT_STOPPED                                               syscall.Errno = 551\n\tERROR_COULD_NOT_INTERPRET                                                 syscall.Errno = 552\n\tERROR_PROFILING_AT_LIMIT                                                  syscall.Errno = 553\n\tERROR_CANT_WAIT                                                           syscall.Errno = 554\n\tERROR_CANT_TERMINATE_SELF                                                 syscall.Errno = 555\n\tERROR_UNEXPECTED_MM_CREATE_ERR                                            syscall.Errno = 556\n\tERROR_UNEXPECTED_MM_MAP_ERROR                                             syscall.Errno = 557\n\tERROR_UNEXPECTED_MM_EXTEND_ERR                                            syscall.Errno = 558\n\tERROR_BAD_FUNCTION_TABLE                                                  syscall.Errno = 559\n\tERROR_NO_GUID_TRANSLATION                                                 syscall.Errno = 560\n\tERROR_INVALID_LDT_SIZE                                                    syscall.Errno = 561\n\tERROR_INVALID_LDT_OFFSET                                                  syscall.Errno = 563\n\tERROR_INVALID_LDT_DESCRIPTOR                                              syscall.Errno = 564\n\tERROR_TOO_MANY_THREADS                                                    syscall.Errno = 565\n\tERROR_THREAD_NOT_IN_PROCESS                                               syscall.Errno = 566\n\tERROR_PAGEFILE_QUOTA_EXCEEDED                                             syscall.Errno = 567\n\tERROR_LOGON_SERVER_CONFLICT                                               syscall.Errno = 568\n\tERROR_SYNCHRONIZATION_REQUIRED                                            syscall.Errno = 569\n\tERROR_NET_OPEN_FAILED                                                     syscall.Errno = 570\n\tERROR_IO_PRIVILEGE_FAILED                                                 syscall.Errno = 571\n\tERROR_CONTROL_C_EXIT                                                      syscall.Errno = 572\n\tERROR_MISSING_SYSTEMFILE                                                  syscall.Errno = 573\n\tERROR_UNHANDLED_EXCEPTION                                                 syscall.Errno = 574\n\tERROR_APP_INIT_FAILURE                                                    syscall.Errno = 575\n\tERROR_PAGEFILE_CREATE_FAILED                                              syscall.Errno = 576\n\tERROR_INVALID_IMAGE_HASH                                                  syscall.Errno = 577\n\tERROR_NO_PAGEFILE                                                         syscall.Errno = 578\n\tERROR_ILLEGAL_FLOAT_CONTEXT                                               syscall.Errno = 579\n\tERROR_NO_EVENT_PAIR                                                       syscall.Errno = 580\n\tERROR_DOMAIN_CTRLR_CONFIG_ERROR                                           syscall.Errno = 581\n\tERROR_ILLEGAL_CHARACTER                                                   syscall.Errno = 582\n\tERROR_UNDEFINED_CHARACTER                                                 syscall.Errno = 583\n\tERROR_FLOPPY_VOLUME                                                       syscall.Errno = 584\n\tERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT                                    syscall.Errno = 585\n\tERROR_BACKUP_CONTROLLER                                                   syscall.Errno = 586\n\tERROR_MUTANT_LIMIT_EXCEEDED                                               syscall.Errno = 587\n\tERROR_FS_DRIVER_REQUIRED                                                  syscall.Errno = 588\n\tERROR_CANNOT_LOAD_REGISTRY_FILE                                           syscall.Errno = 589\n\tERROR_DEBUG_ATTACH_FAILED                                                 syscall.Errno = 590\n\tERROR_SYSTEM_PROCESS_TERMINATED                                           syscall.Errno = 591\n\tERROR_DATA_NOT_ACCEPTED                                                   syscall.Errno = 592\n\tERROR_VDM_HARD_ERROR                                                      syscall.Errno = 593\n\tERROR_DRIVER_CANCEL_TIMEOUT                                               syscall.Errno = 594\n\tERROR_REPLY_MESSAGE_MISMATCH                                              syscall.Errno = 595\n\tERROR_LOST_WRITEBEHIND_DATA                                               syscall.Errno = 596\n\tERROR_CLIENT_SERVER_PARAMETERS_INVALID                                    syscall.Errno = 597\n\tERROR_NOT_TINY_STREAM                                                     syscall.Errno = 598\n\tERROR_STACK_OVERFLOW_READ                                                 syscall.Errno = 599\n\tERROR_CONVERT_TO_LARGE                                                    syscall.Errno = 600\n\tERROR_FOUND_OUT_OF_SCOPE                                                  syscall.Errno = 601\n\tERROR_ALLOCATE_BUCKET                                                     syscall.Errno = 602\n\tERROR_MARSHALL_OVERFLOW                                                   syscall.Errno = 603\n\tERROR_INVALID_VARIANT                                                     syscall.Errno = 604\n\tERROR_BAD_COMPRESSION_BUFFER                                              syscall.Errno = 605\n\tERROR_AUDIT_FAILED                                                        syscall.Errno = 606\n\tERROR_TIMER_RESOLUTION_NOT_SET                                            syscall.Errno = 607\n\tERROR_INSUFFICIENT_LOGON_INFO                                             syscall.Errno = 608\n\tERROR_BAD_DLL_ENTRYPOINT                                                  syscall.Errno = 609\n\tERROR_BAD_SERVICE_ENTRYPOINT                                              syscall.Errno = 610\n\tERROR_IP_ADDRESS_CONFLICT1                                                syscall.Errno = 611\n\tERROR_IP_ADDRESS_CONFLICT2                                                syscall.Errno = 612\n\tERROR_REGISTRY_QUOTA_LIMIT                                                syscall.Errno = 613\n\tERROR_NO_CALLBACK_ACTIVE                                                  syscall.Errno = 614\n\tERROR_PWD_TOO_SHORT                                                       syscall.Errno = 615\n\tERROR_PWD_TOO_RECENT                                                      syscall.Errno = 616\n\tERROR_PWD_HISTORY_CONFLICT                                                syscall.Errno = 617\n\tERROR_UNSUPPORTED_COMPRESSION                                             syscall.Errno = 618\n\tERROR_INVALID_HW_PROFILE                                                  syscall.Errno = 619\n\tERROR_INVALID_PLUGPLAY_DEVICE_PATH                                        syscall.Errno = 620\n\tERROR_QUOTA_LIST_INCONSISTENT                                             syscall.Errno = 621\n\tERROR_EVALUATION_EXPIRATION                                               syscall.Errno = 622\n\tERROR_ILLEGAL_DLL_RELOCATION                                              syscall.Errno = 623\n\tERROR_DLL_INIT_FAILED_LOGOFF                                              syscall.Errno = 624\n\tERROR_VALIDATE_CONTINUE                                                   syscall.Errno = 625\n\tERROR_NO_MORE_MATCHES                                                     syscall.Errno = 626\n\tERROR_RANGE_LIST_CONFLICT                                                 syscall.Errno = 627\n\tERROR_SERVER_SID_MISMATCH                                                 syscall.Errno = 628\n\tERROR_CANT_ENABLE_DENY_ONLY                                               syscall.Errno = 629\n\tERROR_FLOAT_MULTIPLE_FAULTS                                               syscall.Errno = 630\n\tERROR_FLOAT_MULTIPLE_TRAPS                                                syscall.Errno = 631\n\tERROR_NOINTERFACE                                                         syscall.Errno = 632\n\tERROR_DRIVER_FAILED_SLEEP                                                 syscall.Errno = 633\n\tERROR_CORRUPT_SYSTEM_FILE                                                 syscall.Errno = 634\n\tERROR_COMMITMENT_MINIMUM                                                  syscall.Errno = 635\n\tERROR_PNP_RESTART_ENUMERATION                                             syscall.Errno = 636\n\tERROR_SYSTEM_IMAGE_BAD_SIGNATURE                                          syscall.Errno = 637\n\tERROR_PNP_REBOOT_REQUIRED                                                 syscall.Errno = 638\n\tERROR_INSUFFICIENT_POWER                                                  syscall.Errno = 639\n\tERROR_MULTIPLE_FAULT_VIOLATION                                            syscall.Errno = 640\n\tERROR_SYSTEM_SHUTDOWN                                                     syscall.Errno = 641\n\tERROR_PORT_NOT_SET                                                        syscall.Errno = 642\n\tERROR_DS_VERSION_CHECK_FAILURE                                            syscall.Errno = 643\n\tERROR_RANGE_NOT_FOUND                                                     syscall.Errno = 644\n\tERROR_NOT_SAFE_MODE_DRIVER                                                syscall.Errno = 646\n\tERROR_FAILED_DRIVER_ENTRY                                                 syscall.Errno = 647\n\tERROR_DEVICE_ENUMERATION_ERROR                                            syscall.Errno = 648\n\tERROR_MOUNT_POINT_NOT_RESOLVED                                            syscall.Errno = 649\n\tERROR_INVALID_DEVICE_OBJECT_PARAMETER                                     syscall.Errno = 650\n\tERROR_MCA_OCCURED                                                         syscall.Errno = 651\n\tERROR_DRIVER_DATABASE_ERROR                                               syscall.Errno = 652\n\tERROR_SYSTEM_HIVE_TOO_LARGE                                               syscall.Errno = 653\n\tERROR_DRIVER_FAILED_PRIOR_UNLOAD                                          syscall.Errno = 654\n\tERROR_VOLSNAP_PREPARE_HIBERNATE                                           syscall.Errno = 655\n\tERROR_HIBERNATION_FAILURE                                                 syscall.Errno = 656\n\tERROR_PWD_TOO_LONG                                                        syscall.Errno = 657\n\tERROR_FILE_SYSTEM_LIMITATION                                              syscall.Errno = 665\n\tERROR_ASSERTION_FAILURE                                                   syscall.Errno = 668\n\tERROR_ACPI_ERROR                                                          syscall.Errno = 669\n\tERROR_WOW_ASSERTION                                                       syscall.Errno = 670\n\tERROR_PNP_BAD_MPS_TABLE                                                   syscall.Errno = 671\n\tERROR_PNP_TRANSLATION_FAILED                                              syscall.Errno = 672\n\tERROR_PNP_IRQ_TRANSLATION_FAILED                                          syscall.Errno = 673\n\tERROR_PNP_INVALID_ID                                                      syscall.Errno = 674\n\tERROR_WAKE_SYSTEM_DEBUGGER                                                syscall.Errno = 675\n\tERROR_HANDLES_CLOSED                                                      syscall.Errno = 676\n\tERROR_EXTRANEOUS_INFORMATION                                              syscall.Errno = 677\n\tERROR_RXACT_COMMIT_NECESSARY                                              syscall.Errno = 678\n\tERROR_MEDIA_CHECK                                                         syscall.Errno = 679\n\tERROR_GUID_SUBSTITUTION_MADE                                              syscall.Errno = 680\n\tERROR_STOPPED_ON_SYMLINK                                                  syscall.Errno = 681\n\tERROR_LONGJUMP                                                            syscall.Errno = 682\n\tERROR_PLUGPLAY_QUERY_VETOED                                               syscall.Errno = 683\n\tERROR_UNWIND_CONSOLIDATE                                                  syscall.Errno = 684\n\tERROR_REGISTRY_HIVE_RECOVERED                                             syscall.Errno = 685\n\tERROR_DLL_MIGHT_BE_INSECURE                                               syscall.Errno = 686\n\tERROR_DLL_MIGHT_BE_INCOMPATIBLE                                           syscall.Errno = 687\n\tERROR_DBG_EXCEPTION_NOT_HANDLED                                           syscall.Errno = 688\n\tERROR_DBG_REPLY_LATER                                                     syscall.Errno = 689\n\tERROR_DBG_UNABLE_TO_PROVIDE_HANDLE                                        syscall.Errno = 690\n\tERROR_DBG_TERMINATE_THREAD                                                syscall.Errno = 691\n\tERROR_DBG_TERMINATE_PROCESS                                               syscall.Errno = 692\n\tERROR_DBG_CONTROL_C                                                       syscall.Errno = 693\n\tERROR_DBG_PRINTEXCEPTION_C                                                syscall.Errno = 694\n\tERROR_DBG_RIPEXCEPTION                                                    syscall.Errno = 695\n\tERROR_DBG_CONTROL_BREAK                                                   syscall.Errno = 696\n\tERROR_DBG_COMMAND_EXCEPTION                                               syscall.Errno = 697\n\tERROR_OBJECT_NAME_EXISTS                                                  syscall.Errno = 698\n\tERROR_THREAD_WAS_SUSPENDED                                                syscall.Errno = 699\n\tERROR_IMAGE_NOT_AT_BASE                                                   syscall.Errno = 700\n\tERROR_RXACT_STATE_CREATED                                                 syscall.Errno = 701\n\tERROR_SEGMENT_NOTIFICATION                                                syscall.Errno = 702\n\tERROR_BAD_CURRENT_DIRECTORY                                               syscall.Errno = 703\n\tERROR_FT_READ_RECOVERY_FROM_BACKUP                                        syscall.Errno = 704\n\tERROR_FT_WRITE_RECOVERY                                                   syscall.Errno = 705\n\tERROR_IMAGE_MACHINE_TYPE_MISMATCH                                         syscall.Errno = 706\n\tERROR_RECEIVE_PARTIAL                                                     syscall.Errno = 707\n\tERROR_RECEIVE_EXPEDITED                                                   syscall.Errno = 708\n\tERROR_RECEIVE_PARTIAL_EXPEDITED                                           syscall.Errno = 709\n\tERROR_EVENT_DONE                                                          syscall.Errno = 710\n\tERROR_EVENT_PENDING                                                       syscall.Errno = 711\n\tERROR_CHECKING_FILE_SYSTEM                                                syscall.Errno = 712\n\tERROR_FATAL_APP_EXIT                                                      syscall.Errno = 713\n\tERROR_PREDEFINED_HANDLE                                                   syscall.Errno = 714\n\tERROR_WAS_UNLOCKED                                                        syscall.Errno = 715\n\tERROR_SERVICE_NOTIFICATION                                                syscall.Errno = 716\n\tERROR_WAS_LOCKED                                                          syscall.Errno = 717\n\tERROR_LOG_HARD_ERROR                                                      syscall.Errno = 718\n\tERROR_ALREADY_WIN32                                                       syscall.Errno = 719\n\tERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE                                     syscall.Errno = 720\n\tERROR_NO_YIELD_PERFORMED                                                  syscall.Errno = 721\n\tERROR_TIMER_RESUME_IGNORED                                                syscall.Errno = 722\n\tERROR_ARBITRATION_UNHANDLED                                               syscall.Errno = 723\n\tERROR_CARDBUS_NOT_SUPPORTED                                               syscall.Errno = 724\n\tERROR_MP_PROCESSOR_MISMATCH                                               syscall.Errno = 725\n\tERROR_HIBERNATED                                                          syscall.Errno = 726\n\tERROR_RESUME_HIBERNATION                                                  syscall.Errno = 727\n\tERROR_FIRMWARE_UPDATED                                                    syscall.Errno = 728\n\tERROR_DRIVERS_LEAKING_LOCKED_PAGES                                        syscall.Errno = 729\n\tERROR_WAKE_SYSTEM                                                         syscall.Errno = 730\n\tERROR_WAIT_1                                                              syscall.Errno = 731\n\tERROR_WAIT_2                                                              syscall.Errno = 732\n\tERROR_WAIT_3                                                              syscall.Errno = 733\n\tERROR_WAIT_63                                                             syscall.Errno = 734\n\tERROR_ABANDONED_WAIT_0                                                    syscall.Errno = 735\n\tERROR_ABANDONED_WAIT_63                                                   syscall.Errno = 736\n\tERROR_USER_APC                                                            syscall.Errno = 737\n\tERROR_KERNEL_APC                                                          syscall.Errno = 738\n\tERROR_ALERTED                                                             syscall.Errno = 739\n\tERROR_ELEVATION_REQUIRED                                                  syscall.Errno = 740\n\tERROR_REPARSE                                                             syscall.Errno = 741\n\tERROR_OPLOCK_BREAK_IN_PROGRESS                                            syscall.Errno = 742\n\tERROR_VOLUME_MOUNTED                                                      syscall.Errno = 743\n\tERROR_RXACT_COMMITTED                                                     syscall.Errno = 744\n\tERROR_NOTIFY_CLEANUP                                                      syscall.Errno = 745\n\tERROR_PRIMARY_TRANSPORT_CONNECT_FAILED                                    syscall.Errno = 746\n\tERROR_PAGE_FAULT_TRANSITION                                               syscall.Errno = 747\n\tERROR_PAGE_FAULT_DEMAND_ZERO                                              syscall.Errno = 748\n\tERROR_PAGE_FAULT_COPY_ON_WRITE                                            syscall.Errno = 749\n\tERROR_PAGE_FAULT_GUARD_PAGE                                               syscall.Errno = 750\n\tERROR_PAGE_FAULT_PAGING_FILE                                              syscall.Errno = 751\n\tERROR_CACHE_PAGE_LOCKED                                                   syscall.Errno = 752\n\tERROR_CRASH_DUMP                                                          syscall.Errno = 753\n\tERROR_BUFFER_ALL_ZEROS                                                    syscall.Errno = 754\n\tERROR_REPARSE_OBJECT                                                      syscall.Errno = 755\n\tERROR_RESOURCE_REQUIREMENTS_CHANGED                                       syscall.Errno = 756\n\tERROR_TRANSLATION_COMPLETE                                                syscall.Errno = 757\n\tERROR_NOTHING_TO_TERMINATE                                                syscall.Errno = 758\n\tERROR_PROCESS_NOT_IN_JOB                                                  syscall.Errno = 759\n\tERROR_PROCESS_IN_JOB                                                      syscall.Errno = 760\n\tERROR_VOLSNAP_HIBERNATE_READY                                             syscall.Errno = 761\n\tERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY                                  syscall.Errno = 762\n\tERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED                                  syscall.Errno = 763\n\tERROR_INTERRUPT_STILL_CONNECTED                                           syscall.Errno = 764\n\tERROR_WAIT_FOR_OPLOCK                                                     syscall.Errno = 765\n\tERROR_DBG_EXCEPTION_HANDLED                                               syscall.Errno = 766\n\tERROR_DBG_CONTINUE                                                        syscall.Errno = 767\n\tERROR_CALLBACK_POP_STACK                                                  syscall.Errno = 768\n\tERROR_COMPRESSION_DISABLED                                                syscall.Errno = 769\n\tERROR_CANTFETCHBACKWARDS                                                  syscall.Errno = 770\n\tERROR_CANTSCROLLBACKWARDS                                                 syscall.Errno = 771\n\tERROR_ROWSNOTRELEASED                                                     syscall.Errno = 772\n\tERROR_BAD_ACCESSOR_FLAGS                                                  syscall.Errno = 773\n\tERROR_ERRORS_ENCOUNTERED                                                  syscall.Errno = 774\n\tERROR_NOT_CAPABLE                                                         syscall.Errno = 775\n\tERROR_REQUEST_OUT_OF_SEQUENCE                                             syscall.Errno = 776\n\tERROR_VERSION_PARSE_ERROR                                                 syscall.Errno = 777\n\tERROR_BADSTARTPOSITION                                                    syscall.Errno = 778\n\tERROR_MEMORY_HARDWARE                                                     syscall.Errno = 779\n\tERROR_DISK_REPAIR_DISABLED                                                syscall.Errno = 780\n\tERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE             syscall.Errno = 781\n\tERROR_SYSTEM_POWERSTATE_TRANSITION                                        syscall.Errno = 782\n\tERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION                                syscall.Errno = 783\n\tERROR_MCA_EXCEPTION                                                       syscall.Errno = 784\n\tERROR_ACCESS_AUDIT_BY_POLICY                                              syscall.Errno = 785\n\tERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY                               syscall.Errno = 786\n\tERROR_ABANDON_HIBERFILE                                                   syscall.Errno = 787\n\tERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED                          syscall.Errno = 788\n\tERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR                          syscall.Errno = 789\n\tERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR                              syscall.Errno = 790\n\tERROR_BAD_MCFG_TABLE                                                      syscall.Errno = 791\n\tERROR_DISK_REPAIR_REDIRECTED                                              syscall.Errno = 792\n\tERROR_DISK_REPAIR_UNSUCCESSFUL                                            syscall.Errno = 793\n\tERROR_CORRUPT_LOG_OVERFULL                                                syscall.Errno = 794\n\tERROR_CORRUPT_LOG_CORRUPTED                                               syscall.Errno = 795\n\tERROR_CORRUPT_LOG_UNAVAILABLE                                             syscall.Errno = 796\n\tERROR_CORRUPT_LOG_DELETED_FULL                                            syscall.Errno = 797\n\tERROR_CORRUPT_LOG_CLEARED                                                 syscall.Errno = 798\n\tERROR_ORPHAN_NAME_EXHAUSTED                                               syscall.Errno = 799\n\tERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE                                       syscall.Errno = 800\n\tERROR_CANNOT_GRANT_REQUESTED_OPLOCK                                       syscall.Errno = 801\n\tERROR_CANNOT_BREAK_OPLOCK                                                 syscall.Errno = 802\n\tERROR_OPLOCK_HANDLE_CLOSED                                                syscall.Errno = 803\n\tERROR_NO_ACE_CONDITION                                                    syscall.Errno = 804\n\tERROR_INVALID_ACE_CONDITION                                               syscall.Errno = 805\n\tERROR_FILE_HANDLE_REVOKED                                                 syscall.Errno = 806\n\tERROR_IMAGE_AT_DIFFERENT_BASE                                             syscall.Errno = 807\n\tERROR_ENCRYPTED_IO_NOT_POSSIBLE                                           syscall.Errno = 808\n\tERROR_FILE_METADATA_OPTIMIZATION_IN_PROGRESS                              syscall.Errno = 809\n\tERROR_QUOTA_ACTIVITY                                                      syscall.Errno = 810\n\tERROR_HANDLE_REVOKED                                                      syscall.Errno = 811\n\tERROR_CALLBACK_INVOKE_INLINE                                              syscall.Errno = 812\n\tERROR_CPU_SET_INVALID                                                     syscall.Errno = 813\n\tERROR_ENCLAVE_NOT_TERMINATED                                              syscall.Errno = 814\n\tERROR_ENCLAVE_VIOLATION                                                   syscall.Errno = 815\n\tERROR_EA_ACCESS_DENIED                                                    syscall.Errno = 994\n\tERROR_OPERATION_ABORTED                                                   syscall.Errno = 995\n\tERROR_IO_INCOMPLETE                                                       syscall.Errno = 996\n\tERROR_IO_PENDING                                                          syscall.Errno = 997\n\tERROR_NOACCESS                                                            syscall.Errno = 998\n\tERROR_SWAPERROR                                                           syscall.Errno = 999\n\tERROR_STACK_OVERFLOW                                                      syscall.Errno = 1001\n\tERROR_INVALID_MESSAGE                                                     syscall.Errno = 1002\n\tERROR_CAN_NOT_COMPLETE                                                    syscall.Errno = 1003\n\tERROR_INVALID_FLAGS                                                       syscall.Errno = 1004\n\tERROR_UNRECOGNIZED_VOLUME                                                 syscall.Errno = 1005\n\tERROR_FILE_INVALID                                                        syscall.Errno = 1006\n\tERROR_FULLSCREEN_MODE                                                     syscall.Errno = 1007\n\tERROR_NO_TOKEN                                                            syscall.Errno = 1008\n\tERROR_BADDB                                                               syscall.Errno = 1009\n\tERROR_BADKEY                                                              syscall.Errno = 1010\n\tERROR_CANTOPEN                                                            syscall.Errno = 1011\n\tERROR_CANTREAD                                                            syscall.Errno = 1012\n\tERROR_CANTWRITE                                                           syscall.Errno = 1013\n\tERROR_REGISTRY_RECOVERED                                                  syscall.Errno = 1014\n\tERROR_REGISTRY_CORRUPT                                                    syscall.Errno = 1015\n\tERROR_REGISTRY_IO_FAILED                                                  syscall.Errno = 1016\n\tERROR_NOT_REGISTRY_FILE                                                   syscall.Errno = 1017\n\tERROR_KEY_DELETED                                                         syscall.Errno = 1018\n\tERROR_NO_LOG_SPACE                                                        syscall.Errno = 1019\n\tERROR_KEY_HAS_CHILDREN                                                    syscall.Errno = 1020\n\tERROR_CHILD_MUST_BE_VOLATILE                                              syscall.Errno = 1021\n\tERROR_NOTIFY_ENUM_DIR                                                     syscall.Errno = 1022\n\tERROR_DEPENDENT_SERVICES_RUNNING                                          syscall.Errno = 1051\n\tERROR_INVALID_SERVICE_CONTROL                                             syscall.Errno = 1052\n\tERROR_SERVICE_REQUEST_TIMEOUT                                             syscall.Errno = 1053\n\tERROR_SERVICE_NO_THREAD                                                   syscall.Errno = 1054\n\tERROR_SERVICE_DATABASE_LOCKED                                             syscall.Errno = 1055\n\tERROR_SERVICE_ALREADY_RUNNING                                             syscall.Errno = 1056\n\tERROR_INVALID_SERVICE_ACCOUNT                                             syscall.Errno = 1057\n\tERROR_SERVICE_DISABLED                                                    syscall.Errno = 1058\n\tERROR_CIRCULAR_DEPENDENCY                                                 syscall.Errno = 1059\n\tERROR_SERVICE_DOES_NOT_EXIST                                              syscall.Errno = 1060\n\tERROR_SERVICE_CANNOT_ACCEPT_CTRL                                          syscall.Errno = 1061\n\tERROR_SERVICE_NOT_ACTIVE                                                  syscall.Errno = 1062\n\tERROR_FAILED_SERVICE_CONTROLLER_CONNECT                                   syscall.Errno = 1063\n\tERROR_EXCEPTION_IN_SERVICE                                                syscall.Errno = 1064\n\tERROR_DATABASE_DOES_NOT_EXIST                                             syscall.Errno = 1065\n\tERROR_SERVICE_SPECIFIC_ERROR                                              syscall.Errno = 1066\n\tERROR_PROCESS_ABORTED                                                     syscall.Errno = 1067\n\tERROR_SERVICE_DEPENDENCY_FAIL                                             syscall.Errno = 1068\n\tERROR_SERVICE_LOGON_FAILED                                                syscall.Errno = 1069\n\tERROR_SERVICE_START_HANG                                                  syscall.Errno = 1070\n\tERROR_INVALID_SERVICE_LOCK                                                syscall.Errno = 1071\n\tERROR_SERVICE_MARKED_FOR_DELETE                                           syscall.Errno = 1072\n\tERROR_SERVICE_EXISTS                                                      syscall.Errno = 1073\n\tERROR_ALREADY_RUNNING_LKG                                                 syscall.Errno = 1074\n\tERROR_SERVICE_DEPENDENCY_DELETED                                          syscall.Errno = 1075\n\tERROR_BOOT_ALREADY_ACCEPTED                                               syscall.Errno = 1076\n\tERROR_SERVICE_NEVER_STARTED                                               syscall.Errno = 1077\n\tERROR_DUPLICATE_SERVICE_NAME                                              syscall.Errno = 1078\n\tERROR_DIFFERENT_SERVICE_ACCOUNT                                           syscall.Errno = 1079\n\tERROR_CANNOT_DETECT_DRIVER_FAILURE                                        syscall.Errno = 1080\n\tERROR_CANNOT_DETECT_PROCESS_ABORT                                         syscall.Errno = 1081\n\tERROR_NO_RECOVERY_PROGRAM                                                 syscall.Errno = 1082\n\tERROR_SERVICE_NOT_IN_EXE                                                  syscall.Errno = 1083\n\tERROR_NOT_SAFEBOOT_SERVICE                                                syscall.Errno = 1084\n\tERROR_END_OF_MEDIA                                                        syscall.Errno = 1100\n\tERROR_FILEMARK_DETECTED                                                   syscall.Errno = 1101\n\tERROR_BEGINNING_OF_MEDIA                                                  syscall.Errno = 1102\n\tERROR_SETMARK_DETECTED                                                    syscall.Errno = 1103\n\tERROR_NO_DATA_DETECTED                                                    syscall.Errno = 1104\n\tERROR_PARTITION_FAILURE                                                   syscall.Errno = 1105\n\tERROR_INVALID_BLOCK_LENGTH                                                syscall.Errno = 1106\n\tERROR_DEVICE_NOT_PARTITIONED                                              syscall.Errno = 1107\n\tERROR_UNABLE_TO_LOCK_MEDIA                                                syscall.Errno = 1108\n\tERROR_UNABLE_TO_UNLOAD_MEDIA                                              syscall.Errno = 1109\n\tERROR_MEDIA_CHANGED                                                       syscall.Errno = 1110\n\tERROR_BUS_RESET                                                           syscall.Errno = 1111\n\tERROR_NO_MEDIA_IN_DRIVE                                                   syscall.Errno = 1112\n\tERROR_NO_UNICODE_TRANSLATION                                              syscall.Errno = 1113\n\tERROR_DLL_INIT_FAILED                                                     syscall.Errno = 1114\n\tERROR_SHUTDOWN_IN_PROGRESS                                                syscall.Errno = 1115\n\tERROR_NO_SHUTDOWN_IN_PROGRESS                                             syscall.Errno = 1116\n\tERROR_IO_DEVICE                                                           syscall.Errno = 1117\n\tERROR_SERIAL_NO_DEVICE                                                    syscall.Errno = 1118\n\tERROR_IRQ_BUSY                                                            syscall.Errno = 1119\n\tERROR_MORE_WRITES                                                         syscall.Errno = 1120\n\tERROR_COUNTER_TIMEOUT                                                     syscall.Errno = 1121\n\tERROR_FLOPPY_ID_MARK_NOT_FOUND                                            syscall.Errno = 1122\n\tERROR_FLOPPY_WRONG_CYLINDER                                               syscall.Errno = 1123\n\tERROR_FLOPPY_UNKNOWN_ERROR                                                syscall.Errno = 1124\n\tERROR_FLOPPY_BAD_REGISTERS                                                syscall.Errno = 1125\n\tERROR_DISK_RECALIBRATE_FAILED                                             syscall.Errno = 1126\n\tERROR_DISK_OPERATION_FAILED                                               syscall.Errno = 1127\n\tERROR_DISK_RESET_FAILED                                                   syscall.Errno = 1128\n\tERROR_EOM_OVERFLOW                                                        syscall.Errno = 1129\n\tERROR_NOT_ENOUGH_SERVER_MEMORY                                            syscall.Errno = 1130\n\tERROR_POSSIBLE_DEADLOCK                                                   syscall.Errno = 1131\n\tERROR_MAPPED_ALIGNMENT                                                    syscall.Errno = 1132\n\tERROR_SET_POWER_STATE_VETOED                                              syscall.Errno = 1140\n\tERROR_SET_POWER_STATE_FAILED                                              syscall.Errno = 1141\n\tERROR_TOO_MANY_LINKS                                                      syscall.Errno = 1142\n\tERROR_OLD_WIN_VERSION                                                     syscall.Errno = 1150\n\tERROR_APP_WRONG_OS                                                        syscall.Errno = 1151\n\tERROR_SINGLE_INSTANCE_APP                                                 syscall.Errno = 1152\n\tERROR_RMODE_APP                                                           syscall.Errno = 1153\n\tERROR_INVALID_DLL                                                         syscall.Errno = 1154\n\tERROR_NO_ASSOCIATION                                                      syscall.Errno = 1155\n\tERROR_DDE_FAIL                                                            syscall.Errno = 1156\n\tERROR_DLL_NOT_FOUND                                                       syscall.Errno = 1157\n\tERROR_NO_MORE_USER_HANDLES                                                syscall.Errno = 1158\n\tERROR_MESSAGE_SYNC_ONLY                                                   syscall.Errno = 1159\n\tERROR_SOURCE_ELEMENT_EMPTY                                                syscall.Errno = 1160\n\tERROR_DESTINATION_ELEMENT_FULL                                            syscall.Errno = 1161\n\tERROR_ILLEGAL_ELEMENT_ADDRESS                                             syscall.Errno = 1162\n\tERROR_MAGAZINE_NOT_PRESENT                                                syscall.Errno = 1163\n\tERROR_DEVICE_REINITIALIZATION_NEEDED                                      syscall.Errno = 1164\n\tERROR_DEVICE_REQUIRES_CLEANING                                            syscall.Errno = 1165\n\tERROR_DEVICE_DOOR_OPEN                                                    syscall.Errno = 1166\n\tERROR_DEVICE_NOT_CONNECTED                                                syscall.Errno = 1167\n\tERROR_NOT_FOUND                                                           syscall.Errno = 1168\n\tERROR_NO_MATCH                                                            syscall.Errno = 1169\n\tERROR_SET_NOT_FOUND                                                       syscall.Errno = 1170\n\tERROR_POINT_NOT_FOUND                                                     syscall.Errno = 1171\n\tERROR_NO_TRACKING_SERVICE                                                 syscall.Errno = 1172\n\tERROR_NO_VOLUME_ID                                                        syscall.Errno = 1173\n\tERROR_UNABLE_TO_REMOVE_REPLACED                                           syscall.Errno = 1175\n\tERROR_UNABLE_TO_MOVE_REPLACEMENT                                          syscall.Errno = 1176\n\tERROR_UNABLE_TO_MOVE_REPLACEMENT_2                                        syscall.Errno = 1177\n\tERROR_JOURNAL_DELETE_IN_PROGRESS                                          syscall.Errno = 1178\n\tERROR_JOURNAL_NOT_ACTIVE                                                  syscall.Errno = 1179\n\tERROR_POTENTIAL_FILE_FOUND                                                syscall.Errno = 1180\n\tERROR_JOURNAL_ENTRY_DELETED                                               syscall.Errno = 1181\n\tERROR_SHUTDOWN_IS_SCHEDULED                                               syscall.Errno = 1190\n\tERROR_SHUTDOWN_USERS_LOGGED_ON                                            syscall.Errno = 1191\n\tERROR_BAD_DEVICE                                                          syscall.Errno = 1200\n\tERROR_CONNECTION_UNAVAIL                                                  syscall.Errno = 1201\n\tERROR_DEVICE_ALREADY_REMEMBERED                                           syscall.Errno = 1202\n\tERROR_NO_NET_OR_BAD_PATH                                                  syscall.Errno = 1203\n\tERROR_BAD_PROVIDER                                                        syscall.Errno = 1204\n\tERROR_CANNOT_OPEN_PROFILE                                                 syscall.Errno = 1205\n\tERROR_BAD_PROFILE                                                         syscall.Errno = 1206\n\tERROR_NOT_CONTAINER                                                       syscall.Errno = 1207\n\tERROR_EXTENDED_ERROR                                                      syscall.Errno = 1208\n\tERROR_INVALID_GROUPNAME                                                   syscall.Errno = 1209\n\tERROR_INVALID_COMPUTERNAME                                                syscall.Errno = 1210\n\tERROR_INVALID_EVENTNAME                                                   syscall.Errno = 1211\n\tERROR_INVALID_DOMAINNAME                                                  syscall.Errno = 1212\n\tERROR_INVALID_SERVICENAME                                                 syscall.Errno = 1213\n\tERROR_INVALID_NETNAME                                                     syscall.Errno = 1214\n\tERROR_INVALID_SHARENAME                                                   syscall.Errno = 1215\n\tERROR_INVALID_PASSWORDNAME                                                syscall.Errno = 1216\n\tERROR_INVALID_MESSAGENAME                                                 syscall.Errno = 1217\n\tERROR_INVALID_MESSAGEDEST                                                 syscall.Errno = 1218\n\tERROR_SESSION_CREDENTIAL_CONFLICT                                         syscall.Errno = 1219\n\tERROR_REMOTE_SESSION_LIMIT_EXCEEDED                                       syscall.Errno = 1220\n\tERROR_DUP_DOMAINNAME                                                      syscall.Errno = 1221\n\tERROR_NO_NETWORK                                                          syscall.Errno = 1222\n\tERROR_CANCELLED                                                           syscall.Errno = 1223\n\tERROR_USER_MAPPED_FILE                                                    syscall.Errno = 1224\n\tERROR_CONNECTION_REFUSED                                                  syscall.Errno = 1225\n\tERROR_GRACEFUL_DISCONNECT                                                 syscall.Errno = 1226\n\tERROR_ADDRESS_ALREADY_ASSOCIATED                                          syscall.Errno = 1227\n\tERROR_ADDRESS_NOT_ASSOCIATED                                              syscall.Errno = 1228\n\tERROR_CONNECTION_INVALID                                                  syscall.Errno = 1229\n\tERROR_CONNECTION_ACTIVE                                                   syscall.Errno = 1230\n\tERROR_NETWORK_UNREACHABLE                                                 syscall.Errno = 1231\n\tERROR_HOST_UNREACHABLE                                                    syscall.Errno = 1232\n\tERROR_PROTOCOL_UNREACHABLE                                                syscall.Errno = 1233\n\tERROR_PORT_UNREACHABLE                                                    syscall.Errno = 1234\n\tERROR_REQUEST_ABORTED                                                     syscall.Errno = 1235\n\tERROR_CONNECTION_ABORTED                                                  syscall.Errno = 1236\n\tERROR_RETRY                                                               syscall.Errno = 1237\n\tERROR_CONNECTION_COUNT_LIMIT                                              syscall.Errno = 1238\n\tERROR_LOGIN_TIME_RESTRICTION                                              syscall.Errno = 1239\n\tERROR_LOGIN_WKSTA_RESTRICTION                                             syscall.Errno = 1240\n\tERROR_INCORRECT_ADDRESS                                                   syscall.Errno = 1241\n\tERROR_ALREADY_REGISTERED                                                  syscall.Errno = 1242\n\tERROR_SERVICE_NOT_FOUND                                                   syscall.Errno = 1243\n\tERROR_NOT_AUTHENTICATED                                                   syscall.Errno = 1244\n\tERROR_NOT_LOGGED_ON                                                       syscall.Errno = 1245\n\tERROR_CONTINUE                                                            syscall.Errno = 1246\n\tERROR_ALREADY_INITIALIZED                                                 syscall.Errno = 1247\n\tERROR_NO_MORE_DEVICES                                                     syscall.Errno = 1248\n\tERROR_NO_SUCH_SITE                                                        syscall.Errno = 1249\n\tERROR_DOMAIN_CONTROLLER_EXISTS                                            syscall.Errno = 1250\n\tERROR_ONLY_IF_CONNECTED                                                   syscall.Errno = 1251\n\tERROR_OVERRIDE_NOCHANGES                                                  syscall.Errno = 1252\n\tERROR_BAD_USER_PROFILE                                                    syscall.Errno = 1253\n\tERROR_NOT_SUPPORTED_ON_SBS                                                syscall.Errno = 1254\n\tERROR_SERVER_SHUTDOWN_IN_PROGRESS                                         syscall.Errno = 1255\n\tERROR_HOST_DOWN                                                           syscall.Errno = 1256\n\tERROR_NON_ACCOUNT_SID                                                     syscall.Errno = 1257\n\tERROR_NON_DOMAIN_SID                                                      syscall.Errno = 1258\n\tERROR_APPHELP_BLOCK                                                       syscall.Errno = 1259\n\tERROR_ACCESS_DISABLED_BY_POLICY                                           syscall.Errno = 1260\n\tERROR_REG_NAT_CONSUMPTION                                                 syscall.Errno = 1261\n\tERROR_CSCSHARE_OFFLINE                                                    syscall.Errno = 1262\n\tERROR_PKINIT_FAILURE                                                      syscall.Errno = 1263\n\tERROR_SMARTCARD_SUBSYSTEM_FAILURE                                         syscall.Errno = 1264\n\tERROR_DOWNGRADE_DETECTED                                                  syscall.Errno = 1265\n\tERROR_MACHINE_LOCKED                                                      syscall.Errno = 1271\n\tERROR_SMB_GUEST_LOGON_BLOCKED                                             syscall.Errno = 1272\n\tERROR_CALLBACK_SUPPLIED_INVALID_DATA                                      syscall.Errno = 1273\n\tERROR_SYNC_FOREGROUND_REFRESH_REQUIRED                                    syscall.Errno = 1274\n\tERROR_DRIVER_BLOCKED                                                      syscall.Errno = 1275\n\tERROR_INVALID_IMPORT_OF_NON_DLL                                           syscall.Errno = 1276\n\tERROR_ACCESS_DISABLED_WEBBLADE                                            syscall.Errno = 1277\n\tERROR_ACCESS_DISABLED_WEBBLADE_TAMPER                                     syscall.Errno = 1278\n\tERROR_RECOVERY_FAILURE                                                    syscall.Errno = 1279\n\tERROR_ALREADY_FIBER                                                       syscall.Errno = 1280\n\tERROR_ALREADY_THREAD                                                      syscall.Errno = 1281\n\tERROR_STACK_BUFFER_OVERRUN                                                syscall.Errno = 1282\n\tERROR_PARAMETER_QUOTA_EXCEEDED                                            syscall.Errno = 1283\n\tERROR_DEBUGGER_INACTIVE                                                   syscall.Errno = 1284\n\tERROR_DELAY_LOAD_FAILED                                                   syscall.Errno = 1285\n\tERROR_VDM_DISALLOWED                                                      syscall.Errno = 1286\n\tERROR_UNIDENTIFIED_ERROR                                                  syscall.Errno = 1287\n\tERROR_INVALID_CRUNTIME_PARAMETER                                          syscall.Errno = 1288\n\tERROR_BEYOND_VDL                                                          syscall.Errno = 1289\n\tERROR_INCOMPATIBLE_SERVICE_SID_TYPE                                       syscall.Errno = 1290\n\tERROR_DRIVER_PROCESS_TERMINATED                                           syscall.Errno = 1291\n\tERROR_IMPLEMENTATION_LIMIT                                                syscall.Errno = 1292\n\tERROR_PROCESS_IS_PROTECTED                                                syscall.Errno = 1293\n\tERROR_SERVICE_NOTIFY_CLIENT_LAGGING                                       syscall.Errno = 1294\n\tERROR_DISK_QUOTA_EXCEEDED                                                 syscall.Errno = 1295\n\tERROR_CONTENT_BLOCKED                                                     syscall.Errno = 1296\n\tERROR_INCOMPATIBLE_SERVICE_PRIVILEGE                                      syscall.Errno = 1297\n\tERROR_APP_HANG                                                            syscall.Errno = 1298\n\tERROR_INVALID_LABEL                                                       syscall.Errno = 1299\n\tERROR_NOT_ALL_ASSIGNED                                                    syscall.Errno = 1300\n\tERROR_SOME_NOT_MAPPED                                                     syscall.Errno = 1301\n\tERROR_NO_QUOTAS_FOR_ACCOUNT                                               syscall.Errno = 1302\n\tERROR_LOCAL_USER_SESSION_KEY                                              syscall.Errno = 1303\n\tERROR_NULL_LM_PASSWORD                                                    syscall.Errno = 1304\n\tERROR_UNKNOWN_REVISION                                                    syscall.Errno = 1305\n\tERROR_REVISION_MISMATCH                                                   syscall.Errno = 1306\n\tERROR_INVALID_OWNER                                                       syscall.Errno = 1307\n\tERROR_INVALID_PRIMARY_GROUP                                               syscall.Errno = 1308\n\tERROR_NO_IMPERSONATION_TOKEN                                              syscall.Errno = 1309\n\tERROR_CANT_DISABLE_MANDATORY                                              syscall.Errno = 1310\n\tERROR_NO_LOGON_SERVERS                                                    syscall.Errno = 1311\n\tERROR_NO_SUCH_LOGON_SESSION                                               syscall.Errno = 1312\n\tERROR_NO_SUCH_PRIVILEGE                                                   syscall.Errno = 1313\n\tERROR_PRIVILEGE_NOT_HELD                                                  syscall.Errno = 1314\n\tERROR_INVALID_ACCOUNT_NAME                                                syscall.Errno = 1315\n\tERROR_USER_EXISTS                                                         syscall.Errno = 1316\n\tERROR_NO_SUCH_USER                                                        syscall.Errno = 1317\n\tERROR_GROUP_EXISTS                                                        syscall.Errno = 1318\n\tERROR_NO_SUCH_GROUP                                                       syscall.Errno = 1319\n\tERROR_MEMBER_IN_GROUP                                                     syscall.Errno = 1320\n\tERROR_MEMBER_NOT_IN_GROUP                                                 syscall.Errno = 1321\n\tERROR_LAST_ADMIN                                                          syscall.Errno = 1322\n\tERROR_WRONG_PASSWORD                                                      syscall.Errno = 1323\n\tERROR_ILL_FORMED_PASSWORD                                                 syscall.Errno = 1324\n\tERROR_PASSWORD_RESTRICTION                                                syscall.Errno = 1325\n\tERROR_LOGON_FAILURE                                                       syscall.Errno = 1326\n\tERROR_ACCOUNT_RESTRICTION                                                 syscall.Errno = 1327\n\tERROR_INVALID_LOGON_HOURS                                                 syscall.Errno = 1328\n\tERROR_INVALID_WORKSTATION                                                 syscall.Errno = 1329\n\tERROR_PASSWORD_EXPIRED                                                    syscall.Errno = 1330\n\tERROR_ACCOUNT_DISABLED                                                    syscall.Errno = 1331\n\tERROR_NONE_MAPPED                                                         syscall.Errno = 1332\n\tERROR_TOO_MANY_LUIDS_REQUESTED                                            syscall.Errno = 1333\n\tERROR_LUIDS_EXHAUSTED                                                     syscall.Errno = 1334\n\tERROR_INVALID_SUB_AUTHORITY                                               syscall.Errno = 1335\n\tERROR_INVALID_ACL                                                         syscall.Errno = 1336\n\tERROR_INVALID_SID                                                         syscall.Errno = 1337\n\tERROR_INVALID_SECURITY_DESCR                                              syscall.Errno = 1338\n\tERROR_BAD_INHERITANCE_ACL                                                 syscall.Errno = 1340\n\tERROR_SERVER_DISABLED                                                     syscall.Errno = 1341\n\tERROR_SERVER_NOT_DISABLED                                                 syscall.Errno = 1342\n\tERROR_INVALID_ID_AUTHORITY                                                syscall.Errno = 1343\n\tERROR_ALLOTTED_SPACE_EXCEEDED                                             syscall.Errno = 1344\n\tERROR_INVALID_GROUP_ATTRIBUTES                                            syscall.Errno = 1345\n\tERROR_BAD_IMPERSONATION_LEVEL                                             syscall.Errno = 1346\n\tERROR_CANT_OPEN_ANONYMOUS                                                 syscall.Errno = 1347\n\tERROR_BAD_VALIDATION_CLASS                                                syscall.Errno = 1348\n\tERROR_BAD_TOKEN_TYPE                                                      syscall.Errno = 1349\n\tERROR_NO_SECURITY_ON_OBJECT                                               syscall.Errno = 1350\n\tERROR_CANT_ACCESS_DOMAIN_INFO                                             syscall.Errno = 1351\n\tERROR_INVALID_SERVER_STATE                                                syscall.Errno = 1352\n\tERROR_INVALID_DOMAIN_STATE                                                syscall.Errno = 1353\n\tERROR_INVALID_DOMAIN_ROLE                                                 syscall.Errno = 1354\n\tERROR_NO_SUCH_DOMAIN                                                      syscall.Errno = 1355\n\tERROR_DOMAIN_EXISTS                                                       syscall.Errno = 1356\n\tERROR_DOMAIN_LIMIT_EXCEEDED                                               syscall.Errno = 1357\n\tERROR_INTERNAL_DB_CORRUPTION                                              syscall.Errno = 1358\n\tERROR_INTERNAL_ERROR                                                      syscall.Errno = 1359\n\tERROR_GENERIC_NOT_MAPPED                                                  syscall.Errno = 1360\n\tERROR_BAD_DESCRIPTOR_FORMAT                                               syscall.Errno = 1361\n\tERROR_NOT_LOGON_PROCESS                                                   syscall.Errno = 1362\n\tERROR_LOGON_SESSION_EXISTS                                                syscall.Errno = 1363\n\tERROR_NO_SUCH_PACKAGE                                                     syscall.Errno = 1364\n\tERROR_BAD_LOGON_SESSION_STATE                                             syscall.Errno = 1365\n\tERROR_LOGON_SESSION_COLLISION                                             syscall.Errno = 1366\n\tERROR_INVALID_LOGON_TYPE                                                  syscall.Errno = 1367\n\tERROR_CANNOT_IMPERSONATE                                                  syscall.Errno = 1368\n\tERROR_RXACT_INVALID_STATE                                                 syscall.Errno = 1369\n\tERROR_RXACT_COMMIT_FAILURE                                                syscall.Errno = 1370\n\tERROR_SPECIAL_ACCOUNT                                                     syscall.Errno = 1371\n\tERROR_SPECIAL_GROUP                                                       syscall.Errno = 1372\n\tERROR_SPECIAL_USER                                                        syscall.Errno = 1373\n\tERROR_MEMBERS_PRIMARY_GROUP                                               syscall.Errno = 1374\n\tERROR_TOKEN_ALREADY_IN_USE                                                syscall.Errno = 1375\n\tERROR_NO_SUCH_ALIAS                                                       syscall.Errno = 1376\n\tERROR_MEMBER_NOT_IN_ALIAS                                                 syscall.Errno = 1377\n\tERROR_MEMBER_IN_ALIAS                                                     syscall.Errno = 1378\n\tERROR_ALIAS_EXISTS                                                        syscall.Errno = 1379\n\tERROR_LOGON_NOT_GRANTED                                                   syscall.Errno = 1380\n\tERROR_TOO_MANY_SECRETS                                                    syscall.Errno = 1381\n\tERROR_SECRET_TOO_LONG                                                     syscall.Errno = 1382\n\tERROR_INTERNAL_DB_ERROR                                                   syscall.Errno = 1383\n\tERROR_TOO_MANY_CONTEXT_IDS                                                syscall.Errno = 1384\n\tERROR_LOGON_TYPE_NOT_GRANTED                                              syscall.Errno = 1385\n\tERROR_NT_CROSS_ENCRYPTION_REQUIRED                                        syscall.Errno = 1386\n\tERROR_NO_SUCH_MEMBER                                                      syscall.Errno = 1387\n\tERROR_INVALID_MEMBER                                                      syscall.Errno = 1388\n\tERROR_TOO_MANY_SIDS                                                       syscall.Errno = 1389\n\tERROR_LM_CROSS_ENCRYPTION_REQUIRED                                        syscall.Errno = 1390\n\tERROR_NO_INHERITANCE                                                      syscall.Errno = 1391\n\tERROR_FILE_CORRUPT                                                        syscall.Errno = 1392\n\tERROR_DISK_CORRUPT                                                        syscall.Errno = 1393\n\tERROR_NO_USER_SESSION_KEY                                                 syscall.Errno = 1394\n\tERROR_LICENSE_QUOTA_EXCEEDED                                              syscall.Errno = 1395\n\tERROR_WRONG_TARGET_NAME                                                   syscall.Errno = 1396\n\tERROR_MUTUAL_AUTH_FAILED                                                  syscall.Errno = 1397\n\tERROR_TIME_SKEW                                                           syscall.Errno = 1398\n\tERROR_CURRENT_DOMAIN_NOT_ALLOWED                                          syscall.Errno = 1399\n\tERROR_INVALID_WINDOW_HANDLE                                               syscall.Errno = 1400\n\tERROR_INVALID_MENU_HANDLE                                                 syscall.Errno = 1401\n\tERROR_INVALID_CURSOR_HANDLE                                               syscall.Errno = 1402\n\tERROR_INVALID_ACCEL_HANDLE                                                syscall.Errno = 1403\n\tERROR_INVALID_HOOK_HANDLE                                                 syscall.Errno = 1404\n\tERROR_INVALID_DWP_HANDLE                                                  syscall.Errno = 1405\n\tERROR_TLW_WITH_WSCHILD                                                    syscall.Errno = 1406\n\tERROR_CANNOT_FIND_WND_CLASS                                               syscall.Errno = 1407\n\tERROR_WINDOW_OF_OTHER_THREAD                                              syscall.Errno = 1408\n\tERROR_HOTKEY_ALREADY_REGISTERED                                           syscall.Errno = 1409\n\tERROR_CLASS_ALREADY_EXISTS                                                syscall.Errno = 1410\n\tERROR_CLASS_DOES_NOT_EXIST                                                syscall.Errno = 1411\n\tERROR_CLASS_HAS_WINDOWS                                                   syscall.Errno = 1412\n\tERROR_INVALID_INDEX                                                       syscall.Errno = 1413\n\tERROR_INVALID_ICON_HANDLE                                                 syscall.Errno = 1414\n\tERROR_PRIVATE_DIALOG_INDEX                                                syscall.Errno = 1415\n\tERROR_LISTBOX_ID_NOT_FOUND                                                syscall.Errno = 1416\n\tERROR_NO_WILDCARD_CHARACTERS                                              syscall.Errno = 1417\n\tERROR_CLIPBOARD_NOT_OPEN                                                  syscall.Errno = 1418\n\tERROR_HOTKEY_NOT_REGISTERED                                               syscall.Errno = 1419\n\tERROR_WINDOW_NOT_DIALOG                                                   syscall.Errno = 1420\n\tERROR_CONTROL_ID_NOT_FOUND                                                syscall.Errno = 1421\n\tERROR_INVALID_COMBOBOX_MESSAGE                                            syscall.Errno = 1422\n\tERROR_WINDOW_NOT_COMBOBOX                                                 syscall.Errno = 1423\n\tERROR_INVALID_EDIT_HEIGHT                                                 syscall.Errno = 1424\n\tERROR_DC_NOT_FOUND                                                        syscall.Errno = 1425\n\tERROR_INVALID_HOOK_FILTER                                                 syscall.Errno = 1426\n\tERROR_INVALID_FILTER_PROC                                                 syscall.Errno = 1427\n\tERROR_HOOK_NEEDS_HMOD                                                     syscall.Errno = 1428\n\tERROR_GLOBAL_ONLY_HOOK                                                    syscall.Errno = 1429\n\tERROR_JOURNAL_HOOK_SET                                                    syscall.Errno = 1430\n\tERROR_HOOK_NOT_INSTALLED                                                  syscall.Errno = 1431\n\tERROR_INVALID_LB_MESSAGE                                                  syscall.Errno = 1432\n\tERROR_SETCOUNT_ON_BAD_LB                                                  syscall.Errno = 1433\n\tERROR_LB_WITHOUT_TABSTOPS                                                 syscall.Errno = 1434\n\tERROR_DESTROY_OBJECT_OF_OTHER_THREAD                                      syscall.Errno = 1435\n\tERROR_CHILD_WINDOW_MENU                                                   syscall.Errno = 1436\n\tERROR_NO_SYSTEM_MENU                                                      syscall.Errno = 1437\n\tERROR_INVALID_MSGBOX_STYLE                                                syscall.Errno = 1438\n\tERROR_INVALID_SPI_VALUE                                                   syscall.Errno = 1439\n\tERROR_SCREEN_ALREADY_LOCKED                                               syscall.Errno = 1440\n\tERROR_HWNDS_HAVE_DIFF_PARENT                                              syscall.Errno = 1441\n\tERROR_NOT_CHILD_WINDOW                                                    syscall.Errno = 1442\n\tERROR_INVALID_GW_COMMAND                                                  syscall.Errno = 1443\n\tERROR_INVALID_THREAD_ID                                                   syscall.Errno = 1444\n\tERROR_NON_MDICHILD_WINDOW                                                 syscall.Errno = 1445\n\tERROR_POPUP_ALREADY_ACTIVE                                                syscall.Errno = 1446\n\tERROR_NO_SCROLLBARS                                                       syscall.Errno = 1447\n\tERROR_INVALID_SCROLLBAR_RANGE                                             syscall.Errno = 1448\n\tERROR_INVALID_SHOWWIN_COMMAND                                             syscall.Errno = 1449\n\tERROR_NO_SYSTEM_RESOURCES                                                 syscall.Errno = 1450\n\tERROR_NONPAGED_SYSTEM_RESOURCES                                           syscall.Errno = 1451\n\tERROR_PAGED_SYSTEM_RESOURCES                                              syscall.Errno = 1452\n\tERROR_WORKING_SET_QUOTA                                                   syscall.Errno = 1453\n\tERROR_PAGEFILE_QUOTA                                                      syscall.Errno = 1454\n\tERROR_COMMITMENT_LIMIT                                                    syscall.Errno = 1455\n\tERROR_MENU_ITEM_NOT_FOUND                                                 syscall.Errno = 1456\n\tERROR_INVALID_KEYBOARD_HANDLE                                             syscall.Errno = 1457\n\tERROR_HOOK_TYPE_NOT_ALLOWED                                               syscall.Errno = 1458\n\tERROR_REQUIRES_INTERACTIVE_WINDOWSTATION                                  syscall.Errno = 1459\n\tERROR_TIMEOUT                                                             syscall.Errno = 1460\n\tERROR_INVALID_MONITOR_HANDLE                                              syscall.Errno = 1461\n\tERROR_INCORRECT_SIZE                                                      syscall.Errno = 1462\n\tERROR_SYMLINK_CLASS_DISABLED                                              syscall.Errno = 1463\n\tERROR_SYMLINK_NOT_SUPPORTED                                               syscall.Errno = 1464\n\tERROR_XML_PARSE_ERROR                                                     syscall.Errno = 1465\n\tERROR_XMLDSIG_ERROR                                                       syscall.Errno = 1466\n\tERROR_RESTART_APPLICATION                                                 syscall.Errno = 1467\n\tERROR_WRONG_COMPARTMENT                                                   syscall.Errno = 1468\n\tERROR_AUTHIP_FAILURE                                                      syscall.Errno = 1469\n\tERROR_NO_NVRAM_RESOURCES                                                  syscall.Errno = 1470\n\tERROR_NOT_GUI_PROCESS                                                     syscall.Errno = 1471\n\tERROR_EVENTLOG_FILE_CORRUPT                                               syscall.Errno = 1500\n\tERROR_EVENTLOG_CANT_START                                                 syscall.Errno = 1501\n\tERROR_LOG_FILE_FULL                                                       syscall.Errno = 1502\n\tERROR_EVENTLOG_FILE_CHANGED                                               syscall.Errno = 1503\n\tERROR_CONTAINER_ASSIGNED                                                  syscall.Errno = 1504\n\tERROR_JOB_NO_CONTAINER                                                    syscall.Errno = 1505\n\tERROR_INVALID_TASK_NAME                                                   syscall.Errno = 1550\n\tERROR_INVALID_TASK_INDEX                                                  syscall.Errno = 1551\n\tERROR_THREAD_ALREADY_IN_TASK                                              syscall.Errno = 1552\n\tERROR_INSTALL_SERVICE_FAILURE                                             syscall.Errno = 1601\n\tERROR_INSTALL_USEREXIT                                                    syscall.Errno = 1602\n\tERROR_INSTALL_FAILURE                                                     syscall.Errno = 1603\n\tERROR_INSTALL_SUSPEND                                                     syscall.Errno = 1604\n\tERROR_UNKNOWN_PRODUCT                                                     syscall.Errno = 1605\n\tERROR_UNKNOWN_FEATURE                                                     syscall.Errno = 1606\n\tERROR_UNKNOWN_COMPONENT                                                   syscall.Errno = 1607\n\tERROR_UNKNOWN_PROPERTY                                                    syscall.Errno = 1608\n\tERROR_INVALID_HANDLE_STATE                                                syscall.Errno = 1609\n\tERROR_BAD_CONFIGURATION                                                   syscall.Errno = 1610\n\tERROR_INDEX_ABSENT                                                        syscall.Errno = 1611\n\tERROR_INSTALL_SOURCE_ABSENT                                               syscall.Errno = 1612\n\tERROR_INSTALL_PACKAGE_VERSION                                             syscall.Errno = 1613\n\tERROR_PRODUCT_UNINSTALLED                                                 syscall.Errno = 1614\n\tERROR_BAD_QUERY_SYNTAX                                                    syscall.Errno = 1615\n\tERROR_INVALID_FIELD                                                       syscall.Errno = 1616\n\tERROR_DEVICE_REMOVED                                                      syscall.Errno = 1617\n\tERROR_INSTALL_ALREADY_RUNNING                                             syscall.Errno = 1618\n\tERROR_INSTALL_PACKAGE_OPEN_FAILED                                         syscall.Errno = 1619\n\tERROR_INSTALL_PACKAGE_INVALID                                             syscall.Errno = 1620\n\tERROR_INSTALL_UI_FAILURE                                                  syscall.Errno = 1621\n\tERROR_INSTALL_LOG_FAILURE                                                 syscall.Errno = 1622\n\tERROR_INSTALL_LANGUAGE_UNSUPPORTED                                        syscall.Errno = 1623\n\tERROR_INSTALL_TRANSFORM_FAILURE                                           syscall.Errno = 1624\n\tERROR_INSTALL_PACKAGE_REJECTED                                            syscall.Errno = 1625\n\tERROR_FUNCTION_NOT_CALLED                                                 syscall.Errno = 1626\n\tERROR_FUNCTION_FAILED                                                     syscall.Errno = 1627\n\tERROR_INVALID_TABLE                                                       syscall.Errno = 1628\n\tERROR_DATATYPE_MISMATCH                                                   syscall.Errno = 1629\n\tERROR_UNSUPPORTED_TYPE                                                    syscall.Errno = 1630\n\tERROR_CREATE_FAILED                                                       syscall.Errno = 1631\n\tERROR_INSTALL_TEMP_UNWRITABLE                                             syscall.Errno = 1632\n\tERROR_INSTALL_PLATFORM_UNSUPPORTED                                        syscall.Errno = 1633\n\tERROR_INSTALL_NOTUSED                                                     syscall.Errno = 1634\n\tERROR_PATCH_PACKAGE_OPEN_FAILED                                           syscall.Errno = 1635\n\tERROR_PATCH_PACKAGE_INVALID                                               syscall.Errno = 1636\n\tERROR_PATCH_PACKAGE_UNSUPPORTED                                           syscall.Errno = 1637\n\tERROR_PRODUCT_VERSION                                                     syscall.Errno = 1638\n\tERROR_INVALID_COMMAND_LINE                                                syscall.Errno = 1639\n\tERROR_INSTALL_REMOTE_DISALLOWED                                           syscall.Errno = 1640\n\tERROR_SUCCESS_REBOOT_INITIATED                                            syscall.Errno = 1641\n\tERROR_PATCH_TARGET_NOT_FOUND                                              syscall.Errno = 1642\n\tERROR_PATCH_PACKAGE_REJECTED                                              syscall.Errno = 1643\n\tERROR_INSTALL_TRANSFORM_REJECTED                                          syscall.Errno = 1644\n\tERROR_INSTALL_REMOTE_PROHIBITED                                           syscall.Errno = 1645\n\tERROR_PATCH_REMOVAL_UNSUPPORTED                                           syscall.Errno = 1646\n\tERROR_UNKNOWN_PATCH                                                       syscall.Errno = 1647\n\tERROR_PATCH_NO_SEQUENCE                                                   syscall.Errno = 1648\n\tERROR_PATCH_REMOVAL_DISALLOWED                                            syscall.Errno = 1649\n\tERROR_INVALID_PATCH_XML                                                   syscall.Errno = 1650\n\tERROR_PATCH_MANAGED_ADVERTISED_PRODUCT                                    syscall.Errno = 1651\n\tERROR_INSTALL_SERVICE_SAFEBOOT                                            syscall.Errno = 1652\n\tERROR_FAIL_FAST_EXCEPTION                                                 syscall.Errno = 1653\n\tERROR_INSTALL_REJECTED                                                    syscall.Errno = 1654\n\tERROR_DYNAMIC_CODE_BLOCKED                                                syscall.Errno = 1655\n\tERROR_NOT_SAME_OBJECT                                                     syscall.Errno = 1656\n\tERROR_STRICT_CFG_VIOLATION                                                syscall.Errno = 1657\n\tERROR_SET_CONTEXT_DENIED                                                  syscall.Errno = 1660\n\tERROR_CROSS_PARTITION_VIOLATION                                           syscall.Errno = 1661\n\tRPC_S_INVALID_STRING_BINDING                                              syscall.Errno = 1700\n\tRPC_S_WRONG_KIND_OF_BINDING                                               syscall.Errno = 1701\n\tRPC_S_INVALID_BINDING                                                     syscall.Errno = 1702\n\tRPC_S_PROTSEQ_NOT_SUPPORTED                                               syscall.Errno = 1703\n\tRPC_S_INVALID_RPC_PROTSEQ                                                 syscall.Errno = 1704\n\tRPC_S_INVALID_STRING_UUID                                                 syscall.Errno = 1705\n\tRPC_S_INVALID_ENDPOINT_FORMAT                                             syscall.Errno = 1706\n\tRPC_S_INVALID_NET_ADDR                                                    syscall.Errno = 1707\n\tRPC_S_NO_ENDPOINT_FOUND                                                   syscall.Errno = 1708\n\tRPC_S_INVALID_TIMEOUT                                                     syscall.Errno = 1709\n\tRPC_S_OBJECT_NOT_FOUND                                                    syscall.Errno = 1710\n\tRPC_S_ALREADY_REGISTERED                                                  syscall.Errno = 1711\n\tRPC_S_TYPE_ALREADY_REGISTERED                                             syscall.Errno = 1712\n\tRPC_S_ALREADY_LISTENING                                                   syscall.Errno = 1713\n\tRPC_S_NO_PROTSEQS_REGISTERED                                              syscall.Errno = 1714\n\tRPC_S_NOT_LISTENING                                                       syscall.Errno = 1715\n\tRPC_S_UNKNOWN_MGR_TYPE                                                    syscall.Errno = 1716\n\tRPC_S_UNKNOWN_IF                                                          syscall.Errno = 1717\n\tRPC_S_NO_BINDINGS                                                         syscall.Errno = 1718\n\tRPC_S_NO_PROTSEQS                                                         syscall.Errno = 1719\n\tRPC_S_CANT_CREATE_ENDPOINT                                                syscall.Errno = 1720\n\tRPC_S_OUT_OF_RESOURCES                                                    syscall.Errno = 1721\n\tRPC_S_SERVER_UNAVAILABLE                                                  syscall.Errno = 1722\n\tRPC_S_SERVER_TOO_BUSY                                                     syscall.Errno = 1723\n\tRPC_S_INVALID_NETWORK_OPTIONS                                             syscall.Errno = 1724\n\tRPC_S_NO_CALL_ACTIVE                                                      syscall.Errno = 1725\n\tRPC_S_CALL_FAILED                                                         syscall.Errno = 1726\n\tRPC_S_CALL_FAILED_DNE                                                     syscall.Errno = 1727\n\tRPC_S_PROTOCOL_ERROR                                                      syscall.Errno = 1728\n\tRPC_S_PROXY_ACCESS_DENIED                                                 syscall.Errno = 1729\n\tRPC_S_UNSUPPORTED_TRANS_SYN                                               syscall.Errno = 1730\n\tRPC_S_UNSUPPORTED_TYPE                                                    syscall.Errno = 1732\n\tRPC_S_INVALID_TAG                                                         syscall.Errno = 1733\n\tRPC_S_INVALID_BOUND                                                       syscall.Errno = 1734\n\tRPC_S_NO_ENTRY_NAME                                                       syscall.Errno = 1735\n\tRPC_S_INVALID_NAME_SYNTAX                                                 syscall.Errno = 1736\n\tRPC_S_UNSUPPORTED_NAME_SYNTAX                                             syscall.Errno = 1737\n\tRPC_S_UUID_NO_ADDRESS                                                     syscall.Errno = 1739\n\tRPC_S_DUPLICATE_ENDPOINT                                                  syscall.Errno = 1740\n\tRPC_S_UNKNOWN_AUTHN_TYPE                                                  syscall.Errno = 1741\n\tRPC_S_MAX_CALLS_TOO_SMALL                                                 syscall.Errno = 1742\n\tRPC_S_STRING_TOO_LONG                                                     syscall.Errno = 1743\n\tRPC_S_PROTSEQ_NOT_FOUND                                                   syscall.Errno = 1744\n\tRPC_S_PROCNUM_OUT_OF_RANGE                                                syscall.Errno = 1745\n\tRPC_S_BINDING_HAS_NO_AUTH                                                 syscall.Errno = 1746\n\tRPC_S_UNKNOWN_AUTHN_SERVICE                                               syscall.Errno = 1747\n\tRPC_S_UNKNOWN_AUTHN_LEVEL                                                 syscall.Errno = 1748\n\tRPC_S_INVALID_AUTH_IDENTITY                                               syscall.Errno = 1749\n\tRPC_S_UNKNOWN_AUTHZ_SERVICE                                               syscall.Errno = 1750\n\tEPT_S_INVALID_ENTRY                                                       syscall.Errno = 1751\n\tEPT_S_CANT_PERFORM_OP                                                     syscall.Errno = 1752\n\tEPT_S_NOT_REGISTERED                                                      syscall.Errno = 1753\n\tRPC_S_NOTHING_TO_EXPORT                                                   syscall.Errno = 1754\n\tRPC_S_INCOMPLETE_NAME                                                     syscall.Errno = 1755\n\tRPC_S_INVALID_VERS_OPTION                                                 syscall.Errno = 1756\n\tRPC_S_NO_MORE_MEMBERS                                                     syscall.Errno = 1757\n\tRPC_S_NOT_ALL_OBJS_UNEXPORTED                                             syscall.Errno = 1758\n\tRPC_S_INTERFACE_NOT_FOUND                                                 syscall.Errno = 1759\n\tRPC_S_ENTRY_ALREADY_EXISTS                                                syscall.Errno = 1760\n\tRPC_S_ENTRY_NOT_FOUND                                                     syscall.Errno = 1761\n\tRPC_S_NAME_SERVICE_UNAVAILABLE                                            syscall.Errno = 1762\n\tRPC_S_INVALID_NAF_ID                                                      syscall.Errno = 1763\n\tRPC_S_CANNOT_SUPPORT                                                      syscall.Errno = 1764\n\tRPC_S_NO_CONTEXT_AVAILABLE                                                syscall.Errno = 1765\n\tRPC_S_INTERNAL_ERROR                                                      syscall.Errno = 1766\n\tRPC_S_ZERO_DIVIDE                                                         syscall.Errno = 1767\n\tRPC_S_ADDRESS_ERROR                                                       syscall.Errno = 1768\n\tRPC_S_FP_DIV_ZERO                                                         syscall.Errno = 1769\n\tRPC_S_FP_UNDERFLOW                                                        syscall.Errno = 1770\n\tRPC_S_FP_OVERFLOW                                                         syscall.Errno = 1771\n\tRPC_X_NO_MORE_ENTRIES                                                     syscall.Errno = 1772\n\tRPC_X_SS_CHAR_TRANS_OPEN_FAIL                                             syscall.Errno = 1773\n\tRPC_X_SS_CHAR_TRANS_SHORT_FILE                                            syscall.Errno = 1774\n\tRPC_X_SS_IN_NULL_CONTEXT                                                  syscall.Errno = 1775\n\tRPC_X_SS_CONTEXT_DAMAGED                                                  syscall.Errno = 1777\n\tRPC_X_SS_HANDLES_MISMATCH                                                 syscall.Errno = 1778\n\tRPC_X_SS_CANNOT_GET_CALL_HANDLE                                           syscall.Errno = 1779\n\tRPC_X_NULL_REF_POINTER                                                    syscall.Errno = 1780\n\tRPC_X_ENUM_VALUE_OUT_OF_RANGE                                             syscall.Errno = 1781\n\tRPC_X_BYTE_COUNT_TOO_SMALL                                                syscall.Errno = 1782\n\tRPC_X_BAD_STUB_DATA                                                       syscall.Errno = 1783\n\tERROR_INVALID_USER_BUFFER                                                 syscall.Errno = 1784\n\tERROR_UNRECOGNIZED_MEDIA                                                  syscall.Errno = 1785\n\tERROR_NO_TRUST_LSA_SECRET                                                 syscall.Errno = 1786\n\tERROR_NO_TRUST_SAM_ACCOUNT                                                syscall.Errno = 1787\n\tERROR_TRUSTED_DOMAIN_FAILURE                                              syscall.Errno = 1788\n\tERROR_TRUSTED_RELATIONSHIP_FAILURE                                        syscall.Errno = 1789\n\tERROR_TRUST_FAILURE                                                       syscall.Errno = 1790\n\tRPC_S_CALL_IN_PROGRESS                                                    syscall.Errno = 1791\n\tERROR_NETLOGON_NOT_STARTED                                                syscall.Errno = 1792\n\tERROR_ACCOUNT_EXPIRED                                                     syscall.Errno = 1793\n\tERROR_REDIRECTOR_HAS_OPEN_HANDLES                                         syscall.Errno = 1794\n\tERROR_PRINTER_DRIVER_ALREADY_INSTALLED                                    syscall.Errno = 1795\n\tERROR_UNKNOWN_PORT                                                        syscall.Errno = 1796\n\tERROR_UNKNOWN_PRINTER_DRIVER                                              syscall.Errno = 1797\n\tERROR_UNKNOWN_PRINTPROCESSOR                                              syscall.Errno = 1798\n\tERROR_INVALID_SEPARATOR_FILE                                              syscall.Errno = 1799\n\tERROR_INVALID_PRIORITY                                                    syscall.Errno = 1800\n\tERROR_INVALID_PRINTER_NAME                                                syscall.Errno = 1801\n\tERROR_PRINTER_ALREADY_EXISTS                                              syscall.Errno = 1802\n\tERROR_INVALID_PRINTER_COMMAND                                             syscall.Errno = 1803\n\tERROR_INVALID_DATATYPE                                                    syscall.Errno = 1804\n\tERROR_INVALID_ENVIRONMENT                                                 syscall.Errno = 1805\n\tRPC_S_NO_MORE_BINDINGS                                                    syscall.Errno = 1806\n\tERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT                                   syscall.Errno = 1807\n\tERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT                                   syscall.Errno = 1808\n\tERROR_NOLOGON_SERVER_TRUST_ACCOUNT                                        syscall.Errno = 1809\n\tERROR_DOMAIN_TRUST_INCONSISTENT                                           syscall.Errno = 1810\n\tERROR_SERVER_HAS_OPEN_HANDLES                                             syscall.Errno = 1811\n\tERROR_RESOURCE_DATA_NOT_FOUND                                             syscall.Errno = 1812\n\tERROR_RESOURCE_TYPE_NOT_FOUND                                             syscall.Errno = 1813\n\tERROR_RESOURCE_NAME_NOT_FOUND                                             syscall.Errno = 1814\n\tERROR_RESOURCE_LANG_NOT_FOUND                                             syscall.Errno = 1815\n\tERROR_NOT_ENOUGH_QUOTA                                                    syscall.Errno = 1816\n\tRPC_S_NO_INTERFACES                                                       syscall.Errno = 1817\n\tRPC_S_CALL_CANCELLED                                                      syscall.Errno = 1818\n\tRPC_S_BINDING_INCOMPLETE                                                  syscall.Errno = 1819\n\tRPC_S_COMM_FAILURE                                                        syscall.Errno = 1820\n\tRPC_S_UNSUPPORTED_AUTHN_LEVEL                                             syscall.Errno = 1821\n\tRPC_S_NO_PRINC_NAME                                                       syscall.Errno = 1822\n\tRPC_S_NOT_RPC_ERROR                                                       syscall.Errno = 1823\n\tRPC_S_UUID_LOCAL_ONLY                                                     syscall.Errno = 1824\n\tRPC_S_SEC_PKG_ERROR                                                       syscall.Errno = 1825\n\tRPC_S_NOT_CANCELLED                                                       syscall.Errno = 1826\n\tRPC_X_INVALID_ES_ACTION                                                   syscall.Errno = 1827\n\tRPC_X_WRONG_ES_VERSION                                                    syscall.Errno = 1828\n\tRPC_X_WRONG_STUB_VERSION                                                  syscall.Errno = 1829\n\tRPC_X_INVALID_PIPE_OBJECT                                                 syscall.Errno = 1830\n\tRPC_X_WRONG_PIPE_ORDER                                                    syscall.Errno = 1831\n\tRPC_X_WRONG_PIPE_VERSION                                                  syscall.Errno = 1832\n\tRPC_S_COOKIE_AUTH_FAILED                                                  syscall.Errno = 1833\n\tRPC_S_DO_NOT_DISTURB                                                      syscall.Errno = 1834\n\tRPC_S_SYSTEM_HANDLE_COUNT_EXCEEDED                                        syscall.Errno = 1835\n\tRPC_S_SYSTEM_HANDLE_TYPE_MISMATCH                                         syscall.Errno = 1836\n\tRPC_S_GROUP_MEMBER_NOT_FOUND                                              syscall.Errno = 1898\n\tEPT_S_CANT_CREATE                                                         syscall.Errno = 1899\n\tRPC_S_INVALID_OBJECT                                                      syscall.Errno = 1900\n\tERROR_INVALID_TIME                                                        syscall.Errno = 1901\n\tERROR_INVALID_FORM_NAME                                                   syscall.Errno = 1902\n\tERROR_INVALID_FORM_SIZE                                                   syscall.Errno = 1903\n\tERROR_ALREADY_WAITING                                                     syscall.Errno = 1904\n\tERROR_PRINTER_DELETED                                                     syscall.Errno = 1905\n\tERROR_INVALID_PRINTER_STATE                                               syscall.Errno = 1906\n\tERROR_PASSWORD_MUST_CHANGE                                                syscall.Errno = 1907\n\tERROR_DOMAIN_CONTROLLER_NOT_FOUND                                         syscall.Errno = 1908\n\tERROR_ACCOUNT_LOCKED_OUT                                                  syscall.Errno = 1909\n\tOR_INVALID_OXID                                                           syscall.Errno = 1910\n\tOR_INVALID_OID                                                            syscall.Errno = 1911\n\tOR_INVALID_SET                                                            syscall.Errno = 1912\n\tRPC_S_SEND_INCOMPLETE                                                     syscall.Errno = 1913\n\tRPC_S_INVALID_ASYNC_HANDLE                                                syscall.Errno = 1914\n\tRPC_S_INVALID_ASYNC_CALL                                                  syscall.Errno = 1915\n\tRPC_X_PIPE_CLOSED                                                         syscall.Errno = 1916\n\tRPC_X_PIPE_DISCIPLINE_ERROR                                               syscall.Errno = 1917\n\tRPC_X_PIPE_EMPTY                                                          syscall.Errno = 1918\n\tERROR_NO_SITENAME                                                         syscall.Errno = 1919\n\tERROR_CANT_ACCESS_FILE                                                    syscall.Errno = 1920\n\tERROR_CANT_RESOLVE_FILENAME                                               syscall.Errno = 1921\n\tRPC_S_ENTRY_TYPE_MISMATCH                                                 syscall.Errno = 1922\n\tRPC_S_NOT_ALL_OBJS_EXPORTED                                               syscall.Errno = 1923\n\tRPC_S_INTERFACE_NOT_EXPORTED                                              syscall.Errno = 1924\n\tRPC_S_PROFILE_NOT_ADDED                                                   syscall.Errno = 1925\n\tRPC_S_PRF_ELT_NOT_ADDED                                                   syscall.Errno = 1926\n\tRPC_S_PRF_ELT_NOT_REMOVED                                                 syscall.Errno = 1927\n\tRPC_S_GRP_ELT_NOT_ADDED                                                   syscall.Errno = 1928\n\tRPC_S_GRP_ELT_NOT_REMOVED                                                 syscall.Errno = 1929\n\tERROR_KM_DRIVER_BLOCKED                                                   syscall.Errno = 1930\n\tERROR_CONTEXT_EXPIRED                                                     syscall.Errno = 1931\n\tERROR_PER_USER_TRUST_QUOTA_EXCEEDED                                       syscall.Errno = 1932\n\tERROR_ALL_USER_TRUST_QUOTA_EXCEEDED                                       syscall.Errno = 1933\n\tERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED                                    syscall.Errno = 1934\n\tERROR_AUTHENTICATION_FIREWALL_FAILED                                      syscall.Errno = 1935\n\tERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED                                    syscall.Errno = 1936\n\tERROR_NTLM_BLOCKED                                                        syscall.Errno = 1937\n\tERROR_PASSWORD_CHANGE_REQUIRED                                            syscall.Errno = 1938\n\tERROR_LOST_MODE_LOGON_RESTRICTION                                         syscall.Errno = 1939\n\tERROR_INVALID_PIXEL_FORMAT                                                syscall.Errno = 2000\n\tERROR_BAD_DRIVER                                                          syscall.Errno = 2001\n\tERROR_INVALID_WINDOW_STYLE                                                syscall.Errno = 2002\n\tERROR_METAFILE_NOT_SUPPORTED                                              syscall.Errno = 2003\n\tERROR_TRANSFORM_NOT_SUPPORTED                                             syscall.Errno = 2004\n\tERROR_CLIPPING_NOT_SUPPORTED                                              syscall.Errno = 2005\n\tERROR_INVALID_CMM                                                         syscall.Errno = 2010\n\tERROR_INVALID_PROFILE                                                     syscall.Errno = 2011\n\tERROR_TAG_NOT_FOUND                                                       syscall.Errno = 2012\n\tERROR_TAG_NOT_PRESENT                                                     syscall.Errno = 2013\n\tERROR_DUPLICATE_TAG                                                       syscall.Errno = 2014\n\tERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE                                  syscall.Errno = 2015\n\tERROR_PROFILE_NOT_FOUND                                                   syscall.Errno = 2016\n\tERROR_INVALID_COLORSPACE                                                  syscall.Errno = 2017\n\tERROR_ICM_NOT_ENABLED                                                     syscall.Errno = 2018\n\tERROR_DELETING_ICM_XFORM                                                  syscall.Errno = 2019\n\tERROR_INVALID_TRANSFORM                                                   syscall.Errno = 2020\n\tERROR_COLORSPACE_MISMATCH                                                 syscall.Errno = 2021\n\tERROR_INVALID_COLORINDEX                                                  syscall.Errno = 2022\n\tERROR_PROFILE_DOES_NOT_MATCH_DEVICE                                       syscall.Errno = 2023\n\tERROR_CONNECTED_OTHER_PASSWORD                                            syscall.Errno = 2108\n\tERROR_CONNECTED_OTHER_PASSWORD_DEFAULT                                    syscall.Errno = 2109\n\tERROR_BAD_USERNAME                                                        syscall.Errno = 2202\n\tERROR_NOT_CONNECTED                                                       syscall.Errno = 2250\n\tERROR_OPEN_FILES                                                          syscall.Errno = 2401\n\tERROR_ACTIVE_CONNECTIONS                                                  syscall.Errno = 2402\n\tERROR_DEVICE_IN_USE                                                       syscall.Errno = 2404\n\tERROR_UNKNOWN_PRINT_MONITOR                                               syscall.Errno = 3000\n\tERROR_PRINTER_DRIVER_IN_USE                                               syscall.Errno = 3001\n\tERROR_SPOOL_FILE_NOT_FOUND                                                syscall.Errno = 3002\n\tERROR_SPL_NO_STARTDOC                                                     syscall.Errno = 3003\n\tERROR_SPL_NO_ADDJOB                                                       syscall.Errno = 3004\n\tERROR_PRINT_PROCESSOR_ALREADY_INSTALLED                                   syscall.Errno = 3005\n\tERROR_PRINT_MONITOR_ALREADY_INSTALLED                                     syscall.Errno = 3006\n\tERROR_INVALID_PRINT_MONITOR                                               syscall.Errno = 3007\n\tERROR_PRINT_MONITOR_IN_USE                                                syscall.Errno = 3008\n\tERROR_PRINTER_HAS_JOBS_QUEUED                                             syscall.Errno = 3009\n\tERROR_SUCCESS_REBOOT_REQUIRED                                             syscall.Errno = 3010\n\tERROR_SUCCESS_RESTART_REQUIRED                                            syscall.Errno = 3011\n\tERROR_PRINTER_NOT_FOUND                                                   syscall.Errno = 3012\n\tERROR_PRINTER_DRIVER_WARNED                                               syscall.Errno = 3013\n\tERROR_PRINTER_DRIVER_BLOCKED                                              syscall.Errno = 3014\n\tERROR_PRINTER_DRIVER_PACKAGE_IN_USE                                       syscall.Errno = 3015\n\tERROR_CORE_DRIVER_PACKAGE_NOT_FOUND                                       syscall.Errno = 3016\n\tERROR_FAIL_REBOOT_REQUIRED                                                syscall.Errno = 3017\n\tERROR_FAIL_REBOOT_INITIATED                                               syscall.Errno = 3018\n\tERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED                                      syscall.Errno = 3019\n\tERROR_PRINT_JOB_RESTART_REQUIRED                                          syscall.Errno = 3020\n\tERROR_INVALID_PRINTER_DRIVER_MANIFEST                                     syscall.Errno = 3021\n\tERROR_PRINTER_NOT_SHAREABLE                                               syscall.Errno = 3022\n\tERROR_REQUEST_PAUSED                                                      syscall.Errno = 3050\n\tERROR_APPEXEC_CONDITION_NOT_SATISFIED                                     syscall.Errno = 3060\n\tERROR_APPEXEC_HANDLE_INVALIDATED                                          syscall.Errno = 3061\n\tERROR_APPEXEC_INVALID_HOST_GENERATION                                     syscall.Errno = 3062\n\tERROR_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION                             syscall.Errno = 3063\n\tERROR_APPEXEC_INVALID_HOST_STATE                                          syscall.Errno = 3064\n\tERROR_APPEXEC_NO_DONOR                                                    syscall.Errno = 3065\n\tERROR_APPEXEC_HOST_ID_MISMATCH                                            syscall.Errno = 3066\n\tERROR_APPEXEC_UNKNOWN_USER                                                syscall.Errno = 3067\n\tERROR_IO_REISSUE_AS_CACHED                                                syscall.Errno = 3950\n\tERROR_WINS_INTERNAL                                                       syscall.Errno = 4000\n\tERROR_CAN_NOT_DEL_LOCAL_WINS                                              syscall.Errno = 4001\n\tERROR_STATIC_INIT                                                         syscall.Errno = 4002\n\tERROR_INC_BACKUP                                                          syscall.Errno = 4003\n\tERROR_FULL_BACKUP                                                         syscall.Errno = 4004\n\tERROR_REC_NON_EXISTENT                                                    syscall.Errno = 4005\n\tERROR_RPL_NOT_ALLOWED                                                     syscall.Errno = 4006\n\tPEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED                            syscall.Errno = 4050\n\tPEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO                                   syscall.Errno = 4051\n\tPEERDIST_ERROR_MISSING_DATA                                               syscall.Errno = 4052\n\tPEERDIST_ERROR_NO_MORE                                                    syscall.Errno = 4053\n\tPEERDIST_ERROR_NOT_INITIALIZED                                            syscall.Errno = 4054\n\tPEERDIST_ERROR_ALREADY_INITIALIZED                                        syscall.Errno = 4055\n\tPEERDIST_ERROR_SHUTDOWN_IN_PROGRESS                                       syscall.Errno = 4056\n\tPEERDIST_ERROR_INVALIDATED                                                syscall.Errno = 4057\n\tPEERDIST_ERROR_ALREADY_EXISTS                                             syscall.Errno = 4058\n\tPEERDIST_ERROR_OPERATION_NOTFOUND                                         syscall.Errno = 4059\n\tPEERDIST_ERROR_ALREADY_COMPLETED                                          syscall.Errno = 4060\n\tPEERDIST_ERROR_OUT_OF_BOUNDS                                              syscall.Errno = 4061\n\tPEERDIST_ERROR_VERSION_UNSUPPORTED                                        syscall.Errno = 4062\n\tPEERDIST_ERROR_INVALID_CONFIGURATION                                      syscall.Errno = 4063\n\tPEERDIST_ERROR_NOT_LICENSED                                               syscall.Errno = 4064\n\tPEERDIST_ERROR_SERVICE_UNAVAILABLE                                        syscall.Errno = 4065\n\tPEERDIST_ERROR_TRUST_FAILURE                                              syscall.Errno = 4066\n\tERROR_DHCP_ADDRESS_CONFLICT                                               syscall.Errno = 4100\n\tERROR_WMI_GUID_NOT_FOUND                                                  syscall.Errno = 4200\n\tERROR_WMI_INSTANCE_NOT_FOUND                                              syscall.Errno = 4201\n\tERROR_WMI_ITEMID_NOT_FOUND                                                syscall.Errno = 4202\n\tERROR_WMI_TRY_AGAIN                                                       syscall.Errno = 4203\n\tERROR_WMI_DP_NOT_FOUND                                                    syscall.Errno = 4204\n\tERROR_WMI_UNRESOLVED_INSTANCE_REF                                         syscall.Errno = 4205\n\tERROR_WMI_ALREADY_ENABLED                                                 syscall.Errno = 4206\n\tERROR_WMI_GUID_DISCONNECTED                                               syscall.Errno = 4207\n\tERROR_WMI_SERVER_UNAVAILABLE                                              syscall.Errno = 4208\n\tERROR_WMI_DP_FAILED                                                       syscall.Errno = 4209\n\tERROR_WMI_INVALID_MOF                                                     syscall.Errno = 4210\n\tERROR_WMI_INVALID_REGINFO                                                 syscall.Errno = 4211\n\tERROR_WMI_ALREADY_DISABLED                                                syscall.Errno = 4212\n\tERROR_WMI_READ_ONLY                                                       syscall.Errno = 4213\n\tERROR_WMI_SET_FAILURE                                                     syscall.Errno = 4214\n\tERROR_NOT_APPCONTAINER                                                    syscall.Errno = 4250\n\tERROR_APPCONTAINER_REQUIRED                                               syscall.Errno = 4251\n\tERROR_NOT_SUPPORTED_IN_APPCONTAINER                                       syscall.Errno = 4252\n\tERROR_INVALID_PACKAGE_SID_LENGTH                                          syscall.Errno = 4253\n\tERROR_INVALID_MEDIA                                                       syscall.Errno = 4300\n\tERROR_INVALID_LIBRARY                                                     syscall.Errno = 4301\n\tERROR_INVALID_MEDIA_POOL                                                  syscall.Errno = 4302\n\tERROR_DRIVE_MEDIA_MISMATCH                                                syscall.Errno = 4303\n\tERROR_MEDIA_OFFLINE                                                       syscall.Errno = 4304\n\tERROR_LIBRARY_OFFLINE                                                     syscall.Errno = 4305\n\tERROR_EMPTY                                                               syscall.Errno = 4306\n\tERROR_NOT_EMPTY                                                           syscall.Errno = 4307\n\tERROR_MEDIA_UNAVAILABLE                                                   syscall.Errno = 4308\n\tERROR_RESOURCE_DISABLED                                                   syscall.Errno = 4309\n\tERROR_INVALID_CLEANER                                                     syscall.Errno = 4310\n\tERROR_UNABLE_TO_CLEAN                                                     syscall.Errno = 4311\n\tERROR_OBJECT_NOT_FOUND                                                    syscall.Errno = 4312\n\tERROR_DATABASE_FAILURE                                                    syscall.Errno = 4313\n\tERROR_DATABASE_FULL                                                       syscall.Errno = 4314\n\tERROR_MEDIA_INCOMPATIBLE                                                  syscall.Errno = 4315\n\tERROR_RESOURCE_NOT_PRESENT                                                syscall.Errno = 4316\n\tERROR_INVALID_OPERATION                                                   syscall.Errno = 4317\n\tERROR_MEDIA_NOT_AVAILABLE                                                 syscall.Errno = 4318\n\tERROR_DEVICE_NOT_AVAILABLE                                                syscall.Errno = 4319\n\tERROR_REQUEST_REFUSED                                                     syscall.Errno = 4320\n\tERROR_INVALID_DRIVE_OBJECT                                                syscall.Errno = 4321\n\tERROR_LIBRARY_FULL                                                        syscall.Errno = 4322\n\tERROR_MEDIUM_NOT_ACCESSIBLE                                               syscall.Errno = 4323\n\tERROR_UNABLE_TO_LOAD_MEDIUM                                               syscall.Errno = 4324\n\tERROR_UNABLE_TO_INVENTORY_DRIVE                                           syscall.Errno = 4325\n\tERROR_UNABLE_TO_INVENTORY_SLOT                                            syscall.Errno = 4326\n\tERROR_UNABLE_TO_INVENTORY_TRANSPORT                                       syscall.Errno = 4327\n\tERROR_TRANSPORT_FULL                                                      syscall.Errno = 4328\n\tERROR_CONTROLLING_IEPORT                                                  syscall.Errno = 4329\n\tERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA                                       syscall.Errno = 4330\n\tERROR_CLEANER_SLOT_SET                                                    syscall.Errno = 4331\n\tERROR_CLEANER_SLOT_NOT_SET                                                syscall.Errno = 4332\n\tERROR_CLEANER_CARTRIDGE_SPENT                                             syscall.Errno = 4333\n\tERROR_UNEXPECTED_OMID                                                     syscall.Errno = 4334\n\tERROR_CANT_DELETE_LAST_ITEM                                               syscall.Errno = 4335\n\tERROR_MESSAGE_EXCEEDS_MAX_SIZE                                            syscall.Errno = 4336\n\tERROR_VOLUME_CONTAINS_SYS_FILES                                           syscall.Errno = 4337\n\tERROR_INDIGENOUS_TYPE                                                     syscall.Errno = 4338\n\tERROR_NO_SUPPORTING_DRIVES                                                syscall.Errno = 4339\n\tERROR_CLEANER_CARTRIDGE_INSTALLED                                         syscall.Errno = 4340\n\tERROR_IEPORT_FULL                                                         syscall.Errno = 4341\n\tERROR_FILE_OFFLINE                                                        syscall.Errno = 4350\n\tERROR_REMOTE_STORAGE_NOT_ACTIVE                                           syscall.Errno = 4351\n\tERROR_REMOTE_STORAGE_MEDIA_ERROR                                          syscall.Errno = 4352\n\tERROR_NOT_A_REPARSE_POINT                                                 syscall.Errno = 4390\n\tERROR_REPARSE_ATTRIBUTE_CONFLICT                                          syscall.Errno = 4391\n\tERROR_INVALID_REPARSE_DATA                                                syscall.Errno = 4392\n\tERROR_REPARSE_TAG_INVALID                                                 syscall.Errno = 4393\n\tERROR_REPARSE_TAG_MISMATCH                                                syscall.Errno = 4394\n\tERROR_REPARSE_POINT_ENCOUNTERED                                           syscall.Errno = 4395\n\tERROR_APP_DATA_NOT_FOUND                                                  syscall.Errno = 4400\n\tERROR_APP_DATA_EXPIRED                                                    syscall.Errno = 4401\n\tERROR_APP_DATA_CORRUPT                                                    syscall.Errno = 4402\n\tERROR_APP_DATA_LIMIT_EXCEEDED                                             syscall.Errno = 4403\n\tERROR_APP_DATA_REBOOT_REQUIRED                                            syscall.Errno = 4404\n\tERROR_SECUREBOOT_ROLLBACK_DETECTED                                        syscall.Errno = 4420\n\tERROR_SECUREBOOT_POLICY_VIOLATION                                         syscall.Errno = 4421\n\tERROR_SECUREBOOT_INVALID_POLICY                                           syscall.Errno = 4422\n\tERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND                               syscall.Errno = 4423\n\tERROR_SECUREBOOT_POLICY_NOT_SIGNED                                        syscall.Errno = 4424\n\tERROR_SECUREBOOT_NOT_ENABLED                                              syscall.Errno = 4425\n\tERROR_SECUREBOOT_FILE_REPLACED                                            syscall.Errno = 4426\n\tERROR_SECUREBOOT_POLICY_NOT_AUTHORIZED                                    syscall.Errno = 4427\n\tERROR_SECUREBOOT_POLICY_UNKNOWN                                           syscall.Errno = 4428\n\tERROR_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION                       syscall.Errno = 4429\n\tERROR_SECUREBOOT_PLATFORM_ID_MISMATCH                                     syscall.Errno = 4430\n\tERROR_SECUREBOOT_POLICY_ROLLBACK_DETECTED                                 syscall.Errno = 4431\n\tERROR_SECUREBOOT_POLICY_UPGRADE_MISMATCH                                  syscall.Errno = 4432\n\tERROR_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING                             syscall.Errno = 4433\n\tERROR_SECUREBOOT_NOT_BASE_POLICY                                          syscall.Errno = 4434\n\tERROR_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY                                  syscall.Errno = 4435\n\tERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED                                      syscall.Errno = 4440\n\tERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED                                     syscall.Errno = 4441\n\tERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED                                     syscall.Errno = 4442\n\tERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED                                    syscall.Errno = 4443\n\tERROR_ALREADY_HAS_STREAM_ID                                               syscall.Errno = 4444\n\tERROR_SMR_GARBAGE_COLLECTION_REQUIRED                                     syscall.Errno = 4445\n\tERROR_WOF_WIM_HEADER_CORRUPT                                              syscall.Errno = 4446\n\tERROR_WOF_WIM_RESOURCE_TABLE_CORRUPT                                      syscall.Errno = 4447\n\tERROR_WOF_FILE_RESOURCE_TABLE_CORRUPT                                     syscall.Errno = 4448\n\tERROR_VOLUME_NOT_SIS_ENABLED                                              syscall.Errno = 4500\n\tERROR_SYSTEM_INTEGRITY_ROLLBACK_DETECTED                                  syscall.Errno = 4550\n\tERROR_SYSTEM_INTEGRITY_POLICY_VIOLATION                                   syscall.Errno = 4551\n\tERROR_SYSTEM_INTEGRITY_INVALID_POLICY                                     syscall.Errno = 4552\n\tERROR_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED                                  syscall.Errno = 4553\n\tERROR_VSM_NOT_INITIALIZED                                                 syscall.Errno = 4560\n\tERROR_VSM_DMA_PROTECTION_NOT_IN_USE                                       syscall.Errno = 4561\n\tERROR_PLATFORM_MANIFEST_NOT_AUTHORIZED                                    syscall.Errno = 4570\n\tERROR_PLATFORM_MANIFEST_INVALID                                           syscall.Errno = 4571\n\tERROR_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED                               syscall.Errno = 4572\n\tERROR_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED                            syscall.Errno = 4573\n\tERROR_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND                               syscall.Errno = 4574\n\tERROR_PLATFORM_MANIFEST_NOT_ACTIVE                                        syscall.Errno = 4575\n\tERROR_PLATFORM_MANIFEST_NOT_SIGNED                                        syscall.Errno = 4576\n\tERROR_DEPENDENT_RESOURCE_EXISTS                                           syscall.Errno = 5001\n\tERROR_DEPENDENCY_NOT_FOUND                                                syscall.Errno = 5002\n\tERROR_DEPENDENCY_ALREADY_EXISTS                                           syscall.Errno = 5003\n\tERROR_RESOURCE_NOT_ONLINE                                                 syscall.Errno = 5004\n\tERROR_HOST_NODE_NOT_AVAILABLE                                             syscall.Errno = 5005\n\tERROR_RESOURCE_NOT_AVAILABLE                                              syscall.Errno = 5006\n\tERROR_RESOURCE_NOT_FOUND                                                  syscall.Errno = 5007\n\tERROR_SHUTDOWN_CLUSTER                                                    syscall.Errno = 5008\n\tERROR_CANT_EVICT_ACTIVE_NODE                                              syscall.Errno = 5009\n\tERROR_OBJECT_ALREADY_EXISTS                                               syscall.Errno = 5010\n\tERROR_OBJECT_IN_LIST                                                      syscall.Errno = 5011\n\tERROR_GROUP_NOT_AVAILABLE                                                 syscall.Errno = 5012\n\tERROR_GROUP_NOT_FOUND                                                     syscall.Errno = 5013\n\tERROR_GROUP_NOT_ONLINE                                                    syscall.Errno = 5014\n\tERROR_HOST_NODE_NOT_RESOURCE_OWNER                                        syscall.Errno = 5015\n\tERROR_HOST_NODE_NOT_GROUP_OWNER                                           syscall.Errno = 5016\n\tERROR_RESMON_CREATE_FAILED                                                syscall.Errno = 5017\n\tERROR_RESMON_ONLINE_FAILED                                                syscall.Errno = 5018\n\tERROR_RESOURCE_ONLINE                                                     syscall.Errno = 5019\n\tERROR_QUORUM_RESOURCE                                                     syscall.Errno = 5020\n\tERROR_NOT_QUORUM_CAPABLE                                                  syscall.Errno = 5021\n\tERROR_CLUSTER_SHUTTING_DOWN                                               syscall.Errno = 5022\n\tERROR_INVALID_STATE                                                       syscall.Errno = 5023\n\tERROR_RESOURCE_PROPERTIES_STORED                                          syscall.Errno = 5024\n\tERROR_NOT_QUORUM_CLASS                                                    syscall.Errno = 5025\n\tERROR_CORE_RESOURCE                                                       syscall.Errno = 5026\n\tERROR_QUORUM_RESOURCE_ONLINE_FAILED                                       syscall.Errno = 5027\n\tERROR_QUORUMLOG_OPEN_FAILED                                               syscall.Errno = 5028\n\tERROR_CLUSTERLOG_CORRUPT                                                  syscall.Errno = 5029\n\tERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE                                   syscall.Errno = 5030\n\tERROR_CLUSTERLOG_EXCEEDS_MAXSIZE                                          syscall.Errno = 5031\n\tERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND                                       syscall.Errno = 5032\n\tERROR_CLUSTERLOG_NOT_ENOUGH_SPACE                                         syscall.Errno = 5033\n\tERROR_QUORUM_OWNER_ALIVE                                                  syscall.Errno = 5034\n\tERROR_NETWORK_NOT_AVAILABLE                                               syscall.Errno = 5035\n\tERROR_NODE_NOT_AVAILABLE                                                  syscall.Errno = 5036\n\tERROR_ALL_NODES_NOT_AVAILABLE                                             syscall.Errno = 5037\n\tERROR_RESOURCE_FAILED                                                     syscall.Errno = 5038\n\tERROR_CLUSTER_INVALID_NODE                                                syscall.Errno = 5039\n\tERROR_CLUSTER_NODE_EXISTS                                                 syscall.Errno = 5040\n\tERROR_CLUSTER_JOIN_IN_PROGRESS                                            syscall.Errno = 5041\n\tERROR_CLUSTER_NODE_NOT_FOUND                                              syscall.Errno = 5042\n\tERROR_CLUSTER_LOCAL_NODE_NOT_FOUND                                        syscall.Errno = 5043\n\tERROR_CLUSTER_NETWORK_EXISTS                                              syscall.Errno = 5044\n\tERROR_CLUSTER_NETWORK_NOT_FOUND                                           syscall.Errno = 5045\n\tERROR_CLUSTER_NETINTERFACE_EXISTS                                         syscall.Errno = 5046\n\tERROR_CLUSTER_NETINTERFACE_NOT_FOUND                                      syscall.Errno = 5047\n\tERROR_CLUSTER_INVALID_REQUEST                                             syscall.Errno = 5048\n\tERROR_CLUSTER_INVALID_NETWORK_PROVIDER                                    syscall.Errno = 5049\n\tERROR_CLUSTER_NODE_DOWN                                                   syscall.Errno = 5050\n\tERROR_CLUSTER_NODE_UNREACHABLE                                            syscall.Errno = 5051\n\tERROR_CLUSTER_NODE_NOT_MEMBER                                             syscall.Errno = 5052\n\tERROR_CLUSTER_JOIN_NOT_IN_PROGRESS                                        syscall.Errno = 5053\n\tERROR_CLUSTER_INVALID_NETWORK                                             syscall.Errno = 5054\n\tERROR_CLUSTER_NODE_UP                                                     syscall.Errno = 5056\n\tERROR_CLUSTER_IPADDR_IN_USE                                               syscall.Errno = 5057\n\tERROR_CLUSTER_NODE_NOT_PAUSED                                             syscall.Errno = 5058\n\tERROR_CLUSTER_NO_SECURITY_CONTEXT                                         syscall.Errno = 5059\n\tERROR_CLUSTER_NETWORK_NOT_INTERNAL                                        syscall.Errno = 5060\n\tERROR_CLUSTER_NODE_ALREADY_UP                                             syscall.Errno = 5061\n\tERROR_CLUSTER_NODE_ALREADY_DOWN                                           syscall.Errno = 5062\n\tERROR_CLUSTER_NETWORK_ALREADY_ONLINE                                      syscall.Errno = 5063\n\tERROR_CLUSTER_NETWORK_ALREADY_OFFLINE                                     syscall.Errno = 5064\n\tERROR_CLUSTER_NODE_ALREADY_MEMBER                                         syscall.Errno = 5065\n\tERROR_CLUSTER_LAST_INTERNAL_NETWORK                                       syscall.Errno = 5066\n\tERROR_CLUSTER_NETWORK_HAS_DEPENDENTS                                      syscall.Errno = 5067\n\tERROR_INVALID_OPERATION_ON_QUORUM                                         syscall.Errno = 5068\n\tERROR_DEPENDENCY_NOT_ALLOWED                                              syscall.Errno = 5069\n\tERROR_CLUSTER_NODE_PAUSED                                                 syscall.Errno = 5070\n\tERROR_NODE_CANT_HOST_RESOURCE                                             syscall.Errno = 5071\n\tERROR_CLUSTER_NODE_NOT_READY                                              syscall.Errno = 5072\n\tERROR_CLUSTER_NODE_SHUTTING_DOWN                                          syscall.Errno = 5073\n\tERROR_CLUSTER_JOIN_ABORTED                                                syscall.Errno = 5074\n\tERROR_CLUSTER_INCOMPATIBLE_VERSIONS                                       syscall.Errno = 5075\n\tERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED                                syscall.Errno = 5076\n\tERROR_CLUSTER_SYSTEM_CONFIG_CHANGED                                       syscall.Errno = 5077\n\tERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND                                     syscall.Errno = 5078\n\tERROR_CLUSTER_RESTYPE_NOT_SUPPORTED                                       syscall.Errno = 5079\n\tERROR_CLUSTER_RESNAME_NOT_FOUND                                           syscall.Errno = 5080\n\tERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED                                  syscall.Errno = 5081\n\tERROR_CLUSTER_OWNER_NOT_IN_PREFLIST                                       syscall.Errno = 5082\n\tERROR_CLUSTER_DATABASE_SEQMISMATCH                                        syscall.Errno = 5083\n\tERROR_RESMON_INVALID_STATE                                                syscall.Errno = 5084\n\tERROR_CLUSTER_GUM_NOT_LOCKER                                              syscall.Errno = 5085\n\tERROR_QUORUM_DISK_NOT_FOUND                                               syscall.Errno = 5086\n\tERROR_DATABASE_BACKUP_CORRUPT                                             syscall.Errno = 5087\n\tERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT                                   syscall.Errno = 5088\n\tERROR_RESOURCE_PROPERTY_UNCHANGEABLE                                      syscall.Errno = 5089\n\tERROR_NO_ADMIN_ACCESS_POINT                                               syscall.Errno = 5090\n\tERROR_CLUSTER_MEMBERSHIP_INVALID_STATE                                    syscall.Errno = 5890\n\tERROR_CLUSTER_QUORUMLOG_NOT_FOUND                                         syscall.Errno = 5891\n\tERROR_CLUSTER_MEMBERSHIP_HALT                                             syscall.Errno = 5892\n\tERROR_CLUSTER_INSTANCE_ID_MISMATCH                                        syscall.Errno = 5893\n\tERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP                                    syscall.Errno = 5894\n\tERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH                                 syscall.Errno = 5895\n\tERROR_CLUSTER_EVICT_WITHOUT_CLEANUP                                       syscall.Errno = 5896\n\tERROR_CLUSTER_PARAMETER_MISMATCH                                          syscall.Errno = 5897\n\tERROR_NODE_CANNOT_BE_CLUSTERED                                            syscall.Errno = 5898\n\tERROR_CLUSTER_WRONG_OS_VERSION                                            syscall.Errno = 5899\n\tERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME                                syscall.Errno = 5900\n\tERROR_CLUSCFG_ALREADY_COMMITTED                                           syscall.Errno = 5901\n\tERROR_CLUSCFG_ROLLBACK_FAILED                                             syscall.Errno = 5902\n\tERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT                           syscall.Errno = 5903\n\tERROR_CLUSTER_OLD_VERSION                                                 syscall.Errno = 5904\n\tERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME                               syscall.Errno = 5905\n\tERROR_CLUSTER_NO_NET_ADAPTERS                                             syscall.Errno = 5906\n\tERROR_CLUSTER_POISONED                                                    syscall.Errno = 5907\n\tERROR_CLUSTER_GROUP_MOVING                                                syscall.Errno = 5908\n\tERROR_CLUSTER_RESOURCE_TYPE_BUSY                                          syscall.Errno = 5909\n\tERROR_RESOURCE_CALL_TIMED_OUT                                             syscall.Errno = 5910\n\tERROR_INVALID_CLUSTER_IPV6_ADDRESS                                        syscall.Errno = 5911\n\tERROR_CLUSTER_INTERNAL_INVALID_FUNCTION                                   syscall.Errno = 5912\n\tERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS                                     syscall.Errno = 5913\n\tERROR_CLUSTER_PARTIAL_SEND                                                syscall.Errno = 5914\n\tERROR_CLUSTER_REGISTRY_INVALID_FUNCTION                                   syscall.Errno = 5915\n\tERROR_CLUSTER_INVALID_STRING_TERMINATION                                  syscall.Errno = 5916\n\tERROR_CLUSTER_INVALID_STRING_FORMAT                                       syscall.Errno = 5917\n\tERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS                            syscall.Errno = 5918\n\tERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS                        syscall.Errno = 5919\n\tERROR_CLUSTER_NULL_DATA                                                   syscall.Errno = 5920\n\tERROR_CLUSTER_PARTIAL_READ                                                syscall.Errno = 5921\n\tERROR_CLUSTER_PARTIAL_WRITE                                               syscall.Errno = 5922\n\tERROR_CLUSTER_CANT_DESERIALIZE_DATA                                       syscall.Errno = 5923\n\tERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT                                syscall.Errno = 5924\n\tERROR_CLUSTER_NO_QUORUM                                                   syscall.Errno = 5925\n\tERROR_CLUSTER_INVALID_IPV6_NETWORK                                        syscall.Errno = 5926\n\tERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK                                 syscall.Errno = 5927\n\tERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP                                    syscall.Errno = 5928\n\tERROR_DEPENDENCY_TREE_TOO_COMPLEX                                         syscall.Errno = 5929\n\tERROR_EXCEPTION_IN_RESOURCE_CALL                                          syscall.Errno = 5930\n\tERROR_CLUSTER_RHS_FAILED_INITIALIZATION                                   syscall.Errno = 5931\n\tERROR_CLUSTER_NOT_INSTALLED                                               syscall.Errno = 5932\n\tERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE                   syscall.Errno = 5933\n\tERROR_CLUSTER_MAX_NODES_IN_CLUSTER                                        syscall.Errno = 5934\n\tERROR_CLUSTER_TOO_MANY_NODES                                              syscall.Errno = 5935\n\tERROR_CLUSTER_OBJECT_ALREADY_USED                                         syscall.Errno = 5936\n\tERROR_NONCORE_GROUPS_FOUND                                                syscall.Errno = 5937\n\tERROR_FILE_SHARE_RESOURCE_CONFLICT                                        syscall.Errno = 5938\n\tERROR_CLUSTER_EVICT_INVALID_REQUEST                                       syscall.Errno = 5939\n\tERROR_CLUSTER_SINGLETON_RESOURCE                                          syscall.Errno = 5940\n\tERROR_CLUSTER_GROUP_SINGLETON_RESOURCE                                    syscall.Errno = 5941\n\tERROR_CLUSTER_RESOURCE_PROVIDER_FAILED                                    syscall.Errno = 5942\n\tERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR                                syscall.Errno = 5943\n\tERROR_CLUSTER_GROUP_BUSY                                                  syscall.Errno = 5944\n\tERROR_CLUSTER_NOT_SHARED_VOLUME                                           syscall.Errno = 5945\n\tERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR                                 syscall.Errno = 5946\n\tERROR_CLUSTER_SHARED_VOLUMES_IN_USE                                       syscall.Errno = 5947\n\tERROR_CLUSTER_USE_SHARED_VOLUMES_API                                      syscall.Errno = 5948\n\tERROR_CLUSTER_BACKUP_IN_PROGRESS                                          syscall.Errno = 5949\n\tERROR_NON_CSV_PATH                                                        syscall.Errno = 5950\n\tERROR_CSV_VOLUME_NOT_LOCAL                                                syscall.Errno = 5951\n\tERROR_CLUSTER_WATCHDOG_TERMINATING                                        syscall.Errno = 5952\n\tERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES                     syscall.Errno = 5953\n\tERROR_CLUSTER_INVALID_NODE_WEIGHT                                         syscall.Errno = 5954\n\tERROR_CLUSTER_RESOURCE_VETOED_CALL                                        syscall.Errno = 5955\n\tERROR_RESMON_SYSTEM_RESOURCES_LACKING                                     syscall.Errno = 5956\n\tERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION    syscall.Errno = 5957\n\tERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE         syscall.Errno = 5958\n\tERROR_CLUSTER_GROUP_QUEUED                                                syscall.Errno = 5959\n\tERROR_CLUSTER_RESOURCE_LOCKED_STATUS                                      syscall.Errno = 5960\n\tERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED                          syscall.Errno = 5961\n\tERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS                                      syscall.Errno = 5962\n\tERROR_CLUSTER_DISK_NOT_CONNECTED                                          syscall.Errno = 5963\n\tERROR_DISK_NOT_CSV_CAPABLE                                                syscall.Errno = 5964\n\tERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE                                   syscall.Errno = 5965\n\tERROR_CLUSTER_SHARED_VOLUME_REDIRECTED                                    syscall.Errno = 5966\n\tERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED                                syscall.Errno = 5967\n\tERROR_CLUSTER_CANNOT_RETURN_PROPERTIES                                    syscall.Errno = 5968\n\tERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES  syscall.Errno = 5969\n\tERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE                             syscall.Errno = 5970\n\tERROR_CLUSTER_AFFINITY_CONFLICT                                           syscall.Errno = 5971\n\tERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE                         syscall.Errno = 5972\n\tERROR_CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS                               syscall.Errno = 5973\n\tERROR_CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED                            syscall.Errno = 5974\n\tERROR_CLUSTER_UPGRADE_RESTART_REQUIRED                                    syscall.Errno = 5975\n\tERROR_CLUSTER_UPGRADE_IN_PROGRESS                                         syscall.Errno = 5976\n\tERROR_CLUSTER_UPGRADE_INCOMPLETE                                          syscall.Errno = 5977\n\tERROR_CLUSTER_NODE_IN_GRACE_PERIOD                                        syscall.Errno = 5978\n\tERROR_CLUSTER_CSV_IO_PAUSE_TIMEOUT                                        syscall.Errno = 5979\n\tERROR_NODE_NOT_ACTIVE_CLUSTER_MEMBER                                      syscall.Errno = 5980\n\tERROR_CLUSTER_RESOURCE_NOT_MONITORED                                      syscall.Errno = 5981\n\tERROR_CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED                       syscall.Errno = 5982\n\tERROR_CLUSTER_RESOURCE_IS_REPLICATED                                      syscall.Errno = 5983\n\tERROR_CLUSTER_NODE_ISOLATED                                               syscall.Errno = 5984\n\tERROR_CLUSTER_NODE_QUARANTINED                                            syscall.Errno = 5985\n\tERROR_CLUSTER_DATABASE_UPDATE_CONDITION_FAILED                            syscall.Errno = 5986\n\tERROR_CLUSTER_SPACE_DEGRADED                                              syscall.Errno = 5987\n\tERROR_CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED                              syscall.Errno = 5988\n\tERROR_CLUSTER_CSV_INVALID_HANDLE                                          syscall.Errno = 5989\n\tERROR_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR                           syscall.Errno = 5990\n\tERROR_GROUPSET_NOT_AVAILABLE                                              syscall.Errno = 5991\n\tERROR_GROUPSET_NOT_FOUND                                                  syscall.Errno = 5992\n\tERROR_GROUPSET_CANT_PROVIDE                                               syscall.Errno = 5993\n\tERROR_CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND                               syscall.Errno = 5994\n\tERROR_CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY                              syscall.Errno = 5995\n\tERROR_CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION                          syscall.Errno = 5996\n\tERROR_CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS                          syscall.Errno = 5997\n\tERROR_CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME                      syscall.Errno = 5998\n\tERROR_CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE                           syscall.Errno = 5999\n\tERROR_ENCRYPTION_FAILED                                                   syscall.Errno = 6000\n\tERROR_DECRYPTION_FAILED                                                   syscall.Errno = 6001\n\tERROR_FILE_ENCRYPTED                                                      syscall.Errno = 6002\n\tERROR_NO_RECOVERY_POLICY                                                  syscall.Errno = 6003\n\tERROR_NO_EFS                                                              syscall.Errno = 6004\n\tERROR_WRONG_EFS                                                           syscall.Errno = 6005\n\tERROR_NO_USER_KEYS                                                        syscall.Errno = 6006\n\tERROR_FILE_NOT_ENCRYPTED                                                  syscall.Errno = 6007\n\tERROR_NOT_EXPORT_FORMAT                                                   syscall.Errno = 6008\n\tERROR_FILE_READ_ONLY                                                      syscall.Errno = 6009\n\tERROR_DIR_EFS_DISALLOWED                                                  syscall.Errno = 6010\n\tERROR_EFS_SERVER_NOT_TRUSTED                                              syscall.Errno = 6011\n\tERROR_BAD_RECOVERY_POLICY                                                 syscall.Errno = 6012\n\tERROR_EFS_ALG_BLOB_TOO_BIG                                                syscall.Errno = 6013\n\tERROR_VOLUME_NOT_SUPPORT_EFS                                              syscall.Errno = 6014\n\tERROR_EFS_DISABLED                                                        syscall.Errno = 6015\n\tERROR_EFS_VERSION_NOT_SUPPORT                                             syscall.Errno = 6016\n\tERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE                               syscall.Errno = 6017\n\tERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER                                    syscall.Errno = 6018\n\tERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE                               syscall.Errno = 6019\n\tERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE                                    syscall.Errno = 6020\n\tERROR_CS_ENCRYPTION_FILE_NOT_CSE                                          syscall.Errno = 6021\n\tERROR_ENCRYPTION_POLICY_DENIES_OPERATION                                  syscall.Errno = 6022\n\tERROR_NO_BROWSER_SERVERS_FOUND                                            syscall.Errno = 6118\n\tSCHED_E_SERVICE_NOT_LOCALSYSTEM                                           syscall.Errno = 6200\n\tERROR_LOG_SECTOR_INVALID                                                  syscall.Errno = 6600\n\tERROR_LOG_SECTOR_PARITY_INVALID                                           syscall.Errno = 6601\n\tERROR_LOG_SECTOR_REMAPPED                                                 syscall.Errno = 6602\n\tERROR_LOG_BLOCK_INCOMPLETE                                                syscall.Errno = 6603\n\tERROR_LOG_INVALID_RANGE                                                   syscall.Errno = 6604\n\tERROR_LOG_BLOCKS_EXHAUSTED                                                syscall.Errno = 6605\n\tERROR_LOG_READ_CONTEXT_INVALID                                            syscall.Errno = 6606\n\tERROR_LOG_RESTART_INVALID                                                 syscall.Errno = 6607\n\tERROR_LOG_BLOCK_VERSION                                                   syscall.Errno = 6608\n\tERROR_LOG_BLOCK_INVALID                                                   syscall.Errno = 6609\n\tERROR_LOG_READ_MODE_INVALID                                               syscall.Errno = 6610\n\tERROR_LOG_NO_RESTART                                                      syscall.Errno = 6611\n\tERROR_LOG_METADATA_CORRUPT                                                syscall.Errno = 6612\n\tERROR_LOG_METADATA_INVALID                                                syscall.Errno = 6613\n\tERROR_LOG_METADATA_INCONSISTENT                                           syscall.Errno = 6614\n\tERROR_LOG_RESERVATION_INVALID                                             syscall.Errno = 6615\n\tERROR_LOG_CANT_DELETE                                                     syscall.Errno = 6616\n\tERROR_LOG_CONTAINER_LIMIT_EXCEEDED                                        syscall.Errno = 6617\n\tERROR_LOG_START_OF_LOG                                                    syscall.Errno = 6618\n\tERROR_LOG_POLICY_ALREADY_INSTALLED                                        syscall.Errno = 6619\n\tERROR_LOG_POLICY_NOT_INSTALLED                                            syscall.Errno = 6620\n\tERROR_LOG_POLICY_INVALID                                                  syscall.Errno = 6621\n\tERROR_LOG_POLICY_CONFLICT                                                 syscall.Errno = 6622\n\tERROR_LOG_PINNED_ARCHIVE_TAIL                                             syscall.Errno = 6623\n\tERROR_LOG_RECORD_NONEXISTENT                                              syscall.Errno = 6624\n\tERROR_LOG_RECORDS_RESERVED_INVALID                                        syscall.Errno = 6625\n\tERROR_LOG_SPACE_RESERVED_INVALID                                          syscall.Errno = 6626\n\tERROR_LOG_TAIL_INVALID                                                    syscall.Errno = 6627\n\tERROR_LOG_FULL                                                            syscall.Errno = 6628\n\tERROR_COULD_NOT_RESIZE_LOG                                                syscall.Errno = 6629\n\tERROR_LOG_MULTIPLEXED                                                     syscall.Errno = 6630\n\tERROR_LOG_DEDICATED                                                       syscall.Errno = 6631\n\tERROR_LOG_ARCHIVE_NOT_IN_PROGRESS                                         syscall.Errno = 6632\n\tERROR_LOG_ARCHIVE_IN_PROGRESS                                             syscall.Errno = 6633\n\tERROR_LOG_EPHEMERAL                                                       syscall.Errno = 6634\n\tERROR_LOG_NOT_ENOUGH_CONTAINERS                                           syscall.Errno = 6635\n\tERROR_LOG_CLIENT_ALREADY_REGISTERED                                       syscall.Errno = 6636\n\tERROR_LOG_CLIENT_NOT_REGISTERED                                           syscall.Errno = 6637\n\tERROR_LOG_FULL_HANDLER_IN_PROGRESS                                        syscall.Errno = 6638\n\tERROR_LOG_CONTAINER_READ_FAILED                                           syscall.Errno = 6639\n\tERROR_LOG_CONTAINER_WRITE_FAILED                                          syscall.Errno = 6640\n\tERROR_LOG_CONTAINER_OPEN_FAILED                                           syscall.Errno = 6641\n\tERROR_LOG_CONTAINER_STATE_INVALID                                         syscall.Errno = 6642\n\tERROR_LOG_STATE_INVALID                                                   syscall.Errno = 6643\n\tERROR_LOG_PINNED                                                          syscall.Errno = 6644\n\tERROR_LOG_METADATA_FLUSH_FAILED                                           syscall.Errno = 6645\n\tERROR_LOG_INCONSISTENT_SECURITY                                           syscall.Errno = 6646\n\tERROR_LOG_APPENDED_FLUSH_FAILED                                           syscall.Errno = 6647\n\tERROR_LOG_PINNED_RESERVATION                                              syscall.Errno = 6648\n\tERROR_INVALID_TRANSACTION                                                 syscall.Errno = 6700\n\tERROR_TRANSACTION_NOT_ACTIVE                                              syscall.Errno = 6701\n\tERROR_TRANSACTION_REQUEST_NOT_VALID                                       syscall.Errno = 6702\n\tERROR_TRANSACTION_NOT_REQUESTED                                           syscall.Errno = 6703\n\tERROR_TRANSACTION_ALREADY_ABORTED                                         syscall.Errno = 6704\n\tERROR_TRANSACTION_ALREADY_COMMITTED                                       syscall.Errno = 6705\n\tERROR_TM_INITIALIZATION_FAILED                                            syscall.Errno = 6706\n\tERROR_RESOURCEMANAGER_READ_ONLY                                           syscall.Errno = 6707\n\tERROR_TRANSACTION_NOT_JOINED                                              syscall.Errno = 6708\n\tERROR_TRANSACTION_SUPERIOR_EXISTS                                         syscall.Errno = 6709\n\tERROR_CRM_PROTOCOL_ALREADY_EXISTS                                         syscall.Errno = 6710\n\tERROR_TRANSACTION_PROPAGATION_FAILED                                      syscall.Errno = 6711\n\tERROR_CRM_PROTOCOL_NOT_FOUND                                              syscall.Errno = 6712\n\tERROR_TRANSACTION_INVALID_MARSHALL_BUFFER                                 syscall.Errno = 6713\n\tERROR_CURRENT_TRANSACTION_NOT_VALID                                       syscall.Errno = 6714\n\tERROR_TRANSACTION_NOT_FOUND                                               syscall.Errno = 6715\n\tERROR_RESOURCEMANAGER_NOT_FOUND                                           syscall.Errno = 6716\n\tERROR_ENLISTMENT_NOT_FOUND                                                syscall.Errno = 6717\n\tERROR_TRANSACTIONMANAGER_NOT_FOUND                                        syscall.Errno = 6718\n\tERROR_TRANSACTIONMANAGER_NOT_ONLINE                                       syscall.Errno = 6719\n\tERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION                          syscall.Errno = 6720\n\tERROR_TRANSACTION_NOT_ROOT                                                syscall.Errno = 6721\n\tERROR_TRANSACTION_OBJECT_EXPIRED                                          syscall.Errno = 6722\n\tERROR_TRANSACTION_RESPONSE_NOT_ENLISTED                                   syscall.Errno = 6723\n\tERROR_TRANSACTION_RECORD_TOO_LONG                                         syscall.Errno = 6724\n\tERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED                                  syscall.Errno = 6725\n\tERROR_TRANSACTION_INTEGRITY_VIOLATED                                      syscall.Errno = 6726\n\tERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH                                syscall.Errno = 6727\n\tERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT                                    syscall.Errno = 6728\n\tERROR_TRANSACTION_MUST_WRITETHROUGH                                       syscall.Errno = 6729\n\tERROR_TRANSACTION_NO_SUPERIOR                                             syscall.Errno = 6730\n\tERROR_HEURISTIC_DAMAGE_POSSIBLE                                           syscall.Errno = 6731\n\tERROR_TRANSACTIONAL_CONFLICT                                              syscall.Errno = 6800\n\tERROR_RM_NOT_ACTIVE                                                       syscall.Errno = 6801\n\tERROR_RM_METADATA_CORRUPT                                                 syscall.Errno = 6802\n\tERROR_DIRECTORY_NOT_RM                                                    syscall.Errno = 6803\n\tERROR_TRANSACTIONS_UNSUPPORTED_REMOTE                                     syscall.Errno = 6805\n\tERROR_LOG_RESIZE_INVALID_SIZE                                             syscall.Errno = 6806\n\tERROR_OBJECT_NO_LONGER_EXISTS                                             syscall.Errno = 6807\n\tERROR_STREAM_MINIVERSION_NOT_FOUND                                        syscall.Errno = 6808\n\tERROR_STREAM_MINIVERSION_NOT_VALID                                        syscall.Errno = 6809\n\tERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION                 syscall.Errno = 6810\n\tERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT                            syscall.Errno = 6811\n\tERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS                                syscall.Errno = 6812\n\tERROR_REMOTE_FILE_VERSION_MISMATCH                                        syscall.Errno = 6814\n\tERROR_HANDLE_NO_LONGER_VALID                                              syscall.Errno = 6815\n\tERROR_NO_TXF_METADATA                                                     syscall.Errno = 6816\n\tERROR_LOG_CORRUPTION_DETECTED                                             syscall.Errno = 6817\n\tERROR_CANT_RECOVER_WITH_HANDLE_OPEN                                       syscall.Errno = 6818\n\tERROR_RM_DISCONNECTED                                                     syscall.Errno = 6819\n\tERROR_ENLISTMENT_NOT_SUPERIOR                                             syscall.Errno = 6820\n\tERROR_RECOVERY_NOT_NEEDED                                                 syscall.Errno = 6821\n\tERROR_RM_ALREADY_STARTED                                                  syscall.Errno = 6822\n\tERROR_FILE_IDENTITY_NOT_PERSISTENT                                        syscall.Errno = 6823\n\tERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY                                 syscall.Errno = 6824\n\tERROR_CANT_CROSS_RM_BOUNDARY                                              syscall.Errno = 6825\n\tERROR_TXF_DIR_NOT_EMPTY                                                   syscall.Errno = 6826\n\tERROR_INDOUBT_TRANSACTIONS_EXIST                                          syscall.Errno = 6827\n\tERROR_TM_VOLATILE                                                         syscall.Errno = 6828\n\tERROR_ROLLBACK_TIMER_EXPIRED                                              syscall.Errno = 6829\n\tERROR_TXF_ATTRIBUTE_CORRUPT                                               syscall.Errno = 6830\n\tERROR_EFS_NOT_ALLOWED_IN_TRANSACTION                                      syscall.Errno = 6831\n\tERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED                                      syscall.Errno = 6832\n\tERROR_LOG_GROWTH_FAILED                                                   syscall.Errno = 6833\n\tERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE                               syscall.Errno = 6834\n\tERROR_TXF_METADATA_ALREADY_PRESENT                                        syscall.Errno = 6835\n\tERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET                                 syscall.Errno = 6836\n\tERROR_TRANSACTION_REQUIRED_PROMOTION                                      syscall.Errno = 6837\n\tERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION                                  syscall.Errno = 6838\n\tERROR_TRANSACTIONS_NOT_FROZEN                                             syscall.Errno = 6839\n\tERROR_TRANSACTION_FREEZE_IN_PROGRESS                                      syscall.Errno = 6840\n\tERROR_NOT_SNAPSHOT_VOLUME                                                 syscall.Errno = 6841\n\tERROR_NO_SAVEPOINT_WITH_OPEN_FILES                                        syscall.Errno = 6842\n\tERROR_DATA_LOST_REPAIR                                                    syscall.Errno = 6843\n\tERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION                                   syscall.Errno = 6844\n\tERROR_TM_IDENTITY_MISMATCH                                                syscall.Errno = 6845\n\tERROR_FLOATED_SECTION                                                     syscall.Errno = 6846\n\tERROR_CANNOT_ACCEPT_TRANSACTED_WORK                                       syscall.Errno = 6847\n\tERROR_CANNOT_ABORT_TRANSACTIONS                                           syscall.Errno = 6848\n\tERROR_BAD_CLUSTERS                                                        syscall.Errno = 6849\n\tERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION                              syscall.Errno = 6850\n\tERROR_VOLUME_DIRTY                                                        syscall.Errno = 6851\n\tERROR_NO_LINK_TRACKING_IN_TRANSACTION                                     syscall.Errno = 6852\n\tERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION                              syscall.Errno = 6853\n\tERROR_EXPIRED_HANDLE                                                      syscall.Errno = 6854\n\tERROR_TRANSACTION_NOT_ENLISTED                                            syscall.Errno = 6855\n\tERROR_CTX_WINSTATION_NAME_INVALID                                         syscall.Errno = 7001\n\tERROR_CTX_INVALID_PD                                                      syscall.Errno = 7002\n\tERROR_CTX_PD_NOT_FOUND                                                    syscall.Errno = 7003\n\tERROR_CTX_WD_NOT_FOUND                                                    syscall.Errno = 7004\n\tERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY                                      syscall.Errno = 7005\n\tERROR_CTX_SERVICE_NAME_COLLISION                                          syscall.Errno = 7006\n\tERROR_CTX_CLOSE_PENDING                                                   syscall.Errno = 7007\n\tERROR_CTX_NO_OUTBUF                                                       syscall.Errno = 7008\n\tERROR_CTX_MODEM_INF_NOT_FOUND                                             syscall.Errno = 7009\n\tERROR_CTX_INVALID_MODEMNAME                                               syscall.Errno = 7010\n\tERROR_CTX_MODEM_RESPONSE_ERROR                                            syscall.Errno = 7011\n\tERROR_CTX_MODEM_RESPONSE_TIMEOUT                                          syscall.Errno = 7012\n\tERROR_CTX_MODEM_RESPONSE_NO_CARRIER                                       syscall.Errno = 7013\n\tERROR_CTX_MODEM_RESPONSE_NO_DIALTONE                                      syscall.Errno = 7014\n\tERROR_CTX_MODEM_RESPONSE_BUSY                                             syscall.Errno = 7015\n\tERROR_CTX_MODEM_RESPONSE_VOICE                                            syscall.Errno = 7016\n\tERROR_CTX_TD_ERROR                                                        syscall.Errno = 7017\n\tERROR_CTX_WINSTATION_NOT_FOUND                                            syscall.Errno = 7022\n\tERROR_CTX_WINSTATION_ALREADY_EXISTS                                       syscall.Errno = 7023\n\tERROR_CTX_WINSTATION_BUSY                                                 syscall.Errno = 7024\n\tERROR_CTX_BAD_VIDEO_MODE                                                  syscall.Errno = 7025\n\tERROR_CTX_GRAPHICS_INVALID                                                syscall.Errno = 7035\n\tERROR_CTX_LOGON_DISABLED                                                  syscall.Errno = 7037\n\tERROR_CTX_NOT_CONSOLE                                                     syscall.Errno = 7038\n\tERROR_CTX_CLIENT_QUERY_TIMEOUT                                            syscall.Errno = 7040\n\tERROR_CTX_CONSOLE_DISCONNECT                                              syscall.Errno = 7041\n\tERROR_CTX_CONSOLE_CONNECT                                                 syscall.Errno = 7042\n\tERROR_CTX_SHADOW_DENIED                                                   syscall.Errno = 7044\n\tERROR_CTX_WINSTATION_ACCESS_DENIED                                        syscall.Errno = 7045\n\tERROR_CTX_INVALID_WD                                                      syscall.Errno = 7049\n\tERROR_CTX_SHADOW_INVALID                                                  syscall.Errno = 7050\n\tERROR_CTX_SHADOW_DISABLED                                                 syscall.Errno = 7051\n\tERROR_CTX_CLIENT_LICENSE_IN_USE                                           syscall.Errno = 7052\n\tERROR_CTX_CLIENT_LICENSE_NOT_SET                                          syscall.Errno = 7053\n\tERROR_CTX_LICENSE_NOT_AVAILABLE                                           syscall.Errno = 7054\n\tERROR_CTX_LICENSE_CLIENT_INVALID                                          syscall.Errno = 7055\n\tERROR_CTX_LICENSE_EXPIRED                                                 syscall.Errno = 7056\n\tERROR_CTX_SHADOW_NOT_RUNNING                                              syscall.Errno = 7057\n\tERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE                                     syscall.Errno = 7058\n\tERROR_ACTIVATION_COUNT_EXCEEDED                                           syscall.Errno = 7059\n\tERROR_CTX_WINSTATIONS_DISABLED                                            syscall.Errno = 7060\n\tERROR_CTX_ENCRYPTION_LEVEL_REQUIRED                                       syscall.Errno = 7061\n\tERROR_CTX_SESSION_IN_USE                                                  syscall.Errno = 7062\n\tERROR_CTX_NO_FORCE_LOGOFF                                                 syscall.Errno = 7063\n\tERROR_CTX_ACCOUNT_RESTRICTION                                             syscall.Errno = 7064\n\tERROR_RDP_PROTOCOL_ERROR                                                  syscall.Errno = 7065\n\tERROR_CTX_CDM_CONNECT                                                     syscall.Errno = 7066\n\tERROR_CTX_CDM_DISCONNECT                                                  syscall.Errno = 7067\n\tERROR_CTX_SECURITY_LAYER_ERROR                                            syscall.Errno = 7068\n\tERROR_TS_INCOMPATIBLE_SESSIONS                                            syscall.Errno = 7069\n\tERROR_TS_VIDEO_SUBSYSTEM_ERROR                                            syscall.Errno = 7070\n\tFRS_ERR_INVALID_API_SEQUENCE                                              syscall.Errno = 8001\n\tFRS_ERR_STARTING_SERVICE                                                  syscall.Errno = 8002\n\tFRS_ERR_STOPPING_SERVICE                                                  syscall.Errno = 8003\n\tFRS_ERR_INTERNAL_API                                                      syscall.Errno = 8004\n\tFRS_ERR_INTERNAL                                                          syscall.Errno = 8005\n\tFRS_ERR_SERVICE_COMM                                                      syscall.Errno = 8006\n\tFRS_ERR_INSUFFICIENT_PRIV                                                 syscall.Errno = 8007\n\tFRS_ERR_AUTHENTICATION                                                    syscall.Errno = 8008\n\tFRS_ERR_PARENT_INSUFFICIENT_PRIV                                          syscall.Errno = 8009\n\tFRS_ERR_PARENT_AUTHENTICATION                                             syscall.Errno = 8010\n\tFRS_ERR_CHILD_TO_PARENT_COMM                                              syscall.Errno = 8011\n\tFRS_ERR_PARENT_TO_CHILD_COMM                                              syscall.Errno = 8012\n\tFRS_ERR_SYSVOL_POPULATE                                                   syscall.Errno = 8013\n\tFRS_ERR_SYSVOL_POPULATE_TIMEOUT                                           syscall.Errno = 8014\n\tFRS_ERR_SYSVOL_IS_BUSY                                                    syscall.Errno = 8015\n\tFRS_ERR_SYSVOL_DEMOTE                                                     syscall.Errno = 8016\n\tFRS_ERR_INVALID_SERVICE_PARAMETER                                         syscall.Errno = 8017\n\tDS_S_SUCCESS                                                                            = ERROR_SUCCESS\n\tERROR_DS_NOT_INSTALLED                                                    syscall.Errno = 8200\n\tERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY                                     syscall.Errno = 8201\n\tERROR_DS_NO_ATTRIBUTE_OR_VALUE                                            syscall.Errno = 8202\n\tERROR_DS_INVALID_ATTRIBUTE_SYNTAX                                         syscall.Errno = 8203\n\tERROR_DS_ATTRIBUTE_TYPE_UNDEFINED                                         syscall.Errno = 8204\n\tERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS                                        syscall.Errno = 8205\n\tERROR_DS_BUSY                                                             syscall.Errno = 8206\n\tERROR_DS_UNAVAILABLE                                                      syscall.Errno = 8207\n\tERROR_DS_NO_RIDS_ALLOCATED                                                syscall.Errno = 8208\n\tERROR_DS_NO_MORE_RIDS                                                     syscall.Errno = 8209\n\tERROR_DS_INCORRECT_ROLE_OWNER                                             syscall.Errno = 8210\n\tERROR_DS_RIDMGR_INIT_ERROR                                                syscall.Errno = 8211\n\tERROR_DS_OBJ_CLASS_VIOLATION                                              syscall.Errno = 8212\n\tERROR_DS_CANT_ON_NON_LEAF                                                 syscall.Errno = 8213\n\tERROR_DS_CANT_ON_RDN                                                      syscall.Errno = 8214\n\tERROR_DS_CANT_MOD_OBJ_CLASS                                               syscall.Errno = 8215\n\tERROR_DS_CROSS_DOM_MOVE_ERROR                                             syscall.Errno = 8216\n\tERROR_DS_GC_NOT_AVAILABLE                                                 syscall.Errno = 8217\n\tERROR_SHARED_POLICY                                                       syscall.Errno = 8218\n\tERROR_POLICY_OBJECT_NOT_FOUND                                             syscall.Errno = 8219\n\tERROR_POLICY_ONLY_IN_DS                                                   syscall.Errno = 8220\n\tERROR_PROMOTION_ACTIVE                                                    syscall.Errno = 8221\n\tERROR_NO_PROMOTION_ACTIVE                                                 syscall.Errno = 8222\n\tERROR_DS_OPERATIONS_ERROR                                                 syscall.Errno = 8224\n\tERROR_DS_PROTOCOL_ERROR                                                   syscall.Errno = 8225\n\tERROR_DS_TIMELIMIT_EXCEEDED                                               syscall.Errno = 8226\n\tERROR_DS_SIZELIMIT_EXCEEDED                                               syscall.Errno = 8227\n\tERROR_DS_ADMIN_LIMIT_EXCEEDED                                             syscall.Errno = 8228\n\tERROR_DS_COMPARE_FALSE                                                    syscall.Errno = 8229\n\tERROR_DS_COMPARE_TRUE                                                     syscall.Errno = 8230\n\tERROR_DS_AUTH_METHOD_NOT_SUPPORTED                                        syscall.Errno = 8231\n\tERROR_DS_STRONG_AUTH_REQUIRED                                             syscall.Errno = 8232\n\tERROR_DS_INAPPROPRIATE_AUTH                                               syscall.Errno = 8233\n\tERROR_DS_AUTH_UNKNOWN                                                     syscall.Errno = 8234\n\tERROR_DS_REFERRAL                                                         syscall.Errno = 8235\n\tERROR_DS_UNAVAILABLE_CRIT_EXTENSION                                       syscall.Errno = 8236\n\tERROR_DS_CONFIDENTIALITY_REQUIRED                                         syscall.Errno = 8237\n\tERROR_DS_INAPPROPRIATE_MATCHING                                           syscall.Errno = 8238\n\tERROR_DS_CONSTRAINT_VIOLATION                                             syscall.Errno = 8239\n\tERROR_DS_NO_SUCH_OBJECT                                                   syscall.Errno = 8240\n\tERROR_DS_ALIAS_PROBLEM                                                    syscall.Errno = 8241\n\tERROR_DS_INVALID_DN_SYNTAX                                                syscall.Errno = 8242\n\tERROR_DS_IS_LEAF                                                          syscall.Errno = 8243\n\tERROR_DS_ALIAS_DEREF_PROBLEM                                              syscall.Errno = 8244\n\tERROR_DS_UNWILLING_TO_PERFORM                                             syscall.Errno = 8245\n\tERROR_DS_LOOP_DETECT                                                      syscall.Errno = 8246\n\tERROR_DS_NAMING_VIOLATION                                                 syscall.Errno = 8247\n\tERROR_DS_OBJECT_RESULTS_TOO_LARGE                                         syscall.Errno = 8248\n\tERROR_DS_AFFECTS_MULTIPLE_DSAS                                            syscall.Errno = 8249\n\tERROR_DS_SERVER_DOWN                                                      syscall.Errno = 8250\n\tERROR_DS_LOCAL_ERROR                                                      syscall.Errno = 8251\n\tERROR_DS_ENCODING_ERROR                                                   syscall.Errno = 8252\n\tERROR_DS_DECODING_ERROR                                                   syscall.Errno = 8253\n\tERROR_DS_FILTER_UNKNOWN                                                   syscall.Errno = 8254\n\tERROR_DS_PARAM_ERROR                                                      syscall.Errno = 8255\n\tERROR_DS_NOT_SUPPORTED                                                    syscall.Errno = 8256\n\tERROR_DS_NO_RESULTS_RETURNED                                              syscall.Errno = 8257\n\tERROR_DS_CONTROL_NOT_FOUND                                                syscall.Errno = 8258\n\tERROR_DS_CLIENT_LOOP                                                      syscall.Errno = 8259\n\tERROR_DS_REFERRAL_LIMIT_EXCEEDED                                          syscall.Errno = 8260\n\tERROR_DS_SORT_CONTROL_MISSING                                             syscall.Errno = 8261\n\tERROR_DS_OFFSET_RANGE_ERROR                                               syscall.Errno = 8262\n\tERROR_DS_RIDMGR_DISABLED                                                  syscall.Errno = 8263\n\tERROR_DS_ROOT_MUST_BE_NC                                                  syscall.Errno = 8301\n\tERROR_DS_ADD_REPLICA_INHIBITED                                            syscall.Errno = 8302\n\tERROR_DS_ATT_NOT_DEF_IN_SCHEMA                                            syscall.Errno = 8303\n\tERROR_DS_MAX_OBJ_SIZE_EXCEEDED                                            syscall.Errno = 8304\n\tERROR_DS_OBJ_STRING_NAME_EXISTS                                           syscall.Errno = 8305\n\tERROR_DS_NO_RDN_DEFINED_IN_SCHEMA                                         syscall.Errno = 8306\n\tERROR_DS_RDN_DOESNT_MATCH_SCHEMA                                          syscall.Errno = 8307\n\tERROR_DS_NO_REQUESTED_ATTS_FOUND                                          syscall.Errno = 8308\n\tERROR_DS_USER_BUFFER_TO_SMALL                                             syscall.Errno = 8309\n\tERROR_DS_ATT_IS_NOT_ON_OBJ                                                syscall.Errno = 8310\n\tERROR_DS_ILLEGAL_MOD_OPERATION                                            syscall.Errno = 8311\n\tERROR_DS_OBJ_TOO_LARGE                                                    syscall.Errno = 8312\n\tERROR_DS_BAD_INSTANCE_TYPE                                                syscall.Errno = 8313\n\tERROR_DS_MASTERDSA_REQUIRED                                               syscall.Errno = 8314\n\tERROR_DS_OBJECT_CLASS_REQUIRED                                            syscall.Errno = 8315\n\tERROR_DS_MISSING_REQUIRED_ATT                                             syscall.Errno = 8316\n\tERROR_DS_ATT_NOT_DEF_FOR_CLASS                                            syscall.Errno = 8317\n\tERROR_DS_ATT_ALREADY_EXISTS                                               syscall.Errno = 8318\n\tERROR_DS_CANT_ADD_ATT_VALUES                                              syscall.Errno = 8320\n\tERROR_DS_SINGLE_VALUE_CONSTRAINT                                          syscall.Errno = 8321\n\tERROR_DS_RANGE_CONSTRAINT                                                 syscall.Errno = 8322\n\tERROR_DS_ATT_VAL_ALREADY_EXISTS                                           syscall.Errno = 8323\n\tERROR_DS_CANT_REM_MISSING_ATT                                             syscall.Errno = 8324\n\tERROR_DS_CANT_REM_MISSING_ATT_VAL                                         syscall.Errno = 8325\n\tERROR_DS_ROOT_CANT_BE_SUBREF                                              syscall.Errno = 8326\n\tERROR_DS_NO_CHAINING                                                      syscall.Errno = 8327\n\tERROR_DS_NO_CHAINED_EVAL                                                  syscall.Errno = 8328\n\tERROR_DS_NO_PARENT_OBJECT                                                 syscall.Errno = 8329\n\tERROR_DS_PARENT_IS_AN_ALIAS                                               syscall.Errno = 8330\n\tERROR_DS_CANT_MIX_MASTER_AND_REPS                                         syscall.Errno = 8331\n\tERROR_DS_CHILDREN_EXIST                                                   syscall.Errno = 8332\n\tERROR_DS_OBJ_NOT_FOUND                                                    syscall.Errno = 8333\n\tERROR_DS_ALIASED_OBJ_MISSING                                              syscall.Errno = 8334\n\tERROR_DS_BAD_NAME_SYNTAX                                                  syscall.Errno = 8335\n\tERROR_DS_ALIAS_POINTS_TO_ALIAS                                            syscall.Errno = 8336\n\tERROR_DS_CANT_DEREF_ALIAS                                                 syscall.Errno = 8337\n\tERROR_DS_OUT_OF_SCOPE                                                     syscall.Errno = 8338\n\tERROR_DS_OBJECT_BEING_REMOVED                                             syscall.Errno = 8339\n\tERROR_DS_CANT_DELETE_DSA_OBJ                                              syscall.Errno = 8340\n\tERROR_DS_GENERIC_ERROR                                                    syscall.Errno = 8341\n\tERROR_DS_DSA_MUST_BE_INT_MASTER                                           syscall.Errno = 8342\n\tERROR_DS_CLASS_NOT_DSA                                                    syscall.Errno = 8343\n\tERROR_DS_INSUFF_ACCESS_RIGHTS                                             syscall.Errno = 8344\n\tERROR_DS_ILLEGAL_SUPERIOR                                                 syscall.Errno = 8345\n\tERROR_DS_ATTRIBUTE_OWNED_BY_SAM                                           syscall.Errno = 8346\n\tERROR_DS_NAME_TOO_MANY_PARTS                                              syscall.Errno = 8347\n\tERROR_DS_NAME_TOO_LONG                                                    syscall.Errno = 8348\n\tERROR_DS_NAME_VALUE_TOO_LONG                                              syscall.Errno = 8349\n\tERROR_DS_NAME_UNPARSEABLE                                                 syscall.Errno = 8350\n\tERROR_DS_NAME_TYPE_UNKNOWN                                                syscall.Errno = 8351\n\tERROR_DS_NOT_AN_OBJECT                                                    syscall.Errno = 8352\n\tERROR_DS_SEC_DESC_TOO_SHORT                                               syscall.Errno = 8353\n\tERROR_DS_SEC_DESC_INVALID                                                 syscall.Errno = 8354\n\tERROR_DS_NO_DELETED_NAME                                                  syscall.Errno = 8355\n\tERROR_DS_SUBREF_MUST_HAVE_PARENT                                          syscall.Errno = 8356\n\tERROR_DS_NCNAME_MUST_BE_NC                                                syscall.Errno = 8357\n\tERROR_DS_CANT_ADD_SYSTEM_ONLY                                             syscall.Errno = 8358\n\tERROR_DS_CLASS_MUST_BE_CONCRETE                                           syscall.Errno = 8359\n\tERROR_DS_INVALID_DMD                                                      syscall.Errno = 8360\n\tERROR_DS_OBJ_GUID_EXISTS                                                  syscall.Errno = 8361\n\tERROR_DS_NOT_ON_BACKLINK                                                  syscall.Errno = 8362\n\tERROR_DS_NO_CROSSREF_FOR_NC                                               syscall.Errno = 8363\n\tERROR_DS_SHUTTING_DOWN                                                    syscall.Errno = 8364\n\tERROR_DS_UNKNOWN_OPERATION                                                syscall.Errno = 8365\n\tERROR_DS_INVALID_ROLE_OWNER                                               syscall.Errno = 8366\n\tERROR_DS_COULDNT_CONTACT_FSMO                                             syscall.Errno = 8367\n\tERROR_DS_CROSS_NC_DN_RENAME                                               syscall.Errno = 8368\n\tERROR_DS_CANT_MOD_SYSTEM_ONLY                                             syscall.Errno = 8369\n\tERROR_DS_REPLICATOR_ONLY                                                  syscall.Errno = 8370\n\tERROR_DS_OBJ_CLASS_NOT_DEFINED                                            syscall.Errno = 8371\n\tERROR_DS_OBJ_CLASS_NOT_SUBCLASS                                           syscall.Errno = 8372\n\tERROR_DS_NAME_REFERENCE_INVALID                                           syscall.Errno = 8373\n\tERROR_DS_CROSS_REF_EXISTS                                                 syscall.Errno = 8374\n\tERROR_DS_CANT_DEL_MASTER_CROSSREF                                         syscall.Errno = 8375\n\tERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD                                       syscall.Errno = 8376\n\tERROR_DS_NOTIFY_FILTER_TOO_COMPLEX                                        syscall.Errno = 8377\n\tERROR_DS_DUP_RDN                                                          syscall.Errno = 8378\n\tERROR_DS_DUP_OID                                                          syscall.Errno = 8379\n\tERROR_DS_DUP_MAPI_ID                                                      syscall.Errno = 8380\n\tERROR_DS_DUP_SCHEMA_ID_GUID                                               syscall.Errno = 8381\n\tERROR_DS_DUP_LDAP_DISPLAY_NAME                                            syscall.Errno = 8382\n\tERROR_DS_SEMANTIC_ATT_TEST                                                syscall.Errno = 8383\n\tERROR_DS_SYNTAX_MISMATCH                                                  syscall.Errno = 8384\n\tERROR_DS_EXISTS_IN_MUST_HAVE                                              syscall.Errno = 8385\n\tERROR_DS_EXISTS_IN_MAY_HAVE                                               syscall.Errno = 8386\n\tERROR_DS_NONEXISTENT_MAY_HAVE                                             syscall.Errno = 8387\n\tERROR_DS_NONEXISTENT_MUST_HAVE                                            syscall.Errno = 8388\n\tERROR_DS_AUX_CLS_TEST_FAIL                                                syscall.Errno = 8389\n\tERROR_DS_NONEXISTENT_POSS_SUP                                             syscall.Errno = 8390\n\tERROR_DS_SUB_CLS_TEST_FAIL                                                syscall.Errno = 8391\n\tERROR_DS_BAD_RDN_ATT_ID_SYNTAX                                            syscall.Errno = 8392\n\tERROR_DS_EXISTS_IN_AUX_CLS                                                syscall.Errno = 8393\n\tERROR_DS_EXISTS_IN_SUB_CLS                                                syscall.Errno = 8394\n\tERROR_DS_EXISTS_IN_POSS_SUP                                               syscall.Errno = 8395\n\tERROR_DS_RECALCSCHEMA_FAILED                                              syscall.Errno = 8396\n\tERROR_DS_TREE_DELETE_NOT_FINISHED                                         syscall.Errno = 8397\n\tERROR_DS_CANT_DELETE                                                      syscall.Errno = 8398\n\tERROR_DS_ATT_SCHEMA_REQ_ID                                                syscall.Errno = 8399\n\tERROR_DS_BAD_ATT_SCHEMA_SYNTAX                                            syscall.Errno = 8400\n\tERROR_DS_CANT_CACHE_ATT                                                   syscall.Errno = 8401\n\tERROR_DS_CANT_CACHE_CLASS                                                 syscall.Errno = 8402\n\tERROR_DS_CANT_REMOVE_ATT_CACHE                                            syscall.Errno = 8403\n\tERROR_DS_CANT_REMOVE_CLASS_CACHE                                          syscall.Errno = 8404\n\tERROR_DS_CANT_RETRIEVE_DN                                                 syscall.Errno = 8405\n\tERROR_DS_MISSING_SUPREF                                                   syscall.Errno = 8406\n\tERROR_DS_CANT_RETRIEVE_INSTANCE                                           syscall.Errno = 8407\n\tERROR_DS_CODE_INCONSISTENCY                                               syscall.Errno = 8408\n\tERROR_DS_DATABASE_ERROR                                                   syscall.Errno = 8409\n\tERROR_DS_GOVERNSID_MISSING                                                syscall.Errno = 8410\n\tERROR_DS_MISSING_EXPECTED_ATT                                             syscall.Errno = 8411\n\tERROR_DS_NCNAME_MISSING_CR_REF                                            syscall.Errno = 8412\n\tERROR_DS_SECURITY_CHECKING_ERROR                                          syscall.Errno = 8413\n\tERROR_DS_SCHEMA_NOT_LOADED                                                syscall.Errno = 8414\n\tERROR_DS_SCHEMA_ALLOC_FAILED                                              syscall.Errno = 8415\n\tERROR_DS_ATT_SCHEMA_REQ_SYNTAX                                            syscall.Errno = 8416\n\tERROR_DS_GCVERIFY_ERROR                                                   syscall.Errno = 8417\n\tERROR_DS_DRA_SCHEMA_MISMATCH                                              syscall.Errno = 8418\n\tERROR_DS_CANT_FIND_DSA_OBJ                                                syscall.Errno = 8419\n\tERROR_DS_CANT_FIND_EXPECTED_NC                                            syscall.Errno = 8420\n\tERROR_DS_CANT_FIND_NC_IN_CACHE                                            syscall.Errno = 8421\n\tERROR_DS_CANT_RETRIEVE_CHILD                                              syscall.Errno = 8422\n\tERROR_DS_SECURITY_ILLEGAL_MODIFY                                          syscall.Errno = 8423\n\tERROR_DS_CANT_REPLACE_HIDDEN_REC                                          syscall.Errno = 8424\n\tERROR_DS_BAD_HIERARCHY_FILE                                               syscall.Errno = 8425\n\tERROR_DS_BUILD_HIERARCHY_TABLE_FAILED                                     syscall.Errno = 8426\n\tERROR_DS_CONFIG_PARAM_MISSING                                             syscall.Errno = 8427\n\tERROR_DS_COUNTING_AB_INDICES_FAILED                                       syscall.Errno = 8428\n\tERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED                                    syscall.Errno = 8429\n\tERROR_DS_INTERNAL_FAILURE                                                 syscall.Errno = 8430\n\tERROR_DS_UNKNOWN_ERROR                                                    syscall.Errno = 8431\n\tERROR_DS_ROOT_REQUIRES_CLASS_TOP                                          syscall.Errno = 8432\n\tERROR_DS_REFUSING_FSMO_ROLES                                              syscall.Errno = 8433\n\tERROR_DS_MISSING_FSMO_SETTINGS                                            syscall.Errno = 8434\n\tERROR_DS_UNABLE_TO_SURRENDER_ROLES                                        syscall.Errno = 8435\n\tERROR_DS_DRA_GENERIC                                                      syscall.Errno = 8436\n\tERROR_DS_DRA_INVALID_PARAMETER                                            syscall.Errno = 8437\n\tERROR_DS_DRA_BUSY                                                         syscall.Errno = 8438\n\tERROR_DS_DRA_BAD_DN                                                       syscall.Errno = 8439\n\tERROR_DS_DRA_BAD_NC                                                       syscall.Errno = 8440\n\tERROR_DS_DRA_DN_EXISTS                                                    syscall.Errno = 8441\n\tERROR_DS_DRA_INTERNAL_ERROR                                               syscall.Errno = 8442\n\tERROR_DS_DRA_INCONSISTENT_DIT                                             syscall.Errno = 8443\n\tERROR_DS_DRA_CONNECTION_FAILED                                            syscall.Errno = 8444\n\tERROR_DS_DRA_BAD_INSTANCE_TYPE                                            syscall.Errno = 8445\n\tERROR_DS_DRA_OUT_OF_MEM                                                   syscall.Errno = 8446\n\tERROR_DS_DRA_MAIL_PROBLEM                                                 syscall.Errno = 8447\n\tERROR_DS_DRA_REF_ALREADY_EXISTS                                           syscall.Errno = 8448\n\tERROR_DS_DRA_REF_NOT_FOUND                                                syscall.Errno = 8449\n\tERROR_DS_DRA_OBJ_IS_REP_SOURCE                                            syscall.Errno = 8450\n\tERROR_DS_DRA_DB_ERROR                                                     syscall.Errno = 8451\n\tERROR_DS_DRA_NO_REPLICA                                                   syscall.Errno = 8452\n\tERROR_DS_DRA_ACCESS_DENIED                                                syscall.Errno = 8453\n\tERROR_DS_DRA_NOT_SUPPORTED                                                syscall.Errno = 8454\n\tERROR_DS_DRA_RPC_CANCELLED                                                syscall.Errno = 8455\n\tERROR_DS_DRA_SOURCE_DISABLED                                              syscall.Errno = 8456\n\tERROR_DS_DRA_SINK_DISABLED                                                syscall.Errno = 8457\n\tERROR_DS_DRA_NAME_COLLISION                                               syscall.Errno = 8458\n\tERROR_DS_DRA_SOURCE_REINSTALLED                                           syscall.Errno = 8459\n\tERROR_DS_DRA_MISSING_PARENT                                               syscall.Errno = 8460\n\tERROR_DS_DRA_PREEMPTED                                                    syscall.Errno = 8461\n\tERROR_DS_DRA_ABANDON_SYNC                                                 syscall.Errno = 8462\n\tERROR_DS_DRA_SHUTDOWN                                                     syscall.Errno = 8463\n\tERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET                                     syscall.Errno = 8464\n\tERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA                                    syscall.Errno = 8465\n\tERROR_DS_DRA_EXTN_CONNECTION_FAILED                                       syscall.Errno = 8466\n\tERROR_DS_INSTALL_SCHEMA_MISMATCH                                          syscall.Errno = 8467\n\tERROR_DS_DUP_LINK_ID                                                      syscall.Errno = 8468\n\tERROR_DS_NAME_ERROR_RESOLVING                                             syscall.Errno = 8469\n\tERROR_DS_NAME_ERROR_NOT_FOUND                                             syscall.Errno = 8470\n\tERROR_DS_NAME_ERROR_NOT_UNIQUE                                            syscall.Errno = 8471\n\tERROR_DS_NAME_ERROR_NO_MAPPING                                            syscall.Errno = 8472\n\tERROR_DS_NAME_ERROR_DOMAIN_ONLY                                           syscall.Errno = 8473\n\tERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING                                syscall.Errno = 8474\n\tERROR_DS_CONSTRUCTED_ATT_MOD                                              syscall.Errno = 8475\n\tERROR_DS_WRONG_OM_OBJ_CLASS                                               syscall.Errno = 8476\n\tERROR_DS_DRA_REPL_PENDING                                                 syscall.Errno = 8477\n\tERROR_DS_DS_REQUIRED                                                      syscall.Errno = 8478\n\tERROR_DS_INVALID_LDAP_DISPLAY_NAME                                        syscall.Errno = 8479\n\tERROR_DS_NON_BASE_SEARCH                                                  syscall.Errno = 8480\n\tERROR_DS_CANT_RETRIEVE_ATTS                                               syscall.Errno = 8481\n\tERROR_DS_BACKLINK_WITHOUT_LINK                                            syscall.Errno = 8482\n\tERROR_DS_EPOCH_MISMATCH                                                   syscall.Errno = 8483\n\tERROR_DS_SRC_NAME_MISMATCH                                                syscall.Errno = 8484\n\tERROR_DS_SRC_AND_DST_NC_IDENTICAL                                         syscall.Errno = 8485\n\tERROR_DS_DST_NC_MISMATCH                                                  syscall.Errno = 8486\n\tERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC                                       syscall.Errno = 8487\n\tERROR_DS_SRC_GUID_MISMATCH                                                syscall.Errno = 8488\n\tERROR_DS_CANT_MOVE_DELETED_OBJECT                                         syscall.Errno = 8489\n\tERROR_DS_PDC_OPERATION_IN_PROGRESS                                        syscall.Errno = 8490\n\tERROR_DS_CROSS_DOMAIN_CLEANUP_REQD                                        syscall.Errno = 8491\n\tERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION                                      syscall.Errno = 8492\n\tERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS                                  syscall.Errno = 8493\n\tERROR_DS_NC_MUST_HAVE_NC_PARENT                                           syscall.Errno = 8494\n\tERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE                                        syscall.Errno = 8495\n\tERROR_DS_DST_DOMAIN_NOT_NATIVE                                            syscall.Errno = 8496\n\tERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER                                 syscall.Errno = 8497\n\tERROR_DS_CANT_MOVE_ACCOUNT_GROUP                                          syscall.Errno = 8498\n\tERROR_DS_CANT_MOVE_RESOURCE_GROUP                                         syscall.Errno = 8499\n\tERROR_DS_INVALID_SEARCH_FLAG                                              syscall.Errno = 8500\n\tERROR_DS_NO_TREE_DELETE_ABOVE_NC                                          syscall.Errno = 8501\n\tERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE                                     syscall.Errno = 8502\n\tERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE                         syscall.Errno = 8503\n\tERROR_DS_SAM_INIT_FAILURE                                                 syscall.Errno = 8504\n\tERROR_DS_SENSITIVE_GROUP_VIOLATION                                        syscall.Errno = 8505\n\tERROR_DS_CANT_MOD_PRIMARYGROUPID                                          syscall.Errno = 8506\n\tERROR_DS_ILLEGAL_BASE_SCHEMA_MOD                                          syscall.Errno = 8507\n\tERROR_DS_NONSAFE_SCHEMA_CHANGE                                            syscall.Errno = 8508\n\tERROR_DS_SCHEMA_UPDATE_DISALLOWED                                         syscall.Errno = 8509\n\tERROR_DS_CANT_CREATE_UNDER_SCHEMA                                         syscall.Errno = 8510\n\tERROR_DS_INSTALL_NO_SRC_SCH_VERSION                                       syscall.Errno = 8511\n\tERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE                                syscall.Errno = 8512\n\tERROR_DS_INVALID_GROUP_TYPE                                               syscall.Errno = 8513\n\tERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN                               syscall.Errno = 8514\n\tERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN                                syscall.Errno = 8515\n\tERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER                                    syscall.Errno = 8516\n\tERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER                                syscall.Errno = 8517\n\tERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER                                 syscall.Errno = 8518\n\tERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER                              syscall.Errno = 8519\n\tERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER                         syscall.Errno = 8520\n\tERROR_DS_HAVE_PRIMARY_MEMBERS                                             syscall.Errno = 8521\n\tERROR_DS_STRING_SD_CONVERSION_FAILED                                      syscall.Errno = 8522\n\tERROR_DS_NAMING_MASTER_GC                                                 syscall.Errno = 8523\n\tERROR_DS_DNS_LOOKUP_FAILURE                                               syscall.Errno = 8524\n\tERROR_DS_COULDNT_UPDATE_SPNS                                              syscall.Errno = 8525\n\tERROR_DS_CANT_RETRIEVE_SD                                                 syscall.Errno = 8526\n\tERROR_DS_KEY_NOT_UNIQUE                                                   syscall.Errno = 8527\n\tERROR_DS_WRONG_LINKED_ATT_SYNTAX                                          syscall.Errno = 8528\n\tERROR_DS_SAM_NEED_BOOTKEY_PASSWORD                                        syscall.Errno = 8529\n\tERROR_DS_SAM_NEED_BOOTKEY_FLOPPY                                          syscall.Errno = 8530\n\tERROR_DS_CANT_START                                                       syscall.Errno = 8531\n\tERROR_DS_INIT_FAILURE                                                     syscall.Errno = 8532\n\tERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION                                     syscall.Errno = 8533\n\tERROR_DS_SOURCE_DOMAIN_IN_FOREST                                          syscall.Errno = 8534\n\tERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST                                 syscall.Errno = 8535\n\tERROR_DS_DESTINATION_AUDITING_NOT_ENABLED                                 syscall.Errno = 8536\n\tERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN                                      syscall.Errno = 8537\n\tERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER                                        syscall.Errno = 8538\n\tERROR_DS_SRC_SID_EXISTS_IN_FOREST                                         syscall.Errno = 8539\n\tERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH                                syscall.Errno = 8540\n\tERROR_SAM_INIT_FAILURE                                                    syscall.Errno = 8541\n\tERROR_DS_DRA_SCHEMA_INFO_SHIP                                             syscall.Errno = 8542\n\tERROR_DS_DRA_SCHEMA_CONFLICT                                              syscall.Errno = 8543\n\tERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT                                      syscall.Errno = 8544\n\tERROR_DS_DRA_OBJ_NC_MISMATCH                                              syscall.Errno = 8545\n\tERROR_DS_NC_STILL_HAS_DSAS                                                syscall.Errno = 8546\n\tERROR_DS_GC_REQUIRED                                                      syscall.Errno = 8547\n\tERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY                                       syscall.Errno = 8548\n\tERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS                                       syscall.Errno = 8549\n\tERROR_DS_CANT_ADD_TO_GC                                                   syscall.Errno = 8550\n\tERROR_DS_NO_CHECKPOINT_WITH_PDC                                           syscall.Errno = 8551\n\tERROR_DS_SOURCE_AUDITING_NOT_ENABLED                                      syscall.Errno = 8552\n\tERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC                                      syscall.Errno = 8553\n\tERROR_DS_INVALID_NAME_FOR_SPN                                             syscall.Errno = 8554\n\tERROR_DS_FILTER_USES_CONTRUCTED_ATTRS                                     syscall.Errno = 8555\n\tERROR_DS_UNICODEPWD_NOT_IN_QUOTES                                         syscall.Errno = 8556\n\tERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED                                   syscall.Errno = 8557\n\tERROR_DS_MUST_BE_RUN_ON_DST_DC                                            syscall.Errno = 8558\n\tERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER                                    syscall.Errno = 8559\n\tERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ                                    syscall.Errno = 8560\n\tERROR_DS_INIT_FAILURE_CONSOLE                                             syscall.Errno = 8561\n\tERROR_DS_SAM_INIT_FAILURE_CONSOLE                                         syscall.Errno = 8562\n\tERROR_DS_FOREST_VERSION_TOO_HIGH                                          syscall.Errno = 8563\n\tERROR_DS_DOMAIN_VERSION_TOO_HIGH                                          syscall.Errno = 8564\n\tERROR_DS_FOREST_VERSION_TOO_LOW                                           syscall.Errno = 8565\n\tERROR_DS_DOMAIN_VERSION_TOO_LOW                                           syscall.Errno = 8566\n\tERROR_DS_INCOMPATIBLE_VERSION                                             syscall.Errno = 8567\n\tERROR_DS_LOW_DSA_VERSION                                                  syscall.Errno = 8568\n\tERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN                               syscall.Errno = 8569\n\tERROR_DS_NOT_SUPPORTED_SORT_ORDER                                         syscall.Errno = 8570\n\tERROR_DS_NAME_NOT_UNIQUE                                                  syscall.Errno = 8571\n\tERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4                                   syscall.Errno = 8572\n\tERROR_DS_OUT_OF_VERSION_STORE                                             syscall.Errno = 8573\n\tERROR_DS_INCOMPATIBLE_CONTROLS_USED                                       syscall.Errno = 8574\n\tERROR_DS_NO_REF_DOMAIN                                                    syscall.Errno = 8575\n\tERROR_DS_RESERVED_LINK_ID                                                 syscall.Errno = 8576\n\tERROR_DS_LINK_ID_NOT_AVAILABLE                                            syscall.Errno = 8577\n\tERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER                                    syscall.Errno = 8578\n\tERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE                             syscall.Errno = 8579\n\tERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC                                      syscall.Errno = 8580\n\tERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG                                      syscall.Errno = 8581\n\tERROR_DS_MODIFYDN_WRONG_GRANDPARENT                                       syscall.Errno = 8582\n\tERROR_DS_NAME_ERROR_TRUST_REFERRAL                                        syscall.Errno = 8583\n\tERROR_NOT_SUPPORTED_ON_STANDARD_SERVER                                    syscall.Errno = 8584\n\tERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD                                    syscall.Errno = 8585\n\tERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2                                     syscall.Errno = 8586\n\tERROR_DS_THREAD_LIMIT_EXCEEDED                                            syscall.Errno = 8587\n\tERROR_DS_NOT_CLOSEST                                                      syscall.Errno = 8588\n\tERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF                               syscall.Errno = 8589\n\tERROR_DS_SINGLE_USER_MODE_FAILED                                          syscall.Errno = 8590\n\tERROR_DS_NTDSCRIPT_SYNTAX_ERROR                                           syscall.Errno = 8591\n\tERROR_DS_NTDSCRIPT_PROCESS_ERROR                                          syscall.Errno = 8592\n\tERROR_DS_DIFFERENT_REPL_EPOCHS                                            syscall.Errno = 8593\n\tERROR_DS_DRS_EXTENSIONS_CHANGED                                           syscall.Errno = 8594\n\tERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR                    syscall.Errno = 8595\n\tERROR_DS_NO_MSDS_INTID                                                    syscall.Errno = 8596\n\tERROR_DS_DUP_MSDS_INTID                                                   syscall.Errno = 8597\n\tERROR_DS_EXISTS_IN_RDNATTID                                               syscall.Errno = 8598\n\tERROR_DS_AUTHORIZATION_FAILED                                             syscall.Errno = 8599\n\tERROR_DS_INVALID_SCRIPT                                                   syscall.Errno = 8600\n\tERROR_DS_REMOTE_CROSSREF_OP_FAILED                                        syscall.Errno = 8601\n\tERROR_DS_CROSS_REF_BUSY                                                   syscall.Errno = 8602\n\tERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN                               syscall.Errno = 8603\n\tERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC                                    syscall.Errno = 8604\n\tERROR_DS_DUPLICATE_ID_FOUND                                               syscall.Errno = 8605\n\tERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT                               syscall.Errno = 8606\n\tERROR_DS_GROUP_CONVERSION_ERROR                                           syscall.Errno = 8607\n\tERROR_DS_CANT_MOVE_APP_BASIC_GROUP                                        syscall.Errno = 8608\n\tERROR_DS_CANT_MOVE_APP_QUERY_GROUP                                        syscall.Errno = 8609\n\tERROR_DS_ROLE_NOT_VERIFIED                                                syscall.Errno = 8610\n\tERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL                                  syscall.Errno = 8611\n\tERROR_DS_DOMAIN_RENAME_IN_PROGRESS                                        syscall.Errno = 8612\n\tERROR_DS_EXISTING_AD_CHILD_NC                                             syscall.Errno = 8613\n\tERROR_DS_REPL_LIFETIME_EXCEEDED                                           syscall.Errno = 8614\n\tERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER                                   syscall.Errno = 8615\n\tERROR_DS_LDAP_SEND_QUEUE_FULL                                             syscall.Errno = 8616\n\tERROR_DS_DRA_OUT_SCHEDULE_WINDOW                                          syscall.Errno = 8617\n\tERROR_DS_POLICY_NOT_KNOWN                                                 syscall.Errno = 8618\n\tERROR_NO_SITE_SETTINGS_OBJECT                                             syscall.Errno = 8619\n\tERROR_NO_SECRETS                                                          syscall.Errno = 8620\n\tERROR_NO_WRITABLE_DC_FOUND                                                syscall.Errno = 8621\n\tERROR_DS_NO_SERVER_OBJECT                                                 syscall.Errno = 8622\n\tERROR_DS_NO_NTDSA_OBJECT                                                  syscall.Errno = 8623\n\tERROR_DS_NON_ASQ_SEARCH                                                   syscall.Errno = 8624\n\tERROR_DS_AUDIT_FAILURE                                                    syscall.Errno = 8625\n\tERROR_DS_INVALID_SEARCH_FLAG_SUBTREE                                      syscall.Errno = 8626\n\tERROR_DS_INVALID_SEARCH_FLAG_TUPLE                                        syscall.Errno = 8627\n\tERROR_DS_HIERARCHY_TABLE_TOO_DEEP                                         syscall.Errno = 8628\n\tERROR_DS_DRA_CORRUPT_UTD_VECTOR                                           syscall.Errno = 8629\n\tERROR_DS_DRA_SECRETS_DENIED                                               syscall.Errno = 8630\n\tERROR_DS_RESERVED_MAPI_ID                                                 syscall.Errno = 8631\n\tERROR_DS_MAPI_ID_NOT_AVAILABLE                                            syscall.Errno = 8632\n\tERROR_DS_DRA_MISSING_KRBTGT_SECRET                                        syscall.Errno = 8633\n\tERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST                                     syscall.Errno = 8634\n\tERROR_DS_FLAT_NAME_EXISTS_IN_FOREST                                       syscall.Errno = 8635\n\tERROR_INVALID_USER_PRINCIPAL_NAME                                         syscall.Errno = 8636\n\tERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS                               syscall.Errno = 8637\n\tERROR_DS_OID_NOT_FOUND                                                    syscall.Errno = 8638\n\tERROR_DS_DRA_RECYCLED_TARGET                                              syscall.Errno = 8639\n\tERROR_DS_DISALLOWED_NC_REDIRECT                                           syscall.Errno = 8640\n\tERROR_DS_HIGH_ADLDS_FFL                                                   syscall.Errno = 8641\n\tERROR_DS_HIGH_DSA_VERSION                                                 syscall.Errno = 8642\n\tERROR_DS_LOW_ADLDS_FFL                                                    syscall.Errno = 8643\n\tERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION                                syscall.Errno = 8644\n\tERROR_DS_UNDELETE_SAM_VALIDATION_FAILED                                   syscall.Errno = 8645\n\tERROR_INCORRECT_ACCOUNT_TYPE                                              syscall.Errno = 8646\n\tERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST                                   syscall.Errno = 8647\n\tERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST                                   syscall.Errno = 8648\n\tERROR_DS_MISSING_FOREST_TRUST                                             syscall.Errno = 8649\n\tERROR_DS_VALUE_KEY_NOT_UNIQUE                                             syscall.Errno = 8650\n\tDNS_ERROR_RESPONSE_CODES_BASE                                             syscall.Errno = 9000\n\tDNS_ERROR_RCODE_NO_ERROR                                                                = ERROR_SUCCESS\n\tDNS_ERROR_MASK                                                            syscall.Errno = 0x00002328\n\tDNS_ERROR_RCODE_FORMAT_ERROR                                              syscall.Errno = 9001\n\tDNS_ERROR_RCODE_SERVER_FAILURE                                            syscall.Errno = 9002\n\tDNS_ERROR_RCODE_NAME_ERROR                                                syscall.Errno = 9003\n\tDNS_ERROR_RCODE_NOT_IMPLEMENTED                                           syscall.Errno = 9004\n\tDNS_ERROR_RCODE_REFUSED                                                   syscall.Errno = 9005\n\tDNS_ERROR_RCODE_YXDOMAIN                                                  syscall.Errno = 9006\n\tDNS_ERROR_RCODE_YXRRSET                                                   syscall.Errno = 9007\n\tDNS_ERROR_RCODE_NXRRSET                                                   syscall.Errno = 9008\n\tDNS_ERROR_RCODE_NOTAUTH                                                   syscall.Errno = 9009\n\tDNS_ERROR_RCODE_NOTZONE                                                   syscall.Errno = 9010\n\tDNS_ERROR_RCODE_BADSIG                                                    syscall.Errno = 9016\n\tDNS_ERROR_RCODE_BADKEY                                                    syscall.Errno = 9017\n\tDNS_ERROR_RCODE_BADTIME                                                   syscall.Errno = 9018\n\tDNS_ERROR_RCODE_LAST                                                                    = DNS_ERROR_RCODE_BADTIME\n\tDNS_ERROR_DNSSEC_BASE                                                     syscall.Errno = 9100\n\tDNS_ERROR_KEYMASTER_REQUIRED                                              syscall.Errno = 9101\n\tDNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE                                      syscall.Errno = 9102\n\tDNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1                                syscall.Errno = 9103\n\tDNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS                              syscall.Errno = 9104\n\tDNS_ERROR_UNSUPPORTED_ALGORITHM                                           syscall.Errno = 9105\n\tDNS_ERROR_INVALID_KEY_SIZE                                                syscall.Errno = 9106\n\tDNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE                                      syscall.Errno = 9107\n\tDNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION                                 syscall.Errno = 9108\n\tDNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR                                syscall.Errno = 9109\n\tDNS_ERROR_UNEXPECTED_CNG_ERROR                                            syscall.Errno = 9110\n\tDNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION                               syscall.Errno = 9111\n\tDNS_ERROR_KSP_NOT_ACCESSIBLE                                              syscall.Errno = 9112\n\tDNS_ERROR_TOO_MANY_SKDS                                                   syscall.Errno = 9113\n\tDNS_ERROR_INVALID_ROLLOVER_PERIOD                                         syscall.Errno = 9114\n\tDNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET                                 syscall.Errno = 9115\n\tDNS_ERROR_ROLLOVER_IN_PROGRESS                                            syscall.Errno = 9116\n\tDNS_ERROR_STANDBY_KEY_NOT_PRESENT                                         syscall.Errno = 9117\n\tDNS_ERROR_NOT_ALLOWED_ON_ZSK                                              syscall.Errno = 9118\n\tDNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD                                       syscall.Errno = 9119\n\tDNS_ERROR_ROLLOVER_ALREADY_QUEUED                                         syscall.Errno = 9120\n\tDNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE                                    syscall.Errno = 9121\n\tDNS_ERROR_BAD_KEYMASTER                                                   syscall.Errno = 9122\n\tDNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD                               syscall.Errno = 9123\n\tDNS_ERROR_INVALID_NSEC3_ITERATION_COUNT                                   syscall.Errno = 9124\n\tDNS_ERROR_DNSSEC_IS_DISABLED                                              syscall.Errno = 9125\n\tDNS_ERROR_INVALID_XML                                                     syscall.Errno = 9126\n\tDNS_ERROR_NO_VALID_TRUST_ANCHORS                                          syscall.Errno = 9127\n\tDNS_ERROR_ROLLOVER_NOT_POKEABLE                                           syscall.Errno = 9128\n\tDNS_ERROR_NSEC3_NAME_COLLISION                                            syscall.Errno = 9129\n\tDNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1                           syscall.Errno = 9130\n\tDNS_ERROR_PACKET_FMT_BASE                                                 syscall.Errno = 9500\n\tDNS_INFO_NO_RECORDS                                                       syscall.Errno = 9501\n\tDNS_ERROR_BAD_PACKET                                                      syscall.Errno = 9502\n\tDNS_ERROR_NO_PACKET                                                       syscall.Errno = 9503\n\tDNS_ERROR_RCODE                                                           syscall.Errno = 9504\n\tDNS_ERROR_UNSECURE_PACKET                                                 syscall.Errno = 9505\n\tDNS_STATUS_PACKET_UNSECURE                                                              = DNS_ERROR_UNSECURE_PACKET\n\tDNS_REQUEST_PENDING                                                       syscall.Errno = 9506\n\tDNS_ERROR_NO_MEMORY                                                                     = ERROR_OUTOFMEMORY\n\tDNS_ERROR_INVALID_NAME                                                                  = ERROR_INVALID_NAME\n\tDNS_ERROR_INVALID_DATA                                                                  = ERROR_INVALID_DATA\n\tDNS_ERROR_GENERAL_API_BASE                                                syscall.Errno = 9550\n\tDNS_ERROR_INVALID_TYPE                                                    syscall.Errno = 9551\n\tDNS_ERROR_INVALID_IP_ADDRESS                                              syscall.Errno = 9552\n\tDNS_ERROR_INVALID_PROPERTY                                                syscall.Errno = 9553\n\tDNS_ERROR_TRY_AGAIN_LATER                                                 syscall.Errno = 9554\n\tDNS_ERROR_NOT_UNIQUE                                                      syscall.Errno = 9555\n\tDNS_ERROR_NON_RFC_NAME                                                    syscall.Errno = 9556\n\tDNS_STATUS_FQDN                                                           syscall.Errno = 9557\n\tDNS_STATUS_DOTTED_NAME                                                    syscall.Errno = 9558\n\tDNS_STATUS_SINGLE_PART_NAME                                               syscall.Errno = 9559\n\tDNS_ERROR_INVALID_NAME_CHAR                                               syscall.Errno = 9560\n\tDNS_ERROR_NUMERIC_NAME                                                    syscall.Errno = 9561\n\tDNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER                                      syscall.Errno = 9562\n\tDNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION                                    syscall.Errno = 9563\n\tDNS_ERROR_CANNOT_FIND_ROOT_HINTS                                          syscall.Errno = 9564\n\tDNS_ERROR_INCONSISTENT_ROOT_HINTS                                         syscall.Errno = 9565\n\tDNS_ERROR_DWORD_VALUE_TOO_SMALL                                           syscall.Errno = 9566\n\tDNS_ERROR_DWORD_VALUE_TOO_LARGE                                           syscall.Errno = 9567\n\tDNS_ERROR_BACKGROUND_LOADING                                              syscall.Errno = 9568\n\tDNS_ERROR_NOT_ALLOWED_ON_RODC                                             syscall.Errno = 9569\n\tDNS_ERROR_NOT_ALLOWED_UNDER_DNAME                                         syscall.Errno = 9570\n\tDNS_ERROR_DELEGATION_REQUIRED                                             syscall.Errno = 9571\n\tDNS_ERROR_INVALID_POLICY_TABLE                                            syscall.Errno = 9572\n\tDNS_ERROR_ADDRESS_REQUIRED                                                syscall.Errno = 9573\n\tDNS_ERROR_ZONE_BASE                                                       syscall.Errno = 9600\n\tDNS_ERROR_ZONE_DOES_NOT_EXIST                                             syscall.Errno = 9601\n\tDNS_ERROR_NO_ZONE_INFO                                                    syscall.Errno = 9602\n\tDNS_ERROR_INVALID_ZONE_OPERATION                                          syscall.Errno = 9603\n\tDNS_ERROR_ZONE_CONFIGURATION_ERROR                                        syscall.Errno = 9604\n\tDNS_ERROR_ZONE_HAS_NO_SOA_RECORD                                          syscall.Errno = 9605\n\tDNS_ERROR_ZONE_HAS_NO_NS_RECORDS                                          syscall.Errno = 9606\n\tDNS_ERROR_ZONE_LOCKED                                                     syscall.Errno = 9607\n\tDNS_ERROR_ZONE_CREATION_FAILED                                            syscall.Errno = 9608\n\tDNS_ERROR_ZONE_ALREADY_EXISTS                                             syscall.Errno = 9609\n\tDNS_ERROR_AUTOZONE_ALREADY_EXISTS                                         syscall.Errno = 9610\n\tDNS_ERROR_INVALID_ZONE_TYPE                                               syscall.Errno = 9611\n\tDNS_ERROR_SECONDARY_REQUIRES_MASTER_IP                                    syscall.Errno = 9612\n\tDNS_ERROR_ZONE_NOT_SECONDARY                                              syscall.Errno = 9613\n\tDNS_ERROR_NEED_SECONDARY_ADDRESSES                                        syscall.Errno = 9614\n\tDNS_ERROR_WINS_INIT_FAILED                                                syscall.Errno = 9615\n\tDNS_ERROR_NEED_WINS_SERVERS                                               syscall.Errno = 9616\n\tDNS_ERROR_NBSTAT_INIT_FAILED                                              syscall.Errno = 9617\n\tDNS_ERROR_SOA_DELETE_INVALID                                              syscall.Errno = 9618\n\tDNS_ERROR_FORWARDER_ALREADY_EXISTS                                        syscall.Errno = 9619\n\tDNS_ERROR_ZONE_REQUIRES_MASTER_IP                                         syscall.Errno = 9620\n\tDNS_ERROR_ZONE_IS_SHUTDOWN                                                syscall.Errno = 9621\n\tDNS_ERROR_ZONE_LOCKED_FOR_SIGNING                                         syscall.Errno = 9622\n\tDNS_ERROR_DATAFILE_BASE                                                   syscall.Errno = 9650\n\tDNS_ERROR_PRIMARY_REQUIRES_DATAFILE                                       syscall.Errno = 9651\n\tDNS_ERROR_INVALID_DATAFILE_NAME                                           syscall.Errno = 9652\n\tDNS_ERROR_DATAFILE_OPEN_FAILURE                                           syscall.Errno = 9653\n\tDNS_ERROR_FILE_WRITEBACK_FAILED                                           syscall.Errno = 9654\n\tDNS_ERROR_DATAFILE_PARSING                                                syscall.Errno = 9655\n\tDNS_ERROR_DATABASE_BASE                                                   syscall.Errno = 9700\n\tDNS_ERROR_RECORD_DOES_NOT_EXIST                                           syscall.Errno = 9701\n\tDNS_ERROR_RECORD_FORMAT                                                   syscall.Errno = 9702\n\tDNS_ERROR_NODE_CREATION_FAILED                                            syscall.Errno = 9703\n\tDNS_ERROR_UNKNOWN_RECORD_TYPE                                             syscall.Errno = 9704\n\tDNS_ERROR_RECORD_TIMED_OUT                                                syscall.Errno = 9705\n\tDNS_ERROR_NAME_NOT_IN_ZONE                                                syscall.Errno = 9706\n\tDNS_ERROR_CNAME_LOOP                                                      syscall.Errno = 9707\n\tDNS_ERROR_NODE_IS_CNAME                                                   syscall.Errno = 9708\n\tDNS_ERROR_CNAME_COLLISION                                                 syscall.Errno = 9709\n\tDNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT                                        syscall.Errno = 9710\n\tDNS_ERROR_RECORD_ALREADY_EXISTS                                           syscall.Errno = 9711\n\tDNS_ERROR_SECONDARY_DATA                                                  syscall.Errno = 9712\n\tDNS_ERROR_NO_CREATE_CACHE_DATA                                            syscall.Errno = 9713\n\tDNS_ERROR_NAME_DOES_NOT_EXIST                                             syscall.Errno = 9714\n\tDNS_WARNING_PTR_CREATE_FAILED                                             syscall.Errno = 9715\n\tDNS_WARNING_DOMAIN_UNDELETED                                              syscall.Errno = 9716\n\tDNS_ERROR_DS_UNAVAILABLE                                                  syscall.Errno = 9717\n\tDNS_ERROR_DS_ZONE_ALREADY_EXISTS                                          syscall.Errno = 9718\n\tDNS_ERROR_NO_BOOTFILE_IF_DS_ZONE                                          syscall.Errno = 9719\n\tDNS_ERROR_NODE_IS_DNAME                                                   syscall.Errno = 9720\n\tDNS_ERROR_DNAME_COLLISION                                                 syscall.Errno = 9721\n\tDNS_ERROR_ALIAS_LOOP                                                      syscall.Errno = 9722\n\tDNS_ERROR_OPERATION_BASE                                                  syscall.Errno = 9750\n\tDNS_INFO_AXFR_COMPLETE                                                    syscall.Errno = 9751\n\tDNS_ERROR_AXFR                                                            syscall.Errno = 9752\n\tDNS_INFO_ADDED_LOCAL_WINS                                                 syscall.Errno = 9753\n\tDNS_ERROR_SECURE_BASE                                                     syscall.Errno = 9800\n\tDNS_STATUS_CONTINUE_NEEDED                                                syscall.Errno = 9801\n\tDNS_ERROR_SETUP_BASE                                                      syscall.Errno = 9850\n\tDNS_ERROR_NO_TCPIP                                                        syscall.Errno = 9851\n\tDNS_ERROR_NO_DNS_SERVERS                                                  syscall.Errno = 9852\n\tDNS_ERROR_DP_BASE                                                         syscall.Errno = 9900\n\tDNS_ERROR_DP_DOES_NOT_EXIST                                               syscall.Errno = 9901\n\tDNS_ERROR_DP_ALREADY_EXISTS                                               syscall.Errno = 9902\n\tDNS_ERROR_DP_NOT_ENLISTED                                                 syscall.Errno = 9903\n\tDNS_ERROR_DP_ALREADY_ENLISTED                                             syscall.Errno = 9904\n\tDNS_ERROR_DP_NOT_AVAILABLE                                                syscall.Errno = 9905\n\tDNS_ERROR_DP_FSMO_ERROR                                                   syscall.Errno = 9906\n\tDNS_ERROR_RRL_NOT_ENABLED                                                 syscall.Errno = 9911\n\tDNS_ERROR_RRL_INVALID_WINDOW_SIZE                                         syscall.Errno = 9912\n\tDNS_ERROR_RRL_INVALID_IPV4_PREFIX                                         syscall.Errno = 9913\n\tDNS_ERROR_RRL_INVALID_IPV6_PREFIX                                         syscall.Errno = 9914\n\tDNS_ERROR_RRL_INVALID_TC_RATE                                             syscall.Errno = 9915\n\tDNS_ERROR_RRL_INVALID_LEAK_RATE                                           syscall.Errno = 9916\n\tDNS_ERROR_RRL_LEAK_RATE_LESSTHAN_TC_RATE                                  syscall.Errno = 9917\n\tDNS_ERROR_VIRTUALIZATION_INSTANCE_ALREADY_EXISTS                          syscall.Errno = 9921\n\tDNS_ERROR_VIRTUALIZATION_INSTANCE_DOES_NOT_EXIST                          syscall.Errno = 9922\n\tDNS_ERROR_VIRTUALIZATION_TREE_LOCKED                                      syscall.Errno = 9923\n\tDNS_ERROR_INVAILD_VIRTUALIZATION_INSTANCE_NAME                            syscall.Errno = 9924\n\tDNS_ERROR_DEFAULT_VIRTUALIZATION_INSTANCE                                 syscall.Errno = 9925\n\tDNS_ERROR_ZONESCOPE_ALREADY_EXISTS                                        syscall.Errno = 9951\n\tDNS_ERROR_ZONESCOPE_DOES_NOT_EXIST                                        syscall.Errno = 9952\n\tDNS_ERROR_DEFAULT_ZONESCOPE                                               syscall.Errno = 9953\n\tDNS_ERROR_INVALID_ZONESCOPE_NAME                                          syscall.Errno = 9954\n\tDNS_ERROR_NOT_ALLOWED_WITH_ZONESCOPES                                     syscall.Errno = 9955\n\tDNS_ERROR_LOAD_ZONESCOPE_FAILED                                           syscall.Errno = 9956\n\tDNS_ERROR_ZONESCOPE_FILE_WRITEBACK_FAILED                                 syscall.Errno = 9957\n\tDNS_ERROR_INVALID_SCOPE_NAME                                              syscall.Errno = 9958\n\tDNS_ERROR_SCOPE_DOES_NOT_EXIST                                            syscall.Errno = 9959\n\tDNS_ERROR_DEFAULT_SCOPE                                                   syscall.Errno = 9960\n\tDNS_ERROR_INVALID_SCOPE_OPERATION                                         syscall.Errno = 9961\n\tDNS_ERROR_SCOPE_LOCKED                                                    syscall.Errno = 9962\n\tDNS_ERROR_SCOPE_ALREADY_EXISTS                                            syscall.Errno = 9963\n\tDNS_ERROR_POLICY_ALREADY_EXISTS                                           syscall.Errno = 9971\n\tDNS_ERROR_POLICY_DOES_NOT_EXIST                                           syscall.Errno = 9972\n\tDNS_ERROR_POLICY_INVALID_CRITERIA                                         syscall.Errno = 9973\n\tDNS_ERROR_POLICY_INVALID_SETTINGS                                         syscall.Errno = 9974\n\tDNS_ERROR_CLIENT_SUBNET_IS_ACCESSED                                       syscall.Errno = 9975\n\tDNS_ERROR_CLIENT_SUBNET_DOES_NOT_EXIST                                    syscall.Errno = 9976\n\tDNS_ERROR_CLIENT_SUBNET_ALREADY_EXISTS                                    syscall.Errno = 9977\n\tDNS_ERROR_SUBNET_DOES_NOT_EXIST                                           syscall.Errno = 9978\n\tDNS_ERROR_SUBNET_ALREADY_EXISTS                                           syscall.Errno = 9979\n\tDNS_ERROR_POLICY_LOCKED                                                   syscall.Errno = 9980\n\tDNS_ERROR_POLICY_INVALID_WEIGHT                                           syscall.Errno = 9981\n\tDNS_ERROR_POLICY_INVALID_NAME                                             syscall.Errno = 9982\n\tDNS_ERROR_POLICY_MISSING_CRITERIA                                         syscall.Errno = 9983\n\tDNS_ERROR_INVALID_CLIENT_SUBNET_NAME                                      syscall.Errno = 9984\n\tDNS_ERROR_POLICY_PROCESSING_ORDER_INVALID                                 syscall.Errno = 9985\n\tDNS_ERROR_POLICY_SCOPE_MISSING                                            syscall.Errno = 9986\n\tDNS_ERROR_POLICY_SCOPE_NOT_ALLOWED                                        syscall.Errno = 9987\n\tDNS_ERROR_SERVERSCOPE_IS_REFERENCED                                       syscall.Errno = 9988\n\tDNS_ERROR_ZONESCOPE_IS_REFERENCED                                         syscall.Errno = 9989\n\tDNS_ERROR_POLICY_INVALID_CRITERIA_CLIENT_SUBNET                           syscall.Errno = 9990\n\tDNS_ERROR_POLICY_INVALID_CRITERIA_TRANSPORT_PROTOCOL                      syscall.Errno = 9991\n\tDNS_ERROR_POLICY_INVALID_CRITERIA_NETWORK_PROTOCOL                        syscall.Errno = 9992\n\tDNS_ERROR_POLICY_INVALID_CRITERIA_INTERFACE                               syscall.Errno = 9993\n\tDNS_ERROR_POLICY_INVALID_CRITERIA_FQDN                                    syscall.Errno = 9994\n\tDNS_ERROR_POLICY_INVALID_CRITERIA_QUERY_TYPE                              syscall.Errno = 9995\n\tDNS_ERROR_POLICY_INVALID_CRITERIA_TIME_OF_DAY                             syscall.Errno = 9996\n\tWSABASEERR                                                                syscall.Errno = 10000\n\tWSAEINTR                                                                  syscall.Errno = 10004\n\tWSAEBADF                                                                  syscall.Errno = 10009\n\tWSAEACCES                                                                 syscall.Errno = 10013\n\tWSAEFAULT                                                                 syscall.Errno = 10014\n\tWSAEINVAL                                                                 syscall.Errno = 10022\n\tWSAEMFILE                                                                 syscall.Errno = 10024\n\tWSAEWOULDBLOCK                                                            syscall.Errno = 10035\n\tWSAEINPROGRESS                                                            syscall.Errno = 10036\n\tWSAEALREADY                                                               syscall.Errno = 10037\n\tWSAENOTSOCK                                                               syscall.Errno = 10038\n\tWSAEDESTADDRREQ                                                           syscall.Errno = 10039\n\tWSAEMSGSIZE                                                               syscall.Errno = 10040\n\tWSAEPROTOTYPE                                                             syscall.Errno = 10041\n\tWSAENOPROTOOPT                                                            syscall.Errno = 10042\n\tWSAEPROTONOSUPPORT                                                        syscall.Errno = 10043\n\tWSAESOCKTNOSUPPORT                                                        syscall.Errno = 10044\n\tWSAEOPNOTSUPP                                                             syscall.Errno = 10045\n\tWSAEPFNOSUPPORT                                                           syscall.Errno = 10046\n\tWSAEAFNOSUPPORT                                                           syscall.Errno = 10047\n\tWSAEADDRINUSE                                                             syscall.Errno = 10048\n\tWSAEADDRNOTAVAIL                                                          syscall.Errno = 10049\n\tWSAENETDOWN                                                               syscall.Errno = 10050\n\tWSAENETUNREACH                                                            syscall.Errno = 10051\n\tWSAENETRESET                                                              syscall.Errno = 10052\n\tWSAECONNABORTED                                                           syscall.Errno = 10053\n\tWSAECONNRESET                                                             syscall.Errno = 10054\n\tWSAENOBUFS                                                                syscall.Errno = 10055\n\tWSAEISCONN                                                                syscall.Errno = 10056\n\tWSAENOTCONN                                                               syscall.Errno = 10057\n\tWSAESHUTDOWN                                                              syscall.Errno = 10058\n\tWSAETOOMANYREFS                                                           syscall.Errno = 10059\n\tWSAETIMEDOUT                                                              syscall.Errno = 10060\n\tWSAECONNREFUSED                                                           syscall.Errno = 10061\n\tWSAELOOP                                                                  syscall.Errno = 10062\n\tWSAENAMETOOLONG                                                           syscall.Errno = 10063\n\tWSAEHOSTDOWN                                                              syscall.Errno = 10064\n\tWSAEHOSTUNREACH                                                           syscall.Errno = 10065\n\tWSAENOTEMPTY                                                              syscall.Errno = 10066\n\tWSAEPROCLIM                                                               syscall.Errno = 10067\n\tWSAEUSERS                                                                 syscall.Errno = 10068\n\tWSAEDQUOT                                                                 syscall.Errno = 10069\n\tWSAESTALE                                                                 syscall.Errno = 10070\n\tWSAEREMOTE                                                                syscall.Errno = 10071\n\tWSASYSNOTREADY                                                            syscall.Errno = 10091\n\tWSAVERNOTSUPPORTED                                                        syscall.Errno = 10092\n\tWSANOTINITIALISED                                                         syscall.Errno = 10093\n\tWSAEDISCON                                                                syscall.Errno = 10101\n\tWSAENOMORE                                                                syscall.Errno = 10102\n\tWSAECANCELLED                                                             syscall.Errno = 10103\n\tWSAEINVALIDPROCTABLE                                                      syscall.Errno = 10104\n\tWSAEINVALIDPROVIDER                                                       syscall.Errno = 10105\n\tWSAEPROVIDERFAILEDINIT                                                    syscall.Errno = 10106\n\tWSASYSCALLFAILURE                                                         syscall.Errno = 10107\n\tWSASERVICE_NOT_FOUND                                                      syscall.Errno = 10108\n\tWSATYPE_NOT_FOUND                                                         syscall.Errno = 10109\n\tWSA_E_NO_MORE                                                             syscall.Errno = 10110\n\tWSA_E_CANCELLED                                                           syscall.Errno = 10111\n\tWSAEREFUSED                                                               syscall.Errno = 10112\n\tWSAHOST_NOT_FOUND                                                         syscall.Errno = 11001\n\tWSATRY_AGAIN                                                              syscall.Errno = 11002\n\tWSANO_RECOVERY                                                            syscall.Errno = 11003\n\tWSANO_DATA                                                                syscall.Errno = 11004\n\tWSA_QOS_RECEIVERS                                                         syscall.Errno = 11005\n\tWSA_QOS_SENDERS                                                           syscall.Errno = 11006\n\tWSA_QOS_NO_SENDERS                                                        syscall.Errno = 11007\n\tWSA_QOS_NO_RECEIVERS                                                      syscall.Errno = 11008\n\tWSA_QOS_REQUEST_CONFIRMED                                                 syscall.Errno = 11009\n\tWSA_QOS_ADMISSION_FAILURE                                                 syscall.Errno = 11010\n\tWSA_QOS_POLICY_FAILURE                                                    syscall.Errno = 11011\n\tWSA_QOS_BAD_STYLE                                                         syscall.Errno = 11012\n\tWSA_QOS_BAD_OBJECT                                                        syscall.Errno = 11013\n\tWSA_QOS_TRAFFIC_CTRL_ERROR                                                syscall.Errno = 11014\n\tWSA_QOS_GENERIC_ERROR                                                     syscall.Errno = 11015\n\tWSA_QOS_ESERVICETYPE                                                      syscall.Errno = 11016\n\tWSA_QOS_EFLOWSPEC                                                         syscall.Errno = 11017\n\tWSA_QOS_EPROVSPECBUF                                                      syscall.Errno = 11018\n\tWSA_QOS_EFILTERSTYLE                                                      syscall.Errno = 11019\n\tWSA_QOS_EFILTERTYPE                                                       syscall.Errno = 11020\n\tWSA_QOS_EFILTERCOUNT                                                      syscall.Errno = 11021\n\tWSA_QOS_EOBJLENGTH                                                        syscall.Errno = 11022\n\tWSA_QOS_EFLOWCOUNT                                                        syscall.Errno = 11023\n\tWSA_QOS_EUNKOWNPSOBJ                                                      syscall.Errno = 11024\n\tWSA_QOS_EPOLICYOBJ                                                        syscall.Errno = 11025\n\tWSA_QOS_EFLOWDESC                                                         syscall.Errno = 11026\n\tWSA_QOS_EPSFLOWSPEC                                                       syscall.Errno = 11027\n\tWSA_QOS_EPSFILTERSPEC                                                     syscall.Errno = 11028\n\tWSA_QOS_ESDMODEOBJ                                                        syscall.Errno = 11029\n\tWSA_QOS_ESHAPERATEOBJ                                                     syscall.Errno = 11030\n\tWSA_QOS_RESERVED_PETYPE                                                   syscall.Errno = 11031\n\tWSA_SECURE_HOST_NOT_FOUND                                                 syscall.Errno = 11032\n\tWSA_IPSEC_NAME_POLICY_ERROR                                               syscall.Errno = 11033\n\tERROR_IPSEC_QM_POLICY_EXISTS                                              syscall.Errno = 13000\n\tERROR_IPSEC_QM_POLICY_NOT_FOUND                                           syscall.Errno = 13001\n\tERROR_IPSEC_QM_POLICY_IN_USE                                              syscall.Errno = 13002\n\tERROR_IPSEC_MM_POLICY_EXISTS                                              syscall.Errno = 13003\n\tERROR_IPSEC_MM_POLICY_NOT_FOUND                                           syscall.Errno = 13004\n\tERROR_IPSEC_MM_POLICY_IN_USE                                              syscall.Errno = 13005\n\tERROR_IPSEC_MM_FILTER_EXISTS                                              syscall.Errno = 13006\n\tERROR_IPSEC_MM_FILTER_NOT_FOUND                                           syscall.Errno = 13007\n\tERROR_IPSEC_TRANSPORT_FILTER_EXISTS                                       syscall.Errno = 13008\n\tERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND                                    syscall.Errno = 13009\n\tERROR_IPSEC_MM_AUTH_EXISTS                                                syscall.Errno = 13010\n\tERROR_IPSEC_MM_AUTH_NOT_FOUND                                             syscall.Errno = 13011\n\tERROR_IPSEC_MM_AUTH_IN_USE                                                syscall.Errno = 13012\n\tERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND                                   syscall.Errno = 13013\n\tERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND                                     syscall.Errno = 13014\n\tERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND                                   syscall.Errno = 13015\n\tERROR_IPSEC_TUNNEL_FILTER_EXISTS                                          syscall.Errno = 13016\n\tERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND                                       syscall.Errno = 13017\n\tERROR_IPSEC_MM_FILTER_PENDING_DELETION                                    syscall.Errno = 13018\n\tERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION                             syscall.Errno = 13019\n\tERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION                                syscall.Errno = 13020\n\tERROR_IPSEC_MM_POLICY_PENDING_DELETION                                    syscall.Errno = 13021\n\tERROR_IPSEC_MM_AUTH_PENDING_DELETION                                      syscall.Errno = 13022\n\tERROR_IPSEC_QM_POLICY_PENDING_DELETION                                    syscall.Errno = 13023\n\tWARNING_IPSEC_MM_POLICY_PRUNED                                            syscall.Errno = 13024\n\tWARNING_IPSEC_QM_POLICY_PRUNED                                            syscall.Errno = 13025\n\tERROR_IPSEC_IKE_NEG_STATUS_BEGIN                                          syscall.Errno = 13800\n\tERROR_IPSEC_IKE_AUTH_FAIL                                                 syscall.Errno = 13801\n\tERROR_IPSEC_IKE_ATTRIB_FAIL                                               syscall.Errno = 13802\n\tERROR_IPSEC_IKE_NEGOTIATION_PENDING                                       syscall.Errno = 13803\n\tERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR                                  syscall.Errno = 13804\n\tERROR_IPSEC_IKE_TIMED_OUT                                                 syscall.Errno = 13805\n\tERROR_IPSEC_IKE_NO_CERT                                                   syscall.Errno = 13806\n\tERROR_IPSEC_IKE_SA_DELETED                                                syscall.Errno = 13807\n\tERROR_IPSEC_IKE_SA_REAPED                                                 syscall.Errno = 13808\n\tERROR_IPSEC_IKE_MM_ACQUIRE_DROP                                           syscall.Errno = 13809\n\tERROR_IPSEC_IKE_QM_ACQUIRE_DROP                                           syscall.Errno = 13810\n\tERROR_IPSEC_IKE_QUEUE_DROP_MM                                             syscall.Errno = 13811\n\tERROR_IPSEC_IKE_QUEUE_DROP_NO_MM                                          syscall.Errno = 13812\n\tERROR_IPSEC_IKE_DROP_NO_RESPONSE                                          syscall.Errno = 13813\n\tERROR_IPSEC_IKE_MM_DELAY_DROP                                             syscall.Errno = 13814\n\tERROR_IPSEC_IKE_QM_DELAY_DROP                                             syscall.Errno = 13815\n\tERROR_IPSEC_IKE_ERROR                                                     syscall.Errno = 13816\n\tERROR_IPSEC_IKE_CRL_FAILED                                                syscall.Errno = 13817\n\tERROR_IPSEC_IKE_INVALID_KEY_USAGE                                         syscall.Errno = 13818\n\tERROR_IPSEC_IKE_INVALID_CERT_TYPE                                         syscall.Errno = 13819\n\tERROR_IPSEC_IKE_NO_PRIVATE_KEY                                            syscall.Errno = 13820\n\tERROR_IPSEC_IKE_SIMULTANEOUS_REKEY                                        syscall.Errno = 13821\n\tERROR_IPSEC_IKE_DH_FAIL                                                   syscall.Errno = 13822\n\tERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED                           syscall.Errno = 13823\n\tERROR_IPSEC_IKE_INVALID_HEADER                                            syscall.Errno = 13824\n\tERROR_IPSEC_IKE_NO_POLICY                                                 syscall.Errno = 13825\n\tERROR_IPSEC_IKE_INVALID_SIGNATURE                                         syscall.Errno = 13826\n\tERROR_IPSEC_IKE_KERBEROS_ERROR                                            syscall.Errno = 13827\n\tERROR_IPSEC_IKE_NO_PUBLIC_KEY                                             syscall.Errno = 13828\n\tERROR_IPSEC_IKE_PROCESS_ERR                                               syscall.Errno = 13829\n\tERROR_IPSEC_IKE_PROCESS_ERR_SA                                            syscall.Errno = 13830\n\tERROR_IPSEC_IKE_PROCESS_ERR_PROP                                          syscall.Errno = 13831\n\tERROR_IPSEC_IKE_PROCESS_ERR_TRANS                                         syscall.Errno = 13832\n\tERROR_IPSEC_IKE_PROCESS_ERR_KE                                            syscall.Errno = 13833\n\tERROR_IPSEC_IKE_PROCESS_ERR_ID                                            syscall.Errno = 13834\n\tERROR_IPSEC_IKE_PROCESS_ERR_CERT                                          syscall.Errno = 13835\n\tERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ                                      syscall.Errno = 13836\n\tERROR_IPSEC_IKE_PROCESS_ERR_HASH                                          syscall.Errno = 13837\n\tERROR_IPSEC_IKE_PROCESS_ERR_SIG                                           syscall.Errno = 13838\n\tERROR_IPSEC_IKE_PROCESS_ERR_NONCE                                         syscall.Errno = 13839\n\tERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY                                        syscall.Errno = 13840\n\tERROR_IPSEC_IKE_PROCESS_ERR_DELETE                                        syscall.Errno = 13841\n\tERROR_IPSEC_IKE_PROCESS_ERR_VENDOR                                        syscall.Errno = 13842\n\tERROR_IPSEC_IKE_INVALID_PAYLOAD                                           syscall.Errno = 13843\n\tERROR_IPSEC_IKE_LOAD_SOFT_SA                                              syscall.Errno = 13844\n\tERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN                                         syscall.Errno = 13845\n\tERROR_IPSEC_IKE_INVALID_COOKIE                                            syscall.Errno = 13846\n\tERROR_IPSEC_IKE_NO_PEER_CERT                                              syscall.Errno = 13847\n\tERROR_IPSEC_IKE_PEER_CRL_FAILED                                           syscall.Errno = 13848\n\tERROR_IPSEC_IKE_POLICY_CHANGE                                             syscall.Errno = 13849\n\tERROR_IPSEC_IKE_NO_MM_POLICY                                              syscall.Errno = 13850\n\tERROR_IPSEC_IKE_NOTCBPRIV                                                 syscall.Errno = 13851\n\tERROR_IPSEC_IKE_SECLOADFAIL                                               syscall.Errno = 13852\n\tERROR_IPSEC_IKE_FAILSSPINIT                                               syscall.Errno = 13853\n\tERROR_IPSEC_IKE_FAILQUERYSSP                                              syscall.Errno = 13854\n\tERROR_IPSEC_IKE_SRVACQFAIL                                                syscall.Errno = 13855\n\tERROR_IPSEC_IKE_SRVQUERYCRED                                              syscall.Errno = 13856\n\tERROR_IPSEC_IKE_GETSPIFAIL                                                syscall.Errno = 13857\n\tERROR_IPSEC_IKE_INVALID_FILTER                                            syscall.Errno = 13858\n\tERROR_IPSEC_IKE_OUT_OF_MEMORY                                             syscall.Errno = 13859\n\tERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED                                     syscall.Errno = 13860\n\tERROR_IPSEC_IKE_INVALID_POLICY                                            syscall.Errno = 13861\n\tERROR_IPSEC_IKE_UNKNOWN_DOI                                               syscall.Errno = 13862\n\tERROR_IPSEC_IKE_INVALID_SITUATION                                         syscall.Errno = 13863\n\tERROR_IPSEC_IKE_DH_FAILURE                                                syscall.Errno = 13864\n\tERROR_IPSEC_IKE_INVALID_GROUP                                             syscall.Errno = 13865\n\tERROR_IPSEC_IKE_ENCRYPT                                                   syscall.Errno = 13866\n\tERROR_IPSEC_IKE_DECRYPT                                                   syscall.Errno = 13867\n\tERROR_IPSEC_IKE_POLICY_MATCH                                              syscall.Errno = 13868\n\tERROR_IPSEC_IKE_UNSUPPORTED_ID                                            syscall.Errno = 13869\n\tERROR_IPSEC_IKE_INVALID_HASH                                              syscall.Errno = 13870\n\tERROR_IPSEC_IKE_INVALID_HASH_ALG                                          syscall.Errno = 13871\n\tERROR_IPSEC_IKE_INVALID_HASH_SIZE                                         syscall.Errno = 13872\n\tERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG                                       syscall.Errno = 13873\n\tERROR_IPSEC_IKE_INVALID_AUTH_ALG                                          syscall.Errno = 13874\n\tERROR_IPSEC_IKE_INVALID_SIG                                               syscall.Errno = 13875\n\tERROR_IPSEC_IKE_LOAD_FAILED                                               syscall.Errno = 13876\n\tERROR_IPSEC_IKE_RPC_DELETE                                                syscall.Errno = 13877\n\tERROR_IPSEC_IKE_BENIGN_REINIT                                             syscall.Errno = 13878\n\tERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY                         syscall.Errno = 13879\n\tERROR_IPSEC_IKE_INVALID_MAJOR_VERSION                                     syscall.Errno = 13880\n\tERROR_IPSEC_IKE_INVALID_CERT_KEYLEN                                       syscall.Errno = 13881\n\tERROR_IPSEC_IKE_MM_LIMIT                                                  syscall.Errno = 13882\n\tERROR_IPSEC_IKE_NEGOTIATION_DISABLED                                      syscall.Errno = 13883\n\tERROR_IPSEC_IKE_QM_LIMIT                                                  syscall.Errno = 13884\n\tERROR_IPSEC_IKE_MM_EXPIRED                                                syscall.Errno = 13885\n\tERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID                                   syscall.Errno = 13886\n\tERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH                                syscall.Errno = 13887\n\tERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID                                     syscall.Errno = 13888\n\tERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD                                      syscall.Errno = 13889\n\tERROR_IPSEC_IKE_DOS_COOKIE_SENT                                           syscall.Errno = 13890\n\tERROR_IPSEC_IKE_SHUTTING_DOWN                                             syscall.Errno = 13891\n\tERROR_IPSEC_IKE_CGA_AUTH_FAILED                                           syscall.Errno = 13892\n\tERROR_IPSEC_IKE_PROCESS_ERR_NATOA                                         syscall.Errno = 13893\n\tERROR_IPSEC_IKE_INVALID_MM_FOR_QM                                         syscall.Errno = 13894\n\tERROR_IPSEC_IKE_QM_EXPIRED                                                syscall.Errno = 13895\n\tERROR_IPSEC_IKE_TOO_MANY_FILTERS                                          syscall.Errno = 13896\n\tERROR_IPSEC_IKE_NEG_STATUS_END                                            syscall.Errno = 13897\n\tERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL                                     syscall.Errno = 13898\n\tERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE                               syscall.Errno = 13899\n\tERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING                                syscall.Errno = 13900\n\tERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING                  syscall.Errno = 13901\n\tERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS                                      syscall.Errno = 13902\n\tERROR_IPSEC_IKE_RATELIMIT_DROP                                            syscall.Errno = 13903\n\tERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE                                syscall.Errno = 13904\n\tERROR_IPSEC_IKE_AUTHORIZATION_FAILURE                                     syscall.Errno = 13905\n\tERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE                         syscall.Errno = 13906\n\tERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY                 syscall.Errno = 13907\n\tERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE             syscall.Errno = 13908\n\tERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END                                   syscall.Errno = 13909\n\tERROR_IPSEC_BAD_SPI                                                       syscall.Errno = 13910\n\tERROR_IPSEC_SA_LIFETIME_EXPIRED                                           syscall.Errno = 13911\n\tERROR_IPSEC_WRONG_SA                                                      syscall.Errno = 13912\n\tERROR_IPSEC_REPLAY_CHECK_FAILED                                           syscall.Errno = 13913\n\tERROR_IPSEC_INVALID_PACKET                                                syscall.Errno = 13914\n\tERROR_IPSEC_INTEGRITY_CHECK_FAILED                                        syscall.Errno = 13915\n\tERROR_IPSEC_CLEAR_TEXT_DROP                                               syscall.Errno = 13916\n\tERROR_IPSEC_AUTH_FIREWALL_DROP                                            syscall.Errno = 13917\n\tERROR_IPSEC_THROTTLE_DROP                                                 syscall.Errno = 13918\n\tERROR_IPSEC_DOSP_BLOCK                                                    syscall.Errno = 13925\n\tERROR_IPSEC_DOSP_RECEIVED_MULTICAST                                       syscall.Errno = 13926\n\tERROR_IPSEC_DOSP_INVALID_PACKET                                           syscall.Errno = 13927\n\tERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED                                      syscall.Errno = 13928\n\tERROR_IPSEC_DOSP_MAX_ENTRIES                                              syscall.Errno = 13929\n\tERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED                                       syscall.Errno = 13930\n\tERROR_IPSEC_DOSP_NOT_INSTALLED                                            syscall.Errno = 13931\n\tERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES                              syscall.Errno = 13932\n\tERROR_SXS_SECTION_NOT_FOUND                                               syscall.Errno = 14000\n\tERROR_SXS_CANT_GEN_ACTCTX                                                 syscall.Errno = 14001\n\tERROR_SXS_INVALID_ACTCTXDATA_FORMAT                                       syscall.Errno = 14002\n\tERROR_SXS_ASSEMBLY_NOT_FOUND                                              syscall.Errno = 14003\n\tERROR_SXS_MANIFEST_FORMAT_ERROR                                           syscall.Errno = 14004\n\tERROR_SXS_MANIFEST_PARSE_ERROR                                            syscall.Errno = 14005\n\tERROR_SXS_ACTIVATION_CONTEXT_DISABLED                                     syscall.Errno = 14006\n\tERROR_SXS_KEY_NOT_FOUND                                                   syscall.Errno = 14007\n\tERROR_SXS_VERSION_CONFLICT                                                syscall.Errno = 14008\n\tERROR_SXS_WRONG_SECTION_TYPE                                              syscall.Errno = 14009\n\tERROR_SXS_THREAD_QUERIES_DISABLED                                         syscall.Errno = 14010\n\tERROR_SXS_PROCESS_DEFAULT_ALREADY_SET                                     syscall.Errno = 14011\n\tERROR_SXS_UNKNOWN_ENCODING_GROUP                                          syscall.Errno = 14012\n\tERROR_SXS_UNKNOWN_ENCODING                                                syscall.Errno = 14013\n\tERROR_SXS_INVALID_XML_NAMESPACE_URI                                       syscall.Errno = 14014\n\tERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED                          syscall.Errno = 14015\n\tERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED                          syscall.Errno = 14016\n\tERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE                             syscall.Errno = 14017\n\tERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE                     syscall.Errno = 14018\n\tERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE                     syscall.Errno = 14019\n\tERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT                  syscall.Errno = 14020\n\tERROR_SXS_DUPLICATE_DLL_NAME                                              syscall.Errno = 14021\n\tERROR_SXS_DUPLICATE_WINDOWCLASS_NAME                                      syscall.Errno = 14022\n\tERROR_SXS_DUPLICATE_CLSID                                                 syscall.Errno = 14023\n\tERROR_SXS_DUPLICATE_IID                                                   syscall.Errno = 14024\n\tERROR_SXS_DUPLICATE_TLBID                                                 syscall.Errno = 14025\n\tERROR_SXS_DUPLICATE_PROGID                                                syscall.Errno = 14026\n\tERROR_SXS_DUPLICATE_ASSEMBLY_NAME                                         syscall.Errno = 14027\n\tERROR_SXS_FILE_HASH_MISMATCH                                              syscall.Errno = 14028\n\tERROR_SXS_POLICY_PARSE_ERROR                                              syscall.Errno = 14029\n\tERROR_SXS_XML_E_MISSINGQUOTE                                              syscall.Errno = 14030\n\tERROR_SXS_XML_E_COMMENTSYNTAX                                             syscall.Errno = 14031\n\tERROR_SXS_XML_E_BADSTARTNAMECHAR                                          syscall.Errno = 14032\n\tERROR_SXS_XML_E_BADNAMECHAR                                               syscall.Errno = 14033\n\tERROR_SXS_XML_E_BADCHARINSTRING                                           syscall.Errno = 14034\n\tERROR_SXS_XML_E_XMLDECLSYNTAX                                             syscall.Errno = 14035\n\tERROR_SXS_XML_E_BADCHARDATA                                               syscall.Errno = 14036\n\tERROR_SXS_XML_E_MISSINGWHITESPACE                                         syscall.Errno = 14037\n\tERROR_SXS_XML_E_EXPECTINGTAGEND                                           syscall.Errno = 14038\n\tERROR_SXS_XML_E_MISSINGSEMICOLON                                          syscall.Errno = 14039\n\tERROR_SXS_XML_E_UNBALANCEDPAREN                                           syscall.Errno = 14040\n\tERROR_SXS_XML_E_INTERNALERROR                                             syscall.Errno = 14041\n\tERROR_SXS_XML_E_UNEXPECTED_WHITESPACE                                     syscall.Errno = 14042\n\tERROR_SXS_XML_E_INCOMPLETE_ENCODING                                       syscall.Errno = 14043\n\tERROR_SXS_XML_E_MISSING_PAREN                                             syscall.Errno = 14044\n\tERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE                                       syscall.Errno = 14045\n\tERROR_SXS_XML_E_MULTIPLE_COLONS                                           syscall.Errno = 14046\n\tERROR_SXS_XML_E_INVALID_DECIMAL                                           syscall.Errno = 14047\n\tERROR_SXS_XML_E_INVALID_HEXIDECIMAL                                       syscall.Errno = 14048\n\tERROR_SXS_XML_E_INVALID_UNICODE                                           syscall.Errno = 14049\n\tERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK                                  syscall.Errno = 14050\n\tERROR_SXS_XML_E_UNEXPECTEDENDTAG                                          syscall.Errno = 14051\n\tERROR_SXS_XML_E_UNCLOSEDTAG                                               syscall.Errno = 14052\n\tERROR_SXS_XML_E_DUPLICATEATTRIBUTE                                        syscall.Errno = 14053\n\tERROR_SXS_XML_E_MULTIPLEROOTS                                             syscall.Errno = 14054\n\tERROR_SXS_XML_E_INVALIDATROOTLEVEL                                        syscall.Errno = 14055\n\tERROR_SXS_XML_E_BADXMLDECL                                                syscall.Errno = 14056\n\tERROR_SXS_XML_E_MISSINGROOT                                               syscall.Errno = 14057\n\tERROR_SXS_XML_E_UNEXPECTEDEOF                                             syscall.Errno = 14058\n\tERROR_SXS_XML_E_BADPEREFINSUBSET                                          syscall.Errno = 14059\n\tERROR_SXS_XML_E_UNCLOSEDSTARTTAG                                          syscall.Errno = 14060\n\tERROR_SXS_XML_E_UNCLOSEDENDTAG                                            syscall.Errno = 14061\n\tERROR_SXS_XML_E_UNCLOSEDSTRING                                            syscall.Errno = 14062\n\tERROR_SXS_XML_E_UNCLOSEDCOMMENT                                           syscall.Errno = 14063\n\tERROR_SXS_XML_E_UNCLOSEDDECL                                              syscall.Errno = 14064\n\tERROR_SXS_XML_E_UNCLOSEDCDATA                                             syscall.Errno = 14065\n\tERROR_SXS_XML_E_RESERVEDNAMESPACE                                         syscall.Errno = 14066\n\tERROR_SXS_XML_E_INVALIDENCODING                                           syscall.Errno = 14067\n\tERROR_SXS_XML_E_INVALIDSWITCH                                             syscall.Errno = 14068\n\tERROR_SXS_XML_E_BADXMLCASE                                                syscall.Errno = 14069\n\tERROR_SXS_XML_E_INVALID_STANDALONE                                        syscall.Errno = 14070\n\tERROR_SXS_XML_E_UNEXPECTED_STANDALONE                                     syscall.Errno = 14071\n\tERROR_SXS_XML_E_INVALID_VERSION                                           syscall.Errno = 14072\n\tERROR_SXS_XML_E_MISSINGEQUALS                                             syscall.Errno = 14073\n\tERROR_SXS_PROTECTION_RECOVERY_FAILED                                      syscall.Errno = 14074\n\tERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT                                 syscall.Errno = 14075\n\tERROR_SXS_PROTECTION_CATALOG_NOT_VALID                                    syscall.Errno = 14076\n\tERROR_SXS_UNTRANSLATABLE_HRESULT                                          syscall.Errno = 14077\n\tERROR_SXS_PROTECTION_CATALOG_FILE_MISSING                                 syscall.Errno = 14078\n\tERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE                             syscall.Errno = 14079\n\tERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME                        syscall.Errno = 14080\n\tERROR_SXS_ASSEMBLY_MISSING                                                syscall.Errno = 14081\n\tERROR_SXS_CORRUPT_ACTIVATION_STACK                                        syscall.Errno = 14082\n\tERROR_SXS_CORRUPTION                                                      syscall.Errno = 14083\n\tERROR_SXS_EARLY_DEACTIVATION                                              syscall.Errno = 14084\n\tERROR_SXS_INVALID_DEACTIVATION                                            syscall.Errno = 14085\n\tERROR_SXS_MULTIPLE_DEACTIVATION                                           syscall.Errno = 14086\n\tERROR_SXS_PROCESS_TERMINATION_REQUESTED                                   syscall.Errno = 14087\n\tERROR_SXS_RELEASE_ACTIVATION_CONTEXT                                      syscall.Errno = 14088\n\tERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY                         syscall.Errno = 14089\n\tERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE                                syscall.Errno = 14090\n\tERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME                                 syscall.Errno = 14091\n\tERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE                                    syscall.Errno = 14092\n\tERROR_SXS_IDENTITY_PARSE_ERROR                                            syscall.Errno = 14093\n\tERROR_MALFORMED_SUBSTITUTION_STRING                                       syscall.Errno = 14094\n\tERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN                                      syscall.Errno = 14095\n\tERROR_UNMAPPED_SUBSTITUTION_STRING                                        syscall.Errno = 14096\n\tERROR_SXS_ASSEMBLY_NOT_LOCKED                                             syscall.Errno = 14097\n\tERROR_SXS_COMPONENT_STORE_CORRUPT                                         syscall.Errno = 14098\n\tERROR_ADVANCED_INSTALLER_FAILED                                           syscall.Errno = 14099\n\tERROR_XML_ENCODING_MISMATCH                                               syscall.Errno = 14100\n\tERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT                   syscall.Errno = 14101\n\tERROR_SXS_IDENTITIES_DIFFERENT                                            syscall.Errno = 14102\n\tERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT                                    syscall.Errno = 14103\n\tERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY                                       syscall.Errno = 14104\n\tERROR_SXS_MANIFEST_TOO_BIG                                                syscall.Errno = 14105\n\tERROR_SXS_SETTING_NOT_REGISTERED                                          syscall.Errno = 14106\n\tERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE                                  syscall.Errno = 14107\n\tERROR_SMI_PRIMITIVE_INSTALLER_FAILED                                      syscall.Errno = 14108\n\tERROR_GENERIC_COMMAND_FAILED                                              syscall.Errno = 14109\n\tERROR_SXS_FILE_HASH_MISSING                                               syscall.Errno = 14110\n\tERROR_EVT_INVALID_CHANNEL_PATH                                            syscall.Errno = 15000\n\tERROR_EVT_INVALID_QUERY                                                   syscall.Errno = 15001\n\tERROR_EVT_PUBLISHER_METADATA_NOT_FOUND                                    syscall.Errno = 15002\n\tERROR_EVT_EVENT_TEMPLATE_NOT_FOUND                                        syscall.Errno = 15003\n\tERROR_EVT_INVALID_PUBLISHER_NAME                                          syscall.Errno = 15004\n\tERROR_EVT_INVALID_EVENT_DATA                                              syscall.Errno = 15005\n\tERROR_EVT_CHANNEL_NOT_FOUND                                               syscall.Errno = 15007\n\tERROR_EVT_MALFORMED_XML_TEXT                                              syscall.Errno = 15008\n\tERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL                                  syscall.Errno = 15009\n\tERROR_EVT_CONFIGURATION_ERROR                                             syscall.Errno = 15010\n\tERROR_EVT_QUERY_RESULT_STALE                                              syscall.Errno = 15011\n\tERROR_EVT_QUERY_RESULT_INVALID_POSITION                                   syscall.Errno = 15012\n\tERROR_EVT_NON_VALIDATING_MSXML                                            syscall.Errno = 15013\n\tERROR_EVT_FILTER_ALREADYSCOPED                                            syscall.Errno = 15014\n\tERROR_EVT_FILTER_NOTELTSET                                                syscall.Errno = 15015\n\tERROR_EVT_FILTER_INVARG                                                   syscall.Errno = 15016\n\tERROR_EVT_FILTER_INVTEST                                                  syscall.Errno = 15017\n\tERROR_EVT_FILTER_INVTYPE                                                  syscall.Errno = 15018\n\tERROR_EVT_FILTER_PARSEERR                                                 syscall.Errno = 15019\n\tERROR_EVT_FILTER_UNSUPPORTEDOP                                            syscall.Errno = 15020\n\tERROR_EVT_FILTER_UNEXPECTEDTOKEN                                          syscall.Errno = 15021\n\tERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL                   syscall.Errno = 15022\n\tERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE                                  syscall.Errno = 15023\n\tERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE                                syscall.Errno = 15024\n\tERROR_EVT_CHANNEL_CANNOT_ACTIVATE                                         syscall.Errno = 15025\n\tERROR_EVT_FILTER_TOO_COMPLEX                                              syscall.Errno = 15026\n\tERROR_EVT_MESSAGE_NOT_FOUND                                               syscall.Errno = 15027\n\tERROR_EVT_MESSAGE_ID_NOT_FOUND                                            syscall.Errno = 15028\n\tERROR_EVT_UNRESOLVED_VALUE_INSERT                                         syscall.Errno = 15029\n\tERROR_EVT_UNRESOLVED_PARAMETER_INSERT                                     syscall.Errno = 15030\n\tERROR_EVT_MAX_INSERTS_REACHED                                             syscall.Errno = 15031\n\tERROR_EVT_EVENT_DEFINITION_NOT_FOUND                                      syscall.Errno = 15032\n\tERROR_EVT_MESSAGE_LOCALE_NOT_FOUND                                        syscall.Errno = 15033\n\tERROR_EVT_VERSION_TOO_OLD                                                 syscall.Errno = 15034\n\tERROR_EVT_VERSION_TOO_NEW                                                 syscall.Errno = 15035\n\tERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY                                    syscall.Errno = 15036\n\tERROR_EVT_PUBLISHER_DISABLED                                              syscall.Errno = 15037\n\tERROR_EVT_FILTER_OUT_OF_RANGE                                             syscall.Errno = 15038\n\tERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE                                     syscall.Errno = 15080\n\tERROR_EC_LOG_DISABLED                                                     syscall.Errno = 15081\n\tERROR_EC_CIRCULAR_FORWARDING                                              syscall.Errno = 15082\n\tERROR_EC_CREDSTORE_FULL                                                   syscall.Errno = 15083\n\tERROR_EC_CRED_NOT_FOUND                                                   syscall.Errno = 15084\n\tERROR_EC_NO_ACTIVE_CHANNEL                                                syscall.Errno = 15085\n\tERROR_MUI_FILE_NOT_FOUND                                                  syscall.Errno = 15100\n\tERROR_MUI_INVALID_FILE                                                    syscall.Errno = 15101\n\tERROR_MUI_INVALID_RC_CONFIG                                               syscall.Errno = 15102\n\tERROR_MUI_INVALID_LOCALE_NAME                                             syscall.Errno = 15103\n\tERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME                                   syscall.Errno = 15104\n\tERROR_MUI_FILE_NOT_LOADED                                                 syscall.Errno = 15105\n\tERROR_RESOURCE_ENUM_USER_STOP                                             syscall.Errno = 15106\n\tERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED                               syscall.Errno = 15107\n\tERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME                                syscall.Errno = 15108\n\tERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE                          syscall.Errno = 15110\n\tERROR_MRM_INVALID_PRICONFIG                                               syscall.Errno = 15111\n\tERROR_MRM_INVALID_FILE_TYPE                                               syscall.Errno = 15112\n\tERROR_MRM_UNKNOWN_QUALIFIER                                               syscall.Errno = 15113\n\tERROR_MRM_INVALID_QUALIFIER_VALUE                                         syscall.Errno = 15114\n\tERROR_MRM_NO_CANDIDATE                                                    syscall.Errno = 15115\n\tERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE                                   syscall.Errno = 15116\n\tERROR_MRM_RESOURCE_TYPE_MISMATCH                                          syscall.Errno = 15117\n\tERROR_MRM_DUPLICATE_MAP_NAME                                              syscall.Errno = 15118\n\tERROR_MRM_DUPLICATE_ENTRY                                                 syscall.Errno = 15119\n\tERROR_MRM_INVALID_RESOURCE_IDENTIFIER                                     syscall.Errno = 15120\n\tERROR_MRM_FILEPATH_TOO_LONG                                               syscall.Errno = 15121\n\tERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE                                      syscall.Errno = 15122\n\tERROR_MRM_INVALID_PRI_FILE                                                syscall.Errno = 15126\n\tERROR_MRM_NAMED_RESOURCE_NOT_FOUND                                        syscall.Errno = 15127\n\tERROR_MRM_MAP_NOT_FOUND                                                   syscall.Errno = 15135\n\tERROR_MRM_UNSUPPORTED_PROFILE_TYPE                                        syscall.Errno = 15136\n\tERROR_MRM_INVALID_QUALIFIER_OPERATOR                                      syscall.Errno = 15137\n\tERROR_MRM_INDETERMINATE_QUALIFIER_VALUE                                   syscall.Errno = 15138\n\tERROR_MRM_AUTOMERGE_ENABLED                                               syscall.Errno = 15139\n\tERROR_MRM_TOO_MANY_RESOURCES                                              syscall.Errno = 15140\n\tERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE                                 syscall.Errno = 15141\n\tERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE                  syscall.Errno = 15142\n\tERROR_MRM_NO_CURRENT_VIEW_ON_THREAD                                       syscall.Errno = 15143\n\tERROR_DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST                            syscall.Errno = 15144\n\tERROR_OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT                         syscall.Errno = 15145\n\tERROR_MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE                              syscall.Errno = 15146\n\tERROR_MRM_GENERATION_COUNT_MISMATCH                                       syscall.Errno = 15147\n\tERROR_PRI_MERGE_VERSION_MISMATCH                                          syscall.Errno = 15148\n\tERROR_PRI_MERGE_MISSING_SCHEMA                                            syscall.Errno = 15149\n\tERROR_PRI_MERGE_LOAD_FILE_FAILED                                          syscall.Errno = 15150\n\tERROR_PRI_MERGE_ADD_FILE_FAILED                                           syscall.Errno = 15151\n\tERROR_PRI_MERGE_WRITE_FILE_FAILED                                         syscall.Errno = 15152\n\tERROR_PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED                     syscall.Errno = 15153\n\tERROR_PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED                        syscall.Errno = 15154\n\tERROR_PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED                               syscall.Errno = 15155\n\tERROR_PRI_MERGE_MAIN_PACKAGE_REQUIRED                                     syscall.Errno = 15156\n\tERROR_PRI_MERGE_RESOURCE_PACKAGE_REQUIRED                                 syscall.Errno = 15157\n\tERROR_PRI_MERGE_INVALID_FILE_NAME                                         syscall.Errno = 15158\n\tERROR_MRM_PACKAGE_NOT_FOUND                                               syscall.Errno = 15159\n\tERROR_MCA_INVALID_CAPABILITIES_STRING                                     syscall.Errno = 15200\n\tERROR_MCA_INVALID_VCP_VERSION                                             syscall.Errno = 15201\n\tERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION                             syscall.Errno = 15202\n\tERROR_MCA_MCCS_VERSION_MISMATCH                                           syscall.Errno = 15203\n\tERROR_MCA_UNSUPPORTED_MCCS_VERSION                                        syscall.Errno = 15204\n\tERROR_MCA_INTERNAL_ERROR                                                  syscall.Errno = 15205\n\tERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED                                syscall.Errno = 15206\n\tERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE                                   syscall.Errno = 15207\n\tERROR_AMBIGUOUS_SYSTEM_DEVICE                                             syscall.Errno = 15250\n\tERROR_SYSTEM_DEVICE_NOT_FOUND                                             syscall.Errno = 15299\n\tERROR_HASH_NOT_SUPPORTED                                                  syscall.Errno = 15300\n\tERROR_HASH_NOT_PRESENT                                                    syscall.Errno = 15301\n\tERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED                                syscall.Errno = 15321\n\tERROR_GPIO_CLIENT_INFORMATION_INVALID                                     syscall.Errno = 15322\n\tERROR_GPIO_VERSION_NOT_SUPPORTED                                          syscall.Errno = 15323\n\tERROR_GPIO_INVALID_REGISTRATION_PACKET                                    syscall.Errno = 15324\n\tERROR_GPIO_OPERATION_DENIED                                               syscall.Errno = 15325\n\tERROR_GPIO_INCOMPATIBLE_CONNECT_MODE                                      syscall.Errno = 15326\n\tERROR_GPIO_INTERRUPT_ALREADY_UNMASKED                                     syscall.Errno = 15327\n\tERROR_CANNOT_SWITCH_RUNLEVEL                                              syscall.Errno = 15400\n\tERROR_INVALID_RUNLEVEL_SETTING                                            syscall.Errno = 15401\n\tERROR_RUNLEVEL_SWITCH_TIMEOUT                                             syscall.Errno = 15402\n\tERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT                                       syscall.Errno = 15403\n\tERROR_RUNLEVEL_SWITCH_IN_PROGRESS                                         syscall.Errno = 15404\n\tERROR_SERVICES_FAILED_AUTOSTART                                           syscall.Errno = 15405\n\tERROR_COM_TASK_STOP_PENDING                                               syscall.Errno = 15501\n\tERROR_INSTALL_OPEN_PACKAGE_FAILED                                         syscall.Errno = 15600\n\tERROR_INSTALL_PACKAGE_NOT_FOUND                                           syscall.Errno = 15601\n\tERROR_INSTALL_INVALID_PACKAGE                                             syscall.Errno = 15602\n\tERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED                                   syscall.Errno = 15603\n\tERROR_INSTALL_OUT_OF_DISK_SPACE                                           syscall.Errno = 15604\n\tERROR_INSTALL_NETWORK_FAILURE                                             syscall.Errno = 15605\n\tERROR_INSTALL_REGISTRATION_FAILURE                                        syscall.Errno = 15606\n\tERROR_INSTALL_DEREGISTRATION_FAILURE                                      syscall.Errno = 15607\n\tERROR_INSTALL_CANCEL                                                      syscall.Errno = 15608\n\tERROR_INSTALL_FAILED                                                      syscall.Errno = 15609\n\tERROR_REMOVE_FAILED                                                       syscall.Errno = 15610\n\tERROR_PACKAGE_ALREADY_EXISTS                                              syscall.Errno = 15611\n\tERROR_NEEDS_REMEDIATION                                                   syscall.Errno = 15612\n\tERROR_INSTALL_PREREQUISITE_FAILED                                         syscall.Errno = 15613\n\tERROR_PACKAGE_REPOSITORY_CORRUPTED                                        syscall.Errno = 15614\n\tERROR_INSTALL_POLICY_FAILURE                                              syscall.Errno = 15615\n\tERROR_PACKAGE_UPDATING                                                    syscall.Errno = 15616\n\tERROR_DEPLOYMENT_BLOCKED_BY_POLICY                                        syscall.Errno = 15617\n\tERROR_PACKAGES_IN_USE                                                     syscall.Errno = 15618\n\tERROR_RECOVERY_FILE_CORRUPT                                               syscall.Errno = 15619\n\tERROR_INVALID_STAGED_SIGNATURE                                            syscall.Errno = 15620\n\tERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED                      syscall.Errno = 15621\n\tERROR_INSTALL_PACKAGE_DOWNGRADE                                           syscall.Errno = 15622\n\tERROR_SYSTEM_NEEDS_REMEDIATION                                            syscall.Errno = 15623\n\tERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN                                     syscall.Errno = 15624\n\tERROR_RESILIENCY_FILE_CORRUPT                                             syscall.Errno = 15625\n\tERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING                                syscall.Errno = 15626\n\tERROR_PACKAGE_MOVE_FAILED                                                 syscall.Errno = 15627\n\tERROR_INSTALL_VOLUME_NOT_EMPTY                                            syscall.Errno = 15628\n\tERROR_INSTALL_VOLUME_OFFLINE                                              syscall.Errno = 15629\n\tERROR_INSTALL_VOLUME_CORRUPT                                              syscall.Errno = 15630\n\tERROR_NEEDS_REGISTRATION                                                  syscall.Errno = 15631\n\tERROR_INSTALL_WRONG_PROCESSOR_ARCHITECTURE                                syscall.Errno = 15632\n\tERROR_DEV_SIDELOAD_LIMIT_EXCEEDED                                         syscall.Errno = 15633\n\tERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE                      syscall.Errno = 15634\n\tERROR_PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM                                 syscall.Errno = 15635\n\tERROR_PACKAGE_MOVE_BLOCKED_BY_STREAMING                                   syscall.Errno = 15636\n\tERROR_INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE                   syscall.Errno = 15637\n\tERROR_PACKAGE_STAGING_ONHOLD                                              syscall.Errno = 15638\n\tERROR_INSTALL_INVALID_RELATED_SET_UPDATE                                  syscall.Errno = 15639\n\tERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY syscall.Errno = 15640\n\tERROR_DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF                                  syscall.Errno = 15641\n\tERROR_PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED        syscall.Errno = 15642\n\tERROR_PACKAGES_REPUTATION_CHECK_FAILED                                    syscall.Errno = 15643\n\tERROR_PACKAGES_REPUTATION_CHECK_TIMEDOUT                                  syscall.Errno = 15644\n\tERROR_DEPLOYMENT_OPTION_NOT_SUPPORTED                                     syscall.Errno = 15645\n\tERROR_APPINSTALLER_ACTIVATION_BLOCKED                                     syscall.Errno = 15646\n\tERROR_REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED                        syscall.Errno = 15647\n\tAPPMODEL_ERROR_NO_PACKAGE                                                 syscall.Errno = 15700\n\tAPPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT                                    syscall.Errno = 15701\n\tAPPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT                                   syscall.Errno = 15702\n\tAPPMODEL_ERROR_NO_APPLICATION                                             syscall.Errno = 15703\n\tAPPMODEL_ERROR_DYNAMIC_PROPERTY_READ_FAILED                               syscall.Errno = 15704\n\tAPPMODEL_ERROR_DYNAMIC_PROPERTY_INVALID                                   syscall.Errno = 15705\n\tAPPMODEL_ERROR_PACKAGE_NOT_AVAILABLE                                      syscall.Errno = 15706\n\tERROR_STATE_LOAD_STORE_FAILED                                             syscall.Errno = 15800\n\tERROR_STATE_GET_VERSION_FAILED                                            syscall.Errno = 15801\n\tERROR_STATE_SET_VERSION_FAILED                                            syscall.Errno = 15802\n\tERROR_STATE_STRUCTURED_RESET_FAILED                                       syscall.Errno = 15803\n\tERROR_STATE_OPEN_CONTAINER_FAILED                                         syscall.Errno = 15804\n\tERROR_STATE_CREATE_CONTAINER_FAILED                                       syscall.Errno = 15805\n\tERROR_STATE_DELETE_CONTAINER_FAILED                                       syscall.Errno = 15806\n\tERROR_STATE_READ_SETTING_FAILED                                           syscall.Errno = 15807\n\tERROR_STATE_WRITE_SETTING_FAILED                                          syscall.Errno = 15808\n\tERROR_STATE_DELETE_SETTING_FAILED                                         syscall.Errno = 15809\n\tERROR_STATE_QUERY_SETTING_FAILED                                          syscall.Errno = 15810\n\tERROR_STATE_READ_COMPOSITE_SETTING_FAILED                                 syscall.Errno = 15811\n\tERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED                                syscall.Errno = 15812\n\tERROR_STATE_ENUMERATE_CONTAINER_FAILED                                    syscall.Errno = 15813\n\tERROR_STATE_ENUMERATE_SETTINGS_FAILED                                     syscall.Errno = 15814\n\tERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED                   syscall.Errno = 15815\n\tERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED                             syscall.Errno = 15816\n\tERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED                              syscall.Errno = 15817\n\tERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED                            syscall.Errno = 15818\n\tERROR_API_UNAVAILABLE                                                     syscall.Errno = 15841\n\tSTORE_ERROR_UNLICENSED                                                    syscall.Errno = 15861\n\tSTORE_ERROR_UNLICENSED_USER                                               syscall.Errno = 15862\n\tSTORE_ERROR_PENDING_COM_TRANSACTION                                       syscall.Errno = 15863\n\tSTORE_ERROR_LICENSE_REVOKED                                               syscall.Errno = 15864\n\tSEVERITY_SUCCESS                                                          syscall.Errno = 0\n\tSEVERITY_ERROR                                                            syscall.Errno = 1\n\tFACILITY_NT_BIT                                                                         = 0x10000000\n\tE_NOT_SET                                                                               = ERROR_NOT_FOUND\n\tE_NOT_VALID_STATE                                                                       = ERROR_INVALID_STATE\n\tE_NOT_SUFFICIENT_BUFFER                                                                 = ERROR_INSUFFICIENT_BUFFER\n\tE_TIME_CRITICAL_THREAD                                                                  = ERROR_TIME_CRITICAL_THREAD\n\tNOERROR                                                                   syscall.Errno = 0\n\tE_UNEXPECTED                                                              Handle        = 0x8000FFFF\n\tE_NOTIMPL                                                                 Handle        = 0x80004001\n\tE_OUTOFMEMORY                                                             Handle        = 0x8007000E\n\tE_INVALIDARG                                                              Handle        = 0x80070057\n\tE_NOINTERFACE                                                             Handle        = 0x80004002\n\tE_POINTER                                                                 Handle        = 0x80004003\n\tE_HANDLE                                                                  Handle        = 0x80070006\n\tE_ABORT                                                                   Handle        = 0x80004004\n\tE_FAIL                                                                    Handle        = 0x80004005\n\tE_ACCESSDENIED                                                            Handle        = 0x80070005\n\tE_PENDING                                                                 Handle        = 0x8000000A\n\tE_BOUNDS                                                                  Handle        = 0x8000000B\n\tE_CHANGED_STATE                                                           Handle        = 0x8000000C\n\tE_ILLEGAL_STATE_CHANGE                                                    Handle        = 0x8000000D\n\tE_ILLEGAL_METHOD_CALL                                                     Handle        = 0x8000000E\n\tRO_E_METADATA_NAME_NOT_FOUND                                              Handle        = 0x8000000F\n\tRO_E_METADATA_NAME_IS_NAMESPACE                                           Handle        = 0x80000010\n\tRO_E_METADATA_INVALID_TYPE_FORMAT                                         Handle        = 0x80000011\n\tRO_E_INVALID_METADATA_FILE                                                Handle        = 0x80000012\n\tRO_E_CLOSED                                                               Handle        = 0x80000013\n\tRO_E_EXCLUSIVE_WRITE                                                      Handle        = 0x80000014\n\tRO_E_CHANGE_NOTIFICATION_IN_PROGRESS                                      Handle        = 0x80000015\n\tRO_E_ERROR_STRING_NOT_FOUND                                               Handle        = 0x80000016\n\tE_STRING_NOT_NULL_TERMINATED                                              Handle        = 0x80000017\n\tE_ILLEGAL_DELEGATE_ASSIGNMENT                                             Handle        = 0x80000018\n\tE_ASYNC_OPERATION_NOT_STARTED                                             Handle        = 0x80000019\n\tE_APPLICATION_EXITING                                                     Handle        = 0x8000001A\n\tE_APPLICATION_VIEW_EXITING                                                Handle        = 0x8000001B\n\tRO_E_MUST_BE_AGILE                                                        Handle        = 0x8000001C\n\tRO_E_UNSUPPORTED_FROM_MTA                                                 Handle        = 0x8000001D\n\tRO_E_COMMITTED                                                            Handle        = 0x8000001E\n\tRO_E_BLOCKED_CROSS_ASTA_CALL                                              Handle        = 0x8000001F\n\tRO_E_CANNOT_ACTIVATE_FULL_TRUST_SERVER                                    Handle        = 0x80000020\n\tRO_E_CANNOT_ACTIVATE_UNIVERSAL_APPLICATION_SERVER                         Handle        = 0x80000021\n\tCO_E_INIT_TLS                                                             Handle        = 0x80004006\n\tCO_E_INIT_SHARED_ALLOCATOR                                                Handle        = 0x80004007\n\tCO_E_INIT_MEMORY_ALLOCATOR                                                Handle        = 0x80004008\n\tCO_E_INIT_CLASS_CACHE                                                     Handle        = 0x80004009\n\tCO_E_INIT_RPC_CHANNEL                                                     Handle        = 0x8000400A\n\tCO_E_INIT_TLS_SET_CHANNEL_CONTROL                                         Handle        = 0x8000400B\n\tCO_E_INIT_TLS_CHANNEL_CONTROL                                             Handle        = 0x8000400C\n\tCO_E_INIT_UNACCEPTED_USER_ALLOCATOR                                       Handle        = 0x8000400D\n\tCO_E_INIT_SCM_MUTEX_EXISTS                                                Handle        = 0x8000400E\n\tCO_E_INIT_SCM_FILE_MAPPING_EXISTS                                         Handle        = 0x8000400F\n\tCO_E_INIT_SCM_MAP_VIEW_OF_FILE                                            Handle        = 0x80004010\n\tCO_E_INIT_SCM_EXEC_FAILURE                                                Handle        = 0x80004011\n\tCO_E_INIT_ONLY_SINGLE_THREADED                                            Handle        = 0x80004012\n\tCO_E_CANT_REMOTE                                                          Handle        = 0x80004013\n\tCO_E_BAD_SERVER_NAME                                                      Handle        = 0x80004014\n\tCO_E_WRONG_SERVER_IDENTITY                                                Handle        = 0x80004015\n\tCO_E_OLE1DDE_DISABLED                                                     Handle        = 0x80004016\n\tCO_E_RUNAS_SYNTAX                                                         Handle        = 0x80004017\n\tCO_E_CREATEPROCESS_FAILURE                                                Handle        = 0x80004018\n\tCO_E_RUNAS_CREATEPROCESS_FAILURE                                          Handle        = 0x80004019\n\tCO_E_RUNAS_LOGON_FAILURE                                                  Handle        = 0x8000401A\n\tCO_E_LAUNCH_PERMSSION_DENIED                                              Handle        = 0x8000401B\n\tCO_E_START_SERVICE_FAILURE                                                Handle        = 0x8000401C\n\tCO_E_REMOTE_COMMUNICATION_FAILURE                                         Handle        = 0x8000401D\n\tCO_E_SERVER_START_TIMEOUT                                                 Handle        = 0x8000401E\n\tCO_E_CLSREG_INCONSISTENT                                                  Handle        = 0x8000401F\n\tCO_E_IIDREG_INCONSISTENT                                                  Handle        = 0x80004020\n\tCO_E_NOT_SUPPORTED                                                        Handle        = 0x80004021\n\tCO_E_RELOAD_DLL                                                           Handle        = 0x80004022\n\tCO_E_MSI_ERROR                                                            Handle        = 0x80004023\n\tCO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT                             Handle        = 0x80004024\n\tCO_E_SERVER_PAUSED                                                        Handle        = 0x80004025\n\tCO_E_SERVER_NOT_PAUSED                                                    Handle        = 0x80004026\n\tCO_E_CLASS_DISABLED                                                       Handle        = 0x80004027\n\tCO_E_CLRNOTAVAILABLE                                                      Handle        = 0x80004028\n\tCO_E_ASYNC_WORK_REJECTED                                                  Handle        = 0x80004029\n\tCO_E_SERVER_INIT_TIMEOUT                                                  Handle        = 0x8000402A\n\tCO_E_NO_SECCTX_IN_ACTIVATE                                                Handle        = 0x8000402B\n\tCO_E_TRACKER_CONFIG                                                       Handle        = 0x80004030\n\tCO_E_THREADPOOL_CONFIG                                                    Handle        = 0x80004031\n\tCO_E_SXS_CONFIG                                                           Handle        = 0x80004032\n\tCO_E_MALFORMED_SPN                                                        Handle        = 0x80004033\n\tCO_E_UNREVOKED_REGISTRATION_ON_APARTMENT_SHUTDOWN                         Handle        = 0x80004034\n\tCO_E_PREMATURE_STUB_RUNDOWN                                               Handle        = 0x80004035\n\tS_OK                                                                      Handle        = 0\n\tS_FALSE                                                                   Handle        = 1\n\tOLE_E_FIRST                                                               Handle        = 0x80040000\n\tOLE_E_LAST                                                                Handle        = 0x800400FF\n\tOLE_S_FIRST                                                               Handle        = 0x00040000\n\tOLE_S_LAST                                                                Handle        = 0x000400FF\n\tOLE_E_OLEVERB                                                             Handle        = 0x80040000\n\tOLE_E_ADVF                                                                Handle        = 0x80040001\n\tOLE_E_ENUM_NOMORE                                                         Handle        = 0x80040002\n\tOLE_E_ADVISENOTSUPPORTED                                                  Handle        = 0x80040003\n\tOLE_E_NOCONNECTION                                                        Handle        = 0x80040004\n\tOLE_E_NOTRUNNING                                                          Handle        = 0x80040005\n\tOLE_E_NOCACHE                                                             Handle        = 0x80040006\n\tOLE_E_BLANK                                                               Handle        = 0x80040007\n\tOLE_E_CLASSDIFF                                                           Handle        = 0x80040008\n\tOLE_E_CANT_GETMONIKER                                                     Handle        = 0x80040009\n\tOLE_E_CANT_BINDTOSOURCE                                                   Handle        = 0x8004000A\n\tOLE_E_STATIC                                                              Handle        = 0x8004000B\n\tOLE_E_PROMPTSAVECANCELLED                                                 Handle        = 0x8004000C\n\tOLE_E_INVALIDRECT                                                         Handle        = 0x8004000D\n\tOLE_E_WRONGCOMPOBJ                                                        Handle        = 0x8004000E\n\tOLE_E_INVALIDHWND                                                         Handle        = 0x8004000F\n\tOLE_E_NOT_INPLACEACTIVE                                                   Handle        = 0x80040010\n\tOLE_E_CANTCONVERT                                                         Handle        = 0x80040011\n\tOLE_E_NOSTORAGE                                                           Handle        = 0x80040012\n\tDV_E_FORMATETC                                                            Handle        = 0x80040064\n\tDV_E_DVTARGETDEVICE                                                       Handle        = 0x80040065\n\tDV_E_STGMEDIUM                                                            Handle        = 0x80040066\n\tDV_E_STATDATA                                                             Handle        = 0x80040067\n\tDV_E_LINDEX                                                               Handle        = 0x80040068\n\tDV_E_TYMED                                                                Handle        = 0x80040069\n\tDV_E_CLIPFORMAT                                                           Handle        = 0x8004006A\n\tDV_E_DVASPECT                                                             Handle        = 0x8004006B\n\tDV_E_DVTARGETDEVICE_SIZE                                                  Handle        = 0x8004006C\n\tDV_E_NOIVIEWOBJECT                                                        Handle        = 0x8004006D\n\tDRAGDROP_E_FIRST                                                          syscall.Errno = 0x80040100\n\tDRAGDROP_E_LAST                                                           syscall.Errno = 0x8004010F\n\tDRAGDROP_S_FIRST                                                          syscall.Errno = 0x00040100\n\tDRAGDROP_S_LAST                                                           syscall.Errno = 0x0004010F\n\tDRAGDROP_E_NOTREGISTERED                                                  Handle        = 0x80040100\n\tDRAGDROP_E_ALREADYREGISTERED                                              Handle        = 0x80040101\n\tDRAGDROP_E_INVALIDHWND                                                    Handle        = 0x80040102\n\tDRAGDROP_E_CONCURRENT_DRAG_ATTEMPTED                                      Handle        = 0x80040103\n\tCLASSFACTORY_E_FIRST                                                      syscall.Errno = 0x80040110\n\tCLASSFACTORY_E_LAST                                                       syscall.Errno = 0x8004011F\n\tCLASSFACTORY_S_FIRST                                                      syscall.Errno = 0x00040110\n\tCLASSFACTORY_S_LAST                                                       syscall.Errno = 0x0004011F\n\tCLASS_E_NOAGGREGATION                                                     Handle        = 0x80040110\n\tCLASS_E_CLASSNOTAVAILABLE                                                 Handle        = 0x80040111\n\tCLASS_E_NOTLICENSED                                                       Handle        = 0x80040112\n\tMARSHAL_E_FIRST                                                           syscall.Errno = 0x80040120\n\tMARSHAL_E_LAST                                                            syscall.Errno = 0x8004012F\n\tMARSHAL_S_FIRST                                                           syscall.Errno = 0x00040120\n\tMARSHAL_S_LAST                                                            syscall.Errno = 0x0004012F\n\tDATA_E_FIRST                                                              syscall.Errno = 0x80040130\n\tDATA_E_LAST                                                               syscall.Errno = 0x8004013F\n\tDATA_S_FIRST                                                              syscall.Errno = 0x00040130\n\tDATA_S_LAST                                                               syscall.Errno = 0x0004013F\n\tVIEW_E_FIRST                                                              syscall.Errno = 0x80040140\n\tVIEW_E_LAST                                                               syscall.Errno = 0x8004014F\n\tVIEW_S_FIRST                                                              syscall.Errno = 0x00040140\n\tVIEW_S_LAST                                                               syscall.Errno = 0x0004014F\n\tVIEW_E_DRAW                                                               Handle        = 0x80040140\n\tREGDB_E_FIRST                                                             syscall.Errno = 0x80040150\n\tREGDB_E_LAST                                                              syscall.Errno = 0x8004015F\n\tREGDB_S_FIRST                                                             syscall.Errno = 0x00040150\n\tREGDB_S_LAST                                                              syscall.Errno = 0x0004015F\n\tREGDB_E_READREGDB                                                         Handle        = 0x80040150\n\tREGDB_E_WRITEREGDB                                                        Handle        = 0x80040151\n\tREGDB_E_KEYMISSING                                                        Handle        = 0x80040152\n\tREGDB_E_INVALIDVALUE                                                      Handle        = 0x80040153\n\tREGDB_E_CLASSNOTREG                                                       Handle        = 0x80040154\n\tREGDB_E_IIDNOTREG                                                         Handle        = 0x80040155\n\tREGDB_E_BADTHREADINGMODEL                                                 Handle        = 0x80040156\n\tREGDB_E_PACKAGEPOLICYVIOLATION                                            Handle        = 0x80040157\n\tCAT_E_FIRST                                                               syscall.Errno = 0x80040160\n\tCAT_E_LAST                                                                syscall.Errno = 0x80040161\n\tCAT_E_CATIDNOEXIST                                                        Handle        = 0x80040160\n\tCAT_E_NODESCRIPTION                                                       Handle        = 0x80040161\n\tCS_E_FIRST                                                                syscall.Errno = 0x80040164\n\tCS_E_LAST                                                                 syscall.Errno = 0x8004016F\n\tCS_E_PACKAGE_NOTFOUND                                                     Handle        = 0x80040164\n\tCS_E_NOT_DELETABLE                                                        Handle        = 0x80040165\n\tCS_E_CLASS_NOTFOUND                                                       Handle        = 0x80040166\n\tCS_E_INVALID_VERSION                                                      Handle        = 0x80040167\n\tCS_E_NO_CLASSSTORE                                                        Handle        = 0x80040168\n\tCS_E_OBJECT_NOTFOUND                                                      Handle        = 0x80040169\n\tCS_E_OBJECT_ALREADY_EXISTS                                                Handle        = 0x8004016A\n\tCS_E_INVALID_PATH                                                         Handle        = 0x8004016B\n\tCS_E_NETWORK_ERROR                                                        Handle        = 0x8004016C\n\tCS_E_ADMIN_LIMIT_EXCEEDED                                                 Handle        = 0x8004016D\n\tCS_E_SCHEMA_MISMATCH                                                      Handle        = 0x8004016E\n\tCS_E_INTERNAL_ERROR                                                       Handle        = 0x8004016F\n\tCACHE_E_FIRST                                                             syscall.Errno = 0x80040170\n\tCACHE_E_LAST                                                              syscall.Errno = 0x8004017F\n\tCACHE_S_FIRST                                                             syscall.Errno = 0x00040170\n\tCACHE_S_LAST                                                              syscall.Errno = 0x0004017F\n\tCACHE_E_NOCACHE_UPDATED                                                   Handle        = 0x80040170\n\tOLEOBJ_E_FIRST                                                            syscall.Errno = 0x80040180\n\tOLEOBJ_E_LAST                                                             syscall.Errno = 0x8004018F\n\tOLEOBJ_S_FIRST                                                            syscall.Errno = 0x00040180\n\tOLEOBJ_S_LAST                                                             syscall.Errno = 0x0004018F\n\tOLEOBJ_E_NOVERBS                                                          Handle        = 0x80040180\n\tOLEOBJ_E_INVALIDVERB                                                      Handle        = 0x80040181\n\tCLIENTSITE_E_FIRST                                                        syscall.Errno = 0x80040190\n\tCLIENTSITE_E_LAST                                                         syscall.Errno = 0x8004019F\n\tCLIENTSITE_S_FIRST                                                        syscall.Errno = 0x00040190\n\tCLIENTSITE_S_LAST                                                         syscall.Errno = 0x0004019F\n\tINPLACE_E_NOTUNDOABLE                                                     Handle        = 0x800401A0\n\tINPLACE_E_NOTOOLSPACE                                                     Handle        = 0x800401A1\n\tINPLACE_E_FIRST                                                           syscall.Errno = 0x800401A0\n\tINPLACE_E_LAST                                                            syscall.Errno = 0x800401AF\n\tINPLACE_S_FIRST                                                           syscall.Errno = 0x000401A0\n\tINPLACE_S_LAST                                                            syscall.Errno = 0x000401AF\n\tENUM_E_FIRST                                                              syscall.Errno = 0x800401B0\n\tENUM_E_LAST                                                               syscall.Errno = 0x800401BF\n\tENUM_S_FIRST                                                              syscall.Errno = 0x000401B0\n\tENUM_S_LAST                                                               syscall.Errno = 0x000401BF\n\tCONVERT10_E_FIRST                                                         syscall.Errno = 0x800401C0\n\tCONVERT10_E_LAST                                                          syscall.Errno = 0x800401CF\n\tCONVERT10_S_FIRST                                                         syscall.Errno = 0x000401C0\n\tCONVERT10_S_LAST                                                          syscall.Errno = 0x000401CF\n\tCONVERT10_E_OLESTREAM_GET                                                 Handle        = 0x800401C0\n\tCONVERT10_E_OLESTREAM_PUT                                                 Handle        = 0x800401C1\n\tCONVERT10_E_OLESTREAM_FMT                                                 Handle        = 0x800401C2\n\tCONVERT10_E_OLESTREAM_BITMAP_TO_DIB                                       Handle        = 0x800401C3\n\tCONVERT10_E_STG_FMT                                                       Handle        = 0x800401C4\n\tCONVERT10_E_STG_NO_STD_STREAM                                             Handle        = 0x800401C5\n\tCONVERT10_E_STG_DIB_TO_BITMAP                                             Handle        = 0x800401C6\n\tCLIPBRD_E_FIRST                                                           syscall.Errno = 0x800401D0\n\tCLIPBRD_E_LAST                                                            syscall.Errno = 0x800401DF\n\tCLIPBRD_S_FIRST                                                           syscall.Errno = 0x000401D0\n\tCLIPBRD_S_LAST                                                            syscall.Errno = 0x000401DF\n\tCLIPBRD_E_CANT_OPEN                                                       Handle        = 0x800401D0\n\tCLIPBRD_E_CANT_EMPTY                                                      Handle        = 0x800401D1\n\tCLIPBRD_E_CANT_SET                                                        Handle        = 0x800401D2\n\tCLIPBRD_E_BAD_DATA                                                        Handle        = 0x800401D3\n\tCLIPBRD_E_CANT_CLOSE                                                      Handle        = 0x800401D4\n\tMK_E_FIRST                                                                syscall.Errno = 0x800401E0\n\tMK_E_LAST                                                                 syscall.Errno = 0x800401EF\n\tMK_S_FIRST                                                                syscall.Errno = 0x000401E0\n\tMK_S_LAST                                                                 syscall.Errno = 0x000401EF\n\tMK_E_CONNECTMANUALLY                                                      Handle        = 0x800401E0\n\tMK_E_EXCEEDEDDEADLINE                                                     Handle        = 0x800401E1\n\tMK_E_NEEDGENERIC                                                          Handle        = 0x800401E2\n\tMK_E_UNAVAILABLE                                                          Handle        = 0x800401E3\n\tMK_E_SYNTAX                                                               Handle        = 0x800401E4\n\tMK_E_NOOBJECT                                                             Handle        = 0x800401E5\n\tMK_E_INVALIDEXTENSION                                                     Handle        = 0x800401E6\n\tMK_E_INTERMEDIATEINTERFACENOTSUPPORTED                                    Handle        = 0x800401E7\n\tMK_E_NOTBINDABLE                                                          Handle        = 0x800401E8\n\tMK_E_NOTBOUND                                                             Handle        = 0x800401E9\n\tMK_E_CANTOPENFILE                                                         Handle        = 0x800401EA\n\tMK_E_MUSTBOTHERUSER                                                       Handle        = 0x800401EB\n\tMK_E_NOINVERSE                                                            Handle        = 0x800401EC\n\tMK_E_NOSTORAGE                                                            Handle        = 0x800401ED\n\tMK_E_NOPREFIX                                                             Handle        = 0x800401EE\n\tMK_E_ENUMERATION_FAILED                                                   Handle        = 0x800401EF\n\tCO_E_FIRST                                                                syscall.Errno = 0x800401F0\n\tCO_E_LAST                                                                 syscall.Errno = 0x800401FF\n\tCO_S_FIRST                                                                syscall.Errno = 0x000401F0\n\tCO_S_LAST                                                                 syscall.Errno = 0x000401FF\n\tCO_E_NOTINITIALIZED                                                       Handle        = 0x800401F0\n\tCO_E_ALREADYINITIALIZED                                                   Handle        = 0x800401F1\n\tCO_E_CANTDETERMINECLASS                                                   Handle        = 0x800401F2\n\tCO_E_CLASSSTRING                                                          Handle        = 0x800401F3\n\tCO_E_IIDSTRING                                                            Handle        = 0x800401F4\n\tCO_E_APPNOTFOUND                                                          Handle        = 0x800401F5\n\tCO_E_APPSINGLEUSE                                                         Handle        = 0x800401F6\n\tCO_E_ERRORINAPP                                                           Handle        = 0x800401F7\n\tCO_E_DLLNOTFOUND                                                          Handle        = 0x800401F8\n\tCO_E_ERRORINDLL                                                           Handle        = 0x800401F9\n\tCO_E_WRONGOSFORAPP                                                        Handle        = 0x800401FA\n\tCO_E_OBJNOTREG                                                            Handle        = 0x800401FB\n\tCO_E_OBJISREG                                                             Handle        = 0x800401FC\n\tCO_E_OBJNOTCONNECTED                                                      Handle        = 0x800401FD\n\tCO_E_APPDIDNTREG                                                          Handle        = 0x800401FE\n\tCO_E_RELEASED                                                             Handle        = 0x800401FF\n\tEVENT_E_FIRST                                                             syscall.Errno = 0x80040200\n\tEVENT_E_LAST                                                              syscall.Errno = 0x8004021F\n\tEVENT_S_FIRST                                                             syscall.Errno = 0x00040200\n\tEVENT_S_LAST                                                              syscall.Errno = 0x0004021F\n\tEVENT_S_SOME_SUBSCRIBERS_FAILED                                           Handle        = 0x00040200\n\tEVENT_E_ALL_SUBSCRIBERS_FAILED                                            Handle        = 0x80040201\n\tEVENT_S_NOSUBSCRIBERS                                                     Handle        = 0x00040202\n\tEVENT_E_QUERYSYNTAX                                                       Handle        = 0x80040203\n\tEVENT_E_QUERYFIELD                                                        Handle        = 0x80040204\n\tEVENT_E_INTERNALEXCEPTION                                                 Handle        = 0x80040205\n\tEVENT_E_INTERNALERROR                                                     Handle        = 0x80040206\n\tEVENT_E_INVALID_PER_USER_SID                                              Handle        = 0x80040207\n\tEVENT_E_USER_EXCEPTION                                                    Handle        = 0x80040208\n\tEVENT_E_TOO_MANY_METHODS                                                  Handle        = 0x80040209\n\tEVENT_E_MISSING_EVENTCLASS                                                Handle        = 0x8004020A\n\tEVENT_E_NOT_ALL_REMOVED                                                   Handle        = 0x8004020B\n\tEVENT_E_COMPLUS_NOT_INSTALLED                                             Handle        = 0x8004020C\n\tEVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT                         Handle        = 0x8004020D\n\tEVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT                           Handle        = 0x8004020E\n\tEVENT_E_INVALID_EVENT_CLASS_PARTITION                                     Handle        = 0x8004020F\n\tEVENT_E_PER_USER_SID_NOT_LOGGED_ON                                        Handle        = 0x80040210\n\tTPC_E_INVALID_PROPERTY                                                    Handle        = 0x80040241\n\tTPC_E_NO_DEFAULT_TABLET                                                   Handle        = 0x80040212\n\tTPC_E_UNKNOWN_PROPERTY                                                    Handle        = 0x8004021B\n\tTPC_E_INVALID_INPUT_RECT                                                  Handle        = 0x80040219\n\tTPC_E_INVALID_STROKE                                                      Handle        = 0x80040222\n\tTPC_E_INITIALIZE_FAIL                                                     Handle        = 0x80040223\n\tTPC_E_NOT_RELEVANT                                                        Handle        = 0x80040232\n\tTPC_E_INVALID_PACKET_DESCRIPTION                                          Handle        = 0x80040233\n\tTPC_E_RECOGNIZER_NOT_REGISTERED                                           Handle        = 0x80040235\n\tTPC_E_INVALID_RIGHTS                                                      Handle        = 0x80040236\n\tTPC_E_OUT_OF_ORDER_CALL                                                   Handle        = 0x80040237\n\tTPC_E_QUEUE_FULL                                                          Handle        = 0x80040238\n\tTPC_E_INVALID_CONFIGURATION                                               Handle        = 0x80040239\n\tTPC_E_INVALID_DATA_FROM_RECOGNIZER                                        Handle        = 0x8004023A\n\tTPC_S_TRUNCATED                                                           Handle        = 0x00040252\n\tTPC_S_INTERRUPTED                                                         Handle        = 0x00040253\n\tTPC_S_NO_DATA_TO_PROCESS                                                  Handle        = 0x00040254\n\tXACT_E_FIRST                                                              syscall.Errno = 0x8004D000\n\tXACT_E_LAST                                                               syscall.Errno = 0x8004D02B\n\tXACT_S_FIRST                                                              syscall.Errno = 0x0004D000\n\tXACT_S_LAST                                                               syscall.Errno = 0x0004D010\n\tXACT_E_ALREADYOTHERSINGLEPHASE                                            Handle        = 0x8004D000\n\tXACT_E_CANTRETAIN                                                         Handle        = 0x8004D001\n\tXACT_E_COMMITFAILED                                                       Handle        = 0x8004D002\n\tXACT_E_COMMITPREVENTED                                                    Handle        = 0x8004D003\n\tXACT_E_HEURISTICABORT                                                     Handle        = 0x8004D004\n\tXACT_E_HEURISTICCOMMIT                                                    Handle        = 0x8004D005\n\tXACT_E_HEURISTICDAMAGE                                                    Handle        = 0x8004D006\n\tXACT_E_HEURISTICDANGER                                                    Handle        = 0x8004D007\n\tXACT_E_ISOLATIONLEVEL                                                     Handle        = 0x8004D008\n\tXACT_E_NOASYNC                                                            Handle        = 0x8004D009\n\tXACT_E_NOENLIST                                                           Handle        = 0x8004D00A\n\tXACT_E_NOISORETAIN                                                        Handle        = 0x8004D00B\n\tXACT_E_NORESOURCE                                                         Handle        = 0x8004D00C\n\tXACT_E_NOTCURRENT                                                         Handle        = 0x8004D00D\n\tXACT_E_NOTRANSACTION                                                      Handle        = 0x8004D00E\n\tXACT_E_NOTSUPPORTED                                                       Handle        = 0x8004D00F\n\tXACT_E_UNKNOWNRMGRID                                                      Handle        = 0x8004D010\n\tXACT_E_WRONGSTATE                                                         Handle        = 0x8004D011\n\tXACT_E_WRONGUOW                                                           Handle        = 0x8004D012\n\tXACT_E_XTIONEXISTS                                                        Handle        = 0x8004D013\n\tXACT_E_NOIMPORTOBJECT                                                     Handle        = 0x8004D014\n\tXACT_E_INVALIDCOOKIE                                                      Handle        = 0x8004D015\n\tXACT_E_INDOUBT                                                            Handle        = 0x8004D016\n\tXACT_E_NOTIMEOUT                                                          Handle        = 0x8004D017\n\tXACT_E_ALREADYINPROGRESS                                                  Handle        = 0x8004D018\n\tXACT_E_ABORTED                                                            Handle        = 0x8004D019\n\tXACT_E_LOGFULL                                                            Handle        = 0x8004D01A\n\tXACT_E_TMNOTAVAILABLE                                                     Handle        = 0x8004D01B\n\tXACT_E_CONNECTION_DOWN                                                    Handle        = 0x8004D01C\n\tXACT_E_CONNECTION_DENIED                                                  Handle        = 0x8004D01D\n\tXACT_E_REENLISTTIMEOUT                                                    Handle        = 0x8004D01E\n\tXACT_E_TIP_CONNECT_FAILED                                                 Handle        = 0x8004D01F\n\tXACT_E_TIP_PROTOCOL_ERROR                                                 Handle        = 0x8004D020\n\tXACT_E_TIP_PULL_FAILED                                                    Handle        = 0x8004D021\n\tXACT_E_DEST_TMNOTAVAILABLE                                                Handle        = 0x8004D022\n\tXACT_E_TIP_DISABLED                                                       Handle        = 0x8004D023\n\tXACT_E_NETWORK_TX_DISABLED                                                Handle        = 0x8004D024\n\tXACT_E_PARTNER_NETWORK_TX_DISABLED                                        Handle        = 0x8004D025\n\tXACT_E_XA_TX_DISABLED                                                     Handle        = 0x8004D026\n\tXACT_E_UNABLE_TO_READ_DTC_CONFIG                                          Handle        = 0x8004D027\n\tXACT_E_UNABLE_TO_LOAD_DTC_PROXY                                           Handle        = 0x8004D028\n\tXACT_E_ABORTING                                                           Handle        = 0x8004D029\n\tXACT_E_PUSH_COMM_FAILURE                                                  Handle        = 0x8004D02A\n\tXACT_E_PULL_COMM_FAILURE                                                  Handle        = 0x8004D02B\n\tXACT_E_LU_TX_DISABLED                                                     Handle        = 0x8004D02C\n\tXACT_E_CLERKNOTFOUND                                                      Handle        = 0x8004D080\n\tXACT_E_CLERKEXISTS                                                        Handle        = 0x8004D081\n\tXACT_E_RECOVERYINPROGRESS                                                 Handle        = 0x8004D082\n\tXACT_E_TRANSACTIONCLOSED                                                  Handle        = 0x8004D083\n\tXACT_E_INVALIDLSN                                                         Handle        = 0x8004D084\n\tXACT_E_REPLAYREQUEST                                                      Handle        = 0x8004D085\n\tXACT_S_ASYNC                                                              Handle        = 0x0004D000\n\tXACT_S_DEFECT                                                             Handle        = 0x0004D001\n\tXACT_S_READONLY                                                           Handle        = 0x0004D002\n\tXACT_S_SOMENORETAIN                                                       Handle        = 0x0004D003\n\tXACT_S_OKINFORM                                                           Handle        = 0x0004D004\n\tXACT_S_MADECHANGESCONTENT                                                 Handle        = 0x0004D005\n\tXACT_S_MADECHANGESINFORM                                                  Handle        = 0x0004D006\n\tXACT_S_ALLNORETAIN                                                        Handle        = 0x0004D007\n\tXACT_S_ABORTING                                                           Handle        = 0x0004D008\n\tXACT_S_SINGLEPHASE                                                        Handle        = 0x0004D009\n\tXACT_S_LOCALLY_OK                                                         Handle        = 0x0004D00A\n\tXACT_S_LASTRESOURCEMANAGER                                                Handle        = 0x0004D010\n\tCONTEXT_E_FIRST                                                           syscall.Errno = 0x8004E000\n\tCONTEXT_E_LAST                                                            syscall.Errno = 0x8004E02F\n\tCONTEXT_S_FIRST                                                           syscall.Errno = 0x0004E000\n\tCONTEXT_S_LAST                                                            syscall.Errno = 0x0004E02F\n\tCONTEXT_E_ABORTED                                                         Handle        = 0x8004E002\n\tCONTEXT_E_ABORTING                                                        Handle        = 0x8004E003\n\tCONTEXT_E_NOCONTEXT                                                       Handle        = 0x8004E004\n\tCONTEXT_E_WOULD_DEADLOCK                                                  Handle        = 0x8004E005\n\tCONTEXT_E_SYNCH_TIMEOUT                                                   Handle        = 0x8004E006\n\tCONTEXT_E_OLDREF                                                          Handle        = 0x8004E007\n\tCONTEXT_E_ROLENOTFOUND                                                    Handle        = 0x8004E00C\n\tCONTEXT_E_TMNOTAVAILABLE                                                  Handle        = 0x8004E00F\n\tCO_E_ACTIVATIONFAILED                                                     Handle        = 0x8004E021\n\tCO_E_ACTIVATIONFAILED_EVENTLOGGED                                         Handle        = 0x8004E022\n\tCO_E_ACTIVATIONFAILED_CATALOGERROR                                        Handle        = 0x8004E023\n\tCO_E_ACTIVATIONFAILED_TIMEOUT                                             Handle        = 0x8004E024\n\tCO_E_INITIALIZATIONFAILED                                                 Handle        = 0x8004E025\n\tCONTEXT_E_NOJIT                                                           Handle        = 0x8004E026\n\tCONTEXT_E_NOTRANSACTION                                                   Handle        = 0x8004E027\n\tCO_E_THREADINGMODEL_CHANGED                                               Handle        = 0x8004E028\n\tCO_E_NOIISINTRINSICS                                                      Handle        = 0x8004E029\n\tCO_E_NOCOOKIES                                                            Handle        = 0x8004E02A\n\tCO_E_DBERROR                                                              Handle        = 0x8004E02B\n\tCO_E_NOTPOOLED                                                            Handle        = 0x8004E02C\n\tCO_E_NOTCONSTRUCTED                                                       Handle        = 0x8004E02D\n\tCO_E_NOSYNCHRONIZATION                                                    Handle        = 0x8004E02E\n\tCO_E_ISOLEVELMISMATCH                                                     Handle        = 0x8004E02F\n\tCO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED                                     Handle        = 0x8004E030\n\tCO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED                                    Handle        = 0x8004E031\n\tOLE_S_USEREG                                                              Handle        = 0x00040000\n\tOLE_S_STATIC                                                              Handle        = 0x00040001\n\tOLE_S_MAC_CLIPFORMAT                                                      Handle        = 0x00040002\n\tDRAGDROP_S_DROP                                                           Handle        = 0x00040100\n\tDRAGDROP_S_CANCEL                                                         Handle        = 0x00040101\n\tDRAGDROP_S_USEDEFAULTCURSORS                                              Handle        = 0x00040102\n\tDATA_S_SAMEFORMATETC                                                      Handle        = 0x00040130\n\tVIEW_S_ALREADY_FROZEN                                                     Handle        = 0x00040140\n\tCACHE_S_FORMATETC_NOTSUPPORTED                                            Handle        = 0x00040170\n\tCACHE_S_SAMECACHE                                                         Handle        = 0x00040171\n\tCACHE_S_SOMECACHES_NOTUPDATED                                             Handle        = 0x00040172\n\tOLEOBJ_S_INVALIDVERB                                                      Handle        = 0x00040180\n\tOLEOBJ_S_CANNOT_DOVERB_NOW                                                Handle        = 0x00040181\n\tOLEOBJ_S_INVALIDHWND                                                      Handle        = 0x00040182\n\tINPLACE_S_TRUNCATED                                                       Handle        = 0x000401A0\n\tCONVERT10_S_NO_PRESENTATION                                               Handle        = 0x000401C0\n\tMK_S_REDUCED_TO_SELF                                                      Handle        = 0x000401E2\n\tMK_S_ME                                                                   Handle        = 0x000401E4\n\tMK_S_HIM                                                                  Handle        = 0x000401E5\n\tMK_S_US                                                                   Handle        = 0x000401E6\n\tMK_S_MONIKERALREADYREGISTERED                                             Handle        = 0x000401E7\n\tSCHED_S_TASK_READY                                                        Handle        = 0x00041300\n\tSCHED_S_TASK_RUNNING                                                      Handle        = 0x00041301\n\tSCHED_S_TASK_DISABLED                                                     Handle        = 0x00041302\n\tSCHED_S_TASK_HAS_NOT_RUN                                                  Handle        = 0x00041303\n\tSCHED_S_TASK_NO_MORE_RUNS                                                 Handle        = 0x00041304\n\tSCHED_S_TASK_NOT_SCHEDULED                                                Handle        = 0x00041305\n\tSCHED_S_TASK_TERMINATED                                                   Handle        = 0x00041306\n\tSCHED_S_TASK_NO_VALID_TRIGGERS                                            Handle        = 0x00041307\n\tSCHED_S_EVENT_TRIGGER                                                     Handle        = 0x00041308\n\tSCHED_E_TRIGGER_NOT_FOUND                                                 Handle        = 0x80041309\n\tSCHED_E_TASK_NOT_READY                                                    Handle        = 0x8004130A\n\tSCHED_E_TASK_NOT_RUNNING                                                  Handle        = 0x8004130B\n\tSCHED_E_SERVICE_NOT_INSTALLED                                             Handle        = 0x8004130C\n\tSCHED_E_CANNOT_OPEN_TASK                                                  Handle        = 0x8004130D\n\tSCHED_E_INVALID_TASK                                                      Handle        = 0x8004130E\n\tSCHED_E_ACCOUNT_INFORMATION_NOT_SET                                       Handle        = 0x8004130F\n\tSCHED_E_ACCOUNT_NAME_NOT_FOUND                                            Handle        = 0x80041310\n\tSCHED_E_ACCOUNT_DBASE_CORRUPT                                             Handle        = 0x80041311\n\tSCHED_E_NO_SECURITY_SERVICES                                              Handle        = 0x80041312\n\tSCHED_E_UNKNOWN_OBJECT_VERSION                                            Handle        = 0x80041313\n\tSCHED_E_UNSUPPORTED_ACCOUNT_OPTION                                        Handle        = 0x80041314\n\tSCHED_E_SERVICE_NOT_RUNNING                                               Handle        = 0x80041315\n\tSCHED_E_UNEXPECTEDNODE                                                    Handle        = 0x80041316\n\tSCHED_E_NAMESPACE                                                         Handle        = 0x80041317\n\tSCHED_E_INVALIDVALUE                                                      Handle        = 0x80041318\n\tSCHED_E_MISSINGNODE                                                       Handle        = 0x80041319\n\tSCHED_E_MALFORMEDXML                                                      Handle        = 0x8004131A\n\tSCHED_S_SOME_TRIGGERS_FAILED                                              Handle        = 0x0004131B\n\tSCHED_S_BATCH_LOGON_PROBLEM                                               Handle        = 0x0004131C\n\tSCHED_E_TOO_MANY_NODES                                                    Handle        = 0x8004131D\n\tSCHED_E_PAST_END_BOUNDARY                                                 Handle        = 0x8004131E\n\tSCHED_E_ALREADY_RUNNING                                                   Handle        = 0x8004131F\n\tSCHED_E_USER_NOT_LOGGED_ON                                                Handle        = 0x80041320\n\tSCHED_E_INVALID_TASK_HASH                                                 Handle        = 0x80041321\n\tSCHED_E_SERVICE_NOT_AVAILABLE                                             Handle        = 0x80041322\n\tSCHED_E_SERVICE_TOO_BUSY                                                  Handle        = 0x80041323\n\tSCHED_E_TASK_ATTEMPTED                                                    Handle        = 0x80041324\n\tSCHED_S_TASK_QUEUED                                                       Handle        = 0x00041325\n\tSCHED_E_TASK_DISABLED                                                     Handle        = 0x80041326\n\tSCHED_E_TASK_NOT_V1_COMPAT                                                Handle        = 0x80041327\n\tSCHED_E_START_ON_DEMAND                                                   Handle        = 0x80041328\n\tSCHED_E_TASK_NOT_UBPM_COMPAT                                              Handle        = 0x80041329\n\tSCHED_E_DEPRECATED_FEATURE_USED                                           Handle        = 0x80041330\n\tCO_E_CLASS_CREATE_FAILED                                                  Handle        = 0x80080001\n\tCO_E_SCM_ERROR                                                            Handle        = 0x80080002\n\tCO_E_SCM_RPC_FAILURE                                                      Handle        = 0x80080003\n\tCO_E_BAD_PATH                                                             Handle        = 0x80080004\n\tCO_E_SERVER_EXEC_FAILURE                                                  Handle        = 0x80080005\n\tCO_E_OBJSRV_RPC_FAILURE                                                   Handle        = 0x80080006\n\tMK_E_NO_NORMALIZED                                                        Handle        = 0x80080007\n\tCO_E_SERVER_STOPPING                                                      Handle        = 0x80080008\n\tMEM_E_INVALID_ROOT                                                        Handle        = 0x80080009\n\tMEM_E_INVALID_LINK                                                        Handle        = 0x80080010\n\tMEM_E_INVALID_SIZE                                                        Handle        = 0x80080011\n\tCO_S_NOTALLINTERFACES                                                     Handle        = 0x00080012\n\tCO_S_MACHINENAMENOTFOUND                                                  Handle        = 0x00080013\n\tCO_E_MISSING_DISPLAYNAME                                                  Handle        = 0x80080015\n\tCO_E_RUNAS_VALUE_MUST_BE_AAA                                              Handle        = 0x80080016\n\tCO_E_ELEVATION_DISABLED                                                   Handle        = 0x80080017\n\tAPPX_E_PACKAGING_INTERNAL                                                 Handle        = 0x80080200\n\tAPPX_E_INTERLEAVING_NOT_ALLOWED                                           Handle        = 0x80080201\n\tAPPX_E_RELATIONSHIPS_NOT_ALLOWED                                          Handle        = 0x80080202\n\tAPPX_E_MISSING_REQUIRED_FILE                                              Handle        = 0x80080203\n\tAPPX_E_INVALID_MANIFEST                                                   Handle        = 0x80080204\n\tAPPX_E_INVALID_BLOCKMAP                                                   Handle        = 0x80080205\n\tAPPX_E_CORRUPT_CONTENT                                                    Handle        = 0x80080206\n\tAPPX_E_BLOCK_HASH_INVALID                                                 Handle        = 0x80080207\n\tAPPX_E_REQUESTED_RANGE_TOO_LARGE                                          Handle        = 0x80080208\n\tAPPX_E_INVALID_SIP_CLIENT_DATA                                            Handle        = 0x80080209\n\tAPPX_E_INVALID_KEY_INFO                                                   Handle        = 0x8008020A\n\tAPPX_E_INVALID_CONTENTGROUPMAP                                            Handle        = 0x8008020B\n\tAPPX_E_INVALID_APPINSTALLER                                               Handle        = 0x8008020C\n\tAPPX_E_DELTA_BASELINE_VERSION_MISMATCH                                    Handle        = 0x8008020D\n\tAPPX_E_DELTA_PACKAGE_MISSING_FILE                                         Handle        = 0x8008020E\n\tAPPX_E_INVALID_DELTA_PACKAGE                                              Handle        = 0x8008020F\n\tAPPX_E_DELTA_APPENDED_PACKAGE_NOT_ALLOWED                                 Handle        = 0x80080210\n\tAPPX_E_INVALID_PACKAGING_LAYOUT                                           Handle        = 0x80080211\n\tAPPX_E_INVALID_PACKAGESIGNCONFIG                                          Handle        = 0x80080212\n\tAPPX_E_RESOURCESPRI_NOT_ALLOWED                                           Handle        = 0x80080213\n\tAPPX_E_FILE_COMPRESSION_MISMATCH                                          Handle        = 0x80080214\n\tAPPX_E_INVALID_PAYLOAD_PACKAGE_EXTENSION                                  Handle        = 0x80080215\n\tAPPX_E_INVALID_ENCRYPTION_EXCLUSION_FILE_LIST                             Handle        = 0x80080216\n\tBT_E_SPURIOUS_ACTIVATION                                                  Handle        = 0x80080300\n\tDISP_E_UNKNOWNINTERFACE                                                   Handle        = 0x80020001\n\tDISP_E_MEMBERNOTFOUND                                                     Handle        = 0x80020003\n\tDISP_E_PARAMNOTFOUND                                                      Handle        = 0x80020004\n\tDISP_E_TYPEMISMATCH                                                       Handle        = 0x80020005\n\tDISP_E_UNKNOWNNAME                                                        Handle        = 0x80020006\n\tDISP_E_NONAMEDARGS                                                        Handle        = 0x80020007\n\tDISP_E_BADVARTYPE                                                         Handle        = 0x80020008\n\tDISP_E_EXCEPTION                                                          Handle        = 0x80020009\n\tDISP_E_OVERFLOW                                                           Handle        = 0x8002000A\n\tDISP_E_BADINDEX                                                           Handle        = 0x8002000B\n\tDISP_E_UNKNOWNLCID                                                        Handle        = 0x8002000C\n\tDISP_E_ARRAYISLOCKED                                                      Handle        = 0x8002000D\n\tDISP_E_BADPARAMCOUNT                                                      Handle        = 0x8002000E\n\tDISP_E_PARAMNOTOPTIONAL                                                   Handle        = 0x8002000F\n\tDISP_E_BADCALLEE                                                          Handle        = 0x80020010\n\tDISP_E_NOTACOLLECTION                                                     Handle        = 0x80020011\n\tDISP_E_DIVBYZERO                                                          Handle        = 0x80020012\n\tDISP_E_BUFFERTOOSMALL                                                     Handle        = 0x80020013\n\tTYPE_E_BUFFERTOOSMALL                                                     Handle        = 0x80028016\n\tTYPE_E_FIELDNOTFOUND                                                      Handle        = 0x80028017\n\tTYPE_E_INVDATAREAD                                                        Handle        = 0x80028018\n\tTYPE_E_UNSUPFORMAT                                                        Handle        = 0x80028019\n\tTYPE_E_REGISTRYACCESS                                                     Handle        = 0x8002801C\n\tTYPE_E_LIBNOTREGISTERED                                                   Handle        = 0x8002801D\n\tTYPE_E_UNDEFINEDTYPE                                                      Handle        = 0x80028027\n\tTYPE_E_QUALIFIEDNAMEDISALLOWED                                            Handle        = 0x80028028\n\tTYPE_E_INVALIDSTATE                                                       Handle        = 0x80028029\n\tTYPE_E_WRONGTYPEKIND                                                      Handle        = 0x8002802A\n\tTYPE_E_ELEMENTNOTFOUND                                                    Handle        = 0x8002802B\n\tTYPE_E_AMBIGUOUSNAME                                                      Handle        = 0x8002802C\n\tTYPE_E_NAMECONFLICT                                                       Handle        = 0x8002802D\n\tTYPE_E_UNKNOWNLCID                                                        Handle        = 0x8002802E\n\tTYPE_E_DLLFUNCTIONNOTFOUND                                                Handle        = 0x8002802F\n\tTYPE_E_BADMODULEKIND                                                      Handle        = 0x800288BD\n\tTYPE_E_SIZETOOBIG                                                         Handle        = 0x800288C5\n\tTYPE_E_DUPLICATEID                                                        Handle        = 0x800288C6\n\tTYPE_E_INVALIDID                                                          Handle        = 0x800288CF\n\tTYPE_E_TYPEMISMATCH                                                       Handle        = 0x80028CA0\n\tTYPE_E_OUTOFBOUNDS                                                        Handle        = 0x80028CA1\n\tTYPE_E_IOERROR                                                            Handle        = 0x80028CA2\n\tTYPE_E_CANTCREATETMPFILE                                                  Handle        = 0x80028CA3\n\tTYPE_E_CANTLOADLIBRARY                                                    Handle        = 0x80029C4A\n\tTYPE_E_INCONSISTENTPROPFUNCS                                              Handle        = 0x80029C83\n\tTYPE_E_CIRCULARTYPE                                                       Handle        = 0x80029C84\n\tSTG_E_INVALIDFUNCTION                                                     Handle        = 0x80030001\n\tSTG_E_FILENOTFOUND                                                        Handle        = 0x80030002\n\tSTG_E_PATHNOTFOUND                                                        Handle        = 0x80030003\n\tSTG_E_TOOMANYOPENFILES                                                    Handle        = 0x80030004\n\tSTG_E_ACCESSDENIED                                                        Handle        = 0x80030005\n\tSTG_E_INVALIDHANDLE                                                       Handle        = 0x80030006\n\tSTG_E_INSUFFICIENTMEMORY                                                  Handle        = 0x80030008\n\tSTG_E_INVALIDPOINTER                                                      Handle        = 0x80030009\n\tSTG_E_NOMOREFILES                                                         Handle        = 0x80030012\n\tSTG_E_DISKISWRITEPROTECTED                                                Handle        = 0x80030013\n\tSTG_E_SEEKERROR                                                           Handle        = 0x80030019\n\tSTG_E_WRITEFAULT                                                          Handle        = 0x8003001D\n\tSTG_E_READFAULT                                                           Handle        = 0x8003001E\n\tSTG_E_SHAREVIOLATION                                                      Handle        = 0x80030020\n\tSTG_E_LOCKVIOLATION                                                       Handle        = 0x80030021\n\tSTG_E_FILEALREADYEXISTS                                                   Handle        = 0x80030050\n\tSTG_E_INVALIDPARAMETER                                                    Handle        = 0x80030057\n\tSTG_E_MEDIUMFULL                                                          Handle        = 0x80030070\n\tSTG_E_PROPSETMISMATCHED                                                   Handle        = 0x800300F0\n\tSTG_E_ABNORMALAPIEXIT                                                     Handle        = 0x800300FA\n\tSTG_E_INVALIDHEADER                                                       Handle        = 0x800300FB\n\tSTG_E_INVALIDNAME                                                         Handle        = 0x800300FC\n\tSTG_E_UNKNOWN                                                             Handle        = 0x800300FD\n\tSTG_E_UNIMPLEMENTEDFUNCTION                                               Handle        = 0x800300FE\n\tSTG_E_INVALIDFLAG                                                         Handle        = 0x800300FF\n\tSTG_E_INUSE                                                               Handle        = 0x80030100\n\tSTG_E_NOTCURRENT                                                          Handle        = 0x80030101\n\tSTG_E_REVERTED                                                            Handle        = 0x80030102\n\tSTG_E_CANTSAVE                                                            Handle        = 0x80030103\n\tSTG_E_OLDFORMAT                                                           Handle        = 0x80030104\n\tSTG_E_OLDDLL                                                              Handle        = 0x80030105\n\tSTG_E_SHAREREQUIRED                                                       Handle        = 0x80030106\n\tSTG_E_NOTFILEBASEDSTORAGE                                                 Handle        = 0x80030107\n\tSTG_E_EXTANTMARSHALLINGS                                                  Handle        = 0x80030108\n\tSTG_E_DOCFILECORRUPT                                                      Handle        = 0x80030109\n\tSTG_E_BADBASEADDRESS                                                      Handle        = 0x80030110\n\tSTG_E_DOCFILETOOLARGE                                                     Handle        = 0x80030111\n\tSTG_E_NOTSIMPLEFORMAT                                                     Handle        = 0x80030112\n\tSTG_E_INCOMPLETE                                                          Handle        = 0x80030201\n\tSTG_E_TERMINATED                                                          Handle        = 0x80030202\n\tSTG_S_CONVERTED                                                           Handle        = 0x00030200\n\tSTG_S_BLOCK                                                               Handle        = 0x00030201\n\tSTG_S_RETRYNOW                                                            Handle        = 0x00030202\n\tSTG_S_MONITORING                                                          Handle        = 0x00030203\n\tSTG_S_MULTIPLEOPENS                                                       Handle        = 0x00030204\n\tSTG_S_CONSOLIDATIONFAILED                                                 Handle        = 0x00030205\n\tSTG_S_CANNOTCONSOLIDATE                                                   Handle        = 0x00030206\n\tSTG_S_POWER_CYCLE_REQUIRED                                                Handle        = 0x00030207\n\tSTG_E_FIRMWARE_SLOT_INVALID                                               Handle        = 0x80030208\n\tSTG_E_FIRMWARE_IMAGE_INVALID                                              Handle        = 0x80030209\n\tSTG_E_DEVICE_UNRESPONSIVE                                                 Handle        = 0x8003020A\n\tSTG_E_STATUS_COPY_PROTECTION_FAILURE                                      Handle        = 0x80030305\n\tSTG_E_CSS_AUTHENTICATION_FAILURE                                          Handle        = 0x80030306\n\tSTG_E_CSS_KEY_NOT_PRESENT                                                 Handle        = 0x80030307\n\tSTG_E_CSS_KEY_NOT_ESTABLISHED                                             Handle        = 0x80030308\n\tSTG_E_CSS_SCRAMBLED_SECTOR                                                Handle        = 0x80030309\n\tSTG_E_CSS_REGION_MISMATCH                                                 Handle        = 0x8003030A\n\tSTG_E_RESETS_EXHAUSTED                                                    Handle        = 0x8003030B\n\tRPC_E_CALL_REJECTED                                                       Handle        = 0x80010001\n\tRPC_E_CALL_CANCELED                                                       Handle        = 0x80010002\n\tRPC_E_CANTPOST_INSENDCALL                                                 Handle        = 0x80010003\n\tRPC_E_CANTCALLOUT_INASYNCCALL                                             Handle        = 0x80010004\n\tRPC_E_CANTCALLOUT_INEXTERNALCALL                                          Handle        = 0x80010005\n\tRPC_E_CONNECTION_TERMINATED                                               Handle        = 0x80010006\n\tRPC_E_SERVER_DIED                                                         Handle        = 0x80010007\n\tRPC_E_CLIENT_DIED                                                         Handle        = 0x80010008\n\tRPC_E_INVALID_DATAPACKET                                                  Handle        = 0x80010009\n\tRPC_E_CANTTRANSMIT_CALL                                                   Handle        = 0x8001000A\n\tRPC_E_CLIENT_CANTMARSHAL_DATA                                             Handle        = 0x8001000B\n\tRPC_E_CLIENT_CANTUNMARSHAL_DATA                                           Handle        = 0x8001000C\n\tRPC_E_SERVER_CANTMARSHAL_DATA                                             Handle        = 0x8001000D\n\tRPC_E_SERVER_CANTUNMARSHAL_DATA                                           Handle        = 0x8001000E\n\tRPC_E_INVALID_DATA                                                        Handle        = 0x8001000F\n\tRPC_E_INVALID_PARAMETER                                                   Handle        = 0x80010010\n\tRPC_E_CANTCALLOUT_AGAIN                                                   Handle        = 0x80010011\n\tRPC_E_SERVER_DIED_DNE                                                     Handle        = 0x80010012\n\tRPC_E_SYS_CALL_FAILED                                                     Handle        = 0x80010100\n\tRPC_E_OUT_OF_RESOURCES                                                    Handle        = 0x80010101\n\tRPC_E_ATTEMPTED_MULTITHREAD                                               Handle        = 0x80010102\n\tRPC_E_NOT_REGISTERED                                                      Handle        = 0x80010103\n\tRPC_E_FAULT                                                               Handle        = 0x80010104\n\tRPC_E_SERVERFAULT                                                         Handle        = 0x80010105\n\tRPC_E_CHANGED_MODE                                                        Handle        = 0x80010106\n\tRPC_E_INVALIDMETHOD                                                       Handle        = 0x80010107\n\tRPC_E_DISCONNECTED                                                        Handle        = 0x80010108\n\tRPC_E_RETRY                                                               Handle        = 0x80010109\n\tRPC_E_SERVERCALL_RETRYLATER                                               Handle        = 0x8001010A\n\tRPC_E_SERVERCALL_REJECTED                                                 Handle        = 0x8001010B\n\tRPC_E_INVALID_CALLDATA                                                    Handle        = 0x8001010C\n\tRPC_E_CANTCALLOUT_ININPUTSYNCCALL                                         Handle        = 0x8001010D\n\tRPC_E_WRONG_THREAD                                                        Handle        = 0x8001010E\n\tRPC_E_THREAD_NOT_INIT                                                     Handle        = 0x8001010F\n\tRPC_E_VERSION_MISMATCH                                                    Handle        = 0x80010110\n\tRPC_E_INVALID_HEADER                                                      Handle        = 0x80010111\n\tRPC_E_INVALID_EXTENSION                                                   Handle        = 0x80010112\n\tRPC_E_INVALID_IPID                                                        Handle        = 0x80010113\n\tRPC_E_INVALID_OBJECT                                                      Handle        = 0x80010114\n\tRPC_S_CALLPENDING                                                         Handle        = 0x80010115\n\tRPC_S_WAITONTIMER                                                         Handle        = 0x80010116\n\tRPC_E_CALL_COMPLETE                                                       Handle        = 0x80010117\n\tRPC_E_UNSECURE_CALL                                                       Handle        = 0x80010118\n\tRPC_E_TOO_LATE                                                            Handle        = 0x80010119\n\tRPC_E_NO_GOOD_SECURITY_PACKAGES                                           Handle        = 0x8001011A\n\tRPC_E_ACCESS_DENIED                                                       Handle        = 0x8001011B\n\tRPC_E_REMOTE_DISABLED                                                     Handle        = 0x8001011C\n\tRPC_E_INVALID_OBJREF                                                      Handle        = 0x8001011D\n\tRPC_E_NO_CONTEXT                                                          Handle        = 0x8001011E\n\tRPC_E_TIMEOUT                                                             Handle        = 0x8001011F\n\tRPC_E_NO_SYNC                                                             Handle        = 0x80010120\n\tRPC_E_FULLSIC_REQUIRED                                                    Handle        = 0x80010121\n\tRPC_E_INVALID_STD_NAME                                                    Handle        = 0x80010122\n\tCO_E_FAILEDTOIMPERSONATE                                                  Handle        = 0x80010123\n\tCO_E_FAILEDTOGETSECCTX                                                    Handle        = 0x80010124\n\tCO_E_FAILEDTOOPENTHREADTOKEN                                              Handle        = 0x80010125\n\tCO_E_FAILEDTOGETTOKENINFO                                                 Handle        = 0x80010126\n\tCO_E_TRUSTEEDOESNTMATCHCLIENT                                             Handle        = 0x80010127\n\tCO_E_FAILEDTOQUERYCLIENTBLANKET                                           Handle        = 0x80010128\n\tCO_E_FAILEDTOSETDACL                                                      Handle        = 0x80010129\n\tCO_E_ACCESSCHECKFAILED                                                    Handle        = 0x8001012A\n\tCO_E_NETACCESSAPIFAILED                                                   Handle        = 0x8001012B\n\tCO_E_WRONGTRUSTEENAMESYNTAX                                               Handle        = 0x8001012C\n\tCO_E_INVALIDSID                                                           Handle        = 0x8001012D\n\tCO_E_CONVERSIONFAILED                                                     Handle        = 0x8001012E\n\tCO_E_NOMATCHINGSIDFOUND                                                   Handle        = 0x8001012F\n\tCO_E_LOOKUPACCSIDFAILED                                                   Handle        = 0x80010130\n\tCO_E_NOMATCHINGNAMEFOUND                                                  Handle        = 0x80010131\n\tCO_E_LOOKUPACCNAMEFAILED                                                  Handle        = 0x80010132\n\tCO_E_SETSERLHNDLFAILED                                                    Handle        = 0x80010133\n\tCO_E_FAILEDTOGETWINDIR                                                    Handle        = 0x80010134\n\tCO_E_PATHTOOLONG                                                          Handle        = 0x80010135\n\tCO_E_FAILEDTOGENUUID                                                      Handle        = 0x80010136\n\tCO_E_FAILEDTOCREATEFILE                                                   Handle        = 0x80010137\n\tCO_E_FAILEDTOCLOSEHANDLE                                                  Handle        = 0x80010138\n\tCO_E_EXCEEDSYSACLLIMIT                                                    Handle        = 0x80010139\n\tCO_E_ACESINWRONGORDER                                                     Handle        = 0x8001013A\n\tCO_E_INCOMPATIBLESTREAMVERSION                                            Handle        = 0x8001013B\n\tCO_E_FAILEDTOOPENPROCESSTOKEN                                             Handle        = 0x8001013C\n\tCO_E_DECODEFAILED                                                         Handle        = 0x8001013D\n\tCO_E_ACNOTINITIALIZED                                                     Handle        = 0x8001013F\n\tCO_E_CANCEL_DISABLED                                                      Handle        = 0x80010140\n\tRPC_E_UNEXPECTED                                                          Handle        = 0x8001FFFF\n\tERROR_AUDITING_DISABLED                                                   Handle        = 0xC0090001\n\tERROR_ALL_SIDS_FILTERED                                                   Handle        = 0xC0090002\n\tERROR_BIZRULES_NOT_ENABLED                                                Handle        = 0xC0090003\n\tNTE_BAD_UID                                                               Handle        = 0x80090001\n\tNTE_BAD_HASH                                                              Handle        = 0x80090002\n\tNTE_BAD_KEY                                                               Handle        = 0x80090003\n\tNTE_BAD_LEN                                                               Handle        = 0x80090004\n\tNTE_BAD_DATA                                                              Handle        = 0x80090005\n\tNTE_BAD_SIGNATURE                                                         Handle        = 0x80090006\n\tNTE_BAD_VER                                                               Handle        = 0x80090007\n\tNTE_BAD_ALGID                                                             Handle        = 0x80090008\n\tNTE_BAD_FLAGS                                                             Handle        = 0x80090009\n\tNTE_BAD_TYPE                                                              Handle        = 0x8009000A\n\tNTE_BAD_KEY_STATE                                                         Handle        = 0x8009000B\n\tNTE_BAD_HASH_STATE                                                        Handle        = 0x8009000C\n\tNTE_NO_KEY                                                                Handle        = 0x8009000D\n\tNTE_NO_MEMORY                                                             Handle        = 0x8009000E\n\tNTE_EXISTS                                                                Handle        = 0x8009000F\n\tNTE_PERM                                                                  Handle        = 0x80090010\n\tNTE_NOT_FOUND                                                             Handle        = 0x80090011\n\tNTE_DOUBLE_ENCRYPT                                                        Handle        = 0x80090012\n\tNTE_BAD_PROVIDER                                                          Handle        = 0x80090013\n\tNTE_BAD_PROV_TYPE                                                         Handle        = 0x80090014\n\tNTE_BAD_PUBLIC_KEY                                                        Handle        = 0x80090015\n\tNTE_BAD_KEYSET                                                            Handle        = 0x80090016\n\tNTE_PROV_TYPE_NOT_DEF                                                     Handle        = 0x80090017\n\tNTE_PROV_TYPE_ENTRY_BAD                                                   Handle        = 0x80090018\n\tNTE_KEYSET_NOT_DEF                                                        Handle        = 0x80090019\n\tNTE_KEYSET_ENTRY_BAD                                                      Handle        = 0x8009001A\n\tNTE_PROV_TYPE_NO_MATCH                                                    Handle        = 0x8009001B\n\tNTE_SIGNATURE_FILE_BAD                                                    Handle        = 0x8009001C\n\tNTE_PROVIDER_DLL_FAIL                                                     Handle        = 0x8009001D\n\tNTE_PROV_DLL_NOT_FOUND                                                    Handle        = 0x8009001E\n\tNTE_BAD_KEYSET_PARAM                                                      Handle        = 0x8009001F\n\tNTE_FAIL                                                                  Handle        = 0x80090020\n\tNTE_SYS_ERR                                                               Handle        = 0x80090021\n\tNTE_SILENT_CONTEXT                                                        Handle        = 0x80090022\n\tNTE_TOKEN_KEYSET_STORAGE_FULL                                             Handle        = 0x80090023\n\tNTE_TEMPORARY_PROFILE                                                     Handle        = 0x80090024\n\tNTE_FIXEDPARAMETER                                                        Handle        = 0x80090025\n\tNTE_INVALID_HANDLE                                                        Handle        = 0x80090026\n\tNTE_INVALID_PARAMETER                                                     Handle        = 0x80090027\n\tNTE_BUFFER_TOO_SMALL                                                      Handle        = 0x80090028\n\tNTE_NOT_SUPPORTED                                                         Handle        = 0x80090029\n\tNTE_NO_MORE_ITEMS                                                         Handle        = 0x8009002A\n\tNTE_BUFFERS_OVERLAP                                                       Handle        = 0x8009002B\n\tNTE_DECRYPTION_FAILURE                                                    Handle        = 0x8009002C\n\tNTE_INTERNAL_ERROR                                                        Handle        = 0x8009002D\n\tNTE_UI_REQUIRED                                                           Handle        = 0x8009002E\n\tNTE_HMAC_NOT_SUPPORTED                                                    Handle        = 0x8009002F\n\tNTE_DEVICE_NOT_READY                                                      Handle        = 0x80090030\n\tNTE_AUTHENTICATION_IGNORED                                                Handle        = 0x80090031\n\tNTE_VALIDATION_FAILED                                                     Handle        = 0x80090032\n\tNTE_INCORRECT_PASSWORD                                                    Handle        = 0x80090033\n\tNTE_ENCRYPTION_FAILURE                                                    Handle        = 0x80090034\n\tNTE_DEVICE_NOT_FOUND                                                      Handle        = 0x80090035\n\tNTE_USER_CANCELLED                                                        Handle        = 0x80090036\n\tNTE_PASSWORD_CHANGE_REQUIRED                                              Handle        = 0x80090037\n\tNTE_NOT_ACTIVE_CONSOLE                                                    Handle        = 0x80090038\n\tSEC_E_INSUFFICIENT_MEMORY                                                 Handle        = 0x80090300\n\tSEC_E_INVALID_HANDLE                                                      Handle        = 0x80090301\n\tSEC_E_UNSUPPORTED_FUNCTION                                                Handle        = 0x80090302\n\tSEC_E_TARGET_UNKNOWN                                                      Handle        = 0x80090303\n\tSEC_E_INTERNAL_ERROR                                                      Handle        = 0x80090304\n\tSEC_E_SECPKG_NOT_FOUND                                                    Handle        = 0x80090305\n\tSEC_E_NOT_OWNER                                                           Handle        = 0x80090306\n\tSEC_E_CANNOT_INSTALL                                                      Handle        = 0x80090307\n\tSEC_E_INVALID_TOKEN                                                       Handle        = 0x80090308\n\tSEC_E_CANNOT_PACK                                                         Handle        = 0x80090309\n\tSEC_E_QOP_NOT_SUPPORTED                                                   Handle        = 0x8009030A\n\tSEC_E_NO_IMPERSONATION                                                    Handle        = 0x8009030B\n\tSEC_E_LOGON_DENIED                                                        Handle        = 0x8009030C\n\tSEC_E_UNKNOWN_CREDENTIALS                                                 Handle        = 0x8009030D\n\tSEC_E_NO_CREDENTIALS                                                      Handle        = 0x8009030E\n\tSEC_E_MESSAGE_ALTERED                                                     Handle        = 0x8009030F\n\tSEC_E_OUT_OF_SEQUENCE                                                     Handle        = 0x80090310\n\tSEC_E_NO_AUTHENTICATING_AUTHORITY                                         Handle        = 0x80090311\n\tSEC_I_CONTINUE_NEEDED                                                     Handle        = 0x00090312\n\tSEC_I_COMPLETE_NEEDED                                                     Handle        = 0x00090313\n\tSEC_I_COMPLETE_AND_CONTINUE                                               Handle        = 0x00090314\n\tSEC_I_LOCAL_LOGON                                                         Handle        = 0x00090315\n\tSEC_E_BAD_PKGID                                                           Handle        = 0x80090316\n\tSEC_E_CONTEXT_EXPIRED                                                     Handle        = 0x80090317\n\tSEC_I_CONTEXT_EXPIRED                                                     Handle        = 0x00090317\n\tSEC_E_INCOMPLETE_MESSAGE                                                  Handle        = 0x80090318\n\tSEC_E_INCOMPLETE_CREDENTIALS                                              Handle        = 0x80090320\n\tSEC_E_BUFFER_TOO_SMALL                                                    Handle        = 0x80090321\n\tSEC_I_INCOMPLETE_CREDENTIALS                                              Handle        = 0x00090320\n\tSEC_I_RENEGOTIATE                                                         Handle        = 0x00090321\n\tSEC_E_WRONG_PRINCIPAL                                                     Handle        = 0x80090322\n\tSEC_I_NO_LSA_CONTEXT                                                      Handle        = 0x00090323\n\tSEC_E_TIME_SKEW                                                           Handle        = 0x80090324\n\tSEC_E_UNTRUSTED_ROOT                                                      Handle        = 0x80090325\n\tSEC_E_ILLEGAL_MESSAGE                                                     Handle        = 0x80090326\n\tSEC_E_CERT_UNKNOWN                                                        Handle        = 0x80090327\n\tSEC_E_CERT_EXPIRED                                                        Handle        = 0x80090328\n\tSEC_E_ENCRYPT_FAILURE                                                     Handle        = 0x80090329\n\tSEC_E_DECRYPT_FAILURE                                                     Handle        = 0x80090330\n\tSEC_E_ALGORITHM_MISMATCH                                                  Handle        = 0x80090331\n\tSEC_E_SECURITY_QOS_FAILED                                                 Handle        = 0x80090332\n\tSEC_E_UNFINISHED_CONTEXT_DELETED                                          Handle        = 0x80090333\n\tSEC_E_NO_TGT_REPLY                                                        Handle        = 0x80090334\n\tSEC_E_NO_IP_ADDRESSES                                                     Handle        = 0x80090335\n\tSEC_E_WRONG_CREDENTIAL_HANDLE                                             Handle        = 0x80090336\n\tSEC_E_CRYPTO_SYSTEM_INVALID                                               Handle        = 0x80090337\n\tSEC_E_MAX_REFERRALS_EXCEEDED                                              Handle        = 0x80090338\n\tSEC_E_MUST_BE_KDC                                                         Handle        = 0x80090339\n\tSEC_E_STRONG_CRYPTO_NOT_SUPPORTED                                         Handle        = 0x8009033A\n\tSEC_E_TOO_MANY_PRINCIPALS                                                 Handle        = 0x8009033B\n\tSEC_E_NO_PA_DATA                                                          Handle        = 0x8009033C\n\tSEC_E_PKINIT_NAME_MISMATCH                                                Handle        = 0x8009033D\n\tSEC_E_SMARTCARD_LOGON_REQUIRED                                            Handle        = 0x8009033E\n\tSEC_E_SHUTDOWN_IN_PROGRESS                                                Handle        = 0x8009033F\n\tSEC_E_KDC_INVALID_REQUEST                                                 Handle        = 0x80090340\n\tSEC_E_KDC_UNABLE_TO_REFER                                                 Handle        = 0x80090341\n\tSEC_E_KDC_UNKNOWN_ETYPE                                                   Handle        = 0x80090342\n\tSEC_E_UNSUPPORTED_PREAUTH                                                 Handle        = 0x80090343\n\tSEC_E_DELEGATION_REQUIRED                                                 Handle        = 0x80090345\n\tSEC_E_BAD_BINDINGS                                                        Handle        = 0x80090346\n\tSEC_E_MULTIPLE_ACCOUNTS                                                   Handle        = 0x80090347\n\tSEC_E_NO_KERB_KEY                                                         Handle        = 0x80090348\n\tSEC_E_CERT_WRONG_USAGE                                                    Handle        = 0x80090349\n\tSEC_E_DOWNGRADE_DETECTED                                                  Handle        = 0x80090350\n\tSEC_E_SMARTCARD_CERT_REVOKED                                              Handle        = 0x80090351\n\tSEC_E_ISSUING_CA_UNTRUSTED                                                Handle        = 0x80090352\n\tSEC_E_REVOCATION_OFFLINE_C                                                Handle        = 0x80090353\n\tSEC_E_PKINIT_CLIENT_FAILURE                                               Handle        = 0x80090354\n\tSEC_E_SMARTCARD_CERT_EXPIRED                                              Handle        = 0x80090355\n\tSEC_E_NO_S4U_PROT_SUPPORT                                                 Handle        = 0x80090356\n\tSEC_E_CROSSREALM_DELEGATION_FAILURE                                       Handle        = 0x80090357\n\tSEC_E_REVOCATION_OFFLINE_KDC                                              Handle        = 0x80090358\n\tSEC_E_ISSUING_CA_UNTRUSTED_KDC                                            Handle        = 0x80090359\n\tSEC_E_KDC_CERT_EXPIRED                                                    Handle        = 0x8009035A\n\tSEC_E_KDC_CERT_REVOKED                                                    Handle        = 0x8009035B\n\tSEC_I_SIGNATURE_NEEDED                                                    Handle        = 0x0009035C\n\tSEC_E_INVALID_PARAMETER                                                   Handle        = 0x8009035D\n\tSEC_E_DELEGATION_POLICY                                                   Handle        = 0x8009035E\n\tSEC_E_POLICY_NLTM_ONLY                                                    Handle        = 0x8009035F\n\tSEC_I_NO_RENEGOTIATION                                                    Handle        = 0x00090360\n\tSEC_E_NO_CONTEXT                                                          Handle        = 0x80090361\n\tSEC_E_PKU2U_CERT_FAILURE                                                  Handle        = 0x80090362\n\tSEC_E_MUTUAL_AUTH_FAILED                                                  Handle        = 0x80090363\n\tSEC_I_MESSAGE_FRAGMENT                                                    Handle        = 0x00090364\n\tSEC_E_ONLY_HTTPS_ALLOWED                                                  Handle        = 0x80090365\n\tSEC_I_CONTINUE_NEEDED_MESSAGE_OK                                          Handle        = 0x00090366\n\tSEC_E_APPLICATION_PROTOCOL_MISMATCH                                       Handle        = 0x80090367\n\tSEC_I_ASYNC_CALL_PENDING                                                  Handle        = 0x00090368\n\tSEC_E_INVALID_UPN_NAME                                                    Handle        = 0x80090369\n\tSEC_E_NO_SPM                                                                            = SEC_E_INTERNAL_ERROR\n\tSEC_E_NOT_SUPPORTED                                                                     = SEC_E_UNSUPPORTED_FUNCTION\n\tCRYPT_E_MSG_ERROR                                                         Handle        = 0x80091001\n\tCRYPT_E_UNKNOWN_ALGO                                                      Handle        = 0x80091002\n\tCRYPT_E_OID_FORMAT                                                        Handle        = 0x80091003\n\tCRYPT_E_INVALID_MSG_TYPE                                                  Handle        = 0x80091004\n\tCRYPT_E_UNEXPECTED_ENCODING                                               Handle        = 0x80091005\n\tCRYPT_E_AUTH_ATTR_MISSING                                                 Handle        = 0x80091006\n\tCRYPT_E_HASH_VALUE                                                        Handle        = 0x80091007\n\tCRYPT_E_INVALID_INDEX                                                     Handle        = 0x80091008\n\tCRYPT_E_ALREADY_DECRYPTED                                                 Handle        = 0x80091009\n\tCRYPT_E_NOT_DECRYPTED                                                     Handle        = 0x8009100A\n\tCRYPT_E_RECIPIENT_NOT_FOUND                                               Handle        = 0x8009100B\n\tCRYPT_E_CONTROL_TYPE                                                      Handle        = 0x8009100C\n\tCRYPT_E_ISSUER_SERIALNUMBER                                               Handle        = 0x8009100D\n\tCRYPT_E_SIGNER_NOT_FOUND                                                  Handle        = 0x8009100E\n\tCRYPT_E_ATTRIBUTES_MISSING                                                Handle        = 0x8009100F\n\tCRYPT_E_STREAM_MSG_NOT_READY                                              Handle        = 0x80091010\n\tCRYPT_E_STREAM_INSUFFICIENT_DATA                                          Handle        = 0x80091011\n\tCRYPT_I_NEW_PROTECTION_REQUIRED                                           Handle        = 0x00091012\n\tCRYPT_E_BAD_LEN                                                           Handle        = 0x80092001\n\tCRYPT_E_BAD_ENCODE                                                        Handle        = 0x80092002\n\tCRYPT_E_FILE_ERROR                                                        Handle        = 0x80092003\n\tCRYPT_E_NOT_FOUND                                                         Handle        = 0x80092004\n\tCRYPT_E_EXISTS                                                            Handle        = 0x80092005\n\tCRYPT_E_NO_PROVIDER                                                       Handle        = 0x80092006\n\tCRYPT_E_SELF_SIGNED                                                       Handle        = 0x80092007\n\tCRYPT_E_DELETED_PREV                                                      Handle        = 0x80092008\n\tCRYPT_E_NO_MATCH                                                          Handle        = 0x80092009\n\tCRYPT_E_UNEXPECTED_MSG_TYPE                                               Handle        = 0x8009200A\n\tCRYPT_E_NO_KEY_PROPERTY                                                   Handle        = 0x8009200B\n\tCRYPT_E_NO_DECRYPT_CERT                                                   Handle        = 0x8009200C\n\tCRYPT_E_BAD_MSG                                                           Handle        = 0x8009200D\n\tCRYPT_E_NO_SIGNER                                                         Handle        = 0x8009200E\n\tCRYPT_E_PENDING_CLOSE                                                     Handle        = 0x8009200F\n\tCRYPT_E_REVOKED                                                           Handle        = 0x80092010\n\tCRYPT_E_NO_REVOCATION_DLL                                                 Handle        = 0x80092011\n\tCRYPT_E_NO_REVOCATION_CHECK                                               Handle        = 0x80092012\n\tCRYPT_E_REVOCATION_OFFLINE                                                Handle        = 0x80092013\n\tCRYPT_E_NOT_IN_REVOCATION_DATABASE                                        Handle        = 0x80092014\n\tCRYPT_E_INVALID_NUMERIC_STRING                                            Handle        = 0x80092020\n\tCRYPT_E_INVALID_PRINTABLE_STRING                                          Handle        = 0x80092021\n\tCRYPT_E_INVALID_IA5_STRING                                                Handle        = 0x80092022\n\tCRYPT_E_INVALID_X500_STRING                                               Handle        = 0x80092023\n\tCRYPT_E_NOT_CHAR_STRING                                                   Handle        = 0x80092024\n\tCRYPT_E_FILERESIZED                                                       Handle        = 0x80092025\n\tCRYPT_E_SECURITY_SETTINGS                                                 Handle        = 0x80092026\n\tCRYPT_E_NO_VERIFY_USAGE_DLL                                               Handle        = 0x80092027\n\tCRYPT_E_NO_VERIFY_USAGE_CHECK                                             Handle        = 0x80092028\n\tCRYPT_E_VERIFY_USAGE_OFFLINE                                              Handle        = 0x80092029\n\tCRYPT_E_NOT_IN_CTL                                                        Handle        = 0x8009202A\n\tCRYPT_E_NO_TRUSTED_SIGNER                                                 Handle        = 0x8009202B\n\tCRYPT_E_MISSING_PUBKEY_PARA                                               Handle        = 0x8009202C\n\tCRYPT_E_OBJECT_LOCATOR_OBJECT_NOT_FOUND                                   Handle        = 0x8009202D\n\tCRYPT_E_OSS_ERROR                                                         Handle        = 0x80093000\n\tOSS_MORE_BUF                                                              Handle        = 0x80093001\n\tOSS_NEGATIVE_UINTEGER                                                     Handle        = 0x80093002\n\tOSS_PDU_RANGE                                                             Handle        = 0x80093003\n\tOSS_MORE_INPUT                                                            Handle        = 0x80093004\n\tOSS_DATA_ERROR                                                            Handle        = 0x80093005\n\tOSS_BAD_ARG                                                               Handle        = 0x80093006\n\tOSS_BAD_VERSION                                                           Handle        = 0x80093007\n\tOSS_OUT_MEMORY                                                            Handle        = 0x80093008\n\tOSS_PDU_MISMATCH                                                          Handle        = 0x80093009\n\tOSS_LIMITED                                                               Handle        = 0x8009300A\n\tOSS_BAD_PTR                                                               Handle        = 0x8009300B\n\tOSS_BAD_TIME                                                              Handle        = 0x8009300C\n\tOSS_INDEFINITE_NOT_SUPPORTED                                              Handle        = 0x8009300D\n\tOSS_MEM_ERROR                                                             Handle        = 0x8009300E\n\tOSS_BAD_TABLE                                                             Handle        = 0x8009300F\n\tOSS_TOO_LONG                                                              Handle        = 0x80093010\n\tOSS_CONSTRAINT_VIOLATED                                                   Handle        = 0x80093011\n\tOSS_FATAL_ERROR                                                           Handle        = 0x80093012\n\tOSS_ACCESS_SERIALIZATION_ERROR                                            Handle        = 0x80093013\n\tOSS_NULL_TBL                                                              Handle        = 0x80093014\n\tOSS_NULL_FCN                                                              Handle        = 0x80093015\n\tOSS_BAD_ENCRULES                                                          Handle        = 0x80093016\n\tOSS_UNAVAIL_ENCRULES                                                      Handle        = 0x80093017\n\tOSS_CANT_OPEN_TRACE_WINDOW                                                Handle        = 0x80093018\n\tOSS_UNIMPLEMENTED                                                         Handle        = 0x80093019\n\tOSS_OID_DLL_NOT_LINKED                                                    Handle        = 0x8009301A\n\tOSS_CANT_OPEN_TRACE_FILE                                                  Handle        = 0x8009301B\n\tOSS_TRACE_FILE_ALREADY_OPEN                                               Handle        = 0x8009301C\n\tOSS_TABLE_MISMATCH                                                        Handle        = 0x8009301D\n\tOSS_TYPE_NOT_SUPPORTED                                                    Handle        = 0x8009301E\n\tOSS_REAL_DLL_NOT_LINKED                                                   Handle        = 0x8009301F\n\tOSS_REAL_CODE_NOT_LINKED                                                  Handle        = 0x80093020\n\tOSS_OUT_OF_RANGE                                                          Handle        = 0x80093021\n\tOSS_COPIER_DLL_NOT_LINKED                                                 Handle        = 0x80093022\n\tOSS_CONSTRAINT_DLL_NOT_LINKED                                             Handle        = 0x80093023\n\tOSS_COMPARATOR_DLL_NOT_LINKED                                             Handle        = 0x80093024\n\tOSS_COMPARATOR_CODE_NOT_LINKED                                            Handle        = 0x80093025\n\tOSS_MEM_MGR_DLL_NOT_LINKED                                                Handle        = 0x80093026\n\tOSS_PDV_DLL_NOT_LINKED                                                    Handle        = 0x80093027\n\tOSS_PDV_CODE_NOT_LINKED                                                   Handle        = 0x80093028\n\tOSS_API_DLL_NOT_LINKED                                                    Handle        = 0x80093029\n\tOSS_BERDER_DLL_NOT_LINKED                                                 Handle        = 0x8009302A\n\tOSS_PER_DLL_NOT_LINKED                                                    Handle        = 0x8009302B\n\tOSS_OPEN_TYPE_ERROR                                                       Handle        = 0x8009302C\n\tOSS_MUTEX_NOT_CREATED                                                     Handle        = 0x8009302D\n\tOSS_CANT_CLOSE_TRACE_FILE                                                 Handle        = 0x8009302E\n\tCRYPT_E_ASN1_ERROR                                                        Handle        = 0x80093100\n\tCRYPT_E_ASN1_INTERNAL                                                     Handle        = 0x80093101\n\tCRYPT_E_ASN1_EOD                                                          Handle        = 0x80093102\n\tCRYPT_E_ASN1_CORRUPT                                                      Handle        = 0x80093103\n\tCRYPT_E_ASN1_LARGE                                                        Handle        = 0x80093104\n\tCRYPT_E_ASN1_CONSTRAINT                                                   Handle        = 0x80093105\n\tCRYPT_E_ASN1_MEMORY                                                       Handle        = 0x80093106\n\tCRYPT_E_ASN1_OVERFLOW                                                     Handle        = 0x80093107\n\tCRYPT_E_ASN1_BADPDU                                                       Handle        = 0x80093108\n\tCRYPT_E_ASN1_BADARGS                                                      Handle        = 0x80093109\n\tCRYPT_E_ASN1_BADREAL                                                      Handle        = 0x8009310A\n\tCRYPT_E_ASN1_BADTAG                                                       Handle        = 0x8009310B\n\tCRYPT_E_ASN1_CHOICE                                                       Handle        = 0x8009310C\n\tCRYPT_E_ASN1_RULE                                                         Handle        = 0x8009310D\n\tCRYPT_E_ASN1_UTF8                                                         Handle        = 0x8009310E\n\tCRYPT_E_ASN1_PDU_TYPE                                                     Handle        = 0x80093133\n\tCRYPT_E_ASN1_NYI                                                          Handle        = 0x80093134\n\tCRYPT_E_ASN1_EXTENDED                                                     Handle        = 0x80093201\n\tCRYPT_E_ASN1_NOEOD                                                        Handle        = 0x80093202\n\tCERTSRV_E_BAD_REQUESTSUBJECT                                              Handle        = 0x80094001\n\tCERTSRV_E_NO_REQUEST                                                      Handle        = 0x80094002\n\tCERTSRV_E_BAD_REQUESTSTATUS                                               Handle        = 0x80094003\n\tCERTSRV_E_PROPERTY_EMPTY                                                  Handle        = 0x80094004\n\tCERTSRV_E_INVALID_CA_CERTIFICATE                                          Handle        = 0x80094005\n\tCERTSRV_E_SERVER_SUSPENDED                                                Handle        = 0x80094006\n\tCERTSRV_E_ENCODING_LENGTH                                                 Handle        = 0x80094007\n\tCERTSRV_E_ROLECONFLICT                                                    Handle        = 0x80094008\n\tCERTSRV_E_RESTRICTEDOFFICER                                               Handle        = 0x80094009\n\tCERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED                                     Handle        = 0x8009400A\n\tCERTSRV_E_NO_VALID_KRA                                                    Handle        = 0x8009400B\n\tCERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL                                        Handle        = 0x8009400C\n\tCERTSRV_E_NO_CAADMIN_DEFINED                                              Handle        = 0x8009400D\n\tCERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE                                      Handle        = 0x8009400E\n\tCERTSRV_E_NO_DB_SESSIONS                                                  Handle        = 0x8009400F\n\tCERTSRV_E_ALIGNMENT_FAULT                                                 Handle        = 0x80094010\n\tCERTSRV_E_ENROLL_DENIED                                                   Handle        = 0x80094011\n\tCERTSRV_E_TEMPLATE_DENIED                                                 Handle        = 0x80094012\n\tCERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE                                     Handle        = 0x80094013\n\tCERTSRV_E_ADMIN_DENIED_REQUEST                                            Handle        = 0x80094014\n\tCERTSRV_E_NO_POLICY_SERVER                                                Handle        = 0x80094015\n\tCERTSRV_E_WEAK_SIGNATURE_OR_KEY                                           Handle        = 0x80094016\n\tCERTSRV_E_KEY_ATTESTATION_NOT_SUPPORTED                                   Handle        = 0x80094017\n\tCERTSRV_E_ENCRYPTION_CERT_REQUIRED                                        Handle        = 0x80094018\n\tCERTSRV_E_UNSUPPORTED_CERT_TYPE                                           Handle        = 0x80094800\n\tCERTSRV_E_NO_CERT_TYPE                                                    Handle        = 0x80094801\n\tCERTSRV_E_TEMPLATE_CONFLICT                                               Handle        = 0x80094802\n\tCERTSRV_E_SUBJECT_ALT_NAME_REQUIRED                                       Handle        = 0x80094803\n\tCERTSRV_E_ARCHIVED_KEY_REQUIRED                                           Handle        = 0x80094804\n\tCERTSRV_E_SMIME_REQUIRED                                                  Handle        = 0x80094805\n\tCERTSRV_E_BAD_RENEWAL_SUBJECT                                             Handle        = 0x80094806\n\tCERTSRV_E_BAD_TEMPLATE_VERSION                                            Handle        = 0x80094807\n\tCERTSRV_E_TEMPLATE_POLICY_REQUIRED                                        Handle        = 0x80094808\n\tCERTSRV_E_SIGNATURE_POLICY_REQUIRED                                       Handle        = 0x80094809\n\tCERTSRV_E_SIGNATURE_COUNT                                                 Handle        = 0x8009480A\n\tCERTSRV_E_SIGNATURE_REJECTED                                              Handle        = 0x8009480B\n\tCERTSRV_E_ISSUANCE_POLICY_REQUIRED                                        Handle        = 0x8009480C\n\tCERTSRV_E_SUBJECT_UPN_REQUIRED                                            Handle        = 0x8009480D\n\tCERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED                                 Handle        = 0x8009480E\n\tCERTSRV_E_SUBJECT_DNS_REQUIRED                                            Handle        = 0x8009480F\n\tCERTSRV_E_ARCHIVED_KEY_UNEXPECTED                                         Handle        = 0x80094810\n\tCERTSRV_E_KEY_LENGTH                                                      Handle        = 0x80094811\n\tCERTSRV_E_SUBJECT_EMAIL_REQUIRED                                          Handle        = 0x80094812\n\tCERTSRV_E_UNKNOWN_CERT_TYPE                                               Handle        = 0x80094813\n\tCERTSRV_E_CERT_TYPE_OVERLAP                                               Handle        = 0x80094814\n\tCERTSRV_E_TOO_MANY_SIGNATURES                                             Handle        = 0x80094815\n\tCERTSRV_E_RENEWAL_BAD_PUBLIC_KEY                                          Handle        = 0x80094816\n\tCERTSRV_E_INVALID_EK                                                      Handle        = 0x80094817\n\tCERTSRV_E_INVALID_IDBINDING                                               Handle        = 0x80094818\n\tCERTSRV_E_INVALID_ATTESTATION                                             Handle        = 0x80094819\n\tCERTSRV_E_KEY_ATTESTATION                                                 Handle        = 0x8009481A\n\tCERTSRV_E_CORRUPT_KEY_ATTESTATION                                         Handle        = 0x8009481B\n\tCERTSRV_E_EXPIRED_CHALLENGE                                               Handle        = 0x8009481C\n\tCERTSRV_E_INVALID_RESPONSE                                                Handle        = 0x8009481D\n\tCERTSRV_E_INVALID_REQUESTID                                               Handle        = 0x8009481E\n\tCERTSRV_E_REQUEST_PRECERTIFICATE_MISMATCH                                 Handle        = 0x8009481F\n\tCERTSRV_E_PENDING_CLIENT_RESPONSE                                         Handle        = 0x80094820\n\tXENROLL_E_KEY_NOT_EXPORTABLE                                              Handle        = 0x80095000\n\tXENROLL_E_CANNOT_ADD_ROOT_CERT                                            Handle        = 0x80095001\n\tXENROLL_E_RESPONSE_KA_HASH_NOT_FOUND                                      Handle        = 0x80095002\n\tXENROLL_E_RESPONSE_UNEXPECTED_KA_HASH                                     Handle        = 0x80095003\n\tXENROLL_E_RESPONSE_KA_HASH_MISMATCH                                       Handle        = 0x80095004\n\tXENROLL_E_KEYSPEC_SMIME_MISMATCH                                          Handle        = 0x80095005\n\tTRUST_E_SYSTEM_ERROR                                                      Handle        = 0x80096001\n\tTRUST_E_NO_SIGNER_CERT                                                    Handle        = 0x80096002\n\tTRUST_E_COUNTER_SIGNER                                                    Handle        = 0x80096003\n\tTRUST_E_CERT_SIGNATURE                                                    Handle        = 0x80096004\n\tTRUST_E_TIME_STAMP                                                        Handle        = 0x80096005\n\tTRUST_E_BAD_DIGEST                                                        Handle        = 0x80096010\n\tTRUST_E_MALFORMED_SIGNATURE                                               Handle        = 0x80096011\n\tTRUST_E_BASIC_CONSTRAINTS                                                 Handle        = 0x80096019\n\tTRUST_E_FINANCIAL_CRITERIA                                                Handle        = 0x8009601E\n\tMSSIPOTF_E_OUTOFMEMRANGE                                                  Handle        = 0x80097001\n\tMSSIPOTF_E_CANTGETOBJECT                                                  Handle        = 0x80097002\n\tMSSIPOTF_E_NOHEADTABLE                                                    Handle        = 0x80097003\n\tMSSIPOTF_E_BAD_MAGICNUMBER                                                Handle        = 0x80097004\n\tMSSIPOTF_E_BAD_OFFSET_TABLE                                               Handle        = 0x80097005\n\tMSSIPOTF_E_TABLE_TAGORDER                                                 Handle        = 0x80097006\n\tMSSIPOTF_E_TABLE_LONGWORD                                                 Handle        = 0x80097007\n\tMSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT                                      Handle        = 0x80097008\n\tMSSIPOTF_E_TABLES_OVERLAP                                                 Handle        = 0x80097009\n\tMSSIPOTF_E_TABLE_PADBYTES                                                 Handle        = 0x8009700A\n\tMSSIPOTF_E_FILETOOSMALL                                                   Handle        = 0x8009700B\n\tMSSIPOTF_E_TABLE_CHECKSUM                                                 Handle        = 0x8009700C\n\tMSSIPOTF_E_FILE_CHECKSUM                                                  Handle        = 0x8009700D\n\tMSSIPOTF_E_FAILED_POLICY                                                  Handle        = 0x80097010\n\tMSSIPOTF_E_FAILED_HINTS_CHECK                                             Handle        = 0x80097011\n\tMSSIPOTF_E_NOT_OPENTYPE                                                   Handle        = 0x80097012\n\tMSSIPOTF_E_FILE                                                           Handle        = 0x80097013\n\tMSSIPOTF_E_CRYPT                                                          Handle        = 0x80097014\n\tMSSIPOTF_E_BADVERSION                                                     Handle        = 0x80097015\n\tMSSIPOTF_E_DSIG_STRUCTURE                                                 Handle        = 0x80097016\n\tMSSIPOTF_E_PCONST_CHECK                                                   Handle        = 0x80097017\n\tMSSIPOTF_E_STRUCTURE                                                      Handle        = 0x80097018\n\tERROR_CRED_REQUIRES_CONFIRMATION                                          Handle        = 0x80097019\n\tNTE_OP_OK                                                                 syscall.Errno = 0\n\tTRUST_E_PROVIDER_UNKNOWN                                                  Handle        = 0x800B0001\n\tTRUST_E_ACTION_UNKNOWN                                                    Handle        = 0x800B0002\n\tTRUST_E_SUBJECT_FORM_UNKNOWN                                              Handle        = 0x800B0003\n\tTRUST_E_SUBJECT_NOT_TRUSTED                                               Handle        = 0x800B0004\n\tDIGSIG_E_ENCODE                                                           Handle        = 0x800B0005\n\tDIGSIG_E_DECODE                                                           Handle        = 0x800B0006\n\tDIGSIG_E_EXTENSIBILITY                                                    Handle        = 0x800B0007\n\tDIGSIG_E_CRYPTO                                                           Handle        = 0x800B0008\n\tPERSIST_E_SIZEDEFINITE                                                    Handle        = 0x800B0009\n\tPERSIST_E_SIZEINDEFINITE                                                  Handle        = 0x800B000A\n\tPERSIST_E_NOTSELFSIZING                                                   Handle        = 0x800B000B\n\tTRUST_E_NOSIGNATURE                                                       Handle        = 0x800B0100\n\tCERT_E_EXPIRED                                                            Handle        = 0x800B0101\n\tCERT_E_VALIDITYPERIODNESTING                                              Handle        = 0x800B0102\n\tCERT_E_ROLE                                                               Handle        = 0x800B0103\n\tCERT_E_PATHLENCONST                                                       Handle        = 0x800B0104\n\tCERT_E_CRITICAL                                                           Handle        = 0x800B0105\n\tCERT_E_PURPOSE                                                            Handle        = 0x800B0106\n\tCERT_E_ISSUERCHAINING                                                     Handle        = 0x800B0107\n\tCERT_E_MALFORMED                                                          Handle        = 0x800B0108\n\tCERT_E_UNTRUSTEDROOT                                                      Handle        = 0x800B0109\n\tCERT_E_CHAINING                                                           Handle        = 0x800B010A\n\tTRUST_E_FAIL                                                              Handle        = 0x800B010B\n\tCERT_E_REVOKED                                                            Handle        = 0x800B010C\n\tCERT_E_UNTRUSTEDTESTROOT                                                  Handle        = 0x800B010D\n\tCERT_E_REVOCATION_FAILURE                                                 Handle        = 0x800B010E\n\tCERT_E_CN_NO_MATCH                                                        Handle        = 0x800B010F\n\tCERT_E_WRONG_USAGE                                                        Handle        = 0x800B0110\n\tTRUST_E_EXPLICIT_DISTRUST                                                 Handle        = 0x800B0111\n\tCERT_E_UNTRUSTEDCA                                                        Handle        = 0x800B0112\n\tCERT_E_INVALID_POLICY                                                     Handle        = 0x800B0113\n\tCERT_E_INVALID_NAME                                                       Handle        = 0x800B0114\n\tSPAPI_E_EXPECTED_SECTION_NAME                                             Handle        = 0x800F0000\n\tSPAPI_E_BAD_SECTION_NAME_LINE                                             Handle        = 0x800F0001\n\tSPAPI_E_SECTION_NAME_TOO_LONG                                             Handle        = 0x800F0002\n\tSPAPI_E_GENERAL_SYNTAX                                                    Handle        = 0x800F0003\n\tSPAPI_E_WRONG_INF_STYLE                                                   Handle        = 0x800F0100\n\tSPAPI_E_SECTION_NOT_FOUND                                                 Handle        = 0x800F0101\n\tSPAPI_E_LINE_NOT_FOUND                                                    Handle        = 0x800F0102\n\tSPAPI_E_NO_BACKUP                                                         Handle        = 0x800F0103\n\tSPAPI_E_NO_ASSOCIATED_CLASS                                               Handle        = 0x800F0200\n\tSPAPI_E_CLASS_MISMATCH                                                    Handle        = 0x800F0201\n\tSPAPI_E_DUPLICATE_FOUND                                                   Handle        = 0x800F0202\n\tSPAPI_E_NO_DRIVER_SELECTED                                                Handle        = 0x800F0203\n\tSPAPI_E_KEY_DOES_NOT_EXIST                                                Handle        = 0x800F0204\n\tSPAPI_E_INVALID_DEVINST_NAME                                              Handle        = 0x800F0205\n\tSPAPI_E_INVALID_CLASS                                                     Handle        = 0x800F0206\n\tSPAPI_E_DEVINST_ALREADY_EXISTS                                            Handle        = 0x800F0207\n\tSPAPI_E_DEVINFO_NOT_REGISTERED                                            Handle        = 0x800F0208\n\tSPAPI_E_INVALID_REG_PROPERTY                                              Handle        = 0x800F0209\n\tSPAPI_E_NO_INF                                                            Handle        = 0x800F020A\n\tSPAPI_E_NO_SUCH_DEVINST                                                   Handle        = 0x800F020B\n\tSPAPI_E_CANT_LOAD_CLASS_ICON                                              Handle        = 0x800F020C\n\tSPAPI_E_INVALID_CLASS_INSTALLER                                           Handle        = 0x800F020D\n\tSPAPI_E_DI_DO_DEFAULT                                                     Handle        = 0x800F020E\n\tSPAPI_E_DI_NOFILECOPY                                                     Handle        = 0x800F020F\n\tSPAPI_E_INVALID_HWPROFILE                                                 Handle        = 0x800F0210\n\tSPAPI_E_NO_DEVICE_SELECTED                                                Handle        = 0x800F0211\n\tSPAPI_E_DEVINFO_LIST_LOCKED                                               Handle        = 0x800F0212\n\tSPAPI_E_DEVINFO_DATA_LOCKED                                               Handle        = 0x800F0213\n\tSPAPI_E_DI_BAD_PATH                                                       Handle        = 0x800F0214\n\tSPAPI_E_NO_CLASSINSTALL_PARAMS                                            Handle        = 0x800F0215\n\tSPAPI_E_FILEQUEUE_LOCKED                                                  Handle        = 0x800F0216\n\tSPAPI_E_BAD_SERVICE_INSTALLSECT                                           Handle        = 0x800F0217\n\tSPAPI_E_NO_CLASS_DRIVER_LIST                                              Handle        = 0x800F0218\n\tSPAPI_E_NO_ASSOCIATED_SERVICE                                             Handle        = 0x800F0219\n\tSPAPI_E_NO_DEFAULT_DEVICE_INTERFACE                                       Handle        = 0x800F021A\n\tSPAPI_E_DEVICE_INTERFACE_ACTIVE                                           Handle        = 0x800F021B\n\tSPAPI_E_DEVICE_INTERFACE_REMOVED                                          Handle        = 0x800F021C\n\tSPAPI_E_BAD_INTERFACE_INSTALLSECT                                         Handle        = 0x800F021D\n\tSPAPI_E_NO_SUCH_INTERFACE_CLASS                                           Handle        = 0x800F021E\n\tSPAPI_E_INVALID_REFERENCE_STRING                                          Handle        = 0x800F021F\n\tSPAPI_E_INVALID_MACHINENAME                                               Handle        = 0x800F0220\n\tSPAPI_E_REMOTE_COMM_FAILURE                                               Handle        = 0x800F0221\n\tSPAPI_E_MACHINE_UNAVAILABLE                                               Handle        = 0x800F0222\n\tSPAPI_E_NO_CONFIGMGR_SERVICES                                             Handle        = 0x800F0223\n\tSPAPI_E_INVALID_PROPPAGE_PROVIDER                                         Handle        = 0x800F0224\n\tSPAPI_E_NO_SUCH_DEVICE_INTERFACE                                          Handle        = 0x800F0225\n\tSPAPI_E_DI_POSTPROCESSING_REQUIRED                                        Handle        = 0x800F0226\n\tSPAPI_E_INVALID_COINSTALLER                                               Handle        = 0x800F0227\n\tSPAPI_E_NO_COMPAT_DRIVERS                                                 Handle        = 0x800F0228\n\tSPAPI_E_NO_DEVICE_ICON                                                    Handle        = 0x800F0229\n\tSPAPI_E_INVALID_INF_LOGCONFIG                                             Handle        = 0x800F022A\n\tSPAPI_E_DI_DONT_INSTALL                                                   Handle        = 0x800F022B\n\tSPAPI_E_INVALID_FILTER_DRIVER                                             Handle        = 0x800F022C\n\tSPAPI_E_NON_WINDOWS_NT_DRIVER                                             Handle        = 0x800F022D\n\tSPAPI_E_NON_WINDOWS_DRIVER                                                Handle        = 0x800F022E\n\tSPAPI_E_NO_CATALOG_FOR_OEM_INF                                            Handle        = 0x800F022F\n\tSPAPI_E_DEVINSTALL_QUEUE_NONNATIVE                                        Handle        = 0x800F0230\n\tSPAPI_E_NOT_DISABLEABLE                                                   Handle        = 0x800F0231\n\tSPAPI_E_CANT_REMOVE_DEVINST                                               Handle        = 0x800F0232\n\tSPAPI_E_INVALID_TARGET                                                    Handle        = 0x800F0233\n\tSPAPI_E_DRIVER_NONNATIVE                                                  Handle        = 0x800F0234\n\tSPAPI_E_IN_WOW64                                                          Handle        = 0x800F0235\n\tSPAPI_E_SET_SYSTEM_RESTORE_POINT                                          Handle        = 0x800F0236\n\tSPAPI_E_INCORRECTLY_COPIED_INF                                            Handle        = 0x800F0237\n\tSPAPI_E_SCE_DISABLED                                                      Handle        = 0x800F0238\n\tSPAPI_E_UNKNOWN_EXCEPTION                                                 Handle        = 0x800F0239\n\tSPAPI_E_PNP_REGISTRY_ERROR                                                Handle        = 0x800F023A\n\tSPAPI_E_REMOTE_REQUEST_UNSUPPORTED                                        Handle        = 0x800F023B\n\tSPAPI_E_NOT_AN_INSTALLED_OEM_INF                                          Handle        = 0x800F023C\n\tSPAPI_E_INF_IN_USE_BY_DEVICES                                             Handle        = 0x800F023D\n\tSPAPI_E_DI_FUNCTION_OBSOLETE                                              Handle        = 0x800F023E\n\tSPAPI_E_NO_AUTHENTICODE_CATALOG                                           Handle        = 0x800F023F\n\tSPAPI_E_AUTHENTICODE_DISALLOWED                                           Handle        = 0x800F0240\n\tSPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER                                    Handle        = 0x800F0241\n\tSPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED                                Handle        = 0x800F0242\n\tSPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED                                Handle        = 0x800F0243\n\tSPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH                                    Handle        = 0x800F0244\n\tSPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE                                    Handle        = 0x800F0245\n\tSPAPI_E_DEVICE_INSTALLER_NOT_READY                                        Handle        = 0x800F0246\n\tSPAPI_E_DRIVER_STORE_ADD_FAILED                                           Handle        = 0x800F0247\n\tSPAPI_E_DEVICE_INSTALL_BLOCKED                                            Handle        = 0x800F0248\n\tSPAPI_E_DRIVER_INSTALL_BLOCKED                                            Handle        = 0x800F0249\n\tSPAPI_E_WRONG_INF_TYPE                                                    Handle        = 0x800F024A\n\tSPAPI_E_FILE_HASH_NOT_IN_CATALOG                                          Handle        = 0x800F024B\n\tSPAPI_E_DRIVER_STORE_DELETE_FAILED                                        Handle        = 0x800F024C\n\tSPAPI_E_UNRECOVERABLE_STACK_OVERFLOW                                      Handle        = 0x800F0300\n\tSPAPI_E_ERROR_NOT_INSTALLED                                               Handle        = 0x800F1000\n\tSCARD_S_SUCCESS                                                                         = S_OK\n\tSCARD_F_INTERNAL_ERROR                                                    Handle        = 0x80100001\n\tSCARD_E_CANCELLED                                                         Handle        = 0x80100002\n\tSCARD_E_INVALID_HANDLE                                                    Handle        = 0x80100003\n\tSCARD_E_INVALID_PARAMETER                                                 Handle        = 0x80100004\n\tSCARD_E_INVALID_TARGET                                                    Handle        = 0x80100005\n\tSCARD_E_NO_MEMORY                                                         Handle        = 0x80100006\n\tSCARD_F_WAITED_TOO_LONG                                                   Handle        = 0x80100007\n\tSCARD_E_INSUFFICIENT_BUFFER                                               Handle        = 0x80100008\n\tSCARD_E_UNKNOWN_READER                                                    Handle        = 0x80100009\n\tSCARD_E_TIMEOUT                                                           Handle        = 0x8010000A\n\tSCARD_E_SHARING_VIOLATION                                                 Handle        = 0x8010000B\n\tSCARD_E_NO_SMARTCARD                                                      Handle        = 0x8010000C\n\tSCARD_E_UNKNOWN_CARD                                                      Handle        = 0x8010000D\n\tSCARD_E_CANT_DISPOSE                                                      Handle        = 0x8010000E\n\tSCARD_E_PROTO_MISMATCH                                                    Handle        = 0x8010000F\n\tSCARD_E_NOT_READY                                                         Handle        = 0x80100010\n\tSCARD_E_INVALID_VALUE                                                     Handle        = 0x80100011\n\tSCARD_E_SYSTEM_CANCELLED                                                  Handle        = 0x80100012\n\tSCARD_F_COMM_ERROR                                                        Handle        = 0x80100013\n\tSCARD_F_UNKNOWN_ERROR                                                     Handle        = 0x80100014\n\tSCARD_E_INVALID_ATR                                                       Handle        = 0x80100015\n\tSCARD_E_NOT_TRANSACTED                                                    Handle        = 0x80100016\n\tSCARD_E_READER_UNAVAILABLE                                                Handle        = 0x80100017\n\tSCARD_P_SHUTDOWN                                                          Handle        = 0x80100018\n\tSCARD_E_PCI_TOO_SMALL                                                     Handle        = 0x80100019\n\tSCARD_E_READER_UNSUPPORTED                                                Handle        = 0x8010001A\n\tSCARD_E_DUPLICATE_READER                                                  Handle        = 0x8010001B\n\tSCARD_E_CARD_UNSUPPORTED                                                  Handle        = 0x8010001C\n\tSCARD_E_NO_SERVICE                                                        Handle        = 0x8010001D\n\tSCARD_E_SERVICE_STOPPED                                                   Handle        = 0x8010001E\n\tSCARD_E_UNEXPECTED                                                        Handle        = 0x8010001F\n\tSCARD_E_ICC_INSTALLATION                                                  Handle        = 0x80100020\n\tSCARD_E_ICC_CREATEORDER                                                   Handle        = 0x80100021\n\tSCARD_E_UNSUPPORTED_FEATURE                                               Handle        = 0x80100022\n\tSCARD_E_DIR_NOT_FOUND                                                     Handle        = 0x80100023\n\tSCARD_E_FILE_NOT_FOUND                                                    Handle        = 0x80100024\n\tSCARD_E_NO_DIR                                                            Handle        = 0x80100025\n\tSCARD_E_NO_FILE                                                           Handle        = 0x80100026\n\tSCARD_E_NO_ACCESS                                                         Handle        = 0x80100027\n\tSCARD_E_WRITE_TOO_MANY                                                    Handle        = 0x80100028\n\tSCARD_E_BAD_SEEK                                                          Handle        = 0x80100029\n\tSCARD_E_INVALID_CHV                                                       Handle        = 0x8010002A\n\tSCARD_E_UNKNOWN_RES_MNG                                                   Handle        = 0x8010002B\n\tSCARD_E_NO_SUCH_CERTIFICATE                                               Handle        = 0x8010002C\n\tSCARD_E_CERTIFICATE_UNAVAILABLE                                           Handle        = 0x8010002D\n\tSCARD_E_NO_READERS_AVAILABLE                                              Handle        = 0x8010002E\n\tSCARD_E_COMM_DATA_LOST                                                    Handle        = 0x8010002F\n\tSCARD_E_NO_KEY_CONTAINER                                                  Handle        = 0x80100030\n\tSCARD_E_SERVER_TOO_BUSY                                                   Handle        = 0x80100031\n\tSCARD_E_PIN_CACHE_EXPIRED                                                 Handle        = 0x80100032\n\tSCARD_E_NO_PIN_CACHE                                                      Handle        = 0x80100033\n\tSCARD_E_READ_ONLY_CARD                                                    Handle        = 0x80100034\n\tSCARD_W_UNSUPPORTED_CARD                                                  Handle        = 0x80100065\n\tSCARD_W_UNRESPONSIVE_CARD                                                 Handle        = 0x80100066\n\tSCARD_W_UNPOWERED_CARD                                                    Handle        = 0x80100067\n\tSCARD_W_RESET_CARD                                                        Handle        = 0x80100068\n\tSCARD_W_REMOVED_CARD                                                      Handle        = 0x80100069\n\tSCARD_W_SECURITY_VIOLATION                                                Handle        = 0x8010006A\n\tSCARD_W_WRONG_CHV                                                         Handle        = 0x8010006B\n\tSCARD_W_CHV_BLOCKED                                                       Handle        = 0x8010006C\n\tSCARD_W_EOF                                                               Handle        = 0x8010006D\n\tSCARD_W_CANCELLED_BY_USER                                                 Handle        = 0x8010006E\n\tSCARD_W_CARD_NOT_AUTHENTICATED                                            Handle        = 0x8010006F\n\tSCARD_W_CACHE_ITEM_NOT_FOUND                                              Handle        = 0x80100070\n\tSCARD_W_CACHE_ITEM_STALE                                                  Handle        = 0x80100071\n\tSCARD_W_CACHE_ITEM_TOO_BIG                                                Handle        = 0x80100072\n\tCOMADMIN_E_OBJECTERRORS                                                   Handle        = 0x80110401\n\tCOMADMIN_E_OBJECTINVALID                                                  Handle        = 0x80110402\n\tCOMADMIN_E_KEYMISSING                                                     Handle        = 0x80110403\n\tCOMADMIN_E_ALREADYINSTALLED                                               Handle        = 0x80110404\n\tCOMADMIN_E_APP_FILE_WRITEFAIL                                             Handle        = 0x80110407\n\tCOMADMIN_E_APP_FILE_READFAIL                                              Handle        = 0x80110408\n\tCOMADMIN_E_APP_FILE_VERSION                                               Handle        = 0x80110409\n\tCOMADMIN_E_BADPATH                                                        Handle        = 0x8011040A\n\tCOMADMIN_E_APPLICATIONEXISTS                                              Handle        = 0x8011040B\n\tCOMADMIN_E_ROLEEXISTS                                                     Handle        = 0x8011040C\n\tCOMADMIN_E_CANTCOPYFILE                                                   Handle        = 0x8011040D\n\tCOMADMIN_E_NOUSER                                                         Handle        = 0x8011040F\n\tCOMADMIN_E_INVALIDUSERIDS                                                 Handle        = 0x80110410\n\tCOMADMIN_E_NOREGISTRYCLSID                                                Handle        = 0x80110411\n\tCOMADMIN_E_BADREGISTRYPROGID                                              Handle        = 0x80110412\n\tCOMADMIN_E_AUTHENTICATIONLEVEL                                            Handle        = 0x80110413\n\tCOMADMIN_E_USERPASSWDNOTVALID                                             Handle        = 0x80110414\n\tCOMADMIN_E_CLSIDORIIDMISMATCH                                             Handle        = 0x80110418\n\tCOMADMIN_E_REMOTEINTERFACE                                                Handle        = 0x80110419\n\tCOMADMIN_E_DLLREGISTERSERVER                                              Handle        = 0x8011041A\n\tCOMADMIN_E_NOSERVERSHARE                                                  Handle        = 0x8011041B\n\tCOMADMIN_E_DLLLOADFAILED                                                  Handle        = 0x8011041D\n\tCOMADMIN_E_BADREGISTRYLIBID                                               Handle        = 0x8011041E\n\tCOMADMIN_E_APPDIRNOTFOUND                                                 Handle        = 0x8011041F\n\tCOMADMIN_E_REGISTRARFAILED                                                Handle        = 0x80110423\n\tCOMADMIN_E_COMPFILE_DOESNOTEXIST                                          Handle        = 0x80110424\n\tCOMADMIN_E_COMPFILE_LOADDLLFAIL                                           Handle        = 0x80110425\n\tCOMADMIN_E_COMPFILE_GETCLASSOBJ                                           Handle        = 0x80110426\n\tCOMADMIN_E_COMPFILE_CLASSNOTAVAIL                                         Handle        = 0x80110427\n\tCOMADMIN_E_COMPFILE_BADTLB                                                Handle        = 0x80110428\n\tCOMADMIN_E_COMPFILE_NOTINSTALLABLE                                        Handle        = 0x80110429\n\tCOMADMIN_E_NOTCHANGEABLE                                                  Handle        = 0x8011042A\n\tCOMADMIN_E_NOTDELETEABLE                                                  Handle        = 0x8011042B\n\tCOMADMIN_E_SESSION                                                        Handle        = 0x8011042C\n\tCOMADMIN_E_COMP_MOVE_LOCKED                                               Handle        = 0x8011042D\n\tCOMADMIN_E_COMP_MOVE_BAD_DEST                                             Handle        = 0x8011042E\n\tCOMADMIN_E_REGISTERTLB                                                    Handle        = 0x80110430\n\tCOMADMIN_E_SYSTEMAPP                                                      Handle        = 0x80110433\n\tCOMADMIN_E_COMPFILE_NOREGISTRAR                                           Handle        = 0x80110434\n\tCOMADMIN_E_COREQCOMPINSTALLED                                             Handle        = 0x80110435\n\tCOMADMIN_E_SERVICENOTINSTALLED                                            Handle        = 0x80110436\n\tCOMADMIN_E_PROPERTYSAVEFAILED                                             Handle        = 0x80110437\n\tCOMADMIN_E_OBJECTEXISTS                                                   Handle        = 0x80110438\n\tCOMADMIN_E_COMPONENTEXISTS                                                Handle        = 0x80110439\n\tCOMADMIN_E_REGFILE_CORRUPT                                                Handle        = 0x8011043B\n\tCOMADMIN_E_PROPERTY_OVERFLOW                                              Handle        = 0x8011043C\n\tCOMADMIN_E_NOTINREGISTRY                                                  Handle        = 0x8011043E\n\tCOMADMIN_E_OBJECTNOTPOOLABLE                                              Handle        = 0x8011043F\n\tCOMADMIN_E_APPLID_MATCHES_CLSID                                           Handle        = 0x80110446\n\tCOMADMIN_E_ROLE_DOES_NOT_EXIST                                            Handle        = 0x80110447\n\tCOMADMIN_E_START_APP_NEEDS_COMPONENTS                                     Handle        = 0x80110448\n\tCOMADMIN_E_REQUIRES_DIFFERENT_PLATFORM                                    Handle        = 0x80110449\n\tCOMADMIN_E_CAN_NOT_EXPORT_APP_PROXY                                       Handle        = 0x8011044A\n\tCOMADMIN_E_CAN_NOT_START_APP                                              Handle        = 0x8011044B\n\tCOMADMIN_E_CAN_NOT_EXPORT_SYS_APP                                         Handle        = 0x8011044C\n\tCOMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT                                    Handle        = 0x8011044D\n\tCOMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER                                  Handle        = 0x8011044E\n\tCOMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE                                     Handle        = 0x8011044F\n\tCOMADMIN_E_BASE_PARTITION_ONLY                                            Handle        = 0x80110450\n\tCOMADMIN_E_START_APP_DISABLED                                             Handle        = 0x80110451\n\tCOMADMIN_E_CAT_DUPLICATE_PARTITION_NAME                                   Handle        = 0x80110457\n\tCOMADMIN_E_CAT_INVALID_PARTITION_NAME                                     Handle        = 0x80110458\n\tCOMADMIN_E_CAT_PARTITION_IN_USE                                           Handle        = 0x80110459\n\tCOMADMIN_E_FILE_PARTITION_DUPLICATE_FILES                                 Handle        = 0x8011045A\n\tCOMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED                            Handle        = 0x8011045B\n\tCOMADMIN_E_AMBIGUOUS_APPLICATION_NAME                                     Handle        = 0x8011045C\n\tCOMADMIN_E_AMBIGUOUS_PARTITION_NAME                                       Handle        = 0x8011045D\n\tCOMADMIN_E_REGDB_NOTINITIALIZED                                           Handle        = 0x80110472\n\tCOMADMIN_E_REGDB_NOTOPEN                                                  Handle        = 0x80110473\n\tCOMADMIN_E_REGDB_SYSTEMERR                                                Handle        = 0x80110474\n\tCOMADMIN_E_REGDB_ALREADYRUNNING                                           Handle        = 0x80110475\n\tCOMADMIN_E_MIG_VERSIONNOTSUPPORTED                                        Handle        = 0x80110480\n\tCOMADMIN_E_MIG_SCHEMANOTFOUND                                             Handle        = 0x80110481\n\tCOMADMIN_E_CAT_BITNESSMISMATCH                                            Handle        = 0x80110482\n\tCOMADMIN_E_CAT_UNACCEPTABLEBITNESS                                        Handle        = 0x80110483\n\tCOMADMIN_E_CAT_WRONGAPPBITNESS                                            Handle        = 0x80110484\n\tCOMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED                                 Handle        = 0x80110485\n\tCOMADMIN_E_CAT_SERVERFAULT                                                Handle        = 0x80110486\n\tCOMQC_E_APPLICATION_NOT_QUEUED                                            Handle        = 0x80110600\n\tCOMQC_E_NO_QUEUEABLE_INTERFACES                                           Handle        = 0x80110601\n\tCOMQC_E_QUEUING_SERVICE_NOT_AVAILABLE                                     Handle        = 0x80110602\n\tCOMQC_E_NO_IPERSISTSTREAM                                                 Handle        = 0x80110603\n\tCOMQC_E_BAD_MESSAGE                                                       Handle        = 0x80110604\n\tCOMQC_E_UNAUTHENTICATED                                                   Handle        = 0x80110605\n\tCOMQC_E_UNTRUSTED_ENQUEUER                                                Handle        = 0x80110606\n\tMSDTC_E_DUPLICATE_RESOURCE                                                Handle        = 0x80110701\n\tCOMADMIN_E_OBJECT_PARENT_MISSING                                          Handle        = 0x80110808\n\tCOMADMIN_E_OBJECT_DOES_NOT_EXIST                                          Handle        = 0x80110809\n\tCOMADMIN_E_APP_NOT_RUNNING                                                Handle        = 0x8011080A\n\tCOMADMIN_E_INVALID_PARTITION                                              Handle        = 0x8011080B\n\tCOMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE                              Handle        = 0x8011080D\n\tCOMADMIN_E_USER_IN_SET                                                    Handle        = 0x8011080E\n\tCOMADMIN_E_CANTRECYCLELIBRARYAPPS                                         Handle        = 0x8011080F\n\tCOMADMIN_E_CANTRECYCLESERVICEAPPS                                         Handle        = 0x80110811\n\tCOMADMIN_E_PROCESSALREADYRECYCLED                                         Handle        = 0x80110812\n\tCOMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED                                  Handle        = 0x80110813\n\tCOMADMIN_E_CANTMAKEINPROCSERVICE                                          Handle        = 0x80110814\n\tCOMADMIN_E_PROGIDINUSEBYCLSID                                             Handle        = 0x80110815\n\tCOMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET                                   Handle        = 0x80110816\n\tCOMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED                                  Handle        = 0x80110817\n\tCOMADMIN_E_PARTITION_ACCESSDENIED                                         Handle        = 0x80110818\n\tCOMADMIN_E_PARTITION_MSI_ONLY                                             Handle        = 0x80110819\n\tCOMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT                          Handle        = 0x8011081A\n\tCOMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS                  Handle        = 0x8011081B\n\tCOMADMIN_E_COMP_MOVE_SOURCE                                               Handle        = 0x8011081C\n\tCOMADMIN_E_COMP_MOVE_DEST                                                 Handle        = 0x8011081D\n\tCOMADMIN_E_COMP_MOVE_PRIVATE                                              Handle        = 0x8011081E\n\tCOMADMIN_E_BASEPARTITION_REQUIRED_IN_SET                                  Handle        = 0x8011081F\n\tCOMADMIN_E_CANNOT_ALIAS_EVENTCLASS                                        Handle        = 0x80110820\n\tCOMADMIN_E_PRIVATE_ACCESSDENIED                                           Handle        = 0x80110821\n\tCOMADMIN_E_SAFERINVALID                                                   Handle        = 0x80110822\n\tCOMADMIN_E_REGISTRY_ACCESSDENIED                                          Handle        = 0x80110823\n\tCOMADMIN_E_PARTITIONS_DISABLED                                            Handle        = 0x80110824\n\tWER_S_REPORT_DEBUG                                                        Handle        = 0x001B0000\n\tWER_S_REPORT_UPLOADED                                                     Handle        = 0x001B0001\n\tWER_S_REPORT_QUEUED                                                       Handle        = 0x001B0002\n\tWER_S_DISABLED                                                            Handle        = 0x001B0003\n\tWER_S_SUSPENDED_UPLOAD                                                    Handle        = 0x001B0004\n\tWER_S_DISABLED_QUEUE                                                      Handle        = 0x001B0005\n\tWER_S_DISABLED_ARCHIVE                                                    Handle        = 0x001B0006\n\tWER_S_REPORT_ASYNC                                                        Handle        = 0x001B0007\n\tWER_S_IGNORE_ASSERT_INSTANCE                                              Handle        = 0x001B0008\n\tWER_S_IGNORE_ALL_ASSERTS                                                  Handle        = 0x001B0009\n\tWER_S_ASSERT_CONTINUE                                                     Handle        = 0x001B000A\n\tWER_S_THROTTLED                                                           Handle        = 0x001B000B\n\tWER_S_REPORT_UPLOADED_CAB                                                 Handle        = 0x001B000C\n\tWER_E_CRASH_FAILURE                                                       Handle        = 0x801B8000\n\tWER_E_CANCELED                                                            Handle        = 0x801B8001\n\tWER_E_NETWORK_FAILURE                                                     Handle        = 0x801B8002\n\tWER_E_NOT_INITIALIZED                                                     Handle        = 0x801B8003\n\tWER_E_ALREADY_REPORTING                                                   Handle        = 0x801B8004\n\tWER_E_DUMP_THROTTLED                                                      Handle        = 0x801B8005\n\tWER_E_INSUFFICIENT_CONSENT                                                Handle        = 0x801B8006\n\tWER_E_TOO_HEAVY                                                           Handle        = 0x801B8007\n\tERROR_FLT_IO_COMPLETE                                                     Handle        = 0x001F0001\n\tERROR_FLT_NO_HANDLER_DEFINED                                              Handle        = 0x801F0001\n\tERROR_FLT_CONTEXT_ALREADY_DEFINED                                         Handle        = 0x801F0002\n\tERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST                                    Handle        = 0x801F0003\n\tERROR_FLT_DISALLOW_FAST_IO                                                Handle        = 0x801F0004\n\tERROR_FLT_INVALID_NAME_REQUEST                                            Handle        = 0x801F0005\n\tERROR_FLT_NOT_SAFE_TO_POST_OPERATION                                      Handle        = 0x801F0006\n\tERROR_FLT_NOT_INITIALIZED                                                 Handle        = 0x801F0007\n\tERROR_FLT_FILTER_NOT_READY                                                Handle        = 0x801F0008\n\tERROR_FLT_POST_OPERATION_CLEANUP                                          Handle        = 0x801F0009\n\tERROR_FLT_INTERNAL_ERROR                                                  Handle        = 0x801F000A\n\tERROR_FLT_DELETING_OBJECT                                                 Handle        = 0x801F000B\n\tERROR_FLT_MUST_BE_NONPAGED_POOL                                           Handle        = 0x801F000C\n\tERROR_FLT_DUPLICATE_ENTRY                                                 Handle        = 0x801F000D\n\tERROR_FLT_CBDQ_DISABLED                                                   Handle        = 0x801F000E\n\tERROR_FLT_DO_NOT_ATTACH                                                   Handle        = 0x801F000F\n\tERROR_FLT_DO_NOT_DETACH                                                   Handle        = 0x801F0010\n\tERROR_FLT_INSTANCE_ALTITUDE_COLLISION                                     Handle        = 0x801F0011\n\tERROR_FLT_INSTANCE_NAME_COLLISION                                         Handle        = 0x801F0012\n\tERROR_FLT_FILTER_NOT_FOUND                                                Handle        = 0x801F0013\n\tERROR_FLT_VOLUME_NOT_FOUND                                                Handle        = 0x801F0014\n\tERROR_FLT_INSTANCE_NOT_FOUND                                              Handle        = 0x801F0015\n\tERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND                                    Handle        = 0x801F0016\n\tERROR_FLT_INVALID_CONTEXT_REGISTRATION                                    Handle        = 0x801F0017\n\tERROR_FLT_NAME_CACHE_MISS                                                 Handle        = 0x801F0018\n\tERROR_FLT_NO_DEVICE_OBJECT                                                Handle        = 0x801F0019\n\tERROR_FLT_VOLUME_ALREADY_MOUNTED                                          Handle        = 0x801F001A\n\tERROR_FLT_ALREADY_ENLISTED                                                Handle        = 0x801F001B\n\tERROR_FLT_CONTEXT_ALREADY_LINKED                                          Handle        = 0x801F001C\n\tERROR_FLT_NO_WAITER_FOR_REPLY                                             Handle        = 0x801F0020\n\tERROR_FLT_REGISTRATION_BUSY                                               Handle        = 0x801F0023\n\tERROR_HUNG_DISPLAY_DRIVER_THREAD                                          Handle        = 0x80260001\n\tDWM_E_COMPOSITIONDISABLED                                                 Handle        = 0x80263001\n\tDWM_E_REMOTING_NOT_SUPPORTED                                              Handle        = 0x80263002\n\tDWM_E_NO_REDIRECTION_SURFACE_AVAILABLE                                    Handle        = 0x80263003\n\tDWM_E_NOT_QUEUING_PRESENTS                                                Handle        = 0x80263004\n\tDWM_E_ADAPTER_NOT_FOUND                                                   Handle        = 0x80263005\n\tDWM_S_GDI_REDIRECTION_SURFACE                                             Handle        = 0x00263005\n\tDWM_E_TEXTURE_TOO_LARGE                                                   Handle        = 0x80263007\n\tDWM_S_GDI_REDIRECTION_SURFACE_BLT_VIA_GDI                                 Handle        = 0x00263008\n\tERROR_MONITOR_NO_DESCRIPTOR                                               Handle        = 0x00261001\n\tERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT                                   Handle        = 0x00261002\n\tERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM                                 Handle        = 0xC0261003\n\tERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK                               Handle        = 0xC0261004\n\tERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED                           Handle        = 0xC0261005\n\tERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK                          Handle        = 0xC0261006\n\tERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK                          Handle        = 0xC0261007\n\tERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA                                     Handle        = 0xC0261008\n\tERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK                               Handle        = 0xC0261009\n\tERROR_MONITOR_INVALID_MANUFACTURE_DATE                                    Handle        = 0xC026100A\n\tERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER                                   Handle        = 0xC0262000\n\tERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER                                    Handle        = 0xC0262001\n\tERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER                                    Handle        = 0xC0262002\n\tERROR_GRAPHICS_ADAPTER_WAS_RESET                                          Handle        = 0xC0262003\n\tERROR_GRAPHICS_INVALID_DRIVER_MODEL                                       Handle        = 0xC0262004\n\tERROR_GRAPHICS_PRESENT_MODE_CHANGED                                       Handle        = 0xC0262005\n\tERROR_GRAPHICS_PRESENT_OCCLUDED                                           Handle        = 0xC0262006\n\tERROR_GRAPHICS_PRESENT_DENIED                                             Handle        = 0xC0262007\n\tERROR_GRAPHICS_CANNOTCOLORCONVERT                                         Handle        = 0xC0262008\n\tERROR_GRAPHICS_DRIVER_MISMATCH                                            Handle        = 0xC0262009\n\tERROR_GRAPHICS_PARTIAL_DATA_POPULATED                                     Handle        = 0x4026200A\n\tERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED                               Handle        = 0xC026200B\n\tERROR_GRAPHICS_PRESENT_UNOCCLUDED                                         Handle        = 0xC026200C\n\tERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE                                     Handle        = 0xC026200D\n\tERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED                                Handle        = 0xC026200E\n\tERROR_GRAPHICS_PRESENT_INVALID_WINDOW                                     Handle        = 0xC026200F\n\tERROR_GRAPHICS_PRESENT_BUFFER_NOT_BOUND                                   Handle        = 0xC0262010\n\tERROR_GRAPHICS_VAIL_STATE_CHANGED                                         Handle        = 0xC0262011\n\tERROR_GRAPHICS_NO_VIDEO_MEMORY                                            Handle        = 0xC0262100\n\tERROR_GRAPHICS_CANT_LOCK_MEMORY                                           Handle        = 0xC0262101\n\tERROR_GRAPHICS_ALLOCATION_BUSY                                            Handle        = 0xC0262102\n\tERROR_GRAPHICS_TOO_MANY_REFERENCES                                        Handle        = 0xC0262103\n\tERROR_GRAPHICS_TRY_AGAIN_LATER                                            Handle        = 0xC0262104\n\tERROR_GRAPHICS_TRY_AGAIN_NOW                                              Handle        = 0xC0262105\n\tERROR_GRAPHICS_ALLOCATION_INVALID                                         Handle        = 0xC0262106\n\tERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE                           Handle        = 0xC0262107\n\tERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED                           Handle        = 0xC0262108\n\tERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION                               Handle        = 0xC0262109\n\tERROR_GRAPHICS_INVALID_ALLOCATION_USAGE                                   Handle        = 0xC0262110\n\tERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION                              Handle        = 0xC0262111\n\tERROR_GRAPHICS_ALLOCATION_CLOSED                                          Handle        = 0xC0262112\n\tERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE                                Handle        = 0xC0262113\n\tERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE                                  Handle        = 0xC0262114\n\tERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE                                    Handle        = 0xC0262115\n\tERROR_GRAPHICS_ALLOCATION_CONTENT_LOST                                    Handle        = 0xC0262116\n\tERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE                                    Handle        = 0xC0262200\n\tERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION                                Handle        = 0x40262201\n\tERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY                                     Handle        = 0xC0262300\n\tERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED                               Handle        = 0xC0262301\n\tERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED                     Handle        = 0xC0262302\n\tERROR_GRAPHICS_INVALID_VIDPN                                              Handle        = 0xC0262303\n\tERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE                               Handle        = 0xC0262304\n\tERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET                               Handle        = 0xC0262305\n\tERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED                               Handle        = 0xC0262306\n\tERROR_GRAPHICS_MODE_NOT_PINNED                                            Handle        = 0x00262307\n\tERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET                                Handle        = 0xC0262308\n\tERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET                                Handle        = 0xC0262309\n\tERROR_GRAPHICS_INVALID_FREQUENCY                                          Handle        = 0xC026230A\n\tERROR_GRAPHICS_INVALID_ACTIVE_REGION                                      Handle        = 0xC026230B\n\tERROR_GRAPHICS_INVALID_TOTAL_REGION                                       Handle        = 0xC026230C\n\tERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE                          Handle        = 0xC0262310\n\tERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE                          Handle        = 0xC0262311\n\tERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET                             Handle        = 0xC0262312\n\tERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY                                   Handle        = 0xC0262313\n\tERROR_GRAPHICS_MODE_ALREADY_IN_MODESET                                    Handle        = 0xC0262314\n\tERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET                              Handle        = 0xC0262315\n\tERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET                              Handle        = 0xC0262316\n\tERROR_GRAPHICS_SOURCE_ALREADY_IN_SET                                      Handle        = 0xC0262317\n\tERROR_GRAPHICS_TARGET_ALREADY_IN_SET                                      Handle        = 0xC0262318\n\tERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH                                 Handle        = 0xC0262319\n\tERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY                              Handle        = 0xC026231A\n\tERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET                          Handle        = 0xC026231B\n\tERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE                             Handle        = 0xC026231C\n\tERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET                                  Handle        = 0xC026231D\n\tERROR_GRAPHICS_NO_PREFERRED_MODE                                          Handle        = 0x0026231E\n\tERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET                              Handle        = 0xC026231F\n\tERROR_GRAPHICS_STALE_MODESET                                              Handle        = 0xC0262320\n\tERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET                              Handle        = 0xC0262321\n\tERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE                                Handle        = 0xC0262322\n\tERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN                            Handle        = 0xC0262323\n\tERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE                                     Handle        = 0xC0262324\n\tERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION            Handle        = 0xC0262325\n\tERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES                    Handle        = 0xC0262326\n\tERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY                                       Handle        = 0xC0262327\n\tERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE                      Handle        = 0xC0262328\n\tERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET                      Handle        = 0xC0262329\n\tERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET                               Handle        = 0xC026232A\n\tERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR                                  Handle        = 0xC026232B\n\tERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET                               Handle        = 0xC026232C\n\tERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET                           Handle        = 0xC026232D\n\tERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE                        Handle        = 0xC026232E\n\tERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE                           Handle        = 0xC026232F\n\tERROR_GRAPHICS_RESOURCES_NOT_RELATED                                      Handle        = 0xC0262330\n\tERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE                                   Handle        = 0xC0262331\n\tERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE                                   Handle        = 0xC0262332\n\tERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET                                  Handle        = 0xC0262333\n\tERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER               Handle        = 0xC0262334\n\tERROR_GRAPHICS_NO_VIDPNMGR                                                Handle        = 0xC0262335\n\tERROR_GRAPHICS_NO_ACTIVE_VIDPN                                            Handle        = 0xC0262336\n\tERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY                                       Handle        = 0xC0262337\n\tERROR_GRAPHICS_MONITOR_NOT_CONNECTED                                      Handle        = 0xC0262338\n\tERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY                                     Handle        = 0xC0262339\n\tERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE                                Handle        = 0xC026233A\n\tERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE                                 Handle        = 0xC026233B\n\tERROR_GRAPHICS_INVALID_STRIDE                                             Handle        = 0xC026233C\n\tERROR_GRAPHICS_INVALID_PIXELFORMAT                                        Handle        = 0xC026233D\n\tERROR_GRAPHICS_INVALID_COLORBASIS                                         Handle        = 0xC026233E\n\tERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE                               Handle        = 0xC026233F\n\tERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY                                     Handle        = 0xC0262340\n\tERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT                         Handle        = 0xC0262341\n\tERROR_GRAPHICS_VIDPN_SOURCE_IN_USE                                        Handle        = 0xC0262342\n\tERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN                                   Handle        = 0xC0262343\n\tERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL                            Handle        = 0xC0262344\n\tERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION               Handle        = 0xC0262345\n\tERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED         Handle        = 0xC0262346\n\tERROR_GRAPHICS_INVALID_GAMMA_RAMP                                         Handle        = 0xC0262347\n\tERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED                                   Handle        = 0xC0262348\n\tERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED                                Handle        = 0xC0262349\n\tERROR_GRAPHICS_MODE_NOT_IN_MODESET                                        Handle        = 0xC026234A\n\tERROR_GRAPHICS_DATASET_IS_EMPTY                                           Handle        = 0x0026234B\n\tERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET                                Handle        = 0x0026234C\n\tERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON               Handle        = 0xC026234D\n\tERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE                                  Handle        = 0xC026234E\n\tERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE                                Handle        = 0xC026234F\n\tERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS                          Handle        = 0xC0262350\n\tERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED            Handle        = 0x00262351\n\tERROR_GRAPHICS_INVALID_SCANLINE_ORDERING                                  Handle        = 0xC0262352\n\tERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED                               Handle        = 0xC0262353\n\tERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS                           Handle        = 0xC0262354\n\tERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT                                Handle        = 0xC0262355\n\tERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM                             Handle        = 0xC0262356\n\tERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN                          Handle        = 0xC0262357\n\tERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT                  Handle        = 0xC0262358\n\tERROR_GRAPHICS_MAX_NUM_PATHS_REACHED                                      Handle        = 0xC0262359\n\tERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION                         Handle        = 0xC026235A\n\tERROR_GRAPHICS_INVALID_CLIENT_TYPE                                        Handle        = 0xC026235B\n\tERROR_GRAPHICS_CLIENTVIDPN_NOT_SET                                        Handle        = 0xC026235C\n\tERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED                          Handle        = 0xC0262400\n\tERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED                             Handle        = 0xC0262401\n\tERROR_GRAPHICS_UNKNOWN_CHILD_STATUS                                       Handle        = 0x4026242F\n\tERROR_GRAPHICS_NOT_A_LINKED_ADAPTER                                       Handle        = 0xC0262430\n\tERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED                                    Handle        = 0xC0262431\n\tERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED                                  Handle        = 0xC0262432\n\tERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY                                    Handle        = 0xC0262433\n\tERROR_GRAPHICS_CHAINLINKS_NOT_STARTED                                     Handle        = 0xC0262434\n\tERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON                                  Handle        = 0xC0262435\n\tERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE                             Handle        = 0xC0262436\n\tERROR_GRAPHICS_LEADLINK_START_DEFERRED                                    Handle        = 0x40262437\n\tERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER                                     Handle        = 0xC0262438\n\tERROR_GRAPHICS_POLLING_TOO_FREQUENTLY                                     Handle        = 0x40262439\n\tERROR_GRAPHICS_START_DEFERRED                                             Handle        = 0x4026243A\n\tERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED                                Handle        = 0xC026243B\n\tERROR_GRAPHICS_DEPENDABLE_CHILD_STATUS                                    Handle        = 0x4026243C\n\tERROR_GRAPHICS_OPM_NOT_SUPPORTED                                          Handle        = 0xC0262500\n\tERROR_GRAPHICS_COPP_NOT_SUPPORTED                                         Handle        = 0xC0262501\n\tERROR_GRAPHICS_UAB_NOT_SUPPORTED                                          Handle        = 0xC0262502\n\tERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS                           Handle        = 0xC0262503\n\tERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST                                 Handle        = 0xC0262505\n\tERROR_GRAPHICS_OPM_INTERNAL_ERROR                                         Handle        = 0xC026250B\n\tERROR_GRAPHICS_OPM_INVALID_HANDLE                                         Handle        = 0xC026250C\n\tERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH                             Handle        = 0xC026250E\n\tERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED                                  Handle        = 0xC026250F\n\tERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED                                   Handle        = 0xC0262510\n\tERROR_GRAPHICS_PVP_HFS_FAILED                                             Handle        = 0xC0262511\n\tERROR_GRAPHICS_OPM_INVALID_SRM                                            Handle        = 0xC0262512\n\tERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP                           Handle        = 0xC0262513\n\tERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP                            Handle        = 0xC0262514\n\tERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA                          Handle        = 0xC0262515\n\tERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET                                     Handle        = 0xC0262516\n\tERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH                                    Handle        = 0xC0262517\n\tERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE                       Handle        = 0xC0262518\n\tERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS                          Handle        = 0xC026251A\n\tERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS                        Handle        = 0xC026251B\n\tERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS              Handle        = 0xC026251C\n\tERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST                            Handle        = 0xC026251D\n\tERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR                                  Handle        = 0xC026251E\n\tERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS               Handle        = 0xC026251F\n\tERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED                                Handle        = 0xC0262520\n\tERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST                          Handle        = 0xC0262521\n\tERROR_GRAPHICS_I2C_NOT_SUPPORTED                                          Handle        = 0xC0262580\n\tERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST                                  Handle        = 0xC0262581\n\tERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA                                Handle        = 0xC0262582\n\tERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA                                   Handle        = 0xC0262583\n\tERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED                                    Handle        = 0xC0262584\n\tERROR_GRAPHICS_DDCCI_INVALID_DATA                                         Handle        = 0xC0262585\n\tERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE          Handle        = 0xC0262586\n\tERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING                            Handle        = 0xC0262587\n\tERROR_GRAPHICS_MCA_INTERNAL_ERROR                                         Handle        = 0xC0262588\n\tERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND                              Handle        = 0xC0262589\n\tERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH                               Handle        = 0xC026258A\n\tERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM                             Handle        = 0xC026258B\n\tERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE                            Handle        = 0xC026258C\n\tERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS                                   Handle        = 0xC026258D\n\tERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE     Handle        = 0xC02625D8\n\tERROR_GRAPHICS_MCA_INVALID_VCP_VERSION                                    Handle        = 0xC02625D9\n\tERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION                    Handle        = 0xC02625DA\n\tERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH                                  Handle        = 0xC02625DB\n\tERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION                               Handle        = 0xC02625DC\n\tERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED                       Handle        = 0xC02625DE\n\tERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE                          Handle        = 0xC02625DF\n\tERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED                             Handle        = 0xC02625E0\n\tERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME                      Handle        = 0xC02625E1\n\tERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP                     Handle        = 0xC02625E2\n\tERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED                            Handle        = 0xC02625E3\n\tERROR_GRAPHICS_INVALID_POINTER                                            Handle        = 0xC02625E4\n\tERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE                   Handle        = 0xC02625E5\n\tERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL                                  Handle        = 0xC02625E6\n\tERROR_GRAPHICS_INTERNAL_ERROR                                             Handle        = 0xC02625E7\n\tERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS                            Handle        = 0xC02605E8\n\tNAP_E_INVALID_PACKET                                                      Handle        = 0x80270001\n\tNAP_E_MISSING_SOH                                                         Handle        = 0x80270002\n\tNAP_E_CONFLICTING_ID                                                      Handle        = 0x80270003\n\tNAP_E_NO_CACHED_SOH                                                       Handle        = 0x80270004\n\tNAP_E_STILL_BOUND                                                         Handle        = 0x80270005\n\tNAP_E_NOT_REGISTERED                                                      Handle        = 0x80270006\n\tNAP_E_NOT_INITIALIZED                                                     Handle        = 0x80270007\n\tNAP_E_MISMATCHED_ID                                                       Handle        = 0x80270008\n\tNAP_E_NOT_PENDING                                                         Handle        = 0x80270009\n\tNAP_E_ID_NOT_FOUND                                                        Handle        = 0x8027000A\n\tNAP_E_MAXSIZE_TOO_SMALL                                                   Handle        = 0x8027000B\n\tNAP_E_SERVICE_NOT_RUNNING                                                 Handle        = 0x8027000C\n\tNAP_S_CERT_ALREADY_PRESENT                                                Handle        = 0x0027000D\n\tNAP_E_ENTITY_DISABLED                                                     Handle        = 0x8027000E\n\tNAP_E_NETSH_GROUPPOLICY_ERROR                                             Handle        = 0x8027000F\n\tNAP_E_TOO_MANY_CALLS                                                      Handle        = 0x80270010\n\tNAP_E_SHV_CONFIG_EXISTED                                                  Handle        = 0x80270011\n\tNAP_E_SHV_CONFIG_NOT_FOUND                                                Handle        = 0x80270012\n\tNAP_E_SHV_TIMEOUT                                                         Handle        = 0x80270013\n\tTPM_E_ERROR_MASK                                                          Handle        = 0x80280000\n\tTPM_E_AUTHFAIL                                                            Handle        = 0x80280001\n\tTPM_E_BADINDEX                                                            Handle        = 0x80280002\n\tTPM_E_BAD_PARAMETER                                                       Handle        = 0x80280003\n\tTPM_E_AUDITFAILURE                                                        Handle        = 0x80280004\n\tTPM_E_CLEAR_DISABLED                                                      Handle        = 0x80280005\n\tTPM_E_DEACTIVATED                                                         Handle        = 0x80280006\n\tTPM_E_DISABLED                                                            Handle        = 0x80280007\n\tTPM_E_DISABLED_CMD                                                        Handle        = 0x80280008\n\tTPM_E_FAIL                                                                Handle        = 0x80280009\n\tTPM_E_BAD_ORDINAL                                                         Handle        = 0x8028000A\n\tTPM_E_INSTALL_DISABLED                                                    Handle        = 0x8028000B\n\tTPM_E_INVALID_KEYHANDLE                                                   Handle        = 0x8028000C\n\tTPM_E_KEYNOTFOUND                                                         Handle        = 0x8028000D\n\tTPM_E_INAPPROPRIATE_ENC                                                   Handle        = 0x8028000E\n\tTPM_E_MIGRATEFAIL                                                         Handle        = 0x8028000F\n\tTPM_E_INVALID_PCR_INFO                                                    Handle        = 0x80280010\n\tTPM_E_NOSPACE                                                             Handle        = 0x80280011\n\tTPM_E_NOSRK                                                               Handle        = 0x80280012\n\tTPM_E_NOTSEALED_BLOB                                                      Handle        = 0x80280013\n\tTPM_E_OWNER_SET                                                           Handle        = 0x80280014\n\tTPM_E_RESOURCES                                                           Handle        = 0x80280015\n\tTPM_E_SHORTRANDOM                                                         Handle        = 0x80280016\n\tTPM_E_SIZE                                                                Handle        = 0x80280017\n\tTPM_E_WRONGPCRVAL                                                         Handle        = 0x80280018\n\tTPM_E_BAD_PARAM_SIZE                                                      Handle        = 0x80280019\n\tTPM_E_SHA_THREAD                                                          Handle        = 0x8028001A\n\tTPM_E_SHA_ERROR                                                           Handle        = 0x8028001B\n\tTPM_E_FAILEDSELFTEST                                                      Handle        = 0x8028001C\n\tTPM_E_AUTH2FAIL                                                           Handle        = 0x8028001D\n\tTPM_E_BADTAG                                                              Handle        = 0x8028001E\n\tTPM_E_IOERROR                                                             Handle        = 0x8028001F\n\tTPM_E_ENCRYPT_ERROR                                                       Handle        = 0x80280020\n\tTPM_E_DECRYPT_ERROR                                                       Handle        = 0x80280021\n\tTPM_E_INVALID_AUTHHANDLE                                                  Handle        = 0x80280022\n\tTPM_E_NO_ENDORSEMENT                                                      Handle        = 0x80280023\n\tTPM_E_INVALID_KEYUSAGE                                                    Handle        = 0x80280024\n\tTPM_E_WRONG_ENTITYTYPE                                                    Handle        = 0x80280025\n\tTPM_E_INVALID_POSTINIT                                                    Handle        = 0x80280026\n\tTPM_E_INAPPROPRIATE_SIG                                                   Handle        = 0x80280027\n\tTPM_E_BAD_KEY_PROPERTY                                                    Handle        = 0x80280028\n\tTPM_E_BAD_MIGRATION                                                       Handle        = 0x80280029\n\tTPM_E_BAD_SCHEME                                                          Handle        = 0x8028002A\n\tTPM_E_BAD_DATASIZE                                                        Handle        = 0x8028002B\n\tTPM_E_BAD_MODE                                                            Handle        = 0x8028002C\n\tTPM_E_BAD_PRESENCE                                                        Handle        = 0x8028002D\n\tTPM_E_BAD_VERSION                                                         Handle        = 0x8028002E\n\tTPM_E_NO_WRAP_TRANSPORT                                                   Handle        = 0x8028002F\n\tTPM_E_AUDITFAIL_UNSUCCESSFUL                                              Handle        = 0x80280030\n\tTPM_E_AUDITFAIL_SUCCESSFUL                                                Handle        = 0x80280031\n\tTPM_E_NOTRESETABLE                                                        Handle        = 0x80280032\n\tTPM_E_NOTLOCAL                                                            Handle        = 0x80280033\n\tTPM_E_BAD_TYPE                                                            Handle        = 0x80280034\n\tTPM_E_INVALID_RESOURCE                                                    Handle        = 0x80280035\n\tTPM_E_NOTFIPS                                                             Handle        = 0x80280036\n\tTPM_E_INVALID_FAMILY                                                      Handle        = 0x80280037\n\tTPM_E_NO_NV_PERMISSION                                                    Handle        = 0x80280038\n\tTPM_E_REQUIRES_SIGN                                                       Handle        = 0x80280039\n\tTPM_E_KEY_NOTSUPPORTED                                                    Handle        = 0x8028003A\n\tTPM_E_AUTH_CONFLICT                                                       Handle        = 0x8028003B\n\tTPM_E_AREA_LOCKED                                                         Handle        = 0x8028003C\n\tTPM_E_BAD_LOCALITY                                                        Handle        = 0x8028003D\n\tTPM_E_READ_ONLY                                                           Handle        = 0x8028003E\n\tTPM_E_PER_NOWRITE                                                         Handle        = 0x8028003F\n\tTPM_E_FAMILYCOUNT                                                         Handle        = 0x80280040\n\tTPM_E_WRITE_LOCKED                                                        Handle        = 0x80280041\n\tTPM_E_BAD_ATTRIBUTES                                                      Handle        = 0x80280042\n\tTPM_E_INVALID_STRUCTURE                                                   Handle        = 0x80280043\n\tTPM_E_KEY_OWNER_CONTROL                                                   Handle        = 0x80280044\n\tTPM_E_BAD_COUNTER                                                         Handle        = 0x80280045\n\tTPM_E_NOT_FULLWRITE                                                       Handle        = 0x80280046\n\tTPM_E_CONTEXT_GAP                                                         Handle        = 0x80280047\n\tTPM_E_MAXNVWRITES                                                         Handle        = 0x80280048\n\tTPM_E_NOOPERATOR                                                          Handle        = 0x80280049\n\tTPM_E_RESOURCEMISSING                                                     Handle        = 0x8028004A\n\tTPM_E_DELEGATE_LOCK                                                       Handle        = 0x8028004B\n\tTPM_E_DELEGATE_FAMILY                                                     Handle        = 0x8028004C\n\tTPM_E_DELEGATE_ADMIN                                                      Handle        = 0x8028004D\n\tTPM_E_TRANSPORT_NOTEXCLUSIVE                                              Handle        = 0x8028004E\n\tTPM_E_OWNER_CONTROL                                                       Handle        = 0x8028004F\n\tTPM_E_DAA_RESOURCES                                                       Handle        = 0x80280050\n\tTPM_E_DAA_INPUT_DATA0                                                     Handle        = 0x80280051\n\tTPM_E_DAA_INPUT_DATA1                                                     Handle        = 0x80280052\n\tTPM_E_DAA_ISSUER_SETTINGS                                                 Handle        = 0x80280053\n\tTPM_E_DAA_TPM_SETTINGS                                                    Handle        = 0x80280054\n\tTPM_E_DAA_STAGE                                                           Handle        = 0x80280055\n\tTPM_E_DAA_ISSUER_VALIDITY                                                 Handle        = 0x80280056\n\tTPM_E_DAA_WRONG_W                                                         Handle        = 0x80280057\n\tTPM_E_BAD_HANDLE                                                          Handle        = 0x80280058\n\tTPM_E_BAD_DELEGATE                                                        Handle        = 0x80280059\n\tTPM_E_BADCONTEXT                                                          Handle        = 0x8028005A\n\tTPM_E_TOOMANYCONTEXTS                                                     Handle        = 0x8028005B\n\tTPM_E_MA_TICKET_SIGNATURE                                                 Handle        = 0x8028005C\n\tTPM_E_MA_DESTINATION                                                      Handle        = 0x8028005D\n\tTPM_E_MA_SOURCE                                                           Handle        = 0x8028005E\n\tTPM_E_MA_AUTHORITY                                                        Handle        = 0x8028005F\n\tTPM_E_PERMANENTEK                                                         Handle        = 0x80280061\n\tTPM_E_BAD_SIGNATURE                                                       Handle        = 0x80280062\n\tTPM_E_NOCONTEXTSPACE                                                      Handle        = 0x80280063\n\tTPM_20_E_ASYMMETRIC                                                       Handle        = 0x80280081\n\tTPM_20_E_ATTRIBUTES                                                       Handle        = 0x80280082\n\tTPM_20_E_HASH                                                             Handle        = 0x80280083\n\tTPM_20_E_VALUE                                                            Handle        = 0x80280084\n\tTPM_20_E_HIERARCHY                                                        Handle        = 0x80280085\n\tTPM_20_E_KEY_SIZE                                                         Handle        = 0x80280087\n\tTPM_20_E_MGF                                                              Handle        = 0x80280088\n\tTPM_20_E_MODE                                                             Handle        = 0x80280089\n\tTPM_20_E_TYPE                                                             Handle        = 0x8028008A\n\tTPM_20_E_HANDLE                                                           Handle        = 0x8028008B\n\tTPM_20_E_KDF                                                              Handle        = 0x8028008C\n\tTPM_20_E_RANGE                                                            Handle        = 0x8028008D\n\tTPM_20_E_AUTH_FAIL                                                        Handle        = 0x8028008E\n\tTPM_20_E_NONCE                                                            Handle        = 0x8028008F\n\tTPM_20_E_PP                                                               Handle        = 0x80280090\n\tTPM_20_E_SCHEME                                                           Handle        = 0x80280092\n\tTPM_20_E_SIZE                                                             Handle        = 0x80280095\n\tTPM_20_E_SYMMETRIC                                                        Handle        = 0x80280096\n\tTPM_20_E_TAG                                                              Handle        = 0x80280097\n\tTPM_20_E_SELECTOR                                                         Handle        = 0x80280098\n\tTPM_20_E_INSUFFICIENT                                                     Handle        = 0x8028009A\n\tTPM_20_E_SIGNATURE                                                        Handle        = 0x8028009B\n\tTPM_20_E_KEY                                                              Handle        = 0x8028009C\n\tTPM_20_E_POLICY_FAIL                                                      Handle        = 0x8028009D\n\tTPM_20_E_INTEGRITY                                                        Handle        = 0x8028009F\n\tTPM_20_E_TICKET                                                           Handle        = 0x802800A0\n\tTPM_20_E_RESERVED_BITS                                                    Handle        = 0x802800A1\n\tTPM_20_E_BAD_AUTH                                                         Handle        = 0x802800A2\n\tTPM_20_E_EXPIRED                                                          Handle        = 0x802800A3\n\tTPM_20_E_POLICY_CC                                                        Handle        = 0x802800A4\n\tTPM_20_E_BINDING                                                          Handle        = 0x802800A5\n\tTPM_20_E_CURVE                                                            Handle        = 0x802800A6\n\tTPM_20_E_ECC_POINT                                                        Handle        = 0x802800A7\n\tTPM_20_E_INITIALIZE                                                       Handle        = 0x80280100\n\tTPM_20_E_FAILURE                                                          Handle        = 0x80280101\n\tTPM_20_E_SEQUENCE                                                         Handle        = 0x80280103\n\tTPM_20_E_PRIVATE                                                          Handle        = 0x8028010B\n\tTPM_20_E_HMAC                                                             Handle        = 0x80280119\n\tTPM_20_E_DISABLED                                                         Handle        = 0x80280120\n\tTPM_20_E_EXCLUSIVE                                                        Handle        = 0x80280121\n\tTPM_20_E_ECC_CURVE                                                        Handle        = 0x80280123\n\tTPM_20_E_AUTH_TYPE                                                        Handle        = 0x80280124\n\tTPM_20_E_AUTH_MISSING                                                     Handle        = 0x80280125\n\tTPM_20_E_POLICY                                                           Handle        = 0x80280126\n\tTPM_20_E_PCR                                                              Handle        = 0x80280127\n\tTPM_20_E_PCR_CHANGED                                                      Handle        = 0x80280128\n\tTPM_20_E_UPGRADE                                                          Handle        = 0x8028012D\n\tTPM_20_E_TOO_MANY_CONTEXTS                                                Handle        = 0x8028012E\n\tTPM_20_E_AUTH_UNAVAILABLE                                                 Handle        = 0x8028012F\n\tTPM_20_E_REBOOT                                                           Handle        = 0x80280130\n\tTPM_20_E_UNBALANCED                                                       Handle        = 0x80280131\n\tTPM_20_E_COMMAND_SIZE                                                     Handle        = 0x80280142\n\tTPM_20_E_COMMAND_CODE                                                     Handle        = 0x80280143\n\tTPM_20_E_AUTHSIZE                                                         Handle        = 0x80280144\n\tTPM_20_E_AUTH_CONTEXT                                                     Handle        = 0x80280145\n\tTPM_20_E_NV_RANGE                                                         Handle        = 0x80280146\n\tTPM_20_E_NV_SIZE                                                          Handle        = 0x80280147\n\tTPM_20_E_NV_LOCKED                                                        Handle        = 0x80280148\n\tTPM_20_E_NV_AUTHORIZATION                                                 Handle        = 0x80280149\n\tTPM_20_E_NV_UNINITIALIZED                                                 Handle        = 0x8028014A\n\tTPM_20_E_NV_SPACE                                                         Handle        = 0x8028014B\n\tTPM_20_E_NV_DEFINED                                                       Handle        = 0x8028014C\n\tTPM_20_E_BAD_CONTEXT                                                      Handle        = 0x80280150\n\tTPM_20_E_CPHASH                                                           Handle        = 0x80280151\n\tTPM_20_E_PARENT                                                           Handle        = 0x80280152\n\tTPM_20_E_NEEDS_TEST                                                       Handle        = 0x80280153\n\tTPM_20_E_NO_RESULT                                                        Handle        = 0x80280154\n\tTPM_20_E_SENSITIVE                                                        Handle        = 0x80280155\n\tTPM_E_COMMAND_BLOCKED                                                     Handle        = 0x80280400\n\tTPM_E_INVALID_HANDLE                                                      Handle        = 0x80280401\n\tTPM_E_DUPLICATE_VHANDLE                                                   Handle        = 0x80280402\n\tTPM_E_EMBEDDED_COMMAND_BLOCKED                                            Handle        = 0x80280403\n\tTPM_E_EMBEDDED_COMMAND_UNSUPPORTED                                        Handle        = 0x80280404\n\tTPM_E_RETRY                                                               Handle        = 0x80280800\n\tTPM_E_NEEDS_SELFTEST                                                      Handle        = 0x80280801\n\tTPM_E_DOING_SELFTEST                                                      Handle        = 0x80280802\n\tTPM_E_DEFEND_LOCK_RUNNING                                                 Handle        = 0x80280803\n\tTPM_20_E_CONTEXT_GAP                                                      Handle        = 0x80280901\n\tTPM_20_E_OBJECT_MEMORY                                                    Handle        = 0x80280902\n\tTPM_20_E_SESSION_MEMORY                                                   Handle        = 0x80280903\n\tTPM_20_E_MEMORY                                                           Handle        = 0x80280904\n\tTPM_20_E_SESSION_HANDLES                                                  Handle        = 0x80280905\n\tTPM_20_E_OBJECT_HANDLES                                                   Handle        = 0x80280906\n\tTPM_20_E_LOCALITY                                                         Handle        = 0x80280907\n\tTPM_20_E_YIELDED                                                          Handle        = 0x80280908\n\tTPM_20_E_CANCELED                                                         Handle        = 0x80280909\n\tTPM_20_E_TESTING                                                          Handle        = 0x8028090A\n\tTPM_20_E_NV_RATE                                                          Handle        = 0x80280920\n\tTPM_20_E_LOCKOUT                                                          Handle        = 0x80280921\n\tTPM_20_E_RETRY                                                            Handle        = 0x80280922\n\tTPM_20_E_NV_UNAVAILABLE                                                   Handle        = 0x80280923\n\tTBS_E_INTERNAL_ERROR                                                      Handle        = 0x80284001\n\tTBS_E_BAD_PARAMETER                                                       Handle        = 0x80284002\n\tTBS_E_INVALID_OUTPUT_POINTER                                              Handle        = 0x80284003\n\tTBS_E_INVALID_CONTEXT                                                     Handle        = 0x80284004\n\tTBS_E_INSUFFICIENT_BUFFER                                                 Handle        = 0x80284005\n\tTBS_E_IOERROR                                                             Handle        = 0x80284006\n\tTBS_E_INVALID_CONTEXT_PARAM                                               Handle        = 0x80284007\n\tTBS_E_SERVICE_NOT_RUNNING                                                 Handle        = 0x80284008\n\tTBS_E_TOO_MANY_TBS_CONTEXTS                                               Handle        = 0x80284009\n\tTBS_E_TOO_MANY_RESOURCES                                                  Handle        = 0x8028400A\n\tTBS_E_SERVICE_START_PENDING                                               Handle        = 0x8028400B\n\tTBS_E_PPI_NOT_SUPPORTED                                                   Handle        = 0x8028400C\n\tTBS_E_COMMAND_CANCELED                                                    Handle        = 0x8028400D\n\tTBS_E_BUFFER_TOO_LARGE                                                    Handle        = 0x8028400E\n\tTBS_E_TPM_NOT_FOUND                                                       Handle        = 0x8028400F\n\tTBS_E_SERVICE_DISABLED                                                    Handle        = 0x80284010\n\tTBS_E_NO_EVENT_LOG                                                        Handle        = 0x80284011\n\tTBS_E_ACCESS_DENIED                                                       Handle        = 0x80284012\n\tTBS_E_PROVISIONING_NOT_ALLOWED                                            Handle        = 0x80284013\n\tTBS_E_PPI_FUNCTION_UNSUPPORTED                                            Handle        = 0x80284014\n\tTBS_E_OWNERAUTH_NOT_FOUND                                                 Handle        = 0x80284015\n\tTBS_E_PROVISIONING_INCOMPLETE                                             Handle        = 0x80284016\n\tTPMAPI_E_INVALID_STATE                                                    Handle        = 0x80290100\n\tTPMAPI_E_NOT_ENOUGH_DATA                                                  Handle        = 0x80290101\n\tTPMAPI_E_TOO_MUCH_DATA                                                    Handle        = 0x80290102\n\tTPMAPI_E_INVALID_OUTPUT_POINTER                                           Handle        = 0x80290103\n\tTPMAPI_E_INVALID_PARAMETER                                                Handle        = 0x80290104\n\tTPMAPI_E_OUT_OF_MEMORY                                                    Handle        = 0x80290105\n\tTPMAPI_E_BUFFER_TOO_SMALL                                                 Handle        = 0x80290106\n\tTPMAPI_E_INTERNAL_ERROR                                                   Handle        = 0x80290107\n\tTPMAPI_E_ACCESS_DENIED                                                    Handle        = 0x80290108\n\tTPMAPI_E_AUTHORIZATION_FAILED                                             Handle        = 0x80290109\n\tTPMAPI_E_INVALID_CONTEXT_HANDLE                                           Handle        = 0x8029010A\n\tTPMAPI_E_TBS_COMMUNICATION_ERROR                                          Handle        = 0x8029010B\n\tTPMAPI_E_TPM_COMMAND_ERROR                                                Handle        = 0x8029010C\n\tTPMAPI_E_MESSAGE_TOO_LARGE                                                Handle        = 0x8029010D\n\tTPMAPI_E_INVALID_ENCODING                                                 Handle        = 0x8029010E\n\tTPMAPI_E_INVALID_KEY_SIZE                                                 Handle        = 0x8029010F\n\tTPMAPI_E_ENCRYPTION_FAILED                                                Handle        = 0x80290110\n\tTPMAPI_E_INVALID_KEY_PARAMS                                               Handle        = 0x80290111\n\tTPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB                             Handle        = 0x80290112\n\tTPMAPI_E_INVALID_PCR_INDEX                                                Handle        = 0x80290113\n\tTPMAPI_E_INVALID_DELEGATE_BLOB                                            Handle        = 0x80290114\n\tTPMAPI_E_INVALID_CONTEXT_PARAMS                                           Handle        = 0x80290115\n\tTPMAPI_E_INVALID_KEY_BLOB                                                 Handle        = 0x80290116\n\tTPMAPI_E_INVALID_PCR_DATA                                                 Handle        = 0x80290117\n\tTPMAPI_E_INVALID_OWNER_AUTH                                               Handle        = 0x80290118\n\tTPMAPI_E_FIPS_RNG_CHECK_FAILED                                            Handle        = 0x80290119\n\tTPMAPI_E_EMPTY_TCG_LOG                                                    Handle        = 0x8029011A\n\tTPMAPI_E_INVALID_TCG_LOG_ENTRY                                            Handle        = 0x8029011B\n\tTPMAPI_E_TCG_SEPARATOR_ABSENT                                             Handle        = 0x8029011C\n\tTPMAPI_E_TCG_INVALID_DIGEST_ENTRY                                         Handle        = 0x8029011D\n\tTPMAPI_E_POLICY_DENIES_OPERATION                                          Handle        = 0x8029011E\n\tTPMAPI_E_NV_BITS_NOT_DEFINED                                              Handle        = 0x8029011F\n\tTPMAPI_E_NV_BITS_NOT_READY                                                Handle        = 0x80290120\n\tTPMAPI_E_SEALING_KEY_NOT_AVAILABLE                                        Handle        = 0x80290121\n\tTPMAPI_E_NO_AUTHORIZATION_CHAIN_FOUND                                     Handle        = 0x80290122\n\tTPMAPI_E_SVN_COUNTER_NOT_AVAILABLE                                        Handle        = 0x80290123\n\tTPMAPI_E_OWNER_AUTH_NOT_NULL                                              Handle        = 0x80290124\n\tTPMAPI_E_ENDORSEMENT_AUTH_NOT_NULL                                        Handle        = 0x80290125\n\tTPMAPI_E_AUTHORIZATION_REVOKED                                            Handle        = 0x80290126\n\tTPMAPI_E_MALFORMED_AUTHORIZATION_KEY                                      Handle        = 0x80290127\n\tTPMAPI_E_AUTHORIZING_KEY_NOT_SUPPORTED                                    Handle        = 0x80290128\n\tTPMAPI_E_INVALID_AUTHORIZATION_SIGNATURE                                  Handle        = 0x80290129\n\tTPMAPI_E_MALFORMED_AUTHORIZATION_POLICY                                   Handle        = 0x8029012A\n\tTPMAPI_E_MALFORMED_AUTHORIZATION_OTHER                                    Handle        = 0x8029012B\n\tTPMAPI_E_SEALING_KEY_CHANGED                                              Handle        = 0x8029012C\n\tTBSIMP_E_BUFFER_TOO_SMALL                                                 Handle        = 0x80290200\n\tTBSIMP_E_CLEANUP_FAILED                                                   Handle        = 0x80290201\n\tTBSIMP_E_INVALID_CONTEXT_HANDLE                                           Handle        = 0x80290202\n\tTBSIMP_E_INVALID_CONTEXT_PARAM                                            Handle        = 0x80290203\n\tTBSIMP_E_TPM_ERROR                                                        Handle        = 0x80290204\n\tTBSIMP_E_HASH_BAD_KEY                                                     Handle        = 0x80290205\n\tTBSIMP_E_DUPLICATE_VHANDLE                                                Handle        = 0x80290206\n\tTBSIMP_E_INVALID_OUTPUT_POINTER                                           Handle        = 0x80290207\n\tTBSIMP_E_INVALID_PARAMETER                                                Handle        = 0x80290208\n\tTBSIMP_E_RPC_INIT_FAILED                                                  Handle        = 0x80290209\n\tTBSIMP_E_SCHEDULER_NOT_RUNNING                                            Handle        = 0x8029020A\n\tTBSIMP_E_COMMAND_CANCELED                                                 Handle        = 0x8029020B\n\tTBSIMP_E_OUT_OF_MEMORY                                                    Handle        = 0x8029020C\n\tTBSIMP_E_LIST_NO_MORE_ITEMS                                               Handle        = 0x8029020D\n\tTBSIMP_E_LIST_NOT_FOUND                                                   Handle        = 0x8029020E\n\tTBSIMP_E_NOT_ENOUGH_SPACE                                                 Handle        = 0x8029020F\n\tTBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS                                          Handle        = 0x80290210\n\tTBSIMP_E_COMMAND_FAILED                                                   Handle        = 0x80290211\n\tTBSIMP_E_UNKNOWN_ORDINAL                                                  Handle        = 0x80290212\n\tTBSIMP_E_RESOURCE_EXPIRED                                                 Handle        = 0x80290213\n\tTBSIMP_E_INVALID_RESOURCE                                                 Handle        = 0x80290214\n\tTBSIMP_E_NOTHING_TO_UNLOAD                                                Handle        = 0x80290215\n\tTBSIMP_E_HASH_TABLE_FULL                                                  Handle        = 0x80290216\n\tTBSIMP_E_TOO_MANY_TBS_CONTEXTS                                            Handle        = 0x80290217\n\tTBSIMP_E_TOO_MANY_RESOURCES                                               Handle        = 0x80290218\n\tTBSIMP_E_PPI_NOT_SUPPORTED                                                Handle        = 0x80290219\n\tTBSIMP_E_TPM_INCOMPATIBLE                                                 Handle        = 0x8029021A\n\tTBSIMP_E_NO_EVENT_LOG                                                     Handle        = 0x8029021B\n\tTPM_E_PPI_ACPI_FAILURE                                                    Handle        = 0x80290300\n\tTPM_E_PPI_USER_ABORT                                                      Handle        = 0x80290301\n\tTPM_E_PPI_BIOS_FAILURE                                                    Handle        = 0x80290302\n\tTPM_E_PPI_NOT_SUPPORTED                                                   Handle        = 0x80290303\n\tTPM_E_PPI_BLOCKED_IN_BIOS                                                 Handle        = 0x80290304\n\tTPM_E_PCP_ERROR_MASK                                                      Handle        = 0x80290400\n\tTPM_E_PCP_DEVICE_NOT_READY                                                Handle        = 0x80290401\n\tTPM_E_PCP_INVALID_HANDLE                                                  Handle        = 0x80290402\n\tTPM_E_PCP_INVALID_PARAMETER                                               Handle        = 0x80290403\n\tTPM_E_PCP_FLAG_NOT_SUPPORTED                                              Handle        = 0x80290404\n\tTPM_E_PCP_NOT_SUPPORTED                                                   Handle        = 0x80290405\n\tTPM_E_PCP_BUFFER_TOO_SMALL                                                Handle        = 0x80290406\n\tTPM_E_PCP_INTERNAL_ERROR                                                  Handle        = 0x80290407\n\tTPM_E_PCP_AUTHENTICATION_FAILED                                           Handle        = 0x80290408\n\tTPM_E_PCP_AUTHENTICATION_IGNORED                                          Handle        = 0x80290409\n\tTPM_E_PCP_POLICY_NOT_FOUND                                                Handle        = 0x8029040A\n\tTPM_E_PCP_PROFILE_NOT_FOUND                                               Handle        = 0x8029040B\n\tTPM_E_PCP_VALIDATION_FAILED                                               Handle        = 0x8029040C\n\tTPM_E_PCP_WRONG_PARENT                                                    Handle        = 0x8029040E\n\tTPM_E_KEY_NOT_LOADED                                                      Handle        = 0x8029040F\n\tTPM_E_NO_KEY_CERTIFICATION                                                Handle        = 0x80290410\n\tTPM_E_KEY_NOT_FINALIZED                                                   Handle        = 0x80290411\n\tTPM_E_ATTESTATION_CHALLENGE_NOT_SET                                       Handle        = 0x80290412\n\tTPM_E_NOT_PCR_BOUND                                                       Handle        = 0x80290413\n\tTPM_E_KEY_ALREADY_FINALIZED                                               Handle        = 0x80290414\n\tTPM_E_KEY_USAGE_POLICY_NOT_SUPPORTED                                      Handle        = 0x80290415\n\tTPM_E_KEY_USAGE_POLICY_INVALID                                            Handle        = 0x80290416\n\tTPM_E_SOFT_KEY_ERROR                                                      Handle        = 0x80290417\n\tTPM_E_KEY_NOT_AUTHENTICATED                                               Handle        = 0x80290418\n\tTPM_E_PCP_KEY_NOT_AIK                                                     Handle        = 0x80290419\n\tTPM_E_KEY_NOT_SIGNING_KEY                                                 Handle        = 0x8029041A\n\tTPM_E_LOCKED_OUT                                                          Handle        = 0x8029041B\n\tTPM_E_CLAIM_TYPE_NOT_SUPPORTED                                            Handle        = 0x8029041C\n\tTPM_E_VERSION_NOT_SUPPORTED                                               Handle        = 0x8029041D\n\tTPM_E_BUFFER_LENGTH_MISMATCH                                              Handle        = 0x8029041E\n\tTPM_E_PCP_IFX_RSA_KEY_CREATION_BLOCKED                                    Handle        = 0x8029041F\n\tTPM_E_PCP_TICKET_MISSING                                                  Handle        = 0x80290420\n\tTPM_E_PCP_RAW_POLICY_NOT_SUPPORTED                                        Handle        = 0x80290421\n\tTPM_E_PCP_KEY_HANDLE_INVALIDATED                                          Handle        = 0x80290422\n\tTPM_E_PCP_UNSUPPORTED_PSS_SALT                                            Handle        = 0x40290423\n\tTPM_E_ZERO_EXHAUST_ENABLED                                                Handle        = 0x80290500\n\tPLA_E_DCS_NOT_FOUND                                                       Handle        = 0x80300002\n\tPLA_E_DCS_IN_USE                                                          Handle        = 0x803000AA\n\tPLA_E_TOO_MANY_FOLDERS                                                    Handle        = 0x80300045\n\tPLA_E_NO_MIN_DISK                                                         Handle        = 0x80300070\n\tPLA_E_DCS_ALREADY_EXISTS                                                  Handle        = 0x803000B7\n\tPLA_S_PROPERTY_IGNORED                                                    Handle        = 0x00300100\n\tPLA_E_PROPERTY_CONFLICT                                                   Handle        = 0x80300101\n\tPLA_E_DCS_SINGLETON_REQUIRED                                              Handle        = 0x80300102\n\tPLA_E_CREDENTIALS_REQUIRED                                                Handle        = 0x80300103\n\tPLA_E_DCS_NOT_RUNNING                                                     Handle        = 0x80300104\n\tPLA_E_CONFLICT_INCL_EXCL_API                                              Handle        = 0x80300105\n\tPLA_E_NETWORK_EXE_NOT_VALID                                               Handle        = 0x80300106\n\tPLA_E_EXE_ALREADY_CONFIGURED                                              Handle        = 0x80300107\n\tPLA_E_EXE_PATH_NOT_VALID                                                  Handle        = 0x80300108\n\tPLA_E_DC_ALREADY_EXISTS                                                   Handle        = 0x80300109\n\tPLA_E_DCS_START_WAIT_TIMEOUT                                              Handle        = 0x8030010A\n\tPLA_E_DC_START_WAIT_TIMEOUT                                               Handle        = 0x8030010B\n\tPLA_E_REPORT_WAIT_TIMEOUT                                                 Handle        = 0x8030010C\n\tPLA_E_NO_DUPLICATES                                                       Handle        = 0x8030010D\n\tPLA_E_EXE_FULL_PATH_REQUIRED                                              Handle        = 0x8030010E\n\tPLA_E_INVALID_SESSION_NAME                                                Handle        = 0x8030010F\n\tPLA_E_PLA_CHANNEL_NOT_ENABLED                                             Handle        = 0x80300110\n\tPLA_E_TASKSCHED_CHANNEL_NOT_ENABLED                                       Handle        = 0x80300111\n\tPLA_E_RULES_MANAGER_FAILED                                                Handle        = 0x80300112\n\tPLA_E_CABAPI_FAILURE                                                      Handle        = 0x80300113\n\tFVE_E_LOCKED_VOLUME                                                       Handle        = 0x80310000\n\tFVE_E_NOT_ENCRYPTED                                                       Handle        = 0x80310001\n\tFVE_E_NO_TPM_BIOS                                                         Handle        = 0x80310002\n\tFVE_E_NO_MBR_METRIC                                                       Handle        = 0x80310003\n\tFVE_E_NO_BOOTSECTOR_METRIC                                                Handle        = 0x80310004\n\tFVE_E_NO_BOOTMGR_METRIC                                                   Handle        = 0x80310005\n\tFVE_E_WRONG_BOOTMGR                                                       Handle        = 0x80310006\n\tFVE_E_SECURE_KEY_REQUIRED                                                 Handle        = 0x80310007\n\tFVE_E_NOT_ACTIVATED                                                       Handle        = 0x80310008\n\tFVE_E_ACTION_NOT_ALLOWED                                                  Handle        = 0x80310009\n\tFVE_E_AD_SCHEMA_NOT_INSTALLED                                             Handle        = 0x8031000A\n\tFVE_E_AD_INVALID_DATATYPE                                                 Handle        = 0x8031000B\n\tFVE_E_AD_INVALID_DATASIZE                                                 Handle        = 0x8031000C\n\tFVE_E_AD_NO_VALUES                                                        Handle        = 0x8031000D\n\tFVE_E_AD_ATTR_NOT_SET                                                     Handle        = 0x8031000E\n\tFVE_E_AD_GUID_NOT_FOUND                                                   Handle        = 0x8031000F\n\tFVE_E_BAD_INFORMATION                                                     Handle        = 0x80310010\n\tFVE_E_TOO_SMALL                                                           Handle        = 0x80310011\n\tFVE_E_SYSTEM_VOLUME                                                       Handle        = 0x80310012\n\tFVE_E_FAILED_WRONG_FS                                                     Handle        = 0x80310013\n\tFVE_E_BAD_PARTITION_SIZE                                                  Handle        = 0x80310014\n\tFVE_E_NOT_SUPPORTED                                                       Handle        = 0x80310015\n\tFVE_E_BAD_DATA                                                            Handle        = 0x80310016\n\tFVE_E_VOLUME_NOT_BOUND                                                    Handle        = 0x80310017\n\tFVE_E_TPM_NOT_OWNED                                                       Handle        = 0x80310018\n\tFVE_E_NOT_DATA_VOLUME                                                     Handle        = 0x80310019\n\tFVE_E_AD_INSUFFICIENT_BUFFER                                              Handle        = 0x8031001A\n\tFVE_E_CONV_READ                                                           Handle        = 0x8031001B\n\tFVE_E_CONV_WRITE                                                          Handle        = 0x8031001C\n\tFVE_E_KEY_REQUIRED                                                        Handle        = 0x8031001D\n\tFVE_E_CLUSTERING_NOT_SUPPORTED                                            Handle        = 0x8031001E\n\tFVE_E_VOLUME_BOUND_ALREADY                                                Handle        = 0x8031001F\n\tFVE_E_OS_NOT_PROTECTED                                                    Handle        = 0x80310020\n\tFVE_E_PROTECTION_DISABLED                                                 Handle        = 0x80310021\n\tFVE_E_RECOVERY_KEY_REQUIRED                                               Handle        = 0x80310022\n\tFVE_E_FOREIGN_VOLUME                                                      Handle        = 0x80310023\n\tFVE_E_OVERLAPPED_UPDATE                                                   Handle        = 0x80310024\n\tFVE_E_TPM_SRK_AUTH_NOT_ZERO                                               Handle        = 0x80310025\n\tFVE_E_FAILED_SECTOR_SIZE                                                  Handle        = 0x80310026\n\tFVE_E_FAILED_AUTHENTICATION                                               Handle        = 0x80310027\n\tFVE_E_NOT_OS_VOLUME                                                       Handle        = 0x80310028\n\tFVE_E_AUTOUNLOCK_ENABLED                                                  Handle        = 0x80310029\n\tFVE_E_WRONG_BOOTSECTOR                                                    Handle        = 0x8031002A\n\tFVE_E_WRONG_SYSTEM_FS                                                     Handle        = 0x8031002B\n\tFVE_E_POLICY_PASSWORD_REQUIRED                                            Handle        = 0x8031002C\n\tFVE_E_CANNOT_SET_FVEK_ENCRYPTED                                           Handle        = 0x8031002D\n\tFVE_E_CANNOT_ENCRYPT_NO_KEY                                               Handle        = 0x8031002E\n\tFVE_E_BOOTABLE_CDDVD                                                      Handle        = 0x80310030\n\tFVE_E_PROTECTOR_EXISTS                                                    Handle        = 0x80310031\n\tFVE_E_RELATIVE_PATH                                                       Handle        = 0x80310032\n\tFVE_E_PROTECTOR_NOT_FOUND                                                 Handle        = 0x80310033\n\tFVE_E_INVALID_KEY_FORMAT                                                  Handle        = 0x80310034\n\tFVE_E_INVALID_PASSWORD_FORMAT                                             Handle        = 0x80310035\n\tFVE_E_FIPS_RNG_CHECK_FAILED                                               Handle        = 0x80310036\n\tFVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD                                     Handle        = 0x80310037\n\tFVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT                                   Handle        = 0x80310038\n\tFVE_E_NOT_DECRYPTED                                                       Handle        = 0x80310039\n\tFVE_E_INVALID_PROTECTOR_TYPE                                              Handle        = 0x8031003A\n\tFVE_E_NO_PROTECTORS_TO_TEST                                               Handle        = 0x8031003B\n\tFVE_E_KEYFILE_NOT_FOUND                                                   Handle        = 0x8031003C\n\tFVE_E_KEYFILE_INVALID                                                     Handle        = 0x8031003D\n\tFVE_E_KEYFILE_NO_VMK                                                      Handle        = 0x8031003E\n\tFVE_E_TPM_DISABLED                                                        Handle        = 0x8031003F\n\tFVE_E_NOT_ALLOWED_IN_SAFE_MODE                                            Handle        = 0x80310040\n\tFVE_E_TPM_INVALID_PCR                                                     Handle        = 0x80310041\n\tFVE_E_TPM_NO_VMK                                                          Handle        = 0x80310042\n\tFVE_E_PIN_INVALID                                                         Handle        = 0x80310043\n\tFVE_E_AUTH_INVALID_APPLICATION                                            Handle        = 0x80310044\n\tFVE_E_AUTH_INVALID_CONFIG                                                 Handle        = 0x80310045\n\tFVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED                                 Handle        = 0x80310046\n\tFVE_E_FS_NOT_EXTENDED                                                     Handle        = 0x80310047\n\tFVE_E_FIRMWARE_TYPE_NOT_SUPPORTED                                         Handle        = 0x80310048\n\tFVE_E_NO_LICENSE                                                          Handle        = 0x80310049\n\tFVE_E_NOT_ON_STACK                                                        Handle        = 0x8031004A\n\tFVE_E_FS_MOUNTED                                                          Handle        = 0x8031004B\n\tFVE_E_TOKEN_NOT_IMPERSONATED                                              Handle        = 0x8031004C\n\tFVE_E_DRY_RUN_FAILED                                                      Handle        = 0x8031004D\n\tFVE_E_REBOOT_REQUIRED                                                     Handle        = 0x8031004E\n\tFVE_E_DEBUGGER_ENABLED                                                    Handle        = 0x8031004F\n\tFVE_E_RAW_ACCESS                                                          Handle        = 0x80310050\n\tFVE_E_RAW_BLOCKED                                                         Handle        = 0x80310051\n\tFVE_E_BCD_APPLICATIONS_PATH_INCORRECT                                     Handle        = 0x80310052\n\tFVE_E_NOT_ALLOWED_IN_VERSION                                              Handle        = 0x80310053\n\tFVE_E_NO_AUTOUNLOCK_MASTER_KEY                                            Handle        = 0x80310054\n\tFVE_E_MOR_FAILED                                                          Handle        = 0x80310055\n\tFVE_E_HIDDEN_VOLUME                                                       Handle        = 0x80310056\n\tFVE_E_TRANSIENT_STATE                                                     Handle        = 0x80310057\n\tFVE_E_PUBKEY_NOT_ALLOWED                                                  Handle        = 0x80310058\n\tFVE_E_VOLUME_HANDLE_OPEN                                                  Handle        = 0x80310059\n\tFVE_E_NO_FEATURE_LICENSE                                                  Handle        = 0x8031005A\n\tFVE_E_INVALID_STARTUP_OPTIONS                                             Handle        = 0x8031005B\n\tFVE_E_POLICY_RECOVERY_PASSWORD_NOT_ALLOWED                                Handle        = 0x8031005C\n\tFVE_E_POLICY_RECOVERY_PASSWORD_REQUIRED                                   Handle        = 0x8031005D\n\tFVE_E_POLICY_RECOVERY_KEY_NOT_ALLOWED                                     Handle        = 0x8031005E\n\tFVE_E_POLICY_RECOVERY_KEY_REQUIRED                                        Handle        = 0x8031005F\n\tFVE_E_POLICY_STARTUP_PIN_NOT_ALLOWED                                      Handle        = 0x80310060\n\tFVE_E_POLICY_STARTUP_PIN_REQUIRED                                         Handle        = 0x80310061\n\tFVE_E_POLICY_STARTUP_KEY_NOT_ALLOWED                                      Handle        = 0x80310062\n\tFVE_E_POLICY_STARTUP_KEY_REQUIRED                                         Handle        = 0x80310063\n\tFVE_E_POLICY_STARTUP_PIN_KEY_NOT_ALLOWED                                  Handle        = 0x80310064\n\tFVE_E_POLICY_STARTUP_PIN_KEY_REQUIRED                                     Handle        = 0x80310065\n\tFVE_E_POLICY_STARTUP_TPM_NOT_ALLOWED                                      Handle        = 0x80310066\n\tFVE_E_POLICY_STARTUP_TPM_REQUIRED                                         Handle        = 0x80310067\n\tFVE_E_POLICY_INVALID_PIN_LENGTH                                           Handle        = 0x80310068\n\tFVE_E_KEY_PROTECTOR_NOT_SUPPORTED                                         Handle        = 0x80310069\n\tFVE_E_POLICY_PASSPHRASE_NOT_ALLOWED                                       Handle        = 0x8031006A\n\tFVE_E_POLICY_PASSPHRASE_REQUIRED                                          Handle        = 0x8031006B\n\tFVE_E_FIPS_PREVENTS_PASSPHRASE                                            Handle        = 0x8031006C\n\tFVE_E_OS_VOLUME_PASSPHRASE_NOT_ALLOWED                                    Handle        = 0x8031006D\n\tFVE_E_INVALID_BITLOCKER_OID                                               Handle        = 0x8031006E\n\tFVE_E_VOLUME_TOO_SMALL                                                    Handle        = 0x8031006F\n\tFVE_E_DV_NOT_SUPPORTED_ON_FS                                              Handle        = 0x80310070\n\tFVE_E_DV_NOT_ALLOWED_BY_GP                                                Handle        = 0x80310071\n\tFVE_E_POLICY_USER_CERTIFICATE_NOT_ALLOWED                                 Handle        = 0x80310072\n\tFVE_E_POLICY_USER_CERTIFICATE_REQUIRED                                    Handle        = 0x80310073\n\tFVE_E_POLICY_USER_CERT_MUST_BE_HW                                         Handle        = 0x80310074\n\tFVE_E_POLICY_USER_CONFIGURE_FDV_AUTOUNLOCK_NOT_ALLOWED                    Handle        = 0x80310075\n\tFVE_E_POLICY_USER_CONFIGURE_RDV_AUTOUNLOCK_NOT_ALLOWED                    Handle        = 0x80310076\n\tFVE_E_POLICY_USER_CONFIGURE_RDV_NOT_ALLOWED                               Handle        = 0x80310077\n\tFVE_E_POLICY_USER_ENABLE_RDV_NOT_ALLOWED                                  Handle        = 0x80310078\n\tFVE_E_POLICY_USER_DISABLE_RDV_NOT_ALLOWED                                 Handle        = 0x80310079\n\tFVE_E_POLICY_INVALID_PASSPHRASE_LENGTH                                    Handle        = 0x80310080\n\tFVE_E_POLICY_PASSPHRASE_TOO_SIMPLE                                        Handle        = 0x80310081\n\tFVE_E_RECOVERY_PARTITION                                                  Handle        = 0x80310082\n\tFVE_E_POLICY_CONFLICT_FDV_RK_OFF_AUK_ON                                   Handle        = 0x80310083\n\tFVE_E_POLICY_CONFLICT_RDV_RK_OFF_AUK_ON                                   Handle        = 0x80310084\n\tFVE_E_NON_BITLOCKER_OID                                                   Handle        = 0x80310085\n\tFVE_E_POLICY_PROHIBITS_SELFSIGNED                                         Handle        = 0x80310086\n\tFVE_E_POLICY_CONFLICT_RO_AND_STARTUP_KEY_REQUIRED                         Handle        = 0x80310087\n\tFVE_E_CONV_RECOVERY_FAILED                                                Handle        = 0x80310088\n\tFVE_E_VIRTUALIZED_SPACE_TOO_BIG                                           Handle        = 0x80310089\n\tFVE_E_POLICY_CONFLICT_OSV_RP_OFF_ADB_ON                                   Handle        = 0x80310090\n\tFVE_E_POLICY_CONFLICT_FDV_RP_OFF_ADB_ON                                   Handle        = 0x80310091\n\tFVE_E_POLICY_CONFLICT_RDV_RP_OFF_ADB_ON                                   Handle        = 0x80310092\n\tFVE_E_NON_BITLOCKER_KU                                                    Handle        = 0x80310093\n\tFVE_E_PRIVATEKEY_AUTH_FAILED                                              Handle        = 0x80310094\n\tFVE_E_REMOVAL_OF_DRA_FAILED                                               Handle        = 0x80310095\n\tFVE_E_OPERATION_NOT_SUPPORTED_ON_VISTA_VOLUME                             Handle        = 0x80310096\n\tFVE_E_CANT_LOCK_AUTOUNLOCK_ENABLED_VOLUME                                 Handle        = 0x80310097\n\tFVE_E_FIPS_HASH_KDF_NOT_ALLOWED                                           Handle        = 0x80310098\n\tFVE_E_ENH_PIN_INVALID                                                     Handle        = 0x80310099\n\tFVE_E_INVALID_PIN_CHARS                                                   Handle        = 0x8031009A\n\tFVE_E_INVALID_DATUM_TYPE                                                  Handle        = 0x8031009B\n\tFVE_E_EFI_ONLY                                                            Handle        = 0x8031009C\n\tFVE_E_MULTIPLE_NKP_CERTS                                                  Handle        = 0x8031009D\n\tFVE_E_REMOVAL_OF_NKP_FAILED                                               Handle        = 0x8031009E\n\tFVE_E_INVALID_NKP_CERT                                                    Handle        = 0x8031009F\n\tFVE_E_NO_EXISTING_PIN                                                     Handle        = 0x803100A0\n\tFVE_E_PROTECTOR_CHANGE_PIN_MISMATCH                                       Handle        = 0x803100A1\n\tFVE_E_PIN_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED                         Handle        = 0x803100A2\n\tFVE_E_PROTECTOR_CHANGE_MAX_PIN_CHANGE_ATTEMPTS_REACHED                    Handle        = 0x803100A3\n\tFVE_E_POLICY_PASSPHRASE_REQUIRES_ASCII                                    Handle        = 0x803100A4\n\tFVE_E_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE                           Handle        = 0x803100A5\n\tFVE_E_WIPE_NOT_ALLOWED_ON_TP_STORAGE                                      Handle        = 0x803100A6\n\tFVE_E_KEY_LENGTH_NOT_SUPPORTED_BY_EDRIVE                                  Handle        = 0x803100A7\n\tFVE_E_NO_EXISTING_PASSPHRASE                                              Handle        = 0x803100A8\n\tFVE_E_PROTECTOR_CHANGE_PASSPHRASE_MISMATCH                                Handle        = 0x803100A9\n\tFVE_E_PASSPHRASE_TOO_LONG                                                 Handle        = 0x803100AA\n\tFVE_E_NO_PASSPHRASE_WITH_TPM                                              Handle        = 0x803100AB\n\tFVE_E_NO_TPM_WITH_PASSPHRASE                                              Handle        = 0x803100AC\n\tFVE_E_NOT_ALLOWED_ON_CSV_STACK                                            Handle        = 0x803100AD\n\tFVE_E_NOT_ALLOWED_ON_CLUSTER                                              Handle        = 0x803100AE\n\tFVE_E_EDRIVE_NO_FAILOVER_TO_SW                                            Handle        = 0x803100AF\n\tFVE_E_EDRIVE_BAND_IN_USE                                                  Handle        = 0x803100B0\n\tFVE_E_EDRIVE_DISALLOWED_BY_GP                                             Handle        = 0x803100B1\n\tFVE_E_EDRIVE_INCOMPATIBLE_VOLUME                                          Handle        = 0x803100B2\n\tFVE_E_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING                             Handle        = 0x803100B3\n\tFVE_E_EDRIVE_DV_NOT_SUPPORTED                                             Handle        = 0x803100B4\n\tFVE_E_NO_PREBOOT_KEYBOARD_DETECTED                                        Handle        = 0x803100B5\n\tFVE_E_NO_PREBOOT_KEYBOARD_OR_WINRE_DETECTED                               Handle        = 0x803100B6\n\tFVE_E_POLICY_REQUIRES_STARTUP_PIN_ON_TOUCH_DEVICE                         Handle        = 0x803100B7\n\tFVE_E_POLICY_REQUIRES_RECOVERY_PASSWORD_ON_TOUCH_DEVICE                   Handle        = 0x803100B8\n\tFVE_E_WIPE_CANCEL_NOT_APPLICABLE                                          Handle        = 0x803100B9\n\tFVE_E_SECUREBOOT_DISABLED                                                 Handle        = 0x803100BA\n\tFVE_E_SECUREBOOT_CONFIGURATION_INVALID                                    Handle        = 0x803100BB\n\tFVE_E_EDRIVE_DRY_RUN_FAILED                                               Handle        = 0x803100BC\n\tFVE_E_SHADOW_COPY_PRESENT                                                 Handle        = 0x803100BD\n\tFVE_E_POLICY_INVALID_ENHANCED_BCD_SETTINGS                                Handle        = 0x803100BE\n\tFVE_E_EDRIVE_INCOMPATIBLE_FIRMWARE                                        Handle        = 0x803100BF\n\tFVE_E_PROTECTOR_CHANGE_MAX_PASSPHRASE_CHANGE_ATTEMPTS_REACHED             Handle        = 0x803100C0\n\tFVE_E_PASSPHRASE_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED                  Handle        = 0x803100C1\n\tFVE_E_LIVEID_ACCOUNT_SUSPENDED                                            Handle        = 0x803100C2\n\tFVE_E_LIVEID_ACCOUNT_BLOCKED                                              Handle        = 0x803100C3\n\tFVE_E_NOT_PROVISIONED_ON_ALL_VOLUMES                                      Handle        = 0x803100C4\n\tFVE_E_DE_FIXED_DATA_NOT_SUPPORTED                                         Handle        = 0x803100C5\n\tFVE_E_DE_HARDWARE_NOT_COMPLIANT                                           Handle        = 0x803100C6\n\tFVE_E_DE_WINRE_NOT_CONFIGURED                                             Handle        = 0x803100C7\n\tFVE_E_DE_PROTECTION_SUSPENDED                                             Handle        = 0x803100C8\n\tFVE_E_DE_OS_VOLUME_NOT_PROTECTED                                          Handle        = 0x803100C9\n\tFVE_E_DE_DEVICE_LOCKEDOUT                                                 Handle        = 0x803100CA\n\tFVE_E_DE_PROTECTION_NOT_YET_ENABLED                                       Handle        = 0x803100CB\n\tFVE_E_INVALID_PIN_CHARS_DETAILED                                          Handle        = 0x803100CC\n\tFVE_E_DEVICE_LOCKOUT_COUNTER_UNAVAILABLE                                  Handle        = 0x803100CD\n\tFVE_E_DEVICELOCKOUT_COUNTER_MISMATCH                                      Handle        = 0x803100CE\n\tFVE_E_BUFFER_TOO_LARGE                                                    Handle        = 0x803100CF\n\tFVE_E_NO_SUCH_CAPABILITY_ON_TARGET                                        Handle        = 0x803100D0\n\tFVE_E_DE_PREVENTED_FOR_OS                                                 Handle        = 0x803100D1\n\tFVE_E_DE_VOLUME_OPTED_OUT                                                 Handle        = 0x803100D2\n\tFVE_E_DE_VOLUME_NOT_SUPPORTED                                             Handle        = 0x803100D3\n\tFVE_E_EOW_NOT_SUPPORTED_IN_VERSION                                        Handle        = 0x803100D4\n\tFVE_E_ADBACKUP_NOT_ENABLED                                                Handle        = 0x803100D5\n\tFVE_E_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT                                  Handle        = 0x803100D6\n\tFVE_E_NOT_DE_VOLUME                                                       Handle        = 0x803100D7\n\tFVE_E_PROTECTION_CANNOT_BE_DISABLED                                       Handle        = 0x803100D8\n\tFVE_E_OSV_KSR_NOT_ALLOWED                                                 Handle        = 0x803100D9\n\tFWP_E_CALLOUT_NOT_FOUND                                                   Handle        = 0x80320001\n\tFWP_E_CONDITION_NOT_FOUND                                                 Handle        = 0x80320002\n\tFWP_E_FILTER_NOT_FOUND                                                    Handle        = 0x80320003\n\tFWP_E_LAYER_NOT_FOUND                                                     Handle        = 0x80320004\n\tFWP_E_PROVIDER_NOT_FOUND                                                  Handle        = 0x80320005\n\tFWP_E_PROVIDER_CONTEXT_NOT_FOUND                                          Handle        = 0x80320006\n\tFWP_E_SUBLAYER_NOT_FOUND                                                  Handle        = 0x80320007\n\tFWP_E_NOT_FOUND                                                           Handle        = 0x80320008\n\tFWP_E_ALREADY_EXISTS                                                      Handle        = 0x80320009\n\tFWP_E_IN_USE                                                              Handle        = 0x8032000A\n\tFWP_E_DYNAMIC_SESSION_IN_PROGRESS                                         Handle        = 0x8032000B\n\tFWP_E_WRONG_SESSION                                                       Handle        = 0x8032000C\n\tFWP_E_NO_TXN_IN_PROGRESS                                                  Handle        = 0x8032000D\n\tFWP_E_TXN_IN_PROGRESS                                                     Handle        = 0x8032000E\n\tFWP_E_TXN_ABORTED                                                         Handle        = 0x8032000F\n\tFWP_E_SESSION_ABORTED                                                     Handle        = 0x80320010\n\tFWP_E_INCOMPATIBLE_TXN                                                    Handle        = 0x80320011\n\tFWP_E_TIMEOUT                                                             Handle        = 0x80320012\n\tFWP_E_NET_EVENTS_DISABLED                                                 Handle        = 0x80320013\n\tFWP_E_INCOMPATIBLE_LAYER                                                  Handle        = 0x80320014\n\tFWP_E_KM_CLIENTS_ONLY                                                     Handle        = 0x80320015\n\tFWP_E_LIFETIME_MISMATCH                                                   Handle        = 0x80320016\n\tFWP_E_BUILTIN_OBJECT                                                      Handle        = 0x80320017\n\tFWP_E_TOO_MANY_CALLOUTS                                                   Handle        = 0x80320018\n\tFWP_E_NOTIFICATION_DROPPED                                                Handle        = 0x80320019\n\tFWP_E_TRAFFIC_MISMATCH                                                    Handle        = 0x8032001A\n\tFWP_E_INCOMPATIBLE_SA_STATE                                               Handle        = 0x8032001B\n\tFWP_E_NULL_POINTER                                                        Handle        = 0x8032001C\n\tFWP_E_INVALID_ENUMERATOR                                                  Handle        = 0x8032001D\n\tFWP_E_INVALID_FLAGS                                                       Handle        = 0x8032001E\n\tFWP_E_INVALID_NET_MASK                                                    Handle        = 0x8032001F\n\tFWP_E_INVALID_RANGE                                                       Handle        = 0x80320020\n\tFWP_E_INVALID_INTERVAL                                                    Handle        = 0x80320021\n\tFWP_E_ZERO_LENGTH_ARRAY                                                   Handle        = 0x80320022\n\tFWP_E_NULL_DISPLAY_NAME                                                   Handle        = 0x80320023\n\tFWP_E_INVALID_ACTION_TYPE                                                 Handle        = 0x80320024\n\tFWP_E_INVALID_WEIGHT                                                      Handle        = 0x80320025\n\tFWP_E_MATCH_TYPE_MISMATCH                                                 Handle        = 0x80320026\n\tFWP_E_TYPE_MISMATCH                                                       Handle        = 0x80320027\n\tFWP_E_OUT_OF_BOUNDS                                                       Handle        = 0x80320028\n\tFWP_E_RESERVED                                                            Handle        = 0x80320029\n\tFWP_E_DUPLICATE_CONDITION                                                 Handle        = 0x8032002A\n\tFWP_E_DUPLICATE_KEYMOD                                                    Handle        = 0x8032002B\n\tFWP_E_ACTION_INCOMPATIBLE_WITH_LAYER                                      Handle        = 0x8032002C\n\tFWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER                                   Handle        = 0x8032002D\n\tFWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER                                     Handle        = 0x8032002E\n\tFWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT                                   Handle        = 0x8032002F\n\tFWP_E_INCOMPATIBLE_AUTH_METHOD                                            Handle        = 0x80320030\n\tFWP_E_INCOMPATIBLE_DH_GROUP                                               Handle        = 0x80320031\n\tFWP_E_EM_NOT_SUPPORTED                                                    Handle        = 0x80320032\n\tFWP_E_NEVER_MATCH                                                         Handle        = 0x80320033\n\tFWP_E_PROVIDER_CONTEXT_MISMATCH                                           Handle        = 0x80320034\n\tFWP_E_INVALID_PARAMETER                                                   Handle        = 0x80320035\n\tFWP_E_TOO_MANY_SUBLAYERS                                                  Handle        = 0x80320036\n\tFWP_E_CALLOUT_NOTIFICATION_FAILED                                         Handle        = 0x80320037\n\tFWP_E_INVALID_AUTH_TRANSFORM                                              Handle        = 0x80320038\n\tFWP_E_INVALID_CIPHER_TRANSFORM                                            Handle        = 0x80320039\n\tFWP_E_INCOMPATIBLE_CIPHER_TRANSFORM                                       Handle        = 0x8032003A\n\tFWP_E_INVALID_TRANSFORM_COMBINATION                                       Handle        = 0x8032003B\n\tFWP_E_DUPLICATE_AUTH_METHOD                                               Handle        = 0x8032003C\n\tFWP_E_INVALID_TUNNEL_ENDPOINT                                             Handle        = 0x8032003D\n\tFWP_E_L2_DRIVER_NOT_READY                                                 Handle        = 0x8032003E\n\tFWP_E_KEY_DICTATOR_ALREADY_REGISTERED                                     Handle        = 0x8032003F\n\tFWP_E_KEY_DICTATION_INVALID_KEYING_MATERIAL                               Handle        = 0x80320040\n\tFWP_E_CONNECTIONS_DISABLED                                                Handle        = 0x80320041\n\tFWP_E_INVALID_DNS_NAME                                                    Handle        = 0x80320042\n\tFWP_E_STILL_ON                                                            Handle        = 0x80320043\n\tFWP_E_IKEEXT_NOT_RUNNING                                                  Handle        = 0x80320044\n\tFWP_E_DROP_NOICMP                                                         Handle        = 0x80320104\n\tWS_S_ASYNC                                                                Handle        = 0x003D0000\n\tWS_S_END                                                                  Handle        = 0x003D0001\n\tWS_E_INVALID_FORMAT                                                       Handle        = 0x803D0000\n\tWS_E_OBJECT_FAULTED                                                       Handle        = 0x803D0001\n\tWS_E_NUMERIC_OVERFLOW                                                     Handle        = 0x803D0002\n\tWS_E_INVALID_OPERATION                                                    Handle        = 0x803D0003\n\tWS_E_OPERATION_ABORTED                                                    Handle        = 0x803D0004\n\tWS_E_ENDPOINT_ACCESS_DENIED                                               Handle        = 0x803D0005\n\tWS_E_OPERATION_TIMED_OUT                                                  Handle        = 0x803D0006\n\tWS_E_OPERATION_ABANDONED                                                  Handle        = 0x803D0007\n\tWS_E_QUOTA_EXCEEDED                                                       Handle        = 0x803D0008\n\tWS_E_NO_TRANSLATION_AVAILABLE                                             Handle        = 0x803D0009\n\tWS_E_SECURITY_VERIFICATION_FAILURE                                        Handle        = 0x803D000A\n\tWS_E_ADDRESS_IN_USE                                                       Handle        = 0x803D000B\n\tWS_E_ADDRESS_NOT_AVAILABLE                                                Handle        = 0x803D000C\n\tWS_E_ENDPOINT_NOT_FOUND                                                   Handle        = 0x803D000D\n\tWS_E_ENDPOINT_NOT_AVAILABLE                                               Handle        = 0x803D000E\n\tWS_E_ENDPOINT_FAILURE                                                     Handle        = 0x803D000F\n\tWS_E_ENDPOINT_UNREACHABLE                                                 Handle        = 0x803D0010\n\tWS_E_ENDPOINT_ACTION_NOT_SUPPORTED                                        Handle        = 0x803D0011\n\tWS_E_ENDPOINT_TOO_BUSY                                                    Handle        = 0x803D0012\n\tWS_E_ENDPOINT_FAULT_RECEIVED                                              Handle        = 0x803D0013\n\tWS_E_ENDPOINT_DISCONNECTED                                                Handle        = 0x803D0014\n\tWS_E_PROXY_FAILURE                                                        Handle        = 0x803D0015\n\tWS_E_PROXY_ACCESS_DENIED                                                  Handle        = 0x803D0016\n\tWS_E_NOT_SUPPORTED                                                        Handle        = 0x803D0017\n\tWS_E_PROXY_REQUIRES_BASIC_AUTH                                            Handle        = 0x803D0018\n\tWS_E_PROXY_REQUIRES_DIGEST_AUTH                                           Handle        = 0x803D0019\n\tWS_E_PROXY_REQUIRES_NTLM_AUTH                                             Handle        = 0x803D001A\n\tWS_E_PROXY_REQUIRES_NEGOTIATE_AUTH                                        Handle        = 0x803D001B\n\tWS_E_SERVER_REQUIRES_BASIC_AUTH                                           Handle        = 0x803D001C\n\tWS_E_SERVER_REQUIRES_DIGEST_AUTH                                          Handle        = 0x803D001D\n\tWS_E_SERVER_REQUIRES_NTLM_AUTH                                            Handle        = 0x803D001E\n\tWS_E_SERVER_REQUIRES_NEGOTIATE_AUTH                                       Handle        = 0x803D001F\n\tWS_E_INVALID_ENDPOINT_URL                                                 Handle        = 0x803D0020\n\tWS_E_OTHER                                                                Handle        = 0x803D0021\n\tWS_E_SECURITY_TOKEN_EXPIRED                                               Handle        = 0x803D0022\n\tWS_E_SECURITY_SYSTEM_FAILURE                                              Handle        = 0x803D0023\n\tERROR_NDIS_INTERFACE_CLOSING                                              syscall.Errno = 0x80340002\n\tERROR_NDIS_BAD_VERSION                                                    syscall.Errno = 0x80340004\n\tERROR_NDIS_BAD_CHARACTERISTICS                                            syscall.Errno = 0x80340005\n\tERROR_NDIS_ADAPTER_NOT_FOUND                                              syscall.Errno = 0x80340006\n\tERROR_NDIS_OPEN_FAILED                                                    syscall.Errno = 0x80340007\n\tERROR_NDIS_DEVICE_FAILED                                                  syscall.Errno = 0x80340008\n\tERROR_NDIS_MULTICAST_FULL                                                 syscall.Errno = 0x80340009\n\tERROR_NDIS_MULTICAST_EXISTS                                               syscall.Errno = 0x8034000A\n\tERROR_NDIS_MULTICAST_NOT_FOUND                                            syscall.Errno = 0x8034000B\n\tERROR_NDIS_REQUEST_ABORTED                                                syscall.Errno = 0x8034000C\n\tERROR_NDIS_RESET_IN_PROGRESS                                              syscall.Errno = 0x8034000D\n\tERROR_NDIS_NOT_SUPPORTED                                                  syscall.Errno = 0x803400BB\n\tERROR_NDIS_INVALID_PACKET                                                 syscall.Errno = 0x8034000F\n\tERROR_NDIS_ADAPTER_NOT_READY                                              syscall.Errno = 0x80340011\n\tERROR_NDIS_INVALID_LENGTH                                                 syscall.Errno = 0x80340014\n\tERROR_NDIS_INVALID_DATA                                                   syscall.Errno = 0x80340015\n\tERROR_NDIS_BUFFER_TOO_SHORT                                               syscall.Errno = 0x80340016\n\tERROR_NDIS_INVALID_OID                                                    syscall.Errno = 0x80340017\n\tERROR_NDIS_ADAPTER_REMOVED                                                syscall.Errno = 0x80340018\n\tERROR_NDIS_UNSUPPORTED_MEDIA                                              syscall.Errno = 0x80340019\n\tERROR_NDIS_GROUP_ADDRESS_IN_USE                                           syscall.Errno = 0x8034001A\n\tERROR_NDIS_FILE_NOT_FOUND                                                 syscall.Errno = 0x8034001B\n\tERROR_NDIS_ERROR_READING_FILE                                             syscall.Errno = 0x8034001C\n\tERROR_NDIS_ALREADY_MAPPED                                                 syscall.Errno = 0x8034001D\n\tERROR_NDIS_RESOURCE_CONFLICT                                              syscall.Errno = 0x8034001E\n\tERROR_NDIS_MEDIA_DISCONNECTED                                             syscall.Errno = 0x8034001F\n\tERROR_NDIS_INVALID_ADDRESS                                                syscall.Errno = 0x80340022\n\tERROR_NDIS_INVALID_DEVICE_REQUEST                                         syscall.Errno = 0x80340010\n\tERROR_NDIS_PAUSED                                                         syscall.Errno = 0x8034002A\n\tERROR_NDIS_INTERFACE_NOT_FOUND                                            syscall.Errno = 0x8034002B\n\tERROR_NDIS_UNSUPPORTED_REVISION                                           syscall.Errno = 0x8034002C\n\tERROR_NDIS_INVALID_PORT                                                   syscall.Errno = 0x8034002D\n\tERROR_NDIS_INVALID_PORT_STATE                                             syscall.Errno = 0x8034002E\n\tERROR_NDIS_LOW_POWER_STATE                                                syscall.Errno = 0x8034002F\n\tERROR_NDIS_REINIT_REQUIRED                                                syscall.Errno = 0x80340030\n\tERROR_NDIS_NO_QUEUES                                                      syscall.Errno = 0x80340031\n\tERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED                                      syscall.Errno = 0x80342000\n\tERROR_NDIS_DOT11_MEDIA_IN_USE                                             syscall.Errno = 0x80342001\n\tERROR_NDIS_DOT11_POWER_STATE_INVALID                                      syscall.Errno = 0x80342002\n\tERROR_NDIS_PM_WOL_PATTERN_LIST_FULL                                       syscall.Errno = 0x80342003\n\tERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL                                  syscall.Errno = 0x80342004\n\tERROR_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE                       syscall.Errno = 0x80342005\n\tERROR_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE                          syscall.Errno = 0x80342006\n\tERROR_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED                                   syscall.Errno = 0x80342007\n\tERROR_NDIS_DOT11_AP_BAND_NOT_ALLOWED                                      syscall.Errno = 0x80342008\n\tERROR_NDIS_INDICATION_REQUIRED                                            syscall.Errno = 0x00340001\n\tERROR_NDIS_OFFLOAD_POLICY                                                 syscall.Errno = 0xC034100F\n\tERROR_NDIS_OFFLOAD_CONNECTION_REJECTED                                    syscall.Errno = 0xC0341012\n\tERROR_NDIS_OFFLOAD_PATH_REJECTED                                          syscall.Errno = 0xC0341013\n\tERROR_HV_INVALID_HYPERCALL_CODE                                           syscall.Errno = 0xC0350002\n\tERROR_HV_INVALID_HYPERCALL_INPUT                                          syscall.Errno = 0xC0350003\n\tERROR_HV_INVALID_ALIGNMENT                                                syscall.Errno = 0xC0350004\n\tERROR_HV_INVALID_PARAMETER                                                syscall.Errno = 0xC0350005\n\tERROR_HV_ACCESS_DENIED                                                    syscall.Errno = 0xC0350006\n\tERROR_HV_INVALID_PARTITION_STATE                                          syscall.Errno = 0xC0350007\n\tERROR_HV_OPERATION_DENIED                                                 syscall.Errno = 0xC0350008\n\tERROR_HV_UNKNOWN_PROPERTY                                                 syscall.Errno = 0xC0350009\n\tERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE                                      syscall.Errno = 0xC035000A\n\tERROR_HV_INSUFFICIENT_MEMORY                                              syscall.Errno = 0xC035000B\n\tERROR_HV_PARTITION_TOO_DEEP                                               syscall.Errno = 0xC035000C\n\tERROR_HV_INVALID_PARTITION_ID                                             syscall.Errno = 0xC035000D\n\tERROR_HV_INVALID_VP_INDEX                                                 syscall.Errno = 0xC035000E\n\tERROR_HV_INVALID_PORT_ID                                                  syscall.Errno = 0xC0350011\n\tERROR_HV_INVALID_CONNECTION_ID                                            syscall.Errno = 0xC0350012\n\tERROR_HV_INSUFFICIENT_BUFFERS                                             syscall.Errno = 0xC0350013\n\tERROR_HV_NOT_ACKNOWLEDGED                                                 syscall.Errno = 0xC0350014\n\tERROR_HV_INVALID_VP_STATE                                                 syscall.Errno = 0xC0350015\n\tERROR_HV_ACKNOWLEDGED                                                     syscall.Errno = 0xC0350016\n\tERROR_HV_INVALID_SAVE_RESTORE_STATE                                       syscall.Errno = 0xC0350017\n\tERROR_HV_INVALID_SYNIC_STATE                                              syscall.Errno = 0xC0350018\n\tERROR_HV_OBJECT_IN_USE                                                    syscall.Errno = 0xC0350019\n\tERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO                                    syscall.Errno = 0xC035001A\n\tERROR_HV_NO_DATA                                                          syscall.Errno = 0xC035001B\n\tERROR_HV_INACTIVE                                                         syscall.Errno = 0xC035001C\n\tERROR_HV_NO_RESOURCES                                                     syscall.Errno = 0xC035001D\n\tERROR_HV_FEATURE_UNAVAILABLE                                              syscall.Errno = 0xC035001E\n\tERROR_HV_INSUFFICIENT_BUFFER                                              syscall.Errno = 0xC0350033\n\tERROR_HV_INSUFFICIENT_DEVICE_DOMAINS                                      syscall.Errno = 0xC0350038\n\tERROR_HV_CPUID_FEATURE_VALIDATION                                         syscall.Errno = 0xC035003C\n\tERROR_HV_CPUID_XSAVE_FEATURE_VALIDATION                                   syscall.Errno = 0xC035003D\n\tERROR_HV_PROCESSOR_STARTUP_TIMEOUT                                        syscall.Errno = 0xC035003E\n\tERROR_HV_SMX_ENABLED                                                      syscall.Errno = 0xC035003F\n\tERROR_HV_INVALID_LP_INDEX                                                 syscall.Errno = 0xC0350041\n\tERROR_HV_INVALID_REGISTER_VALUE                                           syscall.Errno = 0xC0350050\n\tERROR_HV_INVALID_VTL_STATE                                                syscall.Errno = 0xC0350051\n\tERROR_HV_NX_NOT_DETECTED                                                  syscall.Errno = 0xC0350055\n\tERROR_HV_INVALID_DEVICE_ID                                                syscall.Errno = 0xC0350057\n\tERROR_HV_INVALID_DEVICE_STATE                                             syscall.Errno = 0xC0350058\n\tERROR_HV_PENDING_PAGE_REQUESTS                                            syscall.Errno = 0x00350059\n\tERROR_HV_PAGE_REQUEST_INVALID                                             syscall.Errno = 0xC0350060\n\tERROR_HV_INVALID_CPU_GROUP_ID                                             syscall.Errno = 0xC035006F\n\tERROR_HV_INVALID_CPU_GROUP_STATE                                          syscall.Errno = 0xC0350070\n\tERROR_HV_OPERATION_FAILED                                                 syscall.Errno = 0xC0350071\n\tERROR_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE                              syscall.Errno = 0xC0350072\n\tERROR_HV_INSUFFICIENT_ROOT_MEMORY                                         syscall.Errno = 0xC0350073\n\tERROR_HV_NOT_PRESENT                                                      syscall.Errno = 0xC0351000\n\tERROR_VID_DUPLICATE_HANDLER                                               syscall.Errno = 0xC0370001\n\tERROR_VID_TOO_MANY_HANDLERS                                               syscall.Errno = 0xC0370002\n\tERROR_VID_QUEUE_FULL                                                      syscall.Errno = 0xC0370003\n\tERROR_VID_HANDLER_NOT_PRESENT                                             syscall.Errno = 0xC0370004\n\tERROR_VID_INVALID_OBJECT_NAME                                             syscall.Errno = 0xC0370005\n\tERROR_VID_PARTITION_NAME_TOO_LONG                                         syscall.Errno = 0xC0370006\n\tERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG                                     syscall.Errno = 0xC0370007\n\tERROR_VID_PARTITION_ALREADY_EXISTS                                        syscall.Errno = 0xC0370008\n\tERROR_VID_PARTITION_DOES_NOT_EXIST                                        syscall.Errno = 0xC0370009\n\tERROR_VID_PARTITION_NAME_NOT_FOUND                                        syscall.Errno = 0xC037000A\n\tERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS                                    syscall.Errno = 0xC037000B\n\tERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT                                    syscall.Errno = 0xC037000C\n\tERROR_VID_MB_STILL_REFERENCED                                             syscall.Errno = 0xC037000D\n\tERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED                                    syscall.Errno = 0xC037000E\n\tERROR_VID_INVALID_NUMA_SETTINGS                                           syscall.Errno = 0xC037000F\n\tERROR_VID_INVALID_NUMA_NODE_INDEX                                         syscall.Errno = 0xC0370010\n\tERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED                           syscall.Errno = 0xC0370011\n\tERROR_VID_INVALID_MEMORY_BLOCK_HANDLE                                     syscall.Errno = 0xC0370012\n\tERROR_VID_PAGE_RANGE_OVERFLOW                                             syscall.Errno = 0xC0370013\n\tERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE                                    syscall.Errno = 0xC0370014\n\tERROR_VID_INVALID_GPA_RANGE_HANDLE                                        syscall.Errno = 0xC0370015\n\tERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE                              syscall.Errno = 0xC0370016\n\tERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED                                syscall.Errno = 0xC0370017\n\tERROR_VID_INVALID_PPM_HANDLE                                              syscall.Errno = 0xC0370018\n\tERROR_VID_MBPS_ARE_LOCKED                                                 syscall.Errno = 0xC0370019\n\tERROR_VID_MESSAGE_QUEUE_CLOSED                                            syscall.Errno = 0xC037001A\n\tERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED                                syscall.Errno = 0xC037001B\n\tERROR_VID_STOP_PENDING                                                    syscall.Errno = 0xC037001C\n\tERROR_VID_INVALID_PROCESSOR_STATE                                         syscall.Errno = 0xC037001D\n\tERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT                                 syscall.Errno = 0xC037001E\n\tERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED                                syscall.Errno = 0xC037001F\n\tERROR_VID_MB_PROPERTY_ALREADY_SET_RESET                                   syscall.Errno = 0xC0370020\n\tERROR_VID_MMIO_RANGE_DESTROYED                                            syscall.Errno = 0xC0370021\n\tERROR_VID_INVALID_CHILD_GPA_PAGE_SET                                      syscall.Errno = 0xC0370022\n\tERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED                                  syscall.Errno = 0xC0370023\n\tERROR_VID_RESERVE_PAGE_SET_TOO_SMALL                                      syscall.Errno = 0xC0370024\n\tERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE                          syscall.Errno = 0xC0370025\n\tERROR_VID_MBP_COUNT_EXCEEDED_LIMIT                                        syscall.Errno = 0xC0370026\n\tERROR_VID_SAVED_STATE_CORRUPT                                             syscall.Errno = 0xC0370027\n\tERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM                                   syscall.Errno = 0xC0370028\n\tERROR_VID_SAVED_STATE_INCOMPATIBLE                                        syscall.Errno = 0xC0370029\n\tERROR_VID_VTL_ACCESS_DENIED                                               syscall.Errno = 0xC037002A\n\tERROR_VMCOMPUTE_TERMINATED_DURING_START                                   syscall.Errno = 0xC0370100\n\tERROR_VMCOMPUTE_IMAGE_MISMATCH                                            syscall.Errno = 0xC0370101\n\tERROR_VMCOMPUTE_HYPERV_NOT_INSTALLED                                      syscall.Errno = 0xC0370102\n\tERROR_VMCOMPUTE_OPERATION_PENDING                                         syscall.Errno = 0xC0370103\n\tERROR_VMCOMPUTE_TOO_MANY_NOTIFICATIONS                                    syscall.Errno = 0xC0370104\n\tERROR_VMCOMPUTE_INVALID_STATE                                             syscall.Errno = 0xC0370105\n\tERROR_VMCOMPUTE_UNEXPECTED_EXIT                                           syscall.Errno = 0xC0370106\n\tERROR_VMCOMPUTE_TERMINATED                                                syscall.Errno = 0xC0370107\n\tERROR_VMCOMPUTE_CONNECT_FAILED                                            syscall.Errno = 0xC0370108\n\tERROR_VMCOMPUTE_TIMEOUT                                                   syscall.Errno = 0xC0370109\n\tERROR_VMCOMPUTE_CONNECTION_CLOSED                                         syscall.Errno = 0xC037010A\n\tERROR_VMCOMPUTE_UNKNOWN_MESSAGE                                           syscall.Errno = 0xC037010B\n\tERROR_VMCOMPUTE_UNSUPPORTED_PROTOCOL_VERSION                              syscall.Errno = 0xC037010C\n\tERROR_VMCOMPUTE_INVALID_JSON                                              syscall.Errno = 0xC037010D\n\tERROR_VMCOMPUTE_SYSTEM_NOT_FOUND                                          syscall.Errno = 0xC037010E\n\tERROR_VMCOMPUTE_SYSTEM_ALREADY_EXISTS                                     syscall.Errno = 0xC037010F\n\tERROR_VMCOMPUTE_SYSTEM_ALREADY_STOPPED                                    syscall.Errno = 0xC0370110\n\tERROR_VMCOMPUTE_PROTOCOL_ERROR                                            syscall.Errno = 0xC0370111\n\tERROR_VMCOMPUTE_INVALID_LAYER                                             syscall.Errno = 0xC0370112\n\tERROR_VMCOMPUTE_WINDOWS_INSIDER_REQUIRED                                  syscall.Errno = 0xC0370113\n\tHCS_E_TERMINATED_DURING_START                                             Handle        = 0x80370100\n\tHCS_E_IMAGE_MISMATCH                                                      Handle        = 0x80370101\n\tHCS_E_HYPERV_NOT_INSTALLED                                                Handle        = 0x80370102\n\tHCS_E_INVALID_STATE                                                       Handle        = 0x80370105\n\tHCS_E_UNEXPECTED_EXIT                                                     Handle        = 0x80370106\n\tHCS_E_TERMINATED                                                          Handle        = 0x80370107\n\tHCS_E_CONNECT_FAILED                                                      Handle        = 0x80370108\n\tHCS_E_CONNECTION_TIMEOUT                                                  Handle        = 0x80370109\n\tHCS_E_CONNECTION_CLOSED                                                   Handle        = 0x8037010A\n\tHCS_E_UNKNOWN_MESSAGE                                                     Handle        = 0x8037010B\n\tHCS_E_UNSUPPORTED_PROTOCOL_VERSION                                        Handle        = 0x8037010C\n\tHCS_E_INVALID_JSON                                                        Handle        = 0x8037010D\n\tHCS_E_SYSTEM_NOT_FOUND                                                    Handle        = 0x8037010E\n\tHCS_E_SYSTEM_ALREADY_EXISTS                                               Handle        = 0x8037010F\n\tHCS_E_SYSTEM_ALREADY_STOPPED                                              Handle        = 0x80370110\n\tHCS_E_PROTOCOL_ERROR                                                      Handle        = 0x80370111\n\tHCS_E_INVALID_LAYER                                                       Handle        = 0x80370112\n\tHCS_E_WINDOWS_INSIDER_REQUIRED                                            Handle        = 0x80370113\n\tHCS_E_SERVICE_NOT_AVAILABLE                                               Handle        = 0x80370114\n\tHCS_E_OPERATION_NOT_STARTED                                               Handle        = 0x80370115\n\tHCS_E_OPERATION_ALREADY_STARTED                                           Handle        = 0x80370116\n\tHCS_E_OPERATION_PENDING                                                   Handle        = 0x80370117\n\tHCS_E_OPERATION_TIMEOUT                                                   Handle        = 0x80370118\n\tHCS_E_OPERATION_SYSTEM_CALLBACK_ALREADY_SET                               Handle        = 0x80370119\n\tHCS_E_OPERATION_RESULT_ALLOCATION_FAILED                                  Handle        = 0x8037011A\n\tHCS_E_ACCESS_DENIED                                                       Handle        = 0x8037011B\n\tHCS_E_GUEST_CRITICAL_ERROR                                                Handle        = 0x8037011C\n\tERROR_VNET_VIRTUAL_SWITCH_NAME_NOT_FOUND                                  syscall.Errno = 0xC0370200\n\tERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED                               syscall.Errno = 0x80370001\n\tWHV_E_UNKNOWN_CAPABILITY                                                  Handle        = 0x80370300\n\tWHV_E_INSUFFICIENT_BUFFER                                                 Handle        = 0x80370301\n\tWHV_E_UNKNOWN_PROPERTY                                                    Handle        = 0x80370302\n\tWHV_E_UNSUPPORTED_HYPERVISOR_CONFIG                                       Handle        = 0x80370303\n\tWHV_E_INVALID_PARTITION_CONFIG                                            Handle        = 0x80370304\n\tWHV_E_GPA_RANGE_NOT_FOUND                                                 Handle        = 0x80370305\n\tWHV_E_VP_ALREADY_EXISTS                                                   Handle        = 0x80370306\n\tWHV_E_VP_DOES_NOT_EXIST                                                   Handle        = 0x80370307\n\tWHV_E_INVALID_VP_STATE                                                    Handle        = 0x80370308\n\tWHV_E_INVALID_VP_REGISTER_NAME                                            Handle        = 0x80370309\n\tERROR_VSMB_SAVED_STATE_FILE_NOT_FOUND                                     syscall.Errno = 0xC0370400\n\tERROR_VSMB_SAVED_STATE_CORRUPT                                            syscall.Errno = 0xC0370401\n\tERROR_VOLMGR_INCOMPLETE_REGENERATION                                      syscall.Errno = 0x80380001\n\tERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION                                    syscall.Errno = 0x80380002\n\tERROR_VOLMGR_DATABASE_FULL                                                syscall.Errno = 0xC0380001\n\tERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED                                 syscall.Errno = 0xC0380002\n\tERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC                               syscall.Errno = 0xC0380003\n\tERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED                                    syscall.Errno = 0xC0380004\n\tERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME                              syscall.Errno = 0xC0380005\n\tERROR_VOLMGR_DISK_DUPLICATE                                               syscall.Errno = 0xC0380006\n\tERROR_VOLMGR_DISK_DYNAMIC                                                 syscall.Errno = 0xC0380007\n\tERROR_VOLMGR_DISK_ID_INVALID                                              syscall.Errno = 0xC0380008\n\tERROR_VOLMGR_DISK_INVALID                                                 syscall.Errno = 0xC0380009\n\tERROR_VOLMGR_DISK_LAST_VOTER                                              syscall.Errno = 0xC038000A\n\tERROR_VOLMGR_DISK_LAYOUT_INVALID                                          syscall.Errno = 0xC038000B\n\tERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS               syscall.Errno = 0xC038000C\n\tERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED                             syscall.Errno = 0xC038000D\n\tERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL                             syscall.Errno = 0xC038000E\n\tERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS               syscall.Errno = 0xC038000F\n\tERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS                              syscall.Errno = 0xC0380010\n\tERROR_VOLMGR_DISK_MISSING                                                 syscall.Errno = 0xC0380011\n\tERROR_VOLMGR_DISK_NOT_EMPTY                                               syscall.Errno = 0xC0380012\n\tERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE                                        syscall.Errno = 0xC0380013\n\tERROR_VOLMGR_DISK_REVECTORING_FAILED                                      syscall.Errno = 0xC0380014\n\tERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID                                     syscall.Errno = 0xC0380015\n\tERROR_VOLMGR_DISK_SET_NOT_CONTAINED                                       syscall.Errno = 0xC0380016\n\tERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS                                syscall.Errno = 0xC0380017\n\tERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES                                 syscall.Errno = 0xC0380018\n\tERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED                                   syscall.Errno = 0xC0380019\n\tERROR_VOLMGR_EXTENT_ALREADY_USED                                          syscall.Errno = 0xC038001A\n\tERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS                                        syscall.Errno = 0xC038001B\n\tERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION                                  syscall.Errno = 0xC038001C\n\tERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED                                    syscall.Errno = 0xC038001D\n\tERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION                                syscall.Errno = 0xC038001E\n\tERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH                           syscall.Errno = 0xC038001F\n\tERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED                                 syscall.Errno = 0xC0380020\n\tERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID                                    syscall.Errno = 0xC0380021\n\tERROR_VOLMGR_MAXIMUM_REGISTERED_USERS                                     syscall.Errno = 0xC0380022\n\tERROR_VOLMGR_MEMBER_IN_SYNC                                               syscall.Errno = 0xC0380023\n\tERROR_VOLMGR_MEMBER_INDEX_DUPLICATE                                       syscall.Errno = 0xC0380024\n\tERROR_VOLMGR_MEMBER_INDEX_INVALID                                         syscall.Errno = 0xC0380025\n\tERROR_VOLMGR_MEMBER_MISSING                                               syscall.Errno = 0xC0380026\n\tERROR_VOLMGR_MEMBER_NOT_DETACHED                                          syscall.Errno = 0xC0380027\n\tERROR_VOLMGR_MEMBER_REGENERATING                                          syscall.Errno = 0xC0380028\n\tERROR_VOLMGR_ALL_DISKS_FAILED                                             syscall.Errno = 0xC0380029\n\tERROR_VOLMGR_NO_REGISTERED_USERS                                          syscall.Errno = 0xC038002A\n\tERROR_VOLMGR_NO_SUCH_USER                                                 syscall.Errno = 0xC038002B\n\tERROR_VOLMGR_NOTIFICATION_RESET                                           syscall.Errno = 0xC038002C\n\tERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID                                    syscall.Errno = 0xC038002D\n\tERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID                                     syscall.Errno = 0xC038002E\n\tERROR_VOLMGR_PACK_DUPLICATE                                               syscall.Errno = 0xC038002F\n\tERROR_VOLMGR_PACK_ID_INVALID                                              syscall.Errno = 0xC0380030\n\tERROR_VOLMGR_PACK_INVALID                                                 syscall.Errno = 0xC0380031\n\tERROR_VOLMGR_PACK_NAME_INVALID                                            syscall.Errno = 0xC0380032\n\tERROR_VOLMGR_PACK_OFFLINE                                                 syscall.Errno = 0xC0380033\n\tERROR_VOLMGR_PACK_HAS_QUORUM                                              syscall.Errno = 0xC0380034\n\tERROR_VOLMGR_PACK_WITHOUT_QUORUM                                          syscall.Errno = 0xC0380035\n\tERROR_VOLMGR_PARTITION_STYLE_INVALID                                      syscall.Errno = 0xC0380036\n\tERROR_VOLMGR_PARTITION_UPDATE_FAILED                                      syscall.Errno = 0xC0380037\n\tERROR_VOLMGR_PLEX_IN_SYNC                                                 syscall.Errno = 0xC0380038\n\tERROR_VOLMGR_PLEX_INDEX_DUPLICATE                                         syscall.Errno = 0xC0380039\n\tERROR_VOLMGR_PLEX_INDEX_INVALID                                           syscall.Errno = 0xC038003A\n\tERROR_VOLMGR_PLEX_LAST_ACTIVE                                             syscall.Errno = 0xC038003B\n\tERROR_VOLMGR_PLEX_MISSING                                                 syscall.Errno = 0xC038003C\n\tERROR_VOLMGR_PLEX_REGENERATING                                            syscall.Errno = 0xC038003D\n\tERROR_VOLMGR_PLEX_TYPE_INVALID                                            syscall.Errno = 0xC038003E\n\tERROR_VOLMGR_PLEX_NOT_RAID5                                               syscall.Errno = 0xC038003F\n\tERROR_VOLMGR_PLEX_NOT_SIMPLE                                              syscall.Errno = 0xC0380040\n\tERROR_VOLMGR_STRUCTURE_SIZE_INVALID                                       syscall.Errno = 0xC0380041\n\tERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS                               syscall.Errno = 0xC0380042\n\tERROR_VOLMGR_TRANSACTION_IN_PROGRESS                                      syscall.Errno = 0xC0380043\n\tERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE                                syscall.Errno = 0xC0380044\n\tERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK                                 syscall.Errno = 0xC0380045\n\tERROR_VOLMGR_VOLUME_ID_INVALID                                            syscall.Errno = 0xC0380046\n\tERROR_VOLMGR_VOLUME_LENGTH_INVALID                                        syscall.Errno = 0xC0380047\n\tERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE                       syscall.Errno = 0xC0380048\n\tERROR_VOLMGR_VOLUME_NOT_MIRRORED                                          syscall.Errno = 0xC0380049\n\tERROR_VOLMGR_VOLUME_NOT_RETAINED                                          syscall.Errno = 0xC038004A\n\tERROR_VOLMGR_VOLUME_OFFLINE                                               syscall.Errno = 0xC038004B\n\tERROR_VOLMGR_VOLUME_RETAINED                                              syscall.Errno = 0xC038004C\n\tERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID                                    syscall.Errno = 0xC038004D\n\tERROR_VOLMGR_DIFFERENT_SECTOR_SIZE                                        syscall.Errno = 0xC038004E\n\tERROR_VOLMGR_BAD_BOOT_DISK                                                syscall.Errno = 0xC038004F\n\tERROR_VOLMGR_PACK_CONFIG_OFFLINE                                          syscall.Errno = 0xC0380050\n\tERROR_VOLMGR_PACK_CONFIG_ONLINE                                           syscall.Errno = 0xC0380051\n\tERROR_VOLMGR_NOT_PRIMARY_PACK                                             syscall.Errno = 0xC0380052\n\tERROR_VOLMGR_PACK_LOG_UPDATE_FAILED                                       syscall.Errno = 0xC0380053\n\tERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID                              syscall.Errno = 0xC0380054\n\tERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID                            syscall.Errno = 0xC0380055\n\tERROR_VOLMGR_VOLUME_MIRRORED                                              syscall.Errno = 0xC0380056\n\tERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED                                      syscall.Errno = 0xC0380057\n\tERROR_VOLMGR_NO_VALID_LOG_COPIES                                          syscall.Errno = 0xC0380058\n\tERROR_VOLMGR_PRIMARY_PACK_PRESENT                                         syscall.Errno = 0xC0380059\n\tERROR_VOLMGR_NUMBER_OF_DISKS_INVALID                                      syscall.Errno = 0xC038005A\n\tERROR_VOLMGR_MIRROR_NOT_SUPPORTED                                         syscall.Errno = 0xC038005B\n\tERROR_VOLMGR_RAID5_NOT_SUPPORTED                                          syscall.Errno = 0xC038005C\n\tERROR_BCD_NOT_ALL_ENTRIES_IMPORTED                                        syscall.Errno = 0x80390001\n\tERROR_BCD_TOO_MANY_ELEMENTS                                               syscall.Errno = 0xC0390002\n\tERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED                                    syscall.Errno = 0x80390003\n\tERROR_VHD_DRIVE_FOOTER_MISSING                                            syscall.Errno = 0xC03A0001\n\tERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH                                  syscall.Errno = 0xC03A0002\n\tERROR_VHD_DRIVE_FOOTER_CORRUPT                                            syscall.Errno = 0xC03A0003\n\tERROR_VHD_FORMAT_UNKNOWN                                                  syscall.Errno = 0xC03A0004\n\tERROR_VHD_FORMAT_UNSUPPORTED_VERSION                                      syscall.Errno = 0xC03A0005\n\tERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH                                 syscall.Errno = 0xC03A0006\n\tERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION                               syscall.Errno = 0xC03A0007\n\tERROR_VHD_SPARSE_HEADER_CORRUPT                                           syscall.Errno = 0xC03A0008\n\tERROR_VHD_BLOCK_ALLOCATION_FAILURE                                        syscall.Errno = 0xC03A0009\n\tERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT                                  syscall.Errno = 0xC03A000A\n\tERROR_VHD_INVALID_BLOCK_SIZE                                              syscall.Errno = 0xC03A000B\n\tERROR_VHD_BITMAP_MISMATCH                                                 syscall.Errno = 0xC03A000C\n\tERROR_VHD_PARENT_VHD_NOT_FOUND                                            syscall.Errno = 0xC03A000D\n\tERROR_VHD_CHILD_PARENT_ID_MISMATCH                                        syscall.Errno = 0xC03A000E\n\tERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH                                 syscall.Errno = 0xC03A000F\n\tERROR_VHD_METADATA_READ_FAILURE                                           syscall.Errno = 0xC03A0010\n\tERROR_VHD_METADATA_WRITE_FAILURE                                          syscall.Errno = 0xC03A0011\n\tERROR_VHD_INVALID_SIZE                                                    syscall.Errno = 0xC03A0012\n\tERROR_VHD_INVALID_FILE_SIZE                                               syscall.Errno = 0xC03A0013\n\tERROR_VIRTDISK_PROVIDER_NOT_FOUND                                         syscall.Errno = 0xC03A0014\n\tERROR_VIRTDISK_NOT_VIRTUAL_DISK                                           syscall.Errno = 0xC03A0015\n\tERROR_VHD_PARENT_VHD_ACCESS_DENIED                                        syscall.Errno = 0xC03A0016\n\tERROR_VHD_CHILD_PARENT_SIZE_MISMATCH                                      syscall.Errno = 0xC03A0017\n\tERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED                               syscall.Errno = 0xC03A0018\n\tERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT                              syscall.Errno = 0xC03A0019\n\tERROR_VIRTUAL_DISK_LIMITATION                                             syscall.Errno = 0xC03A001A\n\tERROR_VHD_INVALID_TYPE                                                    syscall.Errno = 0xC03A001B\n\tERROR_VHD_INVALID_STATE                                                   syscall.Errno = 0xC03A001C\n\tERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE                               syscall.Errno = 0xC03A001D\n\tERROR_VIRTDISK_DISK_ALREADY_OWNED                                         syscall.Errno = 0xC03A001E\n\tERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE                                   syscall.Errno = 0xC03A001F\n\tERROR_CTLOG_TRACKING_NOT_INITIALIZED                                      syscall.Errno = 0xC03A0020\n\tERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE                                 syscall.Errno = 0xC03A0021\n\tERROR_CTLOG_VHD_CHANGED_OFFLINE                                           syscall.Errno = 0xC03A0022\n\tERROR_CTLOG_INVALID_TRACKING_STATE                                        syscall.Errno = 0xC03A0023\n\tERROR_CTLOG_INCONSISTENT_TRACKING_FILE                                    syscall.Errno = 0xC03A0024\n\tERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA                                      syscall.Errno = 0xC03A0025\n\tERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE                          syscall.Errno = 0xC03A0026\n\tERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE                        syscall.Errno = 0xC03A0027\n\tERROR_VHD_METADATA_FULL                                                   syscall.Errno = 0xC03A0028\n\tERROR_VHD_INVALID_CHANGE_TRACKING_ID                                      syscall.Errno = 0xC03A0029\n\tERROR_VHD_CHANGE_TRACKING_DISABLED                                        syscall.Errno = 0xC03A002A\n\tERROR_VHD_MISSING_CHANGE_TRACKING_INFORMATION                             syscall.Errno = 0xC03A0030\n\tERROR_QUERY_STORAGE_ERROR                                                 syscall.Errno = 0x803A0001\n\tHCN_E_NETWORK_NOT_FOUND                                                   Handle        = 0x803B0001\n\tHCN_E_ENDPOINT_NOT_FOUND                                                  Handle        = 0x803B0002\n\tHCN_E_LAYER_NOT_FOUND                                                     Handle        = 0x803B0003\n\tHCN_E_SWITCH_NOT_FOUND                                                    Handle        = 0x803B0004\n\tHCN_E_SUBNET_NOT_FOUND                                                    Handle        = 0x803B0005\n\tHCN_E_ADAPTER_NOT_FOUND                                                   Handle        = 0x803B0006\n\tHCN_E_PORT_NOT_FOUND                                                      Handle        = 0x803B0007\n\tHCN_E_POLICY_NOT_FOUND                                                    Handle        = 0x803B0008\n\tHCN_E_VFP_PORTSETTING_NOT_FOUND                                           Handle        = 0x803B0009\n\tHCN_E_INVALID_NETWORK                                                     Handle        = 0x803B000A\n\tHCN_E_INVALID_NETWORK_TYPE                                                Handle        = 0x803B000B\n\tHCN_E_INVALID_ENDPOINT                                                    Handle        = 0x803B000C\n\tHCN_E_INVALID_POLICY                                                      Handle        = 0x803B000D\n\tHCN_E_INVALID_POLICY_TYPE                                                 Handle        = 0x803B000E\n\tHCN_E_INVALID_REMOTE_ENDPOINT_OPERATION                                   Handle        = 0x803B000F\n\tHCN_E_NETWORK_ALREADY_EXISTS                                              Handle        = 0x803B0010\n\tHCN_E_LAYER_ALREADY_EXISTS                                                Handle        = 0x803B0011\n\tHCN_E_POLICY_ALREADY_EXISTS                                               Handle        = 0x803B0012\n\tHCN_E_PORT_ALREADY_EXISTS                                                 Handle        = 0x803B0013\n\tHCN_E_ENDPOINT_ALREADY_ATTACHED                                           Handle        = 0x803B0014\n\tHCN_E_REQUEST_UNSUPPORTED                                                 Handle        = 0x803B0015\n\tHCN_E_MAPPING_NOT_SUPPORTED                                               Handle        = 0x803B0016\n\tHCN_E_DEGRADED_OPERATION                                                  Handle        = 0x803B0017\n\tHCN_E_SHARED_SWITCH_MODIFICATION                                          Handle        = 0x803B0018\n\tHCN_E_GUID_CONVERSION_FAILURE                                             Handle        = 0x803B0019\n\tHCN_E_REGKEY_FAILURE                                                      Handle        = 0x803B001A\n\tHCN_E_INVALID_JSON                                                        Handle        = 0x803B001B\n\tHCN_E_INVALID_JSON_REFERENCE                                              Handle        = 0x803B001C\n\tHCN_E_ENDPOINT_SHARING_DISABLED                                           Handle        = 0x803B001D\n\tHCN_E_INVALID_IP                                                          Handle        = 0x803B001E\n\tHCN_E_SWITCH_EXTENSION_NOT_FOUND                                          Handle        = 0x803B001F\n\tHCN_E_MANAGER_STOPPED                                                     Handle        = 0x803B0020\n\tGCN_E_MODULE_NOT_FOUND                                                    Handle        = 0x803B0021\n\tGCN_E_NO_REQUEST_HANDLERS                                                 Handle        = 0x803B0022\n\tGCN_E_REQUEST_UNSUPPORTED                                                 Handle        = 0x803B0023\n\tGCN_E_RUNTIMEKEYS_FAILED                                                  Handle        = 0x803B0024\n\tGCN_E_NETADAPTER_TIMEOUT                                                  Handle        = 0x803B0025\n\tGCN_E_NETADAPTER_NOT_FOUND                                                Handle        = 0x803B0026\n\tGCN_E_NETCOMPARTMENT_NOT_FOUND                                            Handle        = 0x803B0027\n\tGCN_E_NETINTERFACE_NOT_FOUND                                              Handle        = 0x803B0028\n\tGCN_E_DEFAULTNAMESPACE_EXISTS                                             Handle        = 0x803B0029\n\tSDIAG_E_CANCELLED                                                         syscall.Errno = 0x803C0100\n\tSDIAG_E_SCRIPT                                                            syscall.Errno = 0x803C0101\n\tSDIAG_E_POWERSHELL                                                        syscall.Errno = 0x803C0102\n\tSDIAG_E_MANAGEDHOST                                                       syscall.Errno = 0x803C0103\n\tSDIAG_E_NOVERIFIER                                                        syscall.Errno = 0x803C0104\n\tSDIAG_S_CANNOTRUN                                                         syscall.Errno = 0x003C0105\n\tSDIAG_E_DISABLED                                                          syscall.Errno = 0x803C0106\n\tSDIAG_E_TRUST                                                             syscall.Errno = 0x803C0107\n\tSDIAG_E_CANNOTRUN                                                         syscall.Errno = 0x803C0108\n\tSDIAG_E_VERSION                                                           syscall.Errno = 0x803C0109\n\tSDIAG_E_RESOURCE                                                          syscall.Errno = 0x803C010A\n\tSDIAG_E_ROOTCAUSE                                                         syscall.Errno = 0x803C010B\n\tWPN_E_CHANNEL_CLOSED                                                      Handle        = 0x803E0100\n\tWPN_E_CHANNEL_REQUEST_NOT_COMPLETE                                        Handle        = 0x803E0101\n\tWPN_E_INVALID_APP                                                         Handle        = 0x803E0102\n\tWPN_E_OUTSTANDING_CHANNEL_REQUEST                                         Handle        = 0x803E0103\n\tWPN_E_DUPLICATE_CHANNEL                                                   Handle        = 0x803E0104\n\tWPN_E_PLATFORM_UNAVAILABLE                                                Handle        = 0x803E0105\n\tWPN_E_NOTIFICATION_POSTED                                                 Handle        = 0x803E0106\n\tWPN_E_NOTIFICATION_HIDDEN                                                 Handle        = 0x803E0107\n\tWPN_E_NOTIFICATION_NOT_POSTED                                             Handle        = 0x803E0108\n\tWPN_E_CLOUD_DISABLED                                                      Handle        = 0x803E0109\n\tWPN_E_CLOUD_INCAPABLE                                                     Handle        = 0x803E0110\n\tWPN_E_CLOUD_AUTH_UNAVAILABLE                                              Handle        = 0x803E011A\n\tWPN_E_CLOUD_SERVICE_UNAVAILABLE                                           Handle        = 0x803E011B\n\tWPN_E_FAILED_LOCK_SCREEN_UPDATE_INTIALIZATION                             Handle        = 0x803E011C\n\tWPN_E_NOTIFICATION_DISABLED                                               Handle        = 0x803E0111\n\tWPN_E_NOTIFICATION_INCAPABLE                                              Handle        = 0x803E0112\n\tWPN_E_INTERNET_INCAPABLE                                                  Handle        = 0x803E0113\n\tWPN_E_NOTIFICATION_TYPE_DISABLED                                          Handle        = 0x803E0114\n\tWPN_E_NOTIFICATION_SIZE                                                   Handle        = 0x803E0115\n\tWPN_E_TAG_SIZE                                                            Handle        = 0x803E0116\n\tWPN_E_ACCESS_DENIED                                                       Handle        = 0x803E0117\n\tWPN_E_DUPLICATE_REGISTRATION                                              Handle        = 0x803E0118\n\tWPN_E_PUSH_NOTIFICATION_INCAPABLE                                         Handle        = 0x803E0119\n\tWPN_E_DEV_ID_SIZE                                                         Handle        = 0x803E0120\n\tWPN_E_TAG_ALPHANUMERIC                                                    Handle        = 0x803E012A\n\tWPN_E_INVALID_HTTP_STATUS_CODE                                            Handle        = 0x803E012B\n\tWPN_E_OUT_OF_SESSION                                                      Handle        = 0x803E0200\n\tWPN_E_POWER_SAVE                                                          Handle        = 0x803E0201\n\tWPN_E_IMAGE_NOT_FOUND_IN_CACHE                                            Handle        = 0x803E0202\n\tWPN_E_ALL_URL_NOT_COMPLETED                                               Handle        = 0x803E0203\n\tWPN_E_INVALID_CLOUD_IMAGE                                                 Handle        = 0x803E0204\n\tWPN_E_NOTIFICATION_ID_MATCHED                                             Handle        = 0x803E0205\n\tWPN_E_CALLBACK_ALREADY_REGISTERED                                         Handle        = 0x803E0206\n\tWPN_E_TOAST_NOTIFICATION_DROPPED                                          Handle        = 0x803E0207\n\tWPN_E_STORAGE_LOCKED                                                      Handle        = 0x803E0208\n\tWPN_E_GROUP_SIZE                                                          Handle        = 0x803E0209\n\tWPN_E_GROUP_ALPHANUMERIC                                                  Handle        = 0x803E020A\n\tWPN_E_CLOUD_DISABLED_FOR_APP                                              Handle        = 0x803E020B\n\tE_MBN_CONTEXT_NOT_ACTIVATED                                               Handle        = 0x80548201\n\tE_MBN_BAD_SIM                                                             Handle        = 0x80548202\n\tE_MBN_DATA_CLASS_NOT_AVAILABLE                                            Handle        = 0x80548203\n\tE_MBN_INVALID_ACCESS_STRING                                               Handle        = 0x80548204\n\tE_MBN_MAX_ACTIVATED_CONTEXTS                                              Handle        = 0x80548205\n\tE_MBN_PACKET_SVC_DETACHED                                                 Handle        = 0x80548206\n\tE_MBN_PROVIDER_NOT_VISIBLE                                                Handle        = 0x80548207\n\tE_MBN_RADIO_POWER_OFF                                                     Handle        = 0x80548208\n\tE_MBN_SERVICE_NOT_ACTIVATED                                               Handle        = 0x80548209\n\tE_MBN_SIM_NOT_INSERTED                                                    Handle        = 0x8054820A\n\tE_MBN_VOICE_CALL_IN_PROGRESS                                              Handle        = 0x8054820B\n\tE_MBN_INVALID_CACHE                                                       Handle        = 0x8054820C\n\tE_MBN_NOT_REGISTERED                                                      Handle        = 0x8054820D\n\tE_MBN_PROVIDERS_NOT_FOUND                                                 Handle        = 0x8054820E\n\tE_MBN_PIN_NOT_SUPPORTED                                                   Handle        = 0x8054820F\n\tE_MBN_PIN_REQUIRED                                                        Handle        = 0x80548210\n\tE_MBN_PIN_DISABLED                                                        Handle        = 0x80548211\n\tE_MBN_FAILURE                                                             Handle        = 0x80548212\n\tE_MBN_INVALID_PROFILE                                                     Handle        = 0x80548218\n\tE_MBN_DEFAULT_PROFILE_EXIST                                               Handle        = 0x80548219\n\tE_MBN_SMS_ENCODING_NOT_SUPPORTED                                          Handle        = 0x80548220\n\tE_MBN_SMS_FILTER_NOT_SUPPORTED                                            Handle        = 0x80548221\n\tE_MBN_SMS_INVALID_MEMORY_INDEX                                            Handle        = 0x80548222\n\tE_MBN_SMS_LANG_NOT_SUPPORTED                                              Handle        = 0x80548223\n\tE_MBN_SMS_MEMORY_FAILURE                                                  Handle        = 0x80548224\n\tE_MBN_SMS_NETWORK_TIMEOUT                                                 Handle        = 0x80548225\n\tE_MBN_SMS_UNKNOWN_SMSC_ADDRESS                                            Handle        = 0x80548226\n\tE_MBN_SMS_FORMAT_NOT_SUPPORTED                                            Handle        = 0x80548227\n\tE_MBN_SMS_OPERATION_NOT_ALLOWED                                           Handle        = 0x80548228\n\tE_MBN_SMS_MEMORY_FULL                                                     Handle        = 0x80548229\n\tPEER_E_IPV6_NOT_INSTALLED                                                 Handle        = 0x80630001\n\tPEER_E_NOT_INITIALIZED                                                    Handle        = 0x80630002\n\tPEER_E_CANNOT_START_SERVICE                                               Handle        = 0x80630003\n\tPEER_E_NOT_LICENSED                                                       Handle        = 0x80630004\n\tPEER_E_INVALID_GRAPH                                                      Handle        = 0x80630010\n\tPEER_E_DBNAME_CHANGED                                                     Handle        = 0x80630011\n\tPEER_E_DUPLICATE_GRAPH                                                    Handle        = 0x80630012\n\tPEER_E_GRAPH_NOT_READY                                                    Handle        = 0x80630013\n\tPEER_E_GRAPH_SHUTTING_DOWN                                                Handle        = 0x80630014\n\tPEER_E_GRAPH_IN_USE                                                       Handle        = 0x80630015\n\tPEER_E_INVALID_DATABASE                                                   Handle        = 0x80630016\n\tPEER_E_TOO_MANY_ATTRIBUTES                                                Handle        = 0x80630017\n\tPEER_E_CONNECTION_NOT_FOUND                                               Handle        = 0x80630103\n\tPEER_E_CONNECT_SELF                                                       Handle        = 0x80630106\n\tPEER_E_ALREADY_LISTENING                                                  Handle        = 0x80630107\n\tPEER_E_NODE_NOT_FOUND                                                     Handle        = 0x80630108\n\tPEER_E_CONNECTION_FAILED                                                  Handle        = 0x80630109\n\tPEER_E_CONNECTION_NOT_AUTHENTICATED                                       Handle        = 0x8063010A\n\tPEER_E_CONNECTION_REFUSED                                                 Handle        = 0x8063010B\n\tPEER_E_CLASSIFIER_TOO_LONG                                                Handle        = 0x80630201\n\tPEER_E_TOO_MANY_IDENTITIES                                                Handle        = 0x80630202\n\tPEER_E_NO_KEY_ACCESS                                                      Handle        = 0x80630203\n\tPEER_E_GROUPS_EXIST                                                       Handle        = 0x80630204\n\tPEER_E_RECORD_NOT_FOUND                                                   Handle        = 0x80630301\n\tPEER_E_DATABASE_ACCESSDENIED                                              Handle        = 0x80630302\n\tPEER_E_DBINITIALIZATION_FAILED                                            Handle        = 0x80630303\n\tPEER_E_MAX_RECORD_SIZE_EXCEEDED                                           Handle        = 0x80630304\n\tPEER_E_DATABASE_ALREADY_PRESENT                                           Handle        = 0x80630305\n\tPEER_E_DATABASE_NOT_PRESENT                                               Handle        = 0x80630306\n\tPEER_E_IDENTITY_NOT_FOUND                                                 Handle        = 0x80630401\n\tPEER_E_EVENT_HANDLE_NOT_FOUND                                             Handle        = 0x80630501\n\tPEER_E_INVALID_SEARCH                                                     Handle        = 0x80630601\n\tPEER_E_INVALID_ATTRIBUTES                                                 Handle        = 0x80630602\n\tPEER_E_INVITATION_NOT_TRUSTED                                             Handle        = 0x80630701\n\tPEER_E_CHAIN_TOO_LONG                                                     Handle        = 0x80630703\n\tPEER_E_INVALID_TIME_PERIOD                                                Handle        = 0x80630705\n\tPEER_E_CIRCULAR_CHAIN_DETECTED                                            Handle        = 0x80630706\n\tPEER_E_CERT_STORE_CORRUPTED                                               Handle        = 0x80630801\n\tPEER_E_NO_CLOUD                                                           Handle        = 0x80631001\n\tPEER_E_CLOUD_NAME_AMBIGUOUS                                               Handle        = 0x80631005\n\tPEER_E_INVALID_RECORD                                                     Handle        = 0x80632010\n\tPEER_E_NOT_AUTHORIZED                                                     Handle        = 0x80632020\n\tPEER_E_PASSWORD_DOES_NOT_MEET_POLICY                                      Handle        = 0x80632021\n\tPEER_E_DEFERRED_VALIDATION                                                Handle        = 0x80632030\n\tPEER_E_INVALID_GROUP_PROPERTIES                                           Handle        = 0x80632040\n\tPEER_E_INVALID_PEER_NAME                                                  Handle        = 0x80632050\n\tPEER_E_INVALID_CLASSIFIER                                                 Handle        = 0x80632060\n\tPEER_E_INVALID_FRIENDLY_NAME                                              Handle        = 0x80632070\n\tPEER_E_INVALID_ROLE_PROPERTY                                              Handle        = 0x80632071\n\tPEER_E_INVALID_CLASSIFIER_PROPERTY                                        Handle        = 0x80632072\n\tPEER_E_INVALID_RECORD_EXPIRATION                                          Handle        = 0x80632080\n\tPEER_E_INVALID_CREDENTIAL_INFO                                            Handle        = 0x80632081\n\tPEER_E_INVALID_CREDENTIAL                                                 Handle        = 0x80632082\n\tPEER_E_INVALID_RECORD_SIZE                                                Handle        = 0x80632083\n\tPEER_E_UNSUPPORTED_VERSION                                                Handle        = 0x80632090\n\tPEER_E_GROUP_NOT_READY                                                    Handle        = 0x80632091\n\tPEER_E_GROUP_IN_USE                                                       Handle        = 0x80632092\n\tPEER_E_INVALID_GROUP                                                      Handle        = 0x80632093\n\tPEER_E_NO_MEMBERS_FOUND                                                   Handle        = 0x80632094\n\tPEER_E_NO_MEMBER_CONNECTIONS                                              Handle        = 0x80632095\n\tPEER_E_UNABLE_TO_LISTEN                                                   Handle        = 0x80632096\n\tPEER_E_IDENTITY_DELETED                                                   Handle        = 0x806320A0\n\tPEER_E_SERVICE_NOT_AVAILABLE                                              Handle        = 0x806320A1\n\tPEER_E_CONTACT_NOT_FOUND                                                  Handle        = 0x80636001\n\tPEER_S_GRAPH_DATA_CREATED                                                 Handle        = 0x00630001\n\tPEER_S_NO_EVENT_DATA                                                      Handle        = 0x00630002\n\tPEER_S_ALREADY_CONNECTED                                                  Handle        = 0x00632000\n\tPEER_S_SUBSCRIPTION_EXISTS                                                Handle        = 0x00636000\n\tPEER_S_NO_CONNECTIVITY                                                    Handle        = 0x00630005\n\tPEER_S_ALREADY_A_MEMBER                                                   Handle        = 0x00630006\n\tPEER_E_CANNOT_CONVERT_PEER_NAME                                           Handle        = 0x80634001\n\tPEER_E_INVALID_PEER_HOST_NAME                                             Handle        = 0x80634002\n\tPEER_E_NO_MORE                                                            Handle        = 0x80634003\n\tPEER_E_PNRP_DUPLICATE_PEER_NAME                                           Handle        = 0x80634005\n\tPEER_E_INVITE_CANCELLED                                                   Handle        = 0x80637000\n\tPEER_E_INVITE_RESPONSE_NOT_AVAILABLE                                      Handle        = 0x80637001\n\tPEER_E_NOT_SIGNED_IN                                                      Handle        = 0x80637003\n\tPEER_E_PRIVACY_DECLINED                                                   Handle        = 0x80637004\n\tPEER_E_TIMEOUT                                                            Handle        = 0x80637005\n\tPEER_E_INVALID_ADDRESS                                                    Handle        = 0x80637007\n\tPEER_E_FW_EXCEPTION_DISABLED                                              Handle        = 0x80637008\n\tPEER_E_FW_BLOCKED_BY_POLICY                                               Handle        = 0x80637009\n\tPEER_E_FW_BLOCKED_BY_SHIELDS_UP                                           Handle        = 0x8063700A\n\tPEER_E_FW_DECLINED                                                        Handle        = 0x8063700B\n\tUI_E_CREATE_FAILED                                                        Handle        = 0x802A0001\n\tUI_E_SHUTDOWN_CALLED                                                      Handle        = 0x802A0002\n\tUI_E_ILLEGAL_REENTRANCY                                                   Handle        = 0x802A0003\n\tUI_E_OBJECT_SEALED                                                        Handle        = 0x802A0004\n\tUI_E_VALUE_NOT_SET                                                        Handle        = 0x802A0005\n\tUI_E_VALUE_NOT_DETERMINED                                                 Handle        = 0x802A0006\n\tUI_E_INVALID_OUTPUT                                                       Handle        = 0x802A0007\n\tUI_E_BOOLEAN_EXPECTED                                                     Handle        = 0x802A0008\n\tUI_E_DIFFERENT_OWNER                                                      Handle        = 0x802A0009\n\tUI_E_AMBIGUOUS_MATCH                                                      Handle        = 0x802A000A\n\tUI_E_FP_OVERFLOW                                                          Handle        = 0x802A000B\n\tUI_E_WRONG_THREAD                                                         Handle        = 0x802A000C\n\tUI_E_STORYBOARD_ACTIVE                                                    Handle        = 0x802A0101\n\tUI_E_STORYBOARD_NOT_PLAYING                                               Handle        = 0x802A0102\n\tUI_E_START_KEYFRAME_AFTER_END                                             Handle        = 0x802A0103\n\tUI_E_END_KEYFRAME_NOT_DETERMINED                                          Handle        = 0x802A0104\n\tUI_E_LOOPS_OVERLAP                                                        Handle        = 0x802A0105\n\tUI_E_TRANSITION_ALREADY_USED                                              Handle        = 0x802A0106\n\tUI_E_TRANSITION_NOT_IN_STORYBOARD                                         Handle        = 0x802A0107\n\tUI_E_TRANSITION_ECLIPSED                                                  Handle        = 0x802A0108\n\tUI_E_TIME_BEFORE_LAST_UPDATE                                              Handle        = 0x802A0109\n\tUI_E_TIMER_CLIENT_ALREADY_CONNECTED                                       Handle        = 0x802A010A\n\tUI_E_INVALID_DIMENSION                                                    Handle        = 0x802A010B\n\tUI_E_PRIMITIVE_OUT_OF_BOUNDS                                              Handle        = 0x802A010C\n\tUI_E_WINDOW_CLOSED                                                        Handle        = 0x802A0201\n\tE_BLUETOOTH_ATT_INVALID_HANDLE                                            Handle        = 0x80650001\n\tE_BLUETOOTH_ATT_READ_NOT_PERMITTED                                        Handle        = 0x80650002\n\tE_BLUETOOTH_ATT_WRITE_NOT_PERMITTED                                       Handle        = 0x80650003\n\tE_BLUETOOTH_ATT_INVALID_PDU                                               Handle        = 0x80650004\n\tE_BLUETOOTH_ATT_INSUFFICIENT_AUTHENTICATION                               Handle        = 0x80650005\n\tE_BLUETOOTH_ATT_REQUEST_NOT_SUPPORTED                                     Handle        = 0x80650006\n\tE_BLUETOOTH_ATT_INVALID_OFFSET                                            Handle        = 0x80650007\n\tE_BLUETOOTH_ATT_INSUFFICIENT_AUTHORIZATION                                Handle        = 0x80650008\n\tE_BLUETOOTH_ATT_PREPARE_QUEUE_FULL                                        Handle        = 0x80650009\n\tE_BLUETOOTH_ATT_ATTRIBUTE_NOT_FOUND                                       Handle        = 0x8065000A\n\tE_BLUETOOTH_ATT_ATTRIBUTE_NOT_LONG                                        Handle        = 0x8065000B\n\tE_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE                          Handle        = 0x8065000C\n\tE_BLUETOOTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH                            Handle        = 0x8065000D\n\tE_BLUETOOTH_ATT_UNLIKELY                                                  Handle        = 0x8065000E\n\tE_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION                                   Handle        = 0x8065000F\n\tE_BLUETOOTH_ATT_UNSUPPORTED_GROUP_TYPE                                    Handle        = 0x80650010\n\tE_BLUETOOTH_ATT_INSUFFICIENT_RESOURCES                                    Handle        = 0x80650011\n\tE_BLUETOOTH_ATT_UNKNOWN_ERROR                                             Handle        = 0x80651000\n\tE_AUDIO_ENGINE_NODE_NOT_FOUND                                             Handle        = 0x80660001\n\tE_HDAUDIO_EMPTY_CONNECTION_LIST                                           Handle        = 0x80660002\n\tE_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED                                   Handle        = 0x80660003\n\tE_HDAUDIO_NO_LOGICAL_DEVICES_CREATED                                      Handle        = 0x80660004\n\tE_HDAUDIO_NULL_LINKED_LIST_ENTRY                                          Handle        = 0x80660005\n\tSTATEREPOSITORY_E_CONCURRENCY_LOCKING_FAILURE                             Handle        = 0x80670001\n\tSTATEREPOSITORY_E_STATEMENT_INPROGRESS                                    Handle        = 0x80670002\n\tSTATEREPOSITORY_E_CONFIGURATION_INVALID                                   Handle        = 0x80670003\n\tSTATEREPOSITORY_E_UNKNOWN_SCHEMA_VERSION                                  Handle        = 0x80670004\n\tSTATEREPOSITORY_ERROR_DICTIONARY_CORRUPTED                                Handle        = 0x80670005\n\tSTATEREPOSITORY_E_BLOCKED                                                 Handle        = 0x80670006\n\tSTATEREPOSITORY_E_BUSY_RETRY                                              Handle        = 0x80670007\n\tSTATEREPOSITORY_E_BUSY_RECOVERY_RETRY                                     Handle        = 0x80670008\n\tSTATEREPOSITORY_E_LOCKED_RETRY                                            Handle        = 0x80670009\n\tSTATEREPOSITORY_E_LOCKED_SHAREDCACHE_RETRY                                Handle        = 0x8067000A\n\tSTATEREPOSITORY_E_TRANSACTION_REQUIRED                                    Handle        = 0x8067000B\n\tSTATEREPOSITORY_E_BUSY_TIMEOUT_EXCEEDED                                   Handle        = 0x8067000C\n\tSTATEREPOSITORY_E_BUSY_RECOVERY_TIMEOUT_EXCEEDED                          Handle        = 0x8067000D\n\tSTATEREPOSITORY_E_LOCKED_TIMEOUT_EXCEEDED                                 Handle        = 0x8067000E\n\tSTATEREPOSITORY_E_LOCKED_SHAREDCACHE_TIMEOUT_EXCEEDED                     Handle        = 0x8067000F\n\tSTATEREPOSITORY_E_SERVICE_STOP_IN_PROGRESS                                Handle        = 0x80670010\n\tSTATEREPOSTORY_E_NESTED_TRANSACTION_NOT_SUPPORTED                         Handle        = 0x80670011\n\tSTATEREPOSITORY_ERROR_CACHE_CORRUPTED                                     Handle        = 0x80670012\n\tSTATEREPOSITORY_TRANSACTION_CALLER_ID_CHANGED                             Handle        = 0x00670013\n\tSTATEREPOSITORY_TRANSACTION_IN_PROGRESS                                   Handle        = 0x00670014\n\tERROR_SPACES_POOL_WAS_DELETED                                             Handle        = 0x00E70001\n\tERROR_SPACES_FAULT_DOMAIN_TYPE_INVALID                                    Handle        = 0x80E70001\n\tERROR_SPACES_INTERNAL_ERROR                                               Handle        = 0x80E70002\n\tERROR_SPACES_RESILIENCY_TYPE_INVALID                                      Handle        = 0x80E70003\n\tERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID                                    Handle        = 0x80E70004\n\tERROR_SPACES_DRIVE_REDUNDANCY_INVALID                                     Handle        = 0x80E70006\n\tERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID                                Handle        = 0x80E70007\n\tERROR_SPACES_PARITY_LAYOUT_INVALID                                        Handle        = 0x80E70008\n\tERROR_SPACES_INTERLEAVE_LENGTH_INVALID                                    Handle        = 0x80E70009\n\tERROR_SPACES_NUMBER_OF_COLUMNS_INVALID                                    Handle        = 0x80E7000A\n\tERROR_SPACES_NOT_ENOUGH_DRIVES                                            Handle        = 0x80E7000B\n\tERROR_SPACES_EXTENDED_ERROR                                               Handle        = 0x80E7000C\n\tERROR_SPACES_PROVISIONING_TYPE_INVALID                                    Handle        = 0x80E7000D\n\tERROR_SPACES_ALLOCATION_SIZE_INVALID                                      Handle        = 0x80E7000E\n\tERROR_SPACES_ENCLOSURE_AWARE_INVALID                                      Handle        = 0x80E7000F\n\tERROR_SPACES_WRITE_CACHE_SIZE_INVALID                                     Handle        = 0x80E70010\n\tERROR_SPACES_NUMBER_OF_GROUPS_INVALID                                     Handle        = 0x80E70011\n\tERROR_SPACES_DRIVE_OPERATIONAL_STATE_INVALID                              Handle        = 0x80E70012\n\tERROR_SPACES_ENTRY_INCOMPLETE                                             Handle        = 0x80E70013\n\tERROR_SPACES_ENTRY_INVALID                                                Handle        = 0x80E70014\n\tERROR_VOLSNAP_BOOTFILE_NOT_VALID                                          Handle        = 0x80820001\n\tERROR_VOLSNAP_ACTIVATION_TIMEOUT                                          Handle        = 0x80820002\n\tERROR_TIERING_NOT_SUPPORTED_ON_VOLUME                                     Handle        = 0x80830001\n\tERROR_TIERING_VOLUME_DISMOUNT_IN_PROGRESS                                 Handle        = 0x80830002\n\tERROR_TIERING_STORAGE_TIER_NOT_FOUND                                      Handle        = 0x80830003\n\tERROR_TIERING_INVALID_FILE_ID                                             Handle        = 0x80830004\n\tERROR_TIERING_WRONG_CLUSTER_NODE                                          Handle        = 0x80830005\n\tERROR_TIERING_ALREADY_PROCESSING                                          Handle        = 0x80830006\n\tERROR_TIERING_CANNOT_PIN_OBJECT                                           Handle        = 0x80830007\n\tERROR_TIERING_FILE_IS_NOT_PINNED                                          Handle        = 0x80830008\n\tERROR_NOT_A_TIERED_VOLUME                                                 Handle        = 0x80830009\n\tERROR_ATTRIBUTE_NOT_PRESENT                                               Handle        = 0x8083000A\n\tERROR_SECCORE_INVALID_COMMAND                                             Handle        = 0xC0E80000\n\tERROR_NO_APPLICABLE_APP_LICENSES_FOUND                                    Handle        = 0xC0EA0001\n\tERROR_CLIP_LICENSE_NOT_FOUND                                              Handle        = 0xC0EA0002\n\tERROR_CLIP_DEVICE_LICENSE_MISSING                                         Handle        = 0xC0EA0003\n\tERROR_CLIP_LICENSE_INVALID_SIGNATURE                                      Handle        = 0xC0EA0004\n\tERROR_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID                           Handle        = 0xC0EA0005\n\tERROR_CLIP_LICENSE_EXPIRED                                                Handle        = 0xC0EA0006\n\tERROR_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE                               Handle        = 0xC0EA0007\n\tERROR_CLIP_LICENSE_NOT_SIGNED                                             Handle        = 0xC0EA0008\n\tERROR_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE                           Handle        = 0xC0EA0009\n\tERROR_CLIP_LICENSE_DEVICE_ID_MISMATCH                                     Handle        = 0xC0EA000A\n\tDXGI_STATUS_OCCLUDED                                                      Handle        = 0x087A0001\n\tDXGI_STATUS_CLIPPED                                                       Handle        = 0x087A0002\n\tDXGI_STATUS_NO_REDIRECTION                                                Handle        = 0x087A0004\n\tDXGI_STATUS_NO_DESKTOP_ACCESS                                             Handle        = 0x087A0005\n\tDXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE                                  Handle        = 0x087A0006\n\tDXGI_STATUS_MODE_CHANGED                                                  Handle        = 0x087A0007\n\tDXGI_STATUS_MODE_CHANGE_IN_PROGRESS                                       Handle        = 0x087A0008\n\tDXGI_ERROR_INVALID_CALL                                                   Handle        = 0x887A0001\n\tDXGI_ERROR_NOT_FOUND                                                      Handle        = 0x887A0002\n\tDXGI_ERROR_MORE_DATA                                                      Handle        = 0x887A0003\n\tDXGI_ERROR_UNSUPPORTED                                                    Handle        = 0x887A0004\n\tDXGI_ERROR_DEVICE_REMOVED                                                 Handle        = 0x887A0005\n\tDXGI_ERROR_DEVICE_HUNG                                                    Handle        = 0x887A0006\n\tDXGI_ERROR_DEVICE_RESET                                                   Handle        = 0x887A0007\n\tDXGI_ERROR_WAS_STILL_DRAWING                                              Handle        = 0x887A000A\n\tDXGI_ERROR_FRAME_STATISTICS_DISJOINT                                      Handle        = 0x887A000B\n\tDXGI_ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE                                   Handle        = 0x887A000C\n\tDXGI_ERROR_DRIVER_INTERNAL_ERROR                                          Handle        = 0x887A0020\n\tDXGI_ERROR_NONEXCLUSIVE                                                   Handle        = 0x887A0021\n\tDXGI_ERROR_NOT_CURRENTLY_AVAILABLE                                        Handle        = 0x887A0022\n\tDXGI_ERROR_REMOTE_CLIENT_DISCONNECTED                                     Handle        = 0x887A0023\n\tDXGI_ERROR_REMOTE_OUTOFMEMORY                                             Handle        = 0x887A0024\n\tDXGI_ERROR_ACCESS_LOST                                                    Handle        = 0x887A0026\n\tDXGI_ERROR_WAIT_TIMEOUT                                                   Handle        = 0x887A0027\n\tDXGI_ERROR_SESSION_DISCONNECTED                                           Handle        = 0x887A0028\n\tDXGI_ERROR_RESTRICT_TO_OUTPUT_STALE                                       Handle        = 0x887A0029\n\tDXGI_ERROR_CANNOT_PROTECT_CONTENT                                         Handle        = 0x887A002A\n\tDXGI_ERROR_ACCESS_DENIED                                                  Handle        = 0x887A002B\n\tDXGI_ERROR_NAME_ALREADY_EXISTS                                            Handle        = 0x887A002C\n\tDXGI_ERROR_SDK_COMPONENT_MISSING                                          Handle        = 0x887A002D\n\tDXGI_ERROR_NOT_CURRENT                                                    Handle        = 0x887A002E\n\tDXGI_ERROR_HW_PROTECTION_OUTOFMEMORY                                      Handle        = 0x887A0030\n\tDXGI_ERROR_DYNAMIC_CODE_POLICY_VIOLATION                                  Handle        = 0x887A0031\n\tDXGI_ERROR_NON_COMPOSITED_UI                                              Handle        = 0x887A0032\n\tDXGI_STATUS_UNOCCLUDED                                                    Handle        = 0x087A0009\n\tDXGI_STATUS_DDA_WAS_STILL_DRAWING                                         Handle        = 0x087A000A\n\tDXGI_ERROR_MODE_CHANGE_IN_PROGRESS                                        Handle        = 0x887A0025\n\tDXGI_STATUS_PRESENT_REQUIRED                                              Handle        = 0x087A002F\n\tDXGI_ERROR_CACHE_CORRUPT                                                  Handle        = 0x887A0033\n\tDXGI_ERROR_CACHE_FULL                                                     Handle        = 0x887A0034\n\tDXGI_ERROR_CACHE_HASH_COLLISION                                           Handle        = 0x887A0035\n\tDXGI_ERROR_ALREADY_EXISTS                                                 Handle        = 0x887A0036\n\tDXGI_DDI_ERR_WASSTILLDRAWING                                              Handle        = 0x887B0001\n\tDXGI_DDI_ERR_UNSUPPORTED                                                  Handle        = 0x887B0002\n\tDXGI_DDI_ERR_NONEXCLUSIVE                                                 Handle        = 0x887B0003\n\tD3D10_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS                                 Handle        = 0x88790001\n\tD3D10_ERROR_FILE_NOT_FOUND                                                Handle        = 0x88790002\n\tD3D11_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS                                 Handle        = 0x887C0001\n\tD3D11_ERROR_FILE_NOT_FOUND                                                Handle        = 0x887C0002\n\tD3D11_ERROR_TOO_MANY_UNIQUE_VIEW_OBJECTS                                  Handle        = 0x887C0003\n\tD3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD                  Handle        = 0x887C0004\n\tD3D12_ERROR_ADAPTER_NOT_FOUND                                             Handle        = 0x887E0001\n\tD3D12_ERROR_DRIVER_VERSION_MISMATCH                                       Handle        = 0x887E0002\n\tD2DERR_WRONG_STATE                                                        Handle        = 0x88990001\n\tD2DERR_NOT_INITIALIZED                                                    Handle        = 0x88990002\n\tD2DERR_UNSUPPORTED_OPERATION                                              Handle        = 0x88990003\n\tD2DERR_SCANNER_FAILED                                                     Handle        = 0x88990004\n\tD2DERR_SCREEN_ACCESS_DENIED                                               Handle        = 0x88990005\n\tD2DERR_DISPLAY_STATE_INVALID                                              Handle        = 0x88990006\n\tD2DERR_ZERO_VECTOR                                                        Handle        = 0x88990007\n\tD2DERR_INTERNAL_ERROR                                                     Handle        = 0x88990008\n\tD2DERR_DISPLAY_FORMAT_NOT_SUPPORTED                                       Handle        = 0x88990009\n\tD2DERR_INVALID_CALL                                                       Handle        = 0x8899000A\n\tD2DERR_NO_HARDWARE_DEVICE                                                 Handle        = 0x8899000B\n\tD2DERR_RECREATE_TARGET                                                    Handle        = 0x8899000C\n\tD2DERR_TOO_MANY_SHADER_ELEMENTS                                           Handle        = 0x8899000D\n\tD2DERR_SHADER_COMPILE_FAILED                                              Handle        = 0x8899000E\n\tD2DERR_MAX_TEXTURE_SIZE_EXCEEDED                                          Handle        = 0x8899000F\n\tD2DERR_UNSUPPORTED_VERSION                                                Handle        = 0x88990010\n\tD2DERR_BAD_NUMBER                                                         Handle        = 0x88990011\n\tD2DERR_WRONG_FACTORY                                                      Handle        = 0x88990012\n\tD2DERR_LAYER_ALREADY_IN_USE                                               Handle        = 0x88990013\n\tD2DERR_POP_CALL_DID_NOT_MATCH_PUSH                                        Handle        = 0x88990014\n\tD2DERR_WRONG_RESOURCE_DOMAIN                                              Handle        = 0x88990015\n\tD2DERR_PUSH_POP_UNBALANCED                                                Handle        = 0x88990016\n\tD2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT                                Handle        = 0x88990017\n\tD2DERR_INCOMPATIBLE_BRUSH_TYPES                                           Handle        = 0x88990018\n\tD2DERR_WIN32_ERROR                                                        Handle        = 0x88990019\n\tD2DERR_TARGET_NOT_GDI_COMPATIBLE                                          Handle        = 0x8899001A\n\tD2DERR_TEXT_EFFECT_IS_WRONG_TYPE                                          Handle        = 0x8899001B\n\tD2DERR_TEXT_RENDERER_NOT_RELEASED                                         Handle        = 0x8899001C\n\tD2DERR_EXCEEDS_MAX_BITMAP_SIZE                                            Handle        = 0x8899001D\n\tD2DERR_INVALID_GRAPH_CONFIGURATION                                        Handle        = 0x8899001E\n\tD2DERR_INVALID_INTERNAL_GRAPH_CONFIGURATION                               Handle        = 0x8899001F\n\tD2DERR_CYCLIC_GRAPH                                                       Handle        = 0x88990020\n\tD2DERR_BITMAP_CANNOT_DRAW                                                 Handle        = 0x88990021\n\tD2DERR_OUTSTANDING_BITMAP_REFERENCES                                      Handle        = 0x88990022\n\tD2DERR_ORIGINAL_TARGET_NOT_BOUND                                          Handle        = 0x88990023\n\tD2DERR_INVALID_TARGET                                                     Handle        = 0x88990024\n\tD2DERR_BITMAP_BOUND_AS_TARGET                                             Handle        = 0x88990025\n\tD2DERR_INSUFFICIENT_DEVICE_CAPABILITIES                                   Handle        = 0x88990026\n\tD2DERR_INTERMEDIATE_TOO_LARGE                                             Handle        = 0x88990027\n\tD2DERR_EFFECT_IS_NOT_REGISTERED                                           Handle        = 0x88990028\n\tD2DERR_INVALID_PROPERTY                                                   Handle        = 0x88990029\n\tD2DERR_NO_SUBPROPERTIES                                                   Handle        = 0x8899002A\n\tD2DERR_PRINT_JOB_CLOSED                                                   Handle        = 0x8899002B\n\tD2DERR_PRINT_FORMAT_NOT_SUPPORTED                                         Handle        = 0x8899002C\n\tD2DERR_TOO_MANY_TRANSFORM_INPUTS                                          Handle        = 0x8899002D\n\tD2DERR_INVALID_GLYPH_IMAGE                                                Handle        = 0x8899002E\n\tDWRITE_E_FILEFORMAT                                                       Handle        = 0x88985000\n\tDWRITE_E_UNEXPECTED                                                       Handle        = 0x88985001\n\tDWRITE_E_NOFONT                                                           Handle        = 0x88985002\n\tDWRITE_E_FILENOTFOUND                                                     Handle        = 0x88985003\n\tDWRITE_E_FILEACCESS                                                       Handle        = 0x88985004\n\tDWRITE_E_FONTCOLLECTIONOBSOLETE                                           Handle        = 0x88985005\n\tDWRITE_E_ALREADYREGISTERED                                                Handle        = 0x88985006\n\tDWRITE_E_CACHEFORMAT                                                      Handle        = 0x88985007\n\tDWRITE_E_CACHEVERSION                                                     Handle        = 0x88985008\n\tDWRITE_E_UNSUPPORTEDOPERATION                                             Handle        = 0x88985009\n\tDWRITE_E_TEXTRENDERERINCOMPATIBLE                                         Handle        = 0x8898500A\n\tDWRITE_E_FLOWDIRECTIONCONFLICTS                                           Handle        = 0x8898500B\n\tDWRITE_E_NOCOLOR                                                          Handle        = 0x8898500C\n\tDWRITE_E_REMOTEFONT                                                       Handle        = 0x8898500D\n\tDWRITE_E_DOWNLOADCANCELLED                                                Handle        = 0x8898500E\n\tDWRITE_E_DOWNLOADFAILED                                                   Handle        = 0x8898500F\n\tDWRITE_E_TOOMANYDOWNLOADS                                                 Handle        = 0x88985010\n\tWINCODEC_ERR_WRONGSTATE                                                   Handle        = 0x88982F04\n\tWINCODEC_ERR_VALUEOUTOFRANGE                                              Handle        = 0x88982F05\n\tWINCODEC_ERR_UNKNOWNIMAGEFORMAT                                           Handle        = 0x88982F07\n\tWINCODEC_ERR_UNSUPPORTEDVERSION                                           Handle        = 0x88982F0B\n\tWINCODEC_ERR_NOTINITIALIZED                                               Handle        = 0x88982F0C\n\tWINCODEC_ERR_ALREADYLOCKED                                                Handle        = 0x88982F0D\n\tWINCODEC_ERR_PROPERTYNOTFOUND                                             Handle        = 0x88982F40\n\tWINCODEC_ERR_PROPERTYNOTSUPPORTED                                         Handle        = 0x88982F41\n\tWINCODEC_ERR_PROPERTYSIZE                                                 Handle        = 0x88982F42\n\tWINCODEC_ERR_CODECPRESENT                                                 Handle        = 0x88982F43\n\tWINCODEC_ERR_CODECNOTHUMBNAIL                                             Handle        = 0x88982F44\n\tWINCODEC_ERR_PALETTEUNAVAILABLE                                           Handle        = 0x88982F45\n\tWINCODEC_ERR_CODECTOOMANYSCANLINES                                        Handle        = 0x88982F46\n\tWINCODEC_ERR_INTERNALERROR                                                Handle        = 0x88982F48\n\tWINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS                             Handle        = 0x88982F49\n\tWINCODEC_ERR_COMPONENTNOTFOUND                                            Handle        = 0x88982F50\n\tWINCODEC_ERR_IMAGESIZEOUTOFRANGE                                          Handle        = 0x88982F51\n\tWINCODEC_ERR_TOOMUCHMETADATA                                              Handle        = 0x88982F52\n\tWINCODEC_ERR_BADIMAGE                                                     Handle        = 0x88982F60\n\tWINCODEC_ERR_BADHEADER                                                    Handle        = 0x88982F61\n\tWINCODEC_ERR_FRAMEMISSING                                                 Handle        = 0x88982F62\n\tWINCODEC_ERR_BADMETADATAHEADER                                            Handle        = 0x88982F63\n\tWINCODEC_ERR_BADSTREAMDATA                                                Handle        = 0x88982F70\n\tWINCODEC_ERR_STREAMWRITE                                                  Handle        = 0x88982F71\n\tWINCODEC_ERR_STREAMREAD                                                   Handle        = 0x88982F72\n\tWINCODEC_ERR_STREAMNOTAVAILABLE                                           Handle        = 0x88982F73\n\tWINCODEC_ERR_UNSUPPORTEDPIXELFORMAT                                       Handle        = 0x88982F80\n\tWINCODEC_ERR_UNSUPPORTEDOPERATION                                         Handle        = 0x88982F81\n\tWINCODEC_ERR_INVALIDREGISTRATION                                          Handle        = 0x88982F8A\n\tWINCODEC_ERR_COMPONENTINITIALIZEFAILURE                                   Handle        = 0x88982F8B\n\tWINCODEC_ERR_INSUFFICIENTBUFFER                                           Handle        = 0x88982F8C\n\tWINCODEC_ERR_DUPLICATEMETADATAPRESENT                                     Handle        = 0x88982F8D\n\tWINCODEC_ERR_PROPERTYUNEXPECTEDTYPE                                       Handle        = 0x88982F8E\n\tWINCODEC_ERR_UNEXPECTEDSIZE                                               Handle        = 0x88982F8F\n\tWINCODEC_ERR_INVALIDQUERYREQUEST                                          Handle        = 0x88982F90\n\tWINCODEC_ERR_UNEXPECTEDMETADATATYPE                                       Handle        = 0x88982F91\n\tWINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT                               Handle        = 0x88982F92\n\tWINCODEC_ERR_INVALIDQUERYCHARACTER                                        Handle        = 0x88982F93\n\tWINCODEC_ERR_WIN32ERROR                                                   Handle        = 0x88982F94\n\tWINCODEC_ERR_INVALIDPROGRESSIVELEVEL                                      Handle        = 0x88982F95\n\tWINCODEC_ERR_INVALIDJPEGSCANINDEX                                         Handle        = 0x88982F96\n\tMILERR_OBJECTBUSY                                                         Handle        = 0x88980001\n\tMILERR_INSUFFICIENTBUFFER                                                 Handle        = 0x88980002\n\tMILERR_WIN32ERROR                                                         Handle        = 0x88980003\n\tMILERR_SCANNER_FAILED                                                     Handle        = 0x88980004\n\tMILERR_SCREENACCESSDENIED                                                 Handle        = 0x88980005\n\tMILERR_DISPLAYSTATEINVALID                                                Handle        = 0x88980006\n\tMILERR_NONINVERTIBLEMATRIX                                                Handle        = 0x88980007\n\tMILERR_ZEROVECTOR                                                         Handle        = 0x88980008\n\tMILERR_TERMINATED                                                         Handle        = 0x88980009\n\tMILERR_BADNUMBER                                                          Handle        = 0x8898000A\n\tMILERR_INTERNALERROR                                                      Handle        = 0x88980080\n\tMILERR_DISPLAYFORMATNOTSUPPORTED                                          Handle        = 0x88980084\n\tMILERR_INVALIDCALL                                                        Handle        = 0x88980085\n\tMILERR_ALREADYLOCKED                                                      Handle        = 0x88980086\n\tMILERR_NOTLOCKED                                                          Handle        = 0x88980087\n\tMILERR_DEVICECANNOTRENDERTEXT                                             Handle        = 0x88980088\n\tMILERR_GLYPHBITMAPMISSED                                                  Handle        = 0x88980089\n\tMILERR_MALFORMEDGLYPHCACHE                                                Handle        = 0x8898008A\n\tMILERR_GENERIC_IGNORE                                                     Handle        = 0x8898008B\n\tMILERR_MALFORMED_GUIDELINE_DATA                                           Handle        = 0x8898008C\n\tMILERR_NO_HARDWARE_DEVICE                                                 Handle        = 0x8898008D\n\tMILERR_NEED_RECREATE_AND_PRESENT                                          Handle        = 0x8898008E\n\tMILERR_ALREADY_INITIALIZED                                                Handle        = 0x8898008F\n\tMILERR_MISMATCHED_SIZE                                                    Handle        = 0x88980090\n\tMILERR_NO_REDIRECTION_SURFACE_AVAILABLE                                   Handle        = 0x88980091\n\tMILERR_REMOTING_NOT_SUPPORTED                                             Handle        = 0x88980092\n\tMILERR_QUEUED_PRESENT_NOT_SUPPORTED                                       Handle        = 0x88980093\n\tMILERR_NOT_QUEUING_PRESENTS                                               Handle        = 0x88980094\n\tMILERR_NO_REDIRECTION_SURFACE_RETRY_LATER                                 Handle        = 0x88980095\n\tMILERR_TOOMANYSHADERELEMNTS                                               Handle        = 0x88980096\n\tMILERR_MROW_READLOCK_FAILED                                               Handle        = 0x88980097\n\tMILERR_MROW_UPDATE_FAILED                                                 Handle        = 0x88980098\n\tMILERR_SHADER_COMPILE_FAILED                                              Handle        = 0x88980099\n\tMILERR_MAX_TEXTURE_SIZE_EXCEEDED                                          Handle        = 0x8898009A\n\tMILERR_QPC_TIME_WENT_BACKWARD                                             Handle        = 0x8898009B\n\tMILERR_DXGI_ENUMERATION_OUT_OF_SYNC                                       Handle        = 0x8898009D\n\tMILERR_ADAPTER_NOT_FOUND                                                  Handle        = 0x8898009E\n\tMILERR_COLORSPACE_NOT_SUPPORTED                                           Handle        = 0x8898009F\n\tMILERR_PREFILTER_NOT_SUPPORTED                                            Handle        = 0x889800A0\n\tMILERR_DISPLAYID_ACCESS_DENIED                                            Handle        = 0x889800A1\n\tUCEERR_INVALIDPACKETHEADER                                                Handle        = 0x88980400\n\tUCEERR_UNKNOWNPACKET                                                      Handle        = 0x88980401\n\tUCEERR_ILLEGALPACKET                                                      Handle        = 0x88980402\n\tUCEERR_MALFORMEDPACKET                                                    Handle        = 0x88980403\n\tUCEERR_ILLEGALHANDLE                                                      Handle        = 0x88980404\n\tUCEERR_HANDLELOOKUPFAILED                                                 Handle        = 0x88980405\n\tUCEERR_RENDERTHREADFAILURE                                                Handle        = 0x88980406\n\tUCEERR_CTXSTACKFRSTTARGETNULL                                             Handle        = 0x88980407\n\tUCEERR_CONNECTIONIDLOOKUPFAILED                                           Handle        = 0x88980408\n\tUCEERR_BLOCKSFULL                                                         Handle        = 0x88980409\n\tUCEERR_MEMORYFAILURE                                                      Handle        = 0x8898040A\n\tUCEERR_PACKETRECORDOUTOFRANGE                                             Handle        = 0x8898040B\n\tUCEERR_ILLEGALRECORDTYPE                                                  Handle        = 0x8898040C\n\tUCEERR_OUTOFHANDLES                                                       Handle        = 0x8898040D\n\tUCEERR_UNCHANGABLE_UPDATE_ATTEMPTED                                       Handle        = 0x8898040E\n\tUCEERR_NO_MULTIPLE_WORKER_THREADS                                         Handle        = 0x8898040F\n\tUCEERR_REMOTINGNOTSUPPORTED                                               Handle        = 0x88980410\n\tUCEERR_MISSINGENDCOMMAND                                                  Handle        = 0x88980411\n\tUCEERR_MISSINGBEGINCOMMAND                                                Handle        = 0x88980412\n\tUCEERR_CHANNELSYNCTIMEDOUT                                                Handle        = 0x88980413\n\tUCEERR_CHANNELSYNCABANDONED                                               Handle        = 0x88980414\n\tUCEERR_UNSUPPORTEDTRANSPORTVERSION                                        Handle        = 0x88980415\n\tUCEERR_TRANSPORTUNAVAILABLE                                               Handle        = 0x88980416\n\tUCEERR_FEEDBACK_UNSUPPORTED                                               Handle        = 0x88980417\n\tUCEERR_COMMANDTRANSPORTDENIED                                             Handle        = 0x88980418\n\tUCEERR_GRAPHICSSTREAMUNAVAILABLE                                          Handle        = 0x88980419\n\tUCEERR_GRAPHICSSTREAMALREADYOPEN                                          Handle        = 0x88980420\n\tUCEERR_TRANSPORTDISCONNECTED                                              Handle        = 0x88980421\n\tUCEERR_TRANSPORTOVERLOADED                                                Handle        = 0x88980422\n\tUCEERR_PARTITION_ZOMBIED                                                  Handle        = 0x88980423\n\tMILAVERR_NOCLOCK                                                          Handle        = 0x88980500\n\tMILAVERR_NOMEDIATYPE                                                      Handle        = 0x88980501\n\tMILAVERR_NOVIDEOMIXER                                                     Handle        = 0x88980502\n\tMILAVERR_NOVIDEOPRESENTER                                                 Handle        = 0x88980503\n\tMILAVERR_NOREADYFRAMES                                                    Handle        = 0x88980504\n\tMILAVERR_MODULENOTLOADED                                                  Handle        = 0x88980505\n\tMILAVERR_WMPFACTORYNOTREGISTERED                                          Handle        = 0x88980506\n\tMILAVERR_INVALIDWMPVERSION                                                Handle        = 0x88980507\n\tMILAVERR_INSUFFICIENTVIDEORESOURCES                                       Handle        = 0x88980508\n\tMILAVERR_VIDEOACCELERATIONNOTAVAILABLE                                    Handle        = 0x88980509\n\tMILAVERR_REQUESTEDTEXTURETOOBIG                                           Handle        = 0x8898050A\n\tMILAVERR_SEEKFAILED                                                       Handle        = 0x8898050B\n\tMILAVERR_UNEXPECTEDWMPFAILURE                                             Handle        = 0x8898050C\n\tMILAVERR_MEDIAPLAYERCLOSED                                                Handle        = 0x8898050D\n\tMILAVERR_UNKNOWNHARDWAREERROR                                             Handle        = 0x8898050E\n\tMILEFFECTSERR_UNKNOWNPROPERTY                                             Handle        = 0x8898060E\n\tMILEFFECTSERR_EFFECTNOTPARTOFGROUP                                        Handle        = 0x8898060F\n\tMILEFFECTSERR_NOINPUTSOURCEATTACHED                                       Handle        = 0x88980610\n\tMILEFFECTSERR_CONNECTORNOTCONNECTED                                       Handle        = 0x88980611\n\tMILEFFECTSERR_CONNECTORNOTASSOCIATEDWITHEFFECT                            Handle        = 0x88980612\n\tMILEFFECTSERR_RESERVED                                                    Handle        = 0x88980613\n\tMILEFFECTSERR_CYCLEDETECTED                                               Handle        = 0x88980614\n\tMILEFFECTSERR_EFFECTINMORETHANONEGRAPH                                    Handle        = 0x88980615\n\tMILEFFECTSERR_EFFECTALREADYINAGRAPH                                       Handle        = 0x88980616\n\tMILEFFECTSERR_EFFECTHASNOCHILDREN                                         Handle        = 0x88980617\n\tMILEFFECTSERR_ALREADYATTACHEDTOLISTENER                                   Handle        = 0x88980618\n\tMILEFFECTSERR_NOTAFFINETRANSFORM                                          Handle        = 0x88980619\n\tMILEFFECTSERR_EMPTYBOUNDS                                                 Handle        = 0x8898061A\n\tMILEFFECTSERR_OUTPUTSIZETOOLARGE                                          Handle        = 0x8898061B\n\tDWMERR_STATE_TRANSITION_FAILED                                            Handle        = 0x88980700\n\tDWMERR_THEME_FAILED                                                       Handle        = 0x88980701\n\tDWMERR_CATASTROPHIC_FAILURE                                               Handle        = 0x88980702\n\tDCOMPOSITION_ERROR_WINDOW_ALREADY_COMPOSED                                Handle        = 0x88980800\n\tDCOMPOSITION_ERROR_SURFACE_BEING_RENDERED                                 Handle        = 0x88980801\n\tDCOMPOSITION_ERROR_SURFACE_NOT_BEING_RENDERED                             Handle        = 0x88980802\n\tONL_E_INVALID_AUTHENTICATION_TARGET                                       Handle        = 0x80860001\n\tONL_E_ACCESS_DENIED_BY_TOU                                                Handle        = 0x80860002\n\tONL_E_INVALID_APPLICATION                                                 Handle        = 0x80860003\n\tONL_E_PASSWORD_UPDATE_REQUIRED                                            Handle        = 0x80860004\n\tONL_E_ACCOUNT_UPDATE_REQUIRED                                             Handle        = 0x80860005\n\tONL_E_FORCESIGNIN                                                         Handle        = 0x80860006\n\tONL_E_ACCOUNT_LOCKED                                                      Handle        = 0x80860007\n\tONL_E_PARENTAL_CONSENT_REQUIRED                                           Handle        = 0x80860008\n\tONL_E_EMAIL_VERIFICATION_REQUIRED                                         Handle        = 0x80860009\n\tONL_E_ACCOUNT_SUSPENDED_COMPROIMISE                                       Handle        = 0x8086000A\n\tONL_E_ACCOUNT_SUSPENDED_ABUSE                                             Handle        = 0x8086000B\n\tONL_E_ACTION_REQUIRED                                                     Handle        = 0x8086000C\n\tONL_CONNECTION_COUNT_LIMIT                                                Handle        = 0x8086000D\n\tONL_E_CONNECTED_ACCOUNT_CAN_NOT_SIGNOUT                                   Handle        = 0x8086000E\n\tONL_E_USER_AUTHENTICATION_REQUIRED                                        Handle        = 0x8086000F\n\tONL_E_REQUEST_THROTTLED                                                   Handle        = 0x80860010\n\tFA_E_MAX_PERSISTED_ITEMS_REACHED                                          Handle        = 0x80270220\n\tFA_E_HOMEGROUP_NOT_AVAILABLE                                              Handle        = 0x80270222\n\tE_MONITOR_RESOLUTION_TOO_LOW                                              Handle        = 0x80270250\n\tE_ELEVATED_ACTIVATION_NOT_SUPPORTED                                       Handle        = 0x80270251\n\tE_UAC_DISABLED                                                            Handle        = 0x80270252\n\tE_FULL_ADMIN_NOT_SUPPORTED                                                Handle        = 0x80270253\n\tE_APPLICATION_NOT_REGISTERED                                              Handle        = 0x80270254\n\tE_MULTIPLE_EXTENSIONS_FOR_APPLICATION                                     Handle        = 0x80270255\n\tE_MULTIPLE_PACKAGES_FOR_FAMILY                                            Handle        = 0x80270256\n\tE_APPLICATION_MANAGER_NOT_RUNNING                                         Handle        = 0x80270257\n\tS_STORE_LAUNCHED_FOR_REMEDIATION                                          Handle        = 0x00270258\n\tS_APPLICATION_ACTIVATION_ERROR_HANDLED_BY_DIALOG                          Handle        = 0x00270259\n\tE_APPLICATION_ACTIVATION_TIMED_OUT                                        Handle        = 0x8027025A\n\tE_APPLICATION_ACTIVATION_EXEC_FAILURE                                     Handle        = 0x8027025B\n\tE_APPLICATION_TEMPORARY_LICENSE_ERROR                                     Handle        = 0x8027025C\n\tE_APPLICATION_TRIAL_LICENSE_EXPIRED                                       Handle        = 0x8027025D\n\tE_SKYDRIVE_ROOT_TARGET_FILE_SYSTEM_NOT_SUPPORTED                          Handle        = 0x80270260\n\tE_SKYDRIVE_ROOT_TARGET_OVERLAP                                            Handle        = 0x80270261\n\tE_SKYDRIVE_ROOT_TARGET_CANNOT_INDEX                                       Handle        = 0x80270262\n\tE_SKYDRIVE_FILE_NOT_UPLOADED                                              Handle        = 0x80270263\n\tE_SKYDRIVE_UPDATE_AVAILABILITY_FAIL                                       Handle        = 0x80270264\n\tE_SKYDRIVE_ROOT_TARGET_VOLUME_ROOT_NOT_SUPPORTED                          Handle        = 0x80270265\n\tE_SYNCENGINE_FILE_SIZE_OVER_LIMIT                                         Handle        = 0x8802B001\n\tE_SYNCENGINE_FILE_SIZE_EXCEEDS_REMAINING_QUOTA                            Handle        = 0x8802B002\n\tE_SYNCENGINE_UNSUPPORTED_FILE_NAME                                        Handle        = 0x8802B003\n\tE_SYNCENGINE_FOLDER_ITEM_COUNT_LIMIT_EXCEEDED                             Handle        = 0x8802B004\n\tE_SYNCENGINE_FILE_SYNC_PARTNER_ERROR                                      Handle        = 0x8802B005\n\tE_SYNCENGINE_SYNC_PAUSED_BY_SERVICE                                       Handle        = 0x8802B006\n\tE_SYNCENGINE_FILE_IDENTIFIER_UNKNOWN                                      Handle        = 0x8802C002\n\tE_SYNCENGINE_SERVICE_AUTHENTICATION_FAILED                                Handle        = 0x8802C003\n\tE_SYNCENGINE_UNKNOWN_SERVICE_ERROR                                        Handle        = 0x8802C004\n\tE_SYNCENGINE_SERVICE_RETURNED_UNEXPECTED_SIZE                             Handle        = 0x8802C005\n\tE_SYNCENGINE_REQUEST_BLOCKED_BY_SERVICE                                   Handle        = 0x8802C006\n\tE_SYNCENGINE_REQUEST_BLOCKED_DUE_TO_CLIENT_ERROR                          Handle        = 0x8802C007\n\tE_SYNCENGINE_FOLDER_INACCESSIBLE                                          Handle        = 0x8802D001\n\tE_SYNCENGINE_UNSUPPORTED_FOLDER_NAME                                      Handle        = 0x8802D002\n\tE_SYNCENGINE_UNSUPPORTED_MARKET                                           Handle        = 0x8802D003\n\tE_SYNCENGINE_PATH_LENGTH_LIMIT_EXCEEDED                                   Handle        = 0x8802D004\n\tE_SYNCENGINE_REMOTE_PATH_LENGTH_LIMIT_EXCEEDED                            Handle        = 0x8802D005\n\tE_SYNCENGINE_CLIENT_UPDATE_NEEDED                                         Handle        = 0x8802D006\n\tE_SYNCENGINE_PROXY_AUTHENTICATION_REQUIRED                                Handle        = 0x8802D007\n\tE_SYNCENGINE_STORAGE_SERVICE_PROVISIONING_FAILED                          Handle        = 0x8802D008\n\tE_SYNCENGINE_UNSUPPORTED_REPARSE_POINT                                    Handle        = 0x8802D009\n\tE_SYNCENGINE_STORAGE_SERVICE_BLOCKED                                      Handle        = 0x8802D00A\n\tE_SYNCENGINE_FOLDER_IN_REDIRECTION                                        Handle        = 0x8802D00B\n\tEAS_E_POLICY_NOT_MANAGED_BY_OS                                            Handle        = 0x80550001\n\tEAS_E_POLICY_COMPLIANT_WITH_ACTIONS                                       Handle        = 0x80550002\n\tEAS_E_REQUESTED_POLICY_NOT_ENFORCEABLE                                    Handle        = 0x80550003\n\tEAS_E_CURRENT_USER_HAS_BLANK_PASSWORD                                     Handle        = 0x80550004\n\tEAS_E_REQUESTED_POLICY_PASSWORD_EXPIRATION_INCOMPATIBLE                   Handle        = 0x80550005\n\tEAS_E_USER_CANNOT_CHANGE_PASSWORD                                         Handle        = 0x80550006\n\tEAS_E_ADMINS_HAVE_BLANK_PASSWORD                                          Handle        = 0x80550007\n\tEAS_E_ADMINS_CANNOT_CHANGE_PASSWORD                                       Handle        = 0x80550008\n\tEAS_E_LOCAL_CONTROLLED_USERS_CANNOT_CHANGE_PASSWORD                       Handle        = 0x80550009\n\tEAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CONNECTED_ADMINS                Handle        = 0x8055000A\n\tEAS_E_CONNECTED_ADMINS_NEED_TO_CHANGE_PASSWORD                            Handle        = 0x8055000B\n\tEAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CURRENT_CONNECTED_USER          Handle        = 0x8055000C\n\tEAS_E_CURRENT_CONNECTED_USER_NEED_TO_CHANGE_PASSWORD                      Handle        = 0x8055000D\n\tWEB_E_UNSUPPORTED_FORMAT                                                  Handle        = 0x83750001\n\tWEB_E_INVALID_XML                                                         Handle        = 0x83750002\n\tWEB_E_MISSING_REQUIRED_ELEMENT                                            Handle        = 0x83750003\n\tWEB_E_MISSING_REQUIRED_ATTRIBUTE                                          Handle        = 0x83750004\n\tWEB_E_UNEXPECTED_CONTENT                                                  Handle        = 0x83750005\n\tWEB_E_RESOURCE_TOO_LARGE                                                  Handle        = 0x83750006\n\tWEB_E_INVALID_JSON_STRING                                                 Handle        = 0x83750007\n\tWEB_E_INVALID_JSON_NUMBER                                                 Handle        = 0x83750008\n\tWEB_E_JSON_VALUE_NOT_FOUND                                                Handle        = 0x83750009\n\tHTTP_E_STATUS_UNEXPECTED                                                  Handle        = 0x80190001\n\tHTTP_E_STATUS_UNEXPECTED_REDIRECTION                                      Handle        = 0x80190003\n\tHTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR                                     Handle        = 0x80190004\n\tHTTP_E_STATUS_UNEXPECTED_SERVER_ERROR                                     Handle        = 0x80190005\n\tHTTP_E_STATUS_AMBIGUOUS                                                   Handle        = 0x8019012C\n\tHTTP_E_STATUS_MOVED                                                       Handle        = 0x8019012D\n\tHTTP_E_STATUS_REDIRECT                                                    Handle        = 0x8019012E\n\tHTTP_E_STATUS_REDIRECT_METHOD                                             Handle        = 0x8019012F\n\tHTTP_E_STATUS_NOT_MODIFIED                                                Handle        = 0x80190130\n\tHTTP_E_STATUS_USE_PROXY                                                   Handle        = 0x80190131\n\tHTTP_E_STATUS_REDIRECT_KEEP_VERB                                          Handle        = 0x80190133\n\tHTTP_E_STATUS_BAD_REQUEST                                                 Handle        = 0x80190190\n\tHTTP_E_STATUS_DENIED                                                      Handle        = 0x80190191\n\tHTTP_E_STATUS_PAYMENT_REQ                                                 Handle        = 0x80190192\n\tHTTP_E_STATUS_FORBIDDEN                                                   Handle        = 0x80190193\n\tHTTP_E_STATUS_NOT_FOUND                                                   Handle        = 0x80190194\n\tHTTP_E_STATUS_BAD_METHOD                                                  Handle        = 0x80190195\n\tHTTP_E_STATUS_NONE_ACCEPTABLE                                             Handle        = 0x80190196\n\tHTTP_E_STATUS_PROXY_AUTH_REQ                                              Handle        = 0x80190197\n\tHTTP_E_STATUS_REQUEST_TIMEOUT                                             Handle        = 0x80190198\n\tHTTP_E_STATUS_CONFLICT                                                    Handle        = 0x80190199\n\tHTTP_E_STATUS_GONE                                                        Handle        = 0x8019019A\n\tHTTP_E_STATUS_LENGTH_REQUIRED                                             Handle        = 0x8019019B\n\tHTTP_E_STATUS_PRECOND_FAILED                                              Handle        = 0x8019019C\n\tHTTP_E_STATUS_REQUEST_TOO_LARGE                                           Handle        = 0x8019019D\n\tHTTP_E_STATUS_URI_TOO_LONG                                                Handle        = 0x8019019E\n\tHTTP_E_STATUS_UNSUPPORTED_MEDIA                                           Handle        = 0x8019019F\n\tHTTP_E_STATUS_RANGE_NOT_SATISFIABLE                                       Handle        = 0x801901A0\n\tHTTP_E_STATUS_EXPECTATION_FAILED                                          Handle        = 0x801901A1\n\tHTTP_E_STATUS_SERVER_ERROR                                                Handle        = 0x801901F4\n\tHTTP_E_STATUS_NOT_SUPPORTED                                               Handle        = 0x801901F5\n\tHTTP_E_STATUS_BAD_GATEWAY                                                 Handle        = 0x801901F6\n\tHTTP_E_STATUS_SERVICE_UNAVAIL                                             Handle        = 0x801901F7\n\tHTTP_E_STATUS_GATEWAY_TIMEOUT                                             Handle        = 0x801901F8\n\tHTTP_E_STATUS_VERSION_NOT_SUP                                             Handle        = 0x801901F9\n\tE_INVALID_PROTOCOL_OPERATION                                              Handle        = 0x83760001\n\tE_INVALID_PROTOCOL_FORMAT                                                 Handle        = 0x83760002\n\tE_PROTOCOL_EXTENSIONS_NOT_SUPPORTED                                       Handle        = 0x83760003\n\tE_SUBPROTOCOL_NOT_SUPPORTED                                               Handle        = 0x83760004\n\tE_PROTOCOL_VERSION_NOT_SUPPORTED                                          Handle        = 0x83760005\n\tINPUT_E_OUT_OF_ORDER                                                      Handle        = 0x80400000\n\tINPUT_E_REENTRANCY                                                        Handle        = 0x80400001\n\tINPUT_E_MULTIMODAL                                                        Handle        = 0x80400002\n\tINPUT_E_PACKET                                                            Handle        = 0x80400003\n\tINPUT_E_FRAME                                                             Handle        = 0x80400004\n\tINPUT_E_HISTORY                                                           Handle        = 0x80400005\n\tINPUT_E_DEVICE_INFO                                                       Handle        = 0x80400006\n\tINPUT_E_TRANSFORM                                                         Handle        = 0x80400007\n\tINPUT_E_DEVICE_PROPERTY                                                   Handle        = 0x80400008\n\tINET_E_INVALID_URL                                                        Handle        = 0x800C0002\n\tINET_E_NO_SESSION                                                         Handle        = 0x800C0003\n\tINET_E_CANNOT_CONNECT                                                     Handle        = 0x800C0004\n\tINET_E_RESOURCE_NOT_FOUND                                                 Handle        = 0x800C0005\n\tINET_E_OBJECT_NOT_FOUND                                                   Handle        = 0x800C0006\n\tINET_E_DATA_NOT_AVAILABLE                                                 Handle        = 0x800C0007\n\tINET_E_DOWNLOAD_FAILURE                                                   Handle        = 0x800C0008\n\tINET_E_AUTHENTICATION_REQUIRED                                            Handle        = 0x800C0009\n\tINET_E_NO_VALID_MEDIA                                                     Handle        = 0x800C000A\n\tINET_E_CONNECTION_TIMEOUT                                                 Handle        = 0x800C000B\n\tINET_E_INVALID_REQUEST                                                    Handle        = 0x800C000C\n\tINET_E_UNKNOWN_PROTOCOL                                                   Handle        = 0x800C000D\n\tINET_E_SECURITY_PROBLEM                                                   Handle        = 0x800C000E\n\tINET_E_CANNOT_LOAD_DATA                                                   Handle        = 0x800C000F\n\tINET_E_CANNOT_INSTANTIATE_OBJECT                                          Handle        = 0x800C0010\n\tINET_E_INVALID_CERTIFICATE                                                Handle        = 0x800C0019\n\tINET_E_REDIRECT_FAILED                                                    Handle        = 0x800C0014\n\tINET_E_REDIRECT_TO_DIR                                                    Handle        = 0x800C0015\n\tERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN                                 Handle        = 0x80B00001\n\tERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN                                 Handle        = 0x80B00002\n\tERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN                                 Handle        = 0x80B00003\n\tERROR_DBG_START_SERVER_FAILURE_LOCKDOWN                                   Handle        = 0x80B00004\n\tERROR_IO_PREEMPTED                                                        Handle        = 0x89010001\n\tJSCRIPT_E_CANTEXECUTE                                                     Handle        = 0x89020001\n\tWEP_E_NOT_PROVISIONED_ON_ALL_VOLUMES                                      Handle        = 0x88010001\n\tWEP_E_FIXED_DATA_NOT_SUPPORTED                                            Handle        = 0x88010002\n\tWEP_E_HARDWARE_NOT_COMPLIANT                                              Handle        = 0x88010003\n\tWEP_E_LOCK_NOT_CONFIGURED                                                 Handle        = 0x88010004\n\tWEP_E_PROTECTION_SUSPENDED                                                Handle        = 0x88010005\n\tWEP_E_NO_LICENSE                                                          Handle        = 0x88010006\n\tWEP_E_OS_NOT_PROTECTED                                                    Handle        = 0x88010007\n\tWEP_E_UNEXPECTED_FAIL                                                     Handle        = 0x88010008\n\tWEP_E_BUFFER_TOO_LARGE                                                    Handle        = 0x88010009\n\tERROR_SVHDX_ERROR_STORED                                                  Handle        = 0xC05C0000\n\tERROR_SVHDX_ERROR_NOT_AVAILABLE                                           Handle        = 0xC05CFF00\n\tERROR_SVHDX_UNIT_ATTENTION_AVAILABLE                                      Handle        = 0xC05CFF01\n\tERROR_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED                          Handle        = 0xC05CFF02\n\tERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED                         Handle        = 0xC05CFF03\n\tERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED                          Handle        = 0xC05CFF04\n\tERROR_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED                        Handle        = 0xC05CFF05\n\tERROR_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED                   Handle        = 0xC05CFF06\n\tERROR_SVHDX_RESERVATION_CONFLICT                                          Handle        = 0xC05CFF07\n\tERROR_SVHDX_WRONG_FILE_TYPE                                               Handle        = 0xC05CFF08\n\tERROR_SVHDX_VERSION_MISMATCH                                              Handle        = 0xC05CFF09\n\tERROR_VHD_SHARED                                                          Handle        = 0xC05CFF0A\n\tERROR_SVHDX_NO_INITIATOR                                                  Handle        = 0xC05CFF0B\n\tERROR_VHDSET_BACKING_STORAGE_NOT_FOUND                                    Handle        = 0xC05CFF0C\n\tERROR_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP                               Handle        = 0xC05D0000\n\tERROR_SMB_BAD_CLUSTER_DIALECT                                             Handle        = 0xC05D0001\n\tWININET_E_OUT_OF_HANDLES                                                  Handle        = 0x80072EE1\n\tWININET_E_TIMEOUT                                                         Handle        = 0x80072EE2\n\tWININET_E_EXTENDED_ERROR                                                  Handle        = 0x80072EE3\n\tWININET_E_INTERNAL_ERROR                                                  Handle        = 0x80072EE4\n\tWININET_E_INVALID_URL                                                     Handle        = 0x80072EE5\n\tWININET_E_UNRECOGNIZED_SCHEME                                             Handle        = 0x80072EE6\n\tWININET_E_NAME_NOT_RESOLVED                                               Handle        = 0x80072EE7\n\tWININET_E_PROTOCOL_NOT_FOUND                                              Handle        = 0x80072EE8\n\tWININET_E_INVALID_OPTION                                                  Handle        = 0x80072EE9\n\tWININET_E_BAD_OPTION_LENGTH                                               Handle        = 0x80072EEA\n\tWININET_E_OPTION_NOT_SETTABLE                                             Handle        = 0x80072EEB\n\tWININET_E_SHUTDOWN                                                        Handle        = 0x80072EEC\n\tWININET_E_INCORRECT_USER_NAME                                             Handle        = 0x80072EED\n\tWININET_E_INCORRECT_PASSWORD                                              Handle        = 0x80072EEE\n\tWININET_E_LOGIN_FAILURE                                                   Handle        = 0x80072EEF\n\tWININET_E_INVALID_OPERATION                                               Handle        = 0x80072EF0\n\tWININET_E_OPERATION_CANCELLED                                             Handle        = 0x80072EF1\n\tWININET_E_INCORRECT_HANDLE_TYPE                                           Handle        = 0x80072EF2\n\tWININET_E_INCORRECT_HANDLE_STATE                                          Handle        = 0x80072EF3\n\tWININET_E_NOT_PROXY_REQUEST                                               Handle        = 0x80072EF4\n\tWININET_E_REGISTRY_VALUE_NOT_FOUND                                        Handle        = 0x80072EF5\n\tWININET_E_BAD_REGISTRY_PARAMETER                                          Handle        = 0x80072EF6\n\tWININET_E_NO_DIRECT_ACCESS                                                Handle        = 0x80072EF7\n\tWININET_E_NO_CONTEXT                                                      Handle        = 0x80072EF8\n\tWININET_E_NO_CALLBACK                                                     Handle        = 0x80072EF9\n\tWININET_E_REQUEST_PENDING                                                 Handle        = 0x80072EFA\n\tWININET_E_INCORRECT_FORMAT                                                Handle        = 0x80072EFB\n\tWININET_E_ITEM_NOT_FOUND                                                  Handle        = 0x80072EFC\n\tWININET_E_CANNOT_CONNECT                                                  Handle        = 0x80072EFD\n\tWININET_E_CONNECTION_ABORTED                                              Handle        = 0x80072EFE\n\tWININET_E_CONNECTION_RESET                                                Handle        = 0x80072EFF\n\tWININET_E_FORCE_RETRY                                                     Handle        = 0x80072F00\n\tWININET_E_INVALID_PROXY_REQUEST                                           Handle        = 0x80072F01\n\tWININET_E_NEED_UI                                                         Handle        = 0x80072F02\n\tWININET_E_HANDLE_EXISTS                                                   Handle        = 0x80072F04\n\tWININET_E_SEC_CERT_DATE_INVALID                                           Handle        = 0x80072F05\n\tWININET_E_SEC_CERT_CN_INVALID                                             Handle        = 0x80072F06\n\tWININET_E_HTTP_TO_HTTPS_ON_REDIR                                          Handle        = 0x80072F07\n\tWININET_E_HTTPS_TO_HTTP_ON_REDIR                                          Handle        = 0x80072F08\n\tWININET_E_MIXED_SECURITY                                                  Handle        = 0x80072F09\n\tWININET_E_CHG_POST_IS_NON_SECURE                                          Handle        = 0x80072F0A\n\tWININET_E_POST_IS_NON_SECURE                                              Handle        = 0x80072F0B\n\tWININET_E_CLIENT_AUTH_CERT_NEEDED                                         Handle        = 0x80072F0C\n\tWININET_E_INVALID_CA                                                      Handle        = 0x80072F0D\n\tWININET_E_CLIENT_AUTH_NOT_SETUP                                           Handle        = 0x80072F0E\n\tWININET_E_ASYNC_THREAD_FAILED                                             Handle        = 0x80072F0F\n\tWININET_E_REDIRECT_SCHEME_CHANGE                                          Handle        = 0x80072F10\n\tWININET_E_DIALOG_PENDING                                                  Handle        = 0x80072F11\n\tWININET_E_RETRY_DIALOG                                                    Handle        = 0x80072F12\n\tWININET_E_NO_NEW_CONTAINERS                                               Handle        = 0x80072F13\n\tWININET_E_HTTPS_HTTP_SUBMIT_REDIR                                         Handle        = 0x80072F14\n\tWININET_E_SEC_CERT_ERRORS                                                 Handle        = 0x80072F17\n\tWININET_E_SEC_CERT_REV_FAILED                                             Handle        = 0x80072F19\n\tWININET_E_HEADER_NOT_FOUND                                                Handle        = 0x80072F76\n\tWININET_E_DOWNLEVEL_SERVER                                                Handle        = 0x80072F77\n\tWININET_E_INVALID_SERVER_RESPONSE                                         Handle        = 0x80072F78\n\tWININET_E_INVALID_HEADER                                                  Handle        = 0x80072F79\n\tWININET_E_INVALID_QUERY_REQUEST                                           Handle        = 0x80072F7A\n\tWININET_E_HEADER_ALREADY_EXISTS                                           Handle        = 0x80072F7B\n\tWININET_E_REDIRECT_FAILED                                                 Handle        = 0x80072F7C\n\tWININET_E_SECURITY_CHANNEL_ERROR                                          Handle        = 0x80072F7D\n\tWININET_E_UNABLE_TO_CACHE_FILE                                            Handle        = 0x80072F7E\n\tWININET_E_TCPIP_NOT_INSTALLED                                             Handle        = 0x80072F7F\n\tWININET_E_DISCONNECTED                                                    Handle        = 0x80072F83\n\tWININET_E_SERVER_UNREACHABLE                                              Handle        = 0x80072F84\n\tWININET_E_PROXY_SERVER_UNREACHABLE                                        Handle        = 0x80072F85\n\tWININET_E_BAD_AUTO_PROXY_SCRIPT                                           Handle        = 0x80072F86\n\tWININET_E_UNABLE_TO_DOWNLOAD_SCRIPT                                       Handle        = 0x80072F87\n\tWININET_E_SEC_INVALID_CERT                                                Handle        = 0x80072F89\n\tWININET_E_SEC_CERT_REVOKED                                                Handle        = 0x80072F8A\n\tWININET_E_FAILED_DUETOSECURITYCHECK                                       Handle        = 0x80072F8B\n\tWININET_E_NOT_INITIALIZED                                                 Handle        = 0x80072F8C\n\tWININET_E_LOGIN_FAILURE_DISPLAY_ENTITY_BODY                               Handle        = 0x80072F8E\n\tWININET_E_DECODING_FAILED                                                 Handle        = 0x80072F8F\n\tWININET_E_NOT_REDIRECTED                                                  Handle        = 0x80072F80\n\tWININET_E_COOKIE_NEEDS_CONFIRMATION                                       Handle        = 0x80072F81\n\tWININET_E_COOKIE_DECLINED                                                 Handle        = 0x80072F82\n\tWININET_E_REDIRECT_NEEDS_CONFIRMATION                                     Handle        = 0x80072F88\n\tSQLITE_E_ERROR                                                            Handle        = 0x87AF0001\n\tSQLITE_E_INTERNAL                                                         Handle        = 0x87AF0002\n\tSQLITE_E_PERM                                                             Handle        = 0x87AF0003\n\tSQLITE_E_ABORT                                                            Handle        = 0x87AF0004\n\tSQLITE_E_BUSY                                                             Handle        = 0x87AF0005\n\tSQLITE_E_LOCKED                                                           Handle        = 0x87AF0006\n\tSQLITE_E_NOMEM                                                            Handle        = 0x87AF0007\n\tSQLITE_E_READONLY                                                         Handle        = 0x87AF0008\n\tSQLITE_E_INTERRUPT                                                        Handle        = 0x87AF0009\n\tSQLITE_E_IOERR                                                            Handle        = 0x87AF000A\n\tSQLITE_E_CORRUPT                                                          Handle        = 0x87AF000B\n\tSQLITE_E_NOTFOUND                                                         Handle        = 0x87AF000C\n\tSQLITE_E_FULL                                                             Handle        = 0x87AF000D\n\tSQLITE_E_CANTOPEN                                                         Handle        = 0x87AF000E\n\tSQLITE_E_PROTOCOL                                                         Handle        = 0x87AF000F\n\tSQLITE_E_EMPTY                                                            Handle        = 0x87AF0010\n\tSQLITE_E_SCHEMA                                                           Handle        = 0x87AF0011\n\tSQLITE_E_TOOBIG                                                           Handle        = 0x87AF0012\n\tSQLITE_E_CONSTRAINT                                                       Handle        = 0x87AF0013\n\tSQLITE_E_MISMATCH                                                         Handle        = 0x87AF0014\n\tSQLITE_E_MISUSE                                                           Handle        = 0x87AF0015\n\tSQLITE_E_NOLFS                                                            Handle        = 0x87AF0016\n\tSQLITE_E_AUTH                                                             Handle        = 0x87AF0017\n\tSQLITE_E_FORMAT                                                           Handle        = 0x87AF0018\n\tSQLITE_E_RANGE                                                            Handle        = 0x87AF0019\n\tSQLITE_E_NOTADB                                                           Handle        = 0x87AF001A\n\tSQLITE_E_NOTICE                                                           Handle        = 0x87AF001B\n\tSQLITE_E_WARNING                                                          Handle        = 0x87AF001C\n\tSQLITE_E_ROW                                                              Handle        = 0x87AF0064\n\tSQLITE_E_DONE                                                             Handle        = 0x87AF0065\n\tSQLITE_E_IOERR_READ                                                       Handle        = 0x87AF010A\n\tSQLITE_E_IOERR_SHORT_READ                                                 Handle        = 0x87AF020A\n\tSQLITE_E_IOERR_WRITE                                                      Handle        = 0x87AF030A\n\tSQLITE_E_IOERR_FSYNC                                                      Handle        = 0x87AF040A\n\tSQLITE_E_IOERR_DIR_FSYNC                                                  Handle        = 0x87AF050A\n\tSQLITE_E_IOERR_TRUNCATE                                                   Handle        = 0x87AF060A\n\tSQLITE_E_IOERR_FSTAT                                                      Handle        = 0x87AF070A\n\tSQLITE_E_IOERR_UNLOCK                                                     Handle        = 0x87AF080A\n\tSQLITE_E_IOERR_RDLOCK                                                     Handle        = 0x87AF090A\n\tSQLITE_E_IOERR_DELETE                                                     Handle        = 0x87AF0A0A\n\tSQLITE_E_IOERR_BLOCKED                                                    Handle        = 0x87AF0B0A\n\tSQLITE_E_IOERR_NOMEM                                                      Handle        = 0x87AF0C0A\n\tSQLITE_E_IOERR_ACCESS                                                     Handle        = 0x87AF0D0A\n\tSQLITE_E_IOERR_CHECKRESERVEDLOCK                                          Handle        = 0x87AF0E0A\n\tSQLITE_E_IOERR_LOCK                                                       Handle        = 0x87AF0F0A\n\tSQLITE_E_IOERR_CLOSE                                                      Handle        = 0x87AF100A\n\tSQLITE_E_IOERR_DIR_CLOSE                                                  Handle        = 0x87AF110A\n\tSQLITE_E_IOERR_SHMOPEN                                                    Handle        = 0x87AF120A\n\tSQLITE_E_IOERR_SHMSIZE                                                    Handle        = 0x87AF130A\n\tSQLITE_E_IOERR_SHMLOCK                                                    Handle        = 0x87AF140A\n\tSQLITE_E_IOERR_SHMMAP                                                     Handle        = 0x87AF150A\n\tSQLITE_E_IOERR_SEEK                                                       Handle        = 0x87AF160A\n\tSQLITE_E_IOERR_DELETE_NOENT                                               Handle        = 0x87AF170A\n\tSQLITE_E_IOERR_MMAP                                                       Handle        = 0x87AF180A\n\tSQLITE_E_IOERR_GETTEMPPATH                                                Handle        = 0x87AF190A\n\tSQLITE_E_IOERR_CONVPATH                                                   Handle        = 0x87AF1A0A\n\tSQLITE_E_IOERR_VNODE                                                      Handle        = 0x87AF1A02\n\tSQLITE_E_IOERR_AUTH                                                       Handle        = 0x87AF1A03\n\tSQLITE_E_LOCKED_SHAREDCACHE                                               Handle        = 0x87AF0106\n\tSQLITE_E_BUSY_RECOVERY                                                    Handle        = 0x87AF0105\n\tSQLITE_E_BUSY_SNAPSHOT                                                    Handle        = 0x87AF0205\n\tSQLITE_E_CANTOPEN_NOTEMPDIR                                               Handle        = 0x87AF010E\n\tSQLITE_E_CANTOPEN_ISDIR                                                   Handle        = 0x87AF020E\n\tSQLITE_E_CANTOPEN_FULLPATH                                                Handle        = 0x87AF030E\n\tSQLITE_E_CANTOPEN_CONVPATH                                                Handle        = 0x87AF040E\n\tSQLITE_E_CORRUPT_VTAB                                                     Handle        = 0x87AF010B\n\tSQLITE_E_READONLY_RECOVERY                                                Handle        = 0x87AF0108\n\tSQLITE_E_READONLY_CANTLOCK                                                Handle        = 0x87AF0208\n\tSQLITE_E_READONLY_ROLLBACK                                                Handle        = 0x87AF0308\n\tSQLITE_E_READONLY_DBMOVED                                                 Handle        = 0x87AF0408\n\tSQLITE_E_ABORT_ROLLBACK                                                   Handle        = 0x87AF0204\n\tSQLITE_E_CONSTRAINT_CHECK                                                 Handle        = 0x87AF0113\n\tSQLITE_E_CONSTRAINT_COMMITHOOK                                            Handle        = 0x87AF0213\n\tSQLITE_E_CONSTRAINT_FOREIGNKEY                                            Handle        = 0x87AF0313\n\tSQLITE_E_CONSTRAINT_FUNCTION                                              Handle        = 0x87AF0413\n\tSQLITE_E_CONSTRAINT_NOTNULL                                               Handle        = 0x87AF0513\n\tSQLITE_E_CONSTRAINT_PRIMARYKEY                                            Handle        = 0x87AF0613\n\tSQLITE_E_CONSTRAINT_TRIGGER                                               Handle        = 0x87AF0713\n\tSQLITE_E_CONSTRAINT_UNIQUE                                                Handle        = 0x87AF0813\n\tSQLITE_E_CONSTRAINT_VTAB                                                  Handle        = 0x87AF0913\n\tSQLITE_E_CONSTRAINT_ROWID                                                 Handle        = 0x87AF0A13\n\tSQLITE_E_NOTICE_RECOVER_WAL                                               Handle        = 0x87AF011B\n\tSQLITE_E_NOTICE_RECOVER_ROLLBACK                                          Handle        = 0x87AF021B\n\tSQLITE_E_WARNING_AUTOINDEX                                                Handle        = 0x87AF011C\n\tUTC_E_TOGGLE_TRACE_STARTED                                                Handle        = 0x87C51001\n\tUTC_E_ALTERNATIVE_TRACE_CANNOT_PREEMPT                                    Handle        = 0x87C51002\n\tUTC_E_AOT_NOT_RUNNING                                                     Handle        = 0x87C51003\n\tUTC_E_SCRIPT_TYPE_INVALID                                                 Handle        = 0x87C51004\n\tUTC_E_SCENARIODEF_NOT_FOUND                                               Handle        = 0x87C51005\n\tUTC_E_TRACEPROFILE_NOT_FOUND                                              Handle        = 0x87C51006\n\tUTC_E_FORWARDER_ALREADY_ENABLED                                           Handle        = 0x87C51007\n\tUTC_E_FORWARDER_ALREADY_DISABLED                                          Handle        = 0x87C51008\n\tUTC_E_EVENTLOG_ENTRY_MALFORMED                                            Handle        = 0x87C51009\n\tUTC_E_DIAGRULES_SCHEMAVERSION_MISMATCH                                    Handle        = 0x87C5100A\n\tUTC_E_SCRIPT_TERMINATED                                                   Handle        = 0x87C5100B\n\tUTC_E_INVALID_CUSTOM_FILTER                                               Handle        = 0x87C5100C\n\tUTC_E_TRACE_NOT_RUNNING                                                   Handle        = 0x87C5100D\n\tUTC_E_REESCALATED_TOO_QUICKLY                                             Handle        = 0x87C5100E\n\tUTC_E_ESCALATION_ALREADY_RUNNING                                          Handle        = 0x87C5100F\n\tUTC_E_PERFTRACK_ALREADY_TRACING                                           Handle        = 0x87C51010\n\tUTC_E_REACHED_MAX_ESCALATIONS                                             Handle        = 0x87C51011\n\tUTC_E_FORWARDER_PRODUCER_MISMATCH                                         Handle        = 0x87C51012\n\tUTC_E_INTENTIONAL_SCRIPT_FAILURE                                          Handle        = 0x87C51013\n\tUTC_E_SQM_INIT_FAILED                                                     Handle        = 0x87C51014\n\tUTC_E_NO_WER_LOGGER_SUPPORTED                                             Handle        = 0x87C51015\n\tUTC_E_TRACERS_DONT_EXIST                                                  Handle        = 0x87C51016\n\tUTC_E_WINRT_INIT_FAILED                                                   Handle        = 0x87C51017\n\tUTC_E_SCENARIODEF_SCHEMAVERSION_MISMATCH                                  Handle        = 0x87C51018\n\tUTC_E_INVALID_FILTER                                                      Handle        = 0x87C51019\n\tUTC_E_EXE_TERMINATED                                                      Handle        = 0x87C5101A\n\tUTC_E_ESCALATION_NOT_AUTHORIZED                                           Handle        = 0x87C5101B\n\tUTC_E_SETUP_NOT_AUTHORIZED                                                Handle        = 0x87C5101C\n\tUTC_E_CHILD_PROCESS_FAILED                                                Handle        = 0x87C5101D\n\tUTC_E_COMMAND_LINE_NOT_AUTHORIZED                                         Handle        = 0x87C5101E\n\tUTC_E_CANNOT_LOAD_SCENARIO_EDITOR_XML                                     Handle        = 0x87C5101F\n\tUTC_E_ESCALATION_TIMED_OUT                                                Handle        = 0x87C51020\n\tUTC_E_SETUP_TIMED_OUT                                                     Handle        = 0x87C51021\n\tUTC_E_TRIGGER_MISMATCH                                                    Handle        = 0x87C51022\n\tUTC_E_TRIGGER_NOT_FOUND                                                   Handle        = 0x87C51023\n\tUTC_E_SIF_NOT_SUPPORTED                                                   Handle        = 0x87C51024\n\tUTC_E_DELAY_TERMINATED                                                    Handle        = 0x87C51025\n\tUTC_E_DEVICE_TICKET_ERROR                                                 Handle        = 0x87C51026\n\tUTC_E_TRACE_BUFFER_LIMIT_EXCEEDED                                         Handle        = 0x87C51027\n\tUTC_E_API_RESULT_UNAVAILABLE                                              Handle        = 0x87C51028\n\tUTC_E_RPC_TIMEOUT                                                         Handle        = 0x87C51029\n\tUTC_E_RPC_WAIT_FAILED                                                     Handle        = 0x87C5102A\n\tUTC_E_API_BUSY                                                            Handle        = 0x87C5102B\n\tUTC_E_TRACE_MIN_DURATION_REQUIREMENT_NOT_MET                              Handle        = 0x87C5102C\n\tUTC_E_EXCLUSIVITY_NOT_AVAILABLE                                           Handle        = 0x87C5102D\n\tUTC_E_GETFILE_FILE_PATH_NOT_APPROVED                                      Handle        = 0x87C5102E\n\tUTC_E_ESCALATION_DIRECTORY_ALREADY_EXISTS                                 Handle        = 0x87C5102F\n\tUTC_E_TIME_TRIGGER_ON_START_INVALID                                       Handle        = 0x87C51030\n\tUTC_E_TIME_TRIGGER_ONLY_VALID_ON_SINGLE_TRANSITION                        Handle        = 0x87C51031\n\tUTC_E_TIME_TRIGGER_INVALID_TIME_RANGE                                     Handle        = 0x87C51032\n\tUTC_E_MULTIPLE_TIME_TRIGGER_ON_SINGLE_STATE                               Handle        = 0x87C51033\n\tUTC_E_BINARY_MISSING                                                      Handle        = 0x87C51034\n\tUTC_E_NETWORK_CAPTURE_NOT_ALLOWED                                         Handle        = 0x87C51035\n\tUTC_E_FAILED_TO_RESOLVE_CONTAINER_ID                                      Handle        = 0x87C51036\n\tUTC_E_UNABLE_TO_RESOLVE_SESSION                                           Handle        = 0x87C51037\n\tUTC_E_THROTTLED                                                           Handle        = 0x87C51038\n\tUTC_E_UNAPPROVED_SCRIPT                                                   Handle        = 0x87C51039\n\tUTC_E_SCRIPT_MISSING                                                      Handle        = 0x87C5103A\n\tUTC_E_SCENARIO_THROTTLED                                                  Handle        = 0x87C5103B\n\tUTC_E_API_NOT_SUPPORTED                                                   Handle        = 0x87C5103C\n\tUTC_E_GETFILE_EXTERNAL_PATH_NOT_APPROVED                                  Handle        = 0x87C5103D\n\tUTC_E_TRY_GET_SCENARIO_TIMEOUT_EXCEEDED                                   Handle        = 0x87C5103E\n\tUTC_E_CERT_REV_FAILED                                                     Handle        = 0x87C5103F\n\tUTC_E_FAILED_TO_START_NDISCAP                                             Handle        = 0x87C51040\n\tUTC_E_KERNELDUMP_LIMIT_REACHED                                            Handle        = 0x87C51041\n\tUTC_E_MISSING_AGGREGATE_EVENT_TAG                                         Handle        = 0x87C51042\n\tUTC_E_INVALID_AGGREGATION_STRUCT                                          Handle        = 0x87C51043\n\tUTC_E_ACTION_NOT_SUPPORTED_IN_DESTINATION                                 Handle        = 0x87C51044\n\tUTC_E_FILTER_MISSING_ATTRIBUTE                                            Handle        = 0x87C51045\n\tUTC_E_FILTER_INVALID_TYPE                                                 Handle        = 0x87C51046\n\tUTC_E_FILTER_VARIABLE_NOT_FOUND                                           Handle        = 0x87C51047\n\tUTC_E_FILTER_FUNCTION_RESTRICTED                                          Handle        = 0x87C51048\n\tUTC_E_FILTER_VERSION_MISMATCH                                             Handle        = 0x87C51049\n\tUTC_E_FILTER_INVALID_FUNCTION                                             Handle        = 0x87C51050\n\tUTC_E_FILTER_INVALID_FUNCTION_PARAMS                                      Handle        = 0x87C51051\n\tUTC_E_FILTER_INVALID_COMMAND                                              Handle        = 0x87C51052\n\tUTC_E_FILTER_ILLEGAL_EVAL                                                 Handle        = 0x87C51053\n\tUTC_E_TTTRACER_RETURNED_ERROR                                             Handle        = 0x87C51054\n\tUTC_E_AGENT_DIAGNOSTICS_TOO_LARGE                                         Handle        = 0x87C51055\n\tUTC_E_FAILED_TO_RECEIVE_AGENT_DIAGNOSTICS                                 Handle        = 0x87C51056\n\tUTC_E_SCENARIO_HAS_NO_ACTIONS                                             Handle        = 0x87C51057\n\tUTC_E_TTTRACER_STORAGE_FULL                                               Handle        = 0x87C51058\n\tUTC_E_INSUFFICIENT_SPACE_TO_START_TRACE                                   Handle        = 0x87C51059\n\tUTC_E_ESCALATION_CANCELLED_AT_SHUTDOWN                                    Handle        = 0x87C5105A\n\tUTC_E_GETFILEINFOACTION_FILE_NOT_APPROVED                                 Handle        = 0x87C5105B\n\tWINML_ERR_INVALID_DEVICE                                                  Handle        = 0x88900001\n\tWINML_ERR_INVALID_BINDING                                                 Handle        = 0x88900002\n\tWINML_ERR_VALUE_NOTFOUND                                                  Handle        = 0x88900003\n\tWINML_ERR_SIZE_MISMATCH                                                   Handle        = 0x88900004\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/zknownfolderids_windows.go",
    "content": "// Code generated by 'mkknownfolderids.bash'; DO NOT EDIT.\n\npackage windows\n\ntype KNOWNFOLDERID GUID\n\nvar (\n\tFOLDERID_NetworkFolder          = &KNOWNFOLDERID{0xd20beec4, 0x5ca8, 0x4905, [8]byte{0xae, 0x3b, 0xbf, 0x25, 0x1e, 0xa0, 0x9b, 0x53}}\n\tFOLDERID_ComputerFolder         = &KNOWNFOLDERID{0x0ac0837c, 0xbbf8, 0x452a, [8]byte{0x85, 0x0d, 0x79, 0xd0, 0x8e, 0x66, 0x7c, 0xa7}}\n\tFOLDERID_InternetFolder         = &KNOWNFOLDERID{0x4d9f7874, 0x4e0c, 0x4904, [8]byte{0x96, 0x7b, 0x40, 0xb0, 0xd2, 0x0c, 0x3e, 0x4b}}\n\tFOLDERID_ControlPanelFolder     = &KNOWNFOLDERID{0x82a74aeb, 0xaeb4, 0x465c, [8]byte{0xa0, 0x14, 0xd0, 0x97, 0xee, 0x34, 0x6d, 0x63}}\n\tFOLDERID_PrintersFolder         = &KNOWNFOLDERID{0x76fc4e2d, 0xd6ad, 0x4519, [8]byte{0xa6, 0x63, 0x37, 0xbd, 0x56, 0x06, 0x81, 0x85}}\n\tFOLDERID_SyncManagerFolder      = &KNOWNFOLDERID{0x43668bf8, 0xc14e, 0x49b2, [8]byte{0x97, 0xc9, 0x74, 0x77, 0x84, 0xd7, 0x84, 0xb7}}\n\tFOLDERID_SyncSetupFolder        = &KNOWNFOLDERID{0x0f214138, 0xb1d3, 0x4a90, [8]byte{0xbb, 0xa9, 0x27, 0xcb, 0xc0, 0xc5, 0x38, 0x9a}}\n\tFOLDERID_ConflictFolder         = &KNOWNFOLDERID{0x4bfefb45, 0x347d, 0x4006, [8]byte{0xa5, 0xbe, 0xac, 0x0c, 0xb0, 0x56, 0x71, 0x92}}\n\tFOLDERID_SyncResultsFolder      = &KNOWNFOLDERID{0x289a9a43, 0xbe44, 0x4057, [8]byte{0xa4, 0x1b, 0x58, 0x7a, 0x76, 0xd7, 0xe7, 0xf9}}\n\tFOLDERID_RecycleBinFolder       = &KNOWNFOLDERID{0xb7534046, 0x3ecb, 0x4c18, [8]byte{0xbe, 0x4e, 0x64, 0xcd, 0x4c, 0xb7, 0xd6, 0xac}}\n\tFOLDERID_ConnectionsFolder      = &KNOWNFOLDERID{0x6f0cd92b, 0x2e97, 0x45d1, [8]byte{0x88, 0xff, 0xb0, 0xd1, 0x86, 0xb8, 0xde, 0xdd}}\n\tFOLDERID_Fonts                  = &KNOWNFOLDERID{0xfd228cb7, 0xae11, 0x4ae3, [8]byte{0x86, 0x4c, 0x16, 0xf3, 0x91, 0x0a, 0xb8, 0xfe}}\n\tFOLDERID_Desktop                = &KNOWNFOLDERID{0xb4bfcc3a, 0xdb2c, 0x424c, [8]byte{0xb0, 0x29, 0x7f, 0xe9, 0x9a, 0x87, 0xc6, 0x41}}\n\tFOLDERID_Startup                = &KNOWNFOLDERID{0xb97d20bb, 0xf46a, 0x4c97, [8]byte{0xba, 0x10, 0x5e, 0x36, 0x08, 0x43, 0x08, 0x54}}\n\tFOLDERID_Programs               = &KNOWNFOLDERID{0xa77f5d77, 0x2e2b, 0x44c3, [8]byte{0xa6, 0xa2, 0xab, 0xa6, 0x01, 0x05, 0x4a, 0x51}}\n\tFOLDERID_StartMenu              = &KNOWNFOLDERID{0x625b53c3, 0xab48, 0x4ec1, [8]byte{0xba, 0x1f, 0xa1, 0xef, 0x41, 0x46, 0xfc, 0x19}}\n\tFOLDERID_Recent                 = &KNOWNFOLDERID{0xae50c081, 0xebd2, 0x438a, [8]byte{0x86, 0x55, 0x8a, 0x09, 0x2e, 0x34, 0x98, 0x7a}}\n\tFOLDERID_SendTo                 = &KNOWNFOLDERID{0x8983036c, 0x27c0, 0x404b, [8]byte{0x8f, 0x08, 0x10, 0x2d, 0x10, 0xdc, 0xfd, 0x74}}\n\tFOLDERID_Documents              = &KNOWNFOLDERID{0xfdd39ad0, 0x238f, 0x46af, [8]byte{0xad, 0xb4, 0x6c, 0x85, 0x48, 0x03, 0x69, 0xc7}}\n\tFOLDERID_Favorites              = &KNOWNFOLDERID{0x1777f761, 0x68ad, 0x4d8a, [8]byte{0x87, 0xbd, 0x30, 0xb7, 0x59, 0xfa, 0x33, 0xdd}}\n\tFOLDERID_NetHood                = &KNOWNFOLDERID{0xc5abbf53, 0xe17f, 0x4121, [8]byte{0x89, 0x00, 0x86, 0x62, 0x6f, 0xc2, 0xc9, 0x73}}\n\tFOLDERID_PrintHood              = &KNOWNFOLDERID{0x9274bd8d, 0xcfd1, 0x41c3, [8]byte{0xb3, 0x5e, 0xb1, 0x3f, 0x55, 0xa7, 0x58, 0xf4}}\n\tFOLDERID_Templates              = &KNOWNFOLDERID{0xa63293e8, 0x664e, 0x48db, [8]byte{0xa0, 0x79, 0xdf, 0x75, 0x9e, 0x05, 0x09, 0xf7}}\n\tFOLDERID_CommonStartup          = &KNOWNFOLDERID{0x82a5ea35, 0xd9cd, 0x47c5, [8]byte{0x96, 0x29, 0xe1, 0x5d, 0x2f, 0x71, 0x4e, 0x6e}}\n\tFOLDERID_CommonPrograms         = &KNOWNFOLDERID{0x0139d44e, 0x6afe, 0x49f2, [8]byte{0x86, 0x90, 0x3d, 0xaf, 0xca, 0xe6, 0xff, 0xb8}}\n\tFOLDERID_CommonStartMenu        = &KNOWNFOLDERID{0xa4115719, 0xd62e, 0x491d, [8]byte{0xaa, 0x7c, 0xe7, 0x4b, 0x8b, 0xe3, 0xb0, 0x67}}\n\tFOLDERID_PublicDesktop          = &KNOWNFOLDERID{0xc4aa340d, 0xf20f, 0x4863, [8]byte{0xaf, 0xef, 0xf8, 0x7e, 0xf2, 0xe6, 0xba, 0x25}}\n\tFOLDERID_ProgramData            = &KNOWNFOLDERID{0x62ab5d82, 0xfdc1, 0x4dc3, [8]byte{0xa9, 0xdd, 0x07, 0x0d, 0x1d, 0x49, 0x5d, 0x97}}\n\tFOLDERID_CommonTemplates        = &KNOWNFOLDERID{0xb94237e7, 0x57ac, 0x4347, [8]byte{0x91, 0x51, 0xb0, 0x8c, 0x6c, 0x32, 0xd1, 0xf7}}\n\tFOLDERID_PublicDocuments        = &KNOWNFOLDERID{0xed4824af, 0xdce4, 0x45a8, [8]byte{0x81, 0xe2, 0xfc, 0x79, 0x65, 0x08, 0x36, 0x34}}\n\tFOLDERID_RoamingAppData         = &KNOWNFOLDERID{0x3eb685db, 0x65f9, 0x4cf6, [8]byte{0xa0, 0x3a, 0xe3, 0xef, 0x65, 0x72, 0x9f, 0x3d}}\n\tFOLDERID_LocalAppData           = &KNOWNFOLDERID{0xf1b32785, 0x6fba, 0x4fcf, [8]byte{0x9d, 0x55, 0x7b, 0x8e, 0x7f, 0x15, 0x70, 0x91}}\n\tFOLDERID_LocalAppDataLow        = &KNOWNFOLDERID{0xa520a1a4, 0x1780, 0x4ff6, [8]byte{0xbd, 0x18, 0x16, 0x73, 0x43, 0xc5, 0xaf, 0x16}}\n\tFOLDERID_InternetCache          = &KNOWNFOLDERID{0x352481e8, 0x33be, 0x4251, [8]byte{0xba, 0x85, 0x60, 0x07, 0xca, 0xed, 0xcf, 0x9d}}\n\tFOLDERID_Cookies                = &KNOWNFOLDERID{0x2b0f765d, 0xc0e9, 0x4171, [8]byte{0x90, 0x8e, 0x08, 0xa6, 0x11, 0xb8, 0x4f, 0xf6}}\n\tFOLDERID_History                = &KNOWNFOLDERID{0xd9dc8a3b, 0xb784, 0x432e, [8]byte{0xa7, 0x81, 0x5a, 0x11, 0x30, 0xa7, 0x59, 0x63}}\n\tFOLDERID_System                 = &KNOWNFOLDERID{0x1ac14e77, 0x02e7, 0x4e5d, [8]byte{0xb7, 0x44, 0x2e, 0xb1, 0xae, 0x51, 0x98, 0xb7}}\n\tFOLDERID_SystemX86              = &KNOWNFOLDERID{0xd65231b0, 0xb2f1, 0x4857, [8]byte{0xa4, 0xce, 0xa8, 0xe7, 0xc6, 0xea, 0x7d, 0x27}}\n\tFOLDERID_Windows                = &KNOWNFOLDERID{0xf38bf404, 0x1d43, 0x42f2, [8]byte{0x93, 0x05, 0x67, 0xde, 0x0b, 0x28, 0xfc, 0x23}}\n\tFOLDERID_Profile                = &KNOWNFOLDERID{0x5e6c858f, 0x0e22, 0x4760, [8]byte{0x9a, 0xfe, 0xea, 0x33, 0x17, 0xb6, 0x71, 0x73}}\n\tFOLDERID_Pictures               = &KNOWNFOLDERID{0x33e28130, 0x4e1e, 0x4676, [8]byte{0x83, 0x5a, 0x98, 0x39, 0x5c, 0x3b, 0xc3, 0xbb}}\n\tFOLDERID_ProgramFilesX86        = &KNOWNFOLDERID{0x7c5a40ef, 0xa0fb, 0x4bfc, [8]byte{0x87, 0x4a, 0xc0, 0xf2, 0xe0, 0xb9, 0xfa, 0x8e}}\n\tFOLDERID_ProgramFilesCommonX86  = &KNOWNFOLDERID{0xde974d24, 0xd9c6, 0x4d3e, [8]byte{0xbf, 0x91, 0xf4, 0x45, 0x51, 0x20, 0xb9, 0x17}}\n\tFOLDERID_ProgramFilesX64        = &KNOWNFOLDERID{0x6d809377, 0x6af0, 0x444b, [8]byte{0x89, 0x57, 0xa3, 0x77, 0x3f, 0x02, 0x20, 0x0e}}\n\tFOLDERID_ProgramFilesCommonX64  = &KNOWNFOLDERID{0x6365d5a7, 0x0f0d, 0x45e5, [8]byte{0x87, 0xf6, 0x0d, 0xa5, 0x6b, 0x6a, 0x4f, 0x7d}}\n\tFOLDERID_ProgramFiles           = &KNOWNFOLDERID{0x905e63b6, 0xc1bf, 0x494e, [8]byte{0xb2, 0x9c, 0x65, 0xb7, 0x32, 0xd3, 0xd2, 0x1a}}\n\tFOLDERID_ProgramFilesCommon     = &KNOWNFOLDERID{0xf7f1ed05, 0x9f6d, 0x47a2, [8]byte{0xaa, 0xae, 0x29, 0xd3, 0x17, 0xc6, 0xf0, 0x66}}\n\tFOLDERID_UserProgramFiles       = &KNOWNFOLDERID{0x5cd7aee2, 0x2219, 0x4a67, [8]byte{0xb8, 0x5d, 0x6c, 0x9c, 0xe1, 0x56, 0x60, 0xcb}}\n\tFOLDERID_UserProgramFilesCommon = &KNOWNFOLDERID{0xbcbd3057, 0xca5c, 0x4622, [8]byte{0xb4, 0x2d, 0xbc, 0x56, 0xdb, 0x0a, 0xe5, 0x16}}\n\tFOLDERID_AdminTools             = &KNOWNFOLDERID{0x724ef170, 0xa42d, 0x4fef, [8]byte{0x9f, 0x26, 0xb6, 0x0e, 0x84, 0x6f, 0xba, 0x4f}}\n\tFOLDERID_CommonAdminTools       = &KNOWNFOLDERID{0xd0384e7d, 0xbac3, 0x4797, [8]byte{0x8f, 0x14, 0xcb, 0xa2, 0x29, 0xb3, 0x92, 0xb5}}\n\tFOLDERID_Music                  = &KNOWNFOLDERID{0x4bd8d571, 0x6d19, 0x48d3, [8]byte{0xbe, 0x97, 0x42, 0x22, 0x20, 0x08, 0x0e, 0x43}}\n\tFOLDERID_Videos                 = &KNOWNFOLDERID{0x18989b1d, 0x99b5, 0x455b, [8]byte{0x84, 0x1c, 0xab, 0x7c, 0x74, 0xe4, 0xdd, 0xfc}}\n\tFOLDERID_Ringtones              = &KNOWNFOLDERID{0xc870044b, 0xf49e, 0x4126, [8]byte{0xa9, 0xc3, 0xb5, 0x2a, 0x1f, 0xf4, 0x11, 0xe8}}\n\tFOLDERID_PublicPictures         = &KNOWNFOLDERID{0xb6ebfb86, 0x6907, 0x413c, [8]byte{0x9a, 0xf7, 0x4f, 0xc2, 0xab, 0xf0, 0x7c, 0xc5}}\n\tFOLDERID_PublicMusic            = &KNOWNFOLDERID{0x3214fab5, 0x9757, 0x4298, [8]byte{0xbb, 0x61, 0x92, 0xa9, 0xde, 0xaa, 0x44, 0xff}}\n\tFOLDERID_PublicVideos           = &KNOWNFOLDERID{0x2400183a, 0x6185, 0x49fb, [8]byte{0xa2, 0xd8, 0x4a, 0x39, 0x2a, 0x60, 0x2b, 0xa3}}\n\tFOLDERID_PublicRingtones        = &KNOWNFOLDERID{0xe555ab60, 0x153b, 0x4d17, [8]byte{0x9f, 0x04, 0xa5, 0xfe, 0x99, 0xfc, 0x15, 0xec}}\n\tFOLDERID_ResourceDir            = &KNOWNFOLDERID{0x8ad10c31, 0x2adb, 0x4296, [8]byte{0xa8, 0xf7, 0xe4, 0x70, 0x12, 0x32, 0xc9, 0x72}}\n\tFOLDERID_LocalizedResourcesDir  = &KNOWNFOLDERID{0x2a00375e, 0x224c, 0x49de, [8]byte{0xb8, 0xd1, 0x44, 0x0d, 0xf7, 0xef, 0x3d, 0xdc}}\n\tFOLDERID_CommonOEMLinks         = &KNOWNFOLDERID{0xc1bae2d0, 0x10df, 0x4334, [8]byte{0xbe, 0xdd, 0x7a, 0xa2, 0x0b, 0x22, 0x7a, 0x9d}}\n\tFOLDERID_CDBurning              = &KNOWNFOLDERID{0x9e52ab10, 0xf80d, 0x49df, [8]byte{0xac, 0xb8, 0x43, 0x30, 0xf5, 0x68, 0x78, 0x55}}\n\tFOLDERID_UserProfiles           = &KNOWNFOLDERID{0x0762d272, 0xc50a, 0x4bb0, [8]byte{0xa3, 0x82, 0x69, 0x7d, 0xcd, 0x72, 0x9b, 0x80}}\n\tFOLDERID_Playlists              = &KNOWNFOLDERID{0xde92c1c7, 0x837f, 0x4f69, [8]byte{0xa3, 0xbb, 0x86, 0xe6, 0x31, 0x20, 0x4a, 0x23}}\n\tFOLDERID_SamplePlaylists        = &KNOWNFOLDERID{0x15ca69b3, 0x30ee, 0x49c1, [8]byte{0xac, 0xe1, 0x6b, 0x5e, 0xc3, 0x72, 0xaf, 0xb5}}\n\tFOLDERID_SampleMusic            = &KNOWNFOLDERID{0xb250c668, 0xf57d, 0x4ee1, [8]byte{0xa6, 0x3c, 0x29, 0x0e, 0xe7, 0xd1, 0xaa, 0x1f}}\n\tFOLDERID_SamplePictures         = &KNOWNFOLDERID{0xc4900540, 0x2379, 0x4c75, [8]byte{0x84, 0x4b, 0x64, 0xe6, 0xfa, 0xf8, 0x71, 0x6b}}\n\tFOLDERID_SampleVideos           = &KNOWNFOLDERID{0x859ead94, 0x2e85, 0x48ad, [8]byte{0xa7, 0x1a, 0x09, 0x69, 0xcb, 0x56, 0xa6, 0xcd}}\n\tFOLDERID_PhotoAlbums            = &KNOWNFOLDERID{0x69d2cf90, 0xfc33, 0x4fb7, [8]byte{0x9a, 0x0c, 0xeb, 0xb0, 0xf0, 0xfc, 0xb4, 0x3c}}\n\tFOLDERID_Public                 = &KNOWNFOLDERID{0xdfdf76a2, 0xc82a, 0x4d63, [8]byte{0x90, 0x6a, 0x56, 0x44, 0xac, 0x45, 0x73, 0x85}}\n\tFOLDERID_ChangeRemovePrograms   = &KNOWNFOLDERID{0xdf7266ac, 0x9274, 0x4867, [8]byte{0x8d, 0x55, 0x3b, 0xd6, 0x61, 0xde, 0x87, 0x2d}}\n\tFOLDERID_AppUpdates             = &KNOWNFOLDERID{0xa305ce99, 0xf527, 0x492b, [8]byte{0x8b, 0x1a, 0x7e, 0x76, 0xfa, 0x98, 0xd6, 0xe4}}\n\tFOLDERID_AddNewPrograms         = &KNOWNFOLDERID{0xde61d971, 0x5ebc, 0x4f02, [8]byte{0xa3, 0xa9, 0x6c, 0x82, 0x89, 0x5e, 0x5c, 0x04}}\n\tFOLDERID_Downloads              = &KNOWNFOLDERID{0x374de290, 0x123f, 0x4565, [8]byte{0x91, 0x64, 0x39, 0xc4, 0x92, 0x5e, 0x46, 0x7b}}\n\tFOLDERID_PublicDownloads        = &KNOWNFOLDERID{0x3d644c9b, 0x1fb8, 0x4f30, [8]byte{0x9b, 0x45, 0xf6, 0x70, 0x23, 0x5f, 0x79, 0xc0}}\n\tFOLDERID_SavedSearches          = &KNOWNFOLDERID{0x7d1d3a04, 0xdebb, 0x4115, [8]byte{0x95, 0xcf, 0x2f, 0x29, 0xda, 0x29, 0x20, 0xda}}\n\tFOLDERID_QuickLaunch            = &KNOWNFOLDERID{0x52a4f021, 0x7b75, 0x48a9, [8]byte{0x9f, 0x6b, 0x4b, 0x87, 0xa2, 0x10, 0xbc, 0x8f}}\n\tFOLDERID_Contacts               = &KNOWNFOLDERID{0x56784854, 0xc6cb, 0x462b, [8]byte{0x81, 0x69, 0x88, 0xe3, 0x50, 0xac, 0xb8, 0x82}}\n\tFOLDERID_SidebarParts           = &KNOWNFOLDERID{0xa75d362e, 0x50fc, 0x4fb7, [8]byte{0xac, 0x2c, 0xa8, 0xbe, 0xaa, 0x31, 0x44, 0x93}}\n\tFOLDERID_SidebarDefaultParts    = &KNOWNFOLDERID{0x7b396e54, 0x9ec5, 0x4300, [8]byte{0xbe, 0x0a, 0x24, 0x82, 0xeb, 0xae, 0x1a, 0x26}}\n\tFOLDERID_PublicGameTasks        = &KNOWNFOLDERID{0xdebf2536, 0xe1a8, 0x4c59, [8]byte{0xb6, 0xa2, 0x41, 0x45, 0x86, 0x47, 0x6a, 0xea}}\n\tFOLDERID_GameTasks              = &KNOWNFOLDERID{0x054fae61, 0x4dd8, 0x4787, [8]byte{0x80, 0xb6, 0x09, 0x02, 0x20, 0xc4, 0xb7, 0x00}}\n\tFOLDERID_SavedGames             = &KNOWNFOLDERID{0x4c5c32ff, 0xbb9d, 0x43b0, [8]byte{0xb5, 0xb4, 0x2d, 0x72, 0xe5, 0x4e, 0xaa, 0xa4}}\n\tFOLDERID_Games                  = &KNOWNFOLDERID{0xcac52c1a, 0xb53d, 0x4edc, [8]byte{0x92, 0xd7, 0x6b, 0x2e, 0x8a, 0xc1, 0x94, 0x34}}\n\tFOLDERID_SEARCH_MAPI            = &KNOWNFOLDERID{0x98ec0e18, 0x2098, 0x4d44, [8]byte{0x86, 0x44, 0x66, 0x97, 0x93, 0x15, 0xa2, 0x81}}\n\tFOLDERID_SEARCH_CSC             = &KNOWNFOLDERID{0xee32e446, 0x31ca, 0x4aba, [8]byte{0x81, 0x4f, 0xa5, 0xeb, 0xd2, 0xfd, 0x6d, 0x5e}}\n\tFOLDERID_Links                  = &KNOWNFOLDERID{0xbfb9d5e0, 0xc6a9, 0x404c, [8]byte{0xb2, 0xb2, 0xae, 0x6d, 0xb6, 0xaf, 0x49, 0x68}}\n\tFOLDERID_UsersFiles             = &KNOWNFOLDERID{0xf3ce0f7c, 0x4901, 0x4acc, [8]byte{0x86, 0x48, 0xd5, 0xd4, 0x4b, 0x04, 0xef, 0x8f}}\n\tFOLDERID_UsersLibraries         = &KNOWNFOLDERID{0xa302545d, 0xdeff, 0x464b, [8]byte{0xab, 0xe8, 0x61, 0xc8, 0x64, 0x8d, 0x93, 0x9b}}\n\tFOLDERID_SearchHome             = &KNOWNFOLDERID{0x190337d1, 0xb8ca, 0x4121, [8]byte{0xa6, 0x39, 0x6d, 0x47, 0x2d, 0x16, 0x97, 0x2a}}\n\tFOLDERID_OriginalImages         = &KNOWNFOLDERID{0x2c36c0aa, 0x5812, 0x4b87, [8]byte{0xbf, 0xd0, 0x4c, 0xd0, 0xdf, 0xb1, 0x9b, 0x39}}\n\tFOLDERID_DocumentsLibrary       = &KNOWNFOLDERID{0x7b0db17d, 0x9cd2, 0x4a93, [8]byte{0x97, 0x33, 0x46, 0xcc, 0x89, 0x02, 0x2e, 0x7c}}\n\tFOLDERID_MusicLibrary           = &KNOWNFOLDERID{0x2112ab0a, 0xc86a, 0x4ffe, [8]byte{0xa3, 0x68, 0x0d, 0xe9, 0x6e, 0x47, 0x01, 0x2e}}\n\tFOLDERID_PicturesLibrary        = &KNOWNFOLDERID{0xa990ae9f, 0xa03b, 0x4e80, [8]byte{0x94, 0xbc, 0x99, 0x12, 0xd7, 0x50, 0x41, 0x04}}\n\tFOLDERID_VideosLibrary          = &KNOWNFOLDERID{0x491e922f, 0x5643, 0x4af4, [8]byte{0xa7, 0xeb, 0x4e, 0x7a, 0x13, 0x8d, 0x81, 0x74}}\n\tFOLDERID_RecordedTVLibrary      = &KNOWNFOLDERID{0x1a6fdba2, 0xf42d, 0x4358, [8]byte{0xa7, 0x98, 0xb7, 0x4d, 0x74, 0x59, 0x26, 0xc5}}\n\tFOLDERID_HomeGroup              = &KNOWNFOLDERID{0x52528a6b, 0xb9e3, 0x4add, [8]byte{0xb6, 0x0d, 0x58, 0x8c, 0x2d, 0xba, 0x84, 0x2d}}\n\tFOLDERID_HomeGroupCurrentUser   = &KNOWNFOLDERID{0x9b74b6a3, 0x0dfd, 0x4f11, [8]byte{0x9e, 0x78, 0x5f, 0x78, 0x00, 0xf2, 0xe7, 0x72}}\n\tFOLDERID_DeviceMetadataStore    = &KNOWNFOLDERID{0x5ce4a5e9, 0xe4eb, 0x479d, [8]byte{0xb8, 0x9f, 0x13, 0x0c, 0x02, 0x88, 0x61, 0x55}}\n\tFOLDERID_Libraries              = &KNOWNFOLDERID{0x1b3ea5dc, 0xb587, 0x4786, [8]byte{0xb4, 0xef, 0xbd, 0x1d, 0xc3, 0x32, 0xae, 0xae}}\n\tFOLDERID_PublicLibraries        = &KNOWNFOLDERID{0x48daf80b, 0xe6cf, 0x4f4e, [8]byte{0xb8, 0x00, 0x0e, 0x69, 0xd8, 0x4e, 0xe3, 0x84}}\n\tFOLDERID_UserPinned             = &KNOWNFOLDERID{0x9e3995ab, 0x1f9c, 0x4f13, [8]byte{0xb8, 0x27, 0x48, 0xb2, 0x4b, 0x6c, 0x71, 0x74}}\n\tFOLDERID_ImplicitAppShortcuts   = &KNOWNFOLDERID{0xbcb5256f, 0x79f6, 0x4cee, [8]byte{0xb7, 0x25, 0xdc, 0x34, 0xe4, 0x02, 0xfd, 0x46}}\n\tFOLDERID_AccountPictures        = &KNOWNFOLDERID{0x008ca0b1, 0x55b4, 0x4c56, [8]byte{0xb8, 0xa8, 0x4d, 0xe4, 0xb2, 0x99, 0xd3, 0xbe}}\n\tFOLDERID_PublicUserTiles        = &KNOWNFOLDERID{0x0482af6c, 0x08f1, 0x4c34, [8]byte{0x8c, 0x90, 0xe1, 0x7e, 0xc9, 0x8b, 0x1e, 0x17}}\n\tFOLDERID_AppsFolder             = &KNOWNFOLDERID{0x1e87508d, 0x89c2, 0x42f0, [8]byte{0x8a, 0x7e, 0x64, 0x5a, 0x0f, 0x50, 0xca, 0x58}}\n\tFOLDERID_StartMenuAllPrograms   = &KNOWNFOLDERID{0xf26305ef, 0x6948, 0x40b9, [8]byte{0xb2, 0x55, 0x81, 0x45, 0x3d, 0x09, 0xc7, 0x85}}\n\tFOLDERID_CommonStartMenuPlaces  = &KNOWNFOLDERID{0xa440879f, 0x87a0, 0x4f7d, [8]byte{0xb7, 0x00, 0x02, 0x07, 0xb9, 0x66, 0x19, 0x4a}}\n\tFOLDERID_ApplicationShortcuts   = &KNOWNFOLDERID{0xa3918781, 0xe5f2, 0x4890, [8]byte{0xb3, 0xd9, 0xa7, 0xe5, 0x43, 0x32, 0x32, 0x8c}}\n\tFOLDERID_RoamingTiles           = &KNOWNFOLDERID{0x00bcfc5a, 0xed94, 0x4e48, [8]byte{0x96, 0xa1, 0x3f, 0x62, 0x17, 0xf2, 0x19, 0x90}}\n\tFOLDERID_RoamedTileImages       = &KNOWNFOLDERID{0xaaa8d5a5, 0xf1d6, 0x4259, [8]byte{0xba, 0xa8, 0x78, 0xe7, 0xef, 0x60, 0x83, 0x5e}}\n\tFOLDERID_Screenshots            = &KNOWNFOLDERID{0xb7bede81, 0xdf94, 0x4682, [8]byte{0xa7, 0xd8, 0x57, 0xa5, 0x26, 0x20, 0xb8, 0x6f}}\n\tFOLDERID_CameraRoll             = &KNOWNFOLDERID{0xab5fb87b, 0x7ce2, 0x4f83, [8]byte{0x91, 0x5d, 0x55, 0x08, 0x46, 0xc9, 0x53, 0x7b}}\n\tFOLDERID_SkyDrive               = &KNOWNFOLDERID{0xa52bba46, 0xe9e1, 0x435f, [8]byte{0xb3, 0xd9, 0x28, 0xda, 0xa6, 0x48, 0xc0, 0xf6}}\n\tFOLDERID_OneDrive               = &KNOWNFOLDERID{0xa52bba46, 0xe9e1, 0x435f, [8]byte{0xb3, 0xd9, 0x28, 0xda, 0xa6, 0x48, 0xc0, 0xf6}}\n\tFOLDERID_SkyDriveDocuments      = &KNOWNFOLDERID{0x24d89e24, 0x2f19, 0x4534, [8]byte{0x9d, 0xde, 0x6a, 0x66, 0x71, 0xfb, 0xb8, 0xfe}}\n\tFOLDERID_SkyDrivePictures       = &KNOWNFOLDERID{0x339719b5, 0x8c47, 0x4894, [8]byte{0x94, 0xc2, 0xd8, 0xf7, 0x7a, 0xdd, 0x44, 0xa6}}\n\tFOLDERID_SkyDriveMusic          = &KNOWNFOLDERID{0xc3f2459e, 0x80d6, 0x45dc, [8]byte{0xbf, 0xef, 0x1f, 0x76, 0x9f, 0x2b, 0xe7, 0x30}}\n\tFOLDERID_SkyDriveCameraRoll     = &KNOWNFOLDERID{0x767e6811, 0x49cb, 0x4273, [8]byte{0x87, 0xc2, 0x20, 0xf3, 0x55, 0xe1, 0x08, 0x5b}}\n\tFOLDERID_SearchHistory          = &KNOWNFOLDERID{0x0d4c3db6, 0x03a3, 0x462f, [8]byte{0xa0, 0xe6, 0x08, 0x92, 0x4c, 0x41, 0xb5, 0xd4}}\n\tFOLDERID_SearchTemplates        = &KNOWNFOLDERID{0x7e636bfe, 0xdfa9, 0x4d5e, [8]byte{0xb4, 0x56, 0xd7, 0xb3, 0x98, 0x51, 0xd8, 0xa9}}\n\tFOLDERID_CameraRollLibrary      = &KNOWNFOLDERID{0x2b20df75, 0x1eda, 0x4039, [8]byte{0x80, 0x97, 0x38, 0x79, 0x82, 0x27, 0xd5, 0xb7}}\n\tFOLDERID_SavedPictures          = &KNOWNFOLDERID{0x3b193882, 0xd3ad, 0x4eab, [8]byte{0x96, 0x5a, 0x69, 0x82, 0x9d, 0x1f, 0xb5, 0x9f}}\n\tFOLDERID_SavedPicturesLibrary   = &KNOWNFOLDERID{0xe25b5812, 0xbe88, 0x4bd9, [8]byte{0x94, 0xb0, 0x29, 0x23, 0x34, 0x77, 0xb6, 0xc3}}\n\tFOLDERID_RetailDemo             = &KNOWNFOLDERID{0x12d4c69e, 0x24ad, 0x4923, [8]byte{0xbe, 0x19, 0x31, 0x32, 0x1c, 0x43, 0xa7, 0x67}}\n\tFOLDERID_Device                 = &KNOWNFOLDERID{0x1c2ac1dc, 0x4358, 0x4b6c, [8]byte{0x97, 0x33, 0xaf, 0x21, 0x15, 0x65, 0x76, 0xf0}}\n\tFOLDERID_DevelopmentFiles       = &KNOWNFOLDERID{0xdbe8e08e, 0x3053, 0x4bbc, [8]byte{0xb1, 0x83, 0x2a, 0x7b, 0x2b, 0x19, 0x1e, 0x59}}\n\tFOLDERID_Objects3D              = &KNOWNFOLDERID{0x31c0dd25, 0x9439, 0x4f12, [8]byte{0xbf, 0x41, 0x7f, 0xf4, 0xed, 0xa3, 0x87, 0x22}}\n\tFOLDERID_AppCaptures            = &KNOWNFOLDERID{0xedc0fe71, 0x98d8, 0x4f4a, [8]byte{0xb9, 0x20, 0xc8, 0xdc, 0x13, 0x3c, 0xb1, 0x65}}\n\tFOLDERID_LocalDocuments         = &KNOWNFOLDERID{0xf42ee2d3, 0x909f, 0x4907, [8]byte{0x88, 0x71, 0x4c, 0x22, 0xfc, 0x0b, 0xf7, 0x56}}\n\tFOLDERID_LocalPictures          = &KNOWNFOLDERID{0x0ddd015d, 0xb06c, 0x45d5, [8]byte{0x8c, 0x4c, 0xf5, 0x97, 0x13, 0x85, 0x46, 0x39}}\n\tFOLDERID_LocalVideos            = &KNOWNFOLDERID{0x35286a68, 0x3c57, 0x41a1, [8]byte{0xbb, 0xb1, 0x0e, 0xae, 0x73, 0xd7, 0x6c, 0x95}}\n\tFOLDERID_LocalMusic             = &KNOWNFOLDERID{0xa0c69a99, 0x21c8, 0x4671, [8]byte{0x87, 0x03, 0x79, 0x34, 0x16, 0x2f, 0xcf, 0x1d}}\n\tFOLDERID_LocalDownloads         = &KNOWNFOLDERID{0x7d83ee9b, 0x2244, 0x4e70, [8]byte{0xb1, 0xf5, 0x53, 0x93, 0x04, 0x2a, 0xf1, 0xe4}}\n\tFOLDERID_RecordedCalls          = &KNOWNFOLDERID{0x2f8b40c2, 0x83ed, 0x48ee, [8]byte{0xb3, 0x83, 0xa1, 0xf1, 0x57, 0xec, 0x6f, 0x9a}}\n\tFOLDERID_AllAppMods             = &KNOWNFOLDERID{0x7ad67899, 0x66af, 0x43ba, [8]byte{0x91, 0x56, 0x6a, 0xad, 0x42, 0xe6, 0xc5, 0x96}}\n\tFOLDERID_CurrentAppMods         = &KNOWNFOLDERID{0x3db40b20, 0x2a30, 0x4dbe, [8]byte{0x91, 0x7e, 0x77, 0x1d, 0xd2, 0x1d, 0xd0, 0x99}}\n\tFOLDERID_AppDataDesktop         = &KNOWNFOLDERID{0xb2c5e279, 0x7add, 0x439f, [8]byte{0xb2, 0x8c, 0xc4, 0x1f, 0xe1, 0xbb, 0xf6, 0x72}}\n\tFOLDERID_AppDataDocuments       = &KNOWNFOLDERID{0x7be16610, 0x1f7f, 0x44ac, [8]byte{0xbf, 0xf0, 0x83, 0xe1, 0x5f, 0x2f, 0xfc, 0xa1}}\n\tFOLDERID_AppDataFavorites       = &KNOWNFOLDERID{0x7cfbefbc, 0xde1f, 0x45aa, [8]byte{0xb8, 0x43, 0xa5, 0x42, 0xac, 0x53, 0x6c, 0xc9}}\n\tFOLDERID_AppDataProgramData     = &KNOWNFOLDERID{0x559d40a3, 0xa036, 0x40fa, [8]byte{0xaf, 0x61, 0x84, 0xcb, 0x43, 0x0a, 0x4d, 0x34}}\n)\n"
  },
  {
    "path": "vendor/golang.org/x/sys/windows/zsyscall_windows.go",
    "content": "// Code generated by 'go generate'; DO NOT EDIT.\n\npackage windows\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ unsafe.Pointer\n\n// Do the interface allocations only once for common\n// Errno values.\nconst (\n\terrnoERROR_IO_PENDING = 997\n)\n\nvar (\n\terrERROR_IO_PENDING error = syscall.Errno(errnoERROR_IO_PENDING)\n)\n\n// errnoErr returns common boxed Errno values, to prevent\n// allocations at runtime.\nfunc errnoErr(e syscall.Errno) error {\n\tswitch e {\n\tcase 0:\n\t\treturn nil\n\tcase errnoERROR_IO_PENDING:\n\t\treturn errERROR_IO_PENDING\n\t}\n\t// TODO: add more here, after collecting data on the common\n\t// error values see on Windows. (perhaps when running\n\t// all.bat?)\n\treturn e\n}\n\nvar (\n\tmodadvapi32 = NewLazySystemDLL(\"advapi32.dll\")\n\tmodkernel32 = NewLazySystemDLL(\"kernel32.dll\")\n\tmodshell32  = NewLazySystemDLL(\"shell32.dll\")\n\tmoduserenv  = NewLazySystemDLL(\"userenv.dll\")\n\tmodmswsock  = NewLazySystemDLL(\"mswsock.dll\")\n\tmodcrypt32  = NewLazySystemDLL(\"crypt32.dll\")\n\tmoduser32   = NewLazySystemDLL(\"user32.dll\")\n\tmodole32    = NewLazySystemDLL(\"ole32.dll\")\n\tmodntdll    = NewLazySystemDLL(\"ntdll.dll\")\n\tmodpsapi    = NewLazySystemDLL(\"psapi.dll\")\n\tmodws2_32   = NewLazySystemDLL(\"ws2_32.dll\")\n\tmoddnsapi   = NewLazySystemDLL(\"dnsapi.dll\")\n\tmodiphlpapi = NewLazySystemDLL(\"iphlpapi.dll\")\n\tmodsecur32  = NewLazySystemDLL(\"secur32.dll\")\n\tmodnetapi32 = NewLazySystemDLL(\"netapi32.dll\")\n\tmodwtsapi32 = NewLazySystemDLL(\"wtsapi32.dll\")\n\n\tprocRegisterEventSourceW                                 = modadvapi32.NewProc(\"RegisterEventSourceW\")\n\tprocDeregisterEventSource                                = modadvapi32.NewProc(\"DeregisterEventSource\")\n\tprocReportEventW                                         = modadvapi32.NewProc(\"ReportEventW\")\n\tprocOpenSCManagerW                                       = modadvapi32.NewProc(\"OpenSCManagerW\")\n\tprocCloseServiceHandle                                   = modadvapi32.NewProc(\"CloseServiceHandle\")\n\tprocCreateServiceW                                       = modadvapi32.NewProc(\"CreateServiceW\")\n\tprocOpenServiceW                                         = modadvapi32.NewProc(\"OpenServiceW\")\n\tprocDeleteService                                        = modadvapi32.NewProc(\"DeleteService\")\n\tprocStartServiceW                                        = modadvapi32.NewProc(\"StartServiceW\")\n\tprocQueryServiceStatus                                   = modadvapi32.NewProc(\"QueryServiceStatus\")\n\tprocQueryServiceLockStatusW                              = modadvapi32.NewProc(\"QueryServiceLockStatusW\")\n\tprocControlService                                       = modadvapi32.NewProc(\"ControlService\")\n\tprocStartServiceCtrlDispatcherW                          = modadvapi32.NewProc(\"StartServiceCtrlDispatcherW\")\n\tprocSetServiceStatus                                     = modadvapi32.NewProc(\"SetServiceStatus\")\n\tprocChangeServiceConfigW                                 = modadvapi32.NewProc(\"ChangeServiceConfigW\")\n\tprocQueryServiceConfigW                                  = modadvapi32.NewProc(\"QueryServiceConfigW\")\n\tprocChangeServiceConfig2W                                = modadvapi32.NewProc(\"ChangeServiceConfig2W\")\n\tprocQueryServiceConfig2W                                 = modadvapi32.NewProc(\"QueryServiceConfig2W\")\n\tprocEnumServicesStatusExW                                = modadvapi32.NewProc(\"EnumServicesStatusExW\")\n\tprocQueryServiceStatusEx                                 = modadvapi32.NewProc(\"QueryServiceStatusEx\")\n\tprocNotifyServiceStatusChangeW                           = modadvapi32.NewProc(\"NotifyServiceStatusChangeW\")\n\tprocGetLastError                                         = modkernel32.NewProc(\"GetLastError\")\n\tprocLoadLibraryW                                         = modkernel32.NewProc(\"LoadLibraryW\")\n\tprocLoadLibraryExW                                       = modkernel32.NewProc(\"LoadLibraryExW\")\n\tprocFreeLibrary                                          = modkernel32.NewProc(\"FreeLibrary\")\n\tprocGetProcAddress                                       = modkernel32.NewProc(\"GetProcAddress\")\n\tprocGetModuleFileNameW                                   = modkernel32.NewProc(\"GetModuleFileNameW\")\n\tprocGetModuleHandleExW                                   = modkernel32.NewProc(\"GetModuleHandleExW\")\n\tprocGetVersion                                           = modkernel32.NewProc(\"GetVersion\")\n\tprocFormatMessageW                                       = modkernel32.NewProc(\"FormatMessageW\")\n\tprocExitProcess                                          = modkernel32.NewProc(\"ExitProcess\")\n\tprocIsWow64Process                                       = modkernel32.NewProc(\"IsWow64Process\")\n\tprocCreateFileW                                          = modkernel32.NewProc(\"CreateFileW\")\n\tprocReadFile                                             = modkernel32.NewProc(\"ReadFile\")\n\tprocWriteFile                                            = modkernel32.NewProc(\"WriteFile\")\n\tprocGetOverlappedResult                                  = modkernel32.NewProc(\"GetOverlappedResult\")\n\tprocSetFilePointer                                       = modkernel32.NewProc(\"SetFilePointer\")\n\tprocCloseHandle                                          = modkernel32.NewProc(\"CloseHandle\")\n\tprocGetStdHandle                                         = modkernel32.NewProc(\"GetStdHandle\")\n\tprocSetStdHandle                                         = modkernel32.NewProc(\"SetStdHandle\")\n\tprocFindFirstFileW                                       = modkernel32.NewProc(\"FindFirstFileW\")\n\tprocFindNextFileW                                        = modkernel32.NewProc(\"FindNextFileW\")\n\tprocFindClose                                            = modkernel32.NewProc(\"FindClose\")\n\tprocGetFileInformationByHandle                           = modkernel32.NewProc(\"GetFileInformationByHandle\")\n\tprocGetFileInformationByHandleEx                         = modkernel32.NewProc(\"GetFileInformationByHandleEx\")\n\tprocGetCurrentDirectoryW                                 = modkernel32.NewProc(\"GetCurrentDirectoryW\")\n\tprocSetCurrentDirectoryW                                 = modkernel32.NewProc(\"SetCurrentDirectoryW\")\n\tprocCreateDirectoryW                                     = modkernel32.NewProc(\"CreateDirectoryW\")\n\tprocRemoveDirectoryW                                     = modkernel32.NewProc(\"RemoveDirectoryW\")\n\tprocDeleteFileW                                          = modkernel32.NewProc(\"DeleteFileW\")\n\tprocMoveFileW                                            = modkernel32.NewProc(\"MoveFileW\")\n\tprocMoveFileExW                                          = modkernel32.NewProc(\"MoveFileExW\")\n\tprocLockFileEx                                           = modkernel32.NewProc(\"LockFileEx\")\n\tprocUnlockFileEx                                         = modkernel32.NewProc(\"UnlockFileEx\")\n\tprocGetComputerNameW                                     = modkernel32.NewProc(\"GetComputerNameW\")\n\tprocGetComputerNameExW                                   = modkernel32.NewProc(\"GetComputerNameExW\")\n\tprocSetEndOfFile                                         = modkernel32.NewProc(\"SetEndOfFile\")\n\tprocGetSystemTimeAsFileTime                              = modkernel32.NewProc(\"GetSystemTimeAsFileTime\")\n\tprocGetSystemTimePreciseAsFileTime                       = modkernel32.NewProc(\"GetSystemTimePreciseAsFileTime\")\n\tprocGetTimeZoneInformation                               = modkernel32.NewProc(\"GetTimeZoneInformation\")\n\tprocCreateIoCompletionPort                               = modkernel32.NewProc(\"CreateIoCompletionPort\")\n\tprocGetQueuedCompletionStatus                            = modkernel32.NewProc(\"GetQueuedCompletionStatus\")\n\tprocPostQueuedCompletionStatus                           = modkernel32.NewProc(\"PostQueuedCompletionStatus\")\n\tprocCancelIo                                             = modkernel32.NewProc(\"CancelIo\")\n\tprocCancelIoEx                                           = modkernel32.NewProc(\"CancelIoEx\")\n\tprocCreateProcessW                                       = modkernel32.NewProc(\"CreateProcessW\")\n\tprocOpenProcess                                          = modkernel32.NewProc(\"OpenProcess\")\n\tprocShellExecuteW                                        = modshell32.NewProc(\"ShellExecuteW\")\n\tprocSHGetKnownFolderPath                                 = modshell32.NewProc(\"SHGetKnownFolderPath\")\n\tprocTerminateProcess                                     = modkernel32.NewProc(\"TerminateProcess\")\n\tprocGetExitCodeProcess                                   = modkernel32.NewProc(\"GetExitCodeProcess\")\n\tprocGetStartupInfoW                                      = modkernel32.NewProc(\"GetStartupInfoW\")\n\tprocGetProcessTimes                                      = modkernel32.NewProc(\"GetProcessTimes\")\n\tprocDuplicateHandle                                      = modkernel32.NewProc(\"DuplicateHandle\")\n\tprocWaitForSingleObject                                  = modkernel32.NewProc(\"WaitForSingleObject\")\n\tprocWaitForMultipleObjects                               = modkernel32.NewProc(\"WaitForMultipleObjects\")\n\tprocGetTempPathW                                         = modkernel32.NewProc(\"GetTempPathW\")\n\tprocCreatePipe                                           = modkernel32.NewProc(\"CreatePipe\")\n\tprocGetFileType                                          = modkernel32.NewProc(\"GetFileType\")\n\tprocCryptAcquireContextW                                 = modadvapi32.NewProc(\"CryptAcquireContextW\")\n\tprocCryptReleaseContext                                  = modadvapi32.NewProc(\"CryptReleaseContext\")\n\tprocCryptGenRandom                                       = modadvapi32.NewProc(\"CryptGenRandom\")\n\tprocGetEnvironmentStringsW                               = modkernel32.NewProc(\"GetEnvironmentStringsW\")\n\tprocFreeEnvironmentStringsW                              = modkernel32.NewProc(\"FreeEnvironmentStringsW\")\n\tprocGetEnvironmentVariableW                              = modkernel32.NewProc(\"GetEnvironmentVariableW\")\n\tprocSetEnvironmentVariableW                              = modkernel32.NewProc(\"SetEnvironmentVariableW\")\n\tprocCreateEnvironmentBlock                               = moduserenv.NewProc(\"CreateEnvironmentBlock\")\n\tprocDestroyEnvironmentBlock                              = moduserenv.NewProc(\"DestroyEnvironmentBlock\")\n\tprocGetTickCount64                                       = modkernel32.NewProc(\"GetTickCount64\")\n\tprocSetFileTime                                          = modkernel32.NewProc(\"SetFileTime\")\n\tprocGetFileAttributesW                                   = modkernel32.NewProc(\"GetFileAttributesW\")\n\tprocSetFileAttributesW                                   = modkernel32.NewProc(\"SetFileAttributesW\")\n\tprocGetFileAttributesExW                                 = modkernel32.NewProc(\"GetFileAttributesExW\")\n\tprocGetCommandLineW                                      = modkernel32.NewProc(\"GetCommandLineW\")\n\tprocCommandLineToArgvW                                   = modshell32.NewProc(\"CommandLineToArgvW\")\n\tprocLocalFree                                            = modkernel32.NewProc(\"LocalFree\")\n\tprocSetHandleInformation                                 = modkernel32.NewProc(\"SetHandleInformation\")\n\tprocFlushFileBuffers                                     = modkernel32.NewProc(\"FlushFileBuffers\")\n\tprocGetFullPathNameW                                     = modkernel32.NewProc(\"GetFullPathNameW\")\n\tprocGetLongPathNameW                                     = modkernel32.NewProc(\"GetLongPathNameW\")\n\tprocGetShortPathNameW                                    = modkernel32.NewProc(\"GetShortPathNameW\")\n\tprocCreateFileMappingW                                   = modkernel32.NewProc(\"CreateFileMappingW\")\n\tprocMapViewOfFile                                        = modkernel32.NewProc(\"MapViewOfFile\")\n\tprocUnmapViewOfFile                                      = modkernel32.NewProc(\"UnmapViewOfFile\")\n\tprocFlushViewOfFile                                      = modkernel32.NewProc(\"FlushViewOfFile\")\n\tprocVirtualLock                                          = modkernel32.NewProc(\"VirtualLock\")\n\tprocVirtualUnlock                                        = modkernel32.NewProc(\"VirtualUnlock\")\n\tprocVirtualAlloc                                         = modkernel32.NewProc(\"VirtualAlloc\")\n\tprocVirtualFree                                          = modkernel32.NewProc(\"VirtualFree\")\n\tprocVirtualProtect                                       = modkernel32.NewProc(\"VirtualProtect\")\n\tprocTransmitFile                                         = modmswsock.NewProc(\"TransmitFile\")\n\tprocReadDirectoryChangesW                                = modkernel32.NewProc(\"ReadDirectoryChangesW\")\n\tprocCertOpenSystemStoreW                                 = modcrypt32.NewProc(\"CertOpenSystemStoreW\")\n\tprocCertOpenStore                                        = modcrypt32.NewProc(\"CertOpenStore\")\n\tprocCertEnumCertificatesInStore                          = modcrypt32.NewProc(\"CertEnumCertificatesInStore\")\n\tprocCertAddCertificateContextToStore                     = modcrypt32.NewProc(\"CertAddCertificateContextToStore\")\n\tprocCertCloseStore                                       = modcrypt32.NewProc(\"CertCloseStore\")\n\tprocCertGetCertificateChain                              = modcrypt32.NewProc(\"CertGetCertificateChain\")\n\tprocCertFreeCertificateChain                             = modcrypt32.NewProc(\"CertFreeCertificateChain\")\n\tprocCertCreateCertificateContext                         = modcrypt32.NewProc(\"CertCreateCertificateContext\")\n\tprocCertFreeCertificateContext                           = modcrypt32.NewProc(\"CertFreeCertificateContext\")\n\tprocCertVerifyCertificateChainPolicy                     = modcrypt32.NewProc(\"CertVerifyCertificateChainPolicy\")\n\tprocRegOpenKeyExW                                        = modadvapi32.NewProc(\"RegOpenKeyExW\")\n\tprocRegCloseKey                                          = modadvapi32.NewProc(\"RegCloseKey\")\n\tprocRegQueryInfoKeyW                                     = modadvapi32.NewProc(\"RegQueryInfoKeyW\")\n\tprocRegEnumKeyExW                                        = modadvapi32.NewProc(\"RegEnumKeyExW\")\n\tprocRegQueryValueExW                                     = modadvapi32.NewProc(\"RegQueryValueExW\")\n\tprocGetCurrentProcessId                                  = modkernel32.NewProc(\"GetCurrentProcessId\")\n\tprocGetConsoleMode                                       = modkernel32.NewProc(\"GetConsoleMode\")\n\tprocSetConsoleMode                                       = modkernel32.NewProc(\"SetConsoleMode\")\n\tprocGetConsoleScreenBufferInfo                           = modkernel32.NewProc(\"GetConsoleScreenBufferInfo\")\n\tprocWriteConsoleW                                        = modkernel32.NewProc(\"WriteConsoleW\")\n\tprocReadConsoleW                                         = modkernel32.NewProc(\"ReadConsoleW\")\n\tprocCreateToolhelp32Snapshot                             = modkernel32.NewProc(\"CreateToolhelp32Snapshot\")\n\tprocProcess32FirstW                                      = modkernel32.NewProc(\"Process32FirstW\")\n\tprocProcess32NextW                                       = modkernel32.NewProc(\"Process32NextW\")\n\tprocThread32First                                        = modkernel32.NewProc(\"Thread32First\")\n\tprocThread32Next                                         = modkernel32.NewProc(\"Thread32Next\")\n\tprocDeviceIoControl                                      = modkernel32.NewProc(\"DeviceIoControl\")\n\tprocCreateSymbolicLinkW                                  = modkernel32.NewProc(\"CreateSymbolicLinkW\")\n\tprocCreateHardLinkW                                      = modkernel32.NewProc(\"CreateHardLinkW\")\n\tprocGetCurrentThreadId                                   = modkernel32.NewProc(\"GetCurrentThreadId\")\n\tprocCreateEventW                                         = modkernel32.NewProc(\"CreateEventW\")\n\tprocCreateEventExW                                       = modkernel32.NewProc(\"CreateEventExW\")\n\tprocOpenEventW                                           = modkernel32.NewProc(\"OpenEventW\")\n\tprocSetEvent                                             = modkernel32.NewProc(\"SetEvent\")\n\tprocResetEvent                                           = modkernel32.NewProc(\"ResetEvent\")\n\tprocPulseEvent                                           = modkernel32.NewProc(\"PulseEvent\")\n\tprocCreateMutexW                                         = modkernel32.NewProc(\"CreateMutexW\")\n\tprocCreateMutexExW                                       = modkernel32.NewProc(\"CreateMutexExW\")\n\tprocOpenMutexW                                           = modkernel32.NewProc(\"OpenMutexW\")\n\tprocReleaseMutex                                         = modkernel32.NewProc(\"ReleaseMutex\")\n\tprocSleepEx                                              = modkernel32.NewProc(\"SleepEx\")\n\tprocCreateJobObjectW                                     = modkernel32.NewProc(\"CreateJobObjectW\")\n\tprocAssignProcessToJobObject                             = modkernel32.NewProc(\"AssignProcessToJobObject\")\n\tprocTerminateJobObject                                   = modkernel32.NewProc(\"TerminateJobObject\")\n\tprocSetErrorMode                                         = modkernel32.NewProc(\"SetErrorMode\")\n\tprocResumeThread                                         = modkernel32.NewProc(\"ResumeThread\")\n\tprocSetPriorityClass                                     = modkernel32.NewProc(\"SetPriorityClass\")\n\tprocGetPriorityClass                                     = modkernel32.NewProc(\"GetPriorityClass\")\n\tprocQueryInformationJobObject                            = modkernel32.NewProc(\"QueryInformationJobObject\")\n\tprocSetInformationJobObject                              = modkernel32.NewProc(\"SetInformationJobObject\")\n\tprocGenerateConsoleCtrlEvent                             = modkernel32.NewProc(\"GenerateConsoleCtrlEvent\")\n\tprocGetProcessId                                         = modkernel32.NewProc(\"GetProcessId\")\n\tprocOpenThread                                           = modkernel32.NewProc(\"OpenThread\")\n\tprocSetProcessPriorityBoost                              = modkernel32.NewProc(\"SetProcessPriorityBoost\")\n\tprocGetProcessWorkingSetSizeEx                           = modkernel32.NewProc(\"GetProcessWorkingSetSizeEx\")\n\tprocSetProcessWorkingSetSizeEx                           = modkernel32.NewProc(\"SetProcessWorkingSetSizeEx\")\n\tprocDefineDosDeviceW                                     = modkernel32.NewProc(\"DefineDosDeviceW\")\n\tprocDeleteVolumeMountPointW                              = modkernel32.NewProc(\"DeleteVolumeMountPointW\")\n\tprocFindFirstVolumeW                                     = modkernel32.NewProc(\"FindFirstVolumeW\")\n\tprocFindFirstVolumeMountPointW                           = modkernel32.NewProc(\"FindFirstVolumeMountPointW\")\n\tprocFindNextVolumeW                                      = modkernel32.NewProc(\"FindNextVolumeW\")\n\tprocFindNextVolumeMountPointW                            = modkernel32.NewProc(\"FindNextVolumeMountPointW\")\n\tprocFindVolumeClose                                      = modkernel32.NewProc(\"FindVolumeClose\")\n\tprocFindVolumeMountPointClose                            = modkernel32.NewProc(\"FindVolumeMountPointClose\")\n\tprocGetDiskFreeSpaceExW                                  = modkernel32.NewProc(\"GetDiskFreeSpaceExW\")\n\tprocGetDriveTypeW                                        = modkernel32.NewProc(\"GetDriveTypeW\")\n\tprocGetLogicalDrives                                     = modkernel32.NewProc(\"GetLogicalDrives\")\n\tprocGetLogicalDriveStringsW                              = modkernel32.NewProc(\"GetLogicalDriveStringsW\")\n\tprocGetVolumeInformationW                                = modkernel32.NewProc(\"GetVolumeInformationW\")\n\tprocGetVolumeInformationByHandleW                        = modkernel32.NewProc(\"GetVolumeInformationByHandleW\")\n\tprocGetVolumeNameForVolumeMountPointW                    = modkernel32.NewProc(\"GetVolumeNameForVolumeMountPointW\")\n\tprocGetVolumePathNameW                                   = modkernel32.NewProc(\"GetVolumePathNameW\")\n\tprocGetVolumePathNamesForVolumeNameW                     = modkernel32.NewProc(\"GetVolumePathNamesForVolumeNameW\")\n\tprocQueryDosDeviceW                                      = modkernel32.NewProc(\"QueryDosDeviceW\")\n\tprocSetVolumeLabelW                                      = modkernel32.NewProc(\"SetVolumeLabelW\")\n\tprocSetVolumeMountPointW                                 = modkernel32.NewProc(\"SetVolumeMountPointW\")\n\tprocMessageBoxW                                          = moduser32.NewProc(\"MessageBoxW\")\n\tprocExitWindowsEx                                        = moduser32.NewProc(\"ExitWindowsEx\")\n\tprocInitiateSystemShutdownExW                            = modadvapi32.NewProc(\"InitiateSystemShutdownExW\")\n\tprocSetProcessShutdownParameters                         = modkernel32.NewProc(\"SetProcessShutdownParameters\")\n\tprocGetProcessShutdownParameters                         = modkernel32.NewProc(\"GetProcessShutdownParameters\")\n\tprocCLSIDFromString                                      = modole32.NewProc(\"CLSIDFromString\")\n\tprocStringFromGUID2                                      = modole32.NewProc(\"StringFromGUID2\")\n\tprocCoCreateGuid                                         = modole32.NewProc(\"CoCreateGuid\")\n\tprocCoTaskMemFree                                        = modole32.NewProc(\"CoTaskMemFree\")\n\tprocRtlGetVersion                                        = modntdll.NewProc(\"RtlGetVersion\")\n\tprocRtlGetNtVersionNumbers                               = modntdll.NewProc(\"RtlGetNtVersionNumbers\")\n\tprocGetProcessPreferredUILanguages                       = modkernel32.NewProc(\"GetProcessPreferredUILanguages\")\n\tprocGetThreadPreferredUILanguages                        = modkernel32.NewProc(\"GetThreadPreferredUILanguages\")\n\tprocGetUserPreferredUILanguages                          = modkernel32.NewProc(\"GetUserPreferredUILanguages\")\n\tprocGetSystemPreferredUILanguages                        = modkernel32.NewProc(\"GetSystemPreferredUILanguages\")\n\tprocEnumProcesses                                        = modpsapi.NewProc(\"EnumProcesses\")\n\tprocWSAStartup                                           = modws2_32.NewProc(\"WSAStartup\")\n\tprocWSACleanup                                           = modws2_32.NewProc(\"WSACleanup\")\n\tprocWSAIoctl                                             = modws2_32.NewProc(\"WSAIoctl\")\n\tprocsocket                                               = modws2_32.NewProc(\"socket\")\n\tprocsendto                                               = modws2_32.NewProc(\"sendto\")\n\tprocrecvfrom                                             = modws2_32.NewProc(\"recvfrom\")\n\tprocsetsockopt                                           = modws2_32.NewProc(\"setsockopt\")\n\tprocgetsockopt                                           = modws2_32.NewProc(\"getsockopt\")\n\tprocbind                                                 = modws2_32.NewProc(\"bind\")\n\tprocconnect                                              = modws2_32.NewProc(\"connect\")\n\tprocgetsockname                                          = modws2_32.NewProc(\"getsockname\")\n\tprocgetpeername                                          = modws2_32.NewProc(\"getpeername\")\n\tproclisten                                               = modws2_32.NewProc(\"listen\")\n\tprocshutdown                                             = modws2_32.NewProc(\"shutdown\")\n\tprocclosesocket                                          = modws2_32.NewProc(\"closesocket\")\n\tprocAcceptEx                                             = modmswsock.NewProc(\"AcceptEx\")\n\tprocGetAcceptExSockaddrs                                 = modmswsock.NewProc(\"GetAcceptExSockaddrs\")\n\tprocWSARecv                                              = modws2_32.NewProc(\"WSARecv\")\n\tprocWSASend                                              = modws2_32.NewProc(\"WSASend\")\n\tprocWSARecvFrom                                          = modws2_32.NewProc(\"WSARecvFrom\")\n\tprocWSASendTo                                            = modws2_32.NewProc(\"WSASendTo\")\n\tprocgethostbyname                                        = modws2_32.NewProc(\"gethostbyname\")\n\tprocgetservbyname                                        = modws2_32.NewProc(\"getservbyname\")\n\tprocntohs                                                = modws2_32.NewProc(\"ntohs\")\n\tprocgetprotobyname                                       = modws2_32.NewProc(\"getprotobyname\")\n\tprocDnsQuery_W                                           = moddnsapi.NewProc(\"DnsQuery_W\")\n\tprocDnsRecordListFree                                    = moddnsapi.NewProc(\"DnsRecordListFree\")\n\tprocDnsNameCompare_W                                     = moddnsapi.NewProc(\"DnsNameCompare_W\")\n\tprocGetAddrInfoW                                         = modws2_32.NewProc(\"GetAddrInfoW\")\n\tprocFreeAddrInfoW                                        = modws2_32.NewProc(\"FreeAddrInfoW\")\n\tprocGetIfEntry                                           = modiphlpapi.NewProc(\"GetIfEntry\")\n\tprocGetAdaptersInfo                                      = modiphlpapi.NewProc(\"GetAdaptersInfo\")\n\tprocSetFileCompletionNotificationModes                   = modkernel32.NewProc(\"SetFileCompletionNotificationModes\")\n\tprocWSAEnumProtocolsW                                    = modws2_32.NewProc(\"WSAEnumProtocolsW\")\n\tprocGetAdaptersAddresses                                 = modiphlpapi.NewProc(\"GetAdaptersAddresses\")\n\tprocGetACP                                               = modkernel32.NewProc(\"GetACP\")\n\tprocMultiByteToWideChar                                  = modkernel32.NewProc(\"MultiByteToWideChar\")\n\tprocTranslateNameW                                       = modsecur32.NewProc(\"TranslateNameW\")\n\tprocGetUserNameExW                                       = modsecur32.NewProc(\"GetUserNameExW\")\n\tprocNetUserGetInfo                                       = modnetapi32.NewProc(\"NetUserGetInfo\")\n\tprocNetGetJoinInformation                                = modnetapi32.NewProc(\"NetGetJoinInformation\")\n\tprocNetApiBufferFree                                     = modnetapi32.NewProc(\"NetApiBufferFree\")\n\tprocLookupAccountSidW                                    = modadvapi32.NewProc(\"LookupAccountSidW\")\n\tprocLookupAccountNameW                                   = modadvapi32.NewProc(\"LookupAccountNameW\")\n\tprocConvertSidToStringSidW                               = modadvapi32.NewProc(\"ConvertSidToStringSidW\")\n\tprocConvertStringSidToSidW                               = modadvapi32.NewProc(\"ConvertStringSidToSidW\")\n\tprocGetLengthSid                                         = modadvapi32.NewProc(\"GetLengthSid\")\n\tprocCopySid                                              = modadvapi32.NewProc(\"CopySid\")\n\tprocAllocateAndInitializeSid                             = modadvapi32.NewProc(\"AllocateAndInitializeSid\")\n\tprocCreateWellKnownSid                                   = modadvapi32.NewProc(\"CreateWellKnownSid\")\n\tprocIsWellKnownSid                                       = modadvapi32.NewProc(\"IsWellKnownSid\")\n\tprocFreeSid                                              = modadvapi32.NewProc(\"FreeSid\")\n\tprocEqualSid                                             = modadvapi32.NewProc(\"EqualSid\")\n\tprocGetSidIdentifierAuthority                            = modadvapi32.NewProc(\"GetSidIdentifierAuthority\")\n\tprocGetSidSubAuthorityCount                              = modadvapi32.NewProc(\"GetSidSubAuthorityCount\")\n\tprocGetSidSubAuthority                                   = modadvapi32.NewProc(\"GetSidSubAuthority\")\n\tprocIsValidSid                                           = modadvapi32.NewProc(\"IsValidSid\")\n\tprocCheckTokenMembership                                 = modadvapi32.NewProc(\"CheckTokenMembership\")\n\tprocOpenProcessToken                                     = modadvapi32.NewProc(\"OpenProcessToken\")\n\tprocOpenThreadToken                                      = modadvapi32.NewProc(\"OpenThreadToken\")\n\tprocImpersonateSelf                                      = modadvapi32.NewProc(\"ImpersonateSelf\")\n\tprocRevertToSelf                                         = modadvapi32.NewProc(\"RevertToSelf\")\n\tprocSetThreadToken                                       = modadvapi32.NewProc(\"SetThreadToken\")\n\tprocLookupPrivilegeValueW                                = modadvapi32.NewProc(\"LookupPrivilegeValueW\")\n\tprocAdjustTokenPrivileges                                = modadvapi32.NewProc(\"AdjustTokenPrivileges\")\n\tprocAdjustTokenGroups                                    = modadvapi32.NewProc(\"AdjustTokenGroups\")\n\tprocGetTokenInformation                                  = modadvapi32.NewProc(\"GetTokenInformation\")\n\tprocSetTokenInformation                                  = modadvapi32.NewProc(\"SetTokenInformation\")\n\tprocDuplicateTokenEx                                     = modadvapi32.NewProc(\"DuplicateTokenEx\")\n\tprocGetUserProfileDirectoryW                             = moduserenv.NewProc(\"GetUserProfileDirectoryW\")\n\tprocGetSystemDirectoryW                                  = modkernel32.NewProc(\"GetSystemDirectoryW\")\n\tprocGetWindowsDirectoryW                                 = modkernel32.NewProc(\"GetWindowsDirectoryW\")\n\tprocGetSystemWindowsDirectoryW                           = modkernel32.NewProc(\"GetSystemWindowsDirectoryW\")\n\tprocWTSQueryUserToken                                    = modwtsapi32.NewProc(\"WTSQueryUserToken\")\n\tprocWTSEnumerateSessionsW                                = modwtsapi32.NewProc(\"WTSEnumerateSessionsW\")\n\tprocWTSFreeMemory                                        = modwtsapi32.NewProc(\"WTSFreeMemory\")\n\tprocGetSecurityInfo                                      = modadvapi32.NewProc(\"GetSecurityInfo\")\n\tprocSetSecurityInfo                                      = modadvapi32.NewProc(\"SetSecurityInfo\")\n\tprocGetNamedSecurityInfoW                                = modadvapi32.NewProc(\"GetNamedSecurityInfoW\")\n\tprocSetNamedSecurityInfoW                                = modadvapi32.NewProc(\"SetNamedSecurityInfoW\")\n\tprocBuildSecurityDescriptorW                             = modadvapi32.NewProc(\"BuildSecurityDescriptorW\")\n\tprocInitializeSecurityDescriptor                         = modadvapi32.NewProc(\"InitializeSecurityDescriptor\")\n\tprocGetSecurityDescriptorControl                         = modadvapi32.NewProc(\"GetSecurityDescriptorControl\")\n\tprocGetSecurityDescriptorDacl                            = modadvapi32.NewProc(\"GetSecurityDescriptorDacl\")\n\tprocGetSecurityDescriptorSacl                            = modadvapi32.NewProc(\"GetSecurityDescriptorSacl\")\n\tprocGetSecurityDescriptorOwner                           = modadvapi32.NewProc(\"GetSecurityDescriptorOwner\")\n\tprocGetSecurityDescriptorGroup                           = modadvapi32.NewProc(\"GetSecurityDescriptorGroup\")\n\tprocGetSecurityDescriptorLength                          = modadvapi32.NewProc(\"GetSecurityDescriptorLength\")\n\tprocGetSecurityDescriptorRMControl                       = modadvapi32.NewProc(\"GetSecurityDescriptorRMControl\")\n\tprocIsValidSecurityDescriptor                            = modadvapi32.NewProc(\"IsValidSecurityDescriptor\")\n\tprocSetSecurityDescriptorControl                         = modadvapi32.NewProc(\"SetSecurityDescriptorControl\")\n\tprocSetSecurityDescriptorDacl                            = modadvapi32.NewProc(\"SetSecurityDescriptorDacl\")\n\tprocSetSecurityDescriptorSacl                            = modadvapi32.NewProc(\"SetSecurityDescriptorSacl\")\n\tprocSetSecurityDescriptorOwner                           = modadvapi32.NewProc(\"SetSecurityDescriptorOwner\")\n\tprocSetSecurityDescriptorGroup                           = modadvapi32.NewProc(\"SetSecurityDescriptorGroup\")\n\tprocSetSecurityDescriptorRMControl                       = modadvapi32.NewProc(\"SetSecurityDescriptorRMControl\")\n\tprocConvertStringSecurityDescriptorToSecurityDescriptorW = modadvapi32.NewProc(\"ConvertStringSecurityDescriptorToSecurityDescriptorW\")\n\tprocConvertSecurityDescriptorToStringSecurityDescriptorW = modadvapi32.NewProc(\"ConvertSecurityDescriptorToStringSecurityDescriptorW\")\n\tprocMakeAbsoluteSD                                       = modadvapi32.NewProc(\"MakeAbsoluteSD\")\n\tprocMakeSelfRelativeSD                                   = modadvapi32.NewProc(\"MakeSelfRelativeSD\")\n\tprocSetEntriesInAclW                                     = modadvapi32.NewProc(\"SetEntriesInAclW\")\n)\n\nfunc RegisterEventSource(uncServerName *uint16, sourceName *uint16) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procRegisterEventSourceW.Addr(), 2, uintptr(unsafe.Pointer(uncServerName)), uintptr(unsafe.Pointer(sourceName)), 0)\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DeregisterEventSource(handle Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procDeregisterEventSource.Addr(), 1, uintptr(handle), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ReportEvent(log Handle, etype uint16, category uint16, eventId uint32, usrSId uintptr, numStrings uint16, dataSize uint32, strings **uint16, rawData *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procReportEventW.Addr(), 9, uintptr(log), uintptr(etype), uintptr(category), uintptr(eventId), uintptr(usrSId), uintptr(numStrings), uintptr(dataSize), uintptr(unsafe.Pointer(strings)), uintptr(unsafe.Pointer(rawData)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc OpenSCManager(machineName *uint16, databaseName *uint16, access uint32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procOpenSCManagerW.Addr(), 3, uintptr(unsafe.Pointer(machineName)), uintptr(unsafe.Pointer(databaseName)), uintptr(access))\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CloseServiceHandle(handle Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCloseServiceHandle.Addr(), 1, uintptr(handle), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateService(mgr Handle, serviceName *uint16, displayName *uint16, access uint32, srvType uint32, startType uint32, errCtl uint32, pathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall15(procCreateServiceW.Addr(), 13, uintptr(mgr), uintptr(unsafe.Pointer(serviceName)), uintptr(unsafe.Pointer(displayName)), uintptr(access), uintptr(srvType), uintptr(startType), uintptr(errCtl), uintptr(unsafe.Pointer(pathName)), uintptr(unsafe.Pointer(loadOrderGroup)), uintptr(unsafe.Pointer(tagId)), uintptr(unsafe.Pointer(dependencies)), uintptr(unsafe.Pointer(serviceStartName)), uintptr(unsafe.Pointer(password)), 0, 0)\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc OpenService(mgr Handle, serviceName *uint16, access uint32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procOpenServiceW.Addr(), 3, uintptr(mgr), uintptr(unsafe.Pointer(serviceName)), uintptr(access))\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DeleteService(service Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procDeleteService.Addr(), 1, uintptr(service), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc StartService(service Handle, numArgs uint32, argVectors **uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procStartServiceW.Addr(), 3, uintptr(service), uintptr(numArgs), uintptr(unsafe.Pointer(argVectors)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc QueryServiceStatus(service Handle, status *SERVICE_STATUS) (err error) {\n\tr1, _, e1 := syscall.Syscall(procQueryServiceStatus.Addr(), 2, uintptr(service), uintptr(unsafe.Pointer(status)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc QueryServiceLockStatus(mgr Handle, lockStatus *QUERY_SERVICE_LOCK_STATUS, bufSize uint32, bytesNeeded *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procQueryServiceLockStatusW.Addr(), 4, uintptr(mgr), uintptr(unsafe.Pointer(lockStatus)), uintptr(bufSize), uintptr(unsafe.Pointer(bytesNeeded)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ControlService(service Handle, control uint32, status *SERVICE_STATUS) (err error) {\n\tr1, _, e1 := syscall.Syscall(procControlService.Addr(), 3, uintptr(service), uintptr(control), uintptr(unsafe.Pointer(status)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc StartServiceCtrlDispatcher(serviceTable *SERVICE_TABLE_ENTRY) (err error) {\n\tr1, _, e1 := syscall.Syscall(procStartServiceCtrlDispatcherW.Addr(), 1, uintptr(unsafe.Pointer(serviceTable)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetServiceStatus(service Handle, serviceStatus *SERVICE_STATUS) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetServiceStatus.Addr(), 2, uintptr(service), uintptr(unsafe.Pointer(serviceStatus)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ChangeServiceConfig(service Handle, serviceType uint32, startType uint32, errorControl uint32, binaryPathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16, displayName *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall12(procChangeServiceConfigW.Addr(), 11, uintptr(service), uintptr(serviceType), uintptr(startType), uintptr(errorControl), uintptr(unsafe.Pointer(binaryPathName)), uintptr(unsafe.Pointer(loadOrderGroup)), uintptr(unsafe.Pointer(tagId)), uintptr(unsafe.Pointer(dependencies)), uintptr(unsafe.Pointer(serviceStartName)), uintptr(unsafe.Pointer(password)), uintptr(unsafe.Pointer(displayName)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc QueryServiceConfig(service Handle, serviceConfig *QUERY_SERVICE_CONFIG, bufSize uint32, bytesNeeded *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procQueryServiceConfigW.Addr(), 4, uintptr(service), uintptr(unsafe.Pointer(serviceConfig)), uintptr(bufSize), uintptr(unsafe.Pointer(bytesNeeded)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ChangeServiceConfig2(service Handle, infoLevel uint32, info *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall(procChangeServiceConfig2W.Addr(), 3, uintptr(service), uintptr(infoLevel), uintptr(unsafe.Pointer(info)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc QueryServiceConfig2(service Handle, infoLevel uint32, buff *byte, buffSize uint32, bytesNeeded *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procQueryServiceConfig2W.Addr(), 5, uintptr(service), uintptr(infoLevel), uintptr(unsafe.Pointer(buff)), uintptr(buffSize), uintptr(unsafe.Pointer(bytesNeeded)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc EnumServicesStatusEx(mgr Handle, infoLevel uint32, serviceType uint32, serviceState uint32, services *byte, bufSize uint32, bytesNeeded *uint32, servicesReturned *uint32, resumeHandle *uint32, groupName *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall12(procEnumServicesStatusExW.Addr(), 10, uintptr(mgr), uintptr(infoLevel), uintptr(serviceType), uintptr(serviceState), uintptr(unsafe.Pointer(services)), uintptr(bufSize), uintptr(unsafe.Pointer(bytesNeeded)), uintptr(unsafe.Pointer(servicesReturned)), uintptr(unsafe.Pointer(resumeHandle)), uintptr(unsafe.Pointer(groupName)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc QueryServiceStatusEx(service Handle, infoLevel uint32, buff *byte, buffSize uint32, bytesNeeded *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procQueryServiceStatusEx.Addr(), 5, uintptr(service), uintptr(infoLevel), uintptr(unsafe.Pointer(buff)), uintptr(buffSize), uintptr(unsafe.Pointer(bytesNeeded)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc NotifyServiceStatusChange(service Handle, notifyMask uint32, notifier *SERVICE_NOTIFY) (ret error) {\n\tr0, _, _ := syscall.Syscall(procNotifyServiceStatusChangeW.Addr(), 3, uintptr(service), uintptr(notifyMask), uintptr(unsafe.Pointer(notifier)))\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc GetLastError() (lasterr error) {\n\tr0, _, _ := syscall.Syscall(procGetLastError.Addr(), 0, 0, 0, 0)\n\tif r0 != 0 {\n\t\tlasterr = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc LoadLibrary(libname string) (handle Handle, err error) {\n\tvar _p0 *uint16\n\t_p0, err = syscall.UTF16PtrFromString(libname)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn _LoadLibrary(_p0)\n}\n\nfunc _LoadLibrary(libname *uint16) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procLoadLibraryW.Addr(), 1, uintptr(unsafe.Pointer(libname)), 0, 0)\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc LoadLibraryEx(libname string, zero Handle, flags uintptr) (handle Handle, err error) {\n\tvar _p0 *uint16\n\t_p0, err = syscall.UTF16PtrFromString(libname)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn _LoadLibraryEx(_p0, zero, flags)\n}\n\nfunc _LoadLibraryEx(libname *uint16, zero Handle, flags uintptr) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procLoadLibraryExW.Addr(), 3, uintptr(unsafe.Pointer(libname)), uintptr(zero), uintptr(flags))\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FreeLibrary(handle Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFreeLibrary.Addr(), 1, uintptr(handle), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetProcAddress(module Handle, procname string) (proc uintptr, err error) {\n\tvar _p0 *byte\n\t_p0, err = syscall.BytePtrFromString(procname)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn _GetProcAddress(module, _p0)\n}\n\nfunc _GetProcAddress(module Handle, procname *byte) (proc uintptr, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetProcAddress.Addr(), 2, uintptr(module), uintptr(unsafe.Pointer(procname)), 0)\n\tproc = uintptr(r0)\n\tif proc == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetModuleFileName(module Handle, filename *uint16, size uint32) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetModuleFileNameW.Addr(), 3, uintptr(module), uintptr(unsafe.Pointer(filename)), uintptr(size))\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetModuleHandleEx(flags uint32, moduleName *uint16, module *Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetModuleHandleExW.Addr(), 3, uintptr(flags), uintptr(unsafe.Pointer(moduleName)), uintptr(unsafe.Pointer(module)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetVersion() (ver uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetVersion.Addr(), 0, 0, 0, 0)\n\tver = uint32(r0)\n\tif ver == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FormatMessage(flags uint32, msgsrc uintptr, msgid uint32, langid uint32, buf []uint16, args *byte) (n uint32, err error) {\n\tvar _p0 *uint16\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr0, _, e1 := syscall.Syscall9(procFormatMessageW.Addr(), 7, uintptr(flags), uintptr(msgsrc), uintptr(msgid), uintptr(langid), uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), uintptr(unsafe.Pointer(args)), 0, 0)\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ExitProcess(exitcode uint32) {\n\tsyscall.Syscall(procExitProcess.Addr(), 1, uintptr(exitcode), 0, 0)\n\treturn\n}\n\nfunc IsWow64Process(handle Handle, isWow64 *bool) (err error) {\n\tvar _p0 uint32\n\tif *isWow64 {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall(procIsWow64Process.Addr(), 2, uintptr(handle), uintptr(unsafe.Pointer(&_p0)), 0)\n\t*isWow64 = _p0 != 0\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateFile(name *uint16, access uint32, mode uint32, sa *SecurityAttributes, createmode uint32, attrs uint32, templatefile Handle) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall9(procCreateFileW.Addr(), 7, uintptr(unsafe.Pointer(name)), uintptr(access), uintptr(mode), uintptr(unsafe.Pointer(sa)), uintptr(createmode), uintptr(attrs), uintptr(templatefile), 0, 0)\n\thandle = Handle(r0)\n\tif handle == InvalidHandle {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ReadFile(handle Handle, buf []byte, done *uint32, overlapped *Overlapped) (err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr1, _, e1 := syscall.Syscall6(procReadFile.Addr(), 5, uintptr(handle), uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), uintptr(unsafe.Pointer(done)), uintptr(unsafe.Pointer(overlapped)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WriteFile(handle Handle, buf []byte, done *uint32, overlapped *Overlapped) (err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr1, _, e1 := syscall.Syscall6(procWriteFile.Addr(), 5, uintptr(handle), uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), uintptr(unsafe.Pointer(done)), uintptr(unsafe.Pointer(overlapped)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetOverlappedResult(handle Handle, overlapped *Overlapped, done *uint32, wait bool) (err error) {\n\tvar _p0 uint32\n\tif wait {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall6(procGetOverlappedResult.Addr(), 4, uintptr(handle), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(done)), uintptr(_p0), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetFilePointer(handle Handle, lowoffset int32, highoffsetptr *int32, whence uint32) (newlowoffset uint32, err error) {\n\tr0, _, e1 := syscall.Syscall6(procSetFilePointer.Addr(), 4, uintptr(handle), uintptr(lowoffset), uintptr(unsafe.Pointer(highoffsetptr)), uintptr(whence), 0, 0)\n\tnewlowoffset = uint32(r0)\n\tif newlowoffset == 0xffffffff {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CloseHandle(handle Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCloseHandle.Addr(), 1, uintptr(handle), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetStdHandle(stdhandle uint32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetStdHandle.Addr(), 1, uintptr(stdhandle), 0, 0)\n\thandle = Handle(r0)\n\tif handle == InvalidHandle {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetStdHandle(stdhandle uint32, handle Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetStdHandle.Addr(), 2, uintptr(stdhandle), uintptr(handle), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc findFirstFile1(name *uint16, data *win32finddata1) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procFindFirstFileW.Addr(), 2, uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(data)), 0)\n\thandle = Handle(r0)\n\tif handle == InvalidHandle {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc findNextFile1(handle Handle, data *win32finddata1) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFindNextFileW.Addr(), 2, uintptr(handle), uintptr(unsafe.Pointer(data)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FindClose(handle Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFindClose.Addr(), 1, uintptr(handle), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetFileInformationByHandle(handle Handle, data *ByHandleFileInformation) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetFileInformationByHandle.Addr(), 2, uintptr(handle), uintptr(unsafe.Pointer(data)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetFileInformationByHandleEx(handle Handle, class uint32, outBuffer *byte, outBufferLen uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetFileInformationByHandleEx.Addr(), 4, uintptr(handle), uintptr(class), uintptr(unsafe.Pointer(outBuffer)), uintptr(outBufferLen), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetCurrentDirectory(buflen uint32, buf *uint16) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetCurrentDirectoryW.Addr(), 2, uintptr(buflen), uintptr(unsafe.Pointer(buf)), 0)\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetCurrentDirectory(path *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetCurrentDirectoryW.Addr(), 1, uintptr(unsafe.Pointer(path)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateDirectory(path *uint16, sa *SecurityAttributes) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCreateDirectoryW.Addr(), 2, uintptr(unsafe.Pointer(path)), uintptr(unsafe.Pointer(sa)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc RemoveDirectory(path *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procRemoveDirectoryW.Addr(), 1, uintptr(unsafe.Pointer(path)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DeleteFile(path *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procDeleteFileW.Addr(), 1, uintptr(unsafe.Pointer(path)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc MoveFile(from *uint16, to *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procMoveFileW.Addr(), 2, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(to)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc MoveFileEx(from *uint16, to *uint16, flags uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procMoveFileExW.Addr(), 3, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(to)), uintptr(flags))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc LockFileEx(file Handle, flags uint32, reserved uint32, bytesLow uint32, bytesHigh uint32, overlapped *Overlapped) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procLockFileEx.Addr(), 6, uintptr(file), uintptr(flags), uintptr(reserved), uintptr(bytesLow), uintptr(bytesHigh), uintptr(unsafe.Pointer(overlapped)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc UnlockFileEx(file Handle, reserved uint32, bytesLow uint32, bytesHigh uint32, overlapped *Overlapped) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procUnlockFileEx.Addr(), 5, uintptr(file), uintptr(reserved), uintptr(bytesLow), uintptr(bytesHigh), uintptr(unsafe.Pointer(overlapped)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetComputerName(buf *uint16, n *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetComputerNameW.Addr(), 2, uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(n)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetComputerNameEx(nametype uint32, buf *uint16, n *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetComputerNameExW.Addr(), 3, uintptr(nametype), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(n)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetEndOfFile(handle Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetEndOfFile.Addr(), 1, uintptr(handle), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetSystemTimeAsFileTime(time *Filetime) {\n\tsyscall.Syscall(procGetSystemTimeAsFileTime.Addr(), 1, uintptr(unsafe.Pointer(time)), 0, 0)\n\treturn\n}\n\nfunc GetSystemTimePreciseAsFileTime(time *Filetime) {\n\tsyscall.Syscall(procGetSystemTimePreciseAsFileTime.Addr(), 1, uintptr(unsafe.Pointer(time)), 0, 0)\n\treturn\n}\n\nfunc GetTimeZoneInformation(tzi *Timezoneinformation) (rc uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetTimeZoneInformation.Addr(), 1, uintptr(unsafe.Pointer(tzi)), 0, 0)\n\trc = uint32(r0)\n\tif rc == 0xffffffff {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateIoCompletionPort(filehandle Handle, cphandle Handle, key uint32, threadcnt uint32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall6(procCreateIoCompletionPort.Addr(), 4, uintptr(filehandle), uintptr(cphandle), uintptr(key), uintptr(threadcnt), 0, 0)\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetQueuedCompletionStatus(cphandle Handle, qty *uint32, key *uint32, overlapped **Overlapped, timeout uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetQueuedCompletionStatus.Addr(), 5, uintptr(cphandle), uintptr(unsafe.Pointer(qty)), uintptr(unsafe.Pointer(key)), uintptr(unsafe.Pointer(overlapped)), uintptr(timeout), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc PostQueuedCompletionStatus(cphandle Handle, qty uint32, key uint32, overlapped *Overlapped) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procPostQueuedCompletionStatus.Addr(), 4, uintptr(cphandle), uintptr(qty), uintptr(key), uintptr(unsafe.Pointer(overlapped)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CancelIo(s Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCancelIo.Addr(), 1, uintptr(s), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CancelIoEx(s Handle, o *Overlapped) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCancelIoEx.Addr(), 2, uintptr(s), uintptr(unsafe.Pointer(o)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateProcess(appName *uint16, commandLine *uint16, procSecurity *SecurityAttributes, threadSecurity *SecurityAttributes, inheritHandles bool, creationFlags uint32, env *uint16, currentDir *uint16, startupInfo *StartupInfo, outProcInfo *ProcessInformation) (err error) {\n\tvar _p0 uint32\n\tif inheritHandles {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall12(procCreateProcessW.Addr(), 10, uintptr(unsafe.Pointer(appName)), uintptr(unsafe.Pointer(commandLine)), uintptr(unsafe.Pointer(procSecurity)), uintptr(unsafe.Pointer(threadSecurity)), uintptr(_p0), uintptr(creationFlags), uintptr(unsafe.Pointer(env)), uintptr(unsafe.Pointer(currentDir)), uintptr(unsafe.Pointer(startupInfo)), uintptr(unsafe.Pointer(outProcInfo)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc OpenProcess(desiredAccess uint32, inheritHandle bool, processId uint32) (handle Handle, err error) {\n\tvar _p0 uint32\n\tif inheritHandle {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr0, _, e1 := syscall.Syscall(procOpenProcess.Addr(), 3, uintptr(desiredAccess), uintptr(_p0), uintptr(processId))\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ShellExecute(hwnd Handle, verb *uint16, file *uint16, args *uint16, cwd *uint16, showCmd int32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procShellExecuteW.Addr(), 6, uintptr(hwnd), uintptr(unsafe.Pointer(verb)), uintptr(unsafe.Pointer(file)), uintptr(unsafe.Pointer(args)), uintptr(unsafe.Pointer(cwd)), uintptr(showCmd))\n\tif r1 <= 32 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc shGetKnownFolderPath(id *KNOWNFOLDERID, flags uint32, token Token, path **uint16) (ret error) {\n\tr0, _, _ := syscall.Syscall6(procSHGetKnownFolderPath.Addr(), 4, uintptr(unsafe.Pointer(id)), uintptr(flags), uintptr(token), uintptr(unsafe.Pointer(path)), 0, 0)\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc TerminateProcess(handle Handle, exitcode uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procTerminateProcess.Addr(), 2, uintptr(handle), uintptr(exitcode), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetExitCodeProcess(handle Handle, exitcode *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetExitCodeProcess.Addr(), 2, uintptr(handle), uintptr(unsafe.Pointer(exitcode)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetStartupInfo(startupInfo *StartupInfo) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetStartupInfoW.Addr(), 1, uintptr(unsafe.Pointer(startupInfo)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Filetime, kernelTime *Filetime, userTime *Filetime) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetProcessTimes.Addr(), 5, uintptr(handle), uintptr(unsafe.Pointer(creationTime)), uintptr(unsafe.Pointer(exitTime)), uintptr(unsafe.Pointer(kernelTime)), uintptr(unsafe.Pointer(userTime)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DuplicateHandle(hSourceProcessHandle Handle, hSourceHandle Handle, hTargetProcessHandle Handle, lpTargetHandle *Handle, dwDesiredAccess uint32, bInheritHandle bool, dwOptions uint32) (err error) {\n\tvar _p0 uint32\n\tif bInheritHandle {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall9(procDuplicateHandle.Addr(), 7, uintptr(hSourceProcessHandle), uintptr(hSourceHandle), uintptr(hTargetProcessHandle), uintptr(unsafe.Pointer(lpTargetHandle)), uintptr(dwDesiredAccess), uintptr(_p0), uintptr(dwOptions), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WaitForSingleObject(handle Handle, waitMilliseconds uint32) (event uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procWaitForSingleObject.Addr(), 2, uintptr(handle), uintptr(waitMilliseconds), 0)\n\tevent = uint32(r0)\n\tif event == 0xffffffff {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc waitForMultipleObjects(count uint32, handles uintptr, waitAll bool, waitMilliseconds uint32) (event uint32, err error) {\n\tvar _p0 uint32\n\tif waitAll {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr0, _, e1 := syscall.Syscall6(procWaitForMultipleObjects.Addr(), 4, uintptr(count), uintptr(handles), uintptr(_p0), uintptr(waitMilliseconds), 0, 0)\n\tevent = uint32(r0)\n\tif event == 0xffffffff {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetTempPath(buflen uint32, buf *uint16) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetTempPathW.Addr(), 2, uintptr(buflen), uintptr(unsafe.Pointer(buf)), 0)\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreatePipe(readhandle *Handle, writehandle *Handle, sa *SecurityAttributes, size uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procCreatePipe.Addr(), 4, uintptr(unsafe.Pointer(readhandle)), uintptr(unsafe.Pointer(writehandle)), uintptr(unsafe.Pointer(sa)), uintptr(size), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetFileType(filehandle Handle) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetFileType.Addr(), 1, uintptr(filehandle), 0, 0)\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procCryptAcquireContextW.Addr(), 5, uintptr(unsafe.Pointer(provhandle)), uintptr(unsafe.Pointer(container)), uintptr(unsafe.Pointer(provider)), uintptr(provtype), uintptr(flags), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CryptReleaseContext(provhandle Handle, flags uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCryptReleaseContext.Addr(), 2, uintptr(provhandle), uintptr(flags), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CryptGenRandom(provhandle Handle, buflen uint32, buf *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCryptGenRandom.Addr(), 3, uintptr(provhandle), uintptr(buflen), uintptr(unsafe.Pointer(buf)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetEnvironmentStrings() (envs *uint16, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetEnvironmentStringsW.Addr(), 0, 0, 0, 0)\n\tenvs = (*uint16)(unsafe.Pointer(r0))\n\tif envs == nil {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FreeEnvironmentStrings(envs *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFreeEnvironmentStringsW.Addr(), 1, uintptr(unsafe.Pointer(envs)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetEnvironmentVariable(name *uint16, buffer *uint16, size uint32) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetEnvironmentVariableW.Addr(), 3, uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(buffer)), uintptr(size))\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetEnvironmentVariable(name *uint16, value *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetEnvironmentVariableW.Addr(), 2, uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(value)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateEnvironmentBlock(block **uint16, token Token, inheritExisting bool) (err error) {\n\tvar _p0 uint32\n\tif inheritExisting {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall(procCreateEnvironmentBlock.Addr(), 3, uintptr(unsafe.Pointer(block)), uintptr(token), uintptr(_p0))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DestroyEnvironmentBlock(block *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procDestroyEnvironmentBlock.Addr(), 1, uintptr(unsafe.Pointer(block)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getTickCount64() (ms uint64) {\n\tr0, _, _ := syscall.Syscall(procGetTickCount64.Addr(), 0, 0, 0, 0)\n\tms = uint64(r0)\n\treturn\n}\n\nfunc SetFileTime(handle Handle, ctime *Filetime, atime *Filetime, wtime *Filetime) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procSetFileTime.Addr(), 4, uintptr(handle), uintptr(unsafe.Pointer(ctime)), uintptr(unsafe.Pointer(atime)), uintptr(unsafe.Pointer(wtime)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetFileAttributes(name *uint16) (attrs uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetFileAttributesW.Addr(), 1, uintptr(unsafe.Pointer(name)), 0, 0)\n\tattrs = uint32(r0)\n\tif attrs == INVALID_FILE_ATTRIBUTES {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetFileAttributes(name *uint16, attrs uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetFileAttributesW.Addr(), 2, uintptr(unsafe.Pointer(name)), uintptr(attrs), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetFileAttributesEx(name *uint16, level uint32, info *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetFileAttributesExW.Addr(), 3, uintptr(unsafe.Pointer(name)), uintptr(level), uintptr(unsafe.Pointer(info)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetCommandLine() (cmd *uint16) {\n\tr0, _, _ := syscall.Syscall(procGetCommandLineW.Addr(), 0, 0, 0, 0)\n\tcmd = (*uint16)(unsafe.Pointer(r0))\n\treturn\n}\n\nfunc CommandLineToArgv(cmd *uint16, argc *int32) (argv *[8192]*[8192]uint16, err error) {\n\tr0, _, e1 := syscall.Syscall(procCommandLineToArgvW.Addr(), 2, uintptr(unsafe.Pointer(cmd)), uintptr(unsafe.Pointer(argc)), 0)\n\targv = (*[8192]*[8192]uint16)(unsafe.Pointer(r0))\n\tif argv == nil {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc LocalFree(hmem Handle) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procLocalFree.Addr(), 1, uintptr(hmem), 0, 0)\n\thandle = Handle(r0)\n\tif handle != 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetHandleInformation(handle Handle, mask uint32, flags uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetHandleInformation.Addr(), 3, uintptr(handle), uintptr(mask), uintptr(flags))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FlushFileBuffers(handle Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFlushFileBuffers.Addr(), 1, uintptr(handle), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetFullPathName(path *uint16, buflen uint32, buf *uint16, fname **uint16) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall6(procGetFullPathNameW.Addr(), 4, uintptr(unsafe.Pointer(path)), uintptr(buflen), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(fname)), 0, 0)\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetLongPathName(path *uint16, buf *uint16, buflen uint32) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetLongPathNameW.Addr(), 3, uintptr(unsafe.Pointer(path)), uintptr(unsafe.Pointer(buf)), uintptr(buflen))\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetShortPathName(longpath *uint16, shortpath *uint16, buflen uint32) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetShortPathNameW.Addr(), 3, uintptr(unsafe.Pointer(longpath)), uintptr(unsafe.Pointer(shortpath)), uintptr(buflen))\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateFileMapping(fhandle Handle, sa *SecurityAttributes, prot uint32, maxSizeHigh uint32, maxSizeLow uint32, name *uint16) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall6(procCreateFileMappingW.Addr(), 6, uintptr(fhandle), uintptr(unsafe.Pointer(sa)), uintptr(prot), uintptr(maxSizeHigh), uintptr(maxSizeLow), uintptr(unsafe.Pointer(name)))\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc MapViewOfFile(handle Handle, access uint32, offsetHigh uint32, offsetLow uint32, length uintptr) (addr uintptr, err error) {\n\tr0, _, e1 := syscall.Syscall6(procMapViewOfFile.Addr(), 5, uintptr(handle), uintptr(access), uintptr(offsetHigh), uintptr(offsetLow), uintptr(length), 0)\n\taddr = uintptr(r0)\n\tif addr == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc UnmapViewOfFile(addr uintptr) (err error) {\n\tr1, _, e1 := syscall.Syscall(procUnmapViewOfFile.Addr(), 1, uintptr(addr), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FlushViewOfFile(addr uintptr, length uintptr) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFlushViewOfFile.Addr(), 2, uintptr(addr), uintptr(length), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc VirtualLock(addr uintptr, length uintptr) (err error) {\n\tr1, _, e1 := syscall.Syscall(procVirtualLock.Addr(), 2, uintptr(addr), uintptr(length), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc VirtualUnlock(addr uintptr, length uintptr) (err error) {\n\tr1, _, e1 := syscall.Syscall(procVirtualUnlock.Addr(), 2, uintptr(addr), uintptr(length), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc VirtualAlloc(address uintptr, size uintptr, alloctype uint32, protect uint32) (value uintptr, err error) {\n\tr0, _, e1 := syscall.Syscall6(procVirtualAlloc.Addr(), 4, uintptr(address), uintptr(size), uintptr(alloctype), uintptr(protect), 0, 0)\n\tvalue = uintptr(r0)\n\tif value == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc VirtualFree(address uintptr, size uintptr, freetype uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procVirtualFree.Addr(), 3, uintptr(address), uintptr(size), uintptr(freetype))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc VirtualProtect(address uintptr, size uintptr, newprotect uint32, oldprotect *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procVirtualProtect.Addr(), 4, uintptr(address), uintptr(size), uintptr(newprotect), uintptr(unsafe.Pointer(oldprotect)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc TransmitFile(s Handle, handle Handle, bytesToWrite uint32, bytsPerSend uint32, overlapped *Overlapped, transmitFileBuf *TransmitFileBuffers, flags uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procTransmitFile.Addr(), 7, uintptr(s), uintptr(handle), uintptr(bytesToWrite), uintptr(bytsPerSend), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(transmitFileBuf)), uintptr(flags), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ReadDirectoryChanges(handle Handle, buf *byte, buflen uint32, watchSubTree bool, mask uint32, retlen *uint32, overlapped *Overlapped, completionRoutine uintptr) (err error) {\n\tvar _p0 uint32\n\tif watchSubTree {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall9(procReadDirectoryChangesW.Addr(), 8, uintptr(handle), uintptr(unsafe.Pointer(buf)), uintptr(buflen), uintptr(_p0), uintptr(mask), uintptr(unsafe.Pointer(retlen)), uintptr(unsafe.Pointer(overlapped)), uintptr(completionRoutine), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CertOpenSystemStore(hprov Handle, name *uint16) (store Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procCertOpenSystemStoreW.Addr(), 2, uintptr(hprov), uintptr(unsafe.Pointer(name)), 0)\n\tstore = Handle(r0)\n\tif store == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CertOpenStore(storeProvider uintptr, msgAndCertEncodingType uint32, cryptProv uintptr, flags uint32, para uintptr) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall6(procCertOpenStore.Addr(), 5, uintptr(storeProvider), uintptr(msgAndCertEncodingType), uintptr(cryptProv), uintptr(flags), uintptr(para), 0)\n\thandle = Handle(r0)\n\tif handle == InvalidHandle {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CertEnumCertificatesInStore(store Handle, prevContext *CertContext) (context *CertContext, err error) {\n\tr0, _, e1 := syscall.Syscall(procCertEnumCertificatesInStore.Addr(), 2, uintptr(store), uintptr(unsafe.Pointer(prevContext)), 0)\n\tcontext = (*CertContext)(unsafe.Pointer(r0))\n\tif context == nil {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CertAddCertificateContextToStore(store Handle, certContext *CertContext, addDisposition uint32, storeContext **CertContext) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procCertAddCertificateContextToStore.Addr(), 4, uintptr(store), uintptr(unsafe.Pointer(certContext)), uintptr(addDisposition), uintptr(unsafe.Pointer(storeContext)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CertCloseStore(store Handle, flags uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCertCloseStore.Addr(), 2, uintptr(store), uintptr(flags), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CertGetCertificateChain(engine Handle, leaf *CertContext, time *Filetime, additionalStore Handle, para *CertChainPara, flags uint32, reserved uintptr, chainCtx **CertChainContext) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procCertGetCertificateChain.Addr(), 8, uintptr(engine), uintptr(unsafe.Pointer(leaf)), uintptr(unsafe.Pointer(time)), uintptr(additionalStore), uintptr(unsafe.Pointer(para)), uintptr(flags), uintptr(reserved), uintptr(unsafe.Pointer(chainCtx)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CertFreeCertificateChain(ctx *CertChainContext) {\n\tsyscall.Syscall(procCertFreeCertificateChain.Addr(), 1, uintptr(unsafe.Pointer(ctx)), 0, 0)\n\treturn\n}\n\nfunc CertCreateCertificateContext(certEncodingType uint32, certEncoded *byte, encodedLen uint32) (context *CertContext, err error) {\n\tr0, _, e1 := syscall.Syscall(procCertCreateCertificateContext.Addr(), 3, uintptr(certEncodingType), uintptr(unsafe.Pointer(certEncoded)), uintptr(encodedLen))\n\tcontext = (*CertContext)(unsafe.Pointer(r0))\n\tif context == nil {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CertFreeCertificateContext(ctx *CertContext) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCertFreeCertificateContext.Addr(), 1, uintptr(unsafe.Pointer(ctx)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CertVerifyCertificateChainPolicy(policyOID uintptr, chain *CertChainContext, para *CertChainPolicyPara, status *CertChainPolicyStatus) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procCertVerifyCertificateChainPolicy.Addr(), 4, uintptr(policyOID), uintptr(unsafe.Pointer(chain)), uintptr(unsafe.Pointer(para)), uintptr(unsafe.Pointer(status)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc RegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAccess uint32, result *Handle) (regerrno error) {\n\tr0, _, _ := syscall.Syscall6(procRegOpenKeyExW.Addr(), 5, uintptr(key), uintptr(unsafe.Pointer(subkey)), uintptr(options), uintptr(desiredAccess), uintptr(unsafe.Pointer(result)), 0)\n\tif r0 != 0 {\n\t\tregerrno = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc RegCloseKey(key Handle) (regerrno error) {\n\tr0, _, _ := syscall.Syscall(procRegCloseKey.Addr(), 1, uintptr(key), 0, 0)\n\tif r0 != 0 {\n\t\tregerrno = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc RegQueryInfoKey(key Handle, class *uint16, classLen *uint32, reserved *uint32, subkeysLen *uint32, maxSubkeyLen *uint32, maxClassLen *uint32, valuesLen *uint32, maxValueNameLen *uint32, maxValueLen *uint32, saLen *uint32, lastWriteTime *Filetime) (regerrno error) {\n\tr0, _, _ := syscall.Syscall12(procRegQueryInfoKeyW.Addr(), 12, uintptr(key), uintptr(unsafe.Pointer(class)), uintptr(unsafe.Pointer(classLen)), uintptr(unsafe.Pointer(reserved)), uintptr(unsafe.Pointer(subkeysLen)), uintptr(unsafe.Pointer(maxSubkeyLen)), uintptr(unsafe.Pointer(maxClassLen)), uintptr(unsafe.Pointer(valuesLen)), uintptr(unsafe.Pointer(maxValueNameLen)), uintptr(unsafe.Pointer(maxValueLen)), uintptr(unsafe.Pointer(saLen)), uintptr(unsafe.Pointer(lastWriteTime)))\n\tif r0 != 0 {\n\t\tregerrno = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) {\n\tr0, _, _ := syscall.Syscall9(procRegEnumKeyExW.Addr(), 8, uintptr(key), uintptr(index), uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(nameLen)), uintptr(unsafe.Pointer(reserved)), uintptr(unsafe.Pointer(class)), uintptr(unsafe.Pointer(classLen)), uintptr(unsafe.Pointer(lastWriteTime)), 0)\n\tif r0 != 0 {\n\t\tregerrno = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc RegQueryValueEx(key Handle, name *uint16, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) {\n\tr0, _, _ := syscall.Syscall6(procRegQueryValueExW.Addr(), 6, uintptr(key), uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(reserved)), uintptr(unsafe.Pointer(valtype)), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(buflen)))\n\tif r0 != 0 {\n\t\tregerrno = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc GetCurrentProcessId() (pid uint32) {\n\tr0, _, _ := syscall.Syscall(procGetCurrentProcessId.Addr(), 0, 0, 0, 0)\n\tpid = uint32(r0)\n\treturn\n}\n\nfunc GetConsoleMode(console Handle, mode *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetConsoleMode.Addr(), 2, uintptr(console), uintptr(unsafe.Pointer(mode)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetConsoleMode(console Handle, mode uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetConsoleMode.Addr(), 2, uintptr(console), uintptr(mode), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetConsoleScreenBufferInfo(console Handle, info *ConsoleScreenBufferInfo) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetConsoleScreenBufferInfo.Addr(), 2, uintptr(console), uintptr(unsafe.Pointer(info)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WriteConsole(console Handle, buf *uint16, towrite uint32, written *uint32, reserved *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procWriteConsoleW.Addr(), 5, uintptr(console), uintptr(unsafe.Pointer(buf)), uintptr(towrite), uintptr(unsafe.Pointer(written)), uintptr(unsafe.Pointer(reserved)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ReadConsole(console Handle, buf *uint16, toread uint32, read *uint32, inputControl *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procReadConsoleW.Addr(), 5, uintptr(console), uintptr(unsafe.Pointer(buf)), uintptr(toread), uintptr(unsafe.Pointer(read)), uintptr(unsafe.Pointer(inputControl)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateToolhelp32Snapshot(flags uint32, processId uint32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procCreateToolhelp32Snapshot.Addr(), 2, uintptr(flags), uintptr(processId), 0)\n\thandle = Handle(r0)\n\tif handle == InvalidHandle {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc Process32First(snapshot Handle, procEntry *ProcessEntry32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procProcess32FirstW.Addr(), 2, uintptr(snapshot), uintptr(unsafe.Pointer(procEntry)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc Process32Next(snapshot Handle, procEntry *ProcessEntry32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procProcess32NextW.Addr(), 2, uintptr(snapshot), uintptr(unsafe.Pointer(procEntry)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc Thread32First(snapshot Handle, threadEntry *ThreadEntry32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procThread32First.Addr(), 2, uintptr(snapshot), uintptr(unsafe.Pointer(threadEntry)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc Thread32Next(snapshot Handle, threadEntry *ThreadEntry32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procThread32Next.Addr(), 2, uintptr(snapshot), uintptr(unsafe.Pointer(threadEntry)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DeviceIoControl(handle Handle, ioControlCode uint32, inBuffer *byte, inBufferSize uint32, outBuffer *byte, outBufferSize uint32, bytesReturned *uint32, overlapped *Overlapped) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procDeviceIoControl.Addr(), 8, uintptr(handle), uintptr(ioControlCode), uintptr(unsafe.Pointer(inBuffer)), uintptr(inBufferSize), uintptr(unsafe.Pointer(outBuffer)), uintptr(outBufferSize), uintptr(unsafe.Pointer(bytesReturned)), uintptr(unsafe.Pointer(overlapped)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateSymbolicLink(symlinkfilename *uint16, targetfilename *uint16, flags uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCreateSymbolicLinkW.Addr(), 3, uintptr(unsafe.Pointer(symlinkfilename)), uintptr(unsafe.Pointer(targetfilename)), uintptr(flags))\n\tif r1&0xff == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateHardLink(filename *uint16, existingfilename *uint16, reserved uintptr) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCreateHardLinkW.Addr(), 3, uintptr(unsafe.Pointer(filename)), uintptr(unsafe.Pointer(existingfilename)), uintptr(reserved))\n\tif r1&0xff == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetCurrentThreadId() (id uint32) {\n\tr0, _, _ := syscall.Syscall(procGetCurrentThreadId.Addr(), 0, 0, 0, 0)\n\tid = uint32(r0)\n\treturn\n}\n\nfunc CreateEvent(eventAttrs *SecurityAttributes, manualReset uint32, initialState uint32, name *uint16) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall6(procCreateEventW.Addr(), 4, uintptr(unsafe.Pointer(eventAttrs)), uintptr(manualReset), uintptr(initialState), uintptr(unsafe.Pointer(name)), 0, 0)\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateEventEx(eventAttrs *SecurityAttributes, name *uint16, flags uint32, desiredAccess uint32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall6(procCreateEventExW.Addr(), 4, uintptr(unsafe.Pointer(eventAttrs)), uintptr(unsafe.Pointer(name)), uintptr(flags), uintptr(desiredAccess), 0, 0)\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc OpenEvent(desiredAccess uint32, inheritHandle bool, name *uint16) (handle Handle, err error) {\n\tvar _p0 uint32\n\tif inheritHandle {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr0, _, e1 := syscall.Syscall(procOpenEventW.Addr(), 3, uintptr(desiredAccess), uintptr(_p0), uintptr(unsafe.Pointer(name)))\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetEvent(event Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetEvent.Addr(), 1, uintptr(event), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ResetEvent(event Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procResetEvent.Addr(), 1, uintptr(event), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc PulseEvent(event Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procPulseEvent.Addr(), 1, uintptr(event), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateMutex(mutexAttrs *SecurityAttributes, initialOwner bool, name *uint16) (handle Handle, err error) {\n\tvar _p0 uint32\n\tif initialOwner {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr0, _, e1 := syscall.Syscall(procCreateMutexW.Addr(), 3, uintptr(unsafe.Pointer(mutexAttrs)), uintptr(_p0), uintptr(unsafe.Pointer(name)))\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc CreateMutexEx(mutexAttrs *SecurityAttributes, name *uint16, flags uint32, desiredAccess uint32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall6(procCreateMutexExW.Addr(), 4, uintptr(unsafe.Pointer(mutexAttrs)), uintptr(unsafe.Pointer(name)), uintptr(flags), uintptr(desiredAccess), 0, 0)\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc OpenMutex(desiredAccess uint32, inheritHandle bool, name *uint16) (handle Handle, err error) {\n\tvar _p0 uint32\n\tif inheritHandle {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr0, _, e1 := syscall.Syscall(procOpenMutexW.Addr(), 3, uintptr(desiredAccess), uintptr(_p0), uintptr(unsafe.Pointer(name)))\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ReleaseMutex(mutex Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procReleaseMutex.Addr(), 1, uintptr(mutex), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SleepEx(milliseconds uint32, alertable bool) (ret uint32) {\n\tvar _p0 uint32\n\tif alertable {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr0, _, _ := syscall.Syscall(procSleepEx.Addr(), 2, uintptr(milliseconds), uintptr(_p0), 0)\n\tret = uint32(r0)\n\treturn\n}\n\nfunc CreateJobObject(jobAttr *SecurityAttributes, name *uint16) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procCreateJobObjectW.Addr(), 2, uintptr(unsafe.Pointer(jobAttr)), uintptr(unsafe.Pointer(name)), 0)\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc AssignProcessToJobObject(job Handle, process Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procAssignProcessToJobObject.Addr(), 2, uintptr(job), uintptr(process), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc TerminateJobObject(job Handle, exitCode uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procTerminateJobObject.Addr(), 2, uintptr(job), uintptr(exitCode), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetErrorMode(mode uint32) (ret uint32) {\n\tr0, _, _ := syscall.Syscall(procSetErrorMode.Addr(), 1, uintptr(mode), 0, 0)\n\tret = uint32(r0)\n\treturn\n}\n\nfunc ResumeThread(thread Handle) (ret uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procResumeThread.Addr(), 1, uintptr(thread), 0, 0)\n\tret = uint32(r0)\n\tif ret == 0xffffffff {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetPriorityClass(process Handle, priorityClass uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetPriorityClass.Addr(), 2, uintptr(process), uintptr(priorityClass), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetPriorityClass(process Handle) (ret uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetPriorityClass.Addr(), 1, uintptr(process), 0, 0)\n\tret = uint32(r0)\n\tif ret == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc QueryInformationJobObject(job Handle, JobObjectInformationClass int32, JobObjectInformation uintptr, JobObjectInformationLength uint32, retlen *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procQueryInformationJobObject.Addr(), 5, uintptr(job), uintptr(JobObjectInformationClass), uintptr(JobObjectInformation), uintptr(JobObjectInformationLength), uintptr(unsafe.Pointer(retlen)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetInformationJobObject(job Handle, JobObjectInformationClass uint32, JobObjectInformation uintptr, JobObjectInformationLength uint32) (ret int, err error) {\n\tr0, _, e1 := syscall.Syscall6(procSetInformationJobObject.Addr(), 4, uintptr(job), uintptr(JobObjectInformationClass), uintptr(JobObjectInformation), uintptr(JobObjectInformationLength), 0, 0)\n\tret = int(r0)\n\tif ret == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GenerateConsoleCtrlEvent(ctrlEvent uint32, processGroupID uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGenerateConsoleCtrlEvent.Addr(), 2, uintptr(ctrlEvent), uintptr(processGroupID), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetProcessId(process Handle) (id uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetProcessId.Addr(), 1, uintptr(process), 0, 0)\n\tid = uint32(r0)\n\tif id == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc OpenThread(desiredAccess uint32, inheritHandle bool, threadId uint32) (handle Handle, err error) {\n\tvar _p0 uint32\n\tif inheritHandle {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr0, _, e1 := syscall.Syscall(procOpenThread.Addr(), 3, uintptr(desiredAccess), uintptr(_p0), uintptr(threadId))\n\thandle = Handle(r0)\n\tif handle == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetProcessPriorityBoost(process Handle, disable bool) (err error) {\n\tvar _p0 uint32\n\tif disable {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall(procSetProcessPriorityBoost.Addr(), 2, uintptr(process), uintptr(_p0), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetProcessWorkingSetSizeEx(hProcess Handle, lpMinimumWorkingSetSize *uintptr, lpMaximumWorkingSetSize *uintptr, flags *uint32) {\n\tsyscall.Syscall6(procGetProcessWorkingSetSizeEx.Addr(), 4, uintptr(hProcess), uintptr(unsafe.Pointer(lpMinimumWorkingSetSize)), uintptr(unsafe.Pointer(lpMaximumWorkingSetSize)), uintptr(unsafe.Pointer(flags)), 0, 0)\n\treturn\n}\n\nfunc SetProcessWorkingSetSizeEx(hProcess Handle, dwMinimumWorkingSetSize uintptr, dwMaximumWorkingSetSize uintptr, flags uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procSetProcessWorkingSetSizeEx.Addr(), 4, uintptr(hProcess), uintptr(dwMinimumWorkingSetSize), uintptr(dwMaximumWorkingSetSize), uintptr(flags), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DefineDosDevice(flags uint32, deviceName *uint16, targetPath *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procDefineDosDeviceW.Addr(), 3, uintptr(flags), uintptr(unsafe.Pointer(deviceName)), uintptr(unsafe.Pointer(targetPath)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DeleteVolumeMountPoint(volumeMountPoint *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procDeleteVolumeMountPointW.Addr(), 1, uintptr(unsafe.Pointer(volumeMountPoint)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FindFirstVolume(volumeName *uint16, bufferLength uint32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procFindFirstVolumeW.Addr(), 2, uintptr(unsafe.Pointer(volumeName)), uintptr(bufferLength), 0)\n\thandle = Handle(r0)\n\tif handle == InvalidHandle {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FindFirstVolumeMountPoint(rootPathName *uint16, volumeMountPoint *uint16, bufferLength uint32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procFindFirstVolumeMountPointW.Addr(), 3, uintptr(unsafe.Pointer(rootPathName)), uintptr(unsafe.Pointer(volumeMountPoint)), uintptr(bufferLength))\n\thandle = Handle(r0)\n\tif handle == InvalidHandle {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FindNextVolume(findVolume Handle, volumeName *uint16, bufferLength uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFindNextVolumeW.Addr(), 3, uintptr(findVolume), uintptr(unsafe.Pointer(volumeName)), uintptr(bufferLength))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FindNextVolumeMountPoint(findVolumeMountPoint Handle, volumeMountPoint *uint16, bufferLength uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFindNextVolumeMountPointW.Addr(), 3, uintptr(findVolumeMountPoint), uintptr(unsafe.Pointer(volumeMountPoint)), uintptr(bufferLength))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FindVolumeClose(findVolume Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFindVolumeClose.Addr(), 1, uintptr(findVolume), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc FindVolumeMountPointClose(findVolumeMountPoint Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFindVolumeMountPointClose.Addr(), 1, uintptr(findVolumeMountPoint), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetDiskFreeSpaceEx(directoryName *uint16, freeBytesAvailableToCaller *uint64, totalNumberOfBytes *uint64, totalNumberOfFreeBytes *uint64) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetDiskFreeSpaceExW.Addr(), 4, uintptr(unsafe.Pointer(directoryName)), uintptr(unsafe.Pointer(freeBytesAvailableToCaller)), uintptr(unsafe.Pointer(totalNumberOfBytes)), uintptr(unsafe.Pointer(totalNumberOfFreeBytes)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetDriveType(rootPathName *uint16) (driveType uint32) {\n\tr0, _, _ := syscall.Syscall(procGetDriveTypeW.Addr(), 1, uintptr(unsafe.Pointer(rootPathName)), 0, 0)\n\tdriveType = uint32(r0)\n\treturn\n}\n\nfunc GetLogicalDrives() (drivesBitMask uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetLogicalDrives.Addr(), 0, 0, 0, 0)\n\tdrivesBitMask = uint32(r0)\n\tif drivesBitMask == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetLogicalDriveStrings(bufferLength uint32, buffer *uint16) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetLogicalDriveStringsW.Addr(), 2, uintptr(bufferLength), uintptr(unsafe.Pointer(buffer)), 0)\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetVolumeInformation(rootPathName *uint16, volumeNameBuffer *uint16, volumeNameSize uint32, volumeNameSerialNumber *uint32, maximumComponentLength *uint32, fileSystemFlags *uint32, fileSystemNameBuffer *uint16, fileSystemNameSize uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procGetVolumeInformationW.Addr(), 8, uintptr(unsafe.Pointer(rootPathName)), uintptr(unsafe.Pointer(volumeNameBuffer)), uintptr(volumeNameSize), uintptr(unsafe.Pointer(volumeNameSerialNumber)), uintptr(unsafe.Pointer(maximumComponentLength)), uintptr(unsafe.Pointer(fileSystemFlags)), uintptr(unsafe.Pointer(fileSystemNameBuffer)), uintptr(fileSystemNameSize), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetVolumeInformationByHandle(file Handle, volumeNameBuffer *uint16, volumeNameSize uint32, volumeNameSerialNumber *uint32, maximumComponentLength *uint32, fileSystemFlags *uint32, fileSystemNameBuffer *uint16, fileSystemNameSize uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procGetVolumeInformationByHandleW.Addr(), 8, uintptr(file), uintptr(unsafe.Pointer(volumeNameBuffer)), uintptr(volumeNameSize), uintptr(unsafe.Pointer(volumeNameSerialNumber)), uintptr(unsafe.Pointer(maximumComponentLength)), uintptr(unsafe.Pointer(fileSystemFlags)), uintptr(unsafe.Pointer(fileSystemNameBuffer)), uintptr(fileSystemNameSize), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetVolumeNameForVolumeMountPoint(volumeMountPoint *uint16, volumeName *uint16, bufferlength uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetVolumeNameForVolumeMountPointW.Addr(), 3, uintptr(unsafe.Pointer(volumeMountPoint)), uintptr(unsafe.Pointer(volumeName)), uintptr(bufferlength))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetVolumePathName(fileName *uint16, volumePathName *uint16, bufferLength uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetVolumePathNameW.Addr(), 3, uintptr(unsafe.Pointer(fileName)), uintptr(unsafe.Pointer(volumePathName)), uintptr(bufferLength))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetVolumePathNamesForVolumeName(volumeName *uint16, volumePathNames *uint16, bufferLength uint32, returnLength *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetVolumePathNamesForVolumeNameW.Addr(), 4, uintptr(unsafe.Pointer(volumeName)), uintptr(unsafe.Pointer(volumePathNames)), uintptr(bufferLength), uintptr(unsafe.Pointer(returnLength)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc QueryDosDevice(deviceName *uint16, targetPath *uint16, max uint32) (n uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procQueryDosDeviceW.Addr(), 3, uintptr(unsafe.Pointer(deviceName)), uintptr(unsafe.Pointer(targetPath)), uintptr(max))\n\tn = uint32(r0)\n\tif n == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetVolumeLabel(rootPathName *uint16, volumeName *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetVolumeLabelW.Addr(), 2, uintptr(unsafe.Pointer(rootPathName)), uintptr(unsafe.Pointer(volumeName)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetVolumeMountPoint(volumeMountPoint *uint16, volumeName *uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetVolumeMountPointW.Addr(), 2, uintptr(unsafe.Pointer(volumeMountPoint)), uintptr(unsafe.Pointer(volumeName)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc MessageBox(hwnd Handle, text *uint16, caption *uint16, boxtype uint32) (ret int32, err error) {\n\tr0, _, e1 := syscall.Syscall6(procMessageBoxW.Addr(), 4, uintptr(hwnd), uintptr(unsafe.Pointer(text)), uintptr(unsafe.Pointer(caption)), uintptr(boxtype), 0, 0)\n\tret = int32(r0)\n\tif ret == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ExitWindowsEx(flags uint32, reason uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procExitWindowsEx.Addr(), 2, uintptr(flags), uintptr(reason), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc InitiateSystemShutdownEx(machineName *uint16, message *uint16, timeout uint32, forceAppsClosed bool, rebootAfterShutdown bool, reason uint32) (err error) {\n\tvar _p0 uint32\n\tif forceAppsClosed {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tvar _p1 uint32\n\tif rebootAfterShutdown {\n\t\t_p1 = 1\n\t} else {\n\t\t_p1 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall6(procInitiateSystemShutdownExW.Addr(), 6, uintptr(unsafe.Pointer(machineName)), uintptr(unsafe.Pointer(message)), uintptr(timeout), uintptr(_p0), uintptr(_p1), uintptr(reason))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetProcessShutdownParameters(level uint32, flags uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetProcessShutdownParameters.Addr(), 2, uintptr(level), uintptr(flags), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetProcessShutdownParameters(level *uint32, flags *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetProcessShutdownParameters.Addr(), 2, uintptr(unsafe.Pointer(level)), uintptr(unsafe.Pointer(flags)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc clsidFromString(lpsz *uint16, pclsid *GUID) (ret error) {\n\tr0, _, _ := syscall.Syscall(procCLSIDFromString.Addr(), 2, uintptr(unsafe.Pointer(lpsz)), uintptr(unsafe.Pointer(pclsid)), 0)\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc stringFromGUID2(rguid *GUID, lpsz *uint16, cchMax int32) (chars int32) {\n\tr0, _, _ := syscall.Syscall(procStringFromGUID2.Addr(), 3, uintptr(unsafe.Pointer(rguid)), uintptr(unsafe.Pointer(lpsz)), uintptr(cchMax))\n\tchars = int32(r0)\n\treturn\n}\n\nfunc coCreateGuid(pguid *GUID) (ret error) {\n\tr0, _, _ := syscall.Syscall(procCoCreateGuid.Addr(), 1, uintptr(unsafe.Pointer(pguid)), 0, 0)\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc CoTaskMemFree(address unsafe.Pointer) {\n\tsyscall.Syscall(procCoTaskMemFree.Addr(), 1, uintptr(address), 0, 0)\n\treturn\n}\n\nfunc rtlGetVersion(info *OsVersionInfoEx) (ret error) {\n\tr0, _, _ := syscall.Syscall(procRtlGetVersion.Addr(), 1, uintptr(unsafe.Pointer(info)), 0, 0)\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc rtlGetNtVersionNumbers(majorVersion *uint32, minorVersion *uint32, buildNumber *uint32) {\n\tsyscall.Syscall(procRtlGetNtVersionNumbers.Addr(), 3, uintptr(unsafe.Pointer(majorVersion)), uintptr(unsafe.Pointer(minorVersion)), uintptr(unsafe.Pointer(buildNumber)))\n\treturn\n}\n\nfunc getProcessPreferredUILanguages(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetProcessPreferredUILanguages.Addr(), 4, uintptr(flags), uintptr(unsafe.Pointer(numLanguages)), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(bufSize)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getThreadPreferredUILanguages(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetThreadPreferredUILanguages.Addr(), 4, uintptr(flags), uintptr(unsafe.Pointer(numLanguages)), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(bufSize)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getUserPreferredUILanguages(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetUserPreferredUILanguages.Addr(), 4, uintptr(flags), uintptr(unsafe.Pointer(numLanguages)), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(bufSize)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getSystemPreferredUILanguages(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetSystemPreferredUILanguages.Addr(), 4, uintptr(flags), uintptr(unsafe.Pointer(numLanguages)), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(bufSize)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc EnumProcesses(processIds []uint32, bytesReturned *uint32) (err error) {\n\tvar _p0 *uint32\n\tif len(processIds) > 0 {\n\t\t_p0 = &processIds[0]\n\t}\n\tr1, _, e1 := syscall.Syscall(procEnumProcesses.Addr(), 3, uintptr(unsafe.Pointer(_p0)), uintptr(len(processIds)), uintptr(unsafe.Pointer(bytesReturned)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WSAStartup(verreq uint32, data *WSAData) (sockerr error) {\n\tr0, _, _ := syscall.Syscall(procWSAStartup.Addr(), 2, uintptr(verreq), uintptr(unsafe.Pointer(data)), 0)\n\tif r0 != 0 {\n\t\tsockerr = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc WSACleanup() (err error) {\n\tr1, _, e1 := syscall.Syscall(procWSACleanup.Addr(), 0, 0, 0, 0)\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WSAIoctl(s Handle, iocc uint32, inbuf *byte, cbif uint32, outbuf *byte, cbob uint32, cbbr *uint32, overlapped *Overlapped, completionRoutine uintptr) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procWSAIoctl.Addr(), 9, uintptr(s), uintptr(iocc), uintptr(unsafe.Pointer(inbuf)), uintptr(cbif), uintptr(unsafe.Pointer(outbuf)), uintptr(cbob), uintptr(unsafe.Pointer(cbbr)), uintptr(unsafe.Pointer(overlapped)), uintptr(completionRoutine))\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc socket(af int32, typ int32, protocol int32) (handle Handle, err error) {\n\tr0, _, e1 := syscall.Syscall(procsocket.Addr(), 3, uintptr(af), uintptr(typ), uintptr(protocol))\n\thandle = Handle(r0)\n\tif handle == InvalidHandle {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc sendto(s Handle, buf []byte, flags int32, to unsafe.Pointer, tolen int32) (err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr1, _, e1 := syscall.Syscall6(procsendto.Addr(), 6, uintptr(s), uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(tolen))\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc recvfrom(s Handle, buf []byte, flags int32, from *RawSockaddrAny, fromlen *int32) (n int32, err error) {\n\tvar _p0 *byte\n\tif len(buf) > 0 {\n\t\t_p0 = &buf[0]\n\t}\n\tr0, _, e1 := syscall.Syscall6(procrecvfrom.Addr(), 6, uintptr(s), uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))\n\tn = int32(r0)\n\tif n == -1 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc Setsockopt(s Handle, level int32, optname int32, optval *byte, optlen int32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procsetsockopt.Addr(), 5, uintptr(s), uintptr(level), uintptr(optname), uintptr(unsafe.Pointer(optval)), uintptr(optlen), 0)\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc Getsockopt(s Handle, level int32, optname int32, optval *byte, optlen *int32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procgetsockopt.Addr(), 5, uintptr(s), uintptr(level), uintptr(optname), uintptr(unsafe.Pointer(optval)), uintptr(unsafe.Pointer(optlen)), 0)\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc bind(s Handle, name unsafe.Pointer, namelen int32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procbind.Addr(), 3, uintptr(s), uintptr(name), uintptr(namelen))\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc connect(s Handle, name unsafe.Pointer, namelen int32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procconnect.Addr(), 3, uintptr(s), uintptr(name), uintptr(namelen))\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getsockname(s Handle, rsa *RawSockaddrAny, addrlen *int32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procgetsockname.Addr(), 3, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getpeername(s Handle, rsa *RawSockaddrAny, addrlen *int32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procgetpeername.Addr(), 3, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc listen(s Handle, backlog int32) (err error) {\n\tr1, _, e1 := syscall.Syscall(proclisten.Addr(), 2, uintptr(s), uintptr(backlog), 0)\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc shutdown(s Handle, how int32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procshutdown.Addr(), 2, uintptr(s), uintptr(how), 0)\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc Closesocket(s Handle) (err error) {\n\tr1, _, e1 := syscall.Syscall(procclosesocket.Addr(), 1, uintptr(s), 0, 0)\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc AcceptEx(ls Handle, as Handle, buf *byte, rxdatalen uint32, laddrlen uint32, raddrlen uint32, recvd *uint32, overlapped *Overlapped) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procAcceptEx.Addr(), 8, uintptr(ls), uintptr(as), uintptr(unsafe.Pointer(buf)), uintptr(rxdatalen), uintptr(laddrlen), uintptr(raddrlen), uintptr(unsafe.Pointer(recvd)), uintptr(unsafe.Pointer(overlapped)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetAcceptExSockaddrs(buf *byte, rxdatalen uint32, laddrlen uint32, raddrlen uint32, lrsa **RawSockaddrAny, lrsalen *int32, rrsa **RawSockaddrAny, rrsalen *int32) {\n\tsyscall.Syscall9(procGetAcceptExSockaddrs.Addr(), 8, uintptr(unsafe.Pointer(buf)), uintptr(rxdatalen), uintptr(laddrlen), uintptr(raddrlen), uintptr(unsafe.Pointer(lrsa)), uintptr(unsafe.Pointer(lrsalen)), uintptr(unsafe.Pointer(rrsa)), uintptr(unsafe.Pointer(rrsalen)), 0)\n\treturn\n}\n\nfunc WSARecv(s Handle, bufs *WSABuf, bufcnt uint32, recvd *uint32, flags *uint32, overlapped *Overlapped, croutine *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procWSARecv.Addr(), 7, uintptr(s), uintptr(unsafe.Pointer(bufs)), uintptr(bufcnt), uintptr(unsafe.Pointer(recvd)), uintptr(unsafe.Pointer(flags)), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(croutine)), 0, 0)\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WSASend(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, overlapped *Overlapped, croutine *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procWSASend.Addr(), 7, uintptr(s), uintptr(unsafe.Pointer(bufs)), uintptr(bufcnt), uintptr(unsafe.Pointer(sent)), uintptr(flags), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(croutine)), 0, 0)\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WSARecvFrom(s Handle, bufs *WSABuf, bufcnt uint32, recvd *uint32, flags *uint32, from *RawSockaddrAny, fromlen *int32, overlapped *Overlapped, croutine *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procWSARecvFrom.Addr(), 9, uintptr(s), uintptr(unsafe.Pointer(bufs)), uintptr(bufcnt), uintptr(unsafe.Pointer(recvd)), uintptr(unsafe.Pointer(flags)), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(croutine)))\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WSASendTo(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, to *RawSockaddrAny, tolen int32, overlapped *Overlapped, croutine *byte) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procWSASendTo.Addr(), 9, uintptr(s), uintptr(unsafe.Pointer(bufs)), uintptr(bufcnt), uintptr(unsafe.Pointer(sent)), uintptr(flags), uintptr(unsafe.Pointer(to)), uintptr(tolen), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(croutine)))\n\tif r1 == socket_error {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetHostByName(name string) (h *Hostent, err error) {\n\tvar _p0 *byte\n\t_p0, err = syscall.BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn _GetHostByName(_p0)\n}\n\nfunc _GetHostByName(name *byte) (h *Hostent, err error) {\n\tr0, _, e1 := syscall.Syscall(procgethostbyname.Addr(), 1, uintptr(unsafe.Pointer(name)), 0, 0)\n\th = (*Hostent)(unsafe.Pointer(r0))\n\tif h == nil {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetServByName(name string, proto string) (s *Servent, err error) {\n\tvar _p0 *byte\n\t_p0, err = syscall.BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\tvar _p1 *byte\n\t_p1, err = syscall.BytePtrFromString(proto)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn _GetServByName(_p0, _p1)\n}\n\nfunc _GetServByName(name *byte, proto *byte) (s *Servent, err error) {\n\tr0, _, e1 := syscall.Syscall(procgetservbyname.Addr(), 2, uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(proto)), 0)\n\ts = (*Servent)(unsafe.Pointer(r0))\n\tif s == nil {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc Ntohs(netshort uint16) (u uint16) {\n\tr0, _, _ := syscall.Syscall(procntohs.Addr(), 1, uintptr(netshort), 0, 0)\n\tu = uint16(r0)\n\treturn\n}\n\nfunc GetProtoByName(name string) (p *Protoent, err error) {\n\tvar _p0 *byte\n\t_p0, err = syscall.BytePtrFromString(name)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn _GetProtoByName(_p0)\n}\n\nfunc _GetProtoByName(name *byte) (p *Protoent, err error) {\n\tr0, _, e1 := syscall.Syscall(procgetprotobyname.Addr(), 1, uintptr(unsafe.Pointer(name)), 0, 0)\n\tp = (*Protoent)(unsafe.Pointer(r0))\n\tif p == nil {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {\n\tvar _p0 *uint16\n\t_p0, status = syscall.UTF16PtrFromString(name)\n\tif status != nil {\n\t\treturn\n\t}\n\treturn _DnsQuery(_p0, qtype, options, extra, qrs, pr)\n}\n\nfunc _DnsQuery(name *uint16, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {\n\tr0, _, _ := syscall.Syscall6(procDnsQuery_W.Addr(), 6, uintptr(unsafe.Pointer(name)), uintptr(qtype), uintptr(options), uintptr(unsafe.Pointer(extra)), uintptr(unsafe.Pointer(qrs)), uintptr(unsafe.Pointer(pr)))\n\tif r0 != 0 {\n\t\tstatus = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc DnsRecordListFree(rl *DNSRecord, freetype uint32) {\n\tsyscall.Syscall(procDnsRecordListFree.Addr(), 2, uintptr(unsafe.Pointer(rl)), uintptr(freetype), 0)\n\treturn\n}\n\nfunc DnsNameCompare(name1 *uint16, name2 *uint16) (same bool) {\n\tr0, _, _ := syscall.Syscall(procDnsNameCompare_W.Addr(), 2, uintptr(unsafe.Pointer(name1)), uintptr(unsafe.Pointer(name2)), 0)\n\tsame = r0 != 0\n\treturn\n}\n\nfunc GetAddrInfoW(nodename *uint16, servicename *uint16, hints *AddrinfoW, result **AddrinfoW) (sockerr error) {\n\tr0, _, _ := syscall.Syscall6(procGetAddrInfoW.Addr(), 4, uintptr(unsafe.Pointer(nodename)), uintptr(unsafe.Pointer(servicename)), uintptr(unsafe.Pointer(hints)), uintptr(unsafe.Pointer(result)), 0, 0)\n\tif r0 != 0 {\n\t\tsockerr = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc FreeAddrInfoW(addrinfo *AddrinfoW) {\n\tsyscall.Syscall(procFreeAddrInfoW.Addr(), 1, uintptr(unsafe.Pointer(addrinfo)), 0, 0)\n\treturn\n}\n\nfunc GetIfEntry(pIfRow *MibIfRow) (errcode error) {\n\tr0, _, _ := syscall.Syscall(procGetIfEntry.Addr(), 1, uintptr(unsafe.Pointer(pIfRow)), 0, 0)\n\tif r0 != 0 {\n\t\terrcode = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) {\n\tr0, _, _ := syscall.Syscall(procGetAdaptersInfo.Addr(), 2, uintptr(unsafe.Pointer(ai)), uintptr(unsafe.Pointer(ol)), 0)\n\tif r0 != 0 {\n\t\terrcode = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc SetFileCompletionNotificationModes(handle Handle, flags uint8) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetFileCompletionNotificationModes.Addr(), 2, uintptr(handle), uintptr(flags), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WSAEnumProtocols(protocols *int32, protocolBuffer *WSAProtocolInfo, bufferLength *uint32) (n int32, err error) {\n\tr0, _, e1 := syscall.Syscall(procWSAEnumProtocolsW.Addr(), 3, uintptr(unsafe.Pointer(protocols)), uintptr(unsafe.Pointer(protocolBuffer)), uintptr(unsafe.Pointer(bufferLength)))\n\tn = int32(r0)\n\tif n == -1 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetAdaptersAddresses(family uint32, flags uint32, reserved uintptr, adapterAddresses *IpAdapterAddresses, sizePointer *uint32) (errcode error) {\n\tr0, _, _ := syscall.Syscall6(procGetAdaptersAddresses.Addr(), 5, uintptr(family), uintptr(flags), uintptr(reserved), uintptr(unsafe.Pointer(adapterAddresses)), uintptr(unsafe.Pointer(sizePointer)), 0)\n\tif r0 != 0 {\n\t\terrcode = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc GetACP() (acp uint32) {\n\tr0, _, _ := syscall.Syscall(procGetACP.Addr(), 0, 0, 0, 0)\n\tacp = uint32(r0)\n\treturn\n}\n\nfunc MultiByteToWideChar(codePage uint32, dwFlags uint32, str *byte, nstr int32, wchar *uint16, nwchar int32) (nwrite int32, err error) {\n\tr0, _, e1 := syscall.Syscall6(procMultiByteToWideChar.Addr(), 6, uintptr(codePage), uintptr(dwFlags), uintptr(unsafe.Pointer(str)), uintptr(nstr), uintptr(unsafe.Pointer(wchar)), uintptr(nwchar))\n\tnwrite = int32(r0)\n\tif nwrite == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc TranslateName(accName *uint16, accNameFormat uint32, desiredNameFormat uint32, translatedName *uint16, nSize *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procTranslateNameW.Addr(), 5, uintptr(unsafe.Pointer(accName)), uintptr(accNameFormat), uintptr(desiredNameFormat), uintptr(unsafe.Pointer(translatedName)), uintptr(unsafe.Pointer(nSize)), 0)\n\tif r1&0xff == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetUserNameEx(nameFormat uint32, nameBuffre *uint16, nSize *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetUserNameExW.Addr(), 3, uintptr(nameFormat), uintptr(unsafe.Pointer(nameBuffre)), uintptr(unsafe.Pointer(nSize)))\n\tif r1&0xff == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) {\n\tr0, _, _ := syscall.Syscall6(procNetUserGetInfo.Addr(), 4, uintptr(unsafe.Pointer(serverName)), uintptr(unsafe.Pointer(userName)), uintptr(level), uintptr(unsafe.Pointer(buf)), 0, 0)\n\tif r0 != 0 {\n\t\tneterr = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (neterr error) {\n\tr0, _, _ := syscall.Syscall(procNetGetJoinInformation.Addr(), 3, uintptr(unsafe.Pointer(server)), uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(bufType)))\n\tif r0 != 0 {\n\t\tneterr = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc NetApiBufferFree(buf *byte) (neterr error) {\n\tr0, _, _ := syscall.Syscall(procNetApiBufferFree.Addr(), 1, uintptr(unsafe.Pointer(buf)), 0, 0)\n\tif r0 != 0 {\n\t\tneterr = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc LookupAccountSid(systemName *uint16, sid *SID, name *uint16, nameLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procLookupAccountSidW.Addr(), 7, uintptr(unsafe.Pointer(systemName)), uintptr(unsafe.Pointer(sid)), uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(nameLen)), uintptr(unsafe.Pointer(refdDomainName)), uintptr(unsafe.Pointer(refdDomainNameLen)), uintptr(unsafe.Pointer(use)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc LookupAccountName(systemName *uint16, accountName *uint16, sid *SID, sidLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall9(procLookupAccountNameW.Addr(), 7, uintptr(unsafe.Pointer(systemName)), uintptr(unsafe.Pointer(accountName)), uintptr(unsafe.Pointer(sid)), uintptr(unsafe.Pointer(sidLen)), uintptr(unsafe.Pointer(refdDomainName)), uintptr(unsafe.Pointer(refdDomainNameLen)), uintptr(unsafe.Pointer(use)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ConvertSidToStringSid(sid *SID, stringSid **uint16) (err error) {\n\tr1, _, e1 := syscall.Syscall(procConvertSidToStringSidW.Addr(), 2, uintptr(unsafe.Pointer(sid)), uintptr(unsafe.Pointer(stringSid)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ConvertStringSidToSid(stringSid *uint16, sid **SID) (err error) {\n\tr1, _, e1 := syscall.Syscall(procConvertStringSidToSidW.Addr(), 2, uintptr(unsafe.Pointer(stringSid)), uintptr(unsafe.Pointer(sid)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetLengthSid(sid *SID) (len uint32) {\n\tr0, _, _ := syscall.Syscall(procGetLengthSid.Addr(), 1, uintptr(unsafe.Pointer(sid)), 0, 0)\n\tlen = uint32(r0)\n\treturn\n}\n\nfunc CopySid(destSidLen uint32, destSid *SID, srcSid *SID) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCopySid.Addr(), 3, uintptr(destSidLen), uintptr(unsafe.Pointer(destSid)), uintptr(unsafe.Pointer(srcSid)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc AllocateAndInitializeSid(identAuth *SidIdentifierAuthority, subAuth byte, subAuth0 uint32, subAuth1 uint32, subAuth2 uint32, subAuth3 uint32, subAuth4 uint32, subAuth5 uint32, subAuth6 uint32, subAuth7 uint32, sid **SID) (err error) {\n\tr1, _, e1 := syscall.Syscall12(procAllocateAndInitializeSid.Addr(), 11, uintptr(unsafe.Pointer(identAuth)), uintptr(subAuth), uintptr(subAuth0), uintptr(subAuth1), uintptr(subAuth2), uintptr(subAuth3), uintptr(subAuth4), uintptr(subAuth5), uintptr(subAuth6), uintptr(subAuth7), uintptr(unsafe.Pointer(sid)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc createWellKnownSid(sidType WELL_KNOWN_SID_TYPE, domainSid *SID, sid *SID, sizeSid *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procCreateWellKnownSid.Addr(), 4, uintptr(sidType), uintptr(unsafe.Pointer(domainSid)), uintptr(unsafe.Pointer(sid)), uintptr(unsafe.Pointer(sizeSid)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc isWellKnownSid(sid *SID, sidType WELL_KNOWN_SID_TYPE) (isWellKnown bool) {\n\tr0, _, _ := syscall.Syscall(procIsWellKnownSid.Addr(), 2, uintptr(unsafe.Pointer(sid)), uintptr(sidType), 0)\n\tisWellKnown = r0 != 0\n\treturn\n}\n\nfunc FreeSid(sid *SID) (err error) {\n\tr1, _, e1 := syscall.Syscall(procFreeSid.Addr(), 1, uintptr(unsafe.Pointer(sid)), 0, 0)\n\tif r1 != 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc EqualSid(sid1 *SID, sid2 *SID) (isEqual bool) {\n\tr0, _, _ := syscall.Syscall(procEqualSid.Addr(), 2, uintptr(unsafe.Pointer(sid1)), uintptr(unsafe.Pointer(sid2)), 0)\n\tisEqual = r0 != 0\n\treturn\n}\n\nfunc getSidIdentifierAuthority(sid *SID) (authority *SidIdentifierAuthority) {\n\tr0, _, _ := syscall.Syscall(procGetSidIdentifierAuthority.Addr(), 1, uintptr(unsafe.Pointer(sid)), 0, 0)\n\tauthority = (*SidIdentifierAuthority)(unsafe.Pointer(r0))\n\treturn\n}\n\nfunc getSidSubAuthorityCount(sid *SID) (count *uint8) {\n\tr0, _, _ := syscall.Syscall(procGetSidSubAuthorityCount.Addr(), 1, uintptr(unsafe.Pointer(sid)), 0, 0)\n\tcount = (*uint8)(unsafe.Pointer(r0))\n\treturn\n}\n\nfunc getSidSubAuthority(sid *SID, index uint32) (subAuthority *uint32) {\n\tr0, _, _ := syscall.Syscall(procGetSidSubAuthority.Addr(), 2, uintptr(unsafe.Pointer(sid)), uintptr(index), 0)\n\tsubAuthority = (*uint32)(unsafe.Pointer(r0))\n\treturn\n}\n\nfunc isValidSid(sid *SID) (isValid bool) {\n\tr0, _, _ := syscall.Syscall(procIsValidSid.Addr(), 1, uintptr(unsafe.Pointer(sid)), 0, 0)\n\tisValid = r0 != 0\n\treturn\n}\n\nfunc checkTokenMembership(tokenHandle Token, sidToCheck *SID, isMember *int32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procCheckTokenMembership.Addr(), 3, uintptr(tokenHandle), uintptr(unsafe.Pointer(sidToCheck)), uintptr(unsafe.Pointer(isMember)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc OpenProcessToken(process Handle, access uint32, token *Token) (err error) {\n\tr1, _, e1 := syscall.Syscall(procOpenProcessToken.Addr(), 3, uintptr(process), uintptr(access), uintptr(unsafe.Pointer(token)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc OpenThreadToken(thread Handle, access uint32, openAsSelf bool, token *Token) (err error) {\n\tvar _p0 uint32\n\tif openAsSelf {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall6(procOpenThreadToken.Addr(), 4, uintptr(thread), uintptr(access), uintptr(_p0), uintptr(unsafe.Pointer(token)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc ImpersonateSelf(impersonationlevel uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procImpersonateSelf.Addr(), 1, uintptr(impersonationlevel), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc RevertToSelf() (err error) {\n\tr1, _, e1 := syscall.Syscall(procRevertToSelf.Addr(), 0, 0, 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetThreadToken(thread *Handle, token Token) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetThreadToken.Addr(), 2, uintptr(unsafe.Pointer(thread)), uintptr(token), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc LookupPrivilegeValue(systemname *uint16, name *uint16, luid *LUID) (err error) {\n\tr1, _, e1 := syscall.Syscall(procLookupPrivilegeValueW.Addr(), 3, uintptr(unsafe.Pointer(systemname)), uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(luid)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc AdjustTokenPrivileges(token Token, disableAllPrivileges bool, newstate *Tokenprivileges, buflen uint32, prevstate *Tokenprivileges, returnlen *uint32) (err error) {\n\tvar _p0 uint32\n\tif disableAllPrivileges {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall6(procAdjustTokenPrivileges.Addr(), 6, uintptr(token), uintptr(_p0), uintptr(unsafe.Pointer(newstate)), uintptr(buflen), uintptr(unsafe.Pointer(prevstate)), uintptr(unsafe.Pointer(returnlen)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc AdjustTokenGroups(token Token, resetToDefault bool, newstate *Tokengroups, buflen uint32, prevstate *Tokengroups, returnlen *uint32) (err error) {\n\tvar _p0 uint32\n\tif resetToDefault {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall6(procAdjustTokenGroups.Addr(), 6, uintptr(token), uintptr(_p0), uintptr(unsafe.Pointer(newstate)), uintptr(buflen), uintptr(unsafe.Pointer(prevstate)), uintptr(unsafe.Pointer(returnlen)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetTokenInformation(token Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procGetTokenInformation.Addr(), 5, uintptr(token), uintptr(infoClass), uintptr(unsafe.Pointer(info)), uintptr(infoLen), uintptr(unsafe.Pointer(returnedLen)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc SetTokenInformation(token Token, infoClass uint32, info *byte, infoLen uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procSetTokenInformation.Addr(), 4, uintptr(token), uintptr(infoClass), uintptr(unsafe.Pointer(info)), uintptr(infoLen), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc DuplicateTokenEx(existingToken Token, desiredAccess uint32, tokenAttributes *SecurityAttributes, impersonationLevel uint32, tokenType uint32, newToken *Token) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procDuplicateTokenEx.Addr(), 6, uintptr(existingToken), uintptr(desiredAccess), uintptr(unsafe.Pointer(tokenAttributes)), uintptr(impersonationLevel), uintptr(tokenType), uintptr(unsafe.Pointer(newToken)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc GetUserProfileDirectory(t Token, dir *uint16, dirLen *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetUserProfileDirectoryW.Addr(), 3, uintptr(t), uintptr(unsafe.Pointer(dir)), uintptr(unsafe.Pointer(dirLen)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getSystemDirectory(dir *uint16, dirLen uint32) (len uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetSystemDirectoryW.Addr(), 2, uintptr(unsafe.Pointer(dir)), uintptr(dirLen), 0)\n\tlen = uint32(r0)\n\tif len == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getWindowsDirectory(dir *uint16, dirLen uint32) (len uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetWindowsDirectoryW.Addr(), 2, uintptr(unsafe.Pointer(dir)), uintptr(dirLen), 0)\n\tlen = uint32(r0)\n\tif len == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getSystemWindowsDirectory(dir *uint16, dirLen uint32) (len uint32, err error) {\n\tr0, _, e1 := syscall.Syscall(procGetSystemWindowsDirectoryW.Addr(), 2, uintptr(unsafe.Pointer(dir)), uintptr(dirLen), 0)\n\tlen = uint32(r0)\n\tif len == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WTSQueryUserToken(session uint32, token *Token) (err error) {\n\tr1, _, e1 := syscall.Syscall(procWTSQueryUserToken.Addr(), 2, uintptr(session), uintptr(unsafe.Pointer(token)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WTSEnumerateSessions(handle Handle, reserved uint32, version uint32, sessions **WTS_SESSION_INFO, count *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procWTSEnumerateSessionsW.Addr(), 5, uintptr(handle), uintptr(reserved), uintptr(version), uintptr(unsafe.Pointer(sessions)), uintptr(unsafe.Pointer(count)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc WTSFreeMemory(ptr uintptr) {\n\tsyscall.Syscall(procWTSFreeMemory.Addr(), 1, uintptr(ptr), 0, 0)\n\treturn\n}\n\nfunc getSecurityInfo(handle Handle, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner **SID, group **SID, dacl **ACL, sacl **ACL, sd **SECURITY_DESCRIPTOR) (ret error) {\n\tr0, _, _ := syscall.Syscall9(procGetSecurityInfo.Addr(), 8, uintptr(handle), uintptr(objectType), uintptr(securityInformation), uintptr(unsafe.Pointer(owner)), uintptr(unsafe.Pointer(group)), uintptr(unsafe.Pointer(dacl)), uintptr(unsafe.Pointer(sacl)), uintptr(unsafe.Pointer(sd)), 0)\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc SetSecurityInfo(handle Handle, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner *SID, group *SID, dacl *ACL, sacl *ACL) {\n\tsyscall.Syscall9(procSetSecurityInfo.Addr(), 7, uintptr(handle), uintptr(objectType), uintptr(securityInformation), uintptr(unsafe.Pointer(owner)), uintptr(unsafe.Pointer(group)), uintptr(unsafe.Pointer(dacl)), uintptr(unsafe.Pointer(sacl)), 0, 0)\n\treturn\n}\n\nfunc getNamedSecurityInfo(objectName string, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner **SID, group **SID, dacl **ACL, sacl **ACL, sd **SECURITY_DESCRIPTOR) (ret error) {\n\tvar _p0 *uint16\n\t_p0, ret = syscall.UTF16PtrFromString(objectName)\n\tif ret != nil {\n\t\treturn\n\t}\n\treturn _getNamedSecurityInfo(_p0, objectType, securityInformation, owner, group, dacl, sacl, sd)\n}\n\nfunc _getNamedSecurityInfo(objectName *uint16, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner **SID, group **SID, dacl **ACL, sacl **ACL, sd **SECURITY_DESCRIPTOR) (ret error) {\n\tr0, _, _ := syscall.Syscall9(procGetNamedSecurityInfoW.Addr(), 8, uintptr(unsafe.Pointer(objectName)), uintptr(objectType), uintptr(securityInformation), uintptr(unsafe.Pointer(owner)), uintptr(unsafe.Pointer(group)), uintptr(unsafe.Pointer(dacl)), uintptr(unsafe.Pointer(sacl)), uintptr(unsafe.Pointer(sd)), 0)\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc SetNamedSecurityInfo(objectName string, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner *SID, group *SID, dacl *ACL, sacl *ACL) (ret error) {\n\tvar _p0 *uint16\n\t_p0, ret = syscall.UTF16PtrFromString(objectName)\n\tif ret != nil {\n\t\treturn\n\t}\n\treturn _SetNamedSecurityInfo(_p0, objectType, securityInformation, owner, group, dacl, sacl)\n}\n\nfunc _SetNamedSecurityInfo(objectName *uint16, objectType SE_OBJECT_TYPE, securityInformation SECURITY_INFORMATION, owner *SID, group *SID, dacl *ACL, sacl *ACL) (ret error) {\n\tr0, _, _ := syscall.Syscall9(procSetNamedSecurityInfoW.Addr(), 7, uintptr(unsafe.Pointer(objectName)), uintptr(objectType), uintptr(securityInformation), uintptr(unsafe.Pointer(owner)), uintptr(unsafe.Pointer(group)), uintptr(unsafe.Pointer(dacl)), uintptr(unsafe.Pointer(sacl)), 0, 0)\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc buildSecurityDescriptor(owner *TRUSTEE, group *TRUSTEE, countAccessEntries uint32, accessEntries *EXPLICIT_ACCESS, countAuditEntries uint32, auditEntries *EXPLICIT_ACCESS, oldSecurityDescriptor *SECURITY_DESCRIPTOR, sizeNewSecurityDescriptor *uint32, newSecurityDescriptor **SECURITY_DESCRIPTOR) (ret error) {\n\tr0, _, _ := syscall.Syscall9(procBuildSecurityDescriptorW.Addr(), 9, uintptr(unsafe.Pointer(owner)), uintptr(unsafe.Pointer(group)), uintptr(countAccessEntries), uintptr(unsafe.Pointer(accessEntries)), uintptr(countAuditEntries), uintptr(unsafe.Pointer(auditEntries)), uintptr(unsafe.Pointer(oldSecurityDescriptor)), uintptr(unsafe.Pointer(sizeNewSecurityDescriptor)), uintptr(unsafe.Pointer(newSecurityDescriptor)))\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc initializeSecurityDescriptor(absoluteSD *SECURITY_DESCRIPTOR, revision uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procInitializeSecurityDescriptor.Addr(), 2, uintptr(unsafe.Pointer(absoluteSD)), uintptr(revision), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getSecurityDescriptorControl(sd *SECURITY_DESCRIPTOR, control *SECURITY_DESCRIPTOR_CONTROL, revision *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procGetSecurityDescriptorControl.Addr(), 3, uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(control)), uintptr(unsafe.Pointer(revision)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getSecurityDescriptorDacl(sd *SECURITY_DESCRIPTOR, daclPresent *bool, dacl **ACL, daclDefaulted *bool) (err error) {\n\tvar _p0 uint32\n\tif *daclPresent {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tvar _p1 uint32\n\tif *daclDefaulted {\n\t\t_p1 = 1\n\t} else {\n\t\t_p1 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall6(procGetSecurityDescriptorDacl.Addr(), 4, uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(&_p0)), uintptr(unsafe.Pointer(dacl)), uintptr(unsafe.Pointer(&_p1)), 0, 0)\n\t*daclPresent = _p0 != 0\n\t*daclDefaulted = _p1 != 0\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getSecurityDescriptorSacl(sd *SECURITY_DESCRIPTOR, saclPresent *bool, sacl **ACL, saclDefaulted *bool) (err error) {\n\tvar _p0 uint32\n\tif *saclPresent {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tvar _p1 uint32\n\tif *saclDefaulted {\n\t\t_p1 = 1\n\t} else {\n\t\t_p1 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall6(procGetSecurityDescriptorSacl.Addr(), 4, uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(&_p0)), uintptr(unsafe.Pointer(sacl)), uintptr(unsafe.Pointer(&_p1)), 0, 0)\n\t*saclPresent = _p0 != 0\n\t*saclDefaulted = _p1 != 0\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getSecurityDescriptorOwner(sd *SECURITY_DESCRIPTOR, owner **SID, ownerDefaulted *bool) (err error) {\n\tvar _p0 uint32\n\tif *ownerDefaulted {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall(procGetSecurityDescriptorOwner.Addr(), 3, uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(owner)), uintptr(unsafe.Pointer(&_p0)))\n\t*ownerDefaulted = _p0 != 0\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getSecurityDescriptorGroup(sd *SECURITY_DESCRIPTOR, group **SID, groupDefaulted *bool) (err error) {\n\tvar _p0 uint32\n\tif *groupDefaulted {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall(procGetSecurityDescriptorGroup.Addr(), 3, uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(group)), uintptr(unsafe.Pointer(&_p0)))\n\t*groupDefaulted = _p0 != 0\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc getSecurityDescriptorLength(sd *SECURITY_DESCRIPTOR) (len uint32) {\n\tr0, _, _ := syscall.Syscall(procGetSecurityDescriptorLength.Addr(), 1, uintptr(unsafe.Pointer(sd)), 0, 0)\n\tlen = uint32(r0)\n\treturn\n}\n\nfunc getSecurityDescriptorRMControl(sd *SECURITY_DESCRIPTOR, rmControl *uint8) (ret error) {\n\tr0, _, _ := syscall.Syscall(procGetSecurityDescriptorRMControl.Addr(), 2, uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(rmControl)), 0)\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n\nfunc isValidSecurityDescriptor(sd *SECURITY_DESCRIPTOR) (isValid bool) {\n\tr0, _, _ := syscall.Syscall(procIsValidSecurityDescriptor.Addr(), 1, uintptr(unsafe.Pointer(sd)), 0, 0)\n\tisValid = r0 != 0\n\treturn\n}\n\nfunc setSecurityDescriptorControl(sd *SECURITY_DESCRIPTOR, controlBitsOfInterest SECURITY_DESCRIPTOR_CONTROL, controlBitsToSet SECURITY_DESCRIPTOR_CONTROL) (err error) {\n\tr1, _, e1 := syscall.Syscall(procSetSecurityDescriptorControl.Addr(), 3, uintptr(unsafe.Pointer(sd)), uintptr(controlBitsOfInterest), uintptr(controlBitsToSet))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc setSecurityDescriptorDacl(sd *SECURITY_DESCRIPTOR, daclPresent bool, dacl *ACL, daclDefaulted bool) (err error) {\n\tvar _p0 uint32\n\tif daclPresent {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tvar _p1 uint32\n\tif daclDefaulted {\n\t\t_p1 = 1\n\t} else {\n\t\t_p1 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall6(procSetSecurityDescriptorDacl.Addr(), 4, uintptr(unsafe.Pointer(sd)), uintptr(_p0), uintptr(unsafe.Pointer(dacl)), uintptr(_p1), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc setSecurityDescriptorSacl(sd *SECURITY_DESCRIPTOR, saclPresent bool, sacl *ACL, saclDefaulted bool) (err error) {\n\tvar _p0 uint32\n\tif saclPresent {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tvar _p1 uint32\n\tif saclDefaulted {\n\t\t_p1 = 1\n\t} else {\n\t\t_p1 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall6(procSetSecurityDescriptorSacl.Addr(), 4, uintptr(unsafe.Pointer(sd)), uintptr(_p0), uintptr(unsafe.Pointer(sacl)), uintptr(_p1), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc setSecurityDescriptorOwner(sd *SECURITY_DESCRIPTOR, owner *SID, ownerDefaulted bool) (err error) {\n\tvar _p0 uint32\n\tif ownerDefaulted {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall(procSetSecurityDescriptorOwner.Addr(), 3, uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(owner)), uintptr(_p0))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc setSecurityDescriptorGroup(sd *SECURITY_DESCRIPTOR, group *SID, groupDefaulted bool) (err error) {\n\tvar _p0 uint32\n\tif groupDefaulted {\n\t\t_p0 = 1\n\t} else {\n\t\t_p0 = 0\n\t}\n\tr1, _, e1 := syscall.Syscall(procSetSecurityDescriptorGroup.Addr(), 3, uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(group)), uintptr(_p0))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc setSecurityDescriptorRMControl(sd *SECURITY_DESCRIPTOR, rmControl *uint8) {\n\tsyscall.Syscall(procSetSecurityDescriptorRMControl.Addr(), 2, uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(rmControl)), 0)\n\treturn\n}\n\nfunc convertStringSecurityDescriptorToSecurityDescriptor(str string, revision uint32, sd **SECURITY_DESCRIPTOR, size *uint32) (err error) {\n\tvar _p0 *uint16\n\t_p0, err = syscall.UTF16PtrFromString(str)\n\tif err != nil {\n\t\treturn\n\t}\n\treturn _convertStringSecurityDescriptorToSecurityDescriptor(_p0, revision, sd, size)\n}\n\nfunc _convertStringSecurityDescriptorToSecurityDescriptor(str *uint16, revision uint32, sd **SECURITY_DESCRIPTOR, size *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procConvertStringSecurityDescriptorToSecurityDescriptorW.Addr(), 4, uintptr(unsafe.Pointer(str)), uintptr(revision), uintptr(unsafe.Pointer(sd)), uintptr(unsafe.Pointer(size)), 0, 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc convertSecurityDescriptorToStringSecurityDescriptor(sd *SECURITY_DESCRIPTOR, revision uint32, securityInformation SECURITY_INFORMATION, str **uint16, strLen *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall6(procConvertSecurityDescriptorToStringSecurityDescriptorW.Addr(), 5, uintptr(unsafe.Pointer(sd)), uintptr(revision), uintptr(securityInformation), uintptr(unsafe.Pointer(str)), uintptr(unsafe.Pointer(strLen)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc makeAbsoluteSD(selfRelativeSD *SECURITY_DESCRIPTOR, absoluteSD *SECURITY_DESCRIPTOR, absoluteSDSize *uint32, dacl *ACL, daclSize *uint32, sacl *ACL, saclSize *uint32, owner *SID, ownerSize *uint32, group *SID, groupSize *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall12(procMakeAbsoluteSD.Addr(), 11, uintptr(unsafe.Pointer(selfRelativeSD)), uintptr(unsafe.Pointer(absoluteSD)), uintptr(unsafe.Pointer(absoluteSDSize)), uintptr(unsafe.Pointer(dacl)), uintptr(unsafe.Pointer(daclSize)), uintptr(unsafe.Pointer(sacl)), uintptr(unsafe.Pointer(saclSize)), uintptr(unsafe.Pointer(owner)), uintptr(unsafe.Pointer(ownerSize)), uintptr(unsafe.Pointer(group)), uintptr(unsafe.Pointer(groupSize)), 0)\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc makeSelfRelativeSD(absoluteSD *SECURITY_DESCRIPTOR, selfRelativeSD *SECURITY_DESCRIPTOR, selfRelativeSDSize *uint32) (err error) {\n\tr1, _, e1 := syscall.Syscall(procMakeSelfRelativeSD.Addr(), 3, uintptr(unsafe.Pointer(absoluteSD)), uintptr(unsafe.Pointer(selfRelativeSD)), uintptr(unsafe.Pointer(selfRelativeSDSize)))\n\tif r1 == 0 {\n\t\tif e1 != 0 {\n\t\t\terr = errnoErr(e1)\n\t\t} else {\n\t\t\terr = syscall.EINVAL\n\t\t}\n\t}\n\treturn\n}\n\nfunc setEntriesInAcl(countExplicitEntries uint32, explicitEntries *EXPLICIT_ACCESS, oldACL *ACL, newACL **ACL) (ret error) {\n\tr0, _, _ := syscall.Syscall6(procSetEntriesInAclW.Addr(), 4, uintptr(countExplicitEntries), uintptr(unsafe.Pointer(explicitEntries)), uintptr(unsafe.Pointer(oldACL)), uintptr(unsafe.Pointer(newACL)), 0, 0)\n\tif r0 != 0 {\n\t\tret = syscall.Errno(r0)\n\t}\n\treturn\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/AUTHORS",
    "content": "# This source code refers to The Go Authors for copyright purposes.\n# The master list of authors is in the main Go distribution,\n# visible at http://tip.golang.org/AUTHORS.\n"
  },
  {
    "path": "vendor/golang.org/x/text/CONTRIBUTORS",
    "content": "# This source code was written by the Go contributors.\n# The master list of contributors is in the main Go distribution,\n# visible at http://tip.golang.org/CONTRIBUTORS.\n"
  },
  {
    "path": "vendor/golang.org/x/text/LICENSE",
    "content": "Copyright (c) 2009 The Go Authors. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n   * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n   * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n   * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "vendor/golang.org/x/text/PATENTS",
    "content": "Additional IP Rights Grant (Patents)\n\n\"This implementation\" means the copyrightable works distributed by\nGoogle as part of the Go project.\n\nGoogle hereby grants to You a perpetual, worldwide, non-exclusive,\nno-charge, royalty-free, irrevocable (except as stated in this section)\npatent license to make, have made, use, offer to sell, sell, import,\ntransfer and otherwise run, modify and propagate the contents of this\nimplementation of Go, where such license applies only to those patent\nclaims, both currently owned or controlled by Google and acquired in\nthe future, licensable by Google that are necessarily infringed by this\nimplementation of Go.  This grant does not include claims that would be\ninfringed only as a consequence of further modification of this\nimplementation.  If you or your agent or exclusive licensee institute or\norder or agree to the institution of patent litigation against any\nentity (including a cross-claim or counterclaim in a lawsuit) alleging\nthat this implementation of Go or any code incorporated within this\nimplementation of Go constitutes direct or contributory patent\ninfringement, or inducement of patent infringement, then any patent\nrights granted to you under this License for this implementation of Go\nshall terminate as of the date such litigation is filed.\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/charmap/charmap.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n//go:generate go run maketables.go\n\n// Package charmap provides simple character encodings such as IBM Code Page 437\n// and Windows 1252.\npackage charmap // import \"golang.org/x/text/encoding/charmap\"\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\n// These encodings vary only in the way clients should interpret them. Their\n// coded character set is identical and a single implementation can be shared.\nvar (\n\t// ISO8859_6E is the ISO 8859-6E encoding.\n\tISO8859_6E encoding.Encoding = &iso8859_6E\n\n\t// ISO8859_6I is the ISO 8859-6I encoding.\n\tISO8859_6I encoding.Encoding = &iso8859_6I\n\n\t// ISO8859_8E is the ISO 8859-8E encoding.\n\tISO8859_8E encoding.Encoding = &iso8859_8E\n\n\t// ISO8859_8I is the ISO 8859-8I encoding.\n\tISO8859_8I encoding.Encoding = &iso8859_8I\n\n\tiso8859_6E = internal.Encoding{\n\t\tEncoding: ISO8859_6,\n\t\tName:     \"ISO-8859-6E\",\n\t\tMIB:      identifier.ISO88596E,\n\t}\n\n\tiso8859_6I = internal.Encoding{\n\t\tEncoding: ISO8859_6,\n\t\tName:     \"ISO-8859-6I\",\n\t\tMIB:      identifier.ISO88596I,\n\t}\n\n\tiso8859_8E = internal.Encoding{\n\t\tEncoding: ISO8859_8,\n\t\tName:     \"ISO-8859-8E\",\n\t\tMIB:      identifier.ISO88598E,\n\t}\n\n\tiso8859_8I = internal.Encoding{\n\t\tEncoding: ISO8859_8,\n\t\tName:     \"ISO-8859-8I\",\n\t\tMIB:      identifier.ISO88598I,\n\t}\n)\n\n// All is a list of all defined encodings in this package.\nvar All []encoding.Encoding = listAll\n\n// TODO: implement these encodings, in order of importance.\n// ASCII, ISO8859_1:       Rather common. Close to Windows 1252.\n// ISO8859_9:              Close to Windows 1254.\n\n// utf8Enc holds a rune's UTF-8 encoding in data[:len].\ntype utf8Enc struct {\n\tlen  uint8\n\tdata [3]byte\n}\n\n// Charmap is an 8-bit character set encoding.\ntype Charmap struct {\n\t// name is the encoding's name.\n\tname string\n\t// mib is the encoding type of this encoder.\n\tmib identifier.MIB\n\t// asciiSuperset states whether the encoding is a superset of ASCII.\n\tasciiSuperset bool\n\t// low is the lower bound of the encoded byte for a non-ASCII rune. If\n\t// Charmap.asciiSuperset is true then this will be 0x80, otherwise 0x00.\n\tlow uint8\n\t// replacement is the encoded replacement character.\n\treplacement byte\n\t// decode is the map from encoded byte to UTF-8.\n\tdecode [256]utf8Enc\n\t// encoding is the map from runes to encoded bytes. Each entry is a\n\t// uint32: the high 8 bits are the encoded byte and the low 24 bits are\n\t// the rune. The table entries are sorted by ascending rune.\n\tencode [256]uint32\n}\n\n// NewDecoder implements the encoding.Encoding interface.\nfunc (m *Charmap) NewDecoder() *encoding.Decoder {\n\treturn &encoding.Decoder{Transformer: charmapDecoder{charmap: m}}\n}\n\n// NewEncoder implements the encoding.Encoding interface.\nfunc (m *Charmap) NewEncoder() *encoding.Encoder {\n\treturn &encoding.Encoder{Transformer: charmapEncoder{charmap: m}}\n}\n\n// String returns the Charmap's name.\nfunc (m *Charmap) String() string {\n\treturn m.name\n}\n\n// ID implements an internal interface.\nfunc (m *Charmap) ID() (mib identifier.MIB, other string) {\n\treturn m.mib, \"\"\n}\n\n// charmapDecoder implements transform.Transformer by decoding to UTF-8.\ntype charmapDecoder struct {\n\ttransform.NopResetter\n\tcharmap *Charmap\n}\n\nfunc (m charmapDecoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tfor i, c := range src {\n\t\tif m.charmap.asciiSuperset && c < utf8.RuneSelf {\n\t\t\tif nDst >= len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[nDst] = c\n\t\t\tnDst++\n\t\t\tnSrc = i + 1\n\t\t\tcontinue\n\t\t}\n\n\t\tdecode := &m.charmap.decode[c]\n\t\tn := int(decode.len)\n\t\tif nDst+n > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\t// It's 15% faster to avoid calling copy for these tiny slices.\n\t\tfor j := 0; j < n; j++ {\n\t\t\tdst[nDst] = decode.data[j]\n\t\t\tnDst++\n\t\t}\n\t\tnSrc = i + 1\n\t}\n\treturn nDst, nSrc, err\n}\n\n// DecodeByte returns the Charmap's rune decoding of the byte b.\nfunc (m *Charmap) DecodeByte(b byte) rune {\n\tswitch x := &m.decode[b]; x.len {\n\tcase 1:\n\t\treturn rune(x.data[0])\n\tcase 2:\n\t\treturn rune(x.data[0]&0x1f)<<6 | rune(x.data[1]&0x3f)\n\tdefault:\n\t\treturn rune(x.data[0]&0x0f)<<12 | rune(x.data[1]&0x3f)<<6 | rune(x.data[2]&0x3f)\n\t}\n}\n\n// charmapEncoder implements transform.Transformer by encoding from UTF-8.\ntype charmapEncoder struct {\n\ttransform.NopResetter\n\tcharmap *Charmap\n}\n\nfunc (m charmapEncoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\nloop:\n\tfor nSrc < len(src) {\n\t\tif nDst >= len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tif m.charmap.asciiSuperset {\n\t\t\t\tnSrc++\n\t\t\t\tdst[nDst] = uint8(r)\n\t\t\t\tnDst++\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tsize = 1\n\n\t\t} else {\n\t\t\t// Decode a multi-byte rune.\n\t\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\t\tif size == 1 {\n\t\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t\t// full character yet.\n\t\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t} else {\n\t\t\t\t\terr = internal.RepertoireError(m.charmap.replacement)\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\t// Binary search in [low, high) for that rune in the m.charmap.encode table.\n\t\tfor low, high := int(m.charmap.low), 0x100; ; {\n\t\t\tif low >= high {\n\t\t\t\terr = internal.RepertoireError(m.charmap.replacement)\n\t\t\t\tbreak loop\n\t\t\t}\n\t\t\tmid := (low + high) / 2\n\t\t\tgot := m.charmap.encode[mid]\n\t\t\tgotRune := rune(got & (1<<24 - 1))\n\t\t\tif gotRune < r {\n\t\t\t\tlow = mid + 1\n\t\t\t} else if gotRune > r {\n\t\t\t\thigh = mid\n\t\t\t} else {\n\t\t\t\tdst[nDst] = byte(got >> 24)\n\t\t\t\tnDst++\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tnSrc += size\n\t}\n\treturn nDst, nSrc, err\n}\n\n// EncodeRune returns the Charmap's byte encoding of the rune r. ok is whether\n// r is in the Charmap's repertoire. If not, b is set to the Charmap's\n// replacement byte. This is often the ASCII substitute character '\\x1a'.\nfunc (m *Charmap) EncodeRune(r rune) (b byte, ok bool) {\n\tif r < utf8.RuneSelf && m.asciiSuperset {\n\t\treturn byte(r), true\n\t}\n\tfor low, high := int(m.low), 0x100; ; {\n\t\tif low >= high {\n\t\t\treturn m.replacement, false\n\t\t}\n\t\tmid := (low + high) / 2\n\t\tgot := m.encode[mid]\n\t\tgotRune := rune(got & (1<<24 - 1))\n\t\tif gotRune < r {\n\t\t\tlow = mid + 1\n\t\t} else if gotRune > r {\n\t\t\thigh = mid\n\t\t} else {\n\t\t\treturn byte(got >> 24), true\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/charmap/tables.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\npackage charmap\n\nimport (\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n)\n\n// CodePage037 is the IBM Code Page 037 encoding.\nvar CodePage037 *Charmap = &codePage037\n\nvar codePage037 = Charmap{\n\tname:          \"IBM Code Page 037\",\n\tmib:           identifier.IBM037,\n\tasciiSuperset: false,\n\tlow:           0x00,\n\treplacement:   0x3f,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9c, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x86, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x97, 0x00}}, {2, [3]byte{0xc2, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8e, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9d, 0x00}}, {2, [3]byte{0xc2, 0x85, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {2, [3]byte{0xc2, 0x87, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x92, 0x00}}, {2, [3]byte{0xc2, 0x8f, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x80, 0x00}}, {2, [3]byte{0xc2, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x82, 0x00}}, {2, [3]byte{0xc2, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x84, 0x00}}, {1, [3]byte{0x0a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x17, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x88, 0x00}}, {2, [3]byte{0xc2, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8a, 0x00}}, {2, [3]byte{0xc2, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8c, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x90, 0x00}}, {2, [3]byte{0xc2, 0x91, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {2, [3]byte{0xc2, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x94, 0x00}}, {2, [3]byte{0xc2, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x96, 0x00}}, {1, [3]byte{0x04, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x98, 0x00}}, {2, [3]byte{0xc2, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9a, 0x00}}, {2, [3]byte{0xc2, 0x9b, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9e, 0x00}}, {1, [3]byte{0x1a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa7, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {1, [3]byte{0x2e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x28, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2b, 0x00, 0x00}}, {1, [3]byte{0x7c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{1, [3]byte{0x21, 0x00, 0x00}}, {1, [3]byte{0x24, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3b, 0x00, 0x00}}, {2, [3]byte{0xc2, 0xac, 0x00}},\n\t\t{1, [3]byte{0x2d, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x83, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {1, [3]byte{0x2c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x25, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {1, [3]byte{0x60, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3d, 0x00, 0x00}}, {1, [3]byte{0x22, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb0, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {1, [3]byte{0x6a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6b, 0x00, 0x00}}, {1, [3]byte{0x6c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6d, 0x00, 0x00}}, {1, [3]byte{0x6e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6f, 0x00, 0x00}}, {1, [3]byte{0x70, 0x00, 0x00}},\n\t\t{1, [3]byte{0x71, 0x00, 0x00}}, {1, [3]byte{0x72, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc2, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {1, [3]byte{0x7e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x73, 0x00, 0x00}}, {1, [3]byte{0x74, 0x00, 0x00}},\n\t\t{1, [3]byte{0x75, 0x00, 0x00}}, {1, [3]byte{0x76, 0x00, 0x00}},\n\t\t{1, [3]byte{0x77, 0x00, 0x00}}, {1, [3]byte{0x78, 0x00, 0x00}},\n\t\t{1, [3]byte{0x79, 0x00, 0x00}}, {1, [3]byte{0x7a, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa1, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x90, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9e, 0x00}}, {2, [3]byte{0xc2, 0xae, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa5, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa9, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbd, 0x00}}, {2, [3]byte{0xc2, 0xbe, 0x00}},\n\t\t{1, [3]byte{0x5b, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaf, 0x00}}, {2, [3]byte{0xc2, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{1, [3]byte{0x7b, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xad, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{1, [3]byte{0x7d, 0x00, 0x00}}, {1, [3]byte{0x4a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4b, 0x00, 0x00}}, {1, [3]byte{0x4c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4d, 0x00, 0x00}}, {1, [3]byte{0x4e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4f, 0x00, 0x00}}, {1, [3]byte{0x50, 0x00, 0x00}},\n\t\t{1, [3]byte{0x51, 0x00, 0x00}}, {1, [3]byte{0x52, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb9, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{1, [3]byte{0x53, 0x00, 0x00}}, {1, [3]byte{0x54, 0x00, 0x00}},\n\t\t{1, [3]byte{0x55, 0x00, 0x00}}, {1, [3]byte{0x56, 0x00, 0x00}},\n\t\t{1, [3]byte{0x57, 0x00, 0x00}}, {1, [3]byte{0x58, 0x00, 0x00}},\n\t\t{1, [3]byte{0x59, 0x00, 0x00}}, {1, [3]byte{0x5a, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0x94, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x93, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc2, 0x9f, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x37000004, 0x2d000005, 0x2e000006, 0x2f000007,\n\t\t0x16000008, 0x05000009, 0x2500000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x3c000014, 0x3d000015, 0x32000016, 0x26000017,\n\t\t0x18000018, 0x19000019, 0x3f00001a, 0x2700001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x40000020, 0x5a000021, 0x7f000022, 0x7b000023, 0x5b000024, 0x6c000025, 0x50000026, 0x7d000027,\n\t\t0x4d000028, 0x5d000029, 0x5c00002a, 0x4e00002b, 0x6b00002c, 0x6000002d, 0x4b00002e, 0x6100002f,\n\t\t0xf0000030, 0xf1000031, 0xf2000032, 0xf3000033, 0xf4000034, 0xf5000035, 0xf6000036, 0xf7000037,\n\t\t0xf8000038, 0xf9000039, 0x7a00003a, 0x5e00003b, 0x4c00003c, 0x7e00003d, 0x6e00003e, 0x6f00003f,\n\t\t0x7c000040, 0xc1000041, 0xc2000042, 0xc3000043, 0xc4000044, 0xc5000045, 0xc6000046, 0xc7000047,\n\t\t0xc8000048, 0xc9000049, 0xd100004a, 0xd200004b, 0xd300004c, 0xd400004d, 0xd500004e, 0xd600004f,\n\t\t0xd7000050, 0xd8000051, 0xd9000052, 0xe2000053, 0xe3000054, 0xe4000055, 0xe5000056, 0xe6000057,\n\t\t0xe7000058, 0xe8000059, 0xe900005a, 0xba00005b, 0xe000005c, 0xbb00005d, 0xb000005e, 0x6d00005f,\n\t\t0x79000060, 0x81000061, 0x82000062, 0x83000063, 0x84000064, 0x85000065, 0x86000066, 0x87000067,\n\t\t0x88000068, 0x89000069, 0x9100006a, 0x9200006b, 0x9300006c, 0x9400006d, 0x9500006e, 0x9600006f,\n\t\t0x97000070, 0x98000071, 0x99000072, 0xa2000073, 0xa3000074, 0xa4000075, 0xa5000076, 0xa6000077,\n\t\t0xa7000078, 0xa8000079, 0xa900007a, 0xc000007b, 0x4f00007c, 0xd000007d, 0xa100007e, 0x0700007f,\n\t\t0x20000080, 0x21000081, 0x22000082, 0x23000083, 0x24000084, 0x15000085, 0x06000086, 0x17000087,\n\t\t0x28000088, 0x29000089, 0x2a00008a, 0x2b00008b, 0x2c00008c, 0x0900008d, 0x0a00008e, 0x1b00008f,\n\t\t0x30000090, 0x31000091, 0x1a000092, 0x33000093, 0x34000094, 0x35000095, 0x36000096, 0x08000097,\n\t\t0x38000098, 0x39000099, 0x3a00009a, 0x3b00009b, 0x0400009c, 0x1400009d, 0x3e00009e, 0xff00009f,\n\t\t0x410000a0, 0xaa0000a1, 0x4a0000a2, 0xb10000a3, 0x9f0000a4, 0xb20000a5, 0x6a0000a6, 0xb50000a7,\n\t\t0xbd0000a8, 0xb40000a9, 0x9a0000aa, 0x8a0000ab, 0x5f0000ac, 0xca0000ad, 0xaf0000ae, 0xbc0000af,\n\t\t0x900000b0, 0x8f0000b1, 0xea0000b2, 0xfa0000b3, 0xbe0000b4, 0xa00000b5, 0xb60000b6, 0xb30000b7,\n\t\t0x9d0000b8, 0xda0000b9, 0x9b0000ba, 0x8b0000bb, 0xb70000bc, 0xb80000bd, 0xb90000be, 0xab0000bf,\n\t\t0x640000c0, 0x650000c1, 0x620000c2, 0x660000c3, 0x630000c4, 0x670000c5, 0x9e0000c6, 0x680000c7,\n\t\t0x740000c8, 0x710000c9, 0x720000ca, 0x730000cb, 0x780000cc, 0x750000cd, 0x760000ce, 0x770000cf,\n\t\t0xac0000d0, 0x690000d1, 0xed0000d2, 0xee0000d3, 0xeb0000d4, 0xef0000d5, 0xec0000d6, 0xbf0000d7,\n\t\t0x800000d8, 0xfd0000d9, 0xfe0000da, 0xfb0000db, 0xfc0000dc, 0xad0000dd, 0xae0000de, 0x590000df,\n\t\t0x440000e0, 0x450000e1, 0x420000e2, 0x460000e3, 0x430000e4, 0x470000e5, 0x9c0000e6, 0x480000e7,\n\t\t0x540000e8, 0x510000e9, 0x520000ea, 0x530000eb, 0x580000ec, 0x550000ed, 0x560000ee, 0x570000ef,\n\t\t0x8c0000f0, 0x490000f1, 0xcd0000f2, 0xce0000f3, 0xcb0000f4, 0xcf0000f5, 0xcc0000f6, 0xe10000f7,\n\t\t0x700000f8, 0xdd0000f9, 0xde0000fa, 0xdb0000fb, 0xdc0000fc, 0x8d0000fd, 0x8e0000fe, 0xdf0000ff,\n\t},\n}\n\n// CodePage437 is the IBM Code Page 437 encoding.\nvar CodePage437 *Charmap = &codePage437\n\nvar codePage437 = Charmap{\n\tname:          \"IBM Code Page 437\",\n\tmib:           identifier.PC8CodePage437,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa9, 0x00}}, {2, [3]byte{0xc3, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa5, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xac, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x89, 0x00}}, {2, [3]byte{0xc3, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbb, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbf, 0x00}}, {2, [3]byte{0xc3, 0x96, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc2, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa3, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xa7}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa1, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbf, 0x00}}, {3, [3]byte{0xe2, 0x8c, 0x90}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {3, [3]byte{0xe2, 0x95, 0xa1}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa2}}, {3, [3]byte{0xe2, 0x95, 0x96}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x95}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {3, [3]byte{0xe2, 0x95, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9b}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9e}}, {3, [3]byte{0xe2, 0x95, 0x9f}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {3, [3]byte{0xe2, 0x95, 0xa7}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa8}}, {3, [3]byte{0xe2, 0x95, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa5}}, {3, [3]byte{0xe2, 0x95, 0x99}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x98}}, {3, [3]byte{0xe2, 0x95, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x93}}, {3, [3]byte{0xe2, 0x95, 0xab}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xaa}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {3, [3]byte{0xe2, 0x96, 0x8c}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x90}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xce, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xce, 0x93, 0x00}}, {2, [3]byte{0xcf, 0x80, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa3, 0x00}}, {2, [3]byte{0xcf, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {2, [3]byte{0xcf, 0x84, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa6, 0x00}}, {2, [3]byte{0xce, 0x98, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa9, 0x00}}, {2, [3]byte{0xce, 0xb4, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x9e}}, {2, [3]byte{0xcf, 0x86, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb5, 0x00}}, {3, [3]byte{0xe2, 0x88, 0xa9}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa1}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa5}}, {3, [3]byte{0xe2, 0x89, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x8c, 0xa0}}, {3, [3]byte{0xe2, 0x8c, 0xa1}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x89, 0x88}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x99}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x9a}},\n\t\t{3, [3]byte{0xe2, 0x81, 0xbf}}, {2, [3]byte{0xc2, 0xb2, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0xad0000a1, 0x9b0000a2, 0x9c0000a3, 0x9d0000a5, 0xa60000aa, 0xae0000ab, 0xaa0000ac,\n\t\t0xf80000b0, 0xf10000b1, 0xfd0000b2, 0xe60000b5, 0xfa0000b7, 0xa70000ba, 0xaf0000bb, 0xac0000bc,\n\t\t0xab0000bd, 0xa80000bf, 0x8e0000c4, 0x8f0000c5, 0x920000c6, 0x800000c7, 0x900000c9, 0xa50000d1,\n\t\t0x990000d6, 0x9a0000dc, 0xe10000df, 0x850000e0, 0xa00000e1, 0x830000e2, 0x840000e4, 0x860000e5,\n\t\t0x910000e6, 0x870000e7, 0x8a0000e8, 0x820000e9, 0x880000ea, 0x890000eb, 0x8d0000ec, 0xa10000ed,\n\t\t0x8c0000ee, 0x8b0000ef, 0xa40000f1, 0x950000f2, 0xa20000f3, 0x930000f4, 0x940000f6, 0xf60000f7,\n\t\t0x970000f9, 0xa30000fa, 0x960000fb, 0x810000fc, 0x980000ff, 0x9f000192, 0xe2000393, 0xe9000398,\n\t\t0xe40003a3, 0xe80003a6, 0xea0003a9, 0xe00003b1, 0xeb0003b4, 0xee0003b5, 0xe30003c0, 0xe50003c3,\n\t\t0xe70003c4, 0xed0003c6, 0xfc00207f, 0x9e0020a7, 0xf9002219, 0xfb00221a, 0xec00221e, 0xef002229,\n\t\t0xf7002248, 0xf0002261, 0xf3002264, 0xf2002265, 0xa9002310, 0xf4002320, 0xf5002321, 0xc4002500,\n\t\t0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514, 0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c,\n\t\t0xc1002534, 0xc500253c, 0xcd002550, 0xba002551, 0xd5002552, 0xd6002553, 0xc9002554, 0xb8002555,\n\t\t0xb7002556, 0xbb002557, 0xd4002558, 0xd3002559, 0xc800255a, 0xbe00255b, 0xbd00255c, 0xbc00255d,\n\t\t0xc600255e, 0xc700255f, 0xcc002560, 0xb5002561, 0xb6002562, 0xb9002563, 0xd1002564, 0xd2002565,\n\t\t0xcb002566, 0xcf002567, 0xd0002568, 0xca002569, 0xd800256a, 0xd700256b, 0xce00256c, 0xdf002580,\n\t\t0xdc002584, 0xdb002588, 0xdd00258c, 0xde002590, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage850 is the IBM Code Page 850 encoding.\nvar CodePage850 *Charmap = &codePage850\n\nvar codePage850 = Charmap{\n\tname:          \"IBM Code Page 850\",\n\tmib:           identifier.PC850Multilingual,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa9, 0x00}}, {2, [3]byte{0xc3, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa5, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xac, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x89, 0x00}}, {2, [3]byte{0xc3, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbb, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbf, 0x00}}, {2, [3]byte{0xc3, 0x96, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0x98, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x97, 0x00}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa1, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbf, 0x00}}, {2, [3]byte{0xc2, 0xae, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x80, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa9, 0x00}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {2, [3]byte{0xc2, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa5, 0x00}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{2, [3]byte{0xc3, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {2, [3]byte{0xc2, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb0, 0x00}}, {2, [3]byte{0xc3, 0x90, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc4, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0x8e, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8f, 0x00}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {2, [3]byte{0xc2, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xc3, 0x93, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb5, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {2, [3]byte{0xc3, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9b, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbd, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaf, 0x00}}, {2, [3]byte{0xc2, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xad, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x97}}, {2, [3]byte{0xc2, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {2, [3]byte{0xc2, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb3, 0x00}}, {2, [3]byte{0xc2, 0xb2, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0xad0000a1, 0xbd0000a2, 0x9c0000a3, 0xcf0000a4, 0xbe0000a5, 0xdd0000a6, 0xf50000a7,\n\t\t0xf90000a8, 0xb80000a9, 0xa60000aa, 0xae0000ab, 0xaa0000ac, 0xf00000ad, 0xa90000ae, 0xee0000af,\n\t\t0xf80000b0, 0xf10000b1, 0xfd0000b2, 0xfc0000b3, 0xef0000b4, 0xe60000b5, 0xf40000b6, 0xfa0000b7,\n\t\t0xf70000b8, 0xfb0000b9, 0xa70000ba, 0xaf0000bb, 0xac0000bc, 0xab0000bd, 0xf30000be, 0xa80000bf,\n\t\t0xb70000c0, 0xb50000c1, 0xb60000c2, 0xc70000c3, 0x8e0000c4, 0x8f0000c5, 0x920000c6, 0x800000c7,\n\t\t0xd40000c8, 0x900000c9, 0xd20000ca, 0xd30000cb, 0xde0000cc, 0xd60000cd, 0xd70000ce, 0xd80000cf,\n\t\t0xd10000d0, 0xa50000d1, 0xe30000d2, 0xe00000d3, 0xe20000d4, 0xe50000d5, 0x990000d6, 0x9e0000d7,\n\t\t0x9d0000d8, 0xeb0000d9, 0xe90000da, 0xea0000db, 0x9a0000dc, 0xed0000dd, 0xe80000de, 0xe10000df,\n\t\t0x850000e0, 0xa00000e1, 0x830000e2, 0xc60000e3, 0x840000e4, 0x860000e5, 0x910000e6, 0x870000e7,\n\t\t0x8a0000e8, 0x820000e9, 0x880000ea, 0x890000eb, 0x8d0000ec, 0xa10000ed, 0x8c0000ee, 0x8b0000ef,\n\t\t0xd00000f0, 0xa40000f1, 0x950000f2, 0xa20000f3, 0x930000f4, 0xe40000f5, 0x940000f6, 0xf60000f7,\n\t\t0x9b0000f8, 0x970000f9, 0xa30000fa, 0x960000fb, 0x810000fc, 0xec0000fd, 0xe70000fe, 0x980000ff,\n\t\t0xd5000131, 0x9f000192, 0xf2002017, 0xc4002500, 0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514,\n\t\t0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c, 0xc1002534, 0xc500253c, 0xcd002550, 0xba002551,\n\t\t0xc9002554, 0xbb002557, 0xc800255a, 0xbc00255d, 0xcc002560, 0xb9002563, 0xcb002566, 0xca002569,\n\t\t0xce00256c, 0xdf002580, 0xdc002584, 0xdb002588, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage852 is the IBM Code Page 852 encoding.\nvar CodePage852 *Charmap = &codePage852\n\nvar codePage852 = Charmap{\n\tname:          \"IBM Code Page 852\",\n\tmib:           identifier.PCp852,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa9, 0x00}}, {2, [3]byte{0xc3, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc5, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x82, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x90, 0x00}}, {2, [3]byte{0xc5, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc5, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc4, 0x86, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x89, 0x00}}, {2, [3]byte{0xc4, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc4, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xbe, 0x00}}, {2, [3]byte{0xc5, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9b, 0x00}}, {2, [3]byte{0xc3, 0x96, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc5, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa5, 0x00}}, {2, [3]byte{0xc5, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x97, 0x00}}, {2, [3]byte{0xc4, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa1, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x84, 0x00}}, {2, [3]byte{0xc4, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {2, [3]byte{0xc5, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x98, 0x00}}, {2, [3]byte{0xc4, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc5, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8c, 0x00}}, {2, [3]byte{0xc5, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc4, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9e, 0x00}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {2, [3]byte{0xc5, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbc, 0x00}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{2, [3]byte{0xc4, 0x82, 0x00}}, {2, [3]byte{0xc4, 0x83, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {2, [3]byte{0xc2, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x91, 0x00}}, {2, [3]byte{0xc4, 0x90, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8f, 0x00}}, {2, [3]byte{0xc5, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0x8e, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9b, 0x00}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {2, [3]byte{0xc5, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xae, 0x00}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xc3, 0x93, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc5, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x84, 0x00}}, {2, [3]byte{0xc5, 0x88, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa0, 0x00}}, {2, [3]byte{0xc5, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x95, 0x00}}, {2, [3]byte{0xc5, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbd, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa3, 0x00}}, {2, [3]byte{0xc2, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xad, 0x00}}, {2, [3]byte{0xcb, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x9b, 0x00}}, {2, [3]byte{0xcb, 0x87, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x98, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {2, [3]byte{0xc2, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x99, 0x00}}, {2, [3]byte{0xc5, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x98, 0x00}}, {2, [3]byte{0xc5, 0x99, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0xcf0000a4, 0xf50000a7, 0xf90000a8, 0xae0000ab, 0xaa0000ac, 0xf00000ad, 0xf80000b0,\n\t\t0xef0000b4, 0xf70000b8, 0xaf0000bb, 0xb50000c1, 0xb60000c2, 0x8e0000c4, 0x800000c7, 0x900000c9,\n\t\t0xd30000cb, 0xd60000cd, 0xd70000ce, 0xe00000d3, 0xe20000d4, 0x990000d6, 0x9e0000d7, 0xe90000da,\n\t\t0x9a0000dc, 0xed0000dd, 0xe10000df, 0xa00000e1, 0x830000e2, 0x840000e4, 0x870000e7, 0x820000e9,\n\t\t0x890000eb, 0xa10000ed, 0x8c0000ee, 0xa20000f3, 0x930000f4, 0x940000f6, 0xf60000f7, 0xa30000fa,\n\t\t0x810000fc, 0xec0000fd, 0xc6000102, 0xc7000103, 0xa4000104, 0xa5000105, 0x8f000106, 0x86000107,\n\t\t0xac00010c, 0x9f00010d, 0xd200010e, 0xd400010f, 0xd1000110, 0xd0000111, 0xa8000118, 0xa9000119,\n\t\t0xb700011a, 0xd800011b, 0x91000139, 0x9200013a, 0x9500013d, 0x9600013e, 0x9d000141, 0x88000142,\n\t\t0xe3000143, 0xe4000144, 0xd5000147, 0xe5000148, 0x8a000150, 0x8b000151, 0xe8000154, 0xea000155,\n\t\t0xfc000158, 0xfd000159, 0x9700015a, 0x9800015b, 0xb800015e, 0xad00015f, 0xe6000160, 0xe7000161,\n\t\t0xdd000162, 0xee000163, 0x9b000164, 0x9c000165, 0xde00016e, 0x8500016f, 0xeb000170, 0xfb000171,\n\t\t0x8d000179, 0xab00017a, 0xbd00017b, 0xbe00017c, 0xa600017d, 0xa700017e, 0xf30002c7, 0xf40002d8,\n\t\t0xfa0002d9, 0xf20002db, 0xf10002dd, 0xc4002500, 0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514,\n\t\t0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c, 0xc1002534, 0xc500253c, 0xcd002550, 0xba002551,\n\t\t0xc9002554, 0xbb002557, 0xc800255a, 0xbc00255d, 0xcc002560, 0xb9002563, 0xcb002566, 0xca002569,\n\t\t0xce00256c, 0xdf002580, 0xdc002584, 0xdb002588, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage855 is the IBM Code Page 855 encoding.\nvar CodePage855 *Charmap = &codePage855\n\nvar codePage855 = Charmap{\n\tname:          \"IBM Code Page 855\",\n\tmib:           identifier.IBM855,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x92, 0x00}}, {2, [3]byte{0xd0, 0x82, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x93, 0x00}}, {2, [3]byte{0xd0, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x91, 0x00}}, {2, [3]byte{0xd0, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x94, 0x00}}, {2, [3]byte{0xd0, 0x84, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x95, 0x00}}, {2, [3]byte{0xd0, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x96, 0x00}}, {2, [3]byte{0xd0, 0x86, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x97, 0x00}}, {2, [3]byte{0xd0, 0x87, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x98, 0x00}}, {2, [3]byte{0xd0, 0x88, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x99, 0x00}}, {2, [3]byte{0xd0, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9a, 0x00}}, {2, [3]byte{0xd0, 0x8a, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9b, 0x00}}, {2, [3]byte{0xd0, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9c, 0x00}}, {2, [3]byte{0xd0, 0x8c, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9e, 0x00}}, {2, [3]byte{0xd0, 0x8e, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9f, 0x00}}, {2, [3]byte{0xd0, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8e, 0x00}}, {2, [3]byte{0xd0, 0xae, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8a, 0x00}}, {2, [3]byte{0xd0, 0xaa, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb0, 0x00}}, {2, [3]byte{0xd0, 0x90, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb1, 0x00}}, {2, [3]byte{0xd0, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x86, 0x00}}, {2, [3]byte{0xd0, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb4, 0x00}}, {2, [3]byte{0xd0, 0x94, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb5, 0x00}}, {2, [3]byte{0xd0, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x84, 0x00}}, {2, [3]byte{0xd0, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb3, 0x00}}, {2, [3]byte{0xd0, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {2, [3]byte{0xd1, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa5, 0x00}}, {2, [3]byte{0xd0, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x98, 0x00}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {2, [3]byte{0xd0, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x99, 0x00}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{2, [3]byte{0xd0, 0xba, 0x00}}, {2, [3]byte{0xd0, 0x9a, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {2, [3]byte{0xc2, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbb, 0x00}}, {2, [3]byte{0xd0, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbc, 0x00}}, {2, [3]byte{0xd0, 0x9c, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbd, 0x00}}, {2, [3]byte{0xd0, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbe, 0x00}}, {2, [3]byte{0xd0, 0x9e, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbf, 0x00}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {2, [3]byte{0xd0, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8f, 0x00}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xd0, 0xaf, 0x00}}, {2, [3]byte{0xd1, 0x80, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa0, 0x00}}, {2, [3]byte{0xd1, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa1, 0x00}}, {2, [3]byte{0xd1, 0x82, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa2, 0x00}}, {2, [3]byte{0xd1, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa3, 0x00}}, {2, [3]byte{0xd0, 0xb6, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x96, 0x00}}, {2, [3]byte{0xd0, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x92, 0x00}}, {2, [3]byte{0xd1, 0x8c, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xac, 0x00}}, {3, [3]byte{0xe2, 0x84, 0x96}},\n\t\t{2, [3]byte{0xc2, 0xad, 0x00}}, {2, [3]byte{0xd1, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xab, 0x00}}, {2, [3]byte{0xd0, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x97, 0x00}}, {2, [3]byte{0xd1, 0x88, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa8, 0x00}}, {2, [3]byte{0xd1, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xad, 0x00}}, {2, [3]byte{0xd1, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa9, 0x00}}, {2, [3]byte{0xd1, 0x87, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa7, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0xcf0000a4, 0xfd0000a7, 0xae0000ab, 0xf00000ad, 0xaf0000bb, 0x85000401, 0x81000402,\n\t\t0x83000403, 0x87000404, 0x89000405, 0x8b000406, 0x8d000407, 0x8f000408, 0x91000409, 0x9300040a,\n\t\t0x9500040b, 0x9700040c, 0x9900040e, 0x9b00040f, 0xa1000410, 0xa3000411, 0xec000412, 0xad000413,\n\t\t0xa7000414, 0xa9000415, 0xea000416, 0xf4000417, 0xb8000418, 0xbe000419, 0xc700041a, 0xd100041b,\n\t\t0xd300041c, 0xd500041d, 0xd700041e, 0xdd00041f, 0xe2000420, 0xe4000421, 0xe6000422, 0xe8000423,\n\t\t0xab000424, 0xb6000425, 0xa5000426, 0xfc000427, 0xf6000428, 0xfa000429, 0x9f00042a, 0xf200042b,\n\t\t0xee00042c, 0xf800042d, 0x9d00042e, 0xe000042f, 0xa0000430, 0xa2000431, 0xeb000432, 0xac000433,\n\t\t0xa6000434, 0xa8000435, 0xe9000436, 0xf3000437, 0xb7000438, 0xbd000439, 0xc600043a, 0xd000043b,\n\t\t0xd200043c, 0xd400043d, 0xd600043e, 0xd800043f, 0xe1000440, 0xe3000441, 0xe5000442, 0xe7000443,\n\t\t0xaa000444, 0xb5000445, 0xa4000446, 0xfb000447, 0xf5000448, 0xf9000449, 0x9e00044a, 0xf100044b,\n\t\t0xed00044c, 0xf700044d, 0x9c00044e, 0xde00044f, 0x84000451, 0x80000452, 0x82000453, 0x86000454,\n\t\t0x88000455, 0x8a000456, 0x8c000457, 0x8e000458, 0x90000459, 0x9200045a, 0x9400045b, 0x9600045c,\n\t\t0x9800045e, 0x9a00045f, 0xef002116, 0xc4002500, 0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514,\n\t\t0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c, 0xc1002534, 0xc500253c, 0xcd002550, 0xba002551,\n\t\t0xc9002554, 0xbb002557, 0xc800255a, 0xbc00255d, 0xcc002560, 0xb9002563, 0xcb002566, 0xca002569,\n\t\t0xce00256c, 0xdf002580, 0xdc002584, 0xdb002588, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage858 is the Windows Code Page 858 encoding.\nvar CodePage858 *Charmap = &codePage858\n\nvar codePage858 = Charmap{\n\tname:          \"Windows Code Page 858\",\n\tmib:           identifier.IBM00858,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa9, 0x00}}, {2, [3]byte{0xc3, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa5, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xac, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x89, 0x00}}, {2, [3]byte{0xc3, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbb, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbf, 0x00}}, {2, [3]byte{0xc3, 0x96, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0x98, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x97, 0x00}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa1, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbf, 0x00}}, {2, [3]byte{0xc2, 0xae, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x80, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa9, 0x00}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {2, [3]byte{0xc2, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa5, 0x00}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{2, [3]byte{0xc3, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {2, [3]byte{0xc2, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb0, 0x00}}, {2, [3]byte{0xc3, 0x90, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {3, [3]byte{0xe2, 0x82, 0xac}},\n\t\t{2, [3]byte{0xc3, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0x8e, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8f, 0x00}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {2, [3]byte{0xc2, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xc3, 0x93, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb5, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {2, [3]byte{0xc3, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9b, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbd, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaf, 0x00}}, {2, [3]byte{0xc2, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xad, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x97}}, {2, [3]byte{0xc2, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {2, [3]byte{0xc2, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb3, 0x00}}, {2, [3]byte{0xc2, 0xb2, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0xad0000a1, 0xbd0000a2, 0x9c0000a3, 0xcf0000a4, 0xbe0000a5, 0xdd0000a6, 0xf50000a7,\n\t\t0xf90000a8, 0xb80000a9, 0xa60000aa, 0xae0000ab, 0xaa0000ac, 0xf00000ad, 0xa90000ae, 0xee0000af,\n\t\t0xf80000b0, 0xf10000b1, 0xfd0000b2, 0xfc0000b3, 0xef0000b4, 0xe60000b5, 0xf40000b6, 0xfa0000b7,\n\t\t0xf70000b8, 0xfb0000b9, 0xa70000ba, 0xaf0000bb, 0xac0000bc, 0xab0000bd, 0xf30000be, 0xa80000bf,\n\t\t0xb70000c0, 0xb50000c1, 0xb60000c2, 0xc70000c3, 0x8e0000c4, 0x8f0000c5, 0x920000c6, 0x800000c7,\n\t\t0xd40000c8, 0x900000c9, 0xd20000ca, 0xd30000cb, 0xde0000cc, 0xd60000cd, 0xd70000ce, 0xd80000cf,\n\t\t0xd10000d0, 0xa50000d1, 0xe30000d2, 0xe00000d3, 0xe20000d4, 0xe50000d5, 0x990000d6, 0x9e0000d7,\n\t\t0x9d0000d8, 0xeb0000d9, 0xe90000da, 0xea0000db, 0x9a0000dc, 0xed0000dd, 0xe80000de, 0xe10000df,\n\t\t0x850000e0, 0xa00000e1, 0x830000e2, 0xc60000e3, 0x840000e4, 0x860000e5, 0x910000e6, 0x870000e7,\n\t\t0x8a0000e8, 0x820000e9, 0x880000ea, 0x890000eb, 0x8d0000ec, 0xa10000ed, 0x8c0000ee, 0x8b0000ef,\n\t\t0xd00000f0, 0xa40000f1, 0x950000f2, 0xa20000f3, 0x930000f4, 0xe40000f5, 0x940000f6, 0xf60000f7,\n\t\t0x9b0000f8, 0x970000f9, 0xa30000fa, 0x960000fb, 0x810000fc, 0xec0000fd, 0xe70000fe, 0x980000ff,\n\t\t0x9f000192, 0xf2002017, 0xd50020ac, 0xc4002500, 0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514,\n\t\t0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c, 0xc1002534, 0xc500253c, 0xcd002550, 0xba002551,\n\t\t0xc9002554, 0xbb002557, 0xc800255a, 0xbc00255d, 0xcc002560, 0xb9002563, 0xcb002566, 0xca002569,\n\t\t0xce00256c, 0xdf002580, 0xdc002584, 0xdb002588, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage860 is the IBM Code Page 860 encoding.\nvar CodePage860 *Charmap = &codePage860\n\nvar codePage860 = Charmap{\n\tname:          \"IBM Code Page 860\",\n\tmib:           identifier.IBM860,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa9, 0x00}}, {2, [3]byte{0xc3, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x81, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0x8a, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0xac, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x83, 0x00}}, {2, [3]byte{0xc3, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x89, 0x00}}, {2, [3]byte{0xc3, 0x80, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb5, 0x00}}, {2, [3]byte{0xc3, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc2, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xa7}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa1, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbf, 0x00}}, {2, [3]byte{0xc3, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {3, [3]byte{0xe2, 0x95, 0xa1}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa2}}, {3, [3]byte{0xe2, 0x95, 0x96}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x95}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {3, [3]byte{0xe2, 0x95, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9b}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9e}}, {3, [3]byte{0xe2, 0x95, 0x9f}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {3, [3]byte{0xe2, 0x95, 0xa7}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa8}}, {3, [3]byte{0xe2, 0x95, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa5}}, {3, [3]byte{0xe2, 0x95, 0x99}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x98}}, {3, [3]byte{0xe2, 0x95, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x93}}, {3, [3]byte{0xe2, 0x95, 0xab}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xaa}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {3, [3]byte{0xe2, 0x96, 0x8c}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x90}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xce, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xce, 0x93, 0x00}}, {2, [3]byte{0xcf, 0x80, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa3, 0x00}}, {2, [3]byte{0xcf, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {2, [3]byte{0xcf, 0x84, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa6, 0x00}}, {2, [3]byte{0xce, 0x98, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa9, 0x00}}, {2, [3]byte{0xce, 0xb4, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x9e}}, {2, [3]byte{0xcf, 0x86, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb5, 0x00}}, {3, [3]byte{0xe2, 0x88, 0xa9}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa1}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa5}}, {3, [3]byte{0xe2, 0x89, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x8c, 0xa0}}, {3, [3]byte{0xe2, 0x8c, 0xa1}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x89, 0x88}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x99}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x9a}},\n\t\t{3, [3]byte{0xe2, 0x81, 0xbf}}, {2, [3]byte{0xc2, 0xb2, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0xad0000a1, 0x9b0000a2, 0x9c0000a3, 0xa60000aa, 0xae0000ab, 0xaa0000ac, 0xf80000b0,\n\t\t0xf10000b1, 0xfd0000b2, 0xe60000b5, 0xfa0000b7, 0xa70000ba, 0xaf0000bb, 0xac0000bc, 0xab0000bd,\n\t\t0xa80000bf, 0x910000c0, 0x860000c1, 0x8f0000c2, 0x8e0000c3, 0x800000c7, 0x920000c8, 0x900000c9,\n\t\t0x890000ca, 0x980000cc, 0x8b0000cd, 0xa50000d1, 0xa90000d2, 0x9f0000d3, 0x8c0000d4, 0x990000d5,\n\t\t0x9d0000d9, 0x960000da, 0x9a0000dc, 0xe10000df, 0x850000e0, 0xa00000e1, 0x830000e2, 0x840000e3,\n\t\t0x870000e7, 0x8a0000e8, 0x820000e9, 0x880000ea, 0x8d0000ec, 0xa10000ed, 0xa40000f1, 0x950000f2,\n\t\t0xa20000f3, 0x930000f4, 0x940000f5, 0xf60000f7, 0x970000f9, 0xa30000fa, 0x810000fc, 0xe2000393,\n\t\t0xe9000398, 0xe40003a3, 0xe80003a6, 0xea0003a9, 0xe00003b1, 0xeb0003b4, 0xee0003b5, 0xe30003c0,\n\t\t0xe50003c3, 0xe70003c4, 0xed0003c6, 0xfc00207f, 0x9e0020a7, 0xf9002219, 0xfb00221a, 0xec00221e,\n\t\t0xef002229, 0xf7002248, 0xf0002261, 0xf3002264, 0xf2002265, 0xf4002320, 0xf5002321, 0xc4002500,\n\t\t0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514, 0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c,\n\t\t0xc1002534, 0xc500253c, 0xcd002550, 0xba002551, 0xd5002552, 0xd6002553, 0xc9002554, 0xb8002555,\n\t\t0xb7002556, 0xbb002557, 0xd4002558, 0xd3002559, 0xc800255a, 0xbe00255b, 0xbd00255c, 0xbc00255d,\n\t\t0xc600255e, 0xc700255f, 0xcc002560, 0xb5002561, 0xb6002562, 0xb9002563, 0xd1002564, 0xd2002565,\n\t\t0xcb002566, 0xcf002567, 0xd0002568, 0xca002569, 0xd800256a, 0xd700256b, 0xce00256c, 0xdf002580,\n\t\t0xdc002584, 0xdb002588, 0xdd00258c, 0xde002590, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage862 is the IBM Code Page 862 encoding.\nvar CodePage862 *Charmap = &codePage862\n\nvar codePage862 = Charmap{\n\tname:          \"IBM Code Page 862\",\n\tmib:           identifier.PC862LatinHebrew,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x90, 0x00}}, {2, [3]byte{0xd7, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x92, 0x00}}, {2, [3]byte{0xd7, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x94, 0x00}}, {2, [3]byte{0xd7, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x96, 0x00}}, {2, [3]byte{0xd7, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x98, 0x00}}, {2, [3]byte{0xd7, 0x99, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x9a, 0x00}}, {2, [3]byte{0xd7, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x9c, 0x00}}, {2, [3]byte{0xd7, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x9e, 0x00}}, {2, [3]byte{0xd7, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa0, 0x00}}, {2, [3]byte{0xd7, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa2, 0x00}}, {2, [3]byte{0xd7, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa4, 0x00}}, {2, [3]byte{0xd7, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa6, 0x00}}, {2, [3]byte{0xd7, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa8, 0x00}}, {2, [3]byte{0xd7, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa3, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xa7}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa1, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbf, 0x00}}, {3, [3]byte{0xe2, 0x8c, 0x90}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {3, [3]byte{0xe2, 0x95, 0xa1}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa2}}, {3, [3]byte{0xe2, 0x95, 0x96}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x95}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {3, [3]byte{0xe2, 0x95, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9b}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9e}}, {3, [3]byte{0xe2, 0x95, 0x9f}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {3, [3]byte{0xe2, 0x95, 0xa7}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa8}}, {3, [3]byte{0xe2, 0x95, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa5}}, {3, [3]byte{0xe2, 0x95, 0x99}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x98}}, {3, [3]byte{0xe2, 0x95, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x93}}, {3, [3]byte{0xe2, 0x95, 0xab}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xaa}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {3, [3]byte{0xe2, 0x96, 0x8c}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x90}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xce, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xce, 0x93, 0x00}}, {2, [3]byte{0xcf, 0x80, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa3, 0x00}}, {2, [3]byte{0xcf, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {2, [3]byte{0xcf, 0x84, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa6, 0x00}}, {2, [3]byte{0xce, 0x98, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa9, 0x00}}, {2, [3]byte{0xce, 0xb4, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x9e}}, {2, [3]byte{0xcf, 0x86, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb5, 0x00}}, {3, [3]byte{0xe2, 0x88, 0xa9}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa1}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa5}}, {3, [3]byte{0xe2, 0x89, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x8c, 0xa0}}, {3, [3]byte{0xe2, 0x8c, 0xa1}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x89, 0x88}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x99}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x9a}},\n\t\t{3, [3]byte{0xe2, 0x81, 0xbf}}, {2, [3]byte{0xc2, 0xb2, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0xad0000a1, 0x9b0000a2, 0x9c0000a3, 0x9d0000a5, 0xa60000aa, 0xae0000ab, 0xaa0000ac,\n\t\t0xf80000b0, 0xf10000b1, 0xfd0000b2, 0xe60000b5, 0xfa0000b7, 0xa70000ba, 0xaf0000bb, 0xac0000bc,\n\t\t0xab0000bd, 0xa80000bf, 0xa50000d1, 0xe10000df, 0xa00000e1, 0xa10000ed, 0xa40000f1, 0xa20000f3,\n\t\t0xf60000f7, 0xa30000fa, 0x9f000192, 0xe2000393, 0xe9000398, 0xe40003a3, 0xe80003a6, 0xea0003a9,\n\t\t0xe00003b1, 0xeb0003b4, 0xee0003b5, 0xe30003c0, 0xe50003c3, 0xe70003c4, 0xed0003c6, 0x800005d0,\n\t\t0x810005d1, 0x820005d2, 0x830005d3, 0x840005d4, 0x850005d5, 0x860005d6, 0x870005d7, 0x880005d8,\n\t\t0x890005d9, 0x8a0005da, 0x8b0005db, 0x8c0005dc, 0x8d0005dd, 0x8e0005de, 0x8f0005df, 0x900005e0,\n\t\t0x910005e1, 0x920005e2, 0x930005e3, 0x940005e4, 0x950005e5, 0x960005e6, 0x970005e7, 0x980005e8,\n\t\t0x990005e9, 0x9a0005ea, 0xfc00207f, 0x9e0020a7, 0xf9002219, 0xfb00221a, 0xec00221e, 0xef002229,\n\t\t0xf7002248, 0xf0002261, 0xf3002264, 0xf2002265, 0xa9002310, 0xf4002320, 0xf5002321, 0xc4002500,\n\t\t0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514, 0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c,\n\t\t0xc1002534, 0xc500253c, 0xcd002550, 0xba002551, 0xd5002552, 0xd6002553, 0xc9002554, 0xb8002555,\n\t\t0xb7002556, 0xbb002557, 0xd4002558, 0xd3002559, 0xc800255a, 0xbe00255b, 0xbd00255c, 0xbc00255d,\n\t\t0xc600255e, 0xc700255f, 0xcc002560, 0xb5002561, 0xb6002562, 0xb9002563, 0xd1002564, 0xd2002565,\n\t\t0xcb002566, 0xcf002567, 0xd0002568, 0xca002569, 0xd800256a, 0xd700256b, 0xce00256c, 0xdf002580,\n\t\t0xdc002584, 0xdb002588, 0xdd00258c, 0xde002590, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage863 is the IBM Code Page 863 encoding.\nvar CodePage863 *Charmap = &codePage863\n\nvar codePage863 = Charmap{\n\tname:          \"IBM Code Page 863\",\n\tmib:           identifier.IBM863,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa9, 0x00}}, {2, [3]byte{0xc3, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x97}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x89, 0x00}}, {2, [3]byte{0xc3, 0x88, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8b, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbb, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0x94, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc2, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9b, 0x00}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb3, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {3, [3]byte{0xe2, 0x8c, 0x90}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {3, [3]byte{0xe2, 0x95, 0xa1}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa2}}, {3, [3]byte{0xe2, 0x95, 0x96}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x95}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {3, [3]byte{0xe2, 0x95, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9b}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9e}}, {3, [3]byte{0xe2, 0x95, 0x9f}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {3, [3]byte{0xe2, 0x95, 0xa7}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa8}}, {3, [3]byte{0xe2, 0x95, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa5}}, {3, [3]byte{0xe2, 0x95, 0x99}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x98}}, {3, [3]byte{0xe2, 0x95, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x93}}, {3, [3]byte{0xe2, 0x95, 0xab}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xaa}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {3, [3]byte{0xe2, 0x96, 0x8c}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x90}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xce, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xce, 0x93, 0x00}}, {2, [3]byte{0xcf, 0x80, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa3, 0x00}}, {2, [3]byte{0xcf, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {2, [3]byte{0xcf, 0x84, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa6, 0x00}}, {2, [3]byte{0xce, 0x98, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa9, 0x00}}, {2, [3]byte{0xce, 0xb4, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x9e}}, {2, [3]byte{0xcf, 0x86, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb5, 0x00}}, {3, [3]byte{0xe2, 0x88, 0xa9}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa1}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa5}}, {3, [3]byte{0xe2, 0x89, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x8c, 0xa0}}, {3, [3]byte{0xe2, 0x8c, 0xa1}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x89, 0x88}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x99}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x9a}},\n\t\t{3, [3]byte{0xe2, 0x81, 0xbf}}, {2, [3]byte{0xc2, 0xb2, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0x9b0000a2, 0x9c0000a3, 0x980000a4, 0xa00000a6, 0x8f0000a7, 0xa40000a8, 0xae0000ab,\n\t\t0xaa0000ac, 0xa70000af, 0xf80000b0, 0xf10000b1, 0xfd0000b2, 0xa60000b3, 0xa10000b4, 0xe60000b5,\n\t\t0x860000b6, 0xfa0000b7, 0xa50000b8, 0xaf0000bb, 0xac0000bc, 0xab0000bd, 0xad0000be, 0x8e0000c0,\n\t\t0x840000c2, 0x800000c7, 0x910000c8, 0x900000c9, 0x920000ca, 0x940000cb, 0xa80000ce, 0x950000cf,\n\t\t0x990000d4, 0x9d0000d9, 0x9e0000db, 0x9a0000dc, 0xe10000df, 0x850000e0, 0x830000e2, 0x870000e7,\n\t\t0x8a0000e8, 0x820000e9, 0x880000ea, 0x890000eb, 0x8c0000ee, 0x8b0000ef, 0xa20000f3, 0x930000f4,\n\t\t0xf60000f7, 0x970000f9, 0xa30000fa, 0x960000fb, 0x810000fc, 0x9f000192, 0xe2000393, 0xe9000398,\n\t\t0xe40003a3, 0xe80003a6, 0xea0003a9, 0xe00003b1, 0xeb0003b4, 0xee0003b5, 0xe30003c0, 0xe50003c3,\n\t\t0xe70003c4, 0xed0003c6, 0x8d002017, 0xfc00207f, 0xf9002219, 0xfb00221a, 0xec00221e, 0xef002229,\n\t\t0xf7002248, 0xf0002261, 0xf3002264, 0xf2002265, 0xa9002310, 0xf4002320, 0xf5002321, 0xc4002500,\n\t\t0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514, 0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c,\n\t\t0xc1002534, 0xc500253c, 0xcd002550, 0xba002551, 0xd5002552, 0xd6002553, 0xc9002554, 0xb8002555,\n\t\t0xb7002556, 0xbb002557, 0xd4002558, 0xd3002559, 0xc800255a, 0xbe00255b, 0xbd00255c, 0xbc00255d,\n\t\t0xc600255e, 0xc700255f, 0xcc002560, 0xb5002561, 0xb6002562, 0xb9002563, 0xd1002564, 0xd2002565,\n\t\t0xcb002566, 0xcf002567, 0xd0002568, 0xca002569, 0xd800256a, 0xd700256b, 0xce00256c, 0xdf002580,\n\t\t0xdc002584, 0xdb002588, 0xdd00258c, 0xde002590, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage865 is the IBM Code Page 865 encoding.\nvar CodePage865 *Charmap = &codePage865\n\nvar codePage865 = Charmap{\n\tname:          \"IBM Code Page 865\",\n\tmib:           identifier.IBM865,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa9, 0x00}}, {2, [3]byte{0xc3, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa5, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xac, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x89, 0x00}}, {2, [3]byte{0xc3, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbb, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbf, 0x00}}, {2, [3]byte{0xc3, 0x96, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0x98, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xa7}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa1, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbf, 0x00}}, {3, [3]byte{0xe2, 0x8c, 0x90}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xa4, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {3, [3]byte{0xe2, 0x95, 0xa1}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa2}}, {3, [3]byte{0xe2, 0x95, 0x96}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x95}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {3, [3]byte{0xe2, 0x95, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9b}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9e}}, {3, [3]byte{0xe2, 0x95, 0x9f}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {3, [3]byte{0xe2, 0x95, 0xa7}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa8}}, {3, [3]byte{0xe2, 0x95, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa5}}, {3, [3]byte{0xe2, 0x95, 0x99}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x98}}, {3, [3]byte{0xe2, 0x95, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x93}}, {3, [3]byte{0xe2, 0x95, 0xab}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xaa}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {3, [3]byte{0xe2, 0x96, 0x8c}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x90}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xce, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xce, 0x93, 0x00}}, {2, [3]byte{0xcf, 0x80, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa3, 0x00}}, {2, [3]byte{0xcf, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {2, [3]byte{0xcf, 0x84, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa6, 0x00}}, {2, [3]byte{0xce, 0x98, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa9, 0x00}}, {2, [3]byte{0xce, 0xb4, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x9e}}, {2, [3]byte{0xcf, 0x86, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb5, 0x00}}, {3, [3]byte{0xe2, 0x88, 0xa9}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa1}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa5}}, {3, [3]byte{0xe2, 0x89, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x8c, 0xa0}}, {3, [3]byte{0xe2, 0x8c, 0xa1}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x89, 0x88}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x99}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x9a}},\n\t\t{3, [3]byte{0xe2, 0x81, 0xbf}}, {2, [3]byte{0xc2, 0xb2, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0xad0000a1, 0x9c0000a3, 0xaf0000a4, 0xa60000aa, 0xae0000ab, 0xaa0000ac, 0xf80000b0,\n\t\t0xf10000b1, 0xfd0000b2, 0xe60000b5, 0xfa0000b7, 0xa70000ba, 0xac0000bc, 0xab0000bd, 0xa80000bf,\n\t\t0x8e0000c4, 0x8f0000c5, 0x920000c6, 0x800000c7, 0x900000c9, 0xa50000d1, 0x990000d6, 0x9d0000d8,\n\t\t0x9a0000dc, 0xe10000df, 0x850000e0, 0xa00000e1, 0x830000e2, 0x840000e4, 0x860000e5, 0x910000e6,\n\t\t0x870000e7, 0x8a0000e8, 0x820000e9, 0x880000ea, 0x890000eb, 0x8d0000ec, 0xa10000ed, 0x8c0000ee,\n\t\t0x8b0000ef, 0xa40000f1, 0x950000f2, 0xa20000f3, 0x930000f4, 0x940000f6, 0xf60000f7, 0x9b0000f8,\n\t\t0x970000f9, 0xa30000fa, 0x960000fb, 0x810000fc, 0x980000ff, 0x9f000192, 0xe2000393, 0xe9000398,\n\t\t0xe40003a3, 0xe80003a6, 0xea0003a9, 0xe00003b1, 0xeb0003b4, 0xee0003b5, 0xe30003c0, 0xe50003c3,\n\t\t0xe70003c4, 0xed0003c6, 0xfc00207f, 0x9e0020a7, 0xf9002219, 0xfb00221a, 0xec00221e, 0xef002229,\n\t\t0xf7002248, 0xf0002261, 0xf3002264, 0xf2002265, 0xa9002310, 0xf4002320, 0xf5002321, 0xc4002500,\n\t\t0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514, 0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c,\n\t\t0xc1002534, 0xc500253c, 0xcd002550, 0xba002551, 0xd5002552, 0xd6002553, 0xc9002554, 0xb8002555,\n\t\t0xb7002556, 0xbb002557, 0xd4002558, 0xd3002559, 0xc800255a, 0xbe00255b, 0xbd00255c, 0xbc00255d,\n\t\t0xc600255e, 0xc700255f, 0xcc002560, 0xb5002561, 0xb6002562, 0xb9002563, 0xd1002564, 0xd2002565,\n\t\t0xcb002566, 0xcf002567, 0xd0002568, 0xca002569, 0xd800256a, 0xd700256b, 0xce00256c, 0xdf002580,\n\t\t0xdc002584, 0xdb002588, 0xdd00258c, 0xde002590, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage866 is the IBM Code Page 866 encoding.\nvar CodePage866 *Charmap = &codePage866\n\nvar codePage866 = Charmap{\n\tname:          \"IBM Code Page 866\",\n\tmib:           identifier.IBM866,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x90, 0x00}}, {2, [3]byte{0xd0, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x92, 0x00}}, {2, [3]byte{0xd0, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x94, 0x00}}, {2, [3]byte{0xd0, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x96, 0x00}}, {2, [3]byte{0xd0, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x98, 0x00}}, {2, [3]byte{0xd0, 0x99, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9a, 0x00}}, {2, [3]byte{0xd0, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9c, 0x00}}, {2, [3]byte{0xd0, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9e, 0x00}}, {2, [3]byte{0xd0, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa0, 0x00}}, {2, [3]byte{0xd0, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa2, 0x00}}, {2, [3]byte{0xd0, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa4, 0x00}}, {2, [3]byte{0xd0, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa6, 0x00}}, {2, [3]byte{0xd0, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa8, 0x00}}, {2, [3]byte{0xd0, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xaa, 0x00}}, {2, [3]byte{0xd0, 0xab, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xac, 0x00}}, {2, [3]byte{0xd0, 0xad, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xae, 0x00}}, {2, [3]byte{0xd0, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb0, 0x00}}, {2, [3]byte{0xd0, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb2, 0x00}}, {2, [3]byte{0xd0, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb4, 0x00}}, {2, [3]byte{0xd0, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb6, 0x00}}, {2, [3]byte{0xd0, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb8, 0x00}}, {2, [3]byte{0xd0, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xba, 0x00}}, {2, [3]byte{0xd0, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbc, 0x00}}, {2, [3]byte{0xd0, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbe, 0x00}}, {2, [3]byte{0xd0, 0xbf, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xa4}}, {3, [3]byte{0xe2, 0x95, 0xa1}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa2}}, {3, [3]byte{0xe2, 0x95, 0x96}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x95}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x91}}, {3, [3]byte{0xe2, 0x95, 0x97}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {3, [3]byte{0xe2, 0x95, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9b}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0xbc}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9e}}, {3, [3]byte{0xe2, 0x95, 0x9f}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9a}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa9}}, {3, [3]byte{0xe2, 0x95, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa0}}, {3, [3]byte{0xe2, 0x95, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {3, [3]byte{0xe2, 0x95, 0xa7}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa8}}, {3, [3]byte{0xe2, 0x95, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa5}}, {3, [3]byte{0xe2, 0x95, 0x99}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x98}}, {3, [3]byte{0xe2, 0x95, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x93}}, {3, [3]byte{0xe2, 0x95, 0xab}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xaa}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {3, [3]byte{0xe2, 0x96, 0x8c}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x90}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{2, [3]byte{0xd1, 0x80, 0x00}}, {2, [3]byte{0xd1, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x82, 0x00}}, {2, [3]byte{0xd1, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x84, 0x00}}, {2, [3]byte{0xd1, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x86, 0x00}}, {2, [3]byte{0xd1, 0x87, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x88, 0x00}}, {2, [3]byte{0xd1, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8a, 0x00}}, {2, [3]byte{0xd1, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8c, 0x00}}, {2, [3]byte{0xd1, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8e, 0x00}}, {2, [3]byte{0xd1, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x81, 0x00}}, {2, [3]byte{0xd1, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x84, 0x00}}, {2, [3]byte{0xd1, 0x94, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x87, 0x00}}, {2, [3]byte{0xd1, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x8e, 0x00}}, {2, [3]byte{0xd1, 0x9e, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x99}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x9a}},\n\t\t{3, [3]byte{0xe2, 0x84, 0x96}}, {2, [3]byte{0xc2, 0xa4, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xff0000a0, 0xfd0000a4, 0xf80000b0, 0xfa0000b7, 0xf0000401, 0xf2000404, 0xf4000407, 0xf600040e,\n\t\t0x80000410, 0x81000411, 0x82000412, 0x83000413, 0x84000414, 0x85000415, 0x86000416, 0x87000417,\n\t\t0x88000418, 0x89000419, 0x8a00041a, 0x8b00041b, 0x8c00041c, 0x8d00041d, 0x8e00041e, 0x8f00041f,\n\t\t0x90000420, 0x91000421, 0x92000422, 0x93000423, 0x94000424, 0x95000425, 0x96000426, 0x97000427,\n\t\t0x98000428, 0x99000429, 0x9a00042a, 0x9b00042b, 0x9c00042c, 0x9d00042d, 0x9e00042e, 0x9f00042f,\n\t\t0xa0000430, 0xa1000431, 0xa2000432, 0xa3000433, 0xa4000434, 0xa5000435, 0xa6000436, 0xa7000437,\n\t\t0xa8000438, 0xa9000439, 0xaa00043a, 0xab00043b, 0xac00043c, 0xad00043d, 0xae00043e, 0xaf00043f,\n\t\t0xe0000440, 0xe1000441, 0xe2000442, 0xe3000443, 0xe4000444, 0xe5000445, 0xe6000446, 0xe7000447,\n\t\t0xe8000448, 0xe9000449, 0xea00044a, 0xeb00044b, 0xec00044c, 0xed00044d, 0xee00044e, 0xef00044f,\n\t\t0xf1000451, 0xf3000454, 0xf5000457, 0xf700045e, 0xfc002116, 0xf9002219, 0xfb00221a, 0xc4002500,\n\t\t0xb3002502, 0xda00250c, 0xbf002510, 0xc0002514, 0xd9002518, 0xc300251c, 0xb4002524, 0xc200252c,\n\t\t0xc1002534, 0xc500253c, 0xcd002550, 0xba002551, 0xd5002552, 0xd6002553, 0xc9002554, 0xb8002555,\n\t\t0xb7002556, 0xbb002557, 0xd4002558, 0xd3002559, 0xc800255a, 0xbe00255b, 0xbd00255c, 0xbc00255d,\n\t\t0xc600255e, 0xc700255f, 0xcc002560, 0xb5002561, 0xb6002562, 0xb9002563, 0xd1002564, 0xd2002565,\n\t\t0xcb002566, 0xcf002567, 0xd0002568, 0xca002569, 0xd800256a, 0xd700256b, 0xce00256c, 0xdf002580,\n\t\t0xdc002584, 0xdb002588, 0xdd00258c, 0xde002590, 0xb0002591, 0xb1002592, 0xb2002593, 0xfe0025a0,\n\t},\n}\n\n// CodePage1047 is the IBM Code Page 1047 encoding.\nvar CodePage1047 *Charmap = &codePage1047\n\nvar codePage1047 = Charmap{\n\tname:          \"IBM Code Page 1047\",\n\tmib:           identifier.IBM1047,\n\tasciiSuperset: false,\n\tlow:           0x00,\n\treplacement:   0x3f,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9c, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x86, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x97, 0x00}}, {2, [3]byte{0xc2, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8e, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9d, 0x00}}, {2, [3]byte{0xc2, 0x85, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {2, [3]byte{0xc2, 0x87, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x92, 0x00}}, {2, [3]byte{0xc2, 0x8f, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x80, 0x00}}, {2, [3]byte{0xc2, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x82, 0x00}}, {2, [3]byte{0xc2, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x84, 0x00}}, {1, [3]byte{0x0a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x17, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x88, 0x00}}, {2, [3]byte{0xc2, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8a, 0x00}}, {2, [3]byte{0xc2, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8c, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x90, 0x00}}, {2, [3]byte{0xc2, 0x91, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {2, [3]byte{0xc2, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x94, 0x00}}, {2, [3]byte{0xc2, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x96, 0x00}}, {1, [3]byte{0x04, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x98, 0x00}}, {2, [3]byte{0xc2, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9a, 0x00}}, {2, [3]byte{0xc2, 0x9b, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9e, 0x00}}, {1, [3]byte{0x1a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa7, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {1, [3]byte{0x2e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x28, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2b, 0x00, 0x00}}, {1, [3]byte{0x7c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{1, [3]byte{0x21, 0x00, 0x00}}, {1, [3]byte{0x24, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3b, 0x00, 0x00}}, {1, [3]byte{0x5e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2d, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x83, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {1, [3]byte{0x2c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x25, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {1, [3]byte{0x60, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3d, 0x00, 0x00}}, {1, [3]byte{0x22, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb0, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {1, [3]byte{0x6a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6b, 0x00, 0x00}}, {1, [3]byte{0x6c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6d, 0x00, 0x00}}, {1, [3]byte{0x6e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6f, 0x00, 0x00}}, {1, [3]byte{0x70, 0x00, 0x00}},\n\t\t{1, [3]byte{0x71, 0x00, 0x00}}, {1, [3]byte{0x72, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc2, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {1, [3]byte{0x7e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x73, 0x00, 0x00}}, {1, [3]byte{0x74, 0x00, 0x00}},\n\t\t{1, [3]byte{0x75, 0x00, 0x00}}, {1, [3]byte{0x76, 0x00, 0x00}},\n\t\t{1, [3]byte{0x77, 0x00, 0x00}}, {1, [3]byte{0x78, 0x00, 0x00}},\n\t\t{1, [3]byte{0x79, 0x00, 0x00}}, {1, [3]byte{0x7a, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa1, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x90, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9e, 0x00}}, {2, [3]byte{0xc2, 0xae, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa5, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa9, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbd, 0x00}}, {2, [3]byte{0xc2, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9d, 0x00}}, {2, [3]byte{0xc2, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaf, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{1, [3]byte{0x7b, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xad, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{1, [3]byte{0x7d, 0x00, 0x00}}, {1, [3]byte{0x4a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4b, 0x00, 0x00}}, {1, [3]byte{0x4c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4d, 0x00, 0x00}}, {1, [3]byte{0x4e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4f, 0x00, 0x00}}, {1, [3]byte{0x50, 0x00, 0x00}},\n\t\t{1, [3]byte{0x51, 0x00, 0x00}}, {1, [3]byte{0x52, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb9, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{1, [3]byte{0x53, 0x00, 0x00}}, {1, [3]byte{0x54, 0x00, 0x00}},\n\t\t{1, [3]byte{0x55, 0x00, 0x00}}, {1, [3]byte{0x56, 0x00, 0x00}},\n\t\t{1, [3]byte{0x57, 0x00, 0x00}}, {1, [3]byte{0x58, 0x00, 0x00}},\n\t\t{1, [3]byte{0x59, 0x00, 0x00}}, {1, [3]byte{0x5a, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0x94, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x93, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc2, 0x9f, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x37000004, 0x2d000005, 0x2e000006, 0x2f000007,\n\t\t0x16000008, 0x05000009, 0x2500000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x3c000014, 0x3d000015, 0x32000016, 0x26000017,\n\t\t0x18000018, 0x19000019, 0x3f00001a, 0x2700001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x40000020, 0x5a000021, 0x7f000022, 0x7b000023, 0x5b000024, 0x6c000025, 0x50000026, 0x7d000027,\n\t\t0x4d000028, 0x5d000029, 0x5c00002a, 0x4e00002b, 0x6b00002c, 0x6000002d, 0x4b00002e, 0x6100002f,\n\t\t0xf0000030, 0xf1000031, 0xf2000032, 0xf3000033, 0xf4000034, 0xf5000035, 0xf6000036, 0xf7000037,\n\t\t0xf8000038, 0xf9000039, 0x7a00003a, 0x5e00003b, 0x4c00003c, 0x7e00003d, 0x6e00003e, 0x6f00003f,\n\t\t0x7c000040, 0xc1000041, 0xc2000042, 0xc3000043, 0xc4000044, 0xc5000045, 0xc6000046, 0xc7000047,\n\t\t0xc8000048, 0xc9000049, 0xd100004a, 0xd200004b, 0xd300004c, 0xd400004d, 0xd500004e, 0xd600004f,\n\t\t0xd7000050, 0xd8000051, 0xd9000052, 0xe2000053, 0xe3000054, 0xe4000055, 0xe5000056, 0xe6000057,\n\t\t0xe7000058, 0xe8000059, 0xe900005a, 0xad00005b, 0xe000005c, 0xbd00005d, 0x5f00005e, 0x6d00005f,\n\t\t0x79000060, 0x81000061, 0x82000062, 0x83000063, 0x84000064, 0x85000065, 0x86000066, 0x87000067,\n\t\t0x88000068, 0x89000069, 0x9100006a, 0x9200006b, 0x9300006c, 0x9400006d, 0x9500006e, 0x9600006f,\n\t\t0x97000070, 0x98000071, 0x99000072, 0xa2000073, 0xa3000074, 0xa4000075, 0xa5000076, 0xa6000077,\n\t\t0xa7000078, 0xa8000079, 0xa900007a, 0xc000007b, 0x4f00007c, 0xd000007d, 0xa100007e, 0x0700007f,\n\t\t0x20000080, 0x21000081, 0x22000082, 0x23000083, 0x24000084, 0x15000085, 0x06000086, 0x17000087,\n\t\t0x28000088, 0x29000089, 0x2a00008a, 0x2b00008b, 0x2c00008c, 0x0900008d, 0x0a00008e, 0x1b00008f,\n\t\t0x30000090, 0x31000091, 0x1a000092, 0x33000093, 0x34000094, 0x35000095, 0x36000096, 0x08000097,\n\t\t0x38000098, 0x39000099, 0x3a00009a, 0x3b00009b, 0x0400009c, 0x1400009d, 0x3e00009e, 0xff00009f,\n\t\t0x410000a0, 0xaa0000a1, 0x4a0000a2, 0xb10000a3, 0x9f0000a4, 0xb20000a5, 0x6a0000a6, 0xb50000a7,\n\t\t0xbb0000a8, 0xb40000a9, 0x9a0000aa, 0x8a0000ab, 0xb00000ac, 0xca0000ad, 0xaf0000ae, 0xbc0000af,\n\t\t0x900000b0, 0x8f0000b1, 0xea0000b2, 0xfa0000b3, 0xbe0000b4, 0xa00000b5, 0xb60000b6, 0xb30000b7,\n\t\t0x9d0000b8, 0xda0000b9, 0x9b0000ba, 0x8b0000bb, 0xb70000bc, 0xb80000bd, 0xb90000be, 0xab0000bf,\n\t\t0x640000c0, 0x650000c1, 0x620000c2, 0x660000c3, 0x630000c4, 0x670000c5, 0x9e0000c6, 0x680000c7,\n\t\t0x740000c8, 0x710000c9, 0x720000ca, 0x730000cb, 0x780000cc, 0x750000cd, 0x760000ce, 0x770000cf,\n\t\t0xac0000d0, 0x690000d1, 0xed0000d2, 0xee0000d3, 0xeb0000d4, 0xef0000d5, 0xec0000d6, 0xbf0000d7,\n\t\t0x800000d8, 0xfd0000d9, 0xfe0000da, 0xfb0000db, 0xfc0000dc, 0xba0000dd, 0xae0000de, 0x590000df,\n\t\t0x440000e0, 0x450000e1, 0x420000e2, 0x460000e3, 0x430000e4, 0x470000e5, 0x9c0000e6, 0x480000e7,\n\t\t0x540000e8, 0x510000e9, 0x520000ea, 0x530000eb, 0x580000ec, 0x550000ed, 0x560000ee, 0x570000ef,\n\t\t0x8c0000f0, 0x490000f1, 0xcd0000f2, 0xce0000f3, 0xcb0000f4, 0xcf0000f5, 0xcc0000f6, 0xe10000f7,\n\t\t0x700000f8, 0xdd0000f9, 0xde0000fa, 0xdb0000fb, 0xdc0000fc, 0x8d0000fd, 0x8e0000fe, 0xdf0000ff,\n\t},\n}\n\n// CodePage1140 is the IBM Code Page 1140 encoding.\nvar CodePage1140 *Charmap = &codePage1140\n\nvar codePage1140 = Charmap{\n\tname:          \"IBM Code Page 1140\",\n\tmib:           identifier.IBM01140,\n\tasciiSuperset: false,\n\tlow:           0x00,\n\treplacement:   0x3f,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9c, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x86, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x97, 0x00}}, {2, [3]byte{0xc2, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8e, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9d, 0x00}}, {2, [3]byte{0xc2, 0x85, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {2, [3]byte{0xc2, 0x87, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x92, 0x00}}, {2, [3]byte{0xc2, 0x8f, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x80, 0x00}}, {2, [3]byte{0xc2, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x82, 0x00}}, {2, [3]byte{0xc2, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x84, 0x00}}, {1, [3]byte{0x0a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x17, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x88, 0x00}}, {2, [3]byte{0xc2, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8a, 0x00}}, {2, [3]byte{0xc2, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8c, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x90, 0x00}}, {2, [3]byte{0xc2, 0x91, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {2, [3]byte{0xc2, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x94, 0x00}}, {2, [3]byte{0xc2, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x96, 0x00}}, {1, [3]byte{0x04, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x98, 0x00}}, {2, [3]byte{0xc2, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9a, 0x00}}, {2, [3]byte{0xc2, 0x9b, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9e, 0x00}}, {1, [3]byte{0x1a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {2, [3]byte{0xc2, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa7, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {1, [3]byte{0x2e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x28, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2b, 0x00, 0x00}}, {1, [3]byte{0x7c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{1, [3]byte{0x21, 0x00, 0x00}}, {1, [3]byte{0x24, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3b, 0x00, 0x00}}, {2, [3]byte{0xc2, 0xac, 0x00}},\n\t\t{1, [3]byte{0x2d, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x83, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {1, [3]byte{0x2c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x25, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {1, [3]byte{0x60, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3d, 0x00, 0x00}}, {1, [3]byte{0x22, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xab, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb0, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {1, [3]byte{0x6a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6b, 0x00, 0x00}}, {1, [3]byte{0x6c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6d, 0x00, 0x00}}, {1, [3]byte{0x6e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6f, 0x00, 0x00}}, {1, [3]byte{0x70, 0x00, 0x00}},\n\t\t{1, [3]byte{0x71, 0x00, 0x00}}, {1, [3]byte{0x72, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {3, [3]byte{0xe2, 0x82, 0xac}},\n\t\t{2, [3]byte{0xc2, 0xb5, 0x00}}, {1, [3]byte{0x7e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x73, 0x00, 0x00}}, {1, [3]byte{0x74, 0x00, 0x00}},\n\t\t{1, [3]byte{0x75, 0x00, 0x00}}, {1, [3]byte{0x76, 0x00, 0x00}},\n\t\t{1, [3]byte{0x77, 0x00, 0x00}}, {1, [3]byte{0x78, 0x00, 0x00}},\n\t\t{1, [3]byte{0x79, 0x00, 0x00}}, {1, [3]byte{0x7a, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa1, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x90, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9e, 0x00}}, {2, [3]byte{0xc2, 0xae, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa5, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa9, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbd, 0x00}}, {2, [3]byte{0xc2, 0xbe, 0x00}},\n\t\t{1, [3]byte{0x5b, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaf, 0x00}}, {2, [3]byte{0xc2, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{1, [3]byte{0x7b, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xad, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{1, [3]byte{0x7d, 0x00, 0x00}}, {1, [3]byte{0x4a, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4b, 0x00, 0x00}}, {1, [3]byte{0x4c, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4d, 0x00, 0x00}}, {1, [3]byte{0x4e, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4f, 0x00, 0x00}}, {1, [3]byte{0x50, 0x00, 0x00}},\n\t\t{1, [3]byte{0x51, 0x00, 0x00}}, {1, [3]byte{0x52, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb9, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{1, [3]byte{0x53, 0x00, 0x00}}, {1, [3]byte{0x54, 0x00, 0x00}},\n\t\t{1, [3]byte{0x55, 0x00, 0x00}}, {1, [3]byte{0x56, 0x00, 0x00}},\n\t\t{1, [3]byte{0x57, 0x00, 0x00}}, {1, [3]byte{0x58, 0x00, 0x00}},\n\t\t{1, [3]byte{0x59, 0x00, 0x00}}, {1, [3]byte{0x5a, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0x94, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x93, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb3, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc2, 0x9f, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x37000004, 0x2d000005, 0x2e000006, 0x2f000007,\n\t\t0x16000008, 0x05000009, 0x2500000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x3c000014, 0x3d000015, 0x32000016, 0x26000017,\n\t\t0x18000018, 0x19000019, 0x3f00001a, 0x2700001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x40000020, 0x5a000021, 0x7f000022, 0x7b000023, 0x5b000024, 0x6c000025, 0x50000026, 0x7d000027,\n\t\t0x4d000028, 0x5d000029, 0x5c00002a, 0x4e00002b, 0x6b00002c, 0x6000002d, 0x4b00002e, 0x6100002f,\n\t\t0xf0000030, 0xf1000031, 0xf2000032, 0xf3000033, 0xf4000034, 0xf5000035, 0xf6000036, 0xf7000037,\n\t\t0xf8000038, 0xf9000039, 0x7a00003a, 0x5e00003b, 0x4c00003c, 0x7e00003d, 0x6e00003e, 0x6f00003f,\n\t\t0x7c000040, 0xc1000041, 0xc2000042, 0xc3000043, 0xc4000044, 0xc5000045, 0xc6000046, 0xc7000047,\n\t\t0xc8000048, 0xc9000049, 0xd100004a, 0xd200004b, 0xd300004c, 0xd400004d, 0xd500004e, 0xd600004f,\n\t\t0xd7000050, 0xd8000051, 0xd9000052, 0xe2000053, 0xe3000054, 0xe4000055, 0xe5000056, 0xe6000057,\n\t\t0xe7000058, 0xe8000059, 0xe900005a, 0xba00005b, 0xe000005c, 0xbb00005d, 0xb000005e, 0x6d00005f,\n\t\t0x79000060, 0x81000061, 0x82000062, 0x83000063, 0x84000064, 0x85000065, 0x86000066, 0x87000067,\n\t\t0x88000068, 0x89000069, 0x9100006a, 0x9200006b, 0x9300006c, 0x9400006d, 0x9500006e, 0x9600006f,\n\t\t0x97000070, 0x98000071, 0x99000072, 0xa2000073, 0xa3000074, 0xa4000075, 0xa5000076, 0xa6000077,\n\t\t0xa7000078, 0xa8000079, 0xa900007a, 0xc000007b, 0x4f00007c, 0xd000007d, 0xa100007e, 0x0700007f,\n\t\t0x20000080, 0x21000081, 0x22000082, 0x23000083, 0x24000084, 0x15000085, 0x06000086, 0x17000087,\n\t\t0x28000088, 0x29000089, 0x2a00008a, 0x2b00008b, 0x2c00008c, 0x0900008d, 0x0a00008e, 0x1b00008f,\n\t\t0x30000090, 0x31000091, 0x1a000092, 0x33000093, 0x34000094, 0x35000095, 0x36000096, 0x08000097,\n\t\t0x38000098, 0x39000099, 0x3a00009a, 0x3b00009b, 0x0400009c, 0x1400009d, 0x3e00009e, 0xff00009f,\n\t\t0x410000a0, 0xaa0000a1, 0x4a0000a2, 0xb10000a3, 0xb20000a5, 0x6a0000a6, 0xb50000a7, 0xbd0000a8,\n\t\t0xb40000a9, 0x9a0000aa, 0x8a0000ab, 0x5f0000ac, 0xca0000ad, 0xaf0000ae, 0xbc0000af, 0x900000b0,\n\t\t0x8f0000b1, 0xea0000b2, 0xfa0000b3, 0xbe0000b4, 0xa00000b5, 0xb60000b6, 0xb30000b7, 0x9d0000b8,\n\t\t0xda0000b9, 0x9b0000ba, 0x8b0000bb, 0xb70000bc, 0xb80000bd, 0xb90000be, 0xab0000bf, 0x640000c0,\n\t\t0x650000c1, 0x620000c2, 0x660000c3, 0x630000c4, 0x670000c5, 0x9e0000c6, 0x680000c7, 0x740000c8,\n\t\t0x710000c9, 0x720000ca, 0x730000cb, 0x780000cc, 0x750000cd, 0x760000ce, 0x770000cf, 0xac0000d0,\n\t\t0x690000d1, 0xed0000d2, 0xee0000d3, 0xeb0000d4, 0xef0000d5, 0xec0000d6, 0xbf0000d7, 0x800000d8,\n\t\t0xfd0000d9, 0xfe0000da, 0xfb0000db, 0xfc0000dc, 0xad0000dd, 0xae0000de, 0x590000df, 0x440000e0,\n\t\t0x450000e1, 0x420000e2, 0x460000e3, 0x430000e4, 0x470000e5, 0x9c0000e6, 0x480000e7, 0x540000e8,\n\t\t0x510000e9, 0x520000ea, 0x530000eb, 0x580000ec, 0x550000ed, 0x560000ee, 0x570000ef, 0x8c0000f0,\n\t\t0x490000f1, 0xcd0000f2, 0xce0000f3, 0xcb0000f4, 0xcf0000f5, 0xcc0000f6, 0xe10000f7, 0x700000f8,\n\t\t0xdd0000f9, 0xde0000fa, 0xdb0000fb, 0xdc0000fc, 0x8d0000fd, 0x8e0000fe, 0xdf0000ff, 0x9f0020ac,\n\t},\n}\n\n// ISO8859_1 is the ISO 8859-1 encoding.\nvar ISO8859_1 *Charmap = &iso8859_1\n\nvar iso8859_1 = Charmap{\n\tname:          \"ISO 8859-1\",\n\tmib:           identifier.ISOLatin1,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x80, 0x00}}, {2, [3]byte{0xc2, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x82, 0x00}}, {2, [3]byte{0xc2, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x84, 0x00}}, {2, [3]byte{0xc2, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x86, 0x00}}, {2, [3]byte{0xc2, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x88, 0x00}}, {2, [3]byte{0xc2, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8a, 0x00}}, {2, [3]byte{0xc2, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8c, 0x00}}, {2, [3]byte{0xc2, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8e, 0x00}}, {2, [3]byte{0xc2, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x90, 0x00}}, {2, [3]byte{0xc2, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x92, 0x00}}, {2, [3]byte{0xc2, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x94, 0x00}}, {2, [3]byte{0xc2, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x96, 0x00}}, {2, [3]byte{0xc2, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x98, 0x00}}, {2, [3]byte{0xc2, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9a, 0x00}}, {2, [3]byte{0xc2, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9c, 0x00}}, {2, [3]byte{0xc2, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9e, 0x00}}, {2, [3]byte{0xc2, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xba, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x90, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x92, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb0, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbe, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0x80000080, 0x81000081, 0x82000082, 0x83000083, 0x84000084, 0x85000085, 0x86000086, 0x87000087,\n\t\t0x88000088, 0x89000089, 0x8a00008a, 0x8b00008b, 0x8c00008c, 0x8d00008d, 0x8e00008e, 0x8f00008f,\n\t\t0x90000090, 0x91000091, 0x92000092, 0x93000093, 0x94000094, 0x95000095, 0x96000096, 0x97000097,\n\t\t0x98000098, 0x99000099, 0x9a00009a, 0x9b00009b, 0x9c00009c, 0x9d00009d, 0x9e00009e, 0x9f00009f,\n\t\t0xa00000a0, 0xa10000a1, 0xa20000a2, 0xa30000a3, 0xa40000a4, 0xa50000a5, 0xa60000a6, 0xa70000a7,\n\t\t0xa80000a8, 0xa90000a9, 0xaa0000aa, 0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xaf0000af,\n\t\t0xb00000b0, 0xb10000b1, 0xb20000b2, 0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7,\n\t\t0xb80000b8, 0xb90000b9, 0xba0000ba, 0xbb0000bb, 0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xbf0000bf,\n\t\t0xc00000c0, 0xc10000c1, 0xc20000c2, 0xc30000c3, 0xc40000c4, 0xc50000c5, 0xc60000c6, 0xc70000c7,\n\t\t0xc80000c8, 0xc90000c9, 0xca0000ca, 0xcb0000cb, 0xcc0000cc, 0xcd0000cd, 0xce0000ce, 0xcf0000cf,\n\t\t0xd00000d0, 0xd10000d1, 0xd20000d2, 0xd30000d3, 0xd40000d4, 0xd50000d5, 0xd60000d6, 0xd70000d7,\n\t\t0xd80000d8, 0xd90000d9, 0xda0000da, 0xdb0000db, 0xdc0000dc, 0xdd0000dd, 0xde0000de, 0xdf0000df,\n\t\t0xe00000e0, 0xe10000e1, 0xe20000e2, 0xe30000e3, 0xe40000e4, 0xe50000e5, 0xe60000e6, 0xe70000e7,\n\t\t0xe80000e8, 0xe90000e9, 0xea0000ea, 0xeb0000eb, 0xec0000ec, 0xed0000ed, 0xee0000ee, 0xef0000ef,\n\t\t0xf00000f0, 0xf10000f1, 0xf20000f2, 0xf30000f3, 0xf40000f4, 0xf50000f5, 0xf60000f6, 0xf70000f7,\n\t\t0xf80000f8, 0xf90000f9, 0xfa0000fa, 0xfb0000fb, 0xfc0000fc, 0xfd0000fd, 0xfe0000fe, 0xff0000ff,\n\t},\n}\n\n// ISO8859_2 is the ISO 8859-2 encoding.\nvar ISO8859_2 *Charmap = &iso8859_2\n\nvar iso8859_2 = Charmap{\n\tname:          \"ISO 8859-2\",\n\tmib:           identifier.ISOLatin2,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc4, 0x84, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x98, 0x00}}, {2, [3]byte{0xc5, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc4, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9a, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc5, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9e, 0x00}}, {2, [3]byte{0xc5, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb9, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {2, [3]byte{0xc5, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc4, 0x85, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x9b, 0x00}}, {2, [3]byte{0xc5, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc4, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9b, 0x00}}, {2, [3]byte{0xcb, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc5, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9f, 0x00}}, {2, [3]byte{0xc5, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xba, 0x00}}, {2, [3]byte{0xcb, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbe, 0x00}}, {2, [3]byte{0xc5, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc4, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc4, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc4, 0x8e, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x90, 0x00}}, {2, [3]byte{0xc5, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x87, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc5, 0x90, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x98, 0x00}}, {2, [3]byte{0xc5, 0xae, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc5, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x95, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc4, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc4, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x99, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9b, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc4, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x91, 0x00}}, {2, [3]byte{0xc5, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x88, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc5, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x99, 0x00}}, {2, [3]byte{0xc5, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc5, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa3, 0x00}}, {2, [3]byte{0xcb, 0x99, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa40000a4, 0xa70000a7, 0xa80000a8, 0xad0000ad, 0xb00000b0, 0xb40000b4, 0xb80000b8,\n\t\t0xc10000c1, 0xc20000c2, 0xc40000c4, 0xc70000c7, 0xc90000c9, 0xcb0000cb, 0xcd0000cd, 0xce0000ce,\n\t\t0xd30000d3, 0xd40000d4, 0xd60000d6, 0xd70000d7, 0xda0000da, 0xdc0000dc, 0xdd0000dd, 0xdf0000df,\n\t\t0xe10000e1, 0xe20000e2, 0xe40000e4, 0xe70000e7, 0xe90000e9, 0xeb0000eb, 0xed0000ed, 0xee0000ee,\n\t\t0xf30000f3, 0xf40000f4, 0xf60000f6, 0xf70000f7, 0xfa0000fa, 0xfc0000fc, 0xfd0000fd, 0xc3000102,\n\t\t0xe3000103, 0xa1000104, 0xb1000105, 0xc6000106, 0xe6000107, 0xc800010c, 0xe800010d, 0xcf00010e,\n\t\t0xef00010f, 0xd0000110, 0xf0000111, 0xca000118, 0xea000119, 0xcc00011a, 0xec00011b, 0xc5000139,\n\t\t0xe500013a, 0xa500013d, 0xb500013e, 0xa3000141, 0xb3000142, 0xd1000143, 0xf1000144, 0xd2000147,\n\t\t0xf2000148, 0xd5000150, 0xf5000151, 0xc0000154, 0xe0000155, 0xd8000158, 0xf8000159, 0xa600015a,\n\t\t0xb600015b, 0xaa00015e, 0xba00015f, 0xa9000160, 0xb9000161, 0xde000162, 0xfe000163, 0xab000164,\n\t\t0xbb000165, 0xd900016e, 0xf900016f, 0xdb000170, 0xfb000171, 0xac000179, 0xbc00017a, 0xaf00017b,\n\t\t0xbf00017c, 0xae00017d, 0xbe00017e, 0xb70002c7, 0xa20002d8, 0xff0002d9, 0xb20002db, 0xbd0002dd,\n\t\t0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd,\n\t\t0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd,\n\t\t0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd,\n\t\t0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd, 0xbd0002dd,\n\t},\n}\n\n// ISO8859_3 is the ISO 8859-3 encoding.\nvar ISO8859_3 *Charmap = &iso8859_3\n\nvar iso8859_3 = Charmap{\n\tname:          \"ISO 8859-3\",\n\tmib:           identifier.ISOLatin3,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc4, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x98, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc4, 0xa4, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc4, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9e, 0x00}}, {2, [3]byte{0xc4, 0x9e, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xc5, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc4, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xa5, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc4, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9f, 0x00}}, {2, [3]byte{0xc4, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xb5, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xc5, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc4, 0x8a, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x92, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc4, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc5, 0xac, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc4, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x89, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc4, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9d, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc5, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9d, 0x00}}, {2, [3]byte{0xcb, 0x99, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa30000a3, 0xa40000a4, 0xa70000a7, 0xa80000a8, 0xad0000ad, 0xb00000b0, 0xb20000b2,\n\t\t0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb70000b7, 0xb80000b8, 0xbd0000bd, 0xc00000c0, 0xc10000c1,\n\t\t0xc20000c2, 0xc40000c4, 0xc70000c7, 0xc80000c8, 0xc90000c9, 0xca0000ca, 0xcb0000cb, 0xcc0000cc,\n\t\t0xcd0000cd, 0xce0000ce, 0xcf0000cf, 0xd10000d1, 0xd20000d2, 0xd30000d3, 0xd40000d4, 0xd60000d6,\n\t\t0xd70000d7, 0xd90000d9, 0xda0000da, 0xdb0000db, 0xdc0000dc, 0xdf0000df, 0xe00000e0, 0xe10000e1,\n\t\t0xe20000e2, 0xe40000e4, 0xe70000e7, 0xe80000e8, 0xe90000e9, 0xea0000ea, 0xeb0000eb, 0xec0000ec,\n\t\t0xed0000ed, 0xee0000ee, 0xef0000ef, 0xf10000f1, 0xf20000f2, 0xf30000f3, 0xf40000f4, 0xf60000f6,\n\t\t0xf70000f7, 0xf90000f9, 0xfa0000fa, 0xfb0000fb, 0xfc0000fc, 0xc6000108, 0xe6000109, 0xc500010a,\n\t\t0xe500010b, 0xd800011c, 0xf800011d, 0xab00011e, 0xbb00011f, 0xd5000120, 0xf5000121, 0xa6000124,\n\t\t0xb6000125, 0xa1000126, 0xb1000127, 0xa9000130, 0xb9000131, 0xac000134, 0xbc000135, 0xde00015c,\n\t\t0xfe00015d, 0xaa00015e, 0xba00015f, 0xdd00016c, 0xfd00016d, 0xaf00017b, 0xbf00017c, 0xa20002d8,\n\t\t0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9,\n\t\t0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9,\n\t\t0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9,\n\t\t0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9,\n\t\t0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9, 0xff0002d9,\n\t},\n}\n\n// ISO8859_4 is the ISO 8859-4 encoding.\nvar ISO8859_4 *Charmap = &iso8859_4\n\nvar iso8859_4 = Charmap{\n\tname:          \"ISO 8859-4\",\n\tmib:           identifier.ISOLatin4,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc4, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xb8, 0x00}}, {2, [3]byte{0xc5, 0x96, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc4, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xbb, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc5, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x92, 0x00}}, {2, [3]byte{0xc4, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc4, 0x85, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x9b, 0x00}}, {2, [3]byte{0xc5, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc4, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xbc, 0x00}}, {2, [3]byte{0xcb, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc5, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x93, 0x00}}, {2, [3]byte{0xc4, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa7, 0x00}}, {2, [3]byte{0xc5, 0x8a, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbe, 0x00}}, {2, [3]byte{0xc5, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc4, 0xae, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc4, 0xaa, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x90, 0x00}}, {2, [3]byte{0xc5, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x8c, 0x00}}, {2, [3]byte{0xc4, 0xb6, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc5, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc5, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x81, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc4, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x99, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x97, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc4, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x91, 0x00}}, {2, [3]byte{0xc5, 0x86, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x8d, 0x00}}, {2, [3]byte{0xc4, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc5, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc5, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xab, 0x00}}, {2, [3]byte{0xcb, 0x99, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa40000a4, 0xa70000a7, 0xa80000a8, 0xad0000ad, 0xaf0000af, 0xb00000b0, 0xb40000b4,\n\t\t0xb80000b8, 0xc10000c1, 0xc20000c2, 0xc30000c3, 0xc40000c4, 0xc50000c5, 0xc60000c6, 0xc90000c9,\n\t\t0xcb0000cb, 0xcd0000cd, 0xce0000ce, 0xd40000d4, 0xd50000d5, 0xd60000d6, 0xd70000d7, 0xd80000d8,\n\t\t0xda0000da, 0xdb0000db, 0xdc0000dc, 0xdf0000df, 0xe10000e1, 0xe20000e2, 0xe30000e3, 0xe40000e4,\n\t\t0xe50000e5, 0xe60000e6, 0xe90000e9, 0xeb0000eb, 0xed0000ed, 0xee0000ee, 0xf40000f4, 0xf50000f5,\n\t\t0xf60000f6, 0xf70000f7, 0xf80000f8, 0xfa0000fa, 0xfb0000fb, 0xfc0000fc, 0xc0000100, 0xe0000101,\n\t\t0xa1000104, 0xb1000105, 0xc800010c, 0xe800010d, 0xd0000110, 0xf0000111, 0xaa000112, 0xba000113,\n\t\t0xcc000116, 0xec000117, 0xca000118, 0xea000119, 0xab000122, 0xbb000123, 0xa5000128, 0xb5000129,\n\t\t0xcf00012a, 0xef00012b, 0xc700012e, 0xe700012f, 0xd3000136, 0xf3000137, 0xa2000138, 0xa600013b,\n\t\t0xb600013c, 0xd1000145, 0xf1000146, 0xbd00014a, 0xbf00014b, 0xd200014c, 0xf200014d, 0xa3000156,\n\t\t0xb3000157, 0xa9000160, 0xb9000161, 0xac000166, 0xbc000167, 0xdd000168, 0xfd000169, 0xde00016a,\n\t\t0xfe00016b, 0xd9000172, 0xf9000173, 0xae00017d, 0xbe00017e, 0xb70002c7, 0xff0002d9, 0xb20002db,\n\t\t0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db,\n\t\t0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db,\n\t\t0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db,\n\t\t0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db, 0xb20002db,\n\t},\n}\n\n// ISO8859_5 is the ISO 8859-5 encoding.\nvar ISO8859_5 *Charmap = &iso8859_5\n\nvar iso8859_5 = Charmap{\n\tname:          \"ISO 8859-5\",\n\tmib:           identifier.ISOLatinCyrillic,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xd0, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x82, 0x00}}, {2, [3]byte{0xd0, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x84, 0x00}}, {2, [3]byte{0xd0, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x86, 0x00}}, {2, [3]byte{0xd0, 0x87, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x88, 0x00}}, {2, [3]byte{0xd0, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x8a, 0x00}}, {2, [3]byte{0xd0, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x8c, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x8e, 0x00}}, {2, [3]byte{0xd0, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x90, 0x00}}, {2, [3]byte{0xd0, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x92, 0x00}}, {2, [3]byte{0xd0, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x94, 0x00}}, {2, [3]byte{0xd0, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x96, 0x00}}, {2, [3]byte{0xd0, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x98, 0x00}}, {2, [3]byte{0xd0, 0x99, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9a, 0x00}}, {2, [3]byte{0xd0, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9c, 0x00}}, {2, [3]byte{0xd0, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9e, 0x00}}, {2, [3]byte{0xd0, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa0, 0x00}}, {2, [3]byte{0xd0, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa2, 0x00}}, {2, [3]byte{0xd0, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa4, 0x00}}, {2, [3]byte{0xd0, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa6, 0x00}}, {2, [3]byte{0xd0, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa8, 0x00}}, {2, [3]byte{0xd0, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xaa, 0x00}}, {2, [3]byte{0xd0, 0xab, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xac, 0x00}}, {2, [3]byte{0xd0, 0xad, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xae, 0x00}}, {2, [3]byte{0xd0, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb0, 0x00}}, {2, [3]byte{0xd0, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb2, 0x00}}, {2, [3]byte{0xd0, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb4, 0x00}}, {2, [3]byte{0xd0, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb6, 0x00}}, {2, [3]byte{0xd0, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb8, 0x00}}, {2, [3]byte{0xd0, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xba, 0x00}}, {2, [3]byte{0xd0, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbc, 0x00}}, {2, [3]byte{0xd0, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbe, 0x00}}, {2, [3]byte{0xd0, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x80, 0x00}}, {2, [3]byte{0xd1, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x82, 0x00}}, {2, [3]byte{0xd1, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x84, 0x00}}, {2, [3]byte{0xd1, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x86, 0x00}}, {2, [3]byte{0xd1, 0x87, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x88, 0x00}}, {2, [3]byte{0xd1, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8a, 0x00}}, {2, [3]byte{0xd1, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8c, 0x00}}, {2, [3]byte{0xd1, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8e, 0x00}}, {2, [3]byte{0xd1, 0x8f, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x84, 0x96}}, {2, [3]byte{0xd1, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x92, 0x00}}, {2, [3]byte{0xd1, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x94, 0x00}}, {2, [3]byte{0xd1, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x96, 0x00}}, {2, [3]byte{0xd1, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x98, 0x00}}, {2, [3]byte{0xd1, 0x99, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9a, 0x00}}, {2, [3]byte{0xd1, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9c, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9e, 0x00}}, {2, [3]byte{0xd1, 0x9f, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xfd0000a7, 0xad0000ad, 0xa1000401, 0xa2000402, 0xa3000403, 0xa4000404, 0xa5000405,\n\t\t0xa6000406, 0xa7000407, 0xa8000408, 0xa9000409, 0xaa00040a, 0xab00040b, 0xac00040c, 0xae00040e,\n\t\t0xaf00040f, 0xb0000410, 0xb1000411, 0xb2000412, 0xb3000413, 0xb4000414, 0xb5000415, 0xb6000416,\n\t\t0xb7000417, 0xb8000418, 0xb9000419, 0xba00041a, 0xbb00041b, 0xbc00041c, 0xbd00041d, 0xbe00041e,\n\t\t0xbf00041f, 0xc0000420, 0xc1000421, 0xc2000422, 0xc3000423, 0xc4000424, 0xc5000425, 0xc6000426,\n\t\t0xc7000427, 0xc8000428, 0xc9000429, 0xca00042a, 0xcb00042b, 0xcc00042c, 0xcd00042d, 0xce00042e,\n\t\t0xcf00042f, 0xd0000430, 0xd1000431, 0xd2000432, 0xd3000433, 0xd4000434, 0xd5000435, 0xd6000436,\n\t\t0xd7000437, 0xd8000438, 0xd9000439, 0xda00043a, 0xdb00043b, 0xdc00043c, 0xdd00043d, 0xde00043e,\n\t\t0xdf00043f, 0xe0000440, 0xe1000441, 0xe2000442, 0xe3000443, 0xe4000444, 0xe5000445, 0xe6000446,\n\t\t0xe7000447, 0xe8000448, 0xe9000449, 0xea00044a, 0xeb00044b, 0xec00044c, 0xed00044d, 0xee00044e,\n\t\t0xef00044f, 0xf1000451, 0xf2000452, 0xf3000453, 0xf4000454, 0xf5000455, 0xf6000456, 0xf7000457,\n\t\t0xf8000458, 0xf9000459, 0xfa00045a, 0xfb00045b, 0xfc00045c, 0xfe00045e, 0xff00045f, 0xf0002116,\n\t\t0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116,\n\t\t0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116,\n\t\t0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116,\n\t\t0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116, 0xf0002116,\n\t},\n}\n\n// ISO8859_6 is the ISO 8859-6 encoding.\nvar ISO8859_6 *Charmap = &iso8859_6\n\nvar iso8859_6 = Charmap{\n\tname:          \"ISO 8859-6\",\n\tmib:           identifier.ISOLatinArabic,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xd8, 0x8c, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xd8, 0x9b, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xd8, 0x9f, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xd8, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xa2, 0x00}}, {2, [3]byte{0xd8, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xa4, 0x00}}, {2, [3]byte{0xd8, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xa6, 0x00}}, {2, [3]byte{0xd8, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xa8, 0x00}}, {2, [3]byte{0xd8, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xaa, 0x00}}, {2, [3]byte{0xd8, 0xab, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xac, 0x00}}, {2, [3]byte{0xd8, 0xad, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xae, 0x00}}, {2, [3]byte{0xd8, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb0, 0x00}}, {2, [3]byte{0xd8, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb2, 0x00}}, {2, [3]byte{0xd8, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb4, 0x00}}, {2, [3]byte{0xd8, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb6, 0x00}}, {2, [3]byte{0xd8, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb8, 0x00}}, {2, [3]byte{0xd8, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xba, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xd9, 0x80, 0x00}}, {2, [3]byte{0xd9, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x82, 0x00}}, {2, [3]byte{0xd9, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x84, 0x00}}, {2, [3]byte{0xd9, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x86, 0x00}}, {2, [3]byte{0xd9, 0x87, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x88, 0x00}}, {2, [3]byte{0xd9, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x8a, 0x00}}, {2, [3]byte{0xd9, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x8c, 0x00}}, {2, [3]byte{0xd9, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x8e, 0x00}}, {2, [3]byte{0xd9, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x90, 0x00}}, {2, [3]byte{0xd9, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x92, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa40000a4, 0xad0000ad, 0xac00060c, 0xbb00061b, 0xbf00061f, 0xc1000621, 0xc2000622,\n\t\t0xc3000623, 0xc4000624, 0xc5000625, 0xc6000626, 0xc7000627, 0xc8000628, 0xc9000629, 0xca00062a,\n\t\t0xcb00062b, 0xcc00062c, 0xcd00062d, 0xce00062e, 0xcf00062f, 0xd0000630, 0xd1000631, 0xd2000632,\n\t\t0xd3000633, 0xd4000634, 0xd5000635, 0xd6000636, 0xd7000637, 0xd8000638, 0xd9000639, 0xda00063a,\n\t\t0xe0000640, 0xe1000641, 0xe2000642, 0xe3000643, 0xe4000644, 0xe5000645, 0xe6000646, 0xe7000647,\n\t\t0xe8000648, 0xe9000649, 0xea00064a, 0xeb00064b, 0xec00064c, 0xed00064d, 0xee00064e, 0xef00064f,\n\t\t0xf0000650, 0xf1000651, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t\t0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t\t0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t\t0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t\t0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t\t0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t\t0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t\t0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t\t0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t\t0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652, 0xf2000652,\n\t},\n}\n\n// ISO8859_7 is the ISO 8859-7 encoding.\nvar ISO8859_7 *Charmap = &iso8859_7\n\nvar iso8859_7 = Charmap{\n\tname:          \"ISO 8859-7\",\n\tmib:           identifier.ISOLatinGreek,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xe2, 0x82, 0xaf}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xcd, 0xba, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x95}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xce, 0x84, 0x00}}, {2, [3]byte{0xce, 0x85, 0x00}},\n\t\t{2, [3]byte{0xce, 0x86, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xce, 0x88, 0x00}}, {2, [3]byte{0xce, 0x89, 0x00}},\n\t\t{2, [3]byte{0xce, 0x8a, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xce, 0x8c, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xce, 0x8e, 0x00}}, {2, [3]byte{0xce, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xce, 0x90, 0x00}}, {2, [3]byte{0xce, 0x91, 0x00}},\n\t\t{2, [3]byte{0xce, 0x92, 0x00}}, {2, [3]byte{0xce, 0x93, 0x00}},\n\t\t{2, [3]byte{0xce, 0x94, 0x00}}, {2, [3]byte{0xce, 0x95, 0x00}},\n\t\t{2, [3]byte{0xce, 0x96, 0x00}}, {2, [3]byte{0xce, 0x97, 0x00}},\n\t\t{2, [3]byte{0xce, 0x98, 0x00}}, {2, [3]byte{0xce, 0x99, 0x00}},\n\t\t{2, [3]byte{0xce, 0x9a, 0x00}}, {2, [3]byte{0xce, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xce, 0x9c, 0x00}}, {2, [3]byte{0xce, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xce, 0x9e, 0x00}}, {2, [3]byte{0xce, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa0, 0x00}}, {2, [3]byte{0xce, 0xa1, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xce, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa4, 0x00}}, {2, [3]byte{0xce, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa6, 0x00}}, {2, [3]byte{0xce, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa8, 0x00}}, {2, [3]byte{0xce, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xce, 0xaa, 0x00}}, {2, [3]byte{0xce, 0xab, 0x00}},\n\t\t{2, [3]byte{0xce, 0xac, 0x00}}, {2, [3]byte{0xce, 0xad, 0x00}},\n\t\t{2, [3]byte{0xce, 0xae, 0x00}}, {2, [3]byte{0xce, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb0, 0x00}}, {2, [3]byte{0xce, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb2, 0x00}}, {2, [3]byte{0xce, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb4, 0x00}}, {2, [3]byte{0xce, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb6, 0x00}}, {2, [3]byte{0xce, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb8, 0x00}}, {2, [3]byte{0xce, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xce, 0xba, 0x00}}, {2, [3]byte{0xce, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xce, 0xbc, 0x00}}, {2, [3]byte{0xce, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xce, 0xbe, 0x00}}, {2, [3]byte{0xce, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x80, 0x00}}, {2, [3]byte{0xcf, 0x81, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x82, 0x00}}, {2, [3]byte{0xcf, 0x83, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x84, 0x00}}, {2, [3]byte{0xcf, 0x85, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x86, 0x00}}, {2, [3]byte{0xcf, 0x87, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x88, 0x00}}, {2, [3]byte{0xcf, 0x89, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x8a, 0x00}}, {2, [3]byte{0xcf, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x8c, 0x00}}, {2, [3]byte{0xcf, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x8e, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa30000a3, 0xa60000a6, 0xa70000a7, 0xa80000a8, 0xa90000a9, 0xab0000ab, 0xac0000ac,\n\t\t0xad0000ad, 0xb00000b0, 0xb10000b1, 0xb20000b2, 0xb30000b3, 0xb70000b7, 0xbb0000bb, 0xbd0000bd,\n\t\t0xaa00037a, 0xb4000384, 0xb5000385, 0xb6000386, 0xb8000388, 0xb9000389, 0xba00038a, 0xbc00038c,\n\t\t0xbe00038e, 0xbf00038f, 0xc0000390, 0xc1000391, 0xc2000392, 0xc3000393, 0xc4000394, 0xc5000395,\n\t\t0xc6000396, 0xc7000397, 0xc8000398, 0xc9000399, 0xca00039a, 0xcb00039b, 0xcc00039c, 0xcd00039d,\n\t\t0xce00039e, 0xcf00039f, 0xd00003a0, 0xd10003a1, 0xd30003a3, 0xd40003a4, 0xd50003a5, 0xd60003a6,\n\t\t0xd70003a7, 0xd80003a8, 0xd90003a9, 0xda0003aa, 0xdb0003ab, 0xdc0003ac, 0xdd0003ad, 0xde0003ae,\n\t\t0xdf0003af, 0xe00003b0, 0xe10003b1, 0xe20003b2, 0xe30003b3, 0xe40003b4, 0xe50003b5, 0xe60003b6,\n\t\t0xe70003b7, 0xe80003b8, 0xe90003b9, 0xea0003ba, 0xeb0003bb, 0xec0003bc, 0xed0003bd, 0xee0003be,\n\t\t0xef0003bf, 0xf00003c0, 0xf10003c1, 0xf20003c2, 0xf30003c3, 0xf40003c4, 0xf50003c5, 0xf60003c6,\n\t\t0xf70003c7, 0xf80003c8, 0xf90003c9, 0xfa0003ca, 0xfb0003cb, 0xfc0003cc, 0xfd0003cd, 0xfe0003ce,\n\t\t0xaf002015, 0xa1002018, 0xa2002019, 0xa40020ac, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af,\n\t\t0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af,\n\t\t0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af,\n\t\t0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af,\n\t\t0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af, 0xa50020af,\n\t},\n}\n\n// ISO8859_8 is the ISO 8859-8 encoding.\nvar ISO8859_8 *Charmap = &iso8859_8\n\nvar iso8859_8 = Charmap{\n\tname:          \"ISO 8859-8\",\n\tmib:           identifier.ISOLatinHebrew,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x97, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x97}},\n\t\t{2, [3]byte{0xd7, 0x90, 0x00}}, {2, [3]byte{0xd7, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x92, 0x00}}, {2, [3]byte{0xd7, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x94, 0x00}}, {2, [3]byte{0xd7, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x96, 0x00}}, {2, [3]byte{0xd7, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x98, 0x00}}, {2, [3]byte{0xd7, 0x99, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x9a, 0x00}}, {2, [3]byte{0xd7, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x9c, 0x00}}, {2, [3]byte{0xd7, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x9e, 0x00}}, {2, [3]byte{0xd7, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa0, 0x00}}, {2, [3]byte{0xd7, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa2, 0x00}}, {2, [3]byte{0xd7, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa4, 0x00}}, {2, [3]byte{0xd7, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa6, 0x00}}, {2, [3]byte{0xd7, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa8, 0x00}}, {2, [3]byte{0xd7, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xaa, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x8e}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x8f}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa20000a2, 0xa30000a3, 0xa40000a4, 0xa50000a5, 0xa60000a6, 0xa70000a7, 0xa80000a8,\n\t\t0xa90000a9, 0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xaf0000af, 0xb00000b0, 0xb10000b1,\n\t\t0xb20000b2, 0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7, 0xb80000b8, 0xb90000b9,\n\t\t0xbb0000bb, 0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xaa0000d7, 0xba0000f7, 0xe00005d0, 0xe10005d1,\n\t\t0xe20005d2, 0xe30005d3, 0xe40005d4, 0xe50005d5, 0xe60005d6, 0xe70005d7, 0xe80005d8, 0xe90005d9,\n\t\t0xea0005da, 0xeb0005db, 0xec0005dc, 0xed0005dd, 0xee0005de, 0xef0005df, 0xf00005e0, 0xf10005e1,\n\t\t0xf20005e2, 0xf30005e3, 0xf40005e4, 0xf50005e5, 0xf60005e6, 0xf70005e7, 0xf80005e8, 0xf90005e9,\n\t\t0xfa0005ea, 0xfd00200e, 0xfe00200f, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017,\n\t\t0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017,\n\t\t0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017,\n\t\t0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017,\n\t\t0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017,\n\t\t0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017,\n\t\t0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017,\n\t\t0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017,\n\t\t0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017, 0xdf002017,\n\t},\n}\n\n// ISO8859_9 is the ISO 8859-9 encoding.\nvar ISO8859_9 *Charmap = &iso8859_9\n\nvar iso8859_9 = Charmap{\n\tname:          \"ISO 8859-9\",\n\tmib:           identifier.ISOLatin5,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x80, 0x00}}, {2, [3]byte{0xc2, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x82, 0x00}}, {2, [3]byte{0xc2, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x84, 0x00}}, {2, [3]byte{0xc2, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x86, 0x00}}, {2, [3]byte{0xc2, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x88, 0x00}}, {2, [3]byte{0xc2, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8a, 0x00}}, {2, [3]byte{0xc2, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8c, 0x00}}, {2, [3]byte{0xc2, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x8e, 0x00}}, {2, [3]byte{0xc2, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x90, 0x00}}, {2, [3]byte{0xc2, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x92, 0x00}}, {2, [3]byte{0xc2, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x94, 0x00}}, {2, [3]byte{0xc2, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x96, 0x00}}, {2, [3]byte{0xc2, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x98, 0x00}}, {2, [3]byte{0xc2, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9a, 0x00}}, {2, [3]byte{0xc2, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9c, 0x00}}, {2, [3]byte{0xc2, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc2, 0x9e, 0x00}}, {2, [3]byte{0xc2, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xba, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x92, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc4, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9f, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc4, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9f, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0x80000080, 0x81000081, 0x82000082, 0x83000083, 0x84000084, 0x85000085, 0x86000086, 0x87000087,\n\t\t0x88000088, 0x89000089, 0x8a00008a, 0x8b00008b, 0x8c00008c, 0x8d00008d, 0x8e00008e, 0x8f00008f,\n\t\t0x90000090, 0x91000091, 0x92000092, 0x93000093, 0x94000094, 0x95000095, 0x96000096, 0x97000097,\n\t\t0x98000098, 0x99000099, 0x9a00009a, 0x9b00009b, 0x9c00009c, 0x9d00009d, 0x9e00009e, 0x9f00009f,\n\t\t0xa00000a0, 0xa10000a1, 0xa20000a2, 0xa30000a3, 0xa40000a4, 0xa50000a5, 0xa60000a6, 0xa70000a7,\n\t\t0xa80000a8, 0xa90000a9, 0xaa0000aa, 0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xaf0000af,\n\t\t0xb00000b0, 0xb10000b1, 0xb20000b2, 0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7,\n\t\t0xb80000b8, 0xb90000b9, 0xba0000ba, 0xbb0000bb, 0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xbf0000bf,\n\t\t0xc00000c0, 0xc10000c1, 0xc20000c2, 0xc30000c3, 0xc40000c4, 0xc50000c5, 0xc60000c6, 0xc70000c7,\n\t\t0xc80000c8, 0xc90000c9, 0xca0000ca, 0xcb0000cb, 0xcc0000cc, 0xcd0000cd, 0xce0000ce, 0xcf0000cf,\n\t\t0xd10000d1, 0xd20000d2, 0xd30000d3, 0xd40000d4, 0xd50000d5, 0xd60000d6, 0xd70000d7, 0xd80000d8,\n\t\t0xd90000d9, 0xda0000da, 0xdb0000db, 0xdc0000dc, 0xdf0000df, 0xe00000e0, 0xe10000e1, 0xe20000e2,\n\t\t0xe30000e3, 0xe40000e4, 0xe50000e5, 0xe60000e6, 0xe70000e7, 0xe80000e8, 0xe90000e9, 0xea0000ea,\n\t\t0xeb0000eb, 0xec0000ec, 0xed0000ed, 0xee0000ee, 0xef0000ef, 0xf10000f1, 0xf20000f2, 0xf30000f3,\n\t\t0xf40000f4, 0xf50000f5, 0xf60000f6, 0xf70000f7, 0xf80000f8, 0xf90000f9, 0xfa0000fa, 0xfb0000fb,\n\t\t0xfc0000fc, 0xff0000ff, 0xd000011e, 0xf000011f, 0xdd000130, 0xfd000131, 0xde00015e, 0xfe00015f,\n\t},\n}\n\n// ISO8859_10 is the ISO 8859-10 encoding.\nvar ISO8859_10 *Charmap = &iso8859_10\n\nvar iso8859_10 = Charmap{\n\tname:          \"ISO 8859-10\",\n\tmib:           identifier.ISOLatin6,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc4, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x92, 0x00}}, {2, [3]byte{0xc4, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xaa, 0x00}}, {2, [3]byte{0xc4, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xbb, 0x00}}, {2, [3]byte{0xc4, 0x90, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa0, 0x00}}, {2, [3]byte{0xc5, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xaa, 0x00}}, {2, [3]byte{0xc5, 0x8a, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc4, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x93, 0x00}}, {2, [3]byte{0xc4, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xab, 0x00}}, {2, [3]byte{0xc4, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xb7, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xbc, 0x00}}, {2, [3]byte{0xc4, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa1, 0x00}}, {2, [3]byte{0xc5, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbe, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x95}},\n\t\t{2, [3]byte{0xc5, 0xab, 0x00}}, {2, [3]byte{0xc5, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc4, 0xae, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x90, 0x00}}, {2, [3]byte{0xc5, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc5, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc5, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x81, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc4, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x99, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x97, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb0, 0x00}}, {2, [3]byte{0xc5, 0x86, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc5, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc5, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbe, 0x00}}, {2, [3]byte{0xc4, 0xb8, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa70000a7, 0xad0000ad, 0xb00000b0, 0xb70000b7, 0xc10000c1, 0xc20000c2, 0xc30000c3,\n\t\t0xc40000c4, 0xc50000c5, 0xc60000c6, 0xc90000c9, 0xcb0000cb, 0xcd0000cd, 0xce0000ce, 0xcf0000cf,\n\t\t0xd00000d0, 0xd30000d3, 0xd40000d4, 0xd50000d5, 0xd60000d6, 0xd80000d8, 0xda0000da, 0xdb0000db,\n\t\t0xdc0000dc, 0xdd0000dd, 0xde0000de, 0xdf0000df, 0xe10000e1, 0xe20000e2, 0xe30000e3, 0xe40000e4,\n\t\t0xe50000e5, 0xe60000e6, 0xe90000e9, 0xeb0000eb, 0xed0000ed, 0xee0000ee, 0xef0000ef, 0xf00000f0,\n\t\t0xf30000f3, 0xf40000f4, 0xf50000f5, 0xf60000f6, 0xf80000f8, 0xfa0000fa, 0xfb0000fb, 0xfc0000fc,\n\t\t0xfd0000fd, 0xfe0000fe, 0xc0000100, 0xe0000101, 0xa1000104, 0xb1000105, 0xc800010c, 0xe800010d,\n\t\t0xa9000110, 0xb9000111, 0xa2000112, 0xb2000113, 0xcc000116, 0xec000117, 0xca000118, 0xea000119,\n\t\t0xa3000122, 0xb3000123, 0xa5000128, 0xb5000129, 0xa400012a, 0xb400012b, 0xc700012e, 0xe700012f,\n\t\t0xa6000136, 0xb6000137, 0xff000138, 0xa800013b, 0xb800013c, 0xd1000145, 0xf1000146, 0xaf00014a,\n\t\t0xbf00014b, 0xd200014c, 0xf200014d, 0xaa000160, 0xba000161, 0xab000166, 0xbb000167, 0xd7000168,\n\t\t0xf7000169, 0xae00016a, 0xbe00016b, 0xd9000172, 0xf9000173, 0xac00017d, 0xbc00017e, 0xbd002015,\n\t\t0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015,\n\t\t0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015,\n\t\t0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015,\n\t\t0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015, 0xbd002015,\n\t},\n}\n\n// ISO8859_13 is the ISO 8859-13 encoding.\nvar ISO8859_13 *Charmap = &iso8859_13\n\nvar iso8859_13 = Charmap{\n\tname:          \"ISO 8859-13\",\n\tmib:           identifier.ISO885913,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x9d}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x9e}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x96, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc3, 0x86, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9c}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x97, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {2, [3]byte{0xc3, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x84, 0x00}}, {2, [3]byte{0xc4, 0xae, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x80, 0x00}}, {2, [3]byte{0xc4, 0x86, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x98, 0x00}}, {2, [3]byte{0xc4, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb9, 0x00}}, {2, [3]byte{0xc4, 0x96, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xa2, 0x00}}, {2, [3]byte{0xc4, 0xb6, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xaa, 0x00}}, {2, [3]byte{0xc4, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa0, 0x00}}, {2, [3]byte{0xc5, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x85, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb2, 0x00}}, {2, [3]byte{0xc5, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9a, 0x00}}, {2, [3]byte{0xc5, 0xaa, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc5, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x85, 0x00}}, {2, [3]byte{0xc4, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x81, 0x00}}, {2, [3]byte{0xc4, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x99, 0x00}}, {2, [3]byte{0xc4, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xba, 0x00}}, {2, [3]byte{0xc4, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xa3, 0x00}}, {2, [3]byte{0xc4, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xab, 0x00}}, {2, [3]byte{0xc4, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa1, 0x00}}, {2, [3]byte{0xc5, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x86, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb3, 0x00}}, {2, [3]byte{0xc5, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9b, 0x00}}, {2, [3]byte{0xc5, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc5, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbe, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x99}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa20000a2, 0xa30000a3, 0xa40000a4, 0xa60000a6, 0xa70000a7, 0xa90000a9, 0xab0000ab,\n\t\t0xac0000ac, 0xad0000ad, 0xae0000ae, 0xb00000b0, 0xb10000b1, 0xb20000b2, 0xb30000b3, 0xb50000b5,\n\t\t0xb60000b6, 0xb70000b7, 0xb90000b9, 0xbb0000bb, 0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xc40000c4,\n\t\t0xc50000c5, 0xaf0000c6, 0xc90000c9, 0xd30000d3, 0xd50000d5, 0xd60000d6, 0xd70000d7, 0xa80000d8,\n\t\t0xdc0000dc, 0xdf0000df, 0xe40000e4, 0xe50000e5, 0xbf0000e6, 0xe90000e9, 0xf30000f3, 0xf50000f5,\n\t\t0xf60000f6, 0xf70000f7, 0xb80000f8, 0xfc0000fc, 0xc2000100, 0xe2000101, 0xc0000104, 0xe0000105,\n\t\t0xc3000106, 0xe3000107, 0xc800010c, 0xe800010d, 0xc7000112, 0xe7000113, 0xcb000116, 0xeb000117,\n\t\t0xc6000118, 0xe6000119, 0xcc000122, 0xec000123, 0xce00012a, 0xee00012b, 0xc100012e, 0xe100012f,\n\t\t0xcd000136, 0xed000137, 0xcf00013b, 0xef00013c, 0xd9000141, 0xf9000142, 0xd1000143, 0xf1000144,\n\t\t0xd2000145, 0xf2000146, 0xd400014c, 0xf400014d, 0xaa000156, 0xba000157, 0xda00015a, 0xfa00015b,\n\t\t0xd0000160, 0xf0000161, 0xdb00016a, 0xfb00016b, 0xd8000172, 0xf8000173, 0xca000179, 0xea00017a,\n\t\t0xdd00017b, 0xfd00017c, 0xde00017d, 0xfe00017e, 0xff002019, 0xb400201c, 0xa100201d, 0xa500201e,\n\t\t0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e,\n\t\t0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e,\n\t\t0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e,\n\t\t0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e, 0xa500201e,\n\t},\n}\n\n// ISO8859_14 is the ISO 8859-14 encoding.\nvar ISO8859_14 *Charmap = &iso8859_14\n\nvar iso8859_14 = Charmap{\n\tname:          \"ISO 8859-14\",\n\tmib:           identifier.ISO885914,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {3, [3]byte{0xe1, 0xb8, 0x82}},\n\t\t{3, [3]byte{0xe1, 0xb8, 0x83}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8a, 0x00}}, {2, [3]byte{0xc4, 0x8b, 0x00}},\n\t\t{3, [3]byte{0xe1, 0xb8, 0x8a}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{3, [3]byte{0xe1, 0xba, 0x80}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{3, [3]byte{0xe1, 0xba, 0x82}}, {3, [3]byte{0xe1, 0xb8, 0x8b}},\n\t\t{3, [3]byte{0xe1, 0xbb, 0xb2}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc5, 0xb8, 0x00}},\n\t\t{3, [3]byte{0xe1, 0xb8, 0x9e}}, {3, [3]byte{0xe1, 0xb8, 0x9f}},\n\t\t{2, [3]byte{0xc4, 0xa0, 0x00}}, {2, [3]byte{0xc4, 0xa1, 0x00}},\n\t\t{3, [3]byte{0xe1, 0xb9, 0x80}}, {3, [3]byte{0xe1, 0xb9, 0x81}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {3, [3]byte{0xe1, 0xb9, 0x96}},\n\t\t{3, [3]byte{0xe1, 0xba, 0x81}}, {3, [3]byte{0xe1, 0xb9, 0x97}},\n\t\t{3, [3]byte{0xe1, 0xba, 0x83}}, {3, [3]byte{0xe1, 0xb9, 0xa0}},\n\t\t{3, [3]byte{0xe1, 0xbb, 0xb3}}, {3, [3]byte{0xe1, 0xba, 0x84}},\n\t\t{3, [3]byte{0xe1, 0xba, 0x85}}, {3, [3]byte{0xe1, 0xb9, 0xa1}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x92, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {3, [3]byte{0xe1, 0xb9, 0xaa}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb5, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {3, [3]byte{0xe1, 0xb9, 0xab}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb7, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa30000a3, 0xa70000a7, 0xa90000a9, 0xad0000ad, 0xae0000ae, 0xb60000b6, 0xc00000c0,\n\t\t0xc10000c1, 0xc20000c2, 0xc30000c3, 0xc40000c4, 0xc50000c5, 0xc60000c6, 0xc70000c7, 0xc80000c8,\n\t\t0xc90000c9, 0xca0000ca, 0xcb0000cb, 0xcc0000cc, 0xcd0000cd, 0xce0000ce, 0xcf0000cf, 0xd10000d1,\n\t\t0xd20000d2, 0xd30000d3, 0xd40000d4, 0xd50000d5, 0xd60000d6, 0xd80000d8, 0xd90000d9, 0xda0000da,\n\t\t0xdb0000db, 0xdc0000dc, 0xdd0000dd, 0xdf0000df, 0xe00000e0, 0xe10000e1, 0xe20000e2, 0xe30000e3,\n\t\t0xe40000e4, 0xe50000e5, 0xe60000e6, 0xe70000e7, 0xe80000e8, 0xe90000e9, 0xea0000ea, 0xeb0000eb,\n\t\t0xec0000ec, 0xed0000ed, 0xee0000ee, 0xef0000ef, 0xf10000f1, 0xf20000f2, 0xf30000f3, 0xf40000f4,\n\t\t0xf50000f5, 0xf60000f6, 0xf80000f8, 0xf90000f9, 0xfa0000fa, 0xfb0000fb, 0xfc0000fc, 0xfd0000fd,\n\t\t0xff0000ff, 0xa400010a, 0xa500010b, 0xb2000120, 0xb3000121, 0xd0000174, 0xf0000175, 0xde000176,\n\t\t0xfe000177, 0xaf000178, 0xa1001e02, 0xa2001e03, 0xa6001e0a, 0xab001e0b, 0xb0001e1e, 0xb1001e1f,\n\t\t0xb4001e40, 0xb5001e41, 0xb7001e56, 0xb9001e57, 0xbb001e60, 0xbf001e61, 0xd7001e6a, 0xf7001e6b,\n\t\t0xa8001e80, 0xb8001e81, 0xaa001e82, 0xba001e83, 0xbd001e84, 0xbe001e85, 0xac001ef2, 0xbc001ef3,\n\t\t0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3,\n\t\t0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3,\n\t\t0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3,\n\t\t0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3, 0xbc001ef3,\n\t},\n}\n\n// ISO8859_15 is the ISO 8859-15 encoding.\nvar ISO8859_15 *Charmap = &iso8859_15\n\nvar iso8859_15 = Charmap{\n\tname:          \"ISO 8859-15\",\n\tmib:           identifier.ISO885915,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa0, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa1, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xba, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x92, 0x00}}, {2, [3]byte{0xc5, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x90, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x92, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb0, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbe, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa10000a1, 0xa20000a2, 0xa30000a3, 0xa50000a5, 0xa70000a7, 0xa90000a9, 0xaa0000aa,\n\t\t0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xaf0000af, 0xb00000b0, 0xb10000b1, 0xb20000b2,\n\t\t0xb30000b3, 0xb50000b5, 0xb60000b6, 0xb70000b7, 0xb90000b9, 0xba0000ba, 0xbb0000bb, 0xbf0000bf,\n\t\t0xc00000c0, 0xc10000c1, 0xc20000c2, 0xc30000c3, 0xc40000c4, 0xc50000c5, 0xc60000c6, 0xc70000c7,\n\t\t0xc80000c8, 0xc90000c9, 0xca0000ca, 0xcb0000cb, 0xcc0000cc, 0xcd0000cd, 0xce0000ce, 0xcf0000cf,\n\t\t0xd00000d0, 0xd10000d1, 0xd20000d2, 0xd30000d3, 0xd40000d4, 0xd50000d5, 0xd60000d6, 0xd70000d7,\n\t\t0xd80000d8, 0xd90000d9, 0xda0000da, 0xdb0000db, 0xdc0000dc, 0xdd0000dd, 0xde0000de, 0xdf0000df,\n\t\t0xe00000e0, 0xe10000e1, 0xe20000e2, 0xe30000e3, 0xe40000e4, 0xe50000e5, 0xe60000e6, 0xe70000e7,\n\t\t0xe80000e8, 0xe90000e9, 0xea0000ea, 0xeb0000eb, 0xec0000ec, 0xed0000ed, 0xee0000ee, 0xef0000ef,\n\t\t0xf00000f0, 0xf10000f1, 0xf20000f2, 0xf30000f3, 0xf40000f4, 0xf50000f5, 0xf60000f6, 0xf70000f7,\n\t\t0xf80000f8, 0xf90000f9, 0xfa0000fa, 0xfb0000fb, 0xfc0000fc, 0xfd0000fd, 0xfe0000fe, 0xff0000ff,\n\t\t0xbc000152, 0xbd000153, 0xa6000160, 0xa8000161, 0xbe000178, 0xb400017d, 0xb800017e, 0xa40020ac,\n\t\t0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac,\n\t\t0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac,\n\t\t0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac,\n\t\t0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac,\n\t},\n}\n\n// ISO8859_16 is the ISO 8859-16 encoding.\nvar ISO8859_16 *Charmap = &iso8859_16\n\nvar iso8859_16 = Charmap{\n\tname:          \"ISO 8859-16\",\n\tmib:           identifier.ISO885916,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc4, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x85, 0x00}}, {2, [3]byte{0xc5, 0x81, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xe2, 0x80, 0x9e}},\n\t\t{2, [3]byte{0xc5, 0xa0, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa1, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc8, 0x98, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb9, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xba, 0x00}}, {2, [3]byte{0xc5, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8c, 0x00}}, {2, [3]byte{0xc5, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x9d}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbe, 0x00}}, {2, [3]byte{0xc4, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc8, 0x99, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x92, 0x00}}, {2, [3]byte{0xc5, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb8, 0x00}}, {2, [3]byte{0xc5, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc4, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc4, 0x86, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x90, 0x00}}, {2, [3]byte{0xc5, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x92, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc5, 0x90, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc5, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb0, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc4, 0x98, 0x00}},\n\t\t{2, [3]byte{0xc8, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc4, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc4, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x91, 0x00}}, {2, [3]byte{0xc5, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc5, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc5, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc4, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc8, 0x9b, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa70000a7, 0xa90000a9, 0xab0000ab, 0xad0000ad, 0xb00000b0, 0xb10000b1, 0xb60000b6,\n\t\t0xb70000b7, 0xbb0000bb, 0xc00000c0, 0xc10000c1, 0xc20000c2, 0xc40000c4, 0xc60000c6, 0xc70000c7,\n\t\t0xc80000c8, 0xc90000c9, 0xca0000ca, 0xcb0000cb, 0xcc0000cc, 0xcd0000cd, 0xce0000ce, 0xcf0000cf,\n\t\t0xd20000d2, 0xd30000d3, 0xd40000d4, 0xd60000d6, 0xd90000d9, 0xda0000da, 0xdb0000db, 0xdc0000dc,\n\t\t0xdf0000df, 0xe00000e0, 0xe10000e1, 0xe20000e2, 0xe40000e4, 0xe60000e6, 0xe70000e7, 0xe80000e8,\n\t\t0xe90000e9, 0xea0000ea, 0xeb0000eb, 0xec0000ec, 0xed0000ed, 0xee0000ee, 0xef0000ef, 0xf20000f2,\n\t\t0xf30000f3, 0xf40000f4, 0xf60000f6, 0xf90000f9, 0xfa0000fa, 0xfb0000fb, 0xfc0000fc, 0xff0000ff,\n\t\t0xc3000102, 0xe3000103, 0xa1000104, 0xa2000105, 0xc5000106, 0xe5000107, 0xb200010c, 0xb900010d,\n\t\t0xd0000110, 0xf0000111, 0xdd000118, 0xfd000119, 0xa3000141, 0xb3000142, 0xd1000143, 0xf1000144,\n\t\t0xd5000150, 0xf5000151, 0xbc000152, 0xbd000153, 0xd700015a, 0xf700015b, 0xa6000160, 0xa8000161,\n\t\t0xd8000170, 0xf8000171, 0xbe000178, 0xac000179, 0xae00017a, 0xaf00017b, 0xbf00017c, 0xb400017d,\n\t\t0xb800017e, 0xaa000218, 0xba000219, 0xde00021a, 0xfe00021b, 0xb500201d, 0xa500201e, 0xa40020ac,\n\t\t0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac,\n\t\t0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac,\n\t\t0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac,\n\t\t0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac, 0xa40020ac,\n\t},\n}\n\n// KOI8R is the KOI8-R encoding.\nvar KOI8R *Charmap = &koi8R\n\nvar koi8R = Charmap{\n\tname:          \"KOI8-R\",\n\tmib:           identifier.KOI8R,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x9c}}, {3, [3]byte{0xe2, 0x94, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xbc}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x8c, 0xa0}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {3, [3]byte{0xe2, 0x88, 0x99}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x9a}}, {3, [3]byte{0xe2, 0x89, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa4}}, {3, [3]byte{0xe2, 0x89, 0xa5}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {3, [3]byte{0xe2, 0x8c, 0xa1}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x90}}, {3, [3]byte{0xe2, 0x95, 0x91}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x92}}, {2, [3]byte{0xd1, 0x91, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x93}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x95}}, {3, [3]byte{0xe2, 0x95, 0x96}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x97}}, {3, [3]byte{0xe2, 0x95, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x99}}, {3, [3]byte{0xe2, 0x95, 0x9a}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9b}}, {3, [3]byte{0xe2, 0x95, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9d}}, {3, [3]byte{0xe2, 0x95, 0x9e}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9f}}, {3, [3]byte{0xe2, 0x95, 0xa0}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa1}}, {2, [3]byte{0xd0, 0x81, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa2}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa4}}, {3, [3]byte{0xe2, 0x95, 0xa5}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa6}}, {3, [3]byte{0xe2, 0x95, 0xa7}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa8}}, {3, [3]byte{0xe2, 0x95, 0xa9}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xaa}}, {3, [3]byte{0xe2, 0x95, 0xab}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xac}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8e, 0x00}}, {2, [3]byte{0xd0, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb1, 0x00}}, {2, [3]byte{0xd1, 0x86, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb4, 0x00}}, {2, [3]byte{0xd0, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x84, 0x00}}, {2, [3]byte{0xd0, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x85, 0x00}}, {2, [3]byte{0xd0, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb9, 0x00}}, {2, [3]byte{0xd0, 0xba, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbb, 0x00}}, {2, [3]byte{0xd0, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbd, 0x00}}, {2, [3]byte{0xd0, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbf, 0x00}}, {2, [3]byte{0xd1, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x80, 0x00}}, {2, [3]byte{0xd1, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x82, 0x00}}, {2, [3]byte{0xd1, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb6, 0x00}}, {2, [3]byte{0xd0, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8c, 0x00}}, {2, [3]byte{0xd1, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb7, 0x00}}, {2, [3]byte{0xd1, 0x88, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8d, 0x00}}, {2, [3]byte{0xd1, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x87, 0x00}}, {2, [3]byte{0xd1, 0x8a, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xae, 0x00}}, {2, [3]byte{0xd0, 0x90, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x91, 0x00}}, {2, [3]byte{0xd0, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x94, 0x00}}, {2, [3]byte{0xd0, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa4, 0x00}}, {2, [3]byte{0xd0, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa5, 0x00}}, {2, [3]byte{0xd0, 0x98, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x99, 0x00}}, {2, [3]byte{0xd0, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9b, 0x00}}, {2, [3]byte{0xd0, 0x9c, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9d, 0x00}}, {2, [3]byte{0xd0, 0x9e, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9f, 0x00}}, {2, [3]byte{0xd0, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa0, 0x00}}, {2, [3]byte{0xd0, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa2, 0x00}}, {2, [3]byte{0xd0, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x96, 0x00}}, {2, [3]byte{0xd0, 0x92, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xac, 0x00}}, {2, [3]byte{0xd0, 0xab, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x97, 0x00}}, {2, [3]byte{0xd0, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xad, 0x00}}, {2, [3]byte{0xd0, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa7, 0x00}}, {2, [3]byte{0xd0, 0xaa, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0x9a0000a0, 0xbf0000a9, 0x9c0000b0, 0x9d0000b2, 0x9e0000b7, 0x9f0000f7, 0xb3000401, 0xe1000410,\n\t\t0xe2000411, 0xf7000412, 0xe7000413, 0xe4000414, 0xe5000415, 0xf6000416, 0xfa000417, 0xe9000418,\n\t\t0xea000419, 0xeb00041a, 0xec00041b, 0xed00041c, 0xee00041d, 0xef00041e, 0xf000041f, 0xf2000420,\n\t\t0xf3000421, 0xf4000422, 0xf5000423, 0xe6000424, 0xe8000425, 0xe3000426, 0xfe000427, 0xfb000428,\n\t\t0xfd000429, 0xff00042a, 0xf900042b, 0xf800042c, 0xfc00042d, 0xe000042e, 0xf100042f, 0xc1000430,\n\t\t0xc2000431, 0xd7000432, 0xc7000433, 0xc4000434, 0xc5000435, 0xd6000436, 0xda000437, 0xc9000438,\n\t\t0xca000439, 0xcb00043a, 0xcc00043b, 0xcd00043c, 0xce00043d, 0xcf00043e, 0xd000043f, 0xd2000440,\n\t\t0xd3000441, 0xd4000442, 0xd5000443, 0xc6000444, 0xc8000445, 0xc3000446, 0xde000447, 0xdb000448,\n\t\t0xdd000449, 0xdf00044a, 0xd900044b, 0xd800044c, 0xdc00044d, 0xc000044e, 0xd100044f, 0xa3000451,\n\t\t0x95002219, 0x9600221a, 0x97002248, 0x98002264, 0x99002265, 0x93002320, 0x9b002321, 0x80002500,\n\t\t0x81002502, 0x8200250c, 0x83002510, 0x84002514, 0x85002518, 0x8600251c, 0x87002524, 0x8800252c,\n\t\t0x89002534, 0x8a00253c, 0xa0002550, 0xa1002551, 0xa2002552, 0xa4002553, 0xa5002554, 0xa6002555,\n\t\t0xa7002556, 0xa8002557, 0xa9002558, 0xaa002559, 0xab00255a, 0xac00255b, 0xad00255c, 0xae00255d,\n\t\t0xaf00255e, 0xb000255f, 0xb1002560, 0xb2002561, 0xb4002562, 0xb5002563, 0xb6002564, 0xb7002565,\n\t\t0xb8002566, 0xb9002567, 0xba002568, 0xbb002569, 0xbc00256a, 0xbd00256b, 0xbe00256c, 0x8b002580,\n\t\t0x8c002584, 0x8d002588, 0x8e00258c, 0x8f002590, 0x90002591, 0x91002592, 0x92002593, 0x940025a0,\n\t},\n}\n\n// KOI8U is the KOI8-U encoding.\nvar KOI8U *Charmap = &koi8U\n\nvar koi8U = Charmap{\n\tname:          \"KOI8-U\",\n\tmib:           identifier.KOI8U,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x80}}, {3, [3]byte{0xe2, 0x94, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x8c}}, {3, [3]byte{0xe2, 0x94, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x94}}, {3, [3]byte{0xe2, 0x94, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x94, 0x9c}}, {3, [3]byte{0xe2, 0x94, 0xa4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xac}}, {3, [3]byte{0xe2, 0x94, 0xb4}},\n\t\t{3, [3]byte{0xe2, 0x94, 0xbc}}, {3, [3]byte{0xe2, 0x96, 0x80}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x84}}, {3, [3]byte{0xe2, 0x96, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x8c}}, {3, [3]byte{0xe2, 0x96, 0x90}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x91}}, {3, [3]byte{0xe2, 0x96, 0x92}},\n\t\t{3, [3]byte{0xe2, 0x96, 0x93}}, {3, [3]byte{0xe2, 0x8c, 0xa0}},\n\t\t{3, [3]byte{0xe2, 0x96, 0xa0}}, {3, [3]byte{0xe2, 0x88, 0x99}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x9a}}, {3, [3]byte{0xe2, 0x89, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa4}}, {3, [3]byte{0xe2, 0x89, 0xa5}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {3, [3]byte{0xe2, 0x8c, 0xa1}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb7, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x90}}, {3, [3]byte{0xe2, 0x95, 0x91}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x92}}, {2, [3]byte{0xd1, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x94, 0x00}}, {3, [3]byte{0xe2, 0x95, 0x94}},\n\t\t{2, [3]byte{0xd1, 0x96, 0x00}}, {2, [3]byte{0xd1, 0x97, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x97}}, {3, [3]byte{0xe2, 0x95, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x99}}, {3, [3]byte{0xe2, 0x95, 0x9a}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9b}}, {2, [3]byte{0xd2, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9e, 0x00}}, {3, [3]byte{0xe2, 0x95, 0x9e}},\n\t\t{3, [3]byte{0xe2, 0x95, 0x9f}}, {3, [3]byte{0xe2, 0x95, 0xa0}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa1}}, {2, [3]byte{0xd0, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x84, 0x00}}, {3, [3]byte{0xe2, 0x95, 0xa3}},\n\t\t{2, [3]byte{0xd0, 0x86, 0x00}}, {2, [3]byte{0xd0, 0x87, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa6}}, {3, [3]byte{0xe2, 0x95, 0xa7}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xa8}}, {3, [3]byte{0xe2, 0x95, 0xa9}},\n\t\t{3, [3]byte{0xe2, 0x95, 0xaa}}, {2, [3]byte{0xd2, 0x90, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x8e, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8e, 0x00}}, {2, [3]byte{0xd0, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb1, 0x00}}, {2, [3]byte{0xd1, 0x86, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb4, 0x00}}, {2, [3]byte{0xd0, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x84, 0x00}}, {2, [3]byte{0xd0, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x85, 0x00}}, {2, [3]byte{0xd0, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb9, 0x00}}, {2, [3]byte{0xd0, 0xba, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbb, 0x00}}, {2, [3]byte{0xd0, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbd, 0x00}}, {2, [3]byte{0xd0, 0xbe, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbf, 0x00}}, {2, [3]byte{0xd1, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x80, 0x00}}, {2, [3]byte{0xd1, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x82, 0x00}}, {2, [3]byte{0xd1, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb6, 0x00}}, {2, [3]byte{0xd0, 0xb2, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8c, 0x00}}, {2, [3]byte{0xd1, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb7, 0x00}}, {2, [3]byte{0xd1, 0x88, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8d, 0x00}}, {2, [3]byte{0xd1, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x87, 0x00}}, {2, [3]byte{0xd1, 0x8a, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xae, 0x00}}, {2, [3]byte{0xd0, 0x90, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x91, 0x00}}, {2, [3]byte{0xd0, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x94, 0x00}}, {2, [3]byte{0xd0, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa4, 0x00}}, {2, [3]byte{0xd0, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa5, 0x00}}, {2, [3]byte{0xd0, 0x98, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x99, 0x00}}, {2, [3]byte{0xd0, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9b, 0x00}}, {2, [3]byte{0xd0, 0x9c, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9d, 0x00}}, {2, [3]byte{0xd0, 0x9e, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9f, 0x00}}, {2, [3]byte{0xd0, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa0, 0x00}}, {2, [3]byte{0xd0, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa2, 0x00}}, {2, [3]byte{0xd0, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x96, 0x00}}, {2, [3]byte{0xd0, 0x92, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xac, 0x00}}, {2, [3]byte{0xd0, 0xab, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x97, 0x00}}, {2, [3]byte{0xd0, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xad, 0x00}}, {2, [3]byte{0xd0, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa7, 0x00}}, {2, [3]byte{0xd0, 0xaa, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0x9a0000a0, 0xbf0000a9, 0x9c0000b0, 0x9d0000b2, 0x9e0000b7, 0x9f0000f7, 0xb3000401, 0xb4000404,\n\t\t0xb6000406, 0xb7000407, 0xbe00040e, 0xe1000410, 0xe2000411, 0xf7000412, 0xe7000413, 0xe4000414,\n\t\t0xe5000415, 0xf6000416, 0xfa000417, 0xe9000418, 0xea000419, 0xeb00041a, 0xec00041b, 0xed00041c,\n\t\t0xee00041d, 0xef00041e, 0xf000041f, 0xf2000420, 0xf3000421, 0xf4000422, 0xf5000423, 0xe6000424,\n\t\t0xe8000425, 0xe3000426, 0xfe000427, 0xfb000428, 0xfd000429, 0xff00042a, 0xf900042b, 0xf800042c,\n\t\t0xfc00042d, 0xe000042e, 0xf100042f, 0xc1000430, 0xc2000431, 0xd7000432, 0xc7000433, 0xc4000434,\n\t\t0xc5000435, 0xd6000436, 0xda000437, 0xc9000438, 0xca000439, 0xcb00043a, 0xcc00043b, 0xcd00043c,\n\t\t0xce00043d, 0xcf00043e, 0xd000043f, 0xd2000440, 0xd3000441, 0xd4000442, 0xd5000443, 0xc6000444,\n\t\t0xc8000445, 0xc3000446, 0xde000447, 0xdb000448, 0xdd000449, 0xdf00044a, 0xd900044b, 0xd800044c,\n\t\t0xdc00044d, 0xc000044e, 0xd100044f, 0xa3000451, 0xa4000454, 0xa6000456, 0xa7000457, 0xae00045e,\n\t\t0xbd000490, 0xad000491, 0x95002219, 0x9600221a, 0x97002248, 0x98002264, 0x99002265, 0x93002320,\n\t\t0x9b002321, 0x80002500, 0x81002502, 0x8200250c, 0x83002510, 0x84002514, 0x85002518, 0x8600251c,\n\t\t0x87002524, 0x8800252c, 0x89002534, 0x8a00253c, 0xa0002550, 0xa1002551, 0xa2002552, 0xa5002554,\n\t\t0xa8002557, 0xa9002558, 0xaa002559, 0xab00255a, 0xac00255b, 0xaf00255e, 0xb000255f, 0xb1002560,\n\t\t0xb2002561, 0xb5002563, 0xb8002566, 0xb9002567, 0xba002568, 0xbb002569, 0xbc00256a, 0x8b002580,\n\t\t0x8c002584, 0x8d002588, 0x8e00258c, 0x8f002590, 0x90002591, 0x91002592, 0x92002593, 0x940025a0,\n\t},\n}\n\n// Macintosh is the Macintosh encoding.\nvar Macintosh *Charmap = &macintosh\n\nvar macintosh = Charmap{\n\tname:          \"Macintosh\",\n\tmib:           identifier.Macintosh,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x87, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x91, 0x00}}, {2, [3]byte{0xc3, 0x96, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa2, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa5, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa9, 0x00}}, {2, [3]byte{0xc3, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xad, 0x00}}, {2, [3]byte{0xc3, 0xac, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb1, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbb, 0x00}}, {2, [3]byte{0xc3, 0xbc, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {2, [3]byte{0xc2, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa7, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x84, 0xa2}}, {2, [3]byte{0xc2, 0xb4, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {3, [3]byte{0xe2, 0x89, 0xa0}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x98, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x9e}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa4}}, {3, [3]byte{0xe2, 0x89, 0xa5}},\n\t\t{2, [3]byte{0xc2, 0xa5, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x82}}, {3, [3]byte{0xe2, 0x88, 0x91}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x8f}}, {2, [3]byte{0xcf, 0x80, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x88, 0xab}}, {2, [3]byte{0xc2, 0xaa, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xba, 0x00}}, {2, [3]byte{0xce, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc3, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbf, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x9a}},\n\t\t{2, [3]byte{0xc6, 0x92, 0x00}}, {3, [3]byte{0xe2, 0x89, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x86}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbb, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0x80, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x83, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x92, 0x00}}, {2, [3]byte{0xc5, 0x93, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9c}}, {3, [3]byte{0xe2, 0x80, 0x9d}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x98}}, {3, [3]byte{0xe2, 0x80, 0x99}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x97, 0x8a}},\n\t\t{2, [3]byte{0xc3, 0xbf, 0x00}}, {2, [3]byte{0xc5, 0xb8, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x81, 0x84}}, {3, [3]byte{0xe2, 0x82, 0xac}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xb9}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{3, [3]byte{0xef, 0xac, 0x81}}, {3, [3]byte{0xef, 0xac, 0x82}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa1}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {3, [3]byte{0xe2, 0x80, 0x9e}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xb0}}, {2, [3]byte{0xc3, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8b, 0x00}}, {2, [3]byte{0xc3, 0x88, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0x8e, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8f, 0x00}}, {2, [3]byte{0xc3, 0x8c, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x93, 0x00}}, {2, [3]byte{0xc3, 0x94, 0x00}},\n\t\t{3, [3]byte{0xef, 0xa3, 0xbf}}, {2, [3]byte{0xc3, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x99, 0x00}}, {2, [3]byte{0xc4, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x86, 0x00}}, {2, [3]byte{0xcb, 0x9c, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaf, 0x00}}, {2, [3]byte{0xcb, 0x98, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x99, 0x00}}, {2, [3]byte{0xcb, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xcb, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x9b, 0x00}}, {2, [3]byte{0xcb, 0x87, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xca0000a0, 0xc10000a1, 0xa20000a2, 0xa30000a3, 0xb40000a5, 0xa40000a7, 0xac0000a8, 0xa90000a9,\n\t\t0xbb0000aa, 0xc70000ab, 0xc20000ac, 0xa80000ae, 0xf80000af, 0xa10000b0, 0xb10000b1, 0xab0000b4,\n\t\t0xb50000b5, 0xa60000b6, 0xe10000b7, 0xfc0000b8, 0xbc0000ba, 0xc80000bb, 0xc00000bf, 0xcb0000c0,\n\t\t0xe70000c1, 0xe50000c2, 0xcc0000c3, 0x800000c4, 0x810000c5, 0xae0000c6, 0x820000c7, 0xe90000c8,\n\t\t0x830000c9, 0xe60000ca, 0xe80000cb, 0xed0000cc, 0xea0000cd, 0xeb0000ce, 0xec0000cf, 0x840000d1,\n\t\t0xf10000d2, 0xee0000d3, 0xef0000d4, 0xcd0000d5, 0x850000d6, 0xaf0000d8, 0xf40000d9, 0xf20000da,\n\t\t0xf30000db, 0x860000dc, 0xa70000df, 0x880000e0, 0x870000e1, 0x890000e2, 0x8b0000e3, 0x8a0000e4,\n\t\t0x8c0000e5, 0xbe0000e6, 0x8d0000e7, 0x8f0000e8, 0x8e0000e9, 0x900000ea, 0x910000eb, 0x930000ec,\n\t\t0x920000ed, 0x940000ee, 0x950000ef, 0x960000f1, 0x980000f2, 0x970000f3, 0x990000f4, 0x9b0000f5,\n\t\t0x9a0000f6, 0xd60000f7, 0xbf0000f8, 0x9d0000f9, 0x9c0000fa, 0x9e0000fb, 0x9f0000fc, 0xd80000ff,\n\t\t0xf5000131, 0xce000152, 0xcf000153, 0xd9000178, 0xc4000192, 0xf60002c6, 0xff0002c7, 0xf90002d8,\n\t\t0xfa0002d9, 0xfb0002da, 0xfe0002db, 0xf70002dc, 0xfd0002dd, 0xbd0003a9, 0xb90003c0, 0xd0002013,\n\t\t0xd1002014, 0xd4002018, 0xd5002019, 0xe200201a, 0xd200201c, 0xd300201d, 0xe300201e, 0xa0002020,\n\t\t0xe0002021, 0xa5002022, 0xc9002026, 0xe4002030, 0xdc002039, 0xdd00203a, 0xda002044, 0xdb0020ac,\n\t\t0xaa002122, 0xb6002202, 0xc6002206, 0xb800220f, 0xb7002211, 0xc300221a, 0xb000221e, 0xba00222b,\n\t\t0xc5002248, 0xad002260, 0xb2002264, 0xb3002265, 0xd70025ca, 0xf000f8ff, 0xde00fb01, 0xdf00fb02,\n\t},\n}\n\n// MacintoshCyrillic is the Macintosh Cyrillic encoding.\nvar MacintoshCyrillic *Charmap = &macintoshCyrillic\n\nvar macintoshCyrillic = Charmap{\n\tname:          \"Macintosh Cyrillic\",\n\tmib:           identifier.MacintoshCyrillic,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x90, 0x00}}, {2, [3]byte{0xd0, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x92, 0x00}}, {2, [3]byte{0xd0, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x94, 0x00}}, {2, [3]byte{0xd0, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x96, 0x00}}, {2, [3]byte{0xd0, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x98, 0x00}}, {2, [3]byte{0xd0, 0x99, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9a, 0x00}}, {2, [3]byte{0xd0, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9c, 0x00}}, {2, [3]byte{0xd0, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9e, 0x00}}, {2, [3]byte{0xd0, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa0, 0x00}}, {2, [3]byte{0xd0, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa2, 0x00}}, {2, [3]byte{0xd0, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa4, 0x00}}, {2, [3]byte{0xd0, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa6, 0x00}}, {2, [3]byte{0xd0, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa8, 0x00}}, {2, [3]byte{0xd0, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xaa, 0x00}}, {2, [3]byte{0xd0, 0xab, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xac, 0x00}}, {2, [3]byte{0xd0, 0xad, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xae, 0x00}}, {2, [3]byte{0xd0, 0xaf, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {2, [3]byte{0xc2, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xd2, 0x90, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa7, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xd0, 0x86, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x84, 0xa2}}, {2, [3]byte{0xd0, 0x82, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x92, 0x00}}, {3, [3]byte{0xe2, 0x89, 0xa0}},\n\t\t{2, [3]byte{0xd0, 0x83, 0x00}}, {2, [3]byte{0xd1, 0x93, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x9e}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x89, 0xa4}}, {3, [3]byte{0xe2, 0x89, 0xa5}},\n\t\t{2, [3]byte{0xd1, 0x96, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd2, 0x91, 0x00}}, {2, [3]byte{0xd0, 0x88, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x84, 0x00}}, {2, [3]byte{0xd1, 0x94, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x87, 0x00}}, {2, [3]byte{0xd1, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x89, 0x00}}, {2, [3]byte{0xd1, 0x99, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x8a, 0x00}}, {2, [3]byte{0xd1, 0x9a, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x98, 0x00}}, {2, [3]byte{0xd0, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {3, [3]byte{0xe2, 0x88, 0x9a}},\n\t\t{2, [3]byte{0xc6, 0x92, 0x00}}, {3, [3]byte{0xe2, 0x89, 0x88}},\n\t\t{3, [3]byte{0xe2, 0x88, 0x86}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbb, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xd0, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9b, 0x00}}, {2, [3]byte{0xd0, 0x8c, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9c, 0x00}}, {2, [3]byte{0xd1, 0x95, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9c}}, {3, [3]byte{0xe2, 0x80, 0x9d}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x98}}, {3, [3]byte{0xe2, 0x80, 0x99}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x9e}},\n\t\t{2, [3]byte{0xd0, 0x8e, 0x00}}, {2, [3]byte{0xd1, 0x9e, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x8f, 0x00}}, {2, [3]byte{0xd1, 0x9f, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x84, 0x96}}, {2, [3]byte{0xd0, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x91, 0x00}}, {2, [3]byte{0xd1, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb0, 0x00}}, {2, [3]byte{0xd0, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb2, 0x00}}, {2, [3]byte{0xd0, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb4, 0x00}}, {2, [3]byte{0xd0, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb6, 0x00}}, {2, [3]byte{0xd0, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb8, 0x00}}, {2, [3]byte{0xd0, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xba, 0x00}}, {2, [3]byte{0xd0, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbc, 0x00}}, {2, [3]byte{0xd0, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbe, 0x00}}, {2, [3]byte{0xd0, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x80, 0x00}}, {2, [3]byte{0xd1, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x82, 0x00}}, {2, [3]byte{0xd1, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x84, 0x00}}, {2, [3]byte{0xd1, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x86, 0x00}}, {2, [3]byte{0xd1, 0x87, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x88, 0x00}}, {2, [3]byte{0xd1, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8a, 0x00}}, {2, [3]byte{0xd1, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8c, 0x00}}, {2, [3]byte{0xd1, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8e, 0x00}}, {3, [3]byte{0xe2, 0x82, 0xac}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xca0000a0, 0xa30000a3, 0xa40000a7, 0xa90000a9, 0xc70000ab, 0xc20000ac, 0xa80000ae, 0xa10000b0,\n\t\t0xb10000b1, 0xb50000b5, 0xa60000b6, 0xc80000bb, 0xd60000f7, 0xc4000192, 0xdd000401, 0xab000402,\n\t\t0xae000403, 0xb8000404, 0xc1000405, 0xa7000406, 0xba000407, 0xb7000408, 0xbc000409, 0xbe00040a,\n\t\t0xcb00040b, 0xcd00040c, 0xd800040e, 0xda00040f, 0x80000410, 0x81000411, 0x82000412, 0x83000413,\n\t\t0x84000414, 0x85000415, 0x86000416, 0x87000417, 0x88000418, 0x89000419, 0x8a00041a, 0x8b00041b,\n\t\t0x8c00041c, 0x8d00041d, 0x8e00041e, 0x8f00041f, 0x90000420, 0x91000421, 0x92000422, 0x93000423,\n\t\t0x94000424, 0x95000425, 0x96000426, 0x97000427, 0x98000428, 0x99000429, 0x9a00042a, 0x9b00042b,\n\t\t0x9c00042c, 0x9d00042d, 0x9e00042e, 0x9f00042f, 0xe0000430, 0xe1000431, 0xe2000432, 0xe3000433,\n\t\t0xe4000434, 0xe5000435, 0xe6000436, 0xe7000437, 0xe8000438, 0xe9000439, 0xea00043a, 0xeb00043b,\n\t\t0xec00043c, 0xed00043d, 0xee00043e, 0xef00043f, 0xf0000440, 0xf1000441, 0xf2000442, 0xf3000443,\n\t\t0xf4000444, 0xf5000445, 0xf6000446, 0xf7000447, 0xf8000448, 0xf9000449, 0xfa00044a, 0xfb00044b,\n\t\t0xfc00044c, 0xfd00044d, 0xfe00044e, 0xdf00044f, 0xde000451, 0xac000452, 0xaf000453, 0xb9000454,\n\t\t0xcf000455, 0xb4000456, 0xbb000457, 0xc0000458, 0xbd000459, 0xbf00045a, 0xcc00045b, 0xce00045c,\n\t\t0xd900045e, 0xdb00045f, 0xa2000490, 0xb6000491, 0xd0002013, 0xd1002014, 0xd4002018, 0xd5002019,\n\t\t0xd200201c, 0xd300201d, 0xd700201e, 0xa0002020, 0xa5002022, 0xc9002026, 0xff0020ac, 0xdc002116,\n\t\t0xaa002122, 0xc6002206, 0xc300221a, 0xb000221e, 0xc5002248, 0xad002260, 0xb2002264, 0xb3002265,\n\t},\n}\n\n// Windows874 is the Windows 874 encoding.\nvar Windows874 *Charmap = &windows874\n\nvar windows874 = Charmap{\n\tname:          \"Windows 874\",\n\tmib:           identifier.Windows874,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {3, [3]byte{0xe0, 0xb8, 0x81}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x82}}, {3, [3]byte{0xe0, 0xb8, 0x83}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x84}}, {3, [3]byte{0xe0, 0xb8, 0x85}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x86}}, {3, [3]byte{0xe0, 0xb8, 0x87}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x88}}, {3, [3]byte{0xe0, 0xb8, 0x89}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x8a}}, {3, [3]byte{0xe0, 0xb8, 0x8b}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x8c}}, {3, [3]byte{0xe0, 0xb8, 0x8d}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x8e}}, {3, [3]byte{0xe0, 0xb8, 0x8f}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x90}}, {3, [3]byte{0xe0, 0xb8, 0x91}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x92}}, {3, [3]byte{0xe0, 0xb8, 0x93}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x94}}, {3, [3]byte{0xe0, 0xb8, 0x95}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x96}}, {3, [3]byte{0xe0, 0xb8, 0x97}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x98}}, {3, [3]byte{0xe0, 0xb8, 0x99}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x9a}}, {3, [3]byte{0xe0, 0xb8, 0x9b}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x9c}}, {3, [3]byte{0xe0, 0xb8, 0x9d}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0x9e}}, {3, [3]byte{0xe0, 0xb8, 0x9f}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xa0}}, {3, [3]byte{0xe0, 0xb8, 0xa1}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xa2}}, {3, [3]byte{0xe0, 0xb8, 0xa3}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xa4}}, {3, [3]byte{0xe0, 0xb8, 0xa5}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xa6}}, {3, [3]byte{0xe0, 0xb8, 0xa7}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xa8}}, {3, [3]byte{0xe0, 0xb8, 0xa9}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xaa}}, {3, [3]byte{0xe0, 0xb8, 0xab}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xac}}, {3, [3]byte{0xe0, 0xb8, 0xad}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xae}}, {3, [3]byte{0xe0, 0xb8, 0xaf}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xb0}}, {3, [3]byte{0xe0, 0xb8, 0xb1}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xb2}}, {3, [3]byte{0xe0, 0xb8, 0xb3}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xb4}}, {3, [3]byte{0xe0, 0xb8, 0xb5}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xb6}}, {3, [3]byte{0xe0, 0xb8, 0xb7}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xb8}}, {3, [3]byte{0xe0, 0xb8, 0xb9}},\n\t\t{3, [3]byte{0xe0, 0xb8, 0xba}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe0, 0xb8, 0xbf}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x80}}, {3, [3]byte{0xe0, 0xb9, 0x81}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x82}}, {3, [3]byte{0xe0, 0xb9, 0x83}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x84}}, {3, [3]byte{0xe0, 0xb9, 0x85}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x86}}, {3, [3]byte{0xe0, 0xb9, 0x87}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x88}}, {3, [3]byte{0xe0, 0xb9, 0x89}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x8a}}, {3, [3]byte{0xe0, 0xb9, 0x8b}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x8c}}, {3, [3]byte{0xe0, 0xb9, 0x8d}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x8e}}, {3, [3]byte{0xe0, 0xb9, 0x8f}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x90}}, {3, [3]byte{0xe0, 0xb9, 0x91}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x92}}, {3, [3]byte{0xe0, 0xb9, 0x93}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x94}}, {3, [3]byte{0xe0, 0xb9, 0x95}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x96}}, {3, [3]byte{0xe0, 0xb9, 0x97}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x98}}, {3, [3]byte{0xe0, 0xb9, 0x99}},\n\t\t{3, [3]byte{0xe0, 0xb9, 0x9a}}, {3, [3]byte{0xe0, 0xb9, 0x9b}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa1000e01, 0xa2000e02, 0xa3000e03, 0xa4000e04, 0xa5000e05, 0xa6000e06, 0xa7000e07,\n\t\t0xa8000e08, 0xa9000e09, 0xaa000e0a, 0xab000e0b, 0xac000e0c, 0xad000e0d, 0xae000e0e, 0xaf000e0f,\n\t\t0xb0000e10, 0xb1000e11, 0xb2000e12, 0xb3000e13, 0xb4000e14, 0xb5000e15, 0xb6000e16, 0xb7000e17,\n\t\t0xb8000e18, 0xb9000e19, 0xba000e1a, 0xbb000e1b, 0xbc000e1c, 0xbd000e1d, 0xbe000e1e, 0xbf000e1f,\n\t\t0xc0000e20, 0xc1000e21, 0xc2000e22, 0xc3000e23, 0xc4000e24, 0xc5000e25, 0xc6000e26, 0xc7000e27,\n\t\t0xc8000e28, 0xc9000e29, 0xca000e2a, 0xcb000e2b, 0xcc000e2c, 0xcd000e2d, 0xce000e2e, 0xcf000e2f,\n\t\t0xd0000e30, 0xd1000e31, 0xd2000e32, 0xd3000e33, 0xd4000e34, 0xd5000e35, 0xd6000e36, 0xd7000e37,\n\t\t0xd8000e38, 0xd9000e39, 0xda000e3a, 0xdf000e3f, 0xe0000e40, 0xe1000e41, 0xe2000e42, 0xe3000e43,\n\t\t0xe4000e44, 0xe5000e45, 0xe6000e46, 0xe7000e47, 0xe8000e48, 0xe9000e49, 0xea000e4a, 0xeb000e4b,\n\t\t0xec000e4c, 0xed000e4d, 0xee000e4e, 0xef000e4f, 0xf0000e50, 0xf1000e51, 0xf2000e52, 0xf3000e53,\n\t\t0xf4000e54, 0xf5000e55, 0xf6000e56, 0xf7000e57, 0xf8000e58, 0xf9000e59, 0xfa000e5a, 0xfb000e5b,\n\t\t0x96002013, 0x97002014, 0x91002018, 0x92002019, 0x9300201c, 0x9400201d, 0x95002022, 0x85002026,\n\t\t0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac,\n\t\t0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac,\n\t\t0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac,\n\t\t0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac, 0x800020ac,\n\t},\n}\n\n// Windows1250 is the Windows 1250 encoding.\nvar Windows1250 *Charmap = &windows1250\n\nvar windows1250 = Charmap{\n\tname:          \"Windows 1250\",\n\tmib:           identifier.Windows1250,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9e}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {3, [3]byte{0xe2, 0x80, 0xa1}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xb0}},\n\t\t{2, [3]byte{0xc5, 0xa0, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb9}},\n\t\t{2, [3]byte{0xc5, 0x9a, 0x00}}, {2, [3]byte{0xc5, 0xa4, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {2, [3]byte{0xc5, 0xb9, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x84, 0xa2}},\n\t\t{2, [3]byte{0xc5, 0xa1, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{2, [3]byte{0xc5, 0x9b, 0x00}}, {2, [3]byte{0xc5, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbe, 0x00}}, {2, [3]byte{0xc5, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xcb, 0x87, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x98, 0x00}}, {2, [3]byte{0xc5, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc4, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9e, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc5, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x9b, 0x00}}, {2, [3]byte{0xc5, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc4, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9f, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xbd, 0x00}}, {2, [3]byte{0xcb, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xbe, 0x00}}, {2, [3]byte{0xc5, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc4, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc4, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc4, 0x8e, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x90, 0x00}}, {2, [3]byte{0xc5, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x87, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc5, 0x90, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x98, 0x00}}, {2, [3]byte{0xc5, 0xae, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc5, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x95, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc4, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc4, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x87, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x99, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9b, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc4, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x91, 0x00}}, {2, [3]byte{0xc5, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x88, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc5, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x99, 0x00}}, {2, [3]byte{0xc5, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc5, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa3, 0x00}}, {2, [3]byte{0xcb, 0x99, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa40000a4, 0xa60000a6, 0xa70000a7, 0xa80000a8, 0xa90000a9, 0xab0000ab, 0xac0000ac,\n\t\t0xad0000ad, 0xae0000ae, 0xb00000b0, 0xb10000b1, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7,\n\t\t0xb80000b8, 0xbb0000bb, 0xc10000c1, 0xc20000c2, 0xc40000c4, 0xc70000c7, 0xc90000c9, 0xcb0000cb,\n\t\t0xcd0000cd, 0xce0000ce, 0xd30000d3, 0xd40000d4, 0xd60000d6, 0xd70000d7, 0xda0000da, 0xdc0000dc,\n\t\t0xdd0000dd, 0xdf0000df, 0xe10000e1, 0xe20000e2, 0xe40000e4, 0xe70000e7, 0xe90000e9, 0xeb0000eb,\n\t\t0xed0000ed, 0xee0000ee, 0xf30000f3, 0xf40000f4, 0xf60000f6, 0xf70000f7, 0xfa0000fa, 0xfc0000fc,\n\t\t0xfd0000fd, 0xc3000102, 0xe3000103, 0xa5000104, 0xb9000105, 0xc6000106, 0xe6000107, 0xc800010c,\n\t\t0xe800010d, 0xcf00010e, 0xef00010f, 0xd0000110, 0xf0000111, 0xca000118, 0xea000119, 0xcc00011a,\n\t\t0xec00011b, 0xc5000139, 0xe500013a, 0xbc00013d, 0xbe00013e, 0xa3000141, 0xb3000142, 0xd1000143,\n\t\t0xf1000144, 0xd2000147, 0xf2000148, 0xd5000150, 0xf5000151, 0xc0000154, 0xe0000155, 0xd8000158,\n\t\t0xf8000159, 0x8c00015a, 0x9c00015b, 0xaa00015e, 0xba00015f, 0x8a000160, 0x9a000161, 0xde000162,\n\t\t0xfe000163, 0x8d000164, 0x9d000165, 0xd900016e, 0xf900016f, 0xdb000170, 0xfb000171, 0x8f000179,\n\t\t0x9f00017a, 0xaf00017b, 0xbf00017c, 0x8e00017d, 0x9e00017e, 0xa10002c7, 0xa20002d8, 0xff0002d9,\n\t\t0xb20002db, 0xbd0002dd, 0x96002013, 0x97002014, 0x91002018, 0x92002019, 0x8200201a, 0x9300201c,\n\t\t0x9400201d, 0x8400201e, 0x86002020, 0x87002021, 0x95002022, 0x85002026, 0x89002030, 0x8b002039,\n\t\t0x9b00203a, 0x800020ac, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t},\n}\n\n// Windows1251 is the Windows 1251 encoding.\nvar Windows1251 *Charmap = &windows1251\n\nvar windows1251 = Charmap{\n\tname:          \"Windows 1251\",\n\tmib:           identifier.Windows1251,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x82, 0x00}}, {2, [3]byte{0xd0, 0x83, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {2, [3]byte{0xd1, 0x93, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9e}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {3, [3]byte{0xe2, 0x80, 0xa1}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xe2, 0x80, 0xb0}},\n\t\t{2, [3]byte{0xd0, 0x89, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb9}},\n\t\t{2, [3]byte{0xd0, 0x8a, 0x00}}, {2, [3]byte{0xd0, 0x8c, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x8b, 0x00}}, {2, [3]byte{0xd0, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x92, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x84, 0xa2}},\n\t\t{2, [3]byte{0xd1, 0x99, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{2, [3]byte{0xd1, 0x9a, 0x00}}, {2, [3]byte{0xd1, 0x9c, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9b, 0x00}}, {2, [3]byte{0xd1, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xd0, 0x8e, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x9e, 0x00}}, {2, [3]byte{0xd0, 0x88, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xd2, 0x90, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x81, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x84, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xd0, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x86, 0x00}}, {2, [3]byte{0xd1, 0x96, 0x00}},\n\t\t{2, [3]byte{0xd2, 0x91, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x91, 0x00}}, {3, [3]byte{0xe2, 0x84, 0x96}},\n\t\t{2, [3]byte{0xd1, 0x94, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x98, 0x00}}, {2, [3]byte{0xd0, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x95, 0x00}}, {2, [3]byte{0xd1, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x90, 0x00}}, {2, [3]byte{0xd0, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x92, 0x00}}, {2, [3]byte{0xd0, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x94, 0x00}}, {2, [3]byte{0xd0, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x96, 0x00}}, {2, [3]byte{0xd0, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x98, 0x00}}, {2, [3]byte{0xd0, 0x99, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9a, 0x00}}, {2, [3]byte{0xd0, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9c, 0x00}}, {2, [3]byte{0xd0, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xd0, 0x9e, 0x00}}, {2, [3]byte{0xd0, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa0, 0x00}}, {2, [3]byte{0xd0, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa2, 0x00}}, {2, [3]byte{0xd0, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa4, 0x00}}, {2, [3]byte{0xd0, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa6, 0x00}}, {2, [3]byte{0xd0, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xa8, 0x00}}, {2, [3]byte{0xd0, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xaa, 0x00}}, {2, [3]byte{0xd0, 0xab, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xac, 0x00}}, {2, [3]byte{0xd0, 0xad, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xae, 0x00}}, {2, [3]byte{0xd0, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb0, 0x00}}, {2, [3]byte{0xd0, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb2, 0x00}}, {2, [3]byte{0xd0, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb4, 0x00}}, {2, [3]byte{0xd0, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb6, 0x00}}, {2, [3]byte{0xd0, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xb8, 0x00}}, {2, [3]byte{0xd0, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xba, 0x00}}, {2, [3]byte{0xd0, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbc, 0x00}}, {2, [3]byte{0xd0, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xd0, 0xbe, 0x00}}, {2, [3]byte{0xd0, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x80, 0x00}}, {2, [3]byte{0xd1, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x82, 0x00}}, {2, [3]byte{0xd1, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x84, 0x00}}, {2, [3]byte{0xd1, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x86, 0x00}}, {2, [3]byte{0xd1, 0x87, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x88, 0x00}}, {2, [3]byte{0xd1, 0x89, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8a, 0x00}}, {2, [3]byte{0xd1, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8c, 0x00}}, {2, [3]byte{0xd1, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xd1, 0x8e, 0x00}}, {2, [3]byte{0xd1, 0x8f, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa40000a4, 0xa60000a6, 0xa70000a7, 0xa90000a9, 0xab0000ab, 0xac0000ac, 0xad0000ad,\n\t\t0xae0000ae, 0xb00000b0, 0xb10000b1, 0xb50000b5, 0xb60000b6, 0xb70000b7, 0xbb0000bb, 0xa8000401,\n\t\t0x80000402, 0x81000403, 0xaa000404, 0xbd000405, 0xb2000406, 0xaf000407, 0xa3000408, 0x8a000409,\n\t\t0x8c00040a, 0x8e00040b, 0x8d00040c, 0xa100040e, 0x8f00040f, 0xc0000410, 0xc1000411, 0xc2000412,\n\t\t0xc3000413, 0xc4000414, 0xc5000415, 0xc6000416, 0xc7000417, 0xc8000418, 0xc9000419, 0xca00041a,\n\t\t0xcb00041b, 0xcc00041c, 0xcd00041d, 0xce00041e, 0xcf00041f, 0xd0000420, 0xd1000421, 0xd2000422,\n\t\t0xd3000423, 0xd4000424, 0xd5000425, 0xd6000426, 0xd7000427, 0xd8000428, 0xd9000429, 0xda00042a,\n\t\t0xdb00042b, 0xdc00042c, 0xdd00042d, 0xde00042e, 0xdf00042f, 0xe0000430, 0xe1000431, 0xe2000432,\n\t\t0xe3000433, 0xe4000434, 0xe5000435, 0xe6000436, 0xe7000437, 0xe8000438, 0xe9000439, 0xea00043a,\n\t\t0xeb00043b, 0xec00043c, 0xed00043d, 0xee00043e, 0xef00043f, 0xf0000440, 0xf1000441, 0xf2000442,\n\t\t0xf3000443, 0xf4000444, 0xf5000445, 0xf6000446, 0xf7000447, 0xf8000448, 0xf9000449, 0xfa00044a,\n\t\t0xfb00044b, 0xfc00044c, 0xfd00044d, 0xfe00044e, 0xff00044f, 0xb8000451, 0x90000452, 0x83000453,\n\t\t0xba000454, 0xbe000455, 0xb3000456, 0xbf000457, 0xbc000458, 0x9a000459, 0x9c00045a, 0x9e00045b,\n\t\t0x9d00045c, 0xa200045e, 0x9f00045f, 0xa5000490, 0xb4000491, 0x96002013, 0x97002014, 0x91002018,\n\t\t0x92002019, 0x8200201a, 0x9300201c, 0x9400201d, 0x8400201e, 0x86002020, 0x87002021, 0x95002022,\n\t\t0x85002026, 0x89002030, 0x8b002039, 0x9b00203a, 0x880020ac, 0xb9002116, 0x99002122, 0x99002122,\n\t},\n}\n\n// Windows1252 is the Windows 1252 encoding.\nvar Windows1252 *Charmap = &windows1252\n\nvar windows1252 = Charmap{\n\tname:          \"Windows 1252\",\n\tmib:           identifier.Windows1252,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9e}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {3, [3]byte{0xe2, 0x80, 0xa1}},\n\t\t{2, [3]byte{0xcb, 0x86, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb0}},\n\t\t{2, [3]byte{0xc5, 0xa0, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb9}},\n\t\t{2, [3]byte{0xc5, 0x92, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{2, [3]byte{0xcb, 0x9c, 0x00}}, {3, [3]byte{0xe2, 0x84, 0xa2}},\n\t\t{2, [3]byte{0xc5, 0xa1, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{2, [3]byte{0xc5, 0x93, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc5, 0xbe, 0x00}}, {2, [3]byte{0xc5, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xba, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x90, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x92, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc3, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb0, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc3, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbe, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa10000a1, 0xa20000a2, 0xa30000a3, 0xa40000a4, 0xa50000a5, 0xa60000a6, 0xa70000a7,\n\t\t0xa80000a8, 0xa90000a9, 0xaa0000aa, 0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xaf0000af,\n\t\t0xb00000b0, 0xb10000b1, 0xb20000b2, 0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7,\n\t\t0xb80000b8, 0xb90000b9, 0xba0000ba, 0xbb0000bb, 0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xbf0000bf,\n\t\t0xc00000c0, 0xc10000c1, 0xc20000c2, 0xc30000c3, 0xc40000c4, 0xc50000c5, 0xc60000c6, 0xc70000c7,\n\t\t0xc80000c8, 0xc90000c9, 0xca0000ca, 0xcb0000cb, 0xcc0000cc, 0xcd0000cd, 0xce0000ce, 0xcf0000cf,\n\t\t0xd00000d0, 0xd10000d1, 0xd20000d2, 0xd30000d3, 0xd40000d4, 0xd50000d5, 0xd60000d6, 0xd70000d7,\n\t\t0xd80000d8, 0xd90000d9, 0xda0000da, 0xdb0000db, 0xdc0000dc, 0xdd0000dd, 0xde0000de, 0xdf0000df,\n\t\t0xe00000e0, 0xe10000e1, 0xe20000e2, 0xe30000e3, 0xe40000e4, 0xe50000e5, 0xe60000e6, 0xe70000e7,\n\t\t0xe80000e8, 0xe90000e9, 0xea0000ea, 0xeb0000eb, 0xec0000ec, 0xed0000ed, 0xee0000ee, 0xef0000ef,\n\t\t0xf00000f0, 0xf10000f1, 0xf20000f2, 0xf30000f3, 0xf40000f4, 0xf50000f5, 0xf60000f6, 0xf70000f7,\n\t\t0xf80000f8, 0xf90000f9, 0xfa0000fa, 0xfb0000fb, 0xfc0000fc, 0xfd0000fd, 0xfe0000fe, 0xff0000ff,\n\t\t0x8c000152, 0x9c000153, 0x8a000160, 0x9a000161, 0x9f000178, 0x8e00017d, 0x9e00017e, 0x83000192,\n\t\t0x880002c6, 0x980002dc, 0x96002013, 0x97002014, 0x91002018, 0x92002019, 0x8200201a, 0x9300201c,\n\t\t0x9400201d, 0x8400201e, 0x86002020, 0x87002021, 0x95002022, 0x85002026, 0x89002030, 0x8b002039,\n\t\t0x9b00203a, 0x800020ac, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t},\n}\n\n// Windows1253 is the Windows 1253 encoding.\nvar Windows1253 *Charmap = &windows1253\n\nvar windows1253 = Charmap{\n\tname:          \"Windows 1253\",\n\tmib:           identifier.Windows1253,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9e}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {3, [3]byte{0xe2, 0x80, 0xa1}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xb0}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xb9}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x84, 0xa2}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xce, 0x85, 0x00}},\n\t\t{2, [3]byte{0xce, 0x86, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x95}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xce, 0x84, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xce, 0x88, 0x00}}, {2, [3]byte{0xce, 0x89, 0x00}},\n\t\t{2, [3]byte{0xce, 0x8a, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xce, 0x8c, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xce, 0x8e, 0x00}}, {2, [3]byte{0xce, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xce, 0x90, 0x00}}, {2, [3]byte{0xce, 0x91, 0x00}},\n\t\t{2, [3]byte{0xce, 0x92, 0x00}}, {2, [3]byte{0xce, 0x93, 0x00}},\n\t\t{2, [3]byte{0xce, 0x94, 0x00}}, {2, [3]byte{0xce, 0x95, 0x00}},\n\t\t{2, [3]byte{0xce, 0x96, 0x00}}, {2, [3]byte{0xce, 0x97, 0x00}},\n\t\t{2, [3]byte{0xce, 0x98, 0x00}}, {2, [3]byte{0xce, 0x99, 0x00}},\n\t\t{2, [3]byte{0xce, 0x9a, 0x00}}, {2, [3]byte{0xce, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xce, 0x9c, 0x00}}, {2, [3]byte{0xce, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xce, 0x9e, 0x00}}, {2, [3]byte{0xce, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa0, 0x00}}, {2, [3]byte{0xce, 0xa1, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xce, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa4, 0x00}}, {2, [3]byte{0xce, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa6, 0x00}}, {2, [3]byte{0xce, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xce, 0xa8, 0x00}}, {2, [3]byte{0xce, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xce, 0xaa, 0x00}}, {2, [3]byte{0xce, 0xab, 0x00}},\n\t\t{2, [3]byte{0xce, 0xac, 0x00}}, {2, [3]byte{0xce, 0xad, 0x00}},\n\t\t{2, [3]byte{0xce, 0xae, 0x00}}, {2, [3]byte{0xce, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb0, 0x00}}, {2, [3]byte{0xce, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb2, 0x00}}, {2, [3]byte{0xce, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb4, 0x00}}, {2, [3]byte{0xce, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb6, 0x00}}, {2, [3]byte{0xce, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xce, 0xb8, 0x00}}, {2, [3]byte{0xce, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xce, 0xba, 0x00}}, {2, [3]byte{0xce, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xce, 0xbc, 0x00}}, {2, [3]byte{0xce, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xce, 0xbe, 0x00}}, {2, [3]byte{0xce, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x80, 0x00}}, {2, [3]byte{0xcf, 0x81, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x82, 0x00}}, {2, [3]byte{0xcf, 0x83, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x84, 0x00}}, {2, [3]byte{0xcf, 0x85, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x86, 0x00}}, {2, [3]byte{0xcf, 0x87, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x88, 0x00}}, {2, [3]byte{0xcf, 0x89, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x8a, 0x00}}, {2, [3]byte{0xcf, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x8c, 0x00}}, {2, [3]byte{0xcf, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xcf, 0x8e, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa30000a3, 0xa40000a4, 0xa50000a5, 0xa60000a6, 0xa70000a7, 0xa80000a8, 0xa90000a9,\n\t\t0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xb00000b0, 0xb10000b1, 0xb20000b2, 0xb30000b3,\n\t\t0xb50000b5, 0xb60000b6, 0xb70000b7, 0xbb0000bb, 0xbd0000bd, 0x83000192, 0xb4000384, 0xa1000385,\n\t\t0xa2000386, 0xb8000388, 0xb9000389, 0xba00038a, 0xbc00038c, 0xbe00038e, 0xbf00038f, 0xc0000390,\n\t\t0xc1000391, 0xc2000392, 0xc3000393, 0xc4000394, 0xc5000395, 0xc6000396, 0xc7000397, 0xc8000398,\n\t\t0xc9000399, 0xca00039a, 0xcb00039b, 0xcc00039c, 0xcd00039d, 0xce00039e, 0xcf00039f, 0xd00003a0,\n\t\t0xd10003a1, 0xd30003a3, 0xd40003a4, 0xd50003a5, 0xd60003a6, 0xd70003a7, 0xd80003a8, 0xd90003a9,\n\t\t0xda0003aa, 0xdb0003ab, 0xdc0003ac, 0xdd0003ad, 0xde0003ae, 0xdf0003af, 0xe00003b0, 0xe10003b1,\n\t\t0xe20003b2, 0xe30003b3, 0xe40003b4, 0xe50003b5, 0xe60003b6, 0xe70003b7, 0xe80003b8, 0xe90003b9,\n\t\t0xea0003ba, 0xeb0003bb, 0xec0003bc, 0xed0003bd, 0xee0003be, 0xef0003bf, 0xf00003c0, 0xf10003c1,\n\t\t0xf20003c2, 0xf30003c3, 0xf40003c4, 0xf50003c5, 0xf60003c6, 0xf70003c7, 0xf80003c8, 0xf90003c9,\n\t\t0xfa0003ca, 0xfb0003cb, 0xfc0003cc, 0xfd0003cd, 0xfe0003ce, 0x96002013, 0x97002014, 0xaf002015,\n\t\t0x91002018, 0x92002019, 0x8200201a, 0x9300201c, 0x9400201d, 0x8400201e, 0x86002020, 0x87002021,\n\t\t0x95002022, 0x85002026, 0x89002030, 0x8b002039, 0x9b00203a, 0x800020ac, 0x99002122, 0x99002122,\n\t\t0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t\t0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t},\n}\n\n// Windows1254 is the Windows 1254 encoding.\nvar Windows1254 *Charmap = &windows1254\n\nvar windows1254 = Charmap{\n\tname:          \"Windows 1254\",\n\tmib:           identifier.Windows1254,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9e}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {3, [3]byte{0xe2, 0x80, 0xa1}},\n\t\t{2, [3]byte{0xcb, 0x86, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb0}},\n\t\t{2, [3]byte{0xc5, 0xa0, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb9}},\n\t\t{2, [3]byte{0xc5, 0x92, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{2, [3]byte{0xcb, 0x9c, 0x00}}, {3, [3]byte{0xe2, 0x84, 0xa2}},\n\t\t{2, [3]byte{0xc5, 0xa1, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{2, [3]byte{0xc5, 0x93, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xc5, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xba, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc3, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x92, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc4, 0xb0, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9e, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc3, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xac, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x9f, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb2, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc4, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9f, 0x00}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa10000a1, 0xa20000a2, 0xa30000a3, 0xa40000a4, 0xa50000a5, 0xa60000a6, 0xa70000a7,\n\t\t0xa80000a8, 0xa90000a9, 0xaa0000aa, 0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xaf0000af,\n\t\t0xb00000b0, 0xb10000b1, 0xb20000b2, 0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7,\n\t\t0xb80000b8, 0xb90000b9, 0xba0000ba, 0xbb0000bb, 0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xbf0000bf,\n\t\t0xc00000c0, 0xc10000c1, 0xc20000c2, 0xc30000c3, 0xc40000c4, 0xc50000c5, 0xc60000c6, 0xc70000c7,\n\t\t0xc80000c8, 0xc90000c9, 0xca0000ca, 0xcb0000cb, 0xcc0000cc, 0xcd0000cd, 0xce0000ce, 0xcf0000cf,\n\t\t0xd10000d1, 0xd20000d2, 0xd30000d3, 0xd40000d4, 0xd50000d5, 0xd60000d6, 0xd70000d7, 0xd80000d8,\n\t\t0xd90000d9, 0xda0000da, 0xdb0000db, 0xdc0000dc, 0xdf0000df, 0xe00000e0, 0xe10000e1, 0xe20000e2,\n\t\t0xe30000e3, 0xe40000e4, 0xe50000e5, 0xe60000e6, 0xe70000e7, 0xe80000e8, 0xe90000e9, 0xea0000ea,\n\t\t0xeb0000eb, 0xec0000ec, 0xed0000ed, 0xee0000ee, 0xef0000ef, 0xf10000f1, 0xf20000f2, 0xf30000f3,\n\t\t0xf40000f4, 0xf50000f5, 0xf60000f6, 0xf70000f7, 0xf80000f8, 0xf90000f9, 0xfa0000fa, 0xfb0000fb,\n\t\t0xfc0000fc, 0xff0000ff, 0xd000011e, 0xf000011f, 0xdd000130, 0xfd000131, 0x8c000152, 0x9c000153,\n\t\t0xde00015e, 0xfe00015f, 0x8a000160, 0x9a000161, 0x9f000178, 0x83000192, 0x880002c6, 0x980002dc,\n\t\t0x96002013, 0x97002014, 0x91002018, 0x92002019, 0x8200201a, 0x9300201c, 0x9400201d, 0x8400201e,\n\t\t0x86002020, 0x87002021, 0x95002022, 0x85002026, 0x89002030, 0x8b002039, 0x9b00203a, 0x800020ac,\n\t\t0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t},\n}\n\n// Windows1255 is the Windows 1255 encoding.\nvar Windows1255 *Charmap = &windows1255\n\nvar windows1255 = Charmap{\n\tname:          \"Windows 1255\",\n\tmib:           identifier.Windows1255,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9e}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {3, [3]byte{0xe2, 0x80, 0xa1}},\n\t\t{2, [3]byte{0xcb, 0x86, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb0}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xb9}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{2, [3]byte{0xcb, 0x9c, 0x00}}, {3, [3]byte{0xe2, 0x84, 0xa2}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xaa}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x97, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb7, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xd6, 0xb0, 0x00}}, {2, [3]byte{0xd6, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xd6, 0xb2, 0x00}}, {2, [3]byte{0xd6, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd6, 0xb4, 0x00}}, {2, [3]byte{0xd6, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd6, 0xb6, 0x00}}, {2, [3]byte{0xd6, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xd6, 0xb8, 0x00}}, {2, [3]byte{0xd6, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xd6, 0xba, 0x00}}, {2, [3]byte{0xd6, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xd6, 0xbc, 0x00}}, {2, [3]byte{0xd6, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xd6, 0xbe, 0x00}}, {2, [3]byte{0xd6, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x80, 0x00}}, {2, [3]byte{0xd7, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x82, 0x00}}, {2, [3]byte{0xd7, 0x83, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xb0, 0x00}}, {2, [3]byte{0xd7, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xb2, 0x00}}, {2, [3]byte{0xd7, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xb4, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xd7, 0x90, 0x00}}, {2, [3]byte{0xd7, 0x91, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x92, 0x00}}, {2, [3]byte{0xd7, 0x93, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x94, 0x00}}, {2, [3]byte{0xd7, 0x95, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x96, 0x00}}, {2, [3]byte{0xd7, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x98, 0x00}}, {2, [3]byte{0xd7, 0x99, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x9a, 0x00}}, {2, [3]byte{0xd7, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x9c, 0x00}}, {2, [3]byte{0xd7, 0x9d, 0x00}},\n\t\t{2, [3]byte{0xd7, 0x9e, 0x00}}, {2, [3]byte{0xd7, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa0, 0x00}}, {2, [3]byte{0xd7, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa2, 0x00}}, {2, [3]byte{0xd7, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa4, 0x00}}, {2, [3]byte{0xd7, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa6, 0x00}}, {2, [3]byte{0xd7, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xa8, 0x00}}, {2, [3]byte{0xd7, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd7, 0xaa, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x8e}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x8f}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa10000a1, 0xa20000a2, 0xa30000a3, 0xa50000a5, 0xa60000a6, 0xa70000a7, 0xa80000a8,\n\t\t0xa90000a9, 0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xaf0000af, 0xb00000b0, 0xb10000b1,\n\t\t0xb20000b2, 0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7, 0xb80000b8, 0xb90000b9,\n\t\t0xbb0000bb, 0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xbf0000bf, 0xaa0000d7, 0xba0000f7, 0x83000192,\n\t\t0x880002c6, 0x980002dc, 0xc00005b0, 0xc10005b1, 0xc20005b2, 0xc30005b3, 0xc40005b4, 0xc50005b5,\n\t\t0xc60005b6, 0xc70005b7, 0xc80005b8, 0xc90005b9, 0xca0005ba, 0xcb0005bb, 0xcc0005bc, 0xcd0005bd,\n\t\t0xce0005be, 0xcf0005bf, 0xd00005c0, 0xd10005c1, 0xd20005c2, 0xd30005c3, 0xe00005d0, 0xe10005d1,\n\t\t0xe20005d2, 0xe30005d3, 0xe40005d4, 0xe50005d5, 0xe60005d6, 0xe70005d7, 0xe80005d8, 0xe90005d9,\n\t\t0xea0005da, 0xeb0005db, 0xec0005dc, 0xed0005dd, 0xee0005de, 0xef0005df, 0xf00005e0, 0xf10005e1,\n\t\t0xf20005e2, 0xf30005e3, 0xf40005e4, 0xf50005e5, 0xf60005e6, 0xf70005e7, 0xf80005e8, 0xf90005e9,\n\t\t0xfa0005ea, 0xd40005f0, 0xd50005f1, 0xd60005f2, 0xd70005f3, 0xd80005f4, 0xfd00200e, 0xfe00200f,\n\t\t0x96002013, 0x97002014, 0x91002018, 0x92002019, 0x8200201a, 0x9300201c, 0x9400201d, 0x8400201e,\n\t\t0x86002020, 0x87002021, 0x95002022, 0x85002026, 0x89002030, 0x8b002039, 0x9b00203a, 0xa40020aa,\n\t\t0x800020ac, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t\t0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t\t0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t},\n}\n\n// Windows1256 is the Windows 1256 encoding.\nvar Windows1256 *Charmap = &windows1256\n\nvar windows1256 = Charmap{\n\tname:          \"Windows 1256\",\n\tmib:           identifier.Windows1256,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {2, [3]byte{0xd9, 0xbe, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9e}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {3, [3]byte{0xe2, 0x80, 0xa1}},\n\t\t{2, [3]byte{0xcb, 0x86, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb0}},\n\t\t{2, [3]byte{0xd9, 0xb9, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb9}},\n\t\t{2, [3]byte{0xc5, 0x92, 0x00}}, {2, [3]byte{0xda, 0x86, 0x00}},\n\t\t{2, [3]byte{0xda, 0x98, 0x00}}, {2, [3]byte{0xda, 0x88, 0x00}},\n\t\t{2, [3]byte{0xda, 0xaf, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{2, [3]byte{0xda, 0xa9, 0x00}}, {3, [3]byte{0xe2, 0x84, 0xa2}},\n\t\t{2, [3]byte{0xda, 0x91, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{2, [3]byte{0xc5, 0x93, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x8c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x8d}}, {2, [3]byte{0xda, 0xba, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xd8, 0x8c, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xda, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xd8, 0x9b, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {2, [3]byte{0xd8, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xdb, 0x81, 0x00}}, {2, [3]byte{0xd8, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xa2, 0x00}}, {2, [3]byte{0xd8, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xa4, 0x00}}, {2, [3]byte{0xd8, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xa6, 0x00}}, {2, [3]byte{0xd8, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xa8, 0x00}}, {2, [3]byte{0xd8, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xaa, 0x00}}, {2, [3]byte{0xd8, 0xab, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xac, 0x00}}, {2, [3]byte{0xd8, 0xad, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xae, 0x00}}, {2, [3]byte{0xd8, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb0, 0x00}}, {2, [3]byte{0xd8, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb2, 0x00}}, {2, [3]byte{0xd8, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb4, 0x00}}, {2, [3]byte{0xd8, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb7, 0x00}}, {2, [3]byte{0xd8, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xd8, 0xb9, 0x00}}, {2, [3]byte{0xd8, 0xba, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x80, 0x00}}, {2, [3]byte{0xd9, 0x81, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x82, 0x00}}, {2, [3]byte{0xd9, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xd9, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xd9, 0x85, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x86, 0x00}}, {2, [3]byte{0xd9, 0x87, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x88, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x89, 0x00}}, {2, [3]byte{0xd9, 0x8a, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x8b, 0x00}}, {2, [3]byte{0xd9, 0x8c, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x8d, 0x00}}, {2, [3]byte{0xd9, 0x8e, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xd9, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x90, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x91, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xd9, 0x92, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {3, [3]byte{0xe2, 0x80, 0x8e}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x8f}}, {2, [3]byte{0xdb, 0x92, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa20000a2, 0xa30000a3, 0xa40000a4, 0xa50000a5, 0xa60000a6, 0xa70000a7, 0xa80000a8,\n\t\t0xa90000a9, 0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xaf0000af, 0xb00000b0, 0xb10000b1,\n\t\t0xb20000b2, 0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7, 0xb80000b8, 0xb90000b9,\n\t\t0xbb0000bb, 0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xd70000d7, 0xe00000e0, 0xe20000e2, 0xe70000e7,\n\t\t0xe80000e8, 0xe90000e9, 0xea0000ea, 0xeb0000eb, 0xee0000ee, 0xef0000ef, 0xf40000f4, 0xf70000f7,\n\t\t0xf90000f9, 0xfb0000fb, 0xfc0000fc, 0x8c000152, 0x9c000153, 0x83000192, 0x880002c6, 0xa100060c,\n\t\t0xba00061b, 0xbf00061f, 0xc1000621, 0xc2000622, 0xc3000623, 0xc4000624, 0xc5000625, 0xc6000626,\n\t\t0xc7000627, 0xc8000628, 0xc9000629, 0xca00062a, 0xcb00062b, 0xcc00062c, 0xcd00062d, 0xce00062e,\n\t\t0xcf00062f, 0xd0000630, 0xd1000631, 0xd2000632, 0xd3000633, 0xd4000634, 0xd5000635, 0xd6000636,\n\t\t0xd8000637, 0xd9000638, 0xda000639, 0xdb00063a, 0xdc000640, 0xdd000641, 0xde000642, 0xdf000643,\n\t\t0xe1000644, 0xe3000645, 0xe4000646, 0xe5000647, 0xe6000648, 0xec000649, 0xed00064a, 0xf000064b,\n\t\t0xf100064c, 0xf200064d, 0xf300064e, 0xf500064f, 0xf6000650, 0xf8000651, 0xfa000652, 0x8a000679,\n\t\t0x8100067e, 0x8d000686, 0x8f000688, 0x9a000691, 0x8e000698, 0x980006a9, 0x900006af, 0x9f0006ba,\n\t\t0xaa0006be, 0xc00006c1, 0xff0006d2, 0x9d00200c, 0x9e00200d, 0xfd00200e, 0xfe00200f, 0x96002013,\n\t\t0x97002014, 0x91002018, 0x92002019, 0x8200201a, 0x9300201c, 0x9400201d, 0x8400201e, 0x86002020,\n\t\t0x87002021, 0x95002022, 0x85002026, 0x89002030, 0x8b002039, 0x9b00203a, 0x800020ac, 0x99002122,\n\t},\n}\n\n// Windows1257 is the Windows 1257 encoding.\nvar Windows1257 *Charmap = &windows1257\n\nvar windows1257 = Charmap{\n\tname:          \"Windows 1257\",\n\tmib:           identifier.Windows1257,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9e}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {3, [3]byte{0xe2, 0x80, 0xa1}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xb0}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xb9}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xc2, 0xa8, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x87, 0x00}}, {2, [3]byte{0xc2, 0xb8, 0x00}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x84, 0xa2}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xcb, 0x9b, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x96, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc3, 0x86, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x97, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {2, [3]byte{0xc3, 0xa6, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x84, 0x00}}, {2, [3]byte{0xc4, 0xae, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x80, 0x00}}, {2, [3]byte{0xc4, 0x86, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x98, 0x00}}, {2, [3]byte{0xc4, 0x92, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb9, 0x00}}, {2, [3]byte{0xc4, 0x96, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xa2, 0x00}}, {2, [3]byte{0xc4, 0xb6, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xaa, 0x00}}, {2, [3]byte{0xc4, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa0, 0x00}}, {2, [3]byte{0xc5, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x85, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x8c, 0x00}}, {2, [3]byte{0xc3, 0x95, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb2, 0x00}}, {2, [3]byte{0xc5, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9a, 0x00}}, {2, [3]byte{0xc5, 0xaa, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc5, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbd, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x85, 0x00}}, {2, [3]byte{0xc4, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x81, 0x00}}, {2, [3]byte{0xc4, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x99, 0x00}}, {2, [3]byte{0xc4, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xba, 0x00}}, {2, [3]byte{0xc4, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xa3, 0x00}}, {2, [3]byte{0xc4, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc4, 0xab, 0x00}}, {2, [3]byte{0xc4, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xa1, 0x00}}, {2, [3]byte{0xc5, 0x84, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x86, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x8d, 0x00}}, {2, [3]byte{0xc3, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xb3, 0x00}}, {2, [3]byte{0xc5, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc5, 0x9b, 0x00}}, {2, [3]byte{0xc5, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc5, 0xbc, 0x00}},\n\t\t{2, [3]byte{0xc5, 0xbe, 0x00}}, {2, [3]byte{0xcb, 0x99, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa20000a2, 0xa30000a3, 0xa40000a4, 0xa60000a6, 0xa70000a7, 0x8d0000a8, 0xa90000a9,\n\t\t0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0x9d0000af, 0xb00000b0, 0xb10000b1, 0xb20000b2,\n\t\t0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7, 0x8f0000b8, 0xb90000b9, 0xbb0000bb,\n\t\t0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xc40000c4, 0xc50000c5, 0xaf0000c6, 0xc90000c9, 0xd30000d3,\n\t\t0xd50000d5, 0xd60000d6, 0xd70000d7, 0xa80000d8, 0xdc0000dc, 0xdf0000df, 0xe40000e4, 0xe50000e5,\n\t\t0xbf0000e6, 0xe90000e9, 0xf30000f3, 0xf50000f5, 0xf60000f6, 0xf70000f7, 0xb80000f8, 0xfc0000fc,\n\t\t0xc2000100, 0xe2000101, 0xc0000104, 0xe0000105, 0xc3000106, 0xe3000107, 0xc800010c, 0xe800010d,\n\t\t0xc7000112, 0xe7000113, 0xcb000116, 0xeb000117, 0xc6000118, 0xe6000119, 0xcc000122, 0xec000123,\n\t\t0xce00012a, 0xee00012b, 0xc100012e, 0xe100012f, 0xcd000136, 0xed000137, 0xcf00013b, 0xef00013c,\n\t\t0xd9000141, 0xf9000142, 0xd1000143, 0xf1000144, 0xd2000145, 0xf2000146, 0xd400014c, 0xf400014d,\n\t\t0xaa000156, 0xba000157, 0xda00015a, 0xfa00015b, 0xd0000160, 0xf0000161, 0xdb00016a, 0xfb00016b,\n\t\t0xd8000172, 0xf8000173, 0xca000179, 0xea00017a, 0xdd00017b, 0xfd00017c, 0xde00017d, 0xfe00017e,\n\t\t0x8e0002c7, 0xff0002d9, 0x9e0002db, 0x96002013, 0x97002014, 0x91002018, 0x92002019, 0x8200201a,\n\t\t0x9300201c, 0x9400201d, 0x8400201e, 0x86002020, 0x87002021, 0x95002022, 0x85002026, 0x89002030,\n\t\t0x8b002039, 0x9b00203a, 0x800020ac, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t\t0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t},\n}\n\n// Windows1258 is the Windows 1258 encoding.\nvar Windows1258 *Charmap = &windows1258\n\nvar windows1258 = Charmap{\n\tname:          \"Windows 1258\",\n\tmib:           identifier.Windows1258,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xac}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9a}}, {2, [3]byte{0xc6, 0x92, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9e}}, {3, [3]byte{0xe2, 0x80, 0xa6}},\n\t\t{3, [3]byte{0xe2, 0x80, 0xa0}}, {3, [3]byte{0xe2, 0x80, 0xa1}},\n\t\t{2, [3]byte{0xcb, 0x86, 0x00}}, {3, [3]byte{0xe2, 0x80, 0xb0}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xb9}},\n\t\t{2, [3]byte{0xc5, 0x92, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0x98}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x99}}, {3, [3]byte{0xe2, 0x80, 0x9c}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x9d}}, {3, [3]byte{0xe2, 0x80, 0xa2}},\n\t\t{3, [3]byte{0xe2, 0x80, 0x93}}, {3, [3]byte{0xe2, 0x80, 0x94}},\n\t\t{2, [3]byte{0xcb, 0x9c, 0x00}}, {3, [3]byte{0xe2, 0x84, 0xa2}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {3, [3]byte{0xe2, 0x80, 0xba}},\n\t\t{2, [3]byte{0xc5, 0x93, 0x00}}, {3, [3]byte{0xef, 0xbf, 0xbd}},\n\t\t{3, [3]byte{0xef, 0xbf, 0xbd}}, {2, [3]byte{0xc5, 0xb8, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa0, 0x00}}, {2, [3]byte{0xc2, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa2, 0x00}}, {2, [3]byte{0xc2, 0xa3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa4, 0x00}}, {2, [3]byte{0xc2, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa6, 0x00}}, {2, [3]byte{0xc2, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xa8, 0x00}}, {2, [3]byte{0xc2, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xaa, 0x00}}, {2, [3]byte{0xc2, 0xab, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xac, 0x00}}, {2, [3]byte{0xc2, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xae, 0x00}}, {2, [3]byte{0xc2, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb0, 0x00}}, {2, [3]byte{0xc2, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb2, 0x00}}, {2, [3]byte{0xc2, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb4, 0x00}}, {2, [3]byte{0xc2, 0xb5, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb6, 0x00}}, {2, [3]byte{0xc2, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xb8, 0x00}}, {2, [3]byte{0xc2, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xba, 0x00}}, {2, [3]byte{0xc2, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbc, 0x00}}, {2, [3]byte{0xc2, 0xbd, 0x00}},\n\t\t{2, [3]byte{0xc2, 0xbe, 0x00}}, {2, [3]byte{0xc2, 0xbf, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x81, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x82, 0x00}}, {2, [3]byte{0xc4, 0x82, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x84, 0x00}}, {2, [3]byte{0xc3, 0x85, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x86, 0x00}}, {2, [3]byte{0xc3, 0x87, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x88, 0x00}}, {2, [3]byte{0xc3, 0x89, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8a, 0x00}}, {2, [3]byte{0xc3, 0x8b, 0x00}},\n\t\t{2, [3]byte{0xcc, 0x80, 0x00}}, {2, [3]byte{0xc3, 0x8d, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x8e, 0x00}}, {2, [3]byte{0xc3, 0x8f, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x90, 0x00}}, {2, [3]byte{0xc3, 0x91, 0x00}},\n\t\t{2, [3]byte{0xcc, 0x89, 0x00}}, {2, [3]byte{0xc3, 0x93, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x94, 0x00}}, {2, [3]byte{0xc6, 0xa0, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x96, 0x00}}, {2, [3]byte{0xc3, 0x97, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x98, 0x00}}, {2, [3]byte{0xc3, 0x99, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9a, 0x00}}, {2, [3]byte{0xc3, 0x9b, 0x00}},\n\t\t{2, [3]byte{0xc3, 0x9c, 0x00}}, {2, [3]byte{0xc6, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xcc, 0x83, 0x00}}, {2, [3]byte{0xc3, 0x9f, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa0, 0x00}}, {2, [3]byte{0xc3, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa2, 0x00}}, {2, [3]byte{0xc4, 0x83, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa4, 0x00}}, {2, [3]byte{0xc3, 0xa5, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa6, 0x00}}, {2, [3]byte{0xc3, 0xa7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xa8, 0x00}}, {2, [3]byte{0xc3, 0xa9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xaa, 0x00}}, {2, [3]byte{0xc3, 0xab, 0x00}},\n\t\t{2, [3]byte{0xcc, 0x81, 0x00}}, {2, [3]byte{0xc3, 0xad, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xae, 0x00}}, {2, [3]byte{0xc3, 0xaf, 0x00}},\n\t\t{2, [3]byte{0xc4, 0x91, 0x00}}, {2, [3]byte{0xc3, 0xb1, 0x00}},\n\t\t{2, [3]byte{0xcc, 0xa3, 0x00}}, {2, [3]byte{0xc3, 0xb3, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb4, 0x00}}, {2, [3]byte{0xc6, 0xa1, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb6, 0x00}}, {2, [3]byte{0xc3, 0xb7, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xb8, 0x00}}, {2, [3]byte{0xc3, 0xb9, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xba, 0x00}}, {2, [3]byte{0xc3, 0xbb, 0x00}},\n\t\t{2, [3]byte{0xc3, 0xbc, 0x00}}, {2, [3]byte{0xc6, 0xb0, 0x00}},\n\t\t{3, [3]byte{0xe2, 0x82, 0xab}}, {2, [3]byte{0xc3, 0xbf, 0x00}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0xa00000a0, 0xa10000a1, 0xa20000a2, 0xa30000a3, 0xa40000a4, 0xa50000a5, 0xa60000a6, 0xa70000a7,\n\t\t0xa80000a8, 0xa90000a9, 0xaa0000aa, 0xab0000ab, 0xac0000ac, 0xad0000ad, 0xae0000ae, 0xaf0000af,\n\t\t0xb00000b0, 0xb10000b1, 0xb20000b2, 0xb30000b3, 0xb40000b4, 0xb50000b5, 0xb60000b6, 0xb70000b7,\n\t\t0xb80000b8, 0xb90000b9, 0xba0000ba, 0xbb0000bb, 0xbc0000bc, 0xbd0000bd, 0xbe0000be, 0xbf0000bf,\n\t\t0xc00000c0, 0xc10000c1, 0xc20000c2, 0xc40000c4, 0xc50000c5, 0xc60000c6, 0xc70000c7, 0xc80000c8,\n\t\t0xc90000c9, 0xca0000ca, 0xcb0000cb, 0xcd0000cd, 0xce0000ce, 0xcf0000cf, 0xd10000d1, 0xd30000d3,\n\t\t0xd40000d4, 0xd60000d6, 0xd70000d7, 0xd80000d8, 0xd90000d9, 0xda0000da, 0xdb0000db, 0xdc0000dc,\n\t\t0xdf0000df, 0xe00000e0, 0xe10000e1, 0xe20000e2, 0xe40000e4, 0xe50000e5, 0xe60000e6, 0xe70000e7,\n\t\t0xe80000e8, 0xe90000e9, 0xea0000ea, 0xeb0000eb, 0xed0000ed, 0xee0000ee, 0xef0000ef, 0xf10000f1,\n\t\t0xf30000f3, 0xf40000f4, 0xf60000f6, 0xf70000f7, 0xf80000f8, 0xf90000f9, 0xfa0000fa, 0xfb0000fb,\n\t\t0xfc0000fc, 0xff0000ff, 0xc3000102, 0xe3000103, 0xd0000110, 0xf0000111, 0x8c000152, 0x9c000153,\n\t\t0x9f000178, 0x83000192, 0xd50001a0, 0xf50001a1, 0xdd0001af, 0xfd0001b0, 0x880002c6, 0x980002dc,\n\t\t0xcc000300, 0xec000301, 0xde000303, 0xd2000309, 0xf2000323, 0x96002013, 0x97002014, 0x91002018,\n\t\t0x92002019, 0x8200201a, 0x9300201c, 0x9400201d, 0x8400201e, 0x86002020, 0x87002021, 0x95002022,\n\t\t0x85002026, 0x89002030, 0x8b002039, 0x9b00203a, 0xfe0020ab, 0x800020ac, 0x99002122, 0x99002122,\n\t\t0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122, 0x99002122,\n\t},\n}\n\n// XUserDefined is the X-User-Defined encoding.\n//\n// It is defined at http://encoding.spec.whatwg.org/#x-user-defined\nvar XUserDefined *Charmap = &xUserDefined\n\nvar xUserDefined = Charmap{\n\tname:          \"X-User-Defined\",\n\tmib:           identifier.XUserDefined,\n\tasciiSuperset: true,\n\tlow:           0x80,\n\treplacement:   0x1a,\n\tdecode: [256]utf8Enc{\n\t\t{1, [3]byte{0x00, 0x00, 0x00}}, {1, [3]byte{0x01, 0x00, 0x00}},\n\t\t{1, [3]byte{0x02, 0x00, 0x00}}, {1, [3]byte{0x03, 0x00, 0x00}},\n\t\t{1, [3]byte{0x04, 0x00, 0x00}}, {1, [3]byte{0x05, 0x00, 0x00}},\n\t\t{1, [3]byte{0x06, 0x00, 0x00}}, {1, [3]byte{0x07, 0x00, 0x00}},\n\t\t{1, [3]byte{0x08, 0x00, 0x00}}, {1, [3]byte{0x09, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0a, 0x00, 0x00}}, {1, [3]byte{0x0b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0c, 0x00, 0x00}}, {1, [3]byte{0x0d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x0e, 0x00, 0x00}}, {1, [3]byte{0x0f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x10, 0x00, 0x00}}, {1, [3]byte{0x11, 0x00, 0x00}},\n\t\t{1, [3]byte{0x12, 0x00, 0x00}}, {1, [3]byte{0x13, 0x00, 0x00}},\n\t\t{1, [3]byte{0x14, 0x00, 0x00}}, {1, [3]byte{0x15, 0x00, 0x00}},\n\t\t{1, [3]byte{0x16, 0x00, 0x00}}, {1, [3]byte{0x17, 0x00, 0x00}},\n\t\t{1, [3]byte{0x18, 0x00, 0x00}}, {1, [3]byte{0x19, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1a, 0x00, 0x00}}, {1, [3]byte{0x1b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1c, 0x00, 0x00}}, {1, [3]byte{0x1d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x1e, 0x00, 0x00}}, {1, [3]byte{0x1f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x20, 0x00, 0x00}}, {1, [3]byte{0x21, 0x00, 0x00}},\n\t\t{1, [3]byte{0x22, 0x00, 0x00}}, {1, [3]byte{0x23, 0x00, 0x00}},\n\t\t{1, [3]byte{0x24, 0x00, 0x00}}, {1, [3]byte{0x25, 0x00, 0x00}},\n\t\t{1, [3]byte{0x26, 0x00, 0x00}}, {1, [3]byte{0x27, 0x00, 0x00}},\n\t\t{1, [3]byte{0x28, 0x00, 0x00}}, {1, [3]byte{0x29, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2a, 0x00, 0x00}}, {1, [3]byte{0x2b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2c, 0x00, 0x00}}, {1, [3]byte{0x2d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x2e, 0x00, 0x00}}, {1, [3]byte{0x2f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x30, 0x00, 0x00}}, {1, [3]byte{0x31, 0x00, 0x00}},\n\t\t{1, [3]byte{0x32, 0x00, 0x00}}, {1, [3]byte{0x33, 0x00, 0x00}},\n\t\t{1, [3]byte{0x34, 0x00, 0x00}}, {1, [3]byte{0x35, 0x00, 0x00}},\n\t\t{1, [3]byte{0x36, 0x00, 0x00}}, {1, [3]byte{0x37, 0x00, 0x00}},\n\t\t{1, [3]byte{0x38, 0x00, 0x00}}, {1, [3]byte{0x39, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3a, 0x00, 0x00}}, {1, [3]byte{0x3b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3c, 0x00, 0x00}}, {1, [3]byte{0x3d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x3e, 0x00, 0x00}}, {1, [3]byte{0x3f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x40, 0x00, 0x00}}, {1, [3]byte{0x41, 0x00, 0x00}},\n\t\t{1, [3]byte{0x42, 0x00, 0x00}}, {1, [3]byte{0x43, 0x00, 0x00}},\n\t\t{1, [3]byte{0x44, 0x00, 0x00}}, {1, [3]byte{0x45, 0x00, 0x00}},\n\t\t{1, [3]byte{0x46, 0x00, 0x00}}, {1, [3]byte{0x47, 0x00, 0x00}},\n\t\t{1, [3]byte{0x48, 0x00, 0x00}}, {1, [3]byte{0x49, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4a, 0x00, 0x00}}, {1, [3]byte{0x4b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4c, 0x00, 0x00}}, {1, [3]byte{0x4d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x4e, 0x00, 0x00}}, {1, [3]byte{0x4f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x50, 0x00, 0x00}}, {1, [3]byte{0x51, 0x00, 0x00}},\n\t\t{1, [3]byte{0x52, 0x00, 0x00}}, {1, [3]byte{0x53, 0x00, 0x00}},\n\t\t{1, [3]byte{0x54, 0x00, 0x00}}, {1, [3]byte{0x55, 0x00, 0x00}},\n\t\t{1, [3]byte{0x56, 0x00, 0x00}}, {1, [3]byte{0x57, 0x00, 0x00}},\n\t\t{1, [3]byte{0x58, 0x00, 0x00}}, {1, [3]byte{0x59, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5a, 0x00, 0x00}}, {1, [3]byte{0x5b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5c, 0x00, 0x00}}, {1, [3]byte{0x5d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x5e, 0x00, 0x00}}, {1, [3]byte{0x5f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x60, 0x00, 0x00}}, {1, [3]byte{0x61, 0x00, 0x00}},\n\t\t{1, [3]byte{0x62, 0x00, 0x00}}, {1, [3]byte{0x63, 0x00, 0x00}},\n\t\t{1, [3]byte{0x64, 0x00, 0x00}}, {1, [3]byte{0x65, 0x00, 0x00}},\n\t\t{1, [3]byte{0x66, 0x00, 0x00}}, {1, [3]byte{0x67, 0x00, 0x00}},\n\t\t{1, [3]byte{0x68, 0x00, 0x00}}, {1, [3]byte{0x69, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6a, 0x00, 0x00}}, {1, [3]byte{0x6b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6c, 0x00, 0x00}}, {1, [3]byte{0x6d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x6e, 0x00, 0x00}}, {1, [3]byte{0x6f, 0x00, 0x00}},\n\t\t{1, [3]byte{0x70, 0x00, 0x00}}, {1, [3]byte{0x71, 0x00, 0x00}},\n\t\t{1, [3]byte{0x72, 0x00, 0x00}}, {1, [3]byte{0x73, 0x00, 0x00}},\n\t\t{1, [3]byte{0x74, 0x00, 0x00}}, {1, [3]byte{0x75, 0x00, 0x00}},\n\t\t{1, [3]byte{0x76, 0x00, 0x00}}, {1, [3]byte{0x77, 0x00, 0x00}},\n\t\t{1, [3]byte{0x78, 0x00, 0x00}}, {1, [3]byte{0x79, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7a, 0x00, 0x00}}, {1, [3]byte{0x7b, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7c, 0x00, 0x00}}, {1, [3]byte{0x7d, 0x00, 0x00}},\n\t\t{1, [3]byte{0x7e, 0x00, 0x00}}, {1, [3]byte{0x7f, 0x00, 0x00}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x80}}, {3, [3]byte{0xef, 0x9e, 0x81}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x82}}, {3, [3]byte{0xef, 0x9e, 0x83}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x84}}, {3, [3]byte{0xef, 0x9e, 0x85}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x86}}, {3, [3]byte{0xef, 0x9e, 0x87}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x88}}, {3, [3]byte{0xef, 0x9e, 0x89}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x8a}}, {3, [3]byte{0xef, 0x9e, 0x8b}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x8c}}, {3, [3]byte{0xef, 0x9e, 0x8d}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x8e}}, {3, [3]byte{0xef, 0x9e, 0x8f}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x90}}, {3, [3]byte{0xef, 0x9e, 0x91}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x92}}, {3, [3]byte{0xef, 0x9e, 0x93}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x94}}, {3, [3]byte{0xef, 0x9e, 0x95}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x96}}, {3, [3]byte{0xef, 0x9e, 0x97}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x98}}, {3, [3]byte{0xef, 0x9e, 0x99}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x9a}}, {3, [3]byte{0xef, 0x9e, 0x9b}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x9c}}, {3, [3]byte{0xef, 0x9e, 0x9d}},\n\t\t{3, [3]byte{0xef, 0x9e, 0x9e}}, {3, [3]byte{0xef, 0x9e, 0x9f}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xa0}}, {3, [3]byte{0xef, 0x9e, 0xa1}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xa2}}, {3, [3]byte{0xef, 0x9e, 0xa3}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xa4}}, {3, [3]byte{0xef, 0x9e, 0xa5}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xa6}}, {3, [3]byte{0xef, 0x9e, 0xa7}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xa8}}, {3, [3]byte{0xef, 0x9e, 0xa9}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xaa}}, {3, [3]byte{0xef, 0x9e, 0xab}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xac}}, {3, [3]byte{0xef, 0x9e, 0xad}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xae}}, {3, [3]byte{0xef, 0x9e, 0xaf}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xb0}}, {3, [3]byte{0xef, 0x9e, 0xb1}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xb2}}, {3, [3]byte{0xef, 0x9e, 0xb3}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xb4}}, {3, [3]byte{0xef, 0x9e, 0xb5}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xb6}}, {3, [3]byte{0xef, 0x9e, 0xb7}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xb8}}, {3, [3]byte{0xef, 0x9e, 0xb9}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xba}}, {3, [3]byte{0xef, 0x9e, 0xbb}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xbc}}, {3, [3]byte{0xef, 0x9e, 0xbd}},\n\t\t{3, [3]byte{0xef, 0x9e, 0xbe}}, {3, [3]byte{0xef, 0x9e, 0xbf}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x80}}, {3, [3]byte{0xef, 0x9f, 0x81}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x82}}, {3, [3]byte{0xef, 0x9f, 0x83}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x84}}, {3, [3]byte{0xef, 0x9f, 0x85}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x86}}, {3, [3]byte{0xef, 0x9f, 0x87}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x88}}, {3, [3]byte{0xef, 0x9f, 0x89}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x8a}}, {3, [3]byte{0xef, 0x9f, 0x8b}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x8c}}, {3, [3]byte{0xef, 0x9f, 0x8d}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x8e}}, {3, [3]byte{0xef, 0x9f, 0x8f}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x90}}, {3, [3]byte{0xef, 0x9f, 0x91}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x92}}, {3, [3]byte{0xef, 0x9f, 0x93}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x94}}, {3, [3]byte{0xef, 0x9f, 0x95}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x96}}, {3, [3]byte{0xef, 0x9f, 0x97}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x98}}, {3, [3]byte{0xef, 0x9f, 0x99}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x9a}}, {3, [3]byte{0xef, 0x9f, 0x9b}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x9c}}, {3, [3]byte{0xef, 0x9f, 0x9d}},\n\t\t{3, [3]byte{0xef, 0x9f, 0x9e}}, {3, [3]byte{0xef, 0x9f, 0x9f}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xa0}}, {3, [3]byte{0xef, 0x9f, 0xa1}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xa2}}, {3, [3]byte{0xef, 0x9f, 0xa3}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xa4}}, {3, [3]byte{0xef, 0x9f, 0xa5}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xa6}}, {3, [3]byte{0xef, 0x9f, 0xa7}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xa8}}, {3, [3]byte{0xef, 0x9f, 0xa9}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xaa}}, {3, [3]byte{0xef, 0x9f, 0xab}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xac}}, {3, [3]byte{0xef, 0x9f, 0xad}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xae}}, {3, [3]byte{0xef, 0x9f, 0xaf}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xb0}}, {3, [3]byte{0xef, 0x9f, 0xb1}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xb2}}, {3, [3]byte{0xef, 0x9f, 0xb3}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xb4}}, {3, [3]byte{0xef, 0x9f, 0xb5}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xb6}}, {3, [3]byte{0xef, 0x9f, 0xb7}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xb8}}, {3, [3]byte{0xef, 0x9f, 0xb9}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xba}}, {3, [3]byte{0xef, 0x9f, 0xbb}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xbc}}, {3, [3]byte{0xef, 0x9f, 0xbd}},\n\t\t{3, [3]byte{0xef, 0x9f, 0xbe}}, {3, [3]byte{0xef, 0x9f, 0xbf}},\n\t},\n\tencode: [256]uint32{\n\t\t0x00000000, 0x01000001, 0x02000002, 0x03000003, 0x04000004, 0x05000005, 0x06000006, 0x07000007,\n\t\t0x08000008, 0x09000009, 0x0a00000a, 0x0b00000b, 0x0c00000c, 0x0d00000d, 0x0e00000e, 0x0f00000f,\n\t\t0x10000010, 0x11000011, 0x12000012, 0x13000013, 0x14000014, 0x15000015, 0x16000016, 0x17000017,\n\t\t0x18000018, 0x19000019, 0x1a00001a, 0x1b00001b, 0x1c00001c, 0x1d00001d, 0x1e00001e, 0x1f00001f,\n\t\t0x20000020, 0x21000021, 0x22000022, 0x23000023, 0x24000024, 0x25000025, 0x26000026, 0x27000027,\n\t\t0x28000028, 0x29000029, 0x2a00002a, 0x2b00002b, 0x2c00002c, 0x2d00002d, 0x2e00002e, 0x2f00002f,\n\t\t0x30000030, 0x31000031, 0x32000032, 0x33000033, 0x34000034, 0x35000035, 0x36000036, 0x37000037,\n\t\t0x38000038, 0x39000039, 0x3a00003a, 0x3b00003b, 0x3c00003c, 0x3d00003d, 0x3e00003e, 0x3f00003f,\n\t\t0x40000040, 0x41000041, 0x42000042, 0x43000043, 0x44000044, 0x45000045, 0x46000046, 0x47000047,\n\t\t0x48000048, 0x49000049, 0x4a00004a, 0x4b00004b, 0x4c00004c, 0x4d00004d, 0x4e00004e, 0x4f00004f,\n\t\t0x50000050, 0x51000051, 0x52000052, 0x53000053, 0x54000054, 0x55000055, 0x56000056, 0x57000057,\n\t\t0x58000058, 0x59000059, 0x5a00005a, 0x5b00005b, 0x5c00005c, 0x5d00005d, 0x5e00005e, 0x5f00005f,\n\t\t0x60000060, 0x61000061, 0x62000062, 0x63000063, 0x64000064, 0x65000065, 0x66000066, 0x67000067,\n\t\t0x68000068, 0x69000069, 0x6a00006a, 0x6b00006b, 0x6c00006c, 0x6d00006d, 0x6e00006e, 0x6f00006f,\n\t\t0x70000070, 0x71000071, 0x72000072, 0x73000073, 0x74000074, 0x75000075, 0x76000076, 0x77000077,\n\t\t0x78000078, 0x79000079, 0x7a00007a, 0x7b00007b, 0x7c00007c, 0x7d00007d, 0x7e00007e, 0x7f00007f,\n\t\t0x8000f780, 0x8100f781, 0x8200f782, 0x8300f783, 0x8400f784, 0x8500f785, 0x8600f786, 0x8700f787,\n\t\t0x8800f788, 0x8900f789, 0x8a00f78a, 0x8b00f78b, 0x8c00f78c, 0x8d00f78d, 0x8e00f78e, 0x8f00f78f,\n\t\t0x9000f790, 0x9100f791, 0x9200f792, 0x9300f793, 0x9400f794, 0x9500f795, 0x9600f796, 0x9700f797,\n\t\t0x9800f798, 0x9900f799, 0x9a00f79a, 0x9b00f79b, 0x9c00f79c, 0x9d00f79d, 0x9e00f79e, 0x9f00f79f,\n\t\t0xa000f7a0, 0xa100f7a1, 0xa200f7a2, 0xa300f7a3, 0xa400f7a4, 0xa500f7a5, 0xa600f7a6, 0xa700f7a7,\n\t\t0xa800f7a8, 0xa900f7a9, 0xaa00f7aa, 0xab00f7ab, 0xac00f7ac, 0xad00f7ad, 0xae00f7ae, 0xaf00f7af,\n\t\t0xb000f7b0, 0xb100f7b1, 0xb200f7b2, 0xb300f7b3, 0xb400f7b4, 0xb500f7b5, 0xb600f7b6, 0xb700f7b7,\n\t\t0xb800f7b8, 0xb900f7b9, 0xba00f7ba, 0xbb00f7bb, 0xbc00f7bc, 0xbd00f7bd, 0xbe00f7be, 0xbf00f7bf,\n\t\t0xc000f7c0, 0xc100f7c1, 0xc200f7c2, 0xc300f7c3, 0xc400f7c4, 0xc500f7c5, 0xc600f7c6, 0xc700f7c7,\n\t\t0xc800f7c8, 0xc900f7c9, 0xca00f7ca, 0xcb00f7cb, 0xcc00f7cc, 0xcd00f7cd, 0xce00f7ce, 0xcf00f7cf,\n\t\t0xd000f7d0, 0xd100f7d1, 0xd200f7d2, 0xd300f7d3, 0xd400f7d4, 0xd500f7d5, 0xd600f7d6, 0xd700f7d7,\n\t\t0xd800f7d8, 0xd900f7d9, 0xda00f7da, 0xdb00f7db, 0xdc00f7dc, 0xdd00f7dd, 0xde00f7de, 0xdf00f7df,\n\t\t0xe000f7e0, 0xe100f7e1, 0xe200f7e2, 0xe300f7e3, 0xe400f7e4, 0xe500f7e5, 0xe600f7e6, 0xe700f7e7,\n\t\t0xe800f7e8, 0xe900f7e9, 0xea00f7ea, 0xeb00f7eb, 0xec00f7ec, 0xed00f7ed, 0xee00f7ee, 0xef00f7ef,\n\t\t0xf000f7f0, 0xf100f7f1, 0xf200f7f2, 0xf300f7f3, 0xf400f7f4, 0xf500f7f5, 0xf600f7f6, 0xf700f7f7,\n\t\t0xf800f7f8, 0xf900f7f9, 0xfa00f7fa, 0xfb00f7fb, 0xfc00f7fc, 0xfd00f7fd, 0xfe00f7fe, 0xff00f7ff,\n\t},\n}\nvar listAll = []encoding.Encoding{\n\tCodePage037,\n\tCodePage437,\n\tCodePage850,\n\tCodePage852,\n\tCodePage855,\n\tCodePage858,\n\tCodePage860,\n\tCodePage862,\n\tCodePage863,\n\tCodePage865,\n\tCodePage866,\n\tCodePage1047,\n\tCodePage1140,\n\tISO8859_1,\n\tISO8859_2,\n\tISO8859_3,\n\tISO8859_4,\n\tISO8859_5,\n\tISO8859_6,\n\tISO8859_6E,\n\tISO8859_6I,\n\tISO8859_7,\n\tISO8859_8,\n\tISO8859_8E,\n\tISO8859_8I,\n\tISO8859_9,\n\tISO8859_10,\n\tISO8859_13,\n\tISO8859_14,\n\tISO8859_15,\n\tISO8859_16,\n\tKOI8R,\n\tKOI8U,\n\tMacintosh,\n\tMacintoshCyrillic,\n\tWindows874,\n\tWindows1250,\n\tWindows1251,\n\tWindows1252,\n\tWindows1253,\n\tWindows1254,\n\tWindows1255,\n\tWindows1256,\n\tWindows1257,\n\tWindows1258,\n\tXUserDefined,\n}\n\n// Total table size 87024 bytes (84KiB); checksum: 811C9DC5\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/encoding.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package encoding defines an interface for character encodings, such as Shift\n// JIS and Windows 1252, that can convert to and from UTF-8.\n//\n// Encoding implementations are provided in other packages, such as\n// golang.org/x/text/encoding/charmap and\n// golang.org/x/text/encoding/japanese.\npackage encoding // import \"golang.org/x/text/encoding\"\n\nimport (\n\t\"errors\"\n\t\"io\"\n\t\"strconv\"\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\n// TODO:\n// - There seems to be some inconsistency in when decoders return errors\n//   and when not. Also documentation seems to suggest they shouldn't return\n//   errors at all (except for UTF-16).\n// - Encoders seem to rely on or at least benefit from the input being in NFC\n//   normal form. Perhaps add an example how users could prepare their output.\n\n// Encoding is a character set encoding that can be transformed to and from\n// UTF-8.\ntype Encoding interface {\n\t// NewDecoder returns a Decoder.\n\tNewDecoder() *Decoder\n\n\t// NewEncoder returns an Encoder.\n\tNewEncoder() *Encoder\n}\n\n// A Decoder converts bytes to UTF-8. It implements transform.Transformer.\n//\n// Transforming source bytes that are not of that encoding will not result in an\n// error per se. Each byte that cannot be transcoded will be represented in the\n// output by the UTF-8 encoding of '\\uFFFD', the replacement rune.\ntype Decoder struct {\n\ttransform.Transformer\n\n\t// This forces external creators of Decoders to use names in struct\n\t// initializers, allowing for future extendibility without having to break\n\t// code.\n\t_ struct{}\n}\n\n// Bytes converts the given encoded bytes to UTF-8. It returns the converted\n// bytes or nil, err if any error occurred.\nfunc (d *Decoder) Bytes(b []byte) ([]byte, error) {\n\tb, _, err := transform.Bytes(d, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn b, nil\n}\n\n// String converts the given encoded string to UTF-8. It returns the converted\n// string or \"\", err if any error occurred.\nfunc (d *Decoder) String(s string) (string, error) {\n\ts, _, err := transform.String(d, s)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn s, nil\n}\n\n// Reader wraps another Reader to decode its bytes.\n//\n// The Decoder may not be used for any other operation as long as the returned\n// Reader is in use.\nfunc (d *Decoder) Reader(r io.Reader) io.Reader {\n\treturn transform.NewReader(r, d)\n}\n\n// An Encoder converts bytes from UTF-8. It implements transform.Transformer.\n//\n// Each rune that cannot be transcoded will result in an error. In this case,\n// the transform will consume all source byte up to, not including the offending\n// rune. Transforming source bytes that are not valid UTF-8 will be replaced by\n// `\\uFFFD`. To return early with an error instead, use transform.Chain to\n// preprocess the data with a UTF8Validator.\ntype Encoder struct {\n\ttransform.Transformer\n\n\t// This forces external creators of Encoders to use names in struct\n\t// initializers, allowing for future extendibility without having to break\n\t// code.\n\t_ struct{}\n}\n\n// Bytes converts bytes from UTF-8. It returns the converted bytes or nil, err if\n// any error occurred.\nfunc (e *Encoder) Bytes(b []byte) ([]byte, error) {\n\tb, _, err := transform.Bytes(e, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn b, nil\n}\n\n// String converts a string from UTF-8. It returns the converted string or\n// \"\", err if any error occurred.\nfunc (e *Encoder) String(s string) (string, error) {\n\ts, _, err := transform.String(e, s)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn s, nil\n}\n\n// Writer wraps another Writer to encode its UTF-8 output.\n//\n// The Encoder may not be used for any other operation as long as the returned\n// Writer is in use.\nfunc (e *Encoder) Writer(w io.Writer) io.Writer {\n\treturn transform.NewWriter(w, e)\n}\n\n// ASCIISub is the ASCII substitute character, as recommended by\n// https://unicode.org/reports/tr36/#Text_Comparison\nconst ASCIISub = '\\x1a'\n\n// Nop is the nop encoding. Its transformed bytes are the same as the source\n// bytes; it does not replace invalid UTF-8 sequences.\nvar Nop Encoding = nop{}\n\ntype nop struct{}\n\nfunc (nop) NewDecoder() *Decoder {\n\treturn &Decoder{Transformer: transform.Nop}\n}\nfunc (nop) NewEncoder() *Encoder {\n\treturn &Encoder{Transformer: transform.Nop}\n}\n\n// Replacement is the replacement encoding. Decoding from the replacement\n// encoding yields a single '\\uFFFD' replacement rune. Encoding from UTF-8 to\n// the replacement encoding yields the same as the source bytes except that\n// invalid UTF-8 is converted to '\\uFFFD'.\n//\n// It is defined at http://encoding.spec.whatwg.org/#replacement\nvar Replacement Encoding = replacement{}\n\ntype replacement struct{}\n\nfunc (replacement) NewDecoder() *Decoder {\n\treturn &Decoder{Transformer: replacementDecoder{}}\n}\n\nfunc (replacement) NewEncoder() *Encoder {\n\treturn &Encoder{Transformer: replacementEncoder{}}\n}\n\nfunc (replacement) ID() (mib identifier.MIB, other string) {\n\treturn identifier.Replacement, \"\"\n}\n\ntype replacementDecoder struct{ transform.NopResetter }\n\nfunc (replacementDecoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tif len(dst) < 3 {\n\t\treturn 0, 0, transform.ErrShortDst\n\t}\n\tif atEOF {\n\t\tconst fffd = \"\\ufffd\"\n\t\tdst[0] = fffd[0]\n\t\tdst[1] = fffd[1]\n\t\tdst[2] = fffd[2]\n\t\tnDst = 3\n\t}\n\treturn nDst, len(src), nil\n}\n\ntype replacementEncoder struct{ transform.NopResetter }\n\nfunc (replacementEncoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\n\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tsize = 1\n\n\t\t} else {\n\t\t\t// Decode a multi-byte rune.\n\t\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\t\tif size == 1 {\n\t\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t\t// full character yet.\n\t\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tr = '\\ufffd'\n\t\t\t}\n\t\t}\n\n\t\tif nDst+utf8.RuneLen(r) > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tnDst += utf8.EncodeRune(dst[nDst:], r)\n\t}\n\treturn nDst, nSrc, err\n}\n\n// HTMLEscapeUnsupported wraps encoders to replace source runes outside the\n// repertoire of the destination encoding with HTML escape sequences.\n//\n// This wrapper exists to comply to URL and HTML forms requiring a\n// non-terminating legacy encoder. The produced sequences may lead to data\n// loss as they are indistinguishable from legitimate input. To avoid this\n// issue, use UTF-8 encodings whenever possible.\nfunc HTMLEscapeUnsupported(e *Encoder) *Encoder {\n\treturn &Encoder{Transformer: &errorHandler{e, errorToHTML}}\n}\n\n// ReplaceUnsupported wraps encoders to replace source runes outside the\n// repertoire of the destination encoding with an encoding-specific\n// replacement.\n//\n// This wrapper is only provided for backwards compatibility and legacy\n// handling. Its use is strongly discouraged. Use UTF-8 whenever possible.\nfunc ReplaceUnsupported(e *Encoder) *Encoder {\n\treturn &Encoder{Transformer: &errorHandler{e, errorToReplacement}}\n}\n\ntype errorHandler struct {\n\t*Encoder\n\thandler func(dst []byte, r rune, err repertoireError) (n int, ok bool)\n}\n\n// TODO: consider making this error public in some form.\ntype repertoireError interface {\n\tReplacement() byte\n}\n\nfunc (h errorHandler) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tnDst, nSrc, err = h.Transformer.Transform(dst, src, atEOF)\n\tfor err != nil {\n\t\trerr, ok := err.(repertoireError)\n\t\tif !ok {\n\t\t\treturn nDst, nSrc, err\n\t\t}\n\t\tr, sz := utf8.DecodeRune(src[nSrc:])\n\t\tn, ok := h.handler(dst[nDst:], r, rerr)\n\t\tif !ok {\n\t\t\treturn nDst, nSrc, transform.ErrShortDst\n\t\t}\n\t\terr = nil\n\t\tnDst += n\n\t\tif nSrc += sz; nSrc < len(src) {\n\t\t\tvar dn, sn int\n\t\t\tdn, sn, err = h.Transformer.Transform(dst[nDst:], src[nSrc:], atEOF)\n\t\t\tnDst += dn\n\t\t\tnSrc += sn\n\t\t}\n\t}\n\treturn nDst, nSrc, err\n}\n\nfunc errorToHTML(dst []byte, r rune, err repertoireError) (n int, ok bool) {\n\tbuf := [8]byte{}\n\tb := strconv.AppendUint(buf[:0], uint64(r), 10)\n\tif n = len(b) + len(\"&#;\"); n >= len(dst) {\n\t\treturn 0, false\n\t}\n\tdst[0] = '&'\n\tdst[1] = '#'\n\tdst[copy(dst[2:], b)+2] = ';'\n\treturn n, true\n}\n\nfunc errorToReplacement(dst []byte, r rune, err repertoireError) (n int, ok bool) {\n\tif len(dst) == 0 {\n\t\treturn 0, false\n\t}\n\tdst[0] = err.Replacement()\n\treturn 1, true\n}\n\n// ErrInvalidUTF8 means that a transformer encountered invalid UTF-8.\nvar ErrInvalidUTF8 = errors.New(\"encoding: invalid UTF-8\")\n\n// UTF8Validator is a transformer that returns ErrInvalidUTF8 on the first\n// input byte that is not valid UTF-8.\nvar UTF8Validator transform.Transformer = utf8Validator{}\n\ntype utf8Validator struct{ transform.NopResetter }\n\nfunc (utf8Validator) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tn := len(src)\n\tif n > len(dst) {\n\t\tn = len(dst)\n\t}\n\tfor i := 0; i < n; {\n\t\tif c := src[i]; c < utf8.RuneSelf {\n\t\t\tdst[i] = c\n\t\t\ti++\n\t\t\tcontinue\n\t\t}\n\t\t_, size := utf8.DecodeRune(src[i:])\n\t\tif size == 1 {\n\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t// full character yet.\n\t\t\terr = ErrInvalidUTF8\n\t\t\tif !atEOF && !utf8.FullRune(src[i:]) {\n\t\t\t\terr = transform.ErrShortSrc\n\t\t\t}\n\t\t\treturn i, i, err\n\t\t}\n\t\tif i+size > len(dst) {\n\t\t\treturn i, i, transform.ErrShortDst\n\t\t}\n\t\tfor ; size > 0; size-- {\n\t\t\tdst[i] = src[i]\n\t\t\ti++\n\t\t}\n\t}\n\tif len(src) > len(dst) {\n\t\terr = transform.ErrShortDst\n\t}\n\treturn n, n, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n//go:generate go run gen.go\n\n// Package htmlindex maps character set encoding names to Encodings as\n// recommended by the W3C for use in HTML 5. See http://www.w3.org/TR/encoding.\npackage htmlindex\n\n// TODO: perhaps have a \"bare\" version of the index (used by this package) that\n// is not pre-loaded with all encodings. Global variables in encodings prevent\n// the linker from being able to purge unneeded tables. This means that\n// referencing all encodings, as this package does for the default index, links\n// in all encodings unconditionally.\n//\n// This issue can be solved by either solving the linking issue (see\n// https://github.com/golang/go/issues/6330) or refactoring the encoding tables\n// (e.g. moving the tables to internal packages that do not use global\n// variables).\n\n// TODO: allow canonicalizing names\n\nimport (\n\t\"errors\"\n\t\"strings\"\n\t\"sync\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/language\"\n)\n\nvar (\n\terrInvalidName = errors.New(\"htmlindex: invalid encoding name\")\n\terrUnknown     = errors.New(\"htmlindex: unknown Encoding\")\n\terrUnsupported = errors.New(\"htmlindex: this encoding is not supported\")\n)\n\nvar (\n\tmatcherOnce sync.Once\n\tmatcher     language.Matcher\n)\n\n// LanguageDefault returns the canonical name of the default encoding for a\n// given language.\nfunc LanguageDefault(tag language.Tag) string {\n\tmatcherOnce.Do(func() {\n\t\ttags := []language.Tag{}\n\t\tfor _, t := range strings.Split(locales, \" \") {\n\t\t\ttags = append(tags, language.MustParse(t))\n\t\t}\n\t\tmatcher = language.NewMatcher(tags, language.PreferSameScript(true))\n\t})\n\t_, i, _ := matcher.Match(tag)\n\treturn canonical[localeMap[i]] // Default is Windows-1252.\n}\n\n// Get returns an Encoding for one of the names listed in\n// http://www.w3.org/TR/encoding using the Default Index. Matching is case-\n// insensitive.\nfunc Get(name string) (encoding.Encoding, error) {\n\tx, ok := nameMap[strings.ToLower(strings.TrimSpace(name))]\n\tif !ok {\n\t\treturn nil, errInvalidName\n\t}\n\treturn encodings[x], nil\n}\n\n// Name reports the canonical name of the given Encoding. It will return\n// an error if e is not associated with a supported encoding scheme.\nfunc Name(e encoding.Encoding) (string, error) {\n\tid, ok := e.(identifier.Interface)\n\tif !ok {\n\t\treturn \"\", errUnknown\n\t}\n\tmib, _ := id.ID()\n\tif mib == 0 {\n\t\treturn \"\", errUnknown\n\t}\n\tv, ok := mibMap[mib]\n\tif !ok {\n\t\treturn \"\", errUnsupported\n\t}\n\treturn canonical[v], nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/htmlindex/map.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage htmlindex\n\nimport (\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/charmap\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/encoding/japanese\"\n\t\"golang.org/x/text/encoding/korean\"\n\t\"golang.org/x/text/encoding/simplifiedchinese\"\n\t\"golang.org/x/text/encoding/traditionalchinese\"\n\t\"golang.org/x/text/encoding/unicode\"\n)\n\n// mibMap maps a MIB identifier to an htmlEncoding index.\nvar mibMap = map[identifier.MIB]htmlEncoding{\n\tidentifier.UTF8:              utf8,\n\tidentifier.UTF16BE:           utf16be,\n\tidentifier.UTF16LE:           utf16le,\n\tidentifier.IBM866:            ibm866,\n\tidentifier.ISOLatin2:         iso8859_2,\n\tidentifier.ISOLatin3:         iso8859_3,\n\tidentifier.ISOLatin4:         iso8859_4,\n\tidentifier.ISOLatinCyrillic:  iso8859_5,\n\tidentifier.ISOLatinArabic:    iso8859_6,\n\tidentifier.ISOLatinGreek:     iso8859_7,\n\tidentifier.ISOLatinHebrew:    iso8859_8,\n\tidentifier.ISO88598I:         iso8859_8I,\n\tidentifier.ISOLatin6:         iso8859_10,\n\tidentifier.ISO885913:         iso8859_13,\n\tidentifier.ISO885914:         iso8859_14,\n\tidentifier.ISO885915:         iso8859_15,\n\tidentifier.ISO885916:         iso8859_16,\n\tidentifier.KOI8R:             koi8r,\n\tidentifier.KOI8U:             koi8u,\n\tidentifier.Macintosh:         macintosh,\n\tidentifier.MacintoshCyrillic: macintoshCyrillic,\n\tidentifier.Windows874:        windows874,\n\tidentifier.Windows1250:       windows1250,\n\tidentifier.Windows1251:       windows1251,\n\tidentifier.Windows1252:       windows1252,\n\tidentifier.Windows1253:       windows1253,\n\tidentifier.Windows1254:       windows1254,\n\tidentifier.Windows1255:       windows1255,\n\tidentifier.Windows1256:       windows1256,\n\tidentifier.Windows1257:       windows1257,\n\tidentifier.Windows1258:       windows1258,\n\tidentifier.XUserDefined:      xUserDefined,\n\tidentifier.GBK:               gbk,\n\tidentifier.GB18030:           gb18030,\n\tidentifier.Big5:              big5,\n\tidentifier.EUCPkdFmtJapanese: eucjp,\n\tidentifier.ISO2022JP:         iso2022jp,\n\tidentifier.ShiftJIS:          shiftJIS,\n\tidentifier.EUCKR:             euckr,\n\tidentifier.Replacement:       replacement,\n}\n\n// encodings maps the internal htmlEncoding to an Encoding.\n// TODO: consider using a reusable index in encoding/internal.\nvar encodings = [numEncodings]encoding.Encoding{\n\tutf8:              unicode.UTF8,\n\tibm866:            charmap.CodePage866,\n\tiso8859_2:         charmap.ISO8859_2,\n\tiso8859_3:         charmap.ISO8859_3,\n\tiso8859_4:         charmap.ISO8859_4,\n\tiso8859_5:         charmap.ISO8859_5,\n\tiso8859_6:         charmap.ISO8859_6,\n\tiso8859_7:         charmap.ISO8859_7,\n\tiso8859_8:         charmap.ISO8859_8,\n\tiso8859_8I:        charmap.ISO8859_8I,\n\tiso8859_10:        charmap.ISO8859_10,\n\tiso8859_13:        charmap.ISO8859_13,\n\tiso8859_14:        charmap.ISO8859_14,\n\tiso8859_15:        charmap.ISO8859_15,\n\tiso8859_16:        charmap.ISO8859_16,\n\tkoi8r:             charmap.KOI8R,\n\tkoi8u:             charmap.KOI8U,\n\tmacintosh:         charmap.Macintosh,\n\twindows874:        charmap.Windows874,\n\twindows1250:       charmap.Windows1250,\n\twindows1251:       charmap.Windows1251,\n\twindows1252:       charmap.Windows1252,\n\twindows1253:       charmap.Windows1253,\n\twindows1254:       charmap.Windows1254,\n\twindows1255:       charmap.Windows1255,\n\twindows1256:       charmap.Windows1256,\n\twindows1257:       charmap.Windows1257,\n\twindows1258:       charmap.Windows1258,\n\tmacintoshCyrillic: charmap.MacintoshCyrillic,\n\tgbk:               simplifiedchinese.GBK,\n\tgb18030:           simplifiedchinese.GB18030,\n\tbig5:              traditionalchinese.Big5,\n\teucjp:             japanese.EUCJP,\n\tiso2022jp:         japanese.ISO2022JP,\n\tshiftJIS:          japanese.ShiftJIS,\n\teuckr:             korean.EUCKR,\n\treplacement:       encoding.Replacement,\n\tutf16be:           unicode.UTF16(unicode.BigEndian, unicode.IgnoreBOM),\n\tutf16le:           unicode.UTF16(unicode.LittleEndian, unicode.IgnoreBOM),\n\txUserDefined:      charmap.XUserDefined,\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/htmlindex/tables.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\npackage htmlindex\n\ntype htmlEncoding byte\n\nconst (\n\tutf8 htmlEncoding = iota\n\tibm866\n\tiso8859_2\n\tiso8859_3\n\tiso8859_4\n\tiso8859_5\n\tiso8859_6\n\tiso8859_7\n\tiso8859_8\n\tiso8859_8I\n\tiso8859_10\n\tiso8859_13\n\tiso8859_14\n\tiso8859_15\n\tiso8859_16\n\tkoi8r\n\tkoi8u\n\tmacintosh\n\twindows874\n\twindows1250\n\twindows1251\n\twindows1252\n\twindows1253\n\twindows1254\n\twindows1255\n\twindows1256\n\twindows1257\n\twindows1258\n\tmacintoshCyrillic\n\tgbk\n\tgb18030\n\tbig5\n\teucjp\n\tiso2022jp\n\tshiftJIS\n\teuckr\n\treplacement\n\tutf16be\n\tutf16le\n\txUserDefined\n\tnumEncodings\n)\n\nvar canonical = [numEncodings]string{\n\t\"utf-8\",\n\t\"ibm866\",\n\t\"iso-8859-2\",\n\t\"iso-8859-3\",\n\t\"iso-8859-4\",\n\t\"iso-8859-5\",\n\t\"iso-8859-6\",\n\t\"iso-8859-7\",\n\t\"iso-8859-8\",\n\t\"iso-8859-8-i\",\n\t\"iso-8859-10\",\n\t\"iso-8859-13\",\n\t\"iso-8859-14\",\n\t\"iso-8859-15\",\n\t\"iso-8859-16\",\n\t\"koi8-r\",\n\t\"koi8-u\",\n\t\"macintosh\",\n\t\"windows-874\",\n\t\"windows-1250\",\n\t\"windows-1251\",\n\t\"windows-1252\",\n\t\"windows-1253\",\n\t\"windows-1254\",\n\t\"windows-1255\",\n\t\"windows-1256\",\n\t\"windows-1257\",\n\t\"windows-1258\",\n\t\"x-mac-cyrillic\",\n\t\"gbk\",\n\t\"gb18030\",\n\t\"big5\",\n\t\"euc-jp\",\n\t\"iso-2022-jp\",\n\t\"shift_jis\",\n\t\"euc-kr\",\n\t\"replacement\",\n\t\"utf-16be\",\n\t\"utf-16le\",\n\t\"x-user-defined\",\n}\n\nvar nameMap = map[string]htmlEncoding{\n\t\"unicode-1-1-utf-8\":   utf8,\n\t\"utf-8\":               utf8,\n\t\"utf8\":                utf8,\n\t\"866\":                 ibm866,\n\t\"cp866\":               ibm866,\n\t\"csibm866\":            ibm866,\n\t\"ibm866\":              ibm866,\n\t\"csisolatin2\":         iso8859_2,\n\t\"iso-8859-2\":          iso8859_2,\n\t\"iso-ir-101\":          iso8859_2,\n\t\"iso8859-2\":           iso8859_2,\n\t\"iso88592\":            iso8859_2,\n\t\"iso_8859-2\":          iso8859_2,\n\t\"iso_8859-2:1987\":     iso8859_2,\n\t\"l2\":                  iso8859_2,\n\t\"latin2\":              iso8859_2,\n\t\"csisolatin3\":         iso8859_3,\n\t\"iso-8859-3\":          iso8859_3,\n\t\"iso-ir-109\":          iso8859_3,\n\t\"iso8859-3\":           iso8859_3,\n\t\"iso88593\":            iso8859_3,\n\t\"iso_8859-3\":          iso8859_3,\n\t\"iso_8859-3:1988\":     iso8859_3,\n\t\"l3\":                  iso8859_3,\n\t\"latin3\":              iso8859_3,\n\t\"csisolatin4\":         iso8859_4,\n\t\"iso-8859-4\":          iso8859_4,\n\t\"iso-ir-110\":          iso8859_4,\n\t\"iso8859-4\":           iso8859_4,\n\t\"iso88594\":            iso8859_4,\n\t\"iso_8859-4\":          iso8859_4,\n\t\"iso_8859-4:1988\":     iso8859_4,\n\t\"l4\":                  iso8859_4,\n\t\"latin4\":              iso8859_4,\n\t\"csisolatincyrillic\":  iso8859_5,\n\t\"cyrillic\":            iso8859_5,\n\t\"iso-8859-5\":          iso8859_5,\n\t\"iso-ir-144\":          iso8859_5,\n\t\"iso8859-5\":           iso8859_5,\n\t\"iso88595\":            iso8859_5,\n\t\"iso_8859-5\":          iso8859_5,\n\t\"iso_8859-5:1988\":     iso8859_5,\n\t\"arabic\":              iso8859_6,\n\t\"asmo-708\":            iso8859_6,\n\t\"csiso88596e\":         iso8859_6,\n\t\"csiso88596i\":         iso8859_6,\n\t\"csisolatinarabic\":    iso8859_6,\n\t\"ecma-114\":            iso8859_6,\n\t\"iso-8859-6\":          iso8859_6,\n\t\"iso-8859-6-e\":        iso8859_6,\n\t\"iso-8859-6-i\":        iso8859_6,\n\t\"iso-ir-127\":          iso8859_6,\n\t\"iso8859-6\":           iso8859_6,\n\t\"iso88596\":            iso8859_6,\n\t\"iso_8859-6\":          iso8859_6,\n\t\"iso_8859-6:1987\":     iso8859_6,\n\t\"csisolatingreek\":     iso8859_7,\n\t\"ecma-118\":            iso8859_7,\n\t\"elot_928\":            iso8859_7,\n\t\"greek\":               iso8859_7,\n\t\"greek8\":              iso8859_7,\n\t\"iso-8859-7\":          iso8859_7,\n\t\"iso-ir-126\":          iso8859_7,\n\t\"iso8859-7\":           iso8859_7,\n\t\"iso88597\":            iso8859_7,\n\t\"iso_8859-7\":          iso8859_7,\n\t\"iso_8859-7:1987\":     iso8859_7,\n\t\"sun_eu_greek\":        iso8859_7,\n\t\"csiso88598e\":         iso8859_8,\n\t\"csisolatinhebrew\":    iso8859_8,\n\t\"hebrew\":              iso8859_8,\n\t\"iso-8859-8\":          iso8859_8,\n\t\"iso-8859-8-e\":        iso8859_8,\n\t\"iso-ir-138\":          iso8859_8,\n\t\"iso8859-8\":           iso8859_8,\n\t\"iso88598\":            iso8859_8,\n\t\"iso_8859-8\":          iso8859_8,\n\t\"iso_8859-8:1988\":     iso8859_8,\n\t\"visual\":              iso8859_8,\n\t\"csiso88598i\":         iso8859_8I,\n\t\"iso-8859-8-i\":        iso8859_8I,\n\t\"logical\":             iso8859_8I,\n\t\"csisolatin6\":         iso8859_10,\n\t\"iso-8859-10\":         iso8859_10,\n\t\"iso-ir-157\":          iso8859_10,\n\t\"iso8859-10\":          iso8859_10,\n\t\"iso885910\":           iso8859_10,\n\t\"l6\":                  iso8859_10,\n\t\"latin6\":              iso8859_10,\n\t\"iso-8859-13\":         iso8859_13,\n\t\"iso8859-13\":          iso8859_13,\n\t\"iso885913\":           iso8859_13,\n\t\"iso-8859-14\":         iso8859_14,\n\t\"iso8859-14\":          iso8859_14,\n\t\"iso885914\":           iso8859_14,\n\t\"csisolatin9\":         iso8859_15,\n\t\"iso-8859-15\":         iso8859_15,\n\t\"iso8859-15\":          iso8859_15,\n\t\"iso885915\":           iso8859_15,\n\t\"iso_8859-15\":         iso8859_15,\n\t\"l9\":                  iso8859_15,\n\t\"iso-8859-16\":         iso8859_16,\n\t\"cskoi8r\":             koi8r,\n\t\"koi\":                 koi8r,\n\t\"koi8\":                koi8r,\n\t\"koi8-r\":              koi8r,\n\t\"koi8_r\":              koi8r,\n\t\"koi8-ru\":             koi8u,\n\t\"koi8-u\":              koi8u,\n\t\"csmacintosh\":         macintosh,\n\t\"mac\":                 macintosh,\n\t\"macintosh\":           macintosh,\n\t\"x-mac-roman\":         macintosh,\n\t\"dos-874\":             windows874,\n\t\"iso-8859-11\":         windows874,\n\t\"iso8859-11\":          windows874,\n\t\"iso885911\":           windows874,\n\t\"tis-620\":             windows874,\n\t\"windows-874\":         windows874,\n\t\"cp1250\":              windows1250,\n\t\"windows-1250\":        windows1250,\n\t\"x-cp1250\":            windows1250,\n\t\"cp1251\":              windows1251,\n\t\"windows-1251\":        windows1251,\n\t\"x-cp1251\":            windows1251,\n\t\"ansi_x3.4-1968\":      windows1252,\n\t\"ascii\":               windows1252,\n\t\"cp1252\":              windows1252,\n\t\"cp819\":               windows1252,\n\t\"csisolatin1\":         windows1252,\n\t\"ibm819\":              windows1252,\n\t\"iso-8859-1\":          windows1252,\n\t\"iso-ir-100\":          windows1252,\n\t\"iso8859-1\":           windows1252,\n\t\"iso88591\":            windows1252,\n\t\"iso_8859-1\":          windows1252,\n\t\"iso_8859-1:1987\":     windows1252,\n\t\"l1\":                  windows1252,\n\t\"latin1\":              windows1252,\n\t\"us-ascii\":            windows1252,\n\t\"windows-1252\":        windows1252,\n\t\"x-cp1252\":            windows1252,\n\t\"cp1253\":              windows1253,\n\t\"windows-1253\":        windows1253,\n\t\"x-cp1253\":            windows1253,\n\t\"cp1254\":              windows1254,\n\t\"csisolatin5\":         windows1254,\n\t\"iso-8859-9\":          windows1254,\n\t\"iso-ir-148\":          windows1254,\n\t\"iso8859-9\":           windows1254,\n\t\"iso88599\":            windows1254,\n\t\"iso_8859-9\":          windows1254,\n\t\"iso_8859-9:1989\":     windows1254,\n\t\"l5\":                  windows1254,\n\t\"latin5\":              windows1254,\n\t\"windows-1254\":        windows1254,\n\t\"x-cp1254\":            windows1254,\n\t\"cp1255\":              windows1255,\n\t\"windows-1255\":        windows1255,\n\t\"x-cp1255\":            windows1255,\n\t\"cp1256\":              windows1256,\n\t\"windows-1256\":        windows1256,\n\t\"x-cp1256\":            windows1256,\n\t\"cp1257\":              windows1257,\n\t\"windows-1257\":        windows1257,\n\t\"x-cp1257\":            windows1257,\n\t\"cp1258\":              windows1258,\n\t\"windows-1258\":        windows1258,\n\t\"x-cp1258\":            windows1258,\n\t\"x-mac-cyrillic\":      macintoshCyrillic,\n\t\"x-mac-ukrainian\":     macintoshCyrillic,\n\t\"chinese\":             gbk,\n\t\"csgb2312\":            gbk,\n\t\"csiso58gb231280\":     gbk,\n\t\"gb2312\":              gbk,\n\t\"gb_2312\":             gbk,\n\t\"gb_2312-80\":          gbk,\n\t\"gbk\":                 gbk,\n\t\"iso-ir-58\":           gbk,\n\t\"x-gbk\":               gbk,\n\t\"gb18030\":             gb18030,\n\t\"big5\":                big5,\n\t\"big5-hkscs\":          big5,\n\t\"cn-big5\":             big5,\n\t\"csbig5\":              big5,\n\t\"x-x-big5\":            big5,\n\t\"cseucpkdfmtjapanese\": eucjp,\n\t\"euc-jp\":              eucjp,\n\t\"x-euc-jp\":            eucjp,\n\t\"csiso2022jp\":         iso2022jp,\n\t\"iso-2022-jp\":         iso2022jp,\n\t\"csshiftjis\":          shiftJIS,\n\t\"ms932\":               shiftJIS,\n\t\"ms_kanji\":            shiftJIS,\n\t\"shift-jis\":           shiftJIS,\n\t\"shift_jis\":           shiftJIS,\n\t\"sjis\":                shiftJIS,\n\t\"windows-31j\":         shiftJIS,\n\t\"x-sjis\":              shiftJIS,\n\t\"cseuckr\":             euckr,\n\t\"csksc56011987\":       euckr,\n\t\"euc-kr\":              euckr,\n\t\"iso-ir-149\":          euckr,\n\t\"korean\":              euckr,\n\t\"ks_c_5601-1987\":      euckr,\n\t\"ks_c_5601-1989\":      euckr,\n\t\"ksc5601\":             euckr,\n\t\"ksc_5601\":            euckr,\n\t\"windows-949\":         euckr,\n\t\"csiso2022kr\":         replacement,\n\t\"hz-gb-2312\":          replacement,\n\t\"iso-2022-cn\":         replacement,\n\t\"iso-2022-cn-ext\":     replacement,\n\t\"iso-2022-kr\":         replacement,\n\t\"replacement\":         replacement,\n\t\"utf-16be\":            utf16be,\n\t\"utf-16\":              utf16le,\n\t\"utf-16le\":            utf16le,\n\t\"x-user-defined\":      xUserDefined,\n}\n\nvar localeMap = []htmlEncoding{\n\twindows1252, // und_Latn\n\twindows1256, // ar\n\twindows1251, // ba\n\twindows1251, // be\n\twindows1251, // bg\n\twindows1250, // cs\n\tiso8859_7,   // el\n\twindows1257, // et\n\twindows1256, // fa\n\twindows1255, // he\n\twindows1250, // hr\n\tiso8859_2,   // hu\n\tshiftJIS,    // ja\n\twindows1251, // kk\n\teuckr,       // ko\n\twindows1254, // ku\n\twindows1251, // ky\n\twindows1257, // lt\n\twindows1257, // lv\n\twindows1251, // mk\n\tiso8859_2,   // pl\n\twindows1251, // ru\n\twindows1251, // sah\n\twindows1250, // sk\n\tiso8859_2,   // sl\n\twindows1251, // sr\n\twindows1251, // tg\n\twindows874,  // th\n\twindows1254, // tr\n\twindows1251, // tt\n\twindows1251, // uk\n\twindows1258, // vi\n\tgb18030,     // zh-hans\n\tbig5,        // zh-hant\n}\n\nconst locales = \"und_Latn ar ba be bg cs el et fa he hr hu ja kk ko ku ky lt lv mk pl ru sah sk sl sr tg th tr tt uk vi zh-hans zh-hant\"\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/internal/identifier/identifier.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n//go:generate go run gen.go\n\n// Package identifier defines the contract between implementations of Encoding\n// and Index by defining identifiers that uniquely identify standardized coded\n// character sets (CCS) and character encoding schemes (CES), which we will\n// together refer to as encodings, for which Encoding implementations provide\n// converters to and from UTF-8. This package is typically only of concern to\n// implementers of Indexes and Encodings.\n//\n// One part of the identifier is the MIB code, which is defined by IANA and\n// uniquely identifies a CCS or CES. Each code is associated with data that\n// references authorities, official documentation as well as aliases and MIME\n// names.\n//\n// Not all CESs are covered by the IANA registry. The \"other\" string that is\n// returned by ID can be used to identify other character sets or versions of\n// existing ones.\n//\n// It is recommended that each package that provides a set of Encodings provide\n// the All and Common variables to reference all supported encodings and\n// commonly used subset. This allows Index implementations to include all\n// available encodings without explicitly referencing or knowing about them.\npackage identifier\n\n// Note: this package is internal, but could be made public if there is a need\n// for writing third-party Indexes and Encodings.\n\n// References:\n// - http://source.icu-project.org/repos/icu/icu/trunk/source/data/mappings/convrtrs.txt\n// - http://www.iana.org/assignments/character-sets/character-sets.xhtml\n// - http://www.iana.org/assignments/ianacharset-mib/ianacharset-mib\n// - http://www.ietf.org/rfc/rfc2978.txt\n// - https://www.unicode.org/reports/tr22/\n// - http://www.w3.org/TR/encoding/\n// - https://encoding.spec.whatwg.org/\n// - https://encoding.spec.whatwg.org/encodings.json\n// - https://tools.ietf.org/html/rfc6657#section-5\n\n// Interface can be implemented by Encodings to define the CCS or CES for which\n// it implements conversions.\ntype Interface interface {\n\t// ID returns an encoding identifier. Exactly one of the mib and other\n\t// values should be non-zero.\n\t//\n\t// In the usual case it is only necessary to indicate the MIB code. The\n\t// other string can be used to specify encodings for which there is no MIB,\n\t// such as \"x-mac-dingbat\".\n\t//\n\t// The other string may only contain the characters a-z, A-Z, 0-9, - and _.\n\tID() (mib MIB, other string)\n\n\t// NOTE: the restrictions on the encoding are to allow extending the syntax\n\t// with additional information such as versions, vendors and other variants.\n}\n\n// A MIB identifies an encoding. It is derived from the IANA MIB codes and adds\n// some identifiers for some encodings that are not covered by the IANA\n// standard.\n//\n// See http://www.iana.org/assignments/ianacharset-mib.\ntype MIB uint16\n\n// These additional MIB types are not defined in IANA. They are added because\n// they are common and defined within the text repo.\nconst (\n\t// Unofficial marks the start of encodings not registered by IANA.\n\tUnofficial MIB = 10000 + iota\n\n\t// Replacement is the WhatWG replacement encoding.\n\tReplacement\n\n\t// XUserDefined is the code for x-user-defined.\n\tXUserDefined\n\n\t// MacintoshCyrillic is the code for x-mac-cyrillic.\n\tMacintoshCyrillic\n)\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/internal/identifier/mib.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\npackage identifier\n\nconst (\n\t// ASCII is the MIB identifier with IANA name US-ASCII (MIME: US-ASCII).\n\t//\n\t// ANSI X3.4-1986\n\t// Reference: RFC2046\n\tASCII MIB = 3\n\n\t// ISOLatin1 is the MIB identifier with IANA name ISO_8859-1:1987 (MIME: ISO-8859-1).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOLatin1 MIB = 4\n\n\t// ISOLatin2 is the MIB identifier with IANA name ISO_8859-2:1987 (MIME: ISO-8859-2).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOLatin2 MIB = 5\n\n\t// ISOLatin3 is the MIB identifier with IANA name ISO_8859-3:1988 (MIME: ISO-8859-3).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOLatin3 MIB = 6\n\n\t// ISOLatin4 is the MIB identifier with IANA name ISO_8859-4:1988 (MIME: ISO-8859-4).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOLatin4 MIB = 7\n\n\t// ISOLatinCyrillic is the MIB identifier with IANA name ISO_8859-5:1988 (MIME: ISO-8859-5).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOLatinCyrillic MIB = 8\n\n\t// ISOLatinArabic is the MIB identifier with IANA name ISO_8859-6:1987 (MIME: ISO-8859-6).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOLatinArabic MIB = 9\n\n\t// ISOLatinGreek is the MIB identifier with IANA name ISO_8859-7:1987 (MIME: ISO-8859-7).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1947\n\t// Reference: RFC1345\n\tISOLatinGreek MIB = 10\n\n\t// ISOLatinHebrew is the MIB identifier with IANA name ISO_8859-8:1988 (MIME: ISO-8859-8).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOLatinHebrew MIB = 11\n\n\t// ISOLatin5 is the MIB identifier with IANA name ISO_8859-9:1989 (MIME: ISO-8859-9).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOLatin5 MIB = 12\n\n\t// ISOLatin6 is the MIB identifier with IANA name ISO-8859-10 (MIME: ISO-8859-10).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOLatin6 MIB = 13\n\n\t// ISOTextComm is the MIB identifier with IANA name ISO_6937-2-add.\n\t//\n\t// ISO-IR: International Register of Escape Sequences and ISO 6937-2:1983\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISOTextComm MIB = 14\n\n\t// HalfWidthKatakana is the MIB identifier with IANA name JIS_X0201.\n\t//\n\t// JIS X 0201-1976.   One byte only, this is equivalent to\n\t// JIS/Roman (similar to ASCII) plus eight-bit half-width\n\t// Katakana\n\t// Reference: RFC1345\n\tHalfWidthKatakana MIB = 15\n\n\t// JISEncoding is the MIB identifier with IANA name JIS_Encoding.\n\t//\n\t// JIS X 0202-1991.  Uses ISO 2022 escape sequences to\n\t// shift code sets as documented in JIS X 0202-1991.\n\tJISEncoding MIB = 16\n\n\t// ShiftJIS is the MIB identifier with IANA name Shift_JIS (MIME: Shift_JIS).\n\t//\n\t// This charset is an extension of csHalfWidthKatakana by\n\t// adding graphic characters in JIS X 0208.  The CCS's are\n\t// JIS X0201:1997 and JIS X0208:1997.  The\n\t// complete definition is shown in Appendix 1 of JIS\n\t// X0208:1997.\n\t// This charset can be used for the top-level media type \"text\".\n\tShiftJIS MIB = 17\n\n\t// EUCPkdFmtJapanese is the MIB identifier with IANA name Extended_UNIX_Code_Packed_Format_for_Japanese (MIME: EUC-JP).\n\t//\n\t// Standardized by OSF, UNIX International, and UNIX Systems\n\t// Laboratories Pacific.  Uses ISO 2022 rules to select\n\t// code set 0: US-ASCII (a single 7-bit byte set)\n\t// code set 1: JIS X0208-1990 (a double 8-bit byte set)\n\t// restricted to A0-FF in both bytes\n\t// code set 2: Half Width Katakana (a single 7-bit byte set)\n\t// requiring SS2 as the character prefix\n\t// code set 3: JIS X0212-1990 (a double 7-bit byte set)\n\t// restricted to A0-FF in both bytes\n\t// requiring SS3 as the character prefix\n\tEUCPkdFmtJapanese MIB = 18\n\n\t// EUCFixWidJapanese is the MIB identifier with IANA name Extended_UNIX_Code_Fixed_Width_for_Japanese.\n\t//\n\t// Used in Japan.  Each character is 2 octets.\n\t// code set 0: US-ASCII (a single 7-bit byte set)\n\t// 1st byte = 00\n\t// 2nd byte = 20-7E\n\t// code set 1: JIS X0208-1990 (a double 7-bit byte set)\n\t// restricted  to A0-FF in both bytes\n\t// code set 2: Half Width Katakana (a single 7-bit byte set)\n\t// 1st byte = 00\n\t// 2nd byte = A0-FF\n\t// code set 3: JIS X0212-1990 (a double 7-bit byte set)\n\t// restricted to A0-FF in\n\t// the first byte\n\t// and 21-7E in the second byte\n\tEUCFixWidJapanese MIB = 19\n\n\t// ISO4UnitedKingdom is the MIB identifier with IANA name BS_4730.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO4UnitedKingdom MIB = 20\n\n\t// ISO11SwedishForNames is the MIB identifier with IANA name SEN_850200_C.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO11SwedishForNames MIB = 21\n\n\t// ISO15Italian is the MIB identifier with IANA name IT.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO15Italian MIB = 22\n\n\t// ISO17Spanish is the MIB identifier with IANA name ES.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO17Spanish MIB = 23\n\n\t// ISO21German is the MIB identifier with IANA name DIN_66003.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO21German MIB = 24\n\n\t// ISO60Norwegian1 is the MIB identifier with IANA name NS_4551-1.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO60Norwegian1 MIB = 25\n\n\t// ISO69French is the MIB identifier with IANA name NF_Z_62-010.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO69French MIB = 26\n\n\t// ISO10646UTF1 is the MIB identifier with IANA name ISO-10646-UTF-1.\n\t//\n\t// Universal Transfer Format (1), this is the multibyte\n\t// encoding, that subsets ASCII-7. It does not have byte\n\t// ordering issues.\n\tISO10646UTF1 MIB = 27\n\n\t// ISO646basic1983 is the MIB identifier with IANA name ISO_646.basic:1983.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO646basic1983 MIB = 28\n\n\t// INVARIANT is the MIB identifier with IANA name INVARIANT.\n\t//\n\t// Reference: RFC1345\n\tINVARIANT MIB = 29\n\n\t// ISO2IntlRefVersion is the MIB identifier with IANA name ISO_646.irv:1983.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO2IntlRefVersion MIB = 30\n\n\t// NATSSEFI is the MIB identifier with IANA name NATS-SEFI.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tNATSSEFI MIB = 31\n\n\t// NATSSEFIADD is the MIB identifier with IANA name NATS-SEFI-ADD.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tNATSSEFIADD MIB = 32\n\n\t// NATSDANO is the MIB identifier with IANA name NATS-DANO.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tNATSDANO MIB = 33\n\n\t// NATSDANOADD is the MIB identifier with IANA name NATS-DANO-ADD.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tNATSDANOADD MIB = 34\n\n\t// ISO10Swedish is the MIB identifier with IANA name SEN_850200_B.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO10Swedish MIB = 35\n\n\t// KSC56011987 is the MIB identifier with IANA name KS_C_5601-1987.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tKSC56011987 MIB = 36\n\n\t// ISO2022KR is the MIB identifier with IANA name ISO-2022-KR (MIME: ISO-2022-KR).\n\t//\n\t// rfc1557 (see also KS_C_5601-1987)\n\t// Reference: RFC1557\n\tISO2022KR MIB = 37\n\n\t// EUCKR is the MIB identifier with IANA name EUC-KR (MIME: EUC-KR).\n\t//\n\t// rfc1557 (see also KS_C_5861-1992)\n\t// Reference: RFC1557\n\tEUCKR MIB = 38\n\n\t// ISO2022JP is the MIB identifier with IANA name ISO-2022-JP (MIME: ISO-2022-JP).\n\t//\n\t// rfc1468 (see also rfc2237 )\n\t// Reference: RFC1468\n\tISO2022JP MIB = 39\n\n\t// ISO2022JP2 is the MIB identifier with IANA name ISO-2022-JP-2 (MIME: ISO-2022-JP-2).\n\t//\n\t// rfc1554\n\t// Reference: RFC1554\n\tISO2022JP2 MIB = 40\n\n\t// ISO13JISC6220jp is the MIB identifier with IANA name JIS_C6220-1969-jp.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO13JISC6220jp MIB = 41\n\n\t// ISO14JISC6220ro is the MIB identifier with IANA name JIS_C6220-1969-ro.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO14JISC6220ro MIB = 42\n\n\t// ISO16Portuguese is the MIB identifier with IANA name PT.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO16Portuguese MIB = 43\n\n\t// ISO18Greek7Old is the MIB identifier with IANA name greek7-old.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO18Greek7Old MIB = 44\n\n\t// ISO19LatinGreek is the MIB identifier with IANA name latin-greek.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO19LatinGreek MIB = 45\n\n\t// ISO25French is the MIB identifier with IANA name NF_Z_62-010_(1973).\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO25French MIB = 46\n\n\t// ISO27LatinGreek1 is the MIB identifier with IANA name Latin-greek-1.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO27LatinGreek1 MIB = 47\n\n\t// ISO5427Cyrillic is the MIB identifier with IANA name ISO_5427.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO5427Cyrillic MIB = 48\n\n\t// ISO42JISC62261978 is the MIB identifier with IANA name JIS_C6226-1978.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO42JISC62261978 MIB = 49\n\n\t// ISO47BSViewdata is the MIB identifier with IANA name BS_viewdata.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO47BSViewdata MIB = 50\n\n\t// ISO49INIS is the MIB identifier with IANA name INIS.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO49INIS MIB = 51\n\n\t// ISO50INIS8 is the MIB identifier with IANA name INIS-8.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO50INIS8 MIB = 52\n\n\t// ISO51INISCyrillic is the MIB identifier with IANA name INIS-cyrillic.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO51INISCyrillic MIB = 53\n\n\t// ISO54271981 is the MIB identifier with IANA name ISO_5427:1981.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO54271981 MIB = 54\n\n\t// ISO5428Greek is the MIB identifier with IANA name ISO_5428:1980.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO5428Greek MIB = 55\n\n\t// ISO57GB1988 is the MIB identifier with IANA name GB_1988-80.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO57GB1988 MIB = 56\n\n\t// ISO58GB231280 is the MIB identifier with IANA name GB_2312-80.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO58GB231280 MIB = 57\n\n\t// ISO61Norwegian2 is the MIB identifier with IANA name NS_4551-2.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO61Norwegian2 MIB = 58\n\n\t// ISO70VideotexSupp1 is the MIB identifier with IANA name videotex-suppl.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO70VideotexSupp1 MIB = 59\n\n\t// ISO84Portuguese2 is the MIB identifier with IANA name PT2.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO84Portuguese2 MIB = 60\n\n\t// ISO85Spanish2 is the MIB identifier with IANA name ES2.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO85Spanish2 MIB = 61\n\n\t// ISO86Hungarian is the MIB identifier with IANA name MSZ_7795.3.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO86Hungarian MIB = 62\n\n\t// ISO87JISX0208 is the MIB identifier with IANA name JIS_C6226-1983.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO87JISX0208 MIB = 63\n\n\t// ISO88Greek7 is the MIB identifier with IANA name greek7.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO88Greek7 MIB = 64\n\n\t// ISO89ASMO449 is the MIB identifier with IANA name ASMO_449.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO89ASMO449 MIB = 65\n\n\t// ISO90 is the MIB identifier with IANA name iso-ir-90.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO90 MIB = 66\n\n\t// ISO91JISC62291984a is the MIB identifier with IANA name JIS_C6229-1984-a.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO91JISC62291984a MIB = 67\n\n\t// ISO92JISC62991984b is the MIB identifier with IANA name JIS_C6229-1984-b.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO92JISC62991984b MIB = 68\n\n\t// ISO93JIS62291984badd is the MIB identifier with IANA name JIS_C6229-1984-b-add.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO93JIS62291984badd MIB = 69\n\n\t// ISO94JIS62291984hand is the MIB identifier with IANA name JIS_C6229-1984-hand.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO94JIS62291984hand MIB = 70\n\n\t// ISO95JIS62291984handadd is the MIB identifier with IANA name JIS_C6229-1984-hand-add.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO95JIS62291984handadd MIB = 71\n\n\t// ISO96JISC62291984kana is the MIB identifier with IANA name JIS_C6229-1984-kana.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO96JISC62291984kana MIB = 72\n\n\t// ISO2033 is the MIB identifier with IANA name ISO_2033-1983.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO2033 MIB = 73\n\n\t// ISO99NAPLPS is the MIB identifier with IANA name ANSI_X3.110-1983.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO99NAPLPS MIB = 74\n\n\t// ISO102T617bit is the MIB identifier with IANA name T.61-7bit.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO102T617bit MIB = 75\n\n\t// ISO103T618bit is the MIB identifier with IANA name T.61-8bit.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO103T618bit MIB = 76\n\n\t// ISO111ECMACyrillic is the MIB identifier with IANA name ECMA-cyrillic.\n\t//\n\t// ISO registry\n\tISO111ECMACyrillic MIB = 77\n\n\t// ISO121Canadian1 is the MIB identifier with IANA name CSA_Z243.4-1985-1.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO121Canadian1 MIB = 78\n\n\t// ISO122Canadian2 is the MIB identifier with IANA name CSA_Z243.4-1985-2.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO122Canadian2 MIB = 79\n\n\t// ISO123CSAZ24341985gr is the MIB identifier with IANA name CSA_Z243.4-1985-gr.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO123CSAZ24341985gr MIB = 80\n\n\t// ISO88596E is the MIB identifier with IANA name ISO_8859-6-E (MIME: ISO-8859-6-E).\n\t//\n\t// rfc1556\n\t// Reference: RFC1556\n\tISO88596E MIB = 81\n\n\t// ISO88596I is the MIB identifier with IANA name ISO_8859-6-I (MIME: ISO-8859-6-I).\n\t//\n\t// rfc1556\n\t// Reference: RFC1556\n\tISO88596I MIB = 82\n\n\t// ISO128T101G2 is the MIB identifier with IANA name T.101-G2.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO128T101G2 MIB = 83\n\n\t// ISO88598E is the MIB identifier with IANA name ISO_8859-8-E (MIME: ISO-8859-8-E).\n\t//\n\t// rfc1556\n\t// Reference: RFC1556\n\tISO88598E MIB = 84\n\n\t// ISO88598I is the MIB identifier with IANA name ISO_8859-8-I (MIME: ISO-8859-8-I).\n\t//\n\t// rfc1556\n\t// Reference: RFC1556\n\tISO88598I MIB = 85\n\n\t// ISO139CSN369103 is the MIB identifier with IANA name CSN_369103.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO139CSN369103 MIB = 86\n\n\t// ISO141JUSIB1002 is the MIB identifier with IANA name JUS_I.B1.002.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO141JUSIB1002 MIB = 87\n\n\t// ISO143IECP271 is the MIB identifier with IANA name IEC_P27-1.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO143IECP271 MIB = 88\n\n\t// ISO146Serbian is the MIB identifier with IANA name JUS_I.B1.003-serb.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO146Serbian MIB = 89\n\n\t// ISO147Macedonian is the MIB identifier with IANA name JUS_I.B1.003-mac.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO147Macedonian MIB = 90\n\n\t// ISO150GreekCCITT is the MIB identifier with IANA name greek-ccitt.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO150GreekCCITT MIB = 91\n\n\t// ISO151Cuba is the MIB identifier with IANA name NC_NC00-10:81.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO151Cuba MIB = 92\n\n\t// ISO6937Add is the MIB identifier with IANA name ISO_6937-2-25.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO6937Add MIB = 93\n\n\t// ISO153GOST1976874 is the MIB identifier with IANA name GOST_19768-74.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO153GOST1976874 MIB = 94\n\n\t// ISO8859Supp is the MIB identifier with IANA name ISO_8859-supp.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO8859Supp MIB = 95\n\n\t// ISO10367Box is the MIB identifier with IANA name ISO_10367-box.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO10367Box MIB = 96\n\n\t// ISO158Lap is the MIB identifier with IANA name latin-lap.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO158Lap MIB = 97\n\n\t// ISO159JISX02121990 is the MIB identifier with IANA name JIS_X0212-1990.\n\t//\n\t// ISO-IR: International Register of Escape Sequences\n\t// Note: The current registration authority is IPSJ/ITSCJ, Japan.\n\t// Reference: RFC1345\n\tISO159JISX02121990 MIB = 98\n\n\t// ISO646Danish is the MIB identifier with IANA name DS_2089.\n\t//\n\t// Danish Standard, DS 2089, February 1974\n\t// Reference: RFC1345\n\tISO646Danish MIB = 99\n\n\t// USDK is the MIB identifier with IANA name us-dk.\n\t//\n\t// Reference: RFC1345\n\tUSDK MIB = 100\n\n\t// DKUS is the MIB identifier with IANA name dk-us.\n\t//\n\t// Reference: RFC1345\n\tDKUS MIB = 101\n\n\t// KSC5636 is the MIB identifier with IANA name KSC5636.\n\t//\n\t// Reference: RFC1345\n\tKSC5636 MIB = 102\n\n\t// Unicode11UTF7 is the MIB identifier with IANA name UNICODE-1-1-UTF-7.\n\t//\n\t// rfc1642\n\t// Reference: RFC1642\n\tUnicode11UTF7 MIB = 103\n\n\t// ISO2022CN is the MIB identifier with IANA name ISO-2022-CN.\n\t//\n\t// rfc1922\n\t// Reference: RFC1922\n\tISO2022CN MIB = 104\n\n\t// ISO2022CNEXT is the MIB identifier with IANA name ISO-2022-CN-EXT.\n\t//\n\t// rfc1922\n\t// Reference: RFC1922\n\tISO2022CNEXT MIB = 105\n\n\t// UTF8 is the MIB identifier with IANA name UTF-8.\n\t//\n\t// rfc3629\n\t// Reference: RFC3629\n\tUTF8 MIB = 106\n\n\t// ISO885913 is the MIB identifier with IANA name ISO-8859-13.\n\t//\n\t// ISO See https://www.iana.org/assignments/charset-reg/ISO-8859-13 https://www.iana.org/assignments/charset-reg/ISO-8859-13\n\tISO885913 MIB = 109\n\n\t// ISO885914 is the MIB identifier with IANA name ISO-8859-14.\n\t//\n\t// ISO See https://www.iana.org/assignments/charset-reg/ISO-8859-14\n\tISO885914 MIB = 110\n\n\t// ISO885915 is the MIB identifier with IANA name ISO-8859-15.\n\t//\n\t// ISO\n\t// Please see: https://www.iana.org/assignments/charset-reg/ISO-8859-15\n\tISO885915 MIB = 111\n\n\t// ISO885916 is the MIB identifier with IANA name ISO-8859-16.\n\t//\n\t// ISO\n\tISO885916 MIB = 112\n\n\t// GBK is the MIB identifier with IANA name GBK.\n\t//\n\t// Chinese IT Standardization Technical Committee\n\t// Please see: https://www.iana.org/assignments/charset-reg/GBK\n\tGBK MIB = 113\n\n\t// GB18030 is the MIB identifier with IANA name GB18030.\n\t//\n\t// Chinese IT Standardization Technical Committee\n\t// Please see: https://www.iana.org/assignments/charset-reg/GB18030\n\tGB18030 MIB = 114\n\n\t// OSDEBCDICDF0415 is the MIB identifier with IANA name OSD_EBCDIC_DF04_15.\n\t//\n\t// Fujitsu-Siemens standard mainframe EBCDIC encoding\n\t// Please see: https://www.iana.org/assignments/charset-reg/OSD-EBCDIC-DF04-15\n\tOSDEBCDICDF0415 MIB = 115\n\n\t// OSDEBCDICDF03IRV is the MIB identifier with IANA name OSD_EBCDIC_DF03_IRV.\n\t//\n\t// Fujitsu-Siemens standard mainframe EBCDIC encoding\n\t// Please see: https://www.iana.org/assignments/charset-reg/OSD-EBCDIC-DF03-IRV\n\tOSDEBCDICDF03IRV MIB = 116\n\n\t// OSDEBCDICDF041 is the MIB identifier with IANA name OSD_EBCDIC_DF04_1.\n\t//\n\t// Fujitsu-Siemens standard mainframe EBCDIC encoding\n\t// Please see: https://www.iana.org/assignments/charset-reg/OSD-EBCDIC-DF04-1\n\tOSDEBCDICDF041 MIB = 117\n\n\t// ISO115481 is the MIB identifier with IANA name ISO-11548-1.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/ISO-11548-1\n\tISO115481 MIB = 118\n\n\t// KZ1048 is the MIB identifier with IANA name KZ-1048.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/KZ-1048\n\tKZ1048 MIB = 119\n\n\t// Unicode is the MIB identifier with IANA name ISO-10646-UCS-2.\n\t//\n\t// the 2-octet Basic Multilingual Plane, aka Unicode\n\t// this needs to specify network byte order: the standard\n\t// does not specify (it is a 16-bit integer space)\n\tUnicode MIB = 1000\n\n\t// UCS4 is the MIB identifier with IANA name ISO-10646-UCS-4.\n\t//\n\t// the full code space. (same comment about byte order,\n\t// these are 31-bit numbers.\n\tUCS4 MIB = 1001\n\n\t// UnicodeASCII is the MIB identifier with IANA name ISO-10646-UCS-Basic.\n\t//\n\t// ASCII subset of Unicode.  Basic Latin = collection 1\n\t// See ISO 10646, Appendix A\n\tUnicodeASCII MIB = 1002\n\n\t// UnicodeLatin1 is the MIB identifier with IANA name ISO-10646-Unicode-Latin1.\n\t//\n\t// ISO Latin-1 subset of Unicode. Basic Latin and Latin-1\n\t// Supplement  = collections 1 and 2.  See ISO 10646,\n\t// Appendix A.  See rfc1815 .\n\tUnicodeLatin1 MIB = 1003\n\n\t// UnicodeJapanese is the MIB identifier with IANA name ISO-10646-J-1.\n\t//\n\t// ISO 10646 Japanese, see rfc1815 .\n\tUnicodeJapanese MIB = 1004\n\n\t// UnicodeIBM1261 is the MIB identifier with IANA name ISO-Unicode-IBM-1261.\n\t//\n\t// IBM Latin-2, -3, -5, Extended Presentation Set, GCSGID: 1261\n\tUnicodeIBM1261 MIB = 1005\n\n\t// UnicodeIBM1268 is the MIB identifier with IANA name ISO-Unicode-IBM-1268.\n\t//\n\t// IBM Latin-4 Extended Presentation Set, GCSGID: 1268\n\tUnicodeIBM1268 MIB = 1006\n\n\t// UnicodeIBM1276 is the MIB identifier with IANA name ISO-Unicode-IBM-1276.\n\t//\n\t// IBM Cyrillic Greek Extended Presentation Set, GCSGID: 1276\n\tUnicodeIBM1276 MIB = 1007\n\n\t// UnicodeIBM1264 is the MIB identifier with IANA name ISO-Unicode-IBM-1264.\n\t//\n\t// IBM Arabic Presentation Set, GCSGID: 1264\n\tUnicodeIBM1264 MIB = 1008\n\n\t// UnicodeIBM1265 is the MIB identifier with IANA name ISO-Unicode-IBM-1265.\n\t//\n\t// IBM Hebrew Presentation Set, GCSGID: 1265\n\tUnicodeIBM1265 MIB = 1009\n\n\t// Unicode11 is the MIB identifier with IANA name UNICODE-1-1.\n\t//\n\t// rfc1641\n\t// Reference: RFC1641\n\tUnicode11 MIB = 1010\n\n\t// SCSU is the MIB identifier with IANA name SCSU.\n\t//\n\t// SCSU See https://www.iana.org/assignments/charset-reg/SCSU\n\tSCSU MIB = 1011\n\n\t// UTF7 is the MIB identifier with IANA name UTF-7.\n\t//\n\t// rfc2152\n\t// Reference: RFC2152\n\tUTF7 MIB = 1012\n\n\t// UTF16BE is the MIB identifier with IANA name UTF-16BE.\n\t//\n\t// rfc2781\n\t// Reference: RFC2781\n\tUTF16BE MIB = 1013\n\n\t// UTF16LE is the MIB identifier with IANA name UTF-16LE.\n\t//\n\t// rfc2781\n\t// Reference: RFC2781\n\tUTF16LE MIB = 1014\n\n\t// UTF16 is the MIB identifier with IANA name UTF-16.\n\t//\n\t// rfc2781\n\t// Reference: RFC2781\n\tUTF16 MIB = 1015\n\n\t// CESU8 is the MIB identifier with IANA name CESU-8.\n\t//\n\t// https://www.unicode.org/reports/tr26\n\tCESU8 MIB = 1016\n\n\t// UTF32 is the MIB identifier with IANA name UTF-32.\n\t//\n\t// https://www.unicode.org/reports/tr19/\n\tUTF32 MIB = 1017\n\n\t// UTF32BE is the MIB identifier with IANA name UTF-32BE.\n\t//\n\t// https://www.unicode.org/reports/tr19/\n\tUTF32BE MIB = 1018\n\n\t// UTF32LE is the MIB identifier with IANA name UTF-32LE.\n\t//\n\t// https://www.unicode.org/reports/tr19/\n\tUTF32LE MIB = 1019\n\n\t// BOCU1 is the MIB identifier with IANA name BOCU-1.\n\t//\n\t// https://www.unicode.org/notes/tn6/\n\tBOCU1 MIB = 1020\n\n\t// Windows30Latin1 is the MIB identifier with IANA name ISO-8859-1-Windows-3.0-Latin-1.\n\t//\n\t// Extended ISO 8859-1 Latin-1 for Windows 3.0.\n\t// PCL Symbol Set id: 9U\n\tWindows30Latin1 MIB = 2000\n\n\t// Windows31Latin1 is the MIB identifier with IANA name ISO-8859-1-Windows-3.1-Latin-1.\n\t//\n\t// Extended ISO 8859-1 Latin-1 for Windows 3.1.\n\t// PCL Symbol Set id: 19U\n\tWindows31Latin1 MIB = 2001\n\n\t// Windows31Latin2 is the MIB identifier with IANA name ISO-8859-2-Windows-Latin-2.\n\t//\n\t// Extended ISO 8859-2.  Latin-2 for Windows 3.1.\n\t// PCL Symbol Set id: 9E\n\tWindows31Latin2 MIB = 2002\n\n\t// Windows31Latin5 is the MIB identifier with IANA name ISO-8859-9-Windows-Latin-5.\n\t//\n\t// Extended ISO 8859-9.  Latin-5 for Windows 3.1\n\t// PCL Symbol Set id: 5T\n\tWindows31Latin5 MIB = 2003\n\n\t// HPRoman8 is the MIB identifier with IANA name hp-roman8.\n\t//\n\t// LaserJet IIP Printer User's Manual,\n\t// HP part no 33471-90901, Hewlet-Packard, June 1989.\n\t// Reference: RFC1345\n\tHPRoman8 MIB = 2004\n\n\t// AdobeStandardEncoding is the MIB identifier with IANA name Adobe-Standard-Encoding.\n\t//\n\t// PostScript Language Reference Manual\n\t// PCL Symbol Set id: 10J\n\tAdobeStandardEncoding MIB = 2005\n\n\t// VenturaUS is the MIB identifier with IANA name Ventura-US.\n\t//\n\t// Ventura US.  ASCII plus characters typically used in\n\t// publishing, like pilcrow, copyright, registered, trade mark,\n\t// section, dagger, and double dagger in the range A0 (hex)\n\t// to FF (hex).\n\t// PCL Symbol Set id: 14J\n\tVenturaUS MIB = 2006\n\n\t// VenturaInternational is the MIB identifier with IANA name Ventura-International.\n\t//\n\t// Ventura International.  ASCII plus coded characters similar\n\t// to Roman8.\n\t// PCL Symbol Set id: 13J\n\tVenturaInternational MIB = 2007\n\n\t// DECMCS is the MIB identifier with IANA name DEC-MCS.\n\t//\n\t// VAX/VMS User's Manual,\n\t// Order Number: AI-Y517A-TE, April 1986.\n\t// Reference: RFC1345\n\tDECMCS MIB = 2008\n\n\t// PC850Multilingual is the MIB identifier with IANA name IBM850.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tPC850Multilingual MIB = 2009\n\n\t// PC8DanishNorwegian is the MIB identifier with IANA name PC8-Danish-Norwegian.\n\t//\n\t// PC Danish Norwegian\n\t// 8-bit PC set for Danish Norwegian\n\t// PCL Symbol Set id: 11U\n\tPC8DanishNorwegian MIB = 2012\n\n\t// PC862LatinHebrew is the MIB identifier with IANA name IBM862.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tPC862LatinHebrew MIB = 2013\n\n\t// PC8Turkish is the MIB identifier with IANA name PC8-Turkish.\n\t//\n\t// PC Latin Turkish.  PCL Symbol Set id: 9T\n\tPC8Turkish MIB = 2014\n\n\t// IBMSymbols is the MIB identifier with IANA name IBM-Symbols.\n\t//\n\t// Presentation Set, CPGID: 259\n\tIBMSymbols MIB = 2015\n\n\t// IBMThai is the MIB identifier with IANA name IBM-Thai.\n\t//\n\t// Presentation Set, CPGID: 838\n\tIBMThai MIB = 2016\n\n\t// HPLegal is the MIB identifier with IANA name HP-Legal.\n\t//\n\t// PCL 5 Comparison Guide, Hewlett-Packard,\n\t// HP part number 5961-0510, October 1992\n\t// PCL Symbol Set id: 1U\n\tHPLegal MIB = 2017\n\n\t// HPPiFont is the MIB identifier with IANA name HP-Pi-font.\n\t//\n\t// PCL 5 Comparison Guide, Hewlett-Packard,\n\t// HP part number 5961-0510, October 1992\n\t// PCL Symbol Set id: 15U\n\tHPPiFont MIB = 2018\n\n\t// HPMath8 is the MIB identifier with IANA name HP-Math8.\n\t//\n\t// PCL 5 Comparison Guide, Hewlett-Packard,\n\t// HP part number 5961-0510, October 1992\n\t// PCL Symbol Set id: 8M\n\tHPMath8 MIB = 2019\n\n\t// HPPSMath is the MIB identifier with IANA name Adobe-Symbol-Encoding.\n\t//\n\t// PostScript Language Reference Manual\n\t// PCL Symbol Set id: 5M\n\tHPPSMath MIB = 2020\n\n\t// HPDesktop is the MIB identifier with IANA name HP-DeskTop.\n\t//\n\t// PCL 5 Comparison Guide, Hewlett-Packard,\n\t// HP part number 5961-0510, October 1992\n\t// PCL Symbol Set id: 7J\n\tHPDesktop MIB = 2021\n\n\t// VenturaMath is the MIB identifier with IANA name Ventura-Math.\n\t//\n\t// PCL 5 Comparison Guide, Hewlett-Packard,\n\t// HP part number 5961-0510, October 1992\n\t// PCL Symbol Set id: 6M\n\tVenturaMath MIB = 2022\n\n\t// MicrosoftPublishing is the MIB identifier with IANA name Microsoft-Publishing.\n\t//\n\t// PCL 5 Comparison Guide, Hewlett-Packard,\n\t// HP part number 5961-0510, October 1992\n\t// PCL Symbol Set id: 6J\n\tMicrosoftPublishing MIB = 2023\n\n\t// Windows31J is the MIB identifier with IANA name Windows-31J.\n\t//\n\t// Windows Japanese.  A further extension of Shift_JIS\n\t// to include NEC special characters (Row 13), NEC\n\t// selection of IBM extensions (Rows 89 to 92), and IBM\n\t// extensions (Rows 115 to 119).  The CCS's are\n\t// JIS X0201:1997, JIS X0208:1997, and these extensions.\n\t// This charset can be used for the top-level media type \"text\",\n\t// but it is of limited or specialized use (see rfc2278 ).\n\t// PCL Symbol Set id: 19K\n\tWindows31J MIB = 2024\n\n\t// GB2312 is the MIB identifier with IANA name GB2312 (MIME: GB2312).\n\t//\n\t// Chinese for People's Republic of China (PRC) mixed one byte,\n\t// two byte set:\n\t// 20-7E = one byte ASCII\n\t// A1-FE = two byte PRC Kanji\n\t// See GB 2312-80\n\t// PCL Symbol Set Id: 18C\n\tGB2312 MIB = 2025\n\n\t// Big5 is the MIB identifier with IANA name Big5 (MIME: Big5).\n\t//\n\t// Chinese for Taiwan Multi-byte set.\n\t// PCL Symbol Set Id: 18T\n\tBig5 MIB = 2026\n\n\t// Macintosh is the MIB identifier with IANA name macintosh.\n\t//\n\t// The Unicode Standard ver1.0, ISBN 0-201-56788-1, Oct 1991\n\t// Reference: RFC1345\n\tMacintosh MIB = 2027\n\n\t// IBM037 is the MIB identifier with IANA name IBM037.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM037 MIB = 2028\n\n\t// IBM038 is the MIB identifier with IANA name IBM038.\n\t//\n\t// IBM 3174 Character Set Ref, GA27-3831-02, March 1990\n\t// Reference: RFC1345\n\tIBM038 MIB = 2029\n\n\t// IBM273 is the MIB identifier with IANA name IBM273.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM273 MIB = 2030\n\n\t// IBM274 is the MIB identifier with IANA name IBM274.\n\t//\n\t// IBM 3174 Character Set Ref, GA27-3831-02, March 1990\n\t// Reference: RFC1345\n\tIBM274 MIB = 2031\n\n\t// IBM275 is the MIB identifier with IANA name IBM275.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM275 MIB = 2032\n\n\t// IBM277 is the MIB identifier with IANA name IBM277.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM277 MIB = 2033\n\n\t// IBM278 is the MIB identifier with IANA name IBM278.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM278 MIB = 2034\n\n\t// IBM280 is the MIB identifier with IANA name IBM280.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM280 MIB = 2035\n\n\t// IBM281 is the MIB identifier with IANA name IBM281.\n\t//\n\t// IBM 3174 Character Set Ref, GA27-3831-02, March 1990\n\t// Reference: RFC1345\n\tIBM281 MIB = 2036\n\n\t// IBM284 is the MIB identifier with IANA name IBM284.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM284 MIB = 2037\n\n\t// IBM285 is the MIB identifier with IANA name IBM285.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM285 MIB = 2038\n\n\t// IBM290 is the MIB identifier with IANA name IBM290.\n\t//\n\t// IBM 3174 Character Set Ref, GA27-3831-02, March 1990\n\t// Reference: RFC1345\n\tIBM290 MIB = 2039\n\n\t// IBM297 is the MIB identifier with IANA name IBM297.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM297 MIB = 2040\n\n\t// IBM420 is the MIB identifier with IANA name IBM420.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990,\n\t// IBM NLS RM p 11-11\n\t// Reference: RFC1345\n\tIBM420 MIB = 2041\n\n\t// IBM423 is the MIB identifier with IANA name IBM423.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM423 MIB = 2042\n\n\t// IBM424 is the MIB identifier with IANA name IBM424.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM424 MIB = 2043\n\n\t// PC8CodePage437 is the MIB identifier with IANA name IBM437.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tPC8CodePage437 MIB = 2011\n\n\t// IBM500 is the MIB identifier with IANA name IBM500.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM500 MIB = 2044\n\n\t// IBM851 is the MIB identifier with IANA name IBM851.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM851 MIB = 2045\n\n\t// PCp852 is the MIB identifier with IANA name IBM852.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tPCp852 MIB = 2010\n\n\t// IBM855 is the MIB identifier with IANA name IBM855.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM855 MIB = 2046\n\n\t// IBM857 is the MIB identifier with IANA name IBM857.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM857 MIB = 2047\n\n\t// IBM860 is the MIB identifier with IANA name IBM860.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM860 MIB = 2048\n\n\t// IBM861 is the MIB identifier with IANA name IBM861.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM861 MIB = 2049\n\n\t// IBM863 is the MIB identifier with IANA name IBM863.\n\t//\n\t// IBM Keyboard layouts and code pages, PN 07G4586 June 1991\n\t// Reference: RFC1345\n\tIBM863 MIB = 2050\n\n\t// IBM864 is the MIB identifier with IANA name IBM864.\n\t//\n\t// IBM Keyboard layouts and code pages, PN 07G4586 June 1991\n\t// Reference: RFC1345\n\tIBM864 MIB = 2051\n\n\t// IBM865 is the MIB identifier with IANA name IBM865.\n\t//\n\t// IBM DOS 3.3 Ref (Abridged), 94X9575 (Feb 1987)\n\t// Reference: RFC1345\n\tIBM865 MIB = 2052\n\n\t// IBM868 is the MIB identifier with IANA name IBM868.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM868 MIB = 2053\n\n\t// IBM869 is the MIB identifier with IANA name IBM869.\n\t//\n\t// IBM Keyboard layouts and code pages, PN 07G4586 June 1991\n\t// Reference: RFC1345\n\tIBM869 MIB = 2054\n\n\t// IBM870 is the MIB identifier with IANA name IBM870.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM870 MIB = 2055\n\n\t// IBM871 is the MIB identifier with IANA name IBM871.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM871 MIB = 2056\n\n\t// IBM880 is the MIB identifier with IANA name IBM880.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM880 MIB = 2057\n\n\t// IBM891 is the MIB identifier with IANA name IBM891.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM891 MIB = 2058\n\n\t// IBM903 is the MIB identifier with IANA name IBM903.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM903 MIB = 2059\n\n\t// IBBM904 is the MIB identifier with IANA name IBM904.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBBM904 MIB = 2060\n\n\t// IBM905 is the MIB identifier with IANA name IBM905.\n\t//\n\t// IBM 3174 Character Set Ref, GA27-3831-02, March 1990\n\t// Reference: RFC1345\n\tIBM905 MIB = 2061\n\n\t// IBM918 is the MIB identifier with IANA name IBM918.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM918 MIB = 2062\n\n\t// IBM1026 is the MIB identifier with IANA name IBM1026.\n\t//\n\t// IBM NLS RM Vol2 SE09-8002-01, March 1990\n\t// Reference: RFC1345\n\tIBM1026 MIB = 2063\n\n\t// IBMEBCDICATDE is the MIB identifier with IANA name EBCDIC-AT-DE.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tIBMEBCDICATDE MIB = 2064\n\n\t// EBCDICATDEA is the MIB identifier with IANA name EBCDIC-AT-DE-A.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICATDEA MIB = 2065\n\n\t// EBCDICCAFR is the MIB identifier with IANA name EBCDIC-CA-FR.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICCAFR MIB = 2066\n\n\t// EBCDICDKNO is the MIB identifier with IANA name EBCDIC-DK-NO.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICDKNO MIB = 2067\n\n\t// EBCDICDKNOA is the MIB identifier with IANA name EBCDIC-DK-NO-A.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICDKNOA MIB = 2068\n\n\t// EBCDICFISE is the MIB identifier with IANA name EBCDIC-FI-SE.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICFISE MIB = 2069\n\n\t// EBCDICFISEA is the MIB identifier with IANA name EBCDIC-FI-SE-A.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICFISEA MIB = 2070\n\n\t// EBCDICFR is the MIB identifier with IANA name EBCDIC-FR.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICFR MIB = 2071\n\n\t// EBCDICIT is the MIB identifier with IANA name EBCDIC-IT.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICIT MIB = 2072\n\n\t// EBCDICPT is the MIB identifier with IANA name EBCDIC-PT.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICPT MIB = 2073\n\n\t// EBCDICES is the MIB identifier with IANA name EBCDIC-ES.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICES MIB = 2074\n\n\t// EBCDICESA is the MIB identifier with IANA name EBCDIC-ES-A.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICESA MIB = 2075\n\n\t// EBCDICESS is the MIB identifier with IANA name EBCDIC-ES-S.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICESS MIB = 2076\n\n\t// EBCDICUK is the MIB identifier with IANA name EBCDIC-UK.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICUK MIB = 2077\n\n\t// EBCDICUS is the MIB identifier with IANA name EBCDIC-US.\n\t//\n\t// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987\n\t// Reference: RFC1345\n\tEBCDICUS MIB = 2078\n\n\t// Unknown8BiT is the MIB identifier with IANA name UNKNOWN-8BIT.\n\t//\n\t// Reference: RFC1428\n\tUnknown8BiT MIB = 2079\n\n\t// Mnemonic is the MIB identifier with IANA name MNEMONIC.\n\t//\n\t// rfc1345 , also known as \"mnemonic+ascii+38\"\n\t// Reference: RFC1345\n\tMnemonic MIB = 2080\n\n\t// Mnem is the MIB identifier with IANA name MNEM.\n\t//\n\t// rfc1345 , also known as \"mnemonic+ascii+8200\"\n\t// Reference: RFC1345\n\tMnem MIB = 2081\n\n\t// VISCII is the MIB identifier with IANA name VISCII.\n\t//\n\t// rfc1456\n\t// Reference: RFC1456\n\tVISCII MIB = 2082\n\n\t// VIQR is the MIB identifier with IANA name VIQR.\n\t//\n\t// rfc1456\n\t// Reference: RFC1456\n\tVIQR MIB = 2083\n\n\t// KOI8R is the MIB identifier with IANA name KOI8-R (MIME: KOI8-R).\n\t//\n\t// rfc1489 , based on GOST-19768-74, ISO-6937/8,\n\t// INIS-Cyrillic, ISO-5427.\n\t// Reference: RFC1489\n\tKOI8R MIB = 2084\n\n\t// HZGB2312 is the MIB identifier with IANA name HZ-GB-2312.\n\t//\n\t// rfc1842 , rfc1843 rfc1843 rfc1842\n\tHZGB2312 MIB = 2085\n\n\t// IBM866 is the MIB identifier with IANA name IBM866.\n\t//\n\t// IBM NLDG Volume 2 (SE09-8002-03) August 1994\n\tIBM866 MIB = 2086\n\n\t// PC775Baltic is the MIB identifier with IANA name IBM775.\n\t//\n\t// HP PCL 5 Comparison Guide (P/N 5021-0329) pp B-13, 1996\n\tPC775Baltic MIB = 2087\n\n\t// KOI8U is the MIB identifier with IANA name KOI8-U.\n\t//\n\t// rfc2319\n\t// Reference: RFC2319\n\tKOI8U MIB = 2088\n\n\t// IBM00858 is the MIB identifier with IANA name IBM00858.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM00858\n\tIBM00858 MIB = 2089\n\n\t// IBM00924 is the MIB identifier with IANA name IBM00924.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM00924\n\tIBM00924 MIB = 2090\n\n\t// IBM01140 is the MIB identifier with IANA name IBM01140.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01140\n\tIBM01140 MIB = 2091\n\n\t// IBM01141 is the MIB identifier with IANA name IBM01141.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01141\n\tIBM01141 MIB = 2092\n\n\t// IBM01142 is the MIB identifier with IANA name IBM01142.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01142\n\tIBM01142 MIB = 2093\n\n\t// IBM01143 is the MIB identifier with IANA name IBM01143.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01143\n\tIBM01143 MIB = 2094\n\n\t// IBM01144 is the MIB identifier with IANA name IBM01144.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01144\n\tIBM01144 MIB = 2095\n\n\t// IBM01145 is the MIB identifier with IANA name IBM01145.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01145\n\tIBM01145 MIB = 2096\n\n\t// IBM01146 is the MIB identifier with IANA name IBM01146.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01146\n\tIBM01146 MIB = 2097\n\n\t// IBM01147 is the MIB identifier with IANA name IBM01147.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01147\n\tIBM01147 MIB = 2098\n\n\t// IBM01148 is the MIB identifier with IANA name IBM01148.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01148\n\tIBM01148 MIB = 2099\n\n\t// IBM01149 is the MIB identifier with IANA name IBM01149.\n\t//\n\t// IBM See https://www.iana.org/assignments/charset-reg/IBM01149\n\tIBM01149 MIB = 2100\n\n\t// Big5HKSCS is the MIB identifier with IANA name Big5-HKSCS.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/Big5-HKSCS\n\tBig5HKSCS MIB = 2101\n\n\t// IBM1047 is the MIB identifier with IANA name IBM1047.\n\t//\n\t// IBM1047 (EBCDIC Latin 1/Open Systems) https://www-1.ibm.com/servers/eserver/iseries/software/globalization/pdf/cp01047z.pdf\n\tIBM1047 MIB = 2102\n\n\t// PTCP154 is the MIB identifier with IANA name PTCP154.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/PTCP154\n\tPTCP154 MIB = 2103\n\n\t// Amiga1251 is the MIB identifier with IANA name Amiga-1251.\n\t//\n\t// See https://www.amiga.ultranet.ru/Amiga-1251.html\n\tAmiga1251 MIB = 2104\n\n\t// KOI7switched is the MIB identifier with IANA name KOI7-switched.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/KOI7-switched\n\tKOI7switched MIB = 2105\n\n\t// BRF is the MIB identifier with IANA name BRF.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/BRF\n\tBRF MIB = 2106\n\n\t// TSCII is the MIB identifier with IANA name TSCII.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/TSCII\n\tTSCII MIB = 2107\n\n\t// CP51932 is the MIB identifier with IANA name CP51932.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/CP51932\n\tCP51932 MIB = 2108\n\n\t// Windows874 is the MIB identifier with IANA name windows-874.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/windows-874\n\tWindows874 MIB = 2109\n\n\t// Windows1250 is the MIB identifier with IANA name windows-1250.\n\t//\n\t// Microsoft https://www.iana.org/assignments/charset-reg/windows-1250\n\tWindows1250 MIB = 2250\n\n\t// Windows1251 is the MIB identifier with IANA name windows-1251.\n\t//\n\t// Microsoft https://www.iana.org/assignments/charset-reg/windows-1251\n\tWindows1251 MIB = 2251\n\n\t// Windows1252 is the MIB identifier with IANA name windows-1252.\n\t//\n\t// Microsoft https://www.iana.org/assignments/charset-reg/windows-1252\n\tWindows1252 MIB = 2252\n\n\t// Windows1253 is the MIB identifier with IANA name windows-1253.\n\t//\n\t// Microsoft https://www.iana.org/assignments/charset-reg/windows-1253\n\tWindows1253 MIB = 2253\n\n\t// Windows1254 is the MIB identifier with IANA name windows-1254.\n\t//\n\t// Microsoft https://www.iana.org/assignments/charset-reg/windows-1254\n\tWindows1254 MIB = 2254\n\n\t// Windows1255 is the MIB identifier with IANA name windows-1255.\n\t//\n\t// Microsoft https://www.iana.org/assignments/charset-reg/windows-1255\n\tWindows1255 MIB = 2255\n\n\t// Windows1256 is the MIB identifier with IANA name windows-1256.\n\t//\n\t// Microsoft https://www.iana.org/assignments/charset-reg/windows-1256\n\tWindows1256 MIB = 2256\n\n\t// Windows1257 is the MIB identifier with IANA name windows-1257.\n\t//\n\t// Microsoft https://www.iana.org/assignments/charset-reg/windows-1257\n\tWindows1257 MIB = 2257\n\n\t// Windows1258 is the MIB identifier with IANA name windows-1258.\n\t//\n\t// Microsoft https://www.iana.org/assignments/charset-reg/windows-1258\n\tWindows1258 MIB = 2258\n\n\t// TIS620 is the MIB identifier with IANA name TIS-620.\n\t//\n\t// Thai Industrial Standards Institute (TISI)\n\tTIS620 MIB = 2259\n\n\t// CP50220 is the MIB identifier with IANA name CP50220.\n\t//\n\t// See https://www.iana.org/assignments/charset-reg/CP50220\n\tCP50220 MIB = 2260\n)\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/internal/internal.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package internal contains code that is shared among encoding implementations.\npackage internal\n\nimport (\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\n// Encoding is an implementation of the Encoding interface that adds the String\n// and ID methods to an existing encoding.\ntype Encoding struct {\n\tencoding.Encoding\n\tName string\n\tMIB  identifier.MIB\n}\n\n// _ verifies that Encoding implements identifier.Interface.\nvar _ identifier.Interface = (*Encoding)(nil)\n\nfunc (e *Encoding) String() string {\n\treturn e.Name\n}\n\nfunc (e *Encoding) ID() (mib identifier.MIB, other string) {\n\treturn e.MIB, \"\"\n}\n\n// SimpleEncoding is an Encoding that combines two Transformers.\ntype SimpleEncoding struct {\n\tDecoder transform.Transformer\n\tEncoder transform.Transformer\n}\n\nfunc (e *SimpleEncoding) NewDecoder() *encoding.Decoder {\n\treturn &encoding.Decoder{Transformer: e.Decoder}\n}\n\nfunc (e *SimpleEncoding) NewEncoder() *encoding.Encoder {\n\treturn &encoding.Encoder{Transformer: e.Encoder}\n}\n\n// FuncEncoding is an Encoding that combines two functions returning a new\n// Transformer.\ntype FuncEncoding struct {\n\tDecoder func() transform.Transformer\n\tEncoder func() transform.Transformer\n}\n\nfunc (e FuncEncoding) NewDecoder() *encoding.Decoder {\n\treturn &encoding.Decoder{Transformer: e.Decoder()}\n}\n\nfunc (e FuncEncoding) NewEncoder() *encoding.Encoder {\n\treturn &encoding.Encoder{Transformer: e.Encoder()}\n}\n\n// A RepertoireError indicates a rune is not in the repertoire of a destination\n// encoding. It is associated with an encoding-specific suggested replacement\n// byte.\ntype RepertoireError byte\n\n// Error implements the error interrface.\nfunc (r RepertoireError) Error() string {\n\treturn \"encoding: rune not supported by encoding.\"\n}\n\n// Replacement returns the replacement string associated with this error.\nfunc (r RepertoireError) Replacement() byte { return byte(r) }\n\nvar ErrASCIIReplacement = RepertoireError(encoding.ASCIISub)\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/japanese/all.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage japanese\n\nimport (\n\t\"golang.org/x/text/encoding\"\n)\n\n// All is a list of all defined encodings in this package.\nvar All = []encoding.Encoding{EUCJP, ISO2022JP, ShiftJIS}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/japanese/eucjp.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage japanese\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\n// EUCJP is the EUC-JP encoding.\nvar EUCJP encoding.Encoding = &eucJP\n\nvar eucJP = internal.Encoding{\n\t&internal.SimpleEncoding{eucJPDecoder{}, eucJPEncoder{}},\n\t\"EUC-JP\",\n\tidentifier.EUCPkdFmtJapanese,\n}\n\ntype eucJPDecoder struct{ transform.NopResetter }\n\n// See https://encoding.spec.whatwg.org/#euc-jp-decoder.\nfunc (eucJPDecoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\nloop:\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tswitch c0 := src[nSrc]; {\n\t\tcase c0 < utf8.RuneSelf:\n\t\t\tr, size = rune(c0), 1\n\n\t\tcase c0 == 0x8e:\n\t\t\tif nSrc+1 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tc1 := src[nSrc+1]\n\t\t\tswitch {\n\t\t\tcase c1 < 0xa1:\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\tcase c1 > 0xdf:\n\t\t\t\tr, size = utf8.RuneError, 2\n\t\t\t\tif c1 == 0xff {\n\t\t\t\t\tsize = 1\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\tr, size = rune(c1)+(0xff61-0xa1), 2\n\t\t\t}\n\t\tcase c0 == 0x8f:\n\t\t\tif nSrc+2 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tif p := nSrc + 1; p < len(src) && 0xa1 <= src[p] && src[p] < 0xfe {\n\t\t\t\t\tsize = 2\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tc1 := src[nSrc+1]\n\t\t\tif c1 < 0xa1 || 0xfe < c1 {\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tc2 := src[nSrc+2]\n\t\t\tif c2 < 0xa1 || 0xfe < c2 {\n\t\t\t\tr, size = utf8.RuneError, 2\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tr, size = utf8.RuneError, 3\n\t\t\tif i := int(c1-0xa1)*94 + int(c2-0xa1); i < len(jis0212Decode) {\n\t\t\t\tr = rune(jis0212Decode[i])\n\t\t\t\tif r == 0 {\n\t\t\t\t\tr = utf8.RuneError\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase 0xa1 <= c0 && c0 <= 0xfe:\n\t\t\tif nSrc+1 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tc1 := src[nSrc+1]\n\t\t\tif c1 < 0xa1 || 0xfe < c1 {\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tr, size = utf8.RuneError, 2\n\t\t\tif i := int(c0-0xa1)*94 + int(c1-0xa1); i < len(jis0208Decode) {\n\t\t\t\tr = rune(jis0208Decode[i])\n\t\t\t\tif r == 0 {\n\t\t\t\t\tr = utf8.RuneError\n\t\t\t\t}\n\t\t\t}\n\n\t\tdefault:\n\t\t\tr, size = utf8.RuneError, 1\n\t\t}\n\n\t\tif nDst+utf8.RuneLen(r) > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak loop\n\t\t}\n\t\tnDst += utf8.EncodeRune(dst[nDst:], r)\n\t}\n\treturn nDst, nSrc, err\n}\n\ntype eucJPEncoder struct{ transform.NopResetter }\n\nfunc (eucJPEncoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tsize = 1\n\n\t\t} else {\n\t\t\t// Decode a multi-byte rune.\n\t\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\t\tif size == 1 {\n\t\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t\t// full character yet.\n\t\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// func init checks that the switch covers all tables.\n\t\t\tswitch {\n\t\t\tcase encode0Low <= r && r < encode0High:\n\t\t\t\tif r = rune(encode0[r-encode0Low]); r != 0 {\n\t\t\t\t\tgoto write2or3\n\t\t\t\t}\n\t\t\tcase encode1Low <= r && r < encode1High:\n\t\t\t\tif r = rune(encode1[r-encode1Low]); r != 0 {\n\t\t\t\t\tgoto write2or3\n\t\t\t\t}\n\t\t\tcase encode2Low <= r && r < encode2High:\n\t\t\t\tif r = rune(encode2[r-encode2Low]); r != 0 {\n\t\t\t\t\tgoto write2or3\n\t\t\t\t}\n\t\t\tcase encode3Low <= r && r < encode3High:\n\t\t\t\tif r = rune(encode3[r-encode3Low]); r != 0 {\n\t\t\t\t\tgoto write2or3\n\t\t\t\t}\n\t\t\tcase encode4Low <= r && r < encode4High:\n\t\t\t\tif r = rune(encode4[r-encode4Low]); r != 0 {\n\t\t\t\t\tgoto write2or3\n\t\t\t\t}\n\t\t\tcase encode5Low <= r && r < encode5High:\n\t\t\t\tif 0xff61 <= r && r < 0xffa0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\t\tif r = rune(encode5[r-encode5Low]); r != 0 {\n\t\t\t\t\tgoto write2or3\n\t\t\t\t}\n\t\t\t}\n\t\t\terr = internal.ErrASCIIReplacement\n\t\t\tbreak\n\t\t}\n\n\t\tif nDst >= len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst] = uint8(r)\n\t\tnDst++\n\t\tcontinue\n\n\twrite2or3:\n\t\tif r>>tableShift == jis0208 {\n\t\t\tif nDst+2 > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t} else {\n\t\t\tif nDst+3 > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[nDst] = 0x8f\n\t\t\tnDst++\n\t\t}\n\t\tdst[nDst+0] = 0xa1 + uint8(r>>codeShift)&codeMask\n\t\tdst[nDst+1] = 0xa1 + uint8(r)&codeMask\n\t\tnDst += 2\n\t\tcontinue\n\n\twrite2:\n\t\tif nDst+2 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst+0] = 0x8e\n\t\tdst[nDst+1] = uint8(r - (0xff61 - 0xa1))\n\t\tnDst += 2\n\t\tcontinue\n\t}\n\treturn nDst, nSrc, err\n}\n\nfunc init() {\n\t// Check that the hard-coded encode switch covers all tables.\n\tif numEncodeTables != 6 {\n\t\tpanic(\"bad numEncodeTables\")\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/japanese/iso2022jp.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage japanese\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\n// ISO2022JP is the ISO-2022-JP encoding.\nvar ISO2022JP encoding.Encoding = &iso2022JP\n\nvar iso2022JP = internal.Encoding{\n\tinternal.FuncEncoding{iso2022JPNewDecoder, iso2022JPNewEncoder},\n\t\"ISO-2022-JP\",\n\tidentifier.ISO2022JP,\n}\n\nfunc iso2022JPNewDecoder() transform.Transformer {\n\treturn new(iso2022JPDecoder)\n}\n\nfunc iso2022JPNewEncoder() transform.Transformer {\n\treturn new(iso2022JPEncoder)\n}\n\nconst (\n\tasciiState = iota\n\tkatakanaState\n\tjis0208State\n\tjis0212State\n)\n\nconst asciiEsc = 0x1b\n\ntype iso2022JPDecoder int\n\nfunc (d *iso2022JPDecoder) Reset() {\n\t*d = asciiState\n}\n\nfunc (d *iso2022JPDecoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tc0 := src[nSrc]\n\t\tif c0 >= utf8.RuneSelf {\n\t\t\tr, size = '\\ufffd', 1\n\t\t\tgoto write\n\t\t}\n\n\t\tif c0 == asciiEsc {\n\t\t\tif nSrc+2 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\treturn nDst, nSrc, transform.ErrShortSrc\n\t\t\t\t}\n\t\t\t\t// TODO: is it correct to only skip 1??\n\t\t\t\tr, size = '\\ufffd', 1\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tsize = 3\n\t\t\tc1 := src[nSrc+1]\n\t\t\tc2 := src[nSrc+2]\n\t\t\tswitch {\n\t\t\tcase c1 == '$' && (c2 == '@' || c2 == 'B'): // 0x24 {0x40, 0x42}\n\t\t\t\t*d = jis0208State\n\t\t\t\tcontinue\n\t\t\tcase c1 == '$' && c2 == '(': // 0x24 0x28\n\t\t\t\tif nSrc+3 >= len(src) {\n\t\t\t\t\tif !atEOF {\n\t\t\t\t\t\treturn nDst, nSrc, transform.ErrShortSrc\n\t\t\t\t\t}\n\t\t\t\t\tr, size = '\\ufffd', 1\n\t\t\t\t\tgoto write\n\t\t\t\t}\n\t\t\t\tsize = 4\n\t\t\t\tif src[nSrc+3] == 'D' {\n\t\t\t\t\t*d = jis0212State\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\tcase c1 == '(' && (c2 == 'B' || c2 == 'J'): // 0x28 {0x42, 0x4A}\n\t\t\t\t*d = asciiState\n\t\t\t\tcontinue\n\t\t\tcase c1 == '(' && c2 == 'I': // 0x28 0x49\n\t\t\t\t*d = katakanaState\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tr, size = '\\ufffd', 1\n\t\t\tgoto write\n\t\t}\n\n\t\tswitch *d {\n\t\tcase asciiState:\n\t\t\tr, size = rune(c0), 1\n\n\t\tcase katakanaState:\n\t\t\tif c0 < 0x21 || 0x60 <= c0 {\n\t\t\t\tr, size = '\\ufffd', 1\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tr, size = rune(c0)+(0xff61-0x21), 1\n\n\t\tdefault:\n\t\t\tif c0 == 0x0a {\n\t\t\t\t*d = asciiState\n\t\t\t\tr, size = rune(c0), 1\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tif nSrc+1 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\treturn nDst, nSrc, transform.ErrShortSrc\n\t\t\t\t}\n\t\t\t\tr, size = '\\ufffd', 1\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tsize = 2\n\t\t\tc1 := src[nSrc+1]\n\t\t\ti := int(c0-0x21)*94 + int(c1-0x21)\n\t\t\tif *d == jis0208State && i < len(jis0208Decode) {\n\t\t\t\tr = rune(jis0208Decode[i])\n\t\t\t} else if *d == jis0212State && i < len(jis0212Decode) {\n\t\t\t\tr = rune(jis0212Decode[i])\n\t\t\t} else {\n\t\t\t\tr = '\\ufffd'\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tif r == 0 {\n\t\t\t\tr = '\\ufffd'\n\t\t\t}\n\t\t}\n\n\twrite:\n\t\tif nDst+utf8.RuneLen(r) > len(dst) {\n\t\t\treturn nDst, nSrc, transform.ErrShortDst\n\t\t}\n\t\tnDst += utf8.EncodeRune(dst[nDst:], r)\n\t}\n\treturn nDst, nSrc, err\n}\n\ntype iso2022JPEncoder int\n\nfunc (e *iso2022JPEncoder) Reset() {\n\t*e = asciiState\n}\n\nfunc (e *iso2022JPEncoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tsize = 1\n\n\t\t} else {\n\t\t\t// Decode a multi-byte rune.\n\t\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\t\tif size == 1 {\n\t\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t\t// full character yet.\n\t\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// func init checks that the switch covers all tables.\n\t\t\t//\n\t\t\t// http://encoding.spec.whatwg.org/#iso-2022-jp says that \"the index jis0212\n\t\t\t// is not used by the iso-2022-jp encoder due to lack of widespread support\".\n\t\t\t//\n\t\t\t// TODO: do we have to special-case U+00A5 and U+203E, as per\n\t\t\t// http://encoding.spec.whatwg.org/#iso-2022-jp\n\t\t\t// Doing so would mean that \"\\u00a5\" would not be preserved\n\t\t\t// after an encode-decode round trip.\n\t\t\tswitch {\n\t\t\tcase encode0Low <= r && r < encode0High:\n\t\t\t\tif r = rune(encode0[r-encode0Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto writeJIS\n\t\t\t\t}\n\t\t\tcase encode1Low <= r && r < encode1High:\n\t\t\t\tif r = rune(encode1[r-encode1Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto writeJIS\n\t\t\t\t}\n\t\t\tcase encode2Low <= r && r < encode2High:\n\t\t\t\tif r = rune(encode2[r-encode2Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto writeJIS\n\t\t\t\t}\n\t\t\tcase encode3Low <= r && r < encode3High:\n\t\t\t\tif r = rune(encode3[r-encode3Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto writeJIS\n\t\t\t\t}\n\t\t\tcase encode4Low <= r && r < encode4High:\n\t\t\t\tif r = rune(encode4[r-encode4Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto writeJIS\n\t\t\t\t}\n\t\t\tcase encode5Low <= r && r < encode5High:\n\t\t\t\tif 0xff61 <= r && r < 0xffa0 {\n\t\t\t\t\tgoto writeKatakana\n\t\t\t\t}\n\t\t\t\tif r = rune(encode5[r-encode5Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto writeJIS\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Switch back to ASCII state in case of error so that an ASCII\n\t\t\t// replacement character can be written in the correct state.\n\t\t\tif *e != asciiState {\n\t\t\t\tif nDst+3 > len(dst) {\n\t\t\t\t\terr = transform.ErrShortDst\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\t*e = asciiState\n\t\t\t\tdst[nDst+0] = asciiEsc\n\t\t\t\tdst[nDst+1] = '('\n\t\t\t\tdst[nDst+2] = 'B'\n\t\t\t\tnDst += 3\n\t\t\t}\n\t\t\terr = internal.ErrASCIIReplacement\n\t\t\tbreak\n\t\t}\n\n\t\tif *e != asciiState {\n\t\t\tif nDst+4 > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t*e = asciiState\n\t\t\tdst[nDst+0] = asciiEsc\n\t\t\tdst[nDst+1] = '('\n\t\t\tdst[nDst+2] = 'B'\n\t\t\tnDst += 3\n\t\t} else if nDst >= len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst] = uint8(r)\n\t\tnDst++\n\t\tcontinue\n\n\twriteJIS:\n\t\tif *e != jis0208State {\n\t\t\tif nDst+5 > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t*e = jis0208State\n\t\t\tdst[nDst+0] = asciiEsc\n\t\t\tdst[nDst+1] = '$'\n\t\t\tdst[nDst+2] = 'B'\n\t\t\tnDst += 3\n\t\t} else if nDst+2 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst+0] = 0x21 + uint8(r>>codeShift)&codeMask\n\t\tdst[nDst+1] = 0x21 + uint8(r)&codeMask\n\t\tnDst += 2\n\t\tcontinue\n\n\twriteKatakana:\n\t\tif *e != katakanaState {\n\t\t\tif nDst+4 > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t*e = katakanaState\n\t\t\tdst[nDst+0] = asciiEsc\n\t\t\tdst[nDst+1] = '('\n\t\t\tdst[nDst+2] = 'I'\n\t\t\tnDst += 3\n\t\t} else if nDst >= len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst] = uint8(r - (0xff61 - 0x21))\n\t\tnDst++\n\t\tcontinue\n\t}\n\tif atEOF && err == nil && *e != asciiState {\n\t\tif nDst+3 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t} else {\n\t\t\t*e = asciiState\n\t\t\tdst[nDst+0] = asciiEsc\n\t\t\tdst[nDst+1] = '('\n\t\t\tdst[nDst+2] = 'B'\n\t\t\tnDst += 3\n\t\t}\n\t}\n\treturn nDst, nSrc, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/japanese/shiftjis.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage japanese\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\n// ShiftJIS is the Shift JIS encoding, also known as Code Page 932 and\n// Windows-31J.\nvar ShiftJIS encoding.Encoding = &shiftJIS\n\nvar shiftJIS = internal.Encoding{\n\t&internal.SimpleEncoding{shiftJISDecoder{}, shiftJISEncoder{}},\n\t\"Shift JIS\",\n\tidentifier.ShiftJIS,\n}\n\ntype shiftJISDecoder struct{ transform.NopResetter }\n\nfunc (shiftJISDecoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\nloop:\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tswitch c0 := src[nSrc]; {\n\t\tcase c0 < utf8.RuneSelf:\n\t\t\tr, size = rune(c0), 1\n\n\t\tcase 0xa1 <= c0 && c0 < 0xe0:\n\t\t\tr, size = rune(c0)+(0xff61-0xa1), 1\n\n\t\tcase (0x81 <= c0 && c0 < 0xa0) || (0xe0 <= c0 && c0 < 0xfd):\n\t\t\tif c0 <= 0x9f {\n\t\t\t\tc0 -= 0x70\n\t\t\t} else {\n\t\t\t\tc0 -= 0xb0\n\t\t\t}\n\t\t\tc0 = 2*c0 - 0x21\n\n\t\t\tif nSrc+1 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr, size = '\\ufffd', 1\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tc1 := src[nSrc+1]\n\t\t\tswitch {\n\t\t\tcase c1 < 0x40:\n\t\t\t\tr, size = '\\ufffd', 1 // c1 is ASCII so output on next round\n\t\t\t\tgoto write\n\t\t\tcase c1 < 0x7f:\n\t\t\t\tc0--\n\t\t\t\tc1 -= 0x40\n\t\t\tcase c1 == 0x7f:\n\t\t\t\tr, size = '\\ufffd', 1 // c1 is ASCII so output on next round\n\t\t\t\tgoto write\n\t\t\tcase c1 < 0x9f:\n\t\t\t\tc0--\n\t\t\t\tc1 -= 0x41\n\t\t\tcase c1 < 0xfd:\n\t\t\t\tc1 -= 0x9f\n\t\t\tdefault:\n\t\t\t\tr, size = '\\ufffd', 2\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tr, size = '\\ufffd', 2\n\t\t\tif i := int(c0)*94 + int(c1); i < len(jis0208Decode) {\n\t\t\t\tr = rune(jis0208Decode[i])\n\t\t\t\tif r == 0 {\n\t\t\t\t\tr = '\\ufffd'\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase c0 == 0x80:\n\t\t\tr, size = 0x80, 1\n\n\t\tdefault:\n\t\t\tr, size = '\\ufffd', 1\n\t\t}\n\twrite:\n\t\tif nDst+utf8.RuneLen(r) > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak loop\n\t\t}\n\t\tnDst += utf8.EncodeRune(dst[nDst:], r)\n\t}\n\treturn nDst, nSrc, err\n}\n\ntype shiftJISEncoder struct{ transform.NopResetter }\n\nfunc (shiftJISEncoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\nloop:\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tsize = 1\n\n\t\t} else {\n\t\t\t// Decode a multi-byte rune.\n\t\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\t\tif size == 1 {\n\t\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t\t// full character yet.\n\t\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// func init checks that the switch covers all tables.\n\t\t\tswitch {\n\t\t\tcase encode0Low <= r && r < encode0High:\n\t\t\t\tif r = rune(encode0[r-encode0Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode1Low <= r && r < encode1High:\n\t\t\t\tif r = rune(encode1[r-encode1Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode2Low <= r && r < encode2High:\n\t\t\t\tif r = rune(encode2[r-encode2Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode3Low <= r && r < encode3High:\n\t\t\t\tif r = rune(encode3[r-encode3Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode4Low <= r && r < encode4High:\n\t\t\t\tif r = rune(encode4[r-encode4Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode5Low <= r && r < encode5High:\n\t\t\t\tif 0xff61 <= r && r < 0xffa0 {\n\t\t\t\t\tr -= 0xff61 - 0xa1\n\t\t\t\t\tgoto write1\n\t\t\t\t}\n\t\t\t\tif r = rune(encode5[r-encode5Low]); r>>tableShift == jis0208 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\t}\n\t\t\terr = internal.ErrASCIIReplacement\n\t\t\tbreak\n\t\t}\n\n\twrite1:\n\t\tif nDst >= len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst] = uint8(r)\n\t\tnDst++\n\t\tcontinue\n\n\twrite2:\n\t\tj1 := uint8(r>>codeShift) & codeMask\n\t\tj2 := uint8(r) & codeMask\n\t\tif nDst+2 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak loop\n\t\t}\n\t\tif j1 <= 61 {\n\t\t\tdst[nDst+0] = 129 + j1/2\n\t\t} else {\n\t\t\tdst[nDst+0] = 193 + j1/2\n\t\t}\n\t\tif j1&1 == 0 {\n\t\t\tdst[nDst+1] = j2 + j2/63 + 64\n\t\t} else {\n\t\t\tdst[nDst+1] = j2 + 159\n\t\t}\n\t\tnDst += 2\n\t\tcontinue\n\t}\n\treturn nDst, nSrc, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/japanese/tables.go",
    "content": "// generated by go run maketables.go; DO NOT EDIT\n\n// Package japanese provides Japanese encodings such as EUC-JP and Shift JIS.\npackage japanese // import \"golang.org/x/text/encoding/japanese\"\n\n// jis0208Decode is the decoding table from JIS 0208 code to Unicode.\n// It is defined at http://encoding.spec.whatwg.org/index-jis0208.txt\nvar jis0208Decode = [...]uint16{\n\t0:     0x3000,\n\t1:     0x3001,\n\t2:     0x3002,\n\t3:     0xFF0C,\n\t4:     0xFF0E,\n\t5:     0x30FB,\n\t6:     0xFF1A,\n\t7:     0xFF1B,\n\t8:     0xFF1F,\n\t9:     0xFF01,\n\t10:    0x309B,\n\t11:    0x309C,\n\t12:    0x00B4,\n\t13:    0xFF40,\n\t14:    0x00A8,\n\t15:    0xFF3E,\n\t16:    0xFFE3,\n\t17:    0xFF3F,\n\t18:    0x30FD,\n\t19:    0x30FE,\n\t20:    0x309D,\n\t21:    0x309E,\n\t22:    0x3003,\n\t23:    0x4EDD,\n\t24:    0x3005,\n\t25:    0x3006,\n\t26:    0x3007,\n\t27:    0x30FC,\n\t28:    0x2015,\n\t29:    0x2010,\n\t30:    0xFF0F,\n\t31:    0xFF3C,\n\t32:    0xFF5E,\n\t33:    0x2225,\n\t34:    0xFF5C,\n\t35:    0x2026,\n\t36:    0x2025,\n\t37:    0x2018,\n\t38:    0x2019,\n\t39:    0x201C,\n\t40:    0x201D,\n\t41:    0xFF08,\n\t42:    0xFF09,\n\t43:    0x3014,\n\t44:    0x3015,\n\t45:    0xFF3B,\n\t46:    0xFF3D,\n\t47:    0xFF5B,\n\t48:    0xFF5D,\n\t49:    0x3008,\n\t50:    0x3009,\n\t51:    0x300A,\n\t52:    0x300B,\n\t53:    0x300C,\n\t54:    0x300D,\n\t55:    0x300E,\n\t56:    0x300F,\n\t57:    0x3010,\n\t58:    0x3011,\n\t59:    0xFF0B,\n\t60:    0xFF0D,\n\t61:    0x00B1,\n\t62:    0x00D7,\n\t63:    0x00F7,\n\t64:    0xFF1D,\n\t65:    0x2260,\n\t66:    0xFF1C,\n\t67:    0xFF1E,\n\t68:    0x2266,\n\t69:    0x2267,\n\t70:    0x221E,\n\t71:    0x2234,\n\t72:    0x2642,\n\t73:    0x2640,\n\t74:    0x00B0,\n\t75:    0x2032,\n\t76:    0x2033,\n\t77:    0x2103,\n\t78:    0xFFE5,\n\t79:    0xFF04,\n\t80:    0xFFE0,\n\t81:    0xFFE1,\n\t82:    0xFF05,\n\t83:    0xFF03,\n\t84:    0xFF06,\n\t85:    0xFF0A,\n\t86:    0xFF20,\n\t87:    0x00A7,\n\t88:    0x2606,\n\t89:    0x2605,\n\t90:    0x25CB,\n\t91:    0x25CF,\n\t92:    0x25CE,\n\t93:    0x25C7,\n\t94:    0x25C6,\n\t95:    0x25A1,\n\t96:    0x25A0,\n\t97:    0x25B3,\n\t98:    0x25B2,\n\t99:    0x25BD,\n\t100:   0x25BC,\n\t101:   0x203B,\n\t102:   0x3012,\n\t103:   0x2192,\n\t104:   0x2190,\n\t105:   0x2191,\n\t106:   0x2193,\n\t107:   0x3013,\n\t119:   0x2208,\n\t120:   0x220B,\n\t121:   0x2286,\n\t122:   0x2287,\n\t123:   0x2282,\n\t124:   0x2283,\n\t125:   0x222A,\n\t126:   0x2229,\n\t135:   0x2227,\n\t136:   0x2228,\n\t137:   0xFFE2,\n\t138:   0x21D2,\n\t139:   0x21D4,\n\t140:   0x2200,\n\t141:   0x2203,\n\t153:   0x2220,\n\t154:   0x22A5,\n\t155:   0x2312,\n\t156:   0x2202,\n\t157:   0x2207,\n\t158:   0x2261,\n\t159:   0x2252,\n\t160:   0x226A,\n\t161:   0x226B,\n\t162:   0x221A,\n\t163:   0x223D,\n\t164:   0x221D,\n\t165:   0x2235,\n\t166:   0x222B,\n\t167:   0x222C,\n\t175:   0x212B,\n\t176:   0x2030,\n\t177:   0x266F,\n\t178:   0x266D,\n\t179:   0x266A,\n\t180:   0x2020,\n\t181:   0x2021,\n\t182:   0x00B6,\n\t187:   0x25EF,\n\t203:   0xFF10,\n\t204:   0xFF11,\n\t205:   0xFF12,\n\t206:   0xFF13,\n\t207:   0xFF14,\n\t208:   0xFF15,\n\t209:   0xFF16,\n\t210:   0xFF17,\n\t211:   0xFF18,\n\t212:   0xFF19,\n\t220:   0xFF21,\n\t221:   0xFF22,\n\t222:   0xFF23,\n\t223:   0xFF24,\n\t224:   0xFF25,\n\t225:   0xFF26,\n\t226:   0xFF27,\n\t227:   0xFF28,\n\t228:   0xFF29,\n\t229:   0xFF2A,\n\t230:   0xFF2B,\n\t231:   0xFF2C,\n\t232:   0xFF2D,\n\t233:   0xFF2E,\n\t234:   0xFF2F,\n\t235:   0xFF30,\n\t236:   0xFF31,\n\t237:   0xFF32,\n\t238:   0xFF33,\n\t239:   0xFF34,\n\t240:   0xFF35,\n\t241:   0xFF36,\n\t242:   0xFF37,\n\t243:   0xFF38,\n\t244:   0xFF39,\n\t245:   0xFF3A,\n\t252:   0xFF41,\n\t253:   0xFF42,\n\t254:   0xFF43,\n\t255:   0xFF44,\n\t256:   0xFF45,\n\t257:   0xFF46,\n\t258:   0xFF47,\n\t259:   0xFF48,\n\t260:   0xFF49,\n\t261:   0xFF4A,\n\t262:   0xFF4B,\n\t263:   0xFF4C,\n\t264:   0xFF4D,\n\t265:   0xFF4E,\n\t266:   0xFF4F,\n\t267:   0xFF50,\n\t268:   0xFF51,\n\t269:   0xFF52,\n\t270:   0xFF53,\n\t271:   0xFF54,\n\t272:   0xFF55,\n\t273:   0xFF56,\n\t274:   0xFF57,\n\t275:   0xFF58,\n\t276:   0xFF59,\n\t277:   0xFF5A,\n\t282:   0x3041,\n\t283:   0x3042,\n\t284:   0x3043,\n\t285:   0x3044,\n\t286:   0x3045,\n\t287:   0x3046,\n\t288:   0x3047,\n\t289:   0x3048,\n\t290:   0x3049,\n\t291:   0x304A,\n\t292:   0x304B,\n\t293:   0x304C,\n\t294:   0x304D,\n\t295:   0x304E,\n\t296:   0x304F,\n\t297:   0x3050,\n\t298:   0x3051,\n\t299:   0x3052,\n\t300:   0x3053,\n\t301:   0x3054,\n\t302:   0x3055,\n\t303:   0x3056,\n\t304:   0x3057,\n\t305:   0x3058,\n\t306:   0x3059,\n\t307:   0x305A,\n\t308:   0x305B,\n\t309:   0x305C,\n\t310:   0x305D,\n\t311:   0x305E,\n\t312:   0x305F,\n\t313:   0x3060,\n\t314:   0x3061,\n\t315:   0x3062,\n\t316:   0x3063,\n\t317:   0x3064,\n\t318:   0x3065,\n\t319:   0x3066,\n\t320:   0x3067,\n\t321:   0x3068,\n\t322:   0x3069,\n\t323:   0x306A,\n\t324:   0x306B,\n\t325:   0x306C,\n\t326:   0x306D,\n\t327:   0x306E,\n\t328:   0x306F,\n\t329:   0x3070,\n\t330:   0x3071,\n\t331:   0x3072,\n\t332:   0x3073,\n\t333:   0x3074,\n\t334:   0x3075,\n\t335:   0x3076,\n\t336:   0x3077,\n\t337:   0x3078,\n\t338:   0x3079,\n\t339:   0x307A,\n\t340:   0x307B,\n\t341:   0x307C,\n\t342:   0x307D,\n\t343:   0x307E,\n\t344:   0x307F,\n\t345:   0x3080,\n\t346:   0x3081,\n\t347:   0x3082,\n\t348:   0x3083,\n\t349:   0x3084,\n\t350:   0x3085,\n\t351:   0x3086,\n\t352:   0x3087,\n\t353:   0x3088,\n\t354:   0x3089,\n\t355:   0x308A,\n\t356:   0x308B,\n\t357:   0x308C,\n\t358:   0x308D,\n\t359:   0x308E,\n\t360:   0x308F,\n\t361:   0x3090,\n\t362:   0x3091,\n\t363:   0x3092,\n\t364:   0x3093,\n\t376:   0x30A1,\n\t377:   0x30A2,\n\t378:   0x30A3,\n\t379:   0x30A4,\n\t380:   0x30A5,\n\t381:   0x30A6,\n\t382:   0x30A7,\n\t383:   0x30A8,\n\t384:   0x30A9,\n\t385:   0x30AA,\n\t386:   0x30AB,\n\t387:   0x30AC,\n\t388:   0x30AD,\n\t389:   0x30AE,\n\t390:   0x30AF,\n\t391:   0x30B0,\n\t392:   0x30B1,\n\t393:   0x30B2,\n\t394:   0x30B3,\n\t395:   0x30B4,\n\t396:   0x30B5,\n\t397:   0x30B6,\n\t398:   0x30B7,\n\t399:   0x30B8,\n\t400:   0x30B9,\n\t401:   0x30BA,\n\t402:   0x30BB,\n\t403:   0x30BC,\n\t404:   0x30BD,\n\t405:   0x30BE,\n\t406:   0x30BF,\n\t407:   0x30C0,\n\t408:   0x30C1,\n\t409:   0x30C2,\n\t410:   0x30C3,\n\t411:   0x30C4,\n\t412:   0x30C5,\n\t413:   0x30C6,\n\t414:   0x30C7,\n\t415:   0x30C8,\n\t416:   0x30C9,\n\t417:   0x30CA,\n\t418:   0x30CB,\n\t419:   0x30CC,\n\t420:   0x30CD,\n\t421:   0x30CE,\n\t422:   0x30CF,\n\t423:   0x30D0,\n\t424:   0x30D1,\n\t425:   0x30D2,\n\t426:   0x30D3,\n\t427:   0x30D4,\n\t428:   0x30D5,\n\t429:   0x30D6,\n\t430:   0x30D7,\n\t431:   0x30D8,\n\t432:   0x30D9,\n\t433:   0x30DA,\n\t434:   0x30DB,\n\t435:   0x30DC,\n\t436:   0x30DD,\n\t437:   0x30DE,\n\t438:   0x30DF,\n\t439:   0x30E0,\n\t440:   0x30E1,\n\t441:   0x30E2,\n\t442:   0x30E3,\n\t443:   0x30E4,\n\t444:   0x30E5,\n\t445:   0x30E6,\n\t446:   0x30E7,\n\t447:   0x30E8,\n\t448:   0x30E9,\n\t449:   0x30EA,\n\t450:   0x30EB,\n\t451:   0x30EC,\n\t452:   0x30ED,\n\t453:   0x30EE,\n\t454:   0x30EF,\n\t455:   0x30F0,\n\t456:   0x30F1,\n\t457:   0x30F2,\n\t458:   0x30F3,\n\t459:   0x30F4,\n\t460:   0x30F5,\n\t461:   0x30F6,\n\t470:   0x0391,\n\t471:   0x0392,\n\t472:   0x0393,\n\t473:   0x0394,\n\t474:   0x0395,\n\t475:   0x0396,\n\t476:   0x0397,\n\t477:   0x0398,\n\t478:   0x0399,\n\t479:   0x039A,\n\t480:   0x039B,\n\t481:   0x039C,\n\t482:   0x039D,\n\t483:   0x039E,\n\t484:   0x039F,\n\t485:   0x03A0,\n\t486:   0x03A1,\n\t487:   0x03A3,\n\t488:   0x03A4,\n\t489:   0x03A5,\n\t490:   0x03A6,\n\t491:   0x03A7,\n\t492:   0x03A8,\n\t493:   0x03A9,\n\t502:   0x03B1,\n\t503:   0x03B2,\n\t504:   0x03B3,\n\t505:   0x03B4,\n\t506:   0x03B5,\n\t507:   0x03B6,\n\t508:   0x03B7,\n\t509:   0x03B8,\n\t510:   0x03B9,\n\t511:   0x03BA,\n\t512:   0x03BB,\n\t513:   0x03BC,\n\t514:   0x03BD,\n\t515:   0x03BE,\n\t516:   0x03BF,\n\t517:   0x03C0,\n\t518:   0x03C1,\n\t519:   0x03C3,\n\t520:   0x03C4,\n\t521:   0x03C5,\n\t522:   0x03C6,\n\t523:   0x03C7,\n\t524:   0x03C8,\n\t525:   0x03C9,\n\t564:   0x0410,\n\t565:   0x0411,\n\t566:   0x0412,\n\t567:   0x0413,\n\t568:   0x0414,\n\t569:   0x0415,\n\t570:   0x0401,\n\t571:   0x0416,\n\t572:   0x0417,\n\t573:   0x0418,\n\t574:   0x0419,\n\t575:   0x041A,\n\t576:   0x041B,\n\t577:   0x041C,\n\t578:   0x041D,\n\t579:   0x041E,\n\t580:   0x041F,\n\t581:   0x0420,\n\t582:   0x0421,\n\t583:   0x0422,\n\t584:   0x0423,\n\t585:   0x0424,\n\t586:   0x0425,\n\t587:   0x0426,\n\t588:   0x0427,\n\t589:   0x0428,\n\t590:   0x0429,\n\t591:   0x042A,\n\t592:   0x042B,\n\t593:   0x042C,\n\t594:   0x042D,\n\t595:   0x042E,\n\t596:   0x042F,\n\t612:   0x0430,\n\t613:   0x0431,\n\t614:   0x0432,\n\t615:   0x0433,\n\t616:   0x0434,\n\t617:   0x0435,\n\t618:   0x0451,\n\t619:   0x0436,\n\t620:   0x0437,\n\t621:   0x0438,\n\t622:   0x0439,\n\t623:   0x043A,\n\t624:   0x043B,\n\t625:   0x043C,\n\t626:   0x043D,\n\t627:   0x043E,\n\t628:   0x043F,\n\t629:   0x0440,\n\t630:   0x0441,\n\t631:   0x0442,\n\t632:   0x0443,\n\t633:   0x0444,\n\t634:   0x0445,\n\t635:   0x0446,\n\t636:   0x0447,\n\t637:   0x0448,\n\t638:   0x0449,\n\t639:   0x044A,\n\t640:   0x044B,\n\t641:   0x044C,\n\t642:   0x044D,\n\t643:   0x044E,\n\t644:   0x044F,\n\t658:   0x2500,\n\t659:   0x2502,\n\t660:   0x250C,\n\t661:   0x2510,\n\t662:   0x2518,\n\t663:   0x2514,\n\t664:   0x251C,\n\t665:   0x252C,\n\t666:   0x2524,\n\t667:   0x2534,\n\t668:   0x253C,\n\t669:   0x2501,\n\t670:   0x2503,\n\t671:   0x250F,\n\t672:   0x2513,\n\t673:   0x251B,\n\t674:   0x2517,\n\t675:   0x2523,\n\t676:   0x2533,\n\t677:   0x252B,\n\t678:   0x253B,\n\t679:   0x254B,\n\t680:   0x2520,\n\t681:   0x252F,\n\t682:   0x2528,\n\t683:   0x2537,\n\t684:   0x253F,\n\t685:   0x251D,\n\t686:   0x2530,\n\t687:   0x2525,\n\t688:   0x2538,\n\t689:   0x2542,\n\t1128:  0x2460,\n\t1129:  0x2461,\n\t1130:  0x2462,\n\t1131:  0x2463,\n\t1132:  0x2464,\n\t1133:  0x2465,\n\t1134:  0x2466,\n\t1135:  0x2467,\n\t1136:  0x2468,\n\t1137:  0x2469,\n\t1138:  0x246A,\n\t1139:  0x246B,\n\t1140:  0x246C,\n\t1141:  0x246D,\n\t1142:  0x246E,\n\t1143:  0x246F,\n\t1144:  0x2470,\n\t1145:  0x2471,\n\t1146:  0x2472,\n\t1147:  0x2473,\n\t1148:  0x2160,\n\t1149:  0x2161,\n\t1150:  0x2162,\n\t1151:  0x2163,\n\t1152:  0x2164,\n\t1153:  0x2165,\n\t1154:  0x2166,\n\t1155:  0x2167,\n\t1156:  0x2168,\n\t1157:  0x2169,\n\t1159:  0x3349,\n\t1160:  0x3314,\n\t1161:  0x3322,\n\t1162:  0x334D,\n\t1163:  0x3318,\n\t1164:  0x3327,\n\t1165:  0x3303,\n\t1166:  0x3336,\n\t1167:  0x3351,\n\t1168:  0x3357,\n\t1169:  0x330D,\n\t1170:  0x3326,\n\t1171:  0x3323,\n\t1172:  0x332B,\n\t1173:  0x334A,\n\t1174:  0x333B,\n\t1175:  0x339C,\n\t1176:  0x339D,\n\t1177:  0x339E,\n\t1178:  0x338E,\n\t1179:  0x338F,\n\t1180:  0x33C4,\n\t1181:  0x33A1,\n\t1190:  0x337B,\n\t1191:  0x301D,\n\t1192:  0x301F,\n\t1193:  0x2116,\n\t1194:  0x33CD,\n\t1195:  0x2121,\n\t1196:  0x32A4,\n\t1197:  0x32A5,\n\t1198:  0x32A6,\n\t1199:  0x32A7,\n\t1200:  0x32A8,\n\t1201:  0x3231,\n\t1202:  0x3232,\n\t1203:  0x3239,\n\t1204:  0x337E,\n\t1205:  0x337D,\n\t1206:  0x337C,\n\t1207:  0x2252,\n\t1208:  0x2261,\n\t1209:  0x222B,\n\t1210:  0x222E,\n\t1211:  0x2211,\n\t1212:  0x221A,\n\t1213:  0x22A5,\n\t1214:  0x2220,\n\t1215:  0x221F,\n\t1216:  0x22BF,\n\t1217:  0x2235,\n\t1218:  0x2229,\n\t1219:  0x222A,\n\t1410:  0x4E9C,\n\t1411:  0x5516,\n\t1412:  0x5A03,\n\t1413:  0x963F,\n\t1414:  0x54C0,\n\t1415:  0x611B,\n\t1416:  0x6328,\n\t1417:  0x59F6,\n\t1418:  0x9022,\n\t1419:  0x8475,\n\t1420:  0x831C,\n\t1421:  0x7A50,\n\t1422:  0x60AA,\n\t1423:  0x63E1,\n\t1424:  0x6E25,\n\t1425:  0x65ED,\n\t1426:  0x8466,\n\t1427:  0x82A6,\n\t1428:  0x9BF5,\n\t1429:  0x6893,\n\t1430:  0x5727,\n\t1431:  0x65A1,\n\t1432:  0x6271,\n\t1433:  0x5B9B,\n\t1434:  0x59D0,\n\t1435:  0x867B,\n\t1436:  0x98F4,\n\t1437:  0x7D62,\n\t1438:  0x7DBE,\n\t1439:  0x9B8E,\n\t1440:  0x6216,\n\t1441:  0x7C9F,\n\t1442:  0x88B7,\n\t1443:  0x5B89,\n\t1444:  0x5EB5,\n\t1445:  0x6309,\n\t1446:  0x6697,\n\t1447:  0x6848,\n\t1448:  0x95C7,\n\t1449:  0x978D,\n\t1450:  0x674F,\n\t1451:  0x4EE5,\n\t1452:  0x4F0A,\n\t1453:  0x4F4D,\n\t1454:  0x4F9D,\n\t1455:  0x5049,\n\t1456:  0x56F2,\n\t1457:  0x5937,\n\t1458:  0x59D4,\n\t1459:  0x5A01,\n\t1460:  0x5C09,\n\t1461:  0x60DF,\n\t1462:  0x610F,\n\t1463:  0x6170,\n\t1464:  0x6613,\n\t1465:  0x6905,\n\t1466:  0x70BA,\n\t1467:  0x754F,\n\t1468:  0x7570,\n\t1469:  0x79FB,\n\t1470:  0x7DAD,\n\t1471:  0x7DEF,\n\t1472:  0x80C3,\n\t1473:  0x840E,\n\t1474:  0x8863,\n\t1475:  0x8B02,\n\t1476:  0x9055,\n\t1477:  0x907A,\n\t1478:  0x533B,\n\t1479:  0x4E95,\n\t1480:  0x4EA5,\n\t1481:  0x57DF,\n\t1482:  0x80B2,\n\t1483:  0x90C1,\n\t1484:  0x78EF,\n\t1485:  0x4E00,\n\t1486:  0x58F1,\n\t1487:  0x6EA2,\n\t1488:  0x9038,\n\t1489:  0x7A32,\n\t1490:  0x8328,\n\t1491:  0x828B,\n\t1492:  0x9C2F,\n\t1493:  0x5141,\n\t1494:  0x5370,\n\t1495:  0x54BD,\n\t1496:  0x54E1,\n\t1497:  0x56E0,\n\t1498:  0x59FB,\n\t1499:  0x5F15,\n\t1500:  0x98F2,\n\t1501:  0x6DEB,\n\t1502:  0x80E4,\n\t1503:  0x852D,\n\t1504:  0x9662,\n\t1505:  0x9670,\n\t1506:  0x96A0,\n\t1507:  0x97FB,\n\t1508:  0x540B,\n\t1509:  0x53F3,\n\t1510:  0x5B87,\n\t1511:  0x70CF,\n\t1512:  0x7FBD,\n\t1513:  0x8FC2,\n\t1514:  0x96E8,\n\t1515:  0x536F,\n\t1516:  0x9D5C,\n\t1517:  0x7ABA,\n\t1518:  0x4E11,\n\t1519:  0x7893,\n\t1520:  0x81FC,\n\t1521:  0x6E26,\n\t1522:  0x5618,\n\t1523:  0x5504,\n\t1524:  0x6B1D,\n\t1525:  0x851A,\n\t1526:  0x9C3B,\n\t1527:  0x59E5,\n\t1528:  0x53A9,\n\t1529:  0x6D66,\n\t1530:  0x74DC,\n\t1531:  0x958F,\n\t1532:  0x5642,\n\t1533:  0x4E91,\n\t1534:  0x904B,\n\t1535:  0x96F2,\n\t1536:  0x834F,\n\t1537:  0x990C,\n\t1538:  0x53E1,\n\t1539:  0x55B6,\n\t1540:  0x5B30,\n\t1541:  0x5F71,\n\t1542:  0x6620,\n\t1543:  0x66F3,\n\t1544:  0x6804,\n\t1545:  0x6C38,\n\t1546:  0x6CF3,\n\t1547:  0x6D29,\n\t1548:  0x745B,\n\t1549:  0x76C8,\n\t1550:  0x7A4E,\n\t1551:  0x9834,\n\t1552:  0x82F1,\n\t1553:  0x885B,\n\t1554:  0x8A60,\n\t1555:  0x92ED,\n\t1556:  0x6DB2,\n\t1557:  0x75AB,\n\t1558:  0x76CA,\n\t1559:  0x99C5,\n\t1560:  0x60A6,\n\t1561:  0x8B01,\n\t1562:  0x8D8A,\n\t1563:  0x95B2,\n\t1564:  0x698E,\n\t1565:  0x53AD,\n\t1566:  0x5186,\n\t1567:  0x5712,\n\t1568:  0x5830,\n\t1569:  0x5944,\n\t1570:  0x5BB4,\n\t1571:  0x5EF6,\n\t1572:  0x6028,\n\t1573:  0x63A9,\n\t1574:  0x63F4,\n\t1575:  0x6CBF,\n\t1576:  0x6F14,\n\t1577:  0x708E,\n\t1578:  0x7114,\n\t1579:  0x7159,\n\t1580:  0x71D5,\n\t1581:  0x733F,\n\t1582:  0x7E01,\n\t1583:  0x8276,\n\t1584:  0x82D1,\n\t1585:  0x8597,\n\t1586:  0x9060,\n\t1587:  0x925B,\n\t1588:  0x9D1B,\n\t1589:  0x5869,\n\t1590:  0x65BC,\n\t1591:  0x6C5A,\n\t1592:  0x7525,\n\t1593:  0x51F9,\n\t1594:  0x592E,\n\t1595:  0x5965,\n\t1596:  0x5F80,\n\t1597:  0x5FDC,\n\t1598:  0x62BC,\n\t1599:  0x65FA,\n\t1600:  0x6A2A,\n\t1601:  0x6B27,\n\t1602:  0x6BB4,\n\t1603:  0x738B,\n\t1604:  0x7FC1,\n\t1605:  0x8956,\n\t1606:  0x9D2C,\n\t1607:  0x9D0E,\n\t1608:  0x9EC4,\n\t1609:  0x5CA1,\n\t1610:  0x6C96,\n\t1611:  0x837B,\n\t1612:  0x5104,\n\t1613:  0x5C4B,\n\t1614:  0x61B6,\n\t1615:  0x81C6,\n\t1616:  0x6876,\n\t1617:  0x7261,\n\t1618:  0x4E59,\n\t1619:  0x4FFA,\n\t1620:  0x5378,\n\t1621:  0x6069,\n\t1622:  0x6E29,\n\t1623:  0x7A4F,\n\t1624:  0x97F3,\n\t1625:  0x4E0B,\n\t1626:  0x5316,\n\t1627:  0x4EEE,\n\t1628:  0x4F55,\n\t1629:  0x4F3D,\n\t1630:  0x4FA1,\n\t1631:  0x4F73,\n\t1632:  0x52A0,\n\t1633:  0x53EF,\n\t1634:  0x5609,\n\t1635:  0x590F,\n\t1636:  0x5AC1,\n\t1637:  0x5BB6,\n\t1638:  0x5BE1,\n\t1639:  0x79D1,\n\t1640:  0x6687,\n\t1641:  0x679C,\n\t1642:  0x67B6,\n\t1643:  0x6B4C,\n\t1644:  0x6CB3,\n\t1645:  0x706B,\n\t1646:  0x73C2,\n\t1647:  0x798D,\n\t1648:  0x79BE,\n\t1649:  0x7A3C,\n\t1650:  0x7B87,\n\t1651:  0x82B1,\n\t1652:  0x82DB,\n\t1653:  0x8304,\n\t1654:  0x8377,\n\t1655:  0x83EF,\n\t1656:  0x83D3,\n\t1657:  0x8766,\n\t1658:  0x8AB2,\n\t1659:  0x5629,\n\t1660:  0x8CA8,\n\t1661:  0x8FE6,\n\t1662:  0x904E,\n\t1663:  0x971E,\n\t1664:  0x868A,\n\t1665:  0x4FC4,\n\t1666:  0x5CE8,\n\t1667:  0x6211,\n\t1668:  0x7259,\n\t1669:  0x753B,\n\t1670:  0x81E5,\n\t1671:  0x82BD,\n\t1672:  0x86FE,\n\t1673:  0x8CC0,\n\t1674:  0x96C5,\n\t1675:  0x9913,\n\t1676:  0x99D5,\n\t1677:  0x4ECB,\n\t1678:  0x4F1A,\n\t1679:  0x89E3,\n\t1680:  0x56DE,\n\t1681:  0x584A,\n\t1682:  0x58CA,\n\t1683:  0x5EFB,\n\t1684:  0x5FEB,\n\t1685:  0x602A,\n\t1686:  0x6094,\n\t1687:  0x6062,\n\t1688:  0x61D0,\n\t1689:  0x6212,\n\t1690:  0x62D0,\n\t1691:  0x6539,\n\t1692:  0x9B41,\n\t1693:  0x6666,\n\t1694:  0x68B0,\n\t1695:  0x6D77,\n\t1696:  0x7070,\n\t1697:  0x754C,\n\t1698:  0x7686,\n\t1699:  0x7D75,\n\t1700:  0x82A5,\n\t1701:  0x87F9,\n\t1702:  0x958B,\n\t1703:  0x968E,\n\t1704:  0x8C9D,\n\t1705:  0x51F1,\n\t1706:  0x52BE,\n\t1707:  0x5916,\n\t1708:  0x54B3,\n\t1709:  0x5BB3,\n\t1710:  0x5D16,\n\t1711:  0x6168,\n\t1712:  0x6982,\n\t1713:  0x6DAF,\n\t1714:  0x788D,\n\t1715:  0x84CB,\n\t1716:  0x8857,\n\t1717:  0x8A72,\n\t1718:  0x93A7,\n\t1719:  0x9AB8,\n\t1720:  0x6D6C,\n\t1721:  0x99A8,\n\t1722:  0x86D9,\n\t1723:  0x57A3,\n\t1724:  0x67FF,\n\t1725:  0x86CE,\n\t1726:  0x920E,\n\t1727:  0x5283,\n\t1728:  0x5687,\n\t1729:  0x5404,\n\t1730:  0x5ED3,\n\t1731:  0x62E1,\n\t1732:  0x64B9,\n\t1733:  0x683C,\n\t1734:  0x6838,\n\t1735:  0x6BBB,\n\t1736:  0x7372,\n\t1737:  0x78BA,\n\t1738:  0x7A6B,\n\t1739:  0x899A,\n\t1740:  0x89D2,\n\t1741:  0x8D6B,\n\t1742:  0x8F03,\n\t1743:  0x90ED,\n\t1744:  0x95A3,\n\t1745:  0x9694,\n\t1746:  0x9769,\n\t1747:  0x5B66,\n\t1748:  0x5CB3,\n\t1749:  0x697D,\n\t1750:  0x984D,\n\t1751:  0x984E,\n\t1752:  0x639B,\n\t1753:  0x7B20,\n\t1754:  0x6A2B,\n\t1755:  0x6A7F,\n\t1756:  0x68B6,\n\t1757:  0x9C0D,\n\t1758:  0x6F5F,\n\t1759:  0x5272,\n\t1760:  0x559D,\n\t1761:  0x6070,\n\t1762:  0x62EC,\n\t1763:  0x6D3B,\n\t1764:  0x6E07,\n\t1765:  0x6ED1,\n\t1766:  0x845B,\n\t1767:  0x8910,\n\t1768:  0x8F44,\n\t1769:  0x4E14,\n\t1770:  0x9C39,\n\t1771:  0x53F6,\n\t1772:  0x691B,\n\t1773:  0x6A3A,\n\t1774:  0x9784,\n\t1775:  0x682A,\n\t1776:  0x515C,\n\t1777:  0x7AC3,\n\t1778:  0x84B2,\n\t1779:  0x91DC,\n\t1780:  0x938C,\n\t1781:  0x565B,\n\t1782:  0x9D28,\n\t1783:  0x6822,\n\t1784:  0x8305,\n\t1785:  0x8431,\n\t1786:  0x7CA5,\n\t1787:  0x5208,\n\t1788:  0x82C5,\n\t1789:  0x74E6,\n\t1790:  0x4E7E,\n\t1791:  0x4F83,\n\t1792:  0x51A0,\n\t1793:  0x5BD2,\n\t1794:  0x520A,\n\t1795:  0x52D8,\n\t1796:  0x52E7,\n\t1797:  0x5DFB,\n\t1798:  0x559A,\n\t1799:  0x582A,\n\t1800:  0x59E6,\n\t1801:  0x5B8C,\n\t1802:  0x5B98,\n\t1803:  0x5BDB,\n\t1804:  0x5E72,\n\t1805:  0x5E79,\n\t1806:  0x60A3,\n\t1807:  0x611F,\n\t1808:  0x6163,\n\t1809:  0x61BE,\n\t1810:  0x63DB,\n\t1811:  0x6562,\n\t1812:  0x67D1,\n\t1813:  0x6853,\n\t1814:  0x68FA,\n\t1815:  0x6B3E,\n\t1816:  0x6B53,\n\t1817:  0x6C57,\n\t1818:  0x6F22,\n\t1819:  0x6F97,\n\t1820:  0x6F45,\n\t1821:  0x74B0,\n\t1822:  0x7518,\n\t1823:  0x76E3,\n\t1824:  0x770B,\n\t1825:  0x7AFF,\n\t1826:  0x7BA1,\n\t1827:  0x7C21,\n\t1828:  0x7DE9,\n\t1829:  0x7F36,\n\t1830:  0x7FF0,\n\t1831:  0x809D,\n\t1832:  0x8266,\n\t1833:  0x839E,\n\t1834:  0x89B3,\n\t1835:  0x8ACC,\n\t1836:  0x8CAB,\n\t1837:  0x9084,\n\t1838:  0x9451,\n\t1839:  0x9593,\n\t1840:  0x9591,\n\t1841:  0x95A2,\n\t1842:  0x9665,\n\t1843:  0x97D3,\n\t1844:  0x9928,\n\t1845:  0x8218,\n\t1846:  0x4E38,\n\t1847:  0x542B,\n\t1848:  0x5CB8,\n\t1849:  0x5DCC,\n\t1850:  0x73A9,\n\t1851:  0x764C,\n\t1852:  0x773C,\n\t1853:  0x5CA9,\n\t1854:  0x7FEB,\n\t1855:  0x8D0B,\n\t1856:  0x96C1,\n\t1857:  0x9811,\n\t1858:  0x9854,\n\t1859:  0x9858,\n\t1860:  0x4F01,\n\t1861:  0x4F0E,\n\t1862:  0x5371,\n\t1863:  0x559C,\n\t1864:  0x5668,\n\t1865:  0x57FA,\n\t1866:  0x5947,\n\t1867:  0x5B09,\n\t1868:  0x5BC4,\n\t1869:  0x5C90,\n\t1870:  0x5E0C,\n\t1871:  0x5E7E,\n\t1872:  0x5FCC,\n\t1873:  0x63EE,\n\t1874:  0x673A,\n\t1875:  0x65D7,\n\t1876:  0x65E2,\n\t1877:  0x671F,\n\t1878:  0x68CB,\n\t1879:  0x68C4,\n\t1880:  0x6A5F,\n\t1881:  0x5E30,\n\t1882:  0x6BC5,\n\t1883:  0x6C17,\n\t1884:  0x6C7D,\n\t1885:  0x757F,\n\t1886:  0x7948,\n\t1887:  0x5B63,\n\t1888:  0x7A00,\n\t1889:  0x7D00,\n\t1890:  0x5FBD,\n\t1891:  0x898F,\n\t1892:  0x8A18,\n\t1893:  0x8CB4,\n\t1894:  0x8D77,\n\t1895:  0x8ECC,\n\t1896:  0x8F1D,\n\t1897:  0x98E2,\n\t1898:  0x9A0E,\n\t1899:  0x9B3C,\n\t1900:  0x4E80,\n\t1901:  0x507D,\n\t1902:  0x5100,\n\t1903:  0x5993,\n\t1904:  0x5B9C,\n\t1905:  0x622F,\n\t1906:  0x6280,\n\t1907:  0x64EC,\n\t1908:  0x6B3A,\n\t1909:  0x72A0,\n\t1910:  0x7591,\n\t1911:  0x7947,\n\t1912:  0x7FA9,\n\t1913:  0x87FB,\n\t1914:  0x8ABC,\n\t1915:  0x8B70,\n\t1916:  0x63AC,\n\t1917:  0x83CA,\n\t1918:  0x97A0,\n\t1919:  0x5409,\n\t1920:  0x5403,\n\t1921:  0x55AB,\n\t1922:  0x6854,\n\t1923:  0x6A58,\n\t1924:  0x8A70,\n\t1925:  0x7827,\n\t1926:  0x6775,\n\t1927:  0x9ECD,\n\t1928:  0x5374,\n\t1929:  0x5BA2,\n\t1930:  0x811A,\n\t1931:  0x8650,\n\t1932:  0x9006,\n\t1933:  0x4E18,\n\t1934:  0x4E45,\n\t1935:  0x4EC7,\n\t1936:  0x4F11,\n\t1937:  0x53CA,\n\t1938:  0x5438,\n\t1939:  0x5BAE,\n\t1940:  0x5F13,\n\t1941:  0x6025,\n\t1942:  0x6551,\n\t1943:  0x673D,\n\t1944:  0x6C42,\n\t1945:  0x6C72,\n\t1946:  0x6CE3,\n\t1947:  0x7078,\n\t1948:  0x7403,\n\t1949:  0x7A76,\n\t1950:  0x7AAE,\n\t1951:  0x7B08,\n\t1952:  0x7D1A,\n\t1953:  0x7CFE,\n\t1954:  0x7D66,\n\t1955:  0x65E7,\n\t1956:  0x725B,\n\t1957:  0x53BB,\n\t1958:  0x5C45,\n\t1959:  0x5DE8,\n\t1960:  0x62D2,\n\t1961:  0x62E0,\n\t1962:  0x6319,\n\t1963:  0x6E20,\n\t1964:  0x865A,\n\t1965:  0x8A31,\n\t1966:  0x8DDD,\n\t1967:  0x92F8,\n\t1968:  0x6F01,\n\t1969:  0x79A6,\n\t1970:  0x9B5A,\n\t1971:  0x4EA8,\n\t1972:  0x4EAB,\n\t1973:  0x4EAC,\n\t1974:  0x4F9B,\n\t1975:  0x4FA0,\n\t1976:  0x50D1,\n\t1977:  0x5147,\n\t1978:  0x7AF6,\n\t1979:  0x5171,\n\t1980:  0x51F6,\n\t1981:  0x5354,\n\t1982:  0x5321,\n\t1983:  0x537F,\n\t1984:  0x53EB,\n\t1985:  0x55AC,\n\t1986:  0x5883,\n\t1987:  0x5CE1,\n\t1988:  0x5F37,\n\t1989:  0x5F4A,\n\t1990:  0x602F,\n\t1991:  0x6050,\n\t1992:  0x606D,\n\t1993:  0x631F,\n\t1994:  0x6559,\n\t1995:  0x6A4B,\n\t1996:  0x6CC1,\n\t1997:  0x72C2,\n\t1998:  0x72ED,\n\t1999:  0x77EF,\n\t2000:  0x80F8,\n\t2001:  0x8105,\n\t2002:  0x8208,\n\t2003:  0x854E,\n\t2004:  0x90F7,\n\t2005:  0x93E1,\n\t2006:  0x97FF,\n\t2007:  0x9957,\n\t2008:  0x9A5A,\n\t2009:  0x4EF0,\n\t2010:  0x51DD,\n\t2011:  0x5C2D,\n\t2012:  0x6681,\n\t2013:  0x696D,\n\t2014:  0x5C40,\n\t2015:  0x66F2,\n\t2016:  0x6975,\n\t2017:  0x7389,\n\t2018:  0x6850,\n\t2019:  0x7C81,\n\t2020:  0x50C5,\n\t2021:  0x52E4,\n\t2022:  0x5747,\n\t2023:  0x5DFE,\n\t2024:  0x9326,\n\t2025:  0x65A4,\n\t2026:  0x6B23,\n\t2027:  0x6B3D,\n\t2028:  0x7434,\n\t2029:  0x7981,\n\t2030:  0x79BD,\n\t2031:  0x7B4B,\n\t2032:  0x7DCA,\n\t2033:  0x82B9,\n\t2034:  0x83CC,\n\t2035:  0x887F,\n\t2036:  0x895F,\n\t2037:  0x8B39,\n\t2038:  0x8FD1,\n\t2039:  0x91D1,\n\t2040:  0x541F,\n\t2041:  0x9280,\n\t2042:  0x4E5D,\n\t2043:  0x5036,\n\t2044:  0x53E5,\n\t2045:  0x533A,\n\t2046:  0x72D7,\n\t2047:  0x7396,\n\t2048:  0x77E9,\n\t2049:  0x82E6,\n\t2050:  0x8EAF,\n\t2051:  0x99C6,\n\t2052:  0x99C8,\n\t2053:  0x99D2,\n\t2054:  0x5177,\n\t2055:  0x611A,\n\t2056:  0x865E,\n\t2057:  0x55B0,\n\t2058:  0x7A7A,\n\t2059:  0x5076,\n\t2060:  0x5BD3,\n\t2061:  0x9047,\n\t2062:  0x9685,\n\t2063:  0x4E32,\n\t2064:  0x6ADB,\n\t2065:  0x91E7,\n\t2066:  0x5C51,\n\t2067:  0x5C48,\n\t2068:  0x6398,\n\t2069:  0x7A9F,\n\t2070:  0x6C93,\n\t2071:  0x9774,\n\t2072:  0x8F61,\n\t2073:  0x7AAA,\n\t2074:  0x718A,\n\t2075:  0x9688,\n\t2076:  0x7C82,\n\t2077:  0x6817,\n\t2078:  0x7E70,\n\t2079:  0x6851,\n\t2080:  0x936C,\n\t2081:  0x52F2,\n\t2082:  0x541B,\n\t2083:  0x85AB,\n\t2084:  0x8A13,\n\t2085:  0x7FA4,\n\t2086:  0x8ECD,\n\t2087:  0x90E1,\n\t2088:  0x5366,\n\t2089:  0x8888,\n\t2090:  0x7941,\n\t2091:  0x4FC2,\n\t2092:  0x50BE,\n\t2093:  0x5211,\n\t2094:  0x5144,\n\t2095:  0x5553,\n\t2096:  0x572D,\n\t2097:  0x73EA,\n\t2098:  0x578B,\n\t2099:  0x5951,\n\t2100:  0x5F62,\n\t2101:  0x5F84,\n\t2102:  0x6075,\n\t2103:  0x6176,\n\t2104:  0x6167,\n\t2105:  0x61A9,\n\t2106:  0x63B2,\n\t2107:  0x643A,\n\t2108:  0x656C,\n\t2109:  0x666F,\n\t2110:  0x6842,\n\t2111:  0x6E13,\n\t2112:  0x7566,\n\t2113:  0x7A3D,\n\t2114:  0x7CFB,\n\t2115:  0x7D4C,\n\t2116:  0x7D99,\n\t2117:  0x7E4B,\n\t2118:  0x7F6B,\n\t2119:  0x830E,\n\t2120:  0x834A,\n\t2121:  0x86CD,\n\t2122:  0x8A08,\n\t2123:  0x8A63,\n\t2124:  0x8B66,\n\t2125:  0x8EFD,\n\t2126:  0x981A,\n\t2127:  0x9D8F,\n\t2128:  0x82B8,\n\t2129:  0x8FCE,\n\t2130:  0x9BE8,\n\t2131:  0x5287,\n\t2132:  0x621F,\n\t2133:  0x6483,\n\t2134:  0x6FC0,\n\t2135:  0x9699,\n\t2136:  0x6841,\n\t2137:  0x5091,\n\t2138:  0x6B20,\n\t2139:  0x6C7A,\n\t2140:  0x6F54,\n\t2141:  0x7A74,\n\t2142:  0x7D50,\n\t2143:  0x8840,\n\t2144:  0x8A23,\n\t2145:  0x6708,\n\t2146:  0x4EF6,\n\t2147:  0x5039,\n\t2148:  0x5026,\n\t2149:  0x5065,\n\t2150:  0x517C,\n\t2151:  0x5238,\n\t2152:  0x5263,\n\t2153:  0x55A7,\n\t2154:  0x570F,\n\t2155:  0x5805,\n\t2156:  0x5ACC,\n\t2157:  0x5EFA,\n\t2158:  0x61B2,\n\t2159:  0x61F8,\n\t2160:  0x62F3,\n\t2161:  0x6372,\n\t2162:  0x691C,\n\t2163:  0x6A29,\n\t2164:  0x727D,\n\t2165:  0x72AC,\n\t2166:  0x732E,\n\t2167:  0x7814,\n\t2168:  0x786F,\n\t2169:  0x7D79,\n\t2170:  0x770C,\n\t2171:  0x80A9,\n\t2172:  0x898B,\n\t2173:  0x8B19,\n\t2174:  0x8CE2,\n\t2175:  0x8ED2,\n\t2176:  0x9063,\n\t2177:  0x9375,\n\t2178:  0x967A,\n\t2179:  0x9855,\n\t2180:  0x9A13,\n\t2181:  0x9E78,\n\t2182:  0x5143,\n\t2183:  0x539F,\n\t2184:  0x53B3,\n\t2185:  0x5E7B,\n\t2186:  0x5F26,\n\t2187:  0x6E1B,\n\t2188:  0x6E90,\n\t2189:  0x7384,\n\t2190:  0x73FE,\n\t2191:  0x7D43,\n\t2192:  0x8237,\n\t2193:  0x8A00,\n\t2194:  0x8AFA,\n\t2195:  0x9650,\n\t2196:  0x4E4E,\n\t2197:  0x500B,\n\t2198:  0x53E4,\n\t2199:  0x547C,\n\t2200:  0x56FA,\n\t2201:  0x59D1,\n\t2202:  0x5B64,\n\t2203:  0x5DF1,\n\t2204:  0x5EAB,\n\t2205:  0x5F27,\n\t2206:  0x6238,\n\t2207:  0x6545,\n\t2208:  0x67AF,\n\t2209:  0x6E56,\n\t2210:  0x72D0,\n\t2211:  0x7CCA,\n\t2212:  0x88B4,\n\t2213:  0x80A1,\n\t2214:  0x80E1,\n\t2215:  0x83F0,\n\t2216:  0x864E,\n\t2217:  0x8A87,\n\t2218:  0x8DE8,\n\t2219:  0x9237,\n\t2220:  0x96C7,\n\t2221:  0x9867,\n\t2222:  0x9F13,\n\t2223:  0x4E94,\n\t2224:  0x4E92,\n\t2225:  0x4F0D,\n\t2226:  0x5348,\n\t2227:  0x5449,\n\t2228:  0x543E,\n\t2229:  0x5A2F,\n\t2230:  0x5F8C,\n\t2231:  0x5FA1,\n\t2232:  0x609F,\n\t2233:  0x68A7,\n\t2234:  0x6A8E,\n\t2235:  0x745A,\n\t2236:  0x7881,\n\t2237:  0x8A9E,\n\t2238:  0x8AA4,\n\t2239:  0x8B77,\n\t2240:  0x9190,\n\t2241:  0x4E5E,\n\t2242:  0x9BC9,\n\t2243:  0x4EA4,\n\t2244:  0x4F7C,\n\t2245:  0x4FAF,\n\t2246:  0x5019,\n\t2247:  0x5016,\n\t2248:  0x5149,\n\t2249:  0x516C,\n\t2250:  0x529F,\n\t2251:  0x52B9,\n\t2252:  0x52FE,\n\t2253:  0x539A,\n\t2254:  0x53E3,\n\t2255:  0x5411,\n\t2256:  0x540E,\n\t2257:  0x5589,\n\t2258:  0x5751,\n\t2259:  0x57A2,\n\t2260:  0x597D,\n\t2261:  0x5B54,\n\t2262:  0x5B5D,\n\t2263:  0x5B8F,\n\t2264:  0x5DE5,\n\t2265:  0x5DE7,\n\t2266:  0x5DF7,\n\t2267:  0x5E78,\n\t2268:  0x5E83,\n\t2269:  0x5E9A,\n\t2270:  0x5EB7,\n\t2271:  0x5F18,\n\t2272:  0x6052,\n\t2273:  0x614C,\n\t2274:  0x6297,\n\t2275:  0x62D8,\n\t2276:  0x63A7,\n\t2277:  0x653B,\n\t2278:  0x6602,\n\t2279:  0x6643,\n\t2280:  0x66F4,\n\t2281:  0x676D,\n\t2282:  0x6821,\n\t2283:  0x6897,\n\t2284:  0x69CB,\n\t2285:  0x6C5F,\n\t2286:  0x6D2A,\n\t2287:  0x6D69,\n\t2288:  0x6E2F,\n\t2289:  0x6E9D,\n\t2290:  0x7532,\n\t2291:  0x7687,\n\t2292:  0x786C,\n\t2293:  0x7A3F,\n\t2294:  0x7CE0,\n\t2295:  0x7D05,\n\t2296:  0x7D18,\n\t2297:  0x7D5E,\n\t2298:  0x7DB1,\n\t2299:  0x8015,\n\t2300:  0x8003,\n\t2301:  0x80AF,\n\t2302:  0x80B1,\n\t2303:  0x8154,\n\t2304:  0x818F,\n\t2305:  0x822A,\n\t2306:  0x8352,\n\t2307:  0x884C,\n\t2308:  0x8861,\n\t2309:  0x8B1B,\n\t2310:  0x8CA2,\n\t2311:  0x8CFC,\n\t2312:  0x90CA,\n\t2313:  0x9175,\n\t2314:  0x9271,\n\t2315:  0x783F,\n\t2316:  0x92FC,\n\t2317:  0x95A4,\n\t2318:  0x964D,\n\t2319:  0x9805,\n\t2320:  0x9999,\n\t2321:  0x9AD8,\n\t2322:  0x9D3B,\n\t2323:  0x525B,\n\t2324:  0x52AB,\n\t2325:  0x53F7,\n\t2326:  0x5408,\n\t2327:  0x58D5,\n\t2328:  0x62F7,\n\t2329:  0x6FE0,\n\t2330:  0x8C6A,\n\t2331:  0x8F5F,\n\t2332:  0x9EB9,\n\t2333:  0x514B,\n\t2334:  0x523B,\n\t2335:  0x544A,\n\t2336:  0x56FD,\n\t2337:  0x7A40,\n\t2338:  0x9177,\n\t2339:  0x9D60,\n\t2340:  0x9ED2,\n\t2341:  0x7344,\n\t2342:  0x6F09,\n\t2343:  0x8170,\n\t2344:  0x7511,\n\t2345:  0x5FFD,\n\t2346:  0x60DA,\n\t2347:  0x9AA8,\n\t2348:  0x72DB,\n\t2349:  0x8FBC,\n\t2350:  0x6B64,\n\t2351:  0x9803,\n\t2352:  0x4ECA,\n\t2353:  0x56F0,\n\t2354:  0x5764,\n\t2355:  0x58BE,\n\t2356:  0x5A5A,\n\t2357:  0x6068,\n\t2358:  0x61C7,\n\t2359:  0x660F,\n\t2360:  0x6606,\n\t2361:  0x6839,\n\t2362:  0x68B1,\n\t2363:  0x6DF7,\n\t2364:  0x75D5,\n\t2365:  0x7D3A,\n\t2366:  0x826E,\n\t2367:  0x9B42,\n\t2368:  0x4E9B,\n\t2369:  0x4F50,\n\t2370:  0x53C9,\n\t2371:  0x5506,\n\t2372:  0x5D6F,\n\t2373:  0x5DE6,\n\t2374:  0x5DEE,\n\t2375:  0x67FB,\n\t2376:  0x6C99,\n\t2377:  0x7473,\n\t2378:  0x7802,\n\t2379:  0x8A50,\n\t2380:  0x9396,\n\t2381:  0x88DF,\n\t2382:  0x5750,\n\t2383:  0x5EA7,\n\t2384:  0x632B,\n\t2385:  0x50B5,\n\t2386:  0x50AC,\n\t2387:  0x518D,\n\t2388:  0x6700,\n\t2389:  0x54C9,\n\t2390:  0x585E,\n\t2391:  0x59BB,\n\t2392:  0x5BB0,\n\t2393:  0x5F69,\n\t2394:  0x624D,\n\t2395:  0x63A1,\n\t2396:  0x683D,\n\t2397:  0x6B73,\n\t2398:  0x6E08,\n\t2399:  0x707D,\n\t2400:  0x91C7,\n\t2401:  0x7280,\n\t2402:  0x7815,\n\t2403:  0x7826,\n\t2404:  0x796D,\n\t2405:  0x658E,\n\t2406:  0x7D30,\n\t2407:  0x83DC,\n\t2408:  0x88C1,\n\t2409:  0x8F09,\n\t2410:  0x969B,\n\t2411:  0x5264,\n\t2412:  0x5728,\n\t2413:  0x6750,\n\t2414:  0x7F6A,\n\t2415:  0x8CA1,\n\t2416:  0x51B4,\n\t2417:  0x5742,\n\t2418:  0x962A,\n\t2419:  0x583A,\n\t2420:  0x698A,\n\t2421:  0x80B4,\n\t2422:  0x54B2,\n\t2423:  0x5D0E,\n\t2424:  0x57FC,\n\t2425:  0x7895,\n\t2426:  0x9DFA,\n\t2427:  0x4F5C,\n\t2428:  0x524A,\n\t2429:  0x548B,\n\t2430:  0x643E,\n\t2431:  0x6628,\n\t2432:  0x6714,\n\t2433:  0x67F5,\n\t2434:  0x7A84,\n\t2435:  0x7B56,\n\t2436:  0x7D22,\n\t2437:  0x932F,\n\t2438:  0x685C,\n\t2439:  0x9BAD,\n\t2440:  0x7B39,\n\t2441:  0x5319,\n\t2442:  0x518A,\n\t2443:  0x5237,\n\t2444:  0x5BDF,\n\t2445:  0x62F6,\n\t2446:  0x64AE,\n\t2447:  0x64E6,\n\t2448:  0x672D,\n\t2449:  0x6BBA,\n\t2450:  0x85A9,\n\t2451:  0x96D1,\n\t2452:  0x7690,\n\t2453:  0x9BD6,\n\t2454:  0x634C,\n\t2455:  0x9306,\n\t2456:  0x9BAB,\n\t2457:  0x76BF,\n\t2458:  0x6652,\n\t2459:  0x4E09,\n\t2460:  0x5098,\n\t2461:  0x53C2,\n\t2462:  0x5C71,\n\t2463:  0x60E8,\n\t2464:  0x6492,\n\t2465:  0x6563,\n\t2466:  0x685F,\n\t2467:  0x71E6,\n\t2468:  0x73CA,\n\t2469:  0x7523,\n\t2470:  0x7B97,\n\t2471:  0x7E82,\n\t2472:  0x8695,\n\t2473:  0x8B83,\n\t2474:  0x8CDB,\n\t2475:  0x9178,\n\t2476:  0x9910,\n\t2477:  0x65AC,\n\t2478:  0x66AB,\n\t2479:  0x6B8B,\n\t2480:  0x4ED5,\n\t2481:  0x4ED4,\n\t2482:  0x4F3A,\n\t2483:  0x4F7F,\n\t2484:  0x523A,\n\t2485:  0x53F8,\n\t2486:  0x53F2,\n\t2487:  0x55E3,\n\t2488:  0x56DB,\n\t2489:  0x58EB,\n\t2490:  0x59CB,\n\t2491:  0x59C9,\n\t2492:  0x59FF,\n\t2493:  0x5B50,\n\t2494:  0x5C4D,\n\t2495:  0x5E02,\n\t2496:  0x5E2B,\n\t2497:  0x5FD7,\n\t2498:  0x601D,\n\t2499:  0x6307,\n\t2500:  0x652F,\n\t2501:  0x5B5C,\n\t2502:  0x65AF,\n\t2503:  0x65BD,\n\t2504:  0x65E8,\n\t2505:  0x679D,\n\t2506:  0x6B62,\n\t2507:  0x6B7B,\n\t2508:  0x6C0F,\n\t2509:  0x7345,\n\t2510:  0x7949,\n\t2511:  0x79C1,\n\t2512:  0x7CF8,\n\t2513:  0x7D19,\n\t2514:  0x7D2B,\n\t2515:  0x80A2,\n\t2516:  0x8102,\n\t2517:  0x81F3,\n\t2518:  0x8996,\n\t2519:  0x8A5E,\n\t2520:  0x8A69,\n\t2521:  0x8A66,\n\t2522:  0x8A8C,\n\t2523:  0x8AEE,\n\t2524:  0x8CC7,\n\t2525:  0x8CDC,\n\t2526:  0x96CC,\n\t2527:  0x98FC,\n\t2528:  0x6B6F,\n\t2529:  0x4E8B,\n\t2530:  0x4F3C,\n\t2531:  0x4F8D,\n\t2532:  0x5150,\n\t2533:  0x5B57,\n\t2534:  0x5BFA,\n\t2535:  0x6148,\n\t2536:  0x6301,\n\t2537:  0x6642,\n\t2538:  0x6B21,\n\t2539:  0x6ECB,\n\t2540:  0x6CBB,\n\t2541:  0x723E,\n\t2542:  0x74BD,\n\t2543:  0x75D4,\n\t2544:  0x78C1,\n\t2545:  0x793A,\n\t2546:  0x800C,\n\t2547:  0x8033,\n\t2548:  0x81EA,\n\t2549:  0x8494,\n\t2550:  0x8F9E,\n\t2551:  0x6C50,\n\t2552:  0x9E7F,\n\t2553:  0x5F0F,\n\t2554:  0x8B58,\n\t2555:  0x9D2B,\n\t2556:  0x7AFA,\n\t2557:  0x8EF8,\n\t2558:  0x5B8D,\n\t2559:  0x96EB,\n\t2560:  0x4E03,\n\t2561:  0x53F1,\n\t2562:  0x57F7,\n\t2563:  0x5931,\n\t2564:  0x5AC9,\n\t2565:  0x5BA4,\n\t2566:  0x6089,\n\t2567:  0x6E7F,\n\t2568:  0x6F06,\n\t2569:  0x75BE,\n\t2570:  0x8CEA,\n\t2571:  0x5B9F,\n\t2572:  0x8500,\n\t2573:  0x7BE0,\n\t2574:  0x5072,\n\t2575:  0x67F4,\n\t2576:  0x829D,\n\t2577:  0x5C61,\n\t2578:  0x854A,\n\t2579:  0x7E1E,\n\t2580:  0x820E,\n\t2581:  0x5199,\n\t2582:  0x5C04,\n\t2583:  0x6368,\n\t2584:  0x8D66,\n\t2585:  0x659C,\n\t2586:  0x716E,\n\t2587:  0x793E,\n\t2588:  0x7D17,\n\t2589:  0x8005,\n\t2590:  0x8B1D,\n\t2591:  0x8ECA,\n\t2592:  0x906E,\n\t2593:  0x86C7,\n\t2594:  0x90AA,\n\t2595:  0x501F,\n\t2596:  0x52FA,\n\t2597:  0x5C3A,\n\t2598:  0x6753,\n\t2599:  0x707C,\n\t2600:  0x7235,\n\t2601:  0x914C,\n\t2602:  0x91C8,\n\t2603:  0x932B,\n\t2604:  0x82E5,\n\t2605:  0x5BC2,\n\t2606:  0x5F31,\n\t2607:  0x60F9,\n\t2608:  0x4E3B,\n\t2609:  0x53D6,\n\t2610:  0x5B88,\n\t2611:  0x624B,\n\t2612:  0x6731,\n\t2613:  0x6B8A,\n\t2614:  0x72E9,\n\t2615:  0x73E0,\n\t2616:  0x7A2E,\n\t2617:  0x816B,\n\t2618:  0x8DA3,\n\t2619:  0x9152,\n\t2620:  0x9996,\n\t2621:  0x5112,\n\t2622:  0x53D7,\n\t2623:  0x546A,\n\t2624:  0x5BFF,\n\t2625:  0x6388,\n\t2626:  0x6A39,\n\t2627:  0x7DAC,\n\t2628:  0x9700,\n\t2629:  0x56DA,\n\t2630:  0x53CE,\n\t2631:  0x5468,\n\t2632:  0x5B97,\n\t2633:  0x5C31,\n\t2634:  0x5DDE,\n\t2635:  0x4FEE,\n\t2636:  0x6101,\n\t2637:  0x62FE,\n\t2638:  0x6D32,\n\t2639:  0x79C0,\n\t2640:  0x79CB,\n\t2641:  0x7D42,\n\t2642:  0x7E4D,\n\t2643:  0x7FD2,\n\t2644:  0x81ED,\n\t2645:  0x821F,\n\t2646:  0x8490,\n\t2647:  0x8846,\n\t2648:  0x8972,\n\t2649:  0x8B90,\n\t2650:  0x8E74,\n\t2651:  0x8F2F,\n\t2652:  0x9031,\n\t2653:  0x914B,\n\t2654:  0x916C,\n\t2655:  0x96C6,\n\t2656:  0x919C,\n\t2657:  0x4EC0,\n\t2658:  0x4F4F,\n\t2659:  0x5145,\n\t2660:  0x5341,\n\t2661:  0x5F93,\n\t2662:  0x620E,\n\t2663:  0x67D4,\n\t2664:  0x6C41,\n\t2665:  0x6E0B,\n\t2666:  0x7363,\n\t2667:  0x7E26,\n\t2668:  0x91CD,\n\t2669:  0x9283,\n\t2670:  0x53D4,\n\t2671:  0x5919,\n\t2672:  0x5BBF,\n\t2673:  0x6DD1,\n\t2674:  0x795D,\n\t2675:  0x7E2E,\n\t2676:  0x7C9B,\n\t2677:  0x587E,\n\t2678:  0x719F,\n\t2679:  0x51FA,\n\t2680:  0x8853,\n\t2681:  0x8FF0,\n\t2682:  0x4FCA,\n\t2683:  0x5CFB,\n\t2684:  0x6625,\n\t2685:  0x77AC,\n\t2686:  0x7AE3,\n\t2687:  0x821C,\n\t2688:  0x99FF,\n\t2689:  0x51C6,\n\t2690:  0x5FAA,\n\t2691:  0x65EC,\n\t2692:  0x696F,\n\t2693:  0x6B89,\n\t2694:  0x6DF3,\n\t2695:  0x6E96,\n\t2696:  0x6F64,\n\t2697:  0x76FE,\n\t2698:  0x7D14,\n\t2699:  0x5DE1,\n\t2700:  0x9075,\n\t2701:  0x9187,\n\t2702:  0x9806,\n\t2703:  0x51E6,\n\t2704:  0x521D,\n\t2705:  0x6240,\n\t2706:  0x6691,\n\t2707:  0x66D9,\n\t2708:  0x6E1A,\n\t2709:  0x5EB6,\n\t2710:  0x7DD2,\n\t2711:  0x7F72,\n\t2712:  0x66F8,\n\t2713:  0x85AF,\n\t2714:  0x85F7,\n\t2715:  0x8AF8,\n\t2716:  0x52A9,\n\t2717:  0x53D9,\n\t2718:  0x5973,\n\t2719:  0x5E8F,\n\t2720:  0x5F90,\n\t2721:  0x6055,\n\t2722:  0x92E4,\n\t2723:  0x9664,\n\t2724:  0x50B7,\n\t2725:  0x511F,\n\t2726:  0x52DD,\n\t2727:  0x5320,\n\t2728:  0x5347,\n\t2729:  0x53EC,\n\t2730:  0x54E8,\n\t2731:  0x5546,\n\t2732:  0x5531,\n\t2733:  0x5617,\n\t2734:  0x5968,\n\t2735:  0x59BE,\n\t2736:  0x5A3C,\n\t2737:  0x5BB5,\n\t2738:  0x5C06,\n\t2739:  0x5C0F,\n\t2740:  0x5C11,\n\t2741:  0x5C1A,\n\t2742:  0x5E84,\n\t2743:  0x5E8A,\n\t2744:  0x5EE0,\n\t2745:  0x5F70,\n\t2746:  0x627F,\n\t2747:  0x6284,\n\t2748:  0x62DB,\n\t2749:  0x638C,\n\t2750:  0x6377,\n\t2751:  0x6607,\n\t2752:  0x660C,\n\t2753:  0x662D,\n\t2754:  0x6676,\n\t2755:  0x677E,\n\t2756:  0x68A2,\n\t2757:  0x6A1F,\n\t2758:  0x6A35,\n\t2759:  0x6CBC,\n\t2760:  0x6D88,\n\t2761:  0x6E09,\n\t2762:  0x6E58,\n\t2763:  0x713C,\n\t2764:  0x7126,\n\t2765:  0x7167,\n\t2766:  0x75C7,\n\t2767:  0x7701,\n\t2768:  0x785D,\n\t2769:  0x7901,\n\t2770:  0x7965,\n\t2771:  0x79F0,\n\t2772:  0x7AE0,\n\t2773:  0x7B11,\n\t2774:  0x7CA7,\n\t2775:  0x7D39,\n\t2776:  0x8096,\n\t2777:  0x83D6,\n\t2778:  0x848B,\n\t2779:  0x8549,\n\t2780:  0x885D,\n\t2781:  0x88F3,\n\t2782:  0x8A1F,\n\t2783:  0x8A3C,\n\t2784:  0x8A54,\n\t2785:  0x8A73,\n\t2786:  0x8C61,\n\t2787:  0x8CDE,\n\t2788:  0x91A4,\n\t2789:  0x9266,\n\t2790:  0x937E,\n\t2791:  0x9418,\n\t2792:  0x969C,\n\t2793:  0x9798,\n\t2794:  0x4E0A,\n\t2795:  0x4E08,\n\t2796:  0x4E1E,\n\t2797:  0x4E57,\n\t2798:  0x5197,\n\t2799:  0x5270,\n\t2800:  0x57CE,\n\t2801:  0x5834,\n\t2802:  0x58CC,\n\t2803:  0x5B22,\n\t2804:  0x5E38,\n\t2805:  0x60C5,\n\t2806:  0x64FE,\n\t2807:  0x6761,\n\t2808:  0x6756,\n\t2809:  0x6D44,\n\t2810:  0x72B6,\n\t2811:  0x7573,\n\t2812:  0x7A63,\n\t2813:  0x84B8,\n\t2814:  0x8B72,\n\t2815:  0x91B8,\n\t2816:  0x9320,\n\t2817:  0x5631,\n\t2818:  0x57F4,\n\t2819:  0x98FE,\n\t2820:  0x62ED,\n\t2821:  0x690D,\n\t2822:  0x6B96,\n\t2823:  0x71ED,\n\t2824:  0x7E54,\n\t2825:  0x8077,\n\t2826:  0x8272,\n\t2827:  0x89E6,\n\t2828:  0x98DF,\n\t2829:  0x8755,\n\t2830:  0x8FB1,\n\t2831:  0x5C3B,\n\t2832:  0x4F38,\n\t2833:  0x4FE1,\n\t2834:  0x4FB5,\n\t2835:  0x5507,\n\t2836:  0x5A20,\n\t2837:  0x5BDD,\n\t2838:  0x5BE9,\n\t2839:  0x5FC3,\n\t2840:  0x614E,\n\t2841:  0x632F,\n\t2842:  0x65B0,\n\t2843:  0x664B,\n\t2844:  0x68EE,\n\t2845:  0x699B,\n\t2846:  0x6D78,\n\t2847:  0x6DF1,\n\t2848:  0x7533,\n\t2849:  0x75B9,\n\t2850:  0x771F,\n\t2851:  0x795E,\n\t2852:  0x79E6,\n\t2853:  0x7D33,\n\t2854:  0x81E3,\n\t2855:  0x82AF,\n\t2856:  0x85AA,\n\t2857:  0x89AA,\n\t2858:  0x8A3A,\n\t2859:  0x8EAB,\n\t2860:  0x8F9B,\n\t2861:  0x9032,\n\t2862:  0x91DD,\n\t2863:  0x9707,\n\t2864:  0x4EBA,\n\t2865:  0x4EC1,\n\t2866:  0x5203,\n\t2867:  0x5875,\n\t2868:  0x58EC,\n\t2869:  0x5C0B,\n\t2870:  0x751A,\n\t2871:  0x5C3D,\n\t2872:  0x814E,\n\t2873:  0x8A0A,\n\t2874:  0x8FC5,\n\t2875:  0x9663,\n\t2876:  0x976D,\n\t2877:  0x7B25,\n\t2878:  0x8ACF,\n\t2879:  0x9808,\n\t2880:  0x9162,\n\t2881:  0x56F3,\n\t2882:  0x53A8,\n\t2883:  0x9017,\n\t2884:  0x5439,\n\t2885:  0x5782,\n\t2886:  0x5E25,\n\t2887:  0x63A8,\n\t2888:  0x6C34,\n\t2889:  0x708A,\n\t2890:  0x7761,\n\t2891:  0x7C8B,\n\t2892:  0x7FE0,\n\t2893:  0x8870,\n\t2894:  0x9042,\n\t2895:  0x9154,\n\t2896:  0x9310,\n\t2897:  0x9318,\n\t2898:  0x968F,\n\t2899:  0x745E,\n\t2900:  0x9AC4,\n\t2901:  0x5D07,\n\t2902:  0x5D69,\n\t2903:  0x6570,\n\t2904:  0x67A2,\n\t2905:  0x8DA8,\n\t2906:  0x96DB,\n\t2907:  0x636E,\n\t2908:  0x6749,\n\t2909:  0x6919,\n\t2910:  0x83C5,\n\t2911:  0x9817,\n\t2912:  0x96C0,\n\t2913:  0x88FE,\n\t2914:  0x6F84,\n\t2915:  0x647A,\n\t2916:  0x5BF8,\n\t2917:  0x4E16,\n\t2918:  0x702C,\n\t2919:  0x755D,\n\t2920:  0x662F,\n\t2921:  0x51C4,\n\t2922:  0x5236,\n\t2923:  0x52E2,\n\t2924:  0x59D3,\n\t2925:  0x5F81,\n\t2926:  0x6027,\n\t2927:  0x6210,\n\t2928:  0x653F,\n\t2929:  0x6574,\n\t2930:  0x661F,\n\t2931:  0x6674,\n\t2932:  0x68F2,\n\t2933:  0x6816,\n\t2934:  0x6B63,\n\t2935:  0x6E05,\n\t2936:  0x7272,\n\t2937:  0x751F,\n\t2938:  0x76DB,\n\t2939:  0x7CBE,\n\t2940:  0x8056,\n\t2941:  0x58F0,\n\t2942:  0x88FD,\n\t2943:  0x897F,\n\t2944:  0x8AA0,\n\t2945:  0x8A93,\n\t2946:  0x8ACB,\n\t2947:  0x901D,\n\t2948:  0x9192,\n\t2949:  0x9752,\n\t2950:  0x9759,\n\t2951:  0x6589,\n\t2952:  0x7A0E,\n\t2953:  0x8106,\n\t2954:  0x96BB,\n\t2955:  0x5E2D,\n\t2956:  0x60DC,\n\t2957:  0x621A,\n\t2958:  0x65A5,\n\t2959:  0x6614,\n\t2960:  0x6790,\n\t2961:  0x77F3,\n\t2962:  0x7A4D,\n\t2963:  0x7C4D,\n\t2964:  0x7E3E,\n\t2965:  0x810A,\n\t2966:  0x8CAC,\n\t2967:  0x8D64,\n\t2968:  0x8DE1,\n\t2969:  0x8E5F,\n\t2970:  0x78A9,\n\t2971:  0x5207,\n\t2972:  0x62D9,\n\t2973:  0x63A5,\n\t2974:  0x6442,\n\t2975:  0x6298,\n\t2976:  0x8A2D,\n\t2977:  0x7A83,\n\t2978:  0x7BC0,\n\t2979:  0x8AAC,\n\t2980:  0x96EA,\n\t2981:  0x7D76,\n\t2982:  0x820C,\n\t2983:  0x8749,\n\t2984:  0x4ED9,\n\t2985:  0x5148,\n\t2986:  0x5343,\n\t2987:  0x5360,\n\t2988:  0x5BA3,\n\t2989:  0x5C02,\n\t2990:  0x5C16,\n\t2991:  0x5DDD,\n\t2992:  0x6226,\n\t2993:  0x6247,\n\t2994:  0x64B0,\n\t2995:  0x6813,\n\t2996:  0x6834,\n\t2997:  0x6CC9,\n\t2998:  0x6D45,\n\t2999:  0x6D17,\n\t3000:  0x67D3,\n\t3001:  0x6F5C,\n\t3002:  0x714E,\n\t3003:  0x717D,\n\t3004:  0x65CB,\n\t3005:  0x7A7F,\n\t3006:  0x7BAD,\n\t3007:  0x7DDA,\n\t3008:  0x7E4A,\n\t3009:  0x7FA8,\n\t3010:  0x817A,\n\t3011:  0x821B,\n\t3012:  0x8239,\n\t3013:  0x85A6,\n\t3014:  0x8A6E,\n\t3015:  0x8CCE,\n\t3016:  0x8DF5,\n\t3017:  0x9078,\n\t3018:  0x9077,\n\t3019:  0x92AD,\n\t3020:  0x9291,\n\t3021:  0x9583,\n\t3022:  0x9BAE,\n\t3023:  0x524D,\n\t3024:  0x5584,\n\t3025:  0x6F38,\n\t3026:  0x7136,\n\t3027:  0x5168,\n\t3028:  0x7985,\n\t3029:  0x7E55,\n\t3030:  0x81B3,\n\t3031:  0x7CCE,\n\t3032:  0x564C,\n\t3033:  0x5851,\n\t3034:  0x5CA8,\n\t3035:  0x63AA,\n\t3036:  0x66FE,\n\t3037:  0x66FD,\n\t3038:  0x695A,\n\t3039:  0x72D9,\n\t3040:  0x758F,\n\t3041:  0x758E,\n\t3042:  0x790E,\n\t3043:  0x7956,\n\t3044:  0x79DF,\n\t3045:  0x7C97,\n\t3046:  0x7D20,\n\t3047:  0x7D44,\n\t3048:  0x8607,\n\t3049:  0x8A34,\n\t3050:  0x963B,\n\t3051:  0x9061,\n\t3052:  0x9F20,\n\t3053:  0x50E7,\n\t3054:  0x5275,\n\t3055:  0x53CC,\n\t3056:  0x53E2,\n\t3057:  0x5009,\n\t3058:  0x55AA,\n\t3059:  0x58EE,\n\t3060:  0x594F,\n\t3061:  0x723D,\n\t3062:  0x5B8B,\n\t3063:  0x5C64,\n\t3064:  0x531D,\n\t3065:  0x60E3,\n\t3066:  0x60F3,\n\t3067:  0x635C,\n\t3068:  0x6383,\n\t3069:  0x633F,\n\t3070:  0x63BB,\n\t3071:  0x64CD,\n\t3072:  0x65E9,\n\t3073:  0x66F9,\n\t3074:  0x5DE3,\n\t3075:  0x69CD,\n\t3076:  0x69FD,\n\t3077:  0x6F15,\n\t3078:  0x71E5,\n\t3079:  0x4E89,\n\t3080:  0x75E9,\n\t3081:  0x76F8,\n\t3082:  0x7A93,\n\t3083:  0x7CDF,\n\t3084:  0x7DCF,\n\t3085:  0x7D9C,\n\t3086:  0x8061,\n\t3087:  0x8349,\n\t3088:  0x8358,\n\t3089:  0x846C,\n\t3090:  0x84BC,\n\t3091:  0x85FB,\n\t3092:  0x88C5,\n\t3093:  0x8D70,\n\t3094:  0x9001,\n\t3095:  0x906D,\n\t3096:  0x9397,\n\t3097:  0x971C,\n\t3098:  0x9A12,\n\t3099:  0x50CF,\n\t3100:  0x5897,\n\t3101:  0x618E,\n\t3102:  0x81D3,\n\t3103:  0x8535,\n\t3104:  0x8D08,\n\t3105:  0x9020,\n\t3106:  0x4FC3,\n\t3107:  0x5074,\n\t3108:  0x5247,\n\t3109:  0x5373,\n\t3110:  0x606F,\n\t3111:  0x6349,\n\t3112:  0x675F,\n\t3113:  0x6E2C,\n\t3114:  0x8DB3,\n\t3115:  0x901F,\n\t3116:  0x4FD7,\n\t3117:  0x5C5E,\n\t3118:  0x8CCA,\n\t3119:  0x65CF,\n\t3120:  0x7D9A,\n\t3121:  0x5352,\n\t3122:  0x8896,\n\t3123:  0x5176,\n\t3124:  0x63C3,\n\t3125:  0x5B58,\n\t3126:  0x5B6B,\n\t3127:  0x5C0A,\n\t3128:  0x640D,\n\t3129:  0x6751,\n\t3130:  0x905C,\n\t3131:  0x4ED6,\n\t3132:  0x591A,\n\t3133:  0x592A,\n\t3134:  0x6C70,\n\t3135:  0x8A51,\n\t3136:  0x553E,\n\t3137:  0x5815,\n\t3138:  0x59A5,\n\t3139:  0x60F0,\n\t3140:  0x6253,\n\t3141:  0x67C1,\n\t3142:  0x8235,\n\t3143:  0x6955,\n\t3144:  0x9640,\n\t3145:  0x99C4,\n\t3146:  0x9A28,\n\t3147:  0x4F53,\n\t3148:  0x5806,\n\t3149:  0x5BFE,\n\t3150:  0x8010,\n\t3151:  0x5CB1,\n\t3152:  0x5E2F,\n\t3153:  0x5F85,\n\t3154:  0x6020,\n\t3155:  0x614B,\n\t3156:  0x6234,\n\t3157:  0x66FF,\n\t3158:  0x6CF0,\n\t3159:  0x6EDE,\n\t3160:  0x80CE,\n\t3161:  0x817F,\n\t3162:  0x82D4,\n\t3163:  0x888B,\n\t3164:  0x8CB8,\n\t3165:  0x9000,\n\t3166:  0x902E,\n\t3167:  0x968A,\n\t3168:  0x9EDB,\n\t3169:  0x9BDB,\n\t3170:  0x4EE3,\n\t3171:  0x53F0,\n\t3172:  0x5927,\n\t3173:  0x7B2C,\n\t3174:  0x918D,\n\t3175:  0x984C,\n\t3176:  0x9DF9,\n\t3177:  0x6EDD,\n\t3178:  0x7027,\n\t3179:  0x5353,\n\t3180:  0x5544,\n\t3181:  0x5B85,\n\t3182:  0x6258,\n\t3183:  0x629E,\n\t3184:  0x62D3,\n\t3185:  0x6CA2,\n\t3186:  0x6FEF,\n\t3187:  0x7422,\n\t3188:  0x8A17,\n\t3189:  0x9438,\n\t3190:  0x6FC1,\n\t3191:  0x8AFE,\n\t3192:  0x8338,\n\t3193:  0x51E7,\n\t3194:  0x86F8,\n\t3195:  0x53EA,\n\t3196:  0x53E9,\n\t3197:  0x4F46,\n\t3198:  0x9054,\n\t3199:  0x8FB0,\n\t3200:  0x596A,\n\t3201:  0x8131,\n\t3202:  0x5DFD,\n\t3203:  0x7AEA,\n\t3204:  0x8FBF,\n\t3205:  0x68DA,\n\t3206:  0x8C37,\n\t3207:  0x72F8,\n\t3208:  0x9C48,\n\t3209:  0x6A3D,\n\t3210:  0x8AB0,\n\t3211:  0x4E39,\n\t3212:  0x5358,\n\t3213:  0x5606,\n\t3214:  0x5766,\n\t3215:  0x62C5,\n\t3216:  0x63A2,\n\t3217:  0x65E6,\n\t3218:  0x6B4E,\n\t3219:  0x6DE1,\n\t3220:  0x6E5B,\n\t3221:  0x70AD,\n\t3222:  0x77ED,\n\t3223:  0x7AEF,\n\t3224:  0x7BAA,\n\t3225:  0x7DBB,\n\t3226:  0x803D,\n\t3227:  0x80C6,\n\t3228:  0x86CB,\n\t3229:  0x8A95,\n\t3230:  0x935B,\n\t3231:  0x56E3,\n\t3232:  0x58C7,\n\t3233:  0x5F3E,\n\t3234:  0x65AD,\n\t3235:  0x6696,\n\t3236:  0x6A80,\n\t3237:  0x6BB5,\n\t3238:  0x7537,\n\t3239:  0x8AC7,\n\t3240:  0x5024,\n\t3241:  0x77E5,\n\t3242:  0x5730,\n\t3243:  0x5F1B,\n\t3244:  0x6065,\n\t3245:  0x667A,\n\t3246:  0x6C60,\n\t3247:  0x75F4,\n\t3248:  0x7A1A,\n\t3249:  0x7F6E,\n\t3250:  0x81F4,\n\t3251:  0x8718,\n\t3252:  0x9045,\n\t3253:  0x99B3,\n\t3254:  0x7BC9,\n\t3255:  0x755C,\n\t3256:  0x7AF9,\n\t3257:  0x7B51,\n\t3258:  0x84C4,\n\t3259:  0x9010,\n\t3260:  0x79E9,\n\t3261:  0x7A92,\n\t3262:  0x8336,\n\t3263:  0x5AE1,\n\t3264:  0x7740,\n\t3265:  0x4E2D,\n\t3266:  0x4EF2,\n\t3267:  0x5B99,\n\t3268:  0x5FE0,\n\t3269:  0x62BD,\n\t3270:  0x663C,\n\t3271:  0x67F1,\n\t3272:  0x6CE8,\n\t3273:  0x866B,\n\t3274:  0x8877,\n\t3275:  0x8A3B,\n\t3276:  0x914E,\n\t3277:  0x92F3,\n\t3278:  0x99D0,\n\t3279:  0x6A17,\n\t3280:  0x7026,\n\t3281:  0x732A,\n\t3282:  0x82E7,\n\t3283:  0x8457,\n\t3284:  0x8CAF,\n\t3285:  0x4E01,\n\t3286:  0x5146,\n\t3287:  0x51CB,\n\t3288:  0x558B,\n\t3289:  0x5BF5,\n\t3290:  0x5E16,\n\t3291:  0x5E33,\n\t3292:  0x5E81,\n\t3293:  0x5F14,\n\t3294:  0x5F35,\n\t3295:  0x5F6B,\n\t3296:  0x5FB4,\n\t3297:  0x61F2,\n\t3298:  0x6311,\n\t3299:  0x66A2,\n\t3300:  0x671D,\n\t3301:  0x6F6E,\n\t3302:  0x7252,\n\t3303:  0x753A,\n\t3304:  0x773A,\n\t3305:  0x8074,\n\t3306:  0x8139,\n\t3307:  0x8178,\n\t3308:  0x8776,\n\t3309:  0x8ABF,\n\t3310:  0x8ADC,\n\t3311:  0x8D85,\n\t3312:  0x8DF3,\n\t3313:  0x929A,\n\t3314:  0x9577,\n\t3315:  0x9802,\n\t3316:  0x9CE5,\n\t3317:  0x52C5,\n\t3318:  0x6357,\n\t3319:  0x76F4,\n\t3320:  0x6715,\n\t3321:  0x6C88,\n\t3322:  0x73CD,\n\t3323:  0x8CC3,\n\t3324:  0x93AE,\n\t3325:  0x9673,\n\t3326:  0x6D25,\n\t3327:  0x589C,\n\t3328:  0x690E,\n\t3329:  0x69CC,\n\t3330:  0x8FFD,\n\t3331:  0x939A,\n\t3332:  0x75DB,\n\t3333:  0x901A,\n\t3334:  0x585A,\n\t3335:  0x6802,\n\t3336:  0x63B4,\n\t3337:  0x69FB,\n\t3338:  0x4F43,\n\t3339:  0x6F2C,\n\t3340:  0x67D8,\n\t3341:  0x8FBB,\n\t3342:  0x8526,\n\t3343:  0x7DB4,\n\t3344:  0x9354,\n\t3345:  0x693F,\n\t3346:  0x6F70,\n\t3347:  0x576A,\n\t3348:  0x58F7,\n\t3349:  0x5B2C,\n\t3350:  0x7D2C,\n\t3351:  0x722A,\n\t3352:  0x540A,\n\t3353:  0x91E3,\n\t3354:  0x9DB4,\n\t3355:  0x4EAD,\n\t3356:  0x4F4E,\n\t3357:  0x505C,\n\t3358:  0x5075,\n\t3359:  0x5243,\n\t3360:  0x8C9E,\n\t3361:  0x5448,\n\t3362:  0x5824,\n\t3363:  0x5B9A,\n\t3364:  0x5E1D,\n\t3365:  0x5E95,\n\t3366:  0x5EAD,\n\t3367:  0x5EF7,\n\t3368:  0x5F1F,\n\t3369:  0x608C,\n\t3370:  0x62B5,\n\t3371:  0x633A,\n\t3372:  0x63D0,\n\t3373:  0x68AF,\n\t3374:  0x6C40,\n\t3375:  0x7887,\n\t3376:  0x798E,\n\t3377:  0x7A0B,\n\t3378:  0x7DE0,\n\t3379:  0x8247,\n\t3380:  0x8A02,\n\t3381:  0x8AE6,\n\t3382:  0x8E44,\n\t3383:  0x9013,\n\t3384:  0x90B8,\n\t3385:  0x912D,\n\t3386:  0x91D8,\n\t3387:  0x9F0E,\n\t3388:  0x6CE5,\n\t3389:  0x6458,\n\t3390:  0x64E2,\n\t3391:  0x6575,\n\t3392:  0x6EF4,\n\t3393:  0x7684,\n\t3394:  0x7B1B,\n\t3395:  0x9069,\n\t3396:  0x93D1,\n\t3397:  0x6EBA,\n\t3398:  0x54F2,\n\t3399:  0x5FB9,\n\t3400:  0x64A4,\n\t3401:  0x8F4D,\n\t3402:  0x8FED,\n\t3403:  0x9244,\n\t3404:  0x5178,\n\t3405:  0x586B,\n\t3406:  0x5929,\n\t3407:  0x5C55,\n\t3408:  0x5E97,\n\t3409:  0x6DFB,\n\t3410:  0x7E8F,\n\t3411:  0x751C,\n\t3412:  0x8CBC,\n\t3413:  0x8EE2,\n\t3414:  0x985B,\n\t3415:  0x70B9,\n\t3416:  0x4F1D,\n\t3417:  0x6BBF,\n\t3418:  0x6FB1,\n\t3419:  0x7530,\n\t3420:  0x96FB,\n\t3421:  0x514E,\n\t3422:  0x5410,\n\t3423:  0x5835,\n\t3424:  0x5857,\n\t3425:  0x59AC,\n\t3426:  0x5C60,\n\t3427:  0x5F92,\n\t3428:  0x6597,\n\t3429:  0x675C,\n\t3430:  0x6E21,\n\t3431:  0x767B,\n\t3432:  0x83DF,\n\t3433:  0x8CED,\n\t3434:  0x9014,\n\t3435:  0x90FD,\n\t3436:  0x934D,\n\t3437:  0x7825,\n\t3438:  0x783A,\n\t3439:  0x52AA,\n\t3440:  0x5EA6,\n\t3441:  0x571F,\n\t3442:  0x5974,\n\t3443:  0x6012,\n\t3444:  0x5012,\n\t3445:  0x515A,\n\t3446:  0x51AC,\n\t3447:  0x51CD,\n\t3448:  0x5200,\n\t3449:  0x5510,\n\t3450:  0x5854,\n\t3451:  0x5858,\n\t3452:  0x5957,\n\t3453:  0x5B95,\n\t3454:  0x5CF6,\n\t3455:  0x5D8B,\n\t3456:  0x60BC,\n\t3457:  0x6295,\n\t3458:  0x642D,\n\t3459:  0x6771,\n\t3460:  0x6843,\n\t3461:  0x68BC,\n\t3462:  0x68DF,\n\t3463:  0x76D7,\n\t3464:  0x6DD8,\n\t3465:  0x6E6F,\n\t3466:  0x6D9B,\n\t3467:  0x706F,\n\t3468:  0x71C8,\n\t3469:  0x5F53,\n\t3470:  0x75D8,\n\t3471:  0x7977,\n\t3472:  0x7B49,\n\t3473:  0x7B54,\n\t3474:  0x7B52,\n\t3475:  0x7CD6,\n\t3476:  0x7D71,\n\t3477:  0x5230,\n\t3478:  0x8463,\n\t3479:  0x8569,\n\t3480:  0x85E4,\n\t3481:  0x8A0E,\n\t3482:  0x8B04,\n\t3483:  0x8C46,\n\t3484:  0x8E0F,\n\t3485:  0x9003,\n\t3486:  0x900F,\n\t3487:  0x9419,\n\t3488:  0x9676,\n\t3489:  0x982D,\n\t3490:  0x9A30,\n\t3491:  0x95D8,\n\t3492:  0x50CD,\n\t3493:  0x52D5,\n\t3494:  0x540C,\n\t3495:  0x5802,\n\t3496:  0x5C0E,\n\t3497:  0x61A7,\n\t3498:  0x649E,\n\t3499:  0x6D1E,\n\t3500:  0x77B3,\n\t3501:  0x7AE5,\n\t3502:  0x80F4,\n\t3503:  0x8404,\n\t3504:  0x9053,\n\t3505:  0x9285,\n\t3506:  0x5CE0,\n\t3507:  0x9D07,\n\t3508:  0x533F,\n\t3509:  0x5F97,\n\t3510:  0x5FB3,\n\t3511:  0x6D9C,\n\t3512:  0x7279,\n\t3513:  0x7763,\n\t3514:  0x79BF,\n\t3515:  0x7BE4,\n\t3516:  0x6BD2,\n\t3517:  0x72EC,\n\t3518:  0x8AAD,\n\t3519:  0x6803,\n\t3520:  0x6A61,\n\t3521:  0x51F8,\n\t3522:  0x7A81,\n\t3523:  0x6934,\n\t3524:  0x5C4A,\n\t3525:  0x9CF6,\n\t3526:  0x82EB,\n\t3527:  0x5BC5,\n\t3528:  0x9149,\n\t3529:  0x701E,\n\t3530:  0x5678,\n\t3531:  0x5C6F,\n\t3532:  0x60C7,\n\t3533:  0x6566,\n\t3534:  0x6C8C,\n\t3535:  0x8C5A,\n\t3536:  0x9041,\n\t3537:  0x9813,\n\t3538:  0x5451,\n\t3539:  0x66C7,\n\t3540:  0x920D,\n\t3541:  0x5948,\n\t3542:  0x90A3,\n\t3543:  0x5185,\n\t3544:  0x4E4D,\n\t3545:  0x51EA,\n\t3546:  0x8599,\n\t3547:  0x8B0E,\n\t3548:  0x7058,\n\t3549:  0x637A,\n\t3550:  0x934B,\n\t3551:  0x6962,\n\t3552:  0x99B4,\n\t3553:  0x7E04,\n\t3554:  0x7577,\n\t3555:  0x5357,\n\t3556:  0x6960,\n\t3557:  0x8EDF,\n\t3558:  0x96E3,\n\t3559:  0x6C5D,\n\t3560:  0x4E8C,\n\t3561:  0x5C3C,\n\t3562:  0x5F10,\n\t3563:  0x8FE9,\n\t3564:  0x5302,\n\t3565:  0x8CD1,\n\t3566:  0x8089,\n\t3567:  0x8679,\n\t3568:  0x5EFF,\n\t3569:  0x65E5,\n\t3570:  0x4E73,\n\t3571:  0x5165,\n\t3572:  0x5982,\n\t3573:  0x5C3F,\n\t3574:  0x97EE,\n\t3575:  0x4EFB,\n\t3576:  0x598A,\n\t3577:  0x5FCD,\n\t3578:  0x8A8D,\n\t3579:  0x6FE1,\n\t3580:  0x79B0,\n\t3581:  0x7962,\n\t3582:  0x5BE7,\n\t3583:  0x8471,\n\t3584:  0x732B,\n\t3585:  0x71B1,\n\t3586:  0x5E74,\n\t3587:  0x5FF5,\n\t3588:  0x637B,\n\t3589:  0x649A,\n\t3590:  0x71C3,\n\t3591:  0x7C98,\n\t3592:  0x4E43,\n\t3593:  0x5EFC,\n\t3594:  0x4E4B,\n\t3595:  0x57DC,\n\t3596:  0x56A2,\n\t3597:  0x60A9,\n\t3598:  0x6FC3,\n\t3599:  0x7D0D,\n\t3600:  0x80FD,\n\t3601:  0x8133,\n\t3602:  0x81BF,\n\t3603:  0x8FB2,\n\t3604:  0x8997,\n\t3605:  0x86A4,\n\t3606:  0x5DF4,\n\t3607:  0x628A,\n\t3608:  0x64AD,\n\t3609:  0x8987,\n\t3610:  0x6777,\n\t3611:  0x6CE2,\n\t3612:  0x6D3E,\n\t3613:  0x7436,\n\t3614:  0x7834,\n\t3615:  0x5A46,\n\t3616:  0x7F75,\n\t3617:  0x82AD,\n\t3618:  0x99AC,\n\t3619:  0x4FF3,\n\t3620:  0x5EC3,\n\t3621:  0x62DD,\n\t3622:  0x6392,\n\t3623:  0x6557,\n\t3624:  0x676F,\n\t3625:  0x76C3,\n\t3626:  0x724C,\n\t3627:  0x80CC,\n\t3628:  0x80BA,\n\t3629:  0x8F29,\n\t3630:  0x914D,\n\t3631:  0x500D,\n\t3632:  0x57F9,\n\t3633:  0x5A92,\n\t3634:  0x6885,\n\t3635:  0x6973,\n\t3636:  0x7164,\n\t3637:  0x72FD,\n\t3638:  0x8CB7,\n\t3639:  0x58F2,\n\t3640:  0x8CE0,\n\t3641:  0x966A,\n\t3642:  0x9019,\n\t3643:  0x877F,\n\t3644:  0x79E4,\n\t3645:  0x77E7,\n\t3646:  0x8429,\n\t3647:  0x4F2F,\n\t3648:  0x5265,\n\t3649:  0x535A,\n\t3650:  0x62CD,\n\t3651:  0x67CF,\n\t3652:  0x6CCA,\n\t3653:  0x767D,\n\t3654:  0x7B94,\n\t3655:  0x7C95,\n\t3656:  0x8236,\n\t3657:  0x8584,\n\t3658:  0x8FEB,\n\t3659:  0x66DD,\n\t3660:  0x6F20,\n\t3661:  0x7206,\n\t3662:  0x7E1B,\n\t3663:  0x83AB,\n\t3664:  0x99C1,\n\t3665:  0x9EA6,\n\t3666:  0x51FD,\n\t3667:  0x7BB1,\n\t3668:  0x7872,\n\t3669:  0x7BB8,\n\t3670:  0x8087,\n\t3671:  0x7B48,\n\t3672:  0x6AE8,\n\t3673:  0x5E61,\n\t3674:  0x808C,\n\t3675:  0x7551,\n\t3676:  0x7560,\n\t3677:  0x516B,\n\t3678:  0x9262,\n\t3679:  0x6E8C,\n\t3680:  0x767A,\n\t3681:  0x9197,\n\t3682:  0x9AEA,\n\t3683:  0x4F10,\n\t3684:  0x7F70,\n\t3685:  0x629C,\n\t3686:  0x7B4F,\n\t3687:  0x95A5,\n\t3688:  0x9CE9,\n\t3689:  0x567A,\n\t3690:  0x5859,\n\t3691:  0x86E4,\n\t3692:  0x96BC,\n\t3693:  0x4F34,\n\t3694:  0x5224,\n\t3695:  0x534A,\n\t3696:  0x53CD,\n\t3697:  0x53DB,\n\t3698:  0x5E06,\n\t3699:  0x642C,\n\t3700:  0x6591,\n\t3701:  0x677F,\n\t3702:  0x6C3E,\n\t3703:  0x6C4E,\n\t3704:  0x7248,\n\t3705:  0x72AF,\n\t3706:  0x73ED,\n\t3707:  0x7554,\n\t3708:  0x7E41,\n\t3709:  0x822C,\n\t3710:  0x85E9,\n\t3711:  0x8CA9,\n\t3712:  0x7BC4,\n\t3713:  0x91C6,\n\t3714:  0x7169,\n\t3715:  0x9812,\n\t3716:  0x98EF,\n\t3717:  0x633D,\n\t3718:  0x6669,\n\t3719:  0x756A,\n\t3720:  0x76E4,\n\t3721:  0x78D0,\n\t3722:  0x8543,\n\t3723:  0x86EE,\n\t3724:  0x532A,\n\t3725:  0x5351,\n\t3726:  0x5426,\n\t3727:  0x5983,\n\t3728:  0x5E87,\n\t3729:  0x5F7C,\n\t3730:  0x60B2,\n\t3731:  0x6249,\n\t3732:  0x6279,\n\t3733:  0x62AB,\n\t3734:  0x6590,\n\t3735:  0x6BD4,\n\t3736:  0x6CCC,\n\t3737:  0x75B2,\n\t3738:  0x76AE,\n\t3739:  0x7891,\n\t3740:  0x79D8,\n\t3741:  0x7DCB,\n\t3742:  0x7F77,\n\t3743:  0x80A5,\n\t3744:  0x88AB,\n\t3745:  0x8AB9,\n\t3746:  0x8CBB,\n\t3747:  0x907F,\n\t3748:  0x975E,\n\t3749:  0x98DB,\n\t3750:  0x6A0B,\n\t3751:  0x7C38,\n\t3752:  0x5099,\n\t3753:  0x5C3E,\n\t3754:  0x5FAE,\n\t3755:  0x6787,\n\t3756:  0x6BD8,\n\t3757:  0x7435,\n\t3758:  0x7709,\n\t3759:  0x7F8E,\n\t3760:  0x9F3B,\n\t3761:  0x67CA,\n\t3762:  0x7A17,\n\t3763:  0x5339,\n\t3764:  0x758B,\n\t3765:  0x9AED,\n\t3766:  0x5F66,\n\t3767:  0x819D,\n\t3768:  0x83F1,\n\t3769:  0x8098,\n\t3770:  0x5F3C,\n\t3771:  0x5FC5,\n\t3772:  0x7562,\n\t3773:  0x7B46,\n\t3774:  0x903C,\n\t3775:  0x6867,\n\t3776:  0x59EB,\n\t3777:  0x5A9B,\n\t3778:  0x7D10,\n\t3779:  0x767E,\n\t3780:  0x8B2C,\n\t3781:  0x4FF5,\n\t3782:  0x5F6A,\n\t3783:  0x6A19,\n\t3784:  0x6C37,\n\t3785:  0x6F02,\n\t3786:  0x74E2,\n\t3787:  0x7968,\n\t3788:  0x8868,\n\t3789:  0x8A55,\n\t3790:  0x8C79,\n\t3791:  0x5EDF,\n\t3792:  0x63CF,\n\t3793:  0x75C5,\n\t3794:  0x79D2,\n\t3795:  0x82D7,\n\t3796:  0x9328,\n\t3797:  0x92F2,\n\t3798:  0x849C,\n\t3799:  0x86ED,\n\t3800:  0x9C2D,\n\t3801:  0x54C1,\n\t3802:  0x5F6C,\n\t3803:  0x658C,\n\t3804:  0x6D5C,\n\t3805:  0x7015,\n\t3806:  0x8CA7,\n\t3807:  0x8CD3,\n\t3808:  0x983B,\n\t3809:  0x654F,\n\t3810:  0x74F6,\n\t3811:  0x4E0D,\n\t3812:  0x4ED8,\n\t3813:  0x57E0,\n\t3814:  0x592B,\n\t3815:  0x5A66,\n\t3816:  0x5BCC,\n\t3817:  0x51A8,\n\t3818:  0x5E03,\n\t3819:  0x5E9C,\n\t3820:  0x6016,\n\t3821:  0x6276,\n\t3822:  0x6577,\n\t3823:  0x65A7,\n\t3824:  0x666E,\n\t3825:  0x6D6E,\n\t3826:  0x7236,\n\t3827:  0x7B26,\n\t3828:  0x8150,\n\t3829:  0x819A,\n\t3830:  0x8299,\n\t3831:  0x8B5C,\n\t3832:  0x8CA0,\n\t3833:  0x8CE6,\n\t3834:  0x8D74,\n\t3835:  0x961C,\n\t3836:  0x9644,\n\t3837:  0x4FAE,\n\t3838:  0x64AB,\n\t3839:  0x6B66,\n\t3840:  0x821E,\n\t3841:  0x8461,\n\t3842:  0x856A,\n\t3843:  0x90E8,\n\t3844:  0x5C01,\n\t3845:  0x6953,\n\t3846:  0x98A8,\n\t3847:  0x847A,\n\t3848:  0x8557,\n\t3849:  0x4F0F,\n\t3850:  0x526F,\n\t3851:  0x5FA9,\n\t3852:  0x5E45,\n\t3853:  0x670D,\n\t3854:  0x798F,\n\t3855:  0x8179,\n\t3856:  0x8907,\n\t3857:  0x8986,\n\t3858:  0x6DF5,\n\t3859:  0x5F17,\n\t3860:  0x6255,\n\t3861:  0x6CB8,\n\t3862:  0x4ECF,\n\t3863:  0x7269,\n\t3864:  0x9B92,\n\t3865:  0x5206,\n\t3866:  0x543B,\n\t3867:  0x5674,\n\t3868:  0x58B3,\n\t3869:  0x61A4,\n\t3870:  0x626E,\n\t3871:  0x711A,\n\t3872:  0x596E,\n\t3873:  0x7C89,\n\t3874:  0x7CDE,\n\t3875:  0x7D1B,\n\t3876:  0x96F0,\n\t3877:  0x6587,\n\t3878:  0x805E,\n\t3879:  0x4E19,\n\t3880:  0x4F75,\n\t3881:  0x5175,\n\t3882:  0x5840,\n\t3883:  0x5E63,\n\t3884:  0x5E73,\n\t3885:  0x5F0A,\n\t3886:  0x67C4,\n\t3887:  0x4E26,\n\t3888:  0x853D,\n\t3889:  0x9589,\n\t3890:  0x965B,\n\t3891:  0x7C73,\n\t3892:  0x9801,\n\t3893:  0x50FB,\n\t3894:  0x58C1,\n\t3895:  0x7656,\n\t3896:  0x78A7,\n\t3897:  0x5225,\n\t3898:  0x77A5,\n\t3899:  0x8511,\n\t3900:  0x7B86,\n\t3901:  0x504F,\n\t3902:  0x5909,\n\t3903:  0x7247,\n\t3904:  0x7BC7,\n\t3905:  0x7DE8,\n\t3906:  0x8FBA,\n\t3907:  0x8FD4,\n\t3908:  0x904D,\n\t3909:  0x4FBF,\n\t3910:  0x52C9,\n\t3911:  0x5A29,\n\t3912:  0x5F01,\n\t3913:  0x97AD,\n\t3914:  0x4FDD,\n\t3915:  0x8217,\n\t3916:  0x92EA,\n\t3917:  0x5703,\n\t3918:  0x6355,\n\t3919:  0x6B69,\n\t3920:  0x752B,\n\t3921:  0x88DC,\n\t3922:  0x8F14,\n\t3923:  0x7A42,\n\t3924:  0x52DF,\n\t3925:  0x5893,\n\t3926:  0x6155,\n\t3927:  0x620A,\n\t3928:  0x66AE,\n\t3929:  0x6BCD,\n\t3930:  0x7C3F,\n\t3931:  0x83E9,\n\t3932:  0x5023,\n\t3933:  0x4FF8,\n\t3934:  0x5305,\n\t3935:  0x5446,\n\t3936:  0x5831,\n\t3937:  0x5949,\n\t3938:  0x5B9D,\n\t3939:  0x5CF0,\n\t3940:  0x5CEF,\n\t3941:  0x5D29,\n\t3942:  0x5E96,\n\t3943:  0x62B1,\n\t3944:  0x6367,\n\t3945:  0x653E,\n\t3946:  0x65B9,\n\t3947:  0x670B,\n\t3948:  0x6CD5,\n\t3949:  0x6CE1,\n\t3950:  0x70F9,\n\t3951:  0x7832,\n\t3952:  0x7E2B,\n\t3953:  0x80DE,\n\t3954:  0x82B3,\n\t3955:  0x840C,\n\t3956:  0x84EC,\n\t3957:  0x8702,\n\t3958:  0x8912,\n\t3959:  0x8A2A,\n\t3960:  0x8C4A,\n\t3961:  0x90A6,\n\t3962:  0x92D2,\n\t3963:  0x98FD,\n\t3964:  0x9CF3,\n\t3965:  0x9D6C,\n\t3966:  0x4E4F,\n\t3967:  0x4EA1,\n\t3968:  0x508D,\n\t3969:  0x5256,\n\t3970:  0x574A,\n\t3971:  0x59A8,\n\t3972:  0x5E3D,\n\t3973:  0x5FD8,\n\t3974:  0x5FD9,\n\t3975:  0x623F,\n\t3976:  0x66B4,\n\t3977:  0x671B,\n\t3978:  0x67D0,\n\t3979:  0x68D2,\n\t3980:  0x5192,\n\t3981:  0x7D21,\n\t3982:  0x80AA,\n\t3983:  0x81A8,\n\t3984:  0x8B00,\n\t3985:  0x8C8C,\n\t3986:  0x8CBF,\n\t3987:  0x927E,\n\t3988:  0x9632,\n\t3989:  0x5420,\n\t3990:  0x982C,\n\t3991:  0x5317,\n\t3992:  0x50D5,\n\t3993:  0x535C,\n\t3994:  0x58A8,\n\t3995:  0x64B2,\n\t3996:  0x6734,\n\t3997:  0x7267,\n\t3998:  0x7766,\n\t3999:  0x7A46,\n\t4000:  0x91E6,\n\t4001:  0x52C3,\n\t4002:  0x6CA1,\n\t4003:  0x6B86,\n\t4004:  0x5800,\n\t4005:  0x5E4C,\n\t4006:  0x5954,\n\t4007:  0x672C,\n\t4008:  0x7FFB,\n\t4009:  0x51E1,\n\t4010:  0x76C6,\n\t4011:  0x6469,\n\t4012:  0x78E8,\n\t4013:  0x9B54,\n\t4014:  0x9EBB,\n\t4015:  0x57CB,\n\t4016:  0x59B9,\n\t4017:  0x6627,\n\t4018:  0x679A,\n\t4019:  0x6BCE,\n\t4020:  0x54E9,\n\t4021:  0x69D9,\n\t4022:  0x5E55,\n\t4023:  0x819C,\n\t4024:  0x6795,\n\t4025:  0x9BAA,\n\t4026:  0x67FE,\n\t4027:  0x9C52,\n\t4028:  0x685D,\n\t4029:  0x4EA6,\n\t4030:  0x4FE3,\n\t4031:  0x53C8,\n\t4032:  0x62B9,\n\t4033:  0x672B,\n\t4034:  0x6CAB,\n\t4035:  0x8FC4,\n\t4036:  0x4FAD,\n\t4037:  0x7E6D,\n\t4038:  0x9EBF,\n\t4039:  0x4E07,\n\t4040:  0x6162,\n\t4041:  0x6E80,\n\t4042:  0x6F2B,\n\t4043:  0x8513,\n\t4044:  0x5473,\n\t4045:  0x672A,\n\t4046:  0x9B45,\n\t4047:  0x5DF3,\n\t4048:  0x7B95,\n\t4049:  0x5CAC,\n\t4050:  0x5BC6,\n\t4051:  0x871C,\n\t4052:  0x6E4A,\n\t4053:  0x84D1,\n\t4054:  0x7A14,\n\t4055:  0x8108,\n\t4056:  0x5999,\n\t4057:  0x7C8D,\n\t4058:  0x6C11,\n\t4059:  0x7720,\n\t4060:  0x52D9,\n\t4061:  0x5922,\n\t4062:  0x7121,\n\t4063:  0x725F,\n\t4064:  0x77DB,\n\t4065:  0x9727,\n\t4066:  0x9D61,\n\t4067:  0x690B,\n\t4068:  0x5A7F,\n\t4069:  0x5A18,\n\t4070:  0x51A5,\n\t4071:  0x540D,\n\t4072:  0x547D,\n\t4073:  0x660E,\n\t4074:  0x76DF,\n\t4075:  0x8FF7,\n\t4076:  0x9298,\n\t4077:  0x9CF4,\n\t4078:  0x59EA,\n\t4079:  0x725D,\n\t4080:  0x6EC5,\n\t4081:  0x514D,\n\t4082:  0x68C9,\n\t4083:  0x7DBF,\n\t4084:  0x7DEC,\n\t4085:  0x9762,\n\t4086:  0x9EBA,\n\t4087:  0x6478,\n\t4088:  0x6A21,\n\t4089:  0x8302,\n\t4090:  0x5984,\n\t4091:  0x5B5F,\n\t4092:  0x6BDB,\n\t4093:  0x731B,\n\t4094:  0x76F2,\n\t4095:  0x7DB2,\n\t4096:  0x8017,\n\t4097:  0x8499,\n\t4098:  0x5132,\n\t4099:  0x6728,\n\t4100:  0x9ED9,\n\t4101:  0x76EE,\n\t4102:  0x6762,\n\t4103:  0x52FF,\n\t4104:  0x9905,\n\t4105:  0x5C24,\n\t4106:  0x623B,\n\t4107:  0x7C7E,\n\t4108:  0x8CB0,\n\t4109:  0x554F,\n\t4110:  0x60B6,\n\t4111:  0x7D0B,\n\t4112:  0x9580,\n\t4113:  0x5301,\n\t4114:  0x4E5F,\n\t4115:  0x51B6,\n\t4116:  0x591C,\n\t4117:  0x723A,\n\t4118:  0x8036,\n\t4119:  0x91CE,\n\t4120:  0x5F25,\n\t4121:  0x77E2,\n\t4122:  0x5384,\n\t4123:  0x5F79,\n\t4124:  0x7D04,\n\t4125:  0x85AC,\n\t4126:  0x8A33,\n\t4127:  0x8E8D,\n\t4128:  0x9756,\n\t4129:  0x67F3,\n\t4130:  0x85AE,\n\t4131:  0x9453,\n\t4132:  0x6109,\n\t4133:  0x6108,\n\t4134:  0x6CB9,\n\t4135:  0x7652,\n\t4136:  0x8AED,\n\t4137:  0x8F38,\n\t4138:  0x552F,\n\t4139:  0x4F51,\n\t4140:  0x512A,\n\t4141:  0x52C7,\n\t4142:  0x53CB,\n\t4143:  0x5BA5,\n\t4144:  0x5E7D,\n\t4145:  0x60A0,\n\t4146:  0x6182,\n\t4147:  0x63D6,\n\t4148:  0x6709,\n\t4149:  0x67DA,\n\t4150:  0x6E67,\n\t4151:  0x6D8C,\n\t4152:  0x7336,\n\t4153:  0x7337,\n\t4154:  0x7531,\n\t4155:  0x7950,\n\t4156:  0x88D5,\n\t4157:  0x8A98,\n\t4158:  0x904A,\n\t4159:  0x9091,\n\t4160:  0x90F5,\n\t4161:  0x96C4,\n\t4162:  0x878D,\n\t4163:  0x5915,\n\t4164:  0x4E88,\n\t4165:  0x4F59,\n\t4166:  0x4E0E,\n\t4167:  0x8A89,\n\t4168:  0x8F3F,\n\t4169:  0x9810,\n\t4170:  0x50AD,\n\t4171:  0x5E7C,\n\t4172:  0x5996,\n\t4173:  0x5BB9,\n\t4174:  0x5EB8,\n\t4175:  0x63DA,\n\t4176:  0x63FA,\n\t4177:  0x64C1,\n\t4178:  0x66DC,\n\t4179:  0x694A,\n\t4180:  0x69D8,\n\t4181:  0x6D0B,\n\t4182:  0x6EB6,\n\t4183:  0x7194,\n\t4184:  0x7528,\n\t4185:  0x7AAF,\n\t4186:  0x7F8A,\n\t4187:  0x8000,\n\t4188:  0x8449,\n\t4189:  0x84C9,\n\t4190:  0x8981,\n\t4191:  0x8B21,\n\t4192:  0x8E0A,\n\t4193:  0x9065,\n\t4194:  0x967D,\n\t4195:  0x990A,\n\t4196:  0x617E,\n\t4197:  0x6291,\n\t4198:  0x6B32,\n\t4199:  0x6C83,\n\t4200:  0x6D74,\n\t4201:  0x7FCC,\n\t4202:  0x7FFC,\n\t4203:  0x6DC0,\n\t4204:  0x7F85,\n\t4205:  0x87BA,\n\t4206:  0x88F8,\n\t4207:  0x6765,\n\t4208:  0x83B1,\n\t4209:  0x983C,\n\t4210:  0x96F7,\n\t4211:  0x6D1B,\n\t4212:  0x7D61,\n\t4213:  0x843D,\n\t4214:  0x916A,\n\t4215:  0x4E71,\n\t4216:  0x5375,\n\t4217:  0x5D50,\n\t4218:  0x6B04,\n\t4219:  0x6FEB,\n\t4220:  0x85CD,\n\t4221:  0x862D,\n\t4222:  0x89A7,\n\t4223:  0x5229,\n\t4224:  0x540F,\n\t4225:  0x5C65,\n\t4226:  0x674E,\n\t4227:  0x68A8,\n\t4228:  0x7406,\n\t4229:  0x7483,\n\t4230:  0x75E2,\n\t4231:  0x88CF,\n\t4232:  0x88E1,\n\t4233:  0x91CC,\n\t4234:  0x96E2,\n\t4235:  0x9678,\n\t4236:  0x5F8B,\n\t4237:  0x7387,\n\t4238:  0x7ACB,\n\t4239:  0x844E,\n\t4240:  0x63A0,\n\t4241:  0x7565,\n\t4242:  0x5289,\n\t4243:  0x6D41,\n\t4244:  0x6E9C,\n\t4245:  0x7409,\n\t4246:  0x7559,\n\t4247:  0x786B,\n\t4248:  0x7C92,\n\t4249:  0x9686,\n\t4250:  0x7ADC,\n\t4251:  0x9F8D,\n\t4252:  0x4FB6,\n\t4253:  0x616E,\n\t4254:  0x65C5,\n\t4255:  0x865C,\n\t4256:  0x4E86,\n\t4257:  0x4EAE,\n\t4258:  0x50DA,\n\t4259:  0x4E21,\n\t4260:  0x51CC,\n\t4261:  0x5BEE,\n\t4262:  0x6599,\n\t4263:  0x6881,\n\t4264:  0x6DBC,\n\t4265:  0x731F,\n\t4266:  0x7642,\n\t4267:  0x77AD,\n\t4268:  0x7A1C,\n\t4269:  0x7CE7,\n\t4270:  0x826F,\n\t4271:  0x8AD2,\n\t4272:  0x907C,\n\t4273:  0x91CF,\n\t4274:  0x9675,\n\t4275:  0x9818,\n\t4276:  0x529B,\n\t4277:  0x7DD1,\n\t4278:  0x502B,\n\t4279:  0x5398,\n\t4280:  0x6797,\n\t4281:  0x6DCB,\n\t4282:  0x71D0,\n\t4283:  0x7433,\n\t4284:  0x81E8,\n\t4285:  0x8F2A,\n\t4286:  0x96A3,\n\t4287:  0x9C57,\n\t4288:  0x9E9F,\n\t4289:  0x7460,\n\t4290:  0x5841,\n\t4291:  0x6D99,\n\t4292:  0x7D2F,\n\t4293:  0x985E,\n\t4294:  0x4EE4,\n\t4295:  0x4F36,\n\t4296:  0x4F8B,\n\t4297:  0x51B7,\n\t4298:  0x52B1,\n\t4299:  0x5DBA,\n\t4300:  0x601C,\n\t4301:  0x73B2,\n\t4302:  0x793C,\n\t4303:  0x82D3,\n\t4304:  0x9234,\n\t4305:  0x96B7,\n\t4306:  0x96F6,\n\t4307:  0x970A,\n\t4308:  0x9E97,\n\t4309:  0x9F62,\n\t4310:  0x66A6,\n\t4311:  0x6B74,\n\t4312:  0x5217,\n\t4313:  0x52A3,\n\t4314:  0x70C8,\n\t4315:  0x88C2,\n\t4316:  0x5EC9,\n\t4317:  0x604B,\n\t4318:  0x6190,\n\t4319:  0x6F23,\n\t4320:  0x7149,\n\t4321:  0x7C3E,\n\t4322:  0x7DF4,\n\t4323:  0x806F,\n\t4324:  0x84EE,\n\t4325:  0x9023,\n\t4326:  0x932C,\n\t4327:  0x5442,\n\t4328:  0x9B6F,\n\t4329:  0x6AD3,\n\t4330:  0x7089,\n\t4331:  0x8CC2,\n\t4332:  0x8DEF,\n\t4333:  0x9732,\n\t4334:  0x52B4,\n\t4335:  0x5A41,\n\t4336:  0x5ECA,\n\t4337:  0x5F04,\n\t4338:  0x6717,\n\t4339:  0x697C,\n\t4340:  0x6994,\n\t4341:  0x6D6A,\n\t4342:  0x6F0F,\n\t4343:  0x7262,\n\t4344:  0x72FC,\n\t4345:  0x7BED,\n\t4346:  0x8001,\n\t4347:  0x807E,\n\t4348:  0x874B,\n\t4349:  0x90CE,\n\t4350:  0x516D,\n\t4351:  0x9E93,\n\t4352:  0x7984,\n\t4353:  0x808B,\n\t4354:  0x9332,\n\t4355:  0x8AD6,\n\t4356:  0x502D,\n\t4357:  0x548C,\n\t4358:  0x8A71,\n\t4359:  0x6B6A,\n\t4360:  0x8CC4,\n\t4361:  0x8107,\n\t4362:  0x60D1,\n\t4363:  0x67A0,\n\t4364:  0x9DF2,\n\t4365:  0x4E99,\n\t4366:  0x4E98,\n\t4367:  0x9C10,\n\t4368:  0x8A6B,\n\t4369:  0x85C1,\n\t4370:  0x8568,\n\t4371:  0x6900,\n\t4372:  0x6E7E,\n\t4373:  0x7897,\n\t4374:  0x8155,\n\t4418:  0x5F0C,\n\t4419:  0x4E10,\n\t4420:  0x4E15,\n\t4421:  0x4E2A,\n\t4422:  0x4E31,\n\t4423:  0x4E36,\n\t4424:  0x4E3C,\n\t4425:  0x4E3F,\n\t4426:  0x4E42,\n\t4427:  0x4E56,\n\t4428:  0x4E58,\n\t4429:  0x4E82,\n\t4430:  0x4E85,\n\t4431:  0x8C6B,\n\t4432:  0x4E8A,\n\t4433:  0x8212,\n\t4434:  0x5F0D,\n\t4435:  0x4E8E,\n\t4436:  0x4E9E,\n\t4437:  0x4E9F,\n\t4438:  0x4EA0,\n\t4439:  0x4EA2,\n\t4440:  0x4EB0,\n\t4441:  0x4EB3,\n\t4442:  0x4EB6,\n\t4443:  0x4ECE,\n\t4444:  0x4ECD,\n\t4445:  0x4EC4,\n\t4446:  0x4EC6,\n\t4447:  0x4EC2,\n\t4448:  0x4ED7,\n\t4449:  0x4EDE,\n\t4450:  0x4EED,\n\t4451:  0x4EDF,\n\t4452:  0x4EF7,\n\t4453:  0x4F09,\n\t4454:  0x4F5A,\n\t4455:  0x4F30,\n\t4456:  0x4F5B,\n\t4457:  0x4F5D,\n\t4458:  0x4F57,\n\t4459:  0x4F47,\n\t4460:  0x4F76,\n\t4461:  0x4F88,\n\t4462:  0x4F8F,\n\t4463:  0x4F98,\n\t4464:  0x4F7B,\n\t4465:  0x4F69,\n\t4466:  0x4F70,\n\t4467:  0x4F91,\n\t4468:  0x4F6F,\n\t4469:  0x4F86,\n\t4470:  0x4F96,\n\t4471:  0x5118,\n\t4472:  0x4FD4,\n\t4473:  0x4FDF,\n\t4474:  0x4FCE,\n\t4475:  0x4FD8,\n\t4476:  0x4FDB,\n\t4477:  0x4FD1,\n\t4478:  0x4FDA,\n\t4479:  0x4FD0,\n\t4480:  0x4FE4,\n\t4481:  0x4FE5,\n\t4482:  0x501A,\n\t4483:  0x5028,\n\t4484:  0x5014,\n\t4485:  0x502A,\n\t4486:  0x5025,\n\t4487:  0x5005,\n\t4488:  0x4F1C,\n\t4489:  0x4FF6,\n\t4490:  0x5021,\n\t4491:  0x5029,\n\t4492:  0x502C,\n\t4493:  0x4FFE,\n\t4494:  0x4FEF,\n\t4495:  0x5011,\n\t4496:  0x5006,\n\t4497:  0x5043,\n\t4498:  0x5047,\n\t4499:  0x6703,\n\t4500:  0x5055,\n\t4501:  0x5050,\n\t4502:  0x5048,\n\t4503:  0x505A,\n\t4504:  0x5056,\n\t4505:  0x506C,\n\t4506:  0x5078,\n\t4507:  0x5080,\n\t4508:  0x509A,\n\t4509:  0x5085,\n\t4510:  0x50B4,\n\t4511:  0x50B2,\n\t4512:  0x50C9,\n\t4513:  0x50CA,\n\t4514:  0x50B3,\n\t4515:  0x50C2,\n\t4516:  0x50D6,\n\t4517:  0x50DE,\n\t4518:  0x50E5,\n\t4519:  0x50ED,\n\t4520:  0x50E3,\n\t4521:  0x50EE,\n\t4522:  0x50F9,\n\t4523:  0x50F5,\n\t4524:  0x5109,\n\t4525:  0x5101,\n\t4526:  0x5102,\n\t4527:  0x5116,\n\t4528:  0x5115,\n\t4529:  0x5114,\n\t4530:  0x511A,\n\t4531:  0x5121,\n\t4532:  0x513A,\n\t4533:  0x5137,\n\t4534:  0x513C,\n\t4535:  0x513B,\n\t4536:  0x513F,\n\t4537:  0x5140,\n\t4538:  0x5152,\n\t4539:  0x514C,\n\t4540:  0x5154,\n\t4541:  0x5162,\n\t4542:  0x7AF8,\n\t4543:  0x5169,\n\t4544:  0x516A,\n\t4545:  0x516E,\n\t4546:  0x5180,\n\t4547:  0x5182,\n\t4548:  0x56D8,\n\t4549:  0x518C,\n\t4550:  0x5189,\n\t4551:  0x518F,\n\t4552:  0x5191,\n\t4553:  0x5193,\n\t4554:  0x5195,\n\t4555:  0x5196,\n\t4556:  0x51A4,\n\t4557:  0x51A6,\n\t4558:  0x51A2,\n\t4559:  0x51A9,\n\t4560:  0x51AA,\n\t4561:  0x51AB,\n\t4562:  0x51B3,\n\t4563:  0x51B1,\n\t4564:  0x51B2,\n\t4565:  0x51B0,\n\t4566:  0x51B5,\n\t4567:  0x51BD,\n\t4568:  0x51C5,\n\t4569:  0x51C9,\n\t4570:  0x51DB,\n\t4571:  0x51E0,\n\t4572:  0x8655,\n\t4573:  0x51E9,\n\t4574:  0x51ED,\n\t4575:  0x51F0,\n\t4576:  0x51F5,\n\t4577:  0x51FE,\n\t4578:  0x5204,\n\t4579:  0x520B,\n\t4580:  0x5214,\n\t4581:  0x520E,\n\t4582:  0x5227,\n\t4583:  0x522A,\n\t4584:  0x522E,\n\t4585:  0x5233,\n\t4586:  0x5239,\n\t4587:  0x524F,\n\t4588:  0x5244,\n\t4589:  0x524B,\n\t4590:  0x524C,\n\t4591:  0x525E,\n\t4592:  0x5254,\n\t4593:  0x526A,\n\t4594:  0x5274,\n\t4595:  0x5269,\n\t4596:  0x5273,\n\t4597:  0x527F,\n\t4598:  0x527D,\n\t4599:  0x528D,\n\t4600:  0x5294,\n\t4601:  0x5292,\n\t4602:  0x5271,\n\t4603:  0x5288,\n\t4604:  0x5291,\n\t4605:  0x8FA8,\n\t4606:  0x8FA7,\n\t4607:  0x52AC,\n\t4608:  0x52AD,\n\t4609:  0x52BC,\n\t4610:  0x52B5,\n\t4611:  0x52C1,\n\t4612:  0x52CD,\n\t4613:  0x52D7,\n\t4614:  0x52DE,\n\t4615:  0x52E3,\n\t4616:  0x52E6,\n\t4617:  0x98ED,\n\t4618:  0x52E0,\n\t4619:  0x52F3,\n\t4620:  0x52F5,\n\t4621:  0x52F8,\n\t4622:  0x52F9,\n\t4623:  0x5306,\n\t4624:  0x5308,\n\t4625:  0x7538,\n\t4626:  0x530D,\n\t4627:  0x5310,\n\t4628:  0x530F,\n\t4629:  0x5315,\n\t4630:  0x531A,\n\t4631:  0x5323,\n\t4632:  0x532F,\n\t4633:  0x5331,\n\t4634:  0x5333,\n\t4635:  0x5338,\n\t4636:  0x5340,\n\t4637:  0x5346,\n\t4638:  0x5345,\n\t4639:  0x4E17,\n\t4640:  0x5349,\n\t4641:  0x534D,\n\t4642:  0x51D6,\n\t4643:  0x535E,\n\t4644:  0x5369,\n\t4645:  0x536E,\n\t4646:  0x5918,\n\t4647:  0x537B,\n\t4648:  0x5377,\n\t4649:  0x5382,\n\t4650:  0x5396,\n\t4651:  0x53A0,\n\t4652:  0x53A6,\n\t4653:  0x53A5,\n\t4654:  0x53AE,\n\t4655:  0x53B0,\n\t4656:  0x53B6,\n\t4657:  0x53C3,\n\t4658:  0x7C12,\n\t4659:  0x96D9,\n\t4660:  0x53DF,\n\t4661:  0x66FC,\n\t4662:  0x71EE,\n\t4663:  0x53EE,\n\t4664:  0x53E8,\n\t4665:  0x53ED,\n\t4666:  0x53FA,\n\t4667:  0x5401,\n\t4668:  0x543D,\n\t4669:  0x5440,\n\t4670:  0x542C,\n\t4671:  0x542D,\n\t4672:  0x543C,\n\t4673:  0x542E,\n\t4674:  0x5436,\n\t4675:  0x5429,\n\t4676:  0x541D,\n\t4677:  0x544E,\n\t4678:  0x548F,\n\t4679:  0x5475,\n\t4680:  0x548E,\n\t4681:  0x545F,\n\t4682:  0x5471,\n\t4683:  0x5477,\n\t4684:  0x5470,\n\t4685:  0x5492,\n\t4686:  0x547B,\n\t4687:  0x5480,\n\t4688:  0x5476,\n\t4689:  0x5484,\n\t4690:  0x5490,\n\t4691:  0x5486,\n\t4692:  0x54C7,\n\t4693:  0x54A2,\n\t4694:  0x54B8,\n\t4695:  0x54A5,\n\t4696:  0x54AC,\n\t4697:  0x54C4,\n\t4698:  0x54C8,\n\t4699:  0x54A8,\n\t4700:  0x54AB,\n\t4701:  0x54C2,\n\t4702:  0x54A4,\n\t4703:  0x54BE,\n\t4704:  0x54BC,\n\t4705:  0x54D8,\n\t4706:  0x54E5,\n\t4707:  0x54E6,\n\t4708:  0x550F,\n\t4709:  0x5514,\n\t4710:  0x54FD,\n\t4711:  0x54EE,\n\t4712:  0x54ED,\n\t4713:  0x54FA,\n\t4714:  0x54E2,\n\t4715:  0x5539,\n\t4716:  0x5540,\n\t4717:  0x5563,\n\t4718:  0x554C,\n\t4719:  0x552E,\n\t4720:  0x555C,\n\t4721:  0x5545,\n\t4722:  0x5556,\n\t4723:  0x5557,\n\t4724:  0x5538,\n\t4725:  0x5533,\n\t4726:  0x555D,\n\t4727:  0x5599,\n\t4728:  0x5580,\n\t4729:  0x54AF,\n\t4730:  0x558A,\n\t4731:  0x559F,\n\t4732:  0x557B,\n\t4733:  0x557E,\n\t4734:  0x5598,\n\t4735:  0x559E,\n\t4736:  0x55AE,\n\t4737:  0x557C,\n\t4738:  0x5583,\n\t4739:  0x55A9,\n\t4740:  0x5587,\n\t4741:  0x55A8,\n\t4742:  0x55DA,\n\t4743:  0x55C5,\n\t4744:  0x55DF,\n\t4745:  0x55C4,\n\t4746:  0x55DC,\n\t4747:  0x55E4,\n\t4748:  0x55D4,\n\t4749:  0x5614,\n\t4750:  0x55F7,\n\t4751:  0x5616,\n\t4752:  0x55FE,\n\t4753:  0x55FD,\n\t4754:  0x561B,\n\t4755:  0x55F9,\n\t4756:  0x564E,\n\t4757:  0x5650,\n\t4758:  0x71DF,\n\t4759:  0x5634,\n\t4760:  0x5636,\n\t4761:  0x5632,\n\t4762:  0x5638,\n\t4763:  0x566B,\n\t4764:  0x5664,\n\t4765:  0x562F,\n\t4766:  0x566C,\n\t4767:  0x566A,\n\t4768:  0x5686,\n\t4769:  0x5680,\n\t4770:  0x568A,\n\t4771:  0x56A0,\n\t4772:  0x5694,\n\t4773:  0x568F,\n\t4774:  0x56A5,\n\t4775:  0x56AE,\n\t4776:  0x56B6,\n\t4777:  0x56B4,\n\t4778:  0x56C2,\n\t4779:  0x56BC,\n\t4780:  0x56C1,\n\t4781:  0x56C3,\n\t4782:  0x56C0,\n\t4783:  0x56C8,\n\t4784:  0x56CE,\n\t4785:  0x56D1,\n\t4786:  0x56D3,\n\t4787:  0x56D7,\n\t4788:  0x56EE,\n\t4789:  0x56F9,\n\t4790:  0x5700,\n\t4791:  0x56FF,\n\t4792:  0x5704,\n\t4793:  0x5709,\n\t4794:  0x5708,\n\t4795:  0x570B,\n\t4796:  0x570D,\n\t4797:  0x5713,\n\t4798:  0x5718,\n\t4799:  0x5716,\n\t4800:  0x55C7,\n\t4801:  0x571C,\n\t4802:  0x5726,\n\t4803:  0x5737,\n\t4804:  0x5738,\n\t4805:  0x574E,\n\t4806:  0x573B,\n\t4807:  0x5740,\n\t4808:  0x574F,\n\t4809:  0x5769,\n\t4810:  0x57C0,\n\t4811:  0x5788,\n\t4812:  0x5761,\n\t4813:  0x577F,\n\t4814:  0x5789,\n\t4815:  0x5793,\n\t4816:  0x57A0,\n\t4817:  0x57B3,\n\t4818:  0x57A4,\n\t4819:  0x57AA,\n\t4820:  0x57B0,\n\t4821:  0x57C3,\n\t4822:  0x57C6,\n\t4823:  0x57D4,\n\t4824:  0x57D2,\n\t4825:  0x57D3,\n\t4826:  0x580A,\n\t4827:  0x57D6,\n\t4828:  0x57E3,\n\t4829:  0x580B,\n\t4830:  0x5819,\n\t4831:  0x581D,\n\t4832:  0x5872,\n\t4833:  0x5821,\n\t4834:  0x5862,\n\t4835:  0x584B,\n\t4836:  0x5870,\n\t4837:  0x6BC0,\n\t4838:  0x5852,\n\t4839:  0x583D,\n\t4840:  0x5879,\n\t4841:  0x5885,\n\t4842:  0x58B9,\n\t4843:  0x589F,\n\t4844:  0x58AB,\n\t4845:  0x58BA,\n\t4846:  0x58DE,\n\t4847:  0x58BB,\n\t4848:  0x58B8,\n\t4849:  0x58AE,\n\t4850:  0x58C5,\n\t4851:  0x58D3,\n\t4852:  0x58D1,\n\t4853:  0x58D7,\n\t4854:  0x58D9,\n\t4855:  0x58D8,\n\t4856:  0x58E5,\n\t4857:  0x58DC,\n\t4858:  0x58E4,\n\t4859:  0x58DF,\n\t4860:  0x58EF,\n\t4861:  0x58FA,\n\t4862:  0x58F9,\n\t4863:  0x58FB,\n\t4864:  0x58FC,\n\t4865:  0x58FD,\n\t4866:  0x5902,\n\t4867:  0x590A,\n\t4868:  0x5910,\n\t4869:  0x591B,\n\t4870:  0x68A6,\n\t4871:  0x5925,\n\t4872:  0x592C,\n\t4873:  0x592D,\n\t4874:  0x5932,\n\t4875:  0x5938,\n\t4876:  0x593E,\n\t4877:  0x7AD2,\n\t4878:  0x5955,\n\t4879:  0x5950,\n\t4880:  0x594E,\n\t4881:  0x595A,\n\t4882:  0x5958,\n\t4883:  0x5962,\n\t4884:  0x5960,\n\t4885:  0x5967,\n\t4886:  0x596C,\n\t4887:  0x5969,\n\t4888:  0x5978,\n\t4889:  0x5981,\n\t4890:  0x599D,\n\t4891:  0x4F5E,\n\t4892:  0x4FAB,\n\t4893:  0x59A3,\n\t4894:  0x59B2,\n\t4895:  0x59C6,\n\t4896:  0x59E8,\n\t4897:  0x59DC,\n\t4898:  0x598D,\n\t4899:  0x59D9,\n\t4900:  0x59DA,\n\t4901:  0x5A25,\n\t4902:  0x5A1F,\n\t4903:  0x5A11,\n\t4904:  0x5A1C,\n\t4905:  0x5A09,\n\t4906:  0x5A1A,\n\t4907:  0x5A40,\n\t4908:  0x5A6C,\n\t4909:  0x5A49,\n\t4910:  0x5A35,\n\t4911:  0x5A36,\n\t4912:  0x5A62,\n\t4913:  0x5A6A,\n\t4914:  0x5A9A,\n\t4915:  0x5ABC,\n\t4916:  0x5ABE,\n\t4917:  0x5ACB,\n\t4918:  0x5AC2,\n\t4919:  0x5ABD,\n\t4920:  0x5AE3,\n\t4921:  0x5AD7,\n\t4922:  0x5AE6,\n\t4923:  0x5AE9,\n\t4924:  0x5AD6,\n\t4925:  0x5AFA,\n\t4926:  0x5AFB,\n\t4927:  0x5B0C,\n\t4928:  0x5B0B,\n\t4929:  0x5B16,\n\t4930:  0x5B32,\n\t4931:  0x5AD0,\n\t4932:  0x5B2A,\n\t4933:  0x5B36,\n\t4934:  0x5B3E,\n\t4935:  0x5B43,\n\t4936:  0x5B45,\n\t4937:  0x5B40,\n\t4938:  0x5B51,\n\t4939:  0x5B55,\n\t4940:  0x5B5A,\n\t4941:  0x5B5B,\n\t4942:  0x5B65,\n\t4943:  0x5B69,\n\t4944:  0x5B70,\n\t4945:  0x5B73,\n\t4946:  0x5B75,\n\t4947:  0x5B78,\n\t4948:  0x6588,\n\t4949:  0x5B7A,\n\t4950:  0x5B80,\n\t4951:  0x5B83,\n\t4952:  0x5BA6,\n\t4953:  0x5BB8,\n\t4954:  0x5BC3,\n\t4955:  0x5BC7,\n\t4956:  0x5BC9,\n\t4957:  0x5BD4,\n\t4958:  0x5BD0,\n\t4959:  0x5BE4,\n\t4960:  0x5BE6,\n\t4961:  0x5BE2,\n\t4962:  0x5BDE,\n\t4963:  0x5BE5,\n\t4964:  0x5BEB,\n\t4965:  0x5BF0,\n\t4966:  0x5BF6,\n\t4967:  0x5BF3,\n\t4968:  0x5C05,\n\t4969:  0x5C07,\n\t4970:  0x5C08,\n\t4971:  0x5C0D,\n\t4972:  0x5C13,\n\t4973:  0x5C20,\n\t4974:  0x5C22,\n\t4975:  0x5C28,\n\t4976:  0x5C38,\n\t4977:  0x5C39,\n\t4978:  0x5C41,\n\t4979:  0x5C46,\n\t4980:  0x5C4E,\n\t4981:  0x5C53,\n\t4982:  0x5C50,\n\t4983:  0x5C4F,\n\t4984:  0x5B71,\n\t4985:  0x5C6C,\n\t4986:  0x5C6E,\n\t4987:  0x4E62,\n\t4988:  0x5C76,\n\t4989:  0x5C79,\n\t4990:  0x5C8C,\n\t4991:  0x5C91,\n\t4992:  0x5C94,\n\t4993:  0x599B,\n\t4994:  0x5CAB,\n\t4995:  0x5CBB,\n\t4996:  0x5CB6,\n\t4997:  0x5CBC,\n\t4998:  0x5CB7,\n\t4999:  0x5CC5,\n\t5000:  0x5CBE,\n\t5001:  0x5CC7,\n\t5002:  0x5CD9,\n\t5003:  0x5CE9,\n\t5004:  0x5CFD,\n\t5005:  0x5CFA,\n\t5006:  0x5CED,\n\t5007:  0x5D8C,\n\t5008:  0x5CEA,\n\t5009:  0x5D0B,\n\t5010:  0x5D15,\n\t5011:  0x5D17,\n\t5012:  0x5D5C,\n\t5013:  0x5D1F,\n\t5014:  0x5D1B,\n\t5015:  0x5D11,\n\t5016:  0x5D14,\n\t5017:  0x5D22,\n\t5018:  0x5D1A,\n\t5019:  0x5D19,\n\t5020:  0x5D18,\n\t5021:  0x5D4C,\n\t5022:  0x5D52,\n\t5023:  0x5D4E,\n\t5024:  0x5D4B,\n\t5025:  0x5D6C,\n\t5026:  0x5D73,\n\t5027:  0x5D76,\n\t5028:  0x5D87,\n\t5029:  0x5D84,\n\t5030:  0x5D82,\n\t5031:  0x5DA2,\n\t5032:  0x5D9D,\n\t5033:  0x5DAC,\n\t5034:  0x5DAE,\n\t5035:  0x5DBD,\n\t5036:  0x5D90,\n\t5037:  0x5DB7,\n\t5038:  0x5DBC,\n\t5039:  0x5DC9,\n\t5040:  0x5DCD,\n\t5041:  0x5DD3,\n\t5042:  0x5DD2,\n\t5043:  0x5DD6,\n\t5044:  0x5DDB,\n\t5045:  0x5DEB,\n\t5046:  0x5DF2,\n\t5047:  0x5DF5,\n\t5048:  0x5E0B,\n\t5049:  0x5E1A,\n\t5050:  0x5E19,\n\t5051:  0x5E11,\n\t5052:  0x5E1B,\n\t5053:  0x5E36,\n\t5054:  0x5E37,\n\t5055:  0x5E44,\n\t5056:  0x5E43,\n\t5057:  0x5E40,\n\t5058:  0x5E4E,\n\t5059:  0x5E57,\n\t5060:  0x5E54,\n\t5061:  0x5E5F,\n\t5062:  0x5E62,\n\t5063:  0x5E64,\n\t5064:  0x5E47,\n\t5065:  0x5E75,\n\t5066:  0x5E76,\n\t5067:  0x5E7A,\n\t5068:  0x9EBC,\n\t5069:  0x5E7F,\n\t5070:  0x5EA0,\n\t5071:  0x5EC1,\n\t5072:  0x5EC2,\n\t5073:  0x5EC8,\n\t5074:  0x5ED0,\n\t5075:  0x5ECF,\n\t5076:  0x5ED6,\n\t5077:  0x5EE3,\n\t5078:  0x5EDD,\n\t5079:  0x5EDA,\n\t5080:  0x5EDB,\n\t5081:  0x5EE2,\n\t5082:  0x5EE1,\n\t5083:  0x5EE8,\n\t5084:  0x5EE9,\n\t5085:  0x5EEC,\n\t5086:  0x5EF1,\n\t5087:  0x5EF3,\n\t5088:  0x5EF0,\n\t5089:  0x5EF4,\n\t5090:  0x5EF8,\n\t5091:  0x5EFE,\n\t5092:  0x5F03,\n\t5093:  0x5F09,\n\t5094:  0x5F5D,\n\t5095:  0x5F5C,\n\t5096:  0x5F0B,\n\t5097:  0x5F11,\n\t5098:  0x5F16,\n\t5099:  0x5F29,\n\t5100:  0x5F2D,\n\t5101:  0x5F38,\n\t5102:  0x5F41,\n\t5103:  0x5F48,\n\t5104:  0x5F4C,\n\t5105:  0x5F4E,\n\t5106:  0x5F2F,\n\t5107:  0x5F51,\n\t5108:  0x5F56,\n\t5109:  0x5F57,\n\t5110:  0x5F59,\n\t5111:  0x5F61,\n\t5112:  0x5F6D,\n\t5113:  0x5F73,\n\t5114:  0x5F77,\n\t5115:  0x5F83,\n\t5116:  0x5F82,\n\t5117:  0x5F7F,\n\t5118:  0x5F8A,\n\t5119:  0x5F88,\n\t5120:  0x5F91,\n\t5121:  0x5F87,\n\t5122:  0x5F9E,\n\t5123:  0x5F99,\n\t5124:  0x5F98,\n\t5125:  0x5FA0,\n\t5126:  0x5FA8,\n\t5127:  0x5FAD,\n\t5128:  0x5FBC,\n\t5129:  0x5FD6,\n\t5130:  0x5FFB,\n\t5131:  0x5FE4,\n\t5132:  0x5FF8,\n\t5133:  0x5FF1,\n\t5134:  0x5FDD,\n\t5135:  0x60B3,\n\t5136:  0x5FFF,\n\t5137:  0x6021,\n\t5138:  0x6060,\n\t5139:  0x6019,\n\t5140:  0x6010,\n\t5141:  0x6029,\n\t5142:  0x600E,\n\t5143:  0x6031,\n\t5144:  0x601B,\n\t5145:  0x6015,\n\t5146:  0x602B,\n\t5147:  0x6026,\n\t5148:  0x600F,\n\t5149:  0x603A,\n\t5150:  0x605A,\n\t5151:  0x6041,\n\t5152:  0x606A,\n\t5153:  0x6077,\n\t5154:  0x605F,\n\t5155:  0x604A,\n\t5156:  0x6046,\n\t5157:  0x604D,\n\t5158:  0x6063,\n\t5159:  0x6043,\n\t5160:  0x6064,\n\t5161:  0x6042,\n\t5162:  0x606C,\n\t5163:  0x606B,\n\t5164:  0x6059,\n\t5165:  0x6081,\n\t5166:  0x608D,\n\t5167:  0x60E7,\n\t5168:  0x6083,\n\t5169:  0x609A,\n\t5170:  0x6084,\n\t5171:  0x609B,\n\t5172:  0x6096,\n\t5173:  0x6097,\n\t5174:  0x6092,\n\t5175:  0x60A7,\n\t5176:  0x608B,\n\t5177:  0x60E1,\n\t5178:  0x60B8,\n\t5179:  0x60E0,\n\t5180:  0x60D3,\n\t5181:  0x60B4,\n\t5182:  0x5FF0,\n\t5183:  0x60BD,\n\t5184:  0x60C6,\n\t5185:  0x60B5,\n\t5186:  0x60D8,\n\t5187:  0x614D,\n\t5188:  0x6115,\n\t5189:  0x6106,\n\t5190:  0x60F6,\n\t5191:  0x60F7,\n\t5192:  0x6100,\n\t5193:  0x60F4,\n\t5194:  0x60FA,\n\t5195:  0x6103,\n\t5196:  0x6121,\n\t5197:  0x60FB,\n\t5198:  0x60F1,\n\t5199:  0x610D,\n\t5200:  0x610E,\n\t5201:  0x6147,\n\t5202:  0x613E,\n\t5203:  0x6128,\n\t5204:  0x6127,\n\t5205:  0x614A,\n\t5206:  0x613F,\n\t5207:  0x613C,\n\t5208:  0x612C,\n\t5209:  0x6134,\n\t5210:  0x613D,\n\t5211:  0x6142,\n\t5212:  0x6144,\n\t5213:  0x6173,\n\t5214:  0x6177,\n\t5215:  0x6158,\n\t5216:  0x6159,\n\t5217:  0x615A,\n\t5218:  0x616B,\n\t5219:  0x6174,\n\t5220:  0x616F,\n\t5221:  0x6165,\n\t5222:  0x6171,\n\t5223:  0x615F,\n\t5224:  0x615D,\n\t5225:  0x6153,\n\t5226:  0x6175,\n\t5227:  0x6199,\n\t5228:  0x6196,\n\t5229:  0x6187,\n\t5230:  0x61AC,\n\t5231:  0x6194,\n\t5232:  0x619A,\n\t5233:  0x618A,\n\t5234:  0x6191,\n\t5235:  0x61AB,\n\t5236:  0x61AE,\n\t5237:  0x61CC,\n\t5238:  0x61CA,\n\t5239:  0x61C9,\n\t5240:  0x61F7,\n\t5241:  0x61C8,\n\t5242:  0x61C3,\n\t5243:  0x61C6,\n\t5244:  0x61BA,\n\t5245:  0x61CB,\n\t5246:  0x7F79,\n\t5247:  0x61CD,\n\t5248:  0x61E6,\n\t5249:  0x61E3,\n\t5250:  0x61F6,\n\t5251:  0x61FA,\n\t5252:  0x61F4,\n\t5253:  0x61FF,\n\t5254:  0x61FD,\n\t5255:  0x61FC,\n\t5256:  0x61FE,\n\t5257:  0x6200,\n\t5258:  0x6208,\n\t5259:  0x6209,\n\t5260:  0x620D,\n\t5261:  0x620C,\n\t5262:  0x6214,\n\t5263:  0x621B,\n\t5264:  0x621E,\n\t5265:  0x6221,\n\t5266:  0x622A,\n\t5267:  0x622E,\n\t5268:  0x6230,\n\t5269:  0x6232,\n\t5270:  0x6233,\n\t5271:  0x6241,\n\t5272:  0x624E,\n\t5273:  0x625E,\n\t5274:  0x6263,\n\t5275:  0x625B,\n\t5276:  0x6260,\n\t5277:  0x6268,\n\t5278:  0x627C,\n\t5279:  0x6282,\n\t5280:  0x6289,\n\t5281:  0x627E,\n\t5282:  0x6292,\n\t5283:  0x6293,\n\t5284:  0x6296,\n\t5285:  0x62D4,\n\t5286:  0x6283,\n\t5287:  0x6294,\n\t5288:  0x62D7,\n\t5289:  0x62D1,\n\t5290:  0x62BB,\n\t5291:  0x62CF,\n\t5292:  0x62FF,\n\t5293:  0x62C6,\n\t5294:  0x64D4,\n\t5295:  0x62C8,\n\t5296:  0x62DC,\n\t5297:  0x62CC,\n\t5298:  0x62CA,\n\t5299:  0x62C2,\n\t5300:  0x62C7,\n\t5301:  0x629B,\n\t5302:  0x62C9,\n\t5303:  0x630C,\n\t5304:  0x62EE,\n\t5305:  0x62F1,\n\t5306:  0x6327,\n\t5307:  0x6302,\n\t5308:  0x6308,\n\t5309:  0x62EF,\n\t5310:  0x62F5,\n\t5311:  0x6350,\n\t5312:  0x633E,\n\t5313:  0x634D,\n\t5314:  0x641C,\n\t5315:  0x634F,\n\t5316:  0x6396,\n\t5317:  0x638E,\n\t5318:  0x6380,\n\t5319:  0x63AB,\n\t5320:  0x6376,\n\t5321:  0x63A3,\n\t5322:  0x638F,\n\t5323:  0x6389,\n\t5324:  0x639F,\n\t5325:  0x63B5,\n\t5326:  0x636B,\n\t5327:  0x6369,\n\t5328:  0x63BE,\n\t5329:  0x63E9,\n\t5330:  0x63C0,\n\t5331:  0x63C6,\n\t5332:  0x63E3,\n\t5333:  0x63C9,\n\t5334:  0x63D2,\n\t5335:  0x63F6,\n\t5336:  0x63C4,\n\t5337:  0x6416,\n\t5338:  0x6434,\n\t5339:  0x6406,\n\t5340:  0x6413,\n\t5341:  0x6426,\n\t5342:  0x6436,\n\t5343:  0x651D,\n\t5344:  0x6417,\n\t5345:  0x6428,\n\t5346:  0x640F,\n\t5347:  0x6467,\n\t5348:  0x646F,\n\t5349:  0x6476,\n\t5350:  0x644E,\n\t5351:  0x652A,\n\t5352:  0x6495,\n\t5353:  0x6493,\n\t5354:  0x64A5,\n\t5355:  0x64A9,\n\t5356:  0x6488,\n\t5357:  0x64BC,\n\t5358:  0x64DA,\n\t5359:  0x64D2,\n\t5360:  0x64C5,\n\t5361:  0x64C7,\n\t5362:  0x64BB,\n\t5363:  0x64D8,\n\t5364:  0x64C2,\n\t5365:  0x64F1,\n\t5366:  0x64E7,\n\t5367:  0x8209,\n\t5368:  0x64E0,\n\t5369:  0x64E1,\n\t5370:  0x62AC,\n\t5371:  0x64E3,\n\t5372:  0x64EF,\n\t5373:  0x652C,\n\t5374:  0x64F6,\n\t5375:  0x64F4,\n\t5376:  0x64F2,\n\t5377:  0x64FA,\n\t5378:  0x6500,\n\t5379:  0x64FD,\n\t5380:  0x6518,\n\t5381:  0x651C,\n\t5382:  0x6505,\n\t5383:  0x6524,\n\t5384:  0x6523,\n\t5385:  0x652B,\n\t5386:  0x6534,\n\t5387:  0x6535,\n\t5388:  0x6537,\n\t5389:  0x6536,\n\t5390:  0x6538,\n\t5391:  0x754B,\n\t5392:  0x6548,\n\t5393:  0x6556,\n\t5394:  0x6555,\n\t5395:  0x654D,\n\t5396:  0x6558,\n\t5397:  0x655E,\n\t5398:  0x655D,\n\t5399:  0x6572,\n\t5400:  0x6578,\n\t5401:  0x6582,\n\t5402:  0x6583,\n\t5403:  0x8B8A,\n\t5404:  0x659B,\n\t5405:  0x659F,\n\t5406:  0x65AB,\n\t5407:  0x65B7,\n\t5408:  0x65C3,\n\t5409:  0x65C6,\n\t5410:  0x65C1,\n\t5411:  0x65C4,\n\t5412:  0x65CC,\n\t5413:  0x65D2,\n\t5414:  0x65DB,\n\t5415:  0x65D9,\n\t5416:  0x65E0,\n\t5417:  0x65E1,\n\t5418:  0x65F1,\n\t5419:  0x6772,\n\t5420:  0x660A,\n\t5421:  0x6603,\n\t5422:  0x65FB,\n\t5423:  0x6773,\n\t5424:  0x6635,\n\t5425:  0x6636,\n\t5426:  0x6634,\n\t5427:  0x661C,\n\t5428:  0x664F,\n\t5429:  0x6644,\n\t5430:  0x6649,\n\t5431:  0x6641,\n\t5432:  0x665E,\n\t5433:  0x665D,\n\t5434:  0x6664,\n\t5435:  0x6667,\n\t5436:  0x6668,\n\t5437:  0x665F,\n\t5438:  0x6662,\n\t5439:  0x6670,\n\t5440:  0x6683,\n\t5441:  0x6688,\n\t5442:  0x668E,\n\t5443:  0x6689,\n\t5444:  0x6684,\n\t5445:  0x6698,\n\t5446:  0x669D,\n\t5447:  0x66C1,\n\t5448:  0x66B9,\n\t5449:  0x66C9,\n\t5450:  0x66BE,\n\t5451:  0x66BC,\n\t5452:  0x66C4,\n\t5453:  0x66B8,\n\t5454:  0x66D6,\n\t5455:  0x66DA,\n\t5456:  0x66E0,\n\t5457:  0x663F,\n\t5458:  0x66E6,\n\t5459:  0x66E9,\n\t5460:  0x66F0,\n\t5461:  0x66F5,\n\t5462:  0x66F7,\n\t5463:  0x670F,\n\t5464:  0x6716,\n\t5465:  0x671E,\n\t5466:  0x6726,\n\t5467:  0x6727,\n\t5468:  0x9738,\n\t5469:  0x672E,\n\t5470:  0x673F,\n\t5471:  0x6736,\n\t5472:  0x6741,\n\t5473:  0x6738,\n\t5474:  0x6737,\n\t5475:  0x6746,\n\t5476:  0x675E,\n\t5477:  0x6760,\n\t5478:  0x6759,\n\t5479:  0x6763,\n\t5480:  0x6764,\n\t5481:  0x6789,\n\t5482:  0x6770,\n\t5483:  0x67A9,\n\t5484:  0x677C,\n\t5485:  0x676A,\n\t5486:  0x678C,\n\t5487:  0x678B,\n\t5488:  0x67A6,\n\t5489:  0x67A1,\n\t5490:  0x6785,\n\t5491:  0x67B7,\n\t5492:  0x67EF,\n\t5493:  0x67B4,\n\t5494:  0x67EC,\n\t5495:  0x67B3,\n\t5496:  0x67E9,\n\t5497:  0x67B8,\n\t5498:  0x67E4,\n\t5499:  0x67DE,\n\t5500:  0x67DD,\n\t5501:  0x67E2,\n\t5502:  0x67EE,\n\t5503:  0x67B9,\n\t5504:  0x67CE,\n\t5505:  0x67C6,\n\t5506:  0x67E7,\n\t5507:  0x6A9C,\n\t5508:  0x681E,\n\t5509:  0x6846,\n\t5510:  0x6829,\n\t5511:  0x6840,\n\t5512:  0x684D,\n\t5513:  0x6832,\n\t5514:  0x684E,\n\t5515:  0x68B3,\n\t5516:  0x682B,\n\t5517:  0x6859,\n\t5518:  0x6863,\n\t5519:  0x6877,\n\t5520:  0x687F,\n\t5521:  0x689F,\n\t5522:  0x688F,\n\t5523:  0x68AD,\n\t5524:  0x6894,\n\t5525:  0x689D,\n\t5526:  0x689B,\n\t5527:  0x6883,\n\t5528:  0x6AAE,\n\t5529:  0x68B9,\n\t5530:  0x6874,\n\t5531:  0x68B5,\n\t5532:  0x68A0,\n\t5533:  0x68BA,\n\t5534:  0x690F,\n\t5535:  0x688D,\n\t5536:  0x687E,\n\t5537:  0x6901,\n\t5538:  0x68CA,\n\t5539:  0x6908,\n\t5540:  0x68D8,\n\t5541:  0x6922,\n\t5542:  0x6926,\n\t5543:  0x68E1,\n\t5544:  0x690C,\n\t5545:  0x68CD,\n\t5546:  0x68D4,\n\t5547:  0x68E7,\n\t5548:  0x68D5,\n\t5549:  0x6936,\n\t5550:  0x6912,\n\t5551:  0x6904,\n\t5552:  0x68D7,\n\t5553:  0x68E3,\n\t5554:  0x6925,\n\t5555:  0x68F9,\n\t5556:  0x68E0,\n\t5557:  0x68EF,\n\t5558:  0x6928,\n\t5559:  0x692A,\n\t5560:  0x691A,\n\t5561:  0x6923,\n\t5562:  0x6921,\n\t5563:  0x68C6,\n\t5564:  0x6979,\n\t5565:  0x6977,\n\t5566:  0x695C,\n\t5567:  0x6978,\n\t5568:  0x696B,\n\t5569:  0x6954,\n\t5570:  0x697E,\n\t5571:  0x696E,\n\t5572:  0x6939,\n\t5573:  0x6974,\n\t5574:  0x693D,\n\t5575:  0x6959,\n\t5576:  0x6930,\n\t5577:  0x6961,\n\t5578:  0x695E,\n\t5579:  0x695D,\n\t5580:  0x6981,\n\t5581:  0x696A,\n\t5582:  0x69B2,\n\t5583:  0x69AE,\n\t5584:  0x69D0,\n\t5585:  0x69BF,\n\t5586:  0x69C1,\n\t5587:  0x69D3,\n\t5588:  0x69BE,\n\t5589:  0x69CE,\n\t5590:  0x5BE8,\n\t5591:  0x69CA,\n\t5592:  0x69DD,\n\t5593:  0x69BB,\n\t5594:  0x69C3,\n\t5595:  0x69A7,\n\t5596:  0x6A2E,\n\t5597:  0x6991,\n\t5598:  0x69A0,\n\t5599:  0x699C,\n\t5600:  0x6995,\n\t5601:  0x69B4,\n\t5602:  0x69DE,\n\t5603:  0x69E8,\n\t5604:  0x6A02,\n\t5605:  0x6A1B,\n\t5606:  0x69FF,\n\t5607:  0x6B0A,\n\t5608:  0x69F9,\n\t5609:  0x69F2,\n\t5610:  0x69E7,\n\t5611:  0x6A05,\n\t5612:  0x69B1,\n\t5613:  0x6A1E,\n\t5614:  0x69ED,\n\t5615:  0x6A14,\n\t5616:  0x69EB,\n\t5617:  0x6A0A,\n\t5618:  0x6A12,\n\t5619:  0x6AC1,\n\t5620:  0x6A23,\n\t5621:  0x6A13,\n\t5622:  0x6A44,\n\t5623:  0x6A0C,\n\t5624:  0x6A72,\n\t5625:  0x6A36,\n\t5626:  0x6A78,\n\t5627:  0x6A47,\n\t5628:  0x6A62,\n\t5629:  0x6A59,\n\t5630:  0x6A66,\n\t5631:  0x6A48,\n\t5632:  0x6A38,\n\t5633:  0x6A22,\n\t5634:  0x6A90,\n\t5635:  0x6A8D,\n\t5636:  0x6AA0,\n\t5637:  0x6A84,\n\t5638:  0x6AA2,\n\t5639:  0x6AA3,\n\t5640:  0x6A97,\n\t5641:  0x8617,\n\t5642:  0x6ABB,\n\t5643:  0x6AC3,\n\t5644:  0x6AC2,\n\t5645:  0x6AB8,\n\t5646:  0x6AB3,\n\t5647:  0x6AAC,\n\t5648:  0x6ADE,\n\t5649:  0x6AD1,\n\t5650:  0x6ADF,\n\t5651:  0x6AAA,\n\t5652:  0x6ADA,\n\t5653:  0x6AEA,\n\t5654:  0x6AFB,\n\t5655:  0x6B05,\n\t5656:  0x8616,\n\t5657:  0x6AFA,\n\t5658:  0x6B12,\n\t5659:  0x6B16,\n\t5660:  0x9B31,\n\t5661:  0x6B1F,\n\t5662:  0x6B38,\n\t5663:  0x6B37,\n\t5664:  0x76DC,\n\t5665:  0x6B39,\n\t5666:  0x98EE,\n\t5667:  0x6B47,\n\t5668:  0x6B43,\n\t5669:  0x6B49,\n\t5670:  0x6B50,\n\t5671:  0x6B59,\n\t5672:  0x6B54,\n\t5673:  0x6B5B,\n\t5674:  0x6B5F,\n\t5675:  0x6B61,\n\t5676:  0x6B78,\n\t5677:  0x6B79,\n\t5678:  0x6B7F,\n\t5679:  0x6B80,\n\t5680:  0x6B84,\n\t5681:  0x6B83,\n\t5682:  0x6B8D,\n\t5683:  0x6B98,\n\t5684:  0x6B95,\n\t5685:  0x6B9E,\n\t5686:  0x6BA4,\n\t5687:  0x6BAA,\n\t5688:  0x6BAB,\n\t5689:  0x6BAF,\n\t5690:  0x6BB2,\n\t5691:  0x6BB1,\n\t5692:  0x6BB3,\n\t5693:  0x6BB7,\n\t5694:  0x6BBC,\n\t5695:  0x6BC6,\n\t5696:  0x6BCB,\n\t5697:  0x6BD3,\n\t5698:  0x6BDF,\n\t5699:  0x6BEC,\n\t5700:  0x6BEB,\n\t5701:  0x6BF3,\n\t5702:  0x6BEF,\n\t5703:  0x9EBE,\n\t5704:  0x6C08,\n\t5705:  0x6C13,\n\t5706:  0x6C14,\n\t5707:  0x6C1B,\n\t5708:  0x6C24,\n\t5709:  0x6C23,\n\t5710:  0x6C5E,\n\t5711:  0x6C55,\n\t5712:  0x6C62,\n\t5713:  0x6C6A,\n\t5714:  0x6C82,\n\t5715:  0x6C8D,\n\t5716:  0x6C9A,\n\t5717:  0x6C81,\n\t5718:  0x6C9B,\n\t5719:  0x6C7E,\n\t5720:  0x6C68,\n\t5721:  0x6C73,\n\t5722:  0x6C92,\n\t5723:  0x6C90,\n\t5724:  0x6CC4,\n\t5725:  0x6CF1,\n\t5726:  0x6CD3,\n\t5727:  0x6CBD,\n\t5728:  0x6CD7,\n\t5729:  0x6CC5,\n\t5730:  0x6CDD,\n\t5731:  0x6CAE,\n\t5732:  0x6CB1,\n\t5733:  0x6CBE,\n\t5734:  0x6CBA,\n\t5735:  0x6CDB,\n\t5736:  0x6CEF,\n\t5737:  0x6CD9,\n\t5738:  0x6CEA,\n\t5739:  0x6D1F,\n\t5740:  0x884D,\n\t5741:  0x6D36,\n\t5742:  0x6D2B,\n\t5743:  0x6D3D,\n\t5744:  0x6D38,\n\t5745:  0x6D19,\n\t5746:  0x6D35,\n\t5747:  0x6D33,\n\t5748:  0x6D12,\n\t5749:  0x6D0C,\n\t5750:  0x6D63,\n\t5751:  0x6D93,\n\t5752:  0x6D64,\n\t5753:  0x6D5A,\n\t5754:  0x6D79,\n\t5755:  0x6D59,\n\t5756:  0x6D8E,\n\t5757:  0x6D95,\n\t5758:  0x6FE4,\n\t5759:  0x6D85,\n\t5760:  0x6DF9,\n\t5761:  0x6E15,\n\t5762:  0x6E0A,\n\t5763:  0x6DB5,\n\t5764:  0x6DC7,\n\t5765:  0x6DE6,\n\t5766:  0x6DB8,\n\t5767:  0x6DC6,\n\t5768:  0x6DEC,\n\t5769:  0x6DDE,\n\t5770:  0x6DCC,\n\t5771:  0x6DE8,\n\t5772:  0x6DD2,\n\t5773:  0x6DC5,\n\t5774:  0x6DFA,\n\t5775:  0x6DD9,\n\t5776:  0x6DE4,\n\t5777:  0x6DD5,\n\t5778:  0x6DEA,\n\t5779:  0x6DEE,\n\t5780:  0x6E2D,\n\t5781:  0x6E6E,\n\t5782:  0x6E2E,\n\t5783:  0x6E19,\n\t5784:  0x6E72,\n\t5785:  0x6E5F,\n\t5786:  0x6E3E,\n\t5787:  0x6E23,\n\t5788:  0x6E6B,\n\t5789:  0x6E2B,\n\t5790:  0x6E76,\n\t5791:  0x6E4D,\n\t5792:  0x6E1F,\n\t5793:  0x6E43,\n\t5794:  0x6E3A,\n\t5795:  0x6E4E,\n\t5796:  0x6E24,\n\t5797:  0x6EFF,\n\t5798:  0x6E1D,\n\t5799:  0x6E38,\n\t5800:  0x6E82,\n\t5801:  0x6EAA,\n\t5802:  0x6E98,\n\t5803:  0x6EC9,\n\t5804:  0x6EB7,\n\t5805:  0x6ED3,\n\t5806:  0x6EBD,\n\t5807:  0x6EAF,\n\t5808:  0x6EC4,\n\t5809:  0x6EB2,\n\t5810:  0x6ED4,\n\t5811:  0x6ED5,\n\t5812:  0x6E8F,\n\t5813:  0x6EA5,\n\t5814:  0x6EC2,\n\t5815:  0x6E9F,\n\t5816:  0x6F41,\n\t5817:  0x6F11,\n\t5818:  0x704C,\n\t5819:  0x6EEC,\n\t5820:  0x6EF8,\n\t5821:  0x6EFE,\n\t5822:  0x6F3F,\n\t5823:  0x6EF2,\n\t5824:  0x6F31,\n\t5825:  0x6EEF,\n\t5826:  0x6F32,\n\t5827:  0x6ECC,\n\t5828:  0x6F3E,\n\t5829:  0x6F13,\n\t5830:  0x6EF7,\n\t5831:  0x6F86,\n\t5832:  0x6F7A,\n\t5833:  0x6F78,\n\t5834:  0x6F81,\n\t5835:  0x6F80,\n\t5836:  0x6F6F,\n\t5837:  0x6F5B,\n\t5838:  0x6FF3,\n\t5839:  0x6F6D,\n\t5840:  0x6F82,\n\t5841:  0x6F7C,\n\t5842:  0x6F58,\n\t5843:  0x6F8E,\n\t5844:  0x6F91,\n\t5845:  0x6FC2,\n\t5846:  0x6F66,\n\t5847:  0x6FB3,\n\t5848:  0x6FA3,\n\t5849:  0x6FA1,\n\t5850:  0x6FA4,\n\t5851:  0x6FB9,\n\t5852:  0x6FC6,\n\t5853:  0x6FAA,\n\t5854:  0x6FDF,\n\t5855:  0x6FD5,\n\t5856:  0x6FEC,\n\t5857:  0x6FD4,\n\t5858:  0x6FD8,\n\t5859:  0x6FF1,\n\t5860:  0x6FEE,\n\t5861:  0x6FDB,\n\t5862:  0x7009,\n\t5863:  0x700B,\n\t5864:  0x6FFA,\n\t5865:  0x7011,\n\t5866:  0x7001,\n\t5867:  0x700F,\n\t5868:  0x6FFE,\n\t5869:  0x701B,\n\t5870:  0x701A,\n\t5871:  0x6F74,\n\t5872:  0x701D,\n\t5873:  0x7018,\n\t5874:  0x701F,\n\t5875:  0x7030,\n\t5876:  0x703E,\n\t5877:  0x7032,\n\t5878:  0x7051,\n\t5879:  0x7063,\n\t5880:  0x7099,\n\t5881:  0x7092,\n\t5882:  0x70AF,\n\t5883:  0x70F1,\n\t5884:  0x70AC,\n\t5885:  0x70B8,\n\t5886:  0x70B3,\n\t5887:  0x70AE,\n\t5888:  0x70DF,\n\t5889:  0x70CB,\n\t5890:  0x70DD,\n\t5891:  0x70D9,\n\t5892:  0x7109,\n\t5893:  0x70FD,\n\t5894:  0x711C,\n\t5895:  0x7119,\n\t5896:  0x7165,\n\t5897:  0x7155,\n\t5898:  0x7188,\n\t5899:  0x7166,\n\t5900:  0x7162,\n\t5901:  0x714C,\n\t5902:  0x7156,\n\t5903:  0x716C,\n\t5904:  0x718F,\n\t5905:  0x71FB,\n\t5906:  0x7184,\n\t5907:  0x7195,\n\t5908:  0x71A8,\n\t5909:  0x71AC,\n\t5910:  0x71D7,\n\t5911:  0x71B9,\n\t5912:  0x71BE,\n\t5913:  0x71D2,\n\t5914:  0x71C9,\n\t5915:  0x71D4,\n\t5916:  0x71CE,\n\t5917:  0x71E0,\n\t5918:  0x71EC,\n\t5919:  0x71E7,\n\t5920:  0x71F5,\n\t5921:  0x71FC,\n\t5922:  0x71F9,\n\t5923:  0x71FF,\n\t5924:  0x720D,\n\t5925:  0x7210,\n\t5926:  0x721B,\n\t5927:  0x7228,\n\t5928:  0x722D,\n\t5929:  0x722C,\n\t5930:  0x7230,\n\t5931:  0x7232,\n\t5932:  0x723B,\n\t5933:  0x723C,\n\t5934:  0x723F,\n\t5935:  0x7240,\n\t5936:  0x7246,\n\t5937:  0x724B,\n\t5938:  0x7258,\n\t5939:  0x7274,\n\t5940:  0x727E,\n\t5941:  0x7282,\n\t5942:  0x7281,\n\t5943:  0x7287,\n\t5944:  0x7292,\n\t5945:  0x7296,\n\t5946:  0x72A2,\n\t5947:  0x72A7,\n\t5948:  0x72B9,\n\t5949:  0x72B2,\n\t5950:  0x72C3,\n\t5951:  0x72C6,\n\t5952:  0x72C4,\n\t5953:  0x72CE,\n\t5954:  0x72D2,\n\t5955:  0x72E2,\n\t5956:  0x72E0,\n\t5957:  0x72E1,\n\t5958:  0x72F9,\n\t5959:  0x72F7,\n\t5960:  0x500F,\n\t5961:  0x7317,\n\t5962:  0x730A,\n\t5963:  0x731C,\n\t5964:  0x7316,\n\t5965:  0x731D,\n\t5966:  0x7334,\n\t5967:  0x732F,\n\t5968:  0x7329,\n\t5969:  0x7325,\n\t5970:  0x733E,\n\t5971:  0x734E,\n\t5972:  0x734F,\n\t5973:  0x9ED8,\n\t5974:  0x7357,\n\t5975:  0x736A,\n\t5976:  0x7368,\n\t5977:  0x7370,\n\t5978:  0x7378,\n\t5979:  0x7375,\n\t5980:  0x737B,\n\t5981:  0x737A,\n\t5982:  0x73C8,\n\t5983:  0x73B3,\n\t5984:  0x73CE,\n\t5985:  0x73BB,\n\t5986:  0x73C0,\n\t5987:  0x73E5,\n\t5988:  0x73EE,\n\t5989:  0x73DE,\n\t5990:  0x74A2,\n\t5991:  0x7405,\n\t5992:  0x746F,\n\t5993:  0x7425,\n\t5994:  0x73F8,\n\t5995:  0x7432,\n\t5996:  0x743A,\n\t5997:  0x7455,\n\t5998:  0x743F,\n\t5999:  0x745F,\n\t6000:  0x7459,\n\t6001:  0x7441,\n\t6002:  0x745C,\n\t6003:  0x7469,\n\t6004:  0x7470,\n\t6005:  0x7463,\n\t6006:  0x746A,\n\t6007:  0x7476,\n\t6008:  0x747E,\n\t6009:  0x748B,\n\t6010:  0x749E,\n\t6011:  0x74A7,\n\t6012:  0x74CA,\n\t6013:  0x74CF,\n\t6014:  0x74D4,\n\t6015:  0x73F1,\n\t6016:  0x74E0,\n\t6017:  0x74E3,\n\t6018:  0x74E7,\n\t6019:  0x74E9,\n\t6020:  0x74EE,\n\t6021:  0x74F2,\n\t6022:  0x74F0,\n\t6023:  0x74F1,\n\t6024:  0x74F8,\n\t6025:  0x74F7,\n\t6026:  0x7504,\n\t6027:  0x7503,\n\t6028:  0x7505,\n\t6029:  0x750C,\n\t6030:  0x750E,\n\t6031:  0x750D,\n\t6032:  0x7515,\n\t6033:  0x7513,\n\t6034:  0x751E,\n\t6035:  0x7526,\n\t6036:  0x752C,\n\t6037:  0x753C,\n\t6038:  0x7544,\n\t6039:  0x754D,\n\t6040:  0x754A,\n\t6041:  0x7549,\n\t6042:  0x755B,\n\t6043:  0x7546,\n\t6044:  0x755A,\n\t6045:  0x7569,\n\t6046:  0x7564,\n\t6047:  0x7567,\n\t6048:  0x756B,\n\t6049:  0x756D,\n\t6050:  0x7578,\n\t6051:  0x7576,\n\t6052:  0x7586,\n\t6053:  0x7587,\n\t6054:  0x7574,\n\t6055:  0x758A,\n\t6056:  0x7589,\n\t6057:  0x7582,\n\t6058:  0x7594,\n\t6059:  0x759A,\n\t6060:  0x759D,\n\t6061:  0x75A5,\n\t6062:  0x75A3,\n\t6063:  0x75C2,\n\t6064:  0x75B3,\n\t6065:  0x75C3,\n\t6066:  0x75B5,\n\t6067:  0x75BD,\n\t6068:  0x75B8,\n\t6069:  0x75BC,\n\t6070:  0x75B1,\n\t6071:  0x75CD,\n\t6072:  0x75CA,\n\t6073:  0x75D2,\n\t6074:  0x75D9,\n\t6075:  0x75E3,\n\t6076:  0x75DE,\n\t6077:  0x75FE,\n\t6078:  0x75FF,\n\t6079:  0x75FC,\n\t6080:  0x7601,\n\t6081:  0x75F0,\n\t6082:  0x75FA,\n\t6083:  0x75F2,\n\t6084:  0x75F3,\n\t6085:  0x760B,\n\t6086:  0x760D,\n\t6087:  0x7609,\n\t6088:  0x761F,\n\t6089:  0x7627,\n\t6090:  0x7620,\n\t6091:  0x7621,\n\t6092:  0x7622,\n\t6093:  0x7624,\n\t6094:  0x7634,\n\t6095:  0x7630,\n\t6096:  0x763B,\n\t6097:  0x7647,\n\t6098:  0x7648,\n\t6099:  0x7646,\n\t6100:  0x765C,\n\t6101:  0x7658,\n\t6102:  0x7661,\n\t6103:  0x7662,\n\t6104:  0x7668,\n\t6105:  0x7669,\n\t6106:  0x766A,\n\t6107:  0x7667,\n\t6108:  0x766C,\n\t6109:  0x7670,\n\t6110:  0x7672,\n\t6111:  0x7676,\n\t6112:  0x7678,\n\t6113:  0x767C,\n\t6114:  0x7680,\n\t6115:  0x7683,\n\t6116:  0x7688,\n\t6117:  0x768B,\n\t6118:  0x768E,\n\t6119:  0x7696,\n\t6120:  0x7693,\n\t6121:  0x7699,\n\t6122:  0x769A,\n\t6123:  0x76B0,\n\t6124:  0x76B4,\n\t6125:  0x76B8,\n\t6126:  0x76B9,\n\t6127:  0x76BA,\n\t6128:  0x76C2,\n\t6129:  0x76CD,\n\t6130:  0x76D6,\n\t6131:  0x76D2,\n\t6132:  0x76DE,\n\t6133:  0x76E1,\n\t6134:  0x76E5,\n\t6135:  0x76E7,\n\t6136:  0x76EA,\n\t6137:  0x862F,\n\t6138:  0x76FB,\n\t6139:  0x7708,\n\t6140:  0x7707,\n\t6141:  0x7704,\n\t6142:  0x7729,\n\t6143:  0x7724,\n\t6144:  0x771E,\n\t6145:  0x7725,\n\t6146:  0x7726,\n\t6147:  0x771B,\n\t6148:  0x7737,\n\t6149:  0x7738,\n\t6150:  0x7747,\n\t6151:  0x775A,\n\t6152:  0x7768,\n\t6153:  0x776B,\n\t6154:  0x775B,\n\t6155:  0x7765,\n\t6156:  0x777F,\n\t6157:  0x777E,\n\t6158:  0x7779,\n\t6159:  0x778E,\n\t6160:  0x778B,\n\t6161:  0x7791,\n\t6162:  0x77A0,\n\t6163:  0x779E,\n\t6164:  0x77B0,\n\t6165:  0x77B6,\n\t6166:  0x77B9,\n\t6167:  0x77BF,\n\t6168:  0x77BC,\n\t6169:  0x77BD,\n\t6170:  0x77BB,\n\t6171:  0x77C7,\n\t6172:  0x77CD,\n\t6173:  0x77D7,\n\t6174:  0x77DA,\n\t6175:  0x77DC,\n\t6176:  0x77E3,\n\t6177:  0x77EE,\n\t6178:  0x77FC,\n\t6179:  0x780C,\n\t6180:  0x7812,\n\t6181:  0x7926,\n\t6182:  0x7820,\n\t6183:  0x792A,\n\t6184:  0x7845,\n\t6185:  0x788E,\n\t6186:  0x7874,\n\t6187:  0x7886,\n\t6188:  0x787C,\n\t6189:  0x789A,\n\t6190:  0x788C,\n\t6191:  0x78A3,\n\t6192:  0x78B5,\n\t6193:  0x78AA,\n\t6194:  0x78AF,\n\t6195:  0x78D1,\n\t6196:  0x78C6,\n\t6197:  0x78CB,\n\t6198:  0x78D4,\n\t6199:  0x78BE,\n\t6200:  0x78BC,\n\t6201:  0x78C5,\n\t6202:  0x78CA,\n\t6203:  0x78EC,\n\t6204:  0x78E7,\n\t6205:  0x78DA,\n\t6206:  0x78FD,\n\t6207:  0x78F4,\n\t6208:  0x7907,\n\t6209:  0x7912,\n\t6210:  0x7911,\n\t6211:  0x7919,\n\t6212:  0x792C,\n\t6213:  0x792B,\n\t6214:  0x7940,\n\t6215:  0x7960,\n\t6216:  0x7957,\n\t6217:  0x795F,\n\t6218:  0x795A,\n\t6219:  0x7955,\n\t6220:  0x7953,\n\t6221:  0x797A,\n\t6222:  0x797F,\n\t6223:  0x798A,\n\t6224:  0x799D,\n\t6225:  0x79A7,\n\t6226:  0x9F4B,\n\t6227:  0x79AA,\n\t6228:  0x79AE,\n\t6229:  0x79B3,\n\t6230:  0x79B9,\n\t6231:  0x79BA,\n\t6232:  0x79C9,\n\t6233:  0x79D5,\n\t6234:  0x79E7,\n\t6235:  0x79EC,\n\t6236:  0x79E1,\n\t6237:  0x79E3,\n\t6238:  0x7A08,\n\t6239:  0x7A0D,\n\t6240:  0x7A18,\n\t6241:  0x7A19,\n\t6242:  0x7A20,\n\t6243:  0x7A1F,\n\t6244:  0x7980,\n\t6245:  0x7A31,\n\t6246:  0x7A3B,\n\t6247:  0x7A3E,\n\t6248:  0x7A37,\n\t6249:  0x7A43,\n\t6250:  0x7A57,\n\t6251:  0x7A49,\n\t6252:  0x7A61,\n\t6253:  0x7A62,\n\t6254:  0x7A69,\n\t6255:  0x9F9D,\n\t6256:  0x7A70,\n\t6257:  0x7A79,\n\t6258:  0x7A7D,\n\t6259:  0x7A88,\n\t6260:  0x7A97,\n\t6261:  0x7A95,\n\t6262:  0x7A98,\n\t6263:  0x7A96,\n\t6264:  0x7AA9,\n\t6265:  0x7AC8,\n\t6266:  0x7AB0,\n\t6267:  0x7AB6,\n\t6268:  0x7AC5,\n\t6269:  0x7AC4,\n\t6270:  0x7ABF,\n\t6271:  0x9083,\n\t6272:  0x7AC7,\n\t6273:  0x7ACA,\n\t6274:  0x7ACD,\n\t6275:  0x7ACF,\n\t6276:  0x7AD5,\n\t6277:  0x7AD3,\n\t6278:  0x7AD9,\n\t6279:  0x7ADA,\n\t6280:  0x7ADD,\n\t6281:  0x7AE1,\n\t6282:  0x7AE2,\n\t6283:  0x7AE6,\n\t6284:  0x7AED,\n\t6285:  0x7AF0,\n\t6286:  0x7B02,\n\t6287:  0x7B0F,\n\t6288:  0x7B0A,\n\t6289:  0x7B06,\n\t6290:  0x7B33,\n\t6291:  0x7B18,\n\t6292:  0x7B19,\n\t6293:  0x7B1E,\n\t6294:  0x7B35,\n\t6295:  0x7B28,\n\t6296:  0x7B36,\n\t6297:  0x7B50,\n\t6298:  0x7B7A,\n\t6299:  0x7B04,\n\t6300:  0x7B4D,\n\t6301:  0x7B0B,\n\t6302:  0x7B4C,\n\t6303:  0x7B45,\n\t6304:  0x7B75,\n\t6305:  0x7B65,\n\t6306:  0x7B74,\n\t6307:  0x7B67,\n\t6308:  0x7B70,\n\t6309:  0x7B71,\n\t6310:  0x7B6C,\n\t6311:  0x7B6E,\n\t6312:  0x7B9D,\n\t6313:  0x7B98,\n\t6314:  0x7B9F,\n\t6315:  0x7B8D,\n\t6316:  0x7B9C,\n\t6317:  0x7B9A,\n\t6318:  0x7B8B,\n\t6319:  0x7B92,\n\t6320:  0x7B8F,\n\t6321:  0x7B5D,\n\t6322:  0x7B99,\n\t6323:  0x7BCB,\n\t6324:  0x7BC1,\n\t6325:  0x7BCC,\n\t6326:  0x7BCF,\n\t6327:  0x7BB4,\n\t6328:  0x7BC6,\n\t6329:  0x7BDD,\n\t6330:  0x7BE9,\n\t6331:  0x7C11,\n\t6332:  0x7C14,\n\t6333:  0x7BE6,\n\t6334:  0x7BE5,\n\t6335:  0x7C60,\n\t6336:  0x7C00,\n\t6337:  0x7C07,\n\t6338:  0x7C13,\n\t6339:  0x7BF3,\n\t6340:  0x7BF7,\n\t6341:  0x7C17,\n\t6342:  0x7C0D,\n\t6343:  0x7BF6,\n\t6344:  0x7C23,\n\t6345:  0x7C27,\n\t6346:  0x7C2A,\n\t6347:  0x7C1F,\n\t6348:  0x7C37,\n\t6349:  0x7C2B,\n\t6350:  0x7C3D,\n\t6351:  0x7C4C,\n\t6352:  0x7C43,\n\t6353:  0x7C54,\n\t6354:  0x7C4F,\n\t6355:  0x7C40,\n\t6356:  0x7C50,\n\t6357:  0x7C58,\n\t6358:  0x7C5F,\n\t6359:  0x7C64,\n\t6360:  0x7C56,\n\t6361:  0x7C65,\n\t6362:  0x7C6C,\n\t6363:  0x7C75,\n\t6364:  0x7C83,\n\t6365:  0x7C90,\n\t6366:  0x7CA4,\n\t6367:  0x7CAD,\n\t6368:  0x7CA2,\n\t6369:  0x7CAB,\n\t6370:  0x7CA1,\n\t6371:  0x7CA8,\n\t6372:  0x7CB3,\n\t6373:  0x7CB2,\n\t6374:  0x7CB1,\n\t6375:  0x7CAE,\n\t6376:  0x7CB9,\n\t6377:  0x7CBD,\n\t6378:  0x7CC0,\n\t6379:  0x7CC5,\n\t6380:  0x7CC2,\n\t6381:  0x7CD8,\n\t6382:  0x7CD2,\n\t6383:  0x7CDC,\n\t6384:  0x7CE2,\n\t6385:  0x9B3B,\n\t6386:  0x7CEF,\n\t6387:  0x7CF2,\n\t6388:  0x7CF4,\n\t6389:  0x7CF6,\n\t6390:  0x7CFA,\n\t6391:  0x7D06,\n\t6392:  0x7D02,\n\t6393:  0x7D1C,\n\t6394:  0x7D15,\n\t6395:  0x7D0A,\n\t6396:  0x7D45,\n\t6397:  0x7D4B,\n\t6398:  0x7D2E,\n\t6399:  0x7D32,\n\t6400:  0x7D3F,\n\t6401:  0x7D35,\n\t6402:  0x7D46,\n\t6403:  0x7D73,\n\t6404:  0x7D56,\n\t6405:  0x7D4E,\n\t6406:  0x7D72,\n\t6407:  0x7D68,\n\t6408:  0x7D6E,\n\t6409:  0x7D4F,\n\t6410:  0x7D63,\n\t6411:  0x7D93,\n\t6412:  0x7D89,\n\t6413:  0x7D5B,\n\t6414:  0x7D8F,\n\t6415:  0x7D7D,\n\t6416:  0x7D9B,\n\t6417:  0x7DBA,\n\t6418:  0x7DAE,\n\t6419:  0x7DA3,\n\t6420:  0x7DB5,\n\t6421:  0x7DC7,\n\t6422:  0x7DBD,\n\t6423:  0x7DAB,\n\t6424:  0x7E3D,\n\t6425:  0x7DA2,\n\t6426:  0x7DAF,\n\t6427:  0x7DDC,\n\t6428:  0x7DB8,\n\t6429:  0x7D9F,\n\t6430:  0x7DB0,\n\t6431:  0x7DD8,\n\t6432:  0x7DDD,\n\t6433:  0x7DE4,\n\t6434:  0x7DDE,\n\t6435:  0x7DFB,\n\t6436:  0x7DF2,\n\t6437:  0x7DE1,\n\t6438:  0x7E05,\n\t6439:  0x7E0A,\n\t6440:  0x7E23,\n\t6441:  0x7E21,\n\t6442:  0x7E12,\n\t6443:  0x7E31,\n\t6444:  0x7E1F,\n\t6445:  0x7E09,\n\t6446:  0x7E0B,\n\t6447:  0x7E22,\n\t6448:  0x7E46,\n\t6449:  0x7E66,\n\t6450:  0x7E3B,\n\t6451:  0x7E35,\n\t6452:  0x7E39,\n\t6453:  0x7E43,\n\t6454:  0x7E37,\n\t6455:  0x7E32,\n\t6456:  0x7E3A,\n\t6457:  0x7E67,\n\t6458:  0x7E5D,\n\t6459:  0x7E56,\n\t6460:  0x7E5E,\n\t6461:  0x7E59,\n\t6462:  0x7E5A,\n\t6463:  0x7E79,\n\t6464:  0x7E6A,\n\t6465:  0x7E69,\n\t6466:  0x7E7C,\n\t6467:  0x7E7B,\n\t6468:  0x7E83,\n\t6469:  0x7DD5,\n\t6470:  0x7E7D,\n\t6471:  0x8FAE,\n\t6472:  0x7E7F,\n\t6473:  0x7E88,\n\t6474:  0x7E89,\n\t6475:  0x7E8C,\n\t6476:  0x7E92,\n\t6477:  0x7E90,\n\t6478:  0x7E93,\n\t6479:  0x7E94,\n\t6480:  0x7E96,\n\t6481:  0x7E8E,\n\t6482:  0x7E9B,\n\t6483:  0x7E9C,\n\t6484:  0x7F38,\n\t6485:  0x7F3A,\n\t6486:  0x7F45,\n\t6487:  0x7F4C,\n\t6488:  0x7F4D,\n\t6489:  0x7F4E,\n\t6490:  0x7F50,\n\t6491:  0x7F51,\n\t6492:  0x7F55,\n\t6493:  0x7F54,\n\t6494:  0x7F58,\n\t6495:  0x7F5F,\n\t6496:  0x7F60,\n\t6497:  0x7F68,\n\t6498:  0x7F69,\n\t6499:  0x7F67,\n\t6500:  0x7F78,\n\t6501:  0x7F82,\n\t6502:  0x7F86,\n\t6503:  0x7F83,\n\t6504:  0x7F88,\n\t6505:  0x7F87,\n\t6506:  0x7F8C,\n\t6507:  0x7F94,\n\t6508:  0x7F9E,\n\t6509:  0x7F9D,\n\t6510:  0x7F9A,\n\t6511:  0x7FA3,\n\t6512:  0x7FAF,\n\t6513:  0x7FB2,\n\t6514:  0x7FB9,\n\t6515:  0x7FAE,\n\t6516:  0x7FB6,\n\t6517:  0x7FB8,\n\t6518:  0x8B71,\n\t6519:  0x7FC5,\n\t6520:  0x7FC6,\n\t6521:  0x7FCA,\n\t6522:  0x7FD5,\n\t6523:  0x7FD4,\n\t6524:  0x7FE1,\n\t6525:  0x7FE6,\n\t6526:  0x7FE9,\n\t6527:  0x7FF3,\n\t6528:  0x7FF9,\n\t6529:  0x98DC,\n\t6530:  0x8006,\n\t6531:  0x8004,\n\t6532:  0x800B,\n\t6533:  0x8012,\n\t6534:  0x8018,\n\t6535:  0x8019,\n\t6536:  0x801C,\n\t6537:  0x8021,\n\t6538:  0x8028,\n\t6539:  0x803F,\n\t6540:  0x803B,\n\t6541:  0x804A,\n\t6542:  0x8046,\n\t6543:  0x8052,\n\t6544:  0x8058,\n\t6545:  0x805A,\n\t6546:  0x805F,\n\t6547:  0x8062,\n\t6548:  0x8068,\n\t6549:  0x8073,\n\t6550:  0x8072,\n\t6551:  0x8070,\n\t6552:  0x8076,\n\t6553:  0x8079,\n\t6554:  0x807D,\n\t6555:  0x807F,\n\t6556:  0x8084,\n\t6557:  0x8086,\n\t6558:  0x8085,\n\t6559:  0x809B,\n\t6560:  0x8093,\n\t6561:  0x809A,\n\t6562:  0x80AD,\n\t6563:  0x5190,\n\t6564:  0x80AC,\n\t6565:  0x80DB,\n\t6566:  0x80E5,\n\t6567:  0x80D9,\n\t6568:  0x80DD,\n\t6569:  0x80C4,\n\t6570:  0x80DA,\n\t6571:  0x80D6,\n\t6572:  0x8109,\n\t6573:  0x80EF,\n\t6574:  0x80F1,\n\t6575:  0x811B,\n\t6576:  0x8129,\n\t6577:  0x8123,\n\t6578:  0x812F,\n\t6579:  0x814B,\n\t6580:  0x968B,\n\t6581:  0x8146,\n\t6582:  0x813E,\n\t6583:  0x8153,\n\t6584:  0x8151,\n\t6585:  0x80FC,\n\t6586:  0x8171,\n\t6587:  0x816E,\n\t6588:  0x8165,\n\t6589:  0x8166,\n\t6590:  0x8174,\n\t6591:  0x8183,\n\t6592:  0x8188,\n\t6593:  0x818A,\n\t6594:  0x8180,\n\t6595:  0x8182,\n\t6596:  0x81A0,\n\t6597:  0x8195,\n\t6598:  0x81A4,\n\t6599:  0x81A3,\n\t6600:  0x815F,\n\t6601:  0x8193,\n\t6602:  0x81A9,\n\t6603:  0x81B0,\n\t6604:  0x81B5,\n\t6605:  0x81BE,\n\t6606:  0x81B8,\n\t6607:  0x81BD,\n\t6608:  0x81C0,\n\t6609:  0x81C2,\n\t6610:  0x81BA,\n\t6611:  0x81C9,\n\t6612:  0x81CD,\n\t6613:  0x81D1,\n\t6614:  0x81D9,\n\t6615:  0x81D8,\n\t6616:  0x81C8,\n\t6617:  0x81DA,\n\t6618:  0x81DF,\n\t6619:  0x81E0,\n\t6620:  0x81E7,\n\t6621:  0x81FA,\n\t6622:  0x81FB,\n\t6623:  0x81FE,\n\t6624:  0x8201,\n\t6625:  0x8202,\n\t6626:  0x8205,\n\t6627:  0x8207,\n\t6628:  0x820A,\n\t6629:  0x820D,\n\t6630:  0x8210,\n\t6631:  0x8216,\n\t6632:  0x8229,\n\t6633:  0x822B,\n\t6634:  0x8238,\n\t6635:  0x8233,\n\t6636:  0x8240,\n\t6637:  0x8259,\n\t6638:  0x8258,\n\t6639:  0x825D,\n\t6640:  0x825A,\n\t6641:  0x825F,\n\t6642:  0x8264,\n\t6643:  0x8262,\n\t6644:  0x8268,\n\t6645:  0x826A,\n\t6646:  0x826B,\n\t6647:  0x822E,\n\t6648:  0x8271,\n\t6649:  0x8277,\n\t6650:  0x8278,\n\t6651:  0x827E,\n\t6652:  0x828D,\n\t6653:  0x8292,\n\t6654:  0x82AB,\n\t6655:  0x829F,\n\t6656:  0x82BB,\n\t6657:  0x82AC,\n\t6658:  0x82E1,\n\t6659:  0x82E3,\n\t6660:  0x82DF,\n\t6661:  0x82D2,\n\t6662:  0x82F4,\n\t6663:  0x82F3,\n\t6664:  0x82FA,\n\t6665:  0x8393,\n\t6666:  0x8303,\n\t6667:  0x82FB,\n\t6668:  0x82F9,\n\t6669:  0x82DE,\n\t6670:  0x8306,\n\t6671:  0x82DC,\n\t6672:  0x8309,\n\t6673:  0x82D9,\n\t6674:  0x8335,\n\t6675:  0x8334,\n\t6676:  0x8316,\n\t6677:  0x8332,\n\t6678:  0x8331,\n\t6679:  0x8340,\n\t6680:  0x8339,\n\t6681:  0x8350,\n\t6682:  0x8345,\n\t6683:  0x832F,\n\t6684:  0x832B,\n\t6685:  0x8317,\n\t6686:  0x8318,\n\t6687:  0x8385,\n\t6688:  0x839A,\n\t6689:  0x83AA,\n\t6690:  0x839F,\n\t6691:  0x83A2,\n\t6692:  0x8396,\n\t6693:  0x8323,\n\t6694:  0x838E,\n\t6695:  0x8387,\n\t6696:  0x838A,\n\t6697:  0x837C,\n\t6698:  0x83B5,\n\t6699:  0x8373,\n\t6700:  0x8375,\n\t6701:  0x83A0,\n\t6702:  0x8389,\n\t6703:  0x83A8,\n\t6704:  0x83F4,\n\t6705:  0x8413,\n\t6706:  0x83EB,\n\t6707:  0x83CE,\n\t6708:  0x83FD,\n\t6709:  0x8403,\n\t6710:  0x83D8,\n\t6711:  0x840B,\n\t6712:  0x83C1,\n\t6713:  0x83F7,\n\t6714:  0x8407,\n\t6715:  0x83E0,\n\t6716:  0x83F2,\n\t6717:  0x840D,\n\t6718:  0x8422,\n\t6719:  0x8420,\n\t6720:  0x83BD,\n\t6721:  0x8438,\n\t6722:  0x8506,\n\t6723:  0x83FB,\n\t6724:  0x846D,\n\t6725:  0x842A,\n\t6726:  0x843C,\n\t6727:  0x855A,\n\t6728:  0x8484,\n\t6729:  0x8477,\n\t6730:  0x846B,\n\t6731:  0x84AD,\n\t6732:  0x846E,\n\t6733:  0x8482,\n\t6734:  0x8469,\n\t6735:  0x8446,\n\t6736:  0x842C,\n\t6737:  0x846F,\n\t6738:  0x8479,\n\t6739:  0x8435,\n\t6740:  0x84CA,\n\t6741:  0x8462,\n\t6742:  0x84B9,\n\t6743:  0x84BF,\n\t6744:  0x849F,\n\t6745:  0x84D9,\n\t6746:  0x84CD,\n\t6747:  0x84BB,\n\t6748:  0x84DA,\n\t6749:  0x84D0,\n\t6750:  0x84C1,\n\t6751:  0x84C6,\n\t6752:  0x84D6,\n\t6753:  0x84A1,\n\t6754:  0x8521,\n\t6755:  0x84FF,\n\t6756:  0x84F4,\n\t6757:  0x8517,\n\t6758:  0x8518,\n\t6759:  0x852C,\n\t6760:  0x851F,\n\t6761:  0x8515,\n\t6762:  0x8514,\n\t6763:  0x84FC,\n\t6764:  0x8540,\n\t6765:  0x8563,\n\t6766:  0x8558,\n\t6767:  0x8548,\n\t6768:  0x8541,\n\t6769:  0x8602,\n\t6770:  0x854B,\n\t6771:  0x8555,\n\t6772:  0x8580,\n\t6773:  0x85A4,\n\t6774:  0x8588,\n\t6775:  0x8591,\n\t6776:  0x858A,\n\t6777:  0x85A8,\n\t6778:  0x856D,\n\t6779:  0x8594,\n\t6780:  0x859B,\n\t6781:  0x85EA,\n\t6782:  0x8587,\n\t6783:  0x859C,\n\t6784:  0x8577,\n\t6785:  0x857E,\n\t6786:  0x8590,\n\t6787:  0x85C9,\n\t6788:  0x85BA,\n\t6789:  0x85CF,\n\t6790:  0x85B9,\n\t6791:  0x85D0,\n\t6792:  0x85D5,\n\t6793:  0x85DD,\n\t6794:  0x85E5,\n\t6795:  0x85DC,\n\t6796:  0x85F9,\n\t6797:  0x860A,\n\t6798:  0x8613,\n\t6799:  0x860B,\n\t6800:  0x85FE,\n\t6801:  0x85FA,\n\t6802:  0x8606,\n\t6803:  0x8622,\n\t6804:  0x861A,\n\t6805:  0x8630,\n\t6806:  0x863F,\n\t6807:  0x864D,\n\t6808:  0x4E55,\n\t6809:  0x8654,\n\t6810:  0x865F,\n\t6811:  0x8667,\n\t6812:  0x8671,\n\t6813:  0x8693,\n\t6814:  0x86A3,\n\t6815:  0x86A9,\n\t6816:  0x86AA,\n\t6817:  0x868B,\n\t6818:  0x868C,\n\t6819:  0x86B6,\n\t6820:  0x86AF,\n\t6821:  0x86C4,\n\t6822:  0x86C6,\n\t6823:  0x86B0,\n\t6824:  0x86C9,\n\t6825:  0x8823,\n\t6826:  0x86AB,\n\t6827:  0x86D4,\n\t6828:  0x86DE,\n\t6829:  0x86E9,\n\t6830:  0x86EC,\n\t6831:  0x86DF,\n\t6832:  0x86DB,\n\t6833:  0x86EF,\n\t6834:  0x8712,\n\t6835:  0x8706,\n\t6836:  0x8708,\n\t6837:  0x8700,\n\t6838:  0x8703,\n\t6839:  0x86FB,\n\t6840:  0x8711,\n\t6841:  0x8709,\n\t6842:  0x870D,\n\t6843:  0x86F9,\n\t6844:  0x870A,\n\t6845:  0x8734,\n\t6846:  0x873F,\n\t6847:  0x8737,\n\t6848:  0x873B,\n\t6849:  0x8725,\n\t6850:  0x8729,\n\t6851:  0x871A,\n\t6852:  0x8760,\n\t6853:  0x875F,\n\t6854:  0x8778,\n\t6855:  0x874C,\n\t6856:  0x874E,\n\t6857:  0x8774,\n\t6858:  0x8757,\n\t6859:  0x8768,\n\t6860:  0x876E,\n\t6861:  0x8759,\n\t6862:  0x8753,\n\t6863:  0x8763,\n\t6864:  0x876A,\n\t6865:  0x8805,\n\t6866:  0x87A2,\n\t6867:  0x879F,\n\t6868:  0x8782,\n\t6869:  0x87AF,\n\t6870:  0x87CB,\n\t6871:  0x87BD,\n\t6872:  0x87C0,\n\t6873:  0x87D0,\n\t6874:  0x96D6,\n\t6875:  0x87AB,\n\t6876:  0x87C4,\n\t6877:  0x87B3,\n\t6878:  0x87C7,\n\t6879:  0x87C6,\n\t6880:  0x87BB,\n\t6881:  0x87EF,\n\t6882:  0x87F2,\n\t6883:  0x87E0,\n\t6884:  0x880F,\n\t6885:  0x880D,\n\t6886:  0x87FE,\n\t6887:  0x87F6,\n\t6888:  0x87F7,\n\t6889:  0x880E,\n\t6890:  0x87D2,\n\t6891:  0x8811,\n\t6892:  0x8816,\n\t6893:  0x8815,\n\t6894:  0x8822,\n\t6895:  0x8821,\n\t6896:  0x8831,\n\t6897:  0x8836,\n\t6898:  0x8839,\n\t6899:  0x8827,\n\t6900:  0x883B,\n\t6901:  0x8844,\n\t6902:  0x8842,\n\t6903:  0x8852,\n\t6904:  0x8859,\n\t6905:  0x885E,\n\t6906:  0x8862,\n\t6907:  0x886B,\n\t6908:  0x8881,\n\t6909:  0x887E,\n\t6910:  0x889E,\n\t6911:  0x8875,\n\t6912:  0x887D,\n\t6913:  0x88B5,\n\t6914:  0x8872,\n\t6915:  0x8882,\n\t6916:  0x8897,\n\t6917:  0x8892,\n\t6918:  0x88AE,\n\t6919:  0x8899,\n\t6920:  0x88A2,\n\t6921:  0x888D,\n\t6922:  0x88A4,\n\t6923:  0x88B0,\n\t6924:  0x88BF,\n\t6925:  0x88B1,\n\t6926:  0x88C3,\n\t6927:  0x88C4,\n\t6928:  0x88D4,\n\t6929:  0x88D8,\n\t6930:  0x88D9,\n\t6931:  0x88DD,\n\t6932:  0x88F9,\n\t6933:  0x8902,\n\t6934:  0x88FC,\n\t6935:  0x88F4,\n\t6936:  0x88E8,\n\t6937:  0x88F2,\n\t6938:  0x8904,\n\t6939:  0x890C,\n\t6940:  0x890A,\n\t6941:  0x8913,\n\t6942:  0x8943,\n\t6943:  0x891E,\n\t6944:  0x8925,\n\t6945:  0x892A,\n\t6946:  0x892B,\n\t6947:  0x8941,\n\t6948:  0x8944,\n\t6949:  0x893B,\n\t6950:  0x8936,\n\t6951:  0x8938,\n\t6952:  0x894C,\n\t6953:  0x891D,\n\t6954:  0x8960,\n\t6955:  0x895E,\n\t6956:  0x8966,\n\t6957:  0x8964,\n\t6958:  0x896D,\n\t6959:  0x896A,\n\t6960:  0x896F,\n\t6961:  0x8974,\n\t6962:  0x8977,\n\t6963:  0x897E,\n\t6964:  0x8983,\n\t6965:  0x8988,\n\t6966:  0x898A,\n\t6967:  0x8993,\n\t6968:  0x8998,\n\t6969:  0x89A1,\n\t6970:  0x89A9,\n\t6971:  0x89A6,\n\t6972:  0x89AC,\n\t6973:  0x89AF,\n\t6974:  0x89B2,\n\t6975:  0x89BA,\n\t6976:  0x89BD,\n\t6977:  0x89BF,\n\t6978:  0x89C0,\n\t6979:  0x89DA,\n\t6980:  0x89DC,\n\t6981:  0x89DD,\n\t6982:  0x89E7,\n\t6983:  0x89F4,\n\t6984:  0x89F8,\n\t6985:  0x8A03,\n\t6986:  0x8A16,\n\t6987:  0x8A10,\n\t6988:  0x8A0C,\n\t6989:  0x8A1B,\n\t6990:  0x8A1D,\n\t6991:  0x8A25,\n\t6992:  0x8A36,\n\t6993:  0x8A41,\n\t6994:  0x8A5B,\n\t6995:  0x8A52,\n\t6996:  0x8A46,\n\t6997:  0x8A48,\n\t6998:  0x8A7C,\n\t6999:  0x8A6D,\n\t7000:  0x8A6C,\n\t7001:  0x8A62,\n\t7002:  0x8A85,\n\t7003:  0x8A82,\n\t7004:  0x8A84,\n\t7005:  0x8AA8,\n\t7006:  0x8AA1,\n\t7007:  0x8A91,\n\t7008:  0x8AA5,\n\t7009:  0x8AA6,\n\t7010:  0x8A9A,\n\t7011:  0x8AA3,\n\t7012:  0x8AC4,\n\t7013:  0x8ACD,\n\t7014:  0x8AC2,\n\t7015:  0x8ADA,\n\t7016:  0x8AEB,\n\t7017:  0x8AF3,\n\t7018:  0x8AE7,\n\t7019:  0x8AE4,\n\t7020:  0x8AF1,\n\t7021:  0x8B14,\n\t7022:  0x8AE0,\n\t7023:  0x8AE2,\n\t7024:  0x8AF7,\n\t7025:  0x8ADE,\n\t7026:  0x8ADB,\n\t7027:  0x8B0C,\n\t7028:  0x8B07,\n\t7029:  0x8B1A,\n\t7030:  0x8AE1,\n\t7031:  0x8B16,\n\t7032:  0x8B10,\n\t7033:  0x8B17,\n\t7034:  0x8B20,\n\t7035:  0x8B33,\n\t7036:  0x97AB,\n\t7037:  0x8B26,\n\t7038:  0x8B2B,\n\t7039:  0x8B3E,\n\t7040:  0x8B28,\n\t7041:  0x8B41,\n\t7042:  0x8B4C,\n\t7043:  0x8B4F,\n\t7044:  0x8B4E,\n\t7045:  0x8B49,\n\t7046:  0x8B56,\n\t7047:  0x8B5B,\n\t7048:  0x8B5A,\n\t7049:  0x8B6B,\n\t7050:  0x8B5F,\n\t7051:  0x8B6C,\n\t7052:  0x8B6F,\n\t7053:  0x8B74,\n\t7054:  0x8B7D,\n\t7055:  0x8B80,\n\t7056:  0x8B8C,\n\t7057:  0x8B8E,\n\t7058:  0x8B92,\n\t7059:  0x8B93,\n\t7060:  0x8B96,\n\t7061:  0x8B99,\n\t7062:  0x8B9A,\n\t7063:  0x8C3A,\n\t7064:  0x8C41,\n\t7065:  0x8C3F,\n\t7066:  0x8C48,\n\t7067:  0x8C4C,\n\t7068:  0x8C4E,\n\t7069:  0x8C50,\n\t7070:  0x8C55,\n\t7071:  0x8C62,\n\t7072:  0x8C6C,\n\t7073:  0x8C78,\n\t7074:  0x8C7A,\n\t7075:  0x8C82,\n\t7076:  0x8C89,\n\t7077:  0x8C85,\n\t7078:  0x8C8A,\n\t7079:  0x8C8D,\n\t7080:  0x8C8E,\n\t7081:  0x8C94,\n\t7082:  0x8C7C,\n\t7083:  0x8C98,\n\t7084:  0x621D,\n\t7085:  0x8CAD,\n\t7086:  0x8CAA,\n\t7087:  0x8CBD,\n\t7088:  0x8CB2,\n\t7089:  0x8CB3,\n\t7090:  0x8CAE,\n\t7091:  0x8CB6,\n\t7092:  0x8CC8,\n\t7093:  0x8CC1,\n\t7094:  0x8CE4,\n\t7095:  0x8CE3,\n\t7096:  0x8CDA,\n\t7097:  0x8CFD,\n\t7098:  0x8CFA,\n\t7099:  0x8CFB,\n\t7100:  0x8D04,\n\t7101:  0x8D05,\n\t7102:  0x8D0A,\n\t7103:  0x8D07,\n\t7104:  0x8D0F,\n\t7105:  0x8D0D,\n\t7106:  0x8D10,\n\t7107:  0x9F4E,\n\t7108:  0x8D13,\n\t7109:  0x8CCD,\n\t7110:  0x8D14,\n\t7111:  0x8D16,\n\t7112:  0x8D67,\n\t7113:  0x8D6D,\n\t7114:  0x8D71,\n\t7115:  0x8D73,\n\t7116:  0x8D81,\n\t7117:  0x8D99,\n\t7118:  0x8DC2,\n\t7119:  0x8DBE,\n\t7120:  0x8DBA,\n\t7121:  0x8DCF,\n\t7122:  0x8DDA,\n\t7123:  0x8DD6,\n\t7124:  0x8DCC,\n\t7125:  0x8DDB,\n\t7126:  0x8DCB,\n\t7127:  0x8DEA,\n\t7128:  0x8DEB,\n\t7129:  0x8DDF,\n\t7130:  0x8DE3,\n\t7131:  0x8DFC,\n\t7132:  0x8E08,\n\t7133:  0x8E09,\n\t7134:  0x8DFF,\n\t7135:  0x8E1D,\n\t7136:  0x8E1E,\n\t7137:  0x8E10,\n\t7138:  0x8E1F,\n\t7139:  0x8E42,\n\t7140:  0x8E35,\n\t7141:  0x8E30,\n\t7142:  0x8E34,\n\t7143:  0x8E4A,\n\t7144:  0x8E47,\n\t7145:  0x8E49,\n\t7146:  0x8E4C,\n\t7147:  0x8E50,\n\t7148:  0x8E48,\n\t7149:  0x8E59,\n\t7150:  0x8E64,\n\t7151:  0x8E60,\n\t7152:  0x8E2A,\n\t7153:  0x8E63,\n\t7154:  0x8E55,\n\t7155:  0x8E76,\n\t7156:  0x8E72,\n\t7157:  0x8E7C,\n\t7158:  0x8E81,\n\t7159:  0x8E87,\n\t7160:  0x8E85,\n\t7161:  0x8E84,\n\t7162:  0x8E8B,\n\t7163:  0x8E8A,\n\t7164:  0x8E93,\n\t7165:  0x8E91,\n\t7166:  0x8E94,\n\t7167:  0x8E99,\n\t7168:  0x8EAA,\n\t7169:  0x8EA1,\n\t7170:  0x8EAC,\n\t7171:  0x8EB0,\n\t7172:  0x8EC6,\n\t7173:  0x8EB1,\n\t7174:  0x8EBE,\n\t7175:  0x8EC5,\n\t7176:  0x8EC8,\n\t7177:  0x8ECB,\n\t7178:  0x8EDB,\n\t7179:  0x8EE3,\n\t7180:  0x8EFC,\n\t7181:  0x8EFB,\n\t7182:  0x8EEB,\n\t7183:  0x8EFE,\n\t7184:  0x8F0A,\n\t7185:  0x8F05,\n\t7186:  0x8F15,\n\t7187:  0x8F12,\n\t7188:  0x8F19,\n\t7189:  0x8F13,\n\t7190:  0x8F1C,\n\t7191:  0x8F1F,\n\t7192:  0x8F1B,\n\t7193:  0x8F0C,\n\t7194:  0x8F26,\n\t7195:  0x8F33,\n\t7196:  0x8F3B,\n\t7197:  0x8F39,\n\t7198:  0x8F45,\n\t7199:  0x8F42,\n\t7200:  0x8F3E,\n\t7201:  0x8F4C,\n\t7202:  0x8F49,\n\t7203:  0x8F46,\n\t7204:  0x8F4E,\n\t7205:  0x8F57,\n\t7206:  0x8F5C,\n\t7207:  0x8F62,\n\t7208:  0x8F63,\n\t7209:  0x8F64,\n\t7210:  0x8F9C,\n\t7211:  0x8F9F,\n\t7212:  0x8FA3,\n\t7213:  0x8FAD,\n\t7214:  0x8FAF,\n\t7215:  0x8FB7,\n\t7216:  0x8FDA,\n\t7217:  0x8FE5,\n\t7218:  0x8FE2,\n\t7219:  0x8FEA,\n\t7220:  0x8FEF,\n\t7221:  0x9087,\n\t7222:  0x8FF4,\n\t7223:  0x9005,\n\t7224:  0x8FF9,\n\t7225:  0x8FFA,\n\t7226:  0x9011,\n\t7227:  0x9015,\n\t7228:  0x9021,\n\t7229:  0x900D,\n\t7230:  0x901E,\n\t7231:  0x9016,\n\t7232:  0x900B,\n\t7233:  0x9027,\n\t7234:  0x9036,\n\t7235:  0x9035,\n\t7236:  0x9039,\n\t7237:  0x8FF8,\n\t7238:  0x904F,\n\t7239:  0x9050,\n\t7240:  0x9051,\n\t7241:  0x9052,\n\t7242:  0x900E,\n\t7243:  0x9049,\n\t7244:  0x903E,\n\t7245:  0x9056,\n\t7246:  0x9058,\n\t7247:  0x905E,\n\t7248:  0x9068,\n\t7249:  0x906F,\n\t7250:  0x9076,\n\t7251:  0x96A8,\n\t7252:  0x9072,\n\t7253:  0x9082,\n\t7254:  0x907D,\n\t7255:  0x9081,\n\t7256:  0x9080,\n\t7257:  0x908A,\n\t7258:  0x9089,\n\t7259:  0x908F,\n\t7260:  0x90A8,\n\t7261:  0x90AF,\n\t7262:  0x90B1,\n\t7263:  0x90B5,\n\t7264:  0x90E2,\n\t7265:  0x90E4,\n\t7266:  0x6248,\n\t7267:  0x90DB,\n\t7268:  0x9102,\n\t7269:  0x9112,\n\t7270:  0x9119,\n\t7271:  0x9132,\n\t7272:  0x9130,\n\t7273:  0x914A,\n\t7274:  0x9156,\n\t7275:  0x9158,\n\t7276:  0x9163,\n\t7277:  0x9165,\n\t7278:  0x9169,\n\t7279:  0x9173,\n\t7280:  0x9172,\n\t7281:  0x918B,\n\t7282:  0x9189,\n\t7283:  0x9182,\n\t7284:  0x91A2,\n\t7285:  0x91AB,\n\t7286:  0x91AF,\n\t7287:  0x91AA,\n\t7288:  0x91B5,\n\t7289:  0x91B4,\n\t7290:  0x91BA,\n\t7291:  0x91C0,\n\t7292:  0x91C1,\n\t7293:  0x91C9,\n\t7294:  0x91CB,\n\t7295:  0x91D0,\n\t7296:  0x91D6,\n\t7297:  0x91DF,\n\t7298:  0x91E1,\n\t7299:  0x91DB,\n\t7300:  0x91FC,\n\t7301:  0x91F5,\n\t7302:  0x91F6,\n\t7303:  0x921E,\n\t7304:  0x91FF,\n\t7305:  0x9214,\n\t7306:  0x922C,\n\t7307:  0x9215,\n\t7308:  0x9211,\n\t7309:  0x925E,\n\t7310:  0x9257,\n\t7311:  0x9245,\n\t7312:  0x9249,\n\t7313:  0x9264,\n\t7314:  0x9248,\n\t7315:  0x9295,\n\t7316:  0x923F,\n\t7317:  0x924B,\n\t7318:  0x9250,\n\t7319:  0x929C,\n\t7320:  0x9296,\n\t7321:  0x9293,\n\t7322:  0x929B,\n\t7323:  0x925A,\n\t7324:  0x92CF,\n\t7325:  0x92B9,\n\t7326:  0x92B7,\n\t7327:  0x92E9,\n\t7328:  0x930F,\n\t7329:  0x92FA,\n\t7330:  0x9344,\n\t7331:  0x932E,\n\t7332:  0x9319,\n\t7333:  0x9322,\n\t7334:  0x931A,\n\t7335:  0x9323,\n\t7336:  0x933A,\n\t7337:  0x9335,\n\t7338:  0x933B,\n\t7339:  0x935C,\n\t7340:  0x9360,\n\t7341:  0x937C,\n\t7342:  0x936E,\n\t7343:  0x9356,\n\t7344:  0x93B0,\n\t7345:  0x93AC,\n\t7346:  0x93AD,\n\t7347:  0x9394,\n\t7348:  0x93B9,\n\t7349:  0x93D6,\n\t7350:  0x93D7,\n\t7351:  0x93E8,\n\t7352:  0x93E5,\n\t7353:  0x93D8,\n\t7354:  0x93C3,\n\t7355:  0x93DD,\n\t7356:  0x93D0,\n\t7357:  0x93C8,\n\t7358:  0x93E4,\n\t7359:  0x941A,\n\t7360:  0x9414,\n\t7361:  0x9413,\n\t7362:  0x9403,\n\t7363:  0x9407,\n\t7364:  0x9410,\n\t7365:  0x9436,\n\t7366:  0x942B,\n\t7367:  0x9435,\n\t7368:  0x9421,\n\t7369:  0x943A,\n\t7370:  0x9441,\n\t7371:  0x9452,\n\t7372:  0x9444,\n\t7373:  0x945B,\n\t7374:  0x9460,\n\t7375:  0x9462,\n\t7376:  0x945E,\n\t7377:  0x946A,\n\t7378:  0x9229,\n\t7379:  0x9470,\n\t7380:  0x9475,\n\t7381:  0x9477,\n\t7382:  0x947D,\n\t7383:  0x945A,\n\t7384:  0x947C,\n\t7385:  0x947E,\n\t7386:  0x9481,\n\t7387:  0x947F,\n\t7388:  0x9582,\n\t7389:  0x9587,\n\t7390:  0x958A,\n\t7391:  0x9594,\n\t7392:  0x9596,\n\t7393:  0x9598,\n\t7394:  0x9599,\n\t7395:  0x95A0,\n\t7396:  0x95A8,\n\t7397:  0x95A7,\n\t7398:  0x95AD,\n\t7399:  0x95BC,\n\t7400:  0x95BB,\n\t7401:  0x95B9,\n\t7402:  0x95BE,\n\t7403:  0x95CA,\n\t7404:  0x6FF6,\n\t7405:  0x95C3,\n\t7406:  0x95CD,\n\t7407:  0x95CC,\n\t7408:  0x95D5,\n\t7409:  0x95D4,\n\t7410:  0x95D6,\n\t7411:  0x95DC,\n\t7412:  0x95E1,\n\t7413:  0x95E5,\n\t7414:  0x95E2,\n\t7415:  0x9621,\n\t7416:  0x9628,\n\t7417:  0x962E,\n\t7418:  0x962F,\n\t7419:  0x9642,\n\t7420:  0x964C,\n\t7421:  0x964F,\n\t7422:  0x964B,\n\t7423:  0x9677,\n\t7424:  0x965C,\n\t7425:  0x965E,\n\t7426:  0x965D,\n\t7427:  0x965F,\n\t7428:  0x9666,\n\t7429:  0x9672,\n\t7430:  0x966C,\n\t7431:  0x968D,\n\t7432:  0x9698,\n\t7433:  0x9695,\n\t7434:  0x9697,\n\t7435:  0x96AA,\n\t7436:  0x96A7,\n\t7437:  0x96B1,\n\t7438:  0x96B2,\n\t7439:  0x96B0,\n\t7440:  0x96B4,\n\t7441:  0x96B6,\n\t7442:  0x96B8,\n\t7443:  0x96B9,\n\t7444:  0x96CE,\n\t7445:  0x96CB,\n\t7446:  0x96C9,\n\t7447:  0x96CD,\n\t7448:  0x894D,\n\t7449:  0x96DC,\n\t7450:  0x970D,\n\t7451:  0x96D5,\n\t7452:  0x96F9,\n\t7453:  0x9704,\n\t7454:  0x9706,\n\t7455:  0x9708,\n\t7456:  0x9713,\n\t7457:  0x970E,\n\t7458:  0x9711,\n\t7459:  0x970F,\n\t7460:  0x9716,\n\t7461:  0x9719,\n\t7462:  0x9724,\n\t7463:  0x972A,\n\t7464:  0x9730,\n\t7465:  0x9739,\n\t7466:  0x973D,\n\t7467:  0x973E,\n\t7468:  0x9744,\n\t7469:  0x9746,\n\t7470:  0x9748,\n\t7471:  0x9742,\n\t7472:  0x9749,\n\t7473:  0x975C,\n\t7474:  0x9760,\n\t7475:  0x9764,\n\t7476:  0x9766,\n\t7477:  0x9768,\n\t7478:  0x52D2,\n\t7479:  0x976B,\n\t7480:  0x9771,\n\t7481:  0x9779,\n\t7482:  0x9785,\n\t7483:  0x977C,\n\t7484:  0x9781,\n\t7485:  0x977A,\n\t7486:  0x9786,\n\t7487:  0x978B,\n\t7488:  0x978F,\n\t7489:  0x9790,\n\t7490:  0x979C,\n\t7491:  0x97A8,\n\t7492:  0x97A6,\n\t7493:  0x97A3,\n\t7494:  0x97B3,\n\t7495:  0x97B4,\n\t7496:  0x97C3,\n\t7497:  0x97C6,\n\t7498:  0x97C8,\n\t7499:  0x97CB,\n\t7500:  0x97DC,\n\t7501:  0x97ED,\n\t7502:  0x9F4F,\n\t7503:  0x97F2,\n\t7504:  0x7ADF,\n\t7505:  0x97F6,\n\t7506:  0x97F5,\n\t7507:  0x980F,\n\t7508:  0x980C,\n\t7509:  0x9838,\n\t7510:  0x9824,\n\t7511:  0x9821,\n\t7512:  0x9837,\n\t7513:  0x983D,\n\t7514:  0x9846,\n\t7515:  0x984F,\n\t7516:  0x984B,\n\t7517:  0x986B,\n\t7518:  0x986F,\n\t7519:  0x9870,\n\t7520:  0x9871,\n\t7521:  0x9874,\n\t7522:  0x9873,\n\t7523:  0x98AA,\n\t7524:  0x98AF,\n\t7525:  0x98B1,\n\t7526:  0x98B6,\n\t7527:  0x98C4,\n\t7528:  0x98C3,\n\t7529:  0x98C6,\n\t7530:  0x98E9,\n\t7531:  0x98EB,\n\t7532:  0x9903,\n\t7533:  0x9909,\n\t7534:  0x9912,\n\t7535:  0x9914,\n\t7536:  0x9918,\n\t7537:  0x9921,\n\t7538:  0x991D,\n\t7539:  0x991E,\n\t7540:  0x9924,\n\t7541:  0x9920,\n\t7542:  0x992C,\n\t7543:  0x992E,\n\t7544:  0x993D,\n\t7545:  0x993E,\n\t7546:  0x9942,\n\t7547:  0x9949,\n\t7548:  0x9945,\n\t7549:  0x9950,\n\t7550:  0x994B,\n\t7551:  0x9951,\n\t7552:  0x9952,\n\t7553:  0x994C,\n\t7554:  0x9955,\n\t7555:  0x9997,\n\t7556:  0x9998,\n\t7557:  0x99A5,\n\t7558:  0x99AD,\n\t7559:  0x99AE,\n\t7560:  0x99BC,\n\t7561:  0x99DF,\n\t7562:  0x99DB,\n\t7563:  0x99DD,\n\t7564:  0x99D8,\n\t7565:  0x99D1,\n\t7566:  0x99ED,\n\t7567:  0x99EE,\n\t7568:  0x99F1,\n\t7569:  0x99F2,\n\t7570:  0x99FB,\n\t7571:  0x99F8,\n\t7572:  0x9A01,\n\t7573:  0x9A0F,\n\t7574:  0x9A05,\n\t7575:  0x99E2,\n\t7576:  0x9A19,\n\t7577:  0x9A2B,\n\t7578:  0x9A37,\n\t7579:  0x9A45,\n\t7580:  0x9A42,\n\t7581:  0x9A40,\n\t7582:  0x9A43,\n\t7583:  0x9A3E,\n\t7584:  0x9A55,\n\t7585:  0x9A4D,\n\t7586:  0x9A5B,\n\t7587:  0x9A57,\n\t7588:  0x9A5F,\n\t7589:  0x9A62,\n\t7590:  0x9A65,\n\t7591:  0x9A64,\n\t7592:  0x9A69,\n\t7593:  0x9A6B,\n\t7594:  0x9A6A,\n\t7595:  0x9AAD,\n\t7596:  0x9AB0,\n\t7597:  0x9ABC,\n\t7598:  0x9AC0,\n\t7599:  0x9ACF,\n\t7600:  0x9AD1,\n\t7601:  0x9AD3,\n\t7602:  0x9AD4,\n\t7603:  0x9ADE,\n\t7604:  0x9ADF,\n\t7605:  0x9AE2,\n\t7606:  0x9AE3,\n\t7607:  0x9AE6,\n\t7608:  0x9AEF,\n\t7609:  0x9AEB,\n\t7610:  0x9AEE,\n\t7611:  0x9AF4,\n\t7612:  0x9AF1,\n\t7613:  0x9AF7,\n\t7614:  0x9AFB,\n\t7615:  0x9B06,\n\t7616:  0x9B18,\n\t7617:  0x9B1A,\n\t7618:  0x9B1F,\n\t7619:  0x9B22,\n\t7620:  0x9B23,\n\t7621:  0x9B25,\n\t7622:  0x9B27,\n\t7623:  0x9B28,\n\t7624:  0x9B29,\n\t7625:  0x9B2A,\n\t7626:  0x9B2E,\n\t7627:  0x9B2F,\n\t7628:  0x9B32,\n\t7629:  0x9B44,\n\t7630:  0x9B43,\n\t7631:  0x9B4F,\n\t7632:  0x9B4D,\n\t7633:  0x9B4E,\n\t7634:  0x9B51,\n\t7635:  0x9B58,\n\t7636:  0x9B74,\n\t7637:  0x9B93,\n\t7638:  0x9B83,\n\t7639:  0x9B91,\n\t7640:  0x9B96,\n\t7641:  0x9B97,\n\t7642:  0x9B9F,\n\t7643:  0x9BA0,\n\t7644:  0x9BA8,\n\t7645:  0x9BB4,\n\t7646:  0x9BC0,\n\t7647:  0x9BCA,\n\t7648:  0x9BB9,\n\t7649:  0x9BC6,\n\t7650:  0x9BCF,\n\t7651:  0x9BD1,\n\t7652:  0x9BD2,\n\t7653:  0x9BE3,\n\t7654:  0x9BE2,\n\t7655:  0x9BE4,\n\t7656:  0x9BD4,\n\t7657:  0x9BE1,\n\t7658:  0x9C3A,\n\t7659:  0x9BF2,\n\t7660:  0x9BF1,\n\t7661:  0x9BF0,\n\t7662:  0x9C15,\n\t7663:  0x9C14,\n\t7664:  0x9C09,\n\t7665:  0x9C13,\n\t7666:  0x9C0C,\n\t7667:  0x9C06,\n\t7668:  0x9C08,\n\t7669:  0x9C12,\n\t7670:  0x9C0A,\n\t7671:  0x9C04,\n\t7672:  0x9C2E,\n\t7673:  0x9C1B,\n\t7674:  0x9C25,\n\t7675:  0x9C24,\n\t7676:  0x9C21,\n\t7677:  0x9C30,\n\t7678:  0x9C47,\n\t7679:  0x9C32,\n\t7680:  0x9C46,\n\t7681:  0x9C3E,\n\t7682:  0x9C5A,\n\t7683:  0x9C60,\n\t7684:  0x9C67,\n\t7685:  0x9C76,\n\t7686:  0x9C78,\n\t7687:  0x9CE7,\n\t7688:  0x9CEC,\n\t7689:  0x9CF0,\n\t7690:  0x9D09,\n\t7691:  0x9D08,\n\t7692:  0x9CEB,\n\t7693:  0x9D03,\n\t7694:  0x9D06,\n\t7695:  0x9D2A,\n\t7696:  0x9D26,\n\t7697:  0x9DAF,\n\t7698:  0x9D23,\n\t7699:  0x9D1F,\n\t7700:  0x9D44,\n\t7701:  0x9D15,\n\t7702:  0x9D12,\n\t7703:  0x9D41,\n\t7704:  0x9D3F,\n\t7705:  0x9D3E,\n\t7706:  0x9D46,\n\t7707:  0x9D48,\n\t7708:  0x9D5D,\n\t7709:  0x9D5E,\n\t7710:  0x9D64,\n\t7711:  0x9D51,\n\t7712:  0x9D50,\n\t7713:  0x9D59,\n\t7714:  0x9D72,\n\t7715:  0x9D89,\n\t7716:  0x9D87,\n\t7717:  0x9DAB,\n\t7718:  0x9D6F,\n\t7719:  0x9D7A,\n\t7720:  0x9D9A,\n\t7721:  0x9DA4,\n\t7722:  0x9DA9,\n\t7723:  0x9DB2,\n\t7724:  0x9DC4,\n\t7725:  0x9DC1,\n\t7726:  0x9DBB,\n\t7727:  0x9DB8,\n\t7728:  0x9DBA,\n\t7729:  0x9DC6,\n\t7730:  0x9DCF,\n\t7731:  0x9DC2,\n\t7732:  0x9DD9,\n\t7733:  0x9DD3,\n\t7734:  0x9DF8,\n\t7735:  0x9DE6,\n\t7736:  0x9DED,\n\t7737:  0x9DEF,\n\t7738:  0x9DFD,\n\t7739:  0x9E1A,\n\t7740:  0x9E1B,\n\t7741:  0x9E1E,\n\t7742:  0x9E75,\n\t7743:  0x9E79,\n\t7744:  0x9E7D,\n\t7745:  0x9E81,\n\t7746:  0x9E88,\n\t7747:  0x9E8B,\n\t7748:  0x9E8C,\n\t7749:  0x9E92,\n\t7750:  0x9E95,\n\t7751:  0x9E91,\n\t7752:  0x9E9D,\n\t7753:  0x9EA5,\n\t7754:  0x9EA9,\n\t7755:  0x9EB8,\n\t7756:  0x9EAA,\n\t7757:  0x9EAD,\n\t7758:  0x9761,\n\t7759:  0x9ECC,\n\t7760:  0x9ECE,\n\t7761:  0x9ECF,\n\t7762:  0x9ED0,\n\t7763:  0x9ED4,\n\t7764:  0x9EDC,\n\t7765:  0x9EDE,\n\t7766:  0x9EDD,\n\t7767:  0x9EE0,\n\t7768:  0x9EE5,\n\t7769:  0x9EE8,\n\t7770:  0x9EEF,\n\t7771:  0x9EF4,\n\t7772:  0x9EF6,\n\t7773:  0x9EF7,\n\t7774:  0x9EF9,\n\t7775:  0x9EFB,\n\t7776:  0x9EFC,\n\t7777:  0x9EFD,\n\t7778:  0x9F07,\n\t7779:  0x9F08,\n\t7780:  0x76B7,\n\t7781:  0x9F15,\n\t7782:  0x9F21,\n\t7783:  0x9F2C,\n\t7784:  0x9F3E,\n\t7785:  0x9F4A,\n\t7786:  0x9F52,\n\t7787:  0x9F54,\n\t7788:  0x9F63,\n\t7789:  0x9F5F,\n\t7790:  0x9F60,\n\t7791:  0x9F61,\n\t7792:  0x9F66,\n\t7793:  0x9F67,\n\t7794:  0x9F6C,\n\t7795:  0x9F6A,\n\t7796:  0x9F77,\n\t7797:  0x9F72,\n\t7798:  0x9F76,\n\t7799:  0x9F95,\n\t7800:  0x9F9C,\n\t7801:  0x9FA0,\n\t7802:  0x582F,\n\t7803:  0x69C7,\n\t7804:  0x9059,\n\t7805:  0x7464,\n\t7806:  0x51DC,\n\t7807:  0x7199,\n\t8272:  0x7E8A,\n\t8273:  0x891C,\n\t8274:  0x9348,\n\t8275:  0x9288,\n\t8276:  0x84DC,\n\t8277:  0x4FC9,\n\t8278:  0x70BB,\n\t8279:  0x6631,\n\t8280:  0x68C8,\n\t8281:  0x92F9,\n\t8282:  0x66FB,\n\t8283:  0x5F45,\n\t8284:  0x4E28,\n\t8285:  0x4EE1,\n\t8286:  0x4EFC,\n\t8287:  0x4F00,\n\t8288:  0x4F03,\n\t8289:  0x4F39,\n\t8290:  0x4F56,\n\t8291:  0x4F92,\n\t8292:  0x4F8A,\n\t8293:  0x4F9A,\n\t8294:  0x4F94,\n\t8295:  0x4FCD,\n\t8296:  0x5040,\n\t8297:  0x5022,\n\t8298:  0x4FFF,\n\t8299:  0x501E,\n\t8300:  0x5046,\n\t8301:  0x5070,\n\t8302:  0x5042,\n\t8303:  0x5094,\n\t8304:  0x50F4,\n\t8305:  0x50D8,\n\t8306:  0x514A,\n\t8307:  0x5164,\n\t8308:  0x519D,\n\t8309:  0x51BE,\n\t8310:  0x51EC,\n\t8311:  0x5215,\n\t8312:  0x529C,\n\t8313:  0x52A6,\n\t8314:  0x52C0,\n\t8315:  0x52DB,\n\t8316:  0x5300,\n\t8317:  0x5307,\n\t8318:  0x5324,\n\t8319:  0x5372,\n\t8320:  0x5393,\n\t8321:  0x53B2,\n\t8322:  0x53DD,\n\t8323:  0xFA0E,\n\t8324:  0x549C,\n\t8325:  0x548A,\n\t8326:  0x54A9,\n\t8327:  0x54FF,\n\t8328:  0x5586,\n\t8329:  0x5759,\n\t8330:  0x5765,\n\t8331:  0x57AC,\n\t8332:  0x57C8,\n\t8333:  0x57C7,\n\t8334:  0xFA0F,\n\t8335:  0xFA10,\n\t8336:  0x589E,\n\t8337:  0x58B2,\n\t8338:  0x590B,\n\t8339:  0x5953,\n\t8340:  0x595B,\n\t8341:  0x595D,\n\t8342:  0x5963,\n\t8343:  0x59A4,\n\t8344:  0x59BA,\n\t8345:  0x5B56,\n\t8346:  0x5BC0,\n\t8347:  0x752F,\n\t8348:  0x5BD8,\n\t8349:  0x5BEC,\n\t8350:  0x5C1E,\n\t8351:  0x5CA6,\n\t8352:  0x5CBA,\n\t8353:  0x5CF5,\n\t8354:  0x5D27,\n\t8355:  0x5D53,\n\t8356:  0xFA11,\n\t8357:  0x5D42,\n\t8358:  0x5D6D,\n\t8359:  0x5DB8,\n\t8360:  0x5DB9,\n\t8361:  0x5DD0,\n\t8362:  0x5F21,\n\t8363:  0x5F34,\n\t8364:  0x5F67,\n\t8365:  0x5FB7,\n\t8366:  0x5FDE,\n\t8367:  0x605D,\n\t8368:  0x6085,\n\t8369:  0x608A,\n\t8370:  0x60DE,\n\t8371:  0x60D5,\n\t8372:  0x6120,\n\t8373:  0x60F2,\n\t8374:  0x6111,\n\t8375:  0x6137,\n\t8376:  0x6130,\n\t8377:  0x6198,\n\t8378:  0x6213,\n\t8379:  0x62A6,\n\t8380:  0x63F5,\n\t8381:  0x6460,\n\t8382:  0x649D,\n\t8383:  0x64CE,\n\t8384:  0x654E,\n\t8385:  0x6600,\n\t8386:  0x6615,\n\t8387:  0x663B,\n\t8388:  0x6609,\n\t8389:  0x662E,\n\t8390:  0x661E,\n\t8391:  0x6624,\n\t8392:  0x6665,\n\t8393:  0x6657,\n\t8394:  0x6659,\n\t8395:  0xFA12,\n\t8396:  0x6673,\n\t8397:  0x6699,\n\t8398:  0x66A0,\n\t8399:  0x66B2,\n\t8400:  0x66BF,\n\t8401:  0x66FA,\n\t8402:  0x670E,\n\t8403:  0xF929,\n\t8404:  0x6766,\n\t8405:  0x67BB,\n\t8406:  0x6852,\n\t8407:  0x67C0,\n\t8408:  0x6801,\n\t8409:  0x6844,\n\t8410:  0x68CF,\n\t8411:  0xFA13,\n\t8412:  0x6968,\n\t8413:  0xFA14,\n\t8414:  0x6998,\n\t8415:  0x69E2,\n\t8416:  0x6A30,\n\t8417:  0x6A6B,\n\t8418:  0x6A46,\n\t8419:  0x6A73,\n\t8420:  0x6A7E,\n\t8421:  0x6AE2,\n\t8422:  0x6AE4,\n\t8423:  0x6BD6,\n\t8424:  0x6C3F,\n\t8425:  0x6C5C,\n\t8426:  0x6C86,\n\t8427:  0x6C6F,\n\t8428:  0x6CDA,\n\t8429:  0x6D04,\n\t8430:  0x6D87,\n\t8431:  0x6D6F,\n\t8432:  0x6D96,\n\t8433:  0x6DAC,\n\t8434:  0x6DCF,\n\t8435:  0x6DF8,\n\t8436:  0x6DF2,\n\t8437:  0x6DFC,\n\t8438:  0x6E39,\n\t8439:  0x6E5C,\n\t8440:  0x6E27,\n\t8441:  0x6E3C,\n\t8442:  0x6EBF,\n\t8443:  0x6F88,\n\t8444:  0x6FB5,\n\t8445:  0x6FF5,\n\t8446:  0x7005,\n\t8447:  0x7007,\n\t8448:  0x7028,\n\t8449:  0x7085,\n\t8450:  0x70AB,\n\t8451:  0x710F,\n\t8452:  0x7104,\n\t8453:  0x715C,\n\t8454:  0x7146,\n\t8455:  0x7147,\n\t8456:  0xFA15,\n\t8457:  0x71C1,\n\t8458:  0x71FE,\n\t8459:  0x72B1,\n\t8460:  0x72BE,\n\t8461:  0x7324,\n\t8462:  0xFA16,\n\t8463:  0x7377,\n\t8464:  0x73BD,\n\t8465:  0x73C9,\n\t8466:  0x73D6,\n\t8467:  0x73E3,\n\t8468:  0x73D2,\n\t8469:  0x7407,\n\t8470:  0x73F5,\n\t8471:  0x7426,\n\t8472:  0x742A,\n\t8473:  0x7429,\n\t8474:  0x742E,\n\t8475:  0x7462,\n\t8476:  0x7489,\n\t8477:  0x749F,\n\t8478:  0x7501,\n\t8479:  0x756F,\n\t8480:  0x7682,\n\t8481:  0x769C,\n\t8482:  0x769E,\n\t8483:  0x769B,\n\t8484:  0x76A6,\n\t8485:  0xFA17,\n\t8486:  0x7746,\n\t8487:  0x52AF,\n\t8488:  0x7821,\n\t8489:  0x784E,\n\t8490:  0x7864,\n\t8491:  0x787A,\n\t8492:  0x7930,\n\t8493:  0xFA18,\n\t8494:  0xFA19,\n\t8495:  0xFA1A,\n\t8496:  0x7994,\n\t8497:  0xFA1B,\n\t8498:  0x799B,\n\t8499:  0x7AD1,\n\t8500:  0x7AE7,\n\t8501:  0xFA1C,\n\t8502:  0x7AEB,\n\t8503:  0x7B9E,\n\t8504:  0xFA1D,\n\t8505:  0x7D48,\n\t8506:  0x7D5C,\n\t8507:  0x7DB7,\n\t8508:  0x7DA0,\n\t8509:  0x7DD6,\n\t8510:  0x7E52,\n\t8511:  0x7F47,\n\t8512:  0x7FA1,\n\t8513:  0xFA1E,\n\t8514:  0x8301,\n\t8515:  0x8362,\n\t8516:  0x837F,\n\t8517:  0x83C7,\n\t8518:  0x83F6,\n\t8519:  0x8448,\n\t8520:  0x84B4,\n\t8521:  0x8553,\n\t8522:  0x8559,\n\t8523:  0x856B,\n\t8524:  0xFA1F,\n\t8525:  0x85B0,\n\t8526:  0xFA20,\n\t8527:  0xFA21,\n\t8528:  0x8807,\n\t8529:  0x88F5,\n\t8530:  0x8A12,\n\t8531:  0x8A37,\n\t8532:  0x8A79,\n\t8533:  0x8AA7,\n\t8534:  0x8ABE,\n\t8535:  0x8ADF,\n\t8536:  0xFA22,\n\t8537:  0x8AF6,\n\t8538:  0x8B53,\n\t8539:  0x8B7F,\n\t8540:  0x8CF0,\n\t8541:  0x8CF4,\n\t8542:  0x8D12,\n\t8543:  0x8D76,\n\t8544:  0xFA23,\n\t8545:  0x8ECF,\n\t8546:  0xFA24,\n\t8547:  0xFA25,\n\t8548:  0x9067,\n\t8549:  0x90DE,\n\t8550:  0xFA26,\n\t8551:  0x9115,\n\t8552:  0x9127,\n\t8553:  0x91DA,\n\t8554:  0x91D7,\n\t8555:  0x91DE,\n\t8556:  0x91ED,\n\t8557:  0x91EE,\n\t8558:  0x91E4,\n\t8559:  0x91E5,\n\t8560:  0x9206,\n\t8561:  0x9210,\n\t8562:  0x920A,\n\t8563:  0x923A,\n\t8564:  0x9240,\n\t8565:  0x923C,\n\t8566:  0x924E,\n\t8567:  0x9259,\n\t8568:  0x9251,\n\t8569:  0x9239,\n\t8570:  0x9267,\n\t8571:  0x92A7,\n\t8572:  0x9277,\n\t8573:  0x9278,\n\t8574:  0x92E7,\n\t8575:  0x92D7,\n\t8576:  0x92D9,\n\t8577:  0x92D0,\n\t8578:  0xFA27,\n\t8579:  0x92D5,\n\t8580:  0x92E0,\n\t8581:  0x92D3,\n\t8582:  0x9325,\n\t8583:  0x9321,\n\t8584:  0x92FB,\n\t8585:  0xFA28,\n\t8586:  0x931E,\n\t8587:  0x92FF,\n\t8588:  0x931D,\n\t8589:  0x9302,\n\t8590:  0x9370,\n\t8591:  0x9357,\n\t8592:  0x93A4,\n\t8593:  0x93C6,\n\t8594:  0x93DE,\n\t8595:  0x93F8,\n\t8596:  0x9431,\n\t8597:  0x9445,\n\t8598:  0x9448,\n\t8599:  0x9592,\n\t8600:  0xF9DC,\n\t8601:  0xFA29,\n\t8602:  0x969D,\n\t8603:  0x96AF,\n\t8604:  0x9733,\n\t8605:  0x973B,\n\t8606:  0x9743,\n\t8607:  0x974D,\n\t8608:  0x974F,\n\t8609:  0x9751,\n\t8610:  0x9755,\n\t8611:  0x9857,\n\t8612:  0x9865,\n\t8613:  0xFA2A,\n\t8614:  0xFA2B,\n\t8615:  0x9927,\n\t8616:  0xFA2C,\n\t8617:  0x999E,\n\t8618:  0x9A4E,\n\t8619:  0x9AD9,\n\t8620:  0x9ADC,\n\t8621:  0x9B75,\n\t8622:  0x9B72,\n\t8623:  0x9B8F,\n\t8624:  0x9BB1,\n\t8625:  0x9BBB,\n\t8626:  0x9C00,\n\t8627:  0x9D70,\n\t8628:  0x9D6B,\n\t8629:  0xFA2D,\n\t8630:  0x9E19,\n\t8631:  0x9ED1,\n\t8634:  0x2170,\n\t8635:  0x2171,\n\t8636:  0x2172,\n\t8637:  0x2173,\n\t8638:  0x2174,\n\t8639:  0x2175,\n\t8640:  0x2176,\n\t8641:  0x2177,\n\t8642:  0x2178,\n\t8643:  0x2179,\n\t8644:  0xFFE2,\n\t8645:  0xFFE4,\n\t8646:  0xFF07,\n\t8647:  0xFF02,\n\t10716: 0x2170,\n\t10717: 0x2171,\n\t10718: 0x2172,\n\t10719: 0x2173,\n\t10720: 0x2174,\n\t10721: 0x2175,\n\t10722: 0x2176,\n\t10723: 0x2177,\n\t10724: 0x2178,\n\t10725: 0x2179,\n\t10726: 0x2160,\n\t10727: 0x2161,\n\t10728: 0x2162,\n\t10729: 0x2163,\n\t10730: 0x2164,\n\t10731: 0x2165,\n\t10732: 0x2166,\n\t10733: 0x2167,\n\t10734: 0x2168,\n\t10735: 0x2169,\n\t10736: 0xFFE2,\n\t10737: 0xFFE4,\n\t10738: 0xFF07,\n\t10739: 0xFF02,\n\t10740: 0x3231,\n\t10741: 0x2116,\n\t10742: 0x2121,\n\t10743: 0x2235,\n\t10744: 0x7E8A,\n\t10745: 0x891C,\n\t10746: 0x9348,\n\t10747: 0x9288,\n\t10748: 0x84DC,\n\t10749: 0x4FC9,\n\t10750: 0x70BB,\n\t10751: 0x6631,\n\t10752: 0x68C8,\n\t10753: 0x92F9,\n\t10754: 0x66FB,\n\t10755: 0x5F45,\n\t10756: 0x4E28,\n\t10757: 0x4EE1,\n\t10758: 0x4EFC,\n\t10759: 0x4F00,\n\t10760: 0x4F03,\n\t10761: 0x4F39,\n\t10762: 0x4F56,\n\t10763: 0x4F92,\n\t10764: 0x4F8A,\n\t10765: 0x4F9A,\n\t10766: 0x4F94,\n\t10767: 0x4FCD,\n\t10768: 0x5040,\n\t10769: 0x5022,\n\t10770: 0x4FFF,\n\t10771: 0x501E,\n\t10772: 0x5046,\n\t10773: 0x5070,\n\t10774: 0x5042,\n\t10775: 0x5094,\n\t10776: 0x50F4,\n\t10777: 0x50D8,\n\t10778: 0x514A,\n\t10779: 0x5164,\n\t10780: 0x519D,\n\t10781: 0x51BE,\n\t10782: 0x51EC,\n\t10783: 0x5215,\n\t10784: 0x529C,\n\t10785: 0x52A6,\n\t10786: 0x52C0,\n\t10787: 0x52DB,\n\t10788: 0x5300,\n\t10789: 0x5307,\n\t10790: 0x5324,\n\t10791: 0x5372,\n\t10792: 0x5393,\n\t10793: 0x53B2,\n\t10794: 0x53DD,\n\t10795: 0xFA0E,\n\t10796: 0x549C,\n\t10797: 0x548A,\n\t10798: 0x54A9,\n\t10799: 0x54FF,\n\t10800: 0x5586,\n\t10801: 0x5759,\n\t10802: 0x5765,\n\t10803: 0x57AC,\n\t10804: 0x57C8,\n\t10805: 0x57C7,\n\t10806: 0xFA0F,\n\t10807: 0xFA10,\n\t10808: 0x589E,\n\t10809: 0x58B2,\n\t10810: 0x590B,\n\t10811: 0x5953,\n\t10812: 0x595B,\n\t10813: 0x595D,\n\t10814: 0x5963,\n\t10815: 0x59A4,\n\t10816: 0x59BA,\n\t10817: 0x5B56,\n\t10818: 0x5BC0,\n\t10819: 0x752F,\n\t10820: 0x5BD8,\n\t10821: 0x5BEC,\n\t10822: 0x5C1E,\n\t10823: 0x5CA6,\n\t10824: 0x5CBA,\n\t10825: 0x5CF5,\n\t10826: 0x5D27,\n\t10827: 0x5D53,\n\t10828: 0xFA11,\n\t10829: 0x5D42,\n\t10830: 0x5D6D,\n\t10831: 0x5DB8,\n\t10832: 0x5DB9,\n\t10833: 0x5DD0,\n\t10834: 0x5F21,\n\t10835: 0x5F34,\n\t10836: 0x5F67,\n\t10837: 0x5FB7,\n\t10838: 0x5FDE,\n\t10839: 0x605D,\n\t10840: 0x6085,\n\t10841: 0x608A,\n\t10842: 0x60DE,\n\t10843: 0x60D5,\n\t10844: 0x6120,\n\t10845: 0x60F2,\n\t10846: 0x6111,\n\t10847: 0x6137,\n\t10848: 0x6130,\n\t10849: 0x6198,\n\t10850: 0x6213,\n\t10851: 0x62A6,\n\t10852: 0x63F5,\n\t10853: 0x6460,\n\t10854: 0x649D,\n\t10855: 0x64CE,\n\t10856: 0x654E,\n\t10857: 0x6600,\n\t10858: 0x6615,\n\t10859: 0x663B,\n\t10860: 0x6609,\n\t10861: 0x662E,\n\t10862: 0x661E,\n\t10863: 0x6624,\n\t10864: 0x6665,\n\t10865: 0x6657,\n\t10866: 0x6659,\n\t10867: 0xFA12,\n\t10868: 0x6673,\n\t10869: 0x6699,\n\t10870: 0x66A0,\n\t10871: 0x66B2,\n\t10872: 0x66BF,\n\t10873: 0x66FA,\n\t10874: 0x670E,\n\t10875: 0xF929,\n\t10876: 0x6766,\n\t10877: 0x67BB,\n\t10878: 0x6852,\n\t10879: 0x67C0,\n\t10880: 0x6801,\n\t10881: 0x6844,\n\t10882: 0x68CF,\n\t10883: 0xFA13,\n\t10884: 0x6968,\n\t10885: 0xFA14,\n\t10886: 0x6998,\n\t10887: 0x69E2,\n\t10888: 0x6A30,\n\t10889: 0x6A6B,\n\t10890: 0x6A46,\n\t10891: 0x6A73,\n\t10892: 0x6A7E,\n\t10893: 0x6AE2,\n\t10894: 0x6AE4,\n\t10895: 0x6BD6,\n\t10896: 0x6C3F,\n\t10897: 0x6C5C,\n\t10898: 0x6C86,\n\t10899: 0x6C6F,\n\t10900: 0x6CDA,\n\t10901: 0x6D04,\n\t10902: 0x6D87,\n\t10903: 0x6D6F,\n\t10904: 0x6D96,\n\t10905: 0x6DAC,\n\t10906: 0x6DCF,\n\t10907: 0x6DF8,\n\t10908: 0x6DF2,\n\t10909: 0x6DFC,\n\t10910: 0x6E39,\n\t10911: 0x6E5C,\n\t10912: 0x6E27,\n\t10913: 0x6E3C,\n\t10914: 0x6EBF,\n\t10915: 0x6F88,\n\t10916: 0x6FB5,\n\t10917: 0x6FF5,\n\t10918: 0x7005,\n\t10919: 0x7007,\n\t10920: 0x7028,\n\t10921: 0x7085,\n\t10922: 0x70AB,\n\t10923: 0x710F,\n\t10924: 0x7104,\n\t10925: 0x715C,\n\t10926: 0x7146,\n\t10927: 0x7147,\n\t10928: 0xFA15,\n\t10929: 0x71C1,\n\t10930: 0x71FE,\n\t10931: 0x72B1,\n\t10932: 0x72BE,\n\t10933: 0x7324,\n\t10934: 0xFA16,\n\t10935: 0x7377,\n\t10936: 0x73BD,\n\t10937: 0x73C9,\n\t10938: 0x73D6,\n\t10939: 0x73E3,\n\t10940: 0x73D2,\n\t10941: 0x7407,\n\t10942: 0x73F5,\n\t10943: 0x7426,\n\t10944: 0x742A,\n\t10945: 0x7429,\n\t10946: 0x742E,\n\t10947: 0x7462,\n\t10948: 0x7489,\n\t10949: 0x749F,\n\t10950: 0x7501,\n\t10951: 0x756F,\n\t10952: 0x7682,\n\t10953: 0x769C,\n\t10954: 0x769E,\n\t10955: 0x769B,\n\t10956: 0x76A6,\n\t10957: 0xFA17,\n\t10958: 0x7746,\n\t10959: 0x52AF,\n\t10960: 0x7821,\n\t10961: 0x784E,\n\t10962: 0x7864,\n\t10963: 0x787A,\n\t10964: 0x7930,\n\t10965: 0xFA18,\n\t10966: 0xFA19,\n\t10967: 0xFA1A,\n\t10968: 0x7994,\n\t10969: 0xFA1B,\n\t10970: 0x799B,\n\t10971: 0x7AD1,\n\t10972: 0x7AE7,\n\t10973: 0xFA1C,\n\t10974: 0x7AEB,\n\t10975: 0x7B9E,\n\t10976: 0xFA1D,\n\t10977: 0x7D48,\n\t10978: 0x7D5C,\n\t10979: 0x7DB7,\n\t10980: 0x7DA0,\n\t10981: 0x7DD6,\n\t10982: 0x7E52,\n\t10983: 0x7F47,\n\t10984: 0x7FA1,\n\t10985: 0xFA1E,\n\t10986: 0x8301,\n\t10987: 0x8362,\n\t10988: 0x837F,\n\t10989: 0x83C7,\n\t10990: 0x83F6,\n\t10991: 0x8448,\n\t10992: 0x84B4,\n\t10993: 0x8553,\n\t10994: 0x8559,\n\t10995: 0x856B,\n\t10996: 0xFA1F,\n\t10997: 0x85B0,\n\t10998: 0xFA20,\n\t10999: 0xFA21,\n\t11000: 0x8807,\n\t11001: 0x88F5,\n\t11002: 0x8A12,\n\t11003: 0x8A37,\n\t11004: 0x8A79,\n\t11005: 0x8AA7,\n\t11006: 0x8ABE,\n\t11007: 0x8ADF,\n\t11008: 0xFA22,\n\t11009: 0x8AF6,\n\t11010: 0x8B53,\n\t11011: 0x8B7F,\n\t11012: 0x8CF0,\n\t11013: 0x8CF4,\n\t11014: 0x8D12,\n\t11015: 0x8D76,\n\t11016: 0xFA23,\n\t11017: 0x8ECF,\n\t11018: 0xFA24,\n\t11019: 0xFA25,\n\t11020: 0x9067,\n\t11021: 0x90DE,\n\t11022: 0xFA26,\n\t11023: 0x9115,\n\t11024: 0x9127,\n\t11025: 0x91DA,\n\t11026: 0x91D7,\n\t11027: 0x91DE,\n\t11028: 0x91ED,\n\t11029: 0x91EE,\n\t11030: 0x91E4,\n\t11031: 0x91E5,\n\t11032: 0x9206,\n\t11033: 0x9210,\n\t11034: 0x920A,\n\t11035: 0x923A,\n\t11036: 0x9240,\n\t11037: 0x923C,\n\t11038: 0x924E,\n\t11039: 0x9259,\n\t11040: 0x9251,\n\t11041: 0x9239,\n\t11042: 0x9267,\n\t11043: 0x92A7,\n\t11044: 0x9277,\n\t11045: 0x9278,\n\t11046: 0x92E7,\n\t11047: 0x92D7,\n\t11048: 0x92D9,\n\t11049: 0x92D0,\n\t11050: 0xFA27,\n\t11051: 0x92D5,\n\t11052: 0x92E0,\n\t11053: 0x92D3,\n\t11054: 0x9325,\n\t11055: 0x9321,\n\t11056: 0x92FB,\n\t11057: 0xFA28,\n\t11058: 0x931E,\n\t11059: 0x92FF,\n\t11060: 0x931D,\n\t11061: 0x9302,\n\t11062: 0x9370,\n\t11063: 0x9357,\n\t11064: 0x93A4,\n\t11065: 0x93C6,\n\t11066: 0x93DE,\n\t11067: 0x93F8,\n\t11068: 0x9431,\n\t11069: 0x9445,\n\t11070: 0x9448,\n\t11071: 0x9592,\n\t11072: 0xF9DC,\n\t11073: 0xFA29,\n\t11074: 0x969D,\n\t11075: 0x96AF,\n\t11076: 0x9733,\n\t11077: 0x973B,\n\t11078: 0x9743,\n\t11079: 0x974D,\n\t11080: 0x974F,\n\t11081: 0x9751,\n\t11082: 0x9755,\n\t11083: 0x9857,\n\t11084: 0x9865,\n\t11085: 0xFA2A,\n\t11086: 0xFA2B,\n\t11087: 0x9927,\n\t11088: 0xFA2C,\n\t11089: 0x999E,\n\t11090: 0x9A4E,\n\t11091: 0x9AD9,\n\t11092: 0x9ADC,\n\t11093: 0x9B75,\n\t11094: 0x9B72,\n\t11095: 0x9B8F,\n\t11096: 0x9BB1,\n\t11097: 0x9BBB,\n\t11098: 0x9C00,\n\t11099: 0x9D70,\n\t11100: 0x9D6B,\n\t11101: 0xFA2D,\n\t11102: 0x9E19,\n\t11103: 0x9ED1,\n}\n\n// jis0212Decode is the decoding table from JIS 0212 code to Unicode.\n// It is defined at http://encoding.spec.whatwg.org/index-jis0212.txt\nvar jis0212Decode = [...]uint16{\n\t108:  0x02D8,\n\t109:  0x02C7,\n\t110:  0x00B8,\n\t111:  0x02D9,\n\t112:  0x02DD,\n\t113:  0x00AF,\n\t114:  0x02DB,\n\t115:  0x02DA,\n\t116:  0xFF5E,\n\t117:  0x0384,\n\t118:  0x0385,\n\t127:  0x00A1,\n\t128:  0x00A6,\n\t129:  0x00BF,\n\t168:  0x00BA,\n\t169:  0x00AA,\n\t170:  0x00A9,\n\t171:  0x00AE,\n\t172:  0x2122,\n\t173:  0x00A4,\n\t174:  0x2116,\n\t534:  0x0386,\n\t535:  0x0388,\n\t536:  0x0389,\n\t537:  0x038A,\n\t538:  0x03AA,\n\t540:  0x038C,\n\t542:  0x038E,\n\t543:  0x03AB,\n\t545:  0x038F,\n\t550:  0x03AC,\n\t551:  0x03AD,\n\t552:  0x03AE,\n\t553:  0x03AF,\n\t554:  0x03CA,\n\t555:  0x0390,\n\t556:  0x03CC,\n\t557:  0x03C2,\n\t558:  0x03CD,\n\t559:  0x03CB,\n\t560:  0x03B0,\n\t561:  0x03CE,\n\t597:  0x0402,\n\t598:  0x0403,\n\t599:  0x0404,\n\t600:  0x0405,\n\t601:  0x0406,\n\t602:  0x0407,\n\t603:  0x0408,\n\t604:  0x0409,\n\t605:  0x040A,\n\t606:  0x040B,\n\t607:  0x040C,\n\t608:  0x040E,\n\t609:  0x040F,\n\t645:  0x0452,\n\t646:  0x0453,\n\t647:  0x0454,\n\t648:  0x0455,\n\t649:  0x0456,\n\t650:  0x0457,\n\t651:  0x0458,\n\t652:  0x0459,\n\t653:  0x045A,\n\t654:  0x045B,\n\t655:  0x045C,\n\t656:  0x045E,\n\t657:  0x045F,\n\t752:  0x00C6,\n\t753:  0x0110,\n\t755:  0x0126,\n\t757:  0x0132,\n\t759:  0x0141,\n\t760:  0x013F,\n\t762:  0x014A,\n\t763:  0x00D8,\n\t764:  0x0152,\n\t766:  0x0166,\n\t767:  0x00DE,\n\t784:  0x00E6,\n\t785:  0x0111,\n\t786:  0x00F0,\n\t787:  0x0127,\n\t788:  0x0131,\n\t789:  0x0133,\n\t790:  0x0138,\n\t791:  0x0142,\n\t792:  0x0140,\n\t793:  0x0149,\n\t794:  0x014B,\n\t795:  0x00F8,\n\t796:  0x0153,\n\t797:  0x00DF,\n\t798:  0x0167,\n\t799:  0x00FE,\n\t846:  0x00C1,\n\t847:  0x00C0,\n\t848:  0x00C4,\n\t849:  0x00C2,\n\t850:  0x0102,\n\t851:  0x01CD,\n\t852:  0x0100,\n\t853:  0x0104,\n\t854:  0x00C5,\n\t855:  0x00C3,\n\t856:  0x0106,\n\t857:  0x0108,\n\t858:  0x010C,\n\t859:  0x00C7,\n\t860:  0x010A,\n\t861:  0x010E,\n\t862:  0x00C9,\n\t863:  0x00C8,\n\t864:  0x00CB,\n\t865:  0x00CA,\n\t866:  0x011A,\n\t867:  0x0116,\n\t868:  0x0112,\n\t869:  0x0118,\n\t871:  0x011C,\n\t872:  0x011E,\n\t873:  0x0122,\n\t874:  0x0120,\n\t875:  0x0124,\n\t876:  0x00CD,\n\t877:  0x00CC,\n\t878:  0x00CF,\n\t879:  0x00CE,\n\t880:  0x01CF,\n\t881:  0x0130,\n\t882:  0x012A,\n\t883:  0x012E,\n\t884:  0x0128,\n\t885:  0x0134,\n\t886:  0x0136,\n\t887:  0x0139,\n\t888:  0x013D,\n\t889:  0x013B,\n\t890:  0x0143,\n\t891:  0x0147,\n\t892:  0x0145,\n\t893:  0x00D1,\n\t894:  0x00D3,\n\t895:  0x00D2,\n\t896:  0x00D6,\n\t897:  0x00D4,\n\t898:  0x01D1,\n\t899:  0x0150,\n\t900:  0x014C,\n\t901:  0x00D5,\n\t902:  0x0154,\n\t903:  0x0158,\n\t904:  0x0156,\n\t905:  0x015A,\n\t906:  0x015C,\n\t907:  0x0160,\n\t908:  0x015E,\n\t909:  0x0164,\n\t910:  0x0162,\n\t911:  0x00DA,\n\t912:  0x00D9,\n\t913:  0x00DC,\n\t914:  0x00DB,\n\t915:  0x016C,\n\t916:  0x01D3,\n\t917:  0x0170,\n\t918:  0x016A,\n\t919:  0x0172,\n\t920:  0x016E,\n\t921:  0x0168,\n\t922:  0x01D7,\n\t923:  0x01DB,\n\t924:  0x01D9,\n\t925:  0x01D5,\n\t926:  0x0174,\n\t927:  0x00DD,\n\t928:  0x0178,\n\t929:  0x0176,\n\t930:  0x0179,\n\t931:  0x017D,\n\t932:  0x017B,\n\t940:  0x00E1,\n\t941:  0x00E0,\n\t942:  0x00E4,\n\t943:  0x00E2,\n\t944:  0x0103,\n\t945:  0x01CE,\n\t946:  0x0101,\n\t947:  0x0105,\n\t948:  0x00E5,\n\t949:  0x00E3,\n\t950:  0x0107,\n\t951:  0x0109,\n\t952:  0x010D,\n\t953:  0x00E7,\n\t954:  0x010B,\n\t955:  0x010F,\n\t956:  0x00E9,\n\t957:  0x00E8,\n\t958:  0x00EB,\n\t959:  0x00EA,\n\t960:  0x011B,\n\t961:  0x0117,\n\t962:  0x0113,\n\t963:  0x0119,\n\t964:  0x01F5,\n\t965:  0x011D,\n\t966:  0x011F,\n\t968:  0x0121,\n\t969:  0x0125,\n\t970:  0x00ED,\n\t971:  0x00EC,\n\t972:  0x00EF,\n\t973:  0x00EE,\n\t974:  0x01D0,\n\t976:  0x012B,\n\t977:  0x012F,\n\t978:  0x0129,\n\t979:  0x0135,\n\t980:  0x0137,\n\t981:  0x013A,\n\t982:  0x013E,\n\t983:  0x013C,\n\t984:  0x0144,\n\t985:  0x0148,\n\t986:  0x0146,\n\t987:  0x00F1,\n\t988:  0x00F3,\n\t989:  0x00F2,\n\t990:  0x00F6,\n\t991:  0x00F4,\n\t992:  0x01D2,\n\t993:  0x0151,\n\t994:  0x014D,\n\t995:  0x00F5,\n\t996:  0x0155,\n\t997:  0x0159,\n\t998:  0x0157,\n\t999:  0x015B,\n\t1000: 0x015D,\n\t1001: 0x0161,\n\t1002: 0x015F,\n\t1003: 0x0165,\n\t1004: 0x0163,\n\t1005: 0x00FA,\n\t1006: 0x00F9,\n\t1007: 0x00FC,\n\t1008: 0x00FB,\n\t1009: 0x016D,\n\t1010: 0x01D4,\n\t1011: 0x0171,\n\t1012: 0x016B,\n\t1013: 0x0173,\n\t1014: 0x016F,\n\t1015: 0x0169,\n\t1016: 0x01D8,\n\t1017: 0x01DC,\n\t1018: 0x01DA,\n\t1019: 0x01D6,\n\t1020: 0x0175,\n\t1021: 0x00FD,\n\t1022: 0x00FF,\n\t1023: 0x0177,\n\t1024: 0x017A,\n\t1025: 0x017E,\n\t1026: 0x017C,\n\t1410: 0x4E02,\n\t1411: 0x4E04,\n\t1412: 0x4E05,\n\t1413: 0x4E0C,\n\t1414: 0x4E12,\n\t1415: 0x4E1F,\n\t1416: 0x4E23,\n\t1417: 0x4E24,\n\t1418: 0x4E28,\n\t1419: 0x4E2B,\n\t1420: 0x4E2E,\n\t1421: 0x4E2F,\n\t1422: 0x4E30,\n\t1423: 0x4E35,\n\t1424: 0x4E40,\n\t1425: 0x4E41,\n\t1426: 0x4E44,\n\t1427: 0x4E47,\n\t1428: 0x4E51,\n\t1429: 0x4E5A,\n\t1430: 0x4E5C,\n\t1431: 0x4E63,\n\t1432: 0x4E68,\n\t1433: 0x4E69,\n\t1434: 0x4E74,\n\t1435: 0x4E75,\n\t1436: 0x4E79,\n\t1437: 0x4E7F,\n\t1438: 0x4E8D,\n\t1439: 0x4E96,\n\t1440: 0x4E97,\n\t1441: 0x4E9D,\n\t1442: 0x4EAF,\n\t1443: 0x4EB9,\n\t1444: 0x4EC3,\n\t1445: 0x4ED0,\n\t1446: 0x4EDA,\n\t1447: 0x4EDB,\n\t1448: 0x4EE0,\n\t1449: 0x4EE1,\n\t1450: 0x4EE2,\n\t1451: 0x4EE8,\n\t1452: 0x4EEF,\n\t1453: 0x4EF1,\n\t1454: 0x4EF3,\n\t1455: 0x4EF5,\n\t1456: 0x4EFD,\n\t1457: 0x4EFE,\n\t1458: 0x4EFF,\n\t1459: 0x4F00,\n\t1460: 0x4F02,\n\t1461: 0x4F03,\n\t1462: 0x4F08,\n\t1463: 0x4F0B,\n\t1464: 0x4F0C,\n\t1465: 0x4F12,\n\t1466: 0x4F15,\n\t1467: 0x4F16,\n\t1468: 0x4F17,\n\t1469: 0x4F19,\n\t1470: 0x4F2E,\n\t1471: 0x4F31,\n\t1472: 0x4F60,\n\t1473: 0x4F33,\n\t1474: 0x4F35,\n\t1475: 0x4F37,\n\t1476: 0x4F39,\n\t1477: 0x4F3B,\n\t1478: 0x4F3E,\n\t1479: 0x4F40,\n\t1480: 0x4F42,\n\t1481: 0x4F48,\n\t1482: 0x4F49,\n\t1483: 0x4F4B,\n\t1484: 0x4F4C,\n\t1485: 0x4F52,\n\t1486: 0x4F54,\n\t1487: 0x4F56,\n\t1488: 0x4F58,\n\t1489: 0x4F5F,\n\t1490: 0x4F63,\n\t1491: 0x4F6A,\n\t1492: 0x4F6C,\n\t1493: 0x4F6E,\n\t1494: 0x4F71,\n\t1495: 0x4F77,\n\t1496: 0x4F78,\n\t1497: 0x4F79,\n\t1498: 0x4F7A,\n\t1499: 0x4F7D,\n\t1500: 0x4F7E,\n\t1501: 0x4F81,\n\t1502: 0x4F82,\n\t1503: 0x4F84,\n\t1504: 0x4F85,\n\t1505: 0x4F89,\n\t1506: 0x4F8A,\n\t1507: 0x4F8C,\n\t1508: 0x4F8E,\n\t1509: 0x4F90,\n\t1510: 0x4F92,\n\t1511: 0x4F93,\n\t1512: 0x4F94,\n\t1513: 0x4F97,\n\t1514: 0x4F99,\n\t1515: 0x4F9A,\n\t1516: 0x4F9E,\n\t1517: 0x4F9F,\n\t1518: 0x4FB2,\n\t1519: 0x4FB7,\n\t1520: 0x4FB9,\n\t1521: 0x4FBB,\n\t1522: 0x4FBC,\n\t1523: 0x4FBD,\n\t1524: 0x4FBE,\n\t1525: 0x4FC0,\n\t1526: 0x4FC1,\n\t1527: 0x4FC5,\n\t1528: 0x4FC6,\n\t1529: 0x4FC8,\n\t1530: 0x4FC9,\n\t1531: 0x4FCB,\n\t1532: 0x4FCC,\n\t1533: 0x4FCD,\n\t1534: 0x4FCF,\n\t1535: 0x4FD2,\n\t1536: 0x4FDC,\n\t1537: 0x4FE0,\n\t1538: 0x4FE2,\n\t1539: 0x4FF0,\n\t1540: 0x4FF2,\n\t1541: 0x4FFC,\n\t1542: 0x4FFD,\n\t1543: 0x4FFF,\n\t1544: 0x5000,\n\t1545: 0x5001,\n\t1546: 0x5004,\n\t1547: 0x5007,\n\t1548: 0x500A,\n\t1549: 0x500C,\n\t1550: 0x500E,\n\t1551: 0x5010,\n\t1552: 0x5013,\n\t1553: 0x5017,\n\t1554: 0x5018,\n\t1555: 0x501B,\n\t1556: 0x501C,\n\t1557: 0x501D,\n\t1558: 0x501E,\n\t1559: 0x5022,\n\t1560: 0x5027,\n\t1561: 0x502E,\n\t1562: 0x5030,\n\t1563: 0x5032,\n\t1564: 0x5033,\n\t1565: 0x5035,\n\t1566: 0x5040,\n\t1567: 0x5041,\n\t1568: 0x5042,\n\t1569: 0x5045,\n\t1570: 0x5046,\n\t1571: 0x504A,\n\t1572: 0x504C,\n\t1573: 0x504E,\n\t1574: 0x5051,\n\t1575: 0x5052,\n\t1576: 0x5053,\n\t1577: 0x5057,\n\t1578: 0x5059,\n\t1579: 0x505F,\n\t1580: 0x5060,\n\t1581: 0x5062,\n\t1582: 0x5063,\n\t1583: 0x5066,\n\t1584: 0x5067,\n\t1585: 0x506A,\n\t1586: 0x506D,\n\t1587: 0x5070,\n\t1588: 0x5071,\n\t1589: 0x503B,\n\t1590: 0x5081,\n\t1591: 0x5083,\n\t1592: 0x5084,\n\t1593: 0x5086,\n\t1594: 0x508A,\n\t1595: 0x508E,\n\t1596: 0x508F,\n\t1597: 0x5090,\n\t1598: 0x5092,\n\t1599: 0x5093,\n\t1600: 0x5094,\n\t1601: 0x5096,\n\t1602: 0x509B,\n\t1603: 0x509C,\n\t1604: 0x509E,\n\t1605: 0x509F,\n\t1606: 0x50A0,\n\t1607: 0x50A1,\n\t1608: 0x50A2,\n\t1609: 0x50AA,\n\t1610: 0x50AF,\n\t1611: 0x50B0,\n\t1612: 0x50B9,\n\t1613: 0x50BA,\n\t1614: 0x50BD,\n\t1615: 0x50C0,\n\t1616: 0x50C3,\n\t1617: 0x50C4,\n\t1618: 0x50C7,\n\t1619: 0x50CC,\n\t1620: 0x50CE,\n\t1621: 0x50D0,\n\t1622: 0x50D3,\n\t1623: 0x50D4,\n\t1624: 0x50D8,\n\t1625: 0x50DC,\n\t1626: 0x50DD,\n\t1627: 0x50DF,\n\t1628: 0x50E2,\n\t1629: 0x50E4,\n\t1630: 0x50E6,\n\t1631: 0x50E8,\n\t1632: 0x50E9,\n\t1633: 0x50EF,\n\t1634: 0x50F1,\n\t1635: 0x50F6,\n\t1636: 0x50FA,\n\t1637: 0x50FE,\n\t1638: 0x5103,\n\t1639: 0x5106,\n\t1640: 0x5107,\n\t1641: 0x5108,\n\t1642: 0x510B,\n\t1643: 0x510C,\n\t1644: 0x510D,\n\t1645: 0x510E,\n\t1646: 0x50F2,\n\t1647: 0x5110,\n\t1648: 0x5117,\n\t1649: 0x5119,\n\t1650: 0x511B,\n\t1651: 0x511C,\n\t1652: 0x511D,\n\t1653: 0x511E,\n\t1654: 0x5123,\n\t1655: 0x5127,\n\t1656: 0x5128,\n\t1657: 0x512C,\n\t1658: 0x512D,\n\t1659: 0x512F,\n\t1660: 0x5131,\n\t1661: 0x5133,\n\t1662: 0x5134,\n\t1663: 0x5135,\n\t1664: 0x5138,\n\t1665: 0x5139,\n\t1666: 0x5142,\n\t1667: 0x514A,\n\t1668: 0x514F,\n\t1669: 0x5153,\n\t1670: 0x5155,\n\t1671: 0x5157,\n\t1672: 0x5158,\n\t1673: 0x515F,\n\t1674: 0x5164,\n\t1675: 0x5166,\n\t1676: 0x517E,\n\t1677: 0x5183,\n\t1678: 0x5184,\n\t1679: 0x518B,\n\t1680: 0x518E,\n\t1681: 0x5198,\n\t1682: 0x519D,\n\t1683: 0x51A1,\n\t1684: 0x51A3,\n\t1685: 0x51AD,\n\t1686: 0x51B8,\n\t1687: 0x51BA,\n\t1688: 0x51BC,\n\t1689: 0x51BE,\n\t1690: 0x51BF,\n\t1691: 0x51C2,\n\t1692: 0x51C8,\n\t1693: 0x51CF,\n\t1694: 0x51D1,\n\t1695: 0x51D2,\n\t1696: 0x51D3,\n\t1697: 0x51D5,\n\t1698: 0x51D8,\n\t1699: 0x51DE,\n\t1700: 0x51E2,\n\t1701: 0x51E5,\n\t1702: 0x51EE,\n\t1703: 0x51F2,\n\t1704: 0x51F3,\n\t1705: 0x51F4,\n\t1706: 0x51F7,\n\t1707: 0x5201,\n\t1708: 0x5202,\n\t1709: 0x5205,\n\t1710: 0x5212,\n\t1711: 0x5213,\n\t1712: 0x5215,\n\t1713: 0x5216,\n\t1714: 0x5218,\n\t1715: 0x5222,\n\t1716: 0x5228,\n\t1717: 0x5231,\n\t1718: 0x5232,\n\t1719: 0x5235,\n\t1720: 0x523C,\n\t1721: 0x5245,\n\t1722: 0x5249,\n\t1723: 0x5255,\n\t1724: 0x5257,\n\t1725: 0x5258,\n\t1726: 0x525A,\n\t1727: 0x525C,\n\t1728: 0x525F,\n\t1729: 0x5260,\n\t1730: 0x5261,\n\t1731: 0x5266,\n\t1732: 0x526E,\n\t1733: 0x5277,\n\t1734: 0x5278,\n\t1735: 0x5279,\n\t1736: 0x5280,\n\t1737: 0x5282,\n\t1738: 0x5285,\n\t1739: 0x528A,\n\t1740: 0x528C,\n\t1741: 0x5293,\n\t1742: 0x5295,\n\t1743: 0x5296,\n\t1744: 0x5297,\n\t1745: 0x5298,\n\t1746: 0x529A,\n\t1747: 0x529C,\n\t1748: 0x52A4,\n\t1749: 0x52A5,\n\t1750: 0x52A6,\n\t1751: 0x52A7,\n\t1752: 0x52AF,\n\t1753: 0x52B0,\n\t1754: 0x52B6,\n\t1755: 0x52B7,\n\t1756: 0x52B8,\n\t1757: 0x52BA,\n\t1758: 0x52BB,\n\t1759: 0x52BD,\n\t1760: 0x52C0,\n\t1761: 0x52C4,\n\t1762: 0x52C6,\n\t1763: 0x52C8,\n\t1764: 0x52CC,\n\t1765: 0x52CF,\n\t1766: 0x52D1,\n\t1767: 0x52D4,\n\t1768: 0x52D6,\n\t1769: 0x52DB,\n\t1770: 0x52DC,\n\t1771: 0x52E1,\n\t1772: 0x52E5,\n\t1773: 0x52E8,\n\t1774: 0x52E9,\n\t1775: 0x52EA,\n\t1776: 0x52EC,\n\t1777: 0x52F0,\n\t1778: 0x52F1,\n\t1779: 0x52F4,\n\t1780: 0x52F6,\n\t1781: 0x52F7,\n\t1782: 0x5300,\n\t1783: 0x5303,\n\t1784: 0x530A,\n\t1785: 0x530B,\n\t1786: 0x530C,\n\t1787: 0x5311,\n\t1788: 0x5313,\n\t1789: 0x5318,\n\t1790: 0x531B,\n\t1791: 0x531C,\n\t1792: 0x531E,\n\t1793: 0x531F,\n\t1794: 0x5325,\n\t1795: 0x5327,\n\t1796: 0x5328,\n\t1797: 0x5329,\n\t1798: 0x532B,\n\t1799: 0x532C,\n\t1800: 0x532D,\n\t1801: 0x5330,\n\t1802: 0x5332,\n\t1803: 0x5335,\n\t1804: 0x533C,\n\t1805: 0x533D,\n\t1806: 0x533E,\n\t1807: 0x5342,\n\t1808: 0x534C,\n\t1809: 0x534B,\n\t1810: 0x5359,\n\t1811: 0x535B,\n\t1812: 0x5361,\n\t1813: 0x5363,\n\t1814: 0x5365,\n\t1815: 0x536C,\n\t1816: 0x536D,\n\t1817: 0x5372,\n\t1818: 0x5379,\n\t1819: 0x537E,\n\t1820: 0x5383,\n\t1821: 0x5387,\n\t1822: 0x5388,\n\t1823: 0x538E,\n\t1824: 0x5393,\n\t1825: 0x5394,\n\t1826: 0x5399,\n\t1827: 0x539D,\n\t1828: 0x53A1,\n\t1829: 0x53A4,\n\t1830: 0x53AA,\n\t1831: 0x53AB,\n\t1832: 0x53AF,\n\t1833: 0x53B2,\n\t1834: 0x53B4,\n\t1835: 0x53B5,\n\t1836: 0x53B7,\n\t1837: 0x53B8,\n\t1838: 0x53BA,\n\t1839: 0x53BD,\n\t1840: 0x53C0,\n\t1841: 0x53C5,\n\t1842: 0x53CF,\n\t1843: 0x53D2,\n\t1844: 0x53D3,\n\t1845: 0x53D5,\n\t1846: 0x53DA,\n\t1847: 0x53DD,\n\t1848: 0x53DE,\n\t1849: 0x53E0,\n\t1850: 0x53E6,\n\t1851: 0x53E7,\n\t1852: 0x53F5,\n\t1853: 0x5402,\n\t1854: 0x5413,\n\t1855: 0x541A,\n\t1856: 0x5421,\n\t1857: 0x5427,\n\t1858: 0x5428,\n\t1859: 0x542A,\n\t1860: 0x542F,\n\t1861: 0x5431,\n\t1862: 0x5434,\n\t1863: 0x5435,\n\t1864: 0x5443,\n\t1865: 0x5444,\n\t1866: 0x5447,\n\t1867: 0x544D,\n\t1868: 0x544F,\n\t1869: 0x545E,\n\t1870: 0x5462,\n\t1871: 0x5464,\n\t1872: 0x5466,\n\t1873: 0x5467,\n\t1874: 0x5469,\n\t1875: 0x546B,\n\t1876: 0x546D,\n\t1877: 0x546E,\n\t1878: 0x5474,\n\t1879: 0x547F,\n\t1880: 0x5481,\n\t1881: 0x5483,\n\t1882: 0x5485,\n\t1883: 0x5488,\n\t1884: 0x5489,\n\t1885: 0x548D,\n\t1886: 0x5491,\n\t1887: 0x5495,\n\t1888: 0x5496,\n\t1889: 0x549C,\n\t1890: 0x549F,\n\t1891: 0x54A1,\n\t1892: 0x54A6,\n\t1893: 0x54A7,\n\t1894: 0x54A9,\n\t1895: 0x54AA,\n\t1896: 0x54AD,\n\t1897: 0x54AE,\n\t1898: 0x54B1,\n\t1899: 0x54B7,\n\t1900: 0x54B9,\n\t1901: 0x54BA,\n\t1902: 0x54BB,\n\t1903: 0x54BF,\n\t1904: 0x54C6,\n\t1905: 0x54CA,\n\t1906: 0x54CD,\n\t1907: 0x54CE,\n\t1908: 0x54E0,\n\t1909: 0x54EA,\n\t1910: 0x54EC,\n\t1911: 0x54EF,\n\t1912: 0x54F6,\n\t1913: 0x54FC,\n\t1914: 0x54FE,\n\t1915: 0x54FF,\n\t1916: 0x5500,\n\t1917: 0x5501,\n\t1918: 0x5505,\n\t1919: 0x5508,\n\t1920: 0x5509,\n\t1921: 0x550C,\n\t1922: 0x550D,\n\t1923: 0x550E,\n\t1924: 0x5515,\n\t1925: 0x552A,\n\t1926: 0x552B,\n\t1927: 0x5532,\n\t1928: 0x5535,\n\t1929: 0x5536,\n\t1930: 0x553B,\n\t1931: 0x553C,\n\t1932: 0x553D,\n\t1933: 0x5541,\n\t1934: 0x5547,\n\t1935: 0x5549,\n\t1936: 0x554A,\n\t1937: 0x554D,\n\t1938: 0x5550,\n\t1939: 0x5551,\n\t1940: 0x5558,\n\t1941: 0x555A,\n\t1942: 0x555B,\n\t1943: 0x555E,\n\t1944: 0x5560,\n\t1945: 0x5561,\n\t1946: 0x5564,\n\t1947: 0x5566,\n\t1948: 0x557F,\n\t1949: 0x5581,\n\t1950: 0x5582,\n\t1951: 0x5586,\n\t1952: 0x5588,\n\t1953: 0x558E,\n\t1954: 0x558F,\n\t1955: 0x5591,\n\t1956: 0x5592,\n\t1957: 0x5593,\n\t1958: 0x5594,\n\t1959: 0x5597,\n\t1960: 0x55A3,\n\t1961: 0x55A4,\n\t1962: 0x55AD,\n\t1963: 0x55B2,\n\t1964: 0x55BF,\n\t1965: 0x55C1,\n\t1966: 0x55C3,\n\t1967: 0x55C6,\n\t1968: 0x55C9,\n\t1969: 0x55CB,\n\t1970: 0x55CC,\n\t1971: 0x55CE,\n\t1972: 0x55D1,\n\t1973: 0x55D2,\n\t1974: 0x55D3,\n\t1975: 0x55D7,\n\t1976: 0x55D8,\n\t1977: 0x55DB,\n\t1978: 0x55DE,\n\t1979: 0x55E2,\n\t1980: 0x55E9,\n\t1981: 0x55F6,\n\t1982: 0x55FF,\n\t1983: 0x5605,\n\t1984: 0x5608,\n\t1985: 0x560A,\n\t1986: 0x560D,\n\t1987: 0x560E,\n\t1988: 0x560F,\n\t1989: 0x5610,\n\t1990: 0x5611,\n\t1991: 0x5612,\n\t1992: 0x5619,\n\t1993: 0x562C,\n\t1994: 0x5630,\n\t1995: 0x5633,\n\t1996: 0x5635,\n\t1997: 0x5637,\n\t1998: 0x5639,\n\t1999: 0x563B,\n\t2000: 0x563C,\n\t2001: 0x563D,\n\t2002: 0x563F,\n\t2003: 0x5640,\n\t2004: 0x5641,\n\t2005: 0x5643,\n\t2006: 0x5644,\n\t2007: 0x5646,\n\t2008: 0x5649,\n\t2009: 0x564B,\n\t2010: 0x564D,\n\t2011: 0x564F,\n\t2012: 0x5654,\n\t2013: 0x565E,\n\t2014: 0x5660,\n\t2015: 0x5661,\n\t2016: 0x5662,\n\t2017: 0x5663,\n\t2018: 0x5666,\n\t2019: 0x5669,\n\t2020: 0x566D,\n\t2021: 0x566F,\n\t2022: 0x5671,\n\t2023: 0x5672,\n\t2024: 0x5675,\n\t2025: 0x5684,\n\t2026: 0x5685,\n\t2027: 0x5688,\n\t2028: 0x568B,\n\t2029: 0x568C,\n\t2030: 0x5695,\n\t2031: 0x5699,\n\t2032: 0x569A,\n\t2033: 0x569D,\n\t2034: 0x569E,\n\t2035: 0x569F,\n\t2036: 0x56A6,\n\t2037: 0x56A7,\n\t2038: 0x56A8,\n\t2039: 0x56A9,\n\t2040: 0x56AB,\n\t2041: 0x56AC,\n\t2042: 0x56AD,\n\t2043: 0x56B1,\n\t2044: 0x56B3,\n\t2045: 0x56B7,\n\t2046: 0x56BE,\n\t2047: 0x56C5,\n\t2048: 0x56C9,\n\t2049: 0x56CA,\n\t2050: 0x56CB,\n\t2051: 0x56CF,\n\t2052: 0x56D0,\n\t2053: 0x56CC,\n\t2054: 0x56CD,\n\t2055: 0x56D9,\n\t2056: 0x56DC,\n\t2057: 0x56DD,\n\t2058: 0x56DF,\n\t2059: 0x56E1,\n\t2060: 0x56E4,\n\t2061: 0x56E5,\n\t2062: 0x56E6,\n\t2063: 0x56E7,\n\t2064: 0x56E8,\n\t2065: 0x56F1,\n\t2066: 0x56EB,\n\t2067: 0x56ED,\n\t2068: 0x56F6,\n\t2069: 0x56F7,\n\t2070: 0x5701,\n\t2071: 0x5702,\n\t2072: 0x5707,\n\t2073: 0x570A,\n\t2074: 0x570C,\n\t2075: 0x5711,\n\t2076: 0x5715,\n\t2077: 0x571A,\n\t2078: 0x571B,\n\t2079: 0x571D,\n\t2080: 0x5720,\n\t2081: 0x5722,\n\t2082: 0x5723,\n\t2083: 0x5724,\n\t2084: 0x5725,\n\t2085: 0x5729,\n\t2086: 0x572A,\n\t2087: 0x572C,\n\t2088: 0x572E,\n\t2089: 0x572F,\n\t2090: 0x5733,\n\t2091: 0x5734,\n\t2092: 0x573D,\n\t2093: 0x573E,\n\t2094: 0x573F,\n\t2095: 0x5745,\n\t2096: 0x5746,\n\t2097: 0x574C,\n\t2098: 0x574D,\n\t2099: 0x5752,\n\t2100: 0x5762,\n\t2101: 0x5765,\n\t2102: 0x5767,\n\t2103: 0x5768,\n\t2104: 0x576B,\n\t2105: 0x576D,\n\t2106: 0x576E,\n\t2107: 0x576F,\n\t2108: 0x5770,\n\t2109: 0x5771,\n\t2110: 0x5773,\n\t2111: 0x5774,\n\t2112: 0x5775,\n\t2113: 0x5777,\n\t2114: 0x5779,\n\t2115: 0x577A,\n\t2116: 0x577B,\n\t2117: 0x577C,\n\t2118: 0x577E,\n\t2119: 0x5781,\n\t2120: 0x5783,\n\t2121: 0x578C,\n\t2122: 0x5794,\n\t2123: 0x5797,\n\t2124: 0x5799,\n\t2125: 0x579A,\n\t2126: 0x579C,\n\t2127: 0x579D,\n\t2128: 0x579E,\n\t2129: 0x579F,\n\t2130: 0x57A1,\n\t2131: 0x5795,\n\t2132: 0x57A7,\n\t2133: 0x57A8,\n\t2134: 0x57A9,\n\t2135: 0x57AC,\n\t2136: 0x57B8,\n\t2137: 0x57BD,\n\t2138: 0x57C7,\n\t2139: 0x57C8,\n\t2140: 0x57CC,\n\t2141: 0x57CF,\n\t2142: 0x57D5,\n\t2143: 0x57DD,\n\t2144: 0x57DE,\n\t2145: 0x57E4,\n\t2146: 0x57E6,\n\t2147: 0x57E7,\n\t2148: 0x57E9,\n\t2149: 0x57ED,\n\t2150: 0x57F0,\n\t2151: 0x57F5,\n\t2152: 0x57F6,\n\t2153: 0x57F8,\n\t2154: 0x57FD,\n\t2155: 0x57FE,\n\t2156: 0x57FF,\n\t2157: 0x5803,\n\t2158: 0x5804,\n\t2159: 0x5808,\n\t2160: 0x5809,\n\t2161: 0x57E1,\n\t2162: 0x580C,\n\t2163: 0x580D,\n\t2164: 0x581B,\n\t2165: 0x581E,\n\t2166: 0x581F,\n\t2167: 0x5820,\n\t2168: 0x5826,\n\t2169: 0x5827,\n\t2170: 0x582D,\n\t2171: 0x5832,\n\t2172: 0x5839,\n\t2173: 0x583F,\n\t2174: 0x5849,\n\t2175: 0x584C,\n\t2176: 0x584D,\n\t2177: 0x584F,\n\t2178: 0x5850,\n\t2179: 0x5855,\n\t2180: 0x585F,\n\t2181: 0x5861,\n\t2182: 0x5864,\n\t2183: 0x5867,\n\t2184: 0x5868,\n\t2185: 0x5878,\n\t2186: 0x587C,\n\t2187: 0x587F,\n\t2188: 0x5880,\n\t2189: 0x5881,\n\t2190: 0x5887,\n\t2191: 0x5888,\n\t2192: 0x5889,\n\t2193: 0x588A,\n\t2194: 0x588C,\n\t2195: 0x588D,\n\t2196: 0x588F,\n\t2197: 0x5890,\n\t2198: 0x5894,\n\t2199: 0x5896,\n\t2200: 0x589D,\n\t2201: 0x58A0,\n\t2202: 0x58A1,\n\t2203: 0x58A2,\n\t2204: 0x58A6,\n\t2205: 0x58A9,\n\t2206: 0x58B1,\n\t2207: 0x58B2,\n\t2208: 0x58C4,\n\t2209: 0x58BC,\n\t2210: 0x58C2,\n\t2211: 0x58C8,\n\t2212: 0x58CD,\n\t2213: 0x58CE,\n\t2214: 0x58D0,\n\t2215: 0x58D2,\n\t2216: 0x58D4,\n\t2217: 0x58D6,\n\t2218: 0x58DA,\n\t2219: 0x58DD,\n\t2220: 0x58E1,\n\t2221: 0x58E2,\n\t2222: 0x58E9,\n\t2223: 0x58F3,\n\t2224: 0x5905,\n\t2225: 0x5906,\n\t2226: 0x590B,\n\t2227: 0x590C,\n\t2228: 0x5912,\n\t2229: 0x5913,\n\t2230: 0x5914,\n\t2231: 0x8641,\n\t2232: 0x591D,\n\t2233: 0x5921,\n\t2234: 0x5923,\n\t2235: 0x5924,\n\t2236: 0x5928,\n\t2237: 0x592F,\n\t2238: 0x5930,\n\t2239: 0x5933,\n\t2240: 0x5935,\n\t2241: 0x5936,\n\t2242: 0x593F,\n\t2243: 0x5943,\n\t2244: 0x5946,\n\t2245: 0x5952,\n\t2246: 0x5953,\n\t2247: 0x5959,\n\t2248: 0x595B,\n\t2249: 0x595D,\n\t2250: 0x595E,\n\t2251: 0x595F,\n\t2252: 0x5961,\n\t2253: 0x5963,\n\t2254: 0x596B,\n\t2255: 0x596D,\n\t2256: 0x596F,\n\t2257: 0x5972,\n\t2258: 0x5975,\n\t2259: 0x5976,\n\t2260: 0x5979,\n\t2261: 0x597B,\n\t2262: 0x597C,\n\t2263: 0x598B,\n\t2264: 0x598C,\n\t2265: 0x598E,\n\t2266: 0x5992,\n\t2267: 0x5995,\n\t2268: 0x5997,\n\t2269: 0x599F,\n\t2270: 0x59A4,\n\t2271: 0x59A7,\n\t2272: 0x59AD,\n\t2273: 0x59AE,\n\t2274: 0x59AF,\n\t2275: 0x59B0,\n\t2276: 0x59B3,\n\t2277: 0x59B7,\n\t2278: 0x59BA,\n\t2279: 0x59BC,\n\t2280: 0x59C1,\n\t2281: 0x59C3,\n\t2282: 0x59C4,\n\t2283: 0x59C8,\n\t2284: 0x59CA,\n\t2285: 0x59CD,\n\t2286: 0x59D2,\n\t2287: 0x59DD,\n\t2288: 0x59DE,\n\t2289: 0x59DF,\n\t2290: 0x59E3,\n\t2291: 0x59E4,\n\t2292: 0x59E7,\n\t2293: 0x59EE,\n\t2294: 0x59EF,\n\t2295: 0x59F1,\n\t2296: 0x59F2,\n\t2297: 0x59F4,\n\t2298: 0x59F7,\n\t2299: 0x5A00,\n\t2300: 0x5A04,\n\t2301: 0x5A0C,\n\t2302: 0x5A0D,\n\t2303: 0x5A0E,\n\t2304: 0x5A12,\n\t2305: 0x5A13,\n\t2306: 0x5A1E,\n\t2307: 0x5A23,\n\t2308: 0x5A24,\n\t2309: 0x5A27,\n\t2310: 0x5A28,\n\t2311: 0x5A2A,\n\t2312: 0x5A2D,\n\t2313: 0x5A30,\n\t2314: 0x5A44,\n\t2315: 0x5A45,\n\t2316: 0x5A47,\n\t2317: 0x5A48,\n\t2318: 0x5A4C,\n\t2319: 0x5A50,\n\t2320: 0x5A55,\n\t2321: 0x5A5E,\n\t2322: 0x5A63,\n\t2323: 0x5A65,\n\t2324: 0x5A67,\n\t2325: 0x5A6D,\n\t2326: 0x5A77,\n\t2327: 0x5A7A,\n\t2328: 0x5A7B,\n\t2329: 0x5A7E,\n\t2330: 0x5A8B,\n\t2331: 0x5A90,\n\t2332: 0x5A93,\n\t2333: 0x5A96,\n\t2334: 0x5A99,\n\t2335: 0x5A9C,\n\t2336: 0x5A9E,\n\t2337: 0x5A9F,\n\t2338: 0x5AA0,\n\t2339: 0x5AA2,\n\t2340: 0x5AA7,\n\t2341: 0x5AAC,\n\t2342: 0x5AB1,\n\t2343: 0x5AB2,\n\t2344: 0x5AB3,\n\t2345: 0x5AB5,\n\t2346: 0x5AB8,\n\t2347: 0x5ABA,\n\t2348: 0x5ABB,\n\t2349: 0x5ABF,\n\t2350: 0x5AC4,\n\t2351: 0x5AC6,\n\t2352: 0x5AC8,\n\t2353: 0x5ACF,\n\t2354: 0x5ADA,\n\t2355: 0x5ADC,\n\t2356: 0x5AE0,\n\t2357: 0x5AE5,\n\t2358: 0x5AEA,\n\t2359: 0x5AEE,\n\t2360: 0x5AF5,\n\t2361: 0x5AF6,\n\t2362: 0x5AFD,\n\t2363: 0x5B00,\n\t2364: 0x5B01,\n\t2365: 0x5B08,\n\t2366: 0x5B17,\n\t2367: 0x5B34,\n\t2368: 0x5B19,\n\t2369: 0x5B1B,\n\t2370: 0x5B1D,\n\t2371: 0x5B21,\n\t2372: 0x5B25,\n\t2373: 0x5B2D,\n\t2374: 0x5B38,\n\t2375: 0x5B41,\n\t2376: 0x5B4B,\n\t2377: 0x5B4C,\n\t2378: 0x5B52,\n\t2379: 0x5B56,\n\t2380: 0x5B5E,\n\t2381: 0x5B68,\n\t2382: 0x5B6E,\n\t2383: 0x5B6F,\n\t2384: 0x5B7C,\n\t2385: 0x5B7D,\n\t2386: 0x5B7E,\n\t2387: 0x5B7F,\n\t2388: 0x5B81,\n\t2389: 0x5B84,\n\t2390: 0x5B86,\n\t2391: 0x5B8A,\n\t2392: 0x5B8E,\n\t2393: 0x5B90,\n\t2394: 0x5B91,\n\t2395: 0x5B93,\n\t2396: 0x5B94,\n\t2397: 0x5B96,\n\t2398: 0x5BA8,\n\t2399: 0x5BA9,\n\t2400: 0x5BAC,\n\t2401: 0x5BAD,\n\t2402: 0x5BAF,\n\t2403: 0x5BB1,\n\t2404: 0x5BB2,\n\t2405: 0x5BB7,\n\t2406: 0x5BBA,\n\t2407: 0x5BBC,\n\t2408: 0x5BC0,\n\t2409: 0x5BC1,\n\t2410: 0x5BCD,\n\t2411: 0x5BCF,\n\t2412: 0x5BD6,\n\t2413: 0x5BD7,\n\t2414: 0x5BD8,\n\t2415: 0x5BD9,\n\t2416: 0x5BDA,\n\t2417: 0x5BE0,\n\t2418: 0x5BEF,\n\t2419: 0x5BF1,\n\t2420: 0x5BF4,\n\t2421: 0x5BFD,\n\t2422: 0x5C0C,\n\t2423: 0x5C17,\n\t2424: 0x5C1E,\n\t2425: 0x5C1F,\n\t2426: 0x5C23,\n\t2427: 0x5C26,\n\t2428: 0x5C29,\n\t2429: 0x5C2B,\n\t2430: 0x5C2C,\n\t2431: 0x5C2E,\n\t2432: 0x5C30,\n\t2433: 0x5C32,\n\t2434: 0x5C35,\n\t2435: 0x5C36,\n\t2436: 0x5C59,\n\t2437: 0x5C5A,\n\t2438: 0x5C5C,\n\t2439: 0x5C62,\n\t2440: 0x5C63,\n\t2441: 0x5C67,\n\t2442: 0x5C68,\n\t2443: 0x5C69,\n\t2444: 0x5C6D,\n\t2445: 0x5C70,\n\t2446: 0x5C74,\n\t2447: 0x5C75,\n\t2448: 0x5C7A,\n\t2449: 0x5C7B,\n\t2450: 0x5C7C,\n\t2451: 0x5C7D,\n\t2452: 0x5C87,\n\t2453: 0x5C88,\n\t2454: 0x5C8A,\n\t2455: 0x5C8F,\n\t2456: 0x5C92,\n\t2457: 0x5C9D,\n\t2458: 0x5C9F,\n\t2459: 0x5CA0,\n\t2460: 0x5CA2,\n\t2461: 0x5CA3,\n\t2462: 0x5CA6,\n\t2463: 0x5CAA,\n\t2464: 0x5CB2,\n\t2465: 0x5CB4,\n\t2466: 0x5CB5,\n\t2467: 0x5CBA,\n\t2468: 0x5CC9,\n\t2469: 0x5CCB,\n\t2470: 0x5CD2,\n\t2471: 0x5CDD,\n\t2472: 0x5CD7,\n\t2473: 0x5CEE,\n\t2474: 0x5CF1,\n\t2475: 0x5CF2,\n\t2476: 0x5CF4,\n\t2477: 0x5D01,\n\t2478: 0x5D06,\n\t2479: 0x5D0D,\n\t2480: 0x5D12,\n\t2481: 0x5D2B,\n\t2482: 0x5D23,\n\t2483: 0x5D24,\n\t2484: 0x5D26,\n\t2485: 0x5D27,\n\t2486: 0x5D31,\n\t2487: 0x5D34,\n\t2488: 0x5D39,\n\t2489: 0x5D3D,\n\t2490: 0x5D3F,\n\t2491: 0x5D42,\n\t2492: 0x5D43,\n\t2493: 0x5D46,\n\t2494: 0x5D48,\n\t2495: 0x5D55,\n\t2496: 0x5D51,\n\t2497: 0x5D59,\n\t2498: 0x5D4A,\n\t2499: 0x5D5F,\n\t2500: 0x5D60,\n\t2501: 0x5D61,\n\t2502: 0x5D62,\n\t2503: 0x5D64,\n\t2504: 0x5D6A,\n\t2505: 0x5D6D,\n\t2506: 0x5D70,\n\t2507: 0x5D79,\n\t2508: 0x5D7A,\n\t2509: 0x5D7E,\n\t2510: 0x5D7F,\n\t2511: 0x5D81,\n\t2512: 0x5D83,\n\t2513: 0x5D88,\n\t2514: 0x5D8A,\n\t2515: 0x5D92,\n\t2516: 0x5D93,\n\t2517: 0x5D94,\n\t2518: 0x5D95,\n\t2519: 0x5D99,\n\t2520: 0x5D9B,\n\t2521: 0x5D9F,\n\t2522: 0x5DA0,\n\t2523: 0x5DA7,\n\t2524: 0x5DAB,\n\t2525: 0x5DB0,\n\t2526: 0x5DB4,\n\t2527: 0x5DB8,\n\t2528: 0x5DB9,\n\t2529: 0x5DC3,\n\t2530: 0x5DC7,\n\t2531: 0x5DCB,\n\t2532: 0x5DD0,\n\t2533: 0x5DCE,\n\t2534: 0x5DD8,\n\t2535: 0x5DD9,\n\t2536: 0x5DE0,\n\t2537: 0x5DE4,\n\t2538: 0x5DE9,\n\t2539: 0x5DF8,\n\t2540: 0x5DF9,\n\t2541: 0x5E00,\n\t2542: 0x5E07,\n\t2543: 0x5E0D,\n\t2544: 0x5E12,\n\t2545: 0x5E14,\n\t2546: 0x5E15,\n\t2547: 0x5E18,\n\t2548: 0x5E1F,\n\t2549: 0x5E20,\n\t2550: 0x5E2E,\n\t2551: 0x5E28,\n\t2552: 0x5E32,\n\t2553: 0x5E35,\n\t2554: 0x5E3E,\n\t2555: 0x5E4B,\n\t2556: 0x5E50,\n\t2557: 0x5E49,\n\t2558: 0x5E51,\n\t2559: 0x5E56,\n\t2560: 0x5E58,\n\t2561: 0x5E5B,\n\t2562: 0x5E5C,\n\t2563: 0x5E5E,\n\t2564: 0x5E68,\n\t2565: 0x5E6A,\n\t2566: 0x5E6B,\n\t2567: 0x5E6C,\n\t2568: 0x5E6D,\n\t2569: 0x5E6E,\n\t2570: 0x5E70,\n\t2571: 0x5E80,\n\t2572: 0x5E8B,\n\t2573: 0x5E8E,\n\t2574: 0x5EA2,\n\t2575: 0x5EA4,\n\t2576: 0x5EA5,\n\t2577: 0x5EA8,\n\t2578: 0x5EAA,\n\t2579: 0x5EAC,\n\t2580: 0x5EB1,\n\t2581: 0x5EB3,\n\t2582: 0x5EBD,\n\t2583: 0x5EBE,\n\t2584: 0x5EBF,\n\t2585: 0x5EC6,\n\t2586: 0x5ECC,\n\t2587: 0x5ECB,\n\t2588: 0x5ECE,\n\t2589: 0x5ED1,\n\t2590: 0x5ED2,\n\t2591: 0x5ED4,\n\t2592: 0x5ED5,\n\t2593: 0x5EDC,\n\t2594: 0x5EDE,\n\t2595: 0x5EE5,\n\t2596: 0x5EEB,\n\t2597: 0x5F02,\n\t2598: 0x5F06,\n\t2599: 0x5F07,\n\t2600: 0x5F08,\n\t2601: 0x5F0E,\n\t2602: 0x5F19,\n\t2603: 0x5F1C,\n\t2604: 0x5F1D,\n\t2605: 0x5F21,\n\t2606: 0x5F22,\n\t2607: 0x5F23,\n\t2608: 0x5F24,\n\t2609: 0x5F28,\n\t2610: 0x5F2B,\n\t2611: 0x5F2C,\n\t2612: 0x5F2E,\n\t2613: 0x5F30,\n\t2614: 0x5F34,\n\t2615: 0x5F36,\n\t2616: 0x5F3B,\n\t2617: 0x5F3D,\n\t2618: 0x5F3F,\n\t2619: 0x5F40,\n\t2620: 0x5F44,\n\t2621: 0x5F45,\n\t2622: 0x5F47,\n\t2623: 0x5F4D,\n\t2624: 0x5F50,\n\t2625: 0x5F54,\n\t2626: 0x5F58,\n\t2627: 0x5F5B,\n\t2628: 0x5F60,\n\t2629: 0x5F63,\n\t2630: 0x5F64,\n\t2631: 0x5F67,\n\t2632: 0x5F6F,\n\t2633: 0x5F72,\n\t2634: 0x5F74,\n\t2635: 0x5F75,\n\t2636: 0x5F78,\n\t2637: 0x5F7A,\n\t2638: 0x5F7D,\n\t2639: 0x5F7E,\n\t2640: 0x5F89,\n\t2641: 0x5F8D,\n\t2642: 0x5F8F,\n\t2643: 0x5F96,\n\t2644: 0x5F9C,\n\t2645: 0x5F9D,\n\t2646: 0x5FA2,\n\t2647: 0x5FA7,\n\t2648: 0x5FAB,\n\t2649: 0x5FA4,\n\t2650: 0x5FAC,\n\t2651: 0x5FAF,\n\t2652: 0x5FB0,\n\t2653: 0x5FB1,\n\t2654: 0x5FB8,\n\t2655: 0x5FC4,\n\t2656: 0x5FC7,\n\t2657: 0x5FC8,\n\t2658: 0x5FC9,\n\t2659: 0x5FCB,\n\t2660: 0x5FD0,\n\t2661: 0x5FD1,\n\t2662: 0x5FD2,\n\t2663: 0x5FD3,\n\t2664: 0x5FD4,\n\t2665: 0x5FDE,\n\t2666: 0x5FE1,\n\t2667: 0x5FE2,\n\t2668: 0x5FE8,\n\t2669: 0x5FE9,\n\t2670: 0x5FEA,\n\t2671: 0x5FEC,\n\t2672: 0x5FED,\n\t2673: 0x5FEE,\n\t2674: 0x5FEF,\n\t2675: 0x5FF2,\n\t2676: 0x5FF3,\n\t2677: 0x5FF6,\n\t2678: 0x5FFA,\n\t2679: 0x5FFC,\n\t2680: 0x6007,\n\t2681: 0x600A,\n\t2682: 0x600D,\n\t2683: 0x6013,\n\t2684: 0x6014,\n\t2685: 0x6017,\n\t2686: 0x6018,\n\t2687: 0x601A,\n\t2688: 0x601F,\n\t2689: 0x6024,\n\t2690: 0x602D,\n\t2691: 0x6033,\n\t2692: 0x6035,\n\t2693: 0x6040,\n\t2694: 0x6047,\n\t2695: 0x6048,\n\t2696: 0x6049,\n\t2697: 0x604C,\n\t2698: 0x6051,\n\t2699: 0x6054,\n\t2700: 0x6056,\n\t2701: 0x6057,\n\t2702: 0x605D,\n\t2703: 0x6061,\n\t2704: 0x6067,\n\t2705: 0x6071,\n\t2706: 0x607E,\n\t2707: 0x607F,\n\t2708: 0x6082,\n\t2709: 0x6086,\n\t2710: 0x6088,\n\t2711: 0x608A,\n\t2712: 0x608E,\n\t2713: 0x6091,\n\t2714: 0x6093,\n\t2715: 0x6095,\n\t2716: 0x6098,\n\t2717: 0x609D,\n\t2718: 0x609E,\n\t2719: 0x60A2,\n\t2720: 0x60A4,\n\t2721: 0x60A5,\n\t2722: 0x60A8,\n\t2723: 0x60B0,\n\t2724: 0x60B1,\n\t2725: 0x60B7,\n\t2726: 0x60BB,\n\t2727: 0x60BE,\n\t2728: 0x60C2,\n\t2729: 0x60C4,\n\t2730: 0x60C8,\n\t2731: 0x60C9,\n\t2732: 0x60CA,\n\t2733: 0x60CB,\n\t2734: 0x60CE,\n\t2735: 0x60CF,\n\t2736: 0x60D4,\n\t2737: 0x60D5,\n\t2738: 0x60D9,\n\t2739: 0x60DB,\n\t2740: 0x60DD,\n\t2741: 0x60DE,\n\t2742: 0x60E2,\n\t2743: 0x60E5,\n\t2744: 0x60F2,\n\t2745: 0x60F5,\n\t2746: 0x60F8,\n\t2747: 0x60FC,\n\t2748: 0x60FD,\n\t2749: 0x6102,\n\t2750: 0x6107,\n\t2751: 0x610A,\n\t2752: 0x610C,\n\t2753: 0x6110,\n\t2754: 0x6111,\n\t2755: 0x6112,\n\t2756: 0x6113,\n\t2757: 0x6114,\n\t2758: 0x6116,\n\t2759: 0x6117,\n\t2760: 0x6119,\n\t2761: 0x611C,\n\t2762: 0x611E,\n\t2763: 0x6122,\n\t2764: 0x612A,\n\t2765: 0x612B,\n\t2766: 0x6130,\n\t2767: 0x6131,\n\t2768: 0x6135,\n\t2769: 0x6136,\n\t2770: 0x6137,\n\t2771: 0x6139,\n\t2772: 0x6141,\n\t2773: 0x6145,\n\t2774: 0x6146,\n\t2775: 0x6149,\n\t2776: 0x615E,\n\t2777: 0x6160,\n\t2778: 0x616C,\n\t2779: 0x6172,\n\t2780: 0x6178,\n\t2781: 0x617B,\n\t2782: 0x617C,\n\t2783: 0x617F,\n\t2784: 0x6180,\n\t2785: 0x6181,\n\t2786: 0x6183,\n\t2787: 0x6184,\n\t2788: 0x618B,\n\t2789: 0x618D,\n\t2790: 0x6192,\n\t2791: 0x6193,\n\t2792: 0x6197,\n\t2793: 0x6198,\n\t2794: 0x619C,\n\t2795: 0x619D,\n\t2796: 0x619F,\n\t2797: 0x61A0,\n\t2798: 0x61A5,\n\t2799: 0x61A8,\n\t2800: 0x61AA,\n\t2801: 0x61AD,\n\t2802: 0x61B8,\n\t2803: 0x61B9,\n\t2804: 0x61BC,\n\t2805: 0x61C0,\n\t2806: 0x61C1,\n\t2807: 0x61C2,\n\t2808: 0x61CE,\n\t2809: 0x61CF,\n\t2810: 0x61D5,\n\t2811: 0x61DC,\n\t2812: 0x61DD,\n\t2813: 0x61DE,\n\t2814: 0x61DF,\n\t2815: 0x61E1,\n\t2816: 0x61E2,\n\t2817: 0x61E7,\n\t2818: 0x61E9,\n\t2819: 0x61E5,\n\t2820: 0x61EC,\n\t2821: 0x61ED,\n\t2822: 0x61EF,\n\t2823: 0x6201,\n\t2824: 0x6203,\n\t2825: 0x6204,\n\t2826: 0x6207,\n\t2827: 0x6213,\n\t2828: 0x6215,\n\t2829: 0x621C,\n\t2830: 0x6220,\n\t2831: 0x6222,\n\t2832: 0x6223,\n\t2833: 0x6227,\n\t2834: 0x6229,\n\t2835: 0x622B,\n\t2836: 0x6239,\n\t2837: 0x623D,\n\t2838: 0x6242,\n\t2839: 0x6243,\n\t2840: 0x6244,\n\t2841: 0x6246,\n\t2842: 0x624C,\n\t2843: 0x6250,\n\t2844: 0x6251,\n\t2845: 0x6252,\n\t2846: 0x6254,\n\t2847: 0x6256,\n\t2848: 0x625A,\n\t2849: 0x625C,\n\t2850: 0x6264,\n\t2851: 0x626D,\n\t2852: 0x626F,\n\t2853: 0x6273,\n\t2854: 0x627A,\n\t2855: 0x627D,\n\t2856: 0x628D,\n\t2857: 0x628E,\n\t2858: 0x628F,\n\t2859: 0x6290,\n\t2860: 0x62A6,\n\t2861: 0x62A8,\n\t2862: 0x62B3,\n\t2863: 0x62B6,\n\t2864: 0x62B7,\n\t2865: 0x62BA,\n\t2866: 0x62BE,\n\t2867: 0x62BF,\n\t2868: 0x62C4,\n\t2869: 0x62CE,\n\t2870: 0x62D5,\n\t2871: 0x62D6,\n\t2872: 0x62DA,\n\t2873: 0x62EA,\n\t2874: 0x62F2,\n\t2875: 0x62F4,\n\t2876: 0x62FC,\n\t2877: 0x62FD,\n\t2878: 0x6303,\n\t2879: 0x6304,\n\t2880: 0x630A,\n\t2881: 0x630B,\n\t2882: 0x630D,\n\t2883: 0x6310,\n\t2884: 0x6313,\n\t2885: 0x6316,\n\t2886: 0x6318,\n\t2887: 0x6329,\n\t2888: 0x632A,\n\t2889: 0x632D,\n\t2890: 0x6335,\n\t2891: 0x6336,\n\t2892: 0x6339,\n\t2893: 0x633C,\n\t2894: 0x6341,\n\t2895: 0x6342,\n\t2896: 0x6343,\n\t2897: 0x6344,\n\t2898: 0x6346,\n\t2899: 0x634A,\n\t2900: 0x634B,\n\t2901: 0x634E,\n\t2902: 0x6352,\n\t2903: 0x6353,\n\t2904: 0x6354,\n\t2905: 0x6358,\n\t2906: 0x635B,\n\t2907: 0x6365,\n\t2908: 0x6366,\n\t2909: 0x636C,\n\t2910: 0x636D,\n\t2911: 0x6371,\n\t2912: 0x6374,\n\t2913: 0x6375,\n\t2914: 0x6378,\n\t2915: 0x637C,\n\t2916: 0x637D,\n\t2917: 0x637F,\n\t2918: 0x6382,\n\t2919: 0x6384,\n\t2920: 0x6387,\n\t2921: 0x638A,\n\t2922: 0x6390,\n\t2923: 0x6394,\n\t2924: 0x6395,\n\t2925: 0x6399,\n\t2926: 0x639A,\n\t2927: 0x639E,\n\t2928: 0x63A4,\n\t2929: 0x63A6,\n\t2930: 0x63AD,\n\t2931: 0x63AE,\n\t2932: 0x63AF,\n\t2933: 0x63BD,\n\t2934: 0x63C1,\n\t2935: 0x63C5,\n\t2936: 0x63C8,\n\t2937: 0x63CE,\n\t2938: 0x63D1,\n\t2939: 0x63D3,\n\t2940: 0x63D4,\n\t2941: 0x63D5,\n\t2942: 0x63DC,\n\t2943: 0x63E0,\n\t2944: 0x63E5,\n\t2945: 0x63EA,\n\t2946: 0x63EC,\n\t2947: 0x63F2,\n\t2948: 0x63F3,\n\t2949: 0x63F5,\n\t2950: 0x63F8,\n\t2951: 0x63F9,\n\t2952: 0x6409,\n\t2953: 0x640A,\n\t2954: 0x6410,\n\t2955: 0x6412,\n\t2956: 0x6414,\n\t2957: 0x6418,\n\t2958: 0x641E,\n\t2959: 0x6420,\n\t2960: 0x6422,\n\t2961: 0x6424,\n\t2962: 0x6425,\n\t2963: 0x6429,\n\t2964: 0x642A,\n\t2965: 0x642F,\n\t2966: 0x6430,\n\t2967: 0x6435,\n\t2968: 0x643D,\n\t2969: 0x643F,\n\t2970: 0x644B,\n\t2971: 0x644F,\n\t2972: 0x6451,\n\t2973: 0x6452,\n\t2974: 0x6453,\n\t2975: 0x6454,\n\t2976: 0x645A,\n\t2977: 0x645B,\n\t2978: 0x645C,\n\t2979: 0x645D,\n\t2980: 0x645F,\n\t2981: 0x6460,\n\t2982: 0x6461,\n\t2983: 0x6463,\n\t2984: 0x646D,\n\t2985: 0x6473,\n\t2986: 0x6474,\n\t2987: 0x647B,\n\t2988: 0x647D,\n\t2989: 0x6485,\n\t2990: 0x6487,\n\t2991: 0x648F,\n\t2992: 0x6490,\n\t2993: 0x6491,\n\t2994: 0x6498,\n\t2995: 0x6499,\n\t2996: 0x649B,\n\t2997: 0x649D,\n\t2998: 0x649F,\n\t2999: 0x64A1,\n\t3000: 0x64A3,\n\t3001: 0x64A6,\n\t3002: 0x64A8,\n\t3003: 0x64AC,\n\t3004: 0x64B3,\n\t3005: 0x64BD,\n\t3006: 0x64BE,\n\t3007: 0x64BF,\n\t3008: 0x64C4,\n\t3009: 0x64C9,\n\t3010: 0x64CA,\n\t3011: 0x64CB,\n\t3012: 0x64CC,\n\t3013: 0x64CE,\n\t3014: 0x64D0,\n\t3015: 0x64D1,\n\t3016: 0x64D5,\n\t3017: 0x64D7,\n\t3018: 0x64E4,\n\t3019: 0x64E5,\n\t3020: 0x64E9,\n\t3021: 0x64EA,\n\t3022: 0x64ED,\n\t3023: 0x64F0,\n\t3024: 0x64F5,\n\t3025: 0x64F7,\n\t3026: 0x64FB,\n\t3027: 0x64FF,\n\t3028: 0x6501,\n\t3029: 0x6504,\n\t3030: 0x6508,\n\t3031: 0x6509,\n\t3032: 0x650A,\n\t3033: 0x650F,\n\t3034: 0x6513,\n\t3035: 0x6514,\n\t3036: 0x6516,\n\t3037: 0x6519,\n\t3038: 0x651B,\n\t3039: 0x651E,\n\t3040: 0x651F,\n\t3041: 0x6522,\n\t3042: 0x6526,\n\t3043: 0x6529,\n\t3044: 0x652E,\n\t3045: 0x6531,\n\t3046: 0x653A,\n\t3047: 0x653C,\n\t3048: 0x653D,\n\t3049: 0x6543,\n\t3050: 0x6547,\n\t3051: 0x6549,\n\t3052: 0x6550,\n\t3053: 0x6552,\n\t3054: 0x6554,\n\t3055: 0x655F,\n\t3056: 0x6560,\n\t3057: 0x6567,\n\t3058: 0x656B,\n\t3059: 0x657A,\n\t3060: 0x657D,\n\t3061: 0x6581,\n\t3062: 0x6585,\n\t3063: 0x658A,\n\t3064: 0x6592,\n\t3065: 0x6595,\n\t3066: 0x6598,\n\t3067: 0x659D,\n\t3068: 0x65A0,\n\t3069: 0x65A3,\n\t3070: 0x65A6,\n\t3071: 0x65AE,\n\t3072: 0x65B2,\n\t3073: 0x65B3,\n\t3074: 0x65B4,\n\t3075: 0x65BF,\n\t3076: 0x65C2,\n\t3077: 0x65C8,\n\t3078: 0x65C9,\n\t3079: 0x65CE,\n\t3080: 0x65D0,\n\t3081: 0x65D4,\n\t3082: 0x65D6,\n\t3083: 0x65D8,\n\t3084: 0x65DF,\n\t3085: 0x65F0,\n\t3086: 0x65F2,\n\t3087: 0x65F4,\n\t3088: 0x65F5,\n\t3089: 0x65F9,\n\t3090: 0x65FE,\n\t3091: 0x65FF,\n\t3092: 0x6600,\n\t3093: 0x6604,\n\t3094: 0x6608,\n\t3095: 0x6609,\n\t3096: 0x660D,\n\t3097: 0x6611,\n\t3098: 0x6612,\n\t3099: 0x6615,\n\t3100: 0x6616,\n\t3101: 0x661D,\n\t3102: 0x661E,\n\t3103: 0x6621,\n\t3104: 0x6622,\n\t3105: 0x6623,\n\t3106: 0x6624,\n\t3107: 0x6626,\n\t3108: 0x6629,\n\t3109: 0x662A,\n\t3110: 0x662B,\n\t3111: 0x662C,\n\t3112: 0x662E,\n\t3113: 0x6630,\n\t3114: 0x6631,\n\t3115: 0x6633,\n\t3116: 0x6639,\n\t3117: 0x6637,\n\t3118: 0x6640,\n\t3119: 0x6645,\n\t3120: 0x6646,\n\t3121: 0x664A,\n\t3122: 0x664C,\n\t3123: 0x6651,\n\t3124: 0x664E,\n\t3125: 0x6657,\n\t3126: 0x6658,\n\t3127: 0x6659,\n\t3128: 0x665B,\n\t3129: 0x665C,\n\t3130: 0x6660,\n\t3131: 0x6661,\n\t3132: 0x66FB,\n\t3133: 0x666A,\n\t3134: 0x666B,\n\t3135: 0x666C,\n\t3136: 0x667E,\n\t3137: 0x6673,\n\t3138: 0x6675,\n\t3139: 0x667F,\n\t3140: 0x6677,\n\t3141: 0x6678,\n\t3142: 0x6679,\n\t3143: 0x667B,\n\t3144: 0x6680,\n\t3145: 0x667C,\n\t3146: 0x668B,\n\t3147: 0x668C,\n\t3148: 0x668D,\n\t3149: 0x6690,\n\t3150: 0x6692,\n\t3151: 0x6699,\n\t3152: 0x669A,\n\t3153: 0x669B,\n\t3154: 0x669C,\n\t3155: 0x669F,\n\t3156: 0x66A0,\n\t3157: 0x66A4,\n\t3158: 0x66AD,\n\t3159: 0x66B1,\n\t3160: 0x66B2,\n\t3161: 0x66B5,\n\t3162: 0x66BB,\n\t3163: 0x66BF,\n\t3164: 0x66C0,\n\t3165: 0x66C2,\n\t3166: 0x66C3,\n\t3167: 0x66C8,\n\t3168: 0x66CC,\n\t3169: 0x66CE,\n\t3170: 0x66CF,\n\t3171: 0x66D4,\n\t3172: 0x66DB,\n\t3173: 0x66DF,\n\t3174: 0x66E8,\n\t3175: 0x66EB,\n\t3176: 0x66EC,\n\t3177: 0x66EE,\n\t3178: 0x66FA,\n\t3179: 0x6705,\n\t3180: 0x6707,\n\t3181: 0x670E,\n\t3182: 0x6713,\n\t3183: 0x6719,\n\t3184: 0x671C,\n\t3185: 0x6720,\n\t3186: 0x6722,\n\t3187: 0x6733,\n\t3188: 0x673E,\n\t3189: 0x6745,\n\t3190: 0x6747,\n\t3191: 0x6748,\n\t3192: 0x674C,\n\t3193: 0x6754,\n\t3194: 0x6755,\n\t3195: 0x675D,\n\t3196: 0x6766,\n\t3197: 0x676C,\n\t3198: 0x676E,\n\t3199: 0x6774,\n\t3200: 0x6776,\n\t3201: 0x677B,\n\t3202: 0x6781,\n\t3203: 0x6784,\n\t3204: 0x678E,\n\t3205: 0x678F,\n\t3206: 0x6791,\n\t3207: 0x6793,\n\t3208: 0x6796,\n\t3209: 0x6798,\n\t3210: 0x6799,\n\t3211: 0x679B,\n\t3212: 0x67B0,\n\t3213: 0x67B1,\n\t3214: 0x67B2,\n\t3215: 0x67B5,\n\t3216: 0x67BB,\n\t3217: 0x67BC,\n\t3218: 0x67BD,\n\t3219: 0x67F9,\n\t3220: 0x67C0,\n\t3221: 0x67C2,\n\t3222: 0x67C3,\n\t3223: 0x67C5,\n\t3224: 0x67C8,\n\t3225: 0x67C9,\n\t3226: 0x67D2,\n\t3227: 0x67D7,\n\t3228: 0x67D9,\n\t3229: 0x67DC,\n\t3230: 0x67E1,\n\t3231: 0x67E6,\n\t3232: 0x67F0,\n\t3233: 0x67F2,\n\t3234: 0x67F6,\n\t3235: 0x67F7,\n\t3236: 0x6852,\n\t3237: 0x6814,\n\t3238: 0x6819,\n\t3239: 0x681D,\n\t3240: 0x681F,\n\t3241: 0x6828,\n\t3242: 0x6827,\n\t3243: 0x682C,\n\t3244: 0x682D,\n\t3245: 0x682F,\n\t3246: 0x6830,\n\t3247: 0x6831,\n\t3248: 0x6833,\n\t3249: 0x683B,\n\t3250: 0x683F,\n\t3251: 0x6844,\n\t3252: 0x6845,\n\t3253: 0x684A,\n\t3254: 0x684C,\n\t3255: 0x6855,\n\t3256: 0x6857,\n\t3257: 0x6858,\n\t3258: 0x685B,\n\t3259: 0x686B,\n\t3260: 0x686E,\n\t3261: 0x686F,\n\t3262: 0x6870,\n\t3263: 0x6871,\n\t3264: 0x6872,\n\t3265: 0x6875,\n\t3266: 0x6879,\n\t3267: 0x687A,\n\t3268: 0x687B,\n\t3269: 0x687C,\n\t3270: 0x6882,\n\t3271: 0x6884,\n\t3272: 0x6886,\n\t3273: 0x6888,\n\t3274: 0x6896,\n\t3275: 0x6898,\n\t3276: 0x689A,\n\t3277: 0x689C,\n\t3278: 0x68A1,\n\t3279: 0x68A3,\n\t3280: 0x68A5,\n\t3281: 0x68A9,\n\t3282: 0x68AA,\n\t3283: 0x68AE,\n\t3284: 0x68B2,\n\t3285: 0x68BB,\n\t3286: 0x68C5,\n\t3287: 0x68C8,\n\t3288: 0x68CC,\n\t3289: 0x68CF,\n\t3290: 0x68D0,\n\t3291: 0x68D1,\n\t3292: 0x68D3,\n\t3293: 0x68D6,\n\t3294: 0x68D9,\n\t3295: 0x68DC,\n\t3296: 0x68DD,\n\t3297: 0x68E5,\n\t3298: 0x68E8,\n\t3299: 0x68EA,\n\t3300: 0x68EB,\n\t3301: 0x68EC,\n\t3302: 0x68ED,\n\t3303: 0x68F0,\n\t3304: 0x68F1,\n\t3305: 0x68F5,\n\t3306: 0x68F6,\n\t3307: 0x68FB,\n\t3308: 0x68FC,\n\t3309: 0x68FD,\n\t3310: 0x6906,\n\t3311: 0x6909,\n\t3312: 0x690A,\n\t3313: 0x6910,\n\t3314: 0x6911,\n\t3315: 0x6913,\n\t3316: 0x6916,\n\t3317: 0x6917,\n\t3318: 0x6931,\n\t3319: 0x6933,\n\t3320: 0x6935,\n\t3321: 0x6938,\n\t3322: 0x693B,\n\t3323: 0x6942,\n\t3324: 0x6945,\n\t3325: 0x6949,\n\t3326: 0x694E,\n\t3327: 0x6957,\n\t3328: 0x695B,\n\t3329: 0x6963,\n\t3330: 0x6964,\n\t3331: 0x6965,\n\t3332: 0x6966,\n\t3333: 0x6968,\n\t3334: 0x6969,\n\t3335: 0x696C,\n\t3336: 0x6970,\n\t3337: 0x6971,\n\t3338: 0x6972,\n\t3339: 0x697A,\n\t3340: 0x697B,\n\t3341: 0x697F,\n\t3342: 0x6980,\n\t3343: 0x698D,\n\t3344: 0x6992,\n\t3345: 0x6996,\n\t3346: 0x6998,\n\t3347: 0x69A1,\n\t3348: 0x69A5,\n\t3349: 0x69A6,\n\t3350: 0x69A8,\n\t3351: 0x69AB,\n\t3352: 0x69AD,\n\t3353: 0x69AF,\n\t3354: 0x69B7,\n\t3355: 0x69B8,\n\t3356: 0x69BA,\n\t3357: 0x69BC,\n\t3358: 0x69C5,\n\t3359: 0x69C8,\n\t3360: 0x69D1,\n\t3361: 0x69D6,\n\t3362: 0x69D7,\n\t3363: 0x69E2,\n\t3364: 0x69E5,\n\t3365: 0x69EE,\n\t3366: 0x69EF,\n\t3367: 0x69F1,\n\t3368: 0x69F3,\n\t3369: 0x69F5,\n\t3370: 0x69FE,\n\t3371: 0x6A00,\n\t3372: 0x6A01,\n\t3373: 0x6A03,\n\t3374: 0x6A0F,\n\t3375: 0x6A11,\n\t3376: 0x6A15,\n\t3377: 0x6A1A,\n\t3378: 0x6A1D,\n\t3379: 0x6A20,\n\t3380: 0x6A24,\n\t3381: 0x6A28,\n\t3382: 0x6A30,\n\t3383: 0x6A32,\n\t3384: 0x6A34,\n\t3385: 0x6A37,\n\t3386: 0x6A3B,\n\t3387: 0x6A3E,\n\t3388: 0x6A3F,\n\t3389: 0x6A45,\n\t3390: 0x6A46,\n\t3391: 0x6A49,\n\t3392: 0x6A4A,\n\t3393: 0x6A4E,\n\t3394: 0x6A50,\n\t3395: 0x6A51,\n\t3396: 0x6A52,\n\t3397: 0x6A55,\n\t3398: 0x6A56,\n\t3399: 0x6A5B,\n\t3400: 0x6A64,\n\t3401: 0x6A67,\n\t3402: 0x6A6A,\n\t3403: 0x6A71,\n\t3404: 0x6A73,\n\t3405: 0x6A7E,\n\t3406: 0x6A81,\n\t3407: 0x6A83,\n\t3408: 0x6A86,\n\t3409: 0x6A87,\n\t3410: 0x6A89,\n\t3411: 0x6A8B,\n\t3412: 0x6A91,\n\t3413: 0x6A9B,\n\t3414: 0x6A9D,\n\t3415: 0x6A9E,\n\t3416: 0x6A9F,\n\t3417: 0x6AA5,\n\t3418: 0x6AAB,\n\t3419: 0x6AAF,\n\t3420: 0x6AB0,\n\t3421: 0x6AB1,\n\t3422: 0x6AB4,\n\t3423: 0x6ABD,\n\t3424: 0x6ABE,\n\t3425: 0x6ABF,\n\t3426: 0x6AC6,\n\t3427: 0x6AC9,\n\t3428: 0x6AC8,\n\t3429: 0x6ACC,\n\t3430: 0x6AD0,\n\t3431: 0x6AD4,\n\t3432: 0x6AD5,\n\t3433: 0x6AD6,\n\t3434: 0x6ADC,\n\t3435: 0x6ADD,\n\t3436: 0x6AE4,\n\t3437: 0x6AE7,\n\t3438: 0x6AEC,\n\t3439: 0x6AF0,\n\t3440: 0x6AF1,\n\t3441: 0x6AF2,\n\t3442: 0x6AFC,\n\t3443: 0x6AFD,\n\t3444: 0x6B02,\n\t3445: 0x6B03,\n\t3446: 0x6B06,\n\t3447: 0x6B07,\n\t3448: 0x6B09,\n\t3449: 0x6B0F,\n\t3450: 0x6B10,\n\t3451: 0x6B11,\n\t3452: 0x6B17,\n\t3453: 0x6B1B,\n\t3454: 0x6B1E,\n\t3455: 0x6B24,\n\t3456: 0x6B28,\n\t3457: 0x6B2B,\n\t3458: 0x6B2C,\n\t3459: 0x6B2F,\n\t3460: 0x6B35,\n\t3461: 0x6B36,\n\t3462: 0x6B3B,\n\t3463: 0x6B3F,\n\t3464: 0x6B46,\n\t3465: 0x6B4A,\n\t3466: 0x6B4D,\n\t3467: 0x6B52,\n\t3468: 0x6B56,\n\t3469: 0x6B58,\n\t3470: 0x6B5D,\n\t3471: 0x6B60,\n\t3472: 0x6B67,\n\t3473: 0x6B6B,\n\t3474: 0x6B6E,\n\t3475: 0x6B70,\n\t3476: 0x6B75,\n\t3477: 0x6B7D,\n\t3478: 0x6B7E,\n\t3479: 0x6B82,\n\t3480: 0x6B85,\n\t3481: 0x6B97,\n\t3482: 0x6B9B,\n\t3483: 0x6B9F,\n\t3484: 0x6BA0,\n\t3485: 0x6BA2,\n\t3486: 0x6BA3,\n\t3487: 0x6BA8,\n\t3488: 0x6BA9,\n\t3489: 0x6BAC,\n\t3490: 0x6BAD,\n\t3491: 0x6BAE,\n\t3492: 0x6BB0,\n\t3493: 0x6BB8,\n\t3494: 0x6BB9,\n\t3495: 0x6BBD,\n\t3496: 0x6BBE,\n\t3497: 0x6BC3,\n\t3498: 0x6BC4,\n\t3499: 0x6BC9,\n\t3500: 0x6BCC,\n\t3501: 0x6BD6,\n\t3502: 0x6BDA,\n\t3503: 0x6BE1,\n\t3504: 0x6BE3,\n\t3505: 0x6BE6,\n\t3506: 0x6BE7,\n\t3507: 0x6BEE,\n\t3508: 0x6BF1,\n\t3509: 0x6BF7,\n\t3510: 0x6BF9,\n\t3511: 0x6BFF,\n\t3512: 0x6C02,\n\t3513: 0x6C04,\n\t3514: 0x6C05,\n\t3515: 0x6C09,\n\t3516: 0x6C0D,\n\t3517: 0x6C0E,\n\t3518: 0x6C10,\n\t3519: 0x6C12,\n\t3520: 0x6C19,\n\t3521: 0x6C1F,\n\t3522: 0x6C26,\n\t3523: 0x6C27,\n\t3524: 0x6C28,\n\t3525: 0x6C2C,\n\t3526: 0x6C2E,\n\t3527: 0x6C33,\n\t3528: 0x6C35,\n\t3529: 0x6C36,\n\t3530: 0x6C3A,\n\t3531: 0x6C3B,\n\t3532: 0x6C3F,\n\t3533: 0x6C4A,\n\t3534: 0x6C4B,\n\t3535: 0x6C4D,\n\t3536: 0x6C4F,\n\t3537: 0x6C52,\n\t3538: 0x6C54,\n\t3539: 0x6C59,\n\t3540: 0x6C5B,\n\t3541: 0x6C5C,\n\t3542: 0x6C6B,\n\t3543: 0x6C6D,\n\t3544: 0x6C6F,\n\t3545: 0x6C74,\n\t3546: 0x6C76,\n\t3547: 0x6C78,\n\t3548: 0x6C79,\n\t3549: 0x6C7B,\n\t3550: 0x6C85,\n\t3551: 0x6C86,\n\t3552: 0x6C87,\n\t3553: 0x6C89,\n\t3554: 0x6C94,\n\t3555: 0x6C95,\n\t3556: 0x6C97,\n\t3557: 0x6C98,\n\t3558: 0x6C9C,\n\t3559: 0x6C9F,\n\t3560: 0x6CB0,\n\t3561: 0x6CB2,\n\t3562: 0x6CB4,\n\t3563: 0x6CC2,\n\t3564: 0x6CC6,\n\t3565: 0x6CCD,\n\t3566: 0x6CCF,\n\t3567: 0x6CD0,\n\t3568: 0x6CD1,\n\t3569: 0x6CD2,\n\t3570: 0x6CD4,\n\t3571: 0x6CD6,\n\t3572: 0x6CDA,\n\t3573: 0x6CDC,\n\t3574: 0x6CE0,\n\t3575: 0x6CE7,\n\t3576: 0x6CE9,\n\t3577: 0x6CEB,\n\t3578: 0x6CEC,\n\t3579: 0x6CEE,\n\t3580: 0x6CF2,\n\t3581: 0x6CF4,\n\t3582: 0x6D04,\n\t3583: 0x6D07,\n\t3584: 0x6D0A,\n\t3585: 0x6D0E,\n\t3586: 0x6D0F,\n\t3587: 0x6D11,\n\t3588: 0x6D13,\n\t3589: 0x6D1A,\n\t3590: 0x6D26,\n\t3591: 0x6D27,\n\t3592: 0x6D28,\n\t3593: 0x6C67,\n\t3594: 0x6D2E,\n\t3595: 0x6D2F,\n\t3596: 0x6D31,\n\t3597: 0x6D39,\n\t3598: 0x6D3C,\n\t3599: 0x6D3F,\n\t3600: 0x6D57,\n\t3601: 0x6D5E,\n\t3602: 0x6D5F,\n\t3603: 0x6D61,\n\t3604: 0x6D65,\n\t3605: 0x6D67,\n\t3606: 0x6D6F,\n\t3607: 0x6D70,\n\t3608: 0x6D7C,\n\t3609: 0x6D82,\n\t3610: 0x6D87,\n\t3611: 0x6D91,\n\t3612: 0x6D92,\n\t3613: 0x6D94,\n\t3614: 0x6D96,\n\t3615: 0x6D97,\n\t3616: 0x6D98,\n\t3617: 0x6DAA,\n\t3618: 0x6DAC,\n\t3619: 0x6DB4,\n\t3620: 0x6DB7,\n\t3621: 0x6DB9,\n\t3622: 0x6DBD,\n\t3623: 0x6DBF,\n\t3624: 0x6DC4,\n\t3625: 0x6DC8,\n\t3626: 0x6DCA,\n\t3627: 0x6DCE,\n\t3628: 0x6DCF,\n\t3629: 0x6DD6,\n\t3630: 0x6DDB,\n\t3631: 0x6DDD,\n\t3632: 0x6DDF,\n\t3633: 0x6DE0,\n\t3634: 0x6DE2,\n\t3635: 0x6DE5,\n\t3636: 0x6DE9,\n\t3637: 0x6DEF,\n\t3638: 0x6DF0,\n\t3639: 0x6DF4,\n\t3640: 0x6DF6,\n\t3641: 0x6DFC,\n\t3642: 0x6E00,\n\t3643: 0x6E04,\n\t3644: 0x6E1E,\n\t3645: 0x6E22,\n\t3646: 0x6E27,\n\t3647: 0x6E32,\n\t3648: 0x6E36,\n\t3649: 0x6E39,\n\t3650: 0x6E3B,\n\t3651: 0x6E3C,\n\t3652: 0x6E44,\n\t3653: 0x6E45,\n\t3654: 0x6E48,\n\t3655: 0x6E49,\n\t3656: 0x6E4B,\n\t3657: 0x6E4F,\n\t3658: 0x6E51,\n\t3659: 0x6E52,\n\t3660: 0x6E53,\n\t3661: 0x6E54,\n\t3662: 0x6E57,\n\t3663: 0x6E5C,\n\t3664: 0x6E5D,\n\t3665: 0x6E5E,\n\t3666: 0x6E62,\n\t3667: 0x6E63,\n\t3668: 0x6E68,\n\t3669: 0x6E73,\n\t3670: 0x6E7B,\n\t3671: 0x6E7D,\n\t3672: 0x6E8D,\n\t3673: 0x6E93,\n\t3674: 0x6E99,\n\t3675: 0x6EA0,\n\t3676: 0x6EA7,\n\t3677: 0x6EAD,\n\t3678: 0x6EAE,\n\t3679: 0x6EB1,\n\t3680: 0x6EB3,\n\t3681: 0x6EBB,\n\t3682: 0x6EBF,\n\t3683: 0x6EC0,\n\t3684: 0x6EC1,\n\t3685: 0x6EC3,\n\t3686: 0x6EC7,\n\t3687: 0x6EC8,\n\t3688: 0x6ECA,\n\t3689: 0x6ECD,\n\t3690: 0x6ECE,\n\t3691: 0x6ECF,\n\t3692: 0x6EEB,\n\t3693: 0x6EED,\n\t3694: 0x6EEE,\n\t3695: 0x6EF9,\n\t3696: 0x6EFB,\n\t3697: 0x6EFD,\n\t3698: 0x6F04,\n\t3699: 0x6F08,\n\t3700: 0x6F0A,\n\t3701: 0x6F0C,\n\t3702: 0x6F0D,\n\t3703: 0x6F16,\n\t3704: 0x6F18,\n\t3705: 0x6F1A,\n\t3706: 0x6F1B,\n\t3707: 0x6F26,\n\t3708: 0x6F29,\n\t3709: 0x6F2A,\n\t3710: 0x6F2F,\n\t3711: 0x6F30,\n\t3712: 0x6F33,\n\t3713: 0x6F36,\n\t3714: 0x6F3B,\n\t3715: 0x6F3C,\n\t3716: 0x6F2D,\n\t3717: 0x6F4F,\n\t3718: 0x6F51,\n\t3719: 0x6F52,\n\t3720: 0x6F53,\n\t3721: 0x6F57,\n\t3722: 0x6F59,\n\t3723: 0x6F5A,\n\t3724: 0x6F5D,\n\t3725: 0x6F5E,\n\t3726: 0x6F61,\n\t3727: 0x6F62,\n\t3728: 0x6F68,\n\t3729: 0x6F6C,\n\t3730: 0x6F7D,\n\t3731: 0x6F7E,\n\t3732: 0x6F83,\n\t3733: 0x6F87,\n\t3734: 0x6F88,\n\t3735: 0x6F8B,\n\t3736: 0x6F8C,\n\t3737: 0x6F8D,\n\t3738: 0x6F90,\n\t3739: 0x6F92,\n\t3740: 0x6F93,\n\t3741: 0x6F94,\n\t3742: 0x6F96,\n\t3743: 0x6F9A,\n\t3744: 0x6F9F,\n\t3745: 0x6FA0,\n\t3746: 0x6FA5,\n\t3747: 0x6FA6,\n\t3748: 0x6FA7,\n\t3749: 0x6FA8,\n\t3750: 0x6FAE,\n\t3751: 0x6FAF,\n\t3752: 0x6FB0,\n\t3753: 0x6FB5,\n\t3754: 0x6FB6,\n\t3755: 0x6FBC,\n\t3756: 0x6FC5,\n\t3757: 0x6FC7,\n\t3758: 0x6FC8,\n\t3759: 0x6FCA,\n\t3760: 0x6FDA,\n\t3761: 0x6FDE,\n\t3762: 0x6FE8,\n\t3763: 0x6FE9,\n\t3764: 0x6FF0,\n\t3765: 0x6FF5,\n\t3766: 0x6FF9,\n\t3767: 0x6FFC,\n\t3768: 0x6FFD,\n\t3769: 0x7000,\n\t3770: 0x7005,\n\t3771: 0x7006,\n\t3772: 0x7007,\n\t3773: 0x700D,\n\t3774: 0x7017,\n\t3775: 0x7020,\n\t3776: 0x7023,\n\t3777: 0x702F,\n\t3778: 0x7034,\n\t3779: 0x7037,\n\t3780: 0x7039,\n\t3781: 0x703C,\n\t3782: 0x7043,\n\t3783: 0x7044,\n\t3784: 0x7048,\n\t3785: 0x7049,\n\t3786: 0x704A,\n\t3787: 0x704B,\n\t3788: 0x7054,\n\t3789: 0x7055,\n\t3790: 0x705D,\n\t3791: 0x705E,\n\t3792: 0x704E,\n\t3793: 0x7064,\n\t3794: 0x7065,\n\t3795: 0x706C,\n\t3796: 0x706E,\n\t3797: 0x7075,\n\t3798: 0x7076,\n\t3799: 0x707E,\n\t3800: 0x7081,\n\t3801: 0x7085,\n\t3802: 0x7086,\n\t3803: 0x7094,\n\t3804: 0x7095,\n\t3805: 0x7096,\n\t3806: 0x7097,\n\t3807: 0x7098,\n\t3808: 0x709B,\n\t3809: 0x70A4,\n\t3810: 0x70AB,\n\t3811: 0x70B0,\n\t3812: 0x70B1,\n\t3813: 0x70B4,\n\t3814: 0x70B7,\n\t3815: 0x70CA,\n\t3816: 0x70D1,\n\t3817: 0x70D3,\n\t3818: 0x70D4,\n\t3819: 0x70D5,\n\t3820: 0x70D6,\n\t3821: 0x70D8,\n\t3822: 0x70DC,\n\t3823: 0x70E4,\n\t3824: 0x70FA,\n\t3825: 0x7103,\n\t3826: 0x7104,\n\t3827: 0x7105,\n\t3828: 0x7106,\n\t3829: 0x7107,\n\t3830: 0x710B,\n\t3831: 0x710C,\n\t3832: 0x710F,\n\t3833: 0x711E,\n\t3834: 0x7120,\n\t3835: 0x712B,\n\t3836: 0x712D,\n\t3837: 0x712F,\n\t3838: 0x7130,\n\t3839: 0x7131,\n\t3840: 0x7138,\n\t3841: 0x7141,\n\t3842: 0x7145,\n\t3843: 0x7146,\n\t3844: 0x7147,\n\t3845: 0x714A,\n\t3846: 0x714B,\n\t3847: 0x7150,\n\t3848: 0x7152,\n\t3849: 0x7157,\n\t3850: 0x715A,\n\t3851: 0x715C,\n\t3852: 0x715E,\n\t3853: 0x7160,\n\t3854: 0x7168,\n\t3855: 0x7179,\n\t3856: 0x7180,\n\t3857: 0x7185,\n\t3858: 0x7187,\n\t3859: 0x718C,\n\t3860: 0x7192,\n\t3861: 0x719A,\n\t3862: 0x719B,\n\t3863: 0x71A0,\n\t3864: 0x71A2,\n\t3865: 0x71AF,\n\t3866: 0x71B0,\n\t3867: 0x71B2,\n\t3868: 0x71B3,\n\t3869: 0x71BA,\n\t3870: 0x71BF,\n\t3871: 0x71C0,\n\t3872: 0x71C1,\n\t3873: 0x71C4,\n\t3874: 0x71CB,\n\t3875: 0x71CC,\n\t3876: 0x71D3,\n\t3877: 0x71D6,\n\t3878: 0x71D9,\n\t3879: 0x71DA,\n\t3880: 0x71DC,\n\t3881: 0x71F8,\n\t3882: 0x71FE,\n\t3883: 0x7200,\n\t3884: 0x7207,\n\t3885: 0x7208,\n\t3886: 0x7209,\n\t3887: 0x7213,\n\t3888: 0x7217,\n\t3889: 0x721A,\n\t3890: 0x721D,\n\t3891: 0x721F,\n\t3892: 0x7224,\n\t3893: 0x722B,\n\t3894: 0x722F,\n\t3895: 0x7234,\n\t3896: 0x7238,\n\t3897: 0x7239,\n\t3898: 0x7241,\n\t3899: 0x7242,\n\t3900: 0x7243,\n\t3901: 0x7245,\n\t3902: 0x724E,\n\t3903: 0x724F,\n\t3904: 0x7250,\n\t3905: 0x7253,\n\t3906: 0x7255,\n\t3907: 0x7256,\n\t3908: 0x725A,\n\t3909: 0x725C,\n\t3910: 0x725E,\n\t3911: 0x7260,\n\t3912: 0x7263,\n\t3913: 0x7268,\n\t3914: 0x726B,\n\t3915: 0x726E,\n\t3916: 0x726F,\n\t3917: 0x7271,\n\t3918: 0x7277,\n\t3919: 0x7278,\n\t3920: 0x727B,\n\t3921: 0x727C,\n\t3922: 0x727F,\n\t3923: 0x7284,\n\t3924: 0x7289,\n\t3925: 0x728D,\n\t3926: 0x728E,\n\t3927: 0x7293,\n\t3928: 0x729B,\n\t3929: 0x72A8,\n\t3930: 0x72AD,\n\t3931: 0x72AE,\n\t3932: 0x72B1,\n\t3933: 0x72B4,\n\t3934: 0x72BE,\n\t3935: 0x72C1,\n\t3936: 0x72C7,\n\t3937: 0x72C9,\n\t3938: 0x72CC,\n\t3939: 0x72D5,\n\t3940: 0x72D6,\n\t3941: 0x72D8,\n\t3942: 0x72DF,\n\t3943: 0x72E5,\n\t3944: 0x72F3,\n\t3945: 0x72F4,\n\t3946: 0x72FA,\n\t3947: 0x72FB,\n\t3948: 0x72FE,\n\t3949: 0x7302,\n\t3950: 0x7304,\n\t3951: 0x7305,\n\t3952: 0x7307,\n\t3953: 0x730B,\n\t3954: 0x730D,\n\t3955: 0x7312,\n\t3956: 0x7313,\n\t3957: 0x7318,\n\t3958: 0x7319,\n\t3959: 0x731E,\n\t3960: 0x7322,\n\t3961: 0x7324,\n\t3962: 0x7327,\n\t3963: 0x7328,\n\t3964: 0x732C,\n\t3965: 0x7331,\n\t3966: 0x7332,\n\t3967: 0x7335,\n\t3968: 0x733A,\n\t3969: 0x733B,\n\t3970: 0x733D,\n\t3971: 0x7343,\n\t3972: 0x734D,\n\t3973: 0x7350,\n\t3974: 0x7352,\n\t3975: 0x7356,\n\t3976: 0x7358,\n\t3977: 0x735D,\n\t3978: 0x735E,\n\t3979: 0x735F,\n\t3980: 0x7360,\n\t3981: 0x7366,\n\t3982: 0x7367,\n\t3983: 0x7369,\n\t3984: 0x736B,\n\t3985: 0x736C,\n\t3986: 0x736E,\n\t3987: 0x736F,\n\t3988: 0x7371,\n\t3989: 0x7377,\n\t3990: 0x7379,\n\t3991: 0x737C,\n\t3992: 0x7380,\n\t3993: 0x7381,\n\t3994: 0x7383,\n\t3995: 0x7385,\n\t3996: 0x7386,\n\t3997: 0x738E,\n\t3998: 0x7390,\n\t3999: 0x7393,\n\t4000: 0x7395,\n\t4001: 0x7397,\n\t4002: 0x7398,\n\t4003: 0x739C,\n\t4004: 0x739E,\n\t4005: 0x739F,\n\t4006: 0x73A0,\n\t4007: 0x73A2,\n\t4008: 0x73A5,\n\t4009: 0x73A6,\n\t4010: 0x73AA,\n\t4011: 0x73AB,\n\t4012: 0x73AD,\n\t4013: 0x73B5,\n\t4014: 0x73B7,\n\t4015: 0x73B9,\n\t4016: 0x73BC,\n\t4017: 0x73BD,\n\t4018: 0x73BF,\n\t4019: 0x73C5,\n\t4020: 0x73C6,\n\t4021: 0x73C9,\n\t4022: 0x73CB,\n\t4023: 0x73CC,\n\t4024: 0x73CF,\n\t4025: 0x73D2,\n\t4026: 0x73D3,\n\t4027: 0x73D6,\n\t4028: 0x73D9,\n\t4029: 0x73DD,\n\t4030: 0x73E1,\n\t4031: 0x73E3,\n\t4032: 0x73E6,\n\t4033: 0x73E7,\n\t4034: 0x73E9,\n\t4035: 0x73F4,\n\t4036: 0x73F5,\n\t4037: 0x73F7,\n\t4038: 0x73F9,\n\t4039: 0x73FA,\n\t4040: 0x73FB,\n\t4041: 0x73FD,\n\t4042: 0x73FF,\n\t4043: 0x7400,\n\t4044: 0x7401,\n\t4045: 0x7404,\n\t4046: 0x7407,\n\t4047: 0x740A,\n\t4048: 0x7411,\n\t4049: 0x741A,\n\t4050: 0x741B,\n\t4051: 0x7424,\n\t4052: 0x7426,\n\t4053: 0x7428,\n\t4054: 0x7429,\n\t4055: 0x742A,\n\t4056: 0x742B,\n\t4057: 0x742C,\n\t4058: 0x742D,\n\t4059: 0x742E,\n\t4060: 0x742F,\n\t4061: 0x7430,\n\t4062: 0x7431,\n\t4063: 0x7439,\n\t4064: 0x7440,\n\t4065: 0x7443,\n\t4066: 0x7444,\n\t4067: 0x7446,\n\t4068: 0x7447,\n\t4069: 0x744B,\n\t4070: 0x744D,\n\t4071: 0x7451,\n\t4072: 0x7452,\n\t4073: 0x7457,\n\t4074: 0x745D,\n\t4075: 0x7462,\n\t4076: 0x7466,\n\t4077: 0x7467,\n\t4078: 0x7468,\n\t4079: 0x746B,\n\t4080: 0x746D,\n\t4081: 0x746E,\n\t4082: 0x7471,\n\t4083: 0x7472,\n\t4084: 0x7480,\n\t4085: 0x7481,\n\t4086: 0x7485,\n\t4087: 0x7486,\n\t4088: 0x7487,\n\t4089: 0x7489,\n\t4090: 0x748F,\n\t4091: 0x7490,\n\t4092: 0x7491,\n\t4093: 0x7492,\n\t4094: 0x7498,\n\t4095: 0x7499,\n\t4096: 0x749A,\n\t4097: 0x749C,\n\t4098: 0x749F,\n\t4099: 0x74A0,\n\t4100: 0x74A1,\n\t4101: 0x74A3,\n\t4102: 0x74A6,\n\t4103: 0x74A8,\n\t4104: 0x74A9,\n\t4105: 0x74AA,\n\t4106: 0x74AB,\n\t4107: 0x74AE,\n\t4108: 0x74AF,\n\t4109: 0x74B1,\n\t4110: 0x74B2,\n\t4111: 0x74B5,\n\t4112: 0x74B9,\n\t4113: 0x74BB,\n\t4114: 0x74BF,\n\t4115: 0x74C8,\n\t4116: 0x74C9,\n\t4117: 0x74CC,\n\t4118: 0x74D0,\n\t4119: 0x74D3,\n\t4120: 0x74D8,\n\t4121: 0x74DA,\n\t4122: 0x74DB,\n\t4123: 0x74DE,\n\t4124: 0x74DF,\n\t4125: 0x74E4,\n\t4126: 0x74E8,\n\t4127: 0x74EA,\n\t4128: 0x74EB,\n\t4129: 0x74EF,\n\t4130: 0x74F4,\n\t4131: 0x74FA,\n\t4132: 0x74FB,\n\t4133: 0x74FC,\n\t4134: 0x74FF,\n\t4135: 0x7506,\n\t4136: 0x7512,\n\t4137: 0x7516,\n\t4138: 0x7517,\n\t4139: 0x7520,\n\t4140: 0x7521,\n\t4141: 0x7524,\n\t4142: 0x7527,\n\t4143: 0x7529,\n\t4144: 0x752A,\n\t4145: 0x752F,\n\t4146: 0x7536,\n\t4147: 0x7539,\n\t4148: 0x753D,\n\t4149: 0x753E,\n\t4150: 0x753F,\n\t4151: 0x7540,\n\t4152: 0x7543,\n\t4153: 0x7547,\n\t4154: 0x7548,\n\t4155: 0x754E,\n\t4156: 0x7550,\n\t4157: 0x7552,\n\t4158: 0x7557,\n\t4159: 0x755E,\n\t4160: 0x755F,\n\t4161: 0x7561,\n\t4162: 0x756F,\n\t4163: 0x7571,\n\t4164: 0x7579,\n\t4165: 0x757A,\n\t4166: 0x757B,\n\t4167: 0x757C,\n\t4168: 0x757D,\n\t4169: 0x757E,\n\t4170: 0x7581,\n\t4171: 0x7585,\n\t4172: 0x7590,\n\t4173: 0x7592,\n\t4174: 0x7593,\n\t4175: 0x7595,\n\t4176: 0x7599,\n\t4177: 0x759C,\n\t4178: 0x75A2,\n\t4179: 0x75A4,\n\t4180: 0x75B4,\n\t4181: 0x75BA,\n\t4182: 0x75BF,\n\t4183: 0x75C0,\n\t4184: 0x75C1,\n\t4185: 0x75C4,\n\t4186: 0x75C6,\n\t4187: 0x75CC,\n\t4188: 0x75CE,\n\t4189: 0x75CF,\n\t4190: 0x75D7,\n\t4191: 0x75DC,\n\t4192: 0x75DF,\n\t4193: 0x75E0,\n\t4194: 0x75E1,\n\t4195: 0x75E4,\n\t4196: 0x75E7,\n\t4197: 0x75EC,\n\t4198: 0x75EE,\n\t4199: 0x75EF,\n\t4200: 0x75F1,\n\t4201: 0x75F9,\n\t4202: 0x7600,\n\t4203: 0x7602,\n\t4204: 0x7603,\n\t4205: 0x7604,\n\t4206: 0x7607,\n\t4207: 0x7608,\n\t4208: 0x760A,\n\t4209: 0x760C,\n\t4210: 0x760F,\n\t4211: 0x7612,\n\t4212: 0x7613,\n\t4213: 0x7615,\n\t4214: 0x7616,\n\t4215: 0x7619,\n\t4216: 0x761B,\n\t4217: 0x761C,\n\t4218: 0x761D,\n\t4219: 0x761E,\n\t4220: 0x7623,\n\t4221: 0x7625,\n\t4222: 0x7626,\n\t4223: 0x7629,\n\t4224: 0x762D,\n\t4225: 0x7632,\n\t4226: 0x7633,\n\t4227: 0x7635,\n\t4228: 0x7638,\n\t4229: 0x7639,\n\t4230: 0x763A,\n\t4231: 0x763C,\n\t4232: 0x764A,\n\t4233: 0x7640,\n\t4234: 0x7641,\n\t4235: 0x7643,\n\t4236: 0x7644,\n\t4237: 0x7645,\n\t4238: 0x7649,\n\t4239: 0x764B,\n\t4240: 0x7655,\n\t4241: 0x7659,\n\t4242: 0x765F,\n\t4243: 0x7664,\n\t4244: 0x7665,\n\t4245: 0x766D,\n\t4246: 0x766E,\n\t4247: 0x766F,\n\t4248: 0x7671,\n\t4249: 0x7674,\n\t4250: 0x7681,\n\t4251: 0x7685,\n\t4252: 0x768C,\n\t4253: 0x768D,\n\t4254: 0x7695,\n\t4255: 0x769B,\n\t4256: 0x769C,\n\t4257: 0x769D,\n\t4258: 0x769F,\n\t4259: 0x76A0,\n\t4260: 0x76A2,\n\t4261: 0x76A3,\n\t4262: 0x76A4,\n\t4263: 0x76A5,\n\t4264: 0x76A6,\n\t4265: 0x76A7,\n\t4266: 0x76A8,\n\t4267: 0x76AA,\n\t4268: 0x76AD,\n\t4269: 0x76BD,\n\t4270: 0x76C1,\n\t4271: 0x76C5,\n\t4272: 0x76C9,\n\t4273: 0x76CB,\n\t4274: 0x76CC,\n\t4275: 0x76CE,\n\t4276: 0x76D4,\n\t4277: 0x76D9,\n\t4278: 0x76E0,\n\t4279: 0x76E6,\n\t4280: 0x76E8,\n\t4281: 0x76EC,\n\t4282: 0x76F0,\n\t4283: 0x76F1,\n\t4284: 0x76F6,\n\t4285: 0x76F9,\n\t4286: 0x76FC,\n\t4287: 0x7700,\n\t4288: 0x7706,\n\t4289: 0x770A,\n\t4290: 0x770E,\n\t4291: 0x7712,\n\t4292: 0x7714,\n\t4293: 0x7715,\n\t4294: 0x7717,\n\t4295: 0x7719,\n\t4296: 0x771A,\n\t4297: 0x771C,\n\t4298: 0x7722,\n\t4299: 0x7728,\n\t4300: 0x772D,\n\t4301: 0x772E,\n\t4302: 0x772F,\n\t4303: 0x7734,\n\t4304: 0x7735,\n\t4305: 0x7736,\n\t4306: 0x7739,\n\t4307: 0x773D,\n\t4308: 0x773E,\n\t4309: 0x7742,\n\t4310: 0x7745,\n\t4311: 0x7746,\n\t4312: 0x774A,\n\t4313: 0x774D,\n\t4314: 0x774E,\n\t4315: 0x774F,\n\t4316: 0x7752,\n\t4317: 0x7756,\n\t4318: 0x7757,\n\t4319: 0x775C,\n\t4320: 0x775E,\n\t4321: 0x775F,\n\t4322: 0x7760,\n\t4323: 0x7762,\n\t4324: 0x7764,\n\t4325: 0x7767,\n\t4326: 0x776A,\n\t4327: 0x776C,\n\t4328: 0x7770,\n\t4329: 0x7772,\n\t4330: 0x7773,\n\t4331: 0x7774,\n\t4332: 0x777A,\n\t4333: 0x777D,\n\t4334: 0x7780,\n\t4335: 0x7784,\n\t4336: 0x778C,\n\t4337: 0x778D,\n\t4338: 0x7794,\n\t4339: 0x7795,\n\t4340: 0x7796,\n\t4341: 0x779A,\n\t4342: 0x779F,\n\t4343: 0x77A2,\n\t4344: 0x77A7,\n\t4345: 0x77AA,\n\t4346: 0x77AE,\n\t4347: 0x77AF,\n\t4348: 0x77B1,\n\t4349: 0x77B5,\n\t4350: 0x77BE,\n\t4351: 0x77C3,\n\t4352: 0x77C9,\n\t4353: 0x77D1,\n\t4354: 0x77D2,\n\t4355: 0x77D5,\n\t4356: 0x77D9,\n\t4357: 0x77DE,\n\t4358: 0x77DF,\n\t4359: 0x77E0,\n\t4360: 0x77E4,\n\t4361: 0x77E6,\n\t4362: 0x77EA,\n\t4363: 0x77EC,\n\t4364: 0x77F0,\n\t4365: 0x77F1,\n\t4366: 0x77F4,\n\t4367: 0x77F8,\n\t4368: 0x77FB,\n\t4369: 0x7805,\n\t4370: 0x7806,\n\t4371: 0x7809,\n\t4372: 0x780D,\n\t4373: 0x780E,\n\t4374: 0x7811,\n\t4375: 0x781D,\n\t4376: 0x7821,\n\t4377: 0x7822,\n\t4378: 0x7823,\n\t4379: 0x782D,\n\t4380: 0x782E,\n\t4381: 0x7830,\n\t4382: 0x7835,\n\t4383: 0x7837,\n\t4384: 0x7843,\n\t4385: 0x7844,\n\t4386: 0x7847,\n\t4387: 0x7848,\n\t4388: 0x784C,\n\t4389: 0x784E,\n\t4390: 0x7852,\n\t4391: 0x785C,\n\t4392: 0x785E,\n\t4393: 0x7860,\n\t4394: 0x7861,\n\t4395: 0x7863,\n\t4396: 0x7864,\n\t4397: 0x7868,\n\t4398: 0x786A,\n\t4399: 0x786E,\n\t4400: 0x787A,\n\t4401: 0x787E,\n\t4402: 0x788A,\n\t4403: 0x788F,\n\t4404: 0x7894,\n\t4405: 0x7898,\n\t4406: 0x78A1,\n\t4407: 0x789D,\n\t4408: 0x789E,\n\t4409: 0x789F,\n\t4410: 0x78A4,\n\t4411: 0x78A8,\n\t4412: 0x78AC,\n\t4413: 0x78AD,\n\t4414: 0x78B0,\n\t4415: 0x78B1,\n\t4416: 0x78B2,\n\t4417: 0x78B3,\n\t4418: 0x78BB,\n\t4419: 0x78BD,\n\t4420: 0x78BF,\n\t4421: 0x78C7,\n\t4422: 0x78C8,\n\t4423: 0x78C9,\n\t4424: 0x78CC,\n\t4425: 0x78CE,\n\t4426: 0x78D2,\n\t4427: 0x78D3,\n\t4428: 0x78D5,\n\t4429: 0x78D6,\n\t4430: 0x78E4,\n\t4431: 0x78DB,\n\t4432: 0x78DF,\n\t4433: 0x78E0,\n\t4434: 0x78E1,\n\t4435: 0x78E6,\n\t4436: 0x78EA,\n\t4437: 0x78F2,\n\t4438: 0x78F3,\n\t4439: 0x7900,\n\t4440: 0x78F6,\n\t4441: 0x78F7,\n\t4442: 0x78FA,\n\t4443: 0x78FB,\n\t4444: 0x78FF,\n\t4445: 0x7906,\n\t4446: 0x790C,\n\t4447: 0x7910,\n\t4448: 0x791A,\n\t4449: 0x791C,\n\t4450: 0x791E,\n\t4451: 0x791F,\n\t4452: 0x7920,\n\t4453: 0x7925,\n\t4454: 0x7927,\n\t4455: 0x7929,\n\t4456: 0x792D,\n\t4457: 0x7931,\n\t4458: 0x7934,\n\t4459: 0x7935,\n\t4460: 0x793B,\n\t4461: 0x793D,\n\t4462: 0x793F,\n\t4463: 0x7944,\n\t4464: 0x7945,\n\t4465: 0x7946,\n\t4466: 0x794A,\n\t4467: 0x794B,\n\t4468: 0x794F,\n\t4469: 0x7951,\n\t4470: 0x7954,\n\t4471: 0x7958,\n\t4472: 0x795B,\n\t4473: 0x795C,\n\t4474: 0x7967,\n\t4475: 0x7969,\n\t4476: 0x796B,\n\t4477: 0x7972,\n\t4478: 0x7979,\n\t4479: 0x797B,\n\t4480: 0x797C,\n\t4481: 0x797E,\n\t4482: 0x798B,\n\t4483: 0x798C,\n\t4484: 0x7991,\n\t4485: 0x7993,\n\t4486: 0x7994,\n\t4487: 0x7995,\n\t4488: 0x7996,\n\t4489: 0x7998,\n\t4490: 0x799B,\n\t4491: 0x799C,\n\t4492: 0x79A1,\n\t4493: 0x79A8,\n\t4494: 0x79A9,\n\t4495: 0x79AB,\n\t4496: 0x79AF,\n\t4497: 0x79B1,\n\t4498: 0x79B4,\n\t4499: 0x79B8,\n\t4500: 0x79BB,\n\t4501: 0x79C2,\n\t4502: 0x79C4,\n\t4503: 0x79C7,\n\t4504: 0x79C8,\n\t4505: 0x79CA,\n\t4506: 0x79CF,\n\t4507: 0x79D4,\n\t4508: 0x79D6,\n\t4509: 0x79DA,\n\t4510: 0x79DD,\n\t4511: 0x79DE,\n\t4512: 0x79E0,\n\t4513: 0x79E2,\n\t4514: 0x79E5,\n\t4515: 0x79EA,\n\t4516: 0x79EB,\n\t4517: 0x79ED,\n\t4518: 0x79F1,\n\t4519: 0x79F8,\n\t4520: 0x79FC,\n\t4521: 0x7A02,\n\t4522: 0x7A03,\n\t4523: 0x7A07,\n\t4524: 0x7A09,\n\t4525: 0x7A0A,\n\t4526: 0x7A0C,\n\t4527: 0x7A11,\n\t4528: 0x7A15,\n\t4529: 0x7A1B,\n\t4530: 0x7A1E,\n\t4531: 0x7A21,\n\t4532: 0x7A27,\n\t4533: 0x7A2B,\n\t4534: 0x7A2D,\n\t4535: 0x7A2F,\n\t4536: 0x7A30,\n\t4537: 0x7A34,\n\t4538: 0x7A35,\n\t4539: 0x7A38,\n\t4540: 0x7A39,\n\t4541: 0x7A3A,\n\t4542: 0x7A44,\n\t4543: 0x7A45,\n\t4544: 0x7A47,\n\t4545: 0x7A48,\n\t4546: 0x7A4C,\n\t4547: 0x7A55,\n\t4548: 0x7A56,\n\t4549: 0x7A59,\n\t4550: 0x7A5C,\n\t4551: 0x7A5D,\n\t4552: 0x7A5F,\n\t4553: 0x7A60,\n\t4554: 0x7A65,\n\t4555: 0x7A67,\n\t4556: 0x7A6A,\n\t4557: 0x7A6D,\n\t4558: 0x7A75,\n\t4559: 0x7A78,\n\t4560: 0x7A7E,\n\t4561: 0x7A80,\n\t4562: 0x7A82,\n\t4563: 0x7A85,\n\t4564: 0x7A86,\n\t4565: 0x7A8A,\n\t4566: 0x7A8B,\n\t4567: 0x7A90,\n\t4568: 0x7A91,\n\t4569: 0x7A94,\n\t4570: 0x7A9E,\n\t4571: 0x7AA0,\n\t4572: 0x7AA3,\n\t4573: 0x7AAC,\n\t4574: 0x7AB3,\n\t4575: 0x7AB5,\n\t4576: 0x7AB9,\n\t4577: 0x7ABB,\n\t4578: 0x7ABC,\n\t4579: 0x7AC6,\n\t4580: 0x7AC9,\n\t4581: 0x7ACC,\n\t4582: 0x7ACE,\n\t4583: 0x7AD1,\n\t4584: 0x7ADB,\n\t4585: 0x7AE8,\n\t4586: 0x7AE9,\n\t4587: 0x7AEB,\n\t4588: 0x7AEC,\n\t4589: 0x7AF1,\n\t4590: 0x7AF4,\n\t4591: 0x7AFB,\n\t4592: 0x7AFD,\n\t4593: 0x7AFE,\n\t4594: 0x7B07,\n\t4595: 0x7B14,\n\t4596: 0x7B1F,\n\t4597: 0x7B23,\n\t4598: 0x7B27,\n\t4599: 0x7B29,\n\t4600: 0x7B2A,\n\t4601: 0x7B2B,\n\t4602: 0x7B2D,\n\t4603: 0x7B2E,\n\t4604: 0x7B2F,\n\t4605: 0x7B30,\n\t4606: 0x7B31,\n\t4607: 0x7B34,\n\t4608: 0x7B3D,\n\t4609: 0x7B3F,\n\t4610: 0x7B40,\n\t4611: 0x7B41,\n\t4612: 0x7B47,\n\t4613: 0x7B4E,\n\t4614: 0x7B55,\n\t4615: 0x7B60,\n\t4616: 0x7B64,\n\t4617: 0x7B66,\n\t4618: 0x7B69,\n\t4619: 0x7B6A,\n\t4620: 0x7B6D,\n\t4621: 0x7B6F,\n\t4622: 0x7B72,\n\t4623: 0x7B73,\n\t4624: 0x7B77,\n\t4625: 0x7B84,\n\t4626: 0x7B89,\n\t4627: 0x7B8E,\n\t4628: 0x7B90,\n\t4629: 0x7B91,\n\t4630: 0x7B96,\n\t4631: 0x7B9B,\n\t4632: 0x7B9E,\n\t4633: 0x7BA0,\n\t4634: 0x7BA5,\n\t4635: 0x7BAC,\n\t4636: 0x7BAF,\n\t4637: 0x7BB0,\n\t4638: 0x7BB2,\n\t4639: 0x7BB5,\n\t4640: 0x7BB6,\n\t4641: 0x7BBA,\n\t4642: 0x7BBB,\n\t4643: 0x7BBC,\n\t4644: 0x7BBD,\n\t4645: 0x7BC2,\n\t4646: 0x7BC5,\n\t4647: 0x7BC8,\n\t4648: 0x7BCA,\n\t4649: 0x7BD4,\n\t4650: 0x7BD6,\n\t4651: 0x7BD7,\n\t4652: 0x7BD9,\n\t4653: 0x7BDA,\n\t4654: 0x7BDB,\n\t4655: 0x7BE8,\n\t4656: 0x7BEA,\n\t4657: 0x7BF2,\n\t4658: 0x7BF4,\n\t4659: 0x7BF5,\n\t4660: 0x7BF8,\n\t4661: 0x7BF9,\n\t4662: 0x7BFA,\n\t4663: 0x7BFC,\n\t4664: 0x7BFE,\n\t4665: 0x7C01,\n\t4666: 0x7C02,\n\t4667: 0x7C03,\n\t4668: 0x7C04,\n\t4669: 0x7C06,\n\t4670: 0x7C09,\n\t4671: 0x7C0B,\n\t4672: 0x7C0C,\n\t4673: 0x7C0E,\n\t4674: 0x7C0F,\n\t4675: 0x7C19,\n\t4676: 0x7C1B,\n\t4677: 0x7C20,\n\t4678: 0x7C25,\n\t4679: 0x7C26,\n\t4680: 0x7C28,\n\t4681: 0x7C2C,\n\t4682: 0x7C31,\n\t4683: 0x7C33,\n\t4684: 0x7C34,\n\t4685: 0x7C36,\n\t4686: 0x7C39,\n\t4687: 0x7C3A,\n\t4688: 0x7C46,\n\t4689: 0x7C4A,\n\t4690: 0x7C55,\n\t4691: 0x7C51,\n\t4692: 0x7C52,\n\t4693: 0x7C53,\n\t4694: 0x7C59,\n\t4695: 0x7C5A,\n\t4696: 0x7C5B,\n\t4697: 0x7C5C,\n\t4698: 0x7C5D,\n\t4699: 0x7C5E,\n\t4700: 0x7C61,\n\t4701: 0x7C63,\n\t4702: 0x7C67,\n\t4703: 0x7C69,\n\t4704: 0x7C6D,\n\t4705: 0x7C6E,\n\t4706: 0x7C70,\n\t4707: 0x7C72,\n\t4708: 0x7C79,\n\t4709: 0x7C7C,\n\t4710: 0x7C7D,\n\t4711: 0x7C86,\n\t4712: 0x7C87,\n\t4713: 0x7C8F,\n\t4714: 0x7C94,\n\t4715: 0x7C9E,\n\t4716: 0x7CA0,\n\t4717: 0x7CA6,\n\t4718: 0x7CB0,\n\t4719: 0x7CB6,\n\t4720: 0x7CB7,\n\t4721: 0x7CBA,\n\t4722: 0x7CBB,\n\t4723: 0x7CBC,\n\t4724: 0x7CBF,\n\t4725: 0x7CC4,\n\t4726: 0x7CC7,\n\t4727: 0x7CC8,\n\t4728: 0x7CC9,\n\t4729: 0x7CCD,\n\t4730: 0x7CCF,\n\t4731: 0x7CD3,\n\t4732: 0x7CD4,\n\t4733: 0x7CD5,\n\t4734: 0x7CD7,\n\t4735: 0x7CD9,\n\t4736: 0x7CDA,\n\t4737: 0x7CDD,\n\t4738: 0x7CE6,\n\t4739: 0x7CE9,\n\t4740: 0x7CEB,\n\t4741: 0x7CF5,\n\t4742: 0x7D03,\n\t4743: 0x7D07,\n\t4744: 0x7D08,\n\t4745: 0x7D09,\n\t4746: 0x7D0F,\n\t4747: 0x7D11,\n\t4748: 0x7D12,\n\t4749: 0x7D13,\n\t4750: 0x7D16,\n\t4751: 0x7D1D,\n\t4752: 0x7D1E,\n\t4753: 0x7D23,\n\t4754: 0x7D26,\n\t4755: 0x7D2A,\n\t4756: 0x7D2D,\n\t4757: 0x7D31,\n\t4758: 0x7D3C,\n\t4759: 0x7D3D,\n\t4760: 0x7D3E,\n\t4761: 0x7D40,\n\t4762: 0x7D41,\n\t4763: 0x7D47,\n\t4764: 0x7D48,\n\t4765: 0x7D4D,\n\t4766: 0x7D51,\n\t4767: 0x7D53,\n\t4768: 0x7D57,\n\t4769: 0x7D59,\n\t4770: 0x7D5A,\n\t4771: 0x7D5C,\n\t4772: 0x7D5D,\n\t4773: 0x7D65,\n\t4774: 0x7D67,\n\t4775: 0x7D6A,\n\t4776: 0x7D70,\n\t4777: 0x7D78,\n\t4778: 0x7D7A,\n\t4779: 0x7D7B,\n\t4780: 0x7D7F,\n\t4781: 0x7D81,\n\t4782: 0x7D82,\n\t4783: 0x7D83,\n\t4784: 0x7D85,\n\t4785: 0x7D86,\n\t4786: 0x7D88,\n\t4787: 0x7D8B,\n\t4788: 0x7D8C,\n\t4789: 0x7D8D,\n\t4790: 0x7D91,\n\t4791: 0x7D96,\n\t4792: 0x7D97,\n\t4793: 0x7D9D,\n\t4794: 0x7D9E,\n\t4795: 0x7DA6,\n\t4796: 0x7DA7,\n\t4797: 0x7DAA,\n\t4798: 0x7DB3,\n\t4799: 0x7DB6,\n\t4800: 0x7DB7,\n\t4801: 0x7DB9,\n\t4802: 0x7DC2,\n\t4803: 0x7DC3,\n\t4804: 0x7DC4,\n\t4805: 0x7DC5,\n\t4806: 0x7DC6,\n\t4807: 0x7DCC,\n\t4808: 0x7DCD,\n\t4809: 0x7DCE,\n\t4810: 0x7DD7,\n\t4811: 0x7DD9,\n\t4812: 0x7E00,\n\t4813: 0x7DE2,\n\t4814: 0x7DE5,\n\t4815: 0x7DE6,\n\t4816: 0x7DEA,\n\t4817: 0x7DEB,\n\t4818: 0x7DED,\n\t4819: 0x7DF1,\n\t4820: 0x7DF5,\n\t4821: 0x7DF6,\n\t4822: 0x7DF9,\n\t4823: 0x7DFA,\n\t4824: 0x7E08,\n\t4825: 0x7E10,\n\t4826: 0x7E11,\n\t4827: 0x7E15,\n\t4828: 0x7E17,\n\t4829: 0x7E1C,\n\t4830: 0x7E1D,\n\t4831: 0x7E20,\n\t4832: 0x7E27,\n\t4833: 0x7E28,\n\t4834: 0x7E2C,\n\t4835: 0x7E2D,\n\t4836: 0x7E2F,\n\t4837: 0x7E33,\n\t4838: 0x7E36,\n\t4839: 0x7E3F,\n\t4840: 0x7E44,\n\t4841: 0x7E45,\n\t4842: 0x7E47,\n\t4843: 0x7E4E,\n\t4844: 0x7E50,\n\t4845: 0x7E52,\n\t4846: 0x7E58,\n\t4847: 0x7E5F,\n\t4848: 0x7E61,\n\t4849: 0x7E62,\n\t4850: 0x7E65,\n\t4851: 0x7E6B,\n\t4852: 0x7E6E,\n\t4853: 0x7E6F,\n\t4854: 0x7E73,\n\t4855: 0x7E78,\n\t4856: 0x7E7E,\n\t4857: 0x7E81,\n\t4858: 0x7E86,\n\t4859: 0x7E87,\n\t4860: 0x7E8A,\n\t4861: 0x7E8D,\n\t4862: 0x7E91,\n\t4863: 0x7E95,\n\t4864: 0x7E98,\n\t4865: 0x7E9A,\n\t4866: 0x7E9D,\n\t4867: 0x7E9E,\n\t4868: 0x7F3C,\n\t4869: 0x7F3B,\n\t4870: 0x7F3D,\n\t4871: 0x7F3E,\n\t4872: 0x7F3F,\n\t4873: 0x7F43,\n\t4874: 0x7F44,\n\t4875: 0x7F47,\n\t4876: 0x7F4F,\n\t4877: 0x7F52,\n\t4878: 0x7F53,\n\t4879: 0x7F5B,\n\t4880: 0x7F5C,\n\t4881: 0x7F5D,\n\t4882: 0x7F61,\n\t4883: 0x7F63,\n\t4884: 0x7F64,\n\t4885: 0x7F65,\n\t4886: 0x7F66,\n\t4887: 0x7F6D,\n\t4888: 0x7F71,\n\t4889: 0x7F7D,\n\t4890: 0x7F7E,\n\t4891: 0x7F7F,\n\t4892: 0x7F80,\n\t4893: 0x7F8B,\n\t4894: 0x7F8D,\n\t4895: 0x7F8F,\n\t4896: 0x7F90,\n\t4897: 0x7F91,\n\t4898: 0x7F96,\n\t4899: 0x7F97,\n\t4900: 0x7F9C,\n\t4901: 0x7FA1,\n\t4902: 0x7FA2,\n\t4903: 0x7FA6,\n\t4904: 0x7FAA,\n\t4905: 0x7FAD,\n\t4906: 0x7FB4,\n\t4907: 0x7FBC,\n\t4908: 0x7FBF,\n\t4909: 0x7FC0,\n\t4910: 0x7FC3,\n\t4911: 0x7FC8,\n\t4912: 0x7FCE,\n\t4913: 0x7FCF,\n\t4914: 0x7FDB,\n\t4915: 0x7FDF,\n\t4916: 0x7FE3,\n\t4917: 0x7FE5,\n\t4918: 0x7FE8,\n\t4919: 0x7FEC,\n\t4920: 0x7FEE,\n\t4921: 0x7FEF,\n\t4922: 0x7FF2,\n\t4923: 0x7FFA,\n\t4924: 0x7FFD,\n\t4925: 0x7FFE,\n\t4926: 0x7FFF,\n\t4927: 0x8007,\n\t4928: 0x8008,\n\t4929: 0x800A,\n\t4930: 0x800D,\n\t4931: 0x800E,\n\t4932: 0x800F,\n\t4933: 0x8011,\n\t4934: 0x8013,\n\t4935: 0x8014,\n\t4936: 0x8016,\n\t4937: 0x801D,\n\t4938: 0x801E,\n\t4939: 0x801F,\n\t4940: 0x8020,\n\t4941: 0x8024,\n\t4942: 0x8026,\n\t4943: 0x802C,\n\t4944: 0x802E,\n\t4945: 0x8030,\n\t4946: 0x8034,\n\t4947: 0x8035,\n\t4948: 0x8037,\n\t4949: 0x8039,\n\t4950: 0x803A,\n\t4951: 0x803C,\n\t4952: 0x803E,\n\t4953: 0x8040,\n\t4954: 0x8044,\n\t4955: 0x8060,\n\t4956: 0x8064,\n\t4957: 0x8066,\n\t4958: 0x806D,\n\t4959: 0x8071,\n\t4960: 0x8075,\n\t4961: 0x8081,\n\t4962: 0x8088,\n\t4963: 0x808E,\n\t4964: 0x809C,\n\t4965: 0x809E,\n\t4966: 0x80A6,\n\t4967: 0x80A7,\n\t4968: 0x80AB,\n\t4969: 0x80B8,\n\t4970: 0x80B9,\n\t4971: 0x80C8,\n\t4972: 0x80CD,\n\t4973: 0x80CF,\n\t4974: 0x80D2,\n\t4975: 0x80D4,\n\t4976: 0x80D5,\n\t4977: 0x80D7,\n\t4978: 0x80D8,\n\t4979: 0x80E0,\n\t4980: 0x80ED,\n\t4981: 0x80EE,\n\t4982: 0x80F0,\n\t4983: 0x80F2,\n\t4984: 0x80F3,\n\t4985: 0x80F6,\n\t4986: 0x80F9,\n\t4987: 0x80FA,\n\t4988: 0x80FE,\n\t4989: 0x8103,\n\t4990: 0x810B,\n\t4991: 0x8116,\n\t4992: 0x8117,\n\t4993: 0x8118,\n\t4994: 0x811C,\n\t4995: 0x811E,\n\t4996: 0x8120,\n\t4997: 0x8124,\n\t4998: 0x8127,\n\t4999: 0x812C,\n\t5000: 0x8130,\n\t5001: 0x8135,\n\t5002: 0x813A,\n\t5003: 0x813C,\n\t5004: 0x8145,\n\t5005: 0x8147,\n\t5006: 0x814A,\n\t5007: 0x814C,\n\t5008: 0x8152,\n\t5009: 0x8157,\n\t5010: 0x8160,\n\t5011: 0x8161,\n\t5012: 0x8167,\n\t5013: 0x8168,\n\t5014: 0x8169,\n\t5015: 0x816D,\n\t5016: 0x816F,\n\t5017: 0x8177,\n\t5018: 0x8181,\n\t5019: 0x8190,\n\t5020: 0x8184,\n\t5021: 0x8185,\n\t5022: 0x8186,\n\t5023: 0x818B,\n\t5024: 0x818E,\n\t5025: 0x8196,\n\t5026: 0x8198,\n\t5027: 0x819B,\n\t5028: 0x819E,\n\t5029: 0x81A2,\n\t5030: 0x81AE,\n\t5031: 0x81B2,\n\t5032: 0x81B4,\n\t5033: 0x81BB,\n\t5034: 0x81CB,\n\t5035: 0x81C3,\n\t5036: 0x81C5,\n\t5037: 0x81CA,\n\t5038: 0x81CE,\n\t5039: 0x81CF,\n\t5040: 0x81D5,\n\t5041: 0x81D7,\n\t5042: 0x81DB,\n\t5043: 0x81DD,\n\t5044: 0x81DE,\n\t5045: 0x81E1,\n\t5046: 0x81E4,\n\t5047: 0x81EB,\n\t5048: 0x81EC,\n\t5049: 0x81F0,\n\t5050: 0x81F1,\n\t5051: 0x81F2,\n\t5052: 0x81F5,\n\t5053: 0x81F6,\n\t5054: 0x81F8,\n\t5055: 0x81F9,\n\t5056: 0x81FD,\n\t5057: 0x81FF,\n\t5058: 0x8200,\n\t5059: 0x8203,\n\t5060: 0x820F,\n\t5061: 0x8213,\n\t5062: 0x8214,\n\t5063: 0x8219,\n\t5064: 0x821A,\n\t5065: 0x821D,\n\t5066: 0x8221,\n\t5067: 0x8222,\n\t5068: 0x8228,\n\t5069: 0x8232,\n\t5070: 0x8234,\n\t5071: 0x823A,\n\t5072: 0x8243,\n\t5073: 0x8244,\n\t5074: 0x8245,\n\t5075: 0x8246,\n\t5076: 0x824B,\n\t5077: 0x824E,\n\t5078: 0x824F,\n\t5079: 0x8251,\n\t5080: 0x8256,\n\t5081: 0x825C,\n\t5082: 0x8260,\n\t5083: 0x8263,\n\t5084: 0x8267,\n\t5085: 0x826D,\n\t5086: 0x8274,\n\t5087: 0x827B,\n\t5088: 0x827D,\n\t5089: 0x827F,\n\t5090: 0x8280,\n\t5091: 0x8281,\n\t5092: 0x8283,\n\t5093: 0x8284,\n\t5094: 0x8287,\n\t5095: 0x8289,\n\t5096: 0x828A,\n\t5097: 0x828E,\n\t5098: 0x8291,\n\t5099: 0x8294,\n\t5100: 0x8296,\n\t5101: 0x8298,\n\t5102: 0x829A,\n\t5103: 0x829B,\n\t5104: 0x82A0,\n\t5105: 0x82A1,\n\t5106: 0x82A3,\n\t5107: 0x82A4,\n\t5108: 0x82A7,\n\t5109: 0x82A8,\n\t5110: 0x82A9,\n\t5111: 0x82AA,\n\t5112: 0x82AE,\n\t5113: 0x82B0,\n\t5114: 0x82B2,\n\t5115: 0x82B4,\n\t5116: 0x82B7,\n\t5117: 0x82BA,\n\t5118: 0x82BC,\n\t5119: 0x82BE,\n\t5120: 0x82BF,\n\t5121: 0x82C6,\n\t5122: 0x82D0,\n\t5123: 0x82D5,\n\t5124: 0x82DA,\n\t5125: 0x82E0,\n\t5126: 0x82E2,\n\t5127: 0x82E4,\n\t5128: 0x82E8,\n\t5129: 0x82EA,\n\t5130: 0x82ED,\n\t5131: 0x82EF,\n\t5132: 0x82F6,\n\t5133: 0x82F7,\n\t5134: 0x82FD,\n\t5135: 0x82FE,\n\t5136: 0x8300,\n\t5137: 0x8301,\n\t5138: 0x8307,\n\t5139: 0x8308,\n\t5140: 0x830A,\n\t5141: 0x830B,\n\t5142: 0x8354,\n\t5143: 0x831B,\n\t5144: 0x831D,\n\t5145: 0x831E,\n\t5146: 0x831F,\n\t5147: 0x8321,\n\t5148: 0x8322,\n\t5149: 0x832C,\n\t5150: 0x832D,\n\t5151: 0x832E,\n\t5152: 0x8330,\n\t5153: 0x8333,\n\t5154: 0x8337,\n\t5155: 0x833A,\n\t5156: 0x833C,\n\t5157: 0x833D,\n\t5158: 0x8342,\n\t5159: 0x8343,\n\t5160: 0x8344,\n\t5161: 0x8347,\n\t5162: 0x834D,\n\t5163: 0x834E,\n\t5164: 0x8351,\n\t5165: 0x8355,\n\t5166: 0x8356,\n\t5167: 0x8357,\n\t5168: 0x8370,\n\t5169: 0x8378,\n\t5170: 0x837D,\n\t5171: 0x837F,\n\t5172: 0x8380,\n\t5173: 0x8382,\n\t5174: 0x8384,\n\t5175: 0x8386,\n\t5176: 0x838D,\n\t5177: 0x8392,\n\t5178: 0x8394,\n\t5179: 0x8395,\n\t5180: 0x8398,\n\t5181: 0x8399,\n\t5182: 0x839B,\n\t5183: 0x839C,\n\t5184: 0x839D,\n\t5185: 0x83A6,\n\t5186: 0x83A7,\n\t5187: 0x83A9,\n\t5188: 0x83AC,\n\t5189: 0x83BE,\n\t5190: 0x83BF,\n\t5191: 0x83C0,\n\t5192: 0x83C7,\n\t5193: 0x83C9,\n\t5194: 0x83CF,\n\t5195: 0x83D0,\n\t5196: 0x83D1,\n\t5197: 0x83D4,\n\t5198: 0x83DD,\n\t5199: 0x8353,\n\t5200: 0x83E8,\n\t5201: 0x83EA,\n\t5202: 0x83F6,\n\t5203: 0x83F8,\n\t5204: 0x83F9,\n\t5205: 0x83FC,\n\t5206: 0x8401,\n\t5207: 0x8406,\n\t5208: 0x840A,\n\t5209: 0x840F,\n\t5210: 0x8411,\n\t5211: 0x8415,\n\t5212: 0x8419,\n\t5213: 0x83AD,\n\t5214: 0x842F,\n\t5215: 0x8439,\n\t5216: 0x8445,\n\t5217: 0x8447,\n\t5218: 0x8448,\n\t5219: 0x844A,\n\t5220: 0x844D,\n\t5221: 0x844F,\n\t5222: 0x8451,\n\t5223: 0x8452,\n\t5224: 0x8456,\n\t5225: 0x8458,\n\t5226: 0x8459,\n\t5227: 0x845A,\n\t5228: 0x845C,\n\t5229: 0x8460,\n\t5230: 0x8464,\n\t5231: 0x8465,\n\t5232: 0x8467,\n\t5233: 0x846A,\n\t5234: 0x8470,\n\t5235: 0x8473,\n\t5236: 0x8474,\n\t5237: 0x8476,\n\t5238: 0x8478,\n\t5239: 0x847C,\n\t5240: 0x847D,\n\t5241: 0x8481,\n\t5242: 0x8485,\n\t5243: 0x8492,\n\t5244: 0x8493,\n\t5245: 0x8495,\n\t5246: 0x849E,\n\t5247: 0x84A6,\n\t5248: 0x84A8,\n\t5249: 0x84A9,\n\t5250: 0x84AA,\n\t5251: 0x84AF,\n\t5252: 0x84B1,\n\t5253: 0x84B4,\n\t5254: 0x84BA,\n\t5255: 0x84BD,\n\t5256: 0x84BE,\n\t5257: 0x84C0,\n\t5258: 0x84C2,\n\t5259: 0x84C7,\n\t5260: 0x84C8,\n\t5261: 0x84CC,\n\t5262: 0x84CF,\n\t5263: 0x84D3,\n\t5264: 0x84DC,\n\t5265: 0x84E7,\n\t5266: 0x84EA,\n\t5267: 0x84EF,\n\t5268: 0x84F0,\n\t5269: 0x84F1,\n\t5270: 0x84F2,\n\t5271: 0x84F7,\n\t5272: 0x8532,\n\t5273: 0x84FA,\n\t5274: 0x84FB,\n\t5275: 0x84FD,\n\t5276: 0x8502,\n\t5277: 0x8503,\n\t5278: 0x8507,\n\t5279: 0x850C,\n\t5280: 0x850E,\n\t5281: 0x8510,\n\t5282: 0x851C,\n\t5283: 0x851E,\n\t5284: 0x8522,\n\t5285: 0x8523,\n\t5286: 0x8524,\n\t5287: 0x8525,\n\t5288: 0x8527,\n\t5289: 0x852A,\n\t5290: 0x852B,\n\t5291: 0x852F,\n\t5292: 0x8533,\n\t5293: 0x8534,\n\t5294: 0x8536,\n\t5295: 0x853F,\n\t5296: 0x8546,\n\t5297: 0x854F,\n\t5298: 0x8550,\n\t5299: 0x8551,\n\t5300: 0x8552,\n\t5301: 0x8553,\n\t5302: 0x8556,\n\t5303: 0x8559,\n\t5304: 0x855C,\n\t5305: 0x855D,\n\t5306: 0x855E,\n\t5307: 0x855F,\n\t5308: 0x8560,\n\t5309: 0x8561,\n\t5310: 0x8562,\n\t5311: 0x8564,\n\t5312: 0x856B,\n\t5313: 0x856F,\n\t5314: 0x8579,\n\t5315: 0x857A,\n\t5316: 0x857B,\n\t5317: 0x857D,\n\t5318: 0x857F,\n\t5319: 0x8581,\n\t5320: 0x8585,\n\t5321: 0x8586,\n\t5322: 0x8589,\n\t5323: 0x858B,\n\t5324: 0x858C,\n\t5325: 0x858F,\n\t5326: 0x8593,\n\t5327: 0x8598,\n\t5328: 0x859D,\n\t5329: 0x859F,\n\t5330: 0x85A0,\n\t5331: 0x85A2,\n\t5332: 0x85A5,\n\t5333: 0x85A7,\n\t5334: 0x85B4,\n\t5335: 0x85B6,\n\t5336: 0x85B7,\n\t5337: 0x85B8,\n\t5338: 0x85BC,\n\t5339: 0x85BD,\n\t5340: 0x85BE,\n\t5341: 0x85BF,\n\t5342: 0x85C2,\n\t5343: 0x85C7,\n\t5344: 0x85CA,\n\t5345: 0x85CB,\n\t5346: 0x85CE,\n\t5347: 0x85AD,\n\t5348: 0x85D8,\n\t5349: 0x85DA,\n\t5350: 0x85DF,\n\t5351: 0x85E0,\n\t5352: 0x85E6,\n\t5353: 0x85E8,\n\t5354: 0x85ED,\n\t5355: 0x85F3,\n\t5356: 0x85F6,\n\t5357: 0x85FC,\n\t5358: 0x85FF,\n\t5359: 0x8600,\n\t5360: 0x8604,\n\t5361: 0x8605,\n\t5362: 0x860D,\n\t5363: 0x860E,\n\t5364: 0x8610,\n\t5365: 0x8611,\n\t5366: 0x8612,\n\t5367: 0x8618,\n\t5368: 0x8619,\n\t5369: 0x861B,\n\t5370: 0x861E,\n\t5371: 0x8621,\n\t5372: 0x8627,\n\t5373: 0x8629,\n\t5374: 0x8636,\n\t5375: 0x8638,\n\t5376: 0x863A,\n\t5377: 0x863C,\n\t5378: 0x863D,\n\t5379: 0x8640,\n\t5380: 0x8642,\n\t5381: 0x8646,\n\t5382: 0x8652,\n\t5383: 0x8653,\n\t5384: 0x8656,\n\t5385: 0x8657,\n\t5386: 0x8658,\n\t5387: 0x8659,\n\t5388: 0x865D,\n\t5389: 0x8660,\n\t5390: 0x8661,\n\t5391: 0x8662,\n\t5392: 0x8663,\n\t5393: 0x8664,\n\t5394: 0x8669,\n\t5395: 0x866C,\n\t5396: 0x866F,\n\t5397: 0x8675,\n\t5398: 0x8676,\n\t5399: 0x8677,\n\t5400: 0x867A,\n\t5401: 0x868D,\n\t5402: 0x8691,\n\t5403: 0x8696,\n\t5404: 0x8698,\n\t5405: 0x869A,\n\t5406: 0x869C,\n\t5407: 0x86A1,\n\t5408: 0x86A6,\n\t5409: 0x86A7,\n\t5410: 0x86A8,\n\t5411: 0x86AD,\n\t5412: 0x86B1,\n\t5413: 0x86B3,\n\t5414: 0x86B4,\n\t5415: 0x86B5,\n\t5416: 0x86B7,\n\t5417: 0x86B8,\n\t5418: 0x86B9,\n\t5419: 0x86BF,\n\t5420: 0x86C0,\n\t5421: 0x86C1,\n\t5422: 0x86C3,\n\t5423: 0x86C5,\n\t5424: 0x86D1,\n\t5425: 0x86D2,\n\t5426: 0x86D5,\n\t5427: 0x86D7,\n\t5428: 0x86DA,\n\t5429: 0x86DC,\n\t5430: 0x86E0,\n\t5431: 0x86E3,\n\t5432: 0x86E5,\n\t5433: 0x86E7,\n\t5434: 0x8688,\n\t5435: 0x86FA,\n\t5436: 0x86FC,\n\t5437: 0x86FD,\n\t5438: 0x8704,\n\t5439: 0x8705,\n\t5440: 0x8707,\n\t5441: 0x870B,\n\t5442: 0x870E,\n\t5443: 0x870F,\n\t5444: 0x8710,\n\t5445: 0x8713,\n\t5446: 0x8714,\n\t5447: 0x8719,\n\t5448: 0x871E,\n\t5449: 0x871F,\n\t5450: 0x8721,\n\t5451: 0x8723,\n\t5452: 0x8728,\n\t5453: 0x872E,\n\t5454: 0x872F,\n\t5455: 0x8731,\n\t5456: 0x8732,\n\t5457: 0x8739,\n\t5458: 0x873A,\n\t5459: 0x873C,\n\t5460: 0x873D,\n\t5461: 0x873E,\n\t5462: 0x8740,\n\t5463: 0x8743,\n\t5464: 0x8745,\n\t5465: 0x874D,\n\t5466: 0x8758,\n\t5467: 0x875D,\n\t5468: 0x8761,\n\t5469: 0x8764,\n\t5470: 0x8765,\n\t5471: 0x876F,\n\t5472: 0x8771,\n\t5473: 0x8772,\n\t5474: 0x877B,\n\t5475: 0x8783,\n\t5476: 0x8784,\n\t5477: 0x8785,\n\t5478: 0x8786,\n\t5479: 0x8787,\n\t5480: 0x8788,\n\t5481: 0x8789,\n\t5482: 0x878B,\n\t5483: 0x878C,\n\t5484: 0x8790,\n\t5485: 0x8793,\n\t5486: 0x8795,\n\t5487: 0x8797,\n\t5488: 0x8798,\n\t5489: 0x8799,\n\t5490: 0x879E,\n\t5491: 0x87A0,\n\t5492: 0x87A3,\n\t5493: 0x87A7,\n\t5494: 0x87AC,\n\t5495: 0x87AD,\n\t5496: 0x87AE,\n\t5497: 0x87B1,\n\t5498: 0x87B5,\n\t5499: 0x87BE,\n\t5500: 0x87BF,\n\t5501: 0x87C1,\n\t5502: 0x87C8,\n\t5503: 0x87C9,\n\t5504: 0x87CA,\n\t5505: 0x87CE,\n\t5506: 0x87D5,\n\t5507: 0x87D6,\n\t5508: 0x87D9,\n\t5509: 0x87DA,\n\t5510: 0x87DC,\n\t5511: 0x87DF,\n\t5512: 0x87E2,\n\t5513: 0x87E3,\n\t5514: 0x87E4,\n\t5515: 0x87EA,\n\t5516: 0x87EB,\n\t5517: 0x87ED,\n\t5518: 0x87F1,\n\t5519: 0x87F3,\n\t5520: 0x87F8,\n\t5521: 0x87FA,\n\t5522: 0x87FF,\n\t5523: 0x8801,\n\t5524: 0x8803,\n\t5525: 0x8806,\n\t5526: 0x8809,\n\t5527: 0x880A,\n\t5528: 0x880B,\n\t5529: 0x8810,\n\t5530: 0x8819,\n\t5531: 0x8812,\n\t5532: 0x8813,\n\t5533: 0x8814,\n\t5534: 0x8818,\n\t5535: 0x881A,\n\t5536: 0x881B,\n\t5537: 0x881C,\n\t5538: 0x881E,\n\t5539: 0x881F,\n\t5540: 0x8828,\n\t5541: 0x882D,\n\t5542: 0x882E,\n\t5543: 0x8830,\n\t5544: 0x8832,\n\t5545: 0x8835,\n\t5546: 0x883A,\n\t5547: 0x883C,\n\t5548: 0x8841,\n\t5549: 0x8843,\n\t5550: 0x8845,\n\t5551: 0x8848,\n\t5552: 0x8849,\n\t5553: 0x884A,\n\t5554: 0x884B,\n\t5555: 0x884E,\n\t5556: 0x8851,\n\t5557: 0x8855,\n\t5558: 0x8856,\n\t5559: 0x8858,\n\t5560: 0x885A,\n\t5561: 0x885C,\n\t5562: 0x885F,\n\t5563: 0x8860,\n\t5564: 0x8864,\n\t5565: 0x8869,\n\t5566: 0x8871,\n\t5567: 0x8879,\n\t5568: 0x887B,\n\t5569: 0x8880,\n\t5570: 0x8898,\n\t5571: 0x889A,\n\t5572: 0x889B,\n\t5573: 0x889C,\n\t5574: 0x889F,\n\t5575: 0x88A0,\n\t5576: 0x88A8,\n\t5577: 0x88AA,\n\t5578: 0x88BA,\n\t5579: 0x88BD,\n\t5580: 0x88BE,\n\t5581: 0x88C0,\n\t5582: 0x88CA,\n\t5583: 0x88CB,\n\t5584: 0x88CC,\n\t5585: 0x88CD,\n\t5586: 0x88CE,\n\t5587: 0x88D1,\n\t5588: 0x88D2,\n\t5589: 0x88D3,\n\t5590: 0x88DB,\n\t5591: 0x88DE,\n\t5592: 0x88E7,\n\t5593: 0x88EF,\n\t5594: 0x88F0,\n\t5595: 0x88F1,\n\t5596: 0x88F5,\n\t5597: 0x88F7,\n\t5598: 0x8901,\n\t5599: 0x8906,\n\t5600: 0x890D,\n\t5601: 0x890E,\n\t5602: 0x890F,\n\t5603: 0x8915,\n\t5604: 0x8916,\n\t5605: 0x8918,\n\t5606: 0x8919,\n\t5607: 0x891A,\n\t5608: 0x891C,\n\t5609: 0x8920,\n\t5610: 0x8926,\n\t5611: 0x8927,\n\t5612: 0x8928,\n\t5613: 0x8930,\n\t5614: 0x8931,\n\t5615: 0x8932,\n\t5616: 0x8935,\n\t5617: 0x8939,\n\t5618: 0x893A,\n\t5619: 0x893E,\n\t5620: 0x8940,\n\t5621: 0x8942,\n\t5622: 0x8945,\n\t5623: 0x8946,\n\t5624: 0x8949,\n\t5625: 0x894F,\n\t5626: 0x8952,\n\t5627: 0x8957,\n\t5628: 0x895A,\n\t5629: 0x895B,\n\t5630: 0x895C,\n\t5631: 0x8961,\n\t5632: 0x8962,\n\t5633: 0x8963,\n\t5634: 0x896B,\n\t5635: 0x896E,\n\t5636: 0x8970,\n\t5637: 0x8973,\n\t5638: 0x8975,\n\t5639: 0x897A,\n\t5640: 0x897B,\n\t5641: 0x897C,\n\t5642: 0x897D,\n\t5643: 0x8989,\n\t5644: 0x898D,\n\t5645: 0x8990,\n\t5646: 0x8994,\n\t5647: 0x8995,\n\t5648: 0x899B,\n\t5649: 0x899C,\n\t5650: 0x899F,\n\t5651: 0x89A0,\n\t5652: 0x89A5,\n\t5653: 0x89B0,\n\t5654: 0x89B4,\n\t5655: 0x89B5,\n\t5656: 0x89B6,\n\t5657: 0x89B7,\n\t5658: 0x89BC,\n\t5659: 0x89D4,\n\t5660: 0x89D5,\n\t5661: 0x89D6,\n\t5662: 0x89D7,\n\t5663: 0x89D8,\n\t5664: 0x89E5,\n\t5665: 0x89E9,\n\t5666: 0x89EB,\n\t5667: 0x89ED,\n\t5668: 0x89F1,\n\t5669: 0x89F3,\n\t5670: 0x89F6,\n\t5671: 0x89F9,\n\t5672: 0x89FD,\n\t5673: 0x89FF,\n\t5674: 0x8A04,\n\t5675: 0x8A05,\n\t5676: 0x8A07,\n\t5677: 0x8A0F,\n\t5678: 0x8A11,\n\t5679: 0x8A12,\n\t5680: 0x8A14,\n\t5681: 0x8A15,\n\t5682: 0x8A1E,\n\t5683: 0x8A20,\n\t5684: 0x8A22,\n\t5685: 0x8A24,\n\t5686: 0x8A26,\n\t5687: 0x8A2B,\n\t5688: 0x8A2C,\n\t5689: 0x8A2F,\n\t5690: 0x8A35,\n\t5691: 0x8A37,\n\t5692: 0x8A3D,\n\t5693: 0x8A3E,\n\t5694: 0x8A40,\n\t5695: 0x8A43,\n\t5696: 0x8A45,\n\t5697: 0x8A47,\n\t5698: 0x8A49,\n\t5699: 0x8A4D,\n\t5700: 0x8A4E,\n\t5701: 0x8A53,\n\t5702: 0x8A56,\n\t5703: 0x8A57,\n\t5704: 0x8A58,\n\t5705: 0x8A5C,\n\t5706: 0x8A5D,\n\t5707: 0x8A61,\n\t5708: 0x8A65,\n\t5709: 0x8A67,\n\t5710: 0x8A75,\n\t5711: 0x8A76,\n\t5712: 0x8A77,\n\t5713: 0x8A79,\n\t5714: 0x8A7A,\n\t5715: 0x8A7B,\n\t5716: 0x8A7E,\n\t5717: 0x8A7F,\n\t5718: 0x8A80,\n\t5719: 0x8A83,\n\t5720: 0x8A86,\n\t5721: 0x8A8B,\n\t5722: 0x8A8F,\n\t5723: 0x8A90,\n\t5724: 0x8A92,\n\t5725: 0x8A96,\n\t5726: 0x8A97,\n\t5727: 0x8A99,\n\t5728: 0x8A9F,\n\t5729: 0x8AA7,\n\t5730: 0x8AA9,\n\t5731: 0x8AAE,\n\t5732: 0x8AAF,\n\t5733: 0x8AB3,\n\t5734: 0x8AB6,\n\t5735: 0x8AB7,\n\t5736: 0x8ABB,\n\t5737: 0x8ABE,\n\t5738: 0x8AC3,\n\t5739: 0x8AC6,\n\t5740: 0x8AC8,\n\t5741: 0x8AC9,\n\t5742: 0x8ACA,\n\t5743: 0x8AD1,\n\t5744: 0x8AD3,\n\t5745: 0x8AD4,\n\t5746: 0x8AD5,\n\t5747: 0x8AD7,\n\t5748: 0x8ADD,\n\t5749: 0x8ADF,\n\t5750: 0x8AEC,\n\t5751: 0x8AF0,\n\t5752: 0x8AF4,\n\t5753: 0x8AF5,\n\t5754: 0x8AF6,\n\t5755: 0x8AFC,\n\t5756: 0x8AFF,\n\t5757: 0x8B05,\n\t5758: 0x8B06,\n\t5759: 0x8B0B,\n\t5760: 0x8B11,\n\t5761: 0x8B1C,\n\t5762: 0x8B1E,\n\t5763: 0x8B1F,\n\t5764: 0x8B0A,\n\t5765: 0x8B2D,\n\t5766: 0x8B30,\n\t5767: 0x8B37,\n\t5768: 0x8B3C,\n\t5769: 0x8B42,\n\t5770: 0x8B43,\n\t5771: 0x8B44,\n\t5772: 0x8B45,\n\t5773: 0x8B46,\n\t5774: 0x8B48,\n\t5775: 0x8B52,\n\t5776: 0x8B53,\n\t5777: 0x8B54,\n\t5778: 0x8B59,\n\t5779: 0x8B4D,\n\t5780: 0x8B5E,\n\t5781: 0x8B63,\n\t5782: 0x8B6D,\n\t5783: 0x8B76,\n\t5784: 0x8B78,\n\t5785: 0x8B79,\n\t5786: 0x8B7C,\n\t5787: 0x8B7E,\n\t5788: 0x8B81,\n\t5789: 0x8B84,\n\t5790: 0x8B85,\n\t5791: 0x8B8B,\n\t5792: 0x8B8D,\n\t5793: 0x8B8F,\n\t5794: 0x8B94,\n\t5795: 0x8B95,\n\t5796: 0x8B9C,\n\t5797: 0x8B9E,\n\t5798: 0x8B9F,\n\t5799: 0x8C38,\n\t5800: 0x8C39,\n\t5801: 0x8C3D,\n\t5802: 0x8C3E,\n\t5803: 0x8C45,\n\t5804: 0x8C47,\n\t5805: 0x8C49,\n\t5806: 0x8C4B,\n\t5807: 0x8C4F,\n\t5808: 0x8C51,\n\t5809: 0x8C53,\n\t5810: 0x8C54,\n\t5811: 0x8C57,\n\t5812: 0x8C58,\n\t5813: 0x8C5B,\n\t5814: 0x8C5D,\n\t5815: 0x8C59,\n\t5816: 0x8C63,\n\t5817: 0x8C64,\n\t5818: 0x8C66,\n\t5819: 0x8C68,\n\t5820: 0x8C69,\n\t5821: 0x8C6D,\n\t5822: 0x8C73,\n\t5823: 0x8C75,\n\t5824: 0x8C76,\n\t5825: 0x8C7B,\n\t5826: 0x8C7E,\n\t5827: 0x8C86,\n\t5828: 0x8C87,\n\t5829: 0x8C8B,\n\t5830: 0x8C90,\n\t5831: 0x8C92,\n\t5832: 0x8C93,\n\t5833: 0x8C99,\n\t5834: 0x8C9B,\n\t5835: 0x8C9C,\n\t5836: 0x8CA4,\n\t5837: 0x8CB9,\n\t5838: 0x8CBA,\n\t5839: 0x8CC5,\n\t5840: 0x8CC6,\n\t5841: 0x8CC9,\n\t5842: 0x8CCB,\n\t5843: 0x8CCF,\n\t5844: 0x8CD6,\n\t5845: 0x8CD5,\n\t5846: 0x8CD9,\n\t5847: 0x8CDD,\n\t5848: 0x8CE1,\n\t5849: 0x8CE8,\n\t5850: 0x8CEC,\n\t5851: 0x8CEF,\n\t5852: 0x8CF0,\n\t5853: 0x8CF2,\n\t5854: 0x8CF5,\n\t5855: 0x8CF7,\n\t5856: 0x8CF8,\n\t5857: 0x8CFE,\n\t5858: 0x8CFF,\n\t5859: 0x8D01,\n\t5860: 0x8D03,\n\t5861: 0x8D09,\n\t5862: 0x8D12,\n\t5863: 0x8D17,\n\t5864: 0x8D1B,\n\t5865: 0x8D65,\n\t5866: 0x8D69,\n\t5867: 0x8D6C,\n\t5868: 0x8D6E,\n\t5869: 0x8D7F,\n\t5870: 0x8D82,\n\t5871: 0x8D84,\n\t5872: 0x8D88,\n\t5873: 0x8D8D,\n\t5874: 0x8D90,\n\t5875: 0x8D91,\n\t5876: 0x8D95,\n\t5877: 0x8D9E,\n\t5878: 0x8D9F,\n\t5879: 0x8DA0,\n\t5880: 0x8DA6,\n\t5881: 0x8DAB,\n\t5882: 0x8DAC,\n\t5883: 0x8DAF,\n\t5884: 0x8DB2,\n\t5885: 0x8DB5,\n\t5886: 0x8DB7,\n\t5887: 0x8DB9,\n\t5888: 0x8DBB,\n\t5889: 0x8DC0,\n\t5890: 0x8DC5,\n\t5891: 0x8DC6,\n\t5892: 0x8DC7,\n\t5893: 0x8DC8,\n\t5894: 0x8DCA,\n\t5895: 0x8DCE,\n\t5896: 0x8DD1,\n\t5897: 0x8DD4,\n\t5898: 0x8DD5,\n\t5899: 0x8DD7,\n\t5900: 0x8DD9,\n\t5901: 0x8DE4,\n\t5902: 0x8DE5,\n\t5903: 0x8DE7,\n\t5904: 0x8DEC,\n\t5905: 0x8DF0,\n\t5906: 0x8DBC,\n\t5907: 0x8DF1,\n\t5908: 0x8DF2,\n\t5909: 0x8DF4,\n\t5910: 0x8DFD,\n\t5911: 0x8E01,\n\t5912: 0x8E04,\n\t5913: 0x8E05,\n\t5914: 0x8E06,\n\t5915: 0x8E0B,\n\t5916: 0x8E11,\n\t5917: 0x8E14,\n\t5918: 0x8E16,\n\t5919: 0x8E20,\n\t5920: 0x8E21,\n\t5921: 0x8E22,\n\t5922: 0x8E23,\n\t5923: 0x8E26,\n\t5924: 0x8E27,\n\t5925: 0x8E31,\n\t5926: 0x8E33,\n\t5927: 0x8E36,\n\t5928: 0x8E37,\n\t5929: 0x8E38,\n\t5930: 0x8E39,\n\t5931: 0x8E3D,\n\t5932: 0x8E40,\n\t5933: 0x8E41,\n\t5934: 0x8E4B,\n\t5935: 0x8E4D,\n\t5936: 0x8E4E,\n\t5937: 0x8E4F,\n\t5938: 0x8E54,\n\t5939: 0x8E5B,\n\t5940: 0x8E5C,\n\t5941: 0x8E5D,\n\t5942: 0x8E5E,\n\t5943: 0x8E61,\n\t5944: 0x8E62,\n\t5945: 0x8E69,\n\t5946: 0x8E6C,\n\t5947: 0x8E6D,\n\t5948: 0x8E6F,\n\t5949: 0x8E70,\n\t5950: 0x8E71,\n\t5951: 0x8E79,\n\t5952: 0x8E7A,\n\t5953: 0x8E7B,\n\t5954: 0x8E82,\n\t5955: 0x8E83,\n\t5956: 0x8E89,\n\t5957: 0x8E90,\n\t5958: 0x8E92,\n\t5959: 0x8E95,\n\t5960: 0x8E9A,\n\t5961: 0x8E9B,\n\t5962: 0x8E9D,\n\t5963: 0x8E9E,\n\t5964: 0x8EA2,\n\t5965: 0x8EA7,\n\t5966: 0x8EA9,\n\t5967: 0x8EAD,\n\t5968: 0x8EAE,\n\t5969: 0x8EB3,\n\t5970: 0x8EB5,\n\t5971: 0x8EBA,\n\t5972: 0x8EBB,\n\t5973: 0x8EC0,\n\t5974: 0x8EC1,\n\t5975: 0x8EC3,\n\t5976: 0x8EC4,\n\t5977: 0x8EC7,\n\t5978: 0x8ECF,\n\t5979: 0x8ED1,\n\t5980: 0x8ED4,\n\t5981: 0x8EDC,\n\t5982: 0x8EE8,\n\t5983: 0x8EEE,\n\t5984: 0x8EF0,\n\t5985: 0x8EF1,\n\t5986: 0x8EF7,\n\t5987: 0x8EF9,\n\t5988: 0x8EFA,\n\t5989: 0x8EED,\n\t5990: 0x8F00,\n\t5991: 0x8F02,\n\t5992: 0x8F07,\n\t5993: 0x8F08,\n\t5994: 0x8F0F,\n\t5995: 0x8F10,\n\t5996: 0x8F16,\n\t5997: 0x8F17,\n\t5998: 0x8F18,\n\t5999: 0x8F1E,\n\t6000: 0x8F20,\n\t6001: 0x8F21,\n\t6002: 0x8F23,\n\t6003: 0x8F25,\n\t6004: 0x8F27,\n\t6005: 0x8F28,\n\t6006: 0x8F2C,\n\t6007: 0x8F2D,\n\t6008: 0x8F2E,\n\t6009: 0x8F34,\n\t6010: 0x8F35,\n\t6011: 0x8F36,\n\t6012: 0x8F37,\n\t6013: 0x8F3A,\n\t6014: 0x8F40,\n\t6015: 0x8F41,\n\t6016: 0x8F43,\n\t6017: 0x8F47,\n\t6018: 0x8F4F,\n\t6019: 0x8F51,\n\t6020: 0x8F52,\n\t6021: 0x8F53,\n\t6022: 0x8F54,\n\t6023: 0x8F55,\n\t6024: 0x8F58,\n\t6025: 0x8F5D,\n\t6026: 0x8F5E,\n\t6027: 0x8F65,\n\t6028: 0x8F9D,\n\t6029: 0x8FA0,\n\t6030: 0x8FA1,\n\t6031: 0x8FA4,\n\t6032: 0x8FA5,\n\t6033: 0x8FA6,\n\t6034: 0x8FB5,\n\t6035: 0x8FB6,\n\t6036: 0x8FB8,\n\t6037: 0x8FBE,\n\t6038: 0x8FC0,\n\t6039: 0x8FC1,\n\t6040: 0x8FC6,\n\t6041: 0x8FCA,\n\t6042: 0x8FCB,\n\t6043: 0x8FCD,\n\t6044: 0x8FD0,\n\t6045: 0x8FD2,\n\t6046: 0x8FD3,\n\t6047: 0x8FD5,\n\t6048: 0x8FE0,\n\t6049: 0x8FE3,\n\t6050: 0x8FE4,\n\t6051: 0x8FE8,\n\t6052: 0x8FEE,\n\t6053: 0x8FF1,\n\t6054: 0x8FF5,\n\t6055: 0x8FF6,\n\t6056: 0x8FFB,\n\t6057: 0x8FFE,\n\t6058: 0x9002,\n\t6059: 0x9004,\n\t6060: 0x9008,\n\t6061: 0x900C,\n\t6062: 0x9018,\n\t6063: 0x901B,\n\t6064: 0x9028,\n\t6065: 0x9029,\n\t6066: 0x902F,\n\t6067: 0x902A,\n\t6068: 0x902C,\n\t6069: 0x902D,\n\t6070: 0x9033,\n\t6071: 0x9034,\n\t6072: 0x9037,\n\t6073: 0x903F,\n\t6074: 0x9043,\n\t6075: 0x9044,\n\t6076: 0x904C,\n\t6077: 0x905B,\n\t6078: 0x905D,\n\t6079: 0x9062,\n\t6080: 0x9066,\n\t6081: 0x9067,\n\t6082: 0x906C,\n\t6083: 0x9070,\n\t6084: 0x9074,\n\t6085: 0x9079,\n\t6086: 0x9085,\n\t6087: 0x9088,\n\t6088: 0x908B,\n\t6089: 0x908C,\n\t6090: 0x908E,\n\t6091: 0x9090,\n\t6092: 0x9095,\n\t6093: 0x9097,\n\t6094: 0x9098,\n\t6095: 0x9099,\n\t6096: 0x909B,\n\t6097: 0x90A0,\n\t6098: 0x90A1,\n\t6099: 0x90A2,\n\t6100: 0x90A5,\n\t6101: 0x90B0,\n\t6102: 0x90B2,\n\t6103: 0x90B3,\n\t6104: 0x90B4,\n\t6105: 0x90B6,\n\t6106: 0x90BD,\n\t6107: 0x90CC,\n\t6108: 0x90BE,\n\t6109: 0x90C3,\n\t6110: 0x90C4,\n\t6111: 0x90C5,\n\t6112: 0x90C7,\n\t6113: 0x90C8,\n\t6114: 0x90D5,\n\t6115: 0x90D7,\n\t6116: 0x90D8,\n\t6117: 0x90D9,\n\t6118: 0x90DC,\n\t6119: 0x90DD,\n\t6120: 0x90DF,\n\t6121: 0x90E5,\n\t6122: 0x90D2,\n\t6123: 0x90F6,\n\t6124: 0x90EB,\n\t6125: 0x90EF,\n\t6126: 0x90F0,\n\t6127: 0x90F4,\n\t6128: 0x90FE,\n\t6129: 0x90FF,\n\t6130: 0x9100,\n\t6131: 0x9104,\n\t6132: 0x9105,\n\t6133: 0x9106,\n\t6134: 0x9108,\n\t6135: 0x910D,\n\t6136: 0x9110,\n\t6137: 0x9114,\n\t6138: 0x9116,\n\t6139: 0x9117,\n\t6140: 0x9118,\n\t6141: 0x911A,\n\t6142: 0x911C,\n\t6143: 0x911E,\n\t6144: 0x9120,\n\t6145: 0x9125,\n\t6146: 0x9122,\n\t6147: 0x9123,\n\t6148: 0x9127,\n\t6149: 0x9129,\n\t6150: 0x912E,\n\t6151: 0x912F,\n\t6152: 0x9131,\n\t6153: 0x9134,\n\t6154: 0x9136,\n\t6155: 0x9137,\n\t6156: 0x9139,\n\t6157: 0x913A,\n\t6158: 0x913C,\n\t6159: 0x913D,\n\t6160: 0x9143,\n\t6161: 0x9147,\n\t6162: 0x9148,\n\t6163: 0x914F,\n\t6164: 0x9153,\n\t6165: 0x9157,\n\t6166: 0x9159,\n\t6167: 0x915A,\n\t6168: 0x915B,\n\t6169: 0x9161,\n\t6170: 0x9164,\n\t6171: 0x9167,\n\t6172: 0x916D,\n\t6173: 0x9174,\n\t6174: 0x9179,\n\t6175: 0x917A,\n\t6176: 0x917B,\n\t6177: 0x9181,\n\t6178: 0x9183,\n\t6179: 0x9185,\n\t6180: 0x9186,\n\t6181: 0x918A,\n\t6182: 0x918E,\n\t6183: 0x9191,\n\t6184: 0x9193,\n\t6185: 0x9194,\n\t6186: 0x9195,\n\t6187: 0x9198,\n\t6188: 0x919E,\n\t6189: 0x91A1,\n\t6190: 0x91A6,\n\t6191: 0x91A8,\n\t6192: 0x91AC,\n\t6193: 0x91AD,\n\t6194: 0x91AE,\n\t6195: 0x91B0,\n\t6196: 0x91B1,\n\t6197: 0x91B2,\n\t6198: 0x91B3,\n\t6199: 0x91B6,\n\t6200: 0x91BB,\n\t6201: 0x91BC,\n\t6202: 0x91BD,\n\t6203: 0x91BF,\n\t6204: 0x91C2,\n\t6205: 0x91C3,\n\t6206: 0x91C5,\n\t6207: 0x91D3,\n\t6208: 0x91D4,\n\t6209: 0x91D7,\n\t6210: 0x91D9,\n\t6211: 0x91DA,\n\t6212: 0x91DE,\n\t6213: 0x91E4,\n\t6214: 0x91E5,\n\t6215: 0x91E9,\n\t6216: 0x91EA,\n\t6217: 0x91EC,\n\t6218: 0x91ED,\n\t6219: 0x91EE,\n\t6220: 0x91EF,\n\t6221: 0x91F0,\n\t6222: 0x91F1,\n\t6223: 0x91F7,\n\t6224: 0x91F9,\n\t6225: 0x91FB,\n\t6226: 0x91FD,\n\t6227: 0x9200,\n\t6228: 0x9201,\n\t6229: 0x9204,\n\t6230: 0x9205,\n\t6231: 0x9206,\n\t6232: 0x9207,\n\t6233: 0x9209,\n\t6234: 0x920A,\n\t6235: 0x920C,\n\t6236: 0x9210,\n\t6237: 0x9212,\n\t6238: 0x9213,\n\t6239: 0x9216,\n\t6240: 0x9218,\n\t6241: 0x921C,\n\t6242: 0x921D,\n\t6243: 0x9223,\n\t6244: 0x9224,\n\t6245: 0x9225,\n\t6246: 0x9226,\n\t6247: 0x9228,\n\t6248: 0x922E,\n\t6249: 0x922F,\n\t6250: 0x9230,\n\t6251: 0x9233,\n\t6252: 0x9235,\n\t6253: 0x9236,\n\t6254: 0x9238,\n\t6255: 0x9239,\n\t6256: 0x923A,\n\t6257: 0x923C,\n\t6258: 0x923E,\n\t6259: 0x9240,\n\t6260: 0x9242,\n\t6261: 0x9243,\n\t6262: 0x9246,\n\t6263: 0x9247,\n\t6264: 0x924A,\n\t6265: 0x924D,\n\t6266: 0x924E,\n\t6267: 0x924F,\n\t6268: 0x9251,\n\t6269: 0x9258,\n\t6270: 0x9259,\n\t6271: 0x925C,\n\t6272: 0x925D,\n\t6273: 0x9260,\n\t6274: 0x9261,\n\t6275: 0x9265,\n\t6276: 0x9267,\n\t6277: 0x9268,\n\t6278: 0x9269,\n\t6279: 0x926E,\n\t6280: 0x926F,\n\t6281: 0x9270,\n\t6282: 0x9275,\n\t6283: 0x9276,\n\t6284: 0x9277,\n\t6285: 0x9278,\n\t6286: 0x9279,\n\t6287: 0x927B,\n\t6288: 0x927C,\n\t6289: 0x927D,\n\t6290: 0x927F,\n\t6291: 0x9288,\n\t6292: 0x9289,\n\t6293: 0x928A,\n\t6294: 0x928D,\n\t6295: 0x928E,\n\t6296: 0x9292,\n\t6297: 0x9297,\n\t6298: 0x9299,\n\t6299: 0x929F,\n\t6300: 0x92A0,\n\t6301: 0x92A4,\n\t6302: 0x92A5,\n\t6303: 0x92A7,\n\t6304: 0x92A8,\n\t6305: 0x92AB,\n\t6306: 0x92AF,\n\t6307: 0x92B2,\n\t6308: 0x92B6,\n\t6309: 0x92B8,\n\t6310: 0x92BA,\n\t6311: 0x92BB,\n\t6312: 0x92BC,\n\t6313: 0x92BD,\n\t6314: 0x92BF,\n\t6315: 0x92C0,\n\t6316: 0x92C1,\n\t6317: 0x92C2,\n\t6318: 0x92C3,\n\t6319: 0x92C5,\n\t6320: 0x92C6,\n\t6321: 0x92C7,\n\t6322: 0x92C8,\n\t6323: 0x92CB,\n\t6324: 0x92CC,\n\t6325: 0x92CD,\n\t6326: 0x92CE,\n\t6327: 0x92D0,\n\t6328: 0x92D3,\n\t6329: 0x92D5,\n\t6330: 0x92D7,\n\t6331: 0x92D8,\n\t6332: 0x92D9,\n\t6333: 0x92DC,\n\t6334: 0x92DD,\n\t6335: 0x92DF,\n\t6336: 0x92E0,\n\t6337: 0x92E1,\n\t6338: 0x92E3,\n\t6339: 0x92E5,\n\t6340: 0x92E7,\n\t6341: 0x92E8,\n\t6342: 0x92EC,\n\t6343: 0x92EE,\n\t6344: 0x92F0,\n\t6345: 0x92F9,\n\t6346: 0x92FB,\n\t6347: 0x92FF,\n\t6348: 0x9300,\n\t6349: 0x9302,\n\t6350: 0x9308,\n\t6351: 0x930D,\n\t6352: 0x9311,\n\t6353: 0x9314,\n\t6354: 0x9315,\n\t6355: 0x931C,\n\t6356: 0x931D,\n\t6357: 0x931E,\n\t6358: 0x931F,\n\t6359: 0x9321,\n\t6360: 0x9324,\n\t6361: 0x9325,\n\t6362: 0x9327,\n\t6363: 0x9329,\n\t6364: 0x932A,\n\t6365: 0x9333,\n\t6366: 0x9334,\n\t6367: 0x9336,\n\t6368: 0x9337,\n\t6369: 0x9347,\n\t6370: 0x9348,\n\t6371: 0x9349,\n\t6372: 0x9350,\n\t6373: 0x9351,\n\t6374: 0x9352,\n\t6375: 0x9355,\n\t6376: 0x9357,\n\t6377: 0x9358,\n\t6378: 0x935A,\n\t6379: 0x935E,\n\t6380: 0x9364,\n\t6381: 0x9365,\n\t6382: 0x9367,\n\t6383: 0x9369,\n\t6384: 0x936A,\n\t6385: 0x936D,\n\t6386: 0x936F,\n\t6387: 0x9370,\n\t6388: 0x9371,\n\t6389: 0x9373,\n\t6390: 0x9374,\n\t6391: 0x9376,\n\t6392: 0x937A,\n\t6393: 0x937D,\n\t6394: 0x937F,\n\t6395: 0x9380,\n\t6396: 0x9381,\n\t6397: 0x9382,\n\t6398: 0x9388,\n\t6399: 0x938A,\n\t6400: 0x938B,\n\t6401: 0x938D,\n\t6402: 0x938F,\n\t6403: 0x9392,\n\t6404: 0x9395,\n\t6405: 0x9398,\n\t6406: 0x939B,\n\t6407: 0x939E,\n\t6408: 0x93A1,\n\t6409: 0x93A3,\n\t6410: 0x93A4,\n\t6411: 0x93A6,\n\t6412: 0x93A8,\n\t6413: 0x93AB,\n\t6414: 0x93B4,\n\t6415: 0x93B5,\n\t6416: 0x93B6,\n\t6417: 0x93BA,\n\t6418: 0x93A9,\n\t6419: 0x93C1,\n\t6420: 0x93C4,\n\t6421: 0x93C5,\n\t6422: 0x93C6,\n\t6423: 0x93C7,\n\t6424: 0x93C9,\n\t6425: 0x93CA,\n\t6426: 0x93CB,\n\t6427: 0x93CC,\n\t6428: 0x93CD,\n\t6429: 0x93D3,\n\t6430: 0x93D9,\n\t6431: 0x93DC,\n\t6432: 0x93DE,\n\t6433: 0x93DF,\n\t6434: 0x93E2,\n\t6435: 0x93E6,\n\t6436: 0x93E7,\n\t6437: 0x93F9,\n\t6438: 0x93F7,\n\t6439: 0x93F8,\n\t6440: 0x93FA,\n\t6441: 0x93FB,\n\t6442: 0x93FD,\n\t6443: 0x9401,\n\t6444: 0x9402,\n\t6445: 0x9404,\n\t6446: 0x9408,\n\t6447: 0x9409,\n\t6448: 0x940D,\n\t6449: 0x940E,\n\t6450: 0x940F,\n\t6451: 0x9415,\n\t6452: 0x9416,\n\t6453: 0x9417,\n\t6454: 0x941F,\n\t6455: 0x942E,\n\t6456: 0x942F,\n\t6457: 0x9431,\n\t6458: 0x9432,\n\t6459: 0x9433,\n\t6460: 0x9434,\n\t6461: 0x943B,\n\t6462: 0x943F,\n\t6463: 0x943D,\n\t6464: 0x9443,\n\t6465: 0x9445,\n\t6466: 0x9448,\n\t6467: 0x944A,\n\t6468: 0x944C,\n\t6469: 0x9455,\n\t6470: 0x9459,\n\t6471: 0x945C,\n\t6472: 0x945F,\n\t6473: 0x9461,\n\t6474: 0x9463,\n\t6475: 0x9468,\n\t6476: 0x946B,\n\t6477: 0x946D,\n\t6478: 0x946E,\n\t6479: 0x946F,\n\t6480: 0x9471,\n\t6481: 0x9472,\n\t6482: 0x9484,\n\t6483: 0x9483,\n\t6484: 0x9578,\n\t6485: 0x9579,\n\t6486: 0x957E,\n\t6487: 0x9584,\n\t6488: 0x9588,\n\t6489: 0x958C,\n\t6490: 0x958D,\n\t6491: 0x958E,\n\t6492: 0x959D,\n\t6493: 0x959E,\n\t6494: 0x959F,\n\t6495: 0x95A1,\n\t6496: 0x95A6,\n\t6497: 0x95A9,\n\t6498: 0x95AB,\n\t6499: 0x95AC,\n\t6500: 0x95B4,\n\t6501: 0x95B6,\n\t6502: 0x95BA,\n\t6503: 0x95BD,\n\t6504: 0x95BF,\n\t6505: 0x95C6,\n\t6506: 0x95C8,\n\t6507: 0x95C9,\n\t6508: 0x95CB,\n\t6509: 0x95D0,\n\t6510: 0x95D1,\n\t6511: 0x95D2,\n\t6512: 0x95D3,\n\t6513: 0x95D9,\n\t6514: 0x95DA,\n\t6515: 0x95DD,\n\t6516: 0x95DE,\n\t6517: 0x95DF,\n\t6518: 0x95E0,\n\t6519: 0x95E4,\n\t6520: 0x95E6,\n\t6521: 0x961D,\n\t6522: 0x961E,\n\t6523: 0x9622,\n\t6524: 0x9624,\n\t6525: 0x9625,\n\t6526: 0x9626,\n\t6527: 0x962C,\n\t6528: 0x9631,\n\t6529: 0x9633,\n\t6530: 0x9637,\n\t6531: 0x9638,\n\t6532: 0x9639,\n\t6533: 0x963A,\n\t6534: 0x963C,\n\t6535: 0x963D,\n\t6536: 0x9641,\n\t6537: 0x9652,\n\t6538: 0x9654,\n\t6539: 0x9656,\n\t6540: 0x9657,\n\t6541: 0x9658,\n\t6542: 0x9661,\n\t6543: 0x966E,\n\t6544: 0x9674,\n\t6545: 0x967B,\n\t6546: 0x967C,\n\t6547: 0x967E,\n\t6548: 0x967F,\n\t6549: 0x9681,\n\t6550: 0x9682,\n\t6551: 0x9683,\n\t6552: 0x9684,\n\t6553: 0x9689,\n\t6554: 0x9691,\n\t6555: 0x9696,\n\t6556: 0x969A,\n\t6557: 0x969D,\n\t6558: 0x969F,\n\t6559: 0x96A4,\n\t6560: 0x96A5,\n\t6561: 0x96A6,\n\t6562: 0x96A9,\n\t6563: 0x96AE,\n\t6564: 0x96AF,\n\t6565: 0x96B3,\n\t6566: 0x96BA,\n\t6567: 0x96CA,\n\t6568: 0x96D2,\n\t6569: 0x5DB2,\n\t6570: 0x96D8,\n\t6571: 0x96DA,\n\t6572: 0x96DD,\n\t6573: 0x96DE,\n\t6574: 0x96DF,\n\t6575: 0x96E9,\n\t6576: 0x96EF,\n\t6577: 0x96F1,\n\t6578: 0x96FA,\n\t6579: 0x9702,\n\t6580: 0x9703,\n\t6581: 0x9705,\n\t6582: 0x9709,\n\t6583: 0x971A,\n\t6584: 0x971B,\n\t6585: 0x971D,\n\t6586: 0x9721,\n\t6587: 0x9722,\n\t6588: 0x9723,\n\t6589: 0x9728,\n\t6590: 0x9731,\n\t6591: 0x9733,\n\t6592: 0x9741,\n\t6593: 0x9743,\n\t6594: 0x974A,\n\t6595: 0x974E,\n\t6596: 0x974F,\n\t6597: 0x9755,\n\t6598: 0x9757,\n\t6599: 0x9758,\n\t6600: 0x975A,\n\t6601: 0x975B,\n\t6602: 0x9763,\n\t6603: 0x9767,\n\t6604: 0x976A,\n\t6605: 0x976E,\n\t6606: 0x9773,\n\t6607: 0x9776,\n\t6608: 0x9777,\n\t6609: 0x9778,\n\t6610: 0x977B,\n\t6611: 0x977D,\n\t6612: 0x977F,\n\t6613: 0x9780,\n\t6614: 0x9789,\n\t6615: 0x9795,\n\t6616: 0x9796,\n\t6617: 0x9797,\n\t6618: 0x9799,\n\t6619: 0x979A,\n\t6620: 0x979E,\n\t6621: 0x979F,\n\t6622: 0x97A2,\n\t6623: 0x97AC,\n\t6624: 0x97AE,\n\t6625: 0x97B1,\n\t6626: 0x97B2,\n\t6627: 0x97B5,\n\t6628: 0x97B6,\n\t6629: 0x97B8,\n\t6630: 0x97B9,\n\t6631: 0x97BA,\n\t6632: 0x97BC,\n\t6633: 0x97BE,\n\t6634: 0x97BF,\n\t6635: 0x97C1,\n\t6636: 0x97C4,\n\t6637: 0x97C5,\n\t6638: 0x97C7,\n\t6639: 0x97C9,\n\t6640: 0x97CA,\n\t6641: 0x97CC,\n\t6642: 0x97CD,\n\t6643: 0x97CE,\n\t6644: 0x97D0,\n\t6645: 0x97D1,\n\t6646: 0x97D4,\n\t6647: 0x97D7,\n\t6648: 0x97D8,\n\t6649: 0x97D9,\n\t6650: 0x97DD,\n\t6651: 0x97DE,\n\t6652: 0x97E0,\n\t6653: 0x97DB,\n\t6654: 0x97E1,\n\t6655: 0x97E4,\n\t6656: 0x97EF,\n\t6657: 0x97F1,\n\t6658: 0x97F4,\n\t6659: 0x97F7,\n\t6660: 0x97F8,\n\t6661: 0x97FA,\n\t6662: 0x9807,\n\t6663: 0x980A,\n\t6664: 0x9819,\n\t6665: 0x980D,\n\t6666: 0x980E,\n\t6667: 0x9814,\n\t6668: 0x9816,\n\t6669: 0x981C,\n\t6670: 0x981E,\n\t6671: 0x9820,\n\t6672: 0x9823,\n\t6673: 0x9826,\n\t6674: 0x982B,\n\t6675: 0x982E,\n\t6676: 0x982F,\n\t6677: 0x9830,\n\t6678: 0x9832,\n\t6679: 0x9833,\n\t6680: 0x9835,\n\t6681: 0x9825,\n\t6682: 0x983E,\n\t6683: 0x9844,\n\t6684: 0x9847,\n\t6685: 0x984A,\n\t6686: 0x9851,\n\t6687: 0x9852,\n\t6688: 0x9853,\n\t6689: 0x9856,\n\t6690: 0x9857,\n\t6691: 0x9859,\n\t6692: 0x985A,\n\t6693: 0x9862,\n\t6694: 0x9863,\n\t6695: 0x9865,\n\t6696: 0x9866,\n\t6697: 0x986A,\n\t6698: 0x986C,\n\t6699: 0x98AB,\n\t6700: 0x98AD,\n\t6701: 0x98AE,\n\t6702: 0x98B0,\n\t6703: 0x98B4,\n\t6704: 0x98B7,\n\t6705: 0x98B8,\n\t6706: 0x98BA,\n\t6707: 0x98BB,\n\t6708: 0x98BF,\n\t6709: 0x98C2,\n\t6710: 0x98C5,\n\t6711: 0x98C8,\n\t6712: 0x98CC,\n\t6713: 0x98E1,\n\t6714: 0x98E3,\n\t6715: 0x98E5,\n\t6716: 0x98E6,\n\t6717: 0x98E7,\n\t6718: 0x98EA,\n\t6719: 0x98F3,\n\t6720: 0x98F6,\n\t6721: 0x9902,\n\t6722: 0x9907,\n\t6723: 0x9908,\n\t6724: 0x9911,\n\t6725: 0x9915,\n\t6726: 0x9916,\n\t6727: 0x9917,\n\t6728: 0x991A,\n\t6729: 0x991B,\n\t6730: 0x991C,\n\t6731: 0x991F,\n\t6732: 0x9922,\n\t6733: 0x9926,\n\t6734: 0x9927,\n\t6735: 0x992B,\n\t6736: 0x9931,\n\t6737: 0x9932,\n\t6738: 0x9933,\n\t6739: 0x9934,\n\t6740: 0x9935,\n\t6741: 0x9939,\n\t6742: 0x993A,\n\t6743: 0x993B,\n\t6744: 0x993C,\n\t6745: 0x9940,\n\t6746: 0x9941,\n\t6747: 0x9946,\n\t6748: 0x9947,\n\t6749: 0x9948,\n\t6750: 0x994D,\n\t6751: 0x994E,\n\t6752: 0x9954,\n\t6753: 0x9958,\n\t6754: 0x9959,\n\t6755: 0x995B,\n\t6756: 0x995C,\n\t6757: 0x995E,\n\t6758: 0x995F,\n\t6759: 0x9960,\n\t6760: 0x999B,\n\t6761: 0x999D,\n\t6762: 0x999F,\n\t6763: 0x99A6,\n\t6764: 0x99B0,\n\t6765: 0x99B1,\n\t6766: 0x99B2,\n\t6767: 0x99B5,\n\t6768: 0x99B9,\n\t6769: 0x99BA,\n\t6770: 0x99BD,\n\t6771: 0x99BF,\n\t6772: 0x99C3,\n\t6773: 0x99C9,\n\t6774: 0x99D3,\n\t6775: 0x99D4,\n\t6776: 0x99D9,\n\t6777: 0x99DA,\n\t6778: 0x99DC,\n\t6779: 0x99DE,\n\t6780: 0x99E7,\n\t6781: 0x99EA,\n\t6782: 0x99EB,\n\t6783: 0x99EC,\n\t6784: 0x99F0,\n\t6785: 0x99F4,\n\t6786: 0x99F5,\n\t6787: 0x99F9,\n\t6788: 0x99FD,\n\t6789: 0x99FE,\n\t6790: 0x9A02,\n\t6791: 0x9A03,\n\t6792: 0x9A04,\n\t6793: 0x9A0B,\n\t6794: 0x9A0C,\n\t6795: 0x9A10,\n\t6796: 0x9A11,\n\t6797: 0x9A16,\n\t6798: 0x9A1E,\n\t6799: 0x9A20,\n\t6800: 0x9A22,\n\t6801: 0x9A23,\n\t6802: 0x9A24,\n\t6803: 0x9A27,\n\t6804: 0x9A2D,\n\t6805: 0x9A2E,\n\t6806: 0x9A33,\n\t6807: 0x9A35,\n\t6808: 0x9A36,\n\t6809: 0x9A38,\n\t6810: 0x9A47,\n\t6811: 0x9A41,\n\t6812: 0x9A44,\n\t6813: 0x9A4A,\n\t6814: 0x9A4B,\n\t6815: 0x9A4C,\n\t6816: 0x9A4E,\n\t6817: 0x9A51,\n\t6818: 0x9A54,\n\t6819: 0x9A56,\n\t6820: 0x9A5D,\n\t6821: 0x9AAA,\n\t6822: 0x9AAC,\n\t6823: 0x9AAE,\n\t6824: 0x9AAF,\n\t6825: 0x9AB2,\n\t6826: 0x9AB4,\n\t6827: 0x9AB5,\n\t6828: 0x9AB6,\n\t6829: 0x9AB9,\n\t6830: 0x9ABB,\n\t6831: 0x9ABE,\n\t6832: 0x9ABF,\n\t6833: 0x9AC1,\n\t6834: 0x9AC3,\n\t6835: 0x9AC6,\n\t6836: 0x9AC8,\n\t6837: 0x9ACE,\n\t6838: 0x9AD0,\n\t6839: 0x9AD2,\n\t6840: 0x9AD5,\n\t6841: 0x9AD6,\n\t6842: 0x9AD7,\n\t6843: 0x9ADB,\n\t6844: 0x9ADC,\n\t6845: 0x9AE0,\n\t6846: 0x9AE4,\n\t6847: 0x9AE5,\n\t6848: 0x9AE7,\n\t6849: 0x9AE9,\n\t6850: 0x9AEC,\n\t6851: 0x9AF2,\n\t6852: 0x9AF3,\n\t6853: 0x9AF5,\n\t6854: 0x9AF9,\n\t6855: 0x9AFA,\n\t6856: 0x9AFD,\n\t6857: 0x9AFF,\n\t6858: 0x9B00,\n\t6859: 0x9B01,\n\t6860: 0x9B02,\n\t6861: 0x9B03,\n\t6862: 0x9B04,\n\t6863: 0x9B05,\n\t6864: 0x9B08,\n\t6865: 0x9B09,\n\t6866: 0x9B0B,\n\t6867: 0x9B0C,\n\t6868: 0x9B0D,\n\t6869: 0x9B0E,\n\t6870: 0x9B10,\n\t6871: 0x9B12,\n\t6872: 0x9B16,\n\t6873: 0x9B19,\n\t6874: 0x9B1B,\n\t6875: 0x9B1C,\n\t6876: 0x9B20,\n\t6877: 0x9B26,\n\t6878: 0x9B2B,\n\t6879: 0x9B2D,\n\t6880: 0x9B33,\n\t6881: 0x9B34,\n\t6882: 0x9B35,\n\t6883: 0x9B37,\n\t6884: 0x9B39,\n\t6885: 0x9B3A,\n\t6886: 0x9B3D,\n\t6887: 0x9B48,\n\t6888: 0x9B4B,\n\t6889: 0x9B4C,\n\t6890: 0x9B55,\n\t6891: 0x9B56,\n\t6892: 0x9B57,\n\t6893: 0x9B5B,\n\t6894: 0x9B5E,\n\t6895: 0x9B61,\n\t6896: 0x9B63,\n\t6897: 0x9B65,\n\t6898: 0x9B66,\n\t6899: 0x9B68,\n\t6900: 0x9B6A,\n\t6901: 0x9B6B,\n\t6902: 0x9B6C,\n\t6903: 0x9B6D,\n\t6904: 0x9B6E,\n\t6905: 0x9B73,\n\t6906: 0x9B75,\n\t6907: 0x9B77,\n\t6908: 0x9B78,\n\t6909: 0x9B79,\n\t6910: 0x9B7F,\n\t6911: 0x9B80,\n\t6912: 0x9B84,\n\t6913: 0x9B85,\n\t6914: 0x9B86,\n\t6915: 0x9B87,\n\t6916: 0x9B89,\n\t6917: 0x9B8A,\n\t6918: 0x9B8B,\n\t6919: 0x9B8D,\n\t6920: 0x9B8F,\n\t6921: 0x9B90,\n\t6922: 0x9B94,\n\t6923: 0x9B9A,\n\t6924: 0x9B9D,\n\t6925: 0x9B9E,\n\t6926: 0x9BA6,\n\t6927: 0x9BA7,\n\t6928: 0x9BA9,\n\t6929: 0x9BAC,\n\t6930: 0x9BB0,\n\t6931: 0x9BB1,\n\t6932: 0x9BB2,\n\t6933: 0x9BB7,\n\t6934: 0x9BB8,\n\t6935: 0x9BBB,\n\t6936: 0x9BBC,\n\t6937: 0x9BBE,\n\t6938: 0x9BBF,\n\t6939: 0x9BC1,\n\t6940: 0x9BC7,\n\t6941: 0x9BC8,\n\t6942: 0x9BCE,\n\t6943: 0x9BD0,\n\t6944: 0x9BD7,\n\t6945: 0x9BD8,\n\t6946: 0x9BDD,\n\t6947: 0x9BDF,\n\t6948: 0x9BE5,\n\t6949: 0x9BE7,\n\t6950: 0x9BEA,\n\t6951: 0x9BEB,\n\t6952: 0x9BEF,\n\t6953: 0x9BF3,\n\t6954: 0x9BF7,\n\t6955: 0x9BF8,\n\t6956: 0x9BF9,\n\t6957: 0x9BFA,\n\t6958: 0x9BFD,\n\t6959: 0x9BFF,\n\t6960: 0x9C00,\n\t6961: 0x9C02,\n\t6962: 0x9C0B,\n\t6963: 0x9C0F,\n\t6964: 0x9C11,\n\t6965: 0x9C16,\n\t6966: 0x9C18,\n\t6967: 0x9C19,\n\t6968: 0x9C1A,\n\t6969: 0x9C1C,\n\t6970: 0x9C1E,\n\t6971: 0x9C22,\n\t6972: 0x9C23,\n\t6973: 0x9C26,\n\t6974: 0x9C27,\n\t6975: 0x9C28,\n\t6976: 0x9C29,\n\t6977: 0x9C2A,\n\t6978: 0x9C31,\n\t6979: 0x9C35,\n\t6980: 0x9C36,\n\t6981: 0x9C37,\n\t6982: 0x9C3D,\n\t6983: 0x9C41,\n\t6984: 0x9C43,\n\t6985: 0x9C44,\n\t6986: 0x9C45,\n\t6987: 0x9C49,\n\t6988: 0x9C4A,\n\t6989: 0x9C4E,\n\t6990: 0x9C4F,\n\t6991: 0x9C50,\n\t6992: 0x9C53,\n\t6993: 0x9C54,\n\t6994: 0x9C56,\n\t6995: 0x9C58,\n\t6996: 0x9C5B,\n\t6997: 0x9C5D,\n\t6998: 0x9C5E,\n\t6999: 0x9C5F,\n\t7000: 0x9C63,\n\t7001: 0x9C69,\n\t7002: 0x9C6A,\n\t7003: 0x9C5C,\n\t7004: 0x9C6B,\n\t7005: 0x9C68,\n\t7006: 0x9C6E,\n\t7007: 0x9C70,\n\t7008: 0x9C72,\n\t7009: 0x9C75,\n\t7010: 0x9C77,\n\t7011: 0x9C7B,\n\t7012: 0x9CE6,\n\t7013: 0x9CF2,\n\t7014: 0x9CF7,\n\t7015: 0x9CF9,\n\t7016: 0x9D0B,\n\t7017: 0x9D02,\n\t7018: 0x9D11,\n\t7019: 0x9D17,\n\t7020: 0x9D18,\n\t7021: 0x9D1C,\n\t7022: 0x9D1D,\n\t7023: 0x9D1E,\n\t7024: 0x9D2F,\n\t7025: 0x9D30,\n\t7026: 0x9D32,\n\t7027: 0x9D33,\n\t7028: 0x9D34,\n\t7029: 0x9D3A,\n\t7030: 0x9D3C,\n\t7031: 0x9D45,\n\t7032: 0x9D3D,\n\t7033: 0x9D42,\n\t7034: 0x9D43,\n\t7035: 0x9D47,\n\t7036: 0x9D4A,\n\t7037: 0x9D53,\n\t7038: 0x9D54,\n\t7039: 0x9D5F,\n\t7040: 0x9D63,\n\t7041: 0x9D62,\n\t7042: 0x9D65,\n\t7043: 0x9D69,\n\t7044: 0x9D6A,\n\t7045: 0x9D6B,\n\t7046: 0x9D70,\n\t7047: 0x9D76,\n\t7048: 0x9D77,\n\t7049: 0x9D7B,\n\t7050: 0x9D7C,\n\t7051: 0x9D7E,\n\t7052: 0x9D83,\n\t7053: 0x9D84,\n\t7054: 0x9D86,\n\t7055: 0x9D8A,\n\t7056: 0x9D8D,\n\t7057: 0x9D8E,\n\t7058: 0x9D92,\n\t7059: 0x9D93,\n\t7060: 0x9D95,\n\t7061: 0x9D96,\n\t7062: 0x9D97,\n\t7063: 0x9D98,\n\t7064: 0x9DA1,\n\t7065: 0x9DAA,\n\t7066: 0x9DAC,\n\t7067: 0x9DAE,\n\t7068: 0x9DB1,\n\t7069: 0x9DB5,\n\t7070: 0x9DB9,\n\t7071: 0x9DBC,\n\t7072: 0x9DBF,\n\t7073: 0x9DC3,\n\t7074: 0x9DC7,\n\t7075: 0x9DC9,\n\t7076: 0x9DCA,\n\t7077: 0x9DD4,\n\t7078: 0x9DD5,\n\t7079: 0x9DD6,\n\t7080: 0x9DD7,\n\t7081: 0x9DDA,\n\t7082: 0x9DDE,\n\t7083: 0x9DDF,\n\t7084: 0x9DE0,\n\t7085: 0x9DE5,\n\t7086: 0x9DE7,\n\t7087: 0x9DE9,\n\t7088: 0x9DEB,\n\t7089: 0x9DEE,\n\t7090: 0x9DF0,\n\t7091: 0x9DF3,\n\t7092: 0x9DF4,\n\t7093: 0x9DFE,\n\t7094: 0x9E0A,\n\t7095: 0x9E02,\n\t7096: 0x9E07,\n\t7097: 0x9E0E,\n\t7098: 0x9E10,\n\t7099: 0x9E11,\n\t7100: 0x9E12,\n\t7101: 0x9E15,\n\t7102: 0x9E16,\n\t7103: 0x9E19,\n\t7104: 0x9E1C,\n\t7105: 0x9E1D,\n\t7106: 0x9E7A,\n\t7107: 0x9E7B,\n\t7108: 0x9E7C,\n\t7109: 0x9E80,\n\t7110: 0x9E82,\n\t7111: 0x9E83,\n\t7112: 0x9E84,\n\t7113: 0x9E85,\n\t7114: 0x9E87,\n\t7115: 0x9E8E,\n\t7116: 0x9E8F,\n\t7117: 0x9E96,\n\t7118: 0x9E98,\n\t7119: 0x9E9B,\n\t7120: 0x9E9E,\n\t7121: 0x9EA4,\n\t7122: 0x9EA8,\n\t7123: 0x9EAC,\n\t7124: 0x9EAE,\n\t7125: 0x9EAF,\n\t7126: 0x9EB0,\n\t7127: 0x9EB3,\n\t7128: 0x9EB4,\n\t7129: 0x9EB5,\n\t7130: 0x9EC6,\n\t7131: 0x9EC8,\n\t7132: 0x9ECB,\n\t7133: 0x9ED5,\n\t7134: 0x9EDF,\n\t7135: 0x9EE4,\n\t7136: 0x9EE7,\n\t7137: 0x9EEC,\n\t7138: 0x9EED,\n\t7139: 0x9EEE,\n\t7140: 0x9EF0,\n\t7141: 0x9EF1,\n\t7142: 0x9EF2,\n\t7143: 0x9EF5,\n\t7144: 0x9EF8,\n\t7145: 0x9EFF,\n\t7146: 0x9F02,\n\t7147: 0x9F03,\n\t7148: 0x9F09,\n\t7149: 0x9F0F,\n\t7150: 0x9F10,\n\t7151: 0x9F11,\n\t7152: 0x9F12,\n\t7153: 0x9F14,\n\t7154: 0x9F16,\n\t7155: 0x9F17,\n\t7156: 0x9F19,\n\t7157: 0x9F1A,\n\t7158: 0x9F1B,\n\t7159: 0x9F1F,\n\t7160: 0x9F22,\n\t7161: 0x9F26,\n\t7162: 0x9F2A,\n\t7163: 0x9F2B,\n\t7164: 0x9F2F,\n\t7165: 0x9F31,\n\t7166: 0x9F32,\n\t7167: 0x9F34,\n\t7168: 0x9F37,\n\t7169: 0x9F39,\n\t7170: 0x9F3A,\n\t7171: 0x9F3C,\n\t7172: 0x9F3D,\n\t7173: 0x9F3F,\n\t7174: 0x9F41,\n\t7175: 0x9F43,\n\t7176: 0x9F44,\n\t7177: 0x9F45,\n\t7178: 0x9F46,\n\t7179: 0x9F47,\n\t7180: 0x9F53,\n\t7181: 0x9F55,\n\t7182: 0x9F56,\n\t7183: 0x9F57,\n\t7184: 0x9F58,\n\t7185: 0x9F5A,\n\t7186: 0x9F5D,\n\t7187: 0x9F5E,\n\t7188: 0x9F68,\n\t7189: 0x9F69,\n\t7190: 0x9F6D,\n\t7191: 0x9F6E,\n\t7192: 0x9F6F,\n\t7193: 0x9F70,\n\t7194: 0x9F71,\n\t7195: 0x9F73,\n\t7196: 0x9F75,\n\t7197: 0x9F7A,\n\t7198: 0x9F7D,\n\t7199: 0x9F8F,\n\t7200: 0x9F90,\n\t7201: 0x9F91,\n\t7202: 0x9F92,\n\t7203: 0x9F94,\n\t7204: 0x9F96,\n\t7205: 0x9F97,\n\t7206: 0x9F9E,\n\t7207: 0x9FA1,\n\t7208: 0x9FA2,\n\t7209: 0x9FA3,\n\t7210: 0x9FA5,\n}\n\nconst (\n\tjis0208    = 1\n\tjis0212    = 2\n\tcodeMask   = 0x7f\n\tcodeShift  = 7\n\ttableShift = 14\n)\n\nconst numEncodeTables = 6\n\n// encodeX are the encoding tables from Unicode to JIS code,\n// sorted by decreasing length.\n// encode0: 20902 entries for runes in [19968, 40870).\n// encode1:  1632 entries for runes in [ 8208,  9840).\n// encode2:   974 entries for runes in [12288, 13262).\n// encode3:   959 entries for runes in [  161,  1120).\n// encode4:   261 entries for runes in [63785, 64046).\n// encode5:   229 entries for runes in [65281, 65510).\n//\n// The high two bits of the value record whether the JIS code comes from the\n// JIS0208 table (high bits == 1) or the JIS0212 table (high bits == 2).\n// The low 14 bits are two 7-bit unsigned integers j1 and j2 that form the\n// JIS code (94*j1 + j2) within that table.\n\nconst encode0Low, encode0High = 19968, 40870\n\nvar encode0 = [...]uint16{\n\t19968 - 19968: jis0208<<14 | 0x0F<<7 | 0x4B,\n\t19969 - 19968: jis0208<<14 | 0x22<<7 | 0x59,\n\t19970 - 19968: jis0212<<14 | 0x0F<<7 | 0x00,\n\t19971 - 19968: jis0208<<14 | 0x1B<<7 | 0x16,\n\t19972 - 19968: jis0212<<14 | 0x0F<<7 | 0x01,\n\t19973 - 19968: jis0212<<14 | 0x0F<<7 | 0x02,\n\t19975 - 19968: jis0208<<14 | 0x2A<<7 | 0x5B,\n\t19976 - 19968: jis0208<<14 | 0x1D<<7 | 0x45,\n\t19977 - 19968: jis0208<<14 | 0x1A<<7 | 0x0F,\n\t19978 - 19968: jis0208<<14 | 0x1D<<7 | 0x44,\n\t19979 - 19968: jis0208<<14 | 0x11<<7 | 0x1B,\n\t19980 - 19968: jis0212<<14 | 0x0F<<7 | 0x03,\n\t19981 - 19968: jis0208<<14 | 0x28<<7 | 0x33,\n\t19982 - 19968: jis0208<<14 | 0x2C<<7 | 0x1E,\n\t19984 - 19968: jis0208<<14 | 0x2F<<7 | 0x01,\n\t19985 - 19968: jis0208<<14 | 0x10<<7 | 0x0E,\n\t19986 - 19968: jis0212<<14 | 0x0F<<7 | 0x04,\n\t19988 - 19968: jis0208<<14 | 0x12<<7 | 0x4D,\n\t19989 - 19968: jis0208<<14 | 0x2F<<7 | 0x02,\n\t19990 - 19968: jis0208<<14 | 0x1F<<7 | 0x03,\n\t19991 - 19968: jis0208<<14 | 0x31<<7 | 0x21,\n\t19992 - 19968: jis0208<<14 | 0x14<<7 | 0x35,\n\t19993 - 19968: jis0208<<14 | 0x29<<7 | 0x19,\n\t19998 - 19968: jis0208<<14 | 0x1D<<7 | 0x46,\n\t19999 - 19968: jis0212<<14 | 0x0F<<7 | 0x05,\n\t20001 - 19968: jis0208<<14 | 0x2D<<7 | 0x1D,\n\t20003 - 19968: jis0212<<14 | 0x0F<<7 | 0x06,\n\t20004 - 19968: jis0212<<14 | 0x0F<<7 | 0x07,\n\t20006 - 19968: jis0208<<14 | 0x29<<7 | 0x21,\n\t20008 - 19968: jis0208<<14 | 0x58<<7 | 0x0C,\n\t20010 - 19968: jis0208<<14 | 0x2F<<7 | 0x03,\n\t20011 - 19968: jis0212<<14 | 0x0F<<7 | 0x09,\n\t20013 - 19968: jis0208<<14 | 0x22<<7 | 0x45,\n\t20014 - 19968: jis0212<<14 | 0x0F<<7 | 0x0A,\n\t20015 - 19968: jis0212<<14 | 0x0F<<7 | 0x0B,\n\t20016 - 19968: jis0212<<14 | 0x0F<<7 | 0x0C,\n\t20017 - 19968: jis0208<<14 | 0x2F<<7 | 0x04,\n\t20018 - 19968: jis0208<<14 | 0x15<<7 | 0x59,\n\t20021 - 19968: jis0212<<14 | 0x0F<<7 | 0x0D,\n\t20022 - 19968: jis0208<<14 | 0x2F<<7 | 0x05,\n\t20024 - 19968: jis0208<<14 | 0x13<<7 | 0x3C,\n\t20025 - 19968: jis0208<<14 | 0x22<<7 | 0x0F,\n\t20027 - 19968: jis0208<<14 | 0x1B<<7 | 0x46,\n\t20028 - 19968: jis0208<<14 | 0x2F<<7 | 0x06,\n\t20031 - 19968: jis0208<<14 | 0x2F<<7 | 0x07,\n\t20032 - 19968: jis0212<<14 | 0x0F<<7 | 0x0E,\n\t20033 - 19968: jis0212<<14 | 0x0F<<7 | 0x0F,\n\t20034 - 19968: jis0208<<14 | 0x2F<<7 | 0x08,\n\t20035 - 19968: jis0208<<14 | 0x26<<7 | 0x14,\n\t20036 - 19968: jis0212<<14 | 0x0F<<7 | 0x10,\n\t20037 - 19968: jis0208<<14 | 0x14<<7 | 0x36,\n\t20039 - 19968: jis0212<<14 | 0x0F<<7 | 0x11,\n\t20043 - 19968: jis0208<<14 | 0x26<<7 | 0x16,\n\t20045 - 19968: jis0208<<14 | 0x25<<7 | 0x42,\n\t20046 - 19968: jis0208<<14 | 0x17<<7 | 0x22,\n\t20047 - 19968: jis0208<<14 | 0x2A<<7 | 0x12,\n\t20049 - 19968: jis0212<<14 | 0x0F<<7 | 0x12,\n\t20053 - 19968: jis0208<<14 | 0x48<<7 | 0x28,\n\t20054 - 19968: jis0208<<14 | 0x2F<<7 | 0x09,\n\t20055 - 19968: jis0208<<14 | 0x1D<<7 | 0x47,\n\t20056 - 19968: jis0208<<14 | 0x2F<<7 | 0x0A,\n\t20057 - 19968: jis0208<<14 | 0x11<<7 | 0x14,\n\t20058 - 19968: jis0212<<14 | 0x0F<<7 | 0x13,\n\t20060 - 19968: jis0212<<14 | 0x0F<<7 | 0x14,\n\t20061 - 19968: jis0208<<14 | 0x15<<7 | 0x44,\n\t20062 - 19968: jis0208<<14 | 0x17<<7 | 0x4F,\n\t20063 - 19968: jis0208<<14 | 0x2B<<7 | 0x48,\n\t20066 - 19968: jis0208<<14 | 0x35<<7 | 0x05,\n\t20067 - 19968: jis0212<<14 | 0x0F<<7 | 0x15,\n\t20072 - 19968: jis0212<<14 | 0x0F<<7 | 0x16,\n\t20073 - 19968: jis0212<<14 | 0x0F<<7 | 0x17,\n\t20081 - 19968: jis0208<<14 | 0x2C<<7 | 0x4F,\n\t20083 - 19968: jis0208<<14 | 0x25<<7 | 0x5C,\n\t20084 - 19968: jis0212<<14 | 0x0F<<7 | 0x18,\n\t20085 - 19968: jis0212<<14 | 0x0F<<7 | 0x19,\n\t20089 - 19968: jis0212<<14 | 0x0F<<7 | 0x1A,\n\t20094 - 19968: jis0208<<14 | 0x13<<7 | 0x04,\n\t20095 - 19968: jis0212<<14 | 0x0F<<7 | 0x1B,\n\t20096 - 19968: jis0208<<14 | 0x14<<7 | 0x14,\n\t20098 - 19968: jis0208<<14 | 0x2F<<7 | 0x0B,\n\t20101 - 19968: jis0208<<14 | 0x2F<<7 | 0x0C,\n\t20102 - 19968: jis0208<<14 | 0x2D<<7 | 0x1A,\n\t20104 - 19968: jis0208<<14 | 0x2C<<7 | 0x1C,\n\t20105 - 19968: jis0208<<14 | 0x20<<7 | 0x47,\n\t20106 - 19968: jis0208<<14 | 0x2F<<7 | 0x0E,\n\t20107 - 19968: jis0208<<14 | 0x1A<<7 | 0x55,\n\t20108 - 19968: jis0208<<14 | 0x25<<7 | 0x52,\n\t20109 - 19968: jis0212<<14 | 0x0F<<7 | 0x1C,\n\t20110 - 19968: jis0208<<14 | 0x2F<<7 | 0x11,\n\t20113 - 19968: jis0208<<14 | 0x10<<7 | 0x1D,\n\t20114 - 19968: jis0208<<14 | 0x17<<7 | 0x3E,\n\t20116 - 19968: jis0208<<14 | 0x17<<7 | 0x3D,\n\t20117 - 19968: jis0208<<14 | 0x0F<<7 | 0x45,\n\t20118 - 19968: jis0212<<14 | 0x0F<<7 | 0x1D,\n\t20119 - 19968: jis0212<<14 | 0x0F<<7 | 0x1E,\n\t20120 - 19968: jis0208<<14 | 0x2E<<7 | 0x2A,\n\t20121 - 19968: jis0208<<14 | 0x2E<<7 | 0x29,\n\t20123 - 19968: jis0208<<14 | 0x19<<7 | 0x12,\n\t20124 - 19968: jis0208<<14 | 0x0F<<7 | 0x00,\n\t20125 - 19968: jis0212<<14 | 0x0F<<7 | 0x1F,\n\t20126 - 19968: jis0208<<14 | 0x2F<<7 | 0x12,\n\t20127 - 19968: jis0208<<14 | 0x2F<<7 | 0x13,\n\t20128 - 19968: jis0208<<14 | 0x2F<<7 | 0x14,\n\t20129 - 19968: jis0208<<14 | 0x2A<<7 | 0x13,\n\t20130 - 19968: jis0208<<14 | 0x2F<<7 | 0x15,\n\t20132 - 19968: jis0208<<14 | 0x17<<7 | 0x51,\n\t20133 - 19968: jis0208<<14 | 0x0F<<7 | 0x46,\n\t20134 - 19968: jis0208<<14 | 0x2A<<7 | 0x51,\n\t20136 - 19968: jis0208<<14 | 0x14<<7 | 0x5B,\n\t20139 - 19968: jis0208<<14 | 0x14<<7 | 0x5C,\n\t20140 - 19968: jis0208<<14 | 0x14<<7 | 0x5D,\n\t20141 - 19968: jis0208<<14 | 0x23<<7 | 0x41,\n\t20142 - 19968: jis0208<<14 | 0x2D<<7 | 0x1B,\n\t20143 - 19968: jis0212<<14 | 0x0F<<7 | 0x20,\n\t20144 - 19968: jis0208<<14 | 0x2F<<7 | 0x16,\n\t20147 - 19968: jis0208<<14 | 0x2F<<7 | 0x17,\n\t20150 - 19968: jis0208<<14 | 0x2F<<7 | 0x18,\n\t20153 - 19968: jis0212<<14 | 0x0F<<7 | 0x21,\n\t20154 - 19968: jis0208<<14 | 0x1E<<7 | 0x2C,\n\t20160 - 19968: jis0208<<14 | 0x1C<<7 | 0x19,\n\t20161 - 19968: jis0208<<14 | 0x1E<<7 | 0x2D,\n\t20162 - 19968: jis0208<<14 | 0x2F<<7 | 0x1D,\n\t20163 - 19968: jis0212<<14 | 0x0F<<7 | 0x22,\n\t20164 - 19968: jis0208<<14 | 0x2F<<7 | 0x1B,\n\t20166 - 19968: jis0208<<14 | 0x2F<<7 | 0x1C,\n\t20167 - 19968: jis0208<<14 | 0x14<<7 | 0x37,\n\t20170 - 19968: jis0208<<14 | 0x19<<7 | 0x02,\n\t20171 - 19968: jis0208<<14 | 0x11<<7 | 0x4F,\n\t20173 - 19968: jis0208<<14 | 0x2F<<7 | 0x1A,\n\t20174 - 19968: jis0208<<14 | 0x2F<<7 | 0x19,\n\t20175 - 19968: jis0208<<14 | 0x29<<7 | 0x08,\n\t20176 - 19968: jis0212<<14 | 0x0F<<7 | 0x23,\n\t20180 - 19968: jis0208<<14 | 0x1A<<7 | 0x25,\n\t20181 - 19968: jis0208<<14 | 0x1A<<7 | 0x24,\n\t20182 - 19968: jis0208<<14 | 0x21<<7 | 0x1D,\n\t20183 - 19968: jis0208<<14 | 0x2F<<7 | 0x1E,\n\t20184 - 19968: jis0208<<14 | 0x28<<7 | 0x34,\n\t20185 - 19968: jis0208<<14 | 0x1F<<7 | 0x46,\n\t20186 - 19968: jis0212<<14 | 0x0F<<7 | 0x24,\n\t20187 - 19968: jis0212<<14 | 0x0F<<7 | 0x25,\n\t20189 - 19968: jis0208<<14 | 0x00<<7 | 0x17,\n\t20190 - 19968: jis0208<<14 | 0x2F<<7 | 0x1F,\n\t20191 - 19968: jis0208<<14 | 0x2F<<7 | 0x21,\n\t20192 - 19968: jis0212<<14 | 0x0F<<7 | 0x26,\n\t20193 - 19968: jis0208<<14 | 0x58<<7 | 0x0D,\n\t20194 - 19968: jis0212<<14 | 0x0F<<7 | 0x28,\n\t20195 - 19968: jis0208<<14 | 0x21<<7 | 0x44,\n\t20196 - 19968: jis0208<<14 | 0x2D<<7 | 0x40,\n\t20197 - 19968: jis0208<<14 | 0x0F<<7 | 0x29,\n\t20200 - 19968: jis0212<<14 | 0x0F<<7 | 0x29,\n\t20205 - 19968: jis0208<<14 | 0x2F<<7 | 0x20,\n\t20206 - 19968: jis0208<<14 | 0x11<<7 | 0x1D,\n\t20207 - 19968: jis0212<<14 | 0x0F<<7 | 0x2A,\n\t20208 - 19968: jis0208<<14 | 0x15<<7 | 0x23,\n\t20209 - 19968: jis0212<<14 | 0x0F<<7 | 0x2B,\n\t20210 - 19968: jis0208<<14 | 0x22<<7 | 0x46,\n\t20211 - 19968: jis0212<<14 | 0x0F<<7 | 0x2C,\n\t20213 - 19968: jis0212<<14 | 0x0F<<7 | 0x2D,\n\t20214 - 19968: jis0208<<14 | 0x16<<7 | 0x4E,\n\t20215 - 19968: jis0208<<14 | 0x2F<<7 | 0x22,\n\t20219 - 19968: jis0208<<14 | 0x26<<7 | 0x03,\n\t20220 - 19968: jis0208<<14 | 0x58<<7 | 0x0E,\n\t20221 - 19968: jis0212<<14 | 0x0F<<7 | 0x2E,\n\t20222 - 19968: jis0212<<14 | 0x0F<<7 | 0x2F,\n\t20223 - 19968: jis0212<<14 | 0x0F<<7 | 0x30,\n\t20224 - 19968: jis0208<<14 | 0x58<<7 | 0x0F,\n\t20225 - 19968: jis0208<<14 | 0x13<<7 | 0x4A,\n\t20226 - 19968: jis0212<<14 | 0x0F<<7 | 0x32,\n\t20227 - 19968: jis0208<<14 | 0x58<<7 | 0x10,\n\t20232 - 19968: jis0212<<14 | 0x0F<<7 | 0x34,\n\t20233 - 19968: jis0208<<14 | 0x2F<<7 | 0x23,\n\t20234 - 19968: jis0208<<14 | 0x0F<<7 | 0x2A,\n\t20235 - 19968: jis0212<<14 | 0x0F<<7 | 0x35,\n\t20236 - 19968: jis0212<<14 | 0x0F<<7 | 0x36,\n\t20237 - 19968: jis0208<<14 | 0x17<<7 | 0x3F,\n\t20238 - 19968: jis0208<<14 | 0x13<<7 | 0x4B,\n\t20239 - 19968: jis0208<<14 | 0x28<<7 | 0x59,\n\t20240 - 19968: jis0208<<14 | 0x27<<7 | 0x11,\n\t20241 - 19968: jis0208<<14 | 0x14<<7 | 0x38,\n\t20242 - 19968: jis0212<<14 | 0x0F<<7 | 0x37,\n\t20245 - 19968: jis0212<<14 | 0x0F<<7 | 0x38,\n\t20246 - 19968: jis0212<<14 | 0x0F<<7 | 0x39,\n\t20247 - 19968: jis0212<<14 | 0x0F<<7 | 0x3A,\n\t20249 - 19968: jis0212<<14 | 0x0F<<7 | 0x3B,\n\t20250 - 19968: jis0208<<14 | 0x11<<7 | 0x50,\n\t20252 - 19968: jis0208<<14 | 0x2F<<7 | 0x46,\n\t20253 - 19968: jis0208<<14 | 0x24<<7 | 0x20,\n\t20270 - 19968: jis0212<<14 | 0x0F<<7 | 0x3C,\n\t20271 - 19968: jis0208<<14 | 0x26<<7 | 0x4B,\n\t20272 - 19968: jis0208<<14 | 0x2F<<7 | 0x25,\n\t20273 - 19968: jis0212<<14 | 0x0F<<7 | 0x3D,\n\t20275 - 19968: jis0212<<14 | 0x0F<<7 | 0x3F,\n\t20276 - 19968: jis0208<<14 | 0x27<<7 | 0x1B,\n\t20277 - 19968: jis0212<<14 | 0x0F<<7 | 0x40,\n\t20278 - 19968: jis0208<<14 | 0x2D<<7 | 0x41,\n\t20279 - 19968: jis0212<<14 | 0x0F<<7 | 0x41,\n\t20280 - 19968: jis0208<<14 | 0x1E<<7 | 0x0C,\n\t20281 - 19968: jis0208<<14 | 0x58<<7 | 0x11,\n\t20282 - 19968: jis0208<<14 | 0x1A<<7 | 0x26,\n\t20283 - 19968: jis0212<<14 | 0x0F<<7 | 0x43,\n\t20284 - 19968: jis0208<<14 | 0x1A<<7 | 0x56,\n\t20285 - 19968: jis0208<<14 | 0x11<<7 | 0x1F,\n\t20286 - 19968: jis0212<<14 | 0x0F<<7 | 0x44,\n\t20288 - 19968: jis0212<<14 | 0x0F<<7 | 0x45,\n\t20290 - 19968: jis0212<<14 | 0x0F<<7 | 0x46,\n\t20291 - 19968: jis0208<<14 | 0x23<<7 | 0x30,\n\t20294 - 19968: jis0208<<14 | 0x22<<7 | 0x01,\n\t20295 - 19968: jis0208<<14 | 0x2F<<7 | 0x29,\n\t20296 - 19968: jis0212<<14 | 0x0F<<7 | 0x47,\n\t20297 - 19968: jis0212<<14 | 0x0F<<7 | 0x48,\n\t20299 - 19968: jis0212<<14 | 0x0F<<7 | 0x49,\n\t20300 - 19968: jis0212<<14 | 0x0F<<7 | 0x4A,\n\t20301 - 19968: jis0208<<14 | 0x0F<<7 | 0x2B,\n\t20302 - 19968: jis0208<<14 | 0x23<<7 | 0x42,\n\t20303 - 19968: jis0208<<14 | 0x1C<<7 | 0x1A,\n\t20304 - 19968: jis0208<<14 | 0x19<<7 | 0x13,\n\t20305 - 19968: jis0208<<14 | 0x2C<<7 | 0x03,\n\t20306 - 19968: jis0212<<14 | 0x0F<<7 | 0x4B,\n\t20307 - 19968: jis0208<<14 | 0x21<<7 | 0x2D,\n\t20308 - 19968: jis0212<<14 | 0x0F<<7 | 0x4C,\n\t20309 - 19968: jis0208<<14 | 0x11<<7 | 0x1E,\n\t20310 - 19968: jis0208<<14 | 0x58<<7 | 0x12,\n\t20311 - 19968: jis0208<<14 | 0x2F<<7 | 0x28,\n\t20312 - 19968: jis0212<<14 | 0x0F<<7 | 0x4E,\n\t20313 - 19968: jis0208<<14 | 0x2C<<7 | 0x1D,\n\t20314 - 19968: jis0208<<14 | 0x2F<<7 | 0x24,\n\t20315 - 19968: jis0208<<14 | 0x2F<<7 | 0x26,\n\t20316 - 19968: jis0208<<14 | 0x19<<7 | 0x4D,\n\t20317 - 19968: jis0208<<14 | 0x2F<<7 | 0x27,\n\t20318 - 19968: jis0208<<14 | 0x34<<7 | 0x03,\n\t20319 - 19968: jis0212<<14 | 0x0F<<7 | 0x4F,\n\t20320 - 19968: jis0212<<14 | 0x0F<<7 | 0x3E,\n\t20323 - 19968: jis0212<<14 | 0x0F<<7 | 0x50,\n\t20329 - 19968: jis0208<<14 | 0x2F<<7 | 0x2F,\n\t20330 - 19968: jis0212<<14 | 0x0F<<7 | 0x51,\n\t20332 - 19968: jis0212<<14 | 0x0F<<7 | 0x52,\n\t20334 - 19968: jis0212<<14 | 0x0F<<7 | 0x53,\n\t20335 - 19968: jis0208<<14 | 0x2F<<7 | 0x32,\n\t20336 - 19968: jis0208<<14 | 0x2F<<7 | 0x30,\n\t20337 - 19968: jis0212<<14 | 0x0F<<7 | 0x54,\n\t20339 - 19968: jis0208<<14 | 0x11<<7 | 0x21,\n\t20341 - 19968: jis0208<<14 | 0x29<<7 | 0x1A,\n\t20342 - 19968: jis0208<<14 | 0x2F<<7 | 0x2A,\n\t20343 - 19968: jis0212<<14 | 0x0F<<7 | 0x55,\n\t20344 - 19968: jis0212<<14 | 0x0F<<7 | 0x56,\n\t20345 - 19968: jis0212<<14 | 0x0F<<7 | 0x57,\n\t20346 - 19968: jis0212<<14 | 0x0F<<7 | 0x58,\n\t20347 - 19968: jis0208<<14 | 0x2F<<7 | 0x2E,\n\t20348 - 19968: jis0208<<14 | 0x17<<7 | 0x52,\n\t20349 - 19968: jis0212<<14 | 0x0F<<7 | 0x59,\n\t20350 - 19968: jis0212<<14 | 0x0F<<7 | 0x5A,\n\t20351 - 19968: jis0208<<14 | 0x1A<<7 | 0x27,\n\t20353 - 19968: jis0212<<14 | 0x0F<<7 | 0x5B,\n\t20354 - 19968: jis0212<<14 | 0x0F<<7 | 0x5C,\n\t20355 - 19968: jis0208<<14 | 0x13<<7 | 0x05,\n\t20356 - 19968: jis0212<<14 | 0x0F<<7 | 0x5D,\n\t20357 - 19968: jis0212<<14 | 0x10<<7 | 0x00,\n\t20358 - 19968: jis0208<<14 | 0x2F<<7 | 0x33,\n\t20360 - 19968: jis0208<<14 | 0x2F<<7 | 0x2B,\n\t20361 - 19968: jis0212<<14 | 0x10<<7 | 0x01,\n\t20362 - 19968: jis0208<<14 | 0x58<<7 | 0x14,\n\t20363 - 19968: jis0208<<14 | 0x2D<<7 | 0x42,\n\t20364 - 19968: jis0212<<14 | 0x10<<7 | 0x03,\n\t20365 - 19968: jis0208<<14 | 0x1A<<7 | 0x57,\n\t20366 - 19968: jis0212<<14 | 0x10<<7 | 0x04,\n\t20367 - 19968: jis0208<<14 | 0x2F<<7 | 0x2C,\n\t20368 - 19968: jis0212<<14 | 0x10<<7 | 0x05,\n\t20369 - 19968: jis0208<<14 | 0x2F<<7 | 0x31,\n\t20370 - 19968: jis0208<<14 | 0x58<<7 | 0x13,\n\t20371 - 19968: jis0212<<14 | 0x10<<7 | 0x07,\n\t20372 - 19968: jis0208<<14 | 0x58<<7 | 0x16,\n\t20374 - 19968: jis0208<<14 | 0x2F<<7 | 0x34,\n\t20375 - 19968: jis0212<<14 | 0x10<<7 | 0x09,\n\t20376 - 19968: jis0208<<14 | 0x2F<<7 | 0x2D,\n\t20377 - 19968: jis0212<<14 | 0x10<<7 | 0x0A,\n\t20378 - 19968: jis0208<<14 | 0x58<<7 | 0x15,\n\t20379 - 19968: jis0208<<14 | 0x15<<7 | 0x00,\n\t20381 - 19968: jis0208<<14 | 0x0F<<7 | 0x2C,\n\t20382 - 19968: jis0212<<14 | 0x10<<7 | 0x0C,\n\t20383 - 19968: jis0212<<14 | 0x10<<7 | 0x0D,\n\t20384 - 19968: jis0208<<14 | 0x15<<7 | 0x01,\n\t20385 - 19968: jis0208<<14 | 0x11<<7 | 0x20,\n\t20395 - 19968: jis0208<<14 | 0x34<<7 | 0x04,\n\t20397 - 19968: jis0208<<14 | 0x2A<<7 | 0x58,\n\t20398 - 19968: jis0208<<14 | 0x28<<7 | 0x4D,\n\t20399 - 19968: jis0208<<14 | 0x17<<7 | 0x53,\n\t20402 - 19968: jis0212<<14 | 0x10<<7 | 0x0E,\n\t20405 - 19968: jis0208<<14 | 0x1E<<7 | 0x0E,\n\t20406 - 19968: jis0208<<14 | 0x2D<<7 | 0x16,\n\t20407 - 19968: jis0212<<14 | 0x10<<7 | 0x0F,\n\t20409 - 19968: jis0212<<14 | 0x10<<7 | 0x10,\n\t20411 - 19968: jis0212<<14 | 0x10<<7 | 0x11,\n\t20412 - 19968: jis0212<<14 | 0x10<<7 | 0x12,\n\t20413 - 19968: jis0212<<14 | 0x10<<7 | 0x13,\n\t20414 - 19968: jis0212<<14 | 0x10<<7 | 0x14,\n\t20415 - 19968: jis0208<<14 | 0x29<<7 | 0x37,\n\t20416 - 19968: jis0212<<14 | 0x10<<7 | 0x15,\n\t20417 - 19968: jis0212<<14 | 0x10<<7 | 0x16,\n\t20418 - 19968: jis0208<<14 | 0x16<<7 | 0x17,\n\t20419 - 19968: jis0208<<14 | 0x21<<7 | 0x04,\n\t20420 - 19968: jis0208<<14 | 0x11<<7 | 0x43,\n\t20421 - 19968: jis0212<<14 | 0x10<<7 | 0x17,\n\t20422 - 19968: jis0212<<14 | 0x10<<7 | 0x18,\n\t20424 - 19968: jis0212<<14 | 0x10<<7 | 0x19,\n\t20425 - 19968: jis0208<<14 | 0x58<<7 | 0x05,\n\t20426 - 19968: jis0208<<14 | 0x1C<<7 | 0x32,\n\t20427 - 19968: jis0212<<14 | 0x10<<7 | 0x1B,\n\t20428 - 19968: jis0212<<14 | 0x10<<7 | 0x1C,\n\t20429 - 19968: jis0208<<14 | 0x58<<7 | 0x17,\n\t20430 - 19968: jis0208<<14 | 0x2F<<7 | 0x38,\n\t20431 - 19968: jis0212<<14 | 0x10<<7 | 0x1E,\n\t20432 - 19968: jis0208<<14 | 0x2F<<7 | 0x3D,\n\t20433 - 19968: jis0208<<14 | 0x2F<<7 | 0x3B,\n\t20434 - 19968: jis0212<<14 | 0x10<<7 | 0x1F,\n\t20436 - 19968: jis0208<<14 | 0x2F<<7 | 0x36,\n\t20439 - 19968: jis0208<<14 | 0x21<<7 | 0x0E,\n\t20440 - 19968: jis0208<<14 | 0x2F<<7 | 0x39,\n\t20442 - 19968: jis0208<<14 | 0x2F<<7 | 0x3C,\n\t20443 - 19968: jis0208<<14 | 0x2F<<7 | 0x3A,\n\t20444 - 19968: jis0212<<14 | 0x10<<7 | 0x20,\n\t20445 - 19968: jis0208<<14 | 0x29<<7 | 0x3C,\n\t20447 - 19968: jis0208<<14 | 0x2F<<7 | 0x37,\n\t20448 - 19968: jis0212<<14 | 0x10<<7 | 0x21,\n\t20449 - 19968: jis0208<<14 | 0x1E<<7 | 0x0D,\n\t20450 - 19968: jis0212<<14 | 0x10<<7 | 0x22,\n\t20451 - 19968: jis0208<<14 | 0x2A<<7 | 0x52,\n\t20452 - 19968: jis0208<<14 | 0x2F<<7 | 0x3E,\n\t20453 - 19968: jis0208<<14 | 0x2F<<7 | 0x3F,\n\t20462 - 19968: jis0208<<14 | 0x1C<<7 | 0x03,\n\t20463 - 19968: jis0208<<14 | 0x2F<<7 | 0x4C,\n\t20464 - 19968: jis0212<<14 | 0x10<<7 | 0x23,\n\t20466 - 19968: jis0212<<14 | 0x10<<7 | 0x24,\n\t20467 - 19968: jis0208<<14 | 0x26<<7 | 0x2F,\n\t20469 - 19968: jis0208<<14 | 0x28<<7 | 0x15,\n\t20470 - 19968: jis0208<<14 | 0x2F<<7 | 0x47,\n\t20472 - 19968: jis0208<<14 | 0x29<<7 | 0x4F,\n\t20474 - 19968: jis0208<<14 | 0x11<<7 | 0x15,\n\t20476 - 19968: jis0212<<14 | 0x10<<7 | 0x25,\n\t20477 - 19968: jis0212<<14 | 0x10<<7 | 0x26,\n\t20478 - 19968: jis0208<<14 | 0x2F<<7 | 0x4B,\n\t20479 - 19968: jis0208<<14 | 0x58<<7 | 0x1A,\n\t20480 - 19968: jis0212<<14 | 0x10<<7 | 0x28,\n\t20481 - 19968: jis0212<<14 | 0x10<<7 | 0x29,\n\t20484 - 19968: jis0212<<14 | 0x10<<7 | 0x2A,\n\t20485 - 19968: jis0208<<14 | 0x2F<<7 | 0x45,\n\t20486 - 19968: jis0208<<14 | 0x2F<<7 | 0x4E,\n\t20487 - 19968: jis0212<<14 | 0x10<<7 | 0x2B,\n\t20489 - 19968: jis0208<<14 | 0x20<<7 | 0x31,\n\t20490 - 19968: jis0212<<14 | 0x10<<7 | 0x2C,\n\t20491 - 19968: jis0208<<14 | 0x17<<7 | 0x23,\n\t20492 - 19968: jis0212<<14 | 0x10<<7 | 0x2D,\n\t20493 - 19968: jis0208<<14 | 0x26<<7 | 0x3B,\n\t20494 - 19968: jis0212<<14 | 0x10<<7 | 0x2E,\n\t20495 - 19968: jis0208<<14 | 0x3F<<7 | 0x26,\n\t20496 - 19968: jis0212<<14 | 0x10<<7 | 0x2F,\n\t20497 - 19968: jis0208<<14 | 0x2F<<7 | 0x4D,\n\t20498 - 19968: jis0208<<14 | 0x24<<7 | 0x3C,\n\t20499 - 19968: jis0212<<14 | 0x10<<7 | 0x30,\n\t20500 - 19968: jis0208<<14 | 0x2F<<7 | 0x42,\n\t20502 - 19968: jis0208<<14 | 0x17<<7 | 0x55,\n\t20503 - 19968: jis0212<<14 | 0x10<<7 | 0x31,\n\t20504 - 19968: jis0212<<14 | 0x10<<7 | 0x32,\n\t20505 - 19968: jis0208<<14 | 0x17<<7 | 0x54,\n\t20506 - 19968: jis0208<<14 | 0x2F<<7 | 0x40,\n\t20507 - 19968: jis0212<<14 | 0x10<<7 | 0x33,\n\t20508 - 19968: jis0212<<14 | 0x10<<7 | 0x34,\n\t20509 - 19968: jis0212<<14 | 0x10<<7 | 0x35,\n\t20510 - 19968: jis0208<<14 | 0x58<<7 | 0x1B,\n\t20511 - 19968: jis0208<<14 | 0x1B<<7 | 0x39,\n\t20513 - 19968: jis0208<<14 | 0x2F<<7 | 0x48,\n\t20514 - 19968: jis0208<<14 | 0x58<<7 | 0x19,\n\t20515 - 19968: jis0208<<14 | 0x29<<7 | 0x4E,\n\t20516 - 19968: jis0208<<14 | 0x22<<7 | 0x2C,\n\t20517 - 19968: jis0208<<14 | 0x2F<<7 | 0x44,\n\t20518 - 19968: jis0208<<14 | 0x16<<7 | 0x50,\n\t20519 - 19968: jis0212<<14 | 0x10<<7 | 0x38,\n\t20520 - 19968: jis0208<<14 | 0x2F<<7 | 0x41,\n\t20521 - 19968: jis0208<<14 | 0x2F<<7 | 0x49,\n\t20522 - 19968: jis0208<<14 | 0x2F<<7 | 0x43,\n\t20523 - 19968: jis0208<<14 | 0x2D<<7 | 0x30,\n\t20524 - 19968: jis0208<<14 | 0x2F<<7 | 0x4A,\n\t20525 - 19968: jis0208<<14 | 0x2E<<7 | 0x20,\n\t20526 - 19968: jis0212<<14 | 0x10<<7 | 0x39,\n\t20528 - 19968: jis0212<<14 | 0x10<<7 | 0x3A,\n\t20530 - 19968: jis0212<<14 | 0x10<<7 | 0x3B,\n\t20531 - 19968: jis0212<<14 | 0x10<<7 | 0x3C,\n\t20533 - 19968: jis0212<<14 | 0x10<<7 | 0x3D,\n\t20534 - 19968: jis0208<<14 | 0x15<<7 | 0x45,\n\t20537 - 19968: jis0208<<14 | 0x16<<7 | 0x4F,\n\t20539 - 19968: jis0212<<14 | 0x10<<7 | 0x55,\n\t20544 - 19968: jis0208<<14 | 0x58<<7 | 0x18,\n\t20545 - 19968: jis0212<<14 | 0x10<<7 | 0x3F,\n\t20546 - 19968: jis0208<<14 | 0x58<<7 | 0x1E,\n\t20547 - 19968: jis0208<<14 | 0x2F<<7 | 0x4F,\n\t20549 - 19968: jis0212<<14 | 0x10<<7 | 0x41,\n\t20550 - 19968: jis0208<<14 | 0x58<<7 | 0x1C,\n\t20551 - 19968: jis0208<<14 | 0x2F<<7 | 0x50,\n\t20552 - 19968: jis0208<<14 | 0x2F<<7 | 0x54,\n\t20553 - 19968: jis0208<<14 | 0x0F<<7 | 0x2D,\n\t20554 - 19968: jis0212<<14 | 0x10<<7 | 0x43,\n\t20556 - 19968: jis0212<<14 | 0x10<<7 | 0x44,\n\t20558 - 19968: jis0212<<14 | 0x10<<7 | 0x45,\n\t20559 - 19968: jis0208<<14 | 0x29<<7 | 0x2F,\n\t20560 - 19968: jis0208<<14 | 0x2F<<7 | 0x53,\n\t20561 - 19968: jis0212<<14 | 0x10<<7 | 0x46,\n\t20562 - 19968: jis0212<<14 | 0x10<<7 | 0x47,\n\t20563 - 19968: jis0212<<14 | 0x10<<7 | 0x48,\n\t20565 - 19968: jis0208<<14 | 0x2F<<7 | 0x52,\n\t20566 - 19968: jis0208<<14 | 0x2F<<7 | 0x56,\n\t20567 - 19968: jis0212<<14 | 0x10<<7 | 0x49,\n\t20569 - 19968: jis0212<<14 | 0x10<<7 | 0x4A,\n\t20570 - 19968: jis0208<<14 | 0x2F<<7 | 0x55,\n\t20572 - 19968: jis0208<<14 | 0x23<<7 | 0x43,\n\t20575 - 19968: jis0212<<14 | 0x10<<7 | 0x4B,\n\t20576 - 19968: jis0212<<14 | 0x10<<7 | 0x4C,\n\t20578 - 19968: jis0212<<14 | 0x10<<7 | 0x4D,\n\t20579 - 19968: jis0212<<14 | 0x10<<7 | 0x4E,\n\t20581 - 19968: jis0208<<14 | 0x16<<7 | 0x51,\n\t20582 - 19968: jis0212<<14 | 0x10<<7 | 0x4F,\n\t20583 - 19968: jis0212<<14 | 0x10<<7 | 0x50,\n\t20586 - 19968: jis0212<<14 | 0x10<<7 | 0x51,\n\t20588 - 19968: jis0208<<14 | 0x2F<<7 | 0x57,\n\t20589 - 19968: jis0212<<14 | 0x10<<7 | 0x52,\n\t20592 - 19968: jis0208<<14 | 0x58<<7 | 0x1D,\n\t20593 - 19968: jis0212<<14 | 0x10<<7 | 0x54,\n\t20594 - 19968: jis0208<<14 | 0x1B<<7 | 0x24,\n\t20596 - 19968: jis0208<<14 | 0x21<<7 | 0x05,\n\t20597 - 19968: jis0208<<14 | 0x23<<7 | 0x44,\n\t20598 - 19968: jis0208<<14 | 0x15<<7 | 0x55,\n\t20600 - 19968: jis0208<<14 | 0x2F<<7 | 0x58,\n\t20605 - 19968: jis0208<<14 | 0x14<<7 | 0x15,\n\t20608 - 19968: jis0208<<14 | 0x2F<<7 | 0x59,\n\t20609 - 19968: jis0212<<14 | 0x10<<7 | 0x56,\n\t20611 - 19968: jis0212<<14 | 0x10<<7 | 0x57,\n\t20612 - 19968: jis0212<<14 | 0x10<<7 | 0x58,\n\t20613 - 19968: jis0208<<14 | 0x2F<<7 | 0x5B,\n\t20614 - 19968: jis0212<<14 | 0x10<<7 | 0x59,\n\t20618 - 19968: jis0212<<14 | 0x10<<7 | 0x5A,\n\t20621 - 19968: jis0208<<14 | 0x2A<<7 | 0x14,\n\t20622 - 19968: jis0212<<14 | 0x10<<7 | 0x5B,\n\t20623 - 19968: jis0212<<14 | 0x10<<7 | 0x5C,\n\t20624 - 19968: jis0212<<14 | 0x10<<7 | 0x5D,\n\t20625 - 19968: jis0208<<14 | 0x16<<7 | 0x45,\n\t20626 - 19968: jis0212<<14 | 0x11<<7 | 0x00,\n\t20627 - 19968: jis0212<<14 | 0x11<<7 | 0x01,\n\t20628 - 19968: jis0208<<14 | 0x58<<7 | 0x1F,\n\t20630 - 19968: jis0212<<14 | 0x11<<7 | 0x03,\n\t20632 - 19968: jis0208<<14 | 0x1A<<7 | 0x10,\n\t20633 - 19968: jis0208<<14 | 0x27<<7 | 0x56,\n\t20634 - 19968: jis0208<<14 | 0x2F<<7 | 0x5A,\n\t20635 - 19968: jis0212<<14 | 0x11<<7 | 0x04,\n\t20636 - 19968: jis0212<<14 | 0x11<<7 | 0x05,\n\t20638 - 19968: jis0212<<14 | 0x11<<7 | 0x06,\n\t20639 - 19968: jis0212<<14 | 0x11<<7 | 0x07,\n\t20640 - 19968: jis0212<<14 | 0x11<<7 | 0x08,\n\t20641 - 19968: jis0212<<14 | 0x11<<7 | 0x09,\n\t20642 - 19968: jis0212<<14 | 0x11<<7 | 0x0A,\n\t20650 - 19968: jis0212<<14 | 0x11<<7 | 0x0B,\n\t20652 - 19968: jis0208<<14 | 0x19<<7 | 0x24,\n\t20653 - 19968: jis0208<<14 | 0x2C<<7 | 0x22,\n\t20655 - 19968: jis0212<<14 | 0x11<<7 | 0x0C,\n\t20656 - 19968: jis0212<<14 | 0x11<<7 | 0x0D,\n\t20658 - 19968: jis0208<<14 | 0x2F<<7 | 0x5D,\n\t20659 - 19968: jis0208<<14 | 0x30<<7 | 0x02,\n\t20660 - 19968: jis0208<<14 | 0x2F<<7 | 0x5C,\n\t20661 - 19968: jis0208<<14 | 0x19<<7 | 0x23,\n\t20663 - 19968: jis0208<<14 | 0x1C<<7 | 0x5C,\n\t20665 - 19968: jis0212<<14 | 0x11<<7 | 0x0E,\n\t20666 - 19968: jis0212<<14 | 0x11<<7 | 0x0F,\n\t20669 - 19968: jis0212<<14 | 0x11<<7 | 0x10,\n\t20670 - 19968: jis0208<<14 | 0x16<<7 | 0x18,\n\t20672 - 19968: jis0212<<14 | 0x11<<7 | 0x11,\n\t20674 - 19968: jis0208<<14 | 0x30<<7 | 0x03,\n\t20675 - 19968: jis0212<<14 | 0x11<<7 | 0x12,\n\t20676 - 19968: jis0212<<14 | 0x11<<7 | 0x13,\n\t20677 - 19968: jis0208<<14 | 0x15<<7 | 0x2E,\n\t20679 - 19968: jis0212<<14 | 0x11<<7 | 0x14,\n\t20681 - 19968: jis0208<<14 | 0x30<<7 | 0x00,\n\t20682 - 19968: jis0208<<14 | 0x30<<7 | 0x01,\n\t20684 - 19968: jis0212<<14 | 0x11<<7 | 0x15,\n\t20685 - 19968: jis0208<<14 | 0x25<<7 | 0x0E,\n\t20686 - 19968: jis0212<<14 | 0x11<<7 | 0x16,\n\t20687 - 19968: jis0208<<14 | 0x20<<7 | 0x5B,\n\t20688 - 19968: jis0212<<14 | 0x11<<7 | 0x17,\n\t20689 - 19968: jis0208<<14 | 0x15<<7 | 0x02,\n\t20691 - 19968: jis0212<<14 | 0x11<<7 | 0x18,\n\t20692 - 19968: jis0212<<14 | 0x11<<7 | 0x19,\n\t20693 - 19968: jis0208<<14 | 0x2A<<7 | 0x2C,\n\t20694 - 19968: jis0208<<14 | 0x30<<7 | 0x04,\n\t20696 - 19968: jis0208<<14 | 0x58<<7 | 0x21,\n\t20698 - 19968: jis0208<<14 | 0x2D<<7 | 0x1C,\n\t20700 - 19968: jis0212<<14 | 0x11<<7 | 0x1B,\n\t20701 - 19968: jis0212<<14 | 0x11<<7 | 0x1C,\n\t20702 - 19968: jis0208<<14 | 0x30<<7 | 0x05,\n\t20703 - 19968: jis0212<<14 | 0x11<<7 | 0x1D,\n\t20706 - 19968: jis0212<<14 | 0x11<<7 | 0x1E,\n\t20707 - 19968: jis0208<<14 | 0x30<<7 | 0x08,\n\t20708 - 19968: jis0212<<14 | 0x11<<7 | 0x1F,\n\t20709 - 19968: jis0208<<14 | 0x30<<7 | 0x06,\n\t20710 - 19968: jis0212<<14 | 0x11<<7 | 0x20,\n\t20711 - 19968: jis0208<<14 | 0x20<<7 | 0x2D,\n\t20712 - 19968: jis0212<<14 | 0x11<<7 | 0x21,\n\t20713 - 19968: jis0212<<14 | 0x11<<7 | 0x22,\n\t20717 - 19968: jis0208<<14 | 0x30<<7 | 0x07,\n\t20718 - 19968: jis0208<<14 | 0x30<<7 | 0x09,\n\t20719 - 19968: jis0212<<14 | 0x11<<7 | 0x23,\n\t20721 - 19968: jis0212<<14 | 0x11<<7 | 0x24,\n\t20722 - 19968: jis0212<<14 | 0x11<<7 | 0x30,\n\t20724 - 19968: jis0208<<14 | 0x58<<7 | 0x20,\n\t20725 - 19968: jis0208<<14 | 0x30<<7 | 0x0B,\n\t20726 - 19968: jis0212<<14 | 0x11<<7 | 0x25,\n\t20729 - 19968: jis0208<<14 | 0x30<<7 | 0x0A,\n\t20730 - 19968: jis0212<<14 | 0x11<<7 | 0x26,\n\t20731 - 19968: jis0208<<14 | 0x29<<7 | 0x27,\n\t20734 - 19968: jis0212<<14 | 0x11<<7 | 0x27,\n\t20736 - 19968: jis0208<<14 | 0x14<<7 | 0x16,\n\t20737 - 19968: jis0208<<14 | 0x30<<7 | 0x0D,\n\t20738 - 19968: jis0208<<14 | 0x30<<7 | 0x0E,\n\t20739 - 19968: jis0212<<14 | 0x11<<7 | 0x28,\n\t20740 - 19968: jis0208<<14 | 0x11<<7 | 0x0E,\n\t20742 - 19968: jis0212<<14 | 0x11<<7 | 0x29,\n\t20743 - 19968: jis0212<<14 | 0x11<<7 | 0x2A,\n\t20744 - 19968: jis0212<<14 | 0x11<<7 | 0x2B,\n\t20745 - 19968: jis0208<<14 | 0x30<<7 | 0x0C,\n\t20747 - 19968: jis0212<<14 | 0x11<<7 | 0x2C,\n\t20748 - 19968: jis0212<<14 | 0x11<<7 | 0x2D,\n\t20749 - 19968: jis0212<<14 | 0x11<<7 | 0x2E,\n\t20750 - 19968: jis0212<<14 | 0x11<<7 | 0x2F,\n\t20752 - 19968: jis0212<<14 | 0x11<<7 | 0x31,\n\t20754 - 19968: jis0208<<14 | 0x1B<<7 | 0x53,\n\t20756 - 19968: jis0208<<14 | 0x30<<7 | 0x11,\n\t20757 - 19968: jis0208<<14 | 0x30<<7 | 0x10,\n\t20758 - 19968: jis0208<<14 | 0x30<<7 | 0x0F,\n\t20759 - 19968: jis0212<<14 | 0x11<<7 | 0x32,\n\t20760 - 19968: jis0208<<14 | 0x2F<<7 | 0x35,\n\t20761 - 19968: jis0212<<14 | 0x11<<7 | 0x33,\n\t20762 - 19968: jis0208<<14 | 0x30<<7 | 0x12,\n\t20763 - 19968: jis0212<<14 | 0x11<<7 | 0x34,\n\t20764 - 19968: jis0212<<14 | 0x11<<7 | 0x35,\n\t20765 - 19968: jis0212<<14 | 0x11<<7 | 0x36,\n\t20766 - 19968: jis0212<<14 | 0x11<<7 | 0x37,\n\t20767 - 19968: jis0208<<14 | 0x1C<<7 | 0x5D,\n\t20769 - 19968: jis0208<<14 | 0x30<<7 | 0x13,\n\t20771 - 19968: jis0212<<14 | 0x11<<7 | 0x38,\n\t20775 - 19968: jis0212<<14 | 0x11<<7 | 0x39,\n\t20776 - 19968: jis0212<<14 | 0x11<<7 | 0x3A,\n\t20778 - 19968: jis0208<<14 | 0x2C<<7 | 0x04,\n\t20780 - 19968: jis0212<<14 | 0x11<<7 | 0x3B,\n\t20781 - 19968: jis0212<<14 | 0x11<<7 | 0x3C,\n\t20783 - 19968: jis0212<<14 | 0x11<<7 | 0x3D,\n\t20785 - 19968: jis0212<<14 | 0x11<<7 | 0x3E,\n\t20786 - 19968: jis0208<<14 | 0x2B<<7 | 0x38,\n\t20787 - 19968: jis0212<<14 | 0x11<<7 | 0x3F,\n\t20788 - 19968: jis0212<<14 | 0x11<<7 | 0x40,\n\t20789 - 19968: jis0212<<14 | 0x11<<7 | 0x41,\n\t20791 - 19968: jis0208<<14 | 0x30<<7 | 0x15,\n\t20792 - 19968: jis0212<<14 | 0x11<<7 | 0x42,\n\t20793 - 19968: jis0212<<14 | 0x11<<7 | 0x43,\n\t20794 - 19968: jis0208<<14 | 0x30<<7 | 0x14,\n\t20795 - 19968: jis0208<<14 | 0x30<<7 | 0x17,\n\t20796 - 19968: jis0208<<14 | 0x30<<7 | 0x16,\n\t20799 - 19968: jis0208<<14 | 0x30<<7 | 0x18,\n\t20800 - 19968: jis0208<<14 | 0x30<<7 | 0x19,\n\t20801 - 19968: jis0208<<14 | 0x0F<<7 | 0x53,\n\t20802 - 19968: jis0212<<14 | 0x11<<7 | 0x44,\n\t20803 - 19968: jis0208<<14 | 0x17<<7 | 0x14,\n\t20804 - 19968: jis0208<<14 | 0x16<<7 | 0x1A,\n\t20805 - 19968: jis0208<<14 | 0x1C<<7 | 0x1B,\n\t20806 - 19968: jis0208<<14 | 0x22<<7 | 0x5A,\n\t20807 - 19968: jis0208<<14 | 0x15<<7 | 0x03,\n\t20808 - 19968: jis0208<<14 | 0x1F<<7 | 0x47,\n\t20809 - 19968: jis0208<<14 | 0x17<<7 | 0x56,\n\t20810 - 19968: jis0208<<14 | 0x58<<7 | 0x22,\n\t20811 - 19968: jis0208<<14 | 0x18<<7 | 0x4D,\n\t20812 - 19968: jis0208<<14 | 0x30<<7 | 0x1B,\n\t20813 - 19968: jis0208<<14 | 0x2B<<7 | 0x27,\n\t20814 - 19968: jis0208<<14 | 0x24<<7 | 0x25,\n\t20815 - 19968: jis0212<<14 | 0x11<<7 | 0x46,\n\t20816 - 19968: jis0208<<14 | 0x1A<<7 | 0x58,\n\t20818 - 19968: jis0208<<14 | 0x30<<7 | 0x1A,\n\t20819 - 19968: jis0212<<14 | 0x11<<7 | 0x47,\n\t20820 - 19968: jis0208<<14 | 0x30<<7 | 0x1C,\n\t20821 - 19968: jis0212<<14 | 0x11<<7 | 0x48,\n\t20823 - 19968: jis0212<<14 | 0x11<<7 | 0x49,\n\t20824 - 19968: jis0212<<14 | 0x11<<7 | 0x4A,\n\t20826 - 19968: jis0208<<14 | 0x24<<7 | 0x3D,\n\t20828 - 19968: jis0208<<14 | 0x12<<7 | 0x54,\n\t20831 - 19968: jis0212<<14 | 0x11<<7 | 0x4B,\n\t20834 - 19968: jis0208<<14 | 0x30<<7 | 0x1D,\n\t20836 - 19968: jis0208<<14 | 0x58<<7 | 0x23,\n\t20837 - 19968: jis0208<<14 | 0x25<<7 | 0x5D,\n\t20838 - 19968: jis0212<<14 | 0x11<<7 | 0x4D,\n\t20840 - 19968: jis0208<<14 | 0x20<<7 | 0x13,\n\t20841 - 19968: jis0208<<14 | 0x30<<7 | 0x1F,\n\t20842 - 19968: jis0208<<14 | 0x30<<7 | 0x20,\n\t20843 - 19968: jis0208<<14 | 0x27<<7 | 0x0B,\n\t20844 - 19968: jis0208<<14 | 0x17<<7 | 0x57,\n\t20845 - 19968: jis0208<<14 | 0x2E<<7 | 0x1A,\n\t20846 - 19968: jis0208<<14 | 0x30<<7 | 0x21,\n\t20849 - 19968: jis0208<<14 | 0x15<<7 | 0x05,\n\t20853 - 19968: jis0208<<14 | 0x29<<7 | 0x1B,\n\t20854 - 19968: jis0208<<14 | 0x21<<7 | 0x15,\n\t20855 - 19968: jis0208<<14 | 0x15<<7 | 0x50,\n\t20856 - 19968: jis0208<<14 | 0x24<<7 | 0x14,\n\t20860 - 19968: jis0208<<14 | 0x16<<7 | 0x52,\n\t20862 - 19968: jis0212<<14 | 0x11<<7 | 0x4E,\n\t20864 - 19968: jis0208<<14 | 0x30<<7 | 0x22,\n\t20866 - 19968: jis0208<<14 | 0x30<<7 | 0x23,\n\t20867 - 19968: jis0212<<14 | 0x11<<7 | 0x4F,\n\t20868 - 19968: jis0212<<14 | 0x11<<7 | 0x50,\n\t20869 - 19968: jis0208<<14 | 0x25<<7 | 0x41,\n\t20870 - 19968: jis0208<<14 | 0x10<<7 | 0x3E,\n\t20873 - 19968: jis0208<<14 | 0x30<<7 | 0x26,\n\t20874 - 19968: jis0208<<14 | 0x19<<7 | 0x5C,\n\t20875 - 19968: jis0212<<14 | 0x11<<7 | 0x51,\n\t20876 - 19968: jis0208<<14 | 0x30<<7 | 0x25,\n\t20877 - 19968: jis0208<<14 | 0x19<<7 | 0x25,\n\t20878 - 19968: jis0212<<14 | 0x11<<7 | 0x52,\n\t20879 - 19968: jis0208<<14 | 0x30<<7 | 0x27,\n\t20880 - 19968: jis0208<<14 | 0x45<<7 | 0x4D,\n\t20881 - 19968: jis0208<<14 | 0x30<<7 | 0x28,\n\t20882 - 19968: jis0208<<14 | 0x2A<<7 | 0x20,\n\t20883 - 19968: jis0208<<14 | 0x30<<7 | 0x29,\n\t20885 - 19968: jis0208<<14 | 0x30<<7 | 0x2A,\n\t20886 - 19968: jis0208<<14 | 0x30<<7 | 0x2B,\n\t20887 - 19968: jis0208<<14 | 0x1D<<7 | 0x48,\n\t20888 - 19968: jis0212<<14 | 0x11<<7 | 0x53,\n\t20889 - 19968: jis0208<<14 | 0x1B<<7 | 0x2B,\n\t20893 - 19968: jis0208<<14 | 0x58<<7 | 0x24,\n\t20896 - 19968: jis0208<<14 | 0x13<<7 | 0x06,\n\t20897 - 19968: jis0212<<14 | 0x11<<7 | 0x55,\n\t20898 - 19968: jis0208<<14 | 0x30<<7 | 0x2E,\n\t20899 - 19968: jis0212<<14 | 0x11<<7 | 0x56,\n\t20900 - 19968: jis0208<<14 | 0x30<<7 | 0x2C,\n\t20901 - 19968: jis0208<<14 | 0x2B<<7 | 0x1C,\n\t20902 - 19968: jis0208<<14 | 0x30<<7 | 0x2D,\n\t20904 - 19968: jis0208<<14 | 0x28<<7 | 0x39,\n\t20905 - 19968: jis0208<<14 | 0x30<<7 | 0x2F,\n\t20906 - 19968: jis0208<<14 | 0x30<<7 | 0x30,\n\t20907 - 19968: jis0208<<14 | 0x30<<7 | 0x31,\n\t20908 - 19968: jis0208<<14 | 0x24<<7 | 0x3E,\n\t20909 - 19968: jis0212<<14 | 0x11<<7 | 0x57,\n\t20912 - 19968: jis0208<<14 | 0x30<<7 | 0x35,\n\t20913 - 19968: jis0208<<14 | 0x30<<7 | 0x33,\n\t20914 - 19968: jis0208<<14 | 0x30<<7 | 0x34,\n\t20915 - 19968: jis0208<<14 | 0x30<<7 | 0x32,\n\t20916 - 19968: jis0208<<14 | 0x19<<7 | 0x42,\n\t20917 - 19968: jis0208<<14 | 0x30<<7 | 0x36,\n\t20918 - 19968: jis0208<<14 | 0x2B<<7 | 0x49,\n\t20919 - 19968: jis0208<<14 | 0x2D<<7 | 0x43,\n\t20920 - 19968: jis0212<<14 | 0x11<<7 | 0x58,\n\t20922 - 19968: jis0212<<14 | 0x11<<7 | 0x59,\n\t20924 - 19968: jis0212<<14 | 0x11<<7 | 0x5A,\n\t20925 - 19968: jis0208<<14 | 0x30<<7 | 0x37,\n\t20926 - 19968: jis0208<<14 | 0x58<<7 | 0x25,\n\t20927 - 19968: jis0212<<14 | 0x11<<7 | 0x5C,\n\t20930 - 19968: jis0212<<14 | 0x11<<7 | 0x5D,\n\t20932 - 19968: jis0208<<14 | 0x1F<<7 | 0x07,\n\t20933 - 19968: jis0208<<14 | 0x30<<7 | 0x38,\n\t20934 - 19968: jis0208<<14 | 0x1C<<7 | 0x39,\n\t20936 - 19968: jis0212<<14 | 0x12<<7 | 0x00,\n\t20937 - 19968: jis0208<<14 | 0x30<<7 | 0x39,\n\t20939 - 19968: jis0208<<14 | 0x22<<7 | 0x5B,\n\t20940 - 19968: jis0208<<14 | 0x2D<<7 | 0x1E,\n\t20941 - 19968: jis0208<<14 | 0x24<<7 | 0x3F,\n\t20943 - 19968: jis0212<<14 | 0x12<<7 | 0x01,\n\t20945 - 19968: jis0212<<14 | 0x12<<7 | 0x02,\n\t20946 - 19968: jis0212<<14 | 0x12<<7 | 0x03,\n\t20947 - 19968: jis0212<<14 | 0x12<<7 | 0x04,\n\t20949 - 19968: jis0212<<14 | 0x12<<7 | 0x05,\n\t20950 - 19968: jis0208<<14 | 0x31<<7 | 0x24,\n\t20952 - 19968: jis0212<<14 | 0x12<<7 | 0x06,\n\t20955 - 19968: jis0208<<14 | 0x30<<7 | 0x3A,\n\t20956 - 19968: jis0208<<14 | 0x53<<7 | 0x04,\n\t20957 - 19968: jis0208<<14 | 0x15<<7 | 0x24,\n\t20958 - 19968: jis0212<<14 | 0x12<<7 | 0x07,\n\t20960 - 19968: jis0208<<14 | 0x30<<7 | 0x3B,\n\t20961 - 19968: jis0208<<14 | 0x2A<<7 | 0x3D,\n\t20962 - 19968: jis0212<<14 | 0x12<<7 | 0x08,\n\t20965 - 19968: jis0212<<14 | 0x12<<7 | 0x09,\n\t20966 - 19968: jis0208<<14 | 0x1C<<7 | 0x47,\n\t20967 - 19968: jis0208<<14 | 0x21<<7 | 0x5B,\n\t20969 - 19968: jis0208<<14 | 0x30<<7 | 0x3D,\n\t20970 - 19968: jis0208<<14 | 0x25<<7 | 0x43,\n\t20972 - 19968: jis0208<<14 | 0x58<<7 | 0x26,\n\t20973 - 19968: jis0208<<14 | 0x30<<7 | 0x3E,\n\t20974 - 19968: jis0212<<14 | 0x12<<7 | 0x0A,\n\t20976 - 19968: jis0208<<14 | 0x30<<7 | 0x3F,\n\t20977 - 19968: jis0208<<14 | 0x12<<7 | 0x0D,\n\t20978 - 19968: jis0212<<14 | 0x12<<7 | 0x0B,\n\t20979 - 19968: jis0212<<14 | 0x12<<7 | 0x0C,\n\t20980 - 19968: jis0212<<14 | 0x12<<7 | 0x0D,\n\t20981 - 19968: jis0208<<14 | 0x30<<7 | 0x40,\n\t20982 - 19968: jis0208<<14 | 0x15<<7 | 0x06,\n\t20983 - 19968: jis0212<<14 | 0x12<<7 | 0x0E,\n\t20984 - 19968: jis0208<<14 | 0x25<<7 | 0x2B,\n\t20985 - 19968: jis0208<<14 | 0x10<<7 | 0x59,\n\t20986 - 19968: jis0208<<14 | 0x1C<<7 | 0x2F,\n\t20989 - 19968: jis0208<<14 | 0x27<<7 | 0x00,\n\t20990 - 19968: jis0208<<14 | 0x30<<7 | 0x41,\n\t20992 - 19968: jis0208<<14 | 0x24<<7 | 0x40,\n\t20993 - 19968: jis0212<<14 | 0x12<<7 | 0x0F,\n\t20994 - 19968: jis0212<<14 | 0x12<<7 | 0x10,\n\t20995 - 19968: jis0208<<14 | 0x1E<<7 | 0x2E,\n\t20996 - 19968: jis0208<<14 | 0x30<<7 | 0x42,\n\t20997 - 19968: jis0212<<14 | 0x12<<7 | 0x11,\n\t20998 - 19968: jis0208<<14 | 0x29<<7 | 0x0B,\n\t20999 - 19968: jis0208<<14 | 0x1F<<7 | 0x39,\n\t21000 - 19968: jis0208<<14 | 0x13<<7 | 0x01,\n\t21002 - 19968: jis0208<<14 | 0x13<<7 | 0x08,\n\t21003 - 19968: jis0208<<14 | 0x30<<7 | 0x43,\n\t21006 - 19968: jis0208<<14 | 0x30<<7 | 0x45,\n\t21009 - 19968: jis0208<<14 | 0x16<<7 | 0x19,\n\t21010 - 19968: jis0212<<14 | 0x12<<7 | 0x12,\n\t21011 - 19968: jis0212<<14 | 0x12<<7 | 0x13,\n\t21012 - 19968: jis0208<<14 | 0x30<<7 | 0x44,\n\t21013 - 19968: jis0208<<14 | 0x58<<7 | 0x27,\n\t21014 - 19968: jis0212<<14 | 0x12<<7 | 0x15,\n\t21015 - 19968: jis0208<<14 | 0x2D<<7 | 0x52,\n\t21016 - 19968: jis0212<<14 | 0x12<<7 | 0x16,\n\t21021 - 19968: jis0208<<14 | 0x1C<<7 | 0x48,\n\t21026 - 19968: jis0212<<14 | 0x12<<7 | 0x17,\n\t21028 - 19968: jis0208<<14 | 0x27<<7 | 0x1C,\n\t21029 - 19968: jis0208<<14 | 0x29<<7 | 0x2B,\n\t21031 - 19968: jis0208<<14 | 0x30<<7 | 0x46,\n\t21032 - 19968: jis0212<<14 | 0x12<<7 | 0x18,\n\t21033 - 19968: jis0208<<14 | 0x2C<<7 | 0x57,\n\t21034 - 19968: jis0208<<14 | 0x30<<7 | 0x47,\n\t21038 - 19968: jis0208<<14 | 0x30<<7 | 0x48,\n\t21040 - 19968: jis0208<<14 | 0x24<<7 | 0x5D,\n\t21041 - 19968: jis0212<<14 | 0x12<<7 | 0x19,\n\t21042 - 19968: jis0212<<14 | 0x12<<7 | 0x1A,\n\t21043 - 19968: jis0208<<14 | 0x30<<7 | 0x49,\n\t21045 - 19968: jis0212<<14 | 0x12<<7 | 0x1B,\n\t21046 - 19968: jis0208<<14 | 0x1F<<7 | 0x08,\n\t21047 - 19968: jis0208<<14 | 0x19<<7 | 0x5D,\n\t21048 - 19968: jis0208<<14 | 0x16<<7 | 0x53,\n\t21049 - 19968: jis0208<<14 | 0x30<<7 | 0x4A,\n\t21050 - 19968: jis0208<<14 | 0x1A<<7 | 0x28,\n\t21051 - 19968: jis0208<<14 | 0x18<<7 | 0x4E,\n\t21052 - 19968: jis0212<<14 | 0x12<<7 | 0x1C,\n\t21059 - 19968: jis0208<<14 | 0x23<<7 | 0x45,\n\t21060 - 19968: jis0208<<14 | 0x30<<7 | 0x4C,\n\t21061 - 19968: jis0212<<14 | 0x12<<7 | 0x1D,\n\t21063 - 19968: jis0208<<14 | 0x21<<7 | 0x06,\n\t21065 - 19968: jis0212<<14 | 0x12<<7 | 0x1E,\n\t21066 - 19968: jis0208<<14 | 0x19<<7 | 0x4E,\n\t21067 - 19968: jis0208<<14 | 0x30<<7 | 0x4D,\n\t21068 - 19968: jis0208<<14 | 0x30<<7 | 0x4E,\n\t21069 - 19968: jis0208<<14 | 0x20<<7 | 0x0F,\n\t21071 - 19968: jis0208<<14 | 0x30<<7 | 0x4B,\n\t21076 - 19968: jis0208<<14 | 0x30<<7 | 0x50,\n\t21077 - 19968: jis0212<<14 | 0x12<<7 | 0x1F,\n\t21078 - 19968: jis0208<<14 | 0x2A<<7 | 0x15,\n\t21079 - 19968: jis0212<<14 | 0x12<<7 | 0x20,\n\t21080 - 19968: jis0212<<14 | 0x12<<7 | 0x21,\n\t21082 - 19968: jis0212<<14 | 0x12<<7 | 0x22,\n\t21083 - 19968: jis0208<<14 | 0x18<<7 | 0x43,\n\t21084 - 19968: jis0212<<14 | 0x12<<7 | 0x23,\n\t21086 - 19968: jis0208<<14 | 0x30<<7 | 0x4F,\n\t21087 - 19968: jis0212<<14 | 0x12<<7 | 0x24,\n\t21088 - 19968: jis0212<<14 | 0x12<<7 | 0x25,\n\t21089 - 19968: jis0212<<14 | 0x12<<7 | 0x26,\n\t21091 - 19968: jis0208<<14 | 0x16<<7 | 0x54,\n\t21092 - 19968: jis0208<<14 | 0x19<<7 | 0x3D,\n\t21093 - 19968: jis0208<<14 | 0x26<<7 | 0x4C,\n\t21094 - 19968: jis0212<<14 | 0x12<<7 | 0x27,\n\t21097 - 19968: jis0208<<14 | 0x30<<7 | 0x53,\n\t21098 - 19968: jis0208<<14 | 0x30<<7 | 0x51,\n\t21102 - 19968: jis0212<<14 | 0x12<<7 | 0x28,\n\t21103 - 19968: jis0208<<14 | 0x28<<7 | 0x5A,\n\t21104 - 19968: jis0208<<14 | 0x1D<<7 | 0x49,\n\t21105 - 19968: jis0208<<14 | 0x30<<7 | 0x5A,\n\t21106 - 19968: jis0208<<14 | 0x12<<7 | 0x43,\n\t21107 - 19968: jis0208<<14 | 0x30<<7 | 0x54,\n\t21108 - 19968: jis0208<<14 | 0x30<<7 | 0x52,\n\t21109 - 19968: jis0208<<14 | 0x20<<7 | 0x2E,\n\t21111 - 19968: jis0212<<14 | 0x12<<7 | 0x29,\n\t21112 - 19968: jis0212<<14 | 0x12<<7 | 0x2A,\n\t21113 - 19968: jis0212<<14 | 0x12<<7 | 0x2B,\n\t21117 - 19968: jis0208<<14 | 0x30<<7 | 0x56,\n\t21119 - 19968: jis0208<<14 | 0x30<<7 | 0x55,\n\t21120 - 19968: jis0212<<14 | 0x12<<7 | 0x2C,\n\t21122 - 19968: jis0212<<14 | 0x12<<7 | 0x2D,\n\t21123 - 19968: jis0208<<14 | 0x12<<7 | 0x23,\n\t21125 - 19968: jis0212<<14 | 0x12<<7 | 0x2E,\n\t21127 - 19968: jis0208<<14 | 0x16<<7 | 0x3F,\n\t21128 - 19968: jis0208<<14 | 0x30<<7 | 0x5B,\n\t21129 - 19968: jis0208<<14 | 0x2D<<7 | 0x0C,\n\t21130 - 19968: jis0212<<14 | 0x12<<7 | 0x2F,\n\t21132 - 19968: jis0212<<14 | 0x12<<7 | 0x30,\n\t21133 - 19968: jis0208<<14 | 0x30<<7 | 0x57,\n\t21137 - 19968: jis0208<<14 | 0x30<<7 | 0x5C,\n\t21138 - 19968: jis0208<<14 | 0x30<<7 | 0x59,\n\t21139 - 19968: jis0212<<14 | 0x12<<7 | 0x31,\n\t21140 - 19968: jis0208<<14 | 0x30<<7 | 0x58,\n\t21141 - 19968: jis0212<<14 | 0x12<<7 | 0x32,\n\t21142 - 19968: jis0212<<14 | 0x12<<7 | 0x33,\n\t21143 - 19968: jis0212<<14 | 0x12<<7 | 0x34,\n\t21144 - 19968: jis0212<<14 | 0x12<<7 | 0x35,\n\t21146 - 19968: jis0212<<14 | 0x12<<7 | 0x36,\n\t21147 - 19968: jis0208<<14 | 0x2D<<7 | 0x2E,\n\t21148 - 19968: jis0208<<14 | 0x58<<7 | 0x28,\n\t21151 - 19968: jis0208<<14 | 0x17<<7 | 0x58,\n\t21152 - 19968: jis0208<<14 | 0x11<<7 | 0x22,\n\t21155 - 19968: jis0208<<14 | 0x2D<<7 | 0x53,\n\t21156 - 19968: jis0212<<14 | 0x12<<7 | 0x38,\n\t21157 - 19968: jis0212<<14 | 0x12<<7 | 0x39,\n\t21158 - 19968: jis0208<<14 | 0x58<<7 | 0x29,\n\t21159 - 19968: jis0212<<14 | 0x12<<7 | 0x3B,\n\t21161 - 19968: jis0208<<14 | 0x1C<<7 | 0x54,\n\t21162 - 19968: jis0208<<14 | 0x24<<7 | 0x37,\n\t21163 - 19968: jis0208<<14 | 0x18<<7 | 0x44,\n\t21164 - 19968: jis0208<<14 | 0x31<<7 | 0x01,\n\t21165 - 19968: jis0208<<14 | 0x31<<7 | 0x02,\n\t21167 - 19968: jis0208<<14 | 0x5A<<7 | 0x1B,\n\t21168 - 19968: jis0212<<14 | 0x12<<7 | 0x3D,\n\t21169 - 19968: jis0208<<14 | 0x2D<<7 | 0x44,\n\t21172 - 19968: jis0208<<14 | 0x2E<<7 | 0x0A,\n\t21173 - 19968: jis0208<<14 | 0x31<<7 | 0x04,\n\t21174 - 19968: jis0212<<14 | 0x12<<7 | 0x3E,\n\t21175 - 19968: jis0212<<14 | 0x12<<7 | 0x3F,\n\t21176 - 19968: jis0212<<14 | 0x12<<7 | 0x40,\n\t21177 - 19968: jis0208<<14 | 0x17<<7 | 0x59,\n\t21178 - 19968: jis0212<<14 | 0x12<<7 | 0x41,\n\t21179 - 19968: jis0212<<14 | 0x12<<7 | 0x42,\n\t21180 - 19968: jis0208<<14 | 0x31<<7 | 0x03,\n\t21181 - 19968: jis0212<<14 | 0x12<<7 | 0x43,\n\t21182 - 19968: jis0208<<14 | 0x12<<7 | 0x0E,\n\t21184 - 19968: jis0208<<14 | 0x58<<7 | 0x2A,\n\t21185 - 19968: jis0208<<14 | 0x31<<7 | 0x05,\n\t21187 - 19968: jis0208<<14 | 0x2A<<7 | 0x35,\n\t21188 - 19968: jis0212<<14 | 0x12<<7 | 0x45,\n\t21189 - 19968: jis0208<<14 | 0x23<<7 | 0x1B,\n\t21190 - 19968: jis0212<<14 | 0x12<<7 | 0x46,\n\t21191 - 19968: jis0208<<14 | 0x2C<<7 | 0x05,\n\t21192 - 19968: jis0212<<14 | 0x12<<7 | 0x47,\n\t21193 - 19968: jis0208<<14 | 0x29<<7 | 0x38,\n\t21196 - 19968: jis0212<<14 | 0x12<<7 | 0x48,\n\t21197 - 19968: jis0208<<14 | 0x31<<7 | 0x06,\n\t21199 - 19968: jis0212<<14 | 0x12<<7 | 0x49,\n\t21201 - 19968: jis0212<<14 | 0x12<<7 | 0x4A,\n\t21202 - 19968: jis0208<<14 | 0x4F<<7 | 0x34,\n\t21204 - 19968: jis0212<<14 | 0x12<<7 | 0x4B,\n\t21205 - 19968: jis0208<<14 | 0x25<<7 | 0x0F,\n\t21206 - 19968: jis0212<<14 | 0x12<<7 | 0x4C,\n\t21207 - 19968: jis0208<<14 | 0x31<<7 | 0x07,\n\t21208 - 19968: jis0208<<14 | 0x13<<7 | 0x09,\n\t21209 - 19968: jis0208<<14 | 0x2B<<7 | 0x12,\n\t21211 - 19968: jis0208<<14 | 0x58<<7 | 0x2B,\n\t21212 - 19968: jis0212<<14 | 0x12<<7 | 0x4E,\n\t21213 - 19968: jis0208<<14 | 0x1D<<7 | 0x00,\n\t21214 - 19968: jis0208<<14 | 0x31<<7 | 0x08,\n\t21215 - 19968: jis0208<<14 | 0x29<<7 | 0x46,\n\t21216 - 19968: jis0208<<14 | 0x31<<7 | 0x0C,\n\t21217 - 19968: jis0212<<14 | 0x12<<7 | 0x4F,\n\t21218 - 19968: jis0208<<14 | 0x1F<<7 | 0x09,\n\t21219 - 19968: jis0208<<14 | 0x31<<7 | 0x09,\n\t21220 - 19968: jis0208<<14 | 0x15<<7 | 0x2F,\n\t21221 - 19968: jis0212<<14 | 0x12<<7 | 0x50,\n\t21222 - 19968: jis0208<<14 | 0x31<<7 | 0x0A,\n\t21223 - 19968: jis0208<<14 | 0x13<<7 | 0x0A,\n\t21224 - 19968: jis0212<<14 | 0x12<<7 | 0x51,\n\t21225 - 19968: jis0212<<14 | 0x12<<7 | 0x52,\n\t21226 - 19968: jis0212<<14 | 0x12<<7 | 0x53,\n\t21228 - 19968: jis0212<<14 | 0x12<<7 | 0x54,\n\t21232 - 19968: jis0212<<14 | 0x12<<7 | 0x55,\n\t21233 - 19968: jis0212<<14 | 0x12<<7 | 0x56,\n\t21234 - 19968: jis0208<<14 | 0x16<<7 | 0x0D,\n\t21235 - 19968: jis0208<<14 | 0x31<<7 | 0x0D,\n\t21236 - 19968: jis0212<<14 | 0x12<<7 | 0x57,\n\t21237 - 19968: jis0208<<14 | 0x31<<7 | 0x0E,\n\t21238 - 19968: jis0212<<14 | 0x12<<7 | 0x58,\n\t21239 - 19968: jis0212<<14 | 0x12<<7 | 0x59,\n\t21240 - 19968: jis0208<<14 | 0x31<<7 | 0x0F,\n\t21241 - 19968: jis0208<<14 | 0x31<<7 | 0x10,\n\t21242 - 19968: jis0208<<14 | 0x1B<<7 | 0x3A,\n\t21246 - 19968: jis0208<<14 | 0x17<<7 | 0x5A,\n\t21247 - 19968: jis0208<<14 | 0x2B<<7 | 0x3D,\n\t21248 - 19968: jis0208<<14 | 0x58<<7 | 0x2C,\n\t21249 - 19968: jis0208<<14 | 0x2B<<7 | 0x47,\n\t21250 - 19968: jis0208<<14 | 0x25<<7 | 0x56,\n\t21251 - 19968: jis0212<<14 | 0x12<<7 | 0x5B,\n\t21253 - 19968: jis0208<<14 | 0x29<<7 | 0x50,\n\t21254 - 19968: jis0208<<14 | 0x31<<7 | 0x11,\n\t21255 - 19968: jis0208<<14 | 0x58<<7 | 0x2D,\n\t21256 - 19968: jis0208<<14 | 0x31<<7 | 0x12,\n\t21258 - 19968: jis0212<<14 | 0x12<<7 | 0x5C,\n\t21259 - 19968: jis0212<<14 | 0x12<<7 | 0x5D,\n\t21260 - 19968: jis0212<<14 | 0x13<<7 | 0x00,\n\t21261 - 19968: jis0208<<14 | 0x31<<7 | 0x14,\n\t21263 - 19968: jis0208<<14 | 0x31<<7 | 0x16,\n\t21264 - 19968: jis0208<<14 | 0x31<<7 | 0x15,\n\t21265 - 19968: jis0212<<14 | 0x13<<7 | 0x01,\n\t21267 - 19968: jis0212<<14 | 0x13<<7 | 0x02,\n\t21269 - 19968: jis0208<<14 | 0x31<<7 | 0x17,\n\t21270 - 19968: jis0208<<14 | 0x11<<7 | 0x1C,\n\t21271 - 19968: jis0208<<14 | 0x2A<<7 | 0x2B,\n\t21272 - 19968: jis0212<<14 | 0x13<<7 | 0x03,\n\t21273 - 19968: jis0208<<14 | 0x19<<7 | 0x5B,\n\t21274 - 19968: jis0208<<14 | 0x31<<7 | 0x18,\n\t21275 - 19968: jis0212<<14 | 0x13<<7 | 0x04,\n\t21276 - 19968: jis0212<<14 | 0x13<<7 | 0x05,\n\t21277 - 19968: jis0208<<14 | 0x20<<7 | 0x38,\n\t21278 - 19968: jis0212<<14 | 0x13<<7 | 0x06,\n\t21279 - 19968: jis0212<<14 | 0x13<<7 | 0x07,\n\t21280 - 19968: jis0208<<14 | 0x1D<<7 | 0x01,\n\t21281 - 19968: jis0208<<14 | 0x15<<7 | 0x08,\n\t21283 - 19968: jis0208<<14 | 0x31<<7 | 0x19,\n\t21284 - 19968: jis0208<<14 | 0x58<<7 | 0x2E,\n\t21285 - 19968: jis0212<<14 | 0x13<<7 | 0x08,\n\t21287 - 19968: jis0212<<14 | 0x13<<7 | 0x09,\n\t21288 - 19968: jis0212<<14 | 0x13<<7 | 0x0A,\n\t21289 - 19968: jis0212<<14 | 0x13<<7 | 0x0B,\n\t21290 - 19968: jis0208<<14 | 0x27<<7 | 0x3A,\n\t21291 - 19968: jis0212<<14 | 0x13<<7 | 0x0C,\n\t21292 - 19968: jis0212<<14 | 0x13<<7 | 0x0D,\n\t21293 - 19968: jis0212<<14 | 0x13<<7 | 0x0E,\n\t21295 - 19968: jis0208<<14 | 0x31<<7 | 0x1A,\n\t21296 - 19968: jis0212<<14 | 0x13<<7 | 0x0F,\n\t21297 - 19968: jis0208<<14 | 0x31<<7 | 0x1B,\n\t21298 - 19968: jis0212<<14 | 0x13<<7 | 0x10,\n\t21299 - 19968: jis0208<<14 | 0x31<<7 | 0x1C,\n\t21301 - 19968: jis0212<<14 | 0x13<<7 | 0x11,\n\t21304 - 19968: jis0208<<14 | 0x31<<7 | 0x1D,\n\t21305 - 19968: jis0208<<14 | 0x28<<7 | 0x03,\n\t21306 - 19968: jis0208<<14 | 0x15<<7 | 0x47,\n\t21307 - 19968: jis0208<<14 | 0x0F<<7 | 0x44,\n\t21308 - 19968: jis0212<<14 | 0x13<<7 | 0x12,\n\t21309 - 19968: jis0212<<14 | 0x13<<7 | 0x13,\n\t21310 - 19968: jis0212<<14 | 0x13<<7 | 0x14,\n\t21311 - 19968: jis0208<<14 | 0x25<<7 | 0x1E,\n\t21312 - 19968: jis0208<<14 | 0x31<<7 | 0x1E,\n\t21313 - 19968: jis0208<<14 | 0x1C<<7 | 0x1C,\n\t21314 - 19968: jis0212<<14 | 0x13<<7 | 0x15,\n\t21315 - 19968: jis0208<<14 | 0x1F<<7 | 0x48,\n\t21317 - 19968: jis0208<<14 | 0x31<<7 | 0x20,\n\t21318 - 19968: jis0208<<14 | 0x31<<7 | 0x1F,\n\t21319 - 19968: jis0208<<14 | 0x1D<<7 | 0x02,\n\t21320 - 19968: jis0208<<14 | 0x17<<7 | 0x40,\n\t21321 - 19968: jis0208<<14 | 0x31<<7 | 0x22,\n\t21322 - 19968: jis0208<<14 | 0x27<<7 | 0x1D,\n\t21323 - 19968: jis0212<<14 | 0x13<<7 | 0x17,\n\t21324 - 19968: jis0212<<14 | 0x13<<7 | 0x16,\n\t21325 - 19968: jis0208<<14 | 0x31<<7 | 0x23,\n\t21329 - 19968: jis0208<<14 | 0x27<<7 | 0x3B,\n\t21330 - 19968: jis0208<<14 | 0x21<<7 | 0x13,\n\t21331 - 19968: jis0208<<14 | 0x21<<7 | 0x4D,\n\t21332 - 19968: jis0208<<14 | 0x15<<7 | 0x07,\n\t21335 - 19968: jis0208<<14 | 0x25<<7 | 0x4D,\n\t21336 - 19968: jis0208<<14 | 0x22<<7 | 0x10,\n\t21337 - 19968: jis0212<<14 | 0x13<<7 | 0x18,\n\t21338 - 19968: jis0208<<14 | 0x26<<7 | 0x4D,\n\t21339 - 19968: jis0212<<14 | 0x13<<7 | 0x19,\n\t21340 - 19968: jis0208<<14 | 0x2A<<7 | 0x2D,\n\t21342 - 19968: jis0208<<14 | 0x31<<7 | 0x25,\n\t21344 - 19968: jis0208<<14 | 0x1F<<7 | 0x49,\n\t21345 - 19968: jis0212<<14 | 0x13<<7 | 0x1A,\n\t21347 - 19968: jis0212<<14 | 0x13<<7 | 0x1B,\n\t21349 - 19968: jis0212<<14 | 0x13<<7 | 0x1C,\n\t21350 - 19968: jis0208<<14 | 0x16<<7 | 0x14,\n\t21353 - 19968: jis0208<<14 | 0x31<<7 | 0x26,\n\t21356 - 19968: jis0212<<14 | 0x13<<7 | 0x1D,\n\t21357 - 19968: jis0212<<14 | 0x13<<7 | 0x1E,\n\t21358 - 19968: jis0208<<14 | 0x31<<7 | 0x27,\n\t21359 - 19968: jis0208<<14 | 0x10<<7 | 0x0B,\n\t21360 - 19968: jis0208<<14 | 0x0F<<7 | 0x54,\n\t21361 - 19968: jis0208<<14 | 0x13<<7 | 0x4C,\n\t21362 - 19968: jis0208<<14 | 0x58<<7 | 0x2F,\n\t21363 - 19968: jis0208<<14 | 0x21<<7 | 0x07,\n\t21364 - 19968: jis0208<<14 | 0x14<<7 | 0x30,\n\t21365 - 19968: jis0208<<14 | 0x2C<<7 | 0x50,\n\t21367 - 19968: jis0208<<14 | 0x31<<7 | 0x2A,\n\t21368 - 19968: jis0208<<14 | 0x11<<7 | 0x16,\n\t21369 - 19968: jis0212<<14 | 0x13<<7 | 0x20,\n\t21371 - 19968: jis0208<<14 | 0x31<<7 | 0x29,\n\t21374 - 19968: jis0212<<14 | 0x13<<7 | 0x21,\n\t21375 - 19968: jis0208<<14 | 0x15<<7 | 0x09,\n\t21378 - 19968: jis0208<<14 | 0x31<<7 | 0x2B,\n\t21379 - 19968: jis0212<<14 | 0x13<<7 | 0x22,\n\t21380 - 19968: jis0208<<14 | 0x2B<<7 | 0x50,\n\t21383 - 19968: jis0212<<14 | 0x13<<7 | 0x23,\n\t21384 - 19968: jis0212<<14 | 0x13<<7 | 0x24,\n\t21390 - 19968: jis0212<<14 | 0x13<<7 | 0x25,\n\t21395 - 19968: jis0208<<14 | 0x58<<7 | 0x30,\n\t21396 - 19968: jis0212<<14 | 0x13<<7 | 0x27,\n\t21398 - 19968: jis0208<<14 | 0x31<<7 | 0x2C,\n\t21400 - 19968: jis0208<<14 | 0x2D<<7 | 0x31,\n\t21401 - 19968: jis0212<<14 | 0x13<<7 | 0x28,\n\t21402 - 19968: jis0208<<14 | 0x17<<7 | 0x5B,\n\t21405 - 19968: jis0212<<14 | 0x13<<7 | 0x29,\n\t21407 - 19968: jis0208<<14 | 0x17<<7 | 0x15,\n\t21408 - 19968: jis0208<<14 | 0x31<<7 | 0x2D,\n\t21409 - 19968: jis0212<<14 | 0x13<<7 | 0x2A,\n\t21412 - 19968: jis0212<<14 | 0x13<<7 | 0x2B,\n\t21413 - 19968: jis0208<<14 | 0x31<<7 | 0x2F,\n\t21414 - 19968: jis0208<<14 | 0x31<<7 | 0x2E,\n\t21416 - 19968: jis0208<<14 | 0x1E<<7 | 0x3E,\n\t21417 - 19968: jis0208<<14 | 0x10<<7 | 0x18,\n\t21418 - 19968: jis0212<<14 | 0x13<<7 | 0x2C,\n\t21419 - 19968: jis0212<<14 | 0x13<<7 | 0x2D,\n\t21421 - 19968: jis0208<<14 | 0x10<<7 | 0x3D,\n\t21422 - 19968: jis0208<<14 | 0x31<<7 | 0x30,\n\t21423 - 19968: jis0212<<14 | 0x13<<7 | 0x2E,\n\t21424 - 19968: jis0208<<14 | 0x31<<7 | 0x31,\n\t21426 - 19968: jis0208<<14 | 0x58<<7 | 0x31,\n\t21427 - 19968: jis0208<<14 | 0x17<<7 | 0x16,\n\t21428 - 19968: jis0212<<14 | 0x13<<7 | 0x30,\n\t21429 - 19968: jis0212<<14 | 0x13<<7 | 0x31,\n\t21430 - 19968: jis0208<<14 | 0x31<<7 | 0x32,\n\t21431 - 19968: jis0212<<14 | 0x13<<7 | 0x32,\n\t21432 - 19968: jis0212<<14 | 0x13<<7 | 0x33,\n\t21434 - 19968: jis0212<<14 | 0x13<<7 | 0x34,\n\t21435 - 19968: jis0208<<14 | 0x14<<7 | 0x4D,\n\t21437 - 19968: jis0212<<14 | 0x13<<7 | 0x35,\n\t21440 - 19968: jis0212<<14 | 0x13<<7 | 0x36,\n\t21442 - 19968: jis0208<<14 | 0x1A<<7 | 0x11,\n\t21443 - 19968: jis0208<<14 | 0x31<<7 | 0x33,\n\t21445 - 19968: jis0212<<14 | 0x13<<7 | 0x37,\n\t21448 - 19968: jis0208<<14 | 0x2A<<7 | 0x53,\n\t21449 - 19968: jis0208<<14 | 0x19<<7 | 0x14,\n\t21450 - 19968: jis0208<<14 | 0x14<<7 | 0x39,\n\t21451 - 19968: jis0208<<14 | 0x2C<<7 | 0x06,\n\t21452 - 19968: jis0208<<14 | 0x20<<7 | 0x2F,\n\t21453 - 19968: jis0208<<14 | 0x27<<7 | 0x1E,\n\t21454 - 19968: jis0208<<14 | 0x1B<<7 | 0x5C,\n\t21455 - 19968: jis0212<<14 | 0x13<<7 | 0x38,\n\t21458 - 19968: jis0212<<14 | 0x13<<7 | 0x39,\n\t21459 - 19968: jis0212<<14 | 0x13<<7 | 0x3A,\n\t21460 - 19968: jis0208<<14 | 0x1C<<7 | 0x26,\n\t21461 - 19968: jis0212<<14 | 0x13<<7 | 0x3B,\n\t21462 - 19968: jis0208<<14 | 0x1B<<7 | 0x47,\n\t21463 - 19968: jis0208<<14 | 0x1B<<7 | 0x54,\n\t21465 - 19968: jis0208<<14 | 0x1C<<7 | 0x55,\n\t21466 - 19968: jis0212<<14 | 0x13<<7 | 0x3C,\n\t21467 - 19968: jis0208<<14 | 0x27<<7 | 0x1F,\n\t21469 - 19968: jis0208<<14 | 0x58<<7 | 0x32,\n\t21470 - 19968: jis0212<<14 | 0x13<<7 | 0x3E,\n\t21471 - 19968: jis0208<<14 | 0x31<<7 | 0x36,\n\t21472 - 19968: jis0212<<14 | 0x13<<7 | 0x3F,\n\t21473 - 19968: jis0208<<14 | 0x10<<7 | 0x22,\n\t21474 - 19968: jis0208<<14 | 0x20<<7 | 0x30,\n\t21475 - 19968: jis0208<<14 | 0x17<<7 | 0x5C,\n\t21476 - 19968: jis0208<<14 | 0x17<<7 | 0x24,\n\t21477 - 19968: jis0208<<14 | 0x15<<7 | 0x46,\n\t21478 - 19968: jis0212<<14 | 0x13<<7 | 0x40,\n\t21479 - 19968: jis0212<<14 | 0x13<<7 | 0x41,\n\t21480 - 19968: jis0208<<14 | 0x31<<7 | 0x3A,\n\t21481 - 19968: jis0208<<14 | 0x22<<7 | 0x00,\n\t21482 - 19968: jis0208<<14 | 0x21<<7 | 0x5D,\n\t21483 - 19968: jis0208<<14 | 0x15<<7 | 0x0A,\n\t21484 - 19968: jis0208<<14 | 0x1D<<7 | 0x03,\n\t21485 - 19968: jis0208<<14 | 0x31<<7 | 0x3B,\n\t21486 - 19968: jis0208<<14 | 0x31<<7 | 0x39,\n\t21487 - 19968: jis0208<<14 | 0x11<<7 | 0x23,\n\t21488 - 19968: jis0208<<14 | 0x21<<7 | 0x45,\n\t21489 - 19968: jis0208<<14 | 0x1B<<7 | 0x17,\n\t21490 - 19968: jis0208<<14 | 0x1A<<7 | 0x2A,\n\t21491 - 19968: jis0208<<14 | 0x10<<7 | 0x05,\n\t21493 - 19968: jis0212<<14 | 0x13<<7 | 0x42,\n\t21494 - 19968: jis0208<<14 | 0x12<<7 | 0x4F,\n\t21495 - 19968: jis0208<<14 | 0x18<<7 | 0x45,\n\t21496 - 19968: jis0208<<14 | 0x1A<<7 | 0x29,\n\t21498 - 19968: jis0208<<14 | 0x31<<7 | 0x3C,\n\t21505 - 19968: jis0208<<14 | 0x31<<7 | 0x3D,\n\t21506 - 19968: jis0212<<14 | 0x13<<7 | 0x43,\n\t21507 - 19968: jis0208<<14 | 0x14<<7 | 0x28,\n\t21508 - 19968: jis0208<<14 | 0x12<<7 | 0x25,\n\t21512 - 19968: jis0208<<14 | 0x18<<7 | 0x46,\n\t21513 - 19968: jis0208<<14 | 0x14<<7 | 0x27,\n\t21514 - 19968: jis0208<<14 | 0x23<<7 | 0x3E,\n\t21515 - 19968: jis0208<<14 | 0x10<<7 | 0x04,\n\t21516 - 19968: jis0208<<14 | 0x25<<7 | 0x10,\n\t21517 - 19968: jis0208<<14 | 0x2B<<7 | 0x1D,\n\t21518 - 19968: jis0208<<14 | 0x18<<7 | 0x00,\n\t21519 - 19968: jis0208<<14 | 0x2C<<7 | 0x58,\n\t21520 - 19968: jis0208<<14 | 0x24<<7 | 0x26,\n\t21521 - 19968: jis0208<<14 | 0x17<<7 | 0x5D,\n\t21523 - 19968: jis0212<<14 | 0x13<<7 | 0x44,\n\t21530 - 19968: jis0212<<14 | 0x13<<7 | 0x45,\n\t21531 - 19968: jis0208<<14 | 0x16<<7 | 0x0E,\n\t21533 - 19968: jis0208<<14 | 0x31<<7 | 0x46,\n\t21535 - 19968: jis0208<<14 | 0x15<<7 | 0x42,\n\t21536 - 19968: jis0208<<14 | 0x2A<<7 | 0x29,\n\t21537 - 19968: jis0212<<14 | 0x13<<7 | 0x46,\n\t21542 - 19968: jis0208<<14 | 0x27<<7 | 0x3C,\n\t21543 - 19968: jis0212<<14 | 0x13<<7 | 0x47,\n\t21544 - 19968: jis0212<<14 | 0x13<<7 | 0x48,\n\t21545 - 19968: jis0208<<14 | 0x31<<7 | 0x45,\n\t21546 - 19968: jis0212<<14 | 0x13<<7 | 0x49,\n\t21547 - 19968: jis0208<<14 | 0x13<<7 | 0x3D,\n\t21548 - 19968: jis0208<<14 | 0x31<<7 | 0x40,\n\t21549 - 19968: jis0208<<14 | 0x31<<7 | 0x41,\n\t21550 - 19968: jis0208<<14 | 0x31<<7 | 0x43,\n\t21551 - 19968: jis0212<<14 | 0x13<<7 | 0x4A,\n\t21553 - 19968: jis0212<<14 | 0x13<<7 | 0x4B,\n\t21556 - 19968: jis0212<<14 | 0x13<<7 | 0x4C,\n\t21557 - 19968: jis0212<<14 | 0x13<<7 | 0x4D,\n\t21558 - 19968: jis0208<<14 | 0x31<<7 | 0x44,\n\t21560 - 19968: jis0208<<14 | 0x14<<7 | 0x3A,\n\t21561 - 19968: jis0208<<14 | 0x1E<<7 | 0x40,\n\t21563 - 19968: jis0208<<14 | 0x29<<7 | 0x0C,\n\t21564 - 19968: jis0208<<14 | 0x31<<7 | 0x42,\n\t21565 - 19968: jis0208<<14 | 0x31<<7 | 0x3E,\n\t21566 - 19968: jis0208<<14 | 0x17<<7 | 0x42,\n\t21568 - 19968: jis0208<<14 | 0x31<<7 | 0x3F,\n\t21570 - 19968: jis0208<<14 | 0x2E<<7 | 0x03,\n\t21571 - 19968: jis0212<<14 | 0x13<<7 | 0x4E,\n\t21572 - 19968: jis0212<<14 | 0x13<<7 | 0x4F,\n\t21574 - 19968: jis0208<<14 | 0x29<<7 | 0x51,\n\t21575 - 19968: jis0212<<14 | 0x13<<7 | 0x50,\n\t21576 - 19968: jis0208<<14 | 0x23<<7 | 0x47,\n\t21577 - 19968: jis0208<<14 | 0x17<<7 | 0x41,\n\t21578 - 19968: jis0208<<14 | 0x18<<7 | 0x4F,\n\t21581 - 19968: jis0212<<14 | 0x13<<7 | 0x51,\n\t21582 - 19968: jis0208<<14 | 0x31<<7 | 0x47,\n\t21583 - 19968: jis0212<<14 | 0x13<<7 | 0x52,\n\t21585 - 19968: jis0208<<14 | 0x25<<7 | 0x3C,\n\t21598 - 19968: jis0212<<14 | 0x13<<7 | 0x53,\n\t21599 - 19968: jis0208<<14 | 0x31<<7 | 0x4B,\n\t21602 - 19968: jis0212<<14 | 0x13<<7 | 0x54,\n\t21604 - 19968: jis0212<<14 | 0x13<<7 | 0x55,\n\t21606 - 19968: jis0212<<14 | 0x13<<7 | 0x56,\n\t21607 - 19968: jis0212<<14 | 0x13<<7 | 0x57,\n\t21608 - 19968: jis0208<<14 | 0x1B<<7 | 0x5D,\n\t21609 - 19968: jis0212<<14 | 0x13<<7 | 0x58,\n\t21610 - 19968: jis0208<<14 | 0x1B<<7 | 0x55,\n\t21611 - 19968: jis0212<<14 | 0x13<<7 | 0x59,\n\t21613 - 19968: jis0212<<14 | 0x13<<7 | 0x5A,\n\t21614 - 19968: jis0212<<14 | 0x13<<7 | 0x5B,\n\t21616 - 19968: jis0208<<14 | 0x31<<7 | 0x4E,\n\t21617 - 19968: jis0208<<14 | 0x31<<7 | 0x4C,\n\t21619 - 19968: jis0208<<14 | 0x2B<<7 | 0x02,\n\t21620 - 19968: jis0212<<14 | 0x13<<7 | 0x5C,\n\t21621 - 19968: jis0208<<14 | 0x31<<7 | 0x49,\n\t21622 - 19968: jis0208<<14 | 0x31<<7 | 0x52,\n\t21623 - 19968: jis0208<<14 | 0x31<<7 | 0x4D,\n\t21627 - 19968: jis0208<<14 | 0x31<<7 | 0x50,\n\t21628 - 19968: jis0208<<14 | 0x17<<7 | 0x25,\n\t21629 - 19968: jis0208<<14 | 0x2B<<7 | 0x1E,\n\t21631 - 19968: jis0212<<14 | 0x13<<7 | 0x5D,\n\t21632 - 19968: jis0208<<14 | 0x31<<7 | 0x51,\n\t21633 - 19968: jis0212<<14 | 0x14<<7 | 0x00,\n\t21635 - 19968: jis0212<<14 | 0x14<<7 | 0x01,\n\t21636 - 19968: jis0208<<14 | 0x31<<7 | 0x53,\n\t21637 - 19968: jis0212<<14 | 0x14<<7 | 0x02,\n\t21638 - 19968: jis0208<<14 | 0x31<<7 | 0x55,\n\t21640 - 19968: jis0212<<14 | 0x14<<7 | 0x03,\n\t21641 - 19968: jis0212<<14 | 0x14<<7 | 0x04,\n\t21642 - 19968: jis0208<<14 | 0x58<<7 | 0x35,\n\t21643 - 19968: jis0208<<14 | 0x19<<7 | 0x4F,\n\t21644 - 19968: jis0208<<14 | 0x2E<<7 | 0x21,\n\t21645 - 19968: jis0212<<14 | 0x14<<7 | 0x05,\n\t21646 - 19968: jis0208<<14 | 0x31<<7 | 0x4A,\n\t21647 - 19968: jis0208<<14 | 0x31<<7 | 0x48,\n\t21648 - 19968: jis0208<<14 | 0x31<<7 | 0x54,\n\t21649 - 19968: jis0212<<14 | 0x14<<7 | 0x06,\n\t21650 - 19968: jis0208<<14 | 0x31<<7 | 0x4F,\n\t21653 - 19968: jis0212<<14 | 0x14<<7 | 0x07,\n\t21654 - 19968: jis0212<<14 | 0x14<<7 | 0x08,\n\t21660 - 19968: jis0208<<14 | 0x58<<7 | 0x34,\n\t21663 - 19968: jis0212<<14 | 0x14<<7 | 0x0A,\n\t21665 - 19968: jis0212<<14 | 0x14<<7 | 0x0B,\n\t21666 - 19968: jis0208<<14 | 0x31<<7 | 0x57,\n\t21668 - 19968: jis0208<<14 | 0x32<<7 | 0x02,\n\t21669 - 19968: jis0208<<14 | 0x31<<7 | 0x59,\n\t21670 - 19968: jis0212<<14 | 0x14<<7 | 0x0C,\n\t21671 - 19968: jis0212<<14 | 0x14<<7 | 0x0D,\n\t21672 - 19968: jis0208<<14 | 0x31<<7 | 0x5D,\n\t21673 - 19968: jis0208<<14 | 0x58<<7 | 0x36,\n\t21674 - 19968: jis0212<<14 | 0x14<<7 | 0x0F,\n\t21675 - 19968: jis0208<<14 | 0x32<<7 | 0x00,\n\t21676 - 19968: jis0208<<14 | 0x31<<7 | 0x5A,\n\t21677 - 19968: jis0212<<14 | 0x14<<7 | 0x10,\n\t21678 - 19968: jis0212<<14 | 0x14<<7 | 0x11,\n\t21679 - 19968: jis0208<<14 | 0x32<<7 | 0x1D,\n\t21681 - 19968: jis0212<<14 | 0x14<<7 | 0x12,\n\t21682 - 19968: jis0208<<14 | 0x19<<7 | 0x48,\n\t21683 - 19968: jis0208<<14 | 0x12<<7 | 0x10,\n\t21687 - 19968: jis0212<<14 | 0x14<<7 | 0x13,\n\t21688 - 19968: jis0208<<14 | 0x31<<7 | 0x58,\n\t21689 - 19968: jis0212<<14 | 0x14<<7 | 0x14,\n\t21690 - 19968: jis0212<<14 | 0x14<<7 | 0x15,\n\t21691 - 19968: jis0212<<14 | 0x14<<7 | 0x16,\n\t21692 - 19968: jis0208<<14 | 0x32<<7 | 0x04,\n\t21693 - 19968: jis0208<<14 | 0x0F<<7 | 0x55,\n\t21694 - 19968: jis0208<<14 | 0x32<<7 | 0x03,\n\t21695 - 19968: jis0212<<14 | 0x14<<7 | 0x17,\n\t21696 - 19968: jis0208<<14 | 0x0F<<7 | 0x04,\n\t21697 - 19968: jis0208<<14 | 0x28<<7 | 0x29,\n\t21698 - 19968: jis0208<<14 | 0x32<<7 | 0x01,\n\t21700 - 19968: jis0208<<14 | 0x31<<7 | 0x5B,\n\t21702 - 19968: jis0212<<14 | 0x14<<7 | 0x18,\n\t21703 - 19968: jis0208<<14 | 0x31<<7 | 0x56,\n\t21704 - 19968: jis0208<<14 | 0x31<<7 | 0x5C,\n\t21705 - 19968: jis0208<<14 | 0x19<<7 | 0x27,\n\t21706 - 19968: jis0212<<14 | 0x14<<7 | 0x19,\n\t21709 - 19968: jis0212<<14 | 0x14<<7 | 0x1A,\n\t21710 - 19968: jis0212<<14 | 0x14<<7 | 0x1B,\n\t21720 - 19968: jis0208<<14 | 0x32<<7 | 0x05,\n\t21728 - 19968: jis0212<<14 | 0x14<<7 | 0x1C,\n\t21729 - 19968: jis0208<<14 | 0x0F<<7 | 0x56,\n\t21730 - 19968: jis0208<<14 | 0x32<<7 | 0x0E,\n\t21733 - 19968: jis0208<<14 | 0x32<<7 | 0x06,\n\t21734 - 19968: jis0208<<14 | 0x32<<7 | 0x07,\n\t21736 - 19968: jis0208<<14 | 0x1D<<7 | 0x04,\n\t21737 - 19968: jis0208<<14 | 0x2A<<7 | 0x48,\n\t21738 - 19968: jis0212<<14 | 0x14<<7 | 0x1D,\n\t21740 - 19968: jis0212<<14 | 0x14<<7 | 0x1E,\n\t21741 - 19968: jis0208<<14 | 0x32<<7 | 0x0C,\n\t21742 - 19968: jis0208<<14 | 0x32<<7 | 0x0B,\n\t21743 - 19968: jis0212<<14 | 0x14<<7 | 0x1F,\n\t21746 - 19968: jis0208<<14 | 0x24<<7 | 0x0E,\n\t21750 - 19968: jis0212<<14 | 0x14<<7 | 0x20,\n\t21754 - 19968: jis0208<<14 | 0x32<<7 | 0x0D,\n\t21756 - 19968: jis0212<<14 | 0x14<<7 | 0x21,\n\t21757 - 19968: jis0208<<14 | 0x32<<7 | 0x0A,\n\t21758 - 19968: jis0212<<14 | 0x14<<7 | 0x22,\n\t21759 - 19968: jis0208<<14 | 0x58<<7 | 0x37,\n\t21760 - 19968: jis0212<<14 | 0x14<<7 | 0x24,\n\t21761 - 19968: jis0212<<14 | 0x14<<7 | 0x25,\n\t21764 - 19968: jis0208<<14 | 0x10<<7 | 0x13,\n\t21765 - 19968: jis0212<<14 | 0x14<<7 | 0x26,\n\t21766 - 19968: jis0208<<14 | 0x19<<7 | 0x15,\n\t21767 - 19968: jis0208<<14 | 0x1E<<7 | 0x0F,\n\t21768 - 19968: jis0212<<14 | 0x14<<7 | 0x27,\n\t21769 - 19968: jis0212<<14 | 0x14<<7 | 0x28,\n\t21772 - 19968: jis0212<<14 | 0x14<<7 | 0x29,\n\t21773 - 19968: jis0212<<14 | 0x14<<7 | 0x2A,\n\t21774 - 19968: jis0212<<14 | 0x14<<7 | 0x2B,\n\t21775 - 19968: jis0208<<14 | 0x32<<7 | 0x08,\n\t21776 - 19968: jis0208<<14 | 0x24<<7 | 0x41,\n\t21780 - 19968: jis0208<<14 | 0x32<<7 | 0x09,\n\t21781 - 19968: jis0212<<14 | 0x14<<7 | 0x2C,\n\t21782 - 19968: jis0208<<14 | 0x0F<<7 | 0x01,\n\t21802 - 19968: jis0212<<14 | 0x14<<7 | 0x2D,\n\t21803 - 19968: jis0212<<14 | 0x14<<7 | 0x2E,\n\t21806 - 19968: jis0208<<14 | 0x32<<7 | 0x13,\n\t21807 - 19968: jis0208<<14 | 0x2C<<7 | 0x02,\n\t21809 - 19968: jis0208<<14 | 0x1D<<7 | 0x06,\n\t21810 - 19968: jis0212<<14 | 0x14<<7 | 0x2F,\n\t21811 - 19968: jis0208<<14 | 0x32<<7 | 0x19,\n\t21813 - 19968: jis0212<<14 | 0x14<<7 | 0x30,\n\t21814 - 19968: jis0212<<14 | 0x14<<7 | 0x31,\n\t21816 - 19968: jis0208<<14 | 0x32<<7 | 0x18,\n\t21817 - 19968: jis0208<<14 | 0x32<<7 | 0x0F,\n\t21819 - 19968: jis0212<<14 | 0x14<<7 | 0x32,\n\t21820 - 19968: jis0212<<14 | 0x14<<7 | 0x33,\n\t21821 - 19968: jis0212<<14 | 0x14<<7 | 0x34,\n\t21822 - 19968: jis0208<<14 | 0x21<<7 | 0x22,\n\t21824 - 19968: jis0208<<14 | 0x32<<7 | 0x10,\n\t21825 - 19968: jis0212<<14 | 0x14<<7 | 0x35,\n\t21828 - 19968: jis0208<<14 | 0x21<<7 | 0x4E,\n\t21829 - 19968: jis0208<<14 | 0x32<<7 | 0x15,\n\t21830 - 19968: jis0208<<14 | 0x1D<<7 | 0x05,\n\t21831 - 19968: jis0212<<14 | 0x14<<7 | 0x36,\n\t21833 - 19968: jis0212<<14 | 0x14<<7 | 0x37,\n\t21834 - 19968: jis0212<<14 | 0x14<<7 | 0x38,\n\t21836 - 19968: jis0208<<14 | 0x32<<7 | 0x12,\n\t21837 - 19968: jis0212<<14 | 0x14<<7 | 0x39,\n\t21839 - 19968: jis0208<<14 | 0x2B<<7 | 0x43,\n\t21840 - 19968: jis0212<<14 | 0x14<<7 | 0x3A,\n\t21841 - 19968: jis0212<<14 | 0x14<<7 | 0x3B,\n\t21843 - 19968: jis0208<<14 | 0x16<<7 | 0x1B,\n\t21846 - 19968: jis0208<<14 | 0x32<<7 | 0x16,\n\t21847 - 19968: jis0208<<14 | 0x32<<7 | 0x17,\n\t21848 - 19968: jis0212<<14 | 0x14<<7 | 0x3C,\n\t21850 - 19968: jis0212<<14 | 0x14<<7 | 0x3D,\n\t21851 - 19968: jis0212<<14 | 0x14<<7 | 0x3E,\n\t21852 - 19968: jis0208<<14 | 0x32<<7 | 0x14,\n\t21853 - 19968: jis0208<<14 | 0x32<<7 | 0x1A,\n\t21854 - 19968: jis0212<<14 | 0x14<<7 | 0x3F,\n\t21856 - 19968: jis0212<<14 | 0x14<<7 | 0x40,\n\t21857 - 19968: jis0212<<14 | 0x14<<7 | 0x41,\n\t21859 - 19968: jis0208<<14 | 0x32<<7 | 0x11,\n\t21860 - 19968: jis0212<<14 | 0x14<<7 | 0x42,\n\t21862 - 19968: jis0212<<14 | 0x14<<7 | 0x43,\n\t21883 - 19968: jis0208<<14 | 0x32<<7 | 0x20,\n\t21884 - 19968: jis0208<<14 | 0x32<<7 | 0x25,\n\t21886 - 19968: jis0208<<14 | 0x32<<7 | 0x21,\n\t21887 - 19968: jis0212<<14 | 0x14<<7 | 0x44,\n\t21888 - 19968: jis0208<<14 | 0x32<<7 | 0x1C,\n\t21889 - 19968: jis0212<<14 | 0x14<<7 | 0x45,\n\t21890 - 19968: jis0212<<14 | 0x14<<7 | 0x46,\n\t21891 - 19968: jis0208<<14 | 0x32<<7 | 0x26,\n\t21892 - 19968: jis0208<<14 | 0x20<<7 | 0x10,\n\t21894 - 19968: jis0208<<14 | 0x58<<7 | 0x38,\n\t21895 - 19968: jis0208<<14 | 0x32<<7 | 0x28,\n\t21896 - 19968: jis0212<<14 | 0x14<<7 | 0x48,\n\t21897 - 19968: jis0208<<14 | 0x18<<7 | 0x01,\n\t21898 - 19968: jis0208<<14 | 0x32<<7 | 0x1E,\n\t21899 - 19968: jis0208<<14 | 0x22<<7 | 0x5C,\n\t21902 - 19968: jis0212<<14 | 0x14<<7 | 0x49,\n\t21903 - 19968: jis0212<<14 | 0x14<<7 | 0x4A,\n\t21905 - 19968: jis0212<<14 | 0x14<<7 | 0x4B,\n\t21906 - 19968: jis0212<<14 | 0x14<<7 | 0x4C,\n\t21907 - 19968: jis0212<<14 | 0x14<<7 | 0x4D,\n\t21908 - 19968: jis0212<<14 | 0x14<<7 | 0x4E,\n\t21911 - 19968: jis0212<<14 | 0x14<<7 | 0x4F,\n\t21912 - 19968: jis0208<<14 | 0x32<<7 | 0x22,\n\t21913 - 19968: jis0208<<14 | 0x32<<7 | 0x1B,\n\t21914 - 19968: jis0208<<14 | 0x13<<7 | 0x0C,\n\t21916 - 19968: jis0208<<14 | 0x13<<7 | 0x4D,\n\t21917 - 19968: jis0208<<14 | 0x12<<7 | 0x44,\n\t21918 - 19968: jis0208<<14 | 0x32<<7 | 0x23,\n\t21919 - 19968: jis0208<<14 | 0x32<<7 | 0x1F,\n\t21923 - 19968: jis0212<<14 | 0x14<<7 | 0x50,\n\t21924 - 19968: jis0212<<14 | 0x14<<7 | 0x51,\n\t21927 - 19968: jis0208<<14 | 0x16<<7 | 0x55,\n\t21928 - 19968: jis0208<<14 | 0x32<<7 | 0x29,\n\t21929 - 19968: jis0208<<14 | 0x32<<7 | 0x27,\n\t21930 - 19968: jis0208<<14 | 0x20<<7 | 0x32,\n\t21931 - 19968: jis0208<<14 | 0x14<<7 | 0x29,\n\t21932 - 19968: jis0208<<14 | 0x15<<7 | 0x0B,\n\t21933 - 19968: jis0212<<14 | 0x14<<7 | 0x52,\n\t21934 - 19968: jis0208<<14 | 0x32<<7 | 0x24,\n\t21936 - 19968: jis0208<<14 | 0x15<<7 | 0x53,\n\t21938 - 19968: jis0212<<14 | 0x14<<7 | 0x53,\n\t21942 - 19968: jis0208<<14 | 0x10<<7 | 0x23,\n\t21951 - 19968: jis0212<<14 | 0x14<<7 | 0x54,\n\t21953 - 19968: jis0212<<14 | 0x14<<7 | 0x55,\n\t21955 - 19968: jis0212<<14 | 0x14<<7 | 0x56,\n\t21956 - 19968: jis0208<<14 | 0x32<<7 | 0x2D,\n\t21957 - 19968: jis0208<<14 | 0x32<<7 | 0x2B,\n\t21958 - 19968: jis0212<<14 | 0x14<<7 | 0x57,\n\t21959 - 19968: jis0208<<14 | 0x33<<7 | 0x06,\n\t21961 - 19968: jis0212<<14 | 0x14<<7 | 0x58,\n\t21963 - 19968: jis0212<<14 | 0x14<<7 | 0x59,\n\t21964 - 19968: jis0212<<14 | 0x14<<7 | 0x5A,\n\t21966 - 19968: jis0212<<14 | 0x14<<7 | 0x5B,\n\t21969 - 19968: jis0212<<14 | 0x14<<7 | 0x5C,\n\t21970 - 19968: jis0212<<14 | 0x14<<7 | 0x5D,\n\t21971 - 19968: jis0212<<14 | 0x15<<7 | 0x00,\n\t21972 - 19968: jis0208<<14 | 0x32<<7 | 0x30,\n\t21975 - 19968: jis0212<<14 | 0x15<<7 | 0x01,\n\t21976 - 19968: jis0212<<14 | 0x15<<7 | 0x02,\n\t21978 - 19968: jis0208<<14 | 0x32<<7 | 0x2A,\n\t21979 - 19968: jis0212<<14 | 0x15<<7 | 0x03,\n\t21980 - 19968: jis0208<<14 | 0x32<<7 | 0x2E,\n\t21982 - 19968: jis0212<<14 | 0x15<<7 | 0x04,\n\t21983 - 19968: jis0208<<14 | 0x32<<7 | 0x2C,\n\t21986 - 19968: jis0212<<14 | 0x15<<7 | 0x05,\n\t21987 - 19968: jis0208<<14 | 0x1A<<7 | 0x2B,\n\t21988 - 19968: jis0208<<14 | 0x32<<7 | 0x2F,\n\t21993 - 19968: jis0212<<14 | 0x15<<7 | 0x06,\n\t22006 - 19968: jis0212<<14 | 0x15<<7 | 0x07,\n\t22007 - 19968: jis0208<<14 | 0x32<<7 | 0x32,\n\t22009 - 19968: jis0208<<14 | 0x32<<7 | 0x37,\n\t22013 - 19968: jis0208<<14 | 0x32<<7 | 0x35,\n\t22014 - 19968: jis0208<<14 | 0x32<<7 | 0x34,\n\t22015 - 19968: jis0212<<14 | 0x15<<7 | 0x08,\n\t22021 - 19968: jis0212<<14 | 0x15<<7 | 0x09,\n\t22022 - 19968: jis0208<<14 | 0x22<<7 | 0x11,\n\t22024 - 19968: jis0212<<14 | 0x15<<7 | 0x0A,\n\t22025 - 19968: jis0208<<14 | 0x11<<7 | 0x24,\n\t22026 - 19968: jis0212<<14 | 0x15<<7 | 0x0B,\n\t22029 - 19968: jis0212<<14 | 0x15<<7 | 0x0C,\n\t22030 - 19968: jis0212<<14 | 0x15<<7 | 0x0D,\n\t22031 - 19968: jis0212<<14 | 0x15<<7 | 0x0E,\n\t22032 - 19968: jis0212<<14 | 0x15<<7 | 0x0F,\n\t22033 - 19968: jis0212<<14 | 0x15<<7 | 0x10,\n\t22034 - 19968: jis0212<<14 | 0x15<<7 | 0x11,\n\t22036 - 19968: jis0208<<14 | 0x32<<7 | 0x31,\n\t22038 - 19968: jis0208<<14 | 0x32<<7 | 0x33,\n\t22039 - 19968: jis0208<<14 | 0x1D<<7 | 0x07,\n\t22040 - 19968: jis0208<<14 | 0x10<<7 | 0x12,\n\t22041 - 19968: jis0212<<14 | 0x15<<7 | 0x12,\n\t22043 - 19968: jis0208<<14 | 0x32<<7 | 0x36,\n\t22057 - 19968: jis0208<<14 | 0x11<<7 | 0x3D,\n\t22060 - 19968: jis0212<<14 | 0x15<<7 | 0x13,\n\t22063 - 19968: jis0208<<14 | 0x32<<7 | 0x41,\n\t22064 - 19968: jis0212<<14 | 0x15<<7 | 0x14,\n\t22065 - 19968: jis0208<<14 | 0x1D<<7 | 0x5B,\n\t22066 - 19968: jis0208<<14 | 0x32<<7 | 0x3D,\n\t22067 - 19968: jis0212<<14 | 0x15<<7 | 0x15,\n\t22068 - 19968: jis0208<<14 | 0x32<<7 | 0x3B,\n\t22069 - 19968: jis0212<<14 | 0x15<<7 | 0x16,\n\t22070 - 19968: jis0208<<14 | 0x32<<7 | 0x3C,\n\t22071 - 19968: jis0212<<14 | 0x15<<7 | 0x17,\n\t22072 - 19968: jis0208<<14 | 0x32<<7 | 0x3E,\n\t22073 - 19968: jis0212<<14 | 0x15<<7 | 0x18,\n\t22075 - 19968: jis0212<<14 | 0x15<<7 | 0x19,\n\t22076 - 19968: jis0212<<14 | 0x15<<7 | 0x1A,\n\t22077 - 19968: jis0212<<14 | 0x15<<7 | 0x1B,\n\t22079 - 19968: jis0212<<14 | 0x15<<7 | 0x1C,\n\t22080 - 19968: jis0212<<14 | 0x15<<7 | 0x1D,\n\t22081 - 19968: jis0212<<14 | 0x15<<7 | 0x1E,\n\t22082 - 19968: jis0208<<14 | 0x10<<7 | 0x1C,\n\t22083 - 19968: jis0212<<14 | 0x15<<7 | 0x1F,\n\t22084 - 19968: jis0212<<14 | 0x15<<7 | 0x20,\n\t22086 - 19968: jis0212<<14 | 0x15<<7 | 0x21,\n\t22089 - 19968: jis0212<<14 | 0x15<<7 | 0x22,\n\t22091 - 19968: jis0212<<14 | 0x15<<7 | 0x23,\n\t22092 - 19968: jis0208<<14 | 0x20<<7 | 0x18,\n\t22093 - 19968: jis0212<<14 | 0x15<<7 | 0x24,\n\t22094 - 19968: jis0208<<14 | 0x32<<7 | 0x38,\n\t22095 - 19968: jis0212<<14 | 0x15<<7 | 0x25,\n\t22096 - 19968: jis0208<<14 | 0x32<<7 | 0x39,\n\t22100 - 19968: jis0212<<14 | 0x15<<7 | 0x26,\n\t22107 - 19968: jis0208<<14 | 0x12<<7 | 0x59,\n\t22110 - 19968: jis0212<<14 | 0x15<<7 | 0x27,\n\t22112 - 19968: jis0212<<14 | 0x15<<7 | 0x28,\n\t22113 - 19968: jis0212<<14 | 0x15<<7 | 0x29,\n\t22114 - 19968: jis0212<<14 | 0x15<<7 | 0x2A,\n\t22115 - 19968: jis0212<<14 | 0x15<<7 | 0x2B,\n\t22116 - 19968: jis0208<<14 | 0x32<<7 | 0x40,\n\t22118 - 19968: jis0212<<14 | 0x15<<7 | 0x2C,\n\t22120 - 19968: jis0208<<14 | 0x13<<7 | 0x4E,\n\t22121 - 19968: jis0212<<14 | 0x15<<7 | 0x2D,\n\t22122 - 19968: jis0208<<14 | 0x32<<7 | 0x43,\n\t22123 - 19968: jis0208<<14 | 0x32<<7 | 0x3F,\n\t22124 - 19968: jis0208<<14 | 0x32<<7 | 0x42,\n\t22125 - 19968: jis0212<<14 | 0x15<<7 | 0x2E,\n\t22127 - 19968: jis0212<<14 | 0x15<<7 | 0x2F,\n\t22129 - 19968: jis0212<<14 | 0x15<<7 | 0x30,\n\t22130 - 19968: jis0212<<14 | 0x15<<7 | 0x31,\n\t22132 - 19968: jis0208<<14 | 0x29<<7 | 0x0D,\n\t22133 - 19968: jis0212<<14 | 0x15<<7 | 0x32,\n\t22136 - 19968: jis0208<<14 | 0x25<<7 | 0x34,\n\t22138 - 19968: jis0208<<14 | 0x27<<7 | 0x17,\n\t22144 - 19968: jis0208<<14 | 0x32<<7 | 0x45,\n\t22148 - 19968: jis0212<<14 | 0x15<<7 | 0x33,\n\t22149 - 19968: jis0212<<14 | 0x15<<7 | 0x34,\n\t22150 - 19968: jis0208<<14 | 0x32<<7 | 0x44,\n\t22151 - 19968: jis0208<<14 | 0x12<<7 | 0x24,\n\t22152 - 19968: jis0212<<14 | 0x15<<7 | 0x35,\n\t22154 - 19968: jis0208<<14 | 0x32<<7 | 0x46,\n\t22155 - 19968: jis0212<<14 | 0x15<<7 | 0x36,\n\t22156 - 19968: jis0212<<14 | 0x15<<7 | 0x37,\n\t22159 - 19968: jis0208<<14 | 0x32<<7 | 0x49,\n\t22164 - 19968: jis0208<<14 | 0x32<<7 | 0x48,\n\t22165 - 19968: jis0212<<14 | 0x15<<7 | 0x38,\n\t22169 - 19968: jis0212<<14 | 0x15<<7 | 0x39,\n\t22170 - 19968: jis0212<<14 | 0x15<<7 | 0x3A,\n\t22173 - 19968: jis0212<<14 | 0x15<<7 | 0x3B,\n\t22174 - 19968: jis0212<<14 | 0x15<<7 | 0x3C,\n\t22175 - 19968: jis0212<<14 | 0x15<<7 | 0x3D,\n\t22176 - 19968: jis0208<<14 | 0x32<<7 | 0x47,\n\t22178 - 19968: jis0208<<14 | 0x26<<7 | 0x18,\n\t22181 - 19968: jis0208<<14 | 0x32<<7 | 0x4A,\n\t22182 - 19968: jis0212<<14 | 0x15<<7 | 0x3E,\n\t22183 - 19968: jis0212<<14 | 0x15<<7 | 0x3F,\n\t22184 - 19968: jis0212<<14 | 0x15<<7 | 0x40,\n\t22185 - 19968: jis0212<<14 | 0x15<<7 | 0x41,\n\t22187 - 19968: jis0212<<14 | 0x15<<7 | 0x42,\n\t22188 - 19968: jis0212<<14 | 0x15<<7 | 0x43,\n\t22189 - 19968: jis0212<<14 | 0x15<<7 | 0x44,\n\t22190 - 19968: jis0208<<14 | 0x32<<7 | 0x4B,\n\t22193 - 19968: jis0212<<14 | 0x15<<7 | 0x45,\n\t22195 - 19968: jis0212<<14 | 0x15<<7 | 0x46,\n\t22196 - 19968: jis0208<<14 | 0x32<<7 | 0x4D,\n\t22198 - 19968: jis0208<<14 | 0x32<<7 | 0x4C,\n\t22199 - 19968: jis0212<<14 | 0x15<<7 | 0x47,\n\t22204 - 19968: jis0208<<14 | 0x32<<7 | 0x4F,\n\t22206 - 19968: jis0212<<14 | 0x15<<7 | 0x48,\n\t22208 - 19968: jis0208<<14 | 0x32<<7 | 0x52,\n\t22209 - 19968: jis0208<<14 | 0x32<<7 | 0x50,\n\t22210 - 19968: jis0208<<14 | 0x32<<7 | 0x4E,\n\t22211 - 19968: jis0208<<14 | 0x32<<7 | 0x51,\n\t22213 - 19968: jis0212<<14 | 0x15<<7 | 0x49,\n\t22216 - 19968: jis0208<<14 | 0x32<<7 | 0x53,\n\t22217 - 19968: jis0212<<14 | 0x15<<7 | 0x4A,\n\t22218 - 19968: jis0212<<14 | 0x15<<7 | 0x4B,\n\t22219 - 19968: jis0212<<14 | 0x15<<7 | 0x4C,\n\t22220 - 19968: jis0212<<14 | 0x15<<7 | 0x4F,\n\t22221 - 19968: jis0212<<14 | 0x15<<7 | 0x50,\n\t22222 - 19968: jis0208<<14 | 0x32<<7 | 0x54,\n\t22223 - 19968: jis0212<<14 | 0x15<<7 | 0x4D,\n\t22224 - 19968: jis0212<<14 | 0x15<<7 | 0x4E,\n\t22225 - 19968: jis0208<<14 | 0x32<<7 | 0x55,\n\t22227 - 19968: jis0208<<14 | 0x32<<7 | 0x56,\n\t22231 - 19968: jis0208<<14 | 0x32<<7 | 0x57,\n\t22232 - 19968: jis0208<<14 | 0x30<<7 | 0x24,\n\t22233 - 19968: jis0212<<14 | 0x15<<7 | 0x51,\n\t22234 - 19968: jis0208<<14 | 0x1B<<7 | 0x5B,\n\t22235 - 19968: jis0208<<14 | 0x1A<<7 | 0x2C,\n\t22236 - 19968: jis0212<<14 | 0x15<<7 | 0x52,\n\t22237 - 19968: jis0212<<14 | 0x15<<7 | 0x53,\n\t22238 - 19968: jis0208<<14 | 0x11<<7 | 0x52,\n\t22239 - 19968: jis0212<<14 | 0x15<<7 | 0x54,\n\t22240 - 19968: jis0208<<14 | 0x0F<<7 | 0x57,\n\t22241 - 19968: jis0212<<14 | 0x15<<7 | 0x55,\n\t22243 - 19968: jis0208<<14 | 0x22<<7 | 0x23,\n\t22244 - 19968: jis0212<<14 | 0x15<<7 | 0x56,\n\t22245 - 19968: jis0212<<14 | 0x15<<7 | 0x57,\n\t22246 - 19968: jis0212<<14 | 0x15<<7 | 0x58,\n\t22247 - 19968: jis0212<<14 | 0x15<<7 | 0x59,\n\t22248 - 19968: jis0212<<14 | 0x15<<7 | 0x5A,\n\t22251 - 19968: jis0212<<14 | 0x15<<7 | 0x5C,\n\t22253 - 19968: jis0212<<14 | 0x15<<7 | 0x5D,\n\t22254 - 19968: jis0208<<14 | 0x32<<7 | 0x58,\n\t22256 - 19968: jis0208<<14 | 0x19<<7 | 0x03,\n\t22257 - 19968: jis0212<<14 | 0x15<<7 | 0x5B,\n\t22258 - 19968: jis0208<<14 | 0x0F<<7 | 0x2E,\n\t22259 - 19968: jis0208<<14 | 0x1E<<7 | 0x3D,\n\t22262 - 19968: jis0212<<14 | 0x16<<7 | 0x00,\n\t22263 - 19968: jis0212<<14 | 0x16<<7 | 0x01,\n\t22265 - 19968: jis0208<<14 | 0x32<<7 | 0x59,\n\t22266 - 19968: jis0208<<14 | 0x17<<7 | 0x26,\n\t22269 - 19968: jis0208<<14 | 0x18<<7 | 0x50,\n\t22271 - 19968: jis0208<<14 | 0x32<<7 | 0x5B,\n\t22272 - 19968: jis0208<<14 | 0x32<<7 | 0x5A,\n\t22273 - 19968: jis0212<<14 | 0x16<<7 | 0x02,\n\t22274 - 19968: jis0212<<14 | 0x16<<7 | 0x03,\n\t22275 - 19968: jis0208<<14 | 0x29<<7 | 0x3F,\n\t22276 - 19968: jis0208<<14 | 0x32<<7 | 0x5C,\n\t22279 - 19968: jis0212<<14 | 0x16<<7 | 0x04,\n\t22280 - 19968: jis0208<<14 | 0x33<<7 | 0x00,\n\t22281 - 19968: jis0208<<14 | 0x32<<7 | 0x5D,\n\t22282 - 19968: jis0212<<14 | 0x16<<7 | 0x05,\n\t22283 - 19968: jis0208<<14 | 0x33<<7 | 0x01,\n\t22284 - 19968: jis0212<<14 | 0x16<<7 | 0x06,\n\t22285 - 19968: jis0208<<14 | 0x33<<7 | 0x02,\n\t22287 - 19968: jis0208<<14 | 0x16<<7 | 0x56,\n\t22289 - 19968: jis0212<<14 | 0x16<<7 | 0x07,\n\t22290 - 19968: jis0208<<14 | 0x10<<7 | 0x3F,\n\t22291 - 19968: jis0208<<14 | 0x33<<7 | 0x03,\n\t22293 - 19968: jis0212<<14 | 0x16<<7 | 0x08,\n\t22294 - 19968: jis0208<<14 | 0x33<<7 | 0x05,\n\t22296 - 19968: jis0208<<14 | 0x33<<7 | 0x04,\n\t22298 - 19968: jis0212<<14 | 0x16<<7 | 0x09,\n\t22299 - 19968: jis0212<<14 | 0x16<<7 | 0x0A,\n\t22300 - 19968: jis0208<<14 | 0x33<<7 | 0x07,\n\t22301 - 19968: jis0212<<14 | 0x16<<7 | 0x0B,\n\t22303 - 19968: jis0208<<14 | 0x24<<7 | 0x39,\n\t22304 - 19968: jis0212<<14 | 0x16<<7 | 0x0C,\n\t22306 - 19968: jis0212<<14 | 0x16<<7 | 0x0D,\n\t22307 - 19968: jis0212<<14 | 0x16<<7 | 0x0E,\n\t22308 - 19968: jis0212<<14 | 0x16<<7 | 0x0F,\n\t22309 - 19968: jis0212<<14 | 0x16<<7 | 0x10,\n\t22310 - 19968: jis0208<<14 | 0x33<<7 | 0x08,\n\t22311 - 19968: jis0208<<14 | 0x0F<<7 | 0x14,\n\t22312 - 19968: jis0208<<14 | 0x19<<7 | 0x3E,\n\t22313 - 19968: jis0212<<14 | 0x16<<7 | 0x11,\n\t22314 - 19968: jis0212<<14 | 0x16<<7 | 0x12,\n\t22316 - 19968: jis0212<<14 | 0x16<<7 | 0x13,\n\t22317 - 19968: jis0208<<14 | 0x16<<7 | 0x1C,\n\t22318 - 19968: jis0212<<14 | 0x16<<7 | 0x14,\n\t22319 - 19968: jis0212<<14 | 0x16<<7 | 0x15,\n\t22320 - 19968: jis0208<<14 | 0x22<<7 | 0x2E,\n\t22323 - 19968: jis0212<<14 | 0x16<<7 | 0x16,\n\t22324 - 19968: jis0212<<14 | 0x16<<7 | 0x17,\n\t22327 - 19968: jis0208<<14 | 0x33<<7 | 0x09,\n\t22328 - 19968: jis0208<<14 | 0x33<<7 | 0x0A,\n\t22331 - 19968: jis0208<<14 | 0x33<<7 | 0x0C,\n\t22333 - 19968: jis0212<<14 | 0x16<<7 | 0x18,\n\t22334 - 19968: jis0212<<14 | 0x16<<7 | 0x19,\n\t22335 - 19968: jis0212<<14 | 0x16<<7 | 0x1A,\n\t22336 - 19968: jis0208<<14 | 0x33<<7 | 0x0D,\n\t22338 - 19968: jis0208<<14 | 0x19<<7 | 0x43,\n\t22341 - 19968: jis0212<<14 | 0x16<<7 | 0x1B,\n\t22342 - 19968: jis0212<<14 | 0x16<<7 | 0x1C,\n\t22343 - 19968: jis0208<<14 | 0x15<<7 | 0x30,\n\t22346 - 19968: jis0208<<14 | 0x2A<<7 | 0x16,\n\t22348 - 19968: jis0212<<14 | 0x16<<7 | 0x1D,\n\t22349 - 19968: jis0212<<14 | 0x16<<7 | 0x1E,\n\t22350 - 19968: jis0208<<14 | 0x33<<7 | 0x0B,\n\t22351 - 19968: jis0208<<14 | 0x33<<7 | 0x0E,\n\t22352 - 19968: jis0208<<14 | 0x19<<7 | 0x20,\n\t22353 - 19968: jis0208<<14 | 0x18<<7 | 0x02,\n\t22354 - 19968: jis0212<<14 | 0x16<<7 | 0x1F,\n\t22361 - 19968: jis0208<<14 | 0x58<<7 | 0x39,\n\t22369 - 19968: jis0208<<14 | 0x33<<7 | 0x12,\n\t22370 - 19968: jis0212<<14 | 0x16<<7 | 0x20,\n\t22372 - 19968: jis0208<<14 | 0x19<<7 | 0x04,\n\t22373 - 19968: jis0208<<14 | 0x58<<7 | 0x3A,\n\t22374 - 19968: jis0208<<14 | 0x22<<7 | 0x12,\n\t22375 - 19968: jis0212<<14 | 0x16<<7 | 0x22,\n\t22376 - 19968: jis0212<<14 | 0x16<<7 | 0x23,\n\t22377 - 19968: jis0208<<14 | 0x33<<7 | 0x0F,\n\t22378 - 19968: jis0208<<14 | 0x23<<7 | 0x39,\n\t22379 - 19968: jis0212<<14 | 0x16<<7 | 0x24,\n\t22381 - 19968: jis0212<<14 | 0x16<<7 | 0x25,\n\t22382 - 19968: jis0212<<14 | 0x16<<7 | 0x26,\n\t22383 - 19968: jis0212<<14 | 0x16<<7 | 0x27,\n\t22384 - 19968: jis0212<<14 | 0x16<<7 | 0x28,\n\t22385 - 19968: jis0212<<14 | 0x16<<7 | 0x29,\n\t22387 - 19968: jis0212<<14 | 0x16<<7 | 0x2A,\n\t22388 - 19968: jis0212<<14 | 0x16<<7 | 0x2B,\n\t22389 - 19968: jis0212<<14 | 0x16<<7 | 0x2C,\n\t22391 - 19968: jis0212<<14 | 0x16<<7 | 0x2D,\n\t22393 - 19968: jis0212<<14 | 0x16<<7 | 0x2E,\n\t22394 - 19968: jis0212<<14 | 0x16<<7 | 0x2F,\n\t22395 - 19968: jis0212<<14 | 0x16<<7 | 0x30,\n\t22396 - 19968: jis0212<<14 | 0x16<<7 | 0x31,\n\t22398 - 19968: jis0212<<14 | 0x16<<7 | 0x32,\n\t22399 - 19968: jis0208<<14 | 0x33<<7 | 0x13,\n\t22401 - 19968: jis0212<<14 | 0x16<<7 | 0x33,\n\t22402 - 19968: jis0208<<14 | 0x1E<<7 | 0x41,\n\t22403 - 19968: jis0212<<14 | 0x16<<7 | 0x34,\n\t22408 - 19968: jis0208<<14 | 0x33<<7 | 0x11,\n\t22409 - 19968: jis0208<<14 | 0x33<<7 | 0x14,\n\t22411 - 19968: jis0208<<14 | 0x16<<7 | 0x1E,\n\t22412 - 19968: jis0212<<14 | 0x16<<7 | 0x35,\n\t22419 - 19968: jis0208<<14 | 0x33<<7 | 0x15,\n\t22420 - 19968: jis0212<<14 | 0x16<<7 | 0x36,\n\t22421 - 19968: jis0212<<14 | 0x16<<7 | 0x3F,\n\t22423 - 19968: jis0212<<14 | 0x16<<7 | 0x37,\n\t22425 - 19968: jis0212<<14 | 0x16<<7 | 0x38,\n\t22426 - 19968: jis0212<<14 | 0x16<<7 | 0x39,\n\t22428 - 19968: jis0212<<14 | 0x16<<7 | 0x3A,\n\t22429 - 19968: jis0212<<14 | 0x16<<7 | 0x3B,\n\t22430 - 19968: jis0212<<14 | 0x16<<7 | 0x3C,\n\t22431 - 19968: jis0212<<14 | 0x16<<7 | 0x3D,\n\t22432 - 19968: jis0208<<14 | 0x33<<7 | 0x16,\n\t22433 - 19968: jis0212<<14 | 0x16<<7 | 0x3E,\n\t22434 - 19968: jis0208<<14 | 0x18<<7 | 0x03,\n\t22435 - 19968: jis0208<<14 | 0x12<<7 | 0x1F,\n\t22436 - 19968: jis0208<<14 | 0x33<<7 | 0x18,\n\t22439 - 19968: jis0212<<14 | 0x16<<7 | 0x40,\n\t22440 - 19968: jis0212<<14 | 0x16<<7 | 0x41,\n\t22441 - 19968: jis0212<<14 | 0x16<<7 | 0x42,\n\t22442 - 19968: jis0208<<14 | 0x33<<7 | 0x19,\n\t22444 - 19968: jis0208<<14 | 0x58<<7 | 0x3B,\n\t22448 - 19968: jis0208<<14 | 0x33<<7 | 0x1A,\n\t22451 - 19968: jis0208<<14 | 0x33<<7 | 0x17,\n\t22456 - 19968: jis0212<<14 | 0x16<<7 | 0x44,\n\t22461 - 19968: jis0212<<14 | 0x16<<7 | 0x45,\n\t22464 - 19968: jis0208<<14 | 0x33<<7 | 0x10,\n\t22467 - 19968: jis0208<<14 | 0x33<<7 | 0x1B,\n\t22470 - 19968: jis0208<<14 | 0x33<<7 | 0x1C,\n\t22471 - 19968: jis0208<<14 | 0x58<<7 | 0x3D,\n\t22472 - 19968: jis0208<<14 | 0x58<<7 | 0x3C,\n\t22475 - 19968: jis0208<<14 | 0x2A<<7 | 0x43,\n\t22476 - 19968: jis0212<<14 | 0x16<<7 | 0x48,\n\t22478 - 19968: jis0208<<14 | 0x1D<<7 | 0x4A,\n\t22479 - 19968: jis0212<<14 | 0x16<<7 | 0x49,\n\t22482 - 19968: jis0208<<14 | 0x33<<7 | 0x1E,\n\t22483 - 19968: jis0208<<14 | 0x33<<7 | 0x1F,\n\t22484 - 19968: jis0208<<14 | 0x33<<7 | 0x1D,\n\t22485 - 19968: jis0212<<14 | 0x16<<7 | 0x4A,\n\t22486 - 19968: jis0208<<14 | 0x33<<7 | 0x21,\n\t22492 - 19968: jis0208<<14 | 0x26<<7 | 0x17,\n\t22493 - 19968: jis0212<<14 | 0x16<<7 | 0x4B,\n\t22494 - 19968: jis0212<<14 | 0x16<<7 | 0x4C,\n\t22495 - 19968: jis0208<<14 | 0x0F<<7 | 0x47,\n\t22496 - 19968: jis0208<<14 | 0x28<<7 | 0x35,\n\t22497 - 19968: jis0212<<14 | 0x16<<7 | 0x5D,\n\t22499 - 19968: jis0208<<14 | 0x33<<7 | 0x22,\n\t22500 - 19968: jis0212<<14 | 0x16<<7 | 0x4D,\n\t22502 - 19968: jis0212<<14 | 0x16<<7 | 0x4E,\n\t22503 - 19968: jis0212<<14 | 0x16<<7 | 0x4F,\n\t22505 - 19968: jis0212<<14 | 0x16<<7 | 0x50,\n\t22509 - 19968: jis0212<<14 | 0x16<<7 | 0x51,\n\t22512 - 19968: jis0212<<14 | 0x16<<7 | 0x52,\n\t22516 - 19968: jis0208<<14 | 0x1D<<7 | 0x5C,\n\t22517 - 19968: jis0212<<14 | 0x16<<7 | 0x53,\n\t22518 - 19968: jis0212<<14 | 0x16<<7 | 0x54,\n\t22519 - 19968: jis0208<<14 | 0x1B<<7 | 0x18,\n\t22520 - 19968: jis0212<<14 | 0x16<<7 | 0x55,\n\t22521 - 19968: jis0208<<14 | 0x26<<7 | 0x3C,\n\t22522 - 19968: jis0208<<14 | 0x13<<7 | 0x4F,\n\t22524 - 19968: jis0208<<14 | 0x19<<7 | 0x4A,\n\t22525 - 19968: jis0212<<14 | 0x16<<7 | 0x56,\n\t22526 - 19968: jis0212<<14 | 0x16<<7 | 0x57,\n\t22527 - 19968: jis0212<<14 | 0x16<<7 | 0x58,\n\t22528 - 19968: jis0208<<14 | 0x2A<<7 | 0x38,\n\t22530 - 19968: jis0208<<14 | 0x25<<7 | 0x11,\n\t22531 - 19968: jis0212<<14 | 0x16<<7 | 0x59,\n\t22532 - 19968: jis0212<<14 | 0x16<<7 | 0x5A,\n\t22533 - 19968: jis0208<<14 | 0x16<<7 | 0x57,\n\t22534 - 19968: jis0208<<14 | 0x21<<7 | 0x2E,\n\t22536 - 19968: jis0212<<14 | 0x16<<7 | 0x5B,\n\t22537 - 19968: jis0212<<14 | 0x16<<7 | 0x5C,\n\t22538 - 19968: jis0208<<14 | 0x33<<7 | 0x20,\n\t22539 - 19968: jis0208<<14 | 0x33<<7 | 0x23,\n\t22540 - 19968: jis0212<<14 | 0x17<<7 | 0x00,\n\t22541 - 19968: jis0212<<14 | 0x17<<7 | 0x01,\n\t22549 - 19968: jis0208<<14 | 0x21<<7 | 0x23,\n\t22553 - 19968: jis0208<<14 | 0x33<<7 | 0x24,\n\t22555 - 19968: jis0212<<14 | 0x17<<7 | 0x02,\n\t22557 - 19968: jis0208<<14 | 0x33<<7 | 0x25,\n\t22558 - 19968: jis0212<<14 | 0x17<<7 | 0x03,\n\t22559 - 19968: jis0212<<14 | 0x17<<7 | 0x04,\n\t22560 - 19968: jis0212<<14 | 0x17<<7 | 0x05,\n\t22561 - 19968: jis0208<<14 | 0x33<<7 | 0x27,\n\t22564 - 19968: jis0208<<14 | 0x23<<7 | 0x48,\n\t22566 - 19968: jis0212<<14 | 0x17<<7 | 0x06,\n\t22567 - 19968: jis0212<<14 | 0x17<<7 | 0x07,\n\t22570 - 19968: jis0208<<14 | 0x13<<7 | 0x0D,\n\t22573 - 19968: jis0212<<14 | 0x17<<7 | 0x08,\n\t22575 - 19968: jis0208<<14 | 0x53<<7 | 0x00,\n\t22576 - 19968: jis0208<<14 | 0x10<<7 | 0x40,\n\t22577 - 19968: jis0208<<14 | 0x29<<7 | 0x52,\n\t22578 - 19968: jis0212<<14 | 0x17<<7 | 0x09,\n\t22580 - 19968: jis0208<<14 | 0x1D<<7 | 0x4B,\n\t22581 - 19968: jis0208<<14 | 0x24<<7 | 0x27,\n\t22585 - 19968: jis0212<<14 | 0x17<<7 | 0x0A,\n\t22586 - 19968: jis0208<<14 | 0x19<<7 | 0x45,\n\t22589 - 19968: jis0208<<14 | 0x33<<7 | 0x2D,\n\t22591 - 19968: jis0212<<14 | 0x17<<7 | 0x0B,\n\t22592 - 19968: jis0208<<14 | 0x29<<7 | 0x1C,\n\t22593 - 19968: jis0208<<14 | 0x2D<<7 | 0x3C,\n\t22601 - 19968: jis0212<<14 | 0x17<<7 | 0x0C,\n\t22602 - 19968: jis0208<<14 | 0x11<<7 | 0x53,\n\t22603 - 19968: jis0208<<14 | 0x33<<7 | 0x29,\n\t22604 - 19968: jis0212<<14 | 0x17<<7 | 0x0D,\n\t22605 - 19968: jis0212<<14 | 0x17<<7 | 0x0E,\n\t22607 - 19968: jis0212<<14 | 0x17<<7 | 0x0F,\n\t22608 - 19968: jis0212<<14 | 0x17<<7 | 0x10,\n\t22609 - 19968: jis0208<<14 | 0x20<<7 | 0x19,\n\t22610 - 19968: jis0208<<14 | 0x33<<7 | 0x2C,\n\t22612 - 19968: jis0208<<14 | 0x24<<7 | 0x42,\n\t22613 - 19968: jis0212<<14 | 0x17<<7 | 0x11,\n\t22615 - 19968: jis0208<<14 | 0x24<<7 | 0x28,\n\t22616 - 19968: jis0208<<14 | 0x24<<7 | 0x43,\n\t22617 - 19968: jis0208<<14 | 0x27<<7 | 0x18,\n\t22618 - 19968: jis0208<<14 | 0x23<<7 | 0x2C,\n\t22622 - 19968: jis0208<<14 | 0x19<<7 | 0x28,\n\t22623 - 19968: jis0212<<14 | 0x17<<7 | 0x12,\n\t22625 - 19968: jis0212<<14 | 0x17<<7 | 0x13,\n\t22626 - 19968: jis0208<<14 | 0x33<<7 | 0x28,\n\t22628 - 19968: jis0212<<14 | 0x17<<7 | 0x14,\n\t22631 - 19968: jis0212<<14 | 0x17<<7 | 0x15,\n\t22632 - 19968: jis0212<<14 | 0x17<<7 | 0x16,\n\t22633 - 19968: jis0208<<14 | 0x10<<7 | 0x55,\n\t22635 - 19968: jis0208<<14 | 0x24<<7 | 0x15,\n\t22640 - 19968: jis0208<<14 | 0x33<<7 | 0x2A,\n\t22642 - 19968: jis0208<<14 | 0x33<<7 | 0x26,\n\t22645 - 19968: jis0208<<14 | 0x1E<<7 | 0x2F,\n\t22648 - 19968: jis0212<<14 | 0x17<<7 | 0x17,\n\t22649 - 19968: jis0208<<14 | 0x33<<7 | 0x2E,\n\t22652 - 19968: jis0212<<14 | 0x17<<7 | 0x18,\n\t22654 - 19968: jis0208<<14 | 0x1C<<7 | 0x2D,\n\t22655 - 19968: jis0212<<14 | 0x17<<7 | 0x19,\n\t22656 - 19968: jis0212<<14 | 0x17<<7 | 0x1A,\n\t22657 - 19968: jis0212<<14 | 0x17<<7 | 0x1B,\n\t22659 - 19968: jis0208<<14 | 0x15<<7 | 0x0C,\n\t22661 - 19968: jis0208<<14 | 0x33<<7 | 0x2F,\n\t22663 - 19968: jis0212<<14 | 0x17<<7 | 0x1C,\n\t22664 - 19968: jis0212<<14 | 0x17<<7 | 0x1D,\n\t22665 - 19968: jis0212<<14 | 0x17<<7 | 0x1E,\n\t22666 - 19968: jis0212<<14 | 0x17<<7 | 0x1F,\n\t22668 - 19968: jis0212<<14 | 0x17<<7 | 0x20,\n\t22669 - 19968: jis0212<<14 | 0x17<<7 | 0x21,\n\t22671 - 19968: jis0212<<14 | 0x17<<7 | 0x22,\n\t22672 - 19968: jis0212<<14 | 0x17<<7 | 0x23,\n\t22675 - 19968: jis0208<<14 | 0x29<<7 | 0x47,\n\t22676 - 19968: jis0212<<14 | 0x17<<7 | 0x24,\n\t22678 - 19968: jis0212<<14 | 0x17<<7 | 0x25,\n\t22679 - 19968: jis0208<<14 | 0x20<<7 | 0x5C,\n\t22684 - 19968: jis0208<<14 | 0x23<<7 | 0x25,\n\t22685 - 19968: jis0212<<14 | 0x17<<7 | 0x26,\n\t22686 - 19968: jis0208<<14 | 0x58<<7 | 0x40,\n\t22687 - 19968: jis0208<<14 | 0x33<<7 | 0x31,\n\t22688 - 19968: jis0212<<14 | 0x17<<7 | 0x27,\n\t22689 - 19968: jis0212<<14 | 0x17<<7 | 0x28,\n\t22690 - 19968: jis0212<<14 | 0x17<<7 | 0x29,\n\t22694 - 19968: jis0212<<14 | 0x17<<7 | 0x2A,\n\t22696 - 19968: jis0208<<14 | 0x2A<<7 | 0x2E,\n\t22697 - 19968: jis0212<<14 | 0x17<<7 | 0x2B,\n\t22699 - 19968: jis0208<<14 | 0x33<<7 | 0x32,\n\t22702 - 19968: jis0208<<14 | 0x33<<7 | 0x37,\n\t22705 - 19968: jis0212<<14 | 0x17<<7 | 0x2C,\n\t22706 - 19968: jis0208<<14 | 0x58<<7 | 0x41,\n\t22707 - 19968: jis0208<<14 | 0x29<<7 | 0x0E,\n\t22712 - 19968: jis0208<<14 | 0x33<<7 | 0x36,\n\t22713 - 19968: jis0208<<14 | 0x33<<7 | 0x30,\n\t22714 - 19968: jis0208<<14 | 0x33<<7 | 0x33,\n\t22715 - 19968: jis0208<<14 | 0x33<<7 | 0x35,\n\t22716 - 19968: jis0212<<14 | 0x17<<7 | 0x2F,\n\t22718 - 19968: jis0208<<14 | 0x19<<7 | 0x05,\n\t22721 - 19968: jis0208<<14 | 0x29<<7 | 0x28,\n\t22722 - 19968: jis0212<<14 | 0x17<<7 | 0x30,\n\t22724 - 19968: jis0212<<14 | 0x17<<7 | 0x2E,\n\t22725 - 19968: jis0208<<14 | 0x33<<7 | 0x38,\n\t22727 - 19968: jis0208<<14 | 0x22<<7 | 0x24,\n\t22728 - 19968: jis0212<<14 | 0x17<<7 | 0x31,\n\t22730 - 19968: jis0208<<14 | 0x11<<7 | 0x54,\n\t22732 - 19968: jis0208<<14 | 0x1D<<7 | 0x4C,\n\t22733 - 19968: jis0212<<14 | 0x17<<7 | 0x32,\n\t22734 - 19968: jis0212<<14 | 0x17<<7 | 0x33,\n\t22736 - 19968: jis0212<<14 | 0x17<<7 | 0x34,\n\t22737 - 19968: jis0208<<14 | 0x33<<7 | 0x3A,\n\t22738 - 19968: jis0212<<14 | 0x17<<7 | 0x35,\n\t22739 - 19968: jis0208<<14 | 0x33<<7 | 0x39,\n\t22740 - 19968: jis0212<<14 | 0x17<<7 | 0x36,\n\t22741 - 19968: jis0208<<14 | 0x18<<7 | 0x47,\n\t22742 - 19968: jis0212<<14 | 0x17<<7 | 0x37,\n\t22743 - 19968: jis0208<<14 | 0x33<<7 | 0x3B,\n\t22744 - 19968: jis0208<<14 | 0x33<<7 | 0x3D,\n\t22745 - 19968: jis0208<<14 | 0x33<<7 | 0x3C,\n\t22746 - 19968: jis0212<<14 | 0x17<<7 | 0x38,\n\t22748 - 19968: jis0208<<14 | 0x33<<7 | 0x3F,\n\t22749 - 19968: jis0212<<14 | 0x17<<7 | 0x39,\n\t22750 - 19968: jis0208<<14 | 0x33<<7 | 0x34,\n\t22751 - 19968: jis0208<<14 | 0x33<<7 | 0x41,\n\t22753 - 19968: jis0212<<14 | 0x17<<7 | 0x3A,\n\t22754 - 19968: jis0212<<14 | 0x17<<7 | 0x3B,\n\t22756 - 19968: jis0208<<14 | 0x33<<7 | 0x40,\n\t22757 - 19968: jis0208<<14 | 0x33<<7 | 0x3E,\n\t22761 - 19968: jis0212<<14 | 0x17<<7 | 0x3C,\n\t22763 - 19968: jis0208<<14 | 0x1A<<7 | 0x2D,\n\t22764 - 19968: jis0208<<14 | 0x1E<<7 | 0x30,\n\t22766 - 19968: jis0208<<14 | 0x20<<7 | 0x33,\n\t22767 - 19968: jis0208<<14 | 0x33<<7 | 0x42,\n\t22768 - 19968: jis0208<<14 | 0x1F<<7 | 0x1B,\n\t22769 - 19968: jis0208<<14 | 0x0F<<7 | 0x4C,\n\t22770 - 19968: jis0208<<14 | 0x26<<7 | 0x43,\n\t22771 - 19968: jis0212<<14 | 0x17<<7 | 0x3D,\n\t22775 - 19968: jis0208<<14 | 0x23<<7 | 0x3A,\n\t22777 - 19968: jis0208<<14 | 0x33<<7 | 0x44,\n\t22778 - 19968: jis0208<<14 | 0x33<<7 | 0x43,\n\t22779 - 19968: jis0208<<14 | 0x33<<7 | 0x45,\n\t22780 - 19968: jis0208<<14 | 0x33<<7 | 0x46,\n\t22781 - 19968: jis0208<<14 | 0x33<<7 | 0x47,\n\t22786 - 19968: jis0208<<14 | 0x33<<7 | 0x48,\n\t22789 - 19968: jis0212<<14 | 0x17<<7 | 0x3E,\n\t22790 - 19968: jis0212<<14 | 0x17<<7 | 0x3F,\n\t22793 - 19968: jis0208<<14 | 0x29<<7 | 0x30,\n\t22794 - 19968: jis0208<<14 | 0x33<<7 | 0x49,\n\t22795 - 19968: jis0208<<14 | 0x58<<7 | 0x42,\n\t22796 - 19968: jis0212<<14 | 0x17<<7 | 0x41,\n\t22799 - 19968: jis0208<<14 | 0x11<<7 | 0x25,\n\t22800 - 19968: jis0208<<14 | 0x33<<7 | 0x4A,\n\t22802 - 19968: jis0212<<14 | 0x17<<7 | 0x42,\n\t22803 - 19968: jis0212<<14 | 0x17<<7 | 0x43,\n\t22804 - 19968: jis0212<<14 | 0x17<<7 | 0x44,\n\t22805 - 19968: jis0208<<14 | 0x2C<<7 | 0x1B,\n\t22806 - 19968: jis0208<<14 | 0x12<<7 | 0x0F,\n\t22808 - 19968: jis0208<<14 | 0x31<<7 | 0x28,\n\t22809 - 19968: jis0208<<14 | 0x1C<<7 | 0x27,\n\t22810 - 19968: jis0208<<14 | 0x21<<7 | 0x1E,\n\t22811 - 19968: jis0208<<14 | 0x33<<7 | 0x4B,\n\t22812 - 19968: jis0208<<14 | 0x2B<<7 | 0x4A,\n\t22813 - 19968: jis0212<<14 | 0x17<<7 | 0x46,\n\t22817 - 19968: jis0212<<14 | 0x17<<7 | 0x47,\n\t22818 - 19968: jis0208<<14 | 0x2B<<7 | 0x13,\n\t22819 - 19968: jis0212<<14 | 0x17<<7 | 0x48,\n\t22820 - 19968: jis0212<<14 | 0x17<<7 | 0x49,\n\t22821 - 19968: jis0208<<14 | 0x33<<7 | 0x4D,\n\t22823 - 19968: jis0208<<14 | 0x21<<7 | 0x46,\n\t22824 - 19968: jis0212<<14 | 0x17<<7 | 0x4A,\n\t22825 - 19968: jis0208<<14 | 0x24<<7 | 0x16,\n\t22826 - 19968: jis0208<<14 | 0x21<<7 | 0x1F,\n\t22827 - 19968: jis0208<<14 | 0x28<<7 | 0x36,\n\t22828 - 19968: jis0208<<14 | 0x33<<7 | 0x4E,\n\t22829 - 19968: jis0208<<14 | 0x33<<7 | 0x4F,\n\t22830 - 19968: jis0208<<14 | 0x10<<7 | 0x5A,\n\t22831 - 19968: jis0212<<14 | 0x17<<7 | 0x4B,\n\t22832 - 19968: jis0212<<14 | 0x17<<7 | 0x4C,\n\t22833 - 19968: jis0208<<14 | 0x1B<<7 | 0x19,\n\t22834 - 19968: jis0208<<14 | 0x33<<7 | 0x50,\n\t22835 - 19968: jis0212<<14 | 0x17<<7 | 0x4D,\n\t22837 - 19968: jis0212<<14 | 0x17<<7 | 0x4E,\n\t22838 - 19968: jis0212<<14 | 0x17<<7 | 0x4F,\n\t22839 - 19968: jis0208<<14 | 0x0F<<7 | 0x2F,\n\t22840 - 19968: jis0208<<14 | 0x33<<7 | 0x51,\n\t22846 - 19968: jis0208<<14 | 0x33<<7 | 0x52,\n\t22847 - 19968: jis0212<<14 | 0x17<<7 | 0x50,\n\t22851 - 19968: jis0212<<14 | 0x17<<7 | 0x51,\n\t22852 - 19968: jis0208<<14 | 0x10<<7 | 0x41,\n\t22854 - 19968: jis0212<<14 | 0x17<<7 | 0x52,\n\t22855 - 19968: jis0208<<14 | 0x13<<7 | 0x50,\n\t22856 - 19968: jis0208<<14 | 0x25<<7 | 0x3F,\n\t22857 - 19968: jis0208<<14 | 0x29<<7 | 0x53,\n\t22862 - 19968: jis0208<<14 | 0x33<<7 | 0x56,\n\t22863 - 19968: jis0208<<14 | 0x20<<7 | 0x34,\n\t22864 - 19968: jis0208<<14 | 0x33<<7 | 0x55,\n\t22865 - 19968: jis0208<<14 | 0x16<<7 | 0x1F,\n\t22866 - 19968: jis0212<<14 | 0x17<<7 | 0x53,\n\t22867 - 19968: jis0208<<14 | 0x58<<7 | 0x43,\n\t22868 - 19968: jis0208<<14 | 0x2A<<7 | 0x3A,\n\t22869 - 19968: jis0208<<14 | 0x33<<7 | 0x54,\n\t22871 - 19968: jis0208<<14 | 0x24<<7 | 0x44,\n\t22872 - 19968: jis0208<<14 | 0x33<<7 | 0x58,\n\t22873 - 19968: jis0212<<14 | 0x17<<7 | 0x55,\n\t22874 - 19968: jis0208<<14 | 0x33<<7 | 0x57,\n\t22875 - 19968: jis0208<<14 | 0x58<<7 | 0x44,\n\t22877 - 19968: jis0208<<14 | 0x58<<7 | 0x45,\n\t22878 - 19968: jis0212<<14 | 0x17<<7 | 0x58,\n\t22879 - 19968: jis0212<<14 | 0x17<<7 | 0x59,\n\t22880 - 19968: jis0208<<14 | 0x33<<7 | 0x5A,\n\t22881 - 19968: jis0212<<14 | 0x17<<7 | 0x5A,\n\t22882 - 19968: jis0208<<14 | 0x33<<7 | 0x59,\n\t22883 - 19968: jis0208<<14 | 0x58<<7 | 0x46,\n\t22885 - 19968: jis0208<<14 | 0x10<<7 | 0x5B,\n\t22887 - 19968: jis0208<<14 | 0x33<<7 | 0x5B,\n\t22888 - 19968: jis0208<<14 | 0x1D<<7 | 0x08,\n\t22889 - 19968: jis0208<<14 | 0x33<<7 | 0x5D,\n\t22890 - 19968: jis0208<<14 | 0x22<<7 | 0x04,\n\t22891 - 19968: jis0212<<14 | 0x17<<7 | 0x5C,\n\t22892 - 19968: jis0208<<14 | 0x33<<7 | 0x5C,\n\t22893 - 19968: jis0212<<14 | 0x17<<7 | 0x5D,\n\t22894 - 19968: jis0208<<14 | 0x29<<7 | 0x12,\n\t22895 - 19968: jis0212<<14 | 0x18<<7 | 0x00,\n\t22898 - 19968: jis0212<<14 | 0x18<<7 | 0x01,\n\t22899 - 19968: jis0208<<14 | 0x1C<<7 | 0x56,\n\t22900 - 19968: jis0208<<14 | 0x24<<7 | 0x3A,\n\t22901 - 19968: jis0212<<14 | 0x18<<7 | 0x02,\n\t22902 - 19968: jis0212<<14 | 0x18<<7 | 0x03,\n\t22904 - 19968: jis0208<<14 | 0x34<<7 | 0x00,\n\t22905 - 19968: jis0212<<14 | 0x18<<7 | 0x04,\n\t22907 - 19968: jis0212<<14 | 0x18<<7 | 0x05,\n\t22908 - 19968: jis0212<<14 | 0x18<<7 | 0x06,\n\t22909 - 19968: jis0208<<14 | 0x18<<7 | 0x04,\n\t22913 - 19968: jis0208<<14 | 0x34<<7 | 0x01,\n\t22914 - 19968: jis0208<<14 | 0x26<<7 | 0x00,\n\t22915 - 19968: jis0208<<14 | 0x27<<7 | 0x3D,\n\t22916 - 19968: jis0208<<14 | 0x2B<<7 | 0x30,\n\t22922 - 19968: jis0208<<14 | 0x26<<7 | 0x04,\n\t22923 - 19968: jis0212<<14 | 0x18<<7 | 0x07,\n\t22924 - 19968: jis0212<<14 | 0x18<<7 | 0x08,\n\t22925 - 19968: jis0208<<14 | 0x34<<7 | 0x0A,\n\t22926 - 19968: jis0212<<14 | 0x18<<7 | 0x09,\n\t22930 - 19968: jis0212<<14 | 0x18<<7 | 0x0A,\n\t22931 - 19968: jis0208<<14 | 0x14<<7 | 0x17,\n\t22933 - 19968: jis0212<<14 | 0x18<<7 | 0x0B,\n\t22934 - 19968: jis0208<<14 | 0x2C<<7 | 0x24,\n\t22935 - 19968: jis0212<<14 | 0x18<<7 | 0x0C,\n\t22937 - 19968: jis0208<<14 | 0x2B<<7 | 0x0E,\n\t22939 - 19968: jis0208<<14 | 0x35<<7 | 0x0B,\n\t22941 - 19968: jis0208<<14 | 0x34<<7 | 0x02,\n\t22943 - 19968: jis0212<<14 | 0x18<<7 | 0x0D,\n\t22947 - 19968: jis0208<<14 | 0x34<<7 | 0x05,\n\t22948 - 19968: jis0208<<14 | 0x58<<7 | 0x47,\n\t22949 - 19968: jis0208<<14 | 0x21<<7 | 0x24,\n\t22951 - 19968: jis0212<<14 | 0x18<<7 | 0x0F,\n\t22952 - 19968: jis0208<<14 | 0x2A<<7 | 0x17,\n\t22956 - 19968: jis0208<<14 | 0x24<<7 | 0x29,\n\t22957 - 19968: jis0212<<14 | 0x18<<7 | 0x10,\n\t22958 - 19968: jis0212<<14 | 0x18<<7 | 0x11,\n\t22959 - 19968: jis0212<<14 | 0x18<<7 | 0x12,\n\t22960 - 19968: jis0212<<14 | 0x18<<7 | 0x13,\n\t22962 - 19968: jis0208<<14 | 0x34<<7 | 0x06,\n\t22963 - 19968: jis0212<<14 | 0x18<<7 | 0x14,\n\t22967 - 19968: jis0212<<14 | 0x18<<7 | 0x15,\n\t22969 - 19968: jis0208<<14 | 0x2A<<7 | 0x44,\n\t22970 - 19968: jis0208<<14 | 0x58<<7 | 0x48,\n\t22971 - 19968: jis0208<<14 | 0x19<<7 | 0x29,\n\t22972 - 19968: jis0212<<14 | 0x18<<7 | 0x17,\n\t22974 - 19968: jis0208<<14 | 0x1D<<7 | 0x09,\n\t22977 - 19968: jis0212<<14 | 0x18<<7 | 0x18,\n\t22979 - 19968: jis0212<<14 | 0x18<<7 | 0x19,\n\t22980 - 19968: jis0212<<14 | 0x18<<7 | 0x1A,\n\t22982 - 19968: jis0208<<14 | 0x34<<7 | 0x07,\n\t22984 - 19968: jis0212<<14 | 0x18<<7 | 0x1B,\n\t22985 - 19968: jis0208<<14 | 0x1A<<7 | 0x2F,\n\t22986 - 19968: jis0212<<14 | 0x18<<7 | 0x1C,\n\t22987 - 19968: jis0208<<14 | 0x1A<<7 | 0x2E,\n\t22989 - 19968: jis0212<<14 | 0x18<<7 | 0x1D,\n\t22992 - 19968: jis0208<<14 | 0x0F<<7 | 0x18,\n\t22993 - 19968: jis0208<<14 | 0x17<<7 | 0x27,\n\t22994 - 19968: jis0212<<14 | 0x18<<7 | 0x1E,\n\t22995 - 19968: jis0208<<14 | 0x1F<<7 | 0x0A,\n\t22996 - 19968: jis0208<<14 | 0x0F<<7 | 0x30,\n\t23001 - 19968: jis0208<<14 | 0x34<<7 | 0x0B,\n\t23002 - 19968: jis0208<<14 | 0x34<<7 | 0x0C,\n\t23004 - 19968: jis0208<<14 | 0x34<<7 | 0x09,\n\t23005 - 19968: jis0212<<14 | 0x18<<7 | 0x1F,\n\t23006 - 19968: jis0212<<14 | 0x18<<7 | 0x20,\n\t23007 - 19968: jis0212<<14 | 0x18<<7 | 0x21,\n\t23011 - 19968: jis0212<<14 | 0x18<<7 | 0x22,\n\t23012 - 19968: jis0212<<14 | 0x18<<7 | 0x23,\n\t23013 - 19968: jis0208<<14 | 0x10<<7 | 0x17,\n\t23014 - 19968: jis0208<<14 | 0x13<<7 | 0x0E,\n\t23015 - 19968: jis0212<<14 | 0x18<<7 | 0x24,\n\t23016 - 19968: jis0208<<14 | 0x34<<7 | 0x08,\n\t23018 - 19968: jis0208<<14 | 0x2B<<7 | 0x24,\n\t23019 - 19968: jis0208<<14 | 0x28<<7 | 0x10,\n\t23022 - 19968: jis0212<<14 | 0x18<<7 | 0x25,\n\t23023 - 19968: jis0212<<14 | 0x18<<7 | 0x26,\n\t23025 - 19968: jis0212<<14 | 0x18<<7 | 0x27,\n\t23026 - 19968: jis0212<<14 | 0x18<<7 | 0x28,\n\t23028 - 19968: jis0212<<14 | 0x18<<7 | 0x29,\n\t23030 - 19968: jis0208<<14 | 0x0F<<7 | 0x07,\n\t23031 - 19968: jis0212<<14 | 0x18<<7 | 0x2A,\n\t23035 - 19968: jis0208<<14 | 0x0F<<7 | 0x58,\n\t23039 - 19968: jis0208<<14 | 0x1A<<7 | 0x30,\n\t23040 - 19968: jis0212<<14 | 0x18<<7 | 0x2B,\n\t23041 - 19968: jis0208<<14 | 0x0F<<7 | 0x31,\n\t23043 - 19968: jis0208<<14 | 0x0F<<7 | 0x02,\n\t23044 - 19968: jis0212<<14 | 0x18<<7 | 0x2C,\n\t23049 - 19968: jis0208<<14 | 0x34<<7 | 0x11,\n\t23052 - 19968: jis0212<<14 | 0x18<<7 | 0x2D,\n\t23053 - 19968: jis0212<<14 | 0x18<<7 | 0x2E,\n\t23054 - 19968: jis0212<<14 | 0x18<<7 | 0x2F,\n\t23057 - 19968: jis0208<<14 | 0x34<<7 | 0x0F,\n\t23058 - 19968: jis0212<<14 | 0x18<<7 | 0x30,\n\t23059 - 19968: jis0212<<14 | 0x18<<7 | 0x31,\n\t23064 - 19968: jis0208<<14 | 0x2B<<7 | 0x1B,\n\t23066 - 19968: jis0208<<14 | 0x34<<7 | 0x12,\n\t23068 - 19968: jis0208<<14 | 0x34<<7 | 0x10,\n\t23070 - 19968: jis0212<<14 | 0x18<<7 | 0x32,\n\t23071 - 19968: jis0208<<14 | 0x34<<7 | 0x0E,\n\t23072 - 19968: jis0208<<14 | 0x1E<<7 | 0x10,\n\t23075 - 19968: jis0212<<14 | 0x18<<7 | 0x33,\n\t23076 - 19968: jis0212<<14 | 0x18<<7 | 0x34,\n\t23077 - 19968: jis0208<<14 | 0x34<<7 | 0x0D,\n\t23079 - 19968: jis0212<<14 | 0x18<<7 | 0x35,\n\t23080 - 19968: jis0212<<14 | 0x18<<7 | 0x36,\n\t23081 - 19968: jis0208<<14 | 0x29<<7 | 0x39,\n\t23082 - 19968: jis0212<<14 | 0x18<<7 | 0x37,\n\t23085 - 19968: jis0212<<14 | 0x18<<7 | 0x38,\n\t23087 - 19968: jis0208<<14 | 0x17<<7 | 0x43,\n\t23088 - 19968: jis0212<<14 | 0x18<<7 | 0x39,\n\t23093 - 19968: jis0208<<14 | 0x34<<7 | 0x16,\n\t23094 - 19968: jis0208<<14 | 0x34<<7 | 0x17,\n\t23100 - 19968: jis0208<<14 | 0x1D<<7 | 0x0A,\n\t23104 - 19968: jis0208<<14 | 0x34<<7 | 0x13,\n\t23105 - 19968: jis0208<<14 | 0x2E<<7 | 0x0B,\n\t23108 - 19968: jis0212<<14 | 0x18<<7 | 0x3A,\n\t23109 - 19968: jis0212<<14 | 0x18<<7 | 0x3B,\n\t23110 - 19968: jis0208<<14 | 0x26<<7 | 0x2B,\n\t23111 - 19968: jis0212<<14 | 0x18<<7 | 0x3C,\n\t23112 - 19968: jis0212<<14 | 0x18<<7 | 0x3D,\n\t23113 - 19968: jis0208<<14 | 0x34<<7 | 0x15,\n\t23116 - 19968: jis0212<<14 | 0x18<<7 | 0x3E,\n\t23120 - 19968: jis0212<<14 | 0x18<<7 | 0x3F,\n\t23125 - 19968: jis0212<<14 | 0x18<<7 | 0x40,\n\t23130 - 19968: jis0208<<14 | 0x19<<7 | 0x06,\n\t23134 - 19968: jis0212<<14 | 0x18<<7 | 0x41,\n\t23138 - 19968: jis0208<<14 | 0x34<<7 | 0x18,\n\t23139 - 19968: jis0212<<14 | 0x18<<7 | 0x42,\n\t23141 - 19968: jis0212<<14 | 0x18<<7 | 0x43,\n\t23142 - 19968: jis0208<<14 | 0x28<<7 | 0x37,\n\t23143 - 19968: jis0212<<14 | 0x18<<7 | 0x44,\n\t23146 - 19968: jis0208<<14 | 0x34<<7 | 0x19,\n\t23148 - 19968: jis0208<<14 | 0x34<<7 | 0x14,\n\t23149 - 19968: jis0212<<14 | 0x18<<7 | 0x45,\n\t23159 - 19968: jis0212<<14 | 0x18<<7 | 0x46,\n\t23162 - 19968: jis0212<<14 | 0x18<<7 | 0x47,\n\t23163 - 19968: jis0212<<14 | 0x18<<7 | 0x48,\n\t23166 - 19968: jis0212<<14 | 0x18<<7 | 0x49,\n\t23167 - 19968: jis0208<<14 | 0x2B<<7 | 0x1A,\n\t23179 - 19968: jis0212<<14 | 0x18<<7 | 0x4A,\n\t23184 - 19968: jis0212<<14 | 0x18<<7 | 0x4B,\n\t23186 - 19968: jis0208<<14 | 0x26<<7 | 0x3D,\n\t23187 - 19968: jis0212<<14 | 0x18<<7 | 0x4C,\n\t23190 - 19968: jis0212<<14 | 0x18<<7 | 0x4D,\n\t23193 - 19968: jis0212<<14 | 0x18<<7 | 0x4E,\n\t23194 - 19968: jis0208<<14 | 0x34<<7 | 0x1A,\n\t23195 - 19968: jis0208<<14 | 0x28<<7 | 0x11,\n\t23196 - 19968: jis0212<<14 | 0x18<<7 | 0x4F,\n\t23198 - 19968: jis0212<<14 | 0x18<<7 | 0x50,\n\t23199 - 19968: jis0212<<14 | 0x18<<7 | 0x51,\n\t23200 - 19968: jis0212<<14 | 0x18<<7 | 0x52,\n\t23202 - 19968: jis0212<<14 | 0x18<<7 | 0x53,\n\t23207 - 19968: jis0212<<14 | 0x18<<7 | 0x54,\n\t23212 - 19968: jis0212<<14 | 0x18<<7 | 0x55,\n\t23217 - 19968: jis0212<<14 | 0x18<<7 | 0x56,\n\t23218 - 19968: jis0212<<14 | 0x18<<7 | 0x57,\n\t23219 - 19968: jis0212<<14 | 0x18<<7 | 0x58,\n\t23221 - 19968: jis0212<<14 | 0x18<<7 | 0x59,\n\t23224 - 19968: jis0212<<14 | 0x18<<7 | 0x5A,\n\t23226 - 19968: jis0212<<14 | 0x18<<7 | 0x5B,\n\t23227 - 19968: jis0212<<14 | 0x18<<7 | 0x5C,\n\t23228 - 19968: jis0208<<14 | 0x34<<7 | 0x1B,\n\t23229 - 19968: jis0208<<14 | 0x34<<7 | 0x1F,\n\t23230 - 19968: jis0208<<14 | 0x34<<7 | 0x1C,\n\t23231 - 19968: jis0212<<14 | 0x18<<7 | 0x5D,\n\t23233 - 19968: jis0208<<14 | 0x11<<7 | 0x26,\n\t23234 - 19968: jis0208<<14 | 0x34<<7 | 0x1E,\n\t23236 - 19968: jis0212<<14 | 0x19<<7 | 0x00,\n\t23238 - 19968: jis0212<<14 | 0x19<<7 | 0x01,\n\t23240 - 19968: jis0212<<14 | 0x19<<7 | 0x02,\n\t23241 - 19968: jis0208<<14 | 0x1B<<7 | 0x1A,\n\t23243 - 19968: jis0208<<14 | 0x34<<7 | 0x1D,\n\t23244 - 19968: jis0208<<14 | 0x16<<7 | 0x58,\n\t23247 - 19968: jis0212<<14 | 0x19<<7 | 0x03,\n\t23248 - 19968: jis0208<<14 | 0x34<<7 | 0x2B,\n\t23254 - 19968: jis0208<<14 | 0x34<<7 | 0x24,\n\t23255 - 19968: jis0208<<14 | 0x34<<7 | 0x21,\n\t23258 - 19968: jis0212<<14 | 0x19<<7 | 0x04,\n\t23260 - 19968: jis0212<<14 | 0x19<<7 | 0x05,\n\t23264 - 19968: jis0212<<14 | 0x19<<7 | 0x06,\n\t23265 - 19968: jis0208<<14 | 0x22<<7 | 0x43,\n\t23267 - 19968: jis0208<<14 | 0x34<<7 | 0x20,\n\t23269 - 19968: jis0212<<14 | 0x19<<7 | 0x07,\n\t23270 - 19968: jis0208<<14 | 0x34<<7 | 0x22,\n\t23273 - 19968: jis0208<<14 | 0x34<<7 | 0x23,\n\t23274 - 19968: jis0212<<14 | 0x19<<7 | 0x08,\n\t23278 - 19968: jis0212<<14 | 0x19<<7 | 0x09,\n\t23285 - 19968: jis0212<<14 | 0x19<<7 | 0x0A,\n\t23286 - 19968: jis0212<<14 | 0x19<<7 | 0x0B,\n\t23290 - 19968: jis0208<<14 | 0x34<<7 | 0x25,\n\t23291 - 19968: jis0208<<14 | 0x34<<7 | 0x26,\n\t23293 - 19968: jis0212<<14 | 0x19<<7 | 0x0C,\n\t23296 - 19968: jis0212<<14 | 0x19<<7 | 0x0D,\n\t23297 - 19968: jis0212<<14 | 0x19<<7 | 0x0E,\n\t23304 - 19968: jis0212<<14 | 0x19<<7 | 0x0F,\n\t23305 - 19968: jis0208<<14 | 0x13<<7 | 0x51,\n\t23307 - 19968: jis0208<<14 | 0x34<<7 | 0x28,\n\t23308 - 19968: jis0208<<14 | 0x34<<7 | 0x27,\n\t23318 - 19968: jis0208<<14 | 0x34<<7 | 0x29,\n\t23319 - 19968: jis0212<<14 | 0x19<<7 | 0x10,\n\t23321 - 19968: jis0212<<14 | 0x19<<7 | 0x12,\n\t23323 - 19968: jis0212<<14 | 0x19<<7 | 0x13,\n\t23325 - 19968: jis0212<<14 | 0x19<<7 | 0x14,\n\t23329 - 19968: jis0212<<14 | 0x19<<7 | 0x15,\n\t23330 - 19968: jis0208<<14 | 0x1D<<7 | 0x4D,\n\t23333 - 19968: jis0212<<14 | 0x19<<7 | 0x16,\n\t23338 - 19968: jis0208<<14 | 0x34<<7 | 0x2C,\n\t23340 - 19968: jis0208<<14 | 0x23<<7 | 0x3B,\n\t23341 - 19968: jis0212<<14 | 0x19<<7 | 0x17,\n\t23344 - 19968: jis0208<<14 | 0x10<<7 | 0x24,\n\t23346 - 19968: jis0208<<14 | 0x34<<7 | 0x2A,\n\t23348 - 19968: jis0212<<14 | 0x19<<7 | 0x11,\n\t23350 - 19968: jis0208<<14 | 0x34<<7 | 0x2D,\n\t23352 - 19968: jis0212<<14 | 0x19<<7 | 0x18,\n\t23358 - 19968: jis0208<<14 | 0x34<<7 | 0x2E,\n\t23360 - 19968: jis0208<<14 | 0x34<<7 | 0x31,\n\t23361 - 19968: jis0212<<14 | 0x19<<7 | 0x19,\n\t23363 - 19968: jis0208<<14 | 0x34<<7 | 0x2F,\n\t23365 - 19968: jis0208<<14 | 0x34<<7 | 0x30,\n\t23371 - 19968: jis0212<<14 | 0x19<<7 | 0x1A,\n\t23372 - 19968: jis0212<<14 | 0x19<<7 | 0x1B,\n\t23376 - 19968: jis0208<<14 | 0x1A<<7 | 0x31,\n\t23377 - 19968: jis0208<<14 | 0x34<<7 | 0x32,\n\t23378 - 19968: jis0212<<14 | 0x19<<7 | 0x1C,\n\t23380 - 19968: jis0208<<14 | 0x18<<7 | 0x05,\n\t23381 - 19968: jis0208<<14 | 0x34<<7 | 0x33,\n\t23382 - 19968: jis0208<<14 | 0x58<<7 | 0x49,\n\t23383 - 19968: jis0208<<14 | 0x1A<<7 | 0x59,\n\t23384 - 19968: jis0208<<14 | 0x21<<7 | 0x17,\n\t23386 - 19968: jis0208<<14 | 0x34<<7 | 0x34,\n\t23387 - 19968: jis0208<<14 | 0x34<<7 | 0x35,\n\t23388 - 19968: jis0208<<14 | 0x1A<<7 | 0x39,\n\t23389 - 19968: jis0208<<14 | 0x18<<7 | 0x06,\n\t23390 - 19968: jis0212<<14 | 0x19<<7 | 0x1E,\n\t23391 - 19968: jis0208<<14 | 0x2B<<7 | 0x31,\n\t23395 - 19968: jis0208<<14 | 0x14<<7 | 0x07,\n\t23396 - 19968: jis0208<<14 | 0x17<<7 | 0x28,\n\t23397 - 19968: jis0208<<14 | 0x34<<7 | 0x36,\n\t23398 - 19968: jis0208<<14 | 0x12<<7 | 0x37,\n\t23400 - 19968: jis0212<<14 | 0x19<<7 | 0x1F,\n\t23401 - 19968: jis0208<<14 | 0x34<<7 | 0x37,\n\t23403 - 19968: jis0208<<14 | 0x21<<7 | 0x18,\n\t23406 - 19968: jis0212<<14 | 0x19<<7 | 0x20,\n\t23407 - 19968: jis0212<<14 | 0x19<<7 | 0x21,\n\t23408 - 19968: jis0208<<14 | 0x34<<7 | 0x38,\n\t23409 - 19968: jis0208<<14 | 0x35<<7 | 0x02,\n\t23411 - 19968: jis0208<<14 | 0x34<<7 | 0x39,\n\t23413 - 19968: jis0208<<14 | 0x34<<7 | 0x3A,\n\t23416 - 19968: jis0208<<14 | 0x34<<7 | 0x3B,\n\t23418 - 19968: jis0208<<14 | 0x34<<7 | 0x3D,\n\t23420 - 19968: jis0212<<14 | 0x19<<7 | 0x22,\n\t23421 - 19968: jis0212<<14 | 0x19<<7 | 0x23,\n\t23422 - 19968: jis0212<<14 | 0x19<<7 | 0x24,\n\t23423 - 19968: jis0212<<14 | 0x19<<7 | 0x25,\n\t23424 - 19968: jis0208<<14 | 0x34<<7 | 0x3E,\n\t23425 - 19968: jis0212<<14 | 0x19<<7 | 0x26,\n\t23427 - 19968: jis0208<<14 | 0x34<<7 | 0x3F,\n\t23428 - 19968: jis0212<<14 | 0x19<<7 | 0x27,\n\t23429 - 19968: jis0208<<14 | 0x21<<7 | 0x4F,\n\t23430 - 19968: jis0212<<14 | 0x19<<7 | 0x28,\n\t23431 - 19968: jis0208<<14 | 0x10<<7 | 0x06,\n\t23432 - 19968: jis0208<<14 | 0x1B<<7 | 0x48,\n\t23433 - 19968: jis0208<<14 | 0x0F<<7 | 0x21,\n\t23434 - 19968: jis0212<<14 | 0x19<<7 | 0x29,\n\t23435 - 19968: jis0208<<14 | 0x20<<7 | 0x36,\n\t23436 - 19968: jis0208<<14 | 0x13<<7 | 0x0F,\n\t23437 - 19968: jis0208<<14 | 0x1B<<7 | 0x14,\n\t23438 - 19968: jis0212<<14 | 0x19<<7 | 0x2A,\n\t23439 - 19968: jis0208<<14 | 0x18<<7 | 0x07,\n\t23440 - 19968: jis0212<<14 | 0x19<<7 | 0x2B,\n\t23441 - 19968: jis0212<<14 | 0x19<<7 | 0x2C,\n\t23443 - 19968: jis0212<<14 | 0x19<<7 | 0x2D,\n\t23444 - 19968: jis0212<<14 | 0x19<<7 | 0x2E,\n\t23445 - 19968: jis0208<<14 | 0x24<<7 | 0x45,\n\t23446 - 19968: jis0212<<14 | 0x19<<7 | 0x2F,\n\t23447 - 19968: jis0208<<14 | 0x1C<<7 | 0x00,\n\t23448 - 19968: jis0208<<14 | 0x13<<7 | 0x10,\n\t23449 - 19968: jis0208<<14 | 0x22<<7 | 0x47,\n\t23450 - 19968: jis0208<<14 | 0x23<<7 | 0x49,\n\t23451 - 19968: jis0208<<14 | 0x0F<<7 | 0x17,\n\t23452 - 19968: jis0208<<14 | 0x14<<7 | 0x18,\n\t23453 - 19968: jis0208<<14 | 0x29<<7 | 0x54,\n\t23455 - 19968: jis0208<<14 | 0x1B<<7 | 0x21,\n\t23458 - 19968: jis0208<<14 | 0x14<<7 | 0x31,\n\t23459 - 19968: jis0208<<14 | 0x1F<<7 | 0x4A,\n\t23460 - 19968: jis0208<<14 | 0x1B<<7 | 0x1B,\n\t23461 - 19968: jis0208<<14 | 0x2C<<7 | 0x07,\n\t23462 - 19968: jis0208<<14 | 0x34<<7 | 0x40,\n\t23464 - 19968: jis0212<<14 | 0x19<<7 | 0x30,\n\t23465 - 19968: jis0212<<14 | 0x19<<7 | 0x31,\n\t23468 - 19968: jis0212<<14 | 0x19<<7 | 0x32,\n\t23469 - 19968: jis0212<<14 | 0x19<<7 | 0x33,\n\t23470 - 19968: jis0208<<14 | 0x14<<7 | 0x3B,\n\t23471 - 19968: jis0212<<14 | 0x19<<7 | 0x34,\n\t23472 - 19968: jis0208<<14 | 0x19<<7 | 0x2A,\n\t23473 - 19968: jis0212<<14 | 0x19<<7 | 0x35,\n\t23474 - 19968: jis0212<<14 | 0x19<<7 | 0x36,\n\t23475 - 19968: jis0208<<14 | 0x12<<7 | 0x11,\n\t23476 - 19968: jis0208<<14 | 0x10<<7 | 0x42,\n\t23477 - 19968: jis0208<<14 | 0x1D<<7 | 0x0B,\n\t23478 - 19968: jis0208<<14 | 0x11<<7 | 0x27,\n\t23479 - 19968: jis0212<<14 | 0x19<<7 | 0x37,\n\t23480 - 19968: jis0208<<14 | 0x34<<7 | 0x41,\n\t23481 - 19968: jis0208<<14 | 0x2C<<7 | 0x25,\n\t23482 - 19968: jis0212<<14 | 0x19<<7 | 0x38,\n\t23484 - 19968: jis0212<<14 | 0x19<<7 | 0x39,\n\t23487 - 19968: jis0208<<14 | 0x1C<<7 | 0x28,\n\t23488 - 19968: jis0208<<14 | 0x58<<7 | 0x4A,\n\t23489 - 19968: jis0212<<14 | 0x19<<7 | 0x3B,\n\t23490 - 19968: jis0208<<14 | 0x1B<<7 | 0x43,\n\t23491 - 19968: jis0208<<14 | 0x34<<7 | 0x42,\n\t23492 - 19968: jis0208<<14 | 0x13<<7 | 0x52,\n\t23493 - 19968: jis0208<<14 | 0x25<<7 | 0x31,\n\t23494 - 19968: jis0208<<14 | 0x2B<<7 | 0x08,\n\t23495 - 19968: jis0208<<14 | 0x34<<7 | 0x43,\n\t23497 - 19968: jis0208<<14 | 0x34<<7 | 0x44,\n\t23500 - 19968: jis0208<<14 | 0x28<<7 | 0x38,\n\t23501 - 19968: jis0212<<14 | 0x19<<7 | 0x3C,\n\t23503 - 19968: jis0212<<14 | 0x19<<7 | 0x3D,\n\t23504 - 19968: jis0208<<14 | 0x34<<7 | 0x46,\n\t23506 - 19968: jis0208<<14 | 0x13<<7 | 0x07,\n\t23507 - 19968: jis0208<<14 | 0x15<<7 | 0x56,\n\t23508 - 19968: jis0208<<14 | 0x34<<7 | 0x45,\n\t23510 - 19968: jis0212<<14 | 0x19<<7 | 0x3E,\n\t23511 - 19968: jis0212<<14 | 0x19<<7 | 0x3F,\n\t23512 - 19968: jis0208<<14 | 0x58<<7 | 0x4C,\n\t23513 - 19968: jis0212<<14 | 0x19<<7 | 0x41,\n\t23514 - 19968: jis0212<<14 | 0x19<<7 | 0x42,\n\t23515 - 19968: jis0208<<14 | 0x13<<7 | 0x11,\n\t23517 - 19968: jis0208<<14 | 0x1E<<7 | 0x11,\n\t23518 - 19968: jis0208<<14 | 0x34<<7 | 0x4A,\n\t23519 - 19968: jis0208<<14 | 0x1A<<7 | 0x00,\n\t23520 - 19968: jis0212<<14 | 0x19<<7 | 0x43,\n\t23521 - 19968: jis0208<<14 | 0x11<<7 | 0x28,\n\t23522 - 19968: jis0208<<14 | 0x34<<7 | 0x49,\n\t23524 - 19968: jis0208<<14 | 0x34<<7 | 0x47,\n\t23525 - 19968: jis0208<<14 | 0x34<<7 | 0x4B,\n\t23526 - 19968: jis0208<<14 | 0x34<<7 | 0x48,\n\t23527 - 19968: jis0208<<14 | 0x26<<7 | 0x0A,\n\t23528 - 19968: jis0208<<14 | 0x3B<<7 | 0x2C,\n\t23529 - 19968: jis0208<<14 | 0x1E<<7 | 0x12,\n\t23531 - 19968: jis0208<<14 | 0x34<<7 | 0x4C,\n\t23532 - 19968: jis0208<<14 | 0x58<<7 | 0x4D,\n\t23534 - 19968: jis0208<<14 | 0x2D<<7 | 0x1F,\n\t23535 - 19968: jis0212<<14 | 0x19<<7 | 0x44,\n\t23536 - 19968: jis0208<<14 | 0x34<<7 | 0x4D,\n\t23537 - 19968: jis0212<<14 | 0x19<<7 | 0x45,\n\t23539 - 19968: jis0208<<14 | 0x34<<7 | 0x4F,\n\t23540 - 19968: jis0212<<14 | 0x19<<7 | 0x46,\n\t23541 - 19968: jis0208<<14 | 0x22<<7 | 0x5D,\n\t23542 - 19968: jis0208<<14 | 0x34<<7 | 0x4E,\n\t23544 - 19968: jis0208<<14 | 0x1F<<7 | 0x02,\n\t23546 - 19968: jis0208<<14 | 0x1A<<7 | 0x5A,\n\t23549 - 19968: jis0212<<14 | 0x19<<7 | 0x47,\n\t23550 - 19968: jis0208<<14 | 0x21<<7 | 0x2F,\n\t23551 - 19968: jis0208<<14 | 0x1B<<7 | 0x56,\n\t23553 - 19968: jis0208<<14 | 0x28<<7 | 0x54,\n\t23554 - 19968: jis0208<<14 | 0x1F<<7 | 0x4B,\n\t23556 - 19968: jis0208<<14 | 0x1B<<7 | 0x2C,\n\t23557 - 19968: jis0208<<14 | 0x34<<7 | 0x50,\n\t23558 - 19968: jis0208<<14 | 0x1D<<7 | 0x0C,\n\t23559 - 19968: jis0208<<14 | 0x34<<7 | 0x51,\n\t23560 - 19968: jis0208<<14 | 0x34<<7 | 0x52,\n\t23561 - 19968: jis0208<<14 | 0x0F<<7 | 0x32,\n\t23562 - 19968: jis0208<<14 | 0x21<<7 | 0x19,\n\t23563 - 19968: jis0208<<14 | 0x1E<<7 | 0x31,\n\t23564 - 19968: jis0212<<14 | 0x19<<7 | 0x48,\n\t23565 - 19968: jis0208<<14 | 0x34<<7 | 0x53,\n\t23566 - 19968: jis0208<<14 | 0x25<<7 | 0x12,\n\t23567 - 19968: jis0208<<14 | 0x1D<<7 | 0x0D,\n\t23569 - 19968: jis0208<<14 | 0x1D<<7 | 0x0E,\n\t23571 - 19968: jis0208<<14 | 0x34<<7 | 0x54,\n\t23574 - 19968: jis0208<<14 | 0x1F<<7 | 0x4C,\n\t23575 - 19968: jis0212<<14 | 0x19<<7 | 0x49,\n\t23578 - 19968: jis0208<<14 | 0x1D<<7 | 0x0F,\n\t23582 - 19968: jis0208<<14 | 0x58<<7 | 0x4E,\n\t23583 - 19968: jis0212<<14 | 0x19<<7 | 0x4B,\n\t23584 - 19968: jis0208<<14 | 0x34<<7 | 0x55,\n\t23586 - 19968: jis0208<<14 | 0x34<<7 | 0x56,\n\t23587 - 19968: jis0212<<14 | 0x19<<7 | 0x4C,\n\t23588 - 19968: jis0208<<14 | 0x2B<<7 | 0x3F,\n\t23590 - 19968: jis0212<<14 | 0x19<<7 | 0x4D,\n\t23592 - 19968: jis0208<<14 | 0x34<<7 | 0x57,\n\t23593 - 19968: jis0212<<14 | 0x19<<7 | 0x4E,\n\t23595 - 19968: jis0212<<14 | 0x19<<7 | 0x4F,\n\t23596 - 19968: jis0212<<14 | 0x19<<7 | 0x50,\n\t23597 - 19968: jis0208<<14 | 0x15<<7 | 0x25,\n\t23598 - 19968: jis0212<<14 | 0x19<<7 | 0x51,\n\t23600 - 19968: jis0212<<14 | 0x19<<7 | 0x52,\n\t23601 - 19968: jis0208<<14 | 0x1C<<7 | 0x01,\n\t23602 - 19968: jis0212<<14 | 0x19<<7 | 0x53,\n\t23605 - 19968: jis0212<<14 | 0x19<<7 | 0x54,\n\t23606 - 19968: jis0212<<14 | 0x19<<7 | 0x55,\n\t23608 - 19968: jis0208<<14 | 0x34<<7 | 0x58,\n\t23609 - 19968: jis0208<<14 | 0x34<<7 | 0x59,\n\t23610 - 19968: jis0208<<14 | 0x1B<<7 | 0x3B,\n\t23611 - 19968: jis0208<<14 | 0x1E<<7 | 0x0B,\n\t23612 - 19968: jis0208<<14 | 0x25<<7 | 0x53,\n\t23613 - 19968: jis0208<<14 | 0x1E<<7 | 0x33,\n\t23614 - 19968: jis0208<<14 | 0x27<<7 | 0x57,\n\t23615 - 19968: jis0208<<14 | 0x26<<7 | 0x01,\n\t23616 - 19968: jis0208<<14 | 0x15<<7 | 0x28,\n\t23617 - 19968: jis0208<<14 | 0x34<<7 | 0x5A,\n\t23621 - 19968: jis0208<<14 | 0x14<<7 | 0x4E,\n\t23622 - 19968: jis0208<<14 | 0x34<<7 | 0x5B,\n\t23624 - 19968: jis0208<<14 | 0x15<<7 | 0x5D,\n\t23626 - 19968: jis0208<<14 | 0x25<<7 | 0x2E,\n\t23627 - 19968: jis0208<<14 | 0x11<<7 | 0x0F,\n\t23629 - 19968: jis0208<<14 | 0x1A<<7 | 0x32,\n\t23630 - 19968: jis0208<<14 | 0x34<<7 | 0x5C,\n\t23631 - 19968: jis0208<<14 | 0x35<<7 | 0x01,\n\t23632 - 19968: jis0208<<14 | 0x35<<7 | 0x00,\n\t23633 - 19968: jis0208<<14 | 0x15<<7 | 0x5C,\n\t23635 - 19968: jis0208<<14 | 0x34<<7 | 0x5D,\n\t23637 - 19968: jis0208<<14 | 0x24<<7 | 0x17,\n\t23641 - 19968: jis0212<<14 | 0x19<<7 | 0x56,\n\t23642 - 19968: jis0212<<14 | 0x19<<7 | 0x57,\n\t23644 - 19968: jis0212<<14 | 0x19<<7 | 0x58,\n\t23646 - 19968: jis0208<<14 | 0x21<<7 | 0x0F,\n\t23648 - 19968: jis0208<<14 | 0x24<<7 | 0x2A,\n\t23649 - 19968: jis0208<<14 | 0x1B<<7 | 0x27,\n\t23650 - 19968: jis0212<<14 | 0x19<<7 | 0x59,\n\t23651 - 19968: jis0212<<14 | 0x19<<7 | 0x5A,\n\t23652 - 19968: jis0208<<14 | 0x20<<7 | 0x37,\n\t23653 - 19968: jis0208<<14 | 0x2C<<7 | 0x59,\n\t23655 - 19968: jis0212<<14 | 0x19<<7 | 0x5B,\n\t23656 - 19968: jis0212<<14 | 0x19<<7 | 0x5C,\n\t23657 - 19968: jis0212<<14 | 0x19<<7 | 0x5D,\n\t23660 - 19968: jis0208<<14 | 0x35<<7 | 0x03,\n\t23661 - 19968: jis0212<<14 | 0x1A<<7 | 0x00,\n\t23662 - 19968: jis0208<<14 | 0x35<<7 | 0x04,\n\t23663 - 19968: jis0208<<14 | 0x25<<7 | 0x35,\n\t23664 - 19968: jis0212<<14 | 0x1A<<7 | 0x01,\n\t23665 - 19968: jis0208<<14 | 0x1A<<7 | 0x12,\n\t23668 - 19968: jis0212<<14 | 0x1A<<7 | 0x02,\n\t23669 - 19968: jis0212<<14 | 0x1A<<7 | 0x03,\n\t23670 - 19968: jis0208<<14 | 0x35<<7 | 0x06,\n\t23673 - 19968: jis0208<<14 | 0x35<<7 | 0x07,\n\t23674 - 19968: jis0212<<14 | 0x1A<<7 | 0x04,\n\t23675 - 19968: jis0212<<14 | 0x1A<<7 | 0x05,\n\t23676 - 19968: jis0212<<14 | 0x1A<<7 | 0x06,\n\t23677 - 19968: jis0212<<14 | 0x1A<<7 | 0x07,\n\t23687 - 19968: jis0212<<14 | 0x1A<<7 | 0x08,\n\t23688 - 19968: jis0212<<14 | 0x1A<<7 | 0x09,\n\t23690 - 19968: jis0212<<14 | 0x1A<<7 | 0x0A,\n\t23692 - 19968: jis0208<<14 | 0x35<<7 | 0x08,\n\t23695 - 19968: jis0212<<14 | 0x1A<<7 | 0x0B,\n\t23696 - 19968: jis0208<<14 | 0x13<<7 | 0x53,\n\t23697 - 19968: jis0208<<14 | 0x35<<7 | 0x09,\n\t23698 - 19968: jis0212<<14 | 0x1A<<7 | 0x0C,\n\t23700 - 19968: jis0208<<14 | 0x35<<7 | 0x0A,\n\t23709 - 19968: jis0212<<14 | 0x1A<<7 | 0x0D,\n\t23711 - 19968: jis0212<<14 | 0x1A<<7 | 0x0E,\n\t23712 - 19968: jis0212<<14 | 0x1A<<7 | 0x0F,\n\t23713 - 19968: jis0208<<14 | 0x11<<7 | 0x0B,\n\t23714 - 19968: jis0212<<14 | 0x1A<<7 | 0x10,\n\t23715 - 19968: jis0212<<14 | 0x1A<<7 | 0x11,\n\t23718 - 19968: jis0208<<14 | 0x58<<7 | 0x4F,\n\t23720 - 19968: jis0208<<14 | 0x20<<7 | 0x1A,\n\t23721 - 19968: jis0208<<14 | 0x13<<7 | 0x43,\n\t23722 - 19968: jis0212<<14 | 0x1A<<7 | 0x13,\n\t23723 - 19968: jis0208<<14 | 0x35<<7 | 0x0C,\n\t23724 - 19968: jis0208<<14 | 0x2B<<7 | 0x07,\n\t23729 - 19968: jis0208<<14 | 0x21<<7 | 0x31,\n\t23730 - 19968: jis0212<<14 | 0x1A<<7 | 0x14,\n\t23731 - 19968: jis0208<<14 | 0x12<<7 | 0x38,\n\t23732 - 19968: jis0212<<14 | 0x1A<<7 | 0x15,\n\t23733 - 19968: jis0212<<14 | 0x1A<<7 | 0x16,\n\t23734 - 19968: jis0208<<14 | 0x35<<7 | 0x0E,\n\t23735 - 19968: jis0208<<14 | 0x35<<7 | 0x10,\n\t23736 - 19968: jis0208<<14 | 0x13<<7 | 0x3E,\n\t23738 - 19968: jis0208<<14 | 0x58<<7 | 0x50,\n\t23739 - 19968: jis0208<<14 | 0x35<<7 | 0x0D,\n\t23740 - 19968: jis0208<<14 | 0x35<<7 | 0x0F,\n\t23742 - 19968: jis0208<<14 | 0x35<<7 | 0x12,\n\t23749 - 19968: jis0208<<14 | 0x35<<7 | 0x11,\n\t23751 - 19968: jis0208<<14 | 0x35<<7 | 0x13,\n\t23753 - 19968: jis0212<<14 | 0x1A<<7 | 0x18,\n\t23755 - 19968: jis0212<<14 | 0x1A<<7 | 0x19,\n\t23762 - 19968: jis0212<<14 | 0x1A<<7 | 0x1A,\n\t23767 - 19968: jis0212<<14 | 0x1A<<7 | 0x1C,\n\t23769 - 19968: jis0208<<14 | 0x35<<7 | 0x14,\n\t23773 - 19968: jis0212<<14 | 0x1A<<7 | 0x1B,\n\t23776 - 19968: jis0208<<14 | 0x25<<7 | 0x1C,\n\t23777 - 19968: jis0208<<14 | 0x15<<7 | 0x0D,\n\t23784 - 19968: jis0208<<14 | 0x11<<7 | 0x44,\n\t23785 - 19968: jis0208<<14 | 0x35<<7 | 0x15,\n\t23786 - 19968: jis0208<<14 | 0x35<<7 | 0x1A,\n\t23789 - 19968: jis0208<<14 | 0x35<<7 | 0x18,\n\t23790 - 19968: jis0212<<14 | 0x1A<<7 | 0x1D,\n\t23791 - 19968: jis0208<<14 | 0x29<<7 | 0x56,\n\t23792 - 19968: jis0208<<14 | 0x29<<7 | 0x55,\n\t23793 - 19968: jis0212<<14 | 0x1A<<7 | 0x1E,\n\t23794 - 19968: jis0212<<14 | 0x1A<<7 | 0x1F,\n\t23796 - 19968: jis0212<<14 | 0x1A<<7 | 0x20,\n\t23797 - 19968: jis0208<<14 | 0x58<<7 | 0x51,\n\t23798 - 19968: jis0208<<14 | 0x24<<7 | 0x46,\n\t23802 - 19968: jis0208<<14 | 0x35<<7 | 0x17,\n\t23803 - 19968: jis0208<<14 | 0x1C<<7 | 0x33,\n\t23805 - 19968: jis0208<<14 | 0x35<<7 | 0x16,\n\t23809 - 19968: jis0212<<14 | 0x1A<<7 | 0x21,\n\t23814 - 19968: jis0212<<14 | 0x1A<<7 | 0x22,\n\t23815 - 19968: jis0208<<14 | 0x1E<<7 | 0x51,\n\t23819 - 19968: jis0208<<14 | 0x35<<7 | 0x1B,\n\t23821 - 19968: jis0212<<14 | 0x1A<<7 | 0x23,\n\t23822 - 19968: jis0208<<14 | 0x19<<7 | 0x49,\n\t23825 - 19968: jis0208<<14 | 0x35<<7 | 0x21,\n\t23826 - 19968: jis0212<<14 | 0x1A<<7 | 0x24,\n\t23828 - 19968: jis0208<<14 | 0x35<<7 | 0x22,\n\t23829 - 19968: jis0208<<14 | 0x35<<7 | 0x1C,\n\t23830 - 19968: jis0208<<14 | 0x12<<7 | 0x12,\n\t23831 - 19968: jis0208<<14 | 0x35<<7 | 0x1D,\n\t23832 - 19968: jis0208<<14 | 0x35<<7 | 0x26,\n\t23833 - 19968: jis0208<<14 | 0x35<<7 | 0x25,\n\t23834 - 19968: jis0208<<14 | 0x35<<7 | 0x24,\n\t23835 - 19968: jis0208<<14 | 0x35<<7 | 0x20,\n\t23839 - 19968: jis0208<<14 | 0x35<<7 | 0x1F,\n\t23842 - 19968: jis0208<<14 | 0x35<<7 | 0x23,\n\t23843 - 19968: jis0212<<14 | 0x1A<<7 | 0x26,\n\t23844 - 19968: jis0212<<14 | 0x1A<<7 | 0x27,\n\t23846 - 19968: jis0212<<14 | 0x1A<<7 | 0x28,\n\t23847 - 19968: jis0208<<14 | 0x58<<7 | 0x52,\n\t23849 - 19968: jis0208<<14 | 0x29<<7 | 0x57,\n\t23851 - 19968: jis0212<<14 | 0x1A<<7 | 0x25,\n\t23857 - 19968: jis0212<<14 | 0x1A<<7 | 0x2A,\n\t23860 - 19968: jis0212<<14 | 0x1A<<7 | 0x2B,\n\t23865 - 19968: jis0212<<14 | 0x1A<<7 | 0x2C,\n\t23869 - 19968: jis0212<<14 | 0x1A<<7 | 0x2D,\n\t23871 - 19968: jis0212<<14 | 0x1A<<7 | 0x2E,\n\t23874 - 19968: jis0208<<14 | 0x58<<7 | 0x55,\n\t23875 - 19968: jis0212<<14 | 0x1A<<7 | 0x30,\n\t23878 - 19968: jis0212<<14 | 0x1A<<7 | 0x31,\n\t23880 - 19968: jis0212<<14 | 0x1A<<7 | 0x32,\n\t23882 - 19968: jis0212<<14 | 0x1A<<7 | 0x36,\n\t23883 - 19968: jis0208<<14 | 0x35<<7 | 0x2A,\n\t23884 - 19968: jis0208<<14 | 0x35<<7 | 0x27,\n\t23886 - 19968: jis0208<<14 | 0x35<<7 | 0x29,\n\t23888 - 19968: jis0208<<14 | 0x2C<<7 | 0x51,\n\t23889 - 19968: jis0212<<14 | 0x1A<<7 | 0x34,\n\t23890 - 19968: jis0208<<14 | 0x35<<7 | 0x28,\n\t23891 - 19968: jis0208<<14 | 0x58<<7 | 0x53,\n\t23893 - 19968: jis0212<<14 | 0x1A<<7 | 0x33,\n\t23897 - 19968: jis0212<<14 | 0x1A<<7 | 0x35,\n\t23900 - 19968: jis0208<<14 | 0x35<<7 | 0x1E,\n\t23903 - 19968: jis0212<<14 | 0x1A<<7 | 0x37,\n\t23904 - 19968: jis0212<<14 | 0x1A<<7 | 0x38,\n\t23905 - 19968: jis0212<<14 | 0x1A<<7 | 0x39,\n\t23906 - 19968: jis0212<<14 | 0x1A<<7 | 0x3A,\n\t23908 - 19968: jis0212<<14 | 0x1A<<7 | 0x3B,\n\t23913 - 19968: jis0208<<14 | 0x1E<<7 | 0x52,\n\t23914 - 19968: jis0212<<14 | 0x1A<<7 | 0x3C,\n\t23916 - 19968: jis0208<<14 | 0x35<<7 | 0x2B,\n\t23917 - 19968: jis0208<<14 | 0x58<<7 | 0x56,\n\t23919 - 19968: jis0208<<14 | 0x19<<7 | 0x16,\n\t23920 - 19968: jis0212<<14 | 0x1A<<7 | 0x3E,\n\t23923 - 19968: jis0208<<14 | 0x35<<7 | 0x2C,\n\t23926 - 19968: jis0208<<14 | 0x35<<7 | 0x2D,\n\t23929 - 19968: jis0212<<14 | 0x1A<<7 | 0x3F,\n\t23930 - 19968: jis0212<<14 | 0x1A<<7 | 0x40,\n\t23934 - 19968: jis0212<<14 | 0x1A<<7 | 0x41,\n\t23935 - 19968: jis0212<<14 | 0x1A<<7 | 0x42,\n\t23937 - 19968: jis0212<<14 | 0x1A<<7 | 0x43,\n\t23938 - 19968: jis0208<<14 | 0x35<<7 | 0x30,\n\t23939 - 19968: jis0212<<14 | 0x1A<<7 | 0x44,\n\t23940 - 19968: jis0208<<14 | 0x35<<7 | 0x2F,\n\t23943 - 19968: jis0208<<14 | 0x35<<7 | 0x2E,\n\t23944 - 19968: jis0212<<14 | 0x1A<<7 | 0x45,\n\t23946 - 19968: jis0212<<14 | 0x1A<<7 | 0x46,\n\t23947 - 19968: jis0208<<14 | 0x24<<7 | 0x47,\n\t23948 - 19968: jis0208<<14 | 0x35<<7 | 0x19,\n\t23952 - 19968: jis0208<<14 | 0x35<<7 | 0x36,\n\t23954 - 19968: jis0212<<14 | 0x1A<<7 | 0x47,\n\t23955 - 19968: jis0212<<14 | 0x1A<<7 | 0x48,\n\t23956 - 19968: jis0212<<14 | 0x1A<<7 | 0x49,\n\t23957 - 19968: jis0212<<14 | 0x1A<<7 | 0x4A,\n\t23961 - 19968: jis0212<<14 | 0x1A<<7 | 0x4B,\n\t23963 - 19968: jis0212<<14 | 0x1A<<7 | 0x4C,\n\t23965 - 19968: jis0208<<14 | 0x35<<7 | 0x32,\n\t23967 - 19968: jis0212<<14 | 0x1A<<7 | 0x4D,\n\t23968 - 19968: jis0212<<14 | 0x1A<<7 | 0x4E,\n\t23970 - 19968: jis0208<<14 | 0x35<<7 | 0x31,\n\t23975 - 19968: jis0212<<14 | 0x1A<<7 | 0x4F,\n\t23979 - 19968: jis0212<<14 | 0x1A<<7 | 0x50,\n\t23980 - 19968: jis0208<<14 | 0x35<<7 | 0x33,\n\t23982 - 19968: jis0208<<14 | 0x35<<7 | 0x34,\n\t23984 - 19968: jis0212<<14 | 0x1A<<7 | 0x51,\n\t23986 - 19968: jis0212<<14 | 0x45<<7 | 0x53,\n\t23988 - 19968: jis0212<<14 | 0x1A<<7 | 0x52,\n\t23991 - 19968: jis0208<<14 | 0x35<<7 | 0x37,\n\t23992 - 19968: jis0208<<14 | 0x58<<7 | 0x57,\n\t23993 - 19968: jis0208<<14 | 0x58<<7 | 0x58,\n\t23994 - 19968: jis0208<<14 | 0x2D<<7 | 0x45,\n\t23996 - 19968: jis0208<<14 | 0x35<<7 | 0x38,\n\t23997 - 19968: jis0208<<14 | 0x35<<7 | 0x35,\n\t24003 - 19968: jis0212<<14 | 0x1A<<7 | 0x55,\n\t24007 - 19968: jis0212<<14 | 0x1A<<7 | 0x56,\n\t24009 - 19968: jis0208<<14 | 0x35<<7 | 0x39,\n\t24011 - 19968: jis0212<<14 | 0x1A<<7 | 0x57,\n\t24012 - 19968: jis0208<<14 | 0x13<<7 | 0x3F,\n\t24013 - 19968: jis0208<<14 | 0x35<<7 | 0x3A,\n\t24014 - 19968: jis0212<<14 | 0x1A<<7 | 0x59,\n\t24016 - 19968: jis0208<<14 | 0x58<<7 | 0x59,\n\t24018 - 19968: jis0208<<14 | 0x35<<7 | 0x3C,\n\t24019 - 19968: jis0208<<14 | 0x35<<7 | 0x3B,\n\t24022 - 19968: jis0208<<14 | 0x35<<7 | 0x3D,\n\t24024 - 19968: jis0212<<14 | 0x1A<<7 | 0x5A,\n\t24025 - 19968: jis0212<<14 | 0x1A<<7 | 0x5B,\n\t24027 - 19968: jis0208<<14 | 0x35<<7 | 0x3E,\n\t24029 - 19968: jis0208<<14 | 0x1F<<7 | 0x4D,\n\t24030 - 19968: jis0208<<14 | 0x1C<<7 | 0x02,\n\t24032 - 19968: jis0212<<14 | 0x1A<<7 | 0x5C,\n\t24033 - 19968: jis0208<<14 | 0x1C<<7 | 0x43,\n\t24035 - 19968: jis0208<<14 | 0x20<<7 | 0x42,\n\t24036 - 19968: jis0212<<14 | 0x1A<<7 | 0x5D,\n\t24037 - 19968: jis0208<<14 | 0x18<<7 | 0x08,\n\t24038 - 19968: jis0208<<14 | 0x19<<7 | 0x17,\n\t24039 - 19968: jis0208<<14 | 0x18<<7 | 0x09,\n\t24040 - 19968: jis0208<<14 | 0x14<<7 | 0x4F,\n\t24041 - 19968: jis0212<<14 | 0x1B<<7 | 0x00,\n\t24043 - 19968: jis0208<<14 | 0x35<<7 | 0x3F,\n\t24046 - 19968: jis0208<<14 | 0x19<<7 | 0x18,\n\t24049 - 19968: jis0208<<14 | 0x17<<7 | 0x29,\n\t24050 - 19968: jis0208<<14 | 0x35<<7 | 0x40,\n\t24051 - 19968: jis0208<<14 | 0x2B<<7 | 0x05,\n\t24052 - 19968: jis0208<<14 | 0x26<<7 | 0x22,\n\t24053 - 19968: jis0208<<14 | 0x35<<7 | 0x41,\n\t24055 - 19968: jis0208<<14 | 0x18<<7 | 0x0A,\n\t24056 - 19968: jis0212<<14 | 0x1B<<7 | 0x01,\n\t24057 - 19968: jis0212<<14 | 0x1B<<7 | 0x02,\n\t24059 - 19968: jis0208<<14 | 0x13<<7 | 0x0B,\n\t24061 - 19968: jis0208<<14 | 0x22<<7 | 0x06,\n\t24062 - 19968: jis0208<<14 | 0x15<<7 | 0x31,\n\t24064 - 19968: jis0212<<14 | 0x1B<<7 | 0x03,\n\t24066 - 19968: jis0208<<14 | 0x1A<<7 | 0x33,\n\t24067 - 19968: jis0208<<14 | 0x28<<7 | 0x3A,\n\t24070 - 19968: jis0208<<14 | 0x27<<7 | 0x20,\n\t24071 - 19968: jis0212<<14 | 0x1B<<7 | 0x04,\n\t24075 - 19968: jis0208<<14 | 0x35<<7 | 0x42,\n\t24076 - 19968: jis0208<<14 | 0x13<<7 | 0x54,\n\t24077 - 19968: jis0212<<14 | 0x1B<<7 | 0x05,\n\t24081 - 19968: jis0208<<14 | 0x35<<7 | 0x45,\n\t24082 - 19968: jis0212<<14 | 0x1B<<7 | 0x06,\n\t24084 - 19968: jis0212<<14 | 0x1B<<7 | 0x07,\n\t24085 - 19968: jis0212<<14 | 0x1B<<7 | 0x08,\n\t24086 - 19968: jis0208<<14 | 0x23<<7 | 0x00,\n\t24088 - 19968: jis0212<<14 | 0x1B<<7 | 0x09,\n\t24089 - 19968: jis0208<<14 | 0x35<<7 | 0x44,\n\t24090 - 19968: jis0208<<14 | 0x35<<7 | 0x43,\n\t24091 - 19968: jis0208<<14 | 0x35<<7 | 0x46,\n\t24093 - 19968: jis0208<<14 | 0x23<<7 | 0x4A,\n\t24095 - 19968: jis0212<<14 | 0x1B<<7 | 0x0A,\n\t24096 - 19968: jis0212<<14 | 0x1B<<7 | 0x0B,\n\t24101 - 19968: jis0208<<14 | 0x1E<<7 | 0x42,\n\t24104 - 19968: jis0212<<14 | 0x1B<<7 | 0x0D,\n\t24107 - 19968: jis0208<<14 | 0x1A<<7 | 0x34,\n\t24109 - 19968: jis0208<<14 | 0x1F<<7 | 0x29,\n\t24110 - 19968: jis0212<<14 | 0x1B<<7 | 0x0C,\n\t24111 - 19968: jis0208<<14 | 0x21<<7 | 0x32,\n\t24112 - 19968: jis0208<<14 | 0x14<<7 | 0x01,\n\t24114 - 19968: jis0212<<14 | 0x1B<<7 | 0x0E,\n\t24115 - 19968: jis0208<<14 | 0x23<<7 | 0x01,\n\t24117 - 19968: jis0212<<14 | 0x1B<<7 | 0x0F,\n\t24118 - 19968: jis0208<<14 | 0x35<<7 | 0x47,\n\t24119 - 19968: jis0208<<14 | 0x35<<7 | 0x48,\n\t24120 - 19968: jis0208<<14 | 0x1D<<7 | 0x4E,\n\t24125 - 19968: jis0208<<14 | 0x2A<<7 | 0x18,\n\t24126 - 19968: jis0212<<14 | 0x1B<<7 | 0x10,\n\t24128 - 19968: jis0208<<14 | 0x35<<7 | 0x4B,\n\t24131 - 19968: jis0208<<14 | 0x35<<7 | 0x4A,\n\t24132 - 19968: jis0208<<14 | 0x35<<7 | 0x49,\n\t24133 - 19968: jis0208<<14 | 0x28<<7 | 0x5C,\n\t24135 - 19968: jis0208<<14 | 0x35<<7 | 0x52,\n\t24137 - 19968: jis0212<<14 | 0x1B<<7 | 0x13,\n\t24139 - 19968: jis0212<<14 | 0x1B<<7 | 0x11,\n\t24140 - 19968: jis0208<<14 | 0x2A<<7 | 0x39,\n\t24142 - 19968: jis0208<<14 | 0x35<<7 | 0x4C,\n\t24144 - 19968: jis0212<<14 | 0x1B<<7 | 0x12,\n\t24145 - 19968: jis0212<<14 | 0x1B<<7 | 0x14,\n\t24148 - 19968: jis0208<<14 | 0x35<<7 | 0x4E,\n\t24149 - 19968: jis0208<<14 | 0x2A<<7 | 0x4A,\n\t24150 - 19968: jis0212<<14 | 0x1B<<7 | 0x15,\n\t24151 - 19968: jis0208<<14 | 0x35<<7 | 0x4D,\n\t24152 - 19968: jis0212<<14 | 0x1B<<7 | 0x16,\n\t24155 - 19968: jis0212<<14 | 0x1B<<7 | 0x17,\n\t24156 - 19968: jis0212<<14 | 0x1B<<7 | 0x18,\n\t24158 - 19968: jis0212<<14 | 0x1B<<7 | 0x19,\n\t24159 - 19968: jis0208<<14 | 0x35<<7 | 0x4F,\n\t24161 - 19968: jis0208<<14 | 0x27<<7 | 0x07,\n\t24162 - 19968: jis0208<<14 | 0x35<<7 | 0x50,\n\t24163 - 19968: jis0208<<14 | 0x29<<7 | 0x1D,\n\t24164 - 19968: jis0208<<14 | 0x35<<7 | 0x51,\n\t24168 - 19968: jis0212<<14 | 0x1B<<7 | 0x1A,\n\t24170 - 19968: jis0212<<14 | 0x1B<<7 | 0x1B,\n\t24171 - 19968: jis0212<<14 | 0x1B<<7 | 0x1C,\n\t24172 - 19968: jis0212<<14 | 0x1B<<7 | 0x1D,\n\t24173 - 19968: jis0212<<14 | 0x1B<<7 | 0x1E,\n\t24174 - 19968: jis0212<<14 | 0x1B<<7 | 0x1F,\n\t24176 - 19968: jis0212<<14 | 0x1B<<7 | 0x20,\n\t24178 - 19968: jis0208<<14 | 0x13<<7 | 0x12,\n\t24179 - 19968: jis0208<<14 | 0x29<<7 | 0x1E,\n\t24180 - 19968: jis0208<<14 | 0x26<<7 | 0x0E,\n\t24181 - 19968: jis0208<<14 | 0x35<<7 | 0x53,\n\t24182 - 19968: jis0208<<14 | 0x35<<7 | 0x54,\n\t24184 - 19968: jis0208<<14 | 0x18<<7 | 0x0B,\n\t24185 - 19968: jis0208<<14 | 0x13<<7 | 0x13,\n\t24186 - 19968: jis0208<<14 | 0x35<<7 | 0x55,\n\t24187 - 19968: jis0208<<14 | 0x17<<7 | 0x17,\n\t24188 - 19968: jis0208<<14 | 0x2C<<7 | 0x23,\n\t24189 - 19968: jis0208<<14 | 0x2C<<7 | 0x08,\n\t24190 - 19968: jis0208<<14 | 0x13<<7 | 0x55,\n\t24191 - 19968: jis0208<<14 | 0x35<<7 | 0x57,\n\t24192 - 19968: jis0212<<14 | 0x1B<<7 | 0x21,\n\t24193 - 19968: jis0208<<14 | 0x23<<7 | 0x02,\n\t24195 - 19968: jis0208<<14 | 0x18<<7 | 0x0C,\n\t24196 - 19968: jis0208<<14 | 0x1D<<7 | 0x10,\n\t24199 - 19968: jis0208<<14 | 0x27<<7 | 0x3E,\n\t24202 - 19968: jis0208<<14 | 0x1D<<7 | 0x11,\n\t24203 - 19968: jis0212<<14 | 0x1B<<7 | 0x22,\n\t24206 - 19968: jis0212<<14 | 0x1B<<7 | 0x23,\n\t24207 - 19968: jis0208<<14 | 0x1C<<7 | 0x57,\n\t24213 - 19968: jis0208<<14 | 0x23<<7 | 0x4B,\n\t24214 - 19968: jis0208<<14 | 0x29<<7 | 0x58,\n\t24215 - 19968: jis0208<<14 | 0x24<<7 | 0x18,\n\t24218 - 19968: jis0208<<14 | 0x18<<7 | 0x0D,\n\t24220 - 19968: jis0208<<14 | 0x28<<7 | 0x3B,\n\t24224 - 19968: jis0208<<14 | 0x35<<7 | 0x58,\n\t24226 - 19968: jis0212<<14 | 0x1B<<7 | 0x24,\n\t24228 - 19968: jis0212<<14 | 0x1B<<7 | 0x25,\n\t24229 - 19968: jis0212<<14 | 0x1B<<7 | 0x26,\n\t24230 - 19968: jis0208<<14 | 0x24<<7 | 0x38,\n\t24231 - 19968: jis0208<<14 | 0x19<<7 | 0x21,\n\t24232 - 19968: jis0212<<14 | 0x1B<<7 | 0x27,\n\t24234 - 19968: jis0212<<14 | 0x1B<<7 | 0x28,\n\t24235 - 19968: jis0208<<14 | 0x17<<7 | 0x2A,\n\t24236 - 19968: jis0212<<14 | 0x1B<<7 | 0x29,\n\t24237 - 19968: jis0208<<14 | 0x23<<7 | 0x4C,\n\t24241 - 19968: jis0212<<14 | 0x1B<<7 | 0x2A,\n\t24243 - 19968: jis0212<<14 | 0x1B<<7 | 0x2B,\n\t24245 - 19968: jis0208<<14 | 0x0F<<7 | 0x22,\n\t24246 - 19968: jis0208<<14 | 0x1C<<7 | 0x4D,\n\t24247 - 19968: jis0208<<14 | 0x18<<7 | 0x0E,\n\t24248 - 19968: jis0208<<14 | 0x2C<<7 | 0x26,\n\t24253 - 19968: jis0212<<14 | 0x1B<<7 | 0x2C,\n\t24254 - 19968: jis0212<<14 | 0x1B<<7 | 0x2D,\n\t24255 - 19968: jis0212<<14 | 0x1B<<7 | 0x2E,\n\t24257 - 19968: jis0208<<14 | 0x35<<7 | 0x59,\n\t24258 - 19968: jis0208<<14 | 0x35<<7 | 0x5A,\n\t24259 - 19968: jis0208<<14 | 0x26<<7 | 0x30,\n\t24262 - 19968: jis0212<<14 | 0x1B<<7 | 0x2F,\n\t24264 - 19968: jis0208<<14 | 0x35<<7 | 0x5B,\n\t24265 - 19968: jis0208<<14 | 0x2D<<7 | 0x56,\n\t24266 - 19968: jis0208<<14 | 0x2E<<7 | 0x0C,\n\t24267 - 19968: jis0212<<14 | 0x1B<<7 | 0x31,\n\t24268 - 19968: jis0212<<14 | 0x1B<<7 | 0x30,\n\t24270 - 19968: jis0212<<14 | 0x1B<<7 | 0x32,\n\t24271 - 19968: jis0208<<14 | 0x35<<7 | 0x5D,\n\t24272 - 19968: jis0208<<14 | 0x35<<7 | 0x5C,\n\t24273 - 19968: jis0212<<14 | 0x1B<<7 | 0x33,\n\t24274 - 19968: jis0212<<14 | 0x1B<<7 | 0x34,\n\t24275 - 19968: jis0208<<14 | 0x12<<7 | 0x26,\n\t24276 - 19968: jis0212<<14 | 0x1B<<7 | 0x35,\n\t24277 - 19968: jis0212<<14 | 0x1B<<7 | 0x36,\n\t24278 - 19968: jis0208<<14 | 0x36<<7 | 0x00,\n\t24282 - 19968: jis0208<<14 | 0x36<<7 | 0x03,\n\t24283 - 19968: jis0208<<14 | 0x36<<7 | 0x04,\n\t24284 - 19968: jis0212<<14 | 0x1B<<7 | 0x37,\n\t24285 - 19968: jis0208<<14 | 0x36<<7 | 0x02,\n\t24286 - 19968: jis0212<<14 | 0x1B<<7 | 0x38,\n\t24287 - 19968: jis0208<<14 | 0x28<<7 | 0x1F,\n\t24288 - 19968: jis0208<<14 | 0x1D<<7 | 0x12,\n\t24289 - 19968: jis0208<<14 | 0x36<<7 | 0x06,\n\t24290 - 19968: jis0208<<14 | 0x36<<7 | 0x05,\n\t24291 - 19968: jis0208<<14 | 0x36<<7 | 0x01,\n\t24293 - 19968: jis0212<<14 | 0x1B<<7 | 0x39,\n\t24296 - 19968: jis0208<<14 | 0x36<<7 | 0x07,\n\t24297 - 19968: jis0208<<14 | 0x36<<7 | 0x08,\n\t24299 - 19968: jis0212<<14 | 0x1B<<7 | 0x3A,\n\t24300 - 19968: jis0208<<14 | 0x36<<7 | 0x09,\n\t24304 - 19968: jis0208<<14 | 0x36<<7 | 0x0C,\n\t24305 - 19968: jis0208<<14 | 0x36<<7 | 0x0A,\n\t24307 - 19968: jis0208<<14 | 0x36<<7 | 0x0B,\n\t24308 - 19968: jis0208<<14 | 0x36<<7 | 0x0D,\n\t24310 - 19968: jis0208<<14 | 0x10<<7 | 0x43,\n\t24311 - 19968: jis0208<<14 | 0x23<<7 | 0x4D,\n\t24312 - 19968: jis0208<<14 | 0x36<<7 | 0x0E,\n\t24314 - 19968: jis0208<<14 | 0x16<<7 | 0x59,\n\t24315 - 19968: jis0208<<14 | 0x11<<7 | 0x55,\n\t24316 - 19968: jis0208<<14 | 0x26<<7 | 0x15,\n\t24318 - 19968: jis0208<<14 | 0x36<<7 | 0x0F,\n\t24319 - 19968: jis0208<<14 | 0x25<<7 | 0x5A,\n\t24321 - 19968: jis0208<<14 | 0x29<<7 | 0x3A,\n\t24322 - 19968: jis0212<<14 | 0x1B<<7 | 0x3B,\n\t24323 - 19968: jis0208<<14 | 0x36<<7 | 0x10,\n\t24324 - 19968: jis0208<<14 | 0x2E<<7 | 0x0D,\n\t24326 - 19968: jis0212<<14 | 0x1B<<7 | 0x3C,\n\t24327 - 19968: jis0212<<14 | 0x1B<<7 | 0x3D,\n\t24328 - 19968: jis0212<<14 | 0x1B<<7 | 0x3E,\n\t24329 - 19968: jis0208<<14 | 0x36<<7 | 0x11,\n\t24330 - 19968: jis0208<<14 | 0x29<<7 | 0x1F,\n\t24331 - 19968: jis0208<<14 | 0x36<<7 | 0x14,\n\t24332 - 19968: jis0208<<14 | 0x2F<<7 | 0x00,\n\t24333 - 19968: jis0208<<14 | 0x2F<<7 | 0x10,\n\t24334 - 19968: jis0212<<14 | 0x1B<<7 | 0x3F,\n\t24335 - 19968: jis0208<<14 | 0x1B<<7 | 0x0F,\n\t24336 - 19968: jis0208<<14 | 0x25<<7 | 0x54,\n\t24337 - 19968: jis0208<<14 | 0x36<<7 | 0x15,\n\t24339 - 19968: jis0208<<14 | 0x14<<7 | 0x3C,\n\t24340 - 19968: jis0208<<14 | 0x23<<7 | 0x03,\n\t24341 - 19968: jis0208<<14 | 0x0F<<7 | 0x59,\n\t24342 - 19968: jis0208<<14 | 0x36<<7 | 0x16,\n\t24343 - 19968: jis0208<<14 | 0x29<<7 | 0x05,\n\t24344 - 19968: jis0208<<14 | 0x18<<7 | 0x0F,\n\t24345 - 19968: jis0212<<14 | 0x1B<<7 | 0x40,\n\t24347 - 19968: jis0208<<14 | 0x22<<7 | 0x2F,\n\t24348 - 19968: jis0212<<14 | 0x1B<<7 | 0x41,\n\t24349 - 19968: jis0212<<14 | 0x1B<<7 | 0x42,\n\t24351 - 19968: jis0208<<14 | 0x23<<7 | 0x4E,\n\t24353 - 19968: jis0208<<14 | 0x58<<7 | 0x5A,\n\t24354 - 19968: jis0212<<14 | 0x1B<<7 | 0x44,\n\t24355 - 19968: jis0212<<14 | 0x1B<<7 | 0x45,\n\t24356 - 19968: jis0212<<14 | 0x1B<<7 | 0x46,\n\t24357 - 19968: jis0208<<14 | 0x2B<<7 | 0x4E,\n\t24358 - 19968: jis0208<<14 | 0x17<<7 | 0x18,\n\t24359 - 19968: jis0208<<14 | 0x17<<7 | 0x2B,\n\t24360 - 19968: jis0212<<14 | 0x1B<<7 | 0x47,\n\t24361 - 19968: jis0208<<14 | 0x36<<7 | 0x17,\n\t24363 - 19968: jis0212<<14 | 0x1B<<7 | 0x48,\n\t24364 - 19968: jis0212<<14 | 0x1B<<7 | 0x49,\n\t24365 - 19968: jis0208<<14 | 0x36<<7 | 0x18,\n\t24366 - 19968: jis0212<<14 | 0x1B<<7 | 0x4A,\n\t24367 - 19968: jis0208<<14 | 0x36<<7 | 0x1E,\n\t24368 - 19968: jis0212<<14 | 0x1B<<7 | 0x4B,\n\t24369 - 19968: jis0208<<14 | 0x1B<<7 | 0x44,\n\t24372 - 19968: jis0208<<14 | 0x58<<7 | 0x5B,\n\t24373 - 19968: jis0208<<14 | 0x23<<7 | 0x04,\n\t24374 - 19968: jis0212<<14 | 0x1B<<7 | 0x4D,\n\t24375 - 19968: jis0208<<14 | 0x15<<7 | 0x0E,\n\t24376 - 19968: jis0208<<14 | 0x36<<7 | 0x19,\n\t24379 - 19968: jis0212<<14 | 0x1B<<7 | 0x4E,\n\t24380 - 19968: jis0208<<14 | 0x28<<7 | 0x0A,\n\t24381 - 19968: jis0212<<14 | 0x1B<<7 | 0x4F,\n\t24382 - 19968: jis0208<<14 | 0x22<<7 | 0x25,\n\t24383 - 19968: jis0212<<14 | 0x1B<<7 | 0x50,\n\t24384 - 19968: jis0212<<14 | 0x1B<<7 | 0x51,\n\t24385 - 19968: jis0208<<14 | 0x36<<7 | 0x1A,\n\t24388 - 19968: jis0212<<14 | 0x1B<<7 | 0x52,\n\t24389 - 19968: jis0208<<14 | 0x58<<7 | 0x0B,\n\t24391 - 19968: jis0212<<14 | 0x1B<<7 | 0x54,\n\t24392 - 19968: jis0208<<14 | 0x36<<7 | 0x1B,\n\t24394 - 19968: jis0208<<14 | 0x15<<7 | 0x0F,\n\t24396 - 19968: jis0208<<14 | 0x36<<7 | 0x1C,\n\t24397 - 19968: jis0212<<14 | 0x1B<<7 | 0x55,\n\t24398 - 19968: jis0208<<14 | 0x36<<7 | 0x1D,\n\t24400 - 19968: jis0212<<14 | 0x1B<<7 | 0x56,\n\t24401 - 19968: jis0208<<14 | 0x36<<7 | 0x1F,\n\t24403 - 19968: jis0208<<14 | 0x24<<7 | 0x55,\n\t24404 - 19968: jis0212<<14 | 0x1B<<7 | 0x57,\n\t24406 - 19968: jis0208<<14 | 0x36<<7 | 0x20,\n\t24407 - 19968: jis0208<<14 | 0x36<<7 | 0x21,\n\t24408 - 19968: jis0212<<14 | 0x1B<<7 | 0x58,\n\t24409 - 19968: jis0208<<14 | 0x36<<7 | 0x22,\n\t24411 - 19968: jis0212<<14 | 0x1B<<7 | 0x59,\n\t24412 - 19968: jis0208<<14 | 0x36<<7 | 0x13,\n\t24413 - 19968: jis0208<<14 | 0x36<<7 | 0x12,\n\t24416 - 19968: jis0212<<14 | 0x1B<<7 | 0x5A,\n\t24417 - 19968: jis0208<<14 | 0x36<<7 | 0x23,\n\t24418 - 19968: jis0208<<14 | 0x16<<7 | 0x20,\n\t24419 - 19968: jis0212<<14 | 0x1B<<7 | 0x5B,\n\t24420 - 19968: jis0212<<14 | 0x1B<<7 | 0x5C,\n\t24422 - 19968: jis0208<<14 | 0x28<<7 | 0x06,\n\t24423 - 19968: jis0208<<14 | 0x58<<7 | 0x5C,\n\t24425 - 19968: jis0208<<14 | 0x19<<7 | 0x2B,\n\t24426 - 19968: jis0208<<14 | 0x28<<7 | 0x16,\n\t24427 - 19968: jis0208<<14 | 0x23<<7 | 0x05,\n\t24428 - 19968: jis0208<<14 | 0x28<<7 | 0x2A,\n\t24429 - 19968: jis0208<<14 | 0x36<<7 | 0x24,\n\t24431 - 19968: jis0212<<14 | 0x1C<<7 | 0x00,\n\t24432 - 19968: jis0208<<14 | 0x1D<<7 | 0x13,\n\t24433 - 19968: jis0208<<14 | 0x10<<7 | 0x25,\n\t24434 - 19968: jis0212<<14 | 0x1C<<7 | 0x01,\n\t24435 - 19968: jis0208<<14 | 0x36<<7 | 0x25,\n\t24436 - 19968: jis0212<<14 | 0x1C<<7 | 0x02,\n\t24437 - 19968: jis0212<<14 | 0x1C<<7 | 0x03,\n\t24439 - 19968: jis0208<<14 | 0x36<<7 | 0x26,\n\t24440 - 19968: jis0212<<14 | 0x1C<<7 | 0x04,\n\t24441 - 19968: jis0208<<14 | 0x2B<<7 | 0x51,\n\t24442 - 19968: jis0212<<14 | 0x1C<<7 | 0x05,\n\t24444 - 19968: jis0208<<14 | 0x27<<7 | 0x3F,\n\t24445 - 19968: jis0212<<14 | 0x1C<<7 | 0x06,\n\t24446 - 19968: jis0212<<14 | 0x1C<<7 | 0x07,\n\t24447 - 19968: jis0208<<14 | 0x36<<7 | 0x29,\n\t24448 - 19968: jis0208<<14 | 0x10<<7 | 0x5C,\n\t24449 - 19968: jis0208<<14 | 0x1F<<7 | 0x0B,\n\t24450 - 19968: jis0208<<14 | 0x36<<7 | 0x28,\n\t24451 - 19968: jis0208<<14 | 0x36<<7 | 0x27,\n\t24452 - 19968: jis0208<<14 | 0x16<<7 | 0x21,\n\t24453 - 19968: jis0208<<14 | 0x21<<7 | 0x33,\n\t24455 - 19968: jis0208<<14 | 0x36<<7 | 0x2D,\n\t24456 - 19968: jis0208<<14 | 0x36<<7 | 0x2B,\n\t24457 - 19968: jis0212<<14 | 0x1C<<7 | 0x08,\n\t24458 - 19968: jis0208<<14 | 0x36<<7 | 0x2A,\n\t24459 - 19968: jis0208<<14 | 0x2D<<7 | 0x06,\n\t24460 - 19968: jis0208<<14 | 0x17<<7 | 0x44,\n\t24461 - 19968: jis0212<<14 | 0x1C<<7 | 0x09,\n\t24463 - 19968: jis0212<<14 | 0x1C<<7 | 0x0A,\n\t24464 - 19968: jis0208<<14 | 0x1C<<7 | 0x58,\n\t24465 - 19968: jis0208<<14 | 0x36<<7 | 0x2C,\n\t24466 - 19968: jis0208<<14 | 0x24<<7 | 0x2B,\n\t24467 - 19968: jis0208<<14 | 0x1C<<7 | 0x1D,\n\t24470 - 19968: jis0212<<14 | 0x1C<<7 | 0x0B,\n\t24471 - 19968: jis0208<<14 | 0x25<<7 | 0x1F,\n\t24472 - 19968: jis0208<<14 | 0x36<<7 | 0x30,\n\t24473 - 19968: jis0208<<14 | 0x36<<7 | 0x2F,\n\t24476 - 19968: jis0212<<14 | 0x1C<<7 | 0x0C,\n\t24477 - 19968: jis0212<<14 | 0x1C<<7 | 0x0D,\n\t24478 - 19968: jis0208<<14 | 0x36<<7 | 0x2E,\n\t24480 - 19968: jis0208<<14 | 0x36<<7 | 0x31,\n\t24481 - 19968: jis0208<<14 | 0x17<<7 | 0x45,\n\t24482 - 19968: jis0212<<14 | 0x1C<<7 | 0x0E,\n\t24484 - 19968: jis0212<<14 | 0x1C<<7 | 0x11,\n\t24487 - 19968: jis0212<<14 | 0x1C<<7 | 0x0F,\n\t24488 - 19968: jis0208<<14 | 0x36<<7 | 0x32,\n\t24489 - 19968: jis0208<<14 | 0x28<<7 | 0x5B,\n\t24490 - 19968: jis0208<<14 | 0x1C<<7 | 0x3A,\n\t24491 - 19968: jis0212<<14 | 0x1C<<7 | 0x10,\n\t24492 - 19968: jis0212<<14 | 0x1C<<7 | 0x12,\n\t24493 - 19968: jis0208<<14 | 0x36<<7 | 0x33,\n\t24494 - 19968: jis0208<<14 | 0x27<<7 | 0x58,\n\t24495 - 19968: jis0212<<14 | 0x1C<<7 | 0x13,\n\t24496 - 19968: jis0212<<14 | 0x1C<<7 | 0x14,\n\t24497 - 19968: jis0212<<14 | 0x1C<<7 | 0x15,\n\t24499 - 19968: jis0208<<14 | 0x25<<7 | 0x20,\n\t24500 - 19968: jis0208<<14 | 0x23<<7 | 0x06,\n\t24503 - 19968: jis0208<<14 | 0x58<<7 | 0x5D,\n\t24504 - 19968: jis0212<<14 | 0x1C<<7 | 0x16,\n\t24505 - 19968: jis0208<<14 | 0x24<<7 | 0x0F,\n\t24508 - 19968: jis0208<<14 | 0x36<<7 | 0x34,\n\t24509 - 19968: jis0208<<14 | 0x14<<7 | 0x0A,\n\t24515 - 19968: jis0208<<14 | 0x1E<<7 | 0x13,\n\t24516 - 19968: jis0212<<14 | 0x1C<<7 | 0x17,\n\t24517 - 19968: jis0208<<14 | 0x28<<7 | 0x0B,\n\t24519 - 19968: jis0212<<14 | 0x1C<<7 | 0x18,\n\t24520 - 19968: jis0212<<14 | 0x1C<<7 | 0x19,\n\t24521 - 19968: jis0212<<14 | 0x1C<<7 | 0x1A,\n\t24523 - 19968: jis0212<<14 | 0x1C<<7 | 0x1B,\n\t24524 - 19968: jis0208<<14 | 0x13<<7 | 0x56,\n\t24525 - 19968: jis0208<<14 | 0x26<<7 | 0x05,\n\t24528 - 19968: jis0212<<14 | 0x1C<<7 | 0x1C,\n\t24529 - 19968: jis0212<<14 | 0x1C<<7 | 0x1D,\n\t24530 - 19968: jis0212<<14 | 0x1C<<7 | 0x1E,\n\t24531 - 19968: jis0212<<14 | 0x1C<<7 | 0x1F,\n\t24532 - 19968: jis0212<<14 | 0x1C<<7 | 0x20,\n\t24534 - 19968: jis0208<<14 | 0x36<<7 | 0x35,\n\t24535 - 19968: jis0208<<14 | 0x1A<<7 | 0x35,\n\t24536 - 19968: jis0208<<14 | 0x2A<<7 | 0x19,\n\t24537 - 19968: jis0208<<14 | 0x2A<<7 | 0x1A,\n\t24540 - 19968: jis0208<<14 | 0x10<<7 | 0x5D,\n\t24541 - 19968: jis0208<<14 | 0x36<<7 | 0x3A,\n\t24542 - 19968: jis0208<<14 | 0x59<<7 | 0x00,\n\t24544 - 19968: jis0208<<14 | 0x22<<7 | 0x48,\n\t24545 - 19968: jis0212<<14 | 0x1C<<7 | 0x22,\n\t24546 - 19968: jis0212<<14 | 0x1C<<7 | 0x23,\n\t24548 - 19968: jis0208<<14 | 0x36<<7 | 0x37,\n\t24552 - 19968: jis0212<<14 | 0x1C<<7 | 0x24,\n\t24553 - 19968: jis0212<<14 | 0x1C<<7 | 0x25,\n\t24554 - 19968: jis0212<<14 | 0x1C<<7 | 0x26,\n\t24555 - 19968: jis0208<<14 | 0x11<<7 | 0x56,\n\t24556 - 19968: jis0212<<14 | 0x1C<<7 | 0x27,\n\t24557 - 19968: jis0212<<14 | 0x1C<<7 | 0x28,\n\t24558 - 19968: jis0212<<14 | 0x1C<<7 | 0x29,\n\t24559 - 19968: jis0212<<14 | 0x1C<<7 | 0x2A,\n\t24560 - 19968: jis0208<<14 | 0x37<<7 | 0x0C,\n\t24561 - 19968: jis0208<<14 | 0x36<<7 | 0x39,\n\t24562 - 19968: jis0212<<14 | 0x1C<<7 | 0x2B,\n\t24563 - 19968: jis0212<<14 | 0x1C<<7 | 0x2C,\n\t24565 - 19968: jis0208<<14 | 0x26<<7 | 0x0F,\n\t24566 - 19968: jis0212<<14 | 0x1C<<7 | 0x2D,\n\t24568 - 19968: jis0208<<14 | 0x36<<7 | 0x38,\n\t24570 - 19968: jis0212<<14 | 0x1C<<7 | 0x2E,\n\t24571 - 19968: jis0208<<14 | 0x36<<7 | 0x36,\n\t24572 - 19968: jis0212<<14 | 0x1C<<7 | 0x2F,\n\t24573 - 19968: jis0208<<14 | 0x18<<7 | 0x59,\n\t24575 - 19968: jis0208<<14 | 0x36<<7 | 0x3C,\n\t24583 - 19968: jis0212<<14 | 0x1C<<7 | 0x30,\n\t24586 - 19968: jis0212<<14 | 0x1C<<7 | 0x31,\n\t24589 - 19968: jis0212<<14 | 0x1C<<7 | 0x32,\n\t24590 - 19968: jis0208<<14 | 0x36<<7 | 0x42,\n\t24591 - 19968: jis0208<<14 | 0x36<<7 | 0x48,\n\t24592 - 19968: jis0208<<14 | 0x36<<7 | 0x40,\n\t24594 - 19968: jis0208<<14 | 0x24<<7 | 0x3B,\n\t24595 - 19968: jis0212<<14 | 0x1C<<7 | 0x33,\n\t24596 - 19968: jis0212<<14 | 0x1C<<7 | 0x34,\n\t24597 - 19968: jis0208<<14 | 0x36<<7 | 0x45,\n\t24598 - 19968: jis0208<<14 | 0x28<<7 | 0x3C,\n\t24599 - 19968: jis0212<<14 | 0x1C<<7 | 0x35,\n\t24600 - 19968: jis0212<<14 | 0x1C<<7 | 0x36,\n\t24601 - 19968: jis0208<<14 | 0x36<<7 | 0x3F,\n\t24602 - 19968: jis0212<<14 | 0x1C<<7 | 0x37,\n\t24603 - 19968: jis0208<<14 | 0x36<<7 | 0x44,\n\t24604 - 19968: jis0208<<14 | 0x2D<<7 | 0x46,\n\t24605 - 19968: jis0208<<14 | 0x1A<<7 | 0x36,\n\t24607 - 19968: jis0212<<14 | 0x1C<<7 | 0x38,\n\t24608 - 19968: jis0208<<14 | 0x21<<7 | 0x34,\n\t24609 - 19968: jis0208<<14 | 0x36<<7 | 0x3D,\n\t24612 - 19968: jis0212<<14 | 0x1C<<7 | 0x39,\n\t24613 - 19968: jis0208<<14 | 0x14<<7 | 0x3D,\n\t24614 - 19968: jis0208<<14 | 0x36<<7 | 0x47,\n\t24615 - 19968: jis0208<<14 | 0x1F<<7 | 0x0C,\n\t24616 - 19968: jis0208<<14 | 0x10<<7 | 0x44,\n\t24617 - 19968: jis0208<<14 | 0x36<<7 | 0x41,\n\t24618 - 19968: jis0208<<14 | 0x11<<7 | 0x57,\n\t24619 - 19968: jis0208<<14 | 0x36<<7 | 0x46,\n\t24621 - 19968: jis0212<<14 | 0x1C<<7 | 0x3A,\n\t24623 - 19968: jis0208<<14 | 0x15<<7 | 0x10,\n\t24625 - 19968: jis0208<<14 | 0x36<<7 | 0x43,\n\t24627 - 19968: jis0212<<14 | 0x1C<<7 | 0x3B,\n\t24629 - 19968: jis0212<<14 | 0x1C<<7 | 0x3C,\n\t24634 - 19968: jis0208<<14 | 0x36<<7 | 0x49,\n\t24640 - 19968: jis0212<<14 | 0x1C<<7 | 0x3D,\n\t24641 - 19968: jis0208<<14 | 0x36<<7 | 0x4B,\n\t24642 - 19968: jis0208<<14 | 0x36<<7 | 0x55,\n\t24643 - 19968: jis0208<<14 | 0x36<<7 | 0x53,\n\t24646 - 19968: jis0208<<14 | 0x36<<7 | 0x50,\n\t24647 - 19968: jis0212<<14 | 0x1C<<7 | 0x3E,\n\t24648 - 19968: jis0212<<14 | 0x1C<<7 | 0x3F,\n\t24649 - 19968: jis0212<<14 | 0x1C<<7 | 0x40,\n\t24650 - 19968: jis0208<<14 | 0x36<<7 | 0x4F,\n\t24651 - 19968: jis0208<<14 | 0x2D<<7 | 0x57,\n\t24652 - 19968: jis0212<<14 | 0x1C<<7 | 0x41,\n\t24653 - 19968: jis0208<<14 | 0x36<<7 | 0x51,\n\t24656 - 19968: jis0208<<14 | 0x15<<7 | 0x11,\n\t24657 - 19968: jis0212<<14 | 0x1C<<7 | 0x42,\n\t24658 - 19968: jis0208<<14 | 0x18<<7 | 0x10,\n\t24660 - 19968: jis0212<<14 | 0x1C<<7 | 0x43,\n\t24661 - 19968: jis0208<<14 | 0x1C<<7 | 0x59,\n\t24662 - 19968: jis0212<<14 | 0x1C<<7 | 0x44,\n\t24663 - 19968: jis0212<<14 | 0x1C<<7 | 0x45,\n\t24665 - 19968: jis0208<<14 | 0x36<<7 | 0x58,\n\t24666 - 19968: jis0208<<14 | 0x36<<7 | 0x4A,\n\t24669 - 19968: jis0208<<14 | 0x59<<7 | 0x01,\n\t24671 - 19968: jis0208<<14 | 0x36<<7 | 0x4E,\n\t24672 - 19968: jis0208<<14 | 0x36<<7 | 0x3E,\n\t24673 - 19968: jis0212<<14 | 0x1C<<7 | 0x47,\n\t24674 - 19968: jis0208<<14 | 0x11<<7 | 0x59,\n\t24675 - 19968: jis0208<<14 | 0x36<<7 | 0x52,\n\t24676 - 19968: jis0208<<14 | 0x36<<7 | 0x54,\n\t24677 - 19968: jis0208<<14 | 0x22<<7 | 0x30,\n\t24679 - 19968: jis0212<<14 | 0x1C<<7 | 0x48,\n\t24680 - 19968: jis0208<<14 | 0x19<<7 | 0x07,\n\t24681 - 19968: jis0208<<14 | 0x11<<7 | 0x17,\n\t24682 - 19968: jis0208<<14 | 0x36<<7 | 0x4C,\n\t24683 - 19968: jis0208<<14 | 0x36<<7 | 0x57,\n\t24684 - 19968: jis0208<<14 | 0x36<<7 | 0x56,\n\t24685 - 19968: jis0208<<14 | 0x15<<7 | 0x12,\n\t24687 - 19968: jis0208<<14 | 0x21<<7 | 0x08,\n\t24688 - 19968: jis0208<<14 | 0x12<<7 | 0x45,\n\t24689 - 19968: jis0212<<14 | 0x1C<<7 | 0x49,\n\t24693 - 19968: jis0208<<14 | 0x16<<7 | 0x22,\n\t24695 - 19968: jis0208<<14 | 0x36<<7 | 0x4D,\n\t24702 - 19968: jis0212<<14 | 0x1C<<7 | 0x4A,\n\t24703 - 19968: jis0212<<14 | 0x1C<<7 | 0x4B,\n\t24705 - 19968: jis0208<<14 | 0x36<<7 | 0x59,\n\t24706 - 19968: jis0212<<14 | 0x1C<<7 | 0x4C,\n\t24707 - 19968: jis0208<<14 | 0x36<<7 | 0x5C,\n\t24708 - 19968: jis0208<<14 | 0x37<<7 | 0x00,\n\t24709 - 19968: jis0208<<14 | 0x59<<7 | 0x02,\n\t24710 - 19968: jis0212<<14 | 0x1C<<7 | 0x4D,\n\t24712 - 19968: jis0212<<14 | 0x1C<<7 | 0x4E,\n\t24713 - 19968: jis0208<<14 | 0x1B<<7 | 0x1C,\n\t24714 - 19968: jis0208<<14 | 0x59<<7 | 0x03,\n\t24715 - 19968: jis0208<<14 | 0x37<<7 | 0x06,\n\t24716 - 19968: jis0208<<14 | 0x23<<7 | 0x4F,\n\t24717 - 19968: jis0208<<14 | 0x36<<7 | 0x5A,\n\t24718 - 19968: jis0212<<14 | 0x1C<<7 | 0x50,\n\t24721 - 19968: jis0212<<14 | 0x1C<<7 | 0x51,\n\t24722 - 19968: jis0208<<14 | 0x37<<7 | 0x04,\n\t24723 - 19968: jis0212<<14 | 0x1C<<7 | 0x52,\n\t24724 - 19968: jis0208<<14 | 0x11<<7 | 0x58,\n\t24725 - 19968: jis0212<<14 | 0x1C<<7 | 0x53,\n\t24726 - 19968: jis0208<<14 | 0x37<<7 | 0x02,\n\t24727 - 19968: jis0208<<14 | 0x37<<7 | 0x03,\n\t24728 - 19968: jis0212<<14 | 0x1C<<7 | 0x54,\n\t24730 - 19968: jis0208<<14 | 0x36<<7 | 0x5D,\n\t24731 - 19968: jis0208<<14 | 0x37<<7 | 0x01,\n\t24733 - 19968: jis0212<<14 | 0x1C<<7 | 0x55,\n\t24734 - 19968: jis0212<<14 | 0x1C<<7 | 0x56,\n\t24735 - 19968: jis0208<<14 | 0x17<<7 | 0x46,\n\t24736 - 19968: jis0208<<14 | 0x2C<<7 | 0x09,\n\t24738 - 19968: jis0212<<14 | 0x1C<<7 | 0x57,\n\t24739 - 19968: jis0208<<14 | 0x13<<7 | 0x14,\n\t24740 - 19968: jis0212<<14 | 0x1C<<7 | 0x58,\n\t24741 - 19968: jis0212<<14 | 0x1C<<7 | 0x59,\n\t24742 - 19968: jis0208<<14 | 0x10<<7 | 0x38,\n\t24743 - 19968: jis0208<<14 | 0x37<<7 | 0x05,\n\t24744 - 19968: jis0212<<14 | 0x1C<<7 | 0x5A,\n\t24745 - 19968: jis0208<<14 | 0x26<<7 | 0x19,\n\t24746 - 19968: jis0208<<14 | 0x0F<<7 | 0x0C,\n\t24752 - 19968: jis0212<<14 | 0x1C<<7 | 0x5B,\n\t24753 - 19968: jis0212<<14 | 0x1C<<7 | 0x5C,\n\t24754 - 19968: jis0208<<14 | 0x27<<7 | 0x40,\n\t24755 - 19968: jis0208<<14 | 0x36<<7 | 0x3B,\n\t24756 - 19968: jis0208<<14 | 0x37<<7 | 0x0B,\n\t24757 - 19968: jis0208<<14 | 0x37<<7 | 0x0F,\n\t24758 - 19968: jis0208<<14 | 0x2B<<7 | 0x44,\n\t24759 - 19968: jis0212<<14 | 0x1C<<7 | 0x5D,\n\t24760 - 19968: jis0208<<14 | 0x37<<7 | 0x08,\n\t24763 - 19968: jis0212<<14 | 0x1D<<7 | 0x00,\n\t24764 - 19968: jis0208<<14 | 0x24<<7 | 0x48,\n\t24765 - 19968: jis0208<<14 | 0x37<<7 | 0x0D,\n\t24766 - 19968: jis0212<<14 | 0x1D<<7 | 0x01,\n\t24770 - 19968: jis0212<<14 | 0x1D<<7 | 0x02,\n\t24772 - 19968: jis0212<<14 | 0x1D<<7 | 0x03,\n\t24773 - 19968: jis0208<<14 | 0x1D<<7 | 0x4F,\n\t24774 - 19968: jis0208<<14 | 0x37<<7 | 0x0E,\n\t24775 - 19968: jis0208<<14 | 0x25<<7 | 0x36,\n\t24776 - 19968: jis0212<<14 | 0x1D<<7 | 0x04,\n\t24777 - 19968: jis0212<<14 | 0x1D<<7 | 0x05,\n\t24778 - 19968: jis0212<<14 | 0x1D<<7 | 0x06,\n\t24779 - 19968: jis0212<<14 | 0x1D<<7 | 0x07,\n\t24782 - 19968: jis0212<<14 | 0x1D<<7 | 0x08,\n\t24783 - 19968: jis0212<<14 | 0x1D<<7 | 0x09,\n\t24785 - 19968: jis0208<<14 | 0x2E<<7 | 0x26,\n\t24787 - 19968: jis0208<<14 | 0x37<<7 | 0x0A,\n\t24788 - 19968: jis0212<<14 | 0x1D<<7 | 0x0A,\n\t24789 - 19968: jis0208<<14 | 0x59<<7 | 0x05,\n\t24792 - 19968: jis0208<<14 | 0x37<<7 | 0x10,\n\t24793 - 19968: jis0212<<14 | 0x1D<<7 | 0x0C,\n\t24794 - 19968: jis0208<<14 | 0x18<<7 | 0x5A,\n\t24795 - 19968: jis0212<<14 | 0x1D<<7 | 0x0D,\n\t24796 - 19968: jis0208<<14 | 0x1F<<7 | 0x2A,\n\t24797 - 19968: jis0212<<14 | 0x1D<<7 | 0x0E,\n\t24798 - 19968: jis0208<<14 | 0x59<<7 | 0x04,\n\t24799 - 19968: jis0208<<14 | 0x0F<<7 | 0x33,\n\t24800 - 19968: jis0208<<14 | 0x37<<7 | 0x09,\n\t24801 - 19968: jis0208<<14 | 0x37<<7 | 0x07,\n\t24802 - 19968: jis0212<<14 | 0x1D<<7 | 0x10,\n\t24803 - 19968: jis0208<<14 | 0x20<<7 | 0x39,\n\t24805 - 19968: jis0212<<14 | 0x1D<<7 | 0x11,\n\t24807 - 19968: jis0208<<14 | 0x36<<7 | 0x5B,\n\t24808 - 19968: jis0208<<14 | 0x1A<<7 | 0x13,\n\t24816 - 19968: jis0208<<14 | 0x21<<7 | 0x25,\n\t24817 - 19968: jis0208<<14 | 0x37<<7 | 0x1C,\n\t24818 - 19968: jis0208<<14 | 0x59<<7 | 0x07,\n\t24819 - 19968: jis0208<<14 | 0x20<<7 | 0x3A,\n\t24820 - 19968: jis0208<<14 | 0x37<<7 | 0x17,\n\t24821 - 19968: jis0212<<14 | 0x1D<<7 | 0x13,\n\t24822 - 19968: jis0208<<14 | 0x37<<7 | 0x14,\n\t24823 - 19968: jis0208<<14 | 0x37<<7 | 0x15,\n\t24824 - 19968: jis0212<<14 | 0x1D<<7 | 0x14,\n\t24825 - 19968: jis0208<<14 | 0x1B<<7 | 0x45,\n\t24826 - 19968: jis0208<<14 | 0x37<<7 | 0x18,\n\t24827 - 19968: jis0208<<14 | 0x37<<7 | 0x1B,\n\t24828 - 19968: jis0212<<14 | 0x1D<<7 | 0x15,\n\t24829 - 19968: jis0212<<14 | 0x1D<<7 | 0x16,\n\t24832 - 19968: jis0208<<14 | 0x37<<7 | 0x16,\n\t24833 - 19968: jis0208<<14 | 0x1C<<7 | 0x04,\n\t24834 - 19968: jis0212<<14 | 0x1D<<7 | 0x17,\n\t24835 - 19968: jis0208<<14 | 0x37<<7 | 0x19,\n\t24838 - 19968: jis0208<<14 | 0x37<<7 | 0x13,\n\t24839 - 19968: jis0212<<14 | 0x1D<<7 | 0x18,\n\t24840 - 19968: jis0208<<14 | 0x2B<<7 | 0x5B,\n\t24841 - 19968: jis0208<<14 | 0x2B<<7 | 0x5A,\n\t24842 - 19968: jis0212<<14 | 0x1D<<7 | 0x19,\n\t24844 - 19968: jis0212<<14 | 0x1D<<7 | 0x1A,\n\t24845 - 19968: jis0208<<14 | 0x37<<7 | 0x1D,\n\t24846 - 19968: jis0208<<14 | 0x37<<7 | 0x1E,\n\t24847 - 19968: jis0208<<14 | 0x0F<<7 | 0x34,\n\t24848 - 19968: jis0212<<14 | 0x1D<<7 | 0x1B,\n\t24849 - 19968: jis0208<<14 | 0x59<<7 | 0x08,\n\t24850 - 19968: jis0212<<14 | 0x1D<<7 | 0x1D,\n\t24851 - 19968: jis0212<<14 | 0x1D<<7 | 0x1E,\n\t24852 - 19968: jis0212<<14 | 0x1D<<7 | 0x1F,\n\t24853 - 19968: jis0208<<14 | 0x37<<7 | 0x12,\n\t24854 - 19968: jis0212<<14 | 0x1D<<7 | 0x20,\n\t24855 - 19968: jis0212<<14 | 0x1D<<7 | 0x21,\n\t24857 - 19968: jis0212<<14 | 0x1D<<7 | 0x22,\n\t24858 - 19968: jis0208<<14 | 0x15<<7 | 0x51,\n\t24859 - 19968: jis0208<<14 | 0x0F<<7 | 0x05,\n\t24860 - 19968: jis0212<<14 | 0x1D<<7 | 0x23,\n\t24862 - 19968: jis0212<<14 | 0x1D<<7 | 0x24,\n\t24863 - 19968: jis0208<<14 | 0x13<<7 | 0x15,\n\t24864 - 19968: jis0208<<14 | 0x59<<7 | 0x06,\n\t24865 - 19968: jis0208<<14 | 0x37<<7 | 0x1A,\n\t24866 - 19968: jis0212<<14 | 0x1D<<7 | 0x25,\n\t24871 - 19968: jis0208<<14 | 0x37<<7 | 0x22,\n\t24872 - 19968: jis0208<<14 | 0x37<<7 | 0x21,\n\t24874 - 19968: jis0212<<14 | 0x1D<<7 | 0x26,\n\t24875 - 19968: jis0212<<14 | 0x1D<<7 | 0x27,\n\t24876 - 19968: jis0208<<14 | 0x37<<7 | 0x26,\n\t24880 - 19968: jis0208<<14 | 0x59<<7 | 0x0A,\n\t24881 - 19968: jis0212<<14 | 0x1D<<7 | 0x29,\n\t24884 - 19968: jis0208<<14 | 0x37<<7 | 0x27,\n\t24885 - 19968: jis0212<<14 | 0x1D<<7 | 0x2A,\n\t24886 - 19968: jis0212<<14 | 0x1D<<7 | 0x2B,\n\t24887 - 19968: jis0208<<14 | 0x59<<7 | 0x09,\n\t24889 - 19968: jis0212<<14 | 0x1D<<7 | 0x2D,\n\t24892 - 19968: jis0208<<14 | 0x37<<7 | 0x25,\n\t24893 - 19968: jis0208<<14 | 0x37<<7 | 0x28,\n\t24894 - 19968: jis0208<<14 | 0x37<<7 | 0x20,\n\t24895 - 19968: jis0208<<14 | 0x37<<7 | 0x24,\n\t24897 - 19968: jis0212<<14 | 0x1D<<7 | 0x2E,\n\t24898 - 19968: jis0208<<14 | 0x37<<7 | 0x29,\n\t24900 - 19968: jis0208<<14 | 0x37<<7 | 0x2A,\n\t24901 - 19968: jis0212<<14 | 0x1D<<7 | 0x2F,\n\t24902 - 19968: jis0212<<14 | 0x1D<<7 | 0x30,\n\t24903 - 19968: jis0208<<14 | 0x37<<7 | 0x1F,\n\t24904 - 19968: jis0208<<14 | 0x1A<<7 | 0x5B,\n\t24905 - 19968: jis0212<<14 | 0x1D<<7 | 0x31,\n\t24906 - 19968: jis0208<<14 | 0x37<<7 | 0x23,\n\t24907 - 19968: jis0208<<14 | 0x21<<7 | 0x35,\n\t24908 - 19968: jis0208<<14 | 0x18<<7 | 0x11,\n\t24909 - 19968: jis0208<<14 | 0x37<<7 | 0x11,\n\t24910 - 19968: jis0208<<14 | 0x1E<<7 | 0x14,\n\t24915 - 19968: jis0208<<14 | 0x37<<7 | 0x37,\n\t24917 - 19968: jis0208<<14 | 0x29<<7 | 0x48,\n\t24920 - 19968: jis0208<<14 | 0x37<<7 | 0x2D,\n\t24921 - 19968: jis0208<<14 | 0x37<<7 | 0x2E,\n\t24922 - 19968: jis0208<<14 | 0x37<<7 | 0x2F,\n\t24925 - 19968: jis0208<<14 | 0x37<<7 | 0x36,\n\t24926 - 19968: jis0212<<14 | 0x1D<<7 | 0x32,\n\t24927 - 19968: jis0208<<14 | 0x37<<7 | 0x35,\n\t24928 - 19968: jis0212<<14 | 0x1D<<7 | 0x33,\n\t24930 - 19968: jis0208<<14 | 0x2A<<7 | 0x5C,\n\t24931 - 19968: jis0208<<14 | 0x13<<7 | 0x16,\n\t24933 - 19968: jis0208<<14 | 0x37<<7 | 0x33,\n\t24935 - 19968: jis0208<<14 | 0x16<<7 | 0x24,\n\t24936 - 19968: jis0208<<14 | 0x12<<7 | 0x13,\n\t24939 - 19968: jis0208<<14 | 0x37<<7 | 0x30,\n\t24940 - 19968: jis0212<<14 | 0x1D<<7 | 0x34,\n\t24942 - 19968: jis0208<<14 | 0x2D<<7 | 0x17,\n\t24943 - 19968: jis0208<<14 | 0x37<<7 | 0x32,\n\t24944 - 19968: jis0208<<14 | 0x0F<<7 | 0x35,\n\t24945 - 19968: jis0208<<14 | 0x37<<7 | 0x34,\n\t24946 - 19968: jis0212<<14 | 0x1D<<7 | 0x35,\n\t24947 - 19968: jis0208<<14 | 0x37<<7 | 0x2B,\n\t24948 - 19968: jis0208<<14 | 0x37<<7 | 0x31,\n\t24949 - 19968: jis0208<<14 | 0x37<<7 | 0x38,\n\t24950 - 19968: jis0208<<14 | 0x16<<7 | 0x23,\n\t24951 - 19968: jis0208<<14 | 0x37<<7 | 0x2C,\n\t24952 - 19968: jis0212<<14 | 0x1D<<7 | 0x36,\n\t24955 - 19968: jis0212<<14 | 0x1D<<7 | 0x37,\n\t24956 - 19968: jis0212<<14 | 0x1D<<7 | 0x38,\n\t24958 - 19968: jis0208<<14 | 0x2C<<7 | 0x3C,\n\t24959 - 19968: jis0212<<14 | 0x1D<<7 | 0x39,\n\t24960 - 19968: jis0212<<14 | 0x1D<<7 | 0x3A,\n\t24961 - 19968: jis0212<<14 | 0x1D<<7 | 0x3B,\n\t24962 - 19968: jis0208<<14 | 0x2C<<7 | 0x0A,\n\t24963 - 19968: jis0212<<14 | 0x1D<<7 | 0x3C,\n\t24964 - 19968: jis0212<<14 | 0x1D<<7 | 0x3D,\n\t24967 - 19968: jis0208<<14 | 0x37<<7 | 0x3B,\n\t24970 - 19968: jis0208<<14 | 0x37<<7 | 0x3F,\n\t24971 - 19968: jis0212<<14 | 0x1D<<7 | 0x3E,\n\t24973 - 19968: jis0212<<14 | 0x1D<<7 | 0x3F,\n\t24974 - 19968: jis0208<<14 | 0x20<<7 | 0x5D,\n\t24976 - 19968: jis0208<<14 | 0x2D<<7 | 0x58,\n\t24977 - 19968: jis0208<<14 | 0x37<<7 | 0x40,\n\t24978 - 19968: jis0212<<14 | 0x1D<<7 | 0x40,\n\t24979 - 19968: jis0212<<14 | 0x1D<<7 | 0x41,\n\t24980 - 19968: jis0208<<14 | 0x37<<7 | 0x3D,\n\t24982 - 19968: jis0208<<14 | 0x37<<7 | 0x3A,\n\t24983 - 19968: jis0212<<14 | 0x1D<<7 | 0x42,\n\t24984 - 19968: jis0208<<14 | 0x59<<7 | 0x0B,\n\t24985 - 19968: jis0208<<14 | 0x37<<7 | 0x39,\n\t24986 - 19968: jis0208<<14 | 0x37<<7 | 0x3E,\n\t24988 - 19968: jis0212<<14 | 0x1D<<7 | 0x44,\n\t24989 - 19968: jis0212<<14 | 0x1D<<7 | 0x45,\n\t24991 - 19968: jis0212<<14 | 0x1D<<7 | 0x46,\n\t24992 - 19968: jis0212<<14 | 0x1D<<7 | 0x47,\n\t24996 - 19968: jis0208<<14 | 0x29<<7 | 0x0F,\n\t24997 - 19968: jis0212<<14 | 0x1D<<7 | 0x48,\n\t24999 - 19968: jis0208<<14 | 0x25<<7 | 0x13,\n\t25000 - 19968: jis0212<<14 | 0x1D<<7 | 0x49,\n\t25001 - 19968: jis0208<<14 | 0x16<<7 | 0x25,\n\t25002 - 19968: jis0212<<14 | 0x1D<<7 | 0x4A,\n\t25003 - 19968: jis0208<<14 | 0x37<<7 | 0x41,\n\t25004 - 19968: jis0208<<14 | 0x37<<7 | 0x3C,\n\t25005 - 19968: jis0212<<14 | 0x1D<<7 | 0x4B,\n\t25006 - 19968: jis0208<<14 | 0x37<<7 | 0x42,\n\t25010 - 19968: jis0208<<14 | 0x16<<7 | 0x5A,\n\t25014 - 19968: jis0208<<14 | 0x11<<7 | 0x10,\n\t25016 - 19968: jis0212<<14 | 0x1D<<7 | 0x4C,\n\t25017 - 19968: jis0212<<14 | 0x1D<<7 | 0x4D,\n\t25018 - 19968: jis0208<<14 | 0x37<<7 | 0x4A,\n\t25020 - 19968: jis0212<<14 | 0x1D<<7 | 0x4E,\n\t25022 - 19968: jis0208<<14 | 0x13<<7 | 0x17,\n\t25024 - 19968: jis0212<<14 | 0x1D<<7 | 0x4F,\n\t25025 - 19968: jis0212<<14 | 0x1D<<7 | 0x50,\n\t25026 - 19968: jis0212<<14 | 0x1D<<7 | 0x51,\n\t25027 - 19968: jis0208<<14 | 0x37<<7 | 0x48,\n\t25030 - 19968: jis0208<<14 | 0x37<<7 | 0x49,\n\t25031 - 19968: jis0208<<14 | 0x19<<7 | 0x08,\n\t25032 - 19968: jis0208<<14 | 0x37<<7 | 0x47,\n\t25033 - 19968: jis0208<<14 | 0x37<<7 | 0x45,\n\t25034 - 19968: jis0208<<14 | 0x37<<7 | 0x44,\n\t25035 - 19968: jis0208<<14 | 0x37<<7 | 0x4B,\n\t25036 - 19968: jis0208<<14 | 0x37<<7 | 0x43,\n\t25037 - 19968: jis0208<<14 | 0x37<<7 | 0x4D,\n\t25038 - 19968: jis0212<<14 | 0x1D<<7 | 0x52,\n\t25039 - 19968: jis0212<<14 | 0x1D<<7 | 0x53,\n\t25040 - 19968: jis0208<<14 | 0x11<<7 | 0x5A,\n\t25045 - 19968: jis0212<<14 | 0x1D<<7 | 0x54,\n\t25052 - 19968: jis0212<<14 | 0x1D<<7 | 0x55,\n\t25053 - 19968: jis0212<<14 | 0x1D<<7 | 0x56,\n\t25054 - 19968: jis0212<<14 | 0x1D<<7 | 0x57,\n\t25055 - 19968: jis0212<<14 | 0x1D<<7 | 0x58,\n\t25057 - 19968: jis0212<<14 | 0x1D<<7 | 0x59,\n\t25058 - 19968: jis0212<<14 | 0x1D<<7 | 0x5A,\n\t25059 - 19968: jis0208<<14 | 0x37<<7 | 0x4F,\n\t25061 - 19968: jis0212<<14 | 0x1D<<7 | 0x5D,\n\t25062 - 19968: jis0208<<14 | 0x37<<7 | 0x4E,\n\t25063 - 19968: jis0212<<14 | 0x1D<<7 | 0x5B,\n\t25065 - 19968: jis0212<<14 | 0x1D<<7 | 0x5C,\n\t25068 - 19968: jis0212<<14 | 0x1E<<7 | 0x00,\n\t25069 - 19968: jis0212<<14 | 0x1E<<7 | 0x01,\n\t25071 - 19968: jis0212<<14 | 0x1E<<7 | 0x02,\n\t25074 - 19968: jis0208<<14 | 0x23<<7 | 0x07,\n\t25076 - 19968: jis0208<<14 | 0x37<<7 | 0x52,\n\t25078 - 19968: jis0208<<14 | 0x37<<7 | 0x50,\n\t25079 - 19968: jis0208<<14 | 0x37<<7 | 0x46,\n\t25080 - 19968: jis0208<<14 | 0x16<<7 | 0x5B,\n\t25082 - 19968: jis0208<<14 | 0x37<<7 | 0x51,\n\t25084 - 19968: jis0208<<14 | 0x37<<7 | 0x55,\n\t25085 - 19968: jis0208<<14 | 0x37<<7 | 0x54,\n\t25086 - 19968: jis0208<<14 | 0x37<<7 | 0x56,\n\t25087 - 19968: jis0208<<14 | 0x37<<7 | 0x53,\n\t25088 - 19968: jis0208<<14 | 0x37<<7 | 0x57,\n\t25089 - 19968: jis0212<<14 | 0x1E<<7 | 0x03,\n\t25091 - 19968: jis0212<<14 | 0x1E<<7 | 0x04,\n\t25092 - 19968: jis0212<<14 | 0x1E<<7 | 0x05,\n\t25095 - 19968: jis0212<<14 | 0x1E<<7 | 0x06,\n\t25096 - 19968: jis0208<<14 | 0x37<<7 | 0x58,\n\t25097 - 19968: jis0208<<14 | 0x37<<7 | 0x59,\n\t25098 - 19968: jis0208<<14 | 0x29<<7 | 0x49,\n\t25100 - 19968: jis0208<<14 | 0x37<<7 | 0x5B,\n\t25101 - 19968: jis0208<<14 | 0x37<<7 | 0x5A,\n\t25102 - 19968: jis0208<<14 | 0x1C<<7 | 0x1E,\n\t25104 - 19968: jis0208<<14 | 0x1F<<7 | 0x0D,\n\t25105 - 19968: jis0208<<14 | 0x11<<7 | 0x45,\n\t25106 - 19968: jis0208<<14 | 0x11<<7 | 0x5B,\n\t25107 - 19968: jis0208<<14 | 0x59<<7 | 0x0C,\n\t25108 - 19968: jis0208<<14 | 0x37<<7 | 0x5C,\n\t25109 - 19968: jis0212<<14 | 0x1E<<7 | 0x08,\n\t25110 - 19968: jis0208<<14 | 0x0F<<7 | 0x1E,\n\t25114 - 19968: jis0208<<14 | 0x1F<<7 | 0x2B,\n\t25115 - 19968: jis0208<<14 | 0x37<<7 | 0x5D,\n\t25116 - 19968: jis0212<<14 | 0x1E<<7 | 0x09,\n\t25117 - 19968: jis0208<<14 | 0x4B<<7 | 0x22,\n\t25118 - 19968: jis0208<<14 | 0x38<<7 | 0x00,\n\t25119 - 19968: jis0208<<14 | 0x16<<7 | 0x40,\n\t25120 - 19968: jis0212<<14 | 0x1E<<7 | 0x0A,\n\t25121 - 19968: jis0208<<14 | 0x38<<7 | 0x01,\n\t25122 - 19968: jis0212<<14 | 0x1E<<7 | 0x0B,\n\t25123 - 19968: jis0212<<14 | 0x1E<<7 | 0x0C,\n\t25126 - 19968: jis0208<<14 | 0x1F<<7 | 0x4E,\n\t25127 - 19968: jis0212<<14 | 0x1E<<7 | 0x0D,\n\t25129 - 19968: jis0212<<14 | 0x1E<<7 | 0x0E,\n\t25130 - 19968: jis0208<<14 | 0x38<<7 | 0x02,\n\t25131 - 19968: jis0212<<14 | 0x1E<<7 | 0x0F,\n\t25134 - 19968: jis0208<<14 | 0x38<<7 | 0x03,\n\t25135 - 19968: jis0208<<14 | 0x14<<7 | 0x19,\n\t25136 - 19968: jis0208<<14 | 0x38<<7 | 0x04,\n\t25138 - 19968: jis0208<<14 | 0x38<<7 | 0x05,\n\t25139 - 19968: jis0208<<14 | 0x38<<7 | 0x06,\n\t25140 - 19968: jis0208<<14 | 0x21<<7 | 0x36,\n\t25144 - 19968: jis0208<<14 | 0x17<<7 | 0x2C,\n\t25145 - 19968: jis0212<<14 | 0x1E<<7 | 0x10,\n\t25147 - 19968: jis0208<<14 | 0x2B<<7 | 0x40,\n\t25149 - 19968: jis0212<<14 | 0x1E<<7 | 0x11,\n\t25151 - 19968: jis0208<<14 | 0x2A<<7 | 0x1B,\n\t25152 - 19968: jis0208<<14 | 0x1C<<7 | 0x49,\n\t25153 - 19968: jis0208<<14 | 0x38<<7 | 0x07,\n\t25154 - 19968: jis0212<<14 | 0x1E<<7 | 0x12,\n\t25155 - 19968: jis0212<<14 | 0x1E<<7 | 0x13,\n\t25156 - 19968: jis0212<<14 | 0x1E<<7 | 0x14,\n\t25158 - 19968: jis0212<<14 | 0x1E<<7 | 0x15,\n\t25159 - 19968: jis0208<<14 | 0x1F<<7 | 0x4F,\n\t25160 - 19968: jis0208<<14 | 0x4D<<7 | 0x1C,\n\t25161 - 19968: jis0208<<14 | 0x27<<7 | 0x41,\n\t25163 - 19968: jis0208<<14 | 0x1B<<7 | 0x49,\n\t25164 - 19968: jis0212<<14 | 0x1E<<7 | 0x16,\n\t25165 - 19968: jis0208<<14 | 0x19<<7 | 0x2C,\n\t25166 - 19968: jis0208<<14 | 0x38<<7 | 0x08,\n\t25168 - 19968: jis0212<<14 | 0x1E<<7 | 0x17,\n\t25169 - 19968: jis0212<<14 | 0x1E<<7 | 0x18,\n\t25170 - 19968: jis0212<<14 | 0x1E<<7 | 0x19,\n\t25171 - 19968: jis0208<<14 | 0x21<<7 | 0x26,\n\t25172 - 19968: jis0212<<14 | 0x1E<<7 | 0x1A,\n\t25173 - 19968: jis0208<<14 | 0x29<<7 | 0x06,\n\t25174 - 19968: jis0212<<14 | 0x1E<<7 | 0x1B,\n\t25176 - 19968: jis0208<<14 | 0x21<<7 | 0x50,\n\t25178 - 19968: jis0212<<14 | 0x1E<<7 | 0x1C,\n\t25179 - 19968: jis0208<<14 | 0x38<<7 | 0x0B,\n\t25180 - 19968: jis0212<<14 | 0x1E<<7 | 0x1D,\n\t25182 - 19968: jis0208<<14 | 0x38<<7 | 0x09,\n\t25184 - 19968: jis0208<<14 | 0x38<<7 | 0x0C,\n\t25187 - 19968: jis0208<<14 | 0x38<<7 | 0x0A,\n\t25188 - 19968: jis0212<<14 | 0x1E<<7 | 0x1E,\n\t25192 - 19968: jis0208<<14 | 0x38<<7 | 0x0D,\n\t25197 - 19968: jis0212<<14 | 0x1E<<7 | 0x1F,\n\t25198 - 19968: jis0208<<14 | 0x29<<7 | 0x10,\n\t25199 - 19968: jis0212<<14 | 0x1E<<7 | 0x20,\n\t25201 - 19968: jis0208<<14 | 0x0F<<7 | 0x16,\n\t25203 - 19968: jis0212<<14 | 0x1E<<7 | 0x21,\n\t25206 - 19968: jis0208<<14 | 0x28<<7 | 0x3D,\n\t25209 - 19968: jis0208<<14 | 0x27<<7 | 0x42,\n\t25210 - 19968: jis0212<<14 | 0x1E<<7 | 0x22,\n\t25212 - 19968: jis0208<<14 | 0x38<<7 | 0x0E,\n\t25213 - 19968: jis0212<<14 | 0x1E<<7 | 0x23,\n\t25214 - 19968: jis0208<<14 | 0x38<<7 | 0x11,\n\t25215 - 19968: jis0208<<14 | 0x1D<<7 | 0x14,\n\t25216 - 19968: jis0208<<14 | 0x14<<7 | 0x1A,\n\t25218 - 19968: jis0208<<14 | 0x38<<7 | 0x0F,\n\t25219 - 19968: jis0208<<14 | 0x38<<7 | 0x16,\n\t25220 - 19968: jis0208<<14 | 0x1D<<7 | 0x15,\n\t25225 - 19968: jis0208<<14 | 0x38<<7 | 0x10,\n\t25226 - 19968: jis0208<<14 | 0x26<<7 | 0x23,\n\t25229 - 19968: jis0212<<14 | 0x1E<<7 | 0x24,\n\t25230 - 19968: jis0212<<14 | 0x1E<<7 | 0x25,\n\t25231 - 19968: jis0212<<14 | 0x1E<<7 | 0x26,\n\t25232 - 19968: jis0212<<14 | 0x1E<<7 | 0x27,\n\t25233 - 19968: jis0208<<14 | 0x2C<<7 | 0x3D,\n\t25234 - 19968: jis0208<<14 | 0x38<<7 | 0x12,\n\t25235 - 19968: jis0208<<14 | 0x38<<7 | 0x13,\n\t25236 - 19968: jis0208<<14 | 0x38<<7 | 0x17,\n\t25237 - 19968: jis0208<<14 | 0x24<<7 | 0x49,\n\t25238 - 19968: jis0208<<14 | 0x38<<7 | 0x14,\n\t25239 - 19968: jis0208<<14 | 0x18<<7 | 0x12,\n\t25240 - 19968: jis0208<<14 | 0x1F<<7 | 0x3D,\n\t25243 - 19968: jis0208<<14 | 0x38<<7 | 0x25,\n\t25244 - 19968: jis0208<<14 | 0x27<<7 | 0x13,\n\t25246 - 19968: jis0208<<14 | 0x21<<7 | 0x51,\n\t25254 - 19968: jis0208<<14 | 0x59<<7 | 0x0D,\n\t25256 - 19968: jis0212<<14 | 0x1E<<7 | 0x29,\n\t25259 - 19968: jis0208<<14 | 0x27<<7 | 0x43,\n\t25260 - 19968: jis0208<<14 | 0x39<<7 | 0x0C,\n\t25265 - 19968: jis0208<<14 | 0x29<<7 | 0x59,\n\t25267 - 19968: jis0212<<14 | 0x1E<<7 | 0x2A,\n\t25269 - 19968: jis0208<<14 | 0x23<<7 | 0x50,\n\t25270 - 19968: jis0212<<14 | 0x1E<<7 | 0x2B,\n\t25271 - 19968: jis0212<<14 | 0x1E<<7 | 0x2C,\n\t25273 - 19968: jis0208<<14 | 0x2A<<7 | 0x54,\n\t25274 - 19968: jis0212<<14 | 0x1E<<7 | 0x2D,\n\t25275 - 19968: jis0208<<14 | 0x38<<7 | 0x1A,\n\t25276 - 19968: jis0208<<14 | 0x11<<7 | 0x00,\n\t25277 - 19968: jis0208<<14 | 0x22<<7 | 0x49,\n\t25278 - 19968: jis0212<<14 | 0x1E<<7 | 0x2E,\n\t25279 - 19968: jis0212<<14 | 0x1E<<7 | 0x2F,\n\t25282 - 19968: jis0208<<14 | 0x38<<7 | 0x23,\n\t25284 - 19968: jis0212<<14 | 0x1E<<7 | 0x30,\n\t25285 - 19968: jis0208<<14 | 0x22<<7 | 0x13,\n\t25286 - 19968: jis0208<<14 | 0x38<<7 | 0x1D,\n\t25287 - 19968: jis0208<<14 | 0x38<<7 | 0x24,\n\t25288 - 19968: jis0208<<14 | 0x38<<7 | 0x1F,\n\t25289 - 19968: jis0208<<14 | 0x38<<7 | 0x26,\n\t25290 - 19968: jis0208<<14 | 0x38<<7 | 0x22,\n\t25292 - 19968: jis0208<<14 | 0x38<<7 | 0x21,\n\t25293 - 19968: jis0208<<14 | 0x26<<7 | 0x4E,\n\t25294 - 19968: jis0212<<14 | 0x1E<<7 | 0x31,\n\t25295 - 19968: jis0208<<14 | 0x38<<7 | 0x1B,\n\t25296 - 19968: jis0208<<14 | 0x11<<7 | 0x5C,\n\t25297 - 19968: jis0208<<14 | 0x38<<7 | 0x19,\n\t25298 - 19968: jis0208<<14 | 0x14<<7 | 0x50,\n\t25299 - 19968: jis0208<<14 | 0x21<<7 | 0x52,\n\t25300 - 19968: jis0208<<14 | 0x38<<7 | 0x15,\n\t25301 - 19968: jis0212<<14 | 0x1E<<7 | 0x32,\n\t25302 - 19968: jis0212<<14 | 0x1E<<7 | 0x33,\n\t25303 - 19968: jis0208<<14 | 0x38<<7 | 0x18,\n\t25304 - 19968: jis0208<<14 | 0x18<<7 | 0x13,\n\t25305 - 19968: jis0208<<14 | 0x1F<<7 | 0x3A,\n\t25306 - 19968: jis0212<<14 | 0x1E<<7 | 0x34,\n\t25307 - 19968: jis0208<<14 | 0x1D<<7 | 0x16,\n\t25308 - 19968: jis0208<<14 | 0x38<<7 | 0x20,\n\t25309 - 19968: jis0208<<14 | 0x26<<7 | 0x31,\n\t25312 - 19968: jis0208<<14 | 0x14<<7 | 0x51,\n\t25313 - 19968: jis0208<<14 | 0x12<<7 | 0x27,\n\t25322 - 19968: jis0212<<14 | 0x1E<<7 | 0x35,\n\t25324 - 19968: jis0208<<14 | 0x12<<7 | 0x46,\n\t25325 - 19968: jis0208<<14 | 0x1E<<7 | 0x00,\n\t25326 - 19968: jis0208<<14 | 0x38<<7 | 0x28,\n\t25327 - 19968: jis0208<<14 | 0x38<<7 | 0x2D,\n\t25329 - 19968: jis0208<<14 | 0x38<<7 | 0x29,\n\t25330 - 19968: jis0212<<14 | 0x1E<<7 | 0x36,\n\t25331 - 19968: jis0208<<14 | 0x16<<7 | 0x5C,\n\t25332 - 19968: jis0212<<14 | 0x1E<<7 | 0x37,\n\t25333 - 19968: jis0208<<14 | 0x38<<7 | 0x2E,\n\t25334 - 19968: jis0208<<14 | 0x1A<<7 | 0x01,\n\t25335 - 19968: jis0208<<14 | 0x18<<7 | 0x48,\n\t25340 - 19968: jis0212<<14 | 0x1E<<7 | 0x38,\n\t25341 - 19968: jis0212<<14 | 0x1E<<7 | 0x39,\n\t25342 - 19968: jis0208<<14 | 0x1C<<7 | 0x05,\n\t25343 - 19968: jis0208<<14 | 0x38<<7 | 0x1C,\n\t25345 - 19968: jis0208<<14 | 0x1A<<7 | 0x5C,\n\t25346 - 19968: jis0208<<14 | 0x38<<7 | 0x2B,\n\t25347 - 19968: jis0212<<14 | 0x1E<<7 | 0x3A,\n\t25348 - 19968: jis0212<<14 | 0x1E<<7 | 0x3B,\n\t25351 - 19968: jis0208<<14 | 0x1A<<7 | 0x37,\n\t25352 - 19968: jis0208<<14 | 0x38<<7 | 0x2C,\n\t25353 - 19968: jis0208<<14 | 0x0F<<7 | 0x23,\n\t25354 - 19968: jis0212<<14 | 0x1E<<7 | 0x3C,\n\t25355 - 19968: jis0212<<14 | 0x1E<<7 | 0x3D,\n\t25356 - 19968: jis0208<<14 | 0x38<<7 | 0x27,\n\t25357 - 19968: jis0212<<14 | 0x1E<<7 | 0x3E,\n\t25360 - 19968: jis0212<<14 | 0x1E<<7 | 0x3F,\n\t25361 - 19968: jis0208<<14 | 0x23<<7 | 0x08,\n\t25363 - 19968: jis0212<<14 | 0x1E<<7 | 0x40,\n\t25366 - 19968: jis0212<<14 | 0x1E<<7 | 0x41,\n\t25368 - 19968: jis0212<<14 | 0x1E<<7 | 0x42,\n\t25369 - 19968: jis0208<<14 | 0x14<<7 | 0x52,\n\t25375 - 19968: jis0208<<14 | 0x15<<7 | 0x13,\n\t25383 - 19968: jis0208<<14 | 0x38<<7 | 0x2A,\n\t25384 - 19968: jis0208<<14 | 0x0F<<7 | 0x06,\n\t25385 - 19968: jis0212<<14 | 0x1E<<7 | 0x43,\n\t25386 - 19968: jis0212<<14 | 0x1E<<7 | 0x44,\n\t25387 - 19968: jis0208<<14 | 0x19<<7 | 0x22,\n\t25389 - 19968: jis0212<<14 | 0x1E<<7 | 0x45,\n\t25391 - 19968: jis0208<<14 | 0x1E<<7 | 0x15,\n\t25397 - 19968: jis0212<<14 | 0x1E<<7 | 0x46,\n\t25398 - 19968: jis0212<<14 | 0x1E<<7 | 0x47,\n\t25401 - 19968: jis0212<<14 | 0x1E<<7 | 0x48,\n\t25402 - 19968: jis0208<<14 | 0x23<<7 | 0x51,\n\t25404 - 19968: jis0212<<14 | 0x1E<<7 | 0x49,\n\t25405 - 19968: jis0208<<14 | 0x27<<7 | 0x33,\n\t25406 - 19968: jis0208<<14 | 0x38<<7 | 0x30,\n\t25407 - 19968: jis0208<<14 | 0x20<<7 | 0x3D,\n\t25409 - 19968: jis0212<<14 | 0x1E<<7 | 0x4A,\n\t25410 - 19968: jis0212<<14 | 0x1E<<7 | 0x4B,\n\t25411 - 19968: jis0212<<14 | 0x1E<<7 | 0x4C,\n\t25412 - 19968: jis0212<<14 | 0x1E<<7 | 0x4D,\n\t25414 - 19968: jis0212<<14 | 0x1E<<7 | 0x4E,\n\t25417 - 19968: jis0208<<14 | 0x21<<7 | 0x09,\n\t25418 - 19968: jis0212<<14 | 0x1E<<7 | 0x4F,\n\t25419 - 19968: jis0212<<14 | 0x1E<<7 | 0x50,\n\t25420 - 19968: jis0208<<14 | 0x1A<<7 | 0x0A,\n\t25421 - 19968: jis0208<<14 | 0x38<<7 | 0x31,\n\t25422 - 19968: jis0212<<14 | 0x1E<<7 | 0x51,\n\t25423 - 19968: jis0208<<14 | 0x38<<7 | 0x33,\n\t25424 - 19968: jis0208<<14 | 0x38<<7 | 0x2F,\n\t25426 - 19968: jis0212<<14 | 0x1E<<7 | 0x52,\n\t25427 - 19968: jis0212<<14 | 0x1E<<7 | 0x53,\n\t25428 - 19968: jis0212<<14 | 0x1E<<7 | 0x54,\n\t25429 - 19968: jis0208<<14 | 0x29<<7 | 0x40,\n\t25431 - 19968: jis0208<<14 | 0x23<<7 | 0x1C,\n\t25432 - 19968: jis0212<<14 | 0x1E<<7 | 0x55,\n\t25435 - 19968: jis0212<<14 | 0x1E<<7 | 0x56,\n\t25436 - 19968: jis0208<<14 | 0x20<<7 | 0x3B,\n\t25445 - 19968: jis0212<<14 | 0x1E<<7 | 0x57,\n\t25446 - 19968: jis0212<<14 | 0x1E<<7 | 0x58,\n\t25447 - 19968: jis0208<<14 | 0x29<<7 | 0x5A,\n\t25448 - 19968: jis0208<<14 | 0x1B<<7 | 0x2D,\n\t25449 - 19968: jis0208<<14 | 0x38<<7 | 0x3F,\n\t25451 - 19968: jis0208<<14 | 0x38<<7 | 0x3E,\n\t25452 - 19968: jis0212<<14 | 0x1E<<7 | 0x59,\n\t25453 - 19968: jis0212<<14 | 0x1E<<7 | 0x5A,\n\t25454 - 19968: jis0208<<14 | 0x1E<<7 | 0x57,\n\t25457 - 19968: jis0212<<14 | 0x1E<<7 | 0x5B,\n\t25458 - 19968: jis0208<<14 | 0x16<<7 | 0x5D,\n\t25460 - 19968: jis0212<<14 | 0x1E<<7 | 0x5C,\n\t25461 - 19968: jis0212<<14 | 0x1E<<7 | 0x5D,\n\t25462 - 19968: jis0208<<14 | 0x38<<7 | 0x38,\n\t25463 - 19968: jis0208<<14 | 0x1D<<7 | 0x18,\n\t25464 - 19968: jis0212<<14 | 0x1F<<7 | 0x00,\n\t25466 - 19968: jis0208<<14 | 0x25<<7 | 0x47,\n\t25467 - 19968: jis0208<<14 | 0x26<<7 | 0x10,\n\t25468 - 19968: jis0212<<14 | 0x1F<<7 | 0x01,\n\t25469 - 19968: jis0212<<14 | 0x1F<<7 | 0x02,\n\t25471 - 19968: jis0212<<14 | 0x1F<<7 | 0x03,\n\t25472 - 19968: jis0208<<14 | 0x38<<7 | 0x36,\n\t25474 - 19968: jis0212<<14 | 0x1F<<7 | 0x04,\n\t25475 - 19968: jis0208<<14 | 0x20<<7 | 0x3C,\n\t25476 - 19968: jis0212<<14 | 0x1F<<7 | 0x05,\n\t25479 - 19968: jis0212<<14 | 0x1F<<7 | 0x06,\n\t25480 - 19968: jis0208<<14 | 0x1B<<7 | 0x57,\n\t25481 - 19968: jis0208<<14 | 0x38<<7 | 0x3B,\n\t25482 - 19968: jis0212<<14 | 0x1F<<7 | 0x07,\n\t25484 - 19968: jis0208<<14 | 0x1D<<7 | 0x17,\n\t25486 - 19968: jis0208<<14 | 0x38<<7 | 0x35,\n\t25487 - 19968: jis0208<<14 | 0x38<<7 | 0x3A,\n\t25488 - 19968: jis0212<<14 | 0x1F<<7 | 0x08,\n\t25490 - 19968: jis0208<<14 | 0x26<<7 | 0x32,\n\t25492 - 19968: jis0212<<14 | 0x1F<<7 | 0x09,\n\t25493 - 19968: jis0212<<14 | 0x1F<<7 | 0x0A,\n\t25494 - 19968: jis0208<<14 | 0x38<<7 | 0x34,\n\t25496 - 19968: jis0208<<14 | 0x16<<7 | 0x00,\n\t25497 - 19968: jis0212<<14 | 0x1F<<7 | 0x0B,\n\t25498 - 19968: jis0212<<14 | 0x1F<<7 | 0x0C,\n\t25499 - 19968: jis0208<<14 | 0x12<<7 | 0x3C,\n\t25502 - 19968: jis0212<<14 | 0x1F<<7 | 0x0D,\n\t25503 - 19968: jis0208<<14 | 0x38<<7 | 0x3C,\n\t25504 - 19968: jis0208<<14 | 0x2D<<7 | 0x0A,\n\t25505 - 19968: jis0208<<14 | 0x19<<7 | 0x2D,\n\t25506 - 19968: jis0208<<14 | 0x22<<7 | 0x14,\n\t25507 - 19968: jis0208<<14 | 0x38<<7 | 0x39,\n\t25508 - 19968: jis0212<<14 | 0x1F<<7 | 0x0E,\n\t25509 - 19968: jis0208<<14 | 0x1F<<7 | 0x3B,\n\t25510 - 19968: jis0212<<14 | 0x1F<<7 | 0x0F,\n\t25511 - 19968: jis0208<<14 | 0x18<<7 | 0x14,\n\t25512 - 19968: jis0208<<14 | 0x1E<<7 | 0x43,\n\t25513 - 19968: jis0208<<14 | 0x10<<7 | 0x45,\n\t25514 - 19968: jis0208<<14 | 0x20<<7 | 0x1B,\n\t25515 - 19968: jis0208<<14 | 0x38<<7 | 0x37,\n\t25516 - 19968: jis0208<<14 | 0x14<<7 | 0x24,\n\t25517 - 19968: jis0212<<14 | 0x1F<<7 | 0x10,\n\t25518 - 19968: jis0212<<14 | 0x1F<<7 | 0x11,\n\t25519 - 19968: jis0212<<14 | 0x1F<<7 | 0x12,\n\t25522 - 19968: jis0208<<14 | 0x16<<7 | 0x26,\n\t25524 - 19968: jis0208<<14 | 0x23<<7 | 0x2E,\n\t25525 - 19968: jis0208<<14 | 0x38<<7 | 0x3D,\n\t25531 - 19968: jis0208<<14 | 0x20<<7 | 0x3E,\n\t25533 - 19968: jis0212<<14 | 0x1F<<7 | 0x13,\n\t25534 - 19968: jis0208<<14 | 0x38<<7 | 0x40,\n\t25536 - 19968: jis0208<<14 | 0x38<<7 | 0x42,\n\t25537 - 19968: jis0212<<14 | 0x1F<<7 | 0x14,\n\t25539 - 19968: jis0208<<14 | 0x21<<7 | 0x16,\n\t25540 - 19968: jis0208<<14 | 0x38<<7 | 0x48,\n\t25541 - 19968: jis0212<<14 | 0x1F<<7 | 0x15,\n\t25542 - 19968: jis0208<<14 | 0x38<<7 | 0x43,\n\t25544 - 19968: jis0212<<14 | 0x1F<<7 | 0x16,\n\t25545 - 19968: jis0208<<14 | 0x38<<7 | 0x45,\n\t25550 - 19968: jis0212<<14 | 0x1F<<7 | 0x17,\n\t25551 - 19968: jis0208<<14 | 0x28<<7 | 0x20,\n\t25552 - 19968: jis0208<<14 | 0x23<<7 | 0x52,\n\t25553 - 19968: jis0212<<14 | 0x1F<<7 | 0x18,\n\t25554 - 19968: jis0208<<14 | 0x38<<7 | 0x46,\n\t25555 - 19968: jis0212<<14 | 0x1F<<7 | 0x19,\n\t25556 - 19968: jis0212<<14 | 0x1F<<7 | 0x1A,\n\t25557 - 19968: jis0212<<14 | 0x1F<<7 | 0x1B,\n\t25558 - 19968: jis0208<<14 | 0x2C<<7 | 0x0B,\n\t25562 - 19968: jis0208<<14 | 0x2C<<7 | 0x27,\n\t25563 - 19968: jis0208<<14 | 0x13<<7 | 0x18,\n\t25564 - 19968: jis0212<<14 | 0x1F<<7 | 0x1C,\n\t25568 - 19968: jis0212<<14 | 0x1F<<7 | 0x1D,\n\t25569 - 19968: jis0208<<14 | 0x0F<<7 | 0x0D,\n\t25571 - 19968: jis0208<<14 | 0x38<<7 | 0x44,\n\t25573 - 19968: jis0212<<14 | 0x1F<<7 | 0x1E,\n\t25577 - 19968: jis0208<<14 | 0x38<<7 | 0x41,\n\t25578 - 19968: jis0212<<14 | 0x1F<<7 | 0x1F,\n\t25580 - 19968: jis0212<<14 | 0x1F<<7 | 0x20,\n\t25582 - 19968: jis0208<<14 | 0x13<<7 | 0x57,\n\t25586 - 19968: jis0212<<14 | 0x1F<<7 | 0x21,\n\t25587 - 19968: jis0212<<14 | 0x1F<<7 | 0x22,\n\t25588 - 19968: jis0208<<14 | 0x10<<7 | 0x46,\n\t25589 - 19968: jis0208<<14 | 0x59<<7 | 0x0E,\n\t25590 - 19968: jis0208<<14 | 0x38<<7 | 0x47,\n\t25592 - 19968: jis0212<<14 | 0x1F<<7 | 0x24,\n\t25593 - 19968: jis0212<<14 | 0x1F<<7 | 0x25,\n\t25594 - 19968: jis0208<<14 | 0x2C<<7 | 0x28,\n\t25606 - 19968: jis0208<<14 | 0x38<<7 | 0x4B,\n\t25609 - 19968: jis0212<<14 | 0x1F<<7 | 0x26,\n\t25610 - 19968: jis0212<<14 | 0x1F<<7 | 0x27,\n\t25613 - 19968: jis0208<<14 | 0x21<<7 | 0x1A,\n\t25615 - 19968: jis0208<<14 | 0x38<<7 | 0x52,\n\t25616 - 19968: jis0212<<14 | 0x1F<<7 | 0x28,\n\t25618 - 19968: jis0212<<14 | 0x1F<<7 | 0x29,\n\t25619 - 19968: jis0208<<14 | 0x38<<7 | 0x4C,\n\t25620 - 19968: jis0212<<14 | 0x1F<<7 | 0x2A,\n\t25622 - 19968: jis0208<<14 | 0x38<<7 | 0x49,\n\t25623 - 19968: jis0208<<14 | 0x38<<7 | 0x50,\n\t25624 - 19968: jis0212<<14 | 0x1F<<7 | 0x2B,\n\t25628 - 19968: jis0208<<14 | 0x38<<7 | 0x32,\n\t25630 - 19968: jis0212<<14 | 0x1F<<7 | 0x2C,\n\t25632 - 19968: jis0212<<14 | 0x1F<<7 | 0x2D,\n\t25634 - 19968: jis0212<<14 | 0x1F<<7 | 0x2E,\n\t25636 - 19968: jis0212<<14 | 0x1F<<7 | 0x2F,\n\t25637 - 19968: jis0212<<14 | 0x1F<<7 | 0x30,\n\t25638 - 19968: jis0208<<14 | 0x38<<7 | 0x4D,\n\t25640 - 19968: jis0208<<14 | 0x38<<7 | 0x51,\n\t25641 - 19968: jis0212<<14 | 0x1F<<7 | 0x31,\n\t25642 - 19968: jis0212<<14 | 0x1F<<7 | 0x32,\n\t25644 - 19968: jis0208<<14 | 0x27<<7 | 0x21,\n\t25645 - 19968: jis0208<<14 | 0x24<<7 | 0x4A,\n\t25647 - 19968: jis0212<<14 | 0x1F<<7 | 0x33,\n\t25648 - 19968: jis0212<<14 | 0x1F<<7 | 0x34,\n\t25652 - 19968: jis0208<<14 | 0x38<<7 | 0x4A,\n\t25653 - 19968: jis0212<<14 | 0x1F<<7 | 0x35,\n\t25654 - 19968: jis0208<<14 | 0x38<<7 | 0x4E,\n\t25658 - 19968: jis0208<<14 | 0x16<<7 | 0x27,\n\t25661 - 19968: jis0212<<14 | 0x1F<<7 | 0x36,\n\t25662 - 19968: jis0208<<14 | 0x19<<7 | 0x50,\n\t25663 - 19968: jis0212<<14 | 0x1F<<7 | 0x37,\n\t25666 - 19968: jis0208<<14 | 0x1F<<7 | 0x3C,\n\t25675 - 19968: jis0212<<14 | 0x1F<<7 | 0x38,\n\t25678 - 19968: jis0208<<14 | 0x38<<7 | 0x56,\n\t25679 - 19968: jis0212<<14 | 0x1F<<7 | 0x39,\n\t25681 - 19968: jis0212<<14 | 0x1F<<7 | 0x3A,\n\t25682 - 19968: jis0212<<14 | 0x1F<<7 | 0x3B,\n\t25683 - 19968: jis0212<<14 | 0x1F<<7 | 0x3C,\n\t25684 - 19968: jis0212<<14 | 0x1F<<7 | 0x3D,\n\t25688 - 19968: jis0208<<14 | 0x24<<7 | 0x05,\n\t25690 - 19968: jis0212<<14 | 0x1F<<7 | 0x3E,\n\t25691 - 19968: jis0212<<14 | 0x1F<<7 | 0x3F,\n\t25692 - 19968: jis0212<<14 | 0x1F<<7 | 0x40,\n\t25693 - 19968: jis0212<<14 | 0x1F<<7 | 0x41,\n\t25695 - 19968: jis0212<<14 | 0x1F<<7 | 0x42,\n\t25696 - 19968: jis0208<<14 | 0x59<<7 | 0x0F,\n\t25697 - 19968: jis0212<<14 | 0x1F<<7 | 0x44,\n\t25699 - 19968: jis0212<<14 | 0x1F<<7 | 0x45,\n\t25703 - 19968: jis0208<<14 | 0x38<<7 | 0x53,\n\t25705 - 19968: jis0208<<14 | 0x2A<<7 | 0x3F,\n\t25709 - 19968: jis0212<<14 | 0x1F<<7 | 0x46,\n\t25711 - 19968: jis0208<<14 | 0x38<<7 | 0x54,\n\t25715 - 19968: jis0212<<14 | 0x1F<<7 | 0x47,\n\t25716 - 19968: jis0212<<14 | 0x1F<<7 | 0x48,\n\t25718 - 19968: jis0208<<14 | 0x38<<7 | 0x55,\n\t25720 - 19968: jis0208<<14 | 0x2B<<7 | 0x2D,\n\t25722 - 19968: jis0208<<14 | 0x1F<<7 | 0x01,\n\t25723 - 19968: jis0212<<14 | 0x1F<<7 | 0x49,\n\t25725 - 19968: jis0212<<14 | 0x1F<<7 | 0x4A,\n\t25731 - 19968: jis0208<<14 | 0x16<<7 | 0x41,\n\t25733 - 19968: jis0212<<14 | 0x1F<<7 | 0x4B,\n\t25735 - 19968: jis0212<<14 | 0x1F<<7 | 0x4C,\n\t25736 - 19968: jis0208<<14 | 0x38<<7 | 0x5C,\n\t25743 - 19968: jis0212<<14 | 0x1F<<7 | 0x4D,\n\t25744 - 19968: jis0212<<14 | 0x1F<<7 | 0x4E,\n\t25745 - 19968: jis0212<<14 | 0x1F<<7 | 0x4F,\n\t25746 - 19968: jis0208<<14 | 0x1A<<7 | 0x14,\n\t25747 - 19968: jis0208<<14 | 0x38<<7 | 0x59,\n\t25749 - 19968: jis0208<<14 | 0x38<<7 | 0x58,\n\t25752 - 19968: jis0212<<14 | 0x1F<<7 | 0x50,\n\t25753 - 19968: jis0212<<14 | 0x1F<<7 | 0x51,\n\t25754 - 19968: jis0208<<14 | 0x26<<7 | 0x11,\n\t25755 - 19968: jis0212<<14 | 0x1F<<7 | 0x52,\n\t25757 - 19968: jis0208<<14 | 0x59<<7 | 0x10,\n\t25758 - 19968: jis0208<<14 | 0x25<<7 | 0x14,\n\t25759 - 19968: jis0212<<14 | 0x1F<<7 | 0x54,\n\t25761 - 19968: jis0212<<14 | 0x1F<<7 | 0x55,\n\t25763 - 19968: jis0212<<14 | 0x1F<<7 | 0x56,\n\t25764 - 19968: jis0208<<14 | 0x24<<7 | 0x10,\n\t25765 - 19968: jis0208<<14 | 0x38<<7 | 0x5A,\n\t25766 - 19968: jis0212<<14 | 0x1F<<7 | 0x57,\n\t25768 - 19968: jis0212<<14 | 0x1F<<7 | 0x58,\n\t25769 - 19968: jis0208<<14 | 0x38<<7 | 0x5B,\n\t25771 - 19968: jis0208<<14 | 0x28<<7 | 0x4E,\n\t25772 - 19968: jis0212<<14 | 0x1F<<7 | 0x59,\n\t25773 - 19968: jis0208<<14 | 0x26<<7 | 0x24,\n\t25774 - 19968: jis0208<<14 | 0x1A<<7 | 0x02,\n\t25776 - 19968: jis0208<<14 | 0x1F<<7 | 0x50,\n\t25778 - 19968: jis0208<<14 | 0x2A<<7 | 0x2F,\n\t25779 - 19968: jis0212<<14 | 0x1F<<7 | 0x5A,\n\t25785 - 19968: jis0208<<14 | 0x12<<7 | 0x28,\n\t25787 - 19968: jis0208<<14 | 0x39<<7 | 0x04,\n\t25788 - 19968: jis0208<<14 | 0x38<<7 | 0x5D,\n\t25789 - 19968: jis0212<<14 | 0x1F<<7 | 0x5B,\n\t25790 - 19968: jis0212<<14 | 0x1F<<7 | 0x5C,\n\t25791 - 19968: jis0212<<14 | 0x1F<<7 | 0x5D,\n\t25793 - 19968: jis0208<<14 | 0x2C<<7 | 0x29,\n\t25794 - 19968: jis0208<<14 | 0x39<<7 | 0x06,\n\t25796 - 19968: jis0212<<14 | 0x20<<7 | 0x00,\n\t25797 - 19968: jis0208<<14 | 0x39<<7 | 0x02,\n\t25799 - 19968: jis0208<<14 | 0x39<<7 | 0x03,\n\t25801 - 19968: jis0212<<14 | 0x20<<7 | 0x01,\n\t25802 - 19968: jis0212<<14 | 0x20<<7 | 0x02,\n\t25803 - 19968: jis0212<<14 | 0x20<<7 | 0x03,\n\t25804 - 19968: jis0212<<14 | 0x20<<7 | 0x04,\n\t25805 - 19968: jis0208<<14 | 0x20<<7 | 0x3F,\n\t25806 - 19968: jis0208<<14 | 0x59<<7 | 0x11,\n\t25808 - 19968: jis0212<<14 | 0x20<<7 | 0x06,\n\t25809 - 19968: jis0212<<14 | 0x20<<7 | 0x07,\n\t25810 - 19968: jis0208<<14 | 0x39<<7 | 0x01,\n\t25812 - 19968: jis0208<<14 | 0x38<<7 | 0x1E,\n\t25813 - 19968: jis0212<<14 | 0x20<<7 | 0x08,\n\t25815 - 19968: jis0212<<14 | 0x20<<7 | 0x09,\n\t25816 - 19968: jis0208<<14 | 0x39<<7 | 0x05,\n\t25818 - 19968: jis0208<<14 | 0x39<<7 | 0x00,\n\t25824 - 19968: jis0208<<14 | 0x39<<7 | 0x0A,\n\t25825 - 19968: jis0208<<14 | 0x39<<7 | 0x0B,\n\t25826 - 19968: jis0208<<14 | 0x24<<7 | 0x06,\n\t25827 - 19968: jis0208<<14 | 0x39<<7 | 0x0D,\n\t25828 - 19968: jis0212<<14 | 0x20<<7 | 0x0A,\n\t25829 - 19968: jis0212<<14 | 0x20<<7 | 0x0B,\n\t25830 - 19968: jis0208<<14 | 0x1A<<7 | 0x03,\n\t25831 - 19968: jis0208<<14 | 0x39<<7 | 0x08,\n\t25833 - 19968: jis0212<<14 | 0x20<<7 | 0x0C,\n\t25834 - 19968: jis0212<<14 | 0x20<<7 | 0x0D,\n\t25836 - 19968: jis0208<<14 | 0x14<<7 | 0x1B,\n\t25837 - 19968: jis0212<<14 | 0x20<<7 | 0x0E,\n\t25839 - 19968: jis0208<<14 | 0x39<<7 | 0x0E,\n\t25840 - 19968: jis0212<<14 | 0x20<<7 | 0x0F,\n\t25841 - 19968: jis0208<<14 | 0x39<<7 | 0x07,\n\t25842 - 19968: jis0208<<14 | 0x39<<7 | 0x12,\n\t25844 - 19968: jis0208<<14 | 0x39<<7 | 0x11,\n\t25845 - 19968: jis0212<<14 | 0x20<<7 | 0x10,\n\t25846 - 19968: jis0208<<14 | 0x39<<7 | 0x10,\n\t25847 - 19968: jis0212<<14 | 0x20<<7 | 0x11,\n\t25850 - 19968: jis0208<<14 | 0x39<<7 | 0x13,\n\t25851 - 19968: jis0212<<14 | 0x20<<7 | 0x12,\n\t25853 - 19968: jis0208<<14 | 0x39<<7 | 0x15,\n\t25854 - 19968: jis0208<<14 | 0x1D<<7 | 0x50,\n\t25855 - 19968: jis0212<<14 | 0x20<<7 | 0x13,\n\t25856 - 19968: jis0208<<14 | 0x39<<7 | 0x14,\n\t25857 - 19968: jis0212<<14 | 0x20<<7 | 0x14,\n\t25860 - 19968: jis0212<<14 | 0x20<<7 | 0x15,\n\t25861 - 19968: jis0208<<14 | 0x39<<7 | 0x18,\n\t25864 - 19968: jis0212<<14 | 0x20<<7 | 0x16,\n\t25865 - 19968: jis0212<<14 | 0x20<<7 | 0x17,\n\t25866 - 19968: jis0212<<14 | 0x20<<7 | 0x18,\n\t25871 - 19968: jis0212<<14 | 0x20<<7 | 0x19,\n\t25875 - 19968: jis0212<<14 | 0x20<<7 | 0x1A,\n\t25876 - 19968: jis0212<<14 | 0x20<<7 | 0x1B,\n\t25878 - 19968: jis0212<<14 | 0x20<<7 | 0x1C,\n\t25880 - 19968: jis0208<<14 | 0x39<<7 | 0x16,\n\t25881 - 19968: jis0212<<14 | 0x20<<7 | 0x1D,\n\t25883 - 19968: jis0212<<14 | 0x20<<7 | 0x1E,\n\t25884 - 19968: jis0208<<14 | 0x39<<7 | 0x17,\n\t25885 - 19968: jis0208<<14 | 0x38<<7 | 0x4F,\n\t25886 - 19968: jis0212<<14 | 0x20<<7 | 0x1F,\n\t25887 - 19968: jis0212<<14 | 0x20<<7 | 0x20,\n\t25890 - 19968: jis0212<<14 | 0x20<<7 | 0x21,\n\t25891 - 19968: jis0208<<14 | 0x39<<7 | 0x1A,\n\t25892 - 19968: jis0208<<14 | 0x39<<7 | 0x19,\n\t25894 - 19968: jis0212<<14 | 0x20<<7 | 0x22,\n\t25897 - 19968: jis0212<<14 | 0x20<<7 | 0x23,\n\t25898 - 19968: jis0208<<14 | 0x38<<7 | 0x57,\n\t25899 - 19968: jis0208<<14 | 0x39<<7 | 0x1B,\n\t25900 - 19968: jis0208<<14 | 0x39<<7 | 0x0F,\n\t25902 - 19968: jis0212<<14 | 0x20<<7 | 0x24,\n\t25903 - 19968: jis0208<<14 | 0x1A<<7 | 0x38,\n\t25905 - 19968: jis0212<<14 | 0x20<<7 | 0x25,\n\t25908 - 19968: jis0208<<14 | 0x39<<7 | 0x1C,\n\t25909 - 19968: jis0208<<14 | 0x39<<7 | 0x1D,\n\t25910 - 19968: jis0208<<14 | 0x39<<7 | 0x1F,\n\t25911 - 19968: jis0208<<14 | 0x39<<7 | 0x1E,\n\t25912 - 19968: jis0208<<14 | 0x39<<7 | 0x20,\n\t25913 - 19968: jis0208<<14 | 0x11<<7 | 0x5D,\n\t25914 - 19968: jis0212<<14 | 0x20<<7 | 0x26,\n\t25915 - 19968: jis0208<<14 | 0x18<<7 | 0x15,\n\t25916 - 19968: jis0212<<14 | 0x20<<7 | 0x27,\n\t25917 - 19968: jis0212<<14 | 0x20<<7 | 0x28,\n\t25918 - 19968: jis0208<<14 | 0x29<<7 | 0x5B,\n\t25919 - 19968: jis0208<<14 | 0x1F<<7 | 0x0E,\n\t25923 - 19968: jis0212<<14 | 0x20<<7 | 0x29,\n\t25925 - 19968: jis0208<<14 | 0x17<<7 | 0x2D,\n\t25927 - 19968: jis0212<<14 | 0x20<<7 | 0x2A,\n\t25928 - 19968: jis0208<<14 | 0x39<<7 | 0x22,\n\t25929 - 19968: jis0212<<14 | 0x20<<7 | 0x2B,\n\t25933 - 19968: jis0208<<14 | 0x39<<7 | 0x25,\n\t25934 - 19968: jis0208<<14 | 0x59<<7 | 0x12,\n\t25935 - 19968: jis0208<<14 | 0x28<<7 | 0x31,\n\t25936 - 19968: jis0212<<14 | 0x20<<7 | 0x2C,\n\t25937 - 19968: jis0208<<14 | 0x14<<7 | 0x3E,\n\t25938 - 19968: jis0212<<14 | 0x20<<7 | 0x2D,\n\t25940 - 19968: jis0212<<14 | 0x20<<7 | 0x2E,\n\t25941 - 19968: jis0208<<14 | 0x39<<7 | 0x24,\n\t25942 - 19968: jis0208<<14 | 0x39<<7 | 0x23,\n\t25943 - 19968: jis0208<<14 | 0x26<<7 | 0x33,\n\t25944 - 19968: jis0208<<14 | 0x39<<7 | 0x26,\n\t25945 - 19968: jis0208<<14 | 0x15<<7 | 0x14,\n\t25949 - 19968: jis0208<<14 | 0x39<<7 | 0x28,\n\t25950 - 19968: jis0208<<14 | 0x39<<7 | 0x27,\n\t25951 - 19968: jis0212<<14 | 0x20<<7 | 0x2F,\n\t25952 - 19968: jis0212<<14 | 0x20<<7 | 0x30,\n\t25954 - 19968: jis0208<<14 | 0x13<<7 | 0x19,\n\t25955 - 19968: jis0208<<14 | 0x1A<<7 | 0x15,\n\t25958 - 19968: jis0208<<14 | 0x25<<7 | 0x37,\n\t25959 - 19968: jis0212<<14 | 0x20<<7 | 0x31,\n\t25963 - 19968: jis0212<<14 | 0x20<<7 | 0x32,\n\t25964 - 19968: jis0208<<14 | 0x16<<7 | 0x28,\n\t25968 - 19968: jis0208<<14 | 0x1E<<7 | 0x53,\n\t25970 - 19968: jis0208<<14 | 0x39<<7 | 0x29,\n\t25972 - 19968: jis0208<<14 | 0x1F<<7 | 0x0F,\n\t25973 - 19968: jis0208<<14 | 0x24<<7 | 0x07,\n\t25975 - 19968: jis0208<<14 | 0x28<<7 | 0x3E,\n\t25976 - 19968: jis0208<<14 | 0x39<<7 | 0x2A,\n\t25978 - 19968: jis0212<<14 | 0x20<<7 | 0x33,\n\t25981 - 19968: jis0212<<14 | 0x20<<7 | 0x34,\n\t25985 - 19968: jis0212<<14 | 0x20<<7 | 0x35,\n\t25986 - 19968: jis0208<<14 | 0x39<<7 | 0x2B,\n\t25987 - 19968: jis0208<<14 | 0x39<<7 | 0x2C,\n\t25989 - 19968: jis0212<<14 | 0x20<<7 | 0x36,\n\t25991 - 19968: jis0208<<14 | 0x29<<7 | 0x17,\n\t25992 - 19968: jis0208<<14 | 0x34<<7 | 0x3C,\n\t25993 - 19968: jis0208<<14 | 0x1F<<7 | 0x25,\n\t25994 - 19968: jis0212<<14 | 0x20<<7 | 0x37,\n\t25996 - 19968: jis0208<<14 | 0x28<<7 | 0x2B,\n\t25998 - 19968: jis0208<<14 | 0x19<<7 | 0x37,\n\t26000 - 19968: jis0208<<14 | 0x27<<7 | 0x44,\n\t26001 - 19968: jis0208<<14 | 0x27<<7 | 0x22,\n\t26002 - 19968: jis0212<<14 | 0x20<<7 | 0x38,\n\t26005 - 19968: jis0212<<14 | 0x20<<7 | 0x39,\n\t26007 - 19968: jis0208<<14 | 0x24<<7 | 0x2C,\n\t26008 - 19968: jis0212<<14 | 0x20<<7 | 0x3A,\n\t26009 - 19968: jis0208<<14 | 0x2D<<7 | 0x20,\n\t26011 - 19968: jis0208<<14 | 0x39<<7 | 0x2E,\n\t26012 - 19968: jis0208<<14 | 0x1B<<7 | 0x2F,\n\t26013 - 19968: jis0212<<14 | 0x20<<7 | 0x3B,\n\t26015 - 19968: jis0208<<14 | 0x39<<7 | 0x2F,\n\t26016 - 19968: jis0212<<14 | 0x20<<7 | 0x3C,\n\t26017 - 19968: jis0208<<14 | 0x0F<<7 | 0x15,\n\t26019 - 19968: jis0212<<14 | 0x20<<7 | 0x3D,\n\t26020 - 19968: jis0208<<14 | 0x15<<7 | 0x33,\n\t26021 - 19968: jis0208<<14 | 0x1F<<7 | 0x2C,\n\t26022 - 19968: jis0212<<14 | 0x20<<7 | 0x3E,\n\t26023 - 19968: jis0208<<14 | 0x28<<7 | 0x3F,\n\t26027 - 19968: jis0208<<14 | 0x39<<7 | 0x30,\n\t26028 - 19968: jis0208<<14 | 0x1A<<7 | 0x21,\n\t26029 - 19968: jis0208<<14 | 0x22<<7 | 0x26,\n\t26030 - 19968: jis0212<<14 | 0x20<<7 | 0x3F,\n\t26031 - 19968: jis0208<<14 | 0x1A<<7 | 0x3A,\n\t26032 - 19968: jis0208<<14 | 0x1E<<7 | 0x16,\n\t26034 - 19968: jis0212<<14 | 0x20<<7 | 0x40,\n\t26035 - 19968: jis0212<<14 | 0x20<<7 | 0x41,\n\t26036 - 19968: jis0212<<14 | 0x20<<7 | 0x42,\n\t26039 - 19968: jis0208<<14 | 0x39<<7 | 0x31,\n\t26041 - 19968: jis0208<<14 | 0x29<<7 | 0x5C,\n\t26044 - 19968: jis0208<<14 | 0x10<<7 | 0x56,\n\t26045 - 19968: jis0208<<14 | 0x1A<<7 | 0x3B,\n\t26047 - 19968: jis0212<<14 | 0x20<<7 | 0x43,\n\t26049 - 19968: jis0208<<14 | 0x39<<7 | 0x34,\n\t26050 - 19968: jis0212<<14 | 0x20<<7 | 0x44,\n\t26051 - 19968: jis0208<<14 | 0x39<<7 | 0x32,\n\t26052 - 19968: jis0208<<14 | 0x39<<7 | 0x35,\n\t26053 - 19968: jis0208<<14 | 0x2D<<7 | 0x18,\n\t26054 - 19968: jis0208<<14 | 0x39<<7 | 0x33,\n\t26056 - 19968: jis0212<<14 | 0x20<<7 | 0x45,\n\t26057 - 19968: jis0212<<14 | 0x20<<7 | 0x46,\n\t26059 - 19968: jis0208<<14 | 0x1F<<7 | 0x5A,\n\t26060 - 19968: jis0208<<14 | 0x39<<7 | 0x36,\n\t26062 - 19968: jis0212<<14 | 0x20<<7 | 0x47,\n\t26063 - 19968: jis0208<<14 | 0x21<<7 | 0x11,\n\t26064 - 19968: jis0212<<14 | 0x20<<7 | 0x48,\n\t26066 - 19968: jis0208<<14 | 0x39<<7 | 0x37,\n\t26068 - 19968: jis0212<<14 | 0x20<<7 | 0x49,\n\t26070 - 19968: jis0212<<14 | 0x20<<7 | 0x4A,\n\t26071 - 19968: jis0208<<14 | 0x13<<7 | 0x59,\n\t26072 - 19968: jis0212<<14 | 0x20<<7 | 0x4B,\n\t26073 - 19968: jis0208<<14 | 0x39<<7 | 0x39,\n\t26075 - 19968: jis0208<<14 | 0x39<<7 | 0x38,\n\t26079 - 19968: jis0212<<14 | 0x20<<7 | 0x4C,\n\t26080 - 19968: jis0208<<14 | 0x39<<7 | 0x3A,\n\t26081 - 19968: jis0208<<14 | 0x39<<7 | 0x3B,\n\t26082 - 19968: jis0208<<14 | 0x13<<7 | 0x5A,\n\t26085 - 19968: jis0208<<14 | 0x25<<7 | 0x5B,\n\t26086 - 19968: jis0208<<14 | 0x22<<7 | 0x15,\n\t26087 - 19968: jis0208<<14 | 0x14<<7 | 0x4B,\n\t26088 - 19968: jis0208<<14 | 0x1A<<7 | 0x3C,\n\t26089 - 19968: jis0208<<14 | 0x20<<7 | 0x40,\n\t26092 - 19968: jis0208<<14 | 0x1C<<7 | 0x3B,\n\t26093 - 19968: jis0208<<14 | 0x0F<<7 | 0x0F,\n\t26096 - 19968: jis0212<<14 | 0x20<<7 | 0x4D,\n\t26097 - 19968: jis0208<<14 | 0x39<<7 | 0x3C,\n\t26098 - 19968: jis0212<<14 | 0x20<<7 | 0x4E,\n\t26100 - 19968: jis0212<<14 | 0x20<<7 | 0x4F,\n\t26101 - 19968: jis0212<<14 | 0x20<<7 | 0x50,\n\t26105 - 19968: jis0212<<14 | 0x20<<7 | 0x51,\n\t26106 - 19968: jis0208<<14 | 0x11<<7 | 0x01,\n\t26107 - 19968: jis0208<<14 | 0x39<<7 | 0x40,\n\t26110 - 19968: jis0212<<14 | 0x20<<7 | 0x52,\n\t26111 - 19968: jis0212<<14 | 0x20<<7 | 0x53,\n\t26112 - 19968: jis0208<<14 | 0x59<<7 | 0x13,\n\t26114 - 19968: jis0208<<14 | 0x18<<7 | 0x16,\n\t26115 - 19968: jis0208<<14 | 0x39<<7 | 0x3F,\n\t26116 - 19968: jis0212<<14 | 0x20<<7 | 0x55,\n\t26118 - 19968: jis0208<<14 | 0x19<<7 | 0x0A,\n\t26119 - 19968: jis0208<<14 | 0x1D<<7 | 0x19,\n\t26120 - 19968: jis0212<<14 | 0x20<<7 | 0x56,\n\t26121 - 19968: jis0208<<14 | 0x59<<7 | 0x16,\n\t26122 - 19968: jis0208<<14 | 0x39<<7 | 0x3E,\n\t26124 - 19968: jis0208<<14 | 0x1D<<7 | 0x1A,\n\t26125 - 19968: jis0212<<14 | 0x20<<7 | 0x58,\n\t26126 - 19968: jis0208<<14 | 0x2B<<7 | 0x1F,\n\t26127 - 19968: jis0208<<14 | 0x19<<7 | 0x09,\n\t26129 - 19968: jis0212<<14 | 0x20<<7 | 0x59,\n\t26130 - 19968: jis0212<<14 | 0x20<<7 | 0x5A,\n\t26131 - 19968: jis0208<<14 | 0x0F<<7 | 0x36,\n\t26132 - 19968: jis0208<<14 | 0x1F<<7 | 0x2D,\n\t26133 - 19968: jis0208<<14 | 0x59<<7 | 0x14,\n\t26134 - 19968: jis0212<<14 | 0x20<<7 | 0x5C,\n\t26140 - 19968: jis0208<<14 | 0x39<<7 | 0x45,\n\t26141 - 19968: jis0212<<14 | 0x20<<7 | 0x5D,\n\t26142 - 19968: jis0208<<14 | 0x59<<7 | 0x18,\n\t26143 - 19968: jis0208<<14 | 0x1F<<7 | 0x10,\n\t26144 - 19968: jis0208<<14 | 0x10<<7 | 0x26,\n\t26145 - 19968: jis0212<<14 | 0x21<<7 | 0x01,\n\t26146 - 19968: jis0212<<14 | 0x21<<7 | 0x02,\n\t26147 - 19968: jis0212<<14 | 0x21<<7 | 0x03,\n\t26148 - 19968: jis0208<<14 | 0x59<<7 | 0x19,\n\t26149 - 19968: jis0208<<14 | 0x1C<<7 | 0x34,\n\t26150 - 19968: jis0212<<14 | 0x21<<7 | 0x05,\n\t26151 - 19968: jis0208<<14 | 0x2A<<7 | 0x45,\n\t26152 - 19968: jis0208<<14 | 0x19<<7 | 0x51,\n\t26153 - 19968: jis0212<<14 | 0x21<<7 | 0x06,\n\t26154 - 19968: jis0212<<14 | 0x21<<7 | 0x07,\n\t26155 - 19968: jis0212<<14 | 0x21<<7 | 0x08,\n\t26156 - 19968: jis0212<<14 | 0x21<<7 | 0x09,\n\t26157 - 19968: jis0208<<14 | 0x1D<<7 | 0x1B,\n\t26158 - 19968: jis0208<<14 | 0x59<<7 | 0x17,\n\t26159 - 19968: jis0208<<14 | 0x1F<<7 | 0x06,\n\t26160 - 19968: jis0212<<14 | 0x21<<7 | 0x0B,\n\t26161 - 19968: jis0208<<14 | 0x58<<7 | 0x07,\n\t26163 - 19968: jis0212<<14 | 0x21<<7 | 0x0D,\n\t26164 - 19968: jis0208<<14 | 0x39<<7 | 0x44,\n\t26165 - 19968: jis0208<<14 | 0x39<<7 | 0x42,\n\t26166 - 19968: jis0208<<14 | 0x39<<7 | 0x43,\n\t26167 - 19968: jis0212<<14 | 0x21<<7 | 0x0F,\n\t26169 - 19968: jis0212<<14 | 0x21<<7 | 0x0E,\n\t26171 - 19968: jis0208<<14 | 0x59<<7 | 0x15,\n\t26172 - 19968: jis0208<<14 | 0x22<<7 | 0x4A,\n\t26175 - 19968: jis0208<<14 | 0x3A<<7 | 0x05,\n\t26176 - 19968: jis0212<<14 | 0x21<<7 | 0x10,\n\t26177 - 19968: jis0208<<14 | 0x39<<7 | 0x49,\n\t26178 - 19968: jis0208<<14 | 0x1A<<7 | 0x5D,\n\t26179 - 19968: jis0208<<14 | 0x18<<7 | 0x17,\n\t26180 - 19968: jis0208<<14 | 0x39<<7 | 0x47,\n\t26181 - 19968: jis0212<<14 | 0x21<<7 | 0x11,\n\t26182 - 19968: jis0212<<14 | 0x21<<7 | 0x12,\n\t26185 - 19968: jis0208<<14 | 0x39<<7 | 0x48,\n\t26186 - 19968: jis0212<<14 | 0x21<<7 | 0x13,\n\t26187 - 19968: jis0208<<14 | 0x1E<<7 | 0x17,\n\t26188 - 19968: jis0212<<14 | 0x21<<7 | 0x14,\n\t26190 - 19968: jis0212<<14 | 0x21<<7 | 0x16,\n\t26191 - 19968: jis0208<<14 | 0x39<<7 | 0x46,\n\t26193 - 19968: jis0212<<14 | 0x21<<7 | 0x15,\n\t26194 - 19968: jis0208<<14 | 0x1A<<7 | 0x0E,\n\t26199 - 19968: jis0208<<14 | 0x59<<7 | 0x1B,\n\t26200 - 19968: jis0212<<14 | 0x21<<7 | 0x18,\n\t26201 - 19968: jis0208<<14 | 0x59<<7 | 0x1C,\n\t26203 - 19968: jis0212<<14 | 0x21<<7 | 0x1A,\n\t26204 - 19968: jis0212<<14 | 0x21<<7 | 0x1B,\n\t26205 - 19968: jis0208<<14 | 0x39<<7 | 0x4B,\n\t26206 - 19968: jis0208<<14 | 0x39<<7 | 0x4A,\n\t26207 - 19968: jis0208<<14 | 0x39<<7 | 0x4F,\n\t26208 - 19968: jis0212<<14 | 0x21<<7 | 0x1C,\n\t26209 - 19968: jis0212<<14 | 0x21<<7 | 0x1D,\n\t26210 - 19968: jis0208<<14 | 0x39<<7 | 0x50,\n\t26212 - 19968: jis0208<<14 | 0x39<<7 | 0x4C,\n\t26213 - 19968: jis0208<<14 | 0x59<<7 | 0x1A,\n\t26214 - 19968: jis0208<<14 | 0x12<<7 | 0x01,\n\t26215 - 19968: jis0208<<14 | 0x39<<7 | 0x4D,\n\t26216 - 19968: jis0208<<14 | 0x39<<7 | 0x4E,\n\t26217 - 19968: jis0208<<14 | 0x27<<7 | 0x34,\n\t26218 - 19968: jis0212<<14 | 0x21<<7 | 0x1F,\n\t26219 - 19968: jis0212<<14 | 0x21<<7 | 0x20,\n\t26220 - 19968: jis0212<<14 | 0x21<<7 | 0x21,\n\t26222 - 19968: jis0208<<14 | 0x28<<7 | 0x40,\n\t26223 - 19968: jis0208<<14 | 0x16<<7 | 0x29,\n\t26224 - 19968: jis0208<<14 | 0x39<<7 | 0x51,\n\t26227 - 19968: jis0208<<14 | 0x59<<7 | 0x1E,\n\t26228 - 19968: jis0208<<14 | 0x1F<<7 | 0x11,\n\t26229 - 19968: jis0212<<14 | 0x21<<7 | 0x24,\n\t26230 - 19968: jis0208<<14 | 0x1D<<7 | 0x1C,\n\t26231 - 19968: jis0212<<14 | 0x21<<7 | 0x26,\n\t26232 - 19968: jis0212<<14 | 0x21<<7 | 0x27,\n\t26233 - 19968: jis0212<<14 | 0x21<<7 | 0x28,\n\t26234 - 19968: jis0208<<14 | 0x22<<7 | 0x31,\n\t26235 - 19968: jis0212<<14 | 0x21<<7 | 0x29,\n\t26236 - 19968: jis0212<<14 | 0x21<<7 | 0x2B,\n\t26238 - 19968: jis0212<<14 | 0x21<<7 | 0x22,\n\t26239 - 19968: jis0212<<14 | 0x21<<7 | 0x25,\n\t26240 - 19968: jis0212<<14 | 0x21<<7 | 0x2A,\n\t26241 - 19968: jis0208<<14 | 0x15<<7 | 0x26,\n\t26243 - 19968: jis0208<<14 | 0x39<<7 | 0x52,\n\t26244 - 19968: jis0208<<14 | 0x39<<7 | 0x56,\n\t26247 - 19968: jis0208<<14 | 0x11<<7 | 0x2A,\n\t26248 - 19968: jis0208<<14 | 0x39<<7 | 0x53,\n\t26249 - 19968: jis0208<<14 | 0x39<<7 | 0x55,\n\t26251 - 19968: jis0212<<14 | 0x21<<7 | 0x2C,\n\t26252 - 19968: jis0212<<14 | 0x21<<7 | 0x2D,\n\t26253 - 19968: jis0212<<14 | 0x21<<7 | 0x2E,\n\t26254 - 19968: jis0208<<14 | 0x39<<7 | 0x54,\n\t26256 - 19968: jis0212<<14 | 0x21<<7 | 0x2F,\n\t26257 - 19968: jis0208<<14 | 0x1C<<7 | 0x4A,\n\t26258 - 19968: jis0212<<14 | 0x21<<7 | 0x30,\n\t26262 - 19968: jis0208<<14 | 0x22<<7 | 0x27,\n\t26263 - 19968: jis0208<<14 | 0x0F<<7 | 0x24,\n\t26264 - 19968: jis0208<<14 | 0x39<<7 | 0x57,\n\t26265 - 19968: jis0208<<14 | 0x59<<7 | 0x1F,\n\t26266 - 19968: jis0212<<14 | 0x21<<7 | 0x32,\n\t26267 - 19968: jis0212<<14 | 0x21<<7 | 0x33,\n\t26268 - 19968: jis0212<<14 | 0x21<<7 | 0x34,\n\t26269 - 19968: jis0208<<14 | 0x39<<7 | 0x58,\n\t26271 - 19968: jis0212<<14 | 0x21<<7 | 0x35,\n\t26272 - 19968: jis0208<<14 | 0x59<<7 | 0x20,\n\t26274 - 19968: jis0208<<14 | 0x23<<7 | 0x09,\n\t26276 - 19968: jis0212<<14 | 0x21<<7 | 0x37,\n\t26278 - 19968: jis0208<<14 | 0x2D<<7 | 0x50,\n\t26283 - 19968: jis0208<<14 | 0x1A<<7 | 0x22,\n\t26285 - 19968: jis0212<<14 | 0x21<<7 | 0x38,\n\t26286 - 19968: jis0208<<14 | 0x29<<7 | 0x4A,\n\t26289 - 19968: jis0212<<14 | 0x21<<7 | 0x39,\n\t26290 - 19968: jis0208<<14 | 0x59<<7 | 0x21,\n\t26292 - 19968: jis0208<<14 | 0x2A<<7 | 0x1C,\n\t26293 - 19968: jis0212<<14 | 0x21<<7 | 0x3B,\n\t26296 - 19968: jis0208<<14 | 0x3A<<7 | 0x01,\n\t26297 - 19968: jis0208<<14 | 0x39<<7 | 0x5A,\n\t26299 - 19968: jis0212<<14 | 0x21<<7 | 0x3C,\n\t26300 - 19968: jis0208<<14 | 0x39<<7 | 0x5D,\n\t26302 - 19968: jis0208<<14 | 0x39<<7 | 0x5C,\n\t26303 - 19968: jis0208<<14 | 0x59<<7 | 0x22,\n\t26304 - 19968: jis0212<<14 | 0x21<<7 | 0x3E,\n\t26305 - 19968: jis0208<<14 | 0x39<<7 | 0x59,\n\t26306 - 19968: jis0212<<14 | 0x21<<7 | 0x3F,\n\t26307 - 19968: jis0212<<14 | 0x21<<7 | 0x40,\n\t26308 - 19968: jis0208<<14 | 0x3A<<7 | 0x00,\n\t26311 - 19968: jis0208<<14 | 0x25<<7 | 0x3D,\n\t26312 - 19968: jis0212<<14 | 0x21<<7 | 0x41,\n\t26313 - 19968: jis0208<<14 | 0x39<<7 | 0x5B,\n\t26316 - 19968: jis0212<<14 | 0x21<<7 | 0x42,\n\t26318 - 19968: jis0212<<14 | 0x21<<7 | 0x43,\n\t26319 - 19968: jis0212<<14 | 0x21<<7 | 0x44,\n\t26324 - 19968: jis0212<<14 | 0x21<<7 | 0x45,\n\t26326 - 19968: jis0208<<14 | 0x3A<<7 | 0x02,\n\t26329 - 19968: jis0208<<14 | 0x1C<<7 | 0x4B,\n\t26330 - 19968: jis0208<<14 | 0x3A<<7 | 0x03,\n\t26331 - 19968: jis0212<<14 | 0x21<<7 | 0x46,\n\t26332 - 19968: jis0208<<14 | 0x2C<<7 | 0x2A,\n\t26333 - 19968: jis0208<<14 | 0x26<<7 | 0x57,\n\t26335 - 19968: jis0212<<14 | 0x21<<7 | 0x47,\n\t26336 - 19968: jis0208<<14 | 0x3A<<7 | 0x04,\n\t26342 - 19968: jis0208<<14 | 0x3A<<7 | 0x06,\n\t26344 - 19968: jis0212<<14 | 0x21<<7 | 0x48,\n\t26345 - 19968: jis0208<<14 | 0x3A<<7 | 0x07,\n\t26347 - 19968: jis0212<<14 | 0x21<<7 | 0x49,\n\t26348 - 19968: jis0212<<14 | 0x21<<7 | 0x4A,\n\t26350 - 19968: jis0212<<14 | 0x21<<7 | 0x4B,\n\t26352 - 19968: jis0208<<14 | 0x3A<<7 | 0x08,\n\t26354 - 19968: jis0208<<14 | 0x15<<7 | 0x29,\n\t26355 - 19968: jis0208<<14 | 0x10<<7 | 0x27,\n\t26356 - 19968: jis0208<<14 | 0x18<<7 | 0x18,\n\t26357 - 19968: jis0208<<14 | 0x3A<<7 | 0x09,\n\t26359 - 19968: jis0208<<14 | 0x3A<<7 | 0x0A,\n\t26360 - 19968: jis0208<<14 | 0x1C<<7 | 0x50,\n\t26361 - 19968: jis0208<<14 | 0x20<<7 | 0x41,\n\t26362 - 19968: jis0208<<14 | 0x59<<7 | 0x23,\n\t26363 - 19968: jis0208<<14 | 0x58<<7 | 0x0A,\n\t26364 - 19968: jis0208<<14 | 0x31<<7 | 0x37,\n\t26365 - 19968: jis0208<<14 | 0x20<<7 | 0x1D,\n\t26366 - 19968: jis0208<<14 | 0x20<<7 | 0x1C,\n\t26367 - 19968: jis0208<<14 | 0x21<<7 | 0x37,\n\t26368 - 19968: jis0208<<14 | 0x19<<7 | 0x26,\n\t26371 - 19968: jis0208<<14 | 0x2F<<7 | 0x51,\n\t26373 - 19968: jis0212<<14 | 0x21<<7 | 0x4D,\n\t26375 - 19968: jis0212<<14 | 0x21<<7 | 0x4E,\n\t26376 - 19968: jis0208<<14 | 0x16<<7 | 0x4D,\n\t26377 - 19968: jis0208<<14 | 0x2C<<7 | 0x0C,\n\t26379 - 19968: jis0208<<14 | 0x29<<7 | 0x5D,\n\t26381 - 19968: jis0208<<14 | 0x28<<7 | 0x5D,\n\t26382 - 19968: jis0208<<14 | 0x59<<7 | 0x24,\n\t26383 - 19968: jis0208<<14 | 0x3A<<7 | 0x0B,\n\t26387 - 19968: jis0212<<14 | 0x21<<7 | 0x50,\n\t26388 - 19968: jis0208<<14 | 0x19<<7 | 0x52,\n\t26389 - 19968: jis0208<<14 | 0x23<<7 | 0x1E,\n\t26390 - 19968: jis0208<<14 | 0x3A<<7 | 0x0C,\n\t26391 - 19968: jis0208<<14 | 0x2E<<7 | 0x0E,\n\t26393 - 19968: jis0212<<14 | 0x21<<7 | 0x51,\n\t26395 - 19968: jis0208<<14 | 0x2A<<7 | 0x1D,\n\t26396 - 19968: jis0212<<14 | 0x21<<7 | 0x52,\n\t26397 - 19968: jis0208<<14 | 0x23<<7 | 0x0A,\n\t26398 - 19968: jis0208<<14 | 0x3A<<7 | 0x0D,\n\t26399 - 19968: jis0208<<14 | 0x13<<7 | 0x5B,\n\t26400 - 19968: jis0212<<14 | 0x21<<7 | 0x53,\n\t26402 - 19968: jis0212<<14 | 0x21<<7 | 0x54,\n\t26406 - 19968: jis0208<<14 | 0x3A<<7 | 0x0E,\n\t26407 - 19968: jis0208<<14 | 0x3A<<7 | 0x0F,\n\t26408 - 19968: jis0208<<14 | 0x2B<<7 | 0x39,\n\t26410 - 19968: jis0208<<14 | 0x2B<<7 | 0x03,\n\t26411 - 19968: jis0208<<14 | 0x2A<<7 | 0x55,\n\t26412 - 19968: jis0208<<14 | 0x2A<<7 | 0x3B,\n\t26413 - 19968: jis0208<<14 | 0x1A<<7 | 0x04,\n\t26414 - 19968: jis0208<<14 | 0x3A<<7 | 0x11,\n\t26417 - 19968: jis0208<<14 | 0x1B<<7 | 0x4A,\n\t26419 - 19968: jis0212<<14 | 0x21<<7 | 0x55,\n\t26420 - 19968: jis0208<<14 | 0x2A<<7 | 0x30,\n\t26422 - 19968: jis0208<<14 | 0x3A<<7 | 0x13,\n\t26423 - 19968: jis0208<<14 | 0x3A<<7 | 0x16,\n\t26424 - 19968: jis0208<<14 | 0x3A<<7 | 0x15,\n\t26426 - 19968: jis0208<<14 | 0x13<<7 | 0x58,\n\t26429 - 19968: jis0208<<14 | 0x14<<7 | 0x3F,\n\t26430 - 19968: jis0212<<14 | 0x21<<7 | 0x56,\n\t26431 - 19968: jis0208<<14 | 0x3A<<7 | 0x12,\n\t26433 - 19968: jis0208<<14 | 0x3A<<7 | 0x14,\n\t26437 - 19968: jis0212<<14 | 0x21<<7 | 0x57,\n\t26438 - 19968: jis0208<<14 | 0x3A<<7 | 0x17,\n\t26439 - 19968: jis0212<<14 | 0x21<<7 | 0x58,\n\t26440 - 19968: jis0212<<14 | 0x21<<7 | 0x59,\n\t26441 - 19968: jis0208<<14 | 0x1E<<7 | 0x58,\n\t26444 - 19968: jis0212<<14 | 0x21<<7 | 0x5A,\n\t26446 - 19968: jis0208<<14 | 0x2C<<7 | 0x5A,\n\t26447 - 19968: jis0208<<14 | 0x0F<<7 | 0x28,\n\t26448 - 19968: jis0208<<14 | 0x19<<7 | 0x3F,\n\t26449 - 19968: jis0208<<14 | 0x21<<7 | 0x1B,\n\t26451 - 19968: jis0208<<14 | 0x1B<<7 | 0x3C,\n\t26452 - 19968: jis0212<<14 | 0x21<<7 | 0x5B,\n\t26453 - 19968: jis0212<<14 | 0x21<<7 | 0x5C,\n\t26454 - 19968: jis0208<<14 | 0x1D<<7 | 0x52,\n\t26457 - 19968: jis0208<<14 | 0x3A<<7 | 0x1A,\n\t26460 - 19968: jis0208<<14 | 0x24<<7 | 0x2D,\n\t26461 - 19968: jis0212<<14 | 0x21<<7 | 0x5D,\n\t26462 - 19968: jis0208<<14 | 0x3A<<7 | 0x18,\n\t26463 - 19968: jis0208<<14 | 0x21<<7 | 0x0A,\n\t26464 - 19968: jis0208<<14 | 0x3A<<7 | 0x19,\n\t26465 - 19968: jis0208<<14 | 0x1D<<7 | 0x51,\n\t26466 - 19968: jis0208<<14 | 0x2B<<7 | 0x3C,\n\t26467 - 19968: jis0208<<14 | 0x3A<<7 | 0x1B,\n\t26468 - 19968: jis0208<<14 | 0x3A<<7 | 0x1C,\n\t26469 - 19968: jis0208<<14 | 0x2C<<7 | 0x47,\n\t26470 - 19968: jis0208<<14 | 0x59<<7 | 0x26,\n\t26474 - 19968: jis0208<<14 | 0x3A<<7 | 0x21,\n\t26476 - 19968: jis0212<<14 | 0x22<<7 | 0x01,\n\t26477 - 19968: jis0208<<14 | 0x18<<7 | 0x19,\n\t26478 - 19968: jis0212<<14 | 0x22<<7 | 0x02,\n\t26479 - 19968: jis0208<<14 | 0x26<<7 | 0x34,\n\t26480 - 19968: jis0208<<14 | 0x3A<<7 | 0x1E,\n\t26481 - 19968: jis0208<<14 | 0x24<<7 | 0x4B,\n\t26482 - 19968: jis0208<<14 | 0x39<<7 | 0x3D,\n\t26483 - 19968: jis0208<<14 | 0x39<<7 | 0x41,\n\t26484 - 19968: jis0212<<14 | 0x22<<7 | 0x03,\n\t26485 - 19968: jis0208<<14 | 0x14<<7 | 0x2E,\n\t26486 - 19968: jis0212<<14 | 0x22<<7 | 0x04,\n\t26487 - 19968: jis0208<<14 | 0x26<<7 | 0x26,\n\t26491 - 19968: jis0212<<14 | 0x22<<7 | 0x05,\n\t26492 - 19968: jis0208<<14 | 0x3A<<7 | 0x20,\n\t26494 - 19968: jis0208<<14 | 0x1D<<7 | 0x1D,\n\t26495 - 19968: jis0208<<14 | 0x27<<7 | 0x23,\n\t26497 - 19968: jis0212<<14 | 0x22<<7 | 0x06,\n\t26500 - 19968: jis0212<<14 | 0x22<<7 | 0x07,\n\t26501 - 19968: jis0208<<14 | 0x3A<<7 | 0x26,\n\t26503 - 19968: jis0208<<14 | 0x27<<7 | 0x59,\n\t26505 - 19968: jis0208<<14 | 0x3A<<7 | 0x1D,\n\t26507 - 19968: jis0208<<14 | 0x3A<<7 | 0x23,\n\t26508 - 19968: jis0208<<14 | 0x3A<<7 | 0x22,\n\t26510 - 19968: jis0212<<14 | 0x22<<7 | 0x08,\n\t26511 - 19968: jis0212<<14 | 0x22<<7 | 0x09,\n\t26512 - 19968: jis0208<<14 | 0x1F<<7 | 0x2E,\n\t26513 - 19968: jis0212<<14 | 0x22<<7 | 0x0A,\n\t26515 - 19968: jis0212<<14 | 0x22<<7 | 0x0B,\n\t26517 - 19968: jis0208<<14 | 0x2A<<7 | 0x4C,\n\t26518 - 19968: jis0212<<14 | 0x22<<7 | 0x0C,\n\t26519 - 19968: jis0208<<14 | 0x2D<<7 | 0x32,\n\t26520 - 19968: jis0212<<14 | 0x22<<7 | 0x0D,\n\t26521 - 19968: jis0212<<14 | 0x22<<7 | 0x0E,\n\t26522 - 19968: jis0208<<14 | 0x2A<<7 | 0x46,\n\t26523 - 19968: jis0212<<14 | 0x22<<7 | 0x0F,\n\t26524 - 19968: jis0208<<14 | 0x11<<7 | 0x2B,\n\t26525 - 19968: jis0208<<14 | 0x1A<<7 | 0x3D,\n\t26528 - 19968: jis0208<<14 | 0x2E<<7 | 0x27,\n\t26529 - 19968: jis0208<<14 | 0x3A<<7 | 0x25,\n\t26530 - 19968: jis0208<<14 | 0x1E<<7 | 0x54,\n\t26534 - 19968: jis0208<<14 | 0x3A<<7 | 0x24,\n\t26537 - 19968: jis0208<<14 | 0x3A<<7 | 0x1F,\n\t26543 - 19968: jis0208<<14 | 0x17<<7 | 0x2E,\n\t26544 - 19968: jis0212<<14 | 0x22<<7 | 0x10,\n\t26545 - 19968: jis0212<<14 | 0x22<<7 | 0x11,\n\t26546 - 19968: jis0212<<14 | 0x22<<7 | 0x12,\n\t26547 - 19968: jis0208<<14 | 0x3A<<7 | 0x2B,\n\t26548 - 19968: jis0208<<14 | 0x3A<<7 | 0x29,\n\t26549 - 19968: jis0212<<14 | 0x22<<7 | 0x13,\n\t26550 - 19968: jis0208<<14 | 0x11<<7 | 0x2C,\n\t26551 - 19968: jis0208<<14 | 0x3A<<7 | 0x27,\n\t26552 - 19968: jis0208<<14 | 0x3A<<7 | 0x2D,\n\t26553 - 19968: jis0208<<14 | 0x3A<<7 | 0x33,\n\t26555 - 19968: jis0208<<14 | 0x59<<7 | 0x27,\n\t26556 - 19968: jis0212<<14 | 0x22<<7 | 0x15,\n\t26557 - 19968: jis0212<<14 | 0x22<<7 | 0x16,\n\t26560 - 19968: jis0208<<14 | 0x59<<7 | 0x29,\n\t26561 - 19968: jis0208<<14 | 0x21<<7 | 0x27,\n\t26562 - 19968: jis0212<<14 | 0x22<<7 | 0x19,\n\t26563 - 19968: jis0212<<14 | 0x22<<7 | 0x1A,\n\t26564 - 19968: jis0208<<14 | 0x29<<7 | 0x20,\n\t26565 - 19968: jis0212<<14 | 0x22<<7 | 0x1B,\n\t26566 - 19968: jis0208<<14 | 0x3A<<7 | 0x35,\n\t26568 - 19968: jis0212<<14 | 0x22<<7 | 0x1C,\n\t26569 - 19968: jis0212<<14 | 0x22<<7 | 0x1D,\n\t26570 - 19968: jis0208<<14 | 0x28<<7 | 0x01,\n\t26574 - 19968: jis0208<<14 | 0x3A<<7 | 0x34,\n\t26575 - 19968: jis0208<<14 | 0x26<<7 | 0x4F,\n\t26576 - 19968: jis0208<<14 | 0x2A<<7 | 0x1E,\n\t26577 - 19968: jis0208<<14 | 0x13<<7 | 0x1A,\n\t26578 - 19968: jis0212<<14 | 0x22<<7 | 0x1E,\n\t26579 - 19968: jis0208<<14 | 0x1F<<7 | 0x56,\n\t26580 - 19968: jis0208<<14 | 0x1C<<7 | 0x1F,\n\t26583 - 19968: jis0212<<14 | 0x22<<7 | 0x1F,\n\t26584 - 19968: jis0208<<14 | 0x23<<7 | 0x32,\n\t26585 - 19968: jis0212<<14 | 0x22<<7 | 0x20,\n\t26586 - 19968: jis0208<<14 | 0x2C<<7 | 0x0D,\n\t26588 - 19968: jis0212<<14 | 0x22<<7 | 0x21,\n\t26589 - 19968: jis0208<<14 | 0x3A<<7 | 0x30,\n\t26590 - 19968: jis0208<<14 | 0x3A<<7 | 0x2F,\n\t26593 - 19968: jis0212<<14 | 0x22<<7 | 0x22,\n\t26594 - 19968: jis0208<<14 | 0x3A<<7 | 0x31,\n\t26596 - 19968: jis0208<<14 | 0x3A<<7 | 0x2E,\n\t26598 - 19968: jis0212<<14 | 0x22<<7 | 0x23,\n\t26599 - 19968: jis0208<<14 | 0x3A<<7 | 0x36,\n\t26601 - 19968: jis0208<<14 | 0x3A<<7 | 0x2C,\n\t26604 - 19968: jis0208<<14 | 0x3A<<7 | 0x2A,\n\t26606 - 19968: jis0208<<14 | 0x3A<<7 | 0x32,\n\t26607 - 19968: jis0208<<14 | 0x3A<<7 | 0x28,\n\t26608 - 19968: jis0212<<14 | 0x22<<7 | 0x24,\n\t26609 - 19968: jis0208<<14 | 0x22<<7 | 0x4B,\n\t26610 - 19968: jis0212<<14 | 0x22<<7 | 0x25,\n\t26611 - 19968: jis0208<<14 | 0x2B<<7 | 0x57,\n\t26612 - 19968: jis0208<<14 | 0x1B<<7 | 0x25,\n\t26613 - 19968: jis0208<<14 | 0x19<<7 | 0x53,\n\t26614 - 19968: jis0212<<14 | 0x22<<7 | 0x26,\n\t26615 - 19968: jis0212<<14 | 0x22<<7 | 0x27,\n\t26617 - 19968: jis0212<<14 | 0x22<<7 | 0x17,\n\t26619 - 19968: jis0208<<14 | 0x19<<7 | 0x19,\n\t26622 - 19968: jis0208<<14 | 0x2A<<7 | 0x4E,\n\t26623 - 19968: jis0208<<14 | 0x12<<7 | 0x20,\n\t26625 - 19968: jis0208<<14 | 0x59<<7 | 0x2A,\n\t26626 - 19968: jis0208<<14 | 0x23<<7 | 0x2D,\n\t26627 - 19968: jis0208<<14 | 0x25<<7 | 0x29,\n\t26628 - 19968: jis0208<<14 | 0x10<<7 | 0x28,\n\t26643 - 19968: jis0208<<14 | 0x1F<<7 | 0x51,\n\t26644 - 19968: jis0212<<14 | 0x22<<7 | 0x29,\n\t26646 - 19968: jis0208<<14 | 0x1F<<7 | 0x13,\n\t26647 - 19968: jis0208<<14 | 0x16<<7 | 0x09,\n\t26649 - 19968: jis0212<<14 | 0x22<<7 | 0x2A,\n\t26653 - 19968: jis0212<<14 | 0x22<<7 | 0x2B,\n\t26654 - 19968: jis0208<<14 | 0x3A<<7 | 0x38,\n\t26655 - 19968: jis0212<<14 | 0x22<<7 | 0x2C,\n\t26657 - 19968: jis0208<<14 | 0x18<<7 | 0x1A,\n\t26658 - 19968: jis0208<<14 | 0x12<<7 | 0x5B,\n\t26663 - 19968: jis0212<<14 | 0x22<<7 | 0x2E,\n\t26664 - 19968: jis0212<<14 | 0x22<<7 | 0x2D,\n\t26665 - 19968: jis0208<<14 | 0x3A<<7 | 0x3A,\n\t26666 - 19968: jis0208<<14 | 0x12<<7 | 0x53,\n\t26667 - 19968: jis0208<<14 | 0x3A<<7 | 0x40,\n\t26668 - 19968: jis0212<<14 | 0x22<<7 | 0x2F,\n\t26669 - 19968: jis0212<<14 | 0x22<<7 | 0x30,\n\t26671 - 19968: jis0212<<14 | 0x22<<7 | 0x31,\n\t26672 - 19968: jis0212<<14 | 0x22<<7 | 0x32,\n\t26673 - 19968: jis0212<<14 | 0x22<<7 | 0x33,\n\t26674 - 19968: jis0208<<14 | 0x3A<<7 | 0x3D,\n\t26675 - 19968: jis0212<<14 | 0x22<<7 | 0x34,\n\t26676 - 19968: jis0208<<14 | 0x1F<<7 | 0x52,\n\t26680 - 19968: jis0208<<14 | 0x12<<7 | 0x2A,\n\t26681 - 19968: jis0208<<14 | 0x19<<7 | 0x0B,\n\t26683 - 19968: jis0212<<14 | 0x22<<7 | 0x35,\n\t26684 - 19968: jis0208<<14 | 0x12<<7 | 0x29,\n\t26685 - 19968: jis0208<<14 | 0x19<<7 | 0x2E,\n\t26687 - 19968: jis0212<<14 | 0x22<<7 | 0x36,\n\t26688 - 19968: jis0208<<14 | 0x3A<<7 | 0x3B,\n\t26689 - 19968: jis0208<<14 | 0x16<<7 | 0x44,\n\t26690 - 19968: jis0208<<14 | 0x16<<7 | 0x2A,\n\t26691 - 19968: jis0208<<14 | 0x24<<7 | 0x4C,\n\t26692 - 19968: jis0208<<14 | 0x59<<7 | 0x2B,\n\t26693 - 19968: jis0212<<14 | 0x22<<7 | 0x38,\n\t26694 - 19968: jis0208<<14 | 0x3A<<7 | 0x39,\n\t26696 - 19968: jis0208<<14 | 0x0F<<7 | 0x25,\n\t26698 - 19968: jis0212<<14 | 0x22<<7 | 0x39,\n\t26700 - 19968: jis0212<<14 | 0x22<<7 | 0x3A,\n\t26701 - 19968: jis0208<<14 | 0x3A<<7 | 0x3C,\n\t26702 - 19968: jis0208<<14 | 0x3A<<7 | 0x3E,\n\t26704 - 19968: jis0208<<14 | 0x15<<7 | 0x2C,\n\t26705 - 19968: jis0208<<14 | 0x16<<7 | 0x0B,\n\t26706 - 19968: jis0208<<14 | 0x59<<7 | 0x28,\n\t26707 - 19968: jis0208<<14 | 0x13<<7 | 0x1B,\n\t26708 - 19968: jis0208<<14 | 0x14<<7 | 0x2A,\n\t26709 - 19968: jis0212<<14 | 0x22<<7 | 0x3B,\n\t26711 - 19968: jis0212<<14 | 0x22<<7 | 0x3C,\n\t26712 - 19968: jis0212<<14 | 0x22<<7 | 0x3D,\n\t26713 - 19968: jis0208<<14 | 0x3A<<7 | 0x41,\n\t26715 - 19968: jis0212<<14 | 0x22<<7 | 0x3E,\n\t26716 - 19968: jis0208<<14 | 0x19<<7 | 0x58,\n\t26717 - 19968: jis0208<<14 | 0x2A<<7 | 0x50,\n\t26719 - 19968: jis0208<<14 | 0x1A<<7 | 0x16,\n\t26723 - 19968: jis0208<<14 | 0x3A<<7 | 0x42,\n\t26727 - 19968: jis0208<<14 | 0x28<<7 | 0x0F,\n\t26731 - 19968: jis0212<<14 | 0x22<<7 | 0x3F,\n\t26734 - 19968: jis0212<<14 | 0x22<<7 | 0x40,\n\t26735 - 19968: jis0212<<14 | 0x22<<7 | 0x41,\n\t26736 - 19968: jis0212<<14 | 0x22<<7 | 0x42,\n\t26737 - 19968: jis0212<<14 | 0x22<<7 | 0x43,\n\t26738 - 19968: jis0212<<14 | 0x22<<7 | 0x44,\n\t26740 - 19968: jis0208<<14 | 0x3A<<7 | 0x4E,\n\t26741 - 19968: jis0212<<14 | 0x22<<7 | 0x45,\n\t26742 - 19968: jis0208<<14 | 0x11<<7 | 0x12,\n\t26743 - 19968: jis0208<<14 | 0x3A<<7 | 0x43,\n\t26745 - 19968: jis0212<<14 | 0x22<<7 | 0x46,\n\t26746 - 19968: jis0212<<14 | 0x22<<7 | 0x47,\n\t26747 - 19968: jis0212<<14 | 0x22<<7 | 0x48,\n\t26748 - 19968: jis0212<<14 | 0x22<<7 | 0x49,\n\t26750 - 19968: jis0208<<14 | 0x3A<<7 | 0x54,\n\t26751 - 19968: jis0208<<14 | 0x3A<<7 | 0x44,\n\t26753 - 19968: jis0208<<14 | 0x2D<<7 | 0x21,\n\t26754 - 19968: jis0212<<14 | 0x22<<7 | 0x4A,\n\t26755 - 19968: jis0208<<14 | 0x3A<<7 | 0x4B,\n\t26756 - 19968: jis0212<<14 | 0x22<<7 | 0x4B,\n\t26757 - 19968: jis0208<<14 | 0x26<<7 | 0x3E,\n\t26758 - 19968: jis0212<<14 | 0x22<<7 | 0x4C,\n\t26760 - 19968: jis0212<<14 | 0x22<<7 | 0x4D,\n\t26765 - 19968: jis0208<<14 | 0x3A<<7 | 0x53,\n\t26767 - 19968: jis0208<<14 | 0x3A<<7 | 0x46,\n\t26771 - 19968: jis0208<<14 | 0x0F<<7 | 0x13,\n\t26772 - 19968: jis0208<<14 | 0x3A<<7 | 0x48,\n\t26774 - 19968: jis0212<<14 | 0x22<<7 | 0x4E,\n\t26775 - 19968: jis0208<<14 | 0x18<<7 | 0x1B,\n\t26776 - 19968: jis0212<<14 | 0x22<<7 | 0x4F,\n\t26778 - 19968: jis0212<<14 | 0x22<<7 | 0x50,\n\t26779 - 19968: jis0208<<14 | 0x3A<<7 | 0x4A,\n\t26780 - 19968: jis0212<<14 | 0x22<<7 | 0x51,\n\t26781 - 19968: jis0208<<14 | 0x3A<<7 | 0x49,\n\t26783 - 19968: jis0208<<14 | 0x3A<<7 | 0x45,\n\t26784 - 19968: jis0208<<14 | 0x3A<<7 | 0x50,\n\t26785 - 19968: jis0212<<14 | 0x22<<7 | 0x52,\n\t26786 - 19968: jis0208<<14 | 0x1D<<7 | 0x1E,\n\t26787 - 19968: jis0212<<14 | 0x22<<7 | 0x53,\n\t26789 - 19968: jis0212<<14 | 0x22<<7 | 0x54,\n\t26790 - 19968: jis0208<<14 | 0x33<<7 | 0x4C,\n\t26791 - 19968: jis0208<<14 | 0x17<<7 | 0x47,\n\t26792 - 19968: jis0208<<14 | 0x2C<<7 | 0x5B,\n\t26793 - 19968: jis0212<<14 | 0x22<<7 | 0x55,\n\t26794 - 19968: jis0212<<14 | 0x22<<7 | 0x56,\n\t26797 - 19968: jis0208<<14 | 0x3A<<7 | 0x47,\n\t26798 - 19968: jis0212<<14 | 0x22<<7 | 0x57,\n\t26799 - 19968: jis0208<<14 | 0x23<<7 | 0x53,\n\t26800 - 19968: jis0208<<14 | 0x12<<7 | 0x02,\n\t26801 - 19968: jis0208<<14 | 0x19<<7 | 0x0C,\n\t26802 - 19968: jis0212<<14 | 0x22<<7 | 0x58,\n\t26803 - 19968: jis0208<<14 | 0x3A<<7 | 0x3F,\n\t26805 - 19968: jis0208<<14 | 0x3A<<7 | 0x4F,\n\t26806 - 19968: jis0208<<14 | 0x12<<7 | 0x40,\n\t26809 - 19968: jis0208<<14 | 0x3A<<7 | 0x4D,\n\t26810 - 19968: jis0208<<14 | 0x3A<<7 | 0x51,\n\t26811 - 19968: jis0212<<14 | 0x22<<7 | 0x59,\n\t26812 - 19968: jis0208<<14 | 0x24<<7 | 0x4D,\n\t26820 - 19968: jis0208<<14 | 0x13<<7 | 0x5D,\n\t26821 - 19968: jis0212<<14 | 0x22<<7 | 0x5A,\n\t26822 - 19968: jis0208<<14 | 0x3B<<7 | 0x11,\n\t26824 - 19968: jis0208<<14 | 0x58<<7 | 0x08,\n\t26825 - 19968: jis0208<<14 | 0x2B<<7 | 0x28,\n\t26826 - 19968: jis0208<<14 | 0x3A<<7 | 0x56,\n\t26827 - 19968: jis0208<<14 | 0x13<<7 | 0x5C,\n\t26828 - 19968: jis0212<<14 | 0x22<<7 | 0x5C,\n\t26829 - 19968: jis0208<<14 | 0x3A<<7 | 0x5D,\n\t26831 - 19968: jis0208<<14 | 0x59<<7 | 0x2C,\n\t26832 - 19968: jis0212<<14 | 0x23<<7 | 0x00,\n\t26833 - 19968: jis0212<<14 | 0x23<<7 | 0x01,\n\t26834 - 19968: jis0208<<14 | 0x2A<<7 | 0x1F,\n\t26835 - 19968: jis0212<<14 | 0x23<<7 | 0x02,\n\t26836 - 19968: jis0208<<14 | 0x3B<<7 | 0x00,\n\t26837 - 19968: jis0208<<14 | 0x3B<<7 | 0x02,\n\t26838 - 19968: jis0212<<14 | 0x23<<7 | 0x03,\n\t26839 - 19968: jis0208<<14 | 0x3B<<7 | 0x06,\n\t26840 - 19968: jis0208<<14 | 0x3A<<7 | 0x58,\n\t26841 - 19968: jis0212<<14 | 0x23<<7 | 0x04,\n\t26842 - 19968: jis0208<<14 | 0x22<<7 | 0x09,\n\t26844 - 19968: jis0212<<14 | 0x23<<7 | 0x05,\n\t26845 - 19968: jis0212<<14 | 0x23<<7 | 0x06,\n\t26847 - 19968: jis0208<<14 | 0x24<<7 | 0x4E,\n\t26848 - 19968: jis0208<<14 | 0x3B<<7 | 0x0A,\n\t26849 - 19968: jis0208<<14 | 0x3A<<7 | 0x5B,\n\t26851 - 19968: jis0208<<14 | 0x3B<<7 | 0x07,\n\t26853 - 19968: jis0212<<14 | 0x23<<7 | 0x07,\n\t26855 - 19968: jis0208<<14 | 0x3B<<7 | 0x01,\n\t26856 - 19968: jis0212<<14 | 0x23<<7 | 0x08,\n\t26858 - 19968: jis0212<<14 | 0x23<<7 | 0x09,\n\t26859 - 19968: jis0212<<14 | 0x23<<7 | 0x0A,\n\t26860 - 19968: jis0212<<14 | 0x23<<7 | 0x0B,\n\t26861 - 19968: jis0212<<14 | 0x23<<7 | 0x0C,\n\t26862 - 19968: jis0208<<14 | 0x1E<<7 | 0x18,\n\t26863 - 19968: jis0208<<14 | 0x3B<<7 | 0x0B,\n\t26864 - 19968: jis0212<<14 | 0x23<<7 | 0x0D,\n\t26865 - 19968: jis0212<<14 | 0x23<<7 | 0x0E,\n\t26866 - 19968: jis0208<<14 | 0x1F<<7 | 0x12,\n\t26869 - 19968: jis0212<<14 | 0x23<<7 | 0x0F,\n\t26870 - 19968: jis0212<<14 | 0x23<<7 | 0x10,\n\t26873 - 19968: jis0208<<14 | 0x3B<<7 | 0x09,\n\t26874 - 19968: jis0208<<14 | 0x13<<7 | 0x1C,\n\t26875 - 19968: jis0212<<14 | 0x23<<7 | 0x11,\n\t26876 - 19968: jis0212<<14 | 0x23<<7 | 0x12,\n\t26877 - 19968: jis0212<<14 | 0x23<<7 | 0x13,\n\t26880 - 19968: jis0208<<14 | 0x2E<<7 | 0x2F,\n\t26881 - 19968: jis0208<<14 | 0x3A<<7 | 0x55,\n\t26884 - 19968: jis0208<<14 | 0x3B<<7 | 0x05,\n\t26885 - 19968: jis0208<<14 | 0x0F<<7 | 0x37,\n\t26886 - 19968: jis0212<<14 | 0x23<<7 | 0x14,\n\t26888 - 19968: jis0208<<14 | 0x3A<<7 | 0x57,\n\t26889 - 19968: jis0212<<14 | 0x23<<7 | 0x15,\n\t26890 - 19968: jis0212<<14 | 0x23<<7 | 0x16,\n\t26891 - 19968: jis0208<<14 | 0x2B<<7 | 0x19,\n\t26892 - 19968: jis0208<<14 | 0x3A<<7 | 0x5C,\n\t26893 - 19968: jis0208<<14 | 0x1E<<7 | 0x01,\n\t26894 - 19968: jis0208<<14 | 0x23<<7 | 0x26,\n\t26895 - 19968: jis0208<<14 | 0x3A<<7 | 0x52,\n\t26896 - 19968: jis0212<<14 | 0x23<<7 | 0x17,\n\t26897 - 19968: jis0212<<14 | 0x23<<7 | 0x18,\n\t26898 - 19968: jis0208<<14 | 0x3B<<7 | 0x04,\n\t26899 - 19968: jis0212<<14 | 0x23<<7 | 0x19,\n\t26902 - 19968: jis0212<<14 | 0x23<<7 | 0x1A,\n\t26903 - 19968: jis0212<<14 | 0x23<<7 | 0x1B,\n\t26905 - 19968: jis0208<<14 | 0x1E<<7 | 0x59,\n\t26906 - 19968: jis0208<<14 | 0x3B<<7 | 0x0E,\n\t26907 - 19968: jis0208<<14 | 0x12<<7 | 0x50,\n\t26908 - 19968: jis0208<<14 | 0x17<<7 | 0x00,\n\t26913 - 19968: jis0208<<14 | 0x3B<<7 | 0x10,\n\t26914 - 19968: jis0208<<14 | 0x3A<<7 | 0x59,\n\t26915 - 19968: jis0208<<14 | 0x3B<<7 | 0x0F,\n\t26917 - 19968: jis0208<<14 | 0x3B<<7 | 0x08,\n\t26918 - 19968: jis0208<<14 | 0x3A<<7 | 0x5A,\n\t26920 - 19968: jis0208<<14 | 0x3B<<7 | 0x0C,\n\t26922 - 19968: jis0208<<14 | 0x3B<<7 | 0x0D,\n\t26928 - 19968: jis0208<<14 | 0x3B<<7 | 0x1E,\n\t26929 - 19968: jis0212<<14 | 0x23<<7 | 0x1C,\n\t26931 - 19968: jis0212<<14 | 0x23<<7 | 0x1D,\n\t26932 - 19968: jis0208<<14 | 0x25<<7 | 0x2D,\n\t26933 - 19968: jis0212<<14 | 0x23<<7 | 0x1E,\n\t26934 - 19968: jis0208<<14 | 0x3B<<7 | 0x03,\n\t26936 - 19968: jis0212<<14 | 0x23<<7 | 0x1F,\n\t26937 - 19968: jis0208<<14 | 0x3B<<7 | 0x1A,\n\t26939 - 19968: jis0212<<14 | 0x23<<7 | 0x20,\n\t26941 - 19968: jis0208<<14 | 0x3B<<7 | 0x1C,\n\t26943 - 19968: jis0208<<14 | 0x23<<7 | 0x37,\n\t26946 - 19968: jis0212<<14 | 0x23<<7 | 0x21,\n\t26949 - 19968: jis0212<<14 | 0x23<<7 | 0x22,\n\t26953 - 19968: jis0212<<14 | 0x23<<7 | 0x23,\n\t26954 - 19968: jis0208<<14 | 0x2C<<7 | 0x2B,\n\t26958 - 19968: jis0212<<14 | 0x23<<7 | 0x24,\n\t26963 - 19968: jis0208<<14 | 0x28<<7 | 0x55,\n\t26964 - 19968: jis0208<<14 | 0x3B<<7 | 0x17,\n\t26965 - 19968: jis0208<<14 | 0x21<<7 | 0x29,\n\t26967 - 19968: jis0212<<14 | 0x23<<7 | 0x25,\n\t26969 - 19968: jis0208<<14 | 0x3B<<7 | 0x1D,\n\t26970 - 19968: jis0208<<14 | 0x20<<7 | 0x1E,\n\t26971 - 19968: jis0212<<14 | 0x23<<7 | 0x26,\n\t26972 - 19968: jis0208<<14 | 0x3B<<7 | 0x14,\n\t26973 - 19968: jis0208<<14 | 0x3B<<7 | 0x21,\n\t26974 - 19968: jis0208<<14 | 0x3B<<7 | 0x20,\n\t26976 - 19968: jis0208<<14 | 0x25<<7 | 0x4E,\n\t26977 - 19968: jis0208<<14 | 0x3B<<7 | 0x1F,\n\t26978 - 19968: jis0208<<14 | 0x25<<7 | 0x49,\n\t26979 - 19968: jis0212<<14 | 0x23<<7 | 0x27,\n\t26980 - 19968: jis0212<<14 | 0x23<<7 | 0x28,\n\t26981 - 19968: jis0212<<14 | 0x23<<7 | 0x29,\n\t26982 - 19968: jis0212<<14 | 0x23<<7 | 0x2A,\n\t26984 - 19968: jis0208<<14 | 0x59<<7 | 0x2E,\n\t26985 - 19968: jis0212<<14 | 0x23<<7 | 0x2C,\n\t26986 - 19968: jis0208<<14 | 0x3B<<7 | 0x23,\n\t26987 - 19968: jis0208<<14 | 0x3B<<7 | 0x16,\n\t26988 - 19968: jis0212<<14 | 0x23<<7 | 0x2D,\n\t26989 - 19968: jis0208<<14 | 0x15<<7 | 0x27,\n\t26990 - 19968: jis0208<<14 | 0x3B<<7 | 0x19,\n\t26991 - 19968: jis0208<<14 | 0x1C<<7 | 0x3C,\n\t26992 - 19968: jis0212<<14 | 0x23<<7 | 0x2E,\n\t26993 - 19968: jis0212<<14 | 0x23<<7 | 0x2F,\n\t26994 - 19968: jis0212<<14 | 0x23<<7 | 0x30,\n\t26995 - 19968: jis0208<<14 | 0x26<<7 | 0x3F,\n\t26996 - 19968: jis0208<<14 | 0x3B<<7 | 0x1B,\n\t26997 - 19968: jis0208<<14 | 0x15<<7 | 0x2A,\n\t26999 - 19968: jis0208<<14 | 0x3B<<7 | 0x13,\n\t27000 - 19968: jis0208<<14 | 0x3B<<7 | 0x15,\n\t27001 - 19968: jis0208<<14 | 0x3B<<7 | 0x12,\n\t27002 - 19968: jis0212<<14 | 0x23<<7 | 0x31,\n\t27003 - 19968: jis0212<<14 | 0x23<<7 | 0x32,\n\t27004 - 19968: jis0208<<14 | 0x2E<<7 | 0x0F,\n\t27005 - 19968: jis0208<<14 | 0x12<<7 | 0x39,\n\t27006 - 19968: jis0208<<14 | 0x3B<<7 | 0x18,\n\t27007 - 19968: jis0212<<14 | 0x23<<7 | 0x33,\n\t27008 - 19968: jis0212<<14 | 0x23<<7 | 0x34,\n\t27009 - 19968: jis0208<<14 | 0x3B<<7 | 0x22,\n\t27010 - 19968: jis0208<<14 | 0x12<<7 | 0x14,\n\t27018 - 19968: jis0208<<14 | 0x19<<7 | 0x46,\n\t27021 - 19968: jis0212<<14 | 0x23<<7 | 0x35,\n\t27022 - 19968: jis0208<<14 | 0x10<<7 | 0x3C,\n\t27025 - 19968: jis0208<<14 | 0x3B<<7 | 0x33,\n\t27026 - 19968: jis0212<<14 | 0x23<<7 | 0x36,\n\t27028 - 19968: jis0208<<14 | 0x2E<<7 | 0x10,\n\t27029 - 19968: jis0208<<14 | 0x3B<<7 | 0x36,\n\t27030 - 19968: jis0212<<14 | 0x23<<7 | 0x37,\n\t27032 - 19968: jis0208<<14 | 0x59<<7 | 0x30,\n\t27035 - 19968: jis0208<<14 | 0x1E<<7 | 0x19,\n\t27036 - 19968: jis0208<<14 | 0x3B<<7 | 0x35,\n\t27040 - 19968: jis0208<<14 | 0x3B<<7 | 0x34,\n\t27041 - 19968: jis0212<<14 | 0x23<<7 | 0x39,\n\t27045 - 19968: jis0212<<14 | 0x23<<7 | 0x3A,\n\t27046 - 19968: jis0212<<14 | 0x23<<7 | 0x3B,\n\t27047 - 19968: jis0208<<14 | 0x3B<<7 | 0x31,\n\t27048 - 19968: jis0212<<14 | 0x23<<7 | 0x3C,\n\t27051 - 19968: jis0212<<14 | 0x23<<7 | 0x3D,\n\t27053 - 19968: jis0212<<14 | 0x23<<7 | 0x3E,\n\t27054 - 19968: jis0208<<14 | 0x3B<<7 | 0x25,\n\t27055 - 19968: jis0212<<14 | 0x23<<7 | 0x3F,\n\t27057 - 19968: jis0208<<14 | 0x3B<<7 | 0x42,\n\t27058 - 19968: jis0208<<14 | 0x3B<<7 | 0x24,\n\t27060 - 19968: jis0208<<14 | 0x3B<<7 | 0x37,\n\t27063 - 19968: jis0212<<14 | 0x23<<7 | 0x40,\n\t27064 - 19968: jis0212<<14 | 0x23<<7 | 0x41,\n\t27066 - 19968: jis0212<<14 | 0x23<<7 | 0x42,\n\t27067 - 19968: jis0208<<14 | 0x3B<<7 | 0x2F,\n\t27068 - 19968: jis0212<<14 | 0x23<<7 | 0x43,\n\t27070 - 19968: jis0208<<14 | 0x3B<<7 | 0x2A,\n\t27071 - 19968: jis0208<<14 | 0x3B<<7 | 0x27,\n\t27073 - 19968: jis0208<<14 | 0x3B<<7 | 0x28,\n\t27075 - 19968: jis0208<<14 | 0x3B<<7 | 0x30,\n\t27077 - 19968: jis0212<<14 | 0x23<<7 | 0x44,\n\t27079 - 19968: jis0208<<14 | 0x53<<7 | 0x01,\n\t27080 - 19968: jis0212<<14 | 0x23<<7 | 0x45,\n\t27082 - 19968: jis0208<<14 | 0x3B<<7 | 0x2D,\n\t27083 - 19968: jis0208<<14 | 0x18<<7 | 0x1C,\n\t27084 - 19968: jis0208<<14 | 0x23<<7 | 0x27,\n\t27085 - 19968: jis0208<<14 | 0x20<<7 | 0x43,\n\t27086 - 19968: jis0208<<14 | 0x3B<<7 | 0x2B,\n\t27088 - 19968: jis0208<<14 | 0x3B<<7 | 0x26,\n\t27089 - 19968: jis0212<<14 | 0x23<<7 | 0x46,\n\t27091 - 19968: jis0208<<14 | 0x3B<<7 | 0x29,\n\t27094 - 19968: jis0212<<14 | 0x23<<7 | 0x47,\n\t27095 - 19968: jis0212<<14 | 0x23<<7 | 0x48,\n\t27096 - 19968: jis0208<<14 | 0x2C<<7 | 0x2C,\n\t27097 - 19968: jis0208<<14 | 0x2A<<7 | 0x49,\n\t27101 - 19968: jis0208<<14 | 0x3B<<7 | 0x2E,\n\t27102 - 19968: jis0208<<14 | 0x3B<<7 | 0x38,\n\t27106 - 19968: jis0208<<14 | 0x59<<7 | 0x31,\n\t27109 - 19968: jis0212<<14 | 0x23<<7 | 0x4A,\n\t27111 - 19968: jis0208<<14 | 0x3B<<7 | 0x40,\n\t27112 - 19968: jis0208<<14 | 0x3B<<7 | 0x39,\n\t27115 - 19968: jis0208<<14 | 0x3B<<7 | 0x46,\n\t27117 - 19968: jis0208<<14 | 0x3B<<7 | 0x44,\n\t27118 - 19968: jis0212<<14 | 0x23<<7 | 0x4B,\n\t27119 - 19968: jis0212<<14 | 0x23<<7 | 0x4C,\n\t27121 - 19968: jis0212<<14 | 0x23<<7 | 0x4D,\n\t27122 - 19968: jis0208<<14 | 0x3B<<7 | 0x3F,\n\t27123 - 19968: jis0212<<14 | 0x23<<7 | 0x4E,\n\t27125 - 19968: jis0212<<14 | 0x23<<7 | 0x4F,\n\t27129 - 19968: jis0208<<14 | 0x3B<<7 | 0x3E,\n\t27131 - 19968: jis0208<<14 | 0x23<<7 | 0x2F,\n\t27133 - 19968: jis0208<<14 | 0x20<<7 | 0x44,\n\t27134 - 19968: jis0212<<14 | 0x23<<7 | 0x50,\n\t27135 - 19968: jis0208<<14 | 0x3B<<7 | 0x3C,\n\t27136 - 19968: jis0212<<14 | 0x23<<7 | 0x51,\n\t27137 - 19968: jis0212<<14 | 0x23<<7 | 0x52,\n\t27138 - 19968: jis0208<<14 | 0x3B<<7 | 0x3A,\n\t27139 - 19968: jis0212<<14 | 0x23<<7 | 0x53,\n\t27141 - 19968: jis0208<<14 | 0x3B<<7 | 0x41,\n\t27146 - 19968: jis0208<<14 | 0x3B<<7 | 0x47,\n\t27147 - 19968: jis0208<<14 | 0x27<<7 | 0x54,\n\t27148 - 19968: jis0208<<14 | 0x3B<<7 | 0x4D,\n\t27151 - 19968: jis0212<<14 | 0x23<<7 | 0x54,\n\t27153 - 19968: jis0212<<14 | 0x23<<7 | 0x55,\n\t27154 - 19968: jis0208<<14 | 0x3B<<7 | 0x48,\n\t27155 - 19968: jis0208<<14 | 0x3B<<7 | 0x4B,\n\t27156 - 19968: jis0208<<14 | 0x3B<<7 | 0x45,\n\t27157 - 19968: jis0212<<14 | 0x23<<7 | 0x56,\n\t27159 - 19968: jis0208<<14 | 0x22<<7 | 0x53,\n\t27161 - 19968: jis0208<<14 | 0x28<<7 | 0x17,\n\t27162 - 19968: jis0212<<14 | 0x23<<7 | 0x57,\n\t27163 - 19968: jis0208<<14 | 0x3B<<7 | 0x3B,\n\t27165 - 19968: jis0212<<14 | 0x23<<7 | 0x58,\n\t27166 - 19968: jis0208<<14 | 0x3B<<7 | 0x43,\n\t27167 - 19968: jis0208<<14 | 0x1D<<7 | 0x1F,\n\t27168 - 19968: jis0212<<14 | 0x23<<7 | 0x59,\n\t27169 - 19968: jis0208<<14 | 0x2B<<7 | 0x2E,\n\t27170 - 19968: jis0208<<14 | 0x3B<<7 | 0x57,\n\t27171 - 19968: jis0208<<14 | 0x3B<<7 | 0x4A,\n\t27172 - 19968: jis0212<<14 | 0x23<<7 | 0x5A,\n\t27176 - 19968: jis0212<<14 | 0x23<<7 | 0x5B,\n\t27177 - 19968: jis0208<<14 | 0x17<<7 | 0x01,\n\t27178 - 19968: jis0208<<14 | 0x11<<7 | 0x02,\n\t27179 - 19968: jis0208<<14 | 0x12<<7 | 0x3E,\n\t27182 - 19968: jis0208<<14 | 0x3B<<7 | 0x32,\n\t27184 - 19968: jis0208<<14 | 0x59<<7 | 0x32,\n\t27186 - 19968: jis0212<<14 | 0x23<<7 | 0x5D,\n\t27188 - 19968: jis0212<<14 | 0x24<<7 | 0x00,\n\t27189 - 19968: jis0208<<14 | 0x1D<<7 | 0x20,\n\t27190 - 19968: jis0208<<14 | 0x3B<<7 | 0x4F,\n\t27191 - 19968: jis0212<<14 | 0x24<<7 | 0x01,\n\t27192 - 19968: jis0208<<14 | 0x3B<<7 | 0x56,\n\t27193 - 19968: jis0208<<14 | 0x1B<<7 | 0x58,\n\t27194 - 19968: jis0208<<14 | 0x12<<7 | 0x51,\n\t27195 - 19968: jis0212<<14 | 0x24<<7 | 0x02,\n\t27197 - 19968: jis0208<<14 | 0x22<<7 | 0x0D,\n\t27198 - 19968: jis0212<<14 | 0x24<<7 | 0x03,\n\t27199 - 19968: jis0212<<14 | 0x24<<7 | 0x04,\n\t27204 - 19968: jis0208<<14 | 0x3B<<7 | 0x4C,\n\t27205 - 19968: jis0212<<14 | 0x24<<7 | 0x05,\n\t27206 - 19968: jis0208<<14 | 0x59<<7 | 0x34,\n\t27207 - 19968: jis0208<<14 | 0x3B<<7 | 0x51,\n\t27208 - 19968: jis0208<<14 | 0x3B<<7 | 0x55,\n\t27209 - 19968: jis0212<<14 | 0x24<<7 | 0x07,\n\t27210 - 19968: jis0212<<14 | 0x24<<7 | 0x08,\n\t27211 - 19968: jis0208<<14 | 0x15<<7 | 0x15,\n\t27214 - 19968: jis0212<<14 | 0x24<<7 | 0x09,\n\t27216 - 19968: jis0212<<14 | 0x24<<7 | 0x0A,\n\t27217 - 19968: jis0212<<14 | 0x24<<7 | 0x0B,\n\t27218 - 19968: jis0212<<14 | 0x24<<7 | 0x0C,\n\t27221 - 19968: jis0212<<14 | 0x24<<7 | 0x0D,\n\t27222 - 19968: jis0212<<14 | 0x24<<7 | 0x0E,\n\t27224 - 19968: jis0208<<14 | 0x14<<7 | 0x2B,\n\t27225 - 19968: jis0208<<14 | 0x3B<<7 | 0x53,\n\t27227 - 19968: jis0212<<14 | 0x24<<7 | 0x0F,\n\t27231 - 19968: jis0208<<14 | 0x14<<7 | 0x00,\n\t27233 - 19968: jis0208<<14 | 0x25<<7 | 0x2A,\n\t27234 - 19968: jis0208<<14 | 0x3B<<7 | 0x52,\n\t27236 - 19968: jis0212<<14 | 0x24<<7 | 0x10,\n\t27238 - 19968: jis0208<<14 | 0x3B<<7 | 0x54,\n\t27239 - 19968: jis0212<<14 | 0x24<<7 | 0x11,\n\t27242 - 19968: jis0212<<14 | 0x24<<7 | 0x12,\n\t27243 - 19968: jis0208<<14 | 0x59<<7 | 0x33,\n\t27249 - 19968: jis0212<<14 | 0x24<<7 | 0x13,\n\t27250 - 19968: jis0208<<14 | 0x3B<<7 | 0x4E,\n\t27251 - 19968: jis0208<<14 | 0x59<<7 | 0x35,\n\t27256 - 19968: jis0208<<14 | 0x3B<<7 | 0x50,\n\t27262 - 19968: jis0208<<14 | 0x59<<7 | 0x36,\n\t27263 - 19968: jis0208<<14 | 0x12<<7 | 0x3F,\n\t27264 - 19968: jis0208<<14 | 0x22<<7 | 0x28,\n\t27265 - 19968: jis0212<<14 | 0x24<<7 | 0x16,\n\t27267 - 19968: jis0212<<14 | 0x24<<7 | 0x17,\n\t27268 - 19968: jis0208<<14 | 0x3B<<7 | 0x5B,\n\t27270 - 19968: jis0212<<14 | 0x24<<7 | 0x18,\n\t27271 - 19968: jis0212<<14 | 0x24<<7 | 0x19,\n\t27273 - 19968: jis0212<<14 | 0x24<<7 | 0x1A,\n\t27275 - 19968: jis0212<<14 | 0x24<<7 | 0x1B,\n\t27277 - 19968: jis0208<<14 | 0x3B<<7 | 0x59,\n\t27278 - 19968: jis0208<<14 | 0x17<<7 | 0x48,\n\t27280 - 19968: jis0208<<14 | 0x3B<<7 | 0x58,\n\t27281 - 19968: jis0212<<14 | 0x24<<7 | 0x1C,\n\t27287 - 19968: jis0208<<14 | 0x3C<<7 | 0x00,\n\t27291 - 19968: jis0212<<14 | 0x24<<7 | 0x1D,\n\t27292 - 19968: jis0208<<14 | 0x3A<<7 | 0x37,\n\t27293 - 19968: jis0212<<14 | 0x24<<7 | 0x1E,\n\t27294 - 19968: jis0212<<14 | 0x24<<7 | 0x1F,\n\t27295 - 19968: jis0212<<14 | 0x24<<7 | 0x20,\n\t27296 - 19968: jis0208<<14 | 0x3B<<7 | 0x5A,\n\t27298 - 19968: jis0208<<14 | 0x3B<<7 | 0x5C,\n\t27299 - 19968: jis0208<<14 | 0x3B<<7 | 0x5D,\n\t27301 - 19968: jis0212<<14 | 0x24<<7 | 0x21,\n\t27306 - 19968: jis0208<<14 | 0x3C<<7 | 0x0B,\n\t27307 - 19968: jis0212<<14 | 0x24<<7 | 0x22,\n\t27308 - 19968: jis0208<<14 | 0x3C<<7 | 0x07,\n\t27310 - 19968: jis0208<<14 | 0x3A<<7 | 0x4C,\n\t27311 - 19968: jis0212<<14 | 0x24<<7 | 0x23,\n\t27312 - 19968: jis0212<<14 | 0x24<<7 | 0x24,\n\t27313 - 19968: jis0212<<14 | 0x24<<7 | 0x25,\n\t27315 - 19968: jis0208<<14 | 0x3C<<7 | 0x06,\n\t27316 - 19968: jis0212<<14 | 0x24<<7 | 0x26,\n\t27320 - 19968: jis0208<<14 | 0x3C<<7 | 0x05,\n\t27323 - 19968: jis0208<<14 | 0x3C<<7 | 0x02,\n\t27325 - 19968: jis0212<<14 | 0x24<<7 | 0x27,\n\t27326 - 19968: jis0212<<14 | 0x24<<7 | 0x28,\n\t27327 - 19968: jis0212<<14 | 0x24<<7 | 0x29,\n\t27329 - 19968: jis0208<<14 | 0x3B<<7 | 0x49,\n\t27330 - 19968: jis0208<<14 | 0x3C<<7 | 0x04,\n\t27331 - 19968: jis0208<<14 | 0x3C<<7 | 0x03,\n\t27334 - 19968: jis0212<<14 | 0x24<<7 | 0x2A,\n\t27336 - 19968: jis0212<<14 | 0x24<<7 | 0x2C,\n\t27337 - 19968: jis0212<<14 | 0x24<<7 | 0x2B,\n\t27340 - 19968: jis0212<<14 | 0x24<<7 | 0x2D,\n\t27344 - 19968: jis0212<<14 | 0x24<<7 | 0x2E,\n\t27345 - 19968: jis0208<<14 | 0x3C<<7 | 0x09,\n\t27347 - 19968: jis0208<<14 | 0x2E<<7 | 0x05,\n\t27348 - 19968: jis0212<<14 | 0x24<<7 | 0x2F,\n\t27349 - 19968: jis0212<<14 | 0x24<<7 | 0x30,\n\t27350 - 19968: jis0212<<14 | 0x24<<7 | 0x31,\n\t27354 - 19968: jis0208<<14 | 0x3C<<7 | 0x0C,\n\t27355 - 19968: jis0208<<14 | 0x15<<7 | 0x5A,\n\t27356 - 19968: jis0212<<14 | 0x24<<7 | 0x32,\n\t27357 - 19968: jis0212<<14 | 0x24<<7 | 0x33,\n\t27358 - 19968: jis0208<<14 | 0x3C<<7 | 0x08,\n\t27359 - 19968: jis0208<<14 | 0x3C<<7 | 0x0A,\n\t27362 - 19968: jis0208<<14 | 0x59<<7 | 0x37,\n\t27364 - 19968: jis0208<<14 | 0x59<<7 | 0x38,\n\t27367 - 19968: jis0212<<14 | 0x24<<7 | 0x35,\n\t27368 - 19968: jis0208<<14 | 0x27<<7 | 0x06,\n\t27370 - 19968: jis0208<<14 | 0x3C<<7 | 0x0D,\n\t27372 - 19968: jis0212<<14 | 0x24<<7 | 0x36,\n\t27376 - 19968: jis0212<<14 | 0x24<<7 | 0x37,\n\t27377 - 19968: jis0212<<14 | 0x24<<7 | 0x38,\n\t27378 - 19968: jis0212<<14 | 0x24<<7 | 0x39,\n\t27386 - 19968: jis0208<<14 | 0x3C<<7 | 0x11,\n\t27387 - 19968: jis0208<<14 | 0x3C<<7 | 0x0E,\n\t27388 - 19968: jis0212<<14 | 0x24<<7 | 0x3A,\n\t27389 - 19968: jis0212<<14 | 0x24<<7 | 0x3B,\n\t27394 - 19968: jis0212<<14 | 0x24<<7 | 0x3C,\n\t27395 - 19968: jis0212<<14 | 0x24<<7 | 0x3D,\n\t27396 - 19968: jis0208<<14 | 0x2C<<7 | 0x52,\n\t27397 - 19968: jis0208<<14 | 0x3C<<7 | 0x0F,\n\t27398 - 19968: jis0212<<14 | 0x24<<7 | 0x3E,\n\t27399 - 19968: jis0212<<14 | 0x24<<7 | 0x3F,\n\t27401 - 19968: jis0212<<14 | 0x24<<7 | 0x40,\n\t27402 - 19968: jis0208<<14 | 0x3B<<7 | 0x3D,\n\t27407 - 19968: jis0212<<14 | 0x24<<7 | 0x41,\n\t27408 - 19968: jis0212<<14 | 0x24<<7 | 0x42,\n\t27409 - 19968: jis0212<<14 | 0x24<<7 | 0x43,\n\t27410 - 19968: jis0208<<14 | 0x3C<<7 | 0x12,\n\t27414 - 19968: jis0208<<14 | 0x3C<<7 | 0x13,\n\t27415 - 19968: jis0212<<14 | 0x24<<7 | 0x44,\n\t27419 - 19968: jis0212<<14 | 0x24<<7 | 0x45,\n\t27421 - 19968: jis0208<<14 | 0x10<<7 | 0x14,\n\t27422 - 19968: jis0212<<14 | 0x24<<7 | 0x46,\n\t27423 - 19968: jis0208<<14 | 0x3C<<7 | 0x15,\n\t27424 - 19968: jis0208<<14 | 0x16<<7 | 0x46,\n\t27425 - 19968: jis0208<<14 | 0x1B<<7 | 0x00,\n\t27427 - 19968: jis0208<<14 | 0x15<<7 | 0x34,\n\t27428 - 19968: jis0212<<14 | 0x24<<7 | 0x47,\n\t27431 - 19968: jis0208<<14 | 0x11<<7 | 0x03,\n\t27432 - 19968: jis0212<<14 | 0x24<<7 | 0x48,\n\t27435 - 19968: jis0212<<14 | 0x24<<7 | 0x49,\n\t27436 - 19968: jis0212<<14 | 0x24<<7 | 0x4A,\n\t27439 - 19968: jis0212<<14 | 0x24<<7 | 0x4B,\n\t27442 - 19968: jis0208<<14 | 0x2C<<7 | 0x3E,\n\t27445 - 19968: jis0212<<14 | 0x24<<7 | 0x4C,\n\t27446 - 19968: jis0212<<14 | 0x24<<7 | 0x4D,\n\t27447 - 19968: jis0208<<14 | 0x3C<<7 | 0x17,\n\t27448 - 19968: jis0208<<14 | 0x3C<<7 | 0x16,\n\t27449 - 19968: jis0208<<14 | 0x3C<<7 | 0x19,\n\t27450 - 19968: jis0208<<14 | 0x14<<7 | 0x1C,\n\t27451 - 19968: jis0212<<14 | 0x24<<7 | 0x4E,\n\t27453 - 19968: jis0208<<14 | 0x15<<7 | 0x35,\n\t27454 - 19968: jis0208<<14 | 0x13<<7 | 0x1D,\n\t27455 - 19968: jis0212<<14 | 0x24<<7 | 0x4F,\n\t27459 - 19968: jis0208<<14 | 0x3C<<7 | 0x1C,\n\t27462 - 19968: jis0212<<14 | 0x24<<7 | 0x50,\n\t27463 - 19968: jis0208<<14 | 0x3C<<7 | 0x1B,\n\t27465 - 19968: jis0208<<14 | 0x3C<<7 | 0x1D,\n\t27466 - 19968: jis0212<<14 | 0x24<<7 | 0x51,\n\t27468 - 19968: jis0208<<14 | 0x11<<7 | 0x2D,\n\t27469 - 19968: jis0212<<14 | 0x24<<7 | 0x52,\n\t27470 - 19968: jis0208<<14 | 0x22<<7 | 0x16,\n\t27472 - 19968: jis0208<<14 | 0x3C<<7 | 0x1E,\n\t27474 - 19968: jis0212<<14 | 0x24<<7 | 0x53,\n\t27475 - 19968: jis0208<<14 | 0x13<<7 | 0x1E,\n\t27476 - 19968: jis0208<<14 | 0x3C<<7 | 0x20,\n\t27478 - 19968: jis0212<<14 | 0x24<<7 | 0x54,\n\t27480 - 19968: jis0212<<14 | 0x24<<7 | 0x55,\n\t27481 - 19968: jis0208<<14 | 0x3C<<7 | 0x1F,\n\t27483 - 19968: jis0208<<14 | 0x3C<<7 | 0x21,\n\t27485 - 19968: jis0212<<14 | 0x24<<7 | 0x56,\n\t27487 - 19968: jis0208<<14 | 0x3C<<7 | 0x22,\n\t27488 - 19968: jis0212<<14 | 0x24<<7 | 0x57,\n\t27489 - 19968: jis0208<<14 | 0x3C<<7 | 0x23,\n\t27490 - 19968: jis0208<<14 | 0x1A<<7 | 0x3E,\n\t27491 - 19968: jis0208<<14 | 0x1F<<7 | 0x14,\n\t27492 - 19968: jis0208<<14 | 0x19<<7 | 0x00,\n\t27494 - 19968: jis0208<<14 | 0x28<<7 | 0x4F,\n\t27495 - 19968: jis0212<<14 | 0x24<<7 | 0x58,\n\t27497 - 19968: jis0208<<14 | 0x29<<7 | 0x41,\n\t27498 - 19968: jis0208<<14 | 0x2E<<7 | 0x23,\n\t27499 - 19968: jis0212<<14 | 0x24<<7 | 0x59,\n\t27502 - 19968: jis0212<<14 | 0x24<<7 | 0x5A,\n\t27503 - 19968: jis0208<<14 | 0x1A<<7 | 0x54,\n\t27504 - 19968: jis0212<<14 | 0x24<<7 | 0x5B,\n\t27507 - 19968: jis0208<<14 | 0x19<<7 | 0x2F,\n\t27508 - 19968: jis0208<<14 | 0x2D<<7 | 0x51,\n\t27509 - 19968: jis0212<<14 | 0x24<<7 | 0x5C,\n\t27512 - 19968: jis0208<<14 | 0x3C<<7 | 0x24,\n\t27513 - 19968: jis0208<<14 | 0x3C<<7 | 0x25,\n\t27515 - 19968: jis0208<<14 | 0x1A<<7 | 0x3F,\n\t27517 - 19968: jis0212<<14 | 0x24<<7 | 0x5D,\n\t27518 - 19968: jis0212<<14 | 0x25<<7 | 0x00,\n\t27519 - 19968: jis0208<<14 | 0x3C<<7 | 0x26,\n\t27520 - 19968: jis0208<<14 | 0x3C<<7 | 0x27,\n\t27522 - 19968: jis0212<<14 | 0x25<<7 | 0x01,\n\t27523 - 19968: jis0208<<14 | 0x3C<<7 | 0x29,\n\t27524 - 19968: jis0208<<14 | 0x3C<<7 | 0x28,\n\t27525 - 19968: jis0212<<14 | 0x25<<7 | 0x02,\n\t27526 - 19968: jis0208<<14 | 0x2A<<7 | 0x37,\n\t27529 - 19968: jis0208<<14 | 0x1C<<7 | 0x3D,\n\t27530 - 19968: jis0208<<14 | 0x1B<<7 | 0x4B,\n\t27531 - 19968: jis0208<<14 | 0x1A<<7 | 0x23,\n\t27533 - 19968: jis0208<<14 | 0x3C<<7 | 0x2A,\n\t27541 - 19968: jis0208<<14 | 0x3C<<7 | 0x2C,\n\t27542 - 19968: jis0208<<14 | 0x1E<<7 | 0x02,\n\t27543 - 19968: jis0212<<14 | 0x25<<7 | 0x03,\n\t27544 - 19968: jis0208<<14 | 0x3C<<7 | 0x2B,\n\t27547 - 19968: jis0212<<14 | 0x25<<7 | 0x04,\n\t27550 - 19968: jis0208<<14 | 0x3C<<7 | 0x2D,\n\t27551 - 19968: jis0212<<14 | 0x25<<7 | 0x05,\n\t27552 - 19968: jis0212<<14 | 0x25<<7 | 0x06,\n\t27554 - 19968: jis0212<<14 | 0x25<<7 | 0x07,\n\t27555 - 19968: jis0212<<14 | 0x25<<7 | 0x08,\n\t27556 - 19968: jis0208<<14 | 0x3C<<7 | 0x2E,\n\t27560 - 19968: jis0212<<14 | 0x25<<7 | 0x09,\n\t27561 - 19968: jis0212<<14 | 0x25<<7 | 0x0A,\n\t27562 - 19968: jis0208<<14 | 0x3C<<7 | 0x2F,\n\t27563 - 19968: jis0208<<14 | 0x3C<<7 | 0x30,\n\t27564 - 19968: jis0212<<14 | 0x25<<7 | 0x0B,\n\t27565 - 19968: jis0212<<14 | 0x25<<7 | 0x0C,\n\t27566 - 19968: jis0212<<14 | 0x25<<7 | 0x0D,\n\t27567 - 19968: jis0208<<14 | 0x3C<<7 | 0x31,\n\t27568 - 19968: jis0212<<14 | 0x25<<7 | 0x0E,\n\t27569 - 19968: jis0208<<14 | 0x3C<<7 | 0x33,\n\t27570 - 19968: jis0208<<14 | 0x3C<<7 | 0x32,\n\t27571 - 19968: jis0208<<14 | 0x3C<<7 | 0x34,\n\t27572 - 19968: jis0208<<14 | 0x11<<7 | 0x04,\n\t27573 - 19968: jis0208<<14 | 0x22<<7 | 0x29,\n\t27575 - 19968: jis0208<<14 | 0x3C<<7 | 0x35,\n\t27576 - 19968: jis0212<<14 | 0x25<<7 | 0x0F,\n\t27577 - 19968: jis0212<<14 | 0x25<<7 | 0x10,\n\t27578 - 19968: jis0208<<14 | 0x1A<<7 | 0x05,\n\t27579 - 19968: jis0208<<14 | 0x12<<7 | 0x2B,\n\t27580 - 19968: jis0208<<14 | 0x3C<<7 | 0x36,\n\t27581 - 19968: jis0212<<14 | 0x25<<7 | 0x11,\n\t27582 - 19968: jis0212<<14 | 0x25<<7 | 0x12,\n\t27583 - 19968: jis0208<<14 | 0x24<<7 | 0x21,\n\t27584 - 19968: jis0208<<14 | 0x33<<7 | 0x2B,\n\t27587 - 19968: jis0212<<14 | 0x25<<7 | 0x13,\n\t27588 - 19968: jis0212<<14 | 0x25<<7 | 0x14,\n\t27589 - 19968: jis0208<<14 | 0x14<<7 | 0x02,\n\t27590 - 19968: jis0208<<14 | 0x3C<<7 | 0x37,\n\t27593 - 19968: jis0212<<14 | 0x25<<7 | 0x15,\n\t27595 - 19968: jis0208<<14 | 0x3C<<7 | 0x38,\n\t27596 - 19968: jis0212<<14 | 0x25<<7 | 0x16,\n\t27597 - 19968: jis0208<<14 | 0x29<<7 | 0x4B,\n\t27598 - 19968: jis0208<<14 | 0x2A<<7 | 0x47,\n\t27602 - 19968: jis0208<<14 | 0x25<<7 | 0x26,\n\t27603 - 19968: jis0208<<14 | 0x3C<<7 | 0x39,\n\t27604 - 19968: jis0208<<14 | 0x27<<7 | 0x45,\n\t27606 - 19968: jis0208<<14 | 0x59<<7 | 0x39,\n\t27608 - 19968: jis0208<<14 | 0x27<<7 | 0x5A,\n\t27610 - 19968: jis0212<<14 | 0x25<<7 | 0x18,\n\t27611 - 19968: jis0208<<14 | 0x2B<<7 | 0x32,\n\t27615 - 19968: jis0208<<14 | 0x3C<<7 | 0x3A,\n\t27617 - 19968: jis0212<<14 | 0x25<<7 | 0x19,\n\t27619 - 19968: jis0212<<14 | 0x25<<7 | 0x1A,\n\t27622 - 19968: jis0212<<14 | 0x25<<7 | 0x1B,\n\t27623 - 19968: jis0212<<14 | 0x25<<7 | 0x1C,\n\t27627 - 19968: jis0208<<14 | 0x3C<<7 | 0x3C,\n\t27628 - 19968: jis0208<<14 | 0x3C<<7 | 0x3B,\n\t27630 - 19968: jis0212<<14 | 0x25<<7 | 0x1D,\n\t27631 - 19968: jis0208<<14 | 0x3C<<7 | 0x3E,\n\t27633 - 19968: jis0212<<14 | 0x25<<7 | 0x1E,\n\t27635 - 19968: jis0208<<14 | 0x3C<<7 | 0x3D,\n\t27639 - 19968: jis0212<<14 | 0x25<<7 | 0x1F,\n\t27641 - 19968: jis0212<<14 | 0x25<<7 | 0x20,\n\t27647 - 19968: jis0212<<14 | 0x25<<7 | 0x21,\n\t27650 - 19968: jis0212<<14 | 0x25<<7 | 0x22,\n\t27652 - 19968: jis0212<<14 | 0x25<<7 | 0x23,\n\t27653 - 19968: jis0212<<14 | 0x25<<7 | 0x24,\n\t27656 - 19968: jis0208<<14 | 0x3C<<7 | 0x40,\n\t27657 - 19968: jis0212<<14 | 0x25<<7 | 0x25,\n\t27661 - 19968: jis0212<<14 | 0x25<<7 | 0x26,\n\t27662 - 19968: jis0212<<14 | 0x25<<7 | 0x27,\n\t27663 - 19968: jis0208<<14 | 0x1A<<7 | 0x40,\n\t27664 - 19968: jis0212<<14 | 0x25<<7 | 0x28,\n\t27665 - 19968: jis0208<<14 | 0x2B<<7 | 0x10,\n\t27666 - 19968: jis0212<<14 | 0x25<<7 | 0x29,\n\t27667 - 19968: jis0208<<14 | 0x3C<<7 | 0x41,\n\t27668 - 19968: jis0208<<14 | 0x3C<<7 | 0x42,\n\t27671 - 19968: jis0208<<14 | 0x14<<7 | 0x03,\n\t27673 - 19968: jis0212<<14 | 0x25<<7 | 0x2A,\n\t27675 - 19968: jis0208<<14 | 0x3C<<7 | 0x43,\n\t27679 - 19968: jis0212<<14 | 0x25<<7 | 0x2B,\n\t27683 - 19968: jis0208<<14 | 0x3C<<7 | 0x45,\n\t27684 - 19968: jis0208<<14 | 0x3C<<7 | 0x44,\n\t27686 - 19968: jis0212<<14 | 0x25<<7 | 0x2C,\n\t27687 - 19968: jis0212<<14 | 0x25<<7 | 0x2D,\n\t27688 - 19968: jis0212<<14 | 0x25<<7 | 0x2E,\n\t27692 - 19968: jis0212<<14 | 0x25<<7 | 0x2F,\n\t27694 - 19968: jis0212<<14 | 0x25<<7 | 0x30,\n\t27699 - 19968: jis0212<<14 | 0x25<<7 | 0x31,\n\t27700 - 19968: jis0208<<14 | 0x1E<<7 | 0x44,\n\t27701 - 19968: jis0212<<14 | 0x25<<7 | 0x32,\n\t27702 - 19968: jis0212<<14 | 0x25<<7 | 0x33,\n\t27703 - 19968: jis0208<<14 | 0x28<<7 | 0x18,\n\t27704 - 19968: jis0208<<14 | 0x10<<7 | 0x29,\n\t27706 - 19968: jis0212<<14 | 0x25<<7 | 0x34,\n\t27707 - 19968: jis0212<<14 | 0x25<<7 | 0x35,\n\t27710 - 19968: jis0208<<14 | 0x27<<7 | 0x24,\n\t27711 - 19968: jis0208<<14 | 0x59<<7 | 0x3A,\n\t27712 - 19968: jis0208<<14 | 0x23<<7 | 0x54,\n\t27713 - 19968: jis0208<<14 | 0x1C<<7 | 0x20,\n\t27714 - 19968: jis0208<<14 | 0x14<<7 | 0x40,\n\t27722 - 19968: jis0212<<14 | 0x25<<7 | 0x37,\n\t27723 - 19968: jis0212<<14 | 0x25<<7 | 0x38,\n\t27725 - 19968: jis0212<<14 | 0x25<<7 | 0x39,\n\t27726 - 19968: jis0208<<14 | 0x27<<7 | 0x25,\n\t27727 - 19968: jis0212<<14 | 0x25<<7 | 0x3A,\n\t27728 - 19968: jis0208<<14 | 0x1B<<7 | 0x0D,\n\t27730 - 19968: jis0212<<14 | 0x25<<7 | 0x3B,\n\t27732 - 19968: jis0212<<14 | 0x25<<7 | 0x3C,\n\t27733 - 19968: jis0208<<14 | 0x3C<<7 | 0x47,\n\t27735 - 19968: jis0208<<14 | 0x13<<7 | 0x1F,\n\t27737 - 19968: jis0212<<14 | 0x25<<7 | 0x3D,\n\t27738 - 19968: jis0208<<14 | 0x10<<7 | 0x57,\n\t27739 - 19968: jis0212<<14 | 0x25<<7 | 0x3E,\n\t27740 - 19968: jis0208<<14 | 0x59<<7 | 0x3B,\n\t27741 - 19968: jis0208<<14 | 0x25<<7 | 0x51,\n\t27742 - 19968: jis0208<<14 | 0x3C<<7 | 0x46,\n\t27743 - 19968: jis0208<<14 | 0x18<<7 | 0x1D,\n\t27744 - 19968: jis0208<<14 | 0x22<<7 | 0x32,\n\t27746 - 19968: jis0208<<14 | 0x3C<<7 | 0x48,\n\t27751 - 19968: jis0212<<14 | 0x26<<7 | 0x15,\n\t27752 - 19968: jis0208<<14 | 0x3C<<7 | 0x50,\n\t27754 - 19968: jis0208<<14 | 0x3C<<7 | 0x49,\n\t27755 - 19968: jis0212<<14 | 0x25<<7 | 0x40,\n\t27757 - 19968: jis0212<<14 | 0x25<<7 | 0x41,\n\t27759 - 19968: jis0208<<14 | 0x59<<7 | 0x3D,\n\t27760 - 19968: jis0208<<14 | 0x21<<7 | 0x20,\n\t27762 - 19968: jis0208<<14 | 0x14<<7 | 0x41,\n\t27763 - 19968: jis0208<<14 | 0x3C<<7 | 0x51,\n\t27764 - 19968: jis0212<<14 | 0x25<<7 | 0x43,\n\t27766 - 19968: jis0212<<14 | 0x25<<7 | 0x44,\n\t27768 - 19968: jis0212<<14 | 0x25<<7 | 0x45,\n\t27769 - 19968: jis0212<<14 | 0x25<<7 | 0x46,\n\t27770 - 19968: jis0208<<14 | 0x16<<7 | 0x47,\n\t27771 - 19968: jis0212<<14 | 0x25<<7 | 0x47,\n\t27773 - 19968: jis0208<<14 | 0x14<<7 | 0x04,\n\t27774 - 19968: jis0208<<14 | 0x3C<<7 | 0x4F,\n\t27777 - 19968: jis0208<<14 | 0x3C<<7 | 0x4D,\n\t27778 - 19968: jis0208<<14 | 0x3C<<7 | 0x4A,\n\t27779 - 19968: jis0208<<14 | 0x2C<<7 | 0x3F,\n\t27781 - 19968: jis0212<<14 | 0x25<<7 | 0x48,\n\t27782 - 19968: jis0208<<14 | 0x59<<7 | 0x3C,\n\t27783 - 19968: jis0212<<14 | 0x25<<7 | 0x4A,\n\t27784 - 19968: jis0208<<14 | 0x23<<7 | 0x1F,\n\t27785 - 19968: jis0212<<14 | 0x25<<7 | 0x4B,\n\t27788 - 19968: jis0208<<14 | 0x25<<7 | 0x38,\n\t27789 - 19968: jis0208<<14 | 0x3C<<7 | 0x4B,\n\t27792 - 19968: jis0208<<14 | 0x3C<<7 | 0x53,\n\t27794 - 19968: jis0208<<14 | 0x3C<<7 | 0x52,\n\t27795 - 19968: jis0208<<14 | 0x16<<7 | 0x02,\n\t27796 - 19968: jis0212<<14 | 0x25<<7 | 0x4C,\n\t27797 - 19968: jis0212<<14 | 0x25<<7 | 0x4D,\n\t27798 - 19968: jis0208<<14 | 0x11<<7 | 0x0C,\n\t27799 - 19968: jis0212<<14 | 0x25<<7 | 0x4E,\n\t27800 - 19968: jis0212<<14 | 0x25<<7 | 0x4F,\n\t27801 - 19968: jis0208<<14 | 0x19<<7 | 0x1A,\n\t27802 - 19968: jis0208<<14 | 0x3C<<7 | 0x4C,\n\t27803 - 19968: jis0208<<14 | 0x3C<<7 | 0x4E,\n\t27804 - 19968: jis0212<<14 | 0x25<<7 | 0x50,\n\t27807 - 19968: jis0212<<14 | 0x25<<7 | 0x51,\n\t27809 - 19968: jis0208<<14 | 0x2A<<7 | 0x36,\n\t27810 - 19968: jis0208<<14 | 0x21<<7 | 0x53,\n\t27819 - 19968: jis0208<<14 | 0x2A<<7 | 0x56,\n\t27822 - 19968: jis0208<<14 | 0x3C<<7 | 0x5B,\n\t27824 - 19968: jis0212<<14 | 0x25<<7 | 0x52,\n\t27825 - 19968: jis0208<<14 | 0x3C<<7 | 0x5C,\n\t27826 - 19968: jis0212<<14 | 0x25<<7 | 0x53,\n\t27827 - 19968: jis0208<<14 | 0x11<<7 | 0x2E,\n\t27828 - 19968: jis0212<<14 | 0x25<<7 | 0x54,\n\t27832 - 19968: jis0208<<14 | 0x29<<7 | 0x07,\n\t27833 - 19968: jis0208<<14 | 0x2B<<7 | 0x5C,\n\t27834 - 19968: jis0208<<14 | 0x3D<<7 | 0x00,\n\t27835 - 19968: jis0208<<14 | 0x1B<<7 | 0x02,\n\t27836 - 19968: jis0208<<14 | 0x1D<<7 | 0x21,\n\t27837 - 19968: jis0208<<14 | 0x3C<<7 | 0x57,\n\t27838 - 19968: jis0208<<14 | 0x3C<<7 | 0x5D,\n\t27839 - 19968: jis0208<<14 | 0x10<<7 | 0x47,\n\t27841 - 19968: jis0208<<14 | 0x15<<7 | 0x16,\n\t27842 - 19968: jis0212<<14 | 0x25<<7 | 0x55,\n\t27844 - 19968: jis0208<<14 | 0x3C<<7 | 0x54,\n\t27845 - 19968: jis0208<<14 | 0x3C<<7 | 0x59,\n\t27846 - 19968: jis0212<<14 | 0x25<<7 | 0x56,\n\t27849 - 19968: jis0208<<14 | 0x1F<<7 | 0x53,\n\t27850 - 19968: jis0208<<14 | 0x26<<7 | 0x50,\n\t27852 - 19968: jis0208<<14 | 0x27<<7 | 0x46,\n\t27853 - 19968: jis0212<<14 | 0x25<<7 | 0x57,\n\t27855 - 19968: jis0212<<14 | 0x25<<7 | 0x58,\n\t27856 - 19968: jis0212<<14 | 0x25<<7 | 0x59,\n\t27857 - 19968: jis0212<<14 | 0x25<<7 | 0x5A,\n\t27858 - 19968: jis0212<<14 | 0x25<<7 | 0x5B,\n\t27859 - 19968: jis0208<<14 | 0x3C<<7 | 0x56,\n\t27860 - 19968: jis0212<<14 | 0x25<<7 | 0x5C,\n\t27861 - 19968: jis0208<<14 | 0x2A<<7 | 0x00,\n\t27862 - 19968: jis0212<<14 | 0x25<<7 | 0x5D,\n\t27863 - 19968: jis0208<<14 | 0x3C<<7 | 0x58,\n\t27865 - 19968: jis0208<<14 | 0x3D<<7 | 0x03,\n\t27866 - 19968: jis0208<<14 | 0x59<<7 | 0x3E,\n\t27867 - 19968: jis0208<<14 | 0x3D<<7 | 0x01,\n\t27868 - 19968: jis0212<<14 | 0x26<<7 | 0x01,\n\t27869 - 19968: jis0208<<14 | 0x3C<<7 | 0x5A,\n\t27872 - 19968: jis0212<<14 | 0x26<<7 | 0x02,\n\t27873 - 19968: jis0208<<14 | 0x2A<<7 | 0x01,\n\t27874 - 19968: jis0208<<14 | 0x26<<7 | 0x27,\n\t27875 - 19968: jis0208<<14 | 0x14<<7 | 0x42,\n\t27877 - 19968: jis0208<<14 | 0x24<<7 | 0x04,\n\t27879 - 19968: jis0212<<14 | 0x26<<7 | 0x03,\n\t27880 - 19968: jis0208<<14 | 0x22<<7 | 0x4C,\n\t27881 - 19968: jis0212<<14 | 0x26<<7 | 0x04,\n\t27882 - 19968: jis0208<<14 | 0x3D<<7 | 0x04,\n\t27883 - 19968: jis0212<<14 | 0x26<<7 | 0x05,\n\t27884 - 19968: jis0212<<14 | 0x26<<7 | 0x06,\n\t27886 - 19968: jis0212<<14 | 0x26<<7 | 0x07,\n\t27887 - 19968: jis0208<<14 | 0x3D<<7 | 0x02,\n\t27888 - 19968: jis0208<<14 | 0x21<<7 | 0x38,\n\t27889 - 19968: jis0208<<14 | 0x3C<<7 | 0x55,\n\t27890 - 19968: jis0212<<14 | 0x26<<7 | 0x08,\n\t27891 - 19968: jis0208<<14 | 0x10<<7 | 0x2A,\n\t27892 - 19968: jis0212<<14 | 0x26<<7 | 0x09,\n\t27908 - 19968: jis0208<<14 | 0x59<<7 | 0x3F,\n\t27911 - 19968: jis0212<<14 | 0x26<<7 | 0x0B,\n\t27914 - 19968: jis0212<<14 | 0x26<<7 | 0x0C,\n\t27915 - 19968: jis0208<<14 | 0x2C<<7 | 0x2D,\n\t27916 - 19968: jis0208<<14 | 0x3D<<7 | 0x0F,\n\t27918 - 19968: jis0212<<14 | 0x26<<7 | 0x0D,\n\t27919 - 19968: jis0212<<14 | 0x26<<7 | 0x0E,\n\t27921 - 19968: jis0212<<14 | 0x26<<7 | 0x0F,\n\t27922 - 19968: jis0208<<14 | 0x3D<<7 | 0x0E,\n\t27923 - 19968: jis0212<<14 | 0x26<<7 | 0x10,\n\t27927 - 19968: jis0208<<14 | 0x1F<<7 | 0x55,\n\t27929 - 19968: jis0208<<14 | 0x3D<<7 | 0x0B,\n\t27930 - 19968: jis0212<<14 | 0x26<<7 | 0x11,\n\t27931 - 19968: jis0208<<14 | 0x2C<<7 | 0x4B,\n\t27934 - 19968: jis0208<<14 | 0x25<<7 | 0x15,\n\t27935 - 19968: jis0208<<14 | 0x3D<<7 | 0x05,\n\t27941 - 19968: jis0208<<14 | 0x23<<7 | 0x24,\n\t27942 - 19968: jis0212<<14 | 0x26<<7 | 0x12,\n\t27943 - 19968: jis0212<<14 | 0x26<<7 | 0x13,\n\t27944 - 19968: jis0212<<14 | 0x26<<7 | 0x14,\n\t27945 - 19968: jis0208<<14 | 0x10<<7 | 0x2B,\n\t27946 - 19968: jis0208<<14 | 0x18<<7 | 0x1E,\n\t27947 - 19968: jis0208<<14 | 0x3D<<7 | 0x08,\n\t27950 - 19968: jis0212<<14 | 0x26<<7 | 0x16,\n\t27951 - 19968: jis0212<<14 | 0x26<<7 | 0x17,\n\t27953 - 19968: jis0212<<14 | 0x26<<7 | 0x18,\n\t27954 - 19968: jis0208<<14 | 0x1C<<7 | 0x06,\n\t27955 - 19968: jis0208<<14 | 0x3D<<7 | 0x0D,\n\t27957 - 19968: jis0208<<14 | 0x3D<<7 | 0x0C,\n\t27958 - 19968: jis0208<<14 | 0x3D<<7 | 0x07,\n\t27960 - 19968: jis0208<<14 | 0x3D<<7 | 0x0A,\n\t27961 - 19968: jis0212<<14 | 0x26<<7 | 0x19,\n\t27963 - 19968: jis0208<<14 | 0x12<<7 | 0x47,\n\t27964 - 19968: jis0212<<14 | 0x26<<7 | 0x1A,\n\t27965 - 19968: jis0208<<14 | 0x3D<<7 | 0x09,\n\t27966 - 19968: jis0208<<14 | 0x26<<7 | 0x28,\n\t27967 - 19968: jis0212<<14 | 0x26<<7 | 0x1B,\n\t27969 - 19968: jis0208<<14 | 0x2D<<7 | 0x0D,\n\t27972 - 19968: jis0208<<14 | 0x1D<<7 | 0x53,\n\t27973 - 19968: jis0208<<14 | 0x1F<<7 | 0x54,\n\t27991 - 19968: jis0212<<14 | 0x26<<7 | 0x1C,\n\t27993 - 19968: jis0208<<14 | 0x3D<<7 | 0x15,\n\t27994 - 19968: jis0208<<14 | 0x3D<<7 | 0x13,\n\t27996 - 19968: jis0208<<14 | 0x28<<7 | 0x2C,\n\t27998 - 19968: jis0212<<14 | 0x26<<7 | 0x1D,\n\t27999 - 19968: jis0212<<14 | 0x26<<7 | 0x1E,\n\t28001 - 19968: jis0212<<14 | 0x26<<7 | 0x1F,\n\t28003 - 19968: jis0208<<14 | 0x3D<<7 | 0x10,\n\t28004 - 19968: jis0208<<14 | 0x3D<<7 | 0x12,\n\t28005 - 19968: jis0212<<14 | 0x26<<7 | 0x20,\n\t28006 - 19968: jis0208<<14 | 0x10<<7 | 0x19,\n\t28007 - 19968: jis0212<<14 | 0x26<<7 | 0x21,\n\t28009 - 19968: jis0208<<14 | 0x18<<7 | 0x1F,\n\t28010 - 19968: jis0208<<14 | 0x2E<<7 | 0x11,\n\t28012 - 19968: jis0208<<14 | 0x12<<7 | 0x1C,\n\t28014 - 19968: jis0208<<14 | 0x28<<7 | 0x41,\n\t28015 - 19968: jis0208<<14 | 0x59<<7 | 0x41,\n\t28016 - 19968: jis0212<<14 | 0x26<<7 | 0x23,\n\t28020 - 19968: jis0208<<14 | 0x2C<<7 | 0x40,\n\t28023 - 19968: jis0208<<14 | 0x12<<7 | 0x03,\n\t28024 - 19968: jis0208<<14 | 0x1E<<7 | 0x1A,\n\t28025 - 19968: jis0208<<14 | 0x3D<<7 | 0x14,\n\t28028 - 19968: jis0212<<14 | 0x26<<7 | 0x24,\n\t28034 - 19968: jis0212<<14 | 0x26<<7 | 0x25,\n\t28037 - 19968: jis0208<<14 | 0x3D<<7 | 0x19,\n\t28039 - 19968: jis0208<<14 | 0x59<<7 | 0x40,\n\t28040 - 19968: jis0208<<14 | 0x1D<<7 | 0x22,\n\t28044 - 19968: jis0208<<14 | 0x2C<<7 | 0x0F,\n\t28046 - 19968: jis0208<<14 | 0x3D<<7 | 0x16,\n\t28049 - 19968: jis0212<<14 | 0x26<<7 | 0x27,\n\t28050 - 19968: jis0212<<14 | 0x26<<7 | 0x28,\n\t28051 - 19968: jis0208<<14 | 0x3D<<7 | 0x11,\n\t28052 - 19968: jis0212<<14 | 0x26<<7 | 0x29,\n\t28053 - 19968: jis0208<<14 | 0x3D<<7 | 0x17,\n\t28054 - 19968: jis0208<<14 | 0x59<<7 | 0x42,\n\t28055 - 19968: jis0212<<14 | 0x26<<7 | 0x2B,\n\t28056 - 19968: jis0212<<14 | 0x26<<7 | 0x2C,\n\t28057 - 19968: jis0208<<14 | 0x2D<<7 | 0x3D,\n\t28059 - 19968: jis0208<<14 | 0x24<<7 | 0x52,\n\t28060 - 19968: jis0208<<14 | 0x25<<7 | 0x21,\n\t28074 - 19968: jis0212<<14 | 0x26<<7 | 0x2D,\n\t28076 - 19968: jis0208<<14 | 0x59<<7 | 0x43,\n\t28079 - 19968: jis0208<<14 | 0x12<<7 | 0x15,\n\t28082 - 19968: jis0208<<14 | 0x10<<7 | 0x34,\n\t28084 - 19968: jis0212<<14 | 0x26<<7 | 0x2F,\n\t28085 - 19968: jis0208<<14 | 0x3D<<7 | 0x1D,\n\t28087 - 19968: jis0212<<14 | 0x26<<7 | 0x30,\n\t28088 - 19968: jis0208<<14 | 0x3D<<7 | 0x20,\n\t28089 - 19968: jis0212<<14 | 0x26<<7 | 0x31,\n\t28092 - 19968: jis0208<<14 | 0x2D<<7 | 0x22,\n\t28093 - 19968: jis0212<<14 | 0x26<<7 | 0x32,\n\t28095 - 19968: jis0212<<14 | 0x26<<7 | 0x33,\n\t28096 - 19968: jis0208<<14 | 0x2C<<7 | 0x43,\n\t28100 - 19968: jis0212<<14 | 0x26<<7 | 0x34,\n\t28101 - 19968: jis0208<<14 | 0x3D<<7 | 0x27,\n\t28102 - 19968: jis0208<<14 | 0x3D<<7 | 0x21,\n\t28103 - 19968: jis0208<<14 | 0x3D<<7 | 0x1E,\n\t28104 - 19968: jis0212<<14 | 0x26<<7 | 0x35,\n\t28106 - 19968: jis0212<<14 | 0x26<<7 | 0x36,\n\t28107 - 19968: jis0208<<14 | 0x2D<<7 | 0x33,\n\t28108 - 19968: jis0208<<14 | 0x3D<<7 | 0x24,\n\t28110 - 19968: jis0212<<14 | 0x26<<7 | 0x37,\n\t28111 - 19968: jis0208<<14 | 0x59<<7 | 0x44,\n\t28113 - 19968: jis0208<<14 | 0x1C<<7 | 0x29,\n\t28114 - 19968: jis0208<<14 | 0x3D<<7 | 0x26,\n\t28117 - 19968: jis0208<<14 | 0x3D<<7 | 0x2B,\n\t28118 - 19968: jis0212<<14 | 0x26<<7 | 0x39,\n\t28120 - 19968: jis0208<<14 | 0x24<<7 | 0x50,\n\t28121 - 19968: jis0208<<14 | 0x3D<<7 | 0x29,\n\t28123 - 19968: jis0212<<14 | 0x26<<7 | 0x3A,\n\t28125 - 19968: jis0212<<14 | 0x26<<7 | 0x3B,\n\t28126 - 19968: jis0208<<14 | 0x3D<<7 | 0x23,\n\t28127 - 19968: jis0212<<14 | 0x26<<7 | 0x3C,\n\t28128 - 19968: jis0212<<14 | 0x26<<7 | 0x3D,\n\t28129 - 19968: jis0208<<14 | 0x22<<7 | 0x17,\n\t28130 - 19968: jis0212<<14 | 0x26<<7 | 0x3E,\n\t28132 - 19968: jis0208<<14 | 0x3D<<7 | 0x2A,\n\t28133 - 19968: jis0212<<14 | 0x26<<7 | 0x3F,\n\t28134 - 19968: jis0208<<14 | 0x3D<<7 | 0x1F,\n\t28136 - 19968: jis0208<<14 | 0x3D<<7 | 0x25,\n\t28137 - 19968: jis0212<<14 | 0x26<<7 | 0x40,\n\t28138 - 19968: jis0208<<14 | 0x3D<<7 | 0x2C,\n\t28139 - 19968: jis0208<<14 | 0x0F<<7 | 0x5B,\n\t28140 - 19968: jis0208<<14 | 0x3D<<7 | 0x22,\n\t28142 - 19968: jis0208<<14 | 0x3D<<7 | 0x2D,\n\t28143 - 19968: jis0212<<14 | 0x26<<7 | 0x41,\n\t28144 - 19968: jis0212<<14 | 0x26<<7 | 0x42,\n\t28145 - 19968: jis0208<<14 | 0x1E<<7 | 0x1B,\n\t28146 - 19968: jis0208<<14 | 0x59<<7 | 0x46,\n\t28147 - 19968: jis0208<<14 | 0x1C<<7 | 0x3E,\n\t28148 - 19968: jis0212<<14 | 0x26<<7 | 0x43,\n\t28149 - 19968: jis0208<<14 | 0x29<<7 | 0x04,\n\t28150 - 19968: jis0212<<14 | 0x26<<7 | 0x44,\n\t28151 - 19968: jis0208<<14 | 0x19<<7 | 0x0D,\n\t28152 - 19968: jis0208<<14 | 0x59<<7 | 0x45,\n\t28153 - 19968: jis0208<<14 | 0x3D<<7 | 0x1A,\n\t28154 - 19968: jis0208<<14 | 0x3D<<7 | 0x28,\n\t28155 - 19968: jis0208<<14 | 0x24<<7 | 0x19,\n\t28156 - 19968: jis0208<<14 | 0x59<<7 | 0x47,\n\t28160 - 19968: jis0212<<14 | 0x26<<7 | 0x46,\n\t28164 - 19968: jis0212<<14 | 0x26<<7 | 0x47,\n\t28165 - 19968: jis0208<<14 | 0x1F<<7 | 0x15,\n\t28167 - 19968: jis0208<<14 | 0x12<<7 | 0x48,\n\t28168 - 19968: jis0208<<14 | 0x19<<7 | 0x30,\n\t28169 - 19968: jis0208<<14 | 0x1D<<7 | 0x23,\n\t28170 - 19968: jis0208<<14 | 0x3D<<7 | 0x1C,\n\t28171 - 19968: jis0208<<14 | 0x1C<<7 | 0x21,\n\t28179 - 19968: jis0208<<14 | 0x16<<7 | 0x2B,\n\t28181 - 19968: jis0208<<14 | 0x3D<<7 | 0x1B,\n\t28185 - 19968: jis0208<<14 | 0x3D<<7 | 0x31,\n\t28186 - 19968: jis0208<<14 | 0x1C<<7 | 0x4C,\n\t28187 - 19968: jis0208<<14 | 0x17<<7 | 0x19,\n\t28189 - 19968: jis0208<<14 | 0x3D<<7 | 0x40,\n\t28190 - 19968: jis0212<<14 | 0x26<<7 | 0x48,\n\t28191 - 19968: jis0208<<14 | 0x3D<<7 | 0x3A,\n\t28192 - 19968: jis0208<<14 | 0x14<<7 | 0x53,\n\t28193 - 19968: jis0208<<14 | 0x24<<7 | 0x2E,\n\t28194 - 19968: jis0212<<14 | 0x26<<7 | 0x49,\n\t28195 - 19968: jis0208<<14 | 0x3D<<7 | 0x35,\n\t28196 - 19968: jis0208<<14 | 0x3D<<7 | 0x3E,\n\t28197 - 19968: jis0208<<14 | 0x0F<<7 | 0x0E,\n\t28198 - 19968: jis0208<<14 | 0x10<<7 | 0x11,\n\t28199 - 19968: jis0208<<14 | 0x59<<7 | 0x4A,\n\t28201 - 19968: jis0208<<14 | 0x11<<7 | 0x18,\n\t28203 - 19968: jis0208<<14 | 0x3D<<7 | 0x37,\n\t28204 - 19968: jis0208<<14 | 0x21<<7 | 0x0B,\n\t28205 - 19968: jis0208<<14 | 0x3D<<7 | 0x2E,\n\t28206 - 19968: jis0208<<14 | 0x3D<<7 | 0x30,\n\t28207 - 19968: jis0208<<14 | 0x18<<7 | 0x20,\n\t28210 - 19968: jis0212<<14 | 0x26<<7 | 0x4B,\n\t28214 - 19968: jis0212<<14 | 0x26<<7 | 0x4C,\n\t28216 - 19968: jis0208<<14 | 0x3D<<7 | 0x41,\n\t28217 - 19968: jis0208<<14 | 0x59<<7 | 0x48,\n\t28218 - 19968: jis0208<<14 | 0x3D<<7 | 0x3C,\n\t28219 - 19968: jis0212<<14 | 0x26<<7 | 0x4E,\n\t28220 - 19968: jis0208<<14 | 0x59<<7 | 0x4B,\n\t28222 - 19968: jis0208<<14 | 0x3D<<7 | 0x34,\n\t28227 - 19968: jis0208<<14 | 0x3D<<7 | 0x3B,\n\t28228 - 19968: jis0212<<14 | 0x26<<7 | 0x50,\n\t28229 - 19968: jis0212<<14 | 0x26<<7 | 0x51,\n\t28232 - 19968: jis0212<<14 | 0x26<<7 | 0x52,\n\t28233 - 19968: jis0212<<14 | 0x26<<7 | 0x53,\n\t28234 - 19968: jis0208<<14 | 0x2B<<7 | 0x0A,\n\t28235 - 19968: jis0212<<14 | 0x26<<7 | 0x54,\n\t28237 - 19968: jis0208<<14 | 0x3D<<7 | 0x39,\n\t28238 - 19968: jis0208<<14 | 0x3D<<7 | 0x3D,\n\t28239 - 19968: jis0212<<14 | 0x26<<7 | 0x55,\n\t28241 - 19968: jis0212<<14 | 0x26<<7 | 0x56,\n\t28242 - 19968: jis0212<<14 | 0x26<<7 | 0x57,\n\t28243 - 19968: jis0212<<14 | 0x26<<7 | 0x58,\n\t28244 - 19968: jis0212<<14 | 0x26<<7 | 0x59,\n\t28246 - 19968: jis0208<<14 | 0x17<<7 | 0x2F,\n\t28247 - 19968: jis0212<<14 | 0x26<<7 | 0x5A,\n\t28248 - 19968: jis0208<<14 | 0x1D<<7 | 0x24,\n\t28251 - 19968: jis0208<<14 | 0x22<<7 | 0x18,\n\t28252 - 19968: jis0208<<14 | 0x59<<7 | 0x49,\n\t28253 - 19968: jis0212<<14 | 0x26<<7 | 0x5C,\n\t28254 - 19968: jis0212<<14 | 0x26<<7 | 0x5D,\n\t28255 - 19968: jis0208<<14 | 0x3D<<7 | 0x33,\n\t28258 - 19968: jis0212<<14 | 0x27<<7 | 0x00,\n\t28259 - 19968: jis0212<<14 | 0x27<<7 | 0x01,\n\t28263 - 19968: jis0208<<14 | 0x2C<<7 | 0x0E,\n\t28264 - 19968: jis0212<<14 | 0x27<<7 | 0x02,\n\t28267 - 19968: jis0208<<14 | 0x3D<<7 | 0x36,\n\t28270 - 19968: jis0208<<14 | 0x3D<<7 | 0x2F,\n\t28271 - 19968: jis0208<<14 | 0x24<<7 | 0x51,\n\t28274 - 19968: jis0208<<14 | 0x3D<<7 | 0x32,\n\t28275 - 19968: jis0212<<14 | 0x27<<7 | 0x03,\n\t28278 - 19968: jis0208<<14 | 0x3D<<7 | 0x38,\n\t28283 - 19968: jis0212<<14 | 0x27<<7 | 0x04,\n\t28285 - 19968: jis0212<<14 | 0x27<<7 | 0x05,\n\t28286 - 19968: jis0208<<14 | 0x2E<<7 | 0x30,\n\t28287 - 19968: jis0208<<14 | 0x1B<<7 | 0x1D,\n\t28288 - 19968: jis0208<<14 | 0x2A<<7 | 0x5D,\n\t28290 - 19968: jis0208<<14 | 0x3D<<7 | 0x42,\n\t28300 - 19968: jis0208<<14 | 0x27<<7 | 0x0D,\n\t28301 - 19968: jis0212<<14 | 0x27<<7 | 0x06,\n\t28303 - 19968: jis0208<<14 | 0x3D<<7 | 0x4E,\n\t28304 - 19968: jis0208<<14 | 0x17<<7 | 0x1A,\n\t28307 - 19968: jis0212<<14 | 0x27<<7 | 0x07,\n\t28310 - 19968: jis0208<<14 | 0x1C<<7 | 0x3F,\n\t28312 - 19968: jis0208<<14 | 0x3D<<7 | 0x44,\n\t28313 - 19968: jis0212<<14 | 0x27<<7 | 0x08,\n\t28316 - 19968: jis0208<<14 | 0x2D<<7 | 0x0E,\n\t28317 - 19968: jis0208<<14 | 0x18<<7 | 0x21,\n\t28319 - 19968: jis0208<<14 | 0x3D<<7 | 0x51,\n\t28320 - 19968: jis0212<<14 | 0x27<<7 | 0x09,\n\t28322 - 19968: jis0208<<14 | 0x0F<<7 | 0x4D,\n\t28325 - 19968: jis0208<<14 | 0x3D<<7 | 0x4F,\n\t28327 - 19968: jis0212<<14 | 0x27<<7 | 0x0A,\n\t28330 - 19968: jis0208<<14 | 0x3D<<7 | 0x43,\n\t28333 - 19968: jis0212<<14 | 0x27<<7 | 0x0B,\n\t28334 - 19968: jis0212<<14 | 0x27<<7 | 0x0C,\n\t28335 - 19968: jis0208<<14 | 0x3D<<7 | 0x49,\n\t28337 - 19968: jis0212<<14 | 0x27<<7 | 0x0D,\n\t28338 - 19968: jis0208<<14 | 0x3D<<7 | 0x4B,\n\t28339 - 19968: jis0212<<14 | 0x27<<7 | 0x0E,\n\t28342 - 19968: jis0208<<14 | 0x2C<<7 | 0x2E,\n\t28343 - 19968: jis0208<<14 | 0x3D<<7 | 0x46,\n\t28346 - 19968: jis0208<<14 | 0x24<<7 | 0x0D,\n\t28347 - 19968: jis0212<<14 | 0x27<<7 | 0x0F,\n\t28349 - 19968: jis0208<<14 | 0x3D<<7 | 0x48,\n\t28351 - 19968: jis0208<<14 | 0x59<<7 | 0x4C,\n\t28352 - 19968: jis0212<<14 | 0x27<<7 | 0x11,\n\t28353 - 19968: jis0212<<14 | 0x27<<7 | 0x12,\n\t28354 - 19968: jis0208<<14 | 0x3D<<7 | 0x50,\n\t28355 - 19968: jis0212<<14 | 0x27<<7 | 0x13,\n\t28356 - 19968: jis0208<<14 | 0x3D<<7 | 0x4A,\n\t28357 - 19968: jis0208<<14 | 0x2B<<7 | 0x26,\n\t28359 - 19968: jis0212<<14 | 0x27<<7 | 0x14,\n\t28360 - 19968: jis0212<<14 | 0x27<<7 | 0x15,\n\t28361 - 19968: jis0208<<14 | 0x3D<<7 | 0x45,\n\t28362 - 19968: jis0212<<14 | 0x27<<7 | 0x16,\n\t28363 - 19968: jis0208<<14 | 0x1B<<7 | 0x01,\n\t28364 - 19968: jis0208<<14 | 0x3D<<7 | 0x5D,\n\t28365 - 19968: jis0212<<14 | 0x27<<7 | 0x17,\n\t28366 - 19968: jis0212<<14 | 0x27<<7 | 0x18,\n\t28367 - 19968: jis0212<<14 | 0x27<<7 | 0x19,\n\t28369 - 19968: jis0208<<14 | 0x12<<7 | 0x49,\n\t28371 - 19968: jis0208<<14 | 0x3D<<7 | 0x47,\n\t28372 - 19968: jis0208<<14 | 0x3D<<7 | 0x4C,\n\t28373 - 19968: jis0208<<14 | 0x3D<<7 | 0x4D,\n\t28381 - 19968: jis0208<<14 | 0x21<<7 | 0x4B,\n\t28382 - 19968: jis0208<<14 | 0x21<<7 | 0x39,\n\t28395 - 19968: jis0212<<14 | 0x27<<7 | 0x1A,\n\t28396 - 19968: jis0208<<14 | 0x3D<<7 | 0x55,\n\t28397 - 19968: jis0212<<14 | 0x27<<7 | 0x1B,\n\t28398 - 19968: jis0212<<14 | 0x27<<7 | 0x1C,\n\t28399 - 19968: jis0208<<14 | 0x3D<<7 | 0x5B,\n\t28402 - 19968: jis0208<<14 | 0x3D<<7 | 0x59,\n\t28404 - 19968: jis0208<<14 | 0x24<<7 | 0x08,\n\t28407 - 19968: jis0208<<14 | 0x3E<<7 | 0x02,\n\t28408 - 19968: jis0208<<14 | 0x3D<<7 | 0x56,\n\t28409 - 19968: jis0212<<14 | 0x27<<7 | 0x1D,\n\t28411 - 19968: jis0212<<14 | 0x27<<7 | 0x1E,\n\t28413 - 19968: jis0212<<14 | 0x27<<7 | 0x1F,\n\t28414 - 19968: jis0208<<14 | 0x3D<<7 | 0x57,\n\t28415 - 19968: jis0208<<14 | 0x3D<<7 | 0x3F,\n\t28417 - 19968: jis0208<<14 | 0x14<<7 | 0x58,\n\t28418 - 19968: jis0208<<14 | 0x28<<7 | 0x19,\n\t28420 - 19968: jis0212<<14 | 0x27<<7 | 0x20,\n\t28422 - 19968: jis0208<<14 | 0x1B<<7 | 0x1E,\n\t28424 - 19968: jis0212<<14 | 0x27<<7 | 0x21,\n\t28425 - 19968: jis0208<<14 | 0x18<<7 | 0x56,\n\t28426 - 19968: jis0212<<14 | 0x27<<7 | 0x22,\n\t28428 - 19968: jis0212<<14 | 0x27<<7 | 0x23,\n\t28429 - 19968: jis0212<<14 | 0x27<<7 | 0x24,\n\t28431 - 19968: jis0208<<14 | 0x2E<<7 | 0x12,\n\t28433 - 19968: jis0208<<14 | 0x3D<<7 | 0x53,\n\t28435 - 19968: jis0208<<14 | 0x3E<<7 | 0x01,\n\t28436 - 19968: jis0208<<14 | 0x10<<7 | 0x48,\n\t28437 - 19968: jis0208<<14 | 0x20<<7 | 0x45,\n\t28438 - 19968: jis0212<<14 | 0x27<<7 | 0x25,\n\t28440 - 19968: jis0212<<14 | 0x27<<7 | 0x26,\n\t28442 - 19968: jis0212<<14 | 0x27<<7 | 0x27,\n\t28443 - 19968: jis0212<<14 | 0x27<<7 | 0x28,\n\t28448 - 19968: jis0208<<14 | 0x26<<7 | 0x58,\n\t28450 - 19968: jis0208<<14 | 0x13<<7 | 0x20,\n\t28451 - 19968: jis0208<<14 | 0x2D<<7 | 0x59,\n\t28454 - 19968: jis0212<<14 | 0x27<<7 | 0x29,\n\t28457 - 19968: jis0212<<14 | 0x27<<7 | 0x2A,\n\t28458 - 19968: jis0212<<14 | 0x27<<7 | 0x2B,\n\t28459 - 19968: jis0208<<14 | 0x2B<<7 | 0x00,\n\t28460 - 19968: jis0208<<14 | 0x23<<7 | 0x31,\n\t28461 - 19968: jis0212<<14 | 0x27<<7 | 0x32,\n\t28463 - 19968: jis0212<<14 | 0x27<<7 | 0x2C,\n\t28464 - 19968: jis0212<<14 | 0x27<<7 | 0x2D,\n\t28465 - 19968: jis0208<<14 | 0x3D<<7 | 0x5A,\n\t28466 - 19968: jis0208<<14 | 0x3D<<7 | 0x5C,\n\t28467 - 19968: jis0212<<14 | 0x27<<7 | 0x2E,\n\t28470 - 19968: jis0212<<14 | 0x27<<7 | 0x2F,\n\t28472 - 19968: jis0208<<14 | 0x20<<7 | 0x11,\n\t28475 - 19968: jis0212<<14 | 0x27<<7 | 0x30,\n\t28476 - 19968: jis0212<<14 | 0x27<<7 | 0x31,\n\t28478 - 19968: jis0208<<14 | 0x3E<<7 | 0x00,\n\t28479 - 19968: jis0208<<14 | 0x3D<<7 | 0x58,\n\t28481 - 19968: jis0208<<14 | 0x3D<<7 | 0x52,\n\t28485 - 19968: jis0208<<14 | 0x13<<7 | 0x22,\n\t28495 - 19968: jis0212<<14 | 0x27<<7 | 0x33,\n\t28497 - 19968: jis0212<<14 | 0x27<<7 | 0x34,\n\t28498 - 19968: jis0212<<14 | 0x27<<7 | 0x35,\n\t28499 - 19968: jis0212<<14 | 0x27<<7 | 0x36,\n\t28500 - 19968: jis0208<<14 | 0x16<<7 | 0x48,\n\t28503 - 19968: jis0212<<14 | 0x27<<7 | 0x37,\n\t28504 - 19968: jis0208<<14 | 0x3E<<7 | 0x0E,\n\t28505 - 19968: jis0212<<14 | 0x27<<7 | 0x38,\n\t28506 - 19968: jis0212<<14 | 0x27<<7 | 0x39,\n\t28507 - 19968: jis0208<<14 | 0x3E<<7 | 0x09,\n\t28508 - 19968: jis0208<<14 | 0x1F<<7 | 0x57,\n\t28509 - 19968: jis0212<<14 | 0x27<<7 | 0x3A,\n\t28510 - 19968: jis0212<<14 | 0x27<<7 | 0x3B,\n\t28511 - 19968: jis0208<<14 | 0x12<<7 | 0x42,\n\t28513 - 19968: jis0212<<14 | 0x27<<7 | 0x3C,\n\t28514 - 19968: jis0212<<14 | 0x27<<7 | 0x3D,\n\t28516 - 19968: jis0208<<14 | 0x1C<<7 | 0x40,\n\t28518 - 19968: jis0208<<14 | 0x3E<<7 | 0x12,\n\t28520 - 19968: jis0212<<14 | 0x27<<7 | 0x3E,\n\t28524 - 19968: jis0212<<14 | 0x27<<7 | 0x3F,\n\t28525 - 19968: jis0208<<14 | 0x3E<<7 | 0x0B,\n\t28526 - 19968: jis0208<<14 | 0x23<<7 | 0x0B,\n\t28527 - 19968: jis0208<<14 | 0x3E<<7 | 0x08,\n\t28528 - 19968: jis0208<<14 | 0x23<<7 | 0x38,\n\t28532 - 19968: jis0208<<14 | 0x3E<<7 | 0x2B,\n\t28536 - 19968: jis0208<<14 | 0x3E<<7 | 0x05,\n\t28538 - 19968: jis0208<<14 | 0x3E<<7 | 0x04,\n\t28540 - 19968: jis0208<<14 | 0x3E<<7 | 0x0D,\n\t28541 - 19968: jis0212<<14 | 0x27<<7 | 0x40,\n\t28542 - 19968: jis0212<<14 | 0x27<<7 | 0x41,\n\t28544 - 19968: jis0208<<14 | 0x3E<<7 | 0x07,\n\t28545 - 19968: jis0208<<14 | 0x3E<<7 | 0x06,\n\t28546 - 19968: jis0208<<14 | 0x3E<<7 | 0x0C,\n\t28547 - 19968: jis0212<<14 | 0x27<<7 | 0x42,\n\t28548 - 19968: jis0208<<14 | 0x1F<<7 | 0x00,\n\t28550 - 19968: jis0208<<14 | 0x3E<<7 | 0x03,\n\t28551 - 19968: jis0212<<14 | 0x27<<7 | 0x43,\n\t28552 - 19968: jis0208<<14 | 0x59<<7 | 0x4D,\n\t28555 - 19968: jis0212<<14 | 0x27<<7 | 0x45,\n\t28556 - 19968: jis0212<<14 | 0x27<<7 | 0x46,\n\t28557 - 19968: jis0212<<14 | 0x27<<7 | 0x47,\n\t28558 - 19968: jis0208<<14 | 0x3E<<7 | 0x0F,\n\t28560 - 19968: jis0212<<14 | 0x27<<7 | 0x48,\n\t28561 - 19968: jis0208<<14 | 0x3E<<7 | 0x10,\n\t28562 - 19968: jis0212<<14 | 0x27<<7 | 0x49,\n\t28563 - 19968: jis0212<<14 | 0x27<<7 | 0x4A,\n\t28564 - 19968: jis0212<<14 | 0x27<<7 | 0x4B,\n\t28566 - 19968: jis0212<<14 | 0x27<<7 | 0x4C,\n\t28567 - 19968: jis0208<<14 | 0x13<<7 | 0x21,\n\t28570 - 19968: jis0212<<14 | 0x27<<7 | 0x4D,\n\t28575 - 19968: jis0212<<14 | 0x27<<7 | 0x4E,\n\t28576 - 19968: jis0212<<14 | 0x27<<7 | 0x4F,\n\t28577 - 19968: jis0208<<14 | 0x3E<<7 | 0x15,\n\t28579 - 19968: jis0208<<14 | 0x3E<<7 | 0x14,\n\t28580 - 19968: jis0208<<14 | 0x3E<<7 | 0x16,\n\t28581 - 19968: jis0212<<14 | 0x27<<7 | 0x50,\n\t28582 - 19968: jis0212<<14 | 0x27<<7 | 0x51,\n\t28583 - 19968: jis0212<<14 | 0x27<<7 | 0x52,\n\t28584 - 19968: jis0212<<14 | 0x27<<7 | 0x53,\n\t28586 - 19968: jis0208<<14 | 0x3E<<7 | 0x19,\n\t28590 - 19968: jis0212<<14 | 0x27<<7 | 0x54,\n\t28591 - 19968: jis0212<<14 | 0x27<<7 | 0x55,\n\t28592 - 19968: jis0212<<14 | 0x27<<7 | 0x56,\n\t28593 - 19968: jis0208<<14 | 0x24<<7 | 0x22,\n\t28595 - 19968: jis0208<<14 | 0x3E<<7 | 0x13,\n\t28597 - 19968: jis0208<<14 | 0x59<<7 | 0x4E,\n\t28598 - 19968: jis0212<<14 | 0x27<<7 | 0x58,\n\t28601 - 19968: jis0208<<14 | 0x3E<<7 | 0x17,\n\t28604 - 19968: jis0212<<14 | 0x27<<7 | 0x59,\n\t28608 - 19968: jis0208<<14 | 0x16<<7 | 0x42,\n\t28609 - 19968: jis0208<<14 | 0x21<<7 | 0x58,\n\t28610 - 19968: jis0208<<14 | 0x3E<<7 | 0x11,\n\t28611 - 19968: jis0208<<14 | 0x26<<7 | 0x1A,\n\t28613 - 19968: jis0212<<14 | 0x27<<7 | 0x5A,\n\t28614 - 19968: jis0208<<14 | 0x3E<<7 | 0x18,\n\t28615 - 19968: jis0212<<14 | 0x27<<7 | 0x5B,\n\t28616 - 19968: jis0212<<14 | 0x27<<7 | 0x5C,\n\t28618 - 19968: jis0212<<14 | 0x27<<7 | 0x5D,\n\t28628 - 19968: jis0208<<14 | 0x3E<<7 | 0x1D,\n\t28629 - 19968: jis0208<<14 | 0x3E<<7 | 0x1B,\n\t28632 - 19968: jis0208<<14 | 0x3E<<7 | 0x1E,\n\t28634 - 19968: jis0212<<14 | 0x28<<7 | 0x00,\n\t28635 - 19968: jis0208<<14 | 0x3E<<7 | 0x21,\n\t28638 - 19968: jis0212<<14 | 0x28<<7 | 0x01,\n\t28639 - 19968: jis0208<<14 | 0x3E<<7 | 0x1A,\n\t28640 - 19968: jis0208<<14 | 0x18<<7 | 0x49,\n\t28641 - 19968: jis0208<<14 | 0x26<<7 | 0x07,\n\t28644 - 19968: jis0208<<14 | 0x3D<<7 | 0x18,\n\t28648 - 19968: jis0212<<14 | 0x28<<7 | 0x02,\n\t28649 - 19968: jis0212<<14 | 0x28<<7 | 0x03,\n\t28651 - 19968: jis0208<<14 | 0x2C<<7 | 0x53,\n\t28652 - 19968: jis0208<<14 | 0x3E<<7 | 0x1C,\n\t28654 - 19968: jis0208<<14 | 0x3E<<7 | 0x20,\n\t28655 - 19968: jis0208<<14 | 0x21<<7 | 0x54,\n\t28656 - 19968: jis0212<<14 | 0x28<<7 | 0x04,\n\t28657 - 19968: jis0208<<14 | 0x3E<<7 | 0x1F,\n\t28659 - 19968: jis0208<<14 | 0x3E<<7 | 0x0A,\n\t28661 - 19968: jis0208<<14 | 0x59<<7 | 0x4F,\n\t28662 - 19968: jis0208<<14 | 0x4E<<7 | 0x48,\n\t28665 - 19968: jis0212<<14 | 0x28<<7 | 0x06,\n\t28666 - 19968: jis0208<<14 | 0x3E<<7 | 0x24,\n\t28668 - 19968: jis0212<<14 | 0x28<<7 | 0x07,\n\t28669 - 19968: jis0212<<14 | 0x28<<7 | 0x08,\n\t28670 - 19968: jis0208<<14 | 0x3E<<7 | 0x28,\n\t28672 - 19968: jis0212<<14 | 0x28<<7 | 0x09,\n\t28673 - 19968: jis0208<<14 | 0x3E<<7 | 0x26,\n\t28677 - 19968: jis0208<<14 | 0x59<<7 | 0x50,\n\t28678 - 19968: jis0212<<14 | 0x28<<7 | 0x0B,\n\t28679 - 19968: jis0208<<14 | 0x59<<7 | 0x51,\n\t28681 - 19968: jis0208<<14 | 0x3E<<7 | 0x22,\n\t28683 - 19968: jis0208<<14 | 0x3E<<7 | 0x23,\n\t28685 - 19968: jis0212<<14 | 0x28<<7 | 0x0D,\n\t28687 - 19968: jis0208<<14 | 0x3E<<7 | 0x27,\n\t28689 - 19968: jis0208<<14 | 0x3E<<7 | 0x25,\n\t28693 - 19968: jis0208<<14 | 0x28<<7 | 0x2D,\n\t28695 - 19968: jis0212<<14 | 0x28<<7 | 0x0E,\n\t28696 - 19968: jis0208<<14 | 0x3E<<7 | 0x2D,\n\t28698 - 19968: jis0208<<14 | 0x3E<<7 | 0x2A,\n\t28699 - 19968: jis0208<<14 | 0x3E<<7 | 0x29,\n\t28701 - 19968: jis0208<<14 | 0x3E<<7 | 0x2C,\n\t28702 - 19968: jis0208<<14 | 0x25<<7 | 0x33,\n\t28703 - 19968: jis0208<<14 | 0x3E<<7 | 0x2E,\n\t28704 - 19968: jis0212<<14 | 0x28<<7 | 0x0F,\n\t28707 - 19968: jis0212<<14 | 0x28<<7 | 0x10,\n\t28710 - 19968: jis0208<<14 | 0x22<<7 | 0x54,\n\t28711 - 19968: jis0208<<14 | 0x21<<7 | 0x4C,\n\t28712 - 19968: jis0208<<14 | 0x59<<7 | 0x52,\n\t28716 - 19968: jis0208<<14 | 0x1F<<7 | 0x04,\n\t28719 - 19968: jis0212<<14 | 0x28<<7 | 0x11,\n\t28720 - 19968: jis0208<<14 | 0x3E<<7 | 0x2F,\n\t28722 - 19968: jis0208<<14 | 0x3E<<7 | 0x31,\n\t28724 - 19968: jis0212<<14 | 0x28<<7 | 0x12,\n\t28727 - 19968: jis0212<<14 | 0x28<<7 | 0x13,\n\t28729 - 19968: jis0212<<14 | 0x28<<7 | 0x14,\n\t28732 - 19968: jis0212<<14 | 0x28<<7 | 0x15,\n\t28734 - 19968: jis0208<<14 | 0x3E<<7 | 0x30,\n\t28739 - 19968: jis0212<<14 | 0x28<<7 | 0x16,\n\t28740 - 19968: jis0212<<14 | 0x28<<7 | 0x17,\n\t28744 - 19968: jis0212<<14 | 0x28<<7 | 0x18,\n\t28745 - 19968: jis0212<<14 | 0x28<<7 | 0x19,\n\t28746 - 19968: jis0212<<14 | 0x28<<7 | 0x1A,\n\t28747 - 19968: jis0212<<14 | 0x28<<7 | 0x1B,\n\t28748 - 19968: jis0208<<14 | 0x3D<<7 | 0x54,\n\t28750 - 19968: jis0212<<14 | 0x28<<7 | 0x20,\n\t28753 - 19968: jis0208<<14 | 0x3E<<7 | 0x32,\n\t28756 - 19968: jis0212<<14 | 0x28<<7 | 0x1C,\n\t28757 - 19968: jis0212<<14 | 0x28<<7 | 0x1D,\n\t28760 - 19968: jis0208<<14 | 0x25<<7 | 0x46,\n\t28765 - 19968: jis0212<<14 | 0x28<<7 | 0x1E,\n\t28766 - 19968: jis0212<<14 | 0x28<<7 | 0x1F,\n\t28771 - 19968: jis0208<<14 | 0x3E<<7 | 0x33,\n\t28772 - 19968: jis0212<<14 | 0x28<<7 | 0x21,\n\t28773 - 19968: jis0212<<14 | 0x28<<7 | 0x22,\n\t28779 - 19968: jis0208<<14 | 0x11<<7 | 0x2F,\n\t28780 - 19968: jis0212<<14 | 0x28<<7 | 0x23,\n\t28782 - 19968: jis0212<<14 | 0x28<<7 | 0x24,\n\t28783 - 19968: jis0208<<14 | 0x24<<7 | 0x53,\n\t28784 - 19968: jis0208<<14 | 0x12<<7 | 0x04,\n\t28789 - 19968: jis0212<<14 | 0x28<<7 | 0x25,\n\t28790 - 19968: jis0212<<14 | 0x28<<7 | 0x26,\n\t28792 - 19968: jis0208<<14 | 0x14<<7 | 0x43,\n\t28796 - 19968: jis0208<<14 | 0x1B<<7 | 0x3D,\n\t28797 - 19968: jis0208<<14 | 0x19<<7 | 0x31,\n\t28798 - 19968: jis0212<<14 | 0x28<<7 | 0x27,\n\t28801 - 19968: jis0212<<14 | 0x28<<7 | 0x28,\n\t28805 - 19968: jis0208<<14 | 0x59<<7 | 0x53,\n\t28806 - 19968: jis0212<<14 | 0x28<<7 | 0x2A,\n\t28809 - 19968: jis0208<<14 | 0x2E<<7 | 0x06,\n\t28810 - 19968: jis0208<<14 | 0x1E<<7 | 0x45,\n\t28814 - 19968: jis0208<<14 | 0x10<<7 | 0x49,\n\t28818 - 19968: jis0208<<14 | 0x3E<<7 | 0x35,\n\t28820 - 19968: jis0212<<14 | 0x28<<7 | 0x2B,\n\t28821 - 19968: jis0212<<14 | 0x28<<7 | 0x2C,\n\t28822 - 19968: jis0212<<14 | 0x28<<7 | 0x2D,\n\t28823 - 19968: jis0212<<14 | 0x28<<7 | 0x2E,\n\t28824 - 19968: jis0212<<14 | 0x28<<7 | 0x2F,\n\t28825 - 19968: jis0208<<14 | 0x3E<<7 | 0x34,\n\t28827 - 19968: jis0212<<14 | 0x28<<7 | 0x30,\n\t28836 - 19968: jis0212<<14 | 0x28<<7 | 0x31,\n\t28843 - 19968: jis0208<<14 | 0x59<<7 | 0x54,\n\t28844 - 19968: jis0208<<14 | 0x3E<<7 | 0x38,\n\t28845 - 19968: jis0208<<14 | 0x22<<7 | 0x19,\n\t28846 - 19968: jis0208<<14 | 0x3E<<7 | 0x3B,\n\t28847 - 19968: jis0208<<14 | 0x3E<<7 | 0x36,\n\t28848 - 19968: jis0212<<14 | 0x28<<7 | 0x33,\n\t28849 - 19968: jis0212<<14 | 0x28<<7 | 0x34,\n\t28851 - 19968: jis0208<<14 | 0x3E<<7 | 0x3A,\n\t28852 - 19968: jis0212<<14 | 0x28<<7 | 0x35,\n\t28855 - 19968: jis0212<<14 | 0x28<<7 | 0x36,\n\t28856 - 19968: jis0208<<14 | 0x3E<<7 | 0x39,\n\t28857 - 19968: jis0208<<14 | 0x24<<7 | 0x1F,\n\t28858 - 19968: jis0208<<14 | 0x0F<<7 | 0x38,\n\t28859 - 19968: jis0208<<14 | 0x58<<7 | 0x06,\n\t28872 - 19968: jis0208<<14 | 0x2D<<7 | 0x54,\n\t28874 - 19968: jis0212<<14 | 0x28<<7 | 0x37,\n\t28875 - 19968: jis0208<<14 | 0x3E<<7 | 0x3D,\n\t28879 - 19968: jis0208<<14 | 0x10<<7 | 0x07,\n\t28881 - 19968: jis0212<<14 | 0x28<<7 | 0x38,\n\t28883 - 19968: jis0212<<14 | 0x28<<7 | 0x39,\n\t28884 - 19968: jis0212<<14 | 0x28<<7 | 0x3A,\n\t28885 - 19968: jis0212<<14 | 0x28<<7 | 0x3B,\n\t28886 - 19968: jis0212<<14 | 0x28<<7 | 0x3C,\n\t28888 - 19968: jis0212<<14 | 0x28<<7 | 0x3D,\n\t28889 - 19968: jis0208<<14 | 0x3E<<7 | 0x3F,\n\t28892 - 19968: jis0212<<14 | 0x28<<7 | 0x3E,\n\t28893 - 19968: jis0208<<14 | 0x3E<<7 | 0x3E,\n\t28895 - 19968: jis0208<<14 | 0x3E<<7 | 0x3C,\n\t28900 - 19968: jis0212<<14 | 0x28<<7 | 0x3F,\n\t28913 - 19968: jis0208<<14 | 0x3E<<7 | 0x37,\n\t28921 - 19968: jis0208<<14 | 0x2A<<7 | 0x02,\n\t28922 - 19968: jis0212<<14 | 0x28<<7 | 0x40,\n\t28925 - 19968: jis0208<<14 | 0x3E<<7 | 0x41,\n\t28931 - 19968: jis0212<<14 | 0x28<<7 | 0x41,\n\t28932 - 19968: jis0208<<14 | 0x59<<7 | 0x56,\n\t28933 - 19968: jis0212<<14 | 0x28<<7 | 0x43,\n\t28934 - 19968: jis0212<<14 | 0x28<<7 | 0x44,\n\t28935 - 19968: jis0212<<14 | 0x28<<7 | 0x45,\n\t28937 - 19968: jis0208<<14 | 0x3E<<7 | 0x40,\n\t28939 - 19968: jis0212<<14 | 0x28<<7 | 0x46,\n\t28940 - 19968: jis0212<<14 | 0x28<<7 | 0x47,\n\t28943 - 19968: jis0208<<14 | 0x59<<7 | 0x55,\n\t28948 - 19968: jis0208<<14 | 0x10<<7 | 0x4A,\n\t28953 - 19968: jis0208<<14 | 0x3E<<7 | 0x43,\n\t28954 - 19968: jis0208<<14 | 0x29<<7 | 0x11,\n\t28956 - 19968: jis0208<<14 | 0x3E<<7 | 0x42,\n\t28958 - 19968: jis0212<<14 | 0x28<<7 | 0x49,\n\t28960 - 19968: jis0212<<14 | 0x28<<7 | 0x4A,\n\t28961 - 19968: jis0208<<14 | 0x2B<<7 | 0x14,\n\t28966 - 19968: jis0208<<14 | 0x1D<<7 | 0x26,\n\t28971 - 19968: jis0212<<14 | 0x28<<7 | 0x4B,\n\t28973 - 19968: jis0212<<14 | 0x28<<7 | 0x4C,\n\t28975 - 19968: jis0212<<14 | 0x28<<7 | 0x4D,\n\t28976 - 19968: jis0212<<14 | 0x28<<7 | 0x4E,\n\t28977 - 19968: jis0212<<14 | 0x28<<7 | 0x4F,\n\t28982 - 19968: jis0208<<14 | 0x20<<7 | 0x12,\n\t28984 - 19968: jis0212<<14 | 0x28<<7 | 0x50,\n\t28988 - 19968: jis0208<<14 | 0x1D<<7 | 0x25,\n\t28993 - 19968: jis0212<<14 | 0x28<<7 | 0x51,\n\t28997 - 19968: jis0212<<14 | 0x28<<7 | 0x52,\n\t28998 - 19968: jis0208<<14 | 0x59<<7 | 0x58,\n\t28999 - 19968: jis0208<<14 | 0x59<<7 | 0x59,\n\t29001 - 19968: jis0208<<14 | 0x2D<<7 | 0x5A,\n\t29002 - 19968: jis0212<<14 | 0x28<<7 | 0x55,\n\t29003 - 19968: jis0212<<14 | 0x28<<7 | 0x56,\n\t29004 - 19968: jis0208<<14 | 0x3E<<7 | 0x49,\n\t29006 - 19968: jis0208<<14 | 0x1F<<7 | 0x58,\n\t29008 - 19968: jis0212<<14 | 0x28<<7 | 0x57,\n\t29010 - 19968: jis0212<<14 | 0x28<<7 | 0x58,\n\t29013 - 19968: jis0208<<14 | 0x3E<<7 | 0x45,\n\t29014 - 19968: jis0208<<14 | 0x3E<<7 | 0x4A,\n\t29015 - 19968: jis0212<<14 | 0x28<<7 | 0x59,\n\t29017 - 19968: jis0208<<14 | 0x10<<7 | 0x4B,\n\t29018 - 19968: jis0212<<14 | 0x28<<7 | 0x5A,\n\t29020 - 19968: jis0208<<14 | 0x59<<7 | 0x57,\n\t29022 - 19968: jis0212<<14 | 0x28<<7 | 0x5C,\n\t29024 - 19968: jis0212<<14 | 0x28<<7 | 0x5D,\n\t29026 - 19968: jis0208<<14 | 0x3E<<7 | 0x48,\n\t29028 - 19968: jis0208<<14 | 0x26<<7 | 0x40,\n\t29029 - 19968: jis0208<<14 | 0x3E<<7 | 0x44,\n\t29030 - 19968: jis0208<<14 | 0x3E<<7 | 0x47,\n\t29031 - 19968: jis0208<<14 | 0x1D<<7 | 0x27,\n\t29032 - 19968: jis0212<<14 | 0x29<<7 | 0x00,\n\t29033 - 19968: jis0208<<14 | 0x27<<7 | 0x30,\n\t29036 - 19968: jis0208<<14 | 0x3E<<7 | 0x4B,\n\t29038 - 19968: jis0208<<14 | 0x1B<<7 | 0x30,\n\t29049 - 19968: jis0212<<14 | 0x29<<7 | 0x01,\n\t29053 - 19968: jis0208<<14 | 0x1F<<7 | 0x59,\n\t29056 - 19968: jis0212<<14 | 0x29<<7 | 0x02,\n\t29060 - 19968: jis0208<<14 | 0x3E<<7 | 0x4E,\n\t29061 - 19968: jis0212<<14 | 0x29<<7 | 0x03,\n\t29063 - 19968: jis0212<<14 | 0x29<<7 | 0x04,\n\t29064 - 19968: jis0208<<14 | 0x3E<<7 | 0x46,\n\t29066 - 19968: jis0208<<14 | 0x16<<7 | 0x06,\n\t29068 - 19968: jis0212<<14 | 0x29<<7 | 0x05,\n\t29071 - 19968: jis0208<<14 | 0x3E<<7 | 0x4C,\n\t29074 - 19968: jis0212<<14 | 0x29<<7 | 0x06,\n\t29076 - 19968: jis0208<<14 | 0x2C<<7 | 0x2F,\n\t29077 - 19968: jis0208<<14 | 0x3E<<7 | 0x4F,\n\t29081 - 19968: jis0208<<14 | 0x53<<7 | 0x05,\n\t29082 - 19968: jis0212<<14 | 0x29<<7 | 0x07,\n\t29083 - 19968: jis0212<<14 | 0x29<<7 | 0x08,\n\t29087 - 19968: jis0208<<14 | 0x1C<<7 | 0x2E,\n\t29088 - 19968: jis0212<<14 | 0x29<<7 | 0x09,\n\t29090 - 19968: jis0212<<14 | 0x29<<7 | 0x0A,\n\t29096 - 19968: jis0208<<14 | 0x3E<<7 | 0x50,\n\t29100 - 19968: jis0208<<14 | 0x3E<<7 | 0x51,\n\t29103 - 19968: jis0212<<14 | 0x29<<7 | 0x0B,\n\t29104 - 19968: jis0212<<14 | 0x29<<7 | 0x0C,\n\t29105 - 19968: jis0208<<14 | 0x26<<7 | 0x0D,\n\t29106 - 19968: jis0212<<14 | 0x29<<7 | 0x0D,\n\t29107 - 19968: jis0212<<14 | 0x29<<7 | 0x0E,\n\t29113 - 19968: jis0208<<14 | 0x3E<<7 | 0x53,\n\t29114 - 19968: jis0212<<14 | 0x29<<7 | 0x0F,\n\t29118 - 19968: jis0208<<14 | 0x3E<<7 | 0x54,\n\t29119 - 19968: jis0212<<14 | 0x29<<7 | 0x10,\n\t29120 - 19968: jis0212<<14 | 0x29<<7 | 0x11,\n\t29121 - 19968: jis0208<<14 | 0x59<<7 | 0x5B,\n\t29123 - 19968: jis0208<<14 | 0x26<<7 | 0x12,\n\t29124 - 19968: jis0212<<14 | 0x29<<7 | 0x13,\n\t29128 - 19968: jis0208<<14 | 0x24<<7 | 0x54,\n\t29129 - 19968: jis0208<<14 | 0x3E<<7 | 0x56,\n\t29131 - 19968: jis0212<<14 | 0x29<<7 | 0x14,\n\t29132 - 19968: jis0212<<14 | 0x29<<7 | 0x15,\n\t29134 - 19968: jis0208<<14 | 0x3E<<7 | 0x58,\n\t29136 - 19968: jis0208<<14 | 0x2D<<7 | 0x34,\n\t29138 - 19968: jis0208<<14 | 0x3E<<7 | 0x55,\n\t29139 - 19968: jis0212<<14 | 0x29<<7 | 0x16,\n\t29140 - 19968: jis0208<<14 | 0x3E<<7 | 0x57,\n\t29141 - 19968: jis0208<<14 | 0x10<<7 | 0x4C,\n\t29142 - 19968: jis0212<<14 | 0x29<<7 | 0x17,\n\t29143 - 19968: jis0208<<14 | 0x3E<<7 | 0x52,\n\t29145 - 19968: jis0212<<14 | 0x29<<7 | 0x18,\n\t29146 - 19968: jis0212<<14 | 0x29<<7 | 0x19,\n\t29148 - 19968: jis0212<<14 | 0x29<<7 | 0x1A,\n\t29151 - 19968: jis0208<<14 | 0x32<<7 | 0x3A,\n\t29152 - 19968: jis0208<<14 | 0x3E<<7 | 0x59,\n\t29157 - 19968: jis0208<<14 | 0x20<<7 | 0x46,\n\t29158 - 19968: jis0208<<14 | 0x1A<<7 | 0x17,\n\t29159 - 19968: jis0208<<14 | 0x3E<<7 | 0x5B,\n\t29164 - 19968: jis0208<<14 | 0x3E<<7 | 0x5A,\n\t29165 - 19968: jis0208<<14 | 0x1E<<7 | 0x03,\n\t29166 - 19968: jis0208<<14 | 0x31<<7 | 0x38,\n\t29173 - 19968: jis0208<<14 | 0x3E<<7 | 0x5C,\n\t29176 - 19968: jis0212<<14 | 0x29<<7 | 0x1B,\n\t29177 - 19968: jis0208<<14 | 0x3F<<7 | 0x00,\n\t29179 - 19968: jis0208<<14 | 0x3E<<7 | 0x4D,\n\t29180 - 19968: jis0208<<14 | 0x3E<<7 | 0x5D,\n\t29182 - 19968: jis0208<<14 | 0x59<<7 | 0x5C,\n\t29183 - 19968: jis0208<<14 | 0x3F<<7 | 0x01,\n\t29184 - 19968: jis0212<<14 | 0x29<<7 | 0x1D,\n\t29190 - 19968: jis0208<<14 | 0x26<<7 | 0x59,\n\t29191 - 19968: jis0212<<14 | 0x29<<7 | 0x1E,\n\t29192 - 19968: jis0212<<14 | 0x29<<7 | 0x1F,\n\t29193 - 19968: jis0212<<14 | 0x29<<7 | 0x20,\n\t29197 - 19968: jis0208<<14 | 0x3F<<7 | 0x02,\n\t29200 - 19968: jis0208<<14 | 0x3F<<7 | 0x03,\n\t29203 - 19968: jis0212<<14 | 0x29<<7 | 0x21,\n\t29207 - 19968: jis0212<<14 | 0x29<<7 | 0x22,\n\t29210 - 19968: jis0212<<14 | 0x29<<7 | 0x23,\n\t29211 - 19968: jis0208<<14 | 0x3F<<7 | 0x04,\n\t29213 - 19968: jis0212<<14 | 0x29<<7 | 0x24,\n\t29215 - 19968: jis0212<<14 | 0x29<<7 | 0x25,\n\t29220 - 19968: jis0212<<14 | 0x29<<7 | 0x26,\n\t29224 - 19968: jis0208<<14 | 0x3F<<7 | 0x05,\n\t29226 - 19968: jis0208<<14 | 0x23<<7 | 0x3D,\n\t29227 - 19968: jis0212<<14 | 0x29<<7 | 0x27,\n\t29228 - 19968: jis0208<<14 | 0x3F<<7 | 0x07,\n\t29229 - 19968: jis0208<<14 | 0x3F<<7 | 0x06,\n\t29231 - 19968: jis0212<<14 | 0x29<<7 | 0x28,\n\t29232 - 19968: jis0208<<14 | 0x3F<<7 | 0x08,\n\t29234 - 19968: jis0208<<14 | 0x3F<<7 | 0x09,\n\t29236 - 19968: jis0212<<14 | 0x29<<7 | 0x29,\n\t29237 - 19968: jis0208<<14 | 0x1B<<7 | 0x3E,\n\t29238 - 19968: jis0208<<14 | 0x28<<7 | 0x42,\n\t29240 - 19968: jis0212<<14 | 0x29<<7 | 0x2A,\n\t29241 - 19968: jis0212<<14 | 0x29<<7 | 0x2B,\n\t29242 - 19968: jis0208<<14 | 0x2B<<7 | 0x4B,\n\t29243 - 19968: jis0208<<14 | 0x3F<<7 | 0x0A,\n\t29244 - 19968: jis0208<<14 | 0x3F<<7 | 0x0B,\n\t29245 - 19968: jis0208<<14 | 0x20<<7 | 0x35,\n\t29246 - 19968: jis0208<<14 | 0x1B<<7 | 0x03,\n\t29247 - 19968: jis0208<<14 | 0x3F<<7 | 0x0C,\n\t29248 - 19968: jis0208<<14 | 0x3F<<7 | 0x0D,\n\t29249 - 19968: jis0212<<14 | 0x29<<7 | 0x2C,\n\t29250 - 19968: jis0212<<14 | 0x29<<7 | 0x2D,\n\t29251 - 19968: jis0212<<14 | 0x29<<7 | 0x2E,\n\t29253 - 19968: jis0212<<14 | 0x29<<7 | 0x2F,\n\t29254 - 19968: jis0208<<14 | 0x3F<<7 | 0x0E,\n\t29255 - 19968: jis0208<<14 | 0x29<<7 | 0x31,\n\t29256 - 19968: jis0208<<14 | 0x27<<7 | 0x26,\n\t29259 - 19968: jis0208<<14 | 0x3F<<7 | 0x0F,\n\t29260 - 19968: jis0208<<14 | 0x26<<7 | 0x36,\n\t29262 - 19968: jis0212<<14 | 0x29<<7 | 0x30,\n\t29263 - 19968: jis0212<<14 | 0x29<<7 | 0x31,\n\t29264 - 19968: jis0212<<14 | 0x29<<7 | 0x32,\n\t29266 - 19968: jis0208<<14 | 0x23<<7 | 0x0C,\n\t29267 - 19968: jis0212<<14 | 0x29<<7 | 0x33,\n\t29269 - 19968: jis0212<<14 | 0x29<<7 | 0x34,\n\t29270 - 19968: jis0212<<14 | 0x29<<7 | 0x35,\n\t29272 - 19968: jis0208<<14 | 0x3F<<7 | 0x10,\n\t29273 - 19968: jis0208<<14 | 0x11<<7 | 0x46,\n\t29274 - 19968: jis0212<<14 | 0x29<<7 | 0x36,\n\t29275 - 19968: jis0208<<14 | 0x14<<7 | 0x4C,\n\t29276 - 19968: jis0212<<14 | 0x29<<7 | 0x37,\n\t29277 - 19968: jis0208<<14 | 0x2B<<7 | 0x25,\n\t29278 - 19968: jis0212<<14 | 0x29<<7 | 0x38,\n\t29279 - 19968: jis0208<<14 | 0x2B<<7 | 0x15,\n\t29280 - 19968: jis0212<<14 | 0x29<<7 | 0x39,\n\t29281 - 19968: jis0208<<14 | 0x11<<7 | 0x13,\n\t29282 - 19968: jis0208<<14 | 0x2E<<7 | 0x13,\n\t29283 - 19968: jis0212<<14 | 0x29<<7 | 0x3A,\n\t29287 - 19968: jis0208<<14 | 0x2A<<7 | 0x31,\n\t29288 - 19968: jis0212<<14 | 0x29<<7 | 0x3B,\n\t29289 - 19968: jis0208<<14 | 0x29<<7 | 0x09,\n\t29291 - 19968: jis0212<<14 | 0x29<<7 | 0x3C,\n\t29294 - 19968: jis0212<<14 | 0x29<<7 | 0x3D,\n\t29295 - 19968: jis0212<<14 | 0x29<<7 | 0x3E,\n\t29297 - 19968: jis0212<<14 | 0x29<<7 | 0x3F,\n\t29298 - 19968: jis0208<<14 | 0x1F<<7 | 0x16,\n\t29300 - 19968: jis0208<<14 | 0x3F<<7 | 0x11,\n\t29303 - 19968: jis0212<<14 | 0x29<<7 | 0x40,\n\t29304 - 19968: jis0212<<14 | 0x29<<7 | 0x41,\n\t29305 - 19968: jis0208<<14 | 0x25<<7 | 0x22,\n\t29307 - 19968: jis0212<<14 | 0x29<<7 | 0x42,\n\t29308 - 19968: jis0212<<14 | 0x29<<7 | 0x43,\n\t29309 - 19968: jis0208<<14 | 0x17<<7 | 0x02,\n\t29310 - 19968: jis0208<<14 | 0x3F<<7 | 0x12,\n\t29311 - 19968: jis0212<<14 | 0x29<<7 | 0x44,\n\t29312 - 19968: jis0208<<14 | 0x19<<7 | 0x33,\n\t29313 - 19968: jis0208<<14 | 0x3F<<7 | 0x14,\n\t29314 - 19968: jis0208<<14 | 0x3F<<7 | 0x13,\n\t29316 - 19968: jis0212<<14 | 0x29<<7 | 0x45,\n\t29319 - 19968: jis0208<<14 | 0x3F<<7 | 0x15,\n\t29321 - 19968: jis0212<<14 | 0x29<<7 | 0x46,\n\t29325 - 19968: jis0212<<14 | 0x29<<7 | 0x47,\n\t29326 - 19968: jis0212<<14 | 0x29<<7 | 0x48,\n\t29330 - 19968: jis0208<<14 | 0x3F<<7 | 0x16,\n\t29331 - 19968: jis0212<<14 | 0x29<<7 | 0x49,\n\t29334 - 19968: jis0208<<14 | 0x3F<<7 | 0x17,\n\t29339 - 19968: jis0212<<14 | 0x29<<7 | 0x4A,\n\t29344 - 19968: jis0208<<14 | 0x14<<7 | 0x1D,\n\t29346 - 19968: jis0208<<14 | 0x3F<<7 | 0x18,\n\t29351 - 19968: jis0208<<14 | 0x3F<<7 | 0x19,\n\t29352 - 19968: jis0212<<14 | 0x29<<7 | 0x4B,\n\t29356 - 19968: jis0208<<14 | 0x17<<7 | 0x03,\n\t29357 - 19968: jis0212<<14 | 0x29<<7 | 0x4C,\n\t29358 - 19968: jis0212<<14 | 0x29<<7 | 0x4D,\n\t29359 - 19968: jis0208<<14 | 0x27<<7 | 0x27,\n\t29361 - 19968: jis0208<<14 | 0x59<<7 | 0x5D,\n\t29362 - 19968: jis0208<<14 | 0x3F<<7 | 0x1B,\n\t29364 - 19968: jis0212<<14 | 0x29<<7 | 0x4F,\n\t29366 - 19968: jis0208<<14 | 0x1D<<7 | 0x54,\n\t29369 - 19968: jis0208<<14 | 0x3F<<7 | 0x1A,\n\t29374 - 19968: jis0208<<14 | 0x5A<<7 | 0x00,\n\t29377 - 19968: jis0212<<14 | 0x29<<7 | 0x51,\n\t29378 - 19968: jis0208<<14 | 0x15<<7 | 0x17,\n\t29379 - 19968: jis0208<<14 | 0x3F<<7 | 0x1C,\n\t29380 - 19968: jis0208<<14 | 0x3F<<7 | 0x1E,\n\t29382 - 19968: jis0208<<14 | 0x3F<<7 | 0x1D,\n\t29383 - 19968: jis0212<<14 | 0x29<<7 | 0x52,\n\t29385 - 19968: jis0212<<14 | 0x29<<7 | 0x53,\n\t29388 - 19968: jis0212<<14 | 0x29<<7 | 0x54,\n\t29390 - 19968: jis0208<<14 | 0x3F<<7 | 0x1F,\n\t29392 - 19968: jis0208<<14 | 0x17<<7 | 0x30,\n\t29394 - 19968: jis0208<<14 | 0x3F<<7 | 0x20,\n\t29397 - 19968: jis0212<<14 | 0x29<<7 | 0x55,\n\t29398 - 19968: jis0212<<14 | 0x29<<7 | 0x56,\n\t29399 - 19968: jis0208<<14 | 0x15<<7 | 0x48,\n\t29400 - 19968: jis0212<<14 | 0x29<<7 | 0x57,\n\t29401 - 19968: jis0208<<14 | 0x20<<7 | 0x1F,\n\t29403 - 19968: jis0208<<14 | 0x18<<7 | 0x5C,\n\t29407 - 19968: jis0212<<14 | 0x29<<7 | 0x58,\n\t29408 - 19968: jis0208<<14 | 0x3F<<7 | 0x22,\n\t29409 - 19968: jis0208<<14 | 0x3F<<7 | 0x23,\n\t29410 - 19968: jis0208<<14 | 0x3F<<7 | 0x21,\n\t29413 - 19968: jis0212<<14 | 0x29<<7 | 0x59,\n\t29417 - 19968: jis0208<<14 | 0x1B<<7 | 0x4C,\n\t29420 - 19968: jis0208<<14 | 0x25<<7 | 0x27,\n\t29421 - 19968: jis0208<<14 | 0x15<<7 | 0x18,\n\t29427 - 19968: jis0212<<14 | 0x29<<7 | 0x5A,\n\t29428 - 19968: jis0212<<14 | 0x29<<7 | 0x5B,\n\t29431 - 19968: jis0208<<14 | 0x3F<<7 | 0x25,\n\t29432 - 19968: jis0208<<14 | 0x22<<7 | 0x0B,\n\t29433 - 19968: jis0208<<14 | 0x3F<<7 | 0x24,\n\t29434 - 19968: jis0212<<14 | 0x29<<7 | 0x5C,\n\t29435 - 19968: jis0212<<14 | 0x29<<7 | 0x5D,\n\t29436 - 19968: jis0208<<14 | 0x2E<<7 | 0x14,\n\t29437 - 19968: jis0208<<14 | 0x26<<7 | 0x41,\n\t29438 - 19968: jis0212<<14 | 0x2A<<7 | 0x00,\n\t29442 - 19968: jis0212<<14 | 0x2A<<7 | 0x01,\n\t29444 - 19968: jis0212<<14 | 0x2A<<7 | 0x02,\n\t29445 - 19968: jis0212<<14 | 0x2A<<7 | 0x03,\n\t29447 - 19968: jis0212<<14 | 0x2A<<7 | 0x04,\n\t29450 - 19968: jis0208<<14 | 0x3F<<7 | 0x28,\n\t29451 - 19968: jis0212<<14 | 0x2A<<7 | 0x05,\n\t29453 - 19968: jis0212<<14 | 0x2A<<7 | 0x06,\n\t29458 - 19968: jis0212<<14 | 0x2A<<7 | 0x07,\n\t29459 - 19968: jis0212<<14 | 0x2A<<7 | 0x08,\n\t29462 - 19968: jis0208<<14 | 0x3F<<7 | 0x2A,\n\t29463 - 19968: jis0208<<14 | 0x3F<<7 | 0x27,\n\t29464 - 19968: jis0212<<14 | 0x2A<<7 | 0x09,\n\t29465 - 19968: jis0212<<14 | 0x2A<<7 | 0x0A,\n\t29467 - 19968: jis0208<<14 | 0x2B<<7 | 0x33,\n\t29468 - 19968: jis0208<<14 | 0x3F<<7 | 0x29,\n\t29469 - 19968: jis0208<<14 | 0x3F<<7 | 0x2B,\n\t29470 - 19968: jis0212<<14 | 0x2A<<7 | 0x0B,\n\t29471 - 19968: jis0208<<14 | 0x2D<<7 | 0x23,\n\t29474 - 19968: jis0212<<14 | 0x2A<<7 | 0x0C,\n\t29476 - 19968: jis0208<<14 | 0x5A<<7 | 0x01,\n\t29477 - 19968: jis0208<<14 | 0x3F<<7 | 0x2F,\n\t29479 - 19968: jis0212<<14 | 0x2A<<7 | 0x0E,\n\t29480 - 19968: jis0212<<14 | 0x2A<<7 | 0x0F,\n\t29481 - 19968: jis0208<<14 | 0x3F<<7 | 0x2E,\n\t29482 - 19968: jis0208<<14 | 0x22<<7 | 0x55,\n\t29483 - 19968: jis0208<<14 | 0x26<<7 | 0x0C,\n\t29484 - 19968: jis0212<<14 | 0x2A<<7 | 0x10,\n\t29486 - 19968: jis0208<<14 | 0x17<<7 | 0x04,\n\t29487 - 19968: jis0208<<14 | 0x3F<<7 | 0x2D,\n\t29489 - 19968: jis0212<<14 | 0x2A<<7 | 0x11,\n\t29490 - 19968: jis0212<<14 | 0x2A<<7 | 0x12,\n\t29492 - 19968: jis0208<<14 | 0x3F<<7 | 0x2C,\n\t29493 - 19968: jis0212<<14 | 0x2A<<7 | 0x13,\n\t29494 - 19968: jis0208<<14 | 0x2C<<7 | 0x10,\n\t29495 - 19968: jis0208<<14 | 0x2C<<7 | 0x11,\n\t29498 - 19968: jis0212<<14 | 0x2A<<7 | 0x14,\n\t29499 - 19968: jis0212<<14 | 0x2A<<7 | 0x15,\n\t29501 - 19968: jis0212<<14 | 0x2A<<7 | 0x16,\n\t29502 - 19968: jis0208<<14 | 0x3F<<7 | 0x30,\n\t29503 - 19968: jis0208<<14 | 0x10<<7 | 0x4D,\n\t29507 - 19968: jis0212<<14 | 0x2A<<7 | 0x17,\n\t29508 - 19968: jis0208<<14 | 0x18<<7 | 0x55,\n\t29509 - 19968: jis0208<<14 | 0x1A<<7 | 0x41,\n\t29517 - 19968: jis0212<<14 | 0x2A<<7 | 0x18,\n\t29518 - 19968: jis0208<<14 | 0x3F<<7 | 0x31,\n\t29519 - 19968: jis0208<<14 | 0x3F<<7 | 0x32,\n\t29520 - 19968: jis0212<<14 | 0x2A<<7 | 0x19,\n\t29522 - 19968: jis0212<<14 | 0x2A<<7 | 0x1A,\n\t29526 - 19968: jis0212<<14 | 0x2A<<7 | 0x1B,\n\t29527 - 19968: jis0208<<14 | 0x3F<<7 | 0x34,\n\t29528 - 19968: jis0212<<14 | 0x2A<<7 | 0x1C,\n\t29533 - 19968: jis0212<<14 | 0x2A<<7 | 0x1D,\n\t29534 - 19968: jis0212<<14 | 0x2A<<7 | 0x1E,\n\t29535 - 19968: jis0212<<14 | 0x2A<<7 | 0x1F,\n\t29536 - 19968: jis0212<<14 | 0x2A<<7 | 0x20,\n\t29539 - 19968: jis0208<<14 | 0x1C<<7 | 0x22,\n\t29542 - 19968: jis0212<<14 | 0x2A<<7 | 0x21,\n\t29543 - 19968: jis0212<<14 | 0x2A<<7 | 0x22,\n\t29544 - 19968: jis0208<<14 | 0x3F<<7 | 0x36,\n\t29545 - 19968: jis0212<<14 | 0x2A<<7 | 0x23,\n\t29546 - 19968: jis0208<<14 | 0x3F<<7 | 0x35,\n\t29547 - 19968: jis0212<<14 | 0x2A<<7 | 0x24,\n\t29548 - 19968: jis0212<<14 | 0x2A<<7 | 0x25,\n\t29550 - 19968: jis0212<<14 | 0x2A<<7 | 0x26,\n\t29551 - 19968: jis0212<<14 | 0x2A<<7 | 0x27,\n\t29552 - 19968: jis0208<<14 | 0x3F<<7 | 0x37,\n\t29553 - 19968: jis0212<<14 | 0x2A<<7 | 0x28,\n\t29554 - 19968: jis0208<<14 | 0x12<<7 | 0x2C,\n\t29557 - 19968: jis0208<<14 | 0x3F<<7 | 0x39,\n\t29559 - 19968: jis0208<<14 | 0x5A<<7 | 0x03,\n\t29560 - 19968: jis0208<<14 | 0x3F<<7 | 0x38,\n\t29561 - 19968: jis0212<<14 | 0x2A<<7 | 0x2A,\n\t29562 - 19968: jis0208<<14 | 0x3F<<7 | 0x3B,\n\t29563 - 19968: jis0208<<14 | 0x3F<<7 | 0x3A,\n\t29564 - 19968: jis0212<<14 | 0x2A<<7 | 0x2B,\n\t29568 - 19968: jis0212<<14 | 0x2A<<7 | 0x2C,\n\t29569 - 19968: jis0212<<14 | 0x2A<<7 | 0x2D,\n\t29571 - 19968: jis0212<<14 | 0x2A<<7 | 0x2E,\n\t29572 - 19968: jis0208<<14 | 0x17<<7 | 0x1B,\n\t29573 - 19968: jis0212<<14 | 0x2A<<7 | 0x2F,\n\t29574 - 19968: jis0212<<14 | 0x2A<<7 | 0x30,\n\t29575 - 19968: jis0208<<14 | 0x2D<<7 | 0x07,\n\t29577 - 19968: jis0208<<14 | 0x15<<7 | 0x2B,\n\t29579 - 19968: jis0208<<14 | 0x11<<7 | 0x05,\n\t29582 - 19968: jis0212<<14 | 0x2A<<7 | 0x31,\n\t29584 - 19968: jis0212<<14 | 0x2A<<7 | 0x32,\n\t29587 - 19968: jis0212<<14 | 0x2A<<7 | 0x33,\n\t29589 - 19968: jis0212<<14 | 0x2A<<7 | 0x34,\n\t29590 - 19968: jis0208<<14 | 0x15<<7 | 0x49,\n\t29591 - 19968: jis0212<<14 | 0x2A<<7 | 0x35,\n\t29592 - 19968: jis0212<<14 | 0x2A<<7 | 0x36,\n\t29596 - 19968: jis0212<<14 | 0x2A<<7 | 0x37,\n\t29598 - 19968: jis0212<<14 | 0x2A<<7 | 0x38,\n\t29599 - 19968: jis0212<<14 | 0x2A<<7 | 0x39,\n\t29600 - 19968: jis0212<<14 | 0x2A<<7 | 0x3A,\n\t29602 - 19968: jis0212<<14 | 0x2A<<7 | 0x3B,\n\t29605 - 19968: jis0212<<14 | 0x2A<<7 | 0x3C,\n\t29606 - 19968: jis0212<<14 | 0x2A<<7 | 0x3D,\n\t29609 - 19968: jis0208<<14 | 0x13<<7 | 0x40,\n\t29610 - 19968: jis0212<<14 | 0x2A<<7 | 0x3E,\n\t29611 - 19968: jis0212<<14 | 0x2A<<7 | 0x3F,\n\t29613 - 19968: jis0212<<14 | 0x2A<<7 | 0x40,\n\t29618 - 19968: jis0208<<14 | 0x2D<<7 | 0x47,\n\t29619 - 19968: jis0208<<14 | 0x3F<<7 | 0x3D,\n\t29621 - 19968: jis0212<<14 | 0x2A<<7 | 0x41,\n\t29623 - 19968: jis0212<<14 | 0x2A<<7 | 0x42,\n\t29625 - 19968: jis0212<<14 | 0x2A<<7 | 0x43,\n\t29627 - 19968: jis0208<<14 | 0x3F<<7 | 0x3F,\n\t29628 - 19968: jis0212<<14 | 0x2A<<7 | 0x44,\n\t29629 - 19968: jis0208<<14 | 0x5A<<7 | 0x04,\n\t29631 - 19968: jis0212<<14 | 0x2A<<7 | 0x46,\n\t29632 - 19968: jis0208<<14 | 0x3F<<7 | 0x40,\n\t29634 - 19968: jis0208<<14 | 0x11<<7 | 0x30,\n\t29637 - 19968: jis0212<<14 | 0x2A<<7 | 0x47,\n\t29638 - 19968: jis0212<<14 | 0x2A<<7 | 0x48,\n\t29640 - 19968: jis0208<<14 | 0x3F<<7 | 0x3C,\n\t29641 - 19968: jis0208<<14 | 0x5A<<7 | 0x05,\n\t29642 - 19968: jis0208<<14 | 0x1A<<7 | 0x18,\n\t29643 - 19968: jis0212<<14 | 0x2A<<7 | 0x4A,\n\t29644 - 19968: jis0212<<14 | 0x2A<<7 | 0x4B,\n\t29645 - 19968: jis0208<<14 | 0x23<<7 | 0x20,\n\t29646 - 19968: jis0208<<14 | 0x3F<<7 | 0x3E,\n\t29647 - 19968: jis0212<<14 | 0x2A<<7 | 0x4C,\n\t29650 - 19968: jis0208<<14 | 0x5A<<7 | 0x08,\n\t29651 - 19968: jis0212<<14 | 0x2A<<7 | 0x4E,\n\t29654 - 19968: jis0208<<14 | 0x5A<<7 | 0x06,\n\t29657 - 19968: jis0212<<14 | 0x2A<<7 | 0x50,\n\t29661 - 19968: jis0212<<14 | 0x2A<<7 | 0x51,\n\t29662 - 19968: jis0208<<14 | 0x3F<<7 | 0x43,\n\t29664 - 19968: jis0208<<14 | 0x1B<<7 | 0x4D,\n\t29665 - 19968: jis0212<<14 | 0x2A<<7 | 0x52,\n\t29667 - 19968: jis0208<<14 | 0x5A<<7 | 0x07,\n\t29669 - 19968: jis0208<<14 | 0x3F<<7 | 0x41,\n\t29670 - 19968: jis0212<<14 | 0x2A<<7 | 0x54,\n\t29671 - 19968: jis0212<<14 | 0x2A<<7 | 0x55,\n\t29673 - 19968: jis0212<<14 | 0x2A<<7 | 0x56,\n\t29674 - 19968: jis0208<<14 | 0x16<<7 | 0x1D,\n\t29677 - 19968: jis0208<<14 | 0x27<<7 | 0x28,\n\t29678 - 19968: jis0208<<14 | 0x3F<<7 | 0x42,\n\t29681 - 19968: jis0208<<14 | 0x3F<<7 | 0x5D,\n\t29684 - 19968: jis0212<<14 | 0x2A<<7 | 0x57,\n\t29685 - 19968: jis0208<<14 | 0x5A<<7 | 0x0A,\n\t29687 - 19968: jis0212<<14 | 0x2A<<7 | 0x59,\n\t29688 - 19968: jis0208<<14 | 0x3F<<7 | 0x48,\n\t29689 - 19968: jis0212<<14 | 0x2A<<7 | 0x5A,\n\t29690 - 19968: jis0212<<14 | 0x2A<<7 | 0x5B,\n\t29691 - 19968: jis0212<<14 | 0x2A<<7 | 0x5C,\n\t29693 - 19968: jis0212<<14 | 0x2A<<7 | 0x5D,\n\t29694 - 19968: jis0208<<14 | 0x17<<7 | 0x1C,\n\t29695 - 19968: jis0212<<14 | 0x2B<<7 | 0x00,\n\t29696 - 19968: jis0212<<14 | 0x2B<<7 | 0x01,\n\t29697 - 19968: jis0212<<14 | 0x2B<<7 | 0x02,\n\t29699 - 19968: jis0208<<14 | 0x14<<7 | 0x44,\n\t29700 - 19968: jis0212<<14 | 0x2B<<7 | 0x03,\n\t29701 - 19968: jis0208<<14 | 0x3F<<7 | 0x45,\n\t29702 - 19968: jis0208<<14 | 0x2C<<7 | 0x5C,\n\t29703 - 19968: jis0208<<14 | 0x5A<<7 | 0x09,\n\t29705 - 19968: jis0208<<14 | 0x2D<<7 | 0x0F,\n\t29706 - 19968: jis0212<<14 | 0x2B<<7 | 0x05,\n\t29713 - 19968: jis0212<<14 | 0x2B<<7 | 0x06,\n\t29722 - 19968: jis0212<<14 | 0x2B<<7 | 0x07,\n\t29723 - 19968: jis0212<<14 | 0x2B<<7 | 0x08,\n\t29730 - 19968: jis0208<<14 | 0x21<<7 | 0x55,\n\t29732 - 19968: jis0212<<14 | 0x2B<<7 | 0x09,\n\t29733 - 19968: jis0208<<14 | 0x3F<<7 | 0x47,\n\t29734 - 19968: jis0208<<14 | 0x5A<<7 | 0x0B,\n\t29736 - 19968: jis0212<<14 | 0x2B<<7 | 0x0B,\n\t29737 - 19968: jis0208<<14 | 0x5A<<7 | 0x0D,\n\t29738 - 19968: jis0208<<14 | 0x5A<<7 | 0x0C,\n\t29739 - 19968: jis0212<<14 | 0x2B<<7 | 0x0E,\n\t29740 - 19968: jis0212<<14 | 0x2B<<7 | 0x0F,\n\t29741 - 19968: jis0212<<14 | 0x2B<<7 | 0x10,\n\t29742 - 19968: jis0208<<14 | 0x5A<<7 | 0x0E,\n\t29743 - 19968: jis0212<<14 | 0x2B<<7 | 0x12,\n\t29744 - 19968: jis0212<<14 | 0x2B<<7 | 0x13,\n\t29745 - 19968: jis0212<<14 | 0x2B<<7 | 0x14,\n\t29746 - 19968: jis0208<<14 | 0x3F<<7 | 0x49,\n\t29747 - 19968: jis0208<<14 | 0x2D<<7 | 0x35,\n\t29748 - 19968: jis0208<<14 | 0x15<<7 | 0x36,\n\t29749 - 19968: jis0208<<14 | 0x27<<7 | 0x5B,\n\t29750 - 19968: jis0208<<14 | 0x26<<7 | 0x29,\n\t29753 - 19968: jis0212<<14 | 0x2B<<7 | 0x15,\n\t29754 - 19968: jis0208<<14 | 0x3F<<7 | 0x4A,\n\t29759 - 19968: jis0208<<14 | 0x3F<<7 | 0x4C,\n\t29760 - 19968: jis0212<<14 | 0x2B<<7 | 0x16,\n\t29761 - 19968: jis0208<<14 | 0x3F<<7 | 0x4F,\n\t29763 - 19968: jis0212<<14 | 0x2B<<7 | 0x17,\n\t29764 - 19968: jis0212<<14 | 0x2B<<7 | 0x18,\n\t29766 - 19968: jis0212<<14 | 0x2B<<7 | 0x19,\n\t29767 - 19968: jis0212<<14 | 0x2B<<7 | 0x1A,\n\t29771 - 19968: jis0212<<14 | 0x2B<<7 | 0x1B,\n\t29773 - 19968: jis0212<<14 | 0x2B<<7 | 0x1C,\n\t29777 - 19968: jis0212<<14 | 0x2B<<7 | 0x1D,\n\t29778 - 19968: jis0212<<14 | 0x2B<<7 | 0x1E,\n\t29781 - 19968: jis0208<<14 | 0x3F<<7 | 0x4B,\n\t29783 - 19968: jis0212<<14 | 0x2B<<7 | 0x1F,\n\t29785 - 19968: jis0208<<14 | 0x3F<<7 | 0x4E,\n\t29786 - 19968: jis0208<<14 | 0x17<<7 | 0x49,\n\t29787 - 19968: jis0208<<14 | 0x10<<7 | 0x2C,\n\t29788 - 19968: jis0208<<14 | 0x3F<<7 | 0x50,\n\t29789 - 19968: jis0212<<14 | 0x2B<<7 | 0x20,\n\t29790 - 19968: jis0208<<14 | 0x1E<<7 | 0x4F,\n\t29791 - 19968: jis0208<<14 | 0x3F<<7 | 0x4D,\n\t29792 - 19968: jis0208<<14 | 0x2D<<7 | 0x3B,\n\t29794 - 19968: jis0208<<14 | 0x5A<<7 | 0x0F,\n\t29795 - 19968: jis0208<<14 | 0x3F<<7 | 0x53,\n\t29796 - 19968: jis0208<<14 | 0x53<<7 | 0x03,\n\t29798 - 19968: jis0212<<14 | 0x2B<<7 | 0x22,\n\t29799 - 19968: jis0212<<14 | 0x2B<<7 | 0x23,\n\t29800 - 19968: jis0212<<14 | 0x2B<<7 | 0x24,\n\t29801 - 19968: jis0208<<14 | 0x3F<<7 | 0x51,\n\t29802 - 19968: jis0208<<14 | 0x3F<<7 | 0x54,\n\t29803 - 19968: jis0212<<14 | 0x2B<<7 | 0x25,\n\t29805 - 19968: jis0212<<14 | 0x2B<<7 | 0x26,\n\t29806 - 19968: jis0212<<14 | 0x2B<<7 | 0x27,\n\t29807 - 19968: jis0208<<14 | 0x3F<<7 | 0x46,\n\t29808 - 19968: jis0208<<14 | 0x3F<<7 | 0x52,\n\t29809 - 19968: jis0212<<14 | 0x2B<<7 | 0x28,\n\t29810 - 19968: jis0212<<14 | 0x2B<<7 | 0x29,\n\t29811 - 19968: jis0208<<14 | 0x19<<7 | 0x1B,\n\t29814 - 19968: jis0208<<14 | 0x3F<<7 | 0x55,\n\t29822 - 19968: jis0208<<14 | 0x3F<<7 | 0x56,\n\t29824 - 19968: jis0212<<14 | 0x2B<<7 | 0x2A,\n\t29825 - 19968: jis0212<<14 | 0x2B<<7 | 0x2B,\n\t29827 - 19968: jis0208<<14 | 0x2C<<7 | 0x5D,\n\t29829 - 19968: jis0212<<14 | 0x2B<<7 | 0x2C,\n\t29830 - 19968: jis0212<<14 | 0x2B<<7 | 0x2D,\n\t29831 - 19968: jis0212<<14 | 0x2B<<7 | 0x2E,\n\t29833 - 19968: jis0208<<14 | 0x5A<<7 | 0x10,\n\t29835 - 19968: jis0208<<14 | 0x3F<<7 | 0x57,\n\t29839 - 19968: jis0212<<14 | 0x2B<<7 | 0x30,\n\t29840 - 19968: jis0212<<14 | 0x2B<<7 | 0x31,\n\t29841 - 19968: jis0212<<14 | 0x2B<<7 | 0x32,\n\t29842 - 19968: jis0212<<14 | 0x2B<<7 | 0x33,\n\t29848 - 19968: jis0212<<14 | 0x2B<<7 | 0x34,\n\t29849 - 19968: jis0212<<14 | 0x2B<<7 | 0x35,\n\t29850 - 19968: jis0212<<14 | 0x2B<<7 | 0x36,\n\t29852 - 19968: jis0212<<14 | 0x2B<<7 | 0x37,\n\t29854 - 19968: jis0208<<14 | 0x3F<<7 | 0x58,\n\t29855 - 19968: jis0208<<14 | 0x5A<<7 | 0x11,\n\t29856 - 19968: jis0212<<14 | 0x2B<<7 | 0x39,\n\t29857 - 19968: jis0212<<14 | 0x2B<<7 | 0x3A,\n\t29858 - 19968: jis0208<<14 | 0x3F<<7 | 0x44,\n\t29859 - 19968: jis0212<<14 | 0x2B<<7 | 0x3B,\n\t29862 - 19968: jis0212<<14 | 0x2B<<7 | 0x3C,\n\t29863 - 19968: jis0208<<14 | 0x3F<<7 | 0x59,\n\t29864 - 19968: jis0212<<14 | 0x2B<<7 | 0x3D,\n\t29865 - 19968: jis0212<<14 | 0x2B<<7 | 0x3E,\n\t29866 - 19968: jis0212<<14 | 0x2B<<7 | 0x3F,\n\t29867 - 19968: jis0212<<14 | 0x2B<<7 | 0x40,\n\t29870 - 19968: jis0212<<14 | 0x2B<<7 | 0x41,\n\t29871 - 19968: jis0212<<14 | 0x2B<<7 | 0x42,\n\t29872 - 19968: jis0208<<14 | 0x13<<7 | 0x23,\n\t29873 - 19968: jis0212<<14 | 0x2B<<7 | 0x43,\n\t29874 - 19968: jis0212<<14 | 0x2B<<7 | 0x44,\n\t29877 - 19968: jis0212<<14 | 0x2B<<7 | 0x45,\n\t29881 - 19968: jis0212<<14 | 0x2B<<7 | 0x46,\n\t29883 - 19968: jis0212<<14 | 0x2B<<7 | 0x47,\n\t29885 - 19968: jis0208<<14 | 0x1B<<7 | 0x04,\n\t29887 - 19968: jis0212<<14 | 0x2B<<7 | 0x48,\n\t29896 - 19968: jis0212<<14 | 0x2B<<7 | 0x49,\n\t29897 - 19968: jis0212<<14 | 0x2B<<7 | 0x4A,\n\t29898 - 19968: jis0208<<14 | 0x3F<<7 | 0x5A,\n\t29900 - 19968: jis0212<<14 | 0x2B<<7 | 0x4B,\n\t29903 - 19968: jis0208<<14 | 0x3F<<7 | 0x5B,\n\t29904 - 19968: jis0212<<14 | 0x2B<<7 | 0x4C,\n\t29907 - 19968: jis0212<<14 | 0x2B<<7 | 0x4D,\n\t29908 - 19968: jis0208<<14 | 0x3F<<7 | 0x5C,\n\t29912 - 19968: jis0212<<14 | 0x2B<<7 | 0x4E,\n\t29914 - 19968: jis0212<<14 | 0x2B<<7 | 0x4F,\n\t29915 - 19968: jis0212<<14 | 0x2B<<7 | 0x50,\n\t29916 - 19968: jis0208<<14 | 0x10<<7 | 0x1A,\n\t29918 - 19968: jis0212<<14 | 0x2B<<7 | 0x51,\n\t29919 - 19968: jis0212<<14 | 0x2B<<7 | 0x52,\n\t29920 - 19968: jis0208<<14 | 0x40<<7 | 0x00,\n\t29922 - 19968: jis0208<<14 | 0x28<<7 | 0x1A,\n\t29923 - 19968: jis0208<<14 | 0x40<<7 | 0x01,\n\t29924 - 19968: jis0212<<14 | 0x2B<<7 | 0x53,\n\t29926 - 19968: jis0208<<14 | 0x13<<7 | 0x03,\n\t29927 - 19968: jis0208<<14 | 0x40<<7 | 0x02,\n\t29928 - 19968: jis0212<<14 | 0x2B<<7 | 0x54,\n\t29929 - 19968: jis0208<<14 | 0x40<<7 | 0x03,\n\t29930 - 19968: jis0212<<14 | 0x2B<<7 | 0x55,\n\t29931 - 19968: jis0212<<14 | 0x2B<<7 | 0x56,\n\t29934 - 19968: jis0208<<14 | 0x40<<7 | 0x04,\n\t29935 - 19968: jis0212<<14 | 0x2B<<7 | 0x57,\n\t29936 - 19968: jis0208<<14 | 0x40<<7 | 0x06,\n\t29937 - 19968: jis0208<<14 | 0x40<<7 | 0x07,\n\t29938 - 19968: jis0208<<14 | 0x40<<7 | 0x05,\n\t29940 - 19968: jis0212<<14 | 0x2B<<7 | 0x58,\n\t29942 - 19968: jis0208<<14 | 0x28<<7 | 0x32,\n\t29943 - 19968: jis0208<<14 | 0x40<<7 | 0x09,\n\t29944 - 19968: jis0208<<14 | 0x40<<7 | 0x08,\n\t29946 - 19968: jis0212<<14 | 0x2B<<7 | 0x59,\n\t29947 - 19968: jis0212<<14 | 0x2B<<7 | 0x5A,\n\t29948 - 19968: jis0212<<14 | 0x2B<<7 | 0x5B,\n\t29951 - 19968: jis0212<<14 | 0x2B<<7 | 0x5C,\n\t29953 - 19968: jis0208<<14 | 0x5A<<7 | 0x12,\n\t29955 - 19968: jis0208<<14 | 0x40<<7 | 0x0B,\n\t29956 - 19968: jis0208<<14 | 0x40<<7 | 0x0A,\n\t29957 - 19968: jis0208<<14 | 0x40<<7 | 0x0C,\n\t29958 - 19968: jis0212<<14 | 0x2B<<7 | 0x5D,\n\t29964 - 19968: jis0208<<14 | 0x40<<7 | 0x0D,\n\t29965 - 19968: jis0208<<14 | 0x40<<7 | 0x0F,\n\t29966 - 19968: jis0208<<14 | 0x40<<7 | 0x0E,\n\t29969 - 19968: jis0208<<14 | 0x18<<7 | 0x58,\n\t29970 - 19968: jis0212<<14 | 0x2C<<7 | 0x00,\n\t29971 - 19968: jis0208<<14 | 0x40<<7 | 0x11,\n\t29973 - 19968: jis0208<<14 | 0x40<<7 | 0x10,\n\t29974 - 19968: jis0212<<14 | 0x2C<<7 | 0x01,\n\t29975 - 19968: jis0212<<14 | 0x2C<<7 | 0x02,\n\t29976 - 19968: jis0208<<14 | 0x13<<7 | 0x24,\n\t29978 - 19968: jis0208<<14 | 0x1E<<7 | 0x32,\n\t29980 - 19968: jis0208<<14 | 0x24<<7 | 0x1B,\n\t29982 - 19968: jis0208<<14 | 0x40<<7 | 0x12,\n\t29983 - 19968: jis0208<<14 | 0x1F<<7 | 0x17,\n\t29984 - 19968: jis0212<<14 | 0x2C<<7 | 0x03,\n\t29985 - 19968: jis0212<<14 | 0x2C<<7 | 0x04,\n\t29987 - 19968: jis0208<<14 | 0x1A<<7 | 0x19,\n\t29988 - 19968: jis0212<<14 | 0x2C<<7 | 0x05,\n\t29989 - 19968: jis0208<<14 | 0x10<<7 | 0x58,\n\t29990 - 19968: jis0208<<14 | 0x40<<7 | 0x13,\n\t29991 - 19968: jis0212<<14 | 0x2C<<7 | 0x06,\n\t29992 - 19968: jis0208<<14 | 0x2C<<7 | 0x30,\n\t29993 - 19968: jis0212<<14 | 0x2C<<7 | 0x07,\n\t29994 - 19968: jis0212<<14 | 0x2C<<7 | 0x08,\n\t29995 - 19968: jis0208<<14 | 0x29<<7 | 0x42,\n\t29996 - 19968: jis0208<<14 | 0x40<<7 | 0x14,\n\t29999 - 19968: jis0208<<14 | 0x58<<7 | 0x4B,\n\t30000 - 19968: jis0208<<14 | 0x24<<7 | 0x23,\n\t30001 - 19968: jis0208<<14 | 0x2C<<7 | 0x12,\n\t30002 - 19968: jis0208<<14 | 0x18<<7 | 0x22,\n\t30003 - 19968: jis0208<<14 | 0x1E<<7 | 0x1C,\n\t30006 - 19968: jis0212<<14 | 0x2C<<7 | 0x0A,\n\t30007 - 19968: jis0208<<14 | 0x22<<7 | 0x2A,\n\t30008 - 19968: jis0208<<14 | 0x31<<7 | 0x13,\n\t30009 - 19968: jis0212<<14 | 0x2C<<7 | 0x0B,\n\t30010 - 19968: jis0208<<14 | 0x23<<7 | 0x0D,\n\t30011 - 19968: jis0208<<14 | 0x11<<7 | 0x47,\n\t30012 - 19968: jis0208<<14 | 0x40<<7 | 0x15,\n\t30013 - 19968: jis0212<<14 | 0x2C<<7 | 0x0C,\n\t30014 - 19968: jis0212<<14 | 0x2C<<7 | 0x0D,\n\t30015 - 19968: jis0212<<14 | 0x2C<<7 | 0x0E,\n\t30016 - 19968: jis0212<<14 | 0x2C<<7 | 0x0F,\n\t30019 - 19968: jis0212<<14 | 0x2C<<7 | 0x10,\n\t30020 - 19968: jis0208<<14 | 0x40<<7 | 0x16,\n\t30022 - 19968: jis0208<<14 | 0x40<<7 | 0x1B,\n\t30023 - 19968: jis0212<<14 | 0x2C<<7 | 0x11,\n\t30024 - 19968: jis0212<<14 | 0x2C<<7 | 0x12,\n\t30025 - 19968: jis0208<<14 | 0x40<<7 | 0x19,\n\t30026 - 19968: jis0208<<14 | 0x40<<7 | 0x18,\n\t30027 - 19968: jis0208<<14 | 0x39<<7 | 0x21,\n\t30028 - 19968: jis0208<<14 | 0x12<<7 | 0x05,\n\t30029 - 19968: jis0208<<14 | 0x40<<7 | 0x17,\n\t30030 - 19968: jis0212<<14 | 0x2C<<7 | 0x13,\n\t30031 - 19968: jis0208<<14 | 0x0F<<7 | 0x39,\n\t30032 - 19968: jis0212<<14 | 0x2C<<7 | 0x14,\n\t30033 - 19968: jis0208<<14 | 0x27<<7 | 0x09,\n\t30034 - 19968: jis0212<<14 | 0x2C<<7 | 0x15,\n\t30036 - 19968: jis0208<<14 | 0x27<<7 | 0x29,\n\t30039 - 19968: jis0212<<14 | 0x2C<<7 | 0x16,\n\t30041 - 19968: jis0208<<14 | 0x2D<<7 | 0x10,\n\t30042 - 19968: jis0208<<14 | 0x40<<7 | 0x1C,\n\t30043 - 19968: jis0208<<14 | 0x40<<7 | 0x1A,\n\t30044 - 19968: jis0208<<14 | 0x22<<7 | 0x3B,\n\t30045 - 19968: jis0208<<14 | 0x1F<<7 | 0x05,\n\t30046 - 19968: jis0212<<14 | 0x2C<<7 | 0x17,\n\t30047 - 19968: jis0212<<14 | 0x2C<<7 | 0x18,\n\t30048 - 19968: jis0208<<14 | 0x27<<7 | 0x0A,\n\t30049 - 19968: jis0212<<14 | 0x2C<<7 | 0x19,\n\t30050 - 19968: jis0208<<14 | 0x28<<7 | 0x0C,\n\t30052 - 19968: jis0208<<14 | 0x40<<7 | 0x1E,\n\t30053 - 19968: jis0208<<14 | 0x2D<<7 | 0x0B,\n\t30054 - 19968: jis0208<<14 | 0x16<<7 | 0x2C,\n\t30055 - 19968: jis0208<<14 | 0x40<<7 | 0x1F,\n\t30057 - 19968: jis0208<<14 | 0x40<<7 | 0x1D,\n\t30058 - 19968: jis0208<<14 | 0x27<<7 | 0x35,\n\t30059 - 19968: jis0208<<14 | 0x40<<7 | 0x20,\n\t30061 - 19968: jis0208<<14 | 0x40<<7 | 0x21,\n\t30063 - 19968: jis0208<<14 | 0x5A<<7 | 0x13,\n\t30064 - 19968: jis0208<<14 | 0x0F<<7 | 0x3A,\n\t30065 - 19968: jis0212<<14 | 0x2C<<7 | 0x1B,\n\t30067 - 19968: jis0208<<14 | 0x1D<<7 | 0x55,\n\t30068 - 19968: jis0208<<14 | 0x40<<7 | 0x26,\n\t30070 - 19968: jis0208<<14 | 0x40<<7 | 0x23,\n\t30071 - 19968: jis0208<<14 | 0x25<<7 | 0x4C,\n\t30072 - 19968: jis0208<<14 | 0x40<<7 | 0x22,\n\t30073 - 19968: jis0212<<14 | 0x2C<<7 | 0x1C,\n\t30074 - 19968: jis0212<<14 | 0x2C<<7 | 0x1D,\n\t30075 - 19968: jis0212<<14 | 0x2C<<7 | 0x1E,\n\t30076 - 19968: jis0212<<14 | 0x2C<<7 | 0x1F,\n\t30077 - 19968: jis0212<<14 | 0x2C<<7 | 0x20,\n\t30078 - 19968: jis0212<<14 | 0x2C<<7 | 0x21,\n\t30079 - 19968: jis0208<<14 | 0x14<<7 | 0x05,\n\t30081 - 19968: jis0212<<14 | 0x2C<<7 | 0x22,\n\t30082 - 19968: jis0208<<14 | 0x40<<7 | 0x29,\n\t30085 - 19968: jis0212<<14 | 0x2C<<7 | 0x23,\n\t30086 - 19968: jis0208<<14 | 0x40<<7 | 0x24,\n\t30087 - 19968: jis0208<<14 | 0x40<<7 | 0x25,\n\t30089 - 19968: jis0208<<14 | 0x40<<7 | 0x28,\n\t30090 - 19968: jis0208<<14 | 0x40<<7 | 0x27,\n\t30091 - 19968: jis0208<<14 | 0x28<<7 | 0x04,\n\t30094 - 19968: jis0208<<14 | 0x20<<7 | 0x21,\n\t30095 - 19968: jis0208<<14 | 0x20<<7 | 0x20,\n\t30096 - 19968: jis0212<<14 | 0x2C<<7 | 0x24,\n\t30097 - 19968: jis0208<<14 | 0x14<<7 | 0x1E,\n\t30098 - 19968: jis0212<<14 | 0x2C<<7 | 0x25,\n\t30099 - 19968: jis0212<<14 | 0x2C<<7 | 0x26,\n\t30100 - 19968: jis0208<<14 | 0x40<<7 | 0x2A,\n\t30101 - 19968: jis0212<<14 | 0x2C<<7 | 0x27,\n\t30105 - 19968: jis0212<<14 | 0x2C<<7 | 0x28,\n\t30106 - 19968: jis0208<<14 | 0x40<<7 | 0x2B,\n\t30108 - 19968: jis0212<<14 | 0x2C<<7 | 0x29,\n\t30109 - 19968: jis0208<<14 | 0x40<<7 | 0x2C,\n\t30114 - 19968: jis0212<<14 | 0x2C<<7 | 0x2A,\n\t30115 - 19968: jis0208<<14 | 0x40<<7 | 0x2E,\n\t30116 - 19968: jis0212<<14 | 0x2C<<7 | 0x2B,\n\t30117 - 19968: jis0208<<14 | 0x40<<7 | 0x2D,\n\t30123 - 19968: jis0208<<14 | 0x10<<7 | 0x35,\n\t30129 - 19968: jis0208<<14 | 0x40<<7 | 0x36,\n\t30130 - 19968: jis0208<<14 | 0x27<<7 | 0x47,\n\t30131 - 19968: jis0208<<14 | 0x40<<7 | 0x30,\n\t30132 - 19968: jis0212<<14 | 0x2C<<7 | 0x2C,\n\t30133 - 19968: jis0208<<14 | 0x40<<7 | 0x32,\n\t30136 - 19968: jis0208<<14 | 0x40<<7 | 0x34,\n\t30137 - 19968: jis0208<<14 | 0x1E<<7 | 0x1D,\n\t30138 - 19968: jis0212<<14 | 0x2C<<7 | 0x2D,\n\t30140 - 19968: jis0208<<14 | 0x40<<7 | 0x35,\n\t30141 - 19968: jis0208<<14 | 0x40<<7 | 0x33,\n\t30142 - 19968: jis0208<<14 | 0x1B<<7 | 0x1F,\n\t30143 - 19968: jis0212<<14 | 0x2C<<7 | 0x2E,\n\t30144 - 19968: jis0212<<14 | 0x2C<<7 | 0x2F,\n\t30145 - 19968: jis0212<<14 | 0x2C<<7 | 0x30,\n\t30146 - 19968: jis0208<<14 | 0x40<<7 | 0x2F,\n\t30147 - 19968: jis0208<<14 | 0x40<<7 | 0x31,\n\t30148 - 19968: jis0212<<14 | 0x2C<<7 | 0x31,\n\t30149 - 19968: jis0208<<14 | 0x28<<7 | 0x21,\n\t30150 - 19968: jis0212<<14 | 0x2C<<7 | 0x32,\n\t30151 - 19968: jis0208<<14 | 0x1D<<7 | 0x28,\n\t30154 - 19968: jis0208<<14 | 0x40<<7 | 0x38,\n\t30156 - 19968: jis0212<<14 | 0x2C<<7 | 0x33,\n\t30157 - 19968: jis0208<<14 | 0x40<<7 | 0x37,\n\t30158 - 19968: jis0212<<14 | 0x2C<<7 | 0x34,\n\t30159 - 19968: jis0212<<14 | 0x2C<<7 | 0x35,\n\t30162 - 19968: jis0208<<14 | 0x40<<7 | 0x39,\n\t30164 - 19968: jis0208<<14 | 0x1B<<7 | 0x05,\n\t30165 - 19968: jis0208<<14 | 0x19<<7 | 0x0E,\n\t30167 - 19968: jis0212<<14 | 0x2C<<7 | 0x36,\n\t30168 - 19968: jis0208<<14 | 0x24<<7 | 0x56,\n\t30169 - 19968: jis0208<<14 | 0x40<<7 | 0x3A,\n\t30171 - 19968: jis0208<<14 | 0x23<<7 | 0x2A,\n\t30172 - 19968: jis0212<<14 | 0x2C<<7 | 0x37,\n\t30174 - 19968: jis0208<<14 | 0x40<<7 | 0x3C,\n\t30175 - 19968: jis0212<<14 | 0x2C<<7 | 0x38,\n\t30176 - 19968: jis0212<<14 | 0x2C<<7 | 0x39,\n\t30177 - 19968: jis0212<<14 | 0x2C<<7 | 0x3A,\n\t30178 - 19968: jis0208<<14 | 0x2D<<7 | 0x00,\n\t30179 - 19968: jis0208<<14 | 0x40<<7 | 0x3B,\n\t30180 - 19968: jis0212<<14 | 0x2C<<7 | 0x3B,\n\t30183 - 19968: jis0212<<14 | 0x2C<<7 | 0x3C,\n\t30185 - 19968: jis0208<<14 | 0x20<<7 | 0x48,\n\t30188 - 19968: jis0212<<14 | 0x2C<<7 | 0x3D,\n\t30190 - 19968: jis0212<<14 | 0x2C<<7 | 0x3E,\n\t30191 - 19968: jis0212<<14 | 0x2C<<7 | 0x3F,\n\t30192 - 19968: jis0208<<14 | 0x40<<7 | 0x41,\n\t30193 - 19968: jis0212<<14 | 0x2C<<7 | 0x40,\n\t30194 - 19968: jis0208<<14 | 0x40<<7 | 0x43,\n\t30195 - 19968: jis0208<<14 | 0x40<<7 | 0x44,\n\t30196 - 19968: jis0208<<14 | 0x22<<7 | 0x33,\n\t30201 - 19968: jis0212<<14 | 0x2C<<7 | 0x41,\n\t30202 - 19968: jis0208<<14 | 0x40<<7 | 0x42,\n\t30204 - 19968: jis0208<<14 | 0x40<<7 | 0x3F,\n\t30206 - 19968: jis0208<<14 | 0x40<<7 | 0x3D,\n\t30207 - 19968: jis0208<<14 | 0x40<<7 | 0x3E,\n\t30208 - 19968: jis0212<<14 | 0x2C<<7 | 0x42,\n\t30209 - 19968: jis0208<<14 | 0x40<<7 | 0x40,\n\t30210 - 19968: jis0212<<14 | 0x2C<<7 | 0x43,\n\t30211 - 19968: jis0212<<14 | 0x2C<<7 | 0x44,\n\t30212 - 19968: jis0212<<14 | 0x2C<<7 | 0x45,\n\t30215 - 19968: jis0212<<14 | 0x2C<<7 | 0x46,\n\t30216 - 19968: jis0212<<14 | 0x2C<<7 | 0x47,\n\t30217 - 19968: jis0208<<14 | 0x40<<7 | 0x47,\n\t30218 - 19968: jis0212<<14 | 0x2C<<7 | 0x48,\n\t30219 - 19968: jis0208<<14 | 0x40<<7 | 0x45,\n\t30220 - 19968: jis0212<<14 | 0x2C<<7 | 0x49,\n\t30221 - 19968: jis0208<<14 | 0x40<<7 | 0x46,\n\t30223 - 19968: jis0212<<14 | 0x2C<<7 | 0x4A,\n\t30226 - 19968: jis0212<<14 | 0x2C<<7 | 0x4B,\n\t30227 - 19968: jis0212<<14 | 0x2C<<7 | 0x4C,\n\t30229 - 19968: jis0212<<14 | 0x2C<<7 | 0x4D,\n\t30230 - 19968: jis0212<<14 | 0x2C<<7 | 0x4E,\n\t30233 - 19968: jis0212<<14 | 0x2C<<7 | 0x4F,\n\t30235 - 19968: jis0212<<14 | 0x2C<<7 | 0x50,\n\t30236 - 19968: jis0212<<14 | 0x2C<<7 | 0x51,\n\t30237 - 19968: jis0212<<14 | 0x2C<<7 | 0x52,\n\t30238 - 19968: jis0212<<14 | 0x2C<<7 | 0x53,\n\t30239 - 19968: jis0208<<14 | 0x40<<7 | 0x48,\n\t30240 - 19968: jis0208<<14 | 0x40<<7 | 0x4A,\n\t30241 - 19968: jis0208<<14 | 0x40<<7 | 0x4B,\n\t30242 - 19968: jis0208<<14 | 0x40<<7 | 0x4C,\n\t30243 - 19968: jis0212<<14 | 0x2C<<7 | 0x54,\n\t30244 - 19968: jis0208<<14 | 0x40<<7 | 0x4D,\n\t30245 - 19968: jis0212<<14 | 0x2C<<7 | 0x55,\n\t30246 - 19968: jis0212<<14 | 0x2C<<7 | 0x56,\n\t30247 - 19968: jis0208<<14 | 0x40<<7 | 0x49,\n\t30249 - 19968: jis0212<<14 | 0x2C<<7 | 0x57,\n\t30253 - 19968: jis0212<<14 | 0x2C<<7 | 0x58,\n\t30256 - 19968: jis0208<<14 | 0x40<<7 | 0x4F,\n\t30258 - 19968: jis0212<<14 | 0x2C<<7 | 0x59,\n\t30259 - 19968: jis0212<<14 | 0x2C<<7 | 0x5A,\n\t30260 - 19968: jis0208<<14 | 0x40<<7 | 0x4E,\n\t30261 - 19968: jis0212<<14 | 0x2C<<7 | 0x5B,\n\t30264 - 19968: jis0212<<14 | 0x2C<<7 | 0x5C,\n\t30265 - 19968: jis0212<<14 | 0x2C<<7 | 0x5D,\n\t30266 - 19968: jis0212<<14 | 0x2D<<7 | 0x00,\n\t30267 - 19968: jis0208<<14 | 0x40<<7 | 0x50,\n\t30268 - 19968: jis0212<<14 | 0x2D<<7 | 0x01,\n\t30272 - 19968: jis0212<<14 | 0x2D<<7 | 0x03,\n\t30273 - 19968: jis0212<<14 | 0x2D<<7 | 0x04,\n\t30274 - 19968: jis0208<<14 | 0x2D<<7 | 0x24,\n\t30275 - 19968: jis0212<<14 | 0x2D<<7 | 0x05,\n\t30276 - 19968: jis0212<<14 | 0x2D<<7 | 0x06,\n\t30277 - 19968: jis0212<<14 | 0x2D<<7 | 0x07,\n\t30278 - 19968: jis0208<<14 | 0x40<<7 | 0x53,\n\t30279 - 19968: jis0208<<14 | 0x40<<7 | 0x51,\n\t30280 - 19968: jis0208<<14 | 0x40<<7 | 0x52,\n\t30281 - 19968: jis0212<<14 | 0x2D<<7 | 0x08,\n\t30282 - 19968: jis0212<<14 | 0x2D<<7 | 0x02,\n\t30283 - 19968: jis0212<<14 | 0x2D<<7 | 0x09,\n\t30284 - 19968: jis0208<<14 | 0x13<<7 | 0x41,\n\t30290 - 19968: jis0208<<14 | 0x2B<<7 | 0x5D,\n\t30293 - 19968: jis0212<<14 | 0x2D<<7 | 0x0A,\n\t30294 - 19968: jis0208<<14 | 0x29<<7 | 0x29,\n\t30296 - 19968: jis0208<<14 | 0x40<<7 | 0x55,\n\t30297 - 19968: jis0212<<14 | 0x2D<<7 | 0x0B,\n\t30300 - 19968: jis0208<<14 | 0x40<<7 | 0x54,\n\t30303 - 19968: jis0212<<14 | 0x2D<<7 | 0x0C,\n\t30305 - 19968: jis0208<<14 | 0x40<<7 | 0x56,\n\t30306 - 19968: jis0208<<14 | 0x40<<7 | 0x57,\n\t30308 - 19968: jis0212<<14 | 0x2D<<7 | 0x0D,\n\t30309 - 19968: jis0212<<14 | 0x2D<<7 | 0x0E,\n\t30311 - 19968: jis0208<<14 | 0x40<<7 | 0x5B,\n\t30312 - 19968: jis0208<<14 | 0x40<<7 | 0x58,\n\t30313 - 19968: jis0208<<14 | 0x40<<7 | 0x59,\n\t30314 - 19968: jis0208<<14 | 0x40<<7 | 0x5A,\n\t30316 - 19968: jis0208<<14 | 0x40<<7 | 0x5C,\n\t30317 - 19968: jis0212<<14 | 0x2D<<7 | 0x0F,\n\t30318 - 19968: jis0212<<14 | 0x2D<<7 | 0x10,\n\t30319 - 19968: jis0212<<14 | 0x2D<<7 | 0x11,\n\t30320 - 19968: jis0208<<14 | 0x40<<7 | 0x5D,\n\t30321 - 19968: jis0212<<14 | 0x2D<<7 | 0x12,\n\t30322 - 19968: jis0208<<14 | 0x41<<7 | 0x00,\n\t30324 - 19968: jis0212<<14 | 0x2D<<7 | 0x13,\n\t30326 - 19968: jis0208<<14 | 0x41<<7 | 0x01,\n\t30328 - 19968: jis0208<<14 | 0x41<<7 | 0x02,\n\t30330 - 19968: jis0208<<14 | 0x27<<7 | 0x0E,\n\t30331 - 19968: jis0208<<14 | 0x24<<7 | 0x2F,\n\t30332 - 19968: jis0208<<14 | 0x41<<7 | 0x03,\n\t30333 - 19968: jis0208<<14 | 0x26<<7 | 0x51,\n\t30334 - 19968: jis0208<<14 | 0x28<<7 | 0x13,\n\t30336 - 19968: jis0208<<14 | 0x41<<7 | 0x04,\n\t30337 - 19968: jis0212<<14 | 0x2D<<7 | 0x14,\n\t30338 - 19968: jis0208<<14 | 0x5A<<7 | 0x14,\n\t30339 - 19968: jis0208<<14 | 0x41<<7 | 0x05,\n\t30340 - 19968: jis0208<<14 | 0x24<<7 | 0x09,\n\t30341 - 19968: jis0212<<14 | 0x2D<<7 | 0x15,\n\t30342 - 19968: jis0208<<14 | 0x12<<7 | 0x06,\n\t30343 - 19968: jis0208<<14 | 0x18<<7 | 0x23,\n\t30344 - 19968: jis0208<<14 | 0x41<<7 | 0x06,\n\t30347 - 19968: jis0208<<14 | 0x41<<7 | 0x07,\n\t30348 - 19968: jis0212<<14 | 0x2D<<7 | 0x16,\n\t30349 - 19968: jis0212<<14 | 0x2D<<7 | 0x17,\n\t30350 - 19968: jis0208<<14 | 0x41<<7 | 0x08,\n\t30352 - 19968: jis0208<<14 | 0x1A<<7 | 0x08,\n\t30355 - 19968: jis0208<<14 | 0x41<<7 | 0x0A,\n\t30357 - 19968: jis0212<<14 | 0x2D<<7 | 0x18,\n\t30358 - 19968: jis0208<<14 | 0x41<<7 | 0x09,\n\t30361 - 19968: jis0208<<14 | 0x41<<7 | 0x0B,\n\t30362 - 19968: jis0208<<14 | 0x41<<7 | 0x0C,\n\t30363 - 19968: jis0208<<14 | 0x5A<<7 | 0x17,\n\t30364 - 19968: jis0208<<14 | 0x5A<<7 | 0x15,\n\t30365 - 19968: jis0212<<14 | 0x2D<<7 | 0x1B,\n\t30366 - 19968: jis0208<<14 | 0x5A<<7 | 0x16,\n\t30367 - 19968: jis0212<<14 | 0x2D<<7 | 0x1C,\n\t30368 - 19968: jis0212<<14 | 0x2D<<7 | 0x1D,\n\t30370 - 19968: jis0212<<14 | 0x2D<<7 | 0x1E,\n\t30371 - 19968: jis0212<<14 | 0x2D<<7 | 0x1F,\n\t30372 - 19968: jis0212<<14 | 0x2D<<7 | 0x20,\n\t30373 - 19968: jis0212<<14 | 0x2D<<7 | 0x21,\n\t30374 - 19968: jis0208<<14 | 0x5A<<7 | 0x18,\n\t30375 - 19968: jis0212<<14 | 0x2D<<7 | 0x23,\n\t30376 - 19968: jis0212<<14 | 0x2D<<7 | 0x24,\n\t30378 - 19968: jis0212<<14 | 0x2D<<7 | 0x25,\n\t30381 - 19968: jis0212<<14 | 0x2D<<7 | 0x26,\n\t30382 - 19968: jis0208<<14 | 0x27<<7 | 0x48,\n\t30384 - 19968: jis0208<<14 | 0x41<<7 | 0x0D,\n\t30388 - 19968: jis0208<<14 | 0x41<<7 | 0x0E,\n\t30391 - 19968: jis0208<<14 | 0x52<<7 | 0x48,\n\t30392 - 19968: jis0208<<14 | 0x41<<7 | 0x0F,\n\t30393 - 19968: jis0208<<14 | 0x41<<7 | 0x10,\n\t30394 - 19968: jis0208<<14 | 0x41<<7 | 0x11,\n\t30397 - 19968: jis0212<<14 | 0x2D<<7 | 0x27,\n\t30399 - 19968: jis0208<<14 | 0x1A<<7 | 0x0D,\n\t30401 - 19968: jis0212<<14 | 0x2D<<7 | 0x28,\n\t30402 - 19968: jis0208<<14 | 0x41<<7 | 0x12,\n\t30403 - 19968: jis0208<<14 | 0x26<<7 | 0x35,\n\t30405 - 19968: jis0212<<14 | 0x2D<<7 | 0x29,\n\t30406 - 19968: jis0208<<14 | 0x2A<<7 | 0x3E,\n\t30408 - 19968: jis0208<<14 | 0x10<<7 | 0x2D,\n\t30409 - 19968: jis0212<<14 | 0x2D<<7 | 0x2A,\n\t30410 - 19968: jis0208<<14 | 0x10<<7 | 0x36,\n\t30411 - 19968: jis0212<<14 | 0x2D<<7 | 0x2B,\n\t30412 - 19968: jis0212<<14 | 0x2D<<7 | 0x2C,\n\t30413 - 19968: jis0208<<14 | 0x41<<7 | 0x13,\n\t30414 - 19968: jis0212<<14 | 0x2D<<7 | 0x2D,\n\t30418 - 19968: jis0208<<14 | 0x41<<7 | 0x15,\n\t30420 - 19968: jis0212<<14 | 0x2D<<7 | 0x2E,\n\t30422 - 19968: jis0208<<14 | 0x41<<7 | 0x14,\n\t30423 - 19968: jis0208<<14 | 0x24<<7 | 0x4F,\n\t30425 - 19968: jis0212<<14 | 0x2D<<7 | 0x2F,\n\t30427 - 19968: jis0208<<14 | 0x1F<<7 | 0x18,\n\t30428 - 19968: jis0208<<14 | 0x3C<<7 | 0x18,\n\t30430 - 19968: jis0208<<14 | 0x41<<7 | 0x16,\n\t30431 - 19968: jis0208<<14 | 0x2B<<7 | 0x20,\n\t30432 - 19968: jis0212<<14 | 0x2D<<7 | 0x30,\n\t30433 - 19968: jis0208<<14 | 0x41<<7 | 0x17,\n\t30435 - 19968: jis0208<<14 | 0x13<<7 | 0x25,\n\t30436 - 19968: jis0208<<14 | 0x27<<7 | 0x36,\n\t30437 - 19968: jis0208<<14 | 0x41<<7 | 0x18,\n\t30438 - 19968: jis0212<<14 | 0x2D<<7 | 0x31,\n\t30439 - 19968: jis0208<<14 | 0x41<<7 | 0x19,\n\t30440 - 19968: jis0212<<14 | 0x2D<<7 | 0x32,\n\t30442 - 19968: jis0208<<14 | 0x41<<7 | 0x1A,\n\t30444 - 19968: jis0212<<14 | 0x2D<<7 | 0x33,\n\t30446 - 19968: jis0208<<14 | 0x2B<<7 | 0x3B,\n\t30448 - 19968: jis0212<<14 | 0x2D<<7 | 0x34,\n\t30449 - 19968: jis0212<<14 | 0x2D<<7 | 0x35,\n\t30450 - 19968: jis0208<<14 | 0x2B<<7 | 0x34,\n\t30452 - 19968: jis0208<<14 | 0x23<<7 | 0x1D,\n\t30454 - 19968: jis0212<<14 | 0x2D<<7 | 0x36,\n\t30456 - 19968: jis0208<<14 | 0x20<<7 | 0x49,\n\t30457 - 19968: jis0212<<14 | 0x2D<<7 | 0x37,\n\t30459 - 19968: jis0208<<14 | 0x41<<7 | 0x1C,\n\t30460 - 19968: jis0212<<14 | 0x2D<<7 | 0x38,\n\t30462 - 19968: jis0208<<14 | 0x1C<<7 | 0x41,\n\t30464 - 19968: jis0212<<14 | 0x2D<<7 | 0x39,\n\t30465 - 19968: jis0208<<14 | 0x1D<<7 | 0x29,\n\t30468 - 19968: jis0208<<14 | 0x41<<7 | 0x1F,\n\t30470 - 19968: jis0212<<14 | 0x2D<<7 | 0x3A,\n\t30471 - 19968: jis0208<<14 | 0x41<<7 | 0x1E,\n\t30472 - 19968: jis0208<<14 | 0x41<<7 | 0x1D,\n\t30473 - 19968: jis0208<<14 | 0x27<<7 | 0x5C,\n\t30474 - 19968: jis0212<<14 | 0x2D<<7 | 0x3B,\n\t30475 - 19968: jis0208<<14 | 0x13<<7 | 0x26,\n\t30476 - 19968: jis0208<<14 | 0x17<<7 | 0x08,\n\t30478 - 19968: jis0212<<14 | 0x2D<<7 | 0x3C,\n\t30482 - 19968: jis0212<<14 | 0x2D<<7 | 0x3D,\n\t30484 - 19968: jis0212<<14 | 0x2D<<7 | 0x3E,\n\t30485 - 19968: jis0212<<14 | 0x2D<<7 | 0x3F,\n\t30487 - 19968: jis0212<<14 | 0x2D<<7 | 0x40,\n\t30489 - 19968: jis0212<<14 | 0x2D<<7 | 0x41,\n\t30490 - 19968: jis0212<<14 | 0x2D<<7 | 0x42,\n\t30491 - 19968: jis0208<<14 | 0x41<<7 | 0x25,\n\t30492 - 19968: jis0212<<14 | 0x2D<<7 | 0x43,\n\t30494 - 19968: jis0208<<14 | 0x41<<7 | 0x22,\n\t30495 - 19968: jis0208<<14 | 0x1E<<7 | 0x1E,\n\t30496 - 19968: jis0208<<14 | 0x2B<<7 | 0x11,\n\t30498 - 19968: jis0212<<14 | 0x2D<<7 | 0x44,\n\t30500 - 19968: jis0208<<14 | 0x41<<7 | 0x21,\n\t30501 - 19968: jis0208<<14 | 0x41<<7 | 0x23,\n\t30502 - 19968: jis0208<<14 | 0x41<<7 | 0x24,\n\t30504 - 19968: jis0212<<14 | 0x2D<<7 | 0x45,\n\t30505 - 19968: jis0208<<14 | 0x41<<7 | 0x20,\n\t30509 - 19968: jis0212<<14 | 0x2D<<7 | 0x46,\n\t30510 - 19968: jis0212<<14 | 0x2D<<7 | 0x47,\n\t30511 - 19968: jis0212<<14 | 0x2D<<7 | 0x48,\n\t30516 - 19968: jis0212<<14 | 0x2D<<7 | 0x49,\n\t30517 - 19968: jis0212<<14 | 0x2D<<7 | 0x4A,\n\t30518 - 19968: jis0212<<14 | 0x2D<<7 | 0x4B,\n\t30519 - 19968: jis0208<<14 | 0x41<<7 | 0x26,\n\t30520 - 19968: jis0208<<14 | 0x41<<7 | 0x27,\n\t30521 - 19968: jis0212<<14 | 0x2D<<7 | 0x4C,\n\t30522 - 19968: jis0208<<14 | 0x23<<7 | 0x0E,\n\t30524 - 19968: jis0208<<14 | 0x13<<7 | 0x42,\n\t30525 - 19968: jis0212<<14 | 0x2D<<7 | 0x4D,\n\t30526 - 19968: jis0212<<14 | 0x2D<<7 | 0x4E,\n\t30528 - 19968: jis0208<<14 | 0x22<<7 | 0x44,\n\t30530 - 19968: jis0212<<14 | 0x2D<<7 | 0x4F,\n\t30533 - 19968: jis0212<<14 | 0x2D<<7 | 0x50,\n\t30534 - 19968: jis0208<<14 | 0x5A<<7 | 0x1A,\n\t30535 - 19968: jis0208<<14 | 0x41<<7 | 0x28,\n\t30538 - 19968: jis0212<<14 | 0x2D<<7 | 0x52,\n\t30541 - 19968: jis0212<<14 | 0x2D<<7 | 0x53,\n\t30542 - 19968: jis0212<<14 | 0x2D<<7 | 0x54,\n\t30543 - 19968: jis0212<<14 | 0x2D<<7 | 0x55,\n\t30546 - 19968: jis0212<<14 | 0x2D<<7 | 0x56,\n\t30550 - 19968: jis0212<<14 | 0x2D<<7 | 0x57,\n\t30551 - 19968: jis0212<<14 | 0x2D<<7 | 0x58,\n\t30554 - 19968: jis0208<<14 | 0x41<<7 | 0x29,\n\t30555 - 19968: jis0208<<14 | 0x41<<7 | 0x2C,\n\t30556 - 19968: jis0212<<14 | 0x2D<<7 | 0x59,\n\t30558 - 19968: jis0212<<14 | 0x2D<<7 | 0x5A,\n\t30559 - 19968: jis0212<<14 | 0x2D<<7 | 0x5B,\n\t30560 - 19968: jis0212<<14 | 0x2D<<7 | 0x5C,\n\t30561 - 19968: jis0208<<14 | 0x1E<<7 | 0x46,\n\t30562 - 19968: jis0212<<14 | 0x2D<<7 | 0x5D,\n\t30563 - 19968: jis0208<<14 | 0x25<<7 | 0x23,\n\t30564 - 19968: jis0212<<14 | 0x2E<<7 | 0x00,\n\t30565 - 19968: jis0208<<14 | 0x41<<7 | 0x2D,\n\t30566 - 19968: jis0208<<14 | 0x2A<<7 | 0x32,\n\t30567 - 19968: jis0212<<14 | 0x2E<<7 | 0x01,\n\t30568 - 19968: jis0208<<14 | 0x41<<7 | 0x2A,\n\t30570 - 19968: jis0212<<14 | 0x2E<<7 | 0x02,\n\t30571 - 19968: jis0208<<14 | 0x41<<7 | 0x2B,\n\t30572 - 19968: jis0212<<14 | 0x2E<<7 | 0x03,\n\t30576 - 19968: jis0212<<14 | 0x2E<<7 | 0x04,\n\t30578 - 19968: jis0212<<14 | 0x2E<<7 | 0x05,\n\t30579 - 19968: jis0212<<14 | 0x2E<<7 | 0x06,\n\t30580 - 19968: jis0212<<14 | 0x2E<<7 | 0x07,\n\t30585 - 19968: jis0208<<14 | 0x41<<7 | 0x30,\n\t30586 - 19968: jis0212<<14 | 0x2E<<7 | 0x08,\n\t30589 - 19968: jis0212<<14 | 0x2E<<7 | 0x09,\n\t30590 - 19968: jis0208<<14 | 0x41<<7 | 0x2F,\n\t30591 - 19968: jis0208<<14 | 0x41<<7 | 0x2E,\n\t30592 - 19968: jis0212<<14 | 0x2E<<7 | 0x0A,\n\t30596 - 19968: jis0212<<14 | 0x2E<<7 | 0x0B,\n\t30603 - 19968: jis0208<<14 | 0x41<<7 | 0x32,\n\t30604 - 19968: jis0212<<14 | 0x2E<<7 | 0x0C,\n\t30605 - 19968: jis0212<<14 | 0x2E<<7 | 0x0D,\n\t30606 - 19968: jis0208<<14 | 0x41<<7 | 0x31,\n\t30609 - 19968: jis0208<<14 | 0x41<<7 | 0x33,\n\t30612 - 19968: jis0212<<14 | 0x2E<<7 | 0x0E,\n\t30613 - 19968: jis0212<<14 | 0x2E<<7 | 0x0F,\n\t30614 - 19968: jis0212<<14 | 0x2E<<7 | 0x10,\n\t30618 - 19968: jis0212<<14 | 0x2E<<7 | 0x11,\n\t30622 - 19968: jis0208<<14 | 0x41<<7 | 0x35,\n\t30623 - 19968: jis0212<<14 | 0x2E<<7 | 0x12,\n\t30624 - 19968: jis0208<<14 | 0x41<<7 | 0x34,\n\t30626 - 19968: jis0212<<14 | 0x2E<<7 | 0x13,\n\t30629 - 19968: jis0208<<14 | 0x29<<7 | 0x2C,\n\t30631 - 19968: jis0212<<14 | 0x2E<<7 | 0x14,\n\t30634 - 19968: jis0212<<14 | 0x2E<<7 | 0x15,\n\t30636 - 19968: jis0208<<14 | 0x1C<<7 | 0x35,\n\t30637 - 19968: jis0208<<14 | 0x2D<<7 | 0x25,\n\t30638 - 19968: jis0212<<14 | 0x2E<<7 | 0x16,\n\t30639 - 19968: jis0212<<14 | 0x2E<<7 | 0x17,\n\t30640 - 19968: jis0208<<14 | 0x41<<7 | 0x36,\n\t30641 - 19968: jis0212<<14 | 0x2E<<7 | 0x18,\n\t30643 - 19968: jis0208<<14 | 0x25<<7 | 0x16,\n\t30645 - 19968: jis0212<<14 | 0x2E<<7 | 0x19,\n\t30646 - 19968: jis0208<<14 | 0x41<<7 | 0x37,\n\t30649 - 19968: jis0208<<14 | 0x41<<7 | 0x38,\n\t30651 - 19968: jis0208<<14 | 0x41<<7 | 0x3C,\n\t30652 - 19968: jis0208<<14 | 0x41<<7 | 0x3A,\n\t30653 - 19968: jis0208<<14 | 0x41<<7 | 0x3B,\n\t30654 - 19968: jis0212<<14 | 0x2E<<7 | 0x1A,\n\t30655 - 19968: jis0208<<14 | 0x41<<7 | 0x39,\n\t30659 - 19968: jis0212<<14 | 0x2E<<7 | 0x1B,\n\t30663 - 19968: jis0208<<14 | 0x41<<7 | 0x3D,\n\t30665 - 19968: jis0212<<14 | 0x2E<<7 | 0x1C,\n\t30669 - 19968: jis0208<<14 | 0x41<<7 | 0x3E,\n\t30673 - 19968: jis0212<<14 | 0x2E<<7 | 0x1D,\n\t30674 - 19968: jis0212<<14 | 0x2E<<7 | 0x1E,\n\t30677 - 19968: jis0212<<14 | 0x2E<<7 | 0x1F,\n\t30679 - 19968: jis0208<<14 | 0x41<<7 | 0x3F,\n\t30681 - 19968: jis0212<<14 | 0x2E<<7 | 0x20,\n\t30682 - 19968: jis0208<<14 | 0x41<<7 | 0x40,\n\t30683 - 19968: jis0208<<14 | 0x2B<<7 | 0x16,\n\t30684 - 19968: jis0208<<14 | 0x41<<7 | 0x41,\n\t30686 - 19968: jis0212<<14 | 0x2E<<7 | 0x21,\n\t30687 - 19968: jis0212<<14 | 0x2E<<7 | 0x22,\n\t30688 - 19968: jis0212<<14 | 0x2E<<7 | 0x23,\n\t30690 - 19968: jis0208<<14 | 0x2B<<7 | 0x4F,\n\t30691 - 19968: jis0208<<14 | 0x41<<7 | 0x42,\n\t30692 - 19968: jis0212<<14 | 0x2E<<7 | 0x24,\n\t30693 - 19968: jis0208<<14 | 0x22<<7 | 0x2D,\n\t30694 - 19968: jis0212<<14 | 0x2E<<7 | 0x25,\n\t30695 - 19968: jis0208<<14 | 0x26<<7 | 0x49,\n\t30697 - 19968: jis0208<<14 | 0x15<<7 | 0x4A,\n\t30698 - 19968: jis0212<<14 | 0x2E<<7 | 0x26,\n\t30700 - 19968: jis0212<<14 | 0x2E<<7 | 0x27,\n\t30701 - 19968: jis0208<<14 | 0x22<<7 | 0x1A,\n\t30702 - 19968: jis0208<<14 | 0x41<<7 | 0x43,\n\t30703 - 19968: jis0208<<14 | 0x15<<7 | 0x19,\n\t30704 - 19968: jis0212<<14 | 0x2E<<7 | 0x28,\n\t30705 - 19968: jis0212<<14 | 0x2E<<7 | 0x29,\n\t30707 - 19968: jis0208<<14 | 0x1F<<7 | 0x2F,\n\t30708 - 19968: jis0212<<14 | 0x2E<<7 | 0x2A,\n\t30712 - 19968: jis0212<<14 | 0x2E<<7 | 0x2B,\n\t30715 - 19968: jis0212<<14 | 0x2E<<7 | 0x2C,\n\t30716 - 19968: jis0208<<14 | 0x41<<7 | 0x44,\n\t30722 - 19968: jis0208<<14 | 0x19<<7 | 0x1C,\n\t30725 - 19968: jis0212<<14 | 0x2E<<7 | 0x2D,\n\t30726 - 19968: jis0212<<14 | 0x2E<<7 | 0x2E,\n\t30729 - 19968: jis0212<<14 | 0x2E<<7 | 0x2F,\n\t30732 - 19968: jis0208<<14 | 0x41<<7 | 0x45,\n\t30733 - 19968: jis0212<<14 | 0x2E<<7 | 0x30,\n\t30734 - 19968: jis0212<<14 | 0x2E<<7 | 0x31,\n\t30737 - 19968: jis0212<<14 | 0x2E<<7 | 0x32,\n\t30738 - 19968: jis0208<<14 | 0x41<<7 | 0x46,\n\t30740 - 19968: jis0208<<14 | 0x17<<7 | 0x05,\n\t30741 - 19968: jis0208<<14 | 0x19<<7 | 0x34,\n\t30749 - 19968: jis0212<<14 | 0x2E<<7 | 0x33,\n\t30752 - 19968: jis0208<<14 | 0x41<<7 | 0x48,\n\t30753 - 19968: jis0208<<14 | 0x5A<<7 | 0x1C,\n\t30754 - 19968: jis0212<<14 | 0x2E<<7 | 0x35,\n\t30755 - 19968: jis0212<<14 | 0x2E<<7 | 0x36,\n\t30757 - 19968: jis0208<<14 | 0x24<<7 | 0x35,\n\t30758 - 19968: jis0208<<14 | 0x19<<7 | 0x35,\n\t30759 - 19968: jis0208<<14 | 0x14<<7 | 0x2D,\n\t30765 - 19968: jis0212<<14 | 0x2E<<7 | 0x37,\n\t30766 - 19968: jis0212<<14 | 0x2E<<7 | 0x38,\n\t30768 - 19968: jis0212<<14 | 0x2E<<7 | 0x39,\n\t30770 - 19968: jis0208<<14 | 0x2A<<7 | 0x03,\n\t30772 - 19968: jis0208<<14 | 0x26<<7 | 0x2A,\n\t30773 - 19968: jis0212<<14 | 0x2E<<7 | 0x3A,\n\t30775 - 19968: jis0212<<14 | 0x2E<<7 | 0x3B,\n\t30778 - 19968: jis0208<<14 | 0x24<<7 | 0x36,\n\t30783 - 19968: jis0208<<14 | 0x18<<7 | 0x3B,\n\t30787 - 19968: jis0212<<14 | 0x2E<<7 | 0x3C,\n\t30788 - 19968: jis0212<<14 | 0x2E<<7 | 0x3D,\n\t30789 - 19968: jis0208<<14 | 0x41<<7 | 0x4A,\n\t30791 - 19968: jis0212<<14 | 0x2E<<7 | 0x3E,\n\t30792 - 19968: jis0212<<14 | 0x2E<<7 | 0x3F,\n\t30796 - 19968: jis0212<<14 | 0x2E<<7 | 0x40,\n\t30798 - 19968: jis0208<<14 | 0x5A<<7 | 0x1D,\n\t30802 - 19968: jis0212<<14 | 0x2E<<7 | 0x42,\n\t30812 - 19968: jis0212<<14 | 0x2E<<7 | 0x43,\n\t30813 - 19968: jis0208<<14 | 0x1D<<7 | 0x2A,\n\t30814 - 19968: jis0212<<14 | 0x2E<<7 | 0x44,\n\t30816 - 19968: jis0212<<14 | 0x2E<<7 | 0x45,\n\t30817 - 19968: jis0212<<14 | 0x2E<<7 | 0x46,\n\t30819 - 19968: jis0212<<14 | 0x2E<<7 | 0x47,\n\t30820 - 19968: jis0208<<14 | 0x5A<<7 | 0x1E,\n\t30824 - 19968: jis0212<<14 | 0x2E<<7 | 0x49,\n\t30826 - 19968: jis0212<<14 | 0x2E<<7 | 0x4A,\n\t30827 - 19968: jis0208<<14 | 0x2D<<7 | 0x11,\n\t30828 - 19968: jis0208<<14 | 0x18<<7 | 0x24,\n\t30830 - 19968: jis0212<<14 | 0x2E<<7 | 0x4B,\n\t30831 - 19968: jis0208<<14 | 0x17<<7 | 0x06,\n\t30834 - 19968: jis0208<<14 | 0x27<<7 | 0x02,\n\t30836 - 19968: jis0208<<14 | 0x41<<7 | 0x4C,\n\t30842 - 19968: jis0208<<14 | 0x5A<<7 | 0x1F,\n\t30844 - 19968: jis0208<<14 | 0x41<<7 | 0x4E,\n\t30846 - 19968: jis0212<<14 | 0x2E<<7 | 0x4D,\n\t30849 - 19968: jis0208<<14 | 0x17<<7 | 0x4A,\n\t30854 - 19968: jis0208<<14 | 0x41<<7 | 0x4D,\n\t30855 - 19968: jis0208<<14 | 0x23<<7 | 0x55,\n\t30858 - 19968: jis0212<<14 | 0x2E<<7 | 0x4E,\n\t30860 - 19968: jis0208<<14 | 0x41<<7 | 0x50,\n\t30861 - 19968: jis0208<<14 | 0x12<<7 | 0x16,\n\t30862 - 19968: jis0208<<14 | 0x41<<7 | 0x4B,\n\t30863 - 19968: jis0212<<14 | 0x2E<<7 | 0x4F,\n\t30865 - 19968: jis0208<<14 | 0x27<<7 | 0x49,\n\t30867 - 19968: jis0208<<14 | 0x10<<7 | 0x0F,\n\t30868 - 19968: jis0212<<14 | 0x2E<<7 | 0x50,\n\t30869 - 19968: jis0208<<14 | 0x19<<7 | 0x4B,\n\t30871 - 19968: jis0208<<14 | 0x2E<<7 | 0x31,\n\t30872 - 19968: jis0212<<14 | 0x2E<<7 | 0x51,\n\t30874 - 19968: jis0208<<14 | 0x41<<7 | 0x4F,\n\t30877 - 19968: jis0212<<14 | 0x2E<<7 | 0x53,\n\t30878 - 19968: jis0212<<14 | 0x2E<<7 | 0x54,\n\t30879 - 19968: jis0212<<14 | 0x2E<<7 | 0x55,\n\t30881 - 19968: jis0212<<14 | 0x2E<<7 | 0x52,\n\t30883 - 19968: jis0208<<14 | 0x41<<7 | 0x51,\n\t30884 - 19968: jis0212<<14 | 0x2E<<7 | 0x56,\n\t30887 - 19968: jis0208<<14 | 0x29<<7 | 0x2A,\n\t30888 - 19968: jis0212<<14 | 0x2E<<7 | 0x57,\n\t30889 - 19968: jis0208<<14 | 0x1F<<7 | 0x38,\n\t30890 - 19968: jis0208<<14 | 0x41<<7 | 0x53,\n\t30892 - 19968: jis0212<<14 | 0x2E<<7 | 0x58,\n\t30893 - 19968: jis0212<<14 | 0x2E<<7 | 0x59,\n\t30895 - 19968: jis0208<<14 | 0x41<<7 | 0x54,\n\t30896 - 19968: jis0212<<14 | 0x2E<<7 | 0x5A,\n\t30897 - 19968: jis0212<<14 | 0x2E<<7 | 0x5B,\n\t30898 - 19968: jis0212<<14 | 0x2E<<7 | 0x5C,\n\t30899 - 19968: jis0212<<14 | 0x2E<<7 | 0x5D,\n\t30901 - 19968: jis0208<<14 | 0x41<<7 | 0x52,\n\t30906 - 19968: jis0208<<14 | 0x12<<7 | 0x2D,\n\t30907 - 19968: jis0212<<14 | 0x2F<<7 | 0x00,\n\t30908 - 19968: jis0208<<14 | 0x41<<7 | 0x5A,\n\t30909 - 19968: jis0212<<14 | 0x2F<<7 | 0x01,\n\t30910 - 19968: jis0208<<14 | 0x41<<7 | 0x59,\n\t30911 - 19968: jis0212<<14 | 0x2F<<7 | 0x02,\n\t30913 - 19968: jis0208<<14 | 0x1B<<7 | 0x06,\n\t30917 - 19968: jis0208<<14 | 0x41<<7 | 0x5B,\n\t30918 - 19968: jis0208<<14 | 0x41<<7 | 0x56,\n\t30919 - 19968: jis0212<<14 | 0x2F<<7 | 0x03,\n\t30920 - 19968: jis0212<<14 | 0x2F<<7 | 0x04,\n\t30921 - 19968: jis0212<<14 | 0x2F<<7 | 0x05,\n\t30922 - 19968: jis0208<<14 | 0x41<<7 | 0x5C,\n\t30923 - 19968: jis0208<<14 | 0x41<<7 | 0x57,\n\t30924 - 19968: jis0212<<14 | 0x2F<<7 | 0x06,\n\t30926 - 19968: jis0212<<14 | 0x2F<<7 | 0x07,\n\t30928 - 19968: jis0208<<14 | 0x27<<7 | 0x37,\n\t30929 - 19968: jis0208<<14 | 0x41<<7 | 0x55,\n\t30930 - 19968: jis0212<<14 | 0x2F<<7 | 0x08,\n\t30931 - 19968: jis0212<<14 | 0x2F<<7 | 0x09,\n\t30932 - 19968: jis0208<<14 | 0x41<<7 | 0x58,\n\t30933 - 19968: jis0212<<14 | 0x2F<<7 | 0x0A,\n\t30934 - 19968: jis0212<<14 | 0x2F<<7 | 0x0B,\n\t30938 - 19968: jis0208<<14 | 0x42<<7 | 0x01,\n\t30939 - 19968: jis0212<<14 | 0x2F<<7 | 0x0D,\n\t30943 - 19968: jis0212<<14 | 0x2F<<7 | 0x0E,\n\t30944 - 19968: jis0212<<14 | 0x2F<<7 | 0x0F,\n\t30945 - 19968: jis0212<<14 | 0x2F<<7 | 0x10,\n\t30948 - 19968: jis0212<<14 | 0x2F<<7 | 0x0C,\n\t30950 - 19968: jis0212<<14 | 0x2F<<7 | 0x11,\n\t30951 - 19968: jis0208<<14 | 0x42<<7 | 0x00,\n\t30952 - 19968: jis0208<<14 | 0x2A<<7 | 0x40,\n\t30954 - 19968: jis0212<<14 | 0x2F<<7 | 0x12,\n\t30956 - 19968: jis0208<<14 | 0x41<<7 | 0x5D,\n\t30959 - 19968: jis0208<<14 | 0x0F<<7 | 0x4A,\n\t30962 - 19968: jis0212<<14 | 0x2F<<7 | 0x13,\n\t30963 - 19968: jis0212<<14 | 0x2F<<7 | 0x14,\n\t30964 - 19968: jis0208<<14 | 0x42<<7 | 0x03,\n\t30966 - 19968: jis0212<<14 | 0x2F<<7 | 0x16,\n\t30967 - 19968: jis0212<<14 | 0x2F<<7 | 0x17,\n\t30970 - 19968: jis0212<<14 | 0x2F<<7 | 0x18,\n\t30971 - 19968: jis0212<<14 | 0x2F<<7 | 0x19,\n\t30973 - 19968: jis0208<<14 | 0x42<<7 | 0x02,\n\t30975 - 19968: jis0212<<14 | 0x2F<<7 | 0x1A,\n\t30976 - 19968: jis0212<<14 | 0x2F<<7 | 0x15,\n\t30977 - 19968: jis0208<<14 | 0x1D<<7 | 0x2B,\n\t30982 - 19968: jis0212<<14 | 0x2F<<7 | 0x1B,\n\t30983 - 19968: jis0208<<14 | 0x42<<7 | 0x04,\n\t30988 - 19968: jis0212<<14 | 0x2F<<7 | 0x1C,\n\t30990 - 19968: jis0208<<14 | 0x20<<7 | 0x22,\n\t30992 - 19968: jis0212<<14 | 0x2F<<7 | 0x1D,\n\t30993 - 19968: jis0208<<14 | 0x42<<7 | 0x06,\n\t30994 - 19968: jis0208<<14 | 0x42<<7 | 0x05,\n\t31001 - 19968: jis0208<<14 | 0x42<<7 | 0x07,\n\t31002 - 19968: jis0212<<14 | 0x2F<<7 | 0x1E,\n\t31004 - 19968: jis0212<<14 | 0x2F<<7 | 0x1F,\n\t31006 - 19968: jis0212<<14 | 0x2F<<7 | 0x20,\n\t31007 - 19968: jis0212<<14 | 0x2F<<7 | 0x21,\n\t31008 - 19968: jis0212<<14 | 0x2F<<7 | 0x22,\n\t31013 - 19968: jis0212<<14 | 0x2F<<7 | 0x23,\n\t31014 - 19968: jis0208<<14 | 0x41<<7 | 0x47,\n\t31015 - 19968: jis0212<<14 | 0x2F<<7 | 0x24,\n\t31017 - 19968: jis0212<<14 | 0x2F<<7 | 0x25,\n\t31018 - 19968: jis0208<<14 | 0x41<<7 | 0x49,\n\t31019 - 19968: jis0208<<14 | 0x42<<7 | 0x09,\n\t31020 - 19968: jis0208<<14 | 0x42<<7 | 0x08,\n\t31021 - 19968: jis0212<<14 | 0x2F<<7 | 0x26,\n\t31024 - 19968: jis0208<<14 | 0x5A<<7 | 0x20,\n\t31025 - 19968: jis0212<<14 | 0x2F<<7 | 0x27,\n\t31028 - 19968: jis0212<<14 | 0x2F<<7 | 0x28,\n\t31029 - 19968: jis0212<<14 | 0x2F<<7 | 0x29,\n\t31034 - 19968: jis0208<<14 | 0x1B<<7 | 0x07,\n\t31035 - 19968: jis0212<<14 | 0x2F<<7 | 0x2A,\n\t31036 - 19968: jis0208<<14 | 0x2D<<7 | 0x48,\n\t31037 - 19968: jis0212<<14 | 0x2F<<7 | 0x2B,\n\t31038 - 19968: jis0208<<14 | 0x1B<<7 | 0x31,\n\t31039 - 19968: jis0212<<14 | 0x2F<<7 | 0x2C,\n\t31040 - 19968: jis0208<<14 | 0x42<<7 | 0x0A,\n\t31041 - 19968: jis0208<<14 | 0x16<<7 | 0x16,\n\t31044 - 19968: jis0212<<14 | 0x2F<<7 | 0x2D,\n\t31045 - 19968: jis0212<<14 | 0x2F<<7 | 0x2E,\n\t31046 - 19968: jis0212<<14 | 0x2F<<7 | 0x2F,\n\t31047 - 19968: jis0208<<14 | 0x14<<7 | 0x1F,\n\t31048 - 19968: jis0208<<14 | 0x14<<7 | 0x06,\n\t31049 - 19968: jis0208<<14 | 0x1A<<7 | 0x42,\n\t31050 - 19968: jis0212<<14 | 0x2F<<7 | 0x30,\n\t31051 - 19968: jis0212<<14 | 0x2F<<7 | 0x31,\n\t31055 - 19968: jis0212<<14 | 0x2F<<7 | 0x32,\n\t31056 - 19968: jis0208<<14 | 0x2C<<7 | 0x13,\n\t31057 - 19968: jis0212<<14 | 0x2F<<7 | 0x33,\n\t31059 - 19968: jis0208<<14 | 0x42<<7 | 0x10,\n\t31060 - 19968: jis0212<<14 | 0x2F<<7 | 0x34,\n\t31061 - 19968: jis0208<<14 | 0x42<<7 | 0x0F,\n\t31062 - 19968: jis0208<<14 | 0x20<<7 | 0x23,\n\t31063 - 19968: jis0208<<14 | 0x42<<7 | 0x0C,\n\t31064 - 19968: jis0212<<14 | 0x2F<<7 | 0x35,\n\t31066 - 19968: jis0208<<14 | 0x42<<7 | 0x0E,\n\t31067 - 19968: jis0212<<14 | 0x2F<<7 | 0x36,\n\t31068 - 19968: jis0212<<14 | 0x2F<<7 | 0x37,\n\t31069 - 19968: jis0208<<14 | 0x1C<<7 | 0x2A,\n\t31070 - 19968: jis0208<<14 | 0x1E<<7 | 0x1F,\n\t31071 - 19968: jis0208<<14 | 0x42<<7 | 0x0D,\n\t31072 - 19968: jis0208<<14 | 0x42<<7 | 0x0B,\n\t31074 - 19968: jis0208<<14 | 0x26<<7 | 0x09,\n\t31077 - 19968: jis0208<<14 | 0x1D<<7 | 0x2C,\n\t31079 - 19968: jis0212<<14 | 0x2F<<7 | 0x38,\n\t31080 - 19968: jis0208<<14 | 0x28<<7 | 0x1B,\n\t31081 - 19968: jis0212<<14 | 0x2F<<7 | 0x39,\n\t31083 - 19968: jis0212<<14 | 0x2F<<7 | 0x3A,\n\t31085 - 19968: jis0208<<14 | 0x19<<7 | 0x36,\n\t31090 - 19968: jis0212<<14 | 0x2F<<7 | 0x3B,\n\t31095 - 19968: jis0208<<14 | 0x24<<7 | 0x57,\n\t31097 - 19968: jis0212<<14 | 0x2F<<7 | 0x3C,\n\t31098 - 19968: jis0208<<14 | 0x42<<7 | 0x11,\n\t31099 - 19968: jis0212<<14 | 0x2F<<7 | 0x3D,\n\t31100 - 19968: jis0212<<14 | 0x2F<<7 | 0x3E,\n\t31102 - 19968: jis0212<<14 | 0x2F<<7 | 0x3F,\n\t31103 - 19968: jis0208<<14 | 0x42<<7 | 0x12,\n\t31104 - 19968: jis0208<<14 | 0x42<<7 | 0x28,\n\t31105 - 19968: jis0208<<14 | 0x15<<7 | 0x37,\n\t31108 - 19968: jis0208<<14 | 0x2E<<7 | 0x1C,\n\t31109 - 19968: jis0208<<14 | 0x20<<7 | 0x14,\n\t31114 - 19968: jis0208<<14 | 0x42<<7 | 0x13,\n\t31115 - 19968: jis0212<<14 | 0x2F<<7 | 0x40,\n\t31116 - 19968: jis0212<<14 | 0x2F<<7 | 0x41,\n\t31117 - 19968: jis0208<<14 | 0x11<<7 | 0x31,\n\t31118 - 19968: jis0208<<14 | 0x23<<7 | 0x56,\n\t31119 - 19968: jis0208<<14 | 0x29<<7 | 0x00,\n\t31121 - 19968: jis0212<<14 | 0x2F<<7 | 0x42,\n\t31123 - 19968: jis0212<<14 | 0x2F<<7 | 0x43,\n\t31124 - 19968: jis0208<<14 | 0x5A<<7 | 0x24,\n\t31125 - 19968: jis0212<<14 | 0x2F<<7 | 0x45,\n\t31126 - 19968: jis0212<<14 | 0x2F<<7 | 0x46,\n\t31128 - 19968: jis0212<<14 | 0x2F<<7 | 0x47,\n\t31131 - 19968: jis0208<<14 | 0x5A<<7 | 0x26,\n\t31132 - 19968: jis0212<<14 | 0x2F<<7 | 0x49,\n\t31133 - 19968: jis0208<<14 | 0x42<<7 | 0x14,\n\t31137 - 19968: jis0212<<14 | 0x2F<<7 | 0x4A,\n\t31142 - 19968: jis0208<<14 | 0x14<<7 | 0x59,\n\t31143 - 19968: jis0208<<14 | 0x42<<7 | 0x15,\n\t31144 - 19968: jis0212<<14 | 0x2F<<7 | 0x4B,\n\t31145 - 19968: jis0212<<14 | 0x2F<<7 | 0x4C,\n\t31146 - 19968: jis0208<<14 | 0x42<<7 | 0x17,\n\t31147 - 19968: jis0212<<14 | 0x2F<<7 | 0x4D,\n\t31150 - 19968: jis0208<<14 | 0x42<<7 | 0x18,\n\t31151 - 19968: jis0212<<14 | 0x2F<<7 | 0x4E,\n\t31152 - 19968: jis0208<<14 | 0x26<<7 | 0x08,\n\t31153 - 19968: jis0212<<14 | 0x2F<<7 | 0x4F,\n\t31155 - 19968: jis0208<<14 | 0x42<<7 | 0x19,\n\t31156 - 19968: jis0212<<14 | 0x2F<<7 | 0x50,\n\t31160 - 19968: jis0212<<14 | 0x2F<<7 | 0x51,\n\t31161 - 19968: jis0208<<14 | 0x42<<7 | 0x1A,\n\t31162 - 19968: jis0208<<14 | 0x42<<7 | 0x1B,\n\t31163 - 19968: jis0212<<14 | 0x2F<<7 | 0x52,\n\t31165 - 19968: jis0208<<14 | 0x15<<7 | 0x38,\n\t31166 - 19968: jis0208<<14 | 0x11<<7 | 0x32,\n\t31167 - 19968: jis0208<<14 | 0x25<<7 | 0x24,\n\t31168 - 19968: jis0208<<14 | 0x1C<<7 | 0x07,\n\t31169 - 19968: jis0208<<14 | 0x1A<<7 | 0x43,\n\t31170 - 19968: jis0212<<14 | 0x2F<<7 | 0x53,\n\t31172 - 19968: jis0212<<14 | 0x2F<<7 | 0x54,\n\t31175 - 19968: jis0212<<14 | 0x2F<<7 | 0x55,\n\t31176 - 19968: jis0212<<14 | 0x2F<<7 | 0x56,\n\t31177 - 19968: jis0208<<14 | 0x42<<7 | 0x1C,\n\t31178 - 19968: jis0212<<14 | 0x2F<<7 | 0x57,\n\t31179 - 19968: jis0208<<14 | 0x1C<<7 | 0x08,\n\t31183 - 19968: jis0212<<14 | 0x2F<<7 | 0x58,\n\t31185 - 19968: jis0208<<14 | 0x11<<7 | 0x29,\n\t31186 - 19968: jis0208<<14 | 0x28<<7 | 0x22,\n\t31188 - 19968: jis0212<<14 | 0x2F<<7 | 0x59,\n\t31189 - 19968: jis0208<<14 | 0x42<<7 | 0x1D,\n\t31190 - 19968: jis0212<<14 | 0x2F<<7 | 0x5A,\n\t31192 - 19968: jis0208<<14 | 0x27<<7 | 0x4A,\n\t31194 - 19968: jis0212<<14 | 0x2F<<7 | 0x5B,\n\t31197 - 19968: jis0212<<14 | 0x2F<<7 | 0x5C,\n\t31198 - 19968: jis0212<<14 | 0x2F<<7 | 0x5D,\n\t31199 - 19968: jis0208<<14 | 0x20<<7 | 0x24,\n\t31200 - 19968: jis0212<<14 | 0x30<<7 | 0x00,\n\t31201 - 19968: jis0208<<14 | 0x42<<7 | 0x20,\n\t31202 - 19968: jis0212<<14 | 0x30<<7 | 0x01,\n\t31203 - 19968: jis0208<<14 | 0x42<<7 | 0x21,\n\t31204 - 19968: jis0208<<14 | 0x26<<7 | 0x48,\n\t31205 - 19968: jis0212<<14 | 0x30<<7 | 0x02,\n\t31206 - 19968: jis0208<<14 | 0x1E<<7 | 0x20,\n\t31207 - 19968: jis0208<<14 | 0x42<<7 | 0x1E,\n\t31209 - 19968: jis0208<<14 | 0x22<<7 | 0x40,\n\t31210 - 19968: jis0212<<14 | 0x30<<7 | 0x03,\n\t31211 - 19968: jis0212<<14 | 0x30<<7 | 0x04,\n\t31212 - 19968: jis0208<<14 | 0x42<<7 | 0x1F,\n\t31213 - 19968: jis0212<<14 | 0x30<<7 | 0x05,\n\t31216 - 19968: jis0208<<14 | 0x1D<<7 | 0x2D,\n\t31217 - 19968: jis0212<<14 | 0x30<<7 | 0x06,\n\t31224 - 19968: jis0212<<14 | 0x30<<7 | 0x07,\n\t31227 - 19968: jis0208<<14 | 0x0F<<7 | 0x3B,\n\t31228 - 19968: jis0212<<14 | 0x30<<7 | 0x08,\n\t31232 - 19968: jis0208<<14 | 0x14<<7 | 0x08,\n\t31234 - 19968: jis0212<<14 | 0x30<<7 | 0x09,\n\t31235 - 19968: jis0212<<14 | 0x30<<7 | 0x0A,\n\t31239 - 19968: jis0212<<14 | 0x30<<7 | 0x0B,\n\t31240 - 19968: jis0208<<14 | 0x42<<7 | 0x22,\n\t31241 - 19968: jis0212<<14 | 0x30<<7 | 0x0C,\n\t31242 - 19968: jis0212<<14 | 0x30<<7 | 0x0D,\n\t31243 - 19968: jis0208<<14 | 0x23<<7 | 0x57,\n\t31244 - 19968: jis0212<<14 | 0x30<<7 | 0x0E,\n\t31245 - 19968: jis0208<<14 | 0x42<<7 | 0x23,\n\t31246 - 19968: jis0208<<14 | 0x1F<<7 | 0x26,\n\t31249 - 19968: jis0212<<14 | 0x30<<7 | 0x0F,\n\t31252 - 19968: jis0208<<14 | 0x2B<<7 | 0x0C,\n\t31253 - 19968: jis0212<<14 | 0x30<<7 | 0x10,\n\t31255 - 19968: jis0208<<14 | 0x28<<7 | 0x02,\n\t31256 - 19968: jis0208<<14 | 0x42<<7 | 0x24,\n\t31257 - 19968: jis0208<<14 | 0x42<<7 | 0x25,\n\t31258 - 19968: jis0208<<14 | 0x22<<7 | 0x34,\n\t31259 - 19968: jis0212<<14 | 0x30<<7 | 0x11,\n\t31260 - 19968: jis0208<<14 | 0x2D<<7 | 0x26,\n\t31262 - 19968: jis0212<<14 | 0x30<<7 | 0x12,\n\t31263 - 19968: jis0208<<14 | 0x42<<7 | 0x27,\n\t31264 - 19968: jis0208<<14 | 0x42<<7 | 0x26,\n\t31265 - 19968: jis0212<<14 | 0x30<<7 | 0x13,\n\t31271 - 19968: jis0212<<14 | 0x30<<7 | 0x14,\n\t31275 - 19968: jis0212<<14 | 0x30<<7 | 0x15,\n\t31277 - 19968: jis0212<<14 | 0x30<<7 | 0x16,\n\t31278 - 19968: jis0208<<14 | 0x1B<<7 | 0x4E,\n\t31279 - 19968: jis0212<<14 | 0x30<<7 | 0x17,\n\t31280 - 19968: jis0212<<14 | 0x30<<7 | 0x18,\n\t31281 - 19968: jis0208<<14 | 0x42<<7 | 0x29,\n\t31282 - 19968: jis0208<<14 | 0x0F<<7 | 0x4F,\n\t31284 - 19968: jis0212<<14 | 0x30<<7 | 0x19,\n\t31285 - 19968: jis0212<<14 | 0x30<<7 | 0x1A,\n\t31287 - 19968: jis0208<<14 | 0x42<<7 | 0x2C,\n\t31288 - 19968: jis0212<<14 | 0x30<<7 | 0x1B,\n\t31289 - 19968: jis0212<<14 | 0x30<<7 | 0x1C,\n\t31290 - 19968: jis0212<<14 | 0x30<<7 | 0x1D,\n\t31291 - 19968: jis0208<<14 | 0x42<<7 | 0x2A,\n\t31292 - 19968: jis0208<<14 | 0x11<<7 | 0x33,\n\t31293 - 19968: jis0208<<14 | 0x16<<7 | 0x2D,\n\t31294 - 19968: jis0208<<14 | 0x42<<7 | 0x2B,\n\t31295 - 19968: jis0208<<14 | 0x18<<7 | 0x25,\n\t31296 - 19968: jis0208<<14 | 0x18<<7 | 0x51,\n\t31298 - 19968: jis0208<<14 | 0x29<<7 | 0x45,\n\t31299 - 19968: jis0208<<14 | 0x42<<7 | 0x2D,\n\t31300 - 19968: jis0212<<14 | 0x30<<7 | 0x1E,\n\t31301 - 19968: jis0212<<14 | 0x30<<7 | 0x1F,\n\t31302 - 19968: jis0208<<14 | 0x2A<<7 | 0x33,\n\t31303 - 19968: jis0212<<14 | 0x30<<7 | 0x20,\n\t31304 - 19968: jis0212<<14 | 0x30<<7 | 0x21,\n\t31305 - 19968: jis0208<<14 | 0x42<<7 | 0x2F,\n\t31308 - 19968: jis0212<<14 | 0x30<<7 | 0x22,\n\t31309 - 19968: jis0208<<14 | 0x1F<<7 | 0x30,\n\t31310 - 19968: jis0208<<14 | 0x10<<7 | 0x2E,\n\t31311 - 19968: jis0208<<14 | 0x11<<7 | 0x19,\n\t31312 - 19968: jis0208<<14 | 0x0F<<7 | 0x0B,\n\t31317 - 19968: jis0212<<14 | 0x30<<7 | 0x23,\n\t31318 - 19968: jis0212<<14 | 0x30<<7 | 0x24,\n\t31319 - 19968: jis0208<<14 | 0x42<<7 | 0x2E,\n\t31321 - 19968: jis0212<<14 | 0x30<<7 | 0x25,\n\t31324 - 19968: jis0212<<14 | 0x30<<7 | 0x26,\n\t31325 - 19968: jis0212<<14 | 0x30<<7 | 0x27,\n\t31327 - 19968: jis0212<<14 | 0x30<<7 | 0x28,\n\t31328 - 19968: jis0212<<14 | 0x30<<7 | 0x29,\n\t31329 - 19968: jis0208<<14 | 0x42<<7 | 0x30,\n\t31330 - 19968: jis0208<<14 | 0x42<<7 | 0x31,\n\t31331 - 19968: jis0208<<14 | 0x1D<<7 | 0x56,\n\t31333 - 19968: jis0212<<14 | 0x30<<7 | 0x2A,\n\t31335 - 19968: jis0212<<14 | 0x30<<7 | 0x2B,\n\t31337 - 19968: jis0208<<14 | 0x42<<7 | 0x32,\n\t31338 - 19968: jis0212<<14 | 0x30<<7 | 0x2C,\n\t31339 - 19968: jis0208<<14 | 0x12<<7 | 0x2E,\n\t31341 - 19968: jis0212<<14 | 0x30<<7 | 0x2D,\n\t31344 - 19968: jis0208<<14 | 0x42<<7 | 0x34,\n\t31348 - 19968: jis0208<<14 | 0x16<<7 | 0x49,\n\t31349 - 19968: jis0212<<14 | 0x30<<7 | 0x2E,\n\t31350 - 19968: jis0208<<14 | 0x14<<7 | 0x45,\n\t31352 - 19968: jis0212<<14 | 0x30<<7 | 0x2F,\n\t31353 - 19968: jis0208<<14 | 0x42<<7 | 0x35,\n\t31354 - 19968: jis0208<<14 | 0x15<<7 | 0x54,\n\t31357 - 19968: jis0208<<14 | 0x42<<7 | 0x36,\n\t31358 - 19968: jis0212<<14 | 0x30<<7 | 0x30,\n\t31359 - 19968: jis0208<<14 | 0x1F<<7 | 0x5B,\n\t31360 - 19968: jis0212<<14 | 0x30<<7 | 0x31,\n\t31361 - 19968: jis0208<<14 | 0x25<<7 | 0x2C,\n\t31362 - 19968: jis0212<<14 | 0x30<<7 | 0x32,\n\t31363 - 19968: jis0208<<14 | 0x1F<<7 | 0x3F,\n\t31364 - 19968: jis0208<<14 | 0x19<<7 | 0x54,\n\t31365 - 19968: jis0212<<14 | 0x30<<7 | 0x33,\n\t31366 - 19968: jis0212<<14 | 0x30<<7 | 0x34,\n\t31368 - 19968: jis0208<<14 | 0x42<<7 | 0x37,\n\t31370 - 19968: jis0212<<14 | 0x30<<7 | 0x35,\n\t31371 - 19968: jis0212<<14 | 0x30<<7 | 0x36,\n\t31376 - 19968: jis0212<<14 | 0x30<<7 | 0x37,\n\t31377 - 19968: jis0212<<14 | 0x30<<7 | 0x38,\n\t31378 - 19968: jis0208<<14 | 0x22<<7 | 0x41,\n\t31379 - 19968: jis0208<<14 | 0x20<<7 | 0x4A,\n\t31380 - 19968: jis0212<<14 | 0x30<<7 | 0x39,\n\t31381 - 19968: jis0208<<14 | 0x42<<7 | 0x39,\n\t31382 - 19968: jis0208<<14 | 0x42<<7 | 0x3B,\n\t31383 - 19968: jis0208<<14 | 0x42<<7 | 0x38,\n\t31384 - 19968: jis0208<<14 | 0x42<<7 | 0x3A,\n\t31390 - 19968: jis0212<<14 | 0x30<<7 | 0x3A,\n\t31391 - 19968: jis0208<<14 | 0x16<<7 | 0x01,\n\t31392 - 19968: jis0212<<14 | 0x30<<7 | 0x3B,\n\t31395 - 19968: jis0212<<14 | 0x30<<7 | 0x3C,\n\t31401 - 19968: jis0208<<14 | 0x42<<7 | 0x3C,\n\t31402 - 19968: jis0208<<14 | 0x16<<7 | 0x05,\n\t31404 - 19968: jis0212<<14 | 0x30<<7 | 0x3D,\n\t31406 - 19968: jis0208<<14 | 0x14<<7 | 0x46,\n\t31407 - 19968: jis0208<<14 | 0x2C<<7 | 0x31,\n\t31408 - 19968: jis0208<<14 | 0x42<<7 | 0x3E,\n\t31411 - 19968: jis0212<<14 | 0x30<<7 | 0x3E,\n\t31413 - 19968: jis0212<<14 | 0x30<<7 | 0x3F,\n\t31414 - 19968: jis0208<<14 | 0x42<<7 | 0x3F,\n\t31417 - 19968: jis0212<<14 | 0x30<<7 | 0x40,\n\t31418 - 19968: jis0208<<14 | 0x10<<7 | 0x0D,\n\t31419 - 19968: jis0212<<14 | 0x30<<7 | 0x41,\n\t31420 - 19968: jis0212<<14 | 0x30<<7 | 0x42,\n\t31423 - 19968: jis0208<<14 | 0x42<<7 | 0x42,\n\t31427 - 19968: jis0208<<14 | 0x12<<7 | 0x55,\n\t31428 - 19968: jis0208<<14 | 0x42<<7 | 0x41,\n\t31429 - 19968: jis0208<<14 | 0x42<<7 | 0x40,\n\t31430 - 19968: jis0212<<14 | 0x30<<7 | 0x43,\n\t31431 - 19968: jis0208<<14 | 0x42<<7 | 0x44,\n\t31432 - 19968: jis0208<<14 | 0x42<<7 | 0x3D,\n\t31433 - 19968: jis0212<<14 | 0x30<<7 | 0x44,\n\t31434 - 19968: jis0208<<14 | 0x42<<7 | 0x45,\n\t31435 - 19968: jis0208<<14 | 0x2D<<7 | 0x08,\n\t31436 - 19968: jis0212<<14 | 0x30<<7 | 0x45,\n\t31437 - 19968: jis0208<<14 | 0x42<<7 | 0x46,\n\t31438 - 19968: jis0212<<14 | 0x30<<7 | 0x46,\n\t31439 - 19968: jis0208<<14 | 0x42<<7 | 0x47,\n\t31441 - 19968: jis0208<<14 | 0x5A<<7 | 0x27,\n\t31442 - 19968: jis0208<<14 | 0x33<<7 | 0x53,\n\t31443 - 19968: jis0208<<14 | 0x42<<7 | 0x49,\n\t31445 - 19968: jis0208<<14 | 0x42<<7 | 0x48,\n\t31449 - 19968: jis0208<<14 | 0x42<<7 | 0x4A,\n\t31450 - 19968: jis0208<<14 | 0x42<<7 | 0x4B,\n\t31451 - 19968: jis0212<<14 | 0x30<<7 | 0x48,\n\t31452 - 19968: jis0208<<14 | 0x2D<<7 | 0x14,\n\t31453 - 19968: jis0208<<14 | 0x42<<7 | 0x4C,\n\t31455 - 19968: jis0208<<14 | 0x4F<<7 | 0x4E,\n\t31456 - 19968: jis0208<<14 | 0x1D<<7 | 0x2E,\n\t31457 - 19968: jis0208<<14 | 0x42<<7 | 0x4D,\n\t31458 - 19968: jis0208<<14 | 0x42<<7 | 0x4E,\n\t31459 - 19968: jis0208<<14 | 0x1C<<7 | 0x36,\n\t31461 - 19968: jis0208<<14 | 0x25<<7 | 0x17,\n\t31462 - 19968: jis0208<<14 | 0x42<<7 | 0x4F,\n\t31463 - 19968: jis0208<<14 | 0x5A<<7 | 0x28,\n\t31464 - 19968: jis0212<<14 | 0x30<<7 | 0x49,\n\t31465 - 19968: jis0212<<14 | 0x30<<7 | 0x4A,\n\t31466 - 19968: jis0208<<14 | 0x22<<7 | 0x07,\n\t31467 - 19968: jis0208<<14 | 0x5A<<7 | 0x2A,\n\t31468 - 19968: jis0212<<14 | 0x30<<7 | 0x4C,\n\t31469 - 19968: jis0208<<14 | 0x42<<7 | 0x50,\n\t31471 - 19968: jis0208<<14 | 0x22<<7 | 0x1B,\n\t31472 - 19968: jis0208<<14 | 0x42<<7 | 0x51,\n\t31473 - 19968: jis0212<<14 | 0x30<<7 | 0x4D,\n\t31476 - 19968: jis0212<<14 | 0x30<<7 | 0x4E,\n\t31478 - 19968: jis0208<<14 | 0x15<<7 | 0x04,\n\t31480 - 19968: jis0208<<14 | 0x30<<7 | 0x1E,\n\t31481 - 19968: jis0208<<14 | 0x22<<7 | 0x3C,\n\t31482 - 19968: jis0208<<14 | 0x1B<<7 | 0x12,\n\t31483 - 19968: jis0212<<14 | 0x30<<7 | 0x4F,\n\t31485 - 19968: jis0212<<14 | 0x30<<7 | 0x50,\n\t31486 - 19968: jis0212<<14 | 0x30<<7 | 0x51,\n\t31487 - 19968: jis0208<<14 | 0x13<<7 | 0x27,\n\t31490 - 19968: jis0208<<14 | 0x42<<7 | 0x52,\n\t31492 - 19968: jis0208<<14 | 0x43<<7 | 0x01,\n\t31494 - 19968: jis0208<<14 | 0x42<<7 | 0x55,\n\t31495 - 19968: jis0212<<14 | 0x30<<7 | 0x52,\n\t31496 - 19968: jis0208<<14 | 0x14<<7 | 0x47,\n\t31498 - 19968: jis0208<<14 | 0x42<<7 | 0x54,\n\t31499 - 19968: jis0208<<14 | 0x43<<7 | 0x03,\n\t31503 - 19968: jis0208<<14 | 0x42<<7 | 0x53,\n\t31505 - 19968: jis0208<<14 | 0x1D<<7 | 0x2F,\n\t31508 - 19968: jis0212<<14 | 0x30<<7 | 0x53,\n\t31512 - 19968: jis0208<<14 | 0x42<<7 | 0x57,\n\t31513 - 19968: jis0208<<14 | 0x42<<7 | 0x58,\n\t31515 - 19968: jis0208<<14 | 0x24<<7 | 0x0A,\n\t31518 - 19968: jis0208<<14 | 0x42<<7 | 0x59,\n\t31519 - 19968: jis0212<<14 | 0x30<<7 | 0x54,\n\t31520 - 19968: jis0208<<14 | 0x12<<7 | 0x3D,\n\t31523 - 19968: jis0212<<14 | 0x30<<7 | 0x55,\n\t31525 - 19968: jis0208<<14 | 0x1E<<7 | 0x39,\n\t31526 - 19968: jis0208<<14 | 0x28<<7 | 0x43,\n\t31527 - 19968: jis0212<<14 | 0x30<<7 | 0x56,\n\t31528 - 19968: jis0208<<14 | 0x42<<7 | 0x5B,\n\t31529 - 19968: jis0212<<14 | 0x30<<7 | 0x57,\n\t31530 - 19968: jis0212<<14 | 0x30<<7 | 0x58,\n\t31531 - 19968: jis0212<<14 | 0x30<<7 | 0x59,\n\t31532 - 19968: jis0208<<14 | 0x21<<7 | 0x47,\n\t31533 - 19968: jis0212<<14 | 0x30<<7 | 0x5A,\n\t31534 - 19968: jis0212<<14 | 0x30<<7 | 0x5B,\n\t31535 - 19968: jis0212<<14 | 0x30<<7 | 0x5C,\n\t31536 - 19968: jis0212<<14 | 0x30<<7 | 0x5D,\n\t31537 - 19968: jis0212<<14 | 0x31<<7 | 0x00,\n\t31539 - 19968: jis0208<<14 | 0x42<<7 | 0x56,\n\t31540 - 19968: jis0212<<14 | 0x31<<7 | 0x01,\n\t31541 - 19968: jis0208<<14 | 0x42<<7 | 0x5A,\n\t31542 - 19968: jis0208<<14 | 0x42<<7 | 0x5C,\n\t31545 - 19968: jis0208<<14 | 0x19<<7 | 0x5A,\n\t31549 - 19968: jis0212<<14 | 0x31<<7 | 0x02,\n\t31551 - 19968: jis0212<<14 | 0x31<<7 | 0x03,\n\t31552 - 19968: jis0212<<14 | 0x31<<7 | 0x04,\n\t31553 - 19968: jis0212<<14 | 0x31<<7 | 0x05,\n\t31557 - 19968: jis0208<<14 | 0x43<<7 | 0x05,\n\t31558 - 19968: jis0208<<14 | 0x28<<7 | 0x0D,\n\t31559 - 19968: jis0212<<14 | 0x31<<7 | 0x06,\n\t31560 - 19968: jis0208<<14 | 0x27<<7 | 0x05,\n\t31561 - 19968: jis0208<<14 | 0x24<<7 | 0x58,\n\t31563 - 19968: jis0208<<14 | 0x15<<7 | 0x39,\n\t31564 - 19968: jis0208<<14 | 0x43<<7 | 0x04,\n\t31565 - 19968: jis0208<<14 | 0x43<<7 | 0x02,\n\t31566 - 19968: jis0212<<14 | 0x31<<7 | 0x07,\n\t31567 - 19968: jis0208<<14 | 0x27<<7 | 0x14,\n\t31568 - 19968: jis0208<<14 | 0x42<<7 | 0x5D,\n\t31569 - 19968: jis0208<<14 | 0x22<<7 | 0x3D,\n\t31570 - 19968: jis0208<<14 | 0x24<<7 | 0x5A,\n\t31572 - 19968: jis0208<<14 | 0x24<<7 | 0x59,\n\t31573 - 19968: jis0212<<14 | 0x31<<7 | 0x08,\n\t31574 - 19968: jis0208<<14 | 0x19<<7 | 0x55,\n\t31581 - 19968: jis0208<<14 | 0x43<<7 | 0x17,\n\t31584 - 19968: jis0212<<14 | 0x31<<7 | 0x09,\n\t31588 - 19968: jis0212<<14 | 0x31<<7 | 0x0A,\n\t31589 - 19968: jis0208<<14 | 0x43<<7 | 0x07,\n\t31590 - 19968: jis0212<<14 | 0x31<<7 | 0x0B,\n\t31591 - 19968: jis0208<<14 | 0x43<<7 | 0x09,\n\t31593 - 19968: jis0212<<14 | 0x31<<7 | 0x0C,\n\t31594 - 19968: jis0212<<14 | 0x31<<7 | 0x0D,\n\t31596 - 19968: jis0208<<14 | 0x43<<7 | 0x0C,\n\t31597 - 19968: jis0212<<14 | 0x31<<7 | 0x0E,\n\t31598 - 19968: jis0208<<14 | 0x43<<7 | 0x0D,\n\t31599 - 19968: jis0212<<14 | 0x31<<7 | 0x0F,\n\t31600 - 19968: jis0208<<14 | 0x43<<7 | 0x0A,\n\t31601 - 19968: jis0208<<14 | 0x43<<7 | 0x0B,\n\t31602 - 19968: jis0212<<14 | 0x31<<7 | 0x10,\n\t31603 - 19968: jis0212<<14 | 0x31<<7 | 0x11,\n\t31604 - 19968: jis0208<<14 | 0x43<<7 | 0x08,\n\t31605 - 19968: jis0208<<14 | 0x43<<7 | 0x06,\n\t31607 - 19968: jis0212<<14 | 0x31<<7 | 0x12,\n\t31610 - 19968: jis0208<<14 | 0x43<<7 | 0x00,\n\t31620 - 19968: jis0212<<14 | 0x31<<7 | 0x13,\n\t31622 - 19968: jis0208<<14 | 0x29<<7 | 0x2E,\n\t31623 - 19968: jis0208<<14 | 0x11<<7 | 0x34,\n\t31625 - 19968: jis0212<<14 | 0x31<<7 | 0x14,\n\t31627 - 19968: jis0208<<14 | 0x43<<7 | 0x14,\n\t31629 - 19968: jis0208<<14 | 0x43<<7 | 0x11,\n\t31630 - 19968: jis0212<<14 | 0x31<<7 | 0x15,\n\t31631 - 19968: jis0208<<14 | 0x43<<7 | 0x16,\n\t31632 - 19968: jis0212<<14 | 0x31<<7 | 0x16,\n\t31633 - 19968: jis0212<<14 | 0x31<<7 | 0x17,\n\t31634 - 19968: jis0208<<14 | 0x43<<7 | 0x15,\n\t31636 - 19968: jis0208<<14 | 0x26<<7 | 0x52,\n\t31637 - 19968: jis0208<<14 | 0x2B<<7 | 0x06,\n\t31638 - 19968: jis0212<<14 | 0x31<<7 | 0x18,\n\t31639 - 19968: jis0208<<14 | 0x1A<<7 | 0x1A,\n\t31640 - 19968: jis0208<<14 | 0x43<<7 | 0x0F,\n\t31641 - 19968: jis0208<<14 | 0x43<<7 | 0x18,\n\t31642 - 19968: jis0208<<14 | 0x43<<7 | 0x13,\n\t31643 - 19968: jis0212<<14 | 0x31<<7 | 0x19,\n\t31644 - 19968: jis0208<<14 | 0x43<<7 | 0x12,\n\t31645 - 19968: jis0208<<14 | 0x43<<7 | 0x0E,\n\t31646 - 19968: jis0208<<14 | 0x5A<<7 | 0x2B,\n\t31647 - 19968: jis0208<<14 | 0x43<<7 | 0x10,\n\t31648 - 19968: jis0212<<14 | 0x31<<7 | 0x1B,\n\t31649 - 19968: jis0208<<14 | 0x13<<7 | 0x28,\n\t31653 - 19968: jis0212<<14 | 0x31<<7 | 0x1C,\n\t31658 - 19968: jis0208<<14 | 0x22<<7 | 0x1C,\n\t31660 - 19968: jis0212<<14 | 0x31<<7 | 0x1D,\n\t31661 - 19968: jis0208<<14 | 0x1F<<7 | 0x5C,\n\t31663 - 19968: jis0212<<14 | 0x31<<7 | 0x1E,\n\t31664 - 19968: jis0212<<14 | 0x31<<7 | 0x1F,\n\t31665 - 19968: jis0208<<14 | 0x27<<7 | 0x01,\n\t31666 - 19968: jis0212<<14 | 0x31<<7 | 0x20,\n\t31668 - 19968: jis0208<<14 | 0x43<<7 | 0x1D,\n\t31669 - 19968: jis0212<<14 | 0x31<<7 | 0x21,\n\t31670 - 19968: jis0212<<14 | 0x31<<7 | 0x22,\n\t31672 - 19968: jis0208<<14 | 0x27<<7 | 0x03,\n\t31674 - 19968: jis0212<<14 | 0x31<<7 | 0x23,\n\t31675 - 19968: jis0212<<14 | 0x31<<7 | 0x24,\n\t31676 - 19968: jis0212<<14 | 0x31<<7 | 0x25,\n\t31677 - 19968: jis0212<<14 | 0x31<<7 | 0x26,\n\t31680 - 19968: jis0208<<14 | 0x1F<<7 | 0x40,\n\t31681 - 19968: jis0208<<14 | 0x43<<7 | 0x1A,\n\t31682 - 19968: jis0212<<14 | 0x31<<7 | 0x27,\n\t31684 - 19968: jis0208<<14 | 0x27<<7 | 0x2E,\n\t31685 - 19968: jis0212<<14 | 0x31<<7 | 0x28,\n\t31686 - 19968: jis0208<<14 | 0x43<<7 | 0x1E,\n\t31687 - 19968: jis0208<<14 | 0x29<<7 | 0x32,\n\t31688 - 19968: jis0212<<14 | 0x31<<7 | 0x29,\n\t31689 - 19968: jis0208<<14 | 0x22<<7 | 0x3A,\n\t31690 - 19968: jis0212<<14 | 0x31<<7 | 0x2A,\n\t31691 - 19968: jis0208<<14 | 0x43<<7 | 0x19,\n\t31692 - 19968: jis0208<<14 | 0x43<<7 | 0x1B,\n\t31695 - 19968: jis0208<<14 | 0x43<<7 | 0x1C,\n\t31700 - 19968: jis0212<<14 | 0x31<<7 | 0x2B,\n\t31702 - 19968: jis0212<<14 | 0x31<<7 | 0x2C,\n\t31703 - 19968: jis0212<<14 | 0x31<<7 | 0x2D,\n\t31705 - 19968: jis0212<<14 | 0x31<<7 | 0x2E,\n\t31706 - 19968: jis0212<<14 | 0x31<<7 | 0x2F,\n\t31707 - 19968: jis0212<<14 | 0x31<<7 | 0x30,\n\t31709 - 19968: jis0208<<14 | 0x43<<7 | 0x1F,\n\t31712 - 19968: jis0208<<14 | 0x1B<<7 | 0x23,\n\t31716 - 19968: jis0208<<14 | 0x25<<7 | 0x25,\n\t31717 - 19968: jis0208<<14 | 0x43<<7 | 0x24,\n\t31718 - 19968: jis0208<<14 | 0x43<<7 | 0x23,\n\t31720 - 19968: jis0212<<14 | 0x31<<7 | 0x31,\n\t31721 - 19968: jis0208<<14 | 0x43<<7 | 0x20,\n\t31722 - 19968: jis0212<<14 | 0x31<<7 | 0x32,\n\t31725 - 19968: jis0208<<14 | 0x2E<<7 | 0x15,\n\t31730 - 19968: jis0212<<14 | 0x31<<7 | 0x33,\n\t31731 - 19968: jis0208<<14 | 0x43<<7 | 0x29,\n\t31732 - 19968: jis0212<<14 | 0x31<<7 | 0x34,\n\t31733 - 19968: jis0212<<14 | 0x31<<7 | 0x35,\n\t31734 - 19968: jis0208<<14 | 0x43<<7 | 0x2D,\n\t31735 - 19968: jis0208<<14 | 0x43<<7 | 0x2A,\n\t31736 - 19968: jis0212<<14 | 0x31<<7 | 0x36,\n\t31737 - 19968: jis0212<<14 | 0x31<<7 | 0x37,\n\t31738 - 19968: jis0212<<14 | 0x31<<7 | 0x38,\n\t31740 - 19968: jis0212<<14 | 0x31<<7 | 0x39,\n\t31742 - 19968: jis0212<<14 | 0x31<<7 | 0x3A,\n\t31744 - 19968: jis0208<<14 | 0x43<<7 | 0x26,\n\t31745 - 19968: jis0212<<14 | 0x31<<7 | 0x3B,\n\t31746 - 19968: jis0212<<14 | 0x31<<7 | 0x3C,\n\t31747 - 19968: jis0212<<14 | 0x31<<7 | 0x3D,\n\t31748 - 19968: jis0212<<14 | 0x31<<7 | 0x3E,\n\t31750 - 19968: jis0212<<14 | 0x31<<7 | 0x3F,\n\t31751 - 19968: jis0208<<14 | 0x43<<7 | 0x27,\n\t31753 - 19968: jis0212<<14 | 0x31<<7 | 0x40,\n\t31755 - 19968: jis0212<<14 | 0x31<<7 | 0x41,\n\t31756 - 19968: jis0212<<14 | 0x31<<7 | 0x42,\n\t31757 - 19968: jis0208<<14 | 0x43<<7 | 0x2C,\n\t31758 - 19968: jis0212<<14 | 0x31<<7 | 0x43,\n\t31759 - 19968: jis0212<<14 | 0x31<<7 | 0x44,\n\t31761 - 19968: jis0208<<14 | 0x43<<7 | 0x21,\n\t31762 - 19968: jis0208<<14 | 0x31<<7 | 0x34,\n\t31763 - 19968: jis0208<<14 | 0x43<<7 | 0x28,\n\t31764 - 19968: jis0208<<14 | 0x43<<7 | 0x22,\n\t31767 - 19968: jis0208<<14 | 0x43<<7 | 0x2B,\n\t31769 - 19968: jis0212<<14 | 0x31<<7 | 0x45,\n\t31771 - 19968: jis0212<<14 | 0x31<<7 | 0x46,\n\t31775 - 19968: jis0208<<14 | 0x43<<7 | 0x31,\n\t31776 - 19968: jis0212<<14 | 0x31<<7 | 0x47,\n\t31777 - 19968: jis0208<<14 | 0x13<<7 | 0x29,\n\t31779 - 19968: jis0208<<14 | 0x43<<7 | 0x2E,\n\t31781 - 19968: jis0212<<14 | 0x31<<7 | 0x48,\n\t31782 - 19968: jis0212<<14 | 0x31<<7 | 0x49,\n\t31783 - 19968: jis0208<<14 | 0x43<<7 | 0x2F,\n\t31784 - 19968: jis0212<<14 | 0x31<<7 | 0x4A,\n\t31786 - 19968: jis0208<<14 | 0x43<<7 | 0x30,\n\t31787 - 19968: jis0208<<14 | 0x43<<7 | 0x33,\n\t31788 - 19968: jis0212<<14 | 0x31<<7 | 0x4B,\n\t31793 - 19968: jis0212<<14 | 0x31<<7 | 0x4C,\n\t31795 - 19968: jis0212<<14 | 0x31<<7 | 0x4D,\n\t31796 - 19968: jis0212<<14 | 0x31<<7 | 0x4E,\n\t31798 - 19968: jis0212<<14 | 0x31<<7 | 0x4F,\n\t31799 - 19968: jis0208<<14 | 0x43<<7 | 0x32,\n\t31800 - 19968: jis0208<<14 | 0x27<<7 | 0x55,\n\t31801 - 19968: jis0212<<14 | 0x31<<7 | 0x50,\n\t31802 - 19968: jis0212<<14 | 0x31<<7 | 0x51,\n\t31805 - 19968: jis0208<<14 | 0x43<<7 | 0x34,\n\t31806 - 19968: jis0208<<14 | 0x2D<<7 | 0x5B,\n\t31807 - 19968: jis0208<<14 | 0x29<<7 | 0x4C,\n\t31808 - 19968: jis0208<<14 | 0x43<<7 | 0x39,\n\t31811 - 19968: jis0208<<14 | 0x43<<7 | 0x36,\n\t31814 - 19968: jis0212<<14 | 0x31<<7 | 0x52,\n\t31818 - 19968: jis0212<<14 | 0x31<<7 | 0x53,\n\t31820 - 19968: jis0208<<14 | 0x43<<7 | 0x35,\n\t31821 - 19968: jis0208<<14 | 0x1F<<7 | 0x31,\n\t31823 - 19968: jis0208<<14 | 0x43<<7 | 0x38,\n\t31824 - 19968: jis0208<<14 | 0x43<<7 | 0x3A,\n\t31825 - 19968: jis0212<<14 | 0x31<<7 | 0x55,\n\t31826 - 19968: jis0212<<14 | 0x31<<7 | 0x56,\n\t31827 - 19968: jis0212<<14 | 0x31<<7 | 0x57,\n\t31828 - 19968: jis0208<<14 | 0x43<<7 | 0x37,\n\t31829 - 19968: jis0212<<14 | 0x31<<7 | 0x54,\n\t31830 - 19968: jis0208<<14 | 0x43<<7 | 0x3E,\n\t31832 - 19968: jis0208<<14 | 0x43<<7 | 0x3B,\n\t31833 - 19968: jis0212<<14 | 0x31<<7 | 0x58,\n\t31834 - 19968: jis0212<<14 | 0x31<<7 | 0x59,\n\t31835 - 19968: jis0212<<14 | 0x31<<7 | 0x5A,\n\t31836 - 19968: jis0212<<14 | 0x31<<7 | 0x5B,\n\t31837 - 19968: jis0212<<14 | 0x31<<7 | 0x5C,\n\t31838 - 19968: jis0212<<14 | 0x31<<7 | 0x5D,\n\t31839 - 19968: jis0208<<14 | 0x43<<7 | 0x3C,\n\t31840 - 19968: jis0208<<14 | 0x43<<7 | 0x25,\n\t31841 - 19968: jis0212<<14 | 0x32<<7 | 0x00,\n\t31843 - 19968: jis0212<<14 | 0x32<<7 | 0x01,\n\t31844 - 19968: jis0208<<14 | 0x43<<7 | 0x3D,\n\t31845 - 19968: jis0208<<14 | 0x43<<7 | 0x3F,\n\t31847 - 19968: jis0212<<14 | 0x32<<7 | 0x02,\n\t31849 - 19968: jis0212<<14 | 0x32<<7 | 0x03,\n\t31852 - 19968: jis0208<<14 | 0x43<<7 | 0x40,\n\t31853 - 19968: jis0212<<14 | 0x32<<7 | 0x04,\n\t31854 - 19968: jis0212<<14 | 0x32<<7 | 0x05,\n\t31856 - 19968: jis0212<<14 | 0x32<<7 | 0x06,\n\t31858 - 19968: jis0212<<14 | 0x32<<7 | 0x07,\n\t31859 - 19968: jis0208<<14 | 0x29<<7 | 0x25,\n\t31861 - 19968: jis0208<<14 | 0x43<<7 | 0x41,\n\t31865 - 19968: jis0212<<14 | 0x32<<7 | 0x08,\n\t31868 - 19968: jis0212<<14 | 0x32<<7 | 0x09,\n\t31869 - 19968: jis0212<<14 | 0x32<<7 | 0x0A,\n\t31870 - 19968: jis0208<<14 | 0x2B<<7 | 0x41,\n\t31873 - 19968: jis0208<<14 | 0x15<<7 | 0x2D,\n\t31874 - 19968: jis0208<<14 | 0x16<<7 | 0x08,\n\t31875 - 19968: jis0208<<14 | 0x43<<7 | 0x42,\n\t31878 - 19968: jis0212<<14 | 0x32<<7 | 0x0B,\n\t31879 - 19968: jis0212<<14 | 0x32<<7 | 0x0C,\n\t31881 - 19968: jis0208<<14 | 0x29<<7 | 0x13,\n\t31883 - 19968: jis0208<<14 | 0x1E<<7 | 0x47,\n\t31885 - 19968: jis0208<<14 | 0x2B<<7 | 0x0F,\n\t31887 - 19968: jis0212<<14 | 0x32<<7 | 0x0D,\n\t31888 - 19968: jis0208<<14 | 0x43<<7 | 0x43,\n\t31890 - 19968: jis0208<<14 | 0x2D<<7 | 0x12,\n\t31892 - 19968: jis0212<<14 | 0x32<<7 | 0x0E,\n\t31893 - 19968: jis0208<<14 | 0x26<<7 | 0x53,\n\t31895 - 19968: jis0208<<14 | 0x20<<7 | 0x25,\n\t31896 - 19968: jis0208<<14 | 0x26<<7 | 0x13,\n\t31899 - 19968: jis0208<<14 | 0x1C<<7 | 0x2C,\n\t31902 - 19968: jis0212<<14 | 0x32<<7 | 0x0F,\n\t31903 - 19968: jis0208<<14 | 0x0F<<7 | 0x1F,\n\t31904 - 19968: jis0212<<14 | 0x32<<7 | 0x10,\n\t31905 - 19968: jis0208<<14 | 0x43<<7 | 0x48,\n\t31906 - 19968: jis0208<<14 | 0x43<<7 | 0x46,\n\t31908 - 19968: jis0208<<14 | 0x43<<7 | 0x44,\n\t31909 - 19968: jis0208<<14 | 0x13<<7 | 0x00,\n\t31910 - 19968: jis0212<<14 | 0x32<<7 | 0x11,\n\t31911 - 19968: jis0208<<14 | 0x1D<<7 | 0x30,\n\t31912 - 19968: jis0208<<14 | 0x43<<7 | 0x49,\n\t31915 - 19968: jis0208<<14 | 0x43<<7 | 0x47,\n\t31917 - 19968: jis0208<<14 | 0x43<<7 | 0x45,\n\t31918 - 19968: jis0208<<14 | 0x43<<7 | 0x4D,\n\t31920 - 19968: jis0212<<14 | 0x32<<7 | 0x12,\n\t31921 - 19968: jis0208<<14 | 0x43<<7 | 0x4C,\n\t31922 - 19968: jis0208<<14 | 0x43<<7 | 0x4B,\n\t31923 - 19968: jis0208<<14 | 0x43<<7 | 0x4A,\n\t31926 - 19968: jis0212<<14 | 0x32<<7 | 0x13,\n\t31927 - 19968: jis0212<<14 | 0x32<<7 | 0x14,\n\t31929 - 19968: jis0208<<14 | 0x43<<7 | 0x4E,\n\t31930 - 19968: jis0212<<14 | 0x32<<7 | 0x15,\n\t31931 - 19968: jis0212<<14 | 0x32<<7 | 0x16,\n\t31932 - 19968: jis0212<<14 | 0x32<<7 | 0x17,\n\t31933 - 19968: jis0208<<14 | 0x43<<7 | 0x4F,\n\t31934 - 19968: jis0208<<14 | 0x1F<<7 | 0x19,\n\t31935 - 19968: jis0212<<14 | 0x32<<7 | 0x18,\n\t31936 - 19968: jis0208<<14 | 0x43<<7 | 0x50,\n\t31938 - 19968: jis0208<<14 | 0x43<<7 | 0x52,\n\t31940 - 19968: jis0212<<14 | 0x32<<7 | 0x19,\n\t31941 - 19968: jis0208<<14 | 0x43<<7 | 0x51,\n\t31943 - 19968: jis0212<<14 | 0x32<<7 | 0x1A,\n\t31944 - 19968: jis0212<<14 | 0x32<<7 | 0x1B,\n\t31945 - 19968: jis0212<<14 | 0x32<<7 | 0x1C,\n\t31946 - 19968: jis0208<<14 | 0x17<<7 | 0x31,\n\t31949 - 19968: jis0212<<14 | 0x32<<7 | 0x1D,\n\t31950 - 19968: jis0208<<14 | 0x20<<7 | 0x17,\n\t31951 - 19968: jis0212<<14 | 0x32<<7 | 0x1E,\n\t31954 - 19968: jis0208<<14 | 0x43<<7 | 0x54,\n\t31955 - 19968: jis0212<<14 | 0x32<<7 | 0x1F,\n\t31956 - 19968: jis0212<<14 | 0x32<<7 | 0x20,\n\t31957 - 19968: jis0212<<14 | 0x32<<7 | 0x21,\n\t31958 - 19968: jis0208<<14 | 0x24<<7 | 0x5B,\n\t31959 - 19968: jis0212<<14 | 0x32<<7 | 0x22,\n\t31960 - 19968: jis0208<<14 | 0x43<<7 | 0x53,\n\t31961 - 19968: jis0212<<14 | 0x32<<7 | 0x23,\n\t31962 - 19968: jis0212<<14 | 0x32<<7 | 0x24,\n\t31964 - 19968: jis0208<<14 | 0x43<<7 | 0x55,\n\t31965 - 19968: jis0212<<14 | 0x32<<7 | 0x25,\n\t31966 - 19968: jis0208<<14 | 0x29<<7 | 0x14,\n\t31967 - 19968: jis0208<<14 | 0x20<<7 | 0x4B,\n\t31968 - 19968: jis0208<<14 | 0x18<<7 | 0x26,\n\t31970 - 19968: jis0208<<14 | 0x43<<7 | 0x56,\n\t31974 - 19968: jis0212<<14 | 0x32<<7 | 0x26,\n\t31975 - 19968: jis0208<<14 | 0x2D<<7 | 0x27,\n\t31977 - 19968: jis0212<<14 | 0x32<<7 | 0x27,\n\t31979 - 19968: jis0212<<14 | 0x32<<7 | 0x28,\n\t31983 - 19968: jis0208<<14 | 0x43<<7 | 0x58,\n\t31986 - 19968: jis0208<<14 | 0x43<<7 | 0x59,\n\t31988 - 19968: jis0208<<14 | 0x43<<7 | 0x5A,\n\t31989 - 19968: jis0212<<14 | 0x32<<7 | 0x29,\n\t31990 - 19968: jis0208<<14 | 0x43<<7 | 0x5B,\n\t31992 - 19968: jis0208<<14 | 0x1A<<7 | 0x44,\n\t31994 - 19968: jis0208<<14 | 0x43<<7 | 0x5C,\n\t31995 - 19968: jis0208<<14 | 0x16<<7 | 0x2E,\n\t31998 - 19968: jis0208<<14 | 0x14<<7 | 0x49,\n\t32000 - 19968: jis0208<<14 | 0x14<<7 | 0x09,\n\t32002 - 19968: jis0208<<14 | 0x44<<7 | 0x00,\n\t32003 - 19968: jis0212<<14 | 0x32<<7 | 0x2A,\n\t32004 - 19968: jis0208<<14 | 0x2B<<7 | 0x52,\n\t32005 - 19968: jis0208<<14 | 0x18<<7 | 0x27,\n\t32006 - 19968: jis0208<<14 | 0x43<<7 | 0x5D,\n\t32007 - 19968: jis0212<<14 | 0x32<<7 | 0x2B,\n\t32008 - 19968: jis0212<<14 | 0x32<<7 | 0x2C,\n\t32009 - 19968: jis0212<<14 | 0x32<<7 | 0x2D,\n\t32010 - 19968: jis0208<<14 | 0x44<<7 | 0x03,\n\t32011 - 19968: jis0208<<14 | 0x2B<<7 | 0x45,\n\t32013 - 19968: jis0208<<14 | 0x26<<7 | 0x1B,\n\t32015 - 19968: jis0212<<14 | 0x32<<7 | 0x2E,\n\t32016 - 19968: jis0208<<14 | 0x28<<7 | 0x12,\n\t32017 - 19968: jis0212<<14 | 0x32<<7 | 0x2F,\n\t32018 - 19968: jis0212<<14 | 0x32<<7 | 0x30,\n\t32019 - 19968: jis0212<<14 | 0x32<<7 | 0x31,\n\t32020 - 19968: jis0208<<14 | 0x1C<<7 | 0x42,\n\t32021 - 19968: jis0208<<14 | 0x44<<7 | 0x02,\n\t32022 - 19968: jis0212<<14 | 0x32<<7 | 0x32,\n\t32023 - 19968: jis0208<<14 | 0x1B<<7 | 0x32,\n\t32024 - 19968: jis0208<<14 | 0x18<<7 | 0x28,\n\t32025 - 19968: jis0208<<14 | 0x1A<<7 | 0x45,\n\t32026 - 19968: jis0208<<14 | 0x14<<7 | 0x48,\n\t32027 - 19968: jis0208<<14 | 0x29<<7 | 0x15,\n\t32028 - 19968: jis0208<<14 | 0x44<<7 | 0x01,\n\t32029 - 19968: jis0212<<14 | 0x32<<7 | 0x33,\n\t32030 - 19968: jis0212<<14 | 0x32<<7 | 0x34,\n\t32032 - 19968: jis0208<<14 | 0x20<<7 | 0x26,\n\t32033 - 19968: jis0208<<14 | 0x2A<<7 | 0x21,\n\t32034 - 19968: jis0208<<14 | 0x19<<7 | 0x56,\n\t32035 - 19968: jis0212<<14 | 0x32<<7 | 0x35,\n\t32038 - 19968: jis0212<<14 | 0x32<<7 | 0x36,\n\t32042 - 19968: jis0212<<14 | 0x32<<7 | 0x37,\n\t32043 - 19968: jis0208<<14 | 0x1A<<7 | 0x46,\n\t32044 - 19968: jis0208<<14 | 0x23<<7 | 0x3C,\n\t32045 - 19968: jis0212<<14 | 0x32<<7 | 0x38,\n\t32046 - 19968: jis0208<<14 | 0x44<<7 | 0x06,\n\t32047 - 19968: jis0208<<14 | 0x2D<<7 | 0x3E,\n\t32048 - 19968: jis0208<<14 | 0x19<<7 | 0x38,\n\t32049 - 19968: jis0212<<14 | 0x32<<7 | 0x39,\n\t32050 - 19968: jis0208<<14 | 0x44<<7 | 0x07,\n\t32051 - 19968: jis0208<<14 | 0x1E<<7 | 0x21,\n\t32053 - 19968: jis0208<<14 | 0x44<<7 | 0x09,\n\t32057 - 19968: jis0208<<14 | 0x1D<<7 | 0x31,\n\t32058 - 19968: jis0208<<14 | 0x19<<7 | 0x0F,\n\t32060 - 19968: jis0212<<14 | 0x32<<7 | 0x3A,\n\t32061 - 19968: jis0212<<14 | 0x32<<7 | 0x3B,\n\t32062 - 19968: jis0212<<14 | 0x32<<7 | 0x3C,\n\t32063 - 19968: jis0208<<14 | 0x44<<7 | 0x08,\n\t32064 - 19968: jis0212<<14 | 0x32<<7 | 0x3D,\n\t32065 - 19968: jis0212<<14 | 0x32<<7 | 0x3E,\n\t32066 - 19968: jis0208<<14 | 0x1C<<7 | 0x09,\n\t32067 - 19968: jis0208<<14 | 0x17<<7 | 0x1D,\n\t32068 - 19968: jis0208<<14 | 0x20<<7 | 0x27,\n\t32069 - 19968: jis0208<<14 | 0x44<<7 | 0x04,\n\t32070 - 19968: jis0208<<14 | 0x44<<7 | 0x0A,\n\t32071 - 19968: jis0212<<14 | 0x32<<7 | 0x3F,\n\t32072 - 19968: jis0208<<14 | 0x5A<<7 | 0x2D,\n\t32075 - 19968: jis0208<<14 | 0x44<<7 | 0x05,\n\t32076 - 19968: jis0208<<14 | 0x16<<7 | 0x2F,\n\t32077 - 19968: jis0212<<14 | 0x32<<7 | 0x41,\n\t32078 - 19968: jis0208<<14 | 0x44<<7 | 0x0D,\n\t32079 - 19968: jis0208<<14 | 0x44<<7 | 0x11,\n\t32080 - 19968: jis0208<<14 | 0x16<<7 | 0x4A,\n\t32081 - 19968: jis0212<<14 | 0x32<<7 | 0x42,\n\t32083 - 19968: jis0212<<14 | 0x32<<7 | 0x43,\n\t32086 - 19968: jis0208<<14 | 0x44<<7 | 0x0C,\n\t32087 - 19968: jis0212<<14 | 0x32<<7 | 0x44,\n\t32089 - 19968: jis0212<<14 | 0x32<<7 | 0x45,\n\t32090 - 19968: jis0212<<14 | 0x32<<7 | 0x46,\n\t32091 - 19968: jis0208<<14 | 0x44<<7 | 0x15,\n\t32092 - 19968: jis0208<<14 | 0x5A<<7 | 0x2E,\n\t32093 - 19968: jis0212<<14 | 0x32<<7 | 0x48,\n\t32094 - 19968: jis0208<<14 | 0x18<<7 | 0x29,\n\t32097 - 19968: jis0208<<14 | 0x2C<<7 | 0x4C,\n\t32098 - 19968: jis0208<<14 | 0x0F<<7 | 0x1B,\n\t32099 - 19968: jis0208<<14 | 0x44<<7 | 0x12,\n\t32101 - 19968: jis0212<<14 | 0x32<<7 | 0x49,\n\t32102 - 19968: jis0208<<14 | 0x14<<7 | 0x4A,\n\t32103 - 19968: jis0212<<14 | 0x32<<7 | 0x4A,\n\t32104 - 19968: jis0208<<14 | 0x44<<7 | 0x0F,\n\t32106 - 19968: jis0212<<14 | 0x32<<7 | 0x4B,\n\t32110 - 19968: jis0208<<14 | 0x44<<7 | 0x10,\n\t32112 - 19968: jis0212<<14 | 0x32<<7 | 0x4C,\n\t32113 - 19968: jis0208<<14 | 0x24<<7 | 0x5C,\n\t32114 - 19968: jis0208<<14 | 0x44<<7 | 0x0E,\n\t32115 - 19968: jis0208<<14 | 0x44<<7 | 0x0B,\n\t32117 - 19968: jis0208<<14 | 0x12<<7 | 0x07,\n\t32118 - 19968: jis0208<<14 | 0x1F<<7 | 0x43,\n\t32120 - 19968: jis0212<<14 | 0x32<<7 | 0x4D,\n\t32121 - 19968: jis0208<<14 | 0x17<<7 | 0x07,\n\t32122 - 19968: jis0212<<14 | 0x32<<7 | 0x4E,\n\t32123 - 19968: jis0212<<14 | 0x32<<7 | 0x4F,\n\t32125 - 19968: jis0208<<14 | 0x44<<7 | 0x17,\n\t32127 - 19968: jis0212<<14 | 0x32<<7 | 0x50,\n\t32129 - 19968: jis0212<<14 | 0x32<<7 | 0x51,\n\t32130 - 19968: jis0212<<14 | 0x32<<7 | 0x52,\n\t32131 - 19968: jis0212<<14 | 0x32<<7 | 0x53,\n\t32133 - 19968: jis0212<<14 | 0x32<<7 | 0x54,\n\t32134 - 19968: jis0212<<14 | 0x32<<7 | 0x55,\n\t32136 - 19968: jis0212<<14 | 0x32<<7 | 0x56,\n\t32137 - 19968: jis0208<<14 | 0x44<<7 | 0x14,\n\t32139 - 19968: jis0212<<14 | 0x32<<7 | 0x57,\n\t32140 - 19968: jis0212<<14 | 0x32<<7 | 0x58,\n\t32141 - 19968: jis0212<<14 | 0x32<<7 | 0x59,\n\t32143 - 19968: jis0208<<14 | 0x44<<7 | 0x16,\n\t32145 - 19968: jis0212<<14 | 0x32<<7 | 0x5A,\n\t32147 - 19968: jis0208<<14 | 0x44<<7 | 0x13,\n\t32150 - 19968: jis0212<<14 | 0x32<<7 | 0x5B,\n\t32151 - 19968: jis0212<<14 | 0x32<<7 | 0x5C,\n\t32153 - 19968: jis0208<<14 | 0x16<<7 | 0x30,\n\t32154 - 19968: jis0208<<14 | 0x21<<7 | 0x12,\n\t32155 - 19968: jis0208<<14 | 0x44<<7 | 0x18,\n\t32156 - 19968: jis0208<<14 | 0x20<<7 | 0x4D,\n\t32157 - 19968: jis0212<<14 | 0x32<<7 | 0x5D,\n\t32158 - 19968: jis0212<<14 | 0x33<<7 | 0x00,\n\t32159 - 19968: jis0208<<14 | 0x44<<7 | 0x25,\n\t32160 - 19968: jis0208<<14 | 0x5A<<7 | 0x30,\n\t32162 - 19968: jis0208<<14 | 0x44<<7 | 0x21,\n\t32163 - 19968: jis0208<<14 | 0x44<<7 | 0x1B,\n\t32166 - 19968: jis0212<<14 | 0x33<<7 | 0x01,\n\t32167 - 19968: jis0212<<14 | 0x33<<7 | 0x02,\n\t32170 - 19968: jis0212<<14 | 0x33<<7 | 0x03,\n\t32171 - 19968: jis0208<<14 | 0x44<<7 | 0x1F,\n\t32172 - 19968: jis0208<<14 | 0x1B<<7 | 0x59,\n\t32173 - 19968: jis0208<<14 | 0x0F<<7 | 0x3C,\n\t32174 - 19968: jis0208<<14 | 0x44<<7 | 0x1A,\n\t32175 - 19968: jis0208<<14 | 0x44<<7 | 0x22,\n\t32176 - 19968: jis0208<<14 | 0x44<<7 | 0x26,\n\t32177 - 19968: jis0208<<14 | 0x18<<7 | 0x2A,\n\t32178 - 19968: jis0208<<14 | 0x2B<<7 | 0x35,\n\t32179 - 19968: jis0212<<14 | 0x33<<7 | 0x04,\n\t32180 - 19968: jis0208<<14 | 0x23<<7 | 0x35,\n\t32181 - 19968: jis0208<<14 | 0x44<<7 | 0x1C,\n\t32182 - 19968: jis0212<<14 | 0x33<<7 | 0x05,\n\t32183 - 19968: jis0208<<14 | 0x5A<<7 | 0x2F,\n\t32184 - 19968: jis0208<<14 | 0x44<<7 | 0x24,\n\t32185 - 19968: jis0212<<14 | 0x33<<7 | 0x07,\n\t32186 - 19968: jis0208<<14 | 0x44<<7 | 0x19,\n\t32187 - 19968: jis0208<<14 | 0x22<<7 | 0x1D,\n\t32189 - 19968: jis0208<<14 | 0x44<<7 | 0x1E,\n\t32190 - 19968: jis0208<<14 | 0x0F<<7 | 0x1C,\n\t32191 - 19968: jis0208<<14 | 0x2B<<7 | 0x29,\n\t32194 - 19968: jis0212<<14 | 0x33<<7 | 0x08,\n\t32195 - 19968: jis0212<<14 | 0x33<<7 | 0x09,\n\t32196 - 19968: jis0212<<14 | 0x33<<7 | 0x0A,\n\t32197 - 19968: jis0212<<14 | 0x33<<7 | 0x0B,\n\t32198 - 19968: jis0212<<14 | 0x33<<7 | 0x0C,\n\t32199 - 19968: jis0208<<14 | 0x44<<7 | 0x1D,\n\t32202 - 19968: jis0208<<14 | 0x15<<7 | 0x3A,\n\t32203 - 19968: jis0208<<14 | 0x27<<7 | 0x4B,\n\t32204 - 19968: jis0212<<14 | 0x33<<7 | 0x0D,\n\t32205 - 19968: jis0212<<14 | 0x33<<7 | 0x0E,\n\t32206 - 19968: jis0212<<14 | 0x33<<7 | 0x0F,\n\t32207 - 19968: jis0208<<14 | 0x20<<7 | 0x4C,\n\t32209 - 19968: jis0208<<14 | 0x2D<<7 | 0x2F,\n\t32210 - 19968: jis0208<<14 | 0x1C<<7 | 0x4E,\n\t32213 - 19968: jis0208<<14 | 0x44<<7 | 0x4D,\n\t32214 - 19968: jis0208<<14 | 0x5A<<7 | 0x31,\n\t32215 - 19968: jis0212<<14 | 0x33<<7 | 0x10,\n\t32216 - 19968: jis0208<<14 | 0x44<<7 | 0x27,\n\t32217 - 19968: jis0212<<14 | 0x33<<7 | 0x11,\n\t32218 - 19968: jis0208<<14 | 0x1F<<7 | 0x5D,\n\t32220 - 19968: jis0208<<14 | 0x44<<7 | 0x23,\n\t32221 - 19968: jis0208<<14 | 0x44<<7 | 0x28,\n\t32222 - 19968: jis0208<<14 | 0x44<<7 | 0x2A,\n\t32224 - 19968: jis0208<<14 | 0x23<<7 | 0x58,\n\t32225 - 19968: jis0208<<14 | 0x44<<7 | 0x2D,\n\t32226 - 19968: jis0212<<14 | 0x33<<7 | 0x13,\n\t32228 - 19968: jis0208<<14 | 0x44<<7 | 0x29,\n\t32229 - 19968: jis0212<<14 | 0x33<<7 | 0x14,\n\t32230 - 19968: jis0212<<14 | 0x33<<7 | 0x15,\n\t32232 - 19968: jis0208<<14 | 0x29<<7 | 0x33,\n\t32233 - 19968: jis0208<<14 | 0x13<<7 | 0x2A,\n\t32234 - 19968: jis0212<<14 | 0x33<<7 | 0x16,\n\t32235 - 19968: jis0212<<14 | 0x33<<7 | 0x17,\n\t32236 - 19968: jis0208<<14 | 0x2B<<7 | 0x2A,\n\t32237 - 19968: jis0212<<14 | 0x33<<7 | 0x18,\n\t32239 - 19968: jis0208<<14 | 0x0F<<7 | 0x3D,\n\t32241 - 19968: jis0212<<14 | 0x33<<7 | 0x19,\n\t32242 - 19968: jis0208<<14 | 0x44<<7 | 0x2C,\n\t32244 - 19968: jis0208<<14 | 0x2D<<7 | 0x5C,\n\t32245 - 19968: jis0212<<14 | 0x33<<7 | 0x1A,\n\t32246 - 19968: jis0212<<14 | 0x33<<7 | 0x1B,\n\t32249 - 19968: jis0212<<14 | 0x33<<7 | 0x1C,\n\t32250 - 19968: jis0212<<14 | 0x33<<7 | 0x1D,\n\t32251 - 19968: jis0208<<14 | 0x44<<7 | 0x2B,\n\t32256 - 19968: jis0212<<14 | 0x33<<7 | 0x12,\n\t32257 - 19968: jis0208<<14 | 0x10<<7 | 0x4E,\n\t32260 - 19968: jis0208<<14 | 0x25<<7 | 0x4B,\n\t32261 - 19968: jis0208<<14 | 0x44<<7 | 0x2E,\n\t32264 - 19968: jis0212<<14 | 0x33<<7 | 0x1E,\n\t32265 - 19968: jis0208<<14 | 0x44<<7 | 0x35,\n\t32266 - 19968: jis0208<<14 | 0x44<<7 | 0x2F,\n\t32267 - 19968: jis0208<<14 | 0x44<<7 | 0x36,\n\t32272 - 19968: jis0212<<14 | 0x33<<7 | 0x1F,\n\t32273 - 19968: jis0212<<14 | 0x33<<7 | 0x20,\n\t32274 - 19968: jis0208<<14 | 0x44<<7 | 0x32,\n\t32277 - 19968: jis0212<<14 | 0x33<<7 | 0x21,\n\t32279 - 19968: jis0212<<14 | 0x33<<7 | 0x22,\n\t32283 - 19968: jis0208<<14 | 0x26<<7 | 0x5A,\n\t32284 - 19968: jis0212<<14 | 0x33<<7 | 0x23,\n\t32285 - 19968: jis0212<<14 | 0x33<<7 | 0x24,\n\t32286 - 19968: jis0208<<14 | 0x1B<<7 | 0x29,\n\t32287 - 19968: jis0208<<14 | 0x44<<7 | 0x34,\n\t32288 - 19968: jis0212<<14 | 0x33<<7 | 0x25,\n\t32289 - 19968: jis0208<<14 | 0x44<<7 | 0x31,\n\t32290 - 19968: jis0208<<14 | 0x44<<7 | 0x37,\n\t32291 - 19968: jis0208<<14 | 0x44<<7 | 0x30,\n\t32294 - 19968: jis0208<<14 | 0x1C<<7 | 0x23,\n\t32295 - 19968: jis0212<<14 | 0x33<<7 | 0x26,\n\t32296 - 19968: jis0212<<14 | 0x33<<7 | 0x27,\n\t32299 - 19968: jis0208<<14 | 0x2A<<7 | 0x04,\n\t32300 - 19968: jis0212<<14 | 0x33<<7 | 0x28,\n\t32301 - 19968: jis0212<<14 | 0x33<<7 | 0x29,\n\t32302 - 19968: jis0208<<14 | 0x1C<<7 | 0x2B,\n\t32303 - 19968: jis0212<<14 | 0x33<<7 | 0x2A,\n\t32305 - 19968: jis0208<<14 | 0x44<<7 | 0x33,\n\t32306 - 19968: jis0208<<14 | 0x44<<7 | 0x3F,\n\t32307 - 19968: jis0212<<14 | 0x33<<7 | 0x2B,\n\t32309 - 19968: jis0208<<14 | 0x44<<7 | 0x3B,\n\t32310 - 19968: jis0212<<14 | 0x33<<7 | 0x2C,\n\t32311 - 19968: jis0208<<14 | 0x44<<7 | 0x3E,\n\t32313 - 19968: jis0208<<14 | 0x44<<7 | 0x3C,\n\t32314 - 19968: jis0208<<14 | 0x44<<7 | 0x40,\n\t32315 - 19968: jis0208<<14 | 0x44<<7 | 0x3A,\n\t32317 - 19968: jis0208<<14 | 0x44<<7 | 0x20,\n\t32318 - 19968: jis0208<<14 | 0x1F<<7 | 0x32,\n\t32319 - 19968: jis0212<<14 | 0x33<<7 | 0x2D,\n\t32321 - 19968: jis0208<<14 | 0x27<<7 | 0x2A,\n\t32323 - 19968: jis0208<<14 | 0x44<<7 | 0x3D,\n\t32324 - 19968: jis0212<<14 | 0x33<<7 | 0x2E,\n\t32325 - 19968: jis0212<<14 | 0x33<<7 | 0x2F,\n\t32326 - 19968: jis0208<<14 | 0x44<<7 | 0x38,\n\t32327 - 19968: jis0212<<14 | 0x33<<7 | 0x30,\n\t32330 - 19968: jis0208<<14 | 0x20<<7 | 0x00,\n\t32331 - 19968: jis0208<<14 | 0x16<<7 | 0x31,\n\t32333 - 19968: jis0208<<14 | 0x1C<<7 | 0x0A,\n\t32334 - 19968: jis0212<<14 | 0x33<<7 | 0x31,\n\t32336 - 19968: jis0212<<14 | 0x33<<7 | 0x32,\n\t32338 - 19968: jis0208<<14 | 0x5A<<7 | 0x32,\n\t32340 - 19968: jis0208<<14 | 0x1E<<7 | 0x04,\n\t32341 - 19968: jis0208<<14 | 0x20<<7 | 0x15,\n\t32342 - 19968: jis0208<<14 | 0x44<<7 | 0x43,\n\t32344 - 19968: jis0212<<14 | 0x33<<7 | 0x34,\n\t32345 - 19968: jis0208<<14 | 0x44<<7 | 0x45,\n\t32346 - 19968: jis0208<<14 | 0x44<<7 | 0x46,\n\t32349 - 19968: jis0208<<14 | 0x44<<7 | 0x42,\n\t32350 - 19968: jis0208<<14 | 0x44<<7 | 0x44,\n\t32351 - 19968: jis0212<<14 | 0x33<<7 | 0x35,\n\t32353 - 19968: jis0212<<14 | 0x33<<7 | 0x36,\n\t32354 - 19968: jis0212<<14 | 0x33<<7 | 0x37,\n\t32357 - 19968: jis0212<<14 | 0x33<<7 | 0x38,\n\t32358 - 19968: jis0208<<14 | 0x44<<7 | 0x39,\n\t32359 - 19968: jis0208<<14 | 0x44<<7 | 0x41,\n\t32361 - 19968: jis0208<<14 | 0x44<<7 | 0x49,\n\t32362 - 19968: jis0208<<14 | 0x44<<7 | 0x48,\n\t32363 - 19968: jis0212<<14 | 0x33<<7 | 0x39,\n\t32365 - 19968: jis0208<<14 | 0x2A<<7 | 0x59,\n\t32366 - 19968: jis0212<<14 | 0x33<<7 | 0x3A,\n\t32367 - 19968: jis0212<<14 | 0x33<<7 | 0x3B,\n\t32368 - 19968: jis0208<<14 | 0x16<<7 | 0x0A,\n\t32371 - 19968: jis0212<<14 | 0x33<<7 | 0x3C,\n\t32376 - 19968: jis0212<<14 | 0x33<<7 | 0x3D,\n\t32377 - 19968: jis0208<<14 | 0x44<<7 | 0x47,\n\t32379 - 19968: jis0208<<14 | 0x44<<7 | 0x4B,\n\t32380 - 19968: jis0208<<14 | 0x44<<7 | 0x4A,\n\t32381 - 19968: jis0208<<14 | 0x44<<7 | 0x4E,\n\t32382 - 19968: jis0212<<14 | 0x33<<7 | 0x3E,\n\t32383 - 19968: jis0208<<14 | 0x44<<7 | 0x50,\n\t32385 - 19968: jis0212<<14 | 0x33<<7 | 0x3F,\n\t32386 - 19968: jis0208<<14 | 0x1A<<7 | 0x1B,\n\t32387 - 19968: jis0208<<14 | 0x44<<7 | 0x4C,\n\t32390 - 19968: jis0212<<14 | 0x33<<7 | 0x40,\n\t32391 - 19968: jis0212<<14 | 0x33<<7 | 0x41,\n\t32392 - 19968: jis0208<<14 | 0x44<<7 | 0x51,\n\t32393 - 19968: jis0208<<14 | 0x44<<7 | 0x52,\n\t32394 - 19968: jis0208<<14 | 0x58<<7 | 0x00,\n\t32396 - 19968: jis0208<<14 | 0x44<<7 | 0x53,\n\t32397 - 19968: jis0212<<14 | 0x33<<7 | 0x43,\n\t32398 - 19968: jis0208<<14 | 0x44<<7 | 0x59,\n\t32399 - 19968: jis0208<<14 | 0x24<<7 | 0x1A,\n\t32400 - 19968: jis0208<<14 | 0x44<<7 | 0x55,\n\t32401 - 19968: jis0212<<14 | 0x33<<7 | 0x44,\n\t32402 - 19968: jis0208<<14 | 0x44<<7 | 0x54,\n\t32403 - 19968: jis0208<<14 | 0x44<<7 | 0x56,\n\t32404 - 19968: jis0208<<14 | 0x44<<7 | 0x57,\n\t32405 - 19968: jis0212<<14 | 0x33<<7 | 0x45,\n\t32406 - 19968: jis0208<<14 | 0x44<<7 | 0x58,\n\t32408 - 19968: jis0212<<14 | 0x33<<7 | 0x46,\n\t32410 - 19968: jis0212<<14 | 0x33<<7 | 0x47,\n\t32411 - 19968: jis0208<<14 | 0x44<<7 | 0x5A,\n\t32412 - 19968: jis0208<<14 | 0x44<<7 | 0x5B,\n\t32413 - 19968: jis0212<<14 | 0x33<<7 | 0x48,\n\t32414 - 19968: jis0212<<14 | 0x33<<7 | 0x49,\n\t32566 - 19968: jis0208<<14 | 0x13<<7 | 0x2B,\n\t32568 - 19968: jis0208<<14 | 0x44<<7 | 0x5C,\n\t32570 - 19968: jis0208<<14 | 0x44<<7 | 0x5D,\n\t32571 - 19968: jis0212<<14 | 0x33<<7 | 0x4B,\n\t32572 - 19968: jis0212<<14 | 0x33<<7 | 0x4A,\n\t32573 - 19968: jis0212<<14 | 0x33<<7 | 0x4C,\n\t32574 - 19968: jis0212<<14 | 0x33<<7 | 0x4D,\n\t32575 - 19968: jis0212<<14 | 0x33<<7 | 0x4E,\n\t32579 - 19968: jis0212<<14 | 0x33<<7 | 0x4F,\n\t32580 - 19968: jis0212<<14 | 0x33<<7 | 0x50,\n\t32581 - 19968: jis0208<<14 | 0x45<<7 | 0x00,\n\t32583 - 19968: jis0208<<14 | 0x5A<<7 | 0x33,\n\t32588 - 19968: jis0208<<14 | 0x45<<7 | 0x01,\n\t32589 - 19968: jis0208<<14 | 0x45<<7 | 0x02,\n\t32590 - 19968: jis0208<<14 | 0x45<<7 | 0x03,\n\t32591 - 19968: jis0212<<14 | 0x33<<7 | 0x52,\n\t32592 - 19968: jis0208<<14 | 0x45<<7 | 0x04,\n\t32593 - 19968: jis0208<<14 | 0x45<<7 | 0x05,\n\t32594 - 19968: jis0212<<14 | 0x33<<7 | 0x53,\n\t32595 - 19968: jis0212<<14 | 0x33<<7 | 0x54,\n\t32596 - 19968: jis0208<<14 | 0x45<<7 | 0x07,\n\t32597 - 19968: jis0208<<14 | 0x45<<7 | 0x06,\n\t32600 - 19968: jis0208<<14 | 0x45<<7 | 0x08,\n\t32603 - 19968: jis0212<<14 | 0x33<<7 | 0x55,\n\t32604 - 19968: jis0212<<14 | 0x33<<7 | 0x56,\n\t32605 - 19968: jis0212<<14 | 0x33<<7 | 0x57,\n\t32607 - 19968: jis0208<<14 | 0x45<<7 | 0x09,\n\t32608 - 19968: jis0208<<14 | 0x45<<7 | 0x0A,\n\t32609 - 19968: jis0212<<14 | 0x33<<7 | 0x58,\n\t32611 - 19968: jis0212<<14 | 0x33<<7 | 0x59,\n\t32612 - 19968: jis0212<<14 | 0x33<<7 | 0x5A,\n\t32613 - 19968: jis0212<<14 | 0x33<<7 | 0x5B,\n\t32614 - 19968: jis0212<<14 | 0x33<<7 | 0x5C,\n\t32615 - 19968: jis0208<<14 | 0x45<<7 | 0x0D,\n\t32616 - 19968: jis0208<<14 | 0x45<<7 | 0x0B,\n\t32617 - 19968: jis0208<<14 | 0x45<<7 | 0x0C,\n\t32618 - 19968: jis0208<<14 | 0x19<<7 | 0x40,\n\t32619 - 19968: jis0208<<14 | 0x16<<7 | 0x32,\n\t32621 - 19968: jis0212<<14 | 0x33<<7 | 0x5D,\n\t32622 - 19968: jis0208<<14 | 0x22<<7 | 0x35,\n\t32624 - 19968: jis0208<<14 | 0x27<<7 | 0x12,\n\t32625 - 19968: jis0212<<14 | 0x34<<7 | 0x00,\n\t32626 - 19968: jis0208<<14 | 0x1C<<7 | 0x4F,\n\t32629 - 19968: jis0208<<14 | 0x26<<7 | 0x2C,\n\t32631 - 19968: jis0208<<14 | 0x27<<7 | 0x4C,\n\t32632 - 19968: jis0208<<14 | 0x45<<7 | 0x0E,\n\t32633 - 19968: jis0208<<14 | 0x37<<7 | 0x4C,\n\t32637 - 19968: jis0212<<14 | 0x34<<7 | 0x01,\n\t32638 - 19968: jis0212<<14 | 0x34<<7 | 0x02,\n\t32639 - 19968: jis0212<<14 | 0x34<<7 | 0x03,\n\t32640 - 19968: jis0212<<14 | 0x34<<7 | 0x04,\n\t32642 - 19968: jis0208<<14 | 0x45<<7 | 0x0F,\n\t32643 - 19968: jis0208<<14 | 0x45<<7 | 0x11,\n\t32645 - 19968: jis0208<<14 | 0x2C<<7 | 0x44,\n\t32646 - 19968: jis0208<<14 | 0x45<<7 | 0x10,\n\t32647 - 19968: jis0208<<14 | 0x45<<7 | 0x13,\n\t32648 - 19968: jis0208<<14 | 0x45<<7 | 0x12,\n\t32650 - 19968: jis0208<<14 | 0x2C<<7 | 0x32,\n\t32651 - 19968: jis0212<<14 | 0x34<<7 | 0x05,\n\t32652 - 19968: jis0208<<14 | 0x45<<7 | 0x14,\n\t32653 - 19968: jis0212<<14 | 0x34<<7 | 0x06,\n\t32654 - 19968: jis0208<<14 | 0x27<<7 | 0x5D,\n\t32655 - 19968: jis0212<<14 | 0x34<<7 | 0x07,\n\t32656 - 19968: jis0212<<14 | 0x34<<7 | 0x08,\n\t32657 - 19968: jis0212<<14 | 0x34<<7 | 0x09,\n\t32660 - 19968: jis0208<<14 | 0x45<<7 | 0x15,\n\t32662 - 19968: jis0212<<14 | 0x34<<7 | 0x0A,\n\t32663 - 19968: jis0212<<14 | 0x34<<7 | 0x0B,\n\t32666 - 19968: jis0208<<14 | 0x45<<7 | 0x18,\n\t32668 - 19968: jis0212<<14 | 0x34<<7 | 0x0C,\n\t32669 - 19968: jis0208<<14 | 0x45<<7 | 0x17,\n\t32670 - 19968: jis0208<<14 | 0x45<<7 | 0x16,\n\t32673 - 19968: jis0208<<14 | 0x5A<<7 | 0x34,\n\t32674 - 19968: jis0212<<14 | 0x34<<7 | 0x0E,\n\t32675 - 19968: jis0208<<14 | 0x45<<7 | 0x19,\n\t32676 - 19968: jis0208<<14 | 0x16<<7 | 0x11,\n\t32678 - 19968: jis0212<<14 | 0x34<<7 | 0x0F,\n\t32680 - 19968: jis0208<<14 | 0x20<<7 | 0x01,\n\t32681 - 19968: jis0208<<14 | 0x14<<7 | 0x20,\n\t32682 - 19968: jis0212<<14 | 0x34<<7 | 0x10,\n\t32685 - 19968: jis0212<<14 | 0x34<<7 | 0x11,\n\t32686 - 19968: jis0208<<14 | 0x45<<7 | 0x1D,\n\t32687 - 19968: jis0208<<14 | 0x45<<7 | 0x1A,\n\t32690 - 19968: jis0208<<14 | 0x45<<7 | 0x1B,\n\t32692 - 19968: jis0212<<14 | 0x34<<7 | 0x12,\n\t32694 - 19968: jis0208<<14 | 0x45<<7 | 0x1E,\n\t32696 - 19968: jis0208<<14 | 0x45<<7 | 0x1F,\n\t32697 - 19968: jis0208<<14 | 0x45<<7 | 0x1C,\n\t32700 - 19968: jis0212<<14 | 0x34<<7 | 0x13,\n\t32701 - 19968: jis0208<<14 | 0x10<<7 | 0x08,\n\t32703 - 19968: jis0212<<14 | 0x34<<7 | 0x14,\n\t32704 - 19968: jis0212<<14 | 0x34<<7 | 0x15,\n\t32705 - 19968: jis0208<<14 | 0x11<<7 | 0x06,\n\t32707 - 19968: jis0212<<14 | 0x34<<7 | 0x16,\n\t32709 - 19968: jis0208<<14 | 0x45<<7 | 0x21,\n\t32710 - 19968: jis0208<<14 | 0x45<<7 | 0x22,\n\t32712 - 19968: jis0212<<14 | 0x34<<7 | 0x17,\n\t32714 - 19968: jis0208<<14 | 0x45<<7 | 0x23,\n\t32716 - 19968: jis0208<<14 | 0x2C<<7 | 0x41,\n\t32718 - 19968: jis0212<<14 | 0x34<<7 | 0x18,\n\t32719 - 19968: jis0212<<14 | 0x34<<7 | 0x19,\n\t32722 - 19968: jis0208<<14 | 0x1C<<7 | 0x0B,\n\t32724 - 19968: jis0208<<14 | 0x45<<7 | 0x25,\n\t32725 - 19968: jis0208<<14 | 0x45<<7 | 0x24,\n\t32731 - 19968: jis0212<<14 | 0x34<<7 | 0x1A,\n\t32735 - 19968: jis0212<<14 | 0x34<<7 | 0x1B,\n\t32736 - 19968: jis0208<<14 | 0x1E<<7 | 0x48,\n\t32737 - 19968: jis0208<<14 | 0x45<<7 | 0x26,\n\t32739 - 19968: jis0212<<14 | 0x34<<7 | 0x1C,\n\t32741 - 19968: jis0212<<14 | 0x34<<7 | 0x1D,\n\t32742 - 19968: jis0208<<14 | 0x45<<7 | 0x27,\n\t32744 - 19968: jis0212<<14 | 0x34<<7 | 0x1E,\n\t32745 - 19968: jis0208<<14 | 0x45<<7 | 0x28,\n\t32747 - 19968: jis0208<<14 | 0x13<<7 | 0x44,\n\t32748 - 19968: jis0212<<14 | 0x34<<7 | 0x1F,\n\t32750 - 19968: jis0212<<14 | 0x34<<7 | 0x20,\n\t32751 - 19968: jis0212<<14 | 0x34<<7 | 0x21,\n\t32752 - 19968: jis0208<<14 | 0x13<<7 | 0x2C,\n\t32754 - 19968: jis0212<<14 | 0x34<<7 | 0x22,\n\t32755 - 19968: jis0208<<14 | 0x45<<7 | 0x29,\n\t32761 - 19968: jis0208<<14 | 0x45<<7 | 0x2A,\n\t32762 - 19968: jis0212<<14 | 0x34<<7 | 0x23,\n\t32763 - 19968: jis0208<<14 | 0x2A<<7 | 0x3C,\n\t32764 - 19968: jis0208<<14 | 0x2C<<7 | 0x42,\n\t32765 - 19968: jis0212<<14 | 0x34<<7 | 0x24,\n\t32766 - 19968: jis0212<<14 | 0x34<<7 | 0x25,\n\t32767 - 19968: jis0212<<14 | 0x34<<7 | 0x26,\n\t32768 - 19968: jis0208<<14 | 0x2C<<7 | 0x33,\n\t32769 - 19968: jis0208<<14 | 0x2E<<7 | 0x16,\n\t32771 - 19968: jis0208<<14 | 0x18<<7 | 0x2C,\n\t32772 - 19968: jis0208<<14 | 0x45<<7 | 0x2D,\n\t32773 - 19968: jis0208<<14 | 0x1B<<7 | 0x33,\n\t32774 - 19968: jis0208<<14 | 0x45<<7 | 0x2C,\n\t32775 - 19968: jis0212<<14 | 0x34<<7 | 0x27,\n\t32776 - 19968: jis0212<<14 | 0x34<<7 | 0x28,\n\t32778 - 19968: jis0212<<14 | 0x34<<7 | 0x29,\n\t32779 - 19968: jis0208<<14 | 0x45<<7 | 0x2E,\n\t32780 - 19968: jis0208<<14 | 0x1B<<7 | 0x08,\n\t32781 - 19968: jis0212<<14 | 0x34<<7 | 0x2A,\n\t32782 - 19968: jis0212<<14 | 0x34<<7 | 0x2B,\n\t32783 - 19968: jis0212<<14 | 0x34<<7 | 0x2C,\n\t32784 - 19968: jis0208<<14 | 0x21<<7 | 0x30,\n\t32785 - 19968: jis0212<<14 | 0x34<<7 | 0x2D,\n\t32786 - 19968: jis0208<<14 | 0x45<<7 | 0x2F,\n\t32787 - 19968: jis0212<<14 | 0x34<<7 | 0x2E,\n\t32788 - 19968: jis0212<<14 | 0x34<<7 | 0x2F,\n\t32789 - 19968: jis0208<<14 | 0x18<<7 | 0x2B,\n\t32790 - 19968: jis0212<<14 | 0x34<<7 | 0x30,\n\t32791 - 19968: jis0208<<14 | 0x2B<<7 | 0x36,\n\t32792 - 19968: jis0208<<14 | 0x45<<7 | 0x30,\n\t32793 - 19968: jis0208<<14 | 0x45<<7 | 0x31,\n\t32796 - 19968: jis0208<<14 | 0x45<<7 | 0x32,\n\t32797 - 19968: jis0212<<14 | 0x34<<7 | 0x31,\n\t32798 - 19968: jis0212<<14 | 0x34<<7 | 0x32,\n\t32799 - 19968: jis0212<<14 | 0x34<<7 | 0x33,\n\t32800 - 19968: jis0212<<14 | 0x34<<7 | 0x34,\n\t32801 - 19968: jis0208<<14 | 0x45<<7 | 0x33,\n\t32804 - 19968: jis0212<<14 | 0x34<<7 | 0x35,\n\t32806 - 19968: jis0212<<14 | 0x34<<7 | 0x36,\n\t32808 - 19968: jis0208<<14 | 0x45<<7 | 0x34,\n\t32812 - 19968: jis0212<<14 | 0x34<<7 | 0x37,\n\t32814 - 19968: jis0212<<14 | 0x34<<7 | 0x38,\n\t32816 - 19968: jis0212<<14 | 0x34<<7 | 0x39,\n\t32819 - 19968: jis0208<<14 | 0x1B<<7 | 0x09,\n\t32820 - 19968: jis0212<<14 | 0x34<<7 | 0x3A,\n\t32821 - 19968: jis0212<<14 | 0x34<<7 | 0x3B,\n\t32822 - 19968: jis0208<<14 | 0x2B<<7 | 0x4C,\n\t32823 - 19968: jis0212<<14 | 0x34<<7 | 0x3C,\n\t32825 - 19968: jis0212<<14 | 0x34<<7 | 0x3D,\n\t32826 - 19968: jis0212<<14 | 0x34<<7 | 0x3E,\n\t32827 - 19968: jis0208<<14 | 0x45<<7 | 0x36,\n\t32828 - 19968: jis0212<<14 | 0x34<<7 | 0x3F,\n\t32829 - 19968: jis0208<<14 | 0x22<<7 | 0x1E,\n\t32830 - 19968: jis0212<<14 | 0x34<<7 | 0x40,\n\t32831 - 19968: jis0208<<14 | 0x45<<7 | 0x35,\n\t32832 - 19968: jis0212<<14 | 0x34<<7 | 0x41,\n\t32836 - 19968: jis0212<<14 | 0x34<<7 | 0x42,\n\t32838 - 19968: jis0208<<14 | 0x45<<7 | 0x38,\n\t32842 - 19968: jis0208<<14 | 0x45<<7 | 0x37,\n\t32850 - 19968: jis0208<<14 | 0x45<<7 | 0x39,\n\t32854 - 19968: jis0208<<14 | 0x1F<<7 | 0x1A,\n\t32856 - 19968: jis0208<<14 | 0x45<<7 | 0x3A,\n\t32858 - 19968: jis0208<<14 | 0x45<<7 | 0x3B,\n\t32862 - 19968: jis0208<<14 | 0x29<<7 | 0x18,\n\t32863 - 19968: jis0208<<14 | 0x45<<7 | 0x3C,\n\t32864 - 19968: jis0212<<14 | 0x34<<7 | 0x43,\n\t32865 - 19968: jis0208<<14 | 0x20<<7 | 0x4E,\n\t32866 - 19968: jis0208<<14 | 0x45<<7 | 0x3D,\n\t32868 - 19968: jis0212<<14 | 0x34<<7 | 0x44,\n\t32870 - 19968: jis0212<<14 | 0x34<<7 | 0x45,\n\t32872 - 19968: jis0208<<14 | 0x45<<7 | 0x3E,\n\t32877 - 19968: jis0212<<14 | 0x34<<7 | 0x46,\n\t32879 - 19968: jis0208<<14 | 0x2D<<7 | 0x5D,\n\t32880 - 19968: jis0208<<14 | 0x45<<7 | 0x41,\n\t32881 - 19968: jis0212<<14 | 0x34<<7 | 0x47,\n\t32882 - 19968: jis0208<<14 | 0x45<<7 | 0x40,\n\t32883 - 19968: jis0208<<14 | 0x45<<7 | 0x3F,\n\t32884 - 19968: jis0208<<14 | 0x23<<7 | 0x0F,\n\t32885 - 19968: jis0212<<14 | 0x34<<7 | 0x48,\n\t32886 - 19968: jis0208<<14 | 0x45<<7 | 0x42,\n\t32887 - 19968: jis0208<<14 | 0x1E<<7 | 0x05,\n\t32889 - 19968: jis0208<<14 | 0x45<<7 | 0x43,\n\t32893 - 19968: jis0208<<14 | 0x45<<7 | 0x44,\n\t32894 - 19968: jis0208<<14 | 0x2E<<7 | 0x17,\n\t32895 - 19968: jis0208<<14 | 0x45<<7 | 0x45,\n\t32897 - 19968: jis0212<<14 | 0x34<<7 | 0x49,\n\t32900 - 19968: jis0208<<14 | 0x45<<7 | 0x46,\n\t32901 - 19968: jis0208<<14 | 0x45<<7 | 0x48,\n\t32902 - 19968: jis0208<<14 | 0x45<<7 | 0x47,\n\t32903 - 19968: jis0208<<14 | 0x27<<7 | 0x04,\n\t32904 - 19968: jis0212<<14 | 0x34<<7 | 0x4A,\n\t32905 - 19968: jis0208<<14 | 0x25<<7 | 0x58,\n\t32907 - 19968: jis0208<<14 | 0x2E<<7 | 0x1D,\n\t32908 - 19968: jis0208<<14 | 0x27<<7 | 0x08,\n\t32910 - 19968: jis0212<<14 | 0x34<<7 | 0x4B,\n\t32915 - 19968: jis0208<<14 | 0x45<<7 | 0x4A,\n\t32918 - 19968: jis0208<<14 | 0x1D<<7 | 0x32,\n\t32920 - 19968: jis0208<<14 | 0x28<<7 | 0x09,\n\t32922 - 19968: jis0208<<14 | 0x45<<7 | 0x4B,\n\t32923 - 19968: jis0208<<14 | 0x45<<7 | 0x49,\n\t32924 - 19968: jis0212<<14 | 0x34<<7 | 0x4C,\n\t32925 - 19968: jis0208<<14 | 0x13<<7 | 0x2D,\n\t32926 - 19968: jis0212<<14 | 0x34<<7 | 0x4D,\n\t32929 - 19968: jis0208<<14 | 0x17<<7 | 0x33,\n\t32930 - 19968: jis0208<<14 | 0x1A<<7 | 0x47,\n\t32933 - 19968: jis0208<<14 | 0x27<<7 | 0x4D,\n\t32934 - 19968: jis0212<<14 | 0x34<<7 | 0x4E,\n\t32935 - 19968: jis0212<<14 | 0x34<<7 | 0x4F,\n\t32937 - 19968: jis0208<<14 | 0x17<<7 | 0x09,\n\t32938 - 19968: jis0208<<14 | 0x2A<<7 | 0x22,\n\t32939 - 19968: jis0212<<14 | 0x34<<7 | 0x50,\n\t32940 - 19968: jis0208<<14 | 0x45<<7 | 0x4E,\n\t32941 - 19968: jis0208<<14 | 0x45<<7 | 0x4C,\n\t32943 - 19968: jis0208<<14 | 0x18<<7 | 0x2D,\n\t32945 - 19968: jis0208<<14 | 0x18<<7 | 0x2E,\n\t32946 - 19968: jis0208<<14 | 0x0F<<7 | 0x48,\n\t32948 - 19968: jis0208<<14 | 0x19<<7 | 0x47,\n\t32952 - 19968: jis0212<<14 | 0x34<<7 | 0x51,\n\t32953 - 19968: jis0212<<14 | 0x34<<7 | 0x52,\n\t32954 - 19968: jis0208<<14 | 0x26<<7 | 0x38,\n\t32963 - 19968: jis0208<<14 | 0x0F<<7 | 0x3E,\n\t32964 - 19968: jis0208<<14 | 0x45<<7 | 0x53,\n\t32966 - 19968: jis0208<<14 | 0x22<<7 | 0x1F,\n\t32968 - 19968: jis0212<<14 | 0x34<<7 | 0x53,\n\t32972 - 19968: jis0208<<14 | 0x26<<7 | 0x37,\n\t32973 - 19968: jis0212<<14 | 0x34<<7 | 0x54,\n\t32974 - 19968: jis0208<<14 | 0x21<<7 | 0x3A,\n\t32975 - 19968: jis0212<<14 | 0x34<<7 | 0x55,\n\t32978 - 19968: jis0212<<14 | 0x34<<7 | 0x56,\n\t32980 - 19968: jis0212<<14 | 0x34<<7 | 0x57,\n\t32981 - 19968: jis0212<<14 | 0x34<<7 | 0x58,\n\t32982 - 19968: jis0208<<14 | 0x45<<7 | 0x55,\n\t32983 - 19968: jis0212<<14 | 0x34<<7 | 0x59,\n\t32984 - 19968: jis0212<<14 | 0x34<<7 | 0x5A,\n\t32985 - 19968: jis0208<<14 | 0x45<<7 | 0x51,\n\t32986 - 19968: jis0208<<14 | 0x45<<7 | 0x54,\n\t32987 - 19968: jis0208<<14 | 0x45<<7 | 0x4F,\n\t32989 - 19968: jis0208<<14 | 0x45<<7 | 0x52,\n\t32990 - 19968: jis0208<<14 | 0x2A<<7 | 0x05,\n\t32992 - 19968: jis0212<<14 | 0x34<<7 | 0x5B,\n\t32993 - 19968: jis0208<<14 | 0x17<<7 | 0x34,\n\t32996 - 19968: jis0208<<14 | 0x0F<<7 | 0x5C,\n\t32997 - 19968: jis0208<<14 | 0x45<<7 | 0x50,\n\t33005 - 19968: jis0212<<14 | 0x34<<7 | 0x5C,\n\t33006 - 19968: jis0212<<14 | 0x34<<7 | 0x5D,\n\t33007 - 19968: jis0208<<14 | 0x45<<7 | 0x57,\n\t33008 - 19968: jis0212<<14 | 0x35<<7 | 0x00,\n\t33009 - 19968: jis0208<<14 | 0x45<<7 | 0x58,\n\t33010 - 19968: jis0212<<14 | 0x35<<7 | 0x01,\n\t33011 - 19968: jis0212<<14 | 0x35<<7 | 0x02,\n\t33012 - 19968: jis0208<<14 | 0x25<<7 | 0x18,\n\t33014 - 19968: jis0212<<14 | 0x35<<7 | 0x03,\n\t33016 - 19968: jis0208<<14 | 0x15<<7 | 0x1A,\n\t33017 - 19968: jis0212<<14 | 0x35<<7 | 0x04,\n\t33018 - 19968: jis0212<<14 | 0x35<<7 | 0x05,\n\t33020 - 19968: jis0208<<14 | 0x46<<7 | 0x05,\n\t33021 - 19968: jis0208<<14 | 0x26<<7 | 0x1C,\n\t33022 - 19968: jis0212<<14 | 0x35<<7 | 0x06,\n\t33026 - 19968: jis0208<<14 | 0x1A<<7 | 0x48,\n\t33027 - 19968: jis0212<<14 | 0x35<<7 | 0x07,\n\t33029 - 19968: jis0208<<14 | 0x15<<7 | 0x1B,\n\t33030 - 19968: jis0208<<14 | 0x1F<<7 | 0x27,\n\t33031 - 19968: jis0208<<14 | 0x2E<<7 | 0x25,\n\t33032 - 19968: jis0208<<14 | 0x2B<<7 | 0x0D,\n\t33033 - 19968: jis0208<<14 | 0x45<<7 | 0x56,\n\t33034 - 19968: jis0208<<14 | 0x1F<<7 | 0x33,\n\t33035 - 19968: jis0212<<14 | 0x35<<7 | 0x08,\n\t33046 - 19968: jis0212<<14 | 0x35<<7 | 0x09,\n\t33047 - 19968: jis0212<<14 | 0x35<<7 | 0x0A,\n\t33048 - 19968: jis0212<<14 | 0x35<<7 | 0x0B,\n\t33050 - 19968: jis0208<<14 | 0x14<<7 | 0x32,\n\t33051 - 19968: jis0208<<14 | 0x45<<7 | 0x59,\n\t33052 - 19968: jis0212<<14 | 0x35<<7 | 0x0C,\n\t33054 - 19968: jis0212<<14 | 0x35<<7 | 0x0D,\n\t33056 - 19968: jis0212<<14 | 0x35<<7 | 0x0E,\n\t33059 - 19968: jis0208<<14 | 0x45<<7 | 0x5B,\n\t33060 - 19968: jis0212<<14 | 0x35<<7 | 0x0F,\n\t33063 - 19968: jis0212<<14 | 0x35<<7 | 0x10,\n\t33065 - 19968: jis0208<<14 | 0x45<<7 | 0x5A,\n\t33068 - 19968: jis0212<<14 | 0x35<<7 | 0x11,\n\t33071 - 19968: jis0208<<14 | 0x45<<7 | 0x5C,\n\t33072 - 19968: jis0212<<14 | 0x35<<7 | 0x12,\n\t33073 - 19968: jis0208<<14 | 0x22<<7 | 0x05,\n\t33075 - 19968: jis0208<<14 | 0x26<<7 | 0x1D,\n\t33077 - 19968: jis0212<<14 | 0x35<<7 | 0x13,\n\t33081 - 19968: jis0208<<14 | 0x23<<7 | 0x10,\n\t33082 - 19968: jis0212<<14 | 0x35<<7 | 0x14,\n\t33084 - 19968: jis0212<<14 | 0x35<<7 | 0x15,\n\t33086 - 19968: jis0208<<14 | 0x46<<7 | 0x02,\n\t33093 - 19968: jis0212<<14 | 0x35<<7 | 0x16,\n\t33094 - 19968: jis0208<<14 | 0x46<<7 | 0x01,\n\t33095 - 19968: jis0212<<14 | 0x35<<7 | 0x17,\n\t33098 - 19968: jis0212<<14 | 0x35<<7 | 0x18,\n\t33099 - 19968: jis0208<<14 | 0x45<<7 | 0x5D,\n\t33100 - 19968: jis0212<<14 | 0x35<<7 | 0x19,\n\t33102 - 19968: jis0208<<14 | 0x1E<<7 | 0x34,\n\t33104 - 19968: jis0208<<14 | 0x28<<7 | 0x44,\n\t33105 - 19968: jis0208<<14 | 0x46<<7 | 0x04,\n\t33106 - 19968: jis0212<<14 | 0x35<<7 | 0x1A,\n\t33107 - 19968: jis0208<<14 | 0x46<<7 | 0x03,\n\t33108 - 19968: jis0208<<14 | 0x18<<7 | 0x2F,\n\t33109 - 19968: jis0208<<14 | 0x2E<<7 | 0x32,\n\t33111 - 19968: jis0212<<14 | 0x35<<7 | 0x1B,\n\t33119 - 19968: jis0208<<14 | 0x46<<7 | 0x14,\n\t33120 - 19968: jis0212<<14 | 0x35<<7 | 0x1C,\n\t33121 - 19968: jis0212<<14 | 0x35<<7 | 0x1D,\n\t33125 - 19968: jis0208<<14 | 0x46<<7 | 0x08,\n\t33126 - 19968: jis0208<<14 | 0x46<<7 | 0x09,\n\t33127 - 19968: jis0212<<14 | 0x35<<7 | 0x1E,\n\t33128 - 19968: jis0212<<14 | 0x35<<7 | 0x1F,\n\t33129 - 19968: jis0212<<14 | 0x35<<7 | 0x20,\n\t33131 - 19968: jis0208<<14 | 0x1B<<7 | 0x4F,\n\t33133 - 19968: jis0212<<14 | 0x35<<7 | 0x21,\n\t33134 - 19968: jis0208<<14 | 0x46<<7 | 0x07,\n\t33135 - 19968: jis0212<<14 | 0x35<<7 | 0x22,\n\t33136 - 19968: jis0208<<14 | 0x18<<7 | 0x57,\n\t33137 - 19968: jis0208<<14 | 0x46<<7 | 0x06,\n\t33140 - 19968: jis0208<<14 | 0x46<<7 | 0x0A,\n\t33143 - 19968: jis0212<<14 | 0x35<<7 | 0x23,\n\t33144 - 19968: jis0208<<14 | 0x23<<7 | 0x11,\n\t33145 - 19968: jis0208<<14 | 0x29<<7 | 0x01,\n\t33146 - 19968: jis0208<<14 | 0x20<<7 | 0x02,\n\t33151 - 19968: jis0208<<14 | 0x21<<7 | 0x3B,\n\t33152 - 19968: jis0208<<14 | 0x46<<7 | 0x0E,\n\t33153 - 19968: jis0212<<14 | 0x35<<7 | 0x24,\n\t33154 - 19968: jis0208<<14 | 0x46<<7 | 0x0F,\n\t33155 - 19968: jis0208<<14 | 0x46<<7 | 0x0B,\n\t33156 - 19968: jis0212<<14 | 0x35<<7 | 0x26,\n\t33157 - 19968: jis0212<<14 | 0x35<<7 | 0x27,\n\t33158 - 19968: jis0212<<14 | 0x35<<7 | 0x28,\n\t33160 - 19968: jis0208<<14 | 0x46<<7 | 0x0C,\n\t33162 - 19968: jis0208<<14 | 0x46<<7 | 0x0D,\n\t33163 - 19968: jis0212<<14 | 0x35<<7 | 0x29,\n\t33166 - 19968: jis0212<<14 | 0x35<<7 | 0x2A,\n\t33167 - 19968: jis0208<<14 | 0x18<<7 | 0x30,\n\t33168 - 19968: jis0212<<14 | 0x35<<7 | 0x25,\n\t33171 - 19968: jis0208<<14 | 0x46<<7 | 0x15,\n\t33173 - 19968: jis0208<<14 | 0x46<<7 | 0x11,\n\t33174 - 19968: jis0212<<14 | 0x35<<7 | 0x2B,\n\t33176 - 19968: jis0212<<14 | 0x35<<7 | 0x2C,\n\t33178 - 19968: jis0208<<14 | 0x28<<7 | 0x45,\n\t33179 - 19968: jis0212<<14 | 0x35<<7 | 0x2D,\n\t33180 - 19968: jis0208<<14 | 0x2A<<7 | 0x4B,\n\t33181 - 19968: jis0208<<14 | 0x28<<7 | 0x07,\n\t33182 - 19968: jis0212<<14 | 0x35<<7 | 0x2E,\n\t33184 - 19968: jis0208<<14 | 0x46<<7 | 0x10,\n\t33186 - 19968: jis0212<<14 | 0x35<<7 | 0x2F,\n\t33187 - 19968: jis0208<<14 | 0x46<<7 | 0x13,\n\t33188 - 19968: jis0208<<14 | 0x46<<7 | 0x12,\n\t33192 - 19968: jis0208<<14 | 0x2A<<7 | 0x23,\n\t33193 - 19968: jis0208<<14 | 0x46<<7 | 0x16,\n\t33198 - 19968: jis0212<<14 | 0x35<<7 | 0x30,\n\t33200 - 19968: jis0208<<14 | 0x46<<7 | 0x17,\n\t33202 - 19968: jis0212<<14 | 0x35<<7 | 0x31,\n\t33203 - 19968: jis0208<<14 | 0x20<<7 | 0x16,\n\t33204 - 19968: jis0212<<14 | 0x35<<7 | 0x32,\n\t33205 - 19968: jis0208<<14 | 0x46<<7 | 0x18,\n\t33208 - 19968: jis0208<<14 | 0x46<<7 | 0x1A,\n\t33210 - 19968: jis0208<<14 | 0x46<<7 | 0x1E,\n\t33211 - 19968: jis0212<<14 | 0x35<<7 | 0x33,\n\t33213 - 19968: jis0208<<14 | 0x46<<7 | 0x1B,\n\t33214 - 19968: jis0208<<14 | 0x46<<7 | 0x19,\n\t33215 - 19968: jis0208<<14 | 0x26<<7 | 0x1E,\n\t33216 - 19968: jis0208<<14 | 0x46<<7 | 0x1C,\n\t33218 - 19968: jis0208<<14 | 0x46<<7 | 0x1D,\n\t33219 - 19968: jis0212<<14 | 0x35<<7 | 0x35,\n\t33221 - 19968: jis0212<<14 | 0x35<<7 | 0x36,\n\t33222 - 19968: jis0208<<14 | 0x11<<7 | 0x11,\n\t33224 - 19968: jis0208<<14 | 0x46<<7 | 0x24,\n\t33225 - 19968: jis0208<<14 | 0x46<<7 | 0x1F,\n\t33226 - 19968: jis0212<<14 | 0x35<<7 | 0x37,\n\t33227 - 19968: jis0212<<14 | 0x35<<7 | 0x34,\n\t33229 - 19968: jis0208<<14 | 0x46<<7 | 0x20,\n\t33230 - 19968: jis0212<<14 | 0x35<<7 | 0x38,\n\t33231 - 19968: jis0212<<14 | 0x35<<7 | 0x39,\n\t33233 - 19968: jis0208<<14 | 0x46<<7 | 0x21,\n\t33235 - 19968: jis0208<<14 | 0x21<<7 | 0x00,\n\t33237 - 19968: jis0212<<14 | 0x35<<7 | 0x3A,\n\t33239 - 19968: jis0212<<14 | 0x35<<7 | 0x3B,\n\t33240 - 19968: jis0208<<14 | 0x46<<7 | 0x23,\n\t33241 - 19968: jis0208<<14 | 0x46<<7 | 0x22,\n\t33242 - 19968: jis0208<<14 | 0x46<<7 | 0x25,\n\t33243 - 19968: jis0212<<14 | 0x35<<7 | 0x3C,\n\t33245 - 19968: jis0212<<14 | 0x35<<7 | 0x3D,\n\t33246 - 19968: jis0212<<14 | 0x35<<7 | 0x3E,\n\t33247 - 19968: jis0208<<14 | 0x46<<7 | 0x26,\n\t33248 - 19968: jis0208<<14 | 0x46<<7 | 0x27,\n\t33249 - 19968: jis0212<<14 | 0x35<<7 | 0x3F,\n\t33251 - 19968: jis0208<<14 | 0x1E<<7 | 0x22,\n\t33252 - 19968: jis0212<<14 | 0x35<<7 | 0x40,\n\t33253 - 19968: jis0208<<14 | 0x11<<7 | 0x48,\n\t33255 - 19968: jis0208<<14 | 0x46<<7 | 0x28,\n\t33256 - 19968: jis0208<<14 | 0x2D<<7 | 0x36,\n\t33258 - 19968: jis0208<<14 | 0x1B<<7 | 0x0A,\n\t33259 - 19968: jis0212<<14 | 0x35<<7 | 0x41,\n\t33260 - 19968: jis0212<<14 | 0x35<<7 | 0x42,\n\t33261 - 19968: jis0208<<14 | 0x1C<<7 | 0x0C,\n\t33264 - 19968: jis0212<<14 | 0x35<<7 | 0x43,\n\t33265 - 19968: jis0212<<14 | 0x35<<7 | 0x44,\n\t33266 - 19968: jis0212<<14 | 0x35<<7 | 0x45,\n\t33267 - 19968: jis0208<<14 | 0x1A<<7 | 0x49,\n\t33268 - 19968: jis0208<<14 | 0x22<<7 | 0x36,\n\t33269 - 19968: jis0212<<14 | 0x35<<7 | 0x46,\n\t33270 - 19968: jis0212<<14 | 0x35<<7 | 0x47,\n\t33272 - 19968: jis0212<<14 | 0x35<<7 | 0x48,\n\t33273 - 19968: jis0212<<14 | 0x35<<7 | 0x49,\n\t33274 - 19968: jis0208<<14 | 0x46<<7 | 0x29,\n\t33275 - 19968: jis0208<<14 | 0x46<<7 | 0x2A,\n\t33276 - 19968: jis0208<<14 | 0x10<<7 | 0x10,\n\t33277 - 19968: jis0212<<14 | 0x35<<7 | 0x4A,\n\t33278 - 19968: jis0208<<14 | 0x46<<7 | 0x2B,\n\t33279 - 19968: jis0212<<14 | 0x35<<7 | 0x4B,\n\t33280 - 19968: jis0212<<14 | 0x35<<7 | 0x4C,\n\t33281 - 19968: jis0208<<14 | 0x46<<7 | 0x2C,\n\t33282 - 19968: jis0208<<14 | 0x46<<7 | 0x2D,\n\t33283 - 19968: jis0212<<14 | 0x35<<7 | 0x4D,\n\t33285 - 19968: jis0208<<14 | 0x46<<7 | 0x2E,\n\t33287 - 19968: jis0208<<14 | 0x46<<7 | 0x2F,\n\t33288 - 19968: jis0208<<14 | 0x15<<7 | 0x1C,\n\t33289 - 19968: jis0208<<14 | 0x39<<7 | 0x09,\n\t33290 - 19968: jis0208<<14 | 0x46<<7 | 0x30,\n\t33292 - 19968: jis0208<<14 | 0x1F<<7 | 0x44,\n\t33293 - 19968: jis0208<<14 | 0x46<<7 | 0x31,\n\t33294 - 19968: jis0208<<14 | 0x1B<<7 | 0x2A,\n\t33295 - 19968: jis0212<<14 | 0x35<<7 | 0x4E,\n\t33296 - 19968: jis0208<<14 | 0x46<<7 | 0x32,\n\t33298 - 19968: jis0208<<14 | 0x2F<<7 | 0x0F,\n\t33299 - 19968: jis0212<<14 | 0x35<<7 | 0x4F,\n\t33300 - 19968: jis0212<<14 | 0x35<<7 | 0x50,\n\t33302 - 19968: jis0208<<14 | 0x46<<7 | 0x33,\n\t33303 - 19968: jis0208<<14 | 0x29<<7 | 0x3D,\n\t33304 - 19968: jis0208<<14 | 0x13<<7 | 0x3B,\n\t33305 - 19968: jis0212<<14 | 0x35<<7 | 0x51,\n\t33306 - 19968: jis0212<<14 | 0x35<<7 | 0x52,\n\t33307 - 19968: jis0208<<14 | 0x20<<7 | 0x03,\n\t33308 - 19968: jis0208<<14 | 0x1C<<7 | 0x37,\n\t33309 - 19968: jis0212<<14 | 0x35<<7 | 0x53,\n\t33310 - 19968: jis0208<<14 | 0x28<<7 | 0x50,\n\t33311 - 19968: jis0208<<14 | 0x1C<<7 | 0x0D,\n\t33313 - 19968: jis0212<<14 | 0x35<<7 | 0x54,\n\t33314 - 19968: jis0212<<14 | 0x35<<7 | 0x55,\n\t33320 - 19968: jis0212<<14 | 0x35<<7 | 0x56,\n\t33321 - 19968: jis0208<<14 | 0x46<<7 | 0x34,\n\t33322 - 19968: jis0208<<14 | 0x18<<7 | 0x31,\n\t33323 - 19968: jis0208<<14 | 0x46<<7 | 0x35,\n\t33324 - 19968: jis0208<<14 | 0x27<<7 | 0x2B,\n\t33326 - 19968: jis0208<<14 | 0x46<<7 | 0x43,\n\t33330 - 19968: jis0212<<14 | 0x35<<7 | 0x57,\n\t33331 - 19968: jis0208<<14 | 0x46<<7 | 0x37,\n\t33332 - 19968: jis0212<<14 | 0x35<<7 | 0x58,\n\t33333 - 19968: jis0208<<14 | 0x21<<7 | 0x28,\n\t33334 - 19968: jis0208<<14 | 0x26<<7 | 0x54,\n\t33335 - 19968: jis0208<<14 | 0x17<<7 | 0x1E,\n\t33336 - 19968: jis0208<<14 | 0x46<<7 | 0x36,\n\t33337 - 19968: jis0208<<14 | 0x20<<7 | 0x04,\n\t33338 - 19968: jis0212<<14 | 0x35<<7 | 0x59,\n\t33344 - 19968: jis0208<<14 | 0x46<<7 | 0x38,\n\t33347 - 19968: jis0212<<14 | 0x35<<7 | 0x5A,\n\t33348 - 19968: jis0212<<14 | 0x35<<7 | 0x5B,\n\t33349 - 19968: jis0212<<14 | 0x35<<7 | 0x5C,\n\t33350 - 19968: jis0212<<14 | 0x35<<7 | 0x5D,\n\t33351 - 19968: jis0208<<14 | 0x23<<7 | 0x59,\n\t33355 - 19968: jis0212<<14 | 0x36<<7 | 0x00,\n\t33358 - 19968: jis0212<<14 | 0x36<<7 | 0x01,\n\t33359 - 19968: jis0212<<14 | 0x36<<7 | 0x02,\n\t33361 - 19968: jis0212<<14 | 0x36<<7 | 0x03,\n\t33366 - 19968: jis0212<<14 | 0x36<<7 | 0x04,\n\t33368 - 19968: jis0208<<14 | 0x46<<7 | 0x3A,\n\t33369 - 19968: jis0208<<14 | 0x46<<7 | 0x39,\n\t33370 - 19968: jis0208<<14 | 0x46<<7 | 0x3C,\n\t33372 - 19968: jis0212<<14 | 0x36<<7 | 0x05,\n\t33373 - 19968: jis0208<<14 | 0x46<<7 | 0x3B,\n\t33375 - 19968: jis0208<<14 | 0x46<<7 | 0x3D,\n\t33376 - 19968: jis0212<<14 | 0x36<<7 | 0x06,\n\t33378 - 19968: jis0208<<14 | 0x46<<7 | 0x3F,\n\t33379 - 19968: jis0212<<14 | 0x36<<7 | 0x07,\n\t33380 - 19968: jis0208<<14 | 0x46<<7 | 0x3E,\n\t33382 - 19968: jis0208<<14 | 0x13<<7 | 0x2E,\n\t33383 - 19968: jis0212<<14 | 0x36<<7 | 0x08,\n\t33384 - 19968: jis0208<<14 | 0x46<<7 | 0x40,\n\t33386 - 19968: jis0208<<14 | 0x46<<7 | 0x41,\n\t33387 - 19968: jis0208<<14 | 0x46<<7 | 0x42,\n\t33389 - 19968: jis0212<<14 | 0x36<<7 | 0x09,\n\t33390 - 19968: jis0208<<14 | 0x19<<7 | 0x10,\n\t33391 - 19968: jis0208<<14 | 0x2D<<7 | 0x28,\n\t33393 - 19968: jis0208<<14 | 0x46<<7 | 0x44,\n\t33394 - 19968: jis0208<<14 | 0x1E<<7 | 0x06,\n\t33396 - 19968: jis0212<<14 | 0x36<<7 | 0x0A,\n\t33398 - 19968: jis0208<<14 | 0x10<<7 | 0x4F,\n\t33399 - 19968: jis0208<<14 | 0x46<<7 | 0x45,\n\t33400 - 19968: jis0208<<14 | 0x46<<7 | 0x46,\n\t33403 - 19968: jis0212<<14 | 0x36<<7 | 0x0B,\n\t33405 - 19968: jis0212<<14 | 0x36<<7 | 0x0C,\n\t33406 - 19968: jis0208<<14 | 0x46<<7 | 0x47,\n\t33407 - 19968: jis0212<<14 | 0x36<<7 | 0x0D,\n\t33408 - 19968: jis0212<<14 | 0x36<<7 | 0x0E,\n\t33409 - 19968: jis0212<<14 | 0x36<<7 | 0x0F,\n\t33411 - 19968: jis0212<<14 | 0x36<<7 | 0x10,\n\t33412 - 19968: jis0212<<14 | 0x36<<7 | 0x11,\n\t33415 - 19968: jis0212<<14 | 0x36<<7 | 0x12,\n\t33417 - 19968: jis0212<<14 | 0x36<<7 | 0x13,\n\t33418 - 19968: jis0212<<14 | 0x36<<7 | 0x14,\n\t33419 - 19968: jis0208<<14 | 0x0F<<7 | 0x51,\n\t33421 - 19968: jis0208<<14 | 0x46<<7 | 0x48,\n\t33422 - 19968: jis0212<<14 | 0x36<<7 | 0x15,\n\t33425 - 19968: jis0212<<14 | 0x36<<7 | 0x16,\n\t33426 - 19968: jis0208<<14 | 0x46<<7 | 0x49,\n\t33428 - 19968: jis0212<<14 | 0x36<<7 | 0x17,\n\t33430 - 19968: jis0212<<14 | 0x36<<7 | 0x18,\n\t33432 - 19968: jis0212<<14 | 0x36<<7 | 0x19,\n\t33433 - 19968: jis0208<<14 | 0x28<<7 | 0x46,\n\t33434 - 19968: jis0212<<14 | 0x36<<7 | 0x1A,\n\t33435 - 19968: jis0212<<14 | 0x36<<7 | 0x1B,\n\t33437 - 19968: jis0208<<14 | 0x1B<<7 | 0x26,\n\t33439 - 19968: jis0208<<14 | 0x46<<7 | 0x4B,\n\t33440 - 19968: jis0212<<14 | 0x36<<7 | 0x1C,\n\t33441 - 19968: jis0212<<14 | 0x36<<7 | 0x1D,\n\t33443 - 19968: jis0212<<14 | 0x36<<7 | 0x1E,\n\t33444 - 19968: jis0212<<14 | 0x36<<7 | 0x1F,\n\t33445 - 19968: jis0208<<14 | 0x12<<7 | 0x08,\n\t33446 - 19968: jis0208<<14 | 0x0F<<7 | 0x11,\n\t33447 - 19968: jis0212<<14 | 0x36<<7 | 0x20,\n\t33448 - 19968: jis0212<<14 | 0x36<<7 | 0x21,\n\t33449 - 19968: jis0212<<14 | 0x36<<7 | 0x22,\n\t33450 - 19968: jis0212<<14 | 0x36<<7 | 0x23,\n\t33451 - 19968: jis0208<<14 | 0x46<<7 | 0x4A,\n\t33452 - 19968: jis0208<<14 | 0x46<<7 | 0x4D,\n\t33453 - 19968: jis0208<<14 | 0x26<<7 | 0x2D,\n\t33454 - 19968: jis0212<<14 | 0x36<<7 | 0x24,\n\t33455 - 19968: jis0208<<14 | 0x1E<<7 | 0x23,\n\t33456 - 19968: jis0212<<14 | 0x36<<7 | 0x25,\n\t33457 - 19968: jis0208<<14 | 0x11<<7 | 0x35,\n\t33458 - 19968: jis0212<<14 | 0x36<<7 | 0x26,\n\t33459 - 19968: jis0208<<14 | 0x2A<<7 | 0x06,\n\t33460 - 19968: jis0212<<14 | 0x36<<7 | 0x27,\n\t33463 - 19968: jis0212<<14 | 0x36<<7 | 0x28,\n\t33464 - 19968: jis0208<<14 | 0x16<<7 | 0x3C,\n\t33465 - 19968: jis0208<<14 | 0x15<<7 | 0x3B,\n\t33466 - 19968: jis0212<<14 | 0x36<<7 | 0x29,\n\t33467 - 19968: jis0208<<14 | 0x46<<7 | 0x4C,\n\t33468 - 19968: jis0212<<14 | 0x36<<7 | 0x2A,\n\t33469 - 19968: jis0208<<14 | 0x11<<7 | 0x49,\n\t33470 - 19968: jis0212<<14 | 0x36<<7 | 0x2B,\n\t33471 - 19968: jis0212<<14 | 0x36<<7 | 0x2C,\n\t33477 - 19968: jis0208<<14 | 0x13<<7 | 0x02,\n\t33478 - 19968: jis0212<<14 | 0x36<<7 | 0x2D,\n\t33488 - 19968: jis0212<<14 | 0x36<<7 | 0x2E,\n\t33489 - 19968: jis0208<<14 | 0x10<<7 | 0x50,\n\t33490 - 19968: jis0208<<14 | 0x46<<7 | 0x51,\n\t33491 - 19968: jis0208<<14 | 0x2D<<7 | 0x49,\n\t33492 - 19968: jis0208<<14 | 0x21<<7 | 0x3C,\n\t33493 - 19968: jis0212<<14 | 0x36<<7 | 0x2F,\n\t33495 - 19968: jis0208<<14 | 0x28<<7 | 0x23,\n\t33497 - 19968: jis0208<<14 | 0x46<<7 | 0x5D,\n\t33498 - 19968: jis0212<<14 | 0x36<<7 | 0x30,\n\t33499 - 19968: jis0208<<14 | 0x11<<7 | 0x36,\n\t33500 - 19968: jis0208<<14 | 0x46<<7 | 0x5B,\n\t33502 - 19968: jis0208<<14 | 0x46<<7 | 0x59,\n\t33503 - 19968: jis0208<<14 | 0x46<<7 | 0x50,\n\t33504 - 19968: jis0212<<14 | 0x36<<7 | 0x31,\n\t33505 - 19968: jis0208<<14 | 0x46<<7 | 0x4E,\n\t33506 - 19968: jis0212<<14 | 0x36<<7 | 0x32,\n\t33507 - 19968: jis0208<<14 | 0x46<<7 | 0x4F,\n\t33508 - 19968: jis0212<<14 | 0x36<<7 | 0x33,\n\t33509 - 19968: jis0208<<14 | 0x1B<<7 | 0x42,\n\t33510 - 19968: jis0208<<14 | 0x15<<7 | 0x4B,\n\t33511 - 19968: jis0208<<14 | 0x22<<7 | 0x56,\n\t33512 - 19968: jis0212<<14 | 0x36<<7 | 0x34,\n\t33514 - 19968: jis0212<<14 | 0x36<<7 | 0x35,\n\t33515 - 19968: jis0208<<14 | 0x25<<7 | 0x30,\n\t33517 - 19968: jis0212<<14 | 0x36<<7 | 0x36,\n\t33519 - 19968: jis0212<<14 | 0x36<<7 | 0x37,\n\t33521 - 19968: jis0208<<14 | 0x10<<7 | 0x30,\n\t33523 - 19968: jis0208<<14 | 0x46<<7 | 0x53,\n\t33524 - 19968: jis0208<<14 | 0x46<<7 | 0x52,\n\t33526 - 19968: jis0212<<14 | 0x36<<7 | 0x38,\n\t33527 - 19968: jis0212<<14 | 0x36<<7 | 0x39,\n\t33529 - 19968: jis0208<<14 | 0x46<<7 | 0x58,\n\t33530 - 19968: jis0208<<14 | 0x46<<7 | 0x54,\n\t33531 - 19968: jis0208<<14 | 0x46<<7 | 0x57,\n\t33533 - 19968: jis0212<<14 | 0x36<<7 | 0x3A,\n\t33534 - 19968: jis0212<<14 | 0x36<<7 | 0x3B,\n\t33536 - 19968: jis0212<<14 | 0x36<<7 | 0x3C,\n\t33537 - 19968: jis0208<<14 | 0x5A<<7 | 0x36,\n\t33538 - 19968: jis0208<<14 | 0x2B<<7 | 0x2F,\n\t33539 - 19968: jis0208<<14 | 0x46<<7 | 0x56,\n\t33540 - 19968: jis0208<<14 | 0x11<<7 | 0x37,\n\t33541 - 19968: jis0208<<14 | 0x12<<7 | 0x5C,\n\t33542 - 19968: jis0208<<14 | 0x46<<7 | 0x5A,\n\t33543 - 19968: jis0212<<14 | 0x36<<7 | 0x3E,\n\t33544 - 19968: jis0212<<14 | 0x36<<7 | 0x3F,\n\t33545 - 19968: jis0208<<14 | 0x46<<7 | 0x5C,\n\t33546 - 19968: jis0212<<14 | 0x36<<7 | 0x40,\n\t33547 - 19968: jis0212<<14 | 0x36<<7 | 0x41,\n\t33550 - 19968: jis0208<<14 | 0x16<<7 | 0x33,\n\t33558 - 19968: jis0208<<14 | 0x47<<7 | 0x02,\n\t33559 - 19968: jis0208<<14 | 0x47<<7 | 0x0B,\n\t33560 - 19968: jis0208<<14 | 0x47<<7 | 0x0C,\n\t33563 - 19968: jis0212<<14 | 0x36<<7 | 0x43,\n\t33564 - 19968: jis0208<<14 | 0x0F<<7 | 0x0A,\n\t33565 - 19968: jis0212<<14 | 0x36<<7 | 0x44,\n\t33566 - 19968: jis0212<<14 | 0x36<<7 | 0x45,\n\t33567 - 19968: jis0212<<14 | 0x36<<7 | 0x46,\n\t33569 - 19968: jis0212<<14 | 0x36<<7 | 0x47,\n\t33570 - 19968: jis0212<<14 | 0x36<<7 | 0x48,\n\t33571 - 19968: jis0208<<14 | 0x47<<7 | 0x13,\n\t33576 - 19968: jis0208<<14 | 0x0F<<7 | 0x50,\n\t33579 - 19968: jis0208<<14 | 0x47<<7 | 0x0A,\n\t33580 - 19968: jis0212<<14 | 0x36<<7 | 0x49,\n\t33581 - 19968: jis0212<<14 | 0x36<<7 | 0x4A,\n\t33582 - 19968: jis0212<<14 | 0x36<<7 | 0x4B,\n\t33583 - 19968: jis0208<<14 | 0x47<<7 | 0x09,\n\t33584 - 19968: jis0212<<14 | 0x36<<7 | 0x4C,\n\t33585 - 19968: jis0208<<14 | 0x47<<7 | 0x04,\n\t33586 - 19968: jis0208<<14 | 0x47<<7 | 0x03,\n\t33587 - 19968: jis0212<<14 | 0x36<<7 | 0x4D,\n\t33588 - 19968: jis0208<<14 | 0x47<<7 | 0x01,\n\t33589 - 19968: jis0208<<14 | 0x47<<7 | 0x00,\n\t33590 - 19968: jis0208<<14 | 0x22<<7 | 0x42,\n\t33591 - 19968: jis0212<<14 | 0x36<<7 | 0x4E,\n\t33592 - 19968: jis0208<<14 | 0x21<<7 | 0x5A,\n\t33593 - 19968: jis0208<<14 | 0x47<<7 | 0x06,\n\t33594 - 19968: jis0212<<14 | 0x36<<7 | 0x4F,\n\t33596 - 19968: jis0212<<14 | 0x36<<7 | 0x50,\n\t33597 - 19968: jis0212<<14 | 0x36<<7 | 0x51,\n\t33600 - 19968: jis0208<<14 | 0x47<<7 | 0x05,\n\t33602 - 19968: jis0212<<14 | 0x36<<7 | 0x52,\n\t33603 - 19968: jis0212<<14 | 0x36<<7 | 0x53,\n\t33604 - 19968: jis0212<<14 | 0x36<<7 | 0x54,\n\t33605 - 19968: jis0208<<14 | 0x47<<7 | 0x08,\n\t33607 - 19968: jis0212<<14 | 0x36<<7 | 0x55,\n\t33609 - 19968: jis0208<<14 | 0x20<<7 | 0x4F,\n\t33610 - 19968: jis0208<<14 | 0x16<<7 | 0x34,\n\t33613 - 19968: jis0212<<14 | 0x36<<7 | 0x56,\n\t33614 - 19968: jis0212<<14 | 0x36<<7 | 0x57,\n\t33615 - 19968: jis0208<<14 | 0x10<<7 | 0x20,\n\t33616 - 19968: jis0208<<14 | 0x47<<7 | 0x07,\n\t33617 - 19968: jis0212<<14 | 0x36<<7 | 0x58,\n\t33618 - 19968: jis0208<<14 | 0x18<<7 | 0x32,\n\t33619 - 19968: jis0212<<14 | 0x37<<7 | 0x1D,\n\t33620 - 19968: jis0212<<14 | 0x36<<7 | 0x42,\n\t33621 - 19968: jis0212<<14 | 0x36<<7 | 0x59,\n\t33622 - 19968: jis0212<<14 | 0x36<<7 | 0x5A,\n\t33623 - 19968: jis0212<<14 | 0x36<<7 | 0x5B,\n\t33624 - 19968: jis0208<<14 | 0x20<<7 | 0x50,\n\t33634 - 19968: jis0208<<14 | 0x5A<<7 | 0x37,\n\t33648 - 19968: jis0212<<14 | 0x36<<7 | 0x5C,\n\t33651 - 19968: jis0208<<14 | 0x47<<7 | 0x19,\n\t33653 - 19968: jis0208<<14 | 0x47<<7 | 0x1A,\n\t33655 - 19968: jis0208<<14 | 0x11<<7 | 0x38,\n\t33656 - 19968: jis0212<<14 | 0x36<<7 | 0x5D,\n\t33659 - 19968: jis0208<<14 | 0x11<<7 | 0x0D,\n\t33660 - 19968: jis0208<<14 | 0x47<<7 | 0x17,\n\t33661 - 19968: jis0212<<14 | 0x37<<7 | 0x00,\n\t33663 - 19968: jis0208<<14 | 0x5A<<7 | 0x38,\n\t33664 - 19968: jis0212<<14 | 0x37<<7 | 0x02,\n\t33666 - 19968: jis0212<<14 | 0x37<<7 | 0x03,\n\t33668 - 19968: jis0212<<14 | 0x37<<7 | 0x04,\n\t33669 - 19968: jis0208<<14 | 0x47<<7 | 0x0D,\n\t33670 - 19968: jis0212<<14 | 0x37<<7 | 0x05,\n\t33671 - 19968: jis0208<<14 | 0x47<<7 | 0x15,\n\t33673 - 19968: jis0208<<14 | 0x47<<7 | 0x1C,\n\t33674 - 19968: jis0208<<14 | 0x47<<7 | 0x16,\n\t33677 - 19968: jis0212<<14 | 0x37<<7 | 0x06,\n\t33678 - 19968: jis0208<<14 | 0x47<<7 | 0x14,\n\t33682 - 19968: jis0212<<14 | 0x37<<7 | 0x07,\n\t33683 - 19968: jis0208<<14 | 0x46<<7 | 0x55,\n\t33684 - 19968: jis0212<<14 | 0x37<<7 | 0x08,\n\t33685 - 19968: jis0212<<14 | 0x37<<7 | 0x09,\n\t33686 - 19968: jis0208<<14 | 0x47<<7 | 0x12,\n\t33688 - 19968: jis0212<<14 | 0x37<<7 | 0x0A,\n\t33689 - 19968: jis0212<<14 | 0x37<<7 | 0x0B,\n\t33690 - 19968: jis0208<<14 | 0x47<<7 | 0x0E,\n\t33691 - 19968: jis0212<<14 | 0x37<<7 | 0x0C,\n\t33692 - 19968: jis0212<<14 | 0x37<<7 | 0x0D,\n\t33693 - 19968: jis0212<<14 | 0x37<<7 | 0x0E,\n\t33694 - 19968: jis0208<<14 | 0x13<<7 | 0x2F,\n\t33695 - 19968: jis0208<<14 | 0x47<<7 | 0x10,\n\t33696 - 19968: jis0208<<14 | 0x47<<7 | 0x1B,\n\t33698 - 19968: jis0208<<14 | 0x47<<7 | 0x11,\n\t33702 - 19968: jis0212<<14 | 0x37<<7 | 0x0F,\n\t33703 - 19968: jis0212<<14 | 0x37<<7 | 0x10,\n\t33704 - 19968: jis0208<<14 | 0x47<<7 | 0x1D,\n\t33705 - 19968: jis0212<<14 | 0x37<<7 | 0x11,\n\t33706 - 19968: jis0208<<14 | 0x47<<7 | 0x0F,\n\t33707 - 19968: jis0208<<14 | 0x26<<7 | 0x5B,\n\t33708 - 19968: jis0212<<14 | 0x37<<7 | 0x12,\n\t33709 - 19968: jis0212<<14 | 0x37<<7 | 0x2B,\n\t33713 - 19968: jis0208<<14 | 0x2C<<7 | 0x48,\n\t33717 - 19968: jis0208<<14 | 0x47<<7 | 0x18,\n\t33725 - 19968: jis0208<<14 | 0x47<<7 | 0x2E,\n\t33726 - 19968: jis0212<<14 | 0x37<<7 | 0x13,\n\t33727 - 19968: jis0212<<14 | 0x37<<7 | 0x14,\n\t33728 - 19968: jis0212<<14 | 0x37<<7 | 0x15,\n\t33729 - 19968: jis0208<<14 | 0x47<<7 | 0x26,\n\t33733 - 19968: jis0208<<14 | 0x1E<<7 | 0x5A,\n\t33735 - 19968: jis0208<<14 | 0x5A<<7 | 0x39,\n\t33737 - 19968: jis0212<<14 | 0x37<<7 | 0x17,\n\t33738 - 19968: jis0208<<14 | 0x14<<7 | 0x25,\n\t33740 - 19968: jis0208<<14 | 0x15<<7 | 0x3C,\n\t33742 - 19968: jis0208<<14 | 0x47<<7 | 0x21,\n\t33743 - 19968: jis0212<<14 | 0x37<<7 | 0x18,\n\t33744 - 19968: jis0212<<14 | 0x37<<7 | 0x19,\n\t33745 - 19968: jis0212<<14 | 0x37<<7 | 0x1A,\n\t33747 - 19968: jis0208<<14 | 0x11<<7 | 0x3A,\n\t33748 - 19968: jis0212<<14 | 0x37<<7 | 0x1B,\n\t33750 - 19968: jis0208<<14 | 0x1D<<7 | 0x33,\n\t33752 - 19968: jis0208<<14 | 0x47<<7 | 0x24,\n\t33756 - 19968: jis0208<<14 | 0x19<<7 | 0x39,\n\t33757 - 19968: jis0212<<14 | 0x37<<7 | 0x1C,\n\t33759 - 19968: jis0208<<14 | 0x24<<7 | 0x30,\n\t33760 - 19968: jis0208<<14 | 0x47<<7 | 0x29,\n\t33768 - 19968: jis0212<<14 | 0x37<<7 | 0x1E,\n\t33769 - 19968: jis0208<<14 | 0x29<<7 | 0x4D,\n\t33770 - 19968: jis0212<<14 | 0x37<<7 | 0x1F,\n\t33771 - 19968: jis0208<<14 | 0x47<<7 | 0x20,\n\t33775 - 19968: jis0208<<14 | 0x11<<7 | 0x39,\n\t33776 - 19968: jis0208<<14 | 0x17<<7 | 0x35,\n\t33777 - 19968: jis0208<<14 | 0x28<<7 | 0x08,\n\t33778 - 19968: jis0208<<14 | 0x47<<7 | 0x2A,\n\t33780 - 19968: jis0208<<14 | 0x47<<7 | 0x1E,\n\t33782 - 19968: jis0208<<14 | 0x5A<<7 | 0x3A,\n\t33783 - 19968: jis0208<<14 | 0x47<<7 | 0x27,\n\t33784 - 19968: jis0212<<14 | 0x37<<7 | 0x21,\n\t33785 - 19968: jis0212<<14 | 0x37<<7 | 0x22,\n\t33787 - 19968: jis0208<<14 | 0x47<<7 | 0x31,\n\t33788 - 19968: jis0212<<14 | 0x37<<7 | 0x23,\n\t33789 - 19968: jis0208<<14 | 0x47<<7 | 0x22,\n\t33793 - 19968: jis0212<<14 | 0x37<<7 | 0x24,\n\t33795 - 19968: jis0208<<14 | 0x47<<7 | 0x23,\n\t33796 - 19968: jis0208<<14 | 0x25<<7 | 0x19,\n\t33798 - 19968: jis0212<<14 | 0x37<<7 | 0x25,\n\t33799 - 19968: jis0208<<14 | 0x47<<7 | 0x28,\n\t33802 - 19968: jis0212<<14 | 0x37<<7 | 0x26,\n\t33803 - 19968: jis0208<<14 | 0x47<<7 | 0x25,\n\t33804 - 19968: jis0208<<14 | 0x2A<<7 | 0x07,\n\t33805 - 19968: jis0208<<14 | 0x47<<7 | 0x2B,\n\t33806 - 19968: jis0208<<14 | 0x0F<<7 | 0x3F,\n\t33807 - 19968: jis0212<<14 | 0x37<<7 | 0x27,\n\t33809 - 19968: jis0212<<14 | 0x37<<7 | 0x28,\n\t33811 - 19968: jis0208<<14 | 0x47<<7 | 0x1F,\n\t33813 - 19968: jis0212<<14 | 0x37<<7 | 0x29,\n\t33817 - 19968: jis0212<<14 | 0x37<<7 | 0x2A,\n\t33824 - 19968: jis0208<<14 | 0x47<<7 | 0x2D,\n\t33826 - 19968: jis0208<<14 | 0x47<<7 | 0x2C,\n\t33833 - 19968: jis0208<<14 | 0x26<<7 | 0x4A,\n\t33834 - 19968: jis0208<<14 | 0x47<<7 | 0x33,\n\t33836 - 19968: jis0208<<14 | 0x47<<7 | 0x3E,\n\t33839 - 19968: jis0212<<14 | 0x37<<7 | 0x2C,\n\t33841 - 19968: jis0208<<14 | 0x12<<7 | 0x5D,\n\t33845 - 19968: jis0208<<14 | 0x47<<7 | 0x41,\n\t33848 - 19968: jis0208<<14 | 0x47<<7 | 0x2F,\n\t33849 - 19968: jis0212<<14 | 0x37<<7 | 0x2D,\n\t33852 - 19968: jis0208<<14 | 0x47<<7 | 0x34,\n\t33853 - 19968: jis0208<<14 | 0x2C<<7 | 0x4D,\n\t33861 - 19968: jis0212<<14 | 0x37<<7 | 0x2E,\n\t33862 - 19968: jis0208<<14 | 0x47<<7 | 0x3D,\n\t33863 - 19968: jis0212<<14 | 0x37<<7 | 0x2F,\n\t33864 - 19968: jis0208<<14 | 0x5A<<7 | 0x3B,\n\t33865 - 19968: jis0208<<14 | 0x2C<<7 | 0x34,\n\t33866 - 19968: jis0212<<14 | 0x37<<7 | 0x31,\n\t33869 - 19968: jis0212<<14 | 0x37<<7 | 0x32,\n\t33870 - 19968: jis0208<<14 | 0x2D<<7 | 0x09,\n\t33871 - 19968: jis0212<<14 | 0x37<<7 | 0x33,\n\t33873 - 19968: jis0212<<14 | 0x37<<7 | 0x34,\n\t33874 - 19968: jis0212<<14 | 0x37<<7 | 0x35,\n\t33878 - 19968: jis0212<<14 | 0x37<<7 | 0x36,\n\t33879 - 19968: jis0208<<14 | 0x22<<7 | 0x57,\n\t33880 - 19968: jis0212<<14 | 0x37<<7 | 0x37,\n\t33881 - 19968: jis0212<<14 | 0x37<<7 | 0x38,\n\t33882 - 19968: jis0212<<14 | 0x37<<7 | 0x39,\n\t33883 - 19968: jis0208<<14 | 0x12<<7 | 0x4A,\n\t33884 - 19968: jis0212<<14 | 0x37<<7 | 0x3A,\n\t33888 - 19968: jis0212<<14 | 0x37<<7 | 0x3B,\n\t33889 - 19968: jis0208<<14 | 0x28<<7 | 0x51,\n\t33890 - 19968: jis0208<<14 | 0x47<<7 | 0x43,\n\t33891 - 19968: jis0208<<14 | 0x25<<7 | 0x00,\n\t33892 - 19968: jis0212<<14 | 0x37<<7 | 0x3C,\n\t33893 - 19968: jis0212<<14 | 0x37<<7 | 0x3D,\n\t33894 - 19968: jis0208<<14 | 0x0F<<7 | 0x10,\n\t33895 - 19968: jis0212<<14 | 0x37<<7 | 0x3E,\n\t33897 - 19968: jis0208<<14 | 0x47<<7 | 0x3C,\n\t33898 - 19968: jis0212<<14 | 0x37<<7 | 0x3F,\n\t33899 - 19968: jis0208<<14 | 0x47<<7 | 0x38,\n\t33900 - 19968: jis0208<<14 | 0x20<<7 | 0x51,\n\t33901 - 19968: jis0208<<14 | 0x47<<7 | 0x32,\n\t33902 - 19968: jis0208<<14 | 0x47<<7 | 0x3A,\n\t33903 - 19968: jis0208<<14 | 0x47<<7 | 0x3F,\n\t33904 - 19968: jis0212<<14 | 0x37<<7 | 0x40,\n\t33905 - 19968: jis0208<<14 | 0x26<<7 | 0x0B,\n\t33907 - 19968: jis0212<<14 | 0x37<<7 | 0x41,\n\t33908 - 19968: jis0212<<14 | 0x37<<7 | 0x42,\n\t33909 - 19968: jis0208<<14 | 0x0F<<7 | 0x09,\n\t33910 - 19968: jis0212<<14 | 0x37<<7 | 0x43,\n\t33911 - 19968: jis0208<<14 | 0x47<<7 | 0x37,\n\t33912 - 19968: jis0212<<14 | 0x37<<7 | 0x44,\n\t33913 - 19968: jis0208<<14 | 0x47<<7 | 0x40,\n\t33914 - 19968: jis0208<<14 | 0x28<<7 | 0x57,\n\t33916 - 19968: jis0212<<14 | 0x37<<7 | 0x45,\n\t33917 - 19968: jis0212<<14 | 0x37<<7 | 0x46,\n\t33921 - 19968: jis0212<<14 | 0x37<<7 | 0x47,\n\t33922 - 19968: jis0208<<14 | 0x47<<7 | 0x3B,\n\t33924 - 19968: jis0208<<14 | 0x47<<7 | 0x36,\n\t33925 - 19968: jis0212<<14 | 0x37<<7 | 0x48,\n\t33931 - 19968: jis0208<<14 | 0x1D<<7 | 0x34,\n\t33936 - 19968: jis0208<<14 | 0x1C<<7 | 0x0E,\n\t33938 - 19968: jis0212<<14 | 0x37<<7 | 0x49,\n\t33939 - 19968: jis0212<<14 | 0x37<<7 | 0x4A,\n\t33940 - 19968: jis0208<<14 | 0x1B<<7 | 0x0B,\n\t33941 - 19968: jis0212<<14 | 0x37<<7 | 0x4B,\n\t33945 - 19968: jis0208<<14 | 0x2B<<7 | 0x37,\n\t33948 - 19968: jis0208<<14 | 0x28<<7 | 0x26,\n\t33950 - 19968: jis0212<<14 | 0x37<<7 | 0x4C,\n\t33951 - 19968: jis0208<<14 | 0x47<<7 | 0x46,\n\t33953 - 19968: jis0208<<14 | 0x47<<7 | 0x4F,\n\t33958 - 19968: jis0212<<14 | 0x37<<7 | 0x4D,\n\t33960 - 19968: jis0212<<14 | 0x37<<7 | 0x4E,\n\t33961 - 19968: jis0212<<14 | 0x37<<7 | 0x4F,\n\t33962 - 19968: jis0212<<14 | 0x37<<7 | 0x50,\n\t33965 - 19968: jis0208<<14 | 0x47<<7 | 0x39,\n\t33967 - 19968: jis0212<<14 | 0x37<<7 | 0x51,\n\t33969 - 19968: jis0212<<14 | 0x37<<7 | 0x52,\n\t33970 - 19968: jis0208<<14 | 0x12<<7 | 0x56,\n\t33972 - 19968: jis0208<<14 | 0x5A<<7 | 0x3C,\n\t33976 - 19968: jis0208<<14 | 0x1D<<7 | 0x57,\n\t33977 - 19968: jis0208<<14 | 0x47<<7 | 0x44,\n\t33978 - 19968: jis0212<<14 | 0x37<<7 | 0x54,\n\t33979 - 19968: jis0208<<14 | 0x47<<7 | 0x49,\n\t33980 - 19968: jis0208<<14 | 0x20<<7 | 0x52,\n\t33981 - 19968: jis0212<<14 | 0x37<<7 | 0x55,\n\t33982 - 19968: jis0212<<14 | 0x37<<7 | 0x56,\n\t33983 - 19968: jis0208<<14 | 0x47<<7 | 0x45,\n\t33984 - 19968: jis0212<<14 | 0x37<<7 | 0x57,\n\t33985 - 19968: jis0208<<14 | 0x47<<7 | 0x4C,\n\t33986 - 19968: jis0212<<14 | 0x37<<7 | 0x58,\n\t33988 - 19968: jis0208<<14 | 0x22<<7 | 0x3E,\n\t33990 - 19968: jis0208<<14 | 0x47<<7 | 0x4D,\n\t33991 - 19968: jis0212<<14 | 0x37<<7 | 0x59,\n\t33992 - 19968: jis0212<<14 | 0x37<<7 | 0x5A,\n\t33993 - 19968: jis0208<<14 | 0x2C<<7 | 0x35,\n\t33994 - 19968: jis0208<<14 | 0x47<<7 | 0x42,\n\t33995 - 19968: jis0208<<14 | 0x12<<7 | 0x17,\n\t33996 - 19968: jis0212<<14 | 0x37<<7 | 0x5B,\n\t33997 - 19968: jis0208<<14 | 0x47<<7 | 0x48,\n\t33999 - 19968: jis0212<<14 | 0x37<<7 | 0x5C,\n\t34000 - 19968: jis0208<<14 | 0x47<<7 | 0x4B,\n\t34001 - 19968: jis0208<<14 | 0x2B<<7 | 0x0B,\n\t34003 - 19968: jis0212<<14 | 0x37<<7 | 0x5D,\n\t34006 - 19968: jis0208<<14 | 0x47<<7 | 0x4E,\n\t34009 - 19968: jis0208<<14 | 0x47<<7 | 0x47,\n\t34010 - 19968: jis0208<<14 | 0x47<<7 | 0x4A,\n\t34012 - 19968: jis0208<<14 | 0x58<<7 | 0x04,\n\t34023 - 19968: jis0212<<14 | 0x38<<7 | 0x01,\n\t34026 - 19968: jis0212<<14 | 0x38<<7 | 0x02,\n\t34028 - 19968: jis0208<<14 | 0x2A<<7 | 0x08,\n\t34030 - 19968: jis0208<<14 | 0x2E<<7 | 0x00,\n\t34031 - 19968: jis0212<<14 | 0x38<<7 | 0x03,\n\t34032 - 19968: jis0212<<14 | 0x38<<7 | 0x04,\n\t34033 - 19968: jis0212<<14 | 0x38<<7 | 0x05,\n\t34034 - 19968: jis0212<<14 | 0x38<<7 | 0x06,\n\t34036 - 19968: jis0208<<14 | 0x47<<7 | 0x52,\n\t34039 - 19968: jis0212<<14 | 0x38<<7 | 0x07,\n\t34042 - 19968: jis0212<<14 | 0x38<<7 | 0x09,\n\t34043 - 19968: jis0212<<14 | 0x38<<7 | 0x0A,\n\t34044 - 19968: jis0208<<14 | 0x47<<7 | 0x59,\n\t34045 - 19968: jis0212<<14 | 0x38<<7 | 0x0B,\n\t34047 - 19968: jis0208<<14 | 0x47<<7 | 0x51,\n\t34048 - 19968: jis0208<<14 | 0x1B<<7 | 0x22,\n\t34050 - 19968: jis0212<<14 | 0x38<<7 | 0x0C,\n\t34051 - 19968: jis0212<<14 | 0x38<<7 | 0x0D,\n\t34054 - 19968: jis0208<<14 | 0x47<<7 | 0x30,\n\t34055 - 19968: jis0212<<14 | 0x38<<7 | 0x0E,\n\t34060 - 19968: jis0212<<14 | 0x38<<7 | 0x0F,\n\t34062 - 19968: jis0212<<14 | 0x38<<7 | 0x10,\n\t34064 - 19968: jis0212<<14 | 0x38<<7 | 0x11,\n\t34065 - 19968: jis0208<<14 | 0x29<<7 | 0x2D,\n\t34067 - 19968: jis0208<<14 | 0x2B<<7 | 0x01,\n\t34068 - 19968: jis0208<<14 | 0x47<<7 | 0x58,\n\t34069 - 19968: jis0208<<14 | 0x47<<7 | 0x57,\n\t34071 - 19968: jis0208<<14 | 0x47<<7 | 0x53,\n\t34072 - 19968: jis0208<<14 | 0x47<<7 | 0x54,\n\t34074 - 19968: jis0208<<14 | 0x10<<7 | 0x15,\n\t34076 - 19968: jis0212<<14 | 0x38<<7 | 0x12,\n\t34078 - 19968: jis0212<<14 | 0x38<<7 | 0x13,\n\t34079 - 19968: jis0208<<14 | 0x47<<7 | 0x56,\n\t34081 - 19968: jis0208<<14 | 0x47<<7 | 0x50,\n\t34082 - 19968: jis0212<<14 | 0x38<<7 | 0x14,\n\t34083 - 19968: jis0212<<14 | 0x38<<7 | 0x15,\n\t34084 - 19968: jis0212<<14 | 0x38<<7 | 0x16,\n\t34085 - 19968: jis0212<<14 | 0x38<<7 | 0x17,\n\t34086 - 19968: jis0208<<14 | 0x23<<7 | 0x34,\n\t34087 - 19968: jis0212<<14 | 0x38<<7 | 0x18,\n\t34090 - 19968: jis0212<<14 | 0x38<<7 | 0x19,\n\t34091 - 19968: jis0212<<14 | 0x38<<7 | 0x1A,\n\t34092 - 19968: jis0208<<14 | 0x47<<7 | 0x55,\n\t34093 - 19968: jis0208<<14 | 0x0F<<7 | 0x5D,\n\t34095 - 19968: jis0212<<14 | 0x38<<7 | 0x1B,\n\t34098 - 19968: jis0212<<14 | 0x38<<7 | 0x08,\n\t34099 - 19968: jis0212<<14 | 0x38<<7 | 0x1C,\n\t34100 - 19968: jis0212<<14 | 0x38<<7 | 0x1D,\n\t34101 - 19968: jis0208<<14 | 0x21<<7 | 0x01,\n\t34102 - 19968: jis0212<<14 | 0x38<<7 | 0x1E,\n\t34109 - 19968: jis0208<<14 | 0x29<<7 | 0x22,\n\t34111 - 19968: jis0212<<14 | 0x38<<7 | 0x1F,\n\t34112 - 19968: jis0208<<14 | 0x47<<7 | 0x5A,\n\t34113 - 19968: jis0208<<14 | 0x48<<7 | 0x00,\n\t34115 - 19968: jis0208<<14 | 0x27<<7 | 0x38,\n\t34118 - 19968: jis0212<<14 | 0x38<<7 | 0x20,\n\t34120 - 19968: jis0208<<14 | 0x47<<7 | 0x5D,\n\t34121 - 19968: jis0208<<14 | 0x1D<<7 | 0x35,\n\t34122 - 19968: jis0208<<14 | 0x1B<<7 | 0x28,\n\t34123 - 19968: jis0208<<14 | 0x48<<7 | 0x02,\n\t34126 - 19968: jis0208<<14 | 0x15<<7 | 0x1D,\n\t34127 - 19968: jis0212<<14 | 0x38<<7 | 0x21,\n\t34128 - 19968: jis0212<<14 | 0x38<<7 | 0x22,\n\t34129 - 19968: jis0212<<14 | 0x38<<7 | 0x23,\n\t34130 - 19968: jis0212<<14 | 0x38<<7 | 0x24,\n\t34131 - 19968: jis0208<<14 | 0x5A<<7 | 0x3D,\n\t34133 - 19968: jis0208<<14 | 0x48<<7 | 0x03,\n\t34134 - 19968: jis0212<<14 | 0x38<<7 | 0x26,\n\t34135 - 19968: jis0208<<14 | 0x28<<7 | 0x58,\n\t34136 - 19968: jis0208<<14 | 0x47<<7 | 0x5C,\n\t34137 - 19968: jis0208<<14 | 0x5A<<7 | 0x3E,\n\t34138 - 19968: jis0208<<14 | 0x47<<7 | 0x35,\n\t34140 - 19968: jis0212<<14 | 0x38<<7 | 0x28,\n\t34141 - 19968: jis0212<<14 | 0x38<<7 | 0x29,\n\t34142 - 19968: jis0212<<14 | 0x38<<7 | 0x2A,\n\t34143 - 19968: jis0212<<14 | 0x38<<7 | 0x2B,\n\t34144 - 19968: jis0212<<14 | 0x38<<7 | 0x2C,\n\t34145 - 19968: jis0212<<14 | 0x38<<7 | 0x2D,\n\t34146 - 19968: jis0212<<14 | 0x38<<7 | 0x2E,\n\t34147 - 19968: jis0208<<14 | 0x47<<7 | 0x5B,\n\t34148 - 19968: jis0212<<14 | 0x38<<7 | 0x2F,\n\t34152 - 19968: jis0208<<14 | 0x2E<<7 | 0x2E,\n\t34153 - 19968: jis0208<<14 | 0x25<<7 | 0x01,\n\t34154 - 19968: jis0208<<14 | 0x28<<7 | 0x52,\n\t34155 - 19968: jis0208<<14 | 0x5A<<7 | 0x3F,\n\t34157 - 19968: jis0208<<14 | 0x48<<7 | 0x0A,\n\t34159 - 19968: jis0212<<14 | 0x38<<7 | 0x31,\n\t34167 - 19968: jis0208<<14 | 0x48<<7 | 0x10,\n\t34169 - 19968: jis0212<<14 | 0x38<<7 | 0x32,\n\t34170 - 19968: jis0212<<14 | 0x38<<7 | 0x33,\n\t34171 - 19968: jis0212<<14 | 0x38<<7 | 0x34,\n\t34173 - 19968: jis0212<<14 | 0x38<<7 | 0x35,\n\t34174 - 19968: jis0208<<14 | 0x48<<7 | 0x11,\n\t34175 - 19968: jis0212<<14 | 0x38<<7 | 0x36,\n\t34176 - 19968: jis0208<<14 | 0x48<<7 | 0x04,\n\t34177 - 19968: jis0212<<14 | 0x38<<7 | 0x37,\n\t34180 - 19968: jis0208<<14 | 0x26<<7 | 0x55,\n\t34181 - 19968: jis0212<<14 | 0x38<<7 | 0x38,\n\t34182 - 19968: jis0212<<14 | 0x38<<7 | 0x39,\n\t34183 - 19968: jis0208<<14 | 0x48<<7 | 0x0E,\n\t34184 - 19968: jis0208<<14 | 0x48<<7 | 0x06,\n\t34185 - 19968: jis0212<<14 | 0x38<<7 | 0x3A,\n\t34186 - 19968: jis0208<<14 | 0x48<<7 | 0x08,\n\t34187 - 19968: jis0212<<14 | 0x38<<7 | 0x3B,\n\t34188 - 19968: jis0212<<14 | 0x38<<7 | 0x3C,\n\t34191 - 19968: jis0212<<14 | 0x38<<7 | 0x3D,\n\t34192 - 19968: jis0208<<14 | 0x48<<7 | 0x12,\n\t34193 - 19968: jis0208<<14 | 0x48<<7 | 0x07,\n\t34195 - 19968: jis0212<<14 | 0x38<<7 | 0x3E,\n\t34196 - 19968: jis0208<<14 | 0x48<<7 | 0x0B,\n\t34199 - 19968: jis0208<<14 | 0x10<<7 | 0x51,\n\t34200 - 19968: jis0212<<14 | 0x38<<7 | 0x3F,\n\t34201 - 19968: jis0208<<14 | 0x25<<7 | 0x44,\n\t34203 - 19968: jis0208<<14 | 0x48<<7 | 0x0C,\n\t34204 - 19968: jis0208<<14 | 0x48<<7 | 0x0F,\n\t34205 - 19968: jis0212<<14 | 0x38<<7 | 0x40,\n\t34207 - 19968: jis0212<<14 | 0x38<<7 | 0x41,\n\t34208 - 19968: jis0212<<14 | 0x38<<7 | 0x42,\n\t34210 - 19968: jis0212<<14 | 0x38<<7 | 0x43,\n\t34212 - 19968: jis0208<<14 | 0x48<<7 | 0x05,\n\t34213 - 19968: jis0212<<14 | 0x38<<7 | 0x44,\n\t34214 - 19968: jis0208<<14 | 0x20<<7 | 0x05,\n\t34215 - 19968: jis0212<<14 | 0x38<<7 | 0x45,\n\t34216 - 19968: jis0208<<14 | 0x48<<7 | 0x09,\n\t34217 - 19968: jis0208<<14 | 0x1A<<7 | 0x06,\n\t34218 - 19968: jis0208<<14 | 0x1E<<7 | 0x24,\n\t34219 - 19968: jis0208<<14 | 0x16<<7 | 0x0F,\n\t34220 - 19968: jis0208<<14 | 0x2B<<7 | 0x53,\n\t34221 - 19968: jis0212<<14 | 0x38<<7 | 0x53,\n\t34222 - 19968: jis0208<<14 | 0x2B<<7 | 0x58,\n\t34223 - 19968: jis0208<<14 | 0x1C<<7 | 0x51,\n\t34224 - 19968: jis0208<<14 | 0x5A<<7 | 0x41,\n\t34228 - 19968: jis0212<<14 | 0x38<<7 | 0x46,\n\t34230 - 19968: jis0212<<14 | 0x38<<7 | 0x47,\n\t34231 - 19968: jis0212<<14 | 0x38<<7 | 0x48,\n\t34232 - 19968: jis0212<<14 | 0x38<<7 | 0x49,\n\t34233 - 19968: jis0208<<14 | 0x48<<7 | 0x16,\n\t34234 - 19968: jis0208<<14 | 0x48<<7 | 0x14,\n\t34236 - 19968: jis0212<<14 | 0x38<<7 | 0x4A,\n\t34237 - 19968: jis0212<<14 | 0x38<<7 | 0x4B,\n\t34238 - 19968: jis0212<<14 | 0x38<<7 | 0x4C,\n\t34239 - 19968: jis0212<<14 | 0x38<<7 | 0x4D,\n\t34241 - 19968: jis0208<<14 | 0x2E<<7 | 0x2D,\n\t34242 - 19968: jis0212<<14 | 0x38<<7 | 0x4E,\n\t34247 - 19968: jis0212<<14 | 0x38<<7 | 0x4F,\n\t34249 - 19968: jis0208<<14 | 0x48<<7 | 0x13,\n\t34250 - 19968: jis0212<<14 | 0x38<<7 | 0x50,\n\t34251 - 19968: jis0212<<14 | 0x38<<7 | 0x51,\n\t34253 - 19968: jis0208<<14 | 0x2C<<7 | 0x54,\n\t34254 - 19968: jis0212<<14 | 0x38<<7 | 0x52,\n\t34255 - 19968: jis0208<<14 | 0x48<<7 | 0x15,\n\t34256 - 19968: jis0208<<14 | 0x48<<7 | 0x17,\n\t34261 - 19968: jis0208<<14 | 0x48<<7 | 0x18,\n\t34264 - 19968: jis0212<<14 | 0x38<<7 | 0x54,\n\t34266 - 19968: jis0212<<14 | 0x38<<7 | 0x55,\n\t34268 - 19968: jis0208<<14 | 0x48<<7 | 0x1B,\n\t34269 - 19968: jis0208<<14 | 0x48<<7 | 0x19,\n\t34271 - 19968: jis0212<<14 | 0x38<<7 | 0x56,\n\t34272 - 19968: jis0212<<14 | 0x38<<7 | 0x57,\n\t34276 - 19968: jis0208<<14 | 0x25<<7 | 0x02,\n\t34277 - 19968: jis0208<<14 | 0x48<<7 | 0x1A,\n\t34278 - 19968: jis0212<<14 | 0x38<<7 | 0x58,\n\t34280 - 19968: jis0212<<14 | 0x38<<7 | 0x59,\n\t34281 - 19968: jis0208<<14 | 0x27<<7 | 0x2C,\n\t34282 - 19968: jis0208<<14 | 0x48<<7 | 0x0D,\n\t34285 - 19968: jis0212<<14 | 0x38<<7 | 0x5A,\n\t34291 - 19968: jis0212<<14 | 0x38<<7 | 0x5B,\n\t34294 - 19968: jis0212<<14 | 0x38<<7 | 0x5C,\n\t34295 - 19968: jis0208<<14 | 0x1C<<7 | 0x52,\n\t34297 - 19968: jis0208<<14 | 0x48<<7 | 0x1C,\n\t34298 - 19968: jis0208<<14 | 0x48<<7 | 0x21,\n\t34299 - 19968: jis0208<<14 | 0x20<<7 | 0x53,\n\t34300 - 19968: jis0212<<14 | 0x38<<7 | 0x5D,\n\t34302 - 19968: jis0208<<14 | 0x48<<7 | 0x20,\n\t34303 - 19968: jis0212<<14 | 0x39<<7 | 0x00,\n\t34304 - 19968: jis0212<<14 | 0x39<<7 | 0x01,\n\t34306 - 19968: jis0208<<14 | 0x48<<7 | 0x01,\n\t34308 - 19968: jis0212<<14 | 0x39<<7 | 0x02,\n\t34309 - 19968: jis0212<<14 | 0x39<<7 | 0x03,\n\t34310 - 19968: jis0208<<14 | 0x48<<7 | 0x22,\n\t34311 - 19968: jis0208<<14 | 0x20<<7 | 0x28,\n\t34314 - 19968: jis0208<<14 | 0x48<<7 | 0x1D,\n\t34315 - 19968: jis0208<<14 | 0x48<<7 | 0x1F,\n\t34317 - 19968: jis0212<<14 | 0x39<<7 | 0x04,\n\t34318 - 19968: jis0212<<14 | 0x39<<7 | 0x05,\n\t34320 - 19968: jis0212<<14 | 0x39<<7 | 0x06,\n\t34321 - 19968: jis0212<<14 | 0x39<<7 | 0x07,\n\t34322 - 19968: jis0212<<14 | 0x39<<7 | 0x08,\n\t34323 - 19968: jis0208<<14 | 0x48<<7 | 0x1E,\n\t34326 - 19968: jis0208<<14 | 0x3C<<7 | 0x10,\n\t34327 - 19968: jis0208<<14 | 0x3C<<7 | 0x01,\n\t34328 - 19968: jis0212<<14 | 0x39<<7 | 0x09,\n\t34329 - 19968: jis0212<<14 | 0x39<<7 | 0x0A,\n\t34330 - 19968: jis0208<<14 | 0x48<<7 | 0x24,\n\t34331 - 19968: jis0212<<14 | 0x39<<7 | 0x0B,\n\t34334 - 19968: jis0212<<14 | 0x39<<7 | 0x0C,\n\t34337 - 19968: jis0212<<14 | 0x39<<7 | 0x0D,\n\t34338 - 19968: jis0208<<14 | 0x48<<7 | 0x23,\n\t34343 - 19968: jis0212<<14 | 0x39<<7 | 0x0E,\n\t34345 - 19968: jis0212<<14 | 0x39<<7 | 0x0F,\n\t34349 - 19968: jis0208<<14 | 0x2C<<7 | 0x55,\n\t34351 - 19968: jis0208<<14 | 0x41<<7 | 0x1B,\n\t34352 - 19968: jis0208<<14 | 0x48<<7 | 0x25,\n\t34358 - 19968: jis0212<<14 | 0x39<<7 | 0x10,\n\t34360 - 19968: jis0212<<14 | 0x39<<7 | 0x11,\n\t34362 - 19968: jis0212<<14 | 0x39<<7 | 0x12,\n\t34364 - 19968: jis0212<<14 | 0x39<<7 | 0x13,\n\t34365 - 19968: jis0212<<14 | 0x39<<7 | 0x14,\n\t34367 - 19968: jis0208<<14 | 0x48<<7 | 0x26,\n\t34368 - 19968: jis0212<<14 | 0x39<<7 | 0x15,\n\t34369 - 19968: jis0212<<14 | 0x17<<7 | 0x45,\n\t34370 - 19968: jis0212<<14 | 0x39<<7 | 0x16,\n\t34374 - 19968: jis0212<<14 | 0x39<<7 | 0x17,\n\t34381 - 19968: jis0208<<14 | 0x48<<7 | 0x27,\n\t34382 - 19968: jis0208<<14 | 0x17<<7 | 0x36,\n\t34384 - 19968: jis0208<<14 | 0x14<<7 | 0x33,\n\t34386 - 19968: jis0212<<14 | 0x39<<7 | 0x18,\n\t34387 - 19968: jis0212<<14 | 0x39<<7 | 0x19,\n\t34388 - 19968: jis0208<<14 | 0x48<<7 | 0x29,\n\t34389 - 19968: jis0208<<14 | 0x30<<7 | 0x3C,\n\t34390 - 19968: jis0212<<14 | 0x39<<7 | 0x1A,\n\t34391 - 19968: jis0212<<14 | 0x39<<7 | 0x1B,\n\t34392 - 19968: jis0212<<14 | 0x39<<7 | 0x1C,\n\t34393 - 19968: jis0212<<14 | 0x39<<7 | 0x1D,\n\t34394 - 19968: jis0208<<14 | 0x14<<7 | 0x54,\n\t34396 - 19968: jis0208<<14 | 0x2D<<7 | 0x19,\n\t34397 - 19968: jis0212<<14 | 0x39<<7 | 0x1E,\n\t34398 - 19968: jis0208<<14 | 0x15<<7 | 0x52,\n\t34399 - 19968: jis0208<<14 | 0x48<<7 | 0x2A,\n\t34400 - 19968: jis0212<<14 | 0x39<<7 | 0x1F,\n\t34401 - 19968: jis0212<<14 | 0x39<<7 | 0x20,\n\t34402 - 19968: jis0212<<14 | 0x39<<7 | 0x21,\n\t34403 - 19968: jis0212<<14 | 0x39<<7 | 0x22,\n\t34404 - 19968: jis0212<<14 | 0x39<<7 | 0x23,\n\t34407 - 19968: jis0208<<14 | 0x48<<7 | 0x2B,\n\t34409 - 19968: jis0212<<14 | 0x39<<7 | 0x24,\n\t34411 - 19968: jis0208<<14 | 0x22<<7 | 0x4D,\n\t34412 - 19968: jis0212<<14 | 0x39<<7 | 0x25,\n\t34415 - 19968: jis0212<<14 | 0x39<<7 | 0x26,\n\t34417 - 19968: jis0208<<14 | 0x48<<7 | 0x2C,\n\t34421 - 19968: jis0212<<14 | 0x39<<7 | 0x27,\n\t34422 - 19968: jis0212<<14 | 0x39<<7 | 0x28,\n\t34423 - 19968: jis0212<<14 | 0x39<<7 | 0x29,\n\t34425 - 19968: jis0208<<14 | 0x25<<7 | 0x59,\n\t34426 - 19968: jis0212<<14 | 0x39<<7 | 0x2A,\n\t34427 - 19968: jis0208<<14 | 0x0F<<7 | 0x19,\n\t34440 - 19968: jis0212<<14 | 0x39<<7 | 0x4C,\n\t34442 - 19968: jis0208<<14 | 0x11<<7 | 0x42,\n\t34443 - 19968: jis0208<<14 | 0x48<<7 | 0x31,\n\t34444 - 19968: jis0208<<14 | 0x48<<7 | 0x32,\n\t34445 - 19968: jis0212<<14 | 0x39<<7 | 0x2B,\n\t34449 - 19968: jis0212<<14 | 0x39<<7 | 0x2C,\n\t34451 - 19968: jis0208<<14 | 0x48<<7 | 0x2D,\n\t34453 - 19968: jis0208<<14 | 0x1A<<7 | 0x1C,\n\t34454 - 19968: jis0212<<14 | 0x39<<7 | 0x2D,\n\t34456 - 19968: jis0212<<14 | 0x39<<7 | 0x2E,\n\t34458 - 19968: jis0212<<14 | 0x39<<7 | 0x2F,\n\t34460 - 19968: jis0212<<14 | 0x39<<7 | 0x30,\n\t34465 - 19968: jis0212<<14 | 0x39<<7 | 0x31,\n\t34467 - 19968: jis0208<<14 | 0x48<<7 | 0x2E,\n\t34468 - 19968: jis0208<<14 | 0x26<<7 | 0x21,\n\t34470 - 19968: jis0212<<14 | 0x39<<7 | 0x32,\n\t34471 - 19968: jis0212<<14 | 0x39<<7 | 0x33,\n\t34472 - 19968: jis0212<<14 | 0x39<<7 | 0x34,\n\t34473 - 19968: jis0208<<14 | 0x48<<7 | 0x2F,\n\t34474 - 19968: jis0208<<14 | 0x48<<7 | 0x30,\n\t34475 - 19968: jis0208<<14 | 0x48<<7 | 0x3A,\n\t34477 - 19968: jis0212<<14 | 0x39<<7 | 0x35,\n\t34479 - 19968: jis0208<<14 | 0x48<<7 | 0x34,\n\t34480 - 19968: jis0208<<14 | 0x48<<7 | 0x37,\n\t34481 - 19968: jis0212<<14 | 0x39<<7 | 0x36,\n\t34483 - 19968: jis0212<<14 | 0x39<<7 | 0x37,\n\t34484 - 19968: jis0212<<14 | 0x39<<7 | 0x38,\n\t34485 - 19968: jis0212<<14 | 0x39<<7 | 0x39,\n\t34486 - 19968: jis0208<<14 | 0x48<<7 | 0x33,\n\t34487 - 19968: jis0212<<14 | 0x39<<7 | 0x3A,\n\t34488 - 19968: jis0212<<14 | 0x39<<7 | 0x3B,\n\t34489 - 19968: jis0212<<14 | 0x39<<7 | 0x3C,\n\t34495 - 19968: jis0212<<14 | 0x39<<7 | 0x3D,\n\t34496 - 19968: jis0212<<14 | 0x39<<7 | 0x3E,\n\t34497 - 19968: jis0212<<14 | 0x39<<7 | 0x3F,\n\t34499 - 19968: jis0212<<14 | 0x39<<7 | 0x40,\n\t34500 - 19968: jis0208<<14 | 0x48<<7 | 0x35,\n\t34501 - 19968: jis0212<<14 | 0x39<<7 | 0x41,\n\t34502 - 19968: jis0208<<14 | 0x48<<7 | 0x36,\n\t34503 - 19968: jis0208<<14 | 0x1B<<7 | 0x37,\n\t34505 - 19968: jis0208<<14 | 0x48<<7 | 0x38,\n\t34507 - 19968: jis0208<<14 | 0x22<<7 | 0x20,\n\t34509 - 19968: jis0208<<14 | 0x16<<7 | 0x35,\n\t34510 - 19968: jis0208<<14 | 0x12<<7 | 0x21,\n\t34513 - 19968: jis0212<<14 | 0x39<<7 | 0x42,\n\t34514 - 19968: jis0212<<14 | 0x39<<7 | 0x43,\n\t34516 - 19968: jis0208<<14 | 0x48<<7 | 0x3B,\n\t34517 - 19968: jis0212<<14 | 0x39<<7 | 0x44,\n\t34519 - 19968: jis0212<<14 | 0x39<<7 | 0x45,\n\t34521 - 19968: jis0208<<14 | 0x12<<7 | 0x1E,\n\t34522 - 19968: jis0212<<14 | 0x39<<7 | 0x46,\n\t34523 - 19968: jis0208<<14 | 0x48<<7 | 0x40,\n\t34524 - 19968: jis0212<<14 | 0x39<<7 | 0x47,\n\t34526 - 19968: jis0208<<14 | 0x48<<7 | 0x3C,\n\t34527 - 19968: jis0208<<14 | 0x48<<7 | 0x3F,\n\t34528 - 19968: jis0212<<14 | 0x39<<7 | 0x48,\n\t34531 - 19968: jis0212<<14 | 0x39<<7 | 0x49,\n\t34532 - 19968: jis0208<<14 | 0x27<<7 | 0x19,\n\t34533 - 19968: jis0212<<14 | 0x39<<7 | 0x4A,\n\t34535 - 19968: jis0212<<14 | 0x39<<7 | 0x4B,\n\t34537 - 19968: jis0208<<14 | 0x48<<7 | 0x3D,\n\t34540 - 19968: jis0208<<14 | 0x48<<7 | 0x3E,\n\t34541 - 19968: jis0208<<14 | 0x28<<7 | 0x27,\n\t34542 - 19968: jis0208<<14 | 0x27<<7 | 0x39,\n\t34543 - 19968: jis0208<<14 | 0x48<<7 | 0x41,\n\t34552 - 19968: jis0208<<14 | 0x21<<7 | 0x5C,\n\t34553 - 19968: jis0208<<14 | 0x48<<7 | 0x4B,\n\t34554 - 19968: jis0212<<14 | 0x39<<7 | 0x4D,\n\t34555 - 19968: jis0208<<14 | 0x48<<7 | 0x47,\n\t34556 - 19968: jis0212<<14 | 0x39<<7 | 0x4E,\n\t34557 - 19968: jis0212<<14 | 0x39<<7 | 0x4F,\n\t34558 - 19968: jis0208<<14 | 0x11<<7 | 0x4A,\n\t34560 - 19968: jis0208<<14 | 0x48<<7 | 0x45,\n\t34562 - 19968: jis0208<<14 | 0x2A<<7 | 0x09,\n\t34563 - 19968: jis0208<<14 | 0x48<<7 | 0x46,\n\t34564 - 19968: jis0212<<14 | 0x39<<7 | 0x50,\n\t34565 - 19968: jis0212<<14 | 0x39<<7 | 0x51,\n\t34566 - 19968: jis0208<<14 | 0x48<<7 | 0x43,\n\t34567 - 19968: jis0212<<14 | 0x39<<7 | 0x52,\n\t34568 - 19968: jis0208<<14 | 0x48<<7 | 0x44,\n\t34569 - 19968: jis0208<<14 | 0x48<<7 | 0x49,\n\t34570 - 19968: jis0208<<14 | 0x48<<7 | 0x4C,\n\t34571 - 19968: jis0212<<14 | 0x39<<7 | 0x53,\n\t34573 - 19968: jis0208<<14 | 0x48<<7 | 0x4A,\n\t34574 - 19968: jis0212<<14 | 0x39<<7 | 0x54,\n\t34575 - 19968: jis0212<<14 | 0x39<<7 | 0x55,\n\t34576 - 19968: jis0212<<14 | 0x39<<7 | 0x56,\n\t34577 - 19968: jis0208<<14 | 0x48<<7 | 0x48,\n\t34578 - 19968: jis0208<<14 | 0x48<<7 | 0x42,\n\t34579 - 19968: jis0212<<14 | 0x39<<7 | 0x57,\n\t34580 - 19968: jis0212<<14 | 0x39<<7 | 0x58,\n\t34584 - 19968: jis0208<<14 | 0x22<<7 | 0x37,\n\t34585 - 19968: jis0212<<14 | 0x39<<7 | 0x59,\n\t34586 - 19968: jis0208<<14 | 0x48<<7 | 0x53,\n\t34588 - 19968: jis0208<<14 | 0x2B<<7 | 0x09,\n\t34590 - 19968: jis0212<<14 | 0x39<<7 | 0x5A,\n\t34591 - 19968: jis0212<<14 | 0x39<<7 | 0x5B,\n\t34593 - 19968: jis0212<<14 | 0x39<<7 | 0x5C,\n\t34595 - 19968: jis0212<<14 | 0x39<<7 | 0x5D,\n\t34597 - 19968: jis0208<<14 | 0x48<<7 | 0x51,\n\t34600 - 19968: jis0212<<14 | 0x3A<<7 | 0x00,\n\t34601 - 19968: jis0208<<14 | 0x48<<7 | 0x52,\n\t34606 - 19968: jis0212<<14 | 0x3A<<7 | 0x01,\n\t34607 - 19968: jis0212<<14 | 0x3A<<7 | 0x02,\n\t34609 - 19968: jis0212<<14 | 0x3A<<7 | 0x03,\n\t34610 - 19968: jis0212<<14 | 0x3A<<7 | 0x04,\n\t34612 - 19968: jis0208<<14 | 0x48<<7 | 0x4D,\n\t34615 - 19968: jis0208<<14 | 0x48<<7 | 0x4F,\n\t34617 - 19968: jis0212<<14 | 0x3A<<7 | 0x05,\n\t34618 - 19968: jis0212<<14 | 0x3A<<7 | 0x06,\n\t34619 - 19968: jis0208<<14 | 0x48<<7 | 0x50,\n\t34620 - 19968: jis0212<<14 | 0x3A<<7 | 0x07,\n\t34621 - 19968: jis0212<<14 | 0x3A<<7 | 0x08,\n\t34622 - 19968: jis0212<<14 | 0x3A<<7 | 0x09,\n\t34623 - 19968: jis0208<<14 | 0x48<<7 | 0x4E,\n\t34624 - 19968: jis0212<<14 | 0x3A<<7 | 0x0A,\n\t34627 - 19968: jis0212<<14 | 0x3A<<7 | 0x0B,\n\t34629 - 19968: jis0212<<14 | 0x3A<<7 | 0x0C,\n\t34633 - 19968: jis0208<<14 | 0x1F<<7 | 0x45,\n\t34635 - 19968: jis0208<<14 | 0x2E<<7 | 0x18,\n\t34636 - 19968: jis0208<<14 | 0x48<<7 | 0x57,\n\t34637 - 19968: jis0212<<14 | 0x3A<<7 | 0x0D,\n\t34638 - 19968: jis0208<<14 | 0x48<<7 | 0x58,\n\t34643 - 19968: jis0208<<14 | 0x49<<7 | 0x00,\n\t34645 - 19968: jis0208<<14 | 0x1E<<7 | 0x09,\n\t34647 - 19968: jis0208<<14 | 0x48<<7 | 0x5A,\n\t34648 - 19968: jis0212<<14 | 0x3A<<7 | 0x0E,\n\t34649 - 19968: jis0208<<14 | 0x48<<7 | 0x5D,\n\t34653 - 19968: jis0212<<14 | 0x3A<<7 | 0x0F,\n\t34655 - 19968: jis0208<<14 | 0x48<<7 | 0x55,\n\t34656 - 19968: jis0208<<14 | 0x48<<7 | 0x54,\n\t34657 - 19968: jis0212<<14 | 0x3A<<7 | 0x10,\n\t34659 - 19968: jis0208<<14 | 0x49<<7 | 0x01,\n\t34660 - 19968: jis0212<<14 | 0x3A<<7 | 0x11,\n\t34661 - 19968: jis0212<<14 | 0x3A<<7 | 0x12,\n\t34662 - 19968: jis0208<<14 | 0x11<<7 | 0x3B,\n\t34664 - 19968: jis0208<<14 | 0x48<<7 | 0x5B,\n\t34666 - 19968: jis0208<<14 | 0x49<<7 | 0x02,\n\t34670 - 19968: jis0208<<14 | 0x48<<7 | 0x5C,\n\t34671 - 19968: jis0212<<14 | 0x3A<<7 | 0x13,\n\t34673 - 19968: jis0212<<14 | 0x3A<<7 | 0x14,\n\t34674 - 19968: jis0212<<14 | 0x3A<<7 | 0x15,\n\t34676 - 19968: jis0208<<14 | 0x48<<7 | 0x59,\n\t34678 - 19968: jis0208<<14 | 0x23<<7 | 0x12,\n\t34680 - 19968: jis0208<<14 | 0x48<<7 | 0x56,\n\t34683 - 19968: jis0212<<14 | 0x3A<<7 | 0x16,\n\t34687 - 19968: jis0208<<14 | 0x26<<7 | 0x47,\n\t34690 - 19968: jis0208<<14 | 0x49<<7 | 0x06,\n\t34691 - 19968: jis0212<<14 | 0x3A<<7 | 0x17,\n\t34692 - 19968: jis0212<<14 | 0x3A<<7 | 0x18,\n\t34693 - 19968: jis0212<<14 | 0x3A<<7 | 0x19,\n\t34694 - 19968: jis0212<<14 | 0x3A<<7 | 0x1A,\n\t34695 - 19968: jis0212<<14 | 0x3A<<7 | 0x1B,\n\t34696 - 19968: jis0212<<14 | 0x3A<<7 | 0x1C,\n\t34697 - 19968: jis0212<<14 | 0x3A<<7 | 0x1D,\n\t34699 - 19968: jis0212<<14 | 0x3A<<7 | 0x1E,\n\t34700 - 19968: jis0212<<14 | 0x3A<<7 | 0x1F,\n\t34701 - 19968: jis0208<<14 | 0x2C<<7 | 0x1A,\n\t34704 - 19968: jis0212<<14 | 0x3A<<7 | 0x20,\n\t34707 - 19968: jis0212<<14 | 0x3A<<7 | 0x21,\n\t34709 - 19968: jis0212<<14 | 0x3A<<7 | 0x22,\n\t34711 - 19968: jis0212<<14 | 0x3A<<7 | 0x23,\n\t34712 - 19968: jis0212<<14 | 0x3A<<7 | 0x24,\n\t34713 - 19968: jis0212<<14 | 0x3A<<7 | 0x25,\n\t34718 - 19968: jis0212<<14 | 0x3A<<7 | 0x26,\n\t34719 - 19968: jis0208<<14 | 0x49<<7 | 0x05,\n\t34720 - 19968: jis0212<<14 | 0x3A<<7 | 0x27,\n\t34722 - 19968: jis0208<<14 | 0x49<<7 | 0x04,\n\t34723 - 19968: jis0212<<14 | 0x3A<<7 | 0x28,\n\t34727 - 19968: jis0212<<14 | 0x3A<<7 | 0x29,\n\t34731 - 19968: jis0208<<14 | 0x49<<7 | 0x0D,\n\t34732 - 19968: jis0212<<14 | 0x3A<<7 | 0x2A,\n\t34733 - 19968: jis0212<<14 | 0x3A<<7 | 0x2B,\n\t34734 - 19968: jis0212<<14 | 0x3A<<7 | 0x2C,\n\t34735 - 19968: jis0208<<14 | 0x49<<7 | 0x07,\n\t34737 - 19968: jis0212<<14 | 0x3A<<7 | 0x2D,\n\t34739 - 19968: jis0208<<14 | 0x49<<7 | 0x0F,\n\t34741 - 19968: jis0212<<14 | 0x3A<<7 | 0x2E,\n\t34746 - 19968: jis0208<<14 | 0x2C<<7 | 0x45,\n\t34747 - 19968: jis0208<<14 | 0x49<<7 | 0x12,\n\t34749 - 19968: jis0208<<14 | 0x49<<7 | 0x09,\n\t34750 - 19968: jis0212<<14 | 0x3A<<7 | 0x2F,\n\t34751 - 19968: jis0212<<14 | 0x3A<<7 | 0x30,\n\t34752 - 19968: jis0208<<14 | 0x49<<7 | 0x0A,\n\t34753 - 19968: jis0212<<14 | 0x3A<<7 | 0x31,\n\t34756 - 19968: jis0208<<14 | 0x49<<7 | 0x0E,\n\t34758 - 19968: jis0208<<14 | 0x49<<7 | 0x11,\n\t34759 - 19968: jis0208<<14 | 0x49<<7 | 0x10,\n\t34760 - 19968: jis0212<<14 | 0x3A<<7 | 0x32,\n\t34761 - 19968: jis0212<<14 | 0x3A<<7 | 0x33,\n\t34762 - 19968: jis0212<<14 | 0x3A<<7 | 0x34,\n\t34763 - 19968: jis0208<<14 | 0x49<<7 | 0x08,\n\t34766 - 19968: jis0212<<14 | 0x3A<<7 | 0x35,\n\t34768 - 19968: jis0208<<14 | 0x49<<7 | 0x0B,\n\t34770 - 19968: jis0208<<14 | 0x49<<7 | 0x1C,\n\t34773 - 19968: jis0212<<14 | 0x3A<<7 | 0x36,\n\t34774 - 19968: jis0212<<14 | 0x3A<<7 | 0x37,\n\t34777 - 19968: jis0212<<14 | 0x3A<<7 | 0x38,\n\t34778 - 19968: jis0212<<14 | 0x3A<<7 | 0x39,\n\t34780 - 19968: jis0212<<14 | 0x3A<<7 | 0x3A,\n\t34783 - 19968: jis0212<<14 | 0x3A<<7 | 0x3B,\n\t34784 - 19968: jis0208<<14 | 0x49<<7 | 0x15,\n\t34786 - 19968: jis0212<<14 | 0x3A<<7 | 0x3C,\n\t34787 - 19968: jis0212<<14 | 0x3A<<7 | 0x3D,\n\t34788 - 19968: jis0212<<14 | 0x3A<<7 | 0x3E,\n\t34794 - 19968: jis0212<<14 | 0x3A<<7 | 0x3F,\n\t34795 - 19968: jis0212<<14 | 0x3A<<7 | 0x40,\n\t34797 - 19968: jis0212<<14 | 0x3A<<7 | 0x41,\n\t34799 - 19968: jis0208<<14 | 0x49<<7 | 0x13,\n\t34801 - 19968: jis0212<<14 | 0x3A<<7 | 0x42,\n\t34802 - 19968: jis0208<<14 | 0x49<<7 | 0x14,\n\t34803 - 19968: jis0212<<14 | 0x3A<<7 | 0x43,\n\t34806 - 19968: jis0208<<14 | 0x49<<7 | 0x19,\n\t34807 - 19968: jis0208<<14 | 0x49<<7 | 0x1A,\n\t34808 - 19968: jis0212<<14 | 0x3A<<7 | 0x44,\n\t34809 - 19968: jis0208<<14 | 0x12<<7 | 0x09,\n\t34810 - 19968: jis0212<<14 | 0x3A<<7 | 0x45,\n\t34811 - 19968: jis0208<<14 | 0x14<<7 | 0x21,\n\t34814 - 19968: jis0208<<14 | 0x49<<7 | 0x18,\n\t34815 - 19968: jis0212<<14 | 0x3A<<7 | 0x46,\n\t34817 - 19968: jis0212<<14 | 0x3A<<7 | 0x47,\n\t34819 - 19968: jis0212<<14 | 0x3A<<7 | 0x48,\n\t34821 - 19968: jis0208<<14 | 0x49<<7 | 0x03,\n\t34822 - 19968: jis0212<<14 | 0x3A<<7 | 0x49,\n\t34823 - 19968: jis0208<<14 | 0x5A<<7 | 0x44,\n\t34825 - 19968: jis0212<<14 | 0x3A<<7 | 0x4A,\n\t34826 - 19968: jis0212<<14 | 0x3A<<7 | 0x4B,\n\t34827 - 19968: jis0212<<14 | 0x3A<<7 | 0x4C,\n\t34829 - 19968: jis0208<<14 | 0x49<<7 | 0x17,\n\t34830 - 19968: jis0208<<14 | 0x49<<7 | 0x1B,\n\t34831 - 19968: jis0208<<14 | 0x49<<7 | 0x16,\n\t34832 - 19968: jis0212<<14 | 0x3A<<7 | 0x4D,\n\t34833 - 19968: jis0208<<14 | 0x49<<7 | 0x1D,\n\t34834 - 19968: jis0212<<14 | 0x3A<<7 | 0x4F,\n\t34835 - 19968: jis0212<<14 | 0x3A<<7 | 0x50,\n\t34836 - 19968: jis0212<<14 | 0x3A<<7 | 0x51,\n\t34837 - 19968: jis0208<<14 | 0x49<<7 | 0x1F,\n\t34838 - 19968: jis0208<<14 | 0x49<<7 | 0x1E,\n\t34840 - 19968: jis0212<<14 | 0x3A<<7 | 0x52,\n\t34841 - 19968: jis0212<<14 | 0x3A<<7 | 0x4E,\n\t34842 - 19968: jis0212<<14 | 0x3A<<7 | 0x53,\n\t34843 - 19968: jis0212<<14 | 0x3A<<7 | 0x54,\n\t34844 - 19968: jis0212<<14 | 0x3A<<7 | 0x55,\n\t34846 - 19968: jis0212<<14 | 0x3A<<7 | 0x56,\n\t34847 - 19968: jis0212<<14 | 0x3A<<7 | 0x57,\n\t34849 - 19968: jis0208<<14 | 0x49<<7 | 0x21,\n\t34850 - 19968: jis0208<<14 | 0x49<<7 | 0x20,\n\t34851 - 19968: jis0208<<14 | 0x48<<7 | 0x39,\n\t34855 - 19968: jis0208<<14 | 0x49<<7 | 0x25,\n\t34856 - 19968: jis0212<<14 | 0x3A<<7 | 0x58,\n\t34861 - 19968: jis0212<<14 | 0x3A<<7 | 0x59,\n\t34862 - 19968: jis0212<<14 | 0x3A<<7 | 0x5A,\n\t34864 - 19968: jis0212<<14 | 0x3A<<7 | 0x5B,\n\t34865 - 19968: jis0208<<14 | 0x49<<7 | 0x22,\n\t34866 - 19968: jis0212<<14 | 0x3A<<7 | 0x5C,\n\t34869 - 19968: jis0212<<14 | 0x3A<<7 | 0x5D,\n\t34870 - 19968: jis0208<<14 | 0x49<<7 | 0x23,\n\t34873 - 19968: jis0208<<14 | 0x49<<7 | 0x24,\n\t34874 - 19968: jis0212<<14 | 0x3B<<7 | 0x00,\n\t34875 - 19968: jis0208<<14 | 0x49<<7 | 0x26,\n\t34876 - 19968: jis0212<<14 | 0x3B<<7 | 0x01,\n\t34880 - 19968: jis0208<<14 | 0x16<<7 | 0x4B,\n\t34881 - 19968: jis0212<<14 | 0x3B<<7 | 0x02,\n\t34882 - 19968: jis0208<<14 | 0x49<<7 | 0x28,\n\t34883 - 19968: jis0212<<14 | 0x3B<<7 | 0x03,\n\t34884 - 19968: jis0208<<14 | 0x49<<7 | 0x27,\n\t34885 - 19968: jis0212<<14 | 0x3B<<7 | 0x04,\n\t34886 - 19968: jis0208<<14 | 0x1C<<7 | 0x0F,\n\t34888 - 19968: jis0212<<14 | 0x3B<<7 | 0x05,\n\t34889 - 19968: jis0212<<14 | 0x3B<<7 | 0x06,\n\t34890 - 19968: jis0212<<14 | 0x3B<<7 | 0x07,\n\t34891 - 19968: jis0212<<14 | 0x3B<<7 | 0x08,\n\t34892 - 19968: jis0208<<14 | 0x18<<7 | 0x33,\n\t34893 - 19968: jis0208<<14 | 0x3D<<7 | 0x06,\n\t34894 - 19968: jis0212<<14 | 0x3B<<7 | 0x09,\n\t34897 - 19968: jis0212<<14 | 0x3B<<7 | 0x0A,\n\t34898 - 19968: jis0208<<14 | 0x49<<7 | 0x29,\n\t34899 - 19968: jis0208<<14 | 0x1C<<7 | 0x30,\n\t34901 - 19968: jis0212<<14 | 0x3B<<7 | 0x0B,\n\t34902 - 19968: jis0212<<14 | 0x3B<<7 | 0x0C,\n\t34903 - 19968: jis0208<<14 | 0x12<<7 | 0x18,\n\t34904 - 19968: jis0212<<14 | 0x3B<<7 | 0x0D,\n\t34905 - 19968: jis0208<<14 | 0x49<<7 | 0x2A,\n\t34906 - 19968: jis0212<<14 | 0x3B<<7 | 0x0E,\n\t34907 - 19968: jis0208<<14 | 0x10<<7 | 0x31,\n\t34908 - 19968: jis0212<<14 | 0x3B<<7 | 0x0F,\n\t34909 - 19968: jis0208<<14 | 0x1D<<7 | 0x36,\n\t34910 - 19968: jis0208<<14 | 0x49<<7 | 0x2B,\n\t34911 - 19968: jis0212<<14 | 0x3B<<7 | 0x10,\n\t34912 - 19968: jis0212<<14 | 0x3B<<7 | 0x11,\n\t34913 - 19968: jis0208<<14 | 0x18<<7 | 0x34,\n\t34914 - 19968: jis0208<<14 | 0x49<<7 | 0x2C,\n\t34915 - 19968: jis0208<<14 | 0x0F<<7 | 0x40,\n\t34916 - 19968: jis0212<<14 | 0x3B<<7 | 0x12,\n\t34920 - 19968: jis0208<<14 | 0x28<<7 | 0x1C,\n\t34921 - 19968: jis0212<<14 | 0x3B<<7 | 0x13,\n\t34923 - 19968: jis0208<<14 | 0x49<<7 | 0x2D,\n\t34928 - 19968: jis0208<<14 | 0x1E<<7 | 0x49,\n\t34929 - 19968: jis0212<<14 | 0x3B<<7 | 0x14,\n\t34930 - 19968: jis0208<<14 | 0x49<<7 | 0x34,\n\t34933 - 19968: jis0208<<14 | 0x49<<7 | 0x31,\n\t34935 - 19968: jis0208<<14 | 0x22<<7 | 0x4E,\n\t34937 - 19968: jis0212<<14 | 0x3B<<7 | 0x15,\n\t34939 - 19968: jis0212<<14 | 0x3B<<7 | 0x16,\n\t34941 - 19968: jis0208<<14 | 0x49<<7 | 0x32,\n\t34942 - 19968: jis0208<<14 | 0x49<<7 | 0x2F,\n\t34943 - 19968: jis0208<<14 | 0x15<<7 | 0x3D,\n\t34944 - 19968: jis0212<<14 | 0x3B<<7 | 0x17,\n\t34945 - 19968: jis0208<<14 | 0x49<<7 | 0x2E,\n\t34946 - 19968: jis0208<<14 | 0x49<<7 | 0x35,\n\t34952 - 19968: jis0208<<14 | 0x16<<7 | 0x15,\n\t34955 - 19968: jis0208<<14 | 0x21<<7 | 0x3D,\n\t34957 - 19968: jis0208<<14 | 0x49<<7 | 0x3B,\n\t34962 - 19968: jis0208<<14 | 0x49<<7 | 0x37,\n\t34966 - 19968: jis0208<<14 | 0x21<<7 | 0x14,\n\t34967 - 19968: jis0208<<14 | 0x49<<7 | 0x36,\n\t34968 - 19968: jis0212<<14 | 0x3B<<7 | 0x18,\n\t34969 - 19968: jis0208<<14 | 0x49<<7 | 0x39,\n\t34970 - 19968: jis0212<<14 | 0x3B<<7 | 0x19,\n\t34971 - 19968: jis0212<<14 | 0x3B<<7 | 0x1A,\n\t34972 - 19968: jis0212<<14 | 0x3B<<7 | 0x1B,\n\t34974 - 19968: jis0208<<14 | 0x49<<7 | 0x30,\n\t34975 - 19968: jis0212<<14 | 0x3B<<7 | 0x1C,\n\t34976 - 19968: jis0212<<14 | 0x3B<<7 | 0x1D,\n\t34978 - 19968: jis0208<<14 | 0x49<<7 | 0x3A,\n\t34980 - 19968: jis0208<<14 | 0x49<<7 | 0x3C,\n\t34984 - 19968: jis0212<<14 | 0x3B<<7 | 0x1E,\n\t34986 - 19968: jis0212<<14 | 0x3B<<7 | 0x1F,\n\t34987 - 19968: jis0208<<14 | 0x27<<7 | 0x4E,\n\t34990 - 19968: jis0208<<14 | 0x49<<7 | 0x38,\n\t34992 - 19968: jis0208<<14 | 0x49<<7 | 0x3D,\n\t34993 - 19968: jis0208<<14 | 0x49<<7 | 0x3F,\n\t34996 - 19968: jis0208<<14 | 0x17<<7 | 0x32,\n\t34997 - 19968: jis0208<<14 | 0x49<<7 | 0x33,\n\t34999 - 19968: jis0208<<14 | 0x0F<<7 | 0x20,\n\t35002 - 19968: jis0212<<14 | 0x3B<<7 | 0x20,\n\t35005 - 19968: jis0212<<14 | 0x3B<<7 | 0x21,\n\t35006 - 19968: jis0212<<14 | 0x3B<<7 | 0x22,\n\t35007 - 19968: jis0208<<14 | 0x49<<7 | 0x3E,\n\t35008 - 19968: jis0212<<14 | 0x3B<<7 | 0x23,\n\t35009 - 19968: jis0208<<14 | 0x19<<7 | 0x3A,\n\t35010 - 19968: jis0208<<14 | 0x2D<<7 | 0x55,\n\t35011 - 19968: jis0208<<14 | 0x49<<7 | 0x40,\n\t35012 - 19968: jis0208<<14 | 0x49<<7 | 0x41,\n\t35013 - 19968: jis0208<<14 | 0x20<<7 | 0x54,\n\t35018 - 19968: jis0212<<14 | 0x3B<<7 | 0x24,\n\t35019 - 19968: jis0212<<14 | 0x3B<<7 | 0x25,\n\t35020 - 19968: jis0212<<14 | 0x3B<<7 | 0x26,\n\t35021 - 19968: jis0212<<14 | 0x3B<<7 | 0x27,\n\t35022 - 19968: jis0212<<14 | 0x3B<<7 | 0x28,\n\t35023 - 19968: jis0208<<14 | 0x2D<<7 | 0x01,\n\t35025 - 19968: jis0212<<14 | 0x3B<<7 | 0x29,\n\t35026 - 19968: jis0212<<14 | 0x3B<<7 | 0x2A,\n\t35027 - 19968: jis0212<<14 | 0x3B<<7 | 0x2B,\n\t35028 - 19968: jis0208<<14 | 0x49<<7 | 0x42,\n\t35029 - 19968: jis0208<<14 | 0x2C<<7 | 0x14,\n\t35032 - 19968: jis0208<<14 | 0x49<<7 | 0x43,\n\t35033 - 19968: jis0208<<14 | 0x49<<7 | 0x44,\n\t35035 - 19968: jis0212<<14 | 0x3B<<7 | 0x2C,\n\t35036 - 19968: jis0208<<14 | 0x29<<7 | 0x43,\n\t35037 - 19968: jis0208<<14 | 0x49<<7 | 0x45,\n\t35038 - 19968: jis0212<<14 | 0x3B<<7 | 0x2D,\n\t35039 - 19968: jis0208<<14 | 0x19<<7 | 0x1F,\n\t35041 - 19968: jis0208<<14 | 0x2D<<7 | 0x02,\n\t35047 - 19968: jis0212<<14 | 0x3B<<7 | 0x2E,\n\t35048 - 19968: jis0208<<14 | 0x49<<7 | 0x4A,\n\t35055 - 19968: jis0212<<14 | 0x3B<<7 | 0x2F,\n\t35056 - 19968: jis0212<<14 | 0x3B<<7 | 0x30,\n\t35057 - 19968: jis0212<<14 | 0x3B<<7 | 0x31,\n\t35058 - 19968: jis0208<<14 | 0x49<<7 | 0x4B,\n\t35059 - 19968: jis0208<<14 | 0x1D<<7 | 0x37,\n\t35060 - 19968: jis0208<<14 | 0x49<<7 | 0x49,\n\t35061 - 19968: jis0208<<14 | 0x5A<<7 | 0x45,\n\t35063 - 19968: jis0212<<14 | 0x3B<<7 | 0x33,\n\t35064 - 19968: jis0208<<14 | 0x2C<<7 | 0x46,\n\t35065 - 19968: jis0208<<14 | 0x49<<7 | 0x46,\n\t35068 - 19968: jis0208<<14 | 0x49<<7 | 0x48,\n\t35069 - 19968: jis0208<<14 | 0x1F<<7 | 0x1C,\n\t35070 - 19968: jis0208<<14 | 0x1E<<7 | 0x5D,\n\t35073 - 19968: jis0212<<14 | 0x3B<<7 | 0x34,\n\t35074 - 19968: jis0208<<14 | 0x49<<7 | 0x47,\n\t35076 - 19968: jis0208<<14 | 0x49<<7 | 0x4C,\n\t35078 - 19968: jis0212<<14 | 0x3B<<7 | 0x35,\n\t35079 - 19968: jis0208<<14 | 0x29<<7 | 0x02,\n\t35082 - 19968: jis0208<<14 | 0x49<<7 | 0x4E,\n\t35084 - 19968: jis0208<<14 | 0x49<<7 | 0x4D,\n\t35085 - 19968: jis0212<<14 | 0x3B<<7 | 0x36,\n\t35086 - 19968: jis0212<<14 | 0x3B<<7 | 0x37,\n\t35087 - 19968: jis0212<<14 | 0x3B<<7 | 0x38,\n\t35088 - 19968: jis0208<<14 | 0x12<<7 | 0x4B,\n\t35090 - 19968: jis0208<<14 | 0x2A<<7 | 0x0A,\n\t35091 - 19968: jis0208<<14 | 0x49<<7 | 0x4F,\n\t35093 - 19968: jis0212<<14 | 0x3B<<7 | 0x39,\n\t35094 - 19968: jis0212<<14 | 0x3B<<7 | 0x3A,\n\t35096 - 19968: jis0212<<14 | 0x3B<<7 | 0x3B,\n\t35097 - 19968: jis0212<<14 | 0x3B<<7 | 0x3C,\n\t35098 - 19968: jis0212<<14 | 0x3B<<7 | 0x3D,\n\t35100 - 19968: jis0208<<14 | 0x58<<7 | 0x01,\n\t35101 - 19968: jis0208<<14 | 0x49<<7 | 0x5B,\n\t35102 - 19968: jis0208<<14 | 0x49<<7 | 0x51,\n\t35104 - 19968: jis0212<<14 | 0x3B<<7 | 0x3F,\n\t35109 - 19968: jis0208<<14 | 0x49<<7 | 0x52,\n\t35110 - 19968: jis0212<<14 | 0x3B<<7 | 0x40,\n\t35111 - 19968: jis0212<<14 | 0x3B<<7 | 0x41,\n\t35112 - 19968: jis0212<<14 | 0x3B<<7 | 0x42,\n\t35114 - 19968: jis0208<<14 | 0x49<<7 | 0x53,\n\t35115 - 19968: jis0208<<14 | 0x49<<7 | 0x54,\n\t35120 - 19968: jis0212<<14 | 0x3B<<7 | 0x43,\n\t35121 - 19968: jis0212<<14 | 0x3B<<7 | 0x44,\n\t35122 - 19968: jis0212<<14 | 0x3B<<7 | 0x45,\n\t35125 - 19968: jis0212<<14 | 0x3B<<7 | 0x46,\n\t35126 - 19968: jis0208<<14 | 0x49<<7 | 0x58,\n\t35128 - 19968: jis0208<<14 | 0x49<<7 | 0x59,\n\t35129 - 19968: jis0212<<14 | 0x3B<<7 | 0x47,\n\t35130 - 19968: jis0212<<14 | 0x3B<<7 | 0x48,\n\t35131 - 19968: jis0208<<14 | 0x49<<7 | 0x57,\n\t35134 - 19968: jis0212<<14 | 0x3B<<7 | 0x49,\n\t35136 - 19968: jis0212<<14 | 0x3B<<7 | 0x4A,\n\t35137 - 19968: jis0208<<14 | 0x49<<7 | 0x55,\n\t35138 - 19968: jis0212<<14 | 0x3B<<7 | 0x4B,\n\t35139 - 19968: jis0208<<14 | 0x49<<7 | 0x50,\n\t35140 - 19968: jis0208<<14 | 0x49<<7 | 0x56,\n\t35141 - 19968: jis0212<<14 | 0x3B<<7 | 0x4C,\n\t35142 - 19968: jis0212<<14 | 0x3B<<7 | 0x4D,\n\t35145 - 19968: jis0212<<14 | 0x3B<<7 | 0x4E,\n\t35148 - 19968: jis0208<<14 | 0x49<<7 | 0x5A,\n\t35149 - 19968: jis0208<<14 | 0x4F<<7 | 0x16,\n\t35151 - 19968: jis0212<<14 | 0x3B<<7 | 0x4F,\n\t35154 - 19968: jis0212<<14 | 0x3B<<7 | 0x50,\n\t35158 - 19968: jis0208<<14 | 0x11<<7 | 0x07,\n\t35159 - 19968: jis0212<<14 | 0x3B<<7 | 0x51,\n\t35162 - 19968: jis0212<<14 | 0x3B<<7 | 0x52,\n\t35163 - 19968: jis0212<<14 | 0x3B<<7 | 0x53,\n\t35164 - 19968: jis0212<<14 | 0x3B<<7 | 0x54,\n\t35166 - 19968: jis0208<<14 | 0x49<<7 | 0x5D,\n\t35167 - 19968: jis0208<<14 | 0x15<<7 | 0x3E,\n\t35168 - 19968: jis0208<<14 | 0x49<<7 | 0x5C,\n\t35169 - 19968: jis0212<<14 | 0x3B<<7 | 0x55,\n\t35170 - 19968: jis0212<<14 | 0x3B<<7 | 0x56,\n\t35171 - 19968: jis0212<<14 | 0x3B<<7 | 0x57,\n\t35172 - 19968: jis0208<<14 | 0x4A<<7 | 0x01,\n\t35174 - 19968: jis0208<<14 | 0x4A<<7 | 0x00,\n\t35178 - 19968: jis0208<<14 | 0x4A<<7 | 0x03,\n\t35179 - 19968: jis0212<<14 | 0x3B<<7 | 0x58,\n\t35181 - 19968: jis0208<<14 | 0x4A<<7 | 0x02,\n\t35182 - 19968: jis0212<<14 | 0x3B<<7 | 0x59,\n\t35183 - 19968: jis0208<<14 | 0x4A<<7 | 0x04,\n\t35184 - 19968: jis0212<<14 | 0x3B<<7 | 0x5A,\n\t35186 - 19968: jis0208<<14 | 0x1C<<7 | 0x10,\n\t35187 - 19968: jis0212<<14 | 0x3B<<7 | 0x5B,\n\t35188 - 19968: jis0208<<14 | 0x4A<<7 | 0x05,\n\t35189 - 19968: jis0212<<14 | 0x3B<<7 | 0x5C,\n\t35191 - 19968: jis0208<<14 | 0x4A<<7 | 0x06,\n\t35194 - 19968: jis0212<<14 | 0x3B<<7 | 0x5D,\n\t35195 - 19968: jis0212<<14 | 0x3C<<7 | 0x00,\n\t35196 - 19968: jis0212<<14 | 0x3C<<7 | 0x01,\n\t35197 - 19968: jis0212<<14 | 0x3C<<7 | 0x02,\n\t35198 - 19968: jis0208<<14 | 0x4A<<7 | 0x07,\n\t35199 - 19968: jis0208<<14 | 0x1F<<7 | 0x1D,\n\t35201 - 19968: jis0208<<14 | 0x2C<<7 | 0x36,\n\t35203 - 19968: jis0208<<14 | 0x4A<<7 | 0x08,\n\t35206 - 19968: jis0208<<14 | 0x29<<7 | 0x03,\n\t35207 - 19968: jis0208<<14 | 0x26<<7 | 0x25,\n\t35208 - 19968: jis0208<<14 | 0x4A<<7 | 0x09,\n\t35209 - 19968: jis0212<<14 | 0x3C<<7 | 0x03,\n\t35210 - 19968: jis0208<<14 | 0x4A<<7 | 0x0A,\n\t35211 - 19968: jis0208<<14 | 0x17<<7 | 0x0A,\n\t35213 - 19968: jis0212<<14 | 0x3C<<7 | 0x04,\n\t35215 - 19968: jis0208<<14 | 0x14<<7 | 0x0B,\n\t35216 - 19968: jis0212<<14 | 0x3C<<7 | 0x05,\n\t35219 - 19968: jis0208<<14 | 0x4A<<7 | 0x0B,\n\t35220 - 19968: jis0212<<14 | 0x3C<<7 | 0x06,\n\t35221 - 19968: jis0212<<14 | 0x3C<<7 | 0x07,\n\t35222 - 19968: jis0208<<14 | 0x1A<<7 | 0x4A,\n\t35223 - 19968: jis0208<<14 | 0x26<<7 | 0x20,\n\t35224 - 19968: jis0208<<14 | 0x4A<<7 | 0x0C,\n\t35226 - 19968: jis0208<<14 | 0x12<<7 | 0x2F,\n\t35227 - 19968: jis0212<<14 | 0x3C<<7 | 0x08,\n\t35228 - 19968: jis0212<<14 | 0x3C<<7 | 0x09,\n\t35231 - 19968: jis0212<<14 | 0x3C<<7 | 0x0A,\n\t35232 - 19968: jis0212<<14 | 0x3C<<7 | 0x0B,\n\t35233 - 19968: jis0208<<14 | 0x4A<<7 | 0x0D,\n\t35237 - 19968: jis0212<<14 | 0x3C<<7 | 0x0C,\n\t35238 - 19968: jis0208<<14 | 0x4A<<7 | 0x0F,\n\t35239 - 19968: jis0208<<14 | 0x2C<<7 | 0x56,\n\t35241 - 19968: jis0208<<14 | 0x4A<<7 | 0x0E,\n\t35242 - 19968: jis0208<<14 | 0x1E<<7 | 0x25,\n\t35244 - 19968: jis0208<<14 | 0x4A<<7 | 0x10,\n\t35247 - 19968: jis0208<<14 | 0x4A<<7 | 0x11,\n\t35248 - 19968: jis0212<<14 | 0x3C<<7 | 0x0D,\n\t35250 - 19968: jis0208<<14 | 0x4A<<7 | 0x12,\n\t35251 - 19968: jis0208<<14 | 0x13<<7 | 0x30,\n\t35252 - 19968: jis0212<<14 | 0x3C<<7 | 0x0E,\n\t35253 - 19968: jis0212<<14 | 0x3C<<7 | 0x0F,\n\t35254 - 19968: jis0212<<14 | 0x3C<<7 | 0x10,\n\t35255 - 19968: jis0212<<14 | 0x3C<<7 | 0x11,\n\t35258 - 19968: jis0208<<14 | 0x4A<<7 | 0x13,\n\t35260 - 19968: jis0212<<14 | 0x3C<<7 | 0x12,\n\t35261 - 19968: jis0208<<14 | 0x4A<<7 | 0x14,\n\t35263 - 19968: jis0208<<14 | 0x4A<<7 | 0x15,\n\t35264 - 19968: jis0208<<14 | 0x4A<<7 | 0x16,\n\t35282 - 19968: jis0208<<14 | 0x12<<7 | 0x30,\n\t35284 - 19968: jis0212<<14 | 0x3C<<7 | 0x13,\n\t35285 - 19968: jis0212<<14 | 0x3C<<7 | 0x14,\n\t35286 - 19968: jis0212<<14 | 0x3C<<7 | 0x15,\n\t35287 - 19968: jis0212<<14 | 0x3C<<7 | 0x16,\n\t35288 - 19968: jis0212<<14 | 0x3C<<7 | 0x17,\n\t35290 - 19968: jis0208<<14 | 0x4A<<7 | 0x17,\n\t35292 - 19968: jis0208<<14 | 0x4A<<7 | 0x18,\n\t35293 - 19968: jis0208<<14 | 0x4A<<7 | 0x19,\n\t35299 - 19968: jis0208<<14 | 0x11<<7 | 0x51,\n\t35301 - 19968: jis0212<<14 | 0x3C<<7 | 0x18,\n\t35302 - 19968: jis0208<<14 | 0x1E<<7 | 0x07,\n\t35303 - 19968: jis0208<<14 | 0x4A<<7 | 0x1A,\n\t35305 - 19968: jis0212<<14 | 0x3C<<7 | 0x19,\n\t35307 - 19968: jis0212<<14 | 0x3C<<7 | 0x1A,\n\t35309 - 19968: jis0212<<14 | 0x3C<<7 | 0x1B,\n\t35313 - 19968: jis0212<<14 | 0x3C<<7 | 0x1C,\n\t35315 - 19968: jis0212<<14 | 0x3C<<7 | 0x1D,\n\t35316 - 19968: jis0208<<14 | 0x4A<<7 | 0x1B,\n\t35318 - 19968: jis0212<<14 | 0x3C<<7 | 0x1E,\n\t35320 - 19968: jis0208<<14 | 0x4A<<7 | 0x1C,\n\t35321 - 19968: jis0212<<14 | 0x3C<<7 | 0x1F,\n\t35325 - 19968: jis0212<<14 | 0x3C<<7 | 0x20,\n\t35327 - 19968: jis0212<<14 | 0x3C<<7 | 0x21,\n\t35328 - 19968: jis0208<<14 | 0x17<<7 | 0x1F,\n\t35330 - 19968: jis0208<<14 | 0x23<<7 | 0x5A,\n\t35331 - 19968: jis0208<<14 | 0x4A<<7 | 0x1D,\n\t35332 - 19968: jis0212<<14 | 0x3C<<7 | 0x22,\n\t35333 - 19968: jis0212<<14 | 0x3C<<7 | 0x23,\n\t35335 - 19968: jis0212<<14 | 0x3C<<7 | 0x24,\n\t35336 - 19968: jis0208<<14 | 0x16<<7 | 0x36,\n\t35338 - 19968: jis0208<<14 | 0x1E<<7 | 0x35,\n\t35340 - 19968: jis0208<<14 | 0x4A<<7 | 0x20,\n\t35342 - 19968: jis0208<<14 | 0x25<<7 | 0x03,\n\t35343 - 19968: jis0212<<14 | 0x3C<<7 | 0x25,\n\t35344 - 19968: jis0208<<14 | 0x4A<<7 | 0x1F,\n\t35345 - 19968: jis0212<<14 | 0x3C<<7 | 0x26,\n\t35346 - 19968: jis0208<<14 | 0x5A<<7 | 0x46,\n\t35347 - 19968: jis0208<<14 | 0x16<<7 | 0x10,\n\t35348 - 19968: jis0212<<14 | 0x3C<<7 | 0x28,\n\t35349 - 19968: jis0212<<14 | 0x3C<<7 | 0x29,\n\t35350 - 19968: jis0208<<14 | 0x4A<<7 | 0x1E,\n\t35351 - 19968: jis0208<<14 | 0x21<<7 | 0x56,\n\t35352 - 19968: jis0208<<14 | 0x14<<7 | 0x0C,\n\t35355 - 19968: jis0208<<14 | 0x4A<<7 | 0x21,\n\t35357 - 19968: jis0208<<14 | 0x4A<<7 | 0x22,\n\t35358 - 19968: jis0212<<14 | 0x3C<<7 | 0x2A,\n\t35359 - 19968: jis0208<<14 | 0x1D<<7 | 0x38,\n\t35360 - 19968: jis0212<<14 | 0x3C<<7 | 0x2B,\n\t35362 - 19968: jis0212<<14 | 0x3C<<7 | 0x2C,\n\t35363 - 19968: jis0208<<14 | 0x16<<7 | 0x4C,\n\t35364 - 19968: jis0212<<14 | 0x3C<<7 | 0x2D,\n\t35365 - 19968: jis0208<<14 | 0x4A<<7 | 0x23,\n\t35366 - 19968: jis0212<<14 | 0x3C<<7 | 0x2E,\n\t35370 - 19968: jis0208<<14 | 0x2A<<7 | 0x0B,\n\t35371 - 19968: jis0212<<14 | 0x3C<<7 | 0x2F,\n\t35372 - 19968: jis0212<<14 | 0x3C<<7 | 0x30,\n\t35373 - 19968: jis0208<<14 | 0x1F<<7 | 0x3E,\n\t35375 - 19968: jis0212<<14 | 0x3C<<7 | 0x31,\n\t35377 - 19968: jis0208<<14 | 0x14<<7 | 0x55,\n\t35379 - 19968: jis0208<<14 | 0x2B<<7 | 0x54,\n\t35380 - 19968: jis0208<<14 | 0x20<<7 | 0x29,\n\t35381 - 19968: jis0212<<14 | 0x3C<<7 | 0x32,\n\t35382 - 19968: jis0208<<14 | 0x4A<<7 | 0x24,\n\t35383 - 19968: jis0208<<14 | 0x5A<<7 | 0x47,\n\t35386 - 19968: jis0208<<14 | 0x1E<<7 | 0x26,\n\t35387 - 19968: jis0208<<14 | 0x22<<7 | 0x4F,\n\t35388 - 19968: jis0208<<14 | 0x1D<<7 | 0x39,\n\t35389 - 19968: jis0212<<14 | 0x3C<<7 | 0x34,\n\t35390 - 19968: jis0212<<14 | 0x3C<<7 | 0x35,\n\t35392 - 19968: jis0212<<14 | 0x3C<<7 | 0x36,\n\t35393 - 19968: jis0208<<14 | 0x4A<<7 | 0x25,\n\t35395 - 19968: jis0212<<14 | 0x3C<<7 | 0x37,\n\t35397 - 19968: jis0212<<14 | 0x3C<<7 | 0x38,\n\t35398 - 19968: jis0208<<14 | 0x4A<<7 | 0x28,\n\t35399 - 19968: jis0212<<14 | 0x3C<<7 | 0x39,\n\t35400 - 19968: jis0208<<14 | 0x4A<<7 | 0x29,\n\t35401 - 19968: jis0212<<14 | 0x3C<<7 | 0x3A,\n\t35405 - 19968: jis0212<<14 | 0x3C<<7 | 0x3B,\n\t35406 - 19968: jis0212<<14 | 0x3C<<7 | 0x3C,\n\t35408 - 19968: jis0208<<14 | 0x19<<7 | 0x1D,\n\t35409 - 19968: jis0208<<14 | 0x21<<7 | 0x21,\n\t35410 - 19968: jis0208<<14 | 0x4A<<7 | 0x27,\n\t35411 - 19968: jis0212<<14 | 0x3C<<7 | 0x3D,\n\t35412 - 19968: jis0208<<14 | 0x1D<<7 | 0x3A,\n\t35413 - 19968: jis0208<<14 | 0x28<<7 | 0x1D,\n\t35414 - 19968: jis0212<<14 | 0x3C<<7 | 0x3E,\n\t35415 - 19968: jis0212<<14 | 0x3C<<7 | 0x3F,\n\t35416 - 19968: jis0212<<14 | 0x3C<<7 | 0x40,\n\t35419 - 19968: jis0208<<14 | 0x4A<<7 | 0x26,\n\t35420 - 19968: jis0212<<14 | 0x3C<<7 | 0x41,\n\t35421 - 19968: jis0212<<14 | 0x3C<<7 | 0x42,\n\t35422 - 19968: jis0208<<14 | 0x1A<<7 | 0x4B,\n\t35424 - 19968: jis0208<<14 | 0x10<<7 | 0x32,\n\t35425 - 19968: jis0212<<14 | 0x3C<<7 | 0x43,\n\t35426 - 19968: jis0208<<14 | 0x4A<<7 | 0x2D,\n\t35427 - 19968: jis0208<<14 | 0x16<<7 | 0x37,\n\t35429 - 19968: jis0212<<14 | 0x3C<<7 | 0x44,\n\t35430 - 19968: jis0208<<14 | 0x1A<<7 | 0x4D,\n\t35431 - 19968: jis0212<<14 | 0x3C<<7 | 0x45,\n\t35433 - 19968: jis0208<<14 | 0x1A<<7 | 0x4C,\n\t35435 - 19968: jis0208<<14 | 0x2E<<7 | 0x2C,\n\t35436 - 19968: jis0208<<14 | 0x4A<<7 | 0x2C,\n\t35437 - 19968: jis0208<<14 | 0x4A<<7 | 0x2B,\n\t35438 - 19968: jis0208<<14 | 0x20<<7 | 0x06,\n\t35440 - 19968: jis0208<<14 | 0x14<<7 | 0x2C,\n\t35441 - 19968: jis0208<<14 | 0x2E<<7 | 0x22,\n\t35442 - 19968: jis0208<<14 | 0x12<<7 | 0x19,\n\t35443 - 19968: jis0208<<14 | 0x1D<<7 | 0x3B,\n\t35445 - 19968: jis0212<<14 | 0x3C<<7 | 0x46,\n\t35446 - 19968: jis0212<<14 | 0x3C<<7 | 0x47,\n\t35447 - 19968: jis0212<<14 | 0x3C<<7 | 0x48,\n\t35449 - 19968: jis0208<<14 | 0x5A<<7 | 0x48,\n\t35450 - 19968: jis0212<<14 | 0x3C<<7 | 0x4A,\n\t35451 - 19968: jis0212<<14 | 0x3C<<7 | 0x4B,\n\t35452 - 19968: jis0208<<14 | 0x4A<<7 | 0x2A,\n\t35454 - 19968: jis0212<<14 | 0x3C<<7 | 0x4C,\n\t35455 - 19968: jis0212<<14 | 0x3C<<7 | 0x4D,\n\t35456 - 19968: jis0212<<14 | 0x3C<<7 | 0x4E,\n\t35458 - 19968: jis0208<<14 | 0x4A<<7 | 0x2F,\n\t35459 - 19968: jis0212<<14 | 0x3C<<7 | 0x4F,\n\t35460 - 19968: jis0208<<14 | 0x4A<<7 | 0x30,\n\t35461 - 19968: jis0208<<14 | 0x4A<<7 | 0x2E,\n\t35462 - 19968: jis0212<<14 | 0x3C<<7 | 0x50,\n\t35463 - 19968: jis0208<<14 | 0x17<<7 | 0x37,\n\t35465 - 19968: jis0208<<14 | 0x2C<<7 | 0x1F,\n\t35467 - 19968: jis0212<<14 | 0x3C<<7 | 0x51,\n\t35468 - 19968: jis0208<<14 | 0x1A<<7 | 0x4E,\n\t35469 - 19968: jis0208<<14 | 0x26<<7 | 0x06,\n\t35471 - 19968: jis0212<<14 | 0x3C<<7 | 0x52,\n\t35472 - 19968: jis0212<<14 | 0x3C<<7 | 0x53,\n\t35473 - 19968: jis0208<<14 | 0x4A<<7 | 0x33,\n\t35474 - 19968: jis0212<<14 | 0x3C<<7 | 0x54,\n\t35475 - 19968: jis0208<<14 | 0x1F<<7 | 0x1F,\n\t35477 - 19968: jis0208<<14 | 0x22<<7 | 0x21,\n\t35478 - 19968: jis0212<<14 | 0x3C<<7 | 0x55,\n\t35479 - 19968: jis0212<<14 | 0x3C<<7 | 0x56,\n\t35480 - 19968: jis0208<<14 | 0x2C<<7 | 0x15,\n\t35481 - 19968: jis0212<<14 | 0x3C<<7 | 0x57,\n\t35482 - 19968: jis0208<<14 | 0x4A<<7 | 0x36,\n\t35486 - 19968: jis0208<<14 | 0x17<<7 | 0x4B,\n\t35487 - 19968: jis0212<<14 | 0x3C<<7 | 0x58,\n\t35488 - 19968: jis0208<<14 | 0x1F<<7 | 0x1E,\n\t35489 - 19968: jis0208<<14 | 0x4A<<7 | 0x32,\n\t35491 - 19968: jis0208<<14 | 0x4A<<7 | 0x37,\n\t35492 - 19968: jis0208<<14 | 0x17<<7 | 0x4C,\n\t35493 - 19968: jis0208<<14 | 0x4A<<7 | 0x34,\n\t35494 - 19968: jis0208<<14 | 0x4A<<7 | 0x35,\n\t35495 - 19968: jis0208<<14 | 0x5A<<7 | 0x49,\n\t35496 - 19968: jis0208<<14 | 0x4A<<7 | 0x31,\n\t35497 - 19968: jis0212<<14 | 0x3C<<7 | 0x5A,\n\t35500 - 19968: jis0208<<14 | 0x1F<<7 | 0x41,\n\t35501 - 19968: jis0208<<14 | 0x25<<7 | 0x28,\n\t35502 - 19968: jis0212<<14 | 0x3C<<7 | 0x5B,\n\t35503 - 19968: jis0212<<14 | 0x3C<<7 | 0x5C,\n\t35504 - 19968: jis0208<<14 | 0x22<<7 | 0x0E,\n\t35506 - 19968: jis0208<<14 | 0x11<<7 | 0x3C,\n\t35507 - 19968: jis0212<<14 | 0x3C<<7 | 0x5D,\n\t35510 - 19968: jis0212<<14 | 0x3D<<7 | 0x00,\n\t35511 - 19968: jis0212<<14 | 0x3D<<7 | 0x01,\n\t35513 - 19968: jis0208<<14 | 0x27<<7 | 0x4F,\n\t35515 - 19968: jis0212<<14 | 0x3D<<7 | 0x02,\n\t35516 - 19968: jis0208<<14 | 0x14<<7 | 0x22,\n\t35518 - 19968: jis0208<<14 | 0x5A<<7 | 0x4A,\n\t35519 - 19968: jis0208<<14 | 0x23<<7 | 0x13,\n\t35522 - 19968: jis0208<<14 | 0x4A<<7 | 0x3A,\n\t35523 - 19968: jis0212<<14 | 0x3D<<7 | 0x04,\n\t35524 - 19968: jis0208<<14 | 0x4A<<7 | 0x38,\n\t35526 - 19968: jis0212<<14 | 0x3D<<7 | 0x05,\n\t35527 - 19968: jis0208<<14 | 0x22<<7 | 0x2B,\n\t35528 - 19968: jis0212<<14 | 0x3D<<7 | 0x06,\n\t35529 - 19968: jis0212<<14 | 0x3D<<7 | 0x07,\n\t35530 - 19968: jis0212<<14 | 0x3D<<7 | 0x08,\n\t35531 - 19968: jis0208<<14 | 0x1F<<7 | 0x20,\n\t35532 - 19968: jis0208<<14 | 0x13<<7 | 0x31,\n\t35533 - 19968: jis0208<<14 | 0x4A<<7 | 0x39,\n\t35535 - 19968: jis0208<<14 | 0x1E<<7 | 0x3A,\n\t35537 - 19968: jis0212<<14 | 0x3D<<7 | 0x09,\n\t35538 - 19968: jis0208<<14 | 0x2D<<7 | 0x29,\n\t35539 - 19968: jis0212<<14 | 0x3D<<7 | 0x0A,\n\t35540 - 19968: jis0212<<14 | 0x3D<<7 | 0x0B,\n\t35541 - 19968: jis0212<<14 | 0x3D<<7 | 0x0C,\n\t35542 - 19968: jis0208<<14 | 0x2E<<7 | 0x1F,\n\t35543 - 19968: jis0212<<14 | 0x3D<<7 | 0x0D,\n\t35546 - 19968: jis0208<<14 | 0x4A<<7 | 0x3B,\n\t35547 - 19968: jis0208<<14 | 0x4A<<7 | 0x46,\n\t35548 - 19968: jis0208<<14 | 0x23<<7 | 0x14,\n\t35549 - 19968: jis0212<<14 | 0x3D<<7 | 0x0E,\n\t35550 - 19968: jis0208<<14 | 0x4A<<7 | 0x45,\n\t35551 - 19968: jis0208<<14 | 0x5A<<7 | 0x4B,\n\t35552 - 19968: jis0208<<14 | 0x4A<<7 | 0x42,\n\t35553 - 19968: jis0208<<14 | 0x4A<<7 | 0x4A,\n\t35554 - 19968: jis0208<<14 | 0x4A<<7 | 0x43,\n\t35556 - 19968: jis0208<<14 | 0x4A<<7 | 0x3F,\n\t35558 - 19968: jis0208<<14 | 0x23<<7 | 0x5B,\n\t35559 - 19968: jis0208<<14 | 0x4A<<7 | 0x3E,\n\t35563 - 19968: jis0208<<14 | 0x4A<<7 | 0x3C,\n\t35564 - 19968: jis0212<<14 | 0x3D<<7 | 0x10,\n\t35565 - 19968: jis0208<<14 | 0x2C<<7 | 0x00,\n\t35566 - 19968: jis0208<<14 | 0x1A<<7 | 0x4F,\n\t35568 - 19968: jis0212<<14 | 0x3D<<7 | 0x11,\n\t35569 - 19968: jis0208<<14 | 0x4A<<7 | 0x40,\n\t35571 - 19968: jis0208<<14 | 0x4A<<7 | 0x3D,\n\t35572 - 19968: jis0212<<14 | 0x3D<<7 | 0x12,\n\t35573 - 19968: jis0212<<14 | 0x3D<<7 | 0x13,\n\t35574 - 19968: jis0208<<14 | 0x5A<<7 | 0x4D,\n\t35575 - 19968: jis0208<<14 | 0x4A<<7 | 0x44,\n\t35576 - 19968: jis0208<<14 | 0x1C<<7 | 0x53,\n\t35578 - 19968: jis0208<<14 | 0x17<<7 | 0x20,\n\t35580 - 19968: jis0212<<14 | 0x3D<<7 | 0x15,\n\t35582 - 19968: jis0208<<14 | 0x21<<7 | 0x59,\n\t35583 - 19968: jis0212<<14 | 0x3D<<7 | 0x16,\n\t35584 - 19968: jis0208<<14 | 0x2A<<7 | 0x24,\n\t35585 - 19968: jis0208<<14 | 0x10<<7 | 0x39,\n\t35586 - 19968: jis0208<<14 | 0x0F<<7 | 0x41,\n\t35588 - 19968: jis0208<<14 | 0x25<<7 | 0x04,\n\t35589 - 19968: jis0212<<14 | 0x3D<<7 | 0x17,\n\t35590 - 19968: jis0212<<14 | 0x3D<<7 | 0x18,\n\t35591 - 19968: jis0208<<14 | 0x4A<<7 | 0x48,\n\t35594 - 19968: jis0212<<14 | 0x3D<<7 | 0x1E,\n\t35595 - 19968: jis0212<<14 | 0x3D<<7 | 0x19,\n\t35596 - 19968: jis0208<<14 | 0x4A<<7 | 0x47,\n\t35598 - 19968: jis0208<<14 | 0x25<<7 | 0x45,\n\t35600 - 19968: jis0208<<14 | 0x4A<<7 | 0x4C,\n\t35601 - 19968: jis0212<<14 | 0x3D<<7 | 0x1A,\n\t35604 - 19968: jis0208<<14 | 0x4A<<7 | 0x41,\n\t35606 - 19968: jis0208<<14 | 0x4A<<7 | 0x4B,\n\t35607 - 19968: jis0208<<14 | 0x4A<<7 | 0x4D,\n\t35609 - 19968: jis0208<<14 | 0x17<<7 | 0x0B,\n\t35610 - 19968: jis0208<<14 | 0x4A<<7 | 0x49,\n\t35611 - 19968: jis0208<<14 | 0x18<<7 | 0x35,\n\t35612 - 19968: jis0212<<14 | 0x3D<<7 | 0x1B,\n\t35613 - 19968: jis0208<<14 | 0x1B<<7 | 0x34,\n\t35614 - 19968: jis0212<<14 | 0x3D<<7 | 0x1C,\n\t35615 - 19968: jis0212<<14 | 0x3D<<7 | 0x1D,\n\t35616 - 19968: jis0208<<14 | 0x4A<<7 | 0x4E,\n\t35617 - 19968: jis0208<<14 | 0x2C<<7 | 0x37,\n\t35622 - 19968: jis0208<<14 | 0x4A<<7 | 0x51,\n\t35624 - 19968: jis0208<<14 | 0x4A<<7 | 0x54,\n\t35627 - 19968: jis0208<<14 | 0x4A<<7 | 0x52,\n\t35628 - 19968: jis0208<<14 | 0x28<<7 | 0x14,\n\t35629 - 19968: jis0212<<14 | 0x3D<<7 | 0x1F,\n\t35632 - 19968: jis0212<<14 | 0x3D<<7 | 0x20,\n\t35635 - 19968: jis0208<<14 | 0x4A<<7 | 0x4F,\n\t35639 - 19968: jis0212<<14 | 0x3D<<7 | 0x21,\n\t35641 - 19968: jis0208<<14 | 0x15<<7 | 0x3F,\n\t35644 - 19968: jis0212<<14 | 0x3D<<7 | 0x22,\n\t35646 - 19968: jis0208<<14 | 0x4A<<7 | 0x53,\n\t35649 - 19968: jis0208<<14 | 0x4A<<7 | 0x55,\n\t35650 - 19968: jis0212<<14 | 0x3D<<7 | 0x23,\n\t35651 - 19968: jis0212<<14 | 0x3D<<7 | 0x24,\n\t35652 - 19968: jis0212<<14 | 0x3D<<7 | 0x25,\n\t35653 - 19968: jis0212<<14 | 0x3D<<7 | 0x26,\n\t35654 - 19968: jis0212<<14 | 0x3D<<7 | 0x27,\n\t35656 - 19968: jis0212<<14 | 0x3D<<7 | 0x28,\n\t35657 - 19968: jis0208<<14 | 0x4A<<7 | 0x59,\n\t35660 - 19968: jis0208<<14 | 0x4A<<7 | 0x56,\n\t35661 - 19968: jis0212<<14 | 0x3D<<7 | 0x2D,\n\t35662 - 19968: jis0208<<14 | 0x4A<<7 | 0x58,\n\t35663 - 19968: jis0208<<14 | 0x4A<<7 | 0x57,\n\t35666 - 19968: jis0212<<14 | 0x3D<<7 | 0x29,\n\t35667 - 19968: jis0208<<14 | 0x5A<<7 | 0x4E,\n\t35668 - 19968: jis0212<<14 | 0x3D<<7 | 0x2B,\n\t35670 - 19968: jis0208<<14 | 0x4A<<7 | 0x5A,\n\t35672 - 19968: jis0208<<14 | 0x1B<<7 | 0x10,\n\t35673 - 19968: jis0212<<14 | 0x3D<<7 | 0x2C,\n\t35674 - 19968: jis0208<<14 | 0x4A<<7 | 0x5C,\n\t35675 - 19968: jis0208<<14 | 0x4A<<7 | 0x5B,\n\t35676 - 19968: jis0208<<14 | 0x28<<7 | 0x47,\n\t35678 - 19968: jis0212<<14 | 0x3D<<7 | 0x2E,\n\t35679 - 19968: jis0208<<14 | 0x4B<<7 | 0x00,\n\t35683 - 19968: jis0212<<14 | 0x3D<<7 | 0x2F,\n\t35686 - 19968: jis0208<<14 | 0x16<<7 | 0x38,\n\t35691 - 19968: jis0208<<14 | 0x4A<<7 | 0x5D,\n\t35692 - 19968: jis0208<<14 | 0x4B<<7 | 0x01,\n\t35693 - 19968: jis0212<<14 | 0x3D<<7 | 0x30,\n\t35695 - 19968: jis0208<<14 | 0x4B<<7 | 0x02,\n\t35696 - 19968: jis0208<<14 | 0x14<<7 | 0x23,\n\t35697 - 19968: jis0208<<14 | 0x45<<7 | 0x20,\n\t35698 - 19968: jis0208<<14 | 0x1D<<7 | 0x58,\n\t35700 - 19968: jis0208<<14 | 0x4B<<7 | 0x03,\n\t35702 - 19968: jis0212<<14 | 0x3D<<7 | 0x31,\n\t35703 - 19968: jis0208<<14 | 0x17<<7 | 0x4D,\n\t35704 - 19968: jis0212<<14 | 0x3D<<7 | 0x32,\n\t35705 - 19968: jis0212<<14 | 0x3D<<7 | 0x33,\n\t35708 - 19968: jis0212<<14 | 0x3D<<7 | 0x34,\n\t35709 - 19968: jis0208<<14 | 0x4B<<7 | 0x04,\n\t35710 - 19968: jis0212<<14 | 0x3D<<7 | 0x35,\n\t35711 - 19968: jis0208<<14 | 0x5A<<7 | 0x4F,\n\t35712 - 19968: jis0208<<14 | 0x4B<<7 | 0x05,\n\t35713 - 19968: jis0212<<14 | 0x3D<<7 | 0x36,\n\t35715 - 19968: jis0208<<14 | 0x1A<<7 | 0x1D,\n\t35716 - 19968: jis0212<<14 | 0x3D<<7 | 0x37,\n\t35717 - 19968: jis0212<<14 | 0x3D<<7 | 0x38,\n\t35722 - 19968: jis0208<<14 | 0x39<<7 | 0x2D,\n\t35723 - 19968: jis0212<<14 | 0x3D<<7 | 0x39,\n\t35724 - 19968: jis0208<<14 | 0x4B<<7 | 0x06,\n\t35725 - 19968: jis0212<<14 | 0x3D<<7 | 0x3A,\n\t35726 - 19968: jis0208<<14 | 0x4B<<7 | 0x07,\n\t35727 - 19968: jis0212<<14 | 0x3D<<7 | 0x3B,\n\t35728 - 19968: jis0208<<14 | 0x1C<<7 | 0x11,\n\t35730 - 19968: jis0208<<14 | 0x4B<<7 | 0x08,\n\t35731 - 19968: jis0208<<14 | 0x4B<<7 | 0x09,\n\t35732 - 19968: jis0212<<14 | 0x3D<<7 | 0x3C,\n\t35733 - 19968: jis0212<<14 | 0x3D<<7 | 0x3D,\n\t35734 - 19968: jis0208<<14 | 0x4B<<7 | 0x0A,\n\t35737 - 19968: jis0208<<14 | 0x4B<<7 | 0x0B,\n\t35738 - 19968: jis0208<<14 | 0x4B<<7 | 0x0C,\n\t35740 - 19968: jis0212<<14 | 0x3D<<7 | 0x3E,\n\t35742 - 19968: jis0212<<14 | 0x3D<<7 | 0x3F,\n\t35743 - 19968: jis0212<<14 | 0x3D<<7 | 0x40,\n\t35895 - 19968: jis0208<<14 | 0x22<<7 | 0x0A,\n\t35896 - 19968: jis0212<<14 | 0x3D<<7 | 0x41,\n\t35897 - 19968: jis0212<<14 | 0x3D<<7 | 0x42,\n\t35898 - 19968: jis0208<<14 | 0x4B<<7 | 0x0D,\n\t35901 - 19968: jis0212<<14 | 0x3D<<7 | 0x43,\n\t35902 - 19968: jis0212<<14 | 0x3D<<7 | 0x44,\n\t35903 - 19968: jis0208<<14 | 0x4B<<7 | 0x0F,\n\t35905 - 19968: jis0208<<14 | 0x4B<<7 | 0x0E,\n\t35909 - 19968: jis0212<<14 | 0x3D<<7 | 0x45,\n\t35910 - 19968: jis0208<<14 | 0x25<<7 | 0x05,\n\t35911 - 19968: jis0212<<14 | 0x3D<<7 | 0x46,\n\t35912 - 19968: jis0208<<14 | 0x4B<<7 | 0x10,\n\t35913 - 19968: jis0212<<14 | 0x3D<<7 | 0x47,\n\t35914 - 19968: jis0208<<14 | 0x2A<<7 | 0x0C,\n\t35915 - 19968: jis0212<<14 | 0x3D<<7 | 0x48,\n\t35916 - 19968: jis0208<<14 | 0x4B<<7 | 0x11,\n\t35918 - 19968: jis0208<<14 | 0x4B<<7 | 0x12,\n\t35919 - 19968: jis0212<<14 | 0x3D<<7 | 0x49,\n\t35920 - 19968: jis0208<<14 | 0x4B<<7 | 0x13,\n\t35921 - 19968: jis0212<<14 | 0x3D<<7 | 0x4A,\n\t35923 - 19968: jis0212<<14 | 0x3D<<7 | 0x4B,\n\t35924 - 19968: jis0212<<14 | 0x3D<<7 | 0x4C,\n\t35925 - 19968: jis0208<<14 | 0x4B<<7 | 0x14,\n\t35927 - 19968: jis0212<<14 | 0x3D<<7 | 0x4D,\n\t35928 - 19968: jis0212<<14 | 0x3D<<7 | 0x4E,\n\t35929 - 19968: jis0212<<14 | 0x3D<<7 | 0x51,\n\t35930 - 19968: jis0208<<14 | 0x25<<7 | 0x39,\n\t35931 - 19968: jis0212<<14 | 0x3D<<7 | 0x4F,\n\t35933 - 19968: jis0212<<14 | 0x3D<<7 | 0x50,\n\t35937 - 19968: jis0208<<14 | 0x1D<<7 | 0x3C,\n\t35938 - 19968: jis0208<<14 | 0x4B<<7 | 0x15,\n\t35939 - 19968: jis0212<<14 | 0x3D<<7 | 0x52,\n\t35940 - 19968: jis0212<<14 | 0x3D<<7 | 0x53,\n\t35942 - 19968: jis0212<<14 | 0x3D<<7 | 0x54,\n\t35944 - 19968: jis0212<<14 | 0x3D<<7 | 0x55,\n\t35945 - 19968: jis0212<<14 | 0x3D<<7 | 0x56,\n\t35946 - 19968: jis0208<<14 | 0x18<<7 | 0x4A,\n\t35947 - 19968: jis0208<<14 | 0x2F<<7 | 0x0D,\n\t35948 - 19968: jis0208<<14 | 0x4B<<7 | 0x16,\n\t35949 - 19968: jis0212<<14 | 0x3D<<7 | 0x57,\n\t35955 - 19968: jis0212<<14 | 0x3D<<7 | 0x58,\n\t35957 - 19968: jis0212<<14 | 0x3D<<7 | 0x59,\n\t35958 - 19968: jis0212<<14 | 0x3D<<7 | 0x5A,\n\t35960 - 19968: jis0208<<14 | 0x4B<<7 | 0x17,\n\t35961 - 19968: jis0208<<14 | 0x28<<7 | 0x1E,\n\t35962 - 19968: jis0208<<14 | 0x4B<<7 | 0x18,\n\t35963 - 19968: jis0212<<14 | 0x3D<<7 | 0x5B,\n\t35964 - 19968: jis0208<<14 | 0x4B<<7 | 0x20,\n\t35966 - 19968: jis0212<<14 | 0x3D<<7 | 0x5C,\n\t35970 - 19968: jis0208<<14 | 0x4B<<7 | 0x19,\n\t35973 - 19968: jis0208<<14 | 0x4B<<7 | 0x1B,\n\t35974 - 19968: jis0212<<14 | 0x3D<<7 | 0x5D,\n\t35975 - 19968: jis0212<<14 | 0x3E<<7 | 0x00,\n\t35977 - 19968: jis0208<<14 | 0x4B<<7 | 0x1A,\n\t35978 - 19968: jis0208<<14 | 0x4B<<7 | 0x1C,\n\t35979 - 19968: jis0212<<14 | 0x3E<<7 | 0x01,\n\t35980 - 19968: jis0208<<14 | 0x2A<<7 | 0x25,\n\t35981 - 19968: jis0208<<14 | 0x4B<<7 | 0x1D,\n\t35982 - 19968: jis0208<<14 | 0x4B<<7 | 0x1E,\n\t35984 - 19968: jis0212<<14 | 0x3E<<7 | 0x02,\n\t35986 - 19968: jis0212<<14 | 0x3E<<7 | 0x03,\n\t35987 - 19968: jis0212<<14 | 0x3E<<7 | 0x04,\n\t35988 - 19968: jis0208<<14 | 0x4B<<7 | 0x1F,\n\t35992 - 19968: jis0208<<14 | 0x4B<<7 | 0x21,\n\t35993 - 19968: jis0212<<14 | 0x3E<<7 | 0x05,\n\t35995 - 19968: jis0212<<14 | 0x3E<<7 | 0x06,\n\t35996 - 19968: jis0212<<14 | 0x3E<<7 | 0x07,\n\t35997 - 19968: jis0208<<14 | 0x12<<7 | 0x0C,\n\t35998 - 19968: jis0208<<14 | 0x23<<7 | 0x46,\n\t36000 - 19968: jis0208<<14 | 0x28<<7 | 0x48,\n\t36001 - 19968: jis0208<<14 | 0x19<<7 | 0x41,\n\t36002 - 19968: jis0208<<14 | 0x18<<7 | 0x36,\n\t36004 - 19968: jis0212<<14 | 0x3E<<7 | 0x08,\n\t36007 - 19968: jis0208<<14 | 0x28<<7 | 0x2E,\n\t36008 - 19968: jis0208<<14 | 0x11<<7 | 0x3E,\n\t36009 - 19968: jis0208<<14 | 0x27<<7 | 0x2D,\n\t36010 - 19968: jis0208<<14 | 0x4B<<7 | 0x24,\n\t36011 - 19968: jis0208<<14 | 0x13<<7 | 0x32,\n\t36012 - 19968: jis0208<<14 | 0x1F<<7 | 0x34,\n\t36013 - 19968: jis0208<<14 | 0x4B<<7 | 0x23,\n\t36014 - 19968: jis0208<<14 | 0x4B<<7 | 0x28,\n\t36015 - 19968: jis0208<<14 | 0x22<<7 | 0x58,\n\t36016 - 19968: jis0208<<14 | 0x2B<<7 | 0x42,\n\t36018 - 19968: jis0208<<14 | 0x4B<<7 | 0x26,\n\t36019 - 19968: jis0208<<14 | 0x4B<<7 | 0x27,\n\t36020 - 19968: jis0208<<14 | 0x14<<7 | 0x0D,\n\t36022 - 19968: jis0208<<14 | 0x4B<<7 | 0x29,\n\t36023 - 19968: jis0208<<14 | 0x26<<7 | 0x42,\n\t36024 - 19968: jis0208<<14 | 0x21<<7 | 0x3E,\n\t36025 - 19968: jis0212<<14 | 0x3E<<7 | 0x09,\n\t36026 - 19968: jis0212<<14 | 0x3E<<7 | 0x0A,\n\t36027 - 19968: jis0208<<14 | 0x27<<7 | 0x50,\n\t36028 - 19968: jis0208<<14 | 0x24<<7 | 0x1C,\n\t36029 - 19968: jis0208<<14 | 0x4B<<7 | 0x25,\n\t36031 - 19968: jis0208<<14 | 0x2A<<7 | 0x26,\n\t36032 - 19968: jis0208<<14 | 0x11<<7 | 0x4B,\n\t36033 - 19968: jis0208<<14 | 0x4B<<7 | 0x2B,\n\t36034 - 19968: jis0208<<14 | 0x2E<<7 | 0x07,\n\t36035 - 19968: jis0208<<14 | 0x23<<7 | 0x21,\n\t36036 - 19968: jis0208<<14 | 0x2E<<7 | 0x24,\n\t36037 - 19968: jis0212<<14 | 0x3E<<7 | 0x0B,\n\t36038 - 19968: jis0212<<14 | 0x3E<<7 | 0x0C,\n\t36039 - 19968: jis0208<<14 | 0x1A<<7 | 0x50,\n\t36040 - 19968: jis0208<<14 | 0x4B<<7 | 0x2A,\n\t36041 - 19968: jis0212<<14 | 0x3E<<7 | 0x0D,\n\t36042 - 19968: jis0208<<14 | 0x21<<7 | 0x10,\n\t36043 - 19968: jis0212<<14 | 0x3E<<7 | 0x0E,\n\t36045 - 19968: jis0208<<14 | 0x4B<<7 | 0x3B,\n\t36046 - 19968: jis0208<<14 | 0x20<<7 | 0x07,\n\t36047 - 19968: jis0212<<14 | 0x3E<<7 | 0x0F,\n\t36049 - 19968: jis0208<<14 | 0x25<<7 | 0x57,\n\t36051 - 19968: jis0208<<14 | 0x28<<7 | 0x2F,\n\t36053 - 19968: jis0212<<14 | 0x3E<<7 | 0x11,\n\t36054 - 19968: jis0212<<14 | 0x3E<<7 | 0x10,\n\t36057 - 19968: jis0212<<14 | 0x3E<<7 | 0x12,\n\t36058 - 19968: jis0208<<14 | 0x4B<<7 | 0x2E,\n\t36059 - 19968: jis0208<<14 | 0x1A<<7 | 0x1E,\n\t36060 - 19968: jis0208<<14 | 0x1A<<7 | 0x51,\n\t36061 - 19968: jis0212<<14 | 0x3E<<7 | 0x13,\n\t36062 - 19968: jis0208<<14 | 0x1D<<7 | 0x3D,\n\t36064 - 19968: jis0208<<14 | 0x26<<7 | 0x44,\n\t36065 - 19968: jis0212<<14 | 0x3E<<7 | 0x14,\n\t36066 - 19968: jis0208<<14 | 0x17<<7 | 0x0C,\n\t36067 - 19968: jis0208<<14 | 0x4B<<7 | 0x2D,\n\t36068 - 19968: jis0208<<14 | 0x4B<<7 | 0x2C,\n\t36070 - 19968: jis0208<<14 | 0x28<<7 | 0x49,\n\t36072 - 19968: jis0212<<14 | 0x3E<<7 | 0x15,\n\t36074 - 19968: jis0208<<14 | 0x1B<<7 | 0x20,\n\t36076 - 19968: jis0212<<14 | 0x3E<<7 | 0x16,\n\t36077 - 19968: jis0208<<14 | 0x24<<7 | 0x31,\n\t36079 - 19968: jis0212<<14 | 0x3E<<7 | 0x17,\n\t36080 - 19968: jis0208<<14 | 0x5A<<7 | 0x50,\n\t36082 - 19968: jis0212<<14 | 0x3E<<7 | 0x19,\n\t36084 - 19968: jis0208<<14 | 0x5A<<7 | 0x51,\n\t36085 - 19968: jis0212<<14 | 0x3E<<7 | 0x1A,\n\t36087 - 19968: jis0212<<14 | 0x3E<<7 | 0x1B,\n\t36088 - 19968: jis0212<<14 | 0x3E<<7 | 0x1C,\n\t36090 - 19968: jis0208<<14 | 0x4B<<7 | 0x30,\n\t36091 - 19968: jis0208<<14 | 0x4B<<7 | 0x31,\n\t36092 - 19968: jis0208<<14 | 0x18<<7 | 0x37,\n\t36093 - 19968: jis0208<<14 | 0x4B<<7 | 0x2F,\n\t36094 - 19968: jis0212<<14 | 0x3E<<7 | 0x1D,\n\t36095 - 19968: jis0212<<14 | 0x3E<<7 | 0x1E,\n\t36097 - 19968: jis0212<<14 | 0x3E<<7 | 0x1F,\n\t36099 - 19968: jis0212<<14 | 0x3E<<7 | 0x20,\n\t36100 - 19968: jis0208<<14 | 0x4B<<7 | 0x32,\n\t36101 - 19968: jis0208<<14 | 0x4B<<7 | 0x33,\n\t36103 - 19968: jis0208<<14 | 0x4B<<7 | 0x35,\n\t36104 - 19968: jis0208<<14 | 0x21<<7 | 0x02,\n\t36105 - 19968: jis0212<<14 | 0x3E<<7 | 0x21,\n\t36106 - 19968: jis0208<<14 | 0x4B<<7 | 0x34,\n\t36107 - 19968: jis0208<<14 | 0x13<<7 | 0x45,\n\t36109 - 19968: jis0208<<14 | 0x4B<<7 | 0x37,\n\t36111 - 19968: jis0208<<14 | 0x4B<<7 | 0x36,\n\t36112 - 19968: jis0208<<14 | 0x4B<<7 | 0x38,\n\t36114 - 19968: jis0208<<14 | 0x5A<<7 | 0x52,\n\t36115 - 19968: jis0208<<14 | 0x4B<<7 | 0x3A,\n\t36116 - 19968: jis0208<<14 | 0x4B<<7 | 0x3C,\n\t36118 - 19968: jis0208<<14 | 0x4B<<7 | 0x3D,\n\t36119 - 19968: jis0212<<14 | 0x3E<<7 | 0x23,\n\t36123 - 19968: jis0212<<14 | 0x3E<<7 | 0x24,\n\t36196 - 19968: jis0208<<14 | 0x1F<<7 | 0x35,\n\t36197 - 19968: jis0212<<14 | 0x3E<<7 | 0x25,\n\t36198 - 19968: jis0208<<14 | 0x1B<<7 | 0x2E,\n\t36199 - 19968: jis0208<<14 | 0x4B<<7 | 0x3E,\n\t36201 - 19968: jis0212<<14 | 0x3E<<7 | 0x26,\n\t36203 - 19968: jis0208<<14 | 0x12<<7 | 0x31,\n\t36204 - 19968: jis0212<<14 | 0x3E<<7 | 0x27,\n\t36205 - 19968: jis0208<<14 | 0x4B<<7 | 0x3F,\n\t36206 - 19968: jis0212<<14 | 0x3E<<7 | 0x28,\n\t36208 - 19968: jis0208<<14 | 0x20<<7 | 0x55,\n\t36209 - 19968: jis0208<<14 | 0x4B<<7 | 0x40,\n\t36211 - 19968: jis0208<<14 | 0x4B<<7 | 0x41,\n\t36212 - 19968: jis0208<<14 | 0x28<<7 | 0x4A,\n\t36214 - 19968: jis0208<<14 | 0x5A<<7 | 0x53,\n\t36215 - 19968: jis0208<<14 | 0x14<<7 | 0x0E,\n\t36223 - 19968: jis0212<<14 | 0x3E<<7 | 0x29,\n\t36225 - 19968: jis0208<<14 | 0x4B<<7 | 0x42,\n\t36226 - 19968: jis0212<<14 | 0x3E<<7 | 0x2A,\n\t36228 - 19968: jis0212<<14 | 0x3E<<7 | 0x2B,\n\t36229 - 19968: jis0208<<14 | 0x23<<7 | 0x15,\n\t36232 - 19968: jis0212<<14 | 0x3E<<7 | 0x2C,\n\t36234 - 19968: jis0208<<14 | 0x10<<7 | 0x3A,\n\t36237 - 19968: jis0212<<14 | 0x3E<<7 | 0x2D,\n\t36240 - 19968: jis0212<<14 | 0x3E<<7 | 0x2E,\n\t36241 - 19968: jis0212<<14 | 0x3E<<7 | 0x2F,\n\t36245 - 19968: jis0212<<14 | 0x3E<<7 | 0x30,\n\t36249 - 19968: jis0208<<14 | 0x4B<<7 | 0x43,\n\t36254 - 19968: jis0212<<14 | 0x3E<<7 | 0x31,\n\t36255 - 19968: jis0212<<14 | 0x3E<<7 | 0x32,\n\t36256 - 19968: jis0212<<14 | 0x3E<<7 | 0x33,\n\t36259 - 19968: jis0208<<14 | 0x1B<<7 | 0x50,\n\t36262 - 19968: jis0212<<14 | 0x3E<<7 | 0x34,\n\t36264 - 19968: jis0208<<14 | 0x1E<<7 | 0x55,\n\t36267 - 19968: jis0212<<14 | 0x3E<<7 | 0x35,\n\t36268 - 19968: jis0212<<14 | 0x3E<<7 | 0x36,\n\t36271 - 19968: jis0212<<14 | 0x3E<<7 | 0x37,\n\t36274 - 19968: jis0212<<14 | 0x3E<<7 | 0x38,\n\t36275 - 19968: jis0208<<14 | 0x21<<7 | 0x0C,\n\t36277 - 19968: jis0212<<14 | 0x3E<<7 | 0x39,\n\t36279 - 19968: jis0212<<14 | 0x3E<<7 | 0x3A,\n\t36281 - 19968: jis0212<<14 | 0x3E<<7 | 0x3B,\n\t36282 - 19968: jis0208<<14 | 0x4B<<7 | 0x46,\n\t36283 - 19968: jis0212<<14 | 0x3E<<7 | 0x3C,\n\t36284 - 19968: jis0212<<14 | 0x3E<<7 | 0x4E,\n\t36286 - 19968: jis0208<<14 | 0x4B<<7 | 0x45,\n\t36288 - 19968: jis0212<<14 | 0x3E<<7 | 0x3D,\n\t36290 - 19968: jis0208<<14 | 0x4B<<7 | 0x44,\n\t36293 - 19968: jis0212<<14 | 0x3E<<7 | 0x3E,\n\t36294 - 19968: jis0212<<14 | 0x3E<<7 | 0x3F,\n\t36295 - 19968: jis0212<<14 | 0x3E<<7 | 0x40,\n\t36296 - 19968: jis0212<<14 | 0x3E<<7 | 0x41,\n\t36298 - 19968: jis0212<<14 | 0x3E<<7 | 0x42,\n\t36299 - 19968: jis0208<<14 | 0x4B<<7 | 0x4C,\n\t36300 - 19968: jis0208<<14 | 0x4B<<7 | 0x4A,\n\t36302 - 19968: jis0212<<14 | 0x3E<<7 | 0x43,\n\t36303 - 19968: jis0208<<14 | 0x4B<<7 | 0x47,\n\t36305 - 19968: jis0212<<14 | 0x3E<<7 | 0x44,\n\t36308 - 19968: jis0212<<14 | 0x3E<<7 | 0x45,\n\t36309 - 19968: jis0212<<14 | 0x3E<<7 | 0x46,\n\t36310 - 19968: jis0208<<14 | 0x4B<<7 | 0x49,\n\t36311 - 19968: jis0212<<14 | 0x3E<<7 | 0x47,\n\t36313 - 19968: jis0212<<14 | 0x3E<<7 | 0x48,\n\t36314 - 19968: jis0208<<14 | 0x4B<<7 | 0x48,\n\t36315 - 19968: jis0208<<14 | 0x4B<<7 | 0x4B,\n\t36317 - 19968: jis0208<<14 | 0x14<<7 | 0x56,\n\t36319 - 19968: jis0208<<14 | 0x4B<<7 | 0x4F,\n\t36321 - 19968: jis0208<<14 | 0x1F<<7 | 0x36,\n\t36323 - 19968: jis0208<<14 | 0x4B<<7 | 0x50,\n\t36324 - 19968: jis0212<<14 | 0x3E<<7 | 0x49,\n\t36325 - 19968: jis0212<<14 | 0x3E<<7 | 0x4A,\n\t36327 - 19968: jis0212<<14 | 0x3E<<7 | 0x4B,\n\t36328 - 19968: jis0208<<14 | 0x17<<7 | 0x38,\n\t36330 - 19968: jis0208<<14 | 0x4B<<7 | 0x4D,\n\t36331 - 19968: jis0208<<14 | 0x4B<<7 | 0x4E,\n\t36332 - 19968: jis0212<<14 | 0x3E<<7 | 0x4C,\n\t36335 - 19968: jis0208<<14 | 0x2E<<7 | 0x08,\n\t36336 - 19968: jis0212<<14 | 0x3E<<7 | 0x4D,\n\t36337 - 19968: jis0212<<14 | 0x3E<<7 | 0x4F,\n\t36338 - 19968: jis0212<<14 | 0x3E<<7 | 0x50,\n\t36339 - 19968: jis0208<<14 | 0x23<<7 | 0x16,\n\t36340 - 19968: jis0212<<14 | 0x3E<<7 | 0x51,\n\t36341 - 19968: jis0208<<14 | 0x20<<7 | 0x08,\n\t36348 - 19968: jis0208<<14 | 0x4B<<7 | 0x51,\n\t36349 - 19968: jis0212<<14 | 0x3E<<7 | 0x52,\n\t36351 - 19968: jis0208<<14 | 0x4B<<7 | 0x54,\n\t36353 - 19968: jis0212<<14 | 0x3E<<7 | 0x53,\n\t36356 - 19968: jis0212<<14 | 0x3E<<7 | 0x54,\n\t36357 - 19968: jis0212<<14 | 0x3E<<7 | 0x55,\n\t36358 - 19968: jis0212<<14 | 0x3E<<7 | 0x56,\n\t36360 - 19968: jis0208<<14 | 0x4B<<7 | 0x52,\n\t36361 - 19968: jis0208<<14 | 0x4B<<7 | 0x53,\n\t36362 - 19968: jis0208<<14 | 0x2C<<7 | 0x38,\n\t36363 - 19968: jis0212<<14 | 0x3E<<7 | 0x57,\n\t36367 - 19968: jis0208<<14 | 0x25<<7 | 0x06,\n\t36368 - 19968: jis0208<<14 | 0x4B<<7 | 0x57,\n\t36369 - 19968: jis0212<<14 | 0x3E<<7 | 0x58,\n\t36372 - 19968: jis0212<<14 | 0x3E<<7 | 0x59,\n\t36374 - 19968: jis0212<<14 | 0x3E<<7 | 0x5A,\n\t36381 - 19968: jis0208<<14 | 0x4B<<7 | 0x55,\n\t36382 - 19968: jis0208<<14 | 0x4B<<7 | 0x56,\n\t36383 - 19968: jis0208<<14 | 0x4B<<7 | 0x58,\n\t36384 - 19968: jis0212<<14 | 0x3E<<7 | 0x5B,\n\t36385 - 19968: jis0212<<14 | 0x3E<<7 | 0x5C,\n\t36386 - 19968: jis0212<<14 | 0x3E<<7 | 0x5D,\n\t36387 - 19968: jis0212<<14 | 0x3F<<7 | 0x00,\n\t36390 - 19968: jis0212<<14 | 0x3F<<7 | 0x01,\n\t36391 - 19968: jis0212<<14 | 0x3F<<7 | 0x02,\n\t36394 - 19968: jis0208<<14 | 0x4C<<7 | 0x08,\n\t36400 - 19968: jis0208<<14 | 0x4B<<7 | 0x5B,\n\t36401 - 19968: jis0212<<14 | 0x3F<<7 | 0x03,\n\t36403 - 19968: jis0212<<14 | 0x3F<<7 | 0x04,\n\t36404 - 19968: jis0208<<14 | 0x4B<<7 | 0x5C,\n\t36405 - 19968: jis0208<<14 | 0x4B<<7 | 0x5A,\n\t36406 - 19968: jis0212<<14 | 0x3F<<7 | 0x05,\n\t36407 - 19968: jis0212<<14 | 0x3F<<7 | 0x06,\n\t36408 - 19968: jis0212<<14 | 0x3F<<7 | 0x07,\n\t36409 - 19968: jis0212<<14 | 0x3F<<7 | 0x08,\n\t36413 - 19968: jis0212<<14 | 0x3F<<7 | 0x09,\n\t36416 - 19968: jis0212<<14 | 0x3F<<7 | 0x0A,\n\t36417 - 19968: jis0212<<14 | 0x3F<<7 | 0x0B,\n\t36418 - 19968: jis0208<<14 | 0x4B<<7 | 0x59,\n\t36420 - 19968: jis0208<<14 | 0x23<<7 | 0x5C,\n\t36423 - 19968: jis0208<<14 | 0x4C<<7 | 0x00,\n\t36424 - 19968: jis0208<<14 | 0x4C<<7 | 0x04,\n\t36425 - 19968: jis0208<<14 | 0x4C<<7 | 0x01,\n\t36426 - 19968: jis0208<<14 | 0x4B<<7 | 0x5D,\n\t36427 - 19968: jis0212<<14 | 0x3F<<7 | 0x0C,\n\t36428 - 19968: jis0208<<14 | 0x4C<<7 | 0x02,\n\t36429 - 19968: jis0212<<14 | 0x3F<<7 | 0x0D,\n\t36430 - 19968: jis0212<<14 | 0x3F<<7 | 0x0E,\n\t36431 - 19968: jis0212<<14 | 0x3F<<7 | 0x0F,\n\t36432 - 19968: jis0208<<14 | 0x4C<<7 | 0x03,\n\t36436 - 19968: jis0212<<14 | 0x3F<<7 | 0x10,\n\t36437 - 19968: jis0208<<14 | 0x4C<<7 | 0x0A,\n\t36441 - 19968: jis0208<<14 | 0x4C<<7 | 0x05,\n\t36443 - 19968: jis0212<<14 | 0x3F<<7 | 0x11,\n\t36444 - 19968: jis0212<<14 | 0x3F<<7 | 0x12,\n\t36445 - 19968: jis0212<<14 | 0x3F<<7 | 0x13,\n\t36446 - 19968: jis0212<<14 | 0x3F<<7 | 0x14,\n\t36447 - 19968: jis0208<<14 | 0x1F<<7 | 0x37,\n\t36448 - 19968: jis0208<<14 | 0x4C<<7 | 0x07,\n\t36449 - 19968: jis0212<<14 | 0x3F<<7 | 0x15,\n\t36450 - 19968: jis0212<<14 | 0x3F<<7 | 0x16,\n\t36451 - 19968: jis0208<<14 | 0x4C<<7 | 0x09,\n\t36452 - 19968: jis0208<<14 | 0x4C<<7 | 0x06,\n\t36457 - 19968: jis0212<<14 | 0x3F<<7 | 0x17,\n\t36460 - 19968: jis0212<<14 | 0x3F<<7 | 0x18,\n\t36461 - 19968: jis0212<<14 | 0x3F<<7 | 0x19,\n\t36463 - 19968: jis0212<<14 | 0x3F<<7 | 0x1A,\n\t36464 - 19968: jis0212<<14 | 0x3F<<7 | 0x1B,\n\t36465 - 19968: jis0212<<14 | 0x3F<<7 | 0x1C,\n\t36466 - 19968: jis0208<<14 | 0x4C<<7 | 0x0C,\n\t36468 - 19968: jis0208<<14 | 0x1C<<7 | 0x12,\n\t36470 - 19968: jis0208<<14 | 0x4C<<7 | 0x0B,\n\t36473 - 19968: jis0212<<14 | 0x3F<<7 | 0x1D,\n\t36474 - 19968: jis0212<<14 | 0x3F<<7 | 0x1E,\n\t36475 - 19968: jis0212<<14 | 0x3F<<7 | 0x1F,\n\t36476 - 19968: jis0208<<14 | 0x4C<<7 | 0x0D,\n\t36481 - 19968: jis0208<<14 | 0x4C<<7 | 0x0E,\n\t36482 - 19968: jis0212<<14 | 0x3F<<7 | 0x20,\n\t36483 - 19968: jis0212<<14 | 0x3F<<7 | 0x21,\n\t36484 - 19968: jis0208<<14 | 0x4C<<7 | 0x11,\n\t36485 - 19968: jis0208<<14 | 0x4C<<7 | 0x10,\n\t36487 - 19968: jis0208<<14 | 0x4C<<7 | 0x0F,\n\t36489 - 19968: jis0212<<14 | 0x3F<<7 | 0x22,\n\t36490 - 19968: jis0208<<14 | 0x4C<<7 | 0x13,\n\t36491 - 19968: jis0208<<14 | 0x4C<<7 | 0x12,\n\t36493 - 19968: jis0208<<14 | 0x2B<<7 | 0x55,\n\t36496 - 19968: jis0212<<14 | 0x3F<<7 | 0x23,\n\t36497 - 19968: jis0208<<14 | 0x4C<<7 | 0x15,\n\t36498 - 19968: jis0212<<14 | 0x3F<<7 | 0x24,\n\t36499 - 19968: jis0208<<14 | 0x4C<<7 | 0x14,\n\t36500 - 19968: jis0208<<14 | 0x4C<<7 | 0x16,\n\t36501 - 19968: jis0212<<14 | 0x3F<<7 | 0x25,\n\t36505 - 19968: jis0208<<14 | 0x4C<<7 | 0x17,\n\t36506 - 19968: jis0212<<14 | 0x3F<<7 | 0x26,\n\t36507 - 19968: jis0212<<14 | 0x3F<<7 | 0x27,\n\t36509 - 19968: jis0212<<14 | 0x3F<<7 | 0x28,\n\t36510 - 19968: jis0212<<14 | 0x3F<<7 | 0x29,\n\t36513 - 19968: jis0208<<14 | 0x4C<<7 | 0x19,\n\t36514 - 19968: jis0212<<14 | 0x3F<<7 | 0x2A,\n\t36519 - 19968: jis0212<<14 | 0x3F<<7 | 0x2B,\n\t36521 - 19968: jis0212<<14 | 0x3F<<7 | 0x2C,\n\t36522 - 19968: jis0208<<14 | 0x4C<<7 | 0x18,\n\t36523 - 19968: jis0208<<14 | 0x1E<<7 | 0x27,\n\t36524 - 19968: jis0208<<14 | 0x4C<<7 | 0x1A,\n\t36525 - 19968: jis0212<<14 | 0x3F<<7 | 0x2D,\n\t36526 - 19968: jis0212<<14 | 0x3F<<7 | 0x2E,\n\t36527 - 19968: jis0208<<14 | 0x15<<7 | 0x4C,\n\t36528 - 19968: jis0208<<14 | 0x4C<<7 | 0x1B,\n\t36529 - 19968: jis0208<<14 | 0x4C<<7 | 0x1D,\n\t36531 - 19968: jis0212<<14 | 0x3F<<7 | 0x2F,\n\t36533 - 19968: jis0212<<14 | 0x3F<<7 | 0x30,\n\t36538 - 19968: jis0212<<14 | 0x3F<<7 | 0x31,\n\t36539 - 19968: jis0212<<14 | 0x3F<<7 | 0x32,\n\t36542 - 19968: jis0208<<14 | 0x4C<<7 | 0x1E,\n\t36544 - 19968: jis0212<<14 | 0x3F<<7 | 0x33,\n\t36545 - 19968: jis0212<<14 | 0x3F<<7 | 0x34,\n\t36547 - 19968: jis0212<<14 | 0x3F<<7 | 0x35,\n\t36548 - 19968: jis0212<<14 | 0x3F<<7 | 0x36,\n\t36549 - 19968: jis0208<<14 | 0x4C<<7 | 0x1F,\n\t36550 - 19968: jis0208<<14 | 0x4C<<7 | 0x1C,\n\t36551 - 19968: jis0212<<14 | 0x3F<<7 | 0x37,\n\t36552 - 19968: jis0208<<14 | 0x4C<<7 | 0x20,\n\t36554 - 19968: jis0208<<14 | 0x1B<<7 | 0x35,\n\t36555 - 19968: jis0208<<14 | 0x4C<<7 | 0x21,\n\t36556 - 19968: jis0208<<14 | 0x14<<7 | 0x0F,\n\t36557 - 19968: jis0208<<14 | 0x16<<7 | 0x12,\n\t36559 - 19968: jis0208<<14 | 0x5A<<7 | 0x55,\n\t36561 - 19968: jis0212<<14 | 0x3F<<7 | 0x39,\n\t36562 - 19968: jis0208<<14 | 0x17<<7 | 0x0D,\n\t36564 - 19968: jis0212<<14 | 0x3F<<7 | 0x3A,\n\t36571 - 19968: jis0208<<14 | 0x4C<<7 | 0x22,\n\t36572 - 19968: jis0212<<14 | 0x3F<<7 | 0x3B,\n\t36575 - 19968: jis0208<<14 | 0x25<<7 | 0x4F,\n\t36578 - 19968: jis0208<<14 | 0x24<<7 | 0x1D,\n\t36579 - 19968: jis0208<<14 | 0x4C<<7 | 0x23,\n\t36584 - 19968: jis0212<<14 | 0x3F<<7 | 0x3C,\n\t36587 - 19968: jis0208<<14 | 0x4C<<7 | 0x26,\n\t36589 - 19968: jis0212<<14 | 0x3F<<7 | 0x43,\n\t36590 - 19968: jis0212<<14 | 0x3F<<7 | 0x3D,\n\t36592 - 19968: jis0212<<14 | 0x3F<<7 | 0x3E,\n\t36593 - 19968: jis0212<<14 | 0x3F<<7 | 0x3F,\n\t36599 - 19968: jis0212<<14 | 0x3F<<7 | 0x40,\n\t36600 - 19968: jis0208<<14 | 0x1B<<7 | 0x13,\n\t36601 - 19968: jis0212<<14 | 0x3F<<7 | 0x41,\n\t36602 - 19968: jis0212<<14 | 0x3F<<7 | 0x42,\n\t36603 - 19968: jis0208<<14 | 0x4C<<7 | 0x25,\n\t36604 - 19968: jis0208<<14 | 0x4C<<7 | 0x24,\n\t36605 - 19968: jis0208<<14 | 0x16<<7 | 0x39,\n\t36606 - 19968: jis0208<<14 | 0x4C<<7 | 0x27,\n\t36608 - 19968: jis0212<<14 | 0x3F<<7 | 0x44,\n\t36610 - 19968: jis0212<<14 | 0x3F<<7 | 0x45,\n\t36611 - 19968: jis0208<<14 | 0x12<<7 | 0x32,\n\t36613 - 19968: jis0208<<14 | 0x4C<<7 | 0x29,\n\t36615 - 19968: jis0212<<14 | 0x3F<<7 | 0x46,\n\t36616 - 19968: jis0212<<14 | 0x3F<<7 | 0x47,\n\t36617 - 19968: jis0208<<14 | 0x19<<7 | 0x3B,\n\t36618 - 19968: jis0208<<14 | 0x4C<<7 | 0x28,\n\t36620 - 19968: jis0208<<14 | 0x4C<<7 | 0x31,\n\t36623 - 19968: jis0212<<14 | 0x3F<<7 | 0x48,\n\t36624 - 19968: jis0212<<14 | 0x3F<<7 | 0x49,\n\t36626 - 19968: jis0208<<14 | 0x4C<<7 | 0x2B,\n\t36627 - 19968: jis0208<<14 | 0x4C<<7 | 0x2D,\n\t36628 - 19968: jis0208<<14 | 0x29<<7 | 0x44,\n\t36629 - 19968: jis0208<<14 | 0x4C<<7 | 0x2A,\n\t36630 - 19968: jis0212<<14 | 0x3F<<7 | 0x4A,\n\t36631 - 19968: jis0212<<14 | 0x3F<<7 | 0x4B,\n\t36632 - 19968: jis0212<<14 | 0x3F<<7 | 0x4C,\n\t36633 - 19968: jis0208<<14 | 0x4C<<7 | 0x2C,\n\t36635 - 19968: jis0208<<14 | 0x4C<<7 | 0x30,\n\t36636 - 19968: jis0208<<14 | 0x4C<<7 | 0x2E,\n\t36637 - 19968: jis0208<<14 | 0x14<<7 | 0x10,\n\t36638 - 19968: jis0212<<14 | 0x3F<<7 | 0x4D,\n\t36639 - 19968: jis0208<<14 | 0x4C<<7 | 0x2F,\n\t36640 - 19968: jis0212<<14 | 0x3F<<7 | 0x4E,\n\t36641 - 19968: jis0212<<14 | 0x3F<<7 | 0x4F,\n\t36643 - 19968: jis0212<<14 | 0x3F<<7 | 0x50,\n\t36645 - 19968: jis0212<<14 | 0x3F<<7 | 0x51,\n\t36646 - 19968: jis0208<<14 | 0x4C<<7 | 0x32,\n\t36647 - 19968: jis0212<<14 | 0x3F<<7 | 0x52,\n\t36648 - 19968: jis0212<<14 | 0x3F<<7 | 0x53,\n\t36649 - 19968: jis0208<<14 | 0x26<<7 | 0x39,\n\t36650 - 19968: jis0208<<14 | 0x2D<<7 | 0x37,\n\t36652 - 19968: jis0212<<14 | 0x3F<<7 | 0x54,\n\t36653 - 19968: jis0212<<14 | 0x3F<<7 | 0x55,\n\t36654 - 19968: jis0212<<14 | 0x3F<<7 | 0x56,\n\t36655 - 19968: jis0208<<14 | 0x1C<<7 | 0x13,\n\t36659 - 19968: jis0208<<14 | 0x4C<<7 | 0x33,\n\t36660 - 19968: jis0212<<14 | 0x3F<<7 | 0x57,\n\t36661 - 19968: jis0212<<14 | 0x3F<<7 | 0x58,\n\t36662 - 19968: jis0212<<14 | 0x3F<<7 | 0x59,\n\t36663 - 19968: jis0212<<14 | 0x3F<<7 | 0x5A,\n\t36664 - 19968: jis0208<<14 | 0x2C<<7 | 0x01,\n\t36665 - 19968: jis0208<<14 | 0x4C<<7 | 0x35,\n\t36666 - 19968: jis0212<<14 | 0x3F<<7 | 0x5B,\n\t36667 - 19968: jis0208<<14 | 0x4C<<7 | 0x34,\n\t36670 - 19968: jis0208<<14 | 0x4C<<7 | 0x38,\n\t36671 - 19968: jis0208<<14 | 0x2C<<7 | 0x20,\n\t36672 - 19968: jis0212<<14 | 0x3F<<7 | 0x5C,\n\t36673 - 19968: jis0212<<14 | 0x3F<<7 | 0x5D,\n\t36674 - 19968: jis0208<<14 | 0x4C<<7 | 0x37,\n\t36675 - 19968: jis0212<<14 | 0x40<<7 | 0x00,\n\t36676 - 19968: jis0208<<14 | 0x12<<7 | 0x4C,\n\t36677 - 19968: jis0208<<14 | 0x4C<<7 | 0x36,\n\t36678 - 19968: jis0208<<14 | 0x4C<<7 | 0x3B,\n\t36679 - 19968: jis0212<<14 | 0x40<<7 | 0x01,\n\t36681 - 19968: jis0208<<14 | 0x4C<<7 | 0x3A,\n\t36684 - 19968: jis0208<<14 | 0x4C<<7 | 0x39,\n\t36685 - 19968: jis0208<<14 | 0x24<<7 | 0x11,\n\t36686 - 19968: jis0208<<14 | 0x4C<<7 | 0x3C,\n\t36687 - 19968: jis0212<<14 | 0x40<<7 | 0x02,\n\t36689 - 19968: jis0212<<14 | 0x40<<7 | 0x03,\n\t36690 - 19968: jis0212<<14 | 0x40<<7 | 0x04,\n\t36691 - 19968: jis0212<<14 | 0x40<<7 | 0x05,\n\t36692 - 19968: jis0212<<14 | 0x40<<7 | 0x06,\n\t36693 - 19968: jis0212<<14 | 0x40<<7 | 0x07,\n\t36695 - 19968: jis0208<<14 | 0x4C<<7 | 0x3D,\n\t36696 - 19968: jis0212<<14 | 0x40<<7 | 0x08,\n\t36700 - 19968: jis0208<<14 | 0x4C<<7 | 0x3E,\n\t36701 - 19968: jis0212<<14 | 0x40<<7 | 0x09,\n\t36702 - 19968: jis0212<<14 | 0x40<<7 | 0x0A,\n\t36703 - 19968: jis0208<<14 | 0x18<<7 | 0x4B,\n\t36705 - 19968: jis0208<<14 | 0x16<<7 | 0x04,\n\t36706 - 19968: jis0208<<14 | 0x4C<<7 | 0x3F,\n\t36707 - 19968: jis0208<<14 | 0x4C<<7 | 0x40,\n\t36708 - 19968: jis0208<<14 | 0x4C<<7 | 0x41,\n\t36709 - 19968: jis0212<<14 | 0x40<<7 | 0x0B,\n\t36763 - 19968: jis0208<<14 | 0x1E<<7 | 0x28,\n\t36764 - 19968: jis0208<<14 | 0x4C<<7 | 0x42,\n\t36765 - 19968: jis0212<<14 | 0x40<<7 | 0x0C,\n\t36766 - 19968: jis0208<<14 | 0x1B<<7 | 0x0C,\n\t36767 - 19968: jis0208<<14 | 0x4C<<7 | 0x43,\n\t36768 - 19968: jis0212<<14 | 0x40<<7 | 0x0D,\n\t36769 - 19968: jis0212<<14 | 0x40<<7 | 0x0E,\n\t36771 - 19968: jis0208<<14 | 0x4C<<7 | 0x44,\n\t36772 - 19968: jis0212<<14 | 0x40<<7 | 0x0F,\n\t36773 - 19968: jis0212<<14 | 0x40<<7 | 0x10,\n\t36774 - 19968: jis0212<<14 | 0x40<<7 | 0x11,\n\t36775 - 19968: jis0208<<14 | 0x31<<7 | 0x00,\n\t36776 - 19968: jis0208<<14 | 0x30<<7 | 0x5D,\n\t36781 - 19968: jis0208<<14 | 0x4C<<7 | 0x45,\n\t36782 - 19968: jis0208<<14 | 0x44<<7 | 0x4F,\n\t36783 - 19968: jis0208<<14 | 0x4C<<7 | 0x46,\n\t36784 - 19968: jis0208<<14 | 0x22<<7 | 0x03,\n\t36785 - 19968: jis0208<<14 | 0x1E<<7 | 0x0A,\n\t36786 - 19968: jis0208<<14 | 0x26<<7 | 0x1F,\n\t36789 - 19968: jis0212<<14 | 0x40<<7 | 0x12,\n\t36790 - 19968: jis0212<<14 | 0x40<<7 | 0x13,\n\t36791 - 19968: jis0208<<14 | 0x4C<<7 | 0x47,\n\t36792 - 19968: jis0212<<14 | 0x40<<7 | 0x14,\n\t36794 - 19968: jis0208<<14 | 0x29<<7 | 0x34,\n\t36795 - 19968: jis0208<<14 | 0x23<<7 | 0x33,\n\t36796 - 19968: jis0208<<14 | 0x18<<7 | 0x5D,\n\t36798 - 19968: jis0212<<14 | 0x40<<7 | 0x15,\n\t36799 - 19968: jis0208<<14 | 0x22<<7 | 0x08,\n\t36800 - 19968: jis0212<<14 | 0x40<<7 | 0x16,\n\t36801 - 19968: jis0212<<14 | 0x40<<7 | 0x17,\n\t36802 - 19968: jis0208<<14 | 0x10<<7 | 0x09,\n\t36804 - 19968: jis0208<<14 | 0x2A<<7 | 0x57,\n\t36805 - 19968: jis0208<<14 | 0x1E<<7 | 0x36,\n\t36806 - 19968: jis0212<<14 | 0x40<<7 | 0x18,\n\t36810 - 19968: jis0212<<14 | 0x40<<7 | 0x19,\n\t36811 - 19968: jis0212<<14 | 0x40<<7 | 0x1A,\n\t36813 - 19968: jis0212<<14 | 0x40<<7 | 0x1B,\n\t36814 - 19968: jis0208<<14 | 0x16<<7 | 0x3D,\n\t36816 - 19968: jis0212<<14 | 0x40<<7 | 0x1C,\n\t36817 - 19968: jis0208<<14 | 0x15<<7 | 0x40,\n\t36818 - 19968: jis0212<<14 | 0x40<<7 | 0x1D,\n\t36819 - 19968: jis0212<<14 | 0x40<<7 | 0x1E,\n\t36820 - 19968: jis0208<<14 | 0x29<<7 | 0x35,\n\t36821 - 19968: jis0212<<14 | 0x40<<7 | 0x1F,\n\t36826 - 19968: jis0208<<14 | 0x4C<<7 | 0x48,\n\t36832 - 19968: jis0212<<14 | 0x40<<7 | 0x20,\n\t36834 - 19968: jis0208<<14 | 0x4C<<7 | 0x4A,\n\t36835 - 19968: jis0212<<14 | 0x40<<7 | 0x21,\n\t36836 - 19968: jis0212<<14 | 0x40<<7 | 0x22,\n\t36837 - 19968: jis0208<<14 | 0x4C<<7 | 0x49,\n\t36838 - 19968: jis0208<<14 | 0x11<<7 | 0x3F,\n\t36840 - 19968: jis0212<<14 | 0x40<<7 | 0x23,\n\t36841 - 19968: jis0208<<14 | 0x25<<7 | 0x55,\n\t36842 - 19968: jis0208<<14 | 0x4C<<7 | 0x4B,\n\t36843 - 19968: jis0208<<14 | 0x26<<7 | 0x56,\n\t36845 - 19968: jis0208<<14 | 0x24<<7 | 0x12,\n\t36846 - 19968: jis0212<<14 | 0x40<<7 | 0x24,\n\t36847 - 19968: jis0208<<14 | 0x4C<<7 | 0x4C,\n\t36848 - 19968: jis0208<<14 | 0x1C<<7 | 0x31,\n\t36849 - 19968: jis0212<<14 | 0x40<<7 | 0x25,\n\t36852 - 19968: jis0208<<14 | 0x4C<<7 | 0x4E,\n\t36853 - 19968: jis0212<<14 | 0x40<<7 | 0x26,\n\t36854 - 19968: jis0212<<14 | 0x40<<7 | 0x27,\n\t36855 - 19968: jis0208<<14 | 0x2B<<7 | 0x21,\n\t36856 - 19968: jis0208<<14 | 0x4C<<7 | 0x5D,\n\t36857 - 19968: jis0208<<14 | 0x4C<<7 | 0x50,\n\t36858 - 19968: jis0208<<14 | 0x4C<<7 | 0x51,\n\t36859 - 19968: jis0212<<14 | 0x40<<7 | 0x28,\n\t36861 - 19968: jis0208<<14 | 0x23<<7 | 0x28,\n\t36862 - 19968: jis0212<<14 | 0x40<<7 | 0x29,\n\t36864 - 19968: jis0208<<14 | 0x21<<7 | 0x3F,\n\t36865 - 19968: jis0208<<14 | 0x20<<7 | 0x56,\n\t36866 - 19968: jis0212<<14 | 0x40<<7 | 0x2A,\n\t36867 - 19968: jis0208<<14 | 0x25<<7 | 0x07,\n\t36868 - 19968: jis0212<<14 | 0x40<<7 | 0x2B,\n\t36869 - 19968: jis0208<<14 | 0x4C<<7 | 0x4F,\n\t36870 - 19968: jis0208<<14 | 0x14<<7 | 0x34,\n\t36872 - 19968: jis0212<<14 | 0x40<<7 | 0x2C,\n\t36875 - 19968: jis0208<<14 | 0x4C<<7 | 0x58,\n\t36876 - 19968: jis0212<<14 | 0x40<<7 | 0x2D,\n\t36877 - 19968: jis0208<<14 | 0x4C<<7 | 0x55,\n\t36878 - 19968: jis0208<<14 | 0x4D<<7 | 0x04,\n\t36879 - 19968: jis0208<<14 | 0x25<<7 | 0x08,\n\t36880 - 19968: jis0208<<14 | 0x22<<7 | 0x3F,\n\t36881 - 19968: jis0208<<14 | 0x4C<<7 | 0x52,\n\t36883 - 19968: jis0208<<14 | 0x23<<7 | 0x5D,\n\t36884 - 19968: jis0208<<14 | 0x24<<7 | 0x32,\n\t36885 - 19968: jis0208<<14 | 0x4C<<7 | 0x53,\n\t36886 - 19968: jis0208<<14 | 0x4C<<7 | 0x57,\n\t36887 - 19968: jis0208<<14 | 0x1E<<7 | 0x3F,\n\t36888 - 19968: jis0212<<14 | 0x40<<7 | 0x2E,\n\t36889 - 19968: jis0208<<14 | 0x26<<7 | 0x46,\n\t36890 - 19968: jis0208<<14 | 0x23<<7 | 0x2B,\n\t36891 - 19968: jis0212<<14 | 0x40<<7 | 0x2F,\n\t36893 - 19968: jis0208<<14 | 0x1F<<7 | 0x21,\n\t36894 - 19968: jis0208<<14 | 0x4C<<7 | 0x56,\n\t36895 - 19968: jis0208<<14 | 0x21<<7 | 0x0D,\n\t36896 - 19968: jis0208<<14 | 0x21<<7 | 0x03,\n\t36897 - 19968: jis0208<<14 | 0x4C<<7 | 0x54,\n\t36898 - 19968: jis0208<<14 | 0x0F<<7 | 0x08,\n\t36899 - 19968: jis0208<<14 | 0x2E<<7 | 0x01,\n\t36903 - 19968: jis0208<<14 | 0x4C<<7 | 0x59,\n\t36904 - 19968: jis0212<<14 | 0x40<<7 | 0x30,\n\t36905 - 19968: jis0212<<14 | 0x40<<7 | 0x31,\n\t36906 - 19968: jis0212<<14 | 0x40<<7 | 0x33,\n\t36908 - 19968: jis0212<<14 | 0x40<<7 | 0x34,\n\t36909 - 19968: jis0212<<14 | 0x40<<7 | 0x35,\n\t36910 - 19968: jis0208<<14 | 0x21<<7 | 0x40,\n\t36911 - 19968: jis0212<<14 | 0x40<<7 | 0x32,\n\t36913 - 19968: jis0208<<14 | 0x1C<<7 | 0x14,\n\t36914 - 19968: jis0208<<14 | 0x1E<<7 | 0x29,\n\t36915 - 19968: jis0212<<14 | 0x40<<7 | 0x36,\n\t36916 - 19968: jis0212<<14 | 0x40<<7 | 0x37,\n\t36917 - 19968: jis0208<<14 | 0x4C<<7 | 0x5B,\n\t36918 - 19968: jis0208<<14 | 0x4C<<7 | 0x5A,\n\t36919 - 19968: jis0212<<14 | 0x40<<7 | 0x38,\n\t36920 - 19968: jis0208<<14 | 0x0F<<7 | 0x4E,\n\t36921 - 19968: jis0208<<14 | 0x4C<<7 | 0x5C,\n\t36924 - 19968: jis0208<<14 | 0x28<<7 | 0x0E,\n\t36926 - 19968: jis0208<<14 | 0x4D<<7 | 0x06,\n\t36927 - 19968: jis0212<<14 | 0x40<<7 | 0x39,\n\t36929 - 19968: jis0208<<14 | 0x25<<7 | 0x3A,\n\t36930 - 19968: jis0208<<14 | 0x1E<<7 | 0x4A,\n\t36931 - 19968: jis0212<<14 | 0x40<<7 | 0x3A,\n\t36932 - 19968: jis0212<<14 | 0x40<<7 | 0x3B,\n\t36933 - 19968: jis0208<<14 | 0x22<<7 | 0x38,\n\t36935 - 19968: jis0208<<14 | 0x15<<7 | 0x57,\n\t36937 - 19968: jis0208<<14 | 0x4D<<7 | 0x05,\n\t36938 - 19968: jis0208<<14 | 0x2C<<7 | 0x16,\n\t36939 - 19968: jis0208<<14 | 0x10<<7 | 0x1E,\n\t36940 - 19968: jis0212<<14 | 0x40<<7 | 0x3C,\n\t36941 - 19968: jis0208<<14 | 0x29<<7 | 0x36,\n\t36942 - 19968: jis0208<<14 | 0x11<<7 | 0x40,\n\t36943 - 19968: jis0208<<14 | 0x4D<<7 | 0x00,\n\t36944 - 19968: jis0208<<14 | 0x4D<<7 | 0x01,\n\t36945 - 19968: jis0208<<14 | 0x4D<<7 | 0x02,\n\t36946 - 19968: jis0208<<14 | 0x4D<<7 | 0x03,\n\t36947 - 19968: jis0208<<14 | 0x25<<7 | 0x1A,\n\t36948 - 19968: jis0208<<14 | 0x22<<7 | 0x02,\n\t36949 - 19968: jis0208<<14 | 0x0F<<7 | 0x42,\n\t36950 - 19968: jis0208<<14 | 0x4D<<7 | 0x07,\n\t36952 - 19968: jis0208<<14 | 0x4D<<7 | 0x08,\n\t36953 - 19968: jis0208<<14 | 0x53<<7 | 0x02,\n\t36955 - 19968: jis0212<<14 | 0x40<<7 | 0x3D,\n\t36956 - 19968: jis0208<<14 | 0x21<<7 | 0x1C,\n\t36957 - 19968: jis0212<<14 | 0x40<<7 | 0x3E,\n\t36958 - 19968: jis0208<<14 | 0x4D<<7 | 0x09,\n\t36960 - 19968: jis0208<<14 | 0x10<<7 | 0x52,\n\t36961 - 19968: jis0208<<14 | 0x20<<7 | 0x2B,\n\t36962 - 19968: jis0212<<14 | 0x40<<7 | 0x3F,\n\t36963 - 19968: jis0208<<14 | 0x17<<7 | 0x0E,\n\t36965 - 19968: jis0208<<14 | 0x2C<<7 | 0x39,\n\t36966 - 19968: jis0212<<14 | 0x40<<7 | 0x40,\n\t36967 - 19968: jis0208<<14 | 0x5A<<7 | 0x58,\n\t36968 - 19968: jis0208<<14 | 0x4D<<7 | 0x0A,\n\t36969 - 19968: jis0208<<14 | 0x24<<7 | 0x0B,\n\t36972 - 19968: jis0212<<14 | 0x40<<7 | 0x42,\n\t36973 - 19968: jis0208<<14 | 0x20<<7 | 0x57,\n\t36974 - 19968: jis0208<<14 | 0x1B<<7 | 0x36,\n\t36975 - 19968: jis0208<<14 | 0x4D<<7 | 0x0B,\n\t36976 - 19968: jis0212<<14 | 0x40<<7 | 0x43,\n\t36978 - 19968: jis0208<<14 | 0x4D<<7 | 0x0E,\n\t36980 - 19968: jis0212<<14 | 0x40<<7 | 0x44,\n\t36981 - 19968: jis0208<<14 | 0x1C<<7 | 0x44,\n\t36982 - 19968: jis0208<<14 | 0x4D<<7 | 0x0C,\n\t36983 - 19968: jis0208<<14 | 0x20<<7 | 0x0A,\n\t36984 - 19968: jis0208<<14 | 0x20<<7 | 0x09,\n\t36985 - 19968: jis0212<<14 | 0x40<<7 | 0x45,\n\t36986 - 19968: jis0208<<14 | 0x0F<<7 | 0x43,\n\t36988 - 19968: jis0208<<14 | 0x2D<<7 | 0x2A,\n\t36989 - 19968: jis0208<<14 | 0x4D<<7 | 0x10,\n\t36991 - 19968: jis0208<<14 | 0x27<<7 | 0x51,\n\t36992 - 19968: jis0208<<14 | 0x4D<<7 | 0x12,\n\t36993 - 19968: jis0208<<14 | 0x4D<<7 | 0x11,\n\t36994 - 19968: jis0208<<14 | 0x4D<<7 | 0x0F,\n\t36995 - 19968: jis0208<<14 | 0x42<<7 | 0x43,\n\t36996 - 19968: jis0208<<14 | 0x13<<7 | 0x33,\n\t36997 - 19968: jis0212<<14 | 0x40<<7 | 0x46,\n\t36999 - 19968: jis0208<<14 | 0x4C<<7 | 0x4D,\n\t37000 - 19968: jis0212<<14 | 0x40<<7 | 0x47,\n\t37001 - 19968: jis0208<<14 | 0x4D<<7 | 0x14,\n\t37002 - 19968: jis0208<<14 | 0x4D<<7 | 0x13,\n\t37003 - 19968: jis0212<<14 | 0x40<<7 | 0x48,\n\t37004 - 19968: jis0212<<14 | 0x40<<7 | 0x49,\n\t37006 - 19968: jis0212<<14 | 0x40<<7 | 0x4A,\n\t37007 - 19968: jis0208<<14 | 0x4D<<7 | 0x15,\n\t37008 - 19968: jis0212<<14 | 0x40<<7 | 0x4B,\n\t37009 - 19968: jis0208<<14 | 0x2C<<7 | 0x17,\n\t37013 - 19968: jis0212<<14 | 0x40<<7 | 0x4C,\n\t37015 - 19968: jis0212<<14 | 0x40<<7 | 0x4D,\n\t37016 - 19968: jis0212<<14 | 0x40<<7 | 0x4E,\n\t37017 - 19968: jis0212<<14 | 0x40<<7 | 0x4F,\n\t37019 - 19968: jis0212<<14 | 0x40<<7 | 0x50,\n\t37024 - 19968: jis0212<<14 | 0x40<<7 | 0x51,\n\t37025 - 19968: jis0212<<14 | 0x40<<7 | 0x52,\n\t37026 - 19968: jis0212<<14 | 0x40<<7 | 0x53,\n\t37027 - 19968: jis0208<<14 | 0x25<<7 | 0x40,\n\t37029 - 19968: jis0212<<14 | 0x40<<7 | 0x54,\n\t37030 - 19968: jis0208<<14 | 0x2A<<7 | 0x0D,\n\t37032 - 19968: jis0208<<14 | 0x4D<<7 | 0x16,\n\t37034 - 19968: jis0208<<14 | 0x1B<<7 | 0x38,\n\t37039 - 19968: jis0208<<14 | 0x4D<<7 | 0x17,\n\t37040 - 19968: jis0212<<14 | 0x40<<7 | 0x55,\n\t37041 - 19968: jis0208<<14 | 0x4D<<7 | 0x18,\n\t37042 - 19968: jis0212<<14 | 0x40<<7 | 0x56,\n\t37043 - 19968: jis0212<<14 | 0x40<<7 | 0x57,\n\t37044 - 19968: jis0212<<14 | 0x40<<7 | 0x58,\n\t37045 - 19968: jis0208<<14 | 0x4D<<7 | 0x19,\n\t37046 - 19968: jis0212<<14 | 0x40<<7 | 0x59,\n\t37048 - 19968: jis0208<<14 | 0x24<<7 | 0x00,\n\t37053 - 19968: jis0212<<14 | 0x40<<7 | 0x5A,\n\t37054 - 19968: jis0212<<14 | 0x40<<7 | 0x5C,\n\t37057 - 19968: jis0208<<14 | 0x0F<<7 | 0x49,\n\t37059 - 19968: jis0212<<14 | 0x40<<7 | 0x5D,\n\t37060 - 19968: jis0212<<14 | 0x41<<7 | 0x00,\n\t37061 - 19968: jis0212<<14 | 0x41<<7 | 0x01,\n\t37063 - 19968: jis0212<<14 | 0x41<<7 | 0x02,\n\t37064 - 19968: jis0212<<14 | 0x41<<7 | 0x03,\n\t37066 - 19968: jis0208<<14 | 0x18<<7 | 0x38,\n\t37068 - 19968: jis0212<<14 | 0x40<<7 | 0x5B,\n\t37070 - 19968: jis0208<<14 | 0x2E<<7 | 0x19,\n\t37074 - 19968: jis0212<<14 | 0x41<<7 | 0x0C,\n\t37077 - 19968: jis0212<<14 | 0x41<<7 | 0x04,\n\t37079 - 19968: jis0212<<14 | 0x41<<7 | 0x05,\n\t37080 - 19968: jis0212<<14 | 0x41<<7 | 0x06,\n\t37081 - 19968: jis0212<<14 | 0x41<<7 | 0x07,\n\t37083 - 19968: jis0208<<14 | 0x4D<<7 | 0x1D,\n\t37084 - 19968: jis0212<<14 | 0x41<<7 | 0x08,\n\t37085 - 19968: jis0212<<14 | 0x41<<7 | 0x09,\n\t37086 - 19968: jis0208<<14 | 0x5A<<7 | 0x59,\n\t37087 - 19968: jis0212<<14 | 0x41<<7 | 0x0A,\n\t37089 - 19968: jis0208<<14 | 0x16<<7 | 0x13,\n\t37090 - 19968: jis0208<<14 | 0x4D<<7 | 0x1A,\n\t37092 - 19968: jis0208<<14 | 0x4D<<7 | 0x1B,\n\t37093 - 19968: jis0212<<14 | 0x41<<7 | 0x0B,\n\t37096 - 19968: jis0208<<14 | 0x28<<7 | 0x53,\n\t37099 - 19968: jis0212<<14 | 0x41<<7 | 0x0E,\n\t37101 - 19968: jis0208<<14 | 0x12<<7 | 0x33,\n\t37103 - 19968: jis0212<<14 | 0x41<<7 | 0x0F,\n\t37104 - 19968: jis0212<<14 | 0x41<<7 | 0x10,\n\t37108 - 19968: jis0212<<14 | 0x41<<7 | 0x11,\n\t37109 - 19968: jis0208<<14 | 0x2C<<7 | 0x18,\n\t37110 - 19968: jis0212<<14 | 0x41<<7 | 0x0D,\n\t37111 - 19968: jis0208<<14 | 0x15<<7 | 0x1E,\n\t37117 - 19968: jis0208<<14 | 0x24<<7 | 0x33,\n\t37118 - 19968: jis0212<<14 | 0x41<<7 | 0x12,\n\t37119 - 19968: jis0212<<14 | 0x41<<7 | 0x13,\n\t37120 - 19968: jis0212<<14 | 0x41<<7 | 0x14,\n\t37122 - 19968: jis0208<<14 | 0x4D<<7 | 0x1E,\n\t37124 - 19968: jis0212<<14 | 0x41<<7 | 0x15,\n\t37125 - 19968: jis0212<<14 | 0x41<<7 | 0x16,\n\t37126 - 19968: jis0212<<14 | 0x41<<7 | 0x17,\n\t37128 - 19968: jis0212<<14 | 0x41<<7 | 0x18,\n\t37133 - 19968: jis0212<<14 | 0x41<<7 | 0x19,\n\t37136 - 19968: jis0212<<14 | 0x41<<7 | 0x1A,\n\t37138 - 19968: jis0208<<14 | 0x4D<<7 | 0x1F,\n\t37140 - 19968: jis0212<<14 | 0x41<<7 | 0x1B,\n\t37141 - 19968: jis0208<<14 | 0x5A<<7 | 0x5B,\n\t37142 - 19968: jis0212<<14 | 0x41<<7 | 0x1C,\n\t37143 - 19968: jis0212<<14 | 0x41<<7 | 0x1D,\n\t37144 - 19968: jis0212<<14 | 0x41<<7 | 0x1E,\n\t37145 - 19968: jis0208<<14 | 0x4D<<7 | 0x20,\n\t37146 - 19968: jis0212<<14 | 0x41<<7 | 0x1F,\n\t37148 - 19968: jis0212<<14 | 0x41<<7 | 0x20,\n\t37150 - 19968: jis0212<<14 | 0x41<<7 | 0x21,\n\t37152 - 19968: jis0212<<14 | 0x41<<7 | 0x22,\n\t37154 - 19968: jis0212<<14 | 0x41<<7 | 0x24,\n\t37155 - 19968: jis0212<<14 | 0x41<<7 | 0x25,\n\t37157 - 19968: jis0212<<14 | 0x41<<7 | 0x23,\n\t37159 - 19968: jis0208<<14 | 0x5A<<7 | 0x5C,\n\t37161 - 19968: jis0212<<14 | 0x41<<7 | 0x27,\n\t37165 - 19968: jis0208<<14 | 0x24<<7 | 0x01,\n\t37166 - 19968: jis0212<<14 | 0x41<<7 | 0x28,\n\t37167 - 19968: jis0212<<14 | 0x41<<7 | 0x29,\n\t37168 - 19968: jis0208<<14 | 0x4D<<7 | 0x22,\n\t37169 - 19968: jis0212<<14 | 0x41<<7 | 0x2A,\n\t37170 - 19968: jis0208<<14 | 0x4D<<7 | 0x21,\n\t37172 - 19968: jis0212<<14 | 0x41<<7 | 0x2B,\n\t37174 - 19968: jis0212<<14 | 0x41<<7 | 0x2C,\n\t37175 - 19968: jis0212<<14 | 0x41<<7 | 0x2D,\n\t37177 - 19968: jis0212<<14 | 0x41<<7 | 0x2E,\n\t37178 - 19968: jis0212<<14 | 0x41<<7 | 0x2F,\n\t37180 - 19968: jis0212<<14 | 0x41<<7 | 0x30,\n\t37181 - 19968: jis0212<<14 | 0x41<<7 | 0x31,\n\t37187 - 19968: jis0212<<14 | 0x41<<7 | 0x32,\n\t37191 - 19968: jis0212<<14 | 0x41<<7 | 0x33,\n\t37192 - 19968: jis0212<<14 | 0x41<<7 | 0x34,\n\t37193 - 19968: jis0208<<14 | 0x25<<7 | 0x32,\n\t37194 - 19968: jis0208<<14 | 0x4D<<7 | 0x23,\n\t37195 - 19968: jis0208<<14 | 0x1C<<7 | 0x15,\n\t37196 - 19968: jis0208<<14 | 0x1B<<7 | 0x3F,\n\t37197 - 19968: jis0208<<14 | 0x26<<7 | 0x3A,\n\t37198 - 19968: jis0208<<14 | 0x22<<7 | 0x50,\n\t37199 - 19968: jis0212<<14 | 0x41<<7 | 0x35,\n\t37202 - 19968: jis0208<<14 | 0x1B<<7 | 0x51,\n\t37203 - 19968: jis0212<<14 | 0x41<<7 | 0x36,\n\t37204 - 19968: jis0208<<14 | 0x1E<<7 | 0x4B,\n\t37206 - 19968: jis0208<<14 | 0x4D<<7 | 0x24,\n\t37207 - 19968: jis0212<<14 | 0x41<<7 | 0x37,\n\t37208 - 19968: jis0208<<14 | 0x4D<<7 | 0x25,\n\t37209 - 19968: jis0212<<14 | 0x41<<7 | 0x38,\n\t37210 - 19968: jis0212<<14 | 0x41<<7 | 0x39,\n\t37211 - 19968: jis0212<<14 | 0x41<<7 | 0x3A,\n\t37217 - 19968: jis0212<<14 | 0x41<<7 | 0x3B,\n\t37218 - 19968: jis0208<<14 | 0x1E<<7 | 0x3C,\n\t37219 - 19968: jis0208<<14 | 0x4D<<7 | 0x26,\n\t37220 - 19968: jis0212<<14 | 0x41<<7 | 0x3C,\n\t37221 - 19968: jis0208<<14 | 0x4D<<7 | 0x27,\n\t37223 - 19968: jis0212<<14 | 0x41<<7 | 0x3D,\n\t37225 - 19968: jis0208<<14 | 0x4D<<7 | 0x28,\n\t37226 - 19968: jis0208<<14 | 0x2C<<7 | 0x4E,\n\t37228 - 19968: jis0208<<14 | 0x1C<<7 | 0x16,\n\t37229 - 19968: jis0212<<14 | 0x41<<7 | 0x3E,\n\t37234 - 19968: jis0208<<14 | 0x4D<<7 | 0x2A,\n\t37235 - 19968: jis0208<<14 | 0x4D<<7 | 0x29,\n\t37236 - 19968: jis0212<<14 | 0x41<<7 | 0x3F,\n\t37237 - 19968: jis0208<<14 | 0x18<<7 | 0x39,\n\t37239 - 19968: jis0208<<14 | 0x18<<7 | 0x52,\n\t37240 - 19968: jis0208<<14 | 0x1A<<7 | 0x1F,\n\t37241 - 19968: jis0212<<14 | 0x41<<7 | 0x40,\n\t37242 - 19968: jis0212<<14 | 0x41<<7 | 0x41,\n\t37243 - 19968: jis0212<<14 | 0x41<<7 | 0x42,\n\t37249 - 19968: jis0212<<14 | 0x41<<7 | 0x43,\n\t37250 - 19968: jis0208<<14 | 0x4D<<7 | 0x2D,\n\t37251 - 19968: jis0212<<14 | 0x41<<7 | 0x44,\n\t37253 - 19968: jis0212<<14 | 0x41<<7 | 0x45,\n\t37254 - 19968: jis0212<<14 | 0x41<<7 | 0x46,\n\t37255 - 19968: jis0208<<14 | 0x1C<<7 | 0x45,\n\t37257 - 19968: jis0208<<14 | 0x4D<<7 | 0x2C,\n\t37258 - 19968: jis0212<<14 | 0x41<<7 | 0x47,\n\t37259 - 19968: jis0208<<14 | 0x4D<<7 | 0x2B,\n\t37261 - 19968: jis0208<<14 | 0x21<<7 | 0x48,\n\t37262 - 19968: jis0212<<14 | 0x41<<7 | 0x48,\n\t37264 - 19968: jis0208<<14 | 0x17<<7 | 0x4E,\n\t37265 - 19968: jis0212<<14 | 0x41<<7 | 0x49,\n\t37266 - 19968: jis0208<<14 | 0x1F<<7 | 0x22,\n\t37267 - 19968: jis0212<<14 | 0x41<<7 | 0x4A,\n\t37268 - 19968: jis0212<<14 | 0x41<<7 | 0x4B,\n\t37269 - 19968: jis0212<<14 | 0x41<<7 | 0x4C,\n\t37271 - 19968: jis0208<<14 | 0x27<<7 | 0x0F,\n\t37272 - 19968: jis0212<<14 | 0x41<<7 | 0x4D,\n\t37276 - 19968: jis0208<<14 | 0x1C<<7 | 0x18,\n\t37278 - 19968: jis0212<<14 | 0x41<<7 | 0x4E,\n\t37281 - 19968: jis0212<<14 | 0x41<<7 | 0x4F,\n\t37282 - 19968: jis0208<<14 | 0x4D<<7 | 0x2E,\n\t37284 - 19968: jis0208<<14 | 0x1D<<7 | 0x3E,\n\t37286 - 19968: jis0212<<14 | 0x41<<7 | 0x50,\n\t37288 - 19968: jis0212<<14 | 0x41<<7 | 0x51,\n\t37290 - 19968: jis0208<<14 | 0x4D<<7 | 0x31,\n\t37291 - 19968: jis0208<<14 | 0x4D<<7 | 0x2F,\n\t37292 - 19968: jis0212<<14 | 0x41<<7 | 0x52,\n\t37293 - 19968: jis0212<<14 | 0x41<<7 | 0x53,\n\t37294 - 19968: jis0212<<14 | 0x41<<7 | 0x54,\n\t37295 - 19968: jis0208<<14 | 0x4D<<7 | 0x30,\n\t37296 - 19968: jis0212<<14 | 0x41<<7 | 0x55,\n\t37297 - 19968: jis0212<<14 | 0x41<<7 | 0x56,\n\t37298 - 19968: jis0212<<14 | 0x41<<7 | 0x57,\n\t37299 - 19968: jis0212<<14 | 0x41<<7 | 0x58,\n\t37300 - 19968: jis0208<<14 | 0x4D<<7 | 0x33,\n\t37301 - 19968: jis0208<<14 | 0x4D<<7 | 0x32,\n\t37302 - 19968: jis0212<<14 | 0x41<<7 | 0x59,\n\t37304 - 19968: jis0208<<14 | 0x1D<<7 | 0x59,\n\t37306 - 19968: jis0208<<14 | 0x4D<<7 | 0x34,\n\t37307 - 19968: jis0212<<14 | 0x41<<7 | 0x5A,\n\t37308 - 19968: jis0212<<14 | 0x41<<7 | 0x5B,\n\t37309 - 19968: jis0212<<14 | 0x41<<7 | 0x5C,\n\t37311 - 19968: jis0212<<14 | 0x41<<7 | 0x5D,\n\t37312 - 19968: jis0208<<14 | 0x4D<<7 | 0x35,\n\t37313 - 19968: jis0208<<14 | 0x4D<<7 | 0x36,\n\t37314 - 19968: jis0212<<14 | 0x42<<7 | 0x00,\n\t37315 - 19968: jis0212<<14 | 0x42<<7 | 0x01,\n\t37317 - 19968: jis0212<<14 | 0x42<<7 | 0x02,\n\t37318 - 19968: jis0208<<14 | 0x27<<7 | 0x2F,\n\t37319 - 19968: jis0208<<14 | 0x19<<7 | 0x32,\n\t37320 - 19968: jis0208<<14 | 0x1B<<7 | 0x40,\n\t37321 - 19968: jis0208<<14 | 0x4D<<7 | 0x37,\n\t37323 - 19968: jis0208<<14 | 0x4D<<7 | 0x38,\n\t37324 - 19968: jis0208<<14 | 0x2D<<7 | 0x03,\n\t37325 - 19968: jis0208<<14 | 0x1C<<7 | 0x24,\n\t37326 - 19968: jis0208<<14 | 0x2B<<7 | 0x4D,\n\t37327 - 19968: jis0208<<14 | 0x2D<<7 | 0x2B,\n\t37328 - 19968: jis0208<<14 | 0x4D<<7 | 0x39,\n\t37329 - 19968: jis0208<<14 | 0x15<<7 | 0x41,\n\t37331 - 19968: jis0212<<14 | 0x42<<7 | 0x03,\n\t37332 - 19968: jis0212<<14 | 0x42<<7 | 0x04,\n\t37334 - 19968: jis0208<<14 | 0x4D<<7 | 0x3A,\n\t37335 - 19968: jis0208<<14 | 0x5B<<7 | 0x00,\n\t37336 - 19968: jis0208<<14 | 0x24<<7 | 0x02,\n\t37337 - 19968: jis0212<<14 | 0x42<<7 | 0x06,\n\t37338 - 19968: jis0208<<14 | 0x5A<<7 | 0x5D,\n\t37339 - 19968: jis0208<<14 | 0x4D<<7 | 0x3D,\n\t37340 - 19968: jis0208<<14 | 0x12<<7 | 0x57,\n\t37341 - 19968: jis0208<<14 | 0x1E<<7 | 0x2A,\n\t37342 - 19968: jis0208<<14 | 0x5B<<7 | 0x01,\n\t37343 - 19968: jis0208<<14 | 0x4D<<7 | 0x3B,\n\t37345 - 19968: jis0208<<14 | 0x4D<<7 | 0x3C,\n\t37347 - 19968: jis0208<<14 | 0x23<<7 | 0x3F,\n\t37348 - 19968: jis0208<<14 | 0x5B<<7 | 0x04,\n\t37349 - 19968: jis0208<<14 | 0x5B<<7 | 0x05,\n\t37350 - 19968: jis0208<<14 | 0x2A<<7 | 0x34,\n\t37351 - 19968: jis0208<<14 | 0x15<<7 | 0x5B,\n\t37353 - 19968: jis0212<<14 | 0x42<<7 | 0x0B,\n\t37354 - 19968: jis0212<<14 | 0x42<<7 | 0x0C,\n\t37356 - 19968: jis0212<<14 | 0x42<<7 | 0x0D,\n\t37357 - 19968: jis0208<<14 | 0x5B<<7 | 0x02,\n\t37358 - 19968: jis0208<<14 | 0x5B<<7 | 0x03,\n\t37359 - 19968: jis0212<<14 | 0x42<<7 | 0x10,\n\t37360 - 19968: jis0212<<14 | 0x42<<7 | 0x11,\n\t37361 - 19968: jis0212<<14 | 0x42<<7 | 0x12,\n\t37365 - 19968: jis0208<<14 | 0x4D<<7 | 0x3F,\n\t37366 - 19968: jis0208<<14 | 0x4D<<7 | 0x40,\n\t37367 - 19968: jis0212<<14 | 0x42<<7 | 0x13,\n\t37369 - 19968: jis0212<<14 | 0x42<<7 | 0x14,\n\t37371 - 19968: jis0212<<14 | 0x42<<7 | 0x15,\n\t37372 - 19968: jis0208<<14 | 0x4D<<7 | 0x3E,\n\t37373 - 19968: jis0212<<14 | 0x42<<7 | 0x16,\n\t37375 - 19968: jis0208<<14 | 0x4D<<7 | 0x42,\n\t37376 - 19968: jis0212<<14 | 0x42<<7 | 0x17,\n\t37377 - 19968: jis0212<<14 | 0x42<<7 | 0x18,\n\t37380 - 19968: jis0212<<14 | 0x42<<7 | 0x19,\n\t37381 - 19968: jis0212<<14 | 0x42<<7 | 0x1A,\n\t37382 - 19968: jis0208<<14 | 0x5B<<7 | 0x06,\n\t37383 - 19968: jis0212<<14 | 0x42<<7 | 0x1C,\n\t37385 - 19968: jis0212<<14 | 0x42<<7 | 0x1D,\n\t37386 - 19968: jis0208<<14 | 0x5B<<7 | 0x08,\n\t37388 - 19968: jis0212<<14 | 0x42<<7 | 0x1F,\n\t37389 - 19968: jis0208<<14 | 0x25<<7 | 0x3E,\n\t37390 - 19968: jis0208<<14 | 0x12<<7 | 0x22,\n\t37392 - 19968: jis0208<<14 | 0x5B<<7 | 0x07,\n\t37393 - 19968: jis0208<<14 | 0x4D<<7 | 0x46,\n\t37394 - 19968: jis0212<<14 | 0x42<<7 | 0x21,\n\t37395 - 19968: jis0212<<14 | 0x42<<7 | 0x22,\n\t37396 - 19968: jis0208<<14 | 0x4D<<7 | 0x43,\n\t37397 - 19968: jis0208<<14 | 0x4D<<7 | 0x45,\n\t37398 - 19968: jis0212<<14 | 0x42<<7 | 0x23,\n\t37400 - 19968: jis0212<<14 | 0x42<<7 | 0x24,\n\t37404 - 19968: jis0212<<14 | 0x42<<7 | 0x25,\n\t37405 - 19968: jis0212<<14 | 0x42<<7 | 0x26,\n\t37406 - 19968: jis0208<<14 | 0x4D<<7 | 0x41,\n\t37411 - 19968: jis0212<<14 | 0x42<<7 | 0x27,\n\t37412 - 19968: jis0212<<14 | 0x42<<7 | 0x28,\n\t37413 - 19968: jis0212<<14 | 0x42<<7 | 0x29,\n\t37414 - 19968: jis0212<<14 | 0x42<<7 | 0x2A,\n\t37416 - 19968: jis0212<<14 | 0x42<<7 | 0x2B,\n\t37417 - 19968: jis0208<<14 | 0x4E<<7 | 0x2E,\n\t37420 - 19968: jis0208<<14 | 0x4D<<7 | 0x44,\n\t37422 - 19968: jis0212<<14 | 0x42<<7 | 0x2C,\n\t37423 - 19968: jis0212<<14 | 0x42<<7 | 0x2D,\n\t37424 - 19968: jis0212<<14 | 0x42<<7 | 0x2E,\n\t37427 - 19968: jis0212<<14 | 0x42<<7 | 0x2F,\n\t37428 - 19968: jis0208<<14 | 0x2D<<7 | 0x4A,\n\t37429 - 19968: jis0212<<14 | 0x42<<7 | 0x30,\n\t37430 - 19968: jis0212<<14 | 0x42<<7 | 0x31,\n\t37431 - 19968: jis0208<<14 | 0x17<<7 | 0x39,\n\t37432 - 19968: jis0212<<14 | 0x42<<7 | 0x32,\n\t37433 - 19968: jis0208<<14 | 0x5B<<7 | 0x0F,\n\t37434 - 19968: jis0208<<14 | 0x5B<<7 | 0x09,\n\t37436 - 19968: jis0208<<14 | 0x5B<<7 | 0x0B,\n\t37438 - 19968: jis0212<<14 | 0x42<<7 | 0x36,\n\t37439 - 19968: jis0208<<14 | 0x4D<<7 | 0x4E,\n\t37440 - 19968: jis0208<<14 | 0x5B<<7 | 0x0A,\n\t37442 - 19968: jis0212<<14 | 0x42<<7 | 0x38,\n\t37443 - 19968: jis0212<<14 | 0x42<<7 | 0x39,\n\t37444 - 19968: jis0208<<14 | 0x24<<7 | 0x13,\n\t37445 - 19968: jis0208<<14 | 0x4D<<7 | 0x49,\n\t37446 - 19968: jis0212<<14 | 0x42<<7 | 0x3A,\n\t37447 - 19968: jis0212<<14 | 0x42<<7 | 0x3B,\n\t37448 - 19968: jis0208<<14 | 0x4D<<7 | 0x4C,\n\t37449 - 19968: jis0208<<14 | 0x4D<<7 | 0x4A,\n\t37450 - 19968: jis0212<<14 | 0x42<<7 | 0x3C,\n\t37451 - 19968: jis0208<<14 | 0x4D<<7 | 0x4F,\n\t37453 - 19968: jis0212<<14 | 0x42<<7 | 0x3D,\n\t37454 - 19968: jis0208<<14 | 0x5B<<7 | 0x0C,\n\t37455 - 19968: jis0212<<14 | 0x42<<7 | 0x3F,\n\t37456 - 19968: jis0208<<14 | 0x4D<<7 | 0x50,\n\t37457 - 19968: jis0208<<14 | 0x5B<<7 | 0x0E,\n\t37463 - 19968: jis0208<<14 | 0x4D<<7 | 0x48,\n\t37464 - 19968: jis0212<<14 | 0x42<<7 | 0x41,\n\t37465 - 19968: jis0208<<14 | 0x5B<<7 | 0x0D,\n\t37466 - 19968: jis0208<<14 | 0x4D<<7 | 0x55,\n\t37467 - 19968: jis0208<<14 | 0x10<<7 | 0x53,\n\t37468 - 19968: jis0212<<14 | 0x42<<7 | 0x43,\n\t37469 - 19968: jis0212<<14 | 0x42<<7 | 0x44,\n\t37470 - 19968: jis0208<<14 | 0x4D<<7 | 0x47,\n\t37472 - 19968: jis0212<<14 | 0x42<<7 | 0x45,\n\t37473 - 19968: jis0212<<14 | 0x42<<7 | 0x46,\n\t37474 - 19968: jis0208<<14 | 0x27<<7 | 0x0C,\n\t37476 - 19968: jis0208<<14 | 0x4D<<7 | 0x4B,\n\t37477 - 19968: jis0212<<14 | 0x42<<7 | 0x47,\n\t37478 - 19968: jis0208<<14 | 0x1D<<7 | 0x3F,\n\t37479 - 19968: jis0208<<14 | 0x5B<<7 | 0x10,\n\t37480 - 19968: jis0212<<14 | 0x42<<7 | 0x49,\n\t37481 - 19968: jis0212<<14 | 0x42<<7 | 0x4A,\n\t37486 - 19968: jis0212<<14 | 0x42<<7 | 0x4B,\n\t37487 - 19968: jis0212<<14 | 0x42<<7 | 0x4C,\n\t37488 - 19968: jis0212<<14 | 0x42<<7 | 0x4D,\n\t37489 - 19968: jis0208<<14 | 0x18<<7 | 0x3A,\n\t37493 - 19968: jis0212<<14 | 0x42<<7 | 0x4E,\n\t37494 - 19968: jis0212<<14 | 0x42<<7 | 0x4F,\n\t37495 - 19968: jis0208<<14 | 0x5B<<7 | 0x12,\n\t37496 - 19968: jis0208<<14 | 0x5B<<7 | 0x13,\n\t37497 - 19968: jis0212<<14 | 0x42<<7 | 0x52,\n\t37499 - 19968: jis0212<<14 | 0x42<<7 | 0x53,\n\t37500 - 19968: jis0212<<14 | 0x42<<7 | 0x54,\n\t37501 - 19968: jis0212<<14 | 0x42<<7 | 0x55,\n\t37502 - 19968: jis0208<<14 | 0x2A<<7 | 0x27,\n\t37503 - 19968: jis0212<<14 | 0x42<<7 | 0x56,\n\t37504 - 19968: jis0208<<14 | 0x15<<7 | 0x43,\n\t37507 - 19968: jis0208<<14 | 0x1C<<7 | 0x25,\n\t37509 - 19968: jis0208<<14 | 0x25<<7 | 0x1B,\n\t37512 - 19968: jis0208<<14 | 0x58<<7 | 0x03,\n\t37513 - 19968: jis0212<<14 | 0x42<<7 | 0x58,\n\t37514 - 19968: jis0212<<14 | 0x42<<7 | 0x59,\n\t37517 - 19968: jis0212<<14 | 0x42<<7 | 0x5A,\n\t37518 - 19968: jis0212<<14 | 0x42<<7 | 0x5B,\n\t37521 - 19968: jis0208<<14 | 0x20<<7 | 0x0C,\n\t37522 - 19968: jis0212<<14 | 0x42<<7 | 0x5C,\n\t37523 - 19968: jis0208<<14 | 0x4D<<7 | 0x53,\n\t37525 - 19968: jis0208<<14 | 0x4D<<7 | 0x4D,\n\t37526 - 19968: jis0208<<14 | 0x4D<<7 | 0x52,\n\t37527 - 19968: jis0212<<14 | 0x42<<7 | 0x5D,\n\t37528 - 19968: jis0208<<14 | 0x2B<<7 | 0x22,\n\t37529 - 19968: jis0212<<14 | 0x43<<7 | 0x00,\n\t37530 - 19968: jis0208<<14 | 0x23<<7 | 0x17,\n\t37531 - 19968: jis0208<<14 | 0x4D<<7 | 0x54,\n\t37532 - 19968: jis0208<<14 | 0x4D<<7 | 0x51,\n\t37535 - 19968: jis0212<<14 | 0x43<<7 | 0x01,\n\t37536 - 19968: jis0212<<14 | 0x43<<7 | 0x02,\n\t37540 - 19968: jis0212<<14 | 0x43<<7 | 0x03,\n\t37541 - 19968: jis0212<<14 | 0x43<<7 | 0x04,\n\t37543 - 19968: jis0208<<14 | 0x5B<<7 | 0x11,\n\t37544 - 19968: jis0212<<14 | 0x43<<7 | 0x06,\n\t37547 - 19968: jis0212<<14 | 0x43<<7 | 0x07,\n\t37549 - 19968: jis0208<<14 | 0x20<<7 | 0x0B,\n\t37551 - 19968: jis0212<<14 | 0x43<<7 | 0x08,\n\t37554 - 19968: jis0212<<14 | 0x43<<7 | 0x09,\n\t37558 - 19968: jis0212<<14 | 0x43<<7 | 0x0A,\n\t37559 - 19968: jis0208<<14 | 0x4D<<7 | 0x58,\n\t37560 - 19968: jis0212<<14 | 0x43<<7 | 0x0B,\n\t37561 - 19968: jis0208<<14 | 0x4D<<7 | 0x57,\n\t37562 - 19968: jis0212<<14 | 0x43<<7 | 0x0C,\n\t37563 - 19968: jis0212<<14 | 0x43<<7 | 0x0D,\n\t37564 - 19968: jis0212<<14 | 0x43<<7 | 0x0E,\n\t37565 - 19968: jis0212<<14 | 0x43<<7 | 0x0F,\n\t37567 - 19968: jis0212<<14 | 0x43<<7 | 0x10,\n\t37568 - 19968: jis0212<<14 | 0x43<<7 | 0x11,\n\t37569 - 19968: jis0212<<14 | 0x43<<7 | 0x12,\n\t37570 - 19968: jis0212<<14 | 0x43<<7 | 0x13,\n\t37571 - 19968: jis0212<<14 | 0x43<<7 | 0x14,\n\t37573 - 19968: jis0212<<14 | 0x43<<7 | 0x15,\n\t37574 - 19968: jis0212<<14 | 0x43<<7 | 0x16,\n\t37575 - 19968: jis0212<<14 | 0x43<<7 | 0x17,\n\t37576 - 19968: jis0212<<14 | 0x43<<7 | 0x18,\n\t37579 - 19968: jis0212<<14 | 0x43<<7 | 0x19,\n\t37580 - 19968: jis0212<<14 | 0x43<<7 | 0x1A,\n\t37581 - 19968: jis0212<<14 | 0x43<<7 | 0x1B,\n\t37582 - 19968: jis0212<<14 | 0x43<<7 | 0x1C,\n\t37583 - 19968: jis0208<<14 | 0x4D<<7 | 0x56,\n\t37584 - 19968: jis0208<<14 | 0x5B<<7 | 0x17,\n\t37586 - 19968: jis0208<<14 | 0x2A<<7 | 0x0E,\n\t37587 - 19968: jis0208<<14 | 0x5B<<7 | 0x1B,\n\t37589 - 19968: jis0208<<14 | 0x5B<<7 | 0x19,\n\t37591 - 19968: jis0208<<14 | 0x5B<<7 | 0x15,\n\t37592 - 19968: jis0212<<14 | 0x43<<7 | 0x21,\n\t37593 - 19968: jis0208<<14 | 0x5B<<7 | 0x16,\n\t37596 - 19968: jis0212<<14 | 0x43<<7 | 0x23,\n\t37597 - 19968: jis0212<<14 | 0x43<<7 | 0x24,\n\t37599 - 19968: jis0212<<14 | 0x43<<7 | 0x25,\n\t37600 - 19968: jis0208<<14 | 0x5B<<7 | 0x1A,\n\t37601 - 19968: jis0212<<14 | 0x43<<7 | 0x27,\n\t37603 - 19968: jis0212<<14 | 0x43<<7 | 0x28,\n\t37604 - 19968: jis0208<<14 | 0x1C<<7 | 0x5A,\n\t37605 - 19968: jis0212<<14 | 0x43<<7 | 0x29,\n\t37607 - 19968: jis0208<<14 | 0x5B<<7 | 0x14,\n\t37608 - 19968: jis0212<<14 | 0x43<<7 | 0x2B,\n\t37609 - 19968: jis0208<<14 | 0x4D<<7 | 0x59,\n\t37610 - 19968: jis0208<<14 | 0x29<<7 | 0x3E,\n\t37612 - 19968: jis0212<<14 | 0x43<<7 | 0x2C,\n\t37613 - 19968: jis0208<<14 | 0x10<<7 | 0x33,\n\t37614 - 19968: jis0212<<14 | 0x43<<7 | 0x2D,\n\t37616 - 19968: jis0212<<14 | 0x43<<7 | 0x2E,\n\t37618 - 19968: jis0208<<14 | 0x28<<7 | 0x25,\n\t37619 - 19968: jis0208<<14 | 0x22<<7 | 0x51,\n\t37624 - 19968: jis0208<<14 | 0x14<<7 | 0x57,\n\t37625 - 19968: jis0208<<14 | 0x58<<7 | 0x09,\n\t37626 - 19968: jis0208<<14 | 0x4D<<7 | 0x5B,\n\t37627 - 19968: jis0208<<14 | 0x5B<<7 | 0x1E,\n\t37628 - 19968: jis0208<<14 | 0x18<<7 | 0x3C,\n\t37631 - 19968: jis0208<<14 | 0x5B<<7 | 0x21,\n\t37632 - 19968: jis0212<<14 | 0x43<<7 | 0x32,\n\t37634 - 19968: jis0208<<14 | 0x5B<<7 | 0x23,\n\t37638 - 19968: jis0208<<14 | 0x1A<<7 | 0x0B,\n\t37640 - 19968: jis0212<<14 | 0x43<<7 | 0x34,\n\t37645 - 19968: jis0212<<14 | 0x43<<7 | 0x35,\n\t37647 - 19968: jis0208<<14 | 0x4D<<7 | 0x5A,\n\t37648 - 19968: jis0208<<14 | 0x1E<<7 | 0x4C,\n\t37649 - 19968: jis0212<<14 | 0x43<<7 | 0x36,\n\t37652 - 19968: jis0212<<14 | 0x43<<7 | 0x37,\n\t37653 - 19968: jis0212<<14 | 0x43<<7 | 0x38,\n\t37656 - 19968: jis0208<<14 | 0x1E<<7 | 0x4D,\n\t37657 - 19968: jis0208<<14 | 0x4E<<7 | 0x00,\n\t37658 - 19968: jis0208<<14 | 0x4E<<7 | 0x02,\n\t37660 - 19968: jis0212<<14 | 0x43<<7 | 0x39,\n\t37661 - 19968: jis0208<<14 | 0x5B<<7 | 0x22,\n\t37662 - 19968: jis0208<<14 | 0x5B<<7 | 0x20,\n\t37663 - 19968: jis0212<<14 | 0x43<<7 | 0x3C,\n\t37664 - 19968: jis0208<<14 | 0x1D<<7 | 0x5A,\n\t37665 - 19968: jis0208<<14 | 0x5B<<7 | 0x1D,\n\t37666 - 19968: jis0208<<14 | 0x4E<<7 | 0x01,\n\t37667 - 19968: jis0208<<14 | 0x4E<<7 | 0x03,\n\t37668 - 19968: jis0212<<14 | 0x43<<7 | 0x3E,\n\t37669 - 19968: jis0208<<14 | 0x5B<<7 | 0x1C,\n\t37670 - 19968: jis0208<<14 | 0x15<<7 | 0x32,\n\t37671 - 19968: jis0212<<14 | 0x43<<7 | 0x40,\n\t37672 - 19968: jis0208<<14 | 0x28<<7 | 0x24,\n\t37673 - 19968: jis0212<<14 | 0x43<<7 | 0x41,\n\t37674 - 19968: jis0212<<14 | 0x43<<7 | 0x42,\n\t37675 - 19968: jis0208<<14 | 0x1B<<7 | 0x41,\n\t37676 - 19968: jis0208<<14 | 0x2E<<7 | 0x02,\n\t37678 - 19968: jis0208<<14 | 0x4D<<7 | 0x5D,\n\t37679 - 19968: jis0208<<14 | 0x19<<7 | 0x57,\n\t37682 - 19968: jis0208<<14 | 0x2E<<7 | 0x1E,\n\t37683 - 19968: jis0212<<14 | 0x43<<7 | 0x43,\n\t37684 - 19968: jis0212<<14 | 0x43<<7 | 0x44,\n\t37685 - 19968: jis0208<<14 | 0x4E<<7 | 0x05,\n\t37686 - 19968: jis0212<<14 | 0x43<<7 | 0x45,\n\t37687 - 19968: jis0212<<14 | 0x43<<7 | 0x46,\n\t37690 - 19968: jis0208<<14 | 0x4E<<7 | 0x04,\n\t37691 - 19968: jis0208<<14 | 0x4E<<7 | 0x06,\n\t37700 - 19968: jis0208<<14 | 0x4D<<7 | 0x5C,\n\t37703 - 19968: jis0212<<14 | 0x43<<7 | 0x47,\n\t37704 - 19968: jis0208<<14 | 0x58<<7 | 0x02,\n\t37705 - 19968: jis0212<<14 | 0x43<<7 | 0x49,\n\t37707 - 19968: jis0208<<14 | 0x25<<7 | 0x48,\n\t37709 - 19968: jis0208<<14 | 0x24<<7 | 0x34,\n\t37712 - 19968: jis0212<<14 | 0x43<<7 | 0x4A,\n\t37713 - 19968: jis0212<<14 | 0x43<<7 | 0x4B,\n\t37714 - 19968: jis0212<<14 | 0x43<<7 | 0x4C,\n\t37716 - 19968: jis0208<<14 | 0x23<<7 | 0x36,\n\t37717 - 19968: jis0212<<14 | 0x43<<7 | 0x4D,\n\t37718 - 19968: jis0208<<14 | 0x4E<<7 | 0x0B,\n\t37719 - 19968: jis0208<<14 | 0x5B<<7 | 0x25,\n\t37720 - 19968: jis0212<<14 | 0x43<<7 | 0x4F,\n\t37722 - 19968: jis0212<<14 | 0x43<<7 | 0x50,\n\t37723 - 19968: jis0208<<14 | 0x22<<7 | 0x22,\n\t37724 - 19968: jis0208<<14 | 0x4E<<7 | 0x07,\n\t37726 - 19968: jis0212<<14 | 0x43<<7 | 0x51,\n\t37728 - 19968: jis0208<<14 | 0x4E<<7 | 0x08,\n\t37732 - 19968: jis0212<<14 | 0x43<<7 | 0x52,\n\t37733 - 19968: jis0212<<14 | 0x43<<7 | 0x53,\n\t37735 - 19968: jis0212<<14 | 0x43<<7 | 0x54,\n\t37737 - 19968: jis0212<<14 | 0x43<<7 | 0x55,\n\t37738 - 19968: jis0212<<14 | 0x43<<7 | 0x56,\n\t37740 - 19968: jis0208<<14 | 0x16<<7 | 0x0C,\n\t37741 - 19968: jis0212<<14 | 0x43<<7 | 0x57,\n\t37742 - 19968: jis0208<<14 | 0x4E<<7 | 0x0A,\n\t37743 - 19968: jis0212<<14 | 0x43<<7 | 0x58,\n\t37744 - 19968: jis0208<<14 | 0x5B<<7 | 0x24,\n\t37745 - 19968: jis0212<<14 | 0x43<<7 | 0x5A,\n\t37747 - 19968: jis0212<<14 | 0x43<<7 | 0x5B,\n\t37748 - 19968: jis0212<<14 | 0x43<<7 | 0x5C,\n\t37749 - 19968: jis0208<<14 | 0x17<<7 | 0x0F,\n\t37750 - 19968: jis0212<<14 | 0x43<<7 | 0x5D,\n\t37754 - 19968: jis0212<<14 | 0x44<<7 | 0x00,\n\t37756 - 19968: jis0208<<14 | 0x4E<<7 | 0x09,\n\t37757 - 19968: jis0212<<14 | 0x44<<7 | 0x01,\n\t37758 - 19968: jis0208<<14 | 0x1D<<7 | 0x40,\n\t37759 - 19968: jis0212<<14 | 0x44<<7 | 0x02,\n\t37760 - 19968: jis0212<<14 | 0x44<<7 | 0x03,\n\t37761 - 19968: jis0212<<14 | 0x44<<7 | 0x04,\n\t37762 - 19968: jis0212<<14 | 0x44<<7 | 0x05,\n\t37768 - 19968: jis0212<<14 | 0x44<<7 | 0x06,\n\t37770 - 19968: jis0212<<14 | 0x44<<7 | 0x07,\n\t37771 - 19968: jis0212<<14 | 0x44<<7 | 0x08,\n\t37772 - 19968: jis0208<<14 | 0x12<<7 | 0x58,\n\t37773 - 19968: jis0212<<14 | 0x44<<7 | 0x09,\n\t37775 - 19968: jis0212<<14 | 0x44<<7 | 0x0A,\n\t37778 - 19968: jis0212<<14 | 0x44<<7 | 0x0B,\n\t37780 - 19968: jis0208<<14 | 0x4E<<7 | 0x0F,\n\t37781 - 19968: jis0212<<14 | 0x44<<7 | 0x0C,\n\t37782 - 19968: jis0208<<14 | 0x19<<7 | 0x1E,\n\t37783 - 19968: jis0208<<14 | 0x20<<7 | 0x58,\n\t37784 - 19968: jis0212<<14 | 0x44<<7 | 0x0D,\n\t37786 - 19968: jis0208<<14 | 0x23<<7 | 0x29,\n\t37787 - 19968: jis0212<<14 | 0x44<<7 | 0x0E,\n\t37790 - 19968: jis0212<<14 | 0x44<<7 | 0x0F,\n\t37793 - 19968: jis0212<<14 | 0x44<<7 | 0x10,\n\t37795 - 19968: jis0212<<14 | 0x44<<7 | 0x11,\n\t37796 - 19968: jis0208<<14 | 0x5B<<7 | 0x26,\n\t37798 - 19968: jis0212<<14 | 0x44<<7 | 0x13,\n\t37799 - 19968: jis0208<<14 | 0x12<<7 | 0x1A,\n\t37800 - 19968: jis0212<<14 | 0x44<<7 | 0x14,\n\t37801 - 19968: jis0212<<14 | 0x44<<7 | 0x1A,\n\t37803 - 19968: jis0212<<14 | 0x44<<7 | 0x15,\n\t37804 - 19968: jis0208<<14 | 0x4E<<7 | 0x0D,\n\t37805 - 19968: jis0208<<14 | 0x4E<<7 | 0x0E,\n\t37806 - 19968: jis0208<<14 | 0x23<<7 | 0x22,\n\t37808 - 19968: jis0208<<14 | 0x4E<<7 | 0x0C,\n\t37812 - 19968: jis0212<<14 | 0x44<<7 | 0x16,\n\t37813 - 19968: jis0212<<14 | 0x44<<7 | 0x17,\n\t37814 - 19968: jis0212<<14 | 0x44<<7 | 0x18,\n\t37817 - 19968: jis0208<<14 | 0x4E<<7 | 0x10,\n\t37818 - 19968: jis0212<<14 | 0x44<<7 | 0x19,\n\t37825 - 19968: jis0212<<14 | 0x44<<7 | 0x1B,\n\t37827 - 19968: jis0208<<14 | 0x4E<<7 | 0x16,\n\t37828 - 19968: jis0212<<14 | 0x44<<7 | 0x1C,\n\t37829 - 19968: jis0212<<14 | 0x44<<7 | 0x1D,\n\t37830 - 19968: jis0208<<14 | 0x5B<<7 | 0x27,\n\t37831 - 19968: jis0212<<14 | 0x44<<7 | 0x1F,\n\t37832 - 19968: jis0208<<14 | 0x4E<<7 | 0x19,\n\t37833 - 19968: jis0212<<14 | 0x44<<7 | 0x20,\n\t37834 - 19968: jis0212<<14 | 0x44<<7 | 0x21,\n\t37835 - 19968: jis0212<<14 | 0x44<<7 | 0x22,\n\t37836 - 19968: jis0212<<14 | 0x44<<7 | 0x23,\n\t37837 - 19968: jis0212<<14 | 0x44<<7 | 0x24,\n\t37840 - 19968: jis0208<<14 | 0x4E<<7 | 0x18,\n\t37841 - 19968: jis0208<<14 | 0x24<<7 | 0x0C,\n\t37843 - 19968: jis0212<<14 | 0x44<<7 | 0x25,\n\t37846 - 19968: jis0208<<14 | 0x4E<<7 | 0x11,\n\t37847 - 19968: jis0208<<14 | 0x4E<<7 | 0x12,\n\t37848 - 19968: jis0208<<14 | 0x4E<<7 | 0x15,\n\t37849 - 19968: jis0212<<14 | 0x44<<7 | 0x26,\n\t37852 - 19968: jis0212<<14 | 0x44<<7 | 0x27,\n\t37853 - 19968: jis0208<<14 | 0x4E<<7 | 0x17,\n\t37854 - 19968: jis0208<<14 | 0x5B<<7 | 0x28,\n\t37855 - 19968: jis0212<<14 | 0x44<<7 | 0x29,\n\t37857 - 19968: jis0208<<14 | 0x15<<7 | 0x1F,\n\t37858 - 19968: jis0212<<14 | 0x44<<7 | 0x2A,\n\t37860 - 19968: jis0208<<14 | 0x4E<<7 | 0x1A,\n\t37861 - 19968: jis0208<<14 | 0x4E<<7 | 0x14,\n\t37862 - 19968: jis0212<<14 | 0x44<<7 | 0x2B,\n\t37863 - 19968: jis0212<<14 | 0x44<<7 | 0x2C,\n\t37864 - 19968: jis0208<<14 | 0x4E<<7 | 0x13,\n\t37879 - 19968: jis0212<<14 | 0x44<<7 | 0x2E,\n\t37880 - 19968: jis0208<<14 | 0x5B<<7 | 0x29,\n\t37881 - 19968: jis0212<<14 | 0x44<<7 | 0x2D,\n\t37882 - 19968: jis0212<<14 | 0x44<<7 | 0x30,\n\t37883 - 19968: jis0212<<14 | 0x44<<7 | 0x31,\n\t37885 - 19968: jis0212<<14 | 0x44<<7 | 0x32,\n\t37889 - 19968: jis0212<<14 | 0x44<<7 | 0x33,\n\t37890 - 19968: jis0212<<14 | 0x44<<7 | 0x34,\n\t37891 - 19968: jis0208<<14 | 0x4E<<7 | 0x1E,\n\t37892 - 19968: jis0212<<14 | 0x44<<7 | 0x35,\n\t37895 - 19968: jis0208<<14 | 0x4E<<7 | 0x1F,\n\t37896 - 19968: jis0212<<14 | 0x44<<7 | 0x36,\n\t37897 - 19968: jis0212<<14 | 0x44<<7 | 0x37,\n\t37901 - 19968: jis0212<<14 | 0x44<<7 | 0x38,\n\t37902 - 19968: jis0212<<14 | 0x44<<7 | 0x39,\n\t37903 - 19968: jis0212<<14 | 0x44<<7 | 0x3A,\n\t37904 - 19968: jis0208<<14 | 0x4E<<7 | 0x20,\n\t37907 - 19968: jis0208<<14 | 0x4E<<7 | 0x1D,\n\t37908 - 19968: jis0208<<14 | 0x4E<<7 | 0x1C,\n\t37909 - 19968: jis0212<<14 | 0x44<<7 | 0x3B,\n\t37910 - 19968: jis0212<<14 | 0x44<<7 | 0x3C,\n\t37911 - 19968: jis0212<<14 | 0x44<<7 | 0x3D,\n\t37912 - 19968: jis0208<<14 | 0x1D<<7 | 0x41,\n\t37913 - 19968: jis0208<<14 | 0x25<<7 | 0x09,\n\t37914 - 19968: jis0208<<14 | 0x4E<<7 | 0x1B,\n\t37919 - 19968: jis0212<<14 | 0x44<<7 | 0x3E,\n\t37921 - 19968: jis0208<<14 | 0x4E<<7 | 0x24,\n\t37931 - 19968: jis0208<<14 | 0x4E<<7 | 0x22,\n\t37934 - 19968: jis0212<<14 | 0x44<<7 | 0x3F,\n\t37935 - 19968: jis0212<<14 | 0x44<<7 | 0x40,\n\t37937 - 19968: jis0208<<14 | 0x5B<<7 | 0x2A,\n\t37938 - 19968: jis0212<<14 | 0x44<<7 | 0x42,\n\t37939 - 19968: jis0212<<14 | 0x44<<7 | 0x43,\n\t37940 - 19968: jis0212<<14 | 0x44<<7 | 0x44,\n\t37941 - 19968: jis0208<<14 | 0x4E<<7 | 0x23,\n\t37942 - 19968: jis0208<<14 | 0x4E<<7 | 0x21,\n\t37944 - 19968: jis0208<<14 | 0x21<<7 | 0x57,\n\t37946 - 19968: jis0208<<14 | 0x4E<<7 | 0x25,\n\t37947 - 19968: jis0212<<14 | 0x44<<7 | 0x45,\n\t37949 - 19968: jis0212<<14 | 0x44<<7 | 0x47,\n\t37951 - 19968: jis0212<<14 | 0x44<<7 | 0x46,\n\t37953 - 19968: jis0208<<14 | 0x4E<<7 | 0x26,\n\t37955 - 19968: jis0212<<14 | 0x44<<7 | 0x48,\n\t37956 - 19968: jis0208<<14 | 0x4E<<7 | 0x28,\n\t37957 - 19968: jis0208<<14 | 0x5B<<7 | 0x2B,\n\t37960 - 19968: jis0208<<14 | 0x5B<<7 | 0x2C,\n\t37962 - 19968: jis0212<<14 | 0x44<<7 | 0x4B,\n\t37964 - 19968: jis0212<<14 | 0x44<<7 | 0x4C,\n\t37969 - 19968: jis0208<<14 | 0x13<<7 | 0x34,\n\t37970 - 19968: jis0208<<14 | 0x4E<<7 | 0x27,\n\t37971 - 19968: jis0208<<14 | 0x2B<<7 | 0x59,\n\t37973 - 19968: jis0212<<14 | 0x44<<7 | 0x4D,\n\t37977 - 19968: jis0212<<14 | 0x44<<7 | 0x4E,\n\t37978 - 19968: jis0208<<14 | 0x4E<<7 | 0x33,\n\t37979 - 19968: jis0208<<14 | 0x4E<<7 | 0x29,\n\t37980 - 19968: jis0212<<14 | 0x44<<7 | 0x4F,\n\t37982 - 19968: jis0208<<14 | 0x4E<<7 | 0x2C,\n\t37983 - 19968: jis0212<<14 | 0x44<<7 | 0x50,\n\t37984 - 19968: jis0208<<14 | 0x4E<<7 | 0x2A,\n\t37985 - 19968: jis0212<<14 | 0x44<<7 | 0x51,\n\t37986 - 19968: jis0208<<14 | 0x4E<<7 | 0x2B,\n\t37987 - 19968: jis0212<<14 | 0x44<<7 | 0x52,\n\t37992 - 19968: jis0212<<14 | 0x44<<7 | 0x53,\n\t37994 - 19968: jis0208<<14 | 0x4E<<7 | 0x2D,\n\t37995 - 19968: jis0212<<14 | 0x44<<7 | 0x54,\n\t37997 - 19968: jis0212<<14 | 0x44<<7 | 0x55,\n\t37998 - 19968: jis0212<<14 | 0x44<<7 | 0x56,\n\t37999 - 19968: jis0212<<14 | 0x44<<7 | 0x57,\n\t38000 - 19968: jis0208<<14 | 0x4E<<7 | 0x2F,\n\t38001 - 19968: jis0212<<14 | 0x44<<7 | 0x58,\n\t38002 - 19968: jis0212<<14 | 0x44<<7 | 0x59,\n\t38005 - 19968: jis0208<<14 | 0x4E<<7 | 0x30,\n\t38007 - 19968: jis0208<<14 | 0x4E<<7 | 0x31,\n\t38012 - 19968: jis0208<<14 | 0x4E<<7 | 0x34,\n\t38013 - 19968: jis0208<<14 | 0x4E<<7 | 0x32,\n\t38014 - 19968: jis0208<<14 | 0x4E<<7 | 0x35,\n\t38015 - 19968: jis0208<<14 | 0x4E<<7 | 0x37,\n\t38017 - 19968: jis0208<<14 | 0x4E<<7 | 0x36,\n\t38019 - 19968: jis0212<<14 | 0x44<<7 | 0x5B,\n\t38020 - 19968: jis0212<<14 | 0x44<<7 | 0x5A,\n\t38263 - 19968: jis0208<<14 | 0x23<<7 | 0x18,\n\t38264 - 19968: jis0212<<14 | 0x44<<7 | 0x5C,\n\t38265 - 19968: jis0212<<14 | 0x44<<7 | 0x5D,\n\t38270 - 19968: jis0212<<14 | 0x45<<7 | 0x00,\n\t38272 - 19968: jis0208<<14 | 0x2B<<7 | 0x46,\n\t38274 - 19968: jis0208<<14 | 0x4E<<7 | 0x38,\n\t38275 - 19968: jis0208<<14 | 0x20<<7 | 0x0D,\n\t38276 - 19968: jis0212<<14 | 0x45<<7 | 0x01,\n\t38279 - 19968: jis0208<<14 | 0x4E<<7 | 0x39,\n\t38280 - 19968: jis0212<<14 | 0x45<<7 | 0x02,\n\t38281 - 19968: jis0208<<14 | 0x29<<7 | 0x23,\n\t38282 - 19968: jis0208<<14 | 0x4E<<7 | 0x3A,\n\t38283 - 19968: jis0208<<14 | 0x12<<7 | 0x0A,\n\t38284 - 19968: jis0212<<14 | 0x45<<7 | 0x03,\n\t38285 - 19968: jis0212<<14 | 0x45<<7 | 0x04,\n\t38286 - 19968: jis0212<<14 | 0x45<<7 | 0x05,\n\t38287 - 19968: jis0208<<14 | 0x10<<7 | 0x1B,\n\t38289 - 19968: jis0208<<14 | 0x13<<7 | 0x36,\n\t38290 - 19968: jis0208<<14 | 0x5B<<7 | 0x2D,\n\t38291 - 19968: jis0208<<14 | 0x13<<7 | 0x35,\n\t38292 - 19968: jis0208<<14 | 0x4E<<7 | 0x3B,\n\t38294 - 19968: jis0208<<14 | 0x4E<<7 | 0x3C,\n\t38296 - 19968: jis0208<<14 | 0x4E<<7 | 0x3D,\n\t38297 - 19968: jis0208<<14 | 0x4E<<7 | 0x3E,\n\t38301 - 19968: jis0212<<14 | 0x45<<7 | 0x06,\n\t38302 - 19968: jis0212<<14 | 0x45<<7 | 0x07,\n\t38303 - 19968: jis0212<<14 | 0x45<<7 | 0x08,\n\t38304 - 19968: jis0208<<14 | 0x4E<<7 | 0x3F,\n\t38305 - 19968: jis0212<<14 | 0x45<<7 | 0x09,\n\t38306 - 19968: jis0208<<14 | 0x13<<7 | 0x37,\n\t38307 - 19968: jis0208<<14 | 0x12<<7 | 0x34,\n\t38308 - 19968: jis0208<<14 | 0x18<<7 | 0x3D,\n\t38309 - 19968: jis0208<<14 | 0x27<<7 | 0x15,\n\t38310 - 19968: jis0212<<14 | 0x45<<7 | 0x0A,\n\t38311 - 19968: jis0208<<14 | 0x4E<<7 | 0x41,\n\t38312 - 19968: jis0208<<14 | 0x4E<<7 | 0x40,\n\t38313 - 19968: jis0212<<14 | 0x45<<7 | 0x0B,\n\t38315 - 19968: jis0212<<14 | 0x45<<7 | 0x0C,\n\t38316 - 19968: jis0212<<14 | 0x45<<7 | 0x0D,\n\t38317 - 19968: jis0208<<14 | 0x4E<<7 | 0x42,\n\t38322 - 19968: jis0208<<14 | 0x10<<7 | 0x3B,\n\t38324 - 19968: jis0212<<14 | 0x45<<7 | 0x0E,\n\t38326 - 19968: jis0212<<14 | 0x45<<7 | 0x0F,\n\t38329 - 19968: jis0208<<14 | 0x4E<<7 | 0x45,\n\t38330 - 19968: jis0212<<14 | 0x45<<7 | 0x10,\n\t38331 - 19968: jis0208<<14 | 0x4E<<7 | 0x44,\n\t38332 - 19968: jis0208<<14 | 0x4E<<7 | 0x43,\n\t38333 - 19968: jis0212<<14 | 0x45<<7 | 0x11,\n\t38334 - 19968: jis0208<<14 | 0x4E<<7 | 0x46,\n\t38335 - 19968: jis0212<<14 | 0x45<<7 | 0x12,\n\t38339 - 19968: jis0208<<14 | 0x4E<<7 | 0x49,\n\t38342 - 19968: jis0212<<14 | 0x45<<7 | 0x13,\n\t38343 - 19968: jis0208<<14 | 0x0F<<7 | 0x26,\n\t38344 - 19968: jis0212<<14 | 0x45<<7 | 0x14,\n\t38345 - 19968: jis0212<<14 | 0x45<<7 | 0x15,\n\t38346 - 19968: jis0208<<14 | 0x4E<<7 | 0x47,\n\t38347 - 19968: jis0212<<14 | 0x45<<7 | 0x16,\n\t38348 - 19968: jis0208<<14 | 0x4E<<7 | 0x4B,\n\t38349 - 19968: jis0208<<14 | 0x4E<<7 | 0x4A,\n\t38352 - 19968: jis0212<<14 | 0x45<<7 | 0x17,\n\t38353 - 19968: jis0212<<14 | 0x45<<7 | 0x18,\n\t38354 - 19968: jis0212<<14 | 0x45<<7 | 0x19,\n\t38355 - 19968: jis0212<<14 | 0x45<<7 | 0x1A,\n\t38356 - 19968: jis0208<<14 | 0x4E<<7 | 0x4D,\n\t38357 - 19968: jis0208<<14 | 0x4E<<7 | 0x4C,\n\t38358 - 19968: jis0208<<14 | 0x4E<<7 | 0x4E,\n\t38360 - 19968: jis0208<<14 | 0x25<<7 | 0x0D,\n\t38361 - 19968: jis0212<<14 | 0x45<<7 | 0x1B,\n\t38362 - 19968: jis0212<<14 | 0x45<<7 | 0x1C,\n\t38364 - 19968: jis0208<<14 | 0x4E<<7 | 0x4F,\n\t38365 - 19968: jis0212<<14 | 0x45<<7 | 0x1D,\n\t38366 - 19968: jis0212<<14 | 0x45<<7 | 0x1E,\n\t38367 - 19968: jis0212<<14 | 0x45<<7 | 0x1F,\n\t38368 - 19968: jis0212<<14 | 0x45<<7 | 0x20,\n\t38369 - 19968: jis0208<<14 | 0x4E<<7 | 0x50,\n\t38370 - 19968: jis0208<<14 | 0x4E<<7 | 0x52,\n\t38372 - 19968: jis0212<<14 | 0x45<<7 | 0x21,\n\t38373 - 19968: jis0208<<14 | 0x4E<<7 | 0x51,\n\t38374 - 19968: jis0212<<14 | 0x45<<7 | 0x22,\n\t38428 - 19968: jis0208<<14 | 0x28<<7 | 0x4B,\n\t38429 - 19968: jis0212<<14 | 0x45<<7 | 0x23,\n\t38430 - 19968: jis0212<<14 | 0x45<<7 | 0x24,\n\t38433 - 19968: jis0208<<14 | 0x4E<<7 | 0x53,\n\t38434 - 19968: jis0212<<14 | 0x45<<7 | 0x25,\n\t38436 - 19968: jis0212<<14 | 0x45<<7 | 0x26,\n\t38437 - 19968: jis0212<<14 | 0x45<<7 | 0x27,\n\t38438 - 19968: jis0212<<14 | 0x45<<7 | 0x28,\n\t38440 - 19968: jis0208<<14 | 0x4E<<7 | 0x54,\n\t38442 - 19968: jis0208<<14 | 0x19<<7 | 0x44,\n\t38444 - 19968: jis0212<<14 | 0x45<<7 | 0x29,\n\t38446 - 19968: jis0208<<14 | 0x4E<<7 | 0x55,\n\t38447 - 19968: jis0208<<14 | 0x4E<<7 | 0x56,\n\t38449 - 19968: jis0212<<14 | 0x45<<7 | 0x2A,\n\t38450 - 19968: jis0208<<14 | 0x2A<<7 | 0x28,\n\t38451 - 19968: jis0212<<14 | 0x45<<7 | 0x2B,\n\t38455 - 19968: jis0212<<14 | 0x45<<7 | 0x2C,\n\t38456 - 19968: jis0212<<14 | 0x45<<7 | 0x2D,\n\t38457 - 19968: jis0212<<14 | 0x45<<7 | 0x2E,\n\t38458 - 19968: jis0212<<14 | 0x45<<7 | 0x2F,\n\t38459 - 19968: jis0208<<14 | 0x20<<7 | 0x2A,\n\t38460 - 19968: jis0212<<14 | 0x45<<7 | 0x30,\n\t38461 - 19968: jis0212<<14 | 0x45<<7 | 0x31,\n\t38463 - 19968: jis0208<<14 | 0x0F<<7 | 0x03,\n\t38464 - 19968: jis0208<<14 | 0x21<<7 | 0x2A,\n\t38465 - 19968: jis0212<<14 | 0x45<<7 | 0x32,\n\t38466 - 19968: jis0208<<14 | 0x4E<<7 | 0x57,\n\t38468 - 19968: jis0208<<14 | 0x28<<7 | 0x4C,\n\t38475 - 19968: jis0208<<14 | 0x4E<<7 | 0x5A,\n\t38476 - 19968: jis0208<<14 | 0x4E<<7 | 0x58,\n\t38477 - 19968: jis0208<<14 | 0x18<<7 | 0x3E,\n\t38479 - 19968: jis0208<<14 | 0x4E<<7 | 0x59,\n\t38480 - 19968: jis0208<<14 | 0x17<<7 | 0x21,\n\t38482 - 19968: jis0212<<14 | 0x45<<7 | 0x33,\n\t38484 - 19968: jis0212<<14 | 0x45<<7 | 0x34,\n\t38486 - 19968: jis0212<<14 | 0x45<<7 | 0x35,\n\t38487 - 19968: jis0212<<14 | 0x45<<7 | 0x36,\n\t38488 - 19968: jis0212<<14 | 0x45<<7 | 0x37,\n\t38491 - 19968: jis0208<<14 | 0x29<<7 | 0x24,\n\t38492 - 19968: jis0208<<14 | 0x4E<<7 | 0x5C,\n\t38493 - 19968: jis0208<<14 | 0x4F<<7 | 0x00,\n\t38494 - 19968: jis0208<<14 | 0x4E<<7 | 0x5D,\n\t38495 - 19968: jis0208<<14 | 0x4F<<7 | 0x01,\n\t38497 - 19968: jis0212<<14 | 0x45<<7 | 0x38,\n\t38498 - 19968: jis0208<<14 | 0x10<<7 | 0x00,\n\t38499 - 19968: jis0208<<14 | 0x1E<<7 | 0x37,\n\t38500 - 19968: jis0208<<14 | 0x1C<<7 | 0x5B,\n\t38501 - 19968: jis0208<<14 | 0x13<<7 | 0x38,\n\t38502 - 19968: jis0208<<14 | 0x4F<<7 | 0x02,\n\t38506 - 19968: jis0208<<14 | 0x26<<7 | 0x45,\n\t38508 - 19968: jis0208<<14 | 0x4F<<7 | 0x04,\n\t38510 - 19968: jis0212<<14 | 0x45<<7 | 0x39,\n\t38512 - 19968: jis0208<<14 | 0x10<<7 | 0x01,\n\t38514 - 19968: jis0208<<14 | 0x4F<<7 | 0x03,\n\t38515 - 19968: jis0208<<14 | 0x23<<7 | 0x23,\n\t38516 - 19968: jis0212<<14 | 0x45<<7 | 0x3A,\n\t38517 - 19968: jis0208<<14 | 0x2D<<7 | 0x2C,\n\t38518 - 19968: jis0208<<14 | 0x25<<7 | 0x0A,\n\t38519 - 19968: jis0208<<14 | 0x4E<<7 | 0x5B,\n\t38520 - 19968: jis0208<<14 | 0x2D<<7 | 0x05,\n\t38522 - 19968: jis0208<<14 | 0x17<<7 | 0x10,\n\t38523 - 19968: jis0212<<14 | 0x45<<7 | 0x3B,\n\t38524 - 19968: jis0212<<14 | 0x45<<7 | 0x3C,\n\t38525 - 19968: jis0208<<14 | 0x2C<<7 | 0x3A,\n\t38526 - 19968: jis0212<<14 | 0x45<<7 | 0x3D,\n\t38527 - 19968: jis0212<<14 | 0x45<<7 | 0x3E,\n\t38529 - 19968: jis0212<<14 | 0x45<<7 | 0x3F,\n\t38530 - 19968: jis0212<<14 | 0x45<<7 | 0x40,\n\t38531 - 19968: jis0212<<14 | 0x45<<7 | 0x41,\n\t38532 - 19968: jis0212<<14 | 0x45<<7 | 0x42,\n\t38533 - 19968: jis0208<<14 | 0x15<<7 | 0x58,\n\t38534 - 19968: jis0208<<14 | 0x2D<<7 | 0x13,\n\t38536 - 19968: jis0208<<14 | 0x16<<7 | 0x07,\n\t38537 - 19968: jis0212<<14 | 0x45<<7 | 0x43,\n\t38538 - 19968: jis0208<<14 | 0x21<<7 | 0x41,\n\t38539 - 19968: jis0208<<14 | 0x46<<7 | 0x00,\n\t38541 - 19968: jis0208<<14 | 0x4F<<7 | 0x05,\n\t38542 - 19968: jis0208<<14 | 0x12<<7 | 0x0B,\n\t38543 - 19968: jis0208<<14 | 0x1E<<7 | 0x4E,\n\t38545 - 19968: jis0212<<14 | 0x45<<7 | 0x44,\n\t38548 - 19968: jis0208<<14 | 0x12<<7 | 0x35,\n\t38549 - 19968: jis0208<<14 | 0x4F<<7 | 0x07,\n\t38550 - 19968: jis0212<<14 | 0x45<<7 | 0x45,\n\t38551 - 19968: jis0208<<14 | 0x4F<<7 | 0x08,\n\t38552 - 19968: jis0208<<14 | 0x4F<<7 | 0x06,\n\t38553 - 19968: jis0208<<14 | 0x16<<7 | 0x43,\n\t38554 - 19968: jis0212<<14 | 0x45<<7 | 0x46,\n\t38555 - 19968: jis0208<<14 | 0x19<<7 | 0x3C,\n\t38556 - 19968: jis0208<<14 | 0x1D<<7 | 0x42,\n\t38557 - 19968: jis0208<<14 | 0x5B<<7 | 0x30,\n\t38559 - 19968: jis0212<<14 | 0x45<<7 | 0x48,\n\t38560 - 19968: jis0208<<14 | 0x10<<7 | 0x02,\n\t38563 - 19968: jis0208<<14 | 0x2D<<7 | 0x38,\n\t38564 - 19968: jis0212<<14 | 0x45<<7 | 0x49,\n\t38565 - 19968: jis0212<<14 | 0x45<<7 | 0x4A,\n\t38566 - 19968: jis0212<<14 | 0x45<<7 | 0x4B,\n\t38567 - 19968: jis0208<<14 | 0x4F<<7 | 0x0A,\n\t38568 - 19968: jis0208<<14 | 0x4D<<7 | 0x0D,\n\t38569 - 19968: jis0212<<14 | 0x45<<7 | 0x4C,\n\t38570 - 19968: jis0208<<14 | 0x4F<<7 | 0x09,\n\t38574 - 19968: jis0212<<14 | 0x45<<7 | 0x4D,\n\t38575 - 19968: jis0208<<14 | 0x5B<<7 | 0x31,\n\t38576 - 19968: jis0208<<14 | 0x4F<<7 | 0x0D,\n\t38577 - 19968: jis0208<<14 | 0x4F<<7 | 0x0B,\n\t38578 - 19968: jis0208<<14 | 0x4F<<7 | 0x0C,\n\t38579 - 19968: jis0212<<14 | 0x45<<7 | 0x4F,\n\t38580 - 19968: jis0208<<14 | 0x4F<<7 | 0x0E,\n\t38582 - 19968: jis0208<<14 | 0x4F<<7 | 0x0F,\n\t38583 - 19968: jis0208<<14 | 0x2D<<7 | 0x4B,\n\t38584 - 19968: jis0208<<14 | 0x4F<<7 | 0x10,\n\t38585 - 19968: jis0208<<14 | 0x4F<<7 | 0x11,\n\t38586 - 19968: jis0212<<14 | 0x45<<7 | 0x50,\n\t38587 - 19968: jis0208<<14 | 0x1F<<7 | 0x28,\n\t38588 - 19968: jis0208<<14 | 0x27<<7 | 0x1A,\n\t38592 - 19968: jis0208<<14 | 0x1E<<7 | 0x5C,\n\t38593 - 19968: jis0208<<14 | 0x13<<7 | 0x46,\n\t38596 - 19968: jis0208<<14 | 0x2C<<7 | 0x19,\n\t38597 - 19968: jis0208<<14 | 0x11<<7 | 0x4C,\n\t38598 - 19968: jis0208<<14 | 0x1C<<7 | 0x17,\n\t38599 - 19968: jis0208<<14 | 0x17<<7 | 0x3A,\n\t38601 - 19968: jis0208<<14 | 0x4F<<7 | 0x14,\n\t38602 - 19968: jis0212<<14 | 0x45<<7 | 0x51,\n\t38603 - 19968: jis0208<<14 | 0x4F<<7 | 0x13,\n\t38604 - 19968: jis0208<<14 | 0x1A<<7 | 0x52,\n\t38605 - 19968: jis0208<<14 | 0x4F<<7 | 0x15,\n\t38606 - 19968: jis0208<<14 | 0x4F<<7 | 0x12,\n\t38609 - 19968: jis0208<<14 | 0x1A<<7 | 0x07,\n\t38610 - 19968: jis0212<<14 | 0x45<<7 | 0x52,\n\t38613 - 19968: jis0208<<14 | 0x4F<<7 | 0x19,\n\t38614 - 19968: jis0208<<14 | 0x49<<7 | 0x0C,\n\t38616 - 19968: jis0212<<14 | 0x45<<7 | 0x54,\n\t38617 - 19968: jis0208<<14 | 0x31<<7 | 0x35,\n\t38618 - 19968: jis0212<<14 | 0x45<<7 | 0x55,\n\t38619 - 19968: jis0208<<14 | 0x1E<<7 | 0x56,\n\t38620 - 19968: jis0208<<14 | 0x4F<<7 | 0x17,\n\t38621 - 19968: jis0212<<14 | 0x45<<7 | 0x56,\n\t38622 - 19968: jis0212<<14 | 0x45<<7 | 0x57,\n\t38623 - 19968: jis0212<<14 | 0x45<<7 | 0x58,\n\t38626 - 19968: jis0208<<14 | 0x2D<<7 | 0x04,\n\t38627 - 19968: jis0208<<14 | 0x25<<7 | 0x50,\n\t38632 - 19968: jis0208<<14 | 0x10<<7 | 0x0A,\n\t38633 - 19968: jis0212<<14 | 0x45<<7 | 0x59,\n\t38634 - 19968: jis0208<<14 | 0x1F<<7 | 0x42,\n\t38635 - 19968: jis0208<<14 | 0x1B<<7 | 0x15,\n\t38639 - 19968: jis0212<<14 | 0x45<<7 | 0x5A,\n\t38640 - 19968: jis0208<<14 | 0x29<<7 | 0x16,\n\t38641 - 19968: jis0212<<14 | 0x45<<7 | 0x5B,\n\t38642 - 19968: jis0208<<14 | 0x10<<7 | 0x1F,\n\t38646 - 19968: jis0208<<14 | 0x2D<<7 | 0x4C,\n\t38647 - 19968: jis0208<<14 | 0x2C<<7 | 0x4A,\n\t38649 - 19968: jis0208<<14 | 0x4F<<7 | 0x1A,\n\t38650 - 19968: jis0212<<14 | 0x45<<7 | 0x5C,\n\t38651 - 19968: jis0208<<14 | 0x24<<7 | 0x24,\n\t38656 - 19968: jis0208<<14 | 0x1B<<7 | 0x5A,\n\t38658 - 19968: jis0212<<14 | 0x45<<7 | 0x5D,\n\t38659 - 19968: jis0212<<14 | 0x46<<7 | 0x00,\n\t38660 - 19968: jis0208<<14 | 0x4F<<7 | 0x1B,\n\t38661 - 19968: jis0212<<14 | 0x46<<7 | 0x01,\n\t38662 - 19968: jis0208<<14 | 0x4F<<7 | 0x1C,\n\t38663 - 19968: jis0208<<14 | 0x1E<<7 | 0x2B,\n\t38664 - 19968: jis0208<<14 | 0x4F<<7 | 0x1D,\n\t38665 - 19968: jis0212<<14 | 0x46<<7 | 0x02,\n\t38666 - 19968: jis0208<<14 | 0x2D<<7 | 0x4D,\n\t38669 - 19968: jis0208<<14 | 0x4F<<7 | 0x18,\n\t38670 - 19968: jis0208<<14 | 0x4F<<7 | 0x1F,\n\t38671 - 19968: jis0208<<14 | 0x4F<<7 | 0x21,\n\t38673 - 19968: jis0208<<14 | 0x4F<<7 | 0x20,\n\t38675 - 19968: jis0208<<14 | 0x4F<<7 | 0x1E,\n\t38678 - 19968: jis0208<<14 | 0x4F<<7 | 0x22,\n\t38681 - 19968: jis0208<<14 | 0x4F<<7 | 0x23,\n\t38682 - 19968: jis0212<<14 | 0x46<<7 | 0x03,\n\t38683 - 19968: jis0212<<14 | 0x46<<7 | 0x04,\n\t38684 - 19968: jis0208<<14 | 0x20<<7 | 0x59,\n\t38685 - 19968: jis0212<<14 | 0x46<<7 | 0x05,\n\t38686 - 19968: jis0208<<14 | 0x11<<7 | 0x41,\n\t38689 - 19968: jis0212<<14 | 0x46<<7 | 0x06,\n\t38690 - 19968: jis0212<<14 | 0x46<<7 | 0x07,\n\t38691 - 19968: jis0212<<14 | 0x46<<7 | 0x08,\n\t38692 - 19968: jis0208<<14 | 0x4F<<7 | 0x24,\n\t38695 - 19968: jis0208<<14 | 0x2B<<7 | 0x17,\n\t38696 - 19968: jis0212<<14 | 0x46<<7 | 0x09,\n\t38698 - 19968: jis0208<<14 | 0x4F<<7 | 0x25,\n\t38704 - 19968: jis0208<<14 | 0x4F<<7 | 0x26,\n\t38705 - 19968: jis0212<<14 | 0x46<<7 | 0x0A,\n\t38706 - 19968: jis0208<<14 | 0x2E<<7 | 0x09,\n\t38707 - 19968: jis0208<<14 | 0x5B<<7 | 0x32,\n\t38712 - 19968: jis0208<<14 | 0x3A<<7 | 0x10,\n\t38713 - 19968: jis0208<<14 | 0x4F<<7 | 0x27,\n\t38715 - 19968: jis0208<<14 | 0x5B<<7 | 0x33,\n\t38717 - 19968: jis0208<<14 | 0x4F<<7 | 0x28,\n\t38718 - 19968: jis0208<<14 | 0x4F<<7 | 0x29,\n\t38721 - 19968: jis0212<<14 | 0x46<<7 | 0x0C,\n\t38722 - 19968: jis0208<<14 | 0x4F<<7 | 0x2D,\n\t38723 - 19968: jis0208<<14 | 0x5B<<7 | 0x34,\n\t38724 - 19968: jis0208<<14 | 0x4F<<7 | 0x2A,\n\t38726 - 19968: jis0208<<14 | 0x4F<<7 | 0x2B,\n\t38728 - 19968: jis0208<<14 | 0x4F<<7 | 0x2C,\n\t38729 - 19968: jis0208<<14 | 0x4F<<7 | 0x2E,\n\t38730 - 19968: jis0212<<14 | 0x46<<7 | 0x0E,\n\t38733 - 19968: jis0208<<14 | 0x5B<<7 | 0x35,\n\t38734 - 19968: jis0212<<14 | 0x46<<7 | 0x0F,\n\t38735 - 19968: jis0208<<14 | 0x5B<<7 | 0x36,\n\t38737 - 19968: jis0208<<14 | 0x5B<<7 | 0x37,\n\t38738 - 19968: jis0208<<14 | 0x1F<<7 | 0x23,\n\t38741 - 19968: jis0208<<14 | 0x5B<<7 | 0x38,\n\t38742 - 19968: jis0208<<14 | 0x2B<<7 | 0x56,\n\t38743 - 19968: jis0212<<14 | 0x46<<7 | 0x12,\n\t38744 - 19968: jis0212<<14 | 0x46<<7 | 0x13,\n\t38745 - 19968: jis0208<<14 | 0x1F<<7 | 0x24,\n\t38746 - 19968: jis0212<<14 | 0x46<<7 | 0x14,\n\t38747 - 19968: jis0212<<14 | 0x46<<7 | 0x15,\n\t38748 - 19968: jis0208<<14 | 0x4F<<7 | 0x2F,\n\t38750 - 19968: jis0208<<14 | 0x27<<7 | 0x52,\n\t38752 - 19968: jis0208<<14 | 0x4F<<7 | 0x30,\n\t38753 - 19968: jis0208<<14 | 0x52<<7 | 0x32,\n\t38754 - 19968: jis0208<<14 | 0x2B<<7 | 0x2B,\n\t38755 - 19968: jis0212<<14 | 0x46<<7 | 0x16,\n\t38756 - 19968: jis0208<<14 | 0x4F<<7 | 0x31,\n\t38758 - 19968: jis0208<<14 | 0x4F<<7 | 0x32,\n\t38759 - 19968: jis0212<<14 | 0x46<<7 | 0x17,\n\t38760 - 19968: jis0208<<14 | 0x4F<<7 | 0x33,\n\t38761 - 19968: jis0208<<14 | 0x12<<7 | 0x36,\n\t38762 - 19968: jis0212<<14 | 0x46<<7 | 0x18,\n\t38763 - 19968: jis0208<<14 | 0x4F<<7 | 0x35,\n\t38765 - 19968: jis0208<<14 | 0x1E<<7 | 0x38,\n\t38766 - 19968: jis0212<<14 | 0x46<<7 | 0x19,\n\t38769 - 19968: jis0208<<14 | 0x4F<<7 | 0x36,\n\t38771 - 19968: jis0212<<14 | 0x46<<7 | 0x1A,\n\t38772 - 19968: jis0208<<14 | 0x16<<7 | 0x03,\n\t38774 - 19968: jis0212<<14 | 0x46<<7 | 0x1B,\n\t38775 - 19968: jis0212<<14 | 0x46<<7 | 0x1C,\n\t38776 - 19968: jis0212<<14 | 0x46<<7 | 0x1D,\n\t38777 - 19968: jis0208<<14 | 0x4F<<7 | 0x37,\n\t38778 - 19968: jis0208<<14 | 0x4F<<7 | 0x3B,\n\t38779 - 19968: jis0212<<14 | 0x46<<7 | 0x1E,\n\t38780 - 19968: jis0208<<14 | 0x4F<<7 | 0x39,\n\t38781 - 19968: jis0212<<14 | 0x46<<7 | 0x1F,\n\t38783 - 19968: jis0212<<14 | 0x46<<7 | 0x20,\n\t38784 - 19968: jis0212<<14 | 0x46<<7 | 0x21,\n\t38785 - 19968: jis0208<<14 | 0x4F<<7 | 0x3A,\n\t38788 - 19968: jis0208<<14 | 0x12<<7 | 0x52,\n\t38789 - 19968: jis0208<<14 | 0x4F<<7 | 0x38,\n\t38790 - 19968: jis0208<<14 | 0x4F<<7 | 0x3C,\n\t38793 - 19968: jis0212<<14 | 0x46<<7 | 0x22,\n\t38795 - 19968: jis0208<<14 | 0x4F<<7 | 0x3D,\n\t38797 - 19968: jis0208<<14 | 0x0F<<7 | 0x27,\n\t38799 - 19968: jis0208<<14 | 0x4F<<7 | 0x3E,\n\t38800 - 19968: jis0208<<14 | 0x4F<<7 | 0x3F,\n\t38805 - 19968: jis0212<<14 | 0x46<<7 | 0x23,\n\t38806 - 19968: jis0212<<14 | 0x46<<7 | 0x24,\n\t38807 - 19968: jis0212<<14 | 0x46<<7 | 0x25,\n\t38808 - 19968: jis0208<<14 | 0x1D<<7 | 0x43,\n\t38809 - 19968: jis0212<<14 | 0x46<<7 | 0x26,\n\t38810 - 19968: jis0212<<14 | 0x46<<7 | 0x27,\n\t38812 - 19968: jis0208<<14 | 0x4F<<7 | 0x40,\n\t38814 - 19968: jis0212<<14 | 0x46<<7 | 0x28,\n\t38815 - 19968: jis0212<<14 | 0x46<<7 | 0x29,\n\t38816 - 19968: jis0208<<14 | 0x14<<7 | 0x26,\n\t38818 - 19968: jis0212<<14 | 0x46<<7 | 0x2A,\n\t38819 - 19968: jis0208<<14 | 0x4F<<7 | 0x43,\n\t38822 - 19968: jis0208<<14 | 0x4F<<7 | 0x42,\n\t38824 - 19968: jis0208<<14 | 0x4F<<7 | 0x41,\n\t38827 - 19968: jis0208<<14 | 0x4A<<7 | 0x50,\n\t38828 - 19968: jis0212<<14 | 0x46<<7 | 0x2B,\n\t38829 - 19968: jis0208<<14 | 0x29<<7 | 0x3B,\n\t38830 - 19968: jis0212<<14 | 0x46<<7 | 0x2C,\n\t38833 - 19968: jis0212<<14 | 0x46<<7 | 0x2D,\n\t38834 - 19968: jis0212<<14 | 0x46<<7 | 0x2E,\n\t38835 - 19968: jis0208<<14 | 0x4F<<7 | 0x44,\n\t38836 - 19968: jis0208<<14 | 0x4F<<7 | 0x45,\n\t38837 - 19968: jis0212<<14 | 0x46<<7 | 0x2F,\n\t38838 - 19968: jis0212<<14 | 0x46<<7 | 0x30,\n\t38840 - 19968: jis0212<<14 | 0x46<<7 | 0x31,\n\t38841 - 19968: jis0212<<14 | 0x46<<7 | 0x32,\n\t38842 - 19968: jis0212<<14 | 0x46<<7 | 0x33,\n\t38844 - 19968: jis0212<<14 | 0x46<<7 | 0x34,\n\t38846 - 19968: jis0212<<14 | 0x46<<7 | 0x35,\n\t38847 - 19968: jis0212<<14 | 0x46<<7 | 0x36,\n\t38849 - 19968: jis0212<<14 | 0x46<<7 | 0x37,\n\t38851 - 19968: jis0208<<14 | 0x4F<<7 | 0x46,\n\t38852 - 19968: jis0212<<14 | 0x46<<7 | 0x38,\n\t38853 - 19968: jis0212<<14 | 0x46<<7 | 0x39,\n\t38854 - 19968: jis0208<<14 | 0x4F<<7 | 0x47,\n\t38855 - 19968: jis0212<<14 | 0x46<<7 | 0x3A,\n\t38856 - 19968: jis0208<<14 | 0x4F<<7 | 0x48,\n\t38857 - 19968: jis0212<<14 | 0x46<<7 | 0x3B,\n\t38858 - 19968: jis0212<<14 | 0x46<<7 | 0x3C,\n\t38859 - 19968: jis0208<<14 | 0x4F<<7 | 0x49,\n\t38860 - 19968: jis0212<<14 | 0x46<<7 | 0x3D,\n\t38861 - 19968: jis0212<<14 | 0x46<<7 | 0x3E,\n\t38862 - 19968: jis0212<<14 | 0x46<<7 | 0x3F,\n\t38864 - 19968: jis0212<<14 | 0x46<<7 | 0x40,\n\t38865 - 19968: jis0212<<14 | 0x46<<7 | 0x41,\n\t38867 - 19968: jis0208<<14 | 0x13<<7 | 0x39,\n\t38868 - 19968: jis0212<<14 | 0x46<<7 | 0x42,\n\t38871 - 19968: jis0212<<14 | 0x46<<7 | 0x43,\n\t38872 - 19968: jis0212<<14 | 0x46<<7 | 0x44,\n\t38873 - 19968: jis0212<<14 | 0x46<<7 | 0x45,\n\t38875 - 19968: jis0212<<14 | 0x46<<7 | 0x49,\n\t38876 - 19968: jis0208<<14 | 0x4F<<7 | 0x4A,\n\t38877 - 19968: jis0212<<14 | 0x46<<7 | 0x46,\n\t38878 - 19968: jis0212<<14 | 0x46<<7 | 0x47,\n\t38880 - 19968: jis0212<<14 | 0x46<<7 | 0x48,\n\t38881 - 19968: jis0212<<14 | 0x46<<7 | 0x4A,\n\t38884 - 19968: jis0212<<14 | 0x46<<7 | 0x4B,\n\t38893 - 19968: jis0208<<14 | 0x4F<<7 | 0x4B,\n\t38894 - 19968: jis0208<<14 | 0x26<<7 | 0x02,\n\t38895 - 19968: jis0212<<14 | 0x46<<7 | 0x4C,\n\t38897 - 19968: jis0212<<14 | 0x46<<7 | 0x4D,\n\t38898 - 19968: jis0208<<14 | 0x4F<<7 | 0x4D,\n\t38899 - 19968: jis0208<<14 | 0x11<<7 | 0x1A,\n\t38900 - 19968: jis0212<<14 | 0x46<<7 | 0x4E,\n\t38901 - 19968: jis0208<<14 | 0x4F<<7 | 0x50,\n\t38902 - 19968: jis0208<<14 | 0x4F<<7 | 0x4F,\n\t38903 - 19968: jis0212<<14 | 0x46<<7 | 0x4F,\n\t38904 - 19968: jis0212<<14 | 0x46<<7 | 0x50,\n\t38906 - 19968: jis0212<<14 | 0x46<<7 | 0x51,\n\t38907 - 19968: jis0208<<14 | 0x10<<7 | 0x03,\n\t38911 - 19968: jis0208<<14 | 0x15<<7 | 0x20,\n\t38913 - 19968: jis0208<<14 | 0x29<<7 | 0x26,\n\t38914 - 19968: jis0208<<14 | 0x23<<7 | 0x19,\n\t38915 - 19968: jis0208<<14 | 0x19<<7 | 0x01,\n\t38917 - 19968: jis0208<<14 | 0x18<<7 | 0x3F,\n\t38918 - 19968: jis0208<<14 | 0x1C<<7 | 0x46,\n\t38919 - 19968: jis0212<<14 | 0x46<<7 | 0x52,\n\t38920 - 19968: jis0208<<14 | 0x1E<<7 | 0x3B,\n\t38922 - 19968: jis0212<<14 | 0x46<<7 | 0x53,\n\t38924 - 19968: jis0208<<14 | 0x4F<<7 | 0x52,\n\t38925 - 19968: jis0212<<14 | 0x46<<7 | 0x55,\n\t38926 - 19968: jis0212<<14 | 0x46<<7 | 0x56,\n\t38927 - 19968: jis0208<<14 | 0x4F<<7 | 0x51,\n\t38928 - 19968: jis0208<<14 | 0x2C<<7 | 0x21,\n\t38929 - 19968: jis0208<<14 | 0x13<<7 | 0x47,\n\t38930 - 19968: jis0208<<14 | 0x27<<7 | 0x31,\n\t38931 - 19968: jis0208<<14 | 0x25<<7 | 0x3B,\n\t38932 - 19968: jis0212<<14 | 0x46<<7 | 0x57,\n\t38934 - 19968: jis0212<<14 | 0x46<<7 | 0x58,\n\t38935 - 19968: jis0208<<14 | 0x1E<<7 | 0x5B,\n\t38936 - 19968: jis0208<<14 | 0x2D<<7 | 0x2D,\n\t38937 - 19968: jis0212<<14 | 0x46<<7 | 0x54,\n\t38938 - 19968: jis0208<<14 | 0x16<<7 | 0x3A,\n\t38940 - 19968: jis0212<<14 | 0x46<<7 | 0x59,\n\t38942 - 19968: jis0212<<14 | 0x46<<7 | 0x5A,\n\t38944 - 19968: jis0212<<14 | 0x46<<7 | 0x5B,\n\t38945 - 19968: jis0208<<14 | 0x4F<<7 | 0x55,\n\t38947 - 19968: jis0212<<14 | 0x46<<7 | 0x5C,\n\t38948 - 19968: jis0208<<14 | 0x4F<<7 | 0x54,\n\t38949 - 19968: jis0212<<14 | 0x47<<7 | 0x07,\n\t38950 - 19968: jis0212<<14 | 0x46<<7 | 0x5D,\n\t38955 - 19968: jis0212<<14 | 0x47<<7 | 0x00,\n\t38956 - 19968: jis0208<<14 | 0x2A<<7 | 0x2A,\n\t38957 - 19968: jis0208<<14 | 0x25<<7 | 0x0B,\n\t38958 - 19968: jis0212<<14 | 0x47<<7 | 0x01,\n\t38959 - 19968: jis0212<<14 | 0x47<<7 | 0x02,\n\t38960 - 19968: jis0212<<14 | 0x47<<7 | 0x03,\n\t38962 - 19968: jis0212<<14 | 0x47<<7 | 0x04,\n\t38963 - 19968: jis0212<<14 | 0x47<<7 | 0x05,\n\t38964 - 19968: jis0208<<14 | 0x10<<7 | 0x2F,\n\t38965 - 19968: jis0212<<14 | 0x47<<7 | 0x06,\n\t38967 - 19968: jis0208<<14 | 0x4F<<7 | 0x56,\n\t38968 - 19968: jis0208<<14 | 0x4F<<7 | 0x53,\n\t38971 - 19968: jis0208<<14 | 0x28<<7 | 0x30,\n\t38972 - 19968: jis0208<<14 | 0x2C<<7 | 0x49,\n\t38973 - 19968: jis0208<<14 | 0x4F<<7 | 0x57,\n\t38974 - 19968: jis0212<<14 | 0x47<<7 | 0x08,\n\t38980 - 19968: jis0212<<14 | 0x47<<7 | 0x09,\n\t38982 - 19968: jis0208<<14 | 0x4F<<7 | 0x58,\n\t38983 - 19968: jis0212<<14 | 0x47<<7 | 0x0A,\n\t38986 - 19968: jis0212<<14 | 0x47<<7 | 0x0B,\n\t38987 - 19968: jis0208<<14 | 0x4F<<7 | 0x5A,\n\t38988 - 19968: jis0208<<14 | 0x21<<7 | 0x49,\n\t38989 - 19968: jis0208<<14 | 0x12<<7 | 0x3A,\n\t38990 - 19968: jis0208<<14 | 0x12<<7 | 0x3B,\n\t38991 - 19968: jis0208<<14 | 0x4F<<7 | 0x59,\n\t38993 - 19968: jis0212<<14 | 0x47<<7 | 0x0C,\n\t38994 - 19968: jis0212<<14 | 0x47<<7 | 0x0D,\n\t38995 - 19968: jis0212<<14 | 0x47<<7 | 0x0E,\n\t38996 - 19968: jis0208<<14 | 0x13<<7 | 0x48,\n\t38997 - 19968: jis0208<<14 | 0x17<<7 | 0x11,\n\t38998 - 19968: jis0212<<14 | 0x47<<7 | 0x0F,\n\t38999 - 19968: jis0208<<14 | 0x5B<<7 | 0x39,\n\t39000 - 19968: jis0208<<14 | 0x13<<7 | 0x49,\n\t39001 - 19968: jis0212<<14 | 0x47<<7 | 0x11,\n\t39002 - 19968: jis0212<<14 | 0x47<<7 | 0x12,\n\t39003 - 19968: jis0208<<14 | 0x24<<7 | 0x1E,\n\t39006 - 19968: jis0208<<14 | 0x2D<<7 | 0x3F,\n\t39010 - 19968: jis0212<<14 | 0x47<<7 | 0x13,\n\t39011 - 19968: jis0212<<14 | 0x47<<7 | 0x14,\n\t39013 - 19968: jis0208<<14 | 0x5B<<7 | 0x3A,\n\t39014 - 19968: jis0212<<14 | 0x47<<7 | 0x16,\n\t39015 - 19968: jis0208<<14 | 0x17<<7 | 0x3B,\n\t39018 - 19968: jis0212<<14 | 0x47<<7 | 0x17,\n\t39019 - 19968: jis0208<<14 | 0x4F<<7 | 0x5B,\n\t39020 - 19968: jis0212<<14 | 0x47<<7 | 0x18,\n\t39023 - 19968: jis0208<<14 | 0x4F<<7 | 0x5C,\n\t39024 - 19968: jis0208<<14 | 0x4F<<7 | 0x5D,\n\t39025 - 19968: jis0208<<14 | 0x50<<7 | 0x00,\n\t39027 - 19968: jis0208<<14 | 0x50<<7 | 0x02,\n\t39028 - 19968: jis0208<<14 | 0x50<<7 | 0x01,\n\t39080 - 19968: jis0208<<14 | 0x28<<7 | 0x56,\n\t39082 - 19968: jis0208<<14 | 0x50<<7 | 0x03,\n\t39083 - 19968: jis0212<<14 | 0x47<<7 | 0x19,\n\t39085 - 19968: jis0212<<14 | 0x47<<7 | 0x1A,\n\t39086 - 19968: jis0212<<14 | 0x47<<7 | 0x1B,\n\t39087 - 19968: jis0208<<14 | 0x50<<7 | 0x04,\n\t39088 - 19968: jis0212<<14 | 0x47<<7 | 0x1C,\n\t39089 - 19968: jis0208<<14 | 0x50<<7 | 0x05,\n\t39092 - 19968: jis0212<<14 | 0x47<<7 | 0x1D,\n\t39094 - 19968: jis0208<<14 | 0x50<<7 | 0x06,\n\t39095 - 19968: jis0212<<14 | 0x47<<7 | 0x1E,\n\t39096 - 19968: jis0212<<14 | 0x47<<7 | 0x1F,\n\t39098 - 19968: jis0212<<14 | 0x47<<7 | 0x20,\n\t39099 - 19968: jis0212<<14 | 0x47<<7 | 0x21,\n\t39103 - 19968: jis0212<<14 | 0x47<<7 | 0x22,\n\t39106 - 19968: jis0212<<14 | 0x47<<7 | 0x23,\n\t39107 - 19968: jis0208<<14 | 0x50<<7 | 0x08,\n\t39108 - 19968: jis0208<<14 | 0x50<<7 | 0x07,\n\t39109 - 19968: jis0212<<14 | 0x47<<7 | 0x24,\n\t39110 - 19968: jis0208<<14 | 0x50<<7 | 0x09,\n\t39112 - 19968: jis0212<<14 | 0x47<<7 | 0x25,\n\t39116 - 19968: jis0212<<14 | 0x47<<7 | 0x26,\n\t39131 - 19968: jis0208<<14 | 0x27<<7 | 0x53,\n\t39132 - 19968: jis0208<<14 | 0x45<<7 | 0x2B,\n\t39135 - 19968: jis0208<<14 | 0x1E<<7 | 0x08,\n\t39137 - 19968: jis0212<<14 | 0x47<<7 | 0x27,\n\t39138 - 19968: jis0208<<14 | 0x14<<7 | 0x11,\n\t39139 - 19968: jis0212<<14 | 0x47<<7 | 0x28,\n\t39141 - 19968: jis0212<<14 | 0x47<<7 | 0x29,\n\t39142 - 19968: jis0212<<14 | 0x47<<7 | 0x2A,\n\t39143 - 19968: jis0212<<14 | 0x47<<7 | 0x2B,\n\t39145 - 19968: jis0208<<14 | 0x50<<7 | 0x0A,\n\t39146 - 19968: jis0212<<14 | 0x47<<7 | 0x2C,\n\t39147 - 19968: jis0208<<14 | 0x50<<7 | 0x0B,\n\t39149 - 19968: jis0208<<14 | 0x31<<7 | 0x0B,\n\t39150 - 19968: jis0208<<14 | 0x3C<<7 | 0x1A,\n\t39151 - 19968: jis0208<<14 | 0x27<<7 | 0x32,\n\t39154 - 19968: jis0208<<14 | 0x0F<<7 | 0x5A,\n\t39155 - 19968: jis0212<<14 | 0x47<<7 | 0x2D,\n\t39156 - 19968: jis0208<<14 | 0x0F<<7 | 0x1A,\n\t39158 - 19968: jis0212<<14 | 0x47<<7 | 0x2E,\n\t39164 - 19968: jis0208<<14 | 0x1A<<7 | 0x53,\n\t39165 - 19968: jis0208<<14 | 0x2A<<7 | 0x0F,\n\t39166 - 19968: jis0208<<14 | 0x1D<<7 | 0x5D,\n\t39170 - 19968: jis0212<<14 | 0x47<<7 | 0x2F,\n\t39171 - 19968: jis0208<<14 | 0x50<<7 | 0x0C,\n\t39173 - 19968: jis0208<<14 | 0x2B<<7 | 0x3E,\n\t39175 - 19968: jis0212<<14 | 0x47<<7 | 0x30,\n\t39176 - 19968: jis0212<<14 | 0x47<<7 | 0x31,\n\t39177 - 19968: jis0208<<14 | 0x50<<7 | 0x0D,\n\t39178 - 19968: jis0208<<14 | 0x2C<<7 | 0x3B,\n\t39180 - 19968: jis0208<<14 | 0x10<<7 | 0x21,\n\t39184 - 19968: jis0208<<14 | 0x1A<<7 | 0x20,\n\t39185 - 19968: jis0212<<14 | 0x47<<7 | 0x32,\n\t39186 - 19968: jis0208<<14 | 0x50<<7 | 0x0E,\n\t39187 - 19968: jis0208<<14 | 0x11<<7 | 0x4D,\n\t39188 - 19968: jis0208<<14 | 0x50<<7 | 0x0F,\n\t39189 - 19968: jis0212<<14 | 0x47<<7 | 0x33,\n\t39190 - 19968: jis0212<<14 | 0x47<<7 | 0x34,\n\t39191 - 19968: jis0212<<14 | 0x47<<7 | 0x35,\n\t39192 - 19968: jis0208<<14 | 0x50<<7 | 0x10,\n\t39194 - 19968: jis0212<<14 | 0x47<<7 | 0x36,\n\t39195 - 19968: jis0212<<14 | 0x47<<7 | 0x37,\n\t39196 - 19968: jis0212<<14 | 0x47<<7 | 0x38,\n\t39197 - 19968: jis0208<<14 | 0x50<<7 | 0x12,\n\t39198 - 19968: jis0208<<14 | 0x50<<7 | 0x13,\n\t39199 - 19968: jis0212<<14 | 0x47<<7 | 0x39,\n\t39200 - 19968: jis0208<<14 | 0x50<<7 | 0x15,\n\t39201 - 19968: jis0208<<14 | 0x50<<7 | 0x11,\n\t39202 - 19968: jis0212<<14 | 0x47<<7 | 0x3A,\n\t39204 - 19968: jis0208<<14 | 0x50<<7 | 0x14,\n\t39206 - 19968: jis0212<<14 | 0x47<<7 | 0x3B,\n\t39207 - 19968: jis0208<<14 | 0x5B<<7 | 0x3D,\n\t39208 - 19968: jis0208<<14 | 0x13<<7 | 0x3A,\n\t39211 - 19968: jis0212<<14 | 0x47<<7 | 0x3D,\n\t39212 - 19968: jis0208<<14 | 0x50<<7 | 0x16,\n\t39214 - 19968: jis0208<<14 | 0x50<<7 | 0x17,\n\t39217 - 19968: jis0212<<14 | 0x47<<7 | 0x3E,\n\t39218 - 19968: jis0212<<14 | 0x47<<7 | 0x3F,\n\t39219 - 19968: jis0212<<14 | 0x47<<7 | 0x40,\n\t39220 - 19968: jis0212<<14 | 0x47<<7 | 0x41,\n\t39221 - 19968: jis0212<<14 | 0x47<<7 | 0x42,\n\t39225 - 19968: jis0212<<14 | 0x47<<7 | 0x43,\n\t39226 - 19968: jis0212<<14 | 0x47<<7 | 0x44,\n\t39227 - 19968: jis0212<<14 | 0x47<<7 | 0x45,\n\t39228 - 19968: jis0212<<14 | 0x47<<7 | 0x46,\n\t39229 - 19968: jis0208<<14 | 0x50<<7 | 0x18,\n\t39230 - 19968: jis0208<<14 | 0x50<<7 | 0x19,\n\t39232 - 19968: jis0212<<14 | 0x47<<7 | 0x47,\n\t39233 - 19968: jis0212<<14 | 0x47<<7 | 0x48,\n\t39234 - 19968: jis0208<<14 | 0x50<<7 | 0x1A,\n\t39237 - 19968: jis0208<<14 | 0x50<<7 | 0x1C,\n\t39238 - 19968: jis0212<<14 | 0x47<<7 | 0x49,\n\t39239 - 19968: jis0212<<14 | 0x47<<7 | 0x4A,\n\t39240 - 19968: jis0212<<14 | 0x47<<7 | 0x4B,\n\t39241 - 19968: jis0208<<14 | 0x50<<7 | 0x1B,\n\t39243 - 19968: jis0208<<14 | 0x50<<7 | 0x1E,\n\t39244 - 19968: jis0208<<14 | 0x50<<7 | 0x21,\n\t39245 - 19968: jis0212<<14 | 0x47<<7 | 0x4C,\n\t39246 - 19968: jis0212<<14 | 0x47<<7 | 0x4D,\n\t39248 - 19968: jis0208<<14 | 0x50<<7 | 0x1D,\n\t39249 - 19968: jis0208<<14 | 0x50<<7 | 0x1F,\n\t39250 - 19968: jis0208<<14 | 0x50<<7 | 0x20,\n\t39252 - 19968: jis0212<<14 | 0x47<<7 | 0x4E,\n\t39253 - 19968: jis0208<<14 | 0x50<<7 | 0x22,\n\t39255 - 19968: jis0208<<14 | 0x15<<7 | 0x21,\n\t39256 - 19968: jis0212<<14 | 0x47<<7 | 0x4F,\n\t39257 - 19968: jis0212<<14 | 0x47<<7 | 0x50,\n\t39259 - 19968: jis0212<<14 | 0x47<<7 | 0x51,\n\t39260 - 19968: jis0212<<14 | 0x47<<7 | 0x52,\n\t39262 - 19968: jis0212<<14 | 0x47<<7 | 0x53,\n\t39263 - 19968: jis0212<<14 | 0x47<<7 | 0x54,\n\t39264 - 19968: jis0212<<14 | 0x47<<7 | 0x55,\n\t39318 - 19968: jis0208<<14 | 0x1B<<7 | 0x52,\n\t39319 - 19968: jis0208<<14 | 0x50<<7 | 0x23,\n\t39320 - 19968: jis0208<<14 | 0x50<<7 | 0x24,\n\t39321 - 19968: jis0208<<14 | 0x18<<7 | 0x40,\n\t39323 - 19968: jis0212<<14 | 0x47<<7 | 0x56,\n\t39325 - 19968: jis0212<<14 | 0x47<<7 | 0x57,\n\t39326 - 19968: jis0208<<14 | 0x5B<<7 | 0x3F,\n\t39327 - 19968: jis0212<<14 | 0x47<<7 | 0x58,\n\t39333 - 19968: jis0208<<14 | 0x50<<7 | 0x25,\n\t39334 - 19968: jis0212<<14 | 0x47<<7 | 0x59,\n\t39336 - 19968: jis0208<<14 | 0x12<<7 | 0x1D,\n\t39340 - 19968: jis0208<<14 | 0x26<<7 | 0x2E,\n\t39341 - 19968: jis0208<<14 | 0x50<<7 | 0x26,\n\t39342 - 19968: jis0208<<14 | 0x50<<7 | 0x27,\n\t39344 - 19968: jis0212<<14 | 0x47<<7 | 0x5A,\n\t39345 - 19968: jis0212<<14 | 0x47<<7 | 0x5B,\n\t39346 - 19968: jis0212<<14 | 0x47<<7 | 0x5C,\n\t39347 - 19968: jis0208<<14 | 0x22<<7 | 0x39,\n\t39348 - 19968: jis0208<<14 | 0x25<<7 | 0x4A,\n\t39349 - 19968: jis0212<<14 | 0x47<<7 | 0x5D,\n\t39353 - 19968: jis0212<<14 | 0x48<<7 | 0x00,\n\t39354 - 19968: jis0212<<14 | 0x48<<7 | 0x01,\n\t39356 - 19968: jis0208<<14 | 0x50<<7 | 0x28,\n\t39357 - 19968: jis0212<<14 | 0x48<<7 | 0x02,\n\t39359 - 19968: jis0212<<14 | 0x48<<7 | 0x03,\n\t39361 - 19968: jis0208<<14 | 0x26<<7 | 0x5C,\n\t39363 - 19968: jis0212<<14 | 0x48<<7 | 0x04,\n\t39364 - 19968: jis0208<<14 | 0x21<<7 | 0x2B,\n\t39365 - 19968: jis0208<<14 | 0x10<<7 | 0x37,\n\t39366 - 19968: jis0208<<14 | 0x15<<7 | 0x4D,\n\t39368 - 19968: jis0208<<14 | 0x15<<7 | 0x4E,\n\t39369 - 19968: jis0212<<14 | 0x48<<7 | 0x05,\n\t39376 - 19968: jis0208<<14 | 0x22<<7 | 0x52,\n\t39377 - 19968: jis0208<<14 | 0x50<<7 | 0x2D,\n\t39378 - 19968: jis0208<<14 | 0x15<<7 | 0x4F,\n\t39379 - 19968: jis0212<<14 | 0x48<<7 | 0x06,\n\t39380 - 19968: jis0212<<14 | 0x48<<7 | 0x07,\n\t39381 - 19968: jis0208<<14 | 0x11<<7 | 0x4E,\n\t39384 - 19968: jis0208<<14 | 0x50<<7 | 0x2C,\n\t39385 - 19968: jis0212<<14 | 0x48<<7 | 0x08,\n\t39386 - 19968: jis0212<<14 | 0x48<<7 | 0x09,\n\t39387 - 19968: jis0208<<14 | 0x50<<7 | 0x2A,\n\t39388 - 19968: jis0212<<14 | 0x48<<7 | 0x0A,\n\t39389 - 19968: jis0208<<14 | 0x50<<7 | 0x2B,\n\t39390 - 19968: jis0212<<14 | 0x48<<7 | 0x0B,\n\t39391 - 19968: jis0208<<14 | 0x50<<7 | 0x29,\n\t39394 - 19968: jis0208<<14 | 0x50<<7 | 0x37,\n\t39399 - 19968: jis0212<<14 | 0x48<<7 | 0x0C,\n\t39402 - 19968: jis0212<<14 | 0x48<<7 | 0x0D,\n\t39403 - 19968: jis0212<<14 | 0x48<<7 | 0x0E,\n\t39404 - 19968: jis0212<<14 | 0x48<<7 | 0x0F,\n\t39405 - 19968: jis0208<<14 | 0x50<<7 | 0x2E,\n\t39406 - 19968: jis0208<<14 | 0x50<<7 | 0x2F,\n\t39408 - 19968: jis0212<<14 | 0x48<<7 | 0x10,\n\t39409 - 19968: jis0208<<14 | 0x50<<7 | 0x30,\n\t39410 - 19968: jis0208<<14 | 0x50<<7 | 0x31,\n\t39412 - 19968: jis0212<<14 | 0x48<<7 | 0x11,\n\t39413 - 19968: jis0212<<14 | 0x48<<7 | 0x12,\n\t39416 - 19968: jis0208<<14 | 0x50<<7 | 0x33,\n\t39417 - 19968: jis0212<<14 | 0x48<<7 | 0x13,\n\t39419 - 19968: jis0208<<14 | 0x50<<7 | 0x32,\n\t39421 - 19968: jis0212<<14 | 0x48<<7 | 0x14,\n\t39422 - 19968: jis0212<<14 | 0x48<<7 | 0x15,\n\t39423 - 19968: jis0208<<14 | 0x1C<<7 | 0x38,\n\t39425 - 19968: jis0208<<14 | 0x50<<7 | 0x34,\n\t39426 - 19968: jis0212<<14 | 0x48<<7 | 0x16,\n\t39427 - 19968: jis0212<<14 | 0x48<<7 | 0x17,\n\t39428 - 19968: jis0212<<14 | 0x48<<7 | 0x18,\n\t39429 - 19968: jis0208<<14 | 0x50<<7 | 0x36,\n\t39435 - 19968: jis0212<<14 | 0x48<<7 | 0x19,\n\t39436 - 19968: jis0212<<14 | 0x48<<7 | 0x1A,\n\t39438 - 19968: jis0208<<14 | 0x14<<7 | 0x12,\n\t39439 - 19968: jis0208<<14 | 0x50<<7 | 0x35,\n\t39440 - 19968: jis0212<<14 | 0x48<<7 | 0x1B,\n\t39441 - 19968: jis0212<<14 | 0x48<<7 | 0x1C,\n\t39442 - 19968: jis0208<<14 | 0x20<<7 | 0x5A,\n\t39443 - 19968: jis0208<<14 | 0x17<<7 | 0x12,\n\t39446 - 19968: jis0212<<14 | 0x48<<7 | 0x1D,\n\t39449 - 19968: jis0208<<14 | 0x50<<7 | 0x38,\n\t39454 - 19968: jis0212<<14 | 0x48<<7 | 0x1E,\n\t39456 - 19968: jis0212<<14 | 0x48<<7 | 0x1F,\n\t39458 - 19968: jis0212<<14 | 0x48<<7 | 0x20,\n\t39459 - 19968: jis0212<<14 | 0x48<<7 | 0x21,\n\t39460 - 19968: jis0212<<14 | 0x48<<7 | 0x22,\n\t39463 - 19968: jis0212<<14 | 0x48<<7 | 0x23,\n\t39464 - 19968: jis0208<<14 | 0x21<<7 | 0x2C,\n\t39467 - 19968: jis0208<<14 | 0x50<<7 | 0x39,\n\t39469 - 19968: jis0212<<14 | 0x48<<7 | 0x24,\n\t39470 - 19968: jis0212<<14 | 0x48<<7 | 0x25,\n\t39472 - 19968: jis0208<<14 | 0x25<<7 | 0x0C,\n\t39475 - 19968: jis0212<<14 | 0x48<<7 | 0x26,\n\t39477 - 19968: jis0212<<14 | 0x48<<7 | 0x27,\n\t39478 - 19968: jis0212<<14 | 0x48<<7 | 0x28,\n\t39479 - 19968: jis0208<<14 | 0x50<<7 | 0x3A,\n\t39480 - 19968: jis0212<<14 | 0x48<<7 | 0x29,\n\t39486 - 19968: jis0208<<14 | 0x50<<7 | 0x3F,\n\t39488 - 19968: jis0208<<14 | 0x50<<7 | 0x3D,\n\t39489 - 19968: jis0212<<14 | 0x48<<7 | 0x2B,\n\t39490 - 19968: jis0208<<14 | 0x50<<7 | 0x3C,\n\t39491 - 19968: jis0208<<14 | 0x50<<7 | 0x3E,\n\t39492 - 19968: jis0212<<14 | 0x48<<7 | 0x2C,\n\t39493 - 19968: jis0208<<14 | 0x50<<7 | 0x3B,\n\t39495 - 19968: jis0212<<14 | 0x48<<7 | 0x2A,\n\t39498 - 19968: jis0212<<14 | 0x48<<7 | 0x2D,\n\t39499 - 19968: jis0212<<14 | 0x48<<7 | 0x2E,\n\t39500 - 19968: jis0212<<14 | 0x48<<7 | 0x2F,\n\t39501 - 19968: jis0208<<14 | 0x50<<7 | 0x41,\n\t39502 - 19968: jis0208<<14 | 0x5B<<7 | 0x40,\n\t39505 - 19968: jis0212<<14 | 0x48<<7 | 0x31,\n\t39508 - 19968: jis0212<<14 | 0x48<<7 | 0x32,\n\t39509 - 19968: jis0208<<14 | 0x50<<7 | 0x40,\n\t39510 - 19968: jis0212<<14 | 0x48<<7 | 0x33,\n\t39511 - 19968: jis0208<<14 | 0x50<<7 | 0x43,\n\t39514 - 19968: jis0208<<14 | 0x15<<7 | 0x22,\n\t39515 - 19968: jis0208<<14 | 0x50<<7 | 0x42,\n\t39517 - 19968: jis0212<<14 | 0x48<<7 | 0x34,\n\t39519 - 19968: jis0208<<14 | 0x50<<7 | 0x44,\n\t39522 - 19968: jis0208<<14 | 0x50<<7 | 0x45,\n\t39524 - 19968: jis0208<<14 | 0x50<<7 | 0x47,\n\t39525 - 19968: jis0208<<14 | 0x50<<7 | 0x46,\n\t39529 - 19968: jis0208<<14 | 0x50<<7 | 0x48,\n\t39530 - 19968: jis0208<<14 | 0x50<<7 | 0x4A,\n\t39531 - 19968: jis0208<<14 | 0x50<<7 | 0x49,\n\t39592 - 19968: jis0208<<14 | 0x18<<7 | 0x5B,\n\t39594 - 19968: jis0212<<14 | 0x48<<7 | 0x35,\n\t39596 - 19968: jis0212<<14 | 0x48<<7 | 0x36,\n\t39597 - 19968: jis0208<<14 | 0x50<<7 | 0x4B,\n\t39598 - 19968: jis0212<<14 | 0x48<<7 | 0x37,\n\t39599 - 19968: jis0212<<14 | 0x48<<7 | 0x38,\n\t39600 - 19968: jis0208<<14 | 0x50<<7 | 0x4C,\n\t39602 - 19968: jis0212<<14 | 0x48<<7 | 0x39,\n\t39604 - 19968: jis0212<<14 | 0x48<<7 | 0x3A,\n\t39605 - 19968: jis0212<<14 | 0x48<<7 | 0x3B,\n\t39606 - 19968: jis0212<<14 | 0x48<<7 | 0x3C,\n\t39608 - 19968: jis0208<<14 | 0x12<<7 | 0x1B,\n\t39609 - 19968: jis0212<<14 | 0x48<<7 | 0x3D,\n\t39611 - 19968: jis0212<<14 | 0x48<<7 | 0x3E,\n\t39612 - 19968: jis0208<<14 | 0x50<<7 | 0x4D,\n\t39614 - 19968: jis0212<<14 | 0x48<<7 | 0x3F,\n\t39615 - 19968: jis0212<<14 | 0x48<<7 | 0x40,\n\t39616 - 19968: jis0208<<14 | 0x50<<7 | 0x4E,\n\t39617 - 19968: jis0212<<14 | 0x48<<7 | 0x41,\n\t39619 - 19968: jis0212<<14 | 0x48<<7 | 0x42,\n\t39620 - 19968: jis0208<<14 | 0x1E<<7 | 0x50,\n\t39622 - 19968: jis0212<<14 | 0x48<<7 | 0x43,\n\t39624 - 19968: jis0212<<14 | 0x48<<7 | 0x44,\n\t39630 - 19968: jis0212<<14 | 0x48<<7 | 0x45,\n\t39631 - 19968: jis0208<<14 | 0x50<<7 | 0x4F,\n\t39632 - 19968: jis0212<<14 | 0x48<<7 | 0x46,\n\t39633 - 19968: jis0208<<14 | 0x50<<7 | 0x50,\n\t39634 - 19968: jis0212<<14 | 0x48<<7 | 0x47,\n\t39635 - 19968: jis0208<<14 | 0x50<<7 | 0x51,\n\t39636 - 19968: jis0208<<14 | 0x50<<7 | 0x52,\n\t39637 - 19968: jis0212<<14 | 0x48<<7 | 0x48,\n\t39638 - 19968: jis0212<<14 | 0x48<<7 | 0x49,\n\t39639 - 19968: jis0212<<14 | 0x48<<7 | 0x4A,\n\t39640 - 19968: jis0208<<14 | 0x18<<7 | 0x41,\n\t39641 - 19968: jis0208<<14 | 0x5B<<7 | 0x41,\n\t39643 - 19968: jis0212<<14 | 0x48<<7 | 0x4B,\n\t39644 - 19968: jis0208<<14 | 0x5B<<7 | 0x42,\n\t39646 - 19968: jis0208<<14 | 0x50<<7 | 0x53,\n\t39647 - 19968: jis0208<<14 | 0x50<<7 | 0x54,\n\t39648 - 19968: jis0212<<14 | 0x48<<7 | 0x4D,\n\t39650 - 19968: jis0208<<14 | 0x50<<7 | 0x55,\n\t39651 - 19968: jis0208<<14 | 0x50<<7 | 0x56,\n\t39652 - 19968: jis0212<<14 | 0x48<<7 | 0x4E,\n\t39653 - 19968: jis0212<<14 | 0x48<<7 | 0x4F,\n\t39654 - 19968: jis0208<<14 | 0x50<<7 | 0x57,\n\t39655 - 19968: jis0212<<14 | 0x48<<7 | 0x50,\n\t39657 - 19968: jis0212<<14 | 0x48<<7 | 0x51,\n\t39658 - 19968: jis0208<<14 | 0x27<<7 | 0x10,\n\t39659 - 19968: jis0208<<14 | 0x50<<7 | 0x59,\n\t39660 - 19968: jis0212<<14 | 0x48<<7 | 0x52,\n\t39661 - 19968: jis0208<<14 | 0x28<<7 | 0x05,\n\t39662 - 19968: jis0208<<14 | 0x50<<7 | 0x5A,\n\t39663 - 19968: jis0208<<14 | 0x50<<7 | 0x58,\n\t39665 - 19968: jis0208<<14 | 0x50<<7 | 0x5C,\n\t39666 - 19968: jis0212<<14 | 0x48<<7 | 0x53,\n\t39667 - 19968: jis0212<<14 | 0x48<<7 | 0x54,\n\t39668 - 19968: jis0208<<14 | 0x50<<7 | 0x5B,\n\t39669 - 19968: jis0212<<14 | 0x48<<7 | 0x55,\n\t39671 - 19968: jis0208<<14 | 0x50<<7 | 0x5D,\n\t39673 - 19968: jis0212<<14 | 0x48<<7 | 0x56,\n\t39674 - 19968: jis0212<<14 | 0x48<<7 | 0x57,\n\t39675 - 19968: jis0208<<14 | 0x51<<7 | 0x00,\n\t39677 - 19968: jis0212<<14 | 0x48<<7 | 0x58,\n\t39679 - 19968: jis0212<<14 | 0x48<<7 | 0x59,\n\t39680 - 19968: jis0212<<14 | 0x48<<7 | 0x5A,\n\t39681 - 19968: jis0212<<14 | 0x48<<7 | 0x5B,\n\t39682 - 19968: jis0212<<14 | 0x48<<7 | 0x5C,\n\t39683 - 19968: jis0212<<14 | 0x48<<7 | 0x5D,\n\t39684 - 19968: jis0212<<14 | 0x49<<7 | 0x00,\n\t39685 - 19968: jis0212<<14 | 0x49<<7 | 0x01,\n\t39686 - 19968: jis0208<<14 | 0x51<<7 | 0x01,\n\t39688 - 19968: jis0212<<14 | 0x49<<7 | 0x02,\n\t39689 - 19968: jis0212<<14 | 0x49<<7 | 0x03,\n\t39691 - 19968: jis0212<<14 | 0x49<<7 | 0x04,\n\t39692 - 19968: jis0212<<14 | 0x49<<7 | 0x05,\n\t39693 - 19968: jis0212<<14 | 0x49<<7 | 0x06,\n\t39694 - 19968: jis0212<<14 | 0x49<<7 | 0x07,\n\t39696 - 19968: jis0212<<14 | 0x49<<7 | 0x08,\n\t39698 - 19968: jis0212<<14 | 0x49<<7 | 0x09,\n\t39702 - 19968: jis0212<<14 | 0x49<<7 | 0x0A,\n\t39704 - 19968: jis0208<<14 | 0x51<<7 | 0x02,\n\t39705 - 19968: jis0212<<14 | 0x49<<7 | 0x0B,\n\t39706 - 19968: jis0208<<14 | 0x51<<7 | 0x03,\n\t39707 - 19968: jis0212<<14 | 0x49<<7 | 0x0C,\n\t39708 - 19968: jis0212<<14 | 0x49<<7 | 0x0D,\n\t39711 - 19968: jis0208<<14 | 0x51<<7 | 0x04,\n\t39712 - 19968: jis0212<<14 | 0x49<<7 | 0x0E,\n\t39714 - 19968: jis0208<<14 | 0x51<<7 | 0x05,\n\t39715 - 19968: jis0208<<14 | 0x51<<7 | 0x06,\n\t39717 - 19968: jis0208<<14 | 0x51<<7 | 0x07,\n\t39718 - 19968: jis0212<<14 | 0x49<<7 | 0x0F,\n\t39719 - 19968: jis0208<<14 | 0x51<<7 | 0x08,\n\t39720 - 19968: jis0208<<14 | 0x51<<7 | 0x09,\n\t39721 - 19968: jis0208<<14 | 0x51<<7 | 0x0A,\n\t39722 - 19968: jis0208<<14 | 0x51<<7 | 0x0B,\n\t39723 - 19968: jis0212<<14 | 0x49<<7 | 0x10,\n\t39725 - 19968: jis0212<<14 | 0x49<<7 | 0x11,\n\t39726 - 19968: jis0208<<14 | 0x51<<7 | 0x0C,\n\t39727 - 19968: jis0208<<14 | 0x51<<7 | 0x0D,\n\t39729 - 19968: jis0208<<14 | 0x3C<<7 | 0x14,\n\t39730 - 19968: jis0208<<14 | 0x51<<7 | 0x0E,\n\t39731 - 19968: jis0212<<14 | 0x49<<7 | 0x12,\n\t39732 - 19968: jis0212<<14 | 0x49<<7 | 0x13,\n\t39733 - 19968: jis0212<<14 | 0x49<<7 | 0x14,\n\t39735 - 19968: jis0212<<14 | 0x49<<7 | 0x15,\n\t39737 - 19968: jis0212<<14 | 0x49<<7 | 0x16,\n\t39738 - 19968: jis0212<<14 | 0x49<<7 | 0x17,\n\t39739 - 19968: jis0208<<14 | 0x43<<7 | 0x57,\n\t39740 - 19968: jis0208<<14 | 0x14<<7 | 0x13,\n\t39741 - 19968: jis0212<<14 | 0x49<<7 | 0x18,\n\t39745 - 19968: jis0208<<14 | 0x12<<7 | 0x00,\n\t39746 - 19968: jis0208<<14 | 0x19<<7 | 0x11,\n\t39747 - 19968: jis0208<<14 | 0x51<<7 | 0x10,\n\t39748 - 19968: jis0208<<14 | 0x51<<7 | 0x0F,\n\t39749 - 19968: jis0208<<14 | 0x2B<<7 | 0x04,\n\t39752 - 19968: jis0212<<14 | 0x49<<7 | 0x19,\n\t39755 - 19968: jis0212<<14 | 0x49<<7 | 0x1A,\n\t39756 - 19968: jis0212<<14 | 0x49<<7 | 0x1B,\n\t39757 - 19968: jis0208<<14 | 0x51<<7 | 0x12,\n\t39758 - 19968: jis0208<<14 | 0x51<<7 | 0x13,\n\t39759 - 19968: jis0208<<14 | 0x51<<7 | 0x11,\n\t39761 - 19968: jis0208<<14 | 0x51<<7 | 0x14,\n\t39764 - 19968: jis0208<<14 | 0x2A<<7 | 0x41,\n\t39765 - 19968: jis0212<<14 | 0x49<<7 | 0x1C,\n\t39766 - 19968: jis0212<<14 | 0x49<<7 | 0x1D,\n\t39767 - 19968: jis0212<<14 | 0x49<<7 | 0x1E,\n\t39768 - 19968: jis0208<<14 | 0x51<<7 | 0x15,\n\t39770 - 19968: jis0208<<14 | 0x14<<7 | 0x5A,\n\t39771 - 19968: jis0212<<14 | 0x49<<7 | 0x1F,\n\t39774 - 19968: jis0212<<14 | 0x49<<7 | 0x20,\n\t39777 - 19968: jis0212<<14 | 0x49<<7 | 0x21,\n\t39779 - 19968: jis0212<<14 | 0x49<<7 | 0x22,\n\t39781 - 19968: jis0212<<14 | 0x49<<7 | 0x23,\n\t39782 - 19968: jis0212<<14 | 0x49<<7 | 0x24,\n\t39784 - 19968: jis0212<<14 | 0x49<<7 | 0x25,\n\t39786 - 19968: jis0212<<14 | 0x49<<7 | 0x26,\n\t39787 - 19968: jis0212<<14 | 0x49<<7 | 0x27,\n\t39788 - 19968: jis0212<<14 | 0x49<<7 | 0x28,\n\t39789 - 19968: jis0212<<14 | 0x49<<7 | 0x29,\n\t39790 - 19968: jis0212<<14 | 0x49<<7 | 0x2A,\n\t39791 - 19968: jis0208<<14 | 0x2E<<7 | 0x04,\n\t39794 - 19968: jis0208<<14 | 0x5B<<7 | 0x44,\n\t39795 - 19968: jis0212<<14 | 0x49<<7 | 0x2B,\n\t39796 - 19968: jis0208<<14 | 0x51<<7 | 0x16,\n\t39797 - 19968: jis0208<<14 | 0x5B<<7 | 0x43,\n\t39799 - 19968: jis0212<<14 | 0x49<<7 | 0x2D,\n\t39800 - 19968: jis0212<<14 | 0x49<<7 | 0x2E,\n\t39801 - 19968: jis0212<<14 | 0x49<<7 | 0x2F,\n\t39807 - 19968: jis0212<<14 | 0x49<<7 | 0x30,\n\t39808 - 19968: jis0212<<14 | 0x49<<7 | 0x31,\n\t39811 - 19968: jis0208<<14 | 0x51<<7 | 0x18,\n\t39812 - 19968: jis0212<<14 | 0x49<<7 | 0x32,\n\t39813 - 19968: jis0212<<14 | 0x49<<7 | 0x33,\n\t39814 - 19968: jis0212<<14 | 0x49<<7 | 0x34,\n\t39815 - 19968: jis0212<<14 | 0x49<<7 | 0x35,\n\t39817 - 19968: jis0212<<14 | 0x49<<7 | 0x36,\n\t39818 - 19968: jis0212<<14 | 0x49<<7 | 0x37,\n\t39819 - 19968: jis0212<<14 | 0x49<<7 | 0x38,\n\t39821 - 19968: jis0212<<14 | 0x49<<7 | 0x39,\n\t39822 - 19968: jis0208<<14 | 0x0F<<7 | 0x1D,\n\t39823 - 19968: jis0208<<14 | 0x5B<<7 | 0x45,\n\t39824 - 19968: jis0212<<14 | 0x49<<7 | 0x3B,\n\t39825 - 19968: jis0208<<14 | 0x51<<7 | 0x19,\n\t39826 - 19968: jis0208<<14 | 0x29<<7 | 0x0A,\n\t39827 - 19968: jis0208<<14 | 0x51<<7 | 0x17,\n\t39828 - 19968: jis0212<<14 | 0x49<<7 | 0x3C,\n\t39830 - 19968: jis0208<<14 | 0x51<<7 | 0x1A,\n\t39831 - 19968: jis0208<<14 | 0x51<<7 | 0x1B,\n\t39834 - 19968: jis0212<<14 | 0x49<<7 | 0x3D,\n\t39837 - 19968: jis0212<<14 | 0x49<<7 | 0x3E,\n\t39838 - 19968: jis0212<<14 | 0x49<<7 | 0x3F,\n\t39839 - 19968: jis0208<<14 | 0x51<<7 | 0x1C,\n\t39840 - 19968: jis0208<<14 | 0x51<<7 | 0x1D,\n\t39846 - 19968: jis0212<<14 | 0x49<<7 | 0x40,\n\t39847 - 19968: jis0212<<14 | 0x49<<7 | 0x41,\n\t39848 - 19968: jis0208<<14 | 0x51<<7 | 0x1E,\n\t39849 - 19968: jis0212<<14 | 0x49<<7 | 0x42,\n\t39850 - 19968: jis0208<<14 | 0x2A<<7 | 0x4D,\n\t39851 - 19968: jis0208<<14 | 0x1A<<7 | 0x0C,\n\t39852 - 19968: jis0212<<14 | 0x49<<7 | 0x43,\n\t39853 - 19968: jis0208<<14 | 0x19<<7 | 0x59,\n\t39854 - 19968: jis0208<<14 | 0x20<<7 | 0x0E,\n\t39856 - 19968: jis0212<<14 | 0x49<<7 | 0x44,\n\t39857 - 19968: jis0208<<14 | 0x5B<<7 | 0x46,\n\t39858 - 19968: jis0212<<14 | 0x49<<7 | 0x46,\n\t39860 - 19968: jis0208<<14 | 0x51<<7 | 0x1F,\n\t39863 - 19968: jis0212<<14 | 0x49<<7 | 0x47,\n\t39864 - 19968: jis0212<<14 | 0x49<<7 | 0x48,\n\t39865 - 19968: jis0208<<14 | 0x51<<7 | 0x22,\n\t39867 - 19968: jis0208<<14 | 0x5B<<7 | 0x47,\n\t39868 - 19968: jis0212<<14 | 0x49<<7 | 0x4A,\n\t39870 - 19968: jis0212<<14 | 0x49<<7 | 0x4B,\n\t39871 - 19968: jis0212<<14 | 0x49<<7 | 0x4C,\n\t39872 - 19968: jis0208<<14 | 0x51<<7 | 0x20,\n\t39873 - 19968: jis0212<<14 | 0x49<<7 | 0x4D,\n\t39878 - 19968: jis0208<<14 | 0x51<<7 | 0x23,\n\t39879 - 19968: jis0212<<14 | 0x49<<7 | 0x4E,\n\t39880 - 19968: jis0212<<14 | 0x49<<7 | 0x4F,\n\t39881 - 19968: jis0208<<14 | 0x17<<7 | 0x50,\n\t39882 - 19968: jis0208<<14 | 0x51<<7 | 0x21,\n\t39886 - 19968: jis0212<<14 | 0x49<<7 | 0x50,\n\t39887 - 19968: jis0208<<14 | 0x51<<7 | 0x24,\n\t39888 - 19968: jis0212<<14 | 0x49<<7 | 0x51,\n\t39889 - 19968: jis0208<<14 | 0x51<<7 | 0x25,\n\t39890 - 19968: jis0208<<14 | 0x51<<7 | 0x26,\n\t39892 - 19968: jis0208<<14 | 0x51<<7 | 0x2A,\n\t39894 - 19968: jis0208<<14 | 0x1A<<7 | 0x09,\n\t39895 - 19968: jis0212<<14 | 0x49<<7 | 0x52,\n\t39896 - 19968: jis0212<<14 | 0x49<<7 | 0x53,\n\t39899 - 19968: jis0208<<14 | 0x21<<7 | 0x43,\n\t39901 - 19968: jis0212<<14 | 0x49<<7 | 0x54,\n\t39903 - 19968: jis0212<<14 | 0x49<<7 | 0x55,\n\t39905 - 19968: jis0208<<14 | 0x51<<7 | 0x2B,\n\t39906 - 19968: jis0208<<14 | 0x51<<7 | 0x28,\n\t39907 - 19968: jis0208<<14 | 0x51<<7 | 0x27,\n\t39908 - 19968: jis0208<<14 | 0x51<<7 | 0x29,\n\t39909 - 19968: jis0212<<14 | 0x49<<7 | 0x56,\n\t39911 - 19968: jis0212<<14 | 0x49<<7 | 0x57,\n\t39912 - 19968: jis0208<<14 | 0x16<<7 | 0x3E,\n\t39914 - 19968: jis0212<<14 | 0x49<<7 | 0x58,\n\t39915 - 19968: jis0212<<14 | 0x49<<7 | 0x59,\n\t39919 - 19968: jis0212<<14 | 0x49<<7 | 0x5A,\n\t39920 - 19968: jis0208<<14 | 0x51<<7 | 0x2F,\n\t39921 - 19968: jis0208<<14 | 0x51<<7 | 0x2E,\n\t39922 - 19968: jis0208<<14 | 0x51<<7 | 0x2D,\n\t39923 - 19968: jis0212<<14 | 0x49<<7 | 0x5B,\n\t39925 - 19968: jis0208<<14 | 0x0F<<7 | 0x12,\n\t39927 - 19968: jis0212<<14 | 0x49<<7 | 0x5C,\n\t39928 - 19968: jis0212<<14 | 0x49<<7 | 0x5D,\n\t39929 - 19968: jis0212<<14 | 0x4A<<7 | 0x00,\n\t39930 - 19968: jis0212<<14 | 0x4A<<7 | 0x01,\n\t39933 - 19968: jis0212<<14 | 0x4A<<7 | 0x02,\n\t39935 - 19968: jis0212<<14 | 0x4A<<7 | 0x03,\n\t39936 - 19968: jis0208<<14 | 0x5B<<7 | 0x48,\n\t39938 - 19968: jis0212<<14 | 0x4A<<7 | 0x05,\n\t39940 - 19968: jis0208<<14 | 0x51<<7 | 0x39,\n\t39942 - 19968: jis0208<<14 | 0x51<<7 | 0x35,\n\t39944 - 19968: jis0208<<14 | 0x51<<7 | 0x36,\n\t39945 - 19968: jis0208<<14 | 0x51<<7 | 0x32,\n\t39946 - 19968: jis0208<<14 | 0x51<<7 | 0x38,\n\t39947 - 19968: jis0212<<14 | 0x4A<<7 | 0x06,\n\t39948 - 19968: jis0208<<14 | 0x51<<7 | 0x34,\n\t39949 - 19968: jis0208<<14 | 0x12<<7 | 0x41,\n\t39951 - 19968: jis0212<<14 | 0x4A<<7 | 0x07,\n\t39952 - 19968: jis0208<<14 | 0x2E<<7 | 0x2B,\n\t39953 - 19968: jis0212<<14 | 0x4A<<7 | 0x08,\n\t39954 - 19968: jis0208<<14 | 0x51<<7 | 0x37,\n\t39955 - 19968: jis0208<<14 | 0x51<<7 | 0x33,\n\t39956 - 19968: jis0208<<14 | 0x51<<7 | 0x31,\n\t39957 - 19968: jis0208<<14 | 0x51<<7 | 0x30,\n\t39958 - 19968: jis0212<<14 | 0x4A<<7 | 0x09,\n\t39960 - 19968: jis0212<<14 | 0x4A<<7 | 0x0A,\n\t39961 - 19968: jis0212<<14 | 0x4A<<7 | 0x0B,\n\t39962 - 19968: jis0212<<14 | 0x4A<<7 | 0x0C,\n\t39963 - 19968: jis0208<<14 | 0x51<<7 | 0x3B,\n\t39964 - 19968: jis0212<<14 | 0x4A<<7 | 0x0D,\n\t39966 - 19968: jis0212<<14 | 0x4A<<7 | 0x0E,\n\t39969 - 19968: jis0208<<14 | 0x51<<7 | 0x3E,\n\t39970 - 19968: jis0212<<14 | 0x4A<<7 | 0x0F,\n\t39971 - 19968: jis0212<<14 | 0x4A<<7 | 0x10,\n\t39972 - 19968: jis0208<<14 | 0x51<<7 | 0x3D,\n\t39973 - 19968: jis0208<<14 | 0x51<<7 | 0x3C,\n\t39974 - 19968: jis0212<<14 | 0x4A<<7 | 0x11,\n\t39975 - 19968: jis0212<<14 | 0x4A<<7 | 0x12,\n\t39976 - 19968: jis0212<<14 | 0x4A<<7 | 0x13,\n\t39977 - 19968: jis0212<<14 | 0x4A<<7 | 0x14,\n\t39978 - 19968: jis0212<<14 | 0x4A<<7 | 0x15,\n\t39981 - 19968: jis0208<<14 | 0x28<<7 | 0x28,\n\t39982 - 19968: jis0208<<14 | 0x51<<7 | 0x3A,\n\t39983 - 19968: jis0208<<14 | 0x0F<<7 | 0x52,\n\t39984 - 19968: jis0208<<14 | 0x51<<7 | 0x3F,\n\t39985 - 19968: jis0212<<14 | 0x4A<<7 | 0x16,\n\t39986 - 19968: jis0208<<14 | 0x51<<7 | 0x41,\n\t39989 - 19968: jis0212<<14 | 0x4A<<7 | 0x17,\n\t39990 - 19968: jis0212<<14 | 0x4A<<7 | 0x18,\n\t39991 - 19968: jis0212<<14 | 0x4A<<7 | 0x19,\n\t39993 - 19968: jis0208<<14 | 0x12<<7 | 0x4E,\n\t39994 - 19968: jis0208<<14 | 0x51<<7 | 0x2C,\n\t39995 - 19968: jis0208<<14 | 0x10<<7 | 0x16,\n\t39997 - 19968: jis0212<<14 | 0x4A<<7 | 0x1A,\n\t39998 - 19968: jis0208<<14 | 0x51<<7 | 0x43,\n\t40001 - 19968: jis0212<<14 | 0x4A<<7 | 0x1B,\n\t40003 - 19968: jis0212<<14 | 0x4A<<7 | 0x1C,\n\t40004 - 19968: jis0212<<14 | 0x4A<<7 | 0x1D,\n\t40005 - 19968: jis0212<<14 | 0x4A<<7 | 0x1E,\n\t40006 - 19968: jis0208<<14 | 0x51<<7 | 0x42,\n\t40007 - 19968: jis0208<<14 | 0x51<<7 | 0x40,\n\t40008 - 19968: jis0208<<14 | 0x22<<7 | 0x0C,\n\t40009 - 19968: jis0212<<14 | 0x4A<<7 | 0x1F,\n\t40010 - 19968: jis0212<<14 | 0x4A<<7 | 0x20,\n\t40014 - 19968: jis0212<<14 | 0x4A<<7 | 0x21,\n\t40015 - 19968: jis0212<<14 | 0x4A<<7 | 0x22,\n\t40016 - 19968: jis0212<<14 | 0x4A<<7 | 0x23,\n\t40018 - 19968: jis0208<<14 | 0x2A<<7 | 0x4F,\n\t40019 - 19968: jis0212<<14 | 0x4A<<7 | 0x24,\n\t40020 - 19968: jis0212<<14 | 0x4A<<7 | 0x25,\n\t40022 - 19968: jis0212<<14 | 0x4A<<7 | 0x26,\n\t40023 - 19968: jis0208<<14 | 0x2D<<7 | 0x39,\n\t40024 - 19968: jis0212<<14 | 0x4A<<7 | 0x27,\n\t40026 - 19968: jis0208<<14 | 0x51<<7 | 0x44,\n\t40027 - 19968: jis0212<<14 | 0x4A<<7 | 0x28,\n\t40028 - 19968: jis0212<<14 | 0x4A<<7 | 0x2F,\n\t40029 - 19968: jis0212<<14 | 0x4A<<7 | 0x29,\n\t40030 - 19968: jis0212<<14 | 0x4A<<7 | 0x2A,\n\t40031 - 19968: jis0212<<14 | 0x4A<<7 | 0x2B,\n\t40032 - 19968: jis0208<<14 | 0x51<<7 | 0x45,\n\t40035 - 19968: jis0212<<14 | 0x4A<<7 | 0x2C,\n\t40039 - 19968: jis0208<<14 | 0x51<<7 | 0x46,\n\t40040 - 19968: jis0212<<14 | 0x4A<<7 | 0x31,\n\t40041 - 19968: jis0212<<14 | 0x4A<<7 | 0x2D,\n\t40042 - 19968: jis0212<<14 | 0x4A<<7 | 0x2E,\n\t40043 - 19968: jis0212<<14 | 0x4A<<7 | 0x30,\n\t40046 - 19968: jis0212<<14 | 0x4A<<7 | 0x32,\n\t40048 - 19968: jis0212<<14 | 0x4A<<7 | 0x33,\n\t40050 - 19968: jis0212<<14 | 0x4A<<7 | 0x34,\n\t40053 - 19968: jis0212<<14 | 0x4A<<7 | 0x35,\n\t40054 - 19968: jis0208<<14 | 0x51<<7 | 0x47,\n\t40055 - 19968: jis0212<<14 | 0x4A<<7 | 0x36,\n\t40056 - 19968: jis0208<<14 | 0x51<<7 | 0x48,\n\t40059 - 19968: jis0212<<14 | 0x4A<<7 | 0x37,\n\t40165 - 19968: jis0208<<14 | 0x23<<7 | 0x1A,\n\t40166 - 19968: jis0212<<14 | 0x4A<<7 | 0x38,\n\t40167 - 19968: jis0208<<14 | 0x51<<7 | 0x49,\n\t40169 - 19968: jis0208<<14 | 0x27<<7 | 0x16,\n\t40171 - 19968: jis0208<<14 | 0x51<<7 | 0x4E,\n\t40172 - 19968: jis0208<<14 | 0x51<<7 | 0x4A,\n\t40176 - 19968: jis0208<<14 | 0x51<<7 | 0x4B,\n\t40178 - 19968: jis0212<<14 | 0x4A<<7 | 0x39,\n\t40179 - 19968: jis0208<<14 | 0x2A<<7 | 0x10,\n\t40180 - 19968: jis0208<<14 | 0x2B<<7 | 0x23,\n\t40182 - 19968: jis0208<<14 | 0x25<<7 | 0x2F,\n\t40183 - 19968: jis0212<<14 | 0x4A<<7 | 0x3A,\n\t40185 - 19968: jis0212<<14 | 0x4A<<7 | 0x3B,\n\t40194 - 19968: jis0212<<14 | 0x4A<<7 | 0x3D,\n\t40195 - 19968: jis0208<<14 | 0x51<<7 | 0x4F,\n\t40198 - 19968: jis0208<<14 | 0x51<<7 | 0x50,\n\t40199 - 19968: jis0208<<14 | 0x25<<7 | 0x1D,\n\t40200 - 19968: jis0208<<14 | 0x51<<7 | 0x4D,\n\t40201 - 19968: jis0208<<14 | 0x51<<7 | 0x4C,\n\t40203 - 19968: jis0212<<14 | 0x4A<<7 | 0x3C,\n\t40206 - 19968: jis0208<<14 | 0x11<<7 | 0x09,\n\t40209 - 19968: jis0212<<14 | 0x4A<<7 | 0x3E,\n\t40210 - 19968: jis0208<<14 | 0x51<<7 | 0x58,\n\t40213 - 19968: jis0208<<14 | 0x51<<7 | 0x57,\n\t40215 - 19968: jis0212<<14 | 0x4A<<7 | 0x3F,\n\t40216 - 19968: jis0212<<14 | 0x4A<<7 | 0x40,\n\t40219 - 19968: jis0208<<14 | 0x10<<7 | 0x54,\n\t40220 - 19968: jis0212<<14 | 0x4A<<7 | 0x41,\n\t40221 - 19968: jis0212<<14 | 0x4A<<7 | 0x42,\n\t40222 - 19968: jis0212<<14 | 0x4A<<7 | 0x43,\n\t40223 - 19968: jis0208<<14 | 0x51<<7 | 0x55,\n\t40227 - 19968: jis0208<<14 | 0x51<<7 | 0x54,\n\t40230 - 19968: jis0208<<14 | 0x51<<7 | 0x52,\n\t40232 - 19968: jis0208<<14 | 0x12<<7 | 0x5A,\n\t40234 - 19968: jis0208<<14 | 0x51<<7 | 0x51,\n\t40235 - 19968: jis0208<<14 | 0x1B<<7 | 0x11,\n\t40236 - 19968: jis0208<<14 | 0x11<<7 | 0x08,\n\t40239 - 19968: jis0212<<14 | 0x4A<<7 | 0x44,\n\t40240 - 19968: jis0212<<14 | 0x4A<<7 | 0x45,\n\t40242 - 19968: jis0212<<14 | 0x4A<<7 | 0x46,\n\t40243 - 19968: jis0212<<14 | 0x4A<<7 | 0x47,\n\t40244 - 19968: jis0212<<14 | 0x4A<<7 | 0x48,\n\t40250 - 19968: jis0212<<14 | 0x4A<<7 | 0x49,\n\t40251 - 19968: jis0208<<14 | 0x18<<7 | 0x42,\n\t40252 - 19968: jis0212<<14 | 0x4A<<7 | 0x4A,\n\t40253 - 19968: jis0212<<14 | 0x4A<<7 | 0x4C,\n\t40254 - 19968: jis0208<<14 | 0x51<<7 | 0x5B,\n\t40255 - 19968: jis0208<<14 | 0x51<<7 | 0x5A,\n\t40257 - 19968: jis0208<<14 | 0x51<<7 | 0x59,\n\t40258 - 19968: jis0212<<14 | 0x4A<<7 | 0x4D,\n\t40259 - 19968: jis0212<<14 | 0x4A<<7 | 0x4E,\n\t40260 - 19968: jis0208<<14 | 0x51<<7 | 0x56,\n\t40261 - 19968: jis0212<<14 | 0x4A<<7 | 0x4B,\n\t40262 - 19968: jis0208<<14 | 0x51<<7 | 0x5C,\n\t40263 - 19968: jis0212<<14 | 0x4A<<7 | 0x4F,\n\t40264 - 19968: jis0208<<14 | 0x51<<7 | 0x5D,\n\t40266 - 19968: jis0212<<14 | 0x4A<<7 | 0x50,\n\t40272 - 19968: jis0208<<14 | 0x52<<7 | 0x04,\n\t40273 - 19968: jis0208<<14 | 0x52<<7 | 0x03,\n\t40275 - 19968: jis0212<<14 | 0x4A<<7 | 0x51,\n\t40276 - 19968: jis0212<<14 | 0x4A<<7 | 0x52,\n\t40281 - 19968: jis0208<<14 | 0x52<<7 | 0x05,\n\t40284 - 19968: jis0208<<14 | 0x10<<7 | 0x0C,\n\t40285 - 19968: jis0208<<14 | 0x52<<7 | 0x00,\n\t40286 - 19968: jis0208<<14 | 0x52<<7 | 0x01,\n\t40287 - 19968: jis0212<<14 | 0x4A<<7 | 0x53,\n\t40288 - 19968: jis0208<<14 | 0x18<<7 | 0x53,\n\t40289 - 19968: jis0208<<14 | 0x2B<<7 | 0x18,\n\t40290 - 19968: jis0212<<14 | 0x4A<<7 | 0x55,\n\t40291 - 19968: jis0212<<14 | 0x4A<<7 | 0x54,\n\t40292 - 19968: jis0208<<14 | 0x52<<7 | 0x02,\n\t40293 - 19968: jis0212<<14 | 0x4A<<7 | 0x56,\n\t40297 - 19968: jis0212<<14 | 0x4A<<7 | 0x57,\n\t40298 - 19968: jis0212<<14 | 0x4A<<7 | 0x58,\n\t40299 - 19968: jis0208<<14 | 0x5B<<7 | 0x4A,\n\t40300 - 19968: jis0208<<14 | 0x2A<<7 | 0x11,\n\t40303 - 19968: jis0208<<14 | 0x52<<7 | 0x0A,\n\t40304 - 19968: jis0208<<14 | 0x5B<<7 | 0x49,\n\t40306 - 19968: jis0208<<14 | 0x52<<7 | 0x06,\n\t40310 - 19968: jis0212<<14 | 0x4A<<7 | 0x5B,\n\t40311 - 19968: jis0212<<14 | 0x4A<<7 | 0x5C,\n\t40314 - 19968: jis0208<<14 | 0x52<<7 | 0x0B,\n\t40315 - 19968: jis0212<<14 | 0x4A<<7 | 0x5D,\n\t40316 - 19968: jis0212<<14 | 0x4B<<7 | 0x00,\n\t40318 - 19968: jis0212<<14 | 0x4B<<7 | 0x01,\n\t40323 - 19968: jis0212<<14 | 0x4B<<7 | 0x02,\n\t40324 - 19968: jis0212<<14 | 0x4B<<7 | 0x03,\n\t40326 - 19968: jis0212<<14 | 0x4B<<7 | 0x04,\n\t40327 - 19968: jis0208<<14 | 0x52<<7 | 0x08,\n\t40329 - 19968: jis0208<<14 | 0x52<<7 | 0x07,\n\t40330 - 19968: jis0212<<14 | 0x4B<<7 | 0x05,\n\t40333 - 19968: jis0212<<14 | 0x4B<<7 | 0x06,\n\t40334 - 19968: jis0212<<14 | 0x4B<<7 | 0x07,\n\t40335 - 19968: jis0208<<14 | 0x16<<7 | 0x3B,\n\t40338 - 19968: jis0212<<14 | 0x4B<<7 | 0x08,\n\t40339 - 19968: jis0212<<14 | 0x4B<<7 | 0x09,\n\t40341 - 19968: jis0212<<14 | 0x4B<<7 | 0x0A,\n\t40342 - 19968: jis0212<<14 | 0x4B<<7 | 0x0B,\n\t40343 - 19968: jis0212<<14 | 0x4B<<7 | 0x0C,\n\t40344 - 19968: jis0212<<14 | 0x4B<<7 | 0x0D,\n\t40346 - 19968: jis0208<<14 | 0x52<<7 | 0x0C,\n\t40353 - 19968: jis0212<<14 | 0x4B<<7 | 0x0E,\n\t40356 - 19968: jis0208<<14 | 0x52<<7 | 0x0D,\n\t40361 - 19968: jis0208<<14 | 0x52<<7 | 0x0E,\n\t40362 - 19968: jis0212<<14 | 0x4B<<7 | 0x0F,\n\t40363 - 19968: jis0208<<14 | 0x52<<7 | 0x09,\n\t40364 - 19968: jis0212<<14 | 0x4B<<7 | 0x10,\n\t40366 - 19968: jis0212<<14 | 0x4B<<7 | 0x11,\n\t40367 - 19968: jis0208<<14 | 0x51<<7 | 0x53,\n\t40369 - 19968: jis0212<<14 | 0x4B<<7 | 0x12,\n\t40370 - 19968: jis0208<<14 | 0x52<<7 | 0x0F,\n\t40372 - 19968: jis0208<<14 | 0x23<<7 | 0x40,\n\t40373 - 19968: jis0212<<14 | 0x4B<<7 | 0x13,\n\t40376 - 19968: jis0208<<14 | 0x52<<7 | 0x13,\n\t40377 - 19968: jis0212<<14 | 0x4B<<7 | 0x14,\n\t40378 - 19968: jis0208<<14 | 0x52<<7 | 0x14,\n\t40379 - 19968: jis0208<<14 | 0x52<<7 | 0x12,\n\t40380 - 19968: jis0212<<14 | 0x4B<<7 | 0x15,\n\t40383 - 19968: jis0212<<14 | 0x4B<<7 | 0x16,\n\t40385 - 19968: jis0208<<14 | 0x52<<7 | 0x11,\n\t40386 - 19968: jis0208<<14 | 0x52<<7 | 0x17,\n\t40387 - 19968: jis0212<<14 | 0x4B<<7 | 0x17,\n\t40388 - 19968: jis0208<<14 | 0x52<<7 | 0x10,\n\t40390 - 19968: jis0208<<14 | 0x52<<7 | 0x15,\n\t40391 - 19968: jis0212<<14 | 0x4B<<7 | 0x18,\n\t40393 - 19968: jis0212<<14 | 0x4B<<7 | 0x19,\n\t40394 - 19968: jis0212<<14 | 0x4B<<7 | 0x1A,\n\t40399 - 19968: jis0208<<14 | 0x52<<7 | 0x16,\n\t40403 - 19968: jis0208<<14 | 0x52<<7 | 0x19,\n\t40404 - 19968: jis0212<<14 | 0x4B<<7 | 0x1B,\n\t40405 - 19968: jis0212<<14 | 0x4B<<7 | 0x1C,\n\t40406 - 19968: jis0212<<14 | 0x4B<<7 | 0x1D,\n\t40407 - 19968: jis0212<<14 | 0x4B<<7 | 0x1E,\n\t40409 - 19968: jis0208<<14 | 0x52<<7 | 0x18,\n\t40410 - 19968: jis0212<<14 | 0x4B<<7 | 0x1F,\n\t40414 - 19968: jis0212<<14 | 0x4B<<7 | 0x20,\n\t40415 - 19968: jis0212<<14 | 0x4B<<7 | 0x21,\n\t40416 - 19968: jis0212<<14 | 0x4B<<7 | 0x22,\n\t40421 - 19968: jis0212<<14 | 0x4B<<7 | 0x23,\n\t40422 - 19968: jis0208<<14 | 0x52<<7 | 0x1B,\n\t40423 - 19968: jis0212<<14 | 0x4B<<7 | 0x24,\n\t40425 - 19968: jis0212<<14 | 0x4B<<7 | 0x25,\n\t40427 - 19968: jis0212<<14 | 0x4B<<7 | 0x26,\n\t40429 - 19968: jis0208<<14 | 0x52<<7 | 0x1C,\n\t40430 - 19968: jis0212<<14 | 0x4B<<7 | 0x27,\n\t40431 - 19968: jis0208<<14 | 0x52<<7 | 0x1D,\n\t40432 - 19968: jis0212<<14 | 0x4B<<7 | 0x28,\n\t40434 - 19968: jis0208<<14 | 0x2E<<7 | 0x28,\n\t40435 - 19968: jis0212<<14 | 0x4B<<7 | 0x29,\n\t40436 - 19968: jis0212<<14 | 0x4B<<7 | 0x2A,\n\t40440 - 19968: jis0208<<14 | 0x52<<7 | 0x1A,\n\t40441 - 19968: jis0208<<14 | 0x21<<7 | 0x4A,\n\t40442 - 19968: jis0208<<14 | 0x19<<7 | 0x4C,\n\t40445 - 19968: jis0208<<14 | 0x52<<7 | 0x1E,\n\t40446 - 19968: jis0212<<14 | 0x4B<<7 | 0x2B,\n\t40450 - 19968: jis0212<<14 | 0x4B<<7 | 0x2D,\n\t40455 - 19968: jis0212<<14 | 0x4B<<7 | 0x2E,\n\t40458 - 19968: jis0212<<14 | 0x4B<<7 | 0x2C,\n\t40462 - 19968: jis0212<<14 | 0x4B<<7 | 0x2F,\n\t40464 - 19968: jis0212<<14 | 0x4B<<7 | 0x30,\n\t40465 - 19968: jis0212<<14 | 0x4B<<7 | 0x31,\n\t40466 - 19968: jis0212<<14 | 0x4B<<7 | 0x32,\n\t40469 - 19968: jis0212<<14 | 0x4B<<7 | 0x33,\n\t40470 - 19968: jis0212<<14 | 0x4B<<7 | 0x34,\n\t40473 - 19968: jis0208<<14 | 0x5B<<7 | 0x4C,\n\t40474 - 19968: jis0208<<14 | 0x52<<7 | 0x1F,\n\t40475 - 19968: jis0208<<14 | 0x52<<7 | 0x20,\n\t40476 - 19968: jis0212<<14 | 0x4B<<7 | 0x36,\n\t40477 - 19968: jis0212<<14 | 0x4B<<7 | 0x37,\n\t40478 - 19968: jis0208<<14 | 0x52<<7 | 0x21,\n\t40565 - 19968: jis0208<<14 | 0x52<<7 | 0x22,\n\t40568 - 19968: jis0208<<14 | 0x17<<7 | 0x13,\n\t40569 - 19968: jis0208<<14 | 0x52<<7 | 0x23,\n\t40570 - 19968: jis0212<<14 | 0x4B<<7 | 0x38,\n\t40571 - 19968: jis0212<<14 | 0x4B<<7 | 0x39,\n\t40572 - 19968: jis0212<<14 | 0x4B<<7 | 0x3A,\n\t40573 - 19968: jis0208<<14 | 0x52<<7 | 0x24,\n\t40575 - 19968: jis0208<<14 | 0x1B<<7 | 0x0E,\n\t40576 - 19968: jis0212<<14 | 0x4B<<7 | 0x3B,\n\t40577 - 19968: jis0208<<14 | 0x52<<7 | 0x25,\n\t40578 - 19968: jis0212<<14 | 0x4B<<7 | 0x3C,\n\t40579 - 19968: jis0212<<14 | 0x4B<<7 | 0x3D,\n\t40580 - 19968: jis0212<<14 | 0x4B<<7 | 0x3E,\n\t40581 - 19968: jis0212<<14 | 0x4B<<7 | 0x3F,\n\t40583 - 19968: jis0212<<14 | 0x4B<<7 | 0x40,\n\t40584 - 19968: jis0208<<14 | 0x52<<7 | 0x26,\n\t40587 - 19968: jis0208<<14 | 0x52<<7 | 0x27,\n\t40588 - 19968: jis0208<<14 | 0x52<<7 | 0x28,\n\t40590 - 19968: jis0212<<14 | 0x4B<<7 | 0x41,\n\t40591 - 19968: jis0212<<14 | 0x4B<<7 | 0x42,\n\t40593 - 19968: jis0208<<14 | 0x52<<7 | 0x2B,\n\t40594 - 19968: jis0208<<14 | 0x52<<7 | 0x29,\n\t40595 - 19968: jis0208<<14 | 0x2E<<7 | 0x1B,\n\t40597 - 19968: jis0208<<14 | 0x52<<7 | 0x2A,\n\t40598 - 19968: jis0212<<14 | 0x4B<<7 | 0x43,\n\t40599 - 19968: jis0208<<14 | 0x2D<<7 | 0x4E,\n\t40600 - 19968: jis0212<<14 | 0x4B<<7 | 0x44,\n\t40603 - 19968: jis0212<<14 | 0x4B<<7 | 0x45,\n\t40605 - 19968: jis0208<<14 | 0x52<<7 | 0x2C,\n\t40606 - 19968: jis0212<<14 | 0x4B<<7 | 0x46,\n\t40607 - 19968: jis0208<<14 | 0x2D<<7 | 0x3A,\n\t40612 - 19968: jis0212<<14 | 0x4B<<7 | 0x47,\n\t40613 - 19968: jis0208<<14 | 0x52<<7 | 0x2D,\n\t40614 - 19968: jis0208<<14 | 0x26<<7 | 0x5D,\n\t40616 - 19968: jis0212<<14 | 0x4B<<7 | 0x48,\n\t40617 - 19968: jis0208<<14 | 0x52<<7 | 0x2E,\n\t40618 - 19968: jis0208<<14 | 0x52<<7 | 0x30,\n\t40620 - 19968: jis0212<<14 | 0x4B<<7 | 0x49,\n\t40621 - 19968: jis0208<<14 | 0x52<<7 | 0x31,\n\t40622 - 19968: jis0212<<14 | 0x4B<<7 | 0x4A,\n\t40623 - 19968: jis0212<<14 | 0x4B<<7 | 0x4B,\n\t40624 - 19968: jis0212<<14 | 0x4B<<7 | 0x4C,\n\t40627 - 19968: jis0212<<14 | 0x4B<<7 | 0x4D,\n\t40628 - 19968: jis0212<<14 | 0x4B<<7 | 0x4E,\n\t40629 - 19968: jis0212<<14 | 0x4B<<7 | 0x4F,\n\t40632 - 19968: jis0208<<14 | 0x52<<7 | 0x2F,\n\t40633 - 19968: jis0208<<14 | 0x18<<7 | 0x4C,\n\t40634 - 19968: jis0208<<14 | 0x2B<<7 | 0x2C,\n\t40635 - 19968: jis0208<<14 | 0x2A<<7 | 0x42,\n\t40636 - 19968: jis0208<<14 | 0x35<<7 | 0x56,\n\t40638 - 19968: jis0208<<14 | 0x3C<<7 | 0x3F,\n\t40639 - 19968: jis0208<<14 | 0x2A<<7 | 0x5A,\n\t40644 - 19968: jis0208<<14 | 0x11<<7 | 0x0A,\n\t40646 - 19968: jis0212<<14 | 0x4B<<7 | 0x50,\n\t40648 - 19968: jis0212<<14 | 0x4B<<7 | 0x51,\n\t40651 - 19968: jis0212<<14 | 0x4B<<7 | 0x52,\n\t40652 - 19968: jis0208<<14 | 0x52<<7 | 0x33,\n\t40653 - 19968: jis0208<<14 | 0x14<<7 | 0x2F,\n\t40654 - 19968: jis0208<<14 | 0x52<<7 | 0x34,\n\t40655 - 19968: jis0208<<14 | 0x52<<7 | 0x35,\n\t40656 - 19968: jis0208<<14 | 0x52<<7 | 0x36,\n\t40657 - 19968: jis0208<<14 | 0x5B<<7 | 0x4D,\n\t40658 - 19968: jis0208<<14 | 0x18<<7 | 0x54,\n\t40660 - 19968: jis0208<<14 | 0x52<<7 | 0x37,\n\t40661 - 19968: jis0212<<14 | 0x4B<<7 | 0x53,\n\t40664 - 19968: jis0208<<14 | 0x3F<<7 | 0x33,\n\t40665 - 19968: jis0208<<14 | 0x2B<<7 | 0x3A,\n\t40667 - 19968: jis0208<<14 | 0x21<<7 | 0x42,\n\t40668 - 19968: jis0208<<14 | 0x52<<7 | 0x38,\n\t40669 - 19968: jis0208<<14 | 0x52<<7 | 0x3A,\n\t40670 - 19968: jis0208<<14 | 0x52<<7 | 0x39,\n\t40671 - 19968: jis0212<<14 | 0x4B<<7 | 0x54,\n\t40672 - 19968: jis0208<<14 | 0x52<<7 | 0x3B,\n\t40676 - 19968: jis0212<<14 | 0x4B<<7 | 0x55,\n\t40677 - 19968: jis0208<<14 | 0x52<<7 | 0x3C,\n\t40679 - 19968: jis0212<<14 | 0x4B<<7 | 0x56,\n\t40680 - 19968: jis0208<<14 | 0x52<<7 | 0x3D,\n\t40684 - 19968: jis0212<<14 | 0x4B<<7 | 0x57,\n\t40685 - 19968: jis0212<<14 | 0x4B<<7 | 0x58,\n\t40686 - 19968: jis0212<<14 | 0x4B<<7 | 0x59,\n\t40687 - 19968: jis0208<<14 | 0x52<<7 | 0x3E,\n\t40688 - 19968: jis0212<<14 | 0x4B<<7 | 0x5A,\n\t40689 - 19968: jis0212<<14 | 0x4B<<7 | 0x5B,\n\t40690 - 19968: jis0212<<14 | 0x4B<<7 | 0x5C,\n\t40692 - 19968: jis0208<<14 | 0x52<<7 | 0x3F,\n\t40693 - 19968: jis0212<<14 | 0x4B<<7 | 0x5D,\n\t40694 - 19968: jis0208<<14 | 0x52<<7 | 0x40,\n\t40695 - 19968: jis0208<<14 | 0x52<<7 | 0x41,\n\t40696 - 19968: jis0212<<14 | 0x4C<<7 | 0x00,\n\t40697 - 19968: jis0208<<14 | 0x52<<7 | 0x42,\n\t40699 - 19968: jis0208<<14 | 0x52<<7 | 0x43,\n\t40700 - 19968: jis0208<<14 | 0x52<<7 | 0x44,\n\t40701 - 19968: jis0208<<14 | 0x52<<7 | 0x45,\n\t40703 - 19968: jis0212<<14 | 0x4C<<7 | 0x01,\n\t40706 - 19968: jis0212<<14 | 0x4C<<7 | 0x02,\n\t40707 - 19968: jis0212<<14 | 0x4C<<7 | 0x03,\n\t40711 - 19968: jis0208<<14 | 0x52<<7 | 0x46,\n\t40712 - 19968: jis0208<<14 | 0x52<<7 | 0x47,\n\t40713 - 19968: jis0212<<14 | 0x4C<<7 | 0x04,\n\t40718 - 19968: jis0208<<14 | 0x24<<7 | 0x03,\n\t40719 - 19968: jis0212<<14 | 0x4C<<7 | 0x05,\n\t40720 - 19968: jis0212<<14 | 0x4C<<7 | 0x06,\n\t40721 - 19968: jis0212<<14 | 0x4C<<7 | 0x07,\n\t40722 - 19968: jis0212<<14 | 0x4C<<7 | 0x08,\n\t40723 - 19968: jis0208<<14 | 0x17<<7 | 0x3C,\n\t40724 - 19968: jis0212<<14 | 0x4C<<7 | 0x09,\n\t40725 - 19968: jis0208<<14 | 0x52<<7 | 0x49,\n\t40726 - 19968: jis0212<<14 | 0x4C<<7 | 0x0A,\n\t40727 - 19968: jis0212<<14 | 0x4C<<7 | 0x0B,\n\t40729 - 19968: jis0212<<14 | 0x4C<<7 | 0x0C,\n\t40730 - 19968: jis0212<<14 | 0x4C<<7 | 0x0D,\n\t40731 - 19968: jis0212<<14 | 0x4C<<7 | 0x0E,\n\t40735 - 19968: jis0212<<14 | 0x4C<<7 | 0x0F,\n\t40736 - 19968: jis0208<<14 | 0x20<<7 | 0x2C,\n\t40737 - 19968: jis0208<<14 | 0x52<<7 | 0x4A,\n\t40738 - 19968: jis0212<<14 | 0x4C<<7 | 0x10,\n\t40742 - 19968: jis0212<<14 | 0x4C<<7 | 0x11,\n\t40746 - 19968: jis0212<<14 | 0x4C<<7 | 0x12,\n\t40747 - 19968: jis0212<<14 | 0x4C<<7 | 0x13,\n\t40748 - 19968: jis0208<<14 | 0x52<<7 | 0x4B,\n\t40751 - 19968: jis0212<<14 | 0x4C<<7 | 0x14,\n\t40753 - 19968: jis0212<<14 | 0x4C<<7 | 0x15,\n\t40754 - 19968: jis0212<<14 | 0x4C<<7 | 0x16,\n\t40756 - 19968: jis0212<<14 | 0x4C<<7 | 0x17,\n\t40759 - 19968: jis0212<<14 | 0x4C<<7 | 0x18,\n\t40761 - 19968: jis0212<<14 | 0x4C<<7 | 0x19,\n\t40762 - 19968: jis0212<<14 | 0x4C<<7 | 0x1A,\n\t40763 - 19968: jis0208<<14 | 0x28<<7 | 0x00,\n\t40764 - 19968: jis0212<<14 | 0x4C<<7 | 0x1B,\n\t40765 - 19968: jis0212<<14 | 0x4C<<7 | 0x1C,\n\t40766 - 19968: jis0208<<14 | 0x52<<7 | 0x4C,\n\t40767 - 19968: jis0212<<14 | 0x4C<<7 | 0x1D,\n\t40769 - 19968: jis0212<<14 | 0x4C<<7 | 0x1E,\n\t40771 - 19968: jis0212<<14 | 0x4C<<7 | 0x1F,\n\t40772 - 19968: jis0212<<14 | 0x4C<<7 | 0x20,\n\t40773 - 19968: jis0212<<14 | 0x4C<<7 | 0x21,\n\t40774 - 19968: jis0212<<14 | 0x4C<<7 | 0x22,\n\t40775 - 19968: jis0212<<14 | 0x4C<<7 | 0x23,\n\t40778 - 19968: jis0208<<14 | 0x52<<7 | 0x4D,\n\t40779 - 19968: jis0208<<14 | 0x42<<7 | 0x16,\n\t40782 - 19968: jis0208<<14 | 0x4B<<7 | 0x39,\n\t40783 - 19968: jis0208<<14 | 0x4F<<7 | 0x4C,\n\t40786 - 19968: jis0208<<14 | 0x52<<7 | 0x4E,\n\t40787 - 19968: jis0212<<14 | 0x4C<<7 | 0x24,\n\t40788 - 19968: jis0208<<14 | 0x52<<7 | 0x4F,\n\t40789 - 19968: jis0212<<14 | 0x4C<<7 | 0x25,\n\t40790 - 19968: jis0212<<14 | 0x4C<<7 | 0x26,\n\t40791 - 19968: jis0212<<14 | 0x4C<<7 | 0x27,\n\t40792 - 19968: jis0212<<14 | 0x4C<<7 | 0x28,\n\t40794 - 19968: jis0212<<14 | 0x4C<<7 | 0x29,\n\t40797 - 19968: jis0212<<14 | 0x4C<<7 | 0x2A,\n\t40798 - 19968: jis0212<<14 | 0x4C<<7 | 0x2B,\n\t40799 - 19968: jis0208<<14 | 0x52<<7 | 0x51,\n\t40800 - 19968: jis0208<<14 | 0x52<<7 | 0x52,\n\t40801 - 19968: jis0208<<14 | 0x52<<7 | 0x53,\n\t40802 - 19968: jis0208<<14 | 0x2D<<7 | 0x4F,\n\t40803 - 19968: jis0208<<14 | 0x52<<7 | 0x50,\n\t40806 - 19968: jis0208<<14 | 0x52<<7 | 0x54,\n\t40807 - 19968: jis0208<<14 | 0x52<<7 | 0x55,\n\t40808 - 19968: jis0212<<14 | 0x4C<<7 | 0x2C,\n\t40809 - 19968: jis0212<<14 | 0x4C<<7 | 0x2D,\n\t40810 - 19968: jis0208<<14 | 0x52<<7 | 0x57,\n\t40812 - 19968: jis0208<<14 | 0x52<<7 | 0x56,\n\t40813 - 19968: jis0212<<14 | 0x4C<<7 | 0x2E,\n\t40814 - 19968: jis0212<<14 | 0x4C<<7 | 0x2F,\n\t40815 - 19968: jis0212<<14 | 0x4C<<7 | 0x30,\n\t40816 - 19968: jis0212<<14 | 0x4C<<7 | 0x31,\n\t40817 - 19968: jis0212<<14 | 0x4C<<7 | 0x32,\n\t40818 - 19968: jis0208<<14 | 0x52<<7 | 0x59,\n\t40819 - 19968: jis0212<<14 | 0x4C<<7 | 0x33,\n\t40821 - 19968: jis0212<<14 | 0x4C<<7 | 0x34,\n\t40822 - 19968: jis0208<<14 | 0x52<<7 | 0x5A,\n\t40823 - 19968: jis0208<<14 | 0x52<<7 | 0x58,\n\t40826 - 19968: jis0212<<14 | 0x4C<<7 | 0x35,\n\t40829 - 19968: jis0212<<14 | 0x4C<<7 | 0x36,\n\t40845 - 19968: jis0208<<14 | 0x2D<<7 | 0x15,\n\t40847 - 19968: jis0212<<14 | 0x4C<<7 | 0x37,\n\t40848 - 19968: jis0212<<14 | 0x4C<<7 | 0x38,\n\t40849 - 19968: jis0212<<14 | 0x4C<<7 | 0x39,\n\t40850 - 19968: jis0212<<14 | 0x4C<<7 | 0x3A,\n\t40852 - 19968: jis0212<<14 | 0x4C<<7 | 0x3B,\n\t40853 - 19968: jis0208<<14 | 0x52<<7 | 0x5B,\n\t40854 - 19968: jis0212<<14 | 0x4C<<7 | 0x3C,\n\t40855 - 19968: jis0212<<14 | 0x4C<<7 | 0x3D,\n\t40860 - 19968: jis0208<<14 | 0x52<<7 | 0x5C,\n\t40861 - 19968: jis0208<<14 | 0x42<<7 | 0x33,\n\t40862 - 19968: jis0212<<14 | 0x4C<<7 | 0x3E,\n\t40864 - 19968: jis0208<<14 | 0x52<<7 | 0x5D,\n\t40865 - 19968: jis0212<<14 | 0x4C<<7 | 0x3F,\n\t40866 - 19968: jis0212<<14 | 0x4C<<7 | 0x40,\n\t40867 - 19968: jis0212<<14 | 0x4C<<7 | 0x41,\n\t40869 - 19968: jis0212<<14 | 0x4C<<7 | 0x42,\n}\n\nconst encode1Low, encode1High = 8208, 9840\n\nvar encode1 = [...]uint16{\n\t8208 - 8208: jis0208<<14 | 0x00<<7 | 0x1D,\n\t8213 - 8208: jis0208<<14 | 0x00<<7 | 0x1C,\n\t8216 - 8208: jis0208<<14 | 0x00<<7 | 0x25,\n\t8217 - 8208: jis0208<<14 | 0x00<<7 | 0x26,\n\t8220 - 8208: jis0208<<14 | 0x00<<7 | 0x27,\n\t8221 - 8208: jis0208<<14 | 0x00<<7 | 0x28,\n\t8224 - 8208: jis0208<<14 | 0x01<<7 | 0x56,\n\t8225 - 8208: jis0208<<14 | 0x01<<7 | 0x57,\n\t8229 - 8208: jis0208<<14 | 0x00<<7 | 0x24,\n\t8230 - 8208: jis0208<<14 | 0x00<<7 | 0x23,\n\t8240 - 8208: jis0208<<14 | 0x01<<7 | 0x52,\n\t8242 - 8208: jis0208<<14 | 0x00<<7 | 0x4B,\n\t8243 - 8208: jis0208<<14 | 0x00<<7 | 0x4C,\n\t8251 - 8208: jis0208<<14 | 0x01<<7 | 0x07,\n\t8451 - 8208: jis0208<<14 | 0x00<<7 | 0x4D,\n\t8470 - 8208: jis0208<<14 | 0x0C<<7 | 0x41,\n\t8481 - 8208: jis0208<<14 | 0x0C<<7 | 0x43,\n\t8482 - 8208: jis0212<<14 | 0x01<<7 | 0x4E,\n\t8491 - 8208: jis0208<<14 | 0x01<<7 | 0x51,\n\t8544 - 8208: jis0208<<14 | 0x0C<<7 | 0x14,\n\t8545 - 8208: jis0208<<14 | 0x0C<<7 | 0x15,\n\t8546 - 8208: jis0208<<14 | 0x0C<<7 | 0x16,\n\t8547 - 8208: jis0208<<14 | 0x0C<<7 | 0x17,\n\t8548 - 8208: jis0208<<14 | 0x0C<<7 | 0x18,\n\t8549 - 8208: jis0208<<14 | 0x0C<<7 | 0x19,\n\t8550 - 8208: jis0208<<14 | 0x0C<<7 | 0x1A,\n\t8551 - 8208: jis0208<<14 | 0x0C<<7 | 0x1B,\n\t8552 - 8208: jis0208<<14 | 0x0C<<7 | 0x1C,\n\t8553 - 8208: jis0208<<14 | 0x0C<<7 | 0x1D,\n\t8560 - 8208: jis0208<<14 | 0x5B<<7 | 0x50,\n\t8561 - 8208: jis0208<<14 | 0x5B<<7 | 0x51,\n\t8562 - 8208: jis0208<<14 | 0x5B<<7 | 0x52,\n\t8563 - 8208: jis0208<<14 | 0x5B<<7 | 0x53,\n\t8564 - 8208: jis0208<<14 | 0x5B<<7 | 0x54,\n\t8565 - 8208: jis0208<<14 | 0x5B<<7 | 0x55,\n\t8566 - 8208: jis0208<<14 | 0x5B<<7 | 0x56,\n\t8567 - 8208: jis0208<<14 | 0x5B<<7 | 0x57,\n\t8568 - 8208: jis0208<<14 | 0x5B<<7 | 0x58,\n\t8569 - 8208: jis0208<<14 | 0x5B<<7 | 0x59,\n\t8592 - 8208: jis0208<<14 | 0x01<<7 | 0x0A,\n\t8593 - 8208: jis0208<<14 | 0x01<<7 | 0x0B,\n\t8594 - 8208: jis0208<<14 | 0x01<<7 | 0x09,\n\t8595 - 8208: jis0208<<14 | 0x01<<7 | 0x0C,\n\t8658 - 8208: jis0208<<14 | 0x01<<7 | 0x2C,\n\t8660 - 8208: jis0208<<14 | 0x01<<7 | 0x2D,\n\t8704 - 8208: jis0208<<14 | 0x01<<7 | 0x2E,\n\t8706 - 8208: jis0208<<14 | 0x01<<7 | 0x3E,\n\t8707 - 8208: jis0208<<14 | 0x01<<7 | 0x2F,\n\t8711 - 8208: jis0208<<14 | 0x01<<7 | 0x3F,\n\t8712 - 8208: jis0208<<14 | 0x01<<7 | 0x19,\n\t8715 - 8208: jis0208<<14 | 0x01<<7 | 0x1A,\n\t8721 - 8208: jis0208<<14 | 0x0C<<7 | 0x53,\n\t8730 - 8208: jis0208<<14 | 0x01<<7 | 0x44,\n\t8733 - 8208: jis0208<<14 | 0x01<<7 | 0x46,\n\t8734 - 8208: jis0208<<14 | 0x00<<7 | 0x46,\n\t8735 - 8208: jis0208<<14 | 0x0C<<7 | 0x57,\n\t8736 - 8208: jis0208<<14 | 0x01<<7 | 0x3B,\n\t8741 - 8208: jis0208<<14 | 0x00<<7 | 0x21,\n\t8743 - 8208: jis0208<<14 | 0x01<<7 | 0x29,\n\t8744 - 8208: jis0208<<14 | 0x01<<7 | 0x2A,\n\t8745 - 8208: jis0208<<14 | 0x01<<7 | 0x20,\n\t8746 - 8208: jis0208<<14 | 0x01<<7 | 0x1F,\n\t8747 - 8208: jis0208<<14 | 0x01<<7 | 0x48,\n\t8748 - 8208: jis0208<<14 | 0x01<<7 | 0x49,\n\t8750 - 8208: jis0208<<14 | 0x0C<<7 | 0x52,\n\t8756 - 8208: jis0208<<14 | 0x00<<7 | 0x47,\n\t8757 - 8208: jis0208<<14 | 0x01<<7 | 0x47,\n\t8765 - 8208: jis0208<<14 | 0x01<<7 | 0x45,\n\t8786 - 8208: jis0208<<14 | 0x01<<7 | 0x41,\n\t8800 - 8208: jis0208<<14 | 0x00<<7 | 0x41,\n\t8801 - 8208: jis0208<<14 | 0x01<<7 | 0x40,\n\t8806 - 8208: jis0208<<14 | 0x00<<7 | 0x44,\n\t8807 - 8208: jis0208<<14 | 0x00<<7 | 0x45,\n\t8810 - 8208: jis0208<<14 | 0x01<<7 | 0x42,\n\t8811 - 8208: jis0208<<14 | 0x01<<7 | 0x43,\n\t8834 - 8208: jis0208<<14 | 0x01<<7 | 0x1D,\n\t8835 - 8208: jis0208<<14 | 0x01<<7 | 0x1E,\n\t8838 - 8208: jis0208<<14 | 0x01<<7 | 0x1B,\n\t8839 - 8208: jis0208<<14 | 0x01<<7 | 0x1C,\n\t8869 - 8208: jis0208<<14 | 0x01<<7 | 0x3C,\n\t8895 - 8208: jis0208<<14 | 0x0C<<7 | 0x58,\n\t8978 - 8208: jis0208<<14 | 0x01<<7 | 0x3D,\n\t9312 - 8208: jis0208<<14 | 0x0C<<7 | 0x00,\n\t9313 - 8208: jis0208<<14 | 0x0C<<7 | 0x01,\n\t9314 - 8208: jis0208<<14 | 0x0C<<7 | 0x02,\n\t9315 - 8208: jis0208<<14 | 0x0C<<7 | 0x03,\n\t9316 - 8208: jis0208<<14 | 0x0C<<7 | 0x04,\n\t9317 - 8208: jis0208<<14 | 0x0C<<7 | 0x05,\n\t9318 - 8208: jis0208<<14 | 0x0C<<7 | 0x06,\n\t9319 - 8208: jis0208<<14 | 0x0C<<7 | 0x07,\n\t9320 - 8208: jis0208<<14 | 0x0C<<7 | 0x08,\n\t9321 - 8208: jis0208<<14 | 0x0C<<7 | 0x09,\n\t9322 - 8208: jis0208<<14 | 0x0C<<7 | 0x0A,\n\t9323 - 8208: jis0208<<14 | 0x0C<<7 | 0x0B,\n\t9324 - 8208: jis0208<<14 | 0x0C<<7 | 0x0C,\n\t9325 - 8208: jis0208<<14 | 0x0C<<7 | 0x0D,\n\t9326 - 8208: jis0208<<14 | 0x0C<<7 | 0x0E,\n\t9327 - 8208: jis0208<<14 | 0x0C<<7 | 0x0F,\n\t9328 - 8208: jis0208<<14 | 0x0C<<7 | 0x10,\n\t9329 - 8208: jis0208<<14 | 0x0C<<7 | 0x11,\n\t9330 - 8208: jis0208<<14 | 0x0C<<7 | 0x12,\n\t9331 - 8208: jis0208<<14 | 0x0C<<7 | 0x13,\n\t9472 - 8208: jis0208<<14 | 0x07<<7 | 0x00,\n\t9473 - 8208: jis0208<<14 | 0x07<<7 | 0x0B,\n\t9474 - 8208: jis0208<<14 | 0x07<<7 | 0x01,\n\t9475 - 8208: jis0208<<14 | 0x07<<7 | 0x0C,\n\t9484 - 8208: jis0208<<14 | 0x07<<7 | 0x02,\n\t9487 - 8208: jis0208<<14 | 0x07<<7 | 0x0D,\n\t9488 - 8208: jis0208<<14 | 0x07<<7 | 0x03,\n\t9491 - 8208: jis0208<<14 | 0x07<<7 | 0x0E,\n\t9492 - 8208: jis0208<<14 | 0x07<<7 | 0x05,\n\t9495 - 8208: jis0208<<14 | 0x07<<7 | 0x10,\n\t9496 - 8208: jis0208<<14 | 0x07<<7 | 0x04,\n\t9499 - 8208: jis0208<<14 | 0x07<<7 | 0x0F,\n\t9500 - 8208: jis0208<<14 | 0x07<<7 | 0x06,\n\t9501 - 8208: jis0208<<14 | 0x07<<7 | 0x1B,\n\t9504 - 8208: jis0208<<14 | 0x07<<7 | 0x16,\n\t9507 - 8208: jis0208<<14 | 0x07<<7 | 0x11,\n\t9508 - 8208: jis0208<<14 | 0x07<<7 | 0x08,\n\t9509 - 8208: jis0208<<14 | 0x07<<7 | 0x1D,\n\t9512 - 8208: jis0208<<14 | 0x07<<7 | 0x18,\n\t9515 - 8208: jis0208<<14 | 0x07<<7 | 0x13,\n\t9516 - 8208: jis0208<<14 | 0x07<<7 | 0x07,\n\t9519 - 8208: jis0208<<14 | 0x07<<7 | 0x17,\n\t9520 - 8208: jis0208<<14 | 0x07<<7 | 0x1C,\n\t9523 - 8208: jis0208<<14 | 0x07<<7 | 0x12,\n\t9524 - 8208: jis0208<<14 | 0x07<<7 | 0x09,\n\t9527 - 8208: jis0208<<14 | 0x07<<7 | 0x19,\n\t9528 - 8208: jis0208<<14 | 0x07<<7 | 0x1E,\n\t9531 - 8208: jis0208<<14 | 0x07<<7 | 0x14,\n\t9532 - 8208: jis0208<<14 | 0x07<<7 | 0x0A,\n\t9535 - 8208: jis0208<<14 | 0x07<<7 | 0x1A,\n\t9538 - 8208: jis0208<<14 | 0x07<<7 | 0x1F,\n\t9547 - 8208: jis0208<<14 | 0x07<<7 | 0x15,\n\t9632 - 8208: jis0208<<14 | 0x01<<7 | 0x02,\n\t9633 - 8208: jis0208<<14 | 0x01<<7 | 0x01,\n\t9650 - 8208: jis0208<<14 | 0x01<<7 | 0x04,\n\t9651 - 8208: jis0208<<14 | 0x01<<7 | 0x03,\n\t9660 - 8208: jis0208<<14 | 0x01<<7 | 0x06,\n\t9661 - 8208: jis0208<<14 | 0x01<<7 | 0x05,\n\t9670 - 8208: jis0208<<14 | 0x01<<7 | 0x00,\n\t9671 - 8208: jis0208<<14 | 0x00<<7 | 0x5D,\n\t9675 - 8208: jis0208<<14 | 0x00<<7 | 0x5A,\n\t9678 - 8208: jis0208<<14 | 0x00<<7 | 0x5C,\n\t9679 - 8208: jis0208<<14 | 0x00<<7 | 0x5B,\n\t9711 - 8208: jis0208<<14 | 0x01<<7 | 0x5D,\n\t9733 - 8208: jis0208<<14 | 0x00<<7 | 0x59,\n\t9734 - 8208: jis0208<<14 | 0x00<<7 | 0x58,\n\t9792 - 8208: jis0208<<14 | 0x00<<7 | 0x49,\n\t9794 - 8208: jis0208<<14 | 0x00<<7 | 0x48,\n\t9834 - 8208: jis0208<<14 | 0x01<<7 | 0x55,\n\t9837 - 8208: jis0208<<14 | 0x01<<7 | 0x54,\n\t9839 - 8208: jis0208<<14 | 0x01<<7 | 0x53,\n}\n\nconst encode2Low, encode2High = 12288, 13262\n\nvar encode2 = [...]uint16{\n\t12288 - 12288: jis0208<<14 | 0x00<<7 | 0x00,\n\t12289 - 12288: jis0208<<14 | 0x00<<7 | 0x01,\n\t12290 - 12288: jis0208<<14 | 0x00<<7 | 0x02,\n\t12291 - 12288: jis0208<<14 | 0x00<<7 | 0x16,\n\t12293 - 12288: jis0208<<14 | 0x00<<7 | 0x18,\n\t12294 - 12288: jis0208<<14 | 0x00<<7 | 0x19,\n\t12295 - 12288: jis0208<<14 | 0x00<<7 | 0x1A,\n\t12296 - 12288: jis0208<<14 | 0x00<<7 | 0x31,\n\t12297 - 12288: jis0208<<14 | 0x00<<7 | 0x32,\n\t12298 - 12288: jis0208<<14 | 0x00<<7 | 0x33,\n\t12299 - 12288: jis0208<<14 | 0x00<<7 | 0x34,\n\t12300 - 12288: jis0208<<14 | 0x00<<7 | 0x35,\n\t12301 - 12288: jis0208<<14 | 0x00<<7 | 0x36,\n\t12302 - 12288: jis0208<<14 | 0x00<<7 | 0x37,\n\t12303 - 12288: jis0208<<14 | 0x00<<7 | 0x38,\n\t12304 - 12288: jis0208<<14 | 0x00<<7 | 0x39,\n\t12305 - 12288: jis0208<<14 | 0x00<<7 | 0x3A,\n\t12306 - 12288: jis0208<<14 | 0x01<<7 | 0x08,\n\t12307 - 12288: jis0208<<14 | 0x01<<7 | 0x0D,\n\t12308 - 12288: jis0208<<14 | 0x00<<7 | 0x2B,\n\t12309 - 12288: jis0208<<14 | 0x00<<7 | 0x2C,\n\t12317 - 12288: jis0208<<14 | 0x0C<<7 | 0x3F,\n\t12319 - 12288: jis0208<<14 | 0x0C<<7 | 0x40,\n\t12353 - 12288: jis0208<<14 | 0x03<<7 | 0x00,\n\t12354 - 12288: jis0208<<14 | 0x03<<7 | 0x01,\n\t12355 - 12288: jis0208<<14 | 0x03<<7 | 0x02,\n\t12356 - 12288: jis0208<<14 | 0x03<<7 | 0x03,\n\t12357 - 12288: jis0208<<14 | 0x03<<7 | 0x04,\n\t12358 - 12288: jis0208<<14 | 0x03<<7 | 0x05,\n\t12359 - 12288: jis0208<<14 | 0x03<<7 | 0x06,\n\t12360 - 12288: jis0208<<14 | 0x03<<7 | 0x07,\n\t12361 - 12288: jis0208<<14 | 0x03<<7 | 0x08,\n\t12362 - 12288: jis0208<<14 | 0x03<<7 | 0x09,\n\t12363 - 12288: jis0208<<14 | 0x03<<7 | 0x0A,\n\t12364 - 12288: jis0208<<14 | 0x03<<7 | 0x0B,\n\t12365 - 12288: jis0208<<14 | 0x03<<7 | 0x0C,\n\t12366 - 12288: jis0208<<14 | 0x03<<7 | 0x0D,\n\t12367 - 12288: jis0208<<14 | 0x03<<7 | 0x0E,\n\t12368 - 12288: jis0208<<14 | 0x03<<7 | 0x0F,\n\t12369 - 12288: jis0208<<14 | 0x03<<7 | 0x10,\n\t12370 - 12288: jis0208<<14 | 0x03<<7 | 0x11,\n\t12371 - 12288: jis0208<<14 | 0x03<<7 | 0x12,\n\t12372 - 12288: jis0208<<14 | 0x03<<7 | 0x13,\n\t12373 - 12288: jis0208<<14 | 0x03<<7 | 0x14,\n\t12374 - 12288: jis0208<<14 | 0x03<<7 | 0x15,\n\t12375 - 12288: jis0208<<14 | 0x03<<7 | 0x16,\n\t12376 - 12288: jis0208<<14 | 0x03<<7 | 0x17,\n\t12377 - 12288: jis0208<<14 | 0x03<<7 | 0x18,\n\t12378 - 12288: jis0208<<14 | 0x03<<7 | 0x19,\n\t12379 - 12288: jis0208<<14 | 0x03<<7 | 0x1A,\n\t12380 - 12288: jis0208<<14 | 0x03<<7 | 0x1B,\n\t12381 - 12288: jis0208<<14 | 0x03<<7 | 0x1C,\n\t12382 - 12288: jis0208<<14 | 0x03<<7 | 0x1D,\n\t12383 - 12288: jis0208<<14 | 0x03<<7 | 0x1E,\n\t12384 - 12288: jis0208<<14 | 0x03<<7 | 0x1F,\n\t12385 - 12288: jis0208<<14 | 0x03<<7 | 0x20,\n\t12386 - 12288: jis0208<<14 | 0x03<<7 | 0x21,\n\t12387 - 12288: jis0208<<14 | 0x03<<7 | 0x22,\n\t12388 - 12288: jis0208<<14 | 0x03<<7 | 0x23,\n\t12389 - 12288: jis0208<<14 | 0x03<<7 | 0x24,\n\t12390 - 12288: jis0208<<14 | 0x03<<7 | 0x25,\n\t12391 - 12288: jis0208<<14 | 0x03<<7 | 0x26,\n\t12392 - 12288: jis0208<<14 | 0x03<<7 | 0x27,\n\t12393 - 12288: jis0208<<14 | 0x03<<7 | 0x28,\n\t12394 - 12288: jis0208<<14 | 0x03<<7 | 0x29,\n\t12395 - 12288: jis0208<<14 | 0x03<<7 | 0x2A,\n\t12396 - 12288: jis0208<<14 | 0x03<<7 | 0x2B,\n\t12397 - 12288: jis0208<<14 | 0x03<<7 | 0x2C,\n\t12398 - 12288: jis0208<<14 | 0x03<<7 | 0x2D,\n\t12399 - 12288: jis0208<<14 | 0x03<<7 | 0x2E,\n\t12400 - 12288: jis0208<<14 | 0x03<<7 | 0x2F,\n\t12401 - 12288: jis0208<<14 | 0x03<<7 | 0x30,\n\t12402 - 12288: jis0208<<14 | 0x03<<7 | 0x31,\n\t12403 - 12288: jis0208<<14 | 0x03<<7 | 0x32,\n\t12404 - 12288: jis0208<<14 | 0x03<<7 | 0x33,\n\t12405 - 12288: jis0208<<14 | 0x03<<7 | 0x34,\n\t12406 - 12288: jis0208<<14 | 0x03<<7 | 0x35,\n\t12407 - 12288: jis0208<<14 | 0x03<<7 | 0x36,\n\t12408 - 12288: jis0208<<14 | 0x03<<7 | 0x37,\n\t12409 - 12288: jis0208<<14 | 0x03<<7 | 0x38,\n\t12410 - 12288: jis0208<<14 | 0x03<<7 | 0x39,\n\t12411 - 12288: jis0208<<14 | 0x03<<7 | 0x3A,\n\t12412 - 12288: jis0208<<14 | 0x03<<7 | 0x3B,\n\t12413 - 12288: jis0208<<14 | 0x03<<7 | 0x3C,\n\t12414 - 12288: jis0208<<14 | 0x03<<7 | 0x3D,\n\t12415 - 12288: jis0208<<14 | 0x03<<7 | 0x3E,\n\t12416 - 12288: jis0208<<14 | 0x03<<7 | 0x3F,\n\t12417 - 12288: jis0208<<14 | 0x03<<7 | 0x40,\n\t12418 - 12288: jis0208<<14 | 0x03<<7 | 0x41,\n\t12419 - 12288: jis0208<<14 | 0x03<<7 | 0x42,\n\t12420 - 12288: jis0208<<14 | 0x03<<7 | 0x43,\n\t12421 - 12288: jis0208<<14 | 0x03<<7 | 0x44,\n\t12422 - 12288: jis0208<<14 | 0x03<<7 | 0x45,\n\t12423 - 12288: jis0208<<14 | 0x03<<7 | 0x46,\n\t12424 - 12288: jis0208<<14 | 0x03<<7 | 0x47,\n\t12425 - 12288: jis0208<<14 | 0x03<<7 | 0x48,\n\t12426 - 12288: jis0208<<14 | 0x03<<7 | 0x49,\n\t12427 - 12288: jis0208<<14 | 0x03<<7 | 0x4A,\n\t12428 - 12288: jis0208<<14 | 0x03<<7 | 0x4B,\n\t12429 - 12288: jis0208<<14 | 0x03<<7 | 0x4C,\n\t12430 - 12288: jis0208<<14 | 0x03<<7 | 0x4D,\n\t12431 - 12288: jis0208<<14 | 0x03<<7 | 0x4E,\n\t12432 - 12288: jis0208<<14 | 0x03<<7 | 0x4F,\n\t12433 - 12288: jis0208<<14 | 0x03<<7 | 0x50,\n\t12434 - 12288: jis0208<<14 | 0x03<<7 | 0x51,\n\t12435 - 12288: jis0208<<14 | 0x03<<7 | 0x52,\n\t12443 - 12288: jis0208<<14 | 0x00<<7 | 0x0A,\n\t12444 - 12288: jis0208<<14 | 0x00<<7 | 0x0B,\n\t12445 - 12288: jis0208<<14 | 0x00<<7 | 0x14,\n\t12446 - 12288: jis0208<<14 | 0x00<<7 | 0x15,\n\t12449 - 12288: jis0208<<14 | 0x04<<7 | 0x00,\n\t12450 - 12288: jis0208<<14 | 0x04<<7 | 0x01,\n\t12451 - 12288: jis0208<<14 | 0x04<<7 | 0x02,\n\t12452 - 12288: jis0208<<14 | 0x04<<7 | 0x03,\n\t12453 - 12288: jis0208<<14 | 0x04<<7 | 0x04,\n\t12454 - 12288: jis0208<<14 | 0x04<<7 | 0x05,\n\t12455 - 12288: jis0208<<14 | 0x04<<7 | 0x06,\n\t12456 - 12288: jis0208<<14 | 0x04<<7 | 0x07,\n\t12457 - 12288: jis0208<<14 | 0x04<<7 | 0x08,\n\t12458 - 12288: jis0208<<14 | 0x04<<7 | 0x09,\n\t12459 - 12288: jis0208<<14 | 0x04<<7 | 0x0A,\n\t12460 - 12288: jis0208<<14 | 0x04<<7 | 0x0B,\n\t12461 - 12288: jis0208<<14 | 0x04<<7 | 0x0C,\n\t12462 - 12288: jis0208<<14 | 0x04<<7 | 0x0D,\n\t12463 - 12288: jis0208<<14 | 0x04<<7 | 0x0E,\n\t12464 - 12288: jis0208<<14 | 0x04<<7 | 0x0F,\n\t12465 - 12288: jis0208<<14 | 0x04<<7 | 0x10,\n\t12466 - 12288: jis0208<<14 | 0x04<<7 | 0x11,\n\t12467 - 12288: jis0208<<14 | 0x04<<7 | 0x12,\n\t12468 - 12288: jis0208<<14 | 0x04<<7 | 0x13,\n\t12469 - 12288: jis0208<<14 | 0x04<<7 | 0x14,\n\t12470 - 12288: jis0208<<14 | 0x04<<7 | 0x15,\n\t12471 - 12288: jis0208<<14 | 0x04<<7 | 0x16,\n\t12472 - 12288: jis0208<<14 | 0x04<<7 | 0x17,\n\t12473 - 12288: jis0208<<14 | 0x04<<7 | 0x18,\n\t12474 - 12288: jis0208<<14 | 0x04<<7 | 0x19,\n\t12475 - 12288: jis0208<<14 | 0x04<<7 | 0x1A,\n\t12476 - 12288: jis0208<<14 | 0x04<<7 | 0x1B,\n\t12477 - 12288: jis0208<<14 | 0x04<<7 | 0x1C,\n\t12478 - 12288: jis0208<<14 | 0x04<<7 | 0x1D,\n\t12479 - 12288: jis0208<<14 | 0x04<<7 | 0x1E,\n\t12480 - 12288: jis0208<<14 | 0x04<<7 | 0x1F,\n\t12481 - 12288: jis0208<<14 | 0x04<<7 | 0x20,\n\t12482 - 12288: jis0208<<14 | 0x04<<7 | 0x21,\n\t12483 - 12288: jis0208<<14 | 0x04<<7 | 0x22,\n\t12484 - 12288: jis0208<<14 | 0x04<<7 | 0x23,\n\t12485 - 12288: jis0208<<14 | 0x04<<7 | 0x24,\n\t12486 - 12288: jis0208<<14 | 0x04<<7 | 0x25,\n\t12487 - 12288: jis0208<<14 | 0x04<<7 | 0x26,\n\t12488 - 12288: jis0208<<14 | 0x04<<7 | 0x27,\n\t12489 - 12288: jis0208<<14 | 0x04<<7 | 0x28,\n\t12490 - 12288: jis0208<<14 | 0x04<<7 | 0x29,\n\t12491 - 12288: jis0208<<14 | 0x04<<7 | 0x2A,\n\t12492 - 12288: jis0208<<14 | 0x04<<7 | 0x2B,\n\t12493 - 12288: jis0208<<14 | 0x04<<7 | 0x2C,\n\t12494 - 12288: jis0208<<14 | 0x04<<7 | 0x2D,\n\t12495 - 12288: jis0208<<14 | 0x04<<7 | 0x2E,\n\t12496 - 12288: jis0208<<14 | 0x04<<7 | 0x2F,\n\t12497 - 12288: jis0208<<14 | 0x04<<7 | 0x30,\n\t12498 - 12288: jis0208<<14 | 0x04<<7 | 0x31,\n\t12499 - 12288: jis0208<<14 | 0x04<<7 | 0x32,\n\t12500 - 12288: jis0208<<14 | 0x04<<7 | 0x33,\n\t12501 - 12288: jis0208<<14 | 0x04<<7 | 0x34,\n\t12502 - 12288: jis0208<<14 | 0x04<<7 | 0x35,\n\t12503 - 12288: jis0208<<14 | 0x04<<7 | 0x36,\n\t12504 - 12288: jis0208<<14 | 0x04<<7 | 0x37,\n\t12505 - 12288: jis0208<<14 | 0x04<<7 | 0x38,\n\t12506 - 12288: jis0208<<14 | 0x04<<7 | 0x39,\n\t12507 - 12288: jis0208<<14 | 0x04<<7 | 0x3A,\n\t12508 - 12288: jis0208<<14 | 0x04<<7 | 0x3B,\n\t12509 - 12288: jis0208<<14 | 0x04<<7 | 0x3C,\n\t12510 - 12288: jis0208<<14 | 0x04<<7 | 0x3D,\n\t12511 - 12288: jis0208<<14 | 0x04<<7 | 0x3E,\n\t12512 - 12288: jis0208<<14 | 0x04<<7 | 0x3F,\n\t12513 - 12288: jis0208<<14 | 0x04<<7 | 0x40,\n\t12514 - 12288: jis0208<<14 | 0x04<<7 | 0x41,\n\t12515 - 12288: jis0208<<14 | 0x04<<7 | 0x42,\n\t12516 - 12288: jis0208<<14 | 0x04<<7 | 0x43,\n\t12517 - 12288: jis0208<<14 | 0x04<<7 | 0x44,\n\t12518 - 12288: jis0208<<14 | 0x04<<7 | 0x45,\n\t12519 - 12288: jis0208<<14 | 0x04<<7 | 0x46,\n\t12520 - 12288: jis0208<<14 | 0x04<<7 | 0x47,\n\t12521 - 12288: jis0208<<14 | 0x04<<7 | 0x48,\n\t12522 - 12288: jis0208<<14 | 0x04<<7 | 0x49,\n\t12523 - 12288: jis0208<<14 | 0x04<<7 | 0x4A,\n\t12524 - 12288: jis0208<<14 | 0x04<<7 | 0x4B,\n\t12525 - 12288: jis0208<<14 | 0x04<<7 | 0x4C,\n\t12526 - 12288: jis0208<<14 | 0x04<<7 | 0x4D,\n\t12527 - 12288: jis0208<<14 | 0x04<<7 | 0x4E,\n\t12528 - 12288: jis0208<<14 | 0x04<<7 | 0x4F,\n\t12529 - 12288: jis0208<<14 | 0x04<<7 | 0x50,\n\t12530 - 12288: jis0208<<14 | 0x04<<7 | 0x51,\n\t12531 - 12288: jis0208<<14 | 0x04<<7 | 0x52,\n\t12532 - 12288: jis0208<<14 | 0x04<<7 | 0x53,\n\t12533 - 12288: jis0208<<14 | 0x04<<7 | 0x54,\n\t12534 - 12288: jis0208<<14 | 0x04<<7 | 0x55,\n\t12539 - 12288: jis0208<<14 | 0x00<<7 | 0x05,\n\t12540 - 12288: jis0208<<14 | 0x00<<7 | 0x1B,\n\t12541 - 12288: jis0208<<14 | 0x00<<7 | 0x12,\n\t12542 - 12288: jis0208<<14 | 0x00<<7 | 0x13,\n\t12849 - 12288: jis0208<<14 | 0x0C<<7 | 0x49,\n\t12850 - 12288: jis0208<<14 | 0x0C<<7 | 0x4A,\n\t12857 - 12288: jis0208<<14 | 0x0C<<7 | 0x4B,\n\t12964 - 12288: jis0208<<14 | 0x0C<<7 | 0x44,\n\t12965 - 12288: jis0208<<14 | 0x0C<<7 | 0x45,\n\t12966 - 12288: jis0208<<14 | 0x0C<<7 | 0x46,\n\t12967 - 12288: jis0208<<14 | 0x0C<<7 | 0x47,\n\t12968 - 12288: jis0208<<14 | 0x0C<<7 | 0x48,\n\t13059 - 12288: jis0208<<14 | 0x0C<<7 | 0x25,\n\t13069 - 12288: jis0208<<14 | 0x0C<<7 | 0x29,\n\t13076 - 12288: jis0208<<14 | 0x0C<<7 | 0x20,\n\t13080 - 12288: jis0208<<14 | 0x0C<<7 | 0x23,\n\t13090 - 12288: jis0208<<14 | 0x0C<<7 | 0x21,\n\t13091 - 12288: jis0208<<14 | 0x0C<<7 | 0x2B,\n\t13094 - 12288: jis0208<<14 | 0x0C<<7 | 0x2A,\n\t13095 - 12288: jis0208<<14 | 0x0C<<7 | 0x24,\n\t13099 - 12288: jis0208<<14 | 0x0C<<7 | 0x2C,\n\t13110 - 12288: jis0208<<14 | 0x0C<<7 | 0x26,\n\t13115 - 12288: jis0208<<14 | 0x0C<<7 | 0x2E,\n\t13129 - 12288: jis0208<<14 | 0x0C<<7 | 0x1F,\n\t13130 - 12288: jis0208<<14 | 0x0C<<7 | 0x2D,\n\t13133 - 12288: jis0208<<14 | 0x0C<<7 | 0x22,\n\t13137 - 12288: jis0208<<14 | 0x0C<<7 | 0x27,\n\t13143 - 12288: jis0208<<14 | 0x0C<<7 | 0x28,\n\t13179 - 12288: jis0208<<14 | 0x0C<<7 | 0x3E,\n\t13180 - 12288: jis0208<<14 | 0x0C<<7 | 0x4E,\n\t13181 - 12288: jis0208<<14 | 0x0C<<7 | 0x4D,\n\t13182 - 12288: jis0208<<14 | 0x0C<<7 | 0x4C,\n\t13198 - 12288: jis0208<<14 | 0x0C<<7 | 0x32,\n\t13199 - 12288: jis0208<<14 | 0x0C<<7 | 0x33,\n\t13212 - 12288: jis0208<<14 | 0x0C<<7 | 0x2F,\n\t13213 - 12288: jis0208<<14 | 0x0C<<7 | 0x30,\n\t13214 - 12288: jis0208<<14 | 0x0C<<7 | 0x31,\n\t13217 - 12288: jis0208<<14 | 0x0C<<7 | 0x35,\n\t13252 - 12288: jis0208<<14 | 0x0C<<7 | 0x34,\n\t13261 - 12288: jis0208<<14 | 0x0C<<7 | 0x42,\n}\n\nconst encode3Low, encode3High = 161, 1120\n\nvar encode3 = [...]uint16{\n\t161 - 161:  jis0212<<14 | 0x01<<7 | 0x21,\n\t164 - 161:  jis0212<<14 | 0x01<<7 | 0x4F,\n\t166 - 161:  jis0212<<14 | 0x01<<7 | 0x22,\n\t167 - 161:  jis0208<<14 | 0x00<<7 | 0x57,\n\t168 - 161:  jis0208<<14 | 0x00<<7 | 0x0E,\n\t169 - 161:  jis0212<<14 | 0x01<<7 | 0x4C,\n\t170 - 161:  jis0212<<14 | 0x01<<7 | 0x4B,\n\t174 - 161:  jis0212<<14 | 0x01<<7 | 0x4D,\n\t175 - 161:  jis0212<<14 | 0x01<<7 | 0x13,\n\t176 - 161:  jis0208<<14 | 0x00<<7 | 0x4A,\n\t177 - 161:  jis0208<<14 | 0x00<<7 | 0x3D,\n\t180 - 161:  jis0208<<14 | 0x00<<7 | 0x0C,\n\t182 - 161:  jis0208<<14 | 0x01<<7 | 0x58,\n\t184 - 161:  jis0212<<14 | 0x01<<7 | 0x10,\n\t186 - 161:  jis0212<<14 | 0x01<<7 | 0x4A,\n\t191 - 161:  jis0212<<14 | 0x01<<7 | 0x23,\n\t192 - 161:  jis0212<<14 | 0x09<<7 | 0x01,\n\t193 - 161:  jis0212<<14 | 0x09<<7 | 0x00,\n\t194 - 161:  jis0212<<14 | 0x09<<7 | 0x03,\n\t195 - 161:  jis0212<<14 | 0x09<<7 | 0x09,\n\t196 - 161:  jis0212<<14 | 0x09<<7 | 0x02,\n\t197 - 161:  jis0212<<14 | 0x09<<7 | 0x08,\n\t198 - 161:  jis0212<<14 | 0x08<<7 | 0x00,\n\t199 - 161:  jis0212<<14 | 0x09<<7 | 0x0D,\n\t200 - 161:  jis0212<<14 | 0x09<<7 | 0x11,\n\t201 - 161:  jis0212<<14 | 0x09<<7 | 0x10,\n\t202 - 161:  jis0212<<14 | 0x09<<7 | 0x13,\n\t203 - 161:  jis0212<<14 | 0x09<<7 | 0x12,\n\t204 - 161:  jis0212<<14 | 0x09<<7 | 0x1F,\n\t205 - 161:  jis0212<<14 | 0x09<<7 | 0x1E,\n\t206 - 161:  jis0212<<14 | 0x09<<7 | 0x21,\n\t207 - 161:  jis0212<<14 | 0x09<<7 | 0x20,\n\t209 - 161:  jis0212<<14 | 0x09<<7 | 0x2F,\n\t210 - 161:  jis0212<<14 | 0x09<<7 | 0x31,\n\t211 - 161:  jis0212<<14 | 0x09<<7 | 0x30,\n\t212 - 161:  jis0212<<14 | 0x09<<7 | 0x33,\n\t213 - 161:  jis0212<<14 | 0x09<<7 | 0x37,\n\t214 - 161:  jis0212<<14 | 0x09<<7 | 0x32,\n\t215 - 161:  jis0208<<14 | 0x00<<7 | 0x3E,\n\t216 - 161:  jis0212<<14 | 0x08<<7 | 0x0B,\n\t217 - 161:  jis0212<<14 | 0x09<<7 | 0x42,\n\t218 - 161:  jis0212<<14 | 0x09<<7 | 0x41,\n\t219 - 161:  jis0212<<14 | 0x09<<7 | 0x44,\n\t220 - 161:  jis0212<<14 | 0x09<<7 | 0x43,\n\t221 - 161:  jis0212<<14 | 0x09<<7 | 0x51,\n\t222 - 161:  jis0212<<14 | 0x08<<7 | 0x0F,\n\t223 - 161:  jis0212<<14 | 0x08<<7 | 0x2D,\n\t224 - 161:  jis0212<<14 | 0x0A<<7 | 0x01,\n\t225 - 161:  jis0212<<14 | 0x0A<<7 | 0x00,\n\t226 - 161:  jis0212<<14 | 0x0A<<7 | 0x03,\n\t227 - 161:  jis0212<<14 | 0x0A<<7 | 0x09,\n\t228 - 161:  jis0212<<14 | 0x0A<<7 | 0x02,\n\t229 - 161:  jis0212<<14 | 0x0A<<7 | 0x08,\n\t230 - 161:  jis0212<<14 | 0x08<<7 | 0x20,\n\t231 - 161:  jis0212<<14 | 0x0A<<7 | 0x0D,\n\t232 - 161:  jis0212<<14 | 0x0A<<7 | 0x11,\n\t233 - 161:  jis0212<<14 | 0x0A<<7 | 0x10,\n\t234 - 161:  jis0212<<14 | 0x0A<<7 | 0x13,\n\t235 - 161:  jis0212<<14 | 0x0A<<7 | 0x12,\n\t236 - 161:  jis0212<<14 | 0x0A<<7 | 0x1F,\n\t237 - 161:  jis0212<<14 | 0x0A<<7 | 0x1E,\n\t238 - 161:  jis0212<<14 | 0x0A<<7 | 0x21,\n\t239 - 161:  jis0212<<14 | 0x0A<<7 | 0x20,\n\t240 - 161:  jis0212<<14 | 0x08<<7 | 0x22,\n\t241 - 161:  jis0212<<14 | 0x0A<<7 | 0x2F,\n\t242 - 161:  jis0212<<14 | 0x0A<<7 | 0x31,\n\t243 - 161:  jis0212<<14 | 0x0A<<7 | 0x30,\n\t244 - 161:  jis0212<<14 | 0x0A<<7 | 0x33,\n\t245 - 161:  jis0212<<14 | 0x0A<<7 | 0x37,\n\t246 - 161:  jis0212<<14 | 0x0A<<7 | 0x32,\n\t247 - 161:  jis0208<<14 | 0x00<<7 | 0x3F,\n\t248 - 161:  jis0212<<14 | 0x08<<7 | 0x2B,\n\t249 - 161:  jis0212<<14 | 0x0A<<7 | 0x42,\n\t250 - 161:  jis0212<<14 | 0x0A<<7 | 0x41,\n\t251 - 161:  jis0212<<14 | 0x0A<<7 | 0x44,\n\t252 - 161:  jis0212<<14 | 0x0A<<7 | 0x43,\n\t253 - 161:  jis0212<<14 | 0x0A<<7 | 0x51,\n\t254 - 161:  jis0212<<14 | 0x08<<7 | 0x2F,\n\t255 - 161:  jis0212<<14 | 0x0A<<7 | 0x52,\n\t256 - 161:  jis0212<<14 | 0x09<<7 | 0x06,\n\t257 - 161:  jis0212<<14 | 0x0A<<7 | 0x06,\n\t258 - 161:  jis0212<<14 | 0x09<<7 | 0x04,\n\t259 - 161:  jis0212<<14 | 0x0A<<7 | 0x04,\n\t260 - 161:  jis0212<<14 | 0x09<<7 | 0x07,\n\t261 - 161:  jis0212<<14 | 0x0A<<7 | 0x07,\n\t262 - 161:  jis0212<<14 | 0x09<<7 | 0x0A,\n\t263 - 161:  jis0212<<14 | 0x0A<<7 | 0x0A,\n\t264 - 161:  jis0212<<14 | 0x09<<7 | 0x0B,\n\t265 - 161:  jis0212<<14 | 0x0A<<7 | 0x0B,\n\t266 - 161:  jis0212<<14 | 0x09<<7 | 0x0E,\n\t267 - 161:  jis0212<<14 | 0x0A<<7 | 0x0E,\n\t268 - 161:  jis0212<<14 | 0x09<<7 | 0x0C,\n\t269 - 161:  jis0212<<14 | 0x0A<<7 | 0x0C,\n\t270 - 161:  jis0212<<14 | 0x09<<7 | 0x0F,\n\t271 - 161:  jis0212<<14 | 0x0A<<7 | 0x0F,\n\t272 - 161:  jis0212<<14 | 0x08<<7 | 0x01,\n\t273 - 161:  jis0212<<14 | 0x08<<7 | 0x21,\n\t274 - 161:  jis0212<<14 | 0x09<<7 | 0x16,\n\t275 - 161:  jis0212<<14 | 0x0A<<7 | 0x16,\n\t278 - 161:  jis0212<<14 | 0x09<<7 | 0x15,\n\t279 - 161:  jis0212<<14 | 0x0A<<7 | 0x15,\n\t280 - 161:  jis0212<<14 | 0x09<<7 | 0x17,\n\t281 - 161:  jis0212<<14 | 0x0A<<7 | 0x17,\n\t282 - 161:  jis0212<<14 | 0x09<<7 | 0x14,\n\t283 - 161:  jis0212<<14 | 0x0A<<7 | 0x14,\n\t284 - 161:  jis0212<<14 | 0x09<<7 | 0x19,\n\t285 - 161:  jis0212<<14 | 0x0A<<7 | 0x19,\n\t286 - 161:  jis0212<<14 | 0x09<<7 | 0x1A,\n\t287 - 161:  jis0212<<14 | 0x0A<<7 | 0x1A,\n\t288 - 161:  jis0212<<14 | 0x09<<7 | 0x1C,\n\t289 - 161:  jis0212<<14 | 0x0A<<7 | 0x1C,\n\t290 - 161:  jis0212<<14 | 0x09<<7 | 0x1B,\n\t292 - 161:  jis0212<<14 | 0x09<<7 | 0x1D,\n\t293 - 161:  jis0212<<14 | 0x0A<<7 | 0x1D,\n\t294 - 161:  jis0212<<14 | 0x08<<7 | 0x03,\n\t295 - 161:  jis0212<<14 | 0x08<<7 | 0x23,\n\t296 - 161:  jis0212<<14 | 0x09<<7 | 0x26,\n\t297 - 161:  jis0212<<14 | 0x0A<<7 | 0x26,\n\t298 - 161:  jis0212<<14 | 0x09<<7 | 0x24,\n\t299 - 161:  jis0212<<14 | 0x0A<<7 | 0x24,\n\t302 - 161:  jis0212<<14 | 0x09<<7 | 0x25,\n\t303 - 161:  jis0212<<14 | 0x0A<<7 | 0x25,\n\t304 - 161:  jis0212<<14 | 0x09<<7 | 0x23,\n\t305 - 161:  jis0212<<14 | 0x08<<7 | 0x24,\n\t306 - 161:  jis0212<<14 | 0x08<<7 | 0x05,\n\t307 - 161:  jis0212<<14 | 0x08<<7 | 0x25,\n\t308 - 161:  jis0212<<14 | 0x09<<7 | 0x27,\n\t309 - 161:  jis0212<<14 | 0x0A<<7 | 0x27,\n\t310 - 161:  jis0212<<14 | 0x09<<7 | 0x28,\n\t311 - 161:  jis0212<<14 | 0x0A<<7 | 0x28,\n\t312 - 161:  jis0212<<14 | 0x08<<7 | 0x26,\n\t313 - 161:  jis0212<<14 | 0x09<<7 | 0x29,\n\t314 - 161:  jis0212<<14 | 0x0A<<7 | 0x29,\n\t315 - 161:  jis0212<<14 | 0x09<<7 | 0x2B,\n\t316 - 161:  jis0212<<14 | 0x0A<<7 | 0x2B,\n\t317 - 161:  jis0212<<14 | 0x09<<7 | 0x2A,\n\t318 - 161:  jis0212<<14 | 0x0A<<7 | 0x2A,\n\t319 - 161:  jis0212<<14 | 0x08<<7 | 0x08,\n\t320 - 161:  jis0212<<14 | 0x08<<7 | 0x28,\n\t321 - 161:  jis0212<<14 | 0x08<<7 | 0x07,\n\t322 - 161:  jis0212<<14 | 0x08<<7 | 0x27,\n\t323 - 161:  jis0212<<14 | 0x09<<7 | 0x2C,\n\t324 - 161:  jis0212<<14 | 0x0A<<7 | 0x2C,\n\t325 - 161:  jis0212<<14 | 0x09<<7 | 0x2E,\n\t326 - 161:  jis0212<<14 | 0x0A<<7 | 0x2E,\n\t327 - 161:  jis0212<<14 | 0x09<<7 | 0x2D,\n\t328 - 161:  jis0212<<14 | 0x0A<<7 | 0x2D,\n\t329 - 161:  jis0212<<14 | 0x08<<7 | 0x29,\n\t330 - 161:  jis0212<<14 | 0x08<<7 | 0x0A,\n\t331 - 161:  jis0212<<14 | 0x08<<7 | 0x2A,\n\t332 - 161:  jis0212<<14 | 0x09<<7 | 0x36,\n\t333 - 161:  jis0212<<14 | 0x0A<<7 | 0x36,\n\t336 - 161:  jis0212<<14 | 0x09<<7 | 0x35,\n\t337 - 161:  jis0212<<14 | 0x0A<<7 | 0x35,\n\t338 - 161:  jis0212<<14 | 0x08<<7 | 0x0C,\n\t339 - 161:  jis0212<<14 | 0x08<<7 | 0x2C,\n\t340 - 161:  jis0212<<14 | 0x09<<7 | 0x38,\n\t341 - 161:  jis0212<<14 | 0x0A<<7 | 0x38,\n\t342 - 161:  jis0212<<14 | 0x09<<7 | 0x3A,\n\t343 - 161:  jis0212<<14 | 0x0A<<7 | 0x3A,\n\t344 - 161:  jis0212<<14 | 0x09<<7 | 0x39,\n\t345 - 161:  jis0212<<14 | 0x0A<<7 | 0x39,\n\t346 - 161:  jis0212<<14 | 0x09<<7 | 0x3B,\n\t347 - 161:  jis0212<<14 | 0x0A<<7 | 0x3B,\n\t348 - 161:  jis0212<<14 | 0x09<<7 | 0x3C,\n\t349 - 161:  jis0212<<14 | 0x0A<<7 | 0x3C,\n\t350 - 161:  jis0212<<14 | 0x09<<7 | 0x3E,\n\t351 - 161:  jis0212<<14 | 0x0A<<7 | 0x3E,\n\t352 - 161:  jis0212<<14 | 0x09<<7 | 0x3D,\n\t353 - 161:  jis0212<<14 | 0x0A<<7 | 0x3D,\n\t354 - 161:  jis0212<<14 | 0x09<<7 | 0x40,\n\t355 - 161:  jis0212<<14 | 0x0A<<7 | 0x40,\n\t356 - 161:  jis0212<<14 | 0x09<<7 | 0x3F,\n\t357 - 161:  jis0212<<14 | 0x0A<<7 | 0x3F,\n\t358 - 161:  jis0212<<14 | 0x08<<7 | 0x0E,\n\t359 - 161:  jis0212<<14 | 0x08<<7 | 0x2E,\n\t360 - 161:  jis0212<<14 | 0x09<<7 | 0x4B,\n\t361 - 161:  jis0212<<14 | 0x0A<<7 | 0x4B,\n\t362 - 161:  jis0212<<14 | 0x09<<7 | 0x48,\n\t363 - 161:  jis0212<<14 | 0x0A<<7 | 0x48,\n\t364 - 161:  jis0212<<14 | 0x09<<7 | 0x45,\n\t365 - 161:  jis0212<<14 | 0x0A<<7 | 0x45,\n\t366 - 161:  jis0212<<14 | 0x09<<7 | 0x4A,\n\t367 - 161:  jis0212<<14 | 0x0A<<7 | 0x4A,\n\t368 - 161:  jis0212<<14 | 0x09<<7 | 0x47,\n\t369 - 161:  jis0212<<14 | 0x0A<<7 | 0x47,\n\t370 - 161:  jis0212<<14 | 0x09<<7 | 0x49,\n\t371 - 161:  jis0212<<14 | 0x0A<<7 | 0x49,\n\t372 - 161:  jis0212<<14 | 0x09<<7 | 0x50,\n\t373 - 161:  jis0212<<14 | 0x0A<<7 | 0x50,\n\t374 - 161:  jis0212<<14 | 0x09<<7 | 0x53,\n\t375 - 161:  jis0212<<14 | 0x0A<<7 | 0x53,\n\t376 - 161:  jis0212<<14 | 0x09<<7 | 0x52,\n\t377 - 161:  jis0212<<14 | 0x09<<7 | 0x54,\n\t378 - 161:  jis0212<<14 | 0x0A<<7 | 0x54,\n\t379 - 161:  jis0212<<14 | 0x09<<7 | 0x56,\n\t380 - 161:  jis0212<<14 | 0x0A<<7 | 0x56,\n\t381 - 161:  jis0212<<14 | 0x09<<7 | 0x55,\n\t382 - 161:  jis0212<<14 | 0x0A<<7 | 0x55,\n\t461 - 161:  jis0212<<14 | 0x09<<7 | 0x05,\n\t462 - 161:  jis0212<<14 | 0x0A<<7 | 0x05,\n\t463 - 161:  jis0212<<14 | 0x09<<7 | 0x22,\n\t464 - 161:  jis0212<<14 | 0x0A<<7 | 0x22,\n\t465 - 161:  jis0212<<14 | 0x09<<7 | 0x34,\n\t466 - 161:  jis0212<<14 | 0x0A<<7 | 0x34,\n\t467 - 161:  jis0212<<14 | 0x09<<7 | 0x46,\n\t468 - 161:  jis0212<<14 | 0x0A<<7 | 0x46,\n\t469 - 161:  jis0212<<14 | 0x09<<7 | 0x4F,\n\t470 - 161:  jis0212<<14 | 0x0A<<7 | 0x4F,\n\t471 - 161:  jis0212<<14 | 0x09<<7 | 0x4C,\n\t472 - 161:  jis0212<<14 | 0x0A<<7 | 0x4C,\n\t473 - 161:  jis0212<<14 | 0x09<<7 | 0x4E,\n\t474 - 161:  jis0212<<14 | 0x0A<<7 | 0x4E,\n\t475 - 161:  jis0212<<14 | 0x09<<7 | 0x4D,\n\t476 - 161:  jis0212<<14 | 0x0A<<7 | 0x4D,\n\t501 - 161:  jis0212<<14 | 0x0A<<7 | 0x18,\n\t711 - 161:  jis0212<<14 | 0x01<<7 | 0x0F,\n\t728 - 161:  jis0212<<14 | 0x01<<7 | 0x0E,\n\t729 - 161:  jis0212<<14 | 0x01<<7 | 0x11,\n\t730 - 161:  jis0212<<14 | 0x01<<7 | 0x15,\n\t731 - 161:  jis0212<<14 | 0x01<<7 | 0x14,\n\t733 - 161:  jis0212<<14 | 0x01<<7 | 0x12,\n\t900 - 161:  jis0212<<14 | 0x01<<7 | 0x17,\n\t901 - 161:  jis0212<<14 | 0x01<<7 | 0x18,\n\t902 - 161:  jis0212<<14 | 0x05<<7 | 0x40,\n\t904 - 161:  jis0212<<14 | 0x05<<7 | 0x41,\n\t905 - 161:  jis0212<<14 | 0x05<<7 | 0x42,\n\t906 - 161:  jis0212<<14 | 0x05<<7 | 0x43,\n\t908 - 161:  jis0212<<14 | 0x05<<7 | 0x46,\n\t910 - 161:  jis0212<<14 | 0x05<<7 | 0x48,\n\t911 - 161:  jis0212<<14 | 0x05<<7 | 0x4B,\n\t912 - 161:  jis0212<<14 | 0x05<<7 | 0x55,\n\t913 - 161:  jis0208<<14 | 0x05<<7 | 0x00,\n\t914 - 161:  jis0208<<14 | 0x05<<7 | 0x01,\n\t915 - 161:  jis0208<<14 | 0x05<<7 | 0x02,\n\t916 - 161:  jis0208<<14 | 0x05<<7 | 0x03,\n\t917 - 161:  jis0208<<14 | 0x05<<7 | 0x04,\n\t918 - 161:  jis0208<<14 | 0x05<<7 | 0x05,\n\t919 - 161:  jis0208<<14 | 0x05<<7 | 0x06,\n\t920 - 161:  jis0208<<14 | 0x05<<7 | 0x07,\n\t921 - 161:  jis0208<<14 | 0x05<<7 | 0x08,\n\t922 - 161:  jis0208<<14 | 0x05<<7 | 0x09,\n\t923 - 161:  jis0208<<14 | 0x05<<7 | 0x0A,\n\t924 - 161:  jis0208<<14 | 0x05<<7 | 0x0B,\n\t925 - 161:  jis0208<<14 | 0x05<<7 | 0x0C,\n\t926 - 161:  jis0208<<14 | 0x05<<7 | 0x0D,\n\t927 - 161:  jis0208<<14 | 0x05<<7 | 0x0E,\n\t928 - 161:  jis0208<<14 | 0x05<<7 | 0x0F,\n\t929 - 161:  jis0208<<14 | 0x05<<7 | 0x10,\n\t931 - 161:  jis0208<<14 | 0x05<<7 | 0x11,\n\t932 - 161:  jis0208<<14 | 0x05<<7 | 0x12,\n\t933 - 161:  jis0208<<14 | 0x05<<7 | 0x13,\n\t934 - 161:  jis0208<<14 | 0x05<<7 | 0x14,\n\t935 - 161:  jis0208<<14 | 0x05<<7 | 0x15,\n\t936 - 161:  jis0208<<14 | 0x05<<7 | 0x16,\n\t937 - 161:  jis0208<<14 | 0x05<<7 | 0x17,\n\t938 - 161:  jis0212<<14 | 0x05<<7 | 0x44,\n\t939 - 161:  jis0212<<14 | 0x05<<7 | 0x49,\n\t940 - 161:  jis0212<<14 | 0x05<<7 | 0x50,\n\t941 - 161:  jis0212<<14 | 0x05<<7 | 0x51,\n\t942 - 161:  jis0212<<14 | 0x05<<7 | 0x52,\n\t943 - 161:  jis0212<<14 | 0x05<<7 | 0x53,\n\t944 - 161:  jis0212<<14 | 0x05<<7 | 0x5A,\n\t945 - 161:  jis0208<<14 | 0x05<<7 | 0x20,\n\t946 - 161:  jis0208<<14 | 0x05<<7 | 0x21,\n\t947 - 161:  jis0208<<14 | 0x05<<7 | 0x22,\n\t948 - 161:  jis0208<<14 | 0x05<<7 | 0x23,\n\t949 - 161:  jis0208<<14 | 0x05<<7 | 0x24,\n\t950 - 161:  jis0208<<14 | 0x05<<7 | 0x25,\n\t951 - 161:  jis0208<<14 | 0x05<<7 | 0x26,\n\t952 - 161:  jis0208<<14 | 0x05<<7 | 0x27,\n\t953 - 161:  jis0208<<14 | 0x05<<7 | 0x28,\n\t954 - 161:  jis0208<<14 | 0x05<<7 | 0x29,\n\t955 - 161:  jis0208<<14 | 0x05<<7 | 0x2A,\n\t956 - 161:  jis0208<<14 | 0x05<<7 | 0x2B,\n\t957 - 161:  jis0208<<14 | 0x05<<7 | 0x2C,\n\t958 - 161:  jis0208<<14 | 0x05<<7 | 0x2D,\n\t959 - 161:  jis0208<<14 | 0x05<<7 | 0x2E,\n\t960 - 161:  jis0208<<14 | 0x05<<7 | 0x2F,\n\t961 - 161:  jis0208<<14 | 0x05<<7 | 0x30,\n\t962 - 161:  jis0212<<14 | 0x05<<7 | 0x57,\n\t963 - 161:  jis0208<<14 | 0x05<<7 | 0x31,\n\t964 - 161:  jis0208<<14 | 0x05<<7 | 0x32,\n\t965 - 161:  jis0208<<14 | 0x05<<7 | 0x33,\n\t966 - 161:  jis0208<<14 | 0x05<<7 | 0x34,\n\t967 - 161:  jis0208<<14 | 0x05<<7 | 0x35,\n\t968 - 161:  jis0208<<14 | 0x05<<7 | 0x36,\n\t969 - 161:  jis0208<<14 | 0x05<<7 | 0x37,\n\t970 - 161:  jis0212<<14 | 0x05<<7 | 0x54,\n\t971 - 161:  jis0212<<14 | 0x05<<7 | 0x59,\n\t972 - 161:  jis0212<<14 | 0x05<<7 | 0x56,\n\t973 - 161:  jis0212<<14 | 0x05<<7 | 0x58,\n\t974 - 161:  jis0212<<14 | 0x05<<7 | 0x5B,\n\t1025 - 161: jis0208<<14 | 0x06<<7 | 0x06,\n\t1026 - 161: jis0212<<14 | 0x06<<7 | 0x21,\n\t1027 - 161: jis0212<<14 | 0x06<<7 | 0x22,\n\t1028 - 161: jis0212<<14 | 0x06<<7 | 0x23,\n\t1029 - 161: jis0212<<14 | 0x06<<7 | 0x24,\n\t1030 - 161: jis0212<<14 | 0x06<<7 | 0x25,\n\t1031 - 161: jis0212<<14 | 0x06<<7 | 0x26,\n\t1032 - 161: jis0212<<14 | 0x06<<7 | 0x27,\n\t1033 - 161: jis0212<<14 | 0x06<<7 | 0x28,\n\t1034 - 161: jis0212<<14 | 0x06<<7 | 0x29,\n\t1035 - 161: jis0212<<14 | 0x06<<7 | 0x2A,\n\t1036 - 161: jis0212<<14 | 0x06<<7 | 0x2B,\n\t1038 - 161: jis0212<<14 | 0x06<<7 | 0x2C,\n\t1039 - 161: jis0212<<14 | 0x06<<7 | 0x2D,\n\t1040 - 161: jis0208<<14 | 0x06<<7 | 0x00,\n\t1041 - 161: jis0208<<14 | 0x06<<7 | 0x01,\n\t1042 - 161: jis0208<<14 | 0x06<<7 | 0x02,\n\t1043 - 161: jis0208<<14 | 0x06<<7 | 0x03,\n\t1044 - 161: jis0208<<14 | 0x06<<7 | 0x04,\n\t1045 - 161: jis0208<<14 | 0x06<<7 | 0x05,\n\t1046 - 161: jis0208<<14 | 0x06<<7 | 0x07,\n\t1047 - 161: jis0208<<14 | 0x06<<7 | 0x08,\n\t1048 - 161: jis0208<<14 | 0x06<<7 | 0x09,\n\t1049 - 161: jis0208<<14 | 0x06<<7 | 0x0A,\n\t1050 - 161: jis0208<<14 | 0x06<<7 | 0x0B,\n\t1051 - 161: jis0208<<14 | 0x06<<7 | 0x0C,\n\t1052 - 161: jis0208<<14 | 0x06<<7 | 0x0D,\n\t1053 - 161: jis0208<<14 | 0x06<<7 | 0x0E,\n\t1054 - 161: jis0208<<14 | 0x06<<7 | 0x0F,\n\t1055 - 161: jis0208<<14 | 0x06<<7 | 0x10,\n\t1056 - 161: jis0208<<14 | 0x06<<7 | 0x11,\n\t1057 - 161: jis0208<<14 | 0x06<<7 | 0x12,\n\t1058 - 161: jis0208<<14 | 0x06<<7 | 0x13,\n\t1059 - 161: jis0208<<14 | 0x06<<7 | 0x14,\n\t1060 - 161: jis0208<<14 | 0x06<<7 | 0x15,\n\t1061 - 161: jis0208<<14 | 0x06<<7 | 0x16,\n\t1062 - 161: jis0208<<14 | 0x06<<7 | 0x17,\n\t1063 - 161: jis0208<<14 | 0x06<<7 | 0x18,\n\t1064 - 161: jis0208<<14 | 0x06<<7 | 0x19,\n\t1065 - 161: jis0208<<14 | 0x06<<7 | 0x1A,\n\t1066 - 161: jis0208<<14 | 0x06<<7 | 0x1B,\n\t1067 - 161: jis0208<<14 | 0x06<<7 | 0x1C,\n\t1068 - 161: jis0208<<14 | 0x06<<7 | 0x1D,\n\t1069 - 161: jis0208<<14 | 0x06<<7 | 0x1E,\n\t1070 - 161: jis0208<<14 | 0x06<<7 | 0x1F,\n\t1071 - 161: jis0208<<14 | 0x06<<7 | 0x20,\n\t1072 - 161: jis0208<<14 | 0x06<<7 | 0x30,\n\t1073 - 161: jis0208<<14 | 0x06<<7 | 0x31,\n\t1074 - 161: jis0208<<14 | 0x06<<7 | 0x32,\n\t1075 - 161: jis0208<<14 | 0x06<<7 | 0x33,\n\t1076 - 161: jis0208<<14 | 0x06<<7 | 0x34,\n\t1077 - 161: jis0208<<14 | 0x06<<7 | 0x35,\n\t1078 - 161: jis0208<<14 | 0x06<<7 | 0x37,\n\t1079 - 161: jis0208<<14 | 0x06<<7 | 0x38,\n\t1080 - 161: jis0208<<14 | 0x06<<7 | 0x39,\n\t1081 - 161: jis0208<<14 | 0x06<<7 | 0x3A,\n\t1082 - 161: jis0208<<14 | 0x06<<7 | 0x3B,\n\t1083 - 161: jis0208<<14 | 0x06<<7 | 0x3C,\n\t1084 - 161: jis0208<<14 | 0x06<<7 | 0x3D,\n\t1085 - 161: jis0208<<14 | 0x06<<7 | 0x3E,\n\t1086 - 161: jis0208<<14 | 0x06<<7 | 0x3F,\n\t1087 - 161: jis0208<<14 | 0x06<<7 | 0x40,\n\t1088 - 161: jis0208<<14 | 0x06<<7 | 0x41,\n\t1089 - 161: jis0208<<14 | 0x06<<7 | 0x42,\n\t1090 - 161: jis0208<<14 | 0x06<<7 | 0x43,\n\t1091 - 161: jis0208<<14 | 0x06<<7 | 0x44,\n\t1092 - 161: jis0208<<14 | 0x06<<7 | 0x45,\n\t1093 - 161: jis0208<<14 | 0x06<<7 | 0x46,\n\t1094 - 161: jis0208<<14 | 0x06<<7 | 0x47,\n\t1095 - 161: jis0208<<14 | 0x06<<7 | 0x48,\n\t1096 - 161: jis0208<<14 | 0x06<<7 | 0x49,\n\t1097 - 161: jis0208<<14 | 0x06<<7 | 0x4A,\n\t1098 - 161: jis0208<<14 | 0x06<<7 | 0x4B,\n\t1099 - 161: jis0208<<14 | 0x06<<7 | 0x4C,\n\t1100 - 161: jis0208<<14 | 0x06<<7 | 0x4D,\n\t1101 - 161: jis0208<<14 | 0x06<<7 | 0x4E,\n\t1102 - 161: jis0208<<14 | 0x06<<7 | 0x4F,\n\t1103 - 161: jis0208<<14 | 0x06<<7 | 0x50,\n\t1105 - 161: jis0208<<14 | 0x06<<7 | 0x36,\n\t1106 - 161: jis0212<<14 | 0x06<<7 | 0x51,\n\t1107 - 161: jis0212<<14 | 0x06<<7 | 0x52,\n\t1108 - 161: jis0212<<14 | 0x06<<7 | 0x53,\n\t1109 - 161: jis0212<<14 | 0x06<<7 | 0x54,\n\t1110 - 161: jis0212<<14 | 0x06<<7 | 0x55,\n\t1111 - 161: jis0212<<14 | 0x06<<7 | 0x56,\n\t1112 - 161: jis0212<<14 | 0x06<<7 | 0x57,\n\t1113 - 161: jis0212<<14 | 0x06<<7 | 0x58,\n\t1114 - 161: jis0212<<14 | 0x06<<7 | 0x59,\n\t1115 - 161: jis0212<<14 | 0x06<<7 | 0x5A,\n\t1116 - 161: jis0212<<14 | 0x06<<7 | 0x5B,\n\t1118 - 161: jis0212<<14 | 0x06<<7 | 0x5C,\n\t1119 - 161: jis0212<<14 | 0x06<<7 | 0x5D,\n}\n\nconst encode4Low, encode4High = 63785, 64046\n\nvar encode4 = [...]uint16{\n\t63785 - 63785: jis0208<<14 | 0x59<<7 | 0x25,\n\t63964 - 63785: jis0208<<14 | 0x5B<<7 | 0x2E,\n\t64014 - 63785: jis0208<<14 | 0x58<<7 | 0x33,\n\t64015 - 63785: jis0208<<14 | 0x58<<7 | 0x3E,\n\t64016 - 63785: jis0208<<14 | 0x58<<7 | 0x3F,\n\t64017 - 63785: jis0208<<14 | 0x58<<7 | 0x54,\n\t64018 - 63785: jis0208<<14 | 0x59<<7 | 0x1D,\n\t64019 - 63785: jis0208<<14 | 0x59<<7 | 0x2D,\n\t64020 - 63785: jis0208<<14 | 0x59<<7 | 0x2F,\n\t64021 - 63785: jis0208<<14 | 0x59<<7 | 0x5A,\n\t64022 - 63785: jis0208<<14 | 0x5A<<7 | 0x02,\n\t64023 - 63785: jis0208<<14 | 0x5A<<7 | 0x19,\n\t64024 - 63785: jis0208<<14 | 0x5A<<7 | 0x21,\n\t64025 - 63785: jis0208<<14 | 0x5A<<7 | 0x22,\n\t64026 - 63785: jis0208<<14 | 0x5A<<7 | 0x23,\n\t64027 - 63785: jis0208<<14 | 0x5A<<7 | 0x25,\n\t64028 - 63785: jis0208<<14 | 0x5A<<7 | 0x29,\n\t64029 - 63785: jis0208<<14 | 0x5A<<7 | 0x2C,\n\t64030 - 63785: jis0208<<14 | 0x5A<<7 | 0x35,\n\t64031 - 63785: jis0208<<14 | 0x5A<<7 | 0x40,\n\t64032 - 63785: jis0208<<14 | 0x5A<<7 | 0x42,\n\t64033 - 63785: jis0208<<14 | 0x5A<<7 | 0x43,\n\t64034 - 63785: jis0208<<14 | 0x5A<<7 | 0x4C,\n\t64035 - 63785: jis0208<<14 | 0x5A<<7 | 0x54,\n\t64036 - 63785: jis0208<<14 | 0x5A<<7 | 0x56,\n\t64037 - 63785: jis0208<<14 | 0x5A<<7 | 0x57,\n\t64038 - 63785: jis0208<<14 | 0x5A<<7 | 0x5A,\n\t64039 - 63785: jis0208<<14 | 0x5B<<7 | 0x18,\n\t64040 - 63785: jis0208<<14 | 0x5B<<7 | 0x1F,\n\t64041 - 63785: jis0208<<14 | 0x5B<<7 | 0x2F,\n\t64042 - 63785: jis0208<<14 | 0x5B<<7 | 0x3B,\n\t64043 - 63785: jis0208<<14 | 0x5B<<7 | 0x3C,\n\t64044 - 63785: jis0208<<14 | 0x5B<<7 | 0x3E,\n\t64045 - 63785: jis0208<<14 | 0x5B<<7 | 0x4B,\n}\n\nconst encode5Low, encode5High = 65281, 65510\n\nvar encode5 = [...]uint16{\n\t65281 - 65281: jis0208<<14 | 0x00<<7 | 0x09,\n\t65282 - 65281: jis0208<<14 | 0x5B<<7 | 0x5D,\n\t65283 - 65281: jis0208<<14 | 0x00<<7 | 0x53,\n\t65284 - 65281: jis0208<<14 | 0x00<<7 | 0x4F,\n\t65285 - 65281: jis0208<<14 | 0x00<<7 | 0x52,\n\t65286 - 65281: jis0208<<14 | 0x00<<7 | 0x54,\n\t65287 - 65281: jis0208<<14 | 0x5B<<7 | 0x5C,\n\t65288 - 65281: jis0208<<14 | 0x00<<7 | 0x29,\n\t65289 - 65281: jis0208<<14 | 0x00<<7 | 0x2A,\n\t65290 - 65281: jis0208<<14 | 0x00<<7 | 0x55,\n\t65291 - 65281: jis0208<<14 | 0x00<<7 | 0x3B,\n\t65292 - 65281: jis0208<<14 | 0x00<<7 | 0x03,\n\t65293 - 65281: jis0208<<14 | 0x00<<7 | 0x3C,\n\t65294 - 65281: jis0208<<14 | 0x00<<7 | 0x04,\n\t65295 - 65281: jis0208<<14 | 0x00<<7 | 0x1E,\n\t65296 - 65281: jis0208<<14 | 0x02<<7 | 0x0F,\n\t65297 - 65281: jis0208<<14 | 0x02<<7 | 0x10,\n\t65298 - 65281: jis0208<<14 | 0x02<<7 | 0x11,\n\t65299 - 65281: jis0208<<14 | 0x02<<7 | 0x12,\n\t65300 - 65281: jis0208<<14 | 0x02<<7 | 0x13,\n\t65301 - 65281: jis0208<<14 | 0x02<<7 | 0x14,\n\t65302 - 65281: jis0208<<14 | 0x02<<7 | 0x15,\n\t65303 - 65281: jis0208<<14 | 0x02<<7 | 0x16,\n\t65304 - 65281: jis0208<<14 | 0x02<<7 | 0x17,\n\t65305 - 65281: jis0208<<14 | 0x02<<7 | 0x18,\n\t65306 - 65281: jis0208<<14 | 0x00<<7 | 0x06,\n\t65307 - 65281: jis0208<<14 | 0x00<<7 | 0x07,\n\t65308 - 65281: jis0208<<14 | 0x00<<7 | 0x42,\n\t65309 - 65281: jis0208<<14 | 0x00<<7 | 0x40,\n\t65310 - 65281: jis0208<<14 | 0x00<<7 | 0x43,\n\t65311 - 65281: jis0208<<14 | 0x00<<7 | 0x08,\n\t65312 - 65281: jis0208<<14 | 0x00<<7 | 0x56,\n\t65313 - 65281: jis0208<<14 | 0x02<<7 | 0x20,\n\t65314 - 65281: jis0208<<14 | 0x02<<7 | 0x21,\n\t65315 - 65281: jis0208<<14 | 0x02<<7 | 0x22,\n\t65316 - 65281: jis0208<<14 | 0x02<<7 | 0x23,\n\t65317 - 65281: jis0208<<14 | 0x02<<7 | 0x24,\n\t65318 - 65281: jis0208<<14 | 0x02<<7 | 0x25,\n\t65319 - 65281: jis0208<<14 | 0x02<<7 | 0x26,\n\t65320 - 65281: jis0208<<14 | 0x02<<7 | 0x27,\n\t65321 - 65281: jis0208<<14 | 0x02<<7 | 0x28,\n\t65322 - 65281: jis0208<<14 | 0x02<<7 | 0x29,\n\t65323 - 65281: jis0208<<14 | 0x02<<7 | 0x2A,\n\t65324 - 65281: jis0208<<14 | 0x02<<7 | 0x2B,\n\t65325 - 65281: jis0208<<14 | 0x02<<7 | 0x2C,\n\t65326 - 65281: jis0208<<14 | 0x02<<7 | 0x2D,\n\t65327 - 65281: jis0208<<14 | 0x02<<7 | 0x2E,\n\t65328 - 65281: jis0208<<14 | 0x02<<7 | 0x2F,\n\t65329 - 65281: jis0208<<14 | 0x02<<7 | 0x30,\n\t65330 - 65281: jis0208<<14 | 0x02<<7 | 0x31,\n\t65331 - 65281: jis0208<<14 | 0x02<<7 | 0x32,\n\t65332 - 65281: jis0208<<14 | 0x02<<7 | 0x33,\n\t65333 - 65281: jis0208<<14 | 0x02<<7 | 0x34,\n\t65334 - 65281: jis0208<<14 | 0x02<<7 | 0x35,\n\t65335 - 65281: jis0208<<14 | 0x02<<7 | 0x36,\n\t65336 - 65281: jis0208<<14 | 0x02<<7 | 0x37,\n\t65337 - 65281: jis0208<<14 | 0x02<<7 | 0x38,\n\t65338 - 65281: jis0208<<14 | 0x02<<7 | 0x39,\n\t65339 - 65281: jis0208<<14 | 0x00<<7 | 0x2D,\n\t65340 - 65281: jis0208<<14 | 0x00<<7 | 0x1F,\n\t65341 - 65281: jis0208<<14 | 0x00<<7 | 0x2E,\n\t65342 - 65281: jis0208<<14 | 0x00<<7 | 0x0F,\n\t65343 - 65281: jis0208<<14 | 0x00<<7 | 0x11,\n\t65344 - 65281: jis0208<<14 | 0x00<<7 | 0x0D,\n\t65345 - 65281: jis0208<<14 | 0x02<<7 | 0x40,\n\t65346 - 65281: jis0208<<14 | 0x02<<7 | 0x41,\n\t65347 - 65281: jis0208<<14 | 0x02<<7 | 0x42,\n\t65348 - 65281: jis0208<<14 | 0x02<<7 | 0x43,\n\t65349 - 65281: jis0208<<14 | 0x02<<7 | 0x44,\n\t65350 - 65281: jis0208<<14 | 0x02<<7 | 0x45,\n\t65351 - 65281: jis0208<<14 | 0x02<<7 | 0x46,\n\t65352 - 65281: jis0208<<14 | 0x02<<7 | 0x47,\n\t65353 - 65281: jis0208<<14 | 0x02<<7 | 0x48,\n\t65354 - 65281: jis0208<<14 | 0x02<<7 | 0x49,\n\t65355 - 65281: jis0208<<14 | 0x02<<7 | 0x4A,\n\t65356 - 65281: jis0208<<14 | 0x02<<7 | 0x4B,\n\t65357 - 65281: jis0208<<14 | 0x02<<7 | 0x4C,\n\t65358 - 65281: jis0208<<14 | 0x02<<7 | 0x4D,\n\t65359 - 65281: jis0208<<14 | 0x02<<7 | 0x4E,\n\t65360 - 65281: jis0208<<14 | 0x02<<7 | 0x4F,\n\t65361 - 65281: jis0208<<14 | 0x02<<7 | 0x50,\n\t65362 - 65281: jis0208<<14 | 0x02<<7 | 0x51,\n\t65363 - 65281: jis0208<<14 | 0x02<<7 | 0x52,\n\t65364 - 65281: jis0208<<14 | 0x02<<7 | 0x53,\n\t65365 - 65281: jis0208<<14 | 0x02<<7 | 0x54,\n\t65366 - 65281: jis0208<<14 | 0x02<<7 | 0x55,\n\t65367 - 65281: jis0208<<14 | 0x02<<7 | 0x56,\n\t65368 - 65281: jis0208<<14 | 0x02<<7 | 0x57,\n\t65369 - 65281: jis0208<<14 | 0x02<<7 | 0x58,\n\t65370 - 65281: jis0208<<14 | 0x02<<7 | 0x59,\n\t65371 - 65281: jis0208<<14 | 0x00<<7 | 0x2F,\n\t65372 - 65281: jis0208<<14 | 0x00<<7 | 0x22,\n\t65373 - 65281: jis0208<<14 | 0x00<<7 | 0x30,\n\t65374 - 65281: jis0208<<14 | 0x00<<7 | 0x20,\n\t65504 - 65281: jis0208<<14 | 0x00<<7 | 0x50,\n\t65505 - 65281: jis0208<<14 | 0x00<<7 | 0x51,\n\t65506 - 65281: jis0208<<14 | 0x01<<7 | 0x2B,\n\t65507 - 65281: jis0208<<14 | 0x00<<7 | 0x10,\n\t65508 - 65281: jis0208<<14 | 0x5B<<7 | 0x5B,\n\t65509 - 65281: jis0208<<14 | 0x00<<7 | 0x4E,\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/korean/euckr.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage korean\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\n// All is a list of all defined encodings in this package.\nvar All = []encoding.Encoding{EUCKR}\n\n// EUCKR is the EUC-KR encoding, also known as Code Page 949.\nvar EUCKR encoding.Encoding = &eucKR\n\nvar eucKR = internal.Encoding{\n\t&internal.SimpleEncoding{eucKRDecoder{}, eucKREncoder{}},\n\t\"EUC-KR\",\n\tidentifier.EUCKR,\n}\n\ntype eucKRDecoder struct{ transform.NopResetter }\n\nfunc (eucKRDecoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\nloop:\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tswitch c0 := src[nSrc]; {\n\t\tcase c0 < utf8.RuneSelf:\n\t\t\tr, size = rune(c0), 1\n\n\t\tcase 0x81 <= c0 && c0 < 0xff:\n\t\t\tif nSrc+1 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tc1 := src[nSrc+1]\n\t\t\tsize = 2\n\t\t\tif c0 < 0xc7 {\n\t\t\t\tr = 178 * rune(c0-0x81)\n\t\t\t\tswitch {\n\t\t\t\tcase 0x41 <= c1 && c1 < 0x5b:\n\t\t\t\t\tr += rune(c1) - (0x41 - 0*26)\n\t\t\t\tcase 0x61 <= c1 && c1 < 0x7b:\n\t\t\t\t\tr += rune(c1) - (0x61 - 1*26)\n\t\t\t\tcase 0x81 <= c1 && c1 < 0xff:\n\t\t\t\t\tr += rune(c1) - (0x81 - 2*26)\n\t\t\t\tdefault:\n\t\t\t\t\tgoto decError\n\t\t\t\t}\n\t\t\t} else if 0xa1 <= c1 && c1 < 0xff {\n\t\t\t\tr = 178*(0xc7-0x81) + rune(c0-0xc7)*94 + rune(c1-0xa1)\n\t\t\t} else {\n\t\t\t\tgoto decError\n\t\t\t}\n\t\t\tif int(r) < len(decode) {\n\t\t\t\tr = rune(decode[r])\n\t\t\t\tif r != 0 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tdecError:\n\t\t\tr = utf8.RuneError\n\t\t\tif c1 < utf8.RuneSelf {\n\t\t\t\tsize = 1\n\t\t\t}\n\n\t\tdefault:\n\t\t\tr, size = utf8.RuneError, 1\n\t\t\tbreak\n\t\t}\n\n\t\tif nDst+utf8.RuneLen(r) > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tnDst += utf8.EncodeRune(dst[nDst:], r)\n\t}\n\treturn nDst, nSrc, err\n}\n\ntype eucKREncoder struct{ transform.NopResetter }\n\nfunc (eucKREncoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tsize = 1\n\n\t\t\tif nDst >= len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[nDst] = uint8(r)\n\t\t\tnDst++\n\t\t\tcontinue\n\n\t\t} else {\n\t\t\t// Decode a multi-byte rune.\n\t\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\t\tif size == 1 {\n\t\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t\t// full character yet.\n\t\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// func init checks that the switch covers all tables.\n\t\t\tswitch {\n\t\t\tcase encode0Low <= r && r < encode0High:\n\t\t\t\tif r = rune(encode0[r-encode0Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode1Low <= r && r < encode1High:\n\t\t\t\tif r = rune(encode1[r-encode1Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode2Low <= r && r < encode2High:\n\t\t\t\tif r = rune(encode2[r-encode2Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode3Low <= r && r < encode3High:\n\t\t\t\tif r = rune(encode3[r-encode3Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode4Low <= r && r < encode4High:\n\t\t\t\tif r = rune(encode4[r-encode4Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode5Low <= r && r < encode5High:\n\t\t\t\tif r = rune(encode5[r-encode5Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode6Low <= r && r < encode6High:\n\t\t\t\tif r = rune(encode6[r-encode6Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\t}\n\t\t\terr = internal.ErrASCIIReplacement\n\t\t\tbreak\n\t\t}\n\n\twrite2:\n\t\tif nDst+2 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst+0] = uint8(r >> 8)\n\t\tdst[nDst+1] = uint8(r)\n\t\tnDst += 2\n\t\tcontinue\n\t}\n\treturn nDst, nSrc, err\n}\n\nfunc init() {\n\t// Check that the hard-coded encode switch covers all tables.\n\tif numEncodeTables != 7 {\n\t\tpanic(\"bad numEncodeTables\")\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/korean/tables.go",
    "content": "// generated by go run maketables.go; DO NOT EDIT\n\n// Package korean provides Korean encodings such as EUC-KR.\npackage korean // import \"golang.org/x/text/encoding/korean\"\n\n// decode is the decoding table from EUC-KR code to Unicode.\n// It is defined at http://encoding.spec.whatwg.org/index-euc-kr.txt\nvar decode = [...]uint16{\n\t0:     0xAC02,\n\t1:     0xAC03,\n\t2:     0xAC05,\n\t3:     0xAC06,\n\t4:     0xAC0B,\n\t5:     0xAC0C,\n\t6:     0xAC0D,\n\t7:     0xAC0E,\n\t8:     0xAC0F,\n\t9:     0xAC18,\n\t10:    0xAC1E,\n\t11:    0xAC1F,\n\t12:    0xAC21,\n\t13:    0xAC22,\n\t14:    0xAC23,\n\t15:    0xAC25,\n\t16:    0xAC26,\n\t17:    0xAC27,\n\t18:    0xAC28,\n\t19:    0xAC29,\n\t20:    0xAC2A,\n\t21:    0xAC2B,\n\t22:    0xAC2E,\n\t23:    0xAC32,\n\t24:    0xAC33,\n\t25:    0xAC34,\n\t26:    0xAC35,\n\t27:    0xAC36,\n\t28:    0xAC37,\n\t29:    0xAC3A,\n\t30:    0xAC3B,\n\t31:    0xAC3D,\n\t32:    0xAC3E,\n\t33:    0xAC3F,\n\t34:    0xAC41,\n\t35:    0xAC42,\n\t36:    0xAC43,\n\t37:    0xAC44,\n\t38:    0xAC45,\n\t39:    0xAC46,\n\t40:    0xAC47,\n\t41:    0xAC48,\n\t42:    0xAC49,\n\t43:    0xAC4A,\n\t44:    0xAC4C,\n\t45:    0xAC4E,\n\t46:    0xAC4F,\n\t47:    0xAC50,\n\t48:    0xAC51,\n\t49:    0xAC52,\n\t50:    0xAC53,\n\t51:    0xAC55,\n\t52:    0xAC56,\n\t53:    0xAC57,\n\t54:    0xAC59,\n\t55:    0xAC5A,\n\t56:    0xAC5B,\n\t57:    0xAC5D,\n\t58:    0xAC5E,\n\t59:    0xAC5F,\n\t60:    0xAC60,\n\t61:    0xAC61,\n\t62:    0xAC62,\n\t63:    0xAC63,\n\t64:    0xAC64,\n\t65:    0xAC65,\n\t66:    0xAC66,\n\t67:    0xAC67,\n\t68:    0xAC68,\n\t69:    0xAC69,\n\t70:    0xAC6A,\n\t71:    0xAC6B,\n\t72:    0xAC6C,\n\t73:    0xAC6D,\n\t74:    0xAC6E,\n\t75:    0xAC6F,\n\t76:    0xAC72,\n\t77:    0xAC73,\n\t78:    0xAC75,\n\t79:    0xAC76,\n\t80:    0xAC79,\n\t81:    0xAC7B,\n\t82:    0xAC7C,\n\t83:    0xAC7D,\n\t84:    0xAC7E,\n\t85:    0xAC7F,\n\t86:    0xAC82,\n\t87:    0xAC87,\n\t88:    0xAC88,\n\t89:    0xAC8D,\n\t90:    0xAC8E,\n\t91:    0xAC8F,\n\t92:    0xAC91,\n\t93:    0xAC92,\n\t94:    0xAC93,\n\t95:    0xAC95,\n\t96:    0xAC96,\n\t97:    0xAC97,\n\t98:    0xAC98,\n\t99:    0xAC99,\n\t100:   0xAC9A,\n\t101:   0xAC9B,\n\t102:   0xAC9E,\n\t103:   0xACA2,\n\t104:   0xACA3,\n\t105:   0xACA4,\n\t106:   0xACA5,\n\t107:   0xACA6,\n\t108:   0xACA7,\n\t109:   0xACAB,\n\t110:   0xACAD,\n\t111:   0xACAE,\n\t112:   0xACB1,\n\t113:   0xACB2,\n\t114:   0xACB3,\n\t115:   0xACB4,\n\t116:   0xACB5,\n\t117:   0xACB6,\n\t118:   0xACB7,\n\t119:   0xACBA,\n\t120:   0xACBE,\n\t121:   0xACBF,\n\t122:   0xACC0,\n\t123:   0xACC2,\n\t124:   0xACC3,\n\t125:   0xACC5,\n\t126:   0xACC6,\n\t127:   0xACC7,\n\t128:   0xACC9,\n\t129:   0xACCA,\n\t130:   0xACCB,\n\t131:   0xACCD,\n\t132:   0xACCE,\n\t133:   0xACCF,\n\t134:   0xACD0,\n\t135:   0xACD1,\n\t136:   0xACD2,\n\t137:   0xACD3,\n\t138:   0xACD4,\n\t139:   0xACD6,\n\t140:   0xACD8,\n\t141:   0xACD9,\n\t142:   0xACDA,\n\t143:   0xACDB,\n\t144:   0xACDC,\n\t145:   0xACDD,\n\t146:   0xACDE,\n\t147:   0xACDF,\n\t148:   0xACE2,\n\t149:   0xACE3,\n\t150:   0xACE5,\n\t151:   0xACE6,\n\t152:   0xACE9,\n\t153:   0xACEB,\n\t154:   0xACED,\n\t155:   0xACEE,\n\t156:   0xACF2,\n\t157:   0xACF4,\n\t158:   0xACF7,\n\t159:   0xACF8,\n\t160:   0xACF9,\n\t161:   0xACFA,\n\t162:   0xACFB,\n\t163:   0xACFE,\n\t164:   0xACFF,\n\t165:   0xAD01,\n\t166:   0xAD02,\n\t167:   0xAD03,\n\t168:   0xAD05,\n\t169:   0xAD07,\n\t170:   0xAD08,\n\t171:   0xAD09,\n\t172:   0xAD0A,\n\t173:   0xAD0B,\n\t174:   0xAD0E,\n\t175:   0xAD10,\n\t176:   0xAD12,\n\t177:   0xAD13,\n\t178:   0xAD14,\n\t179:   0xAD15,\n\t180:   0xAD16,\n\t181:   0xAD17,\n\t182:   0xAD19,\n\t183:   0xAD1A,\n\t184:   0xAD1B,\n\t185:   0xAD1D,\n\t186:   0xAD1E,\n\t187:   0xAD1F,\n\t188:   0xAD21,\n\t189:   0xAD22,\n\t190:   0xAD23,\n\t191:   0xAD24,\n\t192:   0xAD25,\n\t193:   0xAD26,\n\t194:   0xAD27,\n\t195:   0xAD28,\n\t196:   0xAD2A,\n\t197:   0xAD2B,\n\t198:   0xAD2E,\n\t199:   0xAD2F,\n\t200:   0xAD30,\n\t201:   0xAD31,\n\t202:   0xAD32,\n\t203:   0xAD33,\n\t204:   0xAD36,\n\t205:   0xAD37,\n\t206:   0xAD39,\n\t207:   0xAD3A,\n\t208:   0xAD3B,\n\t209:   0xAD3D,\n\t210:   0xAD3E,\n\t211:   0xAD3F,\n\t212:   0xAD40,\n\t213:   0xAD41,\n\t214:   0xAD42,\n\t215:   0xAD43,\n\t216:   0xAD46,\n\t217:   0xAD48,\n\t218:   0xAD4A,\n\t219:   0xAD4B,\n\t220:   0xAD4C,\n\t221:   0xAD4D,\n\t222:   0xAD4E,\n\t223:   0xAD4F,\n\t224:   0xAD51,\n\t225:   0xAD52,\n\t226:   0xAD53,\n\t227:   0xAD55,\n\t228:   0xAD56,\n\t229:   0xAD57,\n\t230:   0xAD59,\n\t231:   0xAD5A,\n\t232:   0xAD5B,\n\t233:   0xAD5C,\n\t234:   0xAD5D,\n\t235:   0xAD5E,\n\t236:   0xAD5F,\n\t237:   0xAD60,\n\t238:   0xAD62,\n\t239:   0xAD64,\n\t240:   0xAD65,\n\t241:   0xAD66,\n\t242:   0xAD67,\n\t243:   0xAD68,\n\t244:   0xAD69,\n\t245:   0xAD6A,\n\t246:   0xAD6B,\n\t247:   0xAD6E,\n\t248:   0xAD6F,\n\t249:   0xAD71,\n\t250:   0xAD72,\n\t251:   0xAD77,\n\t252:   0xAD78,\n\t253:   0xAD79,\n\t254:   0xAD7A,\n\t255:   0xAD7E,\n\t256:   0xAD80,\n\t257:   0xAD83,\n\t258:   0xAD84,\n\t259:   0xAD85,\n\t260:   0xAD86,\n\t261:   0xAD87,\n\t262:   0xAD8A,\n\t263:   0xAD8B,\n\t264:   0xAD8D,\n\t265:   0xAD8E,\n\t266:   0xAD8F,\n\t267:   0xAD91,\n\t268:   0xAD92,\n\t269:   0xAD93,\n\t270:   0xAD94,\n\t271:   0xAD95,\n\t272:   0xAD96,\n\t273:   0xAD97,\n\t274:   0xAD98,\n\t275:   0xAD99,\n\t276:   0xAD9A,\n\t277:   0xAD9B,\n\t278:   0xAD9E,\n\t279:   0xAD9F,\n\t280:   0xADA0,\n\t281:   0xADA1,\n\t282:   0xADA2,\n\t283:   0xADA3,\n\t284:   0xADA5,\n\t285:   0xADA6,\n\t286:   0xADA7,\n\t287:   0xADA8,\n\t288:   0xADA9,\n\t289:   0xADAA,\n\t290:   0xADAB,\n\t291:   0xADAC,\n\t292:   0xADAD,\n\t293:   0xADAE,\n\t294:   0xADAF,\n\t295:   0xADB0,\n\t296:   0xADB1,\n\t297:   0xADB2,\n\t298:   0xADB3,\n\t299:   0xADB4,\n\t300:   0xADB5,\n\t301:   0xADB6,\n\t302:   0xADB8,\n\t303:   0xADB9,\n\t304:   0xADBA,\n\t305:   0xADBB,\n\t306:   0xADBC,\n\t307:   0xADBD,\n\t308:   0xADBE,\n\t309:   0xADBF,\n\t310:   0xADC2,\n\t311:   0xADC3,\n\t312:   0xADC5,\n\t313:   0xADC6,\n\t314:   0xADC7,\n\t315:   0xADC9,\n\t316:   0xADCA,\n\t317:   0xADCB,\n\t318:   0xADCC,\n\t319:   0xADCD,\n\t320:   0xADCE,\n\t321:   0xADCF,\n\t322:   0xADD2,\n\t323:   0xADD4,\n\t324:   0xADD5,\n\t325:   0xADD6,\n\t326:   0xADD7,\n\t327:   0xADD8,\n\t328:   0xADD9,\n\t329:   0xADDA,\n\t330:   0xADDB,\n\t331:   0xADDD,\n\t332:   0xADDE,\n\t333:   0xADDF,\n\t334:   0xADE1,\n\t335:   0xADE2,\n\t336:   0xADE3,\n\t337:   0xADE5,\n\t338:   0xADE6,\n\t339:   0xADE7,\n\t340:   0xADE8,\n\t341:   0xADE9,\n\t342:   0xADEA,\n\t343:   0xADEB,\n\t344:   0xADEC,\n\t345:   0xADED,\n\t346:   0xADEE,\n\t347:   0xADEF,\n\t348:   0xADF0,\n\t349:   0xADF1,\n\t350:   0xADF2,\n\t351:   0xADF3,\n\t352:   0xADF4,\n\t353:   0xADF5,\n\t354:   0xADF6,\n\t355:   0xADF7,\n\t356:   0xADFA,\n\t357:   0xADFB,\n\t358:   0xADFD,\n\t359:   0xADFE,\n\t360:   0xAE02,\n\t361:   0xAE03,\n\t362:   0xAE04,\n\t363:   0xAE05,\n\t364:   0xAE06,\n\t365:   0xAE07,\n\t366:   0xAE0A,\n\t367:   0xAE0C,\n\t368:   0xAE0E,\n\t369:   0xAE0F,\n\t370:   0xAE10,\n\t371:   0xAE11,\n\t372:   0xAE12,\n\t373:   0xAE13,\n\t374:   0xAE15,\n\t375:   0xAE16,\n\t376:   0xAE17,\n\t377:   0xAE18,\n\t378:   0xAE19,\n\t379:   0xAE1A,\n\t380:   0xAE1B,\n\t381:   0xAE1C,\n\t382:   0xAE1D,\n\t383:   0xAE1E,\n\t384:   0xAE1F,\n\t385:   0xAE20,\n\t386:   0xAE21,\n\t387:   0xAE22,\n\t388:   0xAE23,\n\t389:   0xAE24,\n\t390:   0xAE25,\n\t391:   0xAE26,\n\t392:   0xAE27,\n\t393:   0xAE28,\n\t394:   0xAE29,\n\t395:   0xAE2A,\n\t396:   0xAE2B,\n\t397:   0xAE2C,\n\t398:   0xAE2D,\n\t399:   0xAE2E,\n\t400:   0xAE2F,\n\t401:   0xAE32,\n\t402:   0xAE33,\n\t403:   0xAE35,\n\t404:   0xAE36,\n\t405:   0xAE39,\n\t406:   0xAE3B,\n\t407:   0xAE3C,\n\t408:   0xAE3D,\n\t409:   0xAE3E,\n\t410:   0xAE3F,\n\t411:   0xAE42,\n\t412:   0xAE44,\n\t413:   0xAE47,\n\t414:   0xAE48,\n\t415:   0xAE49,\n\t416:   0xAE4B,\n\t417:   0xAE4F,\n\t418:   0xAE51,\n\t419:   0xAE52,\n\t420:   0xAE53,\n\t421:   0xAE55,\n\t422:   0xAE57,\n\t423:   0xAE58,\n\t424:   0xAE59,\n\t425:   0xAE5A,\n\t426:   0xAE5B,\n\t427:   0xAE5E,\n\t428:   0xAE62,\n\t429:   0xAE63,\n\t430:   0xAE64,\n\t431:   0xAE66,\n\t432:   0xAE67,\n\t433:   0xAE6A,\n\t434:   0xAE6B,\n\t435:   0xAE6D,\n\t436:   0xAE6E,\n\t437:   0xAE6F,\n\t438:   0xAE71,\n\t439:   0xAE72,\n\t440:   0xAE73,\n\t441:   0xAE74,\n\t442:   0xAE75,\n\t443:   0xAE76,\n\t444:   0xAE77,\n\t445:   0xAE7A,\n\t446:   0xAE7E,\n\t447:   0xAE7F,\n\t448:   0xAE80,\n\t449:   0xAE81,\n\t450:   0xAE82,\n\t451:   0xAE83,\n\t452:   0xAE86,\n\t453:   0xAE87,\n\t454:   0xAE88,\n\t455:   0xAE89,\n\t456:   0xAE8A,\n\t457:   0xAE8B,\n\t458:   0xAE8D,\n\t459:   0xAE8E,\n\t460:   0xAE8F,\n\t461:   0xAE90,\n\t462:   0xAE91,\n\t463:   0xAE92,\n\t464:   0xAE93,\n\t465:   0xAE94,\n\t466:   0xAE95,\n\t467:   0xAE96,\n\t468:   0xAE97,\n\t469:   0xAE98,\n\t470:   0xAE99,\n\t471:   0xAE9A,\n\t472:   0xAE9B,\n\t473:   0xAE9C,\n\t474:   0xAE9D,\n\t475:   0xAE9E,\n\t476:   0xAE9F,\n\t477:   0xAEA0,\n\t478:   0xAEA1,\n\t479:   0xAEA2,\n\t480:   0xAEA3,\n\t481:   0xAEA4,\n\t482:   0xAEA5,\n\t483:   0xAEA6,\n\t484:   0xAEA7,\n\t485:   0xAEA8,\n\t486:   0xAEA9,\n\t487:   0xAEAA,\n\t488:   0xAEAB,\n\t489:   0xAEAC,\n\t490:   0xAEAD,\n\t491:   0xAEAE,\n\t492:   0xAEAF,\n\t493:   0xAEB0,\n\t494:   0xAEB1,\n\t495:   0xAEB2,\n\t496:   0xAEB3,\n\t497:   0xAEB4,\n\t498:   0xAEB5,\n\t499:   0xAEB6,\n\t500:   0xAEB7,\n\t501:   0xAEB8,\n\t502:   0xAEB9,\n\t503:   0xAEBA,\n\t504:   0xAEBB,\n\t505:   0xAEBF,\n\t506:   0xAEC1,\n\t507:   0xAEC2,\n\t508:   0xAEC3,\n\t509:   0xAEC5,\n\t510:   0xAEC6,\n\t511:   0xAEC7,\n\t512:   0xAEC8,\n\t513:   0xAEC9,\n\t514:   0xAECA,\n\t515:   0xAECB,\n\t516:   0xAECE,\n\t517:   0xAED2,\n\t518:   0xAED3,\n\t519:   0xAED4,\n\t520:   0xAED5,\n\t521:   0xAED6,\n\t522:   0xAED7,\n\t523:   0xAEDA,\n\t524:   0xAEDB,\n\t525:   0xAEDD,\n\t526:   0xAEDE,\n\t527:   0xAEDF,\n\t528:   0xAEE0,\n\t529:   0xAEE1,\n\t530:   0xAEE2,\n\t531:   0xAEE3,\n\t532:   0xAEE4,\n\t533:   0xAEE5,\n\t534:   0xAEE6,\n\t535:   0xAEE7,\n\t536:   0xAEE9,\n\t537:   0xAEEA,\n\t538:   0xAEEC,\n\t539:   0xAEEE,\n\t540:   0xAEEF,\n\t541:   0xAEF0,\n\t542:   0xAEF1,\n\t543:   0xAEF2,\n\t544:   0xAEF3,\n\t545:   0xAEF5,\n\t546:   0xAEF6,\n\t547:   0xAEF7,\n\t548:   0xAEF9,\n\t549:   0xAEFA,\n\t550:   0xAEFB,\n\t551:   0xAEFD,\n\t552:   0xAEFE,\n\t553:   0xAEFF,\n\t554:   0xAF00,\n\t555:   0xAF01,\n\t556:   0xAF02,\n\t557:   0xAF03,\n\t558:   0xAF04,\n\t559:   0xAF05,\n\t560:   0xAF06,\n\t561:   0xAF09,\n\t562:   0xAF0A,\n\t563:   0xAF0B,\n\t564:   0xAF0C,\n\t565:   0xAF0E,\n\t566:   0xAF0F,\n\t567:   0xAF11,\n\t568:   0xAF12,\n\t569:   0xAF13,\n\t570:   0xAF14,\n\t571:   0xAF15,\n\t572:   0xAF16,\n\t573:   0xAF17,\n\t574:   0xAF18,\n\t575:   0xAF19,\n\t576:   0xAF1A,\n\t577:   0xAF1B,\n\t578:   0xAF1C,\n\t579:   0xAF1D,\n\t580:   0xAF1E,\n\t581:   0xAF1F,\n\t582:   0xAF20,\n\t583:   0xAF21,\n\t584:   0xAF22,\n\t585:   0xAF23,\n\t586:   0xAF24,\n\t587:   0xAF25,\n\t588:   0xAF26,\n\t589:   0xAF27,\n\t590:   0xAF28,\n\t591:   0xAF29,\n\t592:   0xAF2A,\n\t593:   0xAF2B,\n\t594:   0xAF2E,\n\t595:   0xAF2F,\n\t596:   0xAF31,\n\t597:   0xAF33,\n\t598:   0xAF35,\n\t599:   0xAF36,\n\t600:   0xAF37,\n\t601:   0xAF38,\n\t602:   0xAF39,\n\t603:   0xAF3A,\n\t604:   0xAF3B,\n\t605:   0xAF3E,\n\t606:   0xAF40,\n\t607:   0xAF44,\n\t608:   0xAF45,\n\t609:   0xAF46,\n\t610:   0xAF47,\n\t611:   0xAF4A,\n\t612:   0xAF4B,\n\t613:   0xAF4C,\n\t614:   0xAF4D,\n\t615:   0xAF4E,\n\t616:   0xAF4F,\n\t617:   0xAF51,\n\t618:   0xAF52,\n\t619:   0xAF53,\n\t620:   0xAF54,\n\t621:   0xAF55,\n\t622:   0xAF56,\n\t623:   0xAF57,\n\t624:   0xAF58,\n\t625:   0xAF59,\n\t626:   0xAF5A,\n\t627:   0xAF5B,\n\t628:   0xAF5E,\n\t629:   0xAF5F,\n\t630:   0xAF60,\n\t631:   0xAF61,\n\t632:   0xAF62,\n\t633:   0xAF63,\n\t634:   0xAF66,\n\t635:   0xAF67,\n\t636:   0xAF68,\n\t637:   0xAF69,\n\t638:   0xAF6A,\n\t639:   0xAF6B,\n\t640:   0xAF6C,\n\t641:   0xAF6D,\n\t642:   0xAF6E,\n\t643:   0xAF6F,\n\t644:   0xAF70,\n\t645:   0xAF71,\n\t646:   0xAF72,\n\t647:   0xAF73,\n\t648:   0xAF74,\n\t649:   0xAF75,\n\t650:   0xAF76,\n\t651:   0xAF77,\n\t652:   0xAF78,\n\t653:   0xAF7A,\n\t654:   0xAF7B,\n\t655:   0xAF7C,\n\t656:   0xAF7D,\n\t657:   0xAF7E,\n\t658:   0xAF7F,\n\t659:   0xAF81,\n\t660:   0xAF82,\n\t661:   0xAF83,\n\t662:   0xAF85,\n\t663:   0xAF86,\n\t664:   0xAF87,\n\t665:   0xAF89,\n\t666:   0xAF8A,\n\t667:   0xAF8B,\n\t668:   0xAF8C,\n\t669:   0xAF8D,\n\t670:   0xAF8E,\n\t671:   0xAF8F,\n\t672:   0xAF92,\n\t673:   0xAF93,\n\t674:   0xAF94,\n\t675:   0xAF96,\n\t676:   0xAF97,\n\t677:   0xAF98,\n\t678:   0xAF99,\n\t679:   0xAF9A,\n\t680:   0xAF9B,\n\t681:   0xAF9D,\n\t682:   0xAF9E,\n\t683:   0xAF9F,\n\t684:   0xAFA0,\n\t685:   0xAFA1,\n\t686:   0xAFA2,\n\t687:   0xAFA3,\n\t688:   0xAFA4,\n\t689:   0xAFA5,\n\t690:   0xAFA6,\n\t691:   0xAFA7,\n\t692:   0xAFA8,\n\t693:   0xAFA9,\n\t694:   0xAFAA,\n\t695:   0xAFAB,\n\t696:   0xAFAC,\n\t697:   0xAFAD,\n\t698:   0xAFAE,\n\t699:   0xAFAF,\n\t700:   0xAFB0,\n\t701:   0xAFB1,\n\t702:   0xAFB2,\n\t703:   0xAFB3,\n\t704:   0xAFB4,\n\t705:   0xAFB5,\n\t706:   0xAFB6,\n\t707:   0xAFB7,\n\t708:   0xAFBA,\n\t709:   0xAFBB,\n\t710:   0xAFBD,\n\t711:   0xAFBE,\n\t712:   0xAFBF,\n\t713:   0xAFC1,\n\t714:   0xAFC2,\n\t715:   0xAFC3,\n\t716:   0xAFC4,\n\t717:   0xAFC5,\n\t718:   0xAFC6,\n\t719:   0xAFCA,\n\t720:   0xAFCC,\n\t721:   0xAFCF,\n\t722:   0xAFD0,\n\t723:   0xAFD1,\n\t724:   0xAFD2,\n\t725:   0xAFD3,\n\t726:   0xAFD5,\n\t727:   0xAFD6,\n\t728:   0xAFD7,\n\t729:   0xAFD8,\n\t730:   0xAFD9,\n\t731:   0xAFDA,\n\t732:   0xAFDB,\n\t733:   0xAFDD,\n\t734:   0xAFDE,\n\t735:   0xAFDF,\n\t736:   0xAFE0,\n\t737:   0xAFE1,\n\t738:   0xAFE2,\n\t739:   0xAFE3,\n\t740:   0xAFE4,\n\t741:   0xAFE5,\n\t742:   0xAFE6,\n\t743:   0xAFE7,\n\t744:   0xAFEA,\n\t745:   0xAFEB,\n\t746:   0xAFEC,\n\t747:   0xAFED,\n\t748:   0xAFEE,\n\t749:   0xAFEF,\n\t750:   0xAFF2,\n\t751:   0xAFF3,\n\t752:   0xAFF5,\n\t753:   0xAFF6,\n\t754:   0xAFF7,\n\t755:   0xAFF9,\n\t756:   0xAFFA,\n\t757:   0xAFFB,\n\t758:   0xAFFC,\n\t759:   0xAFFD,\n\t760:   0xAFFE,\n\t761:   0xAFFF,\n\t762:   0xB002,\n\t763:   0xB003,\n\t764:   0xB005,\n\t765:   0xB006,\n\t766:   0xB007,\n\t767:   0xB008,\n\t768:   0xB009,\n\t769:   0xB00A,\n\t770:   0xB00B,\n\t771:   0xB00D,\n\t772:   0xB00E,\n\t773:   0xB00F,\n\t774:   0xB011,\n\t775:   0xB012,\n\t776:   0xB013,\n\t777:   0xB015,\n\t778:   0xB016,\n\t779:   0xB017,\n\t780:   0xB018,\n\t781:   0xB019,\n\t782:   0xB01A,\n\t783:   0xB01B,\n\t784:   0xB01E,\n\t785:   0xB01F,\n\t786:   0xB020,\n\t787:   0xB021,\n\t788:   0xB022,\n\t789:   0xB023,\n\t790:   0xB024,\n\t791:   0xB025,\n\t792:   0xB026,\n\t793:   0xB027,\n\t794:   0xB029,\n\t795:   0xB02A,\n\t796:   0xB02B,\n\t797:   0xB02C,\n\t798:   0xB02D,\n\t799:   0xB02E,\n\t800:   0xB02F,\n\t801:   0xB030,\n\t802:   0xB031,\n\t803:   0xB032,\n\t804:   0xB033,\n\t805:   0xB034,\n\t806:   0xB035,\n\t807:   0xB036,\n\t808:   0xB037,\n\t809:   0xB038,\n\t810:   0xB039,\n\t811:   0xB03A,\n\t812:   0xB03B,\n\t813:   0xB03C,\n\t814:   0xB03D,\n\t815:   0xB03E,\n\t816:   0xB03F,\n\t817:   0xB040,\n\t818:   0xB041,\n\t819:   0xB042,\n\t820:   0xB043,\n\t821:   0xB046,\n\t822:   0xB047,\n\t823:   0xB049,\n\t824:   0xB04B,\n\t825:   0xB04D,\n\t826:   0xB04F,\n\t827:   0xB050,\n\t828:   0xB051,\n\t829:   0xB052,\n\t830:   0xB056,\n\t831:   0xB058,\n\t832:   0xB05A,\n\t833:   0xB05B,\n\t834:   0xB05C,\n\t835:   0xB05E,\n\t836:   0xB05F,\n\t837:   0xB060,\n\t838:   0xB061,\n\t839:   0xB062,\n\t840:   0xB063,\n\t841:   0xB064,\n\t842:   0xB065,\n\t843:   0xB066,\n\t844:   0xB067,\n\t845:   0xB068,\n\t846:   0xB069,\n\t847:   0xB06A,\n\t848:   0xB06B,\n\t849:   0xB06C,\n\t850:   0xB06D,\n\t851:   0xB06E,\n\t852:   0xB06F,\n\t853:   0xB070,\n\t854:   0xB071,\n\t855:   0xB072,\n\t856:   0xB073,\n\t857:   0xB074,\n\t858:   0xB075,\n\t859:   0xB076,\n\t860:   0xB077,\n\t861:   0xB078,\n\t862:   0xB079,\n\t863:   0xB07A,\n\t864:   0xB07B,\n\t865:   0xB07E,\n\t866:   0xB07F,\n\t867:   0xB081,\n\t868:   0xB082,\n\t869:   0xB083,\n\t870:   0xB085,\n\t871:   0xB086,\n\t872:   0xB087,\n\t873:   0xB088,\n\t874:   0xB089,\n\t875:   0xB08A,\n\t876:   0xB08B,\n\t877:   0xB08E,\n\t878:   0xB090,\n\t879:   0xB092,\n\t880:   0xB093,\n\t881:   0xB094,\n\t882:   0xB095,\n\t883:   0xB096,\n\t884:   0xB097,\n\t885:   0xB09B,\n\t886:   0xB09D,\n\t887:   0xB09E,\n\t888:   0xB0A3,\n\t889:   0xB0A4,\n\t890:   0xB0A5,\n\t891:   0xB0A6,\n\t892:   0xB0A7,\n\t893:   0xB0AA,\n\t894:   0xB0B0,\n\t895:   0xB0B2,\n\t896:   0xB0B6,\n\t897:   0xB0B7,\n\t898:   0xB0B9,\n\t899:   0xB0BA,\n\t900:   0xB0BB,\n\t901:   0xB0BD,\n\t902:   0xB0BE,\n\t903:   0xB0BF,\n\t904:   0xB0C0,\n\t905:   0xB0C1,\n\t906:   0xB0C2,\n\t907:   0xB0C3,\n\t908:   0xB0C6,\n\t909:   0xB0CA,\n\t910:   0xB0CB,\n\t911:   0xB0CC,\n\t912:   0xB0CD,\n\t913:   0xB0CE,\n\t914:   0xB0CF,\n\t915:   0xB0D2,\n\t916:   0xB0D3,\n\t917:   0xB0D5,\n\t918:   0xB0D6,\n\t919:   0xB0D7,\n\t920:   0xB0D9,\n\t921:   0xB0DA,\n\t922:   0xB0DB,\n\t923:   0xB0DC,\n\t924:   0xB0DD,\n\t925:   0xB0DE,\n\t926:   0xB0DF,\n\t927:   0xB0E1,\n\t928:   0xB0E2,\n\t929:   0xB0E3,\n\t930:   0xB0E4,\n\t931:   0xB0E6,\n\t932:   0xB0E7,\n\t933:   0xB0E8,\n\t934:   0xB0E9,\n\t935:   0xB0EA,\n\t936:   0xB0EB,\n\t937:   0xB0EC,\n\t938:   0xB0ED,\n\t939:   0xB0EE,\n\t940:   0xB0EF,\n\t941:   0xB0F0,\n\t942:   0xB0F1,\n\t943:   0xB0F2,\n\t944:   0xB0F3,\n\t945:   0xB0F4,\n\t946:   0xB0F5,\n\t947:   0xB0F6,\n\t948:   0xB0F7,\n\t949:   0xB0F8,\n\t950:   0xB0F9,\n\t951:   0xB0FA,\n\t952:   0xB0FB,\n\t953:   0xB0FC,\n\t954:   0xB0FD,\n\t955:   0xB0FE,\n\t956:   0xB0FF,\n\t957:   0xB100,\n\t958:   0xB101,\n\t959:   0xB102,\n\t960:   0xB103,\n\t961:   0xB104,\n\t962:   0xB105,\n\t963:   0xB106,\n\t964:   0xB107,\n\t965:   0xB10A,\n\t966:   0xB10D,\n\t967:   0xB10E,\n\t968:   0xB10F,\n\t969:   0xB111,\n\t970:   0xB114,\n\t971:   0xB115,\n\t972:   0xB116,\n\t973:   0xB117,\n\t974:   0xB11A,\n\t975:   0xB11E,\n\t976:   0xB11F,\n\t977:   0xB120,\n\t978:   0xB121,\n\t979:   0xB122,\n\t980:   0xB126,\n\t981:   0xB127,\n\t982:   0xB129,\n\t983:   0xB12A,\n\t984:   0xB12B,\n\t985:   0xB12D,\n\t986:   0xB12E,\n\t987:   0xB12F,\n\t988:   0xB130,\n\t989:   0xB131,\n\t990:   0xB132,\n\t991:   0xB133,\n\t992:   0xB136,\n\t993:   0xB13A,\n\t994:   0xB13B,\n\t995:   0xB13C,\n\t996:   0xB13D,\n\t997:   0xB13E,\n\t998:   0xB13F,\n\t999:   0xB142,\n\t1000:  0xB143,\n\t1001:  0xB145,\n\t1002:  0xB146,\n\t1003:  0xB147,\n\t1004:  0xB149,\n\t1005:  0xB14A,\n\t1006:  0xB14B,\n\t1007:  0xB14C,\n\t1008:  0xB14D,\n\t1009:  0xB14E,\n\t1010:  0xB14F,\n\t1011:  0xB152,\n\t1012:  0xB153,\n\t1013:  0xB156,\n\t1014:  0xB157,\n\t1015:  0xB159,\n\t1016:  0xB15A,\n\t1017:  0xB15B,\n\t1018:  0xB15D,\n\t1019:  0xB15E,\n\t1020:  0xB15F,\n\t1021:  0xB161,\n\t1022:  0xB162,\n\t1023:  0xB163,\n\t1024:  0xB164,\n\t1025:  0xB165,\n\t1026:  0xB166,\n\t1027:  0xB167,\n\t1028:  0xB168,\n\t1029:  0xB169,\n\t1030:  0xB16A,\n\t1031:  0xB16B,\n\t1032:  0xB16C,\n\t1033:  0xB16D,\n\t1034:  0xB16E,\n\t1035:  0xB16F,\n\t1036:  0xB170,\n\t1037:  0xB171,\n\t1038:  0xB172,\n\t1039:  0xB173,\n\t1040:  0xB174,\n\t1041:  0xB175,\n\t1042:  0xB176,\n\t1043:  0xB177,\n\t1044:  0xB17A,\n\t1045:  0xB17B,\n\t1046:  0xB17D,\n\t1047:  0xB17E,\n\t1048:  0xB17F,\n\t1049:  0xB181,\n\t1050:  0xB183,\n\t1051:  0xB184,\n\t1052:  0xB185,\n\t1053:  0xB186,\n\t1054:  0xB187,\n\t1055:  0xB18A,\n\t1056:  0xB18C,\n\t1057:  0xB18E,\n\t1058:  0xB18F,\n\t1059:  0xB190,\n\t1060:  0xB191,\n\t1061:  0xB195,\n\t1062:  0xB196,\n\t1063:  0xB197,\n\t1064:  0xB199,\n\t1065:  0xB19A,\n\t1066:  0xB19B,\n\t1067:  0xB19D,\n\t1068:  0xB19E,\n\t1069:  0xB19F,\n\t1070:  0xB1A0,\n\t1071:  0xB1A1,\n\t1072:  0xB1A2,\n\t1073:  0xB1A3,\n\t1074:  0xB1A4,\n\t1075:  0xB1A5,\n\t1076:  0xB1A6,\n\t1077:  0xB1A7,\n\t1078:  0xB1A9,\n\t1079:  0xB1AA,\n\t1080:  0xB1AB,\n\t1081:  0xB1AC,\n\t1082:  0xB1AD,\n\t1083:  0xB1AE,\n\t1084:  0xB1AF,\n\t1085:  0xB1B0,\n\t1086:  0xB1B1,\n\t1087:  0xB1B2,\n\t1088:  0xB1B3,\n\t1089:  0xB1B4,\n\t1090:  0xB1B5,\n\t1091:  0xB1B6,\n\t1092:  0xB1B7,\n\t1093:  0xB1B8,\n\t1094:  0xB1B9,\n\t1095:  0xB1BA,\n\t1096:  0xB1BB,\n\t1097:  0xB1BC,\n\t1098:  0xB1BD,\n\t1099:  0xB1BE,\n\t1100:  0xB1BF,\n\t1101:  0xB1C0,\n\t1102:  0xB1C1,\n\t1103:  0xB1C2,\n\t1104:  0xB1C3,\n\t1105:  0xB1C4,\n\t1106:  0xB1C5,\n\t1107:  0xB1C6,\n\t1108:  0xB1C7,\n\t1109:  0xB1C8,\n\t1110:  0xB1C9,\n\t1111:  0xB1CA,\n\t1112:  0xB1CB,\n\t1113:  0xB1CD,\n\t1114:  0xB1CE,\n\t1115:  0xB1CF,\n\t1116:  0xB1D1,\n\t1117:  0xB1D2,\n\t1118:  0xB1D3,\n\t1119:  0xB1D5,\n\t1120:  0xB1D6,\n\t1121:  0xB1D7,\n\t1122:  0xB1D8,\n\t1123:  0xB1D9,\n\t1124:  0xB1DA,\n\t1125:  0xB1DB,\n\t1126:  0xB1DE,\n\t1127:  0xB1E0,\n\t1128:  0xB1E1,\n\t1129:  0xB1E2,\n\t1130:  0xB1E3,\n\t1131:  0xB1E4,\n\t1132:  0xB1E5,\n\t1133:  0xB1E6,\n\t1134:  0xB1E7,\n\t1135:  0xB1EA,\n\t1136:  0xB1EB,\n\t1137:  0xB1ED,\n\t1138:  0xB1EE,\n\t1139:  0xB1EF,\n\t1140:  0xB1F1,\n\t1141:  0xB1F2,\n\t1142:  0xB1F3,\n\t1143:  0xB1F4,\n\t1144:  0xB1F5,\n\t1145:  0xB1F6,\n\t1146:  0xB1F7,\n\t1147:  0xB1F8,\n\t1148:  0xB1FA,\n\t1149:  0xB1FC,\n\t1150:  0xB1FE,\n\t1151:  0xB1FF,\n\t1152:  0xB200,\n\t1153:  0xB201,\n\t1154:  0xB202,\n\t1155:  0xB203,\n\t1156:  0xB206,\n\t1157:  0xB207,\n\t1158:  0xB209,\n\t1159:  0xB20A,\n\t1160:  0xB20D,\n\t1161:  0xB20E,\n\t1162:  0xB20F,\n\t1163:  0xB210,\n\t1164:  0xB211,\n\t1165:  0xB212,\n\t1166:  0xB213,\n\t1167:  0xB216,\n\t1168:  0xB218,\n\t1169:  0xB21A,\n\t1170:  0xB21B,\n\t1171:  0xB21C,\n\t1172:  0xB21D,\n\t1173:  0xB21E,\n\t1174:  0xB21F,\n\t1175:  0xB221,\n\t1176:  0xB222,\n\t1177:  0xB223,\n\t1178:  0xB224,\n\t1179:  0xB225,\n\t1180:  0xB226,\n\t1181:  0xB227,\n\t1182:  0xB228,\n\t1183:  0xB229,\n\t1184:  0xB22A,\n\t1185:  0xB22B,\n\t1186:  0xB22C,\n\t1187:  0xB22D,\n\t1188:  0xB22E,\n\t1189:  0xB22F,\n\t1190:  0xB230,\n\t1191:  0xB231,\n\t1192:  0xB232,\n\t1193:  0xB233,\n\t1194:  0xB235,\n\t1195:  0xB236,\n\t1196:  0xB237,\n\t1197:  0xB238,\n\t1198:  0xB239,\n\t1199:  0xB23A,\n\t1200:  0xB23B,\n\t1201:  0xB23D,\n\t1202:  0xB23E,\n\t1203:  0xB23F,\n\t1204:  0xB240,\n\t1205:  0xB241,\n\t1206:  0xB242,\n\t1207:  0xB243,\n\t1208:  0xB244,\n\t1209:  0xB245,\n\t1210:  0xB246,\n\t1211:  0xB247,\n\t1212:  0xB248,\n\t1213:  0xB249,\n\t1214:  0xB24A,\n\t1215:  0xB24B,\n\t1216:  0xB24C,\n\t1217:  0xB24D,\n\t1218:  0xB24E,\n\t1219:  0xB24F,\n\t1220:  0xB250,\n\t1221:  0xB251,\n\t1222:  0xB252,\n\t1223:  0xB253,\n\t1224:  0xB254,\n\t1225:  0xB255,\n\t1226:  0xB256,\n\t1227:  0xB257,\n\t1228:  0xB259,\n\t1229:  0xB25A,\n\t1230:  0xB25B,\n\t1231:  0xB25D,\n\t1232:  0xB25E,\n\t1233:  0xB25F,\n\t1234:  0xB261,\n\t1235:  0xB262,\n\t1236:  0xB263,\n\t1237:  0xB264,\n\t1238:  0xB265,\n\t1239:  0xB266,\n\t1240:  0xB267,\n\t1241:  0xB26A,\n\t1242:  0xB26B,\n\t1243:  0xB26C,\n\t1244:  0xB26D,\n\t1245:  0xB26E,\n\t1246:  0xB26F,\n\t1247:  0xB270,\n\t1248:  0xB271,\n\t1249:  0xB272,\n\t1250:  0xB273,\n\t1251:  0xB276,\n\t1252:  0xB277,\n\t1253:  0xB278,\n\t1254:  0xB279,\n\t1255:  0xB27A,\n\t1256:  0xB27B,\n\t1257:  0xB27D,\n\t1258:  0xB27E,\n\t1259:  0xB27F,\n\t1260:  0xB280,\n\t1261:  0xB281,\n\t1262:  0xB282,\n\t1263:  0xB283,\n\t1264:  0xB286,\n\t1265:  0xB287,\n\t1266:  0xB288,\n\t1267:  0xB28A,\n\t1268:  0xB28B,\n\t1269:  0xB28C,\n\t1270:  0xB28D,\n\t1271:  0xB28E,\n\t1272:  0xB28F,\n\t1273:  0xB292,\n\t1274:  0xB293,\n\t1275:  0xB295,\n\t1276:  0xB296,\n\t1277:  0xB297,\n\t1278:  0xB29B,\n\t1279:  0xB29C,\n\t1280:  0xB29D,\n\t1281:  0xB29E,\n\t1282:  0xB29F,\n\t1283:  0xB2A2,\n\t1284:  0xB2A4,\n\t1285:  0xB2A7,\n\t1286:  0xB2A8,\n\t1287:  0xB2A9,\n\t1288:  0xB2AB,\n\t1289:  0xB2AD,\n\t1290:  0xB2AE,\n\t1291:  0xB2AF,\n\t1292:  0xB2B1,\n\t1293:  0xB2B2,\n\t1294:  0xB2B3,\n\t1295:  0xB2B5,\n\t1296:  0xB2B6,\n\t1297:  0xB2B7,\n\t1298:  0xB2B8,\n\t1299:  0xB2B9,\n\t1300:  0xB2BA,\n\t1301:  0xB2BB,\n\t1302:  0xB2BC,\n\t1303:  0xB2BD,\n\t1304:  0xB2BE,\n\t1305:  0xB2BF,\n\t1306:  0xB2C0,\n\t1307:  0xB2C1,\n\t1308:  0xB2C2,\n\t1309:  0xB2C3,\n\t1310:  0xB2C4,\n\t1311:  0xB2C5,\n\t1312:  0xB2C6,\n\t1313:  0xB2C7,\n\t1314:  0xB2CA,\n\t1315:  0xB2CB,\n\t1316:  0xB2CD,\n\t1317:  0xB2CE,\n\t1318:  0xB2CF,\n\t1319:  0xB2D1,\n\t1320:  0xB2D3,\n\t1321:  0xB2D4,\n\t1322:  0xB2D5,\n\t1323:  0xB2D6,\n\t1324:  0xB2D7,\n\t1325:  0xB2DA,\n\t1326:  0xB2DC,\n\t1327:  0xB2DE,\n\t1328:  0xB2DF,\n\t1329:  0xB2E0,\n\t1330:  0xB2E1,\n\t1331:  0xB2E3,\n\t1332:  0xB2E7,\n\t1333:  0xB2E9,\n\t1334:  0xB2EA,\n\t1335:  0xB2F0,\n\t1336:  0xB2F1,\n\t1337:  0xB2F2,\n\t1338:  0xB2F6,\n\t1339:  0xB2FC,\n\t1340:  0xB2FD,\n\t1341:  0xB2FE,\n\t1342:  0xB302,\n\t1343:  0xB303,\n\t1344:  0xB305,\n\t1345:  0xB306,\n\t1346:  0xB307,\n\t1347:  0xB309,\n\t1348:  0xB30A,\n\t1349:  0xB30B,\n\t1350:  0xB30C,\n\t1351:  0xB30D,\n\t1352:  0xB30E,\n\t1353:  0xB30F,\n\t1354:  0xB312,\n\t1355:  0xB316,\n\t1356:  0xB317,\n\t1357:  0xB318,\n\t1358:  0xB319,\n\t1359:  0xB31A,\n\t1360:  0xB31B,\n\t1361:  0xB31D,\n\t1362:  0xB31E,\n\t1363:  0xB31F,\n\t1364:  0xB320,\n\t1365:  0xB321,\n\t1366:  0xB322,\n\t1367:  0xB323,\n\t1368:  0xB324,\n\t1369:  0xB325,\n\t1370:  0xB326,\n\t1371:  0xB327,\n\t1372:  0xB328,\n\t1373:  0xB329,\n\t1374:  0xB32A,\n\t1375:  0xB32B,\n\t1376:  0xB32C,\n\t1377:  0xB32D,\n\t1378:  0xB32E,\n\t1379:  0xB32F,\n\t1380:  0xB330,\n\t1381:  0xB331,\n\t1382:  0xB332,\n\t1383:  0xB333,\n\t1384:  0xB334,\n\t1385:  0xB335,\n\t1386:  0xB336,\n\t1387:  0xB337,\n\t1388:  0xB338,\n\t1389:  0xB339,\n\t1390:  0xB33A,\n\t1391:  0xB33B,\n\t1392:  0xB33C,\n\t1393:  0xB33D,\n\t1394:  0xB33E,\n\t1395:  0xB33F,\n\t1396:  0xB340,\n\t1397:  0xB341,\n\t1398:  0xB342,\n\t1399:  0xB343,\n\t1400:  0xB344,\n\t1401:  0xB345,\n\t1402:  0xB346,\n\t1403:  0xB347,\n\t1404:  0xB348,\n\t1405:  0xB349,\n\t1406:  0xB34A,\n\t1407:  0xB34B,\n\t1408:  0xB34C,\n\t1409:  0xB34D,\n\t1410:  0xB34E,\n\t1411:  0xB34F,\n\t1412:  0xB350,\n\t1413:  0xB351,\n\t1414:  0xB352,\n\t1415:  0xB353,\n\t1416:  0xB357,\n\t1417:  0xB359,\n\t1418:  0xB35A,\n\t1419:  0xB35D,\n\t1420:  0xB360,\n\t1421:  0xB361,\n\t1422:  0xB362,\n\t1423:  0xB363,\n\t1424:  0xB366,\n\t1425:  0xB368,\n\t1426:  0xB36A,\n\t1427:  0xB36C,\n\t1428:  0xB36D,\n\t1429:  0xB36F,\n\t1430:  0xB372,\n\t1431:  0xB373,\n\t1432:  0xB375,\n\t1433:  0xB376,\n\t1434:  0xB377,\n\t1435:  0xB379,\n\t1436:  0xB37A,\n\t1437:  0xB37B,\n\t1438:  0xB37C,\n\t1439:  0xB37D,\n\t1440:  0xB37E,\n\t1441:  0xB37F,\n\t1442:  0xB382,\n\t1443:  0xB386,\n\t1444:  0xB387,\n\t1445:  0xB388,\n\t1446:  0xB389,\n\t1447:  0xB38A,\n\t1448:  0xB38B,\n\t1449:  0xB38D,\n\t1450:  0xB38E,\n\t1451:  0xB38F,\n\t1452:  0xB391,\n\t1453:  0xB392,\n\t1454:  0xB393,\n\t1455:  0xB395,\n\t1456:  0xB396,\n\t1457:  0xB397,\n\t1458:  0xB398,\n\t1459:  0xB399,\n\t1460:  0xB39A,\n\t1461:  0xB39B,\n\t1462:  0xB39C,\n\t1463:  0xB39D,\n\t1464:  0xB39E,\n\t1465:  0xB39F,\n\t1466:  0xB3A2,\n\t1467:  0xB3A3,\n\t1468:  0xB3A4,\n\t1469:  0xB3A5,\n\t1470:  0xB3A6,\n\t1471:  0xB3A7,\n\t1472:  0xB3A9,\n\t1473:  0xB3AA,\n\t1474:  0xB3AB,\n\t1475:  0xB3AD,\n\t1476:  0xB3AE,\n\t1477:  0xB3AF,\n\t1478:  0xB3B0,\n\t1479:  0xB3B1,\n\t1480:  0xB3B2,\n\t1481:  0xB3B3,\n\t1482:  0xB3B4,\n\t1483:  0xB3B5,\n\t1484:  0xB3B6,\n\t1485:  0xB3B7,\n\t1486:  0xB3B8,\n\t1487:  0xB3B9,\n\t1488:  0xB3BA,\n\t1489:  0xB3BB,\n\t1490:  0xB3BC,\n\t1491:  0xB3BD,\n\t1492:  0xB3BE,\n\t1493:  0xB3BF,\n\t1494:  0xB3C0,\n\t1495:  0xB3C1,\n\t1496:  0xB3C2,\n\t1497:  0xB3C3,\n\t1498:  0xB3C6,\n\t1499:  0xB3C7,\n\t1500:  0xB3C9,\n\t1501:  0xB3CA,\n\t1502:  0xB3CD,\n\t1503:  0xB3CF,\n\t1504:  0xB3D1,\n\t1505:  0xB3D2,\n\t1506:  0xB3D3,\n\t1507:  0xB3D6,\n\t1508:  0xB3D8,\n\t1509:  0xB3DA,\n\t1510:  0xB3DC,\n\t1511:  0xB3DE,\n\t1512:  0xB3DF,\n\t1513:  0xB3E1,\n\t1514:  0xB3E2,\n\t1515:  0xB3E3,\n\t1516:  0xB3E5,\n\t1517:  0xB3E6,\n\t1518:  0xB3E7,\n\t1519:  0xB3E9,\n\t1520:  0xB3EA,\n\t1521:  0xB3EB,\n\t1522:  0xB3EC,\n\t1523:  0xB3ED,\n\t1524:  0xB3EE,\n\t1525:  0xB3EF,\n\t1526:  0xB3F0,\n\t1527:  0xB3F1,\n\t1528:  0xB3F2,\n\t1529:  0xB3F3,\n\t1530:  0xB3F4,\n\t1531:  0xB3F5,\n\t1532:  0xB3F6,\n\t1533:  0xB3F7,\n\t1534:  0xB3F8,\n\t1535:  0xB3F9,\n\t1536:  0xB3FA,\n\t1537:  0xB3FB,\n\t1538:  0xB3FD,\n\t1539:  0xB3FE,\n\t1540:  0xB3FF,\n\t1541:  0xB400,\n\t1542:  0xB401,\n\t1543:  0xB402,\n\t1544:  0xB403,\n\t1545:  0xB404,\n\t1546:  0xB405,\n\t1547:  0xB406,\n\t1548:  0xB407,\n\t1549:  0xB408,\n\t1550:  0xB409,\n\t1551:  0xB40A,\n\t1552:  0xB40B,\n\t1553:  0xB40C,\n\t1554:  0xB40D,\n\t1555:  0xB40E,\n\t1556:  0xB40F,\n\t1557:  0xB411,\n\t1558:  0xB412,\n\t1559:  0xB413,\n\t1560:  0xB414,\n\t1561:  0xB415,\n\t1562:  0xB416,\n\t1563:  0xB417,\n\t1564:  0xB419,\n\t1565:  0xB41A,\n\t1566:  0xB41B,\n\t1567:  0xB41D,\n\t1568:  0xB41E,\n\t1569:  0xB41F,\n\t1570:  0xB421,\n\t1571:  0xB422,\n\t1572:  0xB423,\n\t1573:  0xB424,\n\t1574:  0xB425,\n\t1575:  0xB426,\n\t1576:  0xB427,\n\t1577:  0xB42A,\n\t1578:  0xB42C,\n\t1579:  0xB42D,\n\t1580:  0xB42E,\n\t1581:  0xB42F,\n\t1582:  0xB430,\n\t1583:  0xB431,\n\t1584:  0xB432,\n\t1585:  0xB433,\n\t1586:  0xB435,\n\t1587:  0xB436,\n\t1588:  0xB437,\n\t1589:  0xB438,\n\t1590:  0xB439,\n\t1591:  0xB43A,\n\t1592:  0xB43B,\n\t1593:  0xB43C,\n\t1594:  0xB43D,\n\t1595:  0xB43E,\n\t1596:  0xB43F,\n\t1597:  0xB440,\n\t1598:  0xB441,\n\t1599:  0xB442,\n\t1600:  0xB443,\n\t1601:  0xB444,\n\t1602:  0xB445,\n\t1603:  0xB446,\n\t1604:  0xB447,\n\t1605:  0xB448,\n\t1606:  0xB449,\n\t1607:  0xB44A,\n\t1608:  0xB44B,\n\t1609:  0xB44C,\n\t1610:  0xB44D,\n\t1611:  0xB44E,\n\t1612:  0xB44F,\n\t1613:  0xB452,\n\t1614:  0xB453,\n\t1615:  0xB455,\n\t1616:  0xB456,\n\t1617:  0xB457,\n\t1618:  0xB459,\n\t1619:  0xB45A,\n\t1620:  0xB45B,\n\t1621:  0xB45C,\n\t1622:  0xB45D,\n\t1623:  0xB45E,\n\t1624:  0xB45F,\n\t1625:  0xB462,\n\t1626:  0xB464,\n\t1627:  0xB466,\n\t1628:  0xB467,\n\t1629:  0xB468,\n\t1630:  0xB469,\n\t1631:  0xB46A,\n\t1632:  0xB46B,\n\t1633:  0xB46D,\n\t1634:  0xB46E,\n\t1635:  0xB46F,\n\t1636:  0xB470,\n\t1637:  0xB471,\n\t1638:  0xB472,\n\t1639:  0xB473,\n\t1640:  0xB474,\n\t1641:  0xB475,\n\t1642:  0xB476,\n\t1643:  0xB477,\n\t1644:  0xB478,\n\t1645:  0xB479,\n\t1646:  0xB47A,\n\t1647:  0xB47B,\n\t1648:  0xB47C,\n\t1649:  0xB47D,\n\t1650:  0xB47E,\n\t1651:  0xB47F,\n\t1652:  0xB481,\n\t1653:  0xB482,\n\t1654:  0xB483,\n\t1655:  0xB484,\n\t1656:  0xB485,\n\t1657:  0xB486,\n\t1658:  0xB487,\n\t1659:  0xB489,\n\t1660:  0xB48A,\n\t1661:  0xB48B,\n\t1662:  0xB48C,\n\t1663:  0xB48D,\n\t1664:  0xB48E,\n\t1665:  0xB48F,\n\t1666:  0xB490,\n\t1667:  0xB491,\n\t1668:  0xB492,\n\t1669:  0xB493,\n\t1670:  0xB494,\n\t1671:  0xB495,\n\t1672:  0xB496,\n\t1673:  0xB497,\n\t1674:  0xB498,\n\t1675:  0xB499,\n\t1676:  0xB49A,\n\t1677:  0xB49B,\n\t1678:  0xB49C,\n\t1679:  0xB49E,\n\t1680:  0xB49F,\n\t1681:  0xB4A0,\n\t1682:  0xB4A1,\n\t1683:  0xB4A2,\n\t1684:  0xB4A3,\n\t1685:  0xB4A5,\n\t1686:  0xB4A6,\n\t1687:  0xB4A7,\n\t1688:  0xB4A9,\n\t1689:  0xB4AA,\n\t1690:  0xB4AB,\n\t1691:  0xB4AD,\n\t1692:  0xB4AE,\n\t1693:  0xB4AF,\n\t1694:  0xB4B0,\n\t1695:  0xB4B1,\n\t1696:  0xB4B2,\n\t1697:  0xB4B3,\n\t1698:  0xB4B4,\n\t1699:  0xB4B6,\n\t1700:  0xB4B8,\n\t1701:  0xB4BA,\n\t1702:  0xB4BB,\n\t1703:  0xB4BC,\n\t1704:  0xB4BD,\n\t1705:  0xB4BE,\n\t1706:  0xB4BF,\n\t1707:  0xB4C1,\n\t1708:  0xB4C2,\n\t1709:  0xB4C3,\n\t1710:  0xB4C5,\n\t1711:  0xB4C6,\n\t1712:  0xB4C7,\n\t1713:  0xB4C9,\n\t1714:  0xB4CA,\n\t1715:  0xB4CB,\n\t1716:  0xB4CC,\n\t1717:  0xB4CD,\n\t1718:  0xB4CE,\n\t1719:  0xB4CF,\n\t1720:  0xB4D1,\n\t1721:  0xB4D2,\n\t1722:  0xB4D3,\n\t1723:  0xB4D4,\n\t1724:  0xB4D6,\n\t1725:  0xB4D7,\n\t1726:  0xB4D8,\n\t1727:  0xB4D9,\n\t1728:  0xB4DA,\n\t1729:  0xB4DB,\n\t1730:  0xB4DE,\n\t1731:  0xB4DF,\n\t1732:  0xB4E1,\n\t1733:  0xB4E2,\n\t1734:  0xB4E5,\n\t1735:  0xB4E7,\n\t1736:  0xB4E8,\n\t1737:  0xB4E9,\n\t1738:  0xB4EA,\n\t1739:  0xB4EB,\n\t1740:  0xB4EE,\n\t1741:  0xB4F0,\n\t1742:  0xB4F2,\n\t1743:  0xB4F3,\n\t1744:  0xB4F4,\n\t1745:  0xB4F5,\n\t1746:  0xB4F6,\n\t1747:  0xB4F7,\n\t1748:  0xB4F9,\n\t1749:  0xB4FA,\n\t1750:  0xB4FB,\n\t1751:  0xB4FC,\n\t1752:  0xB4FD,\n\t1753:  0xB4FE,\n\t1754:  0xB4FF,\n\t1755:  0xB500,\n\t1756:  0xB501,\n\t1757:  0xB502,\n\t1758:  0xB503,\n\t1759:  0xB504,\n\t1760:  0xB505,\n\t1761:  0xB506,\n\t1762:  0xB507,\n\t1763:  0xB508,\n\t1764:  0xB509,\n\t1765:  0xB50A,\n\t1766:  0xB50B,\n\t1767:  0xB50C,\n\t1768:  0xB50D,\n\t1769:  0xB50E,\n\t1770:  0xB50F,\n\t1771:  0xB510,\n\t1772:  0xB511,\n\t1773:  0xB512,\n\t1774:  0xB513,\n\t1775:  0xB516,\n\t1776:  0xB517,\n\t1777:  0xB519,\n\t1778:  0xB51A,\n\t1779:  0xB51D,\n\t1780:  0xB51E,\n\t1781:  0xB51F,\n\t1782:  0xB520,\n\t1783:  0xB521,\n\t1784:  0xB522,\n\t1785:  0xB523,\n\t1786:  0xB526,\n\t1787:  0xB52B,\n\t1788:  0xB52C,\n\t1789:  0xB52D,\n\t1790:  0xB52E,\n\t1791:  0xB52F,\n\t1792:  0xB532,\n\t1793:  0xB533,\n\t1794:  0xB535,\n\t1795:  0xB536,\n\t1796:  0xB537,\n\t1797:  0xB539,\n\t1798:  0xB53A,\n\t1799:  0xB53B,\n\t1800:  0xB53C,\n\t1801:  0xB53D,\n\t1802:  0xB53E,\n\t1803:  0xB53F,\n\t1804:  0xB542,\n\t1805:  0xB546,\n\t1806:  0xB547,\n\t1807:  0xB548,\n\t1808:  0xB549,\n\t1809:  0xB54A,\n\t1810:  0xB54E,\n\t1811:  0xB54F,\n\t1812:  0xB551,\n\t1813:  0xB552,\n\t1814:  0xB553,\n\t1815:  0xB555,\n\t1816:  0xB556,\n\t1817:  0xB557,\n\t1818:  0xB558,\n\t1819:  0xB559,\n\t1820:  0xB55A,\n\t1821:  0xB55B,\n\t1822:  0xB55E,\n\t1823:  0xB562,\n\t1824:  0xB563,\n\t1825:  0xB564,\n\t1826:  0xB565,\n\t1827:  0xB566,\n\t1828:  0xB567,\n\t1829:  0xB568,\n\t1830:  0xB569,\n\t1831:  0xB56A,\n\t1832:  0xB56B,\n\t1833:  0xB56C,\n\t1834:  0xB56D,\n\t1835:  0xB56E,\n\t1836:  0xB56F,\n\t1837:  0xB570,\n\t1838:  0xB571,\n\t1839:  0xB572,\n\t1840:  0xB573,\n\t1841:  0xB574,\n\t1842:  0xB575,\n\t1843:  0xB576,\n\t1844:  0xB577,\n\t1845:  0xB578,\n\t1846:  0xB579,\n\t1847:  0xB57A,\n\t1848:  0xB57B,\n\t1849:  0xB57C,\n\t1850:  0xB57D,\n\t1851:  0xB57E,\n\t1852:  0xB57F,\n\t1853:  0xB580,\n\t1854:  0xB581,\n\t1855:  0xB582,\n\t1856:  0xB583,\n\t1857:  0xB584,\n\t1858:  0xB585,\n\t1859:  0xB586,\n\t1860:  0xB587,\n\t1861:  0xB588,\n\t1862:  0xB589,\n\t1863:  0xB58A,\n\t1864:  0xB58B,\n\t1865:  0xB58C,\n\t1866:  0xB58D,\n\t1867:  0xB58E,\n\t1868:  0xB58F,\n\t1869:  0xB590,\n\t1870:  0xB591,\n\t1871:  0xB592,\n\t1872:  0xB593,\n\t1873:  0xB594,\n\t1874:  0xB595,\n\t1875:  0xB596,\n\t1876:  0xB597,\n\t1877:  0xB598,\n\t1878:  0xB599,\n\t1879:  0xB59A,\n\t1880:  0xB59B,\n\t1881:  0xB59C,\n\t1882:  0xB59D,\n\t1883:  0xB59E,\n\t1884:  0xB59F,\n\t1885:  0xB5A2,\n\t1886:  0xB5A3,\n\t1887:  0xB5A5,\n\t1888:  0xB5A6,\n\t1889:  0xB5A7,\n\t1890:  0xB5A9,\n\t1891:  0xB5AC,\n\t1892:  0xB5AD,\n\t1893:  0xB5AE,\n\t1894:  0xB5AF,\n\t1895:  0xB5B2,\n\t1896:  0xB5B6,\n\t1897:  0xB5B7,\n\t1898:  0xB5B8,\n\t1899:  0xB5B9,\n\t1900:  0xB5BA,\n\t1901:  0xB5BE,\n\t1902:  0xB5BF,\n\t1903:  0xB5C1,\n\t1904:  0xB5C2,\n\t1905:  0xB5C3,\n\t1906:  0xB5C5,\n\t1907:  0xB5C6,\n\t1908:  0xB5C7,\n\t1909:  0xB5C8,\n\t1910:  0xB5C9,\n\t1911:  0xB5CA,\n\t1912:  0xB5CB,\n\t1913:  0xB5CE,\n\t1914:  0xB5D2,\n\t1915:  0xB5D3,\n\t1916:  0xB5D4,\n\t1917:  0xB5D5,\n\t1918:  0xB5D6,\n\t1919:  0xB5D7,\n\t1920:  0xB5D9,\n\t1921:  0xB5DA,\n\t1922:  0xB5DB,\n\t1923:  0xB5DC,\n\t1924:  0xB5DD,\n\t1925:  0xB5DE,\n\t1926:  0xB5DF,\n\t1927:  0xB5E0,\n\t1928:  0xB5E1,\n\t1929:  0xB5E2,\n\t1930:  0xB5E3,\n\t1931:  0xB5E4,\n\t1932:  0xB5E5,\n\t1933:  0xB5E6,\n\t1934:  0xB5E7,\n\t1935:  0xB5E8,\n\t1936:  0xB5E9,\n\t1937:  0xB5EA,\n\t1938:  0xB5EB,\n\t1939:  0xB5ED,\n\t1940:  0xB5EE,\n\t1941:  0xB5EF,\n\t1942:  0xB5F0,\n\t1943:  0xB5F1,\n\t1944:  0xB5F2,\n\t1945:  0xB5F3,\n\t1946:  0xB5F4,\n\t1947:  0xB5F5,\n\t1948:  0xB5F6,\n\t1949:  0xB5F7,\n\t1950:  0xB5F8,\n\t1951:  0xB5F9,\n\t1952:  0xB5FA,\n\t1953:  0xB5FB,\n\t1954:  0xB5FC,\n\t1955:  0xB5FD,\n\t1956:  0xB5FE,\n\t1957:  0xB5FF,\n\t1958:  0xB600,\n\t1959:  0xB601,\n\t1960:  0xB602,\n\t1961:  0xB603,\n\t1962:  0xB604,\n\t1963:  0xB605,\n\t1964:  0xB606,\n\t1965:  0xB607,\n\t1966:  0xB608,\n\t1967:  0xB609,\n\t1968:  0xB60A,\n\t1969:  0xB60B,\n\t1970:  0xB60C,\n\t1971:  0xB60D,\n\t1972:  0xB60E,\n\t1973:  0xB60F,\n\t1974:  0xB612,\n\t1975:  0xB613,\n\t1976:  0xB615,\n\t1977:  0xB616,\n\t1978:  0xB617,\n\t1979:  0xB619,\n\t1980:  0xB61A,\n\t1981:  0xB61B,\n\t1982:  0xB61C,\n\t1983:  0xB61D,\n\t1984:  0xB61E,\n\t1985:  0xB61F,\n\t1986:  0xB620,\n\t1987:  0xB621,\n\t1988:  0xB622,\n\t1989:  0xB623,\n\t1990:  0xB624,\n\t1991:  0xB626,\n\t1992:  0xB627,\n\t1993:  0xB628,\n\t1994:  0xB629,\n\t1995:  0xB62A,\n\t1996:  0xB62B,\n\t1997:  0xB62D,\n\t1998:  0xB62E,\n\t1999:  0xB62F,\n\t2000:  0xB630,\n\t2001:  0xB631,\n\t2002:  0xB632,\n\t2003:  0xB633,\n\t2004:  0xB635,\n\t2005:  0xB636,\n\t2006:  0xB637,\n\t2007:  0xB638,\n\t2008:  0xB639,\n\t2009:  0xB63A,\n\t2010:  0xB63B,\n\t2011:  0xB63C,\n\t2012:  0xB63D,\n\t2013:  0xB63E,\n\t2014:  0xB63F,\n\t2015:  0xB640,\n\t2016:  0xB641,\n\t2017:  0xB642,\n\t2018:  0xB643,\n\t2019:  0xB644,\n\t2020:  0xB645,\n\t2021:  0xB646,\n\t2022:  0xB647,\n\t2023:  0xB649,\n\t2024:  0xB64A,\n\t2025:  0xB64B,\n\t2026:  0xB64C,\n\t2027:  0xB64D,\n\t2028:  0xB64E,\n\t2029:  0xB64F,\n\t2030:  0xB650,\n\t2031:  0xB651,\n\t2032:  0xB652,\n\t2033:  0xB653,\n\t2034:  0xB654,\n\t2035:  0xB655,\n\t2036:  0xB656,\n\t2037:  0xB657,\n\t2038:  0xB658,\n\t2039:  0xB659,\n\t2040:  0xB65A,\n\t2041:  0xB65B,\n\t2042:  0xB65C,\n\t2043:  0xB65D,\n\t2044:  0xB65E,\n\t2045:  0xB65F,\n\t2046:  0xB660,\n\t2047:  0xB661,\n\t2048:  0xB662,\n\t2049:  0xB663,\n\t2050:  0xB665,\n\t2051:  0xB666,\n\t2052:  0xB667,\n\t2053:  0xB669,\n\t2054:  0xB66A,\n\t2055:  0xB66B,\n\t2056:  0xB66C,\n\t2057:  0xB66D,\n\t2058:  0xB66E,\n\t2059:  0xB66F,\n\t2060:  0xB670,\n\t2061:  0xB671,\n\t2062:  0xB672,\n\t2063:  0xB673,\n\t2064:  0xB674,\n\t2065:  0xB675,\n\t2066:  0xB676,\n\t2067:  0xB677,\n\t2068:  0xB678,\n\t2069:  0xB679,\n\t2070:  0xB67A,\n\t2071:  0xB67B,\n\t2072:  0xB67C,\n\t2073:  0xB67D,\n\t2074:  0xB67E,\n\t2075:  0xB67F,\n\t2076:  0xB680,\n\t2077:  0xB681,\n\t2078:  0xB682,\n\t2079:  0xB683,\n\t2080:  0xB684,\n\t2081:  0xB685,\n\t2082:  0xB686,\n\t2083:  0xB687,\n\t2084:  0xB688,\n\t2085:  0xB689,\n\t2086:  0xB68A,\n\t2087:  0xB68B,\n\t2088:  0xB68C,\n\t2089:  0xB68D,\n\t2090:  0xB68E,\n\t2091:  0xB68F,\n\t2092:  0xB690,\n\t2093:  0xB691,\n\t2094:  0xB692,\n\t2095:  0xB693,\n\t2096:  0xB694,\n\t2097:  0xB695,\n\t2098:  0xB696,\n\t2099:  0xB697,\n\t2100:  0xB698,\n\t2101:  0xB699,\n\t2102:  0xB69A,\n\t2103:  0xB69B,\n\t2104:  0xB69E,\n\t2105:  0xB69F,\n\t2106:  0xB6A1,\n\t2107:  0xB6A2,\n\t2108:  0xB6A3,\n\t2109:  0xB6A5,\n\t2110:  0xB6A6,\n\t2111:  0xB6A7,\n\t2112:  0xB6A8,\n\t2113:  0xB6A9,\n\t2114:  0xB6AA,\n\t2115:  0xB6AD,\n\t2116:  0xB6AE,\n\t2117:  0xB6AF,\n\t2118:  0xB6B0,\n\t2119:  0xB6B2,\n\t2120:  0xB6B3,\n\t2121:  0xB6B4,\n\t2122:  0xB6B5,\n\t2123:  0xB6B6,\n\t2124:  0xB6B7,\n\t2125:  0xB6B8,\n\t2126:  0xB6B9,\n\t2127:  0xB6BA,\n\t2128:  0xB6BB,\n\t2129:  0xB6BC,\n\t2130:  0xB6BD,\n\t2131:  0xB6BE,\n\t2132:  0xB6BF,\n\t2133:  0xB6C0,\n\t2134:  0xB6C1,\n\t2135:  0xB6C2,\n\t2136:  0xB6C3,\n\t2137:  0xB6C4,\n\t2138:  0xB6C5,\n\t2139:  0xB6C6,\n\t2140:  0xB6C7,\n\t2141:  0xB6C8,\n\t2142:  0xB6C9,\n\t2143:  0xB6CA,\n\t2144:  0xB6CB,\n\t2145:  0xB6CC,\n\t2146:  0xB6CD,\n\t2147:  0xB6CE,\n\t2148:  0xB6CF,\n\t2149:  0xB6D0,\n\t2150:  0xB6D1,\n\t2151:  0xB6D2,\n\t2152:  0xB6D3,\n\t2153:  0xB6D5,\n\t2154:  0xB6D6,\n\t2155:  0xB6D7,\n\t2156:  0xB6D8,\n\t2157:  0xB6D9,\n\t2158:  0xB6DA,\n\t2159:  0xB6DB,\n\t2160:  0xB6DC,\n\t2161:  0xB6DD,\n\t2162:  0xB6DE,\n\t2163:  0xB6DF,\n\t2164:  0xB6E0,\n\t2165:  0xB6E1,\n\t2166:  0xB6E2,\n\t2167:  0xB6E3,\n\t2168:  0xB6E4,\n\t2169:  0xB6E5,\n\t2170:  0xB6E6,\n\t2171:  0xB6E7,\n\t2172:  0xB6E8,\n\t2173:  0xB6E9,\n\t2174:  0xB6EA,\n\t2175:  0xB6EB,\n\t2176:  0xB6EC,\n\t2177:  0xB6ED,\n\t2178:  0xB6EE,\n\t2179:  0xB6EF,\n\t2180:  0xB6F1,\n\t2181:  0xB6F2,\n\t2182:  0xB6F3,\n\t2183:  0xB6F5,\n\t2184:  0xB6F6,\n\t2185:  0xB6F7,\n\t2186:  0xB6F9,\n\t2187:  0xB6FA,\n\t2188:  0xB6FB,\n\t2189:  0xB6FC,\n\t2190:  0xB6FD,\n\t2191:  0xB6FE,\n\t2192:  0xB6FF,\n\t2193:  0xB702,\n\t2194:  0xB703,\n\t2195:  0xB704,\n\t2196:  0xB706,\n\t2197:  0xB707,\n\t2198:  0xB708,\n\t2199:  0xB709,\n\t2200:  0xB70A,\n\t2201:  0xB70B,\n\t2202:  0xB70C,\n\t2203:  0xB70D,\n\t2204:  0xB70E,\n\t2205:  0xB70F,\n\t2206:  0xB710,\n\t2207:  0xB711,\n\t2208:  0xB712,\n\t2209:  0xB713,\n\t2210:  0xB714,\n\t2211:  0xB715,\n\t2212:  0xB716,\n\t2213:  0xB717,\n\t2214:  0xB718,\n\t2215:  0xB719,\n\t2216:  0xB71A,\n\t2217:  0xB71B,\n\t2218:  0xB71C,\n\t2219:  0xB71D,\n\t2220:  0xB71E,\n\t2221:  0xB71F,\n\t2222:  0xB720,\n\t2223:  0xB721,\n\t2224:  0xB722,\n\t2225:  0xB723,\n\t2226:  0xB724,\n\t2227:  0xB725,\n\t2228:  0xB726,\n\t2229:  0xB727,\n\t2230:  0xB72A,\n\t2231:  0xB72B,\n\t2232:  0xB72D,\n\t2233:  0xB72E,\n\t2234:  0xB731,\n\t2235:  0xB732,\n\t2236:  0xB733,\n\t2237:  0xB734,\n\t2238:  0xB735,\n\t2239:  0xB736,\n\t2240:  0xB737,\n\t2241:  0xB73A,\n\t2242:  0xB73C,\n\t2243:  0xB73D,\n\t2244:  0xB73E,\n\t2245:  0xB73F,\n\t2246:  0xB740,\n\t2247:  0xB741,\n\t2248:  0xB742,\n\t2249:  0xB743,\n\t2250:  0xB745,\n\t2251:  0xB746,\n\t2252:  0xB747,\n\t2253:  0xB749,\n\t2254:  0xB74A,\n\t2255:  0xB74B,\n\t2256:  0xB74D,\n\t2257:  0xB74E,\n\t2258:  0xB74F,\n\t2259:  0xB750,\n\t2260:  0xB751,\n\t2261:  0xB752,\n\t2262:  0xB753,\n\t2263:  0xB756,\n\t2264:  0xB757,\n\t2265:  0xB758,\n\t2266:  0xB759,\n\t2267:  0xB75A,\n\t2268:  0xB75B,\n\t2269:  0xB75C,\n\t2270:  0xB75D,\n\t2271:  0xB75E,\n\t2272:  0xB75F,\n\t2273:  0xB761,\n\t2274:  0xB762,\n\t2275:  0xB763,\n\t2276:  0xB765,\n\t2277:  0xB766,\n\t2278:  0xB767,\n\t2279:  0xB769,\n\t2280:  0xB76A,\n\t2281:  0xB76B,\n\t2282:  0xB76C,\n\t2283:  0xB76D,\n\t2284:  0xB76E,\n\t2285:  0xB76F,\n\t2286:  0xB772,\n\t2287:  0xB774,\n\t2288:  0xB776,\n\t2289:  0xB777,\n\t2290:  0xB778,\n\t2291:  0xB779,\n\t2292:  0xB77A,\n\t2293:  0xB77B,\n\t2294:  0xB77E,\n\t2295:  0xB77F,\n\t2296:  0xB781,\n\t2297:  0xB782,\n\t2298:  0xB783,\n\t2299:  0xB785,\n\t2300:  0xB786,\n\t2301:  0xB787,\n\t2302:  0xB788,\n\t2303:  0xB789,\n\t2304:  0xB78A,\n\t2305:  0xB78B,\n\t2306:  0xB78E,\n\t2307:  0xB793,\n\t2308:  0xB794,\n\t2309:  0xB795,\n\t2310:  0xB79A,\n\t2311:  0xB79B,\n\t2312:  0xB79D,\n\t2313:  0xB79E,\n\t2314:  0xB79F,\n\t2315:  0xB7A1,\n\t2316:  0xB7A2,\n\t2317:  0xB7A3,\n\t2318:  0xB7A4,\n\t2319:  0xB7A5,\n\t2320:  0xB7A6,\n\t2321:  0xB7A7,\n\t2322:  0xB7AA,\n\t2323:  0xB7AE,\n\t2324:  0xB7AF,\n\t2325:  0xB7B0,\n\t2326:  0xB7B1,\n\t2327:  0xB7B2,\n\t2328:  0xB7B3,\n\t2329:  0xB7B6,\n\t2330:  0xB7B7,\n\t2331:  0xB7B9,\n\t2332:  0xB7BA,\n\t2333:  0xB7BB,\n\t2334:  0xB7BC,\n\t2335:  0xB7BD,\n\t2336:  0xB7BE,\n\t2337:  0xB7BF,\n\t2338:  0xB7C0,\n\t2339:  0xB7C1,\n\t2340:  0xB7C2,\n\t2341:  0xB7C3,\n\t2342:  0xB7C4,\n\t2343:  0xB7C5,\n\t2344:  0xB7C6,\n\t2345:  0xB7C8,\n\t2346:  0xB7CA,\n\t2347:  0xB7CB,\n\t2348:  0xB7CC,\n\t2349:  0xB7CD,\n\t2350:  0xB7CE,\n\t2351:  0xB7CF,\n\t2352:  0xB7D0,\n\t2353:  0xB7D1,\n\t2354:  0xB7D2,\n\t2355:  0xB7D3,\n\t2356:  0xB7D4,\n\t2357:  0xB7D5,\n\t2358:  0xB7D6,\n\t2359:  0xB7D7,\n\t2360:  0xB7D8,\n\t2361:  0xB7D9,\n\t2362:  0xB7DA,\n\t2363:  0xB7DB,\n\t2364:  0xB7DC,\n\t2365:  0xB7DD,\n\t2366:  0xB7DE,\n\t2367:  0xB7DF,\n\t2368:  0xB7E0,\n\t2369:  0xB7E1,\n\t2370:  0xB7E2,\n\t2371:  0xB7E3,\n\t2372:  0xB7E4,\n\t2373:  0xB7E5,\n\t2374:  0xB7E6,\n\t2375:  0xB7E7,\n\t2376:  0xB7E8,\n\t2377:  0xB7E9,\n\t2378:  0xB7EA,\n\t2379:  0xB7EB,\n\t2380:  0xB7EE,\n\t2381:  0xB7EF,\n\t2382:  0xB7F1,\n\t2383:  0xB7F2,\n\t2384:  0xB7F3,\n\t2385:  0xB7F5,\n\t2386:  0xB7F6,\n\t2387:  0xB7F7,\n\t2388:  0xB7F8,\n\t2389:  0xB7F9,\n\t2390:  0xB7FA,\n\t2391:  0xB7FB,\n\t2392:  0xB7FE,\n\t2393:  0xB802,\n\t2394:  0xB803,\n\t2395:  0xB804,\n\t2396:  0xB805,\n\t2397:  0xB806,\n\t2398:  0xB80A,\n\t2399:  0xB80B,\n\t2400:  0xB80D,\n\t2401:  0xB80E,\n\t2402:  0xB80F,\n\t2403:  0xB811,\n\t2404:  0xB812,\n\t2405:  0xB813,\n\t2406:  0xB814,\n\t2407:  0xB815,\n\t2408:  0xB816,\n\t2409:  0xB817,\n\t2410:  0xB81A,\n\t2411:  0xB81C,\n\t2412:  0xB81E,\n\t2413:  0xB81F,\n\t2414:  0xB820,\n\t2415:  0xB821,\n\t2416:  0xB822,\n\t2417:  0xB823,\n\t2418:  0xB826,\n\t2419:  0xB827,\n\t2420:  0xB829,\n\t2421:  0xB82A,\n\t2422:  0xB82B,\n\t2423:  0xB82D,\n\t2424:  0xB82E,\n\t2425:  0xB82F,\n\t2426:  0xB830,\n\t2427:  0xB831,\n\t2428:  0xB832,\n\t2429:  0xB833,\n\t2430:  0xB836,\n\t2431:  0xB83A,\n\t2432:  0xB83B,\n\t2433:  0xB83C,\n\t2434:  0xB83D,\n\t2435:  0xB83E,\n\t2436:  0xB83F,\n\t2437:  0xB841,\n\t2438:  0xB842,\n\t2439:  0xB843,\n\t2440:  0xB845,\n\t2441:  0xB846,\n\t2442:  0xB847,\n\t2443:  0xB848,\n\t2444:  0xB849,\n\t2445:  0xB84A,\n\t2446:  0xB84B,\n\t2447:  0xB84C,\n\t2448:  0xB84D,\n\t2449:  0xB84E,\n\t2450:  0xB84F,\n\t2451:  0xB850,\n\t2452:  0xB852,\n\t2453:  0xB854,\n\t2454:  0xB855,\n\t2455:  0xB856,\n\t2456:  0xB857,\n\t2457:  0xB858,\n\t2458:  0xB859,\n\t2459:  0xB85A,\n\t2460:  0xB85B,\n\t2461:  0xB85E,\n\t2462:  0xB85F,\n\t2463:  0xB861,\n\t2464:  0xB862,\n\t2465:  0xB863,\n\t2466:  0xB865,\n\t2467:  0xB866,\n\t2468:  0xB867,\n\t2469:  0xB868,\n\t2470:  0xB869,\n\t2471:  0xB86A,\n\t2472:  0xB86B,\n\t2473:  0xB86E,\n\t2474:  0xB870,\n\t2475:  0xB872,\n\t2476:  0xB873,\n\t2477:  0xB874,\n\t2478:  0xB875,\n\t2479:  0xB876,\n\t2480:  0xB877,\n\t2481:  0xB879,\n\t2482:  0xB87A,\n\t2483:  0xB87B,\n\t2484:  0xB87D,\n\t2485:  0xB87E,\n\t2486:  0xB87F,\n\t2487:  0xB880,\n\t2488:  0xB881,\n\t2489:  0xB882,\n\t2490:  0xB883,\n\t2491:  0xB884,\n\t2492:  0xB885,\n\t2493:  0xB886,\n\t2494:  0xB887,\n\t2495:  0xB888,\n\t2496:  0xB889,\n\t2497:  0xB88A,\n\t2498:  0xB88B,\n\t2499:  0xB88C,\n\t2500:  0xB88E,\n\t2501:  0xB88F,\n\t2502:  0xB890,\n\t2503:  0xB891,\n\t2504:  0xB892,\n\t2505:  0xB893,\n\t2506:  0xB894,\n\t2507:  0xB895,\n\t2508:  0xB896,\n\t2509:  0xB897,\n\t2510:  0xB898,\n\t2511:  0xB899,\n\t2512:  0xB89A,\n\t2513:  0xB89B,\n\t2514:  0xB89C,\n\t2515:  0xB89D,\n\t2516:  0xB89E,\n\t2517:  0xB89F,\n\t2518:  0xB8A0,\n\t2519:  0xB8A1,\n\t2520:  0xB8A2,\n\t2521:  0xB8A3,\n\t2522:  0xB8A4,\n\t2523:  0xB8A5,\n\t2524:  0xB8A6,\n\t2525:  0xB8A7,\n\t2526:  0xB8A9,\n\t2527:  0xB8AA,\n\t2528:  0xB8AB,\n\t2529:  0xB8AC,\n\t2530:  0xB8AD,\n\t2531:  0xB8AE,\n\t2532:  0xB8AF,\n\t2533:  0xB8B1,\n\t2534:  0xB8B2,\n\t2535:  0xB8B3,\n\t2536:  0xB8B5,\n\t2537:  0xB8B6,\n\t2538:  0xB8B7,\n\t2539:  0xB8B9,\n\t2540:  0xB8BA,\n\t2541:  0xB8BB,\n\t2542:  0xB8BC,\n\t2543:  0xB8BD,\n\t2544:  0xB8BE,\n\t2545:  0xB8BF,\n\t2546:  0xB8C2,\n\t2547:  0xB8C4,\n\t2548:  0xB8C6,\n\t2549:  0xB8C7,\n\t2550:  0xB8C8,\n\t2551:  0xB8C9,\n\t2552:  0xB8CA,\n\t2553:  0xB8CB,\n\t2554:  0xB8CD,\n\t2555:  0xB8CE,\n\t2556:  0xB8CF,\n\t2557:  0xB8D1,\n\t2558:  0xB8D2,\n\t2559:  0xB8D3,\n\t2560:  0xB8D5,\n\t2561:  0xB8D6,\n\t2562:  0xB8D7,\n\t2563:  0xB8D8,\n\t2564:  0xB8D9,\n\t2565:  0xB8DA,\n\t2566:  0xB8DB,\n\t2567:  0xB8DC,\n\t2568:  0xB8DE,\n\t2569:  0xB8E0,\n\t2570:  0xB8E2,\n\t2571:  0xB8E3,\n\t2572:  0xB8E4,\n\t2573:  0xB8E5,\n\t2574:  0xB8E6,\n\t2575:  0xB8E7,\n\t2576:  0xB8EA,\n\t2577:  0xB8EB,\n\t2578:  0xB8ED,\n\t2579:  0xB8EE,\n\t2580:  0xB8EF,\n\t2581:  0xB8F1,\n\t2582:  0xB8F2,\n\t2583:  0xB8F3,\n\t2584:  0xB8F4,\n\t2585:  0xB8F5,\n\t2586:  0xB8F6,\n\t2587:  0xB8F7,\n\t2588:  0xB8FA,\n\t2589:  0xB8FC,\n\t2590:  0xB8FE,\n\t2591:  0xB8FF,\n\t2592:  0xB900,\n\t2593:  0xB901,\n\t2594:  0xB902,\n\t2595:  0xB903,\n\t2596:  0xB905,\n\t2597:  0xB906,\n\t2598:  0xB907,\n\t2599:  0xB908,\n\t2600:  0xB909,\n\t2601:  0xB90A,\n\t2602:  0xB90B,\n\t2603:  0xB90C,\n\t2604:  0xB90D,\n\t2605:  0xB90E,\n\t2606:  0xB90F,\n\t2607:  0xB910,\n\t2608:  0xB911,\n\t2609:  0xB912,\n\t2610:  0xB913,\n\t2611:  0xB914,\n\t2612:  0xB915,\n\t2613:  0xB916,\n\t2614:  0xB917,\n\t2615:  0xB919,\n\t2616:  0xB91A,\n\t2617:  0xB91B,\n\t2618:  0xB91C,\n\t2619:  0xB91D,\n\t2620:  0xB91E,\n\t2621:  0xB91F,\n\t2622:  0xB921,\n\t2623:  0xB922,\n\t2624:  0xB923,\n\t2625:  0xB924,\n\t2626:  0xB925,\n\t2627:  0xB926,\n\t2628:  0xB927,\n\t2629:  0xB928,\n\t2630:  0xB929,\n\t2631:  0xB92A,\n\t2632:  0xB92B,\n\t2633:  0xB92C,\n\t2634:  0xB92D,\n\t2635:  0xB92E,\n\t2636:  0xB92F,\n\t2637:  0xB930,\n\t2638:  0xB931,\n\t2639:  0xB932,\n\t2640:  0xB933,\n\t2641:  0xB934,\n\t2642:  0xB935,\n\t2643:  0xB936,\n\t2644:  0xB937,\n\t2645:  0xB938,\n\t2646:  0xB939,\n\t2647:  0xB93A,\n\t2648:  0xB93B,\n\t2649:  0xB93E,\n\t2650:  0xB93F,\n\t2651:  0xB941,\n\t2652:  0xB942,\n\t2653:  0xB943,\n\t2654:  0xB945,\n\t2655:  0xB946,\n\t2656:  0xB947,\n\t2657:  0xB948,\n\t2658:  0xB949,\n\t2659:  0xB94A,\n\t2660:  0xB94B,\n\t2661:  0xB94D,\n\t2662:  0xB94E,\n\t2663:  0xB950,\n\t2664:  0xB952,\n\t2665:  0xB953,\n\t2666:  0xB954,\n\t2667:  0xB955,\n\t2668:  0xB956,\n\t2669:  0xB957,\n\t2670:  0xB95A,\n\t2671:  0xB95B,\n\t2672:  0xB95D,\n\t2673:  0xB95E,\n\t2674:  0xB95F,\n\t2675:  0xB961,\n\t2676:  0xB962,\n\t2677:  0xB963,\n\t2678:  0xB964,\n\t2679:  0xB965,\n\t2680:  0xB966,\n\t2681:  0xB967,\n\t2682:  0xB96A,\n\t2683:  0xB96C,\n\t2684:  0xB96E,\n\t2685:  0xB96F,\n\t2686:  0xB970,\n\t2687:  0xB971,\n\t2688:  0xB972,\n\t2689:  0xB973,\n\t2690:  0xB976,\n\t2691:  0xB977,\n\t2692:  0xB979,\n\t2693:  0xB97A,\n\t2694:  0xB97B,\n\t2695:  0xB97D,\n\t2696:  0xB97E,\n\t2697:  0xB97F,\n\t2698:  0xB980,\n\t2699:  0xB981,\n\t2700:  0xB982,\n\t2701:  0xB983,\n\t2702:  0xB986,\n\t2703:  0xB988,\n\t2704:  0xB98B,\n\t2705:  0xB98C,\n\t2706:  0xB98F,\n\t2707:  0xB990,\n\t2708:  0xB991,\n\t2709:  0xB992,\n\t2710:  0xB993,\n\t2711:  0xB994,\n\t2712:  0xB995,\n\t2713:  0xB996,\n\t2714:  0xB997,\n\t2715:  0xB998,\n\t2716:  0xB999,\n\t2717:  0xB99A,\n\t2718:  0xB99B,\n\t2719:  0xB99C,\n\t2720:  0xB99D,\n\t2721:  0xB99E,\n\t2722:  0xB99F,\n\t2723:  0xB9A0,\n\t2724:  0xB9A1,\n\t2725:  0xB9A2,\n\t2726:  0xB9A3,\n\t2727:  0xB9A4,\n\t2728:  0xB9A5,\n\t2729:  0xB9A6,\n\t2730:  0xB9A7,\n\t2731:  0xB9A8,\n\t2732:  0xB9A9,\n\t2733:  0xB9AA,\n\t2734:  0xB9AB,\n\t2735:  0xB9AE,\n\t2736:  0xB9AF,\n\t2737:  0xB9B1,\n\t2738:  0xB9B2,\n\t2739:  0xB9B3,\n\t2740:  0xB9B5,\n\t2741:  0xB9B6,\n\t2742:  0xB9B7,\n\t2743:  0xB9B8,\n\t2744:  0xB9B9,\n\t2745:  0xB9BA,\n\t2746:  0xB9BB,\n\t2747:  0xB9BE,\n\t2748:  0xB9C0,\n\t2749:  0xB9C2,\n\t2750:  0xB9C3,\n\t2751:  0xB9C4,\n\t2752:  0xB9C5,\n\t2753:  0xB9C6,\n\t2754:  0xB9C7,\n\t2755:  0xB9CA,\n\t2756:  0xB9CB,\n\t2757:  0xB9CD,\n\t2758:  0xB9D3,\n\t2759:  0xB9D4,\n\t2760:  0xB9D5,\n\t2761:  0xB9D6,\n\t2762:  0xB9D7,\n\t2763:  0xB9DA,\n\t2764:  0xB9DC,\n\t2765:  0xB9DF,\n\t2766:  0xB9E0,\n\t2767:  0xB9E2,\n\t2768:  0xB9E6,\n\t2769:  0xB9E7,\n\t2770:  0xB9E9,\n\t2771:  0xB9EA,\n\t2772:  0xB9EB,\n\t2773:  0xB9ED,\n\t2774:  0xB9EE,\n\t2775:  0xB9EF,\n\t2776:  0xB9F0,\n\t2777:  0xB9F1,\n\t2778:  0xB9F2,\n\t2779:  0xB9F3,\n\t2780:  0xB9F6,\n\t2781:  0xB9FB,\n\t2782:  0xB9FC,\n\t2783:  0xB9FD,\n\t2784:  0xB9FE,\n\t2785:  0xB9FF,\n\t2786:  0xBA02,\n\t2787:  0xBA03,\n\t2788:  0xBA04,\n\t2789:  0xBA05,\n\t2790:  0xBA06,\n\t2791:  0xBA07,\n\t2792:  0xBA09,\n\t2793:  0xBA0A,\n\t2794:  0xBA0B,\n\t2795:  0xBA0C,\n\t2796:  0xBA0D,\n\t2797:  0xBA0E,\n\t2798:  0xBA0F,\n\t2799:  0xBA10,\n\t2800:  0xBA11,\n\t2801:  0xBA12,\n\t2802:  0xBA13,\n\t2803:  0xBA14,\n\t2804:  0xBA16,\n\t2805:  0xBA17,\n\t2806:  0xBA18,\n\t2807:  0xBA19,\n\t2808:  0xBA1A,\n\t2809:  0xBA1B,\n\t2810:  0xBA1C,\n\t2811:  0xBA1D,\n\t2812:  0xBA1E,\n\t2813:  0xBA1F,\n\t2814:  0xBA20,\n\t2815:  0xBA21,\n\t2816:  0xBA22,\n\t2817:  0xBA23,\n\t2818:  0xBA24,\n\t2819:  0xBA25,\n\t2820:  0xBA26,\n\t2821:  0xBA27,\n\t2822:  0xBA28,\n\t2823:  0xBA29,\n\t2824:  0xBA2A,\n\t2825:  0xBA2B,\n\t2826:  0xBA2C,\n\t2827:  0xBA2D,\n\t2828:  0xBA2E,\n\t2829:  0xBA2F,\n\t2830:  0xBA30,\n\t2831:  0xBA31,\n\t2832:  0xBA32,\n\t2833:  0xBA33,\n\t2834:  0xBA34,\n\t2835:  0xBA35,\n\t2836:  0xBA36,\n\t2837:  0xBA37,\n\t2838:  0xBA3A,\n\t2839:  0xBA3B,\n\t2840:  0xBA3D,\n\t2841:  0xBA3E,\n\t2842:  0xBA3F,\n\t2843:  0xBA41,\n\t2844:  0xBA43,\n\t2845:  0xBA44,\n\t2846:  0xBA45,\n\t2847:  0xBA46,\n\t2848:  0xBA47,\n\t2849:  0xBA4A,\n\t2850:  0xBA4C,\n\t2851:  0xBA4F,\n\t2852:  0xBA50,\n\t2853:  0xBA51,\n\t2854:  0xBA52,\n\t2855:  0xBA56,\n\t2856:  0xBA57,\n\t2857:  0xBA59,\n\t2858:  0xBA5A,\n\t2859:  0xBA5B,\n\t2860:  0xBA5D,\n\t2861:  0xBA5E,\n\t2862:  0xBA5F,\n\t2863:  0xBA60,\n\t2864:  0xBA61,\n\t2865:  0xBA62,\n\t2866:  0xBA63,\n\t2867:  0xBA66,\n\t2868:  0xBA6A,\n\t2869:  0xBA6B,\n\t2870:  0xBA6C,\n\t2871:  0xBA6D,\n\t2872:  0xBA6E,\n\t2873:  0xBA6F,\n\t2874:  0xBA72,\n\t2875:  0xBA73,\n\t2876:  0xBA75,\n\t2877:  0xBA76,\n\t2878:  0xBA77,\n\t2879:  0xBA79,\n\t2880:  0xBA7A,\n\t2881:  0xBA7B,\n\t2882:  0xBA7C,\n\t2883:  0xBA7D,\n\t2884:  0xBA7E,\n\t2885:  0xBA7F,\n\t2886:  0xBA80,\n\t2887:  0xBA81,\n\t2888:  0xBA82,\n\t2889:  0xBA86,\n\t2890:  0xBA88,\n\t2891:  0xBA89,\n\t2892:  0xBA8A,\n\t2893:  0xBA8B,\n\t2894:  0xBA8D,\n\t2895:  0xBA8E,\n\t2896:  0xBA8F,\n\t2897:  0xBA90,\n\t2898:  0xBA91,\n\t2899:  0xBA92,\n\t2900:  0xBA93,\n\t2901:  0xBA94,\n\t2902:  0xBA95,\n\t2903:  0xBA96,\n\t2904:  0xBA97,\n\t2905:  0xBA98,\n\t2906:  0xBA99,\n\t2907:  0xBA9A,\n\t2908:  0xBA9B,\n\t2909:  0xBA9C,\n\t2910:  0xBA9D,\n\t2911:  0xBA9E,\n\t2912:  0xBA9F,\n\t2913:  0xBAA0,\n\t2914:  0xBAA1,\n\t2915:  0xBAA2,\n\t2916:  0xBAA3,\n\t2917:  0xBAA4,\n\t2918:  0xBAA5,\n\t2919:  0xBAA6,\n\t2920:  0xBAA7,\n\t2921:  0xBAAA,\n\t2922:  0xBAAD,\n\t2923:  0xBAAE,\n\t2924:  0xBAAF,\n\t2925:  0xBAB1,\n\t2926:  0xBAB3,\n\t2927:  0xBAB4,\n\t2928:  0xBAB5,\n\t2929:  0xBAB6,\n\t2930:  0xBAB7,\n\t2931:  0xBABA,\n\t2932:  0xBABC,\n\t2933:  0xBABE,\n\t2934:  0xBABF,\n\t2935:  0xBAC0,\n\t2936:  0xBAC1,\n\t2937:  0xBAC2,\n\t2938:  0xBAC3,\n\t2939:  0xBAC5,\n\t2940:  0xBAC6,\n\t2941:  0xBAC7,\n\t2942:  0xBAC9,\n\t2943:  0xBACA,\n\t2944:  0xBACB,\n\t2945:  0xBACC,\n\t2946:  0xBACD,\n\t2947:  0xBACE,\n\t2948:  0xBACF,\n\t2949:  0xBAD0,\n\t2950:  0xBAD1,\n\t2951:  0xBAD2,\n\t2952:  0xBAD3,\n\t2953:  0xBAD4,\n\t2954:  0xBAD5,\n\t2955:  0xBAD6,\n\t2956:  0xBAD7,\n\t2957:  0xBADA,\n\t2958:  0xBADB,\n\t2959:  0xBADC,\n\t2960:  0xBADD,\n\t2961:  0xBADE,\n\t2962:  0xBADF,\n\t2963:  0xBAE0,\n\t2964:  0xBAE1,\n\t2965:  0xBAE2,\n\t2966:  0xBAE3,\n\t2967:  0xBAE4,\n\t2968:  0xBAE5,\n\t2969:  0xBAE6,\n\t2970:  0xBAE7,\n\t2971:  0xBAE8,\n\t2972:  0xBAE9,\n\t2973:  0xBAEA,\n\t2974:  0xBAEB,\n\t2975:  0xBAEC,\n\t2976:  0xBAED,\n\t2977:  0xBAEE,\n\t2978:  0xBAEF,\n\t2979:  0xBAF0,\n\t2980:  0xBAF1,\n\t2981:  0xBAF2,\n\t2982:  0xBAF3,\n\t2983:  0xBAF4,\n\t2984:  0xBAF5,\n\t2985:  0xBAF6,\n\t2986:  0xBAF7,\n\t2987:  0xBAF8,\n\t2988:  0xBAF9,\n\t2989:  0xBAFA,\n\t2990:  0xBAFB,\n\t2991:  0xBAFD,\n\t2992:  0xBAFE,\n\t2993:  0xBAFF,\n\t2994:  0xBB01,\n\t2995:  0xBB02,\n\t2996:  0xBB03,\n\t2997:  0xBB05,\n\t2998:  0xBB06,\n\t2999:  0xBB07,\n\t3000:  0xBB08,\n\t3001:  0xBB09,\n\t3002:  0xBB0A,\n\t3003:  0xBB0B,\n\t3004:  0xBB0C,\n\t3005:  0xBB0E,\n\t3006:  0xBB10,\n\t3007:  0xBB12,\n\t3008:  0xBB13,\n\t3009:  0xBB14,\n\t3010:  0xBB15,\n\t3011:  0xBB16,\n\t3012:  0xBB17,\n\t3013:  0xBB19,\n\t3014:  0xBB1A,\n\t3015:  0xBB1B,\n\t3016:  0xBB1D,\n\t3017:  0xBB1E,\n\t3018:  0xBB1F,\n\t3019:  0xBB21,\n\t3020:  0xBB22,\n\t3021:  0xBB23,\n\t3022:  0xBB24,\n\t3023:  0xBB25,\n\t3024:  0xBB26,\n\t3025:  0xBB27,\n\t3026:  0xBB28,\n\t3027:  0xBB2A,\n\t3028:  0xBB2C,\n\t3029:  0xBB2D,\n\t3030:  0xBB2E,\n\t3031:  0xBB2F,\n\t3032:  0xBB30,\n\t3033:  0xBB31,\n\t3034:  0xBB32,\n\t3035:  0xBB33,\n\t3036:  0xBB37,\n\t3037:  0xBB39,\n\t3038:  0xBB3A,\n\t3039:  0xBB3F,\n\t3040:  0xBB40,\n\t3041:  0xBB41,\n\t3042:  0xBB42,\n\t3043:  0xBB43,\n\t3044:  0xBB46,\n\t3045:  0xBB48,\n\t3046:  0xBB4A,\n\t3047:  0xBB4B,\n\t3048:  0xBB4C,\n\t3049:  0xBB4E,\n\t3050:  0xBB51,\n\t3051:  0xBB52,\n\t3052:  0xBB53,\n\t3053:  0xBB55,\n\t3054:  0xBB56,\n\t3055:  0xBB57,\n\t3056:  0xBB59,\n\t3057:  0xBB5A,\n\t3058:  0xBB5B,\n\t3059:  0xBB5C,\n\t3060:  0xBB5D,\n\t3061:  0xBB5E,\n\t3062:  0xBB5F,\n\t3063:  0xBB60,\n\t3064:  0xBB62,\n\t3065:  0xBB64,\n\t3066:  0xBB65,\n\t3067:  0xBB66,\n\t3068:  0xBB67,\n\t3069:  0xBB68,\n\t3070:  0xBB69,\n\t3071:  0xBB6A,\n\t3072:  0xBB6B,\n\t3073:  0xBB6D,\n\t3074:  0xBB6E,\n\t3075:  0xBB6F,\n\t3076:  0xBB70,\n\t3077:  0xBB71,\n\t3078:  0xBB72,\n\t3079:  0xBB73,\n\t3080:  0xBB74,\n\t3081:  0xBB75,\n\t3082:  0xBB76,\n\t3083:  0xBB77,\n\t3084:  0xBB78,\n\t3085:  0xBB79,\n\t3086:  0xBB7A,\n\t3087:  0xBB7B,\n\t3088:  0xBB7C,\n\t3089:  0xBB7D,\n\t3090:  0xBB7E,\n\t3091:  0xBB7F,\n\t3092:  0xBB80,\n\t3093:  0xBB81,\n\t3094:  0xBB82,\n\t3095:  0xBB83,\n\t3096:  0xBB84,\n\t3097:  0xBB85,\n\t3098:  0xBB86,\n\t3099:  0xBB87,\n\t3100:  0xBB89,\n\t3101:  0xBB8A,\n\t3102:  0xBB8B,\n\t3103:  0xBB8D,\n\t3104:  0xBB8E,\n\t3105:  0xBB8F,\n\t3106:  0xBB91,\n\t3107:  0xBB92,\n\t3108:  0xBB93,\n\t3109:  0xBB94,\n\t3110:  0xBB95,\n\t3111:  0xBB96,\n\t3112:  0xBB97,\n\t3113:  0xBB98,\n\t3114:  0xBB99,\n\t3115:  0xBB9A,\n\t3116:  0xBB9B,\n\t3117:  0xBB9C,\n\t3118:  0xBB9D,\n\t3119:  0xBB9E,\n\t3120:  0xBB9F,\n\t3121:  0xBBA0,\n\t3122:  0xBBA1,\n\t3123:  0xBBA2,\n\t3124:  0xBBA3,\n\t3125:  0xBBA5,\n\t3126:  0xBBA6,\n\t3127:  0xBBA7,\n\t3128:  0xBBA9,\n\t3129:  0xBBAA,\n\t3130:  0xBBAB,\n\t3131:  0xBBAD,\n\t3132:  0xBBAE,\n\t3133:  0xBBAF,\n\t3134:  0xBBB0,\n\t3135:  0xBBB1,\n\t3136:  0xBBB2,\n\t3137:  0xBBB3,\n\t3138:  0xBBB5,\n\t3139:  0xBBB6,\n\t3140:  0xBBB8,\n\t3141:  0xBBB9,\n\t3142:  0xBBBA,\n\t3143:  0xBBBB,\n\t3144:  0xBBBC,\n\t3145:  0xBBBD,\n\t3146:  0xBBBE,\n\t3147:  0xBBBF,\n\t3148:  0xBBC1,\n\t3149:  0xBBC2,\n\t3150:  0xBBC3,\n\t3151:  0xBBC5,\n\t3152:  0xBBC6,\n\t3153:  0xBBC7,\n\t3154:  0xBBC9,\n\t3155:  0xBBCA,\n\t3156:  0xBBCB,\n\t3157:  0xBBCC,\n\t3158:  0xBBCD,\n\t3159:  0xBBCE,\n\t3160:  0xBBCF,\n\t3161:  0xBBD1,\n\t3162:  0xBBD2,\n\t3163:  0xBBD4,\n\t3164:  0xBBD5,\n\t3165:  0xBBD6,\n\t3166:  0xBBD7,\n\t3167:  0xBBD8,\n\t3168:  0xBBD9,\n\t3169:  0xBBDA,\n\t3170:  0xBBDB,\n\t3171:  0xBBDC,\n\t3172:  0xBBDD,\n\t3173:  0xBBDE,\n\t3174:  0xBBDF,\n\t3175:  0xBBE0,\n\t3176:  0xBBE1,\n\t3177:  0xBBE2,\n\t3178:  0xBBE3,\n\t3179:  0xBBE4,\n\t3180:  0xBBE5,\n\t3181:  0xBBE6,\n\t3182:  0xBBE7,\n\t3183:  0xBBE8,\n\t3184:  0xBBE9,\n\t3185:  0xBBEA,\n\t3186:  0xBBEB,\n\t3187:  0xBBEC,\n\t3188:  0xBBED,\n\t3189:  0xBBEE,\n\t3190:  0xBBEF,\n\t3191:  0xBBF0,\n\t3192:  0xBBF1,\n\t3193:  0xBBF2,\n\t3194:  0xBBF3,\n\t3195:  0xBBF4,\n\t3196:  0xBBF5,\n\t3197:  0xBBF6,\n\t3198:  0xBBF7,\n\t3199:  0xBBFA,\n\t3200:  0xBBFB,\n\t3201:  0xBBFD,\n\t3202:  0xBBFE,\n\t3203:  0xBC01,\n\t3204:  0xBC03,\n\t3205:  0xBC04,\n\t3206:  0xBC05,\n\t3207:  0xBC06,\n\t3208:  0xBC07,\n\t3209:  0xBC0A,\n\t3210:  0xBC0E,\n\t3211:  0xBC10,\n\t3212:  0xBC12,\n\t3213:  0xBC13,\n\t3214:  0xBC19,\n\t3215:  0xBC1A,\n\t3216:  0xBC20,\n\t3217:  0xBC21,\n\t3218:  0xBC22,\n\t3219:  0xBC23,\n\t3220:  0xBC26,\n\t3221:  0xBC28,\n\t3222:  0xBC2A,\n\t3223:  0xBC2B,\n\t3224:  0xBC2C,\n\t3225:  0xBC2E,\n\t3226:  0xBC2F,\n\t3227:  0xBC32,\n\t3228:  0xBC33,\n\t3229:  0xBC35,\n\t3230:  0xBC36,\n\t3231:  0xBC37,\n\t3232:  0xBC39,\n\t3233:  0xBC3A,\n\t3234:  0xBC3B,\n\t3235:  0xBC3C,\n\t3236:  0xBC3D,\n\t3237:  0xBC3E,\n\t3238:  0xBC3F,\n\t3239:  0xBC42,\n\t3240:  0xBC46,\n\t3241:  0xBC47,\n\t3242:  0xBC48,\n\t3243:  0xBC4A,\n\t3244:  0xBC4B,\n\t3245:  0xBC4E,\n\t3246:  0xBC4F,\n\t3247:  0xBC51,\n\t3248:  0xBC52,\n\t3249:  0xBC53,\n\t3250:  0xBC54,\n\t3251:  0xBC55,\n\t3252:  0xBC56,\n\t3253:  0xBC57,\n\t3254:  0xBC58,\n\t3255:  0xBC59,\n\t3256:  0xBC5A,\n\t3257:  0xBC5B,\n\t3258:  0xBC5C,\n\t3259:  0xBC5E,\n\t3260:  0xBC5F,\n\t3261:  0xBC60,\n\t3262:  0xBC61,\n\t3263:  0xBC62,\n\t3264:  0xBC63,\n\t3265:  0xBC64,\n\t3266:  0xBC65,\n\t3267:  0xBC66,\n\t3268:  0xBC67,\n\t3269:  0xBC68,\n\t3270:  0xBC69,\n\t3271:  0xBC6A,\n\t3272:  0xBC6B,\n\t3273:  0xBC6C,\n\t3274:  0xBC6D,\n\t3275:  0xBC6E,\n\t3276:  0xBC6F,\n\t3277:  0xBC70,\n\t3278:  0xBC71,\n\t3279:  0xBC72,\n\t3280:  0xBC73,\n\t3281:  0xBC74,\n\t3282:  0xBC75,\n\t3283:  0xBC76,\n\t3284:  0xBC77,\n\t3285:  0xBC78,\n\t3286:  0xBC79,\n\t3287:  0xBC7A,\n\t3288:  0xBC7B,\n\t3289:  0xBC7C,\n\t3290:  0xBC7D,\n\t3291:  0xBC7E,\n\t3292:  0xBC7F,\n\t3293:  0xBC80,\n\t3294:  0xBC81,\n\t3295:  0xBC82,\n\t3296:  0xBC83,\n\t3297:  0xBC86,\n\t3298:  0xBC87,\n\t3299:  0xBC89,\n\t3300:  0xBC8A,\n\t3301:  0xBC8D,\n\t3302:  0xBC8F,\n\t3303:  0xBC90,\n\t3304:  0xBC91,\n\t3305:  0xBC92,\n\t3306:  0xBC93,\n\t3307:  0xBC96,\n\t3308:  0xBC98,\n\t3309:  0xBC9B,\n\t3310:  0xBC9C,\n\t3311:  0xBC9D,\n\t3312:  0xBC9E,\n\t3313:  0xBC9F,\n\t3314:  0xBCA2,\n\t3315:  0xBCA3,\n\t3316:  0xBCA5,\n\t3317:  0xBCA6,\n\t3318:  0xBCA9,\n\t3319:  0xBCAA,\n\t3320:  0xBCAB,\n\t3321:  0xBCAC,\n\t3322:  0xBCAD,\n\t3323:  0xBCAE,\n\t3324:  0xBCAF,\n\t3325:  0xBCB2,\n\t3326:  0xBCB6,\n\t3327:  0xBCB7,\n\t3328:  0xBCB8,\n\t3329:  0xBCB9,\n\t3330:  0xBCBA,\n\t3331:  0xBCBB,\n\t3332:  0xBCBE,\n\t3333:  0xBCBF,\n\t3334:  0xBCC1,\n\t3335:  0xBCC2,\n\t3336:  0xBCC3,\n\t3337:  0xBCC5,\n\t3338:  0xBCC6,\n\t3339:  0xBCC7,\n\t3340:  0xBCC8,\n\t3341:  0xBCC9,\n\t3342:  0xBCCA,\n\t3343:  0xBCCB,\n\t3344:  0xBCCC,\n\t3345:  0xBCCE,\n\t3346:  0xBCD2,\n\t3347:  0xBCD3,\n\t3348:  0xBCD4,\n\t3349:  0xBCD6,\n\t3350:  0xBCD7,\n\t3351:  0xBCD9,\n\t3352:  0xBCDA,\n\t3353:  0xBCDB,\n\t3354:  0xBCDD,\n\t3355:  0xBCDE,\n\t3356:  0xBCDF,\n\t3357:  0xBCE0,\n\t3358:  0xBCE1,\n\t3359:  0xBCE2,\n\t3360:  0xBCE3,\n\t3361:  0xBCE4,\n\t3362:  0xBCE5,\n\t3363:  0xBCE6,\n\t3364:  0xBCE7,\n\t3365:  0xBCE8,\n\t3366:  0xBCE9,\n\t3367:  0xBCEA,\n\t3368:  0xBCEB,\n\t3369:  0xBCEC,\n\t3370:  0xBCED,\n\t3371:  0xBCEE,\n\t3372:  0xBCEF,\n\t3373:  0xBCF0,\n\t3374:  0xBCF1,\n\t3375:  0xBCF2,\n\t3376:  0xBCF3,\n\t3377:  0xBCF7,\n\t3378:  0xBCF9,\n\t3379:  0xBCFA,\n\t3380:  0xBCFB,\n\t3381:  0xBCFD,\n\t3382:  0xBCFE,\n\t3383:  0xBCFF,\n\t3384:  0xBD00,\n\t3385:  0xBD01,\n\t3386:  0xBD02,\n\t3387:  0xBD03,\n\t3388:  0xBD06,\n\t3389:  0xBD08,\n\t3390:  0xBD0A,\n\t3391:  0xBD0B,\n\t3392:  0xBD0C,\n\t3393:  0xBD0D,\n\t3394:  0xBD0E,\n\t3395:  0xBD0F,\n\t3396:  0xBD11,\n\t3397:  0xBD12,\n\t3398:  0xBD13,\n\t3399:  0xBD15,\n\t3400:  0xBD16,\n\t3401:  0xBD17,\n\t3402:  0xBD18,\n\t3403:  0xBD19,\n\t3404:  0xBD1A,\n\t3405:  0xBD1B,\n\t3406:  0xBD1C,\n\t3407:  0xBD1D,\n\t3408:  0xBD1E,\n\t3409:  0xBD1F,\n\t3410:  0xBD20,\n\t3411:  0xBD21,\n\t3412:  0xBD22,\n\t3413:  0xBD23,\n\t3414:  0xBD25,\n\t3415:  0xBD26,\n\t3416:  0xBD27,\n\t3417:  0xBD28,\n\t3418:  0xBD29,\n\t3419:  0xBD2A,\n\t3420:  0xBD2B,\n\t3421:  0xBD2D,\n\t3422:  0xBD2E,\n\t3423:  0xBD2F,\n\t3424:  0xBD30,\n\t3425:  0xBD31,\n\t3426:  0xBD32,\n\t3427:  0xBD33,\n\t3428:  0xBD34,\n\t3429:  0xBD35,\n\t3430:  0xBD36,\n\t3431:  0xBD37,\n\t3432:  0xBD38,\n\t3433:  0xBD39,\n\t3434:  0xBD3A,\n\t3435:  0xBD3B,\n\t3436:  0xBD3C,\n\t3437:  0xBD3D,\n\t3438:  0xBD3E,\n\t3439:  0xBD3F,\n\t3440:  0xBD41,\n\t3441:  0xBD42,\n\t3442:  0xBD43,\n\t3443:  0xBD44,\n\t3444:  0xBD45,\n\t3445:  0xBD46,\n\t3446:  0xBD47,\n\t3447:  0xBD4A,\n\t3448:  0xBD4B,\n\t3449:  0xBD4D,\n\t3450:  0xBD4E,\n\t3451:  0xBD4F,\n\t3452:  0xBD51,\n\t3453:  0xBD52,\n\t3454:  0xBD53,\n\t3455:  0xBD54,\n\t3456:  0xBD55,\n\t3457:  0xBD56,\n\t3458:  0xBD57,\n\t3459:  0xBD5A,\n\t3460:  0xBD5B,\n\t3461:  0xBD5C,\n\t3462:  0xBD5D,\n\t3463:  0xBD5E,\n\t3464:  0xBD5F,\n\t3465:  0xBD60,\n\t3466:  0xBD61,\n\t3467:  0xBD62,\n\t3468:  0xBD63,\n\t3469:  0xBD65,\n\t3470:  0xBD66,\n\t3471:  0xBD67,\n\t3472:  0xBD69,\n\t3473:  0xBD6A,\n\t3474:  0xBD6B,\n\t3475:  0xBD6C,\n\t3476:  0xBD6D,\n\t3477:  0xBD6E,\n\t3478:  0xBD6F,\n\t3479:  0xBD70,\n\t3480:  0xBD71,\n\t3481:  0xBD72,\n\t3482:  0xBD73,\n\t3483:  0xBD74,\n\t3484:  0xBD75,\n\t3485:  0xBD76,\n\t3486:  0xBD77,\n\t3487:  0xBD78,\n\t3488:  0xBD79,\n\t3489:  0xBD7A,\n\t3490:  0xBD7B,\n\t3491:  0xBD7C,\n\t3492:  0xBD7D,\n\t3493:  0xBD7E,\n\t3494:  0xBD7F,\n\t3495:  0xBD82,\n\t3496:  0xBD83,\n\t3497:  0xBD85,\n\t3498:  0xBD86,\n\t3499:  0xBD8B,\n\t3500:  0xBD8C,\n\t3501:  0xBD8D,\n\t3502:  0xBD8E,\n\t3503:  0xBD8F,\n\t3504:  0xBD92,\n\t3505:  0xBD94,\n\t3506:  0xBD96,\n\t3507:  0xBD97,\n\t3508:  0xBD98,\n\t3509:  0xBD9B,\n\t3510:  0xBD9D,\n\t3511:  0xBD9E,\n\t3512:  0xBD9F,\n\t3513:  0xBDA0,\n\t3514:  0xBDA1,\n\t3515:  0xBDA2,\n\t3516:  0xBDA3,\n\t3517:  0xBDA5,\n\t3518:  0xBDA6,\n\t3519:  0xBDA7,\n\t3520:  0xBDA8,\n\t3521:  0xBDA9,\n\t3522:  0xBDAA,\n\t3523:  0xBDAB,\n\t3524:  0xBDAC,\n\t3525:  0xBDAD,\n\t3526:  0xBDAE,\n\t3527:  0xBDAF,\n\t3528:  0xBDB1,\n\t3529:  0xBDB2,\n\t3530:  0xBDB3,\n\t3531:  0xBDB4,\n\t3532:  0xBDB5,\n\t3533:  0xBDB6,\n\t3534:  0xBDB7,\n\t3535:  0xBDB9,\n\t3536:  0xBDBA,\n\t3537:  0xBDBB,\n\t3538:  0xBDBC,\n\t3539:  0xBDBD,\n\t3540:  0xBDBE,\n\t3541:  0xBDBF,\n\t3542:  0xBDC0,\n\t3543:  0xBDC1,\n\t3544:  0xBDC2,\n\t3545:  0xBDC3,\n\t3546:  0xBDC4,\n\t3547:  0xBDC5,\n\t3548:  0xBDC6,\n\t3549:  0xBDC7,\n\t3550:  0xBDC8,\n\t3551:  0xBDC9,\n\t3552:  0xBDCA,\n\t3553:  0xBDCB,\n\t3554:  0xBDCC,\n\t3555:  0xBDCD,\n\t3556:  0xBDCE,\n\t3557:  0xBDCF,\n\t3558:  0xBDD0,\n\t3559:  0xBDD1,\n\t3560:  0xBDD2,\n\t3561:  0xBDD3,\n\t3562:  0xBDD6,\n\t3563:  0xBDD7,\n\t3564:  0xBDD9,\n\t3565:  0xBDDA,\n\t3566:  0xBDDB,\n\t3567:  0xBDDD,\n\t3568:  0xBDDE,\n\t3569:  0xBDDF,\n\t3570:  0xBDE0,\n\t3571:  0xBDE1,\n\t3572:  0xBDE2,\n\t3573:  0xBDE3,\n\t3574:  0xBDE4,\n\t3575:  0xBDE5,\n\t3576:  0xBDE6,\n\t3577:  0xBDE7,\n\t3578:  0xBDE8,\n\t3579:  0xBDEA,\n\t3580:  0xBDEB,\n\t3581:  0xBDEC,\n\t3582:  0xBDED,\n\t3583:  0xBDEE,\n\t3584:  0xBDEF,\n\t3585:  0xBDF1,\n\t3586:  0xBDF2,\n\t3587:  0xBDF3,\n\t3588:  0xBDF5,\n\t3589:  0xBDF6,\n\t3590:  0xBDF7,\n\t3591:  0xBDF9,\n\t3592:  0xBDFA,\n\t3593:  0xBDFB,\n\t3594:  0xBDFC,\n\t3595:  0xBDFD,\n\t3596:  0xBDFE,\n\t3597:  0xBDFF,\n\t3598:  0xBE01,\n\t3599:  0xBE02,\n\t3600:  0xBE04,\n\t3601:  0xBE06,\n\t3602:  0xBE07,\n\t3603:  0xBE08,\n\t3604:  0xBE09,\n\t3605:  0xBE0A,\n\t3606:  0xBE0B,\n\t3607:  0xBE0E,\n\t3608:  0xBE0F,\n\t3609:  0xBE11,\n\t3610:  0xBE12,\n\t3611:  0xBE13,\n\t3612:  0xBE15,\n\t3613:  0xBE16,\n\t3614:  0xBE17,\n\t3615:  0xBE18,\n\t3616:  0xBE19,\n\t3617:  0xBE1A,\n\t3618:  0xBE1B,\n\t3619:  0xBE1E,\n\t3620:  0xBE20,\n\t3621:  0xBE21,\n\t3622:  0xBE22,\n\t3623:  0xBE23,\n\t3624:  0xBE24,\n\t3625:  0xBE25,\n\t3626:  0xBE26,\n\t3627:  0xBE27,\n\t3628:  0xBE28,\n\t3629:  0xBE29,\n\t3630:  0xBE2A,\n\t3631:  0xBE2B,\n\t3632:  0xBE2C,\n\t3633:  0xBE2D,\n\t3634:  0xBE2E,\n\t3635:  0xBE2F,\n\t3636:  0xBE30,\n\t3637:  0xBE31,\n\t3638:  0xBE32,\n\t3639:  0xBE33,\n\t3640:  0xBE34,\n\t3641:  0xBE35,\n\t3642:  0xBE36,\n\t3643:  0xBE37,\n\t3644:  0xBE38,\n\t3645:  0xBE39,\n\t3646:  0xBE3A,\n\t3647:  0xBE3B,\n\t3648:  0xBE3C,\n\t3649:  0xBE3D,\n\t3650:  0xBE3E,\n\t3651:  0xBE3F,\n\t3652:  0xBE40,\n\t3653:  0xBE41,\n\t3654:  0xBE42,\n\t3655:  0xBE43,\n\t3656:  0xBE46,\n\t3657:  0xBE47,\n\t3658:  0xBE49,\n\t3659:  0xBE4A,\n\t3660:  0xBE4B,\n\t3661:  0xBE4D,\n\t3662:  0xBE4F,\n\t3663:  0xBE50,\n\t3664:  0xBE51,\n\t3665:  0xBE52,\n\t3666:  0xBE53,\n\t3667:  0xBE56,\n\t3668:  0xBE58,\n\t3669:  0xBE5C,\n\t3670:  0xBE5D,\n\t3671:  0xBE5E,\n\t3672:  0xBE5F,\n\t3673:  0xBE62,\n\t3674:  0xBE63,\n\t3675:  0xBE65,\n\t3676:  0xBE66,\n\t3677:  0xBE67,\n\t3678:  0xBE69,\n\t3679:  0xBE6B,\n\t3680:  0xBE6C,\n\t3681:  0xBE6D,\n\t3682:  0xBE6E,\n\t3683:  0xBE6F,\n\t3684:  0xBE72,\n\t3685:  0xBE76,\n\t3686:  0xBE77,\n\t3687:  0xBE78,\n\t3688:  0xBE79,\n\t3689:  0xBE7A,\n\t3690:  0xBE7E,\n\t3691:  0xBE7F,\n\t3692:  0xBE81,\n\t3693:  0xBE82,\n\t3694:  0xBE83,\n\t3695:  0xBE85,\n\t3696:  0xBE86,\n\t3697:  0xBE87,\n\t3698:  0xBE88,\n\t3699:  0xBE89,\n\t3700:  0xBE8A,\n\t3701:  0xBE8B,\n\t3702:  0xBE8E,\n\t3703:  0xBE92,\n\t3704:  0xBE93,\n\t3705:  0xBE94,\n\t3706:  0xBE95,\n\t3707:  0xBE96,\n\t3708:  0xBE97,\n\t3709:  0xBE9A,\n\t3710:  0xBE9B,\n\t3711:  0xBE9C,\n\t3712:  0xBE9D,\n\t3713:  0xBE9E,\n\t3714:  0xBE9F,\n\t3715:  0xBEA0,\n\t3716:  0xBEA1,\n\t3717:  0xBEA2,\n\t3718:  0xBEA3,\n\t3719:  0xBEA4,\n\t3720:  0xBEA5,\n\t3721:  0xBEA6,\n\t3722:  0xBEA7,\n\t3723:  0xBEA9,\n\t3724:  0xBEAA,\n\t3725:  0xBEAB,\n\t3726:  0xBEAC,\n\t3727:  0xBEAD,\n\t3728:  0xBEAE,\n\t3729:  0xBEAF,\n\t3730:  0xBEB0,\n\t3731:  0xBEB1,\n\t3732:  0xBEB2,\n\t3733:  0xBEB3,\n\t3734:  0xBEB4,\n\t3735:  0xBEB5,\n\t3736:  0xBEB6,\n\t3737:  0xBEB7,\n\t3738:  0xBEB8,\n\t3739:  0xBEB9,\n\t3740:  0xBEBA,\n\t3741:  0xBEBB,\n\t3742:  0xBEBC,\n\t3743:  0xBEBD,\n\t3744:  0xBEBE,\n\t3745:  0xBEBF,\n\t3746:  0xBEC0,\n\t3747:  0xBEC1,\n\t3748:  0xBEC2,\n\t3749:  0xBEC3,\n\t3750:  0xBEC4,\n\t3751:  0xBEC5,\n\t3752:  0xBEC6,\n\t3753:  0xBEC7,\n\t3754:  0xBEC8,\n\t3755:  0xBEC9,\n\t3756:  0xBECA,\n\t3757:  0xBECB,\n\t3758:  0xBECC,\n\t3759:  0xBECD,\n\t3760:  0xBECE,\n\t3761:  0xBECF,\n\t3762:  0xBED2,\n\t3763:  0xBED3,\n\t3764:  0xBED5,\n\t3765:  0xBED6,\n\t3766:  0xBED9,\n\t3767:  0xBEDA,\n\t3768:  0xBEDB,\n\t3769:  0xBEDC,\n\t3770:  0xBEDD,\n\t3771:  0xBEDE,\n\t3772:  0xBEDF,\n\t3773:  0xBEE1,\n\t3774:  0xBEE2,\n\t3775:  0xBEE6,\n\t3776:  0xBEE7,\n\t3777:  0xBEE8,\n\t3778:  0xBEE9,\n\t3779:  0xBEEA,\n\t3780:  0xBEEB,\n\t3781:  0xBEED,\n\t3782:  0xBEEE,\n\t3783:  0xBEEF,\n\t3784:  0xBEF0,\n\t3785:  0xBEF1,\n\t3786:  0xBEF2,\n\t3787:  0xBEF3,\n\t3788:  0xBEF4,\n\t3789:  0xBEF5,\n\t3790:  0xBEF6,\n\t3791:  0xBEF7,\n\t3792:  0xBEF8,\n\t3793:  0xBEF9,\n\t3794:  0xBEFA,\n\t3795:  0xBEFB,\n\t3796:  0xBEFC,\n\t3797:  0xBEFD,\n\t3798:  0xBEFE,\n\t3799:  0xBEFF,\n\t3800:  0xBF00,\n\t3801:  0xBF02,\n\t3802:  0xBF03,\n\t3803:  0xBF04,\n\t3804:  0xBF05,\n\t3805:  0xBF06,\n\t3806:  0xBF07,\n\t3807:  0xBF0A,\n\t3808:  0xBF0B,\n\t3809:  0xBF0C,\n\t3810:  0xBF0D,\n\t3811:  0xBF0E,\n\t3812:  0xBF0F,\n\t3813:  0xBF10,\n\t3814:  0xBF11,\n\t3815:  0xBF12,\n\t3816:  0xBF13,\n\t3817:  0xBF14,\n\t3818:  0xBF15,\n\t3819:  0xBF16,\n\t3820:  0xBF17,\n\t3821:  0xBF1A,\n\t3822:  0xBF1E,\n\t3823:  0xBF1F,\n\t3824:  0xBF20,\n\t3825:  0xBF21,\n\t3826:  0xBF22,\n\t3827:  0xBF23,\n\t3828:  0xBF24,\n\t3829:  0xBF25,\n\t3830:  0xBF26,\n\t3831:  0xBF27,\n\t3832:  0xBF28,\n\t3833:  0xBF29,\n\t3834:  0xBF2A,\n\t3835:  0xBF2B,\n\t3836:  0xBF2C,\n\t3837:  0xBF2D,\n\t3838:  0xBF2E,\n\t3839:  0xBF2F,\n\t3840:  0xBF30,\n\t3841:  0xBF31,\n\t3842:  0xBF32,\n\t3843:  0xBF33,\n\t3844:  0xBF34,\n\t3845:  0xBF35,\n\t3846:  0xBF36,\n\t3847:  0xBF37,\n\t3848:  0xBF38,\n\t3849:  0xBF39,\n\t3850:  0xBF3A,\n\t3851:  0xBF3B,\n\t3852:  0xBF3C,\n\t3853:  0xBF3D,\n\t3854:  0xBF3E,\n\t3855:  0xBF3F,\n\t3856:  0xBF42,\n\t3857:  0xBF43,\n\t3858:  0xBF45,\n\t3859:  0xBF46,\n\t3860:  0xBF47,\n\t3861:  0xBF49,\n\t3862:  0xBF4A,\n\t3863:  0xBF4B,\n\t3864:  0xBF4C,\n\t3865:  0xBF4D,\n\t3866:  0xBF4E,\n\t3867:  0xBF4F,\n\t3868:  0xBF52,\n\t3869:  0xBF53,\n\t3870:  0xBF54,\n\t3871:  0xBF56,\n\t3872:  0xBF57,\n\t3873:  0xBF58,\n\t3874:  0xBF59,\n\t3875:  0xBF5A,\n\t3876:  0xBF5B,\n\t3877:  0xBF5C,\n\t3878:  0xBF5D,\n\t3879:  0xBF5E,\n\t3880:  0xBF5F,\n\t3881:  0xBF60,\n\t3882:  0xBF61,\n\t3883:  0xBF62,\n\t3884:  0xBF63,\n\t3885:  0xBF64,\n\t3886:  0xBF65,\n\t3887:  0xBF66,\n\t3888:  0xBF67,\n\t3889:  0xBF68,\n\t3890:  0xBF69,\n\t3891:  0xBF6A,\n\t3892:  0xBF6B,\n\t3893:  0xBF6C,\n\t3894:  0xBF6D,\n\t3895:  0xBF6E,\n\t3896:  0xBF6F,\n\t3897:  0xBF70,\n\t3898:  0xBF71,\n\t3899:  0xBF72,\n\t3900:  0xBF73,\n\t3901:  0xBF74,\n\t3902:  0xBF75,\n\t3903:  0xBF76,\n\t3904:  0xBF77,\n\t3905:  0xBF78,\n\t3906:  0xBF79,\n\t3907:  0xBF7A,\n\t3908:  0xBF7B,\n\t3909:  0xBF7C,\n\t3910:  0xBF7D,\n\t3911:  0xBF7E,\n\t3912:  0xBF7F,\n\t3913:  0xBF80,\n\t3914:  0xBF81,\n\t3915:  0xBF82,\n\t3916:  0xBF83,\n\t3917:  0xBF84,\n\t3918:  0xBF85,\n\t3919:  0xBF86,\n\t3920:  0xBF87,\n\t3921:  0xBF88,\n\t3922:  0xBF89,\n\t3923:  0xBF8A,\n\t3924:  0xBF8B,\n\t3925:  0xBF8C,\n\t3926:  0xBF8D,\n\t3927:  0xBF8E,\n\t3928:  0xBF8F,\n\t3929:  0xBF90,\n\t3930:  0xBF91,\n\t3931:  0xBF92,\n\t3932:  0xBF93,\n\t3933:  0xBF95,\n\t3934:  0xBF96,\n\t3935:  0xBF97,\n\t3936:  0xBF98,\n\t3937:  0xBF99,\n\t3938:  0xBF9A,\n\t3939:  0xBF9B,\n\t3940:  0xBF9C,\n\t3941:  0xBF9D,\n\t3942:  0xBF9E,\n\t3943:  0xBF9F,\n\t3944:  0xBFA0,\n\t3945:  0xBFA1,\n\t3946:  0xBFA2,\n\t3947:  0xBFA3,\n\t3948:  0xBFA4,\n\t3949:  0xBFA5,\n\t3950:  0xBFA6,\n\t3951:  0xBFA7,\n\t3952:  0xBFA8,\n\t3953:  0xBFA9,\n\t3954:  0xBFAA,\n\t3955:  0xBFAB,\n\t3956:  0xBFAC,\n\t3957:  0xBFAD,\n\t3958:  0xBFAE,\n\t3959:  0xBFAF,\n\t3960:  0xBFB1,\n\t3961:  0xBFB2,\n\t3962:  0xBFB3,\n\t3963:  0xBFB4,\n\t3964:  0xBFB5,\n\t3965:  0xBFB6,\n\t3966:  0xBFB7,\n\t3967:  0xBFB8,\n\t3968:  0xBFB9,\n\t3969:  0xBFBA,\n\t3970:  0xBFBB,\n\t3971:  0xBFBC,\n\t3972:  0xBFBD,\n\t3973:  0xBFBE,\n\t3974:  0xBFBF,\n\t3975:  0xBFC0,\n\t3976:  0xBFC1,\n\t3977:  0xBFC2,\n\t3978:  0xBFC3,\n\t3979:  0xBFC4,\n\t3980:  0xBFC6,\n\t3981:  0xBFC7,\n\t3982:  0xBFC8,\n\t3983:  0xBFC9,\n\t3984:  0xBFCA,\n\t3985:  0xBFCB,\n\t3986:  0xBFCE,\n\t3987:  0xBFCF,\n\t3988:  0xBFD1,\n\t3989:  0xBFD2,\n\t3990:  0xBFD3,\n\t3991:  0xBFD5,\n\t3992:  0xBFD6,\n\t3993:  0xBFD7,\n\t3994:  0xBFD8,\n\t3995:  0xBFD9,\n\t3996:  0xBFDA,\n\t3997:  0xBFDB,\n\t3998:  0xBFDD,\n\t3999:  0xBFDE,\n\t4000:  0xBFE0,\n\t4001:  0xBFE2,\n\t4002:  0xBFE3,\n\t4003:  0xBFE4,\n\t4004:  0xBFE5,\n\t4005:  0xBFE6,\n\t4006:  0xBFE7,\n\t4007:  0xBFE8,\n\t4008:  0xBFE9,\n\t4009:  0xBFEA,\n\t4010:  0xBFEB,\n\t4011:  0xBFEC,\n\t4012:  0xBFED,\n\t4013:  0xBFEE,\n\t4014:  0xBFEF,\n\t4015:  0xBFF0,\n\t4016:  0xBFF1,\n\t4017:  0xBFF2,\n\t4018:  0xBFF3,\n\t4019:  0xBFF4,\n\t4020:  0xBFF5,\n\t4021:  0xBFF6,\n\t4022:  0xBFF7,\n\t4023:  0xBFF8,\n\t4024:  0xBFF9,\n\t4025:  0xBFFA,\n\t4026:  0xBFFB,\n\t4027:  0xBFFC,\n\t4028:  0xBFFD,\n\t4029:  0xBFFE,\n\t4030:  0xBFFF,\n\t4031:  0xC000,\n\t4032:  0xC001,\n\t4033:  0xC002,\n\t4034:  0xC003,\n\t4035:  0xC004,\n\t4036:  0xC005,\n\t4037:  0xC006,\n\t4038:  0xC007,\n\t4039:  0xC008,\n\t4040:  0xC009,\n\t4041:  0xC00A,\n\t4042:  0xC00B,\n\t4043:  0xC00C,\n\t4044:  0xC00D,\n\t4045:  0xC00E,\n\t4046:  0xC00F,\n\t4047:  0xC010,\n\t4048:  0xC011,\n\t4049:  0xC012,\n\t4050:  0xC013,\n\t4051:  0xC014,\n\t4052:  0xC015,\n\t4053:  0xC016,\n\t4054:  0xC017,\n\t4055:  0xC018,\n\t4056:  0xC019,\n\t4057:  0xC01A,\n\t4058:  0xC01B,\n\t4059:  0xC01C,\n\t4060:  0xC01D,\n\t4061:  0xC01E,\n\t4062:  0xC01F,\n\t4063:  0xC020,\n\t4064:  0xC021,\n\t4065:  0xC022,\n\t4066:  0xC023,\n\t4067:  0xC024,\n\t4068:  0xC025,\n\t4069:  0xC026,\n\t4070:  0xC027,\n\t4071:  0xC028,\n\t4072:  0xC029,\n\t4073:  0xC02A,\n\t4074:  0xC02B,\n\t4075:  0xC02C,\n\t4076:  0xC02D,\n\t4077:  0xC02E,\n\t4078:  0xC02F,\n\t4079:  0xC030,\n\t4080:  0xC031,\n\t4081:  0xC032,\n\t4082:  0xC033,\n\t4083:  0xC034,\n\t4084:  0xC035,\n\t4085:  0xC036,\n\t4086:  0xC037,\n\t4087:  0xC038,\n\t4088:  0xC039,\n\t4089:  0xC03A,\n\t4090:  0xC03B,\n\t4091:  0xC03D,\n\t4092:  0xC03E,\n\t4093:  0xC03F,\n\t4094:  0xC040,\n\t4095:  0xC041,\n\t4096:  0xC042,\n\t4097:  0xC043,\n\t4098:  0xC044,\n\t4099:  0xC045,\n\t4100:  0xC046,\n\t4101:  0xC047,\n\t4102:  0xC048,\n\t4103:  0xC049,\n\t4104:  0xC04A,\n\t4105:  0xC04B,\n\t4106:  0xC04C,\n\t4107:  0xC04D,\n\t4108:  0xC04E,\n\t4109:  0xC04F,\n\t4110:  0xC050,\n\t4111:  0xC052,\n\t4112:  0xC053,\n\t4113:  0xC054,\n\t4114:  0xC055,\n\t4115:  0xC056,\n\t4116:  0xC057,\n\t4117:  0xC059,\n\t4118:  0xC05A,\n\t4119:  0xC05B,\n\t4120:  0xC05D,\n\t4121:  0xC05E,\n\t4122:  0xC05F,\n\t4123:  0xC061,\n\t4124:  0xC062,\n\t4125:  0xC063,\n\t4126:  0xC064,\n\t4127:  0xC065,\n\t4128:  0xC066,\n\t4129:  0xC067,\n\t4130:  0xC06A,\n\t4131:  0xC06B,\n\t4132:  0xC06C,\n\t4133:  0xC06D,\n\t4134:  0xC06E,\n\t4135:  0xC06F,\n\t4136:  0xC070,\n\t4137:  0xC071,\n\t4138:  0xC072,\n\t4139:  0xC073,\n\t4140:  0xC074,\n\t4141:  0xC075,\n\t4142:  0xC076,\n\t4143:  0xC077,\n\t4144:  0xC078,\n\t4145:  0xC079,\n\t4146:  0xC07A,\n\t4147:  0xC07B,\n\t4148:  0xC07C,\n\t4149:  0xC07D,\n\t4150:  0xC07E,\n\t4151:  0xC07F,\n\t4152:  0xC080,\n\t4153:  0xC081,\n\t4154:  0xC082,\n\t4155:  0xC083,\n\t4156:  0xC084,\n\t4157:  0xC085,\n\t4158:  0xC086,\n\t4159:  0xC087,\n\t4160:  0xC088,\n\t4161:  0xC089,\n\t4162:  0xC08A,\n\t4163:  0xC08B,\n\t4164:  0xC08C,\n\t4165:  0xC08D,\n\t4166:  0xC08E,\n\t4167:  0xC08F,\n\t4168:  0xC092,\n\t4169:  0xC093,\n\t4170:  0xC095,\n\t4171:  0xC096,\n\t4172:  0xC097,\n\t4173:  0xC099,\n\t4174:  0xC09A,\n\t4175:  0xC09B,\n\t4176:  0xC09C,\n\t4177:  0xC09D,\n\t4178:  0xC09E,\n\t4179:  0xC09F,\n\t4180:  0xC0A2,\n\t4181:  0xC0A4,\n\t4182:  0xC0A6,\n\t4183:  0xC0A7,\n\t4184:  0xC0A8,\n\t4185:  0xC0A9,\n\t4186:  0xC0AA,\n\t4187:  0xC0AB,\n\t4188:  0xC0AE,\n\t4189:  0xC0B1,\n\t4190:  0xC0B2,\n\t4191:  0xC0B7,\n\t4192:  0xC0B8,\n\t4193:  0xC0B9,\n\t4194:  0xC0BA,\n\t4195:  0xC0BB,\n\t4196:  0xC0BE,\n\t4197:  0xC0C2,\n\t4198:  0xC0C3,\n\t4199:  0xC0C4,\n\t4200:  0xC0C6,\n\t4201:  0xC0C7,\n\t4202:  0xC0CA,\n\t4203:  0xC0CB,\n\t4204:  0xC0CD,\n\t4205:  0xC0CE,\n\t4206:  0xC0CF,\n\t4207:  0xC0D1,\n\t4208:  0xC0D2,\n\t4209:  0xC0D3,\n\t4210:  0xC0D4,\n\t4211:  0xC0D5,\n\t4212:  0xC0D6,\n\t4213:  0xC0D7,\n\t4214:  0xC0DA,\n\t4215:  0xC0DE,\n\t4216:  0xC0DF,\n\t4217:  0xC0E0,\n\t4218:  0xC0E1,\n\t4219:  0xC0E2,\n\t4220:  0xC0E3,\n\t4221:  0xC0E6,\n\t4222:  0xC0E7,\n\t4223:  0xC0E9,\n\t4224:  0xC0EA,\n\t4225:  0xC0EB,\n\t4226:  0xC0ED,\n\t4227:  0xC0EE,\n\t4228:  0xC0EF,\n\t4229:  0xC0F0,\n\t4230:  0xC0F1,\n\t4231:  0xC0F2,\n\t4232:  0xC0F3,\n\t4233:  0xC0F6,\n\t4234:  0xC0F8,\n\t4235:  0xC0FA,\n\t4236:  0xC0FB,\n\t4237:  0xC0FC,\n\t4238:  0xC0FD,\n\t4239:  0xC0FE,\n\t4240:  0xC0FF,\n\t4241:  0xC101,\n\t4242:  0xC102,\n\t4243:  0xC103,\n\t4244:  0xC105,\n\t4245:  0xC106,\n\t4246:  0xC107,\n\t4247:  0xC109,\n\t4248:  0xC10A,\n\t4249:  0xC10B,\n\t4250:  0xC10C,\n\t4251:  0xC10D,\n\t4252:  0xC10E,\n\t4253:  0xC10F,\n\t4254:  0xC111,\n\t4255:  0xC112,\n\t4256:  0xC113,\n\t4257:  0xC114,\n\t4258:  0xC116,\n\t4259:  0xC117,\n\t4260:  0xC118,\n\t4261:  0xC119,\n\t4262:  0xC11A,\n\t4263:  0xC11B,\n\t4264:  0xC121,\n\t4265:  0xC122,\n\t4266:  0xC125,\n\t4267:  0xC128,\n\t4268:  0xC129,\n\t4269:  0xC12A,\n\t4270:  0xC12B,\n\t4271:  0xC12E,\n\t4272:  0xC132,\n\t4273:  0xC133,\n\t4274:  0xC134,\n\t4275:  0xC135,\n\t4276:  0xC137,\n\t4277:  0xC13A,\n\t4278:  0xC13B,\n\t4279:  0xC13D,\n\t4280:  0xC13E,\n\t4281:  0xC13F,\n\t4282:  0xC141,\n\t4283:  0xC142,\n\t4284:  0xC143,\n\t4285:  0xC144,\n\t4286:  0xC145,\n\t4287:  0xC146,\n\t4288:  0xC147,\n\t4289:  0xC14A,\n\t4290:  0xC14E,\n\t4291:  0xC14F,\n\t4292:  0xC150,\n\t4293:  0xC151,\n\t4294:  0xC152,\n\t4295:  0xC153,\n\t4296:  0xC156,\n\t4297:  0xC157,\n\t4298:  0xC159,\n\t4299:  0xC15A,\n\t4300:  0xC15B,\n\t4301:  0xC15D,\n\t4302:  0xC15E,\n\t4303:  0xC15F,\n\t4304:  0xC160,\n\t4305:  0xC161,\n\t4306:  0xC162,\n\t4307:  0xC163,\n\t4308:  0xC166,\n\t4309:  0xC16A,\n\t4310:  0xC16B,\n\t4311:  0xC16C,\n\t4312:  0xC16D,\n\t4313:  0xC16E,\n\t4314:  0xC16F,\n\t4315:  0xC171,\n\t4316:  0xC172,\n\t4317:  0xC173,\n\t4318:  0xC175,\n\t4319:  0xC176,\n\t4320:  0xC177,\n\t4321:  0xC179,\n\t4322:  0xC17A,\n\t4323:  0xC17B,\n\t4324:  0xC17C,\n\t4325:  0xC17D,\n\t4326:  0xC17E,\n\t4327:  0xC17F,\n\t4328:  0xC180,\n\t4329:  0xC181,\n\t4330:  0xC182,\n\t4331:  0xC183,\n\t4332:  0xC184,\n\t4333:  0xC186,\n\t4334:  0xC187,\n\t4335:  0xC188,\n\t4336:  0xC189,\n\t4337:  0xC18A,\n\t4338:  0xC18B,\n\t4339:  0xC18F,\n\t4340:  0xC191,\n\t4341:  0xC192,\n\t4342:  0xC193,\n\t4343:  0xC195,\n\t4344:  0xC197,\n\t4345:  0xC198,\n\t4346:  0xC199,\n\t4347:  0xC19A,\n\t4348:  0xC19B,\n\t4349:  0xC19E,\n\t4350:  0xC1A0,\n\t4351:  0xC1A2,\n\t4352:  0xC1A3,\n\t4353:  0xC1A4,\n\t4354:  0xC1A6,\n\t4355:  0xC1A7,\n\t4356:  0xC1AA,\n\t4357:  0xC1AB,\n\t4358:  0xC1AD,\n\t4359:  0xC1AE,\n\t4360:  0xC1AF,\n\t4361:  0xC1B1,\n\t4362:  0xC1B2,\n\t4363:  0xC1B3,\n\t4364:  0xC1B4,\n\t4365:  0xC1B5,\n\t4366:  0xC1B6,\n\t4367:  0xC1B7,\n\t4368:  0xC1B8,\n\t4369:  0xC1B9,\n\t4370:  0xC1BA,\n\t4371:  0xC1BB,\n\t4372:  0xC1BC,\n\t4373:  0xC1BE,\n\t4374:  0xC1BF,\n\t4375:  0xC1C0,\n\t4376:  0xC1C1,\n\t4377:  0xC1C2,\n\t4378:  0xC1C3,\n\t4379:  0xC1C5,\n\t4380:  0xC1C6,\n\t4381:  0xC1C7,\n\t4382:  0xC1C9,\n\t4383:  0xC1CA,\n\t4384:  0xC1CB,\n\t4385:  0xC1CD,\n\t4386:  0xC1CE,\n\t4387:  0xC1CF,\n\t4388:  0xC1D0,\n\t4389:  0xC1D1,\n\t4390:  0xC1D2,\n\t4391:  0xC1D3,\n\t4392:  0xC1D5,\n\t4393:  0xC1D6,\n\t4394:  0xC1D9,\n\t4395:  0xC1DA,\n\t4396:  0xC1DB,\n\t4397:  0xC1DC,\n\t4398:  0xC1DD,\n\t4399:  0xC1DE,\n\t4400:  0xC1DF,\n\t4401:  0xC1E1,\n\t4402:  0xC1E2,\n\t4403:  0xC1E3,\n\t4404:  0xC1E5,\n\t4405:  0xC1E6,\n\t4406:  0xC1E7,\n\t4407:  0xC1E9,\n\t4408:  0xC1EA,\n\t4409:  0xC1EB,\n\t4410:  0xC1EC,\n\t4411:  0xC1ED,\n\t4412:  0xC1EE,\n\t4413:  0xC1EF,\n\t4414:  0xC1F2,\n\t4415:  0xC1F4,\n\t4416:  0xC1F5,\n\t4417:  0xC1F6,\n\t4418:  0xC1F7,\n\t4419:  0xC1F8,\n\t4420:  0xC1F9,\n\t4421:  0xC1FA,\n\t4422:  0xC1FB,\n\t4423:  0xC1FE,\n\t4424:  0xC1FF,\n\t4425:  0xC201,\n\t4426:  0xC202,\n\t4427:  0xC203,\n\t4428:  0xC205,\n\t4429:  0xC206,\n\t4430:  0xC207,\n\t4431:  0xC208,\n\t4432:  0xC209,\n\t4433:  0xC20A,\n\t4434:  0xC20B,\n\t4435:  0xC20E,\n\t4436:  0xC210,\n\t4437:  0xC212,\n\t4438:  0xC213,\n\t4439:  0xC214,\n\t4440:  0xC215,\n\t4441:  0xC216,\n\t4442:  0xC217,\n\t4443:  0xC21A,\n\t4444:  0xC21B,\n\t4445:  0xC21D,\n\t4446:  0xC21E,\n\t4447:  0xC221,\n\t4448:  0xC222,\n\t4449:  0xC223,\n\t4450:  0xC224,\n\t4451:  0xC225,\n\t4452:  0xC226,\n\t4453:  0xC227,\n\t4454:  0xC22A,\n\t4455:  0xC22C,\n\t4456:  0xC22E,\n\t4457:  0xC230,\n\t4458:  0xC233,\n\t4459:  0xC235,\n\t4460:  0xC236,\n\t4461:  0xC237,\n\t4462:  0xC238,\n\t4463:  0xC239,\n\t4464:  0xC23A,\n\t4465:  0xC23B,\n\t4466:  0xC23C,\n\t4467:  0xC23D,\n\t4468:  0xC23E,\n\t4469:  0xC23F,\n\t4470:  0xC240,\n\t4471:  0xC241,\n\t4472:  0xC242,\n\t4473:  0xC243,\n\t4474:  0xC244,\n\t4475:  0xC245,\n\t4476:  0xC246,\n\t4477:  0xC247,\n\t4478:  0xC249,\n\t4479:  0xC24A,\n\t4480:  0xC24B,\n\t4481:  0xC24C,\n\t4482:  0xC24D,\n\t4483:  0xC24E,\n\t4484:  0xC24F,\n\t4485:  0xC252,\n\t4486:  0xC253,\n\t4487:  0xC255,\n\t4488:  0xC256,\n\t4489:  0xC257,\n\t4490:  0xC259,\n\t4491:  0xC25A,\n\t4492:  0xC25B,\n\t4493:  0xC25C,\n\t4494:  0xC25D,\n\t4495:  0xC25E,\n\t4496:  0xC25F,\n\t4497:  0xC261,\n\t4498:  0xC262,\n\t4499:  0xC263,\n\t4500:  0xC264,\n\t4501:  0xC266,\n\t4502:  0xC267,\n\t4503:  0xC268,\n\t4504:  0xC269,\n\t4505:  0xC26A,\n\t4506:  0xC26B,\n\t4507:  0xC26E,\n\t4508:  0xC26F,\n\t4509:  0xC271,\n\t4510:  0xC272,\n\t4511:  0xC273,\n\t4512:  0xC275,\n\t4513:  0xC276,\n\t4514:  0xC277,\n\t4515:  0xC278,\n\t4516:  0xC279,\n\t4517:  0xC27A,\n\t4518:  0xC27B,\n\t4519:  0xC27E,\n\t4520:  0xC280,\n\t4521:  0xC282,\n\t4522:  0xC283,\n\t4523:  0xC284,\n\t4524:  0xC285,\n\t4525:  0xC286,\n\t4526:  0xC287,\n\t4527:  0xC28A,\n\t4528:  0xC28B,\n\t4529:  0xC28C,\n\t4530:  0xC28D,\n\t4531:  0xC28E,\n\t4532:  0xC28F,\n\t4533:  0xC291,\n\t4534:  0xC292,\n\t4535:  0xC293,\n\t4536:  0xC294,\n\t4537:  0xC295,\n\t4538:  0xC296,\n\t4539:  0xC297,\n\t4540:  0xC299,\n\t4541:  0xC29A,\n\t4542:  0xC29C,\n\t4543:  0xC29E,\n\t4544:  0xC29F,\n\t4545:  0xC2A0,\n\t4546:  0xC2A1,\n\t4547:  0xC2A2,\n\t4548:  0xC2A3,\n\t4549:  0xC2A6,\n\t4550:  0xC2A7,\n\t4551:  0xC2A9,\n\t4552:  0xC2AA,\n\t4553:  0xC2AB,\n\t4554:  0xC2AE,\n\t4555:  0xC2AF,\n\t4556:  0xC2B0,\n\t4557:  0xC2B1,\n\t4558:  0xC2B2,\n\t4559:  0xC2B3,\n\t4560:  0xC2B6,\n\t4561:  0xC2B8,\n\t4562:  0xC2BA,\n\t4563:  0xC2BB,\n\t4564:  0xC2BC,\n\t4565:  0xC2BD,\n\t4566:  0xC2BE,\n\t4567:  0xC2BF,\n\t4568:  0xC2C0,\n\t4569:  0xC2C1,\n\t4570:  0xC2C2,\n\t4571:  0xC2C3,\n\t4572:  0xC2C4,\n\t4573:  0xC2C5,\n\t4574:  0xC2C6,\n\t4575:  0xC2C7,\n\t4576:  0xC2C8,\n\t4577:  0xC2C9,\n\t4578:  0xC2CA,\n\t4579:  0xC2CB,\n\t4580:  0xC2CC,\n\t4581:  0xC2CD,\n\t4582:  0xC2CE,\n\t4583:  0xC2CF,\n\t4584:  0xC2D0,\n\t4585:  0xC2D1,\n\t4586:  0xC2D2,\n\t4587:  0xC2D3,\n\t4588:  0xC2D4,\n\t4589:  0xC2D5,\n\t4590:  0xC2D6,\n\t4591:  0xC2D7,\n\t4592:  0xC2D8,\n\t4593:  0xC2D9,\n\t4594:  0xC2DA,\n\t4595:  0xC2DB,\n\t4596:  0xC2DE,\n\t4597:  0xC2DF,\n\t4598:  0xC2E1,\n\t4599:  0xC2E2,\n\t4600:  0xC2E5,\n\t4601:  0xC2E6,\n\t4602:  0xC2E7,\n\t4603:  0xC2E8,\n\t4604:  0xC2E9,\n\t4605:  0xC2EA,\n\t4606:  0xC2EE,\n\t4607:  0xC2F0,\n\t4608:  0xC2F2,\n\t4609:  0xC2F3,\n\t4610:  0xC2F4,\n\t4611:  0xC2F5,\n\t4612:  0xC2F7,\n\t4613:  0xC2FA,\n\t4614:  0xC2FD,\n\t4615:  0xC2FE,\n\t4616:  0xC2FF,\n\t4617:  0xC301,\n\t4618:  0xC302,\n\t4619:  0xC303,\n\t4620:  0xC304,\n\t4621:  0xC305,\n\t4622:  0xC306,\n\t4623:  0xC307,\n\t4624:  0xC30A,\n\t4625:  0xC30B,\n\t4626:  0xC30E,\n\t4627:  0xC30F,\n\t4628:  0xC310,\n\t4629:  0xC311,\n\t4630:  0xC312,\n\t4631:  0xC316,\n\t4632:  0xC317,\n\t4633:  0xC319,\n\t4634:  0xC31A,\n\t4635:  0xC31B,\n\t4636:  0xC31D,\n\t4637:  0xC31E,\n\t4638:  0xC31F,\n\t4639:  0xC320,\n\t4640:  0xC321,\n\t4641:  0xC322,\n\t4642:  0xC323,\n\t4643:  0xC326,\n\t4644:  0xC327,\n\t4645:  0xC32A,\n\t4646:  0xC32B,\n\t4647:  0xC32C,\n\t4648:  0xC32D,\n\t4649:  0xC32E,\n\t4650:  0xC32F,\n\t4651:  0xC330,\n\t4652:  0xC331,\n\t4653:  0xC332,\n\t4654:  0xC333,\n\t4655:  0xC334,\n\t4656:  0xC335,\n\t4657:  0xC336,\n\t4658:  0xC337,\n\t4659:  0xC338,\n\t4660:  0xC339,\n\t4661:  0xC33A,\n\t4662:  0xC33B,\n\t4663:  0xC33C,\n\t4664:  0xC33D,\n\t4665:  0xC33E,\n\t4666:  0xC33F,\n\t4667:  0xC340,\n\t4668:  0xC341,\n\t4669:  0xC342,\n\t4670:  0xC343,\n\t4671:  0xC344,\n\t4672:  0xC346,\n\t4673:  0xC347,\n\t4674:  0xC348,\n\t4675:  0xC349,\n\t4676:  0xC34A,\n\t4677:  0xC34B,\n\t4678:  0xC34C,\n\t4679:  0xC34D,\n\t4680:  0xC34E,\n\t4681:  0xC34F,\n\t4682:  0xC350,\n\t4683:  0xC351,\n\t4684:  0xC352,\n\t4685:  0xC353,\n\t4686:  0xC354,\n\t4687:  0xC355,\n\t4688:  0xC356,\n\t4689:  0xC357,\n\t4690:  0xC358,\n\t4691:  0xC359,\n\t4692:  0xC35A,\n\t4693:  0xC35B,\n\t4694:  0xC35C,\n\t4695:  0xC35D,\n\t4696:  0xC35E,\n\t4697:  0xC35F,\n\t4698:  0xC360,\n\t4699:  0xC361,\n\t4700:  0xC362,\n\t4701:  0xC363,\n\t4702:  0xC364,\n\t4703:  0xC365,\n\t4704:  0xC366,\n\t4705:  0xC367,\n\t4706:  0xC36A,\n\t4707:  0xC36B,\n\t4708:  0xC36D,\n\t4709:  0xC36E,\n\t4710:  0xC36F,\n\t4711:  0xC371,\n\t4712:  0xC373,\n\t4713:  0xC374,\n\t4714:  0xC375,\n\t4715:  0xC376,\n\t4716:  0xC377,\n\t4717:  0xC37A,\n\t4718:  0xC37B,\n\t4719:  0xC37E,\n\t4720:  0xC37F,\n\t4721:  0xC380,\n\t4722:  0xC381,\n\t4723:  0xC382,\n\t4724:  0xC383,\n\t4725:  0xC385,\n\t4726:  0xC386,\n\t4727:  0xC387,\n\t4728:  0xC389,\n\t4729:  0xC38A,\n\t4730:  0xC38B,\n\t4731:  0xC38D,\n\t4732:  0xC38E,\n\t4733:  0xC38F,\n\t4734:  0xC390,\n\t4735:  0xC391,\n\t4736:  0xC392,\n\t4737:  0xC393,\n\t4738:  0xC394,\n\t4739:  0xC395,\n\t4740:  0xC396,\n\t4741:  0xC397,\n\t4742:  0xC398,\n\t4743:  0xC399,\n\t4744:  0xC39A,\n\t4745:  0xC39B,\n\t4746:  0xC39C,\n\t4747:  0xC39D,\n\t4748:  0xC39E,\n\t4749:  0xC39F,\n\t4750:  0xC3A0,\n\t4751:  0xC3A1,\n\t4752:  0xC3A2,\n\t4753:  0xC3A3,\n\t4754:  0xC3A4,\n\t4755:  0xC3A5,\n\t4756:  0xC3A6,\n\t4757:  0xC3A7,\n\t4758:  0xC3A8,\n\t4759:  0xC3A9,\n\t4760:  0xC3AA,\n\t4761:  0xC3AB,\n\t4762:  0xC3AC,\n\t4763:  0xC3AD,\n\t4764:  0xC3AE,\n\t4765:  0xC3AF,\n\t4766:  0xC3B0,\n\t4767:  0xC3B1,\n\t4768:  0xC3B2,\n\t4769:  0xC3B3,\n\t4770:  0xC3B4,\n\t4771:  0xC3B5,\n\t4772:  0xC3B6,\n\t4773:  0xC3B7,\n\t4774:  0xC3B8,\n\t4775:  0xC3B9,\n\t4776:  0xC3BA,\n\t4777:  0xC3BB,\n\t4778:  0xC3BC,\n\t4779:  0xC3BD,\n\t4780:  0xC3BE,\n\t4781:  0xC3BF,\n\t4782:  0xC3C1,\n\t4783:  0xC3C2,\n\t4784:  0xC3C3,\n\t4785:  0xC3C4,\n\t4786:  0xC3C5,\n\t4787:  0xC3C6,\n\t4788:  0xC3C7,\n\t4789:  0xC3C8,\n\t4790:  0xC3C9,\n\t4791:  0xC3CA,\n\t4792:  0xC3CB,\n\t4793:  0xC3CC,\n\t4794:  0xC3CD,\n\t4795:  0xC3CE,\n\t4796:  0xC3CF,\n\t4797:  0xC3D0,\n\t4798:  0xC3D1,\n\t4799:  0xC3D2,\n\t4800:  0xC3D3,\n\t4801:  0xC3D4,\n\t4802:  0xC3D5,\n\t4803:  0xC3D6,\n\t4804:  0xC3D7,\n\t4805:  0xC3DA,\n\t4806:  0xC3DB,\n\t4807:  0xC3DD,\n\t4808:  0xC3DE,\n\t4809:  0xC3E1,\n\t4810:  0xC3E3,\n\t4811:  0xC3E4,\n\t4812:  0xC3E5,\n\t4813:  0xC3E6,\n\t4814:  0xC3E7,\n\t4815:  0xC3EA,\n\t4816:  0xC3EB,\n\t4817:  0xC3EC,\n\t4818:  0xC3EE,\n\t4819:  0xC3EF,\n\t4820:  0xC3F0,\n\t4821:  0xC3F1,\n\t4822:  0xC3F2,\n\t4823:  0xC3F3,\n\t4824:  0xC3F6,\n\t4825:  0xC3F7,\n\t4826:  0xC3F9,\n\t4827:  0xC3FA,\n\t4828:  0xC3FB,\n\t4829:  0xC3FC,\n\t4830:  0xC3FD,\n\t4831:  0xC3FE,\n\t4832:  0xC3FF,\n\t4833:  0xC400,\n\t4834:  0xC401,\n\t4835:  0xC402,\n\t4836:  0xC403,\n\t4837:  0xC404,\n\t4838:  0xC405,\n\t4839:  0xC406,\n\t4840:  0xC407,\n\t4841:  0xC409,\n\t4842:  0xC40A,\n\t4843:  0xC40B,\n\t4844:  0xC40C,\n\t4845:  0xC40D,\n\t4846:  0xC40E,\n\t4847:  0xC40F,\n\t4848:  0xC411,\n\t4849:  0xC412,\n\t4850:  0xC413,\n\t4851:  0xC414,\n\t4852:  0xC415,\n\t4853:  0xC416,\n\t4854:  0xC417,\n\t4855:  0xC418,\n\t4856:  0xC419,\n\t4857:  0xC41A,\n\t4858:  0xC41B,\n\t4859:  0xC41C,\n\t4860:  0xC41D,\n\t4861:  0xC41E,\n\t4862:  0xC41F,\n\t4863:  0xC420,\n\t4864:  0xC421,\n\t4865:  0xC422,\n\t4866:  0xC423,\n\t4867:  0xC425,\n\t4868:  0xC426,\n\t4869:  0xC427,\n\t4870:  0xC428,\n\t4871:  0xC429,\n\t4872:  0xC42A,\n\t4873:  0xC42B,\n\t4874:  0xC42D,\n\t4875:  0xC42E,\n\t4876:  0xC42F,\n\t4877:  0xC431,\n\t4878:  0xC432,\n\t4879:  0xC433,\n\t4880:  0xC435,\n\t4881:  0xC436,\n\t4882:  0xC437,\n\t4883:  0xC438,\n\t4884:  0xC439,\n\t4885:  0xC43A,\n\t4886:  0xC43B,\n\t4887:  0xC43E,\n\t4888:  0xC43F,\n\t4889:  0xC440,\n\t4890:  0xC441,\n\t4891:  0xC442,\n\t4892:  0xC443,\n\t4893:  0xC444,\n\t4894:  0xC445,\n\t4895:  0xC446,\n\t4896:  0xC447,\n\t4897:  0xC449,\n\t4898:  0xC44A,\n\t4899:  0xC44B,\n\t4900:  0xC44C,\n\t4901:  0xC44D,\n\t4902:  0xC44E,\n\t4903:  0xC44F,\n\t4904:  0xC450,\n\t4905:  0xC451,\n\t4906:  0xC452,\n\t4907:  0xC453,\n\t4908:  0xC454,\n\t4909:  0xC455,\n\t4910:  0xC456,\n\t4911:  0xC457,\n\t4912:  0xC458,\n\t4913:  0xC459,\n\t4914:  0xC45A,\n\t4915:  0xC45B,\n\t4916:  0xC45C,\n\t4917:  0xC45D,\n\t4918:  0xC45E,\n\t4919:  0xC45F,\n\t4920:  0xC460,\n\t4921:  0xC461,\n\t4922:  0xC462,\n\t4923:  0xC463,\n\t4924:  0xC466,\n\t4925:  0xC467,\n\t4926:  0xC469,\n\t4927:  0xC46A,\n\t4928:  0xC46B,\n\t4929:  0xC46D,\n\t4930:  0xC46E,\n\t4931:  0xC46F,\n\t4932:  0xC470,\n\t4933:  0xC471,\n\t4934:  0xC472,\n\t4935:  0xC473,\n\t4936:  0xC476,\n\t4937:  0xC477,\n\t4938:  0xC478,\n\t4939:  0xC47A,\n\t4940:  0xC47B,\n\t4941:  0xC47C,\n\t4942:  0xC47D,\n\t4943:  0xC47E,\n\t4944:  0xC47F,\n\t4945:  0xC481,\n\t4946:  0xC482,\n\t4947:  0xC483,\n\t4948:  0xC484,\n\t4949:  0xC485,\n\t4950:  0xC486,\n\t4951:  0xC487,\n\t4952:  0xC488,\n\t4953:  0xC489,\n\t4954:  0xC48A,\n\t4955:  0xC48B,\n\t4956:  0xC48C,\n\t4957:  0xC48D,\n\t4958:  0xC48E,\n\t4959:  0xC48F,\n\t4960:  0xC490,\n\t4961:  0xC491,\n\t4962:  0xC492,\n\t4963:  0xC493,\n\t4964:  0xC495,\n\t4965:  0xC496,\n\t4966:  0xC497,\n\t4967:  0xC498,\n\t4968:  0xC499,\n\t4969:  0xC49A,\n\t4970:  0xC49B,\n\t4971:  0xC49D,\n\t4972:  0xC49E,\n\t4973:  0xC49F,\n\t4974:  0xC4A0,\n\t4975:  0xC4A1,\n\t4976:  0xC4A2,\n\t4977:  0xC4A3,\n\t4978:  0xC4A4,\n\t4979:  0xC4A5,\n\t4980:  0xC4A6,\n\t4981:  0xC4A7,\n\t4982:  0xC4A8,\n\t4983:  0xC4A9,\n\t4984:  0xC4AA,\n\t4985:  0xC4AB,\n\t4986:  0xC4AC,\n\t4987:  0xC4AD,\n\t4988:  0xC4AE,\n\t4989:  0xC4AF,\n\t4990:  0xC4B0,\n\t4991:  0xC4B1,\n\t4992:  0xC4B2,\n\t4993:  0xC4B3,\n\t4994:  0xC4B4,\n\t4995:  0xC4B5,\n\t4996:  0xC4B6,\n\t4997:  0xC4B7,\n\t4998:  0xC4B9,\n\t4999:  0xC4BA,\n\t5000:  0xC4BB,\n\t5001:  0xC4BD,\n\t5002:  0xC4BE,\n\t5003:  0xC4BF,\n\t5004:  0xC4C0,\n\t5005:  0xC4C1,\n\t5006:  0xC4C2,\n\t5007:  0xC4C3,\n\t5008:  0xC4C4,\n\t5009:  0xC4C5,\n\t5010:  0xC4C6,\n\t5011:  0xC4C7,\n\t5012:  0xC4C8,\n\t5013:  0xC4C9,\n\t5014:  0xC4CA,\n\t5015:  0xC4CB,\n\t5016:  0xC4CC,\n\t5017:  0xC4CD,\n\t5018:  0xC4CE,\n\t5019:  0xC4CF,\n\t5020:  0xC4D0,\n\t5021:  0xC4D1,\n\t5022:  0xC4D2,\n\t5023:  0xC4D3,\n\t5024:  0xC4D4,\n\t5025:  0xC4D5,\n\t5026:  0xC4D6,\n\t5027:  0xC4D7,\n\t5028:  0xC4D8,\n\t5029:  0xC4D9,\n\t5030:  0xC4DA,\n\t5031:  0xC4DB,\n\t5032:  0xC4DC,\n\t5033:  0xC4DD,\n\t5034:  0xC4DE,\n\t5035:  0xC4DF,\n\t5036:  0xC4E0,\n\t5037:  0xC4E1,\n\t5038:  0xC4E2,\n\t5039:  0xC4E3,\n\t5040:  0xC4E4,\n\t5041:  0xC4E5,\n\t5042:  0xC4E6,\n\t5043:  0xC4E7,\n\t5044:  0xC4E8,\n\t5045:  0xC4EA,\n\t5046:  0xC4EB,\n\t5047:  0xC4EC,\n\t5048:  0xC4ED,\n\t5049:  0xC4EE,\n\t5050:  0xC4EF,\n\t5051:  0xC4F2,\n\t5052:  0xC4F3,\n\t5053:  0xC4F5,\n\t5054:  0xC4F6,\n\t5055:  0xC4F7,\n\t5056:  0xC4F9,\n\t5057:  0xC4FB,\n\t5058:  0xC4FC,\n\t5059:  0xC4FD,\n\t5060:  0xC4FE,\n\t5061:  0xC502,\n\t5062:  0xC503,\n\t5063:  0xC504,\n\t5064:  0xC505,\n\t5065:  0xC506,\n\t5066:  0xC507,\n\t5067:  0xC508,\n\t5068:  0xC509,\n\t5069:  0xC50A,\n\t5070:  0xC50B,\n\t5071:  0xC50D,\n\t5072:  0xC50E,\n\t5073:  0xC50F,\n\t5074:  0xC511,\n\t5075:  0xC512,\n\t5076:  0xC513,\n\t5077:  0xC515,\n\t5078:  0xC516,\n\t5079:  0xC517,\n\t5080:  0xC518,\n\t5081:  0xC519,\n\t5082:  0xC51A,\n\t5083:  0xC51B,\n\t5084:  0xC51D,\n\t5085:  0xC51E,\n\t5086:  0xC51F,\n\t5087:  0xC520,\n\t5088:  0xC521,\n\t5089:  0xC522,\n\t5090:  0xC523,\n\t5091:  0xC524,\n\t5092:  0xC525,\n\t5093:  0xC526,\n\t5094:  0xC527,\n\t5095:  0xC52A,\n\t5096:  0xC52B,\n\t5097:  0xC52D,\n\t5098:  0xC52E,\n\t5099:  0xC52F,\n\t5100:  0xC531,\n\t5101:  0xC532,\n\t5102:  0xC533,\n\t5103:  0xC534,\n\t5104:  0xC535,\n\t5105:  0xC536,\n\t5106:  0xC537,\n\t5107:  0xC53A,\n\t5108:  0xC53C,\n\t5109:  0xC53E,\n\t5110:  0xC53F,\n\t5111:  0xC540,\n\t5112:  0xC541,\n\t5113:  0xC542,\n\t5114:  0xC543,\n\t5115:  0xC546,\n\t5116:  0xC547,\n\t5117:  0xC54B,\n\t5118:  0xC54F,\n\t5119:  0xC550,\n\t5120:  0xC551,\n\t5121:  0xC552,\n\t5122:  0xC556,\n\t5123:  0xC55A,\n\t5124:  0xC55B,\n\t5125:  0xC55C,\n\t5126:  0xC55F,\n\t5127:  0xC562,\n\t5128:  0xC563,\n\t5129:  0xC565,\n\t5130:  0xC566,\n\t5131:  0xC567,\n\t5132:  0xC569,\n\t5133:  0xC56A,\n\t5134:  0xC56B,\n\t5135:  0xC56C,\n\t5136:  0xC56D,\n\t5137:  0xC56E,\n\t5138:  0xC56F,\n\t5139:  0xC572,\n\t5140:  0xC576,\n\t5141:  0xC577,\n\t5142:  0xC578,\n\t5143:  0xC579,\n\t5144:  0xC57A,\n\t5145:  0xC57B,\n\t5146:  0xC57E,\n\t5147:  0xC57F,\n\t5148:  0xC581,\n\t5149:  0xC582,\n\t5150:  0xC583,\n\t5151:  0xC585,\n\t5152:  0xC586,\n\t5153:  0xC588,\n\t5154:  0xC589,\n\t5155:  0xC58A,\n\t5156:  0xC58B,\n\t5157:  0xC58E,\n\t5158:  0xC590,\n\t5159:  0xC592,\n\t5160:  0xC593,\n\t5161:  0xC594,\n\t5162:  0xC596,\n\t5163:  0xC599,\n\t5164:  0xC59A,\n\t5165:  0xC59B,\n\t5166:  0xC59D,\n\t5167:  0xC59E,\n\t5168:  0xC59F,\n\t5169:  0xC5A1,\n\t5170:  0xC5A2,\n\t5171:  0xC5A3,\n\t5172:  0xC5A4,\n\t5173:  0xC5A5,\n\t5174:  0xC5A6,\n\t5175:  0xC5A7,\n\t5176:  0xC5A8,\n\t5177:  0xC5AA,\n\t5178:  0xC5AB,\n\t5179:  0xC5AC,\n\t5180:  0xC5AD,\n\t5181:  0xC5AE,\n\t5182:  0xC5AF,\n\t5183:  0xC5B0,\n\t5184:  0xC5B1,\n\t5185:  0xC5B2,\n\t5186:  0xC5B3,\n\t5187:  0xC5B6,\n\t5188:  0xC5B7,\n\t5189:  0xC5BA,\n\t5190:  0xC5BF,\n\t5191:  0xC5C0,\n\t5192:  0xC5C1,\n\t5193:  0xC5C2,\n\t5194:  0xC5C3,\n\t5195:  0xC5CB,\n\t5196:  0xC5CD,\n\t5197:  0xC5CF,\n\t5198:  0xC5D2,\n\t5199:  0xC5D3,\n\t5200:  0xC5D5,\n\t5201:  0xC5D6,\n\t5202:  0xC5D7,\n\t5203:  0xC5D9,\n\t5204:  0xC5DA,\n\t5205:  0xC5DB,\n\t5206:  0xC5DC,\n\t5207:  0xC5DD,\n\t5208:  0xC5DE,\n\t5209:  0xC5DF,\n\t5210:  0xC5E2,\n\t5211:  0xC5E4,\n\t5212:  0xC5E6,\n\t5213:  0xC5E7,\n\t5214:  0xC5E8,\n\t5215:  0xC5E9,\n\t5216:  0xC5EA,\n\t5217:  0xC5EB,\n\t5218:  0xC5EF,\n\t5219:  0xC5F1,\n\t5220:  0xC5F2,\n\t5221:  0xC5F3,\n\t5222:  0xC5F5,\n\t5223:  0xC5F8,\n\t5224:  0xC5F9,\n\t5225:  0xC5FA,\n\t5226:  0xC5FB,\n\t5227:  0xC602,\n\t5228:  0xC603,\n\t5229:  0xC604,\n\t5230:  0xC609,\n\t5231:  0xC60A,\n\t5232:  0xC60B,\n\t5233:  0xC60D,\n\t5234:  0xC60E,\n\t5235:  0xC60F,\n\t5236:  0xC611,\n\t5237:  0xC612,\n\t5238:  0xC613,\n\t5239:  0xC614,\n\t5240:  0xC615,\n\t5241:  0xC616,\n\t5242:  0xC617,\n\t5243:  0xC61A,\n\t5244:  0xC61D,\n\t5245:  0xC61E,\n\t5246:  0xC61F,\n\t5247:  0xC620,\n\t5248:  0xC621,\n\t5249:  0xC622,\n\t5250:  0xC623,\n\t5251:  0xC626,\n\t5252:  0xC627,\n\t5253:  0xC629,\n\t5254:  0xC62A,\n\t5255:  0xC62B,\n\t5256:  0xC62F,\n\t5257:  0xC631,\n\t5258:  0xC632,\n\t5259:  0xC636,\n\t5260:  0xC638,\n\t5261:  0xC63A,\n\t5262:  0xC63C,\n\t5263:  0xC63D,\n\t5264:  0xC63E,\n\t5265:  0xC63F,\n\t5266:  0xC642,\n\t5267:  0xC643,\n\t5268:  0xC645,\n\t5269:  0xC646,\n\t5270:  0xC647,\n\t5271:  0xC649,\n\t5272:  0xC64A,\n\t5273:  0xC64B,\n\t5274:  0xC64C,\n\t5275:  0xC64D,\n\t5276:  0xC64E,\n\t5277:  0xC64F,\n\t5278:  0xC652,\n\t5279:  0xC656,\n\t5280:  0xC657,\n\t5281:  0xC658,\n\t5282:  0xC659,\n\t5283:  0xC65A,\n\t5284:  0xC65B,\n\t5285:  0xC65E,\n\t5286:  0xC65F,\n\t5287:  0xC661,\n\t5288:  0xC662,\n\t5289:  0xC663,\n\t5290:  0xC664,\n\t5291:  0xC665,\n\t5292:  0xC666,\n\t5293:  0xC667,\n\t5294:  0xC668,\n\t5295:  0xC669,\n\t5296:  0xC66A,\n\t5297:  0xC66B,\n\t5298:  0xC66D,\n\t5299:  0xC66E,\n\t5300:  0xC670,\n\t5301:  0xC672,\n\t5302:  0xC673,\n\t5303:  0xC674,\n\t5304:  0xC675,\n\t5305:  0xC676,\n\t5306:  0xC677,\n\t5307:  0xC67A,\n\t5308:  0xC67B,\n\t5309:  0xC67D,\n\t5310:  0xC67E,\n\t5311:  0xC67F,\n\t5312:  0xC681,\n\t5313:  0xC682,\n\t5314:  0xC683,\n\t5315:  0xC684,\n\t5316:  0xC685,\n\t5317:  0xC686,\n\t5318:  0xC687,\n\t5319:  0xC68A,\n\t5320:  0xC68C,\n\t5321:  0xC68E,\n\t5322:  0xC68F,\n\t5323:  0xC690,\n\t5324:  0xC691,\n\t5325:  0xC692,\n\t5326:  0xC693,\n\t5327:  0xC696,\n\t5328:  0xC697,\n\t5329:  0xC699,\n\t5330:  0xC69A,\n\t5331:  0xC69B,\n\t5332:  0xC69D,\n\t5333:  0xC69E,\n\t5334:  0xC69F,\n\t5335:  0xC6A0,\n\t5336:  0xC6A1,\n\t5337:  0xC6A2,\n\t5338:  0xC6A3,\n\t5339:  0xC6A6,\n\t5340:  0xC6A8,\n\t5341:  0xC6AA,\n\t5342:  0xC6AB,\n\t5343:  0xC6AC,\n\t5344:  0xC6AD,\n\t5345:  0xC6AE,\n\t5346:  0xC6AF,\n\t5347:  0xC6B2,\n\t5348:  0xC6B3,\n\t5349:  0xC6B5,\n\t5350:  0xC6B6,\n\t5351:  0xC6B7,\n\t5352:  0xC6BB,\n\t5353:  0xC6BC,\n\t5354:  0xC6BD,\n\t5355:  0xC6BE,\n\t5356:  0xC6BF,\n\t5357:  0xC6C2,\n\t5358:  0xC6C4,\n\t5359:  0xC6C6,\n\t5360:  0xC6C7,\n\t5361:  0xC6C8,\n\t5362:  0xC6C9,\n\t5363:  0xC6CA,\n\t5364:  0xC6CB,\n\t5365:  0xC6CE,\n\t5366:  0xC6CF,\n\t5367:  0xC6D1,\n\t5368:  0xC6D2,\n\t5369:  0xC6D3,\n\t5370:  0xC6D5,\n\t5371:  0xC6D6,\n\t5372:  0xC6D7,\n\t5373:  0xC6D8,\n\t5374:  0xC6D9,\n\t5375:  0xC6DA,\n\t5376:  0xC6DB,\n\t5377:  0xC6DE,\n\t5378:  0xC6DF,\n\t5379:  0xC6E2,\n\t5380:  0xC6E3,\n\t5381:  0xC6E4,\n\t5382:  0xC6E5,\n\t5383:  0xC6E6,\n\t5384:  0xC6E7,\n\t5385:  0xC6EA,\n\t5386:  0xC6EB,\n\t5387:  0xC6ED,\n\t5388:  0xC6EE,\n\t5389:  0xC6EF,\n\t5390:  0xC6F1,\n\t5391:  0xC6F2,\n\t5392:  0xC6F3,\n\t5393:  0xC6F4,\n\t5394:  0xC6F5,\n\t5395:  0xC6F6,\n\t5396:  0xC6F7,\n\t5397:  0xC6FA,\n\t5398:  0xC6FB,\n\t5399:  0xC6FC,\n\t5400:  0xC6FE,\n\t5401:  0xC6FF,\n\t5402:  0xC700,\n\t5403:  0xC701,\n\t5404:  0xC702,\n\t5405:  0xC703,\n\t5406:  0xC706,\n\t5407:  0xC707,\n\t5408:  0xC709,\n\t5409:  0xC70A,\n\t5410:  0xC70B,\n\t5411:  0xC70D,\n\t5412:  0xC70E,\n\t5413:  0xC70F,\n\t5414:  0xC710,\n\t5415:  0xC711,\n\t5416:  0xC712,\n\t5417:  0xC713,\n\t5418:  0xC716,\n\t5419:  0xC718,\n\t5420:  0xC71A,\n\t5421:  0xC71B,\n\t5422:  0xC71C,\n\t5423:  0xC71D,\n\t5424:  0xC71E,\n\t5425:  0xC71F,\n\t5426:  0xC722,\n\t5427:  0xC723,\n\t5428:  0xC725,\n\t5429:  0xC726,\n\t5430:  0xC727,\n\t5431:  0xC729,\n\t5432:  0xC72A,\n\t5433:  0xC72B,\n\t5434:  0xC72C,\n\t5435:  0xC72D,\n\t5436:  0xC72E,\n\t5437:  0xC72F,\n\t5438:  0xC732,\n\t5439:  0xC734,\n\t5440:  0xC736,\n\t5441:  0xC738,\n\t5442:  0xC739,\n\t5443:  0xC73A,\n\t5444:  0xC73B,\n\t5445:  0xC73E,\n\t5446:  0xC73F,\n\t5447:  0xC741,\n\t5448:  0xC742,\n\t5449:  0xC743,\n\t5450:  0xC745,\n\t5451:  0xC746,\n\t5452:  0xC747,\n\t5453:  0xC748,\n\t5454:  0xC749,\n\t5455:  0xC74B,\n\t5456:  0xC74E,\n\t5457:  0xC750,\n\t5458:  0xC759,\n\t5459:  0xC75A,\n\t5460:  0xC75B,\n\t5461:  0xC75D,\n\t5462:  0xC75E,\n\t5463:  0xC75F,\n\t5464:  0xC761,\n\t5465:  0xC762,\n\t5466:  0xC763,\n\t5467:  0xC764,\n\t5468:  0xC765,\n\t5469:  0xC766,\n\t5470:  0xC767,\n\t5471:  0xC769,\n\t5472:  0xC76A,\n\t5473:  0xC76C,\n\t5474:  0xC76D,\n\t5475:  0xC76E,\n\t5476:  0xC76F,\n\t5477:  0xC770,\n\t5478:  0xC771,\n\t5479:  0xC772,\n\t5480:  0xC773,\n\t5481:  0xC776,\n\t5482:  0xC777,\n\t5483:  0xC779,\n\t5484:  0xC77A,\n\t5485:  0xC77B,\n\t5486:  0xC77F,\n\t5487:  0xC780,\n\t5488:  0xC781,\n\t5489:  0xC782,\n\t5490:  0xC786,\n\t5491:  0xC78B,\n\t5492:  0xC78C,\n\t5493:  0xC78D,\n\t5494:  0xC78F,\n\t5495:  0xC792,\n\t5496:  0xC793,\n\t5497:  0xC795,\n\t5498:  0xC799,\n\t5499:  0xC79B,\n\t5500:  0xC79C,\n\t5501:  0xC79D,\n\t5502:  0xC79E,\n\t5503:  0xC79F,\n\t5504:  0xC7A2,\n\t5505:  0xC7A7,\n\t5506:  0xC7A8,\n\t5507:  0xC7A9,\n\t5508:  0xC7AA,\n\t5509:  0xC7AB,\n\t5510:  0xC7AE,\n\t5511:  0xC7AF,\n\t5512:  0xC7B1,\n\t5513:  0xC7B2,\n\t5514:  0xC7B3,\n\t5515:  0xC7B5,\n\t5516:  0xC7B6,\n\t5517:  0xC7B7,\n\t5518:  0xC7B8,\n\t5519:  0xC7B9,\n\t5520:  0xC7BA,\n\t5521:  0xC7BB,\n\t5522:  0xC7BE,\n\t5523:  0xC7C2,\n\t5524:  0xC7C3,\n\t5525:  0xC7C4,\n\t5526:  0xC7C5,\n\t5527:  0xC7C6,\n\t5528:  0xC7C7,\n\t5529:  0xC7CA,\n\t5530:  0xC7CB,\n\t5531:  0xC7CD,\n\t5532:  0xC7CF,\n\t5533:  0xC7D1,\n\t5534:  0xC7D2,\n\t5535:  0xC7D3,\n\t5536:  0xC7D4,\n\t5537:  0xC7D5,\n\t5538:  0xC7D6,\n\t5539:  0xC7D7,\n\t5540:  0xC7D9,\n\t5541:  0xC7DA,\n\t5542:  0xC7DB,\n\t5543:  0xC7DC,\n\t5544:  0xC7DE,\n\t5545:  0xC7DF,\n\t5546:  0xC7E0,\n\t5547:  0xC7E1,\n\t5548:  0xC7E2,\n\t5549:  0xC7E3,\n\t5550:  0xC7E5,\n\t5551:  0xC7E6,\n\t5552:  0xC7E7,\n\t5553:  0xC7E9,\n\t5554:  0xC7EA,\n\t5555:  0xC7EB,\n\t5556:  0xC7ED,\n\t5557:  0xC7EE,\n\t5558:  0xC7EF,\n\t5559:  0xC7F0,\n\t5560:  0xC7F1,\n\t5561:  0xC7F2,\n\t5562:  0xC7F3,\n\t5563:  0xC7F4,\n\t5564:  0xC7F5,\n\t5565:  0xC7F6,\n\t5566:  0xC7F7,\n\t5567:  0xC7F8,\n\t5568:  0xC7F9,\n\t5569:  0xC7FA,\n\t5570:  0xC7FB,\n\t5571:  0xC7FC,\n\t5572:  0xC7FD,\n\t5573:  0xC7FE,\n\t5574:  0xC7FF,\n\t5575:  0xC802,\n\t5576:  0xC803,\n\t5577:  0xC805,\n\t5578:  0xC806,\n\t5579:  0xC807,\n\t5580:  0xC809,\n\t5581:  0xC80B,\n\t5582:  0xC80C,\n\t5583:  0xC80D,\n\t5584:  0xC80E,\n\t5585:  0xC80F,\n\t5586:  0xC812,\n\t5587:  0xC814,\n\t5588:  0xC817,\n\t5589:  0xC818,\n\t5590:  0xC819,\n\t5591:  0xC81A,\n\t5592:  0xC81B,\n\t5593:  0xC81E,\n\t5594:  0xC81F,\n\t5595:  0xC821,\n\t5596:  0xC822,\n\t5597:  0xC823,\n\t5598:  0xC825,\n\t5599:  0xC826,\n\t5600:  0xC827,\n\t5601:  0xC828,\n\t5602:  0xC829,\n\t5603:  0xC82A,\n\t5604:  0xC82B,\n\t5605:  0xC82E,\n\t5606:  0xC830,\n\t5607:  0xC832,\n\t5608:  0xC833,\n\t5609:  0xC834,\n\t5610:  0xC835,\n\t5611:  0xC836,\n\t5612:  0xC837,\n\t5613:  0xC839,\n\t5614:  0xC83A,\n\t5615:  0xC83B,\n\t5616:  0xC83D,\n\t5617:  0xC83E,\n\t5618:  0xC83F,\n\t5619:  0xC841,\n\t5620:  0xC842,\n\t5621:  0xC843,\n\t5622:  0xC844,\n\t5623:  0xC845,\n\t5624:  0xC846,\n\t5625:  0xC847,\n\t5626:  0xC84A,\n\t5627:  0xC84B,\n\t5628:  0xC84E,\n\t5629:  0xC84F,\n\t5630:  0xC850,\n\t5631:  0xC851,\n\t5632:  0xC852,\n\t5633:  0xC853,\n\t5634:  0xC855,\n\t5635:  0xC856,\n\t5636:  0xC857,\n\t5637:  0xC858,\n\t5638:  0xC859,\n\t5639:  0xC85A,\n\t5640:  0xC85B,\n\t5641:  0xC85C,\n\t5642:  0xC85D,\n\t5643:  0xC85E,\n\t5644:  0xC85F,\n\t5645:  0xC860,\n\t5646:  0xC861,\n\t5647:  0xC862,\n\t5648:  0xC863,\n\t5649:  0xC864,\n\t5650:  0xC865,\n\t5651:  0xC866,\n\t5652:  0xC867,\n\t5653:  0xC868,\n\t5654:  0xC869,\n\t5655:  0xC86A,\n\t5656:  0xC86B,\n\t5657:  0xC86C,\n\t5658:  0xC86D,\n\t5659:  0xC86E,\n\t5660:  0xC86F,\n\t5661:  0xC872,\n\t5662:  0xC873,\n\t5663:  0xC875,\n\t5664:  0xC876,\n\t5665:  0xC877,\n\t5666:  0xC879,\n\t5667:  0xC87B,\n\t5668:  0xC87C,\n\t5669:  0xC87D,\n\t5670:  0xC87E,\n\t5671:  0xC87F,\n\t5672:  0xC882,\n\t5673:  0xC884,\n\t5674:  0xC888,\n\t5675:  0xC889,\n\t5676:  0xC88A,\n\t5677:  0xC88E,\n\t5678:  0xC88F,\n\t5679:  0xC890,\n\t5680:  0xC891,\n\t5681:  0xC892,\n\t5682:  0xC893,\n\t5683:  0xC895,\n\t5684:  0xC896,\n\t5685:  0xC897,\n\t5686:  0xC898,\n\t5687:  0xC899,\n\t5688:  0xC89A,\n\t5689:  0xC89B,\n\t5690:  0xC89C,\n\t5691:  0xC89E,\n\t5692:  0xC8A0,\n\t5693:  0xC8A2,\n\t5694:  0xC8A3,\n\t5695:  0xC8A4,\n\t5696:  0xC8A5,\n\t5697:  0xC8A6,\n\t5698:  0xC8A7,\n\t5699:  0xC8A9,\n\t5700:  0xC8AA,\n\t5701:  0xC8AB,\n\t5702:  0xC8AC,\n\t5703:  0xC8AD,\n\t5704:  0xC8AE,\n\t5705:  0xC8AF,\n\t5706:  0xC8B0,\n\t5707:  0xC8B1,\n\t5708:  0xC8B2,\n\t5709:  0xC8B3,\n\t5710:  0xC8B4,\n\t5711:  0xC8B5,\n\t5712:  0xC8B6,\n\t5713:  0xC8B7,\n\t5714:  0xC8B8,\n\t5715:  0xC8B9,\n\t5716:  0xC8BA,\n\t5717:  0xC8BB,\n\t5718:  0xC8BE,\n\t5719:  0xC8BF,\n\t5720:  0xC8C0,\n\t5721:  0xC8C1,\n\t5722:  0xC8C2,\n\t5723:  0xC8C3,\n\t5724:  0xC8C5,\n\t5725:  0xC8C6,\n\t5726:  0xC8C7,\n\t5727:  0xC8C9,\n\t5728:  0xC8CA,\n\t5729:  0xC8CB,\n\t5730:  0xC8CD,\n\t5731:  0xC8CE,\n\t5732:  0xC8CF,\n\t5733:  0xC8D0,\n\t5734:  0xC8D1,\n\t5735:  0xC8D2,\n\t5736:  0xC8D3,\n\t5737:  0xC8D6,\n\t5738:  0xC8D8,\n\t5739:  0xC8DA,\n\t5740:  0xC8DB,\n\t5741:  0xC8DC,\n\t5742:  0xC8DD,\n\t5743:  0xC8DE,\n\t5744:  0xC8DF,\n\t5745:  0xC8E2,\n\t5746:  0xC8E3,\n\t5747:  0xC8E5,\n\t5748:  0xC8E6,\n\t5749:  0xC8E7,\n\t5750:  0xC8E8,\n\t5751:  0xC8E9,\n\t5752:  0xC8EA,\n\t5753:  0xC8EB,\n\t5754:  0xC8EC,\n\t5755:  0xC8ED,\n\t5756:  0xC8EE,\n\t5757:  0xC8EF,\n\t5758:  0xC8F0,\n\t5759:  0xC8F1,\n\t5760:  0xC8F2,\n\t5761:  0xC8F3,\n\t5762:  0xC8F4,\n\t5763:  0xC8F6,\n\t5764:  0xC8F7,\n\t5765:  0xC8F8,\n\t5766:  0xC8F9,\n\t5767:  0xC8FA,\n\t5768:  0xC8FB,\n\t5769:  0xC8FE,\n\t5770:  0xC8FF,\n\t5771:  0xC901,\n\t5772:  0xC902,\n\t5773:  0xC903,\n\t5774:  0xC907,\n\t5775:  0xC908,\n\t5776:  0xC909,\n\t5777:  0xC90A,\n\t5778:  0xC90B,\n\t5779:  0xC90E,\n\t5780:  0x3000,\n\t5781:  0x3001,\n\t5782:  0x3002,\n\t5783:  0x00B7,\n\t5784:  0x2025,\n\t5785:  0x2026,\n\t5786:  0x00A8,\n\t5787:  0x3003,\n\t5788:  0x00AD,\n\t5789:  0x2015,\n\t5790:  0x2225,\n\t5791:  0xFF3C,\n\t5792:  0x223C,\n\t5793:  0x2018,\n\t5794:  0x2019,\n\t5795:  0x201C,\n\t5796:  0x201D,\n\t5797:  0x3014,\n\t5798:  0x3015,\n\t5799:  0x3008,\n\t5800:  0x3009,\n\t5801:  0x300A,\n\t5802:  0x300B,\n\t5803:  0x300C,\n\t5804:  0x300D,\n\t5805:  0x300E,\n\t5806:  0x300F,\n\t5807:  0x3010,\n\t5808:  0x3011,\n\t5809:  0x00B1,\n\t5810:  0x00D7,\n\t5811:  0x00F7,\n\t5812:  0x2260,\n\t5813:  0x2264,\n\t5814:  0x2265,\n\t5815:  0x221E,\n\t5816:  0x2234,\n\t5817:  0x00B0,\n\t5818:  0x2032,\n\t5819:  0x2033,\n\t5820:  0x2103,\n\t5821:  0x212B,\n\t5822:  0xFFE0,\n\t5823:  0xFFE1,\n\t5824:  0xFFE5,\n\t5825:  0x2642,\n\t5826:  0x2640,\n\t5827:  0x2220,\n\t5828:  0x22A5,\n\t5829:  0x2312,\n\t5830:  0x2202,\n\t5831:  0x2207,\n\t5832:  0x2261,\n\t5833:  0x2252,\n\t5834:  0x00A7,\n\t5835:  0x203B,\n\t5836:  0x2606,\n\t5837:  0x2605,\n\t5838:  0x25CB,\n\t5839:  0x25CF,\n\t5840:  0x25CE,\n\t5841:  0x25C7,\n\t5842:  0x25C6,\n\t5843:  0x25A1,\n\t5844:  0x25A0,\n\t5845:  0x25B3,\n\t5846:  0x25B2,\n\t5847:  0x25BD,\n\t5848:  0x25BC,\n\t5849:  0x2192,\n\t5850:  0x2190,\n\t5851:  0x2191,\n\t5852:  0x2193,\n\t5853:  0x2194,\n\t5854:  0x3013,\n\t5855:  0x226A,\n\t5856:  0x226B,\n\t5857:  0x221A,\n\t5858:  0x223D,\n\t5859:  0x221D,\n\t5860:  0x2235,\n\t5861:  0x222B,\n\t5862:  0x222C,\n\t5863:  0x2208,\n\t5864:  0x220B,\n\t5865:  0x2286,\n\t5866:  0x2287,\n\t5867:  0x2282,\n\t5868:  0x2283,\n\t5869:  0x222A,\n\t5870:  0x2229,\n\t5871:  0x2227,\n\t5872:  0x2228,\n\t5873:  0xFFE2,\n\t5874:  0xC910,\n\t5875:  0xC912,\n\t5876:  0xC913,\n\t5877:  0xC914,\n\t5878:  0xC915,\n\t5879:  0xC916,\n\t5880:  0xC917,\n\t5881:  0xC919,\n\t5882:  0xC91A,\n\t5883:  0xC91B,\n\t5884:  0xC91C,\n\t5885:  0xC91D,\n\t5886:  0xC91E,\n\t5887:  0xC91F,\n\t5888:  0xC920,\n\t5889:  0xC921,\n\t5890:  0xC922,\n\t5891:  0xC923,\n\t5892:  0xC924,\n\t5893:  0xC925,\n\t5894:  0xC926,\n\t5895:  0xC927,\n\t5896:  0xC928,\n\t5897:  0xC929,\n\t5898:  0xC92A,\n\t5899:  0xC92B,\n\t5900:  0xC92D,\n\t5901:  0xC92E,\n\t5902:  0xC92F,\n\t5903:  0xC930,\n\t5904:  0xC931,\n\t5905:  0xC932,\n\t5906:  0xC933,\n\t5907:  0xC935,\n\t5908:  0xC936,\n\t5909:  0xC937,\n\t5910:  0xC938,\n\t5911:  0xC939,\n\t5912:  0xC93A,\n\t5913:  0xC93B,\n\t5914:  0xC93C,\n\t5915:  0xC93D,\n\t5916:  0xC93E,\n\t5917:  0xC93F,\n\t5918:  0xC940,\n\t5919:  0xC941,\n\t5920:  0xC942,\n\t5921:  0xC943,\n\t5922:  0xC944,\n\t5923:  0xC945,\n\t5924:  0xC946,\n\t5925:  0xC947,\n\t5926:  0xC948,\n\t5927:  0xC949,\n\t5928:  0xC94A,\n\t5929:  0xC94B,\n\t5930:  0xC94C,\n\t5931:  0xC94D,\n\t5932:  0xC94E,\n\t5933:  0xC94F,\n\t5934:  0xC952,\n\t5935:  0xC953,\n\t5936:  0xC955,\n\t5937:  0xC956,\n\t5938:  0xC957,\n\t5939:  0xC959,\n\t5940:  0xC95A,\n\t5941:  0xC95B,\n\t5942:  0xC95C,\n\t5943:  0xC95D,\n\t5944:  0xC95E,\n\t5945:  0xC95F,\n\t5946:  0xC962,\n\t5947:  0xC964,\n\t5948:  0xC965,\n\t5949:  0xC966,\n\t5950:  0xC967,\n\t5951:  0xC968,\n\t5952:  0xC969,\n\t5953:  0xC96A,\n\t5954:  0xC96B,\n\t5955:  0xC96D,\n\t5956:  0xC96E,\n\t5957:  0xC96F,\n\t5958:  0x21D2,\n\t5959:  0x21D4,\n\t5960:  0x2200,\n\t5961:  0x2203,\n\t5962:  0x00B4,\n\t5963:  0xFF5E,\n\t5964:  0x02C7,\n\t5965:  0x02D8,\n\t5966:  0x02DD,\n\t5967:  0x02DA,\n\t5968:  0x02D9,\n\t5969:  0x00B8,\n\t5970:  0x02DB,\n\t5971:  0x00A1,\n\t5972:  0x00BF,\n\t5973:  0x02D0,\n\t5974:  0x222E,\n\t5975:  0x2211,\n\t5976:  0x220F,\n\t5977:  0x00A4,\n\t5978:  0x2109,\n\t5979:  0x2030,\n\t5980:  0x25C1,\n\t5981:  0x25C0,\n\t5982:  0x25B7,\n\t5983:  0x25B6,\n\t5984:  0x2664,\n\t5985:  0x2660,\n\t5986:  0x2661,\n\t5987:  0x2665,\n\t5988:  0x2667,\n\t5989:  0x2663,\n\t5990:  0x2299,\n\t5991:  0x25C8,\n\t5992:  0x25A3,\n\t5993:  0x25D0,\n\t5994:  0x25D1,\n\t5995:  0x2592,\n\t5996:  0x25A4,\n\t5997:  0x25A5,\n\t5998:  0x25A8,\n\t5999:  0x25A7,\n\t6000:  0x25A6,\n\t6001:  0x25A9,\n\t6002:  0x2668,\n\t6003:  0x260F,\n\t6004:  0x260E,\n\t6005:  0x261C,\n\t6006:  0x261E,\n\t6007:  0x00B6,\n\t6008:  0x2020,\n\t6009:  0x2021,\n\t6010:  0x2195,\n\t6011:  0x2197,\n\t6012:  0x2199,\n\t6013:  0x2196,\n\t6014:  0x2198,\n\t6015:  0x266D,\n\t6016:  0x2669,\n\t6017:  0x266A,\n\t6018:  0x266C,\n\t6019:  0x327F,\n\t6020:  0x321C,\n\t6021:  0x2116,\n\t6022:  0x33C7,\n\t6023:  0x2122,\n\t6024:  0x33C2,\n\t6025:  0x33D8,\n\t6026:  0x2121,\n\t6027:  0x20AC,\n\t6028:  0x00AE,\n\t6052:  0xC971,\n\t6053:  0xC972,\n\t6054:  0xC973,\n\t6055:  0xC975,\n\t6056:  0xC976,\n\t6057:  0xC977,\n\t6058:  0xC978,\n\t6059:  0xC979,\n\t6060:  0xC97A,\n\t6061:  0xC97B,\n\t6062:  0xC97D,\n\t6063:  0xC97E,\n\t6064:  0xC97F,\n\t6065:  0xC980,\n\t6066:  0xC981,\n\t6067:  0xC982,\n\t6068:  0xC983,\n\t6069:  0xC984,\n\t6070:  0xC985,\n\t6071:  0xC986,\n\t6072:  0xC987,\n\t6073:  0xC98A,\n\t6074:  0xC98B,\n\t6075:  0xC98D,\n\t6076:  0xC98E,\n\t6077:  0xC98F,\n\t6078:  0xC991,\n\t6079:  0xC992,\n\t6080:  0xC993,\n\t6081:  0xC994,\n\t6082:  0xC995,\n\t6083:  0xC996,\n\t6084:  0xC997,\n\t6085:  0xC99A,\n\t6086:  0xC99C,\n\t6087:  0xC99E,\n\t6088:  0xC99F,\n\t6089:  0xC9A0,\n\t6090:  0xC9A1,\n\t6091:  0xC9A2,\n\t6092:  0xC9A3,\n\t6093:  0xC9A4,\n\t6094:  0xC9A5,\n\t6095:  0xC9A6,\n\t6096:  0xC9A7,\n\t6097:  0xC9A8,\n\t6098:  0xC9A9,\n\t6099:  0xC9AA,\n\t6100:  0xC9AB,\n\t6101:  0xC9AC,\n\t6102:  0xC9AD,\n\t6103:  0xC9AE,\n\t6104:  0xC9AF,\n\t6105:  0xC9B0,\n\t6106:  0xC9B1,\n\t6107:  0xC9B2,\n\t6108:  0xC9B3,\n\t6109:  0xC9B4,\n\t6110:  0xC9B5,\n\t6111:  0xC9B6,\n\t6112:  0xC9B7,\n\t6113:  0xC9B8,\n\t6114:  0xC9B9,\n\t6115:  0xC9BA,\n\t6116:  0xC9BB,\n\t6117:  0xC9BC,\n\t6118:  0xC9BD,\n\t6119:  0xC9BE,\n\t6120:  0xC9BF,\n\t6121:  0xC9C2,\n\t6122:  0xC9C3,\n\t6123:  0xC9C5,\n\t6124:  0xC9C6,\n\t6125:  0xC9C9,\n\t6126:  0xC9CB,\n\t6127:  0xC9CC,\n\t6128:  0xC9CD,\n\t6129:  0xC9CE,\n\t6130:  0xC9CF,\n\t6131:  0xC9D2,\n\t6132:  0xC9D4,\n\t6133:  0xC9D7,\n\t6134:  0xC9D8,\n\t6135:  0xC9DB,\n\t6136:  0xFF01,\n\t6137:  0xFF02,\n\t6138:  0xFF03,\n\t6139:  0xFF04,\n\t6140:  0xFF05,\n\t6141:  0xFF06,\n\t6142:  0xFF07,\n\t6143:  0xFF08,\n\t6144:  0xFF09,\n\t6145:  0xFF0A,\n\t6146:  0xFF0B,\n\t6147:  0xFF0C,\n\t6148:  0xFF0D,\n\t6149:  0xFF0E,\n\t6150:  0xFF0F,\n\t6151:  0xFF10,\n\t6152:  0xFF11,\n\t6153:  0xFF12,\n\t6154:  0xFF13,\n\t6155:  0xFF14,\n\t6156:  0xFF15,\n\t6157:  0xFF16,\n\t6158:  0xFF17,\n\t6159:  0xFF18,\n\t6160:  0xFF19,\n\t6161:  0xFF1A,\n\t6162:  0xFF1B,\n\t6163:  0xFF1C,\n\t6164:  0xFF1D,\n\t6165:  0xFF1E,\n\t6166:  0xFF1F,\n\t6167:  0xFF20,\n\t6168:  0xFF21,\n\t6169:  0xFF22,\n\t6170:  0xFF23,\n\t6171:  0xFF24,\n\t6172:  0xFF25,\n\t6173:  0xFF26,\n\t6174:  0xFF27,\n\t6175:  0xFF28,\n\t6176:  0xFF29,\n\t6177:  0xFF2A,\n\t6178:  0xFF2B,\n\t6179:  0xFF2C,\n\t6180:  0xFF2D,\n\t6181:  0xFF2E,\n\t6182:  0xFF2F,\n\t6183:  0xFF30,\n\t6184:  0xFF31,\n\t6185:  0xFF32,\n\t6186:  0xFF33,\n\t6187:  0xFF34,\n\t6188:  0xFF35,\n\t6189:  0xFF36,\n\t6190:  0xFF37,\n\t6191:  0xFF38,\n\t6192:  0xFF39,\n\t6193:  0xFF3A,\n\t6194:  0xFF3B,\n\t6195:  0xFFE6,\n\t6196:  0xFF3D,\n\t6197:  0xFF3E,\n\t6198:  0xFF3F,\n\t6199:  0xFF40,\n\t6200:  0xFF41,\n\t6201:  0xFF42,\n\t6202:  0xFF43,\n\t6203:  0xFF44,\n\t6204:  0xFF45,\n\t6205:  0xFF46,\n\t6206:  0xFF47,\n\t6207:  0xFF48,\n\t6208:  0xFF49,\n\t6209:  0xFF4A,\n\t6210:  0xFF4B,\n\t6211:  0xFF4C,\n\t6212:  0xFF4D,\n\t6213:  0xFF4E,\n\t6214:  0xFF4F,\n\t6215:  0xFF50,\n\t6216:  0xFF51,\n\t6217:  0xFF52,\n\t6218:  0xFF53,\n\t6219:  0xFF54,\n\t6220:  0xFF55,\n\t6221:  0xFF56,\n\t6222:  0xFF57,\n\t6223:  0xFF58,\n\t6224:  0xFF59,\n\t6225:  0xFF5A,\n\t6226:  0xFF5B,\n\t6227:  0xFF5C,\n\t6228:  0xFF5D,\n\t6229:  0xFFE3,\n\t6230:  0xC9DE,\n\t6231:  0xC9DF,\n\t6232:  0xC9E1,\n\t6233:  0xC9E3,\n\t6234:  0xC9E5,\n\t6235:  0xC9E6,\n\t6236:  0xC9E8,\n\t6237:  0xC9E9,\n\t6238:  0xC9EA,\n\t6239:  0xC9EB,\n\t6240:  0xC9EE,\n\t6241:  0xC9F2,\n\t6242:  0xC9F3,\n\t6243:  0xC9F4,\n\t6244:  0xC9F5,\n\t6245:  0xC9F6,\n\t6246:  0xC9F7,\n\t6247:  0xC9FA,\n\t6248:  0xC9FB,\n\t6249:  0xC9FD,\n\t6250:  0xC9FE,\n\t6251:  0xC9FF,\n\t6252:  0xCA01,\n\t6253:  0xCA02,\n\t6254:  0xCA03,\n\t6255:  0xCA04,\n\t6256:  0xCA05,\n\t6257:  0xCA06,\n\t6258:  0xCA07,\n\t6259:  0xCA0A,\n\t6260:  0xCA0E,\n\t6261:  0xCA0F,\n\t6262:  0xCA10,\n\t6263:  0xCA11,\n\t6264:  0xCA12,\n\t6265:  0xCA13,\n\t6266:  0xCA15,\n\t6267:  0xCA16,\n\t6268:  0xCA17,\n\t6269:  0xCA19,\n\t6270:  0xCA1A,\n\t6271:  0xCA1B,\n\t6272:  0xCA1C,\n\t6273:  0xCA1D,\n\t6274:  0xCA1E,\n\t6275:  0xCA1F,\n\t6276:  0xCA20,\n\t6277:  0xCA21,\n\t6278:  0xCA22,\n\t6279:  0xCA23,\n\t6280:  0xCA24,\n\t6281:  0xCA25,\n\t6282:  0xCA26,\n\t6283:  0xCA27,\n\t6284:  0xCA28,\n\t6285:  0xCA2A,\n\t6286:  0xCA2B,\n\t6287:  0xCA2C,\n\t6288:  0xCA2D,\n\t6289:  0xCA2E,\n\t6290:  0xCA2F,\n\t6291:  0xCA30,\n\t6292:  0xCA31,\n\t6293:  0xCA32,\n\t6294:  0xCA33,\n\t6295:  0xCA34,\n\t6296:  0xCA35,\n\t6297:  0xCA36,\n\t6298:  0xCA37,\n\t6299:  0xCA38,\n\t6300:  0xCA39,\n\t6301:  0xCA3A,\n\t6302:  0xCA3B,\n\t6303:  0xCA3C,\n\t6304:  0xCA3D,\n\t6305:  0xCA3E,\n\t6306:  0xCA3F,\n\t6307:  0xCA40,\n\t6308:  0xCA41,\n\t6309:  0xCA42,\n\t6310:  0xCA43,\n\t6311:  0xCA44,\n\t6312:  0xCA45,\n\t6313:  0xCA46,\n\t6314:  0x3131,\n\t6315:  0x3132,\n\t6316:  0x3133,\n\t6317:  0x3134,\n\t6318:  0x3135,\n\t6319:  0x3136,\n\t6320:  0x3137,\n\t6321:  0x3138,\n\t6322:  0x3139,\n\t6323:  0x313A,\n\t6324:  0x313B,\n\t6325:  0x313C,\n\t6326:  0x313D,\n\t6327:  0x313E,\n\t6328:  0x313F,\n\t6329:  0x3140,\n\t6330:  0x3141,\n\t6331:  0x3142,\n\t6332:  0x3143,\n\t6333:  0x3144,\n\t6334:  0x3145,\n\t6335:  0x3146,\n\t6336:  0x3147,\n\t6337:  0x3148,\n\t6338:  0x3149,\n\t6339:  0x314A,\n\t6340:  0x314B,\n\t6341:  0x314C,\n\t6342:  0x314D,\n\t6343:  0x314E,\n\t6344:  0x314F,\n\t6345:  0x3150,\n\t6346:  0x3151,\n\t6347:  0x3152,\n\t6348:  0x3153,\n\t6349:  0x3154,\n\t6350:  0x3155,\n\t6351:  0x3156,\n\t6352:  0x3157,\n\t6353:  0x3158,\n\t6354:  0x3159,\n\t6355:  0x315A,\n\t6356:  0x315B,\n\t6357:  0x315C,\n\t6358:  0x315D,\n\t6359:  0x315E,\n\t6360:  0x315F,\n\t6361:  0x3160,\n\t6362:  0x3161,\n\t6363:  0x3162,\n\t6364:  0x3163,\n\t6365:  0x3164,\n\t6366:  0x3165,\n\t6367:  0x3166,\n\t6368:  0x3167,\n\t6369:  0x3168,\n\t6370:  0x3169,\n\t6371:  0x316A,\n\t6372:  0x316B,\n\t6373:  0x316C,\n\t6374:  0x316D,\n\t6375:  0x316E,\n\t6376:  0x316F,\n\t6377:  0x3170,\n\t6378:  0x3171,\n\t6379:  0x3172,\n\t6380:  0x3173,\n\t6381:  0x3174,\n\t6382:  0x3175,\n\t6383:  0x3176,\n\t6384:  0x3177,\n\t6385:  0x3178,\n\t6386:  0x3179,\n\t6387:  0x317A,\n\t6388:  0x317B,\n\t6389:  0x317C,\n\t6390:  0x317D,\n\t6391:  0x317E,\n\t6392:  0x317F,\n\t6393:  0x3180,\n\t6394:  0x3181,\n\t6395:  0x3182,\n\t6396:  0x3183,\n\t6397:  0x3184,\n\t6398:  0x3185,\n\t6399:  0x3186,\n\t6400:  0x3187,\n\t6401:  0x3188,\n\t6402:  0x3189,\n\t6403:  0x318A,\n\t6404:  0x318B,\n\t6405:  0x318C,\n\t6406:  0x318D,\n\t6407:  0x318E,\n\t6408:  0xCA47,\n\t6409:  0xCA48,\n\t6410:  0xCA49,\n\t6411:  0xCA4A,\n\t6412:  0xCA4B,\n\t6413:  0xCA4E,\n\t6414:  0xCA4F,\n\t6415:  0xCA51,\n\t6416:  0xCA52,\n\t6417:  0xCA53,\n\t6418:  0xCA55,\n\t6419:  0xCA56,\n\t6420:  0xCA57,\n\t6421:  0xCA58,\n\t6422:  0xCA59,\n\t6423:  0xCA5A,\n\t6424:  0xCA5B,\n\t6425:  0xCA5E,\n\t6426:  0xCA62,\n\t6427:  0xCA63,\n\t6428:  0xCA64,\n\t6429:  0xCA65,\n\t6430:  0xCA66,\n\t6431:  0xCA67,\n\t6432:  0xCA69,\n\t6433:  0xCA6A,\n\t6434:  0xCA6B,\n\t6435:  0xCA6C,\n\t6436:  0xCA6D,\n\t6437:  0xCA6E,\n\t6438:  0xCA6F,\n\t6439:  0xCA70,\n\t6440:  0xCA71,\n\t6441:  0xCA72,\n\t6442:  0xCA73,\n\t6443:  0xCA74,\n\t6444:  0xCA75,\n\t6445:  0xCA76,\n\t6446:  0xCA77,\n\t6447:  0xCA78,\n\t6448:  0xCA79,\n\t6449:  0xCA7A,\n\t6450:  0xCA7B,\n\t6451:  0xCA7C,\n\t6452:  0xCA7E,\n\t6453:  0xCA7F,\n\t6454:  0xCA80,\n\t6455:  0xCA81,\n\t6456:  0xCA82,\n\t6457:  0xCA83,\n\t6458:  0xCA85,\n\t6459:  0xCA86,\n\t6460:  0xCA87,\n\t6461:  0xCA88,\n\t6462:  0xCA89,\n\t6463:  0xCA8A,\n\t6464:  0xCA8B,\n\t6465:  0xCA8C,\n\t6466:  0xCA8D,\n\t6467:  0xCA8E,\n\t6468:  0xCA8F,\n\t6469:  0xCA90,\n\t6470:  0xCA91,\n\t6471:  0xCA92,\n\t6472:  0xCA93,\n\t6473:  0xCA94,\n\t6474:  0xCA95,\n\t6475:  0xCA96,\n\t6476:  0xCA97,\n\t6477:  0xCA99,\n\t6478:  0xCA9A,\n\t6479:  0xCA9B,\n\t6480:  0xCA9C,\n\t6481:  0xCA9D,\n\t6482:  0xCA9E,\n\t6483:  0xCA9F,\n\t6484:  0xCAA0,\n\t6485:  0xCAA1,\n\t6486:  0xCAA2,\n\t6487:  0xCAA3,\n\t6488:  0xCAA4,\n\t6489:  0xCAA5,\n\t6490:  0xCAA6,\n\t6491:  0xCAA7,\n\t6492:  0x2170,\n\t6493:  0x2171,\n\t6494:  0x2172,\n\t6495:  0x2173,\n\t6496:  0x2174,\n\t6497:  0x2175,\n\t6498:  0x2176,\n\t6499:  0x2177,\n\t6500:  0x2178,\n\t6501:  0x2179,\n\t6507:  0x2160,\n\t6508:  0x2161,\n\t6509:  0x2162,\n\t6510:  0x2163,\n\t6511:  0x2164,\n\t6512:  0x2165,\n\t6513:  0x2166,\n\t6514:  0x2167,\n\t6515:  0x2168,\n\t6516:  0x2169,\n\t6524:  0x0391,\n\t6525:  0x0392,\n\t6526:  0x0393,\n\t6527:  0x0394,\n\t6528:  0x0395,\n\t6529:  0x0396,\n\t6530:  0x0397,\n\t6531:  0x0398,\n\t6532:  0x0399,\n\t6533:  0x039A,\n\t6534:  0x039B,\n\t6535:  0x039C,\n\t6536:  0x039D,\n\t6537:  0x039E,\n\t6538:  0x039F,\n\t6539:  0x03A0,\n\t6540:  0x03A1,\n\t6541:  0x03A3,\n\t6542:  0x03A4,\n\t6543:  0x03A5,\n\t6544:  0x03A6,\n\t6545:  0x03A7,\n\t6546:  0x03A8,\n\t6547:  0x03A9,\n\t6556:  0x03B1,\n\t6557:  0x03B2,\n\t6558:  0x03B3,\n\t6559:  0x03B4,\n\t6560:  0x03B5,\n\t6561:  0x03B6,\n\t6562:  0x03B7,\n\t6563:  0x03B8,\n\t6564:  0x03B9,\n\t6565:  0x03BA,\n\t6566:  0x03BB,\n\t6567:  0x03BC,\n\t6568:  0x03BD,\n\t6569:  0x03BE,\n\t6570:  0x03BF,\n\t6571:  0x03C0,\n\t6572:  0x03C1,\n\t6573:  0x03C3,\n\t6574:  0x03C4,\n\t6575:  0x03C5,\n\t6576:  0x03C6,\n\t6577:  0x03C7,\n\t6578:  0x03C8,\n\t6579:  0x03C9,\n\t6586:  0xCAA8,\n\t6587:  0xCAA9,\n\t6588:  0xCAAA,\n\t6589:  0xCAAB,\n\t6590:  0xCAAC,\n\t6591:  0xCAAD,\n\t6592:  0xCAAE,\n\t6593:  0xCAAF,\n\t6594:  0xCAB0,\n\t6595:  0xCAB1,\n\t6596:  0xCAB2,\n\t6597:  0xCAB3,\n\t6598:  0xCAB4,\n\t6599:  0xCAB5,\n\t6600:  0xCAB6,\n\t6601:  0xCAB7,\n\t6602:  0xCAB8,\n\t6603:  0xCAB9,\n\t6604:  0xCABA,\n\t6605:  0xCABB,\n\t6606:  0xCABE,\n\t6607:  0xCABF,\n\t6608:  0xCAC1,\n\t6609:  0xCAC2,\n\t6610:  0xCAC3,\n\t6611:  0xCAC5,\n\t6612:  0xCAC6,\n\t6613:  0xCAC7,\n\t6614:  0xCAC8,\n\t6615:  0xCAC9,\n\t6616:  0xCACA,\n\t6617:  0xCACB,\n\t6618:  0xCACE,\n\t6619:  0xCAD0,\n\t6620:  0xCAD2,\n\t6621:  0xCAD4,\n\t6622:  0xCAD5,\n\t6623:  0xCAD6,\n\t6624:  0xCAD7,\n\t6625:  0xCADA,\n\t6626:  0xCADB,\n\t6627:  0xCADC,\n\t6628:  0xCADD,\n\t6629:  0xCADE,\n\t6630:  0xCADF,\n\t6631:  0xCAE1,\n\t6632:  0xCAE2,\n\t6633:  0xCAE3,\n\t6634:  0xCAE4,\n\t6635:  0xCAE5,\n\t6636:  0xCAE6,\n\t6637:  0xCAE7,\n\t6638:  0xCAE8,\n\t6639:  0xCAE9,\n\t6640:  0xCAEA,\n\t6641:  0xCAEB,\n\t6642:  0xCAED,\n\t6643:  0xCAEE,\n\t6644:  0xCAEF,\n\t6645:  0xCAF0,\n\t6646:  0xCAF1,\n\t6647:  0xCAF2,\n\t6648:  0xCAF3,\n\t6649:  0xCAF5,\n\t6650:  0xCAF6,\n\t6651:  0xCAF7,\n\t6652:  0xCAF8,\n\t6653:  0xCAF9,\n\t6654:  0xCAFA,\n\t6655:  0xCAFB,\n\t6656:  0xCAFC,\n\t6657:  0xCAFD,\n\t6658:  0xCAFE,\n\t6659:  0xCAFF,\n\t6660:  0xCB00,\n\t6661:  0xCB01,\n\t6662:  0xCB02,\n\t6663:  0xCB03,\n\t6664:  0xCB04,\n\t6665:  0xCB05,\n\t6666:  0xCB06,\n\t6667:  0xCB07,\n\t6668:  0xCB09,\n\t6669:  0xCB0A,\n\t6670:  0x2500,\n\t6671:  0x2502,\n\t6672:  0x250C,\n\t6673:  0x2510,\n\t6674:  0x2518,\n\t6675:  0x2514,\n\t6676:  0x251C,\n\t6677:  0x252C,\n\t6678:  0x2524,\n\t6679:  0x2534,\n\t6680:  0x253C,\n\t6681:  0x2501,\n\t6682:  0x2503,\n\t6683:  0x250F,\n\t6684:  0x2513,\n\t6685:  0x251B,\n\t6686:  0x2517,\n\t6687:  0x2523,\n\t6688:  0x2533,\n\t6689:  0x252B,\n\t6690:  0x253B,\n\t6691:  0x254B,\n\t6692:  0x2520,\n\t6693:  0x252F,\n\t6694:  0x2528,\n\t6695:  0x2537,\n\t6696:  0x253F,\n\t6697:  0x251D,\n\t6698:  0x2530,\n\t6699:  0x2525,\n\t6700:  0x2538,\n\t6701:  0x2542,\n\t6702:  0x2512,\n\t6703:  0x2511,\n\t6704:  0x251A,\n\t6705:  0x2519,\n\t6706:  0x2516,\n\t6707:  0x2515,\n\t6708:  0x250E,\n\t6709:  0x250D,\n\t6710:  0x251E,\n\t6711:  0x251F,\n\t6712:  0x2521,\n\t6713:  0x2522,\n\t6714:  0x2526,\n\t6715:  0x2527,\n\t6716:  0x2529,\n\t6717:  0x252A,\n\t6718:  0x252D,\n\t6719:  0x252E,\n\t6720:  0x2531,\n\t6721:  0x2532,\n\t6722:  0x2535,\n\t6723:  0x2536,\n\t6724:  0x2539,\n\t6725:  0x253A,\n\t6726:  0x253D,\n\t6727:  0x253E,\n\t6728:  0x2540,\n\t6729:  0x2541,\n\t6730:  0x2543,\n\t6731:  0x2544,\n\t6732:  0x2545,\n\t6733:  0x2546,\n\t6734:  0x2547,\n\t6735:  0x2548,\n\t6736:  0x2549,\n\t6737:  0x254A,\n\t6764:  0xCB0B,\n\t6765:  0xCB0C,\n\t6766:  0xCB0D,\n\t6767:  0xCB0E,\n\t6768:  0xCB0F,\n\t6769:  0xCB11,\n\t6770:  0xCB12,\n\t6771:  0xCB13,\n\t6772:  0xCB15,\n\t6773:  0xCB16,\n\t6774:  0xCB17,\n\t6775:  0xCB19,\n\t6776:  0xCB1A,\n\t6777:  0xCB1B,\n\t6778:  0xCB1C,\n\t6779:  0xCB1D,\n\t6780:  0xCB1E,\n\t6781:  0xCB1F,\n\t6782:  0xCB22,\n\t6783:  0xCB23,\n\t6784:  0xCB24,\n\t6785:  0xCB25,\n\t6786:  0xCB26,\n\t6787:  0xCB27,\n\t6788:  0xCB28,\n\t6789:  0xCB29,\n\t6790:  0xCB2A,\n\t6791:  0xCB2B,\n\t6792:  0xCB2C,\n\t6793:  0xCB2D,\n\t6794:  0xCB2E,\n\t6795:  0xCB2F,\n\t6796:  0xCB30,\n\t6797:  0xCB31,\n\t6798:  0xCB32,\n\t6799:  0xCB33,\n\t6800:  0xCB34,\n\t6801:  0xCB35,\n\t6802:  0xCB36,\n\t6803:  0xCB37,\n\t6804:  0xCB38,\n\t6805:  0xCB39,\n\t6806:  0xCB3A,\n\t6807:  0xCB3B,\n\t6808:  0xCB3C,\n\t6809:  0xCB3D,\n\t6810:  0xCB3E,\n\t6811:  0xCB3F,\n\t6812:  0xCB40,\n\t6813:  0xCB42,\n\t6814:  0xCB43,\n\t6815:  0xCB44,\n\t6816:  0xCB45,\n\t6817:  0xCB46,\n\t6818:  0xCB47,\n\t6819:  0xCB4A,\n\t6820:  0xCB4B,\n\t6821:  0xCB4D,\n\t6822:  0xCB4E,\n\t6823:  0xCB4F,\n\t6824:  0xCB51,\n\t6825:  0xCB52,\n\t6826:  0xCB53,\n\t6827:  0xCB54,\n\t6828:  0xCB55,\n\t6829:  0xCB56,\n\t6830:  0xCB57,\n\t6831:  0xCB5A,\n\t6832:  0xCB5B,\n\t6833:  0xCB5C,\n\t6834:  0xCB5E,\n\t6835:  0xCB5F,\n\t6836:  0xCB60,\n\t6837:  0xCB61,\n\t6838:  0xCB62,\n\t6839:  0xCB63,\n\t6840:  0xCB65,\n\t6841:  0xCB66,\n\t6842:  0xCB67,\n\t6843:  0xCB68,\n\t6844:  0xCB69,\n\t6845:  0xCB6A,\n\t6846:  0xCB6B,\n\t6847:  0xCB6C,\n\t6848:  0x3395,\n\t6849:  0x3396,\n\t6850:  0x3397,\n\t6851:  0x2113,\n\t6852:  0x3398,\n\t6853:  0x33C4,\n\t6854:  0x33A3,\n\t6855:  0x33A4,\n\t6856:  0x33A5,\n\t6857:  0x33A6,\n\t6858:  0x3399,\n\t6859:  0x339A,\n\t6860:  0x339B,\n\t6861:  0x339C,\n\t6862:  0x339D,\n\t6863:  0x339E,\n\t6864:  0x339F,\n\t6865:  0x33A0,\n\t6866:  0x33A1,\n\t6867:  0x33A2,\n\t6868:  0x33CA,\n\t6869:  0x338D,\n\t6870:  0x338E,\n\t6871:  0x338F,\n\t6872:  0x33CF,\n\t6873:  0x3388,\n\t6874:  0x3389,\n\t6875:  0x33C8,\n\t6876:  0x33A7,\n\t6877:  0x33A8,\n\t6878:  0x33B0,\n\t6879:  0x33B1,\n\t6880:  0x33B2,\n\t6881:  0x33B3,\n\t6882:  0x33B4,\n\t6883:  0x33B5,\n\t6884:  0x33B6,\n\t6885:  0x33B7,\n\t6886:  0x33B8,\n\t6887:  0x33B9,\n\t6888:  0x3380,\n\t6889:  0x3381,\n\t6890:  0x3382,\n\t6891:  0x3383,\n\t6892:  0x3384,\n\t6893:  0x33BA,\n\t6894:  0x33BB,\n\t6895:  0x33BC,\n\t6896:  0x33BD,\n\t6897:  0x33BE,\n\t6898:  0x33BF,\n\t6899:  0x3390,\n\t6900:  0x3391,\n\t6901:  0x3392,\n\t6902:  0x3393,\n\t6903:  0x3394,\n\t6904:  0x2126,\n\t6905:  0x33C0,\n\t6906:  0x33C1,\n\t6907:  0x338A,\n\t6908:  0x338B,\n\t6909:  0x338C,\n\t6910:  0x33D6,\n\t6911:  0x33C5,\n\t6912:  0x33AD,\n\t6913:  0x33AE,\n\t6914:  0x33AF,\n\t6915:  0x33DB,\n\t6916:  0x33A9,\n\t6917:  0x33AA,\n\t6918:  0x33AB,\n\t6919:  0x33AC,\n\t6920:  0x33DD,\n\t6921:  0x33D0,\n\t6922:  0x33D3,\n\t6923:  0x33C3,\n\t6924:  0x33C9,\n\t6925:  0x33DC,\n\t6926:  0x33C6,\n\t6942:  0xCB6D,\n\t6943:  0xCB6E,\n\t6944:  0xCB6F,\n\t6945:  0xCB70,\n\t6946:  0xCB71,\n\t6947:  0xCB72,\n\t6948:  0xCB73,\n\t6949:  0xCB74,\n\t6950:  0xCB75,\n\t6951:  0xCB76,\n\t6952:  0xCB77,\n\t6953:  0xCB7A,\n\t6954:  0xCB7B,\n\t6955:  0xCB7C,\n\t6956:  0xCB7D,\n\t6957:  0xCB7E,\n\t6958:  0xCB7F,\n\t6959:  0xCB80,\n\t6960:  0xCB81,\n\t6961:  0xCB82,\n\t6962:  0xCB83,\n\t6963:  0xCB84,\n\t6964:  0xCB85,\n\t6965:  0xCB86,\n\t6966:  0xCB87,\n\t6967:  0xCB88,\n\t6968:  0xCB89,\n\t6969:  0xCB8A,\n\t6970:  0xCB8B,\n\t6971:  0xCB8C,\n\t6972:  0xCB8D,\n\t6973:  0xCB8E,\n\t6974:  0xCB8F,\n\t6975:  0xCB90,\n\t6976:  0xCB91,\n\t6977:  0xCB92,\n\t6978:  0xCB93,\n\t6979:  0xCB94,\n\t6980:  0xCB95,\n\t6981:  0xCB96,\n\t6982:  0xCB97,\n\t6983:  0xCB98,\n\t6984:  0xCB99,\n\t6985:  0xCB9A,\n\t6986:  0xCB9B,\n\t6987:  0xCB9D,\n\t6988:  0xCB9E,\n\t6989:  0xCB9F,\n\t6990:  0xCBA0,\n\t6991:  0xCBA1,\n\t6992:  0xCBA2,\n\t6993:  0xCBA3,\n\t6994:  0xCBA4,\n\t6995:  0xCBA5,\n\t6996:  0xCBA6,\n\t6997:  0xCBA7,\n\t6998:  0xCBA8,\n\t6999:  0xCBA9,\n\t7000:  0xCBAA,\n\t7001:  0xCBAB,\n\t7002:  0xCBAC,\n\t7003:  0xCBAD,\n\t7004:  0xCBAE,\n\t7005:  0xCBAF,\n\t7006:  0xCBB0,\n\t7007:  0xCBB1,\n\t7008:  0xCBB2,\n\t7009:  0xCBB3,\n\t7010:  0xCBB4,\n\t7011:  0xCBB5,\n\t7012:  0xCBB6,\n\t7013:  0xCBB7,\n\t7014:  0xCBB9,\n\t7015:  0xCBBA,\n\t7016:  0xCBBB,\n\t7017:  0xCBBC,\n\t7018:  0xCBBD,\n\t7019:  0xCBBE,\n\t7020:  0xCBBF,\n\t7021:  0xCBC0,\n\t7022:  0xCBC1,\n\t7023:  0xCBC2,\n\t7024:  0xCBC3,\n\t7025:  0xCBC4,\n\t7026:  0x00C6,\n\t7027:  0x00D0,\n\t7028:  0x00AA,\n\t7029:  0x0126,\n\t7031:  0x0132,\n\t7033:  0x013F,\n\t7034:  0x0141,\n\t7035:  0x00D8,\n\t7036:  0x0152,\n\t7037:  0x00BA,\n\t7038:  0x00DE,\n\t7039:  0x0166,\n\t7040:  0x014A,\n\t7042:  0x3260,\n\t7043:  0x3261,\n\t7044:  0x3262,\n\t7045:  0x3263,\n\t7046:  0x3264,\n\t7047:  0x3265,\n\t7048:  0x3266,\n\t7049:  0x3267,\n\t7050:  0x3268,\n\t7051:  0x3269,\n\t7052:  0x326A,\n\t7053:  0x326B,\n\t7054:  0x326C,\n\t7055:  0x326D,\n\t7056:  0x326E,\n\t7057:  0x326F,\n\t7058:  0x3270,\n\t7059:  0x3271,\n\t7060:  0x3272,\n\t7061:  0x3273,\n\t7062:  0x3274,\n\t7063:  0x3275,\n\t7064:  0x3276,\n\t7065:  0x3277,\n\t7066:  0x3278,\n\t7067:  0x3279,\n\t7068:  0x327A,\n\t7069:  0x327B,\n\t7070:  0x24D0,\n\t7071:  0x24D1,\n\t7072:  0x24D2,\n\t7073:  0x24D3,\n\t7074:  0x24D4,\n\t7075:  0x24D5,\n\t7076:  0x24D6,\n\t7077:  0x24D7,\n\t7078:  0x24D8,\n\t7079:  0x24D9,\n\t7080:  0x24DA,\n\t7081:  0x24DB,\n\t7082:  0x24DC,\n\t7083:  0x24DD,\n\t7084:  0x24DE,\n\t7085:  0x24DF,\n\t7086:  0x24E0,\n\t7087:  0x24E1,\n\t7088:  0x24E2,\n\t7089:  0x24E3,\n\t7090:  0x24E4,\n\t7091:  0x24E5,\n\t7092:  0x24E6,\n\t7093:  0x24E7,\n\t7094:  0x24E8,\n\t7095:  0x24E9,\n\t7096:  0x2460,\n\t7097:  0x2461,\n\t7098:  0x2462,\n\t7099:  0x2463,\n\t7100:  0x2464,\n\t7101:  0x2465,\n\t7102:  0x2466,\n\t7103:  0x2467,\n\t7104:  0x2468,\n\t7105:  0x2469,\n\t7106:  0x246A,\n\t7107:  0x246B,\n\t7108:  0x246C,\n\t7109:  0x246D,\n\t7110:  0x246E,\n\t7111:  0x00BD,\n\t7112:  0x2153,\n\t7113:  0x2154,\n\t7114:  0x00BC,\n\t7115:  0x00BE,\n\t7116:  0x215B,\n\t7117:  0x215C,\n\t7118:  0x215D,\n\t7119:  0x215E,\n\t7120:  0xCBC5,\n\t7121:  0xCBC6,\n\t7122:  0xCBC7,\n\t7123:  0xCBC8,\n\t7124:  0xCBC9,\n\t7125:  0xCBCA,\n\t7126:  0xCBCB,\n\t7127:  0xCBCC,\n\t7128:  0xCBCD,\n\t7129:  0xCBCE,\n\t7130:  0xCBCF,\n\t7131:  0xCBD0,\n\t7132:  0xCBD1,\n\t7133:  0xCBD2,\n\t7134:  0xCBD3,\n\t7135:  0xCBD5,\n\t7136:  0xCBD6,\n\t7137:  0xCBD7,\n\t7138:  0xCBD8,\n\t7139:  0xCBD9,\n\t7140:  0xCBDA,\n\t7141:  0xCBDB,\n\t7142:  0xCBDC,\n\t7143:  0xCBDD,\n\t7144:  0xCBDE,\n\t7145:  0xCBDF,\n\t7146:  0xCBE0,\n\t7147:  0xCBE1,\n\t7148:  0xCBE2,\n\t7149:  0xCBE3,\n\t7150:  0xCBE5,\n\t7151:  0xCBE6,\n\t7152:  0xCBE8,\n\t7153:  0xCBEA,\n\t7154:  0xCBEB,\n\t7155:  0xCBEC,\n\t7156:  0xCBED,\n\t7157:  0xCBEE,\n\t7158:  0xCBEF,\n\t7159:  0xCBF0,\n\t7160:  0xCBF1,\n\t7161:  0xCBF2,\n\t7162:  0xCBF3,\n\t7163:  0xCBF4,\n\t7164:  0xCBF5,\n\t7165:  0xCBF6,\n\t7166:  0xCBF7,\n\t7167:  0xCBF8,\n\t7168:  0xCBF9,\n\t7169:  0xCBFA,\n\t7170:  0xCBFB,\n\t7171:  0xCBFC,\n\t7172:  0xCBFD,\n\t7173:  0xCBFE,\n\t7174:  0xCBFF,\n\t7175:  0xCC00,\n\t7176:  0xCC01,\n\t7177:  0xCC02,\n\t7178:  0xCC03,\n\t7179:  0xCC04,\n\t7180:  0xCC05,\n\t7181:  0xCC06,\n\t7182:  0xCC07,\n\t7183:  0xCC08,\n\t7184:  0xCC09,\n\t7185:  0xCC0A,\n\t7186:  0xCC0B,\n\t7187:  0xCC0E,\n\t7188:  0xCC0F,\n\t7189:  0xCC11,\n\t7190:  0xCC12,\n\t7191:  0xCC13,\n\t7192:  0xCC15,\n\t7193:  0xCC16,\n\t7194:  0xCC17,\n\t7195:  0xCC18,\n\t7196:  0xCC19,\n\t7197:  0xCC1A,\n\t7198:  0xCC1B,\n\t7199:  0xCC1E,\n\t7200:  0xCC1F,\n\t7201:  0xCC20,\n\t7202:  0xCC23,\n\t7203:  0xCC24,\n\t7204:  0x00E6,\n\t7205:  0x0111,\n\t7206:  0x00F0,\n\t7207:  0x0127,\n\t7208:  0x0131,\n\t7209:  0x0133,\n\t7210:  0x0138,\n\t7211:  0x0140,\n\t7212:  0x0142,\n\t7213:  0x00F8,\n\t7214:  0x0153,\n\t7215:  0x00DF,\n\t7216:  0x00FE,\n\t7217:  0x0167,\n\t7218:  0x014B,\n\t7219:  0x0149,\n\t7220:  0x3200,\n\t7221:  0x3201,\n\t7222:  0x3202,\n\t7223:  0x3203,\n\t7224:  0x3204,\n\t7225:  0x3205,\n\t7226:  0x3206,\n\t7227:  0x3207,\n\t7228:  0x3208,\n\t7229:  0x3209,\n\t7230:  0x320A,\n\t7231:  0x320B,\n\t7232:  0x320C,\n\t7233:  0x320D,\n\t7234:  0x320E,\n\t7235:  0x320F,\n\t7236:  0x3210,\n\t7237:  0x3211,\n\t7238:  0x3212,\n\t7239:  0x3213,\n\t7240:  0x3214,\n\t7241:  0x3215,\n\t7242:  0x3216,\n\t7243:  0x3217,\n\t7244:  0x3218,\n\t7245:  0x3219,\n\t7246:  0x321A,\n\t7247:  0x321B,\n\t7248:  0x249C,\n\t7249:  0x249D,\n\t7250:  0x249E,\n\t7251:  0x249F,\n\t7252:  0x24A0,\n\t7253:  0x24A1,\n\t7254:  0x24A2,\n\t7255:  0x24A3,\n\t7256:  0x24A4,\n\t7257:  0x24A5,\n\t7258:  0x24A6,\n\t7259:  0x24A7,\n\t7260:  0x24A8,\n\t7261:  0x24A9,\n\t7262:  0x24AA,\n\t7263:  0x24AB,\n\t7264:  0x24AC,\n\t7265:  0x24AD,\n\t7266:  0x24AE,\n\t7267:  0x24AF,\n\t7268:  0x24B0,\n\t7269:  0x24B1,\n\t7270:  0x24B2,\n\t7271:  0x24B3,\n\t7272:  0x24B4,\n\t7273:  0x24B5,\n\t7274:  0x2474,\n\t7275:  0x2475,\n\t7276:  0x2476,\n\t7277:  0x2477,\n\t7278:  0x2478,\n\t7279:  0x2479,\n\t7280:  0x247A,\n\t7281:  0x247B,\n\t7282:  0x247C,\n\t7283:  0x247D,\n\t7284:  0x247E,\n\t7285:  0x247F,\n\t7286:  0x2480,\n\t7287:  0x2481,\n\t7288:  0x2482,\n\t7289:  0x00B9,\n\t7290:  0x00B2,\n\t7291:  0x00B3,\n\t7292:  0x2074,\n\t7293:  0x207F,\n\t7294:  0x2081,\n\t7295:  0x2082,\n\t7296:  0x2083,\n\t7297:  0x2084,\n\t7298:  0xCC25,\n\t7299:  0xCC26,\n\t7300:  0xCC2A,\n\t7301:  0xCC2B,\n\t7302:  0xCC2D,\n\t7303:  0xCC2F,\n\t7304:  0xCC31,\n\t7305:  0xCC32,\n\t7306:  0xCC33,\n\t7307:  0xCC34,\n\t7308:  0xCC35,\n\t7309:  0xCC36,\n\t7310:  0xCC37,\n\t7311:  0xCC3A,\n\t7312:  0xCC3F,\n\t7313:  0xCC40,\n\t7314:  0xCC41,\n\t7315:  0xCC42,\n\t7316:  0xCC43,\n\t7317:  0xCC46,\n\t7318:  0xCC47,\n\t7319:  0xCC49,\n\t7320:  0xCC4A,\n\t7321:  0xCC4B,\n\t7322:  0xCC4D,\n\t7323:  0xCC4E,\n\t7324:  0xCC4F,\n\t7325:  0xCC50,\n\t7326:  0xCC51,\n\t7327:  0xCC52,\n\t7328:  0xCC53,\n\t7329:  0xCC56,\n\t7330:  0xCC5A,\n\t7331:  0xCC5B,\n\t7332:  0xCC5C,\n\t7333:  0xCC5D,\n\t7334:  0xCC5E,\n\t7335:  0xCC5F,\n\t7336:  0xCC61,\n\t7337:  0xCC62,\n\t7338:  0xCC63,\n\t7339:  0xCC65,\n\t7340:  0xCC67,\n\t7341:  0xCC69,\n\t7342:  0xCC6A,\n\t7343:  0xCC6B,\n\t7344:  0xCC6C,\n\t7345:  0xCC6D,\n\t7346:  0xCC6E,\n\t7347:  0xCC6F,\n\t7348:  0xCC71,\n\t7349:  0xCC72,\n\t7350:  0xCC73,\n\t7351:  0xCC74,\n\t7352:  0xCC76,\n\t7353:  0xCC77,\n\t7354:  0xCC78,\n\t7355:  0xCC79,\n\t7356:  0xCC7A,\n\t7357:  0xCC7B,\n\t7358:  0xCC7C,\n\t7359:  0xCC7D,\n\t7360:  0xCC7E,\n\t7361:  0xCC7F,\n\t7362:  0xCC80,\n\t7363:  0xCC81,\n\t7364:  0xCC82,\n\t7365:  0xCC83,\n\t7366:  0xCC84,\n\t7367:  0xCC85,\n\t7368:  0xCC86,\n\t7369:  0xCC87,\n\t7370:  0xCC88,\n\t7371:  0xCC89,\n\t7372:  0xCC8A,\n\t7373:  0xCC8B,\n\t7374:  0xCC8C,\n\t7375:  0xCC8D,\n\t7376:  0xCC8E,\n\t7377:  0xCC8F,\n\t7378:  0xCC90,\n\t7379:  0xCC91,\n\t7380:  0xCC92,\n\t7381:  0xCC93,\n\t7382:  0x3041,\n\t7383:  0x3042,\n\t7384:  0x3043,\n\t7385:  0x3044,\n\t7386:  0x3045,\n\t7387:  0x3046,\n\t7388:  0x3047,\n\t7389:  0x3048,\n\t7390:  0x3049,\n\t7391:  0x304A,\n\t7392:  0x304B,\n\t7393:  0x304C,\n\t7394:  0x304D,\n\t7395:  0x304E,\n\t7396:  0x304F,\n\t7397:  0x3050,\n\t7398:  0x3051,\n\t7399:  0x3052,\n\t7400:  0x3053,\n\t7401:  0x3054,\n\t7402:  0x3055,\n\t7403:  0x3056,\n\t7404:  0x3057,\n\t7405:  0x3058,\n\t7406:  0x3059,\n\t7407:  0x305A,\n\t7408:  0x305B,\n\t7409:  0x305C,\n\t7410:  0x305D,\n\t7411:  0x305E,\n\t7412:  0x305F,\n\t7413:  0x3060,\n\t7414:  0x3061,\n\t7415:  0x3062,\n\t7416:  0x3063,\n\t7417:  0x3064,\n\t7418:  0x3065,\n\t7419:  0x3066,\n\t7420:  0x3067,\n\t7421:  0x3068,\n\t7422:  0x3069,\n\t7423:  0x306A,\n\t7424:  0x306B,\n\t7425:  0x306C,\n\t7426:  0x306D,\n\t7427:  0x306E,\n\t7428:  0x306F,\n\t7429:  0x3070,\n\t7430:  0x3071,\n\t7431:  0x3072,\n\t7432:  0x3073,\n\t7433:  0x3074,\n\t7434:  0x3075,\n\t7435:  0x3076,\n\t7436:  0x3077,\n\t7437:  0x3078,\n\t7438:  0x3079,\n\t7439:  0x307A,\n\t7440:  0x307B,\n\t7441:  0x307C,\n\t7442:  0x307D,\n\t7443:  0x307E,\n\t7444:  0x307F,\n\t7445:  0x3080,\n\t7446:  0x3081,\n\t7447:  0x3082,\n\t7448:  0x3083,\n\t7449:  0x3084,\n\t7450:  0x3085,\n\t7451:  0x3086,\n\t7452:  0x3087,\n\t7453:  0x3088,\n\t7454:  0x3089,\n\t7455:  0x308A,\n\t7456:  0x308B,\n\t7457:  0x308C,\n\t7458:  0x308D,\n\t7459:  0x308E,\n\t7460:  0x308F,\n\t7461:  0x3090,\n\t7462:  0x3091,\n\t7463:  0x3092,\n\t7464:  0x3093,\n\t7476:  0xCC94,\n\t7477:  0xCC95,\n\t7478:  0xCC96,\n\t7479:  0xCC97,\n\t7480:  0xCC9A,\n\t7481:  0xCC9B,\n\t7482:  0xCC9D,\n\t7483:  0xCC9E,\n\t7484:  0xCC9F,\n\t7485:  0xCCA1,\n\t7486:  0xCCA2,\n\t7487:  0xCCA3,\n\t7488:  0xCCA4,\n\t7489:  0xCCA5,\n\t7490:  0xCCA6,\n\t7491:  0xCCA7,\n\t7492:  0xCCAA,\n\t7493:  0xCCAE,\n\t7494:  0xCCAF,\n\t7495:  0xCCB0,\n\t7496:  0xCCB1,\n\t7497:  0xCCB2,\n\t7498:  0xCCB3,\n\t7499:  0xCCB6,\n\t7500:  0xCCB7,\n\t7501:  0xCCB9,\n\t7502:  0xCCBA,\n\t7503:  0xCCBB,\n\t7504:  0xCCBD,\n\t7505:  0xCCBE,\n\t7506:  0xCCBF,\n\t7507:  0xCCC0,\n\t7508:  0xCCC1,\n\t7509:  0xCCC2,\n\t7510:  0xCCC3,\n\t7511:  0xCCC6,\n\t7512:  0xCCC8,\n\t7513:  0xCCCA,\n\t7514:  0xCCCB,\n\t7515:  0xCCCC,\n\t7516:  0xCCCD,\n\t7517:  0xCCCE,\n\t7518:  0xCCCF,\n\t7519:  0xCCD1,\n\t7520:  0xCCD2,\n\t7521:  0xCCD3,\n\t7522:  0xCCD5,\n\t7523:  0xCCD6,\n\t7524:  0xCCD7,\n\t7525:  0xCCD8,\n\t7526:  0xCCD9,\n\t7527:  0xCCDA,\n\t7528:  0xCCDB,\n\t7529:  0xCCDC,\n\t7530:  0xCCDD,\n\t7531:  0xCCDE,\n\t7532:  0xCCDF,\n\t7533:  0xCCE0,\n\t7534:  0xCCE1,\n\t7535:  0xCCE2,\n\t7536:  0xCCE3,\n\t7537:  0xCCE5,\n\t7538:  0xCCE6,\n\t7539:  0xCCE7,\n\t7540:  0xCCE8,\n\t7541:  0xCCE9,\n\t7542:  0xCCEA,\n\t7543:  0xCCEB,\n\t7544:  0xCCED,\n\t7545:  0xCCEE,\n\t7546:  0xCCEF,\n\t7547:  0xCCF1,\n\t7548:  0xCCF2,\n\t7549:  0xCCF3,\n\t7550:  0xCCF4,\n\t7551:  0xCCF5,\n\t7552:  0xCCF6,\n\t7553:  0xCCF7,\n\t7554:  0xCCF8,\n\t7555:  0xCCF9,\n\t7556:  0xCCFA,\n\t7557:  0xCCFB,\n\t7558:  0xCCFC,\n\t7559:  0xCCFD,\n\t7560:  0x30A1,\n\t7561:  0x30A2,\n\t7562:  0x30A3,\n\t7563:  0x30A4,\n\t7564:  0x30A5,\n\t7565:  0x30A6,\n\t7566:  0x30A7,\n\t7567:  0x30A8,\n\t7568:  0x30A9,\n\t7569:  0x30AA,\n\t7570:  0x30AB,\n\t7571:  0x30AC,\n\t7572:  0x30AD,\n\t7573:  0x30AE,\n\t7574:  0x30AF,\n\t7575:  0x30B0,\n\t7576:  0x30B1,\n\t7577:  0x30B2,\n\t7578:  0x30B3,\n\t7579:  0x30B4,\n\t7580:  0x30B5,\n\t7581:  0x30B6,\n\t7582:  0x30B7,\n\t7583:  0x30B8,\n\t7584:  0x30B9,\n\t7585:  0x30BA,\n\t7586:  0x30BB,\n\t7587:  0x30BC,\n\t7588:  0x30BD,\n\t7589:  0x30BE,\n\t7590:  0x30BF,\n\t7591:  0x30C0,\n\t7592:  0x30C1,\n\t7593:  0x30C2,\n\t7594:  0x30C3,\n\t7595:  0x30C4,\n\t7596:  0x30C5,\n\t7597:  0x30C6,\n\t7598:  0x30C7,\n\t7599:  0x30C8,\n\t7600:  0x30C9,\n\t7601:  0x30CA,\n\t7602:  0x30CB,\n\t7603:  0x30CC,\n\t7604:  0x30CD,\n\t7605:  0x30CE,\n\t7606:  0x30CF,\n\t7607:  0x30D0,\n\t7608:  0x30D1,\n\t7609:  0x30D2,\n\t7610:  0x30D3,\n\t7611:  0x30D4,\n\t7612:  0x30D5,\n\t7613:  0x30D6,\n\t7614:  0x30D7,\n\t7615:  0x30D8,\n\t7616:  0x30D9,\n\t7617:  0x30DA,\n\t7618:  0x30DB,\n\t7619:  0x30DC,\n\t7620:  0x30DD,\n\t7621:  0x30DE,\n\t7622:  0x30DF,\n\t7623:  0x30E0,\n\t7624:  0x30E1,\n\t7625:  0x30E2,\n\t7626:  0x30E3,\n\t7627:  0x30E4,\n\t7628:  0x30E5,\n\t7629:  0x30E6,\n\t7630:  0x30E7,\n\t7631:  0x30E8,\n\t7632:  0x30E9,\n\t7633:  0x30EA,\n\t7634:  0x30EB,\n\t7635:  0x30EC,\n\t7636:  0x30ED,\n\t7637:  0x30EE,\n\t7638:  0x30EF,\n\t7639:  0x30F0,\n\t7640:  0x30F1,\n\t7641:  0x30F2,\n\t7642:  0x30F3,\n\t7643:  0x30F4,\n\t7644:  0x30F5,\n\t7645:  0x30F6,\n\t7654:  0xCCFE,\n\t7655:  0xCCFF,\n\t7656:  0xCD00,\n\t7657:  0xCD02,\n\t7658:  0xCD03,\n\t7659:  0xCD04,\n\t7660:  0xCD05,\n\t7661:  0xCD06,\n\t7662:  0xCD07,\n\t7663:  0xCD0A,\n\t7664:  0xCD0B,\n\t7665:  0xCD0D,\n\t7666:  0xCD0E,\n\t7667:  0xCD0F,\n\t7668:  0xCD11,\n\t7669:  0xCD12,\n\t7670:  0xCD13,\n\t7671:  0xCD14,\n\t7672:  0xCD15,\n\t7673:  0xCD16,\n\t7674:  0xCD17,\n\t7675:  0xCD1A,\n\t7676:  0xCD1C,\n\t7677:  0xCD1E,\n\t7678:  0xCD1F,\n\t7679:  0xCD20,\n\t7680:  0xCD21,\n\t7681:  0xCD22,\n\t7682:  0xCD23,\n\t7683:  0xCD25,\n\t7684:  0xCD26,\n\t7685:  0xCD27,\n\t7686:  0xCD29,\n\t7687:  0xCD2A,\n\t7688:  0xCD2B,\n\t7689:  0xCD2D,\n\t7690:  0xCD2E,\n\t7691:  0xCD2F,\n\t7692:  0xCD30,\n\t7693:  0xCD31,\n\t7694:  0xCD32,\n\t7695:  0xCD33,\n\t7696:  0xCD34,\n\t7697:  0xCD35,\n\t7698:  0xCD36,\n\t7699:  0xCD37,\n\t7700:  0xCD38,\n\t7701:  0xCD3A,\n\t7702:  0xCD3B,\n\t7703:  0xCD3C,\n\t7704:  0xCD3D,\n\t7705:  0xCD3E,\n\t7706:  0xCD3F,\n\t7707:  0xCD40,\n\t7708:  0xCD41,\n\t7709:  0xCD42,\n\t7710:  0xCD43,\n\t7711:  0xCD44,\n\t7712:  0xCD45,\n\t7713:  0xCD46,\n\t7714:  0xCD47,\n\t7715:  0xCD48,\n\t7716:  0xCD49,\n\t7717:  0xCD4A,\n\t7718:  0xCD4B,\n\t7719:  0xCD4C,\n\t7720:  0xCD4D,\n\t7721:  0xCD4E,\n\t7722:  0xCD4F,\n\t7723:  0xCD50,\n\t7724:  0xCD51,\n\t7725:  0xCD52,\n\t7726:  0xCD53,\n\t7727:  0xCD54,\n\t7728:  0xCD55,\n\t7729:  0xCD56,\n\t7730:  0xCD57,\n\t7731:  0xCD58,\n\t7732:  0xCD59,\n\t7733:  0xCD5A,\n\t7734:  0xCD5B,\n\t7735:  0xCD5D,\n\t7736:  0xCD5E,\n\t7737:  0xCD5F,\n\t7738:  0x0410,\n\t7739:  0x0411,\n\t7740:  0x0412,\n\t7741:  0x0413,\n\t7742:  0x0414,\n\t7743:  0x0415,\n\t7744:  0x0401,\n\t7745:  0x0416,\n\t7746:  0x0417,\n\t7747:  0x0418,\n\t7748:  0x0419,\n\t7749:  0x041A,\n\t7750:  0x041B,\n\t7751:  0x041C,\n\t7752:  0x041D,\n\t7753:  0x041E,\n\t7754:  0x041F,\n\t7755:  0x0420,\n\t7756:  0x0421,\n\t7757:  0x0422,\n\t7758:  0x0423,\n\t7759:  0x0424,\n\t7760:  0x0425,\n\t7761:  0x0426,\n\t7762:  0x0427,\n\t7763:  0x0428,\n\t7764:  0x0429,\n\t7765:  0x042A,\n\t7766:  0x042B,\n\t7767:  0x042C,\n\t7768:  0x042D,\n\t7769:  0x042E,\n\t7770:  0x042F,\n\t7786:  0x0430,\n\t7787:  0x0431,\n\t7788:  0x0432,\n\t7789:  0x0433,\n\t7790:  0x0434,\n\t7791:  0x0435,\n\t7792:  0x0451,\n\t7793:  0x0436,\n\t7794:  0x0437,\n\t7795:  0x0438,\n\t7796:  0x0439,\n\t7797:  0x043A,\n\t7798:  0x043B,\n\t7799:  0x043C,\n\t7800:  0x043D,\n\t7801:  0x043E,\n\t7802:  0x043F,\n\t7803:  0x0440,\n\t7804:  0x0441,\n\t7805:  0x0442,\n\t7806:  0x0443,\n\t7807:  0x0444,\n\t7808:  0x0445,\n\t7809:  0x0446,\n\t7810:  0x0447,\n\t7811:  0x0448,\n\t7812:  0x0449,\n\t7813:  0x044A,\n\t7814:  0x044B,\n\t7815:  0x044C,\n\t7816:  0x044D,\n\t7817:  0x044E,\n\t7818:  0x044F,\n\t7832:  0xCD61,\n\t7833:  0xCD62,\n\t7834:  0xCD63,\n\t7835:  0xCD65,\n\t7836:  0xCD66,\n\t7837:  0xCD67,\n\t7838:  0xCD68,\n\t7839:  0xCD69,\n\t7840:  0xCD6A,\n\t7841:  0xCD6B,\n\t7842:  0xCD6E,\n\t7843:  0xCD70,\n\t7844:  0xCD72,\n\t7845:  0xCD73,\n\t7846:  0xCD74,\n\t7847:  0xCD75,\n\t7848:  0xCD76,\n\t7849:  0xCD77,\n\t7850:  0xCD79,\n\t7851:  0xCD7A,\n\t7852:  0xCD7B,\n\t7853:  0xCD7C,\n\t7854:  0xCD7D,\n\t7855:  0xCD7E,\n\t7856:  0xCD7F,\n\t7857:  0xCD80,\n\t7858:  0xCD81,\n\t7859:  0xCD82,\n\t7860:  0xCD83,\n\t7861:  0xCD84,\n\t7862:  0xCD85,\n\t7863:  0xCD86,\n\t7864:  0xCD87,\n\t7865:  0xCD89,\n\t7866:  0xCD8A,\n\t7867:  0xCD8B,\n\t7868:  0xCD8C,\n\t7869:  0xCD8D,\n\t7870:  0xCD8E,\n\t7871:  0xCD8F,\n\t7872:  0xCD90,\n\t7873:  0xCD91,\n\t7874:  0xCD92,\n\t7875:  0xCD93,\n\t7876:  0xCD96,\n\t7877:  0xCD97,\n\t7878:  0xCD99,\n\t7879:  0xCD9A,\n\t7880:  0xCD9B,\n\t7881:  0xCD9D,\n\t7882:  0xCD9E,\n\t7883:  0xCD9F,\n\t7884:  0xCDA0,\n\t7885:  0xCDA1,\n\t7886:  0xCDA2,\n\t7887:  0xCDA3,\n\t7888:  0xCDA6,\n\t7889:  0xCDA8,\n\t7890:  0xCDAA,\n\t7891:  0xCDAB,\n\t7892:  0xCDAC,\n\t7893:  0xCDAD,\n\t7894:  0xCDAE,\n\t7895:  0xCDAF,\n\t7896:  0xCDB1,\n\t7897:  0xCDB2,\n\t7898:  0xCDB3,\n\t7899:  0xCDB4,\n\t7900:  0xCDB5,\n\t7901:  0xCDB6,\n\t7902:  0xCDB7,\n\t7903:  0xCDB8,\n\t7904:  0xCDB9,\n\t7905:  0xCDBA,\n\t7906:  0xCDBB,\n\t7907:  0xCDBC,\n\t7908:  0xCDBD,\n\t7909:  0xCDBE,\n\t7910:  0xCDBF,\n\t7911:  0xCDC0,\n\t7912:  0xCDC1,\n\t7913:  0xCDC2,\n\t7914:  0xCDC3,\n\t7915:  0xCDC5,\n\t8010:  0xCDC6,\n\t8011:  0xCDC7,\n\t8012:  0xCDC8,\n\t8013:  0xCDC9,\n\t8014:  0xCDCA,\n\t8015:  0xCDCB,\n\t8016:  0xCDCD,\n\t8017:  0xCDCE,\n\t8018:  0xCDCF,\n\t8019:  0xCDD1,\n\t8020:  0xCDD2,\n\t8021:  0xCDD3,\n\t8022:  0xCDD4,\n\t8023:  0xCDD5,\n\t8024:  0xCDD6,\n\t8025:  0xCDD7,\n\t8026:  0xCDD8,\n\t8027:  0xCDD9,\n\t8028:  0xCDDA,\n\t8029:  0xCDDB,\n\t8030:  0xCDDC,\n\t8031:  0xCDDD,\n\t8032:  0xCDDE,\n\t8033:  0xCDDF,\n\t8034:  0xCDE0,\n\t8035:  0xCDE1,\n\t8036:  0xCDE2,\n\t8037:  0xCDE3,\n\t8038:  0xCDE4,\n\t8039:  0xCDE5,\n\t8040:  0xCDE6,\n\t8041:  0xCDE7,\n\t8042:  0xCDE9,\n\t8043:  0xCDEA,\n\t8044:  0xCDEB,\n\t8045:  0xCDED,\n\t8046:  0xCDEE,\n\t8047:  0xCDEF,\n\t8048:  0xCDF1,\n\t8049:  0xCDF2,\n\t8050:  0xCDF3,\n\t8051:  0xCDF4,\n\t8052:  0xCDF5,\n\t8053:  0xCDF6,\n\t8054:  0xCDF7,\n\t8055:  0xCDFA,\n\t8056:  0xCDFC,\n\t8057:  0xCDFE,\n\t8058:  0xCDFF,\n\t8059:  0xCE00,\n\t8060:  0xCE01,\n\t8061:  0xCE02,\n\t8062:  0xCE03,\n\t8063:  0xCE05,\n\t8064:  0xCE06,\n\t8065:  0xCE07,\n\t8066:  0xCE09,\n\t8067:  0xCE0A,\n\t8068:  0xCE0B,\n\t8069:  0xCE0D,\n\t8070:  0xCE0E,\n\t8071:  0xCE0F,\n\t8072:  0xCE10,\n\t8073:  0xCE11,\n\t8074:  0xCE12,\n\t8075:  0xCE13,\n\t8076:  0xCE15,\n\t8077:  0xCE16,\n\t8078:  0xCE17,\n\t8079:  0xCE18,\n\t8080:  0xCE1A,\n\t8081:  0xCE1B,\n\t8082:  0xCE1C,\n\t8083:  0xCE1D,\n\t8084:  0xCE1E,\n\t8085:  0xCE1F,\n\t8086:  0xCE22,\n\t8087:  0xCE23,\n\t8088:  0xCE25,\n\t8089:  0xCE26,\n\t8090:  0xCE27,\n\t8091:  0xCE29,\n\t8092:  0xCE2A,\n\t8093:  0xCE2B,\n\t8188:  0xCE2C,\n\t8189:  0xCE2D,\n\t8190:  0xCE2E,\n\t8191:  0xCE2F,\n\t8192:  0xCE32,\n\t8193:  0xCE34,\n\t8194:  0xCE36,\n\t8195:  0xCE37,\n\t8196:  0xCE38,\n\t8197:  0xCE39,\n\t8198:  0xCE3A,\n\t8199:  0xCE3B,\n\t8200:  0xCE3C,\n\t8201:  0xCE3D,\n\t8202:  0xCE3E,\n\t8203:  0xCE3F,\n\t8204:  0xCE40,\n\t8205:  0xCE41,\n\t8206:  0xCE42,\n\t8207:  0xCE43,\n\t8208:  0xCE44,\n\t8209:  0xCE45,\n\t8210:  0xCE46,\n\t8211:  0xCE47,\n\t8212:  0xCE48,\n\t8213:  0xCE49,\n\t8214:  0xCE4A,\n\t8215:  0xCE4B,\n\t8216:  0xCE4C,\n\t8217:  0xCE4D,\n\t8218:  0xCE4E,\n\t8219:  0xCE4F,\n\t8220:  0xCE50,\n\t8221:  0xCE51,\n\t8222:  0xCE52,\n\t8223:  0xCE53,\n\t8224:  0xCE54,\n\t8225:  0xCE55,\n\t8226:  0xCE56,\n\t8227:  0xCE57,\n\t8228:  0xCE5A,\n\t8229:  0xCE5B,\n\t8230:  0xCE5D,\n\t8231:  0xCE5E,\n\t8232:  0xCE62,\n\t8233:  0xCE63,\n\t8234:  0xCE64,\n\t8235:  0xCE65,\n\t8236:  0xCE66,\n\t8237:  0xCE67,\n\t8238:  0xCE6A,\n\t8239:  0xCE6C,\n\t8240:  0xCE6E,\n\t8241:  0xCE6F,\n\t8242:  0xCE70,\n\t8243:  0xCE71,\n\t8244:  0xCE72,\n\t8245:  0xCE73,\n\t8246:  0xCE76,\n\t8247:  0xCE77,\n\t8248:  0xCE79,\n\t8249:  0xCE7A,\n\t8250:  0xCE7B,\n\t8251:  0xCE7D,\n\t8252:  0xCE7E,\n\t8253:  0xCE7F,\n\t8254:  0xCE80,\n\t8255:  0xCE81,\n\t8256:  0xCE82,\n\t8257:  0xCE83,\n\t8258:  0xCE86,\n\t8259:  0xCE88,\n\t8260:  0xCE8A,\n\t8261:  0xCE8B,\n\t8262:  0xCE8C,\n\t8263:  0xCE8D,\n\t8264:  0xCE8E,\n\t8265:  0xCE8F,\n\t8266:  0xCE92,\n\t8267:  0xCE93,\n\t8268:  0xCE95,\n\t8269:  0xCE96,\n\t8270:  0xCE97,\n\t8271:  0xCE99,\n\t8366:  0xCE9A,\n\t8367:  0xCE9B,\n\t8368:  0xCE9C,\n\t8369:  0xCE9D,\n\t8370:  0xCE9E,\n\t8371:  0xCE9F,\n\t8372:  0xCEA2,\n\t8373:  0xCEA6,\n\t8374:  0xCEA7,\n\t8375:  0xCEA8,\n\t8376:  0xCEA9,\n\t8377:  0xCEAA,\n\t8378:  0xCEAB,\n\t8379:  0xCEAE,\n\t8380:  0xCEAF,\n\t8381:  0xCEB0,\n\t8382:  0xCEB1,\n\t8383:  0xCEB2,\n\t8384:  0xCEB3,\n\t8385:  0xCEB4,\n\t8386:  0xCEB5,\n\t8387:  0xCEB6,\n\t8388:  0xCEB7,\n\t8389:  0xCEB8,\n\t8390:  0xCEB9,\n\t8391:  0xCEBA,\n\t8392:  0xCEBB,\n\t8393:  0xCEBC,\n\t8394:  0xCEBD,\n\t8395:  0xCEBE,\n\t8396:  0xCEBF,\n\t8397:  0xCEC0,\n\t8398:  0xCEC2,\n\t8399:  0xCEC3,\n\t8400:  0xCEC4,\n\t8401:  0xCEC5,\n\t8402:  0xCEC6,\n\t8403:  0xCEC7,\n\t8404:  0xCEC8,\n\t8405:  0xCEC9,\n\t8406:  0xCECA,\n\t8407:  0xCECB,\n\t8408:  0xCECC,\n\t8409:  0xCECD,\n\t8410:  0xCECE,\n\t8411:  0xCECF,\n\t8412:  0xCED0,\n\t8413:  0xCED1,\n\t8414:  0xCED2,\n\t8415:  0xCED3,\n\t8416:  0xCED4,\n\t8417:  0xCED5,\n\t8418:  0xCED6,\n\t8419:  0xCED7,\n\t8420:  0xCED8,\n\t8421:  0xCED9,\n\t8422:  0xCEDA,\n\t8423:  0xCEDB,\n\t8424:  0xCEDC,\n\t8425:  0xCEDD,\n\t8426:  0xCEDE,\n\t8427:  0xCEDF,\n\t8428:  0xCEE0,\n\t8429:  0xCEE1,\n\t8430:  0xCEE2,\n\t8431:  0xCEE3,\n\t8432:  0xCEE6,\n\t8433:  0xCEE7,\n\t8434:  0xCEE9,\n\t8435:  0xCEEA,\n\t8436:  0xCEED,\n\t8437:  0xCEEE,\n\t8438:  0xCEEF,\n\t8439:  0xCEF0,\n\t8440:  0xCEF1,\n\t8441:  0xCEF2,\n\t8442:  0xCEF3,\n\t8443:  0xCEF6,\n\t8444:  0xCEFA,\n\t8445:  0xCEFB,\n\t8446:  0xCEFC,\n\t8447:  0xCEFD,\n\t8448:  0xCEFE,\n\t8449:  0xCEFF,\n\t8450:  0xAC00,\n\t8451:  0xAC01,\n\t8452:  0xAC04,\n\t8453:  0xAC07,\n\t8454:  0xAC08,\n\t8455:  0xAC09,\n\t8456:  0xAC0A,\n\t8457:  0xAC10,\n\t8458:  0xAC11,\n\t8459:  0xAC12,\n\t8460:  0xAC13,\n\t8461:  0xAC14,\n\t8462:  0xAC15,\n\t8463:  0xAC16,\n\t8464:  0xAC17,\n\t8465:  0xAC19,\n\t8466:  0xAC1A,\n\t8467:  0xAC1B,\n\t8468:  0xAC1C,\n\t8469:  0xAC1D,\n\t8470:  0xAC20,\n\t8471:  0xAC24,\n\t8472:  0xAC2C,\n\t8473:  0xAC2D,\n\t8474:  0xAC2F,\n\t8475:  0xAC30,\n\t8476:  0xAC31,\n\t8477:  0xAC38,\n\t8478:  0xAC39,\n\t8479:  0xAC3C,\n\t8480:  0xAC40,\n\t8481:  0xAC4B,\n\t8482:  0xAC4D,\n\t8483:  0xAC54,\n\t8484:  0xAC58,\n\t8485:  0xAC5C,\n\t8486:  0xAC70,\n\t8487:  0xAC71,\n\t8488:  0xAC74,\n\t8489:  0xAC77,\n\t8490:  0xAC78,\n\t8491:  0xAC7A,\n\t8492:  0xAC80,\n\t8493:  0xAC81,\n\t8494:  0xAC83,\n\t8495:  0xAC84,\n\t8496:  0xAC85,\n\t8497:  0xAC86,\n\t8498:  0xAC89,\n\t8499:  0xAC8A,\n\t8500:  0xAC8B,\n\t8501:  0xAC8C,\n\t8502:  0xAC90,\n\t8503:  0xAC94,\n\t8504:  0xAC9C,\n\t8505:  0xAC9D,\n\t8506:  0xAC9F,\n\t8507:  0xACA0,\n\t8508:  0xACA1,\n\t8509:  0xACA8,\n\t8510:  0xACA9,\n\t8511:  0xACAA,\n\t8512:  0xACAC,\n\t8513:  0xACAF,\n\t8514:  0xACB0,\n\t8515:  0xACB8,\n\t8516:  0xACB9,\n\t8517:  0xACBB,\n\t8518:  0xACBC,\n\t8519:  0xACBD,\n\t8520:  0xACC1,\n\t8521:  0xACC4,\n\t8522:  0xACC8,\n\t8523:  0xACCC,\n\t8524:  0xACD5,\n\t8525:  0xACD7,\n\t8526:  0xACE0,\n\t8527:  0xACE1,\n\t8528:  0xACE4,\n\t8529:  0xACE7,\n\t8530:  0xACE8,\n\t8531:  0xACEA,\n\t8532:  0xACEC,\n\t8533:  0xACEF,\n\t8534:  0xACF0,\n\t8535:  0xACF1,\n\t8536:  0xACF3,\n\t8537:  0xACF5,\n\t8538:  0xACF6,\n\t8539:  0xACFC,\n\t8540:  0xACFD,\n\t8541:  0xAD00,\n\t8542:  0xAD04,\n\t8543:  0xAD06,\n\t8544:  0xCF02,\n\t8545:  0xCF03,\n\t8546:  0xCF05,\n\t8547:  0xCF06,\n\t8548:  0xCF07,\n\t8549:  0xCF09,\n\t8550:  0xCF0A,\n\t8551:  0xCF0B,\n\t8552:  0xCF0C,\n\t8553:  0xCF0D,\n\t8554:  0xCF0E,\n\t8555:  0xCF0F,\n\t8556:  0xCF12,\n\t8557:  0xCF14,\n\t8558:  0xCF16,\n\t8559:  0xCF17,\n\t8560:  0xCF18,\n\t8561:  0xCF19,\n\t8562:  0xCF1A,\n\t8563:  0xCF1B,\n\t8564:  0xCF1D,\n\t8565:  0xCF1E,\n\t8566:  0xCF1F,\n\t8567:  0xCF21,\n\t8568:  0xCF22,\n\t8569:  0xCF23,\n\t8570:  0xCF25,\n\t8571:  0xCF26,\n\t8572:  0xCF27,\n\t8573:  0xCF28,\n\t8574:  0xCF29,\n\t8575:  0xCF2A,\n\t8576:  0xCF2B,\n\t8577:  0xCF2E,\n\t8578:  0xCF32,\n\t8579:  0xCF33,\n\t8580:  0xCF34,\n\t8581:  0xCF35,\n\t8582:  0xCF36,\n\t8583:  0xCF37,\n\t8584:  0xCF39,\n\t8585:  0xCF3A,\n\t8586:  0xCF3B,\n\t8587:  0xCF3C,\n\t8588:  0xCF3D,\n\t8589:  0xCF3E,\n\t8590:  0xCF3F,\n\t8591:  0xCF40,\n\t8592:  0xCF41,\n\t8593:  0xCF42,\n\t8594:  0xCF43,\n\t8595:  0xCF44,\n\t8596:  0xCF45,\n\t8597:  0xCF46,\n\t8598:  0xCF47,\n\t8599:  0xCF48,\n\t8600:  0xCF49,\n\t8601:  0xCF4A,\n\t8602:  0xCF4B,\n\t8603:  0xCF4C,\n\t8604:  0xCF4D,\n\t8605:  0xCF4E,\n\t8606:  0xCF4F,\n\t8607:  0xCF50,\n\t8608:  0xCF51,\n\t8609:  0xCF52,\n\t8610:  0xCF53,\n\t8611:  0xCF56,\n\t8612:  0xCF57,\n\t8613:  0xCF59,\n\t8614:  0xCF5A,\n\t8615:  0xCF5B,\n\t8616:  0xCF5D,\n\t8617:  0xCF5E,\n\t8618:  0xCF5F,\n\t8619:  0xCF60,\n\t8620:  0xCF61,\n\t8621:  0xCF62,\n\t8622:  0xCF63,\n\t8623:  0xCF66,\n\t8624:  0xCF68,\n\t8625:  0xCF6A,\n\t8626:  0xCF6B,\n\t8627:  0xCF6C,\n\t8628:  0xAD0C,\n\t8629:  0xAD0D,\n\t8630:  0xAD0F,\n\t8631:  0xAD11,\n\t8632:  0xAD18,\n\t8633:  0xAD1C,\n\t8634:  0xAD20,\n\t8635:  0xAD29,\n\t8636:  0xAD2C,\n\t8637:  0xAD2D,\n\t8638:  0xAD34,\n\t8639:  0xAD35,\n\t8640:  0xAD38,\n\t8641:  0xAD3C,\n\t8642:  0xAD44,\n\t8643:  0xAD45,\n\t8644:  0xAD47,\n\t8645:  0xAD49,\n\t8646:  0xAD50,\n\t8647:  0xAD54,\n\t8648:  0xAD58,\n\t8649:  0xAD61,\n\t8650:  0xAD63,\n\t8651:  0xAD6C,\n\t8652:  0xAD6D,\n\t8653:  0xAD70,\n\t8654:  0xAD73,\n\t8655:  0xAD74,\n\t8656:  0xAD75,\n\t8657:  0xAD76,\n\t8658:  0xAD7B,\n\t8659:  0xAD7C,\n\t8660:  0xAD7D,\n\t8661:  0xAD7F,\n\t8662:  0xAD81,\n\t8663:  0xAD82,\n\t8664:  0xAD88,\n\t8665:  0xAD89,\n\t8666:  0xAD8C,\n\t8667:  0xAD90,\n\t8668:  0xAD9C,\n\t8669:  0xAD9D,\n\t8670:  0xADA4,\n\t8671:  0xADB7,\n\t8672:  0xADC0,\n\t8673:  0xADC1,\n\t8674:  0xADC4,\n\t8675:  0xADC8,\n\t8676:  0xADD0,\n\t8677:  0xADD1,\n\t8678:  0xADD3,\n\t8679:  0xADDC,\n\t8680:  0xADE0,\n\t8681:  0xADE4,\n\t8682:  0xADF8,\n\t8683:  0xADF9,\n\t8684:  0xADFC,\n\t8685:  0xADFF,\n\t8686:  0xAE00,\n\t8687:  0xAE01,\n\t8688:  0xAE08,\n\t8689:  0xAE09,\n\t8690:  0xAE0B,\n\t8691:  0xAE0D,\n\t8692:  0xAE14,\n\t8693:  0xAE30,\n\t8694:  0xAE31,\n\t8695:  0xAE34,\n\t8696:  0xAE37,\n\t8697:  0xAE38,\n\t8698:  0xAE3A,\n\t8699:  0xAE40,\n\t8700:  0xAE41,\n\t8701:  0xAE43,\n\t8702:  0xAE45,\n\t8703:  0xAE46,\n\t8704:  0xAE4A,\n\t8705:  0xAE4C,\n\t8706:  0xAE4D,\n\t8707:  0xAE4E,\n\t8708:  0xAE50,\n\t8709:  0xAE54,\n\t8710:  0xAE56,\n\t8711:  0xAE5C,\n\t8712:  0xAE5D,\n\t8713:  0xAE5F,\n\t8714:  0xAE60,\n\t8715:  0xAE61,\n\t8716:  0xAE65,\n\t8717:  0xAE68,\n\t8718:  0xAE69,\n\t8719:  0xAE6C,\n\t8720:  0xAE70,\n\t8721:  0xAE78,\n\t8722:  0xCF6D,\n\t8723:  0xCF6E,\n\t8724:  0xCF6F,\n\t8725:  0xCF72,\n\t8726:  0xCF73,\n\t8727:  0xCF75,\n\t8728:  0xCF76,\n\t8729:  0xCF77,\n\t8730:  0xCF79,\n\t8731:  0xCF7A,\n\t8732:  0xCF7B,\n\t8733:  0xCF7C,\n\t8734:  0xCF7D,\n\t8735:  0xCF7E,\n\t8736:  0xCF7F,\n\t8737:  0xCF81,\n\t8738:  0xCF82,\n\t8739:  0xCF83,\n\t8740:  0xCF84,\n\t8741:  0xCF86,\n\t8742:  0xCF87,\n\t8743:  0xCF88,\n\t8744:  0xCF89,\n\t8745:  0xCF8A,\n\t8746:  0xCF8B,\n\t8747:  0xCF8D,\n\t8748:  0xCF8E,\n\t8749:  0xCF8F,\n\t8750:  0xCF90,\n\t8751:  0xCF91,\n\t8752:  0xCF92,\n\t8753:  0xCF93,\n\t8754:  0xCF94,\n\t8755:  0xCF95,\n\t8756:  0xCF96,\n\t8757:  0xCF97,\n\t8758:  0xCF98,\n\t8759:  0xCF99,\n\t8760:  0xCF9A,\n\t8761:  0xCF9B,\n\t8762:  0xCF9C,\n\t8763:  0xCF9D,\n\t8764:  0xCF9E,\n\t8765:  0xCF9F,\n\t8766:  0xCFA0,\n\t8767:  0xCFA2,\n\t8768:  0xCFA3,\n\t8769:  0xCFA4,\n\t8770:  0xCFA5,\n\t8771:  0xCFA6,\n\t8772:  0xCFA7,\n\t8773:  0xCFA9,\n\t8774:  0xCFAA,\n\t8775:  0xCFAB,\n\t8776:  0xCFAC,\n\t8777:  0xCFAD,\n\t8778:  0xCFAE,\n\t8779:  0xCFAF,\n\t8780:  0xCFB1,\n\t8781:  0xCFB2,\n\t8782:  0xCFB3,\n\t8783:  0xCFB4,\n\t8784:  0xCFB5,\n\t8785:  0xCFB6,\n\t8786:  0xCFB7,\n\t8787:  0xCFB8,\n\t8788:  0xCFB9,\n\t8789:  0xCFBA,\n\t8790:  0xCFBB,\n\t8791:  0xCFBC,\n\t8792:  0xCFBD,\n\t8793:  0xCFBE,\n\t8794:  0xCFBF,\n\t8795:  0xCFC0,\n\t8796:  0xCFC1,\n\t8797:  0xCFC2,\n\t8798:  0xCFC3,\n\t8799:  0xCFC5,\n\t8800:  0xCFC6,\n\t8801:  0xCFC7,\n\t8802:  0xCFC8,\n\t8803:  0xCFC9,\n\t8804:  0xCFCA,\n\t8805:  0xCFCB,\n\t8806:  0xAE79,\n\t8807:  0xAE7B,\n\t8808:  0xAE7C,\n\t8809:  0xAE7D,\n\t8810:  0xAE84,\n\t8811:  0xAE85,\n\t8812:  0xAE8C,\n\t8813:  0xAEBC,\n\t8814:  0xAEBD,\n\t8815:  0xAEBE,\n\t8816:  0xAEC0,\n\t8817:  0xAEC4,\n\t8818:  0xAECC,\n\t8819:  0xAECD,\n\t8820:  0xAECF,\n\t8821:  0xAED0,\n\t8822:  0xAED1,\n\t8823:  0xAED8,\n\t8824:  0xAED9,\n\t8825:  0xAEDC,\n\t8826:  0xAEE8,\n\t8827:  0xAEEB,\n\t8828:  0xAEED,\n\t8829:  0xAEF4,\n\t8830:  0xAEF8,\n\t8831:  0xAEFC,\n\t8832:  0xAF07,\n\t8833:  0xAF08,\n\t8834:  0xAF0D,\n\t8835:  0xAF10,\n\t8836:  0xAF2C,\n\t8837:  0xAF2D,\n\t8838:  0xAF30,\n\t8839:  0xAF32,\n\t8840:  0xAF34,\n\t8841:  0xAF3C,\n\t8842:  0xAF3D,\n\t8843:  0xAF3F,\n\t8844:  0xAF41,\n\t8845:  0xAF42,\n\t8846:  0xAF43,\n\t8847:  0xAF48,\n\t8848:  0xAF49,\n\t8849:  0xAF50,\n\t8850:  0xAF5C,\n\t8851:  0xAF5D,\n\t8852:  0xAF64,\n\t8853:  0xAF65,\n\t8854:  0xAF79,\n\t8855:  0xAF80,\n\t8856:  0xAF84,\n\t8857:  0xAF88,\n\t8858:  0xAF90,\n\t8859:  0xAF91,\n\t8860:  0xAF95,\n\t8861:  0xAF9C,\n\t8862:  0xAFB8,\n\t8863:  0xAFB9,\n\t8864:  0xAFBC,\n\t8865:  0xAFC0,\n\t8866:  0xAFC7,\n\t8867:  0xAFC8,\n\t8868:  0xAFC9,\n\t8869:  0xAFCB,\n\t8870:  0xAFCD,\n\t8871:  0xAFCE,\n\t8872:  0xAFD4,\n\t8873:  0xAFDC,\n\t8874:  0xAFE8,\n\t8875:  0xAFE9,\n\t8876:  0xAFF0,\n\t8877:  0xAFF1,\n\t8878:  0xAFF4,\n\t8879:  0xAFF8,\n\t8880:  0xB000,\n\t8881:  0xB001,\n\t8882:  0xB004,\n\t8883:  0xB00C,\n\t8884:  0xB010,\n\t8885:  0xB014,\n\t8886:  0xB01C,\n\t8887:  0xB01D,\n\t8888:  0xB028,\n\t8889:  0xB044,\n\t8890:  0xB045,\n\t8891:  0xB048,\n\t8892:  0xB04A,\n\t8893:  0xB04C,\n\t8894:  0xB04E,\n\t8895:  0xB053,\n\t8896:  0xB054,\n\t8897:  0xB055,\n\t8898:  0xB057,\n\t8899:  0xB059,\n\t8900:  0xCFCC,\n\t8901:  0xCFCD,\n\t8902:  0xCFCE,\n\t8903:  0xCFCF,\n\t8904:  0xCFD0,\n\t8905:  0xCFD1,\n\t8906:  0xCFD2,\n\t8907:  0xCFD3,\n\t8908:  0xCFD4,\n\t8909:  0xCFD5,\n\t8910:  0xCFD6,\n\t8911:  0xCFD7,\n\t8912:  0xCFD8,\n\t8913:  0xCFD9,\n\t8914:  0xCFDA,\n\t8915:  0xCFDB,\n\t8916:  0xCFDC,\n\t8917:  0xCFDD,\n\t8918:  0xCFDE,\n\t8919:  0xCFDF,\n\t8920:  0xCFE2,\n\t8921:  0xCFE3,\n\t8922:  0xCFE5,\n\t8923:  0xCFE6,\n\t8924:  0xCFE7,\n\t8925:  0xCFE9,\n\t8926:  0xCFEA,\n\t8927:  0xCFEB,\n\t8928:  0xCFEC,\n\t8929:  0xCFED,\n\t8930:  0xCFEE,\n\t8931:  0xCFEF,\n\t8932:  0xCFF2,\n\t8933:  0xCFF4,\n\t8934:  0xCFF6,\n\t8935:  0xCFF7,\n\t8936:  0xCFF8,\n\t8937:  0xCFF9,\n\t8938:  0xCFFA,\n\t8939:  0xCFFB,\n\t8940:  0xCFFD,\n\t8941:  0xCFFE,\n\t8942:  0xCFFF,\n\t8943:  0xD001,\n\t8944:  0xD002,\n\t8945:  0xD003,\n\t8946:  0xD005,\n\t8947:  0xD006,\n\t8948:  0xD007,\n\t8949:  0xD008,\n\t8950:  0xD009,\n\t8951:  0xD00A,\n\t8952:  0xD00B,\n\t8953:  0xD00C,\n\t8954:  0xD00D,\n\t8955:  0xD00E,\n\t8956:  0xD00F,\n\t8957:  0xD010,\n\t8958:  0xD012,\n\t8959:  0xD013,\n\t8960:  0xD014,\n\t8961:  0xD015,\n\t8962:  0xD016,\n\t8963:  0xD017,\n\t8964:  0xD019,\n\t8965:  0xD01A,\n\t8966:  0xD01B,\n\t8967:  0xD01C,\n\t8968:  0xD01D,\n\t8969:  0xD01E,\n\t8970:  0xD01F,\n\t8971:  0xD020,\n\t8972:  0xD021,\n\t8973:  0xD022,\n\t8974:  0xD023,\n\t8975:  0xD024,\n\t8976:  0xD025,\n\t8977:  0xD026,\n\t8978:  0xD027,\n\t8979:  0xD028,\n\t8980:  0xD029,\n\t8981:  0xD02A,\n\t8982:  0xD02B,\n\t8983:  0xD02C,\n\t8984:  0xB05D,\n\t8985:  0xB07C,\n\t8986:  0xB07D,\n\t8987:  0xB080,\n\t8988:  0xB084,\n\t8989:  0xB08C,\n\t8990:  0xB08D,\n\t8991:  0xB08F,\n\t8992:  0xB091,\n\t8993:  0xB098,\n\t8994:  0xB099,\n\t8995:  0xB09A,\n\t8996:  0xB09C,\n\t8997:  0xB09F,\n\t8998:  0xB0A0,\n\t8999:  0xB0A1,\n\t9000:  0xB0A2,\n\t9001:  0xB0A8,\n\t9002:  0xB0A9,\n\t9003:  0xB0AB,\n\t9004:  0xB0AC,\n\t9005:  0xB0AD,\n\t9006:  0xB0AE,\n\t9007:  0xB0AF,\n\t9008:  0xB0B1,\n\t9009:  0xB0B3,\n\t9010:  0xB0B4,\n\t9011:  0xB0B5,\n\t9012:  0xB0B8,\n\t9013:  0xB0BC,\n\t9014:  0xB0C4,\n\t9015:  0xB0C5,\n\t9016:  0xB0C7,\n\t9017:  0xB0C8,\n\t9018:  0xB0C9,\n\t9019:  0xB0D0,\n\t9020:  0xB0D1,\n\t9021:  0xB0D4,\n\t9022:  0xB0D8,\n\t9023:  0xB0E0,\n\t9024:  0xB0E5,\n\t9025:  0xB108,\n\t9026:  0xB109,\n\t9027:  0xB10B,\n\t9028:  0xB10C,\n\t9029:  0xB110,\n\t9030:  0xB112,\n\t9031:  0xB113,\n\t9032:  0xB118,\n\t9033:  0xB119,\n\t9034:  0xB11B,\n\t9035:  0xB11C,\n\t9036:  0xB11D,\n\t9037:  0xB123,\n\t9038:  0xB124,\n\t9039:  0xB125,\n\t9040:  0xB128,\n\t9041:  0xB12C,\n\t9042:  0xB134,\n\t9043:  0xB135,\n\t9044:  0xB137,\n\t9045:  0xB138,\n\t9046:  0xB139,\n\t9047:  0xB140,\n\t9048:  0xB141,\n\t9049:  0xB144,\n\t9050:  0xB148,\n\t9051:  0xB150,\n\t9052:  0xB151,\n\t9053:  0xB154,\n\t9054:  0xB155,\n\t9055:  0xB158,\n\t9056:  0xB15C,\n\t9057:  0xB160,\n\t9058:  0xB178,\n\t9059:  0xB179,\n\t9060:  0xB17C,\n\t9061:  0xB180,\n\t9062:  0xB182,\n\t9063:  0xB188,\n\t9064:  0xB189,\n\t9065:  0xB18B,\n\t9066:  0xB18D,\n\t9067:  0xB192,\n\t9068:  0xB193,\n\t9069:  0xB194,\n\t9070:  0xB198,\n\t9071:  0xB19C,\n\t9072:  0xB1A8,\n\t9073:  0xB1CC,\n\t9074:  0xB1D0,\n\t9075:  0xB1D4,\n\t9076:  0xB1DC,\n\t9077:  0xB1DD,\n\t9078:  0xD02E,\n\t9079:  0xD02F,\n\t9080:  0xD030,\n\t9081:  0xD031,\n\t9082:  0xD032,\n\t9083:  0xD033,\n\t9084:  0xD036,\n\t9085:  0xD037,\n\t9086:  0xD039,\n\t9087:  0xD03A,\n\t9088:  0xD03B,\n\t9089:  0xD03D,\n\t9090:  0xD03E,\n\t9091:  0xD03F,\n\t9092:  0xD040,\n\t9093:  0xD041,\n\t9094:  0xD042,\n\t9095:  0xD043,\n\t9096:  0xD046,\n\t9097:  0xD048,\n\t9098:  0xD04A,\n\t9099:  0xD04B,\n\t9100:  0xD04C,\n\t9101:  0xD04D,\n\t9102:  0xD04E,\n\t9103:  0xD04F,\n\t9104:  0xD051,\n\t9105:  0xD052,\n\t9106:  0xD053,\n\t9107:  0xD055,\n\t9108:  0xD056,\n\t9109:  0xD057,\n\t9110:  0xD059,\n\t9111:  0xD05A,\n\t9112:  0xD05B,\n\t9113:  0xD05C,\n\t9114:  0xD05D,\n\t9115:  0xD05E,\n\t9116:  0xD05F,\n\t9117:  0xD061,\n\t9118:  0xD062,\n\t9119:  0xD063,\n\t9120:  0xD064,\n\t9121:  0xD065,\n\t9122:  0xD066,\n\t9123:  0xD067,\n\t9124:  0xD068,\n\t9125:  0xD069,\n\t9126:  0xD06A,\n\t9127:  0xD06B,\n\t9128:  0xD06E,\n\t9129:  0xD06F,\n\t9130:  0xD071,\n\t9131:  0xD072,\n\t9132:  0xD073,\n\t9133:  0xD075,\n\t9134:  0xD076,\n\t9135:  0xD077,\n\t9136:  0xD078,\n\t9137:  0xD079,\n\t9138:  0xD07A,\n\t9139:  0xD07B,\n\t9140:  0xD07E,\n\t9141:  0xD07F,\n\t9142:  0xD080,\n\t9143:  0xD082,\n\t9144:  0xD083,\n\t9145:  0xD084,\n\t9146:  0xD085,\n\t9147:  0xD086,\n\t9148:  0xD087,\n\t9149:  0xD088,\n\t9150:  0xD089,\n\t9151:  0xD08A,\n\t9152:  0xD08B,\n\t9153:  0xD08C,\n\t9154:  0xD08D,\n\t9155:  0xD08E,\n\t9156:  0xD08F,\n\t9157:  0xD090,\n\t9158:  0xD091,\n\t9159:  0xD092,\n\t9160:  0xD093,\n\t9161:  0xD094,\n\t9162:  0xB1DF,\n\t9163:  0xB1E8,\n\t9164:  0xB1E9,\n\t9165:  0xB1EC,\n\t9166:  0xB1F0,\n\t9167:  0xB1F9,\n\t9168:  0xB1FB,\n\t9169:  0xB1FD,\n\t9170:  0xB204,\n\t9171:  0xB205,\n\t9172:  0xB208,\n\t9173:  0xB20B,\n\t9174:  0xB20C,\n\t9175:  0xB214,\n\t9176:  0xB215,\n\t9177:  0xB217,\n\t9178:  0xB219,\n\t9179:  0xB220,\n\t9180:  0xB234,\n\t9181:  0xB23C,\n\t9182:  0xB258,\n\t9183:  0xB25C,\n\t9184:  0xB260,\n\t9185:  0xB268,\n\t9186:  0xB269,\n\t9187:  0xB274,\n\t9188:  0xB275,\n\t9189:  0xB27C,\n\t9190:  0xB284,\n\t9191:  0xB285,\n\t9192:  0xB289,\n\t9193:  0xB290,\n\t9194:  0xB291,\n\t9195:  0xB294,\n\t9196:  0xB298,\n\t9197:  0xB299,\n\t9198:  0xB29A,\n\t9199:  0xB2A0,\n\t9200:  0xB2A1,\n\t9201:  0xB2A3,\n\t9202:  0xB2A5,\n\t9203:  0xB2A6,\n\t9204:  0xB2AA,\n\t9205:  0xB2AC,\n\t9206:  0xB2B0,\n\t9207:  0xB2B4,\n\t9208:  0xB2C8,\n\t9209:  0xB2C9,\n\t9210:  0xB2CC,\n\t9211:  0xB2D0,\n\t9212:  0xB2D2,\n\t9213:  0xB2D8,\n\t9214:  0xB2D9,\n\t9215:  0xB2DB,\n\t9216:  0xB2DD,\n\t9217:  0xB2E2,\n\t9218:  0xB2E4,\n\t9219:  0xB2E5,\n\t9220:  0xB2E6,\n\t9221:  0xB2E8,\n\t9222:  0xB2EB,\n\t9223:  0xB2EC,\n\t9224:  0xB2ED,\n\t9225:  0xB2EE,\n\t9226:  0xB2EF,\n\t9227:  0xB2F3,\n\t9228:  0xB2F4,\n\t9229:  0xB2F5,\n\t9230:  0xB2F7,\n\t9231:  0xB2F8,\n\t9232:  0xB2F9,\n\t9233:  0xB2FA,\n\t9234:  0xB2FB,\n\t9235:  0xB2FF,\n\t9236:  0xB300,\n\t9237:  0xB301,\n\t9238:  0xB304,\n\t9239:  0xB308,\n\t9240:  0xB310,\n\t9241:  0xB311,\n\t9242:  0xB313,\n\t9243:  0xB314,\n\t9244:  0xB315,\n\t9245:  0xB31C,\n\t9246:  0xB354,\n\t9247:  0xB355,\n\t9248:  0xB356,\n\t9249:  0xB358,\n\t9250:  0xB35B,\n\t9251:  0xB35C,\n\t9252:  0xB35E,\n\t9253:  0xB35F,\n\t9254:  0xB364,\n\t9255:  0xB365,\n\t9256:  0xD095,\n\t9257:  0xD096,\n\t9258:  0xD097,\n\t9259:  0xD098,\n\t9260:  0xD099,\n\t9261:  0xD09A,\n\t9262:  0xD09B,\n\t9263:  0xD09C,\n\t9264:  0xD09D,\n\t9265:  0xD09E,\n\t9266:  0xD09F,\n\t9267:  0xD0A0,\n\t9268:  0xD0A1,\n\t9269:  0xD0A2,\n\t9270:  0xD0A3,\n\t9271:  0xD0A6,\n\t9272:  0xD0A7,\n\t9273:  0xD0A9,\n\t9274:  0xD0AA,\n\t9275:  0xD0AB,\n\t9276:  0xD0AD,\n\t9277:  0xD0AE,\n\t9278:  0xD0AF,\n\t9279:  0xD0B0,\n\t9280:  0xD0B1,\n\t9281:  0xD0B2,\n\t9282:  0xD0B3,\n\t9283:  0xD0B6,\n\t9284:  0xD0B8,\n\t9285:  0xD0BA,\n\t9286:  0xD0BB,\n\t9287:  0xD0BC,\n\t9288:  0xD0BD,\n\t9289:  0xD0BE,\n\t9290:  0xD0BF,\n\t9291:  0xD0C2,\n\t9292:  0xD0C3,\n\t9293:  0xD0C5,\n\t9294:  0xD0C6,\n\t9295:  0xD0C7,\n\t9296:  0xD0CA,\n\t9297:  0xD0CB,\n\t9298:  0xD0CC,\n\t9299:  0xD0CD,\n\t9300:  0xD0CE,\n\t9301:  0xD0CF,\n\t9302:  0xD0D2,\n\t9303:  0xD0D6,\n\t9304:  0xD0D7,\n\t9305:  0xD0D8,\n\t9306:  0xD0D9,\n\t9307:  0xD0DA,\n\t9308:  0xD0DB,\n\t9309:  0xD0DE,\n\t9310:  0xD0DF,\n\t9311:  0xD0E1,\n\t9312:  0xD0E2,\n\t9313:  0xD0E3,\n\t9314:  0xD0E5,\n\t9315:  0xD0E6,\n\t9316:  0xD0E7,\n\t9317:  0xD0E8,\n\t9318:  0xD0E9,\n\t9319:  0xD0EA,\n\t9320:  0xD0EB,\n\t9321:  0xD0EE,\n\t9322:  0xD0F2,\n\t9323:  0xD0F3,\n\t9324:  0xD0F4,\n\t9325:  0xD0F5,\n\t9326:  0xD0F6,\n\t9327:  0xD0F7,\n\t9328:  0xD0F9,\n\t9329:  0xD0FA,\n\t9330:  0xD0FB,\n\t9331:  0xD0FC,\n\t9332:  0xD0FD,\n\t9333:  0xD0FE,\n\t9334:  0xD0FF,\n\t9335:  0xD100,\n\t9336:  0xD101,\n\t9337:  0xD102,\n\t9338:  0xD103,\n\t9339:  0xD104,\n\t9340:  0xB367,\n\t9341:  0xB369,\n\t9342:  0xB36B,\n\t9343:  0xB36E,\n\t9344:  0xB370,\n\t9345:  0xB371,\n\t9346:  0xB374,\n\t9347:  0xB378,\n\t9348:  0xB380,\n\t9349:  0xB381,\n\t9350:  0xB383,\n\t9351:  0xB384,\n\t9352:  0xB385,\n\t9353:  0xB38C,\n\t9354:  0xB390,\n\t9355:  0xB394,\n\t9356:  0xB3A0,\n\t9357:  0xB3A1,\n\t9358:  0xB3A8,\n\t9359:  0xB3AC,\n\t9360:  0xB3C4,\n\t9361:  0xB3C5,\n\t9362:  0xB3C8,\n\t9363:  0xB3CB,\n\t9364:  0xB3CC,\n\t9365:  0xB3CE,\n\t9366:  0xB3D0,\n\t9367:  0xB3D4,\n\t9368:  0xB3D5,\n\t9369:  0xB3D7,\n\t9370:  0xB3D9,\n\t9371:  0xB3DB,\n\t9372:  0xB3DD,\n\t9373:  0xB3E0,\n\t9374:  0xB3E4,\n\t9375:  0xB3E8,\n\t9376:  0xB3FC,\n\t9377:  0xB410,\n\t9378:  0xB418,\n\t9379:  0xB41C,\n\t9380:  0xB420,\n\t9381:  0xB428,\n\t9382:  0xB429,\n\t9383:  0xB42B,\n\t9384:  0xB434,\n\t9385:  0xB450,\n\t9386:  0xB451,\n\t9387:  0xB454,\n\t9388:  0xB458,\n\t9389:  0xB460,\n\t9390:  0xB461,\n\t9391:  0xB463,\n\t9392:  0xB465,\n\t9393:  0xB46C,\n\t9394:  0xB480,\n\t9395:  0xB488,\n\t9396:  0xB49D,\n\t9397:  0xB4A4,\n\t9398:  0xB4A8,\n\t9399:  0xB4AC,\n\t9400:  0xB4B5,\n\t9401:  0xB4B7,\n\t9402:  0xB4B9,\n\t9403:  0xB4C0,\n\t9404:  0xB4C4,\n\t9405:  0xB4C8,\n\t9406:  0xB4D0,\n\t9407:  0xB4D5,\n\t9408:  0xB4DC,\n\t9409:  0xB4DD,\n\t9410:  0xB4E0,\n\t9411:  0xB4E3,\n\t9412:  0xB4E4,\n\t9413:  0xB4E6,\n\t9414:  0xB4EC,\n\t9415:  0xB4ED,\n\t9416:  0xB4EF,\n\t9417:  0xB4F1,\n\t9418:  0xB4F8,\n\t9419:  0xB514,\n\t9420:  0xB515,\n\t9421:  0xB518,\n\t9422:  0xB51B,\n\t9423:  0xB51C,\n\t9424:  0xB524,\n\t9425:  0xB525,\n\t9426:  0xB527,\n\t9427:  0xB528,\n\t9428:  0xB529,\n\t9429:  0xB52A,\n\t9430:  0xB530,\n\t9431:  0xB531,\n\t9432:  0xB534,\n\t9433:  0xB538,\n\t9434:  0xD105,\n\t9435:  0xD106,\n\t9436:  0xD107,\n\t9437:  0xD108,\n\t9438:  0xD109,\n\t9439:  0xD10A,\n\t9440:  0xD10B,\n\t9441:  0xD10C,\n\t9442:  0xD10E,\n\t9443:  0xD10F,\n\t9444:  0xD110,\n\t9445:  0xD111,\n\t9446:  0xD112,\n\t9447:  0xD113,\n\t9448:  0xD114,\n\t9449:  0xD115,\n\t9450:  0xD116,\n\t9451:  0xD117,\n\t9452:  0xD118,\n\t9453:  0xD119,\n\t9454:  0xD11A,\n\t9455:  0xD11B,\n\t9456:  0xD11C,\n\t9457:  0xD11D,\n\t9458:  0xD11E,\n\t9459:  0xD11F,\n\t9460:  0xD120,\n\t9461:  0xD121,\n\t9462:  0xD122,\n\t9463:  0xD123,\n\t9464:  0xD124,\n\t9465:  0xD125,\n\t9466:  0xD126,\n\t9467:  0xD127,\n\t9468:  0xD128,\n\t9469:  0xD129,\n\t9470:  0xD12A,\n\t9471:  0xD12B,\n\t9472:  0xD12C,\n\t9473:  0xD12D,\n\t9474:  0xD12E,\n\t9475:  0xD12F,\n\t9476:  0xD132,\n\t9477:  0xD133,\n\t9478:  0xD135,\n\t9479:  0xD136,\n\t9480:  0xD137,\n\t9481:  0xD139,\n\t9482:  0xD13B,\n\t9483:  0xD13C,\n\t9484:  0xD13D,\n\t9485:  0xD13E,\n\t9486:  0xD13F,\n\t9487:  0xD142,\n\t9488:  0xD146,\n\t9489:  0xD147,\n\t9490:  0xD148,\n\t9491:  0xD149,\n\t9492:  0xD14A,\n\t9493:  0xD14B,\n\t9494:  0xD14E,\n\t9495:  0xD14F,\n\t9496:  0xD151,\n\t9497:  0xD152,\n\t9498:  0xD153,\n\t9499:  0xD155,\n\t9500:  0xD156,\n\t9501:  0xD157,\n\t9502:  0xD158,\n\t9503:  0xD159,\n\t9504:  0xD15A,\n\t9505:  0xD15B,\n\t9506:  0xD15E,\n\t9507:  0xD160,\n\t9508:  0xD162,\n\t9509:  0xD163,\n\t9510:  0xD164,\n\t9511:  0xD165,\n\t9512:  0xD166,\n\t9513:  0xD167,\n\t9514:  0xD169,\n\t9515:  0xD16A,\n\t9516:  0xD16B,\n\t9517:  0xD16D,\n\t9518:  0xB540,\n\t9519:  0xB541,\n\t9520:  0xB543,\n\t9521:  0xB544,\n\t9522:  0xB545,\n\t9523:  0xB54B,\n\t9524:  0xB54C,\n\t9525:  0xB54D,\n\t9526:  0xB550,\n\t9527:  0xB554,\n\t9528:  0xB55C,\n\t9529:  0xB55D,\n\t9530:  0xB55F,\n\t9531:  0xB560,\n\t9532:  0xB561,\n\t9533:  0xB5A0,\n\t9534:  0xB5A1,\n\t9535:  0xB5A4,\n\t9536:  0xB5A8,\n\t9537:  0xB5AA,\n\t9538:  0xB5AB,\n\t9539:  0xB5B0,\n\t9540:  0xB5B1,\n\t9541:  0xB5B3,\n\t9542:  0xB5B4,\n\t9543:  0xB5B5,\n\t9544:  0xB5BB,\n\t9545:  0xB5BC,\n\t9546:  0xB5BD,\n\t9547:  0xB5C0,\n\t9548:  0xB5C4,\n\t9549:  0xB5CC,\n\t9550:  0xB5CD,\n\t9551:  0xB5CF,\n\t9552:  0xB5D0,\n\t9553:  0xB5D1,\n\t9554:  0xB5D8,\n\t9555:  0xB5EC,\n\t9556:  0xB610,\n\t9557:  0xB611,\n\t9558:  0xB614,\n\t9559:  0xB618,\n\t9560:  0xB625,\n\t9561:  0xB62C,\n\t9562:  0xB634,\n\t9563:  0xB648,\n\t9564:  0xB664,\n\t9565:  0xB668,\n\t9566:  0xB69C,\n\t9567:  0xB69D,\n\t9568:  0xB6A0,\n\t9569:  0xB6A4,\n\t9570:  0xB6AB,\n\t9571:  0xB6AC,\n\t9572:  0xB6B1,\n\t9573:  0xB6D4,\n\t9574:  0xB6F0,\n\t9575:  0xB6F4,\n\t9576:  0xB6F8,\n\t9577:  0xB700,\n\t9578:  0xB701,\n\t9579:  0xB705,\n\t9580:  0xB728,\n\t9581:  0xB729,\n\t9582:  0xB72C,\n\t9583:  0xB72F,\n\t9584:  0xB730,\n\t9585:  0xB738,\n\t9586:  0xB739,\n\t9587:  0xB73B,\n\t9588:  0xB744,\n\t9589:  0xB748,\n\t9590:  0xB74C,\n\t9591:  0xB754,\n\t9592:  0xB755,\n\t9593:  0xB760,\n\t9594:  0xB764,\n\t9595:  0xB768,\n\t9596:  0xB770,\n\t9597:  0xB771,\n\t9598:  0xB773,\n\t9599:  0xB775,\n\t9600:  0xB77C,\n\t9601:  0xB77D,\n\t9602:  0xB780,\n\t9603:  0xB784,\n\t9604:  0xB78C,\n\t9605:  0xB78D,\n\t9606:  0xB78F,\n\t9607:  0xB790,\n\t9608:  0xB791,\n\t9609:  0xB792,\n\t9610:  0xB796,\n\t9611:  0xB797,\n\t9612:  0xD16E,\n\t9613:  0xD16F,\n\t9614:  0xD170,\n\t9615:  0xD171,\n\t9616:  0xD172,\n\t9617:  0xD173,\n\t9618:  0xD174,\n\t9619:  0xD175,\n\t9620:  0xD176,\n\t9621:  0xD177,\n\t9622:  0xD178,\n\t9623:  0xD179,\n\t9624:  0xD17A,\n\t9625:  0xD17B,\n\t9626:  0xD17D,\n\t9627:  0xD17E,\n\t9628:  0xD17F,\n\t9629:  0xD180,\n\t9630:  0xD181,\n\t9631:  0xD182,\n\t9632:  0xD183,\n\t9633:  0xD185,\n\t9634:  0xD186,\n\t9635:  0xD187,\n\t9636:  0xD189,\n\t9637:  0xD18A,\n\t9638:  0xD18B,\n\t9639:  0xD18C,\n\t9640:  0xD18D,\n\t9641:  0xD18E,\n\t9642:  0xD18F,\n\t9643:  0xD190,\n\t9644:  0xD191,\n\t9645:  0xD192,\n\t9646:  0xD193,\n\t9647:  0xD194,\n\t9648:  0xD195,\n\t9649:  0xD196,\n\t9650:  0xD197,\n\t9651:  0xD198,\n\t9652:  0xD199,\n\t9653:  0xD19A,\n\t9654:  0xD19B,\n\t9655:  0xD19C,\n\t9656:  0xD19D,\n\t9657:  0xD19E,\n\t9658:  0xD19F,\n\t9659:  0xD1A2,\n\t9660:  0xD1A3,\n\t9661:  0xD1A5,\n\t9662:  0xD1A6,\n\t9663:  0xD1A7,\n\t9664:  0xD1A9,\n\t9665:  0xD1AA,\n\t9666:  0xD1AB,\n\t9667:  0xD1AC,\n\t9668:  0xD1AD,\n\t9669:  0xD1AE,\n\t9670:  0xD1AF,\n\t9671:  0xD1B2,\n\t9672:  0xD1B4,\n\t9673:  0xD1B6,\n\t9674:  0xD1B7,\n\t9675:  0xD1B8,\n\t9676:  0xD1B9,\n\t9677:  0xD1BB,\n\t9678:  0xD1BD,\n\t9679:  0xD1BE,\n\t9680:  0xD1BF,\n\t9681:  0xD1C1,\n\t9682:  0xD1C2,\n\t9683:  0xD1C3,\n\t9684:  0xD1C4,\n\t9685:  0xD1C5,\n\t9686:  0xD1C6,\n\t9687:  0xD1C7,\n\t9688:  0xD1C8,\n\t9689:  0xD1C9,\n\t9690:  0xD1CA,\n\t9691:  0xD1CB,\n\t9692:  0xD1CC,\n\t9693:  0xD1CD,\n\t9694:  0xD1CE,\n\t9695:  0xD1CF,\n\t9696:  0xB798,\n\t9697:  0xB799,\n\t9698:  0xB79C,\n\t9699:  0xB7A0,\n\t9700:  0xB7A8,\n\t9701:  0xB7A9,\n\t9702:  0xB7AB,\n\t9703:  0xB7AC,\n\t9704:  0xB7AD,\n\t9705:  0xB7B4,\n\t9706:  0xB7B5,\n\t9707:  0xB7B8,\n\t9708:  0xB7C7,\n\t9709:  0xB7C9,\n\t9710:  0xB7EC,\n\t9711:  0xB7ED,\n\t9712:  0xB7F0,\n\t9713:  0xB7F4,\n\t9714:  0xB7FC,\n\t9715:  0xB7FD,\n\t9716:  0xB7FF,\n\t9717:  0xB800,\n\t9718:  0xB801,\n\t9719:  0xB807,\n\t9720:  0xB808,\n\t9721:  0xB809,\n\t9722:  0xB80C,\n\t9723:  0xB810,\n\t9724:  0xB818,\n\t9725:  0xB819,\n\t9726:  0xB81B,\n\t9727:  0xB81D,\n\t9728:  0xB824,\n\t9729:  0xB825,\n\t9730:  0xB828,\n\t9731:  0xB82C,\n\t9732:  0xB834,\n\t9733:  0xB835,\n\t9734:  0xB837,\n\t9735:  0xB838,\n\t9736:  0xB839,\n\t9737:  0xB840,\n\t9738:  0xB844,\n\t9739:  0xB851,\n\t9740:  0xB853,\n\t9741:  0xB85C,\n\t9742:  0xB85D,\n\t9743:  0xB860,\n\t9744:  0xB864,\n\t9745:  0xB86C,\n\t9746:  0xB86D,\n\t9747:  0xB86F,\n\t9748:  0xB871,\n\t9749:  0xB878,\n\t9750:  0xB87C,\n\t9751:  0xB88D,\n\t9752:  0xB8A8,\n\t9753:  0xB8B0,\n\t9754:  0xB8B4,\n\t9755:  0xB8B8,\n\t9756:  0xB8C0,\n\t9757:  0xB8C1,\n\t9758:  0xB8C3,\n\t9759:  0xB8C5,\n\t9760:  0xB8CC,\n\t9761:  0xB8D0,\n\t9762:  0xB8D4,\n\t9763:  0xB8DD,\n\t9764:  0xB8DF,\n\t9765:  0xB8E1,\n\t9766:  0xB8E8,\n\t9767:  0xB8E9,\n\t9768:  0xB8EC,\n\t9769:  0xB8F0,\n\t9770:  0xB8F8,\n\t9771:  0xB8F9,\n\t9772:  0xB8FB,\n\t9773:  0xB8FD,\n\t9774:  0xB904,\n\t9775:  0xB918,\n\t9776:  0xB920,\n\t9777:  0xB93C,\n\t9778:  0xB93D,\n\t9779:  0xB940,\n\t9780:  0xB944,\n\t9781:  0xB94C,\n\t9782:  0xB94F,\n\t9783:  0xB951,\n\t9784:  0xB958,\n\t9785:  0xB959,\n\t9786:  0xB95C,\n\t9787:  0xB960,\n\t9788:  0xB968,\n\t9789:  0xB969,\n\t9790:  0xD1D0,\n\t9791:  0xD1D1,\n\t9792:  0xD1D2,\n\t9793:  0xD1D3,\n\t9794:  0xD1D4,\n\t9795:  0xD1D5,\n\t9796:  0xD1D6,\n\t9797:  0xD1D7,\n\t9798:  0xD1D9,\n\t9799:  0xD1DA,\n\t9800:  0xD1DB,\n\t9801:  0xD1DC,\n\t9802:  0xD1DD,\n\t9803:  0xD1DE,\n\t9804:  0xD1DF,\n\t9805:  0xD1E0,\n\t9806:  0xD1E1,\n\t9807:  0xD1E2,\n\t9808:  0xD1E3,\n\t9809:  0xD1E4,\n\t9810:  0xD1E5,\n\t9811:  0xD1E6,\n\t9812:  0xD1E7,\n\t9813:  0xD1E8,\n\t9814:  0xD1E9,\n\t9815:  0xD1EA,\n\t9816:  0xD1EB,\n\t9817:  0xD1EC,\n\t9818:  0xD1ED,\n\t9819:  0xD1EE,\n\t9820:  0xD1EF,\n\t9821:  0xD1F0,\n\t9822:  0xD1F1,\n\t9823:  0xD1F2,\n\t9824:  0xD1F3,\n\t9825:  0xD1F5,\n\t9826:  0xD1F6,\n\t9827:  0xD1F7,\n\t9828:  0xD1F9,\n\t9829:  0xD1FA,\n\t9830:  0xD1FB,\n\t9831:  0xD1FC,\n\t9832:  0xD1FD,\n\t9833:  0xD1FE,\n\t9834:  0xD1FF,\n\t9835:  0xD200,\n\t9836:  0xD201,\n\t9837:  0xD202,\n\t9838:  0xD203,\n\t9839:  0xD204,\n\t9840:  0xD205,\n\t9841:  0xD206,\n\t9842:  0xD208,\n\t9843:  0xD20A,\n\t9844:  0xD20B,\n\t9845:  0xD20C,\n\t9846:  0xD20D,\n\t9847:  0xD20E,\n\t9848:  0xD20F,\n\t9849:  0xD211,\n\t9850:  0xD212,\n\t9851:  0xD213,\n\t9852:  0xD214,\n\t9853:  0xD215,\n\t9854:  0xD216,\n\t9855:  0xD217,\n\t9856:  0xD218,\n\t9857:  0xD219,\n\t9858:  0xD21A,\n\t9859:  0xD21B,\n\t9860:  0xD21C,\n\t9861:  0xD21D,\n\t9862:  0xD21E,\n\t9863:  0xD21F,\n\t9864:  0xD220,\n\t9865:  0xD221,\n\t9866:  0xD222,\n\t9867:  0xD223,\n\t9868:  0xD224,\n\t9869:  0xD225,\n\t9870:  0xD226,\n\t9871:  0xD227,\n\t9872:  0xD228,\n\t9873:  0xD229,\n\t9874:  0xB96B,\n\t9875:  0xB96D,\n\t9876:  0xB974,\n\t9877:  0xB975,\n\t9878:  0xB978,\n\t9879:  0xB97C,\n\t9880:  0xB984,\n\t9881:  0xB985,\n\t9882:  0xB987,\n\t9883:  0xB989,\n\t9884:  0xB98A,\n\t9885:  0xB98D,\n\t9886:  0xB98E,\n\t9887:  0xB9AC,\n\t9888:  0xB9AD,\n\t9889:  0xB9B0,\n\t9890:  0xB9B4,\n\t9891:  0xB9BC,\n\t9892:  0xB9BD,\n\t9893:  0xB9BF,\n\t9894:  0xB9C1,\n\t9895:  0xB9C8,\n\t9896:  0xB9C9,\n\t9897:  0xB9CC,\n\t9898:  0xB9CE,\n\t9899:  0xB9CF,\n\t9900:  0xB9D0,\n\t9901:  0xB9D1,\n\t9902:  0xB9D2,\n\t9903:  0xB9D8,\n\t9904:  0xB9D9,\n\t9905:  0xB9DB,\n\t9906:  0xB9DD,\n\t9907:  0xB9DE,\n\t9908:  0xB9E1,\n\t9909:  0xB9E3,\n\t9910:  0xB9E4,\n\t9911:  0xB9E5,\n\t9912:  0xB9E8,\n\t9913:  0xB9EC,\n\t9914:  0xB9F4,\n\t9915:  0xB9F5,\n\t9916:  0xB9F7,\n\t9917:  0xB9F8,\n\t9918:  0xB9F9,\n\t9919:  0xB9FA,\n\t9920:  0xBA00,\n\t9921:  0xBA01,\n\t9922:  0xBA08,\n\t9923:  0xBA15,\n\t9924:  0xBA38,\n\t9925:  0xBA39,\n\t9926:  0xBA3C,\n\t9927:  0xBA40,\n\t9928:  0xBA42,\n\t9929:  0xBA48,\n\t9930:  0xBA49,\n\t9931:  0xBA4B,\n\t9932:  0xBA4D,\n\t9933:  0xBA4E,\n\t9934:  0xBA53,\n\t9935:  0xBA54,\n\t9936:  0xBA55,\n\t9937:  0xBA58,\n\t9938:  0xBA5C,\n\t9939:  0xBA64,\n\t9940:  0xBA65,\n\t9941:  0xBA67,\n\t9942:  0xBA68,\n\t9943:  0xBA69,\n\t9944:  0xBA70,\n\t9945:  0xBA71,\n\t9946:  0xBA74,\n\t9947:  0xBA78,\n\t9948:  0xBA83,\n\t9949:  0xBA84,\n\t9950:  0xBA85,\n\t9951:  0xBA87,\n\t9952:  0xBA8C,\n\t9953:  0xBAA8,\n\t9954:  0xBAA9,\n\t9955:  0xBAAB,\n\t9956:  0xBAAC,\n\t9957:  0xBAB0,\n\t9958:  0xBAB2,\n\t9959:  0xBAB8,\n\t9960:  0xBAB9,\n\t9961:  0xBABB,\n\t9962:  0xBABD,\n\t9963:  0xBAC4,\n\t9964:  0xBAC8,\n\t9965:  0xBAD8,\n\t9966:  0xBAD9,\n\t9967:  0xBAFC,\n\t9968:  0xD22A,\n\t9969:  0xD22B,\n\t9970:  0xD22E,\n\t9971:  0xD22F,\n\t9972:  0xD231,\n\t9973:  0xD232,\n\t9974:  0xD233,\n\t9975:  0xD235,\n\t9976:  0xD236,\n\t9977:  0xD237,\n\t9978:  0xD238,\n\t9979:  0xD239,\n\t9980:  0xD23A,\n\t9981:  0xD23B,\n\t9982:  0xD23E,\n\t9983:  0xD240,\n\t9984:  0xD242,\n\t9985:  0xD243,\n\t9986:  0xD244,\n\t9987:  0xD245,\n\t9988:  0xD246,\n\t9989:  0xD247,\n\t9990:  0xD249,\n\t9991:  0xD24A,\n\t9992:  0xD24B,\n\t9993:  0xD24C,\n\t9994:  0xD24D,\n\t9995:  0xD24E,\n\t9996:  0xD24F,\n\t9997:  0xD250,\n\t9998:  0xD251,\n\t9999:  0xD252,\n\t10000: 0xD253,\n\t10001: 0xD254,\n\t10002: 0xD255,\n\t10003: 0xD256,\n\t10004: 0xD257,\n\t10005: 0xD258,\n\t10006: 0xD259,\n\t10007: 0xD25A,\n\t10008: 0xD25B,\n\t10009: 0xD25D,\n\t10010: 0xD25E,\n\t10011: 0xD25F,\n\t10012: 0xD260,\n\t10013: 0xD261,\n\t10014: 0xD262,\n\t10015: 0xD263,\n\t10016: 0xD265,\n\t10017: 0xD266,\n\t10018: 0xD267,\n\t10019: 0xD268,\n\t10020: 0xD269,\n\t10021: 0xD26A,\n\t10022: 0xD26B,\n\t10023: 0xD26C,\n\t10024: 0xD26D,\n\t10025: 0xD26E,\n\t10026: 0xD26F,\n\t10027: 0xD270,\n\t10028: 0xD271,\n\t10029: 0xD272,\n\t10030: 0xD273,\n\t10031: 0xD274,\n\t10032: 0xD275,\n\t10033: 0xD276,\n\t10034: 0xD277,\n\t10035: 0xD278,\n\t10036: 0xD279,\n\t10037: 0xD27A,\n\t10038: 0xD27B,\n\t10039: 0xD27C,\n\t10040: 0xD27D,\n\t10041: 0xD27E,\n\t10042: 0xD27F,\n\t10043: 0xD282,\n\t10044: 0xD283,\n\t10045: 0xD285,\n\t10046: 0xD286,\n\t10047: 0xD287,\n\t10048: 0xD289,\n\t10049: 0xD28A,\n\t10050: 0xD28B,\n\t10051: 0xD28C,\n\t10052: 0xBB00,\n\t10053: 0xBB04,\n\t10054: 0xBB0D,\n\t10055: 0xBB0F,\n\t10056: 0xBB11,\n\t10057: 0xBB18,\n\t10058: 0xBB1C,\n\t10059: 0xBB20,\n\t10060: 0xBB29,\n\t10061: 0xBB2B,\n\t10062: 0xBB34,\n\t10063: 0xBB35,\n\t10064: 0xBB36,\n\t10065: 0xBB38,\n\t10066: 0xBB3B,\n\t10067: 0xBB3C,\n\t10068: 0xBB3D,\n\t10069: 0xBB3E,\n\t10070: 0xBB44,\n\t10071: 0xBB45,\n\t10072: 0xBB47,\n\t10073: 0xBB49,\n\t10074: 0xBB4D,\n\t10075: 0xBB4F,\n\t10076: 0xBB50,\n\t10077: 0xBB54,\n\t10078: 0xBB58,\n\t10079: 0xBB61,\n\t10080: 0xBB63,\n\t10081: 0xBB6C,\n\t10082: 0xBB88,\n\t10083: 0xBB8C,\n\t10084: 0xBB90,\n\t10085: 0xBBA4,\n\t10086: 0xBBA8,\n\t10087: 0xBBAC,\n\t10088: 0xBBB4,\n\t10089: 0xBBB7,\n\t10090: 0xBBC0,\n\t10091: 0xBBC4,\n\t10092: 0xBBC8,\n\t10093: 0xBBD0,\n\t10094: 0xBBD3,\n\t10095: 0xBBF8,\n\t10096: 0xBBF9,\n\t10097: 0xBBFC,\n\t10098: 0xBBFF,\n\t10099: 0xBC00,\n\t10100: 0xBC02,\n\t10101: 0xBC08,\n\t10102: 0xBC09,\n\t10103: 0xBC0B,\n\t10104: 0xBC0C,\n\t10105: 0xBC0D,\n\t10106: 0xBC0F,\n\t10107: 0xBC11,\n\t10108: 0xBC14,\n\t10109: 0xBC15,\n\t10110: 0xBC16,\n\t10111: 0xBC17,\n\t10112: 0xBC18,\n\t10113: 0xBC1B,\n\t10114: 0xBC1C,\n\t10115: 0xBC1D,\n\t10116: 0xBC1E,\n\t10117: 0xBC1F,\n\t10118: 0xBC24,\n\t10119: 0xBC25,\n\t10120: 0xBC27,\n\t10121: 0xBC29,\n\t10122: 0xBC2D,\n\t10123: 0xBC30,\n\t10124: 0xBC31,\n\t10125: 0xBC34,\n\t10126: 0xBC38,\n\t10127: 0xBC40,\n\t10128: 0xBC41,\n\t10129: 0xBC43,\n\t10130: 0xBC44,\n\t10131: 0xBC45,\n\t10132: 0xBC49,\n\t10133: 0xBC4C,\n\t10134: 0xBC4D,\n\t10135: 0xBC50,\n\t10136: 0xBC5D,\n\t10137: 0xBC84,\n\t10138: 0xBC85,\n\t10139: 0xBC88,\n\t10140: 0xBC8B,\n\t10141: 0xBC8C,\n\t10142: 0xBC8E,\n\t10143: 0xBC94,\n\t10144: 0xBC95,\n\t10145: 0xBC97,\n\t10146: 0xD28D,\n\t10147: 0xD28E,\n\t10148: 0xD28F,\n\t10149: 0xD292,\n\t10150: 0xD293,\n\t10151: 0xD294,\n\t10152: 0xD296,\n\t10153: 0xD297,\n\t10154: 0xD298,\n\t10155: 0xD299,\n\t10156: 0xD29A,\n\t10157: 0xD29B,\n\t10158: 0xD29D,\n\t10159: 0xD29E,\n\t10160: 0xD29F,\n\t10161: 0xD2A1,\n\t10162: 0xD2A2,\n\t10163: 0xD2A3,\n\t10164: 0xD2A5,\n\t10165: 0xD2A6,\n\t10166: 0xD2A7,\n\t10167: 0xD2A8,\n\t10168: 0xD2A9,\n\t10169: 0xD2AA,\n\t10170: 0xD2AB,\n\t10171: 0xD2AD,\n\t10172: 0xD2AE,\n\t10173: 0xD2AF,\n\t10174: 0xD2B0,\n\t10175: 0xD2B2,\n\t10176: 0xD2B3,\n\t10177: 0xD2B4,\n\t10178: 0xD2B5,\n\t10179: 0xD2B6,\n\t10180: 0xD2B7,\n\t10181: 0xD2BA,\n\t10182: 0xD2BB,\n\t10183: 0xD2BD,\n\t10184: 0xD2BE,\n\t10185: 0xD2C1,\n\t10186: 0xD2C3,\n\t10187: 0xD2C4,\n\t10188: 0xD2C5,\n\t10189: 0xD2C6,\n\t10190: 0xD2C7,\n\t10191: 0xD2CA,\n\t10192: 0xD2CC,\n\t10193: 0xD2CD,\n\t10194: 0xD2CE,\n\t10195: 0xD2CF,\n\t10196: 0xD2D0,\n\t10197: 0xD2D1,\n\t10198: 0xD2D2,\n\t10199: 0xD2D3,\n\t10200: 0xD2D5,\n\t10201: 0xD2D6,\n\t10202: 0xD2D7,\n\t10203: 0xD2D9,\n\t10204: 0xD2DA,\n\t10205: 0xD2DB,\n\t10206: 0xD2DD,\n\t10207: 0xD2DE,\n\t10208: 0xD2DF,\n\t10209: 0xD2E0,\n\t10210: 0xD2E1,\n\t10211: 0xD2E2,\n\t10212: 0xD2E3,\n\t10213: 0xD2E6,\n\t10214: 0xD2E7,\n\t10215: 0xD2E8,\n\t10216: 0xD2E9,\n\t10217: 0xD2EA,\n\t10218: 0xD2EB,\n\t10219: 0xD2EC,\n\t10220: 0xD2ED,\n\t10221: 0xD2EE,\n\t10222: 0xD2EF,\n\t10223: 0xD2F2,\n\t10224: 0xD2F3,\n\t10225: 0xD2F5,\n\t10226: 0xD2F6,\n\t10227: 0xD2F7,\n\t10228: 0xD2F9,\n\t10229: 0xD2FA,\n\t10230: 0xBC99,\n\t10231: 0xBC9A,\n\t10232: 0xBCA0,\n\t10233: 0xBCA1,\n\t10234: 0xBCA4,\n\t10235: 0xBCA7,\n\t10236: 0xBCA8,\n\t10237: 0xBCB0,\n\t10238: 0xBCB1,\n\t10239: 0xBCB3,\n\t10240: 0xBCB4,\n\t10241: 0xBCB5,\n\t10242: 0xBCBC,\n\t10243: 0xBCBD,\n\t10244: 0xBCC0,\n\t10245: 0xBCC4,\n\t10246: 0xBCCD,\n\t10247: 0xBCCF,\n\t10248: 0xBCD0,\n\t10249: 0xBCD1,\n\t10250: 0xBCD5,\n\t10251: 0xBCD8,\n\t10252: 0xBCDC,\n\t10253: 0xBCF4,\n\t10254: 0xBCF5,\n\t10255: 0xBCF6,\n\t10256: 0xBCF8,\n\t10257: 0xBCFC,\n\t10258: 0xBD04,\n\t10259: 0xBD05,\n\t10260: 0xBD07,\n\t10261: 0xBD09,\n\t10262: 0xBD10,\n\t10263: 0xBD14,\n\t10264: 0xBD24,\n\t10265: 0xBD2C,\n\t10266: 0xBD40,\n\t10267: 0xBD48,\n\t10268: 0xBD49,\n\t10269: 0xBD4C,\n\t10270: 0xBD50,\n\t10271: 0xBD58,\n\t10272: 0xBD59,\n\t10273: 0xBD64,\n\t10274: 0xBD68,\n\t10275: 0xBD80,\n\t10276: 0xBD81,\n\t10277: 0xBD84,\n\t10278: 0xBD87,\n\t10279: 0xBD88,\n\t10280: 0xBD89,\n\t10281: 0xBD8A,\n\t10282: 0xBD90,\n\t10283: 0xBD91,\n\t10284: 0xBD93,\n\t10285: 0xBD95,\n\t10286: 0xBD99,\n\t10287: 0xBD9A,\n\t10288: 0xBD9C,\n\t10289: 0xBDA4,\n\t10290: 0xBDB0,\n\t10291: 0xBDB8,\n\t10292: 0xBDD4,\n\t10293: 0xBDD5,\n\t10294: 0xBDD8,\n\t10295: 0xBDDC,\n\t10296: 0xBDE9,\n\t10297: 0xBDF0,\n\t10298: 0xBDF4,\n\t10299: 0xBDF8,\n\t10300: 0xBE00,\n\t10301: 0xBE03,\n\t10302: 0xBE05,\n\t10303: 0xBE0C,\n\t10304: 0xBE0D,\n\t10305: 0xBE10,\n\t10306: 0xBE14,\n\t10307: 0xBE1C,\n\t10308: 0xBE1D,\n\t10309: 0xBE1F,\n\t10310: 0xBE44,\n\t10311: 0xBE45,\n\t10312: 0xBE48,\n\t10313: 0xBE4C,\n\t10314: 0xBE4E,\n\t10315: 0xBE54,\n\t10316: 0xBE55,\n\t10317: 0xBE57,\n\t10318: 0xBE59,\n\t10319: 0xBE5A,\n\t10320: 0xBE5B,\n\t10321: 0xBE60,\n\t10322: 0xBE61,\n\t10323: 0xBE64,\n\t10324: 0xD2FB,\n\t10325: 0xD2FC,\n\t10326: 0xD2FD,\n\t10327: 0xD2FE,\n\t10328: 0xD2FF,\n\t10329: 0xD302,\n\t10330: 0xD304,\n\t10331: 0xD306,\n\t10332: 0xD307,\n\t10333: 0xD308,\n\t10334: 0xD309,\n\t10335: 0xD30A,\n\t10336: 0xD30B,\n\t10337: 0xD30F,\n\t10338: 0xD311,\n\t10339: 0xD312,\n\t10340: 0xD313,\n\t10341: 0xD315,\n\t10342: 0xD317,\n\t10343: 0xD318,\n\t10344: 0xD319,\n\t10345: 0xD31A,\n\t10346: 0xD31B,\n\t10347: 0xD31E,\n\t10348: 0xD322,\n\t10349: 0xD323,\n\t10350: 0xD324,\n\t10351: 0xD326,\n\t10352: 0xD327,\n\t10353: 0xD32A,\n\t10354: 0xD32B,\n\t10355: 0xD32D,\n\t10356: 0xD32E,\n\t10357: 0xD32F,\n\t10358: 0xD331,\n\t10359: 0xD332,\n\t10360: 0xD333,\n\t10361: 0xD334,\n\t10362: 0xD335,\n\t10363: 0xD336,\n\t10364: 0xD337,\n\t10365: 0xD33A,\n\t10366: 0xD33E,\n\t10367: 0xD33F,\n\t10368: 0xD340,\n\t10369: 0xD341,\n\t10370: 0xD342,\n\t10371: 0xD343,\n\t10372: 0xD346,\n\t10373: 0xD347,\n\t10374: 0xD348,\n\t10375: 0xD349,\n\t10376: 0xD34A,\n\t10377: 0xD34B,\n\t10378: 0xD34C,\n\t10379: 0xD34D,\n\t10380: 0xD34E,\n\t10381: 0xD34F,\n\t10382: 0xD350,\n\t10383: 0xD351,\n\t10384: 0xD352,\n\t10385: 0xD353,\n\t10386: 0xD354,\n\t10387: 0xD355,\n\t10388: 0xD356,\n\t10389: 0xD357,\n\t10390: 0xD358,\n\t10391: 0xD359,\n\t10392: 0xD35A,\n\t10393: 0xD35B,\n\t10394: 0xD35C,\n\t10395: 0xD35D,\n\t10396: 0xD35E,\n\t10397: 0xD35F,\n\t10398: 0xD360,\n\t10399: 0xD361,\n\t10400: 0xD362,\n\t10401: 0xD363,\n\t10402: 0xD364,\n\t10403: 0xD365,\n\t10404: 0xD366,\n\t10405: 0xD367,\n\t10406: 0xD368,\n\t10407: 0xD369,\n\t10408: 0xBE68,\n\t10409: 0xBE6A,\n\t10410: 0xBE70,\n\t10411: 0xBE71,\n\t10412: 0xBE73,\n\t10413: 0xBE74,\n\t10414: 0xBE75,\n\t10415: 0xBE7B,\n\t10416: 0xBE7C,\n\t10417: 0xBE7D,\n\t10418: 0xBE80,\n\t10419: 0xBE84,\n\t10420: 0xBE8C,\n\t10421: 0xBE8D,\n\t10422: 0xBE8F,\n\t10423: 0xBE90,\n\t10424: 0xBE91,\n\t10425: 0xBE98,\n\t10426: 0xBE99,\n\t10427: 0xBEA8,\n\t10428: 0xBED0,\n\t10429: 0xBED1,\n\t10430: 0xBED4,\n\t10431: 0xBED7,\n\t10432: 0xBED8,\n\t10433: 0xBEE0,\n\t10434: 0xBEE3,\n\t10435: 0xBEE4,\n\t10436: 0xBEE5,\n\t10437: 0xBEEC,\n\t10438: 0xBF01,\n\t10439: 0xBF08,\n\t10440: 0xBF09,\n\t10441: 0xBF18,\n\t10442: 0xBF19,\n\t10443: 0xBF1B,\n\t10444: 0xBF1C,\n\t10445: 0xBF1D,\n\t10446: 0xBF40,\n\t10447: 0xBF41,\n\t10448: 0xBF44,\n\t10449: 0xBF48,\n\t10450: 0xBF50,\n\t10451: 0xBF51,\n\t10452: 0xBF55,\n\t10453: 0xBF94,\n\t10454: 0xBFB0,\n\t10455: 0xBFC5,\n\t10456: 0xBFCC,\n\t10457: 0xBFCD,\n\t10458: 0xBFD0,\n\t10459: 0xBFD4,\n\t10460: 0xBFDC,\n\t10461: 0xBFDF,\n\t10462: 0xBFE1,\n\t10463: 0xC03C,\n\t10464: 0xC051,\n\t10465: 0xC058,\n\t10466: 0xC05C,\n\t10467: 0xC060,\n\t10468: 0xC068,\n\t10469: 0xC069,\n\t10470: 0xC090,\n\t10471: 0xC091,\n\t10472: 0xC094,\n\t10473: 0xC098,\n\t10474: 0xC0A0,\n\t10475: 0xC0A1,\n\t10476: 0xC0A3,\n\t10477: 0xC0A5,\n\t10478: 0xC0AC,\n\t10479: 0xC0AD,\n\t10480: 0xC0AF,\n\t10481: 0xC0B0,\n\t10482: 0xC0B3,\n\t10483: 0xC0B4,\n\t10484: 0xC0B5,\n\t10485: 0xC0B6,\n\t10486: 0xC0BC,\n\t10487: 0xC0BD,\n\t10488: 0xC0BF,\n\t10489: 0xC0C0,\n\t10490: 0xC0C1,\n\t10491: 0xC0C5,\n\t10492: 0xC0C8,\n\t10493: 0xC0C9,\n\t10494: 0xC0CC,\n\t10495: 0xC0D0,\n\t10496: 0xC0D8,\n\t10497: 0xC0D9,\n\t10498: 0xC0DB,\n\t10499: 0xC0DC,\n\t10500: 0xC0DD,\n\t10501: 0xC0E4,\n\t10502: 0xD36A,\n\t10503: 0xD36B,\n\t10504: 0xD36C,\n\t10505: 0xD36D,\n\t10506: 0xD36E,\n\t10507: 0xD36F,\n\t10508: 0xD370,\n\t10509: 0xD371,\n\t10510: 0xD372,\n\t10511: 0xD373,\n\t10512: 0xD374,\n\t10513: 0xD375,\n\t10514: 0xD376,\n\t10515: 0xD377,\n\t10516: 0xD378,\n\t10517: 0xD379,\n\t10518: 0xD37A,\n\t10519: 0xD37B,\n\t10520: 0xD37E,\n\t10521: 0xD37F,\n\t10522: 0xD381,\n\t10523: 0xD382,\n\t10524: 0xD383,\n\t10525: 0xD385,\n\t10526: 0xD386,\n\t10527: 0xD387,\n\t10528: 0xD388,\n\t10529: 0xD389,\n\t10530: 0xD38A,\n\t10531: 0xD38B,\n\t10532: 0xD38E,\n\t10533: 0xD392,\n\t10534: 0xD393,\n\t10535: 0xD394,\n\t10536: 0xD395,\n\t10537: 0xD396,\n\t10538: 0xD397,\n\t10539: 0xD39A,\n\t10540: 0xD39B,\n\t10541: 0xD39D,\n\t10542: 0xD39E,\n\t10543: 0xD39F,\n\t10544: 0xD3A1,\n\t10545: 0xD3A2,\n\t10546: 0xD3A3,\n\t10547: 0xD3A4,\n\t10548: 0xD3A5,\n\t10549: 0xD3A6,\n\t10550: 0xD3A7,\n\t10551: 0xD3AA,\n\t10552: 0xD3AC,\n\t10553: 0xD3AE,\n\t10554: 0xD3AF,\n\t10555: 0xD3B0,\n\t10556: 0xD3B1,\n\t10557: 0xD3B2,\n\t10558: 0xD3B3,\n\t10559: 0xD3B5,\n\t10560: 0xD3B6,\n\t10561: 0xD3B7,\n\t10562: 0xD3B9,\n\t10563: 0xD3BA,\n\t10564: 0xD3BB,\n\t10565: 0xD3BD,\n\t10566: 0xD3BE,\n\t10567: 0xD3BF,\n\t10568: 0xD3C0,\n\t10569: 0xD3C1,\n\t10570: 0xD3C2,\n\t10571: 0xD3C3,\n\t10572: 0xD3C6,\n\t10573: 0xD3C7,\n\t10574: 0xD3CA,\n\t10575: 0xD3CB,\n\t10576: 0xD3CC,\n\t10577: 0xD3CD,\n\t10578: 0xD3CE,\n\t10579: 0xD3CF,\n\t10580: 0xD3D1,\n\t10581: 0xD3D2,\n\t10582: 0xD3D3,\n\t10583: 0xD3D4,\n\t10584: 0xD3D5,\n\t10585: 0xD3D6,\n\t10586: 0xC0E5,\n\t10587: 0xC0E8,\n\t10588: 0xC0EC,\n\t10589: 0xC0F4,\n\t10590: 0xC0F5,\n\t10591: 0xC0F7,\n\t10592: 0xC0F9,\n\t10593: 0xC100,\n\t10594: 0xC104,\n\t10595: 0xC108,\n\t10596: 0xC110,\n\t10597: 0xC115,\n\t10598: 0xC11C,\n\t10599: 0xC11D,\n\t10600: 0xC11E,\n\t10601: 0xC11F,\n\t10602: 0xC120,\n\t10603: 0xC123,\n\t10604: 0xC124,\n\t10605: 0xC126,\n\t10606: 0xC127,\n\t10607: 0xC12C,\n\t10608: 0xC12D,\n\t10609: 0xC12F,\n\t10610: 0xC130,\n\t10611: 0xC131,\n\t10612: 0xC136,\n\t10613: 0xC138,\n\t10614: 0xC139,\n\t10615: 0xC13C,\n\t10616: 0xC140,\n\t10617: 0xC148,\n\t10618: 0xC149,\n\t10619: 0xC14B,\n\t10620: 0xC14C,\n\t10621: 0xC14D,\n\t10622: 0xC154,\n\t10623: 0xC155,\n\t10624: 0xC158,\n\t10625: 0xC15C,\n\t10626: 0xC164,\n\t10627: 0xC165,\n\t10628: 0xC167,\n\t10629: 0xC168,\n\t10630: 0xC169,\n\t10631: 0xC170,\n\t10632: 0xC174,\n\t10633: 0xC178,\n\t10634: 0xC185,\n\t10635: 0xC18C,\n\t10636: 0xC18D,\n\t10637: 0xC18E,\n\t10638: 0xC190,\n\t10639: 0xC194,\n\t10640: 0xC196,\n\t10641: 0xC19C,\n\t10642: 0xC19D,\n\t10643: 0xC19F,\n\t10644: 0xC1A1,\n\t10645: 0xC1A5,\n\t10646: 0xC1A8,\n\t10647: 0xC1A9,\n\t10648: 0xC1AC,\n\t10649: 0xC1B0,\n\t10650: 0xC1BD,\n\t10651: 0xC1C4,\n\t10652: 0xC1C8,\n\t10653: 0xC1CC,\n\t10654: 0xC1D4,\n\t10655: 0xC1D7,\n\t10656: 0xC1D8,\n\t10657: 0xC1E0,\n\t10658: 0xC1E4,\n\t10659: 0xC1E8,\n\t10660: 0xC1F0,\n\t10661: 0xC1F1,\n\t10662: 0xC1F3,\n\t10663: 0xC1FC,\n\t10664: 0xC1FD,\n\t10665: 0xC200,\n\t10666: 0xC204,\n\t10667: 0xC20C,\n\t10668: 0xC20D,\n\t10669: 0xC20F,\n\t10670: 0xC211,\n\t10671: 0xC218,\n\t10672: 0xC219,\n\t10673: 0xC21C,\n\t10674: 0xC21F,\n\t10675: 0xC220,\n\t10676: 0xC228,\n\t10677: 0xC229,\n\t10678: 0xC22B,\n\t10679: 0xC22D,\n\t10680: 0xD3D7,\n\t10681: 0xD3D9,\n\t10682: 0xD3DA,\n\t10683: 0xD3DB,\n\t10684: 0xD3DC,\n\t10685: 0xD3DD,\n\t10686: 0xD3DE,\n\t10687: 0xD3DF,\n\t10688: 0xD3E0,\n\t10689: 0xD3E2,\n\t10690: 0xD3E4,\n\t10691: 0xD3E5,\n\t10692: 0xD3E6,\n\t10693: 0xD3E7,\n\t10694: 0xD3E8,\n\t10695: 0xD3E9,\n\t10696: 0xD3EA,\n\t10697: 0xD3EB,\n\t10698: 0xD3EE,\n\t10699: 0xD3EF,\n\t10700: 0xD3F1,\n\t10701: 0xD3F2,\n\t10702: 0xD3F3,\n\t10703: 0xD3F5,\n\t10704: 0xD3F6,\n\t10705: 0xD3F7,\n\t10706: 0xD3F8,\n\t10707: 0xD3F9,\n\t10708: 0xD3FA,\n\t10709: 0xD3FB,\n\t10710: 0xD3FE,\n\t10711: 0xD400,\n\t10712: 0xD402,\n\t10713: 0xD403,\n\t10714: 0xD404,\n\t10715: 0xD405,\n\t10716: 0xD406,\n\t10717: 0xD407,\n\t10718: 0xD409,\n\t10719: 0xD40A,\n\t10720: 0xD40B,\n\t10721: 0xD40C,\n\t10722: 0xD40D,\n\t10723: 0xD40E,\n\t10724: 0xD40F,\n\t10725: 0xD410,\n\t10726: 0xD411,\n\t10727: 0xD412,\n\t10728: 0xD413,\n\t10729: 0xD414,\n\t10730: 0xD415,\n\t10731: 0xD416,\n\t10732: 0xD417,\n\t10733: 0xD418,\n\t10734: 0xD419,\n\t10735: 0xD41A,\n\t10736: 0xD41B,\n\t10737: 0xD41C,\n\t10738: 0xD41E,\n\t10739: 0xD41F,\n\t10740: 0xD420,\n\t10741: 0xD421,\n\t10742: 0xD422,\n\t10743: 0xD423,\n\t10744: 0xD424,\n\t10745: 0xD425,\n\t10746: 0xD426,\n\t10747: 0xD427,\n\t10748: 0xD428,\n\t10749: 0xD429,\n\t10750: 0xD42A,\n\t10751: 0xD42B,\n\t10752: 0xD42C,\n\t10753: 0xD42D,\n\t10754: 0xD42E,\n\t10755: 0xD42F,\n\t10756: 0xD430,\n\t10757: 0xD431,\n\t10758: 0xD432,\n\t10759: 0xD433,\n\t10760: 0xD434,\n\t10761: 0xD435,\n\t10762: 0xD436,\n\t10763: 0xD437,\n\t10764: 0xC22F,\n\t10765: 0xC231,\n\t10766: 0xC232,\n\t10767: 0xC234,\n\t10768: 0xC248,\n\t10769: 0xC250,\n\t10770: 0xC251,\n\t10771: 0xC254,\n\t10772: 0xC258,\n\t10773: 0xC260,\n\t10774: 0xC265,\n\t10775: 0xC26C,\n\t10776: 0xC26D,\n\t10777: 0xC270,\n\t10778: 0xC274,\n\t10779: 0xC27C,\n\t10780: 0xC27D,\n\t10781: 0xC27F,\n\t10782: 0xC281,\n\t10783: 0xC288,\n\t10784: 0xC289,\n\t10785: 0xC290,\n\t10786: 0xC298,\n\t10787: 0xC29B,\n\t10788: 0xC29D,\n\t10789: 0xC2A4,\n\t10790: 0xC2A5,\n\t10791: 0xC2A8,\n\t10792: 0xC2AC,\n\t10793: 0xC2AD,\n\t10794: 0xC2B4,\n\t10795: 0xC2B5,\n\t10796: 0xC2B7,\n\t10797: 0xC2B9,\n\t10798: 0xC2DC,\n\t10799: 0xC2DD,\n\t10800: 0xC2E0,\n\t10801: 0xC2E3,\n\t10802: 0xC2E4,\n\t10803: 0xC2EB,\n\t10804: 0xC2EC,\n\t10805: 0xC2ED,\n\t10806: 0xC2EF,\n\t10807: 0xC2F1,\n\t10808: 0xC2F6,\n\t10809: 0xC2F8,\n\t10810: 0xC2F9,\n\t10811: 0xC2FB,\n\t10812: 0xC2FC,\n\t10813: 0xC300,\n\t10814: 0xC308,\n\t10815: 0xC309,\n\t10816: 0xC30C,\n\t10817: 0xC30D,\n\t10818: 0xC313,\n\t10819: 0xC314,\n\t10820: 0xC315,\n\t10821: 0xC318,\n\t10822: 0xC31C,\n\t10823: 0xC324,\n\t10824: 0xC325,\n\t10825: 0xC328,\n\t10826: 0xC329,\n\t10827: 0xC345,\n\t10828: 0xC368,\n\t10829: 0xC369,\n\t10830: 0xC36C,\n\t10831: 0xC370,\n\t10832: 0xC372,\n\t10833: 0xC378,\n\t10834: 0xC379,\n\t10835: 0xC37C,\n\t10836: 0xC37D,\n\t10837: 0xC384,\n\t10838: 0xC388,\n\t10839: 0xC38C,\n\t10840: 0xC3C0,\n\t10841: 0xC3D8,\n\t10842: 0xC3D9,\n\t10843: 0xC3DC,\n\t10844: 0xC3DF,\n\t10845: 0xC3E0,\n\t10846: 0xC3E2,\n\t10847: 0xC3E8,\n\t10848: 0xC3E9,\n\t10849: 0xC3ED,\n\t10850: 0xC3F4,\n\t10851: 0xC3F5,\n\t10852: 0xC3F8,\n\t10853: 0xC408,\n\t10854: 0xC410,\n\t10855: 0xC424,\n\t10856: 0xC42C,\n\t10857: 0xC430,\n\t10858: 0xD438,\n\t10859: 0xD439,\n\t10860: 0xD43A,\n\t10861: 0xD43B,\n\t10862: 0xD43C,\n\t10863: 0xD43D,\n\t10864: 0xD43E,\n\t10865: 0xD43F,\n\t10866: 0xD441,\n\t10867: 0xD442,\n\t10868: 0xD443,\n\t10869: 0xD445,\n\t10870: 0xD446,\n\t10871: 0xD447,\n\t10872: 0xD448,\n\t10873: 0xD449,\n\t10874: 0xD44A,\n\t10875: 0xD44B,\n\t10876: 0xD44C,\n\t10877: 0xD44D,\n\t10878: 0xD44E,\n\t10879: 0xD44F,\n\t10880: 0xD450,\n\t10881: 0xD451,\n\t10882: 0xD452,\n\t10883: 0xD453,\n\t10884: 0xD454,\n\t10885: 0xD455,\n\t10886: 0xD456,\n\t10887: 0xD457,\n\t10888: 0xD458,\n\t10889: 0xD459,\n\t10890: 0xD45A,\n\t10891: 0xD45B,\n\t10892: 0xD45D,\n\t10893: 0xD45E,\n\t10894: 0xD45F,\n\t10895: 0xD461,\n\t10896: 0xD462,\n\t10897: 0xD463,\n\t10898: 0xD465,\n\t10899: 0xD466,\n\t10900: 0xD467,\n\t10901: 0xD468,\n\t10902: 0xD469,\n\t10903: 0xD46A,\n\t10904: 0xD46B,\n\t10905: 0xD46C,\n\t10906: 0xD46E,\n\t10907: 0xD470,\n\t10908: 0xD471,\n\t10909: 0xD472,\n\t10910: 0xD473,\n\t10911: 0xD474,\n\t10912: 0xD475,\n\t10913: 0xD476,\n\t10914: 0xD477,\n\t10915: 0xD47A,\n\t10916: 0xD47B,\n\t10917: 0xD47D,\n\t10918: 0xD47E,\n\t10919: 0xD481,\n\t10920: 0xD483,\n\t10921: 0xD484,\n\t10922: 0xD485,\n\t10923: 0xD486,\n\t10924: 0xD487,\n\t10925: 0xD48A,\n\t10926: 0xD48C,\n\t10927: 0xD48E,\n\t10928: 0xD48F,\n\t10929: 0xD490,\n\t10930: 0xD491,\n\t10931: 0xD492,\n\t10932: 0xD493,\n\t10933: 0xD495,\n\t10934: 0xD496,\n\t10935: 0xD497,\n\t10936: 0xD498,\n\t10937: 0xD499,\n\t10938: 0xD49A,\n\t10939: 0xD49B,\n\t10940: 0xD49C,\n\t10941: 0xD49D,\n\t10942: 0xC434,\n\t10943: 0xC43C,\n\t10944: 0xC43D,\n\t10945: 0xC448,\n\t10946: 0xC464,\n\t10947: 0xC465,\n\t10948: 0xC468,\n\t10949: 0xC46C,\n\t10950: 0xC474,\n\t10951: 0xC475,\n\t10952: 0xC479,\n\t10953: 0xC480,\n\t10954: 0xC494,\n\t10955: 0xC49C,\n\t10956: 0xC4B8,\n\t10957: 0xC4BC,\n\t10958: 0xC4E9,\n\t10959: 0xC4F0,\n\t10960: 0xC4F1,\n\t10961: 0xC4F4,\n\t10962: 0xC4F8,\n\t10963: 0xC4FA,\n\t10964: 0xC4FF,\n\t10965: 0xC500,\n\t10966: 0xC501,\n\t10967: 0xC50C,\n\t10968: 0xC510,\n\t10969: 0xC514,\n\t10970: 0xC51C,\n\t10971: 0xC528,\n\t10972: 0xC529,\n\t10973: 0xC52C,\n\t10974: 0xC530,\n\t10975: 0xC538,\n\t10976: 0xC539,\n\t10977: 0xC53B,\n\t10978: 0xC53D,\n\t10979: 0xC544,\n\t10980: 0xC545,\n\t10981: 0xC548,\n\t10982: 0xC549,\n\t10983: 0xC54A,\n\t10984: 0xC54C,\n\t10985: 0xC54D,\n\t10986: 0xC54E,\n\t10987: 0xC553,\n\t10988: 0xC554,\n\t10989: 0xC555,\n\t10990: 0xC557,\n\t10991: 0xC558,\n\t10992: 0xC559,\n\t10993: 0xC55D,\n\t10994: 0xC55E,\n\t10995: 0xC560,\n\t10996: 0xC561,\n\t10997: 0xC564,\n\t10998: 0xC568,\n\t10999: 0xC570,\n\t11000: 0xC571,\n\t11001: 0xC573,\n\t11002: 0xC574,\n\t11003: 0xC575,\n\t11004: 0xC57C,\n\t11005: 0xC57D,\n\t11006: 0xC580,\n\t11007: 0xC584,\n\t11008: 0xC587,\n\t11009: 0xC58C,\n\t11010: 0xC58D,\n\t11011: 0xC58F,\n\t11012: 0xC591,\n\t11013: 0xC595,\n\t11014: 0xC597,\n\t11015: 0xC598,\n\t11016: 0xC59C,\n\t11017: 0xC5A0,\n\t11018: 0xC5A9,\n\t11019: 0xC5B4,\n\t11020: 0xC5B5,\n\t11021: 0xC5B8,\n\t11022: 0xC5B9,\n\t11023: 0xC5BB,\n\t11024: 0xC5BC,\n\t11025: 0xC5BD,\n\t11026: 0xC5BE,\n\t11027: 0xC5C4,\n\t11028: 0xC5C5,\n\t11029: 0xC5C6,\n\t11030: 0xC5C7,\n\t11031: 0xC5C8,\n\t11032: 0xC5C9,\n\t11033: 0xC5CA,\n\t11034: 0xC5CC,\n\t11035: 0xC5CE,\n\t11036: 0xD49E,\n\t11037: 0xD49F,\n\t11038: 0xD4A0,\n\t11039: 0xD4A1,\n\t11040: 0xD4A2,\n\t11041: 0xD4A3,\n\t11042: 0xD4A4,\n\t11043: 0xD4A5,\n\t11044: 0xD4A6,\n\t11045: 0xD4A7,\n\t11046: 0xD4A8,\n\t11047: 0xD4AA,\n\t11048: 0xD4AB,\n\t11049: 0xD4AC,\n\t11050: 0xD4AD,\n\t11051: 0xD4AE,\n\t11052: 0xD4AF,\n\t11053: 0xD4B0,\n\t11054: 0xD4B1,\n\t11055: 0xD4B2,\n\t11056: 0xD4B3,\n\t11057: 0xD4B4,\n\t11058: 0xD4B5,\n\t11059: 0xD4B6,\n\t11060: 0xD4B7,\n\t11061: 0xD4B8,\n\t11062: 0xD4B9,\n\t11063: 0xD4BA,\n\t11064: 0xD4BB,\n\t11065: 0xD4BC,\n\t11066: 0xD4BD,\n\t11067: 0xD4BE,\n\t11068: 0xD4BF,\n\t11069: 0xD4C0,\n\t11070: 0xD4C1,\n\t11071: 0xD4C2,\n\t11072: 0xD4C3,\n\t11073: 0xD4C4,\n\t11074: 0xD4C5,\n\t11075: 0xD4C6,\n\t11076: 0xD4C7,\n\t11077: 0xD4C8,\n\t11078: 0xD4C9,\n\t11079: 0xD4CA,\n\t11080: 0xD4CB,\n\t11081: 0xD4CD,\n\t11082: 0xD4CE,\n\t11083: 0xD4CF,\n\t11084: 0xD4D1,\n\t11085: 0xD4D2,\n\t11086: 0xD4D3,\n\t11087: 0xD4D5,\n\t11088: 0xD4D6,\n\t11089: 0xD4D7,\n\t11090: 0xD4D8,\n\t11091: 0xD4D9,\n\t11092: 0xD4DA,\n\t11093: 0xD4DB,\n\t11094: 0xD4DD,\n\t11095: 0xD4DE,\n\t11096: 0xD4E0,\n\t11097: 0xD4E1,\n\t11098: 0xD4E2,\n\t11099: 0xD4E3,\n\t11100: 0xD4E4,\n\t11101: 0xD4E5,\n\t11102: 0xD4E6,\n\t11103: 0xD4E7,\n\t11104: 0xD4E9,\n\t11105: 0xD4EA,\n\t11106: 0xD4EB,\n\t11107: 0xD4ED,\n\t11108: 0xD4EE,\n\t11109: 0xD4EF,\n\t11110: 0xD4F1,\n\t11111: 0xD4F2,\n\t11112: 0xD4F3,\n\t11113: 0xD4F4,\n\t11114: 0xD4F5,\n\t11115: 0xD4F6,\n\t11116: 0xD4F7,\n\t11117: 0xD4F9,\n\t11118: 0xD4FA,\n\t11119: 0xD4FC,\n\t11120: 0xC5D0,\n\t11121: 0xC5D1,\n\t11122: 0xC5D4,\n\t11123: 0xC5D8,\n\t11124: 0xC5E0,\n\t11125: 0xC5E1,\n\t11126: 0xC5E3,\n\t11127: 0xC5E5,\n\t11128: 0xC5EC,\n\t11129: 0xC5ED,\n\t11130: 0xC5EE,\n\t11131: 0xC5F0,\n\t11132: 0xC5F4,\n\t11133: 0xC5F6,\n\t11134: 0xC5F7,\n\t11135: 0xC5FC,\n\t11136: 0xC5FD,\n\t11137: 0xC5FE,\n\t11138: 0xC5FF,\n\t11139: 0xC600,\n\t11140: 0xC601,\n\t11141: 0xC605,\n\t11142: 0xC606,\n\t11143: 0xC607,\n\t11144: 0xC608,\n\t11145: 0xC60C,\n\t11146: 0xC610,\n\t11147: 0xC618,\n\t11148: 0xC619,\n\t11149: 0xC61B,\n\t11150: 0xC61C,\n\t11151: 0xC624,\n\t11152: 0xC625,\n\t11153: 0xC628,\n\t11154: 0xC62C,\n\t11155: 0xC62D,\n\t11156: 0xC62E,\n\t11157: 0xC630,\n\t11158: 0xC633,\n\t11159: 0xC634,\n\t11160: 0xC635,\n\t11161: 0xC637,\n\t11162: 0xC639,\n\t11163: 0xC63B,\n\t11164: 0xC640,\n\t11165: 0xC641,\n\t11166: 0xC644,\n\t11167: 0xC648,\n\t11168: 0xC650,\n\t11169: 0xC651,\n\t11170: 0xC653,\n\t11171: 0xC654,\n\t11172: 0xC655,\n\t11173: 0xC65C,\n\t11174: 0xC65D,\n\t11175: 0xC660,\n\t11176: 0xC66C,\n\t11177: 0xC66F,\n\t11178: 0xC671,\n\t11179: 0xC678,\n\t11180: 0xC679,\n\t11181: 0xC67C,\n\t11182: 0xC680,\n\t11183: 0xC688,\n\t11184: 0xC689,\n\t11185: 0xC68B,\n\t11186: 0xC68D,\n\t11187: 0xC694,\n\t11188: 0xC695,\n\t11189: 0xC698,\n\t11190: 0xC69C,\n\t11191: 0xC6A4,\n\t11192: 0xC6A5,\n\t11193: 0xC6A7,\n\t11194: 0xC6A9,\n\t11195: 0xC6B0,\n\t11196: 0xC6B1,\n\t11197: 0xC6B4,\n\t11198: 0xC6B8,\n\t11199: 0xC6B9,\n\t11200: 0xC6BA,\n\t11201: 0xC6C0,\n\t11202: 0xC6C1,\n\t11203: 0xC6C3,\n\t11204: 0xC6C5,\n\t11205: 0xC6CC,\n\t11206: 0xC6CD,\n\t11207: 0xC6D0,\n\t11208: 0xC6D4,\n\t11209: 0xC6DC,\n\t11210: 0xC6DD,\n\t11211: 0xC6E0,\n\t11212: 0xC6E1,\n\t11213: 0xC6E8,\n\t11214: 0xD4FE,\n\t11215: 0xD4FF,\n\t11216: 0xD500,\n\t11217: 0xD501,\n\t11218: 0xD502,\n\t11219: 0xD503,\n\t11220: 0xD505,\n\t11221: 0xD506,\n\t11222: 0xD507,\n\t11223: 0xD509,\n\t11224: 0xD50A,\n\t11225: 0xD50B,\n\t11226: 0xD50D,\n\t11227: 0xD50E,\n\t11228: 0xD50F,\n\t11229: 0xD510,\n\t11230: 0xD511,\n\t11231: 0xD512,\n\t11232: 0xD513,\n\t11233: 0xD516,\n\t11234: 0xD518,\n\t11235: 0xD519,\n\t11236: 0xD51A,\n\t11237: 0xD51B,\n\t11238: 0xD51C,\n\t11239: 0xD51D,\n\t11240: 0xD51E,\n\t11241: 0xD51F,\n\t11242: 0xD520,\n\t11243: 0xD521,\n\t11244: 0xD522,\n\t11245: 0xD523,\n\t11246: 0xD524,\n\t11247: 0xD525,\n\t11248: 0xD526,\n\t11249: 0xD527,\n\t11250: 0xD528,\n\t11251: 0xD529,\n\t11252: 0xD52A,\n\t11253: 0xD52B,\n\t11254: 0xD52C,\n\t11255: 0xD52D,\n\t11256: 0xD52E,\n\t11257: 0xD52F,\n\t11258: 0xD530,\n\t11259: 0xD531,\n\t11260: 0xD532,\n\t11261: 0xD533,\n\t11262: 0xD534,\n\t11263: 0xD535,\n\t11264: 0xD536,\n\t11265: 0xD537,\n\t11266: 0xD538,\n\t11267: 0xD539,\n\t11268: 0xD53A,\n\t11269: 0xD53B,\n\t11270: 0xD53E,\n\t11271: 0xD53F,\n\t11272: 0xD541,\n\t11273: 0xD542,\n\t11274: 0xD543,\n\t11275: 0xD545,\n\t11276: 0xD546,\n\t11277: 0xD547,\n\t11278: 0xD548,\n\t11279: 0xD549,\n\t11280: 0xD54A,\n\t11281: 0xD54B,\n\t11282: 0xD54E,\n\t11283: 0xD550,\n\t11284: 0xD552,\n\t11285: 0xD553,\n\t11286: 0xD554,\n\t11287: 0xD555,\n\t11288: 0xD556,\n\t11289: 0xD557,\n\t11290: 0xD55A,\n\t11291: 0xD55B,\n\t11292: 0xD55D,\n\t11293: 0xD55E,\n\t11294: 0xD55F,\n\t11295: 0xD561,\n\t11296: 0xD562,\n\t11297: 0xD563,\n\t11298: 0xC6E9,\n\t11299: 0xC6EC,\n\t11300: 0xC6F0,\n\t11301: 0xC6F8,\n\t11302: 0xC6F9,\n\t11303: 0xC6FD,\n\t11304: 0xC704,\n\t11305: 0xC705,\n\t11306: 0xC708,\n\t11307: 0xC70C,\n\t11308: 0xC714,\n\t11309: 0xC715,\n\t11310: 0xC717,\n\t11311: 0xC719,\n\t11312: 0xC720,\n\t11313: 0xC721,\n\t11314: 0xC724,\n\t11315: 0xC728,\n\t11316: 0xC730,\n\t11317: 0xC731,\n\t11318: 0xC733,\n\t11319: 0xC735,\n\t11320: 0xC737,\n\t11321: 0xC73C,\n\t11322: 0xC73D,\n\t11323: 0xC740,\n\t11324: 0xC744,\n\t11325: 0xC74A,\n\t11326: 0xC74C,\n\t11327: 0xC74D,\n\t11328: 0xC74F,\n\t11329: 0xC751,\n\t11330: 0xC752,\n\t11331: 0xC753,\n\t11332: 0xC754,\n\t11333: 0xC755,\n\t11334: 0xC756,\n\t11335: 0xC757,\n\t11336: 0xC758,\n\t11337: 0xC75C,\n\t11338: 0xC760,\n\t11339: 0xC768,\n\t11340: 0xC76B,\n\t11341: 0xC774,\n\t11342: 0xC775,\n\t11343: 0xC778,\n\t11344: 0xC77C,\n\t11345: 0xC77D,\n\t11346: 0xC77E,\n\t11347: 0xC783,\n\t11348: 0xC784,\n\t11349: 0xC785,\n\t11350: 0xC787,\n\t11351: 0xC788,\n\t11352: 0xC789,\n\t11353: 0xC78A,\n\t11354: 0xC78E,\n\t11355: 0xC790,\n\t11356: 0xC791,\n\t11357: 0xC794,\n\t11358: 0xC796,\n\t11359: 0xC797,\n\t11360: 0xC798,\n\t11361: 0xC79A,\n\t11362: 0xC7A0,\n\t11363: 0xC7A1,\n\t11364: 0xC7A3,\n\t11365: 0xC7A4,\n\t11366: 0xC7A5,\n\t11367: 0xC7A6,\n\t11368: 0xC7AC,\n\t11369: 0xC7AD,\n\t11370: 0xC7B0,\n\t11371: 0xC7B4,\n\t11372: 0xC7BC,\n\t11373: 0xC7BD,\n\t11374: 0xC7BF,\n\t11375: 0xC7C0,\n\t11376: 0xC7C1,\n\t11377: 0xC7C8,\n\t11378: 0xC7C9,\n\t11379: 0xC7CC,\n\t11380: 0xC7CE,\n\t11381: 0xC7D0,\n\t11382: 0xC7D8,\n\t11383: 0xC7DD,\n\t11384: 0xC7E4,\n\t11385: 0xC7E8,\n\t11386: 0xC7EC,\n\t11387: 0xC800,\n\t11388: 0xC801,\n\t11389: 0xC804,\n\t11390: 0xC808,\n\t11391: 0xC80A,\n\t11392: 0xD564,\n\t11393: 0xD566,\n\t11394: 0xD567,\n\t11395: 0xD56A,\n\t11396: 0xD56C,\n\t11397: 0xD56E,\n\t11398: 0xD56F,\n\t11399: 0xD570,\n\t11400: 0xD571,\n\t11401: 0xD572,\n\t11402: 0xD573,\n\t11403: 0xD576,\n\t11404: 0xD577,\n\t11405: 0xD579,\n\t11406: 0xD57A,\n\t11407: 0xD57B,\n\t11408: 0xD57D,\n\t11409: 0xD57E,\n\t11410: 0xD57F,\n\t11411: 0xD580,\n\t11412: 0xD581,\n\t11413: 0xD582,\n\t11414: 0xD583,\n\t11415: 0xD586,\n\t11416: 0xD58A,\n\t11417: 0xD58B,\n\t11418: 0xD58C,\n\t11419: 0xD58D,\n\t11420: 0xD58E,\n\t11421: 0xD58F,\n\t11422: 0xD591,\n\t11423: 0xD592,\n\t11424: 0xD593,\n\t11425: 0xD594,\n\t11426: 0xD595,\n\t11427: 0xD596,\n\t11428: 0xD597,\n\t11429: 0xD598,\n\t11430: 0xD599,\n\t11431: 0xD59A,\n\t11432: 0xD59B,\n\t11433: 0xD59C,\n\t11434: 0xD59D,\n\t11435: 0xD59E,\n\t11436: 0xD59F,\n\t11437: 0xD5A0,\n\t11438: 0xD5A1,\n\t11439: 0xD5A2,\n\t11440: 0xD5A3,\n\t11441: 0xD5A4,\n\t11442: 0xD5A6,\n\t11443: 0xD5A7,\n\t11444: 0xD5A8,\n\t11445: 0xD5A9,\n\t11446: 0xD5AA,\n\t11447: 0xD5AB,\n\t11448: 0xD5AC,\n\t11449: 0xD5AD,\n\t11450: 0xD5AE,\n\t11451: 0xD5AF,\n\t11452: 0xD5B0,\n\t11453: 0xD5B1,\n\t11454: 0xD5B2,\n\t11455: 0xD5B3,\n\t11456: 0xD5B4,\n\t11457: 0xD5B5,\n\t11458: 0xD5B6,\n\t11459: 0xD5B7,\n\t11460: 0xD5B8,\n\t11461: 0xD5B9,\n\t11462: 0xD5BA,\n\t11463: 0xD5BB,\n\t11464: 0xD5BC,\n\t11465: 0xD5BD,\n\t11466: 0xD5BE,\n\t11467: 0xD5BF,\n\t11468: 0xD5C0,\n\t11469: 0xD5C1,\n\t11470: 0xD5C2,\n\t11471: 0xD5C3,\n\t11472: 0xD5C4,\n\t11473: 0xD5C5,\n\t11474: 0xD5C6,\n\t11475: 0xD5C7,\n\t11476: 0xC810,\n\t11477: 0xC811,\n\t11478: 0xC813,\n\t11479: 0xC815,\n\t11480: 0xC816,\n\t11481: 0xC81C,\n\t11482: 0xC81D,\n\t11483: 0xC820,\n\t11484: 0xC824,\n\t11485: 0xC82C,\n\t11486: 0xC82D,\n\t11487: 0xC82F,\n\t11488: 0xC831,\n\t11489: 0xC838,\n\t11490: 0xC83C,\n\t11491: 0xC840,\n\t11492: 0xC848,\n\t11493: 0xC849,\n\t11494: 0xC84C,\n\t11495: 0xC84D,\n\t11496: 0xC854,\n\t11497: 0xC870,\n\t11498: 0xC871,\n\t11499: 0xC874,\n\t11500: 0xC878,\n\t11501: 0xC87A,\n\t11502: 0xC880,\n\t11503: 0xC881,\n\t11504: 0xC883,\n\t11505: 0xC885,\n\t11506: 0xC886,\n\t11507: 0xC887,\n\t11508: 0xC88B,\n\t11509: 0xC88C,\n\t11510: 0xC88D,\n\t11511: 0xC894,\n\t11512: 0xC89D,\n\t11513: 0xC89F,\n\t11514: 0xC8A1,\n\t11515: 0xC8A8,\n\t11516: 0xC8BC,\n\t11517: 0xC8BD,\n\t11518: 0xC8C4,\n\t11519: 0xC8C8,\n\t11520: 0xC8CC,\n\t11521: 0xC8D4,\n\t11522: 0xC8D5,\n\t11523: 0xC8D7,\n\t11524: 0xC8D9,\n\t11525: 0xC8E0,\n\t11526: 0xC8E1,\n\t11527: 0xC8E4,\n\t11528: 0xC8F5,\n\t11529: 0xC8FC,\n\t11530: 0xC8FD,\n\t11531: 0xC900,\n\t11532: 0xC904,\n\t11533: 0xC905,\n\t11534: 0xC906,\n\t11535: 0xC90C,\n\t11536: 0xC90D,\n\t11537: 0xC90F,\n\t11538: 0xC911,\n\t11539: 0xC918,\n\t11540: 0xC92C,\n\t11541: 0xC934,\n\t11542: 0xC950,\n\t11543: 0xC951,\n\t11544: 0xC954,\n\t11545: 0xC958,\n\t11546: 0xC960,\n\t11547: 0xC961,\n\t11548: 0xC963,\n\t11549: 0xC96C,\n\t11550: 0xC970,\n\t11551: 0xC974,\n\t11552: 0xC97C,\n\t11553: 0xC988,\n\t11554: 0xC989,\n\t11555: 0xC98C,\n\t11556: 0xC990,\n\t11557: 0xC998,\n\t11558: 0xC999,\n\t11559: 0xC99B,\n\t11560: 0xC99D,\n\t11561: 0xC9C0,\n\t11562: 0xC9C1,\n\t11563: 0xC9C4,\n\t11564: 0xC9C7,\n\t11565: 0xC9C8,\n\t11566: 0xC9CA,\n\t11567: 0xC9D0,\n\t11568: 0xC9D1,\n\t11569: 0xC9D3,\n\t11570: 0xD5CA,\n\t11571: 0xD5CB,\n\t11572: 0xD5CD,\n\t11573: 0xD5CE,\n\t11574: 0xD5CF,\n\t11575: 0xD5D1,\n\t11576: 0xD5D3,\n\t11577: 0xD5D4,\n\t11578: 0xD5D5,\n\t11579: 0xD5D6,\n\t11580: 0xD5D7,\n\t11581: 0xD5DA,\n\t11582: 0xD5DC,\n\t11583: 0xD5DE,\n\t11584: 0xD5DF,\n\t11585: 0xD5E0,\n\t11586: 0xD5E1,\n\t11587: 0xD5E2,\n\t11588: 0xD5E3,\n\t11589: 0xD5E6,\n\t11590: 0xD5E7,\n\t11591: 0xD5E9,\n\t11592: 0xD5EA,\n\t11593: 0xD5EB,\n\t11594: 0xD5ED,\n\t11595: 0xD5EE,\n\t11596: 0xD5EF,\n\t11597: 0xD5F0,\n\t11598: 0xD5F1,\n\t11599: 0xD5F2,\n\t11600: 0xD5F3,\n\t11601: 0xD5F6,\n\t11602: 0xD5F8,\n\t11603: 0xD5FA,\n\t11604: 0xD5FB,\n\t11605: 0xD5FC,\n\t11606: 0xD5FD,\n\t11607: 0xD5FE,\n\t11608: 0xD5FF,\n\t11609: 0xD602,\n\t11610: 0xD603,\n\t11611: 0xD605,\n\t11612: 0xD606,\n\t11613: 0xD607,\n\t11614: 0xD609,\n\t11615: 0xD60A,\n\t11616: 0xD60B,\n\t11617: 0xD60C,\n\t11618: 0xD60D,\n\t11619: 0xD60E,\n\t11620: 0xD60F,\n\t11621: 0xD612,\n\t11622: 0xD616,\n\t11623: 0xD617,\n\t11624: 0xD618,\n\t11625: 0xD619,\n\t11626: 0xD61A,\n\t11627: 0xD61B,\n\t11628: 0xD61D,\n\t11629: 0xD61E,\n\t11630: 0xD61F,\n\t11631: 0xD621,\n\t11632: 0xD622,\n\t11633: 0xD623,\n\t11634: 0xD625,\n\t11635: 0xD626,\n\t11636: 0xD627,\n\t11637: 0xD628,\n\t11638: 0xD629,\n\t11639: 0xD62A,\n\t11640: 0xD62B,\n\t11641: 0xD62C,\n\t11642: 0xD62E,\n\t11643: 0xD62F,\n\t11644: 0xD630,\n\t11645: 0xD631,\n\t11646: 0xD632,\n\t11647: 0xD633,\n\t11648: 0xD634,\n\t11649: 0xD635,\n\t11650: 0xD636,\n\t11651: 0xD637,\n\t11652: 0xD63A,\n\t11653: 0xD63B,\n\t11654: 0xC9D5,\n\t11655: 0xC9D6,\n\t11656: 0xC9D9,\n\t11657: 0xC9DA,\n\t11658: 0xC9DC,\n\t11659: 0xC9DD,\n\t11660: 0xC9E0,\n\t11661: 0xC9E2,\n\t11662: 0xC9E4,\n\t11663: 0xC9E7,\n\t11664: 0xC9EC,\n\t11665: 0xC9ED,\n\t11666: 0xC9EF,\n\t11667: 0xC9F0,\n\t11668: 0xC9F1,\n\t11669: 0xC9F8,\n\t11670: 0xC9F9,\n\t11671: 0xC9FC,\n\t11672: 0xCA00,\n\t11673: 0xCA08,\n\t11674: 0xCA09,\n\t11675: 0xCA0B,\n\t11676: 0xCA0C,\n\t11677: 0xCA0D,\n\t11678: 0xCA14,\n\t11679: 0xCA18,\n\t11680: 0xCA29,\n\t11681: 0xCA4C,\n\t11682: 0xCA4D,\n\t11683: 0xCA50,\n\t11684: 0xCA54,\n\t11685: 0xCA5C,\n\t11686: 0xCA5D,\n\t11687: 0xCA5F,\n\t11688: 0xCA60,\n\t11689: 0xCA61,\n\t11690: 0xCA68,\n\t11691: 0xCA7D,\n\t11692: 0xCA84,\n\t11693: 0xCA98,\n\t11694: 0xCABC,\n\t11695: 0xCABD,\n\t11696: 0xCAC0,\n\t11697: 0xCAC4,\n\t11698: 0xCACC,\n\t11699: 0xCACD,\n\t11700: 0xCACF,\n\t11701: 0xCAD1,\n\t11702: 0xCAD3,\n\t11703: 0xCAD8,\n\t11704: 0xCAD9,\n\t11705: 0xCAE0,\n\t11706: 0xCAEC,\n\t11707: 0xCAF4,\n\t11708: 0xCB08,\n\t11709: 0xCB10,\n\t11710: 0xCB14,\n\t11711: 0xCB18,\n\t11712: 0xCB20,\n\t11713: 0xCB21,\n\t11714: 0xCB41,\n\t11715: 0xCB48,\n\t11716: 0xCB49,\n\t11717: 0xCB4C,\n\t11718: 0xCB50,\n\t11719: 0xCB58,\n\t11720: 0xCB59,\n\t11721: 0xCB5D,\n\t11722: 0xCB64,\n\t11723: 0xCB78,\n\t11724: 0xCB79,\n\t11725: 0xCB9C,\n\t11726: 0xCBB8,\n\t11727: 0xCBD4,\n\t11728: 0xCBE4,\n\t11729: 0xCBE7,\n\t11730: 0xCBE9,\n\t11731: 0xCC0C,\n\t11732: 0xCC0D,\n\t11733: 0xCC10,\n\t11734: 0xCC14,\n\t11735: 0xCC1C,\n\t11736: 0xCC1D,\n\t11737: 0xCC21,\n\t11738: 0xCC22,\n\t11739: 0xCC27,\n\t11740: 0xCC28,\n\t11741: 0xCC29,\n\t11742: 0xCC2C,\n\t11743: 0xCC2E,\n\t11744: 0xCC30,\n\t11745: 0xCC38,\n\t11746: 0xCC39,\n\t11747: 0xCC3B,\n\t11748: 0xD63D,\n\t11749: 0xD63E,\n\t11750: 0xD63F,\n\t11751: 0xD641,\n\t11752: 0xD642,\n\t11753: 0xD643,\n\t11754: 0xD644,\n\t11755: 0xD646,\n\t11756: 0xD647,\n\t11757: 0xD64A,\n\t11758: 0xD64C,\n\t11759: 0xD64E,\n\t11760: 0xD64F,\n\t11761: 0xD650,\n\t11762: 0xD652,\n\t11763: 0xD653,\n\t11764: 0xD656,\n\t11765: 0xD657,\n\t11766: 0xD659,\n\t11767: 0xD65A,\n\t11768: 0xD65B,\n\t11769: 0xD65D,\n\t11770: 0xD65E,\n\t11771: 0xD65F,\n\t11772: 0xD660,\n\t11773: 0xD661,\n\t11774: 0xD662,\n\t11775: 0xD663,\n\t11776: 0xD664,\n\t11777: 0xD665,\n\t11778: 0xD666,\n\t11779: 0xD668,\n\t11780: 0xD66A,\n\t11781: 0xD66B,\n\t11782: 0xD66C,\n\t11783: 0xD66D,\n\t11784: 0xD66E,\n\t11785: 0xD66F,\n\t11786: 0xD672,\n\t11787: 0xD673,\n\t11788: 0xD675,\n\t11789: 0xD676,\n\t11790: 0xD677,\n\t11791: 0xD678,\n\t11792: 0xD679,\n\t11793: 0xD67A,\n\t11794: 0xD67B,\n\t11795: 0xD67C,\n\t11796: 0xD67D,\n\t11797: 0xD67E,\n\t11798: 0xD67F,\n\t11799: 0xD680,\n\t11800: 0xD681,\n\t11801: 0xD682,\n\t11802: 0xD684,\n\t11803: 0xD686,\n\t11804: 0xD687,\n\t11805: 0xD688,\n\t11806: 0xD689,\n\t11807: 0xD68A,\n\t11808: 0xD68B,\n\t11809: 0xD68E,\n\t11810: 0xD68F,\n\t11811: 0xD691,\n\t11812: 0xD692,\n\t11813: 0xD693,\n\t11814: 0xD695,\n\t11815: 0xD696,\n\t11816: 0xD697,\n\t11817: 0xD698,\n\t11818: 0xD699,\n\t11819: 0xD69A,\n\t11820: 0xD69B,\n\t11821: 0xD69C,\n\t11822: 0xD69E,\n\t11823: 0xD6A0,\n\t11824: 0xD6A2,\n\t11825: 0xD6A3,\n\t11826: 0xD6A4,\n\t11827: 0xD6A5,\n\t11828: 0xD6A6,\n\t11829: 0xD6A7,\n\t11830: 0xD6A9,\n\t11831: 0xD6AA,\n\t11832: 0xCC3C,\n\t11833: 0xCC3D,\n\t11834: 0xCC3E,\n\t11835: 0xCC44,\n\t11836: 0xCC45,\n\t11837: 0xCC48,\n\t11838: 0xCC4C,\n\t11839: 0xCC54,\n\t11840: 0xCC55,\n\t11841: 0xCC57,\n\t11842: 0xCC58,\n\t11843: 0xCC59,\n\t11844: 0xCC60,\n\t11845: 0xCC64,\n\t11846: 0xCC66,\n\t11847: 0xCC68,\n\t11848: 0xCC70,\n\t11849: 0xCC75,\n\t11850: 0xCC98,\n\t11851: 0xCC99,\n\t11852: 0xCC9C,\n\t11853: 0xCCA0,\n\t11854: 0xCCA8,\n\t11855: 0xCCA9,\n\t11856: 0xCCAB,\n\t11857: 0xCCAC,\n\t11858: 0xCCAD,\n\t11859: 0xCCB4,\n\t11860: 0xCCB5,\n\t11861: 0xCCB8,\n\t11862: 0xCCBC,\n\t11863: 0xCCC4,\n\t11864: 0xCCC5,\n\t11865: 0xCCC7,\n\t11866: 0xCCC9,\n\t11867: 0xCCD0,\n\t11868: 0xCCD4,\n\t11869: 0xCCE4,\n\t11870: 0xCCEC,\n\t11871: 0xCCF0,\n\t11872: 0xCD01,\n\t11873: 0xCD08,\n\t11874: 0xCD09,\n\t11875: 0xCD0C,\n\t11876: 0xCD10,\n\t11877: 0xCD18,\n\t11878: 0xCD19,\n\t11879: 0xCD1B,\n\t11880: 0xCD1D,\n\t11881: 0xCD24,\n\t11882: 0xCD28,\n\t11883: 0xCD2C,\n\t11884: 0xCD39,\n\t11885: 0xCD5C,\n\t11886: 0xCD60,\n\t11887: 0xCD64,\n\t11888: 0xCD6C,\n\t11889: 0xCD6D,\n\t11890: 0xCD6F,\n\t11891: 0xCD71,\n\t11892: 0xCD78,\n\t11893: 0xCD88,\n\t11894: 0xCD94,\n\t11895: 0xCD95,\n\t11896: 0xCD98,\n\t11897: 0xCD9C,\n\t11898: 0xCDA4,\n\t11899: 0xCDA5,\n\t11900: 0xCDA7,\n\t11901: 0xCDA9,\n\t11902: 0xCDB0,\n\t11903: 0xCDC4,\n\t11904: 0xCDCC,\n\t11905: 0xCDD0,\n\t11906: 0xCDE8,\n\t11907: 0xCDEC,\n\t11908: 0xCDF0,\n\t11909: 0xCDF8,\n\t11910: 0xCDF9,\n\t11911: 0xCDFB,\n\t11912: 0xCDFD,\n\t11913: 0xCE04,\n\t11914: 0xCE08,\n\t11915: 0xCE0C,\n\t11916: 0xCE14,\n\t11917: 0xCE19,\n\t11918: 0xCE20,\n\t11919: 0xCE21,\n\t11920: 0xCE24,\n\t11921: 0xCE28,\n\t11922: 0xCE30,\n\t11923: 0xCE31,\n\t11924: 0xCE33,\n\t11925: 0xCE35,\n\t11926: 0xD6AB,\n\t11927: 0xD6AD,\n\t11928: 0xD6AE,\n\t11929: 0xD6AF,\n\t11930: 0xD6B1,\n\t11931: 0xD6B2,\n\t11932: 0xD6B3,\n\t11933: 0xD6B4,\n\t11934: 0xD6B5,\n\t11935: 0xD6B6,\n\t11936: 0xD6B7,\n\t11937: 0xD6B8,\n\t11938: 0xD6BA,\n\t11939: 0xD6BC,\n\t11940: 0xD6BD,\n\t11941: 0xD6BE,\n\t11942: 0xD6BF,\n\t11943: 0xD6C0,\n\t11944: 0xD6C1,\n\t11945: 0xD6C2,\n\t11946: 0xD6C3,\n\t11947: 0xD6C6,\n\t11948: 0xD6C7,\n\t11949: 0xD6C9,\n\t11950: 0xD6CA,\n\t11951: 0xD6CB,\n\t11952: 0xD6CD,\n\t11953: 0xD6CE,\n\t11954: 0xD6CF,\n\t11955: 0xD6D0,\n\t11956: 0xD6D2,\n\t11957: 0xD6D3,\n\t11958: 0xD6D5,\n\t11959: 0xD6D6,\n\t11960: 0xD6D8,\n\t11961: 0xD6DA,\n\t11962: 0xD6DB,\n\t11963: 0xD6DC,\n\t11964: 0xD6DD,\n\t11965: 0xD6DE,\n\t11966: 0xD6DF,\n\t11967: 0xD6E1,\n\t11968: 0xD6E2,\n\t11969: 0xD6E3,\n\t11970: 0xD6E5,\n\t11971: 0xD6E6,\n\t11972: 0xD6E7,\n\t11973: 0xD6E9,\n\t11974: 0xD6EA,\n\t11975: 0xD6EB,\n\t11976: 0xD6EC,\n\t11977: 0xD6ED,\n\t11978: 0xD6EE,\n\t11979: 0xD6EF,\n\t11980: 0xD6F1,\n\t11981: 0xD6F2,\n\t11982: 0xD6F3,\n\t11983: 0xD6F4,\n\t11984: 0xD6F6,\n\t11985: 0xD6F7,\n\t11986: 0xD6F8,\n\t11987: 0xD6F9,\n\t11988: 0xD6FA,\n\t11989: 0xD6FB,\n\t11990: 0xD6FE,\n\t11991: 0xD6FF,\n\t11992: 0xD701,\n\t11993: 0xD702,\n\t11994: 0xD703,\n\t11995: 0xD705,\n\t11996: 0xD706,\n\t11997: 0xD707,\n\t11998: 0xD708,\n\t11999: 0xD709,\n\t12000: 0xD70A,\n\t12001: 0xD70B,\n\t12002: 0xD70C,\n\t12003: 0xD70D,\n\t12004: 0xD70E,\n\t12005: 0xD70F,\n\t12006: 0xD710,\n\t12007: 0xD712,\n\t12008: 0xD713,\n\t12009: 0xD714,\n\t12010: 0xCE58,\n\t12011: 0xCE59,\n\t12012: 0xCE5C,\n\t12013: 0xCE5F,\n\t12014: 0xCE60,\n\t12015: 0xCE61,\n\t12016: 0xCE68,\n\t12017: 0xCE69,\n\t12018: 0xCE6B,\n\t12019: 0xCE6D,\n\t12020: 0xCE74,\n\t12021: 0xCE75,\n\t12022: 0xCE78,\n\t12023: 0xCE7C,\n\t12024: 0xCE84,\n\t12025: 0xCE85,\n\t12026: 0xCE87,\n\t12027: 0xCE89,\n\t12028: 0xCE90,\n\t12029: 0xCE91,\n\t12030: 0xCE94,\n\t12031: 0xCE98,\n\t12032: 0xCEA0,\n\t12033: 0xCEA1,\n\t12034: 0xCEA3,\n\t12035: 0xCEA4,\n\t12036: 0xCEA5,\n\t12037: 0xCEAC,\n\t12038: 0xCEAD,\n\t12039: 0xCEC1,\n\t12040: 0xCEE4,\n\t12041: 0xCEE5,\n\t12042: 0xCEE8,\n\t12043: 0xCEEB,\n\t12044: 0xCEEC,\n\t12045: 0xCEF4,\n\t12046: 0xCEF5,\n\t12047: 0xCEF7,\n\t12048: 0xCEF8,\n\t12049: 0xCEF9,\n\t12050: 0xCF00,\n\t12051: 0xCF01,\n\t12052: 0xCF04,\n\t12053: 0xCF08,\n\t12054: 0xCF10,\n\t12055: 0xCF11,\n\t12056: 0xCF13,\n\t12057: 0xCF15,\n\t12058: 0xCF1C,\n\t12059: 0xCF20,\n\t12060: 0xCF24,\n\t12061: 0xCF2C,\n\t12062: 0xCF2D,\n\t12063: 0xCF2F,\n\t12064: 0xCF30,\n\t12065: 0xCF31,\n\t12066: 0xCF38,\n\t12067: 0xCF54,\n\t12068: 0xCF55,\n\t12069: 0xCF58,\n\t12070: 0xCF5C,\n\t12071: 0xCF64,\n\t12072: 0xCF65,\n\t12073: 0xCF67,\n\t12074: 0xCF69,\n\t12075: 0xCF70,\n\t12076: 0xCF71,\n\t12077: 0xCF74,\n\t12078: 0xCF78,\n\t12079: 0xCF80,\n\t12080: 0xCF85,\n\t12081: 0xCF8C,\n\t12082: 0xCFA1,\n\t12083: 0xCFA8,\n\t12084: 0xCFB0,\n\t12085: 0xCFC4,\n\t12086: 0xCFE0,\n\t12087: 0xCFE1,\n\t12088: 0xCFE4,\n\t12089: 0xCFE8,\n\t12090: 0xCFF0,\n\t12091: 0xCFF1,\n\t12092: 0xCFF3,\n\t12093: 0xCFF5,\n\t12094: 0xCFFC,\n\t12095: 0xD000,\n\t12096: 0xD004,\n\t12097: 0xD011,\n\t12098: 0xD018,\n\t12099: 0xD02D,\n\t12100: 0xD034,\n\t12101: 0xD035,\n\t12102: 0xD038,\n\t12103: 0xD03C,\n\t12104: 0xD715,\n\t12105: 0xD716,\n\t12106: 0xD717,\n\t12107: 0xD71A,\n\t12108: 0xD71B,\n\t12109: 0xD71D,\n\t12110: 0xD71E,\n\t12111: 0xD71F,\n\t12112: 0xD721,\n\t12113: 0xD722,\n\t12114: 0xD723,\n\t12115: 0xD724,\n\t12116: 0xD725,\n\t12117: 0xD726,\n\t12118: 0xD727,\n\t12119: 0xD72A,\n\t12120: 0xD72C,\n\t12121: 0xD72E,\n\t12122: 0xD72F,\n\t12123: 0xD730,\n\t12124: 0xD731,\n\t12125: 0xD732,\n\t12126: 0xD733,\n\t12127: 0xD736,\n\t12128: 0xD737,\n\t12129: 0xD739,\n\t12130: 0xD73A,\n\t12131: 0xD73B,\n\t12132: 0xD73D,\n\t12133: 0xD73E,\n\t12134: 0xD73F,\n\t12135: 0xD740,\n\t12136: 0xD741,\n\t12137: 0xD742,\n\t12138: 0xD743,\n\t12139: 0xD745,\n\t12140: 0xD746,\n\t12141: 0xD748,\n\t12142: 0xD74A,\n\t12143: 0xD74B,\n\t12144: 0xD74C,\n\t12145: 0xD74D,\n\t12146: 0xD74E,\n\t12147: 0xD74F,\n\t12148: 0xD752,\n\t12149: 0xD753,\n\t12150: 0xD755,\n\t12151: 0xD75A,\n\t12152: 0xD75B,\n\t12153: 0xD75C,\n\t12154: 0xD75D,\n\t12155: 0xD75E,\n\t12156: 0xD75F,\n\t12157: 0xD762,\n\t12158: 0xD764,\n\t12159: 0xD766,\n\t12160: 0xD767,\n\t12161: 0xD768,\n\t12162: 0xD76A,\n\t12163: 0xD76B,\n\t12164: 0xD76D,\n\t12165: 0xD76E,\n\t12166: 0xD76F,\n\t12167: 0xD771,\n\t12168: 0xD772,\n\t12169: 0xD773,\n\t12170: 0xD775,\n\t12171: 0xD776,\n\t12172: 0xD777,\n\t12173: 0xD778,\n\t12174: 0xD779,\n\t12175: 0xD77A,\n\t12176: 0xD77B,\n\t12177: 0xD77E,\n\t12178: 0xD77F,\n\t12179: 0xD780,\n\t12180: 0xD782,\n\t12181: 0xD783,\n\t12182: 0xD784,\n\t12183: 0xD785,\n\t12184: 0xD786,\n\t12185: 0xD787,\n\t12186: 0xD78A,\n\t12187: 0xD78B,\n\t12188: 0xD044,\n\t12189: 0xD045,\n\t12190: 0xD047,\n\t12191: 0xD049,\n\t12192: 0xD050,\n\t12193: 0xD054,\n\t12194: 0xD058,\n\t12195: 0xD060,\n\t12196: 0xD06C,\n\t12197: 0xD06D,\n\t12198: 0xD070,\n\t12199: 0xD074,\n\t12200: 0xD07C,\n\t12201: 0xD07D,\n\t12202: 0xD081,\n\t12203: 0xD0A4,\n\t12204: 0xD0A5,\n\t12205: 0xD0A8,\n\t12206: 0xD0AC,\n\t12207: 0xD0B4,\n\t12208: 0xD0B5,\n\t12209: 0xD0B7,\n\t12210: 0xD0B9,\n\t12211: 0xD0C0,\n\t12212: 0xD0C1,\n\t12213: 0xD0C4,\n\t12214: 0xD0C8,\n\t12215: 0xD0C9,\n\t12216: 0xD0D0,\n\t12217: 0xD0D1,\n\t12218: 0xD0D3,\n\t12219: 0xD0D4,\n\t12220: 0xD0D5,\n\t12221: 0xD0DC,\n\t12222: 0xD0DD,\n\t12223: 0xD0E0,\n\t12224: 0xD0E4,\n\t12225: 0xD0EC,\n\t12226: 0xD0ED,\n\t12227: 0xD0EF,\n\t12228: 0xD0F0,\n\t12229: 0xD0F1,\n\t12230: 0xD0F8,\n\t12231: 0xD10D,\n\t12232: 0xD130,\n\t12233: 0xD131,\n\t12234: 0xD134,\n\t12235: 0xD138,\n\t12236: 0xD13A,\n\t12237: 0xD140,\n\t12238: 0xD141,\n\t12239: 0xD143,\n\t12240: 0xD144,\n\t12241: 0xD145,\n\t12242: 0xD14C,\n\t12243: 0xD14D,\n\t12244: 0xD150,\n\t12245: 0xD154,\n\t12246: 0xD15C,\n\t12247: 0xD15D,\n\t12248: 0xD15F,\n\t12249: 0xD161,\n\t12250: 0xD168,\n\t12251: 0xD16C,\n\t12252: 0xD17C,\n\t12253: 0xD184,\n\t12254: 0xD188,\n\t12255: 0xD1A0,\n\t12256: 0xD1A1,\n\t12257: 0xD1A4,\n\t12258: 0xD1A8,\n\t12259: 0xD1B0,\n\t12260: 0xD1B1,\n\t12261: 0xD1B3,\n\t12262: 0xD1B5,\n\t12263: 0xD1BA,\n\t12264: 0xD1BC,\n\t12265: 0xD1C0,\n\t12266: 0xD1D8,\n\t12267: 0xD1F4,\n\t12268: 0xD1F8,\n\t12269: 0xD207,\n\t12270: 0xD209,\n\t12271: 0xD210,\n\t12272: 0xD22C,\n\t12273: 0xD22D,\n\t12274: 0xD230,\n\t12275: 0xD234,\n\t12276: 0xD23C,\n\t12277: 0xD23D,\n\t12278: 0xD23F,\n\t12279: 0xD241,\n\t12280: 0xD248,\n\t12281: 0xD25C,\n\t12282: 0xD78D,\n\t12283: 0xD78E,\n\t12284: 0xD78F,\n\t12285: 0xD791,\n\t12286: 0xD792,\n\t12287: 0xD793,\n\t12288: 0xD794,\n\t12289: 0xD795,\n\t12290: 0xD796,\n\t12291: 0xD797,\n\t12292: 0xD79A,\n\t12293: 0xD79C,\n\t12294: 0xD79E,\n\t12295: 0xD79F,\n\t12296: 0xD7A0,\n\t12297: 0xD7A1,\n\t12298: 0xD7A2,\n\t12299: 0xD7A3,\n\t12366: 0xD264,\n\t12367: 0xD280,\n\t12368: 0xD281,\n\t12369: 0xD284,\n\t12370: 0xD288,\n\t12371: 0xD290,\n\t12372: 0xD291,\n\t12373: 0xD295,\n\t12374: 0xD29C,\n\t12375: 0xD2A0,\n\t12376: 0xD2A4,\n\t12377: 0xD2AC,\n\t12378: 0xD2B1,\n\t12379: 0xD2B8,\n\t12380: 0xD2B9,\n\t12381: 0xD2BC,\n\t12382: 0xD2BF,\n\t12383: 0xD2C0,\n\t12384: 0xD2C2,\n\t12385: 0xD2C8,\n\t12386: 0xD2C9,\n\t12387: 0xD2CB,\n\t12388: 0xD2D4,\n\t12389: 0xD2D8,\n\t12390: 0xD2DC,\n\t12391: 0xD2E4,\n\t12392: 0xD2E5,\n\t12393: 0xD2F0,\n\t12394: 0xD2F1,\n\t12395: 0xD2F4,\n\t12396: 0xD2F8,\n\t12397: 0xD300,\n\t12398: 0xD301,\n\t12399: 0xD303,\n\t12400: 0xD305,\n\t12401: 0xD30C,\n\t12402: 0xD30D,\n\t12403: 0xD30E,\n\t12404: 0xD310,\n\t12405: 0xD314,\n\t12406: 0xD316,\n\t12407: 0xD31C,\n\t12408: 0xD31D,\n\t12409: 0xD31F,\n\t12410: 0xD320,\n\t12411: 0xD321,\n\t12412: 0xD325,\n\t12413: 0xD328,\n\t12414: 0xD329,\n\t12415: 0xD32C,\n\t12416: 0xD330,\n\t12417: 0xD338,\n\t12418: 0xD339,\n\t12419: 0xD33B,\n\t12420: 0xD33C,\n\t12421: 0xD33D,\n\t12422: 0xD344,\n\t12423: 0xD345,\n\t12424: 0xD37C,\n\t12425: 0xD37D,\n\t12426: 0xD380,\n\t12427: 0xD384,\n\t12428: 0xD38C,\n\t12429: 0xD38D,\n\t12430: 0xD38F,\n\t12431: 0xD390,\n\t12432: 0xD391,\n\t12433: 0xD398,\n\t12434: 0xD399,\n\t12435: 0xD39C,\n\t12436: 0xD3A0,\n\t12437: 0xD3A8,\n\t12438: 0xD3A9,\n\t12439: 0xD3AB,\n\t12440: 0xD3AD,\n\t12441: 0xD3B4,\n\t12442: 0xD3B8,\n\t12443: 0xD3BC,\n\t12444: 0xD3C4,\n\t12445: 0xD3C5,\n\t12446: 0xD3C8,\n\t12447: 0xD3C9,\n\t12448: 0xD3D0,\n\t12449: 0xD3D8,\n\t12450: 0xD3E1,\n\t12451: 0xD3E3,\n\t12452: 0xD3EC,\n\t12453: 0xD3ED,\n\t12454: 0xD3F0,\n\t12455: 0xD3F4,\n\t12456: 0xD3FC,\n\t12457: 0xD3FD,\n\t12458: 0xD3FF,\n\t12459: 0xD401,\n\t12460: 0xD408,\n\t12461: 0xD41D,\n\t12462: 0xD440,\n\t12463: 0xD444,\n\t12464: 0xD45C,\n\t12465: 0xD460,\n\t12466: 0xD464,\n\t12467: 0xD46D,\n\t12468: 0xD46F,\n\t12469: 0xD478,\n\t12470: 0xD479,\n\t12471: 0xD47C,\n\t12472: 0xD47F,\n\t12473: 0xD480,\n\t12474: 0xD482,\n\t12475: 0xD488,\n\t12476: 0xD489,\n\t12477: 0xD48B,\n\t12478: 0xD48D,\n\t12479: 0xD494,\n\t12480: 0xD4A9,\n\t12481: 0xD4CC,\n\t12482: 0xD4D0,\n\t12483: 0xD4D4,\n\t12484: 0xD4DC,\n\t12485: 0xD4DF,\n\t12486: 0xD4E8,\n\t12487: 0xD4EC,\n\t12488: 0xD4F0,\n\t12489: 0xD4F8,\n\t12490: 0xD4FB,\n\t12491: 0xD4FD,\n\t12492: 0xD504,\n\t12493: 0xD508,\n\t12494: 0xD50C,\n\t12495: 0xD514,\n\t12496: 0xD515,\n\t12497: 0xD517,\n\t12498: 0xD53C,\n\t12499: 0xD53D,\n\t12500: 0xD540,\n\t12501: 0xD544,\n\t12502: 0xD54C,\n\t12503: 0xD54D,\n\t12504: 0xD54F,\n\t12505: 0xD551,\n\t12506: 0xD558,\n\t12507: 0xD559,\n\t12508: 0xD55C,\n\t12509: 0xD560,\n\t12510: 0xD565,\n\t12511: 0xD568,\n\t12512: 0xD569,\n\t12513: 0xD56B,\n\t12514: 0xD56D,\n\t12515: 0xD574,\n\t12516: 0xD575,\n\t12517: 0xD578,\n\t12518: 0xD57C,\n\t12519: 0xD584,\n\t12520: 0xD585,\n\t12521: 0xD587,\n\t12522: 0xD588,\n\t12523: 0xD589,\n\t12524: 0xD590,\n\t12525: 0xD5A5,\n\t12526: 0xD5C8,\n\t12527: 0xD5C9,\n\t12528: 0xD5CC,\n\t12529: 0xD5D0,\n\t12530: 0xD5D2,\n\t12531: 0xD5D8,\n\t12532: 0xD5D9,\n\t12533: 0xD5DB,\n\t12534: 0xD5DD,\n\t12535: 0xD5E4,\n\t12536: 0xD5E5,\n\t12537: 0xD5E8,\n\t12538: 0xD5EC,\n\t12539: 0xD5F4,\n\t12540: 0xD5F5,\n\t12541: 0xD5F7,\n\t12542: 0xD5F9,\n\t12543: 0xD600,\n\t12544: 0xD601,\n\t12545: 0xD604,\n\t12546: 0xD608,\n\t12547: 0xD610,\n\t12548: 0xD611,\n\t12549: 0xD613,\n\t12550: 0xD614,\n\t12551: 0xD615,\n\t12552: 0xD61C,\n\t12553: 0xD620,\n\t12554: 0xD624,\n\t12555: 0xD62D,\n\t12556: 0xD638,\n\t12557: 0xD639,\n\t12558: 0xD63C,\n\t12559: 0xD640,\n\t12560: 0xD645,\n\t12561: 0xD648,\n\t12562: 0xD649,\n\t12563: 0xD64B,\n\t12564: 0xD64D,\n\t12565: 0xD651,\n\t12566: 0xD654,\n\t12567: 0xD655,\n\t12568: 0xD658,\n\t12569: 0xD65C,\n\t12570: 0xD667,\n\t12571: 0xD669,\n\t12572: 0xD670,\n\t12573: 0xD671,\n\t12574: 0xD674,\n\t12575: 0xD683,\n\t12576: 0xD685,\n\t12577: 0xD68C,\n\t12578: 0xD68D,\n\t12579: 0xD690,\n\t12580: 0xD694,\n\t12581: 0xD69D,\n\t12582: 0xD69F,\n\t12583: 0xD6A1,\n\t12584: 0xD6A8,\n\t12585: 0xD6AC,\n\t12586: 0xD6B0,\n\t12587: 0xD6B9,\n\t12588: 0xD6BB,\n\t12589: 0xD6C4,\n\t12590: 0xD6C5,\n\t12591: 0xD6C8,\n\t12592: 0xD6CC,\n\t12593: 0xD6D1,\n\t12594: 0xD6D4,\n\t12595: 0xD6D7,\n\t12596: 0xD6D9,\n\t12597: 0xD6E0,\n\t12598: 0xD6E4,\n\t12599: 0xD6E8,\n\t12600: 0xD6F0,\n\t12601: 0xD6F5,\n\t12602: 0xD6FC,\n\t12603: 0xD6FD,\n\t12604: 0xD700,\n\t12605: 0xD704,\n\t12606: 0xD711,\n\t12607: 0xD718,\n\t12608: 0xD719,\n\t12609: 0xD71C,\n\t12610: 0xD720,\n\t12611: 0xD728,\n\t12612: 0xD729,\n\t12613: 0xD72B,\n\t12614: 0xD72D,\n\t12615: 0xD734,\n\t12616: 0xD735,\n\t12617: 0xD738,\n\t12618: 0xD73C,\n\t12619: 0xD744,\n\t12620: 0xD747,\n\t12621: 0xD749,\n\t12622: 0xD750,\n\t12623: 0xD751,\n\t12624: 0xD754,\n\t12625: 0xD756,\n\t12626: 0xD757,\n\t12627: 0xD758,\n\t12628: 0xD759,\n\t12629: 0xD760,\n\t12630: 0xD761,\n\t12631: 0xD763,\n\t12632: 0xD765,\n\t12633: 0xD769,\n\t12634: 0xD76C,\n\t12635: 0xD770,\n\t12636: 0xD774,\n\t12637: 0xD77C,\n\t12638: 0xD77D,\n\t12639: 0xD781,\n\t12640: 0xD788,\n\t12641: 0xD789,\n\t12642: 0xD78C,\n\t12643: 0xD790,\n\t12644: 0xD798,\n\t12645: 0xD799,\n\t12646: 0xD79B,\n\t12647: 0xD79D,\n\t12742: 0x4F3D,\n\t12743: 0x4F73,\n\t12744: 0x5047,\n\t12745: 0x50F9,\n\t12746: 0x52A0,\n\t12747: 0x53EF,\n\t12748: 0x5475,\n\t12749: 0x54E5,\n\t12750: 0x5609,\n\t12751: 0x5AC1,\n\t12752: 0x5BB6,\n\t12753: 0x6687,\n\t12754: 0x67B6,\n\t12755: 0x67B7,\n\t12756: 0x67EF,\n\t12757: 0x6B4C,\n\t12758: 0x73C2,\n\t12759: 0x75C2,\n\t12760: 0x7A3C,\n\t12761: 0x82DB,\n\t12762: 0x8304,\n\t12763: 0x8857,\n\t12764: 0x8888,\n\t12765: 0x8A36,\n\t12766: 0x8CC8,\n\t12767: 0x8DCF,\n\t12768: 0x8EFB,\n\t12769: 0x8FE6,\n\t12770: 0x99D5,\n\t12771: 0x523B,\n\t12772: 0x5374,\n\t12773: 0x5404,\n\t12774: 0x606A,\n\t12775: 0x6164,\n\t12776: 0x6BBC,\n\t12777: 0x73CF,\n\t12778: 0x811A,\n\t12779: 0x89BA,\n\t12780: 0x89D2,\n\t12781: 0x95A3,\n\t12782: 0x4F83,\n\t12783: 0x520A,\n\t12784: 0x58BE,\n\t12785: 0x5978,\n\t12786: 0x59E6,\n\t12787: 0x5E72,\n\t12788: 0x5E79,\n\t12789: 0x61C7,\n\t12790: 0x63C0,\n\t12791: 0x6746,\n\t12792: 0x67EC,\n\t12793: 0x687F,\n\t12794: 0x6F97,\n\t12795: 0x764E,\n\t12796: 0x770B,\n\t12797: 0x78F5,\n\t12798: 0x7A08,\n\t12799: 0x7AFF,\n\t12800: 0x7C21,\n\t12801: 0x809D,\n\t12802: 0x826E,\n\t12803: 0x8271,\n\t12804: 0x8AEB,\n\t12805: 0x9593,\n\t12806: 0x4E6B,\n\t12807: 0x559D,\n\t12808: 0x66F7,\n\t12809: 0x6E34,\n\t12810: 0x78A3,\n\t12811: 0x7AED,\n\t12812: 0x845B,\n\t12813: 0x8910,\n\t12814: 0x874E,\n\t12815: 0x97A8,\n\t12816: 0x52D8,\n\t12817: 0x574E,\n\t12818: 0x582A,\n\t12819: 0x5D4C,\n\t12820: 0x611F,\n\t12821: 0x61BE,\n\t12822: 0x6221,\n\t12823: 0x6562,\n\t12824: 0x67D1,\n\t12825: 0x6A44,\n\t12826: 0x6E1B,\n\t12827: 0x7518,\n\t12828: 0x75B3,\n\t12829: 0x76E3,\n\t12830: 0x77B0,\n\t12831: 0x7D3A,\n\t12832: 0x90AF,\n\t12833: 0x9451,\n\t12834: 0x9452,\n\t12835: 0x9F95,\n\t12836: 0x5323,\n\t12837: 0x5CAC,\n\t12838: 0x7532,\n\t12839: 0x80DB,\n\t12840: 0x9240,\n\t12841: 0x9598,\n\t12842: 0x525B,\n\t12843: 0x5808,\n\t12844: 0x59DC,\n\t12845: 0x5CA1,\n\t12846: 0x5D17,\n\t12847: 0x5EB7,\n\t12848: 0x5F3A,\n\t12849: 0x5F4A,\n\t12850: 0x6177,\n\t12851: 0x6C5F,\n\t12852: 0x757A,\n\t12853: 0x7586,\n\t12854: 0x7CE0,\n\t12855: 0x7D73,\n\t12856: 0x7DB1,\n\t12857: 0x7F8C,\n\t12858: 0x8154,\n\t12859: 0x8221,\n\t12860: 0x8591,\n\t12861: 0x8941,\n\t12862: 0x8B1B,\n\t12863: 0x92FC,\n\t12864: 0x964D,\n\t12865: 0x9C47,\n\t12866: 0x4ECB,\n\t12867: 0x4EF7,\n\t12868: 0x500B,\n\t12869: 0x51F1,\n\t12870: 0x584F,\n\t12871: 0x6137,\n\t12872: 0x613E,\n\t12873: 0x6168,\n\t12874: 0x6539,\n\t12875: 0x69EA,\n\t12876: 0x6F11,\n\t12877: 0x75A5,\n\t12878: 0x7686,\n\t12879: 0x76D6,\n\t12880: 0x7B87,\n\t12881: 0x82A5,\n\t12882: 0x84CB,\n\t12883: 0xF900,\n\t12884: 0x93A7,\n\t12885: 0x958B,\n\t12886: 0x5580,\n\t12887: 0x5BA2,\n\t12888: 0x5751,\n\t12889: 0xF901,\n\t12890: 0x7CB3,\n\t12891: 0x7FB9,\n\t12892: 0x91B5,\n\t12893: 0x5028,\n\t12894: 0x53BB,\n\t12895: 0x5C45,\n\t12896: 0x5DE8,\n\t12897: 0x62D2,\n\t12898: 0x636E,\n\t12899: 0x64DA,\n\t12900: 0x64E7,\n\t12901: 0x6E20,\n\t12902: 0x70AC,\n\t12903: 0x795B,\n\t12904: 0x8DDD,\n\t12905: 0x8E1E,\n\t12906: 0xF902,\n\t12907: 0x907D,\n\t12908: 0x9245,\n\t12909: 0x92F8,\n\t12910: 0x4E7E,\n\t12911: 0x4EF6,\n\t12912: 0x5065,\n\t12913: 0x5DFE,\n\t12914: 0x5EFA,\n\t12915: 0x6106,\n\t12916: 0x6957,\n\t12917: 0x8171,\n\t12918: 0x8654,\n\t12919: 0x8E47,\n\t12920: 0x9375,\n\t12921: 0x9A2B,\n\t12922: 0x4E5E,\n\t12923: 0x5091,\n\t12924: 0x6770,\n\t12925: 0x6840,\n\t12926: 0x5109,\n\t12927: 0x528D,\n\t12928: 0x5292,\n\t12929: 0x6AA2,\n\t12930: 0x77BC,\n\t12931: 0x9210,\n\t12932: 0x9ED4,\n\t12933: 0x52AB,\n\t12934: 0x602F,\n\t12935: 0x8FF2,\n\t12936: 0x5048,\n\t12937: 0x61A9,\n\t12938: 0x63ED,\n\t12939: 0x64CA,\n\t12940: 0x683C,\n\t12941: 0x6A84,\n\t12942: 0x6FC0,\n\t12943: 0x8188,\n\t12944: 0x89A1,\n\t12945: 0x9694,\n\t12946: 0x5805,\n\t12947: 0x727D,\n\t12948: 0x72AC,\n\t12949: 0x7504,\n\t12950: 0x7D79,\n\t12951: 0x7E6D,\n\t12952: 0x80A9,\n\t12953: 0x898B,\n\t12954: 0x8B74,\n\t12955: 0x9063,\n\t12956: 0x9D51,\n\t12957: 0x6289,\n\t12958: 0x6C7A,\n\t12959: 0x6F54,\n\t12960: 0x7D50,\n\t12961: 0x7F3A,\n\t12962: 0x8A23,\n\t12963: 0x517C,\n\t12964: 0x614A,\n\t12965: 0x7B9D,\n\t12966: 0x8B19,\n\t12967: 0x9257,\n\t12968: 0x938C,\n\t12969: 0x4EAC,\n\t12970: 0x4FD3,\n\t12971: 0x501E,\n\t12972: 0x50BE,\n\t12973: 0x5106,\n\t12974: 0x52C1,\n\t12975: 0x52CD,\n\t12976: 0x537F,\n\t12977: 0x5770,\n\t12978: 0x5883,\n\t12979: 0x5E9A,\n\t12980: 0x5F91,\n\t12981: 0x6176,\n\t12982: 0x61AC,\n\t12983: 0x64CE,\n\t12984: 0x656C,\n\t12985: 0x666F,\n\t12986: 0x66BB,\n\t12987: 0x66F4,\n\t12988: 0x6897,\n\t12989: 0x6D87,\n\t12990: 0x7085,\n\t12991: 0x70F1,\n\t12992: 0x749F,\n\t12993: 0x74A5,\n\t12994: 0x74CA,\n\t12995: 0x75D9,\n\t12996: 0x786C,\n\t12997: 0x78EC,\n\t12998: 0x7ADF,\n\t12999: 0x7AF6,\n\t13000: 0x7D45,\n\t13001: 0x7D93,\n\t13002: 0x8015,\n\t13003: 0x803F,\n\t13004: 0x811B,\n\t13005: 0x8396,\n\t13006: 0x8B66,\n\t13007: 0x8F15,\n\t13008: 0x9015,\n\t13009: 0x93E1,\n\t13010: 0x9803,\n\t13011: 0x9838,\n\t13012: 0x9A5A,\n\t13013: 0x9BE8,\n\t13014: 0x4FC2,\n\t13015: 0x5553,\n\t13016: 0x583A,\n\t13017: 0x5951,\n\t13018: 0x5B63,\n\t13019: 0x5C46,\n\t13020: 0x60B8,\n\t13021: 0x6212,\n\t13022: 0x6842,\n\t13023: 0x68B0,\n\t13024: 0x68E8,\n\t13025: 0x6EAA,\n\t13026: 0x754C,\n\t13027: 0x7678,\n\t13028: 0x78CE,\n\t13029: 0x7A3D,\n\t13030: 0x7CFB,\n\t13031: 0x7E6B,\n\t13032: 0x7E7C,\n\t13033: 0x8A08,\n\t13034: 0x8AA1,\n\t13035: 0x8C3F,\n\t13036: 0x968E,\n\t13037: 0x9DC4,\n\t13038: 0x53E4,\n\t13039: 0x53E9,\n\t13040: 0x544A,\n\t13041: 0x5471,\n\t13042: 0x56FA,\n\t13043: 0x59D1,\n\t13044: 0x5B64,\n\t13045: 0x5C3B,\n\t13046: 0x5EAB,\n\t13047: 0x62F7,\n\t13048: 0x6537,\n\t13049: 0x6545,\n\t13050: 0x6572,\n\t13051: 0x66A0,\n\t13052: 0x67AF,\n\t13053: 0x69C1,\n\t13054: 0x6CBD,\n\t13055: 0x75FC,\n\t13056: 0x7690,\n\t13057: 0x777E,\n\t13058: 0x7A3F,\n\t13059: 0x7F94,\n\t13060: 0x8003,\n\t13061: 0x80A1,\n\t13062: 0x818F,\n\t13063: 0x82E6,\n\t13064: 0x82FD,\n\t13065: 0x83F0,\n\t13066: 0x85C1,\n\t13067: 0x8831,\n\t13068: 0x88B4,\n\t13069: 0x8AA5,\n\t13070: 0xF903,\n\t13071: 0x8F9C,\n\t13072: 0x932E,\n\t13073: 0x96C7,\n\t13074: 0x9867,\n\t13075: 0x9AD8,\n\t13076: 0x9F13,\n\t13077: 0x54ED,\n\t13078: 0x659B,\n\t13079: 0x66F2,\n\t13080: 0x688F,\n\t13081: 0x7A40,\n\t13082: 0x8C37,\n\t13083: 0x9D60,\n\t13084: 0x56F0,\n\t13085: 0x5764,\n\t13086: 0x5D11,\n\t13087: 0x6606,\n\t13088: 0x68B1,\n\t13089: 0x68CD,\n\t13090: 0x6EFE,\n\t13091: 0x7428,\n\t13092: 0x889E,\n\t13093: 0x9BE4,\n\t13094: 0x6C68,\n\t13095: 0xF904,\n\t13096: 0x9AA8,\n\t13097: 0x4F9B,\n\t13098: 0x516C,\n\t13099: 0x5171,\n\t13100: 0x529F,\n\t13101: 0x5B54,\n\t13102: 0x5DE5,\n\t13103: 0x6050,\n\t13104: 0x606D,\n\t13105: 0x62F1,\n\t13106: 0x63A7,\n\t13107: 0x653B,\n\t13108: 0x73D9,\n\t13109: 0x7A7A,\n\t13110: 0x86A3,\n\t13111: 0x8CA2,\n\t13112: 0x978F,\n\t13113: 0x4E32,\n\t13114: 0x5BE1,\n\t13115: 0x6208,\n\t13116: 0x679C,\n\t13117: 0x74DC,\n\t13118: 0x79D1,\n\t13119: 0x83D3,\n\t13120: 0x8A87,\n\t13121: 0x8AB2,\n\t13122: 0x8DE8,\n\t13123: 0x904E,\n\t13124: 0x934B,\n\t13125: 0x9846,\n\t13126: 0x5ED3,\n\t13127: 0x69E8,\n\t13128: 0x85FF,\n\t13129: 0x90ED,\n\t13130: 0xF905,\n\t13131: 0x51A0,\n\t13132: 0x5B98,\n\t13133: 0x5BEC,\n\t13134: 0x6163,\n\t13135: 0x68FA,\n\t13136: 0x6B3E,\n\t13137: 0x704C,\n\t13138: 0x742F,\n\t13139: 0x74D8,\n\t13140: 0x7BA1,\n\t13141: 0x7F50,\n\t13142: 0x83C5,\n\t13143: 0x89C0,\n\t13144: 0x8CAB,\n\t13145: 0x95DC,\n\t13146: 0x9928,\n\t13147: 0x522E,\n\t13148: 0x605D,\n\t13149: 0x62EC,\n\t13150: 0x9002,\n\t13151: 0x4F8A,\n\t13152: 0x5149,\n\t13153: 0x5321,\n\t13154: 0x58D9,\n\t13155: 0x5EE3,\n\t13156: 0x66E0,\n\t13157: 0x6D38,\n\t13158: 0x709A,\n\t13159: 0x72C2,\n\t13160: 0x73D6,\n\t13161: 0x7B50,\n\t13162: 0x80F1,\n\t13163: 0x945B,\n\t13164: 0x5366,\n\t13165: 0x639B,\n\t13166: 0x7F6B,\n\t13167: 0x4E56,\n\t13168: 0x5080,\n\t13169: 0x584A,\n\t13170: 0x58DE,\n\t13171: 0x602A,\n\t13172: 0x6127,\n\t13173: 0x62D0,\n\t13174: 0x69D0,\n\t13175: 0x9B41,\n\t13176: 0x5B8F,\n\t13177: 0x7D18,\n\t13178: 0x80B1,\n\t13179: 0x8F5F,\n\t13180: 0x4EA4,\n\t13181: 0x50D1,\n\t13182: 0x54AC,\n\t13183: 0x55AC,\n\t13184: 0x5B0C,\n\t13185: 0x5DA0,\n\t13186: 0x5DE7,\n\t13187: 0x652A,\n\t13188: 0x654E,\n\t13189: 0x6821,\n\t13190: 0x6A4B,\n\t13191: 0x72E1,\n\t13192: 0x768E,\n\t13193: 0x77EF,\n\t13194: 0x7D5E,\n\t13195: 0x7FF9,\n\t13196: 0x81A0,\n\t13197: 0x854E,\n\t13198: 0x86DF,\n\t13199: 0x8F03,\n\t13200: 0x8F4E,\n\t13201: 0x90CA,\n\t13202: 0x9903,\n\t13203: 0x9A55,\n\t13204: 0x9BAB,\n\t13205: 0x4E18,\n\t13206: 0x4E45,\n\t13207: 0x4E5D,\n\t13208: 0x4EC7,\n\t13209: 0x4FF1,\n\t13210: 0x5177,\n\t13211: 0x52FE,\n\t13212: 0x5340,\n\t13213: 0x53E3,\n\t13214: 0x53E5,\n\t13215: 0x548E,\n\t13216: 0x5614,\n\t13217: 0x5775,\n\t13218: 0x57A2,\n\t13219: 0x5BC7,\n\t13220: 0x5D87,\n\t13221: 0x5ED0,\n\t13222: 0x61FC,\n\t13223: 0x62D8,\n\t13224: 0x6551,\n\t13225: 0x67B8,\n\t13226: 0x67E9,\n\t13227: 0x69CB,\n\t13228: 0x6B50,\n\t13229: 0x6BC6,\n\t13230: 0x6BEC,\n\t13231: 0x6C42,\n\t13232: 0x6E9D,\n\t13233: 0x7078,\n\t13234: 0x72D7,\n\t13235: 0x7396,\n\t13236: 0x7403,\n\t13237: 0x77BF,\n\t13238: 0x77E9,\n\t13239: 0x7A76,\n\t13240: 0x7D7F,\n\t13241: 0x8009,\n\t13242: 0x81FC,\n\t13243: 0x8205,\n\t13244: 0x820A,\n\t13245: 0x82DF,\n\t13246: 0x8862,\n\t13247: 0x8B33,\n\t13248: 0x8CFC,\n\t13249: 0x8EC0,\n\t13250: 0x9011,\n\t13251: 0x90B1,\n\t13252: 0x9264,\n\t13253: 0x92B6,\n\t13254: 0x99D2,\n\t13255: 0x9A45,\n\t13256: 0x9CE9,\n\t13257: 0x9DD7,\n\t13258: 0x9F9C,\n\t13259: 0x570B,\n\t13260: 0x5C40,\n\t13261: 0x83CA,\n\t13262: 0x97A0,\n\t13263: 0x97AB,\n\t13264: 0x9EB4,\n\t13265: 0x541B,\n\t13266: 0x7A98,\n\t13267: 0x7FA4,\n\t13268: 0x88D9,\n\t13269: 0x8ECD,\n\t13270: 0x90E1,\n\t13271: 0x5800,\n\t13272: 0x5C48,\n\t13273: 0x6398,\n\t13274: 0x7A9F,\n\t13275: 0x5BAE,\n\t13276: 0x5F13,\n\t13277: 0x7A79,\n\t13278: 0x7AAE,\n\t13279: 0x828E,\n\t13280: 0x8EAC,\n\t13281: 0x5026,\n\t13282: 0x5238,\n\t13283: 0x52F8,\n\t13284: 0x5377,\n\t13285: 0x5708,\n\t13286: 0x62F3,\n\t13287: 0x6372,\n\t13288: 0x6B0A,\n\t13289: 0x6DC3,\n\t13290: 0x7737,\n\t13291: 0x53A5,\n\t13292: 0x7357,\n\t13293: 0x8568,\n\t13294: 0x8E76,\n\t13295: 0x95D5,\n\t13296: 0x673A,\n\t13297: 0x6AC3,\n\t13298: 0x6F70,\n\t13299: 0x8A6D,\n\t13300: 0x8ECC,\n\t13301: 0x994B,\n\t13302: 0xF906,\n\t13303: 0x6677,\n\t13304: 0x6B78,\n\t13305: 0x8CB4,\n\t13306: 0x9B3C,\n\t13307: 0xF907,\n\t13308: 0x53EB,\n\t13309: 0x572D,\n\t13310: 0x594E,\n\t13311: 0x63C6,\n\t13312: 0x69FB,\n\t13313: 0x73EA,\n\t13314: 0x7845,\n\t13315: 0x7ABA,\n\t13316: 0x7AC5,\n\t13317: 0x7CFE,\n\t13318: 0x8475,\n\t13319: 0x898F,\n\t13320: 0x8D73,\n\t13321: 0x9035,\n\t13322: 0x95A8,\n\t13323: 0x52FB,\n\t13324: 0x5747,\n\t13325: 0x7547,\n\t13326: 0x7B60,\n\t13327: 0x83CC,\n\t13328: 0x921E,\n\t13329: 0xF908,\n\t13330: 0x6A58,\n\t13331: 0x514B,\n\t13332: 0x524B,\n\t13333: 0x5287,\n\t13334: 0x621F,\n\t13335: 0x68D8,\n\t13336: 0x6975,\n\t13337: 0x9699,\n\t13338: 0x50C5,\n\t13339: 0x52A4,\n\t13340: 0x52E4,\n\t13341: 0x61C3,\n\t13342: 0x65A4,\n\t13343: 0x6839,\n\t13344: 0x69FF,\n\t13345: 0x747E,\n\t13346: 0x7B4B,\n\t13347: 0x82B9,\n\t13348: 0x83EB,\n\t13349: 0x89B2,\n\t13350: 0x8B39,\n\t13351: 0x8FD1,\n\t13352: 0x9949,\n\t13353: 0xF909,\n\t13354: 0x4ECA,\n\t13355: 0x5997,\n\t13356: 0x64D2,\n\t13357: 0x6611,\n\t13358: 0x6A8E,\n\t13359: 0x7434,\n\t13360: 0x7981,\n\t13361: 0x79BD,\n\t13362: 0x82A9,\n\t13363: 0x887E,\n\t13364: 0x887F,\n\t13365: 0x895F,\n\t13366: 0xF90A,\n\t13367: 0x9326,\n\t13368: 0x4F0B,\n\t13369: 0x53CA,\n\t13370: 0x6025,\n\t13371: 0x6271,\n\t13372: 0x6C72,\n\t13373: 0x7D1A,\n\t13374: 0x7D66,\n\t13375: 0x4E98,\n\t13376: 0x5162,\n\t13377: 0x77DC,\n\t13378: 0x80AF,\n\t13379: 0x4F01,\n\t13380: 0x4F0E,\n\t13381: 0x5176,\n\t13382: 0x5180,\n\t13383: 0x55DC,\n\t13384: 0x5668,\n\t13385: 0x573B,\n\t13386: 0x57FA,\n\t13387: 0x57FC,\n\t13388: 0x5914,\n\t13389: 0x5947,\n\t13390: 0x5993,\n\t13391: 0x5BC4,\n\t13392: 0x5C90,\n\t13393: 0x5D0E,\n\t13394: 0x5DF1,\n\t13395: 0x5E7E,\n\t13396: 0x5FCC,\n\t13397: 0x6280,\n\t13398: 0x65D7,\n\t13399: 0x65E3,\n\t13400: 0x671E,\n\t13401: 0x671F,\n\t13402: 0x675E,\n\t13403: 0x68CB,\n\t13404: 0x68C4,\n\t13405: 0x6A5F,\n\t13406: 0x6B3A,\n\t13407: 0x6C23,\n\t13408: 0x6C7D,\n\t13409: 0x6C82,\n\t13410: 0x6DC7,\n\t13411: 0x7398,\n\t13412: 0x7426,\n\t13413: 0x742A,\n\t13414: 0x7482,\n\t13415: 0x74A3,\n\t13416: 0x7578,\n\t13417: 0x757F,\n\t13418: 0x7881,\n\t13419: 0x78EF,\n\t13420: 0x7941,\n\t13421: 0x7947,\n\t13422: 0x7948,\n\t13423: 0x797A,\n\t13424: 0x7B95,\n\t13425: 0x7D00,\n\t13426: 0x7DBA,\n\t13427: 0x7F88,\n\t13428: 0x8006,\n\t13429: 0x802D,\n\t13430: 0x808C,\n\t13431: 0x8A18,\n\t13432: 0x8B4F,\n\t13433: 0x8C48,\n\t13434: 0x8D77,\n\t13435: 0x9321,\n\t13436: 0x9324,\n\t13437: 0x98E2,\n\t13438: 0x9951,\n\t13439: 0x9A0E,\n\t13440: 0x9A0F,\n\t13441: 0x9A65,\n\t13442: 0x9E92,\n\t13443: 0x7DCA,\n\t13444: 0x4F76,\n\t13445: 0x5409,\n\t13446: 0x62EE,\n\t13447: 0x6854,\n\t13448: 0x91D1,\n\t13449: 0x55AB,\n\t13450: 0x513A,\n\t13451: 0xF90B,\n\t13452: 0xF90C,\n\t13453: 0x5A1C,\n\t13454: 0x61E6,\n\t13455: 0xF90D,\n\t13456: 0x62CF,\n\t13457: 0x62FF,\n\t13458: 0xF90E,\n\t13459: 0xF90F,\n\t13460: 0xF910,\n\t13461: 0xF911,\n\t13462: 0xF912,\n\t13463: 0xF913,\n\t13464: 0x90A3,\n\t13465: 0xF914,\n\t13466: 0xF915,\n\t13467: 0xF916,\n\t13468: 0xF917,\n\t13469: 0xF918,\n\t13470: 0x8AFE,\n\t13471: 0xF919,\n\t13472: 0xF91A,\n\t13473: 0xF91B,\n\t13474: 0xF91C,\n\t13475: 0x6696,\n\t13476: 0xF91D,\n\t13477: 0x7156,\n\t13478: 0xF91E,\n\t13479: 0xF91F,\n\t13480: 0x96E3,\n\t13481: 0xF920,\n\t13482: 0x634F,\n\t13483: 0x637A,\n\t13484: 0x5357,\n\t13485: 0xF921,\n\t13486: 0x678F,\n\t13487: 0x6960,\n\t13488: 0x6E73,\n\t13489: 0xF922,\n\t13490: 0x7537,\n\t13491: 0xF923,\n\t13492: 0xF924,\n\t13493: 0xF925,\n\t13494: 0x7D0D,\n\t13495: 0xF926,\n\t13496: 0xF927,\n\t13497: 0x8872,\n\t13498: 0x56CA,\n\t13499: 0x5A18,\n\t13500: 0xF928,\n\t13501: 0xF929,\n\t13502: 0xF92A,\n\t13503: 0xF92B,\n\t13504: 0xF92C,\n\t13505: 0x4E43,\n\t13506: 0xF92D,\n\t13507: 0x5167,\n\t13508: 0x5948,\n\t13509: 0x67F0,\n\t13510: 0x8010,\n\t13511: 0xF92E,\n\t13512: 0x5973,\n\t13513: 0x5E74,\n\t13514: 0x649A,\n\t13515: 0x79CA,\n\t13516: 0x5FF5,\n\t13517: 0x606C,\n\t13518: 0x62C8,\n\t13519: 0x637B,\n\t13520: 0x5BE7,\n\t13521: 0x5BD7,\n\t13522: 0x52AA,\n\t13523: 0xF92F,\n\t13524: 0x5974,\n\t13525: 0x5F29,\n\t13526: 0x6012,\n\t13527: 0xF930,\n\t13528: 0xF931,\n\t13529: 0xF932,\n\t13530: 0x7459,\n\t13531: 0xF933,\n\t13532: 0xF934,\n\t13533: 0xF935,\n\t13534: 0xF936,\n\t13535: 0xF937,\n\t13536: 0xF938,\n\t13537: 0x99D1,\n\t13538: 0xF939,\n\t13539: 0xF93A,\n\t13540: 0xF93B,\n\t13541: 0xF93C,\n\t13542: 0xF93D,\n\t13543: 0xF93E,\n\t13544: 0xF93F,\n\t13545: 0xF940,\n\t13546: 0xF941,\n\t13547: 0xF942,\n\t13548: 0xF943,\n\t13549: 0x6FC3,\n\t13550: 0xF944,\n\t13551: 0xF945,\n\t13552: 0x81BF,\n\t13553: 0x8FB2,\n\t13554: 0x60F1,\n\t13555: 0xF946,\n\t13556: 0xF947,\n\t13557: 0x8166,\n\t13558: 0xF948,\n\t13559: 0xF949,\n\t13560: 0x5C3F,\n\t13561: 0xF94A,\n\t13562: 0xF94B,\n\t13563: 0xF94C,\n\t13564: 0xF94D,\n\t13565: 0xF94E,\n\t13566: 0xF94F,\n\t13567: 0xF950,\n\t13568: 0xF951,\n\t13569: 0x5AE9,\n\t13570: 0x8A25,\n\t13571: 0x677B,\n\t13572: 0x7D10,\n\t13573: 0xF952,\n\t13574: 0xF953,\n\t13575: 0xF954,\n\t13576: 0xF955,\n\t13577: 0xF956,\n\t13578: 0xF957,\n\t13579: 0x80FD,\n\t13580: 0xF958,\n\t13581: 0xF959,\n\t13582: 0x5C3C,\n\t13583: 0x6CE5,\n\t13584: 0x533F,\n\t13585: 0x6EBA,\n\t13586: 0x591A,\n\t13587: 0x8336,\n\t13588: 0x4E39,\n\t13589: 0x4EB6,\n\t13590: 0x4F46,\n\t13591: 0x55AE,\n\t13592: 0x5718,\n\t13593: 0x58C7,\n\t13594: 0x5F56,\n\t13595: 0x65B7,\n\t13596: 0x65E6,\n\t13597: 0x6A80,\n\t13598: 0x6BB5,\n\t13599: 0x6E4D,\n\t13600: 0x77ED,\n\t13601: 0x7AEF,\n\t13602: 0x7C1E,\n\t13603: 0x7DDE,\n\t13604: 0x86CB,\n\t13605: 0x8892,\n\t13606: 0x9132,\n\t13607: 0x935B,\n\t13608: 0x64BB,\n\t13609: 0x6FBE,\n\t13610: 0x737A,\n\t13611: 0x75B8,\n\t13612: 0x9054,\n\t13613: 0x5556,\n\t13614: 0x574D,\n\t13615: 0x61BA,\n\t13616: 0x64D4,\n\t13617: 0x66C7,\n\t13618: 0x6DE1,\n\t13619: 0x6E5B,\n\t13620: 0x6F6D,\n\t13621: 0x6FB9,\n\t13622: 0x75F0,\n\t13623: 0x8043,\n\t13624: 0x81BD,\n\t13625: 0x8541,\n\t13626: 0x8983,\n\t13627: 0x8AC7,\n\t13628: 0x8B5A,\n\t13629: 0x931F,\n\t13630: 0x6C93,\n\t13631: 0x7553,\n\t13632: 0x7B54,\n\t13633: 0x8E0F,\n\t13634: 0x905D,\n\t13635: 0x5510,\n\t13636: 0x5802,\n\t13637: 0x5858,\n\t13638: 0x5E62,\n\t13639: 0x6207,\n\t13640: 0x649E,\n\t13641: 0x68E0,\n\t13642: 0x7576,\n\t13643: 0x7CD6,\n\t13644: 0x87B3,\n\t13645: 0x9EE8,\n\t13646: 0x4EE3,\n\t13647: 0x5788,\n\t13648: 0x576E,\n\t13649: 0x5927,\n\t13650: 0x5C0D,\n\t13651: 0x5CB1,\n\t13652: 0x5E36,\n\t13653: 0x5F85,\n\t13654: 0x6234,\n\t13655: 0x64E1,\n\t13656: 0x73B3,\n\t13657: 0x81FA,\n\t13658: 0x888B,\n\t13659: 0x8CB8,\n\t13660: 0x968A,\n\t13661: 0x9EDB,\n\t13662: 0x5B85,\n\t13663: 0x5FB7,\n\t13664: 0x60B3,\n\t13665: 0x5012,\n\t13666: 0x5200,\n\t13667: 0x5230,\n\t13668: 0x5716,\n\t13669: 0x5835,\n\t13670: 0x5857,\n\t13671: 0x5C0E,\n\t13672: 0x5C60,\n\t13673: 0x5CF6,\n\t13674: 0x5D8B,\n\t13675: 0x5EA6,\n\t13676: 0x5F92,\n\t13677: 0x60BC,\n\t13678: 0x6311,\n\t13679: 0x6389,\n\t13680: 0x6417,\n\t13681: 0x6843,\n\t13682: 0x68F9,\n\t13683: 0x6AC2,\n\t13684: 0x6DD8,\n\t13685: 0x6E21,\n\t13686: 0x6ED4,\n\t13687: 0x6FE4,\n\t13688: 0x71FE,\n\t13689: 0x76DC,\n\t13690: 0x7779,\n\t13691: 0x79B1,\n\t13692: 0x7A3B,\n\t13693: 0x8404,\n\t13694: 0x89A9,\n\t13695: 0x8CED,\n\t13696: 0x8DF3,\n\t13697: 0x8E48,\n\t13698: 0x9003,\n\t13699: 0x9014,\n\t13700: 0x9053,\n\t13701: 0x90FD,\n\t13702: 0x934D,\n\t13703: 0x9676,\n\t13704: 0x97DC,\n\t13705: 0x6BD2,\n\t13706: 0x7006,\n\t13707: 0x7258,\n\t13708: 0x72A2,\n\t13709: 0x7368,\n\t13710: 0x7763,\n\t13711: 0x79BF,\n\t13712: 0x7BE4,\n\t13713: 0x7E9B,\n\t13714: 0x8B80,\n\t13715: 0x58A9,\n\t13716: 0x60C7,\n\t13717: 0x6566,\n\t13718: 0x65FD,\n\t13719: 0x66BE,\n\t13720: 0x6C8C,\n\t13721: 0x711E,\n\t13722: 0x71C9,\n\t13723: 0x8C5A,\n\t13724: 0x9813,\n\t13725: 0x4E6D,\n\t13726: 0x7A81,\n\t13727: 0x4EDD,\n\t13728: 0x51AC,\n\t13729: 0x51CD,\n\t13730: 0x52D5,\n\t13731: 0x540C,\n\t13732: 0x61A7,\n\t13733: 0x6771,\n\t13734: 0x6850,\n\t13735: 0x68DF,\n\t13736: 0x6D1E,\n\t13737: 0x6F7C,\n\t13738: 0x75BC,\n\t13739: 0x77B3,\n\t13740: 0x7AE5,\n\t13741: 0x80F4,\n\t13742: 0x8463,\n\t13743: 0x9285,\n\t13744: 0x515C,\n\t13745: 0x6597,\n\t13746: 0x675C,\n\t13747: 0x6793,\n\t13748: 0x75D8,\n\t13749: 0x7AC7,\n\t13750: 0x8373,\n\t13751: 0xF95A,\n\t13752: 0x8C46,\n\t13753: 0x9017,\n\t13754: 0x982D,\n\t13755: 0x5C6F,\n\t13756: 0x81C0,\n\t13757: 0x829A,\n\t13758: 0x9041,\n\t13759: 0x906F,\n\t13760: 0x920D,\n\t13761: 0x5F97,\n\t13762: 0x5D9D,\n\t13763: 0x6A59,\n\t13764: 0x71C8,\n\t13765: 0x767B,\n\t13766: 0x7B49,\n\t13767: 0x85E4,\n\t13768: 0x8B04,\n\t13769: 0x9127,\n\t13770: 0x9A30,\n\t13771: 0x5587,\n\t13772: 0x61F6,\n\t13773: 0xF95B,\n\t13774: 0x7669,\n\t13775: 0x7F85,\n\t13776: 0x863F,\n\t13777: 0x87BA,\n\t13778: 0x88F8,\n\t13779: 0x908F,\n\t13780: 0xF95C,\n\t13781: 0x6D1B,\n\t13782: 0x70D9,\n\t13783: 0x73DE,\n\t13784: 0x7D61,\n\t13785: 0x843D,\n\t13786: 0xF95D,\n\t13787: 0x916A,\n\t13788: 0x99F1,\n\t13789: 0xF95E,\n\t13790: 0x4E82,\n\t13791: 0x5375,\n\t13792: 0x6B04,\n\t13793: 0x6B12,\n\t13794: 0x703E,\n\t13795: 0x721B,\n\t13796: 0x862D,\n\t13797: 0x9E1E,\n\t13798: 0x524C,\n\t13799: 0x8FA3,\n\t13800: 0x5D50,\n\t13801: 0x64E5,\n\t13802: 0x652C,\n\t13803: 0x6B16,\n\t13804: 0x6FEB,\n\t13805: 0x7C43,\n\t13806: 0x7E9C,\n\t13807: 0x85CD,\n\t13808: 0x8964,\n\t13809: 0x89BD,\n\t13810: 0x62C9,\n\t13811: 0x81D8,\n\t13812: 0x881F,\n\t13813: 0x5ECA,\n\t13814: 0x6717,\n\t13815: 0x6D6A,\n\t13816: 0x72FC,\n\t13817: 0x7405,\n\t13818: 0x746F,\n\t13819: 0x8782,\n\t13820: 0x90DE,\n\t13821: 0x4F86,\n\t13822: 0x5D0D,\n\t13823: 0x5FA0,\n\t13824: 0x840A,\n\t13825: 0x51B7,\n\t13826: 0x63A0,\n\t13827: 0x7565,\n\t13828: 0x4EAE,\n\t13829: 0x5006,\n\t13830: 0x5169,\n\t13831: 0x51C9,\n\t13832: 0x6881,\n\t13833: 0x6A11,\n\t13834: 0x7CAE,\n\t13835: 0x7CB1,\n\t13836: 0x7CE7,\n\t13837: 0x826F,\n\t13838: 0x8AD2,\n\t13839: 0x8F1B,\n\t13840: 0x91CF,\n\t13841: 0x4FB6,\n\t13842: 0x5137,\n\t13843: 0x52F5,\n\t13844: 0x5442,\n\t13845: 0x5EEC,\n\t13846: 0x616E,\n\t13847: 0x623E,\n\t13848: 0x65C5,\n\t13849: 0x6ADA,\n\t13850: 0x6FFE,\n\t13851: 0x792A,\n\t13852: 0x85DC,\n\t13853: 0x8823,\n\t13854: 0x95AD,\n\t13855: 0x9A62,\n\t13856: 0x9A6A,\n\t13857: 0x9E97,\n\t13858: 0x9ECE,\n\t13859: 0x529B,\n\t13860: 0x66C6,\n\t13861: 0x6B77,\n\t13862: 0x701D,\n\t13863: 0x792B,\n\t13864: 0x8F62,\n\t13865: 0x9742,\n\t13866: 0x6190,\n\t13867: 0x6200,\n\t13868: 0x6523,\n\t13869: 0x6F23,\n\t13870: 0x7149,\n\t13871: 0x7489,\n\t13872: 0x7DF4,\n\t13873: 0x806F,\n\t13874: 0x84EE,\n\t13875: 0x8F26,\n\t13876: 0x9023,\n\t13877: 0x934A,\n\t13878: 0x51BD,\n\t13879: 0x5217,\n\t13880: 0x52A3,\n\t13881: 0x6D0C,\n\t13882: 0x70C8,\n\t13883: 0x88C2,\n\t13884: 0x5EC9,\n\t13885: 0x6582,\n\t13886: 0x6BAE,\n\t13887: 0x6FC2,\n\t13888: 0x7C3E,\n\t13889: 0x7375,\n\t13890: 0x4EE4,\n\t13891: 0x4F36,\n\t13892: 0x56F9,\n\t13893: 0xF95F,\n\t13894: 0x5CBA,\n\t13895: 0x5DBA,\n\t13896: 0x601C,\n\t13897: 0x73B2,\n\t13898: 0x7B2D,\n\t13899: 0x7F9A,\n\t13900: 0x7FCE,\n\t13901: 0x8046,\n\t13902: 0x901E,\n\t13903: 0x9234,\n\t13904: 0x96F6,\n\t13905: 0x9748,\n\t13906: 0x9818,\n\t13907: 0x9F61,\n\t13908: 0x4F8B,\n\t13909: 0x6FA7,\n\t13910: 0x79AE,\n\t13911: 0x91B4,\n\t13912: 0x96B7,\n\t13913: 0x52DE,\n\t13914: 0xF960,\n\t13915: 0x6488,\n\t13916: 0x64C4,\n\t13917: 0x6AD3,\n\t13918: 0x6F5E,\n\t13919: 0x7018,\n\t13920: 0x7210,\n\t13921: 0x76E7,\n\t13922: 0x8001,\n\t13923: 0x8606,\n\t13924: 0x865C,\n\t13925: 0x8DEF,\n\t13926: 0x8F05,\n\t13927: 0x9732,\n\t13928: 0x9B6F,\n\t13929: 0x9DFA,\n\t13930: 0x9E75,\n\t13931: 0x788C,\n\t13932: 0x797F,\n\t13933: 0x7DA0,\n\t13934: 0x83C9,\n\t13935: 0x9304,\n\t13936: 0x9E7F,\n\t13937: 0x9E93,\n\t13938: 0x8AD6,\n\t13939: 0x58DF,\n\t13940: 0x5F04,\n\t13941: 0x6727,\n\t13942: 0x7027,\n\t13943: 0x74CF,\n\t13944: 0x7C60,\n\t13945: 0x807E,\n\t13946: 0x5121,\n\t13947: 0x7028,\n\t13948: 0x7262,\n\t13949: 0x78CA,\n\t13950: 0x8CC2,\n\t13951: 0x8CDA,\n\t13952: 0x8CF4,\n\t13953: 0x96F7,\n\t13954: 0x4E86,\n\t13955: 0x50DA,\n\t13956: 0x5BEE,\n\t13957: 0x5ED6,\n\t13958: 0x6599,\n\t13959: 0x71CE,\n\t13960: 0x7642,\n\t13961: 0x77AD,\n\t13962: 0x804A,\n\t13963: 0x84FC,\n\t13964: 0x907C,\n\t13965: 0x9B27,\n\t13966: 0x9F8D,\n\t13967: 0x58D8,\n\t13968: 0x5A41,\n\t13969: 0x5C62,\n\t13970: 0x6A13,\n\t13971: 0x6DDA,\n\t13972: 0x6F0F,\n\t13973: 0x763B,\n\t13974: 0x7D2F,\n\t13975: 0x7E37,\n\t13976: 0x851E,\n\t13977: 0x8938,\n\t13978: 0x93E4,\n\t13979: 0x964B,\n\t13980: 0x5289,\n\t13981: 0x65D2,\n\t13982: 0x67F3,\n\t13983: 0x69B4,\n\t13984: 0x6D41,\n\t13985: 0x6E9C,\n\t13986: 0x700F,\n\t13987: 0x7409,\n\t13988: 0x7460,\n\t13989: 0x7559,\n\t13990: 0x7624,\n\t13991: 0x786B,\n\t13992: 0x8B2C,\n\t13993: 0x985E,\n\t13994: 0x516D,\n\t13995: 0x622E,\n\t13996: 0x9678,\n\t13997: 0x4F96,\n\t13998: 0x502B,\n\t13999: 0x5D19,\n\t14000: 0x6DEA,\n\t14001: 0x7DB8,\n\t14002: 0x8F2A,\n\t14003: 0x5F8B,\n\t14004: 0x6144,\n\t14005: 0x6817,\n\t14006: 0xF961,\n\t14007: 0x9686,\n\t14008: 0x52D2,\n\t14009: 0x808B,\n\t14010: 0x51DC,\n\t14011: 0x51CC,\n\t14012: 0x695E,\n\t14013: 0x7A1C,\n\t14014: 0x7DBE,\n\t14015: 0x83F1,\n\t14016: 0x9675,\n\t14017: 0x4FDA,\n\t14018: 0x5229,\n\t14019: 0x5398,\n\t14020: 0x540F,\n\t14021: 0x550E,\n\t14022: 0x5C65,\n\t14023: 0x60A7,\n\t14024: 0x674E,\n\t14025: 0x68A8,\n\t14026: 0x6D6C,\n\t14027: 0x7281,\n\t14028: 0x72F8,\n\t14029: 0x7406,\n\t14030: 0x7483,\n\t14031: 0xF962,\n\t14032: 0x75E2,\n\t14033: 0x7C6C,\n\t14034: 0x7F79,\n\t14035: 0x7FB8,\n\t14036: 0x8389,\n\t14037: 0x88CF,\n\t14038: 0x88E1,\n\t14039: 0x91CC,\n\t14040: 0x91D0,\n\t14041: 0x96E2,\n\t14042: 0x9BC9,\n\t14043: 0x541D,\n\t14044: 0x6F7E,\n\t14045: 0x71D0,\n\t14046: 0x7498,\n\t14047: 0x85FA,\n\t14048: 0x8EAA,\n\t14049: 0x96A3,\n\t14050: 0x9C57,\n\t14051: 0x9E9F,\n\t14052: 0x6797,\n\t14053: 0x6DCB,\n\t14054: 0x7433,\n\t14055: 0x81E8,\n\t14056: 0x9716,\n\t14057: 0x782C,\n\t14058: 0x7ACB,\n\t14059: 0x7B20,\n\t14060: 0x7C92,\n\t14061: 0x6469,\n\t14062: 0x746A,\n\t14063: 0x75F2,\n\t14064: 0x78BC,\n\t14065: 0x78E8,\n\t14066: 0x99AC,\n\t14067: 0x9B54,\n\t14068: 0x9EBB,\n\t14069: 0x5BDE,\n\t14070: 0x5E55,\n\t14071: 0x6F20,\n\t14072: 0x819C,\n\t14073: 0x83AB,\n\t14074: 0x9088,\n\t14075: 0x4E07,\n\t14076: 0x534D,\n\t14077: 0x5A29,\n\t14078: 0x5DD2,\n\t14079: 0x5F4E,\n\t14080: 0x6162,\n\t14081: 0x633D,\n\t14082: 0x6669,\n\t14083: 0x66FC,\n\t14084: 0x6EFF,\n\t14085: 0x6F2B,\n\t14086: 0x7063,\n\t14087: 0x779E,\n\t14088: 0x842C,\n\t14089: 0x8513,\n\t14090: 0x883B,\n\t14091: 0x8F13,\n\t14092: 0x9945,\n\t14093: 0x9C3B,\n\t14094: 0x551C,\n\t14095: 0x62B9,\n\t14096: 0x672B,\n\t14097: 0x6CAB,\n\t14098: 0x8309,\n\t14099: 0x896A,\n\t14100: 0x977A,\n\t14101: 0x4EA1,\n\t14102: 0x5984,\n\t14103: 0x5FD8,\n\t14104: 0x5FD9,\n\t14105: 0x671B,\n\t14106: 0x7DB2,\n\t14107: 0x7F54,\n\t14108: 0x8292,\n\t14109: 0x832B,\n\t14110: 0x83BD,\n\t14111: 0x8F1E,\n\t14112: 0x9099,\n\t14113: 0x57CB,\n\t14114: 0x59B9,\n\t14115: 0x5A92,\n\t14116: 0x5BD0,\n\t14117: 0x6627,\n\t14118: 0x679A,\n\t14119: 0x6885,\n\t14120: 0x6BCF,\n\t14121: 0x7164,\n\t14122: 0x7F75,\n\t14123: 0x8CB7,\n\t14124: 0x8CE3,\n\t14125: 0x9081,\n\t14126: 0x9B45,\n\t14127: 0x8108,\n\t14128: 0x8C8A,\n\t14129: 0x964C,\n\t14130: 0x9A40,\n\t14131: 0x9EA5,\n\t14132: 0x5B5F,\n\t14133: 0x6C13,\n\t14134: 0x731B,\n\t14135: 0x76F2,\n\t14136: 0x76DF,\n\t14137: 0x840C,\n\t14138: 0x51AA,\n\t14139: 0x8993,\n\t14140: 0x514D,\n\t14141: 0x5195,\n\t14142: 0x52C9,\n\t14143: 0x68C9,\n\t14144: 0x6C94,\n\t14145: 0x7704,\n\t14146: 0x7720,\n\t14147: 0x7DBF,\n\t14148: 0x7DEC,\n\t14149: 0x9762,\n\t14150: 0x9EB5,\n\t14151: 0x6EC5,\n\t14152: 0x8511,\n\t14153: 0x51A5,\n\t14154: 0x540D,\n\t14155: 0x547D,\n\t14156: 0x660E,\n\t14157: 0x669D,\n\t14158: 0x6927,\n\t14159: 0x6E9F,\n\t14160: 0x76BF,\n\t14161: 0x7791,\n\t14162: 0x8317,\n\t14163: 0x84C2,\n\t14164: 0x879F,\n\t14165: 0x9169,\n\t14166: 0x9298,\n\t14167: 0x9CF4,\n\t14168: 0x8882,\n\t14169: 0x4FAE,\n\t14170: 0x5192,\n\t14171: 0x52DF,\n\t14172: 0x59C6,\n\t14173: 0x5E3D,\n\t14174: 0x6155,\n\t14175: 0x6478,\n\t14176: 0x6479,\n\t14177: 0x66AE,\n\t14178: 0x67D0,\n\t14179: 0x6A21,\n\t14180: 0x6BCD,\n\t14181: 0x6BDB,\n\t14182: 0x725F,\n\t14183: 0x7261,\n\t14184: 0x7441,\n\t14185: 0x7738,\n\t14186: 0x77DB,\n\t14187: 0x8017,\n\t14188: 0x82BC,\n\t14189: 0x8305,\n\t14190: 0x8B00,\n\t14191: 0x8B28,\n\t14192: 0x8C8C,\n\t14193: 0x6728,\n\t14194: 0x6C90,\n\t14195: 0x7267,\n\t14196: 0x76EE,\n\t14197: 0x7766,\n\t14198: 0x7A46,\n\t14199: 0x9DA9,\n\t14200: 0x6B7F,\n\t14201: 0x6C92,\n\t14202: 0x5922,\n\t14203: 0x6726,\n\t14204: 0x8499,\n\t14205: 0x536F,\n\t14206: 0x5893,\n\t14207: 0x5999,\n\t14208: 0x5EDF,\n\t14209: 0x63CF,\n\t14210: 0x6634,\n\t14211: 0x6773,\n\t14212: 0x6E3A,\n\t14213: 0x732B,\n\t14214: 0x7AD7,\n\t14215: 0x82D7,\n\t14216: 0x9328,\n\t14217: 0x52D9,\n\t14218: 0x5DEB,\n\t14219: 0x61AE,\n\t14220: 0x61CB,\n\t14221: 0x620A,\n\t14222: 0x62C7,\n\t14223: 0x64AB,\n\t14224: 0x65E0,\n\t14225: 0x6959,\n\t14226: 0x6B66,\n\t14227: 0x6BCB,\n\t14228: 0x7121,\n\t14229: 0x73F7,\n\t14230: 0x755D,\n\t14231: 0x7E46,\n\t14232: 0x821E,\n\t14233: 0x8302,\n\t14234: 0x856A,\n\t14235: 0x8AA3,\n\t14236: 0x8CBF,\n\t14237: 0x9727,\n\t14238: 0x9D61,\n\t14239: 0x58A8,\n\t14240: 0x9ED8,\n\t14241: 0x5011,\n\t14242: 0x520E,\n\t14243: 0x543B,\n\t14244: 0x554F,\n\t14245: 0x6587,\n\t14246: 0x6C76,\n\t14247: 0x7D0A,\n\t14248: 0x7D0B,\n\t14249: 0x805E,\n\t14250: 0x868A,\n\t14251: 0x9580,\n\t14252: 0x96EF,\n\t14253: 0x52FF,\n\t14254: 0x6C95,\n\t14255: 0x7269,\n\t14256: 0x5473,\n\t14257: 0x5A9A,\n\t14258: 0x5C3E,\n\t14259: 0x5D4B,\n\t14260: 0x5F4C,\n\t14261: 0x5FAE,\n\t14262: 0x672A,\n\t14263: 0x68B6,\n\t14264: 0x6963,\n\t14265: 0x6E3C,\n\t14266: 0x6E44,\n\t14267: 0x7709,\n\t14268: 0x7C73,\n\t14269: 0x7F8E,\n\t14270: 0x8587,\n\t14271: 0x8B0E,\n\t14272: 0x8FF7,\n\t14273: 0x9761,\n\t14274: 0x9EF4,\n\t14275: 0x5CB7,\n\t14276: 0x60B6,\n\t14277: 0x610D,\n\t14278: 0x61AB,\n\t14279: 0x654F,\n\t14280: 0x65FB,\n\t14281: 0x65FC,\n\t14282: 0x6C11,\n\t14283: 0x6CEF,\n\t14284: 0x739F,\n\t14285: 0x73C9,\n\t14286: 0x7DE1,\n\t14287: 0x9594,\n\t14288: 0x5BC6,\n\t14289: 0x871C,\n\t14290: 0x8B10,\n\t14291: 0x525D,\n\t14292: 0x535A,\n\t14293: 0x62CD,\n\t14294: 0x640F,\n\t14295: 0x64B2,\n\t14296: 0x6734,\n\t14297: 0x6A38,\n\t14298: 0x6CCA,\n\t14299: 0x73C0,\n\t14300: 0x749E,\n\t14301: 0x7B94,\n\t14302: 0x7C95,\n\t14303: 0x7E1B,\n\t14304: 0x818A,\n\t14305: 0x8236,\n\t14306: 0x8584,\n\t14307: 0x8FEB,\n\t14308: 0x96F9,\n\t14309: 0x99C1,\n\t14310: 0x4F34,\n\t14311: 0x534A,\n\t14312: 0x53CD,\n\t14313: 0x53DB,\n\t14314: 0x62CC,\n\t14315: 0x642C,\n\t14316: 0x6500,\n\t14317: 0x6591,\n\t14318: 0x69C3,\n\t14319: 0x6CEE,\n\t14320: 0x6F58,\n\t14321: 0x73ED,\n\t14322: 0x7554,\n\t14323: 0x7622,\n\t14324: 0x76E4,\n\t14325: 0x76FC,\n\t14326: 0x78D0,\n\t14327: 0x78FB,\n\t14328: 0x792C,\n\t14329: 0x7D46,\n\t14330: 0x822C,\n\t14331: 0x87E0,\n\t14332: 0x8FD4,\n\t14333: 0x9812,\n\t14334: 0x98EF,\n\t14335: 0x52C3,\n\t14336: 0x62D4,\n\t14337: 0x64A5,\n\t14338: 0x6E24,\n\t14339: 0x6F51,\n\t14340: 0x767C,\n\t14341: 0x8DCB,\n\t14342: 0x91B1,\n\t14343: 0x9262,\n\t14344: 0x9AEE,\n\t14345: 0x9B43,\n\t14346: 0x5023,\n\t14347: 0x508D,\n\t14348: 0x574A,\n\t14349: 0x59A8,\n\t14350: 0x5C28,\n\t14351: 0x5E47,\n\t14352: 0x5F77,\n\t14353: 0x623F,\n\t14354: 0x653E,\n\t14355: 0x65B9,\n\t14356: 0x65C1,\n\t14357: 0x6609,\n\t14358: 0x678B,\n\t14359: 0x699C,\n\t14360: 0x6EC2,\n\t14361: 0x78C5,\n\t14362: 0x7D21,\n\t14363: 0x80AA,\n\t14364: 0x8180,\n\t14365: 0x822B,\n\t14366: 0x82B3,\n\t14367: 0x84A1,\n\t14368: 0x868C,\n\t14369: 0x8A2A,\n\t14370: 0x8B17,\n\t14371: 0x90A6,\n\t14372: 0x9632,\n\t14373: 0x9F90,\n\t14374: 0x500D,\n\t14375: 0x4FF3,\n\t14376: 0xF963,\n\t14377: 0x57F9,\n\t14378: 0x5F98,\n\t14379: 0x62DC,\n\t14380: 0x6392,\n\t14381: 0x676F,\n\t14382: 0x6E43,\n\t14383: 0x7119,\n\t14384: 0x76C3,\n\t14385: 0x80CC,\n\t14386: 0x80DA,\n\t14387: 0x88F4,\n\t14388: 0x88F5,\n\t14389: 0x8919,\n\t14390: 0x8CE0,\n\t14391: 0x8F29,\n\t14392: 0x914D,\n\t14393: 0x966A,\n\t14394: 0x4F2F,\n\t14395: 0x4F70,\n\t14396: 0x5E1B,\n\t14397: 0x67CF,\n\t14398: 0x6822,\n\t14399: 0x767D,\n\t14400: 0x767E,\n\t14401: 0x9B44,\n\t14402: 0x5E61,\n\t14403: 0x6A0A,\n\t14404: 0x7169,\n\t14405: 0x71D4,\n\t14406: 0x756A,\n\t14407: 0xF964,\n\t14408: 0x7E41,\n\t14409: 0x8543,\n\t14410: 0x85E9,\n\t14411: 0x98DC,\n\t14412: 0x4F10,\n\t14413: 0x7B4F,\n\t14414: 0x7F70,\n\t14415: 0x95A5,\n\t14416: 0x51E1,\n\t14417: 0x5E06,\n\t14418: 0x68B5,\n\t14419: 0x6C3E,\n\t14420: 0x6C4E,\n\t14421: 0x6CDB,\n\t14422: 0x72AF,\n\t14423: 0x7BC4,\n\t14424: 0x8303,\n\t14425: 0x6CD5,\n\t14426: 0x743A,\n\t14427: 0x50FB,\n\t14428: 0x5288,\n\t14429: 0x58C1,\n\t14430: 0x64D8,\n\t14431: 0x6A97,\n\t14432: 0x74A7,\n\t14433: 0x7656,\n\t14434: 0x78A7,\n\t14435: 0x8617,\n\t14436: 0x95E2,\n\t14437: 0x9739,\n\t14438: 0xF965,\n\t14439: 0x535E,\n\t14440: 0x5F01,\n\t14441: 0x8B8A,\n\t14442: 0x8FA8,\n\t14443: 0x8FAF,\n\t14444: 0x908A,\n\t14445: 0x5225,\n\t14446: 0x77A5,\n\t14447: 0x9C49,\n\t14448: 0x9F08,\n\t14449: 0x4E19,\n\t14450: 0x5002,\n\t14451: 0x5175,\n\t14452: 0x5C5B,\n\t14453: 0x5E77,\n\t14454: 0x661E,\n\t14455: 0x663A,\n\t14456: 0x67C4,\n\t14457: 0x68C5,\n\t14458: 0x70B3,\n\t14459: 0x7501,\n\t14460: 0x75C5,\n\t14461: 0x79C9,\n\t14462: 0x7ADD,\n\t14463: 0x8F27,\n\t14464: 0x9920,\n\t14465: 0x9A08,\n\t14466: 0x4FDD,\n\t14467: 0x5821,\n\t14468: 0x5831,\n\t14469: 0x5BF6,\n\t14470: 0x666E,\n\t14471: 0x6B65,\n\t14472: 0x6D11,\n\t14473: 0x6E7A,\n\t14474: 0x6F7D,\n\t14475: 0x73E4,\n\t14476: 0x752B,\n\t14477: 0x83E9,\n\t14478: 0x88DC,\n\t14479: 0x8913,\n\t14480: 0x8B5C,\n\t14481: 0x8F14,\n\t14482: 0x4F0F,\n\t14483: 0x50D5,\n\t14484: 0x5310,\n\t14485: 0x535C,\n\t14486: 0x5B93,\n\t14487: 0x5FA9,\n\t14488: 0x670D,\n\t14489: 0x798F,\n\t14490: 0x8179,\n\t14491: 0x832F,\n\t14492: 0x8514,\n\t14493: 0x8907,\n\t14494: 0x8986,\n\t14495: 0x8F39,\n\t14496: 0x8F3B,\n\t14497: 0x99A5,\n\t14498: 0x9C12,\n\t14499: 0x672C,\n\t14500: 0x4E76,\n\t14501: 0x4FF8,\n\t14502: 0x5949,\n\t14503: 0x5C01,\n\t14504: 0x5CEF,\n\t14505: 0x5CF0,\n\t14506: 0x6367,\n\t14507: 0x68D2,\n\t14508: 0x70FD,\n\t14509: 0x71A2,\n\t14510: 0x742B,\n\t14511: 0x7E2B,\n\t14512: 0x84EC,\n\t14513: 0x8702,\n\t14514: 0x9022,\n\t14515: 0x92D2,\n\t14516: 0x9CF3,\n\t14517: 0x4E0D,\n\t14518: 0x4ED8,\n\t14519: 0x4FEF,\n\t14520: 0x5085,\n\t14521: 0x5256,\n\t14522: 0x526F,\n\t14523: 0x5426,\n\t14524: 0x5490,\n\t14525: 0x57E0,\n\t14526: 0x592B,\n\t14527: 0x5A66,\n\t14528: 0x5B5A,\n\t14529: 0x5B75,\n\t14530: 0x5BCC,\n\t14531: 0x5E9C,\n\t14532: 0xF966,\n\t14533: 0x6276,\n\t14534: 0x6577,\n\t14535: 0x65A7,\n\t14536: 0x6D6E,\n\t14537: 0x6EA5,\n\t14538: 0x7236,\n\t14539: 0x7B26,\n\t14540: 0x7C3F,\n\t14541: 0x7F36,\n\t14542: 0x8150,\n\t14543: 0x8151,\n\t14544: 0x819A,\n\t14545: 0x8240,\n\t14546: 0x8299,\n\t14547: 0x83A9,\n\t14548: 0x8A03,\n\t14549: 0x8CA0,\n\t14550: 0x8CE6,\n\t14551: 0x8CFB,\n\t14552: 0x8D74,\n\t14553: 0x8DBA,\n\t14554: 0x90E8,\n\t14555: 0x91DC,\n\t14556: 0x961C,\n\t14557: 0x9644,\n\t14558: 0x99D9,\n\t14559: 0x9CE7,\n\t14560: 0x5317,\n\t14561: 0x5206,\n\t14562: 0x5429,\n\t14563: 0x5674,\n\t14564: 0x58B3,\n\t14565: 0x5954,\n\t14566: 0x596E,\n\t14567: 0x5FFF,\n\t14568: 0x61A4,\n\t14569: 0x626E,\n\t14570: 0x6610,\n\t14571: 0x6C7E,\n\t14572: 0x711A,\n\t14573: 0x76C6,\n\t14574: 0x7C89,\n\t14575: 0x7CDE,\n\t14576: 0x7D1B,\n\t14577: 0x82AC,\n\t14578: 0x8CC1,\n\t14579: 0x96F0,\n\t14580: 0xF967,\n\t14581: 0x4F5B,\n\t14582: 0x5F17,\n\t14583: 0x5F7F,\n\t14584: 0x62C2,\n\t14585: 0x5D29,\n\t14586: 0x670B,\n\t14587: 0x68DA,\n\t14588: 0x787C,\n\t14589: 0x7E43,\n\t14590: 0x9D6C,\n\t14591: 0x4E15,\n\t14592: 0x5099,\n\t14593: 0x5315,\n\t14594: 0x532A,\n\t14595: 0x5351,\n\t14596: 0x5983,\n\t14597: 0x5A62,\n\t14598: 0x5E87,\n\t14599: 0x60B2,\n\t14600: 0x618A,\n\t14601: 0x6249,\n\t14602: 0x6279,\n\t14603: 0x6590,\n\t14604: 0x6787,\n\t14605: 0x69A7,\n\t14606: 0x6BD4,\n\t14607: 0x6BD6,\n\t14608: 0x6BD7,\n\t14609: 0x6BD8,\n\t14610: 0x6CB8,\n\t14611: 0xF968,\n\t14612: 0x7435,\n\t14613: 0x75FA,\n\t14614: 0x7812,\n\t14615: 0x7891,\n\t14616: 0x79D5,\n\t14617: 0x79D8,\n\t14618: 0x7C83,\n\t14619: 0x7DCB,\n\t14620: 0x7FE1,\n\t14621: 0x80A5,\n\t14622: 0x813E,\n\t14623: 0x81C2,\n\t14624: 0x83F2,\n\t14625: 0x871A,\n\t14626: 0x88E8,\n\t14627: 0x8AB9,\n\t14628: 0x8B6C,\n\t14629: 0x8CBB,\n\t14630: 0x9119,\n\t14631: 0x975E,\n\t14632: 0x98DB,\n\t14633: 0x9F3B,\n\t14634: 0x56AC,\n\t14635: 0x5B2A,\n\t14636: 0x5F6C,\n\t14637: 0x658C,\n\t14638: 0x6AB3,\n\t14639: 0x6BAF,\n\t14640: 0x6D5C,\n\t14641: 0x6FF1,\n\t14642: 0x7015,\n\t14643: 0x725D,\n\t14644: 0x73AD,\n\t14645: 0x8CA7,\n\t14646: 0x8CD3,\n\t14647: 0x983B,\n\t14648: 0x6191,\n\t14649: 0x6C37,\n\t14650: 0x8058,\n\t14651: 0x9A01,\n\t14652: 0x4E4D,\n\t14653: 0x4E8B,\n\t14654: 0x4E9B,\n\t14655: 0x4ED5,\n\t14656: 0x4F3A,\n\t14657: 0x4F3C,\n\t14658: 0x4F7F,\n\t14659: 0x4FDF,\n\t14660: 0x50FF,\n\t14661: 0x53F2,\n\t14662: 0x53F8,\n\t14663: 0x5506,\n\t14664: 0x55E3,\n\t14665: 0x56DB,\n\t14666: 0x58EB,\n\t14667: 0x5962,\n\t14668: 0x5A11,\n\t14669: 0x5BEB,\n\t14670: 0x5BFA,\n\t14671: 0x5C04,\n\t14672: 0x5DF3,\n\t14673: 0x5E2B,\n\t14674: 0x5F99,\n\t14675: 0x601D,\n\t14676: 0x6368,\n\t14677: 0x659C,\n\t14678: 0x65AF,\n\t14679: 0x67F6,\n\t14680: 0x67FB,\n\t14681: 0x68AD,\n\t14682: 0x6B7B,\n\t14683: 0x6C99,\n\t14684: 0x6CD7,\n\t14685: 0x6E23,\n\t14686: 0x7009,\n\t14687: 0x7345,\n\t14688: 0x7802,\n\t14689: 0x793E,\n\t14690: 0x7940,\n\t14691: 0x7960,\n\t14692: 0x79C1,\n\t14693: 0x7BE9,\n\t14694: 0x7D17,\n\t14695: 0x7D72,\n\t14696: 0x8086,\n\t14697: 0x820D,\n\t14698: 0x838E,\n\t14699: 0x84D1,\n\t14700: 0x86C7,\n\t14701: 0x88DF,\n\t14702: 0x8A50,\n\t14703: 0x8A5E,\n\t14704: 0x8B1D,\n\t14705: 0x8CDC,\n\t14706: 0x8D66,\n\t14707: 0x8FAD,\n\t14708: 0x90AA,\n\t14709: 0x98FC,\n\t14710: 0x99DF,\n\t14711: 0x9E9D,\n\t14712: 0x524A,\n\t14713: 0xF969,\n\t14714: 0x6714,\n\t14715: 0xF96A,\n\t14716: 0x5098,\n\t14717: 0x522A,\n\t14718: 0x5C71,\n\t14719: 0x6563,\n\t14720: 0x6C55,\n\t14721: 0x73CA,\n\t14722: 0x7523,\n\t14723: 0x759D,\n\t14724: 0x7B97,\n\t14725: 0x849C,\n\t14726: 0x9178,\n\t14727: 0x9730,\n\t14728: 0x4E77,\n\t14729: 0x6492,\n\t14730: 0x6BBA,\n\t14731: 0x715E,\n\t14732: 0x85A9,\n\t14733: 0x4E09,\n\t14734: 0xF96B,\n\t14735: 0x6749,\n\t14736: 0x68EE,\n\t14737: 0x6E17,\n\t14738: 0x829F,\n\t14739: 0x8518,\n\t14740: 0x886B,\n\t14741: 0x63F7,\n\t14742: 0x6F81,\n\t14743: 0x9212,\n\t14744: 0x98AF,\n\t14745: 0x4E0A,\n\t14746: 0x50B7,\n\t14747: 0x50CF,\n\t14748: 0x511F,\n\t14749: 0x5546,\n\t14750: 0x55AA,\n\t14751: 0x5617,\n\t14752: 0x5B40,\n\t14753: 0x5C19,\n\t14754: 0x5CE0,\n\t14755: 0x5E38,\n\t14756: 0x5E8A,\n\t14757: 0x5EA0,\n\t14758: 0x5EC2,\n\t14759: 0x60F3,\n\t14760: 0x6851,\n\t14761: 0x6A61,\n\t14762: 0x6E58,\n\t14763: 0x723D,\n\t14764: 0x7240,\n\t14765: 0x72C0,\n\t14766: 0x76F8,\n\t14767: 0x7965,\n\t14768: 0x7BB1,\n\t14769: 0x7FD4,\n\t14770: 0x88F3,\n\t14771: 0x89F4,\n\t14772: 0x8A73,\n\t14773: 0x8C61,\n\t14774: 0x8CDE,\n\t14775: 0x971C,\n\t14776: 0x585E,\n\t14777: 0x74BD,\n\t14778: 0x8CFD,\n\t14779: 0x55C7,\n\t14780: 0xF96C,\n\t14781: 0x7A61,\n\t14782: 0x7D22,\n\t14783: 0x8272,\n\t14784: 0x7272,\n\t14785: 0x751F,\n\t14786: 0x7525,\n\t14787: 0xF96D,\n\t14788: 0x7B19,\n\t14789: 0x5885,\n\t14790: 0x58FB,\n\t14791: 0x5DBC,\n\t14792: 0x5E8F,\n\t14793: 0x5EB6,\n\t14794: 0x5F90,\n\t14795: 0x6055,\n\t14796: 0x6292,\n\t14797: 0x637F,\n\t14798: 0x654D,\n\t14799: 0x6691,\n\t14800: 0x66D9,\n\t14801: 0x66F8,\n\t14802: 0x6816,\n\t14803: 0x68F2,\n\t14804: 0x7280,\n\t14805: 0x745E,\n\t14806: 0x7B6E,\n\t14807: 0x7D6E,\n\t14808: 0x7DD6,\n\t14809: 0x7F72,\n\t14810: 0x80E5,\n\t14811: 0x8212,\n\t14812: 0x85AF,\n\t14813: 0x897F,\n\t14814: 0x8A93,\n\t14815: 0x901D,\n\t14816: 0x92E4,\n\t14817: 0x9ECD,\n\t14818: 0x9F20,\n\t14819: 0x5915,\n\t14820: 0x596D,\n\t14821: 0x5E2D,\n\t14822: 0x60DC,\n\t14823: 0x6614,\n\t14824: 0x6673,\n\t14825: 0x6790,\n\t14826: 0x6C50,\n\t14827: 0x6DC5,\n\t14828: 0x6F5F,\n\t14829: 0x77F3,\n\t14830: 0x78A9,\n\t14831: 0x84C6,\n\t14832: 0x91CB,\n\t14833: 0x932B,\n\t14834: 0x4ED9,\n\t14835: 0x50CA,\n\t14836: 0x5148,\n\t14837: 0x5584,\n\t14838: 0x5B0B,\n\t14839: 0x5BA3,\n\t14840: 0x6247,\n\t14841: 0x657E,\n\t14842: 0x65CB,\n\t14843: 0x6E32,\n\t14844: 0x717D,\n\t14845: 0x7401,\n\t14846: 0x7444,\n\t14847: 0x7487,\n\t14848: 0x74BF,\n\t14849: 0x766C,\n\t14850: 0x79AA,\n\t14851: 0x7DDA,\n\t14852: 0x7E55,\n\t14853: 0x7FA8,\n\t14854: 0x817A,\n\t14855: 0x81B3,\n\t14856: 0x8239,\n\t14857: 0x861A,\n\t14858: 0x87EC,\n\t14859: 0x8A75,\n\t14860: 0x8DE3,\n\t14861: 0x9078,\n\t14862: 0x9291,\n\t14863: 0x9425,\n\t14864: 0x994D,\n\t14865: 0x9BAE,\n\t14866: 0x5368,\n\t14867: 0x5C51,\n\t14868: 0x6954,\n\t14869: 0x6CC4,\n\t14870: 0x6D29,\n\t14871: 0x6E2B,\n\t14872: 0x820C,\n\t14873: 0x859B,\n\t14874: 0x893B,\n\t14875: 0x8A2D,\n\t14876: 0x8AAA,\n\t14877: 0x96EA,\n\t14878: 0x9F67,\n\t14879: 0x5261,\n\t14880: 0x66B9,\n\t14881: 0x6BB2,\n\t14882: 0x7E96,\n\t14883: 0x87FE,\n\t14884: 0x8D0D,\n\t14885: 0x9583,\n\t14886: 0x965D,\n\t14887: 0x651D,\n\t14888: 0x6D89,\n\t14889: 0x71EE,\n\t14890: 0xF96E,\n\t14891: 0x57CE,\n\t14892: 0x59D3,\n\t14893: 0x5BAC,\n\t14894: 0x6027,\n\t14895: 0x60FA,\n\t14896: 0x6210,\n\t14897: 0x661F,\n\t14898: 0x665F,\n\t14899: 0x7329,\n\t14900: 0x73F9,\n\t14901: 0x76DB,\n\t14902: 0x7701,\n\t14903: 0x7B6C,\n\t14904: 0x8056,\n\t14905: 0x8072,\n\t14906: 0x8165,\n\t14907: 0x8AA0,\n\t14908: 0x9192,\n\t14909: 0x4E16,\n\t14910: 0x52E2,\n\t14911: 0x6B72,\n\t14912: 0x6D17,\n\t14913: 0x7A05,\n\t14914: 0x7B39,\n\t14915: 0x7D30,\n\t14916: 0xF96F,\n\t14917: 0x8CB0,\n\t14918: 0x53EC,\n\t14919: 0x562F,\n\t14920: 0x5851,\n\t14921: 0x5BB5,\n\t14922: 0x5C0F,\n\t14923: 0x5C11,\n\t14924: 0x5DE2,\n\t14925: 0x6240,\n\t14926: 0x6383,\n\t14927: 0x6414,\n\t14928: 0x662D,\n\t14929: 0x68B3,\n\t14930: 0x6CBC,\n\t14931: 0x6D88,\n\t14932: 0x6EAF,\n\t14933: 0x701F,\n\t14934: 0x70A4,\n\t14935: 0x71D2,\n\t14936: 0x7526,\n\t14937: 0x758F,\n\t14938: 0x758E,\n\t14939: 0x7619,\n\t14940: 0x7B11,\n\t14941: 0x7BE0,\n\t14942: 0x7C2B,\n\t14943: 0x7D20,\n\t14944: 0x7D39,\n\t14945: 0x852C,\n\t14946: 0x856D,\n\t14947: 0x8607,\n\t14948: 0x8A34,\n\t14949: 0x900D,\n\t14950: 0x9061,\n\t14951: 0x90B5,\n\t14952: 0x92B7,\n\t14953: 0x97F6,\n\t14954: 0x9A37,\n\t14955: 0x4FD7,\n\t14956: 0x5C6C,\n\t14957: 0x675F,\n\t14958: 0x6D91,\n\t14959: 0x7C9F,\n\t14960: 0x7E8C,\n\t14961: 0x8B16,\n\t14962: 0x8D16,\n\t14963: 0x901F,\n\t14964: 0x5B6B,\n\t14965: 0x5DFD,\n\t14966: 0x640D,\n\t14967: 0x84C0,\n\t14968: 0x905C,\n\t14969: 0x98E1,\n\t14970: 0x7387,\n\t14971: 0x5B8B,\n\t14972: 0x609A,\n\t14973: 0x677E,\n\t14974: 0x6DDE,\n\t14975: 0x8A1F,\n\t14976: 0x8AA6,\n\t14977: 0x9001,\n\t14978: 0x980C,\n\t14979: 0x5237,\n\t14980: 0xF970,\n\t14981: 0x7051,\n\t14982: 0x788E,\n\t14983: 0x9396,\n\t14984: 0x8870,\n\t14985: 0x91D7,\n\t14986: 0x4FEE,\n\t14987: 0x53D7,\n\t14988: 0x55FD,\n\t14989: 0x56DA,\n\t14990: 0x5782,\n\t14991: 0x58FD,\n\t14992: 0x5AC2,\n\t14993: 0x5B88,\n\t14994: 0x5CAB,\n\t14995: 0x5CC0,\n\t14996: 0x5E25,\n\t14997: 0x6101,\n\t14998: 0x620D,\n\t14999: 0x624B,\n\t15000: 0x6388,\n\t15001: 0x641C,\n\t15002: 0x6536,\n\t15003: 0x6578,\n\t15004: 0x6A39,\n\t15005: 0x6B8A,\n\t15006: 0x6C34,\n\t15007: 0x6D19,\n\t15008: 0x6F31,\n\t15009: 0x71E7,\n\t15010: 0x72E9,\n\t15011: 0x7378,\n\t15012: 0x7407,\n\t15013: 0x74B2,\n\t15014: 0x7626,\n\t15015: 0x7761,\n\t15016: 0x79C0,\n\t15017: 0x7A57,\n\t15018: 0x7AEA,\n\t15019: 0x7CB9,\n\t15020: 0x7D8F,\n\t15021: 0x7DAC,\n\t15022: 0x7E61,\n\t15023: 0x7F9E,\n\t15024: 0x8129,\n\t15025: 0x8331,\n\t15026: 0x8490,\n\t15027: 0x84DA,\n\t15028: 0x85EA,\n\t15029: 0x8896,\n\t15030: 0x8AB0,\n\t15031: 0x8B90,\n\t15032: 0x8F38,\n\t15033: 0x9042,\n\t15034: 0x9083,\n\t15035: 0x916C,\n\t15036: 0x9296,\n\t15037: 0x92B9,\n\t15038: 0x968B,\n\t15039: 0x96A7,\n\t15040: 0x96A8,\n\t15041: 0x96D6,\n\t15042: 0x9700,\n\t15043: 0x9808,\n\t15044: 0x9996,\n\t15045: 0x9AD3,\n\t15046: 0x9B1A,\n\t15047: 0x53D4,\n\t15048: 0x587E,\n\t15049: 0x5919,\n\t15050: 0x5B70,\n\t15051: 0x5BBF,\n\t15052: 0x6DD1,\n\t15053: 0x6F5A,\n\t15054: 0x719F,\n\t15055: 0x7421,\n\t15056: 0x74B9,\n\t15057: 0x8085,\n\t15058: 0x83FD,\n\t15059: 0x5DE1,\n\t15060: 0x5F87,\n\t15061: 0x5FAA,\n\t15062: 0x6042,\n\t15063: 0x65EC,\n\t15064: 0x6812,\n\t15065: 0x696F,\n\t15066: 0x6A53,\n\t15067: 0x6B89,\n\t15068: 0x6D35,\n\t15069: 0x6DF3,\n\t15070: 0x73E3,\n\t15071: 0x76FE,\n\t15072: 0x77AC,\n\t15073: 0x7B4D,\n\t15074: 0x7D14,\n\t15075: 0x8123,\n\t15076: 0x821C,\n\t15077: 0x8340,\n\t15078: 0x84F4,\n\t15079: 0x8563,\n\t15080: 0x8A62,\n\t15081: 0x8AC4,\n\t15082: 0x9187,\n\t15083: 0x931E,\n\t15084: 0x9806,\n\t15085: 0x99B4,\n\t15086: 0x620C,\n\t15087: 0x8853,\n\t15088: 0x8FF0,\n\t15089: 0x9265,\n\t15090: 0x5D07,\n\t15091: 0x5D27,\n\t15092: 0x5D69,\n\t15093: 0x745F,\n\t15094: 0x819D,\n\t15095: 0x8768,\n\t15096: 0x6FD5,\n\t15097: 0x62FE,\n\t15098: 0x7FD2,\n\t15099: 0x8936,\n\t15100: 0x8972,\n\t15101: 0x4E1E,\n\t15102: 0x4E58,\n\t15103: 0x50E7,\n\t15104: 0x52DD,\n\t15105: 0x5347,\n\t15106: 0x627F,\n\t15107: 0x6607,\n\t15108: 0x7E69,\n\t15109: 0x8805,\n\t15110: 0x965E,\n\t15111: 0x4F8D,\n\t15112: 0x5319,\n\t15113: 0x5636,\n\t15114: 0x59CB,\n\t15115: 0x5AA4,\n\t15116: 0x5C38,\n\t15117: 0x5C4E,\n\t15118: 0x5C4D,\n\t15119: 0x5E02,\n\t15120: 0x5F11,\n\t15121: 0x6043,\n\t15122: 0x65BD,\n\t15123: 0x662F,\n\t15124: 0x6642,\n\t15125: 0x67BE,\n\t15126: 0x67F4,\n\t15127: 0x731C,\n\t15128: 0x77E2,\n\t15129: 0x793A,\n\t15130: 0x7FC5,\n\t15131: 0x8494,\n\t15132: 0x84CD,\n\t15133: 0x8996,\n\t15134: 0x8A66,\n\t15135: 0x8A69,\n\t15136: 0x8AE1,\n\t15137: 0x8C55,\n\t15138: 0x8C7A,\n\t15139: 0x57F4,\n\t15140: 0x5BD4,\n\t15141: 0x5F0F,\n\t15142: 0x606F,\n\t15143: 0x62ED,\n\t15144: 0x690D,\n\t15145: 0x6B96,\n\t15146: 0x6E5C,\n\t15147: 0x7184,\n\t15148: 0x7BD2,\n\t15149: 0x8755,\n\t15150: 0x8B58,\n\t15151: 0x8EFE,\n\t15152: 0x98DF,\n\t15153: 0x98FE,\n\t15154: 0x4F38,\n\t15155: 0x4F81,\n\t15156: 0x4FE1,\n\t15157: 0x547B,\n\t15158: 0x5A20,\n\t15159: 0x5BB8,\n\t15160: 0x613C,\n\t15161: 0x65B0,\n\t15162: 0x6668,\n\t15163: 0x71FC,\n\t15164: 0x7533,\n\t15165: 0x795E,\n\t15166: 0x7D33,\n\t15167: 0x814E,\n\t15168: 0x81E3,\n\t15169: 0x8398,\n\t15170: 0x85AA,\n\t15171: 0x85CE,\n\t15172: 0x8703,\n\t15173: 0x8A0A,\n\t15174: 0x8EAB,\n\t15175: 0x8F9B,\n\t15176: 0xF971,\n\t15177: 0x8FC5,\n\t15178: 0x5931,\n\t15179: 0x5BA4,\n\t15180: 0x5BE6,\n\t15181: 0x6089,\n\t15182: 0x5BE9,\n\t15183: 0x5C0B,\n\t15184: 0x5FC3,\n\t15185: 0x6C81,\n\t15186: 0xF972,\n\t15187: 0x6DF1,\n\t15188: 0x700B,\n\t15189: 0x751A,\n\t15190: 0x82AF,\n\t15191: 0x8AF6,\n\t15192: 0x4EC0,\n\t15193: 0x5341,\n\t15194: 0xF973,\n\t15195: 0x96D9,\n\t15196: 0x6C0F,\n\t15197: 0x4E9E,\n\t15198: 0x4FC4,\n\t15199: 0x5152,\n\t15200: 0x555E,\n\t15201: 0x5A25,\n\t15202: 0x5CE8,\n\t15203: 0x6211,\n\t15204: 0x7259,\n\t15205: 0x82BD,\n\t15206: 0x83AA,\n\t15207: 0x86FE,\n\t15208: 0x8859,\n\t15209: 0x8A1D,\n\t15210: 0x963F,\n\t15211: 0x96C5,\n\t15212: 0x9913,\n\t15213: 0x9D09,\n\t15214: 0x9D5D,\n\t15215: 0x580A,\n\t15216: 0x5CB3,\n\t15217: 0x5DBD,\n\t15218: 0x5E44,\n\t15219: 0x60E1,\n\t15220: 0x6115,\n\t15221: 0x63E1,\n\t15222: 0x6A02,\n\t15223: 0x6E25,\n\t15224: 0x9102,\n\t15225: 0x9354,\n\t15226: 0x984E,\n\t15227: 0x9C10,\n\t15228: 0x9F77,\n\t15229: 0x5B89,\n\t15230: 0x5CB8,\n\t15231: 0x6309,\n\t15232: 0x664F,\n\t15233: 0x6848,\n\t15234: 0x773C,\n\t15235: 0x96C1,\n\t15236: 0x978D,\n\t15237: 0x9854,\n\t15238: 0x9B9F,\n\t15239: 0x65A1,\n\t15240: 0x8B01,\n\t15241: 0x8ECB,\n\t15242: 0x95BC,\n\t15243: 0x5535,\n\t15244: 0x5CA9,\n\t15245: 0x5DD6,\n\t15246: 0x5EB5,\n\t15247: 0x6697,\n\t15248: 0x764C,\n\t15249: 0x83F4,\n\t15250: 0x95C7,\n\t15251: 0x58D3,\n\t15252: 0x62BC,\n\t15253: 0x72CE,\n\t15254: 0x9D28,\n\t15255: 0x4EF0,\n\t15256: 0x592E,\n\t15257: 0x600F,\n\t15258: 0x663B,\n\t15259: 0x6B83,\n\t15260: 0x79E7,\n\t15261: 0x9D26,\n\t15262: 0x5393,\n\t15263: 0x54C0,\n\t15264: 0x57C3,\n\t15265: 0x5D16,\n\t15266: 0x611B,\n\t15267: 0x66D6,\n\t15268: 0x6DAF,\n\t15269: 0x788D,\n\t15270: 0x827E,\n\t15271: 0x9698,\n\t15272: 0x9744,\n\t15273: 0x5384,\n\t15274: 0x627C,\n\t15275: 0x6396,\n\t15276: 0x6DB2,\n\t15277: 0x7E0A,\n\t15278: 0x814B,\n\t15279: 0x984D,\n\t15280: 0x6AFB,\n\t15281: 0x7F4C,\n\t15282: 0x9DAF,\n\t15283: 0x9E1A,\n\t15284: 0x4E5F,\n\t15285: 0x503B,\n\t15286: 0x51B6,\n\t15287: 0x591C,\n\t15288: 0x60F9,\n\t15289: 0x63F6,\n\t15290: 0x6930,\n\t15291: 0x723A,\n\t15292: 0x8036,\n\t15293: 0xF974,\n\t15294: 0x91CE,\n\t15295: 0x5F31,\n\t15296: 0xF975,\n\t15297: 0xF976,\n\t15298: 0x7D04,\n\t15299: 0x82E5,\n\t15300: 0x846F,\n\t15301: 0x84BB,\n\t15302: 0x85E5,\n\t15303: 0x8E8D,\n\t15304: 0xF977,\n\t15305: 0x4F6F,\n\t15306: 0xF978,\n\t15307: 0xF979,\n\t15308: 0x58E4,\n\t15309: 0x5B43,\n\t15310: 0x6059,\n\t15311: 0x63DA,\n\t15312: 0x6518,\n\t15313: 0x656D,\n\t15314: 0x6698,\n\t15315: 0xF97A,\n\t15316: 0x694A,\n\t15317: 0x6A23,\n\t15318: 0x6D0B,\n\t15319: 0x7001,\n\t15320: 0x716C,\n\t15321: 0x75D2,\n\t15322: 0x760D,\n\t15323: 0x79B3,\n\t15324: 0x7A70,\n\t15325: 0xF97B,\n\t15326: 0x7F8A,\n\t15327: 0xF97C,\n\t15328: 0x8944,\n\t15329: 0xF97D,\n\t15330: 0x8B93,\n\t15331: 0x91C0,\n\t15332: 0x967D,\n\t15333: 0xF97E,\n\t15334: 0x990A,\n\t15335: 0x5704,\n\t15336: 0x5FA1,\n\t15337: 0x65BC,\n\t15338: 0x6F01,\n\t15339: 0x7600,\n\t15340: 0x79A6,\n\t15341: 0x8A9E,\n\t15342: 0x99AD,\n\t15343: 0x9B5A,\n\t15344: 0x9F6C,\n\t15345: 0x5104,\n\t15346: 0x61B6,\n\t15347: 0x6291,\n\t15348: 0x6A8D,\n\t15349: 0x81C6,\n\t15350: 0x5043,\n\t15351: 0x5830,\n\t15352: 0x5F66,\n\t15353: 0x7109,\n\t15354: 0x8A00,\n\t15355: 0x8AFA,\n\t15356: 0x5B7C,\n\t15357: 0x8616,\n\t15358: 0x4FFA,\n\t15359: 0x513C,\n\t15360: 0x56B4,\n\t15361: 0x5944,\n\t15362: 0x63A9,\n\t15363: 0x6DF9,\n\t15364: 0x5DAA,\n\t15365: 0x696D,\n\t15366: 0x5186,\n\t15367: 0x4E88,\n\t15368: 0x4F59,\n\t15369: 0xF97F,\n\t15370: 0xF980,\n\t15371: 0xF981,\n\t15372: 0x5982,\n\t15373: 0xF982,\n\t15374: 0xF983,\n\t15375: 0x6B5F,\n\t15376: 0x6C5D,\n\t15377: 0xF984,\n\t15378: 0x74B5,\n\t15379: 0x7916,\n\t15380: 0xF985,\n\t15381: 0x8207,\n\t15382: 0x8245,\n\t15383: 0x8339,\n\t15384: 0x8F3F,\n\t15385: 0x8F5D,\n\t15386: 0xF986,\n\t15387: 0x9918,\n\t15388: 0xF987,\n\t15389: 0xF988,\n\t15390: 0xF989,\n\t15391: 0x4EA6,\n\t15392: 0xF98A,\n\t15393: 0x57DF,\n\t15394: 0x5F79,\n\t15395: 0x6613,\n\t15396: 0xF98B,\n\t15397: 0xF98C,\n\t15398: 0x75AB,\n\t15399: 0x7E79,\n\t15400: 0x8B6F,\n\t15401: 0xF98D,\n\t15402: 0x9006,\n\t15403: 0x9A5B,\n\t15404: 0x56A5,\n\t15405: 0x5827,\n\t15406: 0x59F8,\n\t15407: 0x5A1F,\n\t15408: 0x5BB4,\n\t15409: 0xF98E,\n\t15410: 0x5EF6,\n\t15411: 0xF98F,\n\t15412: 0xF990,\n\t15413: 0x6350,\n\t15414: 0x633B,\n\t15415: 0xF991,\n\t15416: 0x693D,\n\t15417: 0x6C87,\n\t15418: 0x6CBF,\n\t15419: 0x6D8E,\n\t15420: 0x6D93,\n\t15421: 0x6DF5,\n\t15422: 0x6F14,\n\t15423: 0xF992,\n\t15424: 0x70DF,\n\t15425: 0x7136,\n\t15426: 0x7159,\n\t15427: 0xF993,\n\t15428: 0x71C3,\n\t15429: 0x71D5,\n\t15430: 0xF994,\n\t15431: 0x784F,\n\t15432: 0x786F,\n\t15433: 0xF995,\n\t15434: 0x7B75,\n\t15435: 0x7DE3,\n\t15436: 0xF996,\n\t15437: 0x7E2F,\n\t15438: 0xF997,\n\t15439: 0x884D,\n\t15440: 0x8EDF,\n\t15441: 0xF998,\n\t15442: 0xF999,\n\t15443: 0xF99A,\n\t15444: 0x925B,\n\t15445: 0xF99B,\n\t15446: 0x9CF6,\n\t15447: 0xF99C,\n\t15448: 0xF99D,\n\t15449: 0xF99E,\n\t15450: 0x6085,\n\t15451: 0x6D85,\n\t15452: 0xF99F,\n\t15453: 0x71B1,\n\t15454: 0xF9A0,\n\t15455: 0xF9A1,\n\t15456: 0x95B1,\n\t15457: 0x53AD,\n\t15458: 0xF9A2,\n\t15459: 0xF9A3,\n\t15460: 0xF9A4,\n\t15461: 0x67D3,\n\t15462: 0xF9A5,\n\t15463: 0x708E,\n\t15464: 0x7130,\n\t15465: 0x7430,\n\t15466: 0x8276,\n\t15467: 0x82D2,\n\t15468: 0xF9A6,\n\t15469: 0x95BB,\n\t15470: 0x9AE5,\n\t15471: 0x9E7D,\n\t15472: 0x66C4,\n\t15473: 0xF9A7,\n\t15474: 0x71C1,\n\t15475: 0x8449,\n\t15476: 0xF9A8,\n\t15477: 0xF9A9,\n\t15478: 0x584B,\n\t15479: 0xF9AA,\n\t15480: 0xF9AB,\n\t15481: 0x5DB8,\n\t15482: 0x5F71,\n\t15483: 0xF9AC,\n\t15484: 0x6620,\n\t15485: 0x668E,\n\t15486: 0x6979,\n\t15487: 0x69AE,\n\t15488: 0x6C38,\n\t15489: 0x6CF3,\n\t15490: 0x6E36,\n\t15491: 0x6F41,\n\t15492: 0x6FDA,\n\t15493: 0x701B,\n\t15494: 0x702F,\n\t15495: 0x7150,\n\t15496: 0x71DF,\n\t15497: 0x7370,\n\t15498: 0xF9AD,\n\t15499: 0x745B,\n\t15500: 0xF9AE,\n\t15501: 0x74D4,\n\t15502: 0x76C8,\n\t15503: 0x7A4E,\n\t15504: 0x7E93,\n\t15505: 0xF9AF,\n\t15506: 0xF9B0,\n\t15507: 0x82F1,\n\t15508: 0x8A60,\n\t15509: 0x8FCE,\n\t15510: 0xF9B1,\n\t15511: 0x9348,\n\t15512: 0xF9B2,\n\t15513: 0x9719,\n\t15514: 0xF9B3,\n\t15515: 0xF9B4,\n\t15516: 0x4E42,\n\t15517: 0x502A,\n\t15518: 0xF9B5,\n\t15519: 0x5208,\n\t15520: 0x53E1,\n\t15521: 0x66F3,\n\t15522: 0x6C6D,\n\t15523: 0x6FCA,\n\t15524: 0x730A,\n\t15525: 0x777F,\n\t15526: 0x7A62,\n\t15527: 0x82AE,\n\t15528: 0x85DD,\n\t15529: 0x8602,\n\t15530: 0xF9B6,\n\t15531: 0x88D4,\n\t15532: 0x8A63,\n\t15533: 0x8B7D,\n\t15534: 0x8C6B,\n\t15535: 0xF9B7,\n\t15536: 0x92B3,\n\t15537: 0xF9B8,\n\t15538: 0x9713,\n\t15539: 0x9810,\n\t15540: 0x4E94,\n\t15541: 0x4F0D,\n\t15542: 0x4FC9,\n\t15543: 0x50B2,\n\t15544: 0x5348,\n\t15545: 0x543E,\n\t15546: 0x5433,\n\t15547: 0x55DA,\n\t15548: 0x5862,\n\t15549: 0x58BA,\n\t15550: 0x5967,\n\t15551: 0x5A1B,\n\t15552: 0x5BE4,\n\t15553: 0x609F,\n\t15554: 0xF9B9,\n\t15555: 0x61CA,\n\t15556: 0x6556,\n\t15557: 0x65FF,\n\t15558: 0x6664,\n\t15559: 0x68A7,\n\t15560: 0x6C5A,\n\t15561: 0x6FB3,\n\t15562: 0x70CF,\n\t15563: 0x71AC,\n\t15564: 0x7352,\n\t15565: 0x7B7D,\n\t15566: 0x8708,\n\t15567: 0x8AA4,\n\t15568: 0x9C32,\n\t15569: 0x9F07,\n\t15570: 0x5C4B,\n\t15571: 0x6C83,\n\t15572: 0x7344,\n\t15573: 0x7389,\n\t15574: 0x923A,\n\t15575: 0x6EAB,\n\t15576: 0x7465,\n\t15577: 0x761F,\n\t15578: 0x7A69,\n\t15579: 0x7E15,\n\t15580: 0x860A,\n\t15581: 0x5140,\n\t15582: 0x58C5,\n\t15583: 0x64C1,\n\t15584: 0x74EE,\n\t15585: 0x7515,\n\t15586: 0x7670,\n\t15587: 0x7FC1,\n\t15588: 0x9095,\n\t15589: 0x96CD,\n\t15590: 0x9954,\n\t15591: 0x6E26,\n\t15592: 0x74E6,\n\t15593: 0x7AA9,\n\t15594: 0x7AAA,\n\t15595: 0x81E5,\n\t15596: 0x86D9,\n\t15597: 0x8778,\n\t15598: 0x8A1B,\n\t15599: 0x5A49,\n\t15600: 0x5B8C,\n\t15601: 0x5B9B,\n\t15602: 0x68A1,\n\t15603: 0x6900,\n\t15604: 0x6D63,\n\t15605: 0x73A9,\n\t15606: 0x7413,\n\t15607: 0x742C,\n\t15608: 0x7897,\n\t15609: 0x7DE9,\n\t15610: 0x7FEB,\n\t15611: 0x8118,\n\t15612: 0x8155,\n\t15613: 0x839E,\n\t15614: 0x8C4C,\n\t15615: 0x962E,\n\t15616: 0x9811,\n\t15617: 0x66F0,\n\t15618: 0x5F80,\n\t15619: 0x65FA,\n\t15620: 0x6789,\n\t15621: 0x6C6A,\n\t15622: 0x738B,\n\t15623: 0x502D,\n\t15624: 0x5A03,\n\t15625: 0x6B6A,\n\t15626: 0x77EE,\n\t15627: 0x5916,\n\t15628: 0x5D6C,\n\t15629: 0x5DCD,\n\t15630: 0x7325,\n\t15631: 0x754F,\n\t15632: 0xF9BA,\n\t15633: 0xF9BB,\n\t15634: 0x50E5,\n\t15635: 0x51F9,\n\t15636: 0x582F,\n\t15637: 0x592D,\n\t15638: 0x5996,\n\t15639: 0x59DA,\n\t15640: 0x5BE5,\n\t15641: 0xF9BC,\n\t15642: 0xF9BD,\n\t15643: 0x5DA2,\n\t15644: 0x62D7,\n\t15645: 0x6416,\n\t15646: 0x6493,\n\t15647: 0x64FE,\n\t15648: 0xF9BE,\n\t15649: 0x66DC,\n\t15650: 0xF9BF,\n\t15651: 0x6A48,\n\t15652: 0xF9C0,\n\t15653: 0x71FF,\n\t15654: 0x7464,\n\t15655: 0xF9C1,\n\t15656: 0x7A88,\n\t15657: 0x7AAF,\n\t15658: 0x7E47,\n\t15659: 0x7E5E,\n\t15660: 0x8000,\n\t15661: 0x8170,\n\t15662: 0xF9C2,\n\t15663: 0x87EF,\n\t15664: 0x8981,\n\t15665: 0x8B20,\n\t15666: 0x9059,\n\t15667: 0xF9C3,\n\t15668: 0x9080,\n\t15669: 0x9952,\n\t15670: 0x617E,\n\t15671: 0x6B32,\n\t15672: 0x6D74,\n\t15673: 0x7E1F,\n\t15674: 0x8925,\n\t15675: 0x8FB1,\n\t15676: 0x4FD1,\n\t15677: 0x50AD,\n\t15678: 0x5197,\n\t15679: 0x52C7,\n\t15680: 0x57C7,\n\t15681: 0x5889,\n\t15682: 0x5BB9,\n\t15683: 0x5EB8,\n\t15684: 0x6142,\n\t15685: 0x6995,\n\t15686: 0x6D8C,\n\t15687: 0x6E67,\n\t15688: 0x6EB6,\n\t15689: 0x7194,\n\t15690: 0x7462,\n\t15691: 0x7528,\n\t15692: 0x752C,\n\t15693: 0x8073,\n\t15694: 0x8338,\n\t15695: 0x84C9,\n\t15696: 0x8E0A,\n\t15697: 0x9394,\n\t15698: 0x93DE,\n\t15699: 0xF9C4,\n\t15700: 0x4E8E,\n\t15701: 0x4F51,\n\t15702: 0x5076,\n\t15703: 0x512A,\n\t15704: 0x53C8,\n\t15705: 0x53CB,\n\t15706: 0x53F3,\n\t15707: 0x5B87,\n\t15708: 0x5BD3,\n\t15709: 0x5C24,\n\t15710: 0x611A,\n\t15711: 0x6182,\n\t15712: 0x65F4,\n\t15713: 0x725B,\n\t15714: 0x7397,\n\t15715: 0x7440,\n\t15716: 0x76C2,\n\t15717: 0x7950,\n\t15718: 0x7991,\n\t15719: 0x79B9,\n\t15720: 0x7D06,\n\t15721: 0x7FBD,\n\t15722: 0x828B,\n\t15723: 0x85D5,\n\t15724: 0x865E,\n\t15725: 0x8FC2,\n\t15726: 0x9047,\n\t15727: 0x90F5,\n\t15728: 0x91EA,\n\t15729: 0x9685,\n\t15730: 0x96E8,\n\t15731: 0x96E9,\n\t15732: 0x52D6,\n\t15733: 0x5F67,\n\t15734: 0x65ED,\n\t15735: 0x6631,\n\t15736: 0x682F,\n\t15737: 0x715C,\n\t15738: 0x7A36,\n\t15739: 0x90C1,\n\t15740: 0x980A,\n\t15741: 0x4E91,\n\t15742: 0xF9C5,\n\t15743: 0x6A52,\n\t15744: 0x6B9E,\n\t15745: 0x6F90,\n\t15746: 0x7189,\n\t15747: 0x8018,\n\t15748: 0x82B8,\n\t15749: 0x8553,\n\t15750: 0x904B,\n\t15751: 0x9695,\n\t15752: 0x96F2,\n\t15753: 0x97FB,\n\t15754: 0x851A,\n\t15755: 0x9B31,\n\t15756: 0x4E90,\n\t15757: 0x718A,\n\t15758: 0x96C4,\n\t15759: 0x5143,\n\t15760: 0x539F,\n\t15761: 0x54E1,\n\t15762: 0x5713,\n\t15763: 0x5712,\n\t15764: 0x57A3,\n\t15765: 0x5A9B,\n\t15766: 0x5AC4,\n\t15767: 0x5BC3,\n\t15768: 0x6028,\n\t15769: 0x613F,\n\t15770: 0x63F4,\n\t15771: 0x6C85,\n\t15772: 0x6D39,\n\t15773: 0x6E72,\n\t15774: 0x6E90,\n\t15775: 0x7230,\n\t15776: 0x733F,\n\t15777: 0x7457,\n\t15778: 0x82D1,\n\t15779: 0x8881,\n\t15780: 0x8F45,\n\t15781: 0x9060,\n\t15782: 0xF9C6,\n\t15783: 0x9662,\n\t15784: 0x9858,\n\t15785: 0x9D1B,\n\t15786: 0x6708,\n\t15787: 0x8D8A,\n\t15788: 0x925E,\n\t15789: 0x4F4D,\n\t15790: 0x5049,\n\t15791: 0x50DE,\n\t15792: 0x5371,\n\t15793: 0x570D,\n\t15794: 0x59D4,\n\t15795: 0x5A01,\n\t15796: 0x5C09,\n\t15797: 0x6170,\n\t15798: 0x6690,\n\t15799: 0x6E2D,\n\t15800: 0x7232,\n\t15801: 0x744B,\n\t15802: 0x7DEF,\n\t15803: 0x80C3,\n\t15804: 0x840E,\n\t15805: 0x8466,\n\t15806: 0x853F,\n\t15807: 0x875F,\n\t15808: 0x885B,\n\t15809: 0x8918,\n\t15810: 0x8B02,\n\t15811: 0x9055,\n\t15812: 0x97CB,\n\t15813: 0x9B4F,\n\t15814: 0x4E73,\n\t15815: 0x4F91,\n\t15816: 0x5112,\n\t15817: 0x516A,\n\t15818: 0xF9C7,\n\t15819: 0x552F,\n\t15820: 0x55A9,\n\t15821: 0x5B7A,\n\t15822: 0x5BA5,\n\t15823: 0x5E7C,\n\t15824: 0x5E7D,\n\t15825: 0x5EBE,\n\t15826: 0x60A0,\n\t15827: 0x60DF,\n\t15828: 0x6108,\n\t15829: 0x6109,\n\t15830: 0x63C4,\n\t15831: 0x6538,\n\t15832: 0x6709,\n\t15833: 0xF9C8,\n\t15834: 0x67D4,\n\t15835: 0x67DA,\n\t15836: 0xF9C9,\n\t15837: 0x6961,\n\t15838: 0x6962,\n\t15839: 0x6CB9,\n\t15840: 0x6D27,\n\t15841: 0xF9CA,\n\t15842: 0x6E38,\n\t15843: 0xF9CB,\n\t15844: 0x6FE1,\n\t15845: 0x7336,\n\t15846: 0x7337,\n\t15847: 0xF9CC,\n\t15848: 0x745C,\n\t15849: 0x7531,\n\t15850: 0xF9CD,\n\t15851: 0x7652,\n\t15852: 0xF9CE,\n\t15853: 0xF9CF,\n\t15854: 0x7DAD,\n\t15855: 0x81FE,\n\t15856: 0x8438,\n\t15857: 0x88D5,\n\t15858: 0x8A98,\n\t15859: 0x8ADB,\n\t15860: 0x8AED,\n\t15861: 0x8E30,\n\t15862: 0x8E42,\n\t15863: 0x904A,\n\t15864: 0x903E,\n\t15865: 0x907A,\n\t15866: 0x9149,\n\t15867: 0x91C9,\n\t15868: 0x936E,\n\t15869: 0xF9D0,\n\t15870: 0xF9D1,\n\t15871: 0x5809,\n\t15872: 0xF9D2,\n\t15873: 0x6BD3,\n\t15874: 0x8089,\n\t15875: 0x80B2,\n\t15876: 0xF9D3,\n\t15877: 0xF9D4,\n\t15878: 0x5141,\n\t15879: 0x596B,\n\t15880: 0x5C39,\n\t15881: 0xF9D5,\n\t15882: 0xF9D6,\n\t15883: 0x6F64,\n\t15884: 0x73A7,\n\t15885: 0x80E4,\n\t15886: 0x8D07,\n\t15887: 0xF9D7,\n\t15888: 0x9217,\n\t15889: 0x958F,\n\t15890: 0xF9D8,\n\t15891: 0xF9D9,\n\t15892: 0xF9DA,\n\t15893: 0xF9DB,\n\t15894: 0x807F,\n\t15895: 0x620E,\n\t15896: 0x701C,\n\t15897: 0x7D68,\n\t15898: 0x878D,\n\t15899: 0xF9DC,\n\t15900: 0x57A0,\n\t15901: 0x6069,\n\t15902: 0x6147,\n\t15903: 0x6BB7,\n\t15904: 0x8ABE,\n\t15905: 0x9280,\n\t15906: 0x96B1,\n\t15907: 0x4E59,\n\t15908: 0x541F,\n\t15909: 0x6DEB,\n\t15910: 0x852D,\n\t15911: 0x9670,\n\t15912: 0x97F3,\n\t15913: 0x98EE,\n\t15914: 0x63D6,\n\t15915: 0x6CE3,\n\t15916: 0x9091,\n\t15917: 0x51DD,\n\t15918: 0x61C9,\n\t15919: 0x81BA,\n\t15920: 0x9DF9,\n\t15921: 0x4F9D,\n\t15922: 0x501A,\n\t15923: 0x5100,\n\t15924: 0x5B9C,\n\t15925: 0x610F,\n\t15926: 0x61FF,\n\t15927: 0x64EC,\n\t15928: 0x6905,\n\t15929: 0x6BC5,\n\t15930: 0x7591,\n\t15931: 0x77E3,\n\t15932: 0x7FA9,\n\t15933: 0x8264,\n\t15934: 0x858F,\n\t15935: 0x87FB,\n\t15936: 0x8863,\n\t15937: 0x8ABC,\n\t15938: 0x8B70,\n\t15939: 0x91AB,\n\t15940: 0x4E8C,\n\t15941: 0x4EE5,\n\t15942: 0x4F0A,\n\t15943: 0xF9DD,\n\t15944: 0xF9DE,\n\t15945: 0x5937,\n\t15946: 0x59E8,\n\t15947: 0xF9DF,\n\t15948: 0x5DF2,\n\t15949: 0x5F1B,\n\t15950: 0x5F5B,\n\t15951: 0x6021,\n\t15952: 0xF9E0,\n\t15953: 0xF9E1,\n\t15954: 0xF9E2,\n\t15955: 0xF9E3,\n\t15956: 0x723E,\n\t15957: 0x73E5,\n\t15958: 0xF9E4,\n\t15959: 0x7570,\n\t15960: 0x75CD,\n\t15961: 0xF9E5,\n\t15962: 0x79FB,\n\t15963: 0xF9E6,\n\t15964: 0x800C,\n\t15965: 0x8033,\n\t15966: 0x8084,\n\t15967: 0x82E1,\n\t15968: 0x8351,\n\t15969: 0xF9E7,\n\t15970: 0xF9E8,\n\t15971: 0x8CBD,\n\t15972: 0x8CB3,\n\t15973: 0x9087,\n\t15974: 0xF9E9,\n\t15975: 0xF9EA,\n\t15976: 0x98F4,\n\t15977: 0x990C,\n\t15978: 0xF9EB,\n\t15979: 0xF9EC,\n\t15980: 0x7037,\n\t15981: 0x76CA,\n\t15982: 0x7FCA,\n\t15983: 0x7FCC,\n\t15984: 0x7FFC,\n\t15985: 0x8B1A,\n\t15986: 0x4EBA,\n\t15987: 0x4EC1,\n\t15988: 0x5203,\n\t15989: 0x5370,\n\t15990: 0xF9ED,\n\t15991: 0x54BD,\n\t15992: 0x56E0,\n\t15993: 0x59FB,\n\t15994: 0x5BC5,\n\t15995: 0x5F15,\n\t15996: 0x5FCD,\n\t15997: 0x6E6E,\n\t15998: 0xF9EE,\n\t15999: 0xF9EF,\n\t16000: 0x7D6A,\n\t16001: 0x8335,\n\t16002: 0xF9F0,\n\t16003: 0x8693,\n\t16004: 0x8A8D,\n\t16005: 0xF9F1,\n\t16006: 0x976D,\n\t16007: 0x9777,\n\t16008: 0xF9F2,\n\t16009: 0xF9F3,\n\t16010: 0x4E00,\n\t16011: 0x4F5A,\n\t16012: 0x4F7E,\n\t16013: 0x58F9,\n\t16014: 0x65E5,\n\t16015: 0x6EA2,\n\t16016: 0x9038,\n\t16017: 0x93B0,\n\t16018: 0x99B9,\n\t16019: 0x4EFB,\n\t16020: 0x58EC,\n\t16021: 0x598A,\n\t16022: 0x59D9,\n\t16023: 0x6041,\n\t16024: 0xF9F4,\n\t16025: 0xF9F5,\n\t16026: 0x7A14,\n\t16027: 0xF9F6,\n\t16028: 0x834F,\n\t16029: 0x8CC3,\n\t16030: 0x5165,\n\t16031: 0x5344,\n\t16032: 0xF9F7,\n\t16033: 0xF9F8,\n\t16034: 0xF9F9,\n\t16035: 0x4ECD,\n\t16036: 0x5269,\n\t16037: 0x5B55,\n\t16038: 0x82BF,\n\t16039: 0x4ED4,\n\t16040: 0x523A,\n\t16041: 0x54A8,\n\t16042: 0x59C9,\n\t16043: 0x59FF,\n\t16044: 0x5B50,\n\t16045: 0x5B57,\n\t16046: 0x5B5C,\n\t16047: 0x6063,\n\t16048: 0x6148,\n\t16049: 0x6ECB,\n\t16050: 0x7099,\n\t16051: 0x716E,\n\t16052: 0x7386,\n\t16053: 0x74F7,\n\t16054: 0x75B5,\n\t16055: 0x78C1,\n\t16056: 0x7D2B,\n\t16057: 0x8005,\n\t16058: 0x81EA,\n\t16059: 0x8328,\n\t16060: 0x8517,\n\t16061: 0x85C9,\n\t16062: 0x8AEE,\n\t16063: 0x8CC7,\n\t16064: 0x96CC,\n\t16065: 0x4F5C,\n\t16066: 0x52FA,\n\t16067: 0x56BC,\n\t16068: 0x65AB,\n\t16069: 0x6628,\n\t16070: 0x707C,\n\t16071: 0x70B8,\n\t16072: 0x7235,\n\t16073: 0x7DBD,\n\t16074: 0x828D,\n\t16075: 0x914C,\n\t16076: 0x96C0,\n\t16077: 0x9D72,\n\t16078: 0x5B71,\n\t16079: 0x68E7,\n\t16080: 0x6B98,\n\t16081: 0x6F7A,\n\t16082: 0x76DE,\n\t16083: 0x5C91,\n\t16084: 0x66AB,\n\t16085: 0x6F5B,\n\t16086: 0x7BB4,\n\t16087: 0x7C2A,\n\t16088: 0x8836,\n\t16089: 0x96DC,\n\t16090: 0x4E08,\n\t16091: 0x4ED7,\n\t16092: 0x5320,\n\t16093: 0x5834,\n\t16094: 0x58BB,\n\t16095: 0x58EF,\n\t16096: 0x596C,\n\t16097: 0x5C07,\n\t16098: 0x5E33,\n\t16099: 0x5E84,\n\t16100: 0x5F35,\n\t16101: 0x638C,\n\t16102: 0x66B2,\n\t16103: 0x6756,\n\t16104: 0x6A1F,\n\t16105: 0x6AA3,\n\t16106: 0x6B0C,\n\t16107: 0x6F3F,\n\t16108: 0x7246,\n\t16109: 0xF9FA,\n\t16110: 0x7350,\n\t16111: 0x748B,\n\t16112: 0x7AE0,\n\t16113: 0x7CA7,\n\t16114: 0x8178,\n\t16115: 0x81DF,\n\t16116: 0x81E7,\n\t16117: 0x838A,\n\t16118: 0x846C,\n\t16119: 0x8523,\n\t16120: 0x8594,\n\t16121: 0x85CF,\n\t16122: 0x88DD,\n\t16123: 0x8D13,\n\t16124: 0x91AC,\n\t16125: 0x9577,\n\t16126: 0x969C,\n\t16127: 0x518D,\n\t16128: 0x54C9,\n\t16129: 0x5728,\n\t16130: 0x5BB0,\n\t16131: 0x624D,\n\t16132: 0x6750,\n\t16133: 0x683D,\n\t16134: 0x6893,\n\t16135: 0x6E3D,\n\t16136: 0x6ED3,\n\t16137: 0x707D,\n\t16138: 0x7E21,\n\t16139: 0x88C1,\n\t16140: 0x8CA1,\n\t16141: 0x8F09,\n\t16142: 0x9F4B,\n\t16143: 0x9F4E,\n\t16144: 0x722D,\n\t16145: 0x7B8F,\n\t16146: 0x8ACD,\n\t16147: 0x931A,\n\t16148: 0x4F47,\n\t16149: 0x4F4E,\n\t16150: 0x5132,\n\t16151: 0x5480,\n\t16152: 0x59D0,\n\t16153: 0x5E95,\n\t16154: 0x62B5,\n\t16155: 0x6775,\n\t16156: 0x696E,\n\t16157: 0x6A17,\n\t16158: 0x6CAE,\n\t16159: 0x6E1A,\n\t16160: 0x72D9,\n\t16161: 0x732A,\n\t16162: 0x75BD,\n\t16163: 0x7BB8,\n\t16164: 0x7D35,\n\t16165: 0x82E7,\n\t16166: 0x83F9,\n\t16167: 0x8457,\n\t16168: 0x85F7,\n\t16169: 0x8A5B,\n\t16170: 0x8CAF,\n\t16171: 0x8E87,\n\t16172: 0x9019,\n\t16173: 0x90B8,\n\t16174: 0x96CE,\n\t16175: 0x9F5F,\n\t16176: 0x52E3,\n\t16177: 0x540A,\n\t16178: 0x5AE1,\n\t16179: 0x5BC2,\n\t16180: 0x6458,\n\t16181: 0x6575,\n\t16182: 0x6EF4,\n\t16183: 0x72C4,\n\t16184: 0xF9FB,\n\t16185: 0x7684,\n\t16186: 0x7A4D,\n\t16187: 0x7B1B,\n\t16188: 0x7C4D,\n\t16189: 0x7E3E,\n\t16190: 0x7FDF,\n\t16191: 0x837B,\n\t16192: 0x8B2B,\n\t16193: 0x8CCA,\n\t16194: 0x8D64,\n\t16195: 0x8DE1,\n\t16196: 0x8E5F,\n\t16197: 0x8FEA,\n\t16198: 0x8FF9,\n\t16199: 0x9069,\n\t16200: 0x93D1,\n\t16201: 0x4F43,\n\t16202: 0x4F7A,\n\t16203: 0x50B3,\n\t16204: 0x5168,\n\t16205: 0x5178,\n\t16206: 0x524D,\n\t16207: 0x526A,\n\t16208: 0x5861,\n\t16209: 0x587C,\n\t16210: 0x5960,\n\t16211: 0x5C08,\n\t16212: 0x5C55,\n\t16213: 0x5EDB,\n\t16214: 0x609B,\n\t16215: 0x6230,\n\t16216: 0x6813,\n\t16217: 0x6BBF,\n\t16218: 0x6C08,\n\t16219: 0x6FB1,\n\t16220: 0x714E,\n\t16221: 0x7420,\n\t16222: 0x7530,\n\t16223: 0x7538,\n\t16224: 0x7551,\n\t16225: 0x7672,\n\t16226: 0x7B4C,\n\t16227: 0x7B8B,\n\t16228: 0x7BAD,\n\t16229: 0x7BC6,\n\t16230: 0x7E8F,\n\t16231: 0x8A6E,\n\t16232: 0x8F3E,\n\t16233: 0x8F49,\n\t16234: 0x923F,\n\t16235: 0x9293,\n\t16236: 0x9322,\n\t16237: 0x942B,\n\t16238: 0x96FB,\n\t16239: 0x985A,\n\t16240: 0x986B,\n\t16241: 0x991E,\n\t16242: 0x5207,\n\t16243: 0x622A,\n\t16244: 0x6298,\n\t16245: 0x6D59,\n\t16246: 0x7664,\n\t16247: 0x7ACA,\n\t16248: 0x7BC0,\n\t16249: 0x7D76,\n\t16250: 0x5360,\n\t16251: 0x5CBE,\n\t16252: 0x5E97,\n\t16253: 0x6F38,\n\t16254: 0x70B9,\n\t16255: 0x7C98,\n\t16256: 0x9711,\n\t16257: 0x9B8E,\n\t16258: 0x9EDE,\n\t16259: 0x63A5,\n\t16260: 0x647A,\n\t16261: 0x8776,\n\t16262: 0x4E01,\n\t16263: 0x4E95,\n\t16264: 0x4EAD,\n\t16265: 0x505C,\n\t16266: 0x5075,\n\t16267: 0x5448,\n\t16268: 0x59C3,\n\t16269: 0x5B9A,\n\t16270: 0x5E40,\n\t16271: 0x5EAD,\n\t16272: 0x5EF7,\n\t16273: 0x5F81,\n\t16274: 0x60C5,\n\t16275: 0x633A,\n\t16276: 0x653F,\n\t16277: 0x6574,\n\t16278: 0x65CC,\n\t16279: 0x6676,\n\t16280: 0x6678,\n\t16281: 0x67FE,\n\t16282: 0x6968,\n\t16283: 0x6A89,\n\t16284: 0x6B63,\n\t16285: 0x6C40,\n\t16286: 0x6DC0,\n\t16287: 0x6DE8,\n\t16288: 0x6E1F,\n\t16289: 0x6E5E,\n\t16290: 0x701E,\n\t16291: 0x70A1,\n\t16292: 0x738E,\n\t16293: 0x73FD,\n\t16294: 0x753A,\n\t16295: 0x775B,\n\t16296: 0x7887,\n\t16297: 0x798E,\n\t16298: 0x7A0B,\n\t16299: 0x7A7D,\n\t16300: 0x7CBE,\n\t16301: 0x7D8E,\n\t16302: 0x8247,\n\t16303: 0x8A02,\n\t16304: 0x8AEA,\n\t16305: 0x8C9E,\n\t16306: 0x912D,\n\t16307: 0x914A,\n\t16308: 0x91D8,\n\t16309: 0x9266,\n\t16310: 0x92CC,\n\t16311: 0x9320,\n\t16312: 0x9706,\n\t16313: 0x9756,\n\t16314: 0x975C,\n\t16315: 0x9802,\n\t16316: 0x9F0E,\n\t16317: 0x5236,\n\t16318: 0x5291,\n\t16319: 0x557C,\n\t16320: 0x5824,\n\t16321: 0x5E1D,\n\t16322: 0x5F1F,\n\t16323: 0x608C,\n\t16324: 0x63D0,\n\t16325: 0x68AF,\n\t16326: 0x6FDF,\n\t16327: 0x796D,\n\t16328: 0x7B2C,\n\t16329: 0x81CD,\n\t16330: 0x85BA,\n\t16331: 0x88FD,\n\t16332: 0x8AF8,\n\t16333: 0x8E44,\n\t16334: 0x918D,\n\t16335: 0x9664,\n\t16336: 0x969B,\n\t16337: 0x973D,\n\t16338: 0x984C,\n\t16339: 0x9F4A,\n\t16340: 0x4FCE,\n\t16341: 0x5146,\n\t16342: 0x51CB,\n\t16343: 0x52A9,\n\t16344: 0x5632,\n\t16345: 0x5F14,\n\t16346: 0x5F6B,\n\t16347: 0x63AA,\n\t16348: 0x64CD,\n\t16349: 0x65E9,\n\t16350: 0x6641,\n\t16351: 0x66FA,\n\t16352: 0x66F9,\n\t16353: 0x671D,\n\t16354: 0x689D,\n\t16355: 0x68D7,\n\t16356: 0x69FD,\n\t16357: 0x6F15,\n\t16358: 0x6F6E,\n\t16359: 0x7167,\n\t16360: 0x71E5,\n\t16361: 0x722A,\n\t16362: 0x74AA,\n\t16363: 0x773A,\n\t16364: 0x7956,\n\t16365: 0x795A,\n\t16366: 0x79DF,\n\t16367: 0x7A20,\n\t16368: 0x7A95,\n\t16369: 0x7C97,\n\t16370: 0x7CDF,\n\t16371: 0x7D44,\n\t16372: 0x7E70,\n\t16373: 0x8087,\n\t16374: 0x85FB,\n\t16375: 0x86A4,\n\t16376: 0x8A54,\n\t16377: 0x8ABF,\n\t16378: 0x8D99,\n\t16379: 0x8E81,\n\t16380: 0x9020,\n\t16381: 0x906D,\n\t16382: 0x91E3,\n\t16383: 0x963B,\n\t16384: 0x96D5,\n\t16385: 0x9CE5,\n\t16386: 0x65CF,\n\t16387: 0x7C07,\n\t16388: 0x8DB3,\n\t16389: 0x93C3,\n\t16390: 0x5B58,\n\t16391: 0x5C0A,\n\t16392: 0x5352,\n\t16393: 0x62D9,\n\t16394: 0x731D,\n\t16395: 0x5027,\n\t16396: 0x5B97,\n\t16397: 0x5F9E,\n\t16398: 0x60B0,\n\t16399: 0x616B,\n\t16400: 0x68D5,\n\t16401: 0x6DD9,\n\t16402: 0x742E,\n\t16403: 0x7A2E,\n\t16404: 0x7D42,\n\t16405: 0x7D9C,\n\t16406: 0x7E31,\n\t16407: 0x816B,\n\t16408: 0x8E2A,\n\t16409: 0x8E35,\n\t16410: 0x937E,\n\t16411: 0x9418,\n\t16412: 0x4F50,\n\t16413: 0x5750,\n\t16414: 0x5DE6,\n\t16415: 0x5EA7,\n\t16416: 0x632B,\n\t16417: 0x7F6A,\n\t16418: 0x4E3B,\n\t16419: 0x4F4F,\n\t16420: 0x4F8F,\n\t16421: 0x505A,\n\t16422: 0x59DD,\n\t16423: 0x80C4,\n\t16424: 0x546A,\n\t16425: 0x5468,\n\t16426: 0x55FE,\n\t16427: 0x594F,\n\t16428: 0x5B99,\n\t16429: 0x5DDE,\n\t16430: 0x5EDA,\n\t16431: 0x665D,\n\t16432: 0x6731,\n\t16433: 0x67F1,\n\t16434: 0x682A,\n\t16435: 0x6CE8,\n\t16436: 0x6D32,\n\t16437: 0x6E4A,\n\t16438: 0x6F8D,\n\t16439: 0x70B7,\n\t16440: 0x73E0,\n\t16441: 0x7587,\n\t16442: 0x7C4C,\n\t16443: 0x7D02,\n\t16444: 0x7D2C,\n\t16445: 0x7DA2,\n\t16446: 0x821F,\n\t16447: 0x86DB,\n\t16448: 0x8A3B,\n\t16449: 0x8A85,\n\t16450: 0x8D70,\n\t16451: 0x8E8A,\n\t16452: 0x8F33,\n\t16453: 0x9031,\n\t16454: 0x914E,\n\t16455: 0x9152,\n\t16456: 0x9444,\n\t16457: 0x99D0,\n\t16458: 0x7AF9,\n\t16459: 0x7CA5,\n\t16460: 0x4FCA,\n\t16461: 0x5101,\n\t16462: 0x51C6,\n\t16463: 0x57C8,\n\t16464: 0x5BEF,\n\t16465: 0x5CFB,\n\t16466: 0x6659,\n\t16467: 0x6A3D,\n\t16468: 0x6D5A,\n\t16469: 0x6E96,\n\t16470: 0x6FEC,\n\t16471: 0x710C,\n\t16472: 0x756F,\n\t16473: 0x7AE3,\n\t16474: 0x8822,\n\t16475: 0x9021,\n\t16476: 0x9075,\n\t16477: 0x96CB,\n\t16478: 0x99FF,\n\t16479: 0x8301,\n\t16480: 0x4E2D,\n\t16481: 0x4EF2,\n\t16482: 0x8846,\n\t16483: 0x91CD,\n\t16484: 0x537D,\n\t16485: 0x6ADB,\n\t16486: 0x696B,\n\t16487: 0x6C41,\n\t16488: 0x847A,\n\t16489: 0x589E,\n\t16490: 0x618E,\n\t16491: 0x66FE,\n\t16492: 0x62EF,\n\t16493: 0x70DD,\n\t16494: 0x7511,\n\t16495: 0x75C7,\n\t16496: 0x7E52,\n\t16497: 0x84B8,\n\t16498: 0x8B49,\n\t16499: 0x8D08,\n\t16500: 0x4E4B,\n\t16501: 0x53EA,\n\t16502: 0x54AB,\n\t16503: 0x5730,\n\t16504: 0x5740,\n\t16505: 0x5FD7,\n\t16506: 0x6301,\n\t16507: 0x6307,\n\t16508: 0x646F,\n\t16509: 0x652F,\n\t16510: 0x65E8,\n\t16511: 0x667A,\n\t16512: 0x679D,\n\t16513: 0x67B3,\n\t16514: 0x6B62,\n\t16515: 0x6C60,\n\t16516: 0x6C9A,\n\t16517: 0x6F2C,\n\t16518: 0x77E5,\n\t16519: 0x7825,\n\t16520: 0x7949,\n\t16521: 0x7957,\n\t16522: 0x7D19,\n\t16523: 0x80A2,\n\t16524: 0x8102,\n\t16525: 0x81F3,\n\t16526: 0x829D,\n\t16527: 0x82B7,\n\t16528: 0x8718,\n\t16529: 0x8A8C,\n\t16530: 0xF9FC,\n\t16531: 0x8D04,\n\t16532: 0x8DBE,\n\t16533: 0x9072,\n\t16534: 0x76F4,\n\t16535: 0x7A19,\n\t16536: 0x7A37,\n\t16537: 0x7E54,\n\t16538: 0x8077,\n\t16539: 0x5507,\n\t16540: 0x55D4,\n\t16541: 0x5875,\n\t16542: 0x632F,\n\t16543: 0x6422,\n\t16544: 0x6649,\n\t16545: 0x664B,\n\t16546: 0x686D,\n\t16547: 0x699B,\n\t16548: 0x6B84,\n\t16549: 0x6D25,\n\t16550: 0x6EB1,\n\t16551: 0x73CD,\n\t16552: 0x7468,\n\t16553: 0x74A1,\n\t16554: 0x755B,\n\t16555: 0x75B9,\n\t16556: 0x76E1,\n\t16557: 0x771E,\n\t16558: 0x778B,\n\t16559: 0x79E6,\n\t16560: 0x7E09,\n\t16561: 0x7E1D,\n\t16562: 0x81FB,\n\t16563: 0x852F,\n\t16564: 0x8897,\n\t16565: 0x8A3A,\n\t16566: 0x8CD1,\n\t16567: 0x8EEB,\n\t16568: 0x8FB0,\n\t16569: 0x9032,\n\t16570: 0x93AD,\n\t16571: 0x9663,\n\t16572: 0x9673,\n\t16573: 0x9707,\n\t16574: 0x4F84,\n\t16575: 0x53F1,\n\t16576: 0x59EA,\n\t16577: 0x5AC9,\n\t16578: 0x5E19,\n\t16579: 0x684E,\n\t16580: 0x74C6,\n\t16581: 0x75BE,\n\t16582: 0x79E9,\n\t16583: 0x7A92,\n\t16584: 0x81A3,\n\t16585: 0x86ED,\n\t16586: 0x8CEA,\n\t16587: 0x8DCC,\n\t16588: 0x8FED,\n\t16589: 0x659F,\n\t16590: 0x6715,\n\t16591: 0xF9FD,\n\t16592: 0x57F7,\n\t16593: 0x6F57,\n\t16594: 0x7DDD,\n\t16595: 0x8F2F,\n\t16596: 0x93F6,\n\t16597: 0x96C6,\n\t16598: 0x5FB5,\n\t16599: 0x61F2,\n\t16600: 0x6F84,\n\t16601: 0x4E14,\n\t16602: 0x4F98,\n\t16603: 0x501F,\n\t16604: 0x53C9,\n\t16605: 0x55DF,\n\t16606: 0x5D6F,\n\t16607: 0x5DEE,\n\t16608: 0x6B21,\n\t16609: 0x6B64,\n\t16610: 0x78CB,\n\t16611: 0x7B9A,\n\t16612: 0xF9FE,\n\t16613: 0x8E49,\n\t16614: 0x8ECA,\n\t16615: 0x906E,\n\t16616: 0x6349,\n\t16617: 0x643E,\n\t16618: 0x7740,\n\t16619: 0x7A84,\n\t16620: 0x932F,\n\t16621: 0x947F,\n\t16622: 0x9F6A,\n\t16623: 0x64B0,\n\t16624: 0x6FAF,\n\t16625: 0x71E6,\n\t16626: 0x74A8,\n\t16627: 0x74DA,\n\t16628: 0x7AC4,\n\t16629: 0x7C12,\n\t16630: 0x7E82,\n\t16631: 0x7CB2,\n\t16632: 0x7E98,\n\t16633: 0x8B9A,\n\t16634: 0x8D0A,\n\t16635: 0x947D,\n\t16636: 0x9910,\n\t16637: 0x994C,\n\t16638: 0x5239,\n\t16639: 0x5BDF,\n\t16640: 0x64E6,\n\t16641: 0x672D,\n\t16642: 0x7D2E,\n\t16643: 0x50ED,\n\t16644: 0x53C3,\n\t16645: 0x5879,\n\t16646: 0x6158,\n\t16647: 0x6159,\n\t16648: 0x61FA,\n\t16649: 0x65AC,\n\t16650: 0x7AD9,\n\t16651: 0x8B92,\n\t16652: 0x8B96,\n\t16653: 0x5009,\n\t16654: 0x5021,\n\t16655: 0x5275,\n\t16656: 0x5531,\n\t16657: 0x5A3C,\n\t16658: 0x5EE0,\n\t16659: 0x5F70,\n\t16660: 0x6134,\n\t16661: 0x655E,\n\t16662: 0x660C,\n\t16663: 0x6636,\n\t16664: 0x66A2,\n\t16665: 0x69CD,\n\t16666: 0x6EC4,\n\t16667: 0x6F32,\n\t16668: 0x7316,\n\t16669: 0x7621,\n\t16670: 0x7A93,\n\t16671: 0x8139,\n\t16672: 0x8259,\n\t16673: 0x83D6,\n\t16674: 0x84BC,\n\t16675: 0x50B5,\n\t16676: 0x57F0,\n\t16677: 0x5BC0,\n\t16678: 0x5BE8,\n\t16679: 0x5F69,\n\t16680: 0x63A1,\n\t16681: 0x7826,\n\t16682: 0x7DB5,\n\t16683: 0x83DC,\n\t16684: 0x8521,\n\t16685: 0x91C7,\n\t16686: 0x91F5,\n\t16687: 0x518A,\n\t16688: 0x67F5,\n\t16689: 0x7B56,\n\t16690: 0x8CAC,\n\t16691: 0x51C4,\n\t16692: 0x59BB,\n\t16693: 0x60BD,\n\t16694: 0x8655,\n\t16695: 0x501C,\n\t16696: 0xF9FF,\n\t16697: 0x5254,\n\t16698: 0x5C3A,\n\t16699: 0x617D,\n\t16700: 0x621A,\n\t16701: 0x62D3,\n\t16702: 0x64F2,\n\t16703: 0x65A5,\n\t16704: 0x6ECC,\n\t16705: 0x7620,\n\t16706: 0x810A,\n\t16707: 0x8E60,\n\t16708: 0x965F,\n\t16709: 0x96BB,\n\t16710: 0x4EDF,\n\t16711: 0x5343,\n\t16712: 0x5598,\n\t16713: 0x5929,\n\t16714: 0x5DDD,\n\t16715: 0x64C5,\n\t16716: 0x6CC9,\n\t16717: 0x6DFA,\n\t16718: 0x7394,\n\t16719: 0x7A7F,\n\t16720: 0x821B,\n\t16721: 0x85A6,\n\t16722: 0x8CE4,\n\t16723: 0x8E10,\n\t16724: 0x9077,\n\t16725: 0x91E7,\n\t16726: 0x95E1,\n\t16727: 0x9621,\n\t16728: 0x97C6,\n\t16729: 0x51F8,\n\t16730: 0x54F2,\n\t16731: 0x5586,\n\t16732: 0x5FB9,\n\t16733: 0x64A4,\n\t16734: 0x6F88,\n\t16735: 0x7DB4,\n\t16736: 0x8F1F,\n\t16737: 0x8F4D,\n\t16738: 0x9435,\n\t16739: 0x50C9,\n\t16740: 0x5C16,\n\t16741: 0x6CBE,\n\t16742: 0x6DFB,\n\t16743: 0x751B,\n\t16744: 0x77BB,\n\t16745: 0x7C3D,\n\t16746: 0x7C64,\n\t16747: 0x8A79,\n\t16748: 0x8AC2,\n\t16749: 0x581E,\n\t16750: 0x59BE,\n\t16751: 0x5E16,\n\t16752: 0x6377,\n\t16753: 0x7252,\n\t16754: 0x758A,\n\t16755: 0x776B,\n\t16756: 0x8ADC,\n\t16757: 0x8CBC,\n\t16758: 0x8F12,\n\t16759: 0x5EF3,\n\t16760: 0x6674,\n\t16761: 0x6DF8,\n\t16762: 0x807D,\n\t16763: 0x83C1,\n\t16764: 0x8ACB,\n\t16765: 0x9751,\n\t16766: 0x9BD6,\n\t16767: 0xFA00,\n\t16768: 0x5243,\n\t16769: 0x66FF,\n\t16770: 0x6D95,\n\t16771: 0x6EEF,\n\t16772: 0x7DE0,\n\t16773: 0x8AE6,\n\t16774: 0x902E,\n\t16775: 0x905E,\n\t16776: 0x9AD4,\n\t16777: 0x521D,\n\t16778: 0x527F,\n\t16779: 0x54E8,\n\t16780: 0x6194,\n\t16781: 0x6284,\n\t16782: 0x62DB,\n\t16783: 0x68A2,\n\t16784: 0x6912,\n\t16785: 0x695A,\n\t16786: 0x6A35,\n\t16787: 0x7092,\n\t16788: 0x7126,\n\t16789: 0x785D,\n\t16790: 0x7901,\n\t16791: 0x790E,\n\t16792: 0x79D2,\n\t16793: 0x7A0D,\n\t16794: 0x8096,\n\t16795: 0x8278,\n\t16796: 0x82D5,\n\t16797: 0x8349,\n\t16798: 0x8549,\n\t16799: 0x8C82,\n\t16800: 0x8D85,\n\t16801: 0x9162,\n\t16802: 0x918B,\n\t16803: 0x91AE,\n\t16804: 0x4FC3,\n\t16805: 0x56D1,\n\t16806: 0x71ED,\n\t16807: 0x77D7,\n\t16808: 0x8700,\n\t16809: 0x89F8,\n\t16810: 0x5BF8,\n\t16811: 0x5FD6,\n\t16812: 0x6751,\n\t16813: 0x90A8,\n\t16814: 0x53E2,\n\t16815: 0x585A,\n\t16816: 0x5BF5,\n\t16817: 0x60A4,\n\t16818: 0x6181,\n\t16819: 0x6460,\n\t16820: 0x7E3D,\n\t16821: 0x8070,\n\t16822: 0x8525,\n\t16823: 0x9283,\n\t16824: 0x64AE,\n\t16825: 0x50AC,\n\t16826: 0x5D14,\n\t16827: 0x6700,\n\t16828: 0x589C,\n\t16829: 0x62BD,\n\t16830: 0x63A8,\n\t16831: 0x690E,\n\t16832: 0x6978,\n\t16833: 0x6A1E,\n\t16834: 0x6E6B,\n\t16835: 0x76BA,\n\t16836: 0x79CB,\n\t16837: 0x82BB,\n\t16838: 0x8429,\n\t16839: 0x8ACF,\n\t16840: 0x8DA8,\n\t16841: 0x8FFD,\n\t16842: 0x9112,\n\t16843: 0x914B,\n\t16844: 0x919C,\n\t16845: 0x9310,\n\t16846: 0x9318,\n\t16847: 0x939A,\n\t16848: 0x96DB,\n\t16849: 0x9A36,\n\t16850: 0x9C0D,\n\t16851: 0x4E11,\n\t16852: 0x755C,\n\t16853: 0x795D,\n\t16854: 0x7AFA,\n\t16855: 0x7B51,\n\t16856: 0x7BC9,\n\t16857: 0x7E2E,\n\t16858: 0x84C4,\n\t16859: 0x8E59,\n\t16860: 0x8E74,\n\t16861: 0x8EF8,\n\t16862: 0x9010,\n\t16863: 0x6625,\n\t16864: 0x693F,\n\t16865: 0x7443,\n\t16866: 0x51FA,\n\t16867: 0x672E,\n\t16868: 0x9EDC,\n\t16869: 0x5145,\n\t16870: 0x5FE0,\n\t16871: 0x6C96,\n\t16872: 0x87F2,\n\t16873: 0x885D,\n\t16874: 0x8877,\n\t16875: 0x60B4,\n\t16876: 0x81B5,\n\t16877: 0x8403,\n\t16878: 0x8D05,\n\t16879: 0x53D6,\n\t16880: 0x5439,\n\t16881: 0x5634,\n\t16882: 0x5A36,\n\t16883: 0x5C31,\n\t16884: 0x708A,\n\t16885: 0x7FE0,\n\t16886: 0x805A,\n\t16887: 0x8106,\n\t16888: 0x81ED,\n\t16889: 0x8DA3,\n\t16890: 0x9189,\n\t16891: 0x9A5F,\n\t16892: 0x9DF2,\n\t16893: 0x5074,\n\t16894: 0x4EC4,\n\t16895: 0x53A0,\n\t16896: 0x60FB,\n\t16897: 0x6E2C,\n\t16898: 0x5C64,\n\t16899: 0x4F88,\n\t16900: 0x5024,\n\t16901: 0x55E4,\n\t16902: 0x5CD9,\n\t16903: 0x5E5F,\n\t16904: 0x6065,\n\t16905: 0x6894,\n\t16906: 0x6CBB,\n\t16907: 0x6DC4,\n\t16908: 0x71BE,\n\t16909: 0x75D4,\n\t16910: 0x75F4,\n\t16911: 0x7661,\n\t16912: 0x7A1A,\n\t16913: 0x7A49,\n\t16914: 0x7DC7,\n\t16915: 0x7DFB,\n\t16916: 0x7F6E,\n\t16917: 0x81F4,\n\t16918: 0x86A9,\n\t16919: 0x8F1C,\n\t16920: 0x96C9,\n\t16921: 0x99B3,\n\t16922: 0x9F52,\n\t16923: 0x5247,\n\t16924: 0x52C5,\n\t16925: 0x98ED,\n\t16926: 0x89AA,\n\t16927: 0x4E03,\n\t16928: 0x67D2,\n\t16929: 0x6F06,\n\t16930: 0x4FB5,\n\t16931: 0x5BE2,\n\t16932: 0x6795,\n\t16933: 0x6C88,\n\t16934: 0x6D78,\n\t16935: 0x741B,\n\t16936: 0x7827,\n\t16937: 0x91DD,\n\t16938: 0x937C,\n\t16939: 0x87C4,\n\t16940: 0x79E4,\n\t16941: 0x7A31,\n\t16942: 0x5FEB,\n\t16943: 0x4ED6,\n\t16944: 0x54A4,\n\t16945: 0x553E,\n\t16946: 0x58AE,\n\t16947: 0x59A5,\n\t16948: 0x60F0,\n\t16949: 0x6253,\n\t16950: 0x62D6,\n\t16951: 0x6736,\n\t16952: 0x6955,\n\t16953: 0x8235,\n\t16954: 0x9640,\n\t16955: 0x99B1,\n\t16956: 0x99DD,\n\t16957: 0x502C,\n\t16958: 0x5353,\n\t16959: 0x5544,\n\t16960: 0x577C,\n\t16961: 0xFA01,\n\t16962: 0x6258,\n\t16963: 0xFA02,\n\t16964: 0x64E2,\n\t16965: 0x666B,\n\t16966: 0x67DD,\n\t16967: 0x6FC1,\n\t16968: 0x6FEF,\n\t16969: 0x7422,\n\t16970: 0x7438,\n\t16971: 0x8A17,\n\t16972: 0x9438,\n\t16973: 0x5451,\n\t16974: 0x5606,\n\t16975: 0x5766,\n\t16976: 0x5F48,\n\t16977: 0x619A,\n\t16978: 0x6B4E,\n\t16979: 0x7058,\n\t16980: 0x70AD,\n\t16981: 0x7DBB,\n\t16982: 0x8A95,\n\t16983: 0x596A,\n\t16984: 0x812B,\n\t16985: 0x63A2,\n\t16986: 0x7708,\n\t16987: 0x803D,\n\t16988: 0x8CAA,\n\t16989: 0x5854,\n\t16990: 0x642D,\n\t16991: 0x69BB,\n\t16992: 0x5B95,\n\t16993: 0x5E11,\n\t16994: 0x6E6F,\n\t16995: 0xFA03,\n\t16996: 0x8569,\n\t16997: 0x514C,\n\t16998: 0x53F0,\n\t16999: 0x592A,\n\t17000: 0x6020,\n\t17001: 0x614B,\n\t17002: 0x6B86,\n\t17003: 0x6C70,\n\t17004: 0x6CF0,\n\t17005: 0x7B1E,\n\t17006: 0x80CE,\n\t17007: 0x82D4,\n\t17008: 0x8DC6,\n\t17009: 0x90B0,\n\t17010: 0x98B1,\n\t17011: 0xFA04,\n\t17012: 0x64C7,\n\t17013: 0x6FA4,\n\t17014: 0x6491,\n\t17015: 0x6504,\n\t17016: 0x514E,\n\t17017: 0x5410,\n\t17018: 0x571F,\n\t17019: 0x8A0E,\n\t17020: 0x615F,\n\t17021: 0x6876,\n\t17022: 0xFA05,\n\t17023: 0x75DB,\n\t17024: 0x7B52,\n\t17025: 0x7D71,\n\t17026: 0x901A,\n\t17027: 0x5806,\n\t17028: 0x69CC,\n\t17029: 0x817F,\n\t17030: 0x892A,\n\t17031: 0x9000,\n\t17032: 0x9839,\n\t17033: 0x5078,\n\t17034: 0x5957,\n\t17035: 0x59AC,\n\t17036: 0x6295,\n\t17037: 0x900F,\n\t17038: 0x9B2A,\n\t17039: 0x615D,\n\t17040: 0x7279,\n\t17041: 0x95D6,\n\t17042: 0x5761,\n\t17043: 0x5A46,\n\t17044: 0x5DF4,\n\t17045: 0x628A,\n\t17046: 0x64AD,\n\t17047: 0x64FA,\n\t17048: 0x6777,\n\t17049: 0x6CE2,\n\t17050: 0x6D3E,\n\t17051: 0x722C,\n\t17052: 0x7436,\n\t17053: 0x7834,\n\t17054: 0x7F77,\n\t17055: 0x82AD,\n\t17056: 0x8DDB,\n\t17057: 0x9817,\n\t17058: 0x5224,\n\t17059: 0x5742,\n\t17060: 0x677F,\n\t17061: 0x7248,\n\t17062: 0x74E3,\n\t17063: 0x8CA9,\n\t17064: 0x8FA6,\n\t17065: 0x9211,\n\t17066: 0x962A,\n\t17067: 0x516B,\n\t17068: 0x53ED,\n\t17069: 0x634C,\n\t17070: 0x4F69,\n\t17071: 0x5504,\n\t17072: 0x6096,\n\t17073: 0x6557,\n\t17074: 0x6C9B,\n\t17075: 0x6D7F,\n\t17076: 0x724C,\n\t17077: 0x72FD,\n\t17078: 0x7A17,\n\t17079: 0x8987,\n\t17080: 0x8C9D,\n\t17081: 0x5F6D,\n\t17082: 0x6F8E,\n\t17083: 0x70F9,\n\t17084: 0x81A8,\n\t17085: 0x610E,\n\t17086: 0x4FBF,\n\t17087: 0x504F,\n\t17088: 0x6241,\n\t17089: 0x7247,\n\t17090: 0x7BC7,\n\t17091: 0x7DE8,\n\t17092: 0x7FE9,\n\t17093: 0x904D,\n\t17094: 0x97AD,\n\t17095: 0x9A19,\n\t17096: 0x8CB6,\n\t17097: 0x576A,\n\t17098: 0x5E73,\n\t17099: 0x67B0,\n\t17100: 0x840D,\n\t17101: 0x8A55,\n\t17102: 0x5420,\n\t17103: 0x5B16,\n\t17104: 0x5E63,\n\t17105: 0x5EE2,\n\t17106: 0x5F0A,\n\t17107: 0x6583,\n\t17108: 0x80BA,\n\t17109: 0x853D,\n\t17110: 0x9589,\n\t17111: 0x965B,\n\t17112: 0x4F48,\n\t17113: 0x5305,\n\t17114: 0x530D,\n\t17115: 0x530F,\n\t17116: 0x5486,\n\t17117: 0x54FA,\n\t17118: 0x5703,\n\t17119: 0x5E03,\n\t17120: 0x6016,\n\t17121: 0x629B,\n\t17122: 0x62B1,\n\t17123: 0x6355,\n\t17124: 0xFA06,\n\t17125: 0x6CE1,\n\t17126: 0x6D66,\n\t17127: 0x75B1,\n\t17128: 0x7832,\n\t17129: 0x80DE,\n\t17130: 0x812F,\n\t17131: 0x82DE,\n\t17132: 0x8461,\n\t17133: 0x84B2,\n\t17134: 0x888D,\n\t17135: 0x8912,\n\t17136: 0x900B,\n\t17137: 0x92EA,\n\t17138: 0x98FD,\n\t17139: 0x9B91,\n\t17140: 0x5E45,\n\t17141: 0x66B4,\n\t17142: 0x66DD,\n\t17143: 0x7011,\n\t17144: 0x7206,\n\t17145: 0xFA07,\n\t17146: 0x4FF5,\n\t17147: 0x527D,\n\t17148: 0x5F6A,\n\t17149: 0x6153,\n\t17150: 0x6753,\n\t17151: 0x6A19,\n\t17152: 0x6F02,\n\t17153: 0x74E2,\n\t17154: 0x7968,\n\t17155: 0x8868,\n\t17156: 0x8C79,\n\t17157: 0x98C7,\n\t17158: 0x98C4,\n\t17159: 0x9A43,\n\t17160: 0x54C1,\n\t17161: 0x7A1F,\n\t17162: 0x6953,\n\t17163: 0x8AF7,\n\t17164: 0x8C4A,\n\t17165: 0x98A8,\n\t17166: 0x99AE,\n\t17167: 0x5F7C,\n\t17168: 0x62AB,\n\t17169: 0x75B2,\n\t17170: 0x76AE,\n\t17171: 0x88AB,\n\t17172: 0x907F,\n\t17173: 0x9642,\n\t17174: 0x5339,\n\t17175: 0x5F3C,\n\t17176: 0x5FC5,\n\t17177: 0x6CCC,\n\t17178: 0x73CC,\n\t17179: 0x7562,\n\t17180: 0x758B,\n\t17181: 0x7B46,\n\t17182: 0x82FE,\n\t17183: 0x999D,\n\t17184: 0x4E4F,\n\t17185: 0x903C,\n\t17186: 0x4E0B,\n\t17187: 0x4F55,\n\t17188: 0x53A6,\n\t17189: 0x590F,\n\t17190: 0x5EC8,\n\t17191: 0x6630,\n\t17192: 0x6CB3,\n\t17193: 0x7455,\n\t17194: 0x8377,\n\t17195: 0x8766,\n\t17196: 0x8CC0,\n\t17197: 0x9050,\n\t17198: 0x971E,\n\t17199: 0x9C15,\n\t17200: 0x58D1,\n\t17201: 0x5B78,\n\t17202: 0x8650,\n\t17203: 0x8B14,\n\t17204: 0x9DB4,\n\t17205: 0x5BD2,\n\t17206: 0x6068,\n\t17207: 0x608D,\n\t17208: 0x65F1,\n\t17209: 0x6C57,\n\t17210: 0x6F22,\n\t17211: 0x6FA3,\n\t17212: 0x701A,\n\t17213: 0x7F55,\n\t17214: 0x7FF0,\n\t17215: 0x9591,\n\t17216: 0x9592,\n\t17217: 0x9650,\n\t17218: 0x97D3,\n\t17219: 0x5272,\n\t17220: 0x8F44,\n\t17221: 0x51FD,\n\t17222: 0x542B,\n\t17223: 0x54B8,\n\t17224: 0x5563,\n\t17225: 0x558A,\n\t17226: 0x6ABB,\n\t17227: 0x6DB5,\n\t17228: 0x7DD8,\n\t17229: 0x8266,\n\t17230: 0x929C,\n\t17231: 0x9677,\n\t17232: 0x9E79,\n\t17233: 0x5408,\n\t17234: 0x54C8,\n\t17235: 0x76D2,\n\t17236: 0x86E4,\n\t17237: 0x95A4,\n\t17238: 0x95D4,\n\t17239: 0x965C,\n\t17240: 0x4EA2,\n\t17241: 0x4F09,\n\t17242: 0x59EE,\n\t17243: 0x5AE6,\n\t17244: 0x5DF7,\n\t17245: 0x6052,\n\t17246: 0x6297,\n\t17247: 0x676D,\n\t17248: 0x6841,\n\t17249: 0x6C86,\n\t17250: 0x6E2F,\n\t17251: 0x7F38,\n\t17252: 0x809B,\n\t17253: 0x822A,\n\t17254: 0xFA08,\n\t17255: 0xFA09,\n\t17256: 0x9805,\n\t17257: 0x4EA5,\n\t17258: 0x5055,\n\t17259: 0x54B3,\n\t17260: 0x5793,\n\t17261: 0x595A,\n\t17262: 0x5B69,\n\t17263: 0x5BB3,\n\t17264: 0x61C8,\n\t17265: 0x6977,\n\t17266: 0x6D77,\n\t17267: 0x7023,\n\t17268: 0x87F9,\n\t17269: 0x89E3,\n\t17270: 0x8A72,\n\t17271: 0x8AE7,\n\t17272: 0x9082,\n\t17273: 0x99ED,\n\t17274: 0x9AB8,\n\t17275: 0x52BE,\n\t17276: 0x6838,\n\t17277: 0x5016,\n\t17278: 0x5E78,\n\t17279: 0x674F,\n\t17280: 0x8347,\n\t17281: 0x884C,\n\t17282: 0x4EAB,\n\t17283: 0x5411,\n\t17284: 0x56AE,\n\t17285: 0x73E6,\n\t17286: 0x9115,\n\t17287: 0x97FF,\n\t17288: 0x9909,\n\t17289: 0x9957,\n\t17290: 0x9999,\n\t17291: 0x5653,\n\t17292: 0x589F,\n\t17293: 0x865B,\n\t17294: 0x8A31,\n\t17295: 0x61B2,\n\t17296: 0x6AF6,\n\t17297: 0x737B,\n\t17298: 0x8ED2,\n\t17299: 0x6B47,\n\t17300: 0x96AA,\n\t17301: 0x9A57,\n\t17302: 0x5955,\n\t17303: 0x7200,\n\t17304: 0x8D6B,\n\t17305: 0x9769,\n\t17306: 0x4FD4,\n\t17307: 0x5CF4,\n\t17308: 0x5F26,\n\t17309: 0x61F8,\n\t17310: 0x665B,\n\t17311: 0x6CEB,\n\t17312: 0x70AB,\n\t17313: 0x7384,\n\t17314: 0x73B9,\n\t17315: 0x73FE,\n\t17316: 0x7729,\n\t17317: 0x774D,\n\t17318: 0x7D43,\n\t17319: 0x7D62,\n\t17320: 0x7E23,\n\t17321: 0x8237,\n\t17322: 0x8852,\n\t17323: 0xFA0A,\n\t17324: 0x8CE2,\n\t17325: 0x9249,\n\t17326: 0x986F,\n\t17327: 0x5B51,\n\t17328: 0x7A74,\n\t17329: 0x8840,\n\t17330: 0x9801,\n\t17331: 0x5ACC,\n\t17332: 0x4FE0,\n\t17333: 0x5354,\n\t17334: 0x593E,\n\t17335: 0x5CFD,\n\t17336: 0x633E,\n\t17337: 0x6D79,\n\t17338: 0x72F9,\n\t17339: 0x8105,\n\t17340: 0x8107,\n\t17341: 0x83A2,\n\t17342: 0x92CF,\n\t17343: 0x9830,\n\t17344: 0x4EA8,\n\t17345: 0x5144,\n\t17346: 0x5211,\n\t17347: 0x578B,\n\t17348: 0x5F62,\n\t17349: 0x6CC2,\n\t17350: 0x6ECE,\n\t17351: 0x7005,\n\t17352: 0x7050,\n\t17353: 0x70AF,\n\t17354: 0x7192,\n\t17355: 0x73E9,\n\t17356: 0x7469,\n\t17357: 0x834A,\n\t17358: 0x87A2,\n\t17359: 0x8861,\n\t17360: 0x9008,\n\t17361: 0x90A2,\n\t17362: 0x93A3,\n\t17363: 0x99A8,\n\t17364: 0x516E,\n\t17365: 0x5F57,\n\t17366: 0x60E0,\n\t17367: 0x6167,\n\t17368: 0x66B3,\n\t17369: 0x8559,\n\t17370: 0x8E4A,\n\t17371: 0x91AF,\n\t17372: 0x978B,\n\t17373: 0x4E4E,\n\t17374: 0x4E92,\n\t17375: 0x547C,\n\t17376: 0x58D5,\n\t17377: 0x58FA,\n\t17378: 0x597D,\n\t17379: 0x5CB5,\n\t17380: 0x5F27,\n\t17381: 0x6236,\n\t17382: 0x6248,\n\t17383: 0x660A,\n\t17384: 0x6667,\n\t17385: 0x6BEB,\n\t17386: 0x6D69,\n\t17387: 0x6DCF,\n\t17388: 0x6E56,\n\t17389: 0x6EF8,\n\t17390: 0x6F94,\n\t17391: 0x6FE0,\n\t17392: 0x6FE9,\n\t17393: 0x705D,\n\t17394: 0x72D0,\n\t17395: 0x7425,\n\t17396: 0x745A,\n\t17397: 0x74E0,\n\t17398: 0x7693,\n\t17399: 0x795C,\n\t17400: 0x7CCA,\n\t17401: 0x7E1E,\n\t17402: 0x80E1,\n\t17403: 0x82A6,\n\t17404: 0x846B,\n\t17405: 0x84BF,\n\t17406: 0x864E,\n\t17407: 0x865F,\n\t17408: 0x8774,\n\t17409: 0x8B77,\n\t17410: 0x8C6A,\n\t17411: 0x93AC,\n\t17412: 0x9800,\n\t17413: 0x9865,\n\t17414: 0x60D1,\n\t17415: 0x6216,\n\t17416: 0x9177,\n\t17417: 0x5A5A,\n\t17418: 0x660F,\n\t17419: 0x6DF7,\n\t17420: 0x6E3E,\n\t17421: 0x743F,\n\t17422: 0x9B42,\n\t17423: 0x5FFD,\n\t17424: 0x60DA,\n\t17425: 0x7B0F,\n\t17426: 0x54C4,\n\t17427: 0x5F18,\n\t17428: 0x6C5E,\n\t17429: 0x6CD3,\n\t17430: 0x6D2A,\n\t17431: 0x70D8,\n\t17432: 0x7D05,\n\t17433: 0x8679,\n\t17434: 0x8A0C,\n\t17435: 0x9D3B,\n\t17436: 0x5316,\n\t17437: 0x548C,\n\t17438: 0x5B05,\n\t17439: 0x6A3A,\n\t17440: 0x706B,\n\t17441: 0x7575,\n\t17442: 0x798D,\n\t17443: 0x79BE,\n\t17444: 0x82B1,\n\t17445: 0x83EF,\n\t17446: 0x8A71,\n\t17447: 0x8B41,\n\t17448: 0x8CA8,\n\t17449: 0x9774,\n\t17450: 0xFA0B,\n\t17451: 0x64F4,\n\t17452: 0x652B,\n\t17453: 0x78BA,\n\t17454: 0x78BB,\n\t17455: 0x7A6B,\n\t17456: 0x4E38,\n\t17457: 0x559A,\n\t17458: 0x5950,\n\t17459: 0x5BA6,\n\t17460: 0x5E7B,\n\t17461: 0x60A3,\n\t17462: 0x63DB,\n\t17463: 0x6B61,\n\t17464: 0x6665,\n\t17465: 0x6853,\n\t17466: 0x6E19,\n\t17467: 0x7165,\n\t17468: 0x74B0,\n\t17469: 0x7D08,\n\t17470: 0x9084,\n\t17471: 0x9A69,\n\t17472: 0x9C25,\n\t17473: 0x6D3B,\n\t17474: 0x6ED1,\n\t17475: 0x733E,\n\t17476: 0x8C41,\n\t17477: 0x95CA,\n\t17478: 0x51F0,\n\t17479: 0x5E4C,\n\t17480: 0x5FA8,\n\t17481: 0x604D,\n\t17482: 0x60F6,\n\t17483: 0x6130,\n\t17484: 0x614C,\n\t17485: 0x6643,\n\t17486: 0x6644,\n\t17487: 0x69A5,\n\t17488: 0x6CC1,\n\t17489: 0x6E5F,\n\t17490: 0x6EC9,\n\t17491: 0x6F62,\n\t17492: 0x714C,\n\t17493: 0x749C,\n\t17494: 0x7687,\n\t17495: 0x7BC1,\n\t17496: 0x7C27,\n\t17497: 0x8352,\n\t17498: 0x8757,\n\t17499: 0x9051,\n\t17500: 0x968D,\n\t17501: 0x9EC3,\n\t17502: 0x532F,\n\t17503: 0x56DE,\n\t17504: 0x5EFB,\n\t17505: 0x5F8A,\n\t17506: 0x6062,\n\t17507: 0x6094,\n\t17508: 0x61F7,\n\t17509: 0x6666,\n\t17510: 0x6703,\n\t17511: 0x6A9C,\n\t17512: 0x6DEE,\n\t17513: 0x6FAE,\n\t17514: 0x7070,\n\t17515: 0x736A,\n\t17516: 0x7E6A,\n\t17517: 0x81BE,\n\t17518: 0x8334,\n\t17519: 0x86D4,\n\t17520: 0x8AA8,\n\t17521: 0x8CC4,\n\t17522: 0x5283,\n\t17523: 0x7372,\n\t17524: 0x5B96,\n\t17525: 0x6A6B,\n\t17526: 0x9404,\n\t17527: 0x54EE,\n\t17528: 0x5686,\n\t17529: 0x5B5D,\n\t17530: 0x6548,\n\t17531: 0x6585,\n\t17532: 0x66C9,\n\t17533: 0x689F,\n\t17534: 0x6D8D,\n\t17535: 0x6DC6,\n\t17536: 0x723B,\n\t17537: 0x80B4,\n\t17538: 0x9175,\n\t17539: 0x9A4D,\n\t17540: 0x4FAF,\n\t17541: 0x5019,\n\t17542: 0x539A,\n\t17543: 0x540E,\n\t17544: 0x543C,\n\t17545: 0x5589,\n\t17546: 0x55C5,\n\t17547: 0x5E3F,\n\t17548: 0x5F8C,\n\t17549: 0x673D,\n\t17550: 0x7166,\n\t17551: 0x73DD,\n\t17552: 0x9005,\n\t17553: 0x52DB,\n\t17554: 0x52F3,\n\t17555: 0x5864,\n\t17556: 0x58CE,\n\t17557: 0x7104,\n\t17558: 0x718F,\n\t17559: 0x71FB,\n\t17560: 0x85B0,\n\t17561: 0x8A13,\n\t17562: 0x6688,\n\t17563: 0x85A8,\n\t17564: 0x55A7,\n\t17565: 0x6684,\n\t17566: 0x714A,\n\t17567: 0x8431,\n\t17568: 0x5349,\n\t17569: 0x5599,\n\t17570: 0x6BC1,\n\t17571: 0x5F59,\n\t17572: 0x5FBD,\n\t17573: 0x63EE,\n\t17574: 0x6689,\n\t17575: 0x7147,\n\t17576: 0x8AF1,\n\t17577: 0x8F1D,\n\t17578: 0x9EBE,\n\t17579: 0x4F11,\n\t17580: 0x643A,\n\t17581: 0x70CB,\n\t17582: 0x7566,\n\t17583: 0x8667,\n\t17584: 0x6064,\n\t17585: 0x8B4E,\n\t17586: 0x9DF8,\n\t17587: 0x5147,\n\t17588: 0x51F6,\n\t17589: 0x5308,\n\t17590: 0x6D36,\n\t17591: 0x80F8,\n\t17592: 0x9ED1,\n\t17593: 0x6615,\n\t17594: 0x6B23,\n\t17595: 0x7098,\n\t17596: 0x75D5,\n\t17597: 0x5403,\n\t17598: 0x5C79,\n\t17599: 0x7D07,\n\t17600: 0x8A16,\n\t17601: 0x6B20,\n\t17602: 0x6B3D,\n\t17603: 0x6B46,\n\t17604: 0x5438,\n\t17605: 0x6070,\n\t17606: 0x6D3D,\n\t17607: 0x7FD5,\n\t17608: 0x8208,\n\t17609: 0x50D6,\n\t17610: 0x51DE,\n\t17611: 0x559C,\n\t17612: 0x566B,\n\t17613: 0x56CD,\n\t17614: 0x59EC,\n\t17615: 0x5B09,\n\t17616: 0x5E0C,\n\t17617: 0x6199,\n\t17618: 0x6198,\n\t17619: 0x6231,\n\t17620: 0x665E,\n\t17621: 0x66E6,\n\t17622: 0x7199,\n\t17623: 0x71B9,\n\t17624: 0x71BA,\n\t17625: 0x72A7,\n\t17626: 0x79A7,\n\t17627: 0x7A00,\n\t17628: 0x7FB2,\n\t17629: 0x8A70,\n}\n\nconst numEncodeTables = 7\n\n// encodeX are the encoding tables from Unicode to EUC-KR code,\n// sorted by decreasing length.\n// encode0: 20893 entries for runes in [19968, 40861).\n// encode1: 11172 entries for runes in [44032, 55204).\n// encode2:  1625 entries for runes in [ 8213,  9838).\n// encode3:   990 entries for runes in [12288, 13278).\n// encode4:   945 entries for runes in [  161,  1106).\n// encode5:   268 entries for runes in [63744, 64012).\n// encode6:   230 entries for runes in [65281, 65511).\n\nconst encode0Low, encode0High = 19968, 40861\n\nvar encode0 = [...]uint16{\n\t19968 - 19968: 0xECE9,\n\t19969 - 19968: 0xEFCB,\n\t19971 - 19968: 0xF6D2,\n\t19975 - 19968: 0xD8B2,\n\t19976 - 19968: 0xEDDB,\n\t19977 - 19968: 0xDFB2,\n\t19978 - 19968: 0xDFBE,\n\t19979 - 19968: 0xF9BB,\n\t19981 - 19968: 0xDCF4,\n\t19985 - 19968: 0xF5E4,\n\t19988 - 19968: 0xF3A6,\n\t19989 - 19968: 0xDDE0,\n\t19990 - 19968: 0xE1A6,\n\t19992 - 19968: 0xCEF8,\n\t19993 - 19968: 0xDCB0,\n\t19998 - 19968: 0xE3AA,\n\t20013 - 19968: 0xF1E9,\n\t20018 - 19968: 0xCDFA,\n\t20024 - 19968: 0xFCAF,\n\t20025 - 19968: 0xD3A1,\n\t20027 - 19968: 0xF1AB,\n\t20034 - 19968: 0xE7D1,\n\t20035 - 19968: 0xD2AC,\n\t20037 - 19968: 0xCEF9,\n\t20043 - 19968: 0xF1FD,\n\t20045 - 19968: 0xDEBF,\n\t20046 - 19968: 0xFBBA,\n\t20047 - 19968: 0xF9B9,\n\t20054 - 19968: 0xCED2,\n\t20056 - 19968: 0xE3AB,\n\t20057 - 19968: 0xEBE0,\n\t20061 - 19968: 0xCEFA,\n\t20062 - 19968: 0xCBF7,\n\t20063 - 19968: 0xE5A5,\n\t20075 - 19968: 0xCAE1,\n\t20077 - 19968: 0xD4CC,\n\t20083 - 19968: 0xEAE1,\n\t20086 - 19968: 0xDCE3,\n\t20087 - 19968: 0xDFAD,\n\t20094 - 19968: 0xCBEB,\n\t20098 - 19968: 0xD5AF,\n\t20102 - 19968: 0xD6F5,\n\t20104 - 19968: 0xE5F8,\n\t20107 - 19968: 0xDEC0,\n\t20108 - 19968: 0xECA3,\n\t20110 - 19968: 0xE9CD,\n\t20112 - 19968: 0xEAA7,\n\t20113 - 19968: 0xE9F6,\n\t20114 - 19968: 0xFBBB,\n\t20116 - 19968: 0xE7E9,\n\t20117 - 19968: 0xEFCC,\n\t20120 - 19968: 0xD0E6,\n\t20123 - 19968: 0xDEC1,\n\t20126 - 19968: 0xE4AC,\n\t20129 - 19968: 0xD8CC,\n\t20130 - 19968: 0xF9F1,\n\t20132 - 19968: 0xCEDF,\n\t20133 - 19968: 0xFAA4,\n\t20134 - 19968: 0xE6B2,\n\t20136 - 19968: 0xFAFB,\n\t20139 - 19968: 0xFABD,\n\t20140 - 19968: 0xCCC8,\n\t20141 - 19968: 0xEFCD,\n\t20142 - 19968: 0xD5D5,\n\t20150 - 19968: 0xD3A2,\n\t20154 - 19968: 0xECD1,\n\t20160 - 19968: 0xE4A7,\n\t20161 - 19968: 0xECD2,\n\t20164 - 19968: 0xF6B1,\n\t20167 - 19968: 0xCEFB,\n\t20170 - 19968: 0xD0D1,\n\t20171 - 19968: 0xCBBF,\n\t20173 - 19968: 0xEDA4,\n\t20180 - 19968: 0xEDA8,\n\t20181 - 19968: 0xDEC2,\n\t20182 - 19968: 0xF6E2,\n\t20183 - 19968: 0xEDDC,\n\t20184 - 19968: 0xDCF5,\n\t20185 - 19968: 0xE0B9,\n\t20189 - 19968: 0xD4CE,\n\t20191 - 19968: 0xF4B5,\n\t20195 - 19968: 0xD3DB,\n\t20196 - 19968: 0xD6B5,\n\t20197 - 19968: 0xECA4,\n\t20208 - 19968: 0xE4E6,\n\t20210 - 19968: 0xF1EA,\n\t20214 - 19968: 0xCBEC,\n\t20215 - 19968: 0xCBC0,\n\t20219 - 19968: 0xECF2,\n\t20225 - 19968: 0xD0EA,\n\t20233 - 19968: 0xF9F2,\n\t20234 - 19968: 0xECA5,\n\t20235 - 19968: 0xD0DF,\n\t20237 - 19968: 0xE7EA,\n\t20238 - 19968: 0xD0EB,\n\t20239 - 19968: 0xDCD1,\n\t20240 - 19968: 0xDBE9,\n\t20241 - 19968: 0xFDCC,\n\t20271 - 19968: 0xDBD7,\n\t20276 - 19968: 0xDAE1,\n\t20278 - 19968: 0xD6B6,\n\t20280 - 19968: 0xE3DF,\n\t20282 - 19968: 0xDEC3,\n\t20284 - 19968: 0xDEC4,\n\t20285 - 19968: 0xCAA1,\n\t20291 - 19968: 0xEEEC,\n\t20294 - 19968: 0xD3A3,\n\t20295 - 19968: 0xEEB7,\n\t20296 - 19968: 0xF8CF,\n\t20301 - 19968: 0xEAC8,\n\t20302 - 19968: 0xEEB8,\n\t20303 - 19968: 0xF1AC,\n\t20304 - 19968: 0xF1A5,\n\t20305 - 19968: 0xE9CE,\n\t20309 - 19968: 0xF9BC,\n\t20313 - 19968: 0xE5F9,\n\t20314 - 19968: 0xECEA,\n\t20315 - 19968: 0xDDD6,\n\t20316 - 19968: 0xEDC2,\n\t20329 - 19968: 0xF8A5,\n\t20335 - 19968: 0xE5BA,\n\t20336 - 19968: 0xDBD8,\n\t20339 - 19968: 0xCAA2,\n\t20342 - 19968: 0xD1CD,\n\t20346 - 19968: 0xEEED,\n\t20350 - 19968: 0xECEB,\n\t20351 - 19968: 0xDEC5,\n\t20353 - 19968: 0xE3E0,\n\t20355 - 19968: 0xCAC9,\n\t20356 - 19968: 0xF2E9,\n\t20358 - 19968: 0xD5CE,\n\t20360 - 19968: 0xF6B6,\n\t20362 - 19968: 0xCEC2,\n\t20363 - 19968: 0xD6C7,\n\t20365 - 19968: 0xE3B4,\n\t20367 - 19968: 0xF1AD,\n\t20369 - 19968: 0xEAE2,\n\t20374 - 19968: 0xD7C2,\n\t20376 - 19968: 0xF3A7,\n\t20379 - 19968: 0xCDEA,\n\t20381 - 19968: 0xEBEE,\n\t20398 - 19968: 0xD9B2,\n\t20399 - 19968: 0xFDA5,\n\t20405 - 19968: 0xF6D5,\n\t20406 - 19968: 0xD5E2,\n\t20415 - 19968: 0xF8B5,\n\t20418 - 19968: 0xCCF5,\n\t20419 - 19968: 0xF5B5,\n\t20420 - 19968: 0xE4AD,\n\t20425 - 19968: 0xE7EB,\n\t20426 - 19968: 0xF1D5,\n\t20430 - 19968: 0xF0BB,\n\t20433 - 19968: 0xE9B5,\n\t20435 - 19968: 0xCCC9,\n\t20436 - 19968: 0xFAD5,\n\t20439 - 19968: 0xE1D4,\n\t20442 - 19968: 0xD7D6,\n\t20445 - 19968: 0xDCC1,\n\t20447 - 19968: 0xDEC6,\n\t20448 - 19968: 0xFAEF,\n\t20449 - 19968: 0xE3E1,\n\t20462 - 19968: 0xE1F3,\n\t20463 - 19968: 0xDCF6,\n\t20465 - 19968: 0xCEFC,\n\t20467 - 19968: 0xDBC4,\n\t20469 - 19968: 0xF8F1,\n\t20472 - 19968: 0xDCE4,\n\t20474 - 19968: 0xE5EF,\n\t20482 - 19968: 0xDCB1,\n\t20486 - 19968: 0xD5D6,\n\t20489 - 19968: 0xF3DA,\n\t20491 - 19968: 0xCBC1,\n\t20493 - 19968: 0xDBC3,\n\t20497 - 19968: 0xD9FA,\n\t20498 - 19968: 0xD3EE,\n\t20502 - 19968: 0xFAB8,\n\t20505 - 19968: 0xFDA6,\n\t20506 - 19968: 0xEBEF,\n\t20508 - 19968: 0xF4A6,\n\t20510 - 19968: 0xCCCA,\n\t20511 - 19968: 0xF3A8,\n\t20513 - 19968: 0xF3DB,\n\t20515 - 19968: 0xDBA7,\n\t20516 - 19968: 0xF6B7,\n\t20518 - 19968: 0xCFE6,\n\t20519 - 19968: 0xF0F2,\n\t20520 - 19968: 0xCBDA,\n\t20522 - 19968: 0xE7D2,\n\t20523 - 19968: 0xD7C3,\n\t20524 - 19968: 0xF6F0,\n\t20525 - 19968: 0xE8DE,\n\t20539 - 19968: 0xE5A6,\n\t20547 - 19968: 0xE5E7,\n\t20551 - 19968: 0xCAA3,\n\t20552 - 19968: 0xCCA7,\n\t20553 - 19968: 0xEAC9,\n\t20559 - 19968: 0xF8B6,\n\t20565 - 19968: 0xFAA5,\n\t20570 - 19968: 0xF1AE,\n\t20572 - 19968: 0xEFCE,\n\t20581 - 19968: 0xCBED,\n\t20596 - 19968: 0xF6B0,\n\t20597 - 19968: 0xEFCF,\n\t20598 - 19968: 0xE9CF,\n\t20600 - 19968: 0xF7DE,\n\t20608 - 19968: 0xCED3,\n\t20613 - 19968: 0xDCF7,\n\t20621 - 19968: 0xDBA8,\n\t20625 - 19968: 0xCBF8,\n\t20632 - 19968: 0xDFA1,\n\t20633 - 19968: 0xDDE1,\n\t20652 - 19968: 0xF5CA,\n\t20653 - 19968: 0xE9B6,\n\t20658 - 19968: 0xE7EC,\n\t20659 - 19968: 0xEEEE,\n\t20661 - 19968: 0xF3F0,\n\t20663 - 19968: 0xDFBF,\n\t20670 - 19968: 0xCCCB,\n\t20677 - 19968: 0xD0C1,\n\t20681 - 19968: 0xF4D2,\n\t20682 - 19968: 0xE0BA,\n\t20687 - 19968: 0xDFC0,\n\t20689 - 19968: 0xCEE0,\n\t20693 - 19968: 0xDCD2,\n\t20694 - 19968: 0xFDEA,\n\t20698 - 19968: 0xD6F6,\n\t20702 - 19968: 0xEACA,\n\t20709 - 19968: 0xE8E9,\n\t20711 - 19968: 0xE3AC,\n\t20717 - 19968: 0xF3D0,\n\t20729 - 19968: 0xCAA4,\n\t20731 - 19968: 0xDBF8,\n\t20735 - 19968: 0xDEC7,\n\t20736 - 19968: 0xEBF0,\n\t20737 - 19968: 0xF1D6,\n\t20740 - 19968: 0xE5E2,\n\t20742 - 19968: 0xCCCC,\n\t20745 - 19968: 0xCBFB,\n\t20754 - 19968: 0xEAE3,\n\t20767 - 19968: 0xDFC1,\n\t20769 - 19968: 0xD6ED,\n\t20778 - 19968: 0xE9D0,\n\t20786 - 19968: 0xEEB9,\n\t20791 - 19968: 0xD5E3,\n\t20794 - 19968: 0xD1D3,\n\t20796 - 19968: 0xE5F0,\n\t20800 - 19968: 0xE8B4,\n\t20801 - 19968: 0xEBC3,\n\t20803 - 19968: 0xEAAA,\n\t20804 - 19968: 0xFAFC,\n\t20805 - 19968: 0xF5F6,\n\t20806 - 19968: 0xF0BC,\n\t20807 - 19968: 0xFDD4,\n\t20808 - 19968: 0xE0BB,\n\t20809 - 19968: 0xCEC3,\n\t20811 - 19968: 0xD0BA,\n\t20812 - 19968: 0xF7BA,\n\t20813 - 19968: 0xD8F3,\n\t20814 - 19968: 0xF7CD,\n\t20818 - 19968: 0xE4AE,\n\t20828 - 19968: 0xD4DF,\n\t20834 - 19968: 0xD0E7,\n\t20837 - 19968: 0xECFD,\n\t20839 - 19968: 0xD2AE,\n\t20840 - 19968: 0xEEEF,\n\t20841 - 19968: 0xD5D7,\n\t20842 - 19968: 0xEAE4,\n\t20843 - 19968: 0xF8A2,\n\t20844 - 19968: 0xCDEB,\n\t20845 - 19968: 0xD7BF,\n\t20846 - 19968: 0xFBB1,\n\t20849 - 19968: 0xCDEC,\n\t20853 - 19968: 0xDCB2,\n\t20854 - 19968: 0xD0EC,\n\t20855 - 19968: 0xCEFD,\n\t20856 - 19968: 0xEEF0,\n\t20860 - 19968: 0xCCC2,\n\t20864 - 19968: 0xD0ED,\n\t20870 - 19968: 0xE5F7,\n\t20874 - 19968: 0xF3FC,\n\t20877 - 19968: 0xEEA2,\n\t20882 - 19968: 0xD9B3,\n\t20885 - 19968: 0xD8F4,\n\t20887 - 19968: 0xE9B7,\n\t20896 - 19968: 0xCEAE,\n\t20901 - 19968: 0xD9A2,\n\t20906 - 19968: 0xD8F1,\n\t20908 - 19968: 0xD4CF,\n\t20918 - 19968: 0xE5A7,\n\t20919 - 19968: 0xD5D2,\n\t20925 - 19968: 0xD6A9,\n\t20932 - 19968: 0xF4A2,\n\t20934 - 19968: 0xF1D7,\n\t20937 - 19968: 0xD5D8,\n\t20939 - 19968: 0xF0BD,\n\t20940 - 19968: 0xD7D0,\n\t20941 - 19968: 0xD4D0,\n\t20956 - 19968: 0xD7CF,\n\t20957 - 19968: 0xEBEA,\n\t20958 - 19968: 0xFDEB,\n\t20961 - 19968: 0xDBED,\n\t20976 - 19968: 0xFCC5,\n\t20977 - 19968: 0xCBC2,\n\t20982 - 19968: 0xFDD5,\n\t20984 - 19968: 0xF4C8,\n\t20985 - 19968: 0xE8EA,\n\t20986 - 19968: 0xF5F3,\n\t20989 - 19968: 0xF9DE,\n\t20992 - 19968: 0xD3EF,\n\t20995 - 19968: 0xECD3,\n\t20998 - 19968: 0xDDC2,\n\t20999 - 19968: 0xEFB7,\n\t21000 - 19968: 0xE7D4,\n\t21002 - 19968: 0xCACA,\n\t21006 - 19968: 0xD9FB,\n\t21009 - 19968: 0xFAFD,\n\t21015 - 19968: 0xD6AA,\n\t21021 - 19968: 0xF4F8,\n\t21028 - 19968: 0xF7F7,\n\t21029 - 19968: 0xDCAC,\n\t21033 - 19968: 0xD7D7,\n\t21034 - 19968: 0xDFA2,\n\t21038 - 19968: 0xCEBE,\n\t21040 - 19968: 0xD3F0,\n\t21046 - 19968: 0xF0A4,\n\t21047 - 19968: 0xE1EC,\n\t21048 - 19968: 0xCFE7,\n\t21049 - 19968: 0xF3CB,\n\t21050 - 19968: 0xEDA9,\n\t21051 - 19968: 0xCABE,\n\t21059 - 19968: 0xF4EF,\n\t21063 - 19968: 0xF6CE,\n\t21066 - 19968: 0xDEFB,\n\t21067 - 19968: 0xD0BB,\n\t21068 - 19968: 0xD5B7,\n\t21069 - 19968: 0xEEF1,\n\t21076 - 19968: 0xF4A8,\n\t21078 - 19968: 0xDCF8,\n\t21083 - 19968: 0xCBA7,\n\t21085 - 19968: 0xDACE,\n\t21089 - 19968: 0xE0E6,\n\t21097 - 19968: 0xEDA5,\n\t21098 - 19968: 0xEEF2,\n\t21103 - 19968: 0xDCF9,\n\t21106 - 19968: 0xF9DC,\n\t21109 - 19968: 0xF3DC,\n\t21117 - 19968: 0xF8F2,\n\t21119 - 19968: 0xF4F9,\n\t21123 - 19968: 0xFCF1,\n\t21127 - 19968: 0xD0BC,\n\t21128 - 19968: 0xDBF9,\n\t21129 - 19968: 0xD7B1,\n\t21133 - 19968: 0xCBFC,\n\t21137 - 19968: 0xF0A5,\n\t21138 - 19968: 0xCBFD,\n\t21147 - 19968: 0xD5F4,\n\t21151 - 19968: 0xCDED,\n\t21152 - 19968: 0xCAA5,\n\t21155 - 19968: 0xD6AB,\n\t21156 - 19968: 0xD0C2,\n\t21161 - 19968: 0xF0BE,\n\t21162 - 19968: 0xD2BD,\n\t21163 - 19968: 0xCCA4,\n\t21182 - 19968: 0xFAB6,\n\t21185 - 19968: 0xCCCD,\n\t21187 - 19968: 0xDAFA,\n\t21189 - 19968: 0xF6CF,\n\t21191 - 19968: 0xE9B8,\n\t21193 - 19968: 0xD8F5,\n\t21197 - 19968: 0xCCCE,\n\t21202 - 19968: 0xD7CD,\n\t21205 - 19968: 0xD4D1,\n\t21206 - 19968: 0xE9ED,\n\t21208 - 19968: 0xCAEB,\n\t21209 - 19968: 0xD9E2,\n\t21211 - 19968: 0xFDB2,\n\t21213 - 19968: 0xE3AD,\n\t21214 - 19968: 0xD6CC,\n\t21215 - 19968: 0xD9B4,\n\t21218 - 19968: 0xE1A7,\n\t21219 - 19968: 0xEED3,\n\t21220 - 19968: 0xD0C3,\n\t21235 - 19968: 0xFDB3,\n\t21237 - 19968: 0xD5E4,\n\t21240 - 19968: 0xCFE8,\n\t21242 - 19968: 0xEDC3,\n\t21243 - 19968: 0xD0B2,\n\t21246 - 19968: 0xCEFE,\n\t21247 - 19968: 0xDAA8,\n\t21253 - 19968: 0xF8D0,\n\t21256 - 19968: 0xFDD6,\n\t21261 - 19968: 0xF8D1,\n\t21263 - 19968: 0xF8D2,\n\t21264 - 19968: 0xDCD3,\n\t21269 - 19968: 0xDDE2,\n\t21270 - 19968: 0xFBF9,\n\t21271 - 19968: 0xDDC1,\n\t21273 - 19968: 0xE3B5,\n\t21280 - 19968: 0xEDDD,\n\t21281 - 19968: 0xCEC4,\n\t21283 - 19968: 0xCBA1,\n\t21290 - 19968: 0xDDE3,\n\t21295 - 19968: 0xFCDD,\n\t21305 - 19968: 0xF9AF,\n\t21311 - 19968: 0xD2FB,\n\t21312 - 19968: 0xCFA1,\n\t21313 - 19968: 0xE4A8,\n\t21315 - 19968: 0xF4B6,\n\t21316 - 19968: 0xECFE,\n\t21319 - 19968: 0xE3AE,\n\t21320 - 19968: 0xE7ED,\n\t21321 - 19968: 0xFDC1,\n\t21322 - 19968: 0xDAE2,\n\t21325 - 19968: 0xD8B3,\n\t21329 - 19968: 0xDDE4,\n\t21330 - 19968: 0xF0EF,\n\t21331 - 19968: 0xF6F1,\n\t21332 - 19968: 0xFAF0,\n\t21335 - 19968: 0xD1F5,\n\t21338 - 19968: 0xDACF,\n\t21340 - 19968: 0xDCD4,\n\t21342 - 19968: 0xDCA6,\n\t21344 - 19968: 0xEFBF,\n\t21350 - 19968: 0xCECF,\n\t21352 - 19968: 0xE0D9,\n\t21359 - 19968: 0xD9D6,\n\t21360 - 19968: 0xECD4,\n\t21361 - 19968: 0xEACB,\n\t21364 - 19968: 0xCABF,\n\t21365 - 19968: 0xD5B0,\n\t21367 - 19968: 0xCFE9,\n\t21373 - 19968: 0xF1ED,\n\t21375 - 19968: 0xCCCF,\n\t21380 - 19968: 0xE4F8,\n\t21395 - 19968: 0xE4ED,\n\t21400 - 19968: 0xD7D8,\n\t21402 - 19968: 0xFDA7,\n\t21407 - 19968: 0xEAAB,\n\t21408 - 19968: 0xF6B2,\n\t21413 - 19968: 0xCFF0,\n\t21414 - 19968: 0xF9BD,\n\t21421 - 19968: 0xE6F4,\n\t21435 - 19968: 0xCBDB,\n\t21443 - 19968: 0xF3D1,\n\t21448 - 19968: 0xE9D1,\n\t21449 - 19968: 0xF3A9,\n\t21450 - 19968: 0xD0E0,\n\t21451 - 19968: 0xE9D2,\n\t21453 - 19968: 0xDAE3,\n\t21460 - 19968: 0xE2D2,\n\t21462 - 19968: 0xF6A2,\n\t21463 - 19968: 0xE1F4,\n\t21467 - 19968: 0xDAE4,\n\t21473 - 19968: 0xE7D5,\n\t21474 - 19968: 0xF5BF,\n\t21475 - 19968: 0xCFA2,\n\t21476 - 19968: 0xCDAF,\n\t21477 - 19968: 0xCFA3,\n\t21481 - 19968: 0xCDB0,\n\t21482 - 19968: 0xF1FE,\n\t21483 - 19968: 0xD0A3,\n\t21484 - 19968: 0xE1AF,\n\t21485 - 19968: 0xF8A3,\n\t21487 - 19968: 0xCAA6,\n\t21488 - 19968: 0xF7BB,\n\t21489 - 19968: 0xF2EA,\n\t21490 - 19968: 0xDEC8,\n\t21491 - 19968: 0xE9D3,\n\t21496 - 19968: 0xDEC9,\n\t21507 - 19968: 0xFDDE,\n\t21508 - 19968: 0xCAC0,\n\t21512 - 19968: 0xF9EA,\n\t21513 - 19968: 0xD1CE,\n\t21514 - 19968: 0xEED4,\n\t21516 - 19968: 0xD4D2,\n\t21517 - 19968: 0xD9A3,\n\t21518 - 19968: 0xFDA8,\n\t21519 - 19968: 0xD7D9,\n\t21520 - 19968: 0xF7CE,\n\t21521 - 19968: 0xFABE,\n\t21531 - 19968: 0xCFD6,\n\t21533 - 19968: 0xD7F0,\n\t21535 - 19968: 0xEBE1,\n\t21536 - 19968: 0xF8C5,\n\t21542 - 19968: 0xDCFA,\n\t21545 - 19968: 0xDDC3,\n\t21547 - 19968: 0xF9DF,\n\t21555 - 19968: 0xE7EF,\n\t21560 - 19968: 0xFDE5,\n\t21561 - 19968: 0xF6A3,\n\t21563 - 19968: 0xD9FC,\n\t21564 - 19968: 0xFDA9,\n\t21566 - 19968: 0xE7EE,\n\t21570 - 19968: 0xD5E5,\n\t21576 - 19968: 0xEFD0,\n\t21578 - 19968: 0xCDB1,\n\t21585 - 19968: 0xF7A2,\n\t21608 - 19968: 0xF1B2,\n\t21610 - 19968: 0xF1B1,\n\t21617 - 19968: 0xCDB2,\n\t21619 - 19968: 0xDAAB,\n\t21621 - 19968: 0xCAA7,\n\t21627 - 19968: 0xE3E2,\n\t21628 - 19968: 0xFBBC,\n\t21629 - 19968: 0xD9A4,\n\t21632 - 19968: 0xEEBA,\n\t21638 - 19968: 0xF8D3,\n\t21644 - 19968: 0xFBFA,\n\t21646 - 19968: 0xCFA4,\n\t21648 - 19968: 0xDCFB,\n\t21668 - 19968: 0xF6E3,\n\t21672 - 19968: 0xEDAA,\n\t21675 - 19968: 0xF2A1,\n\t21676 - 19968: 0xCEE1,\n\t21683 - 19968: 0xFAA6,\n\t21688 - 19968: 0xF9E0,\n\t21693 - 19968: 0xECD6,\n\t21696 - 19968: 0xE4EE,\n\t21697 - 19968: 0xF9A1,\n\t21700 - 19968: 0xFBEF,\n\t21704 - 19968: 0xF9EB,\n\t21705 - 19968: 0xEEA3,\n\t21729 - 19968: 0xEAAC,\n\t21733 - 19968: 0xCAA8,\n\t21736 - 19968: 0xF4FA,\n\t21741 - 19968: 0xCDD6,\n\t21742 - 19968: 0xFCF6,\n\t21746 - 19968: 0xF4C9,\n\t21754 - 19968: 0xF8D4,\n\t21764 - 19968: 0xF8A6,\n\t21766 - 19968: 0xDECA,\n\t21767 - 19968: 0xF2C6,\n\t21774 - 19968: 0xD7DA,\n\t21776 - 19968: 0xD3D0,\n\t21788 - 19968: 0xD8C5,\n\t21807 - 19968: 0xEAE6,\n\t21809 - 19968: 0xF3DD,\n\t21813 - 19968: 0xE4DA,\n\t21822 - 19968: 0xF6E4,\n\t21828 - 19968: 0xF6F2,\n\t21830 - 19968: 0xDFC2,\n\t21839 - 19968: 0xD9FD,\n\t21843 - 19968: 0xCCF6,\n\t21846 - 19968: 0xD3BA,\n\t21854 - 19968: 0xE4AF,\n\t21859 - 19968: 0xF9E1,\n\t21884 - 19968: 0xF0A6,\n\t21888 - 19968: 0xCBD3,\n\t21892 - 19968: 0xE0BC,\n\t21894 - 19968: 0xF4CA,\n\t21895 - 19968: 0xD4FA,\n\t21897 - 19968: 0xFDAA,\n\t21898 - 19968: 0xF9E2,\n\t21912 - 19968: 0xF4B7,\n\t21913 - 19968: 0xFDC2,\n\t21914 - 19968: 0xFCB0,\n\t21916 - 19968: 0xFDEC,\n\t21917 - 19968: 0xCAE2,\n\t21927 - 19968: 0xFDBD,\n\t21929 - 19968: 0xEAE7,\n\t21930 - 19968: 0xDFC3,\n\t21931 - 19968: 0xD1D2,\n\t21932 - 19968: 0xCEE2,\n\t21934 - 19968: 0xD3A4,\n\t21957 - 19968: 0xFDAB,\n\t21959 - 19968: 0xDFE0,\n\t21972 - 19968: 0xF2C7,\n\t21978 - 19968: 0xE7F0,\n\t21980 - 19968: 0xD0EE,\n\t21983 - 19968: 0xF3AA,\n\t21987 - 19968: 0xDECB,\n\t21988 - 19968: 0xF6B8,\n\t22013 - 19968: 0xE1F5,\n\t22014 - 19968: 0xF1B3,\n\t22022 - 19968: 0xF7A3,\n\t22025 - 19968: 0xCAA9,\n\t22036 - 19968: 0xCFA5,\n\t22039 - 19968: 0xDFC4,\n\t22063 - 19968: 0xE1B0,\n\t22066 - 19968: 0xF0BF,\n\t22068 - 19968: 0xF6A4,\n\t22070 - 19968: 0xE3B6,\n\t22099 - 19968: 0xFAC6,\n\t22120 - 19968: 0xD0EF,\n\t22123 - 19968: 0xFDED,\n\t22132 - 19968: 0xDDC4,\n\t22150 - 19968: 0xFCF7,\n\t22181 - 19968: 0xE6BF,\n\t22188 - 19968: 0xDEAD,\n\t22190 - 19968: 0xFABF,\n\t22196 - 19968: 0xE5F1,\n\t22204 - 19968: 0xEDC4,\n\t22218 - 19968: 0xD2A5,\n\t22221 - 19968: 0xFDEE,\n\t22225 - 19968: 0xF5B6,\n\t22234 - 19968: 0xE1F6,\n\t22235 - 19968: 0xDECC,\n\t22238 - 19968: 0xFCDE,\n\t22240 - 19968: 0xECD7,\n\t22256 - 19968: 0xCDDD,\n\t22265 - 19968: 0xD6B7,\n\t22266 - 19968: 0xCDB3,\n\t22275 - 19968: 0xF8D5,\n\t22276 - 19968: 0xE5D8,\n\t22280 - 19968: 0xCFEA,\n\t22283 - 19968: 0xCFD0,\n\t22285 - 19968: 0xEACC,\n\t22290 - 19968: 0xEAAE,\n\t22291 - 19968: 0xEAAD,\n\t22294 - 19968: 0xD3F1,\n\t22296 - 19968: 0xD3A5,\n\t22303 - 19968: 0xF7CF,\n\t22312 - 19968: 0xEEA4,\n\t22317 - 19968: 0xD0A4,\n\t22320 - 19968: 0xF2A2,\n\t22331 - 19968: 0xD0F0,\n\t22336 - 19968: 0xF2A3,\n\t22338 - 19968: 0xF7F8,\n\t22343 - 19968: 0xD0B3,\n\t22346 - 19968: 0xDBA9,\n\t22349 - 19968: 0xD3BB,\n\t22350 - 19968: 0xCAEC,\n\t22352 - 19968: 0xF1A6,\n\t22353 - 19968: 0xCBD5,\n\t22369 - 19968: 0xF7E7,\n\t22372 - 19968: 0xCDDE,\n\t22374 - 19968: 0xF7A4,\n\t22378 - 19968: 0xF8C0,\n\t22382 - 19968: 0xD3DD,\n\t22384 - 19968: 0xCCD0,\n\t22389 - 19968: 0xCFA6,\n\t22396 - 19968: 0xF6F3,\n\t22402 - 19968: 0xE1F7,\n\t22408 - 19968: 0xD3DC,\n\t22411 - 19968: 0xFAFE,\n\t22419 - 19968: 0xFAA7,\n\t22432 - 19968: 0xEBD9,\n\t22434 - 19968: 0xCFA7,\n\t22435 - 19968: 0xEAAF,\n\t22467 - 19968: 0xE4EF,\n\t22471 - 19968: 0xE9B9,\n\t22472 - 19968: 0xF1D8,\n\t22475 - 19968: 0xD8D8,\n\t22478 - 19968: 0xE0F2,\n\t22495 - 19968: 0xE6B4,\n\t22496 - 19968: 0xDCFC,\n\t22512 - 19968: 0xF3F1,\n\t22516 - 19968: 0xE3D0,\n\t22519 - 19968: 0xF2FB,\n\t22521 - 19968: 0xDBC6,\n\t22522 - 19968: 0xD0F1,\n\t22524 - 19968: 0xD0F2,\n\t22528 - 19968: 0xCFDC,\n\t22530 - 19968: 0xD3D1,\n\t22533 - 19968: 0xCCB1,\n\t22534 - 19968: 0xF7D8,\n\t22536 - 19968: 0xCBA8,\n\t22537 - 19968: 0xEBBC,\n\t22538 - 19968: 0xE4BE,\n\t22558 - 19968: 0xF4DC,\n\t22561 - 19968: 0xDCC2,\n\t22564 - 19968: 0xF0A7,\n\t22567 - 19968: 0xE6C0,\n\t22570 - 19968: 0xCAED,\n\t22575 - 19968: 0xE8EB,\n\t22576 - 19968: 0xE5E8,\n\t22577 - 19968: 0xDCC3,\n\t22580 - 19968: 0xEDDE,\n\t22581 - 19968: 0xD3F2,\n\t22586 - 19968: 0xCCF7,\n\t22602 - 19968: 0xCED4,\n\t22603 - 19968: 0xE7AB,\n\t22607 - 19968: 0xCBC3,\n\t22609 - 19968: 0xE1B1,\n\t22612 - 19968: 0xF7B2,\n\t22615 - 19968: 0xD3F3,\n\t22616 - 19968: 0xD3D2,\n\t22618 - 19968: 0xF5C0,\n\t22622 - 19968: 0xDFDD,\n\t22625 - 19968: 0xEEF3,\n\t22626 - 19968: 0xE7F1,\n\t22628 - 19968: 0xFDB4,\n\t22645 - 19968: 0xF2C8,\n\t22649 - 19968: 0xF3D2,\n\t22652 - 19968: 0xEEF4,\n\t22654 - 19968: 0xE2D3,\n\t22659 - 19968: 0xCCD1,\n\t22661 - 19968: 0xDFEA,\n\t22665 - 19968: 0xE9BA,\n\t22675 - 19968: 0xD9D7,\n\t22684 - 19968: 0xF5CD,\n\t22686 - 19968: 0xF1F2,\n\t22687 - 19968: 0xFAC7,\n\t22696 - 19968: 0xD9F8,\n\t22697 - 19968: 0xD4C2,\n\t22702 - 19968: 0xF6E5,\n\t22707 - 19968: 0xDDC5,\n\t22714 - 19968: 0xE7F2,\n\t22715 - 19968: 0xEDDF,\n\t22718 - 19968: 0xCACB,\n\t22721 - 19968: 0xDBFA,\n\t22725 - 19968: 0xE8B5,\n\t22727 - 19968: 0xD3A6,\n\t22734 - 19968: 0xFDB5,\n\t22737 - 19968: 0xF9C9,\n\t22739 - 19968: 0xE4E2,\n\t22741 - 19968: 0xFBBD,\n\t22744 - 19968: 0xD7A4,\n\t22745 - 19968: 0xCEC5,\n\t22750 - 19968: 0xCED5,\n\t22751 - 19968: 0xD6E6,\n\t22756 - 19968: 0xE5BD,\n\t22763 - 19968: 0xDECD,\n\t22764 - 19968: 0xECF3,\n\t22767 - 19968: 0xEDE0,\n\t22777 - 19968: 0xECEC,\n\t22778 - 19968: 0xFBBE,\n\t22779 - 19968: 0xDFEB,\n\t22781 - 19968: 0xE1F8,\n\t22799 - 19968: 0xF9BE,\n\t22804 - 19968: 0xD0F3,\n\t22805 - 19968: 0xE0AA,\n\t22806 - 19968: 0xE8E2,\n\t22809 - 19968: 0xE2D4,\n\t22810 - 19968: 0xD2FD,\n\t22812 - 19968: 0xE5A8,\n\t22818 - 19968: 0xD9D3,\n\t22823 - 19968: 0xD3DE,\n\t22825 - 19968: 0xF4B8,\n\t22826 - 19968: 0xF7BC,\n\t22827 - 19968: 0xDCFD,\n\t22829 - 19968: 0xE8EC,\n\t22830 - 19968: 0xE4E7,\n\t22833 - 19968: 0xE3F7,\n\t22839 - 19968: 0xECA8,\n\t22846 - 19968: 0xFAF1,\n\t22852 - 19968: 0xE5F2,\n\t22855 - 19968: 0xD0F4,\n\t22856 - 19968: 0xD2AF,\n\t22857 - 19968: 0xDCE5,\n\t22862 - 19968: 0xD0A5,\n\t22863 - 19968: 0xF1B4,\n\t22864 - 19968: 0xFCB1,\n\t22865 - 19968: 0xCCF8,\n\t22868 - 19968: 0xDDC6,\n\t22869 - 19968: 0xFAD1,\n\t22871 - 19968: 0xF7DF,\n\t22874 - 19968: 0xFAA8,\n\t22880 - 19968: 0xEEF5,\n\t22882 - 19968: 0xDECE,\n\t22887 - 19968: 0xE7F3,\n\t22890 - 19968: 0xF7AC,\n\t22891 - 19968: 0xEBC4,\n\t22892 - 19968: 0xEDE1,\n\t22893 - 19968: 0xE0AB,\n\t22894 - 19968: 0xDDC7,\n\t22899 - 19968: 0xD2B3,\n\t22900 - 19968: 0xD2BF,\n\t22904 - 19968: 0xCACC,\n\t22909 - 19968: 0xFBBF,\n\t22914 - 19968: 0xE5FD,\n\t22915 - 19968: 0xDDE5,\n\t22916 - 19968: 0xD8CD,\n\t22922 - 19968: 0xECF4,\n\t22931 - 19968: 0xD0F5,\n\t22934 - 19968: 0xE8ED,\n\t22935 - 19968: 0xD0D2,\n\t22937 - 19968: 0xD9D8,\n\t22949 - 19968: 0xF6E6,\n\t22952 - 19968: 0xDBAA,\n\t22956 - 19968: 0xF7E0,\n\t22969 - 19968: 0xD8D9,\n\t22971 - 19968: 0xF4A3,\n\t22974 - 19968: 0xF4DD,\n\t22979 - 19968: 0xEFD1,\n\t22982 - 19968: 0xD9B5,\n\t22985 - 19968: 0xEDAB,\n\t22987 - 19968: 0xE3B7,\n\t22992 - 19968: 0xEEBB,\n\t22993 - 19968: 0xCDB4,\n\t22995 - 19968: 0xE0F3,\n\t22996 - 19968: 0xEACD,\n\t23001 - 19968: 0xECF5,\n\t23002 - 19968: 0xE8EE,\n\t23004 - 19968: 0xCBA9,\n\t23005 - 19968: 0xF1AF,\n\t23014 - 19968: 0xCACD,\n\t23016 - 19968: 0xECA9,\n\t23018 - 19968: 0xF2EB,\n\t23020 - 19968: 0xFDEF,\n\t23022 - 19968: 0xF9F3,\n\t23032 - 19968: 0xE6C1,\n\t23035 - 19968: 0xECD8,\n\t23039 - 19968: 0xEDAC,\n\t23041 - 19968: 0xEACE,\n\t23043 - 19968: 0xE8DF,\n\t23057 - 19968: 0xDECF,\n\t23064 - 19968: 0xD2A6,\n\t23067 - 19968: 0xE7F4,\n\t23068 - 19968: 0xD1D6,\n\t23071 - 19968: 0xE6C2,\n\t23072 - 19968: 0xE3E3,\n\t23077 - 19968: 0xE4B0,\n\t23081 - 19968: 0xD8B4,\n\t23094 - 19968: 0xF6A5,\n\t23100 - 19968: 0xF3DE,\n\t23105 - 19968: 0xD7A5,\n\t23110 - 19968: 0xF7E8,\n\t23113 - 19968: 0xE8C6,\n\t23130 - 19968: 0xFBE6,\n\t23138 - 19968: 0xDDE6,\n\t23142 - 19968: 0xDCFE,\n\t23186 - 19968: 0xD8DA,\n\t23194 - 19968: 0xDAAC,\n\t23195 - 19968: 0xEAB0,\n\t23204 - 19968: 0xE3B8,\n\t23233 - 19968: 0xCAAA,\n\t23234 - 19968: 0xE1F9,\n\t23236 - 19968: 0xEAB1,\n\t23241 - 19968: 0xF2EC,\n\t23244 - 19968: 0xFAEE,\n\t23265 - 19968: 0xEED5,\n\t23270 - 19968: 0xF9F4,\n\t23273 - 19968: 0xD2EC,\n\t23301 - 19968: 0xFBFB,\n\t23305 - 19968: 0xFDF0,\n\t23307 - 19968: 0xE0BD,\n\t23308 - 19968: 0xCEE3,\n\t23318 - 19968: 0xF8C6,\n\t23338 - 19968: 0xDEAE,\n\t23360 - 19968: 0xDFC5,\n\t23363 - 19968: 0xE5BE,\n\t23376 - 19968: 0xEDAD,\n\t23377 - 19968: 0xFAEA,\n\t23380 - 19968: 0xCDEE,\n\t23381 - 19968: 0xEDA6,\n\t23383 - 19968: 0xEDAE,\n\t23384 - 19968: 0xF0ED,\n\t23386 - 19968: 0xDDA1,\n\t23388 - 19968: 0xEDAF,\n\t23389 - 19968: 0xFCF8,\n\t23391 - 19968: 0xD8EB,\n\t23395 - 19968: 0xCCF9,\n\t23396 - 19968: 0xCDB5,\n\t23401 - 19968: 0xFAA9,\n\t23403 - 19968: 0xE1DD,\n\t23408 - 19968: 0xE2D5,\n\t23409 - 19968: 0xEDCF,\n\t23413 - 19968: 0xDDA2,\n\t23416 - 19968: 0xF9CA,\n\t23418 - 19968: 0xEAE8,\n\t23420 - 19968: 0xE5ED,\n\t23429 - 19968: 0xD3EB,\n\t23431 - 19968: 0xE9D4,\n\t23432 - 19968: 0xE1FA,\n\t23433 - 19968: 0xE4CC,\n\t23435 - 19968: 0xE1E4,\n\t23436 - 19968: 0xE8C7,\n\t23439 - 19968: 0xCEDB,\n\t23443 - 19968: 0xDCD5,\n\t23445 - 19968: 0xF7B5,\n\t23446 - 19968: 0xFCF3,\n\t23447 - 19968: 0xF0F3,\n\t23448 - 19968: 0xCEAF,\n\t23449 - 19968: 0xF1B5,\n\t23450 - 19968: 0xEFD2,\n\t23451 - 19968: 0xE8C8,\n\t23452 - 19968: 0xEBF1,\n\t23458 - 19968: 0xCBD4,\n\t23459 - 19968: 0xE0BE,\n\t23460 - 19968: 0xE3F8,\n\t23461 - 19968: 0xEAE9,\n\t23462 - 19968: 0xFCB2,\n\t23468 - 19968: 0xE0F4,\n\t23470 - 19968: 0xCFE0,\n\t23472 - 19968: 0xEEA5,\n\t23475 - 19968: 0xFAAA,\n\t23476 - 19968: 0xE6C3,\n\t23477 - 19968: 0xE1B2,\n\t23478 - 19968: 0xCAAB,\n\t23480 - 19968: 0xE3E4,\n\t23481 - 19968: 0xE9BB,\n\t23487 - 19968: 0xE2D6,\n\t23488 - 19968: 0xF3F2,\n\t23490 - 19968: 0xEED6,\n\t23491 - 19968: 0xEAB2,\n\t23492 - 19968: 0xD0F6,\n\t23493 - 19968: 0xECD9,\n\t23494 - 19968: 0xDACB,\n\t23495 - 19968: 0xCFA8,\n\t23500 - 19968: 0xDDA3,\n\t23504 - 19968: 0xD8DB,\n\t23506 - 19968: 0xF9CE,\n\t23507 - 19968: 0xE9D5,\n\t23508 - 19968: 0xE3D1,\n\t23511 - 19968: 0xD2BC,\n\t23518 - 19968: 0xD8AC,\n\t23519 - 19968: 0xF3CC,\n\t23521 - 19968: 0xCDFB,\n\t23522 - 19968: 0xF6D6,\n\t23524 - 19968: 0xE7F5,\n\t23525 - 19968: 0xE8EF,\n\t23526 - 19968: 0xE3F9,\n\t23527 - 19968: 0xD2BB,\n\t23528 - 19968: 0xF3F3,\n\t23529 - 19968: 0xE3FB,\n\t23531 - 19968: 0xDED0,\n\t23532 - 19968: 0xCEB0,\n\t23534 - 19968: 0xD6F7,\n\t23535 - 19968: 0xF1D9,\n\t23541 - 19968: 0xF5C1,\n\t23542 - 19968: 0xDCC4,\n\t23544 - 19968: 0xF5BB,\n\t23546 - 19968: 0xDED1,\n\t23553 - 19968: 0xDCE6,\n\t23556 - 19968: 0xDED2,\n\t23559 - 19968: 0xEDE2,\n\t23560 - 19968: 0xEEF6,\n\t23561 - 19968: 0xEACF,\n\t23562 - 19968: 0xF0EE,\n\t23563 - 19968: 0xE3FC,\n\t23565 - 19968: 0xD3DF,\n\t23566 - 19968: 0xD3F4,\n\t23567 - 19968: 0xE1B3,\n\t23569 - 19968: 0xE1B4,\n\t23574 - 19968: 0xF4D3,\n\t23577 - 19968: 0xDFC6,\n\t23588 - 19968: 0xE9D6,\n\t23592 - 19968: 0xDBAB,\n\t23601 - 19968: 0xF6A6,\n\t23608 - 19968: 0xE3B9,\n\t23609 - 19968: 0xEBC5,\n\t23610 - 19968: 0xF4A9,\n\t23611 - 19968: 0xCDB6,\n\t23612 - 19968: 0xD2F9,\n\t23614 - 19968: 0xDAAD,\n\t23615 - 19968: 0xD2E3,\n\t23616 - 19968: 0xCFD1,\n\t23621 - 19968: 0xCBDC,\n\t23622 - 19968: 0xCCFA,\n\t23624 - 19968: 0xCFDD,\n\t23627 - 19968: 0xE8A9,\n\t23629 - 19968: 0xE3BB,\n\t23630 - 19968: 0xE3BA,\n\t23633 - 19968: 0xE0DA,\n\t23637 - 19968: 0xEEF7,\n\t23643 - 19968: 0xDCB3,\n\t23648 - 19968: 0xD3F5,\n\t23650 - 19968: 0xD7A6,\n\t23652 - 19968: 0xF6B5,\n\t23653 - 19968: 0xD7DB,\n\t23660 - 19968: 0xE1D5,\n\t23663 - 19968: 0xD4EA,\n\t23665 - 19968: 0xDFA3,\n\t23673 - 19968: 0xFDDF,\n\t23696 - 19968: 0xD0F7,\n\t23697 - 19968: 0xEDD4,\n\t23713 - 19968: 0xCBAA,\n\t23721 - 19968: 0xE4DB,\n\t23723 - 19968: 0xE1FB,\n\t23724 - 19968: 0xCBA2,\n\t23729 - 19968: 0xD3E0,\n\t23731 - 19968: 0xE4BF,\n\t23733 - 19968: 0xFBC0,\n\t23735 - 19968: 0xDABE,\n\t23736 - 19968: 0xE4CD,\n\t23738 - 19968: 0xD6B9,\n\t23742 - 19968: 0xEFC0,\n\t23744 - 19968: 0xE1FC,\n\t23769 - 19968: 0xF6B9,\n\t23776 - 19968: 0xDFC7,\n\t23784 - 19968: 0xE4B1,\n\t23791 - 19968: 0xDCE7,\n\t23792 - 19968: 0xDCE8,\n\t23796 - 19968: 0xFAD6,\n\t23798 - 19968: 0xD3F6,\n\t23803 - 19968: 0xF1DA,\n\t23805 - 19968: 0xFAF2,\n\t23815 - 19968: 0xE2FD,\n\t23821 - 19968: 0xD5CF,\n\t23822 - 19968: 0xD0F8,\n\t23825 - 19968: 0xCDDF,\n\t23828 - 19968: 0xF5CB,\n\t23830 - 19968: 0xE4F0,\n\t23831 - 19968: 0xCBAB,\n\t23833 - 19968: 0xD7C4,\n\t23847 - 19968: 0xE2FE,\n\t23849 - 19968: 0xDDDA,\n\t23883 - 19968: 0xDAAE,\n\t23884 - 19968: 0xCAEE,\n\t23888 - 19968: 0xD5B9,\n\t23913 - 19968: 0xE3A1,\n\t23916 - 19968: 0xE8E3,\n\t23919 - 19968: 0xF3AB,\n\t23943 - 19968: 0xCFA9,\n\t23947 - 19968: 0xD3F7,\n\t23965 - 19968: 0xD4F1,\n\t23968 - 19968: 0xCEE4,\n\t23970 - 19968: 0xE8F2,\n\t23978 - 19968: 0xE5F5,\n\t23992 - 19968: 0xE7AE,\n\t23994 - 19968: 0xD6BA,\n\t23996 - 19968: 0xDFEC,\n\t23997 - 19968: 0xE4C0,\n\t24013 - 19968: 0xE8E4,\n\t24018 - 19968: 0xD8B5,\n\t24022 - 19968: 0xE4DC,\n\t24029 - 19968: 0xF4B9,\n\t24030 - 19968: 0xF1B6,\n\t24033 - 19968: 0xE2DE,\n\t24034 - 19968: 0xE1B5,\n\t24037 - 19968: 0xCDEF,\n\t24038 - 19968: 0xF1A7,\n\t24039 - 19968: 0xCEE5,\n\t24040 - 19968: 0xCBDD,\n\t24043 - 19968: 0xD9E3,\n\t24046 - 19968: 0xF3AC,\n\t24049 - 19968: 0xD0F9,\n\t24050 - 19968: 0xECAB,\n\t24051 - 19968: 0xDED3,\n\t24052 - 19968: 0xF7E9,\n\t24055 - 19968: 0xF9F5,\n\t24061 - 19968: 0xE1DE,\n\t24062 - 19968: 0xCBEE,\n\t24066 - 19968: 0xE3BC,\n\t24067 - 19968: 0xF8D6,\n\t24070 - 19968: 0xDBEE,\n\t24076 - 19968: 0xFDF1,\n\t24081 - 19968: 0xF7B6,\n\t24086 - 19968: 0xF4DE,\n\t24089 - 19968: 0xF2ED,\n\t24091 - 19968: 0xDBD9,\n\t24093 - 19968: 0xF0A8,\n\t24101 - 19968: 0xE1FD,\n\t24107 - 19968: 0xDED4,\n\t24109 - 19968: 0xE0AC,\n\t24115 - 19968: 0xEDE3,\n\t24118 - 19968: 0xD3E1,\n\t24120 - 19968: 0xDFC8,\n\t24125 - 19968: 0xD9B6,\n\t24127 - 19968: 0xFDAC,\n\t24128 - 19968: 0xEFD3,\n\t24132 - 19968: 0xE4C1,\n\t24133 - 19968: 0xF8EB,\n\t24135 - 19968: 0xDBAC,\n\t24140 - 19968: 0xFCC6,\n\t24149 - 19968: 0xD8AD,\n\t24159 - 19968: 0xF6BA,\n\t24161 - 19968: 0xDBDF,\n\t24162 - 19968: 0xD3D3,\n\t24163 - 19968: 0xF8C7,\n\t24178 - 19968: 0xCACE,\n\t24179 - 19968: 0xF8C1,\n\t24180 - 19968: 0xD2B4,\n\t24183 - 19968: 0xDCB4,\n\t24184 - 19968: 0xFAB9,\n\t24185 - 19968: 0xCACF,\n\t24187 - 19968: 0xFCB3,\n\t24188 - 19968: 0xEAEA,\n\t24189 - 19968: 0xEAEB,\n\t24190 - 19968: 0xD0FA,\n\t24196 - 19968: 0xEDE4,\n\t24199 - 19968: 0xDDE7,\n\t24202 - 19968: 0xDFC9,\n\t24207 - 19968: 0xDFED,\n\t24213 - 19968: 0xEEBC,\n\t24215 - 19968: 0xEFC1,\n\t24218 - 19968: 0xCCD2,\n\t24220 - 19968: 0xDDA4,\n\t24224 - 19968: 0xDFCA,\n\t24230 - 19968: 0xD3F8,\n\t24231 - 19968: 0xF1A8,\n\t24235 - 19968: 0xCDB7,\n\t24237 - 19968: 0xEFD4,\n\t24245 - 19968: 0xE4DD,\n\t24246 - 19968: 0xDFEE,\n\t24247 - 19968: 0xCBAC,\n\t24248 - 19968: 0xE9BC,\n\t24254 - 19968: 0xEAEC,\n\t24258 - 19968: 0xDFCB,\n\t24264 - 19968: 0xF9BF,\n\t24265 - 19968: 0xD6AF,\n\t24266 - 19968: 0xD5C6,\n\t24272 - 19968: 0xCFAA,\n\t24275 - 19968: 0xCEA9,\n\t24278 - 19968: 0xD6F8,\n\t24282 - 19968: 0xF1B7,\n\t24283 - 19968: 0xEEF8,\n\t24287 - 19968: 0xD9D9,\n\t24288 - 19968: 0xF3DF,\n\t24290 - 19968: 0xF8C8,\n\t24291 - 19968: 0xCEC6,\n\t24300 - 19968: 0xD5E6,\n\t24307 - 19968: 0xF4E6,\n\t24310 - 19968: 0xE6C5,\n\t24311 - 19968: 0xEFD5,\n\t24314 - 19968: 0xCBEF,\n\t24315 - 19968: 0xFCDF,\n\t24321 - 19968: 0xDCA7,\n\t24324 - 19968: 0xD6E7,\n\t24330 - 19968: 0xF8C9,\n\t24335 - 19968: 0xE3D2,\n\t24337 - 19968: 0xE3BD,\n\t24339 - 19968: 0xCFE1,\n\t24340 - 19968: 0xF0C0,\n\t24341 - 19968: 0xECDA,\n\t24343 - 19968: 0xDDD7,\n\t24344 - 19968: 0xFBF0,\n\t24347 - 19968: 0xECAC,\n\t24351 - 19968: 0xF0A9,\n\t24358 - 19968: 0xFAD7,\n\t24359 - 19968: 0xFBC1,\n\t24361 - 19968: 0xD2C0,\n\t24369 - 19968: 0xE5B0,\n\t24373 - 19968: 0xEDE5,\n\t24378 - 19968: 0xCBAD,\n\t24380 - 19968: 0xF9B0,\n\t24392 - 19968: 0xF7A5,\n\t24394 - 19968: 0xCBAE,\n\t24396 - 19968: 0xDAAF,\n\t24398 - 19968: 0xD8B6,\n\t24406 - 19968: 0xD3A7,\n\t24407 - 19968: 0xFBB2,\n\t24409 - 19968: 0xFDC4,\n\t24411 - 19968: 0xECAD,\n\t24418 - 19968: 0xFBA1,\n\t24422 - 19968: 0xE5E9,\n\t24423 - 19968: 0xE9EE,\n\t24425 - 19968: 0xF3F4,\n\t24426 - 19968: 0xF8F3,\n\t24427 - 19968: 0xF0C1,\n\t24428 - 19968: 0xDEAF,\n\t24429 - 19968: 0xF8B0,\n\t24432 - 19968: 0xF3E0,\n\t24433 - 19968: 0xE7AF,\n\t24439 - 19968: 0xDBAD,\n\t24441 - 19968: 0xE6B5,\n\t24444 - 19968: 0xF9A8,\n\t24447 - 19968: 0xDDD8,\n\t24448 - 19968: 0xE8D9,\n\t24449 - 19968: 0xEFD6,\n\t24453 - 19968: 0xD3E2,\n\t24455 - 19968: 0xE2DF,\n\t24458 - 19968: 0xFCE0,\n\t24459 - 19968: 0xD7C8,\n\t24460 - 19968: 0xFDAD,\n\t24464 - 19968: 0xDFEF,\n\t24465 - 19968: 0xCCD3,\n\t24466 - 19968: 0xD3F9,\n\t24471 - 19968: 0xD4F0,\n\t24472 - 19968: 0xDBC7,\n\t24473 - 19968: 0xDED5,\n\t24478 - 19968: 0xF0F4,\n\t24480 - 19968: 0xD5D0,\n\t24481 - 19968: 0xE5D9,\n\t24488 - 19968: 0xFCC7,\n\t24489 - 19968: 0xDCD6,\n\t24490 - 19968: 0xE2E0,\n\t24494 - 19968: 0xDAB0,\n\t24501 - 19968: 0xF3A3,\n\t24503 - 19968: 0xD3EC,\n\t24505 - 19968: 0xF4CB,\n\t24509 - 19968: 0xFDC5,\n\t24515 - 19968: 0xE3FD,\n\t24517 - 19968: 0xF9B1,\n\t24524 - 19968: 0xD0FB,\n\t24525 - 19968: 0xECDB,\n\t24534 - 19968: 0xF5BC,\n\t24535 - 19968: 0xF2A4,\n\t24536 - 19968: 0xD8CE,\n\t24537 - 19968: 0xD8CF,\n\t24544 - 19968: 0xF5F7,\n\t24555 - 19968: 0xF6E1,\n\t24565 - 19968: 0xD2B7,\n\t24573 - 19968: 0xFBEC,\n\t24575 - 19968: 0xDDC8,\n\t24591 - 19968: 0xE4E8,\n\t24594 - 19968: 0xD2C1,\n\t24598 - 19968: 0xF8D7,\n\t24604 - 19968: 0xD6BB,\n\t24605 - 19968: 0xDED6,\n\t24608 - 19968: 0xF7BD,\n\t24609 - 19968: 0xECAE,\n\t24613 - 19968: 0xD0E1,\n\t24615 - 19968: 0xE0F5,\n\t24616 - 19968: 0xEAB3,\n\t24618 - 19968: 0xCED6,\n\t24623 - 19968: 0xCCA5,\n\t24641 - 19968: 0xECF6,\n\t24642 - 19968: 0xE2E1,\n\t24643 - 19968: 0xE3BE,\n\t24653 - 19968: 0xFCC8,\n\t24656 - 19968: 0xCDF0,\n\t24658 - 19968: 0xF9F6,\n\t24661 - 19968: 0xDFF0,\n\t24665 - 19968: 0xE5BF,\n\t24669 - 19968: 0xCEBF,\n\t24674 - 19968: 0xFCE1,\n\t24675 - 19968: 0xEDB0,\n\t24676 - 19968: 0xFDD1,\n\t24677 - 19968: 0xF6BB,\n\t24680 - 19968: 0xF9CF,\n\t24681 - 19968: 0xEBDA,\n\t24682 - 19968: 0xCAC1,\n\t24684 - 19968: 0xD2B8,\n\t24685 - 19968: 0xCDF1,\n\t24687 - 19968: 0xE3D3,\n\t24688 - 19968: 0xFDE6,\n\t24709 - 19968: 0xE6ED,\n\t24713 - 19968: 0xE3FA,\n\t24716 - 19968: 0xF0AA,\n\t24717 - 19968: 0xF9D0,\n\t24724 - 19968: 0xFCE2,\n\t24726 - 19968: 0xF8A7,\n\t24730 - 19968: 0xE1E5,\n\t24731 - 19968: 0xEEF9,\n\t24735 - 19968: 0xE7F6,\n\t24736 - 19968: 0xEAED,\n\t24739 - 19968: 0xFCB4,\n\t24740 - 19968: 0xF5C2,\n\t24743 - 19968: 0xD7DC,\n\t24752 - 19968: 0xF0F5,\n\t24754 - 19968: 0xDDE8,\n\t24755 - 19968: 0xD3ED,\n\t24756 - 19968: 0xF5FC,\n\t24758 - 19968: 0xDABF,\n\t24760 - 19968: 0xCCFB,\n\t24764 - 19968: 0xD3FA,\n\t24765 - 19968: 0xF4A4,\n\t24773 - 19968: 0xEFD7,\n\t24775 - 19968: 0xD4C3,\n\t24785 - 19968: 0xFBE3,\n\t24794 - 19968: 0xFBED,\n\t24796 - 19968: 0xE0AD,\n\t24799 - 19968: 0xEAEE,\n\t24800 - 19968: 0xFBB3,\n\t24801 - 19968: 0xE4C2,\n\t24816 - 19968: 0xF6E7,\n\t24817 - 19968: 0xD2DD,\n\t24819 - 19968: 0xDFCC,\n\t24822 - 19968: 0xFCC9,\n\t24825 - 19968: 0xE5A9,\n\t24826 - 19968: 0xE0F6,\n\t24827 - 19968: 0xF6B3,\n\t24833 - 19968: 0xE1FE,\n\t24838 - 19968: 0xCBF0,\n\t24840 - 19968: 0xEAEF,\n\t24841 - 19968: 0xEAF0,\n\t24845 - 19968: 0xDAC0,\n\t24846 - 19968: 0xF8B4,\n\t24847 - 19968: 0xEBF2,\n\t24853 - 19968: 0xE4C3,\n\t24858 - 19968: 0xE9D7,\n\t24859 - 19968: 0xE4F1,\n\t24863 - 19968: 0xCAEF,\n\t24871 - 19968: 0xCED7,\n\t24880 - 19968: 0xFCCA,\n\t24884 - 19968: 0xF3E1,\n\t24887 - 19968: 0xCBC4,\n\t24892 - 19968: 0xE3E5,\n\t24894 - 19968: 0xCBC5,\n\t24895 - 19968: 0xEAB4,\n\t24898 - 19968: 0xE9BD,\n\t24900 - 19968: 0xD7C9,\n\t24903 - 19968: 0xEBDB,\n\t24904 - 19968: 0xEDB1,\n\t24906 - 19968: 0xCCC3,\n\t24907 - 19968: 0xF7BE,\n\t24908 - 19968: 0xFCCB,\n\t24915 - 19968: 0xF8F4,\n\t24917 - 19968: 0xD9B7,\n\t24920 - 19968: 0xF3D3,\n\t24921 - 19968: 0xF3D4,\n\t24925 - 19968: 0xF7E4,\n\t24927 - 19968: 0xF7D1,\n\t24930 - 19968: 0xD8B7,\n\t24931 - 19968: 0xCEB1,\n\t24932 - 19968: 0xCAC2,\n\t24935 - 19968: 0xFBB4,\n\t24936 - 19968: 0xCBC6,\n\t24939 - 19968: 0xF0F6,\n\t24942 - 19968: 0xD5E7,\n\t24944 - 19968: 0xEAD0,\n\t24950 - 19968: 0xCCD4,\n\t24951 - 19968: 0xCBAF,\n\t24957 - 19968: 0xF4AA,\n\t24958 - 19968: 0xE9AF,\n\t24961 - 19968: 0xF5C3,\n\t24962 - 19968: 0xE9D8,\n\t24970 - 19968: 0xDDE9,\n\t24974 - 19968: 0xF1F3,\n\t24976 - 19968: 0xD5FB,\n\t24977 - 19968: 0xDEBB,\n\t24980 - 19968: 0xF4FB,\n\t24984 - 19968: 0xFDF3,\n\t24985 - 19968: 0xFDF2,\n\t24986 - 19968: 0xF7A6,\n\t24996 - 19968: 0xDDC9,\n\t24999 - 19968: 0xD4D3,\n\t25001 - 19968: 0xCCA8,\n\t25003 - 19968: 0xDAC1,\n\t25004 - 19968: 0xCCD5,\n\t25006 - 19968: 0xD9E4,\n\t25010 - 19968: 0xFACA,\n\t25014 - 19968: 0xE5E3,\n\t25018 - 19968: 0xD3BC,\n\t25022 - 19968: 0xCAF0,\n\t25027 - 19968: 0xD0C4,\n\t25031 - 19968: 0xCAD0,\n\t25032 - 19968: 0xFAAB,\n\t25033 - 19968: 0xEBEB,\n\t25034 - 19968: 0xE7F8,\n\t25035 - 19968: 0xD9E5,\n\t25062 - 19968: 0xD1D7,\n\t25074 - 19968: 0xF3A4,\n\t25078 - 19968: 0xD4FB,\n\t25079 - 19968: 0xFCE3,\n\t25080 - 19968: 0xFAD8,\n\t25082 - 19968: 0xF3D5,\n\t25084 - 19968: 0xCFAB,\n\t25087 - 19968: 0xEBF3,\n\t25088 - 19968: 0xD5FC,\n\t25095 - 19968: 0xD3D4,\n\t25096 - 19968: 0xCDFC,\n\t25098 - 19968: 0xD9E6,\n\t25100 - 19968: 0xE2F9,\n\t25101 - 19968: 0xE2A1,\n\t25102 - 19968: 0xEBD4,\n\t25104 - 19968: 0xE0F7,\n\t25105 - 19968: 0xE4B2,\n\t25106 - 19968: 0xCCFC,\n\t25110 - 19968: 0xFBE4,\n\t25114 - 19968: 0xF4AB,\n\t25119 - 19968: 0xD0BD,\n\t25121 - 19968: 0xCAF1,\n\t25130 - 19968: 0xEFB8,\n\t25134 - 19968: 0xD7C0,\n\t25136 - 19968: 0xEEFA,\n\t25137 - 19968: 0xFDF4,\n\t25140 - 19968: 0xD3E3,\n\t25142 - 19968: 0xFBC2,\n\t25150 - 19968: 0xD5E8,\n\t25151 - 19968: 0xDBAE,\n\t25152 - 19968: 0xE1B6,\n\t25153 - 19968: 0xF8B7,\n\t25159 - 19968: 0xE0BF,\n\t25160 - 19968: 0xFBC3,\n\t25161 - 19968: 0xDDEA,\n\t25163 - 19968: 0xE2A2,\n\t25165 - 19968: 0xEEA6,\n\t25171 - 19968: 0xF6E8,\n\t25176 - 19968: 0xF6F5,\n\t25198 - 19968: 0xDDCA,\n\t25201 - 19968: 0xD0E2,\n\t25206 - 19968: 0xDDA6,\n\t25209 - 19968: 0xDDEB,\n\t25212 - 19968: 0xE4F9,\n\t25215 - 19968: 0xE3AF,\n\t25216 - 19968: 0xD0FC,\n\t25220 - 19968: 0xF4FC,\n\t25225 - 19968: 0xCCBC,\n\t25226 - 19968: 0xF7EA,\n\t25233 - 19968: 0xE5E4,\n\t25234 - 19968: 0xDFF1,\n\t25237 - 19968: 0xF7E1,\n\t25239 - 19968: 0xF9F7,\n\t25240 - 19968: 0xEFB9,\n\t25243 - 19968: 0xF8D8,\n\t25259 - 19968: 0xF9A9,\n\t25265 - 19968: 0xF8D9,\n\t25269 - 19968: 0xEEBD,\n\t25273 - 19968: 0xD8C6,\n\t25276 - 19968: 0xE4E3,\n\t25277 - 19968: 0xF5CE,\n\t25282 - 19968: 0xDDD9,\n\t25287 - 19968: 0xD9E7,\n\t25288 - 19968: 0xD2B9,\n\t25289 - 19968: 0xD5C3,\n\t25292 - 19968: 0xDAE5,\n\t25293 - 19968: 0xDAD0,\n\t25295 - 19968: 0xD1D9,\n\t25296 - 19968: 0xCED8,\n\t25298 - 19968: 0xCBDE,\n\t25299 - 19968: 0xF4AC,\n\t25300 - 19968: 0xDAFB,\n\t25302 - 19968: 0xF6E9,\n\t25303 - 19968: 0xE8F3,\n\t25304 - 19968: 0xCFAC,\n\t25305 - 19968: 0xF0F0,\n\t25307 - 19968: 0xF4FD,\n\t25308 - 19968: 0xDBC8,\n\t25324 - 19968: 0xCEC0,\n\t25325 - 19968: 0xE3D4,\n\t25326 - 19968: 0xD1CF,\n\t25327 - 19968: 0xF1F5,\n\t25329 - 19968: 0xCDF2,\n\t25331 - 19968: 0xCFEB,\n\t25335 - 19968: 0xCDB8,\n\t25342 - 19968: 0xE3A6,\n\t25343 - 19968: 0xD1DA,\n\t25345 - 19968: 0xF2A5,\n\t25351 - 19968: 0xF2A6,\n\t25353 - 19968: 0xE4CE,\n\t25361 - 19968: 0xD3FB,\n\t25387 - 19968: 0xF1A9,\n\t25391 - 19968: 0xF2C9,\n\t25402 - 19968: 0xEFD8,\n\t25403 - 19968: 0xE6C9,\n\t25405 - 19968: 0xD8B8,\n\t25406 - 19968: 0xFAF3,\n\t25417 - 19968: 0xF3B5,\n\t25420 - 19968: 0xF8A4,\n\t25423 - 19968: 0xD1F3,\n\t25424 - 19968: 0xE6C8,\n\t25429 - 19968: 0xF8DA,\n\t25447 - 19968: 0xDCE9,\n\t25448 - 19968: 0xDED7,\n\t25454 - 19968: 0xCBDF,\n\t25458 - 19968: 0xCFEC,\n\t25463 - 19968: 0xF4DF,\n\t25466 - 19968: 0xD1F4,\n\t25467 - 19968: 0xD2BA,\n\t25471 - 19968: 0xDFF2,\n\t25475 - 19968: 0xE1B7,\n\t25480 - 19968: 0xE2A3,\n\t25481 - 19968: 0xD3FC,\n\t25484 - 19968: 0xEDE6,\n\t25490 - 19968: 0xDBC9,\n\t25494 - 19968: 0xE4FA,\n\t25496 - 19968: 0xCFDE,\n\t25499 - 19968: 0xCED0,\n\t25504 - 19968: 0xD5D3,\n\t25505 - 19968: 0xF3F5,\n\t25506 - 19968: 0xF7AE,\n\t25509 - 19968: 0xEFC8,\n\t25511 - 19968: 0xCDF3,\n\t25512 - 19968: 0xF5CF,\n\t25513 - 19968: 0xE5F3,\n\t25514 - 19968: 0xF0C2,\n\t25536 - 19968: 0xCAD1,\n\t25540 - 19968: 0xEAF1,\n\t25542 - 19968: 0xD0A6,\n\t25551 - 19968: 0xD9DA,\n\t25552 - 19968: 0xF0AB,\n\t25558 - 19968: 0xEBE7,\n\t25562 - 19968: 0xE5C0,\n\t25563 - 19968: 0xFCB5,\n\t25569 - 19968: 0xE4C4,\n\t25581 - 19968: 0xCCA9,\n\t25582 - 19968: 0xFDC6,\n\t25588 - 19968: 0xEAB5,\n\t25590 - 19968: 0xE5AA,\n\t25591 - 19968: 0xDFBA,\n\t25613 - 19968: 0xE1DF,\n\t25615 - 19968: 0xDAD1,\n\t25620 - 19968: 0xE1B8,\n\t25622 - 19968: 0xE8F4,\n\t25623 - 19968: 0xD3FD,\n\t25628 - 19968: 0xE2A4,\n\t25634 - 19968: 0xF2CA,\n\t25644 - 19968: 0xDAE6,\n\t25645 - 19968: 0xF7B3,\n\t25658 - 19968: 0xFDCD,\n\t25662 - 19968: 0xF3B6,\n\t25688 - 19968: 0xEED7,\n\t25696 - 19968: 0xF5C4,\n\t25705 - 19968: 0xD8A4,\n\t25711 - 19968: 0xF2A7,\n\t25720 - 19968: 0xD9B8,\n\t25721 - 19968: 0xD9B9,\n\t25722 - 19968: 0xEFC9,\n\t25736 - 19968: 0xD6CE,\n\t25745 - 19968: 0xF7CB,\n\t25746 - 19968: 0xDFAE,\n\t25747 - 19968: 0xE8F5,\n\t25754 - 19968: 0xD2B5,\n\t25758 - 19968: 0xD3D5,\n\t25764 - 19968: 0xF4CC,\n\t25765 - 19968: 0xDAFC,\n\t25771 - 19968: 0xD9E8,\n\t25773 - 19968: 0xF7EB,\n\t25774 - 19968: 0xF5C9,\n\t25776 - 19968: 0xF3BC,\n\t25778 - 19968: 0xDAD2,\n\t25787 - 19968: 0xD3B5,\n\t25793 - 19968: 0xE8B6,\n\t25796 - 19968: 0xD6CF,\n\t25797 - 19968: 0xF4BA,\n\t25799 - 19968: 0xF7C9,\n\t25802 - 19968: 0xCCAA,\n\t25805 - 19968: 0xF0C3,\n\t25806 - 19968: 0xCCD6,\n\t25810 - 19968: 0xD0D3,\n\t25812 - 19968: 0xD3BD,\n\t25816 - 19968: 0xDBFB,\n\t25818 - 19968: 0xCBE0,\n\t25825 - 19968: 0xD3E4,\n\t25826 - 19968: 0xF6F7,\n\t25829 - 19968: 0xD5BA,\n\t25830 - 19968: 0xF3CD,\n\t25831 - 19968: 0xCBE1,\n\t25836 - 19968: 0xEBF4,\n\t25842 - 19968: 0xF4AD,\n\t25844 - 19968: 0xFCAA,\n\t25850 - 19968: 0xF7EC,\n\t25854 - 19968: 0xE8F6,\n\t25856 - 19968: 0xDAE7,\n\t25860 - 19968: 0xF7CC,\n\t25880 - 19968: 0xE5C1,\n\t25885 - 19968: 0xE0EE,\n\t25891 - 19968: 0xD5FD,\n\t25898 - 19968: 0xCEE6,\n\t25899 - 19968: 0xFCAB,\n\t25900 - 19968: 0xD5BB,\n\t25903 - 19968: 0xF2A8,\n\t25910 - 19968: 0xE2A5,\n\t25911 - 19968: 0xCDB9,\n\t25912 - 19968: 0xEAF2,\n\t25913 - 19968: 0xCBC7,\n\t25915 - 19968: 0xCDF4,\n\t25918 - 19968: 0xDBAF,\n\t25919 - 19968: 0xEFD9,\n\t25925 - 19968: 0xCDBA,\n\t25928 - 19968: 0xFCF9,\n\t25933 - 19968: 0xDFF3,\n\t25934 - 19968: 0xCEE7,\n\t25935 - 19968: 0xDAC2,\n\t25937 - 19968: 0xCFAD,\n\t25942 - 19968: 0xE7F9,\n\t25943 - 19968: 0xF8A8,\n\t25950 - 19968: 0xF3E2,\n\t25954 - 19968: 0xCAF2,\n\t25955 - 19968: 0xDFA4,\n\t25958 - 19968: 0xD4C4,\n\t25964 - 19968: 0xCCD7,\n\t25965 - 19968: 0xE5C2,\n\t25970 - 19968: 0xCDBB,\n\t25972 - 19968: 0xEFDA,\n\t25973 - 19968: 0xEED8,\n\t25975 - 19968: 0xDDA7,\n\t25976 - 19968: 0xE2A6,\n\t25982 - 19968: 0xE0C0,\n\t25986 - 19968: 0xD6B0,\n\t25987 - 19968: 0xF8CA,\n\t25989 - 19968: 0xFCFA,\n\t25991 - 19968: 0xD9FE,\n\t25996 - 19968: 0xDEB0,\n\t26000 - 19968: 0xDDEC,\n\t26001 - 19968: 0xDAE8,\n\t26007 - 19968: 0xD4E0,\n\t26009 - 19968: 0xD6F9,\n\t26011 - 19968: 0xCDD7,\n\t26012 - 19968: 0xDED8,\n\t26015 - 19968: 0xF2F8,\n\t26017 - 19968: 0xE4D6,\n\t26020 - 19968: 0xD0C5,\n\t26021 - 19968: 0xF4AE,\n\t26023 - 19968: 0xDDA8,\n\t26027 - 19968: 0xEDC5,\n\t26028 - 19968: 0xF3D6,\n\t26031 - 19968: 0xDED9,\n\t26032 - 19968: 0xE3E6,\n\t26039 - 19968: 0xD3A8,\n\t26041 - 19968: 0xDBB0,\n\t26044 - 19968: 0xE5DA,\n\t26045 - 19968: 0xE3BF,\n\t26049 - 19968: 0xDBB1,\n\t26053 - 19968: 0xD5E9,\n\t26059 - 19968: 0xE0C1,\n\t26060 - 19968: 0xEFDB,\n\t26063 - 19968: 0xF0E9,\n\t26066 - 19968: 0xD7B2,\n\t26071 - 19968: 0xD0FD,\n\t26080 - 19968: 0xD9E9,\n\t26083 - 19968: 0xD0FE,\n\t26085 - 19968: 0xECED,\n\t26086 - 19968: 0xD3A9,\n\t26088 - 19968: 0xF2A9,\n\t26089 - 19968: 0xF0C4,\n\t26092 - 19968: 0xE2E2,\n\t26093 - 19968: 0xE9EF,\n\t26097 - 19968: 0xF9D1,\n\t26100 - 19968: 0xE9D9,\n\t26106 - 19968: 0xE8DA,\n\t26107 - 19968: 0xDAC3,\n\t26108 - 19968: 0xDAC4,\n\t26109 - 19968: 0xD4C5,\n\t26111 - 19968: 0xE7FA,\n\t26118 - 19968: 0xCDE0,\n\t26119 - 19968: 0xE3B0,\n\t26121 - 19968: 0xDBB2,\n\t26122 - 19968: 0xFBC4,\n\t26124 - 19968: 0xF3E3,\n\t26126 - 19968: 0xD9A5,\n\t26127 - 19968: 0xFBE7,\n\t26128 - 19968: 0xDDCB,\n\t26129 - 19968: 0xD0D4,\n\t26131 - 19968: 0xE6B6,\n\t26132 - 19968: 0xE0AE,\n\t26133 - 19968: 0xFDDA,\n\t26142 - 19968: 0xDCB5,\n\t26143 - 19968: 0xE0F8,\n\t26144 - 19968: 0xE7B1,\n\t26149 - 19968: 0xF5F0,\n\t26151 - 19968: 0xD8DC,\n\t26152 - 19968: 0xEDC6,\n\t26157 - 19968: 0xE1B9,\n\t26159 - 19968: 0xE3C0,\n\t26160 - 19968: 0xF9C0,\n\t26161 - 19968: 0xE9F0,\n\t26164 - 19968: 0xD9DB,\n\t26166 - 19968: 0xF3E4,\n\t26170 - 19968: 0xDCB6,\n\t26171 - 19968: 0xE4E9,\n\t26177 - 19968: 0xF0C5,\n\t26178 - 19968: 0xE3C1,\n\t26179 - 19968: 0xFCCC,\n\t26180 - 19968: 0xFCCD,\n\t26185 - 19968: 0xF2CB,\n\t26187 - 19968: 0xF2CC,\n\t26191 - 19968: 0xE4CF,\n\t26201 - 19968: 0xF1DB,\n\t26203 - 19968: 0xFAD9,\n\t26205 - 19968: 0xF1B8,\n\t26206 - 19968: 0xFDF5,\n\t26207 - 19968: 0xE0F9,\n\t26212 - 19968: 0xE7FB,\n\t26213 - 19968: 0xFCB7,\n\t26214 - 19968: 0xFCE4,\n\t26215 - 19968: 0xFBC5,\n\t26216 - 19968: 0xE3E7,\n\t26217 - 19968: 0xD8B9,\n\t26219 - 19968: 0xF6F8,\n\t26222 - 19968: 0xDCC5,\n\t26223 - 19968: 0xCCD8,\n\t26227 - 19968: 0xE0AF,\n\t26228 - 19968: 0xF4E7,\n\t26230 - 19968: 0xEFDC,\n\t26231 - 19968: 0xCFFC,\n\t26232 - 19968: 0xEFDD,\n\t26234 - 19968: 0xF2AA,\n\t26244 - 19968: 0xFDBE,\n\t26247 - 19968: 0xCAAC,\n\t26248 - 19968: 0xFDBB,\n\t26249 - 19968: 0xFDC7,\n\t26254 - 19968: 0xE7B2,\n\t26256 - 19968: 0xEAD1,\n\t26257 - 19968: 0xDFF4,\n\t26262 - 19968: 0xD1EC,\n\t26263 - 19968: 0xE4DE,\n\t26264 - 19968: 0xE5C3,\n\t26269 - 19968: 0xD9A6,\n\t26272 - 19968: 0xCDBC,\n\t26274 - 19968: 0xF3E5,\n\t26283 - 19968: 0xEDD5,\n\t26286 - 19968: 0xD9BA,\n\t26290 - 19968: 0xEDE7,\n\t26291 - 19968: 0xFBB5,\n\t26292 - 19968: 0xF8EC,\n\t26297 - 19968: 0xE0E7,\n\t26299 - 19968: 0xCCD9,\n\t26302 - 19968: 0xD4C6,\n\t26308 - 19968: 0xE7A5,\n\t26310 - 19968: 0xD5F5,\n\t26311 - 19968: 0xD3BE,\n\t26313 - 19968: 0xFCFB,\n\t26326 - 19968: 0xE4F2,\n\t26329 - 19968: 0xDFF5,\n\t26332 - 19968: 0xE8F8,\n\t26333 - 19968: 0xF8ED,\n\t26336 - 19968: 0xCEC7,\n\t26342 - 19968: 0xFDF6,\n\t26352 - 19968: 0xE8D8,\n\t26354 - 19968: 0xCDD8,\n\t26355 - 19968: 0xE7D6,\n\t26356 - 19968: 0xCCDA,\n\t26359 - 19968: 0xCAE3,\n\t26360 - 19968: 0xDFF6,\n\t26361 - 19968: 0xF0C7,\n\t26362 - 19968: 0xF0C6,\n\t26364 - 19968: 0xD8BA,\n\t26366 - 19968: 0xF1F4,\n\t26367 - 19968: 0xF4F0,\n\t26368 - 19968: 0xF5CC,\n\t26371 - 19968: 0xFCE5,\n\t26376 - 19968: 0xEAC5,\n\t26377 - 19968: 0xEAF3,\n\t26379 - 19968: 0xDDDB,\n\t26381 - 19968: 0xDCD7,\n\t26388 - 19968: 0xDEFD,\n\t26389 - 19968: 0xF2F9,\n\t26391 - 19968: 0xD5C7,\n\t26395 - 19968: 0xD8D0,\n\t26397 - 19968: 0xF0C8,\n\t26398 - 19968: 0xD1A1,\n\t26399 - 19968: 0xD1A2,\n\t26406 - 19968: 0xD9D4,\n\t26407 - 19968: 0xD6E8,\n\t26408 - 19968: 0xD9CA,\n\t26410 - 19968: 0xDAB1,\n\t26411 - 19968: 0xD8C7,\n\t26412 - 19968: 0xDCE2,\n\t26413 - 19968: 0xF3CE,\n\t26414 - 19968: 0xF5F4,\n\t26417 - 19968: 0xF1B9,\n\t26420 - 19968: 0xDAD3,\n\t26422 - 19968: 0xF6EA,\n\t26426 - 19968: 0xCFF5,\n\t26429 - 19968: 0xFDAE,\n\t26438 - 19968: 0xCAD2,\n\t26441 - 19968: 0xDFB4,\n\t26446 - 19968: 0xD7DD,\n\t26447 - 19968: 0xFABA,\n\t26448 - 19968: 0xEEA7,\n\t26449 - 19968: 0xF5BD,\n\t26451 - 19968: 0xF8F5,\n\t26454 - 19968: 0xEDE8,\n\t26460 - 19968: 0xD4E1,\n\t26462 - 19968: 0xD1A3,\n\t26463 - 19968: 0xE1D6,\n\t26477 - 19968: 0xF9F8,\n\t26479 - 19968: 0xDBCA,\n\t26480 - 19968: 0xCBF9,\n\t26481 - 19968: 0xD4D4,\n\t26483 - 19968: 0xD9DC,\n\t26485 - 19968: 0xEEBE,\n\t26487 - 19968: 0xF7ED,\n\t26491 - 19968: 0xD2EE,\n\t26494 - 19968: 0xE1E6,\n\t26495 - 19968: 0xF7F9,\n\t26503 - 19968: 0xDDED,\n\t26505 - 19968: 0xE8DB,\n\t26507 - 19968: 0xDBB3,\n\t26511 - 19968: 0xD1F7,\n\t26512 - 19968: 0xE0B0,\n\t26515 - 19968: 0xD4E2,\n\t26517 - 19968: 0xF6D7,\n\t26519 - 19968: 0xD7F9,\n\t26522 - 19968: 0xD8DD,\n\t26524 - 19968: 0xCDFD,\n\t26525 - 19968: 0xF2AB,\n\t26543 - 19968: 0xCDBD,\n\t26544 - 19968: 0xF8C2,\n\t26547 - 19968: 0xF2AC,\n\t26550 - 19968: 0xCAAD,\n\t26551 - 19968: 0xCAAE,\n\t26552 - 19968: 0xCFAE,\n\t26558 - 19968: 0xE3C2,\n\t26564 - 19968: 0xDCB7,\n\t26575 - 19968: 0xDBDA,\n\t26576 - 19968: 0xD9BB,\n\t26577 - 19968: 0xCAF3,\n\t26578 - 19968: 0xF6D3,\n\t26579 - 19968: 0xE6F8,\n\t26580 - 19968: 0xEAF5,\n\t26586 - 19968: 0xEAF6,\n\t26589 - 19968: 0xF6F9,\n\t26601 - 19968: 0xCFAF,\n\t26604 - 19968: 0xCAD3,\n\t26607 - 19968: 0xCAAF,\n\t26608 - 19968: 0xD2B0,\n\t26609 - 19968: 0xF1BA,\n\t26611 - 19968: 0xD7B3,\n\t26612 - 19968: 0xE3C3,\n\t26613 - 19968: 0xF3FD,\n\t26614 - 19968: 0xDEDA,\n\t26619 - 19968: 0xDEDB,\n\t26622 - 19968: 0xEFDE,\n\t26642 - 19968: 0xE2E3,\n\t26643 - 19968: 0xEEFB,\n\t26646 - 19968: 0xDFF7,\n\t26647 - 19968: 0xD7CA,\n\t26657 - 19968: 0xCEE8,\n\t26658 - 19968: 0xDBDB,\n\t26666 - 19968: 0xF1BB,\n\t26671 - 19968: 0xE9F1,\n\t26680 - 19968: 0xFAB7,\n\t26681 - 19968: 0xD0C6,\n\t26684 - 19968: 0xCCAB,\n\t26685 - 19968: 0xEEA8,\n\t26688 - 19968: 0xCBFA,\n\t26689 - 19968: 0xF9F9,\n\t26690 - 19968: 0xCCFD,\n\t26691 - 19968: 0xD3FE,\n\t26696 - 19968: 0xE4D0,\n\t26702 - 19968: 0xF2EE,\n\t26704 - 19968: 0xD4D5,\n\t26705 - 19968: 0xDFCD,\n\t26707 - 19968: 0xFCB8,\n\t26708 - 19968: 0xD1D0,\n\t26733 - 19968: 0xF2CD,\n\t26742 - 19968: 0xF7D2,\n\t26751 - 19968: 0xCAD4,\n\t26753 - 19968: 0xD5D9,\n\t26757 - 19968: 0xD8DE,\n\t26767 - 19968: 0xCDD9,\n\t26771 - 19968: 0xEEA9,\n\t26772 - 19968: 0xF6BC,\n\t26775 - 19968: 0xCCDB,\n\t26781 - 19968: 0xF0C9,\n\t26783 - 19968: 0xFCFC,\n\t26785 - 19968: 0xE8C9,\n\t26786 - 19968: 0xF4FE,\n\t26791 - 19968: 0xE7FC,\n\t26792 - 19968: 0xD7DE,\n\t26797 - 19968: 0xDEDC,\n\t26799 - 19968: 0xF0AC,\n\t26800 - 19968: 0xCCFE,\n\t26801 - 19968: 0xCDE1,\n\t26803 - 19968: 0xE1BA,\n\t26805 - 19968: 0xDBEF,\n\t26806 - 19968: 0xDAB2,\n\t26820 - 19968: 0xD1A5,\n\t26821 - 19968: 0xDCB8,\n\t26825 - 19968: 0xD8F6,\n\t26827 - 19968: 0xD1A4,\n\t26829 - 19968: 0xCDE2,\n\t26834 - 19968: 0xDCEA,\n\t26837 - 19968: 0xF0F7,\n\t26839 - 19968: 0xF0CA,\n\t26840 - 19968: 0xD0BE,\n\t26842 - 19968: 0xDDDC,\n\t26847 - 19968: 0xD4D6,\n\t26848 - 19968: 0xD3D6,\n\t26855 - 19968: 0xEDD0,\n\t26856 - 19968: 0xCDA1,\n\t26862 - 19968: 0xDFB5,\n\t26866 - 19968: 0xDFF8,\n\t26873 - 19968: 0xD4A1,\n\t26874 - 19968: 0xCEB2,\n\t26880 - 19968: 0xE8CA,\n\t26885 - 19968: 0xEBF5,\n\t26893 - 19968: 0xE3D5,\n\t26894 - 19968: 0xF5D0,\n\t26898 - 19968: 0xF5A1,\n\t26919 - 19968: 0xD9A7,\n\t26928 - 19968: 0xE5AB,\n\t26941 - 19968: 0xE6CB,\n\t26943 - 19968: 0xF5F1,\n\t26954 - 19968: 0xE5C5,\n\t26963 - 19968: 0xF9A3,\n\t26964 - 19968: 0xE0DB,\n\t26965 - 19968: 0xF6EB,\n\t26967 - 19968: 0xCBF1,\n\t26969 - 19968: 0xD9EA,\n\t26970 - 19968: 0xF5A2,\n\t26974 - 19968: 0xD7D1,\n\t26976 - 19968: 0xD1F8,\n\t26977 - 19968: 0xEAF8,\n\t26978 - 19968: 0xEAF9,\n\t26979 - 19968: 0xDAB3,\n\t26984 - 19968: 0xEFDF,\n\t26987 - 19968: 0xF1EF,\n\t26989 - 19968: 0xE5F6,\n\t26990 - 19968: 0xEEBF,\n\t26991 - 19968: 0xE2E4,\n\t26997 - 19968: 0xD0BF,\n\t26999 - 19968: 0xFAAC,\n\t27000 - 19968: 0xF5D1,\n\t27001 - 19968: 0xE7B3,\n\t27029 - 19968: 0xE9BE,\n\t27035 - 19968: 0xF2CE,\n\t27036 - 19968: 0xDBB4,\n\t27045 - 19968: 0xFCCE,\n\t27047 - 19968: 0xDDEE,\n\t27054 - 19968: 0xE7B4,\n\t27060 - 19968: 0xD7B4,\n\t27067 - 19968: 0xF7B4,\n\t27073 - 19968: 0xCDBE,\n\t27075 - 19968: 0xDAE9,\n\t27083 - 19968: 0xCFB0,\n\t27084 - 19968: 0xF7D9,\n\t27085 - 19968: 0xF3E6,\n\t27088 - 19968: 0xCED9,\n\t27112 - 19968: 0xCEAA,\n\t27114 - 19968: 0xCBC8,\n\t27131 - 19968: 0xD0A7,\n\t27133 - 19968: 0xF0CB,\n\t27135 - 19968: 0xD0C7,\n\t27138 - 19968: 0xE4C5,\n\t27146 - 19968: 0xDBE0,\n\t27153 - 19968: 0xD5DA,\n\t27155 - 19968: 0xD7A7,\n\t27159 - 19968: 0xEEC0,\n\t27161 - 19968: 0xF8F6,\n\t27166 - 19968: 0xF5D2,\n\t27167 - 19968: 0xEDE9,\n\t27169 - 19968: 0xD9BC,\n\t27171 - 19968: 0xE5C6,\n\t27189 - 19968: 0xF5A3,\n\t27192 - 19968: 0xDAD4,\n\t27193 - 19968: 0xE2A7,\n\t27194 - 19968: 0xFBFC,\n\t27197 - 19968: 0xF1DC,\n\t27204 - 19968: 0xCAF4,\n\t27208 - 19968: 0xE8FA,\n\t27211 - 19968: 0xCEE9,\n\t27218 - 19968: 0xE9F8,\n\t27219 - 19968: 0xE2E5,\n\t27224 - 19968: 0xD0B9,\n\t27225 - 19968: 0xD4F2,\n\t27231 - 19968: 0xD1A6,\n\t27233 - 19968: 0xDFCE,\n\t27243 - 19968: 0xFCF4,\n\t27264 - 19968: 0xD3AA,\n\t27268 - 19968: 0xCCAC,\n\t27273 - 19968: 0xEFE0,\n\t27277 - 19968: 0xE5E5,\n\t27278 - 19968: 0xD0D5,\n\t27287 - 19968: 0xDBFC,\n\t27292 - 19968: 0xFCE6,\n\t27298 - 19968: 0xCBFE,\n\t27299 - 19968: 0xEDEA,\n\t27315 - 19968: 0xDEB1,\n\t27323 - 19968: 0xF9E3,\n\t27330 - 19968: 0xD4A2,\n\t27331 - 19968: 0xCFF6,\n\t27347 - 19968: 0xD6D0,\n\t27354 - 19968: 0xD5EA,\n\t27355 - 19968: 0xF1EE,\n\t27382 - 19968: 0xFACB,\n\t27387 - 19968: 0xE5A1,\n\t27396 - 19968: 0xD5B1,\n\t27402 - 19968: 0xCFED,\n\t27404 - 19968: 0xEDEB,\n\t27410 - 19968: 0xD5B2,\n\t27414 - 19968: 0xD5BC,\n\t27424 - 19968: 0xFDE2,\n\t27425 - 19968: 0xF3AD,\n\t27427 - 19968: 0xFDDB,\n\t27442 - 19968: 0xE9B0,\n\t27450 - 19968: 0xD1A7,\n\t27453 - 19968: 0xFDE3,\n\t27454 - 19968: 0xCEB3,\n\t27462 - 19968: 0xFDE4,\n\t27463 - 19968: 0xFACE,\n\t27468 - 19968: 0xCAB0,\n\t27470 - 19968: 0xF7A7,\n\t27472 - 19968: 0xCFB1,\n\t27487 - 19968: 0xE6A2,\n\t27489 - 19968: 0xFCB6,\n\t27490 - 19968: 0xF2AD,\n\t27491 - 19968: 0xEFE1,\n\t27492 - 19968: 0xF3AE,\n\t27493 - 19968: 0xDCC6,\n\t27494 - 19968: 0xD9EB,\n\t27498 - 19968: 0xE8E0,\n\t27506 - 19968: 0xE1A8,\n\t27511 - 19968: 0xD5F6,\n\t27512 - 19968: 0xCFFD,\n\t27515 - 19968: 0xDEDD,\n\t27519 - 19968: 0xD9D1,\n\t27523 - 19968: 0xE4EA,\n\t27524 - 19968: 0xF2CF,\n\t27526 - 19968: 0xF7BF,\n\t27529 - 19968: 0xE2E6,\n\t27530 - 19968: 0xE2A8,\n\t27542 - 19968: 0xE3D6,\n\t27544 - 19968: 0xEDD1,\n\t27550 - 19968: 0xE9F9,\n\t27566 - 19968: 0xD6B1,\n\t27567 - 19968: 0xDEB2,\n\t27570 - 19968: 0xE0E8,\n\t27573 - 19968: 0xD3AB,\n\t27575 - 19968: 0xEBDC,\n\t27578 - 19968: 0xDFAF,\n\t27580 - 19968: 0xCAC3,\n\t27583 - 19968: 0xEEFC,\n\t27585 - 19968: 0xFDC3,\n\t27589 - 19968: 0xEBF6,\n\t27590 - 19968: 0xCFB2,\n\t27595 - 19968: 0xD9EC,\n\t27597 - 19968: 0xD9BD,\n\t27599 - 19968: 0xD8DF,\n\t27602 - 19968: 0xD4B8,\n\t27603 - 19968: 0xEBBE,\n\t27604 - 19968: 0xDDEF,\n\t27606 - 19968: 0xDDF0,\n\t27607 - 19968: 0xDDF1,\n\t27608 - 19968: 0xDDF2,\n\t27611 - 19968: 0xD9BE,\n\t27627 - 19968: 0xFBC6,\n\t27628 - 19968: 0xCFB3,\n\t27656 - 19968: 0xEEFD,\n\t27663 - 19968: 0xE4AB,\n\t27665 - 19968: 0xDAC5,\n\t27667 - 19968: 0xD8EC,\n\t27683 - 19968: 0xD1A8,\n\t27700 - 19968: 0xE2A9,\n\t27703 - 19968: 0xDEBC,\n\t27704 - 19968: 0xE7B5,\n\t27710 - 19968: 0xDBF0,\n\t27712 - 19968: 0xEFE2,\n\t27713 - 19968: 0xF1F0,\n\t27714 - 19968: 0xCFB4,\n\t27726 - 19968: 0xDBF1,\n\t27728 - 19968: 0xE0B1,\n\t27733 - 19968: 0xDFA5,\n\t27735 - 19968: 0xF9D2,\n\t27738 - 19968: 0xE7FD,\n\t27741 - 19968: 0xE6A3,\n\t27742 - 19968: 0xFBF1,\n\t27743 - 19968: 0xCBB0,\n\t27744 - 19968: 0xF2AE,\n\t27752 - 19968: 0xCDE7,\n\t27754 - 19968: 0xE8DC,\n\t27757 - 19968: 0xE7D7,\n\t27760 - 19968: 0xF7C0,\n\t27762 - 19968: 0xD0E3,\n\t27766 - 19968: 0xDAA1,\n\t27770 - 19968: 0xCCBD,\n\t27773 - 19968: 0xD1A9,\n\t27774 - 19968: 0xDDCC,\n\t27777 - 19968: 0xE3FE,\n\t27778 - 19968: 0xD1AA,\n\t27779 - 19968: 0xE8AA,\n\t27781 - 19968: 0xEAB6,\n\t27782 - 19968: 0xF9FA,\n\t27783 - 19968: 0xE6CC,\n\t27784 - 19968: 0xF6D8,\n\t27788 - 19968: 0xD4C7,\n\t27792 - 19968: 0xD9CB,\n\t27794 - 19968: 0xD9D2,\n\t27795 - 19968: 0xD3CB,\n\t27796 - 19968: 0xD8F7,\n\t27797 - 19968: 0xDAA9,\n\t27798 - 19968: 0xF5F8,\n\t27801 - 19968: 0xDEDE,\n\t27802 - 19968: 0xF2AF,\n\t27803 - 19968: 0xF8A9,\n\t27819 - 19968: 0xD8C8,\n\t27822 - 19968: 0xEEC1,\n\t27827 - 19968: 0xF9C1,\n\t27832 - 19968: 0xDDF3,\n\t27833 - 19968: 0xEAFA,\n\t27835 - 19968: 0xF6BD,\n\t27836 - 19968: 0xE1BB,\n\t27837 - 19968: 0xCDBF,\n\t27838 - 19968: 0xF4D4,\n\t27839 - 19968: 0xE6CD,\n\t27841 - 19968: 0xFCCF,\n\t27842 - 19968: 0xFBA2,\n\t27844 - 19968: 0xE0DC,\n\t27849 - 19968: 0xF4BB,\n\t27850 - 19968: 0xDAD5,\n\t27852 - 19968: 0xF9B2,\n\t27859 - 19968: 0xFBF2,\n\t27861 - 19968: 0xDBF6,\n\t27863 - 19968: 0xDEDF,\n\t27867 - 19968: 0xDBF2,\n\t27873 - 19968: 0xF8DC,\n\t27874 - 19968: 0xF7EE,\n\t27875 - 19968: 0xEBE8,\n\t27877 - 19968: 0xD2FA,\n\t27880 - 19968: 0xF1BC,\n\t27883 - 19968: 0xFADA,\n\t27886 - 19968: 0xDAEA,\n\t27887 - 19968: 0xDAC6,\n\t27888 - 19968: 0xF7C1,\n\t27891 - 19968: 0xE7B6,\n\t27915 - 19968: 0xE5C7,\n\t27916 - 19968: 0xD6AC,\n\t27921 - 19968: 0xDCC7,\n\t27927 - 19968: 0xE1A9,\n\t27929 - 19968: 0xE2AA,\n\t27931 - 19968: 0xD5A6,\n\t27934 - 19968: 0xD4D7,\n\t27941 - 19968: 0xF2D0,\n\t27943 - 19968: 0xEAFB,\n\t27945 - 19968: 0xE0DD,\n\t27946 - 19968: 0xFBF3,\n\t27954 - 19968: 0xF1BD,\n\t27957 - 19968: 0xE2E7,\n\t27958 - 19968: 0xFDD7,\n\t27960 - 19968: 0xCEC8,\n\t27961 - 19968: 0xEAB7,\n\t27963 - 19968: 0xFCC0,\n\t27965 - 19968: 0xFDE7,\n\t27966 - 19968: 0xF7EF,\n\t27969 - 19968: 0xD7B5,\n\t27993 - 19968: 0xEFBA,\n\t27994 - 19968: 0xF1DD,\n\t27996 - 19968: 0xDEB3,\n\t28003 - 19968: 0xE8CB,\n\t28006 - 19968: 0xF8DD,\n\t28009 - 19968: 0xFBC7,\n\t28010 - 19968: 0xD5C8,\n\t28012 - 19968: 0xD7DF,\n\t28014 - 19968: 0xDDA9,\n\t28020 - 19968: 0xE9B1,\n\t28023 - 19968: 0xFAAD,\n\t28024 - 19968: 0xF6D9,\n\t28025 - 19968: 0xFAF4,\n\t28031 - 19968: 0xF8AA,\n\t28037 - 19968: 0xE6EE,\n\t28039 - 19968: 0xCCDC,\n\t28040 - 19968: 0xE1BC,\n\t28041 - 19968: 0xE0EF,\n\t28044 - 19968: 0xE9BF,\n\t28045 - 19968: 0xFCFD,\n\t28046 - 19968: 0xE6CE,\n\t28049 - 19968: 0xE1D7,\n\t28051 - 19968: 0xE6CF,\n\t28053 - 19968: 0xF4F1,\n\t28079 - 19968: 0xE4F3,\n\t28082 - 19968: 0xE4FB,\n\t28085 - 19968: 0xF9E4,\n\t28096 - 19968: 0xEFE3,\n\t28099 - 19968: 0xCFEE,\n\t28100 - 19968: 0xF6BE,\n\t28101 - 19968: 0xE0B2,\n\t28102 - 19968: 0xFCFE,\n\t28103 - 19968: 0xD1AB,\n\t28107 - 19968: 0xD7FA,\n\t28111 - 19968: 0xFBC8,\n\t28113 - 19968: 0xE2D7,\n\t28120 - 19968: 0xD4A3,\n\t28121 - 19968: 0xF0F8,\n\t28122 - 19968: 0xD7A8,\n\t28126 - 19968: 0xE1E7,\n\t28129 - 19968: 0xD3BF,\n\t28136 - 19968: 0xEFE4,\n\t28138 - 19968: 0xD7C5,\n\t28139 - 19968: 0xEBE2,\n\t28142 - 19968: 0xFCE7,\n\t28145 - 19968: 0xE4A2,\n\t28147 - 19968: 0xE2E8,\n\t28149 - 19968: 0xE6D0,\n\t28151 - 19968: 0xFBE8,\n\t28152 - 19968: 0xF4E8,\n\t28153 - 19968: 0xE5F4,\n\t28154 - 19968: 0xF4BC,\n\t28155 - 19968: 0xF4D5,\n\t28183 - 19968: 0xDFB6,\n\t28185 - 19968: 0xFCB9,\n\t28186 - 19968: 0xEEC2,\n\t28187 - 19968: 0xCAF5,\n\t28191 - 19968: 0xEFE5,\n\t28192 - 19968: 0xCBE2,\n\t28193 - 19968: 0xD4A4,\n\t28195 - 19968: 0xDEE0,\n\t28196 - 19968: 0xDAFD,\n\t28197 - 19968: 0xE4C6,\n\t28198 - 19968: 0xE8BE,\n\t28203 - 19968: 0xE0DE,\n\t28204 - 19968: 0xF6B4,\n\t28205 - 19968: 0xEAD2,\n\t28207 - 19968: 0xF9FB,\n\t28210 - 19968: 0xE0C2,\n\t28212 - 19968: 0xCAE4,\n\t28214 - 19968: 0xE7B7,\n\t28216 - 19968: 0xEAFD,\n\t28218 - 19968: 0xD9DD,\n\t28220 - 19968: 0xDAB4,\n\t28221 - 19968: 0xEEAA,\n\t28222 - 19968: 0xFBE9,\n\t28227 - 19968: 0xDBCB,\n\t28228 - 19968: 0xDAB5,\n\t28234 - 19968: 0xF1BE,\n\t28237 - 19968: 0xD3AC,\n\t28246 - 19968: 0xFBC9,\n\t28248 - 19968: 0xDFCF,\n\t28251 - 19968: 0xD3C0,\n\t28252 - 19968: 0xE3D7,\n\t28254 - 19968: 0xEFE6,\n\t28255 - 19968: 0xFCD0,\n\t28263 - 19968: 0xE9C0,\n\t28267 - 19968: 0xF5D3,\n\t28270 - 19968: 0xECDC,\n\t28271 - 19968: 0xF7B7,\n\t28274 - 19968: 0xEAB8,\n\t28275 - 19968: 0xD1F9,\n\t28282 - 19968: 0xDCC8,\n\t28304 - 19968: 0xEAB9,\n\t28310 - 19968: 0xF1DE,\n\t28316 - 19968: 0xD7B6,\n\t28317 - 19968: 0xCFB5,\n\t28319 - 19968: 0xD9A8,\n\t28322 - 19968: 0xECEE,\n\t28325 - 19968: 0xDDAA,\n\t28330 - 19968: 0xCDA2,\n\t28331 - 19968: 0xE8AE,\n\t28335 - 19968: 0xE1BD,\n\t28337 - 19968: 0xF2D1,\n\t28342 - 19968: 0xE9C1,\n\t28346 - 19968: 0xD2FC,\n\t28354 - 19968: 0xDBB5,\n\t28356 - 19968: 0xF3E7,\n\t28357 - 19968: 0xD8FE,\n\t28361 - 19968: 0xFCD1,\n\t28363 - 19968: 0xEDB2,\n\t28364 - 19968: 0xF4AF,\n\t28366 - 19968: 0xFBA3,\n\t28369 - 19968: 0xFCC1,\n\t28371 - 19968: 0xEEAB,\n\t28372 - 19968: 0xD4A5,\n\t28399 - 19968: 0xF4F2,\n\t28404 - 19968: 0xEED9,\n\t28408 - 19968: 0xFBCA,\n\t28414 - 19968: 0xCDE3,\n\t28415 - 19968: 0xD8BB,\n\t28417 - 19968: 0xE5DB,\n\t28418 - 19968: 0xF8F7,\n\t28422 - 19968: 0xF6D4,\n\t28431 - 19968: 0xD7A9,\n\t28433 - 19968: 0xCBC9,\n\t28436 - 19968: 0xE6D1,\n\t28437 - 19968: 0xF0CC,\n\t28448 - 19968: 0xD8AE,\n\t28450 - 19968: 0xF9D3,\n\t28451 - 19968: 0xD5FE,\n\t28459 - 19968: 0xD8BC,\n\t28460 - 19968: 0xF2B0,\n\t28465 - 19968: 0xE2AB,\n\t28466 - 19968: 0xF3E8,\n\t28472 - 19968: 0xEFC2,\n\t28479 - 19968: 0xEDEC,\n\t28481 - 19968: 0xE7B8,\n\t28497 - 19968: 0xDAFE,\n\t28500 - 19968: 0xCCBE,\n\t28503 - 19968: 0xF2FC,\n\t28504 - 19968: 0xDAEB,\n\t28506 - 19968: 0xE2D8,\n\t28507 - 19968: 0xEDD6,\n\t28510 - 19968: 0xD6D1,\n\t28511 - 19968: 0xE0B3,\n\t28514 - 19968: 0xFCD2,\n\t28516 - 19968: 0xEBC8,\n\t28525 - 19968: 0xD3C1,\n\t28526 - 19968: 0xF0CD,\n\t28528 - 19968: 0xCFF7,\n\t28538 - 19968: 0xEDD2,\n\t28540 - 19968: 0xD4D8,\n\t28541 - 19968: 0xDCC9,\n\t28542 - 19968: 0xD7F1,\n\t28545 - 19968: 0xDFBB,\n\t28548 - 19968: 0xF3A5,\n\t28552 - 19968: 0xF4CD,\n\t28557 - 19968: 0xF1BF,\n\t28558 - 19968: 0xF8B1,\n\t28560 - 19968: 0xE9FA,\n\t28564 - 19968: 0xFBCB,\n\t28567 - 19968: 0xCAD5,\n\t28579 - 19968: 0xF9D4,\n\t28580 - 19968: 0xF7CA,\n\t28583 - 19968: 0xD6C8,\n\t28590 - 19968: 0xFCE8,\n\t28591 - 19968: 0xF3BD,\n\t28593 - 19968: 0xEEFE,\n\t28595 - 19968: 0xE7FE,\n\t28601 - 19968: 0xD3C2,\n\t28606 - 19968: 0xD3B6,\n\t28608 - 19968: 0xCCAD,\n\t28609 - 19968: 0xF6FA,\n\t28610 - 19968: 0xD6B2,\n\t28611 - 19968: 0xD2D8,\n\t28618 - 19968: 0xE7D8,\n\t28629 - 19968: 0xE3A5,\n\t28634 - 19968: 0xE7B9,\n\t28639 - 19968: 0xF0AD,\n\t28640 - 19968: 0xFBCC,\n\t28641 - 19968: 0xEBA1,\n\t28644 - 19968: 0xD4A6,\n\t28649 - 19968: 0xFBCD,\n\t28651 - 19968: 0xD5BD,\n\t28652 - 19968: 0xF1DF,\n\t28655 - 19968: 0xF6FB,\n\t28657 - 19968: 0xDEB4,\n\t28670 - 19968: 0xD5EB,\n\t28673 - 19968: 0xE5C8,\n\t28677 - 19968: 0xFBA4,\n\t28678 - 19968: 0xD4B9,\n\t28681 - 19968: 0xDEE1,\n\t28683 - 19968: 0xE4A3,\n\t28687 - 19968: 0xD7B7,\n\t28689 - 19968: 0xF8EE,\n\t28693 - 19968: 0xDEB5,\n\t28696 - 19968: 0xD6D2,\n\t28698 - 19968: 0xF9D5,\n\t28699 - 19968: 0xE7BA,\n\t28700 - 19968: 0xEBD5,\n\t28701 - 19968: 0xD5F7,\n\t28702 - 19968: 0xEFE7,\n\t28703 - 19968: 0xE1BE,\n\t28707 - 19968: 0xFAAE,\n\t28711 - 19968: 0xD6E9,\n\t28712 - 19968: 0xD6EE,\n\t28719 - 19968: 0xE7BB,\n\t28727 - 19968: 0xECCB,\n\t28734 - 19968: 0xD5B3,\n\t28748 - 19968: 0xCEB4,\n\t28752 - 19968: 0xFBA5,\n\t28753 - 19968: 0xE1EE,\n\t28760 - 19968: 0xF7A8,\n\t28765 - 19968: 0xFBCE,\n\t28771 - 19968: 0xD8BD,\n\t28779 - 19968: 0xFBFD,\n\t28784 - 19968: 0xFCE9,\n\t28792 - 19968: 0xCFB6,\n\t28796 - 19968: 0xEDC7,\n\t28797 - 19968: 0xEEAC,\n\t28805 - 19968: 0xCCDD,\n\t28810 - 19968: 0xF6A7,\n\t28814 - 19968: 0xE6FA,\n\t28818 - 19968: 0xF5A4,\n\t28824 - 19968: 0xFDDC,\n\t28825 - 19968: 0xEDB3,\n\t28826 - 19968: 0xCEC9,\n\t28833 - 19968: 0xEFE8,\n\t28836 - 19968: 0xE1BF,\n\t28843 - 19968: 0xFADB,\n\t28844 - 19968: 0xCBE3,\n\t28845 - 19968: 0xF7A9,\n\t28847 - 19968: 0xFBA6,\n\t28851 - 19968: 0xDCB9,\n\t28855 - 19968: 0xF1C0,\n\t28856 - 19968: 0xEDC8,\n\t28857 - 19968: 0xEFC3,\n\t28872 - 19968: 0xD6AD,\n\t28875 - 19968: 0xFDCE,\n\t28879 - 19968: 0xE8A1,\n\t28888 - 19968: 0xFBF4,\n\t28889 - 19968: 0xD5A7,\n\t28893 - 19968: 0xF1F6,\n\t28895 - 19968: 0xE6D3,\n\t28913 - 19968: 0xCCDE,\n\t28921 - 19968: 0xF8B2,\n\t28925 - 19968: 0xDCEB,\n\t28932 - 19968: 0xFDB6,\n\t28937 - 19968: 0xE5EA,\n\t28940 - 19968: 0xF1E0,\n\t28953 - 19968: 0xDBCC,\n\t28954 - 19968: 0xDDCD,\n\t28958 - 19968: 0xD4C8,\n\t28961 - 19968: 0xD9ED,\n\t28966 - 19968: 0xF5A5,\n\t28976 - 19968: 0xE6FB,\n\t28982 - 19968: 0xE6D4,\n\t28999 - 19968: 0xFDC8,\n\t29001 - 19968: 0xD6A1,\n\t29002 - 19968: 0xFDBF,\n\t29004 - 19968: 0xFCD3,\n\t29006 - 19968: 0xEFA1,\n\t29008 - 19968: 0xE7BC,\n\t29014 - 19968: 0xD1EE,\n\t29017 - 19968: 0xE6D5,\n\t29020 - 19968: 0xE9F2,\n\t29022 - 19968: 0xDFB0,\n\t29028 - 19968: 0xD8E0,\n\t29029 - 19968: 0xFCBA,\n\t29030 - 19968: 0xFDAF,\n\t29031 - 19968: 0xF0CE,\n\t29033 - 19968: 0xDBE1,\n\t29036 - 19968: 0xE5C9,\n\t29038 - 19968: 0xEDB4,\n\t29053 - 19968: 0xE0C3,\n\t29060 - 19968: 0xE3D8,\n\t29065 - 19968: 0xE9FB,\n\t29066 - 19968: 0xEAA8,\n\t29071 - 19968: 0xFDB7,\n\t29074 - 19968: 0xFBA7,\n\t29076 - 19968: 0xE9C2,\n\t29081 - 19968: 0xFDF7,\n\t29087 - 19968: 0xE2D9,\n\t29090 - 19968: 0xDCEC,\n\t29100 - 19968: 0xE8A2,\n\t29105 - 19968: 0xE6F0,\n\t29113 - 19968: 0xFDF8,\n\t29114 - 19968: 0xFDF9,\n\t29118 - 19968: 0xF6BF,\n\t29121 - 19968: 0xE7A7,\n\t29123 - 19968: 0xE6D7,\n\t29128 - 19968: 0xD4F3,\n\t29129 - 19968: 0xD4C9,\n\t29134 - 19968: 0xD6FA,\n\t29136 - 19968: 0xD7F2,\n\t29138 - 19968: 0xE1C0,\n\t29140 - 19968: 0xDBE2,\n\t29141 - 19968: 0xE6D8,\n\t29151 - 19968: 0xE7BD,\n\t29157 - 19968: 0xF0CF,\n\t29158 - 19968: 0xF3BE,\n\t29159 - 19968: 0xE2AC,\n\t29165 - 19968: 0xF5B7,\n\t29166 - 19968: 0xE0F0,\n\t29179 - 19968: 0xFDB8,\n\t29180 - 19968: 0xE3E8,\n\t29182 - 19968: 0xD4A7,\n\t29183 - 19968: 0xE8FC,\n\t29184 - 19968: 0xFAD2,\n\t29190 - 19968: 0xF8EF,\n\t29200 - 19968: 0xD6D3,\n\t29211 - 19968: 0xD5B4,\n\t29226 - 19968: 0xF0D0,\n\t29228 - 19968: 0xF7F0,\n\t29229 - 19968: 0xEEB3,\n\t29232 - 19968: 0xEABA,\n\t29234 - 19968: 0xEAD3,\n\t29237 - 19968: 0xEDC9,\n\t29238 - 19968: 0xDDAB,\n\t29242 - 19968: 0xE5AC,\n\t29243 - 19968: 0xFDA1,\n\t29245 - 19968: 0xDFD0,\n\t29246 - 19968: 0xECB3,\n\t29248 - 19968: 0xDFD1,\n\t29254 - 19968: 0xEDED,\n\t29255 - 19968: 0xF8B8,\n\t29256 - 19968: 0xF7FA,\n\t29260 - 19968: 0xF8AB,\n\t29266 - 19968: 0xF4E0,\n\t29272 - 19968: 0xD4BA,\n\t29273 - 19968: 0xE4B3,\n\t29275 - 19968: 0xE9DA,\n\t29277 - 19968: 0xDEB6,\n\t29279 - 19968: 0xD9BF,\n\t29281 - 19968: 0xD9C0,\n\t29282 - 19968: 0xD6EF,\n\t29287 - 19968: 0xD9CC,\n\t29289 - 19968: 0xDAAA,\n\t29298 - 19968: 0xDFE5,\n\t29305 - 19968: 0xF7E5,\n\t29309 - 19968: 0xCCB2,\n\t29312 - 19968: 0xDFF9,\n\t29313 - 19968: 0xD7E0,\n\t29346 - 19968: 0xD4BB,\n\t29351 - 19968: 0xFDFA,\n\t29356 - 19968: 0xCCB3,\n\t29359 - 19968: 0xDBF3,\n\t29376 - 19968: 0xDFD2,\n\t29378 - 19968: 0xCECA,\n\t29380 - 19968: 0xEEDA,\n\t29390 - 19968: 0xE4E4,\n\t29392 - 19968: 0xFBCF,\n\t29399 - 19968: 0xCFB7,\n\t29401 - 19968: 0xEEC3,\n\t29409 - 19968: 0xCEEA,\n\t29417 - 19968: 0xE2AD,\n\t29432 - 19968: 0xD7E1,\n\t29433 - 19968: 0xFAF5,\n\t29436 - 19968: 0xD5C9,\n\t29437 - 19968: 0xF8AC,\n\t29450 - 19968: 0xE7D9,\n\t29462 - 19968: 0xF3E9,\n\t29467 - 19968: 0xD8ED,\n\t29468 - 19968: 0xE3C4,\n\t29469 - 19968: 0xF0F1,\n\t29477 - 19968: 0xE8E5,\n\t29481 - 19968: 0xE0FA,\n\t29482 - 19968: 0xEEC4,\n\t29483 - 19968: 0xD9DE,\n\t29494 - 19968: 0xEBA2,\n\t29495 - 19968: 0xEBA3,\n\t29502 - 19968: 0xFCC2,\n\t29503 - 19968: 0xEABB,\n\t29508 - 19968: 0xE8AB,\n\t29509 - 19968: 0xDEE2,\n\t29520 - 19968: 0xEDEF,\n\t29522 - 19968: 0xE8A3,\n\t29527 - 19968: 0xCFF1,\n\t29544 - 19968: 0xD4BC,\n\t29546 - 19968: 0xFCEA,\n\t29552 - 19968: 0xE7BE,\n\t29554 - 19968: 0xFCF2,\n\t29557 - 19968: 0xD6B4,\n\t29560 - 19968: 0xE2AE,\n\t29562 - 19968: 0xD3B7,\n\t29563 - 19968: 0xFACC,\n\t29572 - 19968: 0xFADC,\n\t29574 - 19968: 0xEDB5,\n\t29575 - 19968: 0xE1E3,\n\t29577 - 19968: 0xE8AC,\n\t29579 - 19968: 0xE8DD,\n\t29582 - 19968: 0xEFE9,\n\t29588 - 19968: 0xF4BD,\n\t29590 - 19968: 0xCFB8,\n\t29591 - 19968: 0xE9DB,\n\t29592 - 19968: 0xD1AC,\n\t29599 - 19968: 0xDAC7,\n\t29607 - 19968: 0xEBC9,\n\t29609 - 19968: 0xE8CC,\n\t29613 - 19968: 0xDEB7,\n\t29618 - 19968: 0xD6BC,\n\t29619 - 19968: 0xD3E5,\n\t29625 - 19968: 0xFADD,\n\t29632 - 19968: 0xDAD6,\n\t29634 - 19968: 0xCAB1,\n\t29641 - 19968: 0xDAC8,\n\t29642 - 19968: 0xDFA6,\n\t29644 - 19968: 0xF9B3,\n\t29645 - 19968: 0xF2D2,\n\t29647 - 19968: 0xCAC4,\n\t29654 - 19968: 0xCECB,\n\t29657 - 19968: 0xCDF5,\n\t29661 - 19968: 0xFDB0,\n\t29662 - 19968: 0xD5A8,\n\t29664 - 19968: 0xF1C1,\n\t29667 - 19968: 0xE2E9,\n\t29668 - 19968: 0xDCCA,\n\t29669 - 19968: 0xECB4,\n\t29670 - 19968: 0xFAC0,\n\t29673 - 19968: 0xFBA8,\n\t29674 - 19968: 0xD0A8,\n\t29677 - 19968: 0xDAEC,\n\t29687 - 19968: 0xD9EE,\n\t29689 - 19968: 0xE0FB,\n\t29693 - 19968: 0xEFEA,\n\t29694 - 19968: 0xFADE,\n\t29697 - 19968: 0xE0C4,\n\t29699 - 19968: 0xCFB9,\n\t29701 - 19968: 0xD5CA,\n\t29702 - 19968: 0xD7E2,\n\t29703 - 19968: 0xE2AF,\n\t29705 - 19968: 0xD7B8,\n\t29715 - 19968: 0xE8CD,\n\t29723 - 19968: 0xF6DA,\n\t29728 - 19968: 0xEFA2,\n\t29729 - 19968: 0xE2DA,\n\t29730 - 19968: 0xF6FC,\n\t29733 - 19968: 0xFBD0,\n\t29734 - 19968: 0xD1AD,\n\t29736 - 19968: 0xCDE4,\n\t29738 - 19968: 0xD1AE,\n\t29739 - 19968: 0xDCED,\n\t29740 - 19968: 0xE8CE,\n\t29742 - 19968: 0xF0F9,\n\t29743 - 19968: 0xCEB5,\n\t29744 - 19968: 0xE6FC,\n\t29747 - 19968: 0xD7FB,\n\t29748 - 19968: 0xD0D6,\n\t29749 - 19968: 0xDDF5,\n\t29750 - 19968: 0xF7F1,\n\t29752 - 19968: 0xF6FD,\n\t29754 - 19968: 0xDBF7,\n\t29759 - 19968: 0xFBEA,\n\t29760 - 19968: 0xE9DC,\n\t29761 - 19968: 0xD9C1,\n\t29763 - 19968: 0xF5F2,\n\t29764 - 19968: 0xE0C5,\n\t29771 - 19968: 0xEAD4,\n\t29781 - 19968: 0xF9C2,\n\t29783 - 19968: 0xEABC,\n\t29785 - 19968: 0xD2C5,\n\t29786 - 19968: 0xFBD1,\n\t29787 - 19968: 0xE7C0,\n\t29788 - 19968: 0xEBA5,\n\t29790 - 19968: 0xDFFA,\n\t29791 - 19968: 0xE3A2,\n\t29792 - 19968: 0xD7B9,\n\t29794 - 19968: 0xE9C3,\n\t29796 - 19968: 0xE8FD,\n\t29797 - 19968: 0xE8AF,\n\t29800 - 19968: 0xF2D3,\n\t29801 - 19968: 0xFBA9,\n\t29802 - 19968: 0xD8A5,\n\t29807 - 19968: 0xD5CB,\n\t29822 - 19968: 0xD0C8,\n\t29826 - 19968: 0xD1AF,\n\t29827 - 19968: 0xD7E3,\n\t29831 - 19968: 0xE0C6,\n\t29833 - 19968: 0xD6A2,\n\t29835 - 19968: 0xEDF0,\n\t29848 - 19968: 0xD7F3,\n\t29852 - 19968: 0xFCD4,\n\t29854 - 19968: 0xDAD7,\n\t29855 - 19968: 0xCCDF,\n\t29857 - 19968: 0xF2D4,\n\t29859 - 19968: 0xD1B0,\n\t29861 - 19968: 0xCCE0,\n\t29863 - 19968: 0xDBFD,\n\t29864 - 19968: 0xF3BF,\n\t29866 - 19968: 0xF0D1,\n\t29872 - 19968: 0xFCBB,\n\t29874 - 19968: 0xE2B0,\n\t29877 - 19968: 0xE6A5,\n\t29881 - 19968: 0xE2DB,\n\t29885 - 19968: 0xDFDE,\n\t29887 - 19968: 0xE0C7,\n\t29894 - 19968: 0xF2EF,\n\t29898 - 19968: 0xCCE1,\n\t29903 - 19968: 0xD6EA,\n\t29908 - 19968: 0xE7C2,\n\t29912 - 19968: 0xCEB6,\n\t29914 - 19968: 0xF3C0,\n\t29916 - 19968: 0xCDFE,\n\t29920 - 19968: 0xFBD2,\n\t29922 - 19968: 0xF8F8,\n\t29923 - 19968: 0xF7FB,\n\t29926 - 19968: 0xE8BF,\n\t29934 - 19968: 0xE8B7,\n\t29943 - 19968: 0xEDB6,\n\t29953 - 19968: 0xDCBA,\n\t29956 - 19968: 0xCCB4,\n\t29969 - 19968: 0xF1F7,\n\t29973 - 19968: 0xE8B8,\n\t29976 - 19968: 0xCAF6,\n\t29978 - 19968: 0xE4A4,\n\t29979 - 19968: 0xF4D6,\n\t29983 - 19968: 0xDFE6,\n\t29987 - 19968: 0xDFA7,\n\t29989 - 19968: 0xDFE7,\n\t29990 - 19968: 0xE1C1,\n\t29992 - 19968: 0xE9C4,\n\t29995 - 19968: 0xDCCB,\n\t29996 - 19968: 0xE9C5,\n\t30000 - 19968: 0xEFA3,\n\t30001 - 19968: 0xEBA6,\n\t30002 - 19968: 0xCBA3,\n\t30003 - 19968: 0xE3E9,\n\t30007 - 19968: 0xD1FB,\n\t30008 - 19968: 0xEFA4,\n\t30010 - 19968: 0xEFEB,\n\t30023 - 19968: 0xD0B4,\n\t30028 - 19968: 0xCDA3,\n\t30031 - 19968: 0xE8E6,\n\t30033 - 19968: 0xEFA5,\n\t30035 - 19968: 0xD3CC,\n\t30036 - 19968: 0xDAED,\n\t30041 - 19968: 0xD7BA,\n\t30043 - 19968: 0xF2D5,\n\t30044 - 19968: 0xF5E5,\n\t30045 - 19968: 0xD9EF,\n\t30050 - 19968: 0xF9B4,\n\t30053 - 19968: 0xD5D4,\n\t30054 - 19968: 0xFDCF,\n\t30058 - 19968: 0xDBE3,\n\t30063 - 19968: 0xF1E1,\n\t30064 - 19968: 0xECB6,\n\t30069 - 19968: 0xFBFE,\n\t30070 - 19968: 0xD3D7,\n\t30072 - 19968: 0xD1B1,\n\t30074 - 19968: 0xCBB1,\n\t30079 - 19968: 0xD1B2,\n\t30086 - 19968: 0xCBB2,\n\t30087 - 19968: 0xF1C2,\n\t30090 - 19968: 0xF4E1,\n\t30091 - 19968: 0xF9B5,\n\t30094 - 19968: 0xE1C3,\n\t30095 - 19968: 0xE1C2,\n\t30097 - 19968: 0xEBF7,\n\t30109 - 19968: 0xDFA8,\n\t30117 - 19968: 0xCBCA,\n\t30123 - 19968: 0xE6B9,\n\t30129 - 19968: 0xF8DE,\n\t30130 - 19968: 0xF9AA,\n\t30131 - 19968: 0xCAF7,\n\t30133 - 19968: 0xEDB7,\n\t30136 - 19968: 0xD3B8,\n\t30137 - 19968: 0xF2D6,\n\t30140 - 19968: 0xD4D9,\n\t30141 - 19968: 0xEEC5,\n\t30142 - 19968: 0xF2F0,\n\t30146 - 19968: 0xCAB2,\n\t30149 - 19968: 0xDCBB,\n\t30151 - 19968: 0xF1F8,\n\t30157 - 19968: 0xECB7,\n\t30162 - 19968: 0xE5CA,\n\t30164 - 19968: 0xF6C0,\n\t30165 - 19968: 0xFDDD,\n\t30168 - 19968: 0xD4E3,\n\t30169 - 19968: 0xCCE2,\n\t30171 - 19968: 0xF7D4,\n\t30178 - 19968: 0xD7E5,\n\t30192 - 19968: 0xD3C3,\n\t30194 - 19968: 0xD8A6,\n\t30196 - 19968: 0xF6C1,\n\t30202 - 19968: 0xDDF6,\n\t30204 - 19968: 0xCDC0,\n\t30208 - 19968: 0xE5DC,\n\t30221 - 19968: 0xE5CB,\n\t30233 - 19968: 0xE1C4,\n\t30239 - 19968: 0xE8B0,\n\t30240 - 19968: 0xF4B0,\n\t30241 - 19968: 0xF3EA,\n\t30242 - 19968: 0xDAEE,\n\t30244 - 19968: 0xD7BB,\n\t30246 - 19968: 0xE2B1,\n\t30267 - 19968: 0xD7AA,\n\t30274 - 19968: 0xD6FB,\n\t30284 - 19968: 0xE4DF,\n\t30286 - 19968: 0xCAD6,\n\t30290 - 19968: 0xEBA8,\n\t30294 - 19968: 0xDBFE,\n\t30305 - 19968: 0xF6C2,\n\t30308 - 19968: 0xEFBB,\n\t30313 - 19968: 0xD4FD,\n\t30316 - 19968: 0xE0C8,\n\t30320 - 19968: 0xE8B9,\n\t30322 - 19968: 0xEFA6,\n\t30328 - 19968: 0xCDA4,\n\t30331 - 19968: 0xD4F4,\n\t30332 - 19968: 0xDBA1,\n\t30333 - 19968: 0xDBDC,\n\t30334 - 19968: 0xDBDD,\n\t30340 - 19968: 0xEEDC,\n\t30342 - 19968: 0xCBCB,\n\t30343 - 19968: 0xFCD5,\n\t30350 - 19968: 0xCEEB,\n\t30352 - 19968: 0xCDC1,\n\t30355 - 19968: 0xFBD3,\n\t30382 - 19968: 0xF9AB,\n\t30394 - 19968: 0xF5D4,\n\t30399 - 19968: 0xD9A9,\n\t30402 - 19968: 0xE9DD,\n\t30403 - 19968: 0xDBCD,\n\t30406 - 19968: 0xDDCE,\n\t30408 - 19968: 0xE7C3,\n\t30410 - 19968: 0xECCC,\n\t30418 - 19968: 0xF9EC,\n\t30422 - 19968: 0xCBCC,\n\t30427 - 19968: 0xE0FC,\n\t30428 - 19968: 0xD4A8,\n\t30430 - 19968: 0xEDD3,\n\t30431 - 19968: 0xD8EF,\n\t30433 - 19968: 0xF2D7,\n\t30435 - 19968: 0xCAF8,\n\t30436 - 19968: 0xDAEF,\n\t30439 - 19968: 0xD6D4,\n\t30446 - 19968: 0xD9CD,\n\t30450 - 19968: 0xD8EE,\n\t30452 - 19968: 0xF2C1,\n\t30456 - 19968: 0xDFD3,\n\t30460 - 19968: 0xDAF0,\n\t30462 - 19968: 0xE2EA,\n\t30465 - 19968: 0xE0FD,\n\t30468 - 19968: 0xD8F8,\n\t30472 - 19968: 0xF7AF,\n\t30473 - 19968: 0xDAB6,\n\t30475 - 19968: 0xCAD7,\n\t30494 - 19968: 0xF2D8,\n\t30496 - 19968: 0xD8F9,\n\t30505 - 19968: 0xFADF,\n\t30519 - 19968: 0xCFEF,\n\t30520 - 19968: 0xD9C2,\n\t30522 - 19968: 0xF0D2,\n\t30524 - 19968: 0xE4D1,\n\t30528 - 19968: 0xF3B7,\n\t30541 - 19968: 0xFAE0,\n\t30555 - 19968: 0xEFEC,\n\t30561 - 19968: 0xE2B2,\n\t30563 - 19968: 0xD4BD,\n\t30566 - 19968: 0xD9CE,\n\t30571 - 19968: 0xF4E2,\n\t30585 - 19968: 0xD4A9,\n\t30590 - 19968: 0xCDC2,\n\t30591 - 19968: 0xE7DA,\n\t30603 - 19968: 0xF2D9,\n\t30609 - 19968: 0xD9AA,\n\t30622 - 19968: 0xD8BE,\n\t30629 - 19968: 0xDCAD,\n\t30636 - 19968: 0xE2EB,\n\t30637 - 19968: 0xD6FC,\n\t30640 - 19968: 0xCAF9,\n\t30643 - 19968: 0xD4DA,\n\t30651 - 19968: 0xF4D7,\n\t30652 - 19968: 0xCCA1,\n\t30655 - 19968: 0xCFBA,\n\t30679 - 19968: 0xF5B8,\n\t30683 - 19968: 0xD9C3,\n\t30684 - 19968: 0xD0E8,\n\t30690 - 19968: 0xE3C5,\n\t30691 - 19968: 0xEBF8,\n\t30693 - 19968: 0xF2B1,\n\t30697 - 19968: 0xCFBB,\n\t30701 - 19968: 0xD3AD,\n\t30702 - 19968: 0xE8E1,\n\t30703 - 19968: 0xCEEC,\n\t30707 - 19968: 0xE0B4,\n\t30722 - 19968: 0xDEE3,\n\t30738 - 19968: 0xDDF7,\n\t30757 - 19968: 0xF2B2,\n\t30758 - 19968: 0xF3F6,\n\t30759 - 19968: 0xF6DB,\n\t30764 - 19968: 0xD7FE,\n\t30770 - 19968: 0xF8DF,\n\t30772 - 19968: 0xF7F2,\n\t30789 - 19968: 0xD0A9,\n\t30799 - 19968: 0xE6DA,\n\t30813 - 19968: 0xF5A6,\n\t30827 - 19968: 0xD7BC,\n\t30828 - 19968: 0xCCE3,\n\t30831 - 19968: 0xE6DB,\n\t30844 - 19968: 0xDDDD,\n\t30849 - 19968: 0xD1B3,\n\t30855 - 19968: 0xEFED,\n\t30860 - 19968: 0xD6DE,\n\t30861 - 19968: 0xE4F4,\n\t30862 - 19968: 0xE1EF,\n\t30865 - 19968: 0xDDF8,\n\t30871 - 19968: 0xE8CF,\n\t30883 - 19968: 0xCAE5,\n\t30887 - 19968: 0xDCA1,\n\t30889 - 19968: 0xE0B5,\n\t30906 - 19968: 0xFCAC,\n\t30907 - 19968: 0xFCAD,\n\t30908 - 19968: 0xD8A7,\n\t30913 - 19968: 0xEDB8,\n\t30917 - 19968: 0xDBB6,\n\t30922 - 19968: 0xD6F0,\n\t30923 - 19968: 0xF3AF,\n\t30926 - 19968: 0xCDA5,\n\t30928 - 19968: 0xDAF1,\n\t30952 - 19968: 0xD8A8,\n\t30956 - 19968: 0xCCE4,\n\t30959 - 19968: 0xD1B4,\n\t30965 - 19968: 0xCAD8,\n\t30971 - 19968: 0xDAF2,\n\t30977 - 19968: 0xF5A7,\n\t30990 - 19968: 0xF5A8,\n\t30998 - 19968: 0xE6A6,\n\t31018 - 19968: 0xD5EC,\n\t31019 - 19968: 0xD5F8,\n\t31020 - 19968: 0xDAF3,\n\t31034 - 19968: 0xE3C6,\n\t31038 - 19968: 0xDEE4,\n\t31040 - 19968: 0xDEE5,\n\t31041 - 19968: 0xD1B5,\n\t31047 - 19968: 0xD1B6,\n\t31048 - 19968: 0xD1B7,\n\t31049 - 19968: 0xF2B3,\n\t31056 - 19968: 0xE9DE,\n\t31062 - 19968: 0xF0D3,\n\t31063 - 19968: 0xF2B4,\n\t31066 - 19968: 0xF0D4,\n\t31067 - 19968: 0xCBE4,\n\t31068 - 19968: 0xFBD4,\n\t31069 - 19968: 0xF5E6,\n\t31070 - 19968: 0xE3EA,\n\t31072 - 19968: 0xDEE6,\n\t31077 - 19968: 0xDFD4,\n\t31080 - 19968: 0xF8F9,\n\t31085 - 19968: 0xF0AE,\n\t31098 - 19968: 0xD1B8,\n\t31103 - 19968: 0xD6DF,\n\t31105 - 19968: 0xD0D7,\n\t31117 - 19968: 0xFCA1,\n\t31118 - 19968: 0xEFEE,\n\t31119 - 19968: 0xDCD8,\n\t31121 - 19968: 0xE9DF,\n\t31142 - 19968: 0xE5DD,\n\t31143 - 19968: 0xFDFB,\n\t31146 - 19968: 0xE0C9,\n\t31150 - 19968: 0xD6C9,\n\t31153 - 19968: 0xD4AA,\n\t31155 - 19968: 0xE5CC,\n\t31161 - 19968: 0xE9E0,\n\t31165 - 19968: 0xD0D8,\n\t31166 - 19968: 0xFCA2,\n\t31167 - 19968: 0xD4BE,\n\t31168 - 19968: 0xE2B3,\n\t31169 - 19968: 0xDEE7,\n\t31177 - 19968: 0xDCBC,\n\t31178 - 19968: 0xD2B6,\n\t31179 - 19968: 0xF5D5,\n\t31185 - 19968: 0xCEA1,\n\t31186 - 19968: 0xF5A9,\n\t31189 - 19968: 0xDDF9,\n\t31192 - 19968: 0xDDFA,\n\t31199 - 19968: 0xF0D5,\n\t31204 - 19968: 0xF6DF,\n\t31206 - 19968: 0xF2DA,\n\t31207 - 19968: 0xE4EB,\n\t31209 - 19968: 0xF2F1,\n\t31227 - 19968: 0xECB9,\n\t31232 - 19968: 0xFDFC,\n\t31237 - 19968: 0xE1AA,\n\t31240 - 19968: 0xCAD9,\n\t31243 - 19968: 0xEFEF,\n\t31245 - 19968: 0xF5AA,\n\t31252 - 19968: 0xECF9,\n\t31255 - 19968: 0xF8AD,\n\t31257 - 19968: 0xF2C2,\n\t31258 - 19968: 0xF6C3,\n\t31260 - 19968: 0xD7D2,\n\t31263 - 19968: 0xF9A2,\n\t31264 - 19968: 0xF0D6,\n\t31278 - 19968: 0xF0FA,\n\t31281 - 19968: 0xF6E0,\n\t31286 - 19968: 0xE9F3,\n\t31287 - 19968: 0xF2C3,\n\t31291 - 19968: 0xD4AB,\n\t31292 - 19968: 0xCAB3,\n\t31293 - 19968: 0xCDA6,\n\t31295 - 19968: 0xCDC3,\n\t31296 - 19968: 0xCDDA,\n\t31302 - 19968: 0xD9CF,\n\t31305 - 19968: 0xF6C4,\n\t31309 - 19968: 0xEEDD,\n\t31310 - 19968: 0xE7C4,\n\t31319 - 19968: 0xE2B4,\n\t31329 - 19968: 0xDFE2,\n\t31330 - 19968: 0xE7DB,\n\t31337 - 19968: 0xE8B1,\n\t31339 - 19968: 0xFCAE,\n\t31344 - 19968: 0xE5CD,\n\t31348 - 19968: 0xFAEB,\n\t31350 - 19968: 0xCFBC,\n\t31353 - 19968: 0xCFE2,\n\t31354 - 19968: 0xCDF6,\n\t31357 - 19968: 0xEFF0,\n\t31359 - 19968: 0xF4BE,\n\t31361 - 19968: 0xD4CD,\n\t31364 - 19968: 0xF3B8,\n\t31368 - 19968: 0xE9A1,\n\t31378 - 19968: 0xF2F2,\n\t31379 - 19968: 0xF3EB,\n\t31381 - 19968: 0xF0D7,\n\t31384 - 19968: 0xCFD7,\n\t31391 - 19968: 0xCFDF,\n\t31401 - 19968: 0xE8C0,\n\t31402 - 19968: 0xE8C1,\n\t31406 - 19968: 0xCFE3,\n\t31407 - 19968: 0xE9A2,\n\t31418 - 19968: 0xD0AA,\n\t31428 - 19968: 0xF3C1,\n\t31429 - 19968: 0xD0AB,\n\t31431 - 19968: 0xD4E4,\n\t31434 - 19968: 0xEFBC,\n\t31435 - 19968: 0xD8A1,\n\t31447 - 19968: 0xD9DF,\n\t31449 - 19968: 0xF3D7,\n\t31453 - 19968: 0xDCBD,\n\t31455 - 19968: 0xCCE5,\n\t31456 - 19968: 0xEDF1,\n\t31459 - 19968: 0xF1E2,\n\t31461 - 19968: 0xD4DB,\n\t31466 - 19968: 0xE2B5,\n\t31469 - 19968: 0xCAE6,\n\t31471 - 19968: 0xD3AE,\n\t31478 - 19968: 0xCCE6,\n\t31481 - 19968: 0xF1D3,\n\t31482 - 19968: 0xF5E7,\n\t31487 - 19968: 0xCADA,\n\t31503 - 19968: 0xFBEE,\n\t31505 - 19968: 0xE1C5,\n\t31513 - 19968: 0xDFE9,\n\t31515 - 19968: 0xEEDE,\n\t31518 - 19968: 0xF7C2,\n\t31520 - 19968: 0xD8A2,\n\t31526 - 19968: 0xDDAC,\n\t31532 - 19968: 0xF0AF,\n\t31533 - 19968: 0xD6BD,\n\t31545 - 19968: 0xE1AB,\n\t31558 - 19968: 0xF9B6,\n\t31561 - 19968: 0xD4F5,\n\t31563 - 19968: 0xD0C9,\n\t31564 - 19968: 0xEFA7,\n\t31565 - 19968: 0xE2EC,\n\t31567 - 19968: 0xDBEA,\n\t31568 - 19968: 0xCECC,\n\t31569 - 19968: 0xF5E8,\n\t31570 - 19968: 0xF7D5,\n\t31572 - 19968: 0xD3CD,\n\t31574 - 19968: 0xF3FE,\n\t31584 - 19968: 0xD0B5,\n\t31596 - 19968: 0xE0FE,\n\t31598 - 19968: 0xDFFB,\n\t31605 - 19968: 0xE6DD,\n\t31613 - 19968: 0xE8A4,\n\t31623 - 19968: 0xCBCD,\n\t31627 - 19968: 0xEFA8,\n\t31631 - 19968: 0xEEB4,\n\t31636 - 19968: 0xDAD8,\n\t31637 - 19968: 0xD1B9,\n\t31639 - 19968: 0xDFA9,\n\t31642 - 19968: 0xF3B0,\n\t31645 - 19968: 0xCCC4,\n\t31649 - 19968: 0xCEB7,\n\t31661 - 19968: 0xEFA9,\n\t31665 - 19968: 0xDFD5,\n\t31668 - 19968: 0xEDD7,\n\t31672 - 19968: 0xEEC6,\n\t31680 - 19968: 0xEFBD,\n\t31681 - 19968: 0xFCD6,\n\t31684 - 19968: 0xDBF4,\n\t31686 - 19968: 0xEFAA,\n\t31687 - 19968: 0xF8B9,\n\t31689 - 19968: 0xF5E9,\n\t31698 - 19968: 0xE3D9,\n\t31712 - 19968: 0xE1C6,\n\t31716 - 19968: 0xD4BF,\n\t31721 - 19968: 0xDEE8,\n\t31751 - 19968: 0xF0EA,\n\t31762 - 19968: 0xF3C2,\n\t31774 - 19968: 0xD3AF,\n\t31777 - 19968: 0xCADB,\n\t31783 - 19968: 0xFCD7,\n\t31786 - 19968: 0xEDD8,\n\t31787 - 19968: 0xE1C7,\n\t31805 - 19968: 0xF4D8,\n\t31806 - 19968: 0xD6B3,\n\t31807 - 19968: 0xDDAD,\n\t31811 - 19968: 0xD5BE,\n\t31820 - 19968: 0xF1C3,\n\t31821 - 19968: 0xEEDF,\n\t31840 - 19968: 0xD6EB,\n\t31844 - 19968: 0xF4D9,\n\t31852 - 19968: 0xD7E6,\n\t31859 - 19968: 0xDAB7,\n\t31875 - 19968: 0xDDFB,\n\t31881 - 19968: 0xDDCF,\n\t31890 - 19968: 0xD8A3,\n\t31893 - 19968: 0xDAD9,\n\t31895 - 19968: 0xF0D8,\n\t31896 - 19968: 0xEFC4,\n\t31903 - 19968: 0xE1D8,\n\t31909 - 19968: 0xF1D4,\n\t31911 - 19968: 0xEDF2,\n\t31918 - 19968: 0xD5DB,\n\t31921 - 19968: 0xD5DC,\n\t31922 - 19968: 0xF3C4,\n\t31923 - 19968: 0xCBD7,\n\t31929 - 19968: 0xE2B6,\n\t31934 - 19968: 0xEFF1,\n\t31946 - 19968: 0xFBD5,\n\t31958 - 19968: 0xD3D8,\n\t31966 - 19968: 0xDDD0,\n\t31967 - 19968: 0xF0D9,\n\t31968 - 19968: 0xCBB3,\n\t31975 - 19968: 0xD5DD,\n\t31995 - 19968: 0xCDA7,\n\t31998 - 19968: 0xD0AC,\n\t32000 - 19968: 0xD1BA,\n\t32002 - 19968: 0xF1C4,\n\t32004 - 19968: 0xE5B3,\n\t32005 - 19968: 0xFBF5,\n\t32006 - 19968: 0xE9E1,\n\t32007 - 19968: 0xFDE0,\n\t32008 - 19968: 0xFCBC,\n\t32010 - 19968: 0xDAA2,\n\t32011 - 19968: 0xDAA3,\n\t32013 - 19968: 0xD2A1,\n\t32016 - 19968: 0xD2EF,\n\t32020 - 19968: 0xE2ED,\n\t32023 - 19968: 0xDEE9,\n\t32024 - 19968: 0xCEDC,\n\t32025 - 19968: 0xF2B5,\n\t32026 - 19968: 0xD0E4,\n\t32027 - 19968: 0xDDD1,\n\t32032 - 19968: 0xE1C8,\n\t32033 - 19968: 0xDBB7,\n\t32034 - 19968: 0xDFE3,\n\t32043 - 19968: 0xEDB9,\n\t32044 - 19968: 0xF1C5,\n\t32046 - 19968: 0xF3CF,\n\t32047 - 19968: 0xD7AB,\n\t32048 - 19968: 0xE1AC,\n\t32051 - 19968: 0xE3EB,\n\t32053 - 19968: 0xEEC7,\n\t32057 - 19968: 0xE1C9,\n\t32058 - 19968: 0xCAFA,\n\t32066 - 19968: 0xF0FB,\n\t32067 - 19968: 0xFAE1,\n\t32068 - 19968: 0xF0DA,\n\t32069 - 19968: 0xCCE7,\n\t32070 - 19968: 0xDAF4,\n\t32080 - 19968: 0xCCBF,\n\t32094 - 19968: 0xCEED,\n\t32097 - 19968: 0xD5A9,\n\t32098 - 19968: 0xFAE2,\n\t32102 - 19968: 0xD0E5,\n\t32104 - 19968: 0xEBD6,\n\t32106 - 19968: 0xECDF,\n\t32110 - 19968: 0xDFFC,\n\t32113 - 19968: 0xF7D6,\n\t32114 - 19968: 0xDEEA,\n\t32115 - 19968: 0xCBB4,\n\t32118 - 19968: 0xEFBE,\n\t32121 - 19968: 0xCCB5,\n\t32127 - 19968: 0xCFBD,\n\t32142 - 19968: 0xEFF2,\n\t32143 - 19968: 0xE2B7,\n\t32147 - 19968: 0xCCE8,\n\t32156 - 19968: 0xF0FC,\n\t32160 - 19968: 0xD6E0,\n\t32162 - 19968: 0xF1C6,\n\t32172 - 19968: 0xE2B8,\n\t32173 - 19968: 0xEBAB,\n\t32177 - 19968: 0xCBB5,\n\t32178 - 19968: 0xD8D1,\n\t32180 - 19968: 0xF4CE,\n\t32181 - 19968: 0xF3F7,\n\t32184 - 19968: 0xD7C6,\n\t32186 - 19968: 0xD1BB,\n\t32187 - 19968: 0xF7AA,\n\t32189 - 19968: 0xEDCA,\n\t32190 - 19968: 0xD7D3,\n\t32191 - 19968: 0xD8FA,\n\t32199 - 19968: 0xF6C5,\n\t32202 - 19968: 0xD1CC,\n\t32203 - 19968: 0xDDFC,\n\t32214 - 19968: 0xDFFD,\n\t32216 - 19968: 0xF9E5,\n\t32218 - 19968: 0xE0CA,\n\t32221 - 19968: 0xF2FD,\n\t32222 - 19968: 0xD3B0,\n\t32224 - 19968: 0xF4F3,\n\t32225 - 19968: 0xDAC9,\n\t32227 - 19968: 0xE6DE,\n\t32232 - 19968: 0xF8BA,\n\t32233 - 19968: 0xE8D0,\n\t32236 - 19968: 0xD8FB,\n\t32239 - 19968: 0xEAD5,\n\t32244 - 19968: 0xD6A3,\n\t32251 - 19968: 0xF6C6,\n\t32265 - 19968: 0xF2DB,\n\t32266 - 19968: 0xE4FC,\n\t32277 - 19968: 0xE8B2,\n\t32283 - 19968: 0xDADA,\n\t32285 - 19968: 0xF2DC,\n\t32286 - 19968: 0xFBD6,\n\t32287 - 19968: 0xE9B2,\n\t32289 - 19968: 0xEEAD,\n\t32291 - 19968: 0xFAE3,\n\t32299 - 19968: 0xDCEE,\n\t32302 - 19968: 0xF5EA,\n\t32303 - 19968: 0xE6E0,\n\t32305 - 19968: 0xF0FD,\n\t32311 - 19968: 0xD7AC,\n\t32317 - 19968: 0xF5C5,\n\t32318 - 19968: 0xEEE0,\n\t32321 - 19968: 0xDBE5,\n\t32323 - 19968: 0xDDDE,\n\t32326 - 19968: 0xD9F0,\n\t32327 - 19968: 0xE9A3,\n\t32338 - 19968: 0xF1F9,\n\t32340 - 19968: 0xF2C4,\n\t32341 - 19968: 0xE0CB,\n\t32350 - 19968: 0xE9A4,\n\t32353 - 19968: 0xE2B9,\n\t32361 - 19968: 0xE3B1,\n\t32362 - 19968: 0xFCEB,\n\t32363 - 19968: 0xCDA8,\n\t32365 - 19968: 0xCCB6,\n\t32368 - 19968: 0xF0DB,\n\t32377 - 19968: 0xE6BA,\n\t32380 - 19968: 0xCDA9,\n\t32386 - 19968: 0xF3C3,\n\t32396 - 19968: 0xE1D9,\n\t32399 - 19968: 0xEFAB,\n\t32403 - 19968: 0xE7C5,\n\t32406 - 19968: 0xE0E9,\n\t32408 - 19968: 0xF3C5,\n\t32411 - 19968: 0xD4C0,\n\t32412 - 19968: 0xD5BF,\n\t32566 - 19968: 0xDDAE,\n\t32568 - 19968: 0xF9FC,\n\t32570 - 19968: 0xCCC0,\n\t32588 - 19968: 0xE5A2,\n\t32592 - 19968: 0xCEB8,\n\t32596 - 19968: 0xD8D2,\n\t32597 - 19968: 0xF9D6,\n\t32618 - 19968: 0xF1AA,\n\t32619 - 19968: 0xCED1,\n\t32622 - 19968: 0xF6C7,\n\t32624 - 19968: 0xDBEB,\n\t32626 - 19968: 0xDFFE,\n\t32629 - 19968: 0xD8E1,\n\t32631 - 19968: 0xF7F3,\n\t32633 - 19968: 0xD7E7,\n\t32645 - 19968: 0xD4FE,\n\t32648 - 19968: 0xD1BC,\n\t32650 - 19968: 0xE5CF,\n\t32652 - 19968: 0xCBB6,\n\t32654 - 19968: 0xDAB8,\n\t32660 - 19968: 0xCDC4,\n\t32666 - 19968: 0xD6BE,\n\t32670 - 19968: 0xE2BA,\n\t32676 - 19968: 0xCFD8,\n\t32680 - 19968: 0xE0CC,\n\t32681 - 19968: 0xEBF9,\n\t32690 - 19968: 0xFDFD,\n\t32696 - 19968: 0xD7E8,\n\t32697 - 19968: 0xCBD8,\n\t32701 - 19968: 0xE9E2,\n\t32705 - 19968: 0xE8BA,\n\t32709 - 19968: 0xE3C7,\n\t32714 - 19968: 0xECCD,\n\t32716 - 19968: 0xECCE,\n\t32718 - 19968: 0xD6BF,\n\t32722 - 19968: 0xE3A7,\n\t32724 - 19968: 0xDFD6,\n\t32725 - 19968: 0xFDE8,\n\t32735 - 19968: 0xEEE1,\n\t32736 - 19968: 0xF6A8,\n\t32737 - 19968: 0xDDFD,\n\t32745 - 19968: 0xF8BB,\n\t32747 - 19968: 0xE8D1,\n\t32752 - 19968: 0xF9D7,\n\t32761 - 19968: 0xCEEE,\n\t32764 - 19968: 0xECCF,\n\t32768 - 19968: 0xE9A5,\n\t32769 - 19968: 0xD6D5,\n\t32771 - 19968: 0xCDC5,\n\t32773 - 19968: 0xEDBA,\n\t32774 - 19968: 0xD1BD,\n\t32777 - 19968: 0xCFBE,\n\t32780 - 19968: 0xECBB,\n\t32784 - 19968: 0xD2B1,\n\t32789 - 19968: 0xCCE9,\n\t32791 - 19968: 0xD9C4,\n\t32792 - 19968: 0xE9FC,\n\t32813 - 19968: 0xD1BE,\n\t32819 - 19968: 0xECBC,\n\t32822 - 19968: 0xE5AD,\n\t32829 - 19968: 0xF7B0,\n\t32831 - 19968: 0xCCEA,\n\t32835 - 19968: 0xD3C4,\n\t32838 - 19968: 0xD6C0,\n\t32842 - 19968: 0xD6FD,\n\t32854 - 19968: 0xE1A1,\n\t32856 - 19968: 0xDEBD,\n\t32858 - 19968: 0xF6A9,\n\t32862 - 19968: 0xDAA4,\n\t32879 - 19968: 0xD6A4,\n\t32880 - 19968: 0xF5C6,\n\t32882 - 19968: 0xE1A2,\n\t32883 - 19968: 0xE9C6,\n\t32887 - 19968: 0xF2C5,\n\t32893 - 19968: 0xF4E9,\n\t32894 - 19968: 0xD6EC,\n\t32895 - 19968: 0xEBD3,\n\t32900 - 19968: 0xECBD,\n\t32901 - 19968: 0xE2DC,\n\t32902 - 19968: 0xDEEB,\n\t32903 - 19968: 0xF0DC,\n\t32905 - 19968: 0xEBBF,\n\t32907 - 19968: 0xD7CE,\n\t32908 - 19968: 0xD1BF,\n\t32918 - 19968: 0xF5AB,\n\t32923 - 19968: 0xF9FD,\n\t32925 - 19968: 0xCADC,\n\t32929 - 19968: 0xCDC6,\n\t32930 - 19968: 0xF2B6,\n\t32933 - 19968: 0xDDFE,\n\t32937 - 19968: 0xCCB7,\n\t32938 - 19968: 0xDBB8,\n\t32943 - 19968: 0xD0E9,\n\t32945 - 19968: 0xCEDD,\n\t32946 - 19968: 0xEBC0,\n\t32948 - 19968: 0xFDA2,\n\t32954 - 19968: 0xF8CB,\n\t32963 - 19968: 0xEAD6,\n\t32964 - 19968: 0xF1B0,\n\t32972 - 19968: 0xDBCE,\n\t32974 - 19968: 0xF7C3,\n\t32986 - 19968: 0xDBCF,\n\t32987 - 19968: 0xCBA4,\n\t32990 - 19968: 0xF8E0,\n\t32993 - 19968: 0xFBD7,\n\t32996 - 19968: 0xEBCA,\n\t32997 - 19968: 0xE0A1,\n\t33009 - 19968: 0xCECD,\n\t33012 - 19968: 0xD4DC,\n\t33016 - 19968: 0xFDD8,\n\t33021 - 19968: 0xD2F6,\n\t33026 - 19968: 0xF2B7,\n\t33029 - 19968: 0xFAF6,\n\t33030 - 19968: 0xF6AA,\n\t33031 - 19968: 0xFAF7,\n\t33032 - 19968: 0xD8E6,\n\t33034 - 19968: 0xF4B1,\n\t33048 - 19968: 0xE8D2,\n\t33050 - 19968: 0xCAC5,\n\t33051 - 19968: 0xCCEB,\n\t33059 - 19968: 0xE2EE,\n\t33065 - 19968: 0xE2BB,\n\t33067 - 19968: 0xF7AD,\n\t33071 - 19968: 0xF8E1,\n\t33081 - 19968: 0xF3EC,\n\t33086 - 19968: 0xDEA1,\n\t33099 - 19968: 0xE4FD,\n\t33102 - 19968: 0xE3EC,\n\t33104 - 19968: 0xDDAF,\n\t33105 - 19968: 0xDDB0,\n\t33108 - 19968: 0xCBB7,\n\t33109 - 19968: 0xE8D3,\n\t33125 - 19968: 0xE1A3,\n\t33126 - 19968: 0xD2E0,\n\t33131 - 19968: 0xF0FE,\n\t33136 - 19968: 0xE9A6,\n\t33137 - 19968: 0xCBF2,\n\t33144 - 19968: 0xEDF3,\n\t33145 - 19968: 0xDCD9,\n\t33146 - 19968: 0xE0CD,\n\t33151 - 19968: 0xF7DA,\n\t33152 - 19968: 0xDBB9,\n\t33160 - 19968: 0xCCAE,\n\t33162 - 19968: 0xDADB,\n\t33167 - 19968: 0xCDC7,\n\t33178 - 19968: 0xDDB1,\n\t33180 - 19968: 0xD8AF,\n\t33181 - 19968: 0xE3A3,\n\t33184 - 19968: 0xCEEF,\n\t33187 - 19968: 0xF2F3,\n\t33192 - 19968: 0xF8B3,\n\t33203 - 19968: 0xE0CE,\n\t33205 - 19968: 0xF5FD,\n\t33210 - 19968: 0xEBEC,\n\t33213 - 19968: 0xD3C5,\n\t33214 - 19968: 0xFCEC,\n\t33215 - 19968: 0xD2DB,\n\t33216 - 19968: 0xD4EB,\n\t33218 - 19968: 0xDEA2,\n\t33222 - 19968: 0xE5E6,\n\t33229 - 19968: 0xF0B0,\n\t33240 - 19968: 0xD5C4,\n\t33247 - 19968: 0xEDF4,\n\t33251 - 19968: 0xE3ED,\n\t33253 - 19968: 0xE8C2,\n\t33255 - 19968: 0xEDF5,\n\t33256 - 19968: 0xD7FC,\n\t33258 - 19968: 0xEDBB,\n\t33261 - 19968: 0xF6AB,\n\t33267 - 19968: 0xF2B8,\n\t33268 - 19968: 0xF6C8,\n\t33274 - 19968: 0xD3E6,\n\t33275 - 19968: 0xF2DD,\n\t33276 - 19968: 0xCFBF,\n\t33278 - 19968: 0xEBAC,\n\t33285 - 19968: 0xCFC0,\n\t33287 - 19968: 0xE6A8,\n\t33288 - 19968: 0xFDE9,\n\t33290 - 19968: 0xCFC1,\n\t33292 - 19968: 0xE0DF,\n\t33293 - 19968: 0xDEEC,\n\t33298 - 19968: 0xE0A2,\n\t33307 - 19968: 0xF4BF,\n\t33308 - 19968: 0xE2EF,\n\t33310 - 19968: 0xD9F1,\n\t33311 - 19968: 0xF1C7,\n\t33313 - 19968: 0xCBB8,\n\t33322 - 19968: 0xF9FE,\n\t33323 - 19968: 0xDBBA,\n\t33324 - 19968: 0xDAF5,\n\t33333 - 19968: 0xF6EC,\n\t33334 - 19968: 0xDADC,\n\t33335 - 19968: 0xFAE4,\n\t33337 - 19968: 0xE0CF,\n\t33344 - 19968: 0xDDB2,\n\t33349 - 19968: 0xE6A9,\n\t33351 - 19968: 0xEFF3,\n\t33369 - 19968: 0xF3ED,\n\t33380 - 19968: 0xEBFA,\n\t33382 - 19968: 0xF9E6,\n\t33390 - 19968: 0xCADD,\n\t33391 - 19968: 0xD5DE,\n\t33393 - 19968: 0xCADE,\n\t33394 - 19968: 0xDFE4,\n\t33398 - 19968: 0xE6FD,\n\t33400 - 19968: 0xF5AC,\n\t33406 - 19968: 0xE4F5,\n\t33419 - 19968: 0xE9E3,\n\t33421 - 19968: 0xEDCB,\n\t33422 - 19968: 0xCFE4,\n\t33426 - 19968: 0xD8D3,\n\t33433 - 19968: 0xDDB3,\n\t33434 - 19968: 0xD4EC,\n\t33437 - 19968: 0xF2B9,\n\t33439 - 19968: 0xDFB7,\n\t33445 - 19968: 0xCBCE,\n\t33446 - 19968: 0xFBD8,\n\t33449 - 19968: 0xD0D9,\n\t33452 - 19968: 0xDDD2,\n\t33453 - 19968: 0xF7F4,\n\t33454 - 19968: 0xE7DC,\n\t33455 - 19968: 0xE4A5,\n\t33457 - 19968: 0xFCA3,\n\t33459 - 19968: 0xDBBB,\n\t33463 - 19968: 0xF2BA,\n\t33464 - 19968: 0xE9FD,\n\t33465 - 19968: 0xD0CA,\n\t33467 - 19968: 0xF5D6,\n\t33468 - 19968: 0xD9C5,\n\t33469 - 19968: 0xE4B4,\n\t33471 - 19968: 0xEDA7,\n\t33489 - 19968: 0xEABD,\n\t33490 - 19968: 0xE6FE,\n\t33492 - 19968: 0xF7C4,\n\t33493 - 19968: 0xF5AD,\n\t33495 - 19968: 0xD9E0,\n\t33499 - 19968: 0xCAB4,\n\t33502 - 19968: 0xF8E2,\n\t33503 - 19968: 0xCFC2,\n\t33505 - 19968: 0xECBE,\n\t33509 - 19968: 0xE5B4,\n\t33510 - 19968: 0xCDC8,\n\t33511 - 19968: 0xEEC8,\n\t33521 - 19968: 0xE7C8,\n\t33533 - 19968: 0xCDC9,\n\t33534 - 19968: 0xF9B7,\n\t33537 - 19968: 0xF1E8,\n\t33538 - 19968: 0xD9F2,\n\t33539 - 19968: 0xDBF5,\n\t33540 - 19968: 0xCAB5,\n\t33541 - 19968: 0xD9C6,\n\t33545 - 19968: 0xD8C9,\n\t33559 - 19968: 0xD9AB,\n\t33576 - 19968: 0xEDBC,\n\t33579 - 19968: 0xD8D4,\n\t33583 - 19968: 0xDCDA,\n\t33585 - 19968: 0xE2BC,\n\t33588 - 19968: 0xFCED,\n\t33589 - 19968: 0xECE0,\n\t33590 - 19968: 0xD2FE,\n\t33592 - 19968: 0xE9C7,\n\t33593 - 19968: 0xE6AA,\n\t33600 - 19968: 0xE2F0,\n\t33607 - 19968: 0xFABB,\n\t33609 - 19968: 0xF5AE,\n\t33610 - 19968: 0xFBAA,\n\t33615 - 19968: 0xECFB,\n\t33617 - 19968: 0xECBF,\n\t33618 - 19968: 0xFCD8,\n\t33651 - 19968: 0xD4E5,\n\t33655 - 19968: 0xF9C3,\n\t33659 - 19968: 0xEEE2,\n\t33673 - 19968: 0xD7E9,\n\t33674 - 19968: 0xEDF6,\n\t33678 - 19968: 0xDEED,\n\t33686 - 19968: 0xCCEC,\n\t33688 - 19968: 0xE3EE,\n\t33694 - 19968: 0xE8D4,\n\t33698 - 19968: 0xFAF8,\n\t33705 - 19968: 0xDDB4,\n\t33706 - 19968: 0xE4B5,\n\t33707 - 19968: 0xD8B0,\n\t33725 - 19968: 0xD8D5,\n\t33729 - 19968: 0xF4EA,\n\t33733 - 19968: 0xCEB9,\n\t33737 - 19968: 0xD6E1,\n\t33738 - 19968: 0xCFD2,\n\t33740 - 19968: 0xD0B6,\n\t33747 - 19968: 0xCEA2,\n\t33750 - 19968: 0xF3EE,\n\t33756 - 19968: 0xF3F8,\n\t33769 - 19968: 0xDCCC,\n\t33771 - 19968: 0xD0CB,\n\t33775 - 19968: 0xFCA4,\n\t33776 - 19968: 0xCDCA,\n\t33777 - 19968: 0xD7D4,\n\t33778 - 19968: 0xDEA3,\n\t33780 - 19968: 0xE4E0,\n\t33785 - 19968: 0xEEC9,\n\t33789 - 19968: 0xE2DD,\n\t33795 - 19968: 0xF5FE,\n\t33796 - 19968: 0xD4AC,\n\t33802 - 19968: 0xD5D1,\n\t33804 - 19968: 0xD8F0,\n\t33805 - 19968: 0xF8C3,\n\t33806 - 19968: 0xEAD7,\n\t33833 - 19968: 0xF5D7,\n\t33836 - 19968: 0xD8BF,\n\t33841 - 19968: 0xFDC0,\n\t33848 - 19968: 0xEBAD,\n\t33853 - 19968: 0xD5AA,\n\t33865 - 19968: 0xE7A8,\n\t33879 - 19968: 0xEECA,\n\t33883 - 19968: 0xCAE7,\n\t33889 - 19968: 0xF8E3,\n\t33891 - 19968: 0xD4DD,\n\t33894 - 19968: 0xEAD8,\n\t33899 - 19968: 0xFBD9,\n\t33900 - 19968: 0xEDF7,\n\t33903 - 19968: 0xE5B5,\n\t33909 - 19968: 0xD0AD,\n\t33914 - 19968: 0xF1F1,\n\t33936 - 19968: 0xE2BD,\n\t33940 - 19968: 0xE3C8,\n\t33945 - 19968: 0xD9D5,\n\t33948 - 19968: 0xDFAA,\n\t33953 - 19968: 0xDBBC,\n\t33970 - 19968: 0xF8E4,\n\t33976 - 19968: 0xF1FA,\n\t33979 - 19968: 0xE5B6,\n\t33980 - 19968: 0xF3EF,\n\t33983 - 19968: 0xFBDA,\n\t33984 - 19968: 0xE1E0,\n\t33986 - 19968: 0xD9AC,\n\t33988 - 19968: 0xF5EB,\n\t33990 - 19968: 0xE0B6,\n\t33993 - 19968: 0xE9C8,\n\t33995 - 19968: 0xCBCF,\n\t33997 - 19968: 0xE3C9,\n\t34001 - 19968: 0xDEEE,\n\t34010 - 19968: 0xE2BE,\n\t34028 - 19968: 0xDCEF,\n\t34030 - 19968: 0xD6A5,\n\t34036 - 19968: 0xE2F1,\n\t34044 - 19968: 0xD6FE,\n\t34065 - 19968: 0xD9A1,\n\t34067 - 19968: 0xD8C0,\n\t34068 - 19968: 0xDCDB,\n\t34071 - 19968: 0xEDBD,\n\t34072 - 19968: 0xDFB8,\n\t34074 - 19968: 0xEAA5,\n\t34078 - 19968: 0xD7AD,\n\t34081 - 19968: 0xF3F9,\n\t34083 - 19968: 0xEDF8,\n\t34085 - 19968: 0xF5C7,\n\t34092 - 19968: 0xE1CA,\n\t34093 - 19968: 0xEBE3,\n\t34095 - 19968: 0xF2DE,\n\t34109 - 19968: 0xF8CC,\n\t34111 - 19968: 0xEAD9,\n\t34113 - 19968: 0xD3C6,\n\t34115 - 19968: 0xDBE6,\n\t34121 - 19968: 0xF5AF,\n\t34126 - 19968: 0xCEF0,\n\t34131 - 19968: 0xE9FE,\n\t34137 - 19968: 0xFBB6,\n\t34147 - 19968: 0xE2F2,\n\t34152 - 19968: 0xCFF2,\n\t34153 - 19968: 0xF7B9,\n\t34154 - 19968: 0xD9F3,\n\t34157 - 19968: 0xE1CB,\n\t34180 - 19968: 0xDADD,\n\t34183 - 19968: 0xDAB9,\n\t34191 - 19968: 0xEBFB,\n\t34193 - 19968: 0xCBB9,\n\t34196 - 19968: 0xEDF9,\n\t34203 - 19968: 0xE0E0,\n\t34214 - 19968: 0xF4C0,\n\t34216 - 19968: 0xFDBC,\n\t34217 - 19968: 0xDFB1,\n\t34218 - 19968: 0xE3EF,\n\t34223 - 19968: 0xE0A3,\n\t34224 - 19968: 0xFDB9,\n\t34234 - 19968: 0xF0B1,\n\t34241 - 19968: 0xCDCB,\n\t34249 - 19968: 0xEDBE,\n\t34253 - 19968: 0xD5C0,\n\t34254 - 19968: 0xE3F0,\n\t34255 - 19968: 0xEDFA,\n\t34261 - 19968: 0xE9E4,\n\t34268 - 19968: 0xD5ED,\n\t34269 - 19968: 0xE7DD,\n\t34276 - 19968: 0xD4F6,\n\t34277 - 19968: 0xE5B7,\n\t34281 - 19968: 0xDBE7,\n\t34282 - 19968: 0xE2BF,\n\t34295 - 19968: 0xEECB,\n\t34298 - 19968: 0xD7F4,\n\t34299 - 19968: 0xF0DD,\n\t34303 - 19968: 0xCEAB,\n\t34306 - 19968: 0xE7DE,\n\t34310 - 19968: 0xD6D6,\n\t34311 - 19968: 0xE1CC,\n\t34314 - 19968: 0xE8B3,\n\t34326 - 19968: 0xE5EE,\n\t34327 - 19968: 0xDCA2,\n\t34330 - 19968: 0xE0D0,\n\t34349 - 19968: 0xD5B5,\n\t34367 - 19968: 0xD5A1,\n\t34382 - 19968: 0xFBDB,\n\t34384 - 19968: 0xF9CB,\n\t34388 - 19968: 0xCBF3,\n\t34389 - 19968: 0xF4A5,\n\t34395 - 19968: 0xFAC8,\n\t34396 - 19968: 0xD6D7,\n\t34398 - 19968: 0xE9E5,\n\t34399 - 19968: 0xFBDC,\n\t34407 - 19968: 0xFDD0,\n\t34425 - 19968: 0xFBF6,\n\t34442 - 19968: 0xDAA5,\n\t34444 - 19968: 0xDBBD,\n\t34451 - 19968: 0xECE2,\n\t34467 - 19968: 0xCDF7,\n\t34468 - 19968: 0xF0DE,\n\t34473 - 19968: 0xF6C9,\n\t34503 - 19968: 0xDEEF,\n\t34507 - 19968: 0xD3B1,\n\t34516 - 19968: 0xFCEE,\n\t34521 - 19968: 0xE8C3,\n\t34523 - 19968: 0xF1C8,\n\t34527 - 19968: 0xCEF1,\n\t34532 - 19968: 0xF9ED,\n\t34541 - 19968: 0xF2F4,\n\t34558 - 19968: 0xE4B6,\n\t34560 - 19968: 0xF5B9,\n\t34562 - 19968: 0xDCF0,\n\t34563 - 19968: 0xE3F1,\n\t34568 - 19968: 0xE8A5,\n\t34584 - 19968: 0xF2BB,\n\t34586 - 19968: 0xDEA4,\n\t34588 - 19968: 0xDACC,\n\t34638 - 19968: 0xCAE9,\n\t34645 - 19968: 0xE3DA,\n\t34647 - 19968: 0xFCD9,\n\t34655 - 19968: 0xEADA,\n\t34662 - 19968: 0xF9C4,\n\t34664 - 19968: 0xE3A4,\n\t34676 - 19968: 0xFBDD,\n\t34678 - 19968: 0xEFCA,\n\t34680 - 19968: 0xE8C4,\n\t34690 - 19968: 0xD5CC,\n\t34701 - 19968: 0xEBD7,\n\t34719 - 19968: 0xD9AD,\n\t34722 - 19968: 0xFBAB,\n\t34739 - 19968: 0xD3D9,\n\t34746 - 19968: 0xD5A2,\n\t34756 - 19968: 0xF6DE,\n\t34784 - 19968: 0xDAF6,\n\t34796 - 19968: 0xE0D1,\n\t34799 - 19968: 0xE9A8,\n\t34802 - 19968: 0xF5F9,\n\t34809 - 19968: 0xFAAF,\n\t34811 - 19968: 0xEBFC,\n\t34814 - 19968: 0xE0EA,\n\t34821 - 19968: 0xE3B2,\n\t34847 - 19968: 0xD5C5,\n\t34850 - 19968: 0xF1E3,\n\t34851 - 19968: 0xD5EE,\n\t34865 - 19968: 0xCDCC,\n\t34870 - 19968: 0xEDD9,\n\t34875 - 19968: 0xD8C1,\n\t34880 - 19968: 0xFAEC,\n\t34886 - 19968: 0xF1EB,\n\t34892 - 19968: 0xFABC,\n\t34893 - 19968: 0xE6E2,\n\t34898 - 19968: 0xFAE5,\n\t34899 - 19968: 0xE2FA,\n\t34903 - 19968: 0xCAB6,\n\t34905 - 19968: 0xE4B7,\n\t34907 - 19968: 0xEADB,\n\t34909 - 19968: 0xF5FA,\n\t34913 - 19968: 0xFBAC,\n\t34914 - 19968: 0xCFC3,\n\t34915 - 19968: 0xEBFD,\n\t34920 - 19968: 0xF8FA,\n\t34923 - 19968: 0xDFB9,\n\t34928 - 19968: 0xE1F1,\n\t34930 - 19968: 0xD2A4,\n\t34935 - 19968: 0xF5FB,\n\t34942 - 19968: 0xD0DA,\n\t34943 - 19968: 0xD0DB,\n\t34945 - 19968: 0xEABE,\n\t34946 - 19968: 0xD9B1,\n\t34952 - 19968: 0xCAB7,\n\t34955 - 19968: 0xD3E7,\n\t34957 - 19968: 0xF8E5,\n\t34962 - 19968: 0xD3B2,\n\t34966 - 19968: 0xE2C0,\n\t34967 - 19968: 0xF2DF,\n\t34974 - 19968: 0xCDE5,\n\t34987 - 19968: 0xF9AC,\n\t34996 - 19968: 0xCDCD,\n\t35009 - 19968: 0xEEAE,\n\t35010 - 19968: 0xD6AE,\n\t35023 - 19968: 0xD7EA,\n\t35028 - 19968: 0xE7E0,\n\t35029 - 19968: 0xEBAE,\n\t35033 - 19968: 0xCFD9,\n\t35036 - 19968: 0xDCCD,\n\t35037 - 19968: 0xEDFB,\n\t35039 - 19968: 0xDEF0,\n\t35041 - 19968: 0xD7EB,\n\t35048 - 19968: 0xDEA5,\n\t35059 - 19968: 0xDFD7,\n\t35060 - 19968: 0xDBD0,\n\t35061 - 19968: 0xDBD1,\n\t35064 - 19968: 0xD5A3,\n\t35069 - 19968: 0xF0B2,\n\t35079 - 19968: 0xDCDC,\n\t35088 - 19968: 0xCAE8,\n\t35090 - 19968: 0xF8E6,\n\t35091 - 19968: 0xDCCE,\n\t35096 - 19968: 0xEADC,\n\t35097 - 19968: 0xDBD2,\n\t35109 - 19968: 0xE9B3,\n\t35114 - 19968: 0xF7DB,\n\t35126 - 19968: 0xE3A8,\n\t35128 - 19968: 0xD7AE,\n\t35131 - 19968: 0xE0E1,\n\t35137 - 19968: 0xCBBA,\n\t35140 - 19968: 0xE5D1,\n\t35167 - 19968: 0xD0DC,\n\t35172 - 19968: 0xD5C1,\n\t35178 - 19968: 0xD8CA,\n\t35186 - 19968: 0xE3A9,\n\t35199 - 19968: 0xE0A4,\n\t35201 - 19968: 0xE9A9,\n\t35203 - 19968: 0xD3C7,\n\t35206 - 19968: 0xDCDD,\n\t35207 - 19968: 0xF8AE,\n\t35211 - 19968: 0xCCB8,\n\t35215 - 19968: 0xD0AE,\n\t35219 - 19968: 0xD8F2,\n\t35222 - 19968: 0xE3CA,\n\t35233 - 19968: 0xCCAF,\n\t35241 - 19968: 0xD4AD,\n\t35242 - 19968: 0xF6D1,\n\t35250 - 19968: 0xD0CC,\n\t35258 - 19968: 0xCAC6,\n\t35261 - 19968: 0xD5C2,\n\t35264 - 19968: 0xCEBA,\n\t35282 - 19968: 0xCAC7,\n\t35299 - 19968: 0xFAB0,\n\t35316 - 19968: 0xDFD8,\n\t35320 - 19968: 0xF5BA,\n\t35328 - 19968: 0xE5EB,\n\t35330 - 19968: 0xEFF4,\n\t35331 - 19968: 0xDDB5,\n\t35336 - 19968: 0xCDAA,\n\t35338 - 19968: 0xE3F2,\n\t35340 - 19968: 0xFBF7,\n\t35342 - 19968: 0xF7D0,\n\t35347 - 19968: 0xFDBA,\n\t35350 - 19968: 0xFDE1,\n\t35351 - 19968: 0xF6FE,\n\t35352 - 19968: 0xD1C0,\n\t35355 - 19968: 0xE8C5,\n\t35357 - 19968: 0xE4B8,\n\t35359 - 19968: 0xE1E8,\n\t35363 - 19968: 0xCCC1,\n\t35365 - 19968: 0xD2ED,\n\t35370 - 19968: 0xDBBE,\n\t35373 - 19968: 0xE0E2,\n\t35377 - 19968: 0xFAC9,\n\t35380 - 19968: 0xE1CD,\n\t35382 - 19968: 0xCAB8,\n\t35386 - 19968: 0xF2E0,\n\t35387 - 19968: 0xF1C9,\n\t35408 - 19968: 0xDEF1,\n\t35412 - 19968: 0xF0DF,\n\t35413 - 19968: 0xF8C4,\n\t35419 - 19968: 0xEECC,\n\t35422 - 19968: 0xDEF2,\n\t35424 - 19968: 0xE7C9,\n\t35426 - 19968: 0xE2F3,\n\t35427 - 19968: 0xE7E1,\n\t35430 - 19968: 0xE3CB,\n\t35433 - 19968: 0xE3CC,\n\t35437 - 19968: 0xCFF8,\n\t35438 - 19968: 0xEFAC,\n\t35440 - 19968: 0xFDFE,\n\t35441 - 19968: 0xFCA5,\n\t35442 - 19968: 0xFAB1,\n\t35443 - 19968: 0xDFD9,\n\t35445 - 19968: 0xE0D2,\n\t35449 - 19968: 0xF4DA,\n\t35461 - 19968: 0xF1CA,\n\t35463 - 19968: 0xCEA3,\n\t35468 - 19968: 0xF2BC,\n\t35469 - 19968: 0xECE3,\n\t35475 - 19968: 0xE0A5,\n\t35477 - 19968: 0xF7AB,\n\t35480 - 19968: 0xEBAF,\n\t35486 - 19968: 0xE5DE,\n\t35488 - 19968: 0xE1A4,\n\t35489 - 19968: 0xCDAB,\n\t35491 - 19968: 0xD9F4,\n\t35492 - 19968: 0xE8A6,\n\t35493 - 19968: 0xCDCE,\n\t35494 - 19968: 0xE1E9,\n\t35496 - 19968: 0xFCEF,\n\t35498 - 19968: 0xE0E3,\n\t35504 - 19968: 0xE2C1,\n\t35506 - 19968: 0xCEA4,\n\t35513 - 19968: 0xDEA6,\n\t35516 - 19968: 0xEBFE,\n\t35518 - 19968: 0xEBDD,\n\t35519 - 19968: 0xF0E0,\n\t35522 - 19968: 0xF4DB,\n\t35524 - 19968: 0xE2F4,\n\t35527 - 19968: 0xD3C8,\n\t35531 - 19968: 0xF4EB,\n\t35533 - 19968: 0xEEB5,\n\t35535 - 19968: 0xF5D8,\n\t35538 - 19968: 0xD5DF,\n\t35542 - 19968: 0xD6E5,\n\t35547 - 19968: 0xEBB0,\n\t35548 - 19968: 0xF4E3,\n\t35553 - 19968: 0xE3CD,\n\t35558 - 19968: 0xF4F4,\n\t35559 - 19968: 0xFAB2,\n\t35562 - 19968: 0xEFF5,\n\t35563 - 19968: 0xCADF,\n\t35565 - 19968: 0xEBB1,\n\t35566 - 19968: 0xEDBF,\n\t35569 - 19968: 0xFDC9,\n\t35574 - 19968: 0xE4A6,\n\t35575 - 19968: 0xF9A4,\n\t35576 - 19968: 0xF0B3,\n\t35578 - 19968: 0xE5EC,\n\t35582 - 19968: 0xD1E7,\n\t35584 - 19968: 0xD9C7,\n\t35585 - 19968: 0xE4D7,\n\t35586 - 19968: 0xEADD,\n\t35588 - 19968: 0xD4F7,\n\t35598 - 19968: 0xDABA,\n\t35600 - 19968: 0xDACD,\n\t35604 - 19968: 0xF9CC,\n\t35606 - 19968: 0xE1DA,\n\t35607 - 19968: 0xDBBF,\n\t35609 - 19968: 0xCCC5,\n\t35610 - 19968: 0xECD0,\n\t35611 - 19968: 0xCBBB,\n\t35613 - 19968: 0xDEF3,\n\t35616 - 19968: 0xE9AA,\n\t35624 - 19968: 0xD9C8,\n\t35627 - 19968: 0xEEE3,\n\t35628 - 19968: 0xD7BD,\n\t35635 - 19968: 0xCFC4,\n\t35641 - 19968: 0xD0CD,\n\t35649 - 19968: 0xFCA6,\n\t35657 - 19968: 0xF1FB,\n\t35662 - 19968: 0xFDD2,\n\t35663 - 19968: 0xD1C1,\n\t35672 - 19968: 0xE3DB,\n\t35674 - 19968: 0xD3C9,\n\t35676 - 19968: 0xDCCF,\n\t35686 - 19968: 0xCCED,\n\t35692 - 19968: 0xDEA7,\n\t35695 - 19968: 0xE6BB,\n\t35696 - 19968: 0xECA1,\n\t35700 - 19968: 0xCCB9,\n\t35703 - 19968: 0xFBDE,\n\t35709 - 19968: 0xE7E2,\n\t35712 - 19968: 0xD4C1,\n\t35722 - 19968: 0xDCA8,\n\t35728 - 19968: 0xE2C2,\n\t35730 - 19968: 0xF3D8,\n\t35731 - 19968: 0xE5D3,\n\t35734 - 19968: 0xF3D9,\n\t35738 - 19968: 0xF3C6,\n\t35895 - 19968: 0xCDDB,\n\t35903 - 19968: 0xCDAC,\n\t35905 - 19968: 0xFCC3,\n\t35910 - 19968: 0xD4E7,\n\t35912 - 19968: 0xD1C2,\n\t35914 - 19968: 0xF9A5,\n\t35916 - 19968: 0xE8D5,\n\t35925 - 19968: 0xE3CE,\n\t35930 - 19968: 0xD4CA,\n\t35937 - 19968: 0xDFDA,\n\t35946 - 19968: 0xFBDF,\n\t35947 - 19968: 0xE7E3,\n\t35961 - 19968: 0xF8FB,\n\t35962 - 19968: 0xE3CF,\n\t35970 - 19968: 0xF5B0,\n\t35978 - 19968: 0xD8E7,\n\t35980 - 19968: 0xD9C9,\n\t35997 - 19968: 0xF8AF,\n\t35998 - 19968: 0xEFF6,\n\t36000 - 19968: 0xDDB6,\n\t36001 - 19968: 0xEEAF,\n\t36002 - 19968: 0xCDF8,\n\t36007 - 19968: 0xDEB8,\n\t36008 - 19968: 0xFCA7,\n\t36009 - 19968: 0xF7FC,\n\t36010 - 19968: 0xF7B1,\n\t36011 - 19968: 0xCEBB,\n\t36012 - 19968: 0xF4A1,\n\t36015 - 19968: 0xEECD,\n\t36016 - 19968: 0xE1AE,\n\t36019 - 19968: 0xECC3,\n\t36020 - 19968: 0xCFFE,\n\t36022 - 19968: 0xF8BF,\n\t36023 - 19968: 0xD8E2,\n\t36024 - 19968: 0xD3E8,\n\t36027 - 19968: 0xDEA8,\n\t36028 - 19968: 0xF4E4,\n\t36029 - 19968: 0xECC2,\n\t36031 - 19968: 0xD9F5,\n\t36032 - 19968: 0xF9C5,\n\t36033 - 19968: 0xDDD3,\n\t36034 - 19968: 0xD6F1,\n\t36035 - 19968: 0xECFC,\n\t36036 - 19968: 0xFCF0,\n\t36039 - 19968: 0xEDC0,\n\t36040 - 19968: 0xCAB9,\n\t36042 - 19968: 0xEEE4,\n\t36049 - 19968: 0xF2E1,\n\t36051 - 19968: 0xDEB9,\n\t36058 - 19968: 0xD6F2,\n\t36060 - 19968: 0xDEF4,\n\t36062 - 19968: 0xDFDB,\n\t36064 - 19968: 0xDBD3,\n\t36066 - 19968: 0xFAE7,\n\t36067 - 19968: 0xD8E3,\n\t36068 - 19968: 0xF4C1,\n\t36070 - 19968: 0xDDB7,\n\t36074 - 19968: 0xF2F5,\n\t36077 - 19968: 0xD4AE,\n\t36084 - 19968: 0xD6F3,\n\t36091 - 19968: 0xDDB8,\n\t36092 - 19968: 0xCFC5,\n\t36093 - 19968: 0xDFDF,\n\t36100 - 19968: 0xF2BE,\n\t36101 - 19968: 0xF6A1,\n\t36103 - 19968: 0xEBCB,\n\t36104 - 19968: 0xF1FC,\n\t36106 - 19968: 0xF3C7,\n\t36109 - 19968: 0xE0EB,\n\t36115 - 19968: 0xEDFC,\n\t36118 - 19968: 0xE1DB,\n\t36196 - 19968: 0xEEE5,\n\t36198 - 19968: 0xDEF5,\n\t36203 - 19968: 0xFAD3,\n\t36208 - 19968: 0xF1CB,\n\t36211 - 19968: 0xD0AF,\n\t36212 - 19968: 0xDDB9,\n\t36215 - 19968: 0xD1C3,\n\t36229 - 19968: 0xF5B1,\n\t36234 - 19968: 0xEAC6,\n\t36249 - 19968: 0xF0E1,\n\t36259 - 19968: 0xF6AC,\n\t36264 - 19968: 0xF5D9,\n\t36275 - 19968: 0xF0EB,\n\t36282 - 19968: 0xDDBA,\n\t36286 - 19968: 0xF2BF,\n\t36294 - 19968: 0xF7C5,\n\t36299 - 19968: 0xDBA2,\n\t36300 - 19968: 0xF2F6,\n\t36303 - 19968: 0xCABA,\n\t36315 - 19968: 0xF7F5,\n\t36317 - 19968: 0xCBE5,\n\t36321 - 19968: 0xEEE6,\n\t36323 - 19968: 0xE0D3,\n\t36328 - 19968: 0xCEA5,\n\t36335 - 19968: 0xD6D8,\n\t36339 - 19968: 0xD4AF,\n\t36362 - 19968: 0xE9C9,\n\t36367 - 19968: 0xD3CE,\n\t36368 - 19968: 0xF4C2,\n\t36382 - 19968: 0xCBE6,\n\t36394 - 19968: 0xF1A1,\n\t36400 - 19968: 0xEBB2,\n\t36405 - 19968: 0xF1A2,\n\t36418 - 19968: 0xEBB3,\n\t36420 - 19968: 0xF0B4,\n\t36423 - 19968: 0xCBF4,\n\t36424 - 19968: 0xD4B0,\n\t36425 - 19968: 0xF3B2,\n\t36426 - 19968: 0xFBB7,\n\t36441 - 19968: 0xF5EC,\n\t36447 - 19968: 0xEEE7,\n\t36448 - 19968: 0xF4B2,\n\t36468 - 19968: 0xF5ED,\n\t36470 - 19968: 0xCFF3,\n\t36481 - 19968: 0xF0E2,\n\t36487 - 19968: 0xEECE,\n\t36490 - 19968: 0xF1CC,\n\t36493 - 19968: 0xE5B8,\n\t36522 - 19968: 0xD7F5,\n\t36523 - 19968: 0xE3F3,\n\t36524 - 19968: 0xCFE5,\n\t36544 - 19968: 0xCFC6,\n\t36554 - 19968: 0xF3B3,\n\t36555 - 19968: 0xE4D8,\n\t36556 - 19968: 0xCFF9,\n\t36557 - 19968: 0xCFDA,\n\t36562 - 19968: 0xFACD,\n\t36575 - 19968: 0xE6E3,\n\t36587 - 19968: 0xF2E2,\n\t36600 - 19968: 0xF5EE,\n\t36603 - 19968: 0xCABB,\n\t36606 - 19968: 0xE3DC,\n\t36611 - 19968: 0xCEF2,\n\t36613 - 19968: 0xD6D9,\n\t36617 - 19968: 0xEEB0,\n\t36626 - 19968: 0xF4E5,\n\t36627 - 19968: 0xD8C2,\n\t36628 - 19968: 0xDCD0,\n\t36629 - 19968: 0xCCEE,\n\t36635 - 19968: 0xD5E0,\n\t36636 - 19968: 0xF6CA,\n\t36637 - 19968: 0xFDCA,\n\t36638 - 19968: 0xD8D6,\n\t36639 - 19968: 0xF4CF,\n\t36646 - 19968: 0xD6A6,\n\t36647 - 19968: 0xDCBE,\n\t36649 - 19968: 0xDBD4,\n\t36650 - 19968: 0xD7C7,\n\t36655 - 19968: 0xF2FE,\n\t36659 - 19968: 0xF1CD,\n\t36664 - 19968: 0xE2C3,\n\t36665 - 19968: 0xDCDE,\n\t36667 - 19968: 0xDCDF,\n\t36670 - 19968: 0xEFAD,\n\t36671 - 19968: 0xE6AB,\n\t36676 - 19968: 0xF9DD,\n\t36677 - 19968: 0xEABF,\n\t36681 - 19968: 0xEFAE,\n\t36685 - 19968: 0xF4D0,\n\t36686 - 19968: 0xCEF3,\n\t36701 - 19968: 0xE6AC,\n\t36703 - 19968: 0xCEDE,\n\t36706 - 19968: 0xD5F9,\n\t36763 - 19968: 0xE3F4,\n\t36764 - 19968: 0xCDD0,\n\t36771 - 19968: 0xD5B8,\n\t36774 - 19968: 0xF7FD,\n\t36776 - 19968: 0xDCA9,\n\t36781 - 19968: 0xDEF6,\n\t36783 - 19968: 0xDCAA,\n\t36784 - 19968: 0xF2E3,\n\t36785 - 19968: 0xE9B4,\n\t36786 - 19968: 0xD2DC,\n\t36802 - 19968: 0xE9E6,\n\t36805 - 19968: 0xE3F6,\n\t36814 - 19968: 0xE7CA,\n\t36817 - 19968: 0xD0CE,\n\t36820 - 19968: 0xDAF7,\n\t36838 - 19968: 0xCABC,\n\t36842 - 19968: 0xEEE8,\n\t36843 - 19968: 0xDADE,\n\t36845 - 19968: 0xF2F7,\n\t36848 - 19968: 0xE2FB,\n\t36850 - 19968: 0xCCA6,\n\t36855 - 19968: 0xDABB,\n\t36857 - 19968: 0xEEE9,\n\t36861 - 19968: 0xF5DA,\n\t36864 - 19968: 0xF7DC,\n\t36865 - 19968: 0xE1EA,\n\t36866 - 19968: 0xCEC1,\n\t36867 - 19968: 0xD4B1,\n\t36869 - 19968: 0xFDB1,\n\t36870 - 19968: 0xE6BD,\n\t36872 - 19968: 0xFBAD,\n\t36875 - 19968: 0xF8E7,\n\t36877 - 19968: 0xE1CE,\n\t36879 - 19968: 0xF7E2,\n\t36880 - 19968: 0xF5EF,\n\t36881 - 19968: 0xCFC7,\n\t36884 - 19968: 0xD4B2,\n\t36885 - 19968: 0xCCEF,\n\t36887 - 19968: 0xD4E8,\n\t36889 - 19968: 0xEECF,\n\t36890 - 19968: 0xF7D7,\n\t36893 - 19968: 0xE0A6,\n\t36894 - 19968: 0xD6C1,\n\t36895 - 19968: 0xE1DC,\n\t36896 - 19968: 0xF0E3,\n\t36897 - 19968: 0xF1E4,\n\t36898 - 19968: 0xDCF1,\n\t36899 - 19968: 0xD6A7,\n\t36910 - 19968: 0xF4F5,\n\t36913 - 19968: 0xF1CE,\n\t36914 - 19968: 0xF2E4,\n\t36917 - 19968: 0xD0B0,\n\t36920 - 19968: 0xECEF,\n\t36924 - 19968: 0xF9BA,\n\t36926 - 19968: 0xEBB5,\n\t36929 - 19968: 0xD4ED,\n\t36930 - 19968: 0xE2C4,\n\t36935 - 19968: 0xE9E7,\n\t36938 - 19968: 0xEBB4,\n\t36939 - 19968: 0xEAA1,\n\t36941 - 19968: 0xF8BC,\n\t36942 - 19968: 0xCEA6,\n\t36944 - 19968: 0xF9C6,\n\t36945 - 19968: 0xFCDA,\n\t36947 - 19968: 0xD4B3,\n\t36948 - 19968: 0xD3B9,\n\t36949 - 19968: 0xEADE,\n\t36953 - 19968: 0xE9AB,\n\t36956 - 19968: 0xE1E1,\n\t36957 - 19968: 0xD3CF,\n\t36958 - 19968: 0xF4F6,\n\t36960 - 19968: 0xEAC0,\n\t36961 - 19968: 0xE1CF,\n\t36963 - 19968: 0xCCBA,\n\t36969 - 19968: 0xEEEA,\n\t36973 - 19968: 0xF0E4,\n\t36974 - 19968: 0xF3B4,\n\t36975 - 19968: 0xD4EE,\n\t36978 - 19968: 0xF2C0,\n\t36981 - 19968: 0xF1E5,\n\t36983 - 19968: 0xF4C3,\n\t36984 - 19968: 0xE0D4,\n\t36986 - 19968: 0xEBB6,\n\t36988 - 19968: 0xD7A1,\n\t36989 - 19968: 0xCBE8,\n\t36991 - 19968: 0xF9AD,\n\t36992 - 19968: 0xE9AD,\n\t36993 - 19968: 0xD8E4,\n\t36994 - 19968: 0xFAB3,\n\t36995 - 19968: 0xE2C5,\n\t36996 - 19968: 0xFCBD,\n\t36999 - 19968: 0xECC4,\n\t37000 - 19968: 0xD8B1,\n\t37002 - 19968: 0xDCAB,\n\t37007 - 19968: 0xD5A4,\n\t37009 - 19968: 0xEBE9,\n\t37013 - 19968: 0xE8BB,\n\t37017 - 19968: 0xD8D7,\n\t37026 - 19968: 0xFBAE,\n\t37027 - 19968: 0xD1E1,\n\t37030 - 19968: 0xDBC0,\n\t37032 - 19968: 0xF5BE,\n\t37034 - 19968: 0xDEF7,\n\t37039 - 19968: 0xCAFB,\n\t37040 - 19968: 0xF7C6,\n\t37041 - 19968: 0xCFC8,\n\t37045 - 19968: 0xE1D0,\n\t37048 - 19968: 0xEED0,\n\t37057 - 19968: 0xE9F4,\n\t37066 - 19968: 0xCEF4,\n\t37086 - 19968: 0xD5CD,\n\t37089 - 19968: 0xCFDB,\n\t37096 - 19968: 0xDDBB,\n\t37101 - 19968: 0xCEAC,\n\t37109 - 19968: 0xE9E8,\n\t37117 - 19968: 0xD4B4,\n\t37122 - 19968: 0xE4C7,\n\t37138 - 19968: 0xF5DB,\n\t37141 - 19968: 0xFAC1,\n\t37145 - 19968: 0xDEA9,\n\t37159 - 19968: 0xD4F8,\n\t37165 - 19968: 0xEFF7,\n\t37170 - 19968: 0xD3B3,\n\t37193 - 19968: 0xEBB7,\n\t37194 - 19968: 0xEFF8,\n\t37195 - 19968: 0xF5DC,\n\t37196 - 19968: 0xEDCC,\n\t37197 - 19968: 0xDBD5,\n\t37198 - 19968: 0xF1CF,\n\t37202 - 19968: 0xF1D0,\n\t37218 - 19968: 0xF5B2,\n\t37225 - 19968: 0xD9AE,\n\t37226 - 19968: 0xD5AC,\n\t37228 - 19968: 0xE2C6,\n\t37237 - 19968: 0xFDA3,\n\t37239 - 19968: 0xFBE5,\n\t37240 - 19968: 0xDFAB,\n\t37255 - 19968: 0xE2F5,\n\t37257 - 19968: 0xF6AD,\n\t37259 - 19968: 0xF5B3,\n\t37261 - 19968: 0xF0B5,\n\t37266 - 19968: 0xE1A5,\n\t37276 - 19968: 0xF5DD,\n\t37291 - 19968: 0xECA2,\n\t37292 - 19968: 0xEDFD,\n\t37294 - 19968: 0xF5B4,\n\t37295 - 19968: 0xFBB8,\n\t37297 - 19968: 0xDBA3,\n\t37300 - 19968: 0xD6CA,\n\t37301 - 19968: 0xCBD9,\n\t37312 - 19968: 0xE5D4,\n\t37319 - 19968: 0xF3FA,\n\t37321 - 19968: 0xEBB8,\n\t37323 - 19968: 0xE0B7,\n\t37324 - 19968: 0xD7EC,\n\t37325 - 19968: 0xF1EC,\n\t37326 - 19968: 0xE5AF,\n\t37327 - 19968: 0xD5E1,\n\t37328 - 19968: 0xD7ED,\n\t37329 - 19968: 0xD1D1,\n\t37335 - 19968: 0xE1F2,\n\t37336 - 19968: 0xEFF9,\n\t37340 - 19968: 0xDDBC,\n\t37341 - 19968: 0xF6DC,\n\t37347 - 19968: 0xF0E5,\n\t37351 - 19968: 0xF4C4,\n\t37354 - 19968: 0xE9E9,\n\t37365 - 19968: 0xF3FB,\n\t37389 - 19968: 0xD4EF,\n\t37392 - 19968: 0xCCA2,\n\t37393 - 19968: 0xF7FE,\n\t37394 - 19968: 0xDFBC,\n\t37399 - 19968: 0xEBCD,\n\t37406 - 19968: 0xD0B7,\n\t37428 - 19968: 0xD6C2,\n\t37434 - 19968: 0xE8AD,\n\t37439 - 19968: 0xEFAF,\n\t37440 - 19968: 0xCBA5,\n\t37445 - 19968: 0xCBE9,\n\t37449 - 19968: 0xFAE8,\n\t37463 - 19968: 0xCCC6,\n\t37467 - 19968: 0xE6E7,\n\t37470 - 19968: 0xEAC7,\n\t37474 - 19968: 0xDBA4,\n\t37476 - 19968: 0xCFC9,\n\t37477 - 19968: 0xE2FC,\n\t37478 - 19968: 0xEFFA,\n\t37504 - 19968: 0xEBDE,\n\t37507 - 19968: 0xF5C8,\n\t37509 - 19968: 0xD4DE,\n\t37521 - 19968: 0xE0D5,\n\t37523 - 19968: 0xEFB0,\n\t37526 - 19968: 0xE2C7,\n\t37528 - 19968: 0xD9AF,\n\t37532 - 19968: 0xF9E7,\n\t37555 - 19968: 0xE7E5,\n\t37558 - 19968: 0xCFCA,\n\t37559 - 19968: 0xE1D1,\n\t37561 - 19968: 0xE2C8,\n\t37580 - 19968: 0xEFFB,\n\t37583 - 19968: 0xFAF9,\n\t37586 - 19968: 0xDCF2,\n\t37604 - 19968: 0xE0A7,\n\t37610 - 19968: 0xF8E8,\n\t37624 - 19968: 0xCBEA,\n\t37628 - 19968: 0xCBBC,\n\t37636 - 19968: 0xD6E2,\n\t37648 - 19968: 0xF5DE,\n\t37656 - 19968: 0xF5DF,\n\t37658 - 19968: 0xEEB6,\n\t37662 - 19968: 0xE2F6,\n\t37663 - 19968: 0xD3CA,\n\t37664 - 19968: 0xEFFC,\n\t37665 - 19968: 0xD1C4,\n\t37666 - 19968: 0xEFB1,\n\t37668 - 19968: 0xD1C5,\n\t37670 - 19968: 0xD0DE,\n\t37672 - 19968: 0xD9E1,\n\t37675 - 19968: 0xE0B8,\n\t37678 - 19968: 0xCDD1,\n\t37679 - 19968: 0xF3B9,\n\t37704 - 19968: 0xE7CC,\n\t37706 - 19968: 0xD6A8,\n\t37707 - 19968: 0xCEA7,\n\t37709 - 19968: 0xD4B5,\n\t37716 - 19968: 0xE4C8,\n\t37723 - 19968: 0xD3B4,\n\t37742 - 19968: 0xEBB9,\n\t37749 - 19968: 0xCBF5,\n\t37756 - 19968: 0xF6DD,\n\t37758 - 19968: 0xF1A3,\n\t37772 - 19968: 0xCCC7,\n\t37780 - 19968: 0xE9CA,\n\t37782 - 19968: 0xE1F0,\n\t37786 - 19968: 0xF5E0,\n\t37795 - 19968: 0xFBAF,\n\t37799 - 19968: 0xCBD1,\n\t37804 - 19968: 0xFBE0,\n\t37805 - 19968: 0xF2E5,\n\t37808 - 19968: 0xECF0,\n\t37827 - 19968: 0xF0EC,\n\t37841 - 19968: 0xEEEB,\n\t37854 - 19968: 0xE9CB,\n\t37857 - 19968: 0xCCF0,\n\t37860 - 19968: 0xD7AF,\n\t37878 - 19968: 0xF3A1,\n\t37892 - 19968: 0xFCF5,\n\t37912 - 19968: 0xF1A4,\n\t37925 - 19968: 0xE0D6,\n\t37931 - 19968: 0xEFB2,\n\t37941 - 19968: 0xF4D1,\n\t37944 - 19968: 0xF7A1,\n\t37956 - 19968: 0xF1D1,\n\t37969 - 19968: 0xCAFC,\n\t37970 - 19968: 0xCAFD,\n\t37979 - 19968: 0xCECE,\n\t38013 - 19968: 0xF3C8,\n\t38015 - 19968: 0xF3BA,\n\t38263 - 19968: 0xEDFE,\n\t38272 - 19968: 0xDAA6,\n\t38275 - 19968: 0xE0EC,\n\t38281 - 19968: 0xF8CD,\n\t38283 - 19968: 0xCBD2,\n\t38287 - 19968: 0xEBCE,\n\t38289 - 19968: 0xF9D8,\n\t38290 - 19968: 0xF9D9,\n\t38291 - 19968: 0xCAE0,\n\t38292 - 19968: 0xDACA,\n\t38296 - 19968: 0xCBA6,\n\t38307 - 19968: 0xCAC8,\n\t38308 - 19968: 0xF9EE,\n\t38309 - 19968: 0xDBEC,\n\t38312 - 19968: 0xD0B1,\n\t38317 - 19968: 0xD5EF,\n\t38321 - 19968: 0xE6F3,\n\t38331 - 19968: 0xE7A2,\n\t38332 - 19968: 0xE4D9,\n\t38343 - 19968: 0xE4E1,\n\t38346 - 19968: 0xFCC4,\n\t38356 - 19968: 0xF9EF,\n\t38357 - 19968: 0xCFF4,\n\t38358 - 19968: 0xF7E6,\n\t38364 - 19968: 0xCEBC,\n\t38369 - 19968: 0xF4C5,\n\t38370 - 19968: 0xDCA3,\n\t38428 - 19968: 0xDDBD,\n\t38433 - 19968: 0xF4C6,\n\t38442 - 19968: 0xF8A1,\n\t38446 - 19968: 0xE8D6,\n\t38450 - 19968: 0xDBC1,\n\t38459 - 19968: 0xF0E6,\n\t38463 - 19968: 0xE4B9,\n\t38464 - 19968: 0xF6ED,\n\t38466 - 19968: 0xF9AE,\n\t38468 - 19968: 0xDDBE,\n\t38475 - 19968: 0xD7B0,\n\t38476 - 19968: 0xD8E8,\n\t38477 - 19968: 0xCBBD,\n\t38480 - 19968: 0xF9DA,\n\t38491 - 19968: 0xF8CE,\n\t38492 - 19968: 0xF9F0,\n\t38493 - 19968: 0xE0ED,\n\t38494 - 19968: 0xE3B3,\n\t38495 - 19968: 0xF4B3,\n\t38498 - 19968: 0xEAC2,\n\t38499 - 19968: 0xF2E6,\n\t38500 - 19968: 0xF0B6,\n\t38506 - 19968: 0xDBD6,\n\t38512 - 19968: 0xEBE4,\n\t38515 - 19968: 0xF2E7,\n\t38517 - 19968: 0xD7D5,\n\t38518 - 19968: 0xD4B6,\n\t38519 - 19968: 0xF9E8,\n\t38520 - 19968: 0xD7C1,\n\t38525 - 19968: 0xE5D5,\n\t38533 - 19968: 0xE9EA,\n\t38534 - 19968: 0xD7CC,\n\t38538 - 19968: 0xD3E9,\n\t38539 - 19968: 0xE2C9,\n\t38541 - 19968: 0xFCDB,\n\t38542 - 19968: 0xCDAD,\n\t38548 - 19968: 0xCCB0,\n\t38549 - 19968: 0xEAA2,\n\t38552 - 19968: 0xE4F6,\n\t38553 - 19968: 0xD0C0,\n\t38555 - 19968: 0xF0B7,\n\t38556 - 19968: 0xEEA1,\n\t38563 - 19968: 0xD7F6,\n\t38567 - 19968: 0xE2CA,\n\t38568 - 19968: 0xE2CB,\n\t38570 - 19968: 0xFACF,\n\t38577 - 19968: 0xEBDF,\n\t38583 - 19968: 0xD6CB,\n\t38587 - 19968: 0xF4B4,\n\t38592 - 19968: 0xEDCD,\n\t38593 - 19968: 0xE4D2,\n\t38596 - 19968: 0xEAA9,\n\t38597 - 19968: 0xE4BA,\n\t38598 - 19968: 0xF3A2,\n\t38599 - 19968: 0xCDD2,\n\t38601 - 19968: 0xF6CB,\n\t38603 - 19968: 0xF1E6,\n\t38604 - 19968: 0xEDC1,\n\t38605 - 19968: 0xE8BC,\n\t38606 - 19968: 0xEED1,\n\t38613 - 19968: 0xF0E7,\n\t38614 - 19968: 0xE2CC,\n\t38617 - 19968: 0xE4AA,\n\t38619 - 19968: 0xF5E1,\n\t38620 - 19968: 0xEDDA,\n\t38626 - 19968: 0xD7EE,\n\t38627 - 19968: 0xD1F1,\n\t38632 - 19968: 0xE9EB,\n\t38633 - 19968: 0xE9EC,\n\t38634 - 19968: 0xE0E4,\n\t38639 - 19968: 0xDAA7,\n\t38640 - 19968: 0xDDD4,\n\t38642 - 19968: 0xEAA3,\n\t38646 - 19968: 0xD6C3,\n\t38647 - 19968: 0xD6F4,\n\t38649 - 19968: 0xDADF,\n\t38651 - 19968: 0xEFB3,\n\t38656 - 19968: 0xE2CD,\n\t38662 - 19968: 0xEFFD,\n\t38663 - 19968: 0xF2E8,\n\t38673 - 19968: 0xEFC5,\n\t38675 - 19968: 0xE7E7,\n\t38678 - 19968: 0xD7FD,\n\t38681 - 19968: 0xE7CE,\n\t38684 - 19968: 0xDFDC,\n\t38686 - 19968: 0xF9C7,\n\t38695 - 19968: 0xD9F6,\n\t38704 - 19968: 0xDFAC,\n\t38706 - 19968: 0xD6DA,\n\t38713 - 19968: 0xDCA4,\n\t38717 - 19968: 0xF0B8,\n\t38722 - 19968: 0xD5FA,\n\t38724 - 19968: 0xE4F7,\n\t38728 - 19968: 0xD6C4,\n\t38737 - 19968: 0xF4EC,\n\t38742 - 19968: 0xEFFE,\n\t38748 - 19968: 0xF0A1,\n\t38750 - 19968: 0xDEAA,\n\t38753 - 19968: 0xDABC,\n\t38754 - 19968: 0xD8FC,\n\t38761 - 19968: 0xFAD4,\n\t38765 - 19968: 0xECE5,\n\t38772 - 19968: 0xFCA8,\n\t38775 - 19968: 0xECE6,\n\t38778 - 19968: 0xD8CB,\n\t38795 - 19968: 0xFBB9,\n\t38797 - 19968: 0xE4D3,\n\t38799 - 19968: 0xCDF9,\n\t38816 - 19968: 0xCFD3,\n\t38824 - 19968: 0xCAEA,\n\t38827 - 19968: 0xCFD4,\n\t38829 - 19968: 0xF8BD,\n\t38854 - 19968: 0xF4C7,\n\t38859 - 19968: 0xEADF,\n\t38867 - 19968: 0xF9DB,\n\t38876 - 19968: 0xD4B7,\n\t38899 - 19968: 0xEBE5,\n\t38902 - 19968: 0xE1D2,\n\t38907 - 19968: 0xEAA4,\n\t38911 - 19968: 0xFAC2,\n\t38912 - 19968: 0xFBE1,\n\t38913 - 19968: 0xFAED,\n\t38914 - 19968: 0xF0A2,\n\t38915 - 19968: 0xCCF1,\n\t38917 - 19968: 0xFAA3,\n\t38918 - 19968: 0xE2F7,\n\t38920 - 19968: 0xE2CE,\n\t38922 - 19968: 0xE9F5,\n\t38924 - 19968: 0xE1EB,\n\t38928 - 19968: 0xE7E8,\n\t38929 - 19968: 0xE8D7,\n\t38930 - 19968: 0xDAF8,\n\t38931 - 19968: 0xD4CB,\n\t38935 - 19968: 0xF7F6,\n\t38936 - 19968: 0xD6C5,\n\t38957 - 19968: 0xD4E9,\n\t38960 - 19968: 0xFAFA,\n\t38968 - 19968: 0xCCF2,\n\t38969 - 19968: 0xF7DD,\n\t38971 - 19968: 0xDEBA,\n\t38982 - 19968: 0xCEA8,\n\t38988 - 19968: 0xF0B9,\n\t38989 - 19968: 0xE4FE,\n\t38990 - 19968: 0xE4C9,\n\t38996 - 19968: 0xE4D4,\n\t39000 - 19968: 0xEAC3,\n\t39002 - 19968: 0xEFB4,\n\t39006 - 19968: 0xD7BE,\n\t39013 - 19968: 0xFBE2,\n\t39015 - 19968: 0xCDD3,\n\t39019 - 19968: 0xEFB5,\n\t39023 - 19968: 0xFAE9,\n\t39080 - 19968: 0xF9A6,\n\t39087 - 19968: 0xDFBD,\n\t39089 - 19968: 0xF7C7,\n\t39108 - 19968: 0xF8FD,\n\t39111 - 19968: 0xF8FC,\n\t39131 - 19968: 0xDEAB,\n\t39132 - 19968: 0xDBE8,\n\t39135 - 19968: 0xE3DD,\n\t39137 - 19968: 0xE1E2,\n\t39138 - 19968: 0xD1C6,\n\t39149 - 19968: 0xF6D0,\n\t39150 - 19968: 0xEBE6,\n\t39151 - 19968: 0xDAF9,\n\t39156 - 19968: 0xECC7,\n\t39164 - 19968: 0xDEF8,\n\t39165 - 19968: 0xF8E9,\n\t39166 - 19968: 0xE3DE,\n\t39171 - 19968: 0xCEF5,\n\t39177 - 19968: 0xFAC3,\n\t39178 - 19968: 0xE5D7,\n\t39180 - 19968: 0xECC8,\n\t39184 - 19968: 0xF3C9,\n\t39187 - 19968: 0xE4BB,\n\t39192 - 19968: 0xE6AE,\n\t39198 - 19968: 0xEFB6,\n\t39200 - 19968: 0xDCBF,\n\t39208 - 19968: 0xCEBD,\n\t39237 - 19968: 0xD8C3,\n\t39241 - 19968: 0xD0CF,\n\t39243 - 19968: 0xCFFA,\n\t39244 - 19968: 0xF3CA,\n\t39245 - 19968: 0xE0D7,\n\t39249 - 19968: 0xD1C7,\n\t39250 - 19968: 0xE9AE,\n\t39252 - 19968: 0xE8BD,\n\t39255 - 19968: 0xFAC4,\n\t39318 - 19968: 0xE2CF,\n\t39321 - 19968: 0xFAC5,\n\t39325 - 19968: 0xF9B8,\n\t39333 - 19968: 0xDCE0,\n\t39336 - 19968: 0xFBB0,\n\t39340 - 19968: 0xD8A9,\n\t39341 - 19968: 0xE5DF,\n\t39342 - 19968: 0xF9A7,\n\t39345 - 19968: 0xF6EE,\n\t39347 - 19968: 0xF6CC,\n\t39348 - 19968: 0xE2F8,\n\t39353 - 19968: 0xECF1,\n\t39361 - 19968: 0xDAE0,\n\t39376 - 19968: 0xF1D2,\n\t39377 - 19968: 0xD2CC,\n\t39378 - 19968: 0xCFCB,\n\t39381 - 19968: 0xCABD,\n\t39385 - 19968: 0xDDBF,\n\t39389 - 19968: 0xF6EF,\n\t39391 - 19968: 0xDEF9,\n\t39405 - 19968: 0xFAB4,\n\t39409 - 19968: 0xD5AD,\n\t39423 - 19968: 0xF1E7,\n\t39425 - 19968: 0xDEBE,\n\t39432 - 19968: 0xDCC0,\n\t39438 - 19968: 0xD1C8,\n\t39439 - 19968: 0xD1C9,\n\t39449 - 19968: 0xF8BE,\n\t39467 - 19968: 0xCBF6,\n\t39472 - 19968: 0xD4F9,\n\t39478 - 19968: 0xF5E2,\n\t39479 - 19968: 0xE1D3,\n\t39488 - 19968: 0xD8E9,\n\t39491 - 19968: 0xF8FE,\n\t39493 - 19968: 0xCFCC,\n\t39501 - 19968: 0xFDA4,\n\t39509 - 19968: 0xCEF6,\n\t39511 - 19968: 0xFAD0,\n\t39514 - 19968: 0xCCF3,\n\t39515 - 19968: 0xE6BE,\n\t39519 - 19968: 0xF6AE,\n\t39522 - 19968: 0xD5F0,\n\t39525 - 19968: 0xD1CA,\n\t39529 - 19968: 0xFCBE,\n\t39530 - 19968: 0xD5F1,\n\t39592 - 19968: 0xCDE9,\n\t39608 - 19968: 0xFAB5,\n\t39635 - 19968: 0xE2D0,\n\t39636 - 19968: 0xF4F7,\n\t39640 - 19968: 0xCDD4,\n\t39653 - 19968: 0xE7A3,\n\t39662 - 19968: 0xDBA5,\n\t39706 - 19968: 0xE2D1,\n\t39719 - 19968: 0xD7A2,\n\t39722 - 19968: 0xF7E3,\n\t39729 - 19968: 0xEAA6,\n\t39740 - 19968: 0xD0A1,\n\t39745 - 19968: 0xCEDA,\n\t39746 - 19968: 0xFBEB,\n\t39747 - 19968: 0xDBA6,\n\t39748 - 19968: 0xDBDE,\n\t39749 - 19968: 0xD8E5,\n\t39759 - 19968: 0xEAE0,\n\t39764 - 19968: 0xD8AA,\n\t39770 - 19968: 0xE5E0,\n\t39791 - 19968: 0xD6DB,\n\t39822 - 19968: 0xEFC6,\n\t39825 - 19968: 0xF8EA,\n\t39839 - 19968: 0xE4D5,\n\t39851 - 19968: 0xCEF7,\n\t39854 - 19968: 0xE0D8,\n\t39881 - 19968: 0xD7EF,\n\t39894 - 19968: 0xF4ED,\n\t39908 - 19968: 0xCDE6,\n\t39912 - 19968: 0xCCF4,\n\t39949 - 19968: 0xF5E3,\n\t39952 - 19968: 0xE4CA,\n\t39954 - 19968: 0xDCE1,\n\t39957 - 19968: 0xF9C8,\n\t39973 - 19968: 0xFCBF,\n\t39986 - 19968: 0xE8A7,\n\t39995 - 19968: 0xD8C4,\n\t40007 - 19968: 0xCBBE,\n\t40009 - 19968: 0xDCAE,\n\t40023 - 19968: 0xD7F7,\n\t40165 - 19968: 0xF0E8,\n\t40167 - 19968: 0xDDC0,\n\t40169 - 19968: 0xCFCD,\n\t40179 - 19968: 0xDCF3,\n\t40180 - 19968: 0xD9B0,\n\t40182 - 19968: 0xE6E9,\n\t40201 - 19968: 0xE4BC,\n\t40219 - 19968: 0xEAC4,\n\t40230 - 19968: 0xE4EC,\n\t40232 - 19968: 0xE4E5,\n\t40251 - 19968: 0xFBF8,\n\t40273 - 19968: 0xCCBB,\n\t40285 - 19968: 0xE4BD,\n\t40288 - 19968: 0xCDDC,\n\t40289 - 19968: 0xD9F7,\n\t40300 - 19968: 0xDDDF,\n\t40306 - 19968: 0xEDCE,\n\t40361 - 19968: 0xD9D0,\n\t40367 - 19968: 0xE5A3,\n\t40372 - 19968: 0xF9CD,\n\t40388 - 19968: 0xCDAE,\n\t40407 - 19968: 0xCFCE,\n\t40434 - 19968: 0xF6AF,\n\t40440 - 19968: 0xFDD3,\n\t40441 - 19968: 0xEBED,\n\t40442 - 19968: 0xD6DC,\n\t40474 - 19968: 0xE5A4,\n\t40478 - 19968: 0xD5B6,\n\t40565 - 19968: 0xD6DD,\n\t40569 - 19968: 0xF9E9,\n\t40573 - 19968: 0xE7A4,\n\t40575 - 19968: 0xD6E3,\n\t40594 - 19968: 0xD1CB,\n\t40595 - 19968: 0xD6E4,\n\t40599 - 19968: 0xD5F2,\n\t40605 - 19968: 0xDEFA,\n\t40607 - 19968: 0xD7F8,\n\t40613 - 19968: 0xD8EA,\n\t40628 - 19968: 0xCFD5,\n\t40629 - 19968: 0xD8FD,\n\t40635 - 19968: 0xD8AB,\n\t40638 - 19968: 0xFDCB,\n\t40643 - 19968: 0xFCDC,\n\t40653 - 19968: 0xE0A8,\n\t40654 - 19968: 0xD5F3,\n\t40657 - 19968: 0xFDD9,\n\t40660 - 19968: 0xCCA3,\n\t40664 - 19968: 0xD9F9,\n\t40667 - 19968: 0xD3EA,\n\t40668 - 19968: 0xF5F5,\n\t40670 - 19968: 0xEFC7,\n\t40680 - 19968: 0xD3DA,\n\t40692 - 19968: 0xDABD,\n\t40711 - 19968: 0xE8A8,\n\t40712 - 19968: 0xDCAF,\n\t40718 - 19968: 0xF0A3,\n\t40723 - 19968: 0xCDD5,\n\t40736 - 19968: 0xE0A9,\n\t40763 - 19968: 0xDEAC,\n\t40778 - 19968: 0xF0BA,\n\t40779 - 19968: 0xEEB1,\n\t40782 - 19968: 0xEEB2,\n\t40786 - 19968: 0xF6CD,\n\t40799 - 19968: 0xEED2,\n\t40801 - 19968: 0xD6C6,\n\t40807 - 19968: 0xE0E5,\n\t40810 - 19968: 0xF3BB,\n\t40812 - 19968: 0xE5E1,\n\t40823 - 19968: 0xE4CB,\n\t40845 - 19968: 0xD7A3,\n\t40848 - 19968: 0xDBC2,\n\t40853 - 19968: 0xCAFE,\n\t40860 - 19968: 0xCFCF,\n}\n\nconst encode1Low, encode1High = 44032, 55204\n\nvar encode1 = [...]uint16{\n\t44032 - 44032: 0xB0A1,\n\t44033 - 44032: 0xB0A2,\n\t44034 - 44032: 0x8141,\n\t44035 - 44032: 0x8142,\n\t44036 - 44032: 0xB0A3,\n\t44037 - 44032: 0x8143,\n\t44038 - 44032: 0x8144,\n\t44039 - 44032: 0xB0A4,\n\t44040 - 44032: 0xB0A5,\n\t44041 - 44032: 0xB0A6,\n\t44042 - 44032: 0xB0A7,\n\t44043 - 44032: 0x8145,\n\t44044 - 44032: 0x8146,\n\t44045 - 44032: 0x8147,\n\t44046 - 44032: 0x8148,\n\t44047 - 44032: 0x8149,\n\t44048 - 44032: 0xB0A8,\n\t44049 - 44032: 0xB0A9,\n\t44050 - 44032: 0xB0AA,\n\t44051 - 44032: 0xB0AB,\n\t44052 - 44032: 0xB0AC,\n\t44053 - 44032: 0xB0AD,\n\t44054 - 44032: 0xB0AE,\n\t44055 - 44032: 0xB0AF,\n\t44056 - 44032: 0x814A,\n\t44057 - 44032: 0xB0B0,\n\t44058 - 44032: 0xB0B1,\n\t44059 - 44032: 0xB0B2,\n\t44060 - 44032: 0xB0B3,\n\t44061 - 44032: 0xB0B4,\n\t44062 - 44032: 0x814B,\n\t44063 - 44032: 0x814C,\n\t44064 - 44032: 0xB0B5,\n\t44065 - 44032: 0x814D,\n\t44066 - 44032: 0x814E,\n\t44067 - 44032: 0x814F,\n\t44068 - 44032: 0xB0B6,\n\t44069 - 44032: 0x8150,\n\t44070 - 44032: 0x8151,\n\t44071 - 44032: 0x8152,\n\t44072 - 44032: 0x8153,\n\t44073 - 44032: 0x8154,\n\t44074 - 44032: 0x8155,\n\t44075 - 44032: 0x8156,\n\t44076 - 44032: 0xB0B7,\n\t44077 - 44032: 0xB0B8,\n\t44078 - 44032: 0x8157,\n\t44079 - 44032: 0xB0B9,\n\t44080 - 44032: 0xB0BA,\n\t44081 - 44032: 0xB0BB,\n\t44082 - 44032: 0x8158,\n\t44083 - 44032: 0x8159,\n\t44084 - 44032: 0x815A,\n\t44085 - 44032: 0x8161,\n\t44086 - 44032: 0x8162,\n\t44087 - 44032: 0x8163,\n\t44088 - 44032: 0xB0BC,\n\t44089 - 44032: 0xB0BD,\n\t44090 - 44032: 0x8164,\n\t44091 - 44032: 0x8165,\n\t44092 - 44032: 0xB0BE,\n\t44093 - 44032: 0x8166,\n\t44094 - 44032: 0x8167,\n\t44095 - 44032: 0x8168,\n\t44096 - 44032: 0xB0BF,\n\t44097 - 44032: 0x8169,\n\t44098 - 44032: 0x816A,\n\t44099 - 44032: 0x816B,\n\t44100 - 44032: 0x816C,\n\t44101 - 44032: 0x816D,\n\t44102 - 44032: 0x816E,\n\t44103 - 44032: 0x816F,\n\t44104 - 44032: 0x8170,\n\t44105 - 44032: 0x8171,\n\t44106 - 44032: 0x8172,\n\t44107 - 44032: 0xB0C0,\n\t44108 - 44032: 0x8173,\n\t44109 - 44032: 0xB0C1,\n\t44110 - 44032: 0x8174,\n\t44111 - 44032: 0x8175,\n\t44112 - 44032: 0x8176,\n\t44113 - 44032: 0x8177,\n\t44114 - 44032: 0x8178,\n\t44115 - 44032: 0x8179,\n\t44116 - 44032: 0xB0C2,\n\t44117 - 44032: 0x817A,\n\t44118 - 44032: 0x8181,\n\t44119 - 44032: 0x8182,\n\t44120 - 44032: 0xB0C3,\n\t44121 - 44032: 0x8183,\n\t44122 - 44032: 0x8184,\n\t44123 - 44032: 0x8185,\n\t44124 - 44032: 0xB0C4,\n\t44125 - 44032: 0x8186,\n\t44126 - 44032: 0x8187,\n\t44127 - 44032: 0x8188,\n\t44128 - 44032: 0x8189,\n\t44129 - 44032: 0x818A,\n\t44130 - 44032: 0x818B,\n\t44131 - 44032: 0x818C,\n\t44132 - 44032: 0x818D,\n\t44133 - 44032: 0x818E,\n\t44134 - 44032: 0x818F,\n\t44135 - 44032: 0x8190,\n\t44136 - 44032: 0x8191,\n\t44137 - 44032: 0x8192,\n\t44138 - 44032: 0x8193,\n\t44139 - 44032: 0x8194,\n\t44140 - 44032: 0x8195,\n\t44141 - 44032: 0x8196,\n\t44142 - 44032: 0x8197,\n\t44143 - 44032: 0x8198,\n\t44144 - 44032: 0xB0C5,\n\t44145 - 44032: 0xB0C6,\n\t44146 - 44032: 0x8199,\n\t44147 - 44032: 0x819A,\n\t44148 - 44032: 0xB0C7,\n\t44149 - 44032: 0x819B,\n\t44150 - 44032: 0x819C,\n\t44151 - 44032: 0xB0C8,\n\t44152 - 44032: 0xB0C9,\n\t44153 - 44032: 0x819D,\n\t44154 - 44032: 0xB0CA,\n\t44155 - 44032: 0x819E,\n\t44156 - 44032: 0x819F,\n\t44157 - 44032: 0x81A0,\n\t44158 - 44032: 0x81A1,\n\t44159 - 44032: 0x81A2,\n\t44160 - 44032: 0xB0CB,\n\t44161 - 44032: 0xB0CC,\n\t44162 - 44032: 0x81A3,\n\t44163 - 44032: 0xB0CD,\n\t44164 - 44032: 0xB0CE,\n\t44165 - 44032: 0xB0CF,\n\t44166 - 44032: 0xB0D0,\n\t44167 - 44032: 0x81A4,\n\t44168 - 44032: 0x81A5,\n\t44169 - 44032: 0xB0D1,\n\t44170 - 44032: 0xB0D2,\n\t44171 - 44032: 0xB0D3,\n\t44172 - 44032: 0xB0D4,\n\t44173 - 44032: 0x81A6,\n\t44174 - 44032: 0x81A7,\n\t44175 - 44032: 0x81A8,\n\t44176 - 44032: 0xB0D5,\n\t44177 - 44032: 0x81A9,\n\t44178 - 44032: 0x81AA,\n\t44179 - 44032: 0x81AB,\n\t44180 - 44032: 0xB0D6,\n\t44181 - 44032: 0x81AC,\n\t44182 - 44032: 0x81AD,\n\t44183 - 44032: 0x81AE,\n\t44184 - 44032: 0x81AF,\n\t44185 - 44032: 0x81B0,\n\t44186 - 44032: 0x81B1,\n\t44187 - 44032: 0x81B2,\n\t44188 - 44032: 0xB0D7,\n\t44189 - 44032: 0xB0D8,\n\t44190 - 44032: 0x81B3,\n\t44191 - 44032: 0xB0D9,\n\t44192 - 44032: 0xB0DA,\n\t44193 - 44032: 0xB0DB,\n\t44194 - 44032: 0x81B4,\n\t44195 - 44032: 0x81B5,\n\t44196 - 44032: 0x81B6,\n\t44197 - 44032: 0x81B7,\n\t44198 - 44032: 0x81B8,\n\t44199 - 44032: 0x81B9,\n\t44200 - 44032: 0xB0DC,\n\t44201 - 44032: 0xB0DD,\n\t44202 - 44032: 0xB0DE,\n\t44203 - 44032: 0x81BA,\n\t44204 - 44032: 0xB0DF,\n\t44205 - 44032: 0x81BB,\n\t44206 - 44032: 0x81BC,\n\t44207 - 44032: 0xB0E0,\n\t44208 - 44032: 0xB0E1,\n\t44209 - 44032: 0x81BD,\n\t44210 - 44032: 0x81BE,\n\t44211 - 44032: 0x81BF,\n\t44212 - 44032: 0x81C0,\n\t44213 - 44032: 0x81C1,\n\t44214 - 44032: 0x81C2,\n\t44215 - 44032: 0x81C3,\n\t44216 - 44032: 0xB0E2,\n\t44217 - 44032: 0xB0E3,\n\t44218 - 44032: 0x81C4,\n\t44219 - 44032: 0xB0E4,\n\t44220 - 44032: 0xB0E5,\n\t44221 - 44032: 0xB0E6,\n\t44222 - 44032: 0x81C5,\n\t44223 - 44032: 0x81C6,\n\t44224 - 44032: 0x81C7,\n\t44225 - 44032: 0xB0E7,\n\t44226 - 44032: 0x81C8,\n\t44227 - 44032: 0x81C9,\n\t44228 - 44032: 0xB0E8,\n\t44229 - 44032: 0x81CA,\n\t44230 - 44032: 0x81CB,\n\t44231 - 44032: 0x81CC,\n\t44232 - 44032: 0xB0E9,\n\t44233 - 44032: 0x81CD,\n\t44234 - 44032: 0x81CE,\n\t44235 - 44032: 0x81CF,\n\t44236 - 44032: 0xB0EA,\n\t44237 - 44032: 0x81D0,\n\t44238 - 44032: 0x81D1,\n\t44239 - 44032: 0x81D2,\n\t44240 - 44032: 0x81D3,\n\t44241 - 44032: 0x81D4,\n\t44242 - 44032: 0x81D5,\n\t44243 - 44032: 0x81D6,\n\t44244 - 44032: 0x81D7,\n\t44245 - 44032: 0xB0EB,\n\t44246 - 44032: 0x81D8,\n\t44247 - 44032: 0xB0EC,\n\t44248 - 44032: 0x81D9,\n\t44249 - 44032: 0x81DA,\n\t44250 - 44032: 0x81DB,\n\t44251 - 44032: 0x81DC,\n\t44252 - 44032: 0x81DD,\n\t44253 - 44032: 0x81DE,\n\t44254 - 44032: 0x81DF,\n\t44255 - 44032: 0x81E0,\n\t44256 - 44032: 0xB0ED,\n\t44257 - 44032: 0xB0EE,\n\t44258 - 44032: 0x81E1,\n\t44259 - 44032: 0x81E2,\n\t44260 - 44032: 0xB0EF,\n\t44261 - 44032: 0x81E3,\n\t44262 - 44032: 0x81E4,\n\t44263 - 44032: 0xB0F0,\n\t44264 - 44032: 0xB0F1,\n\t44265 - 44032: 0x81E5,\n\t44266 - 44032: 0xB0F2,\n\t44267 - 44032: 0x81E6,\n\t44268 - 44032: 0xB0F3,\n\t44269 - 44032: 0x81E7,\n\t44270 - 44032: 0x81E8,\n\t44271 - 44032: 0xB0F4,\n\t44272 - 44032: 0xB0F5,\n\t44273 - 44032: 0xB0F6,\n\t44274 - 44032: 0x81E9,\n\t44275 - 44032: 0xB0F7,\n\t44276 - 44032: 0x81EA,\n\t44277 - 44032: 0xB0F8,\n\t44278 - 44032: 0xB0F9,\n\t44279 - 44032: 0x81EB,\n\t44280 - 44032: 0x81EC,\n\t44281 - 44032: 0x81ED,\n\t44282 - 44032: 0x81EE,\n\t44283 - 44032: 0x81EF,\n\t44284 - 44032: 0xB0FA,\n\t44285 - 44032: 0xB0FB,\n\t44286 - 44032: 0x81F0,\n\t44287 - 44032: 0x81F1,\n\t44288 - 44032: 0xB0FC,\n\t44289 - 44032: 0x81F2,\n\t44290 - 44032: 0x81F3,\n\t44291 - 44032: 0x81F4,\n\t44292 - 44032: 0xB0FD,\n\t44293 - 44032: 0x81F5,\n\t44294 - 44032: 0xB0FE,\n\t44295 - 44032: 0x81F6,\n\t44296 - 44032: 0x81F7,\n\t44297 - 44032: 0x81F8,\n\t44298 - 44032: 0x81F9,\n\t44299 - 44032: 0x81FA,\n\t44300 - 44032: 0xB1A1,\n\t44301 - 44032: 0xB1A2,\n\t44302 - 44032: 0x81FB,\n\t44303 - 44032: 0xB1A3,\n\t44304 - 44032: 0x81FC,\n\t44305 - 44032: 0xB1A4,\n\t44306 - 44032: 0x81FD,\n\t44307 - 44032: 0x81FE,\n\t44308 - 44032: 0x8241,\n\t44309 - 44032: 0x8242,\n\t44310 - 44032: 0x8243,\n\t44311 - 44032: 0x8244,\n\t44312 - 44032: 0xB1A5,\n\t44313 - 44032: 0x8245,\n\t44314 - 44032: 0x8246,\n\t44315 - 44032: 0x8247,\n\t44316 - 44032: 0xB1A6,\n\t44317 - 44032: 0x8248,\n\t44318 - 44032: 0x8249,\n\t44319 - 44032: 0x824A,\n\t44320 - 44032: 0xB1A7,\n\t44321 - 44032: 0x824B,\n\t44322 - 44032: 0x824C,\n\t44323 - 44032: 0x824D,\n\t44324 - 44032: 0x824E,\n\t44325 - 44032: 0x824F,\n\t44326 - 44032: 0x8250,\n\t44327 - 44032: 0x8251,\n\t44328 - 44032: 0x8252,\n\t44329 - 44032: 0xB1A8,\n\t44330 - 44032: 0x8253,\n\t44331 - 44032: 0x8254,\n\t44332 - 44032: 0xB1A9,\n\t44333 - 44032: 0xB1AA,\n\t44334 - 44032: 0x8255,\n\t44335 - 44032: 0x8256,\n\t44336 - 44032: 0x8257,\n\t44337 - 44032: 0x8258,\n\t44338 - 44032: 0x8259,\n\t44339 - 44032: 0x825A,\n\t44340 - 44032: 0xB1AB,\n\t44341 - 44032: 0xB1AC,\n\t44342 - 44032: 0x8261,\n\t44343 - 44032: 0x8262,\n\t44344 - 44032: 0xB1AD,\n\t44345 - 44032: 0x8263,\n\t44346 - 44032: 0x8264,\n\t44347 - 44032: 0x8265,\n\t44348 - 44032: 0xB1AE,\n\t44349 - 44032: 0x8266,\n\t44350 - 44032: 0x8267,\n\t44351 - 44032: 0x8268,\n\t44352 - 44032: 0x8269,\n\t44353 - 44032: 0x826A,\n\t44354 - 44032: 0x826B,\n\t44355 - 44032: 0x826C,\n\t44356 - 44032: 0xB1AF,\n\t44357 - 44032: 0xB1B0,\n\t44358 - 44032: 0x826D,\n\t44359 - 44032: 0xB1B1,\n\t44360 - 44032: 0x826E,\n\t44361 - 44032: 0xB1B2,\n\t44362 - 44032: 0x826F,\n\t44363 - 44032: 0x8270,\n\t44364 - 44032: 0x8271,\n\t44365 - 44032: 0x8272,\n\t44366 - 44032: 0x8273,\n\t44367 - 44032: 0x8274,\n\t44368 - 44032: 0xB1B3,\n\t44369 - 44032: 0x8275,\n\t44370 - 44032: 0x8276,\n\t44371 - 44032: 0x8277,\n\t44372 - 44032: 0xB1B4,\n\t44373 - 44032: 0x8278,\n\t44374 - 44032: 0x8279,\n\t44375 - 44032: 0x827A,\n\t44376 - 44032: 0xB1B5,\n\t44377 - 44032: 0x8281,\n\t44378 - 44032: 0x8282,\n\t44379 - 44032: 0x8283,\n\t44380 - 44032: 0x8284,\n\t44381 - 44032: 0x8285,\n\t44382 - 44032: 0x8286,\n\t44383 - 44032: 0x8287,\n\t44384 - 44032: 0x8288,\n\t44385 - 44032: 0xB1B6,\n\t44386 - 44032: 0x8289,\n\t44387 - 44032: 0xB1B7,\n\t44388 - 44032: 0x828A,\n\t44389 - 44032: 0x828B,\n\t44390 - 44032: 0x828C,\n\t44391 - 44032: 0x828D,\n\t44392 - 44032: 0x828E,\n\t44393 - 44032: 0x828F,\n\t44394 - 44032: 0x8290,\n\t44395 - 44032: 0x8291,\n\t44396 - 44032: 0xB1B8,\n\t44397 - 44032: 0xB1B9,\n\t44398 - 44032: 0x8292,\n\t44399 - 44032: 0x8293,\n\t44400 - 44032: 0xB1BA,\n\t44401 - 44032: 0x8294,\n\t44402 - 44032: 0x8295,\n\t44403 - 44032: 0xB1BB,\n\t44404 - 44032: 0xB1BC,\n\t44405 - 44032: 0xB1BD,\n\t44406 - 44032: 0xB1BE,\n\t44407 - 44032: 0x8296,\n\t44408 - 44032: 0x8297,\n\t44409 - 44032: 0x8298,\n\t44410 - 44032: 0x8299,\n\t44411 - 44032: 0xB1BF,\n\t44412 - 44032: 0xB1C0,\n\t44413 - 44032: 0xB1C1,\n\t44414 - 44032: 0x829A,\n\t44415 - 44032: 0xB1C2,\n\t44416 - 44032: 0x829B,\n\t44417 - 44032: 0xB1C3,\n\t44418 - 44032: 0xB1C4,\n\t44419 - 44032: 0x829C,\n\t44420 - 44032: 0x829D,\n\t44421 - 44032: 0x829E,\n\t44422 - 44032: 0x829F,\n\t44423 - 44032: 0x82A0,\n\t44424 - 44032: 0xB1C5,\n\t44425 - 44032: 0xB1C6,\n\t44426 - 44032: 0x82A1,\n\t44427 - 44032: 0x82A2,\n\t44428 - 44032: 0xB1C7,\n\t44429 - 44032: 0x82A3,\n\t44430 - 44032: 0x82A4,\n\t44431 - 44032: 0x82A5,\n\t44432 - 44032: 0xB1C8,\n\t44433 - 44032: 0x82A6,\n\t44434 - 44032: 0x82A7,\n\t44435 - 44032: 0x82A8,\n\t44436 - 44032: 0x82A9,\n\t44437 - 44032: 0x82AA,\n\t44438 - 44032: 0x82AB,\n\t44439 - 44032: 0x82AC,\n\t44440 - 44032: 0x82AD,\n\t44441 - 44032: 0x82AE,\n\t44442 - 44032: 0x82AF,\n\t44443 - 44032: 0x82B0,\n\t44444 - 44032: 0xB1C9,\n\t44445 - 44032: 0xB1CA,\n\t44446 - 44032: 0x82B1,\n\t44447 - 44032: 0x82B2,\n\t44448 - 44032: 0x82B3,\n\t44449 - 44032: 0x82B4,\n\t44450 - 44032: 0x82B5,\n\t44451 - 44032: 0x82B6,\n\t44452 - 44032: 0xB1CB,\n\t44453 - 44032: 0x82B7,\n\t44454 - 44032: 0x82B8,\n\t44455 - 44032: 0x82B9,\n\t44456 - 44032: 0x82BA,\n\t44457 - 44032: 0x82BB,\n\t44458 - 44032: 0x82BC,\n\t44459 - 44032: 0x82BD,\n\t44460 - 44032: 0x82BE,\n\t44461 - 44032: 0x82BF,\n\t44462 - 44032: 0x82C0,\n\t44463 - 44032: 0x82C1,\n\t44464 - 44032: 0x82C2,\n\t44465 - 44032: 0x82C3,\n\t44466 - 44032: 0x82C4,\n\t44467 - 44032: 0x82C5,\n\t44468 - 44032: 0x82C6,\n\t44469 - 44032: 0x82C7,\n\t44470 - 44032: 0x82C8,\n\t44471 - 44032: 0xB1CC,\n\t44472 - 44032: 0x82C9,\n\t44473 - 44032: 0x82CA,\n\t44474 - 44032: 0x82CB,\n\t44475 - 44032: 0x82CC,\n\t44476 - 44032: 0x82CD,\n\t44477 - 44032: 0x82CE,\n\t44478 - 44032: 0x82CF,\n\t44479 - 44032: 0x82D0,\n\t44480 - 44032: 0xB1CD,\n\t44481 - 44032: 0xB1CE,\n\t44482 - 44032: 0x82D1,\n\t44483 - 44032: 0x82D2,\n\t44484 - 44032: 0xB1CF,\n\t44485 - 44032: 0x82D3,\n\t44486 - 44032: 0x82D4,\n\t44487 - 44032: 0x82D5,\n\t44488 - 44032: 0xB1D0,\n\t44489 - 44032: 0x82D6,\n\t44490 - 44032: 0x82D7,\n\t44491 - 44032: 0x82D8,\n\t44492 - 44032: 0x82D9,\n\t44493 - 44032: 0x82DA,\n\t44494 - 44032: 0x82DB,\n\t44495 - 44032: 0x82DC,\n\t44496 - 44032: 0xB1D1,\n\t44497 - 44032: 0xB1D2,\n\t44498 - 44032: 0x82DD,\n\t44499 - 44032: 0xB1D3,\n\t44500 - 44032: 0x82DE,\n\t44501 - 44032: 0x82DF,\n\t44502 - 44032: 0x82E0,\n\t44503 - 44032: 0x82E1,\n\t44504 - 44032: 0x82E2,\n\t44505 - 44032: 0x82E3,\n\t44506 - 44032: 0x82E4,\n\t44507 - 44032: 0x82E5,\n\t44508 - 44032: 0xB1D4,\n\t44509 - 44032: 0x82E6,\n\t44510 - 44032: 0x82E7,\n\t44511 - 44032: 0x82E8,\n\t44512 - 44032: 0xB1D5,\n\t44513 - 44032: 0x82E9,\n\t44514 - 44032: 0x82EA,\n\t44515 - 44032: 0x82EB,\n\t44516 - 44032: 0xB1D6,\n\t44517 - 44032: 0x82EC,\n\t44518 - 44032: 0x82ED,\n\t44519 - 44032: 0x82EE,\n\t44520 - 44032: 0x82EF,\n\t44521 - 44032: 0x82F0,\n\t44522 - 44032: 0x82F1,\n\t44523 - 44032: 0x82F2,\n\t44524 - 44032: 0x82F3,\n\t44525 - 44032: 0x82F4,\n\t44526 - 44032: 0x82F5,\n\t44527 - 44032: 0x82F6,\n\t44528 - 44032: 0x82F7,\n\t44529 - 44032: 0x82F8,\n\t44530 - 44032: 0x82F9,\n\t44531 - 44032: 0x82FA,\n\t44532 - 44032: 0x82FB,\n\t44533 - 44032: 0x82FC,\n\t44534 - 44032: 0x82FD,\n\t44535 - 44032: 0x82FE,\n\t44536 - 44032: 0xB1D7,\n\t44537 - 44032: 0xB1D8,\n\t44538 - 44032: 0x8341,\n\t44539 - 44032: 0x8342,\n\t44540 - 44032: 0xB1D9,\n\t44541 - 44032: 0x8343,\n\t44542 - 44032: 0x8344,\n\t44543 - 44032: 0xB1DA,\n\t44544 - 44032: 0xB1DB,\n\t44545 - 44032: 0xB1DC,\n\t44546 - 44032: 0x8345,\n\t44547 - 44032: 0x8346,\n\t44548 - 44032: 0x8347,\n\t44549 - 44032: 0x8348,\n\t44550 - 44032: 0x8349,\n\t44551 - 44032: 0x834A,\n\t44552 - 44032: 0xB1DD,\n\t44553 - 44032: 0xB1DE,\n\t44554 - 44032: 0x834B,\n\t44555 - 44032: 0xB1DF,\n\t44556 - 44032: 0x834C,\n\t44557 - 44032: 0xB1E0,\n\t44558 - 44032: 0x834D,\n\t44559 - 44032: 0x834E,\n\t44560 - 44032: 0x834F,\n\t44561 - 44032: 0x8350,\n\t44562 - 44032: 0x8351,\n\t44563 - 44032: 0x8352,\n\t44564 - 44032: 0xB1E1,\n\t44565 - 44032: 0x8353,\n\t44566 - 44032: 0x8354,\n\t44567 - 44032: 0x8355,\n\t44568 - 44032: 0x8356,\n\t44569 - 44032: 0x8357,\n\t44570 - 44032: 0x8358,\n\t44571 - 44032: 0x8359,\n\t44572 - 44032: 0x835A,\n\t44573 - 44032: 0x8361,\n\t44574 - 44032: 0x8362,\n\t44575 - 44032: 0x8363,\n\t44576 - 44032: 0x8364,\n\t44577 - 44032: 0x8365,\n\t44578 - 44032: 0x8366,\n\t44579 - 44032: 0x8367,\n\t44580 - 44032: 0x8368,\n\t44581 - 44032: 0x8369,\n\t44582 - 44032: 0x836A,\n\t44583 - 44032: 0x836B,\n\t44584 - 44032: 0x836C,\n\t44585 - 44032: 0x836D,\n\t44586 - 44032: 0x836E,\n\t44587 - 44032: 0x836F,\n\t44588 - 44032: 0x8370,\n\t44589 - 44032: 0x8371,\n\t44590 - 44032: 0x8372,\n\t44591 - 44032: 0x8373,\n\t44592 - 44032: 0xB1E2,\n\t44593 - 44032: 0xB1E3,\n\t44594 - 44032: 0x8374,\n\t44595 - 44032: 0x8375,\n\t44596 - 44032: 0xB1E4,\n\t44597 - 44032: 0x8376,\n\t44598 - 44032: 0x8377,\n\t44599 - 44032: 0xB1E5,\n\t44600 - 44032: 0xB1E6,\n\t44601 - 44032: 0x8378,\n\t44602 - 44032: 0xB1E7,\n\t44603 - 44032: 0x8379,\n\t44604 - 44032: 0x837A,\n\t44605 - 44032: 0x8381,\n\t44606 - 44032: 0x8382,\n\t44607 - 44032: 0x8383,\n\t44608 - 44032: 0xB1E8,\n\t44609 - 44032: 0xB1E9,\n\t44610 - 44032: 0x8384,\n\t44611 - 44032: 0xB1EA,\n\t44612 - 44032: 0x8385,\n\t44613 - 44032: 0xB1EB,\n\t44614 - 44032: 0xB1EC,\n\t44615 - 44032: 0x8386,\n\t44616 - 44032: 0x8387,\n\t44617 - 44032: 0x8388,\n\t44618 - 44032: 0xB1ED,\n\t44619 - 44032: 0x8389,\n\t44620 - 44032: 0xB1EE,\n\t44621 - 44032: 0xB1EF,\n\t44622 - 44032: 0xB1F0,\n\t44623 - 44032: 0x838A,\n\t44624 - 44032: 0xB1F1,\n\t44625 - 44032: 0x838B,\n\t44626 - 44032: 0x838C,\n\t44627 - 44032: 0x838D,\n\t44628 - 44032: 0xB1F2,\n\t44629 - 44032: 0x838E,\n\t44630 - 44032: 0xB1F3,\n\t44631 - 44032: 0x838F,\n\t44632 - 44032: 0x8390,\n\t44633 - 44032: 0x8391,\n\t44634 - 44032: 0x8392,\n\t44635 - 44032: 0x8393,\n\t44636 - 44032: 0xB1F4,\n\t44637 - 44032: 0xB1F5,\n\t44638 - 44032: 0x8394,\n\t44639 - 44032: 0xB1F6,\n\t44640 - 44032: 0xB1F7,\n\t44641 - 44032: 0xB1F8,\n\t44642 - 44032: 0x8395,\n\t44643 - 44032: 0x8396,\n\t44644 - 44032: 0x8397,\n\t44645 - 44032: 0xB1F9,\n\t44646 - 44032: 0x8398,\n\t44647 - 44032: 0x8399,\n\t44648 - 44032: 0xB1FA,\n\t44649 - 44032: 0xB1FB,\n\t44650 - 44032: 0x839A,\n\t44651 - 44032: 0x839B,\n\t44652 - 44032: 0xB1FC,\n\t44653 - 44032: 0x839C,\n\t44654 - 44032: 0x839D,\n\t44655 - 44032: 0x839E,\n\t44656 - 44032: 0xB1FD,\n\t44657 - 44032: 0x839F,\n\t44658 - 44032: 0x83A0,\n\t44659 - 44032: 0x83A1,\n\t44660 - 44032: 0x83A2,\n\t44661 - 44032: 0x83A3,\n\t44662 - 44032: 0x83A4,\n\t44663 - 44032: 0x83A5,\n\t44664 - 44032: 0xB1FE,\n\t44665 - 44032: 0xB2A1,\n\t44666 - 44032: 0x83A6,\n\t44667 - 44032: 0xB2A2,\n\t44668 - 44032: 0xB2A3,\n\t44669 - 44032: 0xB2A4,\n\t44670 - 44032: 0x83A7,\n\t44671 - 44032: 0x83A8,\n\t44672 - 44032: 0x83A9,\n\t44673 - 44032: 0x83AA,\n\t44674 - 44032: 0x83AB,\n\t44675 - 44032: 0x83AC,\n\t44676 - 44032: 0xB2A5,\n\t44677 - 44032: 0xB2A6,\n\t44678 - 44032: 0x83AD,\n\t44679 - 44032: 0x83AE,\n\t44680 - 44032: 0x83AF,\n\t44681 - 44032: 0x83B0,\n\t44682 - 44032: 0x83B1,\n\t44683 - 44032: 0x83B2,\n\t44684 - 44032: 0xB2A7,\n\t44685 - 44032: 0x83B3,\n\t44686 - 44032: 0x83B4,\n\t44687 - 44032: 0x83B5,\n\t44688 - 44032: 0x83B6,\n\t44689 - 44032: 0x83B7,\n\t44690 - 44032: 0x83B8,\n\t44691 - 44032: 0x83B9,\n\t44692 - 44032: 0x83BA,\n\t44693 - 44032: 0x83BB,\n\t44694 - 44032: 0x83BC,\n\t44695 - 44032: 0x83BD,\n\t44696 - 44032: 0x83BE,\n\t44697 - 44032: 0x83BF,\n\t44698 - 44032: 0x83C0,\n\t44699 - 44032: 0x83C1,\n\t44700 - 44032: 0x83C2,\n\t44701 - 44032: 0x83C3,\n\t44702 - 44032: 0x83C4,\n\t44703 - 44032: 0x83C5,\n\t44704 - 44032: 0x83C6,\n\t44705 - 44032: 0x83C7,\n\t44706 - 44032: 0x83C8,\n\t44707 - 44032: 0x83C9,\n\t44708 - 44032: 0x83CA,\n\t44709 - 44032: 0x83CB,\n\t44710 - 44032: 0x83CC,\n\t44711 - 44032: 0x83CD,\n\t44712 - 44032: 0x83CE,\n\t44713 - 44032: 0x83CF,\n\t44714 - 44032: 0x83D0,\n\t44715 - 44032: 0x83D1,\n\t44716 - 44032: 0x83D2,\n\t44717 - 44032: 0x83D3,\n\t44718 - 44032: 0x83D4,\n\t44719 - 44032: 0x83D5,\n\t44720 - 44032: 0x83D6,\n\t44721 - 44032: 0x83D7,\n\t44722 - 44032: 0x83D8,\n\t44723 - 44032: 0x83D9,\n\t44724 - 44032: 0x83DA,\n\t44725 - 44032: 0x83DB,\n\t44726 - 44032: 0x83DC,\n\t44727 - 44032: 0x83DD,\n\t44728 - 44032: 0x83DE,\n\t44729 - 44032: 0x83DF,\n\t44730 - 44032: 0x83E0,\n\t44731 - 44032: 0x83E1,\n\t44732 - 44032: 0xB2A8,\n\t44733 - 44032: 0xB2A9,\n\t44734 - 44032: 0xB2AA,\n\t44735 - 44032: 0x83E2,\n\t44736 - 44032: 0xB2AB,\n\t44737 - 44032: 0x83E3,\n\t44738 - 44032: 0x83E4,\n\t44739 - 44032: 0x83E5,\n\t44740 - 44032: 0xB2AC,\n\t44741 - 44032: 0x83E6,\n\t44742 - 44032: 0x83E7,\n\t44743 - 44032: 0x83E8,\n\t44744 - 44032: 0x83E9,\n\t44745 - 44032: 0x83EA,\n\t44746 - 44032: 0x83EB,\n\t44747 - 44032: 0x83EC,\n\t44748 - 44032: 0xB2AD,\n\t44749 - 44032: 0xB2AE,\n\t44750 - 44032: 0x83ED,\n\t44751 - 44032: 0xB2AF,\n\t44752 - 44032: 0xB2B0,\n\t44753 - 44032: 0xB2B1,\n\t44754 - 44032: 0x83EE,\n\t44755 - 44032: 0x83EF,\n\t44756 - 44032: 0x83F0,\n\t44757 - 44032: 0x83F1,\n\t44758 - 44032: 0x83F2,\n\t44759 - 44032: 0x83F3,\n\t44760 - 44032: 0xB2B2,\n\t44761 - 44032: 0xB2B3,\n\t44762 - 44032: 0x83F4,\n\t44763 - 44032: 0x83F5,\n\t44764 - 44032: 0xB2B4,\n\t44765 - 44032: 0x83F6,\n\t44766 - 44032: 0x83F7,\n\t44767 - 44032: 0x83F8,\n\t44768 - 44032: 0x83F9,\n\t44769 - 44032: 0x83FA,\n\t44770 - 44032: 0x83FB,\n\t44771 - 44032: 0x83FC,\n\t44772 - 44032: 0x83FD,\n\t44773 - 44032: 0x83FE,\n\t44774 - 44032: 0x8441,\n\t44775 - 44032: 0x8442,\n\t44776 - 44032: 0xB2B5,\n\t44777 - 44032: 0x8443,\n\t44778 - 44032: 0x8444,\n\t44779 - 44032: 0xB2B6,\n\t44780 - 44032: 0x8445,\n\t44781 - 44032: 0xB2B7,\n\t44782 - 44032: 0x8446,\n\t44783 - 44032: 0x8447,\n\t44784 - 44032: 0x8448,\n\t44785 - 44032: 0x8449,\n\t44786 - 44032: 0x844A,\n\t44787 - 44032: 0x844B,\n\t44788 - 44032: 0xB2B8,\n\t44789 - 44032: 0x844C,\n\t44790 - 44032: 0x844D,\n\t44791 - 44032: 0x844E,\n\t44792 - 44032: 0xB2B9,\n\t44793 - 44032: 0x844F,\n\t44794 - 44032: 0x8450,\n\t44795 - 44032: 0x8451,\n\t44796 - 44032: 0xB2BA,\n\t44797 - 44032: 0x8452,\n\t44798 - 44032: 0x8453,\n\t44799 - 44032: 0x8454,\n\t44800 - 44032: 0x8455,\n\t44801 - 44032: 0x8456,\n\t44802 - 44032: 0x8457,\n\t44803 - 44032: 0x8458,\n\t44804 - 44032: 0x8459,\n\t44805 - 44032: 0x845A,\n\t44806 - 44032: 0x8461,\n\t44807 - 44032: 0xB2BB,\n\t44808 - 44032: 0xB2BC,\n\t44809 - 44032: 0x8462,\n\t44810 - 44032: 0x8463,\n\t44811 - 44032: 0x8464,\n\t44812 - 44032: 0x8465,\n\t44813 - 44032: 0xB2BD,\n\t44814 - 44032: 0x8466,\n\t44815 - 44032: 0x8467,\n\t44816 - 44032: 0xB2BE,\n\t44817 - 44032: 0x8468,\n\t44818 - 44032: 0x8469,\n\t44819 - 44032: 0x846A,\n\t44820 - 44032: 0x846B,\n\t44821 - 44032: 0x846C,\n\t44822 - 44032: 0x846D,\n\t44823 - 44032: 0x846E,\n\t44824 - 44032: 0x846F,\n\t44825 - 44032: 0x8470,\n\t44826 - 44032: 0x8471,\n\t44827 - 44032: 0x8472,\n\t44828 - 44032: 0x8473,\n\t44829 - 44032: 0x8474,\n\t44830 - 44032: 0x8475,\n\t44831 - 44032: 0x8476,\n\t44832 - 44032: 0x8477,\n\t44833 - 44032: 0x8478,\n\t44834 - 44032: 0x8479,\n\t44835 - 44032: 0x847A,\n\t44836 - 44032: 0x8481,\n\t44837 - 44032: 0x8482,\n\t44838 - 44032: 0x8483,\n\t44839 - 44032: 0x8484,\n\t44840 - 44032: 0x8485,\n\t44841 - 44032: 0x8486,\n\t44842 - 44032: 0x8487,\n\t44843 - 44032: 0x8488,\n\t44844 - 44032: 0xB2BF,\n\t44845 - 44032: 0xB2C0,\n\t44846 - 44032: 0x8489,\n\t44847 - 44032: 0x848A,\n\t44848 - 44032: 0xB2C1,\n\t44849 - 44032: 0x848B,\n\t44850 - 44032: 0xB2C2,\n\t44851 - 44032: 0x848C,\n\t44852 - 44032: 0xB2C3,\n\t44853 - 44032: 0x848D,\n\t44854 - 44032: 0x848E,\n\t44855 - 44032: 0x848F,\n\t44856 - 44032: 0x8490,\n\t44857 - 44032: 0x8491,\n\t44858 - 44032: 0x8492,\n\t44859 - 44032: 0x8493,\n\t44860 - 44032: 0xB2C4,\n\t44861 - 44032: 0xB2C5,\n\t44862 - 44032: 0x8494,\n\t44863 - 44032: 0xB2C6,\n\t44864 - 44032: 0x8495,\n\t44865 - 44032: 0xB2C7,\n\t44866 - 44032: 0xB2C8,\n\t44867 - 44032: 0xB2C9,\n\t44868 - 44032: 0x8496,\n\t44869 - 44032: 0x8497,\n\t44870 - 44032: 0x8498,\n\t44871 - 44032: 0x8499,\n\t44872 - 44032: 0xB2CA,\n\t44873 - 44032: 0xB2CB,\n\t44874 - 44032: 0x849A,\n\t44875 - 44032: 0x849B,\n\t44876 - 44032: 0x849C,\n\t44877 - 44032: 0x849D,\n\t44878 - 44032: 0x849E,\n\t44879 - 44032: 0x849F,\n\t44880 - 44032: 0xB2CC,\n\t44881 - 44032: 0x84A0,\n\t44882 - 44032: 0x84A1,\n\t44883 - 44032: 0x84A2,\n\t44884 - 44032: 0x84A3,\n\t44885 - 44032: 0x84A4,\n\t44886 - 44032: 0x84A5,\n\t44887 - 44032: 0x84A6,\n\t44888 - 44032: 0x84A7,\n\t44889 - 44032: 0x84A8,\n\t44890 - 44032: 0x84A9,\n\t44891 - 44032: 0x84AA,\n\t44892 - 44032: 0xB2CD,\n\t44893 - 44032: 0xB2CE,\n\t44894 - 44032: 0x84AB,\n\t44895 - 44032: 0x84AC,\n\t44896 - 44032: 0x84AD,\n\t44897 - 44032: 0x84AE,\n\t44898 - 44032: 0x84AF,\n\t44899 - 44032: 0x84B0,\n\t44900 - 44032: 0xB2CF,\n\t44901 - 44032: 0xB2D0,\n\t44902 - 44032: 0x84B1,\n\t44903 - 44032: 0x84B2,\n\t44904 - 44032: 0x84B3,\n\t44905 - 44032: 0x84B4,\n\t44906 - 44032: 0x84B5,\n\t44907 - 44032: 0x84B6,\n\t44908 - 44032: 0x84B7,\n\t44909 - 44032: 0x84B8,\n\t44910 - 44032: 0x84B9,\n\t44911 - 44032: 0x84BA,\n\t44912 - 44032: 0x84BB,\n\t44913 - 44032: 0x84BC,\n\t44914 - 44032: 0x84BD,\n\t44915 - 44032: 0x84BE,\n\t44916 - 44032: 0x84BF,\n\t44917 - 44032: 0x84C0,\n\t44918 - 44032: 0x84C1,\n\t44919 - 44032: 0x84C2,\n\t44920 - 44032: 0x84C3,\n\t44921 - 44032: 0xB2D1,\n\t44922 - 44032: 0x84C4,\n\t44923 - 44032: 0x84C5,\n\t44924 - 44032: 0x84C6,\n\t44925 - 44032: 0x84C7,\n\t44926 - 44032: 0x84C8,\n\t44927 - 44032: 0x84C9,\n\t44928 - 44032: 0xB2D2,\n\t44929 - 44032: 0x84CA,\n\t44930 - 44032: 0x84CB,\n\t44931 - 44032: 0x84CC,\n\t44932 - 44032: 0xB2D3,\n\t44933 - 44032: 0x84CD,\n\t44934 - 44032: 0x84CE,\n\t44935 - 44032: 0x84CF,\n\t44936 - 44032: 0xB2D4,\n\t44937 - 44032: 0x84D0,\n\t44938 - 44032: 0x84D1,\n\t44939 - 44032: 0x84D2,\n\t44940 - 44032: 0x84D3,\n\t44941 - 44032: 0x84D4,\n\t44942 - 44032: 0x84D5,\n\t44943 - 44032: 0x84D6,\n\t44944 - 44032: 0xB2D5,\n\t44945 - 44032: 0xB2D6,\n\t44946 - 44032: 0x84D7,\n\t44947 - 44032: 0x84D8,\n\t44948 - 44032: 0x84D9,\n\t44949 - 44032: 0xB2D7,\n\t44950 - 44032: 0x84DA,\n\t44951 - 44032: 0x84DB,\n\t44952 - 44032: 0x84DC,\n\t44953 - 44032: 0x84DD,\n\t44954 - 44032: 0x84DE,\n\t44955 - 44032: 0x84DF,\n\t44956 - 44032: 0xB2D8,\n\t44957 - 44032: 0x84E0,\n\t44958 - 44032: 0x84E1,\n\t44959 - 44032: 0x84E2,\n\t44960 - 44032: 0x84E3,\n\t44961 - 44032: 0x84E4,\n\t44962 - 44032: 0x84E5,\n\t44963 - 44032: 0x84E6,\n\t44964 - 44032: 0x84E7,\n\t44965 - 44032: 0x84E8,\n\t44966 - 44032: 0x84E9,\n\t44967 - 44032: 0x84EA,\n\t44968 - 44032: 0x84EB,\n\t44969 - 44032: 0x84EC,\n\t44970 - 44032: 0x84ED,\n\t44971 - 44032: 0x84EE,\n\t44972 - 44032: 0x84EF,\n\t44973 - 44032: 0x84F0,\n\t44974 - 44032: 0x84F1,\n\t44975 - 44032: 0x84F2,\n\t44976 - 44032: 0x84F3,\n\t44977 - 44032: 0x84F4,\n\t44978 - 44032: 0x84F5,\n\t44979 - 44032: 0x84F6,\n\t44980 - 44032: 0x84F7,\n\t44981 - 44032: 0x84F8,\n\t44982 - 44032: 0x84F9,\n\t44983 - 44032: 0x84FA,\n\t44984 - 44032: 0xB2D9,\n\t44985 - 44032: 0xB2DA,\n\t44986 - 44032: 0x84FB,\n\t44987 - 44032: 0x84FC,\n\t44988 - 44032: 0xB2DB,\n\t44989 - 44032: 0x84FD,\n\t44990 - 44032: 0x84FE,\n\t44991 - 44032: 0x8541,\n\t44992 - 44032: 0xB2DC,\n\t44993 - 44032: 0x8542,\n\t44994 - 44032: 0x8543,\n\t44995 - 44032: 0x8544,\n\t44996 - 44032: 0x8545,\n\t44997 - 44032: 0x8546,\n\t44998 - 44032: 0x8547,\n\t44999 - 44032: 0xB2DD,\n\t45000 - 44032: 0xB2DE,\n\t45001 - 44032: 0xB2DF,\n\t45002 - 44032: 0x8548,\n\t45003 - 44032: 0xB2E0,\n\t45004 - 44032: 0x8549,\n\t45005 - 44032: 0xB2E1,\n\t45006 - 44032: 0xB2E2,\n\t45007 - 44032: 0x854A,\n\t45008 - 44032: 0x854B,\n\t45009 - 44032: 0x854C,\n\t45010 - 44032: 0x854D,\n\t45011 - 44032: 0x854E,\n\t45012 - 44032: 0xB2E3,\n\t45013 - 44032: 0x854F,\n\t45014 - 44032: 0x8550,\n\t45015 - 44032: 0x8551,\n\t45016 - 44032: 0x8552,\n\t45017 - 44032: 0x8553,\n\t45018 - 44032: 0x8554,\n\t45019 - 44032: 0x8555,\n\t45020 - 44032: 0xB2E4,\n\t45021 - 44032: 0x8556,\n\t45022 - 44032: 0x8557,\n\t45023 - 44032: 0x8558,\n\t45024 - 44032: 0x8559,\n\t45025 - 44032: 0x855A,\n\t45026 - 44032: 0x8561,\n\t45027 - 44032: 0x8562,\n\t45028 - 44032: 0x8563,\n\t45029 - 44032: 0x8564,\n\t45030 - 44032: 0x8565,\n\t45031 - 44032: 0x8566,\n\t45032 - 44032: 0xB2E5,\n\t45033 - 44032: 0xB2E6,\n\t45034 - 44032: 0x8567,\n\t45035 - 44032: 0x8568,\n\t45036 - 44032: 0x8569,\n\t45037 - 44032: 0x856A,\n\t45038 - 44032: 0x856B,\n\t45039 - 44032: 0x856C,\n\t45040 - 44032: 0xB2E7,\n\t45041 - 44032: 0xB2E8,\n\t45042 - 44032: 0x856D,\n\t45043 - 44032: 0x856E,\n\t45044 - 44032: 0xB2E9,\n\t45045 - 44032: 0x856F,\n\t45046 - 44032: 0x8570,\n\t45047 - 44032: 0x8571,\n\t45048 - 44032: 0xB2EA,\n\t45049 - 44032: 0x8572,\n\t45050 - 44032: 0x8573,\n\t45051 - 44032: 0x8574,\n\t45052 - 44032: 0x8575,\n\t45053 - 44032: 0x8576,\n\t45054 - 44032: 0x8577,\n\t45055 - 44032: 0x8578,\n\t45056 - 44032: 0xB2EB,\n\t45057 - 44032: 0xB2EC,\n\t45058 - 44032: 0x8579,\n\t45059 - 44032: 0x857A,\n\t45060 - 44032: 0xB2ED,\n\t45061 - 44032: 0x8581,\n\t45062 - 44032: 0x8582,\n\t45063 - 44032: 0x8583,\n\t45064 - 44032: 0x8584,\n\t45065 - 44032: 0x8585,\n\t45066 - 44032: 0x8586,\n\t45067 - 44032: 0x8587,\n\t45068 - 44032: 0xB2EE,\n\t45069 - 44032: 0x8588,\n\t45070 - 44032: 0x8589,\n\t45071 - 44032: 0x858A,\n\t45072 - 44032: 0xB2EF,\n\t45073 - 44032: 0x858B,\n\t45074 - 44032: 0x858C,\n\t45075 - 44032: 0x858D,\n\t45076 - 44032: 0xB2F0,\n\t45077 - 44032: 0x858E,\n\t45078 - 44032: 0x858F,\n\t45079 - 44032: 0x8590,\n\t45080 - 44032: 0x8591,\n\t45081 - 44032: 0x8592,\n\t45082 - 44032: 0x8593,\n\t45083 - 44032: 0x8594,\n\t45084 - 44032: 0xB2F1,\n\t45085 - 44032: 0xB2F2,\n\t45086 - 44032: 0x8595,\n\t45087 - 44032: 0x8596,\n\t45088 - 44032: 0x8597,\n\t45089 - 44032: 0x8598,\n\t45090 - 44032: 0x8599,\n\t45091 - 44032: 0x859A,\n\t45092 - 44032: 0x859B,\n\t45093 - 44032: 0x859C,\n\t45094 - 44032: 0x859D,\n\t45095 - 44032: 0x859E,\n\t45096 - 44032: 0xB2F3,\n\t45097 - 44032: 0x859F,\n\t45098 - 44032: 0x85A0,\n\t45099 - 44032: 0x85A1,\n\t45100 - 44032: 0x85A2,\n\t45101 - 44032: 0x85A3,\n\t45102 - 44032: 0x85A4,\n\t45103 - 44032: 0x85A5,\n\t45104 - 44032: 0x85A6,\n\t45105 - 44032: 0x85A7,\n\t45106 - 44032: 0x85A8,\n\t45107 - 44032: 0x85A9,\n\t45108 - 44032: 0x85AA,\n\t45109 - 44032: 0x85AB,\n\t45110 - 44032: 0x85AC,\n\t45111 - 44032: 0x85AD,\n\t45112 - 44032: 0x85AE,\n\t45113 - 44032: 0x85AF,\n\t45114 - 44032: 0x85B0,\n\t45115 - 44032: 0x85B1,\n\t45116 - 44032: 0x85B2,\n\t45117 - 44032: 0x85B3,\n\t45118 - 44032: 0x85B4,\n\t45119 - 44032: 0x85B5,\n\t45120 - 44032: 0x85B6,\n\t45121 - 44032: 0x85B7,\n\t45122 - 44032: 0x85B8,\n\t45123 - 44032: 0x85B9,\n\t45124 - 44032: 0xB2F4,\n\t45125 - 44032: 0xB2F5,\n\t45126 - 44032: 0x85BA,\n\t45127 - 44032: 0x85BB,\n\t45128 - 44032: 0xB2F6,\n\t45129 - 44032: 0x85BC,\n\t45130 - 44032: 0xB2F7,\n\t45131 - 44032: 0x85BD,\n\t45132 - 44032: 0xB2F8,\n\t45133 - 44032: 0x85BE,\n\t45134 - 44032: 0xB2F9,\n\t45135 - 44032: 0x85BF,\n\t45136 - 44032: 0x85C0,\n\t45137 - 44032: 0x85C1,\n\t45138 - 44032: 0x85C2,\n\t45139 - 44032: 0xB2FA,\n\t45140 - 44032: 0xB2FB,\n\t45141 - 44032: 0xB2FC,\n\t45142 - 44032: 0x85C3,\n\t45143 - 44032: 0xB2FD,\n\t45144 - 44032: 0x85C4,\n\t45145 - 44032: 0xB2FE,\n\t45146 - 44032: 0x85C5,\n\t45147 - 44032: 0x85C6,\n\t45148 - 44032: 0x85C7,\n\t45149 - 44032: 0xB3A1,\n\t45150 - 44032: 0x85C8,\n\t45151 - 44032: 0x85C9,\n\t45152 - 44032: 0x85CA,\n\t45153 - 44032: 0x85CB,\n\t45154 - 44032: 0x85CC,\n\t45155 - 44032: 0x85CD,\n\t45156 - 44032: 0x85CE,\n\t45157 - 44032: 0x85CF,\n\t45158 - 44032: 0x85D0,\n\t45159 - 44032: 0x85D1,\n\t45160 - 44032: 0x85D2,\n\t45161 - 44032: 0x85D3,\n\t45162 - 44032: 0x85D4,\n\t45163 - 44032: 0x85D5,\n\t45164 - 44032: 0x85D6,\n\t45165 - 44032: 0x85D7,\n\t45166 - 44032: 0x85D8,\n\t45167 - 44032: 0x85D9,\n\t45168 - 44032: 0x85DA,\n\t45169 - 44032: 0x85DB,\n\t45170 - 44032: 0x85DC,\n\t45171 - 44032: 0x85DD,\n\t45172 - 44032: 0x85DE,\n\t45173 - 44032: 0x85DF,\n\t45174 - 44032: 0x85E0,\n\t45175 - 44032: 0x85E1,\n\t45176 - 44032: 0x85E2,\n\t45177 - 44032: 0x85E3,\n\t45178 - 44032: 0x85E4,\n\t45179 - 44032: 0x85E5,\n\t45180 - 44032: 0xB3A2,\n\t45181 - 44032: 0xB3A3,\n\t45182 - 44032: 0x85E6,\n\t45183 - 44032: 0x85E7,\n\t45184 - 44032: 0xB3A4,\n\t45185 - 44032: 0x85E8,\n\t45186 - 44032: 0x85E9,\n\t45187 - 44032: 0x85EA,\n\t45188 - 44032: 0xB3A5,\n\t45189 - 44032: 0x85EB,\n\t45190 - 44032: 0x85EC,\n\t45191 - 44032: 0x85ED,\n\t45192 - 44032: 0x85EE,\n\t45193 - 44032: 0x85EF,\n\t45194 - 44032: 0x85F0,\n\t45195 - 44032: 0x85F1,\n\t45196 - 44032: 0xB3A6,\n\t45197 - 44032: 0xB3A7,\n\t45198 - 44032: 0x85F2,\n\t45199 - 44032: 0xB3A8,\n\t45200 - 44032: 0x85F3,\n\t45201 - 44032: 0xB3A9,\n\t45202 - 44032: 0x85F4,\n\t45203 - 44032: 0x85F5,\n\t45204 - 44032: 0x85F6,\n\t45205 - 44032: 0x85F7,\n\t45206 - 44032: 0x85F8,\n\t45207 - 44032: 0x85F9,\n\t45208 - 44032: 0xB3AA,\n\t45209 - 44032: 0xB3AB,\n\t45210 - 44032: 0xB3AC,\n\t45211 - 44032: 0x85FA,\n\t45212 - 44032: 0xB3AD,\n\t45213 - 44032: 0x85FB,\n\t45214 - 44032: 0x85FC,\n\t45215 - 44032: 0xB3AE,\n\t45216 - 44032: 0xB3AF,\n\t45217 - 44032: 0xB3B0,\n\t45218 - 44032: 0xB3B1,\n\t45219 - 44032: 0x85FD,\n\t45220 - 44032: 0x85FE,\n\t45221 - 44032: 0x8641,\n\t45222 - 44032: 0x8642,\n\t45223 - 44032: 0x8643,\n\t45224 - 44032: 0xB3B2,\n\t45225 - 44032: 0xB3B3,\n\t45226 - 44032: 0x8644,\n\t45227 - 44032: 0xB3B4,\n\t45228 - 44032: 0xB3B5,\n\t45229 - 44032: 0xB3B6,\n\t45230 - 44032: 0xB3B7,\n\t45231 - 44032: 0xB3B8,\n\t45232 - 44032: 0x8645,\n\t45233 - 44032: 0xB3B9,\n\t45234 - 44032: 0x8646,\n\t45235 - 44032: 0xB3BA,\n\t45236 - 44032: 0xB3BB,\n\t45237 - 44032: 0xB3BC,\n\t45238 - 44032: 0x8647,\n\t45239 - 44032: 0x8648,\n\t45240 - 44032: 0xB3BD,\n\t45241 - 44032: 0x8649,\n\t45242 - 44032: 0x864A,\n\t45243 - 44032: 0x864B,\n\t45244 - 44032: 0xB3BE,\n\t45245 - 44032: 0x864C,\n\t45246 - 44032: 0x864D,\n\t45247 - 44032: 0x864E,\n\t45248 - 44032: 0x864F,\n\t45249 - 44032: 0x8650,\n\t45250 - 44032: 0x8651,\n\t45251 - 44032: 0x8652,\n\t45252 - 44032: 0xB3BF,\n\t45253 - 44032: 0xB3C0,\n\t45254 - 44032: 0x8653,\n\t45255 - 44032: 0xB3C1,\n\t45256 - 44032: 0xB3C2,\n\t45257 - 44032: 0xB3C3,\n\t45258 - 44032: 0x8654,\n\t45259 - 44032: 0x8655,\n\t45260 - 44032: 0x8656,\n\t45261 - 44032: 0x8657,\n\t45262 - 44032: 0x8658,\n\t45263 - 44032: 0x8659,\n\t45264 - 44032: 0xB3C4,\n\t45265 - 44032: 0xB3C5,\n\t45266 - 44032: 0x865A,\n\t45267 - 44032: 0x8661,\n\t45268 - 44032: 0xB3C6,\n\t45269 - 44032: 0x8662,\n\t45270 - 44032: 0x8663,\n\t45271 - 44032: 0x8664,\n\t45272 - 44032: 0xB3C7,\n\t45273 - 44032: 0x8665,\n\t45274 - 44032: 0x8666,\n\t45275 - 44032: 0x8667,\n\t45276 - 44032: 0x8668,\n\t45277 - 44032: 0x8669,\n\t45278 - 44032: 0x866A,\n\t45279 - 44032: 0x866B,\n\t45280 - 44032: 0xB3C8,\n\t45281 - 44032: 0x866C,\n\t45282 - 44032: 0x866D,\n\t45283 - 44032: 0x866E,\n\t45284 - 44032: 0x866F,\n\t45285 - 44032: 0xB3C9,\n\t45286 - 44032: 0x8670,\n\t45287 - 44032: 0x8671,\n\t45288 - 44032: 0x8672,\n\t45289 - 44032: 0x8673,\n\t45290 - 44032: 0x8674,\n\t45291 - 44032: 0x8675,\n\t45292 - 44032: 0x8676,\n\t45293 - 44032: 0x8677,\n\t45294 - 44032: 0x8678,\n\t45295 - 44032: 0x8679,\n\t45296 - 44032: 0x867A,\n\t45297 - 44032: 0x8681,\n\t45298 - 44032: 0x8682,\n\t45299 - 44032: 0x8683,\n\t45300 - 44032: 0x8684,\n\t45301 - 44032: 0x8685,\n\t45302 - 44032: 0x8686,\n\t45303 - 44032: 0x8687,\n\t45304 - 44032: 0x8688,\n\t45305 - 44032: 0x8689,\n\t45306 - 44032: 0x868A,\n\t45307 - 44032: 0x868B,\n\t45308 - 44032: 0x868C,\n\t45309 - 44032: 0x868D,\n\t45310 - 44032: 0x868E,\n\t45311 - 44032: 0x868F,\n\t45312 - 44032: 0x8690,\n\t45313 - 44032: 0x8691,\n\t45314 - 44032: 0x8692,\n\t45315 - 44032: 0x8693,\n\t45316 - 44032: 0x8694,\n\t45317 - 44032: 0x8695,\n\t45318 - 44032: 0x8696,\n\t45319 - 44032: 0x8697,\n\t45320 - 44032: 0xB3CA,\n\t45321 - 44032: 0xB3CB,\n\t45322 - 44032: 0x8698,\n\t45323 - 44032: 0xB3CC,\n\t45324 - 44032: 0xB3CD,\n\t45325 - 44032: 0x8699,\n\t45326 - 44032: 0x869A,\n\t45327 - 44032: 0x869B,\n\t45328 - 44032: 0xB3CE,\n\t45329 - 44032: 0x869C,\n\t45330 - 44032: 0xB3CF,\n\t45331 - 44032: 0xB3D0,\n\t45332 - 44032: 0x869D,\n\t45333 - 44032: 0x869E,\n\t45334 - 44032: 0x869F,\n\t45335 - 44032: 0x86A0,\n\t45336 - 44032: 0xB3D1,\n\t45337 - 44032: 0xB3D2,\n\t45338 - 44032: 0x86A1,\n\t45339 - 44032: 0xB3D3,\n\t45340 - 44032: 0xB3D4,\n\t45341 - 44032: 0xB3D5,\n\t45342 - 44032: 0x86A2,\n\t45343 - 44032: 0x86A3,\n\t45344 - 44032: 0x86A4,\n\t45345 - 44032: 0x86A5,\n\t45346 - 44032: 0x86A6,\n\t45347 - 44032: 0xB3D6,\n\t45348 - 44032: 0xB3D7,\n\t45349 - 44032: 0xB3D8,\n\t45350 - 44032: 0x86A7,\n\t45351 - 44032: 0x86A8,\n\t45352 - 44032: 0xB3D9,\n\t45353 - 44032: 0x86A9,\n\t45354 - 44032: 0x86AA,\n\t45355 - 44032: 0x86AB,\n\t45356 - 44032: 0xB3DA,\n\t45357 - 44032: 0x86AC,\n\t45358 - 44032: 0x86AD,\n\t45359 - 44032: 0x86AE,\n\t45360 - 44032: 0x86AF,\n\t45361 - 44032: 0x86B0,\n\t45362 - 44032: 0x86B1,\n\t45363 - 44032: 0x86B2,\n\t45364 - 44032: 0xB3DB,\n\t45365 - 44032: 0xB3DC,\n\t45366 - 44032: 0x86B3,\n\t45367 - 44032: 0xB3DD,\n\t45368 - 44032: 0xB3DE,\n\t45369 - 44032: 0xB3DF,\n\t45370 - 44032: 0x86B4,\n\t45371 - 44032: 0x86B5,\n\t45372 - 44032: 0x86B6,\n\t45373 - 44032: 0x86B7,\n\t45374 - 44032: 0x86B8,\n\t45375 - 44032: 0x86B9,\n\t45376 - 44032: 0xB3E0,\n\t45377 - 44032: 0xB3E1,\n\t45378 - 44032: 0x86BA,\n\t45379 - 44032: 0x86BB,\n\t45380 - 44032: 0xB3E2,\n\t45381 - 44032: 0x86BC,\n\t45382 - 44032: 0x86BD,\n\t45383 - 44032: 0x86BE,\n\t45384 - 44032: 0xB3E3,\n\t45385 - 44032: 0x86BF,\n\t45386 - 44032: 0x86C0,\n\t45387 - 44032: 0x86C1,\n\t45388 - 44032: 0x86C2,\n\t45389 - 44032: 0x86C3,\n\t45390 - 44032: 0x86C4,\n\t45391 - 44032: 0x86C5,\n\t45392 - 44032: 0xB3E4,\n\t45393 - 44032: 0xB3E5,\n\t45394 - 44032: 0x86C6,\n\t45395 - 44032: 0x86C7,\n\t45396 - 44032: 0xB3E6,\n\t45397 - 44032: 0xB3E7,\n\t45398 - 44032: 0x86C8,\n\t45399 - 44032: 0x86C9,\n\t45400 - 44032: 0xB3E8,\n\t45401 - 44032: 0x86CA,\n\t45402 - 44032: 0x86CB,\n\t45403 - 44032: 0x86CC,\n\t45404 - 44032: 0xB3E9,\n\t45405 - 44032: 0x86CD,\n\t45406 - 44032: 0x86CE,\n\t45407 - 44032: 0x86CF,\n\t45408 - 44032: 0xB3EA,\n\t45409 - 44032: 0x86D0,\n\t45410 - 44032: 0x86D1,\n\t45411 - 44032: 0x86D2,\n\t45412 - 44032: 0x86D3,\n\t45413 - 44032: 0x86D4,\n\t45414 - 44032: 0x86D5,\n\t45415 - 44032: 0x86D6,\n\t45416 - 44032: 0x86D7,\n\t45417 - 44032: 0x86D8,\n\t45418 - 44032: 0x86D9,\n\t45419 - 44032: 0x86DA,\n\t45420 - 44032: 0x86DB,\n\t45421 - 44032: 0x86DC,\n\t45422 - 44032: 0x86DD,\n\t45423 - 44032: 0x86DE,\n\t45424 - 44032: 0x86DF,\n\t45425 - 44032: 0x86E0,\n\t45426 - 44032: 0x86E1,\n\t45427 - 44032: 0x86E2,\n\t45428 - 44032: 0x86E3,\n\t45429 - 44032: 0x86E4,\n\t45430 - 44032: 0x86E5,\n\t45431 - 44032: 0x86E6,\n\t45432 - 44032: 0xB3EB,\n\t45433 - 44032: 0xB3EC,\n\t45434 - 44032: 0x86E7,\n\t45435 - 44032: 0x86E8,\n\t45436 - 44032: 0xB3ED,\n\t45437 - 44032: 0x86E9,\n\t45438 - 44032: 0x86EA,\n\t45439 - 44032: 0x86EB,\n\t45440 - 44032: 0xB3EE,\n\t45441 - 44032: 0x86EC,\n\t45442 - 44032: 0xB3EF,\n\t45443 - 44032: 0x86ED,\n\t45444 - 44032: 0x86EE,\n\t45445 - 44032: 0x86EF,\n\t45446 - 44032: 0x86F0,\n\t45447 - 44032: 0x86F1,\n\t45448 - 44032: 0xB3F0,\n\t45449 - 44032: 0xB3F1,\n\t45450 - 44032: 0x86F2,\n\t45451 - 44032: 0xB3F2,\n\t45452 - 44032: 0x86F3,\n\t45453 - 44032: 0xB3F3,\n\t45454 - 44032: 0x86F4,\n\t45455 - 44032: 0x86F5,\n\t45456 - 44032: 0x86F6,\n\t45457 - 44032: 0x86F7,\n\t45458 - 44032: 0xB3F4,\n\t45459 - 44032: 0xB3F5,\n\t45460 - 44032: 0xB3F6,\n\t45461 - 44032: 0x86F8,\n\t45462 - 44032: 0x86F9,\n\t45463 - 44032: 0x86FA,\n\t45464 - 44032: 0xB3F7,\n\t45465 - 44032: 0x86FB,\n\t45466 - 44032: 0x86FC,\n\t45467 - 44032: 0x86FD,\n\t45468 - 44032: 0xB3F8,\n\t45469 - 44032: 0x86FE,\n\t45470 - 44032: 0x8741,\n\t45471 - 44032: 0x8742,\n\t45472 - 44032: 0x8743,\n\t45473 - 44032: 0x8744,\n\t45474 - 44032: 0x8745,\n\t45475 - 44032: 0x8746,\n\t45476 - 44032: 0x8747,\n\t45477 - 44032: 0x8748,\n\t45478 - 44032: 0x8749,\n\t45479 - 44032: 0x874A,\n\t45480 - 44032: 0xB3F9,\n\t45481 - 44032: 0x874B,\n\t45482 - 44032: 0x874C,\n\t45483 - 44032: 0x874D,\n\t45484 - 44032: 0x874E,\n\t45485 - 44032: 0x874F,\n\t45486 - 44032: 0x8750,\n\t45487 - 44032: 0x8751,\n\t45488 - 44032: 0x8752,\n\t45489 - 44032: 0x8753,\n\t45490 - 44032: 0x8754,\n\t45491 - 44032: 0x8755,\n\t45492 - 44032: 0x8756,\n\t45493 - 44032: 0x8757,\n\t45494 - 44032: 0x8758,\n\t45495 - 44032: 0x8759,\n\t45496 - 44032: 0x875A,\n\t45497 - 44032: 0x8761,\n\t45498 - 44032: 0x8762,\n\t45499 - 44032: 0x8763,\n\t45500 - 44032: 0x8764,\n\t45501 - 44032: 0x8765,\n\t45502 - 44032: 0x8766,\n\t45503 - 44032: 0x8767,\n\t45504 - 44032: 0x8768,\n\t45505 - 44032: 0x8769,\n\t45506 - 44032: 0x876A,\n\t45507 - 44032: 0x876B,\n\t45508 - 44032: 0x876C,\n\t45509 - 44032: 0x876D,\n\t45510 - 44032: 0x876E,\n\t45511 - 44032: 0x876F,\n\t45512 - 44032: 0x8770,\n\t45513 - 44032: 0x8771,\n\t45514 - 44032: 0x8772,\n\t45515 - 44032: 0x8773,\n\t45516 - 44032: 0xB3FA,\n\t45517 - 44032: 0x8774,\n\t45518 - 44032: 0x8775,\n\t45519 - 44032: 0x8776,\n\t45520 - 44032: 0xB3FB,\n\t45521 - 44032: 0x8777,\n\t45522 - 44032: 0x8778,\n\t45523 - 44032: 0x8779,\n\t45524 - 44032: 0xB3FC,\n\t45525 - 44032: 0x877A,\n\t45526 - 44032: 0x8781,\n\t45527 - 44032: 0x8782,\n\t45528 - 44032: 0x8783,\n\t45529 - 44032: 0x8784,\n\t45530 - 44032: 0x8785,\n\t45531 - 44032: 0x8786,\n\t45532 - 44032: 0xB3FD,\n\t45533 - 44032: 0xB3FE,\n\t45534 - 44032: 0x8787,\n\t45535 - 44032: 0xB4A1,\n\t45536 - 44032: 0x8788,\n\t45537 - 44032: 0x8789,\n\t45538 - 44032: 0x878A,\n\t45539 - 44032: 0x878B,\n\t45540 - 44032: 0x878C,\n\t45541 - 44032: 0x878D,\n\t45542 - 44032: 0x878E,\n\t45543 - 44032: 0x878F,\n\t45544 - 44032: 0xB4A2,\n\t45545 - 44032: 0xB4A3,\n\t45546 - 44032: 0x8790,\n\t45547 - 44032: 0x8791,\n\t45548 - 44032: 0xB4A4,\n\t45549 - 44032: 0x8792,\n\t45550 - 44032: 0x8793,\n\t45551 - 44032: 0x8794,\n\t45552 - 44032: 0xB4A5,\n\t45553 - 44032: 0x8795,\n\t45554 - 44032: 0x8796,\n\t45555 - 44032: 0x8797,\n\t45556 - 44032: 0x8798,\n\t45557 - 44032: 0x8799,\n\t45558 - 44032: 0x879A,\n\t45559 - 44032: 0x879B,\n\t45560 - 44032: 0x879C,\n\t45561 - 44032: 0xB4A6,\n\t45562 - 44032: 0x879D,\n\t45563 - 44032: 0xB4A7,\n\t45564 - 44032: 0x879E,\n\t45565 - 44032: 0xB4A8,\n\t45566 - 44032: 0x879F,\n\t45567 - 44032: 0x87A0,\n\t45568 - 44032: 0x87A1,\n\t45569 - 44032: 0x87A2,\n\t45570 - 44032: 0x87A3,\n\t45571 - 44032: 0x87A4,\n\t45572 - 44032: 0xB4A9,\n\t45573 - 44032: 0xB4AA,\n\t45574 - 44032: 0x87A5,\n\t45575 - 44032: 0x87A6,\n\t45576 - 44032: 0xB4AB,\n\t45577 - 44032: 0x87A7,\n\t45578 - 44032: 0x87A8,\n\t45579 - 44032: 0xB4AC,\n\t45580 - 44032: 0xB4AD,\n\t45581 - 44032: 0x87A9,\n\t45582 - 44032: 0x87AA,\n\t45583 - 44032: 0x87AB,\n\t45584 - 44032: 0x87AC,\n\t45585 - 44032: 0x87AD,\n\t45586 - 44032: 0x87AE,\n\t45587 - 44032: 0x87AF,\n\t45588 - 44032: 0xB4AE,\n\t45589 - 44032: 0xB4AF,\n\t45590 - 44032: 0x87B0,\n\t45591 - 44032: 0xB4B0,\n\t45592 - 44032: 0x87B1,\n\t45593 - 44032: 0xB4B1,\n\t45594 - 44032: 0x87B2,\n\t45595 - 44032: 0x87B3,\n\t45596 - 44032: 0x87B4,\n\t45597 - 44032: 0x87B5,\n\t45598 - 44032: 0x87B6,\n\t45599 - 44032: 0x87B7,\n\t45600 - 44032: 0xB4B2,\n\t45601 - 44032: 0x87B8,\n\t45602 - 44032: 0x87B9,\n\t45603 - 44032: 0x87BA,\n\t45604 - 44032: 0x87BB,\n\t45605 - 44032: 0x87BC,\n\t45606 - 44032: 0x87BD,\n\t45607 - 44032: 0x87BE,\n\t45608 - 44032: 0x87BF,\n\t45609 - 44032: 0x87C0,\n\t45610 - 44032: 0x87C1,\n\t45611 - 44032: 0x87C2,\n\t45612 - 44032: 0x87C3,\n\t45613 - 44032: 0x87C4,\n\t45614 - 44032: 0x87C5,\n\t45615 - 44032: 0x87C6,\n\t45616 - 44032: 0x87C7,\n\t45617 - 44032: 0x87C8,\n\t45618 - 44032: 0x87C9,\n\t45619 - 44032: 0x87CA,\n\t45620 - 44032: 0xB4B3,\n\t45621 - 44032: 0x87CB,\n\t45622 - 44032: 0x87CC,\n\t45623 - 44032: 0x87CD,\n\t45624 - 44032: 0x87CE,\n\t45625 - 44032: 0x87CF,\n\t45626 - 44032: 0x87D0,\n\t45627 - 44032: 0x87D1,\n\t45628 - 44032: 0xB4B4,\n\t45629 - 44032: 0x87D2,\n\t45630 - 44032: 0x87D3,\n\t45631 - 44032: 0x87D4,\n\t45632 - 44032: 0x87D5,\n\t45633 - 44032: 0x87D6,\n\t45634 - 44032: 0x87D7,\n\t45635 - 44032: 0x87D8,\n\t45636 - 44032: 0x87D9,\n\t45637 - 44032: 0x87DA,\n\t45638 - 44032: 0x87DB,\n\t45639 - 44032: 0x87DC,\n\t45640 - 44032: 0x87DD,\n\t45641 - 44032: 0x87DE,\n\t45642 - 44032: 0x87DF,\n\t45643 - 44032: 0x87E0,\n\t45644 - 44032: 0x87E1,\n\t45645 - 44032: 0x87E2,\n\t45646 - 44032: 0x87E3,\n\t45647 - 44032: 0x87E4,\n\t45648 - 44032: 0x87E5,\n\t45649 - 44032: 0x87E6,\n\t45650 - 44032: 0x87E7,\n\t45651 - 44032: 0x87E8,\n\t45652 - 44032: 0x87E9,\n\t45653 - 44032: 0x87EA,\n\t45654 - 44032: 0x87EB,\n\t45655 - 44032: 0x87EC,\n\t45656 - 44032: 0xB4B5,\n\t45657 - 44032: 0x87ED,\n\t45658 - 44032: 0x87EE,\n\t45659 - 44032: 0x87EF,\n\t45660 - 44032: 0xB4B6,\n\t45661 - 44032: 0x87F0,\n\t45662 - 44032: 0x87F1,\n\t45663 - 44032: 0x87F2,\n\t45664 - 44032: 0xB4B7,\n\t45665 - 44032: 0x87F3,\n\t45666 - 44032: 0x87F4,\n\t45667 - 44032: 0x87F5,\n\t45668 - 44032: 0x87F6,\n\t45669 - 44032: 0x87F7,\n\t45670 - 44032: 0x87F8,\n\t45671 - 44032: 0x87F9,\n\t45672 - 44032: 0xB4B8,\n\t45673 - 44032: 0xB4B9,\n\t45674 - 44032: 0x87FA,\n\t45675 - 44032: 0x87FB,\n\t45676 - 44032: 0x87FC,\n\t45677 - 44032: 0x87FD,\n\t45678 - 44032: 0x87FE,\n\t45679 - 44032: 0x8841,\n\t45680 - 44032: 0x8842,\n\t45681 - 44032: 0x8843,\n\t45682 - 44032: 0x8844,\n\t45683 - 44032: 0x8845,\n\t45684 - 44032: 0xB4BA,\n\t45685 - 44032: 0xB4BB,\n\t45686 - 44032: 0x8846,\n\t45687 - 44032: 0x8847,\n\t45688 - 44032: 0x8848,\n\t45689 - 44032: 0x8849,\n\t45690 - 44032: 0x884A,\n\t45691 - 44032: 0x884B,\n\t45692 - 44032: 0xB4BC,\n\t45693 - 44032: 0x884C,\n\t45694 - 44032: 0x884D,\n\t45695 - 44032: 0x884E,\n\t45696 - 44032: 0x884F,\n\t45697 - 44032: 0x8850,\n\t45698 - 44032: 0x8851,\n\t45699 - 44032: 0x8852,\n\t45700 - 44032: 0xB4BD,\n\t45701 - 44032: 0xB4BE,\n\t45702 - 44032: 0x8853,\n\t45703 - 44032: 0x8854,\n\t45704 - 44032: 0x8855,\n\t45705 - 44032: 0xB4BF,\n\t45706 - 44032: 0x8856,\n\t45707 - 44032: 0x8857,\n\t45708 - 44032: 0x8858,\n\t45709 - 44032: 0x8859,\n\t45710 - 44032: 0x885A,\n\t45711 - 44032: 0x8861,\n\t45712 - 44032: 0xB4C0,\n\t45713 - 44032: 0xB4C1,\n\t45714 - 44032: 0x8862,\n\t45715 - 44032: 0x8863,\n\t45716 - 44032: 0xB4C2,\n\t45717 - 44032: 0x8864,\n\t45718 - 44032: 0x8865,\n\t45719 - 44032: 0x8866,\n\t45720 - 44032: 0xB4C3,\n\t45721 - 44032: 0xB4C4,\n\t45722 - 44032: 0xB4C5,\n\t45723 - 44032: 0x8867,\n\t45724 - 44032: 0x8868,\n\t45725 - 44032: 0x8869,\n\t45726 - 44032: 0x886A,\n\t45727 - 44032: 0x886B,\n\t45728 - 44032: 0xB4C6,\n\t45729 - 44032: 0xB4C7,\n\t45730 - 44032: 0x886C,\n\t45731 - 44032: 0xB4C8,\n\t45732 - 44032: 0x886D,\n\t45733 - 44032: 0xB4C9,\n\t45734 - 44032: 0xB4CA,\n\t45735 - 44032: 0x886E,\n\t45736 - 44032: 0x886F,\n\t45737 - 44032: 0x8870,\n\t45738 - 44032: 0xB4CB,\n\t45739 - 44032: 0x8871,\n\t45740 - 44032: 0xB4CC,\n\t45741 - 44032: 0x8872,\n\t45742 - 44032: 0x8873,\n\t45743 - 44032: 0x8874,\n\t45744 - 44032: 0xB4CD,\n\t45745 - 44032: 0x8875,\n\t45746 - 44032: 0x8876,\n\t45747 - 44032: 0x8877,\n\t45748 - 44032: 0xB4CE,\n\t45749 - 44032: 0x8878,\n\t45750 - 44032: 0x8879,\n\t45751 - 44032: 0x887A,\n\t45752 - 44032: 0x8881,\n\t45753 - 44032: 0x8882,\n\t45754 - 44032: 0x8883,\n\t45755 - 44032: 0x8884,\n\t45756 - 44032: 0x8885,\n\t45757 - 44032: 0x8886,\n\t45758 - 44032: 0x8887,\n\t45759 - 44032: 0x8888,\n\t45760 - 44032: 0x8889,\n\t45761 - 44032: 0x888A,\n\t45762 - 44032: 0x888B,\n\t45763 - 44032: 0x888C,\n\t45764 - 44032: 0x888D,\n\t45765 - 44032: 0x888E,\n\t45766 - 44032: 0x888F,\n\t45767 - 44032: 0x8890,\n\t45768 - 44032: 0xB4CF,\n\t45769 - 44032: 0xB4D0,\n\t45770 - 44032: 0x8891,\n\t45771 - 44032: 0x8892,\n\t45772 - 44032: 0xB4D1,\n\t45773 - 44032: 0x8893,\n\t45774 - 44032: 0x8894,\n\t45775 - 44032: 0x8895,\n\t45776 - 44032: 0xB4D2,\n\t45777 - 44032: 0x8896,\n\t45778 - 44032: 0xB4D3,\n\t45779 - 44032: 0x8897,\n\t45780 - 44032: 0x8898,\n\t45781 - 44032: 0x8899,\n\t45782 - 44032: 0x889A,\n\t45783 - 44032: 0x889B,\n\t45784 - 44032: 0xB4D4,\n\t45785 - 44032: 0xB4D5,\n\t45786 - 44032: 0x889C,\n\t45787 - 44032: 0xB4D6,\n\t45788 - 44032: 0x889D,\n\t45789 - 44032: 0xB4D7,\n\t45790 - 44032: 0x889E,\n\t45791 - 44032: 0x889F,\n\t45792 - 44032: 0x88A0,\n\t45793 - 44032: 0x88A1,\n\t45794 - 44032: 0xB4D8,\n\t45795 - 44032: 0x88A2,\n\t45796 - 44032: 0xB4D9,\n\t45797 - 44032: 0xB4DA,\n\t45798 - 44032: 0xB4DB,\n\t45799 - 44032: 0x88A3,\n\t45800 - 44032: 0xB4DC,\n\t45801 - 44032: 0x88A4,\n\t45802 - 44032: 0x88A5,\n\t45803 - 44032: 0xB4DD,\n\t45804 - 44032: 0xB4DE,\n\t45805 - 44032: 0xB4DF,\n\t45806 - 44032: 0xB4E0,\n\t45807 - 44032: 0xB4E1,\n\t45808 - 44032: 0x88A6,\n\t45809 - 44032: 0x88A7,\n\t45810 - 44032: 0x88A8,\n\t45811 - 44032: 0xB4E2,\n\t45812 - 44032: 0xB4E3,\n\t45813 - 44032: 0xB4E4,\n\t45814 - 44032: 0x88A9,\n\t45815 - 44032: 0xB4E5,\n\t45816 - 44032: 0xB4E6,\n\t45817 - 44032: 0xB4E7,\n\t45818 - 44032: 0xB4E8,\n\t45819 - 44032: 0xB4E9,\n\t45820 - 44032: 0x88AA,\n\t45821 - 44032: 0x88AB,\n\t45822 - 44032: 0x88AC,\n\t45823 - 44032: 0xB4EA,\n\t45824 - 44032: 0xB4EB,\n\t45825 - 44032: 0xB4EC,\n\t45826 - 44032: 0x88AD,\n\t45827 - 44032: 0x88AE,\n\t45828 - 44032: 0xB4ED,\n\t45829 - 44032: 0x88AF,\n\t45830 - 44032: 0x88B0,\n\t45831 - 44032: 0x88B1,\n\t45832 - 44032: 0xB4EE,\n\t45833 - 44032: 0x88B2,\n\t45834 - 44032: 0x88B3,\n\t45835 - 44032: 0x88B4,\n\t45836 - 44032: 0x88B5,\n\t45837 - 44032: 0x88B6,\n\t45838 - 44032: 0x88B7,\n\t45839 - 44032: 0x88B8,\n\t45840 - 44032: 0xB4EF,\n\t45841 - 44032: 0xB4F0,\n\t45842 - 44032: 0x88B9,\n\t45843 - 44032: 0xB4F1,\n\t45844 - 44032: 0xB4F2,\n\t45845 - 44032: 0xB4F3,\n\t45846 - 44032: 0x88BA,\n\t45847 - 44032: 0x88BB,\n\t45848 - 44032: 0x88BC,\n\t45849 - 44032: 0x88BD,\n\t45850 - 44032: 0x88BE,\n\t45851 - 44032: 0x88BF,\n\t45852 - 44032: 0xB4F4,\n\t45853 - 44032: 0x88C0,\n\t45854 - 44032: 0x88C1,\n\t45855 - 44032: 0x88C2,\n\t45856 - 44032: 0x88C3,\n\t45857 - 44032: 0x88C4,\n\t45858 - 44032: 0x88C5,\n\t45859 - 44032: 0x88C6,\n\t45860 - 44032: 0x88C7,\n\t45861 - 44032: 0x88C8,\n\t45862 - 44032: 0x88C9,\n\t45863 - 44032: 0x88CA,\n\t45864 - 44032: 0x88CB,\n\t45865 - 44032: 0x88CC,\n\t45866 - 44032: 0x88CD,\n\t45867 - 44032: 0x88CE,\n\t45868 - 44032: 0x88CF,\n\t45869 - 44032: 0x88D0,\n\t45870 - 44032: 0x88D1,\n\t45871 - 44032: 0x88D2,\n\t45872 - 44032: 0x88D3,\n\t45873 - 44032: 0x88D4,\n\t45874 - 44032: 0x88D5,\n\t45875 - 44032: 0x88D6,\n\t45876 - 44032: 0x88D7,\n\t45877 - 44032: 0x88D8,\n\t45878 - 44032: 0x88D9,\n\t45879 - 44032: 0x88DA,\n\t45880 - 44032: 0x88DB,\n\t45881 - 44032: 0x88DC,\n\t45882 - 44032: 0x88DD,\n\t45883 - 44032: 0x88DE,\n\t45884 - 44032: 0x88DF,\n\t45885 - 44032: 0x88E0,\n\t45886 - 44032: 0x88E1,\n\t45887 - 44032: 0x88E2,\n\t45888 - 44032: 0x88E3,\n\t45889 - 44032: 0x88E4,\n\t45890 - 44032: 0x88E5,\n\t45891 - 44032: 0x88E6,\n\t45892 - 44032: 0x88E7,\n\t45893 - 44032: 0x88E8,\n\t45894 - 44032: 0x88E9,\n\t45895 - 44032: 0x88EA,\n\t45896 - 44032: 0x88EB,\n\t45897 - 44032: 0x88EC,\n\t45898 - 44032: 0x88ED,\n\t45899 - 44032: 0x88EE,\n\t45900 - 44032: 0x88EF,\n\t45901 - 44032: 0x88F0,\n\t45902 - 44032: 0x88F1,\n\t45903 - 44032: 0x88F2,\n\t45904 - 44032: 0x88F3,\n\t45905 - 44032: 0x88F4,\n\t45906 - 44032: 0x88F5,\n\t45907 - 44032: 0x88F6,\n\t45908 - 44032: 0xB4F5,\n\t45909 - 44032: 0xB4F6,\n\t45910 - 44032: 0xB4F7,\n\t45911 - 44032: 0x88F7,\n\t45912 - 44032: 0xB4F8,\n\t45913 - 44032: 0x88F8,\n\t45914 - 44032: 0x88F9,\n\t45915 - 44032: 0xB4F9,\n\t45916 - 44032: 0xB4FA,\n\t45917 - 44032: 0x88FA,\n\t45918 - 44032: 0xB4FB,\n\t45919 - 44032: 0xB4FC,\n\t45920 - 44032: 0x88FB,\n\t45921 - 44032: 0x88FC,\n\t45922 - 44032: 0x88FD,\n\t45923 - 44032: 0x88FE,\n\t45924 - 44032: 0xB4FD,\n\t45925 - 44032: 0xB4FE,\n\t45926 - 44032: 0x8941,\n\t45927 - 44032: 0xB5A1,\n\t45928 - 44032: 0x8942,\n\t45929 - 44032: 0xB5A2,\n\t45930 - 44032: 0x8943,\n\t45931 - 44032: 0xB5A3,\n\t45932 - 44032: 0x8944,\n\t45933 - 44032: 0x8945,\n\t45934 - 44032: 0xB5A4,\n\t45935 - 44032: 0x8946,\n\t45936 - 44032: 0xB5A5,\n\t45937 - 44032: 0xB5A6,\n\t45938 - 44032: 0x8947,\n\t45939 - 44032: 0x8948,\n\t45940 - 44032: 0xB5A7,\n\t45941 - 44032: 0x8949,\n\t45942 - 44032: 0x894A,\n\t45943 - 44032: 0x894B,\n\t45944 - 44032: 0xB5A8,\n\t45945 - 44032: 0x894C,\n\t45946 - 44032: 0x894D,\n\t45947 - 44032: 0x894E,\n\t45948 - 44032: 0x894F,\n\t45949 - 44032: 0x8950,\n\t45950 - 44032: 0x8951,\n\t45951 - 44032: 0x8952,\n\t45952 - 44032: 0xB5A9,\n\t45953 - 44032: 0xB5AA,\n\t45954 - 44032: 0x8953,\n\t45955 - 44032: 0xB5AB,\n\t45956 - 44032: 0xB5AC,\n\t45957 - 44032: 0xB5AD,\n\t45958 - 44032: 0x8954,\n\t45959 - 44032: 0x8955,\n\t45960 - 44032: 0x8956,\n\t45961 - 44032: 0x8957,\n\t45962 - 44032: 0x8958,\n\t45963 - 44032: 0x8959,\n\t45964 - 44032: 0xB5AE,\n\t45965 - 44032: 0x895A,\n\t45966 - 44032: 0x8961,\n\t45967 - 44032: 0x8962,\n\t45968 - 44032: 0xB5AF,\n\t45969 - 44032: 0x8963,\n\t45970 - 44032: 0x8964,\n\t45971 - 44032: 0x8965,\n\t45972 - 44032: 0xB5B0,\n\t45973 - 44032: 0x8966,\n\t45974 - 44032: 0x8967,\n\t45975 - 44032: 0x8968,\n\t45976 - 44032: 0x8969,\n\t45977 - 44032: 0x896A,\n\t45978 - 44032: 0x896B,\n\t45979 - 44032: 0x896C,\n\t45980 - 44032: 0x896D,\n\t45981 - 44032: 0x896E,\n\t45982 - 44032: 0x896F,\n\t45983 - 44032: 0x8970,\n\t45984 - 44032: 0xB5B1,\n\t45985 - 44032: 0xB5B2,\n\t45986 - 44032: 0x8971,\n\t45987 - 44032: 0x8972,\n\t45988 - 44032: 0x8973,\n\t45989 - 44032: 0x8974,\n\t45990 - 44032: 0x8975,\n\t45991 - 44032: 0x8976,\n\t45992 - 44032: 0xB5B3,\n\t45993 - 44032: 0x8977,\n\t45994 - 44032: 0x8978,\n\t45995 - 44032: 0x8979,\n\t45996 - 44032: 0xB5B4,\n\t45997 - 44032: 0x897A,\n\t45998 - 44032: 0x8981,\n\t45999 - 44032: 0x8982,\n\t46000 - 44032: 0x8983,\n\t46001 - 44032: 0x8984,\n\t46002 - 44032: 0x8985,\n\t46003 - 44032: 0x8986,\n\t46004 - 44032: 0x8987,\n\t46005 - 44032: 0x8988,\n\t46006 - 44032: 0x8989,\n\t46007 - 44032: 0x898A,\n\t46008 - 44032: 0x898B,\n\t46009 - 44032: 0x898C,\n\t46010 - 44032: 0x898D,\n\t46011 - 44032: 0x898E,\n\t46012 - 44032: 0x898F,\n\t46013 - 44032: 0x8990,\n\t46014 - 44032: 0x8991,\n\t46015 - 44032: 0x8992,\n\t46016 - 44032: 0x8993,\n\t46017 - 44032: 0x8994,\n\t46018 - 44032: 0x8995,\n\t46019 - 44032: 0x8996,\n\t46020 - 44032: 0xB5B5,\n\t46021 - 44032: 0xB5B6,\n\t46022 - 44032: 0x8997,\n\t46023 - 44032: 0x8998,\n\t46024 - 44032: 0xB5B7,\n\t46025 - 44032: 0x8999,\n\t46026 - 44032: 0x899A,\n\t46027 - 44032: 0xB5B8,\n\t46028 - 44032: 0xB5B9,\n\t46029 - 44032: 0x899B,\n\t46030 - 44032: 0xB5BA,\n\t46031 - 44032: 0x899C,\n\t46032 - 44032: 0xB5BB,\n\t46033 - 44032: 0x899D,\n\t46034 - 44032: 0x899E,\n\t46035 - 44032: 0x899F,\n\t46036 - 44032: 0xB5BC,\n\t46037 - 44032: 0xB5BD,\n\t46038 - 44032: 0x89A0,\n\t46039 - 44032: 0xB5BE,\n\t46040 - 44032: 0x89A1,\n\t46041 - 44032: 0xB5BF,\n\t46042 - 44032: 0x89A2,\n\t46043 - 44032: 0xB5C0,\n\t46044 - 44032: 0x89A3,\n\t46045 - 44032: 0xB5C1,\n\t46046 - 44032: 0x89A4,\n\t46047 - 44032: 0x89A5,\n\t46048 - 44032: 0xB5C2,\n\t46049 - 44032: 0x89A6,\n\t46050 - 44032: 0x89A7,\n\t46051 - 44032: 0x89A8,\n\t46052 - 44032: 0xB5C3,\n\t46053 - 44032: 0x89A9,\n\t46054 - 44032: 0x89AA,\n\t46055 - 44032: 0x89AB,\n\t46056 - 44032: 0xB5C4,\n\t46057 - 44032: 0x89AC,\n\t46058 - 44032: 0x89AD,\n\t46059 - 44032: 0x89AE,\n\t46060 - 44032: 0x89AF,\n\t46061 - 44032: 0x89B0,\n\t46062 - 44032: 0x89B1,\n\t46063 - 44032: 0x89B2,\n\t46064 - 44032: 0x89B3,\n\t46065 - 44032: 0x89B4,\n\t46066 - 44032: 0x89B5,\n\t46067 - 44032: 0x89B6,\n\t46068 - 44032: 0x89B7,\n\t46069 - 44032: 0x89B8,\n\t46070 - 44032: 0x89B9,\n\t46071 - 44032: 0x89BA,\n\t46072 - 44032: 0x89BB,\n\t46073 - 44032: 0x89BC,\n\t46074 - 44032: 0x89BD,\n\t46075 - 44032: 0x89BE,\n\t46076 - 44032: 0xB5C5,\n\t46077 - 44032: 0x89BF,\n\t46078 - 44032: 0x89C0,\n\t46079 - 44032: 0x89C1,\n\t46080 - 44032: 0x89C2,\n\t46081 - 44032: 0x89C3,\n\t46082 - 44032: 0x89C4,\n\t46083 - 44032: 0x89C5,\n\t46084 - 44032: 0x89C6,\n\t46085 - 44032: 0x89C7,\n\t46086 - 44032: 0x89C8,\n\t46087 - 44032: 0x89C9,\n\t46088 - 44032: 0x89CA,\n\t46089 - 44032: 0x89CB,\n\t46090 - 44032: 0x89CC,\n\t46091 - 44032: 0x89CD,\n\t46092 - 44032: 0x89CE,\n\t46093 - 44032: 0x89CF,\n\t46094 - 44032: 0x89D0,\n\t46095 - 44032: 0x89D1,\n\t46096 - 44032: 0xB5C6,\n\t46097 - 44032: 0x89D2,\n\t46098 - 44032: 0x89D3,\n\t46099 - 44032: 0x89D4,\n\t46100 - 44032: 0x89D5,\n\t46101 - 44032: 0x89D6,\n\t46102 - 44032: 0x89D7,\n\t46103 - 44032: 0x89D8,\n\t46104 - 44032: 0xB5C7,\n\t46105 - 44032: 0x89D9,\n\t46106 - 44032: 0x89DA,\n\t46107 - 44032: 0x89DB,\n\t46108 - 44032: 0xB5C8,\n\t46109 - 44032: 0x89DC,\n\t46110 - 44032: 0x89DD,\n\t46111 - 44032: 0x89DE,\n\t46112 - 44032: 0xB5C9,\n\t46113 - 44032: 0x89DF,\n\t46114 - 44032: 0x89E0,\n\t46115 - 44032: 0x89E1,\n\t46116 - 44032: 0x89E2,\n\t46117 - 44032: 0x89E3,\n\t46118 - 44032: 0x89E4,\n\t46119 - 44032: 0x89E5,\n\t46120 - 44032: 0xB5CA,\n\t46121 - 44032: 0xB5CB,\n\t46122 - 44032: 0x89E6,\n\t46123 - 44032: 0xB5CC,\n\t46124 - 44032: 0x89E7,\n\t46125 - 44032: 0x89E8,\n\t46126 - 44032: 0x89E9,\n\t46127 - 44032: 0x89EA,\n\t46128 - 44032: 0x89EB,\n\t46129 - 44032: 0x89EC,\n\t46130 - 44032: 0x89ED,\n\t46131 - 44032: 0x89EE,\n\t46132 - 44032: 0xB5CD,\n\t46133 - 44032: 0x89EF,\n\t46134 - 44032: 0x89F0,\n\t46135 - 44032: 0x89F1,\n\t46136 - 44032: 0x89F2,\n\t46137 - 44032: 0x89F3,\n\t46138 - 44032: 0x89F4,\n\t46139 - 44032: 0x89F5,\n\t46140 - 44032: 0x89F6,\n\t46141 - 44032: 0x89F7,\n\t46142 - 44032: 0x89F8,\n\t46143 - 44032: 0x89F9,\n\t46144 - 44032: 0x89FA,\n\t46145 - 44032: 0x89FB,\n\t46146 - 44032: 0x89FC,\n\t46147 - 44032: 0x89FD,\n\t46148 - 44032: 0x89FE,\n\t46149 - 44032: 0x8A41,\n\t46150 - 44032: 0x8A42,\n\t46151 - 44032: 0x8A43,\n\t46152 - 44032: 0x8A44,\n\t46153 - 44032: 0x8A45,\n\t46154 - 44032: 0x8A46,\n\t46155 - 44032: 0x8A47,\n\t46156 - 44032: 0x8A48,\n\t46157 - 44032: 0x8A49,\n\t46158 - 44032: 0x8A4A,\n\t46159 - 44032: 0x8A4B,\n\t46160 - 44032: 0xB5CE,\n\t46161 - 44032: 0xB5CF,\n\t46162 - 44032: 0x8A4C,\n\t46163 - 44032: 0x8A4D,\n\t46164 - 44032: 0xB5D0,\n\t46165 - 44032: 0x8A4E,\n\t46166 - 44032: 0x8A4F,\n\t46167 - 44032: 0x8A50,\n\t46168 - 44032: 0xB5D1,\n\t46169 - 44032: 0x8A51,\n\t46170 - 44032: 0x8A52,\n\t46171 - 44032: 0x8A53,\n\t46172 - 44032: 0x8A54,\n\t46173 - 44032: 0x8A55,\n\t46174 - 44032: 0x8A56,\n\t46175 - 44032: 0x8A57,\n\t46176 - 44032: 0xB5D2,\n\t46177 - 44032: 0xB5D3,\n\t46178 - 44032: 0x8A58,\n\t46179 - 44032: 0xB5D4,\n\t46180 - 44032: 0x8A59,\n\t46181 - 44032: 0xB5D5,\n\t46182 - 44032: 0x8A5A,\n\t46183 - 44032: 0x8A61,\n\t46184 - 44032: 0x8A62,\n\t46185 - 44032: 0x8A63,\n\t46186 - 44032: 0x8A64,\n\t46187 - 44032: 0x8A65,\n\t46188 - 44032: 0xB5D6,\n\t46189 - 44032: 0x8A66,\n\t46190 - 44032: 0x8A67,\n\t46191 - 44032: 0x8A68,\n\t46192 - 44032: 0x8A69,\n\t46193 - 44032: 0x8A6A,\n\t46194 - 44032: 0x8A6B,\n\t46195 - 44032: 0x8A6C,\n\t46196 - 44032: 0x8A6D,\n\t46197 - 44032: 0x8A6E,\n\t46198 - 44032: 0x8A6F,\n\t46199 - 44032: 0x8A70,\n\t46200 - 44032: 0x8A71,\n\t46201 - 44032: 0x8A72,\n\t46202 - 44032: 0x8A73,\n\t46203 - 44032: 0x8A74,\n\t46204 - 44032: 0x8A75,\n\t46205 - 44032: 0x8A76,\n\t46206 - 44032: 0x8A77,\n\t46207 - 44032: 0x8A78,\n\t46208 - 44032: 0xB5D7,\n\t46209 - 44032: 0x8A79,\n\t46210 - 44032: 0x8A7A,\n\t46211 - 44032: 0x8A81,\n\t46212 - 44032: 0x8A82,\n\t46213 - 44032: 0x8A83,\n\t46214 - 44032: 0x8A84,\n\t46215 - 44032: 0x8A85,\n\t46216 - 44032: 0xB5D8,\n\t46217 - 44032: 0x8A86,\n\t46218 - 44032: 0x8A87,\n\t46219 - 44032: 0x8A88,\n\t46220 - 44032: 0x8A89,\n\t46221 - 44032: 0x8A8A,\n\t46222 - 44032: 0x8A8B,\n\t46223 - 44032: 0x8A8C,\n\t46224 - 44032: 0x8A8D,\n\t46225 - 44032: 0x8A8E,\n\t46226 - 44032: 0x8A8F,\n\t46227 - 44032: 0x8A90,\n\t46228 - 44032: 0x8A91,\n\t46229 - 44032: 0x8A92,\n\t46230 - 44032: 0x8A93,\n\t46231 - 44032: 0x8A94,\n\t46232 - 44032: 0x8A95,\n\t46233 - 44032: 0x8A96,\n\t46234 - 44032: 0x8A97,\n\t46235 - 44032: 0x8A98,\n\t46236 - 44032: 0x8A99,\n\t46237 - 44032: 0xB5D9,\n\t46238 - 44032: 0x8A9A,\n\t46239 - 44032: 0x8A9B,\n\t46240 - 44032: 0x8A9C,\n\t46241 - 44032: 0x8A9D,\n\t46242 - 44032: 0x8A9E,\n\t46243 - 44032: 0x8A9F,\n\t46244 - 44032: 0xB5DA,\n\t46245 - 44032: 0x8AA0,\n\t46246 - 44032: 0x8AA1,\n\t46247 - 44032: 0x8AA2,\n\t46248 - 44032: 0xB5DB,\n\t46249 - 44032: 0x8AA3,\n\t46250 - 44032: 0x8AA4,\n\t46251 - 44032: 0x8AA5,\n\t46252 - 44032: 0xB5DC,\n\t46253 - 44032: 0x8AA6,\n\t46254 - 44032: 0x8AA7,\n\t46255 - 44032: 0x8AA8,\n\t46256 - 44032: 0x8AA9,\n\t46257 - 44032: 0x8AAA,\n\t46258 - 44032: 0x8AAB,\n\t46259 - 44032: 0x8AAC,\n\t46260 - 44032: 0x8AAD,\n\t46261 - 44032: 0xB5DD,\n\t46262 - 44032: 0x8AAE,\n\t46263 - 44032: 0xB5DE,\n\t46264 - 44032: 0x8AAF,\n\t46265 - 44032: 0xB5DF,\n\t46266 - 44032: 0x8AB0,\n\t46267 - 44032: 0x8AB1,\n\t46268 - 44032: 0x8AB2,\n\t46269 - 44032: 0x8AB3,\n\t46270 - 44032: 0x8AB4,\n\t46271 - 44032: 0x8AB5,\n\t46272 - 44032: 0xB5E0,\n\t46273 - 44032: 0x8AB6,\n\t46274 - 44032: 0x8AB7,\n\t46275 - 44032: 0x8AB8,\n\t46276 - 44032: 0xB5E1,\n\t46277 - 44032: 0x8AB9,\n\t46278 - 44032: 0x8ABA,\n\t46279 - 44032: 0x8ABB,\n\t46280 - 44032: 0xB5E2,\n\t46281 - 44032: 0x8ABC,\n\t46282 - 44032: 0x8ABD,\n\t46283 - 44032: 0x8ABE,\n\t46284 - 44032: 0x8ABF,\n\t46285 - 44032: 0x8AC0,\n\t46286 - 44032: 0x8AC1,\n\t46287 - 44032: 0x8AC2,\n\t46288 - 44032: 0xB5E3,\n\t46289 - 44032: 0x8AC3,\n\t46290 - 44032: 0x8AC4,\n\t46291 - 44032: 0x8AC5,\n\t46292 - 44032: 0x8AC6,\n\t46293 - 44032: 0xB5E4,\n\t46294 - 44032: 0x8AC7,\n\t46295 - 44032: 0x8AC8,\n\t46296 - 44032: 0x8AC9,\n\t46297 - 44032: 0x8ACA,\n\t46298 - 44032: 0x8ACB,\n\t46299 - 44032: 0x8ACC,\n\t46300 - 44032: 0xB5E5,\n\t46301 - 44032: 0xB5E6,\n\t46302 - 44032: 0x8ACD,\n\t46303 - 44032: 0x8ACE,\n\t46304 - 44032: 0xB5E7,\n\t46305 - 44032: 0x8ACF,\n\t46306 - 44032: 0x8AD0,\n\t46307 - 44032: 0xB5E8,\n\t46308 - 44032: 0xB5E9,\n\t46309 - 44032: 0x8AD1,\n\t46310 - 44032: 0xB5EA,\n\t46311 - 44032: 0x8AD2,\n\t46312 - 44032: 0x8AD3,\n\t46313 - 44032: 0x8AD4,\n\t46314 - 44032: 0x8AD5,\n\t46315 - 44032: 0x8AD6,\n\t46316 - 44032: 0xB5EB,\n\t46317 - 44032: 0xB5EC,\n\t46318 - 44032: 0x8AD7,\n\t46319 - 44032: 0xB5ED,\n\t46320 - 44032: 0x8AD8,\n\t46321 - 44032: 0xB5EE,\n\t46322 - 44032: 0x8AD9,\n\t46323 - 44032: 0x8ADA,\n\t46324 - 44032: 0x8ADB,\n\t46325 - 44032: 0x8ADC,\n\t46326 - 44032: 0x8ADD,\n\t46327 - 44032: 0x8ADE,\n\t46328 - 44032: 0xB5EF,\n\t46329 - 44032: 0x8ADF,\n\t46330 - 44032: 0x8AE0,\n\t46331 - 44032: 0x8AE1,\n\t46332 - 44032: 0x8AE2,\n\t46333 - 44032: 0x8AE3,\n\t46334 - 44032: 0x8AE4,\n\t46335 - 44032: 0x8AE5,\n\t46336 - 44032: 0x8AE6,\n\t46337 - 44032: 0x8AE7,\n\t46338 - 44032: 0x8AE8,\n\t46339 - 44032: 0x8AE9,\n\t46340 - 44032: 0x8AEA,\n\t46341 - 44032: 0x8AEB,\n\t46342 - 44032: 0x8AEC,\n\t46343 - 44032: 0x8AED,\n\t46344 - 44032: 0x8AEE,\n\t46345 - 44032: 0x8AEF,\n\t46346 - 44032: 0x8AF0,\n\t46347 - 44032: 0x8AF1,\n\t46348 - 44032: 0x8AF2,\n\t46349 - 44032: 0x8AF3,\n\t46350 - 44032: 0x8AF4,\n\t46351 - 44032: 0x8AF5,\n\t46352 - 44032: 0x8AF6,\n\t46353 - 44032: 0x8AF7,\n\t46354 - 44032: 0x8AF8,\n\t46355 - 44032: 0x8AF9,\n\t46356 - 44032: 0xB5F0,\n\t46357 - 44032: 0xB5F1,\n\t46358 - 44032: 0x8AFA,\n\t46359 - 44032: 0x8AFB,\n\t46360 - 44032: 0xB5F2,\n\t46361 - 44032: 0x8AFC,\n\t46362 - 44032: 0x8AFD,\n\t46363 - 44032: 0xB5F3,\n\t46364 - 44032: 0xB5F4,\n\t46365 - 44032: 0x8AFE,\n\t46366 - 44032: 0x8B41,\n\t46367 - 44032: 0x8B42,\n\t46368 - 44032: 0x8B43,\n\t46369 - 44032: 0x8B44,\n\t46370 - 44032: 0x8B45,\n\t46371 - 44032: 0x8B46,\n\t46372 - 44032: 0xB5F5,\n\t46373 - 44032: 0xB5F6,\n\t46374 - 44032: 0x8B47,\n\t46375 - 44032: 0xB5F7,\n\t46376 - 44032: 0xB5F8,\n\t46377 - 44032: 0xB5F9,\n\t46378 - 44032: 0xB5FA,\n\t46379 - 44032: 0x8B48,\n\t46380 - 44032: 0x8B49,\n\t46381 - 44032: 0x8B4A,\n\t46382 - 44032: 0x8B4B,\n\t46383 - 44032: 0x8B4C,\n\t46384 - 44032: 0xB5FB,\n\t46385 - 44032: 0xB5FC,\n\t46386 - 44032: 0x8B4D,\n\t46387 - 44032: 0x8B4E,\n\t46388 - 44032: 0xB5FD,\n\t46389 - 44032: 0x8B4F,\n\t46390 - 44032: 0x8B50,\n\t46391 - 44032: 0x8B51,\n\t46392 - 44032: 0xB5FE,\n\t46393 - 44032: 0x8B52,\n\t46394 - 44032: 0x8B53,\n\t46395 - 44032: 0x8B54,\n\t46396 - 44032: 0x8B55,\n\t46397 - 44032: 0x8B56,\n\t46398 - 44032: 0x8B57,\n\t46399 - 44032: 0x8B58,\n\t46400 - 44032: 0xB6A1,\n\t46401 - 44032: 0xB6A2,\n\t46402 - 44032: 0x8B59,\n\t46403 - 44032: 0xB6A3,\n\t46404 - 44032: 0xB6A4,\n\t46405 - 44032: 0xB6A5,\n\t46406 - 44032: 0x8B5A,\n\t46407 - 44032: 0x8B61,\n\t46408 - 44032: 0x8B62,\n\t46409 - 44032: 0x8B63,\n\t46410 - 44032: 0x8B64,\n\t46411 - 44032: 0xB6A6,\n\t46412 - 44032: 0xB6A7,\n\t46413 - 44032: 0xB6A8,\n\t46414 - 44032: 0x8B65,\n\t46415 - 44032: 0x8B66,\n\t46416 - 44032: 0xB6A9,\n\t46417 - 44032: 0x8B67,\n\t46418 - 44032: 0x8B68,\n\t46419 - 44032: 0x8B69,\n\t46420 - 44032: 0xB6AA,\n\t46421 - 44032: 0x8B6A,\n\t46422 - 44032: 0x8B6B,\n\t46423 - 44032: 0x8B6C,\n\t46424 - 44032: 0x8B6D,\n\t46425 - 44032: 0x8B6E,\n\t46426 - 44032: 0x8B6F,\n\t46427 - 44032: 0x8B70,\n\t46428 - 44032: 0xB6AB,\n\t46429 - 44032: 0xB6AC,\n\t46430 - 44032: 0x8B71,\n\t46431 - 44032: 0xB6AD,\n\t46432 - 44032: 0xB6AE,\n\t46433 - 44032: 0xB6AF,\n\t46434 - 44032: 0x8B72,\n\t46435 - 44032: 0x8B73,\n\t46436 - 44032: 0x8B74,\n\t46437 - 44032: 0x8B75,\n\t46438 - 44032: 0x8B76,\n\t46439 - 44032: 0x8B77,\n\t46440 - 44032: 0x8B78,\n\t46441 - 44032: 0x8B79,\n\t46442 - 44032: 0x8B7A,\n\t46443 - 44032: 0x8B81,\n\t46444 - 44032: 0x8B82,\n\t46445 - 44032: 0x8B83,\n\t46446 - 44032: 0x8B84,\n\t46447 - 44032: 0x8B85,\n\t46448 - 44032: 0x8B86,\n\t46449 - 44032: 0x8B87,\n\t46450 - 44032: 0x8B88,\n\t46451 - 44032: 0x8B89,\n\t46452 - 44032: 0x8B8A,\n\t46453 - 44032: 0x8B8B,\n\t46454 - 44032: 0x8B8C,\n\t46455 - 44032: 0x8B8D,\n\t46456 - 44032: 0x8B8E,\n\t46457 - 44032: 0x8B8F,\n\t46458 - 44032: 0x8B90,\n\t46459 - 44032: 0x8B91,\n\t46460 - 44032: 0x8B92,\n\t46461 - 44032: 0x8B93,\n\t46462 - 44032: 0x8B94,\n\t46463 - 44032: 0x8B95,\n\t46464 - 44032: 0x8B96,\n\t46465 - 44032: 0x8B97,\n\t46466 - 44032: 0x8B98,\n\t46467 - 44032: 0x8B99,\n\t46468 - 44032: 0x8B9A,\n\t46469 - 44032: 0x8B9B,\n\t46470 - 44032: 0x8B9C,\n\t46471 - 44032: 0x8B9D,\n\t46472 - 44032: 0x8B9E,\n\t46473 - 44032: 0x8B9F,\n\t46474 - 44032: 0x8BA0,\n\t46475 - 44032: 0x8BA1,\n\t46476 - 44032: 0x8BA2,\n\t46477 - 44032: 0x8BA3,\n\t46478 - 44032: 0x8BA4,\n\t46479 - 44032: 0x8BA5,\n\t46480 - 44032: 0x8BA6,\n\t46481 - 44032: 0x8BA7,\n\t46482 - 44032: 0x8BA8,\n\t46483 - 44032: 0x8BA9,\n\t46484 - 44032: 0x8BAA,\n\t46485 - 44032: 0x8BAB,\n\t46486 - 44032: 0x8BAC,\n\t46487 - 44032: 0x8BAD,\n\t46488 - 44032: 0x8BAE,\n\t46489 - 44032: 0x8BAF,\n\t46490 - 44032: 0x8BB0,\n\t46491 - 44032: 0x8BB1,\n\t46492 - 44032: 0x8BB2,\n\t46493 - 44032: 0x8BB3,\n\t46494 - 44032: 0x8BB4,\n\t46495 - 44032: 0x8BB5,\n\t46496 - 44032: 0xB6B0,\n\t46497 - 44032: 0xB6B1,\n\t46498 - 44032: 0x8BB6,\n\t46499 - 44032: 0x8BB7,\n\t46500 - 44032: 0xB6B2,\n\t46501 - 44032: 0x8BB8,\n\t46502 - 44032: 0x8BB9,\n\t46503 - 44032: 0x8BBA,\n\t46504 - 44032: 0xB6B3,\n\t46505 - 44032: 0x8BBB,\n\t46506 - 44032: 0xB6B4,\n\t46507 - 44032: 0xB6B5,\n\t46508 - 44032: 0x8BBC,\n\t46509 - 44032: 0x8BBD,\n\t46510 - 44032: 0x8BBE,\n\t46511 - 44032: 0x8BBF,\n\t46512 - 44032: 0xB6B6,\n\t46513 - 44032: 0xB6B7,\n\t46514 - 44032: 0x8BC0,\n\t46515 - 44032: 0xB6B8,\n\t46516 - 44032: 0xB6B9,\n\t46517 - 44032: 0xB6BA,\n\t46518 - 44032: 0x8BC1,\n\t46519 - 44032: 0x8BC2,\n\t46520 - 44032: 0x8BC3,\n\t46521 - 44032: 0x8BC4,\n\t46522 - 44032: 0x8BC5,\n\t46523 - 44032: 0xB6BB,\n\t46524 - 44032: 0xB6BC,\n\t46525 - 44032: 0xB6BD,\n\t46526 - 44032: 0x8BC6,\n\t46527 - 44032: 0x8BC7,\n\t46528 - 44032: 0xB6BE,\n\t46529 - 44032: 0x8BC8,\n\t46530 - 44032: 0x8BC9,\n\t46531 - 44032: 0x8BCA,\n\t46532 - 44032: 0xB6BF,\n\t46533 - 44032: 0x8BCB,\n\t46534 - 44032: 0x8BCC,\n\t46535 - 44032: 0x8BCD,\n\t46536 - 44032: 0x8BCE,\n\t46537 - 44032: 0x8BCF,\n\t46538 - 44032: 0x8BD0,\n\t46539 - 44032: 0x8BD1,\n\t46540 - 44032: 0xB6C0,\n\t46541 - 44032: 0xB6C1,\n\t46542 - 44032: 0x8BD2,\n\t46543 - 44032: 0xB6C2,\n\t46544 - 44032: 0xB6C3,\n\t46545 - 44032: 0xB6C4,\n\t46546 - 44032: 0x8BD3,\n\t46547 - 44032: 0x8BD4,\n\t46548 - 44032: 0x8BD5,\n\t46549 - 44032: 0x8BD6,\n\t46550 - 44032: 0x8BD7,\n\t46551 - 44032: 0x8BD8,\n\t46552 - 44032: 0xB6C5,\n\t46553 - 44032: 0x8BD9,\n\t46554 - 44032: 0x8BDA,\n\t46555 - 44032: 0x8BDB,\n\t46556 - 44032: 0x8BDC,\n\t46557 - 44032: 0x8BDD,\n\t46558 - 44032: 0x8BDE,\n\t46559 - 44032: 0x8BDF,\n\t46560 - 44032: 0x8BE0,\n\t46561 - 44032: 0x8BE1,\n\t46562 - 44032: 0x8BE2,\n\t46563 - 44032: 0x8BE3,\n\t46564 - 44032: 0x8BE4,\n\t46565 - 44032: 0x8BE5,\n\t46566 - 44032: 0x8BE6,\n\t46567 - 44032: 0x8BE7,\n\t46568 - 44032: 0x8BE8,\n\t46569 - 44032: 0x8BE9,\n\t46570 - 44032: 0x8BEA,\n\t46571 - 44032: 0x8BEB,\n\t46572 - 44032: 0xB6C6,\n\t46573 - 44032: 0x8BEC,\n\t46574 - 44032: 0x8BED,\n\t46575 - 44032: 0x8BEE,\n\t46576 - 44032: 0x8BEF,\n\t46577 - 44032: 0x8BF0,\n\t46578 - 44032: 0x8BF1,\n\t46579 - 44032: 0x8BF2,\n\t46580 - 44032: 0x8BF3,\n\t46581 - 44032: 0x8BF4,\n\t46582 - 44032: 0x8BF5,\n\t46583 - 44032: 0x8BF6,\n\t46584 - 44032: 0x8BF7,\n\t46585 - 44032: 0x8BF8,\n\t46586 - 44032: 0x8BF9,\n\t46587 - 44032: 0x8BFA,\n\t46588 - 44032: 0x8BFB,\n\t46589 - 44032: 0x8BFC,\n\t46590 - 44032: 0x8BFD,\n\t46591 - 44032: 0x8BFE,\n\t46592 - 44032: 0x8C41,\n\t46593 - 44032: 0x8C42,\n\t46594 - 44032: 0x8C43,\n\t46595 - 44032: 0x8C44,\n\t46596 - 44032: 0x8C45,\n\t46597 - 44032: 0x8C46,\n\t46598 - 44032: 0x8C47,\n\t46599 - 44032: 0x8C48,\n\t46600 - 44032: 0x8C49,\n\t46601 - 44032: 0x8C4A,\n\t46602 - 44032: 0x8C4B,\n\t46603 - 44032: 0x8C4C,\n\t46604 - 44032: 0x8C4D,\n\t46605 - 44032: 0x8C4E,\n\t46606 - 44032: 0x8C4F,\n\t46607 - 44032: 0x8C50,\n\t46608 - 44032: 0xB6C7,\n\t46609 - 44032: 0xB6C8,\n\t46610 - 44032: 0x8C51,\n\t46611 - 44032: 0x8C52,\n\t46612 - 44032: 0xB6C9,\n\t46613 - 44032: 0x8C53,\n\t46614 - 44032: 0x8C54,\n\t46615 - 44032: 0x8C55,\n\t46616 - 44032: 0xB6CA,\n\t46617 - 44032: 0x8C56,\n\t46618 - 44032: 0x8C57,\n\t46619 - 44032: 0x8C58,\n\t46620 - 44032: 0x8C59,\n\t46621 - 44032: 0x8C5A,\n\t46622 - 44032: 0x8C61,\n\t46623 - 44032: 0x8C62,\n\t46624 - 44032: 0x8C63,\n\t46625 - 44032: 0x8C64,\n\t46626 - 44032: 0x8C65,\n\t46627 - 44032: 0x8C66,\n\t46628 - 44032: 0x8C67,\n\t46629 - 44032: 0xB6CB,\n\t46630 - 44032: 0x8C68,\n\t46631 - 44032: 0x8C69,\n\t46632 - 44032: 0x8C6A,\n\t46633 - 44032: 0x8C6B,\n\t46634 - 44032: 0x8C6C,\n\t46635 - 44032: 0x8C6D,\n\t46636 - 44032: 0xB6CC,\n\t46637 - 44032: 0x8C6E,\n\t46638 - 44032: 0x8C6F,\n\t46639 - 44032: 0x8C70,\n\t46640 - 44032: 0x8C71,\n\t46641 - 44032: 0x8C72,\n\t46642 - 44032: 0x8C73,\n\t46643 - 44032: 0x8C74,\n\t46644 - 44032: 0xB6CD,\n\t46645 - 44032: 0x8C75,\n\t46646 - 44032: 0x8C76,\n\t46647 - 44032: 0x8C77,\n\t46648 - 44032: 0x8C78,\n\t46649 - 44032: 0x8C79,\n\t46650 - 44032: 0x8C7A,\n\t46651 - 44032: 0x8C81,\n\t46652 - 44032: 0x8C82,\n\t46653 - 44032: 0x8C83,\n\t46654 - 44032: 0x8C84,\n\t46655 - 44032: 0x8C85,\n\t46656 - 44032: 0x8C86,\n\t46657 - 44032: 0x8C87,\n\t46658 - 44032: 0x8C88,\n\t46659 - 44032: 0x8C89,\n\t46660 - 44032: 0x8C8A,\n\t46661 - 44032: 0x8C8B,\n\t46662 - 44032: 0x8C8C,\n\t46663 - 44032: 0x8C8D,\n\t46664 - 44032: 0xB6CE,\n\t46665 - 44032: 0x8C8E,\n\t46666 - 44032: 0x8C8F,\n\t46667 - 44032: 0x8C90,\n\t46668 - 44032: 0x8C91,\n\t46669 - 44032: 0x8C92,\n\t46670 - 44032: 0x8C93,\n\t46671 - 44032: 0x8C94,\n\t46672 - 44032: 0x8C95,\n\t46673 - 44032: 0x8C96,\n\t46674 - 44032: 0x8C97,\n\t46675 - 44032: 0x8C98,\n\t46676 - 44032: 0x8C99,\n\t46677 - 44032: 0x8C9A,\n\t46678 - 44032: 0x8C9B,\n\t46679 - 44032: 0x8C9C,\n\t46680 - 44032: 0x8C9D,\n\t46681 - 44032: 0x8C9E,\n\t46682 - 44032: 0x8C9F,\n\t46683 - 44032: 0x8CA0,\n\t46684 - 44032: 0x8CA1,\n\t46685 - 44032: 0x8CA2,\n\t46686 - 44032: 0x8CA3,\n\t46687 - 44032: 0x8CA4,\n\t46688 - 44032: 0x8CA5,\n\t46689 - 44032: 0x8CA6,\n\t46690 - 44032: 0x8CA7,\n\t46691 - 44032: 0x8CA8,\n\t46692 - 44032: 0xB6CF,\n\t46693 - 44032: 0x8CA9,\n\t46694 - 44032: 0x8CAA,\n\t46695 - 44032: 0x8CAB,\n\t46696 - 44032: 0xB6D0,\n\t46697 - 44032: 0x8CAC,\n\t46698 - 44032: 0x8CAD,\n\t46699 - 44032: 0x8CAE,\n\t46700 - 44032: 0x8CAF,\n\t46701 - 44032: 0x8CB0,\n\t46702 - 44032: 0x8CB1,\n\t46703 - 44032: 0x8CB2,\n\t46704 - 44032: 0x8CB3,\n\t46705 - 44032: 0x8CB4,\n\t46706 - 44032: 0x8CB5,\n\t46707 - 44032: 0x8CB6,\n\t46708 - 44032: 0x8CB7,\n\t46709 - 44032: 0x8CB8,\n\t46710 - 44032: 0x8CB9,\n\t46711 - 44032: 0x8CBA,\n\t46712 - 44032: 0x8CBB,\n\t46713 - 44032: 0x8CBC,\n\t46714 - 44032: 0x8CBD,\n\t46715 - 44032: 0x8CBE,\n\t46716 - 44032: 0x8CBF,\n\t46717 - 44032: 0x8CC0,\n\t46718 - 44032: 0x8CC1,\n\t46719 - 44032: 0x8CC2,\n\t46720 - 44032: 0x8CC3,\n\t46721 - 44032: 0x8CC4,\n\t46722 - 44032: 0x8CC5,\n\t46723 - 44032: 0x8CC6,\n\t46724 - 44032: 0x8CC7,\n\t46725 - 44032: 0x8CC8,\n\t46726 - 44032: 0x8CC9,\n\t46727 - 44032: 0x8CCA,\n\t46728 - 44032: 0x8CCB,\n\t46729 - 44032: 0x8CCC,\n\t46730 - 44032: 0x8CCD,\n\t46731 - 44032: 0x8CCE,\n\t46732 - 44032: 0x8CCF,\n\t46733 - 44032: 0x8CD0,\n\t46734 - 44032: 0x8CD1,\n\t46735 - 44032: 0x8CD2,\n\t46736 - 44032: 0x8CD3,\n\t46737 - 44032: 0x8CD4,\n\t46738 - 44032: 0x8CD5,\n\t46739 - 44032: 0x8CD6,\n\t46740 - 44032: 0x8CD7,\n\t46741 - 44032: 0x8CD8,\n\t46742 - 44032: 0x8CD9,\n\t46743 - 44032: 0x8CDA,\n\t46744 - 44032: 0x8CDB,\n\t46745 - 44032: 0x8CDC,\n\t46746 - 44032: 0x8CDD,\n\t46747 - 44032: 0x8CDE,\n\t46748 - 44032: 0xB6D1,\n\t46749 - 44032: 0xB6D2,\n\t46750 - 44032: 0x8CDF,\n\t46751 - 44032: 0x8CE0,\n\t46752 - 44032: 0xB6D3,\n\t46753 - 44032: 0x8CE1,\n\t46754 - 44032: 0x8CE2,\n\t46755 - 44032: 0x8CE3,\n\t46756 - 44032: 0xB6D4,\n\t46757 - 44032: 0x8CE4,\n\t46758 - 44032: 0x8CE5,\n\t46759 - 44032: 0x8CE6,\n\t46760 - 44032: 0x8CE7,\n\t46761 - 44032: 0x8CE8,\n\t46762 - 44032: 0x8CE9,\n\t46763 - 44032: 0xB6D5,\n\t46764 - 44032: 0xB6D6,\n\t46765 - 44032: 0x8CEA,\n\t46766 - 44032: 0x8CEB,\n\t46767 - 44032: 0x8CEC,\n\t46768 - 44032: 0x8CED,\n\t46769 - 44032: 0xB6D7,\n\t46770 - 44032: 0x8CEE,\n\t46771 - 44032: 0x8CEF,\n\t46772 - 44032: 0x8CF0,\n\t46773 - 44032: 0x8CF1,\n\t46774 - 44032: 0x8CF2,\n\t46775 - 44032: 0x8CF3,\n\t46776 - 44032: 0x8CF4,\n\t46777 - 44032: 0x8CF5,\n\t46778 - 44032: 0x8CF6,\n\t46779 - 44032: 0x8CF7,\n\t46780 - 44032: 0x8CF8,\n\t46781 - 44032: 0x8CF9,\n\t46782 - 44032: 0x8CFA,\n\t46783 - 44032: 0x8CFB,\n\t46784 - 44032: 0x8CFC,\n\t46785 - 44032: 0x8CFD,\n\t46786 - 44032: 0x8CFE,\n\t46787 - 44032: 0x8D41,\n\t46788 - 44032: 0x8D42,\n\t46789 - 44032: 0x8D43,\n\t46790 - 44032: 0x8D44,\n\t46791 - 44032: 0x8D45,\n\t46792 - 44032: 0x8D46,\n\t46793 - 44032: 0x8D47,\n\t46794 - 44032: 0x8D48,\n\t46795 - 44032: 0x8D49,\n\t46796 - 44032: 0x8D4A,\n\t46797 - 44032: 0x8D4B,\n\t46798 - 44032: 0x8D4C,\n\t46799 - 44032: 0x8D4D,\n\t46800 - 44032: 0x8D4E,\n\t46801 - 44032: 0x8D4F,\n\t46802 - 44032: 0x8D50,\n\t46803 - 44032: 0x8D51,\n\t46804 - 44032: 0xB6D8,\n\t46805 - 44032: 0x8D52,\n\t46806 - 44032: 0x8D53,\n\t46807 - 44032: 0x8D54,\n\t46808 - 44032: 0x8D55,\n\t46809 - 44032: 0x8D56,\n\t46810 - 44032: 0x8D57,\n\t46811 - 44032: 0x8D58,\n\t46812 - 44032: 0x8D59,\n\t46813 - 44032: 0x8D5A,\n\t46814 - 44032: 0x8D61,\n\t46815 - 44032: 0x8D62,\n\t46816 - 44032: 0x8D63,\n\t46817 - 44032: 0x8D64,\n\t46818 - 44032: 0x8D65,\n\t46819 - 44032: 0x8D66,\n\t46820 - 44032: 0x8D67,\n\t46821 - 44032: 0x8D68,\n\t46822 - 44032: 0x8D69,\n\t46823 - 44032: 0x8D6A,\n\t46824 - 44032: 0x8D6B,\n\t46825 - 44032: 0x8D6C,\n\t46826 - 44032: 0x8D6D,\n\t46827 - 44032: 0x8D6E,\n\t46828 - 44032: 0x8D6F,\n\t46829 - 44032: 0x8D70,\n\t46830 - 44032: 0x8D71,\n\t46831 - 44032: 0x8D72,\n\t46832 - 44032: 0xB6D9,\n\t46833 - 44032: 0x8D73,\n\t46834 - 44032: 0x8D74,\n\t46835 - 44032: 0x8D75,\n\t46836 - 44032: 0xB6DA,\n\t46837 - 44032: 0x8D76,\n\t46838 - 44032: 0x8D77,\n\t46839 - 44032: 0x8D78,\n\t46840 - 44032: 0xB6DB,\n\t46841 - 44032: 0x8D79,\n\t46842 - 44032: 0x8D7A,\n\t46843 - 44032: 0x8D81,\n\t46844 - 44032: 0x8D82,\n\t46845 - 44032: 0x8D83,\n\t46846 - 44032: 0x8D84,\n\t46847 - 44032: 0x8D85,\n\t46848 - 44032: 0xB6DC,\n\t46849 - 44032: 0xB6DD,\n\t46850 - 44032: 0x8D86,\n\t46851 - 44032: 0x8D87,\n\t46852 - 44032: 0x8D88,\n\t46853 - 44032: 0xB6DE,\n\t46854 - 44032: 0x8D89,\n\t46855 - 44032: 0x8D8A,\n\t46856 - 44032: 0x8D8B,\n\t46857 - 44032: 0x8D8C,\n\t46858 - 44032: 0x8D8D,\n\t46859 - 44032: 0x8D8E,\n\t46860 - 44032: 0x8D8F,\n\t46861 - 44032: 0x8D90,\n\t46862 - 44032: 0x8D91,\n\t46863 - 44032: 0x8D92,\n\t46864 - 44032: 0x8D93,\n\t46865 - 44032: 0x8D94,\n\t46866 - 44032: 0x8D95,\n\t46867 - 44032: 0x8D96,\n\t46868 - 44032: 0x8D97,\n\t46869 - 44032: 0x8D98,\n\t46870 - 44032: 0x8D99,\n\t46871 - 44032: 0x8D9A,\n\t46872 - 44032: 0x8D9B,\n\t46873 - 44032: 0x8D9C,\n\t46874 - 44032: 0x8D9D,\n\t46875 - 44032: 0x8D9E,\n\t46876 - 44032: 0x8D9F,\n\t46877 - 44032: 0x8DA0,\n\t46878 - 44032: 0x8DA1,\n\t46879 - 44032: 0x8DA2,\n\t46880 - 44032: 0x8DA3,\n\t46881 - 44032: 0x8DA4,\n\t46882 - 44032: 0x8DA5,\n\t46883 - 44032: 0x8DA6,\n\t46884 - 44032: 0x8DA7,\n\t46885 - 44032: 0x8DA8,\n\t46886 - 44032: 0x8DA9,\n\t46887 - 44032: 0x8DAA,\n\t46888 - 44032: 0xB6DF,\n\t46889 - 44032: 0xB6E0,\n\t46890 - 44032: 0x8DAB,\n\t46891 - 44032: 0x8DAC,\n\t46892 - 44032: 0xB6E1,\n\t46893 - 44032: 0x8DAD,\n\t46894 - 44032: 0x8DAE,\n\t46895 - 44032: 0xB6E2,\n\t46896 - 44032: 0xB6E3,\n\t46897 - 44032: 0x8DAF,\n\t46898 - 44032: 0x8DB0,\n\t46899 - 44032: 0x8DB1,\n\t46900 - 44032: 0x8DB2,\n\t46901 - 44032: 0x8DB3,\n\t46902 - 44032: 0x8DB4,\n\t46903 - 44032: 0x8DB5,\n\t46904 - 44032: 0xB6E4,\n\t46905 - 44032: 0xB6E5,\n\t46906 - 44032: 0x8DB6,\n\t46907 - 44032: 0xB6E6,\n\t46908 - 44032: 0x8DB7,\n\t46909 - 44032: 0x8DB8,\n\t46910 - 44032: 0x8DB9,\n\t46911 - 44032: 0x8DBA,\n\t46912 - 44032: 0x8DBB,\n\t46913 - 44032: 0x8DBC,\n\t46914 - 44032: 0x8DBD,\n\t46915 - 44032: 0x8DBE,\n\t46916 - 44032: 0xB6E7,\n\t46917 - 44032: 0x8DBF,\n\t46918 - 44032: 0x8DC0,\n\t46919 - 44032: 0x8DC1,\n\t46920 - 44032: 0xB6E8,\n\t46921 - 44032: 0x8DC2,\n\t46922 - 44032: 0x8DC3,\n\t46923 - 44032: 0x8DC4,\n\t46924 - 44032: 0xB6E9,\n\t46925 - 44032: 0x8DC5,\n\t46926 - 44032: 0x8DC6,\n\t46927 - 44032: 0x8DC7,\n\t46928 - 44032: 0x8DC8,\n\t46929 - 44032: 0x8DC9,\n\t46930 - 44032: 0x8DCA,\n\t46931 - 44032: 0x8DCB,\n\t46932 - 44032: 0xB6EA,\n\t46933 - 44032: 0xB6EB,\n\t46934 - 44032: 0x8DCC,\n\t46935 - 44032: 0x8DCD,\n\t46936 - 44032: 0x8DCE,\n\t46937 - 44032: 0x8DCF,\n\t46938 - 44032: 0x8DD0,\n\t46939 - 44032: 0x8DD1,\n\t46940 - 44032: 0x8DD2,\n\t46941 - 44032: 0x8DD3,\n\t46942 - 44032: 0x8DD4,\n\t46943 - 44032: 0x8DD5,\n\t46944 - 44032: 0xB6EC,\n\t46945 - 44032: 0x8DD6,\n\t46946 - 44032: 0x8DD7,\n\t46947 - 44032: 0x8DD8,\n\t46948 - 44032: 0xB6ED,\n\t46949 - 44032: 0x8DD9,\n\t46950 - 44032: 0x8DDA,\n\t46951 - 44032: 0x8DDB,\n\t46952 - 44032: 0xB6EE,\n\t46953 - 44032: 0x8DDC,\n\t46954 - 44032: 0x8DDD,\n\t46955 - 44032: 0x8DDE,\n\t46956 - 44032: 0x8DDF,\n\t46957 - 44032: 0x8DE0,\n\t46958 - 44032: 0x8DE1,\n\t46959 - 44032: 0x8DE2,\n\t46960 - 44032: 0xB6EF,\n\t46961 - 44032: 0xB6F0,\n\t46962 - 44032: 0x8DE3,\n\t46963 - 44032: 0xB6F1,\n\t46964 - 44032: 0x8DE4,\n\t46965 - 44032: 0xB6F2,\n\t46966 - 44032: 0x8DE5,\n\t46967 - 44032: 0x8DE6,\n\t46968 - 44032: 0x8DE7,\n\t46969 - 44032: 0x8DE8,\n\t46970 - 44032: 0x8DE9,\n\t46971 - 44032: 0x8DEA,\n\t46972 - 44032: 0xB6F3,\n\t46973 - 44032: 0xB6F4,\n\t46974 - 44032: 0x8DEB,\n\t46975 - 44032: 0x8DEC,\n\t46976 - 44032: 0xB6F5,\n\t46977 - 44032: 0x8DED,\n\t46978 - 44032: 0x8DEE,\n\t46979 - 44032: 0x8DEF,\n\t46980 - 44032: 0xB6F6,\n\t46981 - 44032: 0x8DF0,\n\t46982 - 44032: 0x8DF1,\n\t46983 - 44032: 0x8DF2,\n\t46984 - 44032: 0x8DF3,\n\t46985 - 44032: 0x8DF4,\n\t46986 - 44032: 0x8DF5,\n\t46987 - 44032: 0x8DF6,\n\t46988 - 44032: 0xB6F7,\n\t46989 - 44032: 0xB6F8,\n\t46990 - 44032: 0x8DF7,\n\t46991 - 44032: 0xB6F9,\n\t46992 - 44032: 0xB6FA,\n\t46993 - 44032: 0xB6FB,\n\t46994 - 44032: 0xB6FC,\n\t46995 - 44032: 0x8DF8,\n\t46996 - 44032: 0x8DF9,\n\t46997 - 44032: 0x8DFA,\n\t46998 - 44032: 0xB6FD,\n\t46999 - 44032: 0xB6FE,\n\t47000 - 44032: 0xB7A1,\n\t47001 - 44032: 0xB7A2,\n\t47002 - 44032: 0x8DFB,\n\t47003 - 44032: 0x8DFC,\n\t47004 - 44032: 0xB7A3,\n\t47005 - 44032: 0x8DFD,\n\t47006 - 44032: 0x8DFE,\n\t47007 - 44032: 0x8E41,\n\t47008 - 44032: 0xB7A4,\n\t47009 - 44032: 0x8E42,\n\t47010 - 44032: 0x8E43,\n\t47011 - 44032: 0x8E44,\n\t47012 - 44032: 0x8E45,\n\t47013 - 44032: 0x8E46,\n\t47014 - 44032: 0x8E47,\n\t47015 - 44032: 0x8E48,\n\t47016 - 44032: 0xB7A5,\n\t47017 - 44032: 0xB7A6,\n\t47018 - 44032: 0x8E49,\n\t47019 - 44032: 0xB7A7,\n\t47020 - 44032: 0xB7A8,\n\t47021 - 44032: 0xB7A9,\n\t47022 - 44032: 0x8E4A,\n\t47023 - 44032: 0x8E4B,\n\t47024 - 44032: 0x8E4C,\n\t47025 - 44032: 0x8E4D,\n\t47026 - 44032: 0x8E4E,\n\t47027 - 44032: 0x8E4F,\n\t47028 - 44032: 0xB7AA,\n\t47029 - 44032: 0xB7AB,\n\t47030 - 44032: 0x8E50,\n\t47031 - 44032: 0x8E51,\n\t47032 - 44032: 0xB7AC,\n\t47033 - 44032: 0x8E52,\n\t47034 - 44032: 0x8E53,\n\t47035 - 44032: 0x8E54,\n\t47036 - 44032: 0x8E55,\n\t47037 - 44032: 0x8E56,\n\t47038 - 44032: 0x8E57,\n\t47039 - 44032: 0x8E58,\n\t47040 - 44032: 0x8E59,\n\t47041 - 44032: 0x8E5A,\n\t47042 - 44032: 0x8E61,\n\t47043 - 44032: 0x8E62,\n\t47044 - 44032: 0x8E63,\n\t47045 - 44032: 0x8E64,\n\t47046 - 44032: 0x8E65,\n\t47047 - 44032: 0xB7AD,\n\t47048 - 44032: 0x8E66,\n\t47049 - 44032: 0xB7AE,\n\t47050 - 44032: 0x8E67,\n\t47051 - 44032: 0x8E68,\n\t47052 - 44032: 0x8E69,\n\t47053 - 44032: 0x8E6A,\n\t47054 - 44032: 0x8E6B,\n\t47055 - 44032: 0x8E6C,\n\t47056 - 44032: 0x8E6D,\n\t47057 - 44032: 0x8E6E,\n\t47058 - 44032: 0x8E6F,\n\t47059 - 44032: 0x8E70,\n\t47060 - 44032: 0x8E71,\n\t47061 - 44032: 0x8E72,\n\t47062 - 44032: 0x8E73,\n\t47063 - 44032: 0x8E74,\n\t47064 - 44032: 0x8E75,\n\t47065 - 44032: 0x8E76,\n\t47066 - 44032: 0x8E77,\n\t47067 - 44032: 0x8E78,\n\t47068 - 44032: 0x8E79,\n\t47069 - 44032: 0x8E7A,\n\t47070 - 44032: 0x8E81,\n\t47071 - 44032: 0x8E82,\n\t47072 - 44032: 0x8E83,\n\t47073 - 44032: 0x8E84,\n\t47074 - 44032: 0x8E85,\n\t47075 - 44032: 0x8E86,\n\t47076 - 44032: 0x8E87,\n\t47077 - 44032: 0x8E88,\n\t47078 - 44032: 0x8E89,\n\t47079 - 44032: 0x8E8A,\n\t47080 - 44032: 0x8E8B,\n\t47081 - 44032: 0x8E8C,\n\t47082 - 44032: 0x8E8D,\n\t47083 - 44032: 0x8E8E,\n\t47084 - 44032: 0xB7AF,\n\t47085 - 44032: 0xB7B0,\n\t47086 - 44032: 0x8E8F,\n\t47087 - 44032: 0x8E90,\n\t47088 - 44032: 0xB7B1,\n\t47089 - 44032: 0x8E91,\n\t47090 - 44032: 0x8E92,\n\t47091 - 44032: 0x8E93,\n\t47092 - 44032: 0xB7B2,\n\t47093 - 44032: 0x8E94,\n\t47094 - 44032: 0x8E95,\n\t47095 - 44032: 0x8E96,\n\t47096 - 44032: 0x8E97,\n\t47097 - 44032: 0x8E98,\n\t47098 - 44032: 0x8E99,\n\t47099 - 44032: 0x8E9A,\n\t47100 - 44032: 0xB7B3,\n\t47101 - 44032: 0xB7B4,\n\t47102 - 44032: 0x8E9B,\n\t47103 - 44032: 0xB7B5,\n\t47104 - 44032: 0xB7B6,\n\t47105 - 44032: 0xB7B7,\n\t47106 - 44032: 0x8E9C,\n\t47107 - 44032: 0x8E9D,\n\t47108 - 44032: 0x8E9E,\n\t47109 - 44032: 0x8E9F,\n\t47110 - 44032: 0x8EA0,\n\t47111 - 44032: 0xB7B8,\n\t47112 - 44032: 0xB7B9,\n\t47113 - 44032: 0xB7BA,\n\t47114 - 44032: 0x8EA1,\n\t47115 - 44032: 0x8EA2,\n\t47116 - 44032: 0xB7BB,\n\t47117 - 44032: 0x8EA3,\n\t47118 - 44032: 0x8EA4,\n\t47119 - 44032: 0x8EA5,\n\t47120 - 44032: 0xB7BC,\n\t47121 - 44032: 0x8EA6,\n\t47122 - 44032: 0x8EA7,\n\t47123 - 44032: 0x8EA8,\n\t47124 - 44032: 0x8EA9,\n\t47125 - 44032: 0x8EAA,\n\t47126 - 44032: 0x8EAB,\n\t47127 - 44032: 0x8EAC,\n\t47128 - 44032: 0xB7BD,\n\t47129 - 44032: 0xB7BE,\n\t47130 - 44032: 0x8EAD,\n\t47131 - 44032: 0xB7BF,\n\t47132 - 44032: 0x8EAE,\n\t47133 - 44032: 0xB7C0,\n\t47134 - 44032: 0x8EAF,\n\t47135 - 44032: 0x8EB0,\n\t47136 - 44032: 0x8EB1,\n\t47137 - 44032: 0x8EB2,\n\t47138 - 44032: 0x8EB3,\n\t47139 - 44032: 0x8EB4,\n\t47140 - 44032: 0xB7C1,\n\t47141 - 44032: 0xB7C2,\n\t47142 - 44032: 0x8EB5,\n\t47143 - 44032: 0x8EB6,\n\t47144 - 44032: 0xB7C3,\n\t47145 - 44032: 0x8EB7,\n\t47146 - 44032: 0x8EB8,\n\t47147 - 44032: 0x8EB9,\n\t47148 - 44032: 0xB7C4,\n\t47149 - 44032: 0x8EBA,\n\t47150 - 44032: 0x8EBB,\n\t47151 - 44032: 0x8EBC,\n\t47152 - 44032: 0x8EBD,\n\t47153 - 44032: 0x8EBE,\n\t47154 - 44032: 0x8EBF,\n\t47155 - 44032: 0x8EC0,\n\t47156 - 44032: 0xB7C5,\n\t47157 - 44032: 0xB7C6,\n\t47158 - 44032: 0x8EC1,\n\t47159 - 44032: 0xB7C7,\n\t47160 - 44032: 0xB7C8,\n\t47161 - 44032: 0xB7C9,\n\t47162 - 44032: 0x8EC2,\n\t47163 - 44032: 0x8EC3,\n\t47164 - 44032: 0x8EC4,\n\t47165 - 44032: 0x8EC5,\n\t47166 - 44032: 0x8EC6,\n\t47167 - 44032: 0x8EC7,\n\t47168 - 44032: 0xB7CA,\n\t47169 - 44032: 0x8EC8,\n\t47170 - 44032: 0x8EC9,\n\t47171 - 44032: 0x8ECA,\n\t47172 - 44032: 0xB7CB,\n\t47173 - 44032: 0x8ECB,\n\t47174 - 44032: 0x8ECC,\n\t47175 - 44032: 0x8ECD,\n\t47176 - 44032: 0x8ECE,\n\t47177 - 44032: 0x8ECF,\n\t47178 - 44032: 0x8ED0,\n\t47179 - 44032: 0x8ED1,\n\t47180 - 44032: 0x8ED2,\n\t47181 - 44032: 0x8ED3,\n\t47182 - 44032: 0x8ED4,\n\t47183 - 44032: 0x8ED5,\n\t47184 - 44032: 0x8ED6,\n\t47185 - 44032: 0xB7CC,\n\t47186 - 44032: 0x8ED7,\n\t47187 - 44032: 0xB7CD,\n\t47188 - 44032: 0x8ED8,\n\t47189 - 44032: 0x8ED9,\n\t47190 - 44032: 0x8EDA,\n\t47191 - 44032: 0x8EDB,\n\t47192 - 44032: 0x8EDC,\n\t47193 - 44032: 0x8EDD,\n\t47194 - 44032: 0x8EDE,\n\t47195 - 44032: 0x8EDF,\n\t47196 - 44032: 0xB7CE,\n\t47197 - 44032: 0xB7CF,\n\t47198 - 44032: 0x8EE0,\n\t47199 - 44032: 0x8EE1,\n\t47200 - 44032: 0xB7D0,\n\t47201 - 44032: 0x8EE2,\n\t47202 - 44032: 0x8EE3,\n\t47203 - 44032: 0x8EE4,\n\t47204 - 44032: 0xB7D1,\n\t47205 - 44032: 0x8EE5,\n\t47206 - 44032: 0x8EE6,\n\t47207 - 44032: 0x8EE7,\n\t47208 - 44032: 0x8EE8,\n\t47209 - 44032: 0x8EE9,\n\t47210 - 44032: 0x8EEA,\n\t47211 - 44032: 0x8EEB,\n\t47212 - 44032: 0xB7D2,\n\t47213 - 44032: 0xB7D3,\n\t47214 - 44032: 0x8EEC,\n\t47215 - 44032: 0xB7D4,\n\t47216 - 44032: 0x8EED,\n\t47217 - 44032: 0xB7D5,\n\t47218 - 44032: 0x8EEE,\n\t47219 - 44032: 0x8EEF,\n\t47220 - 44032: 0x8EF0,\n\t47221 - 44032: 0x8EF1,\n\t47222 - 44032: 0x8EF2,\n\t47223 - 44032: 0x8EF3,\n\t47224 - 44032: 0xB7D6,\n\t47225 - 44032: 0x8EF4,\n\t47226 - 44032: 0x8EF5,\n\t47227 - 44032: 0x8EF6,\n\t47228 - 44032: 0xB7D7,\n\t47229 - 44032: 0x8EF7,\n\t47230 - 44032: 0x8EF8,\n\t47231 - 44032: 0x8EF9,\n\t47232 - 44032: 0x8EFA,\n\t47233 - 44032: 0x8EFB,\n\t47234 - 44032: 0x8EFC,\n\t47235 - 44032: 0x8EFD,\n\t47236 - 44032: 0x8EFE,\n\t47237 - 44032: 0x8F41,\n\t47238 - 44032: 0x8F42,\n\t47239 - 44032: 0x8F43,\n\t47240 - 44032: 0x8F44,\n\t47241 - 44032: 0x8F45,\n\t47242 - 44032: 0x8F46,\n\t47243 - 44032: 0x8F47,\n\t47244 - 44032: 0x8F48,\n\t47245 - 44032: 0xB7D8,\n\t47246 - 44032: 0x8F49,\n\t47247 - 44032: 0x8F4A,\n\t47248 - 44032: 0x8F4B,\n\t47249 - 44032: 0x8F4C,\n\t47250 - 44032: 0x8F4D,\n\t47251 - 44032: 0x8F4E,\n\t47252 - 44032: 0x8F4F,\n\t47253 - 44032: 0x8F50,\n\t47254 - 44032: 0x8F51,\n\t47255 - 44032: 0x8F52,\n\t47256 - 44032: 0x8F53,\n\t47257 - 44032: 0x8F54,\n\t47258 - 44032: 0x8F55,\n\t47259 - 44032: 0x8F56,\n\t47260 - 44032: 0x8F57,\n\t47261 - 44032: 0x8F58,\n\t47262 - 44032: 0x8F59,\n\t47263 - 44032: 0x8F5A,\n\t47264 - 44032: 0x8F61,\n\t47265 - 44032: 0x8F62,\n\t47266 - 44032: 0x8F63,\n\t47267 - 44032: 0x8F64,\n\t47268 - 44032: 0x8F65,\n\t47269 - 44032: 0x8F66,\n\t47270 - 44032: 0x8F67,\n\t47271 - 44032: 0x8F68,\n\t47272 - 44032: 0xB7D9,\n\t47273 - 44032: 0x8F69,\n\t47274 - 44032: 0x8F6A,\n\t47275 - 44032: 0x8F6B,\n\t47276 - 44032: 0x8F6C,\n\t47277 - 44032: 0x8F6D,\n\t47278 - 44032: 0x8F6E,\n\t47279 - 44032: 0x8F6F,\n\t47280 - 44032: 0xB7DA,\n\t47281 - 44032: 0x8F70,\n\t47282 - 44032: 0x8F71,\n\t47283 - 44032: 0x8F72,\n\t47284 - 44032: 0xB7DB,\n\t47285 - 44032: 0x8F73,\n\t47286 - 44032: 0x8F74,\n\t47287 - 44032: 0x8F75,\n\t47288 - 44032: 0xB7DC,\n\t47289 - 44032: 0x8F76,\n\t47290 - 44032: 0x8F77,\n\t47291 - 44032: 0x8F78,\n\t47292 - 44032: 0x8F79,\n\t47293 - 44032: 0x8F7A,\n\t47294 - 44032: 0x8F81,\n\t47295 - 44032: 0x8F82,\n\t47296 - 44032: 0xB7DD,\n\t47297 - 44032: 0xB7DE,\n\t47298 - 44032: 0x8F83,\n\t47299 - 44032: 0xB7DF,\n\t47300 - 44032: 0x8F84,\n\t47301 - 44032: 0xB7E0,\n\t47302 - 44032: 0x8F85,\n\t47303 - 44032: 0x8F86,\n\t47304 - 44032: 0x8F87,\n\t47305 - 44032: 0x8F88,\n\t47306 - 44032: 0x8F89,\n\t47307 - 44032: 0x8F8A,\n\t47308 - 44032: 0xB7E1,\n\t47309 - 44032: 0x8F8B,\n\t47310 - 44032: 0x8F8C,\n\t47311 - 44032: 0x8F8D,\n\t47312 - 44032: 0xB7E2,\n\t47313 - 44032: 0x8F8E,\n\t47314 - 44032: 0x8F8F,\n\t47315 - 44032: 0x8F90,\n\t47316 - 44032: 0xB7E3,\n\t47317 - 44032: 0x8F91,\n\t47318 - 44032: 0x8F92,\n\t47319 - 44032: 0x8F93,\n\t47320 - 44032: 0x8F94,\n\t47321 - 44032: 0x8F95,\n\t47322 - 44032: 0x8F96,\n\t47323 - 44032: 0x8F97,\n\t47324 - 44032: 0x8F98,\n\t47325 - 44032: 0xB7E4,\n\t47326 - 44032: 0x8F99,\n\t47327 - 44032: 0xB7E5,\n\t47328 - 44032: 0x8F9A,\n\t47329 - 44032: 0xB7E6,\n\t47330 - 44032: 0x8F9B,\n\t47331 - 44032: 0x8F9C,\n\t47332 - 44032: 0x8F9D,\n\t47333 - 44032: 0x8F9E,\n\t47334 - 44032: 0x8F9F,\n\t47335 - 44032: 0x8FA0,\n\t47336 - 44032: 0xB7E7,\n\t47337 - 44032: 0xB7E8,\n\t47338 - 44032: 0x8FA1,\n\t47339 - 44032: 0x8FA2,\n\t47340 - 44032: 0xB7E9,\n\t47341 - 44032: 0x8FA3,\n\t47342 - 44032: 0x8FA4,\n\t47343 - 44032: 0x8FA5,\n\t47344 - 44032: 0xB7EA,\n\t47345 - 44032: 0x8FA6,\n\t47346 - 44032: 0x8FA7,\n\t47347 - 44032: 0x8FA8,\n\t47348 - 44032: 0x8FA9,\n\t47349 - 44032: 0x8FAA,\n\t47350 - 44032: 0x8FAB,\n\t47351 - 44032: 0x8FAC,\n\t47352 - 44032: 0xB7EB,\n\t47353 - 44032: 0xB7EC,\n\t47354 - 44032: 0x8FAD,\n\t47355 - 44032: 0xB7ED,\n\t47356 - 44032: 0x8FAE,\n\t47357 - 44032: 0xB7EE,\n\t47358 - 44032: 0x8FAF,\n\t47359 - 44032: 0x8FB0,\n\t47360 - 44032: 0x8FB1,\n\t47361 - 44032: 0x8FB2,\n\t47362 - 44032: 0x8FB3,\n\t47363 - 44032: 0x8FB4,\n\t47364 - 44032: 0xB7EF,\n\t47365 - 44032: 0x8FB5,\n\t47366 - 44032: 0x8FB6,\n\t47367 - 44032: 0x8FB7,\n\t47368 - 44032: 0x8FB8,\n\t47369 - 44032: 0x8FB9,\n\t47370 - 44032: 0x8FBA,\n\t47371 - 44032: 0x8FBB,\n\t47372 - 44032: 0x8FBC,\n\t47373 - 44032: 0x8FBD,\n\t47374 - 44032: 0x8FBE,\n\t47375 - 44032: 0x8FBF,\n\t47376 - 44032: 0x8FC0,\n\t47377 - 44032: 0x8FC1,\n\t47378 - 44032: 0x8FC2,\n\t47379 - 44032: 0x8FC3,\n\t47380 - 44032: 0x8FC4,\n\t47381 - 44032: 0x8FC5,\n\t47382 - 44032: 0x8FC6,\n\t47383 - 44032: 0x8FC7,\n\t47384 - 44032: 0xB7F0,\n\t47385 - 44032: 0x8FC8,\n\t47386 - 44032: 0x8FC9,\n\t47387 - 44032: 0x8FCA,\n\t47388 - 44032: 0x8FCB,\n\t47389 - 44032: 0x8FCC,\n\t47390 - 44032: 0x8FCD,\n\t47391 - 44032: 0x8FCE,\n\t47392 - 44032: 0xB7F1,\n\t47393 - 44032: 0x8FCF,\n\t47394 - 44032: 0x8FD0,\n\t47395 - 44032: 0x8FD1,\n\t47396 - 44032: 0x8FD2,\n\t47397 - 44032: 0x8FD3,\n\t47398 - 44032: 0x8FD4,\n\t47399 - 44032: 0x8FD5,\n\t47400 - 44032: 0x8FD6,\n\t47401 - 44032: 0x8FD7,\n\t47402 - 44032: 0x8FD8,\n\t47403 - 44032: 0x8FD9,\n\t47404 - 44032: 0x8FDA,\n\t47405 - 44032: 0x8FDB,\n\t47406 - 44032: 0x8FDC,\n\t47407 - 44032: 0x8FDD,\n\t47408 - 44032: 0x8FDE,\n\t47409 - 44032: 0x8FDF,\n\t47410 - 44032: 0x8FE0,\n\t47411 - 44032: 0x8FE1,\n\t47412 - 44032: 0x8FE2,\n\t47413 - 44032: 0x8FE3,\n\t47414 - 44032: 0x8FE4,\n\t47415 - 44032: 0x8FE5,\n\t47416 - 44032: 0x8FE6,\n\t47417 - 44032: 0x8FE7,\n\t47418 - 44032: 0x8FE8,\n\t47419 - 44032: 0x8FE9,\n\t47420 - 44032: 0xB7F2,\n\t47421 - 44032: 0xB7F3,\n\t47422 - 44032: 0x8FEA,\n\t47423 - 44032: 0x8FEB,\n\t47424 - 44032: 0xB7F4,\n\t47425 - 44032: 0x8FEC,\n\t47426 - 44032: 0x8FED,\n\t47427 - 44032: 0x8FEE,\n\t47428 - 44032: 0xB7F5,\n\t47429 - 44032: 0x8FEF,\n\t47430 - 44032: 0x8FF0,\n\t47431 - 44032: 0x8FF1,\n\t47432 - 44032: 0x8FF2,\n\t47433 - 44032: 0x8FF3,\n\t47434 - 44032: 0x8FF4,\n\t47435 - 44032: 0x8FF5,\n\t47436 - 44032: 0xB7F6,\n\t47437 - 44032: 0x8FF6,\n\t47438 - 44032: 0x8FF7,\n\t47439 - 44032: 0xB7F7,\n\t47440 - 44032: 0x8FF8,\n\t47441 - 44032: 0xB7F8,\n\t47442 - 44032: 0x8FF9,\n\t47443 - 44032: 0x8FFA,\n\t47444 - 44032: 0x8FFB,\n\t47445 - 44032: 0x8FFC,\n\t47446 - 44032: 0x8FFD,\n\t47447 - 44032: 0x8FFE,\n\t47448 - 44032: 0xB7F9,\n\t47449 - 44032: 0xB7FA,\n\t47450 - 44032: 0x9041,\n\t47451 - 44032: 0x9042,\n\t47452 - 44032: 0xB7FB,\n\t47453 - 44032: 0x9043,\n\t47454 - 44032: 0x9044,\n\t47455 - 44032: 0x9045,\n\t47456 - 44032: 0xB7FC,\n\t47457 - 44032: 0x9046,\n\t47458 - 44032: 0x9047,\n\t47459 - 44032: 0x9048,\n\t47460 - 44032: 0x9049,\n\t47461 - 44032: 0x904A,\n\t47462 - 44032: 0x904B,\n\t47463 - 44032: 0x904C,\n\t47464 - 44032: 0xB7FD,\n\t47465 - 44032: 0xB7FE,\n\t47466 - 44032: 0x904D,\n\t47467 - 44032: 0xB8A1,\n\t47468 - 44032: 0x904E,\n\t47469 - 44032: 0xB8A2,\n\t47470 - 44032: 0x904F,\n\t47471 - 44032: 0x9050,\n\t47472 - 44032: 0x9051,\n\t47473 - 44032: 0x9052,\n\t47474 - 44032: 0x9053,\n\t47475 - 44032: 0x9054,\n\t47476 - 44032: 0xB8A3,\n\t47477 - 44032: 0xB8A4,\n\t47478 - 44032: 0x9055,\n\t47479 - 44032: 0x9056,\n\t47480 - 44032: 0xB8A5,\n\t47481 - 44032: 0x9057,\n\t47482 - 44032: 0x9058,\n\t47483 - 44032: 0x9059,\n\t47484 - 44032: 0xB8A6,\n\t47485 - 44032: 0x905A,\n\t47486 - 44032: 0x9061,\n\t47487 - 44032: 0x9062,\n\t47488 - 44032: 0x9063,\n\t47489 - 44032: 0x9064,\n\t47490 - 44032: 0x9065,\n\t47491 - 44032: 0x9066,\n\t47492 - 44032: 0xB8A7,\n\t47493 - 44032: 0xB8A8,\n\t47494 - 44032: 0x9067,\n\t47495 - 44032: 0xB8A9,\n\t47496 - 44032: 0x9068,\n\t47497 - 44032: 0xB8AA,\n\t47498 - 44032: 0xB8AB,\n\t47499 - 44032: 0x9069,\n\t47500 - 44032: 0x906A,\n\t47501 - 44032: 0xB8AC,\n\t47502 - 44032: 0xB8AD,\n\t47503 - 44032: 0x906B,\n\t47504 - 44032: 0x906C,\n\t47505 - 44032: 0x906D,\n\t47506 - 44032: 0x906E,\n\t47507 - 44032: 0x906F,\n\t47508 - 44032: 0x9070,\n\t47509 - 44032: 0x9071,\n\t47510 - 44032: 0x9072,\n\t47511 - 44032: 0x9073,\n\t47512 - 44032: 0x9074,\n\t47513 - 44032: 0x9075,\n\t47514 - 44032: 0x9076,\n\t47515 - 44032: 0x9077,\n\t47516 - 44032: 0x9078,\n\t47517 - 44032: 0x9079,\n\t47518 - 44032: 0x907A,\n\t47519 - 44032: 0x9081,\n\t47520 - 44032: 0x9082,\n\t47521 - 44032: 0x9083,\n\t47522 - 44032: 0x9084,\n\t47523 - 44032: 0x9085,\n\t47524 - 44032: 0x9086,\n\t47525 - 44032: 0x9087,\n\t47526 - 44032: 0x9088,\n\t47527 - 44032: 0x9089,\n\t47528 - 44032: 0x908A,\n\t47529 - 44032: 0x908B,\n\t47530 - 44032: 0x908C,\n\t47531 - 44032: 0x908D,\n\t47532 - 44032: 0xB8AE,\n\t47533 - 44032: 0xB8AF,\n\t47534 - 44032: 0x908E,\n\t47535 - 44032: 0x908F,\n\t47536 - 44032: 0xB8B0,\n\t47537 - 44032: 0x9090,\n\t47538 - 44032: 0x9091,\n\t47539 - 44032: 0x9092,\n\t47540 - 44032: 0xB8B1,\n\t47541 - 44032: 0x9093,\n\t47542 - 44032: 0x9094,\n\t47543 - 44032: 0x9095,\n\t47544 - 44032: 0x9096,\n\t47545 - 44032: 0x9097,\n\t47546 - 44032: 0x9098,\n\t47547 - 44032: 0x9099,\n\t47548 - 44032: 0xB8B2,\n\t47549 - 44032: 0xB8B3,\n\t47550 - 44032: 0x909A,\n\t47551 - 44032: 0xB8B4,\n\t47552 - 44032: 0x909B,\n\t47553 - 44032: 0xB8B5,\n\t47554 - 44032: 0x909C,\n\t47555 - 44032: 0x909D,\n\t47556 - 44032: 0x909E,\n\t47557 - 44032: 0x909F,\n\t47558 - 44032: 0x90A0,\n\t47559 - 44032: 0x90A1,\n\t47560 - 44032: 0xB8B6,\n\t47561 - 44032: 0xB8B7,\n\t47562 - 44032: 0x90A2,\n\t47563 - 44032: 0x90A3,\n\t47564 - 44032: 0xB8B8,\n\t47565 - 44032: 0x90A4,\n\t47566 - 44032: 0xB8B9,\n\t47567 - 44032: 0xB8BA,\n\t47568 - 44032: 0xB8BB,\n\t47569 - 44032: 0xB8BC,\n\t47570 - 44032: 0xB8BD,\n\t47571 - 44032: 0x90A5,\n\t47572 - 44032: 0x90A6,\n\t47573 - 44032: 0x90A7,\n\t47574 - 44032: 0x90A8,\n\t47575 - 44032: 0x90A9,\n\t47576 - 44032: 0xB8BE,\n\t47577 - 44032: 0xB8BF,\n\t47578 - 44032: 0x90AA,\n\t47579 - 44032: 0xB8C0,\n\t47580 - 44032: 0x90AB,\n\t47581 - 44032: 0xB8C1,\n\t47582 - 44032: 0xB8C2,\n\t47583 - 44032: 0x90AC,\n\t47584 - 44032: 0x90AD,\n\t47585 - 44032: 0xB8C3,\n\t47586 - 44032: 0x90AE,\n\t47587 - 44032: 0xB8C4,\n\t47588 - 44032: 0xB8C5,\n\t47589 - 44032: 0xB8C6,\n\t47590 - 44032: 0x90AF,\n\t47591 - 44032: 0x90B0,\n\t47592 - 44032: 0xB8C7,\n\t47593 - 44032: 0x90B1,\n\t47594 - 44032: 0x90B2,\n\t47595 - 44032: 0x90B3,\n\t47596 - 44032: 0xB8C8,\n\t47597 - 44032: 0x90B4,\n\t47598 - 44032: 0x90B5,\n\t47599 - 44032: 0x90B6,\n\t47600 - 44032: 0x90B7,\n\t47601 - 44032: 0x90B8,\n\t47602 - 44032: 0x90B9,\n\t47603 - 44032: 0x90BA,\n\t47604 - 44032: 0xB8C9,\n\t47605 - 44032: 0xB8CA,\n\t47606 - 44032: 0x90BB,\n\t47607 - 44032: 0xB8CB,\n\t47608 - 44032: 0xB8CC,\n\t47609 - 44032: 0xB8CD,\n\t47610 - 44032: 0xB8CE,\n\t47611 - 44032: 0x90BC,\n\t47612 - 44032: 0x90BD,\n\t47613 - 44032: 0x90BE,\n\t47614 - 44032: 0x90BF,\n\t47615 - 44032: 0x90C0,\n\t47616 - 44032: 0xB8CF,\n\t47617 - 44032: 0xB8D0,\n\t47618 - 44032: 0x90C1,\n\t47619 - 44032: 0x90C2,\n\t47620 - 44032: 0x90C3,\n\t47621 - 44032: 0x90C4,\n\t47622 - 44032: 0x90C5,\n\t47623 - 44032: 0x90C6,\n\t47624 - 44032: 0xB8D1,\n\t47625 - 44032: 0x90C7,\n\t47626 - 44032: 0x90C8,\n\t47627 - 44032: 0x90C9,\n\t47628 - 44032: 0x90CA,\n\t47629 - 44032: 0x90CB,\n\t47630 - 44032: 0x90CC,\n\t47631 - 44032: 0x90CD,\n\t47632 - 44032: 0x90CE,\n\t47633 - 44032: 0x90CF,\n\t47634 - 44032: 0x90D0,\n\t47635 - 44032: 0x90D1,\n\t47636 - 44032: 0x90D2,\n\t47637 - 44032: 0xB8D2,\n\t47638 - 44032: 0x90D3,\n\t47639 - 44032: 0x90D4,\n\t47640 - 44032: 0x90D5,\n\t47641 - 44032: 0x90D6,\n\t47642 - 44032: 0x90D7,\n\t47643 - 44032: 0x90D8,\n\t47644 - 44032: 0x90D9,\n\t47645 - 44032: 0x90DA,\n\t47646 - 44032: 0x90DB,\n\t47647 - 44032: 0x90DC,\n\t47648 - 44032: 0x90DD,\n\t47649 - 44032: 0x90DE,\n\t47650 - 44032: 0x90DF,\n\t47651 - 44032: 0x90E0,\n\t47652 - 44032: 0x90E1,\n\t47653 - 44032: 0x90E2,\n\t47654 - 44032: 0x90E3,\n\t47655 - 44032: 0x90E4,\n\t47656 - 44032: 0x90E5,\n\t47657 - 44032: 0x90E6,\n\t47658 - 44032: 0x90E7,\n\t47659 - 44032: 0x90E8,\n\t47660 - 44032: 0x90E9,\n\t47661 - 44032: 0x90EA,\n\t47662 - 44032: 0x90EB,\n\t47663 - 44032: 0x90EC,\n\t47664 - 44032: 0x90ED,\n\t47665 - 44032: 0x90EE,\n\t47666 - 44032: 0x90EF,\n\t47667 - 44032: 0x90F0,\n\t47668 - 44032: 0x90F1,\n\t47669 - 44032: 0x90F2,\n\t47670 - 44032: 0x90F3,\n\t47671 - 44032: 0x90F4,\n\t47672 - 44032: 0xB8D3,\n\t47673 - 44032: 0xB8D4,\n\t47674 - 44032: 0x90F5,\n\t47675 - 44032: 0x90F6,\n\t47676 - 44032: 0xB8D5,\n\t47677 - 44032: 0x90F7,\n\t47678 - 44032: 0x90F8,\n\t47679 - 44032: 0x90F9,\n\t47680 - 44032: 0xB8D6,\n\t47681 - 44032: 0x90FA,\n\t47682 - 44032: 0xB8D7,\n\t47683 - 44032: 0x90FB,\n\t47684 - 44032: 0x90FC,\n\t47685 - 44032: 0x90FD,\n\t47686 - 44032: 0x90FE,\n\t47687 - 44032: 0x9141,\n\t47688 - 44032: 0xB8D8,\n\t47689 - 44032: 0xB8D9,\n\t47690 - 44032: 0x9142,\n\t47691 - 44032: 0xB8DA,\n\t47692 - 44032: 0x9143,\n\t47693 - 44032: 0xB8DB,\n\t47694 - 44032: 0xB8DC,\n\t47695 - 44032: 0x9144,\n\t47696 - 44032: 0x9145,\n\t47697 - 44032: 0x9146,\n\t47698 - 44032: 0x9147,\n\t47699 - 44032: 0xB8DD,\n\t47700 - 44032: 0xB8DE,\n\t47701 - 44032: 0xB8DF,\n\t47702 - 44032: 0x9148,\n\t47703 - 44032: 0x9149,\n\t47704 - 44032: 0xB8E0,\n\t47705 - 44032: 0x914A,\n\t47706 - 44032: 0x914B,\n\t47707 - 44032: 0x914C,\n\t47708 - 44032: 0xB8E1,\n\t47709 - 44032: 0x914D,\n\t47710 - 44032: 0x914E,\n\t47711 - 44032: 0x914F,\n\t47712 - 44032: 0x9150,\n\t47713 - 44032: 0x9151,\n\t47714 - 44032: 0x9152,\n\t47715 - 44032: 0x9153,\n\t47716 - 44032: 0xB8E2,\n\t47717 - 44032: 0xB8E3,\n\t47718 - 44032: 0x9154,\n\t47719 - 44032: 0xB8E4,\n\t47720 - 44032: 0xB8E5,\n\t47721 - 44032: 0xB8E6,\n\t47722 - 44032: 0x9155,\n\t47723 - 44032: 0x9156,\n\t47724 - 44032: 0x9157,\n\t47725 - 44032: 0x9158,\n\t47726 - 44032: 0x9159,\n\t47727 - 44032: 0x915A,\n\t47728 - 44032: 0xB8E7,\n\t47729 - 44032: 0xB8E8,\n\t47730 - 44032: 0x9161,\n\t47731 - 44032: 0x9162,\n\t47732 - 44032: 0xB8E9,\n\t47733 - 44032: 0x9163,\n\t47734 - 44032: 0x9164,\n\t47735 - 44032: 0x9165,\n\t47736 - 44032: 0xB8EA,\n\t47737 - 44032: 0x9166,\n\t47738 - 44032: 0x9167,\n\t47739 - 44032: 0x9168,\n\t47740 - 44032: 0x9169,\n\t47741 - 44032: 0x916A,\n\t47742 - 44032: 0x916B,\n\t47743 - 44032: 0x916C,\n\t47744 - 44032: 0x916D,\n\t47745 - 44032: 0x916E,\n\t47746 - 44032: 0x916F,\n\t47747 - 44032: 0xB8EB,\n\t47748 - 44032: 0xB8EC,\n\t47749 - 44032: 0xB8ED,\n\t47750 - 44032: 0x9170,\n\t47751 - 44032: 0xB8EE,\n\t47752 - 44032: 0x9171,\n\t47753 - 44032: 0x9172,\n\t47754 - 44032: 0x9173,\n\t47755 - 44032: 0x9174,\n\t47756 - 44032: 0xB8EF,\n\t47757 - 44032: 0x9175,\n\t47758 - 44032: 0x9176,\n\t47759 - 44032: 0x9177,\n\t47760 - 44032: 0x9178,\n\t47761 - 44032: 0x9179,\n\t47762 - 44032: 0x917A,\n\t47763 - 44032: 0x9181,\n\t47764 - 44032: 0x9182,\n\t47765 - 44032: 0x9183,\n\t47766 - 44032: 0x9184,\n\t47767 - 44032: 0x9185,\n\t47768 - 44032: 0x9186,\n\t47769 - 44032: 0x9187,\n\t47770 - 44032: 0x9188,\n\t47771 - 44032: 0x9189,\n\t47772 - 44032: 0x918A,\n\t47773 - 44032: 0x918B,\n\t47774 - 44032: 0x918C,\n\t47775 - 44032: 0x918D,\n\t47776 - 44032: 0x918E,\n\t47777 - 44032: 0x918F,\n\t47778 - 44032: 0x9190,\n\t47779 - 44032: 0x9191,\n\t47780 - 44032: 0x9192,\n\t47781 - 44032: 0x9193,\n\t47782 - 44032: 0x9194,\n\t47783 - 44032: 0x9195,\n\t47784 - 44032: 0xB8F0,\n\t47785 - 44032: 0xB8F1,\n\t47786 - 44032: 0x9196,\n\t47787 - 44032: 0xB8F2,\n\t47788 - 44032: 0xB8F3,\n\t47789 - 44032: 0x9197,\n\t47790 - 44032: 0x9198,\n\t47791 - 44032: 0x9199,\n\t47792 - 44032: 0xB8F4,\n\t47793 - 44032: 0x919A,\n\t47794 - 44032: 0xB8F5,\n\t47795 - 44032: 0x919B,\n\t47796 - 44032: 0x919C,\n\t47797 - 44032: 0x919D,\n\t47798 - 44032: 0x919E,\n\t47799 - 44032: 0x919F,\n\t47800 - 44032: 0xB8F6,\n\t47801 - 44032: 0xB8F7,\n\t47802 - 44032: 0x91A0,\n\t47803 - 44032: 0xB8F8,\n\t47804 - 44032: 0x91A1,\n\t47805 - 44032: 0xB8F9,\n\t47806 - 44032: 0x91A2,\n\t47807 - 44032: 0x91A3,\n\t47808 - 44032: 0x91A4,\n\t47809 - 44032: 0x91A5,\n\t47810 - 44032: 0x91A6,\n\t47811 - 44032: 0x91A7,\n\t47812 - 44032: 0xB8FA,\n\t47813 - 44032: 0x91A8,\n\t47814 - 44032: 0x91A9,\n\t47815 - 44032: 0x91AA,\n\t47816 - 44032: 0xB8FB,\n\t47817 - 44032: 0x91AB,\n\t47818 - 44032: 0x91AC,\n\t47819 - 44032: 0x91AD,\n\t47820 - 44032: 0x91AE,\n\t47821 - 44032: 0x91AF,\n\t47822 - 44032: 0x91B0,\n\t47823 - 44032: 0x91B1,\n\t47824 - 44032: 0x91B2,\n\t47825 - 44032: 0x91B3,\n\t47826 - 44032: 0x91B4,\n\t47827 - 44032: 0x91B5,\n\t47828 - 44032: 0x91B6,\n\t47829 - 44032: 0x91B7,\n\t47830 - 44032: 0x91B8,\n\t47831 - 44032: 0x91B9,\n\t47832 - 44032: 0xB8FC,\n\t47833 - 44032: 0xB8FD,\n\t47834 - 44032: 0x91BA,\n\t47835 - 44032: 0x91BB,\n\t47836 - 44032: 0x91BC,\n\t47837 - 44032: 0x91BD,\n\t47838 - 44032: 0x91BE,\n\t47839 - 44032: 0x91BF,\n\t47840 - 44032: 0x91C0,\n\t47841 - 44032: 0x91C1,\n\t47842 - 44032: 0x91C2,\n\t47843 - 44032: 0x91C3,\n\t47844 - 44032: 0x91C4,\n\t47845 - 44032: 0x91C5,\n\t47846 - 44032: 0x91C6,\n\t47847 - 44032: 0x91C7,\n\t47848 - 44032: 0x91C8,\n\t47849 - 44032: 0x91C9,\n\t47850 - 44032: 0x91CA,\n\t47851 - 44032: 0x91CB,\n\t47852 - 44032: 0x91CC,\n\t47853 - 44032: 0x91CD,\n\t47854 - 44032: 0x91CE,\n\t47855 - 44032: 0x91CF,\n\t47856 - 44032: 0x91D0,\n\t47857 - 44032: 0x91D1,\n\t47858 - 44032: 0x91D2,\n\t47859 - 44032: 0x91D3,\n\t47860 - 44032: 0x91D4,\n\t47861 - 44032: 0x91D5,\n\t47862 - 44032: 0x91D6,\n\t47863 - 44032: 0x91D7,\n\t47864 - 44032: 0x91D8,\n\t47865 - 44032: 0x91D9,\n\t47866 - 44032: 0x91DA,\n\t47867 - 44032: 0x91DB,\n\t47868 - 44032: 0xB8FE,\n\t47869 - 44032: 0x91DC,\n\t47870 - 44032: 0x91DD,\n\t47871 - 44032: 0x91DE,\n\t47872 - 44032: 0xB9A1,\n\t47873 - 44032: 0x91DF,\n\t47874 - 44032: 0x91E0,\n\t47875 - 44032: 0x91E1,\n\t47876 - 44032: 0xB9A2,\n\t47877 - 44032: 0x91E2,\n\t47878 - 44032: 0x91E3,\n\t47879 - 44032: 0x91E4,\n\t47880 - 44032: 0x91E5,\n\t47881 - 44032: 0x91E6,\n\t47882 - 44032: 0x91E7,\n\t47883 - 44032: 0x91E8,\n\t47884 - 44032: 0x91E9,\n\t47885 - 44032: 0xB9A3,\n\t47886 - 44032: 0x91EA,\n\t47887 - 44032: 0xB9A4,\n\t47888 - 44032: 0x91EB,\n\t47889 - 44032: 0xB9A5,\n\t47890 - 44032: 0x91EC,\n\t47891 - 44032: 0x91ED,\n\t47892 - 44032: 0x91EE,\n\t47893 - 44032: 0x91EF,\n\t47894 - 44032: 0x91F0,\n\t47895 - 44032: 0x91F1,\n\t47896 - 44032: 0xB9A6,\n\t47897 - 44032: 0x91F2,\n\t47898 - 44032: 0x91F3,\n\t47899 - 44032: 0x91F4,\n\t47900 - 44032: 0xB9A7,\n\t47901 - 44032: 0x91F5,\n\t47902 - 44032: 0x91F6,\n\t47903 - 44032: 0x91F7,\n\t47904 - 44032: 0xB9A8,\n\t47905 - 44032: 0x91F8,\n\t47906 - 44032: 0x91F9,\n\t47907 - 44032: 0x91FA,\n\t47908 - 44032: 0x91FB,\n\t47909 - 44032: 0x91FC,\n\t47910 - 44032: 0x91FD,\n\t47911 - 44032: 0x91FE,\n\t47912 - 44032: 0x9241,\n\t47913 - 44032: 0xB9A9,\n\t47914 - 44032: 0x9242,\n\t47915 - 44032: 0xB9AA,\n\t47916 - 44032: 0x9243,\n\t47917 - 44032: 0x9244,\n\t47918 - 44032: 0x9245,\n\t47919 - 44032: 0x9246,\n\t47920 - 44032: 0x9247,\n\t47921 - 44032: 0x9248,\n\t47922 - 44032: 0x9249,\n\t47923 - 44032: 0x924A,\n\t47924 - 44032: 0xB9AB,\n\t47925 - 44032: 0xB9AC,\n\t47926 - 44032: 0xB9AD,\n\t47927 - 44032: 0x924B,\n\t47928 - 44032: 0xB9AE,\n\t47929 - 44032: 0x924C,\n\t47930 - 44032: 0x924D,\n\t47931 - 44032: 0xB9AF,\n\t47932 - 44032: 0xB9B0,\n\t47933 - 44032: 0xB9B1,\n\t47934 - 44032: 0xB9B2,\n\t47935 - 44032: 0x924E,\n\t47936 - 44032: 0x924F,\n\t47937 - 44032: 0x9250,\n\t47938 - 44032: 0x9251,\n\t47939 - 44032: 0x9252,\n\t47940 - 44032: 0xB9B3,\n\t47941 - 44032: 0xB9B4,\n\t47942 - 44032: 0x9253,\n\t47943 - 44032: 0xB9B5,\n\t47944 - 44032: 0x9254,\n\t47945 - 44032: 0xB9B6,\n\t47946 - 44032: 0x9255,\n\t47947 - 44032: 0x9256,\n\t47948 - 44032: 0x9257,\n\t47949 - 44032: 0xB9B7,\n\t47950 - 44032: 0x9258,\n\t47951 - 44032: 0xB9B8,\n\t47952 - 44032: 0xB9B9,\n\t47953 - 44032: 0x9259,\n\t47954 - 44032: 0x925A,\n\t47955 - 44032: 0x9261,\n\t47956 - 44032: 0xB9BA,\n\t47957 - 44032: 0x9262,\n\t47958 - 44032: 0x9263,\n\t47959 - 44032: 0x9264,\n\t47960 - 44032: 0xB9BB,\n\t47961 - 44032: 0x9265,\n\t47962 - 44032: 0x9266,\n\t47963 - 44032: 0x9267,\n\t47964 - 44032: 0x9268,\n\t47965 - 44032: 0x9269,\n\t47966 - 44032: 0x926A,\n\t47967 - 44032: 0x926B,\n\t47968 - 44032: 0x926C,\n\t47969 - 44032: 0xB9BC,\n\t47970 - 44032: 0x926D,\n\t47971 - 44032: 0xB9BD,\n\t47972 - 44032: 0x926E,\n\t47973 - 44032: 0x926F,\n\t47974 - 44032: 0x9270,\n\t47975 - 44032: 0x9271,\n\t47976 - 44032: 0x9272,\n\t47977 - 44032: 0x9273,\n\t47978 - 44032: 0x9274,\n\t47979 - 44032: 0x9275,\n\t47980 - 44032: 0xB9BE,\n\t47981 - 44032: 0x9276,\n\t47982 - 44032: 0x9277,\n\t47983 - 44032: 0x9278,\n\t47984 - 44032: 0x9279,\n\t47985 - 44032: 0x927A,\n\t47986 - 44032: 0x9281,\n\t47987 - 44032: 0x9282,\n\t47988 - 44032: 0x9283,\n\t47989 - 44032: 0x9284,\n\t47990 - 44032: 0x9285,\n\t47991 - 44032: 0x9286,\n\t47992 - 44032: 0x9287,\n\t47993 - 44032: 0x9288,\n\t47994 - 44032: 0x9289,\n\t47995 - 44032: 0x928A,\n\t47996 - 44032: 0x928B,\n\t47997 - 44032: 0x928C,\n\t47998 - 44032: 0x928D,\n\t47999 - 44032: 0x928E,\n\t48000 - 44032: 0x928F,\n\t48001 - 44032: 0x9290,\n\t48002 - 44032: 0x9291,\n\t48003 - 44032: 0x9292,\n\t48004 - 44032: 0x9293,\n\t48005 - 44032: 0x9294,\n\t48006 - 44032: 0x9295,\n\t48007 - 44032: 0x9296,\n\t48008 - 44032: 0xB9BF,\n\t48009 - 44032: 0x9297,\n\t48010 - 44032: 0x9298,\n\t48011 - 44032: 0x9299,\n\t48012 - 44032: 0xB9C0,\n\t48013 - 44032: 0x929A,\n\t48014 - 44032: 0x929B,\n\t48015 - 44032: 0x929C,\n\t48016 - 44032: 0xB9C1,\n\t48017 - 44032: 0x929D,\n\t48018 - 44032: 0x929E,\n\t48019 - 44032: 0x929F,\n\t48020 - 44032: 0x92A0,\n\t48021 - 44032: 0x92A1,\n\t48022 - 44032: 0x92A2,\n\t48023 - 44032: 0x92A3,\n\t48024 - 44032: 0x92A4,\n\t48025 - 44032: 0x92A5,\n\t48026 - 44032: 0x92A6,\n\t48027 - 44032: 0x92A7,\n\t48028 - 44032: 0x92A8,\n\t48029 - 44032: 0x92A9,\n\t48030 - 44032: 0x92AA,\n\t48031 - 44032: 0x92AB,\n\t48032 - 44032: 0x92AC,\n\t48033 - 44032: 0x92AD,\n\t48034 - 44032: 0x92AE,\n\t48035 - 44032: 0x92AF,\n\t48036 - 44032: 0xB9C2,\n\t48037 - 44032: 0x92B0,\n\t48038 - 44032: 0x92B1,\n\t48039 - 44032: 0x92B2,\n\t48040 - 44032: 0xB9C3,\n\t48041 - 44032: 0x92B3,\n\t48042 - 44032: 0x92B4,\n\t48043 - 44032: 0x92B5,\n\t48044 - 44032: 0xB9C4,\n\t48045 - 44032: 0x92B6,\n\t48046 - 44032: 0x92B7,\n\t48047 - 44032: 0x92B8,\n\t48048 - 44032: 0x92B9,\n\t48049 - 44032: 0x92BA,\n\t48050 - 44032: 0x92BB,\n\t48051 - 44032: 0x92BC,\n\t48052 - 44032: 0xB9C5,\n\t48053 - 44032: 0x92BD,\n\t48054 - 44032: 0x92BE,\n\t48055 - 44032: 0xB9C6,\n\t48056 - 44032: 0x92BF,\n\t48057 - 44032: 0x92C0,\n\t48058 - 44032: 0x92C1,\n\t48059 - 44032: 0x92C2,\n\t48060 - 44032: 0x92C3,\n\t48061 - 44032: 0x92C4,\n\t48062 - 44032: 0x92C5,\n\t48063 - 44032: 0x92C6,\n\t48064 - 44032: 0xB9C7,\n\t48065 - 44032: 0x92C7,\n\t48066 - 44032: 0x92C8,\n\t48067 - 44032: 0x92C9,\n\t48068 - 44032: 0xB9C8,\n\t48069 - 44032: 0x92CA,\n\t48070 - 44032: 0x92CB,\n\t48071 - 44032: 0x92CC,\n\t48072 - 44032: 0xB9C9,\n\t48073 - 44032: 0x92CD,\n\t48074 - 44032: 0x92CE,\n\t48075 - 44032: 0x92CF,\n\t48076 - 44032: 0x92D0,\n\t48077 - 44032: 0x92D1,\n\t48078 - 44032: 0x92D2,\n\t48079 - 44032: 0x92D3,\n\t48080 - 44032: 0xB9CA,\n\t48081 - 44032: 0x92D4,\n\t48082 - 44032: 0x92D5,\n\t48083 - 44032: 0xB9CB,\n\t48084 - 44032: 0x92D6,\n\t48085 - 44032: 0x92D7,\n\t48086 - 44032: 0x92D8,\n\t48087 - 44032: 0x92D9,\n\t48088 - 44032: 0x92DA,\n\t48089 - 44032: 0x92DB,\n\t48090 - 44032: 0x92DC,\n\t48091 - 44032: 0x92DD,\n\t48092 - 44032: 0x92DE,\n\t48093 - 44032: 0x92DF,\n\t48094 - 44032: 0x92E0,\n\t48095 - 44032: 0x92E1,\n\t48096 - 44032: 0x92E2,\n\t48097 - 44032: 0x92E3,\n\t48098 - 44032: 0x92E4,\n\t48099 - 44032: 0x92E5,\n\t48100 - 44032: 0x92E6,\n\t48101 - 44032: 0x92E7,\n\t48102 - 44032: 0x92E8,\n\t48103 - 44032: 0x92E9,\n\t48104 - 44032: 0x92EA,\n\t48105 - 44032: 0x92EB,\n\t48106 - 44032: 0x92EC,\n\t48107 - 44032: 0x92ED,\n\t48108 - 44032: 0x92EE,\n\t48109 - 44032: 0x92EF,\n\t48110 - 44032: 0x92F0,\n\t48111 - 44032: 0x92F1,\n\t48112 - 44032: 0x92F2,\n\t48113 - 44032: 0x92F3,\n\t48114 - 44032: 0x92F4,\n\t48115 - 44032: 0x92F5,\n\t48116 - 44032: 0x92F6,\n\t48117 - 44032: 0x92F7,\n\t48118 - 44032: 0x92F8,\n\t48119 - 44032: 0x92F9,\n\t48120 - 44032: 0xB9CC,\n\t48121 - 44032: 0xB9CD,\n\t48122 - 44032: 0x92FA,\n\t48123 - 44032: 0x92FB,\n\t48124 - 44032: 0xB9CE,\n\t48125 - 44032: 0x92FC,\n\t48126 - 44032: 0x92FD,\n\t48127 - 44032: 0xB9CF,\n\t48128 - 44032: 0xB9D0,\n\t48129 - 44032: 0x92FE,\n\t48130 - 44032: 0xB9D1,\n\t48131 - 44032: 0x9341,\n\t48132 - 44032: 0x9342,\n\t48133 - 44032: 0x9343,\n\t48134 - 44032: 0x9344,\n\t48135 - 44032: 0x9345,\n\t48136 - 44032: 0xB9D2,\n\t48137 - 44032: 0xB9D3,\n\t48138 - 44032: 0x9346,\n\t48139 - 44032: 0xB9D4,\n\t48140 - 44032: 0xB9D5,\n\t48141 - 44032: 0xB9D6,\n\t48142 - 44032: 0x9347,\n\t48143 - 44032: 0xB9D7,\n\t48144 - 44032: 0x9348,\n\t48145 - 44032: 0xB9D8,\n\t48146 - 44032: 0x9349,\n\t48147 - 44032: 0x934A,\n\t48148 - 44032: 0xB9D9,\n\t48149 - 44032: 0xB9DA,\n\t48150 - 44032: 0xB9DB,\n\t48151 - 44032: 0xB9DC,\n\t48152 - 44032: 0xB9DD,\n\t48153 - 44032: 0x934B,\n\t48154 - 44032: 0x934C,\n\t48155 - 44032: 0xB9DE,\n\t48156 - 44032: 0xB9DF,\n\t48157 - 44032: 0xB9E0,\n\t48158 - 44032: 0xB9E1,\n\t48159 - 44032: 0xB9E2,\n\t48160 - 44032: 0x934D,\n\t48161 - 44032: 0x934E,\n\t48162 - 44032: 0x934F,\n\t48163 - 44032: 0x9350,\n\t48164 - 44032: 0xB9E3,\n\t48165 - 44032: 0xB9E4,\n\t48166 - 44032: 0x9351,\n\t48167 - 44032: 0xB9E5,\n\t48168 - 44032: 0x9352,\n\t48169 - 44032: 0xB9E6,\n\t48170 - 44032: 0x9353,\n\t48171 - 44032: 0x9354,\n\t48172 - 44032: 0x9355,\n\t48173 - 44032: 0xB9E7,\n\t48174 - 44032: 0x9356,\n\t48175 - 44032: 0x9357,\n\t48176 - 44032: 0xB9E8,\n\t48177 - 44032: 0xB9E9,\n\t48178 - 44032: 0x9358,\n\t48179 - 44032: 0x9359,\n\t48180 - 44032: 0xB9EA,\n\t48181 - 44032: 0x935A,\n\t48182 - 44032: 0x9361,\n\t48183 - 44032: 0x9362,\n\t48184 - 44032: 0xB9EB,\n\t48185 - 44032: 0x9363,\n\t48186 - 44032: 0x9364,\n\t48187 - 44032: 0x9365,\n\t48188 - 44032: 0x9366,\n\t48189 - 44032: 0x9367,\n\t48190 - 44032: 0x9368,\n\t48191 - 44032: 0x9369,\n\t48192 - 44032: 0xB9EC,\n\t48193 - 44032: 0xB9ED,\n\t48194 - 44032: 0x936A,\n\t48195 - 44032: 0xB9EE,\n\t48196 - 44032: 0xB9EF,\n\t48197 - 44032: 0xB9F0,\n\t48198 - 44032: 0x936B,\n\t48199 - 44032: 0x936C,\n\t48200 - 44032: 0x936D,\n\t48201 - 44032: 0xB9F1,\n\t48202 - 44032: 0x936E,\n\t48203 - 44032: 0x936F,\n\t48204 - 44032: 0xB9F2,\n\t48205 - 44032: 0xB9F3,\n\t48206 - 44032: 0x9370,\n\t48207 - 44032: 0x9371,\n\t48208 - 44032: 0xB9F4,\n\t48209 - 44032: 0x9372,\n\t48210 - 44032: 0x9373,\n\t48211 - 44032: 0x9374,\n\t48212 - 44032: 0x9375,\n\t48213 - 44032: 0x9376,\n\t48214 - 44032: 0x9377,\n\t48215 - 44032: 0x9378,\n\t48216 - 44032: 0x9379,\n\t48217 - 44032: 0x937A,\n\t48218 - 44032: 0x9381,\n\t48219 - 44032: 0x9382,\n\t48220 - 44032: 0x9383,\n\t48221 - 44032: 0xB9F5,\n\t48222 - 44032: 0x9384,\n\t48223 - 44032: 0x9385,\n\t48224 - 44032: 0x9386,\n\t48225 - 44032: 0x9387,\n\t48226 - 44032: 0x9388,\n\t48227 - 44032: 0x9389,\n\t48228 - 44032: 0x938A,\n\t48229 - 44032: 0x938B,\n\t48230 - 44032: 0x938C,\n\t48231 - 44032: 0x938D,\n\t48232 - 44032: 0x938E,\n\t48233 - 44032: 0x938F,\n\t48234 - 44032: 0x9390,\n\t48235 - 44032: 0x9391,\n\t48236 - 44032: 0x9392,\n\t48237 - 44032: 0x9393,\n\t48238 - 44032: 0x9394,\n\t48239 - 44032: 0x9395,\n\t48240 - 44032: 0x9396,\n\t48241 - 44032: 0x9397,\n\t48242 - 44032: 0x9398,\n\t48243 - 44032: 0x9399,\n\t48244 - 44032: 0x939A,\n\t48245 - 44032: 0x939B,\n\t48246 - 44032: 0x939C,\n\t48247 - 44032: 0x939D,\n\t48248 - 44032: 0x939E,\n\t48249 - 44032: 0x939F,\n\t48250 - 44032: 0x93A0,\n\t48251 - 44032: 0x93A1,\n\t48252 - 44032: 0x93A2,\n\t48253 - 44032: 0x93A3,\n\t48254 - 44032: 0x93A4,\n\t48255 - 44032: 0x93A5,\n\t48256 - 44032: 0x93A6,\n\t48257 - 44032: 0x93A7,\n\t48258 - 44032: 0x93A8,\n\t48259 - 44032: 0x93A9,\n\t48260 - 44032: 0xB9F6,\n\t48261 - 44032: 0xB9F7,\n\t48262 - 44032: 0x93AA,\n\t48263 - 44032: 0x93AB,\n\t48264 - 44032: 0xB9F8,\n\t48265 - 44032: 0x93AC,\n\t48266 - 44032: 0x93AD,\n\t48267 - 44032: 0xB9F9,\n\t48268 - 44032: 0xB9FA,\n\t48269 - 44032: 0x93AE,\n\t48270 - 44032: 0xB9FB,\n\t48271 - 44032: 0x93AF,\n\t48272 - 44032: 0x93B0,\n\t48273 - 44032: 0x93B1,\n\t48274 - 44032: 0x93B2,\n\t48275 - 44032: 0x93B3,\n\t48276 - 44032: 0xB9FC,\n\t48277 - 44032: 0xB9FD,\n\t48278 - 44032: 0x93B4,\n\t48279 - 44032: 0xB9FE,\n\t48280 - 44032: 0x93B5,\n\t48281 - 44032: 0xBAA1,\n\t48282 - 44032: 0xBAA2,\n\t48283 - 44032: 0x93B6,\n\t48284 - 44032: 0x93B7,\n\t48285 - 44032: 0x93B8,\n\t48286 - 44032: 0x93B9,\n\t48287 - 44032: 0x93BA,\n\t48288 - 44032: 0xBAA3,\n\t48289 - 44032: 0xBAA4,\n\t48290 - 44032: 0x93BB,\n\t48291 - 44032: 0x93BC,\n\t48292 - 44032: 0xBAA5,\n\t48293 - 44032: 0x93BD,\n\t48294 - 44032: 0x93BE,\n\t48295 - 44032: 0xBAA6,\n\t48296 - 44032: 0xBAA7,\n\t48297 - 44032: 0x93BF,\n\t48298 - 44032: 0x93C0,\n\t48299 - 44032: 0x93C1,\n\t48300 - 44032: 0x93C2,\n\t48301 - 44032: 0x93C3,\n\t48302 - 44032: 0x93C4,\n\t48303 - 44032: 0x93C5,\n\t48304 - 44032: 0xBAA8,\n\t48305 - 44032: 0xBAA9,\n\t48306 - 44032: 0x93C6,\n\t48307 - 44032: 0xBAAA,\n\t48308 - 44032: 0xBAAB,\n\t48309 - 44032: 0xBAAC,\n\t48310 - 44032: 0x93C7,\n\t48311 - 44032: 0x93C8,\n\t48312 - 44032: 0x93C9,\n\t48313 - 44032: 0x93CA,\n\t48314 - 44032: 0x93CB,\n\t48315 - 44032: 0x93CC,\n\t48316 - 44032: 0xBAAD,\n\t48317 - 44032: 0xBAAE,\n\t48318 - 44032: 0x93CD,\n\t48319 - 44032: 0x93CE,\n\t48320 - 44032: 0xBAAF,\n\t48321 - 44032: 0x93CF,\n\t48322 - 44032: 0x93D0,\n\t48323 - 44032: 0x93D1,\n\t48324 - 44032: 0xBAB0,\n\t48325 - 44032: 0x93D2,\n\t48326 - 44032: 0x93D3,\n\t48327 - 44032: 0x93D4,\n\t48328 - 44032: 0x93D5,\n\t48329 - 44032: 0x93D6,\n\t48330 - 44032: 0x93D7,\n\t48331 - 44032: 0x93D8,\n\t48332 - 44032: 0x93D9,\n\t48333 - 44032: 0xBAB1,\n\t48334 - 44032: 0x93DA,\n\t48335 - 44032: 0xBAB2,\n\t48336 - 44032: 0xBAB3,\n\t48337 - 44032: 0xBAB4,\n\t48338 - 44032: 0x93DB,\n\t48339 - 44032: 0x93DC,\n\t48340 - 44032: 0x93DD,\n\t48341 - 44032: 0xBAB5,\n\t48342 - 44032: 0x93DE,\n\t48343 - 44032: 0x93DF,\n\t48344 - 44032: 0xBAB6,\n\t48345 - 44032: 0x93E0,\n\t48346 - 44032: 0x93E1,\n\t48347 - 44032: 0x93E2,\n\t48348 - 44032: 0xBAB7,\n\t48349 - 44032: 0x93E3,\n\t48350 - 44032: 0x93E4,\n\t48351 - 44032: 0x93E5,\n\t48352 - 44032: 0x93E6,\n\t48353 - 44032: 0x93E7,\n\t48354 - 44032: 0x93E8,\n\t48355 - 44032: 0x93E9,\n\t48356 - 44032: 0x93EA,\n\t48357 - 44032: 0x93EB,\n\t48358 - 44032: 0x93EC,\n\t48359 - 44032: 0x93ED,\n\t48360 - 44032: 0x93EE,\n\t48361 - 44032: 0x93EF,\n\t48362 - 44032: 0x93F0,\n\t48363 - 44032: 0x93F1,\n\t48364 - 44032: 0x93F2,\n\t48365 - 44032: 0x93F3,\n\t48366 - 44032: 0x93F4,\n\t48367 - 44032: 0x93F5,\n\t48368 - 44032: 0x93F6,\n\t48369 - 44032: 0x93F7,\n\t48370 - 44032: 0x93F8,\n\t48371 - 44032: 0x93F9,\n\t48372 - 44032: 0xBAB8,\n\t48373 - 44032: 0xBAB9,\n\t48374 - 44032: 0xBABA,\n\t48375 - 44032: 0x93FA,\n\t48376 - 44032: 0xBABB,\n\t48377 - 44032: 0x93FB,\n\t48378 - 44032: 0x93FC,\n\t48379 - 44032: 0x93FD,\n\t48380 - 44032: 0xBABC,\n\t48381 - 44032: 0x93FE,\n\t48382 - 44032: 0x9441,\n\t48383 - 44032: 0x9442,\n\t48384 - 44032: 0x9443,\n\t48385 - 44032: 0x9444,\n\t48386 - 44032: 0x9445,\n\t48387 - 44032: 0x9446,\n\t48388 - 44032: 0xBABD,\n\t48389 - 44032: 0xBABE,\n\t48390 - 44032: 0x9447,\n\t48391 - 44032: 0xBABF,\n\t48392 - 44032: 0x9448,\n\t48393 - 44032: 0xBAC0,\n\t48394 - 44032: 0x9449,\n\t48395 - 44032: 0x944A,\n\t48396 - 44032: 0x944B,\n\t48397 - 44032: 0x944C,\n\t48398 - 44032: 0x944D,\n\t48399 - 44032: 0x944E,\n\t48400 - 44032: 0xBAC1,\n\t48401 - 44032: 0x944F,\n\t48402 - 44032: 0x9450,\n\t48403 - 44032: 0x9451,\n\t48404 - 44032: 0xBAC2,\n\t48405 - 44032: 0x9452,\n\t48406 - 44032: 0x9453,\n\t48407 - 44032: 0x9454,\n\t48408 - 44032: 0x9455,\n\t48409 - 44032: 0x9456,\n\t48410 - 44032: 0x9457,\n\t48411 - 44032: 0x9458,\n\t48412 - 44032: 0x9459,\n\t48413 - 44032: 0x945A,\n\t48414 - 44032: 0x9461,\n\t48415 - 44032: 0x9462,\n\t48416 - 44032: 0x9463,\n\t48417 - 44032: 0x9464,\n\t48418 - 44032: 0x9465,\n\t48419 - 44032: 0x9466,\n\t48420 - 44032: 0xBAC3,\n\t48421 - 44032: 0x9467,\n\t48422 - 44032: 0x9468,\n\t48423 - 44032: 0x9469,\n\t48424 - 44032: 0x946A,\n\t48425 - 44032: 0x946B,\n\t48426 - 44032: 0x946C,\n\t48427 - 44032: 0x946D,\n\t48428 - 44032: 0xBAC4,\n\t48429 - 44032: 0x946E,\n\t48430 - 44032: 0x946F,\n\t48431 - 44032: 0x9470,\n\t48432 - 44032: 0x9471,\n\t48433 - 44032: 0x9472,\n\t48434 - 44032: 0x9473,\n\t48435 - 44032: 0x9474,\n\t48436 - 44032: 0x9475,\n\t48437 - 44032: 0x9476,\n\t48438 - 44032: 0x9477,\n\t48439 - 44032: 0x9478,\n\t48440 - 44032: 0x9479,\n\t48441 - 44032: 0x947A,\n\t48442 - 44032: 0x9481,\n\t48443 - 44032: 0x9482,\n\t48444 - 44032: 0x9483,\n\t48445 - 44032: 0x9484,\n\t48446 - 44032: 0x9485,\n\t48447 - 44032: 0x9486,\n\t48448 - 44032: 0xBAC5,\n\t48449 - 44032: 0x9487,\n\t48450 - 44032: 0x9488,\n\t48451 - 44032: 0x9489,\n\t48452 - 44032: 0x948A,\n\t48453 - 44032: 0x948B,\n\t48454 - 44032: 0x948C,\n\t48455 - 44032: 0x948D,\n\t48456 - 44032: 0xBAC6,\n\t48457 - 44032: 0xBAC7,\n\t48458 - 44032: 0x948E,\n\t48459 - 44032: 0x948F,\n\t48460 - 44032: 0xBAC8,\n\t48461 - 44032: 0x9490,\n\t48462 - 44032: 0x9491,\n\t48463 - 44032: 0x9492,\n\t48464 - 44032: 0xBAC9,\n\t48465 - 44032: 0x9493,\n\t48466 - 44032: 0x9494,\n\t48467 - 44032: 0x9495,\n\t48468 - 44032: 0x9496,\n\t48469 - 44032: 0x9497,\n\t48470 - 44032: 0x9498,\n\t48471 - 44032: 0x9499,\n\t48472 - 44032: 0xBACA,\n\t48473 - 44032: 0xBACB,\n\t48474 - 44032: 0x949A,\n\t48475 - 44032: 0x949B,\n\t48476 - 44032: 0x949C,\n\t48477 - 44032: 0x949D,\n\t48478 - 44032: 0x949E,\n\t48479 - 44032: 0x949F,\n\t48480 - 44032: 0x94A0,\n\t48481 - 44032: 0x94A1,\n\t48482 - 44032: 0x94A2,\n\t48483 - 44032: 0x94A3,\n\t48484 - 44032: 0xBACC,\n\t48485 - 44032: 0x94A4,\n\t48486 - 44032: 0x94A5,\n\t48487 - 44032: 0x94A6,\n\t48488 - 44032: 0xBACD,\n\t48489 - 44032: 0x94A7,\n\t48490 - 44032: 0x94A8,\n\t48491 - 44032: 0x94A9,\n\t48492 - 44032: 0x94AA,\n\t48493 - 44032: 0x94AB,\n\t48494 - 44032: 0x94AC,\n\t48495 - 44032: 0x94AD,\n\t48496 - 44032: 0x94AE,\n\t48497 - 44032: 0x94AF,\n\t48498 - 44032: 0x94B0,\n\t48499 - 44032: 0x94B1,\n\t48500 - 44032: 0x94B2,\n\t48501 - 44032: 0x94B3,\n\t48502 - 44032: 0x94B4,\n\t48503 - 44032: 0x94B5,\n\t48504 - 44032: 0x94B6,\n\t48505 - 44032: 0x94B7,\n\t48506 - 44032: 0x94B8,\n\t48507 - 44032: 0x94B9,\n\t48508 - 44032: 0x94BA,\n\t48509 - 44032: 0x94BB,\n\t48510 - 44032: 0x94BC,\n\t48511 - 44032: 0x94BD,\n\t48512 - 44032: 0xBACE,\n\t48513 - 44032: 0xBACF,\n\t48514 - 44032: 0x94BE,\n\t48515 - 44032: 0x94BF,\n\t48516 - 44032: 0xBAD0,\n\t48517 - 44032: 0x94C0,\n\t48518 - 44032: 0x94C1,\n\t48519 - 44032: 0xBAD1,\n\t48520 - 44032: 0xBAD2,\n\t48521 - 44032: 0xBAD3,\n\t48522 - 44032: 0xBAD4,\n\t48523 - 44032: 0x94C2,\n\t48524 - 44032: 0x94C3,\n\t48525 - 44032: 0x94C4,\n\t48526 - 44032: 0x94C5,\n\t48527 - 44032: 0x94C6,\n\t48528 - 44032: 0xBAD5,\n\t48529 - 44032: 0xBAD6,\n\t48530 - 44032: 0x94C7,\n\t48531 - 44032: 0xBAD7,\n\t48532 - 44032: 0x94C8,\n\t48533 - 44032: 0xBAD8,\n\t48534 - 44032: 0x94C9,\n\t48535 - 44032: 0x94CA,\n\t48536 - 44032: 0x94CB,\n\t48537 - 44032: 0xBAD9,\n\t48538 - 44032: 0xBADA,\n\t48539 - 44032: 0x94CC,\n\t48540 - 44032: 0xBADB,\n\t48541 - 44032: 0x94CD,\n\t48542 - 44032: 0x94CE,\n\t48543 - 44032: 0x94CF,\n\t48544 - 44032: 0x94D0,\n\t48545 - 44032: 0x94D1,\n\t48546 - 44032: 0x94D2,\n\t48547 - 44032: 0x94D3,\n\t48548 - 44032: 0xBADC,\n\t48549 - 44032: 0x94D4,\n\t48550 - 44032: 0x94D5,\n\t48551 - 44032: 0x94D6,\n\t48552 - 44032: 0x94D7,\n\t48553 - 44032: 0x94D8,\n\t48554 - 44032: 0x94D9,\n\t48555 - 44032: 0x94DA,\n\t48556 - 44032: 0x94DB,\n\t48557 - 44032: 0x94DC,\n\t48558 - 44032: 0x94DD,\n\t48559 - 44032: 0x94DE,\n\t48560 - 44032: 0xBADD,\n\t48561 - 44032: 0x94DF,\n\t48562 - 44032: 0x94E0,\n\t48563 - 44032: 0x94E1,\n\t48564 - 44032: 0x94E2,\n\t48565 - 44032: 0x94E3,\n\t48566 - 44032: 0x94E4,\n\t48567 - 44032: 0x94E5,\n\t48568 - 44032: 0xBADE,\n\t48569 - 44032: 0x94E6,\n\t48570 - 44032: 0x94E7,\n\t48571 - 44032: 0x94E8,\n\t48572 - 44032: 0x94E9,\n\t48573 - 44032: 0x94EA,\n\t48574 - 44032: 0x94EB,\n\t48575 - 44032: 0x94EC,\n\t48576 - 44032: 0x94ED,\n\t48577 - 44032: 0x94EE,\n\t48578 - 44032: 0x94EF,\n\t48579 - 44032: 0x94F0,\n\t48580 - 44032: 0x94F1,\n\t48581 - 44032: 0x94F2,\n\t48582 - 44032: 0x94F3,\n\t48583 - 44032: 0x94F4,\n\t48584 - 44032: 0x94F5,\n\t48585 - 44032: 0x94F6,\n\t48586 - 44032: 0x94F7,\n\t48587 - 44032: 0x94F8,\n\t48588 - 44032: 0x94F9,\n\t48589 - 44032: 0x94FA,\n\t48590 - 44032: 0x94FB,\n\t48591 - 44032: 0x94FC,\n\t48592 - 44032: 0x94FD,\n\t48593 - 44032: 0x94FE,\n\t48594 - 44032: 0x9541,\n\t48595 - 44032: 0x9542,\n\t48596 - 44032: 0xBADF,\n\t48597 - 44032: 0xBAE0,\n\t48598 - 44032: 0x9543,\n\t48599 - 44032: 0x9544,\n\t48600 - 44032: 0xBAE1,\n\t48601 - 44032: 0x9545,\n\t48602 - 44032: 0x9546,\n\t48603 - 44032: 0x9547,\n\t48604 - 44032: 0xBAE2,\n\t48605 - 44032: 0x9548,\n\t48606 - 44032: 0x9549,\n\t48607 - 44032: 0x954A,\n\t48608 - 44032: 0x954B,\n\t48609 - 44032: 0x954C,\n\t48610 - 44032: 0x954D,\n\t48611 - 44032: 0x954E,\n\t48612 - 44032: 0x954F,\n\t48613 - 44032: 0x9550,\n\t48614 - 44032: 0x9551,\n\t48615 - 44032: 0x9552,\n\t48616 - 44032: 0x9553,\n\t48617 - 44032: 0xBAE3,\n\t48618 - 44032: 0x9554,\n\t48619 - 44032: 0x9555,\n\t48620 - 44032: 0x9556,\n\t48621 - 44032: 0x9557,\n\t48622 - 44032: 0x9558,\n\t48623 - 44032: 0x9559,\n\t48624 - 44032: 0xBAE4,\n\t48625 - 44032: 0x955A,\n\t48626 - 44032: 0x9561,\n\t48627 - 44032: 0x9562,\n\t48628 - 44032: 0xBAE5,\n\t48629 - 44032: 0x9563,\n\t48630 - 44032: 0x9564,\n\t48631 - 44032: 0x9565,\n\t48632 - 44032: 0xBAE6,\n\t48633 - 44032: 0x9566,\n\t48634 - 44032: 0x9567,\n\t48635 - 44032: 0x9568,\n\t48636 - 44032: 0x9569,\n\t48637 - 44032: 0x956A,\n\t48638 - 44032: 0x956B,\n\t48639 - 44032: 0x956C,\n\t48640 - 44032: 0xBAE7,\n\t48641 - 44032: 0x956D,\n\t48642 - 44032: 0x956E,\n\t48643 - 44032: 0xBAE8,\n\t48644 - 44032: 0x956F,\n\t48645 - 44032: 0xBAE9,\n\t48646 - 44032: 0x9570,\n\t48647 - 44032: 0x9571,\n\t48648 - 44032: 0x9572,\n\t48649 - 44032: 0x9573,\n\t48650 - 44032: 0x9574,\n\t48651 - 44032: 0x9575,\n\t48652 - 44032: 0xBAEA,\n\t48653 - 44032: 0xBAEB,\n\t48654 - 44032: 0x9576,\n\t48655 - 44032: 0x9577,\n\t48656 - 44032: 0xBAEC,\n\t48657 - 44032: 0x9578,\n\t48658 - 44032: 0x9579,\n\t48659 - 44032: 0x957A,\n\t48660 - 44032: 0xBAED,\n\t48661 - 44032: 0x9581,\n\t48662 - 44032: 0x9582,\n\t48663 - 44032: 0x9583,\n\t48664 - 44032: 0x9584,\n\t48665 - 44032: 0x9585,\n\t48666 - 44032: 0x9586,\n\t48667 - 44032: 0x9587,\n\t48668 - 44032: 0xBAEE,\n\t48669 - 44032: 0xBAEF,\n\t48670 - 44032: 0x9588,\n\t48671 - 44032: 0xBAF0,\n\t48672 - 44032: 0x9589,\n\t48673 - 44032: 0x958A,\n\t48674 - 44032: 0x958B,\n\t48675 - 44032: 0x958C,\n\t48676 - 44032: 0x958D,\n\t48677 - 44032: 0x958E,\n\t48678 - 44032: 0x958F,\n\t48679 - 44032: 0x9590,\n\t48680 - 44032: 0x9591,\n\t48681 - 44032: 0x9592,\n\t48682 - 44032: 0x9593,\n\t48683 - 44032: 0x9594,\n\t48684 - 44032: 0x9595,\n\t48685 - 44032: 0x9596,\n\t48686 - 44032: 0x9597,\n\t48687 - 44032: 0x9598,\n\t48688 - 44032: 0x9599,\n\t48689 - 44032: 0x959A,\n\t48690 - 44032: 0x959B,\n\t48691 - 44032: 0x959C,\n\t48692 - 44032: 0x959D,\n\t48693 - 44032: 0x959E,\n\t48694 - 44032: 0x959F,\n\t48695 - 44032: 0x95A0,\n\t48696 - 44032: 0x95A1,\n\t48697 - 44032: 0x95A2,\n\t48698 - 44032: 0x95A3,\n\t48699 - 44032: 0x95A4,\n\t48700 - 44032: 0x95A5,\n\t48701 - 44032: 0x95A6,\n\t48702 - 44032: 0x95A7,\n\t48703 - 44032: 0x95A8,\n\t48704 - 44032: 0x95A9,\n\t48705 - 44032: 0x95AA,\n\t48706 - 44032: 0x95AB,\n\t48707 - 44032: 0x95AC,\n\t48708 - 44032: 0xBAF1,\n\t48709 - 44032: 0xBAF2,\n\t48710 - 44032: 0x95AD,\n\t48711 - 44032: 0x95AE,\n\t48712 - 44032: 0xBAF3,\n\t48713 - 44032: 0x95AF,\n\t48714 - 44032: 0x95B0,\n\t48715 - 44032: 0x95B1,\n\t48716 - 44032: 0xBAF4,\n\t48717 - 44032: 0x95B2,\n\t48718 - 44032: 0xBAF5,\n\t48719 - 44032: 0x95B3,\n\t48720 - 44032: 0x95B4,\n\t48721 - 44032: 0x95B5,\n\t48722 - 44032: 0x95B6,\n\t48723 - 44032: 0x95B7,\n\t48724 - 44032: 0xBAF6,\n\t48725 - 44032: 0xBAF7,\n\t48726 - 44032: 0x95B8,\n\t48727 - 44032: 0xBAF8,\n\t48728 - 44032: 0x95B9,\n\t48729 - 44032: 0xBAF9,\n\t48730 - 44032: 0xBAFA,\n\t48731 - 44032: 0xBAFB,\n\t48732 - 44032: 0x95BA,\n\t48733 - 44032: 0x95BB,\n\t48734 - 44032: 0x95BC,\n\t48735 - 44032: 0x95BD,\n\t48736 - 44032: 0xBAFC,\n\t48737 - 44032: 0xBAFD,\n\t48738 - 44032: 0x95BE,\n\t48739 - 44032: 0x95BF,\n\t48740 - 44032: 0xBAFE,\n\t48741 - 44032: 0x95C0,\n\t48742 - 44032: 0x95C1,\n\t48743 - 44032: 0x95C2,\n\t48744 - 44032: 0xBBA1,\n\t48745 - 44032: 0x95C3,\n\t48746 - 44032: 0xBBA2,\n\t48747 - 44032: 0x95C4,\n\t48748 - 44032: 0x95C5,\n\t48749 - 44032: 0x95C6,\n\t48750 - 44032: 0x95C7,\n\t48751 - 44032: 0x95C8,\n\t48752 - 44032: 0xBBA3,\n\t48753 - 44032: 0xBBA4,\n\t48754 - 44032: 0x95C9,\n\t48755 - 44032: 0xBBA5,\n\t48756 - 44032: 0xBBA6,\n\t48757 - 44032: 0xBBA7,\n\t48758 - 44032: 0x95CA,\n\t48759 - 44032: 0x95CB,\n\t48760 - 44032: 0x95CC,\n\t48761 - 44032: 0x95CD,\n\t48762 - 44032: 0x95CE,\n\t48763 - 44032: 0xBBA8,\n\t48764 - 44032: 0xBBA9,\n\t48765 - 44032: 0xBBAA,\n\t48766 - 44032: 0x95CF,\n\t48767 - 44032: 0x95D0,\n\t48768 - 44032: 0xBBAB,\n\t48769 - 44032: 0x95D1,\n\t48770 - 44032: 0x95D2,\n\t48771 - 44032: 0x95D3,\n\t48772 - 44032: 0xBBAC,\n\t48773 - 44032: 0x95D4,\n\t48774 - 44032: 0x95D5,\n\t48775 - 44032: 0x95D6,\n\t48776 - 44032: 0x95D7,\n\t48777 - 44032: 0x95D8,\n\t48778 - 44032: 0x95D9,\n\t48779 - 44032: 0x95DA,\n\t48780 - 44032: 0xBBAD,\n\t48781 - 44032: 0xBBAE,\n\t48782 - 44032: 0x95DB,\n\t48783 - 44032: 0xBBAF,\n\t48784 - 44032: 0xBBB0,\n\t48785 - 44032: 0xBBB1,\n\t48786 - 44032: 0x95DC,\n\t48787 - 44032: 0x95DD,\n\t48788 - 44032: 0x95DE,\n\t48789 - 44032: 0x95DF,\n\t48790 - 44032: 0x95E0,\n\t48791 - 44032: 0x95E1,\n\t48792 - 44032: 0xBBB2,\n\t48793 - 44032: 0xBBB3,\n\t48794 - 44032: 0x95E2,\n\t48795 - 44032: 0x95E3,\n\t48796 - 44032: 0x95E4,\n\t48797 - 44032: 0x95E5,\n\t48798 - 44032: 0x95E6,\n\t48799 - 44032: 0x95E7,\n\t48800 - 44032: 0x95E8,\n\t48801 - 44032: 0x95E9,\n\t48802 - 44032: 0x95EA,\n\t48803 - 44032: 0x95EB,\n\t48804 - 44032: 0x95EC,\n\t48805 - 44032: 0x95ED,\n\t48806 - 44032: 0x95EE,\n\t48807 - 44032: 0x95EF,\n\t48808 - 44032: 0xBBB4,\n\t48809 - 44032: 0x95F0,\n\t48810 - 44032: 0x95F1,\n\t48811 - 44032: 0x95F2,\n\t48812 - 44032: 0x95F3,\n\t48813 - 44032: 0x95F4,\n\t48814 - 44032: 0x95F5,\n\t48815 - 44032: 0x95F6,\n\t48816 - 44032: 0x95F7,\n\t48817 - 44032: 0x95F8,\n\t48818 - 44032: 0x95F9,\n\t48819 - 44032: 0x95FA,\n\t48820 - 44032: 0x95FB,\n\t48821 - 44032: 0x95FC,\n\t48822 - 44032: 0x95FD,\n\t48823 - 44032: 0x95FE,\n\t48824 - 44032: 0x9641,\n\t48825 - 44032: 0x9642,\n\t48826 - 44032: 0x9643,\n\t48827 - 44032: 0x9644,\n\t48828 - 44032: 0x9645,\n\t48829 - 44032: 0x9646,\n\t48830 - 44032: 0x9647,\n\t48831 - 44032: 0x9648,\n\t48832 - 44032: 0x9649,\n\t48833 - 44032: 0x964A,\n\t48834 - 44032: 0x964B,\n\t48835 - 44032: 0x964C,\n\t48836 - 44032: 0x964D,\n\t48837 - 44032: 0x964E,\n\t48838 - 44032: 0x964F,\n\t48839 - 44032: 0x9650,\n\t48840 - 44032: 0x9651,\n\t48841 - 44032: 0x9652,\n\t48842 - 44032: 0x9653,\n\t48843 - 44032: 0x9654,\n\t48844 - 44032: 0x9655,\n\t48845 - 44032: 0x9656,\n\t48846 - 44032: 0x9657,\n\t48847 - 44032: 0x9658,\n\t48848 - 44032: 0xBBB5,\n\t48849 - 44032: 0xBBB6,\n\t48850 - 44032: 0x9659,\n\t48851 - 44032: 0x965A,\n\t48852 - 44032: 0xBBB7,\n\t48853 - 44032: 0x9661,\n\t48854 - 44032: 0x9662,\n\t48855 - 44032: 0xBBB8,\n\t48856 - 44032: 0xBBB9,\n\t48857 - 44032: 0x9663,\n\t48858 - 44032: 0x9664,\n\t48859 - 44032: 0x9665,\n\t48860 - 44032: 0x9666,\n\t48861 - 44032: 0x9667,\n\t48862 - 44032: 0x9668,\n\t48863 - 44032: 0x9669,\n\t48864 - 44032: 0xBBBA,\n\t48865 - 44032: 0x966A,\n\t48866 - 44032: 0x966B,\n\t48867 - 44032: 0xBBBB,\n\t48868 - 44032: 0xBBBC,\n\t48869 - 44032: 0xBBBD,\n\t48870 - 44032: 0x966C,\n\t48871 - 44032: 0x966D,\n\t48872 - 44032: 0x966E,\n\t48873 - 44032: 0x966F,\n\t48874 - 44032: 0x9670,\n\t48875 - 44032: 0x9671,\n\t48876 - 44032: 0xBBBE,\n\t48877 - 44032: 0x9672,\n\t48878 - 44032: 0x9673,\n\t48879 - 44032: 0x9674,\n\t48880 - 44032: 0x9675,\n\t48881 - 44032: 0x9676,\n\t48882 - 44032: 0x9677,\n\t48883 - 44032: 0x9678,\n\t48884 - 44032: 0x9679,\n\t48885 - 44032: 0x967A,\n\t48886 - 44032: 0x9681,\n\t48887 - 44032: 0x9682,\n\t48888 - 44032: 0x9683,\n\t48889 - 44032: 0x9684,\n\t48890 - 44032: 0x9685,\n\t48891 - 44032: 0x9686,\n\t48892 - 44032: 0x9687,\n\t48893 - 44032: 0x9688,\n\t48894 - 44032: 0x9689,\n\t48895 - 44032: 0x968A,\n\t48896 - 44032: 0x968B,\n\t48897 - 44032: 0xBBBF,\n\t48898 - 44032: 0x968C,\n\t48899 - 44032: 0x968D,\n\t48900 - 44032: 0x968E,\n\t48901 - 44032: 0x968F,\n\t48902 - 44032: 0x9690,\n\t48903 - 44032: 0x9691,\n\t48904 - 44032: 0xBBC0,\n\t48905 - 44032: 0xBBC1,\n\t48906 - 44032: 0x9692,\n\t48907 - 44032: 0x9693,\n\t48908 - 44032: 0x9694,\n\t48909 - 44032: 0x9695,\n\t48910 - 44032: 0x9696,\n\t48911 - 44032: 0x9697,\n\t48912 - 44032: 0x9698,\n\t48913 - 44032: 0x9699,\n\t48914 - 44032: 0x969A,\n\t48915 - 44032: 0x969B,\n\t48916 - 44032: 0x969C,\n\t48917 - 44032: 0x969D,\n\t48918 - 44032: 0x969E,\n\t48919 - 44032: 0x969F,\n\t48920 - 44032: 0xBBC2,\n\t48921 - 44032: 0xBBC3,\n\t48922 - 44032: 0x96A0,\n\t48923 - 44032: 0xBBC4,\n\t48924 - 44032: 0xBBC5,\n\t48925 - 44032: 0xBBC6,\n\t48926 - 44032: 0x96A1,\n\t48927 - 44032: 0x96A2,\n\t48928 - 44032: 0x96A3,\n\t48929 - 44032: 0x96A4,\n\t48930 - 44032: 0x96A5,\n\t48931 - 44032: 0x96A6,\n\t48932 - 44032: 0x96A7,\n\t48933 - 44032: 0x96A8,\n\t48934 - 44032: 0x96A9,\n\t48935 - 44032: 0x96AA,\n\t48936 - 44032: 0x96AB,\n\t48937 - 44032: 0x96AC,\n\t48938 - 44032: 0x96AD,\n\t48939 - 44032: 0x96AE,\n\t48940 - 44032: 0x96AF,\n\t48941 - 44032: 0x96B0,\n\t48942 - 44032: 0x96B1,\n\t48943 - 44032: 0x96B2,\n\t48944 - 44032: 0x96B3,\n\t48945 - 44032: 0x96B4,\n\t48946 - 44032: 0x96B5,\n\t48947 - 44032: 0x96B6,\n\t48948 - 44032: 0x96B7,\n\t48949 - 44032: 0x96B8,\n\t48950 - 44032: 0x96B9,\n\t48951 - 44032: 0x96BA,\n\t48952 - 44032: 0x96BB,\n\t48953 - 44032: 0x96BC,\n\t48954 - 44032: 0x96BD,\n\t48955 - 44032: 0x96BE,\n\t48956 - 44032: 0x96BF,\n\t48957 - 44032: 0x96C0,\n\t48958 - 44032: 0x96C1,\n\t48959 - 44032: 0x96C2,\n\t48960 - 44032: 0xBBC7,\n\t48961 - 44032: 0xBBC8,\n\t48962 - 44032: 0x96C3,\n\t48963 - 44032: 0x96C4,\n\t48964 - 44032: 0xBBC9,\n\t48965 - 44032: 0x96C5,\n\t48966 - 44032: 0x96C6,\n\t48967 - 44032: 0x96C7,\n\t48968 - 44032: 0xBBCA,\n\t48969 - 44032: 0x96C8,\n\t48970 - 44032: 0x96C9,\n\t48971 - 44032: 0x96CA,\n\t48972 - 44032: 0x96CB,\n\t48973 - 44032: 0x96CC,\n\t48974 - 44032: 0x96CD,\n\t48975 - 44032: 0x96CE,\n\t48976 - 44032: 0xBBCB,\n\t48977 - 44032: 0xBBCC,\n\t48978 - 44032: 0x96CF,\n\t48979 - 44032: 0x96D0,\n\t48980 - 44032: 0x96D1,\n\t48981 - 44032: 0xBBCD,\n\t48982 - 44032: 0x96D2,\n\t48983 - 44032: 0x96D3,\n\t48984 - 44032: 0x96D4,\n\t48985 - 44032: 0x96D5,\n\t48986 - 44032: 0x96D6,\n\t48987 - 44032: 0x96D7,\n\t48988 - 44032: 0x96D8,\n\t48989 - 44032: 0x96D9,\n\t48990 - 44032: 0x96DA,\n\t48991 - 44032: 0x96DB,\n\t48992 - 44032: 0x96DC,\n\t48993 - 44032: 0x96DD,\n\t48994 - 44032: 0x96DE,\n\t48995 - 44032: 0x96DF,\n\t48996 - 44032: 0x96E0,\n\t48997 - 44032: 0x96E1,\n\t48998 - 44032: 0x96E2,\n\t48999 - 44032: 0x96E3,\n\t49000 - 44032: 0x96E4,\n\t49001 - 44032: 0x96E5,\n\t49002 - 44032: 0x96E6,\n\t49003 - 44032: 0x96E7,\n\t49004 - 44032: 0x96E8,\n\t49005 - 44032: 0x96E9,\n\t49006 - 44032: 0x96EA,\n\t49007 - 44032: 0x96EB,\n\t49008 - 44032: 0x96EC,\n\t49009 - 44032: 0x96ED,\n\t49010 - 44032: 0x96EE,\n\t49011 - 44032: 0x96EF,\n\t49012 - 44032: 0x96F0,\n\t49013 - 44032: 0x96F1,\n\t49014 - 44032: 0x96F2,\n\t49015 - 44032: 0x96F3,\n\t49016 - 44032: 0x96F4,\n\t49017 - 44032: 0x96F5,\n\t49018 - 44032: 0x96F6,\n\t49019 - 44032: 0x96F7,\n\t49020 - 44032: 0x96F8,\n\t49021 - 44032: 0x96F9,\n\t49022 - 44032: 0x96FA,\n\t49023 - 44032: 0x96FB,\n\t49024 - 44032: 0x96FC,\n\t49025 - 44032: 0x96FD,\n\t49026 - 44032: 0x96FE,\n\t49027 - 44032: 0x9741,\n\t49028 - 44032: 0x9742,\n\t49029 - 44032: 0x9743,\n\t49030 - 44032: 0x9744,\n\t49031 - 44032: 0x9745,\n\t49032 - 44032: 0x9746,\n\t49033 - 44032: 0x9747,\n\t49034 - 44032: 0x9748,\n\t49035 - 44032: 0x9749,\n\t49036 - 44032: 0x974A,\n\t49037 - 44032: 0x974B,\n\t49038 - 44032: 0x974C,\n\t49039 - 44032: 0x974D,\n\t49040 - 44032: 0x974E,\n\t49041 - 44032: 0x974F,\n\t49042 - 44032: 0x9750,\n\t49043 - 44032: 0x9751,\n\t49044 - 44032: 0xBBCE,\n\t49045 - 44032: 0x9752,\n\t49046 - 44032: 0x9753,\n\t49047 - 44032: 0x9754,\n\t49048 - 44032: 0x9755,\n\t49049 - 44032: 0x9756,\n\t49050 - 44032: 0x9757,\n\t49051 - 44032: 0x9758,\n\t49052 - 44032: 0x9759,\n\t49053 - 44032: 0x975A,\n\t49054 - 44032: 0x9761,\n\t49055 - 44032: 0x9762,\n\t49056 - 44032: 0x9763,\n\t49057 - 44032: 0x9764,\n\t49058 - 44032: 0x9765,\n\t49059 - 44032: 0x9766,\n\t49060 - 44032: 0x9767,\n\t49061 - 44032: 0x9768,\n\t49062 - 44032: 0x9769,\n\t49063 - 44032: 0x976A,\n\t49064 - 44032: 0x976B,\n\t49065 - 44032: 0x976C,\n\t49066 - 44032: 0x976D,\n\t49067 - 44032: 0x976E,\n\t49068 - 44032: 0x976F,\n\t49069 - 44032: 0x9770,\n\t49070 - 44032: 0x9771,\n\t49071 - 44032: 0x9772,\n\t49072 - 44032: 0xBBCF,\n\t49073 - 44032: 0x9773,\n\t49074 - 44032: 0x9774,\n\t49075 - 44032: 0x9775,\n\t49076 - 44032: 0x9776,\n\t49077 - 44032: 0x9777,\n\t49078 - 44032: 0x9778,\n\t49079 - 44032: 0x9779,\n\t49080 - 44032: 0x977A,\n\t49081 - 44032: 0x9781,\n\t49082 - 44032: 0x9782,\n\t49083 - 44032: 0x9783,\n\t49084 - 44032: 0x9784,\n\t49085 - 44032: 0x9785,\n\t49086 - 44032: 0x9786,\n\t49087 - 44032: 0x9787,\n\t49088 - 44032: 0x9788,\n\t49089 - 44032: 0x9789,\n\t49090 - 44032: 0x978A,\n\t49091 - 44032: 0x978B,\n\t49092 - 44032: 0x978C,\n\t49093 - 44032: 0xBBD0,\n\t49094 - 44032: 0x978D,\n\t49095 - 44032: 0x978E,\n\t49096 - 44032: 0x978F,\n\t49097 - 44032: 0x9790,\n\t49098 - 44032: 0x9791,\n\t49099 - 44032: 0x9792,\n\t49100 - 44032: 0xBBD1,\n\t49101 - 44032: 0xBBD2,\n\t49102 - 44032: 0x9793,\n\t49103 - 44032: 0x9794,\n\t49104 - 44032: 0xBBD3,\n\t49105 - 44032: 0x9795,\n\t49106 - 44032: 0x9796,\n\t49107 - 44032: 0x9797,\n\t49108 - 44032: 0xBBD4,\n\t49109 - 44032: 0x9798,\n\t49110 - 44032: 0x9799,\n\t49111 - 44032: 0x979A,\n\t49112 - 44032: 0x979B,\n\t49113 - 44032: 0x979C,\n\t49114 - 44032: 0x979D,\n\t49115 - 44032: 0x979E,\n\t49116 - 44032: 0xBBD5,\n\t49117 - 44032: 0x979F,\n\t49118 - 44032: 0x97A0,\n\t49119 - 44032: 0xBBD6,\n\t49120 - 44032: 0x97A1,\n\t49121 - 44032: 0xBBD7,\n\t49122 - 44032: 0x97A2,\n\t49123 - 44032: 0x97A3,\n\t49124 - 44032: 0x97A4,\n\t49125 - 44032: 0x97A5,\n\t49126 - 44032: 0x97A6,\n\t49127 - 44032: 0x97A7,\n\t49128 - 44032: 0x97A8,\n\t49129 - 44032: 0x97A9,\n\t49130 - 44032: 0x97AA,\n\t49131 - 44032: 0x97AB,\n\t49132 - 44032: 0x97AC,\n\t49133 - 44032: 0x97AD,\n\t49134 - 44032: 0x97AE,\n\t49135 - 44032: 0x97AF,\n\t49136 - 44032: 0x97B0,\n\t49137 - 44032: 0x97B1,\n\t49138 - 44032: 0x97B2,\n\t49139 - 44032: 0x97B3,\n\t49140 - 44032: 0x97B4,\n\t49141 - 44032: 0x97B5,\n\t49142 - 44032: 0x97B6,\n\t49143 - 44032: 0x97B7,\n\t49144 - 44032: 0x97B8,\n\t49145 - 44032: 0x97B9,\n\t49146 - 44032: 0x97BA,\n\t49147 - 44032: 0x97BB,\n\t49148 - 44032: 0x97BC,\n\t49149 - 44032: 0x97BD,\n\t49150 - 44032: 0x97BE,\n\t49151 - 44032: 0x97BF,\n\t49152 - 44032: 0x97C0,\n\t49153 - 44032: 0x97C1,\n\t49154 - 44032: 0x97C2,\n\t49155 - 44032: 0x97C3,\n\t49156 - 44032: 0x97C4,\n\t49157 - 44032: 0x97C5,\n\t49158 - 44032: 0x97C6,\n\t49159 - 44032: 0x97C7,\n\t49160 - 44032: 0x97C8,\n\t49161 - 44032: 0x97C9,\n\t49162 - 44032: 0x97CA,\n\t49163 - 44032: 0x97CB,\n\t49164 - 44032: 0x97CC,\n\t49165 - 44032: 0x97CD,\n\t49166 - 44032: 0x97CE,\n\t49167 - 44032: 0x97CF,\n\t49168 - 44032: 0x97D0,\n\t49169 - 44032: 0x97D1,\n\t49170 - 44032: 0x97D2,\n\t49171 - 44032: 0x97D3,\n\t49172 - 44032: 0x97D4,\n\t49173 - 44032: 0x97D5,\n\t49174 - 44032: 0x97D6,\n\t49175 - 44032: 0x97D7,\n\t49176 - 44032: 0x97D8,\n\t49177 - 44032: 0x97D9,\n\t49178 - 44032: 0x97DA,\n\t49179 - 44032: 0x97DB,\n\t49180 - 44032: 0x97DC,\n\t49181 - 44032: 0x97DD,\n\t49182 - 44032: 0x97DE,\n\t49183 - 44032: 0x97DF,\n\t49184 - 44032: 0x97E0,\n\t49185 - 44032: 0x97E1,\n\t49186 - 44032: 0x97E2,\n\t49187 - 44032: 0x97E3,\n\t49188 - 44032: 0x97E4,\n\t49189 - 44032: 0x97E5,\n\t49190 - 44032: 0x97E6,\n\t49191 - 44032: 0x97E7,\n\t49192 - 44032: 0x97E8,\n\t49193 - 44032: 0x97E9,\n\t49194 - 44032: 0x97EA,\n\t49195 - 44032: 0x97EB,\n\t49196 - 44032: 0x97EC,\n\t49197 - 44032: 0x97ED,\n\t49198 - 44032: 0x97EE,\n\t49199 - 44032: 0x97EF,\n\t49200 - 44032: 0x97F0,\n\t49201 - 44032: 0x97F1,\n\t49202 - 44032: 0x97F2,\n\t49203 - 44032: 0x97F3,\n\t49204 - 44032: 0x97F4,\n\t49205 - 44032: 0x97F5,\n\t49206 - 44032: 0x97F6,\n\t49207 - 44032: 0x97F7,\n\t49208 - 44032: 0x97F8,\n\t49209 - 44032: 0x97F9,\n\t49210 - 44032: 0x97FA,\n\t49211 - 44032: 0x97FB,\n\t49212 - 44032: 0xBBD8,\n\t49213 - 44032: 0x97FC,\n\t49214 - 44032: 0x97FD,\n\t49215 - 44032: 0x97FE,\n\t49216 - 44032: 0x9841,\n\t49217 - 44032: 0x9842,\n\t49218 - 44032: 0x9843,\n\t49219 - 44032: 0x9844,\n\t49220 - 44032: 0x9845,\n\t49221 - 44032: 0x9846,\n\t49222 - 44032: 0x9847,\n\t49223 - 44032: 0x9848,\n\t49224 - 44032: 0x9849,\n\t49225 - 44032: 0x984A,\n\t49226 - 44032: 0x984B,\n\t49227 - 44032: 0x984C,\n\t49228 - 44032: 0x984D,\n\t49229 - 44032: 0x984E,\n\t49230 - 44032: 0x984F,\n\t49231 - 44032: 0x9850,\n\t49232 - 44032: 0x9851,\n\t49233 - 44032: 0xBBD9,\n\t49234 - 44032: 0x9852,\n\t49235 - 44032: 0x9853,\n\t49236 - 44032: 0x9854,\n\t49237 - 44032: 0x9855,\n\t49238 - 44032: 0x9856,\n\t49239 - 44032: 0x9857,\n\t49240 - 44032: 0xBBDA,\n\t49241 - 44032: 0x9858,\n\t49242 - 44032: 0x9859,\n\t49243 - 44032: 0x985A,\n\t49244 - 44032: 0xBBDB,\n\t49245 - 44032: 0x9861,\n\t49246 - 44032: 0x9862,\n\t49247 - 44032: 0x9863,\n\t49248 - 44032: 0xBBDC,\n\t49249 - 44032: 0x9864,\n\t49250 - 44032: 0x9865,\n\t49251 - 44032: 0x9866,\n\t49252 - 44032: 0x9867,\n\t49253 - 44032: 0x9868,\n\t49254 - 44032: 0x9869,\n\t49255 - 44032: 0x986A,\n\t49256 - 44032: 0xBBDD,\n\t49257 - 44032: 0xBBDE,\n\t49258 - 44032: 0x986B,\n\t49259 - 44032: 0x986C,\n\t49260 - 44032: 0x986D,\n\t49261 - 44032: 0x986E,\n\t49262 - 44032: 0x986F,\n\t49263 - 44032: 0x9870,\n\t49264 - 44032: 0x9871,\n\t49265 - 44032: 0x9872,\n\t49266 - 44032: 0x9873,\n\t49267 - 44032: 0x9874,\n\t49268 - 44032: 0x9875,\n\t49269 - 44032: 0x9876,\n\t49270 - 44032: 0x9877,\n\t49271 - 44032: 0x9878,\n\t49272 - 44032: 0x9879,\n\t49273 - 44032: 0x987A,\n\t49274 - 44032: 0x9881,\n\t49275 - 44032: 0x9882,\n\t49276 - 44032: 0x9883,\n\t49277 - 44032: 0x9884,\n\t49278 - 44032: 0x9885,\n\t49279 - 44032: 0x9886,\n\t49280 - 44032: 0x9887,\n\t49281 - 44032: 0x9888,\n\t49282 - 44032: 0x9889,\n\t49283 - 44032: 0x988A,\n\t49284 - 44032: 0x988B,\n\t49285 - 44032: 0x988C,\n\t49286 - 44032: 0x988D,\n\t49287 - 44032: 0x988E,\n\t49288 - 44032: 0x988F,\n\t49289 - 44032: 0x9890,\n\t49290 - 44032: 0x9891,\n\t49291 - 44032: 0x9892,\n\t49292 - 44032: 0x9893,\n\t49293 - 44032: 0x9894,\n\t49294 - 44032: 0x9895,\n\t49295 - 44032: 0x9896,\n\t49296 - 44032: 0xBBDF,\n\t49297 - 44032: 0xBBE0,\n\t49298 - 44032: 0x9897,\n\t49299 - 44032: 0x9898,\n\t49300 - 44032: 0xBBE1,\n\t49301 - 44032: 0x9899,\n\t49302 - 44032: 0x989A,\n\t49303 - 44032: 0x989B,\n\t49304 - 44032: 0xBBE2,\n\t49305 - 44032: 0x989C,\n\t49306 - 44032: 0x989D,\n\t49307 - 44032: 0x989E,\n\t49308 - 44032: 0x989F,\n\t49309 - 44032: 0x98A0,\n\t49310 - 44032: 0x98A1,\n\t49311 - 44032: 0x98A2,\n\t49312 - 44032: 0xBBE3,\n\t49313 - 44032: 0xBBE4,\n\t49314 - 44032: 0x98A3,\n\t49315 - 44032: 0xBBE5,\n\t49316 - 44032: 0x98A4,\n\t49317 - 44032: 0xBBE6,\n\t49318 - 44032: 0x98A5,\n\t49319 - 44032: 0x98A6,\n\t49320 - 44032: 0x98A7,\n\t49321 - 44032: 0x98A8,\n\t49322 - 44032: 0x98A9,\n\t49323 - 44032: 0x98AA,\n\t49324 - 44032: 0xBBE7,\n\t49325 - 44032: 0xBBE8,\n\t49326 - 44032: 0x98AB,\n\t49327 - 44032: 0xBBE9,\n\t49328 - 44032: 0xBBEA,\n\t49329 - 44032: 0x98AC,\n\t49330 - 44032: 0x98AD,\n\t49331 - 44032: 0xBBEB,\n\t49332 - 44032: 0xBBEC,\n\t49333 - 44032: 0xBBED,\n\t49334 - 44032: 0xBBEE,\n\t49335 - 44032: 0x98AE,\n\t49336 - 44032: 0x98AF,\n\t49337 - 44032: 0x98B0,\n\t49338 - 44032: 0x98B1,\n\t49339 - 44032: 0x98B2,\n\t49340 - 44032: 0xBBEF,\n\t49341 - 44032: 0xBBF0,\n\t49342 - 44032: 0x98B3,\n\t49343 - 44032: 0xBBF1,\n\t49344 - 44032: 0xBBF2,\n\t49345 - 44032: 0xBBF3,\n\t49346 - 44032: 0x98B4,\n\t49347 - 44032: 0x98B5,\n\t49348 - 44032: 0x98B6,\n\t49349 - 44032: 0xBBF4,\n\t49350 - 44032: 0x98B7,\n\t49351 - 44032: 0x98B8,\n\t49352 - 44032: 0xBBF5,\n\t49353 - 44032: 0xBBF6,\n\t49354 - 44032: 0x98B9,\n\t49355 - 44032: 0x98BA,\n\t49356 - 44032: 0xBBF7,\n\t49357 - 44032: 0x98BB,\n\t49358 - 44032: 0x98BC,\n\t49359 - 44032: 0x98BD,\n\t49360 - 44032: 0xBBF8,\n\t49361 - 44032: 0x98BE,\n\t49362 - 44032: 0x98BF,\n\t49363 - 44032: 0x98C0,\n\t49364 - 44032: 0x98C1,\n\t49365 - 44032: 0x98C2,\n\t49366 - 44032: 0x98C3,\n\t49367 - 44032: 0x98C4,\n\t49368 - 44032: 0xBBF9,\n\t49369 - 44032: 0xBBFA,\n\t49370 - 44032: 0x98C5,\n\t49371 - 44032: 0xBBFB,\n\t49372 - 44032: 0xBBFC,\n\t49373 - 44032: 0xBBFD,\n\t49374 - 44032: 0x98C6,\n\t49375 - 44032: 0x98C7,\n\t49376 - 44032: 0x98C8,\n\t49377 - 44032: 0x98C9,\n\t49378 - 44032: 0x98CA,\n\t49379 - 44032: 0x98CB,\n\t49380 - 44032: 0xBBFE,\n\t49381 - 44032: 0xBCA1,\n\t49382 - 44032: 0x98CC,\n\t49383 - 44032: 0x98CD,\n\t49384 - 44032: 0xBCA2,\n\t49385 - 44032: 0x98CE,\n\t49386 - 44032: 0x98CF,\n\t49387 - 44032: 0x98D0,\n\t49388 - 44032: 0xBCA3,\n\t49389 - 44032: 0x98D1,\n\t49390 - 44032: 0x98D2,\n\t49391 - 44032: 0x98D3,\n\t49392 - 44032: 0x98D4,\n\t49393 - 44032: 0x98D5,\n\t49394 - 44032: 0x98D6,\n\t49395 - 44032: 0x98D7,\n\t49396 - 44032: 0xBCA4,\n\t49397 - 44032: 0xBCA5,\n\t49398 - 44032: 0x98D8,\n\t49399 - 44032: 0xBCA6,\n\t49400 - 44032: 0x98D9,\n\t49401 - 44032: 0xBCA7,\n\t49402 - 44032: 0x98DA,\n\t49403 - 44032: 0x98DB,\n\t49404 - 44032: 0x98DC,\n\t49405 - 44032: 0x98DD,\n\t49406 - 44032: 0x98DE,\n\t49407 - 44032: 0x98DF,\n\t49408 - 44032: 0xBCA8,\n\t49409 - 44032: 0x98E0,\n\t49410 - 44032: 0x98E1,\n\t49411 - 44032: 0x98E2,\n\t49412 - 44032: 0xBCA9,\n\t49413 - 44032: 0x98E3,\n\t49414 - 44032: 0x98E4,\n\t49415 - 44032: 0x98E5,\n\t49416 - 44032: 0xBCAA,\n\t49417 - 44032: 0x98E6,\n\t49418 - 44032: 0x98E7,\n\t49419 - 44032: 0x98E8,\n\t49420 - 44032: 0x98E9,\n\t49421 - 44032: 0x98EA,\n\t49422 - 44032: 0x98EB,\n\t49423 - 44032: 0x98EC,\n\t49424 - 44032: 0xBCAB,\n\t49425 - 44032: 0x98ED,\n\t49426 - 44032: 0x98EE,\n\t49427 - 44032: 0x98EF,\n\t49428 - 44032: 0x98F0,\n\t49429 - 44032: 0xBCAC,\n\t49430 - 44032: 0x98F1,\n\t49431 - 44032: 0x98F2,\n\t49432 - 44032: 0x98F3,\n\t49433 - 44032: 0x98F4,\n\t49434 - 44032: 0x98F5,\n\t49435 - 44032: 0x98F6,\n\t49436 - 44032: 0xBCAD,\n\t49437 - 44032: 0xBCAE,\n\t49438 - 44032: 0xBCAF,\n\t49439 - 44032: 0xBCB0,\n\t49440 - 44032: 0xBCB1,\n\t49441 - 44032: 0x98F7,\n\t49442 - 44032: 0x98F8,\n\t49443 - 44032: 0xBCB2,\n\t49444 - 44032: 0xBCB3,\n\t49445 - 44032: 0x98F9,\n\t49446 - 44032: 0xBCB4,\n\t49447 - 44032: 0xBCB5,\n\t49448 - 44032: 0x98FA,\n\t49449 - 44032: 0x98FB,\n\t49450 - 44032: 0x98FC,\n\t49451 - 44032: 0x98FD,\n\t49452 - 44032: 0xBCB6,\n\t49453 - 44032: 0xBCB7,\n\t49454 - 44032: 0x98FE,\n\t49455 - 44032: 0xBCB8,\n\t49456 - 44032: 0xBCB9,\n\t49457 - 44032: 0xBCBA,\n\t49458 - 44032: 0x9941,\n\t49459 - 44032: 0x9942,\n\t49460 - 44032: 0x9943,\n\t49461 - 44032: 0x9944,\n\t49462 - 44032: 0xBCBB,\n\t49463 - 44032: 0x9945,\n\t49464 - 44032: 0xBCBC,\n\t49465 - 44032: 0xBCBD,\n\t49466 - 44032: 0x9946,\n\t49467 - 44032: 0x9947,\n\t49468 - 44032: 0xBCBE,\n\t49469 - 44032: 0x9948,\n\t49470 - 44032: 0x9949,\n\t49471 - 44032: 0x994A,\n\t49472 - 44032: 0xBCBF,\n\t49473 - 44032: 0x994B,\n\t49474 - 44032: 0x994C,\n\t49475 - 44032: 0x994D,\n\t49476 - 44032: 0x994E,\n\t49477 - 44032: 0x994F,\n\t49478 - 44032: 0x9950,\n\t49479 - 44032: 0x9951,\n\t49480 - 44032: 0xBCC0,\n\t49481 - 44032: 0xBCC1,\n\t49482 - 44032: 0x9952,\n\t49483 - 44032: 0xBCC2,\n\t49484 - 44032: 0xBCC3,\n\t49485 - 44032: 0xBCC4,\n\t49486 - 44032: 0x9953,\n\t49487 - 44032: 0x9954,\n\t49488 - 44032: 0x9955,\n\t49489 - 44032: 0x9956,\n\t49490 - 44032: 0x9957,\n\t49491 - 44032: 0x9958,\n\t49492 - 44032: 0xBCC5,\n\t49493 - 44032: 0xBCC6,\n\t49494 - 44032: 0x9959,\n\t49495 - 44032: 0x995A,\n\t49496 - 44032: 0xBCC7,\n\t49497 - 44032: 0x9961,\n\t49498 - 44032: 0x9962,\n\t49499 - 44032: 0x9963,\n\t49500 - 44032: 0xBCC8,\n\t49501 - 44032: 0x9964,\n\t49502 - 44032: 0x9965,\n\t49503 - 44032: 0x9966,\n\t49504 - 44032: 0x9967,\n\t49505 - 44032: 0x9968,\n\t49506 - 44032: 0x9969,\n\t49507 - 44032: 0x996A,\n\t49508 - 44032: 0xBCC9,\n\t49509 - 44032: 0xBCCA,\n\t49510 - 44032: 0x996B,\n\t49511 - 44032: 0xBCCB,\n\t49512 - 44032: 0xBCCC,\n\t49513 - 44032: 0xBCCD,\n\t49514 - 44032: 0x996C,\n\t49515 - 44032: 0x996D,\n\t49516 - 44032: 0x996E,\n\t49517 - 44032: 0x996F,\n\t49518 - 44032: 0x9970,\n\t49519 - 44032: 0x9971,\n\t49520 - 44032: 0xBCCE,\n\t49521 - 44032: 0x9972,\n\t49522 - 44032: 0x9973,\n\t49523 - 44032: 0x9974,\n\t49524 - 44032: 0xBCCF,\n\t49525 - 44032: 0x9975,\n\t49526 - 44032: 0x9976,\n\t49527 - 44032: 0x9977,\n\t49528 - 44032: 0xBCD0,\n\t49529 - 44032: 0x9978,\n\t49530 - 44032: 0x9979,\n\t49531 - 44032: 0x997A,\n\t49532 - 44032: 0x9981,\n\t49533 - 44032: 0x9982,\n\t49534 - 44032: 0x9983,\n\t49535 - 44032: 0x9984,\n\t49536 - 44032: 0x9985,\n\t49537 - 44032: 0x9986,\n\t49538 - 44032: 0x9987,\n\t49539 - 44032: 0x9988,\n\t49540 - 44032: 0x9989,\n\t49541 - 44032: 0xBCD1,\n\t49542 - 44032: 0x998A,\n\t49543 - 44032: 0x998B,\n\t49544 - 44032: 0x998C,\n\t49545 - 44032: 0x998D,\n\t49546 - 44032: 0x998E,\n\t49547 - 44032: 0x998F,\n\t49548 - 44032: 0xBCD2,\n\t49549 - 44032: 0xBCD3,\n\t49550 - 44032: 0xBCD4,\n\t49551 - 44032: 0x9990,\n\t49552 - 44032: 0xBCD5,\n\t49553 - 44032: 0x9991,\n\t49554 - 44032: 0x9992,\n\t49555 - 44032: 0x9993,\n\t49556 - 44032: 0xBCD6,\n\t49557 - 44032: 0x9994,\n\t49558 - 44032: 0xBCD7,\n\t49559 - 44032: 0x9995,\n\t49560 - 44032: 0x9996,\n\t49561 - 44032: 0x9997,\n\t49562 - 44032: 0x9998,\n\t49563 - 44032: 0x9999,\n\t49564 - 44032: 0xBCD8,\n\t49565 - 44032: 0xBCD9,\n\t49566 - 44032: 0x999A,\n\t49567 - 44032: 0xBCDA,\n\t49568 - 44032: 0x999B,\n\t49569 - 44032: 0xBCDB,\n\t49570 - 44032: 0x999C,\n\t49571 - 44032: 0x999D,\n\t49572 - 44032: 0x999E,\n\t49573 - 44032: 0xBCDC,\n\t49574 - 44032: 0x999F,\n\t49575 - 44032: 0x99A0,\n\t49576 - 44032: 0xBCDD,\n\t49577 - 44032: 0xBCDE,\n\t49578 - 44032: 0x99A1,\n\t49579 - 44032: 0x99A2,\n\t49580 - 44032: 0xBCDF,\n\t49581 - 44032: 0x99A3,\n\t49582 - 44032: 0x99A4,\n\t49583 - 44032: 0x99A5,\n\t49584 - 44032: 0xBCE0,\n\t49585 - 44032: 0x99A6,\n\t49586 - 44032: 0x99A7,\n\t49587 - 44032: 0x99A8,\n\t49588 - 44032: 0x99A9,\n\t49589 - 44032: 0x99AA,\n\t49590 - 44032: 0x99AB,\n\t49591 - 44032: 0x99AC,\n\t49592 - 44032: 0x99AD,\n\t49593 - 44032: 0x99AE,\n\t49594 - 44032: 0x99AF,\n\t49595 - 44032: 0x99B0,\n\t49596 - 44032: 0x99B1,\n\t49597 - 44032: 0xBCE1,\n\t49598 - 44032: 0x99B2,\n\t49599 - 44032: 0x99B3,\n\t49600 - 44032: 0x99B4,\n\t49601 - 44032: 0x99B5,\n\t49602 - 44032: 0x99B6,\n\t49603 - 44032: 0x99B7,\n\t49604 - 44032: 0xBCE2,\n\t49605 - 44032: 0x99B8,\n\t49606 - 44032: 0x99B9,\n\t49607 - 44032: 0x99BA,\n\t49608 - 44032: 0xBCE3,\n\t49609 - 44032: 0x99BB,\n\t49610 - 44032: 0x99BC,\n\t49611 - 44032: 0x99BD,\n\t49612 - 44032: 0xBCE4,\n\t49613 - 44032: 0x99BE,\n\t49614 - 44032: 0x99BF,\n\t49615 - 44032: 0x99C0,\n\t49616 - 44032: 0x99C1,\n\t49617 - 44032: 0x99C2,\n\t49618 - 44032: 0x99C3,\n\t49619 - 44032: 0x99C4,\n\t49620 - 44032: 0xBCE5,\n\t49621 - 44032: 0x99C5,\n\t49622 - 44032: 0x99C6,\n\t49623 - 44032: 0xBCE6,\n\t49624 - 44032: 0xBCE7,\n\t49625 - 44032: 0x99C7,\n\t49626 - 44032: 0x99C8,\n\t49627 - 44032: 0x99C9,\n\t49628 - 44032: 0x99CA,\n\t49629 - 44032: 0x99CB,\n\t49630 - 44032: 0x99CC,\n\t49631 - 44032: 0x99CD,\n\t49632 - 44032: 0xBCE8,\n\t49633 - 44032: 0x99CE,\n\t49634 - 44032: 0x99CF,\n\t49635 - 44032: 0x99D0,\n\t49636 - 44032: 0xBCE9,\n\t49637 - 44032: 0x99D1,\n\t49638 - 44032: 0x99D2,\n\t49639 - 44032: 0x99D3,\n\t49640 - 44032: 0xBCEA,\n\t49641 - 44032: 0x99D4,\n\t49642 - 44032: 0x99D5,\n\t49643 - 44032: 0x99D6,\n\t49644 - 44032: 0x99D7,\n\t49645 - 44032: 0x99D8,\n\t49646 - 44032: 0x99D9,\n\t49647 - 44032: 0x99DA,\n\t49648 - 44032: 0xBCEB,\n\t49649 - 44032: 0xBCEC,\n\t49650 - 44032: 0x99DB,\n\t49651 - 44032: 0xBCED,\n\t49652 - 44032: 0x99DC,\n\t49653 - 44032: 0x99DD,\n\t49654 - 44032: 0x99DE,\n\t49655 - 44032: 0x99DF,\n\t49656 - 44032: 0x99E0,\n\t49657 - 44032: 0x99E1,\n\t49658 - 44032: 0x99E2,\n\t49659 - 44032: 0x99E3,\n\t49660 - 44032: 0xBCEE,\n\t49661 - 44032: 0xBCEF,\n\t49662 - 44032: 0x99E4,\n\t49663 - 44032: 0x99E5,\n\t49664 - 44032: 0xBCF0,\n\t49665 - 44032: 0x99E6,\n\t49666 - 44032: 0x99E7,\n\t49667 - 44032: 0x99E8,\n\t49668 - 44032: 0xBCF1,\n\t49669 - 44032: 0x99E9,\n\t49670 - 44032: 0x99EA,\n\t49671 - 44032: 0x99EB,\n\t49672 - 44032: 0x99EC,\n\t49673 - 44032: 0x99ED,\n\t49674 - 44032: 0x99EE,\n\t49675 - 44032: 0x99EF,\n\t49676 - 44032: 0xBCF2,\n\t49677 - 44032: 0xBCF3,\n\t49678 - 44032: 0x99F0,\n\t49679 - 44032: 0xBCF4,\n\t49680 - 44032: 0x99F1,\n\t49681 - 44032: 0xBCF5,\n\t49682 - 44032: 0x99F2,\n\t49683 - 44032: 0x99F3,\n\t49684 - 44032: 0x99F4,\n\t49685 - 44032: 0x99F5,\n\t49686 - 44032: 0x99F6,\n\t49687 - 44032: 0x99F7,\n\t49688 - 44032: 0xBCF6,\n\t49689 - 44032: 0xBCF7,\n\t49690 - 44032: 0x99F8,\n\t49691 - 44032: 0x99F9,\n\t49692 - 44032: 0xBCF8,\n\t49693 - 44032: 0x99FA,\n\t49694 - 44032: 0x99FB,\n\t49695 - 44032: 0xBCF9,\n\t49696 - 44032: 0xBCFA,\n\t49697 - 44032: 0x99FC,\n\t49698 - 44032: 0x99FD,\n\t49699 - 44032: 0x99FE,\n\t49700 - 44032: 0x9A41,\n\t49701 - 44032: 0x9A42,\n\t49702 - 44032: 0x9A43,\n\t49703 - 44032: 0x9A44,\n\t49704 - 44032: 0xBCFB,\n\t49705 - 44032: 0xBCFC,\n\t49706 - 44032: 0x9A45,\n\t49707 - 44032: 0xBCFD,\n\t49708 - 44032: 0x9A46,\n\t49709 - 44032: 0xBCFE,\n\t49710 - 44032: 0x9A47,\n\t49711 - 44032: 0xBDA1,\n\t49712 - 44032: 0x9A48,\n\t49713 - 44032: 0xBDA2,\n\t49714 - 44032: 0xBDA3,\n\t49715 - 44032: 0x9A49,\n\t49716 - 44032: 0xBDA4,\n\t49717 - 44032: 0x9A4A,\n\t49718 - 44032: 0x9A4B,\n\t49719 - 44032: 0x9A4C,\n\t49720 - 44032: 0x9A4D,\n\t49721 - 44032: 0x9A4E,\n\t49722 - 44032: 0x9A4F,\n\t49723 - 44032: 0x9A50,\n\t49724 - 44032: 0x9A51,\n\t49725 - 44032: 0x9A52,\n\t49726 - 44032: 0x9A53,\n\t49727 - 44032: 0x9A54,\n\t49728 - 44032: 0x9A55,\n\t49729 - 44032: 0x9A56,\n\t49730 - 44032: 0x9A57,\n\t49731 - 44032: 0x9A58,\n\t49732 - 44032: 0x9A59,\n\t49733 - 44032: 0x9A5A,\n\t49734 - 44032: 0x9A61,\n\t49735 - 44032: 0x9A62,\n\t49736 - 44032: 0xBDA5,\n\t49737 - 44032: 0x9A63,\n\t49738 - 44032: 0x9A64,\n\t49739 - 44032: 0x9A65,\n\t49740 - 44032: 0x9A66,\n\t49741 - 44032: 0x9A67,\n\t49742 - 44032: 0x9A68,\n\t49743 - 44032: 0x9A69,\n\t49744 - 44032: 0xBDA6,\n\t49745 - 44032: 0xBDA7,\n\t49746 - 44032: 0x9A6A,\n\t49747 - 44032: 0x9A6B,\n\t49748 - 44032: 0xBDA8,\n\t49749 - 44032: 0x9A6C,\n\t49750 - 44032: 0x9A6D,\n\t49751 - 44032: 0x9A6E,\n\t49752 - 44032: 0xBDA9,\n\t49753 - 44032: 0x9A6F,\n\t49754 - 44032: 0x9A70,\n\t49755 - 44032: 0x9A71,\n\t49756 - 44032: 0x9A72,\n\t49757 - 44032: 0x9A73,\n\t49758 - 44032: 0x9A74,\n\t49759 - 44032: 0x9A75,\n\t49760 - 44032: 0xBDAA,\n\t49761 - 44032: 0x9A76,\n\t49762 - 44032: 0x9A77,\n\t49763 - 44032: 0x9A78,\n\t49764 - 44032: 0x9A79,\n\t49765 - 44032: 0xBDAB,\n\t49766 - 44032: 0x9A7A,\n\t49767 - 44032: 0x9A81,\n\t49768 - 44032: 0x9A82,\n\t49769 - 44032: 0x9A83,\n\t49770 - 44032: 0x9A84,\n\t49771 - 44032: 0x9A85,\n\t49772 - 44032: 0xBDAC,\n\t49773 - 44032: 0xBDAD,\n\t49774 - 44032: 0x9A86,\n\t49775 - 44032: 0x9A87,\n\t49776 - 44032: 0xBDAE,\n\t49777 - 44032: 0x9A88,\n\t49778 - 44032: 0x9A89,\n\t49779 - 44032: 0x9A8A,\n\t49780 - 44032: 0xBDAF,\n\t49781 - 44032: 0x9A8B,\n\t49782 - 44032: 0x9A8C,\n\t49783 - 44032: 0x9A8D,\n\t49784 - 44032: 0x9A8E,\n\t49785 - 44032: 0x9A8F,\n\t49786 - 44032: 0x9A90,\n\t49787 - 44032: 0x9A91,\n\t49788 - 44032: 0xBDB0,\n\t49789 - 44032: 0xBDB1,\n\t49790 - 44032: 0x9A92,\n\t49791 - 44032: 0xBDB2,\n\t49792 - 44032: 0x9A93,\n\t49793 - 44032: 0xBDB3,\n\t49794 - 44032: 0x9A94,\n\t49795 - 44032: 0x9A95,\n\t49796 - 44032: 0x9A96,\n\t49797 - 44032: 0x9A97,\n\t49798 - 44032: 0x9A98,\n\t49799 - 44032: 0x9A99,\n\t49800 - 44032: 0xBDB4,\n\t49801 - 44032: 0xBDB5,\n\t49802 - 44032: 0x9A9A,\n\t49803 - 44032: 0x9A9B,\n\t49804 - 44032: 0x9A9C,\n\t49805 - 44032: 0x9A9D,\n\t49806 - 44032: 0x9A9E,\n\t49807 - 44032: 0x9A9F,\n\t49808 - 44032: 0xBDB6,\n\t49809 - 44032: 0x9AA0,\n\t49810 - 44032: 0x9AA1,\n\t49811 - 44032: 0x9AA2,\n\t49812 - 44032: 0x9AA3,\n\t49813 - 44032: 0x9AA4,\n\t49814 - 44032: 0x9AA5,\n\t49815 - 44032: 0x9AA6,\n\t49816 - 44032: 0xBDB7,\n\t49817 - 44032: 0x9AA7,\n\t49818 - 44032: 0x9AA8,\n\t49819 - 44032: 0xBDB8,\n\t49820 - 44032: 0x9AA9,\n\t49821 - 44032: 0xBDB9,\n\t49822 - 44032: 0x9AAA,\n\t49823 - 44032: 0x9AAB,\n\t49824 - 44032: 0x9AAC,\n\t49825 - 44032: 0x9AAD,\n\t49826 - 44032: 0x9AAE,\n\t49827 - 44032: 0x9AAF,\n\t49828 - 44032: 0xBDBA,\n\t49829 - 44032: 0xBDBB,\n\t49830 - 44032: 0x9AB0,\n\t49831 - 44032: 0x9AB1,\n\t49832 - 44032: 0xBDBC,\n\t49833 - 44032: 0x9AB2,\n\t49834 - 44032: 0x9AB3,\n\t49835 - 44032: 0x9AB4,\n\t49836 - 44032: 0xBDBD,\n\t49837 - 44032: 0xBDBE,\n\t49838 - 44032: 0x9AB5,\n\t49839 - 44032: 0x9AB6,\n\t49840 - 44032: 0x9AB7,\n\t49841 - 44032: 0x9AB8,\n\t49842 - 44032: 0x9AB9,\n\t49843 - 44032: 0x9ABA,\n\t49844 - 44032: 0xBDBF,\n\t49845 - 44032: 0xBDC0,\n\t49846 - 44032: 0x9ABB,\n\t49847 - 44032: 0xBDC1,\n\t49848 - 44032: 0x9ABC,\n\t49849 - 44032: 0xBDC2,\n\t49850 - 44032: 0x9ABD,\n\t49851 - 44032: 0x9ABE,\n\t49852 - 44032: 0x9ABF,\n\t49853 - 44032: 0x9AC0,\n\t49854 - 44032: 0x9AC1,\n\t49855 - 44032: 0x9AC2,\n\t49856 - 44032: 0x9AC3,\n\t49857 - 44032: 0x9AC4,\n\t49858 - 44032: 0x9AC5,\n\t49859 - 44032: 0x9AC6,\n\t49860 - 44032: 0x9AC7,\n\t49861 - 44032: 0x9AC8,\n\t49862 - 44032: 0x9AC9,\n\t49863 - 44032: 0x9ACA,\n\t49864 - 44032: 0x9ACB,\n\t49865 - 44032: 0x9ACC,\n\t49866 - 44032: 0x9ACD,\n\t49867 - 44032: 0x9ACE,\n\t49868 - 44032: 0x9ACF,\n\t49869 - 44032: 0x9AD0,\n\t49870 - 44032: 0x9AD1,\n\t49871 - 44032: 0x9AD2,\n\t49872 - 44032: 0x9AD3,\n\t49873 - 44032: 0x9AD4,\n\t49874 - 44032: 0x9AD5,\n\t49875 - 44032: 0x9AD6,\n\t49876 - 44032: 0x9AD7,\n\t49877 - 44032: 0x9AD8,\n\t49878 - 44032: 0x9AD9,\n\t49879 - 44032: 0x9ADA,\n\t49880 - 44032: 0x9ADB,\n\t49881 - 44032: 0x9ADC,\n\t49882 - 44032: 0x9ADD,\n\t49883 - 44032: 0x9ADE,\n\t49884 - 44032: 0xBDC3,\n\t49885 - 44032: 0xBDC4,\n\t49886 - 44032: 0x9ADF,\n\t49887 - 44032: 0x9AE0,\n\t49888 - 44032: 0xBDC5,\n\t49889 - 44032: 0x9AE1,\n\t49890 - 44032: 0x9AE2,\n\t49891 - 44032: 0xBDC6,\n\t49892 - 44032: 0xBDC7,\n\t49893 - 44032: 0x9AE3,\n\t49894 - 44032: 0x9AE4,\n\t49895 - 44032: 0x9AE5,\n\t49896 - 44032: 0x9AE6,\n\t49897 - 44032: 0x9AE7,\n\t49898 - 44032: 0x9AE8,\n\t49899 - 44032: 0xBDC8,\n\t49900 - 44032: 0xBDC9,\n\t49901 - 44032: 0xBDCA,\n\t49902 - 44032: 0x9AE9,\n\t49903 - 44032: 0xBDCB,\n\t49904 - 44032: 0x9AEA,\n\t49905 - 44032: 0xBDCC,\n\t49906 - 44032: 0x9AEB,\n\t49907 - 44032: 0x9AEC,\n\t49908 - 44032: 0x9AED,\n\t49909 - 44032: 0x9AEE,\n\t49910 - 44032: 0xBDCD,\n\t49911 - 44032: 0x9AEF,\n\t49912 - 44032: 0xBDCE,\n\t49913 - 44032: 0xBDCF,\n\t49914 - 44032: 0x9AF0,\n\t49915 - 44032: 0xBDD0,\n\t49916 - 44032: 0xBDD1,\n\t49917 - 44032: 0x9AF1,\n\t49918 - 44032: 0x9AF2,\n\t49919 - 44032: 0x9AF3,\n\t49920 - 44032: 0xBDD2,\n\t49921 - 44032: 0x9AF4,\n\t49922 - 44032: 0x9AF5,\n\t49923 - 44032: 0x9AF6,\n\t49924 - 44032: 0x9AF7,\n\t49925 - 44032: 0x9AF8,\n\t49926 - 44032: 0x9AF9,\n\t49927 - 44032: 0x9AFA,\n\t49928 - 44032: 0xBDD3,\n\t49929 - 44032: 0xBDD4,\n\t49930 - 44032: 0x9AFB,\n\t49931 - 44032: 0x9AFC,\n\t49932 - 44032: 0xBDD5,\n\t49933 - 44032: 0xBDD6,\n\t49934 - 44032: 0x9AFD,\n\t49935 - 44032: 0x9AFE,\n\t49936 - 44032: 0x9B41,\n\t49937 - 44032: 0x9B42,\n\t49938 - 44032: 0x9B43,\n\t49939 - 44032: 0xBDD7,\n\t49940 - 44032: 0xBDD8,\n\t49941 - 44032: 0xBDD9,\n\t49942 - 44032: 0x9B44,\n\t49943 - 44032: 0x9B45,\n\t49944 - 44032: 0xBDDA,\n\t49945 - 44032: 0x9B46,\n\t49946 - 44032: 0x9B47,\n\t49947 - 44032: 0x9B48,\n\t49948 - 44032: 0xBDDB,\n\t49949 - 44032: 0x9B49,\n\t49950 - 44032: 0x9B4A,\n\t49951 - 44032: 0x9B4B,\n\t49952 - 44032: 0x9B4C,\n\t49953 - 44032: 0x9B4D,\n\t49954 - 44032: 0x9B4E,\n\t49955 - 44032: 0x9B4F,\n\t49956 - 44032: 0xBDDC,\n\t49957 - 44032: 0xBDDD,\n\t49958 - 44032: 0x9B50,\n\t49959 - 44032: 0x9B51,\n\t49960 - 44032: 0xBDDE,\n\t49961 - 44032: 0xBDDF,\n\t49962 - 44032: 0x9B52,\n\t49963 - 44032: 0x9B53,\n\t49964 - 44032: 0x9B54,\n\t49965 - 44032: 0x9B55,\n\t49966 - 44032: 0x9B56,\n\t49967 - 44032: 0x9B57,\n\t49968 - 44032: 0x9B58,\n\t49969 - 44032: 0x9B59,\n\t49970 - 44032: 0x9B5A,\n\t49971 - 44032: 0x9B61,\n\t49972 - 44032: 0x9B62,\n\t49973 - 44032: 0x9B63,\n\t49974 - 44032: 0x9B64,\n\t49975 - 44032: 0x9B65,\n\t49976 - 44032: 0x9B66,\n\t49977 - 44032: 0x9B67,\n\t49978 - 44032: 0x9B68,\n\t49979 - 44032: 0x9B69,\n\t49980 - 44032: 0x9B6A,\n\t49981 - 44032: 0x9B6B,\n\t49982 - 44032: 0x9B6C,\n\t49983 - 44032: 0x9B6D,\n\t49984 - 44032: 0x9B6E,\n\t49985 - 44032: 0x9B6F,\n\t49986 - 44032: 0x9B70,\n\t49987 - 44032: 0x9B71,\n\t49988 - 44032: 0x9B72,\n\t49989 - 44032: 0xBDE0,\n\t49990 - 44032: 0x9B73,\n\t49991 - 44032: 0x9B74,\n\t49992 - 44032: 0x9B75,\n\t49993 - 44032: 0x9B76,\n\t49994 - 44032: 0x9B77,\n\t49995 - 44032: 0x9B78,\n\t49996 - 44032: 0x9B79,\n\t49997 - 44032: 0x9B7A,\n\t49998 - 44032: 0x9B81,\n\t49999 - 44032: 0x9B82,\n\t50000 - 44032: 0x9B83,\n\t50001 - 44032: 0x9B84,\n\t50002 - 44032: 0x9B85,\n\t50003 - 44032: 0x9B86,\n\t50004 - 44032: 0x9B87,\n\t50005 - 44032: 0x9B88,\n\t50006 - 44032: 0x9B89,\n\t50007 - 44032: 0x9B8A,\n\t50008 - 44032: 0x9B8B,\n\t50009 - 44032: 0x9B8C,\n\t50010 - 44032: 0x9B8D,\n\t50011 - 44032: 0x9B8E,\n\t50012 - 44032: 0x9B8F,\n\t50013 - 44032: 0x9B90,\n\t50014 - 44032: 0x9B91,\n\t50015 - 44032: 0x9B92,\n\t50016 - 44032: 0x9B93,\n\t50017 - 44032: 0x9B94,\n\t50018 - 44032: 0x9B95,\n\t50019 - 44032: 0x9B96,\n\t50020 - 44032: 0x9B97,\n\t50021 - 44032: 0x9B98,\n\t50022 - 44032: 0x9B99,\n\t50023 - 44032: 0x9B9A,\n\t50024 - 44032: 0xBDE1,\n\t50025 - 44032: 0xBDE2,\n\t50026 - 44032: 0x9B9B,\n\t50027 - 44032: 0x9B9C,\n\t50028 - 44032: 0xBDE3,\n\t50029 - 44032: 0x9B9D,\n\t50030 - 44032: 0x9B9E,\n\t50031 - 44032: 0x9B9F,\n\t50032 - 44032: 0xBDE4,\n\t50033 - 44032: 0x9BA0,\n\t50034 - 44032: 0xBDE5,\n\t50035 - 44032: 0x9BA1,\n\t50036 - 44032: 0x9BA2,\n\t50037 - 44032: 0x9BA3,\n\t50038 - 44032: 0x9BA4,\n\t50039 - 44032: 0x9BA5,\n\t50040 - 44032: 0xBDE6,\n\t50041 - 44032: 0xBDE7,\n\t50042 - 44032: 0x9BA6,\n\t50043 - 44032: 0x9BA7,\n\t50044 - 44032: 0xBDE8,\n\t50045 - 44032: 0xBDE9,\n\t50046 - 44032: 0x9BA8,\n\t50047 - 44032: 0x9BA9,\n\t50048 - 44032: 0x9BAA,\n\t50049 - 44032: 0x9BAB,\n\t50050 - 44032: 0x9BAC,\n\t50051 - 44032: 0x9BAD,\n\t50052 - 44032: 0xBDEA,\n\t50053 - 44032: 0x9BAE,\n\t50054 - 44032: 0x9BAF,\n\t50055 - 44032: 0x9BB0,\n\t50056 - 44032: 0xBDEB,\n\t50057 - 44032: 0x9BB1,\n\t50058 - 44032: 0x9BB2,\n\t50059 - 44032: 0x9BB3,\n\t50060 - 44032: 0xBDEC,\n\t50061 - 44032: 0x9BB4,\n\t50062 - 44032: 0x9BB5,\n\t50063 - 44032: 0x9BB6,\n\t50064 - 44032: 0x9BB7,\n\t50065 - 44032: 0x9BB8,\n\t50066 - 44032: 0x9BB9,\n\t50067 - 44032: 0x9BBA,\n\t50068 - 44032: 0x9BBB,\n\t50069 - 44032: 0x9BBC,\n\t50070 - 44032: 0x9BBD,\n\t50071 - 44032: 0x9BBE,\n\t50072 - 44032: 0x9BBF,\n\t50073 - 44032: 0x9BC0,\n\t50074 - 44032: 0x9BC1,\n\t50075 - 44032: 0x9BC2,\n\t50076 - 44032: 0x9BC3,\n\t50077 - 44032: 0x9BC4,\n\t50078 - 44032: 0x9BC5,\n\t50079 - 44032: 0x9BC6,\n\t50080 - 44032: 0x9BC7,\n\t50081 - 44032: 0x9BC8,\n\t50082 - 44032: 0x9BC9,\n\t50083 - 44032: 0x9BCA,\n\t50084 - 44032: 0x9BCB,\n\t50085 - 44032: 0x9BCC,\n\t50086 - 44032: 0x9BCD,\n\t50087 - 44032: 0x9BCE,\n\t50088 - 44032: 0x9BCF,\n\t50089 - 44032: 0x9BD0,\n\t50090 - 44032: 0x9BD1,\n\t50091 - 44032: 0x9BD2,\n\t50092 - 44032: 0x9BD3,\n\t50093 - 44032: 0x9BD4,\n\t50094 - 44032: 0x9BD5,\n\t50095 - 44032: 0x9BD6,\n\t50096 - 44032: 0x9BD7,\n\t50097 - 44032: 0x9BD8,\n\t50098 - 44032: 0x9BD9,\n\t50099 - 44032: 0x9BDA,\n\t50100 - 44032: 0x9BDB,\n\t50101 - 44032: 0x9BDC,\n\t50102 - 44032: 0x9BDD,\n\t50103 - 44032: 0x9BDE,\n\t50104 - 44032: 0x9BDF,\n\t50105 - 44032: 0x9BE0,\n\t50106 - 44032: 0x9BE1,\n\t50107 - 44032: 0x9BE2,\n\t50108 - 44032: 0x9BE3,\n\t50109 - 44032: 0x9BE4,\n\t50110 - 44032: 0x9BE5,\n\t50111 - 44032: 0x9BE6,\n\t50112 - 44032: 0xBDED,\n\t50113 - 44032: 0x9BE7,\n\t50114 - 44032: 0x9BE8,\n\t50115 - 44032: 0x9BE9,\n\t50116 - 44032: 0x9BEA,\n\t50117 - 44032: 0x9BEB,\n\t50118 - 44032: 0x9BEC,\n\t50119 - 44032: 0x9BED,\n\t50120 - 44032: 0x9BEE,\n\t50121 - 44032: 0x9BEF,\n\t50122 - 44032: 0x9BF0,\n\t50123 - 44032: 0x9BF1,\n\t50124 - 44032: 0x9BF2,\n\t50125 - 44032: 0x9BF3,\n\t50126 - 44032: 0x9BF4,\n\t50127 - 44032: 0x9BF5,\n\t50128 - 44032: 0x9BF6,\n\t50129 - 44032: 0x9BF7,\n\t50130 - 44032: 0x9BF8,\n\t50131 - 44032: 0x9BF9,\n\t50132 - 44032: 0x9BFA,\n\t50133 - 44032: 0x9BFB,\n\t50134 - 44032: 0x9BFC,\n\t50135 - 44032: 0x9BFD,\n\t50136 - 44032: 0xBDEE,\n\t50137 - 44032: 0xBDEF,\n\t50138 - 44032: 0x9BFE,\n\t50139 - 44032: 0x9C41,\n\t50140 - 44032: 0xBDF0,\n\t50141 - 44032: 0x9C42,\n\t50142 - 44032: 0x9C43,\n\t50143 - 44032: 0xBDF1,\n\t50144 - 44032: 0xBDF2,\n\t50145 - 44032: 0x9C44,\n\t50146 - 44032: 0xBDF3,\n\t50147 - 44032: 0x9C45,\n\t50148 - 44032: 0x9C46,\n\t50149 - 44032: 0x9C47,\n\t50150 - 44032: 0x9C48,\n\t50151 - 44032: 0x9C49,\n\t50152 - 44032: 0xBDF4,\n\t50153 - 44032: 0xBDF5,\n\t50154 - 44032: 0x9C4A,\n\t50155 - 44032: 0x9C4B,\n\t50156 - 44032: 0x9C4C,\n\t50157 - 44032: 0xBDF6,\n\t50158 - 44032: 0x9C4D,\n\t50159 - 44032: 0x9C4E,\n\t50160 - 44032: 0x9C4F,\n\t50161 - 44032: 0x9C50,\n\t50162 - 44032: 0x9C51,\n\t50163 - 44032: 0x9C52,\n\t50164 - 44032: 0xBDF7,\n\t50165 - 44032: 0xBDF8,\n\t50166 - 44032: 0x9C53,\n\t50167 - 44032: 0x9C54,\n\t50168 - 44032: 0xBDF9,\n\t50169 - 44032: 0x9C55,\n\t50170 - 44032: 0x9C56,\n\t50171 - 44032: 0x9C57,\n\t50172 - 44032: 0x9C58,\n\t50173 - 44032: 0x9C59,\n\t50174 - 44032: 0x9C5A,\n\t50175 - 44032: 0x9C61,\n\t50176 - 44032: 0x9C62,\n\t50177 - 44032: 0x9C63,\n\t50178 - 44032: 0x9C64,\n\t50179 - 44032: 0x9C65,\n\t50180 - 44032: 0x9C66,\n\t50181 - 44032: 0x9C67,\n\t50182 - 44032: 0x9C68,\n\t50183 - 44032: 0x9C69,\n\t50184 - 44032: 0xBDFA,\n\t50185 - 44032: 0x9C6A,\n\t50186 - 44032: 0x9C6B,\n\t50187 - 44032: 0x9C6C,\n\t50188 - 44032: 0x9C6D,\n\t50189 - 44032: 0x9C6E,\n\t50190 - 44032: 0x9C6F,\n\t50191 - 44032: 0x9C70,\n\t50192 - 44032: 0xBDFB,\n\t50193 - 44032: 0x9C71,\n\t50194 - 44032: 0x9C72,\n\t50195 - 44032: 0x9C73,\n\t50196 - 44032: 0x9C74,\n\t50197 - 44032: 0x9C75,\n\t50198 - 44032: 0x9C76,\n\t50199 - 44032: 0x9C77,\n\t50200 - 44032: 0x9C78,\n\t50201 - 44032: 0x9C79,\n\t50202 - 44032: 0x9C7A,\n\t50203 - 44032: 0x9C81,\n\t50204 - 44032: 0x9C82,\n\t50205 - 44032: 0x9C83,\n\t50206 - 44032: 0x9C84,\n\t50207 - 44032: 0x9C85,\n\t50208 - 44032: 0x9C86,\n\t50209 - 44032: 0x9C87,\n\t50210 - 44032: 0x9C88,\n\t50211 - 44032: 0x9C89,\n\t50212 - 44032: 0xBDFC,\n\t50213 - 44032: 0x9C8A,\n\t50214 - 44032: 0x9C8B,\n\t50215 - 44032: 0x9C8C,\n\t50216 - 44032: 0x9C8D,\n\t50217 - 44032: 0x9C8E,\n\t50218 - 44032: 0x9C8F,\n\t50219 - 44032: 0x9C90,\n\t50220 - 44032: 0xBDFD,\n\t50221 - 44032: 0x9C91,\n\t50222 - 44032: 0x9C92,\n\t50223 - 44032: 0x9C93,\n\t50224 - 44032: 0xBDFE,\n\t50225 - 44032: 0x9C94,\n\t50226 - 44032: 0x9C95,\n\t50227 - 44032: 0x9C96,\n\t50228 - 44032: 0xBEA1,\n\t50229 - 44032: 0x9C97,\n\t50230 - 44032: 0x9C98,\n\t50231 - 44032: 0x9C99,\n\t50232 - 44032: 0x9C9A,\n\t50233 - 44032: 0x9C9B,\n\t50234 - 44032: 0x9C9C,\n\t50235 - 44032: 0x9C9D,\n\t50236 - 44032: 0xBEA2,\n\t50237 - 44032: 0xBEA3,\n\t50238 - 44032: 0x9C9E,\n\t50239 - 44032: 0x9C9F,\n\t50240 - 44032: 0x9CA0,\n\t50241 - 44032: 0x9CA1,\n\t50242 - 44032: 0x9CA2,\n\t50243 - 44032: 0x9CA3,\n\t50244 - 44032: 0x9CA4,\n\t50245 - 44032: 0x9CA5,\n\t50246 - 44032: 0x9CA6,\n\t50247 - 44032: 0x9CA7,\n\t50248 - 44032: 0xBEA4,\n\t50249 - 44032: 0x9CA8,\n\t50250 - 44032: 0x9CA9,\n\t50251 - 44032: 0x9CAA,\n\t50252 - 44032: 0x9CAB,\n\t50253 - 44032: 0x9CAC,\n\t50254 - 44032: 0x9CAD,\n\t50255 - 44032: 0x9CAE,\n\t50256 - 44032: 0x9CAF,\n\t50257 - 44032: 0x9CB0,\n\t50258 - 44032: 0x9CB1,\n\t50259 - 44032: 0x9CB2,\n\t50260 - 44032: 0x9CB3,\n\t50261 - 44032: 0x9CB4,\n\t50262 - 44032: 0x9CB5,\n\t50263 - 44032: 0x9CB6,\n\t50264 - 44032: 0x9CB7,\n\t50265 - 44032: 0x9CB8,\n\t50266 - 44032: 0x9CB9,\n\t50267 - 44032: 0x9CBA,\n\t50268 - 44032: 0x9CBB,\n\t50269 - 44032: 0x9CBC,\n\t50270 - 44032: 0x9CBD,\n\t50271 - 44032: 0x9CBE,\n\t50272 - 44032: 0x9CBF,\n\t50273 - 44032: 0x9CC0,\n\t50274 - 44032: 0x9CC1,\n\t50275 - 44032: 0x9CC2,\n\t50276 - 44032: 0xBEA5,\n\t50277 - 44032: 0xBEA6,\n\t50278 - 44032: 0x9CC3,\n\t50279 - 44032: 0x9CC4,\n\t50280 - 44032: 0xBEA7,\n\t50281 - 44032: 0x9CC5,\n\t50282 - 44032: 0x9CC6,\n\t50283 - 44032: 0x9CC7,\n\t50284 - 44032: 0xBEA8,\n\t50285 - 44032: 0x9CC8,\n\t50286 - 44032: 0x9CC9,\n\t50287 - 44032: 0x9CCA,\n\t50288 - 44032: 0x9CCB,\n\t50289 - 44032: 0x9CCC,\n\t50290 - 44032: 0x9CCD,\n\t50291 - 44032: 0x9CCE,\n\t50292 - 44032: 0xBEA9,\n\t50293 - 44032: 0xBEAA,\n\t50294 - 44032: 0x9CCF,\n\t50295 - 44032: 0x9CD0,\n\t50296 - 44032: 0x9CD1,\n\t50297 - 44032: 0xBEAB,\n\t50298 - 44032: 0x9CD2,\n\t50299 - 44032: 0x9CD3,\n\t50300 - 44032: 0x9CD4,\n\t50301 - 44032: 0x9CD5,\n\t50302 - 44032: 0x9CD6,\n\t50303 - 44032: 0x9CD7,\n\t50304 - 44032: 0xBEAC,\n\t50305 - 44032: 0x9CD8,\n\t50306 - 44032: 0x9CD9,\n\t50307 - 44032: 0x9CDA,\n\t50308 - 44032: 0x9CDB,\n\t50309 - 44032: 0x9CDC,\n\t50310 - 44032: 0x9CDD,\n\t50311 - 44032: 0x9CDE,\n\t50312 - 44032: 0x9CDF,\n\t50313 - 44032: 0x9CE0,\n\t50314 - 44032: 0x9CE1,\n\t50315 - 44032: 0x9CE2,\n\t50316 - 44032: 0x9CE3,\n\t50317 - 44032: 0x9CE4,\n\t50318 - 44032: 0x9CE5,\n\t50319 - 44032: 0x9CE6,\n\t50320 - 44032: 0x9CE7,\n\t50321 - 44032: 0x9CE8,\n\t50322 - 44032: 0x9CE9,\n\t50323 - 44032: 0x9CEA,\n\t50324 - 44032: 0xBEAD,\n\t50325 - 44032: 0x9CEB,\n\t50326 - 44032: 0x9CEC,\n\t50327 - 44032: 0x9CED,\n\t50328 - 44032: 0x9CEE,\n\t50329 - 44032: 0x9CEF,\n\t50330 - 44032: 0x9CF0,\n\t50331 - 44032: 0x9CF1,\n\t50332 - 44032: 0xBEAE,\n\t50333 - 44032: 0x9CF2,\n\t50334 - 44032: 0x9CF3,\n\t50335 - 44032: 0x9CF4,\n\t50336 - 44032: 0x9CF5,\n\t50337 - 44032: 0x9CF6,\n\t50338 - 44032: 0x9CF7,\n\t50339 - 44032: 0x9CF8,\n\t50340 - 44032: 0x9CF9,\n\t50341 - 44032: 0x9CFA,\n\t50342 - 44032: 0x9CFB,\n\t50343 - 44032: 0x9CFC,\n\t50344 - 44032: 0x9CFD,\n\t50345 - 44032: 0x9CFE,\n\t50346 - 44032: 0x9D41,\n\t50347 - 44032: 0x9D42,\n\t50348 - 44032: 0x9D43,\n\t50349 - 44032: 0x9D44,\n\t50350 - 44032: 0x9D45,\n\t50351 - 44032: 0x9D46,\n\t50352 - 44032: 0x9D47,\n\t50353 - 44032: 0x9D48,\n\t50354 - 44032: 0x9D49,\n\t50355 - 44032: 0x9D4A,\n\t50356 - 44032: 0x9D4B,\n\t50357 - 44032: 0x9D4C,\n\t50358 - 44032: 0x9D4D,\n\t50359 - 44032: 0x9D4E,\n\t50360 - 44032: 0xBEAF,\n\t50361 - 44032: 0x9D4F,\n\t50362 - 44032: 0x9D50,\n\t50363 - 44032: 0x9D51,\n\t50364 - 44032: 0xBEB0,\n\t50365 - 44032: 0x9D52,\n\t50366 - 44032: 0x9D53,\n\t50367 - 44032: 0x9D54,\n\t50368 - 44032: 0x9D55,\n\t50369 - 44032: 0x9D56,\n\t50370 - 44032: 0x9D57,\n\t50371 - 44032: 0x9D58,\n\t50372 - 44032: 0x9D59,\n\t50373 - 44032: 0x9D5A,\n\t50374 - 44032: 0x9D61,\n\t50375 - 44032: 0x9D62,\n\t50376 - 44032: 0x9D63,\n\t50377 - 44032: 0x9D64,\n\t50378 - 44032: 0x9D65,\n\t50379 - 44032: 0x9D66,\n\t50380 - 44032: 0x9D67,\n\t50381 - 44032: 0x9D68,\n\t50382 - 44032: 0x9D69,\n\t50383 - 44032: 0x9D6A,\n\t50384 - 44032: 0x9D6B,\n\t50385 - 44032: 0x9D6C,\n\t50386 - 44032: 0x9D6D,\n\t50387 - 44032: 0x9D6E,\n\t50388 - 44032: 0x9D6F,\n\t50389 - 44032: 0x9D70,\n\t50390 - 44032: 0x9D71,\n\t50391 - 44032: 0x9D72,\n\t50392 - 44032: 0x9D73,\n\t50393 - 44032: 0x9D74,\n\t50394 - 44032: 0x9D75,\n\t50395 - 44032: 0x9D76,\n\t50396 - 44032: 0x9D77,\n\t50397 - 44032: 0x9D78,\n\t50398 - 44032: 0x9D79,\n\t50399 - 44032: 0x9D7A,\n\t50400 - 44032: 0x9D81,\n\t50401 - 44032: 0x9D82,\n\t50402 - 44032: 0x9D83,\n\t50403 - 44032: 0x9D84,\n\t50404 - 44032: 0x9D85,\n\t50405 - 44032: 0x9D86,\n\t50406 - 44032: 0x9D87,\n\t50407 - 44032: 0x9D88,\n\t50408 - 44032: 0x9D89,\n\t50409 - 44032: 0xBEB1,\n\t50410 - 44032: 0x9D8A,\n\t50411 - 44032: 0x9D8B,\n\t50412 - 44032: 0x9D8C,\n\t50413 - 44032: 0x9D8D,\n\t50414 - 44032: 0x9D8E,\n\t50415 - 44032: 0x9D8F,\n\t50416 - 44032: 0xBEB2,\n\t50417 - 44032: 0xBEB3,\n\t50418 - 44032: 0x9D90,\n\t50419 - 44032: 0x9D91,\n\t50420 - 44032: 0xBEB4,\n\t50421 - 44032: 0x9D92,\n\t50422 - 44032: 0x9D93,\n\t50423 - 44032: 0x9D94,\n\t50424 - 44032: 0xBEB5,\n\t50425 - 44032: 0x9D95,\n\t50426 - 44032: 0xBEB6,\n\t50427 - 44032: 0x9D96,\n\t50428 - 44032: 0x9D97,\n\t50429 - 44032: 0x9D98,\n\t50430 - 44032: 0x9D99,\n\t50431 - 44032: 0xBEB7,\n\t50432 - 44032: 0xBEB8,\n\t50433 - 44032: 0xBEB9,\n\t50434 - 44032: 0x9D9A,\n\t50435 - 44032: 0x9D9B,\n\t50436 - 44032: 0x9D9C,\n\t50437 - 44032: 0x9D9D,\n\t50438 - 44032: 0x9D9E,\n\t50439 - 44032: 0x9D9F,\n\t50440 - 44032: 0x9DA0,\n\t50441 - 44032: 0x9DA1,\n\t50442 - 44032: 0x9DA2,\n\t50443 - 44032: 0x9DA3,\n\t50444 - 44032: 0xBEBA,\n\t50445 - 44032: 0x9DA4,\n\t50446 - 44032: 0x9DA5,\n\t50447 - 44032: 0x9DA6,\n\t50448 - 44032: 0xBEBB,\n\t50449 - 44032: 0x9DA7,\n\t50450 - 44032: 0x9DA8,\n\t50451 - 44032: 0x9DA9,\n\t50452 - 44032: 0xBEBC,\n\t50453 - 44032: 0x9DAA,\n\t50454 - 44032: 0x9DAB,\n\t50455 - 44032: 0x9DAC,\n\t50456 - 44032: 0x9DAD,\n\t50457 - 44032: 0x9DAE,\n\t50458 - 44032: 0x9DAF,\n\t50459 - 44032: 0x9DB0,\n\t50460 - 44032: 0xBEBD,\n\t50461 - 44032: 0x9DB1,\n\t50462 - 44032: 0x9DB2,\n\t50463 - 44032: 0x9DB3,\n\t50464 - 44032: 0x9DB4,\n\t50465 - 44032: 0x9DB5,\n\t50466 - 44032: 0x9DB6,\n\t50467 - 44032: 0x9DB7,\n\t50468 - 44032: 0x9DB8,\n\t50469 - 44032: 0x9DB9,\n\t50470 - 44032: 0x9DBA,\n\t50471 - 44032: 0x9DBB,\n\t50472 - 44032: 0xBEBE,\n\t50473 - 44032: 0xBEBF,\n\t50474 - 44032: 0x9DBC,\n\t50475 - 44032: 0x9DBD,\n\t50476 - 44032: 0xBEC0,\n\t50477 - 44032: 0x9DBE,\n\t50478 - 44032: 0x9DBF,\n\t50479 - 44032: 0x9DC0,\n\t50480 - 44032: 0xBEC1,\n\t50481 - 44032: 0x9DC1,\n\t50482 - 44032: 0x9DC2,\n\t50483 - 44032: 0x9DC3,\n\t50484 - 44032: 0x9DC4,\n\t50485 - 44032: 0x9DC5,\n\t50486 - 44032: 0x9DC6,\n\t50487 - 44032: 0x9DC7,\n\t50488 - 44032: 0xBEC2,\n\t50489 - 44032: 0xBEC3,\n\t50490 - 44032: 0x9DC8,\n\t50491 - 44032: 0xBEC4,\n\t50492 - 44032: 0x9DC9,\n\t50493 - 44032: 0xBEC5,\n\t50494 - 44032: 0x9DCA,\n\t50495 - 44032: 0x9DCB,\n\t50496 - 44032: 0x9DCC,\n\t50497 - 44032: 0x9DCD,\n\t50498 - 44032: 0x9DCE,\n\t50499 - 44032: 0x9DCF,\n\t50500 - 44032: 0xBEC6,\n\t50501 - 44032: 0xBEC7,\n\t50502 - 44032: 0x9DD0,\n\t50503 - 44032: 0x9DD1,\n\t50504 - 44032: 0xBEC8,\n\t50505 - 44032: 0xBEC9,\n\t50506 - 44032: 0xBECA,\n\t50507 - 44032: 0x9DD2,\n\t50508 - 44032: 0xBECB,\n\t50509 - 44032: 0xBECC,\n\t50510 - 44032: 0xBECD,\n\t50511 - 44032: 0x9DD3,\n\t50512 - 44032: 0x9DD4,\n\t50513 - 44032: 0x9DD5,\n\t50514 - 44032: 0x9DD6,\n\t50515 - 44032: 0xBECE,\n\t50516 - 44032: 0xBECF,\n\t50517 - 44032: 0xBED0,\n\t50518 - 44032: 0x9DD7,\n\t50519 - 44032: 0xBED1,\n\t50520 - 44032: 0xBED2,\n\t50521 - 44032: 0xBED3,\n\t50522 - 44032: 0x9DD8,\n\t50523 - 44032: 0x9DD9,\n\t50524 - 44032: 0x9DDA,\n\t50525 - 44032: 0xBED4,\n\t50526 - 44032: 0xBED5,\n\t50527 - 44032: 0x9DDB,\n\t50528 - 44032: 0xBED6,\n\t50529 - 44032: 0xBED7,\n\t50530 - 44032: 0x9DDC,\n\t50531 - 44032: 0x9DDD,\n\t50532 - 44032: 0xBED8,\n\t50533 - 44032: 0x9DDE,\n\t50534 - 44032: 0x9DDF,\n\t50535 - 44032: 0x9DE0,\n\t50536 - 44032: 0xBED9,\n\t50537 - 44032: 0x9DE1,\n\t50538 - 44032: 0x9DE2,\n\t50539 - 44032: 0x9DE3,\n\t50540 - 44032: 0x9DE4,\n\t50541 - 44032: 0x9DE5,\n\t50542 - 44032: 0x9DE6,\n\t50543 - 44032: 0x9DE7,\n\t50544 - 44032: 0xBEDA,\n\t50545 - 44032: 0xBEDB,\n\t50546 - 44032: 0x9DE8,\n\t50547 - 44032: 0xBEDC,\n\t50548 - 44032: 0xBEDD,\n\t50549 - 44032: 0xBEDE,\n\t50550 - 44032: 0x9DE9,\n\t50551 - 44032: 0x9DEA,\n\t50552 - 44032: 0x9DEB,\n\t50553 - 44032: 0x9DEC,\n\t50554 - 44032: 0x9DED,\n\t50555 - 44032: 0x9DEE,\n\t50556 - 44032: 0xBEDF,\n\t50557 - 44032: 0xBEE0,\n\t50558 - 44032: 0x9DEF,\n\t50559 - 44032: 0x9DF0,\n\t50560 - 44032: 0xBEE1,\n\t50561 - 44032: 0x9DF1,\n\t50562 - 44032: 0x9DF2,\n\t50563 - 44032: 0x9DF3,\n\t50564 - 44032: 0xBEE2,\n\t50565 - 44032: 0x9DF4,\n\t50566 - 44032: 0x9DF5,\n\t50567 - 44032: 0xBEE3,\n\t50568 - 44032: 0x9DF6,\n\t50569 - 44032: 0x9DF7,\n\t50570 - 44032: 0x9DF8,\n\t50571 - 44032: 0x9DF9,\n\t50572 - 44032: 0xBEE4,\n\t50573 - 44032: 0xBEE5,\n\t50574 - 44032: 0x9DFA,\n\t50575 - 44032: 0xBEE6,\n\t50576 - 44032: 0x9DFB,\n\t50577 - 44032: 0xBEE7,\n\t50578 - 44032: 0x9DFC,\n\t50579 - 44032: 0x9DFD,\n\t50580 - 44032: 0x9DFE,\n\t50581 - 44032: 0xBEE8,\n\t50582 - 44032: 0x9E41,\n\t50583 - 44032: 0xBEE9,\n\t50584 - 44032: 0xBEEA,\n\t50585 - 44032: 0x9E42,\n\t50586 - 44032: 0x9E43,\n\t50587 - 44032: 0x9E44,\n\t50588 - 44032: 0xBEEB,\n\t50589 - 44032: 0x9E45,\n\t50590 - 44032: 0x9E46,\n\t50591 - 44032: 0x9E47,\n\t50592 - 44032: 0xBEEC,\n\t50593 - 44032: 0x9E48,\n\t50594 - 44032: 0x9E49,\n\t50595 - 44032: 0x9E4A,\n\t50596 - 44032: 0x9E4B,\n\t50597 - 44032: 0x9E4C,\n\t50598 - 44032: 0x9E4D,\n\t50599 - 44032: 0x9E4E,\n\t50600 - 44032: 0x9E4F,\n\t50601 - 44032: 0xBEED,\n\t50602 - 44032: 0x9E50,\n\t50603 - 44032: 0x9E51,\n\t50604 - 44032: 0x9E52,\n\t50605 - 44032: 0x9E53,\n\t50606 - 44032: 0x9E54,\n\t50607 - 44032: 0x9E55,\n\t50608 - 44032: 0x9E56,\n\t50609 - 44032: 0x9E57,\n\t50610 - 44032: 0x9E58,\n\t50611 - 44032: 0x9E59,\n\t50612 - 44032: 0xBEEE,\n\t50613 - 44032: 0xBEEF,\n\t50614 - 44032: 0x9E5A,\n\t50615 - 44032: 0x9E61,\n\t50616 - 44032: 0xBEF0,\n\t50617 - 44032: 0xBEF1,\n\t50618 - 44032: 0x9E62,\n\t50619 - 44032: 0xBEF2,\n\t50620 - 44032: 0xBEF3,\n\t50621 - 44032: 0xBEF4,\n\t50622 - 44032: 0xBEF5,\n\t50623 - 44032: 0x9E63,\n\t50624 - 44032: 0x9E64,\n\t50625 - 44032: 0x9E65,\n\t50626 - 44032: 0x9E66,\n\t50627 - 44032: 0x9E67,\n\t50628 - 44032: 0xBEF6,\n\t50629 - 44032: 0xBEF7,\n\t50630 - 44032: 0xBEF8,\n\t50631 - 44032: 0xBEF9,\n\t50632 - 44032: 0xBEFA,\n\t50633 - 44032: 0xBEFB,\n\t50634 - 44032: 0xBEFC,\n\t50635 - 44032: 0x9E68,\n\t50636 - 44032: 0xBEFD,\n\t50637 - 44032: 0x9E69,\n\t50638 - 44032: 0xBEFE,\n\t50639 - 44032: 0x9E6A,\n\t50640 - 44032: 0xBFA1,\n\t50641 - 44032: 0xBFA2,\n\t50642 - 44032: 0x9E6B,\n\t50643 - 44032: 0x9E6C,\n\t50644 - 44032: 0xBFA3,\n\t50645 - 44032: 0x9E6D,\n\t50646 - 44032: 0x9E6E,\n\t50647 - 44032: 0x9E6F,\n\t50648 - 44032: 0xBFA4,\n\t50649 - 44032: 0x9E70,\n\t50650 - 44032: 0x9E71,\n\t50651 - 44032: 0x9E72,\n\t50652 - 44032: 0x9E73,\n\t50653 - 44032: 0x9E74,\n\t50654 - 44032: 0x9E75,\n\t50655 - 44032: 0x9E76,\n\t50656 - 44032: 0xBFA5,\n\t50657 - 44032: 0xBFA6,\n\t50658 - 44032: 0x9E77,\n\t50659 - 44032: 0xBFA7,\n\t50660 - 44032: 0x9E78,\n\t50661 - 44032: 0xBFA8,\n\t50662 - 44032: 0x9E79,\n\t50663 - 44032: 0x9E7A,\n\t50664 - 44032: 0x9E81,\n\t50665 - 44032: 0x9E82,\n\t50666 - 44032: 0x9E83,\n\t50667 - 44032: 0x9E84,\n\t50668 - 44032: 0xBFA9,\n\t50669 - 44032: 0xBFAA,\n\t50670 - 44032: 0xBFAB,\n\t50671 - 44032: 0x9E85,\n\t50672 - 44032: 0xBFAC,\n\t50673 - 44032: 0x9E86,\n\t50674 - 44032: 0x9E87,\n\t50675 - 44032: 0x9E88,\n\t50676 - 44032: 0xBFAD,\n\t50677 - 44032: 0x9E89,\n\t50678 - 44032: 0xBFAE,\n\t50679 - 44032: 0xBFAF,\n\t50680 - 44032: 0x9E8A,\n\t50681 - 44032: 0x9E8B,\n\t50682 - 44032: 0x9E8C,\n\t50683 - 44032: 0x9E8D,\n\t50684 - 44032: 0xBFB0,\n\t50685 - 44032: 0xBFB1,\n\t50686 - 44032: 0xBFB2,\n\t50687 - 44032: 0xBFB3,\n\t50688 - 44032: 0xBFB4,\n\t50689 - 44032: 0xBFB5,\n\t50690 - 44032: 0x9E8E,\n\t50691 - 44032: 0x9E8F,\n\t50692 - 44032: 0x9E90,\n\t50693 - 44032: 0xBFB6,\n\t50694 - 44032: 0xBFB7,\n\t50695 - 44032: 0xBFB8,\n\t50696 - 44032: 0xBFB9,\n\t50697 - 44032: 0x9E91,\n\t50698 - 44032: 0x9E92,\n\t50699 - 44032: 0x9E93,\n\t50700 - 44032: 0xBFBA,\n\t50701 - 44032: 0x9E94,\n\t50702 - 44032: 0x9E95,\n\t50703 - 44032: 0x9E96,\n\t50704 - 44032: 0xBFBB,\n\t50705 - 44032: 0x9E97,\n\t50706 - 44032: 0x9E98,\n\t50707 - 44032: 0x9E99,\n\t50708 - 44032: 0x9E9A,\n\t50709 - 44032: 0x9E9B,\n\t50710 - 44032: 0x9E9C,\n\t50711 - 44032: 0x9E9D,\n\t50712 - 44032: 0xBFBC,\n\t50713 - 44032: 0xBFBD,\n\t50714 - 44032: 0x9E9E,\n\t50715 - 44032: 0xBFBE,\n\t50716 - 44032: 0xBFBF,\n\t50717 - 44032: 0x9E9F,\n\t50718 - 44032: 0x9EA0,\n\t50719 - 44032: 0x9EA1,\n\t50720 - 44032: 0x9EA2,\n\t50721 - 44032: 0x9EA3,\n\t50722 - 44032: 0x9EA4,\n\t50723 - 44032: 0x9EA5,\n\t50724 - 44032: 0xBFC0,\n\t50725 - 44032: 0xBFC1,\n\t50726 - 44032: 0x9EA6,\n\t50727 - 44032: 0x9EA7,\n\t50728 - 44032: 0xBFC2,\n\t50729 - 44032: 0x9EA8,\n\t50730 - 44032: 0x9EA9,\n\t50731 - 44032: 0x9EAA,\n\t50732 - 44032: 0xBFC3,\n\t50733 - 44032: 0xBFC4,\n\t50734 - 44032: 0xBFC5,\n\t50735 - 44032: 0x9EAB,\n\t50736 - 44032: 0xBFC6,\n\t50737 - 44032: 0x9EAC,\n\t50738 - 44032: 0x9EAD,\n\t50739 - 44032: 0xBFC7,\n\t50740 - 44032: 0xBFC8,\n\t50741 - 44032: 0xBFC9,\n\t50742 - 44032: 0x9EAE,\n\t50743 - 44032: 0xBFCA,\n\t50744 - 44032: 0x9EAF,\n\t50745 - 44032: 0xBFCB,\n\t50746 - 44032: 0x9EB0,\n\t50747 - 44032: 0xBFCC,\n\t50748 - 44032: 0x9EB1,\n\t50749 - 44032: 0x9EB2,\n\t50750 - 44032: 0x9EB3,\n\t50751 - 44032: 0x9EB4,\n\t50752 - 44032: 0xBFCD,\n\t50753 - 44032: 0xBFCE,\n\t50754 - 44032: 0x9EB5,\n\t50755 - 44032: 0x9EB6,\n\t50756 - 44032: 0xBFCF,\n\t50757 - 44032: 0x9EB7,\n\t50758 - 44032: 0x9EB8,\n\t50759 - 44032: 0x9EB9,\n\t50760 - 44032: 0xBFD0,\n\t50761 - 44032: 0x9EBA,\n\t50762 - 44032: 0x9EBB,\n\t50763 - 44032: 0x9EBC,\n\t50764 - 44032: 0x9EBD,\n\t50765 - 44032: 0x9EBE,\n\t50766 - 44032: 0x9EBF,\n\t50767 - 44032: 0x9EC0,\n\t50768 - 44032: 0xBFD1,\n\t50769 - 44032: 0xBFD2,\n\t50770 - 44032: 0x9EC1,\n\t50771 - 44032: 0xBFD3,\n\t50772 - 44032: 0xBFD4,\n\t50773 - 44032: 0xBFD5,\n\t50774 - 44032: 0x9EC2,\n\t50775 - 44032: 0x9EC3,\n\t50776 - 44032: 0x9EC4,\n\t50777 - 44032: 0x9EC5,\n\t50778 - 44032: 0x9EC6,\n\t50779 - 44032: 0x9EC7,\n\t50780 - 44032: 0xBFD6,\n\t50781 - 44032: 0xBFD7,\n\t50782 - 44032: 0x9EC8,\n\t50783 - 44032: 0x9EC9,\n\t50784 - 44032: 0xBFD8,\n\t50785 - 44032: 0x9ECA,\n\t50786 - 44032: 0x9ECB,\n\t50787 - 44032: 0x9ECC,\n\t50788 - 44032: 0x9ECD,\n\t50789 - 44032: 0x9ECE,\n\t50790 - 44032: 0x9ECF,\n\t50791 - 44032: 0x9ED0,\n\t50792 - 44032: 0x9ED1,\n\t50793 - 44032: 0x9ED2,\n\t50794 - 44032: 0x9ED3,\n\t50795 - 44032: 0x9ED4,\n\t50796 - 44032: 0xBFD9,\n\t50797 - 44032: 0x9ED5,\n\t50798 - 44032: 0x9ED6,\n\t50799 - 44032: 0xBFDA,\n\t50800 - 44032: 0x9ED7,\n\t50801 - 44032: 0xBFDB,\n\t50802 - 44032: 0x9ED8,\n\t50803 - 44032: 0x9ED9,\n\t50804 - 44032: 0x9EDA,\n\t50805 - 44032: 0x9EDB,\n\t50806 - 44032: 0x9EDC,\n\t50807 - 44032: 0x9EDD,\n\t50808 - 44032: 0xBFDC,\n\t50809 - 44032: 0xBFDD,\n\t50810 - 44032: 0x9EDE,\n\t50811 - 44032: 0x9EDF,\n\t50812 - 44032: 0xBFDE,\n\t50813 - 44032: 0x9EE0,\n\t50814 - 44032: 0x9EE1,\n\t50815 - 44032: 0x9EE2,\n\t50816 - 44032: 0xBFDF,\n\t50817 - 44032: 0x9EE3,\n\t50818 - 44032: 0x9EE4,\n\t50819 - 44032: 0x9EE5,\n\t50820 - 44032: 0x9EE6,\n\t50821 - 44032: 0x9EE7,\n\t50822 - 44032: 0x9EE8,\n\t50823 - 44032: 0x9EE9,\n\t50824 - 44032: 0xBFE0,\n\t50825 - 44032: 0xBFE1,\n\t50826 - 44032: 0x9EEA,\n\t50827 - 44032: 0xBFE2,\n\t50828 - 44032: 0x9EEB,\n\t50829 - 44032: 0xBFE3,\n\t50830 - 44032: 0x9EEC,\n\t50831 - 44032: 0x9EED,\n\t50832 - 44032: 0x9EEE,\n\t50833 - 44032: 0x9EEF,\n\t50834 - 44032: 0x9EF0,\n\t50835 - 44032: 0x9EF1,\n\t50836 - 44032: 0xBFE4,\n\t50837 - 44032: 0xBFE5,\n\t50838 - 44032: 0x9EF2,\n\t50839 - 44032: 0x9EF3,\n\t50840 - 44032: 0xBFE6,\n\t50841 - 44032: 0x9EF4,\n\t50842 - 44032: 0x9EF5,\n\t50843 - 44032: 0x9EF6,\n\t50844 - 44032: 0xBFE7,\n\t50845 - 44032: 0x9EF7,\n\t50846 - 44032: 0x9EF8,\n\t50847 - 44032: 0x9EF9,\n\t50848 - 44032: 0x9EFA,\n\t50849 - 44032: 0x9EFB,\n\t50850 - 44032: 0x9EFC,\n\t50851 - 44032: 0x9EFD,\n\t50852 - 44032: 0xBFE8,\n\t50853 - 44032: 0xBFE9,\n\t50854 - 44032: 0x9EFE,\n\t50855 - 44032: 0xBFEA,\n\t50856 - 44032: 0x9F41,\n\t50857 - 44032: 0xBFEB,\n\t50858 - 44032: 0x9F42,\n\t50859 - 44032: 0x9F43,\n\t50860 - 44032: 0x9F44,\n\t50861 - 44032: 0x9F45,\n\t50862 - 44032: 0x9F46,\n\t50863 - 44032: 0x9F47,\n\t50864 - 44032: 0xBFEC,\n\t50865 - 44032: 0xBFED,\n\t50866 - 44032: 0x9F48,\n\t50867 - 44032: 0x9F49,\n\t50868 - 44032: 0xBFEE,\n\t50869 - 44032: 0x9F4A,\n\t50870 - 44032: 0x9F4B,\n\t50871 - 44032: 0x9F4C,\n\t50872 - 44032: 0xBFEF,\n\t50873 - 44032: 0xBFF0,\n\t50874 - 44032: 0xBFF1,\n\t50875 - 44032: 0x9F4D,\n\t50876 - 44032: 0x9F4E,\n\t50877 - 44032: 0x9F4F,\n\t50878 - 44032: 0x9F50,\n\t50879 - 44032: 0x9F51,\n\t50880 - 44032: 0xBFF2,\n\t50881 - 44032: 0xBFF3,\n\t50882 - 44032: 0x9F52,\n\t50883 - 44032: 0xBFF4,\n\t50884 - 44032: 0x9F53,\n\t50885 - 44032: 0xBFF5,\n\t50886 - 44032: 0x9F54,\n\t50887 - 44032: 0x9F55,\n\t50888 - 44032: 0x9F56,\n\t50889 - 44032: 0x9F57,\n\t50890 - 44032: 0x9F58,\n\t50891 - 44032: 0x9F59,\n\t50892 - 44032: 0xBFF6,\n\t50893 - 44032: 0xBFF7,\n\t50894 - 44032: 0x9F5A,\n\t50895 - 44032: 0x9F61,\n\t50896 - 44032: 0xBFF8,\n\t50897 - 44032: 0x9F62,\n\t50898 - 44032: 0x9F63,\n\t50899 - 44032: 0x9F64,\n\t50900 - 44032: 0xBFF9,\n\t50901 - 44032: 0x9F65,\n\t50902 - 44032: 0x9F66,\n\t50903 - 44032: 0x9F67,\n\t50904 - 44032: 0x9F68,\n\t50905 - 44032: 0x9F69,\n\t50906 - 44032: 0x9F6A,\n\t50907 - 44032: 0x9F6B,\n\t50908 - 44032: 0xBFFA,\n\t50909 - 44032: 0xBFFB,\n\t50910 - 44032: 0x9F6C,\n\t50911 - 44032: 0x9F6D,\n\t50912 - 44032: 0xBFFC,\n\t50913 - 44032: 0xBFFD,\n\t50914 - 44032: 0x9F6E,\n\t50915 - 44032: 0x9F6F,\n\t50916 - 44032: 0x9F70,\n\t50917 - 44032: 0x9F71,\n\t50918 - 44032: 0x9F72,\n\t50919 - 44032: 0x9F73,\n\t50920 - 44032: 0xBFFE,\n\t50921 - 44032: 0xC0A1,\n\t50922 - 44032: 0x9F74,\n\t50923 - 44032: 0x9F75,\n\t50924 - 44032: 0xC0A2,\n\t50925 - 44032: 0x9F76,\n\t50926 - 44032: 0x9F77,\n\t50927 - 44032: 0x9F78,\n\t50928 - 44032: 0xC0A3,\n\t50929 - 44032: 0x9F79,\n\t50930 - 44032: 0x9F7A,\n\t50931 - 44032: 0x9F81,\n\t50932 - 44032: 0x9F82,\n\t50933 - 44032: 0x9F83,\n\t50934 - 44032: 0x9F84,\n\t50935 - 44032: 0x9F85,\n\t50936 - 44032: 0xC0A4,\n\t50937 - 44032: 0xC0A5,\n\t50938 - 44032: 0x9F86,\n\t50939 - 44032: 0x9F87,\n\t50940 - 44032: 0x9F88,\n\t50941 - 44032: 0xC0A6,\n\t50942 - 44032: 0x9F89,\n\t50943 - 44032: 0x9F8A,\n\t50944 - 44032: 0x9F8B,\n\t50945 - 44032: 0x9F8C,\n\t50946 - 44032: 0x9F8D,\n\t50947 - 44032: 0x9F8E,\n\t50948 - 44032: 0xC0A7,\n\t50949 - 44032: 0xC0A8,\n\t50950 - 44032: 0x9F8F,\n\t50951 - 44032: 0x9F90,\n\t50952 - 44032: 0xC0A9,\n\t50953 - 44032: 0x9F91,\n\t50954 - 44032: 0x9F92,\n\t50955 - 44032: 0x9F93,\n\t50956 - 44032: 0xC0AA,\n\t50957 - 44032: 0x9F94,\n\t50958 - 44032: 0x9F95,\n\t50959 - 44032: 0x9F96,\n\t50960 - 44032: 0x9F97,\n\t50961 - 44032: 0x9F98,\n\t50962 - 44032: 0x9F99,\n\t50963 - 44032: 0x9F9A,\n\t50964 - 44032: 0xC0AB,\n\t50965 - 44032: 0xC0AC,\n\t50966 - 44032: 0x9F9B,\n\t50967 - 44032: 0xC0AD,\n\t50968 - 44032: 0x9F9C,\n\t50969 - 44032: 0xC0AE,\n\t50970 - 44032: 0x9F9D,\n\t50971 - 44032: 0x9F9E,\n\t50972 - 44032: 0x9F9F,\n\t50973 - 44032: 0x9FA0,\n\t50974 - 44032: 0x9FA1,\n\t50975 - 44032: 0x9FA2,\n\t50976 - 44032: 0xC0AF,\n\t50977 - 44032: 0xC0B0,\n\t50978 - 44032: 0x9FA3,\n\t50979 - 44032: 0x9FA4,\n\t50980 - 44032: 0xC0B1,\n\t50981 - 44032: 0x9FA5,\n\t50982 - 44032: 0x9FA6,\n\t50983 - 44032: 0x9FA7,\n\t50984 - 44032: 0xC0B2,\n\t50985 - 44032: 0x9FA8,\n\t50986 - 44032: 0x9FA9,\n\t50987 - 44032: 0x9FAA,\n\t50988 - 44032: 0x9FAB,\n\t50989 - 44032: 0x9FAC,\n\t50990 - 44032: 0x9FAD,\n\t50991 - 44032: 0x9FAE,\n\t50992 - 44032: 0xC0B3,\n\t50993 - 44032: 0xC0B4,\n\t50994 - 44032: 0x9FAF,\n\t50995 - 44032: 0xC0B5,\n\t50996 - 44032: 0x9FB0,\n\t50997 - 44032: 0xC0B6,\n\t50998 - 44032: 0x9FB1,\n\t50999 - 44032: 0xC0B7,\n\t51000 - 44032: 0x9FB2,\n\t51001 - 44032: 0x9FB3,\n\t51002 - 44032: 0x9FB4,\n\t51003 - 44032: 0x9FB5,\n\t51004 - 44032: 0xC0B8,\n\t51005 - 44032: 0xC0B9,\n\t51006 - 44032: 0x9FB6,\n\t51007 - 44032: 0x9FB7,\n\t51008 - 44032: 0xC0BA,\n\t51009 - 44032: 0x9FB8,\n\t51010 - 44032: 0x9FB9,\n\t51011 - 44032: 0x9FBA,\n\t51012 - 44032: 0xC0BB,\n\t51013 - 44032: 0x9FBB,\n\t51014 - 44032: 0x9FBC,\n\t51015 - 44032: 0x9FBD,\n\t51016 - 44032: 0x9FBE,\n\t51017 - 44032: 0x9FBF,\n\t51018 - 44032: 0xC0BC,\n\t51019 - 44032: 0x9FC0,\n\t51020 - 44032: 0xC0BD,\n\t51021 - 44032: 0xC0BE,\n\t51022 - 44032: 0x9FC1,\n\t51023 - 44032: 0xC0BF,\n\t51024 - 44032: 0x9FC2,\n\t51025 - 44032: 0xC0C0,\n\t51026 - 44032: 0xC0C1,\n\t51027 - 44032: 0xC0C2,\n\t51028 - 44032: 0xC0C3,\n\t51029 - 44032: 0xC0C4,\n\t51030 - 44032: 0xC0C5,\n\t51031 - 44032: 0xC0C6,\n\t51032 - 44032: 0xC0C7,\n\t51033 - 44032: 0x9FC3,\n\t51034 - 44032: 0x9FC4,\n\t51035 - 44032: 0x9FC5,\n\t51036 - 44032: 0xC0C8,\n\t51037 - 44032: 0x9FC6,\n\t51038 - 44032: 0x9FC7,\n\t51039 - 44032: 0x9FC8,\n\t51040 - 44032: 0xC0C9,\n\t51041 - 44032: 0x9FC9,\n\t51042 - 44032: 0x9FCA,\n\t51043 - 44032: 0x9FCB,\n\t51044 - 44032: 0x9FCC,\n\t51045 - 44032: 0x9FCD,\n\t51046 - 44032: 0x9FCE,\n\t51047 - 44032: 0x9FCF,\n\t51048 - 44032: 0xC0CA,\n\t51049 - 44032: 0x9FD0,\n\t51050 - 44032: 0x9FD1,\n\t51051 - 44032: 0xC0CB,\n\t51052 - 44032: 0x9FD2,\n\t51053 - 44032: 0x9FD3,\n\t51054 - 44032: 0x9FD4,\n\t51055 - 44032: 0x9FD5,\n\t51056 - 44032: 0x9FD6,\n\t51057 - 44032: 0x9FD7,\n\t51058 - 44032: 0x9FD8,\n\t51059 - 44032: 0x9FD9,\n\t51060 - 44032: 0xC0CC,\n\t51061 - 44032: 0xC0CD,\n\t51062 - 44032: 0x9FDA,\n\t51063 - 44032: 0x9FDB,\n\t51064 - 44032: 0xC0CE,\n\t51065 - 44032: 0x9FDC,\n\t51066 - 44032: 0x9FDD,\n\t51067 - 44032: 0x9FDE,\n\t51068 - 44032: 0xC0CF,\n\t51069 - 44032: 0xC0D0,\n\t51070 - 44032: 0xC0D1,\n\t51071 - 44032: 0x9FDF,\n\t51072 - 44032: 0x9FE0,\n\t51073 - 44032: 0x9FE1,\n\t51074 - 44032: 0x9FE2,\n\t51075 - 44032: 0xC0D2,\n\t51076 - 44032: 0xC0D3,\n\t51077 - 44032: 0xC0D4,\n\t51078 - 44032: 0x9FE3,\n\t51079 - 44032: 0xC0D5,\n\t51080 - 44032: 0xC0D6,\n\t51081 - 44032: 0xC0D7,\n\t51082 - 44032: 0xC0D8,\n\t51083 - 44032: 0x9FE4,\n\t51084 - 44032: 0x9FE5,\n\t51085 - 44032: 0x9FE6,\n\t51086 - 44032: 0xC0D9,\n\t51087 - 44032: 0x9FE7,\n\t51088 - 44032: 0xC0DA,\n\t51089 - 44032: 0xC0DB,\n\t51090 - 44032: 0x9FE8,\n\t51091 - 44032: 0x9FE9,\n\t51092 - 44032: 0xC0DC,\n\t51093 - 44032: 0x9FEA,\n\t51094 - 44032: 0xC0DD,\n\t51095 - 44032: 0xC0DE,\n\t51096 - 44032: 0xC0DF,\n\t51097 - 44032: 0x9FEB,\n\t51098 - 44032: 0xC0E0,\n\t51099 - 44032: 0x9FEC,\n\t51100 - 44032: 0x9FED,\n\t51101 - 44032: 0x9FEE,\n\t51102 - 44032: 0x9FEF,\n\t51103 - 44032: 0x9FF0,\n\t51104 - 44032: 0xC0E1,\n\t51105 - 44032: 0xC0E2,\n\t51106 - 44032: 0x9FF1,\n\t51107 - 44032: 0xC0E3,\n\t51108 - 44032: 0xC0E4,\n\t51109 - 44032: 0xC0E5,\n\t51110 - 44032: 0xC0E6,\n\t51111 - 44032: 0x9FF2,\n\t51112 - 44032: 0x9FF3,\n\t51113 - 44032: 0x9FF4,\n\t51114 - 44032: 0x9FF5,\n\t51115 - 44032: 0x9FF6,\n\t51116 - 44032: 0xC0E7,\n\t51117 - 44032: 0xC0E8,\n\t51118 - 44032: 0x9FF7,\n\t51119 - 44032: 0x9FF8,\n\t51120 - 44032: 0xC0E9,\n\t51121 - 44032: 0x9FF9,\n\t51122 - 44032: 0x9FFA,\n\t51123 - 44032: 0x9FFB,\n\t51124 - 44032: 0xC0EA,\n\t51125 - 44032: 0x9FFC,\n\t51126 - 44032: 0x9FFD,\n\t51127 - 44032: 0x9FFE,\n\t51128 - 44032: 0xA041,\n\t51129 - 44032: 0xA042,\n\t51130 - 44032: 0xA043,\n\t51131 - 44032: 0xA044,\n\t51132 - 44032: 0xC0EB,\n\t51133 - 44032: 0xC0EC,\n\t51134 - 44032: 0xA045,\n\t51135 - 44032: 0xC0ED,\n\t51136 - 44032: 0xC0EE,\n\t51137 - 44032: 0xC0EF,\n\t51138 - 44032: 0xA046,\n\t51139 - 44032: 0xA047,\n\t51140 - 44032: 0xA048,\n\t51141 - 44032: 0xA049,\n\t51142 - 44032: 0xA04A,\n\t51143 - 44032: 0xA04B,\n\t51144 - 44032: 0xC0F0,\n\t51145 - 44032: 0xC0F1,\n\t51146 - 44032: 0xA04C,\n\t51147 - 44032: 0xA04D,\n\t51148 - 44032: 0xC0F2,\n\t51149 - 44032: 0xA04E,\n\t51150 - 44032: 0xC0F3,\n\t51151 - 44032: 0xA04F,\n\t51152 - 44032: 0xC0F4,\n\t51153 - 44032: 0xA050,\n\t51154 - 44032: 0xA051,\n\t51155 - 44032: 0xA052,\n\t51156 - 44032: 0xA053,\n\t51157 - 44032: 0xA054,\n\t51158 - 44032: 0xA055,\n\t51159 - 44032: 0xA056,\n\t51160 - 44032: 0xC0F5,\n\t51161 - 44032: 0xA057,\n\t51162 - 44032: 0xA058,\n\t51163 - 44032: 0xA059,\n\t51164 - 44032: 0xA05A,\n\t51165 - 44032: 0xC0F6,\n\t51166 - 44032: 0xA061,\n\t51167 - 44032: 0xA062,\n\t51168 - 44032: 0xA063,\n\t51169 - 44032: 0xA064,\n\t51170 - 44032: 0xA065,\n\t51171 - 44032: 0xA066,\n\t51172 - 44032: 0xC0F7,\n\t51173 - 44032: 0xA067,\n\t51174 - 44032: 0xA068,\n\t51175 - 44032: 0xA069,\n\t51176 - 44032: 0xC0F8,\n\t51177 - 44032: 0xA06A,\n\t51178 - 44032: 0xA06B,\n\t51179 - 44032: 0xA06C,\n\t51180 - 44032: 0xC0F9,\n\t51181 - 44032: 0xA06D,\n\t51182 - 44032: 0xA06E,\n\t51183 - 44032: 0xA06F,\n\t51184 - 44032: 0xA070,\n\t51185 - 44032: 0xA071,\n\t51186 - 44032: 0xA072,\n\t51187 - 44032: 0xA073,\n\t51188 - 44032: 0xA074,\n\t51189 - 44032: 0xA075,\n\t51190 - 44032: 0xA076,\n\t51191 - 44032: 0xA077,\n\t51192 - 44032: 0xA078,\n\t51193 - 44032: 0xA079,\n\t51194 - 44032: 0xA07A,\n\t51195 - 44032: 0xA081,\n\t51196 - 44032: 0xA082,\n\t51197 - 44032: 0xA083,\n\t51198 - 44032: 0xA084,\n\t51199 - 44032: 0xA085,\n\t51200 - 44032: 0xC0FA,\n\t51201 - 44032: 0xC0FB,\n\t51202 - 44032: 0xA086,\n\t51203 - 44032: 0xA087,\n\t51204 - 44032: 0xC0FC,\n\t51205 - 44032: 0xA088,\n\t51206 - 44032: 0xA089,\n\t51207 - 44032: 0xA08A,\n\t51208 - 44032: 0xC0FD,\n\t51209 - 44032: 0xA08B,\n\t51210 - 44032: 0xC0FE,\n\t51211 - 44032: 0xA08C,\n\t51212 - 44032: 0xA08D,\n\t51213 - 44032: 0xA08E,\n\t51214 - 44032: 0xA08F,\n\t51215 - 44032: 0xA090,\n\t51216 - 44032: 0xC1A1,\n\t51217 - 44032: 0xC1A2,\n\t51218 - 44032: 0xA091,\n\t51219 - 44032: 0xC1A3,\n\t51220 - 44032: 0xA092,\n\t51221 - 44032: 0xC1A4,\n\t51222 - 44032: 0xC1A5,\n\t51223 - 44032: 0xA093,\n\t51224 - 44032: 0xA094,\n\t51225 - 44032: 0xA095,\n\t51226 - 44032: 0xA096,\n\t51227 - 44032: 0xA097,\n\t51228 - 44032: 0xC1A6,\n\t51229 - 44032: 0xC1A7,\n\t51230 - 44032: 0xA098,\n\t51231 - 44032: 0xA099,\n\t51232 - 44032: 0xC1A8,\n\t51233 - 44032: 0xA09A,\n\t51234 - 44032: 0xA09B,\n\t51235 - 44032: 0xA09C,\n\t51236 - 44032: 0xC1A9,\n\t51237 - 44032: 0xA09D,\n\t51238 - 44032: 0xA09E,\n\t51239 - 44032: 0xA09F,\n\t51240 - 44032: 0xA0A0,\n\t51241 - 44032: 0xA0A1,\n\t51242 - 44032: 0xA0A2,\n\t51243 - 44032: 0xA0A3,\n\t51244 - 44032: 0xC1AA,\n\t51245 - 44032: 0xC1AB,\n\t51246 - 44032: 0xA0A4,\n\t51247 - 44032: 0xC1AC,\n\t51248 - 44032: 0xA0A5,\n\t51249 - 44032: 0xC1AD,\n\t51250 - 44032: 0xA0A6,\n\t51251 - 44032: 0xA0A7,\n\t51252 - 44032: 0xA0A8,\n\t51253 - 44032: 0xA0A9,\n\t51254 - 44032: 0xA0AA,\n\t51255 - 44032: 0xA0AB,\n\t51256 - 44032: 0xC1AE,\n\t51257 - 44032: 0xA0AC,\n\t51258 - 44032: 0xA0AD,\n\t51259 - 44032: 0xA0AE,\n\t51260 - 44032: 0xC1AF,\n\t51261 - 44032: 0xA0AF,\n\t51262 - 44032: 0xA0B0,\n\t51263 - 44032: 0xA0B1,\n\t51264 - 44032: 0xC1B0,\n\t51265 - 44032: 0xA0B2,\n\t51266 - 44032: 0xA0B3,\n\t51267 - 44032: 0xA0B4,\n\t51268 - 44032: 0xA0B5,\n\t51269 - 44032: 0xA0B6,\n\t51270 - 44032: 0xA0B7,\n\t51271 - 44032: 0xA0B8,\n\t51272 - 44032: 0xC1B1,\n\t51273 - 44032: 0xC1B2,\n\t51274 - 44032: 0xA0B9,\n\t51275 - 44032: 0xA0BA,\n\t51276 - 44032: 0xC1B3,\n\t51277 - 44032: 0xC1B4,\n\t51278 - 44032: 0xA0BB,\n\t51279 - 44032: 0xA0BC,\n\t51280 - 44032: 0xA0BD,\n\t51281 - 44032: 0xA0BE,\n\t51282 - 44032: 0xA0BF,\n\t51283 - 44032: 0xA0C0,\n\t51284 - 44032: 0xC1B5,\n\t51285 - 44032: 0xA0C1,\n\t51286 - 44032: 0xA0C2,\n\t51287 - 44032: 0xA0C3,\n\t51288 - 44032: 0xA0C4,\n\t51289 - 44032: 0xA0C5,\n\t51290 - 44032: 0xA0C6,\n\t51291 - 44032: 0xA0C7,\n\t51292 - 44032: 0xA0C8,\n\t51293 - 44032: 0xA0C9,\n\t51294 - 44032: 0xA0CA,\n\t51295 - 44032: 0xA0CB,\n\t51296 - 44032: 0xA0CC,\n\t51297 - 44032: 0xA0CD,\n\t51298 - 44032: 0xA0CE,\n\t51299 - 44032: 0xA0CF,\n\t51300 - 44032: 0xA0D0,\n\t51301 - 44032: 0xA0D1,\n\t51302 - 44032: 0xA0D2,\n\t51303 - 44032: 0xA0D3,\n\t51304 - 44032: 0xA0D4,\n\t51305 - 44032: 0xA0D5,\n\t51306 - 44032: 0xA0D6,\n\t51307 - 44032: 0xA0D7,\n\t51308 - 44032: 0xA0D8,\n\t51309 - 44032: 0xA0D9,\n\t51310 - 44032: 0xA0DA,\n\t51311 - 44032: 0xA0DB,\n\t51312 - 44032: 0xC1B6,\n\t51313 - 44032: 0xC1B7,\n\t51314 - 44032: 0xA0DC,\n\t51315 - 44032: 0xA0DD,\n\t51316 - 44032: 0xC1B8,\n\t51317 - 44032: 0xA0DE,\n\t51318 - 44032: 0xA0DF,\n\t51319 - 44032: 0xA0E0,\n\t51320 - 44032: 0xC1B9,\n\t51321 - 44032: 0xA0E1,\n\t51322 - 44032: 0xC1BA,\n\t51323 - 44032: 0xA0E2,\n\t51324 - 44032: 0xA0E3,\n\t51325 - 44032: 0xA0E4,\n\t51326 - 44032: 0xA0E5,\n\t51327 - 44032: 0xA0E6,\n\t51328 - 44032: 0xC1BB,\n\t51329 - 44032: 0xC1BC,\n\t51330 - 44032: 0xA0E7,\n\t51331 - 44032: 0xC1BD,\n\t51332 - 44032: 0xA0E8,\n\t51333 - 44032: 0xC1BE,\n\t51334 - 44032: 0xC1BF,\n\t51335 - 44032: 0xC1C0,\n\t51336 - 44032: 0xA0E9,\n\t51337 - 44032: 0xA0EA,\n\t51338 - 44032: 0xA0EB,\n\t51339 - 44032: 0xC1C1,\n\t51340 - 44032: 0xC1C2,\n\t51341 - 44032: 0xC1C3,\n\t51342 - 44032: 0xA0EC,\n\t51343 - 44032: 0xA0ED,\n\t51344 - 44032: 0xA0EE,\n\t51345 - 44032: 0xA0EF,\n\t51346 - 44032: 0xA0F0,\n\t51347 - 44032: 0xA0F1,\n\t51348 - 44032: 0xC1C4,\n\t51349 - 44032: 0xA0F2,\n\t51350 - 44032: 0xA0F3,\n\t51351 - 44032: 0xA0F4,\n\t51352 - 44032: 0xA0F5,\n\t51353 - 44032: 0xA0F6,\n\t51354 - 44032: 0xA0F7,\n\t51355 - 44032: 0xA0F8,\n\t51356 - 44032: 0xA0F9,\n\t51357 - 44032: 0xC1C5,\n\t51358 - 44032: 0xA0FA,\n\t51359 - 44032: 0xC1C6,\n\t51360 - 44032: 0xA0FB,\n\t51361 - 44032: 0xC1C7,\n\t51362 - 44032: 0xA0FC,\n\t51363 - 44032: 0xA0FD,\n\t51364 - 44032: 0xA0FE,\n\t51365 - 44032: 0xA141,\n\t51366 - 44032: 0xA142,\n\t51367 - 44032: 0xA143,\n\t51368 - 44032: 0xC1C8,\n\t51369 - 44032: 0xA144,\n\t51370 - 44032: 0xA145,\n\t51371 - 44032: 0xA146,\n\t51372 - 44032: 0xA147,\n\t51373 - 44032: 0xA148,\n\t51374 - 44032: 0xA149,\n\t51375 - 44032: 0xA14A,\n\t51376 - 44032: 0xA14B,\n\t51377 - 44032: 0xA14C,\n\t51378 - 44032: 0xA14D,\n\t51379 - 44032: 0xA14E,\n\t51380 - 44032: 0xA14F,\n\t51381 - 44032: 0xA150,\n\t51382 - 44032: 0xA151,\n\t51383 - 44032: 0xA152,\n\t51384 - 44032: 0xA153,\n\t51385 - 44032: 0xA154,\n\t51386 - 44032: 0xA155,\n\t51387 - 44032: 0xA156,\n\t51388 - 44032: 0xC1C9,\n\t51389 - 44032: 0xC1CA,\n\t51390 - 44032: 0xA157,\n\t51391 - 44032: 0xA158,\n\t51392 - 44032: 0xA159,\n\t51393 - 44032: 0xA15A,\n\t51394 - 44032: 0xA161,\n\t51395 - 44032: 0xA162,\n\t51396 - 44032: 0xC1CB,\n\t51397 - 44032: 0xA163,\n\t51398 - 44032: 0xA164,\n\t51399 - 44032: 0xA165,\n\t51400 - 44032: 0xC1CC,\n\t51401 - 44032: 0xA166,\n\t51402 - 44032: 0xA167,\n\t51403 - 44032: 0xA168,\n\t51404 - 44032: 0xC1CD,\n\t51405 - 44032: 0xA169,\n\t51406 - 44032: 0xA16A,\n\t51407 - 44032: 0xA16B,\n\t51408 - 44032: 0xA16C,\n\t51409 - 44032: 0xA16D,\n\t51410 - 44032: 0xA16E,\n\t51411 - 44032: 0xA16F,\n\t51412 - 44032: 0xC1CE,\n\t51413 - 44032: 0xC1CF,\n\t51414 - 44032: 0xA170,\n\t51415 - 44032: 0xC1D0,\n\t51416 - 44032: 0xA171,\n\t51417 - 44032: 0xC1D1,\n\t51418 - 44032: 0xA172,\n\t51419 - 44032: 0xA173,\n\t51420 - 44032: 0xA174,\n\t51421 - 44032: 0xA175,\n\t51422 - 44032: 0xA176,\n\t51423 - 44032: 0xA177,\n\t51424 - 44032: 0xC1D2,\n\t51425 - 44032: 0xC1D3,\n\t51426 - 44032: 0xA178,\n\t51427 - 44032: 0xA179,\n\t51428 - 44032: 0xC1D4,\n\t51429 - 44032: 0xA17A,\n\t51430 - 44032: 0xA181,\n\t51431 - 44032: 0xA182,\n\t51432 - 44032: 0xA183,\n\t51433 - 44032: 0xA184,\n\t51434 - 44032: 0xA185,\n\t51435 - 44032: 0xA186,\n\t51436 - 44032: 0xA187,\n\t51437 - 44032: 0xA188,\n\t51438 - 44032: 0xA189,\n\t51439 - 44032: 0xA18A,\n\t51440 - 44032: 0xA18B,\n\t51441 - 44032: 0xA18C,\n\t51442 - 44032: 0xA18D,\n\t51443 - 44032: 0xA18E,\n\t51444 - 44032: 0xA18F,\n\t51445 - 44032: 0xC1D5,\n\t51446 - 44032: 0xA190,\n\t51447 - 44032: 0xA191,\n\t51448 - 44032: 0xA192,\n\t51449 - 44032: 0xA193,\n\t51450 - 44032: 0xA194,\n\t51451 - 44032: 0xA195,\n\t51452 - 44032: 0xC1D6,\n\t51453 - 44032: 0xC1D7,\n\t51454 - 44032: 0xA196,\n\t51455 - 44032: 0xA197,\n\t51456 - 44032: 0xC1D8,\n\t51457 - 44032: 0xA198,\n\t51458 - 44032: 0xA199,\n\t51459 - 44032: 0xA19A,\n\t51460 - 44032: 0xC1D9,\n\t51461 - 44032: 0xC1DA,\n\t51462 - 44032: 0xC1DB,\n\t51463 - 44032: 0xA19B,\n\t51464 - 44032: 0xA19C,\n\t51465 - 44032: 0xA19D,\n\t51466 - 44032: 0xA19E,\n\t51467 - 44032: 0xA19F,\n\t51468 - 44032: 0xC1DC,\n\t51469 - 44032: 0xC1DD,\n\t51470 - 44032: 0xA1A0,\n\t51471 - 44032: 0xC1DE,\n\t51472 - 44032: 0xA241,\n\t51473 - 44032: 0xC1DF,\n\t51474 - 44032: 0xA242,\n\t51475 - 44032: 0xA243,\n\t51476 - 44032: 0xA244,\n\t51477 - 44032: 0xA245,\n\t51478 - 44032: 0xA246,\n\t51479 - 44032: 0xA247,\n\t51480 - 44032: 0xC1E0,\n\t51481 - 44032: 0xA248,\n\t51482 - 44032: 0xA249,\n\t51483 - 44032: 0xA24A,\n\t51484 - 44032: 0xA24B,\n\t51485 - 44032: 0xA24C,\n\t51486 - 44032: 0xA24D,\n\t51487 - 44032: 0xA24E,\n\t51488 - 44032: 0xA24F,\n\t51489 - 44032: 0xA250,\n\t51490 - 44032: 0xA251,\n\t51491 - 44032: 0xA252,\n\t51492 - 44032: 0xA253,\n\t51493 - 44032: 0xA254,\n\t51494 - 44032: 0xA255,\n\t51495 - 44032: 0xA256,\n\t51496 - 44032: 0xA257,\n\t51497 - 44032: 0xA258,\n\t51498 - 44032: 0xA259,\n\t51499 - 44032: 0xA25A,\n\t51500 - 44032: 0xC1E1,\n\t51501 - 44032: 0xA261,\n\t51502 - 44032: 0xA262,\n\t51503 - 44032: 0xA263,\n\t51504 - 44032: 0xA264,\n\t51505 - 44032: 0xA265,\n\t51506 - 44032: 0xA266,\n\t51507 - 44032: 0xA267,\n\t51508 - 44032: 0xC1E2,\n\t51509 - 44032: 0xA268,\n\t51510 - 44032: 0xA269,\n\t51511 - 44032: 0xA26A,\n\t51512 - 44032: 0xA26B,\n\t51513 - 44032: 0xA26C,\n\t51514 - 44032: 0xA26D,\n\t51515 - 44032: 0xA26E,\n\t51516 - 44032: 0xA26F,\n\t51517 - 44032: 0xA270,\n\t51518 - 44032: 0xA271,\n\t51519 - 44032: 0xA272,\n\t51520 - 44032: 0xA273,\n\t51521 - 44032: 0xA274,\n\t51522 - 44032: 0xA275,\n\t51523 - 44032: 0xA276,\n\t51524 - 44032: 0xA277,\n\t51525 - 44032: 0xA278,\n\t51526 - 44032: 0xA279,\n\t51527 - 44032: 0xA27A,\n\t51528 - 44032: 0xA281,\n\t51529 - 44032: 0xA282,\n\t51530 - 44032: 0xA283,\n\t51531 - 44032: 0xA284,\n\t51532 - 44032: 0xA285,\n\t51533 - 44032: 0xA286,\n\t51534 - 44032: 0xA287,\n\t51535 - 44032: 0xA288,\n\t51536 - 44032: 0xC1E3,\n\t51537 - 44032: 0xC1E4,\n\t51538 - 44032: 0xA289,\n\t51539 - 44032: 0xA28A,\n\t51540 - 44032: 0xC1E5,\n\t51541 - 44032: 0xA28B,\n\t51542 - 44032: 0xA28C,\n\t51543 - 44032: 0xA28D,\n\t51544 - 44032: 0xC1E6,\n\t51545 - 44032: 0xA28E,\n\t51546 - 44032: 0xA28F,\n\t51547 - 44032: 0xA290,\n\t51548 - 44032: 0xA291,\n\t51549 - 44032: 0xA292,\n\t51550 - 44032: 0xA293,\n\t51551 - 44032: 0xA294,\n\t51552 - 44032: 0xC1E7,\n\t51553 - 44032: 0xC1E8,\n\t51554 - 44032: 0xA295,\n\t51555 - 44032: 0xC1E9,\n\t51556 - 44032: 0xA296,\n\t51557 - 44032: 0xA297,\n\t51558 - 44032: 0xA298,\n\t51559 - 44032: 0xA299,\n\t51560 - 44032: 0xA29A,\n\t51561 - 44032: 0xA29B,\n\t51562 - 44032: 0xA29C,\n\t51563 - 44032: 0xA29D,\n\t51564 - 44032: 0xC1EA,\n\t51565 - 44032: 0xA29E,\n\t51566 - 44032: 0xA29F,\n\t51567 - 44032: 0xA2A0,\n\t51568 - 44032: 0xC1EB,\n\t51569 - 44032: 0xA341,\n\t51570 - 44032: 0xA342,\n\t51571 - 44032: 0xA343,\n\t51572 - 44032: 0xC1EC,\n\t51573 - 44032: 0xA344,\n\t51574 - 44032: 0xA345,\n\t51575 - 44032: 0xA346,\n\t51576 - 44032: 0xA347,\n\t51577 - 44032: 0xA348,\n\t51578 - 44032: 0xA349,\n\t51579 - 44032: 0xA34A,\n\t51580 - 44032: 0xC1ED,\n\t51581 - 44032: 0xA34B,\n\t51582 - 44032: 0xA34C,\n\t51583 - 44032: 0xA34D,\n\t51584 - 44032: 0xA34E,\n\t51585 - 44032: 0xA34F,\n\t51586 - 44032: 0xA350,\n\t51587 - 44032: 0xA351,\n\t51588 - 44032: 0xA352,\n\t51589 - 44032: 0xA353,\n\t51590 - 44032: 0xA354,\n\t51591 - 44032: 0xA355,\n\t51592 - 44032: 0xC1EE,\n\t51593 - 44032: 0xC1EF,\n\t51594 - 44032: 0xA356,\n\t51595 - 44032: 0xA357,\n\t51596 - 44032: 0xC1F0,\n\t51597 - 44032: 0xA358,\n\t51598 - 44032: 0xA359,\n\t51599 - 44032: 0xA35A,\n\t51600 - 44032: 0xC1F1,\n\t51601 - 44032: 0xA361,\n\t51602 - 44032: 0xA362,\n\t51603 - 44032: 0xA363,\n\t51604 - 44032: 0xA364,\n\t51605 - 44032: 0xA365,\n\t51606 - 44032: 0xA366,\n\t51607 - 44032: 0xA367,\n\t51608 - 44032: 0xC1F2,\n\t51609 - 44032: 0xC1F3,\n\t51610 - 44032: 0xA368,\n\t51611 - 44032: 0xC1F4,\n\t51612 - 44032: 0xA369,\n\t51613 - 44032: 0xC1F5,\n\t51614 - 44032: 0xA36A,\n\t51615 - 44032: 0xA36B,\n\t51616 - 44032: 0xA36C,\n\t51617 - 44032: 0xA36D,\n\t51618 - 44032: 0xA36E,\n\t51619 - 44032: 0xA36F,\n\t51620 - 44032: 0xA370,\n\t51621 - 44032: 0xA371,\n\t51622 - 44032: 0xA372,\n\t51623 - 44032: 0xA373,\n\t51624 - 44032: 0xA374,\n\t51625 - 44032: 0xA375,\n\t51626 - 44032: 0xA376,\n\t51627 - 44032: 0xA377,\n\t51628 - 44032: 0xA378,\n\t51629 - 44032: 0xA379,\n\t51630 - 44032: 0xA37A,\n\t51631 - 44032: 0xA381,\n\t51632 - 44032: 0xA382,\n\t51633 - 44032: 0xA383,\n\t51634 - 44032: 0xA384,\n\t51635 - 44032: 0xA385,\n\t51636 - 44032: 0xA386,\n\t51637 - 44032: 0xA387,\n\t51638 - 44032: 0xA388,\n\t51639 - 44032: 0xA389,\n\t51640 - 44032: 0xA38A,\n\t51641 - 44032: 0xA38B,\n\t51642 - 44032: 0xA38C,\n\t51643 - 44032: 0xA38D,\n\t51644 - 44032: 0xA38E,\n\t51645 - 44032: 0xA38F,\n\t51646 - 44032: 0xA390,\n\t51647 - 44032: 0xA391,\n\t51648 - 44032: 0xC1F6,\n\t51649 - 44032: 0xC1F7,\n\t51650 - 44032: 0xA392,\n\t51651 - 44032: 0xA393,\n\t51652 - 44032: 0xC1F8,\n\t51653 - 44032: 0xA394,\n\t51654 - 44032: 0xA395,\n\t51655 - 44032: 0xC1F9,\n\t51656 - 44032: 0xC1FA,\n\t51657 - 44032: 0xA396,\n\t51658 - 44032: 0xC1FB,\n\t51659 - 44032: 0xA397,\n\t51660 - 44032: 0xA398,\n\t51661 - 44032: 0xA399,\n\t51662 - 44032: 0xA39A,\n\t51663 - 44032: 0xA39B,\n\t51664 - 44032: 0xC1FC,\n\t51665 - 44032: 0xC1FD,\n\t51666 - 44032: 0xA39C,\n\t51667 - 44032: 0xC1FE,\n\t51668 - 44032: 0xA39D,\n\t51669 - 44032: 0xC2A1,\n\t51670 - 44032: 0xC2A2,\n\t51671 - 44032: 0xA39E,\n\t51672 - 44032: 0xA39F,\n\t51673 - 44032: 0xC2A3,\n\t51674 - 44032: 0xC2A4,\n\t51675 - 44032: 0xA3A0,\n\t51676 - 44032: 0xC2A5,\n\t51677 - 44032: 0xC2A6,\n\t51678 - 44032: 0xA441,\n\t51679 - 44032: 0xA442,\n\t51680 - 44032: 0xC2A7,\n\t51681 - 44032: 0xA443,\n\t51682 - 44032: 0xC2A8,\n\t51683 - 44032: 0xA444,\n\t51684 - 44032: 0xC2A9,\n\t51685 - 44032: 0xA445,\n\t51686 - 44032: 0xA446,\n\t51687 - 44032: 0xC2AA,\n\t51688 - 44032: 0xA447,\n\t51689 - 44032: 0xA448,\n\t51690 - 44032: 0xA449,\n\t51691 - 44032: 0xA44A,\n\t51692 - 44032: 0xC2AB,\n\t51693 - 44032: 0xC2AC,\n\t51694 - 44032: 0xA44B,\n\t51695 - 44032: 0xC2AD,\n\t51696 - 44032: 0xC2AE,\n\t51697 - 44032: 0xC2AF,\n\t51698 - 44032: 0xA44C,\n\t51699 - 44032: 0xA44D,\n\t51700 - 44032: 0xA44E,\n\t51701 - 44032: 0xA44F,\n\t51702 - 44032: 0xA450,\n\t51703 - 44032: 0xA451,\n\t51704 - 44032: 0xC2B0,\n\t51705 - 44032: 0xC2B1,\n\t51706 - 44032: 0xA452,\n\t51707 - 44032: 0xA453,\n\t51708 - 44032: 0xC2B2,\n\t51709 - 44032: 0xA454,\n\t51710 - 44032: 0xA455,\n\t51711 - 44032: 0xA456,\n\t51712 - 44032: 0xC2B3,\n\t51713 - 44032: 0xA457,\n\t51714 - 44032: 0xA458,\n\t51715 - 44032: 0xA459,\n\t51716 - 44032: 0xA45A,\n\t51717 - 44032: 0xA461,\n\t51718 - 44032: 0xA462,\n\t51719 - 44032: 0xA463,\n\t51720 - 44032: 0xC2B4,\n\t51721 - 44032: 0xC2B5,\n\t51722 - 44032: 0xA464,\n\t51723 - 44032: 0xC2B6,\n\t51724 - 44032: 0xC2B7,\n\t51725 - 44032: 0xC2B8,\n\t51726 - 44032: 0xA465,\n\t51727 - 44032: 0xA466,\n\t51728 - 44032: 0xA467,\n\t51729 - 44032: 0xA468,\n\t51730 - 44032: 0xA469,\n\t51731 - 44032: 0xA46A,\n\t51732 - 44032: 0xC2B9,\n\t51733 - 44032: 0xA46B,\n\t51734 - 44032: 0xA46C,\n\t51735 - 44032: 0xA46D,\n\t51736 - 44032: 0xC2BA,\n\t51737 - 44032: 0xA46E,\n\t51738 - 44032: 0xA46F,\n\t51739 - 44032: 0xA470,\n\t51740 - 44032: 0xA471,\n\t51741 - 44032: 0xA472,\n\t51742 - 44032: 0xA473,\n\t51743 - 44032: 0xA474,\n\t51744 - 44032: 0xA475,\n\t51745 - 44032: 0xA476,\n\t51746 - 44032: 0xA477,\n\t51747 - 44032: 0xA478,\n\t51748 - 44032: 0xA479,\n\t51749 - 44032: 0xA47A,\n\t51750 - 44032: 0xA481,\n\t51751 - 44032: 0xA482,\n\t51752 - 44032: 0xA483,\n\t51753 - 44032: 0xC2BB,\n\t51754 - 44032: 0xA484,\n\t51755 - 44032: 0xA485,\n\t51756 - 44032: 0xA486,\n\t51757 - 44032: 0xA487,\n\t51758 - 44032: 0xA488,\n\t51759 - 44032: 0xA489,\n\t51760 - 44032: 0xA48A,\n\t51761 - 44032: 0xA48B,\n\t51762 - 44032: 0xA48C,\n\t51763 - 44032: 0xA48D,\n\t51764 - 44032: 0xA48E,\n\t51765 - 44032: 0xA48F,\n\t51766 - 44032: 0xA490,\n\t51767 - 44032: 0xA491,\n\t51768 - 44032: 0xA492,\n\t51769 - 44032: 0xA493,\n\t51770 - 44032: 0xA494,\n\t51771 - 44032: 0xA495,\n\t51772 - 44032: 0xA496,\n\t51773 - 44032: 0xA497,\n\t51774 - 44032: 0xA498,\n\t51775 - 44032: 0xA499,\n\t51776 - 44032: 0xA49A,\n\t51777 - 44032: 0xA49B,\n\t51778 - 44032: 0xA49C,\n\t51779 - 44032: 0xA49D,\n\t51780 - 44032: 0xA49E,\n\t51781 - 44032: 0xA49F,\n\t51782 - 44032: 0xA4A0,\n\t51783 - 44032: 0xA541,\n\t51784 - 44032: 0xA542,\n\t51785 - 44032: 0xA543,\n\t51786 - 44032: 0xA544,\n\t51787 - 44032: 0xA545,\n\t51788 - 44032: 0xC2BC,\n\t51789 - 44032: 0xC2BD,\n\t51790 - 44032: 0xA546,\n\t51791 - 44032: 0xA547,\n\t51792 - 44032: 0xC2BE,\n\t51793 - 44032: 0xA548,\n\t51794 - 44032: 0xA549,\n\t51795 - 44032: 0xA54A,\n\t51796 - 44032: 0xC2BF,\n\t51797 - 44032: 0xA54B,\n\t51798 - 44032: 0xA54C,\n\t51799 - 44032: 0xA54D,\n\t51800 - 44032: 0xA54E,\n\t51801 - 44032: 0xA54F,\n\t51802 - 44032: 0xA550,\n\t51803 - 44032: 0xA551,\n\t51804 - 44032: 0xC2C0,\n\t51805 - 44032: 0xC2C1,\n\t51806 - 44032: 0xA552,\n\t51807 - 44032: 0xC2C2,\n\t51808 - 44032: 0xC2C3,\n\t51809 - 44032: 0xC2C4,\n\t51810 - 44032: 0xA553,\n\t51811 - 44032: 0xA554,\n\t51812 - 44032: 0xA555,\n\t51813 - 44032: 0xA556,\n\t51814 - 44032: 0xA557,\n\t51815 - 44032: 0xA558,\n\t51816 - 44032: 0xC2C5,\n\t51817 - 44032: 0xA559,\n\t51818 - 44032: 0xA55A,\n\t51819 - 44032: 0xA561,\n\t51820 - 44032: 0xA562,\n\t51821 - 44032: 0xA563,\n\t51822 - 44032: 0xA564,\n\t51823 - 44032: 0xA565,\n\t51824 - 44032: 0xA566,\n\t51825 - 44032: 0xA567,\n\t51826 - 44032: 0xA568,\n\t51827 - 44032: 0xA569,\n\t51828 - 44032: 0xA56A,\n\t51829 - 44032: 0xA56B,\n\t51830 - 44032: 0xA56C,\n\t51831 - 44032: 0xA56D,\n\t51832 - 44032: 0xA56E,\n\t51833 - 44032: 0xA56F,\n\t51834 - 44032: 0xA570,\n\t51835 - 44032: 0xA571,\n\t51836 - 44032: 0xA572,\n\t51837 - 44032: 0xC2C6,\n\t51838 - 44032: 0xA573,\n\t51839 - 44032: 0xA574,\n\t51840 - 44032: 0xA575,\n\t51841 - 44032: 0xA576,\n\t51842 - 44032: 0xA577,\n\t51843 - 44032: 0xA578,\n\t51844 - 44032: 0xC2C7,\n\t51845 - 44032: 0xA579,\n\t51846 - 44032: 0xA57A,\n\t51847 - 44032: 0xA581,\n\t51848 - 44032: 0xA582,\n\t51849 - 44032: 0xA583,\n\t51850 - 44032: 0xA584,\n\t51851 - 44032: 0xA585,\n\t51852 - 44032: 0xA586,\n\t51853 - 44032: 0xA587,\n\t51854 - 44032: 0xA588,\n\t51855 - 44032: 0xA589,\n\t51856 - 44032: 0xA58A,\n\t51857 - 44032: 0xA58B,\n\t51858 - 44032: 0xA58C,\n\t51859 - 44032: 0xA58D,\n\t51860 - 44032: 0xA58E,\n\t51861 - 44032: 0xA58F,\n\t51862 - 44032: 0xA590,\n\t51863 - 44032: 0xA591,\n\t51864 - 44032: 0xC2C8,\n\t51865 - 44032: 0xA592,\n\t51866 - 44032: 0xA593,\n\t51867 - 44032: 0xA594,\n\t51868 - 44032: 0xA595,\n\t51869 - 44032: 0xA596,\n\t51870 - 44032: 0xA597,\n\t51871 - 44032: 0xA598,\n\t51872 - 44032: 0xA599,\n\t51873 - 44032: 0xA59A,\n\t51874 - 44032: 0xA59B,\n\t51875 - 44032: 0xA59C,\n\t51876 - 44032: 0xA59D,\n\t51877 - 44032: 0xA59E,\n\t51878 - 44032: 0xA59F,\n\t51879 - 44032: 0xA5A0,\n\t51880 - 44032: 0xA641,\n\t51881 - 44032: 0xA642,\n\t51882 - 44032: 0xA643,\n\t51883 - 44032: 0xA644,\n\t51884 - 44032: 0xA645,\n\t51885 - 44032: 0xA646,\n\t51886 - 44032: 0xA647,\n\t51887 - 44032: 0xA648,\n\t51888 - 44032: 0xA649,\n\t51889 - 44032: 0xA64A,\n\t51890 - 44032: 0xA64B,\n\t51891 - 44032: 0xA64C,\n\t51892 - 44032: 0xA64D,\n\t51893 - 44032: 0xA64E,\n\t51894 - 44032: 0xA64F,\n\t51895 - 44032: 0xA650,\n\t51896 - 44032: 0xA651,\n\t51897 - 44032: 0xA652,\n\t51898 - 44032: 0xA653,\n\t51899 - 44032: 0xA654,\n\t51900 - 44032: 0xC2C9,\n\t51901 - 44032: 0xC2CA,\n\t51902 - 44032: 0xA655,\n\t51903 - 44032: 0xA656,\n\t51904 - 44032: 0xC2CB,\n\t51905 - 44032: 0xA657,\n\t51906 - 44032: 0xA658,\n\t51907 - 44032: 0xA659,\n\t51908 - 44032: 0xC2CC,\n\t51909 - 44032: 0xA65A,\n\t51910 - 44032: 0xA661,\n\t51911 - 44032: 0xA662,\n\t51912 - 44032: 0xA663,\n\t51913 - 44032: 0xA664,\n\t51914 - 44032: 0xA665,\n\t51915 - 44032: 0xA666,\n\t51916 - 44032: 0xC2CD,\n\t51917 - 44032: 0xC2CE,\n\t51918 - 44032: 0xA667,\n\t51919 - 44032: 0xC2CF,\n\t51920 - 44032: 0xA668,\n\t51921 - 44032: 0xC2D0,\n\t51922 - 44032: 0xA669,\n\t51923 - 44032: 0xC2D1,\n\t51924 - 44032: 0xA66A,\n\t51925 - 44032: 0xA66B,\n\t51926 - 44032: 0xA66C,\n\t51927 - 44032: 0xA66D,\n\t51928 - 44032: 0xC2D2,\n\t51929 - 44032: 0xC2D3,\n\t51930 - 44032: 0xA66E,\n\t51931 - 44032: 0xA66F,\n\t51932 - 44032: 0xA670,\n\t51933 - 44032: 0xA671,\n\t51934 - 44032: 0xA672,\n\t51935 - 44032: 0xA673,\n\t51936 - 44032: 0xC2D4,\n\t51937 - 44032: 0xA674,\n\t51938 - 44032: 0xA675,\n\t51939 - 44032: 0xA676,\n\t51940 - 44032: 0xA677,\n\t51941 - 44032: 0xA678,\n\t51942 - 44032: 0xA679,\n\t51943 - 44032: 0xA67A,\n\t51944 - 44032: 0xA681,\n\t51945 - 44032: 0xA682,\n\t51946 - 44032: 0xA683,\n\t51947 - 44032: 0xA684,\n\t51948 - 44032: 0xC2D5,\n\t51949 - 44032: 0xA685,\n\t51950 - 44032: 0xA686,\n\t51951 - 44032: 0xA687,\n\t51952 - 44032: 0xA688,\n\t51953 - 44032: 0xA689,\n\t51954 - 44032: 0xA68A,\n\t51955 - 44032: 0xA68B,\n\t51956 - 44032: 0xC2D6,\n\t51957 - 44032: 0xA68C,\n\t51958 - 44032: 0xA68D,\n\t51959 - 44032: 0xA68E,\n\t51960 - 44032: 0xA68F,\n\t51961 - 44032: 0xA690,\n\t51962 - 44032: 0xA691,\n\t51963 - 44032: 0xA692,\n\t51964 - 44032: 0xA693,\n\t51965 - 44032: 0xA694,\n\t51966 - 44032: 0xA695,\n\t51967 - 44032: 0xA696,\n\t51968 - 44032: 0xA697,\n\t51969 - 44032: 0xA698,\n\t51970 - 44032: 0xA699,\n\t51971 - 44032: 0xA69A,\n\t51972 - 44032: 0xA69B,\n\t51973 - 44032: 0xA69C,\n\t51974 - 44032: 0xA69D,\n\t51975 - 44032: 0xA69E,\n\t51976 - 44032: 0xC2D7,\n\t51977 - 44032: 0xA69F,\n\t51978 - 44032: 0xA6A0,\n\t51979 - 44032: 0xA741,\n\t51980 - 44032: 0xA742,\n\t51981 - 44032: 0xA743,\n\t51982 - 44032: 0xA744,\n\t51983 - 44032: 0xA745,\n\t51984 - 44032: 0xC2D8,\n\t51985 - 44032: 0xA746,\n\t51986 - 44032: 0xA747,\n\t51987 - 44032: 0xA748,\n\t51988 - 44032: 0xC2D9,\n\t51989 - 44032: 0xA749,\n\t51990 - 44032: 0xA74A,\n\t51991 - 44032: 0xA74B,\n\t51992 - 44032: 0xC2DA,\n\t51993 - 44032: 0xA74C,\n\t51994 - 44032: 0xA74D,\n\t51995 - 44032: 0xA74E,\n\t51996 - 44032: 0xA74F,\n\t51997 - 44032: 0xA750,\n\t51998 - 44032: 0xA751,\n\t51999 - 44032: 0xA752,\n\t52000 - 44032: 0xC2DB,\n\t52001 - 44032: 0xC2DC,\n\t52002 - 44032: 0xA753,\n\t52003 - 44032: 0xA754,\n\t52004 - 44032: 0xA755,\n\t52005 - 44032: 0xA756,\n\t52006 - 44032: 0xA757,\n\t52007 - 44032: 0xA758,\n\t52008 - 44032: 0xA759,\n\t52009 - 44032: 0xA75A,\n\t52010 - 44032: 0xA761,\n\t52011 - 44032: 0xA762,\n\t52012 - 44032: 0xA763,\n\t52013 - 44032: 0xA764,\n\t52014 - 44032: 0xA765,\n\t52015 - 44032: 0xA766,\n\t52016 - 44032: 0xA767,\n\t52017 - 44032: 0xA768,\n\t52018 - 44032: 0xA769,\n\t52019 - 44032: 0xA76A,\n\t52020 - 44032: 0xA76B,\n\t52021 - 44032: 0xA76C,\n\t52022 - 44032: 0xA76D,\n\t52023 - 44032: 0xA76E,\n\t52024 - 44032: 0xA76F,\n\t52025 - 44032: 0xA770,\n\t52026 - 44032: 0xA771,\n\t52027 - 44032: 0xA772,\n\t52028 - 44032: 0xA773,\n\t52029 - 44032: 0xA774,\n\t52030 - 44032: 0xA775,\n\t52031 - 44032: 0xA776,\n\t52032 - 44032: 0xA777,\n\t52033 - 44032: 0xC2DD,\n\t52034 - 44032: 0xA778,\n\t52035 - 44032: 0xA779,\n\t52036 - 44032: 0xA77A,\n\t52037 - 44032: 0xA781,\n\t52038 - 44032: 0xA782,\n\t52039 - 44032: 0xA783,\n\t52040 - 44032: 0xC2DE,\n\t52041 - 44032: 0xC2DF,\n\t52042 - 44032: 0xA784,\n\t52043 - 44032: 0xA785,\n\t52044 - 44032: 0xC2E0,\n\t52045 - 44032: 0xA786,\n\t52046 - 44032: 0xA787,\n\t52047 - 44032: 0xA788,\n\t52048 - 44032: 0xC2E1,\n\t52049 - 44032: 0xA789,\n\t52050 - 44032: 0xA78A,\n\t52051 - 44032: 0xA78B,\n\t52052 - 44032: 0xA78C,\n\t52053 - 44032: 0xA78D,\n\t52054 - 44032: 0xA78E,\n\t52055 - 44032: 0xA78F,\n\t52056 - 44032: 0xC2E2,\n\t52057 - 44032: 0xC2E3,\n\t52058 - 44032: 0xA790,\n\t52059 - 44032: 0xA791,\n\t52060 - 44032: 0xA792,\n\t52061 - 44032: 0xC2E4,\n\t52062 - 44032: 0xA793,\n\t52063 - 44032: 0xA794,\n\t52064 - 44032: 0xA795,\n\t52065 - 44032: 0xA796,\n\t52066 - 44032: 0xA797,\n\t52067 - 44032: 0xA798,\n\t52068 - 44032: 0xC2E5,\n\t52069 - 44032: 0xA799,\n\t52070 - 44032: 0xA79A,\n\t52071 - 44032: 0xA79B,\n\t52072 - 44032: 0xA79C,\n\t52073 - 44032: 0xA79D,\n\t52074 - 44032: 0xA79E,\n\t52075 - 44032: 0xA79F,\n\t52076 - 44032: 0xA7A0,\n\t52077 - 44032: 0xA841,\n\t52078 - 44032: 0xA842,\n\t52079 - 44032: 0xA843,\n\t52080 - 44032: 0xA844,\n\t52081 - 44032: 0xA845,\n\t52082 - 44032: 0xA846,\n\t52083 - 44032: 0xA847,\n\t52084 - 44032: 0xA848,\n\t52085 - 44032: 0xA849,\n\t52086 - 44032: 0xA84A,\n\t52087 - 44032: 0xA84B,\n\t52088 - 44032: 0xC2E6,\n\t52089 - 44032: 0xC2E7,\n\t52090 - 44032: 0xA84C,\n\t52091 - 44032: 0xA84D,\n\t52092 - 44032: 0xA84E,\n\t52093 - 44032: 0xA84F,\n\t52094 - 44032: 0xA850,\n\t52095 - 44032: 0xA851,\n\t52096 - 44032: 0xA852,\n\t52097 - 44032: 0xA853,\n\t52098 - 44032: 0xA854,\n\t52099 - 44032: 0xA855,\n\t52100 - 44032: 0xA856,\n\t52101 - 44032: 0xA857,\n\t52102 - 44032: 0xA858,\n\t52103 - 44032: 0xA859,\n\t52104 - 44032: 0xA85A,\n\t52105 - 44032: 0xA861,\n\t52106 - 44032: 0xA862,\n\t52107 - 44032: 0xA863,\n\t52108 - 44032: 0xA864,\n\t52109 - 44032: 0xA865,\n\t52110 - 44032: 0xA866,\n\t52111 - 44032: 0xA867,\n\t52112 - 44032: 0xA868,\n\t52113 - 44032: 0xA869,\n\t52114 - 44032: 0xA86A,\n\t52115 - 44032: 0xA86B,\n\t52116 - 44032: 0xA86C,\n\t52117 - 44032: 0xA86D,\n\t52118 - 44032: 0xA86E,\n\t52119 - 44032: 0xA86F,\n\t52120 - 44032: 0xA870,\n\t52121 - 44032: 0xA871,\n\t52122 - 44032: 0xA872,\n\t52123 - 44032: 0xA873,\n\t52124 - 44032: 0xC2E8,\n\t52125 - 44032: 0xA874,\n\t52126 - 44032: 0xA875,\n\t52127 - 44032: 0xA876,\n\t52128 - 44032: 0xA877,\n\t52129 - 44032: 0xA878,\n\t52130 - 44032: 0xA879,\n\t52131 - 44032: 0xA87A,\n\t52132 - 44032: 0xA881,\n\t52133 - 44032: 0xA882,\n\t52134 - 44032: 0xA883,\n\t52135 - 44032: 0xA884,\n\t52136 - 44032: 0xA885,\n\t52137 - 44032: 0xA886,\n\t52138 - 44032: 0xA887,\n\t52139 - 44032: 0xA888,\n\t52140 - 44032: 0xA889,\n\t52141 - 44032: 0xA88A,\n\t52142 - 44032: 0xA88B,\n\t52143 - 44032: 0xA88C,\n\t52144 - 44032: 0xA88D,\n\t52145 - 44032: 0xA88E,\n\t52146 - 44032: 0xA88F,\n\t52147 - 44032: 0xA890,\n\t52148 - 44032: 0xA891,\n\t52149 - 44032: 0xA892,\n\t52150 - 44032: 0xA893,\n\t52151 - 44032: 0xA894,\n\t52152 - 44032: 0xC2E9,\n\t52153 - 44032: 0xA895,\n\t52154 - 44032: 0xA896,\n\t52155 - 44032: 0xA897,\n\t52156 - 44032: 0xA898,\n\t52157 - 44032: 0xA899,\n\t52158 - 44032: 0xA89A,\n\t52159 - 44032: 0xA89B,\n\t52160 - 44032: 0xA89C,\n\t52161 - 44032: 0xA89D,\n\t52162 - 44032: 0xA89E,\n\t52163 - 44032: 0xA89F,\n\t52164 - 44032: 0xA8A0,\n\t52165 - 44032: 0xA941,\n\t52166 - 44032: 0xA942,\n\t52167 - 44032: 0xA943,\n\t52168 - 44032: 0xA944,\n\t52169 - 44032: 0xA945,\n\t52170 - 44032: 0xA946,\n\t52171 - 44032: 0xA947,\n\t52172 - 44032: 0xA948,\n\t52173 - 44032: 0xA949,\n\t52174 - 44032: 0xA94A,\n\t52175 - 44032: 0xA94B,\n\t52176 - 44032: 0xA94C,\n\t52177 - 44032: 0xA94D,\n\t52178 - 44032: 0xA94E,\n\t52179 - 44032: 0xA94F,\n\t52180 - 44032: 0xC2EA,\n\t52181 - 44032: 0xA950,\n\t52182 - 44032: 0xA951,\n\t52183 - 44032: 0xA952,\n\t52184 - 44032: 0xA953,\n\t52185 - 44032: 0xA954,\n\t52186 - 44032: 0xA955,\n\t52187 - 44032: 0xA956,\n\t52188 - 44032: 0xA957,\n\t52189 - 44032: 0xA958,\n\t52190 - 44032: 0xA959,\n\t52191 - 44032: 0xA95A,\n\t52192 - 44032: 0xA961,\n\t52193 - 44032: 0xA962,\n\t52194 - 44032: 0xA963,\n\t52195 - 44032: 0xA964,\n\t52196 - 44032: 0xC2EB,\n\t52197 - 44032: 0xA965,\n\t52198 - 44032: 0xA966,\n\t52199 - 44032: 0xC2EC,\n\t52200 - 44032: 0xA967,\n\t52201 - 44032: 0xC2ED,\n\t52202 - 44032: 0xA968,\n\t52203 - 44032: 0xA969,\n\t52204 - 44032: 0xA96A,\n\t52205 - 44032: 0xA96B,\n\t52206 - 44032: 0xA96C,\n\t52207 - 44032: 0xA96D,\n\t52208 - 44032: 0xA96E,\n\t52209 - 44032: 0xA96F,\n\t52210 - 44032: 0xA970,\n\t52211 - 44032: 0xA971,\n\t52212 - 44032: 0xA972,\n\t52213 - 44032: 0xA973,\n\t52214 - 44032: 0xA974,\n\t52215 - 44032: 0xA975,\n\t52216 - 44032: 0xA976,\n\t52217 - 44032: 0xA977,\n\t52218 - 44032: 0xA978,\n\t52219 - 44032: 0xA979,\n\t52220 - 44032: 0xA97A,\n\t52221 - 44032: 0xA981,\n\t52222 - 44032: 0xA982,\n\t52223 - 44032: 0xA983,\n\t52224 - 44032: 0xA984,\n\t52225 - 44032: 0xA985,\n\t52226 - 44032: 0xA986,\n\t52227 - 44032: 0xA987,\n\t52228 - 44032: 0xA988,\n\t52229 - 44032: 0xA989,\n\t52230 - 44032: 0xA98A,\n\t52231 - 44032: 0xA98B,\n\t52232 - 44032: 0xA98C,\n\t52233 - 44032: 0xA98D,\n\t52234 - 44032: 0xA98E,\n\t52235 - 44032: 0xA98F,\n\t52236 - 44032: 0xC2EE,\n\t52237 - 44032: 0xC2EF,\n\t52238 - 44032: 0xA990,\n\t52239 - 44032: 0xA991,\n\t52240 - 44032: 0xC2F0,\n\t52241 - 44032: 0xA992,\n\t52242 - 44032: 0xA993,\n\t52243 - 44032: 0xA994,\n\t52244 - 44032: 0xC2F1,\n\t52245 - 44032: 0xA995,\n\t52246 - 44032: 0xA996,\n\t52247 - 44032: 0xA997,\n\t52248 - 44032: 0xA998,\n\t52249 - 44032: 0xA999,\n\t52250 - 44032: 0xA99A,\n\t52251 - 44032: 0xA99B,\n\t52252 - 44032: 0xC2F2,\n\t52253 - 44032: 0xC2F3,\n\t52254 - 44032: 0xA99C,\n\t52255 - 44032: 0xA99D,\n\t52256 - 44032: 0xA99E,\n\t52257 - 44032: 0xC2F4,\n\t52258 - 44032: 0xC2F5,\n\t52259 - 44032: 0xA99F,\n\t52260 - 44032: 0xA9A0,\n\t52261 - 44032: 0xAA41,\n\t52262 - 44032: 0xAA42,\n\t52263 - 44032: 0xC2F6,\n\t52264 - 44032: 0xC2F7,\n\t52265 - 44032: 0xC2F8,\n\t52266 - 44032: 0xAA43,\n\t52267 - 44032: 0xAA44,\n\t52268 - 44032: 0xC2F9,\n\t52269 - 44032: 0xAA45,\n\t52270 - 44032: 0xC2FA,\n\t52271 - 44032: 0xAA46,\n\t52272 - 44032: 0xC2FB,\n\t52273 - 44032: 0xAA47,\n\t52274 - 44032: 0xAA48,\n\t52275 - 44032: 0xAA49,\n\t52276 - 44032: 0xAA4A,\n\t52277 - 44032: 0xAA4B,\n\t52278 - 44032: 0xAA4C,\n\t52279 - 44032: 0xAA4D,\n\t52280 - 44032: 0xC2FC,\n\t52281 - 44032: 0xC2FD,\n\t52282 - 44032: 0xAA4E,\n\t52283 - 44032: 0xC2FE,\n\t52284 - 44032: 0xC3A1,\n\t52285 - 44032: 0xC3A2,\n\t52286 - 44032: 0xC3A3,\n\t52287 - 44032: 0xAA4F,\n\t52288 - 44032: 0xAA50,\n\t52289 - 44032: 0xAA51,\n\t52290 - 44032: 0xAA52,\n\t52291 - 44032: 0xAA53,\n\t52292 - 44032: 0xC3A4,\n\t52293 - 44032: 0xC3A5,\n\t52294 - 44032: 0xAA54,\n\t52295 - 44032: 0xAA55,\n\t52296 - 44032: 0xC3A6,\n\t52297 - 44032: 0xAA56,\n\t52298 - 44032: 0xAA57,\n\t52299 - 44032: 0xAA58,\n\t52300 - 44032: 0xC3A7,\n\t52301 - 44032: 0xAA59,\n\t52302 - 44032: 0xAA5A,\n\t52303 - 44032: 0xAA61,\n\t52304 - 44032: 0xAA62,\n\t52305 - 44032: 0xAA63,\n\t52306 - 44032: 0xAA64,\n\t52307 - 44032: 0xAA65,\n\t52308 - 44032: 0xC3A8,\n\t52309 - 44032: 0xC3A9,\n\t52310 - 44032: 0xAA66,\n\t52311 - 44032: 0xC3AA,\n\t52312 - 44032: 0xC3AB,\n\t52313 - 44032: 0xC3AC,\n\t52314 - 44032: 0xAA67,\n\t52315 - 44032: 0xAA68,\n\t52316 - 44032: 0xAA69,\n\t52317 - 44032: 0xAA6A,\n\t52318 - 44032: 0xAA6B,\n\t52319 - 44032: 0xAA6C,\n\t52320 - 44032: 0xC3AD,\n\t52321 - 44032: 0xAA6D,\n\t52322 - 44032: 0xAA6E,\n\t52323 - 44032: 0xAA6F,\n\t52324 - 44032: 0xC3AE,\n\t52325 - 44032: 0xAA70,\n\t52326 - 44032: 0xC3AF,\n\t52327 - 44032: 0xAA71,\n\t52328 - 44032: 0xC3B0,\n\t52329 - 44032: 0xAA72,\n\t52330 - 44032: 0xAA73,\n\t52331 - 44032: 0xAA74,\n\t52332 - 44032: 0xAA75,\n\t52333 - 44032: 0xAA76,\n\t52334 - 44032: 0xAA77,\n\t52335 - 44032: 0xAA78,\n\t52336 - 44032: 0xC3B1,\n\t52337 - 44032: 0xAA79,\n\t52338 - 44032: 0xAA7A,\n\t52339 - 44032: 0xAA81,\n\t52340 - 44032: 0xAA82,\n\t52341 - 44032: 0xC3B2,\n\t52342 - 44032: 0xAA83,\n\t52343 - 44032: 0xAA84,\n\t52344 - 44032: 0xAA85,\n\t52345 - 44032: 0xAA86,\n\t52346 - 44032: 0xAA87,\n\t52347 - 44032: 0xAA88,\n\t52348 - 44032: 0xAA89,\n\t52349 - 44032: 0xAA8A,\n\t52350 - 44032: 0xAA8B,\n\t52351 - 44032: 0xAA8C,\n\t52352 - 44032: 0xAA8D,\n\t52353 - 44032: 0xAA8E,\n\t52354 - 44032: 0xAA8F,\n\t52355 - 44032: 0xAA90,\n\t52356 - 44032: 0xAA91,\n\t52357 - 44032: 0xAA92,\n\t52358 - 44032: 0xAA93,\n\t52359 - 44032: 0xAA94,\n\t52360 - 44032: 0xAA95,\n\t52361 - 44032: 0xAA96,\n\t52362 - 44032: 0xAA97,\n\t52363 - 44032: 0xAA98,\n\t52364 - 44032: 0xAA99,\n\t52365 - 44032: 0xAA9A,\n\t52366 - 44032: 0xAA9B,\n\t52367 - 44032: 0xAA9C,\n\t52368 - 44032: 0xAA9D,\n\t52369 - 44032: 0xAA9E,\n\t52370 - 44032: 0xAA9F,\n\t52371 - 44032: 0xAAA0,\n\t52372 - 44032: 0xAB41,\n\t52373 - 44032: 0xAB42,\n\t52374 - 44032: 0xAB43,\n\t52375 - 44032: 0xAB44,\n\t52376 - 44032: 0xC3B3,\n\t52377 - 44032: 0xC3B4,\n\t52378 - 44032: 0xAB45,\n\t52379 - 44032: 0xAB46,\n\t52380 - 44032: 0xC3B5,\n\t52381 - 44032: 0xAB47,\n\t52382 - 44032: 0xAB48,\n\t52383 - 44032: 0xAB49,\n\t52384 - 44032: 0xC3B6,\n\t52385 - 44032: 0xAB4A,\n\t52386 - 44032: 0xAB4B,\n\t52387 - 44032: 0xAB4C,\n\t52388 - 44032: 0xAB4D,\n\t52389 - 44032: 0xAB4E,\n\t52390 - 44032: 0xAB4F,\n\t52391 - 44032: 0xAB50,\n\t52392 - 44032: 0xC3B7,\n\t52393 - 44032: 0xC3B8,\n\t52394 - 44032: 0xAB51,\n\t52395 - 44032: 0xC3B9,\n\t52396 - 44032: 0xC3BA,\n\t52397 - 44032: 0xC3BB,\n\t52398 - 44032: 0xAB52,\n\t52399 - 44032: 0xAB53,\n\t52400 - 44032: 0xAB54,\n\t52401 - 44032: 0xAB55,\n\t52402 - 44032: 0xAB56,\n\t52403 - 44032: 0xAB57,\n\t52404 - 44032: 0xC3BC,\n\t52405 - 44032: 0xC3BD,\n\t52406 - 44032: 0xAB58,\n\t52407 - 44032: 0xAB59,\n\t52408 - 44032: 0xC3BE,\n\t52409 - 44032: 0xAB5A,\n\t52410 - 44032: 0xAB61,\n\t52411 - 44032: 0xAB62,\n\t52412 - 44032: 0xC3BF,\n\t52413 - 44032: 0xAB63,\n\t52414 - 44032: 0xAB64,\n\t52415 - 44032: 0xAB65,\n\t52416 - 44032: 0xAB66,\n\t52417 - 44032: 0xAB67,\n\t52418 - 44032: 0xAB68,\n\t52419 - 44032: 0xAB69,\n\t52420 - 44032: 0xC3C0,\n\t52421 - 44032: 0xC3C1,\n\t52422 - 44032: 0xAB6A,\n\t52423 - 44032: 0xC3C2,\n\t52424 - 44032: 0xAB6B,\n\t52425 - 44032: 0xC3C3,\n\t52426 - 44032: 0xAB6C,\n\t52427 - 44032: 0xAB6D,\n\t52428 - 44032: 0xAB6E,\n\t52429 - 44032: 0xAB6F,\n\t52430 - 44032: 0xAB70,\n\t52431 - 44032: 0xAB71,\n\t52432 - 44032: 0xC3C4,\n\t52433 - 44032: 0xAB72,\n\t52434 - 44032: 0xAB73,\n\t52435 - 44032: 0xAB74,\n\t52436 - 44032: 0xC3C5,\n\t52437 - 44032: 0xAB75,\n\t52438 - 44032: 0xAB76,\n\t52439 - 44032: 0xAB77,\n\t52440 - 44032: 0xAB78,\n\t52441 - 44032: 0xAB79,\n\t52442 - 44032: 0xAB7A,\n\t52443 - 44032: 0xAB81,\n\t52444 - 44032: 0xAB82,\n\t52445 - 44032: 0xAB83,\n\t52446 - 44032: 0xAB84,\n\t52447 - 44032: 0xAB85,\n\t52448 - 44032: 0xAB86,\n\t52449 - 44032: 0xAB87,\n\t52450 - 44032: 0xAB88,\n\t52451 - 44032: 0xAB89,\n\t52452 - 44032: 0xC3C6,\n\t52453 - 44032: 0xAB8A,\n\t52454 - 44032: 0xAB8B,\n\t52455 - 44032: 0xAB8C,\n\t52456 - 44032: 0xAB8D,\n\t52457 - 44032: 0xAB8E,\n\t52458 - 44032: 0xAB8F,\n\t52459 - 44032: 0xAB90,\n\t52460 - 44032: 0xC3C7,\n\t52461 - 44032: 0xAB91,\n\t52462 - 44032: 0xAB92,\n\t52463 - 44032: 0xAB93,\n\t52464 - 44032: 0xC3C8,\n\t52465 - 44032: 0xAB94,\n\t52466 - 44032: 0xAB95,\n\t52467 - 44032: 0xAB96,\n\t52468 - 44032: 0xAB97,\n\t52469 - 44032: 0xAB98,\n\t52470 - 44032: 0xAB99,\n\t52471 - 44032: 0xAB9A,\n\t52472 - 44032: 0xAB9B,\n\t52473 - 44032: 0xAB9C,\n\t52474 - 44032: 0xAB9D,\n\t52475 - 44032: 0xAB9E,\n\t52476 - 44032: 0xAB9F,\n\t52477 - 44032: 0xABA0,\n\t52478 - 44032: 0xAC41,\n\t52479 - 44032: 0xAC42,\n\t52480 - 44032: 0xAC43,\n\t52481 - 44032: 0xC3C9,\n\t52482 - 44032: 0xAC44,\n\t52483 - 44032: 0xAC45,\n\t52484 - 44032: 0xAC46,\n\t52485 - 44032: 0xAC47,\n\t52486 - 44032: 0xAC48,\n\t52487 - 44032: 0xAC49,\n\t52488 - 44032: 0xC3CA,\n\t52489 - 44032: 0xC3CB,\n\t52490 - 44032: 0xAC4A,\n\t52491 - 44032: 0xAC4B,\n\t52492 - 44032: 0xC3CC,\n\t52493 - 44032: 0xAC4C,\n\t52494 - 44032: 0xAC4D,\n\t52495 - 44032: 0xAC4E,\n\t52496 - 44032: 0xC3CD,\n\t52497 - 44032: 0xAC4F,\n\t52498 - 44032: 0xAC50,\n\t52499 - 44032: 0xAC51,\n\t52500 - 44032: 0xAC52,\n\t52501 - 44032: 0xAC53,\n\t52502 - 44032: 0xAC54,\n\t52503 - 44032: 0xAC55,\n\t52504 - 44032: 0xC3CE,\n\t52505 - 44032: 0xC3CF,\n\t52506 - 44032: 0xAC56,\n\t52507 - 44032: 0xC3D0,\n\t52508 - 44032: 0xAC57,\n\t52509 - 44032: 0xC3D1,\n\t52510 - 44032: 0xAC58,\n\t52511 - 44032: 0xAC59,\n\t52512 - 44032: 0xAC5A,\n\t52513 - 44032: 0xAC61,\n\t52514 - 44032: 0xAC62,\n\t52515 - 44032: 0xAC63,\n\t52516 - 44032: 0xC3D2,\n\t52517 - 44032: 0xAC64,\n\t52518 - 44032: 0xAC65,\n\t52519 - 44032: 0xAC66,\n\t52520 - 44032: 0xC3D3,\n\t52521 - 44032: 0xAC67,\n\t52522 - 44032: 0xAC68,\n\t52523 - 44032: 0xAC69,\n\t52524 - 44032: 0xC3D4,\n\t52525 - 44032: 0xAC6A,\n\t52526 - 44032: 0xAC6B,\n\t52527 - 44032: 0xAC6C,\n\t52528 - 44032: 0xAC6D,\n\t52529 - 44032: 0xAC6E,\n\t52530 - 44032: 0xAC6F,\n\t52531 - 44032: 0xAC70,\n\t52532 - 44032: 0xAC71,\n\t52533 - 44032: 0xAC72,\n\t52534 - 44032: 0xAC73,\n\t52535 - 44032: 0xAC74,\n\t52536 - 44032: 0xAC75,\n\t52537 - 44032: 0xC3D5,\n\t52538 - 44032: 0xAC76,\n\t52539 - 44032: 0xAC77,\n\t52540 - 44032: 0xAC78,\n\t52541 - 44032: 0xAC79,\n\t52542 - 44032: 0xAC7A,\n\t52543 - 44032: 0xAC81,\n\t52544 - 44032: 0xAC82,\n\t52545 - 44032: 0xAC83,\n\t52546 - 44032: 0xAC84,\n\t52547 - 44032: 0xAC85,\n\t52548 - 44032: 0xAC86,\n\t52549 - 44032: 0xAC87,\n\t52550 - 44032: 0xAC88,\n\t52551 - 44032: 0xAC89,\n\t52552 - 44032: 0xAC8A,\n\t52553 - 44032: 0xAC8B,\n\t52554 - 44032: 0xAC8C,\n\t52555 - 44032: 0xAC8D,\n\t52556 - 44032: 0xAC8E,\n\t52557 - 44032: 0xAC8F,\n\t52558 - 44032: 0xAC90,\n\t52559 - 44032: 0xAC91,\n\t52560 - 44032: 0xAC92,\n\t52561 - 44032: 0xAC93,\n\t52562 - 44032: 0xAC94,\n\t52563 - 44032: 0xAC95,\n\t52564 - 44032: 0xAC96,\n\t52565 - 44032: 0xAC97,\n\t52566 - 44032: 0xAC98,\n\t52567 - 44032: 0xAC99,\n\t52568 - 44032: 0xAC9A,\n\t52569 - 44032: 0xAC9B,\n\t52570 - 44032: 0xAC9C,\n\t52571 - 44032: 0xAC9D,\n\t52572 - 44032: 0xC3D6,\n\t52573 - 44032: 0xAC9E,\n\t52574 - 44032: 0xAC9F,\n\t52575 - 44032: 0xACA0,\n\t52576 - 44032: 0xC3D7,\n\t52577 - 44032: 0xAD41,\n\t52578 - 44032: 0xAD42,\n\t52579 - 44032: 0xAD43,\n\t52580 - 44032: 0xC3D8,\n\t52581 - 44032: 0xAD44,\n\t52582 - 44032: 0xAD45,\n\t52583 - 44032: 0xAD46,\n\t52584 - 44032: 0xAD47,\n\t52585 - 44032: 0xAD48,\n\t52586 - 44032: 0xAD49,\n\t52587 - 44032: 0xAD4A,\n\t52588 - 44032: 0xC3D9,\n\t52589 - 44032: 0xC3DA,\n\t52590 - 44032: 0xAD4B,\n\t52591 - 44032: 0xC3DB,\n\t52592 - 44032: 0xAD4C,\n\t52593 - 44032: 0xC3DC,\n\t52594 - 44032: 0xAD4D,\n\t52595 - 44032: 0xAD4E,\n\t52596 - 44032: 0xAD4F,\n\t52597 - 44032: 0xAD50,\n\t52598 - 44032: 0xAD51,\n\t52599 - 44032: 0xAD52,\n\t52600 - 44032: 0xC3DD,\n\t52601 - 44032: 0xAD53,\n\t52602 - 44032: 0xAD54,\n\t52603 - 44032: 0xAD55,\n\t52604 - 44032: 0xAD56,\n\t52605 - 44032: 0xAD57,\n\t52606 - 44032: 0xAD58,\n\t52607 - 44032: 0xAD59,\n\t52608 - 44032: 0xAD5A,\n\t52609 - 44032: 0xAD61,\n\t52610 - 44032: 0xAD62,\n\t52611 - 44032: 0xAD63,\n\t52612 - 44032: 0xAD64,\n\t52613 - 44032: 0xAD65,\n\t52614 - 44032: 0xAD66,\n\t52615 - 44032: 0xAD67,\n\t52616 - 44032: 0xC3DE,\n\t52617 - 44032: 0xAD68,\n\t52618 - 44032: 0xAD69,\n\t52619 - 44032: 0xAD6A,\n\t52620 - 44032: 0xAD6B,\n\t52621 - 44032: 0xAD6C,\n\t52622 - 44032: 0xAD6D,\n\t52623 - 44032: 0xAD6E,\n\t52624 - 44032: 0xAD6F,\n\t52625 - 44032: 0xAD70,\n\t52626 - 44032: 0xAD71,\n\t52627 - 44032: 0xAD72,\n\t52628 - 44032: 0xC3DF,\n\t52629 - 44032: 0xC3E0,\n\t52630 - 44032: 0xAD73,\n\t52631 - 44032: 0xAD74,\n\t52632 - 44032: 0xC3E1,\n\t52633 - 44032: 0xAD75,\n\t52634 - 44032: 0xAD76,\n\t52635 - 44032: 0xAD77,\n\t52636 - 44032: 0xC3E2,\n\t52637 - 44032: 0xAD78,\n\t52638 - 44032: 0xAD79,\n\t52639 - 44032: 0xAD7A,\n\t52640 - 44032: 0xAD81,\n\t52641 - 44032: 0xAD82,\n\t52642 - 44032: 0xAD83,\n\t52643 - 44032: 0xAD84,\n\t52644 - 44032: 0xC3E3,\n\t52645 - 44032: 0xC3E4,\n\t52646 - 44032: 0xAD85,\n\t52647 - 44032: 0xC3E5,\n\t52648 - 44032: 0xAD86,\n\t52649 - 44032: 0xC3E6,\n\t52650 - 44032: 0xAD87,\n\t52651 - 44032: 0xAD88,\n\t52652 - 44032: 0xAD89,\n\t52653 - 44032: 0xAD8A,\n\t52654 - 44032: 0xAD8B,\n\t52655 - 44032: 0xAD8C,\n\t52656 - 44032: 0xC3E7,\n\t52657 - 44032: 0xAD8D,\n\t52658 - 44032: 0xAD8E,\n\t52659 - 44032: 0xAD8F,\n\t52660 - 44032: 0xAD90,\n\t52661 - 44032: 0xAD91,\n\t52662 - 44032: 0xAD92,\n\t52663 - 44032: 0xAD93,\n\t52664 - 44032: 0xAD94,\n\t52665 - 44032: 0xAD95,\n\t52666 - 44032: 0xAD96,\n\t52667 - 44032: 0xAD97,\n\t52668 - 44032: 0xAD98,\n\t52669 - 44032: 0xAD99,\n\t52670 - 44032: 0xAD9A,\n\t52671 - 44032: 0xAD9B,\n\t52672 - 44032: 0xAD9C,\n\t52673 - 44032: 0xAD9D,\n\t52674 - 44032: 0xAD9E,\n\t52675 - 44032: 0xAD9F,\n\t52676 - 44032: 0xC3E8,\n\t52677 - 44032: 0xADA0,\n\t52678 - 44032: 0xAE41,\n\t52679 - 44032: 0xAE42,\n\t52680 - 44032: 0xAE43,\n\t52681 - 44032: 0xAE44,\n\t52682 - 44032: 0xAE45,\n\t52683 - 44032: 0xAE46,\n\t52684 - 44032: 0xC3E9,\n\t52685 - 44032: 0xAE47,\n\t52686 - 44032: 0xAE48,\n\t52687 - 44032: 0xAE49,\n\t52688 - 44032: 0xC3EA,\n\t52689 - 44032: 0xAE4A,\n\t52690 - 44032: 0xAE4B,\n\t52691 - 44032: 0xAE4C,\n\t52692 - 44032: 0xAE4D,\n\t52693 - 44032: 0xAE4E,\n\t52694 - 44032: 0xAE4F,\n\t52695 - 44032: 0xAE50,\n\t52696 - 44032: 0xAE51,\n\t52697 - 44032: 0xAE52,\n\t52698 - 44032: 0xAE53,\n\t52699 - 44032: 0xAE54,\n\t52700 - 44032: 0xAE55,\n\t52701 - 44032: 0xAE56,\n\t52702 - 44032: 0xAE57,\n\t52703 - 44032: 0xAE58,\n\t52704 - 44032: 0xAE59,\n\t52705 - 44032: 0xAE5A,\n\t52706 - 44032: 0xAE61,\n\t52707 - 44032: 0xAE62,\n\t52708 - 44032: 0xAE63,\n\t52709 - 44032: 0xAE64,\n\t52710 - 44032: 0xAE65,\n\t52711 - 44032: 0xAE66,\n\t52712 - 44032: 0xC3EB,\n\t52713 - 44032: 0xAE67,\n\t52714 - 44032: 0xAE68,\n\t52715 - 44032: 0xAE69,\n\t52716 - 44032: 0xC3EC,\n\t52717 - 44032: 0xAE6A,\n\t52718 - 44032: 0xAE6B,\n\t52719 - 44032: 0xAE6C,\n\t52720 - 44032: 0xC3ED,\n\t52721 - 44032: 0xAE6D,\n\t52722 - 44032: 0xAE6E,\n\t52723 - 44032: 0xAE6F,\n\t52724 - 44032: 0xAE70,\n\t52725 - 44032: 0xAE71,\n\t52726 - 44032: 0xAE72,\n\t52727 - 44032: 0xAE73,\n\t52728 - 44032: 0xC3EE,\n\t52729 - 44032: 0xC3EF,\n\t52730 - 44032: 0xAE74,\n\t52731 - 44032: 0xC3F0,\n\t52732 - 44032: 0xAE75,\n\t52733 - 44032: 0xC3F1,\n\t52734 - 44032: 0xAE76,\n\t52735 - 44032: 0xAE77,\n\t52736 - 44032: 0xAE78,\n\t52737 - 44032: 0xAE79,\n\t52738 - 44032: 0xAE7A,\n\t52739 - 44032: 0xAE81,\n\t52740 - 44032: 0xC3F2,\n\t52741 - 44032: 0xAE82,\n\t52742 - 44032: 0xAE83,\n\t52743 - 44032: 0xAE84,\n\t52744 - 44032: 0xC3F3,\n\t52745 - 44032: 0xAE85,\n\t52746 - 44032: 0xAE86,\n\t52747 - 44032: 0xAE87,\n\t52748 - 44032: 0xC3F4,\n\t52749 - 44032: 0xAE88,\n\t52750 - 44032: 0xAE89,\n\t52751 - 44032: 0xAE8A,\n\t52752 - 44032: 0xAE8B,\n\t52753 - 44032: 0xAE8C,\n\t52754 - 44032: 0xAE8D,\n\t52755 - 44032: 0xAE8E,\n\t52756 - 44032: 0xC3F5,\n\t52757 - 44032: 0xAE8F,\n\t52758 - 44032: 0xAE90,\n\t52759 - 44032: 0xAE91,\n\t52760 - 44032: 0xAE92,\n\t52761 - 44032: 0xC3F6,\n\t52762 - 44032: 0xAE93,\n\t52763 - 44032: 0xAE94,\n\t52764 - 44032: 0xAE95,\n\t52765 - 44032: 0xAE96,\n\t52766 - 44032: 0xAE97,\n\t52767 - 44032: 0xAE98,\n\t52768 - 44032: 0xC3F7,\n\t52769 - 44032: 0xC3F8,\n\t52770 - 44032: 0xAE99,\n\t52771 - 44032: 0xAE9A,\n\t52772 - 44032: 0xC3F9,\n\t52773 - 44032: 0xAE9B,\n\t52774 - 44032: 0xAE9C,\n\t52775 - 44032: 0xAE9D,\n\t52776 - 44032: 0xC3FA,\n\t52777 - 44032: 0xAE9E,\n\t52778 - 44032: 0xAE9F,\n\t52779 - 44032: 0xAEA0,\n\t52780 - 44032: 0xAF41,\n\t52781 - 44032: 0xAF42,\n\t52782 - 44032: 0xAF43,\n\t52783 - 44032: 0xAF44,\n\t52784 - 44032: 0xC3FB,\n\t52785 - 44032: 0xC3FC,\n\t52786 - 44032: 0xAF45,\n\t52787 - 44032: 0xC3FD,\n\t52788 - 44032: 0xAF46,\n\t52789 - 44032: 0xC3FE,\n\t52790 - 44032: 0xAF47,\n\t52791 - 44032: 0xAF48,\n\t52792 - 44032: 0xAF49,\n\t52793 - 44032: 0xAF4A,\n\t52794 - 44032: 0xAF4B,\n\t52795 - 44032: 0xAF4C,\n\t52796 - 44032: 0xAF4D,\n\t52797 - 44032: 0xAF4E,\n\t52798 - 44032: 0xAF4F,\n\t52799 - 44032: 0xAF50,\n\t52800 - 44032: 0xAF51,\n\t52801 - 44032: 0xAF52,\n\t52802 - 44032: 0xAF53,\n\t52803 - 44032: 0xAF54,\n\t52804 - 44032: 0xAF55,\n\t52805 - 44032: 0xAF56,\n\t52806 - 44032: 0xAF57,\n\t52807 - 44032: 0xAF58,\n\t52808 - 44032: 0xAF59,\n\t52809 - 44032: 0xAF5A,\n\t52810 - 44032: 0xAF61,\n\t52811 - 44032: 0xAF62,\n\t52812 - 44032: 0xAF63,\n\t52813 - 44032: 0xAF64,\n\t52814 - 44032: 0xAF65,\n\t52815 - 44032: 0xAF66,\n\t52816 - 44032: 0xAF67,\n\t52817 - 44032: 0xAF68,\n\t52818 - 44032: 0xAF69,\n\t52819 - 44032: 0xAF6A,\n\t52820 - 44032: 0xAF6B,\n\t52821 - 44032: 0xAF6C,\n\t52822 - 44032: 0xAF6D,\n\t52823 - 44032: 0xAF6E,\n\t52824 - 44032: 0xC4A1,\n\t52825 - 44032: 0xC4A2,\n\t52826 - 44032: 0xAF6F,\n\t52827 - 44032: 0xAF70,\n\t52828 - 44032: 0xC4A3,\n\t52829 - 44032: 0xAF71,\n\t52830 - 44032: 0xAF72,\n\t52831 - 44032: 0xC4A4,\n\t52832 - 44032: 0xC4A5,\n\t52833 - 44032: 0xC4A6,\n\t52834 - 44032: 0xAF73,\n\t52835 - 44032: 0xAF74,\n\t52836 - 44032: 0xAF75,\n\t52837 - 44032: 0xAF76,\n\t52838 - 44032: 0xAF77,\n\t52839 - 44032: 0xAF78,\n\t52840 - 44032: 0xC4A7,\n\t52841 - 44032: 0xC4A8,\n\t52842 - 44032: 0xAF79,\n\t52843 - 44032: 0xC4A9,\n\t52844 - 44032: 0xAF7A,\n\t52845 - 44032: 0xC4AA,\n\t52846 - 44032: 0xAF81,\n\t52847 - 44032: 0xAF82,\n\t52848 - 44032: 0xAF83,\n\t52849 - 44032: 0xAF84,\n\t52850 - 44032: 0xAF85,\n\t52851 - 44032: 0xAF86,\n\t52852 - 44032: 0xC4AB,\n\t52853 - 44032: 0xC4AC,\n\t52854 - 44032: 0xAF87,\n\t52855 - 44032: 0xAF88,\n\t52856 - 44032: 0xC4AD,\n\t52857 - 44032: 0xAF89,\n\t52858 - 44032: 0xAF8A,\n\t52859 - 44032: 0xAF8B,\n\t52860 - 44032: 0xC4AE,\n\t52861 - 44032: 0xAF8C,\n\t52862 - 44032: 0xAF8D,\n\t52863 - 44032: 0xAF8E,\n\t52864 - 44032: 0xAF8F,\n\t52865 - 44032: 0xAF90,\n\t52866 - 44032: 0xAF91,\n\t52867 - 44032: 0xAF92,\n\t52868 - 44032: 0xC4AF,\n\t52869 - 44032: 0xC4B0,\n\t52870 - 44032: 0xAF93,\n\t52871 - 44032: 0xC4B1,\n\t52872 - 44032: 0xAF94,\n\t52873 - 44032: 0xC4B2,\n\t52874 - 44032: 0xAF95,\n\t52875 - 44032: 0xAF96,\n\t52876 - 44032: 0xAF97,\n\t52877 - 44032: 0xAF98,\n\t52878 - 44032: 0xAF99,\n\t52879 - 44032: 0xAF9A,\n\t52880 - 44032: 0xC4B3,\n\t52881 - 44032: 0xC4B4,\n\t52882 - 44032: 0xAF9B,\n\t52883 - 44032: 0xAF9C,\n\t52884 - 44032: 0xC4B5,\n\t52885 - 44032: 0xAF9D,\n\t52886 - 44032: 0xAF9E,\n\t52887 - 44032: 0xAF9F,\n\t52888 - 44032: 0xC4B6,\n\t52889 - 44032: 0xAFA0,\n\t52890 - 44032: 0xB041,\n\t52891 - 44032: 0xB042,\n\t52892 - 44032: 0xB043,\n\t52893 - 44032: 0xB044,\n\t52894 - 44032: 0xB045,\n\t52895 - 44032: 0xB046,\n\t52896 - 44032: 0xC4B7,\n\t52897 - 44032: 0xC4B8,\n\t52898 - 44032: 0xB047,\n\t52899 - 44032: 0xC4B9,\n\t52900 - 44032: 0xC4BA,\n\t52901 - 44032: 0xC4BB,\n\t52902 - 44032: 0xB048,\n\t52903 - 44032: 0xB049,\n\t52904 - 44032: 0xB04A,\n\t52905 - 44032: 0xB04B,\n\t52906 - 44032: 0xB04C,\n\t52907 - 44032: 0xB04D,\n\t52908 - 44032: 0xC4BC,\n\t52909 - 44032: 0xC4BD,\n\t52910 - 44032: 0xB04E,\n\t52911 - 44032: 0xB04F,\n\t52912 - 44032: 0xB050,\n\t52913 - 44032: 0xB051,\n\t52914 - 44032: 0xB052,\n\t52915 - 44032: 0xB053,\n\t52916 - 44032: 0xB054,\n\t52917 - 44032: 0xB055,\n\t52918 - 44032: 0xB056,\n\t52919 - 44032: 0xB057,\n\t52920 - 44032: 0xB058,\n\t52921 - 44032: 0xB059,\n\t52922 - 44032: 0xB05A,\n\t52923 - 44032: 0xB061,\n\t52924 - 44032: 0xB062,\n\t52925 - 44032: 0xB063,\n\t52926 - 44032: 0xB064,\n\t52927 - 44032: 0xB065,\n\t52928 - 44032: 0xB066,\n\t52929 - 44032: 0xC4BE,\n\t52930 - 44032: 0xB067,\n\t52931 - 44032: 0xB068,\n\t52932 - 44032: 0xB069,\n\t52933 - 44032: 0xB06A,\n\t52934 - 44032: 0xB06B,\n\t52935 - 44032: 0xB06C,\n\t52936 - 44032: 0xB06D,\n\t52937 - 44032: 0xB06E,\n\t52938 - 44032: 0xB06F,\n\t52939 - 44032: 0xB070,\n\t52940 - 44032: 0xB071,\n\t52941 - 44032: 0xB072,\n\t52942 - 44032: 0xB073,\n\t52943 - 44032: 0xB074,\n\t52944 - 44032: 0xB075,\n\t52945 - 44032: 0xB076,\n\t52946 - 44032: 0xB077,\n\t52947 - 44032: 0xB078,\n\t52948 - 44032: 0xB079,\n\t52949 - 44032: 0xB07A,\n\t52950 - 44032: 0xB081,\n\t52951 - 44032: 0xB082,\n\t52952 - 44032: 0xB083,\n\t52953 - 44032: 0xB084,\n\t52954 - 44032: 0xB085,\n\t52955 - 44032: 0xB086,\n\t52956 - 44032: 0xB087,\n\t52957 - 44032: 0xB088,\n\t52958 - 44032: 0xB089,\n\t52959 - 44032: 0xB08A,\n\t52960 - 44032: 0xB08B,\n\t52961 - 44032: 0xB08C,\n\t52962 - 44032: 0xB08D,\n\t52963 - 44032: 0xB08E,\n\t52964 - 44032: 0xC4BF,\n\t52965 - 44032: 0xC4C0,\n\t52966 - 44032: 0xB08F,\n\t52967 - 44032: 0xB090,\n\t52968 - 44032: 0xC4C1,\n\t52969 - 44032: 0xB091,\n\t52970 - 44032: 0xB092,\n\t52971 - 44032: 0xC4C2,\n\t52972 - 44032: 0xC4C3,\n\t52973 - 44032: 0xB093,\n\t52974 - 44032: 0xB094,\n\t52975 - 44032: 0xB095,\n\t52976 - 44032: 0xB096,\n\t52977 - 44032: 0xB097,\n\t52978 - 44032: 0xB098,\n\t52979 - 44032: 0xB099,\n\t52980 - 44032: 0xC4C4,\n\t52981 - 44032: 0xC4C5,\n\t52982 - 44032: 0xB09A,\n\t52983 - 44032: 0xC4C6,\n\t52984 - 44032: 0xC4C7,\n\t52985 - 44032: 0xC4C8,\n\t52986 - 44032: 0xB09B,\n\t52987 - 44032: 0xB09C,\n\t52988 - 44032: 0xB09D,\n\t52989 - 44032: 0xB09E,\n\t52990 - 44032: 0xB09F,\n\t52991 - 44032: 0xB0A0,\n\t52992 - 44032: 0xC4C9,\n\t52993 - 44032: 0xC4CA,\n\t52994 - 44032: 0xB141,\n\t52995 - 44032: 0xB142,\n\t52996 - 44032: 0xC4CB,\n\t52997 - 44032: 0xB143,\n\t52998 - 44032: 0xB144,\n\t52999 - 44032: 0xB145,\n\t53000 - 44032: 0xC4CC,\n\t53001 - 44032: 0xB146,\n\t53002 - 44032: 0xB147,\n\t53003 - 44032: 0xB148,\n\t53004 - 44032: 0xB149,\n\t53005 - 44032: 0xB14A,\n\t53006 - 44032: 0xB14B,\n\t53007 - 44032: 0xB14C,\n\t53008 - 44032: 0xC4CD,\n\t53009 - 44032: 0xC4CE,\n\t53010 - 44032: 0xB14D,\n\t53011 - 44032: 0xC4CF,\n\t53012 - 44032: 0xB14E,\n\t53013 - 44032: 0xC4D0,\n\t53014 - 44032: 0xB14F,\n\t53015 - 44032: 0xB150,\n\t53016 - 44032: 0xB151,\n\t53017 - 44032: 0xB152,\n\t53018 - 44032: 0xB153,\n\t53019 - 44032: 0xB154,\n\t53020 - 44032: 0xC4D1,\n\t53021 - 44032: 0xB155,\n\t53022 - 44032: 0xB156,\n\t53023 - 44032: 0xB157,\n\t53024 - 44032: 0xC4D2,\n\t53025 - 44032: 0xB158,\n\t53026 - 44032: 0xB159,\n\t53027 - 44032: 0xB15A,\n\t53028 - 44032: 0xC4D3,\n\t53029 - 44032: 0xB161,\n\t53030 - 44032: 0xB162,\n\t53031 - 44032: 0xB163,\n\t53032 - 44032: 0xB164,\n\t53033 - 44032: 0xB165,\n\t53034 - 44032: 0xB166,\n\t53035 - 44032: 0xB167,\n\t53036 - 44032: 0xC4D4,\n\t53037 - 44032: 0xC4D5,\n\t53038 - 44032: 0xB168,\n\t53039 - 44032: 0xC4D6,\n\t53040 - 44032: 0xC4D7,\n\t53041 - 44032: 0xC4D8,\n\t53042 - 44032: 0xB169,\n\t53043 - 44032: 0xB16A,\n\t53044 - 44032: 0xB16B,\n\t53045 - 44032: 0xB16C,\n\t53046 - 44032: 0xB16D,\n\t53047 - 44032: 0xB16E,\n\t53048 - 44032: 0xC4D9,\n\t53049 - 44032: 0xB16F,\n\t53050 - 44032: 0xB170,\n\t53051 - 44032: 0xB171,\n\t53052 - 44032: 0xB172,\n\t53053 - 44032: 0xB173,\n\t53054 - 44032: 0xB174,\n\t53055 - 44032: 0xB175,\n\t53056 - 44032: 0xB176,\n\t53057 - 44032: 0xB177,\n\t53058 - 44032: 0xB178,\n\t53059 - 44032: 0xB179,\n\t53060 - 44032: 0xB17A,\n\t53061 - 44032: 0xB181,\n\t53062 - 44032: 0xB182,\n\t53063 - 44032: 0xB183,\n\t53064 - 44032: 0xB184,\n\t53065 - 44032: 0xB185,\n\t53066 - 44032: 0xB186,\n\t53067 - 44032: 0xB187,\n\t53068 - 44032: 0xB188,\n\t53069 - 44032: 0xB189,\n\t53070 - 44032: 0xB18A,\n\t53071 - 44032: 0xB18B,\n\t53072 - 44032: 0xB18C,\n\t53073 - 44032: 0xB18D,\n\t53074 - 44032: 0xB18E,\n\t53075 - 44032: 0xB18F,\n\t53076 - 44032: 0xC4DA,\n\t53077 - 44032: 0xC4DB,\n\t53078 - 44032: 0xB190,\n\t53079 - 44032: 0xB191,\n\t53080 - 44032: 0xC4DC,\n\t53081 - 44032: 0xB192,\n\t53082 - 44032: 0xB193,\n\t53083 - 44032: 0xB194,\n\t53084 - 44032: 0xC4DD,\n\t53085 - 44032: 0xB195,\n\t53086 - 44032: 0xB196,\n\t53087 - 44032: 0xB197,\n\t53088 - 44032: 0xB198,\n\t53089 - 44032: 0xB199,\n\t53090 - 44032: 0xB19A,\n\t53091 - 44032: 0xB19B,\n\t53092 - 44032: 0xC4DE,\n\t53093 - 44032: 0xC4DF,\n\t53094 - 44032: 0xB19C,\n\t53095 - 44032: 0xC4E0,\n\t53096 - 44032: 0xB19D,\n\t53097 - 44032: 0xC4E1,\n\t53098 - 44032: 0xB19E,\n\t53099 - 44032: 0xB19F,\n\t53100 - 44032: 0xB1A0,\n\t53101 - 44032: 0xB241,\n\t53102 - 44032: 0xB242,\n\t53103 - 44032: 0xB243,\n\t53104 - 44032: 0xC4E2,\n\t53105 - 44032: 0xC4E3,\n\t53106 - 44032: 0xB244,\n\t53107 - 44032: 0xB245,\n\t53108 - 44032: 0xC4E4,\n\t53109 - 44032: 0xB246,\n\t53110 - 44032: 0xB247,\n\t53111 - 44032: 0xB248,\n\t53112 - 44032: 0xC4E5,\n\t53113 - 44032: 0xB249,\n\t53114 - 44032: 0xB24A,\n\t53115 - 44032: 0xB24B,\n\t53116 - 44032: 0xB24C,\n\t53117 - 44032: 0xB24D,\n\t53118 - 44032: 0xB24E,\n\t53119 - 44032: 0xB24F,\n\t53120 - 44032: 0xC4E6,\n\t53121 - 44032: 0xB250,\n\t53122 - 44032: 0xB251,\n\t53123 - 44032: 0xB252,\n\t53124 - 44032: 0xB253,\n\t53125 - 44032: 0xC4E7,\n\t53126 - 44032: 0xB254,\n\t53127 - 44032: 0xB255,\n\t53128 - 44032: 0xB256,\n\t53129 - 44032: 0xB257,\n\t53130 - 44032: 0xB258,\n\t53131 - 44032: 0xB259,\n\t53132 - 44032: 0xC4E8,\n\t53133 - 44032: 0xB25A,\n\t53134 - 44032: 0xB261,\n\t53135 - 44032: 0xB262,\n\t53136 - 44032: 0xB263,\n\t53137 - 44032: 0xB264,\n\t53138 - 44032: 0xB265,\n\t53139 - 44032: 0xB266,\n\t53140 - 44032: 0xB267,\n\t53141 - 44032: 0xB268,\n\t53142 - 44032: 0xB269,\n\t53143 - 44032: 0xB26A,\n\t53144 - 44032: 0xB26B,\n\t53145 - 44032: 0xB26C,\n\t53146 - 44032: 0xB26D,\n\t53147 - 44032: 0xB26E,\n\t53148 - 44032: 0xB26F,\n\t53149 - 44032: 0xB270,\n\t53150 - 44032: 0xB271,\n\t53151 - 44032: 0xB272,\n\t53152 - 44032: 0xB273,\n\t53153 - 44032: 0xC4E9,\n\t53154 - 44032: 0xB274,\n\t53155 - 44032: 0xB275,\n\t53156 - 44032: 0xB276,\n\t53157 - 44032: 0xB277,\n\t53158 - 44032: 0xB278,\n\t53159 - 44032: 0xB279,\n\t53160 - 44032: 0xC4EA,\n\t53161 - 44032: 0xB27A,\n\t53162 - 44032: 0xB281,\n\t53163 - 44032: 0xB282,\n\t53164 - 44032: 0xB283,\n\t53165 - 44032: 0xB284,\n\t53166 - 44032: 0xB285,\n\t53167 - 44032: 0xB286,\n\t53168 - 44032: 0xC4EB,\n\t53169 - 44032: 0xB287,\n\t53170 - 44032: 0xB288,\n\t53171 - 44032: 0xB289,\n\t53172 - 44032: 0xB28A,\n\t53173 - 44032: 0xB28B,\n\t53174 - 44032: 0xB28C,\n\t53175 - 44032: 0xB28D,\n\t53176 - 44032: 0xB28E,\n\t53177 - 44032: 0xB28F,\n\t53178 - 44032: 0xB290,\n\t53179 - 44032: 0xB291,\n\t53180 - 44032: 0xB292,\n\t53181 - 44032: 0xB293,\n\t53182 - 44032: 0xB294,\n\t53183 - 44032: 0xB295,\n\t53184 - 44032: 0xB296,\n\t53185 - 44032: 0xB297,\n\t53186 - 44032: 0xB298,\n\t53187 - 44032: 0xB299,\n\t53188 - 44032: 0xC4EC,\n\t53189 - 44032: 0xB29A,\n\t53190 - 44032: 0xB29B,\n\t53191 - 44032: 0xB29C,\n\t53192 - 44032: 0xB29D,\n\t53193 - 44032: 0xB29E,\n\t53194 - 44032: 0xB29F,\n\t53195 - 44032: 0xB2A0,\n\t53196 - 44032: 0xB341,\n\t53197 - 44032: 0xB342,\n\t53198 - 44032: 0xB343,\n\t53199 - 44032: 0xB344,\n\t53200 - 44032: 0xB345,\n\t53201 - 44032: 0xB346,\n\t53202 - 44032: 0xB347,\n\t53203 - 44032: 0xB348,\n\t53204 - 44032: 0xB349,\n\t53205 - 44032: 0xB34A,\n\t53206 - 44032: 0xB34B,\n\t53207 - 44032: 0xB34C,\n\t53208 - 44032: 0xB34D,\n\t53209 - 44032: 0xB34E,\n\t53210 - 44032: 0xB34F,\n\t53211 - 44032: 0xB350,\n\t53212 - 44032: 0xB351,\n\t53213 - 44032: 0xB352,\n\t53214 - 44032: 0xB353,\n\t53215 - 44032: 0xB354,\n\t53216 - 44032: 0xC4ED,\n\t53217 - 44032: 0xC4EE,\n\t53218 - 44032: 0xB355,\n\t53219 - 44032: 0xB356,\n\t53220 - 44032: 0xC4EF,\n\t53221 - 44032: 0xB357,\n\t53222 - 44032: 0xB358,\n\t53223 - 44032: 0xB359,\n\t53224 - 44032: 0xC4F0,\n\t53225 - 44032: 0xB35A,\n\t53226 - 44032: 0xB361,\n\t53227 - 44032: 0xB362,\n\t53228 - 44032: 0xB363,\n\t53229 - 44032: 0xB364,\n\t53230 - 44032: 0xB365,\n\t53231 - 44032: 0xB366,\n\t53232 - 44032: 0xC4F1,\n\t53233 - 44032: 0xC4F2,\n\t53234 - 44032: 0xB367,\n\t53235 - 44032: 0xC4F3,\n\t53236 - 44032: 0xB368,\n\t53237 - 44032: 0xC4F4,\n\t53238 - 44032: 0xB369,\n\t53239 - 44032: 0xB36A,\n\t53240 - 44032: 0xB36B,\n\t53241 - 44032: 0xB36C,\n\t53242 - 44032: 0xB36D,\n\t53243 - 44032: 0xB36E,\n\t53244 - 44032: 0xC4F5,\n\t53245 - 44032: 0xB36F,\n\t53246 - 44032: 0xB370,\n\t53247 - 44032: 0xB371,\n\t53248 - 44032: 0xC4F6,\n\t53249 - 44032: 0xB372,\n\t53250 - 44032: 0xB373,\n\t53251 - 44032: 0xB374,\n\t53252 - 44032: 0xC4F7,\n\t53253 - 44032: 0xB375,\n\t53254 - 44032: 0xB376,\n\t53255 - 44032: 0xB377,\n\t53256 - 44032: 0xB378,\n\t53257 - 44032: 0xB379,\n\t53258 - 44032: 0xB37A,\n\t53259 - 44032: 0xB381,\n\t53260 - 44032: 0xB382,\n\t53261 - 44032: 0xB383,\n\t53262 - 44032: 0xB384,\n\t53263 - 44032: 0xB385,\n\t53264 - 44032: 0xB386,\n\t53265 - 44032: 0xC4F8,\n\t53266 - 44032: 0xB387,\n\t53267 - 44032: 0xB388,\n\t53268 - 44032: 0xB389,\n\t53269 - 44032: 0xB38A,\n\t53270 - 44032: 0xB38B,\n\t53271 - 44032: 0xB38C,\n\t53272 - 44032: 0xC4F9,\n\t53273 - 44032: 0xB38D,\n\t53274 - 44032: 0xB38E,\n\t53275 - 44032: 0xB38F,\n\t53276 - 44032: 0xB390,\n\t53277 - 44032: 0xB391,\n\t53278 - 44032: 0xB392,\n\t53279 - 44032: 0xB393,\n\t53280 - 44032: 0xB394,\n\t53281 - 44032: 0xB395,\n\t53282 - 44032: 0xB396,\n\t53283 - 44032: 0xB397,\n\t53284 - 44032: 0xB398,\n\t53285 - 44032: 0xB399,\n\t53286 - 44032: 0xB39A,\n\t53287 - 44032: 0xB39B,\n\t53288 - 44032: 0xB39C,\n\t53289 - 44032: 0xB39D,\n\t53290 - 44032: 0xB39E,\n\t53291 - 44032: 0xB39F,\n\t53292 - 44032: 0xB3A0,\n\t53293 - 44032: 0xC4FA,\n\t53294 - 44032: 0xB441,\n\t53295 - 44032: 0xB442,\n\t53296 - 44032: 0xB443,\n\t53297 - 44032: 0xB444,\n\t53298 - 44032: 0xB445,\n\t53299 - 44032: 0xB446,\n\t53300 - 44032: 0xC4FB,\n\t53301 - 44032: 0xC4FC,\n\t53302 - 44032: 0xB447,\n\t53303 - 44032: 0xB448,\n\t53304 - 44032: 0xC4FD,\n\t53305 - 44032: 0xB449,\n\t53306 - 44032: 0xB44A,\n\t53307 - 44032: 0xB44B,\n\t53308 - 44032: 0xC4FE,\n\t53309 - 44032: 0xB44C,\n\t53310 - 44032: 0xB44D,\n\t53311 - 44032: 0xB44E,\n\t53312 - 44032: 0xB44F,\n\t53313 - 44032: 0xB450,\n\t53314 - 44032: 0xB451,\n\t53315 - 44032: 0xB452,\n\t53316 - 44032: 0xC5A1,\n\t53317 - 44032: 0xC5A2,\n\t53318 - 44032: 0xB453,\n\t53319 - 44032: 0xC5A3,\n\t53320 - 44032: 0xB454,\n\t53321 - 44032: 0xC5A4,\n\t53322 - 44032: 0xB455,\n\t53323 - 44032: 0xB456,\n\t53324 - 44032: 0xB457,\n\t53325 - 44032: 0xB458,\n\t53326 - 44032: 0xB459,\n\t53327 - 44032: 0xB45A,\n\t53328 - 44032: 0xC5A5,\n\t53329 - 44032: 0xB461,\n\t53330 - 44032: 0xB462,\n\t53331 - 44032: 0xB463,\n\t53332 - 44032: 0xC5A6,\n\t53333 - 44032: 0xB464,\n\t53334 - 44032: 0xB465,\n\t53335 - 44032: 0xB466,\n\t53336 - 44032: 0xC5A7,\n\t53337 - 44032: 0xB467,\n\t53338 - 44032: 0xB468,\n\t53339 - 44032: 0xB469,\n\t53340 - 44032: 0xB46A,\n\t53341 - 44032: 0xB46B,\n\t53342 - 44032: 0xB46C,\n\t53343 - 44032: 0xB46D,\n\t53344 - 44032: 0xC5A8,\n\t53345 - 44032: 0xB46E,\n\t53346 - 44032: 0xB46F,\n\t53347 - 44032: 0xB470,\n\t53348 - 44032: 0xB471,\n\t53349 - 44032: 0xB472,\n\t53350 - 44032: 0xB473,\n\t53351 - 44032: 0xB474,\n\t53352 - 44032: 0xB475,\n\t53353 - 44032: 0xB476,\n\t53354 - 44032: 0xB477,\n\t53355 - 44032: 0xB478,\n\t53356 - 44032: 0xC5A9,\n\t53357 - 44032: 0xC5AA,\n\t53358 - 44032: 0xB479,\n\t53359 - 44032: 0xB47A,\n\t53360 - 44032: 0xC5AB,\n\t53361 - 44032: 0xB481,\n\t53362 - 44032: 0xB482,\n\t53363 - 44032: 0xB483,\n\t53364 - 44032: 0xC5AC,\n\t53365 - 44032: 0xB484,\n\t53366 - 44032: 0xB485,\n\t53367 - 44032: 0xB486,\n\t53368 - 44032: 0xB487,\n\t53369 - 44032: 0xB488,\n\t53370 - 44032: 0xB489,\n\t53371 - 44032: 0xB48A,\n\t53372 - 44032: 0xC5AD,\n\t53373 - 44032: 0xC5AE,\n\t53374 - 44032: 0xB48B,\n\t53375 - 44032: 0xB48C,\n\t53376 - 44032: 0xB48D,\n\t53377 - 44032: 0xC5AF,\n\t53378 - 44032: 0xB48E,\n\t53379 - 44032: 0xB48F,\n\t53380 - 44032: 0xB490,\n\t53381 - 44032: 0xB491,\n\t53382 - 44032: 0xB492,\n\t53383 - 44032: 0xB493,\n\t53384 - 44032: 0xB494,\n\t53385 - 44032: 0xB495,\n\t53386 - 44032: 0xB496,\n\t53387 - 44032: 0xB497,\n\t53388 - 44032: 0xB498,\n\t53389 - 44032: 0xB499,\n\t53390 - 44032: 0xB49A,\n\t53391 - 44032: 0xB49B,\n\t53392 - 44032: 0xB49C,\n\t53393 - 44032: 0xB49D,\n\t53394 - 44032: 0xB49E,\n\t53395 - 44032: 0xB49F,\n\t53396 - 44032: 0xB4A0,\n\t53397 - 44032: 0xB541,\n\t53398 - 44032: 0xB542,\n\t53399 - 44032: 0xB543,\n\t53400 - 44032: 0xB544,\n\t53401 - 44032: 0xB545,\n\t53402 - 44032: 0xB546,\n\t53403 - 44032: 0xB547,\n\t53404 - 44032: 0xB548,\n\t53405 - 44032: 0xB549,\n\t53406 - 44032: 0xB54A,\n\t53407 - 44032: 0xB54B,\n\t53408 - 44032: 0xB54C,\n\t53409 - 44032: 0xB54D,\n\t53410 - 44032: 0xB54E,\n\t53411 - 44032: 0xB54F,\n\t53412 - 44032: 0xC5B0,\n\t53413 - 44032: 0xC5B1,\n\t53414 - 44032: 0xB550,\n\t53415 - 44032: 0xB551,\n\t53416 - 44032: 0xC5B2,\n\t53417 - 44032: 0xB552,\n\t53418 - 44032: 0xB553,\n\t53419 - 44032: 0xB554,\n\t53420 - 44032: 0xC5B3,\n\t53421 - 44032: 0xB555,\n\t53422 - 44032: 0xB556,\n\t53423 - 44032: 0xB557,\n\t53424 - 44032: 0xB558,\n\t53425 - 44032: 0xB559,\n\t53426 - 44032: 0xB55A,\n\t53427 - 44032: 0xB561,\n\t53428 - 44032: 0xC5B4,\n\t53429 - 44032: 0xC5B5,\n\t53430 - 44032: 0xB562,\n\t53431 - 44032: 0xC5B6,\n\t53432 - 44032: 0xB563,\n\t53433 - 44032: 0xC5B7,\n\t53434 - 44032: 0xB564,\n\t53435 - 44032: 0xB565,\n\t53436 - 44032: 0xB566,\n\t53437 - 44032: 0xB567,\n\t53438 - 44032: 0xB568,\n\t53439 - 44032: 0xB569,\n\t53440 - 44032: 0xC5B8,\n\t53441 - 44032: 0xC5B9,\n\t53442 - 44032: 0xB56A,\n\t53443 - 44032: 0xB56B,\n\t53444 - 44032: 0xC5BA,\n\t53445 - 44032: 0xB56C,\n\t53446 - 44032: 0xB56D,\n\t53447 - 44032: 0xB56E,\n\t53448 - 44032: 0xC5BB,\n\t53449 - 44032: 0xC5BC,\n\t53450 - 44032: 0xB56F,\n\t53451 - 44032: 0xB570,\n\t53452 - 44032: 0xB571,\n\t53453 - 44032: 0xB572,\n\t53454 - 44032: 0xB573,\n\t53455 - 44032: 0xB574,\n\t53456 - 44032: 0xC5BD,\n\t53457 - 44032: 0xC5BE,\n\t53458 - 44032: 0xB575,\n\t53459 - 44032: 0xC5BF,\n\t53460 - 44032: 0xC5C0,\n\t53461 - 44032: 0xC5C1,\n\t53462 - 44032: 0xB576,\n\t53463 - 44032: 0xB577,\n\t53464 - 44032: 0xB578,\n\t53465 - 44032: 0xB579,\n\t53466 - 44032: 0xB57A,\n\t53467 - 44032: 0xB581,\n\t53468 - 44032: 0xC5C2,\n\t53469 - 44032: 0xC5C3,\n\t53470 - 44032: 0xB582,\n\t53471 - 44032: 0xB583,\n\t53472 - 44032: 0xC5C4,\n\t53473 - 44032: 0xB584,\n\t53474 - 44032: 0xB585,\n\t53475 - 44032: 0xB586,\n\t53476 - 44032: 0xC5C5,\n\t53477 - 44032: 0xB587,\n\t53478 - 44032: 0xB588,\n\t53479 - 44032: 0xB589,\n\t53480 - 44032: 0xB58A,\n\t53481 - 44032: 0xB58B,\n\t53482 - 44032: 0xB58C,\n\t53483 - 44032: 0xB58D,\n\t53484 - 44032: 0xC5C6,\n\t53485 - 44032: 0xC5C7,\n\t53486 - 44032: 0xB58E,\n\t53487 - 44032: 0xC5C8,\n\t53488 - 44032: 0xC5C9,\n\t53489 - 44032: 0xC5CA,\n\t53490 - 44032: 0xB58F,\n\t53491 - 44032: 0xB590,\n\t53492 - 44032: 0xB591,\n\t53493 - 44032: 0xB592,\n\t53494 - 44032: 0xB593,\n\t53495 - 44032: 0xB594,\n\t53496 - 44032: 0xC5CB,\n\t53497 - 44032: 0xB595,\n\t53498 - 44032: 0xB596,\n\t53499 - 44032: 0xB597,\n\t53500 - 44032: 0xB598,\n\t53501 - 44032: 0xB599,\n\t53502 - 44032: 0xB59A,\n\t53503 - 44032: 0xB59B,\n\t53504 - 44032: 0xB59C,\n\t53505 - 44032: 0xB59D,\n\t53506 - 44032: 0xB59E,\n\t53507 - 44032: 0xB59F,\n\t53508 - 44032: 0xB5A0,\n\t53509 - 44032: 0xB641,\n\t53510 - 44032: 0xB642,\n\t53511 - 44032: 0xB643,\n\t53512 - 44032: 0xB644,\n\t53513 - 44032: 0xB645,\n\t53514 - 44032: 0xB646,\n\t53515 - 44032: 0xB647,\n\t53516 - 44032: 0xB648,\n\t53517 - 44032: 0xC5CC,\n\t53518 - 44032: 0xB649,\n\t53519 - 44032: 0xB64A,\n\t53520 - 44032: 0xB64B,\n\t53521 - 44032: 0xB64C,\n\t53522 - 44032: 0xB64D,\n\t53523 - 44032: 0xB64E,\n\t53524 - 44032: 0xB64F,\n\t53525 - 44032: 0xB650,\n\t53526 - 44032: 0xB651,\n\t53527 - 44032: 0xB652,\n\t53528 - 44032: 0xB653,\n\t53529 - 44032: 0xB654,\n\t53530 - 44032: 0xB655,\n\t53531 - 44032: 0xB656,\n\t53532 - 44032: 0xB657,\n\t53533 - 44032: 0xB658,\n\t53534 - 44032: 0xB659,\n\t53535 - 44032: 0xB65A,\n\t53536 - 44032: 0xB661,\n\t53537 - 44032: 0xB662,\n\t53538 - 44032: 0xB663,\n\t53539 - 44032: 0xB664,\n\t53540 - 44032: 0xB665,\n\t53541 - 44032: 0xB666,\n\t53542 - 44032: 0xB667,\n\t53543 - 44032: 0xB668,\n\t53544 - 44032: 0xB669,\n\t53545 - 44032: 0xB66A,\n\t53546 - 44032: 0xB66B,\n\t53547 - 44032: 0xB66C,\n\t53548 - 44032: 0xB66D,\n\t53549 - 44032: 0xB66E,\n\t53550 - 44032: 0xB66F,\n\t53551 - 44032: 0xB670,\n\t53552 - 44032: 0xC5CD,\n\t53553 - 44032: 0xC5CE,\n\t53554 - 44032: 0xB671,\n\t53555 - 44032: 0xB672,\n\t53556 - 44032: 0xC5CF,\n\t53557 - 44032: 0xB673,\n\t53558 - 44032: 0xB674,\n\t53559 - 44032: 0xB675,\n\t53560 - 44032: 0xC5D0,\n\t53561 - 44032: 0xB676,\n\t53562 - 44032: 0xC5D1,\n\t53563 - 44032: 0xB677,\n\t53564 - 44032: 0xB678,\n\t53565 - 44032: 0xB679,\n\t53566 - 44032: 0xB67A,\n\t53567 - 44032: 0xB681,\n\t53568 - 44032: 0xC5D2,\n\t53569 - 44032: 0xC5D3,\n\t53570 - 44032: 0xB682,\n\t53571 - 44032: 0xC5D4,\n\t53572 - 44032: 0xC5D5,\n\t53573 - 44032: 0xC5D6,\n\t53574 - 44032: 0xB683,\n\t53575 - 44032: 0xB684,\n\t53576 - 44032: 0xB685,\n\t53577 - 44032: 0xB686,\n\t53578 - 44032: 0xB687,\n\t53579 - 44032: 0xB688,\n\t53580 - 44032: 0xC5D7,\n\t53581 - 44032: 0xC5D8,\n\t53582 - 44032: 0xB689,\n\t53583 - 44032: 0xB68A,\n\t53584 - 44032: 0xC5D9,\n\t53585 - 44032: 0xB68B,\n\t53586 - 44032: 0xB68C,\n\t53587 - 44032: 0xB68D,\n\t53588 - 44032: 0xC5DA,\n\t53589 - 44032: 0xB68E,\n\t53590 - 44032: 0xB68F,\n\t53591 - 44032: 0xB690,\n\t53592 - 44032: 0xB691,\n\t53593 - 44032: 0xB692,\n\t53594 - 44032: 0xB693,\n\t53595 - 44032: 0xB694,\n\t53596 - 44032: 0xC5DB,\n\t53597 - 44032: 0xC5DC,\n\t53598 - 44032: 0xB695,\n\t53599 - 44032: 0xC5DD,\n\t53600 - 44032: 0xB696,\n\t53601 - 44032: 0xC5DE,\n\t53602 - 44032: 0xB697,\n\t53603 - 44032: 0xB698,\n\t53604 - 44032: 0xB699,\n\t53605 - 44032: 0xB69A,\n\t53606 - 44032: 0xB69B,\n\t53607 - 44032: 0xB69C,\n\t53608 - 44032: 0xC5DF,\n\t53609 - 44032: 0xB69D,\n\t53610 - 44032: 0xB69E,\n\t53611 - 44032: 0xB69F,\n\t53612 - 44032: 0xC5E0,\n\t53613 - 44032: 0xB6A0,\n\t53614 - 44032: 0xB741,\n\t53615 - 44032: 0xB742,\n\t53616 - 44032: 0xB743,\n\t53617 - 44032: 0xB744,\n\t53618 - 44032: 0xB745,\n\t53619 - 44032: 0xB746,\n\t53620 - 44032: 0xB747,\n\t53621 - 44032: 0xB748,\n\t53622 - 44032: 0xB749,\n\t53623 - 44032: 0xB74A,\n\t53624 - 44032: 0xB74B,\n\t53625 - 44032: 0xB74C,\n\t53626 - 44032: 0xB74D,\n\t53627 - 44032: 0xB74E,\n\t53628 - 44032: 0xC5E1,\n\t53629 - 44032: 0xB74F,\n\t53630 - 44032: 0xB750,\n\t53631 - 44032: 0xB751,\n\t53632 - 44032: 0xB752,\n\t53633 - 44032: 0xB753,\n\t53634 - 44032: 0xB754,\n\t53635 - 44032: 0xB755,\n\t53636 - 44032: 0xC5E2,\n\t53637 - 44032: 0xB756,\n\t53638 - 44032: 0xB757,\n\t53639 - 44032: 0xB758,\n\t53640 - 44032: 0xC5E3,\n\t53641 - 44032: 0xB759,\n\t53642 - 44032: 0xB75A,\n\t53643 - 44032: 0xB761,\n\t53644 - 44032: 0xB762,\n\t53645 - 44032: 0xB763,\n\t53646 - 44032: 0xB764,\n\t53647 - 44032: 0xB765,\n\t53648 - 44032: 0xB766,\n\t53649 - 44032: 0xB767,\n\t53650 - 44032: 0xB768,\n\t53651 - 44032: 0xB769,\n\t53652 - 44032: 0xB76A,\n\t53653 - 44032: 0xB76B,\n\t53654 - 44032: 0xB76C,\n\t53655 - 44032: 0xB76D,\n\t53656 - 44032: 0xB76E,\n\t53657 - 44032: 0xB76F,\n\t53658 - 44032: 0xB770,\n\t53659 - 44032: 0xB771,\n\t53660 - 44032: 0xB772,\n\t53661 - 44032: 0xB773,\n\t53662 - 44032: 0xB774,\n\t53663 - 44032: 0xB775,\n\t53664 - 44032: 0xC5E4,\n\t53665 - 44032: 0xC5E5,\n\t53666 - 44032: 0xB776,\n\t53667 - 44032: 0xB777,\n\t53668 - 44032: 0xC5E6,\n\t53669 - 44032: 0xB778,\n\t53670 - 44032: 0xB779,\n\t53671 - 44032: 0xB77A,\n\t53672 - 44032: 0xC5E7,\n\t53673 - 44032: 0xB781,\n\t53674 - 44032: 0xB782,\n\t53675 - 44032: 0xB783,\n\t53676 - 44032: 0xB784,\n\t53677 - 44032: 0xB785,\n\t53678 - 44032: 0xB786,\n\t53679 - 44032: 0xB787,\n\t53680 - 44032: 0xC5E8,\n\t53681 - 44032: 0xC5E9,\n\t53682 - 44032: 0xB788,\n\t53683 - 44032: 0xC5EA,\n\t53684 - 44032: 0xB789,\n\t53685 - 44032: 0xC5EB,\n\t53686 - 44032: 0xB78A,\n\t53687 - 44032: 0xB78B,\n\t53688 - 44032: 0xB78C,\n\t53689 - 44032: 0xB78D,\n\t53690 - 44032: 0xC5EC,\n\t53691 - 44032: 0xB78E,\n\t53692 - 44032: 0xC5ED,\n\t53693 - 44032: 0xB78F,\n\t53694 - 44032: 0xB790,\n\t53695 - 44032: 0xB791,\n\t53696 - 44032: 0xC5EE,\n\t53697 - 44032: 0xB792,\n\t53698 - 44032: 0xB793,\n\t53699 - 44032: 0xB794,\n\t53700 - 44032: 0xB795,\n\t53701 - 44032: 0xB796,\n\t53702 - 44032: 0xB797,\n\t53703 - 44032: 0xB798,\n\t53704 - 44032: 0xB799,\n\t53705 - 44032: 0xB79A,\n\t53706 - 44032: 0xB79B,\n\t53707 - 44032: 0xB79C,\n\t53708 - 44032: 0xB79D,\n\t53709 - 44032: 0xB79E,\n\t53710 - 44032: 0xB79F,\n\t53711 - 44032: 0xB7A0,\n\t53712 - 44032: 0xB841,\n\t53713 - 44032: 0xB842,\n\t53714 - 44032: 0xB843,\n\t53715 - 44032: 0xB844,\n\t53716 - 44032: 0xB845,\n\t53717 - 44032: 0xB846,\n\t53718 - 44032: 0xB847,\n\t53719 - 44032: 0xB848,\n\t53720 - 44032: 0xC5EF,\n\t53721 - 44032: 0xB849,\n\t53722 - 44032: 0xB84A,\n\t53723 - 44032: 0xB84B,\n\t53724 - 44032: 0xB84C,\n\t53725 - 44032: 0xB84D,\n\t53726 - 44032: 0xB84E,\n\t53727 - 44032: 0xB84F,\n\t53728 - 44032: 0xB850,\n\t53729 - 44032: 0xB851,\n\t53730 - 44032: 0xB852,\n\t53731 - 44032: 0xB853,\n\t53732 - 44032: 0xB854,\n\t53733 - 44032: 0xB855,\n\t53734 - 44032: 0xB856,\n\t53735 - 44032: 0xB857,\n\t53736 - 44032: 0xB858,\n\t53737 - 44032: 0xB859,\n\t53738 - 44032: 0xB85A,\n\t53739 - 44032: 0xB861,\n\t53740 - 44032: 0xB862,\n\t53741 - 44032: 0xB863,\n\t53742 - 44032: 0xB864,\n\t53743 - 44032: 0xB865,\n\t53744 - 44032: 0xB866,\n\t53745 - 44032: 0xB867,\n\t53746 - 44032: 0xB868,\n\t53747 - 44032: 0xB869,\n\t53748 - 44032: 0xC5F0,\n\t53749 - 44032: 0xB86A,\n\t53750 - 44032: 0xB86B,\n\t53751 - 44032: 0xB86C,\n\t53752 - 44032: 0xC5F1,\n\t53753 - 44032: 0xB86D,\n\t53754 - 44032: 0xB86E,\n\t53755 - 44032: 0xB86F,\n\t53756 - 44032: 0xB870,\n\t53757 - 44032: 0xB871,\n\t53758 - 44032: 0xB872,\n\t53759 - 44032: 0xB873,\n\t53760 - 44032: 0xB874,\n\t53761 - 44032: 0xB875,\n\t53762 - 44032: 0xB876,\n\t53763 - 44032: 0xB877,\n\t53764 - 44032: 0xB878,\n\t53765 - 44032: 0xB879,\n\t53766 - 44032: 0xB87A,\n\t53767 - 44032: 0xC5F2,\n\t53768 - 44032: 0xB881,\n\t53769 - 44032: 0xC5F3,\n\t53770 - 44032: 0xB882,\n\t53771 - 44032: 0xB883,\n\t53772 - 44032: 0xB884,\n\t53773 - 44032: 0xB885,\n\t53774 - 44032: 0xB886,\n\t53775 - 44032: 0xB887,\n\t53776 - 44032: 0xC5F4,\n\t53777 - 44032: 0xB888,\n\t53778 - 44032: 0xB889,\n\t53779 - 44032: 0xB88A,\n\t53780 - 44032: 0xB88B,\n\t53781 - 44032: 0xB88C,\n\t53782 - 44032: 0xB88D,\n\t53783 - 44032: 0xB88E,\n\t53784 - 44032: 0xB88F,\n\t53785 - 44032: 0xB890,\n\t53786 - 44032: 0xB891,\n\t53787 - 44032: 0xB892,\n\t53788 - 44032: 0xB893,\n\t53789 - 44032: 0xB894,\n\t53790 - 44032: 0xB895,\n\t53791 - 44032: 0xB896,\n\t53792 - 44032: 0xB897,\n\t53793 - 44032: 0xB898,\n\t53794 - 44032: 0xB899,\n\t53795 - 44032: 0xB89A,\n\t53796 - 44032: 0xB89B,\n\t53797 - 44032: 0xB89C,\n\t53798 - 44032: 0xB89D,\n\t53799 - 44032: 0xB89E,\n\t53800 - 44032: 0xB89F,\n\t53801 - 44032: 0xB8A0,\n\t53802 - 44032: 0xB941,\n\t53803 - 44032: 0xB942,\n\t53804 - 44032: 0xC5F5,\n\t53805 - 44032: 0xC5F6,\n\t53806 - 44032: 0xB943,\n\t53807 - 44032: 0xB944,\n\t53808 - 44032: 0xC5F7,\n\t53809 - 44032: 0xB945,\n\t53810 - 44032: 0xB946,\n\t53811 - 44032: 0xB947,\n\t53812 - 44032: 0xC5F8,\n\t53813 - 44032: 0xB948,\n\t53814 - 44032: 0xB949,\n\t53815 - 44032: 0xB94A,\n\t53816 - 44032: 0xB94B,\n\t53817 - 44032: 0xB94C,\n\t53818 - 44032: 0xB94D,\n\t53819 - 44032: 0xB94E,\n\t53820 - 44032: 0xC5F9,\n\t53821 - 44032: 0xC5FA,\n\t53822 - 44032: 0xB94F,\n\t53823 - 44032: 0xC5FB,\n\t53824 - 44032: 0xB950,\n\t53825 - 44032: 0xC5FC,\n\t53826 - 44032: 0xB951,\n\t53827 - 44032: 0xB952,\n\t53828 - 44032: 0xB953,\n\t53829 - 44032: 0xB954,\n\t53830 - 44032: 0xB955,\n\t53831 - 44032: 0xB956,\n\t53832 - 44032: 0xC5FD,\n\t53833 - 44032: 0xB957,\n\t53834 - 44032: 0xB958,\n\t53835 - 44032: 0xB959,\n\t53836 - 44032: 0xB95A,\n\t53837 - 44032: 0xB961,\n\t53838 - 44032: 0xB962,\n\t53839 - 44032: 0xB963,\n\t53840 - 44032: 0xB964,\n\t53841 - 44032: 0xB965,\n\t53842 - 44032: 0xB966,\n\t53843 - 44032: 0xB967,\n\t53844 - 44032: 0xB968,\n\t53845 - 44032: 0xB969,\n\t53846 - 44032: 0xB96A,\n\t53847 - 44032: 0xB96B,\n\t53848 - 44032: 0xB96C,\n\t53849 - 44032: 0xB96D,\n\t53850 - 44032: 0xB96E,\n\t53851 - 44032: 0xB96F,\n\t53852 - 44032: 0xC5FE,\n\t53853 - 44032: 0xB970,\n\t53854 - 44032: 0xB971,\n\t53855 - 44032: 0xB972,\n\t53856 - 44032: 0xB973,\n\t53857 - 44032: 0xB974,\n\t53858 - 44032: 0xB975,\n\t53859 - 44032: 0xB976,\n\t53860 - 44032: 0xC6A1,\n\t53861 - 44032: 0xB977,\n\t53862 - 44032: 0xB978,\n\t53863 - 44032: 0xB979,\n\t53864 - 44032: 0xB97A,\n\t53865 - 44032: 0xB981,\n\t53866 - 44032: 0xB982,\n\t53867 - 44032: 0xB983,\n\t53868 - 44032: 0xB984,\n\t53869 - 44032: 0xB985,\n\t53870 - 44032: 0xB986,\n\t53871 - 44032: 0xB987,\n\t53872 - 44032: 0xB988,\n\t53873 - 44032: 0xB989,\n\t53874 - 44032: 0xB98A,\n\t53875 - 44032: 0xB98B,\n\t53876 - 44032: 0xB98C,\n\t53877 - 44032: 0xB98D,\n\t53878 - 44032: 0xB98E,\n\t53879 - 44032: 0xB98F,\n\t53880 - 44032: 0xB990,\n\t53881 - 44032: 0xB991,\n\t53882 - 44032: 0xB992,\n\t53883 - 44032: 0xB993,\n\t53884 - 44032: 0xB994,\n\t53885 - 44032: 0xB995,\n\t53886 - 44032: 0xB996,\n\t53887 - 44032: 0xB997,\n\t53888 - 44032: 0xC6A2,\n\t53889 - 44032: 0xC6A3,\n\t53890 - 44032: 0xB998,\n\t53891 - 44032: 0xB999,\n\t53892 - 44032: 0xC6A4,\n\t53893 - 44032: 0xB99A,\n\t53894 - 44032: 0xB99B,\n\t53895 - 44032: 0xB99C,\n\t53896 - 44032: 0xC6A5,\n\t53897 - 44032: 0xB99D,\n\t53898 - 44032: 0xB99E,\n\t53899 - 44032: 0xB99F,\n\t53900 - 44032: 0xB9A0,\n\t53901 - 44032: 0xBA41,\n\t53902 - 44032: 0xBA42,\n\t53903 - 44032: 0xBA43,\n\t53904 - 44032: 0xC6A6,\n\t53905 - 44032: 0xC6A7,\n\t53906 - 44032: 0xBA44,\n\t53907 - 44032: 0xBA45,\n\t53908 - 44032: 0xBA46,\n\t53909 - 44032: 0xC6A8,\n\t53910 - 44032: 0xBA47,\n\t53911 - 44032: 0xBA48,\n\t53912 - 44032: 0xBA49,\n\t53913 - 44032: 0xBA4A,\n\t53914 - 44032: 0xBA4B,\n\t53915 - 44032: 0xBA4C,\n\t53916 - 44032: 0xC6A9,\n\t53917 - 44032: 0xBA4D,\n\t53918 - 44032: 0xBA4E,\n\t53919 - 44032: 0xBA4F,\n\t53920 - 44032: 0xC6AA,\n\t53921 - 44032: 0xBA50,\n\t53922 - 44032: 0xBA51,\n\t53923 - 44032: 0xBA52,\n\t53924 - 44032: 0xC6AB,\n\t53925 - 44032: 0xBA53,\n\t53926 - 44032: 0xBA54,\n\t53927 - 44032: 0xBA55,\n\t53928 - 44032: 0xBA56,\n\t53929 - 44032: 0xBA57,\n\t53930 - 44032: 0xBA58,\n\t53931 - 44032: 0xBA59,\n\t53932 - 44032: 0xC6AC,\n\t53933 - 44032: 0xBA5A,\n\t53934 - 44032: 0xBA61,\n\t53935 - 44032: 0xBA62,\n\t53936 - 44032: 0xBA63,\n\t53937 - 44032: 0xC6AD,\n\t53938 - 44032: 0xBA64,\n\t53939 - 44032: 0xBA65,\n\t53940 - 44032: 0xBA66,\n\t53941 - 44032: 0xBA67,\n\t53942 - 44032: 0xBA68,\n\t53943 - 44032: 0xBA69,\n\t53944 - 44032: 0xC6AE,\n\t53945 - 44032: 0xC6AF,\n\t53946 - 44032: 0xBA6A,\n\t53947 - 44032: 0xBA6B,\n\t53948 - 44032: 0xC6B0,\n\t53949 - 44032: 0xBA6C,\n\t53950 - 44032: 0xBA6D,\n\t53951 - 44032: 0xC6B1,\n\t53952 - 44032: 0xC6B2,\n\t53953 - 44032: 0xBA6E,\n\t53954 - 44032: 0xC6B3,\n\t53955 - 44032: 0xBA6F,\n\t53956 - 44032: 0xBA70,\n\t53957 - 44032: 0xBA71,\n\t53958 - 44032: 0xBA72,\n\t53959 - 44032: 0xBA73,\n\t53960 - 44032: 0xC6B4,\n\t53961 - 44032: 0xC6B5,\n\t53962 - 44032: 0xBA74,\n\t53963 - 44032: 0xC6B6,\n\t53964 - 44032: 0xBA75,\n\t53965 - 44032: 0xBA76,\n\t53966 - 44032: 0xBA77,\n\t53967 - 44032: 0xBA78,\n\t53968 - 44032: 0xBA79,\n\t53969 - 44032: 0xBA7A,\n\t53970 - 44032: 0xBA81,\n\t53971 - 44032: 0xBA82,\n\t53972 - 44032: 0xC6B7,\n\t53973 - 44032: 0xBA83,\n\t53974 - 44032: 0xBA84,\n\t53975 - 44032: 0xBA85,\n\t53976 - 44032: 0xC6B8,\n\t53977 - 44032: 0xBA86,\n\t53978 - 44032: 0xBA87,\n\t53979 - 44032: 0xBA88,\n\t53980 - 44032: 0xC6B9,\n\t53981 - 44032: 0xBA89,\n\t53982 - 44032: 0xBA8A,\n\t53983 - 44032: 0xBA8B,\n\t53984 - 44032: 0xBA8C,\n\t53985 - 44032: 0xBA8D,\n\t53986 - 44032: 0xBA8E,\n\t53987 - 44032: 0xBA8F,\n\t53988 - 44032: 0xC6BA,\n\t53989 - 44032: 0xC6BB,\n\t53990 - 44032: 0xBA90,\n\t53991 - 44032: 0xBA91,\n\t53992 - 44032: 0xBA92,\n\t53993 - 44032: 0xBA93,\n\t53994 - 44032: 0xBA94,\n\t53995 - 44032: 0xBA95,\n\t53996 - 44032: 0xBA96,\n\t53997 - 44032: 0xBA97,\n\t53998 - 44032: 0xBA98,\n\t53999 - 44032: 0xBA99,\n\t54000 - 44032: 0xC6BC,\n\t54001 - 44032: 0xC6BD,\n\t54002 - 44032: 0xBA9A,\n\t54003 - 44032: 0xBA9B,\n\t54004 - 44032: 0xC6BE,\n\t54005 - 44032: 0xBA9C,\n\t54006 - 44032: 0xBA9D,\n\t54007 - 44032: 0xBA9E,\n\t54008 - 44032: 0xC6BF,\n\t54009 - 44032: 0xBA9F,\n\t54010 - 44032: 0xBAA0,\n\t54011 - 44032: 0xBB41,\n\t54012 - 44032: 0xBB42,\n\t54013 - 44032: 0xBB43,\n\t54014 - 44032: 0xBB44,\n\t54015 - 44032: 0xBB45,\n\t54016 - 44032: 0xC6C0,\n\t54017 - 44032: 0xC6C1,\n\t54018 - 44032: 0xBB46,\n\t54019 - 44032: 0xC6C2,\n\t54020 - 44032: 0xBB47,\n\t54021 - 44032: 0xC6C3,\n\t54022 - 44032: 0xBB48,\n\t54023 - 44032: 0xBB49,\n\t54024 - 44032: 0xBB4A,\n\t54025 - 44032: 0xBB4B,\n\t54026 - 44032: 0xBB4C,\n\t54027 - 44032: 0xBB4D,\n\t54028 - 44032: 0xC6C4,\n\t54029 - 44032: 0xC6C5,\n\t54030 - 44032: 0xC6C6,\n\t54031 - 44032: 0xBB4E,\n\t54032 - 44032: 0xC6C7,\n\t54033 - 44032: 0xBB4F,\n\t54034 - 44032: 0xBB50,\n\t54035 - 44032: 0xBB51,\n\t54036 - 44032: 0xC6C8,\n\t54037 - 44032: 0xBB52,\n\t54038 - 44032: 0xC6C9,\n\t54039 - 44032: 0xBB53,\n\t54040 - 44032: 0xBB54,\n\t54041 - 44032: 0xBB55,\n\t54042 - 44032: 0xBB56,\n\t54043 - 44032: 0xBB57,\n\t54044 - 44032: 0xC6CA,\n\t54045 - 44032: 0xC6CB,\n\t54046 - 44032: 0xBB58,\n\t54047 - 44032: 0xC6CC,\n\t54048 - 44032: 0xC6CD,\n\t54049 - 44032: 0xC6CE,\n\t54050 - 44032: 0xBB59,\n\t54051 - 44032: 0xBB5A,\n\t54052 - 44032: 0xBB61,\n\t54053 - 44032: 0xC6CF,\n\t54054 - 44032: 0xBB62,\n\t54055 - 44032: 0xBB63,\n\t54056 - 44032: 0xC6D0,\n\t54057 - 44032: 0xC6D1,\n\t54058 - 44032: 0xBB64,\n\t54059 - 44032: 0xBB65,\n\t54060 - 44032: 0xC6D2,\n\t54061 - 44032: 0xBB66,\n\t54062 - 44032: 0xBB67,\n\t54063 - 44032: 0xBB68,\n\t54064 - 44032: 0xC6D3,\n\t54065 - 44032: 0xBB69,\n\t54066 - 44032: 0xBB6A,\n\t54067 - 44032: 0xBB6B,\n\t54068 - 44032: 0xBB6C,\n\t54069 - 44032: 0xBB6D,\n\t54070 - 44032: 0xBB6E,\n\t54071 - 44032: 0xBB6F,\n\t54072 - 44032: 0xC6D4,\n\t54073 - 44032: 0xC6D5,\n\t54074 - 44032: 0xBB70,\n\t54075 - 44032: 0xC6D6,\n\t54076 - 44032: 0xC6D7,\n\t54077 - 44032: 0xC6D8,\n\t54078 - 44032: 0xBB71,\n\t54079 - 44032: 0xBB72,\n\t54080 - 44032: 0xBB73,\n\t54081 - 44032: 0xBB74,\n\t54082 - 44032: 0xBB75,\n\t54083 - 44032: 0xBB76,\n\t54084 - 44032: 0xC6D9,\n\t54085 - 44032: 0xC6DA,\n\t54086 - 44032: 0xBB77,\n\t54087 - 44032: 0xBB78,\n\t54088 - 44032: 0xBB79,\n\t54089 - 44032: 0xBB7A,\n\t54090 - 44032: 0xBB81,\n\t54091 - 44032: 0xBB82,\n\t54092 - 44032: 0xBB83,\n\t54093 - 44032: 0xBB84,\n\t54094 - 44032: 0xBB85,\n\t54095 - 44032: 0xBB86,\n\t54096 - 44032: 0xBB87,\n\t54097 - 44032: 0xBB88,\n\t54098 - 44032: 0xBB89,\n\t54099 - 44032: 0xBB8A,\n\t54100 - 44032: 0xBB8B,\n\t54101 - 44032: 0xBB8C,\n\t54102 - 44032: 0xBB8D,\n\t54103 - 44032: 0xBB8E,\n\t54104 - 44032: 0xBB8F,\n\t54105 - 44032: 0xBB90,\n\t54106 - 44032: 0xBB91,\n\t54107 - 44032: 0xBB92,\n\t54108 - 44032: 0xBB93,\n\t54109 - 44032: 0xBB94,\n\t54110 - 44032: 0xBB95,\n\t54111 - 44032: 0xBB96,\n\t54112 - 44032: 0xBB97,\n\t54113 - 44032: 0xBB98,\n\t54114 - 44032: 0xBB99,\n\t54115 - 44032: 0xBB9A,\n\t54116 - 44032: 0xBB9B,\n\t54117 - 44032: 0xBB9C,\n\t54118 - 44032: 0xBB9D,\n\t54119 - 44032: 0xBB9E,\n\t54120 - 44032: 0xBB9F,\n\t54121 - 44032: 0xBBA0,\n\t54122 - 44032: 0xBC41,\n\t54123 - 44032: 0xBC42,\n\t54124 - 44032: 0xBC43,\n\t54125 - 44032: 0xBC44,\n\t54126 - 44032: 0xBC45,\n\t54127 - 44032: 0xBC46,\n\t54128 - 44032: 0xBC47,\n\t54129 - 44032: 0xBC48,\n\t54130 - 44032: 0xBC49,\n\t54131 - 44032: 0xBC4A,\n\t54132 - 44032: 0xBC4B,\n\t54133 - 44032: 0xBC4C,\n\t54134 - 44032: 0xBC4D,\n\t54135 - 44032: 0xBC4E,\n\t54136 - 44032: 0xBC4F,\n\t54137 - 44032: 0xBC50,\n\t54138 - 44032: 0xBC51,\n\t54139 - 44032: 0xBC52,\n\t54140 - 44032: 0xC6DB,\n\t54141 - 44032: 0xC6DC,\n\t54142 - 44032: 0xBC53,\n\t54143 - 44032: 0xBC54,\n\t54144 - 44032: 0xC6DD,\n\t54145 - 44032: 0xBC55,\n\t54146 - 44032: 0xBC56,\n\t54147 - 44032: 0xBC57,\n\t54148 - 44032: 0xC6DE,\n\t54149 - 44032: 0xBC58,\n\t54150 - 44032: 0xBC59,\n\t54151 - 44032: 0xBC5A,\n\t54152 - 44032: 0xBC61,\n\t54153 - 44032: 0xBC62,\n\t54154 - 44032: 0xBC63,\n\t54155 - 44032: 0xBC64,\n\t54156 - 44032: 0xC6DF,\n\t54157 - 44032: 0xC6E0,\n\t54158 - 44032: 0xBC65,\n\t54159 - 44032: 0xC6E1,\n\t54160 - 44032: 0xC6E2,\n\t54161 - 44032: 0xC6E3,\n\t54162 - 44032: 0xBC66,\n\t54163 - 44032: 0xBC67,\n\t54164 - 44032: 0xBC68,\n\t54165 - 44032: 0xBC69,\n\t54166 - 44032: 0xBC6A,\n\t54167 - 44032: 0xBC6B,\n\t54168 - 44032: 0xC6E4,\n\t54169 - 44032: 0xC6E5,\n\t54170 - 44032: 0xBC6C,\n\t54171 - 44032: 0xBC6D,\n\t54172 - 44032: 0xC6E6,\n\t54173 - 44032: 0xBC6E,\n\t54174 - 44032: 0xBC6F,\n\t54175 - 44032: 0xBC70,\n\t54176 - 44032: 0xC6E7,\n\t54177 - 44032: 0xBC71,\n\t54178 - 44032: 0xBC72,\n\t54179 - 44032: 0xBC73,\n\t54180 - 44032: 0xBC74,\n\t54181 - 44032: 0xBC75,\n\t54182 - 44032: 0xBC76,\n\t54183 - 44032: 0xBC77,\n\t54184 - 44032: 0xC6E8,\n\t54185 - 44032: 0xC6E9,\n\t54186 - 44032: 0xBC78,\n\t54187 - 44032: 0xC6EA,\n\t54188 - 44032: 0xBC79,\n\t54189 - 44032: 0xC6EB,\n\t54190 - 44032: 0xBC7A,\n\t54191 - 44032: 0xBC81,\n\t54192 - 44032: 0xBC82,\n\t54193 - 44032: 0xBC83,\n\t54194 - 44032: 0xBC84,\n\t54195 - 44032: 0xBC85,\n\t54196 - 44032: 0xC6EC,\n\t54197 - 44032: 0xBC86,\n\t54198 - 44032: 0xBC87,\n\t54199 - 44032: 0xBC88,\n\t54200 - 44032: 0xC6ED,\n\t54201 - 44032: 0xBC89,\n\t54202 - 44032: 0xBC8A,\n\t54203 - 44032: 0xBC8B,\n\t54204 - 44032: 0xC6EE,\n\t54205 - 44032: 0xBC8C,\n\t54206 - 44032: 0xBC8D,\n\t54207 - 44032: 0xBC8E,\n\t54208 - 44032: 0xBC8F,\n\t54209 - 44032: 0xBC90,\n\t54210 - 44032: 0xBC91,\n\t54211 - 44032: 0xBC92,\n\t54212 - 44032: 0xC6EF,\n\t54213 - 44032: 0xC6F0,\n\t54214 - 44032: 0xBC93,\n\t54215 - 44032: 0xBC94,\n\t54216 - 44032: 0xC6F1,\n\t54217 - 44032: 0xC6F2,\n\t54218 - 44032: 0xBC95,\n\t54219 - 44032: 0xBC96,\n\t54220 - 44032: 0xBC97,\n\t54221 - 44032: 0xBC98,\n\t54222 - 44032: 0xBC99,\n\t54223 - 44032: 0xBC9A,\n\t54224 - 44032: 0xC6F3,\n\t54225 - 44032: 0xBC9B,\n\t54226 - 44032: 0xBC9C,\n\t54227 - 44032: 0xBC9D,\n\t54228 - 44032: 0xBC9E,\n\t54229 - 44032: 0xBC9F,\n\t54230 - 44032: 0xBCA0,\n\t54231 - 44032: 0xBD41,\n\t54232 - 44032: 0xC6F4,\n\t54233 - 44032: 0xBD42,\n\t54234 - 44032: 0xBD43,\n\t54235 - 44032: 0xBD44,\n\t54236 - 44032: 0xBD45,\n\t54237 - 44032: 0xBD46,\n\t54238 - 44032: 0xBD47,\n\t54239 - 44032: 0xBD48,\n\t54240 - 44032: 0xBD49,\n\t54241 - 44032: 0xC6F5,\n\t54242 - 44032: 0xBD4A,\n\t54243 - 44032: 0xC6F6,\n\t54244 - 44032: 0xBD4B,\n\t54245 - 44032: 0xBD4C,\n\t54246 - 44032: 0xBD4D,\n\t54247 - 44032: 0xBD4E,\n\t54248 - 44032: 0xBD4F,\n\t54249 - 44032: 0xBD50,\n\t54250 - 44032: 0xBD51,\n\t54251 - 44032: 0xBD52,\n\t54252 - 44032: 0xC6F7,\n\t54253 - 44032: 0xC6F8,\n\t54254 - 44032: 0xBD53,\n\t54255 - 44032: 0xBD54,\n\t54256 - 44032: 0xC6F9,\n\t54257 - 44032: 0xBD55,\n\t54258 - 44032: 0xBD56,\n\t54259 - 44032: 0xBD57,\n\t54260 - 44032: 0xC6FA,\n\t54261 - 44032: 0xBD58,\n\t54262 - 44032: 0xBD59,\n\t54263 - 44032: 0xBD5A,\n\t54264 - 44032: 0xBD61,\n\t54265 - 44032: 0xBD62,\n\t54266 - 44032: 0xBD63,\n\t54267 - 44032: 0xBD64,\n\t54268 - 44032: 0xC6FB,\n\t54269 - 44032: 0xC6FC,\n\t54270 - 44032: 0xBD65,\n\t54271 - 44032: 0xC6FD,\n\t54272 - 44032: 0xBD66,\n\t54273 - 44032: 0xC6FE,\n\t54274 - 44032: 0xBD67,\n\t54275 - 44032: 0xBD68,\n\t54276 - 44032: 0xBD69,\n\t54277 - 44032: 0xBD6A,\n\t54278 - 44032: 0xBD6B,\n\t54279 - 44032: 0xBD6C,\n\t54280 - 44032: 0xC7A1,\n\t54281 - 44032: 0xBD6D,\n\t54282 - 44032: 0xBD6E,\n\t54283 - 44032: 0xBD6F,\n\t54284 - 44032: 0xBD70,\n\t54285 - 44032: 0xBD71,\n\t54286 - 44032: 0xBD72,\n\t54287 - 44032: 0xBD73,\n\t54288 - 44032: 0xBD74,\n\t54289 - 44032: 0xBD75,\n\t54290 - 44032: 0xBD76,\n\t54291 - 44032: 0xBD77,\n\t54292 - 44032: 0xBD78,\n\t54293 - 44032: 0xBD79,\n\t54294 - 44032: 0xBD7A,\n\t54295 - 44032: 0xBD81,\n\t54296 - 44032: 0xBD82,\n\t54297 - 44032: 0xBD83,\n\t54298 - 44032: 0xBD84,\n\t54299 - 44032: 0xBD85,\n\t54300 - 44032: 0xBD86,\n\t54301 - 44032: 0xC7A2,\n\t54302 - 44032: 0xBD87,\n\t54303 - 44032: 0xBD88,\n\t54304 - 44032: 0xBD89,\n\t54305 - 44032: 0xBD8A,\n\t54306 - 44032: 0xBD8B,\n\t54307 - 44032: 0xBD8C,\n\t54308 - 44032: 0xBD8D,\n\t54309 - 44032: 0xBD8E,\n\t54310 - 44032: 0xBD8F,\n\t54311 - 44032: 0xBD90,\n\t54312 - 44032: 0xBD91,\n\t54313 - 44032: 0xBD92,\n\t54314 - 44032: 0xBD93,\n\t54315 - 44032: 0xBD94,\n\t54316 - 44032: 0xBD95,\n\t54317 - 44032: 0xBD96,\n\t54318 - 44032: 0xBD97,\n\t54319 - 44032: 0xBD98,\n\t54320 - 44032: 0xBD99,\n\t54321 - 44032: 0xBD9A,\n\t54322 - 44032: 0xBD9B,\n\t54323 - 44032: 0xBD9C,\n\t54324 - 44032: 0xBD9D,\n\t54325 - 44032: 0xBD9E,\n\t54326 - 44032: 0xBD9F,\n\t54327 - 44032: 0xBDA0,\n\t54328 - 44032: 0xBE41,\n\t54329 - 44032: 0xBE42,\n\t54330 - 44032: 0xBE43,\n\t54331 - 44032: 0xBE44,\n\t54332 - 44032: 0xBE45,\n\t54333 - 44032: 0xBE46,\n\t54334 - 44032: 0xBE47,\n\t54335 - 44032: 0xBE48,\n\t54336 - 44032: 0xC7A3,\n\t54337 - 44032: 0xBE49,\n\t54338 - 44032: 0xBE4A,\n\t54339 - 44032: 0xBE4B,\n\t54340 - 44032: 0xC7A4,\n\t54341 - 44032: 0xBE4C,\n\t54342 - 44032: 0xBE4D,\n\t54343 - 44032: 0xBE4E,\n\t54344 - 44032: 0xBE4F,\n\t54345 - 44032: 0xBE50,\n\t54346 - 44032: 0xBE51,\n\t54347 - 44032: 0xBE52,\n\t54348 - 44032: 0xBE53,\n\t54349 - 44032: 0xBE54,\n\t54350 - 44032: 0xBE55,\n\t54351 - 44032: 0xBE56,\n\t54352 - 44032: 0xBE57,\n\t54353 - 44032: 0xBE58,\n\t54354 - 44032: 0xBE59,\n\t54355 - 44032: 0xBE5A,\n\t54356 - 44032: 0xBE61,\n\t54357 - 44032: 0xBE62,\n\t54358 - 44032: 0xBE63,\n\t54359 - 44032: 0xBE64,\n\t54360 - 44032: 0xBE65,\n\t54361 - 44032: 0xBE66,\n\t54362 - 44032: 0xBE67,\n\t54363 - 44032: 0xBE68,\n\t54364 - 44032: 0xC7A5,\n\t54365 - 44032: 0xBE69,\n\t54366 - 44032: 0xBE6A,\n\t54367 - 44032: 0xBE6B,\n\t54368 - 44032: 0xC7A6,\n\t54369 - 44032: 0xBE6C,\n\t54370 - 44032: 0xBE6D,\n\t54371 - 44032: 0xBE6E,\n\t54372 - 44032: 0xC7A7,\n\t54373 - 44032: 0xBE6F,\n\t54374 - 44032: 0xBE70,\n\t54375 - 44032: 0xBE71,\n\t54376 - 44032: 0xBE72,\n\t54377 - 44032: 0xBE73,\n\t54378 - 44032: 0xBE74,\n\t54379 - 44032: 0xBE75,\n\t54380 - 44032: 0xBE76,\n\t54381 - 44032: 0xC7A8,\n\t54382 - 44032: 0xBE77,\n\t54383 - 44032: 0xC7A9,\n\t54384 - 44032: 0xBE78,\n\t54385 - 44032: 0xBE79,\n\t54386 - 44032: 0xBE7A,\n\t54387 - 44032: 0xBE81,\n\t54388 - 44032: 0xBE82,\n\t54389 - 44032: 0xBE83,\n\t54390 - 44032: 0xBE84,\n\t54391 - 44032: 0xBE85,\n\t54392 - 44032: 0xC7AA,\n\t54393 - 44032: 0xC7AB,\n\t54394 - 44032: 0xBE86,\n\t54395 - 44032: 0xBE87,\n\t54396 - 44032: 0xC7AC,\n\t54397 - 44032: 0xBE88,\n\t54398 - 44032: 0xBE89,\n\t54399 - 44032: 0xC7AD,\n\t54400 - 44032: 0xC7AE,\n\t54401 - 44032: 0xBE8A,\n\t54402 - 44032: 0xC7AF,\n\t54403 - 44032: 0xBE8B,\n\t54404 - 44032: 0xBE8C,\n\t54405 - 44032: 0xBE8D,\n\t54406 - 44032: 0xBE8E,\n\t54407 - 44032: 0xBE8F,\n\t54408 - 44032: 0xC7B0,\n\t54409 - 44032: 0xC7B1,\n\t54410 - 44032: 0xBE90,\n\t54411 - 44032: 0xC7B2,\n\t54412 - 44032: 0xBE91,\n\t54413 - 44032: 0xC7B3,\n\t54414 - 44032: 0xBE92,\n\t54415 - 44032: 0xBE93,\n\t54416 - 44032: 0xBE94,\n\t54417 - 44032: 0xBE95,\n\t54418 - 44032: 0xBE96,\n\t54419 - 44032: 0xBE97,\n\t54420 - 44032: 0xC7B4,\n\t54421 - 44032: 0xBE98,\n\t54422 - 44032: 0xBE99,\n\t54423 - 44032: 0xBE9A,\n\t54424 - 44032: 0xBE9B,\n\t54425 - 44032: 0xBE9C,\n\t54426 - 44032: 0xBE9D,\n\t54427 - 44032: 0xBE9E,\n\t54428 - 44032: 0xBE9F,\n\t54429 - 44032: 0xBEA0,\n\t54430 - 44032: 0xBF41,\n\t54431 - 44032: 0xBF42,\n\t54432 - 44032: 0xBF43,\n\t54433 - 44032: 0xBF44,\n\t54434 - 44032: 0xBF45,\n\t54435 - 44032: 0xBF46,\n\t54436 - 44032: 0xBF47,\n\t54437 - 44032: 0xBF48,\n\t54438 - 44032: 0xBF49,\n\t54439 - 44032: 0xBF4A,\n\t54440 - 44032: 0xBF4B,\n\t54441 - 44032: 0xC7B5,\n\t54442 - 44032: 0xBF4C,\n\t54443 - 44032: 0xBF4D,\n\t54444 - 44032: 0xBF4E,\n\t54445 - 44032: 0xBF4F,\n\t54446 - 44032: 0xBF50,\n\t54447 - 44032: 0xBF51,\n\t54448 - 44032: 0xBF52,\n\t54449 - 44032: 0xBF53,\n\t54450 - 44032: 0xBF54,\n\t54451 - 44032: 0xBF55,\n\t54452 - 44032: 0xBF56,\n\t54453 - 44032: 0xBF57,\n\t54454 - 44032: 0xBF58,\n\t54455 - 44032: 0xBF59,\n\t54456 - 44032: 0xBF5A,\n\t54457 - 44032: 0xBF61,\n\t54458 - 44032: 0xBF62,\n\t54459 - 44032: 0xBF63,\n\t54460 - 44032: 0xBF64,\n\t54461 - 44032: 0xBF65,\n\t54462 - 44032: 0xBF66,\n\t54463 - 44032: 0xBF67,\n\t54464 - 44032: 0xBF68,\n\t54465 - 44032: 0xBF69,\n\t54466 - 44032: 0xBF6A,\n\t54467 - 44032: 0xBF6B,\n\t54468 - 44032: 0xBF6C,\n\t54469 - 44032: 0xBF6D,\n\t54470 - 44032: 0xBF6E,\n\t54471 - 44032: 0xBF6F,\n\t54472 - 44032: 0xBF70,\n\t54473 - 44032: 0xBF71,\n\t54474 - 44032: 0xBF72,\n\t54475 - 44032: 0xBF73,\n\t54476 - 44032: 0xC7B6,\n\t54477 - 44032: 0xBF74,\n\t54478 - 44032: 0xBF75,\n\t54479 - 44032: 0xBF76,\n\t54480 - 44032: 0xC7B7,\n\t54481 - 44032: 0xBF77,\n\t54482 - 44032: 0xBF78,\n\t54483 - 44032: 0xBF79,\n\t54484 - 44032: 0xC7B8,\n\t54485 - 44032: 0xBF7A,\n\t54486 - 44032: 0xBF81,\n\t54487 - 44032: 0xBF82,\n\t54488 - 44032: 0xBF83,\n\t54489 - 44032: 0xBF84,\n\t54490 - 44032: 0xBF85,\n\t54491 - 44032: 0xBF86,\n\t54492 - 44032: 0xC7B9,\n\t54493 - 44032: 0xBF87,\n\t54494 - 44032: 0xBF88,\n\t54495 - 44032: 0xC7BA,\n\t54496 - 44032: 0xBF89,\n\t54497 - 44032: 0xBF8A,\n\t54498 - 44032: 0xBF8B,\n\t54499 - 44032: 0xBF8C,\n\t54500 - 44032: 0xBF8D,\n\t54501 - 44032: 0xBF8E,\n\t54502 - 44032: 0xBF8F,\n\t54503 - 44032: 0xBF90,\n\t54504 - 44032: 0xC7BB,\n\t54505 - 44032: 0xBF91,\n\t54506 - 44032: 0xBF92,\n\t54507 - 44032: 0xBF93,\n\t54508 - 44032: 0xC7BC,\n\t54509 - 44032: 0xBF94,\n\t54510 - 44032: 0xBF95,\n\t54511 - 44032: 0xBF96,\n\t54512 - 44032: 0xC7BD,\n\t54513 - 44032: 0xBF97,\n\t54514 - 44032: 0xBF98,\n\t54515 - 44032: 0xBF99,\n\t54516 - 44032: 0xBF9A,\n\t54517 - 44032: 0xBF9B,\n\t54518 - 44032: 0xBF9C,\n\t54519 - 44032: 0xBF9D,\n\t54520 - 44032: 0xC7BE,\n\t54521 - 44032: 0xBF9E,\n\t54522 - 44032: 0xBF9F,\n\t54523 - 44032: 0xC7BF,\n\t54524 - 44032: 0xBFA0,\n\t54525 - 44032: 0xC7C0,\n\t54526 - 44032: 0xC041,\n\t54527 - 44032: 0xC042,\n\t54528 - 44032: 0xC043,\n\t54529 - 44032: 0xC044,\n\t54530 - 44032: 0xC045,\n\t54531 - 44032: 0xC046,\n\t54532 - 44032: 0xC7C1,\n\t54533 - 44032: 0xC047,\n\t54534 - 44032: 0xC048,\n\t54535 - 44032: 0xC049,\n\t54536 - 44032: 0xC7C2,\n\t54537 - 44032: 0xC04A,\n\t54538 - 44032: 0xC04B,\n\t54539 - 44032: 0xC04C,\n\t54540 - 44032: 0xC7C3,\n\t54541 - 44032: 0xC04D,\n\t54542 - 44032: 0xC04E,\n\t54543 - 44032: 0xC04F,\n\t54544 - 44032: 0xC050,\n\t54545 - 44032: 0xC051,\n\t54546 - 44032: 0xC052,\n\t54547 - 44032: 0xC053,\n\t54548 - 44032: 0xC7C4,\n\t54549 - 44032: 0xC7C5,\n\t54550 - 44032: 0xC054,\n\t54551 - 44032: 0xC7C6,\n\t54552 - 44032: 0xC055,\n\t54553 - 44032: 0xC056,\n\t54554 - 44032: 0xC057,\n\t54555 - 44032: 0xC058,\n\t54556 - 44032: 0xC059,\n\t54557 - 44032: 0xC05A,\n\t54558 - 44032: 0xC061,\n\t54559 - 44032: 0xC062,\n\t54560 - 44032: 0xC063,\n\t54561 - 44032: 0xC064,\n\t54562 - 44032: 0xC065,\n\t54563 - 44032: 0xC066,\n\t54564 - 44032: 0xC067,\n\t54565 - 44032: 0xC068,\n\t54566 - 44032: 0xC069,\n\t54567 - 44032: 0xC06A,\n\t54568 - 44032: 0xC06B,\n\t54569 - 44032: 0xC06C,\n\t54570 - 44032: 0xC06D,\n\t54571 - 44032: 0xC06E,\n\t54572 - 44032: 0xC06F,\n\t54573 - 44032: 0xC070,\n\t54574 - 44032: 0xC071,\n\t54575 - 44032: 0xC072,\n\t54576 - 44032: 0xC073,\n\t54577 - 44032: 0xC074,\n\t54578 - 44032: 0xC075,\n\t54579 - 44032: 0xC076,\n\t54580 - 44032: 0xC077,\n\t54581 - 44032: 0xC078,\n\t54582 - 44032: 0xC079,\n\t54583 - 44032: 0xC07A,\n\t54584 - 44032: 0xC081,\n\t54585 - 44032: 0xC082,\n\t54586 - 44032: 0xC083,\n\t54587 - 44032: 0xC084,\n\t54588 - 44032: 0xC7C7,\n\t54589 - 44032: 0xC7C8,\n\t54590 - 44032: 0xC085,\n\t54591 - 44032: 0xC086,\n\t54592 - 44032: 0xC7C9,\n\t54593 - 44032: 0xC087,\n\t54594 - 44032: 0xC088,\n\t54595 - 44032: 0xC089,\n\t54596 - 44032: 0xC7CA,\n\t54597 - 44032: 0xC08A,\n\t54598 - 44032: 0xC08B,\n\t54599 - 44032: 0xC08C,\n\t54600 - 44032: 0xC08D,\n\t54601 - 44032: 0xC08E,\n\t54602 - 44032: 0xC08F,\n\t54603 - 44032: 0xC090,\n\t54604 - 44032: 0xC7CB,\n\t54605 - 44032: 0xC7CC,\n\t54606 - 44032: 0xC091,\n\t54607 - 44032: 0xC7CD,\n\t54608 - 44032: 0xC092,\n\t54609 - 44032: 0xC7CE,\n\t54610 - 44032: 0xC093,\n\t54611 - 44032: 0xC094,\n\t54612 - 44032: 0xC095,\n\t54613 - 44032: 0xC096,\n\t54614 - 44032: 0xC097,\n\t54615 - 44032: 0xC098,\n\t54616 - 44032: 0xC7CF,\n\t54617 - 44032: 0xC7D0,\n\t54618 - 44032: 0xC099,\n\t54619 - 44032: 0xC09A,\n\t54620 - 44032: 0xC7D1,\n\t54621 - 44032: 0xC09B,\n\t54622 - 44032: 0xC09C,\n\t54623 - 44032: 0xC09D,\n\t54624 - 44032: 0xC7D2,\n\t54625 - 44032: 0xC09E,\n\t54626 - 44032: 0xC09F,\n\t54627 - 44032: 0xC0A0,\n\t54628 - 44032: 0xC141,\n\t54629 - 44032: 0xC7D3,\n\t54630 - 44032: 0xC142,\n\t54631 - 44032: 0xC143,\n\t54632 - 44032: 0xC7D4,\n\t54633 - 44032: 0xC7D5,\n\t54634 - 44032: 0xC144,\n\t54635 - 44032: 0xC7D6,\n\t54636 - 44032: 0xC145,\n\t54637 - 44032: 0xC7D7,\n\t54638 - 44032: 0xC146,\n\t54639 - 44032: 0xC147,\n\t54640 - 44032: 0xC148,\n\t54641 - 44032: 0xC149,\n\t54642 - 44032: 0xC14A,\n\t54643 - 44032: 0xC14B,\n\t54644 - 44032: 0xC7D8,\n\t54645 - 44032: 0xC7D9,\n\t54646 - 44032: 0xC14C,\n\t54647 - 44032: 0xC14D,\n\t54648 - 44032: 0xC7DA,\n\t54649 - 44032: 0xC14E,\n\t54650 - 44032: 0xC14F,\n\t54651 - 44032: 0xC150,\n\t54652 - 44032: 0xC7DB,\n\t54653 - 44032: 0xC151,\n\t54654 - 44032: 0xC152,\n\t54655 - 44032: 0xC153,\n\t54656 - 44032: 0xC154,\n\t54657 - 44032: 0xC155,\n\t54658 - 44032: 0xC156,\n\t54659 - 44032: 0xC157,\n\t54660 - 44032: 0xC7DC,\n\t54661 - 44032: 0xC7DD,\n\t54662 - 44032: 0xC158,\n\t54663 - 44032: 0xC7DE,\n\t54664 - 44032: 0xC7DF,\n\t54665 - 44032: 0xC7E0,\n\t54666 - 44032: 0xC159,\n\t54667 - 44032: 0xC15A,\n\t54668 - 44032: 0xC161,\n\t54669 - 44032: 0xC162,\n\t54670 - 44032: 0xC163,\n\t54671 - 44032: 0xC164,\n\t54672 - 44032: 0xC7E1,\n\t54673 - 44032: 0xC165,\n\t54674 - 44032: 0xC166,\n\t54675 - 44032: 0xC167,\n\t54676 - 44032: 0xC168,\n\t54677 - 44032: 0xC169,\n\t54678 - 44032: 0xC16A,\n\t54679 - 44032: 0xC16B,\n\t54680 - 44032: 0xC16C,\n\t54681 - 44032: 0xC16D,\n\t54682 - 44032: 0xC16E,\n\t54683 - 44032: 0xC16F,\n\t54684 - 44032: 0xC170,\n\t54685 - 44032: 0xC171,\n\t54686 - 44032: 0xC172,\n\t54687 - 44032: 0xC173,\n\t54688 - 44032: 0xC174,\n\t54689 - 44032: 0xC175,\n\t54690 - 44032: 0xC176,\n\t54691 - 44032: 0xC177,\n\t54692 - 44032: 0xC178,\n\t54693 - 44032: 0xC7E2,\n\t54694 - 44032: 0xC179,\n\t54695 - 44032: 0xC17A,\n\t54696 - 44032: 0xC181,\n\t54697 - 44032: 0xC182,\n\t54698 - 44032: 0xC183,\n\t54699 - 44032: 0xC184,\n\t54700 - 44032: 0xC185,\n\t54701 - 44032: 0xC186,\n\t54702 - 44032: 0xC187,\n\t54703 - 44032: 0xC188,\n\t54704 - 44032: 0xC189,\n\t54705 - 44032: 0xC18A,\n\t54706 - 44032: 0xC18B,\n\t54707 - 44032: 0xC18C,\n\t54708 - 44032: 0xC18D,\n\t54709 - 44032: 0xC18E,\n\t54710 - 44032: 0xC18F,\n\t54711 - 44032: 0xC190,\n\t54712 - 44032: 0xC191,\n\t54713 - 44032: 0xC192,\n\t54714 - 44032: 0xC193,\n\t54715 - 44032: 0xC194,\n\t54716 - 44032: 0xC195,\n\t54717 - 44032: 0xC196,\n\t54718 - 44032: 0xC197,\n\t54719 - 44032: 0xC198,\n\t54720 - 44032: 0xC199,\n\t54721 - 44032: 0xC19A,\n\t54722 - 44032: 0xC19B,\n\t54723 - 44032: 0xC19C,\n\t54724 - 44032: 0xC19D,\n\t54725 - 44032: 0xC19E,\n\t54726 - 44032: 0xC19F,\n\t54727 - 44032: 0xC1A0,\n\t54728 - 44032: 0xC7E3,\n\t54729 - 44032: 0xC7E4,\n\t54730 - 44032: 0xC241,\n\t54731 - 44032: 0xC242,\n\t54732 - 44032: 0xC7E5,\n\t54733 - 44032: 0xC243,\n\t54734 - 44032: 0xC244,\n\t54735 - 44032: 0xC245,\n\t54736 - 44032: 0xC7E6,\n\t54737 - 44032: 0xC246,\n\t54738 - 44032: 0xC7E7,\n\t54739 - 44032: 0xC247,\n\t54740 - 44032: 0xC248,\n\t54741 - 44032: 0xC249,\n\t54742 - 44032: 0xC24A,\n\t54743 - 44032: 0xC24B,\n\t54744 - 44032: 0xC7E8,\n\t54745 - 44032: 0xC7E9,\n\t54746 - 44032: 0xC24C,\n\t54747 - 44032: 0xC7EA,\n\t54748 - 44032: 0xC24D,\n\t54749 - 44032: 0xC7EB,\n\t54750 - 44032: 0xC24E,\n\t54751 - 44032: 0xC24F,\n\t54752 - 44032: 0xC250,\n\t54753 - 44032: 0xC251,\n\t54754 - 44032: 0xC252,\n\t54755 - 44032: 0xC253,\n\t54756 - 44032: 0xC7EC,\n\t54757 - 44032: 0xC7ED,\n\t54758 - 44032: 0xC254,\n\t54759 - 44032: 0xC255,\n\t54760 - 44032: 0xC7EE,\n\t54761 - 44032: 0xC256,\n\t54762 - 44032: 0xC257,\n\t54763 - 44032: 0xC258,\n\t54764 - 44032: 0xC7EF,\n\t54765 - 44032: 0xC259,\n\t54766 - 44032: 0xC25A,\n\t54767 - 44032: 0xC261,\n\t54768 - 44032: 0xC262,\n\t54769 - 44032: 0xC263,\n\t54770 - 44032: 0xC264,\n\t54771 - 44032: 0xC265,\n\t54772 - 44032: 0xC7F0,\n\t54773 - 44032: 0xC7F1,\n\t54774 - 44032: 0xC266,\n\t54775 - 44032: 0xC7F2,\n\t54776 - 44032: 0xC267,\n\t54777 - 44032: 0xC7F3,\n\t54778 - 44032: 0xC268,\n\t54779 - 44032: 0xC269,\n\t54780 - 44032: 0xC26A,\n\t54781 - 44032: 0xC26B,\n\t54782 - 44032: 0xC26C,\n\t54783 - 44032: 0xC26D,\n\t54784 - 44032: 0xC7F4,\n\t54785 - 44032: 0xC7F5,\n\t54786 - 44032: 0xC26E,\n\t54787 - 44032: 0xC26F,\n\t54788 - 44032: 0xC7F6,\n\t54789 - 44032: 0xC270,\n\t54790 - 44032: 0xC271,\n\t54791 - 44032: 0xC272,\n\t54792 - 44032: 0xC7F7,\n\t54793 - 44032: 0xC273,\n\t54794 - 44032: 0xC274,\n\t54795 - 44032: 0xC275,\n\t54796 - 44032: 0xC276,\n\t54797 - 44032: 0xC277,\n\t54798 - 44032: 0xC278,\n\t54799 - 44032: 0xC279,\n\t54800 - 44032: 0xC7F8,\n\t54801 - 44032: 0xC7F9,\n\t54802 - 44032: 0xC27A,\n\t54803 - 44032: 0xC7FA,\n\t54804 - 44032: 0xC7FB,\n\t54805 - 44032: 0xC7FC,\n\t54806 - 44032: 0xC281,\n\t54807 - 44032: 0xC282,\n\t54808 - 44032: 0xC283,\n\t54809 - 44032: 0xC284,\n\t54810 - 44032: 0xC285,\n\t54811 - 44032: 0xC286,\n\t54812 - 44032: 0xC7FD,\n\t54813 - 44032: 0xC287,\n\t54814 - 44032: 0xC288,\n\t54815 - 44032: 0xC289,\n\t54816 - 44032: 0xC7FE,\n\t54817 - 44032: 0xC28A,\n\t54818 - 44032: 0xC28B,\n\t54819 - 44032: 0xC28C,\n\t54820 - 44032: 0xC8A1,\n\t54821 - 44032: 0xC28D,\n\t54822 - 44032: 0xC28E,\n\t54823 - 44032: 0xC28F,\n\t54824 - 44032: 0xC290,\n\t54825 - 44032: 0xC291,\n\t54826 - 44032: 0xC292,\n\t54827 - 44032: 0xC293,\n\t54828 - 44032: 0xC294,\n\t54829 - 44032: 0xC8A2,\n\t54830 - 44032: 0xC295,\n\t54831 - 44032: 0xC296,\n\t54832 - 44032: 0xC297,\n\t54833 - 44032: 0xC298,\n\t54834 - 44032: 0xC299,\n\t54835 - 44032: 0xC29A,\n\t54836 - 44032: 0xC29B,\n\t54837 - 44032: 0xC29C,\n\t54838 - 44032: 0xC29D,\n\t54839 - 44032: 0xC29E,\n\t54840 - 44032: 0xC8A3,\n\t54841 - 44032: 0xC8A4,\n\t54842 - 44032: 0xC29F,\n\t54843 - 44032: 0xC2A0,\n\t54844 - 44032: 0xC8A5,\n\t54845 - 44032: 0xC341,\n\t54846 - 44032: 0xC342,\n\t54847 - 44032: 0xC343,\n\t54848 - 44032: 0xC8A6,\n\t54849 - 44032: 0xC344,\n\t54850 - 44032: 0xC345,\n\t54851 - 44032: 0xC346,\n\t54852 - 44032: 0xC347,\n\t54853 - 44032: 0xC8A7,\n\t54854 - 44032: 0xC348,\n\t54855 - 44032: 0xC349,\n\t54856 - 44032: 0xC8A8,\n\t54857 - 44032: 0xC8A9,\n\t54858 - 44032: 0xC34A,\n\t54859 - 44032: 0xC8AA,\n\t54860 - 44032: 0xC34B,\n\t54861 - 44032: 0xC8AB,\n\t54862 - 44032: 0xC34C,\n\t54863 - 44032: 0xC34D,\n\t54864 - 44032: 0xC34E,\n\t54865 - 44032: 0xC8AC,\n\t54866 - 44032: 0xC34F,\n\t54867 - 44032: 0xC350,\n\t54868 - 44032: 0xC8AD,\n\t54869 - 44032: 0xC8AE,\n\t54870 - 44032: 0xC351,\n\t54871 - 44032: 0xC352,\n\t54872 - 44032: 0xC8AF,\n\t54873 - 44032: 0xC353,\n\t54874 - 44032: 0xC354,\n\t54875 - 44032: 0xC355,\n\t54876 - 44032: 0xC8B0,\n\t54877 - 44032: 0xC356,\n\t54878 - 44032: 0xC357,\n\t54879 - 44032: 0xC358,\n\t54880 - 44032: 0xC359,\n\t54881 - 44032: 0xC35A,\n\t54882 - 44032: 0xC361,\n\t54883 - 44032: 0xC362,\n\t54884 - 44032: 0xC363,\n\t54885 - 44032: 0xC364,\n\t54886 - 44032: 0xC365,\n\t54887 - 44032: 0xC8B1,\n\t54888 - 44032: 0xC366,\n\t54889 - 44032: 0xC8B2,\n\t54890 - 44032: 0xC367,\n\t54891 - 44032: 0xC368,\n\t54892 - 44032: 0xC369,\n\t54893 - 44032: 0xC36A,\n\t54894 - 44032: 0xC36B,\n\t54895 - 44032: 0xC36C,\n\t54896 - 44032: 0xC8B3,\n\t54897 - 44032: 0xC8B4,\n\t54898 - 44032: 0xC36D,\n\t54899 - 44032: 0xC36E,\n\t54900 - 44032: 0xC8B5,\n\t54901 - 44032: 0xC36F,\n\t54902 - 44032: 0xC370,\n\t54903 - 44032: 0xC371,\n\t54904 - 44032: 0xC372,\n\t54905 - 44032: 0xC373,\n\t54906 - 44032: 0xC374,\n\t54907 - 44032: 0xC375,\n\t54908 - 44032: 0xC376,\n\t54909 - 44032: 0xC377,\n\t54910 - 44032: 0xC378,\n\t54911 - 44032: 0xC379,\n\t54912 - 44032: 0xC37A,\n\t54913 - 44032: 0xC381,\n\t54914 - 44032: 0xC382,\n\t54915 - 44032: 0xC8B6,\n\t54916 - 44032: 0xC383,\n\t54917 - 44032: 0xC8B7,\n\t54918 - 44032: 0xC384,\n\t54919 - 44032: 0xC385,\n\t54920 - 44032: 0xC386,\n\t54921 - 44032: 0xC387,\n\t54922 - 44032: 0xC388,\n\t54923 - 44032: 0xC389,\n\t54924 - 44032: 0xC8B8,\n\t54925 - 44032: 0xC8B9,\n\t54926 - 44032: 0xC38A,\n\t54927 - 44032: 0xC38B,\n\t54928 - 44032: 0xC8BA,\n\t54929 - 44032: 0xC38C,\n\t54930 - 44032: 0xC38D,\n\t54931 - 44032: 0xC38E,\n\t54932 - 44032: 0xC8BB,\n\t54933 - 44032: 0xC38F,\n\t54934 - 44032: 0xC390,\n\t54935 - 44032: 0xC391,\n\t54936 - 44032: 0xC392,\n\t54937 - 44032: 0xC393,\n\t54938 - 44032: 0xC394,\n\t54939 - 44032: 0xC395,\n\t54940 - 44032: 0xC396,\n\t54941 - 44032: 0xC8BC,\n\t54942 - 44032: 0xC397,\n\t54943 - 44032: 0xC8BD,\n\t54944 - 44032: 0xC398,\n\t54945 - 44032: 0xC8BE,\n\t54946 - 44032: 0xC399,\n\t54947 - 44032: 0xC39A,\n\t54948 - 44032: 0xC39B,\n\t54949 - 44032: 0xC39C,\n\t54950 - 44032: 0xC39D,\n\t54951 - 44032: 0xC39E,\n\t54952 - 44032: 0xC8BF,\n\t54953 - 44032: 0xC39F,\n\t54954 - 44032: 0xC3A0,\n\t54955 - 44032: 0xC441,\n\t54956 - 44032: 0xC8C0,\n\t54957 - 44032: 0xC442,\n\t54958 - 44032: 0xC443,\n\t54959 - 44032: 0xC444,\n\t54960 - 44032: 0xC8C1,\n\t54961 - 44032: 0xC445,\n\t54962 - 44032: 0xC446,\n\t54963 - 44032: 0xC447,\n\t54964 - 44032: 0xC448,\n\t54965 - 44032: 0xC449,\n\t54966 - 44032: 0xC44A,\n\t54967 - 44032: 0xC44B,\n\t54968 - 44032: 0xC44C,\n\t54969 - 44032: 0xC8C2,\n\t54970 - 44032: 0xC44D,\n\t54971 - 44032: 0xC8C3,\n\t54972 - 44032: 0xC44E,\n\t54973 - 44032: 0xC44F,\n\t54974 - 44032: 0xC450,\n\t54975 - 44032: 0xC451,\n\t54976 - 44032: 0xC452,\n\t54977 - 44032: 0xC453,\n\t54978 - 44032: 0xC454,\n\t54979 - 44032: 0xC455,\n\t54980 - 44032: 0xC8C4,\n\t54981 - 44032: 0xC8C5,\n\t54982 - 44032: 0xC456,\n\t54983 - 44032: 0xC457,\n\t54984 - 44032: 0xC8C6,\n\t54985 - 44032: 0xC458,\n\t54986 - 44032: 0xC459,\n\t54987 - 44032: 0xC45A,\n\t54988 - 44032: 0xC8C7,\n\t54989 - 44032: 0xC461,\n\t54990 - 44032: 0xC462,\n\t54991 - 44032: 0xC463,\n\t54992 - 44032: 0xC464,\n\t54993 - 44032: 0xC8C8,\n\t54994 - 44032: 0xC465,\n\t54995 - 44032: 0xC466,\n\t54996 - 44032: 0xC8C9,\n\t54997 - 44032: 0xC467,\n\t54998 - 44032: 0xC468,\n\t54999 - 44032: 0xC8CA,\n\t55000 - 44032: 0xC469,\n\t55001 - 44032: 0xC8CB,\n\t55002 - 44032: 0xC46A,\n\t55003 - 44032: 0xC46B,\n\t55004 - 44032: 0xC46C,\n\t55005 - 44032: 0xC46D,\n\t55006 - 44032: 0xC46E,\n\t55007 - 44032: 0xC46F,\n\t55008 - 44032: 0xC8CC,\n\t55009 - 44032: 0xC470,\n\t55010 - 44032: 0xC471,\n\t55011 - 44032: 0xC472,\n\t55012 - 44032: 0xC8CD,\n\t55013 - 44032: 0xC473,\n\t55014 - 44032: 0xC474,\n\t55015 - 44032: 0xC475,\n\t55016 - 44032: 0xC8CE,\n\t55017 - 44032: 0xC476,\n\t55018 - 44032: 0xC477,\n\t55019 - 44032: 0xC478,\n\t55020 - 44032: 0xC479,\n\t55021 - 44032: 0xC47A,\n\t55022 - 44032: 0xC481,\n\t55023 - 44032: 0xC482,\n\t55024 - 44032: 0xC8CF,\n\t55025 - 44032: 0xC483,\n\t55026 - 44032: 0xC484,\n\t55027 - 44032: 0xC485,\n\t55028 - 44032: 0xC486,\n\t55029 - 44032: 0xC8D0,\n\t55030 - 44032: 0xC487,\n\t55031 - 44032: 0xC488,\n\t55032 - 44032: 0xC489,\n\t55033 - 44032: 0xC48A,\n\t55034 - 44032: 0xC48B,\n\t55035 - 44032: 0xC48C,\n\t55036 - 44032: 0xC8D1,\n\t55037 - 44032: 0xC8D2,\n\t55038 - 44032: 0xC48D,\n\t55039 - 44032: 0xC48E,\n\t55040 - 44032: 0xC8D3,\n\t55041 - 44032: 0xC48F,\n\t55042 - 44032: 0xC490,\n\t55043 - 44032: 0xC491,\n\t55044 - 44032: 0xC8D4,\n\t55045 - 44032: 0xC492,\n\t55046 - 44032: 0xC493,\n\t55047 - 44032: 0xC494,\n\t55048 - 44032: 0xC495,\n\t55049 - 44032: 0xC496,\n\t55050 - 44032: 0xC497,\n\t55051 - 44032: 0xC498,\n\t55052 - 44032: 0xC499,\n\t55053 - 44032: 0xC49A,\n\t55054 - 44032: 0xC49B,\n\t55055 - 44032: 0xC49C,\n\t55056 - 44032: 0xC49D,\n\t55057 - 44032: 0xC8D5,\n\t55058 - 44032: 0xC49E,\n\t55059 - 44032: 0xC49F,\n\t55060 - 44032: 0xC4A0,\n\t55061 - 44032: 0xC541,\n\t55062 - 44032: 0xC542,\n\t55063 - 44032: 0xC543,\n\t55064 - 44032: 0xC8D6,\n\t55065 - 44032: 0xC8D7,\n\t55066 - 44032: 0xC544,\n\t55067 - 44032: 0xC545,\n\t55068 - 44032: 0xC8D8,\n\t55069 - 44032: 0xC546,\n\t55070 - 44032: 0xC547,\n\t55071 - 44032: 0xC548,\n\t55072 - 44032: 0xC8D9,\n\t55073 - 44032: 0xC549,\n\t55074 - 44032: 0xC54A,\n\t55075 - 44032: 0xC54B,\n\t55076 - 44032: 0xC54C,\n\t55077 - 44032: 0xC54D,\n\t55078 - 44032: 0xC54E,\n\t55079 - 44032: 0xC54F,\n\t55080 - 44032: 0xC8DA,\n\t55081 - 44032: 0xC8DB,\n\t55082 - 44032: 0xC550,\n\t55083 - 44032: 0xC8DC,\n\t55084 - 44032: 0xC551,\n\t55085 - 44032: 0xC8DD,\n\t55086 - 44032: 0xC552,\n\t55087 - 44032: 0xC553,\n\t55088 - 44032: 0xC554,\n\t55089 - 44032: 0xC555,\n\t55090 - 44032: 0xC556,\n\t55091 - 44032: 0xC557,\n\t55092 - 44032: 0xC8DE,\n\t55093 - 44032: 0xC8DF,\n\t55094 - 44032: 0xC558,\n\t55095 - 44032: 0xC559,\n\t55096 - 44032: 0xC8E0,\n\t55097 - 44032: 0xC55A,\n\t55098 - 44032: 0xC561,\n\t55099 - 44032: 0xC562,\n\t55100 - 44032: 0xC8E1,\n\t55101 - 44032: 0xC563,\n\t55102 - 44032: 0xC564,\n\t55103 - 44032: 0xC565,\n\t55104 - 44032: 0xC566,\n\t55105 - 44032: 0xC567,\n\t55106 - 44032: 0xC568,\n\t55107 - 44032: 0xC569,\n\t55108 - 44032: 0xC8E2,\n\t55109 - 44032: 0xC56A,\n\t55110 - 44032: 0xC56B,\n\t55111 - 44032: 0xC8E3,\n\t55112 - 44032: 0xC56C,\n\t55113 - 44032: 0xC8E4,\n\t55114 - 44032: 0xC56D,\n\t55115 - 44032: 0xC56E,\n\t55116 - 44032: 0xC56F,\n\t55117 - 44032: 0xC570,\n\t55118 - 44032: 0xC571,\n\t55119 - 44032: 0xC572,\n\t55120 - 44032: 0xC8E5,\n\t55121 - 44032: 0xC8E6,\n\t55122 - 44032: 0xC573,\n\t55123 - 44032: 0xC574,\n\t55124 - 44032: 0xC8E7,\n\t55125 - 44032: 0xC575,\n\t55126 - 44032: 0xC8E8,\n\t55127 - 44032: 0xC8E9,\n\t55128 - 44032: 0xC8EA,\n\t55129 - 44032: 0xC8EB,\n\t55130 - 44032: 0xC576,\n\t55131 - 44032: 0xC577,\n\t55132 - 44032: 0xC578,\n\t55133 - 44032: 0xC579,\n\t55134 - 44032: 0xC57A,\n\t55135 - 44032: 0xC581,\n\t55136 - 44032: 0xC8EC,\n\t55137 - 44032: 0xC8ED,\n\t55138 - 44032: 0xC582,\n\t55139 - 44032: 0xC8EE,\n\t55140 - 44032: 0xC583,\n\t55141 - 44032: 0xC8EF,\n\t55142 - 44032: 0xC584,\n\t55143 - 44032: 0xC585,\n\t55144 - 44032: 0xC586,\n\t55145 - 44032: 0xC8F0,\n\t55146 - 44032: 0xC587,\n\t55147 - 44032: 0xC588,\n\t55148 - 44032: 0xC8F1,\n\t55149 - 44032: 0xC589,\n\t55150 - 44032: 0xC58A,\n\t55151 - 44032: 0xC58B,\n\t55152 - 44032: 0xC8F2,\n\t55153 - 44032: 0xC58C,\n\t55154 - 44032: 0xC58D,\n\t55155 - 44032: 0xC58E,\n\t55156 - 44032: 0xC8F3,\n\t55157 - 44032: 0xC58F,\n\t55158 - 44032: 0xC590,\n\t55159 - 44032: 0xC591,\n\t55160 - 44032: 0xC592,\n\t55161 - 44032: 0xC593,\n\t55162 - 44032: 0xC594,\n\t55163 - 44032: 0xC595,\n\t55164 - 44032: 0xC8F4,\n\t55165 - 44032: 0xC8F5,\n\t55166 - 44032: 0xC596,\n\t55167 - 44032: 0xC597,\n\t55168 - 44032: 0xC598,\n\t55169 - 44032: 0xC8F6,\n\t55170 - 44032: 0xC599,\n\t55171 - 44032: 0xC59A,\n\t55172 - 44032: 0xC59B,\n\t55173 - 44032: 0xC59C,\n\t55174 - 44032: 0xC59D,\n\t55175 - 44032: 0xC59E,\n\t55176 - 44032: 0xC8F7,\n\t55177 - 44032: 0xC8F8,\n\t55178 - 44032: 0xC59F,\n\t55179 - 44032: 0xC5A0,\n\t55180 - 44032: 0xC8F9,\n\t55181 - 44032: 0xC641,\n\t55182 - 44032: 0xC642,\n\t55183 - 44032: 0xC643,\n\t55184 - 44032: 0xC8FA,\n\t55185 - 44032: 0xC644,\n\t55186 - 44032: 0xC645,\n\t55187 - 44032: 0xC646,\n\t55188 - 44032: 0xC647,\n\t55189 - 44032: 0xC648,\n\t55190 - 44032: 0xC649,\n\t55191 - 44032: 0xC64A,\n\t55192 - 44032: 0xC8FB,\n\t55193 - 44032: 0xC8FC,\n\t55194 - 44032: 0xC64B,\n\t55195 - 44032: 0xC8FD,\n\t55196 - 44032: 0xC64C,\n\t55197 - 44032: 0xC8FE,\n\t55198 - 44032: 0xC64D,\n\t55199 - 44032: 0xC64E,\n\t55200 - 44032: 0xC64F,\n\t55201 - 44032: 0xC650,\n\t55202 - 44032: 0xC651,\n\t55203 - 44032: 0xC652,\n}\n\nconst encode2Low, encode2High = 8213, 9838\n\nvar encode2 = [...]uint16{\n\t8213 - 8213: 0xA1AA,\n\t8216 - 8213: 0xA1AE,\n\t8217 - 8213: 0xA1AF,\n\t8220 - 8213: 0xA1B0,\n\t8221 - 8213: 0xA1B1,\n\t8224 - 8213: 0xA2D3,\n\t8225 - 8213: 0xA2D4,\n\t8229 - 8213: 0xA1A5,\n\t8230 - 8213: 0xA1A6,\n\t8240 - 8213: 0xA2B6,\n\t8242 - 8213: 0xA1C7,\n\t8243 - 8213: 0xA1C8,\n\t8251 - 8213: 0xA1D8,\n\t8308 - 8213: 0xA9F9,\n\t8319 - 8213: 0xA9FA,\n\t8321 - 8213: 0xA9FB,\n\t8322 - 8213: 0xA9FC,\n\t8323 - 8213: 0xA9FD,\n\t8324 - 8213: 0xA9FE,\n\t8364 - 8213: 0xA2E6,\n\t8451 - 8213: 0xA1C9,\n\t8457 - 8213: 0xA2B5,\n\t8467 - 8213: 0xA7A4,\n\t8470 - 8213: 0xA2E0,\n\t8481 - 8213: 0xA2E5,\n\t8482 - 8213: 0xA2E2,\n\t8486 - 8213: 0xA7D9,\n\t8491 - 8213: 0xA1CA,\n\t8531 - 8213: 0xA8F7,\n\t8532 - 8213: 0xA8F8,\n\t8539 - 8213: 0xA8FB,\n\t8540 - 8213: 0xA8FC,\n\t8541 - 8213: 0xA8FD,\n\t8542 - 8213: 0xA8FE,\n\t8544 - 8213: 0xA5B0,\n\t8545 - 8213: 0xA5B1,\n\t8546 - 8213: 0xA5B2,\n\t8547 - 8213: 0xA5B3,\n\t8548 - 8213: 0xA5B4,\n\t8549 - 8213: 0xA5B5,\n\t8550 - 8213: 0xA5B6,\n\t8551 - 8213: 0xA5B7,\n\t8552 - 8213: 0xA5B8,\n\t8553 - 8213: 0xA5B9,\n\t8560 - 8213: 0xA5A1,\n\t8561 - 8213: 0xA5A2,\n\t8562 - 8213: 0xA5A3,\n\t8563 - 8213: 0xA5A4,\n\t8564 - 8213: 0xA5A5,\n\t8565 - 8213: 0xA5A6,\n\t8566 - 8213: 0xA5A7,\n\t8567 - 8213: 0xA5A8,\n\t8568 - 8213: 0xA5A9,\n\t8569 - 8213: 0xA5AA,\n\t8592 - 8213: 0xA1E7,\n\t8593 - 8213: 0xA1E8,\n\t8594 - 8213: 0xA1E6,\n\t8595 - 8213: 0xA1E9,\n\t8596 - 8213: 0xA1EA,\n\t8597 - 8213: 0xA2D5,\n\t8598 - 8213: 0xA2D8,\n\t8599 - 8213: 0xA2D6,\n\t8600 - 8213: 0xA2D9,\n\t8601 - 8213: 0xA2D7,\n\t8658 - 8213: 0xA2A1,\n\t8660 - 8213: 0xA2A2,\n\t8704 - 8213: 0xA2A3,\n\t8706 - 8213: 0xA1D3,\n\t8707 - 8213: 0xA2A4,\n\t8711 - 8213: 0xA1D4,\n\t8712 - 8213: 0xA1F4,\n\t8715 - 8213: 0xA1F5,\n\t8719 - 8213: 0xA2B3,\n\t8721 - 8213: 0xA2B2,\n\t8730 - 8213: 0xA1EE,\n\t8733 - 8213: 0xA1F0,\n\t8734 - 8213: 0xA1C4,\n\t8736 - 8213: 0xA1D0,\n\t8741 - 8213: 0xA1AB,\n\t8743 - 8213: 0xA1FC,\n\t8744 - 8213: 0xA1FD,\n\t8745 - 8213: 0xA1FB,\n\t8746 - 8213: 0xA1FA,\n\t8747 - 8213: 0xA1F2,\n\t8748 - 8213: 0xA1F3,\n\t8750 - 8213: 0xA2B1,\n\t8756 - 8213: 0xA1C5,\n\t8757 - 8213: 0xA1F1,\n\t8764 - 8213: 0xA1AD,\n\t8765 - 8213: 0xA1EF,\n\t8786 - 8213: 0xA1D6,\n\t8800 - 8213: 0xA1C1,\n\t8801 - 8213: 0xA1D5,\n\t8804 - 8213: 0xA1C2,\n\t8805 - 8213: 0xA1C3,\n\t8810 - 8213: 0xA1EC,\n\t8811 - 8213: 0xA1ED,\n\t8834 - 8213: 0xA1F8,\n\t8835 - 8213: 0xA1F9,\n\t8838 - 8213: 0xA1F6,\n\t8839 - 8213: 0xA1F7,\n\t8857 - 8213: 0xA2C1,\n\t8869 - 8213: 0xA1D1,\n\t8978 - 8213: 0xA1D2,\n\t9312 - 8213: 0xA8E7,\n\t9313 - 8213: 0xA8E8,\n\t9314 - 8213: 0xA8E9,\n\t9315 - 8213: 0xA8EA,\n\t9316 - 8213: 0xA8EB,\n\t9317 - 8213: 0xA8EC,\n\t9318 - 8213: 0xA8ED,\n\t9319 - 8213: 0xA8EE,\n\t9320 - 8213: 0xA8EF,\n\t9321 - 8213: 0xA8F0,\n\t9322 - 8213: 0xA8F1,\n\t9323 - 8213: 0xA8F2,\n\t9324 - 8213: 0xA8F3,\n\t9325 - 8213: 0xA8F4,\n\t9326 - 8213: 0xA8F5,\n\t9332 - 8213: 0xA9E7,\n\t9333 - 8213: 0xA9E8,\n\t9334 - 8213: 0xA9E9,\n\t9335 - 8213: 0xA9EA,\n\t9336 - 8213: 0xA9EB,\n\t9337 - 8213: 0xA9EC,\n\t9338 - 8213: 0xA9ED,\n\t9339 - 8213: 0xA9EE,\n\t9340 - 8213: 0xA9EF,\n\t9341 - 8213: 0xA9F0,\n\t9342 - 8213: 0xA9F1,\n\t9343 - 8213: 0xA9F2,\n\t9344 - 8213: 0xA9F3,\n\t9345 - 8213: 0xA9F4,\n\t9346 - 8213: 0xA9F5,\n\t9372 - 8213: 0xA9CD,\n\t9373 - 8213: 0xA9CE,\n\t9374 - 8213: 0xA9CF,\n\t9375 - 8213: 0xA9D0,\n\t9376 - 8213: 0xA9D1,\n\t9377 - 8213: 0xA9D2,\n\t9378 - 8213: 0xA9D3,\n\t9379 - 8213: 0xA9D4,\n\t9380 - 8213: 0xA9D5,\n\t9381 - 8213: 0xA9D6,\n\t9382 - 8213: 0xA9D7,\n\t9383 - 8213: 0xA9D8,\n\t9384 - 8213: 0xA9D9,\n\t9385 - 8213: 0xA9DA,\n\t9386 - 8213: 0xA9DB,\n\t9387 - 8213: 0xA9DC,\n\t9388 - 8213: 0xA9DD,\n\t9389 - 8213: 0xA9DE,\n\t9390 - 8213: 0xA9DF,\n\t9391 - 8213: 0xA9E0,\n\t9392 - 8213: 0xA9E1,\n\t9393 - 8213: 0xA9E2,\n\t9394 - 8213: 0xA9E3,\n\t9395 - 8213: 0xA9E4,\n\t9396 - 8213: 0xA9E5,\n\t9397 - 8213: 0xA9E6,\n\t9424 - 8213: 0xA8CD,\n\t9425 - 8213: 0xA8CE,\n\t9426 - 8213: 0xA8CF,\n\t9427 - 8213: 0xA8D0,\n\t9428 - 8213: 0xA8D1,\n\t9429 - 8213: 0xA8D2,\n\t9430 - 8213: 0xA8D3,\n\t9431 - 8213: 0xA8D4,\n\t9432 - 8213: 0xA8D5,\n\t9433 - 8213: 0xA8D6,\n\t9434 - 8213: 0xA8D7,\n\t9435 - 8213: 0xA8D8,\n\t9436 - 8213: 0xA8D9,\n\t9437 - 8213: 0xA8DA,\n\t9438 - 8213: 0xA8DB,\n\t9439 - 8213: 0xA8DC,\n\t9440 - 8213: 0xA8DD,\n\t9441 - 8213: 0xA8DE,\n\t9442 - 8213: 0xA8DF,\n\t9443 - 8213: 0xA8E0,\n\t9444 - 8213: 0xA8E1,\n\t9445 - 8213: 0xA8E2,\n\t9446 - 8213: 0xA8E3,\n\t9447 - 8213: 0xA8E4,\n\t9448 - 8213: 0xA8E5,\n\t9449 - 8213: 0xA8E6,\n\t9472 - 8213: 0xA6A1,\n\t9473 - 8213: 0xA6AC,\n\t9474 - 8213: 0xA6A2,\n\t9475 - 8213: 0xA6AD,\n\t9484 - 8213: 0xA6A3,\n\t9485 - 8213: 0xA6C8,\n\t9486 - 8213: 0xA6C7,\n\t9487 - 8213: 0xA6AE,\n\t9488 - 8213: 0xA6A4,\n\t9489 - 8213: 0xA6C2,\n\t9490 - 8213: 0xA6C1,\n\t9491 - 8213: 0xA6AF,\n\t9492 - 8213: 0xA6A6,\n\t9493 - 8213: 0xA6C6,\n\t9494 - 8213: 0xA6C5,\n\t9495 - 8213: 0xA6B1,\n\t9496 - 8213: 0xA6A5,\n\t9497 - 8213: 0xA6C4,\n\t9498 - 8213: 0xA6C3,\n\t9499 - 8213: 0xA6B0,\n\t9500 - 8213: 0xA6A7,\n\t9501 - 8213: 0xA6BC,\n\t9502 - 8213: 0xA6C9,\n\t9503 - 8213: 0xA6CA,\n\t9504 - 8213: 0xA6B7,\n\t9505 - 8213: 0xA6CB,\n\t9506 - 8213: 0xA6CC,\n\t9507 - 8213: 0xA6B2,\n\t9508 - 8213: 0xA6A9,\n\t9509 - 8213: 0xA6BE,\n\t9510 - 8213: 0xA6CD,\n\t9511 - 8213: 0xA6CE,\n\t9512 - 8213: 0xA6B9,\n\t9513 - 8213: 0xA6CF,\n\t9514 - 8213: 0xA6D0,\n\t9515 - 8213: 0xA6B4,\n\t9516 - 8213: 0xA6A8,\n\t9517 - 8213: 0xA6D1,\n\t9518 - 8213: 0xA6D2,\n\t9519 - 8213: 0xA6B8,\n\t9520 - 8213: 0xA6BD,\n\t9521 - 8213: 0xA6D3,\n\t9522 - 8213: 0xA6D4,\n\t9523 - 8213: 0xA6B3,\n\t9524 - 8213: 0xA6AA,\n\t9525 - 8213: 0xA6D5,\n\t9526 - 8213: 0xA6D6,\n\t9527 - 8213: 0xA6BA,\n\t9528 - 8213: 0xA6BF,\n\t9529 - 8213: 0xA6D7,\n\t9530 - 8213: 0xA6D8,\n\t9531 - 8213: 0xA6B5,\n\t9532 - 8213: 0xA6AB,\n\t9533 - 8213: 0xA6D9,\n\t9534 - 8213: 0xA6DA,\n\t9535 - 8213: 0xA6BB,\n\t9536 - 8213: 0xA6DB,\n\t9537 - 8213: 0xA6DC,\n\t9538 - 8213: 0xA6C0,\n\t9539 - 8213: 0xA6DD,\n\t9540 - 8213: 0xA6DE,\n\t9541 - 8213: 0xA6DF,\n\t9542 - 8213: 0xA6E0,\n\t9543 - 8213: 0xA6E1,\n\t9544 - 8213: 0xA6E2,\n\t9545 - 8213: 0xA6E3,\n\t9546 - 8213: 0xA6E4,\n\t9547 - 8213: 0xA6B6,\n\t9618 - 8213: 0xA2C6,\n\t9632 - 8213: 0xA1E1,\n\t9633 - 8213: 0xA1E0,\n\t9635 - 8213: 0xA2C3,\n\t9636 - 8213: 0xA2C7,\n\t9637 - 8213: 0xA2C8,\n\t9638 - 8213: 0xA2CB,\n\t9639 - 8213: 0xA2CA,\n\t9640 - 8213: 0xA2C9,\n\t9641 - 8213: 0xA2CC,\n\t9650 - 8213: 0xA1E3,\n\t9651 - 8213: 0xA1E2,\n\t9654 - 8213: 0xA2BA,\n\t9655 - 8213: 0xA2B9,\n\t9660 - 8213: 0xA1E5,\n\t9661 - 8213: 0xA1E4,\n\t9664 - 8213: 0xA2B8,\n\t9665 - 8213: 0xA2B7,\n\t9670 - 8213: 0xA1DF,\n\t9671 - 8213: 0xA1DE,\n\t9672 - 8213: 0xA2C2,\n\t9675 - 8213: 0xA1DB,\n\t9678 - 8213: 0xA1DD,\n\t9679 - 8213: 0xA1DC,\n\t9680 - 8213: 0xA2C4,\n\t9681 - 8213: 0xA2C5,\n\t9733 - 8213: 0xA1DA,\n\t9734 - 8213: 0xA1D9,\n\t9742 - 8213: 0xA2CF,\n\t9743 - 8213: 0xA2CE,\n\t9756 - 8213: 0xA2D0,\n\t9758 - 8213: 0xA2D1,\n\t9792 - 8213: 0xA1CF,\n\t9794 - 8213: 0xA1CE,\n\t9824 - 8213: 0xA2BC,\n\t9825 - 8213: 0xA2BD,\n\t9827 - 8213: 0xA2C0,\n\t9828 - 8213: 0xA2BB,\n\t9829 - 8213: 0xA2BE,\n\t9831 - 8213: 0xA2BF,\n\t9832 - 8213: 0xA2CD,\n\t9833 - 8213: 0xA2DB,\n\t9834 - 8213: 0xA2DC,\n\t9836 - 8213: 0xA2DD,\n\t9837 - 8213: 0xA2DA,\n}\n\nconst encode3Low, encode3High = 12288, 13278\n\nvar encode3 = [...]uint16{\n\t12288 - 12288: 0xA1A1,\n\t12289 - 12288: 0xA1A2,\n\t12290 - 12288: 0xA1A3,\n\t12291 - 12288: 0xA1A8,\n\t12296 - 12288: 0xA1B4,\n\t12297 - 12288: 0xA1B5,\n\t12298 - 12288: 0xA1B6,\n\t12299 - 12288: 0xA1B7,\n\t12300 - 12288: 0xA1B8,\n\t12301 - 12288: 0xA1B9,\n\t12302 - 12288: 0xA1BA,\n\t12303 - 12288: 0xA1BB,\n\t12304 - 12288: 0xA1BC,\n\t12305 - 12288: 0xA1BD,\n\t12307 - 12288: 0xA1EB,\n\t12308 - 12288: 0xA1B2,\n\t12309 - 12288: 0xA1B3,\n\t12353 - 12288: 0xAAA1,\n\t12354 - 12288: 0xAAA2,\n\t12355 - 12288: 0xAAA3,\n\t12356 - 12288: 0xAAA4,\n\t12357 - 12288: 0xAAA5,\n\t12358 - 12288: 0xAAA6,\n\t12359 - 12288: 0xAAA7,\n\t12360 - 12288: 0xAAA8,\n\t12361 - 12288: 0xAAA9,\n\t12362 - 12288: 0xAAAA,\n\t12363 - 12288: 0xAAAB,\n\t12364 - 12288: 0xAAAC,\n\t12365 - 12288: 0xAAAD,\n\t12366 - 12288: 0xAAAE,\n\t12367 - 12288: 0xAAAF,\n\t12368 - 12288: 0xAAB0,\n\t12369 - 12288: 0xAAB1,\n\t12370 - 12288: 0xAAB2,\n\t12371 - 12288: 0xAAB3,\n\t12372 - 12288: 0xAAB4,\n\t12373 - 12288: 0xAAB5,\n\t12374 - 12288: 0xAAB6,\n\t12375 - 12288: 0xAAB7,\n\t12376 - 12288: 0xAAB8,\n\t12377 - 12288: 0xAAB9,\n\t12378 - 12288: 0xAABA,\n\t12379 - 12288: 0xAABB,\n\t12380 - 12288: 0xAABC,\n\t12381 - 12288: 0xAABD,\n\t12382 - 12288: 0xAABE,\n\t12383 - 12288: 0xAABF,\n\t12384 - 12288: 0xAAC0,\n\t12385 - 12288: 0xAAC1,\n\t12386 - 12288: 0xAAC2,\n\t12387 - 12288: 0xAAC3,\n\t12388 - 12288: 0xAAC4,\n\t12389 - 12288: 0xAAC5,\n\t12390 - 12288: 0xAAC6,\n\t12391 - 12288: 0xAAC7,\n\t12392 - 12288: 0xAAC8,\n\t12393 - 12288: 0xAAC9,\n\t12394 - 12288: 0xAACA,\n\t12395 - 12288: 0xAACB,\n\t12396 - 12288: 0xAACC,\n\t12397 - 12288: 0xAACD,\n\t12398 - 12288: 0xAACE,\n\t12399 - 12288: 0xAACF,\n\t12400 - 12288: 0xAAD0,\n\t12401 - 12288: 0xAAD1,\n\t12402 - 12288: 0xAAD2,\n\t12403 - 12288: 0xAAD3,\n\t12404 - 12288: 0xAAD4,\n\t12405 - 12288: 0xAAD5,\n\t12406 - 12288: 0xAAD6,\n\t12407 - 12288: 0xAAD7,\n\t12408 - 12288: 0xAAD8,\n\t12409 - 12288: 0xAAD9,\n\t12410 - 12288: 0xAADA,\n\t12411 - 12288: 0xAADB,\n\t12412 - 12288: 0xAADC,\n\t12413 - 12288: 0xAADD,\n\t12414 - 12288: 0xAADE,\n\t12415 - 12288: 0xAADF,\n\t12416 - 12288: 0xAAE0,\n\t12417 - 12288: 0xAAE1,\n\t12418 - 12288: 0xAAE2,\n\t12419 - 12288: 0xAAE3,\n\t12420 - 12288: 0xAAE4,\n\t12421 - 12288: 0xAAE5,\n\t12422 - 12288: 0xAAE6,\n\t12423 - 12288: 0xAAE7,\n\t12424 - 12288: 0xAAE8,\n\t12425 - 12288: 0xAAE9,\n\t12426 - 12288: 0xAAEA,\n\t12427 - 12288: 0xAAEB,\n\t12428 - 12288: 0xAAEC,\n\t12429 - 12288: 0xAAED,\n\t12430 - 12288: 0xAAEE,\n\t12431 - 12288: 0xAAEF,\n\t12432 - 12288: 0xAAF0,\n\t12433 - 12288: 0xAAF1,\n\t12434 - 12288: 0xAAF2,\n\t12435 - 12288: 0xAAF3,\n\t12449 - 12288: 0xABA1,\n\t12450 - 12288: 0xABA2,\n\t12451 - 12288: 0xABA3,\n\t12452 - 12288: 0xABA4,\n\t12453 - 12288: 0xABA5,\n\t12454 - 12288: 0xABA6,\n\t12455 - 12288: 0xABA7,\n\t12456 - 12288: 0xABA8,\n\t12457 - 12288: 0xABA9,\n\t12458 - 12288: 0xABAA,\n\t12459 - 12288: 0xABAB,\n\t12460 - 12288: 0xABAC,\n\t12461 - 12288: 0xABAD,\n\t12462 - 12288: 0xABAE,\n\t12463 - 12288: 0xABAF,\n\t12464 - 12288: 0xABB0,\n\t12465 - 12288: 0xABB1,\n\t12466 - 12288: 0xABB2,\n\t12467 - 12288: 0xABB3,\n\t12468 - 12288: 0xABB4,\n\t12469 - 12288: 0xABB5,\n\t12470 - 12288: 0xABB6,\n\t12471 - 12288: 0xABB7,\n\t12472 - 12288: 0xABB8,\n\t12473 - 12288: 0xABB9,\n\t12474 - 12288: 0xABBA,\n\t12475 - 12288: 0xABBB,\n\t12476 - 12288: 0xABBC,\n\t12477 - 12288: 0xABBD,\n\t12478 - 12288: 0xABBE,\n\t12479 - 12288: 0xABBF,\n\t12480 - 12288: 0xABC0,\n\t12481 - 12288: 0xABC1,\n\t12482 - 12288: 0xABC2,\n\t12483 - 12288: 0xABC3,\n\t12484 - 12288: 0xABC4,\n\t12485 - 12288: 0xABC5,\n\t12486 - 12288: 0xABC6,\n\t12487 - 12288: 0xABC7,\n\t12488 - 12288: 0xABC8,\n\t12489 - 12288: 0xABC9,\n\t12490 - 12288: 0xABCA,\n\t12491 - 12288: 0xABCB,\n\t12492 - 12288: 0xABCC,\n\t12493 - 12288: 0xABCD,\n\t12494 - 12288: 0xABCE,\n\t12495 - 12288: 0xABCF,\n\t12496 - 12288: 0xABD0,\n\t12497 - 12288: 0xABD1,\n\t12498 - 12288: 0xABD2,\n\t12499 - 12288: 0xABD3,\n\t12500 - 12288: 0xABD4,\n\t12501 - 12288: 0xABD5,\n\t12502 - 12288: 0xABD6,\n\t12503 - 12288: 0xABD7,\n\t12504 - 12288: 0xABD8,\n\t12505 - 12288: 0xABD9,\n\t12506 - 12288: 0xABDA,\n\t12507 - 12288: 0xABDB,\n\t12508 - 12288: 0xABDC,\n\t12509 - 12288: 0xABDD,\n\t12510 - 12288: 0xABDE,\n\t12511 - 12288: 0xABDF,\n\t12512 - 12288: 0xABE0,\n\t12513 - 12288: 0xABE1,\n\t12514 - 12288: 0xABE2,\n\t12515 - 12288: 0xABE3,\n\t12516 - 12288: 0xABE4,\n\t12517 - 12288: 0xABE5,\n\t12518 - 12288: 0xABE6,\n\t12519 - 12288: 0xABE7,\n\t12520 - 12288: 0xABE8,\n\t12521 - 12288: 0xABE9,\n\t12522 - 12288: 0xABEA,\n\t12523 - 12288: 0xABEB,\n\t12524 - 12288: 0xABEC,\n\t12525 - 12288: 0xABED,\n\t12526 - 12288: 0xABEE,\n\t12527 - 12288: 0xABEF,\n\t12528 - 12288: 0xABF0,\n\t12529 - 12288: 0xABF1,\n\t12530 - 12288: 0xABF2,\n\t12531 - 12288: 0xABF3,\n\t12532 - 12288: 0xABF4,\n\t12533 - 12288: 0xABF5,\n\t12534 - 12288: 0xABF6,\n\t12593 - 12288: 0xA4A1,\n\t12594 - 12288: 0xA4A2,\n\t12595 - 12288: 0xA4A3,\n\t12596 - 12288: 0xA4A4,\n\t12597 - 12288: 0xA4A5,\n\t12598 - 12288: 0xA4A6,\n\t12599 - 12288: 0xA4A7,\n\t12600 - 12288: 0xA4A8,\n\t12601 - 12288: 0xA4A9,\n\t12602 - 12288: 0xA4AA,\n\t12603 - 12288: 0xA4AB,\n\t12604 - 12288: 0xA4AC,\n\t12605 - 12288: 0xA4AD,\n\t12606 - 12288: 0xA4AE,\n\t12607 - 12288: 0xA4AF,\n\t12608 - 12288: 0xA4B0,\n\t12609 - 12288: 0xA4B1,\n\t12610 - 12288: 0xA4B2,\n\t12611 - 12288: 0xA4B3,\n\t12612 - 12288: 0xA4B4,\n\t12613 - 12288: 0xA4B5,\n\t12614 - 12288: 0xA4B6,\n\t12615 - 12288: 0xA4B7,\n\t12616 - 12288: 0xA4B8,\n\t12617 - 12288: 0xA4B9,\n\t12618 - 12288: 0xA4BA,\n\t12619 - 12288: 0xA4BB,\n\t12620 - 12288: 0xA4BC,\n\t12621 - 12288: 0xA4BD,\n\t12622 - 12288: 0xA4BE,\n\t12623 - 12288: 0xA4BF,\n\t12624 - 12288: 0xA4C0,\n\t12625 - 12288: 0xA4C1,\n\t12626 - 12288: 0xA4C2,\n\t12627 - 12288: 0xA4C3,\n\t12628 - 12288: 0xA4C4,\n\t12629 - 12288: 0xA4C5,\n\t12630 - 12288: 0xA4C6,\n\t12631 - 12288: 0xA4C7,\n\t12632 - 12288: 0xA4C8,\n\t12633 - 12288: 0xA4C9,\n\t12634 - 12288: 0xA4CA,\n\t12635 - 12288: 0xA4CB,\n\t12636 - 12288: 0xA4CC,\n\t12637 - 12288: 0xA4CD,\n\t12638 - 12288: 0xA4CE,\n\t12639 - 12288: 0xA4CF,\n\t12640 - 12288: 0xA4D0,\n\t12641 - 12288: 0xA4D1,\n\t12642 - 12288: 0xA4D2,\n\t12643 - 12288: 0xA4D3,\n\t12644 - 12288: 0xA4D4,\n\t12645 - 12288: 0xA4D5,\n\t12646 - 12288: 0xA4D6,\n\t12647 - 12288: 0xA4D7,\n\t12648 - 12288: 0xA4D8,\n\t12649 - 12288: 0xA4D9,\n\t12650 - 12288: 0xA4DA,\n\t12651 - 12288: 0xA4DB,\n\t12652 - 12288: 0xA4DC,\n\t12653 - 12288: 0xA4DD,\n\t12654 - 12288: 0xA4DE,\n\t12655 - 12288: 0xA4DF,\n\t12656 - 12288: 0xA4E0,\n\t12657 - 12288: 0xA4E1,\n\t12658 - 12288: 0xA4E2,\n\t12659 - 12288: 0xA4E3,\n\t12660 - 12288: 0xA4E4,\n\t12661 - 12288: 0xA4E5,\n\t12662 - 12288: 0xA4E6,\n\t12663 - 12288: 0xA4E7,\n\t12664 - 12288: 0xA4E8,\n\t12665 - 12288: 0xA4E9,\n\t12666 - 12288: 0xA4EA,\n\t12667 - 12288: 0xA4EB,\n\t12668 - 12288: 0xA4EC,\n\t12669 - 12288: 0xA4ED,\n\t12670 - 12288: 0xA4EE,\n\t12671 - 12288: 0xA4EF,\n\t12672 - 12288: 0xA4F0,\n\t12673 - 12288: 0xA4F1,\n\t12674 - 12288: 0xA4F2,\n\t12675 - 12288: 0xA4F3,\n\t12676 - 12288: 0xA4F4,\n\t12677 - 12288: 0xA4F5,\n\t12678 - 12288: 0xA4F6,\n\t12679 - 12288: 0xA4F7,\n\t12680 - 12288: 0xA4F8,\n\t12681 - 12288: 0xA4F9,\n\t12682 - 12288: 0xA4FA,\n\t12683 - 12288: 0xA4FB,\n\t12684 - 12288: 0xA4FC,\n\t12685 - 12288: 0xA4FD,\n\t12686 - 12288: 0xA4FE,\n\t12800 - 12288: 0xA9B1,\n\t12801 - 12288: 0xA9B2,\n\t12802 - 12288: 0xA9B3,\n\t12803 - 12288: 0xA9B4,\n\t12804 - 12288: 0xA9B5,\n\t12805 - 12288: 0xA9B6,\n\t12806 - 12288: 0xA9B7,\n\t12807 - 12288: 0xA9B8,\n\t12808 - 12288: 0xA9B9,\n\t12809 - 12288: 0xA9BA,\n\t12810 - 12288: 0xA9BB,\n\t12811 - 12288: 0xA9BC,\n\t12812 - 12288: 0xA9BD,\n\t12813 - 12288: 0xA9BE,\n\t12814 - 12288: 0xA9BF,\n\t12815 - 12288: 0xA9C0,\n\t12816 - 12288: 0xA9C1,\n\t12817 - 12288: 0xA9C2,\n\t12818 - 12288: 0xA9C3,\n\t12819 - 12288: 0xA9C4,\n\t12820 - 12288: 0xA9C5,\n\t12821 - 12288: 0xA9C6,\n\t12822 - 12288: 0xA9C7,\n\t12823 - 12288: 0xA9C8,\n\t12824 - 12288: 0xA9C9,\n\t12825 - 12288: 0xA9CA,\n\t12826 - 12288: 0xA9CB,\n\t12827 - 12288: 0xA9CC,\n\t12828 - 12288: 0xA2DF,\n\t12896 - 12288: 0xA8B1,\n\t12897 - 12288: 0xA8B2,\n\t12898 - 12288: 0xA8B3,\n\t12899 - 12288: 0xA8B4,\n\t12900 - 12288: 0xA8B5,\n\t12901 - 12288: 0xA8B6,\n\t12902 - 12288: 0xA8B7,\n\t12903 - 12288: 0xA8B8,\n\t12904 - 12288: 0xA8B9,\n\t12905 - 12288: 0xA8BA,\n\t12906 - 12288: 0xA8BB,\n\t12907 - 12288: 0xA8BC,\n\t12908 - 12288: 0xA8BD,\n\t12909 - 12288: 0xA8BE,\n\t12910 - 12288: 0xA8BF,\n\t12911 - 12288: 0xA8C0,\n\t12912 - 12288: 0xA8C1,\n\t12913 - 12288: 0xA8C2,\n\t12914 - 12288: 0xA8C3,\n\t12915 - 12288: 0xA8C4,\n\t12916 - 12288: 0xA8C5,\n\t12917 - 12288: 0xA8C6,\n\t12918 - 12288: 0xA8C7,\n\t12919 - 12288: 0xA8C8,\n\t12920 - 12288: 0xA8C9,\n\t12921 - 12288: 0xA8CA,\n\t12922 - 12288: 0xA8CB,\n\t12923 - 12288: 0xA8CC,\n\t12927 - 12288: 0xA2DE,\n\t13184 - 12288: 0xA7C9,\n\t13185 - 12288: 0xA7CA,\n\t13186 - 12288: 0xA7CB,\n\t13187 - 12288: 0xA7CC,\n\t13188 - 12288: 0xA7CD,\n\t13192 - 12288: 0xA7BA,\n\t13193 - 12288: 0xA7BB,\n\t13194 - 12288: 0xA7DC,\n\t13195 - 12288: 0xA7DD,\n\t13196 - 12288: 0xA7DE,\n\t13197 - 12288: 0xA7B6,\n\t13198 - 12288: 0xA7B7,\n\t13199 - 12288: 0xA7B8,\n\t13200 - 12288: 0xA7D4,\n\t13201 - 12288: 0xA7D5,\n\t13202 - 12288: 0xA7D6,\n\t13203 - 12288: 0xA7D7,\n\t13204 - 12288: 0xA7D8,\n\t13205 - 12288: 0xA7A1,\n\t13206 - 12288: 0xA7A2,\n\t13207 - 12288: 0xA7A3,\n\t13208 - 12288: 0xA7A5,\n\t13209 - 12288: 0xA7AB,\n\t13210 - 12288: 0xA7AC,\n\t13211 - 12288: 0xA7AD,\n\t13212 - 12288: 0xA7AE,\n\t13213 - 12288: 0xA7AF,\n\t13214 - 12288: 0xA7B0,\n\t13215 - 12288: 0xA7B1,\n\t13216 - 12288: 0xA7B2,\n\t13217 - 12288: 0xA7B3,\n\t13218 - 12288: 0xA7B4,\n\t13219 - 12288: 0xA7A7,\n\t13220 - 12288: 0xA7A8,\n\t13221 - 12288: 0xA7A9,\n\t13222 - 12288: 0xA7AA,\n\t13223 - 12288: 0xA7BD,\n\t13224 - 12288: 0xA7BE,\n\t13225 - 12288: 0xA7E5,\n\t13226 - 12288: 0xA7E6,\n\t13227 - 12288: 0xA7E7,\n\t13228 - 12288: 0xA7E8,\n\t13229 - 12288: 0xA7E1,\n\t13230 - 12288: 0xA7E2,\n\t13231 - 12288: 0xA7E3,\n\t13232 - 12288: 0xA7BF,\n\t13233 - 12288: 0xA7C0,\n\t13234 - 12288: 0xA7C1,\n\t13235 - 12288: 0xA7C2,\n\t13236 - 12288: 0xA7C3,\n\t13237 - 12288: 0xA7C4,\n\t13238 - 12288: 0xA7C5,\n\t13239 - 12288: 0xA7C6,\n\t13240 - 12288: 0xA7C7,\n\t13241 - 12288: 0xA7C8,\n\t13242 - 12288: 0xA7CE,\n\t13243 - 12288: 0xA7CF,\n\t13244 - 12288: 0xA7D0,\n\t13245 - 12288: 0xA7D1,\n\t13246 - 12288: 0xA7D2,\n\t13247 - 12288: 0xA7D3,\n\t13248 - 12288: 0xA7DA,\n\t13249 - 12288: 0xA7DB,\n\t13250 - 12288: 0xA2E3,\n\t13251 - 12288: 0xA7EC,\n\t13252 - 12288: 0xA7A6,\n\t13253 - 12288: 0xA7E0,\n\t13254 - 12288: 0xA7EF,\n\t13255 - 12288: 0xA2E1,\n\t13256 - 12288: 0xA7BC,\n\t13257 - 12288: 0xA7ED,\n\t13258 - 12288: 0xA7B5,\n\t13263 - 12288: 0xA7B9,\n\t13264 - 12288: 0xA7EA,\n\t13267 - 12288: 0xA7EB,\n\t13270 - 12288: 0xA7DF,\n\t13272 - 12288: 0xA2E4,\n\t13275 - 12288: 0xA7E4,\n\t13276 - 12288: 0xA7EE,\n\t13277 - 12288: 0xA7E9,\n}\n\nconst encode4Low, encode4High = 161, 1106\n\nvar encode4 = [...]uint16{\n\t161 - 161:  0xA2AE,\n\t164 - 161:  0xA2B4,\n\t167 - 161:  0xA1D7,\n\t168 - 161:  0xA1A7,\n\t170 - 161:  0xA8A3,\n\t173 - 161:  0xA1A9,\n\t174 - 161:  0xA2E7,\n\t176 - 161:  0xA1C6,\n\t177 - 161:  0xA1BE,\n\t178 - 161:  0xA9F7,\n\t179 - 161:  0xA9F8,\n\t180 - 161:  0xA2A5,\n\t182 - 161:  0xA2D2,\n\t183 - 161:  0xA1A4,\n\t184 - 161:  0xA2AC,\n\t185 - 161:  0xA9F6,\n\t186 - 161:  0xA8AC,\n\t188 - 161:  0xA8F9,\n\t189 - 161:  0xA8F6,\n\t190 - 161:  0xA8FA,\n\t191 - 161:  0xA2AF,\n\t198 - 161:  0xA8A1,\n\t208 - 161:  0xA8A2,\n\t215 - 161:  0xA1BF,\n\t216 - 161:  0xA8AA,\n\t222 - 161:  0xA8AD,\n\t223 - 161:  0xA9AC,\n\t230 - 161:  0xA9A1,\n\t240 - 161:  0xA9A3,\n\t247 - 161:  0xA1C0,\n\t248 - 161:  0xA9AA,\n\t254 - 161:  0xA9AD,\n\t273 - 161:  0xA9A2,\n\t294 - 161:  0xA8A4,\n\t295 - 161:  0xA9A4,\n\t305 - 161:  0xA9A5,\n\t306 - 161:  0xA8A6,\n\t307 - 161:  0xA9A6,\n\t312 - 161:  0xA9A7,\n\t319 - 161:  0xA8A8,\n\t320 - 161:  0xA9A8,\n\t321 - 161:  0xA8A9,\n\t322 - 161:  0xA9A9,\n\t329 - 161:  0xA9B0,\n\t330 - 161:  0xA8AF,\n\t331 - 161:  0xA9AF,\n\t338 - 161:  0xA8AB,\n\t339 - 161:  0xA9AB,\n\t358 - 161:  0xA8AE,\n\t359 - 161:  0xA9AE,\n\t711 - 161:  0xA2A7,\n\t720 - 161:  0xA2B0,\n\t728 - 161:  0xA2A8,\n\t729 - 161:  0xA2AB,\n\t730 - 161:  0xA2AA,\n\t731 - 161:  0xA2AD,\n\t733 - 161:  0xA2A9,\n\t913 - 161:  0xA5C1,\n\t914 - 161:  0xA5C2,\n\t915 - 161:  0xA5C3,\n\t916 - 161:  0xA5C4,\n\t917 - 161:  0xA5C5,\n\t918 - 161:  0xA5C6,\n\t919 - 161:  0xA5C7,\n\t920 - 161:  0xA5C8,\n\t921 - 161:  0xA5C9,\n\t922 - 161:  0xA5CA,\n\t923 - 161:  0xA5CB,\n\t924 - 161:  0xA5CC,\n\t925 - 161:  0xA5CD,\n\t926 - 161:  0xA5CE,\n\t927 - 161:  0xA5CF,\n\t928 - 161:  0xA5D0,\n\t929 - 161:  0xA5D1,\n\t931 - 161:  0xA5D2,\n\t932 - 161:  0xA5D3,\n\t933 - 161:  0xA5D4,\n\t934 - 161:  0xA5D5,\n\t935 - 161:  0xA5D6,\n\t936 - 161:  0xA5D7,\n\t937 - 161:  0xA5D8,\n\t945 - 161:  0xA5E1,\n\t946 - 161:  0xA5E2,\n\t947 - 161:  0xA5E3,\n\t948 - 161:  0xA5E4,\n\t949 - 161:  0xA5E5,\n\t950 - 161:  0xA5E6,\n\t951 - 161:  0xA5E7,\n\t952 - 161:  0xA5E8,\n\t953 - 161:  0xA5E9,\n\t954 - 161:  0xA5EA,\n\t955 - 161:  0xA5EB,\n\t956 - 161:  0xA5EC,\n\t957 - 161:  0xA5ED,\n\t958 - 161:  0xA5EE,\n\t959 - 161:  0xA5EF,\n\t960 - 161:  0xA5F0,\n\t961 - 161:  0xA5F1,\n\t963 - 161:  0xA5F2,\n\t964 - 161:  0xA5F3,\n\t965 - 161:  0xA5F4,\n\t966 - 161:  0xA5F5,\n\t967 - 161:  0xA5F6,\n\t968 - 161:  0xA5F7,\n\t969 - 161:  0xA5F8,\n\t1025 - 161: 0xACA7,\n\t1040 - 161: 0xACA1,\n\t1041 - 161: 0xACA2,\n\t1042 - 161: 0xACA3,\n\t1043 - 161: 0xACA4,\n\t1044 - 161: 0xACA5,\n\t1045 - 161: 0xACA6,\n\t1046 - 161: 0xACA8,\n\t1047 - 161: 0xACA9,\n\t1048 - 161: 0xACAA,\n\t1049 - 161: 0xACAB,\n\t1050 - 161: 0xACAC,\n\t1051 - 161: 0xACAD,\n\t1052 - 161: 0xACAE,\n\t1053 - 161: 0xACAF,\n\t1054 - 161: 0xACB0,\n\t1055 - 161: 0xACB1,\n\t1056 - 161: 0xACB2,\n\t1057 - 161: 0xACB3,\n\t1058 - 161: 0xACB4,\n\t1059 - 161: 0xACB5,\n\t1060 - 161: 0xACB6,\n\t1061 - 161: 0xACB7,\n\t1062 - 161: 0xACB8,\n\t1063 - 161: 0xACB9,\n\t1064 - 161: 0xACBA,\n\t1065 - 161: 0xACBB,\n\t1066 - 161: 0xACBC,\n\t1067 - 161: 0xACBD,\n\t1068 - 161: 0xACBE,\n\t1069 - 161: 0xACBF,\n\t1070 - 161: 0xACC0,\n\t1071 - 161: 0xACC1,\n\t1072 - 161: 0xACD1,\n\t1073 - 161: 0xACD2,\n\t1074 - 161: 0xACD3,\n\t1075 - 161: 0xACD4,\n\t1076 - 161: 0xACD5,\n\t1077 - 161: 0xACD6,\n\t1078 - 161: 0xACD8,\n\t1079 - 161: 0xACD9,\n\t1080 - 161: 0xACDA,\n\t1081 - 161: 0xACDB,\n\t1082 - 161: 0xACDC,\n\t1083 - 161: 0xACDD,\n\t1084 - 161: 0xACDE,\n\t1085 - 161: 0xACDF,\n\t1086 - 161: 0xACE0,\n\t1087 - 161: 0xACE1,\n\t1088 - 161: 0xACE2,\n\t1089 - 161: 0xACE3,\n\t1090 - 161: 0xACE4,\n\t1091 - 161: 0xACE5,\n\t1092 - 161: 0xACE6,\n\t1093 - 161: 0xACE7,\n\t1094 - 161: 0xACE8,\n\t1095 - 161: 0xACE9,\n\t1096 - 161: 0xACEA,\n\t1097 - 161: 0xACEB,\n\t1098 - 161: 0xACEC,\n\t1099 - 161: 0xACED,\n\t1100 - 161: 0xACEE,\n\t1101 - 161: 0xACEF,\n\t1102 - 161: 0xACF0,\n\t1103 - 161: 0xACF1,\n\t1105 - 161: 0xACD7,\n}\n\nconst encode5Low, encode5High = 63744, 64012\n\nvar encode5 = [...]uint16{\n\t63744 - 63744: 0xCBD0,\n\t63745 - 63744: 0xCBD6,\n\t63746 - 63744: 0xCBE7,\n\t63747 - 63744: 0xCDCF,\n\t63748 - 63744: 0xCDE8,\n\t63749 - 63744: 0xCEAD,\n\t63750 - 63744: 0xCFFB,\n\t63751 - 63744: 0xD0A2,\n\t63752 - 63744: 0xD0B8,\n\t63753 - 63744: 0xD0D0,\n\t63754 - 63744: 0xD0DD,\n\t63755 - 63744: 0xD1D4,\n\t63756 - 63744: 0xD1D5,\n\t63757 - 63744: 0xD1D8,\n\t63758 - 63744: 0xD1DB,\n\t63759 - 63744: 0xD1DC,\n\t63760 - 63744: 0xD1DD,\n\t63761 - 63744: 0xD1DE,\n\t63762 - 63744: 0xD1DF,\n\t63763 - 63744: 0xD1E0,\n\t63764 - 63744: 0xD1E2,\n\t63765 - 63744: 0xD1E3,\n\t63766 - 63744: 0xD1E4,\n\t63767 - 63744: 0xD1E5,\n\t63768 - 63744: 0xD1E6,\n\t63769 - 63744: 0xD1E8,\n\t63770 - 63744: 0xD1E9,\n\t63771 - 63744: 0xD1EA,\n\t63772 - 63744: 0xD1EB,\n\t63773 - 63744: 0xD1ED,\n\t63774 - 63744: 0xD1EF,\n\t63775 - 63744: 0xD1F0,\n\t63776 - 63744: 0xD1F2,\n\t63777 - 63744: 0xD1F6,\n\t63778 - 63744: 0xD1FA,\n\t63779 - 63744: 0xD1FC,\n\t63780 - 63744: 0xD1FD,\n\t63781 - 63744: 0xD1FE,\n\t63782 - 63744: 0xD2A2,\n\t63783 - 63744: 0xD2A3,\n\t63784 - 63744: 0xD2A7,\n\t63785 - 63744: 0xD2A8,\n\t63786 - 63744: 0xD2A9,\n\t63787 - 63744: 0xD2AA,\n\t63788 - 63744: 0xD2AB,\n\t63789 - 63744: 0xD2AD,\n\t63790 - 63744: 0xD2B2,\n\t63791 - 63744: 0xD2BE,\n\t63792 - 63744: 0xD2C2,\n\t63793 - 63744: 0xD2C3,\n\t63794 - 63744: 0xD2C4,\n\t63795 - 63744: 0xD2C6,\n\t63796 - 63744: 0xD2C7,\n\t63797 - 63744: 0xD2C8,\n\t63798 - 63744: 0xD2C9,\n\t63799 - 63744: 0xD2CA,\n\t63800 - 63744: 0xD2CB,\n\t63801 - 63744: 0xD2CD,\n\t63802 - 63744: 0xD2CE,\n\t63803 - 63744: 0xD2CF,\n\t63804 - 63744: 0xD2D0,\n\t63805 - 63744: 0xD2D1,\n\t63806 - 63744: 0xD2D2,\n\t63807 - 63744: 0xD2D3,\n\t63808 - 63744: 0xD2D4,\n\t63809 - 63744: 0xD2D5,\n\t63810 - 63744: 0xD2D6,\n\t63811 - 63744: 0xD2D7,\n\t63812 - 63744: 0xD2D9,\n\t63813 - 63744: 0xD2DA,\n\t63814 - 63744: 0xD2DE,\n\t63815 - 63744: 0xD2DF,\n\t63816 - 63744: 0xD2E1,\n\t63817 - 63744: 0xD2E2,\n\t63818 - 63744: 0xD2E4,\n\t63819 - 63744: 0xD2E5,\n\t63820 - 63744: 0xD2E6,\n\t63821 - 63744: 0xD2E7,\n\t63822 - 63744: 0xD2E8,\n\t63823 - 63744: 0xD2E9,\n\t63824 - 63744: 0xD2EA,\n\t63825 - 63744: 0xD2EB,\n\t63826 - 63744: 0xD2F0,\n\t63827 - 63744: 0xD2F1,\n\t63828 - 63744: 0xD2F2,\n\t63829 - 63744: 0xD2F3,\n\t63830 - 63744: 0xD2F4,\n\t63831 - 63744: 0xD2F5,\n\t63832 - 63744: 0xD2F7,\n\t63833 - 63744: 0xD2F8,\n\t63834 - 63744: 0xD4E6,\n\t63835 - 63744: 0xD4FC,\n\t63836 - 63744: 0xD5A5,\n\t63837 - 63744: 0xD5AB,\n\t63838 - 63744: 0xD5AE,\n\t63839 - 63744: 0xD6B8,\n\t63840 - 63744: 0xD6CD,\n\t63841 - 63744: 0xD7CB,\n\t63842 - 63744: 0xD7E4,\n\t63843 - 63744: 0xDBC5,\n\t63844 - 63744: 0xDBE4,\n\t63845 - 63744: 0xDCA5,\n\t63846 - 63744: 0xDDA5,\n\t63847 - 63744: 0xDDD5,\n\t63848 - 63744: 0xDDF4,\n\t63849 - 63744: 0xDEFC,\n\t63850 - 63744: 0xDEFE,\n\t63851 - 63744: 0xDFB3,\n\t63852 - 63744: 0xDFE1,\n\t63853 - 63744: 0xDFE8,\n\t63854 - 63744: 0xE0F1,\n\t63855 - 63744: 0xE1AD,\n\t63856 - 63744: 0xE1ED,\n\t63857 - 63744: 0xE3F5,\n\t63858 - 63744: 0xE4A1,\n\t63859 - 63744: 0xE4A9,\n\t63860 - 63744: 0xE5AE,\n\t63861 - 63744: 0xE5B1,\n\t63862 - 63744: 0xE5B2,\n\t63863 - 63744: 0xE5B9,\n\t63864 - 63744: 0xE5BB,\n\t63865 - 63744: 0xE5BC,\n\t63866 - 63744: 0xE5C4,\n\t63867 - 63744: 0xE5CE,\n\t63868 - 63744: 0xE5D0,\n\t63869 - 63744: 0xE5D2,\n\t63870 - 63744: 0xE5D6,\n\t63871 - 63744: 0xE5FA,\n\t63872 - 63744: 0xE5FB,\n\t63873 - 63744: 0xE5FC,\n\t63874 - 63744: 0xE5FE,\n\t63875 - 63744: 0xE6A1,\n\t63876 - 63744: 0xE6A4,\n\t63877 - 63744: 0xE6A7,\n\t63878 - 63744: 0xE6AD,\n\t63879 - 63744: 0xE6AF,\n\t63880 - 63744: 0xE6B0,\n\t63881 - 63744: 0xE6B1,\n\t63882 - 63744: 0xE6B3,\n\t63883 - 63744: 0xE6B7,\n\t63884 - 63744: 0xE6B8,\n\t63885 - 63744: 0xE6BC,\n\t63886 - 63744: 0xE6C4,\n\t63887 - 63744: 0xE6C6,\n\t63888 - 63744: 0xE6C7,\n\t63889 - 63744: 0xE6CA,\n\t63890 - 63744: 0xE6D2,\n\t63891 - 63744: 0xE6D6,\n\t63892 - 63744: 0xE6D9,\n\t63893 - 63744: 0xE6DC,\n\t63894 - 63744: 0xE6DF,\n\t63895 - 63744: 0xE6E1,\n\t63896 - 63744: 0xE6E4,\n\t63897 - 63744: 0xE6E5,\n\t63898 - 63744: 0xE6E6,\n\t63899 - 63744: 0xE6E8,\n\t63900 - 63744: 0xE6EA,\n\t63901 - 63744: 0xE6EB,\n\t63902 - 63744: 0xE6EC,\n\t63903 - 63744: 0xE6EF,\n\t63904 - 63744: 0xE6F1,\n\t63905 - 63744: 0xE6F2,\n\t63906 - 63744: 0xE6F5,\n\t63907 - 63744: 0xE6F6,\n\t63908 - 63744: 0xE6F7,\n\t63909 - 63744: 0xE6F9,\n\t63910 - 63744: 0xE7A1,\n\t63911 - 63744: 0xE7A6,\n\t63912 - 63744: 0xE7A9,\n\t63913 - 63744: 0xE7AA,\n\t63914 - 63744: 0xE7AC,\n\t63915 - 63744: 0xE7AD,\n\t63916 - 63744: 0xE7B0,\n\t63917 - 63744: 0xE7BF,\n\t63918 - 63744: 0xE7C1,\n\t63919 - 63744: 0xE7C6,\n\t63920 - 63744: 0xE7C7,\n\t63921 - 63744: 0xE7CB,\n\t63922 - 63744: 0xE7CD,\n\t63923 - 63744: 0xE7CF,\n\t63924 - 63744: 0xE7D0,\n\t63925 - 63744: 0xE7D3,\n\t63926 - 63744: 0xE7DF,\n\t63927 - 63744: 0xE7E4,\n\t63928 - 63744: 0xE7E6,\n\t63929 - 63744: 0xE7F7,\n\t63930 - 63744: 0xE8E7,\n\t63931 - 63744: 0xE8E8,\n\t63932 - 63744: 0xE8F0,\n\t63933 - 63744: 0xE8F1,\n\t63934 - 63744: 0xE8F7,\n\t63935 - 63744: 0xE8F9,\n\t63936 - 63744: 0xE8FB,\n\t63937 - 63744: 0xE8FE,\n\t63938 - 63744: 0xE9A7,\n\t63939 - 63744: 0xE9AC,\n\t63940 - 63744: 0xE9CC,\n\t63941 - 63744: 0xE9F7,\n\t63942 - 63744: 0xEAC1,\n\t63943 - 63744: 0xEAE5,\n\t63944 - 63744: 0xEAF4,\n\t63945 - 63744: 0xEAF7,\n\t63946 - 63744: 0xEAFC,\n\t63947 - 63744: 0xEAFE,\n\t63948 - 63744: 0xEBA4,\n\t63949 - 63744: 0xEBA7,\n\t63950 - 63744: 0xEBA9,\n\t63951 - 63744: 0xEBAA,\n\t63952 - 63744: 0xEBBA,\n\t63953 - 63744: 0xEBBB,\n\t63954 - 63744: 0xEBBD,\n\t63955 - 63744: 0xEBC1,\n\t63956 - 63744: 0xEBC2,\n\t63957 - 63744: 0xEBC6,\n\t63958 - 63744: 0xEBC7,\n\t63959 - 63744: 0xEBCC,\n\t63960 - 63744: 0xEBCF,\n\t63961 - 63744: 0xEBD0,\n\t63962 - 63744: 0xEBD1,\n\t63963 - 63744: 0xEBD2,\n\t63964 - 63744: 0xEBD8,\n\t63965 - 63744: 0xECA6,\n\t63966 - 63744: 0xECA7,\n\t63967 - 63744: 0xECAA,\n\t63968 - 63744: 0xECAF,\n\t63969 - 63744: 0xECB0,\n\t63970 - 63744: 0xECB1,\n\t63971 - 63744: 0xECB2,\n\t63972 - 63744: 0xECB5,\n\t63973 - 63744: 0xECB8,\n\t63974 - 63744: 0xECBA,\n\t63975 - 63744: 0xECC0,\n\t63976 - 63744: 0xECC1,\n\t63977 - 63744: 0xECC5,\n\t63978 - 63744: 0xECC6,\n\t63979 - 63744: 0xECC9,\n\t63980 - 63744: 0xECCA,\n\t63981 - 63744: 0xECD5,\n\t63982 - 63744: 0xECDD,\n\t63983 - 63744: 0xECDE,\n\t63984 - 63744: 0xECE1,\n\t63985 - 63744: 0xECE4,\n\t63986 - 63744: 0xECE7,\n\t63987 - 63744: 0xECE8,\n\t63988 - 63744: 0xECF7,\n\t63989 - 63744: 0xECF8,\n\t63990 - 63744: 0xECFA,\n\t63991 - 63744: 0xEDA1,\n\t63992 - 63744: 0xEDA2,\n\t63993 - 63744: 0xEDA3,\n\t63994 - 63744: 0xEDEE,\n\t63995 - 63744: 0xEEDB,\n\t63996 - 63744: 0xF2BD,\n\t63997 - 63744: 0xF2FA,\n\t63998 - 63744: 0xF3B1,\n\t63999 - 63744: 0xF4A7,\n\t64000 - 63744: 0xF4EE,\n\t64001 - 63744: 0xF6F4,\n\t64002 - 63744: 0xF6F6,\n\t64003 - 63744: 0xF7B8,\n\t64004 - 63744: 0xF7C8,\n\t64005 - 63744: 0xF7D3,\n\t64006 - 63744: 0xF8DB,\n\t64007 - 63744: 0xF8F0,\n\t64008 - 63744: 0xFAA1,\n\t64009 - 63744: 0xFAA2,\n\t64010 - 63744: 0xFAE6,\n\t64011 - 63744: 0xFCA9,\n}\n\nconst encode6Low, encode6High = 65281, 65511\n\nvar encode6 = [...]uint16{\n\t65281 - 65281: 0xA3A1,\n\t65282 - 65281: 0xA3A2,\n\t65283 - 65281: 0xA3A3,\n\t65284 - 65281: 0xA3A4,\n\t65285 - 65281: 0xA3A5,\n\t65286 - 65281: 0xA3A6,\n\t65287 - 65281: 0xA3A7,\n\t65288 - 65281: 0xA3A8,\n\t65289 - 65281: 0xA3A9,\n\t65290 - 65281: 0xA3AA,\n\t65291 - 65281: 0xA3AB,\n\t65292 - 65281: 0xA3AC,\n\t65293 - 65281: 0xA3AD,\n\t65294 - 65281: 0xA3AE,\n\t65295 - 65281: 0xA3AF,\n\t65296 - 65281: 0xA3B0,\n\t65297 - 65281: 0xA3B1,\n\t65298 - 65281: 0xA3B2,\n\t65299 - 65281: 0xA3B3,\n\t65300 - 65281: 0xA3B4,\n\t65301 - 65281: 0xA3B5,\n\t65302 - 65281: 0xA3B6,\n\t65303 - 65281: 0xA3B7,\n\t65304 - 65281: 0xA3B8,\n\t65305 - 65281: 0xA3B9,\n\t65306 - 65281: 0xA3BA,\n\t65307 - 65281: 0xA3BB,\n\t65308 - 65281: 0xA3BC,\n\t65309 - 65281: 0xA3BD,\n\t65310 - 65281: 0xA3BE,\n\t65311 - 65281: 0xA3BF,\n\t65312 - 65281: 0xA3C0,\n\t65313 - 65281: 0xA3C1,\n\t65314 - 65281: 0xA3C2,\n\t65315 - 65281: 0xA3C3,\n\t65316 - 65281: 0xA3C4,\n\t65317 - 65281: 0xA3C5,\n\t65318 - 65281: 0xA3C6,\n\t65319 - 65281: 0xA3C7,\n\t65320 - 65281: 0xA3C8,\n\t65321 - 65281: 0xA3C9,\n\t65322 - 65281: 0xA3CA,\n\t65323 - 65281: 0xA3CB,\n\t65324 - 65281: 0xA3CC,\n\t65325 - 65281: 0xA3CD,\n\t65326 - 65281: 0xA3CE,\n\t65327 - 65281: 0xA3CF,\n\t65328 - 65281: 0xA3D0,\n\t65329 - 65281: 0xA3D1,\n\t65330 - 65281: 0xA3D2,\n\t65331 - 65281: 0xA3D3,\n\t65332 - 65281: 0xA3D4,\n\t65333 - 65281: 0xA3D5,\n\t65334 - 65281: 0xA3D6,\n\t65335 - 65281: 0xA3D7,\n\t65336 - 65281: 0xA3D8,\n\t65337 - 65281: 0xA3D9,\n\t65338 - 65281: 0xA3DA,\n\t65339 - 65281: 0xA3DB,\n\t65340 - 65281: 0xA1AC,\n\t65341 - 65281: 0xA3DD,\n\t65342 - 65281: 0xA3DE,\n\t65343 - 65281: 0xA3DF,\n\t65344 - 65281: 0xA3E0,\n\t65345 - 65281: 0xA3E1,\n\t65346 - 65281: 0xA3E2,\n\t65347 - 65281: 0xA3E3,\n\t65348 - 65281: 0xA3E4,\n\t65349 - 65281: 0xA3E5,\n\t65350 - 65281: 0xA3E6,\n\t65351 - 65281: 0xA3E7,\n\t65352 - 65281: 0xA3E8,\n\t65353 - 65281: 0xA3E9,\n\t65354 - 65281: 0xA3EA,\n\t65355 - 65281: 0xA3EB,\n\t65356 - 65281: 0xA3EC,\n\t65357 - 65281: 0xA3ED,\n\t65358 - 65281: 0xA3EE,\n\t65359 - 65281: 0xA3EF,\n\t65360 - 65281: 0xA3F0,\n\t65361 - 65281: 0xA3F1,\n\t65362 - 65281: 0xA3F2,\n\t65363 - 65281: 0xA3F3,\n\t65364 - 65281: 0xA3F4,\n\t65365 - 65281: 0xA3F5,\n\t65366 - 65281: 0xA3F6,\n\t65367 - 65281: 0xA3F7,\n\t65368 - 65281: 0xA3F8,\n\t65369 - 65281: 0xA3F9,\n\t65370 - 65281: 0xA3FA,\n\t65371 - 65281: 0xA3FB,\n\t65372 - 65281: 0xA3FC,\n\t65373 - 65281: 0xA3FD,\n\t65374 - 65281: 0xA2A6,\n\t65504 - 65281: 0xA1CB,\n\t65505 - 65281: 0xA1CC,\n\t65506 - 65281: 0xA1FE,\n\t65507 - 65281: 0xA3FE,\n\t65509 - 65281: 0xA1CD,\n\t65510 - 65281: 0xA3DC,\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/simplifiedchinese/all.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage simplifiedchinese\n\nimport (\n\t\"golang.org/x/text/encoding\"\n)\n\n// All is a list of all defined encodings in this package.\nvar All = []encoding.Encoding{GB18030, GBK, HZGB2312}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage simplifiedchinese\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\nvar (\n\t// GB18030 is the GB18030 encoding.\n\tGB18030 encoding.Encoding = &gbk18030\n\t// GBK is the GBK encoding. It encodes an extension of the GB2312 character set\n\t// and is also known as Code Page 936.\n\tGBK encoding.Encoding = &gbk\n)\n\nvar gbk = internal.Encoding{\n\t&internal.SimpleEncoding{\n\t\tgbkDecoder{gb18030: false},\n\t\tgbkEncoder{gb18030: false},\n\t},\n\t\"GBK\",\n\tidentifier.GBK,\n}\n\nvar gbk18030 = internal.Encoding{\n\t&internal.SimpleEncoding{\n\t\tgbkDecoder{gb18030: true},\n\t\tgbkEncoder{gb18030: true},\n\t},\n\t\"GB18030\",\n\tidentifier.GB18030,\n}\n\ntype gbkDecoder struct {\n\ttransform.NopResetter\n\tgb18030 bool\n}\n\nfunc (d gbkDecoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\nloop:\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tswitch c0 := src[nSrc]; {\n\t\tcase c0 < utf8.RuneSelf:\n\t\t\tr, size = rune(c0), 1\n\n\t\t// Microsoft's Code Page 936 extends GBK 1.0 to encode the euro sign U+20AC\n\t\t// as 0x80. The HTML5 specification at http://encoding.spec.whatwg.org/#gbk\n\t\t// says to treat \"gbk\" as Code Page 936.\n\t\tcase c0 == 0x80:\n\t\t\tr, size = '€', 1\n\n\t\tcase c0 < 0xff:\n\t\t\tif nSrc+1 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tc1 := src[nSrc+1]\n\t\t\tswitch {\n\t\t\tcase 0x40 <= c1 && c1 < 0x7f:\n\t\t\t\tc1 -= 0x40\n\t\t\tcase 0x80 <= c1 && c1 < 0xff:\n\t\t\t\tc1 -= 0x41\n\t\t\tcase d.gb18030 && 0x30 <= c1 && c1 < 0x40:\n\t\t\t\tif nSrc+3 >= len(src) {\n\t\t\t\t\tif !atEOF {\n\t\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\t\tbreak loop\n\t\t\t\t\t}\n\t\t\t\t\t// The second byte here is always ASCII, so we can set size\n\t\t\t\t\t// to 1 in all cases.\n\t\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\t\tgoto write\n\t\t\t\t}\n\t\t\t\tc2 := src[nSrc+2]\n\t\t\t\tif c2 < 0x81 || 0xff <= c2 {\n\t\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\t\tgoto write\n\t\t\t\t}\n\t\t\t\tc3 := src[nSrc+3]\n\t\t\t\tif c3 < 0x30 || 0x3a <= c3 {\n\t\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\t\tgoto write\n\t\t\t\t}\n\t\t\t\tsize = 4\n\t\t\t\tr = ((rune(c0-0x81)*10+rune(c1-0x30))*126+rune(c2-0x81))*10 + rune(c3-0x30)\n\t\t\t\tif r < 39420 {\n\t\t\t\t\ti, j := 0, len(gb18030)\n\t\t\t\t\tfor i < j {\n\t\t\t\t\t\th := i + (j-i)/2\n\t\t\t\t\t\tif r >= rune(gb18030[h][0]) {\n\t\t\t\t\t\t\ti = h + 1\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tj = h\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdec := &gb18030[i-1]\n\t\t\t\t\tr += rune(dec[1]) - rune(dec[0])\n\t\t\t\t\tgoto write\n\t\t\t\t}\n\t\t\t\tr -= 189000\n\t\t\t\tif 0 <= r && r < 0x100000 {\n\t\t\t\t\tr += 0x10000\n\t\t\t\t} else {\n\t\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\t}\n\t\t\t\tgoto write\n\t\t\tdefault:\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tr, size = '\\ufffd', 2\n\t\t\tif i := int(c0-0x81)*190 + int(c1); i < len(decode) {\n\t\t\t\tr = rune(decode[i])\n\t\t\t\tif r == 0 {\n\t\t\t\t\tr = '\\ufffd'\n\t\t\t\t}\n\t\t\t}\n\n\t\tdefault:\n\t\t\tr, size = utf8.RuneError, 1\n\t\t}\n\n\twrite:\n\t\tif nDst+utf8.RuneLen(r) > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak loop\n\t\t}\n\t\tnDst += utf8.EncodeRune(dst[nDst:], r)\n\t}\n\treturn nDst, nSrc, err\n}\n\ntype gbkEncoder struct {\n\ttransform.NopResetter\n\tgb18030 bool\n}\n\nfunc (e gbkEncoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, r2, size := rune(0), rune(0), 0\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tsize = 1\n\n\t\t} else {\n\t\t\t// Decode a multi-byte rune.\n\t\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\t\tif size == 1 {\n\t\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t\t// full character yet.\n\t\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// func init checks that the switch covers all tables.\n\t\t\tswitch {\n\t\t\tcase encode0Low <= r && r < encode0High:\n\t\t\t\tif r2 = rune(encode0[r-encode0Low]); r2 != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode1Low <= r && r < encode1High:\n\t\t\t\t// Microsoft's Code Page 936 extends GBK 1.0 to encode the euro sign U+20AC\n\t\t\t\t// as 0x80. The HTML5 specification at http://encoding.spec.whatwg.org/#gbk\n\t\t\t\t// says to treat \"gbk\" as Code Page 936.\n\t\t\t\tif r == '€' {\n\t\t\t\t\tr = 0x80\n\t\t\t\t\tgoto write1\n\t\t\t\t}\n\t\t\t\tif r2 = rune(encode1[r-encode1Low]); r2 != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode2Low <= r && r < encode2High:\n\t\t\t\tif r2 = rune(encode2[r-encode2Low]); r2 != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode3Low <= r && r < encode3High:\n\t\t\t\tif r2 = rune(encode3[r-encode3Low]); r2 != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode4Low <= r && r < encode4High:\n\t\t\t\tif r2 = rune(encode4[r-encode4Low]); r2 != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif e.gb18030 {\n\t\t\t\tif r < 0x10000 {\n\t\t\t\t\ti, j := 0, len(gb18030)\n\t\t\t\t\tfor i < j {\n\t\t\t\t\t\th := i + (j-i)/2\n\t\t\t\t\t\tif r >= rune(gb18030[h][1]) {\n\t\t\t\t\t\t\ti = h + 1\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tj = h\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdec := &gb18030[i-1]\n\t\t\t\t\tr += rune(dec[0]) - rune(dec[1])\n\t\t\t\t\tgoto write4\n\t\t\t\t} else if r < 0x110000 {\n\t\t\t\t\tr += 189000 - 0x10000\n\t\t\t\t\tgoto write4\n\t\t\t\t}\n\t\t\t}\n\t\t\terr = internal.ErrASCIIReplacement\n\t\t\tbreak\n\t\t}\n\n\twrite1:\n\t\tif nDst >= len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst] = uint8(r)\n\t\tnDst++\n\t\tcontinue\n\n\twrite2:\n\t\tif nDst+2 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst+0] = uint8(r2 >> 8)\n\t\tdst[nDst+1] = uint8(r2)\n\t\tnDst += 2\n\t\tcontinue\n\n\twrite4:\n\t\tif nDst+4 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst+3] = uint8(r%10 + 0x30)\n\t\tr /= 10\n\t\tdst[nDst+2] = uint8(r%126 + 0x81)\n\t\tr /= 126\n\t\tdst[nDst+1] = uint8(r%10 + 0x30)\n\t\tr /= 10\n\t\tdst[nDst+0] = uint8(r + 0x81)\n\t\tnDst += 4\n\t\tcontinue\n\t}\n\treturn nDst, nSrc, err\n}\n\nfunc init() {\n\t// Check that the hard-coded encode switch covers all tables.\n\tif numEncodeTables != 5 {\n\t\tpanic(\"bad numEncodeTables\")\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage simplifiedchinese\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\n// HZGB2312 is the HZ-GB2312 encoding.\nvar HZGB2312 encoding.Encoding = &hzGB2312\n\nvar hzGB2312 = internal.Encoding{\n\tinternal.FuncEncoding{hzGB2312NewDecoder, hzGB2312NewEncoder},\n\t\"HZ-GB2312\",\n\tidentifier.HZGB2312,\n}\n\nfunc hzGB2312NewDecoder() transform.Transformer {\n\treturn new(hzGB2312Decoder)\n}\n\nfunc hzGB2312NewEncoder() transform.Transformer {\n\treturn new(hzGB2312Encoder)\n}\n\nconst (\n\tasciiState = iota\n\tgbState\n)\n\ntype hzGB2312Decoder int\n\nfunc (d *hzGB2312Decoder) Reset() {\n\t*d = asciiState\n}\n\nfunc (d *hzGB2312Decoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\nloop:\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tc0 := src[nSrc]\n\t\tif c0 >= utf8.RuneSelf {\n\t\t\tr, size = utf8.RuneError, 1\n\t\t\tgoto write\n\t\t}\n\n\t\tif c0 == '~' {\n\t\t\tif nSrc+1 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr = utf8.RuneError\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tsize = 2\n\t\t\tswitch src[nSrc+1] {\n\t\t\tcase '{':\n\t\t\t\t*d = gbState\n\t\t\t\tcontinue\n\t\t\tcase '}':\n\t\t\t\t*d = asciiState\n\t\t\t\tcontinue\n\t\t\tcase '~':\n\t\t\t\tif nDst >= len(dst) {\n\t\t\t\t\terr = transform.ErrShortDst\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tdst[nDst] = '~'\n\t\t\t\tnDst++\n\t\t\t\tcontinue\n\t\t\tcase '\\n':\n\t\t\t\tcontinue\n\t\t\tdefault:\n\t\t\t\tr = utf8.RuneError\n\t\t\t\tgoto write\n\t\t\t}\n\t\t}\n\n\t\tif *d == asciiState {\n\t\t\tr, size = rune(c0), 1\n\t\t} else {\n\t\t\tif nSrc+1 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tsize = 2\n\t\t\tc1 := src[nSrc+1]\n\t\t\tif c0 < 0x21 || 0x7e <= c0 || c1 < 0x21 || 0x7f <= c1 {\n\t\t\t\t// error\n\t\t\t} else if i := int(c0-0x01)*190 + int(c1+0x3f); i < len(decode) {\n\t\t\t\tr = rune(decode[i])\n\t\t\t\tif r != 0 {\n\t\t\t\t\tgoto write\n\t\t\t\t}\n\t\t\t}\n\t\t\tif c1 > utf8.RuneSelf {\n\t\t\t\t// Be consistent and always treat non-ASCII as a single error.\n\t\t\t\tsize = 1\n\t\t\t}\n\t\t\tr = utf8.RuneError\n\t\t}\n\n\twrite:\n\t\tif nDst+utf8.RuneLen(r) > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak loop\n\t\t}\n\t\tnDst += utf8.EncodeRune(dst[nDst:], r)\n\t}\n\treturn nDst, nSrc, err\n}\n\ntype hzGB2312Encoder int\n\nfunc (d *hzGB2312Encoder) Reset() {\n\t*d = asciiState\n}\n\nfunc (e *hzGB2312Encoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tsize = 1\n\t\t\tif r == '~' {\n\t\t\t\tif nDst+2 > len(dst) {\n\t\t\t\t\terr = transform.ErrShortDst\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdst[nDst+0] = '~'\n\t\t\t\tdst[nDst+1] = '~'\n\t\t\t\tnDst += 2\n\t\t\t\tcontinue\n\t\t\t} else if *e != asciiState {\n\t\t\t\tif nDst+3 > len(dst) {\n\t\t\t\t\terr = transform.ErrShortDst\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\t*e = asciiState\n\t\t\t\tdst[nDst+0] = '~'\n\t\t\t\tdst[nDst+1] = '}'\n\t\t\t\tnDst += 2\n\t\t\t} else if nDst >= len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[nDst] = uint8(r)\n\t\t\tnDst += 1\n\t\t\tcontinue\n\n\t\t}\n\n\t\t// Decode a multi-byte rune.\n\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\tif size == 1 {\n\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t// full character yet.\n\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\t// func init checks that the switch covers all tables.\n\t\tswitch {\n\t\tcase encode0Low <= r && r < encode0High:\n\t\t\tif r = rune(encode0[r-encode0Low]); r != 0 {\n\t\t\t\tgoto writeGB\n\t\t\t}\n\t\tcase encode1Low <= r && r < encode1High:\n\t\t\tif r = rune(encode1[r-encode1Low]); r != 0 {\n\t\t\t\tgoto writeGB\n\t\t\t}\n\t\tcase encode2Low <= r && r < encode2High:\n\t\t\tif r = rune(encode2[r-encode2Low]); r != 0 {\n\t\t\t\tgoto writeGB\n\t\t\t}\n\t\tcase encode3Low <= r && r < encode3High:\n\t\t\tif r = rune(encode3[r-encode3Low]); r != 0 {\n\t\t\t\tgoto writeGB\n\t\t\t}\n\t\tcase encode4Low <= r && r < encode4High:\n\t\t\tif r = rune(encode4[r-encode4Low]); r != 0 {\n\t\t\t\tgoto writeGB\n\t\t\t}\n\t\t}\n\n\tterminateInASCIIState:\n\t\t// Switch back to ASCII state in case of error so that an ASCII\n\t\t// replacement character can be written in the correct state.\n\t\tif *e != asciiState {\n\t\t\tif nDst+2 > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[nDst+0] = '~'\n\t\t\tdst[nDst+1] = '}'\n\t\t\tnDst += 2\n\t\t}\n\t\terr = internal.ErrASCIIReplacement\n\t\tbreak\n\n\twriteGB:\n\t\tc0 := uint8(r>>8) - 0x80\n\t\tc1 := uint8(r) - 0x80\n\t\tif c0 < 0x21 || 0x7e <= c0 || c1 < 0x21 || 0x7f <= c1 {\n\t\t\tgoto terminateInASCIIState\n\t\t}\n\t\tif *e == asciiState {\n\t\t\tif nDst+4 > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t*e = gbState\n\t\t\tdst[nDst+0] = '~'\n\t\t\tdst[nDst+1] = '{'\n\t\t\tnDst += 2\n\t\t} else if nDst+2 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst+0] = c0\n\t\tdst[nDst+1] = c1\n\t\tnDst += 2\n\t\tcontinue\n\t}\n\t// TODO: should one always terminate in ASCII state to make it safe to\n\t// concatenate two HZ-GB2312-encoded strings?\n\treturn nDst, nSrc, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go",
    "content": "// generated by go run maketables.go; DO NOT EDIT\n\n// Package simplifiedchinese provides Simplified Chinese encodings such as GBK.\npackage simplifiedchinese // import \"golang.org/x/text/encoding/simplifiedchinese\"\n\n// gb18030 is the table from http://encoding.spec.whatwg.org/index-gb18030.txt\nvar gb18030 = [...][2]uint16{\n\t{0x0000, 0x0080},\n\t{0x0024, 0x00a5},\n\t{0x0026, 0x00a9},\n\t{0x002d, 0x00b2},\n\t{0x0032, 0x00b8},\n\t{0x0051, 0x00d8},\n\t{0x0059, 0x00e2},\n\t{0x005f, 0x00eb},\n\t{0x0060, 0x00ee},\n\t{0x0064, 0x00f4},\n\t{0x0067, 0x00f8},\n\t{0x0068, 0x00fb},\n\t{0x0069, 0x00fd},\n\t{0x006d, 0x0102},\n\t{0x007e, 0x0114},\n\t{0x0085, 0x011c},\n\t{0x0094, 0x012c},\n\t{0x00ac, 0x0145},\n\t{0x00af, 0x0149},\n\t{0x00b3, 0x014e},\n\t{0x00d0, 0x016c},\n\t{0x0132, 0x01cf},\n\t{0x0133, 0x01d1},\n\t{0x0134, 0x01d3},\n\t{0x0135, 0x01d5},\n\t{0x0136, 0x01d7},\n\t{0x0137, 0x01d9},\n\t{0x0138, 0x01db},\n\t{0x0139, 0x01dd},\n\t{0x0155, 0x01fa},\n\t{0x01ac, 0x0252},\n\t{0x01bb, 0x0262},\n\t{0x0220, 0x02c8},\n\t{0x0221, 0x02cc},\n\t{0x022e, 0x02da},\n\t{0x02e5, 0x03a2},\n\t{0x02e6, 0x03aa},\n\t{0x02ed, 0x03c2},\n\t{0x02ee, 0x03ca},\n\t{0x0325, 0x0402},\n\t{0x0333, 0x0450},\n\t{0x0334, 0x0452},\n\t{0x1ef2, 0x2011},\n\t{0x1ef4, 0x2017},\n\t{0x1ef5, 0x201a},\n\t{0x1ef7, 0x201e},\n\t{0x1efe, 0x2027},\n\t{0x1f07, 0x2031},\n\t{0x1f08, 0x2034},\n\t{0x1f09, 0x2036},\n\t{0x1f0e, 0x203c},\n\t{0x1f7e, 0x20ad},\n\t{0x1fd4, 0x2104},\n\t{0x1fd5, 0x2106},\n\t{0x1fd8, 0x210a},\n\t{0x1fe4, 0x2117},\n\t{0x1fee, 0x2122},\n\t{0x202c, 0x216c},\n\t{0x2030, 0x217a},\n\t{0x2046, 0x2194},\n\t{0x2048, 0x219a},\n\t{0x20b6, 0x2209},\n\t{0x20bc, 0x2210},\n\t{0x20bd, 0x2212},\n\t{0x20c0, 0x2216},\n\t{0x20c4, 0x221b},\n\t{0x20c6, 0x2221},\n\t{0x20c8, 0x2224},\n\t{0x20c9, 0x2226},\n\t{0x20ca, 0x222c},\n\t{0x20cc, 0x222f},\n\t{0x20d1, 0x2238},\n\t{0x20d6, 0x223e},\n\t{0x20e0, 0x2249},\n\t{0x20e3, 0x224d},\n\t{0x20e8, 0x2253},\n\t{0x20f5, 0x2262},\n\t{0x20f7, 0x2268},\n\t{0x20fd, 0x2270},\n\t{0x2122, 0x2296},\n\t{0x2125, 0x229a},\n\t{0x2130, 0x22a6},\n\t{0x2149, 0x22c0},\n\t{0x219b, 0x2313},\n\t{0x22e8, 0x246a},\n\t{0x22f2, 0x249c},\n\t{0x2356, 0x254c},\n\t{0x235a, 0x2574},\n\t{0x2367, 0x2590},\n\t{0x236a, 0x2596},\n\t{0x2374, 0x25a2},\n\t{0x2384, 0x25b4},\n\t{0x238c, 0x25be},\n\t{0x2394, 0x25c8},\n\t{0x2397, 0x25cc},\n\t{0x2399, 0x25d0},\n\t{0x23ab, 0x25e6},\n\t{0x23ca, 0x2607},\n\t{0x23cc, 0x260a},\n\t{0x2402, 0x2641},\n\t{0x2403, 0x2643},\n\t{0x2c41, 0x2e82},\n\t{0x2c43, 0x2e85},\n\t{0x2c46, 0x2e89},\n\t{0x2c48, 0x2e8d},\n\t{0x2c52, 0x2e98},\n\t{0x2c61, 0x2ea8},\n\t{0x2c63, 0x2eab},\n\t{0x2c66, 0x2eaf},\n\t{0x2c6a, 0x2eb4},\n\t{0x2c6c, 0x2eb8},\n\t{0x2c6f, 0x2ebc},\n\t{0x2c7d, 0x2ecb},\n\t{0x2da2, 0x2ffc},\n\t{0x2da6, 0x3004},\n\t{0x2da7, 0x3018},\n\t{0x2dac, 0x301f},\n\t{0x2dae, 0x302a},\n\t{0x2dc2, 0x303f},\n\t{0x2dc4, 0x3094},\n\t{0x2dcb, 0x309f},\n\t{0x2dcd, 0x30f7},\n\t{0x2dd2, 0x30ff},\n\t{0x2dd8, 0x312a},\n\t{0x2ece, 0x322a},\n\t{0x2ed5, 0x3232},\n\t{0x2f46, 0x32a4},\n\t{0x3030, 0x3390},\n\t{0x303c, 0x339f},\n\t{0x303e, 0x33a2},\n\t{0x3060, 0x33c5},\n\t{0x3069, 0x33cf},\n\t{0x306b, 0x33d3},\n\t{0x306d, 0x33d6},\n\t{0x30de, 0x3448},\n\t{0x3109, 0x3474},\n\t{0x3233, 0x359f},\n\t{0x32a2, 0x360f},\n\t{0x32ad, 0x361b},\n\t{0x35aa, 0x3919},\n\t{0x35ff, 0x396f},\n\t{0x365f, 0x39d1},\n\t{0x366d, 0x39e0},\n\t{0x3700, 0x3a74},\n\t{0x37da, 0x3b4f},\n\t{0x38f9, 0x3c6f},\n\t{0x396a, 0x3ce1},\n\t{0x3cdf, 0x4057},\n\t{0x3de7, 0x4160},\n\t{0x3fbe, 0x4338},\n\t{0x4032, 0x43ad},\n\t{0x4036, 0x43b2},\n\t{0x4061, 0x43de},\n\t{0x4159, 0x44d7},\n\t{0x42ce, 0x464d},\n\t{0x42e2, 0x4662},\n\t{0x43a3, 0x4724},\n\t{0x43a8, 0x472a},\n\t{0x43fa, 0x477d},\n\t{0x440a, 0x478e},\n\t{0x45c3, 0x4948},\n\t{0x45f5, 0x497b},\n\t{0x45f7, 0x497e},\n\t{0x45fb, 0x4984},\n\t{0x45fc, 0x4987},\n\t{0x4610, 0x499c},\n\t{0x4613, 0x49a0},\n\t{0x4629, 0x49b8},\n\t{0x48e8, 0x4c78},\n\t{0x490f, 0x4ca4},\n\t{0x497e, 0x4d1a},\n\t{0x4a12, 0x4daf},\n\t{0x4a63, 0x9fa6},\n\t{0x82bd, 0xe76c},\n\t{0x82be, 0xe7c8},\n\t{0x82bf, 0xe7e7},\n\t{0x82cc, 0xe815},\n\t{0x82cd, 0xe819},\n\t{0x82d2, 0xe81f},\n\t{0x82d9, 0xe827},\n\t{0x82dd, 0xe82d},\n\t{0x82e1, 0xe833},\n\t{0x82e9, 0xe83c},\n\t{0x82f0, 0xe844},\n\t{0x8300, 0xe856},\n\t{0x830e, 0xe865},\n\t{0x93d5, 0xf92d},\n\t{0x9421, 0xf97a},\n\t{0x943c, 0xf996},\n\t{0x948d, 0xf9e8},\n\t{0x9496, 0xf9f2},\n\t{0x94b0, 0xfa10},\n\t{0x94b1, 0xfa12},\n\t{0x94b2, 0xfa15},\n\t{0x94b5, 0xfa19},\n\t{0x94bb, 0xfa22},\n\t{0x94bc, 0xfa25},\n\t{0x94be, 0xfa2a},\n\t{0x98c4, 0xfe32},\n\t{0x98c5, 0xfe45},\n\t{0x98c9, 0xfe53},\n\t{0x98ca, 0xfe58},\n\t{0x98cb, 0xfe67},\n\t{0x98cc, 0xfe6c},\n\t{0x9961, 0xff5f},\n\t{0x99e2, 0xffe6},\n}\n\n// decode is the decoding table from GBK code to Unicode.\n// It is defined at http://encoding.spec.whatwg.org/index-gbk.txt\nvar decode = [...]uint16{\n\t0:     0x4E02,\n\t1:     0x4E04,\n\t2:     0x4E05,\n\t3:     0x4E06,\n\t4:     0x4E0F,\n\t5:     0x4E12,\n\t6:     0x4E17,\n\t7:     0x4E1F,\n\t8:     0x4E20,\n\t9:     0x4E21,\n\t10:    0x4E23,\n\t11:    0x4E26,\n\t12:    0x4E29,\n\t13:    0x4E2E,\n\t14:    0x4E2F,\n\t15:    0x4E31,\n\t16:    0x4E33,\n\t17:    0x4E35,\n\t18:    0x4E37,\n\t19:    0x4E3C,\n\t20:    0x4E40,\n\t21:    0x4E41,\n\t22:    0x4E42,\n\t23:    0x4E44,\n\t24:    0x4E46,\n\t25:    0x4E4A,\n\t26:    0x4E51,\n\t27:    0x4E55,\n\t28:    0x4E57,\n\t29:    0x4E5A,\n\t30:    0x4E5B,\n\t31:    0x4E62,\n\t32:    0x4E63,\n\t33:    0x4E64,\n\t34:    0x4E65,\n\t35:    0x4E67,\n\t36:    0x4E68,\n\t37:    0x4E6A,\n\t38:    0x4E6B,\n\t39:    0x4E6C,\n\t40:    0x4E6D,\n\t41:    0x4E6E,\n\t42:    0x4E6F,\n\t43:    0x4E72,\n\t44:    0x4E74,\n\t45:    0x4E75,\n\t46:    0x4E76,\n\t47:    0x4E77,\n\t48:    0x4E78,\n\t49:    0x4E79,\n\t50:    0x4E7A,\n\t51:    0x4E7B,\n\t52:    0x4E7C,\n\t53:    0x4E7D,\n\t54:    0x4E7F,\n\t55:    0x4E80,\n\t56:    0x4E81,\n\t57:    0x4E82,\n\t58:    0x4E83,\n\t59:    0x4E84,\n\t60:    0x4E85,\n\t61:    0x4E87,\n\t62:    0x4E8A,\n\t63:    0x4E90,\n\t64:    0x4E96,\n\t65:    0x4E97,\n\t66:    0x4E99,\n\t67:    0x4E9C,\n\t68:    0x4E9D,\n\t69:    0x4E9E,\n\t70:    0x4EA3,\n\t71:    0x4EAA,\n\t72:    0x4EAF,\n\t73:    0x4EB0,\n\t74:    0x4EB1,\n\t75:    0x4EB4,\n\t76:    0x4EB6,\n\t77:    0x4EB7,\n\t78:    0x4EB8,\n\t79:    0x4EB9,\n\t80:    0x4EBC,\n\t81:    0x4EBD,\n\t82:    0x4EBE,\n\t83:    0x4EC8,\n\t84:    0x4ECC,\n\t85:    0x4ECF,\n\t86:    0x4ED0,\n\t87:    0x4ED2,\n\t88:    0x4EDA,\n\t89:    0x4EDB,\n\t90:    0x4EDC,\n\t91:    0x4EE0,\n\t92:    0x4EE2,\n\t93:    0x4EE6,\n\t94:    0x4EE7,\n\t95:    0x4EE9,\n\t96:    0x4EED,\n\t97:    0x4EEE,\n\t98:    0x4EEF,\n\t99:    0x4EF1,\n\t100:   0x4EF4,\n\t101:   0x4EF8,\n\t102:   0x4EF9,\n\t103:   0x4EFA,\n\t104:   0x4EFC,\n\t105:   0x4EFE,\n\t106:   0x4F00,\n\t107:   0x4F02,\n\t108:   0x4F03,\n\t109:   0x4F04,\n\t110:   0x4F05,\n\t111:   0x4F06,\n\t112:   0x4F07,\n\t113:   0x4F08,\n\t114:   0x4F0B,\n\t115:   0x4F0C,\n\t116:   0x4F12,\n\t117:   0x4F13,\n\t118:   0x4F14,\n\t119:   0x4F15,\n\t120:   0x4F16,\n\t121:   0x4F1C,\n\t122:   0x4F1D,\n\t123:   0x4F21,\n\t124:   0x4F23,\n\t125:   0x4F28,\n\t126:   0x4F29,\n\t127:   0x4F2C,\n\t128:   0x4F2D,\n\t129:   0x4F2E,\n\t130:   0x4F31,\n\t131:   0x4F33,\n\t132:   0x4F35,\n\t133:   0x4F37,\n\t134:   0x4F39,\n\t135:   0x4F3B,\n\t136:   0x4F3E,\n\t137:   0x4F3F,\n\t138:   0x4F40,\n\t139:   0x4F41,\n\t140:   0x4F42,\n\t141:   0x4F44,\n\t142:   0x4F45,\n\t143:   0x4F47,\n\t144:   0x4F48,\n\t145:   0x4F49,\n\t146:   0x4F4A,\n\t147:   0x4F4B,\n\t148:   0x4F4C,\n\t149:   0x4F52,\n\t150:   0x4F54,\n\t151:   0x4F56,\n\t152:   0x4F61,\n\t153:   0x4F62,\n\t154:   0x4F66,\n\t155:   0x4F68,\n\t156:   0x4F6A,\n\t157:   0x4F6B,\n\t158:   0x4F6D,\n\t159:   0x4F6E,\n\t160:   0x4F71,\n\t161:   0x4F72,\n\t162:   0x4F75,\n\t163:   0x4F77,\n\t164:   0x4F78,\n\t165:   0x4F79,\n\t166:   0x4F7A,\n\t167:   0x4F7D,\n\t168:   0x4F80,\n\t169:   0x4F81,\n\t170:   0x4F82,\n\t171:   0x4F85,\n\t172:   0x4F86,\n\t173:   0x4F87,\n\t174:   0x4F8A,\n\t175:   0x4F8C,\n\t176:   0x4F8E,\n\t177:   0x4F90,\n\t178:   0x4F92,\n\t179:   0x4F93,\n\t180:   0x4F95,\n\t181:   0x4F96,\n\t182:   0x4F98,\n\t183:   0x4F99,\n\t184:   0x4F9A,\n\t185:   0x4F9C,\n\t186:   0x4F9E,\n\t187:   0x4F9F,\n\t188:   0x4FA1,\n\t189:   0x4FA2,\n\t190:   0x4FA4,\n\t191:   0x4FAB,\n\t192:   0x4FAD,\n\t193:   0x4FB0,\n\t194:   0x4FB1,\n\t195:   0x4FB2,\n\t196:   0x4FB3,\n\t197:   0x4FB4,\n\t198:   0x4FB6,\n\t199:   0x4FB7,\n\t200:   0x4FB8,\n\t201:   0x4FB9,\n\t202:   0x4FBA,\n\t203:   0x4FBB,\n\t204:   0x4FBC,\n\t205:   0x4FBD,\n\t206:   0x4FBE,\n\t207:   0x4FC0,\n\t208:   0x4FC1,\n\t209:   0x4FC2,\n\t210:   0x4FC6,\n\t211:   0x4FC7,\n\t212:   0x4FC8,\n\t213:   0x4FC9,\n\t214:   0x4FCB,\n\t215:   0x4FCC,\n\t216:   0x4FCD,\n\t217:   0x4FD2,\n\t218:   0x4FD3,\n\t219:   0x4FD4,\n\t220:   0x4FD5,\n\t221:   0x4FD6,\n\t222:   0x4FD9,\n\t223:   0x4FDB,\n\t224:   0x4FE0,\n\t225:   0x4FE2,\n\t226:   0x4FE4,\n\t227:   0x4FE5,\n\t228:   0x4FE7,\n\t229:   0x4FEB,\n\t230:   0x4FEC,\n\t231:   0x4FF0,\n\t232:   0x4FF2,\n\t233:   0x4FF4,\n\t234:   0x4FF5,\n\t235:   0x4FF6,\n\t236:   0x4FF7,\n\t237:   0x4FF9,\n\t238:   0x4FFB,\n\t239:   0x4FFC,\n\t240:   0x4FFD,\n\t241:   0x4FFF,\n\t242:   0x5000,\n\t243:   0x5001,\n\t244:   0x5002,\n\t245:   0x5003,\n\t246:   0x5004,\n\t247:   0x5005,\n\t248:   0x5006,\n\t249:   0x5007,\n\t250:   0x5008,\n\t251:   0x5009,\n\t252:   0x500A,\n\t253:   0x500B,\n\t254:   0x500E,\n\t255:   0x5010,\n\t256:   0x5011,\n\t257:   0x5013,\n\t258:   0x5015,\n\t259:   0x5016,\n\t260:   0x5017,\n\t261:   0x501B,\n\t262:   0x501D,\n\t263:   0x501E,\n\t264:   0x5020,\n\t265:   0x5022,\n\t266:   0x5023,\n\t267:   0x5024,\n\t268:   0x5027,\n\t269:   0x502B,\n\t270:   0x502F,\n\t271:   0x5030,\n\t272:   0x5031,\n\t273:   0x5032,\n\t274:   0x5033,\n\t275:   0x5034,\n\t276:   0x5035,\n\t277:   0x5036,\n\t278:   0x5037,\n\t279:   0x5038,\n\t280:   0x5039,\n\t281:   0x503B,\n\t282:   0x503D,\n\t283:   0x503F,\n\t284:   0x5040,\n\t285:   0x5041,\n\t286:   0x5042,\n\t287:   0x5044,\n\t288:   0x5045,\n\t289:   0x5046,\n\t290:   0x5049,\n\t291:   0x504A,\n\t292:   0x504B,\n\t293:   0x504D,\n\t294:   0x5050,\n\t295:   0x5051,\n\t296:   0x5052,\n\t297:   0x5053,\n\t298:   0x5054,\n\t299:   0x5056,\n\t300:   0x5057,\n\t301:   0x5058,\n\t302:   0x5059,\n\t303:   0x505B,\n\t304:   0x505D,\n\t305:   0x505E,\n\t306:   0x505F,\n\t307:   0x5060,\n\t308:   0x5061,\n\t309:   0x5062,\n\t310:   0x5063,\n\t311:   0x5064,\n\t312:   0x5066,\n\t313:   0x5067,\n\t314:   0x5068,\n\t315:   0x5069,\n\t316:   0x506A,\n\t317:   0x506B,\n\t318:   0x506D,\n\t319:   0x506E,\n\t320:   0x506F,\n\t321:   0x5070,\n\t322:   0x5071,\n\t323:   0x5072,\n\t324:   0x5073,\n\t325:   0x5074,\n\t326:   0x5075,\n\t327:   0x5078,\n\t328:   0x5079,\n\t329:   0x507A,\n\t330:   0x507C,\n\t331:   0x507D,\n\t332:   0x5081,\n\t333:   0x5082,\n\t334:   0x5083,\n\t335:   0x5084,\n\t336:   0x5086,\n\t337:   0x5087,\n\t338:   0x5089,\n\t339:   0x508A,\n\t340:   0x508B,\n\t341:   0x508C,\n\t342:   0x508E,\n\t343:   0x508F,\n\t344:   0x5090,\n\t345:   0x5091,\n\t346:   0x5092,\n\t347:   0x5093,\n\t348:   0x5094,\n\t349:   0x5095,\n\t350:   0x5096,\n\t351:   0x5097,\n\t352:   0x5098,\n\t353:   0x5099,\n\t354:   0x509A,\n\t355:   0x509B,\n\t356:   0x509C,\n\t357:   0x509D,\n\t358:   0x509E,\n\t359:   0x509F,\n\t360:   0x50A0,\n\t361:   0x50A1,\n\t362:   0x50A2,\n\t363:   0x50A4,\n\t364:   0x50A6,\n\t365:   0x50AA,\n\t366:   0x50AB,\n\t367:   0x50AD,\n\t368:   0x50AE,\n\t369:   0x50AF,\n\t370:   0x50B0,\n\t371:   0x50B1,\n\t372:   0x50B3,\n\t373:   0x50B4,\n\t374:   0x50B5,\n\t375:   0x50B6,\n\t376:   0x50B7,\n\t377:   0x50B8,\n\t378:   0x50B9,\n\t379:   0x50BC,\n\t380:   0x50BD,\n\t381:   0x50BE,\n\t382:   0x50BF,\n\t383:   0x50C0,\n\t384:   0x50C1,\n\t385:   0x50C2,\n\t386:   0x50C3,\n\t387:   0x50C4,\n\t388:   0x50C5,\n\t389:   0x50C6,\n\t390:   0x50C7,\n\t391:   0x50C8,\n\t392:   0x50C9,\n\t393:   0x50CA,\n\t394:   0x50CB,\n\t395:   0x50CC,\n\t396:   0x50CD,\n\t397:   0x50CE,\n\t398:   0x50D0,\n\t399:   0x50D1,\n\t400:   0x50D2,\n\t401:   0x50D3,\n\t402:   0x50D4,\n\t403:   0x50D5,\n\t404:   0x50D7,\n\t405:   0x50D8,\n\t406:   0x50D9,\n\t407:   0x50DB,\n\t408:   0x50DC,\n\t409:   0x50DD,\n\t410:   0x50DE,\n\t411:   0x50DF,\n\t412:   0x50E0,\n\t413:   0x50E1,\n\t414:   0x50E2,\n\t415:   0x50E3,\n\t416:   0x50E4,\n\t417:   0x50E5,\n\t418:   0x50E8,\n\t419:   0x50E9,\n\t420:   0x50EA,\n\t421:   0x50EB,\n\t422:   0x50EF,\n\t423:   0x50F0,\n\t424:   0x50F1,\n\t425:   0x50F2,\n\t426:   0x50F4,\n\t427:   0x50F6,\n\t428:   0x50F7,\n\t429:   0x50F8,\n\t430:   0x50F9,\n\t431:   0x50FA,\n\t432:   0x50FC,\n\t433:   0x50FD,\n\t434:   0x50FE,\n\t435:   0x50FF,\n\t436:   0x5100,\n\t437:   0x5101,\n\t438:   0x5102,\n\t439:   0x5103,\n\t440:   0x5104,\n\t441:   0x5105,\n\t442:   0x5108,\n\t443:   0x5109,\n\t444:   0x510A,\n\t445:   0x510C,\n\t446:   0x510D,\n\t447:   0x510E,\n\t448:   0x510F,\n\t449:   0x5110,\n\t450:   0x5111,\n\t451:   0x5113,\n\t452:   0x5114,\n\t453:   0x5115,\n\t454:   0x5116,\n\t455:   0x5117,\n\t456:   0x5118,\n\t457:   0x5119,\n\t458:   0x511A,\n\t459:   0x511B,\n\t460:   0x511C,\n\t461:   0x511D,\n\t462:   0x511E,\n\t463:   0x511F,\n\t464:   0x5120,\n\t465:   0x5122,\n\t466:   0x5123,\n\t467:   0x5124,\n\t468:   0x5125,\n\t469:   0x5126,\n\t470:   0x5127,\n\t471:   0x5128,\n\t472:   0x5129,\n\t473:   0x512A,\n\t474:   0x512B,\n\t475:   0x512C,\n\t476:   0x512D,\n\t477:   0x512E,\n\t478:   0x512F,\n\t479:   0x5130,\n\t480:   0x5131,\n\t481:   0x5132,\n\t482:   0x5133,\n\t483:   0x5134,\n\t484:   0x5135,\n\t485:   0x5136,\n\t486:   0x5137,\n\t487:   0x5138,\n\t488:   0x5139,\n\t489:   0x513A,\n\t490:   0x513B,\n\t491:   0x513C,\n\t492:   0x513D,\n\t493:   0x513E,\n\t494:   0x5142,\n\t495:   0x5147,\n\t496:   0x514A,\n\t497:   0x514C,\n\t498:   0x514E,\n\t499:   0x514F,\n\t500:   0x5150,\n\t501:   0x5152,\n\t502:   0x5153,\n\t503:   0x5157,\n\t504:   0x5158,\n\t505:   0x5159,\n\t506:   0x515B,\n\t507:   0x515D,\n\t508:   0x515E,\n\t509:   0x515F,\n\t510:   0x5160,\n\t511:   0x5161,\n\t512:   0x5163,\n\t513:   0x5164,\n\t514:   0x5166,\n\t515:   0x5167,\n\t516:   0x5169,\n\t517:   0x516A,\n\t518:   0x516F,\n\t519:   0x5172,\n\t520:   0x517A,\n\t521:   0x517E,\n\t522:   0x517F,\n\t523:   0x5183,\n\t524:   0x5184,\n\t525:   0x5186,\n\t526:   0x5187,\n\t527:   0x518A,\n\t528:   0x518B,\n\t529:   0x518E,\n\t530:   0x518F,\n\t531:   0x5190,\n\t532:   0x5191,\n\t533:   0x5193,\n\t534:   0x5194,\n\t535:   0x5198,\n\t536:   0x519A,\n\t537:   0x519D,\n\t538:   0x519E,\n\t539:   0x519F,\n\t540:   0x51A1,\n\t541:   0x51A3,\n\t542:   0x51A6,\n\t543:   0x51A7,\n\t544:   0x51A8,\n\t545:   0x51A9,\n\t546:   0x51AA,\n\t547:   0x51AD,\n\t548:   0x51AE,\n\t549:   0x51B4,\n\t550:   0x51B8,\n\t551:   0x51B9,\n\t552:   0x51BA,\n\t553:   0x51BE,\n\t554:   0x51BF,\n\t555:   0x51C1,\n\t556:   0x51C2,\n\t557:   0x51C3,\n\t558:   0x51C5,\n\t559:   0x51C8,\n\t560:   0x51CA,\n\t561:   0x51CD,\n\t562:   0x51CE,\n\t563:   0x51D0,\n\t564:   0x51D2,\n\t565:   0x51D3,\n\t566:   0x51D4,\n\t567:   0x51D5,\n\t568:   0x51D6,\n\t569:   0x51D7,\n\t570:   0x51D8,\n\t571:   0x51D9,\n\t572:   0x51DA,\n\t573:   0x51DC,\n\t574:   0x51DE,\n\t575:   0x51DF,\n\t576:   0x51E2,\n\t577:   0x51E3,\n\t578:   0x51E5,\n\t579:   0x51E6,\n\t580:   0x51E7,\n\t581:   0x51E8,\n\t582:   0x51E9,\n\t583:   0x51EA,\n\t584:   0x51EC,\n\t585:   0x51EE,\n\t586:   0x51F1,\n\t587:   0x51F2,\n\t588:   0x51F4,\n\t589:   0x51F7,\n\t590:   0x51FE,\n\t591:   0x5204,\n\t592:   0x5205,\n\t593:   0x5209,\n\t594:   0x520B,\n\t595:   0x520C,\n\t596:   0x520F,\n\t597:   0x5210,\n\t598:   0x5213,\n\t599:   0x5214,\n\t600:   0x5215,\n\t601:   0x521C,\n\t602:   0x521E,\n\t603:   0x521F,\n\t604:   0x5221,\n\t605:   0x5222,\n\t606:   0x5223,\n\t607:   0x5225,\n\t608:   0x5226,\n\t609:   0x5227,\n\t610:   0x522A,\n\t611:   0x522C,\n\t612:   0x522F,\n\t613:   0x5231,\n\t614:   0x5232,\n\t615:   0x5234,\n\t616:   0x5235,\n\t617:   0x523C,\n\t618:   0x523E,\n\t619:   0x5244,\n\t620:   0x5245,\n\t621:   0x5246,\n\t622:   0x5247,\n\t623:   0x5248,\n\t624:   0x5249,\n\t625:   0x524B,\n\t626:   0x524E,\n\t627:   0x524F,\n\t628:   0x5252,\n\t629:   0x5253,\n\t630:   0x5255,\n\t631:   0x5257,\n\t632:   0x5258,\n\t633:   0x5259,\n\t634:   0x525A,\n\t635:   0x525B,\n\t636:   0x525D,\n\t637:   0x525F,\n\t638:   0x5260,\n\t639:   0x5262,\n\t640:   0x5263,\n\t641:   0x5264,\n\t642:   0x5266,\n\t643:   0x5268,\n\t644:   0x526B,\n\t645:   0x526C,\n\t646:   0x526D,\n\t647:   0x526E,\n\t648:   0x5270,\n\t649:   0x5271,\n\t650:   0x5273,\n\t651:   0x5274,\n\t652:   0x5275,\n\t653:   0x5276,\n\t654:   0x5277,\n\t655:   0x5278,\n\t656:   0x5279,\n\t657:   0x527A,\n\t658:   0x527B,\n\t659:   0x527C,\n\t660:   0x527E,\n\t661:   0x5280,\n\t662:   0x5283,\n\t663:   0x5284,\n\t664:   0x5285,\n\t665:   0x5286,\n\t666:   0x5287,\n\t667:   0x5289,\n\t668:   0x528A,\n\t669:   0x528B,\n\t670:   0x528C,\n\t671:   0x528D,\n\t672:   0x528E,\n\t673:   0x528F,\n\t674:   0x5291,\n\t675:   0x5292,\n\t676:   0x5294,\n\t677:   0x5295,\n\t678:   0x5296,\n\t679:   0x5297,\n\t680:   0x5298,\n\t681:   0x5299,\n\t682:   0x529A,\n\t683:   0x529C,\n\t684:   0x52A4,\n\t685:   0x52A5,\n\t686:   0x52A6,\n\t687:   0x52A7,\n\t688:   0x52AE,\n\t689:   0x52AF,\n\t690:   0x52B0,\n\t691:   0x52B4,\n\t692:   0x52B5,\n\t693:   0x52B6,\n\t694:   0x52B7,\n\t695:   0x52B8,\n\t696:   0x52B9,\n\t697:   0x52BA,\n\t698:   0x52BB,\n\t699:   0x52BC,\n\t700:   0x52BD,\n\t701:   0x52C0,\n\t702:   0x52C1,\n\t703:   0x52C2,\n\t704:   0x52C4,\n\t705:   0x52C5,\n\t706:   0x52C6,\n\t707:   0x52C8,\n\t708:   0x52CA,\n\t709:   0x52CC,\n\t710:   0x52CD,\n\t711:   0x52CE,\n\t712:   0x52CF,\n\t713:   0x52D1,\n\t714:   0x52D3,\n\t715:   0x52D4,\n\t716:   0x52D5,\n\t717:   0x52D7,\n\t718:   0x52D9,\n\t719:   0x52DA,\n\t720:   0x52DB,\n\t721:   0x52DC,\n\t722:   0x52DD,\n\t723:   0x52DE,\n\t724:   0x52E0,\n\t725:   0x52E1,\n\t726:   0x52E2,\n\t727:   0x52E3,\n\t728:   0x52E5,\n\t729:   0x52E6,\n\t730:   0x52E7,\n\t731:   0x52E8,\n\t732:   0x52E9,\n\t733:   0x52EA,\n\t734:   0x52EB,\n\t735:   0x52EC,\n\t736:   0x52ED,\n\t737:   0x52EE,\n\t738:   0x52EF,\n\t739:   0x52F1,\n\t740:   0x52F2,\n\t741:   0x52F3,\n\t742:   0x52F4,\n\t743:   0x52F5,\n\t744:   0x52F6,\n\t745:   0x52F7,\n\t746:   0x52F8,\n\t747:   0x52FB,\n\t748:   0x52FC,\n\t749:   0x52FD,\n\t750:   0x5301,\n\t751:   0x5302,\n\t752:   0x5303,\n\t753:   0x5304,\n\t754:   0x5307,\n\t755:   0x5309,\n\t756:   0x530A,\n\t757:   0x530B,\n\t758:   0x530C,\n\t759:   0x530E,\n\t760:   0x5311,\n\t761:   0x5312,\n\t762:   0x5313,\n\t763:   0x5314,\n\t764:   0x5318,\n\t765:   0x531B,\n\t766:   0x531C,\n\t767:   0x531E,\n\t768:   0x531F,\n\t769:   0x5322,\n\t770:   0x5324,\n\t771:   0x5325,\n\t772:   0x5327,\n\t773:   0x5328,\n\t774:   0x5329,\n\t775:   0x532B,\n\t776:   0x532C,\n\t777:   0x532D,\n\t778:   0x532F,\n\t779:   0x5330,\n\t780:   0x5331,\n\t781:   0x5332,\n\t782:   0x5333,\n\t783:   0x5334,\n\t784:   0x5335,\n\t785:   0x5336,\n\t786:   0x5337,\n\t787:   0x5338,\n\t788:   0x533C,\n\t789:   0x533D,\n\t790:   0x5340,\n\t791:   0x5342,\n\t792:   0x5344,\n\t793:   0x5346,\n\t794:   0x534B,\n\t795:   0x534C,\n\t796:   0x534D,\n\t797:   0x5350,\n\t798:   0x5354,\n\t799:   0x5358,\n\t800:   0x5359,\n\t801:   0x535B,\n\t802:   0x535D,\n\t803:   0x5365,\n\t804:   0x5368,\n\t805:   0x536A,\n\t806:   0x536C,\n\t807:   0x536D,\n\t808:   0x5372,\n\t809:   0x5376,\n\t810:   0x5379,\n\t811:   0x537B,\n\t812:   0x537C,\n\t813:   0x537D,\n\t814:   0x537E,\n\t815:   0x5380,\n\t816:   0x5381,\n\t817:   0x5383,\n\t818:   0x5387,\n\t819:   0x5388,\n\t820:   0x538A,\n\t821:   0x538E,\n\t822:   0x538F,\n\t823:   0x5390,\n\t824:   0x5391,\n\t825:   0x5392,\n\t826:   0x5393,\n\t827:   0x5394,\n\t828:   0x5396,\n\t829:   0x5397,\n\t830:   0x5399,\n\t831:   0x539B,\n\t832:   0x539C,\n\t833:   0x539E,\n\t834:   0x53A0,\n\t835:   0x53A1,\n\t836:   0x53A4,\n\t837:   0x53A7,\n\t838:   0x53AA,\n\t839:   0x53AB,\n\t840:   0x53AC,\n\t841:   0x53AD,\n\t842:   0x53AF,\n\t843:   0x53B0,\n\t844:   0x53B1,\n\t845:   0x53B2,\n\t846:   0x53B3,\n\t847:   0x53B4,\n\t848:   0x53B5,\n\t849:   0x53B7,\n\t850:   0x53B8,\n\t851:   0x53B9,\n\t852:   0x53BA,\n\t853:   0x53BC,\n\t854:   0x53BD,\n\t855:   0x53BE,\n\t856:   0x53C0,\n\t857:   0x53C3,\n\t858:   0x53C4,\n\t859:   0x53C5,\n\t860:   0x53C6,\n\t861:   0x53C7,\n\t862:   0x53CE,\n\t863:   0x53CF,\n\t864:   0x53D0,\n\t865:   0x53D2,\n\t866:   0x53D3,\n\t867:   0x53D5,\n\t868:   0x53DA,\n\t869:   0x53DC,\n\t870:   0x53DD,\n\t871:   0x53DE,\n\t872:   0x53E1,\n\t873:   0x53E2,\n\t874:   0x53E7,\n\t875:   0x53F4,\n\t876:   0x53FA,\n\t877:   0x53FE,\n\t878:   0x53FF,\n\t879:   0x5400,\n\t880:   0x5402,\n\t881:   0x5405,\n\t882:   0x5407,\n\t883:   0x540B,\n\t884:   0x5414,\n\t885:   0x5418,\n\t886:   0x5419,\n\t887:   0x541A,\n\t888:   0x541C,\n\t889:   0x5422,\n\t890:   0x5424,\n\t891:   0x5425,\n\t892:   0x542A,\n\t893:   0x5430,\n\t894:   0x5433,\n\t895:   0x5436,\n\t896:   0x5437,\n\t897:   0x543A,\n\t898:   0x543D,\n\t899:   0x543F,\n\t900:   0x5441,\n\t901:   0x5442,\n\t902:   0x5444,\n\t903:   0x5445,\n\t904:   0x5447,\n\t905:   0x5449,\n\t906:   0x544C,\n\t907:   0x544D,\n\t908:   0x544E,\n\t909:   0x544F,\n\t910:   0x5451,\n\t911:   0x545A,\n\t912:   0x545D,\n\t913:   0x545E,\n\t914:   0x545F,\n\t915:   0x5460,\n\t916:   0x5461,\n\t917:   0x5463,\n\t918:   0x5465,\n\t919:   0x5467,\n\t920:   0x5469,\n\t921:   0x546A,\n\t922:   0x546B,\n\t923:   0x546C,\n\t924:   0x546D,\n\t925:   0x546E,\n\t926:   0x546F,\n\t927:   0x5470,\n\t928:   0x5474,\n\t929:   0x5479,\n\t930:   0x547A,\n\t931:   0x547E,\n\t932:   0x547F,\n\t933:   0x5481,\n\t934:   0x5483,\n\t935:   0x5485,\n\t936:   0x5487,\n\t937:   0x5488,\n\t938:   0x5489,\n\t939:   0x548A,\n\t940:   0x548D,\n\t941:   0x5491,\n\t942:   0x5493,\n\t943:   0x5497,\n\t944:   0x5498,\n\t945:   0x549C,\n\t946:   0x549E,\n\t947:   0x549F,\n\t948:   0x54A0,\n\t949:   0x54A1,\n\t950:   0x54A2,\n\t951:   0x54A5,\n\t952:   0x54AE,\n\t953:   0x54B0,\n\t954:   0x54B2,\n\t955:   0x54B5,\n\t956:   0x54B6,\n\t957:   0x54B7,\n\t958:   0x54B9,\n\t959:   0x54BA,\n\t960:   0x54BC,\n\t961:   0x54BE,\n\t962:   0x54C3,\n\t963:   0x54C5,\n\t964:   0x54CA,\n\t965:   0x54CB,\n\t966:   0x54D6,\n\t967:   0x54D8,\n\t968:   0x54DB,\n\t969:   0x54E0,\n\t970:   0x54E1,\n\t971:   0x54E2,\n\t972:   0x54E3,\n\t973:   0x54E4,\n\t974:   0x54EB,\n\t975:   0x54EC,\n\t976:   0x54EF,\n\t977:   0x54F0,\n\t978:   0x54F1,\n\t979:   0x54F4,\n\t980:   0x54F5,\n\t981:   0x54F6,\n\t982:   0x54F7,\n\t983:   0x54F8,\n\t984:   0x54F9,\n\t985:   0x54FB,\n\t986:   0x54FE,\n\t987:   0x5500,\n\t988:   0x5502,\n\t989:   0x5503,\n\t990:   0x5504,\n\t991:   0x5505,\n\t992:   0x5508,\n\t993:   0x550A,\n\t994:   0x550B,\n\t995:   0x550C,\n\t996:   0x550D,\n\t997:   0x550E,\n\t998:   0x5512,\n\t999:   0x5513,\n\t1000:  0x5515,\n\t1001:  0x5516,\n\t1002:  0x5517,\n\t1003:  0x5518,\n\t1004:  0x5519,\n\t1005:  0x551A,\n\t1006:  0x551C,\n\t1007:  0x551D,\n\t1008:  0x551E,\n\t1009:  0x551F,\n\t1010:  0x5521,\n\t1011:  0x5525,\n\t1012:  0x5526,\n\t1013:  0x5528,\n\t1014:  0x5529,\n\t1015:  0x552B,\n\t1016:  0x552D,\n\t1017:  0x5532,\n\t1018:  0x5534,\n\t1019:  0x5535,\n\t1020:  0x5536,\n\t1021:  0x5538,\n\t1022:  0x5539,\n\t1023:  0x553A,\n\t1024:  0x553B,\n\t1025:  0x553D,\n\t1026:  0x5540,\n\t1027:  0x5542,\n\t1028:  0x5545,\n\t1029:  0x5547,\n\t1030:  0x5548,\n\t1031:  0x554B,\n\t1032:  0x554C,\n\t1033:  0x554D,\n\t1034:  0x554E,\n\t1035:  0x554F,\n\t1036:  0x5551,\n\t1037:  0x5552,\n\t1038:  0x5553,\n\t1039:  0x5554,\n\t1040:  0x5557,\n\t1041:  0x5558,\n\t1042:  0x5559,\n\t1043:  0x555A,\n\t1044:  0x555B,\n\t1045:  0x555D,\n\t1046:  0x555E,\n\t1047:  0x555F,\n\t1048:  0x5560,\n\t1049:  0x5562,\n\t1050:  0x5563,\n\t1051:  0x5568,\n\t1052:  0x5569,\n\t1053:  0x556B,\n\t1054:  0x556F,\n\t1055:  0x5570,\n\t1056:  0x5571,\n\t1057:  0x5572,\n\t1058:  0x5573,\n\t1059:  0x5574,\n\t1060:  0x5579,\n\t1061:  0x557A,\n\t1062:  0x557D,\n\t1063:  0x557F,\n\t1064:  0x5585,\n\t1065:  0x5586,\n\t1066:  0x558C,\n\t1067:  0x558D,\n\t1068:  0x558E,\n\t1069:  0x5590,\n\t1070:  0x5592,\n\t1071:  0x5593,\n\t1072:  0x5595,\n\t1073:  0x5596,\n\t1074:  0x5597,\n\t1075:  0x559A,\n\t1076:  0x559B,\n\t1077:  0x559E,\n\t1078:  0x55A0,\n\t1079:  0x55A1,\n\t1080:  0x55A2,\n\t1081:  0x55A3,\n\t1082:  0x55A4,\n\t1083:  0x55A5,\n\t1084:  0x55A6,\n\t1085:  0x55A8,\n\t1086:  0x55A9,\n\t1087:  0x55AA,\n\t1088:  0x55AB,\n\t1089:  0x55AC,\n\t1090:  0x55AD,\n\t1091:  0x55AE,\n\t1092:  0x55AF,\n\t1093:  0x55B0,\n\t1094:  0x55B2,\n\t1095:  0x55B4,\n\t1096:  0x55B6,\n\t1097:  0x55B8,\n\t1098:  0x55BA,\n\t1099:  0x55BC,\n\t1100:  0x55BF,\n\t1101:  0x55C0,\n\t1102:  0x55C1,\n\t1103:  0x55C2,\n\t1104:  0x55C3,\n\t1105:  0x55C6,\n\t1106:  0x55C7,\n\t1107:  0x55C8,\n\t1108:  0x55CA,\n\t1109:  0x55CB,\n\t1110:  0x55CE,\n\t1111:  0x55CF,\n\t1112:  0x55D0,\n\t1113:  0x55D5,\n\t1114:  0x55D7,\n\t1115:  0x55D8,\n\t1116:  0x55D9,\n\t1117:  0x55DA,\n\t1118:  0x55DB,\n\t1119:  0x55DE,\n\t1120:  0x55E0,\n\t1121:  0x55E2,\n\t1122:  0x55E7,\n\t1123:  0x55E9,\n\t1124:  0x55ED,\n\t1125:  0x55EE,\n\t1126:  0x55F0,\n\t1127:  0x55F1,\n\t1128:  0x55F4,\n\t1129:  0x55F6,\n\t1130:  0x55F8,\n\t1131:  0x55F9,\n\t1132:  0x55FA,\n\t1133:  0x55FB,\n\t1134:  0x55FC,\n\t1135:  0x55FF,\n\t1136:  0x5602,\n\t1137:  0x5603,\n\t1138:  0x5604,\n\t1139:  0x5605,\n\t1140:  0x5606,\n\t1141:  0x5607,\n\t1142:  0x560A,\n\t1143:  0x560B,\n\t1144:  0x560D,\n\t1145:  0x5610,\n\t1146:  0x5611,\n\t1147:  0x5612,\n\t1148:  0x5613,\n\t1149:  0x5614,\n\t1150:  0x5615,\n\t1151:  0x5616,\n\t1152:  0x5617,\n\t1153:  0x5619,\n\t1154:  0x561A,\n\t1155:  0x561C,\n\t1156:  0x561D,\n\t1157:  0x5620,\n\t1158:  0x5621,\n\t1159:  0x5622,\n\t1160:  0x5625,\n\t1161:  0x5626,\n\t1162:  0x5628,\n\t1163:  0x5629,\n\t1164:  0x562A,\n\t1165:  0x562B,\n\t1166:  0x562E,\n\t1167:  0x562F,\n\t1168:  0x5630,\n\t1169:  0x5633,\n\t1170:  0x5635,\n\t1171:  0x5637,\n\t1172:  0x5638,\n\t1173:  0x563A,\n\t1174:  0x563C,\n\t1175:  0x563D,\n\t1176:  0x563E,\n\t1177:  0x5640,\n\t1178:  0x5641,\n\t1179:  0x5642,\n\t1180:  0x5643,\n\t1181:  0x5644,\n\t1182:  0x5645,\n\t1183:  0x5646,\n\t1184:  0x5647,\n\t1185:  0x5648,\n\t1186:  0x5649,\n\t1187:  0x564A,\n\t1188:  0x564B,\n\t1189:  0x564F,\n\t1190:  0x5650,\n\t1191:  0x5651,\n\t1192:  0x5652,\n\t1193:  0x5653,\n\t1194:  0x5655,\n\t1195:  0x5656,\n\t1196:  0x565A,\n\t1197:  0x565B,\n\t1198:  0x565D,\n\t1199:  0x565E,\n\t1200:  0x565F,\n\t1201:  0x5660,\n\t1202:  0x5661,\n\t1203:  0x5663,\n\t1204:  0x5665,\n\t1205:  0x5666,\n\t1206:  0x5667,\n\t1207:  0x566D,\n\t1208:  0x566E,\n\t1209:  0x566F,\n\t1210:  0x5670,\n\t1211:  0x5672,\n\t1212:  0x5673,\n\t1213:  0x5674,\n\t1214:  0x5675,\n\t1215:  0x5677,\n\t1216:  0x5678,\n\t1217:  0x5679,\n\t1218:  0x567A,\n\t1219:  0x567D,\n\t1220:  0x567E,\n\t1221:  0x567F,\n\t1222:  0x5680,\n\t1223:  0x5681,\n\t1224:  0x5682,\n\t1225:  0x5683,\n\t1226:  0x5684,\n\t1227:  0x5687,\n\t1228:  0x5688,\n\t1229:  0x5689,\n\t1230:  0x568A,\n\t1231:  0x568B,\n\t1232:  0x568C,\n\t1233:  0x568D,\n\t1234:  0x5690,\n\t1235:  0x5691,\n\t1236:  0x5692,\n\t1237:  0x5694,\n\t1238:  0x5695,\n\t1239:  0x5696,\n\t1240:  0x5697,\n\t1241:  0x5698,\n\t1242:  0x5699,\n\t1243:  0x569A,\n\t1244:  0x569B,\n\t1245:  0x569C,\n\t1246:  0x569D,\n\t1247:  0x569E,\n\t1248:  0x569F,\n\t1249:  0x56A0,\n\t1250:  0x56A1,\n\t1251:  0x56A2,\n\t1252:  0x56A4,\n\t1253:  0x56A5,\n\t1254:  0x56A6,\n\t1255:  0x56A7,\n\t1256:  0x56A8,\n\t1257:  0x56A9,\n\t1258:  0x56AA,\n\t1259:  0x56AB,\n\t1260:  0x56AC,\n\t1261:  0x56AD,\n\t1262:  0x56AE,\n\t1263:  0x56B0,\n\t1264:  0x56B1,\n\t1265:  0x56B2,\n\t1266:  0x56B3,\n\t1267:  0x56B4,\n\t1268:  0x56B5,\n\t1269:  0x56B6,\n\t1270:  0x56B8,\n\t1271:  0x56B9,\n\t1272:  0x56BA,\n\t1273:  0x56BB,\n\t1274:  0x56BD,\n\t1275:  0x56BE,\n\t1276:  0x56BF,\n\t1277:  0x56C0,\n\t1278:  0x56C1,\n\t1279:  0x56C2,\n\t1280:  0x56C3,\n\t1281:  0x56C4,\n\t1282:  0x56C5,\n\t1283:  0x56C6,\n\t1284:  0x56C7,\n\t1285:  0x56C8,\n\t1286:  0x56C9,\n\t1287:  0x56CB,\n\t1288:  0x56CC,\n\t1289:  0x56CD,\n\t1290:  0x56CE,\n\t1291:  0x56CF,\n\t1292:  0x56D0,\n\t1293:  0x56D1,\n\t1294:  0x56D2,\n\t1295:  0x56D3,\n\t1296:  0x56D5,\n\t1297:  0x56D6,\n\t1298:  0x56D8,\n\t1299:  0x56D9,\n\t1300:  0x56DC,\n\t1301:  0x56E3,\n\t1302:  0x56E5,\n\t1303:  0x56E6,\n\t1304:  0x56E7,\n\t1305:  0x56E8,\n\t1306:  0x56E9,\n\t1307:  0x56EA,\n\t1308:  0x56EC,\n\t1309:  0x56EE,\n\t1310:  0x56EF,\n\t1311:  0x56F2,\n\t1312:  0x56F3,\n\t1313:  0x56F6,\n\t1314:  0x56F7,\n\t1315:  0x56F8,\n\t1316:  0x56FB,\n\t1317:  0x56FC,\n\t1318:  0x5700,\n\t1319:  0x5701,\n\t1320:  0x5702,\n\t1321:  0x5705,\n\t1322:  0x5707,\n\t1323:  0x570B,\n\t1324:  0x570C,\n\t1325:  0x570D,\n\t1326:  0x570E,\n\t1327:  0x570F,\n\t1328:  0x5710,\n\t1329:  0x5711,\n\t1330:  0x5712,\n\t1331:  0x5713,\n\t1332:  0x5714,\n\t1333:  0x5715,\n\t1334:  0x5716,\n\t1335:  0x5717,\n\t1336:  0x5718,\n\t1337:  0x5719,\n\t1338:  0x571A,\n\t1339:  0x571B,\n\t1340:  0x571D,\n\t1341:  0x571E,\n\t1342:  0x5720,\n\t1343:  0x5721,\n\t1344:  0x5722,\n\t1345:  0x5724,\n\t1346:  0x5725,\n\t1347:  0x5726,\n\t1348:  0x5727,\n\t1349:  0x572B,\n\t1350:  0x5731,\n\t1351:  0x5732,\n\t1352:  0x5734,\n\t1353:  0x5735,\n\t1354:  0x5736,\n\t1355:  0x5737,\n\t1356:  0x5738,\n\t1357:  0x573C,\n\t1358:  0x573D,\n\t1359:  0x573F,\n\t1360:  0x5741,\n\t1361:  0x5743,\n\t1362:  0x5744,\n\t1363:  0x5745,\n\t1364:  0x5746,\n\t1365:  0x5748,\n\t1366:  0x5749,\n\t1367:  0x574B,\n\t1368:  0x5752,\n\t1369:  0x5753,\n\t1370:  0x5754,\n\t1371:  0x5755,\n\t1372:  0x5756,\n\t1373:  0x5758,\n\t1374:  0x5759,\n\t1375:  0x5762,\n\t1376:  0x5763,\n\t1377:  0x5765,\n\t1378:  0x5767,\n\t1379:  0x576C,\n\t1380:  0x576E,\n\t1381:  0x5770,\n\t1382:  0x5771,\n\t1383:  0x5772,\n\t1384:  0x5774,\n\t1385:  0x5775,\n\t1386:  0x5778,\n\t1387:  0x5779,\n\t1388:  0x577A,\n\t1389:  0x577D,\n\t1390:  0x577E,\n\t1391:  0x577F,\n\t1392:  0x5780,\n\t1393:  0x5781,\n\t1394:  0x5787,\n\t1395:  0x5788,\n\t1396:  0x5789,\n\t1397:  0x578A,\n\t1398:  0x578D,\n\t1399:  0x578E,\n\t1400:  0x578F,\n\t1401:  0x5790,\n\t1402:  0x5791,\n\t1403:  0x5794,\n\t1404:  0x5795,\n\t1405:  0x5796,\n\t1406:  0x5797,\n\t1407:  0x5798,\n\t1408:  0x5799,\n\t1409:  0x579A,\n\t1410:  0x579C,\n\t1411:  0x579D,\n\t1412:  0x579E,\n\t1413:  0x579F,\n\t1414:  0x57A5,\n\t1415:  0x57A8,\n\t1416:  0x57AA,\n\t1417:  0x57AC,\n\t1418:  0x57AF,\n\t1419:  0x57B0,\n\t1420:  0x57B1,\n\t1421:  0x57B3,\n\t1422:  0x57B5,\n\t1423:  0x57B6,\n\t1424:  0x57B7,\n\t1425:  0x57B9,\n\t1426:  0x57BA,\n\t1427:  0x57BB,\n\t1428:  0x57BC,\n\t1429:  0x57BD,\n\t1430:  0x57BE,\n\t1431:  0x57BF,\n\t1432:  0x57C0,\n\t1433:  0x57C1,\n\t1434:  0x57C4,\n\t1435:  0x57C5,\n\t1436:  0x57C6,\n\t1437:  0x57C7,\n\t1438:  0x57C8,\n\t1439:  0x57C9,\n\t1440:  0x57CA,\n\t1441:  0x57CC,\n\t1442:  0x57CD,\n\t1443:  0x57D0,\n\t1444:  0x57D1,\n\t1445:  0x57D3,\n\t1446:  0x57D6,\n\t1447:  0x57D7,\n\t1448:  0x57DB,\n\t1449:  0x57DC,\n\t1450:  0x57DE,\n\t1451:  0x57E1,\n\t1452:  0x57E2,\n\t1453:  0x57E3,\n\t1454:  0x57E5,\n\t1455:  0x57E6,\n\t1456:  0x57E7,\n\t1457:  0x57E8,\n\t1458:  0x57E9,\n\t1459:  0x57EA,\n\t1460:  0x57EB,\n\t1461:  0x57EC,\n\t1462:  0x57EE,\n\t1463:  0x57F0,\n\t1464:  0x57F1,\n\t1465:  0x57F2,\n\t1466:  0x57F3,\n\t1467:  0x57F5,\n\t1468:  0x57F6,\n\t1469:  0x57F7,\n\t1470:  0x57FB,\n\t1471:  0x57FC,\n\t1472:  0x57FE,\n\t1473:  0x57FF,\n\t1474:  0x5801,\n\t1475:  0x5803,\n\t1476:  0x5804,\n\t1477:  0x5805,\n\t1478:  0x5808,\n\t1479:  0x5809,\n\t1480:  0x580A,\n\t1481:  0x580C,\n\t1482:  0x580E,\n\t1483:  0x580F,\n\t1484:  0x5810,\n\t1485:  0x5812,\n\t1486:  0x5813,\n\t1487:  0x5814,\n\t1488:  0x5816,\n\t1489:  0x5817,\n\t1490:  0x5818,\n\t1491:  0x581A,\n\t1492:  0x581B,\n\t1493:  0x581C,\n\t1494:  0x581D,\n\t1495:  0x581F,\n\t1496:  0x5822,\n\t1497:  0x5823,\n\t1498:  0x5825,\n\t1499:  0x5826,\n\t1500:  0x5827,\n\t1501:  0x5828,\n\t1502:  0x5829,\n\t1503:  0x582B,\n\t1504:  0x582C,\n\t1505:  0x582D,\n\t1506:  0x582E,\n\t1507:  0x582F,\n\t1508:  0x5831,\n\t1509:  0x5832,\n\t1510:  0x5833,\n\t1511:  0x5834,\n\t1512:  0x5836,\n\t1513:  0x5837,\n\t1514:  0x5838,\n\t1515:  0x5839,\n\t1516:  0x583A,\n\t1517:  0x583B,\n\t1518:  0x583C,\n\t1519:  0x583D,\n\t1520:  0x583E,\n\t1521:  0x583F,\n\t1522:  0x5840,\n\t1523:  0x5841,\n\t1524:  0x5842,\n\t1525:  0x5843,\n\t1526:  0x5845,\n\t1527:  0x5846,\n\t1528:  0x5847,\n\t1529:  0x5848,\n\t1530:  0x5849,\n\t1531:  0x584A,\n\t1532:  0x584B,\n\t1533:  0x584E,\n\t1534:  0x584F,\n\t1535:  0x5850,\n\t1536:  0x5852,\n\t1537:  0x5853,\n\t1538:  0x5855,\n\t1539:  0x5856,\n\t1540:  0x5857,\n\t1541:  0x5859,\n\t1542:  0x585A,\n\t1543:  0x585B,\n\t1544:  0x585C,\n\t1545:  0x585D,\n\t1546:  0x585F,\n\t1547:  0x5860,\n\t1548:  0x5861,\n\t1549:  0x5862,\n\t1550:  0x5863,\n\t1551:  0x5864,\n\t1552:  0x5866,\n\t1553:  0x5867,\n\t1554:  0x5868,\n\t1555:  0x5869,\n\t1556:  0x586A,\n\t1557:  0x586D,\n\t1558:  0x586E,\n\t1559:  0x586F,\n\t1560:  0x5870,\n\t1561:  0x5871,\n\t1562:  0x5872,\n\t1563:  0x5873,\n\t1564:  0x5874,\n\t1565:  0x5875,\n\t1566:  0x5876,\n\t1567:  0x5877,\n\t1568:  0x5878,\n\t1569:  0x5879,\n\t1570:  0x587A,\n\t1571:  0x587B,\n\t1572:  0x587C,\n\t1573:  0x587D,\n\t1574:  0x587F,\n\t1575:  0x5882,\n\t1576:  0x5884,\n\t1577:  0x5886,\n\t1578:  0x5887,\n\t1579:  0x5888,\n\t1580:  0x588A,\n\t1581:  0x588B,\n\t1582:  0x588C,\n\t1583:  0x588D,\n\t1584:  0x588E,\n\t1585:  0x588F,\n\t1586:  0x5890,\n\t1587:  0x5891,\n\t1588:  0x5894,\n\t1589:  0x5895,\n\t1590:  0x5896,\n\t1591:  0x5897,\n\t1592:  0x5898,\n\t1593:  0x589B,\n\t1594:  0x589C,\n\t1595:  0x589D,\n\t1596:  0x58A0,\n\t1597:  0x58A1,\n\t1598:  0x58A2,\n\t1599:  0x58A3,\n\t1600:  0x58A4,\n\t1601:  0x58A5,\n\t1602:  0x58A6,\n\t1603:  0x58A7,\n\t1604:  0x58AA,\n\t1605:  0x58AB,\n\t1606:  0x58AC,\n\t1607:  0x58AD,\n\t1608:  0x58AE,\n\t1609:  0x58AF,\n\t1610:  0x58B0,\n\t1611:  0x58B1,\n\t1612:  0x58B2,\n\t1613:  0x58B3,\n\t1614:  0x58B4,\n\t1615:  0x58B5,\n\t1616:  0x58B6,\n\t1617:  0x58B7,\n\t1618:  0x58B8,\n\t1619:  0x58B9,\n\t1620:  0x58BA,\n\t1621:  0x58BB,\n\t1622:  0x58BD,\n\t1623:  0x58BE,\n\t1624:  0x58BF,\n\t1625:  0x58C0,\n\t1626:  0x58C2,\n\t1627:  0x58C3,\n\t1628:  0x58C4,\n\t1629:  0x58C6,\n\t1630:  0x58C7,\n\t1631:  0x58C8,\n\t1632:  0x58C9,\n\t1633:  0x58CA,\n\t1634:  0x58CB,\n\t1635:  0x58CC,\n\t1636:  0x58CD,\n\t1637:  0x58CE,\n\t1638:  0x58CF,\n\t1639:  0x58D0,\n\t1640:  0x58D2,\n\t1641:  0x58D3,\n\t1642:  0x58D4,\n\t1643:  0x58D6,\n\t1644:  0x58D7,\n\t1645:  0x58D8,\n\t1646:  0x58D9,\n\t1647:  0x58DA,\n\t1648:  0x58DB,\n\t1649:  0x58DC,\n\t1650:  0x58DD,\n\t1651:  0x58DE,\n\t1652:  0x58DF,\n\t1653:  0x58E0,\n\t1654:  0x58E1,\n\t1655:  0x58E2,\n\t1656:  0x58E3,\n\t1657:  0x58E5,\n\t1658:  0x58E6,\n\t1659:  0x58E7,\n\t1660:  0x58E8,\n\t1661:  0x58E9,\n\t1662:  0x58EA,\n\t1663:  0x58ED,\n\t1664:  0x58EF,\n\t1665:  0x58F1,\n\t1666:  0x58F2,\n\t1667:  0x58F4,\n\t1668:  0x58F5,\n\t1669:  0x58F7,\n\t1670:  0x58F8,\n\t1671:  0x58FA,\n\t1672:  0x58FB,\n\t1673:  0x58FC,\n\t1674:  0x58FD,\n\t1675:  0x58FE,\n\t1676:  0x58FF,\n\t1677:  0x5900,\n\t1678:  0x5901,\n\t1679:  0x5903,\n\t1680:  0x5905,\n\t1681:  0x5906,\n\t1682:  0x5908,\n\t1683:  0x5909,\n\t1684:  0x590A,\n\t1685:  0x590B,\n\t1686:  0x590C,\n\t1687:  0x590E,\n\t1688:  0x5910,\n\t1689:  0x5911,\n\t1690:  0x5912,\n\t1691:  0x5913,\n\t1692:  0x5917,\n\t1693:  0x5918,\n\t1694:  0x591B,\n\t1695:  0x591D,\n\t1696:  0x591E,\n\t1697:  0x5920,\n\t1698:  0x5921,\n\t1699:  0x5922,\n\t1700:  0x5923,\n\t1701:  0x5926,\n\t1702:  0x5928,\n\t1703:  0x592C,\n\t1704:  0x5930,\n\t1705:  0x5932,\n\t1706:  0x5933,\n\t1707:  0x5935,\n\t1708:  0x5936,\n\t1709:  0x593B,\n\t1710:  0x593D,\n\t1711:  0x593E,\n\t1712:  0x593F,\n\t1713:  0x5940,\n\t1714:  0x5943,\n\t1715:  0x5945,\n\t1716:  0x5946,\n\t1717:  0x594A,\n\t1718:  0x594C,\n\t1719:  0x594D,\n\t1720:  0x5950,\n\t1721:  0x5952,\n\t1722:  0x5953,\n\t1723:  0x5959,\n\t1724:  0x595B,\n\t1725:  0x595C,\n\t1726:  0x595D,\n\t1727:  0x595E,\n\t1728:  0x595F,\n\t1729:  0x5961,\n\t1730:  0x5963,\n\t1731:  0x5964,\n\t1732:  0x5966,\n\t1733:  0x5967,\n\t1734:  0x5968,\n\t1735:  0x5969,\n\t1736:  0x596A,\n\t1737:  0x596B,\n\t1738:  0x596C,\n\t1739:  0x596D,\n\t1740:  0x596E,\n\t1741:  0x596F,\n\t1742:  0x5970,\n\t1743:  0x5971,\n\t1744:  0x5972,\n\t1745:  0x5975,\n\t1746:  0x5977,\n\t1747:  0x597A,\n\t1748:  0x597B,\n\t1749:  0x597C,\n\t1750:  0x597E,\n\t1751:  0x597F,\n\t1752:  0x5980,\n\t1753:  0x5985,\n\t1754:  0x5989,\n\t1755:  0x598B,\n\t1756:  0x598C,\n\t1757:  0x598E,\n\t1758:  0x598F,\n\t1759:  0x5990,\n\t1760:  0x5991,\n\t1761:  0x5994,\n\t1762:  0x5995,\n\t1763:  0x5998,\n\t1764:  0x599A,\n\t1765:  0x599B,\n\t1766:  0x599C,\n\t1767:  0x599D,\n\t1768:  0x599F,\n\t1769:  0x59A0,\n\t1770:  0x59A1,\n\t1771:  0x59A2,\n\t1772:  0x59A6,\n\t1773:  0x59A7,\n\t1774:  0x59AC,\n\t1775:  0x59AD,\n\t1776:  0x59B0,\n\t1777:  0x59B1,\n\t1778:  0x59B3,\n\t1779:  0x59B4,\n\t1780:  0x59B5,\n\t1781:  0x59B6,\n\t1782:  0x59B7,\n\t1783:  0x59B8,\n\t1784:  0x59BA,\n\t1785:  0x59BC,\n\t1786:  0x59BD,\n\t1787:  0x59BF,\n\t1788:  0x59C0,\n\t1789:  0x59C1,\n\t1790:  0x59C2,\n\t1791:  0x59C3,\n\t1792:  0x59C4,\n\t1793:  0x59C5,\n\t1794:  0x59C7,\n\t1795:  0x59C8,\n\t1796:  0x59C9,\n\t1797:  0x59CC,\n\t1798:  0x59CD,\n\t1799:  0x59CE,\n\t1800:  0x59CF,\n\t1801:  0x59D5,\n\t1802:  0x59D6,\n\t1803:  0x59D9,\n\t1804:  0x59DB,\n\t1805:  0x59DE,\n\t1806:  0x59DF,\n\t1807:  0x59E0,\n\t1808:  0x59E1,\n\t1809:  0x59E2,\n\t1810:  0x59E4,\n\t1811:  0x59E6,\n\t1812:  0x59E7,\n\t1813:  0x59E9,\n\t1814:  0x59EA,\n\t1815:  0x59EB,\n\t1816:  0x59ED,\n\t1817:  0x59EE,\n\t1818:  0x59EF,\n\t1819:  0x59F0,\n\t1820:  0x59F1,\n\t1821:  0x59F2,\n\t1822:  0x59F3,\n\t1823:  0x59F4,\n\t1824:  0x59F5,\n\t1825:  0x59F6,\n\t1826:  0x59F7,\n\t1827:  0x59F8,\n\t1828:  0x59FA,\n\t1829:  0x59FC,\n\t1830:  0x59FD,\n\t1831:  0x59FE,\n\t1832:  0x5A00,\n\t1833:  0x5A02,\n\t1834:  0x5A0A,\n\t1835:  0x5A0B,\n\t1836:  0x5A0D,\n\t1837:  0x5A0E,\n\t1838:  0x5A0F,\n\t1839:  0x5A10,\n\t1840:  0x5A12,\n\t1841:  0x5A14,\n\t1842:  0x5A15,\n\t1843:  0x5A16,\n\t1844:  0x5A17,\n\t1845:  0x5A19,\n\t1846:  0x5A1A,\n\t1847:  0x5A1B,\n\t1848:  0x5A1D,\n\t1849:  0x5A1E,\n\t1850:  0x5A21,\n\t1851:  0x5A22,\n\t1852:  0x5A24,\n\t1853:  0x5A26,\n\t1854:  0x5A27,\n\t1855:  0x5A28,\n\t1856:  0x5A2A,\n\t1857:  0x5A2B,\n\t1858:  0x5A2C,\n\t1859:  0x5A2D,\n\t1860:  0x5A2E,\n\t1861:  0x5A2F,\n\t1862:  0x5A30,\n\t1863:  0x5A33,\n\t1864:  0x5A35,\n\t1865:  0x5A37,\n\t1866:  0x5A38,\n\t1867:  0x5A39,\n\t1868:  0x5A3A,\n\t1869:  0x5A3B,\n\t1870:  0x5A3D,\n\t1871:  0x5A3E,\n\t1872:  0x5A3F,\n\t1873:  0x5A41,\n\t1874:  0x5A42,\n\t1875:  0x5A43,\n\t1876:  0x5A44,\n\t1877:  0x5A45,\n\t1878:  0x5A47,\n\t1879:  0x5A48,\n\t1880:  0x5A4B,\n\t1881:  0x5A4C,\n\t1882:  0x5A4D,\n\t1883:  0x5A4E,\n\t1884:  0x5A4F,\n\t1885:  0x5A50,\n\t1886:  0x5A51,\n\t1887:  0x5A52,\n\t1888:  0x5A53,\n\t1889:  0x5A54,\n\t1890:  0x5A56,\n\t1891:  0x5A57,\n\t1892:  0x5A58,\n\t1893:  0x5A59,\n\t1894:  0x5A5B,\n\t1895:  0x5A5C,\n\t1896:  0x5A5D,\n\t1897:  0x5A5E,\n\t1898:  0x5A5F,\n\t1899:  0x5A60,\n\t1900:  0x5A61,\n\t1901:  0x5A63,\n\t1902:  0x5A64,\n\t1903:  0x5A65,\n\t1904:  0x5A66,\n\t1905:  0x5A68,\n\t1906:  0x5A69,\n\t1907:  0x5A6B,\n\t1908:  0x5A6C,\n\t1909:  0x5A6D,\n\t1910:  0x5A6E,\n\t1911:  0x5A6F,\n\t1912:  0x5A70,\n\t1913:  0x5A71,\n\t1914:  0x5A72,\n\t1915:  0x5A73,\n\t1916:  0x5A78,\n\t1917:  0x5A79,\n\t1918:  0x5A7B,\n\t1919:  0x5A7C,\n\t1920:  0x5A7D,\n\t1921:  0x5A7E,\n\t1922:  0x5A80,\n\t1923:  0x5A81,\n\t1924:  0x5A82,\n\t1925:  0x5A83,\n\t1926:  0x5A84,\n\t1927:  0x5A85,\n\t1928:  0x5A86,\n\t1929:  0x5A87,\n\t1930:  0x5A88,\n\t1931:  0x5A89,\n\t1932:  0x5A8A,\n\t1933:  0x5A8B,\n\t1934:  0x5A8C,\n\t1935:  0x5A8D,\n\t1936:  0x5A8E,\n\t1937:  0x5A8F,\n\t1938:  0x5A90,\n\t1939:  0x5A91,\n\t1940:  0x5A93,\n\t1941:  0x5A94,\n\t1942:  0x5A95,\n\t1943:  0x5A96,\n\t1944:  0x5A97,\n\t1945:  0x5A98,\n\t1946:  0x5A99,\n\t1947:  0x5A9C,\n\t1948:  0x5A9D,\n\t1949:  0x5A9E,\n\t1950:  0x5A9F,\n\t1951:  0x5AA0,\n\t1952:  0x5AA1,\n\t1953:  0x5AA2,\n\t1954:  0x5AA3,\n\t1955:  0x5AA4,\n\t1956:  0x5AA5,\n\t1957:  0x5AA6,\n\t1958:  0x5AA7,\n\t1959:  0x5AA8,\n\t1960:  0x5AA9,\n\t1961:  0x5AAB,\n\t1962:  0x5AAC,\n\t1963:  0x5AAD,\n\t1964:  0x5AAE,\n\t1965:  0x5AAF,\n\t1966:  0x5AB0,\n\t1967:  0x5AB1,\n\t1968:  0x5AB4,\n\t1969:  0x5AB6,\n\t1970:  0x5AB7,\n\t1971:  0x5AB9,\n\t1972:  0x5ABA,\n\t1973:  0x5ABB,\n\t1974:  0x5ABC,\n\t1975:  0x5ABD,\n\t1976:  0x5ABF,\n\t1977:  0x5AC0,\n\t1978:  0x5AC3,\n\t1979:  0x5AC4,\n\t1980:  0x5AC5,\n\t1981:  0x5AC6,\n\t1982:  0x5AC7,\n\t1983:  0x5AC8,\n\t1984:  0x5ACA,\n\t1985:  0x5ACB,\n\t1986:  0x5ACD,\n\t1987:  0x5ACE,\n\t1988:  0x5ACF,\n\t1989:  0x5AD0,\n\t1990:  0x5AD1,\n\t1991:  0x5AD3,\n\t1992:  0x5AD5,\n\t1993:  0x5AD7,\n\t1994:  0x5AD9,\n\t1995:  0x5ADA,\n\t1996:  0x5ADB,\n\t1997:  0x5ADD,\n\t1998:  0x5ADE,\n\t1999:  0x5ADF,\n\t2000:  0x5AE2,\n\t2001:  0x5AE4,\n\t2002:  0x5AE5,\n\t2003:  0x5AE7,\n\t2004:  0x5AE8,\n\t2005:  0x5AEA,\n\t2006:  0x5AEC,\n\t2007:  0x5AED,\n\t2008:  0x5AEE,\n\t2009:  0x5AEF,\n\t2010:  0x5AF0,\n\t2011:  0x5AF2,\n\t2012:  0x5AF3,\n\t2013:  0x5AF4,\n\t2014:  0x5AF5,\n\t2015:  0x5AF6,\n\t2016:  0x5AF7,\n\t2017:  0x5AF8,\n\t2018:  0x5AF9,\n\t2019:  0x5AFA,\n\t2020:  0x5AFB,\n\t2021:  0x5AFC,\n\t2022:  0x5AFD,\n\t2023:  0x5AFE,\n\t2024:  0x5AFF,\n\t2025:  0x5B00,\n\t2026:  0x5B01,\n\t2027:  0x5B02,\n\t2028:  0x5B03,\n\t2029:  0x5B04,\n\t2030:  0x5B05,\n\t2031:  0x5B06,\n\t2032:  0x5B07,\n\t2033:  0x5B08,\n\t2034:  0x5B0A,\n\t2035:  0x5B0B,\n\t2036:  0x5B0C,\n\t2037:  0x5B0D,\n\t2038:  0x5B0E,\n\t2039:  0x5B0F,\n\t2040:  0x5B10,\n\t2041:  0x5B11,\n\t2042:  0x5B12,\n\t2043:  0x5B13,\n\t2044:  0x5B14,\n\t2045:  0x5B15,\n\t2046:  0x5B18,\n\t2047:  0x5B19,\n\t2048:  0x5B1A,\n\t2049:  0x5B1B,\n\t2050:  0x5B1C,\n\t2051:  0x5B1D,\n\t2052:  0x5B1E,\n\t2053:  0x5B1F,\n\t2054:  0x5B20,\n\t2055:  0x5B21,\n\t2056:  0x5B22,\n\t2057:  0x5B23,\n\t2058:  0x5B24,\n\t2059:  0x5B25,\n\t2060:  0x5B26,\n\t2061:  0x5B27,\n\t2062:  0x5B28,\n\t2063:  0x5B29,\n\t2064:  0x5B2A,\n\t2065:  0x5B2B,\n\t2066:  0x5B2C,\n\t2067:  0x5B2D,\n\t2068:  0x5B2E,\n\t2069:  0x5B2F,\n\t2070:  0x5B30,\n\t2071:  0x5B31,\n\t2072:  0x5B33,\n\t2073:  0x5B35,\n\t2074:  0x5B36,\n\t2075:  0x5B38,\n\t2076:  0x5B39,\n\t2077:  0x5B3A,\n\t2078:  0x5B3B,\n\t2079:  0x5B3C,\n\t2080:  0x5B3D,\n\t2081:  0x5B3E,\n\t2082:  0x5B3F,\n\t2083:  0x5B41,\n\t2084:  0x5B42,\n\t2085:  0x5B43,\n\t2086:  0x5B44,\n\t2087:  0x5B45,\n\t2088:  0x5B46,\n\t2089:  0x5B47,\n\t2090:  0x5B48,\n\t2091:  0x5B49,\n\t2092:  0x5B4A,\n\t2093:  0x5B4B,\n\t2094:  0x5B4C,\n\t2095:  0x5B4D,\n\t2096:  0x5B4E,\n\t2097:  0x5B4F,\n\t2098:  0x5B52,\n\t2099:  0x5B56,\n\t2100:  0x5B5E,\n\t2101:  0x5B60,\n\t2102:  0x5B61,\n\t2103:  0x5B67,\n\t2104:  0x5B68,\n\t2105:  0x5B6B,\n\t2106:  0x5B6D,\n\t2107:  0x5B6E,\n\t2108:  0x5B6F,\n\t2109:  0x5B72,\n\t2110:  0x5B74,\n\t2111:  0x5B76,\n\t2112:  0x5B77,\n\t2113:  0x5B78,\n\t2114:  0x5B79,\n\t2115:  0x5B7B,\n\t2116:  0x5B7C,\n\t2117:  0x5B7E,\n\t2118:  0x5B7F,\n\t2119:  0x5B82,\n\t2120:  0x5B86,\n\t2121:  0x5B8A,\n\t2122:  0x5B8D,\n\t2123:  0x5B8E,\n\t2124:  0x5B90,\n\t2125:  0x5B91,\n\t2126:  0x5B92,\n\t2127:  0x5B94,\n\t2128:  0x5B96,\n\t2129:  0x5B9F,\n\t2130:  0x5BA7,\n\t2131:  0x5BA8,\n\t2132:  0x5BA9,\n\t2133:  0x5BAC,\n\t2134:  0x5BAD,\n\t2135:  0x5BAE,\n\t2136:  0x5BAF,\n\t2137:  0x5BB1,\n\t2138:  0x5BB2,\n\t2139:  0x5BB7,\n\t2140:  0x5BBA,\n\t2141:  0x5BBB,\n\t2142:  0x5BBC,\n\t2143:  0x5BC0,\n\t2144:  0x5BC1,\n\t2145:  0x5BC3,\n\t2146:  0x5BC8,\n\t2147:  0x5BC9,\n\t2148:  0x5BCA,\n\t2149:  0x5BCB,\n\t2150:  0x5BCD,\n\t2151:  0x5BCE,\n\t2152:  0x5BCF,\n\t2153:  0x5BD1,\n\t2154:  0x5BD4,\n\t2155:  0x5BD5,\n\t2156:  0x5BD6,\n\t2157:  0x5BD7,\n\t2158:  0x5BD8,\n\t2159:  0x5BD9,\n\t2160:  0x5BDA,\n\t2161:  0x5BDB,\n\t2162:  0x5BDC,\n\t2163:  0x5BE0,\n\t2164:  0x5BE2,\n\t2165:  0x5BE3,\n\t2166:  0x5BE6,\n\t2167:  0x5BE7,\n\t2168:  0x5BE9,\n\t2169:  0x5BEA,\n\t2170:  0x5BEB,\n\t2171:  0x5BEC,\n\t2172:  0x5BED,\n\t2173:  0x5BEF,\n\t2174:  0x5BF1,\n\t2175:  0x5BF2,\n\t2176:  0x5BF3,\n\t2177:  0x5BF4,\n\t2178:  0x5BF5,\n\t2179:  0x5BF6,\n\t2180:  0x5BF7,\n\t2181:  0x5BFD,\n\t2182:  0x5BFE,\n\t2183:  0x5C00,\n\t2184:  0x5C02,\n\t2185:  0x5C03,\n\t2186:  0x5C05,\n\t2187:  0x5C07,\n\t2188:  0x5C08,\n\t2189:  0x5C0B,\n\t2190:  0x5C0C,\n\t2191:  0x5C0D,\n\t2192:  0x5C0E,\n\t2193:  0x5C10,\n\t2194:  0x5C12,\n\t2195:  0x5C13,\n\t2196:  0x5C17,\n\t2197:  0x5C19,\n\t2198:  0x5C1B,\n\t2199:  0x5C1E,\n\t2200:  0x5C1F,\n\t2201:  0x5C20,\n\t2202:  0x5C21,\n\t2203:  0x5C23,\n\t2204:  0x5C26,\n\t2205:  0x5C28,\n\t2206:  0x5C29,\n\t2207:  0x5C2A,\n\t2208:  0x5C2B,\n\t2209:  0x5C2D,\n\t2210:  0x5C2E,\n\t2211:  0x5C2F,\n\t2212:  0x5C30,\n\t2213:  0x5C32,\n\t2214:  0x5C33,\n\t2215:  0x5C35,\n\t2216:  0x5C36,\n\t2217:  0x5C37,\n\t2218:  0x5C43,\n\t2219:  0x5C44,\n\t2220:  0x5C46,\n\t2221:  0x5C47,\n\t2222:  0x5C4C,\n\t2223:  0x5C4D,\n\t2224:  0x5C52,\n\t2225:  0x5C53,\n\t2226:  0x5C54,\n\t2227:  0x5C56,\n\t2228:  0x5C57,\n\t2229:  0x5C58,\n\t2230:  0x5C5A,\n\t2231:  0x5C5B,\n\t2232:  0x5C5C,\n\t2233:  0x5C5D,\n\t2234:  0x5C5F,\n\t2235:  0x5C62,\n\t2236:  0x5C64,\n\t2237:  0x5C67,\n\t2238:  0x5C68,\n\t2239:  0x5C69,\n\t2240:  0x5C6A,\n\t2241:  0x5C6B,\n\t2242:  0x5C6C,\n\t2243:  0x5C6D,\n\t2244:  0x5C70,\n\t2245:  0x5C72,\n\t2246:  0x5C73,\n\t2247:  0x5C74,\n\t2248:  0x5C75,\n\t2249:  0x5C76,\n\t2250:  0x5C77,\n\t2251:  0x5C78,\n\t2252:  0x5C7B,\n\t2253:  0x5C7C,\n\t2254:  0x5C7D,\n\t2255:  0x5C7E,\n\t2256:  0x5C80,\n\t2257:  0x5C83,\n\t2258:  0x5C84,\n\t2259:  0x5C85,\n\t2260:  0x5C86,\n\t2261:  0x5C87,\n\t2262:  0x5C89,\n\t2263:  0x5C8A,\n\t2264:  0x5C8B,\n\t2265:  0x5C8E,\n\t2266:  0x5C8F,\n\t2267:  0x5C92,\n\t2268:  0x5C93,\n\t2269:  0x5C95,\n\t2270:  0x5C9D,\n\t2271:  0x5C9E,\n\t2272:  0x5C9F,\n\t2273:  0x5CA0,\n\t2274:  0x5CA1,\n\t2275:  0x5CA4,\n\t2276:  0x5CA5,\n\t2277:  0x5CA6,\n\t2278:  0x5CA7,\n\t2279:  0x5CA8,\n\t2280:  0x5CAA,\n\t2281:  0x5CAE,\n\t2282:  0x5CAF,\n\t2283:  0x5CB0,\n\t2284:  0x5CB2,\n\t2285:  0x5CB4,\n\t2286:  0x5CB6,\n\t2287:  0x5CB9,\n\t2288:  0x5CBA,\n\t2289:  0x5CBB,\n\t2290:  0x5CBC,\n\t2291:  0x5CBE,\n\t2292:  0x5CC0,\n\t2293:  0x5CC2,\n\t2294:  0x5CC3,\n\t2295:  0x5CC5,\n\t2296:  0x5CC6,\n\t2297:  0x5CC7,\n\t2298:  0x5CC8,\n\t2299:  0x5CC9,\n\t2300:  0x5CCA,\n\t2301:  0x5CCC,\n\t2302:  0x5CCD,\n\t2303:  0x5CCE,\n\t2304:  0x5CCF,\n\t2305:  0x5CD0,\n\t2306:  0x5CD1,\n\t2307:  0x5CD3,\n\t2308:  0x5CD4,\n\t2309:  0x5CD5,\n\t2310:  0x5CD6,\n\t2311:  0x5CD7,\n\t2312:  0x5CD8,\n\t2313:  0x5CDA,\n\t2314:  0x5CDB,\n\t2315:  0x5CDC,\n\t2316:  0x5CDD,\n\t2317:  0x5CDE,\n\t2318:  0x5CDF,\n\t2319:  0x5CE0,\n\t2320:  0x5CE2,\n\t2321:  0x5CE3,\n\t2322:  0x5CE7,\n\t2323:  0x5CE9,\n\t2324:  0x5CEB,\n\t2325:  0x5CEC,\n\t2326:  0x5CEE,\n\t2327:  0x5CEF,\n\t2328:  0x5CF1,\n\t2329:  0x5CF2,\n\t2330:  0x5CF3,\n\t2331:  0x5CF4,\n\t2332:  0x5CF5,\n\t2333:  0x5CF6,\n\t2334:  0x5CF7,\n\t2335:  0x5CF8,\n\t2336:  0x5CF9,\n\t2337:  0x5CFA,\n\t2338:  0x5CFC,\n\t2339:  0x5CFD,\n\t2340:  0x5CFE,\n\t2341:  0x5CFF,\n\t2342:  0x5D00,\n\t2343:  0x5D01,\n\t2344:  0x5D04,\n\t2345:  0x5D05,\n\t2346:  0x5D08,\n\t2347:  0x5D09,\n\t2348:  0x5D0A,\n\t2349:  0x5D0B,\n\t2350:  0x5D0C,\n\t2351:  0x5D0D,\n\t2352:  0x5D0F,\n\t2353:  0x5D10,\n\t2354:  0x5D11,\n\t2355:  0x5D12,\n\t2356:  0x5D13,\n\t2357:  0x5D15,\n\t2358:  0x5D17,\n\t2359:  0x5D18,\n\t2360:  0x5D19,\n\t2361:  0x5D1A,\n\t2362:  0x5D1C,\n\t2363:  0x5D1D,\n\t2364:  0x5D1F,\n\t2365:  0x5D20,\n\t2366:  0x5D21,\n\t2367:  0x5D22,\n\t2368:  0x5D23,\n\t2369:  0x5D25,\n\t2370:  0x5D28,\n\t2371:  0x5D2A,\n\t2372:  0x5D2B,\n\t2373:  0x5D2C,\n\t2374:  0x5D2F,\n\t2375:  0x5D30,\n\t2376:  0x5D31,\n\t2377:  0x5D32,\n\t2378:  0x5D33,\n\t2379:  0x5D35,\n\t2380:  0x5D36,\n\t2381:  0x5D37,\n\t2382:  0x5D38,\n\t2383:  0x5D39,\n\t2384:  0x5D3A,\n\t2385:  0x5D3B,\n\t2386:  0x5D3C,\n\t2387:  0x5D3F,\n\t2388:  0x5D40,\n\t2389:  0x5D41,\n\t2390:  0x5D42,\n\t2391:  0x5D43,\n\t2392:  0x5D44,\n\t2393:  0x5D45,\n\t2394:  0x5D46,\n\t2395:  0x5D48,\n\t2396:  0x5D49,\n\t2397:  0x5D4D,\n\t2398:  0x5D4E,\n\t2399:  0x5D4F,\n\t2400:  0x5D50,\n\t2401:  0x5D51,\n\t2402:  0x5D52,\n\t2403:  0x5D53,\n\t2404:  0x5D54,\n\t2405:  0x5D55,\n\t2406:  0x5D56,\n\t2407:  0x5D57,\n\t2408:  0x5D59,\n\t2409:  0x5D5A,\n\t2410:  0x5D5C,\n\t2411:  0x5D5E,\n\t2412:  0x5D5F,\n\t2413:  0x5D60,\n\t2414:  0x5D61,\n\t2415:  0x5D62,\n\t2416:  0x5D63,\n\t2417:  0x5D64,\n\t2418:  0x5D65,\n\t2419:  0x5D66,\n\t2420:  0x5D67,\n\t2421:  0x5D68,\n\t2422:  0x5D6A,\n\t2423:  0x5D6D,\n\t2424:  0x5D6E,\n\t2425:  0x5D70,\n\t2426:  0x5D71,\n\t2427:  0x5D72,\n\t2428:  0x5D73,\n\t2429:  0x5D75,\n\t2430:  0x5D76,\n\t2431:  0x5D77,\n\t2432:  0x5D78,\n\t2433:  0x5D79,\n\t2434:  0x5D7A,\n\t2435:  0x5D7B,\n\t2436:  0x5D7C,\n\t2437:  0x5D7D,\n\t2438:  0x5D7E,\n\t2439:  0x5D7F,\n\t2440:  0x5D80,\n\t2441:  0x5D81,\n\t2442:  0x5D83,\n\t2443:  0x5D84,\n\t2444:  0x5D85,\n\t2445:  0x5D86,\n\t2446:  0x5D87,\n\t2447:  0x5D88,\n\t2448:  0x5D89,\n\t2449:  0x5D8A,\n\t2450:  0x5D8B,\n\t2451:  0x5D8C,\n\t2452:  0x5D8D,\n\t2453:  0x5D8E,\n\t2454:  0x5D8F,\n\t2455:  0x5D90,\n\t2456:  0x5D91,\n\t2457:  0x5D92,\n\t2458:  0x5D93,\n\t2459:  0x5D94,\n\t2460:  0x5D95,\n\t2461:  0x5D96,\n\t2462:  0x5D97,\n\t2463:  0x5D98,\n\t2464:  0x5D9A,\n\t2465:  0x5D9B,\n\t2466:  0x5D9C,\n\t2467:  0x5D9E,\n\t2468:  0x5D9F,\n\t2469:  0x5DA0,\n\t2470:  0x5DA1,\n\t2471:  0x5DA2,\n\t2472:  0x5DA3,\n\t2473:  0x5DA4,\n\t2474:  0x5DA5,\n\t2475:  0x5DA6,\n\t2476:  0x5DA7,\n\t2477:  0x5DA8,\n\t2478:  0x5DA9,\n\t2479:  0x5DAA,\n\t2480:  0x5DAB,\n\t2481:  0x5DAC,\n\t2482:  0x5DAD,\n\t2483:  0x5DAE,\n\t2484:  0x5DAF,\n\t2485:  0x5DB0,\n\t2486:  0x5DB1,\n\t2487:  0x5DB2,\n\t2488:  0x5DB3,\n\t2489:  0x5DB4,\n\t2490:  0x5DB5,\n\t2491:  0x5DB6,\n\t2492:  0x5DB8,\n\t2493:  0x5DB9,\n\t2494:  0x5DBA,\n\t2495:  0x5DBB,\n\t2496:  0x5DBC,\n\t2497:  0x5DBD,\n\t2498:  0x5DBE,\n\t2499:  0x5DBF,\n\t2500:  0x5DC0,\n\t2501:  0x5DC1,\n\t2502:  0x5DC2,\n\t2503:  0x5DC3,\n\t2504:  0x5DC4,\n\t2505:  0x5DC6,\n\t2506:  0x5DC7,\n\t2507:  0x5DC8,\n\t2508:  0x5DC9,\n\t2509:  0x5DCA,\n\t2510:  0x5DCB,\n\t2511:  0x5DCC,\n\t2512:  0x5DCE,\n\t2513:  0x5DCF,\n\t2514:  0x5DD0,\n\t2515:  0x5DD1,\n\t2516:  0x5DD2,\n\t2517:  0x5DD3,\n\t2518:  0x5DD4,\n\t2519:  0x5DD5,\n\t2520:  0x5DD6,\n\t2521:  0x5DD7,\n\t2522:  0x5DD8,\n\t2523:  0x5DD9,\n\t2524:  0x5DDA,\n\t2525:  0x5DDC,\n\t2526:  0x5DDF,\n\t2527:  0x5DE0,\n\t2528:  0x5DE3,\n\t2529:  0x5DE4,\n\t2530:  0x5DEA,\n\t2531:  0x5DEC,\n\t2532:  0x5DED,\n\t2533:  0x5DF0,\n\t2534:  0x5DF5,\n\t2535:  0x5DF6,\n\t2536:  0x5DF8,\n\t2537:  0x5DF9,\n\t2538:  0x5DFA,\n\t2539:  0x5DFB,\n\t2540:  0x5DFC,\n\t2541:  0x5DFF,\n\t2542:  0x5E00,\n\t2543:  0x5E04,\n\t2544:  0x5E07,\n\t2545:  0x5E09,\n\t2546:  0x5E0A,\n\t2547:  0x5E0B,\n\t2548:  0x5E0D,\n\t2549:  0x5E0E,\n\t2550:  0x5E12,\n\t2551:  0x5E13,\n\t2552:  0x5E17,\n\t2553:  0x5E1E,\n\t2554:  0x5E1F,\n\t2555:  0x5E20,\n\t2556:  0x5E21,\n\t2557:  0x5E22,\n\t2558:  0x5E23,\n\t2559:  0x5E24,\n\t2560:  0x5E25,\n\t2561:  0x5E28,\n\t2562:  0x5E29,\n\t2563:  0x5E2A,\n\t2564:  0x5E2B,\n\t2565:  0x5E2C,\n\t2566:  0x5E2F,\n\t2567:  0x5E30,\n\t2568:  0x5E32,\n\t2569:  0x5E33,\n\t2570:  0x5E34,\n\t2571:  0x5E35,\n\t2572:  0x5E36,\n\t2573:  0x5E39,\n\t2574:  0x5E3A,\n\t2575:  0x5E3E,\n\t2576:  0x5E3F,\n\t2577:  0x5E40,\n\t2578:  0x5E41,\n\t2579:  0x5E43,\n\t2580:  0x5E46,\n\t2581:  0x5E47,\n\t2582:  0x5E48,\n\t2583:  0x5E49,\n\t2584:  0x5E4A,\n\t2585:  0x5E4B,\n\t2586:  0x5E4D,\n\t2587:  0x5E4E,\n\t2588:  0x5E4F,\n\t2589:  0x5E50,\n\t2590:  0x5E51,\n\t2591:  0x5E52,\n\t2592:  0x5E53,\n\t2593:  0x5E56,\n\t2594:  0x5E57,\n\t2595:  0x5E58,\n\t2596:  0x5E59,\n\t2597:  0x5E5A,\n\t2598:  0x5E5C,\n\t2599:  0x5E5D,\n\t2600:  0x5E5F,\n\t2601:  0x5E60,\n\t2602:  0x5E63,\n\t2603:  0x5E64,\n\t2604:  0x5E65,\n\t2605:  0x5E66,\n\t2606:  0x5E67,\n\t2607:  0x5E68,\n\t2608:  0x5E69,\n\t2609:  0x5E6A,\n\t2610:  0x5E6B,\n\t2611:  0x5E6C,\n\t2612:  0x5E6D,\n\t2613:  0x5E6E,\n\t2614:  0x5E6F,\n\t2615:  0x5E70,\n\t2616:  0x5E71,\n\t2617:  0x5E75,\n\t2618:  0x5E77,\n\t2619:  0x5E79,\n\t2620:  0x5E7E,\n\t2621:  0x5E81,\n\t2622:  0x5E82,\n\t2623:  0x5E83,\n\t2624:  0x5E85,\n\t2625:  0x5E88,\n\t2626:  0x5E89,\n\t2627:  0x5E8C,\n\t2628:  0x5E8D,\n\t2629:  0x5E8E,\n\t2630:  0x5E92,\n\t2631:  0x5E98,\n\t2632:  0x5E9B,\n\t2633:  0x5E9D,\n\t2634:  0x5EA1,\n\t2635:  0x5EA2,\n\t2636:  0x5EA3,\n\t2637:  0x5EA4,\n\t2638:  0x5EA8,\n\t2639:  0x5EA9,\n\t2640:  0x5EAA,\n\t2641:  0x5EAB,\n\t2642:  0x5EAC,\n\t2643:  0x5EAE,\n\t2644:  0x5EAF,\n\t2645:  0x5EB0,\n\t2646:  0x5EB1,\n\t2647:  0x5EB2,\n\t2648:  0x5EB4,\n\t2649:  0x5EBA,\n\t2650:  0x5EBB,\n\t2651:  0x5EBC,\n\t2652:  0x5EBD,\n\t2653:  0x5EBF,\n\t2654:  0x5EC0,\n\t2655:  0x5EC1,\n\t2656:  0x5EC2,\n\t2657:  0x5EC3,\n\t2658:  0x5EC4,\n\t2659:  0x5EC5,\n\t2660:  0x5EC6,\n\t2661:  0x5EC7,\n\t2662:  0x5EC8,\n\t2663:  0x5ECB,\n\t2664:  0x5ECC,\n\t2665:  0x5ECD,\n\t2666:  0x5ECE,\n\t2667:  0x5ECF,\n\t2668:  0x5ED0,\n\t2669:  0x5ED4,\n\t2670:  0x5ED5,\n\t2671:  0x5ED7,\n\t2672:  0x5ED8,\n\t2673:  0x5ED9,\n\t2674:  0x5EDA,\n\t2675:  0x5EDC,\n\t2676:  0x5EDD,\n\t2677:  0x5EDE,\n\t2678:  0x5EDF,\n\t2679:  0x5EE0,\n\t2680:  0x5EE1,\n\t2681:  0x5EE2,\n\t2682:  0x5EE3,\n\t2683:  0x5EE4,\n\t2684:  0x5EE5,\n\t2685:  0x5EE6,\n\t2686:  0x5EE7,\n\t2687:  0x5EE9,\n\t2688:  0x5EEB,\n\t2689:  0x5EEC,\n\t2690:  0x5EED,\n\t2691:  0x5EEE,\n\t2692:  0x5EEF,\n\t2693:  0x5EF0,\n\t2694:  0x5EF1,\n\t2695:  0x5EF2,\n\t2696:  0x5EF3,\n\t2697:  0x5EF5,\n\t2698:  0x5EF8,\n\t2699:  0x5EF9,\n\t2700:  0x5EFB,\n\t2701:  0x5EFC,\n\t2702:  0x5EFD,\n\t2703:  0x5F05,\n\t2704:  0x5F06,\n\t2705:  0x5F07,\n\t2706:  0x5F09,\n\t2707:  0x5F0C,\n\t2708:  0x5F0D,\n\t2709:  0x5F0E,\n\t2710:  0x5F10,\n\t2711:  0x5F12,\n\t2712:  0x5F14,\n\t2713:  0x5F16,\n\t2714:  0x5F19,\n\t2715:  0x5F1A,\n\t2716:  0x5F1C,\n\t2717:  0x5F1D,\n\t2718:  0x5F1E,\n\t2719:  0x5F21,\n\t2720:  0x5F22,\n\t2721:  0x5F23,\n\t2722:  0x5F24,\n\t2723:  0x5F28,\n\t2724:  0x5F2B,\n\t2725:  0x5F2C,\n\t2726:  0x5F2E,\n\t2727:  0x5F30,\n\t2728:  0x5F32,\n\t2729:  0x5F33,\n\t2730:  0x5F34,\n\t2731:  0x5F35,\n\t2732:  0x5F36,\n\t2733:  0x5F37,\n\t2734:  0x5F38,\n\t2735:  0x5F3B,\n\t2736:  0x5F3D,\n\t2737:  0x5F3E,\n\t2738:  0x5F3F,\n\t2739:  0x5F41,\n\t2740:  0x5F42,\n\t2741:  0x5F43,\n\t2742:  0x5F44,\n\t2743:  0x5F45,\n\t2744:  0x5F46,\n\t2745:  0x5F47,\n\t2746:  0x5F48,\n\t2747:  0x5F49,\n\t2748:  0x5F4A,\n\t2749:  0x5F4B,\n\t2750:  0x5F4C,\n\t2751:  0x5F4D,\n\t2752:  0x5F4E,\n\t2753:  0x5F4F,\n\t2754:  0x5F51,\n\t2755:  0x5F54,\n\t2756:  0x5F59,\n\t2757:  0x5F5A,\n\t2758:  0x5F5B,\n\t2759:  0x5F5C,\n\t2760:  0x5F5E,\n\t2761:  0x5F5F,\n\t2762:  0x5F60,\n\t2763:  0x5F63,\n\t2764:  0x5F65,\n\t2765:  0x5F67,\n\t2766:  0x5F68,\n\t2767:  0x5F6B,\n\t2768:  0x5F6E,\n\t2769:  0x5F6F,\n\t2770:  0x5F72,\n\t2771:  0x5F74,\n\t2772:  0x5F75,\n\t2773:  0x5F76,\n\t2774:  0x5F78,\n\t2775:  0x5F7A,\n\t2776:  0x5F7D,\n\t2777:  0x5F7E,\n\t2778:  0x5F7F,\n\t2779:  0x5F83,\n\t2780:  0x5F86,\n\t2781:  0x5F8D,\n\t2782:  0x5F8E,\n\t2783:  0x5F8F,\n\t2784:  0x5F91,\n\t2785:  0x5F93,\n\t2786:  0x5F94,\n\t2787:  0x5F96,\n\t2788:  0x5F9A,\n\t2789:  0x5F9B,\n\t2790:  0x5F9D,\n\t2791:  0x5F9E,\n\t2792:  0x5F9F,\n\t2793:  0x5FA0,\n\t2794:  0x5FA2,\n\t2795:  0x5FA3,\n\t2796:  0x5FA4,\n\t2797:  0x5FA5,\n\t2798:  0x5FA6,\n\t2799:  0x5FA7,\n\t2800:  0x5FA9,\n\t2801:  0x5FAB,\n\t2802:  0x5FAC,\n\t2803:  0x5FAF,\n\t2804:  0x5FB0,\n\t2805:  0x5FB1,\n\t2806:  0x5FB2,\n\t2807:  0x5FB3,\n\t2808:  0x5FB4,\n\t2809:  0x5FB6,\n\t2810:  0x5FB8,\n\t2811:  0x5FB9,\n\t2812:  0x5FBA,\n\t2813:  0x5FBB,\n\t2814:  0x5FBE,\n\t2815:  0x5FBF,\n\t2816:  0x5FC0,\n\t2817:  0x5FC1,\n\t2818:  0x5FC2,\n\t2819:  0x5FC7,\n\t2820:  0x5FC8,\n\t2821:  0x5FCA,\n\t2822:  0x5FCB,\n\t2823:  0x5FCE,\n\t2824:  0x5FD3,\n\t2825:  0x5FD4,\n\t2826:  0x5FD5,\n\t2827:  0x5FDA,\n\t2828:  0x5FDB,\n\t2829:  0x5FDC,\n\t2830:  0x5FDE,\n\t2831:  0x5FDF,\n\t2832:  0x5FE2,\n\t2833:  0x5FE3,\n\t2834:  0x5FE5,\n\t2835:  0x5FE6,\n\t2836:  0x5FE8,\n\t2837:  0x5FE9,\n\t2838:  0x5FEC,\n\t2839:  0x5FEF,\n\t2840:  0x5FF0,\n\t2841:  0x5FF2,\n\t2842:  0x5FF3,\n\t2843:  0x5FF4,\n\t2844:  0x5FF6,\n\t2845:  0x5FF7,\n\t2846:  0x5FF9,\n\t2847:  0x5FFA,\n\t2848:  0x5FFC,\n\t2849:  0x6007,\n\t2850:  0x6008,\n\t2851:  0x6009,\n\t2852:  0x600B,\n\t2853:  0x600C,\n\t2854:  0x6010,\n\t2855:  0x6011,\n\t2856:  0x6013,\n\t2857:  0x6017,\n\t2858:  0x6018,\n\t2859:  0x601A,\n\t2860:  0x601E,\n\t2861:  0x601F,\n\t2862:  0x6022,\n\t2863:  0x6023,\n\t2864:  0x6024,\n\t2865:  0x602C,\n\t2866:  0x602D,\n\t2867:  0x602E,\n\t2868:  0x6030,\n\t2869:  0x6031,\n\t2870:  0x6032,\n\t2871:  0x6033,\n\t2872:  0x6034,\n\t2873:  0x6036,\n\t2874:  0x6037,\n\t2875:  0x6038,\n\t2876:  0x6039,\n\t2877:  0x603A,\n\t2878:  0x603D,\n\t2879:  0x603E,\n\t2880:  0x6040,\n\t2881:  0x6044,\n\t2882:  0x6045,\n\t2883:  0x6046,\n\t2884:  0x6047,\n\t2885:  0x6048,\n\t2886:  0x6049,\n\t2887:  0x604A,\n\t2888:  0x604C,\n\t2889:  0x604E,\n\t2890:  0x604F,\n\t2891:  0x6051,\n\t2892:  0x6053,\n\t2893:  0x6054,\n\t2894:  0x6056,\n\t2895:  0x6057,\n\t2896:  0x6058,\n\t2897:  0x605B,\n\t2898:  0x605C,\n\t2899:  0x605E,\n\t2900:  0x605F,\n\t2901:  0x6060,\n\t2902:  0x6061,\n\t2903:  0x6065,\n\t2904:  0x6066,\n\t2905:  0x606E,\n\t2906:  0x6071,\n\t2907:  0x6072,\n\t2908:  0x6074,\n\t2909:  0x6075,\n\t2910:  0x6077,\n\t2911:  0x607E,\n\t2912:  0x6080,\n\t2913:  0x6081,\n\t2914:  0x6082,\n\t2915:  0x6085,\n\t2916:  0x6086,\n\t2917:  0x6087,\n\t2918:  0x6088,\n\t2919:  0x608A,\n\t2920:  0x608B,\n\t2921:  0x608E,\n\t2922:  0x608F,\n\t2923:  0x6090,\n\t2924:  0x6091,\n\t2925:  0x6093,\n\t2926:  0x6095,\n\t2927:  0x6097,\n\t2928:  0x6098,\n\t2929:  0x6099,\n\t2930:  0x609C,\n\t2931:  0x609E,\n\t2932:  0x60A1,\n\t2933:  0x60A2,\n\t2934:  0x60A4,\n\t2935:  0x60A5,\n\t2936:  0x60A7,\n\t2937:  0x60A9,\n\t2938:  0x60AA,\n\t2939:  0x60AE,\n\t2940:  0x60B0,\n\t2941:  0x60B3,\n\t2942:  0x60B5,\n\t2943:  0x60B6,\n\t2944:  0x60B7,\n\t2945:  0x60B9,\n\t2946:  0x60BA,\n\t2947:  0x60BD,\n\t2948:  0x60BE,\n\t2949:  0x60BF,\n\t2950:  0x60C0,\n\t2951:  0x60C1,\n\t2952:  0x60C2,\n\t2953:  0x60C3,\n\t2954:  0x60C4,\n\t2955:  0x60C7,\n\t2956:  0x60C8,\n\t2957:  0x60C9,\n\t2958:  0x60CC,\n\t2959:  0x60CD,\n\t2960:  0x60CE,\n\t2961:  0x60CF,\n\t2962:  0x60D0,\n\t2963:  0x60D2,\n\t2964:  0x60D3,\n\t2965:  0x60D4,\n\t2966:  0x60D6,\n\t2967:  0x60D7,\n\t2968:  0x60D9,\n\t2969:  0x60DB,\n\t2970:  0x60DE,\n\t2971:  0x60E1,\n\t2972:  0x60E2,\n\t2973:  0x60E3,\n\t2974:  0x60E4,\n\t2975:  0x60E5,\n\t2976:  0x60EA,\n\t2977:  0x60F1,\n\t2978:  0x60F2,\n\t2979:  0x60F5,\n\t2980:  0x60F7,\n\t2981:  0x60F8,\n\t2982:  0x60FB,\n\t2983:  0x60FC,\n\t2984:  0x60FD,\n\t2985:  0x60FE,\n\t2986:  0x60FF,\n\t2987:  0x6102,\n\t2988:  0x6103,\n\t2989:  0x6104,\n\t2990:  0x6105,\n\t2991:  0x6107,\n\t2992:  0x610A,\n\t2993:  0x610B,\n\t2994:  0x610C,\n\t2995:  0x6110,\n\t2996:  0x6111,\n\t2997:  0x6112,\n\t2998:  0x6113,\n\t2999:  0x6114,\n\t3000:  0x6116,\n\t3001:  0x6117,\n\t3002:  0x6118,\n\t3003:  0x6119,\n\t3004:  0x611B,\n\t3005:  0x611C,\n\t3006:  0x611D,\n\t3007:  0x611E,\n\t3008:  0x6121,\n\t3009:  0x6122,\n\t3010:  0x6125,\n\t3011:  0x6128,\n\t3012:  0x6129,\n\t3013:  0x612A,\n\t3014:  0x612C,\n\t3015:  0x612D,\n\t3016:  0x612E,\n\t3017:  0x612F,\n\t3018:  0x6130,\n\t3019:  0x6131,\n\t3020:  0x6132,\n\t3021:  0x6133,\n\t3022:  0x6134,\n\t3023:  0x6135,\n\t3024:  0x6136,\n\t3025:  0x6137,\n\t3026:  0x6138,\n\t3027:  0x6139,\n\t3028:  0x613A,\n\t3029:  0x613B,\n\t3030:  0x613C,\n\t3031:  0x613D,\n\t3032:  0x613E,\n\t3033:  0x6140,\n\t3034:  0x6141,\n\t3035:  0x6142,\n\t3036:  0x6143,\n\t3037:  0x6144,\n\t3038:  0x6145,\n\t3039:  0x6146,\n\t3040:  0x6147,\n\t3041:  0x6149,\n\t3042:  0x614B,\n\t3043:  0x614D,\n\t3044:  0x614F,\n\t3045:  0x6150,\n\t3046:  0x6152,\n\t3047:  0x6153,\n\t3048:  0x6154,\n\t3049:  0x6156,\n\t3050:  0x6157,\n\t3051:  0x6158,\n\t3052:  0x6159,\n\t3053:  0x615A,\n\t3054:  0x615B,\n\t3055:  0x615C,\n\t3056:  0x615E,\n\t3057:  0x615F,\n\t3058:  0x6160,\n\t3059:  0x6161,\n\t3060:  0x6163,\n\t3061:  0x6164,\n\t3062:  0x6165,\n\t3063:  0x6166,\n\t3064:  0x6169,\n\t3065:  0x616A,\n\t3066:  0x616B,\n\t3067:  0x616C,\n\t3068:  0x616D,\n\t3069:  0x616E,\n\t3070:  0x616F,\n\t3071:  0x6171,\n\t3072:  0x6172,\n\t3073:  0x6173,\n\t3074:  0x6174,\n\t3075:  0x6176,\n\t3076:  0x6178,\n\t3077:  0x6179,\n\t3078:  0x617A,\n\t3079:  0x617B,\n\t3080:  0x617C,\n\t3081:  0x617D,\n\t3082:  0x617E,\n\t3083:  0x617F,\n\t3084:  0x6180,\n\t3085:  0x6181,\n\t3086:  0x6182,\n\t3087:  0x6183,\n\t3088:  0x6184,\n\t3089:  0x6185,\n\t3090:  0x6186,\n\t3091:  0x6187,\n\t3092:  0x6188,\n\t3093:  0x6189,\n\t3094:  0x618A,\n\t3095:  0x618C,\n\t3096:  0x618D,\n\t3097:  0x618F,\n\t3098:  0x6190,\n\t3099:  0x6191,\n\t3100:  0x6192,\n\t3101:  0x6193,\n\t3102:  0x6195,\n\t3103:  0x6196,\n\t3104:  0x6197,\n\t3105:  0x6198,\n\t3106:  0x6199,\n\t3107:  0x619A,\n\t3108:  0x619B,\n\t3109:  0x619C,\n\t3110:  0x619E,\n\t3111:  0x619F,\n\t3112:  0x61A0,\n\t3113:  0x61A1,\n\t3114:  0x61A2,\n\t3115:  0x61A3,\n\t3116:  0x61A4,\n\t3117:  0x61A5,\n\t3118:  0x61A6,\n\t3119:  0x61AA,\n\t3120:  0x61AB,\n\t3121:  0x61AD,\n\t3122:  0x61AE,\n\t3123:  0x61AF,\n\t3124:  0x61B0,\n\t3125:  0x61B1,\n\t3126:  0x61B2,\n\t3127:  0x61B3,\n\t3128:  0x61B4,\n\t3129:  0x61B5,\n\t3130:  0x61B6,\n\t3131:  0x61B8,\n\t3132:  0x61B9,\n\t3133:  0x61BA,\n\t3134:  0x61BB,\n\t3135:  0x61BC,\n\t3136:  0x61BD,\n\t3137:  0x61BF,\n\t3138:  0x61C0,\n\t3139:  0x61C1,\n\t3140:  0x61C3,\n\t3141:  0x61C4,\n\t3142:  0x61C5,\n\t3143:  0x61C6,\n\t3144:  0x61C7,\n\t3145:  0x61C9,\n\t3146:  0x61CC,\n\t3147:  0x61CD,\n\t3148:  0x61CE,\n\t3149:  0x61CF,\n\t3150:  0x61D0,\n\t3151:  0x61D3,\n\t3152:  0x61D5,\n\t3153:  0x61D6,\n\t3154:  0x61D7,\n\t3155:  0x61D8,\n\t3156:  0x61D9,\n\t3157:  0x61DA,\n\t3158:  0x61DB,\n\t3159:  0x61DC,\n\t3160:  0x61DD,\n\t3161:  0x61DE,\n\t3162:  0x61DF,\n\t3163:  0x61E0,\n\t3164:  0x61E1,\n\t3165:  0x61E2,\n\t3166:  0x61E3,\n\t3167:  0x61E4,\n\t3168:  0x61E5,\n\t3169:  0x61E7,\n\t3170:  0x61E8,\n\t3171:  0x61E9,\n\t3172:  0x61EA,\n\t3173:  0x61EB,\n\t3174:  0x61EC,\n\t3175:  0x61ED,\n\t3176:  0x61EE,\n\t3177:  0x61EF,\n\t3178:  0x61F0,\n\t3179:  0x61F1,\n\t3180:  0x61F2,\n\t3181:  0x61F3,\n\t3182:  0x61F4,\n\t3183:  0x61F6,\n\t3184:  0x61F7,\n\t3185:  0x61F8,\n\t3186:  0x61F9,\n\t3187:  0x61FA,\n\t3188:  0x61FB,\n\t3189:  0x61FC,\n\t3190:  0x61FD,\n\t3191:  0x61FE,\n\t3192:  0x6200,\n\t3193:  0x6201,\n\t3194:  0x6202,\n\t3195:  0x6203,\n\t3196:  0x6204,\n\t3197:  0x6205,\n\t3198:  0x6207,\n\t3199:  0x6209,\n\t3200:  0x6213,\n\t3201:  0x6214,\n\t3202:  0x6219,\n\t3203:  0x621C,\n\t3204:  0x621D,\n\t3205:  0x621E,\n\t3206:  0x6220,\n\t3207:  0x6223,\n\t3208:  0x6226,\n\t3209:  0x6227,\n\t3210:  0x6228,\n\t3211:  0x6229,\n\t3212:  0x622B,\n\t3213:  0x622D,\n\t3214:  0x622F,\n\t3215:  0x6230,\n\t3216:  0x6231,\n\t3217:  0x6232,\n\t3218:  0x6235,\n\t3219:  0x6236,\n\t3220:  0x6238,\n\t3221:  0x6239,\n\t3222:  0x623A,\n\t3223:  0x623B,\n\t3224:  0x623C,\n\t3225:  0x6242,\n\t3226:  0x6244,\n\t3227:  0x6245,\n\t3228:  0x6246,\n\t3229:  0x624A,\n\t3230:  0x624F,\n\t3231:  0x6250,\n\t3232:  0x6255,\n\t3233:  0x6256,\n\t3234:  0x6257,\n\t3235:  0x6259,\n\t3236:  0x625A,\n\t3237:  0x625C,\n\t3238:  0x625D,\n\t3239:  0x625E,\n\t3240:  0x625F,\n\t3241:  0x6260,\n\t3242:  0x6261,\n\t3243:  0x6262,\n\t3244:  0x6264,\n\t3245:  0x6265,\n\t3246:  0x6268,\n\t3247:  0x6271,\n\t3248:  0x6272,\n\t3249:  0x6274,\n\t3250:  0x6275,\n\t3251:  0x6277,\n\t3252:  0x6278,\n\t3253:  0x627A,\n\t3254:  0x627B,\n\t3255:  0x627D,\n\t3256:  0x6281,\n\t3257:  0x6282,\n\t3258:  0x6283,\n\t3259:  0x6285,\n\t3260:  0x6286,\n\t3261:  0x6287,\n\t3262:  0x6288,\n\t3263:  0x628B,\n\t3264:  0x628C,\n\t3265:  0x628D,\n\t3266:  0x628E,\n\t3267:  0x628F,\n\t3268:  0x6290,\n\t3269:  0x6294,\n\t3270:  0x6299,\n\t3271:  0x629C,\n\t3272:  0x629D,\n\t3273:  0x629E,\n\t3274:  0x62A3,\n\t3275:  0x62A6,\n\t3276:  0x62A7,\n\t3277:  0x62A9,\n\t3278:  0x62AA,\n\t3279:  0x62AD,\n\t3280:  0x62AE,\n\t3281:  0x62AF,\n\t3282:  0x62B0,\n\t3283:  0x62B2,\n\t3284:  0x62B3,\n\t3285:  0x62B4,\n\t3286:  0x62B6,\n\t3287:  0x62B7,\n\t3288:  0x62B8,\n\t3289:  0x62BA,\n\t3290:  0x62BE,\n\t3291:  0x62C0,\n\t3292:  0x62C1,\n\t3293:  0x62C3,\n\t3294:  0x62CB,\n\t3295:  0x62CF,\n\t3296:  0x62D1,\n\t3297:  0x62D5,\n\t3298:  0x62DD,\n\t3299:  0x62DE,\n\t3300:  0x62E0,\n\t3301:  0x62E1,\n\t3302:  0x62E4,\n\t3303:  0x62EA,\n\t3304:  0x62EB,\n\t3305:  0x62F0,\n\t3306:  0x62F2,\n\t3307:  0x62F5,\n\t3308:  0x62F8,\n\t3309:  0x62F9,\n\t3310:  0x62FA,\n\t3311:  0x62FB,\n\t3312:  0x6300,\n\t3313:  0x6303,\n\t3314:  0x6304,\n\t3315:  0x6305,\n\t3316:  0x6306,\n\t3317:  0x630A,\n\t3318:  0x630B,\n\t3319:  0x630C,\n\t3320:  0x630D,\n\t3321:  0x630F,\n\t3322:  0x6310,\n\t3323:  0x6312,\n\t3324:  0x6313,\n\t3325:  0x6314,\n\t3326:  0x6315,\n\t3327:  0x6317,\n\t3328:  0x6318,\n\t3329:  0x6319,\n\t3330:  0x631C,\n\t3331:  0x6326,\n\t3332:  0x6327,\n\t3333:  0x6329,\n\t3334:  0x632C,\n\t3335:  0x632D,\n\t3336:  0x632E,\n\t3337:  0x6330,\n\t3338:  0x6331,\n\t3339:  0x6333,\n\t3340:  0x6334,\n\t3341:  0x6335,\n\t3342:  0x6336,\n\t3343:  0x6337,\n\t3344:  0x6338,\n\t3345:  0x633B,\n\t3346:  0x633C,\n\t3347:  0x633E,\n\t3348:  0x633F,\n\t3349:  0x6340,\n\t3350:  0x6341,\n\t3351:  0x6344,\n\t3352:  0x6347,\n\t3353:  0x6348,\n\t3354:  0x634A,\n\t3355:  0x6351,\n\t3356:  0x6352,\n\t3357:  0x6353,\n\t3358:  0x6354,\n\t3359:  0x6356,\n\t3360:  0x6357,\n\t3361:  0x6358,\n\t3362:  0x6359,\n\t3363:  0x635A,\n\t3364:  0x635B,\n\t3365:  0x635C,\n\t3366:  0x635D,\n\t3367:  0x6360,\n\t3368:  0x6364,\n\t3369:  0x6365,\n\t3370:  0x6366,\n\t3371:  0x6368,\n\t3372:  0x636A,\n\t3373:  0x636B,\n\t3374:  0x636C,\n\t3375:  0x636F,\n\t3376:  0x6370,\n\t3377:  0x6372,\n\t3378:  0x6373,\n\t3379:  0x6374,\n\t3380:  0x6375,\n\t3381:  0x6378,\n\t3382:  0x6379,\n\t3383:  0x637C,\n\t3384:  0x637D,\n\t3385:  0x637E,\n\t3386:  0x637F,\n\t3387:  0x6381,\n\t3388:  0x6383,\n\t3389:  0x6384,\n\t3390:  0x6385,\n\t3391:  0x6386,\n\t3392:  0x638B,\n\t3393:  0x638D,\n\t3394:  0x6391,\n\t3395:  0x6393,\n\t3396:  0x6394,\n\t3397:  0x6395,\n\t3398:  0x6397,\n\t3399:  0x6399,\n\t3400:  0x639A,\n\t3401:  0x639B,\n\t3402:  0x639C,\n\t3403:  0x639D,\n\t3404:  0x639E,\n\t3405:  0x639F,\n\t3406:  0x63A1,\n\t3407:  0x63A4,\n\t3408:  0x63A6,\n\t3409:  0x63AB,\n\t3410:  0x63AF,\n\t3411:  0x63B1,\n\t3412:  0x63B2,\n\t3413:  0x63B5,\n\t3414:  0x63B6,\n\t3415:  0x63B9,\n\t3416:  0x63BB,\n\t3417:  0x63BD,\n\t3418:  0x63BF,\n\t3419:  0x63C0,\n\t3420:  0x63C1,\n\t3421:  0x63C2,\n\t3422:  0x63C3,\n\t3423:  0x63C5,\n\t3424:  0x63C7,\n\t3425:  0x63C8,\n\t3426:  0x63CA,\n\t3427:  0x63CB,\n\t3428:  0x63CC,\n\t3429:  0x63D1,\n\t3430:  0x63D3,\n\t3431:  0x63D4,\n\t3432:  0x63D5,\n\t3433:  0x63D7,\n\t3434:  0x63D8,\n\t3435:  0x63D9,\n\t3436:  0x63DA,\n\t3437:  0x63DB,\n\t3438:  0x63DC,\n\t3439:  0x63DD,\n\t3440:  0x63DF,\n\t3441:  0x63E2,\n\t3442:  0x63E4,\n\t3443:  0x63E5,\n\t3444:  0x63E6,\n\t3445:  0x63E7,\n\t3446:  0x63E8,\n\t3447:  0x63EB,\n\t3448:  0x63EC,\n\t3449:  0x63EE,\n\t3450:  0x63EF,\n\t3451:  0x63F0,\n\t3452:  0x63F1,\n\t3453:  0x63F3,\n\t3454:  0x63F5,\n\t3455:  0x63F7,\n\t3456:  0x63F9,\n\t3457:  0x63FA,\n\t3458:  0x63FB,\n\t3459:  0x63FC,\n\t3460:  0x63FE,\n\t3461:  0x6403,\n\t3462:  0x6404,\n\t3463:  0x6406,\n\t3464:  0x6407,\n\t3465:  0x6408,\n\t3466:  0x6409,\n\t3467:  0x640A,\n\t3468:  0x640D,\n\t3469:  0x640E,\n\t3470:  0x6411,\n\t3471:  0x6412,\n\t3472:  0x6415,\n\t3473:  0x6416,\n\t3474:  0x6417,\n\t3475:  0x6418,\n\t3476:  0x6419,\n\t3477:  0x641A,\n\t3478:  0x641D,\n\t3479:  0x641F,\n\t3480:  0x6422,\n\t3481:  0x6423,\n\t3482:  0x6424,\n\t3483:  0x6425,\n\t3484:  0x6427,\n\t3485:  0x6428,\n\t3486:  0x6429,\n\t3487:  0x642B,\n\t3488:  0x642E,\n\t3489:  0x642F,\n\t3490:  0x6430,\n\t3491:  0x6431,\n\t3492:  0x6432,\n\t3493:  0x6433,\n\t3494:  0x6435,\n\t3495:  0x6436,\n\t3496:  0x6437,\n\t3497:  0x6438,\n\t3498:  0x6439,\n\t3499:  0x643B,\n\t3500:  0x643C,\n\t3501:  0x643E,\n\t3502:  0x6440,\n\t3503:  0x6442,\n\t3504:  0x6443,\n\t3505:  0x6449,\n\t3506:  0x644B,\n\t3507:  0x644C,\n\t3508:  0x644D,\n\t3509:  0x644E,\n\t3510:  0x644F,\n\t3511:  0x6450,\n\t3512:  0x6451,\n\t3513:  0x6453,\n\t3514:  0x6455,\n\t3515:  0x6456,\n\t3516:  0x6457,\n\t3517:  0x6459,\n\t3518:  0x645A,\n\t3519:  0x645B,\n\t3520:  0x645C,\n\t3521:  0x645D,\n\t3522:  0x645F,\n\t3523:  0x6460,\n\t3524:  0x6461,\n\t3525:  0x6462,\n\t3526:  0x6463,\n\t3527:  0x6464,\n\t3528:  0x6465,\n\t3529:  0x6466,\n\t3530:  0x6468,\n\t3531:  0x646A,\n\t3532:  0x646B,\n\t3533:  0x646C,\n\t3534:  0x646E,\n\t3535:  0x646F,\n\t3536:  0x6470,\n\t3537:  0x6471,\n\t3538:  0x6472,\n\t3539:  0x6473,\n\t3540:  0x6474,\n\t3541:  0x6475,\n\t3542:  0x6476,\n\t3543:  0x6477,\n\t3544:  0x647B,\n\t3545:  0x647C,\n\t3546:  0x647D,\n\t3547:  0x647E,\n\t3548:  0x647F,\n\t3549:  0x6480,\n\t3550:  0x6481,\n\t3551:  0x6483,\n\t3552:  0x6486,\n\t3553:  0x6488,\n\t3554:  0x6489,\n\t3555:  0x648A,\n\t3556:  0x648B,\n\t3557:  0x648C,\n\t3558:  0x648D,\n\t3559:  0x648E,\n\t3560:  0x648F,\n\t3561:  0x6490,\n\t3562:  0x6493,\n\t3563:  0x6494,\n\t3564:  0x6497,\n\t3565:  0x6498,\n\t3566:  0x649A,\n\t3567:  0x649B,\n\t3568:  0x649C,\n\t3569:  0x649D,\n\t3570:  0x649F,\n\t3571:  0x64A0,\n\t3572:  0x64A1,\n\t3573:  0x64A2,\n\t3574:  0x64A3,\n\t3575:  0x64A5,\n\t3576:  0x64A6,\n\t3577:  0x64A7,\n\t3578:  0x64A8,\n\t3579:  0x64AA,\n\t3580:  0x64AB,\n\t3581:  0x64AF,\n\t3582:  0x64B1,\n\t3583:  0x64B2,\n\t3584:  0x64B3,\n\t3585:  0x64B4,\n\t3586:  0x64B6,\n\t3587:  0x64B9,\n\t3588:  0x64BB,\n\t3589:  0x64BD,\n\t3590:  0x64BE,\n\t3591:  0x64BF,\n\t3592:  0x64C1,\n\t3593:  0x64C3,\n\t3594:  0x64C4,\n\t3595:  0x64C6,\n\t3596:  0x64C7,\n\t3597:  0x64C8,\n\t3598:  0x64C9,\n\t3599:  0x64CA,\n\t3600:  0x64CB,\n\t3601:  0x64CC,\n\t3602:  0x64CF,\n\t3603:  0x64D1,\n\t3604:  0x64D3,\n\t3605:  0x64D4,\n\t3606:  0x64D5,\n\t3607:  0x64D6,\n\t3608:  0x64D9,\n\t3609:  0x64DA,\n\t3610:  0x64DB,\n\t3611:  0x64DC,\n\t3612:  0x64DD,\n\t3613:  0x64DF,\n\t3614:  0x64E0,\n\t3615:  0x64E1,\n\t3616:  0x64E3,\n\t3617:  0x64E5,\n\t3618:  0x64E7,\n\t3619:  0x64E8,\n\t3620:  0x64E9,\n\t3621:  0x64EA,\n\t3622:  0x64EB,\n\t3623:  0x64EC,\n\t3624:  0x64ED,\n\t3625:  0x64EE,\n\t3626:  0x64EF,\n\t3627:  0x64F0,\n\t3628:  0x64F1,\n\t3629:  0x64F2,\n\t3630:  0x64F3,\n\t3631:  0x64F4,\n\t3632:  0x64F5,\n\t3633:  0x64F6,\n\t3634:  0x64F7,\n\t3635:  0x64F8,\n\t3636:  0x64F9,\n\t3637:  0x64FA,\n\t3638:  0x64FB,\n\t3639:  0x64FC,\n\t3640:  0x64FD,\n\t3641:  0x64FE,\n\t3642:  0x64FF,\n\t3643:  0x6501,\n\t3644:  0x6502,\n\t3645:  0x6503,\n\t3646:  0x6504,\n\t3647:  0x6505,\n\t3648:  0x6506,\n\t3649:  0x6507,\n\t3650:  0x6508,\n\t3651:  0x650A,\n\t3652:  0x650B,\n\t3653:  0x650C,\n\t3654:  0x650D,\n\t3655:  0x650E,\n\t3656:  0x650F,\n\t3657:  0x6510,\n\t3658:  0x6511,\n\t3659:  0x6513,\n\t3660:  0x6514,\n\t3661:  0x6515,\n\t3662:  0x6516,\n\t3663:  0x6517,\n\t3664:  0x6519,\n\t3665:  0x651A,\n\t3666:  0x651B,\n\t3667:  0x651C,\n\t3668:  0x651D,\n\t3669:  0x651E,\n\t3670:  0x651F,\n\t3671:  0x6520,\n\t3672:  0x6521,\n\t3673:  0x6522,\n\t3674:  0x6523,\n\t3675:  0x6524,\n\t3676:  0x6526,\n\t3677:  0x6527,\n\t3678:  0x6528,\n\t3679:  0x6529,\n\t3680:  0x652A,\n\t3681:  0x652C,\n\t3682:  0x652D,\n\t3683:  0x6530,\n\t3684:  0x6531,\n\t3685:  0x6532,\n\t3686:  0x6533,\n\t3687:  0x6537,\n\t3688:  0x653A,\n\t3689:  0x653C,\n\t3690:  0x653D,\n\t3691:  0x6540,\n\t3692:  0x6541,\n\t3693:  0x6542,\n\t3694:  0x6543,\n\t3695:  0x6544,\n\t3696:  0x6546,\n\t3697:  0x6547,\n\t3698:  0x654A,\n\t3699:  0x654B,\n\t3700:  0x654D,\n\t3701:  0x654E,\n\t3702:  0x6550,\n\t3703:  0x6552,\n\t3704:  0x6553,\n\t3705:  0x6554,\n\t3706:  0x6557,\n\t3707:  0x6558,\n\t3708:  0x655A,\n\t3709:  0x655C,\n\t3710:  0x655F,\n\t3711:  0x6560,\n\t3712:  0x6561,\n\t3713:  0x6564,\n\t3714:  0x6565,\n\t3715:  0x6567,\n\t3716:  0x6568,\n\t3717:  0x6569,\n\t3718:  0x656A,\n\t3719:  0x656D,\n\t3720:  0x656E,\n\t3721:  0x656F,\n\t3722:  0x6571,\n\t3723:  0x6573,\n\t3724:  0x6575,\n\t3725:  0x6576,\n\t3726:  0x6578,\n\t3727:  0x6579,\n\t3728:  0x657A,\n\t3729:  0x657B,\n\t3730:  0x657C,\n\t3731:  0x657D,\n\t3732:  0x657E,\n\t3733:  0x657F,\n\t3734:  0x6580,\n\t3735:  0x6581,\n\t3736:  0x6582,\n\t3737:  0x6583,\n\t3738:  0x6584,\n\t3739:  0x6585,\n\t3740:  0x6586,\n\t3741:  0x6588,\n\t3742:  0x6589,\n\t3743:  0x658A,\n\t3744:  0x658D,\n\t3745:  0x658E,\n\t3746:  0x658F,\n\t3747:  0x6592,\n\t3748:  0x6594,\n\t3749:  0x6595,\n\t3750:  0x6596,\n\t3751:  0x6598,\n\t3752:  0x659A,\n\t3753:  0x659D,\n\t3754:  0x659E,\n\t3755:  0x65A0,\n\t3756:  0x65A2,\n\t3757:  0x65A3,\n\t3758:  0x65A6,\n\t3759:  0x65A8,\n\t3760:  0x65AA,\n\t3761:  0x65AC,\n\t3762:  0x65AE,\n\t3763:  0x65B1,\n\t3764:  0x65B2,\n\t3765:  0x65B3,\n\t3766:  0x65B4,\n\t3767:  0x65B5,\n\t3768:  0x65B6,\n\t3769:  0x65B7,\n\t3770:  0x65B8,\n\t3771:  0x65BA,\n\t3772:  0x65BB,\n\t3773:  0x65BE,\n\t3774:  0x65BF,\n\t3775:  0x65C0,\n\t3776:  0x65C2,\n\t3777:  0x65C7,\n\t3778:  0x65C8,\n\t3779:  0x65C9,\n\t3780:  0x65CA,\n\t3781:  0x65CD,\n\t3782:  0x65D0,\n\t3783:  0x65D1,\n\t3784:  0x65D3,\n\t3785:  0x65D4,\n\t3786:  0x65D5,\n\t3787:  0x65D8,\n\t3788:  0x65D9,\n\t3789:  0x65DA,\n\t3790:  0x65DB,\n\t3791:  0x65DC,\n\t3792:  0x65DD,\n\t3793:  0x65DE,\n\t3794:  0x65DF,\n\t3795:  0x65E1,\n\t3796:  0x65E3,\n\t3797:  0x65E4,\n\t3798:  0x65EA,\n\t3799:  0x65EB,\n\t3800:  0x65F2,\n\t3801:  0x65F3,\n\t3802:  0x65F4,\n\t3803:  0x65F5,\n\t3804:  0x65F8,\n\t3805:  0x65F9,\n\t3806:  0x65FB,\n\t3807:  0x65FC,\n\t3808:  0x65FD,\n\t3809:  0x65FE,\n\t3810:  0x65FF,\n\t3811:  0x6601,\n\t3812:  0x6604,\n\t3813:  0x6605,\n\t3814:  0x6607,\n\t3815:  0x6608,\n\t3816:  0x6609,\n\t3817:  0x660B,\n\t3818:  0x660D,\n\t3819:  0x6610,\n\t3820:  0x6611,\n\t3821:  0x6612,\n\t3822:  0x6616,\n\t3823:  0x6617,\n\t3824:  0x6618,\n\t3825:  0x661A,\n\t3826:  0x661B,\n\t3827:  0x661C,\n\t3828:  0x661E,\n\t3829:  0x6621,\n\t3830:  0x6622,\n\t3831:  0x6623,\n\t3832:  0x6624,\n\t3833:  0x6626,\n\t3834:  0x6629,\n\t3835:  0x662A,\n\t3836:  0x662B,\n\t3837:  0x662C,\n\t3838:  0x662E,\n\t3839:  0x6630,\n\t3840:  0x6632,\n\t3841:  0x6633,\n\t3842:  0x6637,\n\t3843:  0x6638,\n\t3844:  0x6639,\n\t3845:  0x663A,\n\t3846:  0x663B,\n\t3847:  0x663D,\n\t3848:  0x663F,\n\t3849:  0x6640,\n\t3850:  0x6642,\n\t3851:  0x6644,\n\t3852:  0x6645,\n\t3853:  0x6646,\n\t3854:  0x6647,\n\t3855:  0x6648,\n\t3856:  0x6649,\n\t3857:  0x664A,\n\t3858:  0x664D,\n\t3859:  0x664E,\n\t3860:  0x6650,\n\t3861:  0x6651,\n\t3862:  0x6658,\n\t3863:  0x6659,\n\t3864:  0x665B,\n\t3865:  0x665C,\n\t3866:  0x665D,\n\t3867:  0x665E,\n\t3868:  0x6660,\n\t3869:  0x6662,\n\t3870:  0x6663,\n\t3871:  0x6665,\n\t3872:  0x6667,\n\t3873:  0x6669,\n\t3874:  0x666A,\n\t3875:  0x666B,\n\t3876:  0x666C,\n\t3877:  0x666D,\n\t3878:  0x6671,\n\t3879:  0x6672,\n\t3880:  0x6673,\n\t3881:  0x6675,\n\t3882:  0x6678,\n\t3883:  0x6679,\n\t3884:  0x667B,\n\t3885:  0x667C,\n\t3886:  0x667D,\n\t3887:  0x667F,\n\t3888:  0x6680,\n\t3889:  0x6681,\n\t3890:  0x6683,\n\t3891:  0x6685,\n\t3892:  0x6686,\n\t3893:  0x6688,\n\t3894:  0x6689,\n\t3895:  0x668A,\n\t3896:  0x668B,\n\t3897:  0x668D,\n\t3898:  0x668E,\n\t3899:  0x668F,\n\t3900:  0x6690,\n\t3901:  0x6692,\n\t3902:  0x6693,\n\t3903:  0x6694,\n\t3904:  0x6695,\n\t3905:  0x6698,\n\t3906:  0x6699,\n\t3907:  0x669A,\n\t3908:  0x669B,\n\t3909:  0x669C,\n\t3910:  0x669E,\n\t3911:  0x669F,\n\t3912:  0x66A0,\n\t3913:  0x66A1,\n\t3914:  0x66A2,\n\t3915:  0x66A3,\n\t3916:  0x66A4,\n\t3917:  0x66A5,\n\t3918:  0x66A6,\n\t3919:  0x66A9,\n\t3920:  0x66AA,\n\t3921:  0x66AB,\n\t3922:  0x66AC,\n\t3923:  0x66AD,\n\t3924:  0x66AF,\n\t3925:  0x66B0,\n\t3926:  0x66B1,\n\t3927:  0x66B2,\n\t3928:  0x66B3,\n\t3929:  0x66B5,\n\t3930:  0x66B6,\n\t3931:  0x66B7,\n\t3932:  0x66B8,\n\t3933:  0x66BA,\n\t3934:  0x66BB,\n\t3935:  0x66BC,\n\t3936:  0x66BD,\n\t3937:  0x66BF,\n\t3938:  0x66C0,\n\t3939:  0x66C1,\n\t3940:  0x66C2,\n\t3941:  0x66C3,\n\t3942:  0x66C4,\n\t3943:  0x66C5,\n\t3944:  0x66C6,\n\t3945:  0x66C7,\n\t3946:  0x66C8,\n\t3947:  0x66C9,\n\t3948:  0x66CA,\n\t3949:  0x66CB,\n\t3950:  0x66CC,\n\t3951:  0x66CD,\n\t3952:  0x66CE,\n\t3953:  0x66CF,\n\t3954:  0x66D0,\n\t3955:  0x66D1,\n\t3956:  0x66D2,\n\t3957:  0x66D3,\n\t3958:  0x66D4,\n\t3959:  0x66D5,\n\t3960:  0x66D6,\n\t3961:  0x66D7,\n\t3962:  0x66D8,\n\t3963:  0x66DA,\n\t3964:  0x66DE,\n\t3965:  0x66DF,\n\t3966:  0x66E0,\n\t3967:  0x66E1,\n\t3968:  0x66E2,\n\t3969:  0x66E3,\n\t3970:  0x66E4,\n\t3971:  0x66E5,\n\t3972:  0x66E7,\n\t3973:  0x66E8,\n\t3974:  0x66EA,\n\t3975:  0x66EB,\n\t3976:  0x66EC,\n\t3977:  0x66ED,\n\t3978:  0x66EE,\n\t3979:  0x66EF,\n\t3980:  0x66F1,\n\t3981:  0x66F5,\n\t3982:  0x66F6,\n\t3983:  0x66F8,\n\t3984:  0x66FA,\n\t3985:  0x66FB,\n\t3986:  0x66FD,\n\t3987:  0x6701,\n\t3988:  0x6702,\n\t3989:  0x6703,\n\t3990:  0x6704,\n\t3991:  0x6705,\n\t3992:  0x6706,\n\t3993:  0x6707,\n\t3994:  0x670C,\n\t3995:  0x670E,\n\t3996:  0x670F,\n\t3997:  0x6711,\n\t3998:  0x6712,\n\t3999:  0x6713,\n\t4000:  0x6716,\n\t4001:  0x6718,\n\t4002:  0x6719,\n\t4003:  0x671A,\n\t4004:  0x671C,\n\t4005:  0x671E,\n\t4006:  0x6720,\n\t4007:  0x6721,\n\t4008:  0x6722,\n\t4009:  0x6723,\n\t4010:  0x6724,\n\t4011:  0x6725,\n\t4012:  0x6727,\n\t4013:  0x6729,\n\t4014:  0x672E,\n\t4015:  0x6730,\n\t4016:  0x6732,\n\t4017:  0x6733,\n\t4018:  0x6736,\n\t4019:  0x6737,\n\t4020:  0x6738,\n\t4021:  0x6739,\n\t4022:  0x673B,\n\t4023:  0x673C,\n\t4024:  0x673E,\n\t4025:  0x673F,\n\t4026:  0x6741,\n\t4027:  0x6744,\n\t4028:  0x6745,\n\t4029:  0x6747,\n\t4030:  0x674A,\n\t4031:  0x674B,\n\t4032:  0x674D,\n\t4033:  0x6752,\n\t4034:  0x6754,\n\t4035:  0x6755,\n\t4036:  0x6757,\n\t4037:  0x6758,\n\t4038:  0x6759,\n\t4039:  0x675A,\n\t4040:  0x675B,\n\t4041:  0x675D,\n\t4042:  0x6762,\n\t4043:  0x6763,\n\t4044:  0x6764,\n\t4045:  0x6766,\n\t4046:  0x6767,\n\t4047:  0x676B,\n\t4048:  0x676C,\n\t4049:  0x676E,\n\t4050:  0x6771,\n\t4051:  0x6774,\n\t4052:  0x6776,\n\t4053:  0x6778,\n\t4054:  0x6779,\n\t4055:  0x677A,\n\t4056:  0x677B,\n\t4057:  0x677D,\n\t4058:  0x6780,\n\t4059:  0x6782,\n\t4060:  0x6783,\n\t4061:  0x6785,\n\t4062:  0x6786,\n\t4063:  0x6788,\n\t4064:  0x678A,\n\t4065:  0x678C,\n\t4066:  0x678D,\n\t4067:  0x678E,\n\t4068:  0x678F,\n\t4069:  0x6791,\n\t4070:  0x6792,\n\t4071:  0x6793,\n\t4072:  0x6794,\n\t4073:  0x6796,\n\t4074:  0x6799,\n\t4075:  0x679B,\n\t4076:  0x679F,\n\t4077:  0x67A0,\n\t4078:  0x67A1,\n\t4079:  0x67A4,\n\t4080:  0x67A6,\n\t4081:  0x67A9,\n\t4082:  0x67AC,\n\t4083:  0x67AE,\n\t4084:  0x67B1,\n\t4085:  0x67B2,\n\t4086:  0x67B4,\n\t4087:  0x67B9,\n\t4088:  0x67BA,\n\t4089:  0x67BB,\n\t4090:  0x67BC,\n\t4091:  0x67BD,\n\t4092:  0x67BE,\n\t4093:  0x67BF,\n\t4094:  0x67C0,\n\t4095:  0x67C2,\n\t4096:  0x67C5,\n\t4097:  0x67C6,\n\t4098:  0x67C7,\n\t4099:  0x67C8,\n\t4100:  0x67C9,\n\t4101:  0x67CA,\n\t4102:  0x67CB,\n\t4103:  0x67CC,\n\t4104:  0x67CD,\n\t4105:  0x67CE,\n\t4106:  0x67D5,\n\t4107:  0x67D6,\n\t4108:  0x67D7,\n\t4109:  0x67DB,\n\t4110:  0x67DF,\n\t4111:  0x67E1,\n\t4112:  0x67E3,\n\t4113:  0x67E4,\n\t4114:  0x67E6,\n\t4115:  0x67E7,\n\t4116:  0x67E8,\n\t4117:  0x67EA,\n\t4118:  0x67EB,\n\t4119:  0x67ED,\n\t4120:  0x67EE,\n\t4121:  0x67F2,\n\t4122:  0x67F5,\n\t4123:  0x67F6,\n\t4124:  0x67F7,\n\t4125:  0x67F8,\n\t4126:  0x67F9,\n\t4127:  0x67FA,\n\t4128:  0x67FB,\n\t4129:  0x67FC,\n\t4130:  0x67FE,\n\t4131:  0x6801,\n\t4132:  0x6802,\n\t4133:  0x6803,\n\t4134:  0x6804,\n\t4135:  0x6806,\n\t4136:  0x680D,\n\t4137:  0x6810,\n\t4138:  0x6812,\n\t4139:  0x6814,\n\t4140:  0x6815,\n\t4141:  0x6818,\n\t4142:  0x6819,\n\t4143:  0x681A,\n\t4144:  0x681B,\n\t4145:  0x681C,\n\t4146:  0x681E,\n\t4147:  0x681F,\n\t4148:  0x6820,\n\t4149:  0x6822,\n\t4150:  0x6823,\n\t4151:  0x6824,\n\t4152:  0x6825,\n\t4153:  0x6826,\n\t4154:  0x6827,\n\t4155:  0x6828,\n\t4156:  0x682B,\n\t4157:  0x682C,\n\t4158:  0x682D,\n\t4159:  0x682E,\n\t4160:  0x682F,\n\t4161:  0x6830,\n\t4162:  0x6831,\n\t4163:  0x6834,\n\t4164:  0x6835,\n\t4165:  0x6836,\n\t4166:  0x683A,\n\t4167:  0x683B,\n\t4168:  0x683F,\n\t4169:  0x6847,\n\t4170:  0x684B,\n\t4171:  0x684D,\n\t4172:  0x684F,\n\t4173:  0x6852,\n\t4174:  0x6856,\n\t4175:  0x6857,\n\t4176:  0x6858,\n\t4177:  0x6859,\n\t4178:  0x685A,\n\t4179:  0x685B,\n\t4180:  0x685C,\n\t4181:  0x685D,\n\t4182:  0x685E,\n\t4183:  0x685F,\n\t4184:  0x686A,\n\t4185:  0x686C,\n\t4186:  0x686D,\n\t4187:  0x686E,\n\t4188:  0x686F,\n\t4189:  0x6870,\n\t4190:  0x6871,\n\t4191:  0x6872,\n\t4192:  0x6873,\n\t4193:  0x6875,\n\t4194:  0x6878,\n\t4195:  0x6879,\n\t4196:  0x687A,\n\t4197:  0x687B,\n\t4198:  0x687C,\n\t4199:  0x687D,\n\t4200:  0x687E,\n\t4201:  0x687F,\n\t4202:  0x6880,\n\t4203:  0x6882,\n\t4204:  0x6884,\n\t4205:  0x6887,\n\t4206:  0x6888,\n\t4207:  0x6889,\n\t4208:  0x688A,\n\t4209:  0x688B,\n\t4210:  0x688C,\n\t4211:  0x688D,\n\t4212:  0x688E,\n\t4213:  0x6890,\n\t4214:  0x6891,\n\t4215:  0x6892,\n\t4216:  0x6894,\n\t4217:  0x6895,\n\t4218:  0x6896,\n\t4219:  0x6898,\n\t4220:  0x6899,\n\t4221:  0x689A,\n\t4222:  0x689B,\n\t4223:  0x689C,\n\t4224:  0x689D,\n\t4225:  0x689E,\n\t4226:  0x689F,\n\t4227:  0x68A0,\n\t4228:  0x68A1,\n\t4229:  0x68A3,\n\t4230:  0x68A4,\n\t4231:  0x68A5,\n\t4232:  0x68A9,\n\t4233:  0x68AA,\n\t4234:  0x68AB,\n\t4235:  0x68AC,\n\t4236:  0x68AE,\n\t4237:  0x68B1,\n\t4238:  0x68B2,\n\t4239:  0x68B4,\n\t4240:  0x68B6,\n\t4241:  0x68B7,\n\t4242:  0x68B8,\n\t4243:  0x68B9,\n\t4244:  0x68BA,\n\t4245:  0x68BB,\n\t4246:  0x68BC,\n\t4247:  0x68BD,\n\t4248:  0x68BE,\n\t4249:  0x68BF,\n\t4250:  0x68C1,\n\t4251:  0x68C3,\n\t4252:  0x68C4,\n\t4253:  0x68C5,\n\t4254:  0x68C6,\n\t4255:  0x68C7,\n\t4256:  0x68C8,\n\t4257:  0x68CA,\n\t4258:  0x68CC,\n\t4259:  0x68CE,\n\t4260:  0x68CF,\n\t4261:  0x68D0,\n\t4262:  0x68D1,\n\t4263:  0x68D3,\n\t4264:  0x68D4,\n\t4265:  0x68D6,\n\t4266:  0x68D7,\n\t4267:  0x68D9,\n\t4268:  0x68DB,\n\t4269:  0x68DC,\n\t4270:  0x68DD,\n\t4271:  0x68DE,\n\t4272:  0x68DF,\n\t4273:  0x68E1,\n\t4274:  0x68E2,\n\t4275:  0x68E4,\n\t4276:  0x68E5,\n\t4277:  0x68E6,\n\t4278:  0x68E7,\n\t4279:  0x68E8,\n\t4280:  0x68E9,\n\t4281:  0x68EA,\n\t4282:  0x68EB,\n\t4283:  0x68EC,\n\t4284:  0x68ED,\n\t4285:  0x68EF,\n\t4286:  0x68F2,\n\t4287:  0x68F3,\n\t4288:  0x68F4,\n\t4289:  0x68F6,\n\t4290:  0x68F7,\n\t4291:  0x68F8,\n\t4292:  0x68FB,\n\t4293:  0x68FD,\n\t4294:  0x68FE,\n\t4295:  0x68FF,\n\t4296:  0x6900,\n\t4297:  0x6902,\n\t4298:  0x6903,\n\t4299:  0x6904,\n\t4300:  0x6906,\n\t4301:  0x6907,\n\t4302:  0x6908,\n\t4303:  0x6909,\n\t4304:  0x690A,\n\t4305:  0x690C,\n\t4306:  0x690F,\n\t4307:  0x6911,\n\t4308:  0x6913,\n\t4309:  0x6914,\n\t4310:  0x6915,\n\t4311:  0x6916,\n\t4312:  0x6917,\n\t4313:  0x6918,\n\t4314:  0x6919,\n\t4315:  0x691A,\n\t4316:  0x691B,\n\t4317:  0x691C,\n\t4318:  0x691D,\n\t4319:  0x691E,\n\t4320:  0x6921,\n\t4321:  0x6922,\n\t4322:  0x6923,\n\t4323:  0x6925,\n\t4324:  0x6926,\n\t4325:  0x6927,\n\t4326:  0x6928,\n\t4327:  0x6929,\n\t4328:  0x692A,\n\t4329:  0x692B,\n\t4330:  0x692C,\n\t4331:  0x692E,\n\t4332:  0x692F,\n\t4333:  0x6931,\n\t4334:  0x6932,\n\t4335:  0x6933,\n\t4336:  0x6935,\n\t4337:  0x6936,\n\t4338:  0x6937,\n\t4339:  0x6938,\n\t4340:  0x693A,\n\t4341:  0x693B,\n\t4342:  0x693C,\n\t4343:  0x693E,\n\t4344:  0x6940,\n\t4345:  0x6941,\n\t4346:  0x6943,\n\t4347:  0x6944,\n\t4348:  0x6945,\n\t4349:  0x6946,\n\t4350:  0x6947,\n\t4351:  0x6948,\n\t4352:  0x6949,\n\t4353:  0x694A,\n\t4354:  0x694B,\n\t4355:  0x694C,\n\t4356:  0x694D,\n\t4357:  0x694E,\n\t4358:  0x694F,\n\t4359:  0x6950,\n\t4360:  0x6951,\n\t4361:  0x6952,\n\t4362:  0x6953,\n\t4363:  0x6955,\n\t4364:  0x6956,\n\t4365:  0x6958,\n\t4366:  0x6959,\n\t4367:  0x695B,\n\t4368:  0x695C,\n\t4369:  0x695F,\n\t4370:  0x6961,\n\t4371:  0x6962,\n\t4372:  0x6964,\n\t4373:  0x6965,\n\t4374:  0x6967,\n\t4375:  0x6968,\n\t4376:  0x6969,\n\t4377:  0x696A,\n\t4378:  0x696C,\n\t4379:  0x696D,\n\t4380:  0x696F,\n\t4381:  0x6970,\n\t4382:  0x6972,\n\t4383:  0x6973,\n\t4384:  0x6974,\n\t4385:  0x6975,\n\t4386:  0x6976,\n\t4387:  0x697A,\n\t4388:  0x697B,\n\t4389:  0x697D,\n\t4390:  0x697E,\n\t4391:  0x697F,\n\t4392:  0x6981,\n\t4393:  0x6983,\n\t4394:  0x6985,\n\t4395:  0x698A,\n\t4396:  0x698B,\n\t4397:  0x698C,\n\t4398:  0x698E,\n\t4399:  0x698F,\n\t4400:  0x6990,\n\t4401:  0x6991,\n\t4402:  0x6992,\n\t4403:  0x6993,\n\t4404:  0x6996,\n\t4405:  0x6997,\n\t4406:  0x6999,\n\t4407:  0x699A,\n\t4408:  0x699D,\n\t4409:  0x699E,\n\t4410:  0x699F,\n\t4411:  0x69A0,\n\t4412:  0x69A1,\n\t4413:  0x69A2,\n\t4414:  0x69A3,\n\t4415:  0x69A4,\n\t4416:  0x69A5,\n\t4417:  0x69A6,\n\t4418:  0x69A9,\n\t4419:  0x69AA,\n\t4420:  0x69AC,\n\t4421:  0x69AE,\n\t4422:  0x69AF,\n\t4423:  0x69B0,\n\t4424:  0x69B2,\n\t4425:  0x69B3,\n\t4426:  0x69B5,\n\t4427:  0x69B6,\n\t4428:  0x69B8,\n\t4429:  0x69B9,\n\t4430:  0x69BA,\n\t4431:  0x69BC,\n\t4432:  0x69BD,\n\t4433:  0x69BE,\n\t4434:  0x69BF,\n\t4435:  0x69C0,\n\t4436:  0x69C2,\n\t4437:  0x69C3,\n\t4438:  0x69C4,\n\t4439:  0x69C5,\n\t4440:  0x69C6,\n\t4441:  0x69C7,\n\t4442:  0x69C8,\n\t4443:  0x69C9,\n\t4444:  0x69CB,\n\t4445:  0x69CD,\n\t4446:  0x69CF,\n\t4447:  0x69D1,\n\t4448:  0x69D2,\n\t4449:  0x69D3,\n\t4450:  0x69D5,\n\t4451:  0x69D6,\n\t4452:  0x69D7,\n\t4453:  0x69D8,\n\t4454:  0x69D9,\n\t4455:  0x69DA,\n\t4456:  0x69DC,\n\t4457:  0x69DD,\n\t4458:  0x69DE,\n\t4459:  0x69E1,\n\t4460:  0x69E2,\n\t4461:  0x69E3,\n\t4462:  0x69E4,\n\t4463:  0x69E5,\n\t4464:  0x69E6,\n\t4465:  0x69E7,\n\t4466:  0x69E8,\n\t4467:  0x69E9,\n\t4468:  0x69EA,\n\t4469:  0x69EB,\n\t4470:  0x69EC,\n\t4471:  0x69EE,\n\t4472:  0x69EF,\n\t4473:  0x69F0,\n\t4474:  0x69F1,\n\t4475:  0x69F3,\n\t4476:  0x69F4,\n\t4477:  0x69F5,\n\t4478:  0x69F6,\n\t4479:  0x69F7,\n\t4480:  0x69F8,\n\t4481:  0x69F9,\n\t4482:  0x69FA,\n\t4483:  0x69FB,\n\t4484:  0x69FC,\n\t4485:  0x69FE,\n\t4486:  0x6A00,\n\t4487:  0x6A01,\n\t4488:  0x6A02,\n\t4489:  0x6A03,\n\t4490:  0x6A04,\n\t4491:  0x6A05,\n\t4492:  0x6A06,\n\t4493:  0x6A07,\n\t4494:  0x6A08,\n\t4495:  0x6A09,\n\t4496:  0x6A0B,\n\t4497:  0x6A0C,\n\t4498:  0x6A0D,\n\t4499:  0x6A0E,\n\t4500:  0x6A0F,\n\t4501:  0x6A10,\n\t4502:  0x6A11,\n\t4503:  0x6A12,\n\t4504:  0x6A13,\n\t4505:  0x6A14,\n\t4506:  0x6A15,\n\t4507:  0x6A16,\n\t4508:  0x6A19,\n\t4509:  0x6A1A,\n\t4510:  0x6A1B,\n\t4511:  0x6A1C,\n\t4512:  0x6A1D,\n\t4513:  0x6A1E,\n\t4514:  0x6A20,\n\t4515:  0x6A22,\n\t4516:  0x6A23,\n\t4517:  0x6A24,\n\t4518:  0x6A25,\n\t4519:  0x6A26,\n\t4520:  0x6A27,\n\t4521:  0x6A29,\n\t4522:  0x6A2B,\n\t4523:  0x6A2C,\n\t4524:  0x6A2D,\n\t4525:  0x6A2E,\n\t4526:  0x6A30,\n\t4527:  0x6A32,\n\t4528:  0x6A33,\n\t4529:  0x6A34,\n\t4530:  0x6A36,\n\t4531:  0x6A37,\n\t4532:  0x6A38,\n\t4533:  0x6A39,\n\t4534:  0x6A3A,\n\t4535:  0x6A3B,\n\t4536:  0x6A3C,\n\t4537:  0x6A3F,\n\t4538:  0x6A40,\n\t4539:  0x6A41,\n\t4540:  0x6A42,\n\t4541:  0x6A43,\n\t4542:  0x6A45,\n\t4543:  0x6A46,\n\t4544:  0x6A48,\n\t4545:  0x6A49,\n\t4546:  0x6A4A,\n\t4547:  0x6A4B,\n\t4548:  0x6A4C,\n\t4549:  0x6A4D,\n\t4550:  0x6A4E,\n\t4551:  0x6A4F,\n\t4552:  0x6A51,\n\t4553:  0x6A52,\n\t4554:  0x6A53,\n\t4555:  0x6A54,\n\t4556:  0x6A55,\n\t4557:  0x6A56,\n\t4558:  0x6A57,\n\t4559:  0x6A5A,\n\t4560:  0x6A5C,\n\t4561:  0x6A5D,\n\t4562:  0x6A5E,\n\t4563:  0x6A5F,\n\t4564:  0x6A60,\n\t4565:  0x6A62,\n\t4566:  0x6A63,\n\t4567:  0x6A64,\n\t4568:  0x6A66,\n\t4569:  0x6A67,\n\t4570:  0x6A68,\n\t4571:  0x6A69,\n\t4572:  0x6A6A,\n\t4573:  0x6A6B,\n\t4574:  0x6A6C,\n\t4575:  0x6A6D,\n\t4576:  0x6A6E,\n\t4577:  0x6A6F,\n\t4578:  0x6A70,\n\t4579:  0x6A72,\n\t4580:  0x6A73,\n\t4581:  0x6A74,\n\t4582:  0x6A75,\n\t4583:  0x6A76,\n\t4584:  0x6A77,\n\t4585:  0x6A78,\n\t4586:  0x6A7A,\n\t4587:  0x6A7B,\n\t4588:  0x6A7D,\n\t4589:  0x6A7E,\n\t4590:  0x6A7F,\n\t4591:  0x6A81,\n\t4592:  0x6A82,\n\t4593:  0x6A83,\n\t4594:  0x6A85,\n\t4595:  0x6A86,\n\t4596:  0x6A87,\n\t4597:  0x6A88,\n\t4598:  0x6A89,\n\t4599:  0x6A8A,\n\t4600:  0x6A8B,\n\t4601:  0x6A8C,\n\t4602:  0x6A8D,\n\t4603:  0x6A8F,\n\t4604:  0x6A92,\n\t4605:  0x6A93,\n\t4606:  0x6A94,\n\t4607:  0x6A95,\n\t4608:  0x6A96,\n\t4609:  0x6A98,\n\t4610:  0x6A99,\n\t4611:  0x6A9A,\n\t4612:  0x6A9B,\n\t4613:  0x6A9C,\n\t4614:  0x6A9D,\n\t4615:  0x6A9E,\n\t4616:  0x6A9F,\n\t4617:  0x6AA1,\n\t4618:  0x6AA2,\n\t4619:  0x6AA3,\n\t4620:  0x6AA4,\n\t4621:  0x6AA5,\n\t4622:  0x6AA6,\n\t4623:  0x6AA7,\n\t4624:  0x6AA8,\n\t4625:  0x6AAA,\n\t4626:  0x6AAD,\n\t4627:  0x6AAE,\n\t4628:  0x6AAF,\n\t4629:  0x6AB0,\n\t4630:  0x6AB1,\n\t4631:  0x6AB2,\n\t4632:  0x6AB3,\n\t4633:  0x6AB4,\n\t4634:  0x6AB5,\n\t4635:  0x6AB6,\n\t4636:  0x6AB7,\n\t4637:  0x6AB8,\n\t4638:  0x6AB9,\n\t4639:  0x6ABA,\n\t4640:  0x6ABB,\n\t4641:  0x6ABC,\n\t4642:  0x6ABD,\n\t4643:  0x6ABE,\n\t4644:  0x6ABF,\n\t4645:  0x6AC0,\n\t4646:  0x6AC1,\n\t4647:  0x6AC2,\n\t4648:  0x6AC3,\n\t4649:  0x6AC4,\n\t4650:  0x6AC5,\n\t4651:  0x6AC6,\n\t4652:  0x6AC7,\n\t4653:  0x6AC8,\n\t4654:  0x6AC9,\n\t4655:  0x6ACA,\n\t4656:  0x6ACB,\n\t4657:  0x6ACC,\n\t4658:  0x6ACD,\n\t4659:  0x6ACE,\n\t4660:  0x6ACF,\n\t4661:  0x6AD0,\n\t4662:  0x6AD1,\n\t4663:  0x6AD2,\n\t4664:  0x6AD3,\n\t4665:  0x6AD4,\n\t4666:  0x6AD5,\n\t4667:  0x6AD6,\n\t4668:  0x6AD7,\n\t4669:  0x6AD8,\n\t4670:  0x6AD9,\n\t4671:  0x6ADA,\n\t4672:  0x6ADB,\n\t4673:  0x6ADC,\n\t4674:  0x6ADD,\n\t4675:  0x6ADE,\n\t4676:  0x6ADF,\n\t4677:  0x6AE0,\n\t4678:  0x6AE1,\n\t4679:  0x6AE2,\n\t4680:  0x6AE3,\n\t4681:  0x6AE4,\n\t4682:  0x6AE5,\n\t4683:  0x6AE6,\n\t4684:  0x6AE7,\n\t4685:  0x6AE8,\n\t4686:  0x6AE9,\n\t4687:  0x6AEA,\n\t4688:  0x6AEB,\n\t4689:  0x6AEC,\n\t4690:  0x6AED,\n\t4691:  0x6AEE,\n\t4692:  0x6AEF,\n\t4693:  0x6AF0,\n\t4694:  0x6AF1,\n\t4695:  0x6AF2,\n\t4696:  0x6AF3,\n\t4697:  0x6AF4,\n\t4698:  0x6AF5,\n\t4699:  0x6AF6,\n\t4700:  0x6AF7,\n\t4701:  0x6AF8,\n\t4702:  0x6AF9,\n\t4703:  0x6AFA,\n\t4704:  0x6AFB,\n\t4705:  0x6AFC,\n\t4706:  0x6AFD,\n\t4707:  0x6AFE,\n\t4708:  0x6AFF,\n\t4709:  0x6B00,\n\t4710:  0x6B01,\n\t4711:  0x6B02,\n\t4712:  0x6B03,\n\t4713:  0x6B04,\n\t4714:  0x6B05,\n\t4715:  0x6B06,\n\t4716:  0x6B07,\n\t4717:  0x6B08,\n\t4718:  0x6B09,\n\t4719:  0x6B0A,\n\t4720:  0x6B0B,\n\t4721:  0x6B0C,\n\t4722:  0x6B0D,\n\t4723:  0x6B0E,\n\t4724:  0x6B0F,\n\t4725:  0x6B10,\n\t4726:  0x6B11,\n\t4727:  0x6B12,\n\t4728:  0x6B13,\n\t4729:  0x6B14,\n\t4730:  0x6B15,\n\t4731:  0x6B16,\n\t4732:  0x6B17,\n\t4733:  0x6B18,\n\t4734:  0x6B19,\n\t4735:  0x6B1A,\n\t4736:  0x6B1B,\n\t4737:  0x6B1C,\n\t4738:  0x6B1D,\n\t4739:  0x6B1E,\n\t4740:  0x6B1F,\n\t4741:  0x6B25,\n\t4742:  0x6B26,\n\t4743:  0x6B28,\n\t4744:  0x6B29,\n\t4745:  0x6B2A,\n\t4746:  0x6B2B,\n\t4747:  0x6B2C,\n\t4748:  0x6B2D,\n\t4749:  0x6B2E,\n\t4750:  0x6B2F,\n\t4751:  0x6B30,\n\t4752:  0x6B31,\n\t4753:  0x6B33,\n\t4754:  0x6B34,\n\t4755:  0x6B35,\n\t4756:  0x6B36,\n\t4757:  0x6B38,\n\t4758:  0x6B3B,\n\t4759:  0x6B3C,\n\t4760:  0x6B3D,\n\t4761:  0x6B3F,\n\t4762:  0x6B40,\n\t4763:  0x6B41,\n\t4764:  0x6B42,\n\t4765:  0x6B44,\n\t4766:  0x6B45,\n\t4767:  0x6B48,\n\t4768:  0x6B4A,\n\t4769:  0x6B4B,\n\t4770:  0x6B4D,\n\t4771:  0x6B4E,\n\t4772:  0x6B4F,\n\t4773:  0x6B50,\n\t4774:  0x6B51,\n\t4775:  0x6B52,\n\t4776:  0x6B53,\n\t4777:  0x6B54,\n\t4778:  0x6B55,\n\t4779:  0x6B56,\n\t4780:  0x6B57,\n\t4781:  0x6B58,\n\t4782:  0x6B5A,\n\t4783:  0x6B5B,\n\t4784:  0x6B5C,\n\t4785:  0x6B5D,\n\t4786:  0x6B5E,\n\t4787:  0x6B5F,\n\t4788:  0x6B60,\n\t4789:  0x6B61,\n\t4790:  0x6B68,\n\t4791:  0x6B69,\n\t4792:  0x6B6B,\n\t4793:  0x6B6C,\n\t4794:  0x6B6D,\n\t4795:  0x6B6E,\n\t4796:  0x6B6F,\n\t4797:  0x6B70,\n\t4798:  0x6B71,\n\t4799:  0x6B72,\n\t4800:  0x6B73,\n\t4801:  0x6B74,\n\t4802:  0x6B75,\n\t4803:  0x6B76,\n\t4804:  0x6B77,\n\t4805:  0x6B78,\n\t4806:  0x6B7A,\n\t4807:  0x6B7D,\n\t4808:  0x6B7E,\n\t4809:  0x6B7F,\n\t4810:  0x6B80,\n\t4811:  0x6B85,\n\t4812:  0x6B88,\n\t4813:  0x6B8C,\n\t4814:  0x6B8E,\n\t4815:  0x6B8F,\n\t4816:  0x6B90,\n\t4817:  0x6B91,\n\t4818:  0x6B94,\n\t4819:  0x6B95,\n\t4820:  0x6B97,\n\t4821:  0x6B98,\n\t4822:  0x6B99,\n\t4823:  0x6B9C,\n\t4824:  0x6B9D,\n\t4825:  0x6B9E,\n\t4826:  0x6B9F,\n\t4827:  0x6BA0,\n\t4828:  0x6BA2,\n\t4829:  0x6BA3,\n\t4830:  0x6BA4,\n\t4831:  0x6BA5,\n\t4832:  0x6BA6,\n\t4833:  0x6BA7,\n\t4834:  0x6BA8,\n\t4835:  0x6BA9,\n\t4836:  0x6BAB,\n\t4837:  0x6BAC,\n\t4838:  0x6BAD,\n\t4839:  0x6BAE,\n\t4840:  0x6BAF,\n\t4841:  0x6BB0,\n\t4842:  0x6BB1,\n\t4843:  0x6BB2,\n\t4844:  0x6BB6,\n\t4845:  0x6BB8,\n\t4846:  0x6BB9,\n\t4847:  0x6BBA,\n\t4848:  0x6BBB,\n\t4849:  0x6BBC,\n\t4850:  0x6BBD,\n\t4851:  0x6BBE,\n\t4852:  0x6BC0,\n\t4853:  0x6BC3,\n\t4854:  0x6BC4,\n\t4855:  0x6BC6,\n\t4856:  0x6BC7,\n\t4857:  0x6BC8,\n\t4858:  0x6BC9,\n\t4859:  0x6BCA,\n\t4860:  0x6BCC,\n\t4861:  0x6BCE,\n\t4862:  0x6BD0,\n\t4863:  0x6BD1,\n\t4864:  0x6BD8,\n\t4865:  0x6BDA,\n\t4866:  0x6BDC,\n\t4867:  0x6BDD,\n\t4868:  0x6BDE,\n\t4869:  0x6BDF,\n\t4870:  0x6BE0,\n\t4871:  0x6BE2,\n\t4872:  0x6BE3,\n\t4873:  0x6BE4,\n\t4874:  0x6BE5,\n\t4875:  0x6BE6,\n\t4876:  0x6BE7,\n\t4877:  0x6BE8,\n\t4878:  0x6BE9,\n\t4879:  0x6BEC,\n\t4880:  0x6BED,\n\t4881:  0x6BEE,\n\t4882:  0x6BF0,\n\t4883:  0x6BF1,\n\t4884:  0x6BF2,\n\t4885:  0x6BF4,\n\t4886:  0x6BF6,\n\t4887:  0x6BF7,\n\t4888:  0x6BF8,\n\t4889:  0x6BFA,\n\t4890:  0x6BFB,\n\t4891:  0x6BFC,\n\t4892:  0x6BFE,\n\t4893:  0x6BFF,\n\t4894:  0x6C00,\n\t4895:  0x6C01,\n\t4896:  0x6C02,\n\t4897:  0x6C03,\n\t4898:  0x6C04,\n\t4899:  0x6C08,\n\t4900:  0x6C09,\n\t4901:  0x6C0A,\n\t4902:  0x6C0B,\n\t4903:  0x6C0C,\n\t4904:  0x6C0E,\n\t4905:  0x6C12,\n\t4906:  0x6C17,\n\t4907:  0x6C1C,\n\t4908:  0x6C1D,\n\t4909:  0x6C1E,\n\t4910:  0x6C20,\n\t4911:  0x6C23,\n\t4912:  0x6C25,\n\t4913:  0x6C2B,\n\t4914:  0x6C2C,\n\t4915:  0x6C2D,\n\t4916:  0x6C31,\n\t4917:  0x6C33,\n\t4918:  0x6C36,\n\t4919:  0x6C37,\n\t4920:  0x6C39,\n\t4921:  0x6C3A,\n\t4922:  0x6C3B,\n\t4923:  0x6C3C,\n\t4924:  0x6C3E,\n\t4925:  0x6C3F,\n\t4926:  0x6C43,\n\t4927:  0x6C44,\n\t4928:  0x6C45,\n\t4929:  0x6C48,\n\t4930:  0x6C4B,\n\t4931:  0x6C4C,\n\t4932:  0x6C4D,\n\t4933:  0x6C4E,\n\t4934:  0x6C4F,\n\t4935:  0x6C51,\n\t4936:  0x6C52,\n\t4937:  0x6C53,\n\t4938:  0x6C56,\n\t4939:  0x6C58,\n\t4940:  0x6C59,\n\t4941:  0x6C5A,\n\t4942:  0x6C62,\n\t4943:  0x6C63,\n\t4944:  0x6C65,\n\t4945:  0x6C66,\n\t4946:  0x6C67,\n\t4947:  0x6C6B,\n\t4948:  0x6C6C,\n\t4949:  0x6C6D,\n\t4950:  0x6C6E,\n\t4951:  0x6C6F,\n\t4952:  0x6C71,\n\t4953:  0x6C73,\n\t4954:  0x6C75,\n\t4955:  0x6C77,\n\t4956:  0x6C78,\n\t4957:  0x6C7A,\n\t4958:  0x6C7B,\n\t4959:  0x6C7C,\n\t4960:  0x6C7F,\n\t4961:  0x6C80,\n\t4962:  0x6C84,\n\t4963:  0x6C87,\n\t4964:  0x6C8A,\n\t4965:  0x6C8B,\n\t4966:  0x6C8D,\n\t4967:  0x6C8E,\n\t4968:  0x6C91,\n\t4969:  0x6C92,\n\t4970:  0x6C95,\n\t4971:  0x6C96,\n\t4972:  0x6C97,\n\t4973:  0x6C98,\n\t4974:  0x6C9A,\n\t4975:  0x6C9C,\n\t4976:  0x6C9D,\n\t4977:  0x6C9E,\n\t4978:  0x6CA0,\n\t4979:  0x6CA2,\n\t4980:  0x6CA8,\n\t4981:  0x6CAC,\n\t4982:  0x6CAF,\n\t4983:  0x6CB0,\n\t4984:  0x6CB4,\n\t4985:  0x6CB5,\n\t4986:  0x6CB6,\n\t4987:  0x6CB7,\n\t4988:  0x6CBA,\n\t4989:  0x6CC0,\n\t4990:  0x6CC1,\n\t4991:  0x6CC2,\n\t4992:  0x6CC3,\n\t4993:  0x6CC6,\n\t4994:  0x6CC7,\n\t4995:  0x6CC8,\n\t4996:  0x6CCB,\n\t4997:  0x6CCD,\n\t4998:  0x6CCE,\n\t4999:  0x6CCF,\n\t5000:  0x6CD1,\n\t5001:  0x6CD2,\n\t5002:  0x6CD8,\n\t5003:  0x6CD9,\n\t5004:  0x6CDA,\n\t5005:  0x6CDC,\n\t5006:  0x6CDD,\n\t5007:  0x6CDF,\n\t5008:  0x6CE4,\n\t5009:  0x6CE6,\n\t5010:  0x6CE7,\n\t5011:  0x6CE9,\n\t5012:  0x6CEC,\n\t5013:  0x6CED,\n\t5014:  0x6CF2,\n\t5015:  0x6CF4,\n\t5016:  0x6CF9,\n\t5017:  0x6CFF,\n\t5018:  0x6D00,\n\t5019:  0x6D02,\n\t5020:  0x6D03,\n\t5021:  0x6D05,\n\t5022:  0x6D06,\n\t5023:  0x6D08,\n\t5024:  0x6D09,\n\t5025:  0x6D0A,\n\t5026:  0x6D0D,\n\t5027:  0x6D0F,\n\t5028:  0x6D10,\n\t5029:  0x6D11,\n\t5030:  0x6D13,\n\t5031:  0x6D14,\n\t5032:  0x6D15,\n\t5033:  0x6D16,\n\t5034:  0x6D18,\n\t5035:  0x6D1C,\n\t5036:  0x6D1D,\n\t5037:  0x6D1F,\n\t5038:  0x6D20,\n\t5039:  0x6D21,\n\t5040:  0x6D22,\n\t5041:  0x6D23,\n\t5042:  0x6D24,\n\t5043:  0x6D26,\n\t5044:  0x6D28,\n\t5045:  0x6D29,\n\t5046:  0x6D2C,\n\t5047:  0x6D2D,\n\t5048:  0x6D2F,\n\t5049:  0x6D30,\n\t5050:  0x6D34,\n\t5051:  0x6D36,\n\t5052:  0x6D37,\n\t5053:  0x6D38,\n\t5054:  0x6D3A,\n\t5055:  0x6D3F,\n\t5056:  0x6D40,\n\t5057:  0x6D42,\n\t5058:  0x6D44,\n\t5059:  0x6D49,\n\t5060:  0x6D4C,\n\t5061:  0x6D50,\n\t5062:  0x6D55,\n\t5063:  0x6D56,\n\t5064:  0x6D57,\n\t5065:  0x6D58,\n\t5066:  0x6D5B,\n\t5067:  0x6D5D,\n\t5068:  0x6D5F,\n\t5069:  0x6D61,\n\t5070:  0x6D62,\n\t5071:  0x6D64,\n\t5072:  0x6D65,\n\t5073:  0x6D67,\n\t5074:  0x6D68,\n\t5075:  0x6D6B,\n\t5076:  0x6D6C,\n\t5077:  0x6D6D,\n\t5078:  0x6D70,\n\t5079:  0x6D71,\n\t5080:  0x6D72,\n\t5081:  0x6D73,\n\t5082:  0x6D75,\n\t5083:  0x6D76,\n\t5084:  0x6D79,\n\t5085:  0x6D7A,\n\t5086:  0x6D7B,\n\t5087:  0x6D7D,\n\t5088:  0x6D7E,\n\t5089:  0x6D7F,\n\t5090:  0x6D80,\n\t5091:  0x6D81,\n\t5092:  0x6D83,\n\t5093:  0x6D84,\n\t5094:  0x6D86,\n\t5095:  0x6D87,\n\t5096:  0x6D8A,\n\t5097:  0x6D8B,\n\t5098:  0x6D8D,\n\t5099:  0x6D8F,\n\t5100:  0x6D90,\n\t5101:  0x6D92,\n\t5102:  0x6D96,\n\t5103:  0x6D97,\n\t5104:  0x6D98,\n\t5105:  0x6D99,\n\t5106:  0x6D9A,\n\t5107:  0x6D9C,\n\t5108:  0x6DA2,\n\t5109:  0x6DA5,\n\t5110:  0x6DAC,\n\t5111:  0x6DAD,\n\t5112:  0x6DB0,\n\t5113:  0x6DB1,\n\t5114:  0x6DB3,\n\t5115:  0x6DB4,\n\t5116:  0x6DB6,\n\t5117:  0x6DB7,\n\t5118:  0x6DB9,\n\t5119:  0x6DBA,\n\t5120:  0x6DBB,\n\t5121:  0x6DBC,\n\t5122:  0x6DBD,\n\t5123:  0x6DBE,\n\t5124:  0x6DC1,\n\t5125:  0x6DC2,\n\t5126:  0x6DC3,\n\t5127:  0x6DC8,\n\t5128:  0x6DC9,\n\t5129:  0x6DCA,\n\t5130:  0x6DCD,\n\t5131:  0x6DCE,\n\t5132:  0x6DCF,\n\t5133:  0x6DD0,\n\t5134:  0x6DD2,\n\t5135:  0x6DD3,\n\t5136:  0x6DD4,\n\t5137:  0x6DD5,\n\t5138:  0x6DD7,\n\t5139:  0x6DDA,\n\t5140:  0x6DDB,\n\t5141:  0x6DDC,\n\t5142:  0x6DDF,\n\t5143:  0x6DE2,\n\t5144:  0x6DE3,\n\t5145:  0x6DE5,\n\t5146:  0x6DE7,\n\t5147:  0x6DE8,\n\t5148:  0x6DE9,\n\t5149:  0x6DEA,\n\t5150:  0x6DED,\n\t5151:  0x6DEF,\n\t5152:  0x6DF0,\n\t5153:  0x6DF2,\n\t5154:  0x6DF4,\n\t5155:  0x6DF5,\n\t5156:  0x6DF6,\n\t5157:  0x6DF8,\n\t5158:  0x6DFA,\n\t5159:  0x6DFD,\n\t5160:  0x6DFE,\n\t5161:  0x6DFF,\n\t5162:  0x6E00,\n\t5163:  0x6E01,\n\t5164:  0x6E02,\n\t5165:  0x6E03,\n\t5166:  0x6E04,\n\t5167:  0x6E06,\n\t5168:  0x6E07,\n\t5169:  0x6E08,\n\t5170:  0x6E09,\n\t5171:  0x6E0B,\n\t5172:  0x6E0F,\n\t5173:  0x6E12,\n\t5174:  0x6E13,\n\t5175:  0x6E15,\n\t5176:  0x6E18,\n\t5177:  0x6E19,\n\t5178:  0x6E1B,\n\t5179:  0x6E1C,\n\t5180:  0x6E1E,\n\t5181:  0x6E1F,\n\t5182:  0x6E22,\n\t5183:  0x6E26,\n\t5184:  0x6E27,\n\t5185:  0x6E28,\n\t5186:  0x6E2A,\n\t5187:  0x6E2C,\n\t5188:  0x6E2E,\n\t5189:  0x6E30,\n\t5190:  0x6E31,\n\t5191:  0x6E33,\n\t5192:  0x6E35,\n\t5193:  0x6E36,\n\t5194:  0x6E37,\n\t5195:  0x6E39,\n\t5196:  0x6E3B,\n\t5197:  0x6E3C,\n\t5198:  0x6E3D,\n\t5199:  0x6E3E,\n\t5200:  0x6E3F,\n\t5201:  0x6E40,\n\t5202:  0x6E41,\n\t5203:  0x6E42,\n\t5204:  0x6E45,\n\t5205:  0x6E46,\n\t5206:  0x6E47,\n\t5207:  0x6E48,\n\t5208:  0x6E49,\n\t5209:  0x6E4A,\n\t5210:  0x6E4B,\n\t5211:  0x6E4C,\n\t5212:  0x6E4F,\n\t5213:  0x6E50,\n\t5214:  0x6E51,\n\t5215:  0x6E52,\n\t5216:  0x6E55,\n\t5217:  0x6E57,\n\t5218:  0x6E59,\n\t5219:  0x6E5A,\n\t5220:  0x6E5C,\n\t5221:  0x6E5D,\n\t5222:  0x6E5E,\n\t5223:  0x6E60,\n\t5224:  0x6E61,\n\t5225:  0x6E62,\n\t5226:  0x6E63,\n\t5227:  0x6E64,\n\t5228:  0x6E65,\n\t5229:  0x6E66,\n\t5230:  0x6E67,\n\t5231:  0x6E68,\n\t5232:  0x6E69,\n\t5233:  0x6E6A,\n\t5234:  0x6E6C,\n\t5235:  0x6E6D,\n\t5236:  0x6E6F,\n\t5237:  0x6E70,\n\t5238:  0x6E71,\n\t5239:  0x6E72,\n\t5240:  0x6E73,\n\t5241:  0x6E74,\n\t5242:  0x6E75,\n\t5243:  0x6E76,\n\t5244:  0x6E77,\n\t5245:  0x6E78,\n\t5246:  0x6E79,\n\t5247:  0x6E7A,\n\t5248:  0x6E7B,\n\t5249:  0x6E7C,\n\t5250:  0x6E7D,\n\t5251:  0x6E80,\n\t5252:  0x6E81,\n\t5253:  0x6E82,\n\t5254:  0x6E84,\n\t5255:  0x6E87,\n\t5256:  0x6E88,\n\t5257:  0x6E8A,\n\t5258:  0x6E8B,\n\t5259:  0x6E8C,\n\t5260:  0x6E8D,\n\t5261:  0x6E8E,\n\t5262:  0x6E91,\n\t5263:  0x6E92,\n\t5264:  0x6E93,\n\t5265:  0x6E94,\n\t5266:  0x6E95,\n\t5267:  0x6E96,\n\t5268:  0x6E97,\n\t5269:  0x6E99,\n\t5270:  0x6E9A,\n\t5271:  0x6E9B,\n\t5272:  0x6E9D,\n\t5273:  0x6E9E,\n\t5274:  0x6EA0,\n\t5275:  0x6EA1,\n\t5276:  0x6EA3,\n\t5277:  0x6EA4,\n\t5278:  0x6EA6,\n\t5279:  0x6EA8,\n\t5280:  0x6EA9,\n\t5281:  0x6EAB,\n\t5282:  0x6EAC,\n\t5283:  0x6EAD,\n\t5284:  0x6EAE,\n\t5285:  0x6EB0,\n\t5286:  0x6EB3,\n\t5287:  0x6EB5,\n\t5288:  0x6EB8,\n\t5289:  0x6EB9,\n\t5290:  0x6EBC,\n\t5291:  0x6EBE,\n\t5292:  0x6EBF,\n\t5293:  0x6EC0,\n\t5294:  0x6EC3,\n\t5295:  0x6EC4,\n\t5296:  0x6EC5,\n\t5297:  0x6EC6,\n\t5298:  0x6EC8,\n\t5299:  0x6EC9,\n\t5300:  0x6ECA,\n\t5301:  0x6ECC,\n\t5302:  0x6ECD,\n\t5303:  0x6ECE,\n\t5304:  0x6ED0,\n\t5305:  0x6ED2,\n\t5306:  0x6ED6,\n\t5307:  0x6ED8,\n\t5308:  0x6ED9,\n\t5309:  0x6EDB,\n\t5310:  0x6EDC,\n\t5311:  0x6EDD,\n\t5312:  0x6EE3,\n\t5313:  0x6EE7,\n\t5314:  0x6EEA,\n\t5315:  0x6EEB,\n\t5316:  0x6EEC,\n\t5317:  0x6EED,\n\t5318:  0x6EEE,\n\t5319:  0x6EEF,\n\t5320:  0x6EF0,\n\t5321:  0x6EF1,\n\t5322:  0x6EF2,\n\t5323:  0x6EF3,\n\t5324:  0x6EF5,\n\t5325:  0x6EF6,\n\t5326:  0x6EF7,\n\t5327:  0x6EF8,\n\t5328:  0x6EFA,\n\t5329:  0x6EFB,\n\t5330:  0x6EFC,\n\t5331:  0x6EFD,\n\t5332:  0x6EFE,\n\t5333:  0x6EFF,\n\t5334:  0x6F00,\n\t5335:  0x6F01,\n\t5336:  0x6F03,\n\t5337:  0x6F04,\n\t5338:  0x6F05,\n\t5339:  0x6F07,\n\t5340:  0x6F08,\n\t5341:  0x6F0A,\n\t5342:  0x6F0B,\n\t5343:  0x6F0C,\n\t5344:  0x6F0D,\n\t5345:  0x6F0E,\n\t5346:  0x6F10,\n\t5347:  0x6F11,\n\t5348:  0x6F12,\n\t5349:  0x6F16,\n\t5350:  0x6F17,\n\t5351:  0x6F18,\n\t5352:  0x6F19,\n\t5353:  0x6F1A,\n\t5354:  0x6F1B,\n\t5355:  0x6F1C,\n\t5356:  0x6F1D,\n\t5357:  0x6F1E,\n\t5358:  0x6F1F,\n\t5359:  0x6F21,\n\t5360:  0x6F22,\n\t5361:  0x6F23,\n\t5362:  0x6F25,\n\t5363:  0x6F26,\n\t5364:  0x6F27,\n\t5365:  0x6F28,\n\t5366:  0x6F2C,\n\t5367:  0x6F2E,\n\t5368:  0x6F30,\n\t5369:  0x6F32,\n\t5370:  0x6F34,\n\t5371:  0x6F35,\n\t5372:  0x6F37,\n\t5373:  0x6F38,\n\t5374:  0x6F39,\n\t5375:  0x6F3A,\n\t5376:  0x6F3B,\n\t5377:  0x6F3C,\n\t5378:  0x6F3D,\n\t5379:  0x6F3F,\n\t5380:  0x6F40,\n\t5381:  0x6F41,\n\t5382:  0x6F42,\n\t5383:  0x6F43,\n\t5384:  0x6F44,\n\t5385:  0x6F45,\n\t5386:  0x6F48,\n\t5387:  0x6F49,\n\t5388:  0x6F4A,\n\t5389:  0x6F4C,\n\t5390:  0x6F4E,\n\t5391:  0x6F4F,\n\t5392:  0x6F50,\n\t5393:  0x6F51,\n\t5394:  0x6F52,\n\t5395:  0x6F53,\n\t5396:  0x6F54,\n\t5397:  0x6F55,\n\t5398:  0x6F56,\n\t5399:  0x6F57,\n\t5400:  0x6F59,\n\t5401:  0x6F5A,\n\t5402:  0x6F5B,\n\t5403:  0x6F5D,\n\t5404:  0x6F5F,\n\t5405:  0x6F60,\n\t5406:  0x6F61,\n\t5407:  0x6F63,\n\t5408:  0x6F64,\n\t5409:  0x6F65,\n\t5410:  0x6F67,\n\t5411:  0x6F68,\n\t5412:  0x6F69,\n\t5413:  0x6F6A,\n\t5414:  0x6F6B,\n\t5415:  0x6F6C,\n\t5416:  0x6F6F,\n\t5417:  0x6F70,\n\t5418:  0x6F71,\n\t5419:  0x6F73,\n\t5420:  0x6F75,\n\t5421:  0x6F76,\n\t5422:  0x6F77,\n\t5423:  0x6F79,\n\t5424:  0x6F7B,\n\t5425:  0x6F7D,\n\t5426:  0x6F7E,\n\t5427:  0x6F7F,\n\t5428:  0x6F80,\n\t5429:  0x6F81,\n\t5430:  0x6F82,\n\t5431:  0x6F83,\n\t5432:  0x6F85,\n\t5433:  0x6F86,\n\t5434:  0x6F87,\n\t5435:  0x6F8A,\n\t5436:  0x6F8B,\n\t5437:  0x6F8F,\n\t5438:  0x6F90,\n\t5439:  0x6F91,\n\t5440:  0x6F92,\n\t5441:  0x6F93,\n\t5442:  0x6F94,\n\t5443:  0x6F95,\n\t5444:  0x6F96,\n\t5445:  0x6F97,\n\t5446:  0x6F98,\n\t5447:  0x6F99,\n\t5448:  0x6F9A,\n\t5449:  0x6F9B,\n\t5450:  0x6F9D,\n\t5451:  0x6F9E,\n\t5452:  0x6F9F,\n\t5453:  0x6FA0,\n\t5454:  0x6FA2,\n\t5455:  0x6FA3,\n\t5456:  0x6FA4,\n\t5457:  0x6FA5,\n\t5458:  0x6FA6,\n\t5459:  0x6FA8,\n\t5460:  0x6FA9,\n\t5461:  0x6FAA,\n\t5462:  0x6FAB,\n\t5463:  0x6FAC,\n\t5464:  0x6FAD,\n\t5465:  0x6FAE,\n\t5466:  0x6FAF,\n\t5467:  0x6FB0,\n\t5468:  0x6FB1,\n\t5469:  0x6FB2,\n\t5470:  0x6FB4,\n\t5471:  0x6FB5,\n\t5472:  0x6FB7,\n\t5473:  0x6FB8,\n\t5474:  0x6FBA,\n\t5475:  0x6FBB,\n\t5476:  0x6FBC,\n\t5477:  0x6FBD,\n\t5478:  0x6FBE,\n\t5479:  0x6FBF,\n\t5480:  0x6FC1,\n\t5481:  0x6FC3,\n\t5482:  0x6FC4,\n\t5483:  0x6FC5,\n\t5484:  0x6FC6,\n\t5485:  0x6FC7,\n\t5486:  0x6FC8,\n\t5487:  0x6FCA,\n\t5488:  0x6FCB,\n\t5489:  0x6FCC,\n\t5490:  0x6FCD,\n\t5491:  0x6FCE,\n\t5492:  0x6FCF,\n\t5493:  0x6FD0,\n\t5494:  0x6FD3,\n\t5495:  0x6FD4,\n\t5496:  0x6FD5,\n\t5497:  0x6FD6,\n\t5498:  0x6FD7,\n\t5499:  0x6FD8,\n\t5500:  0x6FD9,\n\t5501:  0x6FDA,\n\t5502:  0x6FDB,\n\t5503:  0x6FDC,\n\t5504:  0x6FDD,\n\t5505:  0x6FDF,\n\t5506:  0x6FE2,\n\t5507:  0x6FE3,\n\t5508:  0x6FE4,\n\t5509:  0x6FE5,\n\t5510:  0x6FE6,\n\t5511:  0x6FE7,\n\t5512:  0x6FE8,\n\t5513:  0x6FE9,\n\t5514:  0x6FEA,\n\t5515:  0x6FEB,\n\t5516:  0x6FEC,\n\t5517:  0x6FED,\n\t5518:  0x6FF0,\n\t5519:  0x6FF1,\n\t5520:  0x6FF2,\n\t5521:  0x6FF3,\n\t5522:  0x6FF4,\n\t5523:  0x6FF5,\n\t5524:  0x6FF6,\n\t5525:  0x6FF7,\n\t5526:  0x6FF8,\n\t5527:  0x6FF9,\n\t5528:  0x6FFA,\n\t5529:  0x6FFB,\n\t5530:  0x6FFC,\n\t5531:  0x6FFD,\n\t5532:  0x6FFE,\n\t5533:  0x6FFF,\n\t5534:  0x7000,\n\t5535:  0x7001,\n\t5536:  0x7002,\n\t5537:  0x7003,\n\t5538:  0x7004,\n\t5539:  0x7005,\n\t5540:  0x7006,\n\t5541:  0x7007,\n\t5542:  0x7008,\n\t5543:  0x7009,\n\t5544:  0x700A,\n\t5545:  0x700B,\n\t5546:  0x700C,\n\t5547:  0x700D,\n\t5548:  0x700E,\n\t5549:  0x700F,\n\t5550:  0x7010,\n\t5551:  0x7012,\n\t5552:  0x7013,\n\t5553:  0x7014,\n\t5554:  0x7015,\n\t5555:  0x7016,\n\t5556:  0x7017,\n\t5557:  0x7018,\n\t5558:  0x7019,\n\t5559:  0x701C,\n\t5560:  0x701D,\n\t5561:  0x701E,\n\t5562:  0x701F,\n\t5563:  0x7020,\n\t5564:  0x7021,\n\t5565:  0x7022,\n\t5566:  0x7024,\n\t5567:  0x7025,\n\t5568:  0x7026,\n\t5569:  0x7027,\n\t5570:  0x7028,\n\t5571:  0x7029,\n\t5572:  0x702A,\n\t5573:  0x702B,\n\t5574:  0x702C,\n\t5575:  0x702D,\n\t5576:  0x702E,\n\t5577:  0x702F,\n\t5578:  0x7030,\n\t5579:  0x7031,\n\t5580:  0x7032,\n\t5581:  0x7033,\n\t5582:  0x7034,\n\t5583:  0x7036,\n\t5584:  0x7037,\n\t5585:  0x7038,\n\t5586:  0x703A,\n\t5587:  0x703B,\n\t5588:  0x703C,\n\t5589:  0x703D,\n\t5590:  0x703E,\n\t5591:  0x703F,\n\t5592:  0x7040,\n\t5593:  0x7041,\n\t5594:  0x7042,\n\t5595:  0x7043,\n\t5596:  0x7044,\n\t5597:  0x7045,\n\t5598:  0x7046,\n\t5599:  0x7047,\n\t5600:  0x7048,\n\t5601:  0x7049,\n\t5602:  0x704A,\n\t5603:  0x704B,\n\t5604:  0x704D,\n\t5605:  0x704E,\n\t5606:  0x7050,\n\t5607:  0x7051,\n\t5608:  0x7052,\n\t5609:  0x7053,\n\t5610:  0x7054,\n\t5611:  0x7055,\n\t5612:  0x7056,\n\t5613:  0x7057,\n\t5614:  0x7058,\n\t5615:  0x7059,\n\t5616:  0x705A,\n\t5617:  0x705B,\n\t5618:  0x705C,\n\t5619:  0x705D,\n\t5620:  0x705F,\n\t5621:  0x7060,\n\t5622:  0x7061,\n\t5623:  0x7062,\n\t5624:  0x7063,\n\t5625:  0x7064,\n\t5626:  0x7065,\n\t5627:  0x7066,\n\t5628:  0x7067,\n\t5629:  0x7068,\n\t5630:  0x7069,\n\t5631:  0x706A,\n\t5632:  0x706E,\n\t5633:  0x7071,\n\t5634:  0x7072,\n\t5635:  0x7073,\n\t5636:  0x7074,\n\t5637:  0x7077,\n\t5638:  0x7079,\n\t5639:  0x707A,\n\t5640:  0x707B,\n\t5641:  0x707D,\n\t5642:  0x7081,\n\t5643:  0x7082,\n\t5644:  0x7083,\n\t5645:  0x7084,\n\t5646:  0x7086,\n\t5647:  0x7087,\n\t5648:  0x7088,\n\t5649:  0x708B,\n\t5650:  0x708C,\n\t5651:  0x708D,\n\t5652:  0x708F,\n\t5653:  0x7090,\n\t5654:  0x7091,\n\t5655:  0x7093,\n\t5656:  0x7097,\n\t5657:  0x7098,\n\t5658:  0x709A,\n\t5659:  0x709B,\n\t5660:  0x709E,\n\t5661:  0x709F,\n\t5662:  0x70A0,\n\t5663:  0x70A1,\n\t5664:  0x70A2,\n\t5665:  0x70A3,\n\t5666:  0x70A4,\n\t5667:  0x70A5,\n\t5668:  0x70A6,\n\t5669:  0x70A7,\n\t5670:  0x70A8,\n\t5671:  0x70A9,\n\t5672:  0x70AA,\n\t5673:  0x70B0,\n\t5674:  0x70B2,\n\t5675:  0x70B4,\n\t5676:  0x70B5,\n\t5677:  0x70B6,\n\t5678:  0x70BA,\n\t5679:  0x70BE,\n\t5680:  0x70BF,\n\t5681:  0x70C4,\n\t5682:  0x70C5,\n\t5683:  0x70C6,\n\t5684:  0x70C7,\n\t5685:  0x70C9,\n\t5686:  0x70CB,\n\t5687:  0x70CC,\n\t5688:  0x70CD,\n\t5689:  0x70CE,\n\t5690:  0x70CF,\n\t5691:  0x70D0,\n\t5692:  0x70D1,\n\t5693:  0x70D2,\n\t5694:  0x70D3,\n\t5695:  0x70D4,\n\t5696:  0x70D5,\n\t5697:  0x70D6,\n\t5698:  0x70D7,\n\t5699:  0x70DA,\n\t5700:  0x70DC,\n\t5701:  0x70DD,\n\t5702:  0x70DE,\n\t5703:  0x70E0,\n\t5704:  0x70E1,\n\t5705:  0x70E2,\n\t5706:  0x70E3,\n\t5707:  0x70E5,\n\t5708:  0x70EA,\n\t5709:  0x70EE,\n\t5710:  0x70F0,\n\t5711:  0x70F1,\n\t5712:  0x70F2,\n\t5713:  0x70F3,\n\t5714:  0x70F4,\n\t5715:  0x70F5,\n\t5716:  0x70F6,\n\t5717:  0x70F8,\n\t5718:  0x70FA,\n\t5719:  0x70FB,\n\t5720:  0x70FC,\n\t5721:  0x70FE,\n\t5722:  0x70FF,\n\t5723:  0x7100,\n\t5724:  0x7101,\n\t5725:  0x7102,\n\t5726:  0x7103,\n\t5727:  0x7104,\n\t5728:  0x7105,\n\t5729:  0x7106,\n\t5730:  0x7107,\n\t5731:  0x7108,\n\t5732:  0x710B,\n\t5733:  0x710C,\n\t5734:  0x710D,\n\t5735:  0x710E,\n\t5736:  0x710F,\n\t5737:  0x7111,\n\t5738:  0x7112,\n\t5739:  0x7114,\n\t5740:  0x7117,\n\t5741:  0x711B,\n\t5742:  0x711C,\n\t5743:  0x711D,\n\t5744:  0x711E,\n\t5745:  0x711F,\n\t5746:  0x7120,\n\t5747:  0x7121,\n\t5748:  0x7122,\n\t5749:  0x7123,\n\t5750:  0x7124,\n\t5751:  0x7125,\n\t5752:  0x7127,\n\t5753:  0x7128,\n\t5754:  0x7129,\n\t5755:  0x712A,\n\t5756:  0x712B,\n\t5757:  0x712C,\n\t5758:  0x712D,\n\t5759:  0x712E,\n\t5760:  0x7132,\n\t5761:  0x7133,\n\t5762:  0x7134,\n\t5763:  0x7135,\n\t5764:  0x7137,\n\t5765:  0x7138,\n\t5766:  0x7139,\n\t5767:  0x713A,\n\t5768:  0x713B,\n\t5769:  0x713C,\n\t5770:  0x713D,\n\t5771:  0x713E,\n\t5772:  0x713F,\n\t5773:  0x7140,\n\t5774:  0x7141,\n\t5775:  0x7142,\n\t5776:  0x7143,\n\t5777:  0x7144,\n\t5778:  0x7146,\n\t5779:  0x7147,\n\t5780:  0x7148,\n\t5781:  0x7149,\n\t5782:  0x714B,\n\t5783:  0x714D,\n\t5784:  0x714F,\n\t5785:  0x7150,\n\t5786:  0x7151,\n\t5787:  0x7152,\n\t5788:  0x7153,\n\t5789:  0x7154,\n\t5790:  0x7155,\n\t5791:  0x7156,\n\t5792:  0x7157,\n\t5793:  0x7158,\n\t5794:  0x7159,\n\t5795:  0x715A,\n\t5796:  0x715B,\n\t5797:  0x715D,\n\t5798:  0x715F,\n\t5799:  0x7160,\n\t5800:  0x7161,\n\t5801:  0x7162,\n\t5802:  0x7163,\n\t5803:  0x7165,\n\t5804:  0x7169,\n\t5805:  0x716A,\n\t5806:  0x716B,\n\t5807:  0x716C,\n\t5808:  0x716D,\n\t5809:  0x716F,\n\t5810:  0x7170,\n\t5811:  0x7171,\n\t5812:  0x7174,\n\t5813:  0x7175,\n\t5814:  0x7176,\n\t5815:  0x7177,\n\t5816:  0x7179,\n\t5817:  0x717B,\n\t5818:  0x717C,\n\t5819:  0x717E,\n\t5820:  0x717F,\n\t5821:  0x7180,\n\t5822:  0x7181,\n\t5823:  0x7182,\n\t5824:  0x7183,\n\t5825:  0x7185,\n\t5826:  0x7186,\n\t5827:  0x7187,\n\t5828:  0x7188,\n\t5829:  0x7189,\n\t5830:  0x718B,\n\t5831:  0x718C,\n\t5832:  0x718D,\n\t5833:  0x718E,\n\t5834:  0x7190,\n\t5835:  0x7191,\n\t5836:  0x7192,\n\t5837:  0x7193,\n\t5838:  0x7195,\n\t5839:  0x7196,\n\t5840:  0x7197,\n\t5841:  0x719A,\n\t5842:  0x719B,\n\t5843:  0x719C,\n\t5844:  0x719D,\n\t5845:  0x719E,\n\t5846:  0x71A1,\n\t5847:  0x71A2,\n\t5848:  0x71A3,\n\t5849:  0x71A4,\n\t5850:  0x71A5,\n\t5851:  0x71A6,\n\t5852:  0x71A7,\n\t5853:  0x71A9,\n\t5854:  0x71AA,\n\t5855:  0x71AB,\n\t5856:  0x71AD,\n\t5857:  0x71AE,\n\t5858:  0x71AF,\n\t5859:  0x71B0,\n\t5860:  0x71B1,\n\t5861:  0x71B2,\n\t5862:  0x71B4,\n\t5863:  0x71B6,\n\t5864:  0x71B7,\n\t5865:  0x71B8,\n\t5866:  0x71BA,\n\t5867:  0x71BB,\n\t5868:  0x71BC,\n\t5869:  0x71BD,\n\t5870:  0x71BE,\n\t5871:  0x71BF,\n\t5872:  0x71C0,\n\t5873:  0x71C1,\n\t5874:  0x71C2,\n\t5875:  0x71C4,\n\t5876:  0x71C5,\n\t5877:  0x71C6,\n\t5878:  0x71C7,\n\t5879:  0x71C8,\n\t5880:  0x71C9,\n\t5881:  0x71CA,\n\t5882:  0x71CB,\n\t5883:  0x71CC,\n\t5884:  0x71CD,\n\t5885:  0x71CF,\n\t5886:  0x71D0,\n\t5887:  0x71D1,\n\t5888:  0x71D2,\n\t5889:  0x71D3,\n\t5890:  0x71D6,\n\t5891:  0x71D7,\n\t5892:  0x71D8,\n\t5893:  0x71D9,\n\t5894:  0x71DA,\n\t5895:  0x71DB,\n\t5896:  0x71DC,\n\t5897:  0x71DD,\n\t5898:  0x71DE,\n\t5899:  0x71DF,\n\t5900:  0x71E1,\n\t5901:  0x71E2,\n\t5902:  0x71E3,\n\t5903:  0x71E4,\n\t5904:  0x71E6,\n\t5905:  0x71E8,\n\t5906:  0x71E9,\n\t5907:  0x71EA,\n\t5908:  0x71EB,\n\t5909:  0x71EC,\n\t5910:  0x71ED,\n\t5911:  0x71EF,\n\t5912:  0x71F0,\n\t5913:  0x71F1,\n\t5914:  0x71F2,\n\t5915:  0x71F3,\n\t5916:  0x71F4,\n\t5917:  0x71F5,\n\t5918:  0x71F6,\n\t5919:  0x71F7,\n\t5920:  0x71F8,\n\t5921:  0x71FA,\n\t5922:  0x71FB,\n\t5923:  0x71FC,\n\t5924:  0x71FD,\n\t5925:  0x71FE,\n\t5926:  0x71FF,\n\t5927:  0x7200,\n\t5928:  0x7201,\n\t5929:  0x7202,\n\t5930:  0x7203,\n\t5931:  0x7204,\n\t5932:  0x7205,\n\t5933:  0x7207,\n\t5934:  0x7208,\n\t5935:  0x7209,\n\t5936:  0x720A,\n\t5937:  0x720B,\n\t5938:  0x720C,\n\t5939:  0x720D,\n\t5940:  0x720E,\n\t5941:  0x720F,\n\t5942:  0x7210,\n\t5943:  0x7211,\n\t5944:  0x7212,\n\t5945:  0x7213,\n\t5946:  0x7214,\n\t5947:  0x7215,\n\t5948:  0x7216,\n\t5949:  0x7217,\n\t5950:  0x7218,\n\t5951:  0x7219,\n\t5952:  0x721A,\n\t5953:  0x721B,\n\t5954:  0x721C,\n\t5955:  0x721E,\n\t5956:  0x721F,\n\t5957:  0x7220,\n\t5958:  0x7221,\n\t5959:  0x7222,\n\t5960:  0x7223,\n\t5961:  0x7224,\n\t5962:  0x7225,\n\t5963:  0x7226,\n\t5964:  0x7227,\n\t5965:  0x7229,\n\t5966:  0x722B,\n\t5967:  0x722D,\n\t5968:  0x722E,\n\t5969:  0x722F,\n\t5970:  0x7232,\n\t5971:  0x7233,\n\t5972:  0x7234,\n\t5973:  0x723A,\n\t5974:  0x723C,\n\t5975:  0x723E,\n\t5976:  0x7240,\n\t5977:  0x7241,\n\t5978:  0x7242,\n\t5979:  0x7243,\n\t5980:  0x7244,\n\t5981:  0x7245,\n\t5982:  0x7246,\n\t5983:  0x7249,\n\t5984:  0x724A,\n\t5985:  0x724B,\n\t5986:  0x724E,\n\t5987:  0x724F,\n\t5988:  0x7250,\n\t5989:  0x7251,\n\t5990:  0x7253,\n\t5991:  0x7254,\n\t5992:  0x7255,\n\t5993:  0x7257,\n\t5994:  0x7258,\n\t5995:  0x725A,\n\t5996:  0x725C,\n\t5997:  0x725E,\n\t5998:  0x7260,\n\t5999:  0x7263,\n\t6000:  0x7264,\n\t6001:  0x7265,\n\t6002:  0x7268,\n\t6003:  0x726A,\n\t6004:  0x726B,\n\t6005:  0x726C,\n\t6006:  0x726D,\n\t6007:  0x7270,\n\t6008:  0x7271,\n\t6009:  0x7273,\n\t6010:  0x7274,\n\t6011:  0x7276,\n\t6012:  0x7277,\n\t6013:  0x7278,\n\t6014:  0x727B,\n\t6015:  0x727C,\n\t6016:  0x727D,\n\t6017:  0x7282,\n\t6018:  0x7283,\n\t6019:  0x7285,\n\t6020:  0x7286,\n\t6021:  0x7287,\n\t6022:  0x7288,\n\t6023:  0x7289,\n\t6024:  0x728C,\n\t6025:  0x728E,\n\t6026:  0x7290,\n\t6027:  0x7291,\n\t6028:  0x7293,\n\t6029:  0x7294,\n\t6030:  0x7295,\n\t6031:  0x7296,\n\t6032:  0x7297,\n\t6033:  0x7298,\n\t6034:  0x7299,\n\t6035:  0x729A,\n\t6036:  0x729B,\n\t6037:  0x729C,\n\t6038:  0x729D,\n\t6039:  0x729E,\n\t6040:  0x72A0,\n\t6041:  0x72A1,\n\t6042:  0x72A2,\n\t6043:  0x72A3,\n\t6044:  0x72A4,\n\t6045:  0x72A5,\n\t6046:  0x72A6,\n\t6047:  0x72A7,\n\t6048:  0x72A8,\n\t6049:  0x72A9,\n\t6050:  0x72AA,\n\t6051:  0x72AB,\n\t6052:  0x72AE,\n\t6053:  0x72B1,\n\t6054:  0x72B2,\n\t6055:  0x72B3,\n\t6056:  0x72B5,\n\t6057:  0x72BA,\n\t6058:  0x72BB,\n\t6059:  0x72BC,\n\t6060:  0x72BD,\n\t6061:  0x72BE,\n\t6062:  0x72BF,\n\t6063:  0x72C0,\n\t6064:  0x72C5,\n\t6065:  0x72C6,\n\t6066:  0x72C7,\n\t6067:  0x72C9,\n\t6068:  0x72CA,\n\t6069:  0x72CB,\n\t6070:  0x72CC,\n\t6071:  0x72CF,\n\t6072:  0x72D1,\n\t6073:  0x72D3,\n\t6074:  0x72D4,\n\t6075:  0x72D5,\n\t6076:  0x72D6,\n\t6077:  0x72D8,\n\t6078:  0x72DA,\n\t6079:  0x72DB,\n\t6176:  0x3000,\n\t6177:  0x3001,\n\t6178:  0x3002,\n\t6179:  0x00B7,\n\t6180:  0x02C9,\n\t6181:  0x02C7,\n\t6182:  0x00A8,\n\t6183:  0x3003,\n\t6184:  0x3005,\n\t6185:  0x2014,\n\t6186:  0xFF5E,\n\t6187:  0x2016,\n\t6188:  0x2026,\n\t6189:  0x2018,\n\t6190:  0x2019,\n\t6191:  0x201C,\n\t6192:  0x201D,\n\t6193:  0x3014,\n\t6194:  0x3015,\n\t6195:  0x3008,\n\t6196:  0x3009,\n\t6197:  0x300A,\n\t6198:  0x300B,\n\t6199:  0x300C,\n\t6200:  0x300D,\n\t6201:  0x300E,\n\t6202:  0x300F,\n\t6203:  0x3016,\n\t6204:  0x3017,\n\t6205:  0x3010,\n\t6206:  0x3011,\n\t6207:  0x00B1,\n\t6208:  0x00D7,\n\t6209:  0x00F7,\n\t6210:  0x2236,\n\t6211:  0x2227,\n\t6212:  0x2228,\n\t6213:  0x2211,\n\t6214:  0x220F,\n\t6215:  0x222A,\n\t6216:  0x2229,\n\t6217:  0x2208,\n\t6218:  0x2237,\n\t6219:  0x221A,\n\t6220:  0x22A5,\n\t6221:  0x2225,\n\t6222:  0x2220,\n\t6223:  0x2312,\n\t6224:  0x2299,\n\t6225:  0x222B,\n\t6226:  0x222E,\n\t6227:  0x2261,\n\t6228:  0x224C,\n\t6229:  0x2248,\n\t6230:  0x223D,\n\t6231:  0x221D,\n\t6232:  0x2260,\n\t6233:  0x226E,\n\t6234:  0x226F,\n\t6235:  0x2264,\n\t6236:  0x2265,\n\t6237:  0x221E,\n\t6238:  0x2235,\n\t6239:  0x2234,\n\t6240:  0x2642,\n\t6241:  0x2640,\n\t6242:  0x00B0,\n\t6243:  0x2032,\n\t6244:  0x2033,\n\t6245:  0x2103,\n\t6246:  0xFF04,\n\t6247:  0x00A4,\n\t6248:  0xFFE0,\n\t6249:  0xFFE1,\n\t6250:  0x2030,\n\t6251:  0x00A7,\n\t6252:  0x2116,\n\t6253:  0x2606,\n\t6254:  0x2605,\n\t6255:  0x25CB,\n\t6256:  0x25CF,\n\t6257:  0x25CE,\n\t6258:  0x25C7,\n\t6259:  0x25C6,\n\t6260:  0x25A1,\n\t6261:  0x25A0,\n\t6262:  0x25B3,\n\t6263:  0x25B2,\n\t6264:  0x203B,\n\t6265:  0x2192,\n\t6266:  0x2190,\n\t6267:  0x2191,\n\t6268:  0x2193,\n\t6269:  0x3013,\n\t6366:  0x2170,\n\t6367:  0x2171,\n\t6368:  0x2172,\n\t6369:  0x2173,\n\t6370:  0x2174,\n\t6371:  0x2175,\n\t6372:  0x2176,\n\t6373:  0x2177,\n\t6374:  0x2178,\n\t6375:  0x2179,\n\t6382:  0x2488,\n\t6383:  0x2489,\n\t6384:  0x248A,\n\t6385:  0x248B,\n\t6386:  0x248C,\n\t6387:  0x248D,\n\t6388:  0x248E,\n\t6389:  0x248F,\n\t6390:  0x2490,\n\t6391:  0x2491,\n\t6392:  0x2492,\n\t6393:  0x2493,\n\t6394:  0x2494,\n\t6395:  0x2495,\n\t6396:  0x2496,\n\t6397:  0x2497,\n\t6398:  0x2498,\n\t6399:  0x2499,\n\t6400:  0x249A,\n\t6401:  0x249B,\n\t6402:  0x2474,\n\t6403:  0x2475,\n\t6404:  0x2476,\n\t6405:  0x2477,\n\t6406:  0x2478,\n\t6407:  0x2479,\n\t6408:  0x247A,\n\t6409:  0x247B,\n\t6410:  0x247C,\n\t6411:  0x247D,\n\t6412:  0x247E,\n\t6413:  0x247F,\n\t6414:  0x2480,\n\t6415:  0x2481,\n\t6416:  0x2482,\n\t6417:  0x2483,\n\t6418:  0x2484,\n\t6419:  0x2485,\n\t6420:  0x2486,\n\t6421:  0x2487,\n\t6422:  0x2460,\n\t6423:  0x2461,\n\t6424:  0x2462,\n\t6425:  0x2463,\n\t6426:  0x2464,\n\t6427:  0x2465,\n\t6428:  0x2466,\n\t6429:  0x2467,\n\t6430:  0x2468,\n\t6431:  0x2469,\n\t6432:  0x20AC,\n\t6434:  0x3220,\n\t6435:  0x3221,\n\t6436:  0x3222,\n\t6437:  0x3223,\n\t6438:  0x3224,\n\t6439:  0x3225,\n\t6440:  0x3226,\n\t6441:  0x3227,\n\t6442:  0x3228,\n\t6443:  0x3229,\n\t6446:  0x2160,\n\t6447:  0x2161,\n\t6448:  0x2162,\n\t6449:  0x2163,\n\t6450:  0x2164,\n\t6451:  0x2165,\n\t6452:  0x2166,\n\t6453:  0x2167,\n\t6454:  0x2168,\n\t6455:  0x2169,\n\t6456:  0x216A,\n\t6457:  0x216B,\n\t6555:  0x3000,\n\t6556:  0xFF01,\n\t6557:  0xFF02,\n\t6558:  0xFF03,\n\t6559:  0xFFE5,\n\t6560:  0xFF05,\n\t6561:  0xFF06,\n\t6562:  0xFF07,\n\t6563:  0xFF08,\n\t6564:  0xFF09,\n\t6565:  0xFF0A,\n\t6566:  0xFF0B,\n\t6567:  0xFF0C,\n\t6568:  0xFF0D,\n\t6569:  0xFF0E,\n\t6570:  0xFF0F,\n\t6571:  0xFF10,\n\t6572:  0xFF11,\n\t6573:  0xFF12,\n\t6574:  0xFF13,\n\t6575:  0xFF14,\n\t6576:  0xFF15,\n\t6577:  0xFF16,\n\t6578:  0xFF17,\n\t6579:  0xFF18,\n\t6580:  0xFF19,\n\t6581:  0xFF1A,\n\t6582:  0xFF1B,\n\t6583:  0xFF1C,\n\t6584:  0xFF1D,\n\t6585:  0xFF1E,\n\t6586:  0xFF1F,\n\t6587:  0xFF20,\n\t6588:  0xFF21,\n\t6589:  0xFF22,\n\t6590:  0xFF23,\n\t6591:  0xFF24,\n\t6592:  0xFF25,\n\t6593:  0xFF26,\n\t6594:  0xFF27,\n\t6595:  0xFF28,\n\t6596:  0xFF29,\n\t6597:  0xFF2A,\n\t6598:  0xFF2B,\n\t6599:  0xFF2C,\n\t6600:  0xFF2D,\n\t6601:  0xFF2E,\n\t6602:  0xFF2F,\n\t6603:  0xFF30,\n\t6604:  0xFF31,\n\t6605:  0xFF32,\n\t6606:  0xFF33,\n\t6607:  0xFF34,\n\t6608:  0xFF35,\n\t6609:  0xFF36,\n\t6610:  0xFF37,\n\t6611:  0xFF38,\n\t6612:  0xFF39,\n\t6613:  0xFF3A,\n\t6614:  0xFF3B,\n\t6615:  0xFF3C,\n\t6616:  0xFF3D,\n\t6617:  0xFF3E,\n\t6618:  0xFF3F,\n\t6619:  0xFF40,\n\t6620:  0xFF41,\n\t6621:  0xFF42,\n\t6622:  0xFF43,\n\t6623:  0xFF44,\n\t6624:  0xFF45,\n\t6625:  0xFF46,\n\t6626:  0xFF47,\n\t6627:  0xFF48,\n\t6628:  0xFF49,\n\t6629:  0xFF4A,\n\t6630:  0xFF4B,\n\t6631:  0xFF4C,\n\t6632:  0xFF4D,\n\t6633:  0xFF4E,\n\t6634:  0xFF4F,\n\t6635:  0xFF50,\n\t6636:  0xFF51,\n\t6637:  0xFF52,\n\t6638:  0xFF53,\n\t6639:  0xFF54,\n\t6640:  0xFF55,\n\t6641:  0xFF56,\n\t6642:  0xFF57,\n\t6643:  0xFF58,\n\t6644:  0xFF59,\n\t6645:  0xFF5A,\n\t6646:  0xFF5B,\n\t6647:  0xFF5C,\n\t6648:  0xFF5D,\n\t6649:  0xFFE3,\n\t6746:  0x3041,\n\t6747:  0x3042,\n\t6748:  0x3043,\n\t6749:  0x3044,\n\t6750:  0x3045,\n\t6751:  0x3046,\n\t6752:  0x3047,\n\t6753:  0x3048,\n\t6754:  0x3049,\n\t6755:  0x304A,\n\t6756:  0x304B,\n\t6757:  0x304C,\n\t6758:  0x304D,\n\t6759:  0x304E,\n\t6760:  0x304F,\n\t6761:  0x3050,\n\t6762:  0x3051,\n\t6763:  0x3052,\n\t6764:  0x3053,\n\t6765:  0x3054,\n\t6766:  0x3055,\n\t6767:  0x3056,\n\t6768:  0x3057,\n\t6769:  0x3058,\n\t6770:  0x3059,\n\t6771:  0x305A,\n\t6772:  0x305B,\n\t6773:  0x305C,\n\t6774:  0x305D,\n\t6775:  0x305E,\n\t6776:  0x305F,\n\t6777:  0x3060,\n\t6778:  0x3061,\n\t6779:  0x3062,\n\t6780:  0x3063,\n\t6781:  0x3064,\n\t6782:  0x3065,\n\t6783:  0x3066,\n\t6784:  0x3067,\n\t6785:  0x3068,\n\t6786:  0x3069,\n\t6787:  0x306A,\n\t6788:  0x306B,\n\t6789:  0x306C,\n\t6790:  0x306D,\n\t6791:  0x306E,\n\t6792:  0x306F,\n\t6793:  0x3070,\n\t6794:  0x3071,\n\t6795:  0x3072,\n\t6796:  0x3073,\n\t6797:  0x3074,\n\t6798:  0x3075,\n\t6799:  0x3076,\n\t6800:  0x3077,\n\t6801:  0x3078,\n\t6802:  0x3079,\n\t6803:  0x307A,\n\t6804:  0x307B,\n\t6805:  0x307C,\n\t6806:  0x307D,\n\t6807:  0x307E,\n\t6808:  0x307F,\n\t6809:  0x3080,\n\t6810:  0x3081,\n\t6811:  0x3082,\n\t6812:  0x3083,\n\t6813:  0x3084,\n\t6814:  0x3085,\n\t6815:  0x3086,\n\t6816:  0x3087,\n\t6817:  0x3088,\n\t6818:  0x3089,\n\t6819:  0x308A,\n\t6820:  0x308B,\n\t6821:  0x308C,\n\t6822:  0x308D,\n\t6823:  0x308E,\n\t6824:  0x308F,\n\t6825:  0x3090,\n\t6826:  0x3091,\n\t6827:  0x3092,\n\t6828:  0x3093,\n\t6936:  0x30A1,\n\t6937:  0x30A2,\n\t6938:  0x30A3,\n\t6939:  0x30A4,\n\t6940:  0x30A5,\n\t6941:  0x30A6,\n\t6942:  0x30A7,\n\t6943:  0x30A8,\n\t6944:  0x30A9,\n\t6945:  0x30AA,\n\t6946:  0x30AB,\n\t6947:  0x30AC,\n\t6948:  0x30AD,\n\t6949:  0x30AE,\n\t6950:  0x30AF,\n\t6951:  0x30B0,\n\t6952:  0x30B1,\n\t6953:  0x30B2,\n\t6954:  0x30B3,\n\t6955:  0x30B4,\n\t6956:  0x30B5,\n\t6957:  0x30B6,\n\t6958:  0x30B7,\n\t6959:  0x30B8,\n\t6960:  0x30B9,\n\t6961:  0x30BA,\n\t6962:  0x30BB,\n\t6963:  0x30BC,\n\t6964:  0x30BD,\n\t6965:  0x30BE,\n\t6966:  0x30BF,\n\t6967:  0x30C0,\n\t6968:  0x30C1,\n\t6969:  0x30C2,\n\t6970:  0x30C3,\n\t6971:  0x30C4,\n\t6972:  0x30C5,\n\t6973:  0x30C6,\n\t6974:  0x30C7,\n\t6975:  0x30C8,\n\t6976:  0x30C9,\n\t6977:  0x30CA,\n\t6978:  0x30CB,\n\t6979:  0x30CC,\n\t6980:  0x30CD,\n\t6981:  0x30CE,\n\t6982:  0x30CF,\n\t6983:  0x30D0,\n\t6984:  0x30D1,\n\t6985:  0x30D2,\n\t6986:  0x30D3,\n\t6987:  0x30D4,\n\t6988:  0x30D5,\n\t6989:  0x30D6,\n\t6990:  0x30D7,\n\t6991:  0x30D8,\n\t6992:  0x30D9,\n\t6993:  0x30DA,\n\t6994:  0x30DB,\n\t6995:  0x30DC,\n\t6996:  0x30DD,\n\t6997:  0x30DE,\n\t6998:  0x30DF,\n\t6999:  0x30E0,\n\t7000:  0x30E1,\n\t7001:  0x30E2,\n\t7002:  0x30E3,\n\t7003:  0x30E4,\n\t7004:  0x30E5,\n\t7005:  0x30E6,\n\t7006:  0x30E7,\n\t7007:  0x30E8,\n\t7008:  0x30E9,\n\t7009:  0x30EA,\n\t7010:  0x30EB,\n\t7011:  0x30EC,\n\t7012:  0x30ED,\n\t7013:  0x30EE,\n\t7014:  0x30EF,\n\t7015:  0x30F0,\n\t7016:  0x30F1,\n\t7017:  0x30F2,\n\t7018:  0x30F3,\n\t7019:  0x30F4,\n\t7020:  0x30F5,\n\t7021:  0x30F6,\n\t7126:  0x0391,\n\t7127:  0x0392,\n\t7128:  0x0393,\n\t7129:  0x0394,\n\t7130:  0x0395,\n\t7131:  0x0396,\n\t7132:  0x0397,\n\t7133:  0x0398,\n\t7134:  0x0399,\n\t7135:  0x039A,\n\t7136:  0x039B,\n\t7137:  0x039C,\n\t7138:  0x039D,\n\t7139:  0x039E,\n\t7140:  0x039F,\n\t7141:  0x03A0,\n\t7142:  0x03A1,\n\t7143:  0x03A3,\n\t7144:  0x03A4,\n\t7145:  0x03A5,\n\t7146:  0x03A6,\n\t7147:  0x03A7,\n\t7148:  0x03A8,\n\t7149:  0x03A9,\n\t7158:  0x03B1,\n\t7159:  0x03B2,\n\t7160:  0x03B3,\n\t7161:  0x03B4,\n\t7162:  0x03B5,\n\t7163:  0x03B6,\n\t7164:  0x03B7,\n\t7165:  0x03B8,\n\t7166:  0x03B9,\n\t7167:  0x03BA,\n\t7168:  0x03BB,\n\t7169:  0x03BC,\n\t7170:  0x03BD,\n\t7171:  0x03BE,\n\t7172:  0x03BF,\n\t7173:  0x03C0,\n\t7174:  0x03C1,\n\t7175:  0x03C3,\n\t7176:  0x03C4,\n\t7177:  0x03C5,\n\t7178:  0x03C6,\n\t7179:  0x03C7,\n\t7180:  0x03C8,\n\t7181:  0x03C9,\n\t7189:  0xFE35,\n\t7190:  0xFE36,\n\t7191:  0xFE39,\n\t7192:  0xFE3A,\n\t7193:  0xFE3F,\n\t7194:  0xFE40,\n\t7195:  0xFE3D,\n\t7196:  0xFE3E,\n\t7197:  0xFE41,\n\t7198:  0xFE42,\n\t7199:  0xFE43,\n\t7200:  0xFE44,\n\t7203:  0xFE3B,\n\t7204:  0xFE3C,\n\t7205:  0xFE37,\n\t7206:  0xFE38,\n\t7207:  0xFE31,\n\t7209:  0xFE33,\n\t7210:  0xFE34,\n\t7316:  0x0410,\n\t7317:  0x0411,\n\t7318:  0x0412,\n\t7319:  0x0413,\n\t7320:  0x0414,\n\t7321:  0x0415,\n\t7322:  0x0401,\n\t7323:  0x0416,\n\t7324:  0x0417,\n\t7325:  0x0418,\n\t7326:  0x0419,\n\t7327:  0x041A,\n\t7328:  0x041B,\n\t7329:  0x041C,\n\t7330:  0x041D,\n\t7331:  0x041E,\n\t7332:  0x041F,\n\t7333:  0x0420,\n\t7334:  0x0421,\n\t7335:  0x0422,\n\t7336:  0x0423,\n\t7337:  0x0424,\n\t7338:  0x0425,\n\t7339:  0x0426,\n\t7340:  0x0427,\n\t7341:  0x0428,\n\t7342:  0x0429,\n\t7343:  0x042A,\n\t7344:  0x042B,\n\t7345:  0x042C,\n\t7346:  0x042D,\n\t7347:  0x042E,\n\t7348:  0x042F,\n\t7364:  0x0430,\n\t7365:  0x0431,\n\t7366:  0x0432,\n\t7367:  0x0433,\n\t7368:  0x0434,\n\t7369:  0x0435,\n\t7370:  0x0451,\n\t7371:  0x0436,\n\t7372:  0x0437,\n\t7373:  0x0438,\n\t7374:  0x0439,\n\t7375:  0x043A,\n\t7376:  0x043B,\n\t7377:  0x043C,\n\t7378:  0x043D,\n\t7379:  0x043E,\n\t7380:  0x043F,\n\t7381:  0x0440,\n\t7382:  0x0441,\n\t7383:  0x0442,\n\t7384:  0x0443,\n\t7385:  0x0444,\n\t7386:  0x0445,\n\t7387:  0x0446,\n\t7388:  0x0447,\n\t7389:  0x0448,\n\t7390:  0x0449,\n\t7391:  0x044A,\n\t7392:  0x044B,\n\t7393:  0x044C,\n\t7394:  0x044D,\n\t7395:  0x044E,\n\t7396:  0x044F,\n\t7410:  0x02CA,\n\t7411:  0x02CB,\n\t7412:  0x02D9,\n\t7413:  0x2013,\n\t7414:  0x2015,\n\t7415:  0x2025,\n\t7416:  0x2035,\n\t7417:  0x2105,\n\t7418:  0x2109,\n\t7419:  0x2196,\n\t7420:  0x2197,\n\t7421:  0x2198,\n\t7422:  0x2199,\n\t7423:  0x2215,\n\t7424:  0x221F,\n\t7425:  0x2223,\n\t7426:  0x2252,\n\t7427:  0x2266,\n\t7428:  0x2267,\n\t7429:  0x22BF,\n\t7430:  0x2550,\n\t7431:  0x2551,\n\t7432:  0x2552,\n\t7433:  0x2553,\n\t7434:  0x2554,\n\t7435:  0x2555,\n\t7436:  0x2556,\n\t7437:  0x2557,\n\t7438:  0x2558,\n\t7439:  0x2559,\n\t7440:  0x255A,\n\t7441:  0x255B,\n\t7442:  0x255C,\n\t7443:  0x255D,\n\t7444:  0x255E,\n\t7445:  0x255F,\n\t7446:  0x2560,\n\t7447:  0x2561,\n\t7448:  0x2562,\n\t7449:  0x2563,\n\t7450:  0x2564,\n\t7451:  0x2565,\n\t7452:  0x2566,\n\t7453:  0x2567,\n\t7454:  0x2568,\n\t7455:  0x2569,\n\t7456:  0x256A,\n\t7457:  0x256B,\n\t7458:  0x256C,\n\t7459:  0x256D,\n\t7460:  0x256E,\n\t7461:  0x256F,\n\t7462:  0x2570,\n\t7463:  0x2571,\n\t7464:  0x2572,\n\t7465:  0x2573,\n\t7466:  0x2581,\n\t7467:  0x2582,\n\t7468:  0x2583,\n\t7469:  0x2584,\n\t7470:  0x2585,\n\t7471:  0x2586,\n\t7472:  0x2587,\n\t7473:  0x2588,\n\t7474:  0x2589,\n\t7475:  0x258A,\n\t7476:  0x258B,\n\t7477:  0x258C,\n\t7478:  0x258D,\n\t7479:  0x258E,\n\t7480:  0x258F,\n\t7481:  0x2593,\n\t7482:  0x2594,\n\t7483:  0x2595,\n\t7484:  0x25BC,\n\t7485:  0x25BD,\n\t7486:  0x25E2,\n\t7487:  0x25E3,\n\t7488:  0x25E4,\n\t7489:  0x25E5,\n\t7490:  0x2609,\n\t7491:  0x2295,\n\t7492:  0x3012,\n\t7493:  0x301D,\n\t7494:  0x301E,\n\t7506:  0x0101,\n\t7507:  0x00E1,\n\t7508:  0x01CE,\n\t7509:  0x00E0,\n\t7510:  0x0113,\n\t7511:  0x00E9,\n\t7512:  0x011B,\n\t7513:  0x00E8,\n\t7514:  0x012B,\n\t7515:  0x00ED,\n\t7516:  0x01D0,\n\t7517:  0x00EC,\n\t7518:  0x014D,\n\t7519:  0x00F3,\n\t7520:  0x01D2,\n\t7521:  0x00F2,\n\t7522:  0x016B,\n\t7523:  0x00FA,\n\t7524:  0x01D4,\n\t7525:  0x00F9,\n\t7526:  0x01D6,\n\t7527:  0x01D8,\n\t7528:  0x01DA,\n\t7529:  0x01DC,\n\t7530:  0x00FC,\n\t7531:  0x00EA,\n\t7532:  0x0251,\n\t7534:  0x0144,\n\t7535:  0x0148,\n\t7536:  0x01F9,\n\t7537:  0x0261,\n\t7542:  0x3105,\n\t7543:  0x3106,\n\t7544:  0x3107,\n\t7545:  0x3108,\n\t7546:  0x3109,\n\t7547:  0x310A,\n\t7548:  0x310B,\n\t7549:  0x310C,\n\t7550:  0x310D,\n\t7551:  0x310E,\n\t7552:  0x310F,\n\t7553:  0x3110,\n\t7554:  0x3111,\n\t7555:  0x3112,\n\t7556:  0x3113,\n\t7557:  0x3114,\n\t7558:  0x3115,\n\t7559:  0x3116,\n\t7560:  0x3117,\n\t7561:  0x3118,\n\t7562:  0x3119,\n\t7563:  0x311A,\n\t7564:  0x311B,\n\t7565:  0x311C,\n\t7566:  0x311D,\n\t7567:  0x311E,\n\t7568:  0x311F,\n\t7569:  0x3120,\n\t7570:  0x3121,\n\t7571:  0x3122,\n\t7572:  0x3123,\n\t7573:  0x3124,\n\t7574:  0x3125,\n\t7575:  0x3126,\n\t7576:  0x3127,\n\t7577:  0x3128,\n\t7578:  0x3129,\n\t7600:  0x3021,\n\t7601:  0x3022,\n\t7602:  0x3023,\n\t7603:  0x3024,\n\t7604:  0x3025,\n\t7605:  0x3026,\n\t7606:  0x3027,\n\t7607:  0x3028,\n\t7608:  0x3029,\n\t7609:  0x32A3,\n\t7610:  0x338E,\n\t7611:  0x338F,\n\t7612:  0x339C,\n\t7613:  0x339D,\n\t7614:  0x339E,\n\t7615:  0x33A1,\n\t7616:  0x33C4,\n\t7617:  0x33CE,\n\t7618:  0x33D1,\n\t7619:  0x33D2,\n\t7620:  0x33D5,\n\t7621:  0xFE30,\n\t7622:  0xFFE2,\n\t7623:  0xFFE4,\n\t7625:  0x2121,\n\t7626:  0x3231,\n\t7628:  0x2010,\n\t7632:  0x30FC,\n\t7633:  0x309B,\n\t7634:  0x309C,\n\t7635:  0x30FD,\n\t7636:  0x30FE,\n\t7637:  0x3006,\n\t7638:  0x309D,\n\t7639:  0x309E,\n\t7640:  0xFE49,\n\t7641:  0xFE4A,\n\t7642:  0xFE4B,\n\t7643:  0xFE4C,\n\t7644:  0xFE4D,\n\t7645:  0xFE4E,\n\t7646:  0xFE4F,\n\t7647:  0xFE50,\n\t7648:  0xFE51,\n\t7649:  0xFE52,\n\t7650:  0xFE54,\n\t7651:  0xFE55,\n\t7652:  0xFE56,\n\t7653:  0xFE57,\n\t7654:  0xFE59,\n\t7655:  0xFE5A,\n\t7656:  0xFE5B,\n\t7657:  0xFE5C,\n\t7658:  0xFE5D,\n\t7659:  0xFE5E,\n\t7660:  0xFE5F,\n\t7661:  0xFE60,\n\t7662:  0xFE61,\n\t7663:  0xFE62,\n\t7664:  0xFE63,\n\t7665:  0xFE64,\n\t7666:  0xFE65,\n\t7667:  0xFE66,\n\t7668:  0xFE68,\n\t7669:  0xFE69,\n\t7670:  0xFE6A,\n\t7671:  0xFE6B,\n\t7672:  0x303E,\n\t7673:  0x2FF0,\n\t7674:  0x2FF1,\n\t7675:  0x2FF2,\n\t7676:  0x2FF3,\n\t7677:  0x2FF4,\n\t7678:  0x2FF5,\n\t7679:  0x2FF6,\n\t7680:  0x2FF7,\n\t7681:  0x2FF8,\n\t7682:  0x2FF9,\n\t7683:  0x2FFA,\n\t7684:  0x2FFB,\n\t7685:  0x3007,\n\t7699:  0x2500,\n\t7700:  0x2501,\n\t7701:  0x2502,\n\t7702:  0x2503,\n\t7703:  0x2504,\n\t7704:  0x2505,\n\t7705:  0x2506,\n\t7706:  0x2507,\n\t7707:  0x2508,\n\t7708:  0x2509,\n\t7709:  0x250A,\n\t7710:  0x250B,\n\t7711:  0x250C,\n\t7712:  0x250D,\n\t7713:  0x250E,\n\t7714:  0x250F,\n\t7715:  0x2510,\n\t7716:  0x2511,\n\t7717:  0x2512,\n\t7718:  0x2513,\n\t7719:  0x2514,\n\t7720:  0x2515,\n\t7721:  0x2516,\n\t7722:  0x2517,\n\t7723:  0x2518,\n\t7724:  0x2519,\n\t7725:  0x251A,\n\t7726:  0x251B,\n\t7727:  0x251C,\n\t7728:  0x251D,\n\t7729:  0x251E,\n\t7730:  0x251F,\n\t7731:  0x2520,\n\t7732:  0x2521,\n\t7733:  0x2522,\n\t7734:  0x2523,\n\t7735:  0x2524,\n\t7736:  0x2525,\n\t7737:  0x2526,\n\t7738:  0x2527,\n\t7739:  0x2528,\n\t7740:  0x2529,\n\t7741:  0x252A,\n\t7742:  0x252B,\n\t7743:  0x252C,\n\t7744:  0x252D,\n\t7745:  0x252E,\n\t7746:  0x252F,\n\t7747:  0x2530,\n\t7748:  0x2531,\n\t7749:  0x2532,\n\t7750:  0x2533,\n\t7751:  0x2534,\n\t7752:  0x2535,\n\t7753:  0x2536,\n\t7754:  0x2537,\n\t7755:  0x2538,\n\t7756:  0x2539,\n\t7757:  0x253A,\n\t7758:  0x253B,\n\t7759:  0x253C,\n\t7760:  0x253D,\n\t7761:  0x253E,\n\t7762:  0x253F,\n\t7763:  0x2540,\n\t7764:  0x2541,\n\t7765:  0x2542,\n\t7766:  0x2543,\n\t7767:  0x2544,\n\t7768:  0x2545,\n\t7769:  0x2546,\n\t7770:  0x2547,\n\t7771:  0x2548,\n\t7772:  0x2549,\n\t7773:  0x254A,\n\t7774:  0x254B,\n\t7790:  0x72DC,\n\t7791:  0x72DD,\n\t7792:  0x72DF,\n\t7793:  0x72E2,\n\t7794:  0x72E3,\n\t7795:  0x72E4,\n\t7796:  0x72E5,\n\t7797:  0x72E6,\n\t7798:  0x72E7,\n\t7799:  0x72EA,\n\t7800:  0x72EB,\n\t7801:  0x72F5,\n\t7802:  0x72F6,\n\t7803:  0x72F9,\n\t7804:  0x72FD,\n\t7805:  0x72FE,\n\t7806:  0x72FF,\n\t7807:  0x7300,\n\t7808:  0x7302,\n\t7809:  0x7304,\n\t7810:  0x7305,\n\t7811:  0x7306,\n\t7812:  0x7307,\n\t7813:  0x7308,\n\t7814:  0x7309,\n\t7815:  0x730B,\n\t7816:  0x730C,\n\t7817:  0x730D,\n\t7818:  0x730F,\n\t7819:  0x7310,\n\t7820:  0x7311,\n\t7821:  0x7312,\n\t7822:  0x7314,\n\t7823:  0x7318,\n\t7824:  0x7319,\n\t7825:  0x731A,\n\t7826:  0x731F,\n\t7827:  0x7320,\n\t7828:  0x7323,\n\t7829:  0x7324,\n\t7830:  0x7326,\n\t7831:  0x7327,\n\t7832:  0x7328,\n\t7833:  0x732D,\n\t7834:  0x732F,\n\t7835:  0x7330,\n\t7836:  0x7332,\n\t7837:  0x7333,\n\t7838:  0x7335,\n\t7839:  0x7336,\n\t7840:  0x733A,\n\t7841:  0x733B,\n\t7842:  0x733C,\n\t7843:  0x733D,\n\t7844:  0x7340,\n\t7845:  0x7341,\n\t7846:  0x7342,\n\t7847:  0x7343,\n\t7848:  0x7344,\n\t7849:  0x7345,\n\t7850:  0x7346,\n\t7851:  0x7347,\n\t7852:  0x7348,\n\t7853:  0x7349,\n\t7854:  0x734A,\n\t7855:  0x734B,\n\t7856:  0x734C,\n\t7857:  0x734E,\n\t7858:  0x734F,\n\t7859:  0x7351,\n\t7860:  0x7353,\n\t7861:  0x7354,\n\t7862:  0x7355,\n\t7863:  0x7356,\n\t7864:  0x7358,\n\t7865:  0x7359,\n\t7866:  0x735A,\n\t7867:  0x735B,\n\t7868:  0x735C,\n\t7869:  0x735D,\n\t7870:  0x735E,\n\t7871:  0x735F,\n\t7872:  0x7361,\n\t7873:  0x7362,\n\t7874:  0x7363,\n\t7875:  0x7364,\n\t7876:  0x7365,\n\t7877:  0x7366,\n\t7878:  0x7367,\n\t7879:  0x7368,\n\t7880:  0x7369,\n\t7881:  0x736A,\n\t7882:  0x736B,\n\t7883:  0x736E,\n\t7884:  0x7370,\n\t7885:  0x7371,\n\t7980:  0x7372,\n\t7981:  0x7373,\n\t7982:  0x7374,\n\t7983:  0x7375,\n\t7984:  0x7376,\n\t7985:  0x7377,\n\t7986:  0x7378,\n\t7987:  0x7379,\n\t7988:  0x737A,\n\t7989:  0x737B,\n\t7990:  0x737C,\n\t7991:  0x737D,\n\t7992:  0x737F,\n\t7993:  0x7380,\n\t7994:  0x7381,\n\t7995:  0x7382,\n\t7996:  0x7383,\n\t7997:  0x7385,\n\t7998:  0x7386,\n\t7999:  0x7388,\n\t8000:  0x738A,\n\t8001:  0x738C,\n\t8002:  0x738D,\n\t8003:  0x738F,\n\t8004:  0x7390,\n\t8005:  0x7392,\n\t8006:  0x7393,\n\t8007:  0x7394,\n\t8008:  0x7395,\n\t8009:  0x7397,\n\t8010:  0x7398,\n\t8011:  0x7399,\n\t8012:  0x739A,\n\t8013:  0x739C,\n\t8014:  0x739D,\n\t8015:  0x739E,\n\t8016:  0x73A0,\n\t8017:  0x73A1,\n\t8018:  0x73A3,\n\t8019:  0x73A4,\n\t8020:  0x73A5,\n\t8021:  0x73A6,\n\t8022:  0x73A7,\n\t8023:  0x73A8,\n\t8024:  0x73AA,\n\t8025:  0x73AC,\n\t8026:  0x73AD,\n\t8027:  0x73B1,\n\t8028:  0x73B4,\n\t8029:  0x73B5,\n\t8030:  0x73B6,\n\t8031:  0x73B8,\n\t8032:  0x73B9,\n\t8033:  0x73BC,\n\t8034:  0x73BD,\n\t8035:  0x73BE,\n\t8036:  0x73BF,\n\t8037:  0x73C1,\n\t8038:  0x73C3,\n\t8039:  0x73C4,\n\t8040:  0x73C5,\n\t8041:  0x73C6,\n\t8042:  0x73C7,\n\t8043:  0x73CB,\n\t8044:  0x73CC,\n\t8045:  0x73CE,\n\t8046:  0x73D2,\n\t8047:  0x73D3,\n\t8048:  0x73D4,\n\t8049:  0x73D5,\n\t8050:  0x73D6,\n\t8051:  0x73D7,\n\t8052:  0x73D8,\n\t8053:  0x73DA,\n\t8054:  0x73DB,\n\t8055:  0x73DC,\n\t8056:  0x73DD,\n\t8057:  0x73DF,\n\t8058:  0x73E1,\n\t8059:  0x73E2,\n\t8060:  0x73E3,\n\t8061:  0x73E4,\n\t8062:  0x73E6,\n\t8063:  0x73E8,\n\t8064:  0x73EA,\n\t8065:  0x73EB,\n\t8066:  0x73EC,\n\t8067:  0x73EE,\n\t8068:  0x73EF,\n\t8069:  0x73F0,\n\t8070:  0x73F1,\n\t8071:  0x73F3,\n\t8072:  0x73F4,\n\t8073:  0x73F5,\n\t8074:  0x73F6,\n\t8075:  0x73F7,\n\t8170:  0x73F8,\n\t8171:  0x73F9,\n\t8172:  0x73FA,\n\t8173:  0x73FB,\n\t8174:  0x73FC,\n\t8175:  0x73FD,\n\t8176:  0x73FE,\n\t8177:  0x73FF,\n\t8178:  0x7400,\n\t8179:  0x7401,\n\t8180:  0x7402,\n\t8181:  0x7404,\n\t8182:  0x7407,\n\t8183:  0x7408,\n\t8184:  0x740B,\n\t8185:  0x740C,\n\t8186:  0x740D,\n\t8187:  0x740E,\n\t8188:  0x7411,\n\t8189:  0x7412,\n\t8190:  0x7413,\n\t8191:  0x7414,\n\t8192:  0x7415,\n\t8193:  0x7416,\n\t8194:  0x7417,\n\t8195:  0x7418,\n\t8196:  0x7419,\n\t8197:  0x741C,\n\t8198:  0x741D,\n\t8199:  0x741E,\n\t8200:  0x741F,\n\t8201:  0x7420,\n\t8202:  0x7421,\n\t8203:  0x7423,\n\t8204:  0x7424,\n\t8205:  0x7427,\n\t8206:  0x7429,\n\t8207:  0x742B,\n\t8208:  0x742D,\n\t8209:  0x742F,\n\t8210:  0x7431,\n\t8211:  0x7432,\n\t8212:  0x7437,\n\t8213:  0x7438,\n\t8214:  0x7439,\n\t8215:  0x743A,\n\t8216:  0x743B,\n\t8217:  0x743D,\n\t8218:  0x743E,\n\t8219:  0x743F,\n\t8220:  0x7440,\n\t8221:  0x7442,\n\t8222:  0x7443,\n\t8223:  0x7444,\n\t8224:  0x7445,\n\t8225:  0x7446,\n\t8226:  0x7447,\n\t8227:  0x7448,\n\t8228:  0x7449,\n\t8229:  0x744A,\n\t8230:  0x744B,\n\t8231:  0x744C,\n\t8232:  0x744D,\n\t8233:  0x744E,\n\t8234:  0x744F,\n\t8235:  0x7450,\n\t8236:  0x7451,\n\t8237:  0x7452,\n\t8238:  0x7453,\n\t8239:  0x7454,\n\t8240:  0x7456,\n\t8241:  0x7458,\n\t8242:  0x745D,\n\t8243:  0x7460,\n\t8244:  0x7461,\n\t8245:  0x7462,\n\t8246:  0x7463,\n\t8247:  0x7464,\n\t8248:  0x7465,\n\t8249:  0x7466,\n\t8250:  0x7467,\n\t8251:  0x7468,\n\t8252:  0x7469,\n\t8253:  0x746A,\n\t8254:  0x746B,\n\t8255:  0x746C,\n\t8256:  0x746E,\n\t8257:  0x746F,\n\t8258:  0x7471,\n\t8259:  0x7472,\n\t8260:  0x7473,\n\t8261:  0x7474,\n\t8262:  0x7475,\n\t8263:  0x7478,\n\t8264:  0x7479,\n\t8265:  0x747A,\n\t8360:  0x747B,\n\t8361:  0x747C,\n\t8362:  0x747D,\n\t8363:  0x747F,\n\t8364:  0x7482,\n\t8365:  0x7484,\n\t8366:  0x7485,\n\t8367:  0x7486,\n\t8368:  0x7488,\n\t8369:  0x7489,\n\t8370:  0x748A,\n\t8371:  0x748C,\n\t8372:  0x748D,\n\t8373:  0x748F,\n\t8374:  0x7491,\n\t8375:  0x7492,\n\t8376:  0x7493,\n\t8377:  0x7494,\n\t8378:  0x7495,\n\t8379:  0x7496,\n\t8380:  0x7497,\n\t8381:  0x7498,\n\t8382:  0x7499,\n\t8383:  0x749A,\n\t8384:  0x749B,\n\t8385:  0x749D,\n\t8386:  0x749F,\n\t8387:  0x74A0,\n\t8388:  0x74A1,\n\t8389:  0x74A2,\n\t8390:  0x74A3,\n\t8391:  0x74A4,\n\t8392:  0x74A5,\n\t8393:  0x74A6,\n\t8394:  0x74AA,\n\t8395:  0x74AB,\n\t8396:  0x74AC,\n\t8397:  0x74AD,\n\t8398:  0x74AE,\n\t8399:  0x74AF,\n\t8400:  0x74B0,\n\t8401:  0x74B1,\n\t8402:  0x74B2,\n\t8403:  0x74B3,\n\t8404:  0x74B4,\n\t8405:  0x74B5,\n\t8406:  0x74B6,\n\t8407:  0x74B7,\n\t8408:  0x74B8,\n\t8409:  0x74B9,\n\t8410:  0x74BB,\n\t8411:  0x74BC,\n\t8412:  0x74BD,\n\t8413:  0x74BE,\n\t8414:  0x74BF,\n\t8415:  0x74C0,\n\t8416:  0x74C1,\n\t8417:  0x74C2,\n\t8418:  0x74C3,\n\t8419:  0x74C4,\n\t8420:  0x74C5,\n\t8421:  0x74C6,\n\t8422:  0x74C7,\n\t8423:  0x74C8,\n\t8424:  0x74C9,\n\t8425:  0x74CA,\n\t8426:  0x74CB,\n\t8427:  0x74CC,\n\t8428:  0x74CD,\n\t8429:  0x74CE,\n\t8430:  0x74CF,\n\t8431:  0x74D0,\n\t8432:  0x74D1,\n\t8433:  0x74D3,\n\t8434:  0x74D4,\n\t8435:  0x74D5,\n\t8436:  0x74D6,\n\t8437:  0x74D7,\n\t8438:  0x74D8,\n\t8439:  0x74D9,\n\t8440:  0x74DA,\n\t8441:  0x74DB,\n\t8442:  0x74DD,\n\t8443:  0x74DF,\n\t8444:  0x74E1,\n\t8445:  0x74E5,\n\t8446:  0x74E7,\n\t8447:  0x74E8,\n\t8448:  0x74E9,\n\t8449:  0x74EA,\n\t8450:  0x74EB,\n\t8451:  0x74EC,\n\t8452:  0x74ED,\n\t8453:  0x74F0,\n\t8454:  0x74F1,\n\t8455:  0x74F2,\n\t8550:  0x74F3,\n\t8551:  0x74F5,\n\t8552:  0x74F8,\n\t8553:  0x74F9,\n\t8554:  0x74FA,\n\t8555:  0x74FB,\n\t8556:  0x74FC,\n\t8557:  0x74FD,\n\t8558:  0x74FE,\n\t8559:  0x7500,\n\t8560:  0x7501,\n\t8561:  0x7502,\n\t8562:  0x7503,\n\t8563:  0x7505,\n\t8564:  0x7506,\n\t8565:  0x7507,\n\t8566:  0x7508,\n\t8567:  0x7509,\n\t8568:  0x750A,\n\t8569:  0x750B,\n\t8570:  0x750C,\n\t8571:  0x750E,\n\t8572:  0x7510,\n\t8573:  0x7512,\n\t8574:  0x7514,\n\t8575:  0x7515,\n\t8576:  0x7516,\n\t8577:  0x7517,\n\t8578:  0x751B,\n\t8579:  0x751D,\n\t8580:  0x751E,\n\t8581:  0x7520,\n\t8582:  0x7521,\n\t8583:  0x7522,\n\t8584:  0x7523,\n\t8585:  0x7524,\n\t8586:  0x7526,\n\t8587:  0x7527,\n\t8588:  0x752A,\n\t8589:  0x752E,\n\t8590:  0x7534,\n\t8591:  0x7536,\n\t8592:  0x7539,\n\t8593:  0x753C,\n\t8594:  0x753D,\n\t8595:  0x753F,\n\t8596:  0x7541,\n\t8597:  0x7542,\n\t8598:  0x7543,\n\t8599:  0x7544,\n\t8600:  0x7546,\n\t8601:  0x7547,\n\t8602:  0x7549,\n\t8603:  0x754A,\n\t8604:  0x754D,\n\t8605:  0x7550,\n\t8606:  0x7551,\n\t8607:  0x7552,\n\t8608:  0x7553,\n\t8609:  0x7555,\n\t8610:  0x7556,\n\t8611:  0x7557,\n\t8612:  0x7558,\n\t8613:  0x755D,\n\t8614:  0x755E,\n\t8615:  0x755F,\n\t8616:  0x7560,\n\t8617:  0x7561,\n\t8618:  0x7562,\n\t8619:  0x7563,\n\t8620:  0x7564,\n\t8621:  0x7567,\n\t8622:  0x7568,\n\t8623:  0x7569,\n\t8624:  0x756B,\n\t8625:  0x756C,\n\t8626:  0x756D,\n\t8627:  0x756E,\n\t8628:  0x756F,\n\t8629:  0x7570,\n\t8630:  0x7571,\n\t8631:  0x7573,\n\t8632:  0x7575,\n\t8633:  0x7576,\n\t8634:  0x7577,\n\t8635:  0x757A,\n\t8636:  0x757B,\n\t8637:  0x757C,\n\t8638:  0x757D,\n\t8639:  0x757E,\n\t8640:  0x7580,\n\t8641:  0x7581,\n\t8642:  0x7582,\n\t8643:  0x7584,\n\t8644:  0x7585,\n\t8645:  0x7587,\n\t8740:  0x7588,\n\t8741:  0x7589,\n\t8742:  0x758A,\n\t8743:  0x758C,\n\t8744:  0x758D,\n\t8745:  0x758E,\n\t8746:  0x7590,\n\t8747:  0x7593,\n\t8748:  0x7595,\n\t8749:  0x7598,\n\t8750:  0x759B,\n\t8751:  0x759C,\n\t8752:  0x759E,\n\t8753:  0x75A2,\n\t8754:  0x75A6,\n\t8755:  0x75A7,\n\t8756:  0x75A8,\n\t8757:  0x75A9,\n\t8758:  0x75AA,\n\t8759:  0x75AD,\n\t8760:  0x75B6,\n\t8761:  0x75B7,\n\t8762:  0x75BA,\n\t8763:  0x75BB,\n\t8764:  0x75BF,\n\t8765:  0x75C0,\n\t8766:  0x75C1,\n\t8767:  0x75C6,\n\t8768:  0x75CB,\n\t8769:  0x75CC,\n\t8770:  0x75CE,\n\t8771:  0x75CF,\n\t8772:  0x75D0,\n\t8773:  0x75D1,\n\t8774:  0x75D3,\n\t8775:  0x75D7,\n\t8776:  0x75D9,\n\t8777:  0x75DA,\n\t8778:  0x75DC,\n\t8779:  0x75DD,\n\t8780:  0x75DF,\n\t8781:  0x75E0,\n\t8782:  0x75E1,\n\t8783:  0x75E5,\n\t8784:  0x75E9,\n\t8785:  0x75EC,\n\t8786:  0x75ED,\n\t8787:  0x75EE,\n\t8788:  0x75EF,\n\t8789:  0x75F2,\n\t8790:  0x75F3,\n\t8791:  0x75F5,\n\t8792:  0x75F6,\n\t8793:  0x75F7,\n\t8794:  0x75F8,\n\t8795:  0x75FA,\n\t8796:  0x75FB,\n\t8797:  0x75FD,\n\t8798:  0x75FE,\n\t8799:  0x7602,\n\t8800:  0x7604,\n\t8801:  0x7606,\n\t8802:  0x7607,\n\t8803:  0x7608,\n\t8804:  0x7609,\n\t8805:  0x760B,\n\t8806:  0x760D,\n\t8807:  0x760E,\n\t8808:  0x760F,\n\t8809:  0x7611,\n\t8810:  0x7612,\n\t8811:  0x7613,\n\t8812:  0x7614,\n\t8813:  0x7616,\n\t8814:  0x761A,\n\t8815:  0x761C,\n\t8816:  0x761D,\n\t8817:  0x761E,\n\t8818:  0x7621,\n\t8819:  0x7623,\n\t8820:  0x7627,\n\t8821:  0x7628,\n\t8822:  0x762C,\n\t8823:  0x762E,\n\t8824:  0x762F,\n\t8825:  0x7631,\n\t8826:  0x7632,\n\t8827:  0x7636,\n\t8828:  0x7637,\n\t8829:  0x7639,\n\t8830:  0x763A,\n\t8831:  0x763B,\n\t8832:  0x763D,\n\t8833:  0x7641,\n\t8834:  0x7642,\n\t8835:  0x7644,\n\t8930:  0x7645,\n\t8931:  0x7646,\n\t8932:  0x7647,\n\t8933:  0x7648,\n\t8934:  0x7649,\n\t8935:  0x764A,\n\t8936:  0x764B,\n\t8937:  0x764E,\n\t8938:  0x764F,\n\t8939:  0x7650,\n\t8940:  0x7651,\n\t8941:  0x7652,\n\t8942:  0x7653,\n\t8943:  0x7655,\n\t8944:  0x7657,\n\t8945:  0x7658,\n\t8946:  0x7659,\n\t8947:  0x765A,\n\t8948:  0x765B,\n\t8949:  0x765D,\n\t8950:  0x765F,\n\t8951:  0x7660,\n\t8952:  0x7661,\n\t8953:  0x7662,\n\t8954:  0x7664,\n\t8955:  0x7665,\n\t8956:  0x7666,\n\t8957:  0x7667,\n\t8958:  0x7668,\n\t8959:  0x7669,\n\t8960:  0x766A,\n\t8961:  0x766C,\n\t8962:  0x766D,\n\t8963:  0x766E,\n\t8964:  0x7670,\n\t8965:  0x7671,\n\t8966:  0x7672,\n\t8967:  0x7673,\n\t8968:  0x7674,\n\t8969:  0x7675,\n\t8970:  0x7676,\n\t8971:  0x7677,\n\t8972:  0x7679,\n\t8973:  0x767A,\n\t8974:  0x767C,\n\t8975:  0x767F,\n\t8976:  0x7680,\n\t8977:  0x7681,\n\t8978:  0x7683,\n\t8979:  0x7685,\n\t8980:  0x7689,\n\t8981:  0x768A,\n\t8982:  0x768C,\n\t8983:  0x768D,\n\t8984:  0x768F,\n\t8985:  0x7690,\n\t8986:  0x7692,\n\t8987:  0x7694,\n\t8988:  0x7695,\n\t8989:  0x7697,\n\t8990:  0x7698,\n\t8991:  0x769A,\n\t8992:  0x769B,\n\t8993:  0x769C,\n\t8994:  0x769D,\n\t8995:  0x769E,\n\t8996:  0x769F,\n\t8997:  0x76A0,\n\t8998:  0x76A1,\n\t8999:  0x76A2,\n\t9000:  0x76A3,\n\t9001:  0x76A5,\n\t9002:  0x76A6,\n\t9003:  0x76A7,\n\t9004:  0x76A8,\n\t9005:  0x76A9,\n\t9006:  0x76AA,\n\t9007:  0x76AB,\n\t9008:  0x76AC,\n\t9009:  0x76AD,\n\t9010:  0x76AF,\n\t9011:  0x76B0,\n\t9012:  0x76B3,\n\t9013:  0x76B5,\n\t9014:  0x76B6,\n\t9015:  0x76B7,\n\t9016:  0x76B8,\n\t9017:  0x76B9,\n\t9018:  0x76BA,\n\t9019:  0x76BB,\n\t9020:  0x76BC,\n\t9021:  0x76BD,\n\t9022:  0x76BE,\n\t9023:  0x76C0,\n\t9024:  0x76C1,\n\t9025:  0x76C3,\n\t9026:  0x554A,\n\t9027:  0x963F,\n\t9028:  0x57C3,\n\t9029:  0x6328,\n\t9030:  0x54CE,\n\t9031:  0x5509,\n\t9032:  0x54C0,\n\t9033:  0x7691,\n\t9034:  0x764C,\n\t9035:  0x853C,\n\t9036:  0x77EE,\n\t9037:  0x827E,\n\t9038:  0x788D,\n\t9039:  0x7231,\n\t9040:  0x9698,\n\t9041:  0x978D,\n\t9042:  0x6C28,\n\t9043:  0x5B89,\n\t9044:  0x4FFA,\n\t9045:  0x6309,\n\t9046:  0x6697,\n\t9047:  0x5CB8,\n\t9048:  0x80FA,\n\t9049:  0x6848,\n\t9050:  0x80AE,\n\t9051:  0x6602,\n\t9052:  0x76CE,\n\t9053:  0x51F9,\n\t9054:  0x6556,\n\t9055:  0x71AC,\n\t9056:  0x7FF1,\n\t9057:  0x8884,\n\t9058:  0x50B2,\n\t9059:  0x5965,\n\t9060:  0x61CA,\n\t9061:  0x6FB3,\n\t9062:  0x82AD,\n\t9063:  0x634C,\n\t9064:  0x6252,\n\t9065:  0x53ED,\n\t9066:  0x5427,\n\t9067:  0x7B06,\n\t9068:  0x516B,\n\t9069:  0x75A4,\n\t9070:  0x5DF4,\n\t9071:  0x62D4,\n\t9072:  0x8DCB,\n\t9073:  0x9776,\n\t9074:  0x628A,\n\t9075:  0x8019,\n\t9076:  0x575D,\n\t9077:  0x9738,\n\t9078:  0x7F62,\n\t9079:  0x7238,\n\t9080:  0x767D,\n\t9081:  0x67CF,\n\t9082:  0x767E,\n\t9083:  0x6446,\n\t9084:  0x4F70,\n\t9085:  0x8D25,\n\t9086:  0x62DC,\n\t9087:  0x7A17,\n\t9088:  0x6591,\n\t9089:  0x73ED,\n\t9090:  0x642C,\n\t9091:  0x6273,\n\t9092:  0x822C,\n\t9093:  0x9881,\n\t9094:  0x677F,\n\t9095:  0x7248,\n\t9096:  0x626E,\n\t9097:  0x62CC,\n\t9098:  0x4F34,\n\t9099:  0x74E3,\n\t9100:  0x534A,\n\t9101:  0x529E,\n\t9102:  0x7ECA,\n\t9103:  0x90A6,\n\t9104:  0x5E2E,\n\t9105:  0x6886,\n\t9106:  0x699C,\n\t9107:  0x8180,\n\t9108:  0x7ED1,\n\t9109:  0x68D2,\n\t9110:  0x78C5,\n\t9111:  0x868C,\n\t9112:  0x9551,\n\t9113:  0x508D,\n\t9114:  0x8C24,\n\t9115:  0x82DE,\n\t9116:  0x80DE,\n\t9117:  0x5305,\n\t9118:  0x8912,\n\t9119:  0x5265,\n\t9120:  0x76C4,\n\t9121:  0x76C7,\n\t9122:  0x76C9,\n\t9123:  0x76CB,\n\t9124:  0x76CC,\n\t9125:  0x76D3,\n\t9126:  0x76D5,\n\t9127:  0x76D9,\n\t9128:  0x76DA,\n\t9129:  0x76DC,\n\t9130:  0x76DD,\n\t9131:  0x76DE,\n\t9132:  0x76E0,\n\t9133:  0x76E1,\n\t9134:  0x76E2,\n\t9135:  0x76E3,\n\t9136:  0x76E4,\n\t9137:  0x76E6,\n\t9138:  0x76E7,\n\t9139:  0x76E8,\n\t9140:  0x76E9,\n\t9141:  0x76EA,\n\t9142:  0x76EB,\n\t9143:  0x76EC,\n\t9144:  0x76ED,\n\t9145:  0x76F0,\n\t9146:  0x76F3,\n\t9147:  0x76F5,\n\t9148:  0x76F6,\n\t9149:  0x76F7,\n\t9150:  0x76FA,\n\t9151:  0x76FB,\n\t9152:  0x76FD,\n\t9153:  0x76FF,\n\t9154:  0x7700,\n\t9155:  0x7702,\n\t9156:  0x7703,\n\t9157:  0x7705,\n\t9158:  0x7706,\n\t9159:  0x770A,\n\t9160:  0x770C,\n\t9161:  0x770E,\n\t9162:  0x770F,\n\t9163:  0x7710,\n\t9164:  0x7711,\n\t9165:  0x7712,\n\t9166:  0x7713,\n\t9167:  0x7714,\n\t9168:  0x7715,\n\t9169:  0x7716,\n\t9170:  0x7717,\n\t9171:  0x7718,\n\t9172:  0x771B,\n\t9173:  0x771C,\n\t9174:  0x771D,\n\t9175:  0x771E,\n\t9176:  0x7721,\n\t9177:  0x7723,\n\t9178:  0x7724,\n\t9179:  0x7725,\n\t9180:  0x7727,\n\t9181:  0x772A,\n\t9182:  0x772B,\n\t9183:  0x772C,\n\t9184:  0x772E,\n\t9185:  0x7730,\n\t9186:  0x7731,\n\t9187:  0x7732,\n\t9188:  0x7733,\n\t9189:  0x7734,\n\t9190:  0x7739,\n\t9191:  0x773B,\n\t9192:  0x773D,\n\t9193:  0x773E,\n\t9194:  0x773F,\n\t9195:  0x7742,\n\t9196:  0x7744,\n\t9197:  0x7745,\n\t9198:  0x7746,\n\t9199:  0x7748,\n\t9200:  0x7749,\n\t9201:  0x774A,\n\t9202:  0x774B,\n\t9203:  0x774C,\n\t9204:  0x774D,\n\t9205:  0x774E,\n\t9206:  0x774F,\n\t9207:  0x7752,\n\t9208:  0x7753,\n\t9209:  0x7754,\n\t9210:  0x7755,\n\t9211:  0x7756,\n\t9212:  0x7757,\n\t9213:  0x7758,\n\t9214:  0x7759,\n\t9215:  0x775C,\n\t9216:  0x8584,\n\t9217:  0x96F9,\n\t9218:  0x4FDD,\n\t9219:  0x5821,\n\t9220:  0x9971,\n\t9221:  0x5B9D,\n\t9222:  0x62B1,\n\t9223:  0x62A5,\n\t9224:  0x66B4,\n\t9225:  0x8C79,\n\t9226:  0x9C8D,\n\t9227:  0x7206,\n\t9228:  0x676F,\n\t9229:  0x7891,\n\t9230:  0x60B2,\n\t9231:  0x5351,\n\t9232:  0x5317,\n\t9233:  0x8F88,\n\t9234:  0x80CC,\n\t9235:  0x8D1D,\n\t9236:  0x94A1,\n\t9237:  0x500D,\n\t9238:  0x72C8,\n\t9239:  0x5907,\n\t9240:  0x60EB,\n\t9241:  0x7119,\n\t9242:  0x88AB,\n\t9243:  0x5954,\n\t9244:  0x82EF,\n\t9245:  0x672C,\n\t9246:  0x7B28,\n\t9247:  0x5D29,\n\t9248:  0x7EF7,\n\t9249:  0x752D,\n\t9250:  0x6CF5,\n\t9251:  0x8E66,\n\t9252:  0x8FF8,\n\t9253:  0x903C,\n\t9254:  0x9F3B,\n\t9255:  0x6BD4,\n\t9256:  0x9119,\n\t9257:  0x7B14,\n\t9258:  0x5F7C,\n\t9259:  0x78A7,\n\t9260:  0x84D6,\n\t9261:  0x853D,\n\t9262:  0x6BD5,\n\t9263:  0x6BD9,\n\t9264:  0x6BD6,\n\t9265:  0x5E01,\n\t9266:  0x5E87,\n\t9267:  0x75F9,\n\t9268:  0x95ED,\n\t9269:  0x655D,\n\t9270:  0x5F0A,\n\t9271:  0x5FC5,\n\t9272:  0x8F9F,\n\t9273:  0x58C1,\n\t9274:  0x81C2,\n\t9275:  0x907F,\n\t9276:  0x965B,\n\t9277:  0x97AD,\n\t9278:  0x8FB9,\n\t9279:  0x7F16,\n\t9280:  0x8D2C,\n\t9281:  0x6241,\n\t9282:  0x4FBF,\n\t9283:  0x53D8,\n\t9284:  0x535E,\n\t9285:  0x8FA8,\n\t9286:  0x8FA9,\n\t9287:  0x8FAB,\n\t9288:  0x904D,\n\t9289:  0x6807,\n\t9290:  0x5F6A,\n\t9291:  0x8198,\n\t9292:  0x8868,\n\t9293:  0x9CD6,\n\t9294:  0x618B,\n\t9295:  0x522B,\n\t9296:  0x762A,\n\t9297:  0x5F6C,\n\t9298:  0x658C,\n\t9299:  0x6FD2,\n\t9300:  0x6EE8,\n\t9301:  0x5BBE,\n\t9302:  0x6448,\n\t9303:  0x5175,\n\t9304:  0x51B0,\n\t9305:  0x67C4,\n\t9306:  0x4E19,\n\t9307:  0x79C9,\n\t9308:  0x997C,\n\t9309:  0x70B3,\n\t9310:  0x775D,\n\t9311:  0x775E,\n\t9312:  0x775F,\n\t9313:  0x7760,\n\t9314:  0x7764,\n\t9315:  0x7767,\n\t9316:  0x7769,\n\t9317:  0x776A,\n\t9318:  0x776D,\n\t9319:  0x776E,\n\t9320:  0x776F,\n\t9321:  0x7770,\n\t9322:  0x7771,\n\t9323:  0x7772,\n\t9324:  0x7773,\n\t9325:  0x7774,\n\t9326:  0x7775,\n\t9327:  0x7776,\n\t9328:  0x7777,\n\t9329:  0x7778,\n\t9330:  0x777A,\n\t9331:  0x777B,\n\t9332:  0x777C,\n\t9333:  0x7781,\n\t9334:  0x7782,\n\t9335:  0x7783,\n\t9336:  0x7786,\n\t9337:  0x7787,\n\t9338:  0x7788,\n\t9339:  0x7789,\n\t9340:  0x778A,\n\t9341:  0x778B,\n\t9342:  0x778F,\n\t9343:  0x7790,\n\t9344:  0x7793,\n\t9345:  0x7794,\n\t9346:  0x7795,\n\t9347:  0x7796,\n\t9348:  0x7797,\n\t9349:  0x7798,\n\t9350:  0x7799,\n\t9351:  0x779A,\n\t9352:  0x779B,\n\t9353:  0x779C,\n\t9354:  0x779D,\n\t9355:  0x779E,\n\t9356:  0x77A1,\n\t9357:  0x77A3,\n\t9358:  0x77A4,\n\t9359:  0x77A6,\n\t9360:  0x77A8,\n\t9361:  0x77AB,\n\t9362:  0x77AD,\n\t9363:  0x77AE,\n\t9364:  0x77AF,\n\t9365:  0x77B1,\n\t9366:  0x77B2,\n\t9367:  0x77B4,\n\t9368:  0x77B6,\n\t9369:  0x77B7,\n\t9370:  0x77B8,\n\t9371:  0x77B9,\n\t9372:  0x77BA,\n\t9373:  0x77BC,\n\t9374:  0x77BE,\n\t9375:  0x77C0,\n\t9376:  0x77C1,\n\t9377:  0x77C2,\n\t9378:  0x77C3,\n\t9379:  0x77C4,\n\t9380:  0x77C5,\n\t9381:  0x77C6,\n\t9382:  0x77C7,\n\t9383:  0x77C8,\n\t9384:  0x77C9,\n\t9385:  0x77CA,\n\t9386:  0x77CB,\n\t9387:  0x77CC,\n\t9388:  0x77CE,\n\t9389:  0x77CF,\n\t9390:  0x77D0,\n\t9391:  0x77D1,\n\t9392:  0x77D2,\n\t9393:  0x77D3,\n\t9394:  0x77D4,\n\t9395:  0x77D5,\n\t9396:  0x77D6,\n\t9397:  0x77D8,\n\t9398:  0x77D9,\n\t9399:  0x77DA,\n\t9400:  0x77DD,\n\t9401:  0x77DE,\n\t9402:  0x77DF,\n\t9403:  0x77E0,\n\t9404:  0x77E1,\n\t9405:  0x77E4,\n\t9406:  0x75C5,\n\t9407:  0x5E76,\n\t9408:  0x73BB,\n\t9409:  0x83E0,\n\t9410:  0x64AD,\n\t9411:  0x62E8,\n\t9412:  0x94B5,\n\t9413:  0x6CE2,\n\t9414:  0x535A,\n\t9415:  0x52C3,\n\t9416:  0x640F,\n\t9417:  0x94C2,\n\t9418:  0x7B94,\n\t9419:  0x4F2F,\n\t9420:  0x5E1B,\n\t9421:  0x8236,\n\t9422:  0x8116,\n\t9423:  0x818A,\n\t9424:  0x6E24,\n\t9425:  0x6CCA,\n\t9426:  0x9A73,\n\t9427:  0x6355,\n\t9428:  0x535C,\n\t9429:  0x54FA,\n\t9430:  0x8865,\n\t9431:  0x57E0,\n\t9432:  0x4E0D,\n\t9433:  0x5E03,\n\t9434:  0x6B65,\n\t9435:  0x7C3F,\n\t9436:  0x90E8,\n\t9437:  0x6016,\n\t9438:  0x64E6,\n\t9439:  0x731C,\n\t9440:  0x88C1,\n\t9441:  0x6750,\n\t9442:  0x624D,\n\t9443:  0x8D22,\n\t9444:  0x776C,\n\t9445:  0x8E29,\n\t9446:  0x91C7,\n\t9447:  0x5F69,\n\t9448:  0x83DC,\n\t9449:  0x8521,\n\t9450:  0x9910,\n\t9451:  0x53C2,\n\t9452:  0x8695,\n\t9453:  0x6B8B,\n\t9454:  0x60ED,\n\t9455:  0x60E8,\n\t9456:  0x707F,\n\t9457:  0x82CD,\n\t9458:  0x8231,\n\t9459:  0x4ED3,\n\t9460:  0x6CA7,\n\t9461:  0x85CF,\n\t9462:  0x64CD,\n\t9463:  0x7CD9,\n\t9464:  0x69FD,\n\t9465:  0x66F9,\n\t9466:  0x8349,\n\t9467:  0x5395,\n\t9468:  0x7B56,\n\t9469:  0x4FA7,\n\t9470:  0x518C,\n\t9471:  0x6D4B,\n\t9472:  0x5C42,\n\t9473:  0x8E6D,\n\t9474:  0x63D2,\n\t9475:  0x53C9,\n\t9476:  0x832C,\n\t9477:  0x8336,\n\t9478:  0x67E5,\n\t9479:  0x78B4,\n\t9480:  0x643D,\n\t9481:  0x5BDF,\n\t9482:  0x5C94,\n\t9483:  0x5DEE,\n\t9484:  0x8BE7,\n\t9485:  0x62C6,\n\t9486:  0x67F4,\n\t9487:  0x8C7A,\n\t9488:  0x6400,\n\t9489:  0x63BA,\n\t9490:  0x8749,\n\t9491:  0x998B,\n\t9492:  0x8C17,\n\t9493:  0x7F20,\n\t9494:  0x94F2,\n\t9495:  0x4EA7,\n\t9496:  0x9610,\n\t9497:  0x98A4,\n\t9498:  0x660C,\n\t9499:  0x7316,\n\t9500:  0x77E6,\n\t9501:  0x77E8,\n\t9502:  0x77EA,\n\t9503:  0x77EF,\n\t9504:  0x77F0,\n\t9505:  0x77F1,\n\t9506:  0x77F2,\n\t9507:  0x77F4,\n\t9508:  0x77F5,\n\t9509:  0x77F7,\n\t9510:  0x77F9,\n\t9511:  0x77FA,\n\t9512:  0x77FB,\n\t9513:  0x77FC,\n\t9514:  0x7803,\n\t9515:  0x7804,\n\t9516:  0x7805,\n\t9517:  0x7806,\n\t9518:  0x7807,\n\t9519:  0x7808,\n\t9520:  0x780A,\n\t9521:  0x780B,\n\t9522:  0x780E,\n\t9523:  0x780F,\n\t9524:  0x7810,\n\t9525:  0x7813,\n\t9526:  0x7815,\n\t9527:  0x7819,\n\t9528:  0x781B,\n\t9529:  0x781E,\n\t9530:  0x7820,\n\t9531:  0x7821,\n\t9532:  0x7822,\n\t9533:  0x7824,\n\t9534:  0x7828,\n\t9535:  0x782A,\n\t9536:  0x782B,\n\t9537:  0x782E,\n\t9538:  0x782F,\n\t9539:  0x7831,\n\t9540:  0x7832,\n\t9541:  0x7833,\n\t9542:  0x7835,\n\t9543:  0x7836,\n\t9544:  0x783D,\n\t9545:  0x783F,\n\t9546:  0x7841,\n\t9547:  0x7842,\n\t9548:  0x7843,\n\t9549:  0x7844,\n\t9550:  0x7846,\n\t9551:  0x7848,\n\t9552:  0x7849,\n\t9553:  0x784A,\n\t9554:  0x784B,\n\t9555:  0x784D,\n\t9556:  0x784F,\n\t9557:  0x7851,\n\t9558:  0x7853,\n\t9559:  0x7854,\n\t9560:  0x7858,\n\t9561:  0x7859,\n\t9562:  0x785A,\n\t9563:  0x785B,\n\t9564:  0x785C,\n\t9565:  0x785E,\n\t9566:  0x785F,\n\t9567:  0x7860,\n\t9568:  0x7861,\n\t9569:  0x7862,\n\t9570:  0x7863,\n\t9571:  0x7864,\n\t9572:  0x7865,\n\t9573:  0x7866,\n\t9574:  0x7867,\n\t9575:  0x7868,\n\t9576:  0x7869,\n\t9577:  0x786F,\n\t9578:  0x7870,\n\t9579:  0x7871,\n\t9580:  0x7872,\n\t9581:  0x7873,\n\t9582:  0x7874,\n\t9583:  0x7875,\n\t9584:  0x7876,\n\t9585:  0x7878,\n\t9586:  0x7879,\n\t9587:  0x787A,\n\t9588:  0x787B,\n\t9589:  0x787D,\n\t9590:  0x787E,\n\t9591:  0x787F,\n\t9592:  0x7880,\n\t9593:  0x7881,\n\t9594:  0x7882,\n\t9595:  0x7883,\n\t9596:  0x573A,\n\t9597:  0x5C1D,\n\t9598:  0x5E38,\n\t9599:  0x957F,\n\t9600:  0x507F,\n\t9601:  0x80A0,\n\t9602:  0x5382,\n\t9603:  0x655E,\n\t9604:  0x7545,\n\t9605:  0x5531,\n\t9606:  0x5021,\n\t9607:  0x8D85,\n\t9608:  0x6284,\n\t9609:  0x949E,\n\t9610:  0x671D,\n\t9611:  0x5632,\n\t9612:  0x6F6E,\n\t9613:  0x5DE2,\n\t9614:  0x5435,\n\t9615:  0x7092,\n\t9616:  0x8F66,\n\t9617:  0x626F,\n\t9618:  0x64A4,\n\t9619:  0x63A3,\n\t9620:  0x5F7B,\n\t9621:  0x6F88,\n\t9622:  0x90F4,\n\t9623:  0x81E3,\n\t9624:  0x8FB0,\n\t9625:  0x5C18,\n\t9626:  0x6668,\n\t9627:  0x5FF1,\n\t9628:  0x6C89,\n\t9629:  0x9648,\n\t9630:  0x8D81,\n\t9631:  0x886C,\n\t9632:  0x6491,\n\t9633:  0x79F0,\n\t9634:  0x57CE,\n\t9635:  0x6A59,\n\t9636:  0x6210,\n\t9637:  0x5448,\n\t9638:  0x4E58,\n\t9639:  0x7A0B,\n\t9640:  0x60E9,\n\t9641:  0x6F84,\n\t9642:  0x8BDA,\n\t9643:  0x627F,\n\t9644:  0x901E,\n\t9645:  0x9A8B,\n\t9646:  0x79E4,\n\t9647:  0x5403,\n\t9648:  0x75F4,\n\t9649:  0x6301,\n\t9650:  0x5319,\n\t9651:  0x6C60,\n\t9652:  0x8FDF,\n\t9653:  0x5F1B,\n\t9654:  0x9A70,\n\t9655:  0x803B,\n\t9656:  0x9F7F,\n\t9657:  0x4F88,\n\t9658:  0x5C3A,\n\t9659:  0x8D64,\n\t9660:  0x7FC5,\n\t9661:  0x65A5,\n\t9662:  0x70BD,\n\t9663:  0x5145,\n\t9664:  0x51B2,\n\t9665:  0x866B,\n\t9666:  0x5D07,\n\t9667:  0x5BA0,\n\t9668:  0x62BD,\n\t9669:  0x916C,\n\t9670:  0x7574,\n\t9671:  0x8E0C,\n\t9672:  0x7A20,\n\t9673:  0x6101,\n\t9674:  0x7B79,\n\t9675:  0x4EC7,\n\t9676:  0x7EF8,\n\t9677:  0x7785,\n\t9678:  0x4E11,\n\t9679:  0x81ED,\n\t9680:  0x521D,\n\t9681:  0x51FA,\n\t9682:  0x6A71,\n\t9683:  0x53A8,\n\t9684:  0x8E87,\n\t9685:  0x9504,\n\t9686:  0x96CF,\n\t9687:  0x6EC1,\n\t9688:  0x9664,\n\t9689:  0x695A,\n\t9690:  0x7884,\n\t9691:  0x7885,\n\t9692:  0x7886,\n\t9693:  0x7888,\n\t9694:  0x788A,\n\t9695:  0x788B,\n\t9696:  0x788F,\n\t9697:  0x7890,\n\t9698:  0x7892,\n\t9699:  0x7894,\n\t9700:  0x7895,\n\t9701:  0x7896,\n\t9702:  0x7899,\n\t9703:  0x789D,\n\t9704:  0x789E,\n\t9705:  0x78A0,\n\t9706:  0x78A2,\n\t9707:  0x78A4,\n\t9708:  0x78A6,\n\t9709:  0x78A8,\n\t9710:  0x78A9,\n\t9711:  0x78AA,\n\t9712:  0x78AB,\n\t9713:  0x78AC,\n\t9714:  0x78AD,\n\t9715:  0x78AE,\n\t9716:  0x78AF,\n\t9717:  0x78B5,\n\t9718:  0x78B6,\n\t9719:  0x78B7,\n\t9720:  0x78B8,\n\t9721:  0x78BA,\n\t9722:  0x78BB,\n\t9723:  0x78BC,\n\t9724:  0x78BD,\n\t9725:  0x78BF,\n\t9726:  0x78C0,\n\t9727:  0x78C2,\n\t9728:  0x78C3,\n\t9729:  0x78C4,\n\t9730:  0x78C6,\n\t9731:  0x78C7,\n\t9732:  0x78C8,\n\t9733:  0x78CC,\n\t9734:  0x78CD,\n\t9735:  0x78CE,\n\t9736:  0x78CF,\n\t9737:  0x78D1,\n\t9738:  0x78D2,\n\t9739:  0x78D3,\n\t9740:  0x78D6,\n\t9741:  0x78D7,\n\t9742:  0x78D8,\n\t9743:  0x78DA,\n\t9744:  0x78DB,\n\t9745:  0x78DC,\n\t9746:  0x78DD,\n\t9747:  0x78DE,\n\t9748:  0x78DF,\n\t9749:  0x78E0,\n\t9750:  0x78E1,\n\t9751:  0x78E2,\n\t9752:  0x78E3,\n\t9753:  0x78E4,\n\t9754:  0x78E5,\n\t9755:  0x78E6,\n\t9756:  0x78E7,\n\t9757:  0x78E9,\n\t9758:  0x78EA,\n\t9759:  0x78EB,\n\t9760:  0x78ED,\n\t9761:  0x78EE,\n\t9762:  0x78EF,\n\t9763:  0x78F0,\n\t9764:  0x78F1,\n\t9765:  0x78F3,\n\t9766:  0x78F5,\n\t9767:  0x78F6,\n\t9768:  0x78F8,\n\t9769:  0x78F9,\n\t9770:  0x78FB,\n\t9771:  0x78FC,\n\t9772:  0x78FD,\n\t9773:  0x78FE,\n\t9774:  0x78FF,\n\t9775:  0x7900,\n\t9776:  0x7902,\n\t9777:  0x7903,\n\t9778:  0x7904,\n\t9779:  0x7906,\n\t9780:  0x7907,\n\t9781:  0x7908,\n\t9782:  0x7909,\n\t9783:  0x790A,\n\t9784:  0x790B,\n\t9785:  0x790C,\n\t9786:  0x7840,\n\t9787:  0x50A8,\n\t9788:  0x77D7,\n\t9789:  0x6410,\n\t9790:  0x89E6,\n\t9791:  0x5904,\n\t9792:  0x63E3,\n\t9793:  0x5DDD,\n\t9794:  0x7A7F,\n\t9795:  0x693D,\n\t9796:  0x4F20,\n\t9797:  0x8239,\n\t9798:  0x5598,\n\t9799:  0x4E32,\n\t9800:  0x75AE,\n\t9801:  0x7A97,\n\t9802:  0x5E62,\n\t9803:  0x5E8A,\n\t9804:  0x95EF,\n\t9805:  0x521B,\n\t9806:  0x5439,\n\t9807:  0x708A,\n\t9808:  0x6376,\n\t9809:  0x9524,\n\t9810:  0x5782,\n\t9811:  0x6625,\n\t9812:  0x693F,\n\t9813:  0x9187,\n\t9814:  0x5507,\n\t9815:  0x6DF3,\n\t9816:  0x7EAF,\n\t9817:  0x8822,\n\t9818:  0x6233,\n\t9819:  0x7EF0,\n\t9820:  0x75B5,\n\t9821:  0x8328,\n\t9822:  0x78C1,\n\t9823:  0x96CC,\n\t9824:  0x8F9E,\n\t9825:  0x6148,\n\t9826:  0x74F7,\n\t9827:  0x8BCD,\n\t9828:  0x6B64,\n\t9829:  0x523A,\n\t9830:  0x8D50,\n\t9831:  0x6B21,\n\t9832:  0x806A,\n\t9833:  0x8471,\n\t9834:  0x56F1,\n\t9835:  0x5306,\n\t9836:  0x4ECE,\n\t9837:  0x4E1B,\n\t9838:  0x51D1,\n\t9839:  0x7C97,\n\t9840:  0x918B,\n\t9841:  0x7C07,\n\t9842:  0x4FC3,\n\t9843:  0x8E7F,\n\t9844:  0x7BE1,\n\t9845:  0x7A9C,\n\t9846:  0x6467,\n\t9847:  0x5D14,\n\t9848:  0x50AC,\n\t9849:  0x8106,\n\t9850:  0x7601,\n\t9851:  0x7CB9,\n\t9852:  0x6DEC,\n\t9853:  0x7FE0,\n\t9854:  0x6751,\n\t9855:  0x5B58,\n\t9856:  0x5BF8,\n\t9857:  0x78CB,\n\t9858:  0x64AE,\n\t9859:  0x6413,\n\t9860:  0x63AA,\n\t9861:  0x632B,\n\t9862:  0x9519,\n\t9863:  0x642D,\n\t9864:  0x8FBE,\n\t9865:  0x7B54,\n\t9866:  0x7629,\n\t9867:  0x6253,\n\t9868:  0x5927,\n\t9869:  0x5446,\n\t9870:  0x6B79,\n\t9871:  0x50A3,\n\t9872:  0x6234,\n\t9873:  0x5E26,\n\t9874:  0x6B86,\n\t9875:  0x4EE3,\n\t9876:  0x8D37,\n\t9877:  0x888B,\n\t9878:  0x5F85,\n\t9879:  0x902E,\n\t9880:  0x790D,\n\t9881:  0x790E,\n\t9882:  0x790F,\n\t9883:  0x7910,\n\t9884:  0x7911,\n\t9885:  0x7912,\n\t9886:  0x7914,\n\t9887:  0x7915,\n\t9888:  0x7916,\n\t9889:  0x7917,\n\t9890:  0x7918,\n\t9891:  0x7919,\n\t9892:  0x791A,\n\t9893:  0x791B,\n\t9894:  0x791C,\n\t9895:  0x791D,\n\t9896:  0x791F,\n\t9897:  0x7920,\n\t9898:  0x7921,\n\t9899:  0x7922,\n\t9900:  0x7923,\n\t9901:  0x7925,\n\t9902:  0x7926,\n\t9903:  0x7927,\n\t9904:  0x7928,\n\t9905:  0x7929,\n\t9906:  0x792A,\n\t9907:  0x792B,\n\t9908:  0x792C,\n\t9909:  0x792D,\n\t9910:  0x792E,\n\t9911:  0x792F,\n\t9912:  0x7930,\n\t9913:  0x7931,\n\t9914:  0x7932,\n\t9915:  0x7933,\n\t9916:  0x7935,\n\t9917:  0x7936,\n\t9918:  0x7937,\n\t9919:  0x7938,\n\t9920:  0x7939,\n\t9921:  0x793D,\n\t9922:  0x793F,\n\t9923:  0x7942,\n\t9924:  0x7943,\n\t9925:  0x7944,\n\t9926:  0x7945,\n\t9927:  0x7947,\n\t9928:  0x794A,\n\t9929:  0x794B,\n\t9930:  0x794C,\n\t9931:  0x794D,\n\t9932:  0x794E,\n\t9933:  0x794F,\n\t9934:  0x7950,\n\t9935:  0x7951,\n\t9936:  0x7952,\n\t9937:  0x7954,\n\t9938:  0x7955,\n\t9939:  0x7958,\n\t9940:  0x7959,\n\t9941:  0x7961,\n\t9942:  0x7963,\n\t9943:  0x7964,\n\t9944:  0x7966,\n\t9945:  0x7969,\n\t9946:  0x796A,\n\t9947:  0x796B,\n\t9948:  0x796C,\n\t9949:  0x796E,\n\t9950:  0x7970,\n\t9951:  0x7971,\n\t9952:  0x7972,\n\t9953:  0x7973,\n\t9954:  0x7974,\n\t9955:  0x7975,\n\t9956:  0x7976,\n\t9957:  0x7979,\n\t9958:  0x797B,\n\t9959:  0x797C,\n\t9960:  0x797D,\n\t9961:  0x797E,\n\t9962:  0x797F,\n\t9963:  0x7982,\n\t9964:  0x7983,\n\t9965:  0x7986,\n\t9966:  0x7987,\n\t9967:  0x7988,\n\t9968:  0x7989,\n\t9969:  0x798B,\n\t9970:  0x798C,\n\t9971:  0x798D,\n\t9972:  0x798E,\n\t9973:  0x7990,\n\t9974:  0x7991,\n\t9975:  0x7992,\n\t9976:  0x6020,\n\t9977:  0x803D,\n\t9978:  0x62C5,\n\t9979:  0x4E39,\n\t9980:  0x5355,\n\t9981:  0x90F8,\n\t9982:  0x63B8,\n\t9983:  0x80C6,\n\t9984:  0x65E6,\n\t9985:  0x6C2E,\n\t9986:  0x4F46,\n\t9987:  0x60EE,\n\t9988:  0x6DE1,\n\t9989:  0x8BDE,\n\t9990:  0x5F39,\n\t9991:  0x86CB,\n\t9992:  0x5F53,\n\t9993:  0x6321,\n\t9994:  0x515A,\n\t9995:  0x8361,\n\t9996:  0x6863,\n\t9997:  0x5200,\n\t9998:  0x6363,\n\t9999:  0x8E48,\n\t10000: 0x5012,\n\t10001: 0x5C9B,\n\t10002: 0x7977,\n\t10003: 0x5BFC,\n\t10004: 0x5230,\n\t10005: 0x7A3B,\n\t10006: 0x60BC,\n\t10007: 0x9053,\n\t10008: 0x76D7,\n\t10009: 0x5FB7,\n\t10010: 0x5F97,\n\t10011: 0x7684,\n\t10012: 0x8E6C,\n\t10013: 0x706F,\n\t10014: 0x767B,\n\t10015: 0x7B49,\n\t10016: 0x77AA,\n\t10017: 0x51F3,\n\t10018: 0x9093,\n\t10019: 0x5824,\n\t10020: 0x4F4E,\n\t10021: 0x6EF4,\n\t10022: 0x8FEA,\n\t10023: 0x654C,\n\t10024: 0x7B1B,\n\t10025: 0x72C4,\n\t10026: 0x6DA4,\n\t10027: 0x7FDF,\n\t10028: 0x5AE1,\n\t10029: 0x62B5,\n\t10030: 0x5E95,\n\t10031: 0x5730,\n\t10032: 0x8482,\n\t10033: 0x7B2C,\n\t10034: 0x5E1D,\n\t10035: 0x5F1F,\n\t10036: 0x9012,\n\t10037: 0x7F14,\n\t10038: 0x98A0,\n\t10039: 0x6382,\n\t10040: 0x6EC7,\n\t10041: 0x7898,\n\t10042: 0x70B9,\n\t10043: 0x5178,\n\t10044: 0x975B,\n\t10045: 0x57AB,\n\t10046: 0x7535,\n\t10047: 0x4F43,\n\t10048: 0x7538,\n\t10049: 0x5E97,\n\t10050: 0x60E6,\n\t10051: 0x5960,\n\t10052: 0x6DC0,\n\t10053: 0x6BBF,\n\t10054: 0x7889,\n\t10055: 0x53FC,\n\t10056: 0x96D5,\n\t10057: 0x51CB,\n\t10058: 0x5201,\n\t10059: 0x6389,\n\t10060: 0x540A,\n\t10061: 0x9493,\n\t10062: 0x8C03,\n\t10063: 0x8DCC,\n\t10064: 0x7239,\n\t10065: 0x789F,\n\t10066: 0x8776,\n\t10067: 0x8FED,\n\t10068: 0x8C0D,\n\t10069: 0x53E0,\n\t10070: 0x7993,\n\t10071: 0x7994,\n\t10072: 0x7995,\n\t10073: 0x7996,\n\t10074: 0x7997,\n\t10075: 0x7998,\n\t10076: 0x7999,\n\t10077: 0x799B,\n\t10078: 0x799C,\n\t10079: 0x799D,\n\t10080: 0x799E,\n\t10081: 0x799F,\n\t10082: 0x79A0,\n\t10083: 0x79A1,\n\t10084: 0x79A2,\n\t10085: 0x79A3,\n\t10086: 0x79A4,\n\t10087: 0x79A5,\n\t10088: 0x79A6,\n\t10089: 0x79A8,\n\t10090: 0x79A9,\n\t10091: 0x79AA,\n\t10092: 0x79AB,\n\t10093: 0x79AC,\n\t10094: 0x79AD,\n\t10095: 0x79AE,\n\t10096: 0x79AF,\n\t10097: 0x79B0,\n\t10098: 0x79B1,\n\t10099: 0x79B2,\n\t10100: 0x79B4,\n\t10101: 0x79B5,\n\t10102: 0x79B6,\n\t10103: 0x79B7,\n\t10104: 0x79B8,\n\t10105: 0x79BC,\n\t10106: 0x79BF,\n\t10107: 0x79C2,\n\t10108: 0x79C4,\n\t10109: 0x79C5,\n\t10110: 0x79C7,\n\t10111: 0x79C8,\n\t10112: 0x79CA,\n\t10113: 0x79CC,\n\t10114: 0x79CE,\n\t10115: 0x79CF,\n\t10116: 0x79D0,\n\t10117: 0x79D3,\n\t10118: 0x79D4,\n\t10119: 0x79D6,\n\t10120: 0x79D7,\n\t10121: 0x79D9,\n\t10122: 0x79DA,\n\t10123: 0x79DB,\n\t10124: 0x79DC,\n\t10125: 0x79DD,\n\t10126: 0x79DE,\n\t10127: 0x79E0,\n\t10128: 0x79E1,\n\t10129: 0x79E2,\n\t10130: 0x79E5,\n\t10131: 0x79E8,\n\t10132: 0x79EA,\n\t10133: 0x79EC,\n\t10134: 0x79EE,\n\t10135: 0x79F1,\n\t10136: 0x79F2,\n\t10137: 0x79F3,\n\t10138: 0x79F4,\n\t10139: 0x79F5,\n\t10140: 0x79F6,\n\t10141: 0x79F7,\n\t10142: 0x79F9,\n\t10143: 0x79FA,\n\t10144: 0x79FC,\n\t10145: 0x79FE,\n\t10146: 0x79FF,\n\t10147: 0x7A01,\n\t10148: 0x7A04,\n\t10149: 0x7A05,\n\t10150: 0x7A07,\n\t10151: 0x7A08,\n\t10152: 0x7A09,\n\t10153: 0x7A0A,\n\t10154: 0x7A0C,\n\t10155: 0x7A0F,\n\t10156: 0x7A10,\n\t10157: 0x7A11,\n\t10158: 0x7A12,\n\t10159: 0x7A13,\n\t10160: 0x7A15,\n\t10161: 0x7A16,\n\t10162: 0x7A18,\n\t10163: 0x7A19,\n\t10164: 0x7A1B,\n\t10165: 0x7A1C,\n\t10166: 0x4E01,\n\t10167: 0x76EF,\n\t10168: 0x53EE,\n\t10169: 0x9489,\n\t10170: 0x9876,\n\t10171: 0x9F0E,\n\t10172: 0x952D,\n\t10173: 0x5B9A,\n\t10174: 0x8BA2,\n\t10175: 0x4E22,\n\t10176: 0x4E1C,\n\t10177: 0x51AC,\n\t10178: 0x8463,\n\t10179: 0x61C2,\n\t10180: 0x52A8,\n\t10181: 0x680B,\n\t10182: 0x4F97,\n\t10183: 0x606B,\n\t10184: 0x51BB,\n\t10185: 0x6D1E,\n\t10186: 0x515C,\n\t10187: 0x6296,\n\t10188: 0x6597,\n\t10189: 0x9661,\n\t10190: 0x8C46,\n\t10191: 0x9017,\n\t10192: 0x75D8,\n\t10193: 0x90FD,\n\t10194: 0x7763,\n\t10195: 0x6BD2,\n\t10196: 0x728A,\n\t10197: 0x72EC,\n\t10198: 0x8BFB,\n\t10199: 0x5835,\n\t10200: 0x7779,\n\t10201: 0x8D4C,\n\t10202: 0x675C,\n\t10203: 0x9540,\n\t10204: 0x809A,\n\t10205: 0x5EA6,\n\t10206: 0x6E21,\n\t10207: 0x5992,\n\t10208: 0x7AEF,\n\t10209: 0x77ED,\n\t10210: 0x953B,\n\t10211: 0x6BB5,\n\t10212: 0x65AD,\n\t10213: 0x7F0E,\n\t10214: 0x5806,\n\t10215: 0x5151,\n\t10216: 0x961F,\n\t10217: 0x5BF9,\n\t10218: 0x58A9,\n\t10219: 0x5428,\n\t10220: 0x8E72,\n\t10221: 0x6566,\n\t10222: 0x987F,\n\t10223: 0x56E4,\n\t10224: 0x949D,\n\t10225: 0x76FE,\n\t10226: 0x9041,\n\t10227: 0x6387,\n\t10228: 0x54C6,\n\t10229: 0x591A,\n\t10230: 0x593A,\n\t10231: 0x579B,\n\t10232: 0x8EB2,\n\t10233: 0x6735,\n\t10234: 0x8DFA,\n\t10235: 0x8235,\n\t10236: 0x5241,\n\t10237: 0x60F0,\n\t10238: 0x5815,\n\t10239: 0x86FE,\n\t10240: 0x5CE8,\n\t10241: 0x9E45,\n\t10242: 0x4FC4,\n\t10243: 0x989D,\n\t10244: 0x8BB9,\n\t10245: 0x5A25,\n\t10246: 0x6076,\n\t10247: 0x5384,\n\t10248: 0x627C,\n\t10249: 0x904F,\n\t10250: 0x9102,\n\t10251: 0x997F,\n\t10252: 0x6069,\n\t10253: 0x800C,\n\t10254: 0x513F,\n\t10255: 0x8033,\n\t10256: 0x5C14,\n\t10257: 0x9975,\n\t10258: 0x6D31,\n\t10259: 0x4E8C,\n\t10260: 0x7A1D,\n\t10261: 0x7A1F,\n\t10262: 0x7A21,\n\t10263: 0x7A22,\n\t10264: 0x7A24,\n\t10265: 0x7A25,\n\t10266: 0x7A26,\n\t10267: 0x7A27,\n\t10268: 0x7A28,\n\t10269: 0x7A29,\n\t10270: 0x7A2A,\n\t10271: 0x7A2B,\n\t10272: 0x7A2C,\n\t10273: 0x7A2D,\n\t10274: 0x7A2E,\n\t10275: 0x7A2F,\n\t10276: 0x7A30,\n\t10277: 0x7A31,\n\t10278: 0x7A32,\n\t10279: 0x7A34,\n\t10280: 0x7A35,\n\t10281: 0x7A36,\n\t10282: 0x7A38,\n\t10283: 0x7A3A,\n\t10284: 0x7A3E,\n\t10285: 0x7A40,\n\t10286: 0x7A41,\n\t10287: 0x7A42,\n\t10288: 0x7A43,\n\t10289: 0x7A44,\n\t10290: 0x7A45,\n\t10291: 0x7A47,\n\t10292: 0x7A48,\n\t10293: 0x7A49,\n\t10294: 0x7A4A,\n\t10295: 0x7A4B,\n\t10296: 0x7A4C,\n\t10297: 0x7A4D,\n\t10298: 0x7A4E,\n\t10299: 0x7A4F,\n\t10300: 0x7A50,\n\t10301: 0x7A52,\n\t10302: 0x7A53,\n\t10303: 0x7A54,\n\t10304: 0x7A55,\n\t10305: 0x7A56,\n\t10306: 0x7A58,\n\t10307: 0x7A59,\n\t10308: 0x7A5A,\n\t10309: 0x7A5B,\n\t10310: 0x7A5C,\n\t10311: 0x7A5D,\n\t10312: 0x7A5E,\n\t10313: 0x7A5F,\n\t10314: 0x7A60,\n\t10315: 0x7A61,\n\t10316: 0x7A62,\n\t10317: 0x7A63,\n\t10318: 0x7A64,\n\t10319: 0x7A65,\n\t10320: 0x7A66,\n\t10321: 0x7A67,\n\t10322: 0x7A68,\n\t10323: 0x7A69,\n\t10324: 0x7A6A,\n\t10325: 0x7A6B,\n\t10326: 0x7A6C,\n\t10327: 0x7A6D,\n\t10328: 0x7A6E,\n\t10329: 0x7A6F,\n\t10330: 0x7A71,\n\t10331: 0x7A72,\n\t10332: 0x7A73,\n\t10333: 0x7A75,\n\t10334: 0x7A7B,\n\t10335: 0x7A7C,\n\t10336: 0x7A7D,\n\t10337: 0x7A7E,\n\t10338: 0x7A82,\n\t10339: 0x7A85,\n\t10340: 0x7A87,\n\t10341: 0x7A89,\n\t10342: 0x7A8A,\n\t10343: 0x7A8B,\n\t10344: 0x7A8C,\n\t10345: 0x7A8E,\n\t10346: 0x7A8F,\n\t10347: 0x7A90,\n\t10348: 0x7A93,\n\t10349: 0x7A94,\n\t10350: 0x7A99,\n\t10351: 0x7A9A,\n\t10352: 0x7A9B,\n\t10353: 0x7A9E,\n\t10354: 0x7AA1,\n\t10355: 0x7AA2,\n\t10356: 0x8D30,\n\t10357: 0x53D1,\n\t10358: 0x7F5A,\n\t10359: 0x7B4F,\n\t10360: 0x4F10,\n\t10361: 0x4E4F,\n\t10362: 0x9600,\n\t10363: 0x6CD5,\n\t10364: 0x73D0,\n\t10365: 0x85E9,\n\t10366: 0x5E06,\n\t10367: 0x756A,\n\t10368: 0x7FFB,\n\t10369: 0x6A0A,\n\t10370: 0x77FE,\n\t10371: 0x9492,\n\t10372: 0x7E41,\n\t10373: 0x51E1,\n\t10374: 0x70E6,\n\t10375: 0x53CD,\n\t10376: 0x8FD4,\n\t10377: 0x8303,\n\t10378: 0x8D29,\n\t10379: 0x72AF,\n\t10380: 0x996D,\n\t10381: 0x6CDB,\n\t10382: 0x574A,\n\t10383: 0x82B3,\n\t10384: 0x65B9,\n\t10385: 0x80AA,\n\t10386: 0x623F,\n\t10387: 0x9632,\n\t10388: 0x59A8,\n\t10389: 0x4EFF,\n\t10390: 0x8BBF,\n\t10391: 0x7EBA,\n\t10392: 0x653E,\n\t10393: 0x83F2,\n\t10394: 0x975E,\n\t10395: 0x5561,\n\t10396: 0x98DE,\n\t10397: 0x80A5,\n\t10398: 0x532A,\n\t10399: 0x8BFD,\n\t10400: 0x5420,\n\t10401: 0x80BA,\n\t10402: 0x5E9F,\n\t10403: 0x6CB8,\n\t10404: 0x8D39,\n\t10405: 0x82AC,\n\t10406: 0x915A,\n\t10407: 0x5429,\n\t10408: 0x6C1B,\n\t10409: 0x5206,\n\t10410: 0x7EB7,\n\t10411: 0x575F,\n\t10412: 0x711A,\n\t10413: 0x6C7E,\n\t10414: 0x7C89,\n\t10415: 0x594B,\n\t10416: 0x4EFD,\n\t10417: 0x5FFF,\n\t10418: 0x6124,\n\t10419: 0x7CAA,\n\t10420: 0x4E30,\n\t10421: 0x5C01,\n\t10422: 0x67AB,\n\t10423: 0x8702,\n\t10424: 0x5CF0,\n\t10425: 0x950B,\n\t10426: 0x98CE,\n\t10427: 0x75AF,\n\t10428: 0x70FD,\n\t10429: 0x9022,\n\t10430: 0x51AF,\n\t10431: 0x7F1D,\n\t10432: 0x8BBD,\n\t10433: 0x5949,\n\t10434: 0x51E4,\n\t10435: 0x4F5B,\n\t10436: 0x5426,\n\t10437: 0x592B,\n\t10438: 0x6577,\n\t10439: 0x80A4,\n\t10440: 0x5B75,\n\t10441: 0x6276,\n\t10442: 0x62C2,\n\t10443: 0x8F90,\n\t10444: 0x5E45,\n\t10445: 0x6C1F,\n\t10446: 0x7B26,\n\t10447: 0x4F0F,\n\t10448: 0x4FD8,\n\t10449: 0x670D,\n\t10450: 0x7AA3,\n\t10451: 0x7AA4,\n\t10452: 0x7AA7,\n\t10453: 0x7AA9,\n\t10454: 0x7AAA,\n\t10455: 0x7AAB,\n\t10456: 0x7AAE,\n\t10457: 0x7AAF,\n\t10458: 0x7AB0,\n\t10459: 0x7AB1,\n\t10460: 0x7AB2,\n\t10461: 0x7AB4,\n\t10462: 0x7AB5,\n\t10463: 0x7AB6,\n\t10464: 0x7AB7,\n\t10465: 0x7AB8,\n\t10466: 0x7AB9,\n\t10467: 0x7ABA,\n\t10468: 0x7ABB,\n\t10469: 0x7ABC,\n\t10470: 0x7ABD,\n\t10471: 0x7ABE,\n\t10472: 0x7AC0,\n\t10473: 0x7AC1,\n\t10474: 0x7AC2,\n\t10475: 0x7AC3,\n\t10476: 0x7AC4,\n\t10477: 0x7AC5,\n\t10478: 0x7AC6,\n\t10479: 0x7AC7,\n\t10480: 0x7AC8,\n\t10481: 0x7AC9,\n\t10482: 0x7ACA,\n\t10483: 0x7ACC,\n\t10484: 0x7ACD,\n\t10485: 0x7ACE,\n\t10486: 0x7ACF,\n\t10487: 0x7AD0,\n\t10488: 0x7AD1,\n\t10489: 0x7AD2,\n\t10490: 0x7AD3,\n\t10491: 0x7AD4,\n\t10492: 0x7AD5,\n\t10493: 0x7AD7,\n\t10494: 0x7AD8,\n\t10495: 0x7ADA,\n\t10496: 0x7ADB,\n\t10497: 0x7ADC,\n\t10498: 0x7ADD,\n\t10499: 0x7AE1,\n\t10500: 0x7AE2,\n\t10501: 0x7AE4,\n\t10502: 0x7AE7,\n\t10503: 0x7AE8,\n\t10504: 0x7AE9,\n\t10505: 0x7AEA,\n\t10506: 0x7AEB,\n\t10507: 0x7AEC,\n\t10508: 0x7AEE,\n\t10509: 0x7AF0,\n\t10510: 0x7AF1,\n\t10511: 0x7AF2,\n\t10512: 0x7AF3,\n\t10513: 0x7AF4,\n\t10514: 0x7AF5,\n\t10515: 0x7AF6,\n\t10516: 0x7AF7,\n\t10517: 0x7AF8,\n\t10518: 0x7AFB,\n\t10519: 0x7AFC,\n\t10520: 0x7AFE,\n\t10521: 0x7B00,\n\t10522: 0x7B01,\n\t10523: 0x7B02,\n\t10524: 0x7B05,\n\t10525: 0x7B07,\n\t10526: 0x7B09,\n\t10527: 0x7B0C,\n\t10528: 0x7B0D,\n\t10529: 0x7B0E,\n\t10530: 0x7B10,\n\t10531: 0x7B12,\n\t10532: 0x7B13,\n\t10533: 0x7B16,\n\t10534: 0x7B17,\n\t10535: 0x7B18,\n\t10536: 0x7B1A,\n\t10537: 0x7B1C,\n\t10538: 0x7B1D,\n\t10539: 0x7B1F,\n\t10540: 0x7B21,\n\t10541: 0x7B22,\n\t10542: 0x7B23,\n\t10543: 0x7B27,\n\t10544: 0x7B29,\n\t10545: 0x7B2D,\n\t10546: 0x6D6E,\n\t10547: 0x6DAA,\n\t10548: 0x798F,\n\t10549: 0x88B1,\n\t10550: 0x5F17,\n\t10551: 0x752B,\n\t10552: 0x629A,\n\t10553: 0x8F85,\n\t10554: 0x4FEF,\n\t10555: 0x91DC,\n\t10556: 0x65A7,\n\t10557: 0x812F,\n\t10558: 0x8151,\n\t10559: 0x5E9C,\n\t10560: 0x8150,\n\t10561: 0x8D74,\n\t10562: 0x526F,\n\t10563: 0x8986,\n\t10564: 0x8D4B,\n\t10565: 0x590D,\n\t10566: 0x5085,\n\t10567: 0x4ED8,\n\t10568: 0x961C,\n\t10569: 0x7236,\n\t10570: 0x8179,\n\t10571: 0x8D1F,\n\t10572: 0x5BCC,\n\t10573: 0x8BA3,\n\t10574: 0x9644,\n\t10575: 0x5987,\n\t10576: 0x7F1A,\n\t10577: 0x5490,\n\t10578: 0x5676,\n\t10579: 0x560E,\n\t10580: 0x8BE5,\n\t10581: 0x6539,\n\t10582: 0x6982,\n\t10583: 0x9499,\n\t10584: 0x76D6,\n\t10585: 0x6E89,\n\t10586: 0x5E72,\n\t10587: 0x7518,\n\t10588: 0x6746,\n\t10589: 0x67D1,\n\t10590: 0x7AFF,\n\t10591: 0x809D,\n\t10592: 0x8D76,\n\t10593: 0x611F,\n\t10594: 0x79C6,\n\t10595: 0x6562,\n\t10596: 0x8D63,\n\t10597: 0x5188,\n\t10598: 0x521A,\n\t10599: 0x94A2,\n\t10600: 0x7F38,\n\t10601: 0x809B,\n\t10602: 0x7EB2,\n\t10603: 0x5C97,\n\t10604: 0x6E2F,\n\t10605: 0x6760,\n\t10606: 0x7BD9,\n\t10607: 0x768B,\n\t10608: 0x9AD8,\n\t10609: 0x818F,\n\t10610: 0x7F94,\n\t10611: 0x7CD5,\n\t10612: 0x641E,\n\t10613: 0x9550,\n\t10614: 0x7A3F,\n\t10615: 0x544A,\n\t10616: 0x54E5,\n\t10617: 0x6B4C,\n\t10618: 0x6401,\n\t10619: 0x6208,\n\t10620: 0x9E3D,\n\t10621: 0x80F3,\n\t10622: 0x7599,\n\t10623: 0x5272,\n\t10624: 0x9769,\n\t10625: 0x845B,\n\t10626: 0x683C,\n\t10627: 0x86E4,\n\t10628: 0x9601,\n\t10629: 0x9694,\n\t10630: 0x94EC,\n\t10631: 0x4E2A,\n\t10632: 0x5404,\n\t10633: 0x7ED9,\n\t10634: 0x6839,\n\t10635: 0x8DDF,\n\t10636: 0x8015,\n\t10637: 0x66F4,\n\t10638: 0x5E9A,\n\t10639: 0x7FB9,\n\t10640: 0x7B2F,\n\t10641: 0x7B30,\n\t10642: 0x7B32,\n\t10643: 0x7B34,\n\t10644: 0x7B35,\n\t10645: 0x7B36,\n\t10646: 0x7B37,\n\t10647: 0x7B39,\n\t10648: 0x7B3B,\n\t10649: 0x7B3D,\n\t10650: 0x7B3F,\n\t10651: 0x7B40,\n\t10652: 0x7B41,\n\t10653: 0x7B42,\n\t10654: 0x7B43,\n\t10655: 0x7B44,\n\t10656: 0x7B46,\n\t10657: 0x7B48,\n\t10658: 0x7B4A,\n\t10659: 0x7B4D,\n\t10660: 0x7B4E,\n\t10661: 0x7B53,\n\t10662: 0x7B55,\n\t10663: 0x7B57,\n\t10664: 0x7B59,\n\t10665: 0x7B5C,\n\t10666: 0x7B5E,\n\t10667: 0x7B5F,\n\t10668: 0x7B61,\n\t10669: 0x7B63,\n\t10670: 0x7B64,\n\t10671: 0x7B65,\n\t10672: 0x7B66,\n\t10673: 0x7B67,\n\t10674: 0x7B68,\n\t10675: 0x7B69,\n\t10676: 0x7B6A,\n\t10677: 0x7B6B,\n\t10678: 0x7B6C,\n\t10679: 0x7B6D,\n\t10680: 0x7B6F,\n\t10681: 0x7B70,\n\t10682: 0x7B73,\n\t10683: 0x7B74,\n\t10684: 0x7B76,\n\t10685: 0x7B78,\n\t10686: 0x7B7A,\n\t10687: 0x7B7C,\n\t10688: 0x7B7D,\n\t10689: 0x7B7F,\n\t10690: 0x7B81,\n\t10691: 0x7B82,\n\t10692: 0x7B83,\n\t10693: 0x7B84,\n\t10694: 0x7B86,\n\t10695: 0x7B87,\n\t10696: 0x7B88,\n\t10697: 0x7B89,\n\t10698: 0x7B8A,\n\t10699: 0x7B8B,\n\t10700: 0x7B8C,\n\t10701: 0x7B8E,\n\t10702: 0x7B8F,\n\t10703: 0x7B91,\n\t10704: 0x7B92,\n\t10705: 0x7B93,\n\t10706: 0x7B96,\n\t10707: 0x7B98,\n\t10708: 0x7B99,\n\t10709: 0x7B9A,\n\t10710: 0x7B9B,\n\t10711: 0x7B9E,\n\t10712: 0x7B9F,\n\t10713: 0x7BA0,\n\t10714: 0x7BA3,\n\t10715: 0x7BA4,\n\t10716: 0x7BA5,\n\t10717: 0x7BAE,\n\t10718: 0x7BAF,\n\t10719: 0x7BB0,\n\t10720: 0x7BB2,\n\t10721: 0x7BB3,\n\t10722: 0x7BB5,\n\t10723: 0x7BB6,\n\t10724: 0x7BB7,\n\t10725: 0x7BB9,\n\t10726: 0x7BBA,\n\t10727: 0x7BBB,\n\t10728: 0x7BBC,\n\t10729: 0x7BBD,\n\t10730: 0x7BBE,\n\t10731: 0x7BBF,\n\t10732: 0x7BC0,\n\t10733: 0x7BC2,\n\t10734: 0x7BC3,\n\t10735: 0x7BC4,\n\t10736: 0x57C2,\n\t10737: 0x803F,\n\t10738: 0x6897,\n\t10739: 0x5DE5,\n\t10740: 0x653B,\n\t10741: 0x529F,\n\t10742: 0x606D,\n\t10743: 0x9F9A,\n\t10744: 0x4F9B,\n\t10745: 0x8EAC,\n\t10746: 0x516C,\n\t10747: 0x5BAB,\n\t10748: 0x5F13,\n\t10749: 0x5DE9,\n\t10750: 0x6C5E,\n\t10751: 0x62F1,\n\t10752: 0x8D21,\n\t10753: 0x5171,\n\t10754: 0x94A9,\n\t10755: 0x52FE,\n\t10756: 0x6C9F,\n\t10757: 0x82DF,\n\t10758: 0x72D7,\n\t10759: 0x57A2,\n\t10760: 0x6784,\n\t10761: 0x8D2D,\n\t10762: 0x591F,\n\t10763: 0x8F9C,\n\t10764: 0x83C7,\n\t10765: 0x5495,\n\t10766: 0x7B8D,\n\t10767: 0x4F30,\n\t10768: 0x6CBD,\n\t10769: 0x5B64,\n\t10770: 0x59D1,\n\t10771: 0x9F13,\n\t10772: 0x53E4,\n\t10773: 0x86CA,\n\t10774: 0x9AA8,\n\t10775: 0x8C37,\n\t10776: 0x80A1,\n\t10777: 0x6545,\n\t10778: 0x987E,\n\t10779: 0x56FA,\n\t10780: 0x96C7,\n\t10781: 0x522E,\n\t10782: 0x74DC,\n\t10783: 0x5250,\n\t10784: 0x5BE1,\n\t10785: 0x6302,\n\t10786: 0x8902,\n\t10787: 0x4E56,\n\t10788: 0x62D0,\n\t10789: 0x602A,\n\t10790: 0x68FA,\n\t10791: 0x5173,\n\t10792: 0x5B98,\n\t10793: 0x51A0,\n\t10794: 0x89C2,\n\t10795: 0x7BA1,\n\t10796: 0x9986,\n\t10797: 0x7F50,\n\t10798: 0x60EF,\n\t10799: 0x704C,\n\t10800: 0x8D2F,\n\t10801: 0x5149,\n\t10802: 0x5E7F,\n\t10803: 0x901B,\n\t10804: 0x7470,\n\t10805: 0x89C4,\n\t10806: 0x572D,\n\t10807: 0x7845,\n\t10808: 0x5F52,\n\t10809: 0x9F9F,\n\t10810: 0x95FA,\n\t10811: 0x8F68,\n\t10812: 0x9B3C,\n\t10813: 0x8BE1,\n\t10814: 0x7678,\n\t10815: 0x6842,\n\t10816: 0x67DC,\n\t10817: 0x8DEA,\n\t10818: 0x8D35,\n\t10819: 0x523D,\n\t10820: 0x8F8A,\n\t10821: 0x6EDA,\n\t10822: 0x68CD,\n\t10823: 0x9505,\n\t10824: 0x90ED,\n\t10825: 0x56FD,\n\t10826: 0x679C,\n\t10827: 0x88F9,\n\t10828: 0x8FC7,\n\t10829: 0x54C8,\n\t10830: 0x7BC5,\n\t10831: 0x7BC8,\n\t10832: 0x7BC9,\n\t10833: 0x7BCA,\n\t10834: 0x7BCB,\n\t10835: 0x7BCD,\n\t10836: 0x7BCE,\n\t10837: 0x7BCF,\n\t10838: 0x7BD0,\n\t10839: 0x7BD2,\n\t10840: 0x7BD4,\n\t10841: 0x7BD5,\n\t10842: 0x7BD6,\n\t10843: 0x7BD7,\n\t10844: 0x7BD8,\n\t10845: 0x7BDB,\n\t10846: 0x7BDC,\n\t10847: 0x7BDE,\n\t10848: 0x7BDF,\n\t10849: 0x7BE0,\n\t10850: 0x7BE2,\n\t10851: 0x7BE3,\n\t10852: 0x7BE4,\n\t10853: 0x7BE7,\n\t10854: 0x7BE8,\n\t10855: 0x7BE9,\n\t10856: 0x7BEB,\n\t10857: 0x7BEC,\n\t10858: 0x7BED,\n\t10859: 0x7BEF,\n\t10860: 0x7BF0,\n\t10861: 0x7BF2,\n\t10862: 0x7BF3,\n\t10863: 0x7BF4,\n\t10864: 0x7BF5,\n\t10865: 0x7BF6,\n\t10866: 0x7BF8,\n\t10867: 0x7BF9,\n\t10868: 0x7BFA,\n\t10869: 0x7BFB,\n\t10870: 0x7BFD,\n\t10871: 0x7BFF,\n\t10872: 0x7C00,\n\t10873: 0x7C01,\n\t10874: 0x7C02,\n\t10875: 0x7C03,\n\t10876: 0x7C04,\n\t10877: 0x7C05,\n\t10878: 0x7C06,\n\t10879: 0x7C08,\n\t10880: 0x7C09,\n\t10881: 0x7C0A,\n\t10882: 0x7C0D,\n\t10883: 0x7C0E,\n\t10884: 0x7C10,\n\t10885: 0x7C11,\n\t10886: 0x7C12,\n\t10887: 0x7C13,\n\t10888: 0x7C14,\n\t10889: 0x7C15,\n\t10890: 0x7C17,\n\t10891: 0x7C18,\n\t10892: 0x7C19,\n\t10893: 0x7C1A,\n\t10894: 0x7C1B,\n\t10895: 0x7C1C,\n\t10896: 0x7C1D,\n\t10897: 0x7C1E,\n\t10898: 0x7C20,\n\t10899: 0x7C21,\n\t10900: 0x7C22,\n\t10901: 0x7C23,\n\t10902: 0x7C24,\n\t10903: 0x7C25,\n\t10904: 0x7C28,\n\t10905: 0x7C29,\n\t10906: 0x7C2B,\n\t10907: 0x7C2C,\n\t10908: 0x7C2D,\n\t10909: 0x7C2E,\n\t10910: 0x7C2F,\n\t10911: 0x7C30,\n\t10912: 0x7C31,\n\t10913: 0x7C32,\n\t10914: 0x7C33,\n\t10915: 0x7C34,\n\t10916: 0x7C35,\n\t10917: 0x7C36,\n\t10918: 0x7C37,\n\t10919: 0x7C39,\n\t10920: 0x7C3A,\n\t10921: 0x7C3B,\n\t10922: 0x7C3C,\n\t10923: 0x7C3D,\n\t10924: 0x7C3E,\n\t10925: 0x7C42,\n\t10926: 0x9AB8,\n\t10927: 0x5B69,\n\t10928: 0x6D77,\n\t10929: 0x6C26,\n\t10930: 0x4EA5,\n\t10931: 0x5BB3,\n\t10932: 0x9A87,\n\t10933: 0x9163,\n\t10934: 0x61A8,\n\t10935: 0x90AF,\n\t10936: 0x97E9,\n\t10937: 0x542B,\n\t10938: 0x6DB5,\n\t10939: 0x5BD2,\n\t10940: 0x51FD,\n\t10941: 0x558A,\n\t10942: 0x7F55,\n\t10943: 0x7FF0,\n\t10944: 0x64BC,\n\t10945: 0x634D,\n\t10946: 0x65F1,\n\t10947: 0x61BE,\n\t10948: 0x608D,\n\t10949: 0x710A,\n\t10950: 0x6C57,\n\t10951: 0x6C49,\n\t10952: 0x592F,\n\t10953: 0x676D,\n\t10954: 0x822A,\n\t10955: 0x58D5,\n\t10956: 0x568E,\n\t10957: 0x8C6A,\n\t10958: 0x6BEB,\n\t10959: 0x90DD,\n\t10960: 0x597D,\n\t10961: 0x8017,\n\t10962: 0x53F7,\n\t10963: 0x6D69,\n\t10964: 0x5475,\n\t10965: 0x559D,\n\t10966: 0x8377,\n\t10967: 0x83CF,\n\t10968: 0x6838,\n\t10969: 0x79BE,\n\t10970: 0x548C,\n\t10971: 0x4F55,\n\t10972: 0x5408,\n\t10973: 0x76D2,\n\t10974: 0x8C89,\n\t10975: 0x9602,\n\t10976: 0x6CB3,\n\t10977: 0x6DB8,\n\t10978: 0x8D6B,\n\t10979: 0x8910,\n\t10980: 0x9E64,\n\t10981: 0x8D3A,\n\t10982: 0x563F,\n\t10983: 0x9ED1,\n\t10984: 0x75D5,\n\t10985: 0x5F88,\n\t10986: 0x72E0,\n\t10987: 0x6068,\n\t10988: 0x54FC,\n\t10989: 0x4EA8,\n\t10990: 0x6A2A,\n\t10991: 0x8861,\n\t10992: 0x6052,\n\t10993: 0x8F70,\n\t10994: 0x54C4,\n\t10995: 0x70D8,\n\t10996: 0x8679,\n\t10997: 0x9E3F,\n\t10998: 0x6D2A,\n\t10999: 0x5B8F,\n\t11000: 0x5F18,\n\t11001: 0x7EA2,\n\t11002: 0x5589,\n\t11003: 0x4FAF,\n\t11004: 0x7334,\n\t11005: 0x543C,\n\t11006: 0x539A,\n\t11007: 0x5019,\n\t11008: 0x540E,\n\t11009: 0x547C,\n\t11010: 0x4E4E,\n\t11011: 0x5FFD,\n\t11012: 0x745A,\n\t11013: 0x58F6,\n\t11014: 0x846B,\n\t11015: 0x80E1,\n\t11016: 0x8774,\n\t11017: 0x72D0,\n\t11018: 0x7CCA,\n\t11019: 0x6E56,\n\t11020: 0x7C43,\n\t11021: 0x7C44,\n\t11022: 0x7C45,\n\t11023: 0x7C46,\n\t11024: 0x7C47,\n\t11025: 0x7C48,\n\t11026: 0x7C49,\n\t11027: 0x7C4A,\n\t11028: 0x7C4B,\n\t11029: 0x7C4C,\n\t11030: 0x7C4E,\n\t11031: 0x7C4F,\n\t11032: 0x7C50,\n\t11033: 0x7C51,\n\t11034: 0x7C52,\n\t11035: 0x7C53,\n\t11036: 0x7C54,\n\t11037: 0x7C55,\n\t11038: 0x7C56,\n\t11039: 0x7C57,\n\t11040: 0x7C58,\n\t11041: 0x7C59,\n\t11042: 0x7C5A,\n\t11043: 0x7C5B,\n\t11044: 0x7C5C,\n\t11045: 0x7C5D,\n\t11046: 0x7C5E,\n\t11047: 0x7C5F,\n\t11048: 0x7C60,\n\t11049: 0x7C61,\n\t11050: 0x7C62,\n\t11051: 0x7C63,\n\t11052: 0x7C64,\n\t11053: 0x7C65,\n\t11054: 0x7C66,\n\t11055: 0x7C67,\n\t11056: 0x7C68,\n\t11057: 0x7C69,\n\t11058: 0x7C6A,\n\t11059: 0x7C6B,\n\t11060: 0x7C6C,\n\t11061: 0x7C6D,\n\t11062: 0x7C6E,\n\t11063: 0x7C6F,\n\t11064: 0x7C70,\n\t11065: 0x7C71,\n\t11066: 0x7C72,\n\t11067: 0x7C75,\n\t11068: 0x7C76,\n\t11069: 0x7C77,\n\t11070: 0x7C78,\n\t11071: 0x7C79,\n\t11072: 0x7C7A,\n\t11073: 0x7C7E,\n\t11074: 0x7C7F,\n\t11075: 0x7C80,\n\t11076: 0x7C81,\n\t11077: 0x7C82,\n\t11078: 0x7C83,\n\t11079: 0x7C84,\n\t11080: 0x7C85,\n\t11081: 0x7C86,\n\t11082: 0x7C87,\n\t11083: 0x7C88,\n\t11084: 0x7C8A,\n\t11085: 0x7C8B,\n\t11086: 0x7C8C,\n\t11087: 0x7C8D,\n\t11088: 0x7C8E,\n\t11089: 0x7C8F,\n\t11090: 0x7C90,\n\t11091: 0x7C93,\n\t11092: 0x7C94,\n\t11093: 0x7C96,\n\t11094: 0x7C99,\n\t11095: 0x7C9A,\n\t11096: 0x7C9B,\n\t11097: 0x7CA0,\n\t11098: 0x7CA1,\n\t11099: 0x7CA3,\n\t11100: 0x7CA6,\n\t11101: 0x7CA7,\n\t11102: 0x7CA8,\n\t11103: 0x7CA9,\n\t11104: 0x7CAB,\n\t11105: 0x7CAC,\n\t11106: 0x7CAD,\n\t11107: 0x7CAF,\n\t11108: 0x7CB0,\n\t11109: 0x7CB4,\n\t11110: 0x7CB5,\n\t11111: 0x7CB6,\n\t11112: 0x7CB7,\n\t11113: 0x7CB8,\n\t11114: 0x7CBA,\n\t11115: 0x7CBB,\n\t11116: 0x5F27,\n\t11117: 0x864E,\n\t11118: 0x552C,\n\t11119: 0x62A4,\n\t11120: 0x4E92,\n\t11121: 0x6CAA,\n\t11122: 0x6237,\n\t11123: 0x82B1,\n\t11124: 0x54D7,\n\t11125: 0x534E,\n\t11126: 0x733E,\n\t11127: 0x6ED1,\n\t11128: 0x753B,\n\t11129: 0x5212,\n\t11130: 0x5316,\n\t11131: 0x8BDD,\n\t11132: 0x69D0,\n\t11133: 0x5F8A,\n\t11134: 0x6000,\n\t11135: 0x6DEE,\n\t11136: 0x574F,\n\t11137: 0x6B22,\n\t11138: 0x73AF,\n\t11139: 0x6853,\n\t11140: 0x8FD8,\n\t11141: 0x7F13,\n\t11142: 0x6362,\n\t11143: 0x60A3,\n\t11144: 0x5524,\n\t11145: 0x75EA,\n\t11146: 0x8C62,\n\t11147: 0x7115,\n\t11148: 0x6DA3,\n\t11149: 0x5BA6,\n\t11150: 0x5E7B,\n\t11151: 0x8352,\n\t11152: 0x614C,\n\t11153: 0x9EC4,\n\t11154: 0x78FA,\n\t11155: 0x8757,\n\t11156: 0x7C27,\n\t11157: 0x7687,\n\t11158: 0x51F0,\n\t11159: 0x60F6,\n\t11160: 0x714C,\n\t11161: 0x6643,\n\t11162: 0x5E4C,\n\t11163: 0x604D,\n\t11164: 0x8C0E,\n\t11165: 0x7070,\n\t11166: 0x6325,\n\t11167: 0x8F89,\n\t11168: 0x5FBD,\n\t11169: 0x6062,\n\t11170: 0x86D4,\n\t11171: 0x56DE,\n\t11172: 0x6BC1,\n\t11173: 0x6094,\n\t11174: 0x6167,\n\t11175: 0x5349,\n\t11176: 0x60E0,\n\t11177: 0x6666,\n\t11178: 0x8D3F,\n\t11179: 0x79FD,\n\t11180: 0x4F1A,\n\t11181: 0x70E9,\n\t11182: 0x6C47,\n\t11183: 0x8BB3,\n\t11184: 0x8BF2,\n\t11185: 0x7ED8,\n\t11186: 0x8364,\n\t11187: 0x660F,\n\t11188: 0x5A5A,\n\t11189: 0x9B42,\n\t11190: 0x6D51,\n\t11191: 0x6DF7,\n\t11192: 0x8C41,\n\t11193: 0x6D3B,\n\t11194: 0x4F19,\n\t11195: 0x706B,\n\t11196: 0x83B7,\n\t11197: 0x6216,\n\t11198: 0x60D1,\n\t11199: 0x970D,\n\t11200: 0x8D27,\n\t11201: 0x7978,\n\t11202: 0x51FB,\n\t11203: 0x573E,\n\t11204: 0x57FA,\n\t11205: 0x673A,\n\t11206: 0x7578,\n\t11207: 0x7A3D,\n\t11208: 0x79EF,\n\t11209: 0x7B95,\n\t11210: 0x7CBF,\n\t11211: 0x7CC0,\n\t11212: 0x7CC2,\n\t11213: 0x7CC3,\n\t11214: 0x7CC4,\n\t11215: 0x7CC6,\n\t11216: 0x7CC9,\n\t11217: 0x7CCB,\n\t11218: 0x7CCE,\n\t11219: 0x7CCF,\n\t11220: 0x7CD0,\n\t11221: 0x7CD1,\n\t11222: 0x7CD2,\n\t11223: 0x7CD3,\n\t11224: 0x7CD4,\n\t11225: 0x7CD8,\n\t11226: 0x7CDA,\n\t11227: 0x7CDB,\n\t11228: 0x7CDD,\n\t11229: 0x7CDE,\n\t11230: 0x7CE1,\n\t11231: 0x7CE2,\n\t11232: 0x7CE3,\n\t11233: 0x7CE4,\n\t11234: 0x7CE5,\n\t11235: 0x7CE6,\n\t11236: 0x7CE7,\n\t11237: 0x7CE9,\n\t11238: 0x7CEA,\n\t11239: 0x7CEB,\n\t11240: 0x7CEC,\n\t11241: 0x7CED,\n\t11242: 0x7CEE,\n\t11243: 0x7CF0,\n\t11244: 0x7CF1,\n\t11245: 0x7CF2,\n\t11246: 0x7CF3,\n\t11247: 0x7CF4,\n\t11248: 0x7CF5,\n\t11249: 0x7CF6,\n\t11250: 0x7CF7,\n\t11251: 0x7CF9,\n\t11252: 0x7CFA,\n\t11253: 0x7CFC,\n\t11254: 0x7CFD,\n\t11255: 0x7CFE,\n\t11256: 0x7CFF,\n\t11257: 0x7D00,\n\t11258: 0x7D01,\n\t11259: 0x7D02,\n\t11260: 0x7D03,\n\t11261: 0x7D04,\n\t11262: 0x7D05,\n\t11263: 0x7D06,\n\t11264: 0x7D07,\n\t11265: 0x7D08,\n\t11266: 0x7D09,\n\t11267: 0x7D0B,\n\t11268: 0x7D0C,\n\t11269: 0x7D0D,\n\t11270: 0x7D0E,\n\t11271: 0x7D0F,\n\t11272: 0x7D10,\n\t11273: 0x7D11,\n\t11274: 0x7D12,\n\t11275: 0x7D13,\n\t11276: 0x7D14,\n\t11277: 0x7D15,\n\t11278: 0x7D16,\n\t11279: 0x7D17,\n\t11280: 0x7D18,\n\t11281: 0x7D19,\n\t11282: 0x7D1A,\n\t11283: 0x7D1B,\n\t11284: 0x7D1C,\n\t11285: 0x7D1D,\n\t11286: 0x7D1E,\n\t11287: 0x7D1F,\n\t11288: 0x7D21,\n\t11289: 0x7D23,\n\t11290: 0x7D24,\n\t11291: 0x7D25,\n\t11292: 0x7D26,\n\t11293: 0x7D28,\n\t11294: 0x7D29,\n\t11295: 0x7D2A,\n\t11296: 0x7D2C,\n\t11297: 0x7D2D,\n\t11298: 0x7D2E,\n\t11299: 0x7D30,\n\t11300: 0x7D31,\n\t11301: 0x7D32,\n\t11302: 0x7D33,\n\t11303: 0x7D34,\n\t11304: 0x7D35,\n\t11305: 0x7D36,\n\t11306: 0x808C,\n\t11307: 0x9965,\n\t11308: 0x8FF9,\n\t11309: 0x6FC0,\n\t11310: 0x8BA5,\n\t11311: 0x9E21,\n\t11312: 0x59EC,\n\t11313: 0x7EE9,\n\t11314: 0x7F09,\n\t11315: 0x5409,\n\t11316: 0x6781,\n\t11317: 0x68D8,\n\t11318: 0x8F91,\n\t11319: 0x7C4D,\n\t11320: 0x96C6,\n\t11321: 0x53CA,\n\t11322: 0x6025,\n\t11323: 0x75BE,\n\t11324: 0x6C72,\n\t11325: 0x5373,\n\t11326: 0x5AC9,\n\t11327: 0x7EA7,\n\t11328: 0x6324,\n\t11329: 0x51E0,\n\t11330: 0x810A,\n\t11331: 0x5DF1,\n\t11332: 0x84DF,\n\t11333: 0x6280,\n\t11334: 0x5180,\n\t11335: 0x5B63,\n\t11336: 0x4F0E,\n\t11337: 0x796D,\n\t11338: 0x5242,\n\t11339: 0x60B8,\n\t11340: 0x6D4E,\n\t11341: 0x5BC4,\n\t11342: 0x5BC2,\n\t11343: 0x8BA1,\n\t11344: 0x8BB0,\n\t11345: 0x65E2,\n\t11346: 0x5FCC,\n\t11347: 0x9645,\n\t11348: 0x5993,\n\t11349: 0x7EE7,\n\t11350: 0x7EAA,\n\t11351: 0x5609,\n\t11352: 0x67B7,\n\t11353: 0x5939,\n\t11354: 0x4F73,\n\t11355: 0x5BB6,\n\t11356: 0x52A0,\n\t11357: 0x835A,\n\t11358: 0x988A,\n\t11359: 0x8D3E,\n\t11360: 0x7532,\n\t11361: 0x94BE,\n\t11362: 0x5047,\n\t11363: 0x7A3C,\n\t11364: 0x4EF7,\n\t11365: 0x67B6,\n\t11366: 0x9A7E,\n\t11367: 0x5AC1,\n\t11368: 0x6B7C,\n\t11369: 0x76D1,\n\t11370: 0x575A,\n\t11371: 0x5C16,\n\t11372: 0x7B3A,\n\t11373: 0x95F4,\n\t11374: 0x714E,\n\t11375: 0x517C,\n\t11376: 0x80A9,\n\t11377: 0x8270,\n\t11378: 0x5978,\n\t11379: 0x7F04,\n\t11380: 0x8327,\n\t11381: 0x68C0,\n\t11382: 0x67EC,\n\t11383: 0x78B1,\n\t11384: 0x7877,\n\t11385: 0x62E3,\n\t11386: 0x6361,\n\t11387: 0x7B80,\n\t11388: 0x4FED,\n\t11389: 0x526A,\n\t11390: 0x51CF,\n\t11391: 0x8350,\n\t11392: 0x69DB,\n\t11393: 0x9274,\n\t11394: 0x8DF5,\n\t11395: 0x8D31,\n\t11396: 0x89C1,\n\t11397: 0x952E,\n\t11398: 0x7BAD,\n\t11399: 0x4EF6,\n\t11400: 0x7D37,\n\t11401: 0x7D38,\n\t11402: 0x7D39,\n\t11403: 0x7D3A,\n\t11404: 0x7D3B,\n\t11405: 0x7D3C,\n\t11406: 0x7D3D,\n\t11407: 0x7D3E,\n\t11408: 0x7D3F,\n\t11409: 0x7D40,\n\t11410: 0x7D41,\n\t11411: 0x7D42,\n\t11412: 0x7D43,\n\t11413: 0x7D44,\n\t11414: 0x7D45,\n\t11415: 0x7D46,\n\t11416: 0x7D47,\n\t11417: 0x7D48,\n\t11418: 0x7D49,\n\t11419: 0x7D4A,\n\t11420: 0x7D4B,\n\t11421: 0x7D4C,\n\t11422: 0x7D4D,\n\t11423: 0x7D4E,\n\t11424: 0x7D4F,\n\t11425: 0x7D50,\n\t11426: 0x7D51,\n\t11427: 0x7D52,\n\t11428: 0x7D53,\n\t11429: 0x7D54,\n\t11430: 0x7D55,\n\t11431: 0x7D56,\n\t11432: 0x7D57,\n\t11433: 0x7D58,\n\t11434: 0x7D59,\n\t11435: 0x7D5A,\n\t11436: 0x7D5B,\n\t11437: 0x7D5C,\n\t11438: 0x7D5D,\n\t11439: 0x7D5E,\n\t11440: 0x7D5F,\n\t11441: 0x7D60,\n\t11442: 0x7D61,\n\t11443: 0x7D62,\n\t11444: 0x7D63,\n\t11445: 0x7D64,\n\t11446: 0x7D65,\n\t11447: 0x7D66,\n\t11448: 0x7D67,\n\t11449: 0x7D68,\n\t11450: 0x7D69,\n\t11451: 0x7D6A,\n\t11452: 0x7D6B,\n\t11453: 0x7D6C,\n\t11454: 0x7D6D,\n\t11455: 0x7D6F,\n\t11456: 0x7D70,\n\t11457: 0x7D71,\n\t11458: 0x7D72,\n\t11459: 0x7D73,\n\t11460: 0x7D74,\n\t11461: 0x7D75,\n\t11462: 0x7D76,\n\t11463: 0x7D78,\n\t11464: 0x7D79,\n\t11465: 0x7D7A,\n\t11466: 0x7D7B,\n\t11467: 0x7D7C,\n\t11468: 0x7D7D,\n\t11469: 0x7D7E,\n\t11470: 0x7D7F,\n\t11471: 0x7D80,\n\t11472: 0x7D81,\n\t11473: 0x7D82,\n\t11474: 0x7D83,\n\t11475: 0x7D84,\n\t11476: 0x7D85,\n\t11477: 0x7D86,\n\t11478: 0x7D87,\n\t11479: 0x7D88,\n\t11480: 0x7D89,\n\t11481: 0x7D8A,\n\t11482: 0x7D8B,\n\t11483: 0x7D8C,\n\t11484: 0x7D8D,\n\t11485: 0x7D8E,\n\t11486: 0x7D8F,\n\t11487: 0x7D90,\n\t11488: 0x7D91,\n\t11489: 0x7D92,\n\t11490: 0x7D93,\n\t11491: 0x7D94,\n\t11492: 0x7D95,\n\t11493: 0x7D96,\n\t11494: 0x7D97,\n\t11495: 0x7D98,\n\t11496: 0x5065,\n\t11497: 0x8230,\n\t11498: 0x5251,\n\t11499: 0x996F,\n\t11500: 0x6E10,\n\t11501: 0x6E85,\n\t11502: 0x6DA7,\n\t11503: 0x5EFA,\n\t11504: 0x50F5,\n\t11505: 0x59DC,\n\t11506: 0x5C06,\n\t11507: 0x6D46,\n\t11508: 0x6C5F,\n\t11509: 0x7586,\n\t11510: 0x848B,\n\t11511: 0x6868,\n\t11512: 0x5956,\n\t11513: 0x8BB2,\n\t11514: 0x5320,\n\t11515: 0x9171,\n\t11516: 0x964D,\n\t11517: 0x8549,\n\t11518: 0x6912,\n\t11519: 0x7901,\n\t11520: 0x7126,\n\t11521: 0x80F6,\n\t11522: 0x4EA4,\n\t11523: 0x90CA,\n\t11524: 0x6D47,\n\t11525: 0x9A84,\n\t11526: 0x5A07,\n\t11527: 0x56BC,\n\t11528: 0x6405,\n\t11529: 0x94F0,\n\t11530: 0x77EB,\n\t11531: 0x4FA5,\n\t11532: 0x811A,\n\t11533: 0x72E1,\n\t11534: 0x89D2,\n\t11535: 0x997A,\n\t11536: 0x7F34,\n\t11537: 0x7EDE,\n\t11538: 0x527F,\n\t11539: 0x6559,\n\t11540: 0x9175,\n\t11541: 0x8F7F,\n\t11542: 0x8F83,\n\t11543: 0x53EB,\n\t11544: 0x7A96,\n\t11545: 0x63ED,\n\t11546: 0x63A5,\n\t11547: 0x7686,\n\t11548: 0x79F8,\n\t11549: 0x8857,\n\t11550: 0x9636,\n\t11551: 0x622A,\n\t11552: 0x52AB,\n\t11553: 0x8282,\n\t11554: 0x6854,\n\t11555: 0x6770,\n\t11556: 0x6377,\n\t11557: 0x776B,\n\t11558: 0x7AED,\n\t11559: 0x6D01,\n\t11560: 0x7ED3,\n\t11561: 0x89E3,\n\t11562: 0x59D0,\n\t11563: 0x6212,\n\t11564: 0x85C9,\n\t11565: 0x82A5,\n\t11566: 0x754C,\n\t11567: 0x501F,\n\t11568: 0x4ECB,\n\t11569: 0x75A5,\n\t11570: 0x8BEB,\n\t11571: 0x5C4A,\n\t11572: 0x5DFE,\n\t11573: 0x7B4B,\n\t11574: 0x65A4,\n\t11575: 0x91D1,\n\t11576: 0x4ECA,\n\t11577: 0x6D25,\n\t11578: 0x895F,\n\t11579: 0x7D27,\n\t11580: 0x9526,\n\t11581: 0x4EC5,\n\t11582: 0x8C28,\n\t11583: 0x8FDB,\n\t11584: 0x9773,\n\t11585: 0x664B,\n\t11586: 0x7981,\n\t11587: 0x8FD1,\n\t11588: 0x70EC,\n\t11589: 0x6D78,\n\t11590: 0x7D99,\n\t11591: 0x7D9A,\n\t11592: 0x7D9B,\n\t11593: 0x7D9C,\n\t11594: 0x7D9D,\n\t11595: 0x7D9E,\n\t11596: 0x7D9F,\n\t11597: 0x7DA0,\n\t11598: 0x7DA1,\n\t11599: 0x7DA2,\n\t11600: 0x7DA3,\n\t11601: 0x7DA4,\n\t11602: 0x7DA5,\n\t11603: 0x7DA7,\n\t11604: 0x7DA8,\n\t11605: 0x7DA9,\n\t11606: 0x7DAA,\n\t11607: 0x7DAB,\n\t11608: 0x7DAC,\n\t11609: 0x7DAD,\n\t11610: 0x7DAF,\n\t11611: 0x7DB0,\n\t11612: 0x7DB1,\n\t11613: 0x7DB2,\n\t11614: 0x7DB3,\n\t11615: 0x7DB4,\n\t11616: 0x7DB5,\n\t11617: 0x7DB6,\n\t11618: 0x7DB7,\n\t11619: 0x7DB8,\n\t11620: 0x7DB9,\n\t11621: 0x7DBA,\n\t11622: 0x7DBB,\n\t11623: 0x7DBC,\n\t11624: 0x7DBD,\n\t11625: 0x7DBE,\n\t11626: 0x7DBF,\n\t11627: 0x7DC0,\n\t11628: 0x7DC1,\n\t11629: 0x7DC2,\n\t11630: 0x7DC3,\n\t11631: 0x7DC4,\n\t11632: 0x7DC5,\n\t11633: 0x7DC6,\n\t11634: 0x7DC7,\n\t11635: 0x7DC8,\n\t11636: 0x7DC9,\n\t11637: 0x7DCA,\n\t11638: 0x7DCB,\n\t11639: 0x7DCC,\n\t11640: 0x7DCD,\n\t11641: 0x7DCE,\n\t11642: 0x7DCF,\n\t11643: 0x7DD0,\n\t11644: 0x7DD1,\n\t11645: 0x7DD2,\n\t11646: 0x7DD3,\n\t11647: 0x7DD4,\n\t11648: 0x7DD5,\n\t11649: 0x7DD6,\n\t11650: 0x7DD7,\n\t11651: 0x7DD8,\n\t11652: 0x7DD9,\n\t11653: 0x7DDA,\n\t11654: 0x7DDB,\n\t11655: 0x7DDC,\n\t11656: 0x7DDD,\n\t11657: 0x7DDE,\n\t11658: 0x7DDF,\n\t11659: 0x7DE0,\n\t11660: 0x7DE1,\n\t11661: 0x7DE2,\n\t11662: 0x7DE3,\n\t11663: 0x7DE4,\n\t11664: 0x7DE5,\n\t11665: 0x7DE6,\n\t11666: 0x7DE7,\n\t11667: 0x7DE8,\n\t11668: 0x7DE9,\n\t11669: 0x7DEA,\n\t11670: 0x7DEB,\n\t11671: 0x7DEC,\n\t11672: 0x7DED,\n\t11673: 0x7DEE,\n\t11674: 0x7DEF,\n\t11675: 0x7DF0,\n\t11676: 0x7DF1,\n\t11677: 0x7DF2,\n\t11678: 0x7DF3,\n\t11679: 0x7DF4,\n\t11680: 0x7DF5,\n\t11681: 0x7DF6,\n\t11682: 0x7DF7,\n\t11683: 0x7DF8,\n\t11684: 0x7DF9,\n\t11685: 0x7DFA,\n\t11686: 0x5C3D,\n\t11687: 0x52B2,\n\t11688: 0x8346,\n\t11689: 0x5162,\n\t11690: 0x830E,\n\t11691: 0x775B,\n\t11692: 0x6676,\n\t11693: 0x9CB8,\n\t11694: 0x4EAC,\n\t11695: 0x60CA,\n\t11696: 0x7CBE,\n\t11697: 0x7CB3,\n\t11698: 0x7ECF,\n\t11699: 0x4E95,\n\t11700: 0x8B66,\n\t11701: 0x666F,\n\t11702: 0x9888,\n\t11703: 0x9759,\n\t11704: 0x5883,\n\t11705: 0x656C,\n\t11706: 0x955C,\n\t11707: 0x5F84,\n\t11708: 0x75C9,\n\t11709: 0x9756,\n\t11710: 0x7ADF,\n\t11711: 0x7ADE,\n\t11712: 0x51C0,\n\t11713: 0x70AF,\n\t11714: 0x7A98,\n\t11715: 0x63EA,\n\t11716: 0x7A76,\n\t11717: 0x7EA0,\n\t11718: 0x7396,\n\t11719: 0x97ED,\n\t11720: 0x4E45,\n\t11721: 0x7078,\n\t11722: 0x4E5D,\n\t11723: 0x9152,\n\t11724: 0x53A9,\n\t11725: 0x6551,\n\t11726: 0x65E7,\n\t11727: 0x81FC,\n\t11728: 0x8205,\n\t11729: 0x548E,\n\t11730: 0x5C31,\n\t11731: 0x759A,\n\t11732: 0x97A0,\n\t11733: 0x62D8,\n\t11734: 0x72D9,\n\t11735: 0x75BD,\n\t11736: 0x5C45,\n\t11737: 0x9A79,\n\t11738: 0x83CA,\n\t11739: 0x5C40,\n\t11740: 0x5480,\n\t11741: 0x77E9,\n\t11742: 0x4E3E,\n\t11743: 0x6CAE,\n\t11744: 0x805A,\n\t11745: 0x62D2,\n\t11746: 0x636E,\n\t11747: 0x5DE8,\n\t11748: 0x5177,\n\t11749: 0x8DDD,\n\t11750: 0x8E1E,\n\t11751: 0x952F,\n\t11752: 0x4FF1,\n\t11753: 0x53E5,\n\t11754: 0x60E7,\n\t11755: 0x70AC,\n\t11756: 0x5267,\n\t11757: 0x6350,\n\t11758: 0x9E43,\n\t11759: 0x5A1F,\n\t11760: 0x5026,\n\t11761: 0x7737,\n\t11762: 0x5377,\n\t11763: 0x7EE2,\n\t11764: 0x6485,\n\t11765: 0x652B,\n\t11766: 0x6289,\n\t11767: 0x6398,\n\t11768: 0x5014,\n\t11769: 0x7235,\n\t11770: 0x89C9,\n\t11771: 0x51B3,\n\t11772: 0x8BC0,\n\t11773: 0x7EDD,\n\t11774: 0x5747,\n\t11775: 0x83CC,\n\t11776: 0x94A7,\n\t11777: 0x519B,\n\t11778: 0x541B,\n\t11779: 0x5CFB,\n\t11780: 0x7DFB,\n\t11781: 0x7DFC,\n\t11782: 0x7DFD,\n\t11783: 0x7DFE,\n\t11784: 0x7DFF,\n\t11785: 0x7E00,\n\t11786: 0x7E01,\n\t11787: 0x7E02,\n\t11788: 0x7E03,\n\t11789: 0x7E04,\n\t11790: 0x7E05,\n\t11791: 0x7E06,\n\t11792: 0x7E07,\n\t11793: 0x7E08,\n\t11794: 0x7E09,\n\t11795: 0x7E0A,\n\t11796: 0x7E0B,\n\t11797: 0x7E0C,\n\t11798: 0x7E0D,\n\t11799: 0x7E0E,\n\t11800: 0x7E0F,\n\t11801: 0x7E10,\n\t11802: 0x7E11,\n\t11803: 0x7E12,\n\t11804: 0x7E13,\n\t11805: 0x7E14,\n\t11806: 0x7E15,\n\t11807: 0x7E16,\n\t11808: 0x7E17,\n\t11809: 0x7E18,\n\t11810: 0x7E19,\n\t11811: 0x7E1A,\n\t11812: 0x7E1B,\n\t11813: 0x7E1C,\n\t11814: 0x7E1D,\n\t11815: 0x7E1E,\n\t11816: 0x7E1F,\n\t11817: 0x7E20,\n\t11818: 0x7E21,\n\t11819: 0x7E22,\n\t11820: 0x7E23,\n\t11821: 0x7E24,\n\t11822: 0x7E25,\n\t11823: 0x7E26,\n\t11824: 0x7E27,\n\t11825: 0x7E28,\n\t11826: 0x7E29,\n\t11827: 0x7E2A,\n\t11828: 0x7E2B,\n\t11829: 0x7E2C,\n\t11830: 0x7E2D,\n\t11831: 0x7E2E,\n\t11832: 0x7E2F,\n\t11833: 0x7E30,\n\t11834: 0x7E31,\n\t11835: 0x7E32,\n\t11836: 0x7E33,\n\t11837: 0x7E34,\n\t11838: 0x7E35,\n\t11839: 0x7E36,\n\t11840: 0x7E37,\n\t11841: 0x7E38,\n\t11842: 0x7E39,\n\t11843: 0x7E3A,\n\t11844: 0x7E3C,\n\t11845: 0x7E3D,\n\t11846: 0x7E3E,\n\t11847: 0x7E3F,\n\t11848: 0x7E40,\n\t11849: 0x7E42,\n\t11850: 0x7E43,\n\t11851: 0x7E44,\n\t11852: 0x7E45,\n\t11853: 0x7E46,\n\t11854: 0x7E48,\n\t11855: 0x7E49,\n\t11856: 0x7E4A,\n\t11857: 0x7E4B,\n\t11858: 0x7E4C,\n\t11859: 0x7E4D,\n\t11860: 0x7E4E,\n\t11861: 0x7E4F,\n\t11862: 0x7E50,\n\t11863: 0x7E51,\n\t11864: 0x7E52,\n\t11865: 0x7E53,\n\t11866: 0x7E54,\n\t11867: 0x7E55,\n\t11868: 0x7E56,\n\t11869: 0x7E57,\n\t11870: 0x7E58,\n\t11871: 0x7E59,\n\t11872: 0x7E5A,\n\t11873: 0x7E5B,\n\t11874: 0x7E5C,\n\t11875: 0x7E5D,\n\t11876: 0x4FCA,\n\t11877: 0x7AE3,\n\t11878: 0x6D5A,\n\t11879: 0x90E1,\n\t11880: 0x9A8F,\n\t11881: 0x5580,\n\t11882: 0x5496,\n\t11883: 0x5361,\n\t11884: 0x54AF,\n\t11885: 0x5F00,\n\t11886: 0x63E9,\n\t11887: 0x6977,\n\t11888: 0x51EF,\n\t11889: 0x6168,\n\t11890: 0x520A,\n\t11891: 0x582A,\n\t11892: 0x52D8,\n\t11893: 0x574E,\n\t11894: 0x780D,\n\t11895: 0x770B,\n\t11896: 0x5EB7,\n\t11897: 0x6177,\n\t11898: 0x7CE0,\n\t11899: 0x625B,\n\t11900: 0x6297,\n\t11901: 0x4EA2,\n\t11902: 0x7095,\n\t11903: 0x8003,\n\t11904: 0x62F7,\n\t11905: 0x70E4,\n\t11906: 0x9760,\n\t11907: 0x5777,\n\t11908: 0x82DB,\n\t11909: 0x67EF,\n\t11910: 0x68F5,\n\t11911: 0x78D5,\n\t11912: 0x9897,\n\t11913: 0x79D1,\n\t11914: 0x58F3,\n\t11915: 0x54B3,\n\t11916: 0x53EF,\n\t11917: 0x6E34,\n\t11918: 0x514B,\n\t11919: 0x523B,\n\t11920: 0x5BA2,\n\t11921: 0x8BFE,\n\t11922: 0x80AF,\n\t11923: 0x5543,\n\t11924: 0x57A6,\n\t11925: 0x6073,\n\t11926: 0x5751,\n\t11927: 0x542D,\n\t11928: 0x7A7A,\n\t11929: 0x6050,\n\t11930: 0x5B54,\n\t11931: 0x63A7,\n\t11932: 0x62A0,\n\t11933: 0x53E3,\n\t11934: 0x6263,\n\t11935: 0x5BC7,\n\t11936: 0x67AF,\n\t11937: 0x54ED,\n\t11938: 0x7A9F,\n\t11939: 0x82E6,\n\t11940: 0x9177,\n\t11941: 0x5E93,\n\t11942: 0x88E4,\n\t11943: 0x5938,\n\t11944: 0x57AE,\n\t11945: 0x630E,\n\t11946: 0x8DE8,\n\t11947: 0x80EF,\n\t11948: 0x5757,\n\t11949: 0x7B77,\n\t11950: 0x4FA9,\n\t11951: 0x5FEB,\n\t11952: 0x5BBD,\n\t11953: 0x6B3E,\n\t11954: 0x5321,\n\t11955: 0x7B50,\n\t11956: 0x72C2,\n\t11957: 0x6846,\n\t11958: 0x77FF,\n\t11959: 0x7736,\n\t11960: 0x65F7,\n\t11961: 0x51B5,\n\t11962: 0x4E8F,\n\t11963: 0x76D4,\n\t11964: 0x5CBF,\n\t11965: 0x7AA5,\n\t11966: 0x8475,\n\t11967: 0x594E,\n\t11968: 0x9B41,\n\t11969: 0x5080,\n\t11970: 0x7E5E,\n\t11971: 0x7E5F,\n\t11972: 0x7E60,\n\t11973: 0x7E61,\n\t11974: 0x7E62,\n\t11975: 0x7E63,\n\t11976: 0x7E64,\n\t11977: 0x7E65,\n\t11978: 0x7E66,\n\t11979: 0x7E67,\n\t11980: 0x7E68,\n\t11981: 0x7E69,\n\t11982: 0x7E6A,\n\t11983: 0x7E6B,\n\t11984: 0x7E6C,\n\t11985: 0x7E6D,\n\t11986: 0x7E6E,\n\t11987: 0x7E6F,\n\t11988: 0x7E70,\n\t11989: 0x7E71,\n\t11990: 0x7E72,\n\t11991: 0x7E73,\n\t11992: 0x7E74,\n\t11993: 0x7E75,\n\t11994: 0x7E76,\n\t11995: 0x7E77,\n\t11996: 0x7E78,\n\t11997: 0x7E79,\n\t11998: 0x7E7A,\n\t11999: 0x7E7B,\n\t12000: 0x7E7C,\n\t12001: 0x7E7D,\n\t12002: 0x7E7E,\n\t12003: 0x7E7F,\n\t12004: 0x7E80,\n\t12005: 0x7E81,\n\t12006: 0x7E83,\n\t12007: 0x7E84,\n\t12008: 0x7E85,\n\t12009: 0x7E86,\n\t12010: 0x7E87,\n\t12011: 0x7E88,\n\t12012: 0x7E89,\n\t12013: 0x7E8A,\n\t12014: 0x7E8B,\n\t12015: 0x7E8C,\n\t12016: 0x7E8D,\n\t12017: 0x7E8E,\n\t12018: 0x7E8F,\n\t12019: 0x7E90,\n\t12020: 0x7E91,\n\t12021: 0x7E92,\n\t12022: 0x7E93,\n\t12023: 0x7E94,\n\t12024: 0x7E95,\n\t12025: 0x7E96,\n\t12026: 0x7E97,\n\t12027: 0x7E98,\n\t12028: 0x7E99,\n\t12029: 0x7E9A,\n\t12030: 0x7E9C,\n\t12031: 0x7E9D,\n\t12032: 0x7E9E,\n\t12033: 0x7EAE,\n\t12034: 0x7EB4,\n\t12035: 0x7EBB,\n\t12036: 0x7EBC,\n\t12037: 0x7ED6,\n\t12038: 0x7EE4,\n\t12039: 0x7EEC,\n\t12040: 0x7EF9,\n\t12041: 0x7F0A,\n\t12042: 0x7F10,\n\t12043: 0x7F1E,\n\t12044: 0x7F37,\n\t12045: 0x7F39,\n\t12046: 0x7F3B,\n\t12047: 0x7F3C,\n\t12048: 0x7F3D,\n\t12049: 0x7F3E,\n\t12050: 0x7F3F,\n\t12051: 0x7F40,\n\t12052: 0x7F41,\n\t12053: 0x7F43,\n\t12054: 0x7F46,\n\t12055: 0x7F47,\n\t12056: 0x7F48,\n\t12057: 0x7F49,\n\t12058: 0x7F4A,\n\t12059: 0x7F4B,\n\t12060: 0x7F4C,\n\t12061: 0x7F4D,\n\t12062: 0x7F4E,\n\t12063: 0x7F4F,\n\t12064: 0x7F52,\n\t12065: 0x7F53,\n\t12066: 0x9988,\n\t12067: 0x6127,\n\t12068: 0x6E83,\n\t12069: 0x5764,\n\t12070: 0x6606,\n\t12071: 0x6346,\n\t12072: 0x56F0,\n\t12073: 0x62EC,\n\t12074: 0x6269,\n\t12075: 0x5ED3,\n\t12076: 0x9614,\n\t12077: 0x5783,\n\t12078: 0x62C9,\n\t12079: 0x5587,\n\t12080: 0x8721,\n\t12081: 0x814A,\n\t12082: 0x8FA3,\n\t12083: 0x5566,\n\t12084: 0x83B1,\n\t12085: 0x6765,\n\t12086: 0x8D56,\n\t12087: 0x84DD,\n\t12088: 0x5A6A,\n\t12089: 0x680F,\n\t12090: 0x62E6,\n\t12091: 0x7BEE,\n\t12092: 0x9611,\n\t12093: 0x5170,\n\t12094: 0x6F9C,\n\t12095: 0x8C30,\n\t12096: 0x63FD,\n\t12097: 0x89C8,\n\t12098: 0x61D2,\n\t12099: 0x7F06,\n\t12100: 0x70C2,\n\t12101: 0x6EE5,\n\t12102: 0x7405,\n\t12103: 0x6994,\n\t12104: 0x72FC,\n\t12105: 0x5ECA,\n\t12106: 0x90CE,\n\t12107: 0x6717,\n\t12108: 0x6D6A,\n\t12109: 0x635E,\n\t12110: 0x52B3,\n\t12111: 0x7262,\n\t12112: 0x8001,\n\t12113: 0x4F6C,\n\t12114: 0x59E5,\n\t12115: 0x916A,\n\t12116: 0x70D9,\n\t12117: 0x6D9D,\n\t12118: 0x52D2,\n\t12119: 0x4E50,\n\t12120: 0x96F7,\n\t12121: 0x956D,\n\t12122: 0x857E,\n\t12123: 0x78CA,\n\t12124: 0x7D2F,\n\t12125: 0x5121,\n\t12126: 0x5792,\n\t12127: 0x64C2,\n\t12128: 0x808B,\n\t12129: 0x7C7B,\n\t12130: 0x6CEA,\n\t12131: 0x68F1,\n\t12132: 0x695E,\n\t12133: 0x51B7,\n\t12134: 0x5398,\n\t12135: 0x68A8,\n\t12136: 0x7281,\n\t12137: 0x9ECE,\n\t12138: 0x7BF1,\n\t12139: 0x72F8,\n\t12140: 0x79BB,\n\t12141: 0x6F13,\n\t12142: 0x7406,\n\t12143: 0x674E,\n\t12144: 0x91CC,\n\t12145: 0x9CA4,\n\t12146: 0x793C,\n\t12147: 0x8389,\n\t12148: 0x8354,\n\t12149: 0x540F,\n\t12150: 0x6817,\n\t12151: 0x4E3D,\n\t12152: 0x5389,\n\t12153: 0x52B1,\n\t12154: 0x783E,\n\t12155: 0x5386,\n\t12156: 0x5229,\n\t12157: 0x5088,\n\t12158: 0x4F8B,\n\t12159: 0x4FD0,\n\t12160: 0x7F56,\n\t12161: 0x7F59,\n\t12162: 0x7F5B,\n\t12163: 0x7F5C,\n\t12164: 0x7F5D,\n\t12165: 0x7F5E,\n\t12166: 0x7F60,\n\t12167: 0x7F63,\n\t12168: 0x7F64,\n\t12169: 0x7F65,\n\t12170: 0x7F66,\n\t12171: 0x7F67,\n\t12172: 0x7F6B,\n\t12173: 0x7F6C,\n\t12174: 0x7F6D,\n\t12175: 0x7F6F,\n\t12176: 0x7F70,\n\t12177: 0x7F73,\n\t12178: 0x7F75,\n\t12179: 0x7F76,\n\t12180: 0x7F77,\n\t12181: 0x7F78,\n\t12182: 0x7F7A,\n\t12183: 0x7F7B,\n\t12184: 0x7F7C,\n\t12185: 0x7F7D,\n\t12186: 0x7F7F,\n\t12187: 0x7F80,\n\t12188: 0x7F82,\n\t12189: 0x7F83,\n\t12190: 0x7F84,\n\t12191: 0x7F85,\n\t12192: 0x7F86,\n\t12193: 0x7F87,\n\t12194: 0x7F88,\n\t12195: 0x7F89,\n\t12196: 0x7F8B,\n\t12197: 0x7F8D,\n\t12198: 0x7F8F,\n\t12199: 0x7F90,\n\t12200: 0x7F91,\n\t12201: 0x7F92,\n\t12202: 0x7F93,\n\t12203: 0x7F95,\n\t12204: 0x7F96,\n\t12205: 0x7F97,\n\t12206: 0x7F98,\n\t12207: 0x7F99,\n\t12208: 0x7F9B,\n\t12209: 0x7F9C,\n\t12210: 0x7FA0,\n\t12211: 0x7FA2,\n\t12212: 0x7FA3,\n\t12213: 0x7FA5,\n\t12214: 0x7FA6,\n\t12215: 0x7FA8,\n\t12216: 0x7FA9,\n\t12217: 0x7FAA,\n\t12218: 0x7FAB,\n\t12219: 0x7FAC,\n\t12220: 0x7FAD,\n\t12221: 0x7FAE,\n\t12222: 0x7FB1,\n\t12223: 0x7FB3,\n\t12224: 0x7FB4,\n\t12225: 0x7FB5,\n\t12226: 0x7FB6,\n\t12227: 0x7FB7,\n\t12228: 0x7FBA,\n\t12229: 0x7FBB,\n\t12230: 0x7FBE,\n\t12231: 0x7FC0,\n\t12232: 0x7FC2,\n\t12233: 0x7FC3,\n\t12234: 0x7FC4,\n\t12235: 0x7FC6,\n\t12236: 0x7FC7,\n\t12237: 0x7FC8,\n\t12238: 0x7FC9,\n\t12239: 0x7FCB,\n\t12240: 0x7FCD,\n\t12241: 0x7FCF,\n\t12242: 0x7FD0,\n\t12243: 0x7FD1,\n\t12244: 0x7FD2,\n\t12245: 0x7FD3,\n\t12246: 0x7FD6,\n\t12247: 0x7FD7,\n\t12248: 0x7FD9,\n\t12249: 0x7FDA,\n\t12250: 0x7FDB,\n\t12251: 0x7FDC,\n\t12252: 0x7FDD,\n\t12253: 0x7FDE,\n\t12254: 0x7FE2,\n\t12255: 0x7FE3,\n\t12256: 0x75E2,\n\t12257: 0x7ACB,\n\t12258: 0x7C92,\n\t12259: 0x6CA5,\n\t12260: 0x96B6,\n\t12261: 0x529B,\n\t12262: 0x7483,\n\t12263: 0x54E9,\n\t12264: 0x4FE9,\n\t12265: 0x8054,\n\t12266: 0x83B2,\n\t12267: 0x8FDE,\n\t12268: 0x9570,\n\t12269: 0x5EC9,\n\t12270: 0x601C,\n\t12271: 0x6D9F,\n\t12272: 0x5E18,\n\t12273: 0x655B,\n\t12274: 0x8138,\n\t12275: 0x94FE,\n\t12276: 0x604B,\n\t12277: 0x70BC,\n\t12278: 0x7EC3,\n\t12279: 0x7CAE,\n\t12280: 0x51C9,\n\t12281: 0x6881,\n\t12282: 0x7CB1,\n\t12283: 0x826F,\n\t12284: 0x4E24,\n\t12285: 0x8F86,\n\t12286: 0x91CF,\n\t12287: 0x667E,\n\t12288: 0x4EAE,\n\t12289: 0x8C05,\n\t12290: 0x64A9,\n\t12291: 0x804A,\n\t12292: 0x50DA,\n\t12293: 0x7597,\n\t12294: 0x71CE,\n\t12295: 0x5BE5,\n\t12296: 0x8FBD,\n\t12297: 0x6F66,\n\t12298: 0x4E86,\n\t12299: 0x6482,\n\t12300: 0x9563,\n\t12301: 0x5ED6,\n\t12302: 0x6599,\n\t12303: 0x5217,\n\t12304: 0x88C2,\n\t12305: 0x70C8,\n\t12306: 0x52A3,\n\t12307: 0x730E,\n\t12308: 0x7433,\n\t12309: 0x6797,\n\t12310: 0x78F7,\n\t12311: 0x9716,\n\t12312: 0x4E34,\n\t12313: 0x90BB,\n\t12314: 0x9CDE,\n\t12315: 0x6DCB,\n\t12316: 0x51DB,\n\t12317: 0x8D41,\n\t12318: 0x541D,\n\t12319: 0x62CE,\n\t12320: 0x73B2,\n\t12321: 0x83F1,\n\t12322: 0x96F6,\n\t12323: 0x9F84,\n\t12324: 0x94C3,\n\t12325: 0x4F36,\n\t12326: 0x7F9A,\n\t12327: 0x51CC,\n\t12328: 0x7075,\n\t12329: 0x9675,\n\t12330: 0x5CAD,\n\t12331: 0x9886,\n\t12332: 0x53E6,\n\t12333: 0x4EE4,\n\t12334: 0x6E9C,\n\t12335: 0x7409,\n\t12336: 0x69B4,\n\t12337: 0x786B,\n\t12338: 0x998F,\n\t12339: 0x7559,\n\t12340: 0x5218,\n\t12341: 0x7624,\n\t12342: 0x6D41,\n\t12343: 0x67F3,\n\t12344: 0x516D,\n\t12345: 0x9F99,\n\t12346: 0x804B,\n\t12347: 0x5499,\n\t12348: 0x7B3C,\n\t12349: 0x7ABF,\n\t12350: 0x7FE4,\n\t12351: 0x7FE7,\n\t12352: 0x7FE8,\n\t12353: 0x7FEA,\n\t12354: 0x7FEB,\n\t12355: 0x7FEC,\n\t12356: 0x7FED,\n\t12357: 0x7FEF,\n\t12358: 0x7FF2,\n\t12359: 0x7FF4,\n\t12360: 0x7FF5,\n\t12361: 0x7FF6,\n\t12362: 0x7FF7,\n\t12363: 0x7FF8,\n\t12364: 0x7FF9,\n\t12365: 0x7FFA,\n\t12366: 0x7FFD,\n\t12367: 0x7FFE,\n\t12368: 0x7FFF,\n\t12369: 0x8002,\n\t12370: 0x8007,\n\t12371: 0x8008,\n\t12372: 0x8009,\n\t12373: 0x800A,\n\t12374: 0x800E,\n\t12375: 0x800F,\n\t12376: 0x8011,\n\t12377: 0x8013,\n\t12378: 0x801A,\n\t12379: 0x801B,\n\t12380: 0x801D,\n\t12381: 0x801E,\n\t12382: 0x801F,\n\t12383: 0x8021,\n\t12384: 0x8023,\n\t12385: 0x8024,\n\t12386: 0x802B,\n\t12387: 0x802C,\n\t12388: 0x802D,\n\t12389: 0x802E,\n\t12390: 0x802F,\n\t12391: 0x8030,\n\t12392: 0x8032,\n\t12393: 0x8034,\n\t12394: 0x8039,\n\t12395: 0x803A,\n\t12396: 0x803C,\n\t12397: 0x803E,\n\t12398: 0x8040,\n\t12399: 0x8041,\n\t12400: 0x8044,\n\t12401: 0x8045,\n\t12402: 0x8047,\n\t12403: 0x8048,\n\t12404: 0x8049,\n\t12405: 0x804E,\n\t12406: 0x804F,\n\t12407: 0x8050,\n\t12408: 0x8051,\n\t12409: 0x8053,\n\t12410: 0x8055,\n\t12411: 0x8056,\n\t12412: 0x8057,\n\t12413: 0x8059,\n\t12414: 0x805B,\n\t12415: 0x805C,\n\t12416: 0x805D,\n\t12417: 0x805E,\n\t12418: 0x805F,\n\t12419: 0x8060,\n\t12420: 0x8061,\n\t12421: 0x8062,\n\t12422: 0x8063,\n\t12423: 0x8064,\n\t12424: 0x8065,\n\t12425: 0x8066,\n\t12426: 0x8067,\n\t12427: 0x8068,\n\t12428: 0x806B,\n\t12429: 0x806C,\n\t12430: 0x806D,\n\t12431: 0x806E,\n\t12432: 0x806F,\n\t12433: 0x8070,\n\t12434: 0x8072,\n\t12435: 0x8073,\n\t12436: 0x8074,\n\t12437: 0x8075,\n\t12438: 0x8076,\n\t12439: 0x8077,\n\t12440: 0x8078,\n\t12441: 0x8079,\n\t12442: 0x807A,\n\t12443: 0x807B,\n\t12444: 0x807C,\n\t12445: 0x807D,\n\t12446: 0x9686,\n\t12447: 0x5784,\n\t12448: 0x62E2,\n\t12449: 0x9647,\n\t12450: 0x697C,\n\t12451: 0x5A04,\n\t12452: 0x6402,\n\t12453: 0x7BD3,\n\t12454: 0x6F0F,\n\t12455: 0x964B,\n\t12456: 0x82A6,\n\t12457: 0x5362,\n\t12458: 0x9885,\n\t12459: 0x5E90,\n\t12460: 0x7089,\n\t12461: 0x63B3,\n\t12462: 0x5364,\n\t12463: 0x864F,\n\t12464: 0x9C81,\n\t12465: 0x9E93,\n\t12466: 0x788C,\n\t12467: 0x9732,\n\t12468: 0x8DEF,\n\t12469: 0x8D42,\n\t12470: 0x9E7F,\n\t12471: 0x6F5E,\n\t12472: 0x7984,\n\t12473: 0x5F55,\n\t12474: 0x9646,\n\t12475: 0x622E,\n\t12476: 0x9A74,\n\t12477: 0x5415,\n\t12478: 0x94DD,\n\t12479: 0x4FA3,\n\t12480: 0x65C5,\n\t12481: 0x5C65,\n\t12482: 0x5C61,\n\t12483: 0x7F15,\n\t12484: 0x8651,\n\t12485: 0x6C2F,\n\t12486: 0x5F8B,\n\t12487: 0x7387,\n\t12488: 0x6EE4,\n\t12489: 0x7EFF,\n\t12490: 0x5CE6,\n\t12491: 0x631B,\n\t12492: 0x5B6A,\n\t12493: 0x6EE6,\n\t12494: 0x5375,\n\t12495: 0x4E71,\n\t12496: 0x63A0,\n\t12497: 0x7565,\n\t12498: 0x62A1,\n\t12499: 0x8F6E,\n\t12500: 0x4F26,\n\t12501: 0x4ED1,\n\t12502: 0x6CA6,\n\t12503: 0x7EB6,\n\t12504: 0x8BBA,\n\t12505: 0x841D,\n\t12506: 0x87BA,\n\t12507: 0x7F57,\n\t12508: 0x903B,\n\t12509: 0x9523,\n\t12510: 0x7BA9,\n\t12511: 0x9AA1,\n\t12512: 0x88F8,\n\t12513: 0x843D,\n\t12514: 0x6D1B,\n\t12515: 0x9A86,\n\t12516: 0x7EDC,\n\t12517: 0x5988,\n\t12518: 0x9EBB,\n\t12519: 0x739B,\n\t12520: 0x7801,\n\t12521: 0x8682,\n\t12522: 0x9A6C,\n\t12523: 0x9A82,\n\t12524: 0x561B,\n\t12525: 0x5417,\n\t12526: 0x57CB,\n\t12527: 0x4E70,\n\t12528: 0x9EA6,\n\t12529: 0x5356,\n\t12530: 0x8FC8,\n\t12531: 0x8109,\n\t12532: 0x7792,\n\t12533: 0x9992,\n\t12534: 0x86EE,\n\t12535: 0x6EE1,\n\t12536: 0x8513,\n\t12537: 0x66FC,\n\t12538: 0x6162,\n\t12539: 0x6F2B,\n\t12540: 0x807E,\n\t12541: 0x8081,\n\t12542: 0x8082,\n\t12543: 0x8085,\n\t12544: 0x8088,\n\t12545: 0x808A,\n\t12546: 0x808D,\n\t12547: 0x808E,\n\t12548: 0x808F,\n\t12549: 0x8090,\n\t12550: 0x8091,\n\t12551: 0x8092,\n\t12552: 0x8094,\n\t12553: 0x8095,\n\t12554: 0x8097,\n\t12555: 0x8099,\n\t12556: 0x809E,\n\t12557: 0x80A3,\n\t12558: 0x80A6,\n\t12559: 0x80A7,\n\t12560: 0x80A8,\n\t12561: 0x80AC,\n\t12562: 0x80B0,\n\t12563: 0x80B3,\n\t12564: 0x80B5,\n\t12565: 0x80B6,\n\t12566: 0x80B8,\n\t12567: 0x80B9,\n\t12568: 0x80BB,\n\t12569: 0x80C5,\n\t12570: 0x80C7,\n\t12571: 0x80C8,\n\t12572: 0x80C9,\n\t12573: 0x80CA,\n\t12574: 0x80CB,\n\t12575: 0x80CF,\n\t12576: 0x80D0,\n\t12577: 0x80D1,\n\t12578: 0x80D2,\n\t12579: 0x80D3,\n\t12580: 0x80D4,\n\t12581: 0x80D5,\n\t12582: 0x80D8,\n\t12583: 0x80DF,\n\t12584: 0x80E0,\n\t12585: 0x80E2,\n\t12586: 0x80E3,\n\t12587: 0x80E6,\n\t12588: 0x80EE,\n\t12589: 0x80F5,\n\t12590: 0x80F7,\n\t12591: 0x80F9,\n\t12592: 0x80FB,\n\t12593: 0x80FE,\n\t12594: 0x80FF,\n\t12595: 0x8100,\n\t12596: 0x8101,\n\t12597: 0x8103,\n\t12598: 0x8104,\n\t12599: 0x8105,\n\t12600: 0x8107,\n\t12601: 0x8108,\n\t12602: 0x810B,\n\t12603: 0x810C,\n\t12604: 0x8115,\n\t12605: 0x8117,\n\t12606: 0x8119,\n\t12607: 0x811B,\n\t12608: 0x811C,\n\t12609: 0x811D,\n\t12610: 0x811F,\n\t12611: 0x8120,\n\t12612: 0x8121,\n\t12613: 0x8122,\n\t12614: 0x8123,\n\t12615: 0x8124,\n\t12616: 0x8125,\n\t12617: 0x8126,\n\t12618: 0x8127,\n\t12619: 0x8128,\n\t12620: 0x8129,\n\t12621: 0x812A,\n\t12622: 0x812B,\n\t12623: 0x812D,\n\t12624: 0x812E,\n\t12625: 0x8130,\n\t12626: 0x8133,\n\t12627: 0x8134,\n\t12628: 0x8135,\n\t12629: 0x8137,\n\t12630: 0x8139,\n\t12631: 0x813A,\n\t12632: 0x813B,\n\t12633: 0x813C,\n\t12634: 0x813D,\n\t12635: 0x813F,\n\t12636: 0x8C29,\n\t12637: 0x8292,\n\t12638: 0x832B,\n\t12639: 0x76F2,\n\t12640: 0x6C13,\n\t12641: 0x5FD9,\n\t12642: 0x83BD,\n\t12643: 0x732B,\n\t12644: 0x8305,\n\t12645: 0x951A,\n\t12646: 0x6BDB,\n\t12647: 0x77DB,\n\t12648: 0x94C6,\n\t12649: 0x536F,\n\t12650: 0x8302,\n\t12651: 0x5192,\n\t12652: 0x5E3D,\n\t12653: 0x8C8C,\n\t12654: 0x8D38,\n\t12655: 0x4E48,\n\t12656: 0x73AB,\n\t12657: 0x679A,\n\t12658: 0x6885,\n\t12659: 0x9176,\n\t12660: 0x9709,\n\t12661: 0x7164,\n\t12662: 0x6CA1,\n\t12663: 0x7709,\n\t12664: 0x5A92,\n\t12665: 0x9541,\n\t12666: 0x6BCF,\n\t12667: 0x7F8E,\n\t12668: 0x6627,\n\t12669: 0x5BD0,\n\t12670: 0x59B9,\n\t12671: 0x5A9A,\n\t12672: 0x95E8,\n\t12673: 0x95F7,\n\t12674: 0x4EEC,\n\t12675: 0x840C,\n\t12676: 0x8499,\n\t12677: 0x6AAC,\n\t12678: 0x76DF,\n\t12679: 0x9530,\n\t12680: 0x731B,\n\t12681: 0x68A6,\n\t12682: 0x5B5F,\n\t12683: 0x772F,\n\t12684: 0x919A,\n\t12685: 0x9761,\n\t12686: 0x7CDC,\n\t12687: 0x8FF7,\n\t12688: 0x8C1C,\n\t12689: 0x5F25,\n\t12690: 0x7C73,\n\t12691: 0x79D8,\n\t12692: 0x89C5,\n\t12693: 0x6CCC,\n\t12694: 0x871C,\n\t12695: 0x5BC6,\n\t12696: 0x5E42,\n\t12697: 0x68C9,\n\t12698: 0x7720,\n\t12699: 0x7EF5,\n\t12700: 0x5195,\n\t12701: 0x514D,\n\t12702: 0x52C9,\n\t12703: 0x5A29,\n\t12704: 0x7F05,\n\t12705: 0x9762,\n\t12706: 0x82D7,\n\t12707: 0x63CF,\n\t12708: 0x7784,\n\t12709: 0x85D0,\n\t12710: 0x79D2,\n\t12711: 0x6E3A,\n\t12712: 0x5E99,\n\t12713: 0x5999,\n\t12714: 0x8511,\n\t12715: 0x706D,\n\t12716: 0x6C11,\n\t12717: 0x62BF,\n\t12718: 0x76BF,\n\t12719: 0x654F,\n\t12720: 0x60AF,\n\t12721: 0x95FD,\n\t12722: 0x660E,\n\t12723: 0x879F,\n\t12724: 0x9E23,\n\t12725: 0x94ED,\n\t12726: 0x540D,\n\t12727: 0x547D,\n\t12728: 0x8C2C,\n\t12729: 0x6478,\n\t12730: 0x8140,\n\t12731: 0x8141,\n\t12732: 0x8142,\n\t12733: 0x8143,\n\t12734: 0x8144,\n\t12735: 0x8145,\n\t12736: 0x8147,\n\t12737: 0x8149,\n\t12738: 0x814D,\n\t12739: 0x814E,\n\t12740: 0x814F,\n\t12741: 0x8152,\n\t12742: 0x8156,\n\t12743: 0x8157,\n\t12744: 0x8158,\n\t12745: 0x815B,\n\t12746: 0x815C,\n\t12747: 0x815D,\n\t12748: 0x815E,\n\t12749: 0x815F,\n\t12750: 0x8161,\n\t12751: 0x8162,\n\t12752: 0x8163,\n\t12753: 0x8164,\n\t12754: 0x8166,\n\t12755: 0x8168,\n\t12756: 0x816A,\n\t12757: 0x816B,\n\t12758: 0x816C,\n\t12759: 0x816F,\n\t12760: 0x8172,\n\t12761: 0x8173,\n\t12762: 0x8175,\n\t12763: 0x8176,\n\t12764: 0x8177,\n\t12765: 0x8178,\n\t12766: 0x8181,\n\t12767: 0x8183,\n\t12768: 0x8184,\n\t12769: 0x8185,\n\t12770: 0x8186,\n\t12771: 0x8187,\n\t12772: 0x8189,\n\t12773: 0x818B,\n\t12774: 0x818C,\n\t12775: 0x818D,\n\t12776: 0x818E,\n\t12777: 0x8190,\n\t12778: 0x8192,\n\t12779: 0x8193,\n\t12780: 0x8194,\n\t12781: 0x8195,\n\t12782: 0x8196,\n\t12783: 0x8197,\n\t12784: 0x8199,\n\t12785: 0x819A,\n\t12786: 0x819E,\n\t12787: 0x819F,\n\t12788: 0x81A0,\n\t12789: 0x81A1,\n\t12790: 0x81A2,\n\t12791: 0x81A4,\n\t12792: 0x81A5,\n\t12793: 0x81A7,\n\t12794: 0x81A9,\n\t12795: 0x81AB,\n\t12796: 0x81AC,\n\t12797: 0x81AD,\n\t12798: 0x81AE,\n\t12799: 0x81AF,\n\t12800: 0x81B0,\n\t12801: 0x81B1,\n\t12802: 0x81B2,\n\t12803: 0x81B4,\n\t12804: 0x81B5,\n\t12805: 0x81B6,\n\t12806: 0x81B7,\n\t12807: 0x81B8,\n\t12808: 0x81B9,\n\t12809: 0x81BC,\n\t12810: 0x81BD,\n\t12811: 0x81BE,\n\t12812: 0x81BF,\n\t12813: 0x81C4,\n\t12814: 0x81C5,\n\t12815: 0x81C7,\n\t12816: 0x81C8,\n\t12817: 0x81C9,\n\t12818: 0x81CB,\n\t12819: 0x81CD,\n\t12820: 0x81CE,\n\t12821: 0x81CF,\n\t12822: 0x81D0,\n\t12823: 0x81D1,\n\t12824: 0x81D2,\n\t12825: 0x81D3,\n\t12826: 0x6479,\n\t12827: 0x8611,\n\t12828: 0x6A21,\n\t12829: 0x819C,\n\t12830: 0x78E8,\n\t12831: 0x6469,\n\t12832: 0x9B54,\n\t12833: 0x62B9,\n\t12834: 0x672B,\n\t12835: 0x83AB,\n\t12836: 0x58A8,\n\t12837: 0x9ED8,\n\t12838: 0x6CAB,\n\t12839: 0x6F20,\n\t12840: 0x5BDE,\n\t12841: 0x964C,\n\t12842: 0x8C0B,\n\t12843: 0x725F,\n\t12844: 0x67D0,\n\t12845: 0x62C7,\n\t12846: 0x7261,\n\t12847: 0x4EA9,\n\t12848: 0x59C6,\n\t12849: 0x6BCD,\n\t12850: 0x5893,\n\t12851: 0x66AE,\n\t12852: 0x5E55,\n\t12853: 0x52DF,\n\t12854: 0x6155,\n\t12855: 0x6728,\n\t12856: 0x76EE,\n\t12857: 0x7766,\n\t12858: 0x7267,\n\t12859: 0x7A46,\n\t12860: 0x62FF,\n\t12861: 0x54EA,\n\t12862: 0x5450,\n\t12863: 0x94A0,\n\t12864: 0x90A3,\n\t12865: 0x5A1C,\n\t12866: 0x7EB3,\n\t12867: 0x6C16,\n\t12868: 0x4E43,\n\t12869: 0x5976,\n\t12870: 0x8010,\n\t12871: 0x5948,\n\t12872: 0x5357,\n\t12873: 0x7537,\n\t12874: 0x96BE,\n\t12875: 0x56CA,\n\t12876: 0x6320,\n\t12877: 0x8111,\n\t12878: 0x607C,\n\t12879: 0x95F9,\n\t12880: 0x6DD6,\n\t12881: 0x5462,\n\t12882: 0x9981,\n\t12883: 0x5185,\n\t12884: 0x5AE9,\n\t12885: 0x80FD,\n\t12886: 0x59AE,\n\t12887: 0x9713,\n\t12888: 0x502A,\n\t12889: 0x6CE5,\n\t12890: 0x5C3C,\n\t12891: 0x62DF,\n\t12892: 0x4F60,\n\t12893: 0x533F,\n\t12894: 0x817B,\n\t12895: 0x9006,\n\t12896: 0x6EBA,\n\t12897: 0x852B,\n\t12898: 0x62C8,\n\t12899: 0x5E74,\n\t12900: 0x78BE,\n\t12901: 0x64B5,\n\t12902: 0x637B,\n\t12903: 0x5FF5,\n\t12904: 0x5A18,\n\t12905: 0x917F,\n\t12906: 0x9E1F,\n\t12907: 0x5C3F,\n\t12908: 0x634F,\n\t12909: 0x8042,\n\t12910: 0x5B7D,\n\t12911: 0x556E,\n\t12912: 0x954A,\n\t12913: 0x954D,\n\t12914: 0x6D85,\n\t12915: 0x60A8,\n\t12916: 0x67E0,\n\t12917: 0x72DE,\n\t12918: 0x51DD,\n\t12919: 0x5B81,\n\t12920: 0x81D4,\n\t12921: 0x81D5,\n\t12922: 0x81D6,\n\t12923: 0x81D7,\n\t12924: 0x81D8,\n\t12925: 0x81D9,\n\t12926: 0x81DA,\n\t12927: 0x81DB,\n\t12928: 0x81DC,\n\t12929: 0x81DD,\n\t12930: 0x81DE,\n\t12931: 0x81DF,\n\t12932: 0x81E0,\n\t12933: 0x81E1,\n\t12934: 0x81E2,\n\t12935: 0x81E4,\n\t12936: 0x81E5,\n\t12937: 0x81E6,\n\t12938: 0x81E8,\n\t12939: 0x81E9,\n\t12940: 0x81EB,\n\t12941: 0x81EE,\n\t12942: 0x81EF,\n\t12943: 0x81F0,\n\t12944: 0x81F1,\n\t12945: 0x81F2,\n\t12946: 0x81F5,\n\t12947: 0x81F6,\n\t12948: 0x81F7,\n\t12949: 0x81F8,\n\t12950: 0x81F9,\n\t12951: 0x81FA,\n\t12952: 0x81FD,\n\t12953: 0x81FF,\n\t12954: 0x8203,\n\t12955: 0x8207,\n\t12956: 0x8208,\n\t12957: 0x8209,\n\t12958: 0x820A,\n\t12959: 0x820B,\n\t12960: 0x820E,\n\t12961: 0x820F,\n\t12962: 0x8211,\n\t12963: 0x8213,\n\t12964: 0x8215,\n\t12965: 0x8216,\n\t12966: 0x8217,\n\t12967: 0x8218,\n\t12968: 0x8219,\n\t12969: 0x821A,\n\t12970: 0x821D,\n\t12971: 0x8220,\n\t12972: 0x8224,\n\t12973: 0x8225,\n\t12974: 0x8226,\n\t12975: 0x8227,\n\t12976: 0x8229,\n\t12977: 0x822E,\n\t12978: 0x8232,\n\t12979: 0x823A,\n\t12980: 0x823C,\n\t12981: 0x823D,\n\t12982: 0x823F,\n\t12983: 0x8240,\n\t12984: 0x8241,\n\t12985: 0x8242,\n\t12986: 0x8243,\n\t12987: 0x8245,\n\t12988: 0x8246,\n\t12989: 0x8248,\n\t12990: 0x824A,\n\t12991: 0x824C,\n\t12992: 0x824D,\n\t12993: 0x824E,\n\t12994: 0x8250,\n\t12995: 0x8251,\n\t12996: 0x8252,\n\t12997: 0x8253,\n\t12998: 0x8254,\n\t12999: 0x8255,\n\t13000: 0x8256,\n\t13001: 0x8257,\n\t13002: 0x8259,\n\t13003: 0x825B,\n\t13004: 0x825C,\n\t13005: 0x825D,\n\t13006: 0x825E,\n\t13007: 0x8260,\n\t13008: 0x8261,\n\t13009: 0x8262,\n\t13010: 0x8263,\n\t13011: 0x8264,\n\t13012: 0x8265,\n\t13013: 0x8266,\n\t13014: 0x8267,\n\t13015: 0x8269,\n\t13016: 0x62E7,\n\t13017: 0x6CDE,\n\t13018: 0x725B,\n\t13019: 0x626D,\n\t13020: 0x94AE,\n\t13021: 0x7EBD,\n\t13022: 0x8113,\n\t13023: 0x6D53,\n\t13024: 0x519C,\n\t13025: 0x5F04,\n\t13026: 0x5974,\n\t13027: 0x52AA,\n\t13028: 0x6012,\n\t13029: 0x5973,\n\t13030: 0x6696,\n\t13031: 0x8650,\n\t13032: 0x759F,\n\t13033: 0x632A,\n\t13034: 0x61E6,\n\t13035: 0x7CEF,\n\t13036: 0x8BFA,\n\t13037: 0x54E6,\n\t13038: 0x6B27,\n\t13039: 0x9E25,\n\t13040: 0x6BB4,\n\t13041: 0x85D5,\n\t13042: 0x5455,\n\t13043: 0x5076,\n\t13044: 0x6CA4,\n\t13045: 0x556A,\n\t13046: 0x8DB4,\n\t13047: 0x722C,\n\t13048: 0x5E15,\n\t13049: 0x6015,\n\t13050: 0x7436,\n\t13051: 0x62CD,\n\t13052: 0x6392,\n\t13053: 0x724C,\n\t13054: 0x5F98,\n\t13055: 0x6E43,\n\t13056: 0x6D3E,\n\t13057: 0x6500,\n\t13058: 0x6F58,\n\t13059: 0x76D8,\n\t13060: 0x78D0,\n\t13061: 0x76FC,\n\t13062: 0x7554,\n\t13063: 0x5224,\n\t13064: 0x53DB,\n\t13065: 0x4E53,\n\t13066: 0x5E9E,\n\t13067: 0x65C1,\n\t13068: 0x802A,\n\t13069: 0x80D6,\n\t13070: 0x629B,\n\t13071: 0x5486,\n\t13072: 0x5228,\n\t13073: 0x70AE,\n\t13074: 0x888D,\n\t13075: 0x8DD1,\n\t13076: 0x6CE1,\n\t13077: 0x5478,\n\t13078: 0x80DA,\n\t13079: 0x57F9,\n\t13080: 0x88F4,\n\t13081: 0x8D54,\n\t13082: 0x966A,\n\t13083: 0x914D,\n\t13084: 0x4F69,\n\t13085: 0x6C9B,\n\t13086: 0x55B7,\n\t13087: 0x76C6,\n\t13088: 0x7830,\n\t13089: 0x62A8,\n\t13090: 0x70F9,\n\t13091: 0x6F8E,\n\t13092: 0x5F6D,\n\t13093: 0x84EC,\n\t13094: 0x68DA,\n\t13095: 0x787C,\n\t13096: 0x7BF7,\n\t13097: 0x81A8,\n\t13098: 0x670B,\n\t13099: 0x9E4F,\n\t13100: 0x6367,\n\t13101: 0x78B0,\n\t13102: 0x576F,\n\t13103: 0x7812,\n\t13104: 0x9739,\n\t13105: 0x6279,\n\t13106: 0x62AB,\n\t13107: 0x5288,\n\t13108: 0x7435,\n\t13109: 0x6BD7,\n\t13110: 0x826A,\n\t13111: 0x826B,\n\t13112: 0x826C,\n\t13113: 0x826D,\n\t13114: 0x8271,\n\t13115: 0x8275,\n\t13116: 0x8276,\n\t13117: 0x8277,\n\t13118: 0x8278,\n\t13119: 0x827B,\n\t13120: 0x827C,\n\t13121: 0x8280,\n\t13122: 0x8281,\n\t13123: 0x8283,\n\t13124: 0x8285,\n\t13125: 0x8286,\n\t13126: 0x8287,\n\t13127: 0x8289,\n\t13128: 0x828C,\n\t13129: 0x8290,\n\t13130: 0x8293,\n\t13131: 0x8294,\n\t13132: 0x8295,\n\t13133: 0x8296,\n\t13134: 0x829A,\n\t13135: 0x829B,\n\t13136: 0x829E,\n\t13137: 0x82A0,\n\t13138: 0x82A2,\n\t13139: 0x82A3,\n\t13140: 0x82A7,\n\t13141: 0x82B2,\n\t13142: 0x82B5,\n\t13143: 0x82B6,\n\t13144: 0x82BA,\n\t13145: 0x82BB,\n\t13146: 0x82BC,\n\t13147: 0x82BF,\n\t13148: 0x82C0,\n\t13149: 0x82C2,\n\t13150: 0x82C3,\n\t13151: 0x82C5,\n\t13152: 0x82C6,\n\t13153: 0x82C9,\n\t13154: 0x82D0,\n\t13155: 0x82D6,\n\t13156: 0x82D9,\n\t13157: 0x82DA,\n\t13158: 0x82DD,\n\t13159: 0x82E2,\n\t13160: 0x82E7,\n\t13161: 0x82E8,\n\t13162: 0x82E9,\n\t13163: 0x82EA,\n\t13164: 0x82EC,\n\t13165: 0x82ED,\n\t13166: 0x82EE,\n\t13167: 0x82F0,\n\t13168: 0x82F2,\n\t13169: 0x82F3,\n\t13170: 0x82F5,\n\t13171: 0x82F6,\n\t13172: 0x82F8,\n\t13173: 0x82FA,\n\t13174: 0x82FC,\n\t13175: 0x82FD,\n\t13176: 0x82FE,\n\t13177: 0x82FF,\n\t13178: 0x8300,\n\t13179: 0x830A,\n\t13180: 0x830B,\n\t13181: 0x830D,\n\t13182: 0x8310,\n\t13183: 0x8312,\n\t13184: 0x8313,\n\t13185: 0x8316,\n\t13186: 0x8318,\n\t13187: 0x8319,\n\t13188: 0x831D,\n\t13189: 0x831E,\n\t13190: 0x831F,\n\t13191: 0x8320,\n\t13192: 0x8321,\n\t13193: 0x8322,\n\t13194: 0x8323,\n\t13195: 0x8324,\n\t13196: 0x8325,\n\t13197: 0x8326,\n\t13198: 0x8329,\n\t13199: 0x832A,\n\t13200: 0x832E,\n\t13201: 0x8330,\n\t13202: 0x8332,\n\t13203: 0x8337,\n\t13204: 0x833B,\n\t13205: 0x833D,\n\t13206: 0x5564,\n\t13207: 0x813E,\n\t13208: 0x75B2,\n\t13209: 0x76AE,\n\t13210: 0x5339,\n\t13211: 0x75DE,\n\t13212: 0x50FB,\n\t13213: 0x5C41,\n\t13214: 0x8B6C,\n\t13215: 0x7BC7,\n\t13216: 0x504F,\n\t13217: 0x7247,\n\t13218: 0x9A97,\n\t13219: 0x98D8,\n\t13220: 0x6F02,\n\t13221: 0x74E2,\n\t13222: 0x7968,\n\t13223: 0x6487,\n\t13224: 0x77A5,\n\t13225: 0x62FC,\n\t13226: 0x9891,\n\t13227: 0x8D2B,\n\t13228: 0x54C1,\n\t13229: 0x8058,\n\t13230: 0x4E52,\n\t13231: 0x576A,\n\t13232: 0x82F9,\n\t13233: 0x840D,\n\t13234: 0x5E73,\n\t13235: 0x51ED,\n\t13236: 0x74F6,\n\t13237: 0x8BC4,\n\t13238: 0x5C4F,\n\t13239: 0x5761,\n\t13240: 0x6CFC,\n\t13241: 0x9887,\n\t13242: 0x5A46,\n\t13243: 0x7834,\n\t13244: 0x9B44,\n\t13245: 0x8FEB,\n\t13246: 0x7C95,\n\t13247: 0x5256,\n\t13248: 0x6251,\n\t13249: 0x94FA,\n\t13250: 0x4EC6,\n\t13251: 0x8386,\n\t13252: 0x8461,\n\t13253: 0x83E9,\n\t13254: 0x84B2,\n\t13255: 0x57D4,\n\t13256: 0x6734,\n\t13257: 0x5703,\n\t13258: 0x666E,\n\t13259: 0x6D66,\n\t13260: 0x8C31,\n\t13261: 0x66DD,\n\t13262: 0x7011,\n\t13263: 0x671F,\n\t13264: 0x6B3A,\n\t13265: 0x6816,\n\t13266: 0x621A,\n\t13267: 0x59BB,\n\t13268: 0x4E03,\n\t13269: 0x51C4,\n\t13270: 0x6F06,\n\t13271: 0x67D2,\n\t13272: 0x6C8F,\n\t13273: 0x5176,\n\t13274: 0x68CB,\n\t13275: 0x5947,\n\t13276: 0x6B67,\n\t13277: 0x7566,\n\t13278: 0x5D0E,\n\t13279: 0x8110,\n\t13280: 0x9F50,\n\t13281: 0x65D7,\n\t13282: 0x7948,\n\t13283: 0x7941,\n\t13284: 0x9A91,\n\t13285: 0x8D77,\n\t13286: 0x5C82,\n\t13287: 0x4E5E,\n\t13288: 0x4F01,\n\t13289: 0x542F,\n\t13290: 0x5951,\n\t13291: 0x780C,\n\t13292: 0x5668,\n\t13293: 0x6C14,\n\t13294: 0x8FC4,\n\t13295: 0x5F03,\n\t13296: 0x6C7D,\n\t13297: 0x6CE3,\n\t13298: 0x8BAB,\n\t13299: 0x6390,\n\t13300: 0x833E,\n\t13301: 0x833F,\n\t13302: 0x8341,\n\t13303: 0x8342,\n\t13304: 0x8344,\n\t13305: 0x8345,\n\t13306: 0x8348,\n\t13307: 0x834A,\n\t13308: 0x834B,\n\t13309: 0x834C,\n\t13310: 0x834D,\n\t13311: 0x834E,\n\t13312: 0x8353,\n\t13313: 0x8355,\n\t13314: 0x8356,\n\t13315: 0x8357,\n\t13316: 0x8358,\n\t13317: 0x8359,\n\t13318: 0x835D,\n\t13319: 0x8362,\n\t13320: 0x8370,\n\t13321: 0x8371,\n\t13322: 0x8372,\n\t13323: 0x8373,\n\t13324: 0x8374,\n\t13325: 0x8375,\n\t13326: 0x8376,\n\t13327: 0x8379,\n\t13328: 0x837A,\n\t13329: 0x837E,\n\t13330: 0x837F,\n\t13331: 0x8380,\n\t13332: 0x8381,\n\t13333: 0x8382,\n\t13334: 0x8383,\n\t13335: 0x8384,\n\t13336: 0x8387,\n\t13337: 0x8388,\n\t13338: 0x838A,\n\t13339: 0x838B,\n\t13340: 0x838C,\n\t13341: 0x838D,\n\t13342: 0x838F,\n\t13343: 0x8390,\n\t13344: 0x8391,\n\t13345: 0x8394,\n\t13346: 0x8395,\n\t13347: 0x8396,\n\t13348: 0x8397,\n\t13349: 0x8399,\n\t13350: 0x839A,\n\t13351: 0x839D,\n\t13352: 0x839F,\n\t13353: 0x83A1,\n\t13354: 0x83A2,\n\t13355: 0x83A3,\n\t13356: 0x83A4,\n\t13357: 0x83A5,\n\t13358: 0x83A6,\n\t13359: 0x83A7,\n\t13360: 0x83AC,\n\t13361: 0x83AD,\n\t13362: 0x83AE,\n\t13363: 0x83AF,\n\t13364: 0x83B5,\n\t13365: 0x83BB,\n\t13366: 0x83BE,\n\t13367: 0x83BF,\n\t13368: 0x83C2,\n\t13369: 0x83C3,\n\t13370: 0x83C4,\n\t13371: 0x83C6,\n\t13372: 0x83C8,\n\t13373: 0x83C9,\n\t13374: 0x83CB,\n\t13375: 0x83CD,\n\t13376: 0x83CE,\n\t13377: 0x83D0,\n\t13378: 0x83D1,\n\t13379: 0x83D2,\n\t13380: 0x83D3,\n\t13381: 0x83D5,\n\t13382: 0x83D7,\n\t13383: 0x83D9,\n\t13384: 0x83DA,\n\t13385: 0x83DB,\n\t13386: 0x83DE,\n\t13387: 0x83E2,\n\t13388: 0x83E3,\n\t13389: 0x83E4,\n\t13390: 0x83E6,\n\t13391: 0x83E7,\n\t13392: 0x83E8,\n\t13393: 0x83EB,\n\t13394: 0x83EC,\n\t13395: 0x83ED,\n\t13396: 0x6070,\n\t13397: 0x6D3D,\n\t13398: 0x7275,\n\t13399: 0x6266,\n\t13400: 0x948E,\n\t13401: 0x94C5,\n\t13402: 0x5343,\n\t13403: 0x8FC1,\n\t13404: 0x7B7E,\n\t13405: 0x4EDF,\n\t13406: 0x8C26,\n\t13407: 0x4E7E,\n\t13408: 0x9ED4,\n\t13409: 0x94B1,\n\t13410: 0x94B3,\n\t13411: 0x524D,\n\t13412: 0x6F5C,\n\t13413: 0x9063,\n\t13414: 0x6D45,\n\t13415: 0x8C34,\n\t13416: 0x5811,\n\t13417: 0x5D4C,\n\t13418: 0x6B20,\n\t13419: 0x6B49,\n\t13420: 0x67AA,\n\t13421: 0x545B,\n\t13422: 0x8154,\n\t13423: 0x7F8C,\n\t13424: 0x5899,\n\t13425: 0x8537,\n\t13426: 0x5F3A,\n\t13427: 0x62A2,\n\t13428: 0x6A47,\n\t13429: 0x9539,\n\t13430: 0x6572,\n\t13431: 0x6084,\n\t13432: 0x6865,\n\t13433: 0x77A7,\n\t13434: 0x4E54,\n\t13435: 0x4FA8,\n\t13436: 0x5DE7,\n\t13437: 0x9798,\n\t13438: 0x64AC,\n\t13439: 0x7FD8,\n\t13440: 0x5CED,\n\t13441: 0x4FCF,\n\t13442: 0x7A8D,\n\t13443: 0x5207,\n\t13444: 0x8304,\n\t13445: 0x4E14,\n\t13446: 0x602F,\n\t13447: 0x7A83,\n\t13448: 0x94A6,\n\t13449: 0x4FB5,\n\t13450: 0x4EB2,\n\t13451: 0x79E6,\n\t13452: 0x7434,\n\t13453: 0x52E4,\n\t13454: 0x82B9,\n\t13455: 0x64D2,\n\t13456: 0x79BD,\n\t13457: 0x5BDD,\n\t13458: 0x6C81,\n\t13459: 0x9752,\n\t13460: 0x8F7B,\n\t13461: 0x6C22,\n\t13462: 0x503E,\n\t13463: 0x537F,\n\t13464: 0x6E05,\n\t13465: 0x64CE,\n\t13466: 0x6674,\n\t13467: 0x6C30,\n\t13468: 0x60C5,\n\t13469: 0x9877,\n\t13470: 0x8BF7,\n\t13471: 0x5E86,\n\t13472: 0x743C,\n\t13473: 0x7A77,\n\t13474: 0x79CB,\n\t13475: 0x4E18,\n\t13476: 0x90B1,\n\t13477: 0x7403,\n\t13478: 0x6C42,\n\t13479: 0x56DA,\n\t13480: 0x914B,\n\t13481: 0x6CC5,\n\t13482: 0x8D8B,\n\t13483: 0x533A,\n\t13484: 0x86C6,\n\t13485: 0x66F2,\n\t13486: 0x8EAF,\n\t13487: 0x5C48,\n\t13488: 0x9A71,\n\t13489: 0x6E20,\n\t13490: 0x83EE,\n\t13491: 0x83EF,\n\t13492: 0x83F3,\n\t13493: 0x83F4,\n\t13494: 0x83F5,\n\t13495: 0x83F6,\n\t13496: 0x83F7,\n\t13497: 0x83FA,\n\t13498: 0x83FB,\n\t13499: 0x83FC,\n\t13500: 0x83FE,\n\t13501: 0x83FF,\n\t13502: 0x8400,\n\t13503: 0x8402,\n\t13504: 0x8405,\n\t13505: 0x8407,\n\t13506: 0x8408,\n\t13507: 0x8409,\n\t13508: 0x840A,\n\t13509: 0x8410,\n\t13510: 0x8412,\n\t13511: 0x8413,\n\t13512: 0x8414,\n\t13513: 0x8415,\n\t13514: 0x8416,\n\t13515: 0x8417,\n\t13516: 0x8419,\n\t13517: 0x841A,\n\t13518: 0x841B,\n\t13519: 0x841E,\n\t13520: 0x841F,\n\t13521: 0x8420,\n\t13522: 0x8421,\n\t13523: 0x8422,\n\t13524: 0x8423,\n\t13525: 0x8429,\n\t13526: 0x842A,\n\t13527: 0x842B,\n\t13528: 0x842C,\n\t13529: 0x842D,\n\t13530: 0x842E,\n\t13531: 0x842F,\n\t13532: 0x8430,\n\t13533: 0x8432,\n\t13534: 0x8433,\n\t13535: 0x8434,\n\t13536: 0x8435,\n\t13537: 0x8436,\n\t13538: 0x8437,\n\t13539: 0x8439,\n\t13540: 0x843A,\n\t13541: 0x843B,\n\t13542: 0x843E,\n\t13543: 0x843F,\n\t13544: 0x8440,\n\t13545: 0x8441,\n\t13546: 0x8442,\n\t13547: 0x8443,\n\t13548: 0x8444,\n\t13549: 0x8445,\n\t13550: 0x8447,\n\t13551: 0x8448,\n\t13552: 0x8449,\n\t13553: 0x844A,\n\t13554: 0x844B,\n\t13555: 0x844C,\n\t13556: 0x844D,\n\t13557: 0x844E,\n\t13558: 0x844F,\n\t13559: 0x8450,\n\t13560: 0x8452,\n\t13561: 0x8453,\n\t13562: 0x8454,\n\t13563: 0x8455,\n\t13564: 0x8456,\n\t13565: 0x8458,\n\t13566: 0x845D,\n\t13567: 0x845E,\n\t13568: 0x845F,\n\t13569: 0x8460,\n\t13570: 0x8462,\n\t13571: 0x8464,\n\t13572: 0x8465,\n\t13573: 0x8466,\n\t13574: 0x8467,\n\t13575: 0x8468,\n\t13576: 0x846A,\n\t13577: 0x846E,\n\t13578: 0x846F,\n\t13579: 0x8470,\n\t13580: 0x8472,\n\t13581: 0x8474,\n\t13582: 0x8477,\n\t13583: 0x8479,\n\t13584: 0x847B,\n\t13585: 0x847C,\n\t13586: 0x53D6,\n\t13587: 0x5A36,\n\t13588: 0x9F8B,\n\t13589: 0x8DA3,\n\t13590: 0x53BB,\n\t13591: 0x5708,\n\t13592: 0x98A7,\n\t13593: 0x6743,\n\t13594: 0x919B,\n\t13595: 0x6CC9,\n\t13596: 0x5168,\n\t13597: 0x75CA,\n\t13598: 0x62F3,\n\t13599: 0x72AC,\n\t13600: 0x5238,\n\t13601: 0x529D,\n\t13602: 0x7F3A,\n\t13603: 0x7094,\n\t13604: 0x7638,\n\t13605: 0x5374,\n\t13606: 0x9E4A,\n\t13607: 0x69B7,\n\t13608: 0x786E,\n\t13609: 0x96C0,\n\t13610: 0x88D9,\n\t13611: 0x7FA4,\n\t13612: 0x7136,\n\t13613: 0x71C3,\n\t13614: 0x5189,\n\t13615: 0x67D3,\n\t13616: 0x74E4,\n\t13617: 0x58E4,\n\t13618: 0x6518,\n\t13619: 0x56B7,\n\t13620: 0x8BA9,\n\t13621: 0x9976,\n\t13622: 0x6270,\n\t13623: 0x7ED5,\n\t13624: 0x60F9,\n\t13625: 0x70ED,\n\t13626: 0x58EC,\n\t13627: 0x4EC1,\n\t13628: 0x4EBA,\n\t13629: 0x5FCD,\n\t13630: 0x97E7,\n\t13631: 0x4EFB,\n\t13632: 0x8BA4,\n\t13633: 0x5203,\n\t13634: 0x598A,\n\t13635: 0x7EAB,\n\t13636: 0x6254,\n\t13637: 0x4ECD,\n\t13638: 0x65E5,\n\t13639: 0x620E,\n\t13640: 0x8338,\n\t13641: 0x84C9,\n\t13642: 0x8363,\n\t13643: 0x878D,\n\t13644: 0x7194,\n\t13645: 0x6EB6,\n\t13646: 0x5BB9,\n\t13647: 0x7ED2,\n\t13648: 0x5197,\n\t13649: 0x63C9,\n\t13650: 0x67D4,\n\t13651: 0x8089,\n\t13652: 0x8339,\n\t13653: 0x8815,\n\t13654: 0x5112,\n\t13655: 0x5B7A,\n\t13656: 0x5982,\n\t13657: 0x8FB1,\n\t13658: 0x4E73,\n\t13659: 0x6C5D,\n\t13660: 0x5165,\n\t13661: 0x8925,\n\t13662: 0x8F6F,\n\t13663: 0x962E,\n\t13664: 0x854A,\n\t13665: 0x745E,\n\t13666: 0x9510,\n\t13667: 0x95F0,\n\t13668: 0x6DA6,\n\t13669: 0x82E5,\n\t13670: 0x5F31,\n\t13671: 0x6492,\n\t13672: 0x6D12,\n\t13673: 0x8428,\n\t13674: 0x816E,\n\t13675: 0x9CC3,\n\t13676: 0x585E,\n\t13677: 0x8D5B,\n\t13678: 0x4E09,\n\t13679: 0x53C1,\n\t13680: 0x847D,\n\t13681: 0x847E,\n\t13682: 0x847F,\n\t13683: 0x8480,\n\t13684: 0x8481,\n\t13685: 0x8483,\n\t13686: 0x8484,\n\t13687: 0x8485,\n\t13688: 0x8486,\n\t13689: 0x848A,\n\t13690: 0x848D,\n\t13691: 0x848F,\n\t13692: 0x8490,\n\t13693: 0x8491,\n\t13694: 0x8492,\n\t13695: 0x8493,\n\t13696: 0x8494,\n\t13697: 0x8495,\n\t13698: 0x8496,\n\t13699: 0x8498,\n\t13700: 0x849A,\n\t13701: 0x849B,\n\t13702: 0x849D,\n\t13703: 0x849E,\n\t13704: 0x849F,\n\t13705: 0x84A0,\n\t13706: 0x84A2,\n\t13707: 0x84A3,\n\t13708: 0x84A4,\n\t13709: 0x84A5,\n\t13710: 0x84A6,\n\t13711: 0x84A7,\n\t13712: 0x84A8,\n\t13713: 0x84A9,\n\t13714: 0x84AA,\n\t13715: 0x84AB,\n\t13716: 0x84AC,\n\t13717: 0x84AD,\n\t13718: 0x84AE,\n\t13719: 0x84B0,\n\t13720: 0x84B1,\n\t13721: 0x84B3,\n\t13722: 0x84B5,\n\t13723: 0x84B6,\n\t13724: 0x84B7,\n\t13725: 0x84BB,\n\t13726: 0x84BC,\n\t13727: 0x84BE,\n\t13728: 0x84C0,\n\t13729: 0x84C2,\n\t13730: 0x84C3,\n\t13731: 0x84C5,\n\t13732: 0x84C6,\n\t13733: 0x84C7,\n\t13734: 0x84C8,\n\t13735: 0x84CB,\n\t13736: 0x84CC,\n\t13737: 0x84CE,\n\t13738: 0x84CF,\n\t13739: 0x84D2,\n\t13740: 0x84D4,\n\t13741: 0x84D5,\n\t13742: 0x84D7,\n\t13743: 0x84D8,\n\t13744: 0x84D9,\n\t13745: 0x84DA,\n\t13746: 0x84DB,\n\t13747: 0x84DC,\n\t13748: 0x84DE,\n\t13749: 0x84E1,\n\t13750: 0x84E2,\n\t13751: 0x84E4,\n\t13752: 0x84E7,\n\t13753: 0x84E8,\n\t13754: 0x84E9,\n\t13755: 0x84EA,\n\t13756: 0x84EB,\n\t13757: 0x84ED,\n\t13758: 0x84EE,\n\t13759: 0x84EF,\n\t13760: 0x84F1,\n\t13761: 0x84F2,\n\t13762: 0x84F3,\n\t13763: 0x84F4,\n\t13764: 0x84F5,\n\t13765: 0x84F6,\n\t13766: 0x84F7,\n\t13767: 0x84F8,\n\t13768: 0x84F9,\n\t13769: 0x84FA,\n\t13770: 0x84FB,\n\t13771: 0x84FD,\n\t13772: 0x84FE,\n\t13773: 0x8500,\n\t13774: 0x8501,\n\t13775: 0x8502,\n\t13776: 0x4F1E,\n\t13777: 0x6563,\n\t13778: 0x6851,\n\t13779: 0x55D3,\n\t13780: 0x4E27,\n\t13781: 0x6414,\n\t13782: 0x9A9A,\n\t13783: 0x626B,\n\t13784: 0x5AC2,\n\t13785: 0x745F,\n\t13786: 0x8272,\n\t13787: 0x6DA9,\n\t13788: 0x68EE,\n\t13789: 0x50E7,\n\t13790: 0x838E,\n\t13791: 0x7802,\n\t13792: 0x6740,\n\t13793: 0x5239,\n\t13794: 0x6C99,\n\t13795: 0x7EB1,\n\t13796: 0x50BB,\n\t13797: 0x5565,\n\t13798: 0x715E,\n\t13799: 0x7B5B,\n\t13800: 0x6652,\n\t13801: 0x73CA,\n\t13802: 0x82EB,\n\t13803: 0x6749,\n\t13804: 0x5C71,\n\t13805: 0x5220,\n\t13806: 0x717D,\n\t13807: 0x886B,\n\t13808: 0x95EA,\n\t13809: 0x9655,\n\t13810: 0x64C5,\n\t13811: 0x8D61,\n\t13812: 0x81B3,\n\t13813: 0x5584,\n\t13814: 0x6C55,\n\t13815: 0x6247,\n\t13816: 0x7F2E,\n\t13817: 0x5892,\n\t13818: 0x4F24,\n\t13819: 0x5546,\n\t13820: 0x8D4F,\n\t13821: 0x664C,\n\t13822: 0x4E0A,\n\t13823: 0x5C1A,\n\t13824: 0x88F3,\n\t13825: 0x68A2,\n\t13826: 0x634E,\n\t13827: 0x7A0D,\n\t13828: 0x70E7,\n\t13829: 0x828D,\n\t13830: 0x52FA,\n\t13831: 0x97F6,\n\t13832: 0x5C11,\n\t13833: 0x54E8,\n\t13834: 0x90B5,\n\t13835: 0x7ECD,\n\t13836: 0x5962,\n\t13837: 0x8D4A,\n\t13838: 0x86C7,\n\t13839: 0x820C,\n\t13840: 0x820D,\n\t13841: 0x8D66,\n\t13842: 0x6444,\n\t13843: 0x5C04,\n\t13844: 0x6151,\n\t13845: 0x6D89,\n\t13846: 0x793E,\n\t13847: 0x8BBE,\n\t13848: 0x7837,\n\t13849: 0x7533,\n\t13850: 0x547B,\n\t13851: 0x4F38,\n\t13852: 0x8EAB,\n\t13853: 0x6DF1,\n\t13854: 0x5A20,\n\t13855: 0x7EC5,\n\t13856: 0x795E,\n\t13857: 0x6C88,\n\t13858: 0x5BA1,\n\t13859: 0x5A76,\n\t13860: 0x751A,\n\t13861: 0x80BE,\n\t13862: 0x614E,\n\t13863: 0x6E17,\n\t13864: 0x58F0,\n\t13865: 0x751F,\n\t13866: 0x7525,\n\t13867: 0x7272,\n\t13868: 0x5347,\n\t13869: 0x7EF3,\n\t13870: 0x8503,\n\t13871: 0x8504,\n\t13872: 0x8505,\n\t13873: 0x8506,\n\t13874: 0x8507,\n\t13875: 0x8508,\n\t13876: 0x8509,\n\t13877: 0x850A,\n\t13878: 0x850B,\n\t13879: 0x850D,\n\t13880: 0x850E,\n\t13881: 0x850F,\n\t13882: 0x8510,\n\t13883: 0x8512,\n\t13884: 0x8514,\n\t13885: 0x8515,\n\t13886: 0x8516,\n\t13887: 0x8518,\n\t13888: 0x8519,\n\t13889: 0x851B,\n\t13890: 0x851C,\n\t13891: 0x851D,\n\t13892: 0x851E,\n\t13893: 0x8520,\n\t13894: 0x8522,\n\t13895: 0x8523,\n\t13896: 0x8524,\n\t13897: 0x8525,\n\t13898: 0x8526,\n\t13899: 0x8527,\n\t13900: 0x8528,\n\t13901: 0x8529,\n\t13902: 0x852A,\n\t13903: 0x852D,\n\t13904: 0x852E,\n\t13905: 0x852F,\n\t13906: 0x8530,\n\t13907: 0x8531,\n\t13908: 0x8532,\n\t13909: 0x8533,\n\t13910: 0x8534,\n\t13911: 0x8535,\n\t13912: 0x8536,\n\t13913: 0x853E,\n\t13914: 0x853F,\n\t13915: 0x8540,\n\t13916: 0x8541,\n\t13917: 0x8542,\n\t13918: 0x8544,\n\t13919: 0x8545,\n\t13920: 0x8546,\n\t13921: 0x8547,\n\t13922: 0x854B,\n\t13923: 0x854C,\n\t13924: 0x854D,\n\t13925: 0x854E,\n\t13926: 0x854F,\n\t13927: 0x8550,\n\t13928: 0x8551,\n\t13929: 0x8552,\n\t13930: 0x8553,\n\t13931: 0x8554,\n\t13932: 0x8555,\n\t13933: 0x8557,\n\t13934: 0x8558,\n\t13935: 0x855A,\n\t13936: 0x855B,\n\t13937: 0x855C,\n\t13938: 0x855D,\n\t13939: 0x855F,\n\t13940: 0x8560,\n\t13941: 0x8561,\n\t13942: 0x8562,\n\t13943: 0x8563,\n\t13944: 0x8565,\n\t13945: 0x8566,\n\t13946: 0x8567,\n\t13947: 0x8569,\n\t13948: 0x856A,\n\t13949: 0x856B,\n\t13950: 0x856C,\n\t13951: 0x856D,\n\t13952: 0x856E,\n\t13953: 0x856F,\n\t13954: 0x8570,\n\t13955: 0x8571,\n\t13956: 0x8573,\n\t13957: 0x8575,\n\t13958: 0x8576,\n\t13959: 0x8577,\n\t13960: 0x8578,\n\t13961: 0x857C,\n\t13962: 0x857D,\n\t13963: 0x857F,\n\t13964: 0x8580,\n\t13965: 0x8581,\n\t13966: 0x7701,\n\t13967: 0x76DB,\n\t13968: 0x5269,\n\t13969: 0x80DC,\n\t13970: 0x5723,\n\t13971: 0x5E08,\n\t13972: 0x5931,\n\t13973: 0x72EE,\n\t13974: 0x65BD,\n\t13975: 0x6E7F,\n\t13976: 0x8BD7,\n\t13977: 0x5C38,\n\t13978: 0x8671,\n\t13979: 0x5341,\n\t13980: 0x77F3,\n\t13981: 0x62FE,\n\t13982: 0x65F6,\n\t13983: 0x4EC0,\n\t13984: 0x98DF,\n\t13985: 0x8680,\n\t13986: 0x5B9E,\n\t13987: 0x8BC6,\n\t13988: 0x53F2,\n\t13989: 0x77E2,\n\t13990: 0x4F7F,\n\t13991: 0x5C4E,\n\t13992: 0x9A76,\n\t13993: 0x59CB,\n\t13994: 0x5F0F,\n\t13995: 0x793A,\n\t13996: 0x58EB,\n\t13997: 0x4E16,\n\t13998: 0x67FF,\n\t13999: 0x4E8B,\n\t14000: 0x62ED,\n\t14001: 0x8A93,\n\t14002: 0x901D,\n\t14003: 0x52BF,\n\t14004: 0x662F,\n\t14005: 0x55DC,\n\t14006: 0x566C,\n\t14007: 0x9002,\n\t14008: 0x4ED5,\n\t14009: 0x4F8D,\n\t14010: 0x91CA,\n\t14011: 0x9970,\n\t14012: 0x6C0F,\n\t14013: 0x5E02,\n\t14014: 0x6043,\n\t14015: 0x5BA4,\n\t14016: 0x89C6,\n\t14017: 0x8BD5,\n\t14018: 0x6536,\n\t14019: 0x624B,\n\t14020: 0x9996,\n\t14021: 0x5B88,\n\t14022: 0x5BFF,\n\t14023: 0x6388,\n\t14024: 0x552E,\n\t14025: 0x53D7,\n\t14026: 0x7626,\n\t14027: 0x517D,\n\t14028: 0x852C,\n\t14029: 0x67A2,\n\t14030: 0x68B3,\n\t14031: 0x6B8A,\n\t14032: 0x6292,\n\t14033: 0x8F93,\n\t14034: 0x53D4,\n\t14035: 0x8212,\n\t14036: 0x6DD1,\n\t14037: 0x758F,\n\t14038: 0x4E66,\n\t14039: 0x8D4E,\n\t14040: 0x5B70,\n\t14041: 0x719F,\n\t14042: 0x85AF,\n\t14043: 0x6691,\n\t14044: 0x66D9,\n\t14045: 0x7F72,\n\t14046: 0x8700,\n\t14047: 0x9ECD,\n\t14048: 0x9F20,\n\t14049: 0x5C5E,\n\t14050: 0x672F,\n\t14051: 0x8FF0,\n\t14052: 0x6811,\n\t14053: 0x675F,\n\t14054: 0x620D,\n\t14055: 0x7AD6,\n\t14056: 0x5885,\n\t14057: 0x5EB6,\n\t14058: 0x6570,\n\t14059: 0x6F31,\n\t14060: 0x8582,\n\t14061: 0x8583,\n\t14062: 0x8586,\n\t14063: 0x8588,\n\t14064: 0x8589,\n\t14065: 0x858A,\n\t14066: 0x858B,\n\t14067: 0x858C,\n\t14068: 0x858D,\n\t14069: 0x858E,\n\t14070: 0x8590,\n\t14071: 0x8591,\n\t14072: 0x8592,\n\t14073: 0x8593,\n\t14074: 0x8594,\n\t14075: 0x8595,\n\t14076: 0x8596,\n\t14077: 0x8597,\n\t14078: 0x8598,\n\t14079: 0x8599,\n\t14080: 0x859A,\n\t14081: 0x859D,\n\t14082: 0x859E,\n\t14083: 0x859F,\n\t14084: 0x85A0,\n\t14085: 0x85A1,\n\t14086: 0x85A2,\n\t14087: 0x85A3,\n\t14088: 0x85A5,\n\t14089: 0x85A6,\n\t14090: 0x85A7,\n\t14091: 0x85A9,\n\t14092: 0x85AB,\n\t14093: 0x85AC,\n\t14094: 0x85AD,\n\t14095: 0x85B1,\n\t14096: 0x85B2,\n\t14097: 0x85B3,\n\t14098: 0x85B4,\n\t14099: 0x85B5,\n\t14100: 0x85B6,\n\t14101: 0x85B8,\n\t14102: 0x85BA,\n\t14103: 0x85BB,\n\t14104: 0x85BC,\n\t14105: 0x85BD,\n\t14106: 0x85BE,\n\t14107: 0x85BF,\n\t14108: 0x85C0,\n\t14109: 0x85C2,\n\t14110: 0x85C3,\n\t14111: 0x85C4,\n\t14112: 0x85C5,\n\t14113: 0x85C6,\n\t14114: 0x85C7,\n\t14115: 0x85C8,\n\t14116: 0x85CA,\n\t14117: 0x85CB,\n\t14118: 0x85CC,\n\t14119: 0x85CD,\n\t14120: 0x85CE,\n\t14121: 0x85D1,\n\t14122: 0x85D2,\n\t14123: 0x85D4,\n\t14124: 0x85D6,\n\t14125: 0x85D7,\n\t14126: 0x85D8,\n\t14127: 0x85D9,\n\t14128: 0x85DA,\n\t14129: 0x85DB,\n\t14130: 0x85DD,\n\t14131: 0x85DE,\n\t14132: 0x85DF,\n\t14133: 0x85E0,\n\t14134: 0x85E1,\n\t14135: 0x85E2,\n\t14136: 0x85E3,\n\t14137: 0x85E5,\n\t14138: 0x85E6,\n\t14139: 0x85E7,\n\t14140: 0x85E8,\n\t14141: 0x85EA,\n\t14142: 0x85EB,\n\t14143: 0x85EC,\n\t14144: 0x85ED,\n\t14145: 0x85EE,\n\t14146: 0x85EF,\n\t14147: 0x85F0,\n\t14148: 0x85F1,\n\t14149: 0x85F2,\n\t14150: 0x85F3,\n\t14151: 0x85F4,\n\t14152: 0x85F5,\n\t14153: 0x85F6,\n\t14154: 0x85F7,\n\t14155: 0x85F8,\n\t14156: 0x6055,\n\t14157: 0x5237,\n\t14158: 0x800D,\n\t14159: 0x6454,\n\t14160: 0x8870,\n\t14161: 0x7529,\n\t14162: 0x5E05,\n\t14163: 0x6813,\n\t14164: 0x62F4,\n\t14165: 0x971C,\n\t14166: 0x53CC,\n\t14167: 0x723D,\n\t14168: 0x8C01,\n\t14169: 0x6C34,\n\t14170: 0x7761,\n\t14171: 0x7A0E,\n\t14172: 0x542E,\n\t14173: 0x77AC,\n\t14174: 0x987A,\n\t14175: 0x821C,\n\t14176: 0x8BF4,\n\t14177: 0x7855,\n\t14178: 0x6714,\n\t14179: 0x70C1,\n\t14180: 0x65AF,\n\t14181: 0x6495,\n\t14182: 0x5636,\n\t14183: 0x601D,\n\t14184: 0x79C1,\n\t14185: 0x53F8,\n\t14186: 0x4E1D,\n\t14187: 0x6B7B,\n\t14188: 0x8086,\n\t14189: 0x5BFA,\n\t14190: 0x55E3,\n\t14191: 0x56DB,\n\t14192: 0x4F3A,\n\t14193: 0x4F3C,\n\t14194: 0x9972,\n\t14195: 0x5DF3,\n\t14196: 0x677E,\n\t14197: 0x8038,\n\t14198: 0x6002,\n\t14199: 0x9882,\n\t14200: 0x9001,\n\t14201: 0x5B8B,\n\t14202: 0x8BBC,\n\t14203: 0x8BF5,\n\t14204: 0x641C,\n\t14205: 0x8258,\n\t14206: 0x64DE,\n\t14207: 0x55FD,\n\t14208: 0x82CF,\n\t14209: 0x9165,\n\t14210: 0x4FD7,\n\t14211: 0x7D20,\n\t14212: 0x901F,\n\t14213: 0x7C9F,\n\t14214: 0x50F3,\n\t14215: 0x5851,\n\t14216: 0x6EAF,\n\t14217: 0x5BBF,\n\t14218: 0x8BC9,\n\t14219: 0x8083,\n\t14220: 0x9178,\n\t14221: 0x849C,\n\t14222: 0x7B97,\n\t14223: 0x867D,\n\t14224: 0x968B,\n\t14225: 0x968F,\n\t14226: 0x7EE5,\n\t14227: 0x9AD3,\n\t14228: 0x788E,\n\t14229: 0x5C81,\n\t14230: 0x7A57,\n\t14231: 0x9042,\n\t14232: 0x96A7,\n\t14233: 0x795F,\n\t14234: 0x5B59,\n\t14235: 0x635F,\n\t14236: 0x7B0B,\n\t14237: 0x84D1,\n\t14238: 0x68AD,\n\t14239: 0x5506,\n\t14240: 0x7F29,\n\t14241: 0x7410,\n\t14242: 0x7D22,\n\t14243: 0x9501,\n\t14244: 0x6240,\n\t14245: 0x584C,\n\t14246: 0x4ED6,\n\t14247: 0x5B83,\n\t14248: 0x5979,\n\t14249: 0x5854,\n\t14250: 0x85F9,\n\t14251: 0x85FA,\n\t14252: 0x85FC,\n\t14253: 0x85FD,\n\t14254: 0x85FE,\n\t14255: 0x8600,\n\t14256: 0x8601,\n\t14257: 0x8602,\n\t14258: 0x8603,\n\t14259: 0x8604,\n\t14260: 0x8606,\n\t14261: 0x8607,\n\t14262: 0x8608,\n\t14263: 0x8609,\n\t14264: 0x860A,\n\t14265: 0x860B,\n\t14266: 0x860C,\n\t14267: 0x860D,\n\t14268: 0x860E,\n\t14269: 0x860F,\n\t14270: 0x8610,\n\t14271: 0x8612,\n\t14272: 0x8613,\n\t14273: 0x8614,\n\t14274: 0x8615,\n\t14275: 0x8617,\n\t14276: 0x8618,\n\t14277: 0x8619,\n\t14278: 0x861A,\n\t14279: 0x861B,\n\t14280: 0x861C,\n\t14281: 0x861D,\n\t14282: 0x861E,\n\t14283: 0x861F,\n\t14284: 0x8620,\n\t14285: 0x8621,\n\t14286: 0x8622,\n\t14287: 0x8623,\n\t14288: 0x8624,\n\t14289: 0x8625,\n\t14290: 0x8626,\n\t14291: 0x8628,\n\t14292: 0x862A,\n\t14293: 0x862B,\n\t14294: 0x862C,\n\t14295: 0x862D,\n\t14296: 0x862E,\n\t14297: 0x862F,\n\t14298: 0x8630,\n\t14299: 0x8631,\n\t14300: 0x8632,\n\t14301: 0x8633,\n\t14302: 0x8634,\n\t14303: 0x8635,\n\t14304: 0x8636,\n\t14305: 0x8637,\n\t14306: 0x8639,\n\t14307: 0x863A,\n\t14308: 0x863B,\n\t14309: 0x863D,\n\t14310: 0x863E,\n\t14311: 0x863F,\n\t14312: 0x8640,\n\t14313: 0x8641,\n\t14314: 0x8642,\n\t14315: 0x8643,\n\t14316: 0x8644,\n\t14317: 0x8645,\n\t14318: 0x8646,\n\t14319: 0x8647,\n\t14320: 0x8648,\n\t14321: 0x8649,\n\t14322: 0x864A,\n\t14323: 0x864B,\n\t14324: 0x864C,\n\t14325: 0x8652,\n\t14326: 0x8653,\n\t14327: 0x8655,\n\t14328: 0x8656,\n\t14329: 0x8657,\n\t14330: 0x8658,\n\t14331: 0x8659,\n\t14332: 0x865B,\n\t14333: 0x865C,\n\t14334: 0x865D,\n\t14335: 0x865F,\n\t14336: 0x8660,\n\t14337: 0x8661,\n\t14338: 0x8663,\n\t14339: 0x8664,\n\t14340: 0x8665,\n\t14341: 0x8666,\n\t14342: 0x8667,\n\t14343: 0x8668,\n\t14344: 0x8669,\n\t14345: 0x866A,\n\t14346: 0x736D,\n\t14347: 0x631E,\n\t14348: 0x8E4B,\n\t14349: 0x8E0F,\n\t14350: 0x80CE,\n\t14351: 0x82D4,\n\t14352: 0x62AC,\n\t14353: 0x53F0,\n\t14354: 0x6CF0,\n\t14355: 0x915E,\n\t14356: 0x592A,\n\t14357: 0x6001,\n\t14358: 0x6C70,\n\t14359: 0x574D,\n\t14360: 0x644A,\n\t14361: 0x8D2A,\n\t14362: 0x762B,\n\t14363: 0x6EE9,\n\t14364: 0x575B,\n\t14365: 0x6A80,\n\t14366: 0x75F0,\n\t14367: 0x6F6D,\n\t14368: 0x8C2D,\n\t14369: 0x8C08,\n\t14370: 0x5766,\n\t14371: 0x6BEF,\n\t14372: 0x8892,\n\t14373: 0x78B3,\n\t14374: 0x63A2,\n\t14375: 0x53F9,\n\t14376: 0x70AD,\n\t14377: 0x6C64,\n\t14378: 0x5858,\n\t14379: 0x642A,\n\t14380: 0x5802,\n\t14381: 0x68E0,\n\t14382: 0x819B,\n\t14383: 0x5510,\n\t14384: 0x7CD6,\n\t14385: 0x5018,\n\t14386: 0x8EBA,\n\t14387: 0x6DCC,\n\t14388: 0x8D9F,\n\t14389: 0x70EB,\n\t14390: 0x638F,\n\t14391: 0x6D9B,\n\t14392: 0x6ED4,\n\t14393: 0x7EE6,\n\t14394: 0x8404,\n\t14395: 0x6843,\n\t14396: 0x9003,\n\t14397: 0x6DD8,\n\t14398: 0x9676,\n\t14399: 0x8BA8,\n\t14400: 0x5957,\n\t14401: 0x7279,\n\t14402: 0x85E4,\n\t14403: 0x817E,\n\t14404: 0x75BC,\n\t14405: 0x8A8A,\n\t14406: 0x68AF,\n\t14407: 0x5254,\n\t14408: 0x8E22,\n\t14409: 0x9511,\n\t14410: 0x63D0,\n\t14411: 0x9898,\n\t14412: 0x8E44,\n\t14413: 0x557C,\n\t14414: 0x4F53,\n\t14415: 0x66FF,\n\t14416: 0x568F,\n\t14417: 0x60D5,\n\t14418: 0x6D95,\n\t14419: 0x5243,\n\t14420: 0x5C49,\n\t14421: 0x5929,\n\t14422: 0x6DFB,\n\t14423: 0x586B,\n\t14424: 0x7530,\n\t14425: 0x751C,\n\t14426: 0x606C,\n\t14427: 0x8214,\n\t14428: 0x8146,\n\t14429: 0x6311,\n\t14430: 0x6761,\n\t14431: 0x8FE2,\n\t14432: 0x773A,\n\t14433: 0x8DF3,\n\t14434: 0x8D34,\n\t14435: 0x94C1,\n\t14436: 0x5E16,\n\t14437: 0x5385,\n\t14438: 0x542C,\n\t14439: 0x70C3,\n\t14440: 0x866D,\n\t14441: 0x866F,\n\t14442: 0x8670,\n\t14443: 0x8672,\n\t14444: 0x8673,\n\t14445: 0x8674,\n\t14446: 0x8675,\n\t14447: 0x8676,\n\t14448: 0x8677,\n\t14449: 0x8678,\n\t14450: 0x8683,\n\t14451: 0x8684,\n\t14452: 0x8685,\n\t14453: 0x8686,\n\t14454: 0x8687,\n\t14455: 0x8688,\n\t14456: 0x8689,\n\t14457: 0x868E,\n\t14458: 0x868F,\n\t14459: 0x8690,\n\t14460: 0x8691,\n\t14461: 0x8692,\n\t14462: 0x8694,\n\t14463: 0x8696,\n\t14464: 0x8697,\n\t14465: 0x8698,\n\t14466: 0x8699,\n\t14467: 0x869A,\n\t14468: 0x869B,\n\t14469: 0x869E,\n\t14470: 0x869F,\n\t14471: 0x86A0,\n\t14472: 0x86A1,\n\t14473: 0x86A2,\n\t14474: 0x86A5,\n\t14475: 0x86A6,\n\t14476: 0x86AB,\n\t14477: 0x86AD,\n\t14478: 0x86AE,\n\t14479: 0x86B2,\n\t14480: 0x86B3,\n\t14481: 0x86B7,\n\t14482: 0x86B8,\n\t14483: 0x86B9,\n\t14484: 0x86BB,\n\t14485: 0x86BC,\n\t14486: 0x86BD,\n\t14487: 0x86BE,\n\t14488: 0x86BF,\n\t14489: 0x86C1,\n\t14490: 0x86C2,\n\t14491: 0x86C3,\n\t14492: 0x86C5,\n\t14493: 0x86C8,\n\t14494: 0x86CC,\n\t14495: 0x86CD,\n\t14496: 0x86D2,\n\t14497: 0x86D3,\n\t14498: 0x86D5,\n\t14499: 0x86D6,\n\t14500: 0x86D7,\n\t14501: 0x86DA,\n\t14502: 0x86DC,\n\t14503: 0x86DD,\n\t14504: 0x86E0,\n\t14505: 0x86E1,\n\t14506: 0x86E2,\n\t14507: 0x86E3,\n\t14508: 0x86E5,\n\t14509: 0x86E6,\n\t14510: 0x86E7,\n\t14511: 0x86E8,\n\t14512: 0x86EA,\n\t14513: 0x86EB,\n\t14514: 0x86EC,\n\t14515: 0x86EF,\n\t14516: 0x86F5,\n\t14517: 0x86F6,\n\t14518: 0x86F7,\n\t14519: 0x86FA,\n\t14520: 0x86FB,\n\t14521: 0x86FC,\n\t14522: 0x86FD,\n\t14523: 0x86FF,\n\t14524: 0x8701,\n\t14525: 0x8704,\n\t14526: 0x8705,\n\t14527: 0x8706,\n\t14528: 0x870B,\n\t14529: 0x870C,\n\t14530: 0x870E,\n\t14531: 0x870F,\n\t14532: 0x8710,\n\t14533: 0x8711,\n\t14534: 0x8714,\n\t14535: 0x8716,\n\t14536: 0x6C40,\n\t14537: 0x5EF7,\n\t14538: 0x505C,\n\t14539: 0x4EAD,\n\t14540: 0x5EAD,\n\t14541: 0x633A,\n\t14542: 0x8247,\n\t14543: 0x901A,\n\t14544: 0x6850,\n\t14545: 0x916E,\n\t14546: 0x77B3,\n\t14547: 0x540C,\n\t14548: 0x94DC,\n\t14549: 0x5F64,\n\t14550: 0x7AE5,\n\t14551: 0x6876,\n\t14552: 0x6345,\n\t14553: 0x7B52,\n\t14554: 0x7EDF,\n\t14555: 0x75DB,\n\t14556: 0x5077,\n\t14557: 0x6295,\n\t14558: 0x5934,\n\t14559: 0x900F,\n\t14560: 0x51F8,\n\t14561: 0x79C3,\n\t14562: 0x7A81,\n\t14563: 0x56FE,\n\t14564: 0x5F92,\n\t14565: 0x9014,\n\t14566: 0x6D82,\n\t14567: 0x5C60,\n\t14568: 0x571F,\n\t14569: 0x5410,\n\t14570: 0x5154,\n\t14571: 0x6E4D,\n\t14572: 0x56E2,\n\t14573: 0x63A8,\n\t14574: 0x9893,\n\t14575: 0x817F,\n\t14576: 0x8715,\n\t14577: 0x892A,\n\t14578: 0x9000,\n\t14579: 0x541E,\n\t14580: 0x5C6F,\n\t14581: 0x81C0,\n\t14582: 0x62D6,\n\t14583: 0x6258,\n\t14584: 0x8131,\n\t14585: 0x9E35,\n\t14586: 0x9640,\n\t14587: 0x9A6E,\n\t14588: 0x9A7C,\n\t14589: 0x692D,\n\t14590: 0x59A5,\n\t14591: 0x62D3,\n\t14592: 0x553E,\n\t14593: 0x6316,\n\t14594: 0x54C7,\n\t14595: 0x86D9,\n\t14596: 0x6D3C,\n\t14597: 0x5A03,\n\t14598: 0x74E6,\n\t14599: 0x889C,\n\t14600: 0x6B6A,\n\t14601: 0x5916,\n\t14602: 0x8C4C,\n\t14603: 0x5F2F,\n\t14604: 0x6E7E,\n\t14605: 0x73A9,\n\t14606: 0x987D,\n\t14607: 0x4E38,\n\t14608: 0x70F7,\n\t14609: 0x5B8C,\n\t14610: 0x7897,\n\t14611: 0x633D,\n\t14612: 0x665A,\n\t14613: 0x7696,\n\t14614: 0x60CB,\n\t14615: 0x5B9B,\n\t14616: 0x5A49,\n\t14617: 0x4E07,\n\t14618: 0x8155,\n\t14619: 0x6C6A,\n\t14620: 0x738B,\n\t14621: 0x4EA1,\n\t14622: 0x6789,\n\t14623: 0x7F51,\n\t14624: 0x5F80,\n\t14625: 0x65FA,\n\t14626: 0x671B,\n\t14627: 0x5FD8,\n\t14628: 0x5984,\n\t14629: 0x5A01,\n\t14630: 0x8719,\n\t14631: 0x871B,\n\t14632: 0x871D,\n\t14633: 0x871F,\n\t14634: 0x8720,\n\t14635: 0x8724,\n\t14636: 0x8726,\n\t14637: 0x8727,\n\t14638: 0x8728,\n\t14639: 0x872A,\n\t14640: 0x872B,\n\t14641: 0x872C,\n\t14642: 0x872D,\n\t14643: 0x872F,\n\t14644: 0x8730,\n\t14645: 0x8732,\n\t14646: 0x8733,\n\t14647: 0x8735,\n\t14648: 0x8736,\n\t14649: 0x8738,\n\t14650: 0x8739,\n\t14651: 0x873A,\n\t14652: 0x873C,\n\t14653: 0x873D,\n\t14654: 0x8740,\n\t14655: 0x8741,\n\t14656: 0x8742,\n\t14657: 0x8743,\n\t14658: 0x8744,\n\t14659: 0x8745,\n\t14660: 0x8746,\n\t14661: 0x874A,\n\t14662: 0x874B,\n\t14663: 0x874D,\n\t14664: 0x874F,\n\t14665: 0x8750,\n\t14666: 0x8751,\n\t14667: 0x8752,\n\t14668: 0x8754,\n\t14669: 0x8755,\n\t14670: 0x8756,\n\t14671: 0x8758,\n\t14672: 0x875A,\n\t14673: 0x875B,\n\t14674: 0x875C,\n\t14675: 0x875D,\n\t14676: 0x875E,\n\t14677: 0x875F,\n\t14678: 0x8761,\n\t14679: 0x8762,\n\t14680: 0x8766,\n\t14681: 0x8767,\n\t14682: 0x8768,\n\t14683: 0x8769,\n\t14684: 0x876A,\n\t14685: 0x876B,\n\t14686: 0x876C,\n\t14687: 0x876D,\n\t14688: 0x876F,\n\t14689: 0x8771,\n\t14690: 0x8772,\n\t14691: 0x8773,\n\t14692: 0x8775,\n\t14693: 0x8777,\n\t14694: 0x8778,\n\t14695: 0x8779,\n\t14696: 0x877A,\n\t14697: 0x877F,\n\t14698: 0x8780,\n\t14699: 0x8781,\n\t14700: 0x8784,\n\t14701: 0x8786,\n\t14702: 0x8787,\n\t14703: 0x8789,\n\t14704: 0x878A,\n\t14705: 0x878C,\n\t14706: 0x878E,\n\t14707: 0x878F,\n\t14708: 0x8790,\n\t14709: 0x8791,\n\t14710: 0x8792,\n\t14711: 0x8794,\n\t14712: 0x8795,\n\t14713: 0x8796,\n\t14714: 0x8798,\n\t14715: 0x8799,\n\t14716: 0x879A,\n\t14717: 0x879B,\n\t14718: 0x879C,\n\t14719: 0x879D,\n\t14720: 0x879E,\n\t14721: 0x87A0,\n\t14722: 0x87A1,\n\t14723: 0x87A2,\n\t14724: 0x87A3,\n\t14725: 0x87A4,\n\t14726: 0x5DCD,\n\t14727: 0x5FAE,\n\t14728: 0x5371,\n\t14729: 0x97E6,\n\t14730: 0x8FDD,\n\t14731: 0x6845,\n\t14732: 0x56F4,\n\t14733: 0x552F,\n\t14734: 0x60DF,\n\t14735: 0x4E3A,\n\t14736: 0x6F4D,\n\t14737: 0x7EF4,\n\t14738: 0x82C7,\n\t14739: 0x840E,\n\t14740: 0x59D4,\n\t14741: 0x4F1F,\n\t14742: 0x4F2A,\n\t14743: 0x5C3E,\n\t14744: 0x7EAC,\n\t14745: 0x672A,\n\t14746: 0x851A,\n\t14747: 0x5473,\n\t14748: 0x754F,\n\t14749: 0x80C3,\n\t14750: 0x5582,\n\t14751: 0x9B4F,\n\t14752: 0x4F4D,\n\t14753: 0x6E2D,\n\t14754: 0x8C13,\n\t14755: 0x5C09,\n\t14756: 0x6170,\n\t14757: 0x536B,\n\t14758: 0x761F,\n\t14759: 0x6E29,\n\t14760: 0x868A,\n\t14761: 0x6587,\n\t14762: 0x95FB,\n\t14763: 0x7EB9,\n\t14764: 0x543B,\n\t14765: 0x7A33,\n\t14766: 0x7D0A,\n\t14767: 0x95EE,\n\t14768: 0x55E1,\n\t14769: 0x7FC1,\n\t14770: 0x74EE,\n\t14771: 0x631D,\n\t14772: 0x8717,\n\t14773: 0x6DA1,\n\t14774: 0x7A9D,\n\t14775: 0x6211,\n\t14776: 0x65A1,\n\t14777: 0x5367,\n\t14778: 0x63E1,\n\t14779: 0x6C83,\n\t14780: 0x5DEB,\n\t14781: 0x545C,\n\t14782: 0x94A8,\n\t14783: 0x4E4C,\n\t14784: 0x6C61,\n\t14785: 0x8BEC,\n\t14786: 0x5C4B,\n\t14787: 0x65E0,\n\t14788: 0x829C,\n\t14789: 0x68A7,\n\t14790: 0x543E,\n\t14791: 0x5434,\n\t14792: 0x6BCB,\n\t14793: 0x6B66,\n\t14794: 0x4E94,\n\t14795: 0x6342,\n\t14796: 0x5348,\n\t14797: 0x821E,\n\t14798: 0x4F0D,\n\t14799: 0x4FAE,\n\t14800: 0x575E,\n\t14801: 0x620A,\n\t14802: 0x96FE,\n\t14803: 0x6664,\n\t14804: 0x7269,\n\t14805: 0x52FF,\n\t14806: 0x52A1,\n\t14807: 0x609F,\n\t14808: 0x8BEF,\n\t14809: 0x6614,\n\t14810: 0x7199,\n\t14811: 0x6790,\n\t14812: 0x897F,\n\t14813: 0x7852,\n\t14814: 0x77FD,\n\t14815: 0x6670,\n\t14816: 0x563B,\n\t14817: 0x5438,\n\t14818: 0x9521,\n\t14819: 0x727A,\n\t14820: 0x87A5,\n\t14821: 0x87A6,\n\t14822: 0x87A7,\n\t14823: 0x87A9,\n\t14824: 0x87AA,\n\t14825: 0x87AE,\n\t14826: 0x87B0,\n\t14827: 0x87B1,\n\t14828: 0x87B2,\n\t14829: 0x87B4,\n\t14830: 0x87B6,\n\t14831: 0x87B7,\n\t14832: 0x87B8,\n\t14833: 0x87B9,\n\t14834: 0x87BB,\n\t14835: 0x87BC,\n\t14836: 0x87BE,\n\t14837: 0x87BF,\n\t14838: 0x87C1,\n\t14839: 0x87C2,\n\t14840: 0x87C3,\n\t14841: 0x87C4,\n\t14842: 0x87C5,\n\t14843: 0x87C7,\n\t14844: 0x87C8,\n\t14845: 0x87C9,\n\t14846: 0x87CC,\n\t14847: 0x87CD,\n\t14848: 0x87CE,\n\t14849: 0x87CF,\n\t14850: 0x87D0,\n\t14851: 0x87D4,\n\t14852: 0x87D5,\n\t14853: 0x87D6,\n\t14854: 0x87D7,\n\t14855: 0x87D8,\n\t14856: 0x87D9,\n\t14857: 0x87DA,\n\t14858: 0x87DC,\n\t14859: 0x87DD,\n\t14860: 0x87DE,\n\t14861: 0x87DF,\n\t14862: 0x87E1,\n\t14863: 0x87E2,\n\t14864: 0x87E3,\n\t14865: 0x87E4,\n\t14866: 0x87E6,\n\t14867: 0x87E7,\n\t14868: 0x87E8,\n\t14869: 0x87E9,\n\t14870: 0x87EB,\n\t14871: 0x87EC,\n\t14872: 0x87ED,\n\t14873: 0x87EF,\n\t14874: 0x87F0,\n\t14875: 0x87F1,\n\t14876: 0x87F2,\n\t14877: 0x87F3,\n\t14878: 0x87F4,\n\t14879: 0x87F5,\n\t14880: 0x87F6,\n\t14881: 0x87F7,\n\t14882: 0x87F8,\n\t14883: 0x87FA,\n\t14884: 0x87FB,\n\t14885: 0x87FC,\n\t14886: 0x87FD,\n\t14887: 0x87FF,\n\t14888: 0x8800,\n\t14889: 0x8801,\n\t14890: 0x8802,\n\t14891: 0x8804,\n\t14892: 0x8805,\n\t14893: 0x8806,\n\t14894: 0x8807,\n\t14895: 0x8808,\n\t14896: 0x8809,\n\t14897: 0x880B,\n\t14898: 0x880C,\n\t14899: 0x880D,\n\t14900: 0x880E,\n\t14901: 0x880F,\n\t14902: 0x8810,\n\t14903: 0x8811,\n\t14904: 0x8812,\n\t14905: 0x8814,\n\t14906: 0x8817,\n\t14907: 0x8818,\n\t14908: 0x8819,\n\t14909: 0x881A,\n\t14910: 0x881C,\n\t14911: 0x881D,\n\t14912: 0x881E,\n\t14913: 0x881F,\n\t14914: 0x8820,\n\t14915: 0x8823,\n\t14916: 0x7A00,\n\t14917: 0x606F,\n\t14918: 0x5E0C,\n\t14919: 0x6089,\n\t14920: 0x819D,\n\t14921: 0x5915,\n\t14922: 0x60DC,\n\t14923: 0x7184,\n\t14924: 0x70EF,\n\t14925: 0x6EAA,\n\t14926: 0x6C50,\n\t14927: 0x7280,\n\t14928: 0x6A84,\n\t14929: 0x88AD,\n\t14930: 0x5E2D,\n\t14931: 0x4E60,\n\t14932: 0x5AB3,\n\t14933: 0x559C,\n\t14934: 0x94E3,\n\t14935: 0x6D17,\n\t14936: 0x7CFB,\n\t14937: 0x9699,\n\t14938: 0x620F,\n\t14939: 0x7EC6,\n\t14940: 0x778E,\n\t14941: 0x867E,\n\t14942: 0x5323,\n\t14943: 0x971E,\n\t14944: 0x8F96,\n\t14945: 0x6687,\n\t14946: 0x5CE1,\n\t14947: 0x4FA0,\n\t14948: 0x72ED,\n\t14949: 0x4E0B,\n\t14950: 0x53A6,\n\t14951: 0x590F,\n\t14952: 0x5413,\n\t14953: 0x6380,\n\t14954: 0x9528,\n\t14955: 0x5148,\n\t14956: 0x4ED9,\n\t14957: 0x9C9C,\n\t14958: 0x7EA4,\n\t14959: 0x54B8,\n\t14960: 0x8D24,\n\t14961: 0x8854,\n\t14962: 0x8237,\n\t14963: 0x95F2,\n\t14964: 0x6D8E,\n\t14965: 0x5F26,\n\t14966: 0x5ACC,\n\t14967: 0x663E,\n\t14968: 0x9669,\n\t14969: 0x73B0,\n\t14970: 0x732E,\n\t14971: 0x53BF,\n\t14972: 0x817A,\n\t14973: 0x9985,\n\t14974: 0x7FA1,\n\t14975: 0x5BAA,\n\t14976: 0x9677,\n\t14977: 0x9650,\n\t14978: 0x7EBF,\n\t14979: 0x76F8,\n\t14980: 0x53A2,\n\t14981: 0x9576,\n\t14982: 0x9999,\n\t14983: 0x7BB1,\n\t14984: 0x8944,\n\t14985: 0x6E58,\n\t14986: 0x4E61,\n\t14987: 0x7FD4,\n\t14988: 0x7965,\n\t14989: 0x8BE6,\n\t14990: 0x60F3,\n\t14991: 0x54CD,\n\t14992: 0x4EAB,\n\t14993: 0x9879,\n\t14994: 0x5DF7,\n\t14995: 0x6A61,\n\t14996: 0x50CF,\n\t14997: 0x5411,\n\t14998: 0x8C61,\n\t14999: 0x8427,\n\t15000: 0x785D,\n\t15001: 0x9704,\n\t15002: 0x524A,\n\t15003: 0x54EE,\n\t15004: 0x56A3,\n\t15005: 0x9500,\n\t15006: 0x6D88,\n\t15007: 0x5BB5,\n\t15008: 0x6DC6,\n\t15009: 0x6653,\n\t15010: 0x8824,\n\t15011: 0x8825,\n\t15012: 0x8826,\n\t15013: 0x8827,\n\t15014: 0x8828,\n\t15015: 0x8829,\n\t15016: 0x882A,\n\t15017: 0x882B,\n\t15018: 0x882C,\n\t15019: 0x882D,\n\t15020: 0x882E,\n\t15021: 0x882F,\n\t15022: 0x8830,\n\t15023: 0x8831,\n\t15024: 0x8833,\n\t15025: 0x8834,\n\t15026: 0x8835,\n\t15027: 0x8836,\n\t15028: 0x8837,\n\t15029: 0x8838,\n\t15030: 0x883A,\n\t15031: 0x883B,\n\t15032: 0x883D,\n\t15033: 0x883E,\n\t15034: 0x883F,\n\t15035: 0x8841,\n\t15036: 0x8842,\n\t15037: 0x8843,\n\t15038: 0x8846,\n\t15039: 0x8847,\n\t15040: 0x8848,\n\t15041: 0x8849,\n\t15042: 0x884A,\n\t15043: 0x884B,\n\t15044: 0x884E,\n\t15045: 0x884F,\n\t15046: 0x8850,\n\t15047: 0x8851,\n\t15048: 0x8852,\n\t15049: 0x8853,\n\t15050: 0x8855,\n\t15051: 0x8856,\n\t15052: 0x8858,\n\t15053: 0x885A,\n\t15054: 0x885B,\n\t15055: 0x885C,\n\t15056: 0x885D,\n\t15057: 0x885E,\n\t15058: 0x885F,\n\t15059: 0x8860,\n\t15060: 0x8866,\n\t15061: 0x8867,\n\t15062: 0x886A,\n\t15063: 0x886D,\n\t15064: 0x886F,\n\t15065: 0x8871,\n\t15066: 0x8873,\n\t15067: 0x8874,\n\t15068: 0x8875,\n\t15069: 0x8876,\n\t15070: 0x8878,\n\t15071: 0x8879,\n\t15072: 0x887A,\n\t15073: 0x887B,\n\t15074: 0x887C,\n\t15075: 0x8880,\n\t15076: 0x8883,\n\t15077: 0x8886,\n\t15078: 0x8887,\n\t15079: 0x8889,\n\t15080: 0x888A,\n\t15081: 0x888C,\n\t15082: 0x888E,\n\t15083: 0x888F,\n\t15084: 0x8890,\n\t15085: 0x8891,\n\t15086: 0x8893,\n\t15087: 0x8894,\n\t15088: 0x8895,\n\t15089: 0x8897,\n\t15090: 0x8898,\n\t15091: 0x8899,\n\t15092: 0x889A,\n\t15093: 0x889B,\n\t15094: 0x889D,\n\t15095: 0x889E,\n\t15096: 0x889F,\n\t15097: 0x88A0,\n\t15098: 0x88A1,\n\t15099: 0x88A3,\n\t15100: 0x88A5,\n\t15101: 0x88A6,\n\t15102: 0x88A7,\n\t15103: 0x88A8,\n\t15104: 0x88A9,\n\t15105: 0x88AA,\n\t15106: 0x5C0F,\n\t15107: 0x5B5D,\n\t15108: 0x6821,\n\t15109: 0x8096,\n\t15110: 0x5578,\n\t15111: 0x7B11,\n\t15112: 0x6548,\n\t15113: 0x6954,\n\t15114: 0x4E9B,\n\t15115: 0x6B47,\n\t15116: 0x874E,\n\t15117: 0x978B,\n\t15118: 0x534F,\n\t15119: 0x631F,\n\t15120: 0x643A,\n\t15121: 0x90AA,\n\t15122: 0x659C,\n\t15123: 0x80C1,\n\t15124: 0x8C10,\n\t15125: 0x5199,\n\t15126: 0x68B0,\n\t15127: 0x5378,\n\t15128: 0x87F9,\n\t15129: 0x61C8,\n\t15130: 0x6CC4,\n\t15131: 0x6CFB,\n\t15132: 0x8C22,\n\t15133: 0x5C51,\n\t15134: 0x85AA,\n\t15135: 0x82AF,\n\t15136: 0x950C,\n\t15137: 0x6B23,\n\t15138: 0x8F9B,\n\t15139: 0x65B0,\n\t15140: 0x5FFB,\n\t15141: 0x5FC3,\n\t15142: 0x4FE1,\n\t15143: 0x8845,\n\t15144: 0x661F,\n\t15145: 0x8165,\n\t15146: 0x7329,\n\t15147: 0x60FA,\n\t15148: 0x5174,\n\t15149: 0x5211,\n\t15150: 0x578B,\n\t15151: 0x5F62,\n\t15152: 0x90A2,\n\t15153: 0x884C,\n\t15154: 0x9192,\n\t15155: 0x5E78,\n\t15156: 0x674F,\n\t15157: 0x6027,\n\t15158: 0x59D3,\n\t15159: 0x5144,\n\t15160: 0x51F6,\n\t15161: 0x80F8,\n\t15162: 0x5308,\n\t15163: 0x6C79,\n\t15164: 0x96C4,\n\t15165: 0x718A,\n\t15166: 0x4F11,\n\t15167: 0x4FEE,\n\t15168: 0x7F9E,\n\t15169: 0x673D,\n\t15170: 0x55C5,\n\t15171: 0x9508,\n\t15172: 0x79C0,\n\t15173: 0x8896,\n\t15174: 0x7EE3,\n\t15175: 0x589F,\n\t15176: 0x620C,\n\t15177: 0x9700,\n\t15178: 0x865A,\n\t15179: 0x5618,\n\t15180: 0x987B,\n\t15181: 0x5F90,\n\t15182: 0x8BB8,\n\t15183: 0x84C4,\n\t15184: 0x9157,\n\t15185: 0x53D9,\n\t15186: 0x65ED,\n\t15187: 0x5E8F,\n\t15188: 0x755C,\n\t15189: 0x6064,\n\t15190: 0x7D6E,\n\t15191: 0x5A7F,\n\t15192: 0x7EEA,\n\t15193: 0x7EED,\n\t15194: 0x8F69,\n\t15195: 0x55A7,\n\t15196: 0x5BA3,\n\t15197: 0x60AC,\n\t15198: 0x65CB,\n\t15199: 0x7384,\n\t15200: 0x88AC,\n\t15201: 0x88AE,\n\t15202: 0x88AF,\n\t15203: 0x88B0,\n\t15204: 0x88B2,\n\t15205: 0x88B3,\n\t15206: 0x88B4,\n\t15207: 0x88B5,\n\t15208: 0x88B6,\n\t15209: 0x88B8,\n\t15210: 0x88B9,\n\t15211: 0x88BA,\n\t15212: 0x88BB,\n\t15213: 0x88BD,\n\t15214: 0x88BE,\n\t15215: 0x88BF,\n\t15216: 0x88C0,\n\t15217: 0x88C3,\n\t15218: 0x88C4,\n\t15219: 0x88C7,\n\t15220: 0x88C8,\n\t15221: 0x88CA,\n\t15222: 0x88CB,\n\t15223: 0x88CC,\n\t15224: 0x88CD,\n\t15225: 0x88CF,\n\t15226: 0x88D0,\n\t15227: 0x88D1,\n\t15228: 0x88D3,\n\t15229: 0x88D6,\n\t15230: 0x88D7,\n\t15231: 0x88DA,\n\t15232: 0x88DB,\n\t15233: 0x88DC,\n\t15234: 0x88DD,\n\t15235: 0x88DE,\n\t15236: 0x88E0,\n\t15237: 0x88E1,\n\t15238: 0x88E6,\n\t15239: 0x88E7,\n\t15240: 0x88E9,\n\t15241: 0x88EA,\n\t15242: 0x88EB,\n\t15243: 0x88EC,\n\t15244: 0x88ED,\n\t15245: 0x88EE,\n\t15246: 0x88EF,\n\t15247: 0x88F2,\n\t15248: 0x88F5,\n\t15249: 0x88F6,\n\t15250: 0x88F7,\n\t15251: 0x88FA,\n\t15252: 0x88FB,\n\t15253: 0x88FD,\n\t15254: 0x88FF,\n\t15255: 0x8900,\n\t15256: 0x8901,\n\t15257: 0x8903,\n\t15258: 0x8904,\n\t15259: 0x8905,\n\t15260: 0x8906,\n\t15261: 0x8907,\n\t15262: 0x8908,\n\t15263: 0x8909,\n\t15264: 0x890B,\n\t15265: 0x890C,\n\t15266: 0x890D,\n\t15267: 0x890E,\n\t15268: 0x890F,\n\t15269: 0x8911,\n\t15270: 0x8914,\n\t15271: 0x8915,\n\t15272: 0x8916,\n\t15273: 0x8917,\n\t15274: 0x8918,\n\t15275: 0x891C,\n\t15276: 0x891D,\n\t15277: 0x891E,\n\t15278: 0x891F,\n\t15279: 0x8920,\n\t15280: 0x8922,\n\t15281: 0x8923,\n\t15282: 0x8924,\n\t15283: 0x8926,\n\t15284: 0x8927,\n\t15285: 0x8928,\n\t15286: 0x8929,\n\t15287: 0x892C,\n\t15288: 0x892D,\n\t15289: 0x892E,\n\t15290: 0x892F,\n\t15291: 0x8931,\n\t15292: 0x8932,\n\t15293: 0x8933,\n\t15294: 0x8935,\n\t15295: 0x8937,\n\t15296: 0x9009,\n\t15297: 0x7663,\n\t15298: 0x7729,\n\t15299: 0x7EDA,\n\t15300: 0x9774,\n\t15301: 0x859B,\n\t15302: 0x5B66,\n\t15303: 0x7A74,\n\t15304: 0x96EA,\n\t15305: 0x8840,\n\t15306: 0x52CB,\n\t15307: 0x718F,\n\t15308: 0x5FAA,\n\t15309: 0x65EC,\n\t15310: 0x8BE2,\n\t15311: 0x5BFB,\n\t15312: 0x9A6F,\n\t15313: 0x5DE1,\n\t15314: 0x6B89,\n\t15315: 0x6C5B,\n\t15316: 0x8BAD,\n\t15317: 0x8BAF,\n\t15318: 0x900A,\n\t15319: 0x8FC5,\n\t15320: 0x538B,\n\t15321: 0x62BC,\n\t15322: 0x9E26,\n\t15323: 0x9E2D,\n\t15324: 0x5440,\n\t15325: 0x4E2B,\n\t15326: 0x82BD,\n\t15327: 0x7259,\n\t15328: 0x869C,\n\t15329: 0x5D16,\n\t15330: 0x8859,\n\t15331: 0x6DAF,\n\t15332: 0x96C5,\n\t15333: 0x54D1,\n\t15334: 0x4E9A,\n\t15335: 0x8BB6,\n\t15336: 0x7109,\n\t15337: 0x54BD,\n\t15338: 0x9609,\n\t15339: 0x70DF,\n\t15340: 0x6DF9,\n\t15341: 0x76D0,\n\t15342: 0x4E25,\n\t15343: 0x7814,\n\t15344: 0x8712,\n\t15345: 0x5CA9,\n\t15346: 0x5EF6,\n\t15347: 0x8A00,\n\t15348: 0x989C,\n\t15349: 0x960E,\n\t15350: 0x708E,\n\t15351: 0x6CBF,\n\t15352: 0x5944,\n\t15353: 0x63A9,\n\t15354: 0x773C,\n\t15355: 0x884D,\n\t15356: 0x6F14,\n\t15357: 0x8273,\n\t15358: 0x5830,\n\t15359: 0x71D5,\n\t15360: 0x538C,\n\t15361: 0x781A,\n\t15362: 0x96C1,\n\t15363: 0x5501,\n\t15364: 0x5F66,\n\t15365: 0x7130,\n\t15366: 0x5BB4,\n\t15367: 0x8C1A,\n\t15368: 0x9A8C,\n\t15369: 0x6B83,\n\t15370: 0x592E,\n\t15371: 0x9E2F,\n\t15372: 0x79E7,\n\t15373: 0x6768,\n\t15374: 0x626C,\n\t15375: 0x4F6F,\n\t15376: 0x75A1,\n\t15377: 0x7F8A,\n\t15378: 0x6D0B,\n\t15379: 0x9633,\n\t15380: 0x6C27,\n\t15381: 0x4EF0,\n\t15382: 0x75D2,\n\t15383: 0x517B,\n\t15384: 0x6837,\n\t15385: 0x6F3E,\n\t15386: 0x9080,\n\t15387: 0x8170,\n\t15388: 0x5996,\n\t15389: 0x7476,\n\t15390: 0x8938,\n\t15391: 0x8939,\n\t15392: 0x893A,\n\t15393: 0x893B,\n\t15394: 0x893C,\n\t15395: 0x893D,\n\t15396: 0x893E,\n\t15397: 0x893F,\n\t15398: 0x8940,\n\t15399: 0x8942,\n\t15400: 0x8943,\n\t15401: 0x8945,\n\t15402: 0x8946,\n\t15403: 0x8947,\n\t15404: 0x8948,\n\t15405: 0x8949,\n\t15406: 0x894A,\n\t15407: 0x894B,\n\t15408: 0x894C,\n\t15409: 0x894D,\n\t15410: 0x894E,\n\t15411: 0x894F,\n\t15412: 0x8950,\n\t15413: 0x8951,\n\t15414: 0x8952,\n\t15415: 0x8953,\n\t15416: 0x8954,\n\t15417: 0x8955,\n\t15418: 0x8956,\n\t15419: 0x8957,\n\t15420: 0x8958,\n\t15421: 0x8959,\n\t15422: 0x895A,\n\t15423: 0x895B,\n\t15424: 0x895C,\n\t15425: 0x895D,\n\t15426: 0x8960,\n\t15427: 0x8961,\n\t15428: 0x8962,\n\t15429: 0x8963,\n\t15430: 0x8964,\n\t15431: 0x8965,\n\t15432: 0x8967,\n\t15433: 0x8968,\n\t15434: 0x8969,\n\t15435: 0x896A,\n\t15436: 0x896B,\n\t15437: 0x896C,\n\t15438: 0x896D,\n\t15439: 0x896E,\n\t15440: 0x896F,\n\t15441: 0x8970,\n\t15442: 0x8971,\n\t15443: 0x8972,\n\t15444: 0x8973,\n\t15445: 0x8974,\n\t15446: 0x8975,\n\t15447: 0x8976,\n\t15448: 0x8977,\n\t15449: 0x8978,\n\t15450: 0x8979,\n\t15451: 0x897A,\n\t15452: 0x897C,\n\t15453: 0x897D,\n\t15454: 0x897E,\n\t15455: 0x8980,\n\t15456: 0x8982,\n\t15457: 0x8984,\n\t15458: 0x8985,\n\t15459: 0x8987,\n\t15460: 0x8988,\n\t15461: 0x8989,\n\t15462: 0x898A,\n\t15463: 0x898B,\n\t15464: 0x898C,\n\t15465: 0x898D,\n\t15466: 0x898E,\n\t15467: 0x898F,\n\t15468: 0x8990,\n\t15469: 0x8991,\n\t15470: 0x8992,\n\t15471: 0x8993,\n\t15472: 0x8994,\n\t15473: 0x8995,\n\t15474: 0x8996,\n\t15475: 0x8997,\n\t15476: 0x8998,\n\t15477: 0x8999,\n\t15478: 0x899A,\n\t15479: 0x899B,\n\t15480: 0x899C,\n\t15481: 0x899D,\n\t15482: 0x899E,\n\t15483: 0x899F,\n\t15484: 0x89A0,\n\t15485: 0x89A1,\n\t15486: 0x6447,\n\t15487: 0x5C27,\n\t15488: 0x9065,\n\t15489: 0x7A91,\n\t15490: 0x8C23,\n\t15491: 0x59DA,\n\t15492: 0x54AC,\n\t15493: 0x8200,\n\t15494: 0x836F,\n\t15495: 0x8981,\n\t15496: 0x8000,\n\t15497: 0x6930,\n\t15498: 0x564E,\n\t15499: 0x8036,\n\t15500: 0x7237,\n\t15501: 0x91CE,\n\t15502: 0x51B6,\n\t15503: 0x4E5F,\n\t15504: 0x9875,\n\t15505: 0x6396,\n\t15506: 0x4E1A,\n\t15507: 0x53F6,\n\t15508: 0x66F3,\n\t15509: 0x814B,\n\t15510: 0x591C,\n\t15511: 0x6DB2,\n\t15512: 0x4E00,\n\t15513: 0x58F9,\n\t15514: 0x533B,\n\t15515: 0x63D6,\n\t15516: 0x94F1,\n\t15517: 0x4F9D,\n\t15518: 0x4F0A,\n\t15519: 0x8863,\n\t15520: 0x9890,\n\t15521: 0x5937,\n\t15522: 0x9057,\n\t15523: 0x79FB,\n\t15524: 0x4EEA,\n\t15525: 0x80F0,\n\t15526: 0x7591,\n\t15527: 0x6C82,\n\t15528: 0x5B9C,\n\t15529: 0x59E8,\n\t15530: 0x5F5D,\n\t15531: 0x6905,\n\t15532: 0x8681,\n\t15533: 0x501A,\n\t15534: 0x5DF2,\n\t15535: 0x4E59,\n\t15536: 0x77E3,\n\t15537: 0x4EE5,\n\t15538: 0x827A,\n\t15539: 0x6291,\n\t15540: 0x6613,\n\t15541: 0x9091,\n\t15542: 0x5C79,\n\t15543: 0x4EBF,\n\t15544: 0x5F79,\n\t15545: 0x81C6,\n\t15546: 0x9038,\n\t15547: 0x8084,\n\t15548: 0x75AB,\n\t15549: 0x4EA6,\n\t15550: 0x88D4,\n\t15551: 0x610F,\n\t15552: 0x6BC5,\n\t15553: 0x5FC6,\n\t15554: 0x4E49,\n\t15555: 0x76CA,\n\t15556: 0x6EA2,\n\t15557: 0x8BE3,\n\t15558: 0x8BAE,\n\t15559: 0x8C0A,\n\t15560: 0x8BD1,\n\t15561: 0x5F02,\n\t15562: 0x7FFC,\n\t15563: 0x7FCC,\n\t15564: 0x7ECE,\n\t15565: 0x8335,\n\t15566: 0x836B,\n\t15567: 0x56E0,\n\t15568: 0x6BB7,\n\t15569: 0x97F3,\n\t15570: 0x9634,\n\t15571: 0x59FB,\n\t15572: 0x541F,\n\t15573: 0x94F6,\n\t15574: 0x6DEB,\n\t15575: 0x5BC5,\n\t15576: 0x996E,\n\t15577: 0x5C39,\n\t15578: 0x5F15,\n\t15579: 0x9690,\n\t15580: 0x89A2,\n\t15581: 0x89A3,\n\t15582: 0x89A4,\n\t15583: 0x89A5,\n\t15584: 0x89A6,\n\t15585: 0x89A7,\n\t15586: 0x89A8,\n\t15587: 0x89A9,\n\t15588: 0x89AA,\n\t15589: 0x89AB,\n\t15590: 0x89AC,\n\t15591: 0x89AD,\n\t15592: 0x89AE,\n\t15593: 0x89AF,\n\t15594: 0x89B0,\n\t15595: 0x89B1,\n\t15596: 0x89B2,\n\t15597: 0x89B3,\n\t15598: 0x89B4,\n\t15599: 0x89B5,\n\t15600: 0x89B6,\n\t15601: 0x89B7,\n\t15602: 0x89B8,\n\t15603: 0x89B9,\n\t15604: 0x89BA,\n\t15605: 0x89BB,\n\t15606: 0x89BC,\n\t15607: 0x89BD,\n\t15608: 0x89BE,\n\t15609: 0x89BF,\n\t15610: 0x89C0,\n\t15611: 0x89C3,\n\t15612: 0x89CD,\n\t15613: 0x89D3,\n\t15614: 0x89D4,\n\t15615: 0x89D5,\n\t15616: 0x89D7,\n\t15617: 0x89D8,\n\t15618: 0x89D9,\n\t15619: 0x89DB,\n\t15620: 0x89DD,\n\t15621: 0x89DF,\n\t15622: 0x89E0,\n\t15623: 0x89E1,\n\t15624: 0x89E2,\n\t15625: 0x89E4,\n\t15626: 0x89E7,\n\t15627: 0x89E8,\n\t15628: 0x89E9,\n\t15629: 0x89EA,\n\t15630: 0x89EC,\n\t15631: 0x89ED,\n\t15632: 0x89EE,\n\t15633: 0x89F0,\n\t15634: 0x89F1,\n\t15635: 0x89F2,\n\t15636: 0x89F4,\n\t15637: 0x89F5,\n\t15638: 0x89F6,\n\t15639: 0x89F7,\n\t15640: 0x89F8,\n\t15641: 0x89F9,\n\t15642: 0x89FA,\n\t15643: 0x89FB,\n\t15644: 0x89FC,\n\t15645: 0x89FD,\n\t15646: 0x89FE,\n\t15647: 0x89FF,\n\t15648: 0x8A01,\n\t15649: 0x8A02,\n\t15650: 0x8A03,\n\t15651: 0x8A04,\n\t15652: 0x8A05,\n\t15653: 0x8A06,\n\t15654: 0x8A08,\n\t15655: 0x8A09,\n\t15656: 0x8A0A,\n\t15657: 0x8A0B,\n\t15658: 0x8A0C,\n\t15659: 0x8A0D,\n\t15660: 0x8A0E,\n\t15661: 0x8A0F,\n\t15662: 0x8A10,\n\t15663: 0x8A11,\n\t15664: 0x8A12,\n\t15665: 0x8A13,\n\t15666: 0x8A14,\n\t15667: 0x8A15,\n\t15668: 0x8A16,\n\t15669: 0x8A17,\n\t15670: 0x8A18,\n\t15671: 0x8A19,\n\t15672: 0x8A1A,\n\t15673: 0x8A1B,\n\t15674: 0x8A1C,\n\t15675: 0x8A1D,\n\t15676: 0x5370,\n\t15677: 0x82F1,\n\t15678: 0x6A31,\n\t15679: 0x5A74,\n\t15680: 0x9E70,\n\t15681: 0x5E94,\n\t15682: 0x7F28,\n\t15683: 0x83B9,\n\t15684: 0x8424,\n\t15685: 0x8425,\n\t15686: 0x8367,\n\t15687: 0x8747,\n\t15688: 0x8FCE,\n\t15689: 0x8D62,\n\t15690: 0x76C8,\n\t15691: 0x5F71,\n\t15692: 0x9896,\n\t15693: 0x786C,\n\t15694: 0x6620,\n\t15695: 0x54DF,\n\t15696: 0x62E5,\n\t15697: 0x4F63,\n\t15698: 0x81C3,\n\t15699: 0x75C8,\n\t15700: 0x5EB8,\n\t15701: 0x96CD,\n\t15702: 0x8E0A,\n\t15703: 0x86F9,\n\t15704: 0x548F,\n\t15705: 0x6CF3,\n\t15706: 0x6D8C,\n\t15707: 0x6C38,\n\t15708: 0x607F,\n\t15709: 0x52C7,\n\t15710: 0x7528,\n\t15711: 0x5E7D,\n\t15712: 0x4F18,\n\t15713: 0x60A0,\n\t15714: 0x5FE7,\n\t15715: 0x5C24,\n\t15716: 0x7531,\n\t15717: 0x90AE,\n\t15718: 0x94C0,\n\t15719: 0x72B9,\n\t15720: 0x6CB9,\n\t15721: 0x6E38,\n\t15722: 0x9149,\n\t15723: 0x6709,\n\t15724: 0x53CB,\n\t15725: 0x53F3,\n\t15726: 0x4F51,\n\t15727: 0x91C9,\n\t15728: 0x8BF1,\n\t15729: 0x53C8,\n\t15730: 0x5E7C,\n\t15731: 0x8FC2,\n\t15732: 0x6DE4,\n\t15733: 0x4E8E,\n\t15734: 0x76C2,\n\t15735: 0x6986,\n\t15736: 0x865E,\n\t15737: 0x611A,\n\t15738: 0x8206,\n\t15739: 0x4F59,\n\t15740: 0x4FDE,\n\t15741: 0x903E,\n\t15742: 0x9C7C,\n\t15743: 0x6109,\n\t15744: 0x6E1D,\n\t15745: 0x6E14,\n\t15746: 0x9685,\n\t15747: 0x4E88,\n\t15748: 0x5A31,\n\t15749: 0x96E8,\n\t15750: 0x4E0E,\n\t15751: 0x5C7F,\n\t15752: 0x79B9,\n\t15753: 0x5B87,\n\t15754: 0x8BED,\n\t15755: 0x7FBD,\n\t15756: 0x7389,\n\t15757: 0x57DF,\n\t15758: 0x828B,\n\t15759: 0x90C1,\n\t15760: 0x5401,\n\t15761: 0x9047,\n\t15762: 0x55BB,\n\t15763: 0x5CEA,\n\t15764: 0x5FA1,\n\t15765: 0x6108,\n\t15766: 0x6B32,\n\t15767: 0x72F1,\n\t15768: 0x80B2,\n\t15769: 0x8A89,\n\t15770: 0x8A1E,\n\t15771: 0x8A1F,\n\t15772: 0x8A20,\n\t15773: 0x8A21,\n\t15774: 0x8A22,\n\t15775: 0x8A23,\n\t15776: 0x8A24,\n\t15777: 0x8A25,\n\t15778: 0x8A26,\n\t15779: 0x8A27,\n\t15780: 0x8A28,\n\t15781: 0x8A29,\n\t15782: 0x8A2A,\n\t15783: 0x8A2B,\n\t15784: 0x8A2C,\n\t15785: 0x8A2D,\n\t15786: 0x8A2E,\n\t15787: 0x8A2F,\n\t15788: 0x8A30,\n\t15789: 0x8A31,\n\t15790: 0x8A32,\n\t15791: 0x8A33,\n\t15792: 0x8A34,\n\t15793: 0x8A35,\n\t15794: 0x8A36,\n\t15795: 0x8A37,\n\t15796: 0x8A38,\n\t15797: 0x8A39,\n\t15798: 0x8A3A,\n\t15799: 0x8A3B,\n\t15800: 0x8A3C,\n\t15801: 0x8A3D,\n\t15802: 0x8A3F,\n\t15803: 0x8A40,\n\t15804: 0x8A41,\n\t15805: 0x8A42,\n\t15806: 0x8A43,\n\t15807: 0x8A44,\n\t15808: 0x8A45,\n\t15809: 0x8A46,\n\t15810: 0x8A47,\n\t15811: 0x8A49,\n\t15812: 0x8A4A,\n\t15813: 0x8A4B,\n\t15814: 0x8A4C,\n\t15815: 0x8A4D,\n\t15816: 0x8A4E,\n\t15817: 0x8A4F,\n\t15818: 0x8A50,\n\t15819: 0x8A51,\n\t15820: 0x8A52,\n\t15821: 0x8A53,\n\t15822: 0x8A54,\n\t15823: 0x8A55,\n\t15824: 0x8A56,\n\t15825: 0x8A57,\n\t15826: 0x8A58,\n\t15827: 0x8A59,\n\t15828: 0x8A5A,\n\t15829: 0x8A5B,\n\t15830: 0x8A5C,\n\t15831: 0x8A5D,\n\t15832: 0x8A5E,\n\t15833: 0x8A5F,\n\t15834: 0x8A60,\n\t15835: 0x8A61,\n\t15836: 0x8A62,\n\t15837: 0x8A63,\n\t15838: 0x8A64,\n\t15839: 0x8A65,\n\t15840: 0x8A66,\n\t15841: 0x8A67,\n\t15842: 0x8A68,\n\t15843: 0x8A69,\n\t15844: 0x8A6A,\n\t15845: 0x8A6B,\n\t15846: 0x8A6C,\n\t15847: 0x8A6D,\n\t15848: 0x8A6E,\n\t15849: 0x8A6F,\n\t15850: 0x8A70,\n\t15851: 0x8A71,\n\t15852: 0x8A72,\n\t15853: 0x8A73,\n\t15854: 0x8A74,\n\t15855: 0x8A75,\n\t15856: 0x8A76,\n\t15857: 0x8A77,\n\t15858: 0x8A78,\n\t15859: 0x8A7A,\n\t15860: 0x8A7B,\n\t15861: 0x8A7C,\n\t15862: 0x8A7D,\n\t15863: 0x8A7E,\n\t15864: 0x8A7F,\n\t15865: 0x8A80,\n\t15866: 0x6D74,\n\t15867: 0x5BD3,\n\t15868: 0x88D5,\n\t15869: 0x9884,\n\t15870: 0x8C6B,\n\t15871: 0x9A6D,\n\t15872: 0x9E33,\n\t15873: 0x6E0A,\n\t15874: 0x51A4,\n\t15875: 0x5143,\n\t15876: 0x57A3,\n\t15877: 0x8881,\n\t15878: 0x539F,\n\t15879: 0x63F4,\n\t15880: 0x8F95,\n\t15881: 0x56ED,\n\t15882: 0x5458,\n\t15883: 0x5706,\n\t15884: 0x733F,\n\t15885: 0x6E90,\n\t15886: 0x7F18,\n\t15887: 0x8FDC,\n\t15888: 0x82D1,\n\t15889: 0x613F,\n\t15890: 0x6028,\n\t15891: 0x9662,\n\t15892: 0x66F0,\n\t15893: 0x7EA6,\n\t15894: 0x8D8A,\n\t15895: 0x8DC3,\n\t15896: 0x94A5,\n\t15897: 0x5CB3,\n\t15898: 0x7CA4,\n\t15899: 0x6708,\n\t15900: 0x60A6,\n\t15901: 0x9605,\n\t15902: 0x8018,\n\t15903: 0x4E91,\n\t15904: 0x90E7,\n\t15905: 0x5300,\n\t15906: 0x9668,\n\t15907: 0x5141,\n\t15908: 0x8FD0,\n\t15909: 0x8574,\n\t15910: 0x915D,\n\t15911: 0x6655,\n\t15912: 0x97F5,\n\t15913: 0x5B55,\n\t15914: 0x531D,\n\t15915: 0x7838,\n\t15916: 0x6742,\n\t15917: 0x683D,\n\t15918: 0x54C9,\n\t15919: 0x707E,\n\t15920: 0x5BB0,\n\t15921: 0x8F7D,\n\t15922: 0x518D,\n\t15923: 0x5728,\n\t15924: 0x54B1,\n\t15925: 0x6512,\n\t15926: 0x6682,\n\t15927: 0x8D5E,\n\t15928: 0x8D43,\n\t15929: 0x810F,\n\t15930: 0x846C,\n\t15931: 0x906D,\n\t15932: 0x7CDF,\n\t15933: 0x51FF,\n\t15934: 0x85FB,\n\t15935: 0x67A3,\n\t15936: 0x65E9,\n\t15937: 0x6FA1,\n\t15938: 0x86A4,\n\t15939: 0x8E81,\n\t15940: 0x566A,\n\t15941: 0x9020,\n\t15942: 0x7682,\n\t15943: 0x7076,\n\t15944: 0x71E5,\n\t15945: 0x8D23,\n\t15946: 0x62E9,\n\t15947: 0x5219,\n\t15948: 0x6CFD,\n\t15949: 0x8D3C,\n\t15950: 0x600E,\n\t15951: 0x589E,\n\t15952: 0x618E,\n\t15953: 0x66FE,\n\t15954: 0x8D60,\n\t15955: 0x624E,\n\t15956: 0x55B3,\n\t15957: 0x6E23,\n\t15958: 0x672D,\n\t15959: 0x8F67,\n\t15960: 0x8A81,\n\t15961: 0x8A82,\n\t15962: 0x8A83,\n\t15963: 0x8A84,\n\t15964: 0x8A85,\n\t15965: 0x8A86,\n\t15966: 0x8A87,\n\t15967: 0x8A88,\n\t15968: 0x8A8B,\n\t15969: 0x8A8C,\n\t15970: 0x8A8D,\n\t15971: 0x8A8E,\n\t15972: 0x8A8F,\n\t15973: 0x8A90,\n\t15974: 0x8A91,\n\t15975: 0x8A92,\n\t15976: 0x8A94,\n\t15977: 0x8A95,\n\t15978: 0x8A96,\n\t15979: 0x8A97,\n\t15980: 0x8A98,\n\t15981: 0x8A99,\n\t15982: 0x8A9A,\n\t15983: 0x8A9B,\n\t15984: 0x8A9C,\n\t15985: 0x8A9D,\n\t15986: 0x8A9E,\n\t15987: 0x8A9F,\n\t15988: 0x8AA0,\n\t15989: 0x8AA1,\n\t15990: 0x8AA2,\n\t15991: 0x8AA3,\n\t15992: 0x8AA4,\n\t15993: 0x8AA5,\n\t15994: 0x8AA6,\n\t15995: 0x8AA7,\n\t15996: 0x8AA8,\n\t15997: 0x8AA9,\n\t15998: 0x8AAA,\n\t15999: 0x8AAB,\n\t16000: 0x8AAC,\n\t16001: 0x8AAD,\n\t16002: 0x8AAE,\n\t16003: 0x8AAF,\n\t16004: 0x8AB0,\n\t16005: 0x8AB1,\n\t16006: 0x8AB2,\n\t16007: 0x8AB3,\n\t16008: 0x8AB4,\n\t16009: 0x8AB5,\n\t16010: 0x8AB6,\n\t16011: 0x8AB7,\n\t16012: 0x8AB8,\n\t16013: 0x8AB9,\n\t16014: 0x8ABA,\n\t16015: 0x8ABB,\n\t16016: 0x8ABC,\n\t16017: 0x8ABD,\n\t16018: 0x8ABE,\n\t16019: 0x8ABF,\n\t16020: 0x8AC0,\n\t16021: 0x8AC1,\n\t16022: 0x8AC2,\n\t16023: 0x8AC3,\n\t16024: 0x8AC4,\n\t16025: 0x8AC5,\n\t16026: 0x8AC6,\n\t16027: 0x8AC7,\n\t16028: 0x8AC8,\n\t16029: 0x8AC9,\n\t16030: 0x8ACA,\n\t16031: 0x8ACB,\n\t16032: 0x8ACC,\n\t16033: 0x8ACD,\n\t16034: 0x8ACE,\n\t16035: 0x8ACF,\n\t16036: 0x8AD0,\n\t16037: 0x8AD1,\n\t16038: 0x8AD2,\n\t16039: 0x8AD3,\n\t16040: 0x8AD4,\n\t16041: 0x8AD5,\n\t16042: 0x8AD6,\n\t16043: 0x8AD7,\n\t16044: 0x8AD8,\n\t16045: 0x8AD9,\n\t16046: 0x8ADA,\n\t16047: 0x8ADB,\n\t16048: 0x8ADC,\n\t16049: 0x8ADD,\n\t16050: 0x8ADE,\n\t16051: 0x8ADF,\n\t16052: 0x8AE0,\n\t16053: 0x8AE1,\n\t16054: 0x8AE2,\n\t16055: 0x8AE3,\n\t16056: 0x94E1,\n\t16057: 0x95F8,\n\t16058: 0x7728,\n\t16059: 0x6805,\n\t16060: 0x69A8,\n\t16061: 0x548B,\n\t16062: 0x4E4D,\n\t16063: 0x70B8,\n\t16064: 0x8BC8,\n\t16065: 0x6458,\n\t16066: 0x658B,\n\t16067: 0x5B85,\n\t16068: 0x7A84,\n\t16069: 0x503A,\n\t16070: 0x5BE8,\n\t16071: 0x77BB,\n\t16072: 0x6BE1,\n\t16073: 0x8A79,\n\t16074: 0x7C98,\n\t16075: 0x6CBE,\n\t16076: 0x76CF,\n\t16077: 0x65A9,\n\t16078: 0x8F97,\n\t16079: 0x5D2D,\n\t16080: 0x5C55,\n\t16081: 0x8638,\n\t16082: 0x6808,\n\t16083: 0x5360,\n\t16084: 0x6218,\n\t16085: 0x7AD9,\n\t16086: 0x6E5B,\n\t16087: 0x7EFD,\n\t16088: 0x6A1F,\n\t16089: 0x7AE0,\n\t16090: 0x5F70,\n\t16091: 0x6F33,\n\t16092: 0x5F20,\n\t16093: 0x638C,\n\t16094: 0x6DA8,\n\t16095: 0x6756,\n\t16096: 0x4E08,\n\t16097: 0x5E10,\n\t16098: 0x8D26,\n\t16099: 0x4ED7,\n\t16100: 0x80C0,\n\t16101: 0x7634,\n\t16102: 0x969C,\n\t16103: 0x62DB,\n\t16104: 0x662D,\n\t16105: 0x627E,\n\t16106: 0x6CBC,\n\t16107: 0x8D75,\n\t16108: 0x7167,\n\t16109: 0x7F69,\n\t16110: 0x5146,\n\t16111: 0x8087,\n\t16112: 0x53EC,\n\t16113: 0x906E,\n\t16114: 0x6298,\n\t16115: 0x54F2,\n\t16116: 0x86F0,\n\t16117: 0x8F99,\n\t16118: 0x8005,\n\t16119: 0x9517,\n\t16120: 0x8517,\n\t16121: 0x8FD9,\n\t16122: 0x6D59,\n\t16123: 0x73CD,\n\t16124: 0x659F,\n\t16125: 0x771F,\n\t16126: 0x7504,\n\t16127: 0x7827,\n\t16128: 0x81FB,\n\t16129: 0x8D1E,\n\t16130: 0x9488,\n\t16131: 0x4FA6,\n\t16132: 0x6795,\n\t16133: 0x75B9,\n\t16134: 0x8BCA,\n\t16135: 0x9707,\n\t16136: 0x632F,\n\t16137: 0x9547,\n\t16138: 0x9635,\n\t16139: 0x84B8,\n\t16140: 0x6323,\n\t16141: 0x7741,\n\t16142: 0x5F81,\n\t16143: 0x72F0,\n\t16144: 0x4E89,\n\t16145: 0x6014,\n\t16146: 0x6574,\n\t16147: 0x62EF,\n\t16148: 0x6B63,\n\t16149: 0x653F,\n\t16150: 0x8AE4,\n\t16151: 0x8AE5,\n\t16152: 0x8AE6,\n\t16153: 0x8AE7,\n\t16154: 0x8AE8,\n\t16155: 0x8AE9,\n\t16156: 0x8AEA,\n\t16157: 0x8AEB,\n\t16158: 0x8AEC,\n\t16159: 0x8AED,\n\t16160: 0x8AEE,\n\t16161: 0x8AEF,\n\t16162: 0x8AF0,\n\t16163: 0x8AF1,\n\t16164: 0x8AF2,\n\t16165: 0x8AF3,\n\t16166: 0x8AF4,\n\t16167: 0x8AF5,\n\t16168: 0x8AF6,\n\t16169: 0x8AF7,\n\t16170: 0x8AF8,\n\t16171: 0x8AF9,\n\t16172: 0x8AFA,\n\t16173: 0x8AFB,\n\t16174: 0x8AFC,\n\t16175: 0x8AFD,\n\t16176: 0x8AFE,\n\t16177: 0x8AFF,\n\t16178: 0x8B00,\n\t16179: 0x8B01,\n\t16180: 0x8B02,\n\t16181: 0x8B03,\n\t16182: 0x8B04,\n\t16183: 0x8B05,\n\t16184: 0x8B06,\n\t16185: 0x8B08,\n\t16186: 0x8B09,\n\t16187: 0x8B0A,\n\t16188: 0x8B0B,\n\t16189: 0x8B0C,\n\t16190: 0x8B0D,\n\t16191: 0x8B0E,\n\t16192: 0x8B0F,\n\t16193: 0x8B10,\n\t16194: 0x8B11,\n\t16195: 0x8B12,\n\t16196: 0x8B13,\n\t16197: 0x8B14,\n\t16198: 0x8B15,\n\t16199: 0x8B16,\n\t16200: 0x8B17,\n\t16201: 0x8B18,\n\t16202: 0x8B19,\n\t16203: 0x8B1A,\n\t16204: 0x8B1B,\n\t16205: 0x8B1C,\n\t16206: 0x8B1D,\n\t16207: 0x8B1E,\n\t16208: 0x8B1F,\n\t16209: 0x8B20,\n\t16210: 0x8B21,\n\t16211: 0x8B22,\n\t16212: 0x8B23,\n\t16213: 0x8B24,\n\t16214: 0x8B25,\n\t16215: 0x8B27,\n\t16216: 0x8B28,\n\t16217: 0x8B29,\n\t16218: 0x8B2A,\n\t16219: 0x8B2B,\n\t16220: 0x8B2C,\n\t16221: 0x8B2D,\n\t16222: 0x8B2E,\n\t16223: 0x8B2F,\n\t16224: 0x8B30,\n\t16225: 0x8B31,\n\t16226: 0x8B32,\n\t16227: 0x8B33,\n\t16228: 0x8B34,\n\t16229: 0x8B35,\n\t16230: 0x8B36,\n\t16231: 0x8B37,\n\t16232: 0x8B38,\n\t16233: 0x8B39,\n\t16234: 0x8B3A,\n\t16235: 0x8B3B,\n\t16236: 0x8B3C,\n\t16237: 0x8B3D,\n\t16238: 0x8B3E,\n\t16239: 0x8B3F,\n\t16240: 0x8B40,\n\t16241: 0x8B41,\n\t16242: 0x8B42,\n\t16243: 0x8B43,\n\t16244: 0x8B44,\n\t16245: 0x8B45,\n\t16246: 0x5E27,\n\t16247: 0x75C7,\n\t16248: 0x90D1,\n\t16249: 0x8BC1,\n\t16250: 0x829D,\n\t16251: 0x679D,\n\t16252: 0x652F,\n\t16253: 0x5431,\n\t16254: 0x8718,\n\t16255: 0x77E5,\n\t16256: 0x80A2,\n\t16257: 0x8102,\n\t16258: 0x6C41,\n\t16259: 0x4E4B,\n\t16260: 0x7EC7,\n\t16261: 0x804C,\n\t16262: 0x76F4,\n\t16263: 0x690D,\n\t16264: 0x6B96,\n\t16265: 0x6267,\n\t16266: 0x503C,\n\t16267: 0x4F84,\n\t16268: 0x5740,\n\t16269: 0x6307,\n\t16270: 0x6B62,\n\t16271: 0x8DBE,\n\t16272: 0x53EA,\n\t16273: 0x65E8,\n\t16274: 0x7EB8,\n\t16275: 0x5FD7,\n\t16276: 0x631A,\n\t16277: 0x63B7,\n\t16278: 0x81F3,\n\t16279: 0x81F4,\n\t16280: 0x7F6E,\n\t16281: 0x5E1C,\n\t16282: 0x5CD9,\n\t16283: 0x5236,\n\t16284: 0x667A,\n\t16285: 0x79E9,\n\t16286: 0x7A1A,\n\t16287: 0x8D28,\n\t16288: 0x7099,\n\t16289: 0x75D4,\n\t16290: 0x6EDE,\n\t16291: 0x6CBB,\n\t16292: 0x7A92,\n\t16293: 0x4E2D,\n\t16294: 0x76C5,\n\t16295: 0x5FE0,\n\t16296: 0x949F,\n\t16297: 0x8877,\n\t16298: 0x7EC8,\n\t16299: 0x79CD,\n\t16300: 0x80BF,\n\t16301: 0x91CD,\n\t16302: 0x4EF2,\n\t16303: 0x4F17,\n\t16304: 0x821F,\n\t16305: 0x5468,\n\t16306: 0x5DDE,\n\t16307: 0x6D32,\n\t16308: 0x8BCC,\n\t16309: 0x7CA5,\n\t16310: 0x8F74,\n\t16311: 0x8098,\n\t16312: 0x5E1A,\n\t16313: 0x5492,\n\t16314: 0x76B1,\n\t16315: 0x5B99,\n\t16316: 0x663C,\n\t16317: 0x9AA4,\n\t16318: 0x73E0,\n\t16319: 0x682A,\n\t16320: 0x86DB,\n\t16321: 0x6731,\n\t16322: 0x732A,\n\t16323: 0x8BF8,\n\t16324: 0x8BDB,\n\t16325: 0x9010,\n\t16326: 0x7AF9,\n\t16327: 0x70DB,\n\t16328: 0x716E,\n\t16329: 0x62C4,\n\t16330: 0x77A9,\n\t16331: 0x5631,\n\t16332: 0x4E3B,\n\t16333: 0x8457,\n\t16334: 0x67F1,\n\t16335: 0x52A9,\n\t16336: 0x86C0,\n\t16337: 0x8D2E,\n\t16338: 0x94F8,\n\t16339: 0x7B51,\n\t16340: 0x8B46,\n\t16341: 0x8B47,\n\t16342: 0x8B48,\n\t16343: 0x8B49,\n\t16344: 0x8B4A,\n\t16345: 0x8B4B,\n\t16346: 0x8B4C,\n\t16347: 0x8B4D,\n\t16348: 0x8B4E,\n\t16349: 0x8B4F,\n\t16350: 0x8B50,\n\t16351: 0x8B51,\n\t16352: 0x8B52,\n\t16353: 0x8B53,\n\t16354: 0x8B54,\n\t16355: 0x8B55,\n\t16356: 0x8B56,\n\t16357: 0x8B57,\n\t16358: 0x8B58,\n\t16359: 0x8B59,\n\t16360: 0x8B5A,\n\t16361: 0x8B5B,\n\t16362: 0x8B5C,\n\t16363: 0x8B5D,\n\t16364: 0x8B5E,\n\t16365: 0x8B5F,\n\t16366: 0x8B60,\n\t16367: 0x8B61,\n\t16368: 0x8B62,\n\t16369: 0x8B63,\n\t16370: 0x8B64,\n\t16371: 0x8B65,\n\t16372: 0x8B67,\n\t16373: 0x8B68,\n\t16374: 0x8B69,\n\t16375: 0x8B6A,\n\t16376: 0x8B6B,\n\t16377: 0x8B6D,\n\t16378: 0x8B6E,\n\t16379: 0x8B6F,\n\t16380: 0x8B70,\n\t16381: 0x8B71,\n\t16382: 0x8B72,\n\t16383: 0x8B73,\n\t16384: 0x8B74,\n\t16385: 0x8B75,\n\t16386: 0x8B76,\n\t16387: 0x8B77,\n\t16388: 0x8B78,\n\t16389: 0x8B79,\n\t16390: 0x8B7A,\n\t16391: 0x8B7B,\n\t16392: 0x8B7C,\n\t16393: 0x8B7D,\n\t16394: 0x8B7E,\n\t16395: 0x8B7F,\n\t16396: 0x8B80,\n\t16397: 0x8B81,\n\t16398: 0x8B82,\n\t16399: 0x8B83,\n\t16400: 0x8B84,\n\t16401: 0x8B85,\n\t16402: 0x8B86,\n\t16403: 0x8B87,\n\t16404: 0x8B88,\n\t16405: 0x8B89,\n\t16406: 0x8B8A,\n\t16407: 0x8B8B,\n\t16408: 0x8B8C,\n\t16409: 0x8B8D,\n\t16410: 0x8B8E,\n\t16411: 0x8B8F,\n\t16412: 0x8B90,\n\t16413: 0x8B91,\n\t16414: 0x8B92,\n\t16415: 0x8B93,\n\t16416: 0x8B94,\n\t16417: 0x8B95,\n\t16418: 0x8B96,\n\t16419: 0x8B97,\n\t16420: 0x8B98,\n\t16421: 0x8B99,\n\t16422: 0x8B9A,\n\t16423: 0x8B9B,\n\t16424: 0x8B9C,\n\t16425: 0x8B9D,\n\t16426: 0x8B9E,\n\t16427: 0x8B9F,\n\t16428: 0x8BAC,\n\t16429: 0x8BB1,\n\t16430: 0x8BBB,\n\t16431: 0x8BC7,\n\t16432: 0x8BD0,\n\t16433: 0x8BEA,\n\t16434: 0x8C09,\n\t16435: 0x8C1E,\n\t16436: 0x4F4F,\n\t16437: 0x6CE8,\n\t16438: 0x795D,\n\t16439: 0x9A7B,\n\t16440: 0x6293,\n\t16441: 0x722A,\n\t16442: 0x62FD,\n\t16443: 0x4E13,\n\t16444: 0x7816,\n\t16445: 0x8F6C,\n\t16446: 0x64B0,\n\t16447: 0x8D5A,\n\t16448: 0x7BC6,\n\t16449: 0x6869,\n\t16450: 0x5E84,\n\t16451: 0x88C5,\n\t16452: 0x5986,\n\t16453: 0x649E,\n\t16454: 0x58EE,\n\t16455: 0x72B6,\n\t16456: 0x690E,\n\t16457: 0x9525,\n\t16458: 0x8FFD,\n\t16459: 0x8D58,\n\t16460: 0x5760,\n\t16461: 0x7F00,\n\t16462: 0x8C06,\n\t16463: 0x51C6,\n\t16464: 0x6349,\n\t16465: 0x62D9,\n\t16466: 0x5353,\n\t16467: 0x684C,\n\t16468: 0x7422,\n\t16469: 0x8301,\n\t16470: 0x914C,\n\t16471: 0x5544,\n\t16472: 0x7740,\n\t16473: 0x707C,\n\t16474: 0x6D4A,\n\t16475: 0x5179,\n\t16476: 0x54A8,\n\t16477: 0x8D44,\n\t16478: 0x59FF,\n\t16479: 0x6ECB,\n\t16480: 0x6DC4,\n\t16481: 0x5B5C,\n\t16482: 0x7D2B,\n\t16483: 0x4ED4,\n\t16484: 0x7C7D,\n\t16485: 0x6ED3,\n\t16486: 0x5B50,\n\t16487: 0x81EA,\n\t16488: 0x6E0D,\n\t16489: 0x5B57,\n\t16490: 0x9B03,\n\t16491: 0x68D5,\n\t16492: 0x8E2A,\n\t16493: 0x5B97,\n\t16494: 0x7EFC,\n\t16495: 0x603B,\n\t16496: 0x7EB5,\n\t16497: 0x90B9,\n\t16498: 0x8D70,\n\t16499: 0x594F,\n\t16500: 0x63CD,\n\t16501: 0x79DF,\n\t16502: 0x8DB3,\n\t16503: 0x5352,\n\t16504: 0x65CF,\n\t16505: 0x7956,\n\t16506: 0x8BC5,\n\t16507: 0x963B,\n\t16508: 0x7EC4,\n\t16509: 0x94BB,\n\t16510: 0x7E82,\n\t16511: 0x5634,\n\t16512: 0x9189,\n\t16513: 0x6700,\n\t16514: 0x7F6A,\n\t16515: 0x5C0A,\n\t16516: 0x9075,\n\t16517: 0x6628,\n\t16518: 0x5DE6,\n\t16519: 0x4F50,\n\t16520: 0x67DE,\n\t16521: 0x505A,\n\t16522: 0x4F5C,\n\t16523: 0x5750,\n\t16524: 0x5EA7,\n\t16530: 0x8C38,\n\t16531: 0x8C39,\n\t16532: 0x8C3A,\n\t16533: 0x8C3B,\n\t16534: 0x8C3C,\n\t16535: 0x8C3D,\n\t16536: 0x8C3E,\n\t16537: 0x8C3F,\n\t16538: 0x8C40,\n\t16539: 0x8C42,\n\t16540: 0x8C43,\n\t16541: 0x8C44,\n\t16542: 0x8C45,\n\t16543: 0x8C48,\n\t16544: 0x8C4A,\n\t16545: 0x8C4B,\n\t16546: 0x8C4D,\n\t16547: 0x8C4E,\n\t16548: 0x8C4F,\n\t16549: 0x8C50,\n\t16550: 0x8C51,\n\t16551: 0x8C52,\n\t16552: 0x8C53,\n\t16553: 0x8C54,\n\t16554: 0x8C56,\n\t16555: 0x8C57,\n\t16556: 0x8C58,\n\t16557: 0x8C59,\n\t16558: 0x8C5B,\n\t16559: 0x8C5C,\n\t16560: 0x8C5D,\n\t16561: 0x8C5E,\n\t16562: 0x8C5F,\n\t16563: 0x8C60,\n\t16564: 0x8C63,\n\t16565: 0x8C64,\n\t16566: 0x8C65,\n\t16567: 0x8C66,\n\t16568: 0x8C67,\n\t16569: 0x8C68,\n\t16570: 0x8C69,\n\t16571: 0x8C6C,\n\t16572: 0x8C6D,\n\t16573: 0x8C6E,\n\t16574: 0x8C6F,\n\t16575: 0x8C70,\n\t16576: 0x8C71,\n\t16577: 0x8C72,\n\t16578: 0x8C74,\n\t16579: 0x8C75,\n\t16580: 0x8C76,\n\t16581: 0x8C77,\n\t16582: 0x8C7B,\n\t16583: 0x8C7C,\n\t16584: 0x8C7D,\n\t16585: 0x8C7E,\n\t16586: 0x8C7F,\n\t16587: 0x8C80,\n\t16588: 0x8C81,\n\t16589: 0x8C83,\n\t16590: 0x8C84,\n\t16591: 0x8C86,\n\t16592: 0x8C87,\n\t16593: 0x8C88,\n\t16594: 0x8C8B,\n\t16595: 0x8C8D,\n\t16596: 0x8C8E,\n\t16597: 0x8C8F,\n\t16598: 0x8C90,\n\t16599: 0x8C91,\n\t16600: 0x8C92,\n\t16601: 0x8C93,\n\t16602: 0x8C95,\n\t16603: 0x8C96,\n\t16604: 0x8C97,\n\t16605: 0x8C99,\n\t16606: 0x8C9A,\n\t16607: 0x8C9B,\n\t16608: 0x8C9C,\n\t16609: 0x8C9D,\n\t16610: 0x8C9E,\n\t16611: 0x8C9F,\n\t16612: 0x8CA0,\n\t16613: 0x8CA1,\n\t16614: 0x8CA2,\n\t16615: 0x8CA3,\n\t16616: 0x8CA4,\n\t16617: 0x8CA5,\n\t16618: 0x8CA6,\n\t16619: 0x8CA7,\n\t16620: 0x8CA8,\n\t16621: 0x8CA9,\n\t16622: 0x8CAA,\n\t16623: 0x8CAB,\n\t16624: 0x8CAC,\n\t16625: 0x8CAD,\n\t16626: 0x4E8D,\n\t16627: 0x4E0C,\n\t16628: 0x5140,\n\t16629: 0x4E10,\n\t16630: 0x5EFF,\n\t16631: 0x5345,\n\t16632: 0x4E15,\n\t16633: 0x4E98,\n\t16634: 0x4E1E,\n\t16635: 0x9B32,\n\t16636: 0x5B6C,\n\t16637: 0x5669,\n\t16638: 0x4E28,\n\t16639: 0x79BA,\n\t16640: 0x4E3F,\n\t16641: 0x5315,\n\t16642: 0x4E47,\n\t16643: 0x592D,\n\t16644: 0x723B,\n\t16645: 0x536E,\n\t16646: 0x6C10,\n\t16647: 0x56DF,\n\t16648: 0x80E4,\n\t16649: 0x9997,\n\t16650: 0x6BD3,\n\t16651: 0x777E,\n\t16652: 0x9F17,\n\t16653: 0x4E36,\n\t16654: 0x4E9F,\n\t16655: 0x9F10,\n\t16656: 0x4E5C,\n\t16657: 0x4E69,\n\t16658: 0x4E93,\n\t16659: 0x8288,\n\t16660: 0x5B5B,\n\t16661: 0x556C,\n\t16662: 0x560F,\n\t16663: 0x4EC4,\n\t16664: 0x538D,\n\t16665: 0x539D,\n\t16666: 0x53A3,\n\t16667: 0x53A5,\n\t16668: 0x53AE,\n\t16669: 0x9765,\n\t16670: 0x8D5D,\n\t16671: 0x531A,\n\t16672: 0x53F5,\n\t16673: 0x5326,\n\t16674: 0x532E,\n\t16675: 0x533E,\n\t16676: 0x8D5C,\n\t16677: 0x5366,\n\t16678: 0x5363,\n\t16679: 0x5202,\n\t16680: 0x5208,\n\t16681: 0x520E,\n\t16682: 0x522D,\n\t16683: 0x5233,\n\t16684: 0x523F,\n\t16685: 0x5240,\n\t16686: 0x524C,\n\t16687: 0x525E,\n\t16688: 0x5261,\n\t16689: 0x525C,\n\t16690: 0x84AF,\n\t16691: 0x527D,\n\t16692: 0x5282,\n\t16693: 0x5281,\n\t16694: 0x5290,\n\t16695: 0x5293,\n\t16696: 0x5182,\n\t16697: 0x7F54,\n\t16698: 0x4EBB,\n\t16699: 0x4EC3,\n\t16700: 0x4EC9,\n\t16701: 0x4EC2,\n\t16702: 0x4EE8,\n\t16703: 0x4EE1,\n\t16704: 0x4EEB,\n\t16705: 0x4EDE,\n\t16706: 0x4F1B,\n\t16707: 0x4EF3,\n\t16708: 0x4F22,\n\t16709: 0x4F64,\n\t16710: 0x4EF5,\n\t16711: 0x4F25,\n\t16712: 0x4F27,\n\t16713: 0x4F09,\n\t16714: 0x4F2B,\n\t16715: 0x4F5E,\n\t16716: 0x4F67,\n\t16717: 0x6538,\n\t16718: 0x4F5A,\n\t16719: 0x4F5D,\n\t16720: 0x8CAE,\n\t16721: 0x8CAF,\n\t16722: 0x8CB0,\n\t16723: 0x8CB1,\n\t16724: 0x8CB2,\n\t16725: 0x8CB3,\n\t16726: 0x8CB4,\n\t16727: 0x8CB5,\n\t16728: 0x8CB6,\n\t16729: 0x8CB7,\n\t16730: 0x8CB8,\n\t16731: 0x8CB9,\n\t16732: 0x8CBA,\n\t16733: 0x8CBB,\n\t16734: 0x8CBC,\n\t16735: 0x8CBD,\n\t16736: 0x8CBE,\n\t16737: 0x8CBF,\n\t16738: 0x8CC0,\n\t16739: 0x8CC1,\n\t16740: 0x8CC2,\n\t16741: 0x8CC3,\n\t16742: 0x8CC4,\n\t16743: 0x8CC5,\n\t16744: 0x8CC6,\n\t16745: 0x8CC7,\n\t16746: 0x8CC8,\n\t16747: 0x8CC9,\n\t16748: 0x8CCA,\n\t16749: 0x8CCB,\n\t16750: 0x8CCC,\n\t16751: 0x8CCD,\n\t16752: 0x8CCE,\n\t16753: 0x8CCF,\n\t16754: 0x8CD0,\n\t16755: 0x8CD1,\n\t16756: 0x8CD2,\n\t16757: 0x8CD3,\n\t16758: 0x8CD4,\n\t16759: 0x8CD5,\n\t16760: 0x8CD6,\n\t16761: 0x8CD7,\n\t16762: 0x8CD8,\n\t16763: 0x8CD9,\n\t16764: 0x8CDA,\n\t16765: 0x8CDB,\n\t16766: 0x8CDC,\n\t16767: 0x8CDD,\n\t16768: 0x8CDE,\n\t16769: 0x8CDF,\n\t16770: 0x8CE0,\n\t16771: 0x8CE1,\n\t16772: 0x8CE2,\n\t16773: 0x8CE3,\n\t16774: 0x8CE4,\n\t16775: 0x8CE5,\n\t16776: 0x8CE6,\n\t16777: 0x8CE7,\n\t16778: 0x8CE8,\n\t16779: 0x8CE9,\n\t16780: 0x8CEA,\n\t16781: 0x8CEB,\n\t16782: 0x8CEC,\n\t16783: 0x8CED,\n\t16784: 0x8CEE,\n\t16785: 0x8CEF,\n\t16786: 0x8CF0,\n\t16787: 0x8CF1,\n\t16788: 0x8CF2,\n\t16789: 0x8CF3,\n\t16790: 0x8CF4,\n\t16791: 0x8CF5,\n\t16792: 0x8CF6,\n\t16793: 0x8CF7,\n\t16794: 0x8CF8,\n\t16795: 0x8CF9,\n\t16796: 0x8CFA,\n\t16797: 0x8CFB,\n\t16798: 0x8CFC,\n\t16799: 0x8CFD,\n\t16800: 0x8CFE,\n\t16801: 0x8CFF,\n\t16802: 0x8D00,\n\t16803: 0x8D01,\n\t16804: 0x8D02,\n\t16805: 0x8D03,\n\t16806: 0x8D04,\n\t16807: 0x8D05,\n\t16808: 0x8D06,\n\t16809: 0x8D07,\n\t16810: 0x8D08,\n\t16811: 0x8D09,\n\t16812: 0x8D0A,\n\t16813: 0x8D0B,\n\t16814: 0x8D0C,\n\t16815: 0x8D0D,\n\t16816: 0x4F5F,\n\t16817: 0x4F57,\n\t16818: 0x4F32,\n\t16819: 0x4F3D,\n\t16820: 0x4F76,\n\t16821: 0x4F74,\n\t16822: 0x4F91,\n\t16823: 0x4F89,\n\t16824: 0x4F83,\n\t16825: 0x4F8F,\n\t16826: 0x4F7E,\n\t16827: 0x4F7B,\n\t16828: 0x4FAA,\n\t16829: 0x4F7C,\n\t16830: 0x4FAC,\n\t16831: 0x4F94,\n\t16832: 0x4FE6,\n\t16833: 0x4FE8,\n\t16834: 0x4FEA,\n\t16835: 0x4FC5,\n\t16836: 0x4FDA,\n\t16837: 0x4FE3,\n\t16838: 0x4FDC,\n\t16839: 0x4FD1,\n\t16840: 0x4FDF,\n\t16841: 0x4FF8,\n\t16842: 0x5029,\n\t16843: 0x504C,\n\t16844: 0x4FF3,\n\t16845: 0x502C,\n\t16846: 0x500F,\n\t16847: 0x502E,\n\t16848: 0x502D,\n\t16849: 0x4FFE,\n\t16850: 0x501C,\n\t16851: 0x500C,\n\t16852: 0x5025,\n\t16853: 0x5028,\n\t16854: 0x507E,\n\t16855: 0x5043,\n\t16856: 0x5055,\n\t16857: 0x5048,\n\t16858: 0x504E,\n\t16859: 0x506C,\n\t16860: 0x507B,\n\t16861: 0x50A5,\n\t16862: 0x50A7,\n\t16863: 0x50A9,\n\t16864: 0x50BA,\n\t16865: 0x50D6,\n\t16866: 0x5106,\n\t16867: 0x50ED,\n\t16868: 0x50EC,\n\t16869: 0x50E6,\n\t16870: 0x50EE,\n\t16871: 0x5107,\n\t16872: 0x510B,\n\t16873: 0x4EDD,\n\t16874: 0x6C3D,\n\t16875: 0x4F58,\n\t16876: 0x4F65,\n\t16877: 0x4FCE,\n\t16878: 0x9FA0,\n\t16879: 0x6C46,\n\t16880: 0x7C74,\n\t16881: 0x516E,\n\t16882: 0x5DFD,\n\t16883: 0x9EC9,\n\t16884: 0x9998,\n\t16885: 0x5181,\n\t16886: 0x5914,\n\t16887: 0x52F9,\n\t16888: 0x530D,\n\t16889: 0x8A07,\n\t16890: 0x5310,\n\t16891: 0x51EB,\n\t16892: 0x5919,\n\t16893: 0x5155,\n\t16894: 0x4EA0,\n\t16895: 0x5156,\n\t16896: 0x4EB3,\n\t16897: 0x886E,\n\t16898: 0x88A4,\n\t16899: 0x4EB5,\n\t16900: 0x8114,\n\t16901: 0x88D2,\n\t16902: 0x7980,\n\t16903: 0x5B34,\n\t16904: 0x8803,\n\t16905: 0x7FB8,\n\t16906: 0x51AB,\n\t16907: 0x51B1,\n\t16908: 0x51BD,\n\t16909: 0x51BC,\n\t16910: 0x8D0E,\n\t16911: 0x8D0F,\n\t16912: 0x8D10,\n\t16913: 0x8D11,\n\t16914: 0x8D12,\n\t16915: 0x8D13,\n\t16916: 0x8D14,\n\t16917: 0x8D15,\n\t16918: 0x8D16,\n\t16919: 0x8D17,\n\t16920: 0x8D18,\n\t16921: 0x8D19,\n\t16922: 0x8D1A,\n\t16923: 0x8D1B,\n\t16924: 0x8D1C,\n\t16925: 0x8D20,\n\t16926: 0x8D51,\n\t16927: 0x8D52,\n\t16928: 0x8D57,\n\t16929: 0x8D5F,\n\t16930: 0x8D65,\n\t16931: 0x8D68,\n\t16932: 0x8D69,\n\t16933: 0x8D6A,\n\t16934: 0x8D6C,\n\t16935: 0x8D6E,\n\t16936: 0x8D6F,\n\t16937: 0x8D71,\n\t16938: 0x8D72,\n\t16939: 0x8D78,\n\t16940: 0x8D79,\n\t16941: 0x8D7A,\n\t16942: 0x8D7B,\n\t16943: 0x8D7C,\n\t16944: 0x8D7D,\n\t16945: 0x8D7E,\n\t16946: 0x8D7F,\n\t16947: 0x8D80,\n\t16948: 0x8D82,\n\t16949: 0x8D83,\n\t16950: 0x8D86,\n\t16951: 0x8D87,\n\t16952: 0x8D88,\n\t16953: 0x8D89,\n\t16954: 0x8D8C,\n\t16955: 0x8D8D,\n\t16956: 0x8D8E,\n\t16957: 0x8D8F,\n\t16958: 0x8D90,\n\t16959: 0x8D92,\n\t16960: 0x8D93,\n\t16961: 0x8D95,\n\t16962: 0x8D96,\n\t16963: 0x8D97,\n\t16964: 0x8D98,\n\t16965: 0x8D99,\n\t16966: 0x8D9A,\n\t16967: 0x8D9B,\n\t16968: 0x8D9C,\n\t16969: 0x8D9D,\n\t16970: 0x8D9E,\n\t16971: 0x8DA0,\n\t16972: 0x8DA1,\n\t16973: 0x8DA2,\n\t16974: 0x8DA4,\n\t16975: 0x8DA5,\n\t16976: 0x8DA6,\n\t16977: 0x8DA7,\n\t16978: 0x8DA8,\n\t16979: 0x8DA9,\n\t16980: 0x8DAA,\n\t16981: 0x8DAB,\n\t16982: 0x8DAC,\n\t16983: 0x8DAD,\n\t16984: 0x8DAE,\n\t16985: 0x8DAF,\n\t16986: 0x8DB0,\n\t16987: 0x8DB2,\n\t16988: 0x8DB6,\n\t16989: 0x8DB7,\n\t16990: 0x8DB9,\n\t16991: 0x8DBB,\n\t16992: 0x8DBD,\n\t16993: 0x8DC0,\n\t16994: 0x8DC1,\n\t16995: 0x8DC2,\n\t16996: 0x8DC5,\n\t16997: 0x8DC7,\n\t16998: 0x8DC8,\n\t16999: 0x8DC9,\n\t17000: 0x8DCA,\n\t17001: 0x8DCD,\n\t17002: 0x8DD0,\n\t17003: 0x8DD2,\n\t17004: 0x8DD3,\n\t17005: 0x8DD4,\n\t17006: 0x51C7,\n\t17007: 0x5196,\n\t17008: 0x51A2,\n\t17009: 0x51A5,\n\t17010: 0x8BA0,\n\t17011: 0x8BA6,\n\t17012: 0x8BA7,\n\t17013: 0x8BAA,\n\t17014: 0x8BB4,\n\t17015: 0x8BB5,\n\t17016: 0x8BB7,\n\t17017: 0x8BC2,\n\t17018: 0x8BC3,\n\t17019: 0x8BCB,\n\t17020: 0x8BCF,\n\t17021: 0x8BCE,\n\t17022: 0x8BD2,\n\t17023: 0x8BD3,\n\t17024: 0x8BD4,\n\t17025: 0x8BD6,\n\t17026: 0x8BD8,\n\t17027: 0x8BD9,\n\t17028: 0x8BDC,\n\t17029: 0x8BDF,\n\t17030: 0x8BE0,\n\t17031: 0x8BE4,\n\t17032: 0x8BE8,\n\t17033: 0x8BE9,\n\t17034: 0x8BEE,\n\t17035: 0x8BF0,\n\t17036: 0x8BF3,\n\t17037: 0x8BF6,\n\t17038: 0x8BF9,\n\t17039: 0x8BFC,\n\t17040: 0x8BFF,\n\t17041: 0x8C00,\n\t17042: 0x8C02,\n\t17043: 0x8C04,\n\t17044: 0x8C07,\n\t17045: 0x8C0C,\n\t17046: 0x8C0F,\n\t17047: 0x8C11,\n\t17048: 0x8C12,\n\t17049: 0x8C14,\n\t17050: 0x8C15,\n\t17051: 0x8C16,\n\t17052: 0x8C19,\n\t17053: 0x8C1B,\n\t17054: 0x8C18,\n\t17055: 0x8C1D,\n\t17056: 0x8C1F,\n\t17057: 0x8C20,\n\t17058: 0x8C21,\n\t17059: 0x8C25,\n\t17060: 0x8C27,\n\t17061: 0x8C2A,\n\t17062: 0x8C2B,\n\t17063: 0x8C2E,\n\t17064: 0x8C2F,\n\t17065: 0x8C32,\n\t17066: 0x8C33,\n\t17067: 0x8C35,\n\t17068: 0x8C36,\n\t17069: 0x5369,\n\t17070: 0x537A,\n\t17071: 0x961D,\n\t17072: 0x9622,\n\t17073: 0x9621,\n\t17074: 0x9631,\n\t17075: 0x962A,\n\t17076: 0x963D,\n\t17077: 0x963C,\n\t17078: 0x9642,\n\t17079: 0x9649,\n\t17080: 0x9654,\n\t17081: 0x965F,\n\t17082: 0x9667,\n\t17083: 0x966C,\n\t17084: 0x9672,\n\t17085: 0x9674,\n\t17086: 0x9688,\n\t17087: 0x968D,\n\t17088: 0x9697,\n\t17089: 0x96B0,\n\t17090: 0x9097,\n\t17091: 0x909B,\n\t17092: 0x909D,\n\t17093: 0x9099,\n\t17094: 0x90AC,\n\t17095: 0x90A1,\n\t17096: 0x90B4,\n\t17097: 0x90B3,\n\t17098: 0x90B6,\n\t17099: 0x90BA,\n\t17100: 0x8DD5,\n\t17101: 0x8DD8,\n\t17102: 0x8DD9,\n\t17103: 0x8DDC,\n\t17104: 0x8DE0,\n\t17105: 0x8DE1,\n\t17106: 0x8DE2,\n\t17107: 0x8DE5,\n\t17108: 0x8DE6,\n\t17109: 0x8DE7,\n\t17110: 0x8DE9,\n\t17111: 0x8DED,\n\t17112: 0x8DEE,\n\t17113: 0x8DF0,\n\t17114: 0x8DF1,\n\t17115: 0x8DF2,\n\t17116: 0x8DF4,\n\t17117: 0x8DF6,\n\t17118: 0x8DFC,\n\t17119: 0x8DFE,\n\t17120: 0x8DFF,\n\t17121: 0x8E00,\n\t17122: 0x8E01,\n\t17123: 0x8E02,\n\t17124: 0x8E03,\n\t17125: 0x8E04,\n\t17126: 0x8E06,\n\t17127: 0x8E07,\n\t17128: 0x8E08,\n\t17129: 0x8E0B,\n\t17130: 0x8E0D,\n\t17131: 0x8E0E,\n\t17132: 0x8E10,\n\t17133: 0x8E11,\n\t17134: 0x8E12,\n\t17135: 0x8E13,\n\t17136: 0x8E15,\n\t17137: 0x8E16,\n\t17138: 0x8E17,\n\t17139: 0x8E18,\n\t17140: 0x8E19,\n\t17141: 0x8E1A,\n\t17142: 0x8E1B,\n\t17143: 0x8E1C,\n\t17144: 0x8E20,\n\t17145: 0x8E21,\n\t17146: 0x8E24,\n\t17147: 0x8E25,\n\t17148: 0x8E26,\n\t17149: 0x8E27,\n\t17150: 0x8E28,\n\t17151: 0x8E2B,\n\t17152: 0x8E2D,\n\t17153: 0x8E30,\n\t17154: 0x8E32,\n\t17155: 0x8E33,\n\t17156: 0x8E34,\n\t17157: 0x8E36,\n\t17158: 0x8E37,\n\t17159: 0x8E38,\n\t17160: 0x8E3B,\n\t17161: 0x8E3C,\n\t17162: 0x8E3E,\n\t17163: 0x8E3F,\n\t17164: 0x8E43,\n\t17165: 0x8E45,\n\t17166: 0x8E46,\n\t17167: 0x8E4C,\n\t17168: 0x8E4D,\n\t17169: 0x8E4E,\n\t17170: 0x8E4F,\n\t17171: 0x8E50,\n\t17172: 0x8E53,\n\t17173: 0x8E54,\n\t17174: 0x8E55,\n\t17175: 0x8E56,\n\t17176: 0x8E57,\n\t17177: 0x8E58,\n\t17178: 0x8E5A,\n\t17179: 0x8E5B,\n\t17180: 0x8E5C,\n\t17181: 0x8E5D,\n\t17182: 0x8E5E,\n\t17183: 0x8E5F,\n\t17184: 0x8E60,\n\t17185: 0x8E61,\n\t17186: 0x8E62,\n\t17187: 0x8E63,\n\t17188: 0x8E64,\n\t17189: 0x8E65,\n\t17190: 0x8E67,\n\t17191: 0x8E68,\n\t17192: 0x8E6A,\n\t17193: 0x8E6B,\n\t17194: 0x8E6E,\n\t17195: 0x8E71,\n\t17196: 0x90B8,\n\t17197: 0x90B0,\n\t17198: 0x90CF,\n\t17199: 0x90C5,\n\t17200: 0x90BE,\n\t17201: 0x90D0,\n\t17202: 0x90C4,\n\t17203: 0x90C7,\n\t17204: 0x90D3,\n\t17205: 0x90E6,\n\t17206: 0x90E2,\n\t17207: 0x90DC,\n\t17208: 0x90D7,\n\t17209: 0x90DB,\n\t17210: 0x90EB,\n\t17211: 0x90EF,\n\t17212: 0x90FE,\n\t17213: 0x9104,\n\t17214: 0x9122,\n\t17215: 0x911E,\n\t17216: 0x9123,\n\t17217: 0x9131,\n\t17218: 0x912F,\n\t17219: 0x9139,\n\t17220: 0x9143,\n\t17221: 0x9146,\n\t17222: 0x520D,\n\t17223: 0x5942,\n\t17224: 0x52A2,\n\t17225: 0x52AC,\n\t17226: 0x52AD,\n\t17227: 0x52BE,\n\t17228: 0x54FF,\n\t17229: 0x52D0,\n\t17230: 0x52D6,\n\t17231: 0x52F0,\n\t17232: 0x53DF,\n\t17233: 0x71EE,\n\t17234: 0x77CD,\n\t17235: 0x5EF4,\n\t17236: 0x51F5,\n\t17237: 0x51FC,\n\t17238: 0x9B2F,\n\t17239: 0x53B6,\n\t17240: 0x5F01,\n\t17241: 0x755A,\n\t17242: 0x5DEF,\n\t17243: 0x574C,\n\t17244: 0x57A9,\n\t17245: 0x57A1,\n\t17246: 0x587E,\n\t17247: 0x58BC,\n\t17248: 0x58C5,\n\t17249: 0x58D1,\n\t17250: 0x5729,\n\t17251: 0x572C,\n\t17252: 0x572A,\n\t17253: 0x5733,\n\t17254: 0x5739,\n\t17255: 0x572E,\n\t17256: 0x572F,\n\t17257: 0x575C,\n\t17258: 0x573B,\n\t17259: 0x5742,\n\t17260: 0x5769,\n\t17261: 0x5785,\n\t17262: 0x576B,\n\t17263: 0x5786,\n\t17264: 0x577C,\n\t17265: 0x577B,\n\t17266: 0x5768,\n\t17267: 0x576D,\n\t17268: 0x5776,\n\t17269: 0x5773,\n\t17270: 0x57AD,\n\t17271: 0x57A4,\n\t17272: 0x578C,\n\t17273: 0x57B2,\n\t17274: 0x57CF,\n\t17275: 0x57A7,\n\t17276: 0x57B4,\n\t17277: 0x5793,\n\t17278: 0x57A0,\n\t17279: 0x57D5,\n\t17280: 0x57D8,\n\t17281: 0x57DA,\n\t17282: 0x57D9,\n\t17283: 0x57D2,\n\t17284: 0x57B8,\n\t17285: 0x57F4,\n\t17286: 0x57EF,\n\t17287: 0x57F8,\n\t17288: 0x57E4,\n\t17289: 0x57DD,\n\t17290: 0x8E73,\n\t17291: 0x8E75,\n\t17292: 0x8E77,\n\t17293: 0x8E78,\n\t17294: 0x8E79,\n\t17295: 0x8E7A,\n\t17296: 0x8E7B,\n\t17297: 0x8E7D,\n\t17298: 0x8E7E,\n\t17299: 0x8E80,\n\t17300: 0x8E82,\n\t17301: 0x8E83,\n\t17302: 0x8E84,\n\t17303: 0x8E86,\n\t17304: 0x8E88,\n\t17305: 0x8E89,\n\t17306: 0x8E8A,\n\t17307: 0x8E8B,\n\t17308: 0x8E8C,\n\t17309: 0x8E8D,\n\t17310: 0x8E8E,\n\t17311: 0x8E91,\n\t17312: 0x8E92,\n\t17313: 0x8E93,\n\t17314: 0x8E95,\n\t17315: 0x8E96,\n\t17316: 0x8E97,\n\t17317: 0x8E98,\n\t17318: 0x8E99,\n\t17319: 0x8E9A,\n\t17320: 0x8E9B,\n\t17321: 0x8E9D,\n\t17322: 0x8E9F,\n\t17323: 0x8EA0,\n\t17324: 0x8EA1,\n\t17325: 0x8EA2,\n\t17326: 0x8EA3,\n\t17327: 0x8EA4,\n\t17328: 0x8EA5,\n\t17329: 0x8EA6,\n\t17330: 0x8EA7,\n\t17331: 0x8EA8,\n\t17332: 0x8EA9,\n\t17333: 0x8EAA,\n\t17334: 0x8EAD,\n\t17335: 0x8EAE,\n\t17336: 0x8EB0,\n\t17337: 0x8EB1,\n\t17338: 0x8EB3,\n\t17339: 0x8EB4,\n\t17340: 0x8EB5,\n\t17341: 0x8EB6,\n\t17342: 0x8EB7,\n\t17343: 0x8EB8,\n\t17344: 0x8EB9,\n\t17345: 0x8EBB,\n\t17346: 0x8EBC,\n\t17347: 0x8EBD,\n\t17348: 0x8EBE,\n\t17349: 0x8EBF,\n\t17350: 0x8EC0,\n\t17351: 0x8EC1,\n\t17352: 0x8EC2,\n\t17353: 0x8EC3,\n\t17354: 0x8EC4,\n\t17355: 0x8EC5,\n\t17356: 0x8EC6,\n\t17357: 0x8EC7,\n\t17358: 0x8EC8,\n\t17359: 0x8EC9,\n\t17360: 0x8ECA,\n\t17361: 0x8ECB,\n\t17362: 0x8ECC,\n\t17363: 0x8ECD,\n\t17364: 0x8ECF,\n\t17365: 0x8ED0,\n\t17366: 0x8ED1,\n\t17367: 0x8ED2,\n\t17368: 0x8ED3,\n\t17369: 0x8ED4,\n\t17370: 0x8ED5,\n\t17371: 0x8ED6,\n\t17372: 0x8ED7,\n\t17373: 0x8ED8,\n\t17374: 0x8ED9,\n\t17375: 0x8EDA,\n\t17376: 0x8EDB,\n\t17377: 0x8EDC,\n\t17378: 0x8EDD,\n\t17379: 0x8EDE,\n\t17380: 0x8EDF,\n\t17381: 0x8EE0,\n\t17382: 0x8EE1,\n\t17383: 0x8EE2,\n\t17384: 0x8EE3,\n\t17385: 0x8EE4,\n\t17386: 0x580B,\n\t17387: 0x580D,\n\t17388: 0x57FD,\n\t17389: 0x57ED,\n\t17390: 0x5800,\n\t17391: 0x581E,\n\t17392: 0x5819,\n\t17393: 0x5844,\n\t17394: 0x5820,\n\t17395: 0x5865,\n\t17396: 0x586C,\n\t17397: 0x5881,\n\t17398: 0x5889,\n\t17399: 0x589A,\n\t17400: 0x5880,\n\t17401: 0x99A8,\n\t17402: 0x9F19,\n\t17403: 0x61FF,\n\t17404: 0x8279,\n\t17405: 0x827D,\n\t17406: 0x827F,\n\t17407: 0x828F,\n\t17408: 0x828A,\n\t17409: 0x82A8,\n\t17410: 0x8284,\n\t17411: 0x828E,\n\t17412: 0x8291,\n\t17413: 0x8297,\n\t17414: 0x8299,\n\t17415: 0x82AB,\n\t17416: 0x82B8,\n\t17417: 0x82BE,\n\t17418: 0x82B0,\n\t17419: 0x82C8,\n\t17420: 0x82CA,\n\t17421: 0x82E3,\n\t17422: 0x8298,\n\t17423: 0x82B7,\n\t17424: 0x82AE,\n\t17425: 0x82CB,\n\t17426: 0x82CC,\n\t17427: 0x82C1,\n\t17428: 0x82A9,\n\t17429: 0x82B4,\n\t17430: 0x82A1,\n\t17431: 0x82AA,\n\t17432: 0x829F,\n\t17433: 0x82C4,\n\t17434: 0x82CE,\n\t17435: 0x82A4,\n\t17436: 0x82E1,\n\t17437: 0x8309,\n\t17438: 0x82F7,\n\t17439: 0x82E4,\n\t17440: 0x830F,\n\t17441: 0x8307,\n\t17442: 0x82DC,\n\t17443: 0x82F4,\n\t17444: 0x82D2,\n\t17445: 0x82D8,\n\t17446: 0x830C,\n\t17447: 0x82FB,\n\t17448: 0x82D3,\n\t17449: 0x8311,\n\t17450: 0x831A,\n\t17451: 0x8306,\n\t17452: 0x8314,\n\t17453: 0x8315,\n\t17454: 0x82E0,\n\t17455: 0x82D5,\n\t17456: 0x831C,\n\t17457: 0x8351,\n\t17458: 0x835B,\n\t17459: 0x835C,\n\t17460: 0x8308,\n\t17461: 0x8392,\n\t17462: 0x833C,\n\t17463: 0x8334,\n\t17464: 0x8331,\n\t17465: 0x839B,\n\t17466: 0x835E,\n\t17467: 0x832F,\n\t17468: 0x834F,\n\t17469: 0x8347,\n\t17470: 0x8343,\n\t17471: 0x835F,\n\t17472: 0x8340,\n\t17473: 0x8317,\n\t17474: 0x8360,\n\t17475: 0x832D,\n\t17476: 0x833A,\n\t17477: 0x8333,\n\t17478: 0x8366,\n\t17479: 0x8365,\n\t17480: 0x8EE5,\n\t17481: 0x8EE6,\n\t17482: 0x8EE7,\n\t17483: 0x8EE8,\n\t17484: 0x8EE9,\n\t17485: 0x8EEA,\n\t17486: 0x8EEB,\n\t17487: 0x8EEC,\n\t17488: 0x8EED,\n\t17489: 0x8EEE,\n\t17490: 0x8EEF,\n\t17491: 0x8EF0,\n\t17492: 0x8EF1,\n\t17493: 0x8EF2,\n\t17494: 0x8EF3,\n\t17495: 0x8EF4,\n\t17496: 0x8EF5,\n\t17497: 0x8EF6,\n\t17498: 0x8EF7,\n\t17499: 0x8EF8,\n\t17500: 0x8EF9,\n\t17501: 0x8EFA,\n\t17502: 0x8EFB,\n\t17503: 0x8EFC,\n\t17504: 0x8EFD,\n\t17505: 0x8EFE,\n\t17506: 0x8EFF,\n\t17507: 0x8F00,\n\t17508: 0x8F01,\n\t17509: 0x8F02,\n\t17510: 0x8F03,\n\t17511: 0x8F04,\n\t17512: 0x8F05,\n\t17513: 0x8F06,\n\t17514: 0x8F07,\n\t17515: 0x8F08,\n\t17516: 0x8F09,\n\t17517: 0x8F0A,\n\t17518: 0x8F0B,\n\t17519: 0x8F0C,\n\t17520: 0x8F0D,\n\t17521: 0x8F0E,\n\t17522: 0x8F0F,\n\t17523: 0x8F10,\n\t17524: 0x8F11,\n\t17525: 0x8F12,\n\t17526: 0x8F13,\n\t17527: 0x8F14,\n\t17528: 0x8F15,\n\t17529: 0x8F16,\n\t17530: 0x8F17,\n\t17531: 0x8F18,\n\t17532: 0x8F19,\n\t17533: 0x8F1A,\n\t17534: 0x8F1B,\n\t17535: 0x8F1C,\n\t17536: 0x8F1D,\n\t17537: 0x8F1E,\n\t17538: 0x8F1F,\n\t17539: 0x8F20,\n\t17540: 0x8F21,\n\t17541: 0x8F22,\n\t17542: 0x8F23,\n\t17543: 0x8F24,\n\t17544: 0x8F25,\n\t17545: 0x8F26,\n\t17546: 0x8F27,\n\t17547: 0x8F28,\n\t17548: 0x8F29,\n\t17549: 0x8F2A,\n\t17550: 0x8F2B,\n\t17551: 0x8F2C,\n\t17552: 0x8F2D,\n\t17553: 0x8F2E,\n\t17554: 0x8F2F,\n\t17555: 0x8F30,\n\t17556: 0x8F31,\n\t17557: 0x8F32,\n\t17558: 0x8F33,\n\t17559: 0x8F34,\n\t17560: 0x8F35,\n\t17561: 0x8F36,\n\t17562: 0x8F37,\n\t17563: 0x8F38,\n\t17564: 0x8F39,\n\t17565: 0x8F3A,\n\t17566: 0x8F3B,\n\t17567: 0x8F3C,\n\t17568: 0x8F3D,\n\t17569: 0x8F3E,\n\t17570: 0x8F3F,\n\t17571: 0x8F40,\n\t17572: 0x8F41,\n\t17573: 0x8F42,\n\t17574: 0x8F43,\n\t17575: 0x8F44,\n\t17576: 0x8368,\n\t17577: 0x831B,\n\t17578: 0x8369,\n\t17579: 0x836C,\n\t17580: 0x836A,\n\t17581: 0x836D,\n\t17582: 0x836E,\n\t17583: 0x83B0,\n\t17584: 0x8378,\n\t17585: 0x83B3,\n\t17586: 0x83B4,\n\t17587: 0x83A0,\n\t17588: 0x83AA,\n\t17589: 0x8393,\n\t17590: 0x839C,\n\t17591: 0x8385,\n\t17592: 0x837C,\n\t17593: 0x83B6,\n\t17594: 0x83A9,\n\t17595: 0x837D,\n\t17596: 0x83B8,\n\t17597: 0x837B,\n\t17598: 0x8398,\n\t17599: 0x839E,\n\t17600: 0x83A8,\n\t17601: 0x83BA,\n\t17602: 0x83BC,\n\t17603: 0x83C1,\n\t17604: 0x8401,\n\t17605: 0x83E5,\n\t17606: 0x83D8,\n\t17607: 0x5807,\n\t17608: 0x8418,\n\t17609: 0x840B,\n\t17610: 0x83DD,\n\t17611: 0x83FD,\n\t17612: 0x83D6,\n\t17613: 0x841C,\n\t17614: 0x8438,\n\t17615: 0x8411,\n\t17616: 0x8406,\n\t17617: 0x83D4,\n\t17618: 0x83DF,\n\t17619: 0x840F,\n\t17620: 0x8403,\n\t17621: 0x83F8,\n\t17622: 0x83F9,\n\t17623: 0x83EA,\n\t17624: 0x83C5,\n\t17625: 0x83C0,\n\t17626: 0x8426,\n\t17627: 0x83F0,\n\t17628: 0x83E1,\n\t17629: 0x845C,\n\t17630: 0x8451,\n\t17631: 0x845A,\n\t17632: 0x8459,\n\t17633: 0x8473,\n\t17634: 0x8487,\n\t17635: 0x8488,\n\t17636: 0x847A,\n\t17637: 0x8489,\n\t17638: 0x8478,\n\t17639: 0x843C,\n\t17640: 0x8446,\n\t17641: 0x8469,\n\t17642: 0x8476,\n\t17643: 0x848C,\n\t17644: 0x848E,\n\t17645: 0x8431,\n\t17646: 0x846D,\n\t17647: 0x84C1,\n\t17648: 0x84CD,\n\t17649: 0x84D0,\n\t17650: 0x84E6,\n\t17651: 0x84BD,\n\t17652: 0x84D3,\n\t17653: 0x84CA,\n\t17654: 0x84BF,\n\t17655: 0x84BA,\n\t17656: 0x84E0,\n\t17657: 0x84A1,\n\t17658: 0x84B9,\n\t17659: 0x84B4,\n\t17660: 0x8497,\n\t17661: 0x84E5,\n\t17662: 0x84E3,\n\t17663: 0x850C,\n\t17664: 0x750D,\n\t17665: 0x8538,\n\t17666: 0x84F0,\n\t17667: 0x8539,\n\t17668: 0x851F,\n\t17669: 0x853A,\n\t17670: 0x8F45,\n\t17671: 0x8F46,\n\t17672: 0x8F47,\n\t17673: 0x8F48,\n\t17674: 0x8F49,\n\t17675: 0x8F4A,\n\t17676: 0x8F4B,\n\t17677: 0x8F4C,\n\t17678: 0x8F4D,\n\t17679: 0x8F4E,\n\t17680: 0x8F4F,\n\t17681: 0x8F50,\n\t17682: 0x8F51,\n\t17683: 0x8F52,\n\t17684: 0x8F53,\n\t17685: 0x8F54,\n\t17686: 0x8F55,\n\t17687: 0x8F56,\n\t17688: 0x8F57,\n\t17689: 0x8F58,\n\t17690: 0x8F59,\n\t17691: 0x8F5A,\n\t17692: 0x8F5B,\n\t17693: 0x8F5C,\n\t17694: 0x8F5D,\n\t17695: 0x8F5E,\n\t17696: 0x8F5F,\n\t17697: 0x8F60,\n\t17698: 0x8F61,\n\t17699: 0x8F62,\n\t17700: 0x8F63,\n\t17701: 0x8F64,\n\t17702: 0x8F65,\n\t17703: 0x8F6A,\n\t17704: 0x8F80,\n\t17705: 0x8F8C,\n\t17706: 0x8F92,\n\t17707: 0x8F9D,\n\t17708: 0x8FA0,\n\t17709: 0x8FA1,\n\t17710: 0x8FA2,\n\t17711: 0x8FA4,\n\t17712: 0x8FA5,\n\t17713: 0x8FA6,\n\t17714: 0x8FA7,\n\t17715: 0x8FAA,\n\t17716: 0x8FAC,\n\t17717: 0x8FAD,\n\t17718: 0x8FAE,\n\t17719: 0x8FAF,\n\t17720: 0x8FB2,\n\t17721: 0x8FB3,\n\t17722: 0x8FB4,\n\t17723: 0x8FB5,\n\t17724: 0x8FB7,\n\t17725: 0x8FB8,\n\t17726: 0x8FBA,\n\t17727: 0x8FBB,\n\t17728: 0x8FBC,\n\t17729: 0x8FBF,\n\t17730: 0x8FC0,\n\t17731: 0x8FC3,\n\t17732: 0x8FC6,\n\t17733: 0x8FC9,\n\t17734: 0x8FCA,\n\t17735: 0x8FCB,\n\t17736: 0x8FCC,\n\t17737: 0x8FCD,\n\t17738: 0x8FCF,\n\t17739: 0x8FD2,\n\t17740: 0x8FD6,\n\t17741: 0x8FD7,\n\t17742: 0x8FDA,\n\t17743: 0x8FE0,\n\t17744: 0x8FE1,\n\t17745: 0x8FE3,\n\t17746: 0x8FE7,\n\t17747: 0x8FEC,\n\t17748: 0x8FEF,\n\t17749: 0x8FF1,\n\t17750: 0x8FF2,\n\t17751: 0x8FF4,\n\t17752: 0x8FF5,\n\t17753: 0x8FF6,\n\t17754: 0x8FFA,\n\t17755: 0x8FFB,\n\t17756: 0x8FFC,\n\t17757: 0x8FFE,\n\t17758: 0x8FFF,\n\t17759: 0x9007,\n\t17760: 0x9008,\n\t17761: 0x900C,\n\t17762: 0x900E,\n\t17763: 0x9013,\n\t17764: 0x9015,\n\t17765: 0x9018,\n\t17766: 0x8556,\n\t17767: 0x853B,\n\t17768: 0x84FF,\n\t17769: 0x84FC,\n\t17770: 0x8559,\n\t17771: 0x8548,\n\t17772: 0x8568,\n\t17773: 0x8564,\n\t17774: 0x855E,\n\t17775: 0x857A,\n\t17776: 0x77A2,\n\t17777: 0x8543,\n\t17778: 0x8572,\n\t17779: 0x857B,\n\t17780: 0x85A4,\n\t17781: 0x85A8,\n\t17782: 0x8587,\n\t17783: 0x858F,\n\t17784: 0x8579,\n\t17785: 0x85AE,\n\t17786: 0x859C,\n\t17787: 0x8585,\n\t17788: 0x85B9,\n\t17789: 0x85B7,\n\t17790: 0x85B0,\n\t17791: 0x85D3,\n\t17792: 0x85C1,\n\t17793: 0x85DC,\n\t17794: 0x85FF,\n\t17795: 0x8627,\n\t17796: 0x8605,\n\t17797: 0x8629,\n\t17798: 0x8616,\n\t17799: 0x863C,\n\t17800: 0x5EFE,\n\t17801: 0x5F08,\n\t17802: 0x593C,\n\t17803: 0x5941,\n\t17804: 0x8037,\n\t17805: 0x5955,\n\t17806: 0x595A,\n\t17807: 0x5958,\n\t17808: 0x530F,\n\t17809: 0x5C22,\n\t17810: 0x5C25,\n\t17811: 0x5C2C,\n\t17812: 0x5C34,\n\t17813: 0x624C,\n\t17814: 0x626A,\n\t17815: 0x629F,\n\t17816: 0x62BB,\n\t17817: 0x62CA,\n\t17818: 0x62DA,\n\t17819: 0x62D7,\n\t17820: 0x62EE,\n\t17821: 0x6322,\n\t17822: 0x62F6,\n\t17823: 0x6339,\n\t17824: 0x634B,\n\t17825: 0x6343,\n\t17826: 0x63AD,\n\t17827: 0x63F6,\n\t17828: 0x6371,\n\t17829: 0x637A,\n\t17830: 0x638E,\n\t17831: 0x63B4,\n\t17832: 0x636D,\n\t17833: 0x63AC,\n\t17834: 0x638A,\n\t17835: 0x6369,\n\t17836: 0x63AE,\n\t17837: 0x63BC,\n\t17838: 0x63F2,\n\t17839: 0x63F8,\n\t17840: 0x63E0,\n\t17841: 0x63FF,\n\t17842: 0x63C4,\n\t17843: 0x63DE,\n\t17844: 0x63CE,\n\t17845: 0x6452,\n\t17846: 0x63C6,\n\t17847: 0x63BE,\n\t17848: 0x6445,\n\t17849: 0x6441,\n\t17850: 0x640B,\n\t17851: 0x641B,\n\t17852: 0x6420,\n\t17853: 0x640C,\n\t17854: 0x6426,\n\t17855: 0x6421,\n\t17856: 0x645E,\n\t17857: 0x6484,\n\t17858: 0x646D,\n\t17859: 0x6496,\n\t17860: 0x9019,\n\t17861: 0x901C,\n\t17862: 0x9023,\n\t17863: 0x9024,\n\t17864: 0x9025,\n\t17865: 0x9027,\n\t17866: 0x9028,\n\t17867: 0x9029,\n\t17868: 0x902A,\n\t17869: 0x902B,\n\t17870: 0x902C,\n\t17871: 0x9030,\n\t17872: 0x9031,\n\t17873: 0x9032,\n\t17874: 0x9033,\n\t17875: 0x9034,\n\t17876: 0x9037,\n\t17877: 0x9039,\n\t17878: 0x903A,\n\t17879: 0x903D,\n\t17880: 0x903F,\n\t17881: 0x9040,\n\t17882: 0x9043,\n\t17883: 0x9045,\n\t17884: 0x9046,\n\t17885: 0x9048,\n\t17886: 0x9049,\n\t17887: 0x904A,\n\t17888: 0x904B,\n\t17889: 0x904C,\n\t17890: 0x904E,\n\t17891: 0x9054,\n\t17892: 0x9055,\n\t17893: 0x9056,\n\t17894: 0x9059,\n\t17895: 0x905A,\n\t17896: 0x905C,\n\t17897: 0x905D,\n\t17898: 0x905E,\n\t17899: 0x905F,\n\t17900: 0x9060,\n\t17901: 0x9061,\n\t17902: 0x9064,\n\t17903: 0x9066,\n\t17904: 0x9067,\n\t17905: 0x9069,\n\t17906: 0x906A,\n\t17907: 0x906B,\n\t17908: 0x906C,\n\t17909: 0x906F,\n\t17910: 0x9070,\n\t17911: 0x9071,\n\t17912: 0x9072,\n\t17913: 0x9073,\n\t17914: 0x9076,\n\t17915: 0x9077,\n\t17916: 0x9078,\n\t17917: 0x9079,\n\t17918: 0x907A,\n\t17919: 0x907B,\n\t17920: 0x907C,\n\t17921: 0x907E,\n\t17922: 0x9081,\n\t17923: 0x9084,\n\t17924: 0x9085,\n\t17925: 0x9086,\n\t17926: 0x9087,\n\t17927: 0x9089,\n\t17928: 0x908A,\n\t17929: 0x908C,\n\t17930: 0x908D,\n\t17931: 0x908E,\n\t17932: 0x908F,\n\t17933: 0x9090,\n\t17934: 0x9092,\n\t17935: 0x9094,\n\t17936: 0x9096,\n\t17937: 0x9098,\n\t17938: 0x909A,\n\t17939: 0x909C,\n\t17940: 0x909E,\n\t17941: 0x909F,\n\t17942: 0x90A0,\n\t17943: 0x90A4,\n\t17944: 0x90A5,\n\t17945: 0x90A7,\n\t17946: 0x90A8,\n\t17947: 0x90A9,\n\t17948: 0x90AB,\n\t17949: 0x90AD,\n\t17950: 0x90B2,\n\t17951: 0x90B7,\n\t17952: 0x90BC,\n\t17953: 0x90BD,\n\t17954: 0x90BF,\n\t17955: 0x90C0,\n\t17956: 0x647A,\n\t17957: 0x64B7,\n\t17958: 0x64B8,\n\t17959: 0x6499,\n\t17960: 0x64BA,\n\t17961: 0x64C0,\n\t17962: 0x64D0,\n\t17963: 0x64D7,\n\t17964: 0x64E4,\n\t17965: 0x64E2,\n\t17966: 0x6509,\n\t17967: 0x6525,\n\t17968: 0x652E,\n\t17969: 0x5F0B,\n\t17970: 0x5FD2,\n\t17971: 0x7519,\n\t17972: 0x5F11,\n\t17973: 0x535F,\n\t17974: 0x53F1,\n\t17975: 0x53FD,\n\t17976: 0x53E9,\n\t17977: 0x53E8,\n\t17978: 0x53FB,\n\t17979: 0x5412,\n\t17980: 0x5416,\n\t17981: 0x5406,\n\t17982: 0x544B,\n\t17983: 0x5452,\n\t17984: 0x5453,\n\t17985: 0x5454,\n\t17986: 0x5456,\n\t17987: 0x5443,\n\t17988: 0x5421,\n\t17989: 0x5457,\n\t17990: 0x5459,\n\t17991: 0x5423,\n\t17992: 0x5432,\n\t17993: 0x5482,\n\t17994: 0x5494,\n\t17995: 0x5477,\n\t17996: 0x5471,\n\t17997: 0x5464,\n\t17998: 0x549A,\n\t17999: 0x549B,\n\t18000: 0x5484,\n\t18001: 0x5476,\n\t18002: 0x5466,\n\t18003: 0x549D,\n\t18004: 0x54D0,\n\t18005: 0x54AD,\n\t18006: 0x54C2,\n\t18007: 0x54B4,\n\t18008: 0x54D2,\n\t18009: 0x54A7,\n\t18010: 0x54A6,\n\t18011: 0x54D3,\n\t18012: 0x54D4,\n\t18013: 0x5472,\n\t18014: 0x54A3,\n\t18015: 0x54D5,\n\t18016: 0x54BB,\n\t18017: 0x54BF,\n\t18018: 0x54CC,\n\t18019: 0x54D9,\n\t18020: 0x54DA,\n\t18021: 0x54DC,\n\t18022: 0x54A9,\n\t18023: 0x54AA,\n\t18024: 0x54A4,\n\t18025: 0x54DD,\n\t18026: 0x54CF,\n\t18027: 0x54DE,\n\t18028: 0x551B,\n\t18029: 0x54E7,\n\t18030: 0x5520,\n\t18031: 0x54FD,\n\t18032: 0x5514,\n\t18033: 0x54F3,\n\t18034: 0x5522,\n\t18035: 0x5523,\n\t18036: 0x550F,\n\t18037: 0x5511,\n\t18038: 0x5527,\n\t18039: 0x552A,\n\t18040: 0x5567,\n\t18041: 0x558F,\n\t18042: 0x55B5,\n\t18043: 0x5549,\n\t18044: 0x556D,\n\t18045: 0x5541,\n\t18046: 0x5555,\n\t18047: 0x553F,\n\t18048: 0x5550,\n\t18049: 0x553C,\n\t18050: 0x90C2,\n\t18051: 0x90C3,\n\t18052: 0x90C6,\n\t18053: 0x90C8,\n\t18054: 0x90C9,\n\t18055: 0x90CB,\n\t18056: 0x90CC,\n\t18057: 0x90CD,\n\t18058: 0x90D2,\n\t18059: 0x90D4,\n\t18060: 0x90D5,\n\t18061: 0x90D6,\n\t18062: 0x90D8,\n\t18063: 0x90D9,\n\t18064: 0x90DA,\n\t18065: 0x90DE,\n\t18066: 0x90DF,\n\t18067: 0x90E0,\n\t18068: 0x90E3,\n\t18069: 0x90E4,\n\t18070: 0x90E5,\n\t18071: 0x90E9,\n\t18072: 0x90EA,\n\t18073: 0x90EC,\n\t18074: 0x90EE,\n\t18075: 0x90F0,\n\t18076: 0x90F1,\n\t18077: 0x90F2,\n\t18078: 0x90F3,\n\t18079: 0x90F5,\n\t18080: 0x90F6,\n\t18081: 0x90F7,\n\t18082: 0x90F9,\n\t18083: 0x90FA,\n\t18084: 0x90FB,\n\t18085: 0x90FC,\n\t18086: 0x90FF,\n\t18087: 0x9100,\n\t18088: 0x9101,\n\t18089: 0x9103,\n\t18090: 0x9105,\n\t18091: 0x9106,\n\t18092: 0x9107,\n\t18093: 0x9108,\n\t18094: 0x9109,\n\t18095: 0x910A,\n\t18096: 0x910B,\n\t18097: 0x910C,\n\t18098: 0x910D,\n\t18099: 0x910E,\n\t18100: 0x910F,\n\t18101: 0x9110,\n\t18102: 0x9111,\n\t18103: 0x9112,\n\t18104: 0x9113,\n\t18105: 0x9114,\n\t18106: 0x9115,\n\t18107: 0x9116,\n\t18108: 0x9117,\n\t18109: 0x9118,\n\t18110: 0x911A,\n\t18111: 0x911B,\n\t18112: 0x911C,\n\t18113: 0x911D,\n\t18114: 0x911F,\n\t18115: 0x9120,\n\t18116: 0x9121,\n\t18117: 0x9124,\n\t18118: 0x9125,\n\t18119: 0x9126,\n\t18120: 0x9127,\n\t18121: 0x9128,\n\t18122: 0x9129,\n\t18123: 0x912A,\n\t18124: 0x912B,\n\t18125: 0x912C,\n\t18126: 0x912D,\n\t18127: 0x912E,\n\t18128: 0x9130,\n\t18129: 0x9132,\n\t18130: 0x9133,\n\t18131: 0x9134,\n\t18132: 0x9135,\n\t18133: 0x9136,\n\t18134: 0x9137,\n\t18135: 0x9138,\n\t18136: 0x913A,\n\t18137: 0x913B,\n\t18138: 0x913C,\n\t18139: 0x913D,\n\t18140: 0x913E,\n\t18141: 0x913F,\n\t18142: 0x9140,\n\t18143: 0x9141,\n\t18144: 0x9142,\n\t18145: 0x9144,\n\t18146: 0x5537,\n\t18147: 0x5556,\n\t18148: 0x5575,\n\t18149: 0x5576,\n\t18150: 0x5577,\n\t18151: 0x5533,\n\t18152: 0x5530,\n\t18153: 0x555C,\n\t18154: 0x558B,\n\t18155: 0x55D2,\n\t18156: 0x5583,\n\t18157: 0x55B1,\n\t18158: 0x55B9,\n\t18159: 0x5588,\n\t18160: 0x5581,\n\t18161: 0x559F,\n\t18162: 0x557E,\n\t18163: 0x55D6,\n\t18164: 0x5591,\n\t18165: 0x557B,\n\t18166: 0x55DF,\n\t18167: 0x55BD,\n\t18168: 0x55BE,\n\t18169: 0x5594,\n\t18170: 0x5599,\n\t18171: 0x55EA,\n\t18172: 0x55F7,\n\t18173: 0x55C9,\n\t18174: 0x561F,\n\t18175: 0x55D1,\n\t18176: 0x55EB,\n\t18177: 0x55EC,\n\t18178: 0x55D4,\n\t18179: 0x55E6,\n\t18180: 0x55DD,\n\t18181: 0x55C4,\n\t18182: 0x55EF,\n\t18183: 0x55E5,\n\t18184: 0x55F2,\n\t18185: 0x55F3,\n\t18186: 0x55CC,\n\t18187: 0x55CD,\n\t18188: 0x55E8,\n\t18189: 0x55F5,\n\t18190: 0x55E4,\n\t18191: 0x8F94,\n\t18192: 0x561E,\n\t18193: 0x5608,\n\t18194: 0x560C,\n\t18195: 0x5601,\n\t18196: 0x5624,\n\t18197: 0x5623,\n\t18198: 0x55FE,\n\t18199: 0x5600,\n\t18200: 0x5627,\n\t18201: 0x562D,\n\t18202: 0x5658,\n\t18203: 0x5639,\n\t18204: 0x5657,\n\t18205: 0x562C,\n\t18206: 0x564D,\n\t18207: 0x5662,\n\t18208: 0x5659,\n\t18209: 0x565C,\n\t18210: 0x564C,\n\t18211: 0x5654,\n\t18212: 0x5686,\n\t18213: 0x5664,\n\t18214: 0x5671,\n\t18215: 0x566B,\n\t18216: 0x567B,\n\t18217: 0x567C,\n\t18218: 0x5685,\n\t18219: 0x5693,\n\t18220: 0x56AF,\n\t18221: 0x56D4,\n\t18222: 0x56D7,\n\t18223: 0x56DD,\n\t18224: 0x56E1,\n\t18225: 0x56F5,\n\t18226: 0x56EB,\n\t18227: 0x56F9,\n\t18228: 0x56FF,\n\t18229: 0x5704,\n\t18230: 0x570A,\n\t18231: 0x5709,\n\t18232: 0x571C,\n\t18233: 0x5E0F,\n\t18234: 0x5E19,\n\t18235: 0x5E14,\n\t18236: 0x5E11,\n\t18237: 0x5E31,\n\t18238: 0x5E3B,\n\t18239: 0x5E3C,\n\t18240: 0x9145,\n\t18241: 0x9147,\n\t18242: 0x9148,\n\t18243: 0x9151,\n\t18244: 0x9153,\n\t18245: 0x9154,\n\t18246: 0x9155,\n\t18247: 0x9156,\n\t18248: 0x9158,\n\t18249: 0x9159,\n\t18250: 0x915B,\n\t18251: 0x915C,\n\t18252: 0x915F,\n\t18253: 0x9160,\n\t18254: 0x9166,\n\t18255: 0x9167,\n\t18256: 0x9168,\n\t18257: 0x916B,\n\t18258: 0x916D,\n\t18259: 0x9173,\n\t18260: 0x917A,\n\t18261: 0x917B,\n\t18262: 0x917C,\n\t18263: 0x9180,\n\t18264: 0x9181,\n\t18265: 0x9182,\n\t18266: 0x9183,\n\t18267: 0x9184,\n\t18268: 0x9186,\n\t18269: 0x9188,\n\t18270: 0x918A,\n\t18271: 0x918E,\n\t18272: 0x918F,\n\t18273: 0x9193,\n\t18274: 0x9194,\n\t18275: 0x9195,\n\t18276: 0x9196,\n\t18277: 0x9197,\n\t18278: 0x9198,\n\t18279: 0x9199,\n\t18280: 0x919C,\n\t18281: 0x919D,\n\t18282: 0x919E,\n\t18283: 0x919F,\n\t18284: 0x91A0,\n\t18285: 0x91A1,\n\t18286: 0x91A4,\n\t18287: 0x91A5,\n\t18288: 0x91A6,\n\t18289: 0x91A7,\n\t18290: 0x91A8,\n\t18291: 0x91A9,\n\t18292: 0x91AB,\n\t18293: 0x91AC,\n\t18294: 0x91B0,\n\t18295: 0x91B1,\n\t18296: 0x91B2,\n\t18297: 0x91B3,\n\t18298: 0x91B6,\n\t18299: 0x91B7,\n\t18300: 0x91B8,\n\t18301: 0x91B9,\n\t18302: 0x91BB,\n\t18303: 0x91BC,\n\t18304: 0x91BD,\n\t18305: 0x91BE,\n\t18306: 0x91BF,\n\t18307: 0x91C0,\n\t18308: 0x91C1,\n\t18309: 0x91C2,\n\t18310: 0x91C3,\n\t18311: 0x91C4,\n\t18312: 0x91C5,\n\t18313: 0x91C6,\n\t18314: 0x91C8,\n\t18315: 0x91CB,\n\t18316: 0x91D0,\n\t18317: 0x91D2,\n\t18318: 0x91D3,\n\t18319: 0x91D4,\n\t18320: 0x91D5,\n\t18321: 0x91D6,\n\t18322: 0x91D7,\n\t18323: 0x91D8,\n\t18324: 0x91D9,\n\t18325: 0x91DA,\n\t18326: 0x91DB,\n\t18327: 0x91DD,\n\t18328: 0x91DE,\n\t18329: 0x91DF,\n\t18330: 0x91E0,\n\t18331: 0x91E1,\n\t18332: 0x91E2,\n\t18333: 0x91E3,\n\t18334: 0x91E4,\n\t18335: 0x91E5,\n\t18336: 0x5E37,\n\t18337: 0x5E44,\n\t18338: 0x5E54,\n\t18339: 0x5E5B,\n\t18340: 0x5E5E,\n\t18341: 0x5E61,\n\t18342: 0x5C8C,\n\t18343: 0x5C7A,\n\t18344: 0x5C8D,\n\t18345: 0x5C90,\n\t18346: 0x5C96,\n\t18347: 0x5C88,\n\t18348: 0x5C98,\n\t18349: 0x5C99,\n\t18350: 0x5C91,\n\t18351: 0x5C9A,\n\t18352: 0x5C9C,\n\t18353: 0x5CB5,\n\t18354: 0x5CA2,\n\t18355: 0x5CBD,\n\t18356: 0x5CAC,\n\t18357: 0x5CAB,\n\t18358: 0x5CB1,\n\t18359: 0x5CA3,\n\t18360: 0x5CC1,\n\t18361: 0x5CB7,\n\t18362: 0x5CC4,\n\t18363: 0x5CD2,\n\t18364: 0x5CE4,\n\t18365: 0x5CCB,\n\t18366: 0x5CE5,\n\t18367: 0x5D02,\n\t18368: 0x5D03,\n\t18369: 0x5D27,\n\t18370: 0x5D26,\n\t18371: 0x5D2E,\n\t18372: 0x5D24,\n\t18373: 0x5D1E,\n\t18374: 0x5D06,\n\t18375: 0x5D1B,\n\t18376: 0x5D58,\n\t18377: 0x5D3E,\n\t18378: 0x5D34,\n\t18379: 0x5D3D,\n\t18380: 0x5D6C,\n\t18381: 0x5D5B,\n\t18382: 0x5D6F,\n\t18383: 0x5D5D,\n\t18384: 0x5D6B,\n\t18385: 0x5D4B,\n\t18386: 0x5D4A,\n\t18387: 0x5D69,\n\t18388: 0x5D74,\n\t18389: 0x5D82,\n\t18390: 0x5D99,\n\t18391: 0x5D9D,\n\t18392: 0x8C73,\n\t18393: 0x5DB7,\n\t18394: 0x5DC5,\n\t18395: 0x5F73,\n\t18396: 0x5F77,\n\t18397: 0x5F82,\n\t18398: 0x5F87,\n\t18399: 0x5F89,\n\t18400: 0x5F8C,\n\t18401: 0x5F95,\n\t18402: 0x5F99,\n\t18403: 0x5F9C,\n\t18404: 0x5FA8,\n\t18405: 0x5FAD,\n\t18406: 0x5FB5,\n\t18407: 0x5FBC,\n\t18408: 0x8862,\n\t18409: 0x5F61,\n\t18410: 0x72AD,\n\t18411: 0x72B0,\n\t18412: 0x72B4,\n\t18413: 0x72B7,\n\t18414: 0x72B8,\n\t18415: 0x72C3,\n\t18416: 0x72C1,\n\t18417: 0x72CE,\n\t18418: 0x72CD,\n\t18419: 0x72D2,\n\t18420: 0x72E8,\n\t18421: 0x72EF,\n\t18422: 0x72E9,\n\t18423: 0x72F2,\n\t18424: 0x72F4,\n\t18425: 0x72F7,\n\t18426: 0x7301,\n\t18427: 0x72F3,\n\t18428: 0x7303,\n\t18429: 0x72FA,\n\t18430: 0x91E6,\n\t18431: 0x91E7,\n\t18432: 0x91E8,\n\t18433: 0x91E9,\n\t18434: 0x91EA,\n\t18435: 0x91EB,\n\t18436: 0x91EC,\n\t18437: 0x91ED,\n\t18438: 0x91EE,\n\t18439: 0x91EF,\n\t18440: 0x91F0,\n\t18441: 0x91F1,\n\t18442: 0x91F2,\n\t18443: 0x91F3,\n\t18444: 0x91F4,\n\t18445: 0x91F5,\n\t18446: 0x91F6,\n\t18447: 0x91F7,\n\t18448: 0x91F8,\n\t18449: 0x91F9,\n\t18450: 0x91FA,\n\t18451: 0x91FB,\n\t18452: 0x91FC,\n\t18453: 0x91FD,\n\t18454: 0x91FE,\n\t18455: 0x91FF,\n\t18456: 0x9200,\n\t18457: 0x9201,\n\t18458: 0x9202,\n\t18459: 0x9203,\n\t18460: 0x9204,\n\t18461: 0x9205,\n\t18462: 0x9206,\n\t18463: 0x9207,\n\t18464: 0x9208,\n\t18465: 0x9209,\n\t18466: 0x920A,\n\t18467: 0x920B,\n\t18468: 0x920C,\n\t18469: 0x920D,\n\t18470: 0x920E,\n\t18471: 0x920F,\n\t18472: 0x9210,\n\t18473: 0x9211,\n\t18474: 0x9212,\n\t18475: 0x9213,\n\t18476: 0x9214,\n\t18477: 0x9215,\n\t18478: 0x9216,\n\t18479: 0x9217,\n\t18480: 0x9218,\n\t18481: 0x9219,\n\t18482: 0x921A,\n\t18483: 0x921B,\n\t18484: 0x921C,\n\t18485: 0x921D,\n\t18486: 0x921E,\n\t18487: 0x921F,\n\t18488: 0x9220,\n\t18489: 0x9221,\n\t18490: 0x9222,\n\t18491: 0x9223,\n\t18492: 0x9224,\n\t18493: 0x9225,\n\t18494: 0x9226,\n\t18495: 0x9227,\n\t18496: 0x9228,\n\t18497: 0x9229,\n\t18498: 0x922A,\n\t18499: 0x922B,\n\t18500: 0x922C,\n\t18501: 0x922D,\n\t18502: 0x922E,\n\t18503: 0x922F,\n\t18504: 0x9230,\n\t18505: 0x9231,\n\t18506: 0x9232,\n\t18507: 0x9233,\n\t18508: 0x9234,\n\t18509: 0x9235,\n\t18510: 0x9236,\n\t18511: 0x9237,\n\t18512: 0x9238,\n\t18513: 0x9239,\n\t18514: 0x923A,\n\t18515: 0x923B,\n\t18516: 0x923C,\n\t18517: 0x923D,\n\t18518: 0x923E,\n\t18519: 0x923F,\n\t18520: 0x9240,\n\t18521: 0x9241,\n\t18522: 0x9242,\n\t18523: 0x9243,\n\t18524: 0x9244,\n\t18525: 0x9245,\n\t18526: 0x72FB,\n\t18527: 0x7317,\n\t18528: 0x7313,\n\t18529: 0x7321,\n\t18530: 0x730A,\n\t18531: 0x731E,\n\t18532: 0x731D,\n\t18533: 0x7315,\n\t18534: 0x7322,\n\t18535: 0x7339,\n\t18536: 0x7325,\n\t18537: 0x732C,\n\t18538: 0x7338,\n\t18539: 0x7331,\n\t18540: 0x7350,\n\t18541: 0x734D,\n\t18542: 0x7357,\n\t18543: 0x7360,\n\t18544: 0x736C,\n\t18545: 0x736F,\n\t18546: 0x737E,\n\t18547: 0x821B,\n\t18548: 0x5925,\n\t18549: 0x98E7,\n\t18550: 0x5924,\n\t18551: 0x5902,\n\t18552: 0x9963,\n\t18553: 0x9967,\n\t18554: 0x9968,\n\t18555: 0x9969,\n\t18556: 0x996A,\n\t18557: 0x996B,\n\t18558: 0x996C,\n\t18559: 0x9974,\n\t18560: 0x9977,\n\t18561: 0x997D,\n\t18562: 0x9980,\n\t18563: 0x9984,\n\t18564: 0x9987,\n\t18565: 0x998A,\n\t18566: 0x998D,\n\t18567: 0x9990,\n\t18568: 0x9991,\n\t18569: 0x9993,\n\t18570: 0x9994,\n\t18571: 0x9995,\n\t18572: 0x5E80,\n\t18573: 0x5E91,\n\t18574: 0x5E8B,\n\t18575: 0x5E96,\n\t18576: 0x5EA5,\n\t18577: 0x5EA0,\n\t18578: 0x5EB9,\n\t18579: 0x5EB5,\n\t18580: 0x5EBE,\n\t18581: 0x5EB3,\n\t18582: 0x8D53,\n\t18583: 0x5ED2,\n\t18584: 0x5ED1,\n\t18585: 0x5EDB,\n\t18586: 0x5EE8,\n\t18587: 0x5EEA,\n\t18588: 0x81BA,\n\t18589: 0x5FC4,\n\t18590: 0x5FC9,\n\t18591: 0x5FD6,\n\t18592: 0x5FCF,\n\t18593: 0x6003,\n\t18594: 0x5FEE,\n\t18595: 0x6004,\n\t18596: 0x5FE1,\n\t18597: 0x5FE4,\n\t18598: 0x5FFE,\n\t18599: 0x6005,\n\t18600: 0x6006,\n\t18601: 0x5FEA,\n\t18602: 0x5FED,\n\t18603: 0x5FF8,\n\t18604: 0x6019,\n\t18605: 0x6035,\n\t18606: 0x6026,\n\t18607: 0x601B,\n\t18608: 0x600F,\n\t18609: 0x600D,\n\t18610: 0x6029,\n\t18611: 0x602B,\n\t18612: 0x600A,\n\t18613: 0x603F,\n\t18614: 0x6021,\n\t18615: 0x6078,\n\t18616: 0x6079,\n\t18617: 0x607B,\n\t18618: 0x607A,\n\t18619: 0x6042,\n\t18620: 0x9246,\n\t18621: 0x9247,\n\t18622: 0x9248,\n\t18623: 0x9249,\n\t18624: 0x924A,\n\t18625: 0x924B,\n\t18626: 0x924C,\n\t18627: 0x924D,\n\t18628: 0x924E,\n\t18629: 0x924F,\n\t18630: 0x9250,\n\t18631: 0x9251,\n\t18632: 0x9252,\n\t18633: 0x9253,\n\t18634: 0x9254,\n\t18635: 0x9255,\n\t18636: 0x9256,\n\t18637: 0x9257,\n\t18638: 0x9258,\n\t18639: 0x9259,\n\t18640: 0x925A,\n\t18641: 0x925B,\n\t18642: 0x925C,\n\t18643: 0x925D,\n\t18644: 0x925E,\n\t18645: 0x925F,\n\t18646: 0x9260,\n\t18647: 0x9261,\n\t18648: 0x9262,\n\t18649: 0x9263,\n\t18650: 0x9264,\n\t18651: 0x9265,\n\t18652: 0x9266,\n\t18653: 0x9267,\n\t18654: 0x9268,\n\t18655: 0x9269,\n\t18656: 0x926A,\n\t18657: 0x926B,\n\t18658: 0x926C,\n\t18659: 0x926D,\n\t18660: 0x926E,\n\t18661: 0x926F,\n\t18662: 0x9270,\n\t18663: 0x9271,\n\t18664: 0x9272,\n\t18665: 0x9273,\n\t18666: 0x9275,\n\t18667: 0x9276,\n\t18668: 0x9277,\n\t18669: 0x9278,\n\t18670: 0x9279,\n\t18671: 0x927A,\n\t18672: 0x927B,\n\t18673: 0x927C,\n\t18674: 0x927D,\n\t18675: 0x927E,\n\t18676: 0x927F,\n\t18677: 0x9280,\n\t18678: 0x9281,\n\t18679: 0x9282,\n\t18680: 0x9283,\n\t18681: 0x9284,\n\t18682: 0x9285,\n\t18683: 0x9286,\n\t18684: 0x9287,\n\t18685: 0x9288,\n\t18686: 0x9289,\n\t18687: 0x928A,\n\t18688: 0x928B,\n\t18689: 0x928C,\n\t18690: 0x928D,\n\t18691: 0x928F,\n\t18692: 0x9290,\n\t18693: 0x9291,\n\t18694: 0x9292,\n\t18695: 0x9293,\n\t18696: 0x9294,\n\t18697: 0x9295,\n\t18698: 0x9296,\n\t18699: 0x9297,\n\t18700: 0x9298,\n\t18701: 0x9299,\n\t18702: 0x929A,\n\t18703: 0x929B,\n\t18704: 0x929C,\n\t18705: 0x929D,\n\t18706: 0x929E,\n\t18707: 0x929F,\n\t18708: 0x92A0,\n\t18709: 0x92A1,\n\t18710: 0x92A2,\n\t18711: 0x92A3,\n\t18712: 0x92A4,\n\t18713: 0x92A5,\n\t18714: 0x92A6,\n\t18715: 0x92A7,\n\t18716: 0x606A,\n\t18717: 0x607D,\n\t18718: 0x6096,\n\t18719: 0x609A,\n\t18720: 0x60AD,\n\t18721: 0x609D,\n\t18722: 0x6083,\n\t18723: 0x6092,\n\t18724: 0x608C,\n\t18725: 0x609B,\n\t18726: 0x60EC,\n\t18727: 0x60BB,\n\t18728: 0x60B1,\n\t18729: 0x60DD,\n\t18730: 0x60D8,\n\t18731: 0x60C6,\n\t18732: 0x60DA,\n\t18733: 0x60B4,\n\t18734: 0x6120,\n\t18735: 0x6126,\n\t18736: 0x6115,\n\t18737: 0x6123,\n\t18738: 0x60F4,\n\t18739: 0x6100,\n\t18740: 0x610E,\n\t18741: 0x612B,\n\t18742: 0x614A,\n\t18743: 0x6175,\n\t18744: 0x61AC,\n\t18745: 0x6194,\n\t18746: 0x61A7,\n\t18747: 0x61B7,\n\t18748: 0x61D4,\n\t18749: 0x61F5,\n\t18750: 0x5FDD,\n\t18751: 0x96B3,\n\t18752: 0x95E9,\n\t18753: 0x95EB,\n\t18754: 0x95F1,\n\t18755: 0x95F3,\n\t18756: 0x95F5,\n\t18757: 0x95F6,\n\t18758: 0x95FC,\n\t18759: 0x95FE,\n\t18760: 0x9603,\n\t18761: 0x9604,\n\t18762: 0x9606,\n\t18763: 0x9608,\n\t18764: 0x960A,\n\t18765: 0x960B,\n\t18766: 0x960C,\n\t18767: 0x960D,\n\t18768: 0x960F,\n\t18769: 0x9612,\n\t18770: 0x9615,\n\t18771: 0x9616,\n\t18772: 0x9617,\n\t18773: 0x9619,\n\t18774: 0x961A,\n\t18775: 0x4E2C,\n\t18776: 0x723F,\n\t18777: 0x6215,\n\t18778: 0x6C35,\n\t18779: 0x6C54,\n\t18780: 0x6C5C,\n\t18781: 0x6C4A,\n\t18782: 0x6CA3,\n\t18783: 0x6C85,\n\t18784: 0x6C90,\n\t18785: 0x6C94,\n\t18786: 0x6C8C,\n\t18787: 0x6C68,\n\t18788: 0x6C69,\n\t18789: 0x6C74,\n\t18790: 0x6C76,\n\t18791: 0x6C86,\n\t18792: 0x6CA9,\n\t18793: 0x6CD0,\n\t18794: 0x6CD4,\n\t18795: 0x6CAD,\n\t18796: 0x6CF7,\n\t18797: 0x6CF8,\n\t18798: 0x6CF1,\n\t18799: 0x6CD7,\n\t18800: 0x6CB2,\n\t18801: 0x6CE0,\n\t18802: 0x6CD6,\n\t18803: 0x6CFA,\n\t18804: 0x6CEB,\n\t18805: 0x6CEE,\n\t18806: 0x6CB1,\n\t18807: 0x6CD3,\n\t18808: 0x6CEF,\n\t18809: 0x6CFE,\n\t18810: 0x92A8,\n\t18811: 0x92A9,\n\t18812: 0x92AA,\n\t18813: 0x92AB,\n\t18814: 0x92AC,\n\t18815: 0x92AD,\n\t18816: 0x92AF,\n\t18817: 0x92B0,\n\t18818: 0x92B1,\n\t18819: 0x92B2,\n\t18820: 0x92B3,\n\t18821: 0x92B4,\n\t18822: 0x92B5,\n\t18823: 0x92B6,\n\t18824: 0x92B7,\n\t18825: 0x92B8,\n\t18826: 0x92B9,\n\t18827: 0x92BA,\n\t18828: 0x92BB,\n\t18829: 0x92BC,\n\t18830: 0x92BD,\n\t18831: 0x92BE,\n\t18832: 0x92BF,\n\t18833: 0x92C0,\n\t18834: 0x92C1,\n\t18835: 0x92C2,\n\t18836: 0x92C3,\n\t18837: 0x92C4,\n\t18838: 0x92C5,\n\t18839: 0x92C6,\n\t18840: 0x92C7,\n\t18841: 0x92C9,\n\t18842: 0x92CA,\n\t18843: 0x92CB,\n\t18844: 0x92CC,\n\t18845: 0x92CD,\n\t18846: 0x92CE,\n\t18847: 0x92CF,\n\t18848: 0x92D0,\n\t18849: 0x92D1,\n\t18850: 0x92D2,\n\t18851: 0x92D3,\n\t18852: 0x92D4,\n\t18853: 0x92D5,\n\t18854: 0x92D6,\n\t18855: 0x92D7,\n\t18856: 0x92D8,\n\t18857: 0x92D9,\n\t18858: 0x92DA,\n\t18859: 0x92DB,\n\t18860: 0x92DC,\n\t18861: 0x92DD,\n\t18862: 0x92DE,\n\t18863: 0x92DF,\n\t18864: 0x92E0,\n\t18865: 0x92E1,\n\t18866: 0x92E2,\n\t18867: 0x92E3,\n\t18868: 0x92E4,\n\t18869: 0x92E5,\n\t18870: 0x92E6,\n\t18871: 0x92E7,\n\t18872: 0x92E8,\n\t18873: 0x92E9,\n\t18874: 0x92EA,\n\t18875: 0x92EB,\n\t18876: 0x92EC,\n\t18877: 0x92ED,\n\t18878: 0x92EE,\n\t18879: 0x92EF,\n\t18880: 0x92F0,\n\t18881: 0x92F1,\n\t18882: 0x92F2,\n\t18883: 0x92F3,\n\t18884: 0x92F4,\n\t18885: 0x92F5,\n\t18886: 0x92F6,\n\t18887: 0x92F7,\n\t18888: 0x92F8,\n\t18889: 0x92F9,\n\t18890: 0x92FA,\n\t18891: 0x92FB,\n\t18892: 0x92FC,\n\t18893: 0x92FD,\n\t18894: 0x92FE,\n\t18895: 0x92FF,\n\t18896: 0x9300,\n\t18897: 0x9301,\n\t18898: 0x9302,\n\t18899: 0x9303,\n\t18900: 0x9304,\n\t18901: 0x9305,\n\t18902: 0x9306,\n\t18903: 0x9307,\n\t18904: 0x9308,\n\t18905: 0x9309,\n\t18906: 0x6D39,\n\t18907: 0x6D27,\n\t18908: 0x6D0C,\n\t18909: 0x6D43,\n\t18910: 0x6D48,\n\t18911: 0x6D07,\n\t18912: 0x6D04,\n\t18913: 0x6D19,\n\t18914: 0x6D0E,\n\t18915: 0x6D2B,\n\t18916: 0x6D4D,\n\t18917: 0x6D2E,\n\t18918: 0x6D35,\n\t18919: 0x6D1A,\n\t18920: 0x6D4F,\n\t18921: 0x6D52,\n\t18922: 0x6D54,\n\t18923: 0x6D33,\n\t18924: 0x6D91,\n\t18925: 0x6D6F,\n\t18926: 0x6D9E,\n\t18927: 0x6DA0,\n\t18928: 0x6D5E,\n\t18929: 0x6D93,\n\t18930: 0x6D94,\n\t18931: 0x6D5C,\n\t18932: 0x6D60,\n\t18933: 0x6D7C,\n\t18934: 0x6D63,\n\t18935: 0x6E1A,\n\t18936: 0x6DC7,\n\t18937: 0x6DC5,\n\t18938: 0x6DDE,\n\t18939: 0x6E0E,\n\t18940: 0x6DBF,\n\t18941: 0x6DE0,\n\t18942: 0x6E11,\n\t18943: 0x6DE6,\n\t18944: 0x6DDD,\n\t18945: 0x6DD9,\n\t18946: 0x6E16,\n\t18947: 0x6DAB,\n\t18948: 0x6E0C,\n\t18949: 0x6DAE,\n\t18950: 0x6E2B,\n\t18951: 0x6E6E,\n\t18952: 0x6E4E,\n\t18953: 0x6E6B,\n\t18954: 0x6EB2,\n\t18955: 0x6E5F,\n\t18956: 0x6E86,\n\t18957: 0x6E53,\n\t18958: 0x6E54,\n\t18959: 0x6E32,\n\t18960: 0x6E25,\n\t18961: 0x6E44,\n\t18962: 0x6EDF,\n\t18963: 0x6EB1,\n\t18964: 0x6E98,\n\t18965: 0x6EE0,\n\t18966: 0x6F2D,\n\t18967: 0x6EE2,\n\t18968: 0x6EA5,\n\t18969: 0x6EA7,\n\t18970: 0x6EBD,\n\t18971: 0x6EBB,\n\t18972: 0x6EB7,\n\t18973: 0x6ED7,\n\t18974: 0x6EB4,\n\t18975: 0x6ECF,\n\t18976: 0x6E8F,\n\t18977: 0x6EC2,\n\t18978: 0x6E9F,\n\t18979: 0x6F62,\n\t18980: 0x6F46,\n\t18981: 0x6F47,\n\t18982: 0x6F24,\n\t18983: 0x6F15,\n\t18984: 0x6EF9,\n\t18985: 0x6F2F,\n\t18986: 0x6F36,\n\t18987: 0x6F4B,\n\t18988: 0x6F74,\n\t18989: 0x6F2A,\n\t18990: 0x6F09,\n\t18991: 0x6F29,\n\t18992: 0x6F89,\n\t18993: 0x6F8D,\n\t18994: 0x6F8C,\n\t18995: 0x6F78,\n\t18996: 0x6F72,\n\t18997: 0x6F7C,\n\t18998: 0x6F7A,\n\t18999: 0x6FD1,\n\t19000: 0x930A,\n\t19001: 0x930B,\n\t19002: 0x930C,\n\t19003: 0x930D,\n\t19004: 0x930E,\n\t19005: 0x930F,\n\t19006: 0x9310,\n\t19007: 0x9311,\n\t19008: 0x9312,\n\t19009: 0x9313,\n\t19010: 0x9314,\n\t19011: 0x9315,\n\t19012: 0x9316,\n\t19013: 0x9317,\n\t19014: 0x9318,\n\t19015: 0x9319,\n\t19016: 0x931A,\n\t19017: 0x931B,\n\t19018: 0x931C,\n\t19019: 0x931D,\n\t19020: 0x931E,\n\t19021: 0x931F,\n\t19022: 0x9320,\n\t19023: 0x9321,\n\t19024: 0x9322,\n\t19025: 0x9323,\n\t19026: 0x9324,\n\t19027: 0x9325,\n\t19028: 0x9326,\n\t19029: 0x9327,\n\t19030: 0x9328,\n\t19031: 0x9329,\n\t19032: 0x932A,\n\t19033: 0x932B,\n\t19034: 0x932C,\n\t19035: 0x932D,\n\t19036: 0x932E,\n\t19037: 0x932F,\n\t19038: 0x9330,\n\t19039: 0x9331,\n\t19040: 0x9332,\n\t19041: 0x9333,\n\t19042: 0x9334,\n\t19043: 0x9335,\n\t19044: 0x9336,\n\t19045: 0x9337,\n\t19046: 0x9338,\n\t19047: 0x9339,\n\t19048: 0x933A,\n\t19049: 0x933B,\n\t19050: 0x933C,\n\t19051: 0x933D,\n\t19052: 0x933F,\n\t19053: 0x9340,\n\t19054: 0x9341,\n\t19055: 0x9342,\n\t19056: 0x9343,\n\t19057: 0x9344,\n\t19058: 0x9345,\n\t19059: 0x9346,\n\t19060: 0x9347,\n\t19061: 0x9348,\n\t19062: 0x9349,\n\t19063: 0x934A,\n\t19064: 0x934B,\n\t19065: 0x934C,\n\t19066: 0x934D,\n\t19067: 0x934E,\n\t19068: 0x934F,\n\t19069: 0x9350,\n\t19070: 0x9351,\n\t19071: 0x9352,\n\t19072: 0x9353,\n\t19073: 0x9354,\n\t19074: 0x9355,\n\t19075: 0x9356,\n\t19076: 0x9357,\n\t19077: 0x9358,\n\t19078: 0x9359,\n\t19079: 0x935A,\n\t19080: 0x935B,\n\t19081: 0x935C,\n\t19082: 0x935D,\n\t19083: 0x935E,\n\t19084: 0x935F,\n\t19085: 0x9360,\n\t19086: 0x9361,\n\t19087: 0x9362,\n\t19088: 0x9363,\n\t19089: 0x9364,\n\t19090: 0x9365,\n\t19091: 0x9366,\n\t19092: 0x9367,\n\t19093: 0x9368,\n\t19094: 0x9369,\n\t19095: 0x936B,\n\t19096: 0x6FC9,\n\t19097: 0x6FA7,\n\t19098: 0x6FB9,\n\t19099: 0x6FB6,\n\t19100: 0x6FC2,\n\t19101: 0x6FE1,\n\t19102: 0x6FEE,\n\t19103: 0x6FDE,\n\t19104: 0x6FE0,\n\t19105: 0x6FEF,\n\t19106: 0x701A,\n\t19107: 0x7023,\n\t19108: 0x701B,\n\t19109: 0x7039,\n\t19110: 0x7035,\n\t19111: 0x704F,\n\t19112: 0x705E,\n\t19113: 0x5B80,\n\t19114: 0x5B84,\n\t19115: 0x5B95,\n\t19116: 0x5B93,\n\t19117: 0x5BA5,\n\t19118: 0x5BB8,\n\t19119: 0x752F,\n\t19120: 0x9A9E,\n\t19121: 0x6434,\n\t19122: 0x5BE4,\n\t19123: 0x5BEE,\n\t19124: 0x8930,\n\t19125: 0x5BF0,\n\t19126: 0x8E47,\n\t19127: 0x8B07,\n\t19128: 0x8FB6,\n\t19129: 0x8FD3,\n\t19130: 0x8FD5,\n\t19131: 0x8FE5,\n\t19132: 0x8FEE,\n\t19133: 0x8FE4,\n\t19134: 0x8FE9,\n\t19135: 0x8FE6,\n\t19136: 0x8FF3,\n\t19137: 0x8FE8,\n\t19138: 0x9005,\n\t19139: 0x9004,\n\t19140: 0x900B,\n\t19141: 0x9026,\n\t19142: 0x9011,\n\t19143: 0x900D,\n\t19144: 0x9016,\n\t19145: 0x9021,\n\t19146: 0x9035,\n\t19147: 0x9036,\n\t19148: 0x902D,\n\t19149: 0x902F,\n\t19150: 0x9044,\n\t19151: 0x9051,\n\t19152: 0x9052,\n\t19153: 0x9050,\n\t19154: 0x9068,\n\t19155: 0x9058,\n\t19156: 0x9062,\n\t19157: 0x905B,\n\t19158: 0x66B9,\n\t19159: 0x9074,\n\t19160: 0x907D,\n\t19161: 0x9082,\n\t19162: 0x9088,\n\t19163: 0x9083,\n\t19164: 0x908B,\n\t19165: 0x5F50,\n\t19166: 0x5F57,\n\t19167: 0x5F56,\n\t19168: 0x5F58,\n\t19169: 0x5C3B,\n\t19170: 0x54AB,\n\t19171: 0x5C50,\n\t19172: 0x5C59,\n\t19173: 0x5B71,\n\t19174: 0x5C63,\n\t19175: 0x5C66,\n\t19176: 0x7FBC,\n\t19177: 0x5F2A,\n\t19178: 0x5F29,\n\t19179: 0x5F2D,\n\t19180: 0x8274,\n\t19181: 0x5F3C,\n\t19182: 0x9B3B,\n\t19183: 0x5C6E,\n\t19184: 0x5981,\n\t19185: 0x5983,\n\t19186: 0x598D,\n\t19187: 0x59A9,\n\t19188: 0x59AA,\n\t19189: 0x59A3,\n\t19190: 0x936C,\n\t19191: 0x936D,\n\t19192: 0x936E,\n\t19193: 0x936F,\n\t19194: 0x9370,\n\t19195: 0x9371,\n\t19196: 0x9372,\n\t19197: 0x9373,\n\t19198: 0x9374,\n\t19199: 0x9375,\n\t19200: 0x9376,\n\t19201: 0x9377,\n\t19202: 0x9378,\n\t19203: 0x9379,\n\t19204: 0x937A,\n\t19205: 0x937B,\n\t19206: 0x937C,\n\t19207: 0x937D,\n\t19208: 0x937E,\n\t19209: 0x937F,\n\t19210: 0x9380,\n\t19211: 0x9381,\n\t19212: 0x9382,\n\t19213: 0x9383,\n\t19214: 0x9384,\n\t19215: 0x9385,\n\t19216: 0x9386,\n\t19217: 0x9387,\n\t19218: 0x9388,\n\t19219: 0x9389,\n\t19220: 0x938A,\n\t19221: 0x938B,\n\t19222: 0x938C,\n\t19223: 0x938D,\n\t19224: 0x938E,\n\t19225: 0x9390,\n\t19226: 0x9391,\n\t19227: 0x9392,\n\t19228: 0x9393,\n\t19229: 0x9394,\n\t19230: 0x9395,\n\t19231: 0x9396,\n\t19232: 0x9397,\n\t19233: 0x9398,\n\t19234: 0x9399,\n\t19235: 0x939A,\n\t19236: 0x939B,\n\t19237: 0x939C,\n\t19238: 0x939D,\n\t19239: 0x939E,\n\t19240: 0x939F,\n\t19241: 0x93A0,\n\t19242: 0x93A1,\n\t19243: 0x93A2,\n\t19244: 0x93A3,\n\t19245: 0x93A4,\n\t19246: 0x93A5,\n\t19247: 0x93A6,\n\t19248: 0x93A7,\n\t19249: 0x93A8,\n\t19250: 0x93A9,\n\t19251: 0x93AA,\n\t19252: 0x93AB,\n\t19253: 0x93AC,\n\t19254: 0x93AD,\n\t19255: 0x93AE,\n\t19256: 0x93AF,\n\t19257: 0x93B0,\n\t19258: 0x93B1,\n\t19259: 0x93B2,\n\t19260: 0x93B3,\n\t19261: 0x93B4,\n\t19262: 0x93B5,\n\t19263: 0x93B6,\n\t19264: 0x93B7,\n\t19265: 0x93B8,\n\t19266: 0x93B9,\n\t19267: 0x93BA,\n\t19268: 0x93BB,\n\t19269: 0x93BC,\n\t19270: 0x93BD,\n\t19271: 0x93BE,\n\t19272: 0x93BF,\n\t19273: 0x93C0,\n\t19274: 0x93C1,\n\t19275: 0x93C2,\n\t19276: 0x93C3,\n\t19277: 0x93C4,\n\t19278: 0x93C5,\n\t19279: 0x93C6,\n\t19280: 0x93C7,\n\t19281: 0x93C8,\n\t19282: 0x93C9,\n\t19283: 0x93CB,\n\t19284: 0x93CC,\n\t19285: 0x93CD,\n\t19286: 0x5997,\n\t19287: 0x59CA,\n\t19288: 0x59AB,\n\t19289: 0x599E,\n\t19290: 0x59A4,\n\t19291: 0x59D2,\n\t19292: 0x59B2,\n\t19293: 0x59AF,\n\t19294: 0x59D7,\n\t19295: 0x59BE,\n\t19296: 0x5A05,\n\t19297: 0x5A06,\n\t19298: 0x59DD,\n\t19299: 0x5A08,\n\t19300: 0x59E3,\n\t19301: 0x59D8,\n\t19302: 0x59F9,\n\t19303: 0x5A0C,\n\t19304: 0x5A09,\n\t19305: 0x5A32,\n\t19306: 0x5A34,\n\t19307: 0x5A11,\n\t19308: 0x5A23,\n\t19309: 0x5A13,\n\t19310: 0x5A40,\n\t19311: 0x5A67,\n\t19312: 0x5A4A,\n\t19313: 0x5A55,\n\t19314: 0x5A3C,\n\t19315: 0x5A62,\n\t19316: 0x5A75,\n\t19317: 0x80EC,\n\t19318: 0x5AAA,\n\t19319: 0x5A9B,\n\t19320: 0x5A77,\n\t19321: 0x5A7A,\n\t19322: 0x5ABE,\n\t19323: 0x5AEB,\n\t19324: 0x5AB2,\n\t19325: 0x5AD2,\n\t19326: 0x5AD4,\n\t19327: 0x5AB8,\n\t19328: 0x5AE0,\n\t19329: 0x5AE3,\n\t19330: 0x5AF1,\n\t19331: 0x5AD6,\n\t19332: 0x5AE6,\n\t19333: 0x5AD8,\n\t19334: 0x5ADC,\n\t19335: 0x5B09,\n\t19336: 0x5B17,\n\t19337: 0x5B16,\n\t19338: 0x5B32,\n\t19339: 0x5B37,\n\t19340: 0x5B40,\n\t19341: 0x5C15,\n\t19342: 0x5C1C,\n\t19343: 0x5B5A,\n\t19344: 0x5B65,\n\t19345: 0x5B73,\n\t19346: 0x5B51,\n\t19347: 0x5B53,\n\t19348: 0x5B62,\n\t19349: 0x9A75,\n\t19350: 0x9A77,\n\t19351: 0x9A78,\n\t19352: 0x9A7A,\n\t19353: 0x9A7F,\n\t19354: 0x9A7D,\n\t19355: 0x9A80,\n\t19356: 0x9A81,\n\t19357: 0x9A85,\n\t19358: 0x9A88,\n\t19359: 0x9A8A,\n\t19360: 0x9A90,\n\t19361: 0x9A92,\n\t19362: 0x9A93,\n\t19363: 0x9A96,\n\t19364: 0x9A98,\n\t19365: 0x9A9B,\n\t19366: 0x9A9C,\n\t19367: 0x9A9D,\n\t19368: 0x9A9F,\n\t19369: 0x9AA0,\n\t19370: 0x9AA2,\n\t19371: 0x9AA3,\n\t19372: 0x9AA5,\n\t19373: 0x9AA7,\n\t19374: 0x7E9F,\n\t19375: 0x7EA1,\n\t19376: 0x7EA3,\n\t19377: 0x7EA5,\n\t19378: 0x7EA8,\n\t19379: 0x7EA9,\n\t19380: 0x93CE,\n\t19381: 0x93CF,\n\t19382: 0x93D0,\n\t19383: 0x93D1,\n\t19384: 0x93D2,\n\t19385: 0x93D3,\n\t19386: 0x93D4,\n\t19387: 0x93D5,\n\t19388: 0x93D7,\n\t19389: 0x93D8,\n\t19390: 0x93D9,\n\t19391: 0x93DA,\n\t19392: 0x93DB,\n\t19393: 0x93DC,\n\t19394: 0x93DD,\n\t19395: 0x93DE,\n\t19396: 0x93DF,\n\t19397: 0x93E0,\n\t19398: 0x93E1,\n\t19399: 0x93E2,\n\t19400: 0x93E3,\n\t19401: 0x93E4,\n\t19402: 0x93E5,\n\t19403: 0x93E6,\n\t19404: 0x93E7,\n\t19405: 0x93E8,\n\t19406: 0x93E9,\n\t19407: 0x93EA,\n\t19408: 0x93EB,\n\t19409: 0x93EC,\n\t19410: 0x93ED,\n\t19411: 0x93EE,\n\t19412: 0x93EF,\n\t19413: 0x93F0,\n\t19414: 0x93F1,\n\t19415: 0x93F2,\n\t19416: 0x93F3,\n\t19417: 0x93F4,\n\t19418: 0x93F5,\n\t19419: 0x93F6,\n\t19420: 0x93F7,\n\t19421: 0x93F8,\n\t19422: 0x93F9,\n\t19423: 0x93FA,\n\t19424: 0x93FB,\n\t19425: 0x93FC,\n\t19426: 0x93FD,\n\t19427: 0x93FE,\n\t19428: 0x93FF,\n\t19429: 0x9400,\n\t19430: 0x9401,\n\t19431: 0x9402,\n\t19432: 0x9403,\n\t19433: 0x9404,\n\t19434: 0x9405,\n\t19435: 0x9406,\n\t19436: 0x9407,\n\t19437: 0x9408,\n\t19438: 0x9409,\n\t19439: 0x940A,\n\t19440: 0x940B,\n\t19441: 0x940C,\n\t19442: 0x940D,\n\t19443: 0x940E,\n\t19444: 0x940F,\n\t19445: 0x9410,\n\t19446: 0x9411,\n\t19447: 0x9412,\n\t19448: 0x9413,\n\t19449: 0x9414,\n\t19450: 0x9415,\n\t19451: 0x9416,\n\t19452: 0x9417,\n\t19453: 0x9418,\n\t19454: 0x9419,\n\t19455: 0x941A,\n\t19456: 0x941B,\n\t19457: 0x941C,\n\t19458: 0x941D,\n\t19459: 0x941E,\n\t19460: 0x941F,\n\t19461: 0x9420,\n\t19462: 0x9421,\n\t19463: 0x9422,\n\t19464: 0x9423,\n\t19465: 0x9424,\n\t19466: 0x9425,\n\t19467: 0x9426,\n\t19468: 0x9427,\n\t19469: 0x9428,\n\t19470: 0x9429,\n\t19471: 0x942A,\n\t19472: 0x942B,\n\t19473: 0x942C,\n\t19474: 0x942D,\n\t19475: 0x942E,\n\t19476: 0x7EAD,\n\t19477: 0x7EB0,\n\t19478: 0x7EBE,\n\t19479: 0x7EC0,\n\t19480: 0x7EC1,\n\t19481: 0x7EC2,\n\t19482: 0x7EC9,\n\t19483: 0x7ECB,\n\t19484: 0x7ECC,\n\t19485: 0x7ED0,\n\t19486: 0x7ED4,\n\t19487: 0x7ED7,\n\t19488: 0x7EDB,\n\t19489: 0x7EE0,\n\t19490: 0x7EE1,\n\t19491: 0x7EE8,\n\t19492: 0x7EEB,\n\t19493: 0x7EEE,\n\t19494: 0x7EEF,\n\t19495: 0x7EF1,\n\t19496: 0x7EF2,\n\t19497: 0x7F0D,\n\t19498: 0x7EF6,\n\t19499: 0x7EFA,\n\t19500: 0x7EFB,\n\t19501: 0x7EFE,\n\t19502: 0x7F01,\n\t19503: 0x7F02,\n\t19504: 0x7F03,\n\t19505: 0x7F07,\n\t19506: 0x7F08,\n\t19507: 0x7F0B,\n\t19508: 0x7F0C,\n\t19509: 0x7F0F,\n\t19510: 0x7F11,\n\t19511: 0x7F12,\n\t19512: 0x7F17,\n\t19513: 0x7F19,\n\t19514: 0x7F1C,\n\t19515: 0x7F1B,\n\t19516: 0x7F1F,\n\t19517: 0x7F21,\n\t19518: 0x7F22,\n\t19519: 0x7F23,\n\t19520: 0x7F24,\n\t19521: 0x7F25,\n\t19522: 0x7F26,\n\t19523: 0x7F27,\n\t19524: 0x7F2A,\n\t19525: 0x7F2B,\n\t19526: 0x7F2C,\n\t19527: 0x7F2D,\n\t19528: 0x7F2F,\n\t19529: 0x7F30,\n\t19530: 0x7F31,\n\t19531: 0x7F32,\n\t19532: 0x7F33,\n\t19533: 0x7F35,\n\t19534: 0x5E7A,\n\t19535: 0x757F,\n\t19536: 0x5DDB,\n\t19537: 0x753E,\n\t19538: 0x9095,\n\t19539: 0x738E,\n\t19540: 0x7391,\n\t19541: 0x73AE,\n\t19542: 0x73A2,\n\t19543: 0x739F,\n\t19544: 0x73CF,\n\t19545: 0x73C2,\n\t19546: 0x73D1,\n\t19547: 0x73B7,\n\t19548: 0x73B3,\n\t19549: 0x73C0,\n\t19550: 0x73C9,\n\t19551: 0x73C8,\n\t19552: 0x73E5,\n\t19553: 0x73D9,\n\t19554: 0x987C,\n\t19555: 0x740A,\n\t19556: 0x73E9,\n\t19557: 0x73E7,\n\t19558: 0x73DE,\n\t19559: 0x73BA,\n\t19560: 0x73F2,\n\t19561: 0x740F,\n\t19562: 0x742A,\n\t19563: 0x745B,\n\t19564: 0x7426,\n\t19565: 0x7425,\n\t19566: 0x7428,\n\t19567: 0x7430,\n\t19568: 0x742E,\n\t19569: 0x742C,\n\t19570: 0x942F,\n\t19571: 0x9430,\n\t19572: 0x9431,\n\t19573: 0x9432,\n\t19574: 0x9433,\n\t19575: 0x9434,\n\t19576: 0x9435,\n\t19577: 0x9436,\n\t19578: 0x9437,\n\t19579: 0x9438,\n\t19580: 0x9439,\n\t19581: 0x943A,\n\t19582: 0x943B,\n\t19583: 0x943C,\n\t19584: 0x943D,\n\t19585: 0x943F,\n\t19586: 0x9440,\n\t19587: 0x9441,\n\t19588: 0x9442,\n\t19589: 0x9443,\n\t19590: 0x9444,\n\t19591: 0x9445,\n\t19592: 0x9446,\n\t19593: 0x9447,\n\t19594: 0x9448,\n\t19595: 0x9449,\n\t19596: 0x944A,\n\t19597: 0x944B,\n\t19598: 0x944C,\n\t19599: 0x944D,\n\t19600: 0x944E,\n\t19601: 0x944F,\n\t19602: 0x9450,\n\t19603: 0x9451,\n\t19604: 0x9452,\n\t19605: 0x9453,\n\t19606: 0x9454,\n\t19607: 0x9455,\n\t19608: 0x9456,\n\t19609: 0x9457,\n\t19610: 0x9458,\n\t19611: 0x9459,\n\t19612: 0x945A,\n\t19613: 0x945B,\n\t19614: 0x945C,\n\t19615: 0x945D,\n\t19616: 0x945E,\n\t19617: 0x945F,\n\t19618: 0x9460,\n\t19619: 0x9461,\n\t19620: 0x9462,\n\t19621: 0x9463,\n\t19622: 0x9464,\n\t19623: 0x9465,\n\t19624: 0x9466,\n\t19625: 0x9467,\n\t19626: 0x9468,\n\t19627: 0x9469,\n\t19628: 0x946A,\n\t19629: 0x946C,\n\t19630: 0x946D,\n\t19631: 0x946E,\n\t19632: 0x946F,\n\t19633: 0x9470,\n\t19634: 0x9471,\n\t19635: 0x9472,\n\t19636: 0x9473,\n\t19637: 0x9474,\n\t19638: 0x9475,\n\t19639: 0x9476,\n\t19640: 0x9477,\n\t19641: 0x9478,\n\t19642: 0x9479,\n\t19643: 0x947A,\n\t19644: 0x947B,\n\t19645: 0x947C,\n\t19646: 0x947D,\n\t19647: 0x947E,\n\t19648: 0x947F,\n\t19649: 0x9480,\n\t19650: 0x9481,\n\t19651: 0x9482,\n\t19652: 0x9483,\n\t19653: 0x9484,\n\t19654: 0x9491,\n\t19655: 0x9496,\n\t19656: 0x9498,\n\t19657: 0x94C7,\n\t19658: 0x94CF,\n\t19659: 0x94D3,\n\t19660: 0x94D4,\n\t19661: 0x94DA,\n\t19662: 0x94E6,\n\t19663: 0x94FB,\n\t19664: 0x951C,\n\t19665: 0x9520,\n\t19666: 0x741B,\n\t19667: 0x741A,\n\t19668: 0x7441,\n\t19669: 0x745C,\n\t19670: 0x7457,\n\t19671: 0x7455,\n\t19672: 0x7459,\n\t19673: 0x7477,\n\t19674: 0x746D,\n\t19675: 0x747E,\n\t19676: 0x749C,\n\t19677: 0x748E,\n\t19678: 0x7480,\n\t19679: 0x7481,\n\t19680: 0x7487,\n\t19681: 0x748B,\n\t19682: 0x749E,\n\t19683: 0x74A8,\n\t19684: 0x74A9,\n\t19685: 0x7490,\n\t19686: 0x74A7,\n\t19687: 0x74D2,\n\t19688: 0x74BA,\n\t19689: 0x97EA,\n\t19690: 0x97EB,\n\t19691: 0x97EC,\n\t19692: 0x674C,\n\t19693: 0x6753,\n\t19694: 0x675E,\n\t19695: 0x6748,\n\t19696: 0x6769,\n\t19697: 0x67A5,\n\t19698: 0x6787,\n\t19699: 0x676A,\n\t19700: 0x6773,\n\t19701: 0x6798,\n\t19702: 0x67A7,\n\t19703: 0x6775,\n\t19704: 0x67A8,\n\t19705: 0x679E,\n\t19706: 0x67AD,\n\t19707: 0x678B,\n\t19708: 0x6777,\n\t19709: 0x677C,\n\t19710: 0x67F0,\n\t19711: 0x6809,\n\t19712: 0x67D8,\n\t19713: 0x680A,\n\t19714: 0x67E9,\n\t19715: 0x67B0,\n\t19716: 0x680C,\n\t19717: 0x67D9,\n\t19718: 0x67B5,\n\t19719: 0x67DA,\n\t19720: 0x67B3,\n\t19721: 0x67DD,\n\t19722: 0x6800,\n\t19723: 0x67C3,\n\t19724: 0x67B8,\n\t19725: 0x67E2,\n\t19726: 0x680E,\n\t19727: 0x67C1,\n\t19728: 0x67FD,\n\t19729: 0x6832,\n\t19730: 0x6833,\n\t19731: 0x6860,\n\t19732: 0x6861,\n\t19733: 0x684E,\n\t19734: 0x6862,\n\t19735: 0x6844,\n\t19736: 0x6864,\n\t19737: 0x6883,\n\t19738: 0x681D,\n\t19739: 0x6855,\n\t19740: 0x6866,\n\t19741: 0x6841,\n\t19742: 0x6867,\n\t19743: 0x6840,\n\t19744: 0x683E,\n\t19745: 0x684A,\n\t19746: 0x6849,\n\t19747: 0x6829,\n\t19748: 0x68B5,\n\t19749: 0x688F,\n\t19750: 0x6874,\n\t19751: 0x6877,\n\t19752: 0x6893,\n\t19753: 0x686B,\n\t19754: 0x68C2,\n\t19755: 0x696E,\n\t19756: 0x68FC,\n\t19757: 0x691F,\n\t19758: 0x6920,\n\t19759: 0x68F9,\n\t19760: 0x9527,\n\t19761: 0x9533,\n\t19762: 0x953D,\n\t19763: 0x9543,\n\t19764: 0x9548,\n\t19765: 0x954B,\n\t19766: 0x9555,\n\t19767: 0x955A,\n\t19768: 0x9560,\n\t19769: 0x956E,\n\t19770: 0x9574,\n\t19771: 0x9575,\n\t19772: 0x9577,\n\t19773: 0x9578,\n\t19774: 0x9579,\n\t19775: 0x957A,\n\t19776: 0x957B,\n\t19777: 0x957C,\n\t19778: 0x957D,\n\t19779: 0x957E,\n\t19780: 0x9580,\n\t19781: 0x9581,\n\t19782: 0x9582,\n\t19783: 0x9583,\n\t19784: 0x9584,\n\t19785: 0x9585,\n\t19786: 0x9586,\n\t19787: 0x9587,\n\t19788: 0x9588,\n\t19789: 0x9589,\n\t19790: 0x958A,\n\t19791: 0x958B,\n\t19792: 0x958C,\n\t19793: 0x958D,\n\t19794: 0x958E,\n\t19795: 0x958F,\n\t19796: 0x9590,\n\t19797: 0x9591,\n\t19798: 0x9592,\n\t19799: 0x9593,\n\t19800: 0x9594,\n\t19801: 0x9595,\n\t19802: 0x9596,\n\t19803: 0x9597,\n\t19804: 0x9598,\n\t19805: 0x9599,\n\t19806: 0x959A,\n\t19807: 0x959B,\n\t19808: 0x959C,\n\t19809: 0x959D,\n\t19810: 0x959E,\n\t19811: 0x959F,\n\t19812: 0x95A0,\n\t19813: 0x95A1,\n\t19814: 0x95A2,\n\t19815: 0x95A3,\n\t19816: 0x95A4,\n\t19817: 0x95A5,\n\t19818: 0x95A6,\n\t19819: 0x95A7,\n\t19820: 0x95A8,\n\t19821: 0x95A9,\n\t19822: 0x95AA,\n\t19823: 0x95AB,\n\t19824: 0x95AC,\n\t19825: 0x95AD,\n\t19826: 0x95AE,\n\t19827: 0x95AF,\n\t19828: 0x95B0,\n\t19829: 0x95B1,\n\t19830: 0x95B2,\n\t19831: 0x95B3,\n\t19832: 0x95B4,\n\t19833: 0x95B5,\n\t19834: 0x95B6,\n\t19835: 0x95B7,\n\t19836: 0x95B8,\n\t19837: 0x95B9,\n\t19838: 0x95BA,\n\t19839: 0x95BB,\n\t19840: 0x95BC,\n\t19841: 0x95BD,\n\t19842: 0x95BE,\n\t19843: 0x95BF,\n\t19844: 0x95C0,\n\t19845: 0x95C1,\n\t19846: 0x95C2,\n\t19847: 0x95C3,\n\t19848: 0x95C4,\n\t19849: 0x95C5,\n\t19850: 0x95C6,\n\t19851: 0x95C7,\n\t19852: 0x95C8,\n\t19853: 0x95C9,\n\t19854: 0x95CA,\n\t19855: 0x95CB,\n\t19856: 0x6924,\n\t19857: 0x68F0,\n\t19858: 0x690B,\n\t19859: 0x6901,\n\t19860: 0x6957,\n\t19861: 0x68E3,\n\t19862: 0x6910,\n\t19863: 0x6971,\n\t19864: 0x6939,\n\t19865: 0x6960,\n\t19866: 0x6942,\n\t19867: 0x695D,\n\t19868: 0x6984,\n\t19869: 0x696B,\n\t19870: 0x6980,\n\t19871: 0x6998,\n\t19872: 0x6978,\n\t19873: 0x6934,\n\t19874: 0x69CC,\n\t19875: 0x6987,\n\t19876: 0x6988,\n\t19877: 0x69CE,\n\t19878: 0x6989,\n\t19879: 0x6966,\n\t19880: 0x6963,\n\t19881: 0x6979,\n\t19882: 0x699B,\n\t19883: 0x69A7,\n\t19884: 0x69BB,\n\t19885: 0x69AB,\n\t19886: 0x69AD,\n\t19887: 0x69D4,\n\t19888: 0x69B1,\n\t19889: 0x69C1,\n\t19890: 0x69CA,\n\t19891: 0x69DF,\n\t19892: 0x6995,\n\t19893: 0x69E0,\n\t19894: 0x698D,\n\t19895: 0x69FF,\n\t19896: 0x6A2F,\n\t19897: 0x69ED,\n\t19898: 0x6A17,\n\t19899: 0x6A18,\n\t19900: 0x6A65,\n\t19901: 0x69F2,\n\t19902: 0x6A44,\n\t19903: 0x6A3E,\n\t19904: 0x6AA0,\n\t19905: 0x6A50,\n\t19906: 0x6A5B,\n\t19907: 0x6A35,\n\t19908: 0x6A8E,\n\t19909: 0x6A79,\n\t19910: 0x6A3D,\n\t19911: 0x6A28,\n\t19912: 0x6A58,\n\t19913: 0x6A7C,\n\t19914: 0x6A91,\n\t19915: 0x6A90,\n\t19916: 0x6AA9,\n\t19917: 0x6A97,\n\t19918: 0x6AAB,\n\t19919: 0x7337,\n\t19920: 0x7352,\n\t19921: 0x6B81,\n\t19922: 0x6B82,\n\t19923: 0x6B87,\n\t19924: 0x6B84,\n\t19925: 0x6B92,\n\t19926: 0x6B93,\n\t19927: 0x6B8D,\n\t19928: 0x6B9A,\n\t19929: 0x6B9B,\n\t19930: 0x6BA1,\n\t19931: 0x6BAA,\n\t19932: 0x8F6B,\n\t19933: 0x8F6D,\n\t19934: 0x8F71,\n\t19935: 0x8F72,\n\t19936: 0x8F73,\n\t19937: 0x8F75,\n\t19938: 0x8F76,\n\t19939: 0x8F78,\n\t19940: 0x8F77,\n\t19941: 0x8F79,\n\t19942: 0x8F7A,\n\t19943: 0x8F7C,\n\t19944: 0x8F7E,\n\t19945: 0x8F81,\n\t19946: 0x8F82,\n\t19947: 0x8F84,\n\t19948: 0x8F87,\n\t19949: 0x8F8B,\n\t19950: 0x95CC,\n\t19951: 0x95CD,\n\t19952: 0x95CE,\n\t19953: 0x95CF,\n\t19954: 0x95D0,\n\t19955: 0x95D1,\n\t19956: 0x95D2,\n\t19957: 0x95D3,\n\t19958: 0x95D4,\n\t19959: 0x95D5,\n\t19960: 0x95D6,\n\t19961: 0x95D7,\n\t19962: 0x95D8,\n\t19963: 0x95D9,\n\t19964: 0x95DA,\n\t19965: 0x95DB,\n\t19966: 0x95DC,\n\t19967: 0x95DD,\n\t19968: 0x95DE,\n\t19969: 0x95DF,\n\t19970: 0x95E0,\n\t19971: 0x95E1,\n\t19972: 0x95E2,\n\t19973: 0x95E3,\n\t19974: 0x95E4,\n\t19975: 0x95E5,\n\t19976: 0x95E6,\n\t19977: 0x95E7,\n\t19978: 0x95EC,\n\t19979: 0x95FF,\n\t19980: 0x9607,\n\t19981: 0x9613,\n\t19982: 0x9618,\n\t19983: 0x961B,\n\t19984: 0x961E,\n\t19985: 0x9620,\n\t19986: 0x9623,\n\t19987: 0x9624,\n\t19988: 0x9625,\n\t19989: 0x9626,\n\t19990: 0x9627,\n\t19991: 0x9628,\n\t19992: 0x9629,\n\t19993: 0x962B,\n\t19994: 0x962C,\n\t19995: 0x962D,\n\t19996: 0x962F,\n\t19997: 0x9630,\n\t19998: 0x9637,\n\t19999: 0x9638,\n\t20000: 0x9639,\n\t20001: 0x963A,\n\t20002: 0x963E,\n\t20003: 0x9641,\n\t20004: 0x9643,\n\t20005: 0x964A,\n\t20006: 0x964E,\n\t20007: 0x964F,\n\t20008: 0x9651,\n\t20009: 0x9652,\n\t20010: 0x9653,\n\t20011: 0x9656,\n\t20012: 0x9657,\n\t20013: 0x9658,\n\t20014: 0x9659,\n\t20015: 0x965A,\n\t20016: 0x965C,\n\t20017: 0x965D,\n\t20018: 0x965E,\n\t20019: 0x9660,\n\t20020: 0x9663,\n\t20021: 0x9665,\n\t20022: 0x9666,\n\t20023: 0x966B,\n\t20024: 0x966D,\n\t20025: 0x966E,\n\t20026: 0x966F,\n\t20027: 0x9670,\n\t20028: 0x9671,\n\t20029: 0x9673,\n\t20030: 0x9678,\n\t20031: 0x9679,\n\t20032: 0x967A,\n\t20033: 0x967B,\n\t20034: 0x967C,\n\t20035: 0x967D,\n\t20036: 0x967E,\n\t20037: 0x967F,\n\t20038: 0x9680,\n\t20039: 0x9681,\n\t20040: 0x9682,\n\t20041: 0x9683,\n\t20042: 0x9684,\n\t20043: 0x9687,\n\t20044: 0x9689,\n\t20045: 0x968A,\n\t20046: 0x8F8D,\n\t20047: 0x8F8E,\n\t20048: 0x8F8F,\n\t20049: 0x8F98,\n\t20050: 0x8F9A,\n\t20051: 0x8ECE,\n\t20052: 0x620B,\n\t20053: 0x6217,\n\t20054: 0x621B,\n\t20055: 0x621F,\n\t20056: 0x6222,\n\t20057: 0x6221,\n\t20058: 0x6225,\n\t20059: 0x6224,\n\t20060: 0x622C,\n\t20061: 0x81E7,\n\t20062: 0x74EF,\n\t20063: 0x74F4,\n\t20064: 0x74FF,\n\t20065: 0x750F,\n\t20066: 0x7511,\n\t20067: 0x7513,\n\t20068: 0x6534,\n\t20069: 0x65EE,\n\t20070: 0x65EF,\n\t20071: 0x65F0,\n\t20072: 0x660A,\n\t20073: 0x6619,\n\t20074: 0x6772,\n\t20075: 0x6603,\n\t20076: 0x6615,\n\t20077: 0x6600,\n\t20078: 0x7085,\n\t20079: 0x66F7,\n\t20080: 0x661D,\n\t20081: 0x6634,\n\t20082: 0x6631,\n\t20083: 0x6636,\n\t20084: 0x6635,\n\t20085: 0x8006,\n\t20086: 0x665F,\n\t20087: 0x6654,\n\t20088: 0x6641,\n\t20089: 0x664F,\n\t20090: 0x6656,\n\t20091: 0x6661,\n\t20092: 0x6657,\n\t20093: 0x6677,\n\t20094: 0x6684,\n\t20095: 0x668C,\n\t20096: 0x66A7,\n\t20097: 0x669D,\n\t20098: 0x66BE,\n\t20099: 0x66DB,\n\t20100: 0x66DC,\n\t20101: 0x66E6,\n\t20102: 0x66E9,\n\t20103: 0x8D32,\n\t20104: 0x8D33,\n\t20105: 0x8D36,\n\t20106: 0x8D3B,\n\t20107: 0x8D3D,\n\t20108: 0x8D40,\n\t20109: 0x8D45,\n\t20110: 0x8D46,\n\t20111: 0x8D48,\n\t20112: 0x8D49,\n\t20113: 0x8D47,\n\t20114: 0x8D4D,\n\t20115: 0x8D55,\n\t20116: 0x8D59,\n\t20117: 0x89C7,\n\t20118: 0x89CA,\n\t20119: 0x89CB,\n\t20120: 0x89CC,\n\t20121: 0x89CE,\n\t20122: 0x89CF,\n\t20123: 0x89D0,\n\t20124: 0x89D1,\n\t20125: 0x726E,\n\t20126: 0x729F,\n\t20127: 0x725D,\n\t20128: 0x7266,\n\t20129: 0x726F,\n\t20130: 0x727E,\n\t20131: 0x727F,\n\t20132: 0x7284,\n\t20133: 0x728B,\n\t20134: 0x728D,\n\t20135: 0x728F,\n\t20136: 0x7292,\n\t20137: 0x6308,\n\t20138: 0x6332,\n\t20139: 0x63B0,\n\t20140: 0x968C,\n\t20141: 0x968E,\n\t20142: 0x9691,\n\t20143: 0x9692,\n\t20144: 0x9693,\n\t20145: 0x9695,\n\t20146: 0x9696,\n\t20147: 0x969A,\n\t20148: 0x969B,\n\t20149: 0x969D,\n\t20150: 0x969E,\n\t20151: 0x969F,\n\t20152: 0x96A0,\n\t20153: 0x96A1,\n\t20154: 0x96A2,\n\t20155: 0x96A3,\n\t20156: 0x96A4,\n\t20157: 0x96A5,\n\t20158: 0x96A6,\n\t20159: 0x96A8,\n\t20160: 0x96A9,\n\t20161: 0x96AA,\n\t20162: 0x96AB,\n\t20163: 0x96AC,\n\t20164: 0x96AD,\n\t20165: 0x96AE,\n\t20166: 0x96AF,\n\t20167: 0x96B1,\n\t20168: 0x96B2,\n\t20169: 0x96B4,\n\t20170: 0x96B5,\n\t20171: 0x96B7,\n\t20172: 0x96B8,\n\t20173: 0x96BA,\n\t20174: 0x96BB,\n\t20175: 0x96BF,\n\t20176: 0x96C2,\n\t20177: 0x96C3,\n\t20178: 0x96C8,\n\t20179: 0x96CA,\n\t20180: 0x96CB,\n\t20181: 0x96D0,\n\t20182: 0x96D1,\n\t20183: 0x96D3,\n\t20184: 0x96D4,\n\t20185: 0x96D6,\n\t20186: 0x96D7,\n\t20187: 0x96D8,\n\t20188: 0x96D9,\n\t20189: 0x96DA,\n\t20190: 0x96DB,\n\t20191: 0x96DC,\n\t20192: 0x96DD,\n\t20193: 0x96DE,\n\t20194: 0x96DF,\n\t20195: 0x96E1,\n\t20196: 0x96E2,\n\t20197: 0x96E3,\n\t20198: 0x96E4,\n\t20199: 0x96E5,\n\t20200: 0x96E6,\n\t20201: 0x96E7,\n\t20202: 0x96EB,\n\t20203: 0x96EC,\n\t20204: 0x96ED,\n\t20205: 0x96EE,\n\t20206: 0x96F0,\n\t20207: 0x96F1,\n\t20208: 0x96F2,\n\t20209: 0x96F4,\n\t20210: 0x96F5,\n\t20211: 0x96F8,\n\t20212: 0x96FA,\n\t20213: 0x96FB,\n\t20214: 0x96FC,\n\t20215: 0x96FD,\n\t20216: 0x96FF,\n\t20217: 0x9702,\n\t20218: 0x9703,\n\t20219: 0x9705,\n\t20220: 0x970A,\n\t20221: 0x970B,\n\t20222: 0x970C,\n\t20223: 0x9710,\n\t20224: 0x9711,\n\t20225: 0x9712,\n\t20226: 0x9714,\n\t20227: 0x9715,\n\t20228: 0x9717,\n\t20229: 0x9718,\n\t20230: 0x9719,\n\t20231: 0x971A,\n\t20232: 0x971B,\n\t20233: 0x971D,\n\t20234: 0x971F,\n\t20235: 0x9720,\n\t20236: 0x643F,\n\t20237: 0x64D8,\n\t20238: 0x8004,\n\t20239: 0x6BEA,\n\t20240: 0x6BF3,\n\t20241: 0x6BFD,\n\t20242: 0x6BF5,\n\t20243: 0x6BF9,\n\t20244: 0x6C05,\n\t20245: 0x6C07,\n\t20246: 0x6C06,\n\t20247: 0x6C0D,\n\t20248: 0x6C15,\n\t20249: 0x6C18,\n\t20250: 0x6C19,\n\t20251: 0x6C1A,\n\t20252: 0x6C21,\n\t20253: 0x6C29,\n\t20254: 0x6C24,\n\t20255: 0x6C2A,\n\t20256: 0x6C32,\n\t20257: 0x6535,\n\t20258: 0x6555,\n\t20259: 0x656B,\n\t20260: 0x724D,\n\t20261: 0x7252,\n\t20262: 0x7256,\n\t20263: 0x7230,\n\t20264: 0x8662,\n\t20265: 0x5216,\n\t20266: 0x809F,\n\t20267: 0x809C,\n\t20268: 0x8093,\n\t20269: 0x80BC,\n\t20270: 0x670A,\n\t20271: 0x80BD,\n\t20272: 0x80B1,\n\t20273: 0x80AB,\n\t20274: 0x80AD,\n\t20275: 0x80B4,\n\t20276: 0x80B7,\n\t20277: 0x80E7,\n\t20278: 0x80E8,\n\t20279: 0x80E9,\n\t20280: 0x80EA,\n\t20281: 0x80DB,\n\t20282: 0x80C2,\n\t20283: 0x80C4,\n\t20284: 0x80D9,\n\t20285: 0x80CD,\n\t20286: 0x80D7,\n\t20287: 0x6710,\n\t20288: 0x80DD,\n\t20289: 0x80EB,\n\t20290: 0x80F1,\n\t20291: 0x80F4,\n\t20292: 0x80ED,\n\t20293: 0x810D,\n\t20294: 0x810E,\n\t20295: 0x80F2,\n\t20296: 0x80FC,\n\t20297: 0x6715,\n\t20298: 0x8112,\n\t20299: 0x8C5A,\n\t20300: 0x8136,\n\t20301: 0x811E,\n\t20302: 0x812C,\n\t20303: 0x8118,\n\t20304: 0x8132,\n\t20305: 0x8148,\n\t20306: 0x814C,\n\t20307: 0x8153,\n\t20308: 0x8174,\n\t20309: 0x8159,\n\t20310: 0x815A,\n\t20311: 0x8171,\n\t20312: 0x8160,\n\t20313: 0x8169,\n\t20314: 0x817C,\n\t20315: 0x817D,\n\t20316: 0x816D,\n\t20317: 0x8167,\n\t20318: 0x584D,\n\t20319: 0x5AB5,\n\t20320: 0x8188,\n\t20321: 0x8182,\n\t20322: 0x8191,\n\t20323: 0x6ED5,\n\t20324: 0x81A3,\n\t20325: 0x81AA,\n\t20326: 0x81CC,\n\t20327: 0x6726,\n\t20328: 0x81CA,\n\t20329: 0x81BB,\n\t20330: 0x9721,\n\t20331: 0x9722,\n\t20332: 0x9723,\n\t20333: 0x9724,\n\t20334: 0x9725,\n\t20335: 0x9726,\n\t20336: 0x9727,\n\t20337: 0x9728,\n\t20338: 0x9729,\n\t20339: 0x972B,\n\t20340: 0x972C,\n\t20341: 0x972E,\n\t20342: 0x972F,\n\t20343: 0x9731,\n\t20344: 0x9733,\n\t20345: 0x9734,\n\t20346: 0x9735,\n\t20347: 0x9736,\n\t20348: 0x9737,\n\t20349: 0x973A,\n\t20350: 0x973B,\n\t20351: 0x973C,\n\t20352: 0x973D,\n\t20353: 0x973F,\n\t20354: 0x9740,\n\t20355: 0x9741,\n\t20356: 0x9742,\n\t20357: 0x9743,\n\t20358: 0x9744,\n\t20359: 0x9745,\n\t20360: 0x9746,\n\t20361: 0x9747,\n\t20362: 0x9748,\n\t20363: 0x9749,\n\t20364: 0x974A,\n\t20365: 0x974B,\n\t20366: 0x974C,\n\t20367: 0x974D,\n\t20368: 0x974E,\n\t20369: 0x974F,\n\t20370: 0x9750,\n\t20371: 0x9751,\n\t20372: 0x9754,\n\t20373: 0x9755,\n\t20374: 0x9757,\n\t20375: 0x9758,\n\t20376: 0x975A,\n\t20377: 0x975C,\n\t20378: 0x975D,\n\t20379: 0x975F,\n\t20380: 0x9763,\n\t20381: 0x9764,\n\t20382: 0x9766,\n\t20383: 0x9767,\n\t20384: 0x9768,\n\t20385: 0x976A,\n\t20386: 0x976B,\n\t20387: 0x976C,\n\t20388: 0x976D,\n\t20389: 0x976E,\n\t20390: 0x976F,\n\t20391: 0x9770,\n\t20392: 0x9771,\n\t20393: 0x9772,\n\t20394: 0x9775,\n\t20395: 0x9777,\n\t20396: 0x9778,\n\t20397: 0x9779,\n\t20398: 0x977A,\n\t20399: 0x977B,\n\t20400: 0x977D,\n\t20401: 0x977E,\n\t20402: 0x977F,\n\t20403: 0x9780,\n\t20404: 0x9781,\n\t20405: 0x9782,\n\t20406: 0x9783,\n\t20407: 0x9784,\n\t20408: 0x9786,\n\t20409: 0x9787,\n\t20410: 0x9788,\n\t20411: 0x9789,\n\t20412: 0x978A,\n\t20413: 0x978C,\n\t20414: 0x978E,\n\t20415: 0x978F,\n\t20416: 0x9790,\n\t20417: 0x9793,\n\t20418: 0x9795,\n\t20419: 0x9796,\n\t20420: 0x9797,\n\t20421: 0x9799,\n\t20422: 0x979A,\n\t20423: 0x979B,\n\t20424: 0x979C,\n\t20425: 0x979D,\n\t20426: 0x81C1,\n\t20427: 0x81A6,\n\t20428: 0x6B24,\n\t20429: 0x6B37,\n\t20430: 0x6B39,\n\t20431: 0x6B43,\n\t20432: 0x6B46,\n\t20433: 0x6B59,\n\t20434: 0x98D1,\n\t20435: 0x98D2,\n\t20436: 0x98D3,\n\t20437: 0x98D5,\n\t20438: 0x98D9,\n\t20439: 0x98DA,\n\t20440: 0x6BB3,\n\t20441: 0x5F40,\n\t20442: 0x6BC2,\n\t20443: 0x89F3,\n\t20444: 0x6590,\n\t20445: 0x9F51,\n\t20446: 0x6593,\n\t20447: 0x65BC,\n\t20448: 0x65C6,\n\t20449: 0x65C4,\n\t20450: 0x65C3,\n\t20451: 0x65CC,\n\t20452: 0x65CE,\n\t20453: 0x65D2,\n\t20454: 0x65D6,\n\t20455: 0x7080,\n\t20456: 0x709C,\n\t20457: 0x7096,\n\t20458: 0x709D,\n\t20459: 0x70BB,\n\t20460: 0x70C0,\n\t20461: 0x70B7,\n\t20462: 0x70AB,\n\t20463: 0x70B1,\n\t20464: 0x70E8,\n\t20465: 0x70CA,\n\t20466: 0x7110,\n\t20467: 0x7113,\n\t20468: 0x7116,\n\t20469: 0x712F,\n\t20470: 0x7131,\n\t20471: 0x7173,\n\t20472: 0x715C,\n\t20473: 0x7168,\n\t20474: 0x7145,\n\t20475: 0x7172,\n\t20476: 0x714A,\n\t20477: 0x7178,\n\t20478: 0x717A,\n\t20479: 0x7198,\n\t20480: 0x71B3,\n\t20481: 0x71B5,\n\t20482: 0x71A8,\n\t20483: 0x71A0,\n\t20484: 0x71E0,\n\t20485: 0x71D4,\n\t20486: 0x71E7,\n\t20487: 0x71F9,\n\t20488: 0x721D,\n\t20489: 0x7228,\n\t20490: 0x706C,\n\t20491: 0x7118,\n\t20492: 0x7166,\n\t20493: 0x71B9,\n\t20494: 0x623E,\n\t20495: 0x623D,\n\t20496: 0x6243,\n\t20497: 0x6248,\n\t20498: 0x6249,\n\t20499: 0x793B,\n\t20500: 0x7940,\n\t20501: 0x7946,\n\t20502: 0x7949,\n\t20503: 0x795B,\n\t20504: 0x795C,\n\t20505: 0x7953,\n\t20506: 0x795A,\n\t20507: 0x7962,\n\t20508: 0x7957,\n\t20509: 0x7960,\n\t20510: 0x796F,\n\t20511: 0x7967,\n\t20512: 0x797A,\n\t20513: 0x7985,\n\t20514: 0x798A,\n\t20515: 0x799A,\n\t20516: 0x79A7,\n\t20517: 0x79B3,\n\t20518: 0x5FD1,\n\t20519: 0x5FD0,\n\t20520: 0x979E,\n\t20521: 0x979F,\n\t20522: 0x97A1,\n\t20523: 0x97A2,\n\t20524: 0x97A4,\n\t20525: 0x97A5,\n\t20526: 0x97A6,\n\t20527: 0x97A7,\n\t20528: 0x97A8,\n\t20529: 0x97A9,\n\t20530: 0x97AA,\n\t20531: 0x97AC,\n\t20532: 0x97AE,\n\t20533: 0x97B0,\n\t20534: 0x97B1,\n\t20535: 0x97B3,\n\t20536: 0x97B5,\n\t20537: 0x97B6,\n\t20538: 0x97B7,\n\t20539: 0x97B8,\n\t20540: 0x97B9,\n\t20541: 0x97BA,\n\t20542: 0x97BB,\n\t20543: 0x97BC,\n\t20544: 0x97BD,\n\t20545: 0x97BE,\n\t20546: 0x97BF,\n\t20547: 0x97C0,\n\t20548: 0x97C1,\n\t20549: 0x97C2,\n\t20550: 0x97C3,\n\t20551: 0x97C4,\n\t20552: 0x97C5,\n\t20553: 0x97C6,\n\t20554: 0x97C7,\n\t20555: 0x97C8,\n\t20556: 0x97C9,\n\t20557: 0x97CA,\n\t20558: 0x97CB,\n\t20559: 0x97CC,\n\t20560: 0x97CD,\n\t20561: 0x97CE,\n\t20562: 0x97CF,\n\t20563: 0x97D0,\n\t20564: 0x97D1,\n\t20565: 0x97D2,\n\t20566: 0x97D3,\n\t20567: 0x97D4,\n\t20568: 0x97D5,\n\t20569: 0x97D6,\n\t20570: 0x97D7,\n\t20571: 0x97D8,\n\t20572: 0x97D9,\n\t20573: 0x97DA,\n\t20574: 0x97DB,\n\t20575: 0x97DC,\n\t20576: 0x97DD,\n\t20577: 0x97DE,\n\t20578: 0x97DF,\n\t20579: 0x97E0,\n\t20580: 0x97E1,\n\t20581: 0x97E2,\n\t20582: 0x97E3,\n\t20583: 0x97E4,\n\t20584: 0x97E5,\n\t20585: 0x97E8,\n\t20586: 0x97EE,\n\t20587: 0x97EF,\n\t20588: 0x97F0,\n\t20589: 0x97F1,\n\t20590: 0x97F2,\n\t20591: 0x97F4,\n\t20592: 0x97F7,\n\t20593: 0x97F8,\n\t20594: 0x97F9,\n\t20595: 0x97FA,\n\t20596: 0x97FB,\n\t20597: 0x97FC,\n\t20598: 0x97FD,\n\t20599: 0x97FE,\n\t20600: 0x97FF,\n\t20601: 0x9800,\n\t20602: 0x9801,\n\t20603: 0x9802,\n\t20604: 0x9803,\n\t20605: 0x9804,\n\t20606: 0x9805,\n\t20607: 0x9806,\n\t20608: 0x9807,\n\t20609: 0x9808,\n\t20610: 0x9809,\n\t20611: 0x980A,\n\t20612: 0x980B,\n\t20613: 0x980C,\n\t20614: 0x980D,\n\t20615: 0x980E,\n\t20616: 0x603C,\n\t20617: 0x605D,\n\t20618: 0x605A,\n\t20619: 0x6067,\n\t20620: 0x6041,\n\t20621: 0x6059,\n\t20622: 0x6063,\n\t20623: 0x60AB,\n\t20624: 0x6106,\n\t20625: 0x610D,\n\t20626: 0x615D,\n\t20627: 0x61A9,\n\t20628: 0x619D,\n\t20629: 0x61CB,\n\t20630: 0x61D1,\n\t20631: 0x6206,\n\t20632: 0x8080,\n\t20633: 0x807F,\n\t20634: 0x6C93,\n\t20635: 0x6CF6,\n\t20636: 0x6DFC,\n\t20637: 0x77F6,\n\t20638: 0x77F8,\n\t20639: 0x7800,\n\t20640: 0x7809,\n\t20641: 0x7817,\n\t20642: 0x7818,\n\t20643: 0x7811,\n\t20644: 0x65AB,\n\t20645: 0x782D,\n\t20646: 0x781C,\n\t20647: 0x781D,\n\t20648: 0x7839,\n\t20649: 0x783A,\n\t20650: 0x783B,\n\t20651: 0x781F,\n\t20652: 0x783C,\n\t20653: 0x7825,\n\t20654: 0x782C,\n\t20655: 0x7823,\n\t20656: 0x7829,\n\t20657: 0x784E,\n\t20658: 0x786D,\n\t20659: 0x7856,\n\t20660: 0x7857,\n\t20661: 0x7826,\n\t20662: 0x7850,\n\t20663: 0x7847,\n\t20664: 0x784C,\n\t20665: 0x786A,\n\t20666: 0x789B,\n\t20667: 0x7893,\n\t20668: 0x789A,\n\t20669: 0x7887,\n\t20670: 0x789C,\n\t20671: 0x78A1,\n\t20672: 0x78A3,\n\t20673: 0x78B2,\n\t20674: 0x78B9,\n\t20675: 0x78A5,\n\t20676: 0x78D4,\n\t20677: 0x78D9,\n\t20678: 0x78C9,\n\t20679: 0x78EC,\n\t20680: 0x78F2,\n\t20681: 0x7905,\n\t20682: 0x78F4,\n\t20683: 0x7913,\n\t20684: 0x7924,\n\t20685: 0x791E,\n\t20686: 0x7934,\n\t20687: 0x9F9B,\n\t20688: 0x9EF9,\n\t20689: 0x9EFB,\n\t20690: 0x9EFC,\n\t20691: 0x76F1,\n\t20692: 0x7704,\n\t20693: 0x770D,\n\t20694: 0x76F9,\n\t20695: 0x7707,\n\t20696: 0x7708,\n\t20697: 0x771A,\n\t20698: 0x7722,\n\t20699: 0x7719,\n\t20700: 0x772D,\n\t20701: 0x7726,\n\t20702: 0x7735,\n\t20703: 0x7738,\n\t20704: 0x7750,\n\t20705: 0x7751,\n\t20706: 0x7747,\n\t20707: 0x7743,\n\t20708: 0x775A,\n\t20709: 0x7768,\n\t20710: 0x980F,\n\t20711: 0x9810,\n\t20712: 0x9811,\n\t20713: 0x9812,\n\t20714: 0x9813,\n\t20715: 0x9814,\n\t20716: 0x9815,\n\t20717: 0x9816,\n\t20718: 0x9817,\n\t20719: 0x9818,\n\t20720: 0x9819,\n\t20721: 0x981A,\n\t20722: 0x981B,\n\t20723: 0x981C,\n\t20724: 0x981D,\n\t20725: 0x981E,\n\t20726: 0x981F,\n\t20727: 0x9820,\n\t20728: 0x9821,\n\t20729: 0x9822,\n\t20730: 0x9823,\n\t20731: 0x9824,\n\t20732: 0x9825,\n\t20733: 0x9826,\n\t20734: 0x9827,\n\t20735: 0x9828,\n\t20736: 0x9829,\n\t20737: 0x982A,\n\t20738: 0x982B,\n\t20739: 0x982C,\n\t20740: 0x982D,\n\t20741: 0x982E,\n\t20742: 0x982F,\n\t20743: 0x9830,\n\t20744: 0x9831,\n\t20745: 0x9832,\n\t20746: 0x9833,\n\t20747: 0x9834,\n\t20748: 0x9835,\n\t20749: 0x9836,\n\t20750: 0x9837,\n\t20751: 0x9838,\n\t20752: 0x9839,\n\t20753: 0x983A,\n\t20754: 0x983B,\n\t20755: 0x983C,\n\t20756: 0x983D,\n\t20757: 0x983E,\n\t20758: 0x983F,\n\t20759: 0x9840,\n\t20760: 0x9841,\n\t20761: 0x9842,\n\t20762: 0x9843,\n\t20763: 0x9844,\n\t20764: 0x9845,\n\t20765: 0x9846,\n\t20766: 0x9847,\n\t20767: 0x9848,\n\t20768: 0x9849,\n\t20769: 0x984A,\n\t20770: 0x984B,\n\t20771: 0x984C,\n\t20772: 0x984D,\n\t20773: 0x984E,\n\t20774: 0x984F,\n\t20775: 0x9850,\n\t20776: 0x9851,\n\t20777: 0x9852,\n\t20778: 0x9853,\n\t20779: 0x9854,\n\t20780: 0x9855,\n\t20781: 0x9856,\n\t20782: 0x9857,\n\t20783: 0x9858,\n\t20784: 0x9859,\n\t20785: 0x985A,\n\t20786: 0x985B,\n\t20787: 0x985C,\n\t20788: 0x985D,\n\t20789: 0x985E,\n\t20790: 0x985F,\n\t20791: 0x9860,\n\t20792: 0x9861,\n\t20793: 0x9862,\n\t20794: 0x9863,\n\t20795: 0x9864,\n\t20796: 0x9865,\n\t20797: 0x9866,\n\t20798: 0x9867,\n\t20799: 0x9868,\n\t20800: 0x9869,\n\t20801: 0x986A,\n\t20802: 0x986B,\n\t20803: 0x986C,\n\t20804: 0x986D,\n\t20805: 0x986E,\n\t20806: 0x7762,\n\t20807: 0x7765,\n\t20808: 0x777F,\n\t20809: 0x778D,\n\t20810: 0x777D,\n\t20811: 0x7780,\n\t20812: 0x778C,\n\t20813: 0x7791,\n\t20814: 0x779F,\n\t20815: 0x77A0,\n\t20816: 0x77B0,\n\t20817: 0x77B5,\n\t20818: 0x77BD,\n\t20819: 0x753A,\n\t20820: 0x7540,\n\t20821: 0x754E,\n\t20822: 0x754B,\n\t20823: 0x7548,\n\t20824: 0x755B,\n\t20825: 0x7572,\n\t20826: 0x7579,\n\t20827: 0x7583,\n\t20828: 0x7F58,\n\t20829: 0x7F61,\n\t20830: 0x7F5F,\n\t20831: 0x8A48,\n\t20832: 0x7F68,\n\t20833: 0x7F74,\n\t20834: 0x7F71,\n\t20835: 0x7F79,\n\t20836: 0x7F81,\n\t20837: 0x7F7E,\n\t20838: 0x76CD,\n\t20839: 0x76E5,\n\t20840: 0x8832,\n\t20841: 0x9485,\n\t20842: 0x9486,\n\t20843: 0x9487,\n\t20844: 0x948B,\n\t20845: 0x948A,\n\t20846: 0x948C,\n\t20847: 0x948D,\n\t20848: 0x948F,\n\t20849: 0x9490,\n\t20850: 0x9494,\n\t20851: 0x9497,\n\t20852: 0x9495,\n\t20853: 0x949A,\n\t20854: 0x949B,\n\t20855: 0x949C,\n\t20856: 0x94A3,\n\t20857: 0x94A4,\n\t20858: 0x94AB,\n\t20859: 0x94AA,\n\t20860: 0x94AD,\n\t20861: 0x94AC,\n\t20862: 0x94AF,\n\t20863: 0x94B0,\n\t20864: 0x94B2,\n\t20865: 0x94B4,\n\t20866: 0x94B6,\n\t20867: 0x94B7,\n\t20868: 0x94B8,\n\t20869: 0x94B9,\n\t20870: 0x94BA,\n\t20871: 0x94BC,\n\t20872: 0x94BD,\n\t20873: 0x94BF,\n\t20874: 0x94C4,\n\t20875: 0x94C8,\n\t20876: 0x94C9,\n\t20877: 0x94CA,\n\t20878: 0x94CB,\n\t20879: 0x94CC,\n\t20880: 0x94CD,\n\t20881: 0x94CE,\n\t20882: 0x94D0,\n\t20883: 0x94D1,\n\t20884: 0x94D2,\n\t20885: 0x94D5,\n\t20886: 0x94D6,\n\t20887: 0x94D7,\n\t20888: 0x94D9,\n\t20889: 0x94D8,\n\t20890: 0x94DB,\n\t20891: 0x94DE,\n\t20892: 0x94DF,\n\t20893: 0x94E0,\n\t20894: 0x94E2,\n\t20895: 0x94E4,\n\t20896: 0x94E5,\n\t20897: 0x94E7,\n\t20898: 0x94E8,\n\t20899: 0x94EA,\n\t20900: 0x986F,\n\t20901: 0x9870,\n\t20902: 0x9871,\n\t20903: 0x9872,\n\t20904: 0x9873,\n\t20905: 0x9874,\n\t20906: 0x988B,\n\t20907: 0x988E,\n\t20908: 0x9892,\n\t20909: 0x9895,\n\t20910: 0x9899,\n\t20911: 0x98A3,\n\t20912: 0x98A8,\n\t20913: 0x98A9,\n\t20914: 0x98AA,\n\t20915: 0x98AB,\n\t20916: 0x98AC,\n\t20917: 0x98AD,\n\t20918: 0x98AE,\n\t20919: 0x98AF,\n\t20920: 0x98B0,\n\t20921: 0x98B1,\n\t20922: 0x98B2,\n\t20923: 0x98B3,\n\t20924: 0x98B4,\n\t20925: 0x98B5,\n\t20926: 0x98B6,\n\t20927: 0x98B7,\n\t20928: 0x98B8,\n\t20929: 0x98B9,\n\t20930: 0x98BA,\n\t20931: 0x98BB,\n\t20932: 0x98BC,\n\t20933: 0x98BD,\n\t20934: 0x98BE,\n\t20935: 0x98BF,\n\t20936: 0x98C0,\n\t20937: 0x98C1,\n\t20938: 0x98C2,\n\t20939: 0x98C3,\n\t20940: 0x98C4,\n\t20941: 0x98C5,\n\t20942: 0x98C6,\n\t20943: 0x98C7,\n\t20944: 0x98C8,\n\t20945: 0x98C9,\n\t20946: 0x98CA,\n\t20947: 0x98CB,\n\t20948: 0x98CC,\n\t20949: 0x98CD,\n\t20950: 0x98CF,\n\t20951: 0x98D0,\n\t20952: 0x98D4,\n\t20953: 0x98D6,\n\t20954: 0x98D7,\n\t20955: 0x98DB,\n\t20956: 0x98DC,\n\t20957: 0x98DD,\n\t20958: 0x98E0,\n\t20959: 0x98E1,\n\t20960: 0x98E2,\n\t20961: 0x98E3,\n\t20962: 0x98E4,\n\t20963: 0x98E5,\n\t20964: 0x98E6,\n\t20965: 0x98E9,\n\t20966: 0x98EA,\n\t20967: 0x98EB,\n\t20968: 0x98EC,\n\t20969: 0x98ED,\n\t20970: 0x98EE,\n\t20971: 0x98EF,\n\t20972: 0x98F0,\n\t20973: 0x98F1,\n\t20974: 0x98F2,\n\t20975: 0x98F3,\n\t20976: 0x98F4,\n\t20977: 0x98F5,\n\t20978: 0x98F6,\n\t20979: 0x98F7,\n\t20980: 0x98F8,\n\t20981: 0x98F9,\n\t20982: 0x98FA,\n\t20983: 0x98FB,\n\t20984: 0x98FC,\n\t20985: 0x98FD,\n\t20986: 0x98FE,\n\t20987: 0x98FF,\n\t20988: 0x9900,\n\t20989: 0x9901,\n\t20990: 0x9902,\n\t20991: 0x9903,\n\t20992: 0x9904,\n\t20993: 0x9905,\n\t20994: 0x9906,\n\t20995: 0x9907,\n\t20996: 0x94E9,\n\t20997: 0x94EB,\n\t20998: 0x94EE,\n\t20999: 0x94EF,\n\t21000: 0x94F3,\n\t21001: 0x94F4,\n\t21002: 0x94F5,\n\t21003: 0x94F7,\n\t21004: 0x94F9,\n\t21005: 0x94FC,\n\t21006: 0x94FD,\n\t21007: 0x94FF,\n\t21008: 0x9503,\n\t21009: 0x9502,\n\t21010: 0x9506,\n\t21011: 0x9507,\n\t21012: 0x9509,\n\t21013: 0x950A,\n\t21014: 0x950D,\n\t21015: 0x950E,\n\t21016: 0x950F,\n\t21017: 0x9512,\n\t21018: 0x9513,\n\t21019: 0x9514,\n\t21020: 0x9515,\n\t21021: 0x9516,\n\t21022: 0x9518,\n\t21023: 0x951B,\n\t21024: 0x951D,\n\t21025: 0x951E,\n\t21026: 0x951F,\n\t21027: 0x9522,\n\t21028: 0x952A,\n\t21029: 0x952B,\n\t21030: 0x9529,\n\t21031: 0x952C,\n\t21032: 0x9531,\n\t21033: 0x9532,\n\t21034: 0x9534,\n\t21035: 0x9536,\n\t21036: 0x9537,\n\t21037: 0x9538,\n\t21038: 0x953C,\n\t21039: 0x953E,\n\t21040: 0x953F,\n\t21041: 0x9542,\n\t21042: 0x9535,\n\t21043: 0x9544,\n\t21044: 0x9545,\n\t21045: 0x9546,\n\t21046: 0x9549,\n\t21047: 0x954C,\n\t21048: 0x954E,\n\t21049: 0x954F,\n\t21050: 0x9552,\n\t21051: 0x9553,\n\t21052: 0x9554,\n\t21053: 0x9556,\n\t21054: 0x9557,\n\t21055: 0x9558,\n\t21056: 0x9559,\n\t21057: 0x955B,\n\t21058: 0x955E,\n\t21059: 0x955F,\n\t21060: 0x955D,\n\t21061: 0x9561,\n\t21062: 0x9562,\n\t21063: 0x9564,\n\t21064: 0x9565,\n\t21065: 0x9566,\n\t21066: 0x9567,\n\t21067: 0x9568,\n\t21068: 0x9569,\n\t21069: 0x956A,\n\t21070: 0x956B,\n\t21071: 0x956C,\n\t21072: 0x956F,\n\t21073: 0x9571,\n\t21074: 0x9572,\n\t21075: 0x9573,\n\t21076: 0x953A,\n\t21077: 0x77E7,\n\t21078: 0x77EC,\n\t21079: 0x96C9,\n\t21080: 0x79D5,\n\t21081: 0x79ED,\n\t21082: 0x79E3,\n\t21083: 0x79EB,\n\t21084: 0x7A06,\n\t21085: 0x5D47,\n\t21086: 0x7A03,\n\t21087: 0x7A02,\n\t21088: 0x7A1E,\n\t21089: 0x7A14,\n\t21090: 0x9908,\n\t21091: 0x9909,\n\t21092: 0x990A,\n\t21093: 0x990B,\n\t21094: 0x990C,\n\t21095: 0x990E,\n\t21096: 0x990F,\n\t21097: 0x9911,\n\t21098: 0x9912,\n\t21099: 0x9913,\n\t21100: 0x9914,\n\t21101: 0x9915,\n\t21102: 0x9916,\n\t21103: 0x9917,\n\t21104: 0x9918,\n\t21105: 0x9919,\n\t21106: 0x991A,\n\t21107: 0x991B,\n\t21108: 0x991C,\n\t21109: 0x991D,\n\t21110: 0x991E,\n\t21111: 0x991F,\n\t21112: 0x9920,\n\t21113: 0x9921,\n\t21114: 0x9922,\n\t21115: 0x9923,\n\t21116: 0x9924,\n\t21117: 0x9925,\n\t21118: 0x9926,\n\t21119: 0x9927,\n\t21120: 0x9928,\n\t21121: 0x9929,\n\t21122: 0x992A,\n\t21123: 0x992B,\n\t21124: 0x992C,\n\t21125: 0x992D,\n\t21126: 0x992F,\n\t21127: 0x9930,\n\t21128: 0x9931,\n\t21129: 0x9932,\n\t21130: 0x9933,\n\t21131: 0x9934,\n\t21132: 0x9935,\n\t21133: 0x9936,\n\t21134: 0x9937,\n\t21135: 0x9938,\n\t21136: 0x9939,\n\t21137: 0x993A,\n\t21138: 0x993B,\n\t21139: 0x993C,\n\t21140: 0x993D,\n\t21141: 0x993E,\n\t21142: 0x993F,\n\t21143: 0x9940,\n\t21144: 0x9941,\n\t21145: 0x9942,\n\t21146: 0x9943,\n\t21147: 0x9944,\n\t21148: 0x9945,\n\t21149: 0x9946,\n\t21150: 0x9947,\n\t21151: 0x9948,\n\t21152: 0x9949,\n\t21153: 0x994A,\n\t21154: 0x994B,\n\t21155: 0x994C,\n\t21156: 0x994D,\n\t21157: 0x994E,\n\t21158: 0x994F,\n\t21159: 0x9950,\n\t21160: 0x9951,\n\t21161: 0x9952,\n\t21162: 0x9953,\n\t21163: 0x9956,\n\t21164: 0x9957,\n\t21165: 0x9958,\n\t21166: 0x9959,\n\t21167: 0x995A,\n\t21168: 0x995B,\n\t21169: 0x995C,\n\t21170: 0x995D,\n\t21171: 0x995E,\n\t21172: 0x995F,\n\t21173: 0x9960,\n\t21174: 0x9961,\n\t21175: 0x9962,\n\t21176: 0x9964,\n\t21177: 0x9966,\n\t21178: 0x9973,\n\t21179: 0x9978,\n\t21180: 0x9979,\n\t21181: 0x997B,\n\t21182: 0x997E,\n\t21183: 0x9982,\n\t21184: 0x9983,\n\t21185: 0x9989,\n\t21186: 0x7A39,\n\t21187: 0x7A37,\n\t21188: 0x7A51,\n\t21189: 0x9ECF,\n\t21190: 0x99A5,\n\t21191: 0x7A70,\n\t21192: 0x7688,\n\t21193: 0x768E,\n\t21194: 0x7693,\n\t21195: 0x7699,\n\t21196: 0x76A4,\n\t21197: 0x74DE,\n\t21198: 0x74E0,\n\t21199: 0x752C,\n\t21200: 0x9E20,\n\t21201: 0x9E22,\n\t21202: 0x9E28,\n\t21203: 0x9E29,\n\t21204: 0x9E2A,\n\t21205: 0x9E2B,\n\t21206: 0x9E2C,\n\t21207: 0x9E32,\n\t21208: 0x9E31,\n\t21209: 0x9E36,\n\t21210: 0x9E38,\n\t21211: 0x9E37,\n\t21212: 0x9E39,\n\t21213: 0x9E3A,\n\t21214: 0x9E3E,\n\t21215: 0x9E41,\n\t21216: 0x9E42,\n\t21217: 0x9E44,\n\t21218: 0x9E46,\n\t21219: 0x9E47,\n\t21220: 0x9E48,\n\t21221: 0x9E49,\n\t21222: 0x9E4B,\n\t21223: 0x9E4C,\n\t21224: 0x9E4E,\n\t21225: 0x9E51,\n\t21226: 0x9E55,\n\t21227: 0x9E57,\n\t21228: 0x9E5A,\n\t21229: 0x9E5B,\n\t21230: 0x9E5C,\n\t21231: 0x9E5E,\n\t21232: 0x9E63,\n\t21233: 0x9E66,\n\t21234: 0x9E67,\n\t21235: 0x9E68,\n\t21236: 0x9E69,\n\t21237: 0x9E6A,\n\t21238: 0x9E6B,\n\t21239: 0x9E6C,\n\t21240: 0x9E71,\n\t21241: 0x9E6D,\n\t21242: 0x9E73,\n\t21243: 0x7592,\n\t21244: 0x7594,\n\t21245: 0x7596,\n\t21246: 0x75A0,\n\t21247: 0x759D,\n\t21248: 0x75AC,\n\t21249: 0x75A3,\n\t21250: 0x75B3,\n\t21251: 0x75B4,\n\t21252: 0x75B8,\n\t21253: 0x75C4,\n\t21254: 0x75B1,\n\t21255: 0x75B0,\n\t21256: 0x75C3,\n\t21257: 0x75C2,\n\t21258: 0x75D6,\n\t21259: 0x75CD,\n\t21260: 0x75E3,\n\t21261: 0x75E8,\n\t21262: 0x75E6,\n\t21263: 0x75E4,\n\t21264: 0x75EB,\n\t21265: 0x75E7,\n\t21266: 0x7603,\n\t21267: 0x75F1,\n\t21268: 0x75FC,\n\t21269: 0x75FF,\n\t21270: 0x7610,\n\t21271: 0x7600,\n\t21272: 0x7605,\n\t21273: 0x760C,\n\t21274: 0x7617,\n\t21275: 0x760A,\n\t21276: 0x7625,\n\t21277: 0x7618,\n\t21278: 0x7615,\n\t21279: 0x7619,\n\t21280: 0x998C,\n\t21281: 0x998E,\n\t21282: 0x999A,\n\t21283: 0x999B,\n\t21284: 0x999C,\n\t21285: 0x999D,\n\t21286: 0x999E,\n\t21287: 0x999F,\n\t21288: 0x99A0,\n\t21289: 0x99A1,\n\t21290: 0x99A2,\n\t21291: 0x99A3,\n\t21292: 0x99A4,\n\t21293: 0x99A6,\n\t21294: 0x99A7,\n\t21295: 0x99A9,\n\t21296: 0x99AA,\n\t21297: 0x99AB,\n\t21298: 0x99AC,\n\t21299: 0x99AD,\n\t21300: 0x99AE,\n\t21301: 0x99AF,\n\t21302: 0x99B0,\n\t21303: 0x99B1,\n\t21304: 0x99B2,\n\t21305: 0x99B3,\n\t21306: 0x99B4,\n\t21307: 0x99B5,\n\t21308: 0x99B6,\n\t21309: 0x99B7,\n\t21310: 0x99B8,\n\t21311: 0x99B9,\n\t21312: 0x99BA,\n\t21313: 0x99BB,\n\t21314: 0x99BC,\n\t21315: 0x99BD,\n\t21316: 0x99BE,\n\t21317: 0x99BF,\n\t21318: 0x99C0,\n\t21319: 0x99C1,\n\t21320: 0x99C2,\n\t21321: 0x99C3,\n\t21322: 0x99C4,\n\t21323: 0x99C5,\n\t21324: 0x99C6,\n\t21325: 0x99C7,\n\t21326: 0x99C8,\n\t21327: 0x99C9,\n\t21328: 0x99CA,\n\t21329: 0x99CB,\n\t21330: 0x99CC,\n\t21331: 0x99CD,\n\t21332: 0x99CE,\n\t21333: 0x99CF,\n\t21334: 0x99D0,\n\t21335: 0x99D1,\n\t21336: 0x99D2,\n\t21337: 0x99D3,\n\t21338: 0x99D4,\n\t21339: 0x99D5,\n\t21340: 0x99D6,\n\t21341: 0x99D7,\n\t21342: 0x99D8,\n\t21343: 0x99D9,\n\t21344: 0x99DA,\n\t21345: 0x99DB,\n\t21346: 0x99DC,\n\t21347: 0x99DD,\n\t21348: 0x99DE,\n\t21349: 0x99DF,\n\t21350: 0x99E0,\n\t21351: 0x99E1,\n\t21352: 0x99E2,\n\t21353: 0x99E3,\n\t21354: 0x99E4,\n\t21355: 0x99E5,\n\t21356: 0x99E6,\n\t21357: 0x99E7,\n\t21358: 0x99E8,\n\t21359: 0x99E9,\n\t21360: 0x99EA,\n\t21361: 0x99EB,\n\t21362: 0x99EC,\n\t21363: 0x99ED,\n\t21364: 0x99EE,\n\t21365: 0x99EF,\n\t21366: 0x99F0,\n\t21367: 0x99F1,\n\t21368: 0x99F2,\n\t21369: 0x99F3,\n\t21370: 0x99F4,\n\t21371: 0x99F5,\n\t21372: 0x99F6,\n\t21373: 0x99F7,\n\t21374: 0x99F8,\n\t21375: 0x99F9,\n\t21376: 0x761B,\n\t21377: 0x763C,\n\t21378: 0x7622,\n\t21379: 0x7620,\n\t21380: 0x7640,\n\t21381: 0x762D,\n\t21382: 0x7630,\n\t21383: 0x763F,\n\t21384: 0x7635,\n\t21385: 0x7643,\n\t21386: 0x763E,\n\t21387: 0x7633,\n\t21388: 0x764D,\n\t21389: 0x765E,\n\t21390: 0x7654,\n\t21391: 0x765C,\n\t21392: 0x7656,\n\t21393: 0x766B,\n\t21394: 0x766F,\n\t21395: 0x7FCA,\n\t21396: 0x7AE6,\n\t21397: 0x7A78,\n\t21398: 0x7A79,\n\t21399: 0x7A80,\n\t21400: 0x7A86,\n\t21401: 0x7A88,\n\t21402: 0x7A95,\n\t21403: 0x7AA6,\n\t21404: 0x7AA0,\n\t21405: 0x7AAC,\n\t21406: 0x7AA8,\n\t21407: 0x7AAD,\n\t21408: 0x7AB3,\n\t21409: 0x8864,\n\t21410: 0x8869,\n\t21411: 0x8872,\n\t21412: 0x887D,\n\t21413: 0x887F,\n\t21414: 0x8882,\n\t21415: 0x88A2,\n\t21416: 0x88C6,\n\t21417: 0x88B7,\n\t21418: 0x88BC,\n\t21419: 0x88C9,\n\t21420: 0x88E2,\n\t21421: 0x88CE,\n\t21422: 0x88E3,\n\t21423: 0x88E5,\n\t21424: 0x88F1,\n\t21425: 0x891A,\n\t21426: 0x88FC,\n\t21427: 0x88E8,\n\t21428: 0x88FE,\n\t21429: 0x88F0,\n\t21430: 0x8921,\n\t21431: 0x8919,\n\t21432: 0x8913,\n\t21433: 0x891B,\n\t21434: 0x890A,\n\t21435: 0x8934,\n\t21436: 0x892B,\n\t21437: 0x8936,\n\t21438: 0x8941,\n\t21439: 0x8966,\n\t21440: 0x897B,\n\t21441: 0x758B,\n\t21442: 0x80E5,\n\t21443: 0x76B2,\n\t21444: 0x76B4,\n\t21445: 0x77DC,\n\t21446: 0x8012,\n\t21447: 0x8014,\n\t21448: 0x8016,\n\t21449: 0x801C,\n\t21450: 0x8020,\n\t21451: 0x8022,\n\t21452: 0x8025,\n\t21453: 0x8026,\n\t21454: 0x8027,\n\t21455: 0x8029,\n\t21456: 0x8028,\n\t21457: 0x8031,\n\t21458: 0x800B,\n\t21459: 0x8035,\n\t21460: 0x8043,\n\t21461: 0x8046,\n\t21462: 0x804D,\n\t21463: 0x8052,\n\t21464: 0x8069,\n\t21465: 0x8071,\n\t21466: 0x8983,\n\t21467: 0x9878,\n\t21468: 0x9880,\n\t21469: 0x9883,\n\t21470: 0x99FA,\n\t21471: 0x99FB,\n\t21472: 0x99FC,\n\t21473: 0x99FD,\n\t21474: 0x99FE,\n\t21475: 0x99FF,\n\t21476: 0x9A00,\n\t21477: 0x9A01,\n\t21478: 0x9A02,\n\t21479: 0x9A03,\n\t21480: 0x9A04,\n\t21481: 0x9A05,\n\t21482: 0x9A06,\n\t21483: 0x9A07,\n\t21484: 0x9A08,\n\t21485: 0x9A09,\n\t21486: 0x9A0A,\n\t21487: 0x9A0B,\n\t21488: 0x9A0C,\n\t21489: 0x9A0D,\n\t21490: 0x9A0E,\n\t21491: 0x9A0F,\n\t21492: 0x9A10,\n\t21493: 0x9A11,\n\t21494: 0x9A12,\n\t21495: 0x9A13,\n\t21496: 0x9A14,\n\t21497: 0x9A15,\n\t21498: 0x9A16,\n\t21499: 0x9A17,\n\t21500: 0x9A18,\n\t21501: 0x9A19,\n\t21502: 0x9A1A,\n\t21503: 0x9A1B,\n\t21504: 0x9A1C,\n\t21505: 0x9A1D,\n\t21506: 0x9A1E,\n\t21507: 0x9A1F,\n\t21508: 0x9A20,\n\t21509: 0x9A21,\n\t21510: 0x9A22,\n\t21511: 0x9A23,\n\t21512: 0x9A24,\n\t21513: 0x9A25,\n\t21514: 0x9A26,\n\t21515: 0x9A27,\n\t21516: 0x9A28,\n\t21517: 0x9A29,\n\t21518: 0x9A2A,\n\t21519: 0x9A2B,\n\t21520: 0x9A2C,\n\t21521: 0x9A2D,\n\t21522: 0x9A2E,\n\t21523: 0x9A2F,\n\t21524: 0x9A30,\n\t21525: 0x9A31,\n\t21526: 0x9A32,\n\t21527: 0x9A33,\n\t21528: 0x9A34,\n\t21529: 0x9A35,\n\t21530: 0x9A36,\n\t21531: 0x9A37,\n\t21532: 0x9A38,\n\t21533: 0x9A39,\n\t21534: 0x9A3A,\n\t21535: 0x9A3B,\n\t21536: 0x9A3C,\n\t21537: 0x9A3D,\n\t21538: 0x9A3E,\n\t21539: 0x9A3F,\n\t21540: 0x9A40,\n\t21541: 0x9A41,\n\t21542: 0x9A42,\n\t21543: 0x9A43,\n\t21544: 0x9A44,\n\t21545: 0x9A45,\n\t21546: 0x9A46,\n\t21547: 0x9A47,\n\t21548: 0x9A48,\n\t21549: 0x9A49,\n\t21550: 0x9A4A,\n\t21551: 0x9A4B,\n\t21552: 0x9A4C,\n\t21553: 0x9A4D,\n\t21554: 0x9A4E,\n\t21555: 0x9A4F,\n\t21556: 0x9A50,\n\t21557: 0x9A51,\n\t21558: 0x9A52,\n\t21559: 0x9A53,\n\t21560: 0x9A54,\n\t21561: 0x9A55,\n\t21562: 0x9A56,\n\t21563: 0x9A57,\n\t21564: 0x9A58,\n\t21565: 0x9A59,\n\t21566: 0x9889,\n\t21567: 0x988C,\n\t21568: 0x988D,\n\t21569: 0x988F,\n\t21570: 0x9894,\n\t21571: 0x989A,\n\t21572: 0x989B,\n\t21573: 0x989E,\n\t21574: 0x989F,\n\t21575: 0x98A1,\n\t21576: 0x98A2,\n\t21577: 0x98A5,\n\t21578: 0x98A6,\n\t21579: 0x864D,\n\t21580: 0x8654,\n\t21581: 0x866C,\n\t21582: 0x866E,\n\t21583: 0x867F,\n\t21584: 0x867A,\n\t21585: 0x867C,\n\t21586: 0x867B,\n\t21587: 0x86A8,\n\t21588: 0x868D,\n\t21589: 0x868B,\n\t21590: 0x86AC,\n\t21591: 0x869D,\n\t21592: 0x86A7,\n\t21593: 0x86A3,\n\t21594: 0x86AA,\n\t21595: 0x8693,\n\t21596: 0x86A9,\n\t21597: 0x86B6,\n\t21598: 0x86C4,\n\t21599: 0x86B5,\n\t21600: 0x86CE,\n\t21601: 0x86B0,\n\t21602: 0x86BA,\n\t21603: 0x86B1,\n\t21604: 0x86AF,\n\t21605: 0x86C9,\n\t21606: 0x86CF,\n\t21607: 0x86B4,\n\t21608: 0x86E9,\n\t21609: 0x86F1,\n\t21610: 0x86F2,\n\t21611: 0x86ED,\n\t21612: 0x86F3,\n\t21613: 0x86D0,\n\t21614: 0x8713,\n\t21615: 0x86DE,\n\t21616: 0x86F4,\n\t21617: 0x86DF,\n\t21618: 0x86D8,\n\t21619: 0x86D1,\n\t21620: 0x8703,\n\t21621: 0x8707,\n\t21622: 0x86F8,\n\t21623: 0x8708,\n\t21624: 0x870A,\n\t21625: 0x870D,\n\t21626: 0x8709,\n\t21627: 0x8723,\n\t21628: 0x873B,\n\t21629: 0x871E,\n\t21630: 0x8725,\n\t21631: 0x872E,\n\t21632: 0x871A,\n\t21633: 0x873E,\n\t21634: 0x8748,\n\t21635: 0x8734,\n\t21636: 0x8731,\n\t21637: 0x8729,\n\t21638: 0x8737,\n\t21639: 0x873F,\n\t21640: 0x8782,\n\t21641: 0x8722,\n\t21642: 0x877D,\n\t21643: 0x877E,\n\t21644: 0x877B,\n\t21645: 0x8760,\n\t21646: 0x8770,\n\t21647: 0x874C,\n\t21648: 0x876E,\n\t21649: 0x878B,\n\t21650: 0x8753,\n\t21651: 0x8763,\n\t21652: 0x877C,\n\t21653: 0x8764,\n\t21654: 0x8759,\n\t21655: 0x8765,\n\t21656: 0x8793,\n\t21657: 0x87AF,\n\t21658: 0x87A8,\n\t21659: 0x87D2,\n\t21660: 0x9A5A,\n\t21661: 0x9A5B,\n\t21662: 0x9A5C,\n\t21663: 0x9A5D,\n\t21664: 0x9A5E,\n\t21665: 0x9A5F,\n\t21666: 0x9A60,\n\t21667: 0x9A61,\n\t21668: 0x9A62,\n\t21669: 0x9A63,\n\t21670: 0x9A64,\n\t21671: 0x9A65,\n\t21672: 0x9A66,\n\t21673: 0x9A67,\n\t21674: 0x9A68,\n\t21675: 0x9A69,\n\t21676: 0x9A6A,\n\t21677: 0x9A6B,\n\t21678: 0x9A72,\n\t21679: 0x9A83,\n\t21680: 0x9A89,\n\t21681: 0x9A8D,\n\t21682: 0x9A8E,\n\t21683: 0x9A94,\n\t21684: 0x9A95,\n\t21685: 0x9A99,\n\t21686: 0x9AA6,\n\t21687: 0x9AA9,\n\t21688: 0x9AAA,\n\t21689: 0x9AAB,\n\t21690: 0x9AAC,\n\t21691: 0x9AAD,\n\t21692: 0x9AAE,\n\t21693: 0x9AAF,\n\t21694: 0x9AB2,\n\t21695: 0x9AB3,\n\t21696: 0x9AB4,\n\t21697: 0x9AB5,\n\t21698: 0x9AB9,\n\t21699: 0x9ABB,\n\t21700: 0x9ABD,\n\t21701: 0x9ABE,\n\t21702: 0x9ABF,\n\t21703: 0x9AC3,\n\t21704: 0x9AC4,\n\t21705: 0x9AC6,\n\t21706: 0x9AC7,\n\t21707: 0x9AC8,\n\t21708: 0x9AC9,\n\t21709: 0x9ACA,\n\t21710: 0x9ACD,\n\t21711: 0x9ACE,\n\t21712: 0x9ACF,\n\t21713: 0x9AD0,\n\t21714: 0x9AD2,\n\t21715: 0x9AD4,\n\t21716: 0x9AD5,\n\t21717: 0x9AD6,\n\t21718: 0x9AD7,\n\t21719: 0x9AD9,\n\t21720: 0x9ADA,\n\t21721: 0x9ADB,\n\t21722: 0x9ADC,\n\t21723: 0x9ADD,\n\t21724: 0x9ADE,\n\t21725: 0x9AE0,\n\t21726: 0x9AE2,\n\t21727: 0x9AE3,\n\t21728: 0x9AE4,\n\t21729: 0x9AE5,\n\t21730: 0x9AE7,\n\t21731: 0x9AE8,\n\t21732: 0x9AE9,\n\t21733: 0x9AEA,\n\t21734: 0x9AEC,\n\t21735: 0x9AEE,\n\t21736: 0x9AF0,\n\t21737: 0x9AF1,\n\t21738: 0x9AF2,\n\t21739: 0x9AF3,\n\t21740: 0x9AF4,\n\t21741: 0x9AF5,\n\t21742: 0x9AF6,\n\t21743: 0x9AF7,\n\t21744: 0x9AF8,\n\t21745: 0x9AFA,\n\t21746: 0x9AFC,\n\t21747: 0x9AFD,\n\t21748: 0x9AFE,\n\t21749: 0x9AFF,\n\t21750: 0x9B00,\n\t21751: 0x9B01,\n\t21752: 0x9B02,\n\t21753: 0x9B04,\n\t21754: 0x9B05,\n\t21755: 0x9B06,\n\t21756: 0x87C6,\n\t21757: 0x8788,\n\t21758: 0x8785,\n\t21759: 0x87AD,\n\t21760: 0x8797,\n\t21761: 0x8783,\n\t21762: 0x87AB,\n\t21763: 0x87E5,\n\t21764: 0x87AC,\n\t21765: 0x87B5,\n\t21766: 0x87B3,\n\t21767: 0x87CB,\n\t21768: 0x87D3,\n\t21769: 0x87BD,\n\t21770: 0x87D1,\n\t21771: 0x87C0,\n\t21772: 0x87CA,\n\t21773: 0x87DB,\n\t21774: 0x87EA,\n\t21775: 0x87E0,\n\t21776: 0x87EE,\n\t21777: 0x8816,\n\t21778: 0x8813,\n\t21779: 0x87FE,\n\t21780: 0x880A,\n\t21781: 0x881B,\n\t21782: 0x8821,\n\t21783: 0x8839,\n\t21784: 0x883C,\n\t21785: 0x7F36,\n\t21786: 0x7F42,\n\t21787: 0x7F44,\n\t21788: 0x7F45,\n\t21789: 0x8210,\n\t21790: 0x7AFA,\n\t21791: 0x7AFD,\n\t21792: 0x7B08,\n\t21793: 0x7B03,\n\t21794: 0x7B04,\n\t21795: 0x7B15,\n\t21796: 0x7B0A,\n\t21797: 0x7B2B,\n\t21798: 0x7B0F,\n\t21799: 0x7B47,\n\t21800: 0x7B38,\n\t21801: 0x7B2A,\n\t21802: 0x7B19,\n\t21803: 0x7B2E,\n\t21804: 0x7B31,\n\t21805: 0x7B20,\n\t21806: 0x7B25,\n\t21807: 0x7B24,\n\t21808: 0x7B33,\n\t21809: 0x7B3E,\n\t21810: 0x7B1E,\n\t21811: 0x7B58,\n\t21812: 0x7B5A,\n\t21813: 0x7B45,\n\t21814: 0x7B75,\n\t21815: 0x7B4C,\n\t21816: 0x7B5D,\n\t21817: 0x7B60,\n\t21818: 0x7B6E,\n\t21819: 0x7B7B,\n\t21820: 0x7B62,\n\t21821: 0x7B72,\n\t21822: 0x7B71,\n\t21823: 0x7B90,\n\t21824: 0x7BA6,\n\t21825: 0x7BA7,\n\t21826: 0x7BB8,\n\t21827: 0x7BAC,\n\t21828: 0x7B9D,\n\t21829: 0x7BA8,\n\t21830: 0x7B85,\n\t21831: 0x7BAA,\n\t21832: 0x7B9C,\n\t21833: 0x7BA2,\n\t21834: 0x7BAB,\n\t21835: 0x7BB4,\n\t21836: 0x7BD1,\n\t21837: 0x7BC1,\n\t21838: 0x7BCC,\n\t21839: 0x7BDD,\n\t21840: 0x7BDA,\n\t21841: 0x7BE5,\n\t21842: 0x7BE6,\n\t21843: 0x7BEA,\n\t21844: 0x7C0C,\n\t21845: 0x7BFE,\n\t21846: 0x7BFC,\n\t21847: 0x7C0F,\n\t21848: 0x7C16,\n\t21849: 0x7C0B,\n\t21850: 0x9B07,\n\t21851: 0x9B09,\n\t21852: 0x9B0A,\n\t21853: 0x9B0B,\n\t21854: 0x9B0C,\n\t21855: 0x9B0D,\n\t21856: 0x9B0E,\n\t21857: 0x9B10,\n\t21858: 0x9B11,\n\t21859: 0x9B12,\n\t21860: 0x9B14,\n\t21861: 0x9B15,\n\t21862: 0x9B16,\n\t21863: 0x9B17,\n\t21864: 0x9B18,\n\t21865: 0x9B19,\n\t21866: 0x9B1A,\n\t21867: 0x9B1B,\n\t21868: 0x9B1C,\n\t21869: 0x9B1D,\n\t21870: 0x9B1E,\n\t21871: 0x9B20,\n\t21872: 0x9B21,\n\t21873: 0x9B22,\n\t21874: 0x9B24,\n\t21875: 0x9B25,\n\t21876: 0x9B26,\n\t21877: 0x9B27,\n\t21878: 0x9B28,\n\t21879: 0x9B29,\n\t21880: 0x9B2A,\n\t21881: 0x9B2B,\n\t21882: 0x9B2C,\n\t21883: 0x9B2D,\n\t21884: 0x9B2E,\n\t21885: 0x9B30,\n\t21886: 0x9B31,\n\t21887: 0x9B33,\n\t21888: 0x9B34,\n\t21889: 0x9B35,\n\t21890: 0x9B36,\n\t21891: 0x9B37,\n\t21892: 0x9B38,\n\t21893: 0x9B39,\n\t21894: 0x9B3A,\n\t21895: 0x9B3D,\n\t21896: 0x9B3E,\n\t21897: 0x9B3F,\n\t21898: 0x9B40,\n\t21899: 0x9B46,\n\t21900: 0x9B4A,\n\t21901: 0x9B4B,\n\t21902: 0x9B4C,\n\t21903: 0x9B4E,\n\t21904: 0x9B50,\n\t21905: 0x9B52,\n\t21906: 0x9B53,\n\t21907: 0x9B55,\n\t21908: 0x9B56,\n\t21909: 0x9B57,\n\t21910: 0x9B58,\n\t21911: 0x9B59,\n\t21912: 0x9B5A,\n\t21913: 0x9B5B,\n\t21914: 0x9B5C,\n\t21915: 0x9B5D,\n\t21916: 0x9B5E,\n\t21917: 0x9B5F,\n\t21918: 0x9B60,\n\t21919: 0x9B61,\n\t21920: 0x9B62,\n\t21921: 0x9B63,\n\t21922: 0x9B64,\n\t21923: 0x9B65,\n\t21924: 0x9B66,\n\t21925: 0x9B67,\n\t21926: 0x9B68,\n\t21927: 0x9B69,\n\t21928: 0x9B6A,\n\t21929: 0x9B6B,\n\t21930: 0x9B6C,\n\t21931: 0x9B6D,\n\t21932: 0x9B6E,\n\t21933: 0x9B6F,\n\t21934: 0x9B70,\n\t21935: 0x9B71,\n\t21936: 0x9B72,\n\t21937: 0x9B73,\n\t21938: 0x9B74,\n\t21939: 0x9B75,\n\t21940: 0x9B76,\n\t21941: 0x9B77,\n\t21942: 0x9B78,\n\t21943: 0x9B79,\n\t21944: 0x9B7A,\n\t21945: 0x9B7B,\n\t21946: 0x7C1F,\n\t21947: 0x7C2A,\n\t21948: 0x7C26,\n\t21949: 0x7C38,\n\t21950: 0x7C41,\n\t21951: 0x7C40,\n\t21952: 0x81FE,\n\t21953: 0x8201,\n\t21954: 0x8202,\n\t21955: 0x8204,\n\t21956: 0x81EC,\n\t21957: 0x8844,\n\t21958: 0x8221,\n\t21959: 0x8222,\n\t21960: 0x8223,\n\t21961: 0x822D,\n\t21962: 0x822F,\n\t21963: 0x8228,\n\t21964: 0x822B,\n\t21965: 0x8238,\n\t21966: 0x823B,\n\t21967: 0x8233,\n\t21968: 0x8234,\n\t21969: 0x823E,\n\t21970: 0x8244,\n\t21971: 0x8249,\n\t21972: 0x824B,\n\t21973: 0x824F,\n\t21974: 0x825A,\n\t21975: 0x825F,\n\t21976: 0x8268,\n\t21977: 0x887E,\n\t21978: 0x8885,\n\t21979: 0x8888,\n\t21980: 0x88D8,\n\t21981: 0x88DF,\n\t21982: 0x895E,\n\t21983: 0x7F9D,\n\t21984: 0x7F9F,\n\t21985: 0x7FA7,\n\t21986: 0x7FAF,\n\t21987: 0x7FB0,\n\t21988: 0x7FB2,\n\t21989: 0x7C7C,\n\t21990: 0x6549,\n\t21991: 0x7C91,\n\t21992: 0x7C9D,\n\t21993: 0x7C9C,\n\t21994: 0x7C9E,\n\t21995: 0x7CA2,\n\t21996: 0x7CB2,\n\t21997: 0x7CBC,\n\t21998: 0x7CBD,\n\t21999: 0x7CC1,\n\t22000: 0x7CC7,\n\t22001: 0x7CCC,\n\t22002: 0x7CCD,\n\t22003: 0x7CC8,\n\t22004: 0x7CC5,\n\t22005: 0x7CD7,\n\t22006: 0x7CE8,\n\t22007: 0x826E,\n\t22008: 0x66A8,\n\t22009: 0x7FBF,\n\t22010: 0x7FCE,\n\t22011: 0x7FD5,\n\t22012: 0x7FE5,\n\t22013: 0x7FE1,\n\t22014: 0x7FE6,\n\t22015: 0x7FE9,\n\t22016: 0x7FEE,\n\t22017: 0x7FF3,\n\t22018: 0x7CF8,\n\t22019: 0x7D77,\n\t22020: 0x7DA6,\n\t22021: 0x7DAE,\n\t22022: 0x7E47,\n\t22023: 0x7E9B,\n\t22024: 0x9EB8,\n\t22025: 0x9EB4,\n\t22026: 0x8D73,\n\t22027: 0x8D84,\n\t22028: 0x8D94,\n\t22029: 0x8D91,\n\t22030: 0x8DB1,\n\t22031: 0x8D67,\n\t22032: 0x8D6D,\n\t22033: 0x8C47,\n\t22034: 0x8C49,\n\t22035: 0x914A,\n\t22036: 0x9150,\n\t22037: 0x914E,\n\t22038: 0x914F,\n\t22039: 0x9164,\n\t22040: 0x9B7C,\n\t22041: 0x9B7D,\n\t22042: 0x9B7E,\n\t22043: 0x9B7F,\n\t22044: 0x9B80,\n\t22045: 0x9B81,\n\t22046: 0x9B82,\n\t22047: 0x9B83,\n\t22048: 0x9B84,\n\t22049: 0x9B85,\n\t22050: 0x9B86,\n\t22051: 0x9B87,\n\t22052: 0x9B88,\n\t22053: 0x9B89,\n\t22054: 0x9B8A,\n\t22055: 0x9B8B,\n\t22056: 0x9B8C,\n\t22057: 0x9B8D,\n\t22058: 0x9B8E,\n\t22059: 0x9B8F,\n\t22060: 0x9B90,\n\t22061: 0x9B91,\n\t22062: 0x9B92,\n\t22063: 0x9B93,\n\t22064: 0x9B94,\n\t22065: 0x9B95,\n\t22066: 0x9B96,\n\t22067: 0x9B97,\n\t22068: 0x9B98,\n\t22069: 0x9B99,\n\t22070: 0x9B9A,\n\t22071: 0x9B9B,\n\t22072: 0x9B9C,\n\t22073: 0x9B9D,\n\t22074: 0x9B9E,\n\t22075: 0x9B9F,\n\t22076: 0x9BA0,\n\t22077: 0x9BA1,\n\t22078: 0x9BA2,\n\t22079: 0x9BA3,\n\t22080: 0x9BA4,\n\t22081: 0x9BA5,\n\t22082: 0x9BA6,\n\t22083: 0x9BA7,\n\t22084: 0x9BA8,\n\t22085: 0x9BA9,\n\t22086: 0x9BAA,\n\t22087: 0x9BAB,\n\t22088: 0x9BAC,\n\t22089: 0x9BAD,\n\t22090: 0x9BAE,\n\t22091: 0x9BAF,\n\t22092: 0x9BB0,\n\t22093: 0x9BB1,\n\t22094: 0x9BB2,\n\t22095: 0x9BB3,\n\t22096: 0x9BB4,\n\t22097: 0x9BB5,\n\t22098: 0x9BB6,\n\t22099: 0x9BB7,\n\t22100: 0x9BB8,\n\t22101: 0x9BB9,\n\t22102: 0x9BBA,\n\t22103: 0x9BBB,\n\t22104: 0x9BBC,\n\t22105: 0x9BBD,\n\t22106: 0x9BBE,\n\t22107: 0x9BBF,\n\t22108: 0x9BC0,\n\t22109: 0x9BC1,\n\t22110: 0x9BC2,\n\t22111: 0x9BC3,\n\t22112: 0x9BC4,\n\t22113: 0x9BC5,\n\t22114: 0x9BC6,\n\t22115: 0x9BC7,\n\t22116: 0x9BC8,\n\t22117: 0x9BC9,\n\t22118: 0x9BCA,\n\t22119: 0x9BCB,\n\t22120: 0x9BCC,\n\t22121: 0x9BCD,\n\t22122: 0x9BCE,\n\t22123: 0x9BCF,\n\t22124: 0x9BD0,\n\t22125: 0x9BD1,\n\t22126: 0x9BD2,\n\t22127: 0x9BD3,\n\t22128: 0x9BD4,\n\t22129: 0x9BD5,\n\t22130: 0x9BD6,\n\t22131: 0x9BD7,\n\t22132: 0x9BD8,\n\t22133: 0x9BD9,\n\t22134: 0x9BDA,\n\t22135: 0x9BDB,\n\t22136: 0x9162,\n\t22137: 0x9161,\n\t22138: 0x9170,\n\t22139: 0x9169,\n\t22140: 0x916F,\n\t22141: 0x917D,\n\t22142: 0x917E,\n\t22143: 0x9172,\n\t22144: 0x9174,\n\t22145: 0x9179,\n\t22146: 0x918C,\n\t22147: 0x9185,\n\t22148: 0x9190,\n\t22149: 0x918D,\n\t22150: 0x9191,\n\t22151: 0x91A2,\n\t22152: 0x91A3,\n\t22153: 0x91AA,\n\t22154: 0x91AD,\n\t22155: 0x91AE,\n\t22156: 0x91AF,\n\t22157: 0x91B5,\n\t22158: 0x91B4,\n\t22159: 0x91BA,\n\t22160: 0x8C55,\n\t22161: 0x9E7E,\n\t22162: 0x8DB8,\n\t22163: 0x8DEB,\n\t22164: 0x8E05,\n\t22165: 0x8E59,\n\t22166: 0x8E69,\n\t22167: 0x8DB5,\n\t22168: 0x8DBF,\n\t22169: 0x8DBC,\n\t22170: 0x8DBA,\n\t22171: 0x8DC4,\n\t22172: 0x8DD6,\n\t22173: 0x8DD7,\n\t22174: 0x8DDA,\n\t22175: 0x8DDE,\n\t22176: 0x8DCE,\n\t22177: 0x8DCF,\n\t22178: 0x8DDB,\n\t22179: 0x8DC6,\n\t22180: 0x8DEC,\n\t22181: 0x8DF7,\n\t22182: 0x8DF8,\n\t22183: 0x8DE3,\n\t22184: 0x8DF9,\n\t22185: 0x8DFB,\n\t22186: 0x8DE4,\n\t22187: 0x8E09,\n\t22188: 0x8DFD,\n\t22189: 0x8E14,\n\t22190: 0x8E1D,\n\t22191: 0x8E1F,\n\t22192: 0x8E2C,\n\t22193: 0x8E2E,\n\t22194: 0x8E23,\n\t22195: 0x8E2F,\n\t22196: 0x8E3A,\n\t22197: 0x8E40,\n\t22198: 0x8E39,\n\t22199: 0x8E35,\n\t22200: 0x8E3D,\n\t22201: 0x8E31,\n\t22202: 0x8E49,\n\t22203: 0x8E41,\n\t22204: 0x8E42,\n\t22205: 0x8E51,\n\t22206: 0x8E52,\n\t22207: 0x8E4A,\n\t22208: 0x8E70,\n\t22209: 0x8E76,\n\t22210: 0x8E7C,\n\t22211: 0x8E6F,\n\t22212: 0x8E74,\n\t22213: 0x8E85,\n\t22214: 0x8E8F,\n\t22215: 0x8E94,\n\t22216: 0x8E90,\n\t22217: 0x8E9C,\n\t22218: 0x8E9E,\n\t22219: 0x8C78,\n\t22220: 0x8C82,\n\t22221: 0x8C8A,\n\t22222: 0x8C85,\n\t22223: 0x8C98,\n\t22224: 0x8C94,\n\t22225: 0x659B,\n\t22226: 0x89D6,\n\t22227: 0x89DE,\n\t22228: 0x89DA,\n\t22229: 0x89DC,\n\t22230: 0x9BDC,\n\t22231: 0x9BDD,\n\t22232: 0x9BDE,\n\t22233: 0x9BDF,\n\t22234: 0x9BE0,\n\t22235: 0x9BE1,\n\t22236: 0x9BE2,\n\t22237: 0x9BE3,\n\t22238: 0x9BE4,\n\t22239: 0x9BE5,\n\t22240: 0x9BE6,\n\t22241: 0x9BE7,\n\t22242: 0x9BE8,\n\t22243: 0x9BE9,\n\t22244: 0x9BEA,\n\t22245: 0x9BEB,\n\t22246: 0x9BEC,\n\t22247: 0x9BED,\n\t22248: 0x9BEE,\n\t22249: 0x9BEF,\n\t22250: 0x9BF0,\n\t22251: 0x9BF1,\n\t22252: 0x9BF2,\n\t22253: 0x9BF3,\n\t22254: 0x9BF4,\n\t22255: 0x9BF5,\n\t22256: 0x9BF6,\n\t22257: 0x9BF7,\n\t22258: 0x9BF8,\n\t22259: 0x9BF9,\n\t22260: 0x9BFA,\n\t22261: 0x9BFB,\n\t22262: 0x9BFC,\n\t22263: 0x9BFD,\n\t22264: 0x9BFE,\n\t22265: 0x9BFF,\n\t22266: 0x9C00,\n\t22267: 0x9C01,\n\t22268: 0x9C02,\n\t22269: 0x9C03,\n\t22270: 0x9C04,\n\t22271: 0x9C05,\n\t22272: 0x9C06,\n\t22273: 0x9C07,\n\t22274: 0x9C08,\n\t22275: 0x9C09,\n\t22276: 0x9C0A,\n\t22277: 0x9C0B,\n\t22278: 0x9C0C,\n\t22279: 0x9C0D,\n\t22280: 0x9C0E,\n\t22281: 0x9C0F,\n\t22282: 0x9C10,\n\t22283: 0x9C11,\n\t22284: 0x9C12,\n\t22285: 0x9C13,\n\t22286: 0x9C14,\n\t22287: 0x9C15,\n\t22288: 0x9C16,\n\t22289: 0x9C17,\n\t22290: 0x9C18,\n\t22291: 0x9C19,\n\t22292: 0x9C1A,\n\t22293: 0x9C1B,\n\t22294: 0x9C1C,\n\t22295: 0x9C1D,\n\t22296: 0x9C1E,\n\t22297: 0x9C1F,\n\t22298: 0x9C20,\n\t22299: 0x9C21,\n\t22300: 0x9C22,\n\t22301: 0x9C23,\n\t22302: 0x9C24,\n\t22303: 0x9C25,\n\t22304: 0x9C26,\n\t22305: 0x9C27,\n\t22306: 0x9C28,\n\t22307: 0x9C29,\n\t22308: 0x9C2A,\n\t22309: 0x9C2B,\n\t22310: 0x9C2C,\n\t22311: 0x9C2D,\n\t22312: 0x9C2E,\n\t22313: 0x9C2F,\n\t22314: 0x9C30,\n\t22315: 0x9C31,\n\t22316: 0x9C32,\n\t22317: 0x9C33,\n\t22318: 0x9C34,\n\t22319: 0x9C35,\n\t22320: 0x9C36,\n\t22321: 0x9C37,\n\t22322: 0x9C38,\n\t22323: 0x9C39,\n\t22324: 0x9C3A,\n\t22325: 0x9C3B,\n\t22326: 0x89E5,\n\t22327: 0x89EB,\n\t22328: 0x89EF,\n\t22329: 0x8A3E,\n\t22330: 0x8B26,\n\t22331: 0x9753,\n\t22332: 0x96E9,\n\t22333: 0x96F3,\n\t22334: 0x96EF,\n\t22335: 0x9706,\n\t22336: 0x9701,\n\t22337: 0x9708,\n\t22338: 0x970F,\n\t22339: 0x970E,\n\t22340: 0x972A,\n\t22341: 0x972D,\n\t22342: 0x9730,\n\t22343: 0x973E,\n\t22344: 0x9F80,\n\t22345: 0x9F83,\n\t22346: 0x9F85,\n\t22347: 0x9F86,\n\t22348: 0x9F87,\n\t22349: 0x9F88,\n\t22350: 0x9F89,\n\t22351: 0x9F8A,\n\t22352: 0x9F8C,\n\t22353: 0x9EFE,\n\t22354: 0x9F0B,\n\t22355: 0x9F0D,\n\t22356: 0x96B9,\n\t22357: 0x96BC,\n\t22358: 0x96BD,\n\t22359: 0x96CE,\n\t22360: 0x96D2,\n\t22361: 0x77BF,\n\t22362: 0x96E0,\n\t22363: 0x928E,\n\t22364: 0x92AE,\n\t22365: 0x92C8,\n\t22366: 0x933E,\n\t22367: 0x936A,\n\t22368: 0x93CA,\n\t22369: 0x938F,\n\t22370: 0x943E,\n\t22371: 0x946B,\n\t22372: 0x9C7F,\n\t22373: 0x9C82,\n\t22374: 0x9C85,\n\t22375: 0x9C86,\n\t22376: 0x9C87,\n\t22377: 0x9C88,\n\t22378: 0x7A23,\n\t22379: 0x9C8B,\n\t22380: 0x9C8E,\n\t22381: 0x9C90,\n\t22382: 0x9C91,\n\t22383: 0x9C92,\n\t22384: 0x9C94,\n\t22385: 0x9C95,\n\t22386: 0x9C9A,\n\t22387: 0x9C9B,\n\t22388: 0x9C9E,\n\t22389: 0x9C9F,\n\t22390: 0x9CA0,\n\t22391: 0x9CA1,\n\t22392: 0x9CA2,\n\t22393: 0x9CA3,\n\t22394: 0x9CA5,\n\t22395: 0x9CA6,\n\t22396: 0x9CA7,\n\t22397: 0x9CA8,\n\t22398: 0x9CA9,\n\t22399: 0x9CAB,\n\t22400: 0x9CAD,\n\t22401: 0x9CAE,\n\t22402: 0x9CB0,\n\t22403: 0x9CB1,\n\t22404: 0x9CB2,\n\t22405: 0x9CB3,\n\t22406: 0x9CB4,\n\t22407: 0x9CB5,\n\t22408: 0x9CB6,\n\t22409: 0x9CB7,\n\t22410: 0x9CBA,\n\t22411: 0x9CBB,\n\t22412: 0x9CBC,\n\t22413: 0x9CBD,\n\t22414: 0x9CC4,\n\t22415: 0x9CC5,\n\t22416: 0x9CC6,\n\t22417: 0x9CC7,\n\t22418: 0x9CCA,\n\t22419: 0x9CCB,\n\t22420: 0x9C3C,\n\t22421: 0x9C3D,\n\t22422: 0x9C3E,\n\t22423: 0x9C3F,\n\t22424: 0x9C40,\n\t22425: 0x9C41,\n\t22426: 0x9C42,\n\t22427: 0x9C43,\n\t22428: 0x9C44,\n\t22429: 0x9C45,\n\t22430: 0x9C46,\n\t22431: 0x9C47,\n\t22432: 0x9C48,\n\t22433: 0x9C49,\n\t22434: 0x9C4A,\n\t22435: 0x9C4B,\n\t22436: 0x9C4C,\n\t22437: 0x9C4D,\n\t22438: 0x9C4E,\n\t22439: 0x9C4F,\n\t22440: 0x9C50,\n\t22441: 0x9C51,\n\t22442: 0x9C52,\n\t22443: 0x9C53,\n\t22444: 0x9C54,\n\t22445: 0x9C55,\n\t22446: 0x9C56,\n\t22447: 0x9C57,\n\t22448: 0x9C58,\n\t22449: 0x9C59,\n\t22450: 0x9C5A,\n\t22451: 0x9C5B,\n\t22452: 0x9C5C,\n\t22453: 0x9C5D,\n\t22454: 0x9C5E,\n\t22455: 0x9C5F,\n\t22456: 0x9C60,\n\t22457: 0x9C61,\n\t22458: 0x9C62,\n\t22459: 0x9C63,\n\t22460: 0x9C64,\n\t22461: 0x9C65,\n\t22462: 0x9C66,\n\t22463: 0x9C67,\n\t22464: 0x9C68,\n\t22465: 0x9C69,\n\t22466: 0x9C6A,\n\t22467: 0x9C6B,\n\t22468: 0x9C6C,\n\t22469: 0x9C6D,\n\t22470: 0x9C6E,\n\t22471: 0x9C6F,\n\t22472: 0x9C70,\n\t22473: 0x9C71,\n\t22474: 0x9C72,\n\t22475: 0x9C73,\n\t22476: 0x9C74,\n\t22477: 0x9C75,\n\t22478: 0x9C76,\n\t22479: 0x9C77,\n\t22480: 0x9C78,\n\t22481: 0x9C79,\n\t22482: 0x9C7A,\n\t22483: 0x9C7B,\n\t22484: 0x9C7D,\n\t22485: 0x9C7E,\n\t22486: 0x9C80,\n\t22487: 0x9C83,\n\t22488: 0x9C84,\n\t22489: 0x9C89,\n\t22490: 0x9C8A,\n\t22491: 0x9C8C,\n\t22492: 0x9C8F,\n\t22493: 0x9C93,\n\t22494: 0x9C96,\n\t22495: 0x9C97,\n\t22496: 0x9C98,\n\t22497: 0x9C99,\n\t22498: 0x9C9D,\n\t22499: 0x9CAA,\n\t22500: 0x9CAC,\n\t22501: 0x9CAF,\n\t22502: 0x9CB9,\n\t22503: 0x9CBE,\n\t22504: 0x9CBF,\n\t22505: 0x9CC0,\n\t22506: 0x9CC1,\n\t22507: 0x9CC2,\n\t22508: 0x9CC8,\n\t22509: 0x9CC9,\n\t22510: 0x9CD1,\n\t22511: 0x9CD2,\n\t22512: 0x9CDA,\n\t22513: 0x9CDB,\n\t22514: 0x9CE0,\n\t22515: 0x9CE1,\n\t22516: 0x9CCC,\n\t22517: 0x9CCD,\n\t22518: 0x9CCE,\n\t22519: 0x9CCF,\n\t22520: 0x9CD0,\n\t22521: 0x9CD3,\n\t22522: 0x9CD4,\n\t22523: 0x9CD5,\n\t22524: 0x9CD7,\n\t22525: 0x9CD8,\n\t22526: 0x9CD9,\n\t22527: 0x9CDC,\n\t22528: 0x9CDD,\n\t22529: 0x9CDF,\n\t22530: 0x9CE2,\n\t22531: 0x977C,\n\t22532: 0x9785,\n\t22533: 0x9791,\n\t22534: 0x9792,\n\t22535: 0x9794,\n\t22536: 0x97AF,\n\t22537: 0x97AB,\n\t22538: 0x97A3,\n\t22539: 0x97B2,\n\t22540: 0x97B4,\n\t22541: 0x9AB1,\n\t22542: 0x9AB0,\n\t22543: 0x9AB7,\n\t22544: 0x9E58,\n\t22545: 0x9AB6,\n\t22546: 0x9ABA,\n\t22547: 0x9ABC,\n\t22548: 0x9AC1,\n\t22549: 0x9AC0,\n\t22550: 0x9AC5,\n\t22551: 0x9AC2,\n\t22552: 0x9ACB,\n\t22553: 0x9ACC,\n\t22554: 0x9AD1,\n\t22555: 0x9B45,\n\t22556: 0x9B43,\n\t22557: 0x9B47,\n\t22558: 0x9B49,\n\t22559: 0x9B48,\n\t22560: 0x9B4D,\n\t22561: 0x9B51,\n\t22562: 0x98E8,\n\t22563: 0x990D,\n\t22564: 0x992E,\n\t22565: 0x9955,\n\t22566: 0x9954,\n\t22567: 0x9ADF,\n\t22568: 0x9AE1,\n\t22569: 0x9AE6,\n\t22570: 0x9AEF,\n\t22571: 0x9AEB,\n\t22572: 0x9AFB,\n\t22573: 0x9AED,\n\t22574: 0x9AF9,\n\t22575: 0x9B08,\n\t22576: 0x9B0F,\n\t22577: 0x9B13,\n\t22578: 0x9B1F,\n\t22579: 0x9B23,\n\t22580: 0x9EBD,\n\t22581: 0x9EBE,\n\t22582: 0x7E3B,\n\t22583: 0x9E82,\n\t22584: 0x9E87,\n\t22585: 0x9E88,\n\t22586: 0x9E8B,\n\t22587: 0x9E92,\n\t22588: 0x93D6,\n\t22589: 0x9E9D,\n\t22590: 0x9E9F,\n\t22591: 0x9EDB,\n\t22592: 0x9EDC,\n\t22593: 0x9EDD,\n\t22594: 0x9EE0,\n\t22595: 0x9EDF,\n\t22596: 0x9EE2,\n\t22597: 0x9EE9,\n\t22598: 0x9EE7,\n\t22599: 0x9EE5,\n\t22600: 0x9EEA,\n\t22601: 0x9EEF,\n\t22602: 0x9F22,\n\t22603: 0x9F2C,\n\t22604: 0x9F2F,\n\t22605: 0x9F39,\n\t22606: 0x9F37,\n\t22607: 0x9F3D,\n\t22608: 0x9F3E,\n\t22609: 0x9F44,\n\t22610: 0x9CE3,\n\t22611: 0x9CE4,\n\t22612: 0x9CE5,\n\t22613: 0x9CE6,\n\t22614: 0x9CE7,\n\t22615: 0x9CE8,\n\t22616: 0x9CE9,\n\t22617: 0x9CEA,\n\t22618: 0x9CEB,\n\t22619: 0x9CEC,\n\t22620: 0x9CED,\n\t22621: 0x9CEE,\n\t22622: 0x9CEF,\n\t22623: 0x9CF0,\n\t22624: 0x9CF1,\n\t22625: 0x9CF2,\n\t22626: 0x9CF3,\n\t22627: 0x9CF4,\n\t22628: 0x9CF5,\n\t22629: 0x9CF6,\n\t22630: 0x9CF7,\n\t22631: 0x9CF8,\n\t22632: 0x9CF9,\n\t22633: 0x9CFA,\n\t22634: 0x9CFB,\n\t22635: 0x9CFC,\n\t22636: 0x9CFD,\n\t22637: 0x9CFE,\n\t22638: 0x9CFF,\n\t22639: 0x9D00,\n\t22640: 0x9D01,\n\t22641: 0x9D02,\n\t22642: 0x9D03,\n\t22643: 0x9D04,\n\t22644: 0x9D05,\n\t22645: 0x9D06,\n\t22646: 0x9D07,\n\t22647: 0x9D08,\n\t22648: 0x9D09,\n\t22649: 0x9D0A,\n\t22650: 0x9D0B,\n\t22651: 0x9D0C,\n\t22652: 0x9D0D,\n\t22653: 0x9D0E,\n\t22654: 0x9D0F,\n\t22655: 0x9D10,\n\t22656: 0x9D11,\n\t22657: 0x9D12,\n\t22658: 0x9D13,\n\t22659: 0x9D14,\n\t22660: 0x9D15,\n\t22661: 0x9D16,\n\t22662: 0x9D17,\n\t22663: 0x9D18,\n\t22664: 0x9D19,\n\t22665: 0x9D1A,\n\t22666: 0x9D1B,\n\t22667: 0x9D1C,\n\t22668: 0x9D1D,\n\t22669: 0x9D1E,\n\t22670: 0x9D1F,\n\t22671: 0x9D20,\n\t22672: 0x9D21,\n\t22673: 0x9D22,\n\t22674: 0x9D23,\n\t22675: 0x9D24,\n\t22676: 0x9D25,\n\t22677: 0x9D26,\n\t22678: 0x9D27,\n\t22679: 0x9D28,\n\t22680: 0x9D29,\n\t22681: 0x9D2A,\n\t22682: 0x9D2B,\n\t22683: 0x9D2C,\n\t22684: 0x9D2D,\n\t22685: 0x9D2E,\n\t22686: 0x9D2F,\n\t22687: 0x9D30,\n\t22688: 0x9D31,\n\t22689: 0x9D32,\n\t22690: 0x9D33,\n\t22691: 0x9D34,\n\t22692: 0x9D35,\n\t22693: 0x9D36,\n\t22694: 0x9D37,\n\t22695: 0x9D38,\n\t22696: 0x9D39,\n\t22697: 0x9D3A,\n\t22698: 0x9D3B,\n\t22699: 0x9D3C,\n\t22700: 0x9D3D,\n\t22701: 0x9D3E,\n\t22702: 0x9D3F,\n\t22703: 0x9D40,\n\t22704: 0x9D41,\n\t22705: 0x9D42,\n\t22800: 0x9D43,\n\t22801: 0x9D44,\n\t22802: 0x9D45,\n\t22803: 0x9D46,\n\t22804: 0x9D47,\n\t22805: 0x9D48,\n\t22806: 0x9D49,\n\t22807: 0x9D4A,\n\t22808: 0x9D4B,\n\t22809: 0x9D4C,\n\t22810: 0x9D4D,\n\t22811: 0x9D4E,\n\t22812: 0x9D4F,\n\t22813: 0x9D50,\n\t22814: 0x9D51,\n\t22815: 0x9D52,\n\t22816: 0x9D53,\n\t22817: 0x9D54,\n\t22818: 0x9D55,\n\t22819: 0x9D56,\n\t22820: 0x9D57,\n\t22821: 0x9D58,\n\t22822: 0x9D59,\n\t22823: 0x9D5A,\n\t22824: 0x9D5B,\n\t22825: 0x9D5C,\n\t22826: 0x9D5D,\n\t22827: 0x9D5E,\n\t22828: 0x9D5F,\n\t22829: 0x9D60,\n\t22830: 0x9D61,\n\t22831: 0x9D62,\n\t22832: 0x9D63,\n\t22833: 0x9D64,\n\t22834: 0x9D65,\n\t22835: 0x9D66,\n\t22836: 0x9D67,\n\t22837: 0x9D68,\n\t22838: 0x9D69,\n\t22839: 0x9D6A,\n\t22840: 0x9D6B,\n\t22841: 0x9D6C,\n\t22842: 0x9D6D,\n\t22843: 0x9D6E,\n\t22844: 0x9D6F,\n\t22845: 0x9D70,\n\t22846: 0x9D71,\n\t22847: 0x9D72,\n\t22848: 0x9D73,\n\t22849: 0x9D74,\n\t22850: 0x9D75,\n\t22851: 0x9D76,\n\t22852: 0x9D77,\n\t22853: 0x9D78,\n\t22854: 0x9D79,\n\t22855: 0x9D7A,\n\t22856: 0x9D7B,\n\t22857: 0x9D7C,\n\t22858: 0x9D7D,\n\t22859: 0x9D7E,\n\t22860: 0x9D7F,\n\t22861: 0x9D80,\n\t22862: 0x9D81,\n\t22863: 0x9D82,\n\t22864: 0x9D83,\n\t22865: 0x9D84,\n\t22866: 0x9D85,\n\t22867: 0x9D86,\n\t22868: 0x9D87,\n\t22869: 0x9D88,\n\t22870: 0x9D89,\n\t22871: 0x9D8A,\n\t22872: 0x9D8B,\n\t22873: 0x9D8C,\n\t22874: 0x9D8D,\n\t22875: 0x9D8E,\n\t22876: 0x9D8F,\n\t22877: 0x9D90,\n\t22878: 0x9D91,\n\t22879: 0x9D92,\n\t22880: 0x9D93,\n\t22881: 0x9D94,\n\t22882: 0x9D95,\n\t22883: 0x9D96,\n\t22884: 0x9D97,\n\t22885: 0x9D98,\n\t22886: 0x9D99,\n\t22887: 0x9D9A,\n\t22888: 0x9D9B,\n\t22889: 0x9D9C,\n\t22890: 0x9D9D,\n\t22891: 0x9D9E,\n\t22892: 0x9D9F,\n\t22893: 0x9DA0,\n\t22894: 0x9DA1,\n\t22895: 0x9DA2,\n\t22990: 0x9DA3,\n\t22991: 0x9DA4,\n\t22992: 0x9DA5,\n\t22993: 0x9DA6,\n\t22994: 0x9DA7,\n\t22995: 0x9DA8,\n\t22996: 0x9DA9,\n\t22997: 0x9DAA,\n\t22998: 0x9DAB,\n\t22999: 0x9DAC,\n\t23000: 0x9DAD,\n\t23001: 0x9DAE,\n\t23002: 0x9DAF,\n\t23003: 0x9DB0,\n\t23004: 0x9DB1,\n\t23005: 0x9DB2,\n\t23006: 0x9DB3,\n\t23007: 0x9DB4,\n\t23008: 0x9DB5,\n\t23009: 0x9DB6,\n\t23010: 0x9DB7,\n\t23011: 0x9DB8,\n\t23012: 0x9DB9,\n\t23013: 0x9DBA,\n\t23014: 0x9DBB,\n\t23015: 0x9DBC,\n\t23016: 0x9DBD,\n\t23017: 0x9DBE,\n\t23018: 0x9DBF,\n\t23019: 0x9DC0,\n\t23020: 0x9DC1,\n\t23021: 0x9DC2,\n\t23022: 0x9DC3,\n\t23023: 0x9DC4,\n\t23024: 0x9DC5,\n\t23025: 0x9DC6,\n\t23026: 0x9DC7,\n\t23027: 0x9DC8,\n\t23028: 0x9DC9,\n\t23029: 0x9DCA,\n\t23030: 0x9DCB,\n\t23031: 0x9DCC,\n\t23032: 0x9DCD,\n\t23033: 0x9DCE,\n\t23034: 0x9DCF,\n\t23035: 0x9DD0,\n\t23036: 0x9DD1,\n\t23037: 0x9DD2,\n\t23038: 0x9DD3,\n\t23039: 0x9DD4,\n\t23040: 0x9DD5,\n\t23041: 0x9DD6,\n\t23042: 0x9DD7,\n\t23043: 0x9DD8,\n\t23044: 0x9DD9,\n\t23045: 0x9DDA,\n\t23046: 0x9DDB,\n\t23047: 0x9DDC,\n\t23048: 0x9DDD,\n\t23049: 0x9DDE,\n\t23050: 0x9DDF,\n\t23051: 0x9DE0,\n\t23052: 0x9DE1,\n\t23053: 0x9DE2,\n\t23054: 0x9DE3,\n\t23055: 0x9DE4,\n\t23056: 0x9DE5,\n\t23057: 0x9DE6,\n\t23058: 0x9DE7,\n\t23059: 0x9DE8,\n\t23060: 0x9DE9,\n\t23061: 0x9DEA,\n\t23062: 0x9DEB,\n\t23063: 0x9DEC,\n\t23064: 0x9DED,\n\t23065: 0x9DEE,\n\t23066: 0x9DEF,\n\t23067: 0x9DF0,\n\t23068: 0x9DF1,\n\t23069: 0x9DF2,\n\t23070: 0x9DF3,\n\t23071: 0x9DF4,\n\t23072: 0x9DF5,\n\t23073: 0x9DF6,\n\t23074: 0x9DF7,\n\t23075: 0x9DF8,\n\t23076: 0x9DF9,\n\t23077: 0x9DFA,\n\t23078: 0x9DFB,\n\t23079: 0x9DFC,\n\t23080: 0x9DFD,\n\t23081: 0x9DFE,\n\t23082: 0x9DFF,\n\t23083: 0x9E00,\n\t23084: 0x9E01,\n\t23085: 0x9E02,\n\t23180: 0x9E03,\n\t23181: 0x9E04,\n\t23182: 0x9E05,\n\t23183: 0x9E06,\n\t23184: 0x9E07,\n\t23185: 0x9E08,\n\t23186: 0x9E09,\n\t23187: 0x9E0A,\n\t23188: 0x9E0B,\n\t23189: 0x9E0C,\n\t23190: 0x9E0D,\n\t23191: 0x9E0E,\n\t23192: 0x9E0F,\n\t23193: 0x9E10,\n\t23194: 0x9E11,\n\t23195: 0x9E12,\n\t23196: 0x9E13,\n\t23197: 0x9E14,\n\t23198: 0x9E15,\n\t23199: 0x9E16,\n\t23200: 0x9E17,\n\t23201: 0x9E18,\n\t23202: 0x9E19,\n\t23203: 0x9E1A,\n\t23204: 0x9E1B,\n\t23205: 0x9E1C,\n\t23206: 0x9E1D,\n\t23207: 0x9E1E,\n\t23208: 0x9E24,\n\t23209: 0x9E27,\n\t23210: 0x9E2E,\n\t23211: 0x9E30,\n\t23212: 0x9E34,\n\t23213: 0x9E3B,\n\t23214: 0x9E3C,\n\t23215: 0x9E40,\n\t23216: 0x9E4D,\n\t23217: 0x9E50,\n\t23218: 0x9E52,\n\t23219: 0x9E53,\n\t23220: 0x9E54,\n\t23221: 0x9E56,\n\t23222: 0x9E59,\n\t23223: 0x9E5D,\n\t23224: 0x9E5F,\n\t23225: 0x9E60,\n\t23226: 0x9E61,\n\t23227: 0x9E62,\n\t23228: 0x9E65,\n\t23229: 0x9E6E,\n\t23230: 0x9E6F,\n\t23231: 0x9E72,\n\t23232: 0x9E74,\n\t23233: 0x9E75,\n\t23234: 0x9E76,\n\t23235: 0x9E77,\n\t23236: 0x9E78,\n\t23237: 0x9E79,\n\t23238: 0x9E7A,\n\t23239: 0x9E7B,\n\t23240: 0x9E7C,\n\t23241: 0x9E7D,\n\t23242: 0x9E80,\n\t23243: 0x9E81,\n\t23244: 0x9E83,\n\t23245: 0x9E84,\n\t23246: 0x9E85,\n\t23247: 0x9E86,\n\t23248: 0x9E89,\n\t23249: 0x9E8A,\n\t23250: 0x9E8C,\n\t23251: 0x9E8D,\n\t23252: 0x9E8E,\n\t23253: 0x9E8F,\n\t23254: 0x9E90,\n\t23255: 0x9E91,\n\t23256: 0x9E94,\n\t23257: 0x9E95,\n\t23258: 0x9E96,\n\t23259: 0x9E97,\n\t23260: 0x9E98,\n\t23261: 0x9E99,\n\t23262: 0x9E9A,\n\t23263: 0x9E9B,\n\t23264: 0x9E9C,\n\t23265: 0x9E9E,\n\t23266: 0x9EA0,\n\t23267: 0x9EA1,\n\t23268: 0x9EA2,\n\t23269: 0x9EA3,\n\t23270: 0x9EA4,\n\t23271: 0x9EA5,\n\t23272: 0x9EA7,\n\t23273: 0x9EA8,\n\t23274: 0x9EA9,\n\t23275: 0x9EAA,\n\t23370: 0x9EAB,\n\t23371: 0x9EAC,\n\t23372: 0x9EAD,\n\t23373: 0x9EAE,\n\t23374: 0x9EAF,\n\t23375: 0x9EB0,\n\t23376: 0x9EB1,\n\t23377: 0x9EB2,\n\t23378: 0x9EB3,\n\t23379: 0x9EB5,\n\t23380: 0x9EB6,\n\t23381: 0x9EB7,\n\t23382: 0x9EB9,\n\t23383: 0x9EBA,\n\t23384: 0x9EBC,\n\t23385: 0x9EBF,\n\t23386: 0x9EC0,\n\t23387: 0x9EC1,\n\t23388: 0x9EC2,\n\t23389: 0x9EC3,\n\t23390: 0x9EC5,\n\t23391: 0x9EC6,\n\t23392: 0x9EC7,\n\t23393: 0x9EC8,\n\t23394: 0x9ECA,\n\t23395: 0x9ECB,\n\t23396: 0x9ECC,\n\t23397: 0x9ED0,\n\t23398: 0x9ED2,\n\t23399: 0x9ED3,\n\t23400: 0x9ED5,\n\t23401: 0x9ED6,\n\t23402: 0x9ED7,\n\t23403: 0x9ED9,\n\t23404: 0x9EDA,\n\t23405: 0x9EDE,\n\t23406: 0x9EE1,\n\t23407: 0x9EE3,\n\t23408: 0x9EE4,\n\t23409: 0x9EE6,\n\t23410: 0x9EE8,\n\t23411: 0x9EEB,\n\t23412: 0x9EEC,\n\t23413: 0x9EED,\n\t23414: 0x9EEE,\n\t23415: 0x9EF0,\n\t23416: 0x9EF1,\n\t23417: 0x9EF2,\n\t23418: 0x9EF3,\n\t23419: 0x9EF4,\n\t23420: 0x9EF5,\n\t23421: 0x9EF6,\n\t23422: 0x9EF7,\n\t23423: 0x9EF8,\n\t23424: 0x9EFA,\n\t23425: 0x9EFD,\n\t23426: 0x9EFF,\n\t23427: 0x9F00,\n\t23428: 0x9F01,\n\t23429: 0x9F02,\n\t23430: 0x9F03,\n\t23431: 0x9F04,\n\t23432: 0x9F05,\n\t23433: 0x9F06,\n\t23434: 0x9F07,\n\t23435: 0x9F08,\n\t23436: 0x9F09,\n\t23437: 0x9F0A,\n\t23438: 0x9F0C,\n\t23439: 0x9F0F,\n\t23440: 0x9F11,\n\t23441: 0x9F12,\n\t23442: 0x9F14,\n\t23443: 0x9F15,\n\t23444: 0x9F16,\n\t23445: 0x9F18,\n\t23446: 0x9F1A,\n\t23447: 0x9F1B,\n\t23448: 0x9F1C,\n\t23449: 0x9F1D,\n\t23450: 0x9F1E,\n\t23451: 0x9F1F,\n\t23452: 0x9F21,\n\t23453: 0x9F23,\n\t23454: 0x9F24,\n\t23455: 0x9F25,\n\t23456: 0x9F26,\n\t23457: 0x9F27,\n\t23458: 0x9F28,\n\t23459: 0x9F29,\n\t23460: 0x9F2A,\n\t23461: 0x9F2B,\n\t23462: 0x9F2D,\n\t23463: 0x9F2E,\n\t23464: 0x9F30,\n\t23465: 0x9F31,\n\t23560: 0x9F32,\n\t23561: 0x9F33,\n\t23562: 0x9F34,\n\t23563: 0x9F35,\n\t23564: 0x9F36,\n\t23565: 0x9F38,\n\t23566: 0x9F3A,\n\t23567: 0x9F3C,\n\t23568: 0x9F3F,\n\t23569: 0x9F40,\n\t23570: 0x9F41,\n\t23571: 0x9F42,\n\t23572: 0x9F43,\n\t23573: 0x9F45,\n\t23574: 0x9F46,\n\t23575: 0x9F47,\n\t23576: 0x9F48,\n\t23577: 0x9F49,\n\t23578: 0x9F4A,\n\t23579: 0x9F4B,\n\t23580: 0x9F4C,\n\t23581: 0x9F4D,\n\t23582: 0x9F4E,\n\t23583: 0x9F4F,\n\t23584: 0x9F52,\n\t23585: 0x9F53,\n\t23586: 0x9F54,\n\t23587: 0x9F55,\n\t23588: 0x9F56,\n\t23589: 0x9F57,\n\t23590: 0x9F58,\n\t23591: 0x9F59,\n\t23592: 0x9F5A,\n\t23593: 0x9F5B,\n\t23594: 0x9F5C,\n\t23595: 0x9F5D,\n\t23596: 0x9F5E,\n\t23597: 0x9F5F,\n\t23598: 0x9F60,\n\t23599: 0x9F61,\n\t23600: 0x9F62,\n\t23601: 0x9F63,\n\t23602: 0x9F64,\n\t23603: 0x9F65,\n\t23604: 0x9F66,\n\t23605: 0x9F67,\n\t23606: 0x9F68,\n\t23607: 0x9F69,\n\t23608: 0x9F6A,\n\t23609: 0x9F6B,\n\t23610: 0x9F6C,\n\t23611: 0x9F6D,\n\t23612: 0x9F6E,\n\t23613: 0x9F6F,\n\t23614: 0x9F70,\n\t23615: 0x9F71,\n\t23616: 0x9F72,\n\t23617: 0x9F73,\n\t23618: 0x9F74,\n\t23619: 0x9F75,\n\t23620: 0x9F76,\n\t23621: 0x9F77,\n\t23622: 0x9F78,\n\t23623: 0x9F79,\n\t23624: 0x9F7A,\n\t23625: 0x9F7B,\n\t23626: 0x9F7C,\n\t23627: 0x9F7D,\n\t23628: 0x9F7E,\n\t23629: 0x9F81,\n\t23630: 0x9F82,\n\t23631: 0x9F8D,\n\t23632: 0x9F8E,\n\t23633: 0x9F8F,\n\t23634: 0x9F90,\n\t23635: 0x9F91,\n\t23636: 0x9F92,\n\t23637: 0x9F93,\n\t23638: 0x9F94,\n\t23639: 0x9F95,\n\t23640: 0x9F96,\n\t23641: 0x9F97,\n\t23642: 0x9F98,\n\t23643: 0x9F9C,\n\t23644: 0x9F9D,\n\t23645: 0x9F9E,\n\t23646: 0x9FA1,\n\t23647: 0x9FA2,\n\t23648: 0x9FA3,\n\t23649: 0x9FA4,\n\t23650: 0x9FA5,\n\t23651: 0xF92C,\n\t23652: 0xF979,\n\t23653: 0xF995,\n\t23654: 0xF9E7,\n\t23655: 0xF9F1,\n\t23750: 0xFA0C,\n\t23751: 0xFA0D,\n\t23752: 0xFA0E,\n\t23753: 0xFA0F,\n\t23754: 0xFA11,\n\t23755: 0xFA13,\n\t23756: 0xFA14,\n\t23757: 0xFA18,\n\t23758: 0xFA1F,\n\t23759: 0xFA20,\n\t23760: 0xFA21,\n\t23761: 0xFA23,\n\t23762: 0xFA24,\n\t23763: 0xFA27,\n\t23764: 0xFA28,\n\t23765: 0xFA29,\n\t23766: 0x2E81,\n\t23770: 0x2E84,\n\t23771: 0x3473,\n\t23772: 0x3447,\n\t23773: 0x2E88,\n\t23774: 0x2E8B,\n\t23776: 0x359E,\n\t23777: 0x361A,\n\t23778: 0x360E,\n\t23779: 0x2E8C,\n\t23780: 0x2E97,\n\t23781: 0x396E,\n\t23782: 0x3918,\n\t23784: 0x39CF,\n\t23785: 0x39DF,\n\t23786: 0x3A73,\n\t23787: 0x39D0,\n\t23790: 0x3B4E,\n\t23791: 0x3C6E,\n\t23792: 0x3CE0,\n\t23793: 0x2EA7,\n\t23796: 0x2EAA,\n\t23797: 0x4056,\n\t23798: 0x415F,\n\t23799: 0x2EAE,\n\t23800: 0x4337,\n\t23801: 0x2EB3,\n\t23802: 0x2EB6,\n\t23803: 0x2EB7,\n\t23805: 0x43B1,\n\t23806: 0x43AC,\n\t23807: 0x2EBB,\n\t23808: 0x43DD,\n\t23809: 0x44D6,\n\t23810: 0x4661,\n\t23811: 0x464C,\n\t23813: 0x4723,\n\t23814: 0x4729,\n\t23815: 0x477C,\n\t23816: 0x478D,\n\t23817: 0x2ECA,\n\t23818: 0x4947,\n\t23819: 0x497A,\n\t23820: 0x497D,\n\t23821: 0x4982,\n\t23822: 0x4983,\n\t23823: 0x4985,\n\t23824: 0x4986,\n\t23825: 0x499F,\n\t23826: 0x499B,\n\t23827: 0x49B7,\n\t23828: 0x49B6,\n\t23831: 0x4CA3,\n\t23832: 0x4C9F,\n\t23833: 0x4CA0,\n\t23834: 0x4CA1,\n\t23835: 0x4C77,\n\t23836: 0x4CA2,\n\t23837: 0x4D13,\n\t23838: 0x4D14,\n\t23839: 0x4D15,\n\t23840: 0x4D16,\n\t23841: 0x4D17,\n\t23842: 0x4D18,\n\t23843: 0x4D19,\n\t23844: 0x4DAE,\n}\n\nconst numEncodeTables = 5\n\n// encodeX are the encoding tables from Unicode to GBK code,\n// sorted by decreasing length.\n// encode0: 28965 entries for runes in [11905, 40870).\n// encode1:  1587 entries for runes in [ 8208,  9795).\n// encode2:   942 entries for runes in [  164,  1106).\n// encode3:   438 entries for runes in [65072, 65510).\n// encode4:   254 entries for runes in [63788, 64042).\n\nconst encode0Low, encode0High = 11905, 40870\n\nvar encode0 = [...]uint16{\n\t11905 - 11905: 0xFE50,\n\t11908 - 11905: 0xFE54,\n\t11912 - 11905: 0xFE57,\n\t11915 - 11905: 0xFE58,\n\t11916 - 11905: 0xFE5D,\n\t11927 - 11905: 0xFE5E,\n\t11943 - 11905: 0xFE6B,\n\t11946 - 11905: 0xFE6E,\n\t11950 - 11905: 0xFE71,\n\t11955 - 11905: 0xFE73,\n\t11958 - 11905: 0xFE74,\n\t11959 - 11905: 0xFE75,\n\t11963 - 11905: 0xFE79,\n\t11978 - 11905: 0xFE84,\n\t12272 - 11905: 0xA98A,\n\t12273 - 11905: 0xA98B,\n\t12274 - 11905: 0xA98C,\n\t12275 - 11905: 0xA98D,\n\t12276 - 11905: 0xA98E,\n\t12277 - 11905: 0xA98F,\n\t12278 - 11905: 0xA990,\n\t12279 - 11905: 0xA991,\n\t12280 - 11905: 0xA992,\n\t12281 - 11905: 0xA993,\n\t12282 - 11905: 0xA994,\n\t12283 - 11905: 0xA995,\n\t12288 - 11905: 0xA1A1,\n\t12289 - 11905: 0xA1A2,\n\t12290 - 11905: 0xA1A3,\n\t12291 - 11905: 0xA1A8,\n\t12293 - 11905: 0xA1A9,\n\t12294 - 11905: 0xA965,\n\t12295 - 11905: 0xA996,\n\t12296 - 11905: 0xA1B4,\n\t12297 - 11905: 0xA1B5,\n\t12298 - 11905: 0xA1B6,\n\t12299 - 11905: 0xA1B7,\n\t12300 - 11905: 0xA1B8,\n\t12301 - 11905: 0xA1B9,\n\t12302 - 11905: 0xA1BA,\n\t12303 - 11905: 0xA1BB,\n\t12304 - 11905: 0xA1BE,\n\t12305 - 11905: 0xA1BF,\n\t12306 - 11905: 0xA893,\n\t12307 - 11905: 0xA1FE,\n\t12308 - 11905: 0xA1B2,\n\t12309 - 11905: 0xA1B3,\n\t12310 - 11905: 0xA1BC,\n\t12311 - 11905: 0xA1BD,\n\t12317 - 11905: 0xA894,\n\t12318 - 11905: 0xA895,\n\t12321 - 11905: 0xA940,\n\t12322 - 11905: 0xA941,\n\t12323 - 11905: 0xA942,\n\t12324 - 11905: 0xA943,\n\t12325 - 11905: 0xA944,\n\t12326 - 11905: 0xA945,\n\t12327 - 11905: 0xA946,\n\t12328 - 11905: 0xA947,\n\t12329 - 11905: 0xA948,\n\t12350 - 11905: 0xA989,\n\t12353 - 11905: 0xA4A1,\n\t12354 - 11905: 0xA4A2,\n\t12355 - 11905: 0xA4A3,\n\t12356 - 11905: 0xA4A4,\n\t12357 - 11905: 0xA4A5,\n\t12358 - 11905: 0xA4A6,\n\t12359 - 11905: 0xA4A7,\n\t12360 - 11905: 0xA4A8,\n\t12361 - 11905: 0xA4A9,\n\t12362 - 11905: 0xA4AA,\n\t12363 - 11905: 0xA4AB,\n\t12364 - 11905: 0xA4AC,\n\t12365 - 11905: 0xA4AD,\n\t12366 - 11905: 0xA4AE,\n\t12367 - 11905: 0xA4AF,\n\t12368 - 11905: 0xA4B0,\n\t12369 - 11905: 0xA4B1,\n\t12370 - 11905: 0xA4B2,\n\t12371 - 11905: 0xA4B3,\n\t12372 - 11905: 0xA4B4,\n\t12373 - 11905: 0xA4B5,\n\t12374 - 11905: 0xA4B6,\n\t12375 - 11905: 0xA4B7,\n\t12376 - 11905: 0xA4B8,\n\t12377 - 11905: 0xA4B9,\n\t12378 - 11905: 0xA4BA,\n\t12379 - 11905: 0xA4BB,\n\t12380 - 11905: 0xA4BC,\n\t12381 - 11905: 0xA4BD,\n\t12382 - 11905: 0xA4BE,\n\t12383 - 11905: 0xA4BF,\n\t12384 - 11905: 0xA4C0,\n\t12385 - 11905: 0xA4C1,\n\t12386 - 11905: 0xA4C2,\n\t12387 - 11905: 0xA4C3,\n\t12388 - 11905: 0xA4C4,\n\t12389 - 11905: 0xA4C5,\n\t12390 - 11905: 0xA4C6,\n\t12391 - 11905: 0xA4C7,\n\t12392 - 11905: 0xA4C8,\n\t12393 - 11905: 0xA4C9,\n\t12394 - 11905: 0xA4CA,\n\t12395 - 11905: 0xA4CB,\n\t12396 - 11905: 0xA4CC,\n\t12397 - 11905: 0xA4CD,\n\t12398 - 11905: 0xA4CE,\n\t12399 - 11905: 0xA4CF,\n\t12400 - 11905: 0xA4D0,\n\t12401 - 11905: 0xA4D1,\n\t12402 - 11905: 0xA4D2,\n\t12403 - 11905: 0xA4D3,\n\t12404 - 11905: 0xA4D4,\n\t12405 - 11905: 0xA4D5,\n\t12406 - 11905: 0xA4D6,\n\t12407 - 11905: 0xA4D7,\n\t12408 - 11905: 0xA4D8,\n\t12409 - 11905: 0xA4D9,\n\t12410 - 11905: 0xA4DA,\n\t12411 - 11905: 0xA4DB,\n\t12412 - 11905: 0xA4DC,\n\t12413 - 11905: 0xA4DD,\n\t12414 - 11905: 0xA4DE,\n\t12415 - 11905: 0xA4DF,\n\t12416 - 11905: 0xA4E0,\n\t12417 - 11905: 0xA4E1,\n\t12418 - 11905: 0xA4E2,\n\t12419 - 11905: 0xA4E3,\n\t12420 - 11905: 0xA4E4,\n\t12421 - 11905: 0xA4E5,\n\t12422 - 11905: 0xA4E6,\n\t12423 - 11905: 0xA4E7,\n\t12424 - 11905: 0xA4E8,\n\t12425 - 11905: 0xA4E9,\n\t12426 - 11905: 0xA4EA,\n\t12427 - 11905: 0xA4EB,\n\t12428 - 11905: 0xA4EC,\n\t12429 - 11905: 0xA4ED,\n\t12430 - 11905: 0xA4EE,\n\t12431 - 11905: 0xA4EF,\n\t12432 - 11905: 0xA4F0,\n\t12433 - 11905: 0xA4F1,\n\t12434 - 11905: 0xA4F2,\n\t12435 - 11905: 0xA4F3,\n\t12443 - 11905: 0xA961,\n\t12444 - 11905: 0xA962,\n\t12445 - 11905: 0xA966,\n\t12446 - 11905: 0xA967,\n\t12449 - 11905: 0xA5A1,\n\t12450 - 11905: 0xA5A2,\n\t12451 - 11905: 0xA5A3,\n\t12452 - 11905: 0xA5A4,\n\t12453 - 11905: 0xA5A5,\n\t12454 - 11905: 0xA5A6,\n\t12455 - 11905: 0xA5A7,\n\t12456 - 11905: 0xA5A8,\n\t12457 - 11905: 0xA5A9,\n\t12458 - 11905: 0xA5AA,\n\t12459 - 11905: 0xA5AB,\n\t12460 - 11905: 0xA5AC,\n\t12461 - 11905: 0xA5AD,\n\t12462 - 11905: 0xA5AE,\n\t12463 - 11905: 0xA5AF,\n\t12464 - 11905: 0xA5B0,\n\t12465 - 11905: 0xA5B1,\n\t12466 - 11905: 0xA5B2,\n\t12467 - 11905: 0xA5B3,\n\t12468 - 11905: 0xA5B4,\n\t12469 - 11905: 0xA5B5,\n\t12470 - 11905: 0xA5B6,\n\t12471 - 11905: 0xA5B7,\n\t12472 - 11905: 0xA5B8,\n\t12473 - 11905: 0xA5B9,\n\t12474 - 11905: 0xA5BA,\n\t12475 - 11905: 0xA5BB,\n\t12476 - 11905: 0xA5BC,\n\t12477 - 11905: 0xA5BD,\n\t12478 - 11905: 0xA5BE,\n\t12479 - 11905: 0xA5BF,\n\t12480 - 11905: 0xA5C0,\n\t12481 - 11905: 0xA5C1,\n\t12482 - 11905: 0xA5C2,\n\t12483 - 11905: 0xA5C3,\n\t12484 - 11905: 0xA5C4,\n\t12485 - 11905: 0xA5C5,\n\t12486 - 11905: 0xA5C6,\n\t12487 - 11905: 0xA5C7,\n\t12488 - 11905: 0xA5C8,\n\t12489 - 11905: 0xA5C9,\n\t12490 - 11905: 0xA5CA,\n\t12491 - 11905: 0xA5CB,\n\t12492 - 11905: 0xA5CC,\n\t12493 - 11905: 0xA5CD,\n\t12494 - 11905: 0xA5CE,\n\t12495 - 11905: 0xA5CF,\n\t12496 - 11905: 0xA5D0,\n\t12497 - 11905: 0xA5D1,\n\t12498 - 11905: 0xA5D2,\n\t12499 - 11905: 0xA5D3,\n\t12500 - 11905: 0xA5D4,\n\t12501 - 11905: 0xA5D5,\n\t12502 - 11905: 0xA5D6,\n\t12503 - 11905: 0xA5D7,\n\t12504 - 11905: 0xA5D8,\n\t12505 - 11905: 0xA5D9,\n\t12506 - 11905: 0xA5DA,\n\t12507 - 11905: 0xA5DB,\n\t12508 - 11905: 0xA5DC,\n\t12509 - 11905: 0xA5DD,\n\t12510 - 11905: 0xA5DE,\n\t12511 - 11905: 0xA5DF,\n\t12512 - 11905: 0xA5E0,\n\t12513 - 11905: 0xA5E1,\n\t12514 - 11905: 0xA5E2,\n\t12515 - 11905: 0xA5E3,\n\t12516 - 11905: 0xA5E4,\n\t12517 - 11905: 0xA5E5,\n\t12518 - 11905: 0xA5E6,\n\t12519 - 11905: 0xA5E7,\n\t12520 - 11905: 0xA5E8,\n\t12521 - 11905: 0xA5E9,\n\t12522 - 11905: 0xA5EA,\n\t12523 - 11905: 0xA5EB,\n\t12524 - 11905: 0xA5EC,\n\t12525 - 11905: 0xA5ED,\n\t12526 - 11905: 0xA5EE,\n\t12527 - 11905: 0xA5EF,\n\t12528 - 11905: 0xA5F0,\n\t12529 - 11905: 0xA5F1,\n\t12530 - 11905: 0xA5F2,\n\t12531 - 11905: 0xA5F3,\n\t12532 - 11905: 0xA5F4,\n\t12533 - 11905: 0xA5F5,\n\t12534 - 11905: 0xA5F6,\n\t12540 - 11905: 0xA960,\n\t12541 - 11905: 0xA963,\n\t12542 - 11905: 0xA964,\n\t12549 - 11905: 0xA8C5,\n\t12550 - 11905: 0xA8C6,\n\t12551 - 11905: 0xA8C7,\n\t12552 - 11905: 0xA8C8,\n\t12553 - 11905: 0xA8C9,\n\t12554 - 11905: 0xA8CA,\n\t12555 - 11905: 0xA8CB,\n\t12556 - 11905: 0xA8CC,\n\t12557 - 11905: 0xA8CD,\n\t12558 - 11905: 0xA8CE,\n\t12559 - 11905: 0xA8CF,\n\t12560 - 11905: 0xA8D0,\n\t12561 - 11905: 0xA8D1,\n\t12562 - 11905: 0xA8D2,\n\t12563 - 11905: 0xA8D3,\n\t12564 - 11905: 0xA8D4,\n\t12565 - 11905: 0xA8D5,\n\t12566 - 11905: 0xA8D6,\n\t12567 - 11905: 0xA8D7,\n\t12568 - 11905: 0xA8D8,\n\t12569 - 11905: 0xA8D9,\n\t12570 - 11905: 0xA8DA,\n\t12571 - 11905: 0xA8DB,\n\t12572 - 11905: 0xA8DC,\n\t12573 - 11905: 0xA8DD,\n\t12574 - 11905: 0xA8DE,\n\t12575 - 11905: 0xA8DF,\n\t12576 - 11905: 0xA8E0,\n\t12577 - 11905: 0xA8E1,\n\t12578 - 11905: 0xA8E2,\n\t12579 - 11905: 0xA8E3,\n\t12580 - 11905: 0xA8E4,\n\t12581 - 11905: 0xA8E5,\n\t12582 - 11905: 0xA8E6,\n\t12583 - 11905: 0xA8E7,\n\t12584 - 11905: 0xA8E8,\n\t12585 - 11905: 0xA8E9,\n\t12832 - 11905: 0xA2E5,\n\t12833 - 11905: 0xA2E6,\n\t12834 - 11905: 0xA2E7,\n\t12835 - 11905: 0xA2E8,\n\t12836 - 11905: 0xA2E9,\n\t12837 - 11905: 0xA2EA,\n\t12838 - 11905: 0xA2EB,\n\t12839 - 11905: 0xA2EC,\n\t12840 - 11905: 0xA2ED,\n\t12841 - 11905: 0xA2EE,\n\t12849 - 11905: 0xA95A,\n\t12963 - 11905: 0xA949,\n\t13198 - 11905: 0xA94A,\n\t13199 - 11905: 0xA94B,\n\t13212 - 11905: 0xA94C,\n\t13213 - 11905: 0xA94D,\n\t13214 - 11905: 0xA94E,\n\t13217 - 11905: 0xA94F,\n\t13252 - 11905: 0xA950,\n\t13262 - 11905: 0xA951,\n\t13265 - 11905: 0xA952,\n\t13266 - 11905: 0xA953,\n\t13269 - 11905: 0xA954,\n\t13383 - 11905: 0xFE56,\n\t13427 - 11905: 0xFE55,\n\t13726 - 11905: 0xFE5A,\n\t13838 - 11905: 0xFE5C,\n\t13850 - 11905: 0xFE5B,\n\t14616 - 11905: 0xFE60,\n\t14702 - 11905: 0xFE5F,\n\t14799 - 11905: 0xFE62,\n\t14800 - 11905: 0xFE65,\n\t14815 - 11905: 0xFE63,\n\t14963 - 11905: 0xFE64,\n\t15182 - 11905: 0xFE68,\n\t15470 - 11905: 0xFE69,\n\t15584 - 11905: 0xFE6A,\n\t16470 - 11905: 0xFE6F,\n\t16735 - 11905: 0xFE70,\n\t17207 - 11905: 0xFE72,\n\t17324 - 11905: 0xFE78,\n\t17329 - 11905: 0xFE77,\n\t17373 - 11905: 0xFE7A,\n\t17622 - 11905: 0xFE7B,\n\t17996 - 11905: 0xFE7D,\n\t18017 - 11905: 0xFE7C,\n\t18211 - 11905: 0xFE80,\n\t18217 - 11905: 0xFE81,\n\t18300 - 11905: 0xFE82,\n\t18317 - 11905: 0xFE83,\n\t18759 - 11905: 0xFE85,\n\t18810 - 11905: 0xFE86,\n\t18813 - 11905: 0xFE87,\n\t18818 - 11905: 0xFE88,\n\t18819 - 11905: 0xFE89,\n\t18821 - 11905: 0xFE8A,\n\t18822 - 11905: 0xFE8B,\n\t18843 - 11905: 0xFE8D,\n\t18847 - 11905: 0xFE8C,\n\t18870 - 11905: 0xFE8F,\n\t18871 - 11905: 0xFE8E,\n\t19575 - 11905: 0xFE96,\n\t19615 - 11905: 0xFE93,\n\t19616 - 11905: 0xFE94,\n\t19617 - 11905: 0xFE95,\n\t19618 - 11905: 0xFE97,\n\t19619 - 11905: 0xFE92,\n\t19731 - 11905: 0xFE98,\n\t19732 - 11905: 0xFE99,\n\t19733 - 11905: 0xFE9A,\n\t19734 - 11905: 0xFE9B,\n\t19735 - 11905: 0xFE9C,\n\t19736 - 11905: 0xFE9D,\n\t19737 - 11905: 0xFE9E,\n\t19886 - 11905: 0xFE9F,\n\t19968 - 11905: 0xD2BB,\n\t19969 - 11905: 0xB6A1,\n\t19970 - 11905: 0x8140,\n\t19971 - 11905: 0xC6DF,\n\t19972 - 11905: 0x8141,\n\t19973 - 11905: 0x8142,\n\t19974 - 11905: 0x8143,\n\t19975 - 11905: 0xCDF2,\n\t19976 - 11905: 0xD5C9,\n\t19977 - 11905: 0xC8FD,\n\t19978 - 11905: 0xC9CF,\n\t19979 - 11905: 0xCFC2,\n\t19980 - 11905: 0xD8A2,\n\t19981 - 11905: 0xB2BB,\n\t19982 - 11905: 0xD3EB,\n\t19983 - 11905: 0x8144,\n\t19984 - 11905: 0xD8A4,\n\t19985 - 11905: 0xB3F3,\n\t19986 - 11905: 0x8145,\n\t19987 - 11905: 0xD7A8,\n\t19988 - 11905: 0xC7D2,\n\t19989 - 11905: 0xD8A7,\n\t19990 - 11905: 0xCAC0,\n\t19991 - 11905: 0x8146,\n\t19992 - 11905: 0xC7F0,\n\t19993 - 11905: 0xB1FB,\n\t19994 - 11905: 0xD2B5,\n\t19995 - 11905: 0xB4D4,\n\t19996 - 11905: 0xB6AB,\n\t19997 - 11905: 0xCBBF,\n\t19998 - 11905: 0xD8A9,\n\t19999 - 11905: 0x8147,\n\t20000 - 11905: 0x8148,\n\t20001 - 11905: 0x8149,\n\t20002 - 11905: 0xB6AA,\n\t20003 - 11905: 0x814A,\n\t20004 - 11905: 0xC1BD,\n\t20005 - 11905: 0xD1CF,\n\t20006 - 11905: 0x814B,\n\t20007 - 11905: 0xC9A5,\n\t20008 - 11905: 0xD8AD,\n\t20009 - 11905: 0x814C,\n\t20010 - 11905: 0xB8F6,\n\t20011 - 11905: 0xD1BE,\n\t20012 - 11905: 0xE3DC,\n\t20013 - 11905: 0xD6D0,\n\t20014 - 11905: 0x814D,\n\t20015 - 11905: 0x814E,\n\t20016 - 11905: 0xB7E1,\n\t20017 - 11905: 0x814F,\n\t20018 - 11905: 0xB4AE,\n\t20019 - 11905: 0x8150,\n\t20020 - 11905: 0xC1D9,\n\t20021 - 11905: 0x8151,\n\t20022 - 11905: 0xD8BC,\n\t20023 - 11905: 0x8152,\n\t20024 - 11905: 0xCDE8,\n\t20025 - 11905: 0xB5A4,\n\t20026 - 11905: 0xCEAA,\n\t20027 - 11905: 0xD6F7,\n\t20028 - 11905: 0x8153,\n\t20029 - 11905: 0xC0F6,\n\t20030 - 11905: 0xBED9,\n\t20031 - 11905: 0xD8AF,\n\t20032 - 11905: 0x8154,\n\t20033 - 11905: 0x8155,\n\t20034 - 11905: 0x8156,\n\t20035 - 11905: 0xC4CB,\n\t20036 - 11905: 0x8157,\n\t20037 - 11905: 0xBEC3,\n\t20038 - 11905: 0x8158,\n\t20039 - 11905: 0xD8B1,\n\t20040 - 11905: 0xC3B4,\n\t20041 - 11905: 0xD2E5,\n\t20042 - 11905: 0x8159,\n\t20043 - 11905: 0xD6AE,\n\t20044 - 11905: 0xCEDA,\n\t20045 - 11905: 0xD5A7,\n\t20046 - 11905: 0xBAF5,\n\t20047 - 11905: 0xB7A6,\n\t20048 - 11905: 0xC0D6,\n\t20049 - 11905: 0x815A,\n\t20050 - 11905: 0xC6B9,\n\t20051 - 11905: 0xC5D2,\n\t20052 - 11905: 0xC7C7,\n\t20053 - 11905: 0x815B,\n\t20054 - 11905: 0xB9D4,\n\t20055 - 11905: 0x815C,\n\t20056 - 11905: 0xB3CB,\n\t20057 - 11905: 0xD2D2,\n\t20058 - 11905: 0x815D,\n\t20059 - 11905: 0x815E,\n\t20060 - 11905: 0xD8BF,\n\t20061 - 11905: 0xBEC5,\n\t20062 - 11905: 0xC6F2,\n\t20063 - 11905: 0xD2B2,\n\t20064 - 11905: 0xCFB0,\n\t20065 - 11905: 0xCFE7,\n\t20066 - 11905: 0x815F,\n\t20067 - 11905: 0x8160,\n\t20068 - 11905: 0x8161,\n\t20069 - 11905: 0x8162,\n\t20070 - 11905: 0xCAE9,\n\t20071 - 11905: 0x8163,\n\t20072 - 11905: 0x8164,\n\t20073 - 11905: 0xD8C0,\n\t20074 - 11905: 0x8165,\n\t20075 - 11905: 0x8166,\n\t20076 - 11905: 0x8167,\n\t20077 - 11905: 0x8168,\n\t20078 - 11905: 0x8169,\n\t20079 - 11905: 0x816A,\n\t20080 - 11905: 0xC2F2,\n\t20081 - 11905: 0xC2D2,\n\t20082 - 11905: 0x816B,\n\t20083 - 11905: 0xC8E9,\n\t20084 - 11905: 0x816C,\n\t20085 - 11905: 0x816D,\n\t20086 - 11905: 0x816E,\n\t20087 - 11905: 0x816F,\n\t20088 - 11905: 0x8170,\n\t20089 - 11905: 0x8171,\n\t20090 - 11905: 0x8172,\n\t20091 - 11905: 0x8173,\n\t20092 - 11905: 0x8174,\n\t20093 - 11905: 0x8175,\n\t20094 - 11905: 0xC7AC,\n\t20095 - 11905: 0x8176,\n\t20096 - 11905: 0x8177,\n\t20097 - 11905: 0x8178,\n\t20098 - 11905: 0x8179,\n\t20099 - 11905: 0x817A,\n\t20100 - 11905: 0x817B,\n\t20101 - 11905: 0x817C,\n\t20102 - 11905: 0xC1CB,\n\t20103 - 11905: 0x817D,\n\t20104 - 11905: 0xD3E8,\n\t20105 - 11905: 0xD5F9,\n\t20106 - 11905: 0x817E,\n\t20107 - 11905: 0xCAC2,\n\t20108 - 11905: 0xB6FE,\n\t20109 - 11905: 0xD8A1,\n\t20110 - 11905: 0xD3DA,\n\t20111 - 11905: 0xBFF7,\n\t20112 - 11905: 0x8180,\n\t20113 - 11905: 0xD4C6,\n\t20114 - 11905: 0xBBA5,\n\t20115 - 11905: 0xD8C1,\n\t20116 - 11905: 0xCEE5,\n\t20117 - 11905: 0xBEAE,\n\t20118 - 11905: 0x8181,\n\t20119 - 11905: 0x8182,\n\t20120 - 11905: 0xD8A8,\n\t20121 - 11905: 0x8183,\n\t20122 - 11905: 0xD1C7,\n\t20123 - 11905: 0xD0A9,\n\t20124 - 11905: 0x8184,\n\t20125 - 11905: 0x8185,\n\t20126 - 11905: 0x8186,\n\t20127 - 11905: 0xD8BD,\n\t20128 - 11905: 0xD9EF,\n\t20129 - 11905: 0xCDF6,\n\t20130 - 11905: 0xBFBA,\n\t20131 - 11905: 0x8187,\n\t20132 - 11905: 0xBDBB,\n\t20133 - 11905: 0xBAA5,\n\t20134 - 11905: 0xD2E0,\n\t20135 - 11905: 0xB2FA,\n\t20136 - 11905: 0xBAE0,\n\t20137 - 11905: 0xC4B6,\n\t20138 - 11905: 0x8188,\n\t20139 - 11905: 0xCFED,\n\t20140 - 11905: 0xBEA9,\n\t20141 - 11905: 0xCDA4,\n\t20142 - 11905: 0xC1C1,\n\t20143 - 11905: 0x8189,\n\t20144 - 11905: 0x818A,\n\t20145 - 11905: 0x818B,\n\t20146 - 11905: 0xC7D7,\n\t20147 - 11905: 0xD9F1,\n\t20148 - 11905: 0x818C,\n\t20149 - 11905: 0xD9F4,\n\t20150 - 11905: 0x818D,\n\t20151 - 11905: 0x818E,\n\t20152 - 11905: 0x818F,\n\t20153 - 11905: 0x8190,\n\t20154 - 11905: 0xC8CB,\n\t20155 - 11905: 0xD8E9,\n\t20156 - 11905: 0x8191,\n\t20157 - 11905: 0x8192,\n\t20158 - 11905: 0x8193,\n\t20159 - 11905: 0xD2DA,\n\t20160 - 11905: 0xCAB2,\n\t20161 - 11905: 0xC8CA,\n\t20162 - 11905: 0xD8EC,\n\t20163 - 11905: 0xD8EA,\n\t20164 - 11905: 0xD8C6,\n\t20165 - 11905: 0xBDF6,\n\t20166 - 11905: 0xC6CD,\n\t20167 - 11905: 0xB3F0,\n\t20168 - 11905: 0x8194,\n\t20169 - 11905: 0xD8EB,\n\t20170 - 11905: 0xBDF1,\n\t20171 - 11905: 0xBDE9,\n\t20172 - 11905: 0x8195,\n\t20173 - 11905: 0xC8D4,\n\t20174 - 11905: 0xB4D3,\n\t20175 - 11905: 0x8196,\n\t20176 - 11905: 0x8197,\n\t20177 - 11905: 0xC2D8,\n\t20178 - 11905: 0x8198,\n\t20179 - 11905: 0xB2D6,\n\t20180 - 11905: 0xD7D0,\n\t20181 - 11905: 0xCACB,\n\t20182 - 11905: 0xCBFB,\n\t20183 - 11905: 0xD5CC,\n\t20184 - 11905: 0xB8B6,\n\t20185 - 11905: 0xCFC9,\n\t20186 - 11905: 0x8199,\n\t20187 - 11905: 0x819A,\n\t20188 - 11905: 0x819B,\n\t20189 - 11905: 0xD9DA,\n\t20190 - 11905: 0xD8F0,\n\t20191 - 11905: 0xC7AA,\n\t20192 - 11905: 0x819C,\n\t20193 - 11905: 0xD8EE,\n\t20194 - 11905: 0x819D,\n\t20195 - 11905: 0xB4FA,\n\t20196 - 11905: 0xC1EE,\n\t20197 - 11905: 0xD2D4,\n\t20198 - 11905: 0x819E,\n\t20199 - 11905: 0x819F,\n\t20200 - 11905: 0xD8ED,\n\t20201 - 11905: 0x81A0,\n\t20202 - 11905: 0xD2C7,\n\t20203 - 11905: 0xD8EF,\n\t20204 - 11905: 0xC3C7,\n\t20205 - 11905: 0x81A1,\n\t20206 - 11905: 0x81A2,\n\t20207 - 11905: 0x81A3,\n\t20208 - 11905: 0xD1F6,\n\t20209 - 11905: 0x81A4,\n\t20210 - 11905: 0xD6D9,\n\t20211 - 11905: 0xD8F2,\n\t20212 - 11905: 0x81A5,\n\t20213 - 11905: 0xD8F5,\n\t20214 - 11905: 0xBCFE,\n\t20215 - 11905: 0xBCDB,\n\t20216 - 11905: 0x81A6,\n\t20217 - 11905: 0x81A7,\n\t20218 - 11905: 0x81A8,\n\t20219 - 11905: 0xC8CE,\n\t20220 - 11905: 0x81A9,\n\t20221 - 11905: 0xB7DD,\n\t20222 - 11905: 0x81AA,\n\t20223 - 11905: 0xB7C2,\n\t20224 - 11905: 0x81AB,\n\t20225 - 11905: 0xC6F3,\n\t20226 - 11905: 0x81AC,\n\t20227 - 11905: 0x81AD,\n\t20228 - 11905: 0x81AE,\n\t20229 - 11905: 0x81AF,\n\t20230 - 11905: 0x81B0,\n\t20231 - 11905: 0x81B1,\n\t20232 - 11905: 0x81B2,\n\t20233 - 11905: 0xD8F8,\n\t20234 - 11905: 0xD2C1,\n\t20235 - 11905: 0x81B3,\n\t20236 - 11905: 0x81B4,\n\t20237 - 11905: 0xCEE9,\n\t20238 - 11905: 0xBCBF,\n\t20239 - 11905: 0xB7FC,\n\t20240 - 11905: 0xB7A5,\n\t20241 - 11905: 0xD0DD,\n\t20242 - 11905: 0x81B5,\n\t20243 - 11905: 0x81B6,\n\t20244 - 11905: 0x81B7,\n\t20245 - 11905: 0x81B8,\n\t20246 - 11905: 0x81B9,\n\t20247 - 11905: 0xD6DA,\n\t20248 - 11905: 0xD3C5,\n\t20249 - 11905: 0xBBEF,\n\t20250 - 11905: 0xBBE1,\n\t20251 - 11905: 0xD8F1,\n\t20252 - 11905: 0x81BA,\n\t20253 - 11905: 0x81BB,\n\t20254 - 11905: 0xC9A1,\n\t20255 - 11905: 0xCEB0,\n\t20256 - 11905: 0xB4AB,\n\t20257 - 11905: 0x81BC,\n\t20258 - 11905: 0xD8F3,\n\t20259 - 11905: 0x81BD,\n\t20260 - 11905: 0xC9CB,\n\t20261 - 11905: 0xD8F6,\n\t20262 - 11905: 0xC2D7,\n\t20263 - 11905: 0xD8F7,\n\t20264 - 11905: 0x81BE,\n\t20265 - 11905: 0x81BF,\n\t20266 - 11905: 0xCEB1,\n\t20267 - 11905: 0xD8F9,\n\t20268 - 11905: 0x81C0,\n\t20269 - 11905: 0x81C1,\n\t20270 - 11905: 0x81C2,\n\t20271 - 11905: 0xB2AE,\n\t20272 - 11905: 0xB9C0,\n\t20273 - 11905: 0x81C3,\n\t20274 - 11905: 0xD9A3,\n\t20275 - 11905: 0x81C4,\n\t20276 - 11905: 0xB0E9,\n\t20277 - 11905: 0x81C5,\n\t20278 - 11905: 0xC1E6,\n\t20279 - 11905: 0x81C6,\n\t20280 - 11905: 0xC9EC,\n\t20281 - 11905: 0x81C7,\n\t20282 - 11905: 0xCBC5,\n\t20283 - 11905: 0x81C8,\n\t20284 - 11905: 0xCBC6,\n\t20285 - 11905: 0xD9A4,\n\t20286 - 11905: 0x81C9,\n\t20287 - 11905: 0x81CA,\n\t20288 - 11905: 0x81CB,\n\t20289 - 11905: 0x81CC,\n\t20290 - 11905: 0x81CD,\n\t20291 - 11905: 0xB5E8,\n\t20292 - 11905: 0x81CE,\n\t20293 - 11905: 0x81CF,\n\t20294 - 11905: 0xB5AB,\n\t20295 - 11905: 0x81D0,\n\t20296 - 11905: 0x81D1,\n\t20297 - 11905: 0x81D2,\n\t20298 - 11905: 0x81D3,\n\t20299 - 11905: 0x81D4,\n\t20300 - 11905: 0x81D5,\n\t20301 - 11905: 0xCEBB,\n\t20302 - 11905: 0xB5CD,\n\t20303 - 11905: 0xD7A1,\n\t20304 - 11905: 0xD7F4,\n\t20305 - 11905: 0xD3D3,\n\t20306 - 11905: 0x81D6,\n\t20307 - 11905: 0xCCE5,\n\t20308 - 11905: 0x81D7,\n\t20309 - 11905: 0xBACE,\n\t20310 - 11905: 0x81D8,\n\t20311 - 11905: 0xD9A2,\n\t20312 - 11905: 0xD9DC,\n\t20313 - 11905: 0xD3E0,\n\t20314 - 11905: 0xD8FD,\n\t20315 - 11905: 0xB7F0,\n\t20316 - 11905: 0xD7F7,\n\t20317 - 11905: 0xD8FE,\n\t20318 - 11905: 0xD8FA,\n\t20319 - 11905: 0xD9A1,\n\t20320 - 11905: 0xC4E3,\n\t20321 - 11905: 0x81D9,\n\t20322 - 11905: 0x81DA,\n\t20323 - 11905: 0xD3B6,\n\t20324 - 11905: 0xD8F4,\n\t20325 - 11905: 0xD9DD,\n\t20326 - 11905: 0x81DB,\n\t20327 - 11905: 0xD8FB,\n\t20328 - 11905: 0x81DC,\n\t20329 - 11905: 0xC5E5,\n\t20330 - 11905: 0x81DD,\n\t20331 - 11905: 0x81DE,\n\t20332 - 11905: 0xC0D0,\n\t20333 - 11905: 0x81DF,\n\t20334 - 11905: 0x81E0,\n\t20335 - 11905: 0xD1F0,\n\t20336 - 11905: 0xB0DB,\n\t20337 - 11905: 0x81E1,\n\t20338 - 11905: 0x81E2,\n\t20339 - 11905: 0xBCD1,\n\t20340 - 11905: 0xD9A6,\n\t20341 - 11905: 0x81E3,\n\t20342 - 11905: 0xD9A5,\n\t20343 - 11905: 0x81E4,\n\t20344 - 11905: 0x81E5,\n\t20345 - 11905: 0x81E6,\n\t20346 - 11905: 0x81E7,\n\t20347 - 11905: 0xD9AC,\n\t20348 - 11905: 0xD9AE,\n\t20349 - 11905: 0x81E8,\n\t20350 - 11905: 0xD9AB,\n\t20351 - 11905: 0xCAB9,\n\t20352 - 11905: 0x81E9,\n\t20353 - 11905: 0x81EA,\n\t20354 - 11905: 0x81EB,\n\t20355 - 11905: 0xD9A9,\n\t20356 - 11905: 0xD6B6,\n\t20357 - 11905: 0x81EC,\n\t20358 - 11905: 0x81ED,\n\t20359 - 11905: 0x81EE,\n\t20360 - 11905: 0xB3DE,\n\t20361 - 11905: 0xD9A8,\n\t20362 - 11905: 0x81EF,\n\t20363 - 11905: 0xC0FD,\n\t20364 - 11905: 0x81F0,\n\t20365 - 11905: 0xCACC,\n\t20366 - 11905: 0x81F1,\n\t20367 - 11905: 0xD9AA,\n\t20368 - 11905: 0x81F2,\n\t20369 - 11905: 0xD9A7,\n\t20370 - 11905: 0x81F3,\n\t20371 - 11905: 0x81F4,\n\t20372 - 11905: 0xD9B0,\n\t20373 - 11905: 0x81F5,\n\t20374 - 11905: 0x81F6,\n\t20375 - 11905: 0xB6B1,\n\t20376 - 11905: 0x81F7,\n\t20377 - 11905: 0x81F8,\n\t20378 - 11905: 0x81F9,\n\t20379 - 11905: 0xB9A9,\n\t20380 - 11905: 0x81FA,\n\t20381 - 11905: 0xD2C0,\n\t20382 - 11905: 0x81FB,\n\t20383 - 11905: 0x81FC,\n\t20384 - 11905: 0xCFC0,\n\t20385 - 11905: 0x81FD,\n\t20386 - 11905: 0x81FE,\n\t20387 - 11905: 0xC2C2,\n\t20388 - 11905: 0x8240,\n\t20389 - 11905: 0xBDC4,\n\t20390 - 11905: 0xD5EC,\n\t20391 - 11905: 0xB2E0,\n\t20392 - 11905: 0xC7C8,\n\t20393 - 11905: 0xBFEB,\n\t20394 - 11905: 0xD9AD,\n\t20395 - 11905: 0x8241,\n\t20396 - 11905: 0xD9AF,\n\t20397 - 11905: 0x8242,\n\t20398 - 11905: 0xCEEA,\n\t20399 - 11905: 0xBAEE,\n\t20400 - 11905: 0x8243,\n\t20401 - 11905: 0x8244,\n\t20402 - 11905: 0x8245,\n\t20403 - 11905: 0x8246,\n\t20404 - 11905: 0x8247,\n\t20405 - 11905: 0xC7D6,\n\t20406 - 11905: 0x8248,\n\t20407 - 11905: 0x8249,\n\t20408 - 11905: 0x824A,\n\t20409 - 11905: 0x824B,\n\t20410 - 11905: 0x824C,\n\t20411 - 11905: 0x824D,\n\t20412 - 11905: 0x824E,\n\t20413 - 11905: 0x824F,\n\t20414 - 11905: 0x8250,\n\t20415 - 11905: 0xB1E3,\n\t20416 - 11905: 0x8251,\n\t20417 - 11905: 0x8252,\n\t20418 - 11905: 0x8253,\n\t20419 - 11905: 0xB4D9,\n\t20420 - 11905: 0xB6ED,\n\t20421 - 11905: 0xD9B4,\n\t20422 - 11905: 0x8254,\n\t20423 - 11905: 0x8255,\n\t20424 - 11905: 0x8256,\n\t20425 - 11905: 0x8257,\n\t20426 - 11905: 0xBFA1,\n\t20427 - 11905: 0x8258,\n\t20428 - 11905: 0x8259,\n\t20429 - 11905: 0x825A,\n\t20430 - 11905: 0xD9DE,\n\t20431 - 11905: 0xC7CE,\n\t20432 - 11905: 0xC0FE,\n\t20433 - 11905: 0xD9B8,\n\t20434 - 11905: 0x825B,\n\t20435 - 11905: 0x825C,\n\t20436 - 11905: 0x825D,\n\t20437 - 11905: 0x825E,\n\t20438 - 11905: 0x825F,\n\t20439 - 11905: 0xCBD7,\n\t20440 - 11905: 0xB7FD,\n\t20441 - 11905: 0x8260,\n\t20442 - 11905: 0xD9B5,\n\t20443 - 11905: 0x8261,\n\t20444 - 11905: 0xD9B7,\n\t20445 - 11905: 0xB1A3,\n\t20446 - 11905: 0xD3E1,\n\t20447 - 11905: 0xD9B9,\n\t20448 - 11905: 0x8262,\n\t20449 - 11905: 0xD0C5,\n\t20450 - 11905: 0x8263,\n\t20451 - 11905: 0xD9B6,\n\t20452 - 11905: 0x8264,\n\t20453 - 11905: 0x8265,\n\t20454 - 11905: 0xD9B1,\n\t20455 - 11905: 0x8266,\n\t20456 - 11905: 0xD9B2,\n\t20457 - 11905: 0xC1A9,\n\t20458 - 11905: 0xD9B3,\n\t20459 - 11905: 0x8267,\n\t20460 - 11905: 0x8268,\n\t20461 - 11905: 0xBCF3,\n\t20462 - 11905: 0xD0DE,\n\t20463 - 11905: 0xB8A9,\n\t20464 - 11905: 0x8269,\n\t20465 - 11905: 0xBEE3,\n\t20466 - 11905: 0x826A,\n\t20467 - 11905: 0xD9BD,\n\t20468 - 11905: 0x826B,\n\t20469 - 11905: 0x826C,\n\t20470 - 11905: 0x826D,\n\t20471 - 11905: 0x826E,\n\t20472 - 11905: 0xD9BA,\n\t20473 - 11905: 0x826F,\n\t20474 - 11905: 0xB0B3,\n\t20475 - 11905: 0x8270,\n\t20476 - 11905: 0x8271,\n\t20477 - 11905: 0x8272,\n\t20478 - 11905: 0xD9C2,\n\t20479 - 11905: 0x8273,\n\t20480 - 11905: 0x8274,\n\t20481 - 11905: 0x8275,\n\t20482 - 11905: 0x8276,\n\t20483 - 11905: 0x8277,\n\t20484 - 11905: 0x8278,\n\t20485 - 11905: 0x8279,\n\t20486 - 11905: 0x827A,\n\t20487 - 11905: 0x827B,\n\t20488 - 11905: 0x827C,\n\t20489 - 11905: 0x827D,\n\t20490 - 11905: 0x827E,\n\t20491 - 11905: 0x8280,\n\t20492 - 11905: 0xD9C4,\n\t20493 - 11905: 0xB1B6,\n\t20494 - 11905: 0x8281,\n\t20495 - 11905: 0xD9BF,\n\t20496 - 11905: 0x8282,\n\t20497 - 11905: 0x8283,\n\t20498 - 11905: 0xB5B9,\n\t20499 - 11905: 0x8284,\n\t20500 - 11905: 0xBEF3,\n\t20501 - 11905: 0x8285,\n\t20502 - 11905: 0x8286,\n\t20503 - 11905: 0x8287,\n\t20504 - 11905: 0xCCC8,\n\t20505 - 11905: 0xBAF2,\n\t20506 - 11905: 0xD2D0,\n\t20507 - 11905: 0x8288,\n\t20508 - 11905: 0xD9C3,\n\t20509 - 11905: 0x8289,\n\t20510 - 11905: 0x828A,\n\t20511 - 11905: 0xBDE8,\n\t20512 - 11905: 0x828B,\n\t20513 - 11905: 0xB3AB,\n\t20514 - 11905: 0x828C,\n\t20515 - 11905: 0x828D,\n\t20516 - 11905: 0x828E,\n\t20517 - 11905: 0xD9C5,\n\t20518 - 11905: 0xBEEB,\n\t20519 - 11905: 0x828F,\n\t20520 - 11905: 0xD9C6,\n\t20521 - 11905: 0xD9BB,\n\t20522 - 11905: 0xC4DF,\n\t20523 - 11905: 0x8290,\n\t20524 - 11905: 0xD9BE,\n\t20525 - 11905: 0xD9C1,\n\t20526 - 11905: 0xD9C0,\n\t20527 - 11905: 0x8291,\n\t20528 - 11905: 0x8292,\n\t20529 - 11905: 0x8293,\n\t20530 - 11905: 0x8294,\n\t20531 - 11905: 0x8295,\n\t20532 - 11905: 0x8296,\n\t20533 - 11905: 0x8297,\n\t20534 - 11905: 0x8298,\n\t20535 - 11905: 0x8299,\n\t20536 - 11905: 0x829A,\n\t20537 - 11905: 0x829B,\n\t20538 - 11905: 0xD5AE,\n\t20539 - 11905: 0x829C,\n\t20540 - 11905: 0xD6B5,\n\t20541 - 11905: 0x829D,\n\t20542 - 11905: 0xC7E3,\n\t20543 - 11905: 0x829E,\n\t20544 - 11905: 0x829F,\n\t20545 - 11905: 0x82A0,\n\t20546 - 11905: 0x82A1,\n\t20547 - 11905: 0xD9C8,\n\t20548 - 11905: 0x82A2,\n\t20549 - 11905: 0x82A3,\n\t20550 - 11905: 0x82A4,\n\t20551 - 11905: 0xBCD9,\n\t20552 - 11905: 0xD9CA,\n\t20553 - 11905: 0x82A5,\n\t20554 - 11905: 0x82A6,\n\t20555 - 11905: 0x82A7,\n\t20556 - 11905: 0xD9BC,\n\t20557 - 11905: 0x82A8,\n\t20558 - 11905: 0xD9CB,\n\t20559 - 11905: 0xC6AB,\n\t20560 - 11905: 0x82A9,\n\t20561 - 11905: 0x82AA,\n\t20562 - 11905: 0x82AB,\n\t20563 - 11905: 0x82AC,\n\t20564 - 11905: 0x82AD,\n\t20565 - 11905: 0xD9C9,\n\t20566 - 11905: 0x82AE,\n\t20567 - 11905: 0x82AF,\n\t20568 - 11905: 0x82B0,\n\t20569 - 11905: 0x82B1,\n\t20570 - 11905: 0xD7F6,\n\t20571 - 11905: 0x82B2,\n\t20572 - 11905: 0xCDA3,\n\t20573 - 11905: 0x82B3,\n\t20574 - 11905: 0x82B4,\n\t20575 - 11905: 0x82B5,\n\t20576 - 11905: 0x82B6,\n\t20577 - 11905: 0x82B7,\n\t20578 - 11905: 0x82B8,\n\t20579 - 11905: 0x82B9,\n\t20580 - 11905: 0x82BA,\n\t20581 - 11905: 0xBDA1,\n\t20582 - 11905: 0x82BB,\n\t20583 - 11905: 0x82BC,\n\t20584 - 11905: 0x82BD,\n\t20585 - 11905: 0x82BE,\n\t20586 - 11905: 0x82BF,\n\t20587 - 11905: 0x82C0,\n\t20588 - 11905: 0xD9CC,\n\t20589 - 11905: 0x82C1,\n\t20590 - 11905: 0x82C2,\n\t20591 - 11905: 0x82C3,\n\t20592 - 11905: 0x82C4,\n\t20593 - 11905: 0x82C5,\n\t20594 - 11905: 0x82C6,\n\t20595 - 11905: 0x82C7,\n\t20596 - 11905: 0x82C8,\n\t20597 - 11905: 0x82C9,\n\t20598 - 11905: 0xC5BC,\n\t20599 - 11905: 0xCDB5,\n\t20600 - 11905: 0x82CA,\n\t20601 - 11905: 0x82CB,\n\t20602 - 11905: 0x82CC,\n\t20603 - 11905: 0xD9CD,\n\t20604 - 11905: 0x82CD,\n\t20605 - 11905: 0x82CE,\n\t20606 - 11905: 0xD9C7,\n\t20607 - 11905: 0xB3A5,\n\t20608 - 11905: 0xBFFE,\n\t20609 - 11905: 0x82CF,\n\t20610 - 11905: 0x82D0,\n\t20611 - 11905: 0x82D1,\n\t20612 - 11905: 0x82D2,\n\t20613 - 11905: 0xB8B5,\n\t20614 - 11905: 0x82D3,\n\t20615 - 11905: 0x82D4,\n\t20616 - 11905: 0xC0FC,\n\t20617 - 11905: 0x82D5,\n\t20618 - 11905: 0x82D6,\n\t20619 - 11905: 0x82D7,\n\t20620 - 11905: 0x82D8,\n\t20621 - 11905: 0xB0F8,\n\t20622 - 11905: 0x82D9,\n\t20623 - 11905: 0x82DA,\n\t20624 - 11905: 0x82DB,\n\t20625 - 11905: 0x82DC,\n\t20626 - 11905: 0x82DD,\n\t20627 - 11905: 0x82DE,\n\t20628 - 11905: 0x82DF,\n\t20629 - 11905: 0x82E0,\n\t20630 - 11905: 0x82E1,\n\t20631 - 11905: 0x82E2,\n\t20632 - 11905: 0x82E3,\n\t20633 - 11905: 0x82E4,\n\t20634 - 11905: 0x82E5,\n\t20635 - 11905: 0x82E6,\n\t20636 - 11905: 0x82E7,\n\t20637 - 11905: 0x82E8,\n\t20638 - 11905: 0x82E9,\n\t20639 - 11905: 0x82EA,\n\t20640 - 11905: 0x82EB,\n\t20641 - 11905: 0x82EC,\n\t20642 - 11905: 0x82ED,\n\t20643 - 11905: 0xB4F6,\n\t20644 - 11905: 0x82EE,\n\t20645 - 11905: 0xD9CE,\n\t20646 - 11905: 0x82EF,\n\t20647 - 11905: 0xD9CF,\n\t20648 - 11905: 0xB4A2,\n\t20649 - 11905: 0xD9D0,\n\t20650 - 11905: 0x82F0,\n\t20651 - 11905: 0x82F1,\n\t20652 - 11905: 0xB4DF,\n\t20653 - 11905: 0x82F2,\n\t20654 - 11905: 0x82F3,\n\t20655 - 11905: 0x82F4,\n\t20656 - 11905: 0x82F5,\n\t20657 - 11905: 0x82F6,\n\t20658 - 11905: 0xB0C1,\n\t20659 - 11905: 0x82F7,\n\t20660 - 11905: 0x82F8,\n\t20661 - 11905: 0x82F9,\n\t20662 - 11905: 0x82FA,\n\t20663 - 11905: 0x82FB,\n\t20664 - 11905: 0x82FC,\n\t20665 - 11905: 0x82FD,\n\t20666 - 11905: 0xD9D1,\n\t20667 - 11905: 0xC9B5,\n\t20668 - 11905: 0x82FE,\n\t20669 - 11905: 0x8340,\n\t20670 - 11905: 0x8341,\n\t20671 - 11905: 0x8342,\n\t20672 - 11905: 0x8343,\n\t20673 - 11905: 0x8344,\n\t20674 - 11905: 0x8345,\n\t20675 - 11905: 0x8346,\n\t20676 - 11905: 0x8347,\n\t20677 - 11905: 0x8348,\n\t20678 - 11905: 0x8349,\n\t20679 - 11905: 0x834A,\n\t20680 - 11905: 0x834B,\n\t20681 - 11905: 0x834C,\n\t20682 - 11905: 0x834D,\n\t20683 - 11905: 0x834E,\n\t20684 - 11905: 0x834F,\n\t20685 - 11905: 0x8350,\n\t20686 - 11905: 0x8351,\n\t20687 - 11905: 0xCFF1,\n\t20688 - 11905: 0x8352,\n\t20689 - 11905: 0x8353,\n\t20690 - 11905: 0x8354,\n\t20691 - 11905: 0x8355,\n\t20692 - 11905: 0x8356,\n\t20693 - 11905: 0x8357,\n\t20694 - 11905: 0xD9D2,\n\t20695 - 11905: 0x8358,\n\t20696 - 11905: 0x8359,\n\t20697 - 11905: 0x835A,\n\t20698 - 11905: 0xC1C5,\n\t20699 - 11905: 0x835B,\n\t20700 - 11905: 0x835C,\n\t20701 - 11905: 0x835D,\n\t20702 - 11905: 0x835E,\n\t20703 - 11905: 0x835F,\n\t20704 - 11905: 0x8360,\n\t20705 - 11905: 0x8361,\n\t20706 - 11905: 0x8362,\n\t20707 - 11905: 0x8363,\n\t20708 - 11905: 0x8364,\n\t20709 - 11905: 0x8365,\n\t20710 - 11905: 0xD9D6,\n\t20711 - 11905: 0xC9AE,\n\t20712 - 11905: 0x8366,\n\t20713 - 11905: 0x8367,\n\t20714 - 11905: 0x8368,\n\t20715 - 11905: 0x8369,\n\t20716 - 11905: 0xD9D5,\n\t20717 - 11905: 0xD9D4,\n\t20718 - 11905: 0xD9D7,\n\t20719 - 11905: 0x836A,\n\t20720 - 11905: 0x836B,\n\t20721 - 11905: 0x836C,\n\t20722 - 11905: 0x836D,\n\t20723 - 11905: 0xCBDB,\n\t20724 - 11905: 0x836E,\n\t20725 - 11905: 0xBDA9,\n\t20726 - 11905: 0x836F,\n\t20727 - 11905: 0x8370,\n\t20728 - 11905: 0x8371,\n\t20729 - 11905: 0x8372,\n\t20730 - 11905: 0x8373,\n\t20731 - 11905: 0xC6A7,\n\t20732 - 11905: 0x8374,\n\t20733 - 11905: 0x8375,\n\t20734 - 11905: 0x8376,\n\t20735 - 11905: 0x8377,\n\t20736 - 11905: 0x8378,\n\t20737 - 11905: 0x8379,\n\t20738 - 11905: 0x837A,\n\t20739 - 11905: 0x837B,\n\t20740 - 11905: 0x837C,\n\t20741 - 11905: 0x837D,\n\t20742 - 11905: 0xD9D3,\n\t20743 - 11905: 0xD9D8,\n\t20744 - 11905: 0x837E,\n\t20745 - 11905: 0x8380,\n\t20746 - 11905: 0x8381,\n\t20747 - 11905: 0xD9D9,\n\t20748 - 11905: 0x8382,\n\t20749 - 11905: 0x8383,\n\t20750 - 11905: 0x8384,\n\t20751 - 11905: 0x8385,\n\t20752 - 11905: 0x8386,\n\t20753 - 11905: 0x8387,\n\t20754 - 11905: 0xC8E5,\n\t20755 - 11905: 0x8388,\n\t20756 - 11905: 0x8389,\n\t20757 - 11905: 0x838A,\n\t20758 - 11905: 0x838B,\n\t20759 - 11905: 0x838C,\n\t20760 - 11905: 0x838D,\n\t20761 - 11905: 0x838E,\n\t20762 - 11905: 0x838F,\n\t20763 - 11905: 0x8390,\n\t20764 - 11905: 0x8391,\n\t20765 - 11905: 0x8392,\n\t20766 - 11905: 0x8393,\n\t20767 - 11905: 0x8394,\n\t20768 - 11905: 0x8395,\n\t20769 - 11905: 0xC0DC,\n\t20770 - 11905: 0x8396,\n\t20771 - 11905: 0x8397,\n\t20772 - 11905: 0x8398,\n\t20773 - 11905: 0x8399,\n\t20774 - 11905: 0x839A,\n\t20775 - 11905: 0x839B,\n\t20776 - 11905: 0x839C,\n\t20777 - 11905: 0x839D,\n\t20778 - 11905: 0x839E,\n\t20779 - 11905: 0x839F,\n\t20780 - 11905: 0x83A0,\n\t20781 - 11905: 0x83A1,\n\t20782 - 11905: 0x83A2,\n\t20783 - 11905: 0x83A3,\n\t20784 - 11905: 0x83A4,\n\t20785 - 11905: 0x83A5,\n\t20786 - 11905: 0x83A6,\n\t20787 - 11905: 0x83A7,\n\t20788 - 11905: 0x83A8,\n\t20789 - 11905: 0x83A9,\n\t20790 - 11905: 0x83AA,\n\t20791 - 11905: 0x83AB,\n\t20792 - 11905: 0x83AC,\n\t20793 - 11905: 0x83AD,\n\t20794 - 11905: 0x83AE,\n\t20795 - 11905: 0x83AF,\n\t20796 - 11905: 0x83B0,\n\t20797 - 11905: 0x83B1,\n\t20798 - 11905: 0x83B2,\n\t20799 - 11905: 0xB6F9,\n\t20800 - 11905: 0xD8A3,\n\t20801 - 11905: 0xD4CA,\n\t20802 - 11905: 0x83B3,\n\t20803 - 11905: 0xD4AA,\n\t20804 - 11905: 0xD0D6,\n\t20805 - 11905: 0xB3E4,\n\t20806 - 11905: 0xD5D7,\n\t20807 - 11905: 0x83B4,\n\t20808 - 11905: 0xCFC8,\n\t20809 - 11905: 0xB9E2,\n\t20810 - 11905: 0x83B5,\n\t20811 - 11905: 0xBFCB,\n\t20812 - 11905: 0x83B6,\n\t20813 - 11905: 0xC3E2,\n\t20814 - 11905: 0x83B7,\n\t20815 - 11905: 0x83B8,\n\t20816 - 11905: 0x83B9,\n\t20817 - 11905: 0xB6D2,\n\t20818 - 11905: 0x83BA,\n\t20819 - 11905: 0x83BB,\n\t20820 - 11905: 0xCDC3,\n\t20821 - 11905: 0xD9EE,\n\t20822 - 11905: 0xD9F0,\n\t20823 - 11905: 0x83BC,\n\t20824 - 11905: 0x83BD,\n\t20825 - 11905: 0x83BE,\n\t20826 - 11905: 0xB5B3,\n\t20827 - 11905: 0x83BF,\n\t20828 - 11905: 0xB6B5,\n\t20829 - 11905: 0x83C0,\n\t20830 - 11905: 0x83C1,\n\t20831 - 11905: 0x83C2,\n\t20832 - 11905: 0x83C3,\n\t20833 - 11905: 0x83C4,\n\t20834 - 11905: 0xBEA4,\n\t20835 - 11905: 0x83C5,\n\t20836 - 11905: 0x83C6,\n\t20837 - 11905: 0xC8EB,\n\t20838 - 11905: 0x83C7,\n\t20839 - 11905: 0x83C8,\n\t20840 - 11905: 0xC8AB,\n\t20841 - 11905: 0x83C9,\n\t20842 - 11905: 0x83CA,\n\t20843 - 11905: 0xB0CB,\n\t20844 - 11905: 0xB9AB,\n\t20845 - 11905: 0xC1F9,\n\t20846 - 11905: 0xD9E2,\n\t20847 - 11905: 0x83CB,\n\t20848 - 11905: 0xC0BC,\n\t20849 - 11905: 0xB9B2,\n\t20850 - 11905: 0x83CC,\n\t20851 - 11905: 0xB9D8,\n\t20852 - 11905: 0xD0CB,\n\t20853 - 11905: 0xB1F8,\n\t20854 - 11905: 0xC6E4,\n\t20855 - 11905: 0xBEDF,\n\t20856 - 11905: 0xB5E4,\n\t20857 - 11905: 0xD7C8,\n\t20858 - 11905: 0x83CD,\n\t20859 - 11905: 0xD1F8,\n\t20860 - 11905: 0xBCE6,\n\t20861 - 11905: 0xCADE,\n\t20862 - 11905: 0x83CE,\n\t20863 - 11905: 0x83CF,\n\t20864 - 11905: 0xBCBD,\n\t20865 - 11905: 0xD9E6,\n\t20866 - 11905: 0xD8E7,\n\t20867 - 11905: 0x83D0,\n\t20868 - 11905: 0x83D1,\n\t20869 - 11905: 0xC4DA,\n\t20870 - 11905: 0x83D2,\n\t20871 - 11905: 0x83D3,\n\t20872 - 11905: 0xB8D4,\n\t20873 - 11905: 0xC8BD,\n\t20874 - 11905: 0x83D4,\n\t20875 - 11905: 0x83D5,\n\t20876 - 11905: 0xB2E1,\n\t20877 - 11905: 0xD4D9,\n\t20878 - 11905: 0x83D6,\n\t20879 - 11905: 0x83D7,\n\t20880 - 11905: 0x83D8,\n\t20881 - 11905: 0x83D9,\n\t20882 - 11905: 0xC3B0,\n\t20883 - 11905: 0x83DA,\n\t20884 - 11905: 0x83DB,\n\t20885 - 11905: 0xC3E1,\n\t20886 - 11905: 0xDAA2,\n\t20887 - 11905: 0xC8DF,\n\t20888 - 11905: 0x83DC,\n\t20889 - 11905: 0xD0B4,\n\t20890 - 11905: 0x83DD,\n\t20891 - 11905: 0xBEFC,\n\t20892 - 11905: 0xC5A9,\n\t20893 - 11905: 0x83DE,\n\t20894 - 11905: 0x83DF,\n\t20895 - 11905: 0x83E0,\n\t20896 - 11905: 0xB9DA,\n\t20897 - 11905: 0x83E1,\n\t20898 - 11905: 0xDAA3,\n\t20899 - 11905: 0x83E2,\n\t20900 - 11905: 0xD4A9,\n\t20901 - 11905: 0xDAA4,\n\t20902 - 11905: 0x83E3,\n\t20903 - 11905: 0x83E4,\n\t20904 - 11905: 0x83E5,\n\t20905 - 11905: 0x83E6,\n\t20906 - 11905: 0x83E7,\n\t20907 - 11905: 0xD9FB,\n\t20908 - 11905: 0xB6AC,\n\t20909 - 11905: 0x83E8,\n\t20910 - 11905: 0x83E9,\n\t20911 - 11905: 0xB7EB,\n\t20912 - 11905: 0xB1F9,\n\t20913 - 11905: 0xD9FC,\n\t20914 - 11905: 0xB3E5,\n\t20915 - 11905: 0xBEF6,\n\t20916 - 11905: 0x83EA,\n\t20917 - 11905: 0xBFF6,\n\t20918 - 11905: 0xD2B1,\n\t20919 - 11905: 0xC0E4,\n\t20920 - 11905: 0x83EB,\n\t20921 - 11905: 0x83EC,\n\t20922 - 11905: 0x83ED,\n\t20923 - 11905: 0xB6B3,\n\t20924 - 11905: 0xD9FE,\n\t20925 - 11905: 0xD9FD,\n\t20926 - 11905: 0x83EE,\n\t20927 - 11905: 0x83EF,\n\t20928 - 11905: 0xBEBB,\n\t20929 - 11905: 0x83F0,\n\t20930 - 11905: 0x83F1,\n\t20931 - 11905: 0x83F2,\n\t20932 - 11905: 0xC6E0,\n\t20933 - 11905: 0x83F3,\n\t20934 - 11905: 0xD7BC,\n\t20935 - 11905: 0xDAA1,\n\t20936 - 11905: 0x83F4,\n\t20937 - 11905: 0xC1B9,\n\t20938 - 11905: 0x83F5,\n\t20939 - 11905: 0xB5F2,\n\t20940 - 11905: 0xC1E8,\n\t20941 - 11905: 0x83F6,\n\t20942 - 11905: 0x83F7,\n\t20943 - 11905: 0xBCF5,\n\t20944 - 11905: 0x83F8,\n\t20945 - 11905: 0xB4D5,\n\t20946 - 11905: 0x83F9,\n\t20947 - 11905: 0x83FA,\n\t20948 - 11905: 0x83FB,\n\t20949 - 11905: 0x83FC,\n\t20950 - 11905: 0x83FD,\n\t20951 - 11905: 0x83FE,\n\t20952 - 11905: 0x8440,\n\t20953 - 11905: 0x8441,\n\t20954 - 11905: 0x8442,\n\t20955 - 11905: 0xC1DD,\n\t20956 - 11905: 0x8443,\n\t20957 - 11905: 0xC4FD,\n\t20958 - 11905: 0x8444,\n\t20959 - 11905: 0x8445,\n\t20960 - 11905: 0xBCB8,\n\t20961 - 11905: 0xB7B2,\n\t20962 - 11905: 0x8446,\n\t20963 - 11905: 0x8447,\n\t20964 - 11905: 0xB7EF,\n\t20965 - 11905: 0x8448,\n\t20966 - 11905: 0x8449,\n\t20967 - 11905: 0x844A,\n\t20968 - 11905: 0x844B,\n\t20969 - 11905: 0x844C,\n\t20970 - 11905: 0x844D,\n\t20971 - 11905: 0xD9EC,\n\t20972 - 11905: 0x844E,\n\t20973 - 11905: 0xC6BE,\n\t20974 - 11905: 0x844F,\n\t20975 - 11905: 0xBFAD,\n\t20976 - 11905: 0xBBCB,\n\t20977 - 11905: 0x8450,\n\t20978 - 11905: 0x8451,\n\t20979 - 11905: 0xB5CA,\n\t20980 - 11905: 0x8452,\n\t20981 - 11905: 0xDBC9,\n\t20982 - 11905: 0xD0D7,\n\t20983 - 11905: 0x8453,\n\t20984 - 11905: 0xCDB9,\n\t20985 - 11905: 0xB0BC,\n\t20986 - 11905: 0xB3F6,\n\t20987 - 11905: 0xBBF7,\n\t20988 - 11905: 0xDBCA,\n\t20989 - 11905: 0xBAAF,\n\t20990 - 11905: 0x8454,\n\t20991 - 11905: 0xD4E4,\n\t20992 - 11905: 0xB5B6,\n\t20993 - 11905: 0xB5F3,\n\t20994 - 11905: 0xD8D6,\n\t20995 - 11905: 0xC8D0,\n\t20996 - 11905: 0x8455,\n\t20997 - 11905: 0x8456,\n\t20998 - 11905: 0xB7D6,\n\t20999 - 11905: 0xC7D0,\n\t21000 - 11905: 0xD8D7,\n\t21001 - 11905: 0x8457,\n\t21002 - 11905: 0xBFAF,\n\t21003 - 11905: 0x8458,\n\t21004 - 11905: 0x8459,\n\t21005 - 11905: 0xDBBB,\n\t21006 - 11905: 0xD8D8,\n\t21007 - 11905: 0x845A,\n\t21008 - 11905: 0x845B,\n\t21009 - 11905: 0xD0CC,\n\t21010 - 11905: 0xBBAE,\n\t21011 - 11905: 0x845C,\n\t21012 - 11905: 0x845D,\n\t21013 - 11905: 0x845E,\n\t21014 - 11905: 0xEBBE,\n\t21015 - 11905: 0xC1D0,\n\t21016 - 11905: 0xC1F5,\n\t21017 - 11905: 0xD4F2,\n\t21018 - 11905: 0xB8D5,\n\t21019 - 11905: 0xB4B4,\n\t21020 - 11905: 0x845F,\n\t21021 - 11905: 0xB3F5,\n\t21022 - 11905: 0x8460,\n\t21023 - 11905: 0x8461,\n\t21024 - 11905: 0xC9BE,\n\t21025 - 11905: 0x8462,\n\t21026 - 11905: 0x8463,\n\t21027 - 11905: 0x8464,\n\t21028 - 11905: 0xC5D0,\n\t21029 - 11905: 0x8465,\n\t21030 - 11905: 0x8466,\n\t21031 - 11905: 0x8467,\n\t21032 - 11905: 0xC5D9,\n\t21033 - 11905: 0xC0FB,\n\t21034 - 11905: 0x8468,\n\t21035 - 11905: 0xB1F0,\n\t21036 - 11905: 0x8469,\n\t21037 - 11905: 0xD8D9,\n\t21038 - 11905: 0xB9CE,\n\t21039 - 11905: 0x846A,\n\t21040 - 11905: 0xB5BD,\n\t21041 - 11905: 0x846B,\n\t21042 - 11905: 0x846C,\n\t21043 - 11905: 0xD8DA,\n\t21044 - 11905: 0x846D,\n\t21045 - 11905: 0x846E,\n\t21046 - 11905: 0xD6C6,\n\t21047 - 11905: 0xCBA2,\n\t21048 - 11905: 0xC8AF,\n\t21049 - 11905: 0xC9B2,\n\t21050 - 11905: 0xB4CC,\n\t21051 - 11905: 0xBFCC,\n\t21052 - 11905: 0x846F,\n\t21053 - 11905: 0xB9F4,\n\t21054 - 11905: 0x8470,\n\t21055 - 11905: 0xD8DB,\n\t21056 - 11905: 0xD8DC,\n\t21057 - 11905: 0xB6E7,\n\t21058 - 11905: 0xBCC1,\n\t21059 - 11905: 0xCCEA,\n\t21060 - 11905: 0x8471,\n\t21061 - 11905: 0x8472,\n\t21062 - 11905: 0x8473,\n\t21063 - 11905: 0x8474,\n\t21064 - 11905: 0x8475,\n\t21065 - 11905: 0x8476,\n\t21066 - 11905: 0xCFF7,\n\t21067 - 11905: 0x8477,\n\t21068 - 11905: 0xD8DD,\n\t21069 - 11905: 0xC7B0,\n\t21070 - 11905: 0x8478,\n\t21071 - 11905: 0x8479,\n\t21072 - 11905: 0xB9D0,\n\t21073 - 11905: 0xBDA3,\n\t21074 - 11905: 0x847A,\n\t21075 - 11905: 0x847B,\n\t21076 - 11905: 0xCCDE,\n\t21077 - 11905: 0x847C,\n\t21078 - 11905: 0xC6CA,\n\t21079 - 11905: 0x847D,\n\t21080 - 11905: 0x847E,\n\t21081 - 11905: 0x8480,\n\t21082 - 11905: 0x8481,\n\t21083 - 11905: 0x8482,\n\t21084 - 11905: 0xD8E0,\n\t21085 - 11905: 0x8483,\n\t21086 - 11905: 0xD8DE,\n\t21087 - 11905: 0x8484,\n\t21088 - 11905: 0x8485,\n\t21089 - 11905: 0xD8DF,\n\t21090 - 11905: 0x8486,\n\t21091 - 11905: 0x8487,\n\t21092 - 11905: 0x8488,\n\t21093 - 11905: 0xB0FE,\n\t21094 - 11905: 0x8489,\n\t21095 - 11905: 0xBEE7,\n\t21096 - 11905: 0x848A,\n\t21097 - 11905: 0xCAA3,\n\t21098 - 11905: 0xBCF4,\n\t21099 - 11905: 0x848B,\n\t21100 - 11905: 0x848C,\n\t21101 - 11905: 0x848D,\n\t21102 - 11905: 0x848E,\n\t21103 - 11905: 0xB8B1,\n\t21104 - 11905: 0x848F,\n\t21105 - 11905: 0x8490,\n\t21106 - 11905: 0xB8EE,\n\t21107 - 11905: 0x8491,\n\t21108 - 11905: 0x8492,\n\t21109 - 11905: 0x8493,\n\t21110 - 11905: 0x8494,\n\t21111 - 11905: 0x8495,\n\t21112 - 11905: 0x8496,\n\t21113 - 11905: 0x8497,\n\t21114 - 11905: 0x8498,\n\t21115 - 11905: 0x8499,\n\t21116 - 11905: 0x849A,\n\t21117 - 11905: 0xD8E2,\n\t21118 - 11905: 0x849B,\n\t21119 - 11905: 0xBDCB,\n\t21120 - 11905: 0x849C,\n\t21121 - 11905: 0xD8E4,\n\t21122 - 11905: 0xD8E3,\n\t21123 - 11905: 0x849D,\n\t21124 - 11905: 0x849E,\n\t21125 - 11905: 0x849F,\n\t21126 - 11905: 0x84A0,\n\t21127 - 11905: 0x84A1,\n\t21128 - 11905: 0xC5FC,\n\t21129 - 11905: 0x84A2,\n\t21130 - 11905: 0x84A3,\n\t21131 - 11905: 0x84A4,\n\t21132 - 11905: 0x84A5,\n\t21133 - 11905: 0x84A6,\n\t21134 - 11905: 0x84A7,\n\t21135 - 11905: 0x84A8,\n\t21136 - 11905: 0xD8E5,\n\t21137 - 11905: 0x84A9,\n\t21138 - 11905: 0x84AA,\n\t21139 - 11905: 0xD8E6,\n\t21140 - 11905: 0x84AB,\n\t21141 - 11905: 0x84AC,\n\t21142 - 11905: 0x84AD,\n\t21143 - 11905: 0x84AE,\n\t21144 - 11905: 0x84AF,\n\t21145 - 11905: 0x84B0,\n\t21146 - 11905: 0x84B1,\n\t21147 - 11905: 0xC1A6,\n\t21148 - 11905: 0x84B2,\n\t21149 - 11905: 0xC8B0,\n\t21150 - 11905: 0xB0EC,\n\t21151 - 11905: 0xB9A6,\n\t21152 - 11905: 0xBCD3,\n\t21153 - 11905: 0xCEF1,\n\t21154 - 11905: 0xDBBD,\n\t21155 - 11905: 0xC1D3,\n\t21156 - 11905: 0x84B3,\n\t21157 - 11905: 0x84B4,\n\t21158 - 11905: 0x84B5,\n\t21159 - 11905: 0x84B6,\n\t21160 - 11905: 0xB6AF,\n\t21161 - 11905: 0xD6FA,\n\t21162 - 11905: 0xC5AC,\n\t21163 - 11905: 0xBDD9,\n\t21164 - 11905: 0xDBBE,\n\t21165 - 11905: 0xDBBF,\n\t21166 - 11905: 0x84B7,\n\t21167 - 11905: 0x84B8,\n\t21168 - 11905: 0x84B9,\n\t21169 - 11905: 0xC0F8,\n\t21170 - 11905: 0xBEA2,\n\t21171 - 11905: 0xC0CD,\n\t21172 - 11905: 0x84BA,\n\t21173 - 11905: 0x84BB,\n\t21174 - 11905: 0x84BC,\n\t21175 - 11905: 0x84BD,\n\t21176 - 11905: 0x84BE,\n\t21177 - 11905: 0x84BF,\n\t21178 - 11905: 0x84C0,\n\t21179 - 11905: 0x84C1,\n\t21180 - 11905: 0x84C2,\n\t21181 - 11905: 0x84C3,\n\t21182 - 11905: 0xDBC0,\n\t21183 - 11905: 0xCAC6,\n\t21184 - 11905: 0x84C4,\n\t21185 - 11905: 0x84C5,\n\t21186 - 11905: 0x84C6,\n\t21187 - 11905: 0xB2AA,\n\t21188 - 11905: 0x84C7,\n\t21189 - 11905: 0x84C8,\n\t21190 - 11905: 0x84C9,\n\t21191 - 11905: 0xD3C2,\n\t21192 - 11905: 0x84CA,\n\t21193 - 11905: 0xC3E3,\n\t21194 - 11905: 0x84CB,\n\t21195 - 11905: 0xD1AB,\n\t21196 - 11905: 0x84CC,\n\t21197 - 11905: 0x84CD,\n\t21198 - 11905: 0x84CE,\n\t21199 - 11905: 0x84CF,\n\t21200 - 11905: 0xDBC2,\n\t21201 - 11905: 0x84D0,\n\t21202 - 11905: 0xC0D5,\n\t21203 - 11905: 0x84D1,\n\t21204 - 11905: 0x84D2,\n\t21205 - 11905: 0x84D3,\n\t21206 - 11905: 0xDBC3,\n\t21207 - 11905: 0x84D4,\n\t21208 - 11905: 0xBFB1,\n\t21209 - 11905: 0x84D5,\n\t21210 - 11905: 0x84D6,\n\t21211 - 11905: 0x84D7,\n\t21212 - 11905: 0x84D8,\n\t21213 - 11905: 0x84D9,\n\t21214 - 11905: 0x84DA,\n\t21215 - 11905: 0xC4BC,\n\t21216 - 11905: 0x84DB,\n\t21217 - 11905: 0x84DC,\n\t21218 - 11905: 0x84DD,\n\t21219 - 11905: 0x84DE,\n\t21220 - 11905: 0xC7DA,\n\t21221 - 11905: 0x84DF,\n\t21222 - 11905: 0x84E0,\n\t21223 - 11905: 0x84E1,\n\t21224 - 11905: 0x84E2,\n\t21225 - 11905: 0x84E3,\n\t21226 - 11905: 0x84E4,\n\t21227 - 11905: 0x84E5,\n\t21228 - 11905: 0x84E6,\n\t21229 - 11905: 0x84E7,\n\t21230 - 11905: 0x84E8,\n\t21231 - 11905: 0x84E9,\n\t21232 - 11905: 0xDBC4,\n\t21233 - 11905: 0x84EA,\n\t21234 - 11905: 0x84EB,\n\t21235 - 11905: 0x84EC,\n\t21236 - 11905: 0x84ED,\n\t21237 - 11905: 0x84EE,\n\t21238 - 11905: 0x84EF,\n\t21239 - 11905: 0x84F0,\n\t21240 - 11905: 0x84F1,\n\t21241 - 11905: 0xD9E8,\n\t21242 - 11905: 0xC9D7,\n\t21243 - 11905: 0x84F2,\n\t21244 - 11905: 0x84F3,\n\t21245 - 11905: 0x84F4,\n\t21246 - 11905: 0xB9B4,\n\t21247 - 11905: 0xCEF0,\n\t21248 - 11905: 0xD4C8,\n\t21249 - 11905: 0x84F5,\n\t21250 - 11905: 0x84F6,\n\t21251 - 11905: 0x84F7,\n\t21252 - 11905: 0x84F8,\n\t21253 - 11905: 0xB0FC,\n\t21254 - 11905: 0xB4D2,\n\t21255 - 11905: 0x84F9,\n\t21256 - 11905: 0xD0D9,\n\t21257 - 11905: 0x84FA,\n\t21258 - 11905: 0x84FB,\n\t21259 - 11905: 0x84FC,\n\t21260 - 11905: 0x84FD,\n\t21261 - 11905: 0xD9E9,\n\t21262 - 11905: 0x84FE,\n\t21263 - 11905: 0xDECB,\n\t21264 - 11905: 0xD9EB,\n\t21265 - 11905: 0x8540,\n\t21266 - 11905: 0x8541,\n\t21267 - 11905: 0x8542,\n\t21268 - 11905: 0x8543,\n\t21269 - 11905: 0xD8B0,\n\t21270 - 11905: 0xBBAF,\n\t21271 - 11905: 0xB1B1,\n\t21272 - 11905: 0x8544,\n\t21273 - 11905: 0xB3D7,\n\t21274 - 11905: 0xD8CE,\n\t21275 - 11905: 0x8545,\n\t21276 - 11905: 0x8546,\n\t21277 - 11905: 0xD4D1,\n\t21278 - 11905: 0x8547,\n\t21279 - 11905: 0x8548,\n\t21280 - 11905: 0xBDB3,\n\t21281 - 11905: 0xBFEF,\n\t21282 - 11905: 0x8549,\n\t21283 - 11905: 0xCFBB,\n\t21284 - 11905: 0x854A,\n\t21285 - 11905: 0x854B,\n\t21286 - 11905: 0xD8D0,\n\t21287 - 11905: 0x854C,\n\t21288 - 11905: 0x854D,\n\t21289 - 11905: 0x854E,\n\t21290 - 11905: 0xB7CB,\n\t21291 - 11905: 0x854F,\n\t21292 - 11905: 0x8550,\n\t21293 - 11905: 0x8551,\n\t21294 - 11905: 0xD8D1,\n\t21295 - 11905: 0x8552,\n\t21296 - 11905: 0x8553,\n\t21297 - 11905: 0x8554,\n\t21298 - 11905: 0x8555,\n\t21299 - 11905: 0x8556,\n\t21300 - 11905: 0x8557,\n\t21301 - 11905: 0x8558,\n\t21302 - 11905: 0x8559,\n\t21303 - 11905: 0x855A,\n\t21304 - 11905: 0x855B,\n\t21305 - 11905: 0xC6A5,\n\t21306 - 11905: 0xC7F8,\n\t21307 - 11905: 0xD2BD,\n\t21308 - 11905: 0x855C,\n\t21309 - 11905: 0x855D,\n\t21310 - 11905: 0xD8D2,\n\t21311 - 11905: 0xC4E4,\n\t21312 - 11905: 0x855E,\n\t21313 - 11905: 0xCAAE,\n\t21314 - 11905: 0x855F,\n\t21315 - 11905: 0xC7A7,\n\t21316 - 11905: 0x8560,\n\t21317 - 11905: 0xD8A6,\n\t21318 - 11905: 0x8561,\n\t21319 - 11905: 0xC9FD,\n\t21320 - 11905: 0xCEE7,\n\t21321 - 11905: 0xBBDC,\n\t21322 - 11905: 0xB0EB,\n\t21323 - 11905: 0x8562,\n\t21324 - 11905: 0x8563,\n\t21325 - 11905: 0x8564,\n\t21326 - 11905: 0xBBAA,\n\t21327 - 11905: 0xD0AD,\n\t21328 - 11905: 0x8565,\n\t21329 - 11905: 0xB1B0,\n\t21330 - 11905: 0xD7E4,\n\t21331 - 11905: 0xD7BF,\n\t21332 - 11905: 0x8566,\n\t21333 - 11905: 0xB5A5,\n\t21334 - 11905: 0xC2F4,\n\t21335 - 11905: 0xC4CF,\n\t21336 - 11905: 0x8567,\n\t21337 - 11905: 0x8568,\n\t21338 - 11905: 0xB2A9,\n\t21339 - 11905: 0x8569,\n\t21340 - 11905: 0xB2B7,\n\t21341 - 11905: 0x856A,\n\t21342 - 11905: 0xB1E5,\n\t21343 - 11905: 0xDFB2,\n\t21344 - 11905: 0xD5BC,\n\t21345 - 11905: 0xBFA8,\n\t21346 - 11905: 0xC2AC,\n\t21347 - 11905: 0xD8D5,\n\t21348 - 11905: 0xC2B1,\n\t21349 - 11905: 0x856B,\n\t21350 - 11905: 0xD8D4,\n\t21351 - 11905: 0xCED4,\n\t21352 - 11905: 0x856C,\n\t21353 - 11905: 0xDAE0,\n\t21354 - 11905: 0x856D,\n\t21355 - 11905: 0xCEC0,\n\t21356 - 11905: 0x856E,\n\t21357 - 11905: 0x856F,\n\t21358 - 11905: 0xD8B4,\n\t21359 - 11905: 0xC3AE,\n\t21360 - 11905: 0xD3A1,\n\t21361 - 11905: 0xCEA3,\n\t21362 - 11905: 0x8570,\n\t21363 - 11905: 0xBCB4,\n\t21364 - 11905: 0xC8B4,\n\t21365 - 11905: 0xC2D1,\n\t21366 - 11905: 0x8571,\n\t21367 - 11905: 0xBEED,\n\t21368 - 11905: 0xD0B6,\n\t21369 - 11905: 0x8572,\n\t21370 - 11905: 0xDAE1,\n\t21371 - 11905: 0x8573,\n\t21372 - 11905: 0x8574,\n\t21373 - 11905: 0x8575,\n\t21374 - 11905: 0x8576,\n\t21375 - 11905: 0xC7E4,\n\t21376 - 11905: 0x8577,\n\t21377 - 11905: 0x8578,\n\t21378 - 11905: 0xB3A7,\n\t21379 - 11905: 0x8579,\n\t21380 - 11905: 0xB6F2,\n\t21381 - 11905: 0xCCFC,\n\t21382 - 11905: 0xC0FA,\n\t21383 - 11905: 0x857A,\n\t21384 - 11905: 0x857B,\n\t21385 - 11905: 0xC0F7,\n\t21386 - 11905: 0x857C,\n\t21387 - 11905: 0xD1B9,\n\t21388 - 11905: 0xD1E1,\n\t21389 - 11905: 0xD8C7,\n\t21390 - 11905: 0x857D,\n\t21391 - 11905: 0x857E,\n\t21392 - 11905: 0x8580,\n\t21393 - 11905: 0x8581,\n\t21394 - 11905: 0x8582,\n\t21395 - 11905: 0x8583,\n\t21396 - 11905: 0x8584,\n\t21397 - 11905: 0xB2DE,\n\t21398 - 11905: 0x8585,\n\t21399 - 11905: 0x8586,\n\t21400 - 11905: 0xC0E5,\n\t21401 - 11905: 0x8587,\n\t21402 - 11905: 0xBAF1,\n\t21403 - 11905: 0x8588,\n\t21404 - 11905: 0x8589,\n\t21405 - 11905: 0xD8C8,\n\t21406 - 11905: 0x858A,\n\t21407 - 11905: 0xD4AD,\n\t21408 - 11905: 0x858B,\n\t21409 - 11905: 0x858C,\n\t21410 - 11905: 0xCFE1,\n\t21411 - 11905: 0xD8C9,\n\t21412 - 11905: 0x858D,\n\t21413 - 11905: 0xD8CA,\n\t21414 - 11905: 0xCFC3,\n\t21415 - 11905: 0x858E,\n\t21416 - 11905: 0xB3F8,\n\t21417 - 11905: 0xBEC7,\n\t21418 - 11905: 0x858F,\n\t21419 - 11905: 0x8590,\n\t21420 - 11905: 0x8591,\n\t21421 - 11905: 0x8592,\n\t21422 - 11905: 0xD8CB,\n\t21423 - 11905: 0x8593,\n\t21424 - 11905: 0x8594,\n\t21425 - 11905: 0x8595,\n\t21426 - 11905: 0x8596,\n\t21427 - 11905: 0x8597,\n\t21428 - 11905: 0x8598,\n\t21429 - 11905: 0x8599,\n\t21430 - 11905: 0xDBCC,\n\t21431 - 11905: 0x859A,\n\t21432 - 11905: 0x859B,\n\t21433 - 11905: 0x859C,\n\t21434 - 11905: 0x859D,\n\t21435 - 11905: 0xC8A5,\n\t21436 - 11905: 0x859E,\n\t21437 - 11905: 0x859F,\n\t21438 - 11905: 0x85A0,\n\t21439 - 11905: 0xCFD8,\n\t21440 - 11905: 0x85A1,\n\t21441 - 11905: 0xC8FE,\n\t21442 - 11905: 0xB2CE,\n\t21443 - 11905: 0x85A2,\n\t21444 - 11905: 0x85A3,\n\t21445 - 11905: 0x85A4,\n\t21446 - 11905: 0x85A5,\n\t21447 - 11905: 0x85A6,\n\t21448 - 11905: 0xD3D6,\n\t21449 - 11905: 0xB2E6,\n\t21450 - 11905: 0xBCB0,\n\t21451 - 11905: 0xD3D1,\n\t21452 - 11905: 0xCBAB,\n\t21453 - 11905: 0xB7B4,\n\t21454 - 11905: 0x85A7,\n\t21455 - 11905: 0x85A8,\n\t21456 - 11905: 0x85A9,\n\t21457 - 11905: 0xB7A2,\n\t21458 - 11905: 0x85AA,\n\t21459 - 11905: 0x85AB,\n\t21460 - 11905: 0xCAE5,\n\t21461 - 11905: 0x85AC,\n\t21462 - 11905: 0xC8A1,\n\t21463 - 11905: 0xCADC,\n\t21464 - 11905: 0xB1E4,\n\t21465 - 11905: 0xD0F0,\n\t21466 - 11905: 0x85AD,\n\t21467 - 11905: 0xC5D1,\n\t21468 - 11905: 0x85AE,\n\t21469 - 11905: 0x85AF,\n\t21470 - 11905: 0x85B0,\n\t21471 - 11905: 0xDBC5,\n\t21472 - 11905: 0xB5FE,\n\t21473 - 11905: 0x85B1,\n\t21474 - 11905: 0x85B2,\n\t21475 - 11905: 0xBFDA,\n\t21476 - 11905: 0xB9C5,\n\t21477 - 11905: 0xBEE4,\n\t21478 - 11905: 0xC1ED,\n\t21479 - 11905: 0x85B3,\n\t21480 - 11905: 0xDFB6,\n\t21481 - 11905: 0xDFB5,\n\t21482 - 11905: 0xD6BB,\n\t21483 - 11905: 0xBDD0,\n\t21484 - 11905: 0xD5D9,\n\t21485 - 11905: 0xB0C8,\n\t21486 - 11905: 0xB6A3,\n\t21487 - 11905: 0xBFC9,\n\t21488 - 11905: 0xCCA8,\n\t21489 - 11905: 0xDFB3,\n\t21490 - 11905: 0xCAB7,\n\t21491 - 11905: 0xD3D2,\n\t21492 - 11905: 0x85B4,\n\t21493 - 11905: 0xD8CF,\n\t21494 - 11905: 0xD2B6,\n\t21495 - 11905: 0xBAC5,\n\t21496 - 11905: 0xCBBE,\n\t21497 - 11905: 0xCCBE,\n\t21498 - 11905: 0x85B5,\n\t21499 - 11905: 0xDFB7,\n\t21500 - 11905: 0xB5F0,\n\t21501 - 11905: 0xDFB4,\n\t21502 - 11905: 0x85B6,\n\t21503 - 11905: 0x85B7,\n\t21504 - 11905: 0x85B8,\n\t21505 - 11905: 0xD3F5,\n\t21506 - 11905: 0x85B9,\n\t21507 - 11905: 0xB3D4,\n\t21508 - 11905: 0xB8F7,\n\t21509 - 11905: 0x85BA,\n\t21510 - 11905: 0xDFBA,\n\t21511 - 11905: 0x85BB,\n\t21512 - 11905: 0xBACF,\n\t21513 - 11905: 0xBCAA,\n\t21514 - 11905: 0xB5F5,\n\t21515 - 11905: 0x85BC,\n\t21516 - 11905: 0xCDAC,\n\t21517 - 11905: 0xC3FB,\n\t21518 - 11905: 0xBAF3,\n\t21519 - 11905: 0xC0F4,\n\t21520 - 11905: 0xCDC2,\n\t21521 - 11905: 0xCFF2,\n\t21522 - 11905: 0xDFB8,\n\t21523 - 11905: 0xCFC5,\n\t21524 - 11905: 0x85BD,\n\t21525 - 11905: 0xC2C0,\n\t21526 - 11905: 0xDFB9,\n\t21527 - 11905: 0xC2F0,\n\t21528 - 11905: 0x85BE,\n\t21529 - 11905: 0x85BF,\n\t21530 - 11905: 0x85C0,\n\t21531 - 11905: 0xBEFD,\n\t21532 - 11905: 0x85C1,\n\t21533 - 11905: 0xC1DF,\n\t21534 - 11905: 0xCDCC,\n\t21535 - 11905: 0xD2F7,\n\t21536 - 11905: 0xB7CD,\n\t21537 - 11905: 0xDFC1,\n\t21538 - 11905: 0x85C2,\n\t21539 - 11905: 0xDFC4,\n\t21540 - 11905: 0x85C3,\n\t21541 - 11905: 0x85C4,\n\t21542 - 11905: 0xB7F1,\n\t21543 - 11905: 0xB0C9,\n\t21544 - 11905: 0xB6D6,\n\t21545 - 11905: 0xB7D4,\n\t21546 - 11905: 0x85C5,\n\t21547 - 11905: 0xBAAC,\n\t21548 - 11905: 0xCCFD,\n\t21549 - 11905: 0xBFD4,\n\t21550 - 11905: 0xCBB1,\n\t21551 - 11905: 0xC6F4,\n\t21552 - 11905: 0x85C6,\n\t21553 - 11905: 0xD6A8,\n\t21554 - 11905: 0xDFC5,\n\t21555 - 11905: 0x85C7,\n\t21556 - 11905: 0xCEE2,\n\t21557 - 11905: 0xB3B3,\n\t21558 - 11905: 0x85C8,\n\t21559 - 11905: 0x85C9,\n\t21560 - 11905: 0xCEFC,\n\t21561 - 11905: 0xB4B5,\n\t21562 - 11905: 0x85CA,\n\t21563 - 11905: 0xCEC7,\n\t21564 - 11905: 0xBAF0,\n\t21565 - 11905: 0x85CB,\n\t21566 - 11905: 0xCEE1,\n\t21567 - 11905: 0x85CC,\n\t21568 - 11905: 0xD1BD,\n\t21569 - 11905: 0x85CD,\n\t21570 - 11905: 0x85CE,\n\t21571 - 11905: 0xDFC0,\n\t21572 - 11905: 0x85CF,\n\t21573 - 11905: 0x85D0,\n\t21574 - 11905: 0xB4F4,\n\t21575 - 11905: 0x85D1,\n\t21576 - 11905: 0xB3CA,\n\t21577 - 11905: 0x85D2,\n\t21578 - 11905: 0xB8E6,\n\t21579 - 11905: 0xDFBB,\n\t21580 - 11905: 0x85D3,\n\t21581 - 11905: 0x85D4,\n\t21582 - 11905: 0x85D5,\n\t21583 - 11905: 0x85D6,\n\t21584 - 11905: 0xC4C5,\n\t21585 - 11905: 0x85D7,\n\t21586 - 11905: 0xDFBC,\n\t21587 - 11905: 0xDFBD,\n\t21588 - 11905: 0xDFBE,\n\t21589 - 11905: 0xC5BB,\n\t21590 - 11905: 0xDFBF,\n\t21591 - 11905: 0xDFC2,\n\t21592 - 11905: 0xD4B1,\n\t21593 - 11905: 0xDFC3,\n\t21594 - 11905: 0x85D8,\n\t21595 - 11905: 0xC7BA,\n\t21596 - 11905: 0xCED8,\n\t21597 - 11905: 0x85D9,\n\t21598 - 11905: 0x85DA,\n\t21599 - 11905: 0x85DB,\n\t21600 - 11905: 0x85DC,\n\t21601 - 11905: 0x85DD,\n\t21602 - 11905: 0xC4D8,\n\t21603 - 11905: 0x85DE,\n\t21604 - 11905: 0xDFCA,\n\t21605 - 11905: 0x85DF,\n\t21606 - 11905: 0xDFCF,\n\t21607 - 11905: 0x85E0,\n\t21608 - 11905: 0xD6DC,\n\t21609 - 11905: 0x85E1,\n\t21610 - 11905: 0x85E2,\n\t21611 - 11905: 0x85E3,\n\t21612 - 11905: 0x85E4,\n\t21613 - 11905: 0x85E5,\n\t21614 - 11905: 0x85E6,\n\t21615 - 11905: 0x85E7,\n\t21616 - 11905: 0x85E8,\n\t21617 - 11905: 0xDFC9,\n\t21618 - 11905: 0xDFDA,\n\t21619 - 11905: 0xCEB6,\n\t21620 - 11905: 0x85E9,\n\t21621 - 11905: 0xBAC7,\n\t21622 - 11905: 0xDFCE,\n\t21623 - 11905: 0xDFC8,\n\t21624 - 11905: 0xC5DE,\n\t21625 - 11905: 0x85EA,\n\t21626 - 11905: 0x85EB,\n\t21627 - 11905: 0xC9EB,\n\t21628 - 11905: 0xBAF4,\n\t21629 - 11905: 0xC3FC,\n\t21630 - 11905: 0x85EC,\n\t21631 - 11905: 0x85ED,\n\t21632 - 11905: 0xBED7,\n\t21633 - 11905: 0x85EE,\n\t21634 - 11905: 0xDFC6,\n\t21635 - 11905: 0x85EF,\n\t21636 - 11905: 0xDFCD,\n\t21637 - 11905: 0x85F0,\n\t21638 - 11905: 0xC5D8,\n\t21639 - 11905: 0x85F1,\n\t21640 - 11905: 0x85F2,\n\t21641 - 11905: 0x85F3,\n\t21642 - 11905: 0x85F4,\n\t21643 - 11905: 0xD5A6,\n\t21644 - 11905: 0xBACD,\n\t21645 - 11905: 0x85F5,\n\t21646 - 11905: 0xBECC,\n\t21647 - 11905: 0xD3BD,\n\t21648 - 11905: 0xB8C0,\n\t21649 - 11905: 0x85F6,\n\t21650 - 11905: 0xD6E4,\n\t21651 - 11905: 0x85F7,\n\t21652 - 11905: 0xDFC7,\n\t21653 - 11905: 0xB9BE,\n\t21654 - 11905: 0xBFA7,\n\t21655 - 11905: 0x85F8,\n\t21656 - 11905: 0x85F9,\n\t21657 - 11905: 0xC1FC,\n\t21658 - 11905: 0xDFCB,\n\t21659 - 11905: 0xDFCC,\n\t21660 - 11905: 0x85FA,\n\t21661 - 11905: 0xDFD0,\n\t21662 - 11905: 0x85FB,\n\t21663 - 11905: 0x85FC,\n\t21664 - 11905: 0x85FD,\n\t21665 - 11905: 0x85FE,\n\t21666 - 11905: 0x8640,\n\t21667 - 11905: 0xDFDB,\n\t21668 - 11905: 0xDFE5,\n\t21669 - 11905: 0x8641,\n\t21670 - 11905: 0xDFD7,\n\t21671 - 11905: 0xDFD6,\n\t21672 - 11905: 0xD7C9,\n\t21673 - 11905: 0xDFE3,\n\t21674 - 11905: 0xDFE4,\n\t21675 - 11905: 0xE5EB,\n\t21676 - 11905: 0xD2A7,\n\t21677 - 11905: 0xDFD2,\n\t21678 - 11905: 0x8642,\n\t21679 - 11905: 0xBFA9,\n\t21680 - 11905: 0x8643,\n\t21681 - 11905: 0xD4DB,\n\t21682 - 11905: 0x8644,\n\t21683 - 11905: 0xBFC8,\n\t21684 - 11905: 0xDFD4,\n\t21685 - 11905: 0x8645,\n\t21686 - 11905: 0x8646,\n\t21687 - 11905: 0x8647,\n\t21688 - 11905: 0xCFCC,\n\t21689 - 11905: 0x8648,\n\t21690 - 11905: 0x8649,\n\t21691 - 11905: 0xDFDD,\n\t21692 - 11905: 0x864A,\n\t21693 - 11905: 0xD1CA,\n\t21694 - 11905: 0x864B,\n\t21695 - 11905: 0xDFDE,\n\t21696 - 11905: 0xB0A7,\n\t21697 - 11905: 0xC6B7,\n\t21698 - 11905: 0xDFD3,\n\t21699 - 11905: 0x864C,\n\t21700 - 11905: 0xBAE5,\n\t21701 - 11905: 0x864D,\n\t21702 - 11905: 0xB6DF,\n\t21703 - 11905: 0xCDDB,\n\t21704 - 11905: 0xB9FE,\n\t21705 - 11905: 0xD4D5,\n\t21706 - 11905: 0x864E,\n\t21707 - 11905: 0x864F,\n\t21708 - 11905: 0xDFDF,\n\t21709 - 11905: 0xCFEC,\n\t21710 - 11905: 0xB0A5,\n\t21711 - 11905: 0xDFE7,\n\t21712 - 11905: 0xDFD1,\n\t21713 - 11905: 0xD1C6,\n\t21714 - 11905: 0xDFD5,\n\t21715 - 11905: 0xDFD8,\n\t21716 - 11905: 0xDFD9,\n\t21717 - 11905: 0xDFDC,\n\t21718 - 11905: 0x8650,\n\t21719 - 11905: 0xBBA9,\n\t21720 - 11905: 0x8651,\n\t21721 - 11905: 0xDFE0,\n\t21722 - 11905: 0xDFE1,\n\t21723 - 11905: 0x8652,\n\t21724 - 11905: 0xDFE2,\n\t21725 - 11905: 0xDFE6,\n\t21726 - 11905: 0xDFE8,\n\t21727 - 11905: 0xD3B4,\n\t21728 - 11905: 0x8653,\n\t21729 - 11905: 0x8654,\n\t21730 - 11905: 0x8655,\n\t21731 - 11905: 0x8656,\n\t21732 - 11905: 0x8657,\n\t21733 - 11905: 0xB8E7,\n\t21734 - 11905: 0xC5B6,\n\t21735 - 11905: 0xDFEA,\n\t21736 - 11905: 0xC9DA,\n\t21737 - 11905: 0xC1A8,\n\t21738 - 11905: 0xC4C4,\n\t21739 - 11905: 0x8658,\n\t21740 - 11905: 0x8659,\n\t21741 - 11905: 0xBFDE,\n\t21742 - 11905: 0xCFF8,\n\t21743 - 11905: 0x865A,\n\t21744 - 11905: 0x865B,\n\t21745 - 11905: 0x865C,\n\t21746 - 11905: 0xD5DC,\n\t21747 - 11905: 0xDFEE,\n\t21748 - 11905: 0x865D,\n\t21749 - 11905: 0x865E,\n\t21750 - 11905: 0x865F,\n\t21751 - 11905: 0x8660,\n\t21752 - 11905: 0x8661,\n\t21753 - 11905: 0x8662,\n\t21754 - 11905: 0xB2B8,\n\t21755 - 11905: 0x8663,\n\t21756 - 11905: 0xBADF,\n\t21757 - 11905: 0xDFEC,\n\t21758 - 11905: 0x8664,\n\t21759 - 11905: 0xDBC1,\n\t21760 - 11905: 0x8665,\n\t21761 - 11905: 0xD1E4,\n\t21762 - 11905: 0x8666,\n\t21763 - 11905: 0x8667,\n\t21764 - 11905: 0x8668,\n\t21765 - 11905: 0x8669,\n\t21766 - 11905: 0xCBF4,\n\t21767 - 11905: 0xB4BD,\n\t21768 - 11905: 0x866A,\n\t21769 - 11905: 0xB0A6,\n\t21770 - 11905: 0x866B,\n\t21771 - 11905: 0x866C,\n\t21772 - 11905: 0x866D,\n\t21773 - 11905: 0x866E,\n\t21774 - 11905: 0x866F,\n\t21775 - 11905: 0xDFF1,\n\t21776 - 11905: 0xCCC6,\n\t21777 - 11905: 0xDFF2,\n\t21778 - 11905: 0x8670,\n\t21779 - 11905: 0x8671,\n\t21780 - 11905: 0xDFED,\n\t21781 - 11905: 0x8672,\n\t21782 - 11905: 0x8673,\n\t21783 - 11905: 0x8674,\n\t21784 - 11905: 0x8675,\n\t21785 - 11905: 0x8676,\n\t21786 - 11905: 0x8677,\n\t21787 - 11905: 0xDFE9,\n\t21788 - 11905: 0x8678,\n\t21789 - 11905: 0x8679,\n\t21790 - 11905: 0x867A,\n\t21791 - 11905: 0x867B,\n\t21792 - 11905: 0xDFEB,\n\t21793 - 11905: 0x867C,\n\t21794 - 11905: 0xDFEF,\n\t21795 - 11905: 0xDFF0,\n\t21796 - 11905: 0xBBBD,\n\t21797 - 11905: 0x867D,\n\t21798 - 11905: 0x867E,\n\t21799 - 11905: 0xDFF3,\n\t21800 - 11905: 0x8680,\n\t21801 - 11905: 0x8681,\n\t21802 - 11905: 0xDFF4,\n\t21803 - 11905: 0x8682,\n\t21804 - 11905: 0xBBA3,\n\t21805 - 11905: 0x8683,\n\t21806 - 11905: 0xCADB,\n\t21807 - 11905: 0xCEA8,\n\t21808 - 11905: 0xE0A7,\n\t21809 - 11905: 0xB3AA,\n\t21810 - 11905: 0x8684,\n\t21811 - 11905: 0xE0A6,\n\t21812 - 11905: 0x8685,\n\t21813 - 11905: 0x8686,\n\t21814 - 11905: 0x8687,\n\t21815 - 11905: 0xE0A1,\n\t21816 - 11905: 0x8688,\n\t21817 - 11905: 0x8689,\n\t21818 - 11905: 0x868A,\n\t21819 - 11905: 0x868B,\n\t21820 - 11905: 0xDFFE,\n\t21821 - 11905: 0x868C,\n\t21822 - 11905: 0xCDD9,\n\t21823 - 11905: 0xDFFC,\n\t21824 - 11905: 0x868D,\n\t21825 - 11905: 0xDFFA,\n\t21826 - 11905: 0x868E,\n\t21827 - 11905: 0xBFD0,\n\t21828 - 11905: 0xD7C4,\n\t21829 - 11905: 0x868F,\n\t21830 - 11905: 0xC9CC,\n\t21831 - 11905: 0x8690,\n\t21832 - 11905: 0x8691,\n\t21833 - 11905: 0xDFF8,\n\t21834 - 11905: 0xB0A1,\n\t21835 - 11905: 0x8692,\n\t21836 - 11905: 0x8693,\n\t21837 - 11905: 0x8694,\n\t21838 - 11905: 0x8695,\n\t21839 - 11905: 0x8696,\n\t21840 - 11905: 0xDFFD,\n\t21841 - 11905: 0x8697,\n\t21842 - 11905: 0x8698,\n\t21843 - 11905: 0x8699,\n\t21844 - 11905: 0x869A,\n\t21845 - 11905: 0xDFFB,\n\t21846 - 11905: 0xE0A2,\n\t21847 - 11905: 0x869B,\n\t21848 - 11905: 0x869C,\n\t21849 - 11905: 0x869D,\n\t21850 - 11905: 0x869E,\n\t21851 - 11905: 0x869F,\n\t21852 - 11905: 0xE0A8,\n\t21853 - 11905: 0x86A0,\n\t21854 - 11905: 0x86A1,\n\t21855 - 11905: 0x86A2,\n\t21856 - 11905: 0x86A3,\n\t21857 - 11905: 0xB7C8,\n\t21858 - 11905: 0x86A4,\n\t21859 - 11905: 0x86A5,\n\t21860 - 11905: 0xC6A1,\n\t21861 - 11905: 0xC9B6,\n\t21862 - 11905: 0xC0B2,\n\t21863 - 11905: 0xDFF5,\n\t21864 - 11905: 0x86A6,\n\t21865 - 11905: 0x86A7,\n\t21866 - 11905: 0xC5BE,\n\t21867 - 11905: 0x86A8,\n\t21868 - 11905: 0xD8C4,\n\t21869 - 11905: 0xDFF9,\n\t21870 - 11905: 0xC4F6,\n\t21871 - 11905: 0x86A9,\n\t21872 - 11905: 0x86AA,\n\t21873 - 11905: 0x86AB,\n\t21874 - 11905: 0x86AC,\n\t21875 - 11905: 0x86AD,\n\t21876 - 11905: 0x86AE,\n\t21877 - 11905: 0xE0A3,\n\t21878 - 11905: 0xE0A4,\n\t21879 - 11905: 0xE0A5,\n\t21880 - 11905: 0xD0A5,\n\t21881 - 11905: 0x86AF,\n\t21882 - 11905: 0x86B0,\n\t21883 - 11905: 0xE0B4,\n\t21884 - 11905: 0xCCE4,\n\t21885 - 11905: 0x86B1,\n\t21886 - 11905: 0xE0B1,\n\t21887 - 11905: 0x86B2,\n\t21888 - 11905: 0xBFA6,\n\t21889 - 11905: 0xE0AF,\n\t21890 - 11905: 0xCEB9,\n\t21891 - 11905: 0xE0AB,\n\t21892 - 11905: 0xC9C6,\n\t21893 - 11905: 0x86B3,\n\t21894 - 11905: 0x86B4,\n\t21895 - 11905: 0xC0AE,\n\t21896 - 11905: 0xE0AE,\n\t21897 - 11905: 0xBAED,\n\t21898 - 11905: 0xBAB0,\n\t21899 - 11905: 0xE0A9,\n\t21900 - 11905: 0x86B5,\n\t21901 - 11905: 0x86B6,\n\t21902 - 11905: 0x86B7,\n\t21903 - 11905: 0xDFF6,\n\t21904 - 11905: 0x86B8,\n\t21905 - 11905: 0xE0B3,\n\t21906 - 11905: 0x86B9,\n\t21907 - 11905: 0x86BA,\n\t21908 - 11905: 0xE0B8,\n\t21909 - 11905: 0x86BB,\n\t21910 - 11905: 0x86BC,\n\t21911 - 11905: 0x86BD,\n\t21912 - 11905: 0xB4AD,\n\t21913 - 11905: 0xE0B9,\n\t21914 - 11905: 0x86BE,\n\t21915 - 11905: 0x86BF,\n\t21916 - 11905: 0xCFB2,\n\t21917 - 11905: 0xBAC8,\n\t21918 - 11905: 0x86C0,\n\t21919 - 11905: 0xE0B0,\n\t21920 - 11905: 0x86C1,\n\t21921 - 11905: 0x86C2,\n\t21922 - 11905: 0x86C3,\n\t21923 - 11905: 0x86C4,\n\t21924 - 11905: 0x86C5,\n\t21925 - 11905: 0x86C6,\n\t21926 - 11905: 0x86C7,\n\t21927 - 11905: 0xD0FA,\n\t21928 - 11905: 0x86C8,\n\t21929 - 11905: 0x86C9,\n\t21930 - 11905: 0x86CA,\n\t21931 - 11905: 0x86CB,\n\t21932 - 11905: 0x86CC,\n\t21933 - 11905: 0x86CD,\n\t21934 - 11905: 0x86CE,\n\t21935 - 11905: 0x86CF,\n\t21936 - 11905: 0x86D0,\n\t21937 - 11905: 0xE0AC,\n\t21938 - 11905: 0x86D1,\n\t21939 - 11905: 0xD4FB,\n\t21940 - 11905: 0x86D2,\n\t21941 - 11905: 0xDFF7,\n\t21942 - 11905: 0x86D3,\n\t21943 - 11905: 0xC5E7,\n\t21944 - 11905: 0x86D4,\n\t21945 - 11905: 0xE0AD,\n\t21946 - 11905: 0x86D5,\n\t21947 - 11905: 0xD3F7,\n\t21948 - 11905: 0x86D6,\n\t21949 - 11905: 0xE0B6,\n\t21950 - 11905: 0xE0B7,\n\t21951 - 11905: 0x86D7,\n\t21952 - 11905: 0x86D8,\n\t21953 - 11905: 0x86D9,\n\t21954 - 11905: 0x86DA,\n\t21955 - 11905: 0x86DB,\n\t21956 - 11905: 0xE0C4,\n\t21957 - 11905: 0xD0E1,\n\t21958 - 11905: 0x86DC,\n\t21959 - 11905: 0x86DD,\n\t21960 - 11905: 0x86DE,\n\t21961 - 11905: 0xE0BC,\n\t21962 - 11905: 0x86DF,\n\t21963 - 11905: 0x86E0,\n\t21964 - 11905: 0xE0C9,\n\t21965 - 11905: 0xE0CA,\n\t21966 - 11905: 0x86E1,\n\t21967 - 11905: 0x86E2,\n\t21968 - 11905: 0x86E3,\n\t21969 - 11905: 0xE0BE,\n\t21970 - 11905: 0xE0AA,\n\t21971 - 11905: 0xC9A4,\n\t21972 - 11905: 0xE0C1,\n\t21973 - 11905: 0x86E4,\n\t21974 - 11905: 0xE0B2,\n\t21975 - 11905: 0x86E5,\n\t21976 - 11905: 0x86E6,\n\t21977 - 11905: 0x86E7,\n\t21978 - 11905: 0x86E8,\n\t21979 - 11905: 0x86E9,\n\t21980 - 11905: 0xCAC8,\n\t21981 - 11905: 0xE0C3,\n\t21982 - 11905: 0x86EA,\n\t21983 - 11905: 0xE0B5,\n\t21984 - 11905: 0x86EB,\n\t21985 - 11905: 0xCECB,\n\t21986 - 11905: 0x86EC,\n\t21987 - 11905: 0xCBC3,\n\t21988 - 11905: 0xE0CD,\n\t21989 - 11905: 0xE0C6,\n\t21990 - 11905: 0xE0C2,\n\t21991 - 11905: 0x86ED,\n\t21992 - 11905: 0xE0CB,\n\t21993 - 11905: 0x86EE,\n\t21994 - 11905: 0xE0BA,\n\t21995 - 11905: 0xE0BF,\n\t21996 - 11905: 0xE0C0,\n\t21997 - 11905: 0x86EF,\n\t21998 - 11905: 0x86F0,\n\t21999 - 11905: 0xE0C5,\n\t22000 - 11905: 0x86F1,\n\t22001 - 11905: 0x86F2,\n\t22002 - 11905: 0xE0C7,\n\t22003 - 11905: 0xE0C8,\n\t22004 - 11905: 0x86F3,\n\t22005 - 11905: 0xE0CC,\n\t22006 - 11905: 0x86F4,\n\t22007 - 11905: 0xE0BB,\n\t22008 - 11905: 0x86F5,\n\t22009 - 11905: 0x86F6,\n\t22010 - 11905: 0x86F7,\n\t22011 - 11905: 0x86F8,\n\t22012 - 11905: 0x86F9,\n\t22013 - 11905: 0xCBD4,\n\t22014 - 11905: 0xE0D5,\n\t22015 - 11905: 0x86FA,\n\t22016 - 11905: 0xE0D6,\n\t22017 - 11905: 0xE0D2,\n\t22018 - 11905: 0x86FB,\n\t22019 - 11905: 0x86FC,\n\t22020 - 11905: 0x86FD,\n\t22021 - 11905: 0x86FE,\n\t22022 - 11905: 0x8740,\n\t22023 - 11905: 0x8741,\n\t22024 - 11905: 0xE0D0,\n\t22025 - 11905: 0xBCCE,\n\t22026 - 11905: 0x8742,\n\t22027 - 11905: 0x8743,\n\t22028 - 11905: 0xE0D1,\n\t22029 - 11905: 0x8744,\n\t22030 - 11905: 0xB8C2,\n\t22031 - 11905: 0xD8C5,\n\t22032 - 11905: 0x8745,\n\t22033 - 11905: 0x8746,\n\t22034 - 11905: 0x8747,\n\t22035 - 11905: 0x8748,\n\t22036 - 11905: 0x8749,\n\t22037 - 11905: 0x874A,\n\t22038 - 11905: 0x874B,\n\t22039 - 11905: 0x874C,\n\t22040 - 11905: 0xD0EA,\n\t22041 - 11905: 0x874D,\n\t22042 - 11905: 0x874E,\n\t22043 - 11905: 0xC2EF,\n\t22044 - 11905: 0x874F,\n\t22045 - 11905: 0x8750,\n\t22046 - 11905: 0xE0CF,\n\t22047 - 11905: 0xE0BD,\n\t22048 - 11905: 0x8751,\n\t22049 - 11905: 0x8752,\n\t22050 - 11905: 0x8753,\n\t22051 - 11905: 0xE0D4,\n\t22052 - 11905: 0xE0D3,\n\t22053 - 11905: 0x8754,\n\t22054 - 11905: 0x8755,\n\t22055 - 11905: 0xE0D7,\n\t22056 - 11905: 0x8756,\n\t22057 - 11905: 0x8757,\n\t22058 - 11905: 0x8758,\n\t22059 - 11905: 0x8759,\n\t22060 - 11905: 0xE0DC,\n\t22061 - 11905: 0xE0D8,\n\t22062 - 11905: 0x875A,\n\t22063 - 11905: 0x875B,\n\t22064 - 11905: 0x875C,\n\t22065 - 11905: 0xD6F6,\n\t22066 - 11905: 0xB3B0,\n\t22067 - 11905: 0x875D,\n\t22068 - 11905: 0xD7EC,\n\t22069 - 11905: 0x875E,\n\t22070 - 11905: 0xCBBB,\n\t22071 - 11905: 0x875F,\n\t22072 - 11905: 0x8760,\n\t22073 - 11905: 0xE0DA,\n\t22074 - 11905: 0x8761,\n\t22075 - 11905: 0xCEFB,\n\t22076 - 11905: 0x8762,\n\t22077 - 11905: 0x8763,\n\t22078 - 11905: 0x8764,\n\t22079 - 11905: 0xBAD9,\n\t22080 - 11905: 0x8765,\n\t22081 - 11905: 0x8766,\n\t22082 - 11905: 0x8767,\n\t22083 - 11905: 0x8768,\n\t22084 - 11905: 0x8769,\n\t22085 - 11905: 0x876A,\n\t22086 - 11905: 0x876B,\n\t22087 - 11905: 0x876C,\n\t22088 - 11905: 0x876D,\n\t22089 - 11905: 0x876E,\n\t22090 - 11905: 0x876F,\n\t22091 - 11905: 0x8770,\n\t22092 - 11905: 0xE0E1,\n\t22093 - 11905: 0xE0DD,\n\t22094 - 11905: 0xD2AD,\n\t22095 - 11905: 0x8771,\n\t22096 - 11905: 0x8772,\n\t22097 - 11905: 0x8773,\n\t22098 - 11905: 0x8774,\n\t22099 - 11905: 0x8775,\n\t22100 - 11905: 0xE0E2,\n\t22101 - 11905: 0x8776,\n\t22102 - 11905: 0x8777,\n\t22103 - 11905: 0xE0DB,\n\t22104 - 11905: 0xE0D9,\n\t22105 - 11905: 0xE0DF,\n\t22106 - 11905: 0x8778,\n\t22107 - 11905: 0x8779,\n\t22108 - 11905: 0xE0E0,\n\t22109 - 11905: 0x877A,\n\t22110 - 11905: 0x877B,\n\t22111 - 11905: 0x877C,\n\t22112 - 11905: 0x877D,\n\t22113 - 11905: 0x877E,\n\t22114 - 11905: 0xE0DE,\n\t22115 - 11905: 0x8780,\n\t22116 - 11905: 0xE0E4,\n\t22117 - 11905: 0x8781,\n\t22118 - 11905: 0x8782,\n\t22119 - 11905: 0x8783,\n\t22120 - 11905: 0xC6F7,\n\t22121 - 11905: 0xD8AC,\n\t22122 - 11905: 0xD4EB,\n\t22123 - 11905: 0xE0E6,\n\t22124 - 11905: 0xCAC9,\n\t22125 - 11905: 0x8784,\n\t22126 - 11905: 0x8785,\n\t22127 - 11905: 0x8786,\n\t22128 - 11905: 0x8787,\n\t22129 - 11905: 0xE0E5,\n\t22130 - 11905: 0x8788,\n\t22131 - 11905: 0x8789,\n\t22132 - 11905: 0x878A,\n\t22133 - 11905: 0x878B,\n\t22134 - 11905: 0xB8C1,\n\t22135 - 11905: 0x878C,\n\t22136 - 11905: 0x878D,\n\t22137 - 11905: 0x878E,\n\t22138 - 11905: 0x878F,\n\t22139 - 11905: 0xE0E7,\n\t22140 - 11905: 0xE0E8,\n\t22141 - 11905: 0x8790,\n\t22142 - 11905: 0x8791,\n\t22143 - 11905: 0x8792,\n\t22144 - 11905: 0x8793,\n\t22145 - 11905: 0x8794,\n\t22146 - 11905: 0x8795,\n\t22147 - 11905: 0x8796,\n\t22148 - 11905: 0x8797,\n\t22149 - 11905: 0xE0E9,\n\t22150 - 11905: 0xE0E3,\n\t22151 - 11905: 0x8798,\n\t22152 - 11905: 0x8799,\n\t22153 - 11905: 0x879A,\n\t22154 - 11905: 0x879B,\n\t22155 - 11905: 0x879C,\n\t22156 - 11905: 0x879D,\n\t22157 - 11905: 0x879E,\n\t22158 - 11905: 0xBABF,\n\t22159 - 11905: 0xCCE7,\n\t22160 - 11905: 0x879F,\n\t22161 - 11905: 0x87A0,\n\t22162 - 11905: 0x87A1,\n\t22163 - 11905: 0xE0EA,\n\t22164 - 11905: 0x87A2,\n\t22165 - 11905: 0x87A3,\n\t22166 - 11905: 0x87A4,\n\t22167 - 11905: 0x87A5,\n\t22168 - 11905: 0x87A6,\n\t22169 - 11905: 0x87A7,\n\t22170 - 11905: 0x87A8,\n\t22171 - 11905: 0x87A9,\n\t22172 - 11905: 0x87AA,\n\t22173 - 11905: 0x87AB,\n\t22174 - 11905: 0x87AC,\n\t22175 - 11905: 0x87AD,\n\t22176 - 11905: 0x87AE,\n\t22177 - 11905: 0x87AF,\n\t22178 - 11905: 0x87B0,\n\t22179 - 11905: 0xCFF9,\n\t22180 - 11905: 0x87B1,\n\t22181 - 11905: 0x87B2,\n\t22182 - 11905: 0x87B3,\n\t22183 - 11905: 0x87B4,\n\t22184 - 11905: 0x87B5,\n\t22185 - 11905: 0x87B6,\n\t22186 - 11905: 0x87B7,\n\t22187 - 11905: 0x87B8,\n\t22188 - 11905: 0x87B9,\n\t22189 - 11905: 0x87BA,\n\t22190 - 11905: 0x87BB,\n\t22191 - 11905: 0xE0EB,\n\t22192 - 11905: 0x87BC,\n\t22193 - 11905: 0x87BD,\n\t22194 - 11905: 0x87BE,\n\t22195 - 11905: 0x87BF,\n\t22196 - 11905: 0x87C0,\n\t22197 - 11905: 0x87C1,\n\t22198 - 11905: 0x87C2,\n\t22199 - 11905: 0xC8C2,\n\t22200 - 11905: 0x87C3,\n\t22201 - 11905: 0x87C4,\n\t22202 - 11905: 0x87C5,\n\t22203 - 11905: 0x87C6,\n\t22204 - 11905: 0xBDC0,\n\t22205 - 11905: 0x87C7,\n\t22206 - 11905: 0x87C8,\n\t22207 - 11905: 0x87C9,\n\t22208 - 11905: 0x87CA,\n\t22209 - 11905: 0x87CB,\n\t22210 - 11905: 0x87CC,\n\t22211 - 11905: 0x87CD,\n\t22212 - 11905: 0x87CE,\n\t22213 - 11905: 0x87CF,\n\t22214 - 11905: 0x87D0,\n\t22215 - 11905: 0x87D1,\n\t22216 - 11905: 0x87D2,\n\t22217 - 11905: 0x87D3,\n\t22218 - 11905: 0xC4D2,\n\t22219 - 11905: 0x87D4,\n\t22220 - 11905: 0x87D5,\n\t22221 - 11905: 0x87D6,\n\t22222 - 11905: 0x87D7,\n\t22223 - 11905: 0x87D8,\n\t22224 - 11905: 0x87D9,\n\t22225 - 11905: 0x87DA,\n\t22226 - 11905: 0x87DB,\n\t22227 - 11905: 0x87DC,\n\t22228 - 11905: 0xE0EC,\n\t22229 - 11905: 0x87DD,\n\t22230 - 11905: 0x87DE,\n\t22231 - 11905: 0xE0ED,\n\t22232 - 11905: 0x87DF,\n\t22233 - 11905: 0x87E0,\n\t22234 - 11905: 0xC7F4,\n\t22235 - 11905: 0xCBC4,\n\t22236 - 11905: 0x87E1,\n\t22237 - 11905: 0xE0EE,\n\t22238 - 11905: 0xBBD8,\n\t22239 - 11905: 0xD8B6,\n\t22240 - 11905: 0xD2F2,\n\t22241 - 11905: 0xE0EF,\n\t22242 - 11905: 0xCDC5,\n\t22243 - 11905: 0x87E2,\n\t22244 - 11905: 0xB6DA,\n\t22245 - 11905: 0x87E3,\n\t22246 - 11905: 0x87E4,\n\t22247 - 11905: 0x87E5,\n\t22248 - 11905: 0x87E6,\n\t22249 - 11905: 0x87E7,\n\t22250 - 11905: 0x87E8,\n\t22251 - 11905: 0xE0F1,\n\t22252 - 11905: 0x87E9,\n\t22253 - 11905: 0xD4B0,\n\t22254 - 11905: 0x87EA,\n\t22255 - 11905: 0x87EB,\n\t22256 - 11905: 0xC0A7,\n\t22257 - 11905: 0xB4D1,\n\t22258 - 11905: 0x87EC,\n\t22259 - 11905: 0x87ED,\n\t22260 - 11905: 0xCEA7,\n\t22261 - 11905: 0xE0F0,\n\t22262 - 11905: 0x87EE,\n\t22263 - 11905: 0x87EF,\n\t22264 - 11905: 0x87F0,\n\t22265 - 11905: 0xE0F2,\n\t22266 - 11905: 0xB9CC,\n\t22267 - 11905: 0x87F1,\n\t22268 - 11905: 0x87F2,\n\t22269 - 11905: 0xB9FA,\n\t22270 - 11905: 0xCDBC,\n\t22271 - 11905: 0xE0F3,\n\t22272 - 11905: 0x87F3,\n\t22273 - 11905: 0x87F4,\n\t22274 - 11905: 0x87F5,\n\t22275 - 11905: 0xC6D4,\n\t22276 - 11905: 0xE0F4,\n\t22277 - 11905: 0x87F6,\n\t22278 - 11905: 0xD4B2,\n\t22279 - 11905: 0x87F7,\n\t22280 - 11905: 0xC8A6,\n\t22281 - 11905: 0xE0F6,\n\t22282 - 11905: 0xE0F5,\n\t22283 - 11905: 0x87F8,\n\t22284 - 11905: 0x87F9,\n\t22285 - 11905: 0x87FA,\n\t22286 - 11905: 0x87FB,\n\t22287 - 11905: 0x87FC,\n\t22288 - 11905: 0x87FD,\n\t22289 - 11905: 0x87FE,\n\t22290 - 11905: 0x8840,\n\t22291 - 11905: 0x8841,\n\t22292 - 11905: 0x8842,\n\t22293 - 11905: 0x8843,\n\t22294 - 11905: 0x8844,\n\t22295 - 11905: 0x8845,\n\t22296 - 11905: 0x8846,\n\t22297 - 11905: 0x8847,\n\t22298 - 11905: 0x8848,\n\t22299 - 11905: 0x8849,\n\t22300 - 11905: 0xE0F7,\n\t22301 - 11905: 0x884A,\n\t22302 - 11905: 0x884B,\n\t22303 - 11905: 0xCDC1,\n\t22304 - 11905: 0x884C,\n\t22305 - 11905: 0x884D,\n\t22306 - 11905: 0x884E,\n\t22307 - 11905: 0xCAA5,\n\t22308 - 11905: 0x884F,\n\t22309 - 11905: 0x8850,\n\t22310 - 11905: 0x8851,\n\t22311 - 11905: 0x8852,\n\t22312 - 11905: 0xD4DA,\n\t22313 - 11905: 0xDBD7,\n\t22314 - 11905: 0xDBD9,\n\t22315 - 11905: 0x8853,\n\t22316 - 11905: 0xDBD8,\n\t22317 - 11905: 0xB9E7,\n\t22318 - 11905: 0xDBDC,\n\t22319 - 11905: 0xDBDD,\n\t22320 - 11905: 0xB5D8,\n\t22321 - 11905: 0x8854,\n\t22322 - 11905: 0x8855,\n\t22323 - 11905: 0xDBDA,\n\t22324 - 11905: 0x8856,\n\t22325 - 11905: 0x8857,\n\t22326 - 11905: 0x8858,\n\t22327 - 11905: 0x8859,\n\t22328 - 11905: 0x885A,\n\t22329 - 11905: 0xDBDB,\n\t22330 - 11905: 0xB3A1,\n\t22331 - 11905: 0xDBDF,\n\t22332 - 11905: 0x885B,\n\t22333 - 11905: 0x885C,\n\t22334 - 11905: 0xBBF8,\n\t22335 - 11905: 0x885D,\n\t22336 - 11905: 0xD6B7,\n\t22337 - 11905: 0x885E,\n\t22338 - 11905: 0xDBE0,\n\t22339 - 11905: 0x885F,\n\t22340 - 11905: 0x8860,\n\t22341 - 11905: 0x8861,\n\t22342 - 11905: 0x8862,\n\t22343 - 11905: 0xBEF9,\n\t22344 - 11905: 0x8863,\n\t22345 - 11905: 0x8864,\n\t22346 - 11905: 0xB7BB,\n\t22347 - 11905: 0x8865,\n\t22348 - 11905: 0xDBD0,\n\t22349 - 11905: 0xCCAE,\n\t22350 - 11905: 0xBFB2,\n\t22351 - 11905: 0xBBB5,\n\t22352 - 11905: 0xD7F8,\n\t22353 - 11905: 0xBFD3,\n\t22354 - 11905: 0x8866,\n\t22355 - 11905: 0x8867,\n\t22356 - 11905: 0x8868,\n\t22357 - 11905: 0x8869,\n\t22358 - 11905: 0x886A,\n\t22359 - 11905: 0xBFE9,\n\t22360 - 11905: 0x886B,\n\t22361 - 11905: 0x886C,\n\t22362 - 11905: 0xBCE1,\n\t22363 - 11905: 0xCCB3,\n\t22364 - 11905: 0xDBDE,\n\t22365 - 11905: 0xB0D3,\n\t22366 - 11905: 0xCEEB,\n\t22367 - 11905: 0xB7D8,\n\t22368 - 11905: 0xD7B9,\n\t22369 - 11905: 0xC6C2,\n\t22370 - 11905: 0x886D,\n\t22371 - 11905: 0x886E,\n\t22372 - 11905: 0xC0A4,\n\t22373 - 11905: 0x886F,\n\t22374 - 11905: 0xCCB9,\n\t22375 - 11905: 0x8870,\n\t22376 - 11905: 0xDBE7,\n\t22377 - 11905: 0xDBE1,\n\t22378 - 11905: 0xC6BA,\n\t22379 - 11905: 0xDBE3,\n\t22380 - 11905: 0x8871,\n\t22381 - 11905: 0xDBE8,\n\t22382 - 11905: 0x8872,\n\t22383 - 11905: 0xC5F7,\n\t22384 - 11905: 0x8873,\n\t22385 - 11905: 0x8874,\n\t22386 - 11905: 0x8875,\n\t22387 - 11905: 0xDBEA,\n\t22388 - 11905: 0x8876,\n\t22389 - 11905: 0x8877,\n\t22390 - 11905: 0xDBE9,\n\t22391 - 11905: 0xBFC0,\n\t22392 - 11905: 0x8878,\n\t22393 - 11905: 0x8879,\n\t22394 - 11905: 0x887A,\n\t22395 - 11905: 0xDBE6,\n\t22396 - 11905: 0xDBE5,\n\t22397 - 11905: 0x887B,\n\t22398 - 11905: 0x887C,\n\t22399 - 11905: 0x887D,\n\t22400 - 11905: 0x887E,\n\t22401 - 11905: 0x8880,\n\t22402 - 11905: 0xB4B9,\n\t22403 - 11905: 0xC0AC,\n\t22404 - 11905: 0xC2A2,\n\t22405 - 11905: 0xDBE2,\n\t22406 - 11905: 0xDBE4,\n\t22407 - 11905: 0x8881,\n\t22408 - 11905: 0x8882,\n\t22409 - 11905: 0x8883,\n\t22410 - 11905: 0x8884,\n\t22411 - 11905: 0xD0CD,\n\t22412 - 11905: 0xDBED,\n\t22413 - 11905: 0x8885,\n\t22414 - 11905: 0x8886,\n\t22415 - 11905: 0x8887,\n\t22416 - 11905: 0x8888,\n\t22417 - 11905: 0x8889,\n\t22418 - 11905: 0xC0DD,\n\t22419 - 11905: 0xDBF2,\n\t22420 - 11905: 0x888A,\n\t22421 - 11905: 0x888B,\n\t22422 - 11905: 0x888C,\n\t22423 - 11905: 0x888D,\n\t22424 - 11905: 0x888E,\n\t22425 - 11905: 0x888F,\n\t22426 - 11905: 0x8890,\n\t22427 - 11905: 0xB6E2,\n\t22428 - 11905: 0x8891,\n\t22429 - 11905: 0x8892,\n\t22430 - 11905: 0x8893,\n\t22431 - 11905: 0x8894,\n\t22432 - 11905: 0xDBF3,\n\t22433 - 11905: 0xDBD2,\n\t22434 - 11905: 0xB9B8,\n\t22435 - 11905: 0xD4AB,\n\t22436 - 11905: 0xDBEC,\n\t22437 - 11905: 0x8895,\n\t22438 - 11905: 0xBFD1,\n\t22439 - 11905: 0xDBF0,\n\t22440 - 11905: 0x8896,\n\t22441 - 11905: 0xDBD1,\n\t22442 - 11905: 0x8897,\n\t22443 - 11905: 0xB5E6,\n\t22444 - 11905: 0x8898,\n\t22445 - 11905: 0xDBEB,\n\t22446 - 11905: 0xBFE5,\n\t22447 - 11905: 0x8899,\n\t22448 - 11905: 0x889A,\n\t22449 - 11905: 0x889B,\n\t22450 - 11905: 0xDBEE,\n\t22451 - 11905: 0x889C,\n\t22452 - 11905: 0xDBF1,\n\t22453 - 11905: 0x889D,\n\t22454 - 11905: 0x889E,\n\t22455 - 11905: 0x889F,\n\t22456 - 11905: 0xDBF9,\n\t22457 - 11905: 0x88A0,\n\t22458 - 11905: 0x88A1,\n\t22459 - 11905: 0x88A2,\n\t22460 - 11905: 0x88A3,\n\t22461 - 11905: 0x88A4,\n\t22462 - 11905: 0x88A5,\n\t22463 - 11905: 0x88A6,\n\t22464 - 11905: 0x88A7,\n\t22465 - 11905: 0x88A8,\n\t22466 - 11905: 0xB9A1,\n\t22467 - 11905: 0xB0A3,\n\t22468 - 11905: 0x88A9,\n\t22469 - 11905: 0x88AA,\n\t22470 - 11905: 0x88AB,\n\t22471 - 11905: 0x88AC,\n\t22472 - 11905: 0x88AD,\n\t22473 - 11905: 0x88AE,\n\t22474 - 11905: 0x88AF,\n\t22475 - 11905: 0xC2F1,\n\t22476 - 11905: 0x88B0,\n\t22477 - 11905: 0x88B1,\n\t22478 - 11905: 0xB3C7,\n\t22479 - 11905: 0xDBEF,\n\t22480 - 11905: 0x88B2,\n\t22481 - 11905: 0x88B3,\n\t22482 - 11905: 0xDBF8,\n\t22483 - 11905: 0x88B4,\n\t22484 - 11905: 0xC6D2,\n\t22485 - 11905: 0xDBF4,\n\t22486 - 11905: 0x88B5,\n\t22487 - 11905: 0x88B6,\n\t22488 - 11905: 0xDBF5,\n\t22489 - 11905: 0xDBF7,\n\t22490 - 11905: 0xDBF6,\n\t22491 - 11905: 0x88B7,\n\t22492 - 11905: 0x88B8,\n\t22493 - 11905: 0xDBFE,\n\t22494 - 11905: 0x88B9,\n\t22495 - 11905: 0xD3F2,\n\t22496 - 11905: 0xB2BA,\n\t22497 - 11905: 0x88BA,\n\t22498 - 11905: 0x88BB,\n\t22499 - 11905: 0x88BC,\n\t22500 - 11905: 0xDBFD,\n\t22501 - 11905: 0x88BD,\n\t22502 - 11905: 0x88BE,\n\t22503 - 11905: 0x88BF,\n\t22504 - 11905: 0x88C0,\n\t22505 - 11905: 0x88C1,\n\t22506 - 11905: 0x88C2,\n\t22507 - 11905: 0x88C3,\n\t22508 - 11905: 0x88C4,\n\t22509 - 11905: 0xDCA4,\n\t22510 - 11905: 0x88C5,\n\t22511 - 11905: 0xDBFB,\n\t22512 - 11905: 0x88C6,\n\t22513 - 11905: 0x88C7,\n\t22514 - 11905: 0x88C8,\n\t22515 - 11905: 0x88C9,\n\t22516 - 11905: 0xDBFA,\n\t22517 - 11905: 0x88CA,\n\t22518 - 11905: 0x88CB,\n\t22519 - 11905: 0x88CC,\n\t22520 - 11905: 0xDBFC,\n\t22521 - 11905: 0xC5E0,\n\t22522 - 11905: 0xBBF9,\n\t22523 - 11905: 0x88CD,\n\t22524 - 11905: 0x88CE,\n\t22525 - 11905: 0xDCA3,\n\t22526 - 11905: 0x88CF,\n\t22527 - 11905: 0x88D0,\n\t22528 - 11905: 0xDCA5,\n\t22529 - 11905: 0x88D1,\n\t22530 - 11905: 0xCCC3,\n\t22531 - 11905: 0x88D2,\n\t22532 - 11905: 0x88D3,\n\t22533 - 11905: 0x88D4,\n\t22534 - 11905: 0xB6D1,\n\t22535 - 11905: 0xDDC0,\n\t22536 - 11905: 0x88D5,\n\t22537 - 11905: 0x88D6,\n\t22538 - 11905: 0x88D7,\n\t22539 - 11905: 0xDCA1,\n\t22540 - 11905: 0x88D8,\n\t22541 - 11905: 0xDCA2,\n\t22542 - 11905: 0x88D9,\n\t22543 - 11905: 0x88DA,\n\t22544 - 11905: 0x88DB,\n\t22545 - 11905: 0xC7B5,\n\t22546 - 11905: 0x88DC,\n\t22547 - 11905: 0x88DD,\n\t22548 - 11905: 0x88DE,\n\t22549 - 11905: 0xB6E9,\n\t22550 - 11905: 0x88DF,\n\t22551 - 11905: 0x88E0,\n\t22552 - 11905: 0x88E1,\n\t22553 - 11905: 0xDCA7,\n\t22554 - 11905: 0x88E2,\n\t22555 - 11905: 0x88E3,\n\t22556 - 11905: 0x88E4,\n\t22557 - 11905: 0x88E5,\n\t22558 - 11905: 0xDCA6,\n\t22559 - 11905: 0x88E6,\n\t22560 - 11905: 0xDCA9,\n\t22561 - 11905: 0xB1A4,\n\t22562 - 11905: 0x88E7,\n\t22563 - 11905: 0x88E8,\n\t22564 - 11905: 0xB5CC,\n\t22565 - 11905: 0x88E9,\n\t22566 - 11905: 0x88EA,\n\t22567 - 11905: 0x88EB,\n\t22568 - 11905: 0x88EC,\n\t22569 - 11905: 0x88ED,\n\t22570 - 11905: 0xBFB0,\n\t22571 - 11905: 0x88EE,\n\t22572 - 11905: 0x88EF,\n\t22573 - 11905: 0x88F0,\n\t22574 - 11905: 0x88F1,\n\t22575 - 11905: 0x88F2,\n\t22576 - 11905: 0xD1DF,\n\t22577 - 11905: 0x88F3,\n\t22578 - 11905: 0x88F4,\n\t22579 - 11905: 0x88F5,\n\t22580 - 11905: 0x88F6,\n\t22581 - 11905: 0xB6C2,\n\t22582 - 11905: 0x88F7,\n\t22583 - 11905: 0x88F8,\n\t22584 - 11905: 0x88F9,\n\t22585 - 11905: 0x88FA,\n\t22586 - 11905: 0x88FB,\n\t22587 - 11905: 0x88FC,\n\t22588 - 11905: 0x88FD,\n\t22589 - 11905: 0x88FE,\n\t22590 - 11905: 0x8940,\n\t22591 - 11905: 0x8941,\n\t22592 - 11905: 0x8942,\n\t22593 - 11905: 0x8943,\n\t22594 - 11905: 0x8944,\n\t22595 - 11905: 0x8945,\n\t22596 - 11905: 0xDCA8,\n\t22597 - 11905: 0x8946,\n\t22598 - 11905: 0x8947,\n\t22599 - 11905: 0x8948,\n\t22600 - 11905: 0x8949,\n\t22601 - 11905: 0x894A,\n\t22602 - 11905: 0x894B,\n\t22603 - 11905: 0x894C,\n\t22604 - 11905: 0xCBFA,\n\t22605 - 11905: 0xEBF3,\n\t22606 - 11905: 0x894D,\n\t22607 - 11905: 0x894E,\n\t22608 - 11905: 0x894F,\n\t22609 - 11905: 0xCBDC,\n\t22610 - 11905: 0x8950,\n\t22611 - 11905: 0x8951,\n\t22612 - 11905: 0xCBFE,\n\t22613 - 11905: 0x8952,\n\t22614 - 11905: 0x8953,\n\t22615 - 11905: 0x8954,\n\t22616 - 11905: 0xCCC1,\n\t22617 - 11905: 0x8955,\n\t22618 - 11905: 0x8956,\n\t22619 - 11905: 0x8957,\n\t22620 - 11905: 0x8958,\n\t22621 - 11905: 0x8959,\n\t22622 - 11905: 0xC8FB,\n\t22623 - 11905: 0x895A,\n\t22624 - 11905: 0x895B,\n\t22625 - 11905: 0x895C,\n\t22626 - 11905: 0x895D,\n\t22627 - 11905: 0x895E,\n\t22628 - 11905: 0x895F,\n\t22629 - 11905: 0xDCAA,\n\t22630 - 11905: 0x8960,\n\t22631 - 11905: 0x8961,\n\t22632 - 11905: 0x8962,\n\t22633 - 11905: 0x8963,\n\t22634 - 11905: 0x8964,\n\t22635 - 11905: 0xCCEE,\n\t22636 - 11905: 0xDCAB,\n\t22637 - 11905: 0x8965,\n\t22638 - 11905: 0x8966,\n\t22639 - 11905: 0x8967,\n\t22640 - 11905: 0x8968,\n\t22641 - 11905: 0x8969,\n\t22642 - 11905: 0x896A,\n\t22643 - 11905: 0x896B,\n\t22644 - 11905: 0x896C,\n\t22645 - 11905: 0x896D,\n\t22646 - 11905: 0x896E,\n\t22647 - 11905: 0x896F,\n\t22648 - 11905: 0x8970,\n\t22649 - 11905: 0x8971,\n\t22650 - 11905: 0x8972,\n\t22651 - 11905: 0x8973,\n\t22652 - 11905: 0x8974,\n\t22653 - 11905: 0x8975,\n\t22654 - 11905: 0xDBD3,\n\t22655 - 11905: 0x8976,\n\t22656 - 11905: 0xDCAF,\n\t22657 - 11905: 0xDCAC,\n\t22658 - 11905: 0x8977,\n\t22659 - 11905: 0xBEB3,\n\t22660 - 11905: 0x8978,\n\t22661 - 11905: 0xCAFB,\n\t22662 - 11905: 0x8979,\n\t22663 - 11905: 0x897A,\n\t22664 - 11905: 0x897B,\n\t22665 - 11905: 0xDCAD,\n\t22666 - 11905: 0x897C,\n\t22667 - 11905: 0x897D,\n\t22668 - 11905: 0x897E,\n\t22669 - 11905: 0x8980,\n\t22670 - 11905: 0x8981,\n\t22671 - 11905: 0x8982,\n\t22672 - 11905: 0x8983,\n\t22673 - 11905: 0x8984,\n\t22674 - 11905: 0xC9CA,\n\t22675 - 11905: 0xC4B9,\n\t22676 - 11905: 0x8985,\n\t22677 - 11905: 0x8986,\n\t22678 - 11905: 0x8987,\n\t22679 - 11905: 0x8988,\n\t22680 - 11905: 0x8989,\n\t22681 - 11905: 0xC7BD,\n\t22682 - 11905: 0xDCAE,\n\t22683 - 11905: 0x898A,\n\t22684 - 11905: 0x898B,\n\t22685 - 11905: 0x898C,\n\t22686 - 11905: 0xD4F6,\n\t22687 - 11905: 0xD0E6,\n\t22688 - 11905: 0x898D,\n\t22689 - 11905: 0x898E,\n\t22690 - 11905: 0x898F,\n\t22691 - 11905: 0x8990,\n\t22692 - 11905: 0x8991,\n\t22693 - 11905: 0x8992,\n\t22694 - 11905: 0x8993,\n\t22695 - 11905: 0x8994,\n\t22696 - 11905: 0xC4AB,\n\t22697 - 11905: 0xB6D5,\n\t22698 - 11905: 0x8995,\n\t22699 - 11905: 0x8996,\n\t22700 - 11905: 0x8997,\n\t22701 - 11905: 0x8998,\n\t22702 - 11905: 0x8999,\n\t22703 - 11905: 0x899A,\n\t22704 - 11905: 0x899B,\n\t22705 - 11905: 0x899C,\n\t22706 - 11905: 0x899D,\n\t22707 - 11905: 0x899E,\n\t22708 - 11905: 0x899F,\n\t22709 - 11905: 0x89A0,\n\t22710 - 11905: 0x89A1,\n\t22711 - 11905: 0x89A2,\n\t22712 - 11905: 0x89A3,\n\t22713 - 11905: 0x89A4,\n\t22714 - 11905: 0x89A5,\n\t22715 - 11905: 0x89A6,\n\t22716 - 11905: 0xDBD4,\n\t22717 - 11905: 0x89A7,\n\t22718 - 11905: 0x89A8,\n\t22719 - 11905: 0x89A9,\n\t22720 - 11905: 0x89AA,\n\t22721 - 11905: 0xB1DA,\n\t22722 - 11905: 0x89AB,\n\t22723 - 11905: 0x89AC,\n\t22724 - 11905: 0x89AD,\n\t22725 - 11905: 0xDBD5,\n\t22726 - 11905: 0x89AE,\n\t22727 - 11905: 0x89AF,\n\t22728 - 11905: 0x89B0,\n\t22729 - 11905: 0x89B1,\n\t22730 - 11905: 0x89B2,\n\t22731 - 11905: 0x89B3,\n\t22732 - 11905: 0x89B4,\n\t22733 - 11905: 0x89B5,\n\t22734 - 11905: 0x89B6,\n\t22735 - 11905: 0x89B7,\n\t22736 - 11905: 0x89B8,\n\t22737 - 11905: 0xDBD6,\n\t22738 - 11905: 0x89B9,\n\t22739 - 11905: 0x89BA,\n\t22740 - 11905: 0x89BB,\n\t22741 - 11905: 0xBABE,\n\t22742 - 11905: 0x89BC,\n\t22743 - 11905: 0x89BD,\n\t22744 - 11905: 0x89BE,\n\t22745 - 11905: 0x89BF,\n\t22746 - 11905: 0x89C0,\n\t22747 - 11905: 0x89C1,\n\t22748 - 11905: 0x89C2,\n\t22749 - 11905: 0x89C3,\n\t22750 - 11905: 0x89C4,\n\t22751 - 11905: 0x89C5,\n\t22752 - 11905: 0x89C6,\n\t22753 - 11905: 0x89C7,\n\t22754 - 11905: 0x89C8,\n\t22755 - 11905: 0x89C9,\n\t22756 - 11905: 0xC8C0,\n\t22757 - 11905: 0x89CA,\n\t22758 - 11905: 0x89CB,\n\t22759 - 11905: 0x89CC,\n\t22760 - 11905: 0x89CD,\n\t22761 - 11905: 0x89CE,\n\t22762 - 11905: 0x89CF,\n\t22763 - 11905: 0xCABF,\n\t22764 - 11905: 0xC8C9,\n\t22765 - 11905: 0x89D0,\n\t22766 - 11905: 0xD7B3,\n\t22767 - 11905: 0x89D1,\n\t22768 - 11905: 0xC9F9,\n\t22769 - 11905: 0x89D2,\n\t22770 - 11905: 0x89D3,\n\t22771 - 11905: 0xBFC7,\n\t22772 - 11905: 0x89D4,\n\t22773 - 11905: 0x89D5,\n\t22774 - 11905: 0xBAF8,\n\t22775 - 11905: 0x89D6,\n\t22776 - 11905: 0x89D7,\n\t22777 - 11905: 0xD2BC,\n\t22778 - 11905: 0x89D8,\n\t22779 - 11905: 0x89D9,\n\t22780 - 11905: 0x89DA,\n\t22781 - 11905: 0x89DB,\n\t22782 - 11905: 0x89DC,\n\t22783 - 11905: 0x89DD,\n\t22784 - 11905: 0x89DE,\n\t22785 - 11905: 0x89DF,\n\t22786 - 11905: 0xE2BA,\n\t22787 - 11905: 0x89E0,\n\t22788 - 11905: 0xB4A6,\n\t22789 - 11905: 0x89E1,\n\t22790 - 11905: 0x89E2,\n\t22791 - 11905: 0xB1B8,\n\t22792 - 11905: 0x89E3,\n\t22793 - 11905: 0x89E4,\n\t22794 - 11905: 0x89E5,\n\t22795 - 11905: 0x89E6,\n\t22796 - 11905: 0x89E7,\n\t22797 - 11905: 0xB8B4,\n\t22798 - 11905: 0x89E8,\n\t22799 - 11905: 0xCFC4,\n\t22800 - 11905: 0x89E9,\n\t22801 - 11905: 0x89EA,\n\t22802 - 11905: 0x89EB,\n\t22803 - 11905: 0x89EC,\n\t22804 - 11905: 0xD9E7,\n\t22805 - 11905: 0xCFA6,\n\t22806 - 11905: 0xCDE2,\n\t22807 - 11905: 0x89ED,\n\t22808 - 11905: 0x89EE,\n\t22809 - 11905: 0xD9ED,\n\t22810 - 11905: 0xB6E0,\n\t22811 - 11905: 0x89EF,\n\t22812 - 11905: 0xD2B9,\n\t22813 - 11905: 0x89F0,\n\t22814 - 11905: 0x89F1,\n\t22815 - 11905: 0xB9BB,\n\t22816 - 11905: 0x89F2,\n\t22817 - 11905: 0x89F3,\n\t22818 - 11905: 0x89F4,\n\t22819 - 11905: 0x89F5,\n\t22820 - 11905: 0xE2B9,\n\t22821 - 11905: 0xE2B7,\n\t22822 - 11905: 0x89F6,\n\t22823 - 11905: 0xB4F3,\n\t22824 - 11905: 0x89F7,\n\t22825 - 11905: 0xCCEC,\n\t22826 - 11905: 0xCCAB,\n\t22827 - 11905: 0xB7F2,\n\t22828 - 11905: 0x89F8,\n\t22829 - 11905: 0xD8B2,\n\t22830 - 11905: 0xD1EB,\n\t22831 - 11905: 0xBABB,\n\t22832 - 11905: 0x89F9,\n\t22833 - 11905: 0xCAA7,\n\t22834 - 11905: 0x89FA,\n\t22835 - 11905: 0x89FB,\n\t22836 - 11905: 0xCDB7,\n\t22837 - 11905: 0x89FC,\n\t22838 - 11905: 0x89FD,\n\t22839 - 11905: 0xD2C4,\n\t22840 - 11905: 0xBFE4,\n\t22841 - 11905: 0xBCD0,\n\t22842 - 11905: 0xB6E1,\n\t22843 - 11905: 0x89FE,\n\t22844 - 11905: 0xDEC5,\n\t22845 - 11905: 0x8A40,\n\t22846 - 11905: 0x8A41,\n\t22847 - 11905: 0x8A42,\n\t22848 - 11905: 0x8A43,\n\t22849 - 11905: 0xDEC6,\n\t22850 - 11905: 0xDBBC,\n\t22851 - 11905: 0x8A44,\n\t22852 - 11905: 0xD1D9,\n\t22853 - 11905: 0x8A45,\n\t22854 - 11905: 0x8A46,\n\t22855 - 11905: 0xC6E6,\n\t22856 - 11905: 0xC4CE,\n\t22857 - 11905: 0xB7EE,\n\t22858 - 11905: 0x8A47,\n\t22859 - 11905: 0xB7DC,\n\t22860 - 11905: 0x8A48,\n\t22861 - 11905: 0x8A49,\n\t22862 - 11905: 0xBFFC,\n\t22863 - 11905: 0xD7E0,\n\t22864 - 11905: 0x8A4A,\n\t22865 - 11905: 0xC6F5,\n\t22866 - 11905: 0x8A4B,\n\t22867 - 11905: 0x8A4C,\n\t22868 - 11905: 0xB1BC,\n\t22869 - 11905: 0xDEC8,\n\t22870 - 11905: 0xBDB1,\n\t22871 - 11905: 0xCCD7,\n\t22872 - 11905: 0xDECA,\n\t22873 - 11905: 0x8A4D,\n\t22874 - 11905: 0xDEC9,\n\t22875 - 11905: 0x8A4E,\n\t22876 - 11905: 0x8A4F,\n\t22877 - 11905: 0x8A50,\n\t22878 - 11905: 0x8A51,\n\t22879 - 11905: 0x8A52,\n\t22880 - 11905: 0xB5EC,\n\t22881 - 11905: 0x8A53,\n\t22882 - 11905: 0xC9DD,\n\t22883 - 11905: 0x8A54,\n\t22884 - 11905: 0x8A55,\n\t22885 - 11905: 0xB0C2,\n\t22886 - 11905: 0x8A56,\n\t22887 - 11905: 0x8A57,\n\t22888 - 11905: 0x8A58,\n\t22889 - 11905: 0x8A59,\n\t22890 - 11905: 0x8A5A,\n\t22891 - 11905: 0x8A5B,\n\t22892 - 11905: 0x8A5C,\n\t22893 - 11905: 0x8A5D,\n\t22894 - 11905: 0x8A5E,\n\t22895 - 11905: 0x8A5F,\n\t22896 - 11905: 0x8A60,\n\t22897 - 11905: 0x8A61,\n\t22898 - 11905: 0x8A62,\n\t22899 - 11905: 0xC5AE,\n\t22900 - 11905: 0xC5AB,\n\t22901 - 11905: 0x8A63,\n\t22902 - 11905: 0xC4CC,\n\t22903 - 11905: 0x8A64,\n\t22904 - 11905: 0xBCE9,\n\t22905 - 11905: 0xCBFD,\n\t22906 - 11905: 0x8A65,\n\t22907 - 11905: 0x8A66,\n\t22908 - 11905: 0x8A67,\n\t22909 - 11905: 0xBAC3,\n\t22910 - 11905: 0x8A68,\n\t22911 - 11905: 0x8A69,\n\t22912 - 11905: 0x8A6A,\n\t22913 - 11905: 0xE5F9,\n\t22914 - 11905: 0xC8E7,\n\t22915 - 11905: 0xE5FA,\n\t22916 - 11905: 0xCDFD,\n\t22917 - 11905: 0x8A6B,\n\t22918 - 11905: 0xD7B1,\n\t22919 - 11905: 0xB8BE,\n\t22920 - 11905: 0xC2E8,\n\t22921 - 11905: 0x8A6C,\n\t22922 - 11905: 0xC8D1,\n\t22923 - 11905: 0x8A6D,\n\t22924 - 11905: 0x8A6E,\n\t22925 - 11905: 0xE5FB,\n\t22926 - 11905: 0x8A6F,\n\t22927 - 11905: 0x8A70,\n\t22928 - 11905: 0x8A71,\n\t22929 - 11905: 0x8A72,\n\t22930 - 11905: 0xB6CA,\n\t22931 - 11905: 0xBCCB,\n\t22932 - 11905: 0x8A73,\n\t22933 - 11905: 0x8A74,\n\t22934 - 11905: 0xD1FD,\n\t22935 - 11905: 0xE6A1,\n\t22936 - 11905: 0x8A75,\n\t22937 - 11905: 0xC3EE,\n\t22938 - 11905: 0x8A76,\n\t22939 - 11905: 0x8A77,\n\t22940 - 11905: 0x8A78,\n\t22941 - 11905: 0x8A79,\n\t22942 - 11905: 0xE6A4,\n\t22943 - 11905: 0x8A7A,\n\t22944 - 11905: 0x8A7B,\n\t22945 - 11905: 0x8A7C,\n\t22946 - 11905: 0x8A7D,\n\t22947 - 11905: 0xE5FE,\n\t22948 - 11905: 0xE6A5,\n\t22949 - 11905: 0xCDD7,\n\t22950 - 11905: 0x8A7E,\n\t22951 - 11905: 0x8A80,\n\t22952 - 11905: 0xB7C1,\n\t22953 - 11905: 0xE5FC,\n\t22954 - 11905: 0xE5FD,\n\t22955 - 11905: 0xE6A3,\n\t22956 - 11905: 0x8A81,\n\t22957 - 11905: 0x8A82,\n\t22958 - 11905: 0xC4DD,\n\t22959 - 11905: 0xE6A8,\n\t22960 - 11905: 0x8A83,\n\t22961 - 11905: 0x8A84,\n\t22962 - 11905: 0xE6A7,\n\t22963 - 11905: 0x8A85,\n\t22964 - 11905: 0x8A86,\n\t22965 - 11905: 0x8A87,\n\t22966 - 11905: 0x8A88,\n\t22967 - 11905: 0x8A89,\n\t22968 - 11905: 0x8A8A,\n\t22969 - 11905: 0xC3C3,\n\t22970 - 11905: 0x8A8B,\n\t22971 - 11905: 0xC6DE,\n\t22972 - 11905: 0x8A8C,\n\t22973 - 11905: 0x8A8D,\n\t22974 - 11905: 0xE6AA,\n\t22975 - 11905: 0x8A8E,\n\t22976 - 11905: 0x8A8F,\n\t22977 - 11905: 0x8A90,\n\t22978 - 11905: 0x8A91,\n\t22979 - 11905: 0x8A92,\n\t22980 - 11905: 0x8A93,\n\t22981 - 11905: 0x8A94,\n\t22982 - 11905: 0xC4B7,\n\t22983 - 11905: 0x8A95,\n\t22984 - 11905: 0x8A96,\n\t22985 - 11905: 0x8A97,\n\t22986 - 11905: 0xE6A2,\n\t22987 - 11905: 0xCABC,\n\t22988 - 11905: 0x8A98,\n\t22989 - 11905: 0x8A99,\n\t22990 - 11905: 0x8A9A,\n\t22991 - 11905: 0x8A9B,\n\t22992 - 11905: 0xBDE3,\n\t22993 - 11905: 0xB9C3,\n\t22994 - 11905: 0xE6A6,\n\t22995 - 11905: 0xD0D5,\n\t22996 - 11905: 0xCEAF,\n\t22997 - 11905: 0x8A9C,\n\t22998 - 11905: 0x8A9D,\n\t22999 - 11905: 0xE6A9,\n\t23000 - 11905: 0xE6B0,\n\t23001 - 11905: 0x8A9E,\n\t23002 - 11905: 0xD2A6,\n\t23003 - 11905: 0x8A9F,\n\t23004 - 11905: 0xBDAA,\n\t23005 - 11905: 0xE6AD,\n\t23006 - 11905: 0x8AA0,\n\t23007 - 11905: 0x8AA1,\n\t23008 - 11905: 0x8AA2,\n\t23009 - 11905: 0x8AA3,\n\t23010 - 11905: 0x8AA4,\n\t23011 - 11905: 0xE6AF,\n\t23012 - 11905: 0x8AA5,\n\t23013 - 11905: 0xC0D1,\n\t23014 - 11905: 0x8AA6,\n\t23015 - 11905: 0x8AA7,\n\t23016 - 11905: 0xD2CC,\n\t23017 - 11905: 0x8AA8,\n\t23018 - 11905: 0x8AA9,\n\t23019 - 11905: 0x8AAA,\n\t23020 - 11905: 0xBCA7,\n\t23021 - 11905: 0x8AAB,\n\t23022 - 11905: 0x8AAC,\n\t23023 - 11905: 0x8AAD,\n\t23024 - 11905: 0x8AAE,\n\t23025 - 11905: 0x8AAF,\n\t23026 - 11905: 0x8AB0,\n\t23027 - 11905: 0x8AB1,\n\t23028 - 11905: 0x8AB2,\n\t23029 - 11905: 0x8AB3,\n\t23030 - 11905: 0x8AB4,\n\t23031 - 11905: 0x8AB5,\n\t23032 - 11905: 0x8AB6,\n\t23033 - 11905: 0xE6B1,\n\t23034 - 11905: 0x8AB7,\n\t23035 - 11905: 0xD2F6,\n\t23036 - 11905: 0x8AB8,\n\t23037 - 11905: 0x8AB9,\n\t23038 - 11905: 0x8ABA,\n\t23039 - 11905: 0xD7CB,\n\t23040 - 11905: 0x8ABB,\n\t23041 - 11905: 0xCDFE,\n\t23042 - 11905: 0x8ABC,\n\t23043 - 11905: 0xCDDE,\n\t23044 - 11905: 0xC2A6,\n\t23045 - 11905: 0xE6AB,\n\t23046 - 11905: 0xE6AC,\n\t23047 - 11905: 0xBDBF,\n\t23048 - 11905: 0xE6AE,\n\t23049 - 11905: 0xE6B3,\n\t23050 - 11905: 0x8ABD,\n\t23051 - 11905: 0x8ABE,\n\t23052 - 11905: 0xE6B2,\n\t23053 - 11905: 0x8ABF,\n\t23054 - 11905: 0x8AC0,\n\t23055 - 11905: 0x8AC1,\n\t23056 - 11905: 0x8AC2,\n\t23057 - 11905: 0xE6B6,\n\t23058 - 11905: 0x8AC3,\n\t23059 - 11905: 0xE6B8,\n\t23060 - 11905: 0x8AC4,\n\t23061 - 11905: 0x8AC5,\n\t23062 - 11905: 0x8AC6,\n\t23063 - 11905: 0x8AC7,\n\t23064 - 11905: 0xC4EF,\n\t23065 - 11905: 0x8AC8,\n\t23066 - 11905: 0x8AC9,\n\t23067 - 11905: 0x8ACA,\n\t23068 - 11905: 0xC4C8,\n\t23069 - 11905: 0x8ACB,\n\t23070 - 11905: 0x8ACC,\n\t23071 - 11905: 0xBEEA,\n\t23072 - 11905: 0xC9EF,\n\t23073 - 11905: 0x8ACD,\n\t23074 - 11905: 0x8ACE,\n\t23075 - 11905: 0xE6B7,\n\t23076 - 11905: 0x8ACF,\n\t23077 - 11905: 0xB6F0,\n\t23078 - 11905: 0x8AD0,\n\t23079 - 11905: 0x8AD1,\n\t23080 - 11905: 0x8AD2,\n\t23081 - 11905: 0xC3E4,\n\t23082 - 11905: 0x8AD3,\n\t23083 - 11905: 0x8AD4,\n\t23084 - 11905: 0x8AD5,\n\t23085 - 11905: 0x8AD6,\n\t23086 - 11905: 0x8AD7,\n\t23087 - 11905: 0x8AD8,\n\t23088 - 11905: 0x8AD9,\n\t23089 - 11905: 0xD3E9,\n\t23090 - 11905: 0xE6B4,\n\t23091 - 11905: 0x8ADA,\n\t23092 - 11905: 0xE6B5,\n\t23093 - 11905: 0x8ADB,\n\t23094 - 11905: 0xC8A2,\n\t23095 - 11905: 0x8ADC,\n\t23096 - 11905: 0x8ADD,\n\t23097 - 11905: 0x8ADE,\n\t23098 - 11905: 0x8ADF,\n\t23099 - 11905: 0x8AE0,\n\t23100 - 11905: 0xE6BD,\n\t23101 - 11905: 0x8AE1,\n\t23102 - 11905: 0x8AE2,\n\t23103 - 11905: 0x8AE3,\n\t23104 - 11905: 0xE6B9,\n\t23105 - 11905: 0x8AE4,\n\t23106 - 11905: 0x8AE5,\n\t23107 - 11905: 0x8AE6,\n\t23108 - 11905: 0x8AE7,\n\t23109 - 11905: 0x8AE8,\n\t23110 - 11905: 0xC6C5,\n\t23111 - 11905: 0x8AE9,\n\t23112 - 11905: 0x8AEA,\n\t23113 - 11905: 0xCDF1,\n\t23114 - 11905: 0xE6BB,\n\t23115 - 11905: 0x8AEB,\n\t23116 - 11905: 0x8AEC,\n\t23117 - 11905: 0x8AED,\n\t23118 - 11905: 0x8AEE,\n\t23119 - 11905: 0x8AEF,\n\t23120 - 11905: 0x8AF0,\n\t23121 - 11905: 0x8AF1,\n\t23122 - 11905: 0x8AF2,\n\t23123 - 11905: 0x8AF3,\n\t23124 - 11905: 0x8AF4,\n\t23125 - 11905: 0xE6BC,\n\t23126 - 11905: 0x8AF5,\n\t23127 - 11905: 0x8AF6,\n\t23128 - 11905: 0x8AF7,\n\t23129 - 11905: 0x8AF8,\n\t23130 - 11905: 0xBBE9,\n\t23131 - 11905: 0x8AF9,\n\t23132 - 11905: 0x8AFA,\n\t23133 - 11905: 0x8AFB,\n\t23134 - 11905: 0x8AFC,\n\t23135 - 11905: 0x8AFD,\n\t23136 - 11905: 0x8AFE,\n\t23137 - 11905: 0x8B40,\n\t23138 - 11905: 0xE6BE,\n\t23139 - 11905: 0x8B41,\n\t23140 - 11905: 0x8B42,\n\t23141 - 11905: 0x8B43,\n\t23142 - 11905: 0x8B44,\n\t23143 - 11905: 0xE6BA,\n\t23144 - 11905: 0x8B45,\n\t23145 - 11905: 0x8B46,\n\t23146 - 11905: 0xC0B7,\n\t23147 - 11905: 0x8B47,\n\t23148 - 11905: 0x8B48,\n\t23149 - 11905: 0x8B49,\n\t23150 - 11905: 0x8B4A,\n\t23151 - 11905: 0x8B4B,\n\t23152 - 11905: 0x8B4C,\n\t23153 - 11905: 0x8B4D,\n\t23154 - 11905: 0x8B4E,\n\t23155 - 11905: 0x8B4F,\n\t23156 - 11905: 0xD3A4,\n\t23157 - 11905: 0xE6BF,\n\t23158 - 11905: 0xC9F4,\n\t23159 - 11905: 0xE6C3,\n\t23160 - 11905: 0x8B50,\n\t23161 - 11905: 0x8B51,\n\t23162 - 11905: 0xE6C4,\n\t23163 - 11905: 0x8B52,\n\t23164 - 11905: 0x8B53,\n\t23165 - 11905: 0x8B54,\n\t23166 - 11905: 0x8B55,\n\t23167 - 11905: 0xD0F6,\n\t23168 - 11905: 0x8B56,\n\t23169 - 11905: 0x8B57,\n\t23170 - 11905: 0x8B58,\n\t23171 - 11905: 0x8B59,\n\t23172 - 11905: 0x8B5A,\n\t23173 - 11905: 0x8B5B,\n\t23174 - 11905: 0x8B5C,\n\t23175 - 11905: 0x8B5D,\n\t23176 - 11905: 0x8B5E,\n\t23177 - 11905: 0x8B5F,\n\t23178 - 11905: 0x8B60,\n\t23179 - 11905: 0x8B61,\n\t23180 - 11905: 0x8B62,\n\t23181 - 11905: 0x8B63,\n\t23182 - 11905: 0x8B64,\n\t23183 - 11905: 0x8B65,\n\t23184 - 11905: 0x8B66,\n\t23185 - 11905: 0x8B67,\n\t23186 - 11905: 0xC3BD,\n\t23187 - 11905: 0x8B68,\n\t23188 - 11905: 0x8B69,\n\t23189 - 11905: 0x8B6A,\n\t23190 - 11905: 0x8B6B,\n\t23191 - 11905: 0x8B6C,\n\t23192 - 11905: 0x8B6D,\n\t23193 - 11905: 0x8B6E,\n\t23194 - 11905: 0xC3C4,\n\t23195 - 11905: 0xE6C2,\n\t23196 - 11905: 0x8B6F,\n\t23197 - 11905: 0x8B70,\n\t23198 - 11905: 0x8B71,\n\t23199 - 11905: 0x8B72,\n\t23200 - 11905: 0x8B73,\n\t23201 - 11905: 0x8B74,\n\t23202 - 11905: 0x8B75,\n\t23203 - 11905: 0x8B76,\n\t23204 - 11905: 0x8B77,\n\t23205 - 11905: 0x8B78,\n\t23206 - 11905: 0x8B79,\n\t23207 - 11905: 0x8B7A,\n\t23208 - 11905: 0x8B7B,\n\t23209 - 11905: 0x8B7C,\n\t23210 - 11905: 0xE6C1,\n\t23211 - 11905: 0x8B7D,\n\t23212 - 11905: 0x8B7E,\n\t23213 - 11905: 0x8B80,\n\t23214 - 11905: 0x8B81,\n\t23215 - 11905: 0x8B82,\n\t23216 - 11905: 0x8B83,\n\t23217 - 11905: 0x8B84,\n\t23218 - 11905: 0xE6C7,\n\t23219 - 11905: 0xCFB1,\n\t23220 - 11905: 0x8B85,\n\t23221 - 11905: 0xEBF4,\n\t23222 - 11905: 0x8B86,\n\t23223 - 11905: 0x8B87,\n\t23224 - 11905: 0xE6CA,\n\t23225 - 11905: 0x8B88,\n\t23226 - 11905: 0x8B89,\n\t23227 - 11905: 0x8B8A,\n\t23228 - 11905: 0x8B8B,\n\t23229 - 11905: 0x8B8C,\n\t23230 - 11905: 0xE6C5,\n\t23231 - 11905: 0x8B8D,\n\t23232 - 11905: 0x8B8E,\n\t23233 - 11905: 0xBCDE,\n\t23234 - 11905: 0xC9A9,\n\t23235 - 11905: 0x8B8F,\n\t23236 - 11905: 0x8B90,\n\t23237 - 11905: 0x8B91,\n\t23238 - 11905: 0x8B92,\n\t23239 - 11905: 0x8B93,\n\t23240 - 11905: 0x8B94,\n\t23241 - 11905: 0xBCB5,\n\t23242 - 11905: 0x8B95,\n\t23243 - 11905: 0x8B96,\n\t23244 - 11905: 0xCFD3,\n\t23245 - 11905: 0x8B97,\n\t23246 - 11905: 0x8B98,\n\t23247 - 11905: 0x8B99,\n\t23248 - 11905: 0x8B9A,\n\t23249 - 11905: 0x8B9B,\n\t23250 - 11905: 0xE6C8,\n\t23251 - 11905: 0x8B9C,\n\t23252 - 11905: 0xE6C9,\n\t23253 - 11905: 0x8B9D,\n\t23254 - 11905: 0xE6CE,\n\t23255 - 11905: 0x8B9E,\n\t23256 - 11905: 0xE6D0,\n\t23257 - 11905: 0x8B9F,\n\t23258 - 11905: 0x8BA0,\n\t23259 - 11905: 0x8BA1,\n\t23260 - 11905: 0xE6D1,\n\t23261 - 11905: 0x8BA2,\n\t23262 - 11905: 0x8BA3,\n\t23263 - 11905: 0x8BA4,\n\t23264 - 11905: 0xE6CB,\n\t23265 - 11905: 0xB5D5,\n\t23266 - 11905: 0x8BA5,\n\t23267 - 11905: 0xE6CC,\n\t23268 - 11905: 0x8BA6,\n\t23269 - 11905: 0x8BA7,\n\t23270 - 11905: 0xE6CF,\n\t23271 - 11905: 0x8BA8,\n\t23272 - 11905: 0x8BA9,\n\t23273 - 11905: 0xC4DB,\n\t23274 - 11905: 0x8BAA,\n\t23275 - 11905: 0xE6C6,\n\t23276 - 11905: 0x8BAB,\n\t23277 - 11905: 0x8BAC,\n\t23278 - 11905: 0x8BAD,\n\t23279 - 11905: 0x8BAE,\n\t23280 - 11905: 0x8BAF,\n\t23281 - 11905: 0xE6CD,\n\t23282 - 11905: 0x8BB0,\n\t23283 - 11905: 0x8BB1,\n\t23284 - 11905: 0x8BB2,\n\t23285 - 11905: 0x8BB3,\n\t23286 - 11905: 0x8BB4,\n\t23287 - 11905: 0x8BB5,\n\t23288 - 11905: 0x8BB6,\n\t23289 - 11905: 0x8BB7,\n\t23290 - 11905: 0x8BB8,\n\t23291 - 11905: 0x8BB9,\n\t23292 - 11905: 0x8BBA,\n\t23293 - 11905: 0x8BBB,\n\t23294 - 11905: 0x8BBC,\n\t23295 - 11905: 0x8BBD,\n\t23296 - 11905: 0x8BBE,\n\t23297 - 11905: 0x8BBF,\n\t23298 - 11905: 0x8BC0,\n\t23299 - 11905: 0x8BC1,\n\t23300 - 11905: 0x8BC2,\n\t23301 - 11905: 0x8BC3,\n\t23302 - 11905: 0x8BC4,\n\t23303 - 11905: 0x8BC5,\n\t23304 - 11905: 0x8BC6,\n\t23305 - 11905: 0xE6D2,\n\t23306 - 11905: 0x8BC7,\n\t23307 - 11905: 0x8BC8,\n\t23308 - 11905: 0x8BC9,\n\t23309 - 11905: 0x8BCA,\n\t23310 - 11905: 0x8BCB,\n\t23311 - 11905: 0x8BCC,\n\t23312 - 11905: 0x8BCD,\n\t23313 - 11905: 0x8BCE,\n\t23314 - 11905: 0x8BCF,\n\t23315 - 11905: 0x8BD0,\n\t23316 - 11905: 0x8BD1,\n\t23317 - 11905: 0x8BD2,\n\t23318 - 11905: 0xE6D4,\n\t23319 - 11905: 0xE6D3,\n\t23320 - 11905: 0x8BD3,\n\t23321 - 11905: 0x8BD4,\n\t23322 - 11905: 0x8BD5,\n\t23323 - 11905: 0x8BD6,\n\t23324 - 11905: 0x8BD7,\n\t23325 - 11905: 0x8BD8,\n\t23326 - 11905: 0x8BD9,\n\t23327 - 11905: 0x8BDA,\n\t23328 - 11905: 0x8BDB,\n\t23329 - 11905: 0x8BDC,\n\t23330 - 11905: 0x8BDD,\n\t23331 - 11905: 0x8BDE,\n\t23332 - 11905: 0x8BDF,\n\t23333 - 11905: 0x8BE0,\n\t23334 - 11905: 0x8BE1,\n\t23335 - 11905: 0x8BE2,\n\t23336 - 11905: 0x8BE3,\n\t23337 - 11905: 0x8BE4,\n\t23338 - 11905: 0x8BE5,\n\t23339 - 11905: 0x8BE6,\n\t23340 - 11905: 0x8BE7,\n\t23341 - 11905: 0x8BE8,\n\t23342 - 11905: 0x8BE9,\n\t23343 - 11905: 0x8BEA,\n\t23344 - 11905: 0x8BEB,\n\t23345 - 11905: 0x8BEC,\n\t23346 - 11905: 0xE6D5,\n\t23347 - 11905: 0x8BED,\n\t23348 - 11905: 0xD9F8,\n\t23349 - 11905: 0x8BEE,\n\t23350 - 11905: 0x8BEF,\n\t23351 - 11905: 0xE6D6,\n\t23352 - 11905: 0x8BF0,\n\t23353 - 11905: 0x8BF1,\n\t23354 - 11905: 0x8BF2,\n\t23355 - 11905: 0x8BF3,\n\t23356 - 11905: 0x8BF4,\n\t23357 - 11905: 0x8BF5,\n\t23358 - 11905: 0x8BF6,\n\t23359 - 11905: 0x8BF7,\n\t23360 - 11905: 0xE6D7,\n\t23361 - 11905: 0x8BF8,\n\t23362 - 11905: 0x8BF9,\n\t23363 - 11905: 0x8BFA,\n\t23364 - 11905: 0x8BFB,\n\t23365 - 11905: 0x8BFC,\n\t23366 - 11905: 0x8BFD,\n\t23367 - 11905: 0x8BFE,\n\t23368 - 11905: 0x8C40,\n\t23369 - 11905: 0x8C41,\n\t23370 - 11905: 0x8C42,\n\t23371 - 11905: 0x8C43,\n\t23372 - 11905: 0x8C44,\n\t23373 - 11905: 0x8C45,\n\t23374 - 11905: 0x8C46,\n\t23375 - 11905: 0x8C47,\n\t23376 - 11905: 0xD7D3,\n\t23377 - 11905: 0xE6DD,\n\t23378 - 11905: 0x8C48,\n\t23379 - 11905: 0xE6DE,\n\t23380 - 11905: 0xBFD7,\n\t23381 - 11905: 0xD4D0,\n\t23382 - 11905: 0x8C49,\n\t23383 - 11905: 0xD7D6,\n\t23384 - 11905: 0xB4E6,\n\t23385 - 11905: 0xCBEF,\n\t23386 - 11905: 0xE6DA,\n\t23387 - 11905: 0xD8C3,\n\t23388 - 11905: 0xD7CE,\n\t23389 - 11905: 0xD0A2,\n\t23390 - 11905: 0x8C4A,\n\t23391 - 11905: 0xC3CF,\n\t23392 - 11905: 0x8C4B,\n\t23393 - 11905: 0x8C4C,\n\t23394 - 11905: 0xE6DF,\n\t23395 - 11905: 0xBCBE,\n\t23396 - 11905: 0xB9C2,\n\t23397 - 11905: 0xE6DB,\n\t23398 - 11905: 0xD1A7,\n\t23399 - 11905: 0x8C4D,\n\t23400 - 11905: 0x8C4E,\n\t23401 - 11905: 0xBAA2,\n\t23402 - 11905: 0xC2CF,\n\t23403 - 11905: 0x8C4F,\n\t23404 - 11905: 0xD8AB,\n\t23405 - 11905: 0x8C50,\n\t23406 - 11905: 0x8C51,\n\t23407 - 11905: 0x8C52,\n\t23408 - 11905: 0xCAEB,\n\t23409 - 11905: 0xE5EE,\n\t23410 - 11905: 0x8C53,\n\t23411 - 11905: 0xE6DC,\n\t23412 - 11905: 0x8C54,\n\t23413 - 11905: 0xB7F5,\n\t23414 - 11905: 0x8C55,\n\t23415 - 11905: 0x8C56,\n\t23416 - 11905: 0x8C57,\n\t23417 - 11905: 0x8C58,\n\t23418 - 11905: 0xC8E6,\n\t23419 - 11905: 0x8C59,\n\t23420 - 11905: 0x8C5A,\n\t23421 - 11905: 0xC4F5,\n\t23422 - 11905: 0x8C5B,\n\t23423 - 11905: 0x8C5C,\n\t23424 - 11905: 0xE5B2,\n\t23425 - 11905: 0xC4FE,\n\t23426 - 11905: 0x8C5D,\n\t23427 - 11905: 0xCBFC,\n\t23428 - 11905: 0xE5B3,\n\t23429 - 11905: 0xD5AC,\n\t23430 - 11905: 0x8C5E,\n\t23431 - 11905: 0xD3EE,\n\t23432 - 11905: 0xCAD8,\n\t23433 - 11905: 0xB0B2,\n\t23434 - 11905: 0x8C5F,\n\t23435 - 11905: 0xCBCE,\n\t23436 - 11905: 0xCDEA,\n\t23437 - 11905: 0x8C60,\n\t23438 - 11905: 0x8C61,\n\t23439 - 11905: 0xBAEA,\n\t23440 - 11905: 0x8C62,\n\t23441 - 11905: 0x8C63,\n\t23442 - 11905: 0x8C64,\n\t23443 - 11905: 0xE5B5,\n\t23444 - 11905: 0x8C65,\n\t23445 - 11905: 0xE5B4,\n\t23446 - 11905: 0x8C66,\n\t23447 - 11905: 0xD7DA,\n\t23448 - 11905: 0xB9D9,\n\t23449 - 11905: 0xD6E6,\n\t23450 - 11905: 0xB6A8,\n\t23451 - 11905: 0xCDF0,\n\t23452 - 11905: 0xD2CB,\n\t23453 - 11905: 0xB1A6,\n\t23454 - 11905: 0xCAB5,\n\t23455 - 11905: 0x8C67,\n\t23456 - 11905: 0xB3E8,\n\t23457 - 11905: 0xC9F3,\n\t23458 - 11905: 0xBFCD,\n\t23459 - 11905: 0xD0FB,\n\t23460 - 11905: 0xCAD2,\n\t23461 - 11905: 0xE5B6,\n\t23462 - 11905: 0xBBC2,\n\t23463 - 11905: 0x8C68,\n\t23464 - 11905: 0x8C69,\n\t23465 - 11905: 0x8C6A,\n\t23466 - 11905: 0xCFDC,\n\t23467 - 11905: 0xB9AC,\n\t23468 - 11905: 0x8C6B,\n\t23469 - 11905: 0x8C6C,\n\t23470 - 11905: 0x8C6D,\n\t23471 - 11905: 0x8C6E,\n\t23472 - 11905: 0xD4D7,\n\t23473 - 11905: 0x8C6F,\n\t23474 - 11905: 0x8C70,\n\t23475 - 11905: 0xBAA6,\n\t23476 - 11905: 0xD1E7,\n\t23477 - 11905: 0xCFFC,\n\t23478 - 11905: 0xBCD2,\n\t23479 - 11905: 0x8C71,\n\t23480 - 11905: 0xE5B7,\n\t23481 - 11905: 0xC8DD,\n\t23482 - 11905: 0x8C72,\n\t23483 - 11905: 0x8C73,\n\t23484 - 11905: 0x8C74,\n\t23485 - 11905: 0xBFED,\n\t23486 - 11905: 0xB1F6,\n\t23487 - 11905: 0xCBDE,\n\t23488 - 11905: 0x8C75,\n\t23489 - 11905: 0x8C76,\n\t23490 - 11905: 0xBCC5,\n\t23491 - 11905: 0x8C77,\n\t23492 - 11905: 0xBCC4,\n\t23493 - 11905: 0xD2FA,\n\t23494 - 11905: 0xC3DC,\n\t23495 - 11905: 0xBFDC,\n\t23496 - 11905: 0x8C78,\n\t23497 - 11905: 0x8C79,\n\t23498 - 11905: 0x8C7A,\n\t23499 - 11905: 0x8C7B,\n\t23500 - 11905: 0xB8BB,\n\t23501 - 11905: 0x8C7C,\n\t23502 - 11905: 0x8C7D,\n\t23503 - 11905: 0x8C7E,\n\t23504 - 11905: 0xC3C2,\n\t23505 - 11905: 0x8C80,\n\t23506 - 11905: 0xBAAE,\n\t23507 - 11905: 0xD4A2,\n\t23508 - 11905: 0x8C81,\n\t23509 - 11905: 0x8C82,\n\t23510 - 11905: 0x8C83,\n\t23511 - 11905: 0x8C84,\n\t23512 - 11905: 0x8C85,\n\t23513 - 11905: 0x8C86,\n\t23514 - 11905: 0x8C87,\n\t23515 - 11905: 0x8C88,\n\t23516 - 11905: 0x8C89,\n\t23517 - 11905: 0xC7DE,\n\t23518 - 11905: 0xC4AF,\n\t23519 - 11905: 0xB2EC,\n\t23520 - 11905: 0x8C8A,\n\t23521 - 11905: 0xB9D1,\n\t23522 - 11905: 0x8C8B,\n\t23523 - 11905: 0x8C8C,\n\t23524 - 11905: 0xE5BB,\n\t23525 - 11905: 0xC1C8,\n\t23526 - 11905: 0x8C8D,\n\t23527 - 11905: 0x8C8E,\n\t23528 - 11905: 0xD5AF,\n\t23529 - 11905: 0x8C8F,\n\t23530 - 11905: 0x8C90,\n\t23531 - 11905: 0x8C91,\n\t23532 - 11905: 0x8C92,\n\t23533 - 11905: 0x8C93,\n\t23534 - 11905: 0xE5BC,\n\t23535 - 11905: 0x8C94,\n\t23536 - 11905: 0xE5BE,\n\t23537 - 11905: 0x8C95,\n\t23538 - 11905: 0x8C96,\n\t23539 - 11905: 0x8C97,\n\t23540 - 11905: 0x8C98,\n\t23541 - 11905: 0x8C99,\n\t23542 - 11905: 0x8C9A,\n\t23543 - 11905: 0x8C9B,\n\t23544 - 11905: 0xB4E7,\n\t23545 - 11905: 0xB6D4,\n\t23546 - 11905: 0xCBC2,\n\t23547 - 11905: 0xD1B0,\n\t23548 - 11905: 0xB5BC,\n\t23549 - 11905: 0x8C9C,\n\t23550 - 11905: 0x8C9D,\n\t23551 - 11905: 0xCAD9,\n\t23552 - 11905: 0x8C9E,\n\t23553 - 11905: 0xB7E2,\n\t23554 - 11905: 0x8C9F,\n\t23555 - 11905: 0x8CA0,\n\t23556 - 11905: 0xC9E4,\n\t23557 - 11905: 0x8CA1,\n\t23558 - 11905: 0xBDAB,\n\t23559 - 11905: 0x8CA2,\n\t23560 - 11905: 0x8CA3,\n\t23561 - 11905: 0xCEBE,\n\t23562 - 11905: 0xD7F0,\n\t23563 - 11905: 0x8CA4,\n\t23564 - 11905: 0x8CA5,\n\t23565 - 11905: 0x8CA6,\n\t23566 - 11905: 0x8CA7,\n\t23567 - 11905: 0xD0A1,\n\t23568 - 11905: 0x8CA8,\n\t23569 - 11905: 0xC9D9,\n\t23570 - 11905: 0x8CA9,\n\t23571 - 11905: 0x8CAA,\n\t23572 - 11905: 0xB6FB,\n\t23573 - 11905: 0xE6D8,\n\t23574 - 11905: 0xBCE2,\n\t23575 - 11905: 0x8CAB,\n\t23576 - 11905: 0xB3BE,\n\t23577 - 11905: 0x8CAC,\n\t23578 - 11905: 0xC9D0,\n\t23579 - 11905: 0x8CAD,\n\t23580 - 11905: 0xE6D9,\n\t23581 - 11905: 0xB3A2,\n\t23582 - 11905: 0x8CAE,\n\t23583 - 11905: 0x8CAF,\n\t23584 - 11905: 0x8CB0,\n\t23585 - 11905: 0x8CB1,\n\t23586 - 11905: 0xDECC,\n\t23587 - 11905: 0x8CB2,\n\t23588 - 11905: 0xD3C8,\n\t23589 - 11905: 0xDECD,\n\t23590 - 11905: 0x8CB3,\n\t23591 - 11905: 0xD2A2,\n\t23592 - 11905: 0x8CB4,\n\t23593 - 11905: 0x8CB5,\n\t23594 - 11905: 0x8CB6,\n\t23595 - 11905: 0x8CB7,\n\t23596 - 11905: 0xDECE,\n\t23597 - 11905: 0x8CB8,\n\t23598 - 11905: 0x8CB9,\n\t23599 - 11905: 0x8CBA,\n\t23600 - 11905: 0x8CBB,\n\t23601 - 11905: 0xBECD,\n\t23602 - 11905: 0x8CBC,\n\t23603 - 11905: 0x8CBD,\n\t23604 - 11905: 0xDECF,\n\t23605 - 11905: 0x8CBE,\n\t23606 - 11905: 0x8CBF,\n\t23607 - 11905: 0x8CC0,\n\t23608 - 11905: 0xCAAC,\n\t23609 - 11905: 0xD2FC,\n\t23610 - 11905: 0xB3DF,\n\t23611 - 11905: 0xE5EA,\n\t23612 - 11905: 0xC4E1,\n\t23613 - 11905: 0xBEA1,\n\t23614 - 11905: 0xCEB2,\n\t23615 - 11905: 0xC4F2,\n\t23616 - 11905: 0xBED6,\n\t23617 - 11905: 0xC6A8,\n\t23618 - 11905: 0xB2E3,\n\t23619 - 11905: 0x8CC1,\n\t23620 - 11905: 0x8CC2,\n\t23621 - 11905: 0xBED3,\n\t23622 - 11905: 0x8CC3,\n\t23623 - 11905: 0x8CC4,\n\t23624 - 11905: 0xC7FC,\n\t23625 - 11905: 0xCCEB,\n\t23626 - 11905: 0xBDEC,\n\t23627 - 11905: 0xCEDD,\n\t23628 - 11905: 0x8CC5,\n\t23629 - 11905: 0x8CC6,\n\t23630 - 11905: 0xCABA,\n\t23631 - 11905: 0xC6C1,\n\t23632 - 11905: 0xE5EC,\n\t23633 - 11905: 0xD0BC,\n\t23634 - 11905: 0x8CC7,\n\t23635 - 11905: 0x8CC8,\n\t23636 - 11905: 0x8CC9,\n\t23637 - 11905: 0xD5B9,\n\t23638 - 11905: 0x8CCA,\n\t23639 - 11905: 0x8CCB,\n\t23640 - 11905: 0x8CCC,\n\t23641 - 11905: 0xE5ED,\n\t23642 - 11905: 0x8CCD,\n\t23643 - 11905: 0x8CCE,\n\t23644 - 11905: 0x8CCF,\n\t23645 - 11905: 0x8CD0,\n\t23646 - 11905: 0xCAF4,\n\t23647 - 11905: 0x8CD1,\n\t23648 - 11905: 0xCDC0,\n\t23649 - 11905: 0xC2C5,\n\t23650 - 11905: 0x8CD2,\n\t23651 - 11905: 0xE5EF,\n\t23652 - 11905: 0x8CD3,\n\t23653 - 11905: 0xC2C4,\n\t23654 - 11905: 0xE5F0,\n\t23655 - 11905: 0x8CD4,\n\t23656 - 11905: 0x8CD5,\n\t23657 - 11905: 0x8CD6,\n\t23658 - 11905: 0x8CD7,\n\t23659 - 11905: 0x8CD8,\n\t23660 - 11905: 0x8CD9,\n\t23661 - 11905: 0x8CDA,\n\t23662 - 11905: 0xE5F8,\n\t23663 - 11905: 0xCDCD,\n\t23664 - 11905: 0x8CDB,\n\t23665 - 11905: 0xC9BD,\n\t23666 - 11905: 0x8CDC,\n\t23667 - 11905: 0x8CDD,\n\t23668 - 11905: 0x8CDE,\n\t23669 - 11905: 0x8CDF,\n\t23670 - 11905: 0x8CE0,\n\t23671 - 11905: 0x8CE1,\n\t23672 - 11905: 0x8CE2,\n\t23673 - 11905: 0xD2D9,\n\t23674 - 11905: 0xE1A8,\n\t23675 - 11905: 0x8CE3,\n\t23676 - 11905: 0x8CE4,\n\t23677 - 11905: 0x8CE5,\n\t23678 - 11905: 0x8CE6,\n\t23679 - 11905: 0xD3EC,\n\t23680 - 11905: 0x8CE7,\n\t23681 - 11905: 0xCBEA,\n\t23682 - 11905: 0xC6F1,\n\t23683 - 11905: 0x8CE8,\n\t23684 - 11905: 0x8CE9,\n\t23685 - 11905: 0x8CEA,\n\t23686 - 11905: 0x8CEB,\n\t23687 - 11905: 0x8CEC,\n\t23688 - 11905: 0xE1AC,\n\t23689 - 11905: 0x8CED,\n\t23690 - 11905: 0x8CEE,\n\t23691 - 11905: 0x8CEF,\n\t23692 - 11905: 0xE1A7,\n\t23693 - 11905: 0xE1A9,\n\t23694 - 11905: 0x8CF0,\n\t23695 - 11905: 0x8CF1,\n\t23696 - 11905: 0xE1AA,\n\t23697 - 11905: 0xE1AF,\n\t23698 - 11905: 0x8CF2,\n\t23699 - 11905: 0x8CF3,\n\t23700 - 11905: 0xB2ED,\n\t23701 - 11905: 0x8CF4,\n\t23702 - 11905: 0xE1AB,\n\t23703 - 11905: 0xB8DA,\n\t23704 - 11905: 0xE1AD,\n\t23705 - 11905: 0xE1AE,\n\t23706 - 11905: 0xE1B0,\n\t23707 - 11905: 0xB5BA,\n\t23708 - 11905: 0xE1B1,\n\t23709 - 11905: 0x8CF5,\n\t23710 - 11905: 0x8CF6,\n\t23711 - 11905: 0x8CF7,\n\t23712 - 11905: 0x8CF8,\n\t23713 - 11905: 0x8CF9,\n\t23714 - 11905: 0xE1B3,\n\t23715 - 11905: 0xE1B8,\n\t23716 - 11905: 0x8CFA,\n\t23717 - 11905: 0x8CFB,\n\t23718 - 11905: 0x8CFC,\n\t23719 - 11905: 0x8CFD,\n\t23720 - 11905: 0x8CFE,\n\t23721 - 11905: 0xD1D2,\n\t23722 - 11905: 0x8D40,\n\t23723 - 11905: 0xE1B6,\n\t23724 - 11905: 0xE1B5,\n\t23725 - 11905: 0xC1EB,\n\t23726 - 11905: 0x8D41,\n\t23727 - 11905: 0x8D42,\n\t23728 - 11905: 0x8D43,\n\t23729 - 11905: 0xE1B7,\n\t23730 - 11905: 0x8D44,\n\t23731 - 11905: 0xD4C0,\n\t23732 - 11905: 0x8D45,\n\t23733 - 11905: 0xE1B2,\n\t23734 - 11905: 0x8D46,\n\t23735 - 11905: 0xE1BA,\n\t23736 - 11905: 0xB0B6,\n\t23737 - 11905: 0x8D47,\n\t23738 - 11905: 0x8D48,\n\t23739 - 11905: 0x8D49,\n\t23740 - 11905: 0x8D4A,\n\t23741 - 11905: 0xE1B4,\n\t23742 - 11905: 0x8D4B,\n\t23743 - 11905: 0xBFF9,\n\t23744 - 11905: 0x8D4C,\n\t23745 - 11905: 0xE1B9,\n\t23746 - 11905: 0x8D4D,\n\t23747 - 11905: 0x8D4E,\n\t23748 - 11905: 0xE1BB,\n\t23749 - 11905: 0x8D4F,\n\t23750 - 11905: 0x8D50,\n\t23751 - 11905: 0x8D51,\n\t23752 - 11905: 0x8D52,\n\t23753 - 11905: 0x8D53,\n\t23754 - 11905: 0x8D54,\n\t23755 - 11905: 0xE1BE,\n\t23756 - 11905: 0x8D55,\n\t23757 - 11905: 0x8D56,\n\t23758 - 11905: 0x8D57,\n\t23759 - 11905: 0x8D58,\n\t23760 - 11905: 0x8D59,\n\t23761 - 11905: 0x8D5A,\n\t23762 - 11905: 0xE1BC,\n\t23763 - 11905: 0x8D5B,\n\t23764 - 11905: 0x8D5C,\n\t23765 - 11905: 0x8D5D,\n\t23766 - 11905: 0x8D5E,\n\t23767 - 11905: 0x8D5F,\n\t23768 - 11905: 0x8D60,\n\t23769 - 11905: 0xD6C5,\n\t23770 - 11905: 0x8D61,\n\t23771 - 11905: 0x8D62,\n\t23772 - 11905: 0x8D63,\n\t23773 - 11905: 0x8D64,\n\t23774 - 11905: 0x8D65,\n\t23775 - 11905: 0x8D66,\n\t23776 - 11905: 0x8D67,\n\t23777 - 11905: 0xCFBF,\n\t23778 - 11905: 0x8D68,\n\t23779 - 11905: 0x8D69,\n\t23780 - 11905: 0xE1BD,\n\t23781 - 11905: 0xE1BF,\n\t23782 - 11905: 0xC2CD,\n\t23783 - 11905: 0x8D6A,\n\t23784 - 11905: 0xB6EB,\n\t23785 - 11905: 0x8D6B,\n\t23786 - 11905: 0xD3F8,\n\t23787 - 11905: 0x8D6C,\n\t23788 - 11905: 0x8D6D,\n\t23789 - 11905: 0xC7CD,\n\t23790 - 11905: 0x8D6E,\n\t23791 - 11905: 0x8D6F,\n\t23792 - 11905: 0xB7E5,\n\t23793 - 11905: 0x8D70,\n\t23794 - 11905: 0x8D71,\n\t23795 - 11905: 0x8D72,\n\t23796 - 11905: 0x8D73,\n\t23797 - 11905: 0x8D74,\n\t23798 - 11905: 0x8D75,\n\t23799 - 11905: 0x8D76,\n\t23800 - 11905: 0x8D77,\n\t23801 - 11905: 0x8D78,\n\t23802 - 11905: 0x8D79,\n\t23803 - 11905: 0xBEFE,\n\t23804 - 11905: 0x8D7A,\n\t23805 - 11905: 0x8D7B,\n\t23806 - 11905: 0x8D7C,\n\t23807 - 11905: 0x8D7D,\n\t23808 - 11905: 0x8D7E,\n\t23809 - 11905: 0x8D80,\n\t23810 - 11905: 0xE1C0,\n\t23811 - 11905: 0xE1C1,\n\t23812 - 11905: 0x8D81,\n\t23813 - 11905: 0x8D82,\n\t23814 - 11905: 0xE1C7,\n\t23815 - 11905: 0xB3E7,\n\t23816 - 11905: 0x8D83,\n\t23817 - 11905: 0x8D84,\n\t23818 - 11905: 0x8D85,\n\t23819 - 11905: 0x8D86,\n\t23820 - 11905: 0x8D87,\n\t23821 - 11905: 0x8D88,\n\t23822 - 11905: 0xC6E9,\n\t23823 - 11905: 0x8D89,\n\t23824 - 11905: 0x8D8A,\n\t23825 - 11905: 0x8D8B,\n\t23826 - 11905: 0x8D8C,\n\t23827 - 11905: 0x8D8D,\n\t23828 - 11905: 0xB4DE,\n\t23829 - 11905: 0x8D8E,\n\t23830 - 11905: 0xD1C2,\n\t23831 - 11905: 0x8D8F,\n\t23832 - 11905: 0x8D90,\n\t23833 - 11905: 0x8D91,\n\t23834 - 11905: 0x8D92,\n\t23835 - 11905: 0xE1C8,\n\t23836 - 11905: 0x8D93,\n\t23837 - 11905: 0x8D94,\n\t23838 - 11905: 0xE1C6,\n\t23839 - 11905: 0x8D95,\n\t23840 - 11905: 0x8D96,\n\t23841 - 11905: 0x8D97,\n\t23842 - 11905: 0x8D98,\n\t23843 - 11905: 0x8D99,\n\t23844 - 11905: 0xE1C5,\n\t23845 - 11905: 0x8D9A,\n\t23846 - 11905: 0xE1C3,\n\t23847 - 11905: 0xE1C2,\n\t23848 - 11905: 0x8D9B,\n\t23849 - 11905: 0xB1C0,\n\t23850 - 11905: 0x8D9C,\n\t23851 - 11905: 0x8D9D,\n\t23852 - 11905: 0x8D9E,\n\t23853 - 11905: 0xD5B8,\n\t23854 - 11905: 0xE1C4,\n\t23855 - 11905: 0x8D9F,\n\t23856 - 11905: 0x8DA0,\n\t23857 - 11905: 0x8DA1,\n\t23858 - 11905: 0x8DA2,\n\t23859 - 11905: 0x8DA3,\n\t23860 - 11905: 0xE1CB,\n\t23861 - 11905: 0x8DA4,\n\t23862 - 11905: 0x8DA5,\n\t23863 - 11905: 0x8DA6,\n\t23864 - 11905: 0x8DA7,\n\t23865 - 11905: 0x8DA8,\n\t23866 - 11905: 0x8DA9,\n\t23867 - 11905: 0x8DAA,\n\t23868 - 11905: 0x8DAB,\n\t23869 - 11905: 0xE1CC,\n\t23870 - 11905: 0xE1CA,\n\t23871 - 11905: 0x8DAC,\n\t23872 - 11905: 0x8DAD,\n\t23873 - 11905: 0x8DAE,\n\t23874 - 11905: 0x8DAF,\n\t23875 - 11905: 0x8DB0,\n\t23876 - 11905: 0x8DB1,\n\t23877 - 11905: 0x8DB2,\n\t23878 - 11905: 0x8DB3,\n\t23879 - 11905: 0xEFFA,\n\t23880 - 11905: 0x8DB4,\n\t23881 - 11905: 0x8DB5,\n\t23882 - 11905: 0xE1D3,\n\t23883 - 11905: 0xE1D2,\n\t23884 - 11905: 0xC7B6,\n\t23885 - 11905: 0x8DB6,\n\t23886 - 11905: 0x8DB7,\n\t23887 - 11905: 0x8DB8,\n\t23888 - 11905: 0x8DB9,\n\t23889 - 11905: 0x8DBA,\n\t23890 - 11905: 0x8DBB,\n\t23891 - 11905: 0x8DBC,\n\t23892 - 11905: 0x8DBD,\n\t23893 - 11905: 0x8DBE,\n\t23894 - 11905: 0x8DBF,\n\t23895 - 11905: 0x8DC0,\n\t23896 - 11905: 0xE1C9,\n\t23897 - 11905: 0x8DC1,\n\t23898 - 11905: 0x8DC2,\n\t23899 - 11905: 0xE1CE,\n\t23900 - 11905: 0x8DC3,\n\t23901 - 11905: 0xE1D0,\n\t23902 - 11905: 0x8DC4,\n\t23903 - 11905: 0x8DC5,\n\t23904 - 11905: 0x8DC6,\n\t23905 - 11905: 0x8DC7,\n\t23906 - 11905: 0x8DC8,\n\t23907 - 11905: 0x8DC9,\n\t23908 - 11905: 0x8DCA,\n\t23909 - 11905: 0x8DCB,\n\t23910 - 11905: 0x8DCC,\n\t23911 - 11905: 0x8DCD,\n\t23912 - 11905: 0x8DCE,\n\t23913 - 11905: 0xE1D4,\n\t23914 - 11905: 0x8DCF,\n\t23915 - 11905: 0xE1D1,\n\t23916 - 11905: 0xE1CD,\n\t23917 - 11905: 0x8DD0,\n\t23918 - 11905: 0x8DD1,\n\t23919 - 11905: 0xE1CF,\n\t23920 - 11905: 0x8DD2,\n\t23921 - 11905: 0x8DD3,\n\t23922 - 11905: 0x8DD4,\n\t23923 - 11905: 0x8DD5,\n\t23924 - 11905: 0xE1D5,\n\t23925 - 11905: 0x8DD6,\n\t23926 - 11905: 0x8DD7,\n\t23927 - 11905: 0x8DD8,\n\t23928 - 11905: 0x8DD9,\n\t23929 - 11905: 0x8DDA,\n\t23930 - 11905: 0x8DDB,\n\t23931 - 11905: 0x8DDC,\n\t23932 - 11905: 0x8DDD,\n\t23933 - 11905: 0x8DDE,\n\t23934 - 11905: 0x8DDF,\n\t23935 - 11905: 0x8DE0,\n\t23936 - 11905: 0x8DE1,\n\t23937 - 11905: 0x8DE2,\n\t23938 - 11905: 0xE1D6,\n\t23939 - 11905: 0x8DE3,\n\t23940 - 11905: 0x8DE4,\n\t23941 - 11905: 0x8DE5,\n\t23942 - 11905: 0x8DE6,\n\t23943 - 11905: 0x8DE7,\n\t23944 - 11905: 0x8DE8,\n\t23945 - 11905: 0x8DE9,\n\t23946 - 11905: 0x8DEA,\n\t23947 - 11905: 0x8DEB,\n\t23948 - 11905: 0x8DEC,\n\t23949 - 11905: 0x8DED,\n\t23950 - 11905: 0x8DEE,\n\t23951 - 11905: 0x8DEF,\n\t23952 - 11905: 0x8DF0,\n\t23953 - 11905: 0x8DF1,\n\t23954 - 11905: 0x8DF2,\n\t23955 - 11905: 0x8DF3,\n\t23956 - 11905: 0x8DF4,\n\t23957 - 11905: 0x8DF5,\n\t23958 - 11905: 0x8DF6,\n\t23959 - 11905: 0x8DF7,\n\t23960 - 11905: 0x8DF8,\n\t23961 - 11905: 0xE1D7,\n\t23962 - 11905: 0x8DF9,\n\t23963 - 11905: 0x8DFA,\n\t23964 - 11905: 0x8DFB,\n\t23965 - 11905: 0xE1D8,\n\t23966 - 11905: 0x8DFC,\n\t23967 - 11905: 0x8DFD,\n\t23968 - 11905: 0x8DFE,\n\t23969 - 11905: 0x8E40,\n\t23970 - 11905: 0x8E41,\n\t23971 - 11905: 0x8E42,\n\t23972 - 11905: 0x8E43,\n\t23973 - 11905: 0x8E44,\n\t23974 - 11905: 0x8E45,\n\t23975 - 11905: 0x8E46,\n\t23976 - 11905: 0x8E47,\n\t23977 - 11905: 0x8E48,\n\t23978 - 11905: 0x8E49,\n\t23979 - 11905: 0x8E4A,\n\t23980 - 11905: 0x8E4B,\n\t23981 - 11905: 0x8E4C,\n\t23982 - 11905: 0x8E4D,\n\t23983 - 11905: 0x8E4E,\n\t23984 - 11905: 0x8E4F,\n\t23985 - 11905: 0x8E50,\n\t23986 - 11905: 0x8E51,\n\t23987 - 11905: 0x8E52,\n\t23988 - 11905: 0x8E53,\n\t23989 - 11905: 0x8E54,\n\t23990 - 11905: 0x8E55,\n\t23991 - 11905: 0xE1DA,\n\t23992 - 11905: 0x8E56,\n\t23993 - 11905: 0x8E57,\n\t23994 - 11905: 0x8E58,\n\t23995 - 11905: 0x8E59,\n\t23996 - 11905: 0x8E5A,\n\t23997 - 11905: 0x8E5B,\n\t23998 - 11905: 0x8E5C,\n\t23999 - 11905: 0x8E5D,\n\t24000 - 11905: 0x8E5E,\n\t24001 - 11905: 0x8E5F,\n\t24002 - 11905: 0x8E60,\n\t24003 - 11905: 0x8E61,\n\t24004 - 11905: 0x8E62,\n\t24005 - 11905: 0xE1DB,\n\t24006 - 11905: 0x8E63,\n\t24007 - 11905: 0x8E64,\n\t24008 - 11905: 0x8E65,\n\t24009 - 11905: 0x8E66,\n\t24010 - 11905: 0x8E67,\n\t24011 - 11905: 0x8E68,\n\t24012 - 11905: 0x8E69,\n\t24013 - 11905: 0xCEA1,\n\t24014 - 11905: 0x8E6A,\n\t24015 - 11905: 0x8E6B,\n\t24016 - 11905: 0x8E6C,\n\t24017 - 11905: 0x8E6D,\n\t24018 - 11905: 0x8E6E,\n\t24019 - 11905: 0x8E6F,\n\t24020 - 11905: 0x8E70,\n\t24021 - 11905: 0x8E71,\n\t24022 - 11905: 0x8E72,\n\t24023 - 11905: 0x8E73,\n\t24024 - 11905: 0x8E74,\n\t24025 - 11905: 0x8E75,\n\t24026 - 11905: 0x8E76,\n\t24027 - 11905: 0xE7DD,\n\t24028 - 11905: 0x8E77,\n\t24029 - 11905: 0xB4A8,\n\t24030 - 11905: 0xD6DD,\n\t24031 - 11905: 0x8E78,\n\t24032 - 11905: 0x8E79,\n\t24033 - 11905: 0xD1B2,\n\t24034 - 11905: 0xB3B2,\n\t24035 - 11905: 0x8E7A,\n\t24036 - 11905: 0x8E7B,\n\t24037 - 11905: 0xB9A4,\n\t24038 - 11905: 0xD7F3,\n\t24039 - 11905: 0xC7C9,\n\t24040 - 11905: 0xBEDE,\n\t24041 - 11905: 0xB9AE,\n\t24042 - 11905: 0x8E7C,\n\t24043 - 11905: 0xCED7,\n\t24044 - 11905: 0x8E7D,\n\t24045 - 11905: 0x8E7E,\n\t24046 - 11905: 0xB2EE,\n\t24047 - 11905: 0xDBCF,\n\t24048 - 11905: 0x8E80,\n\t24049 - 11905: 0xBCBA,\n\t24050 - 11905: 0xD2D1,\n\t24051 - 11905: 0xCBC8,\n\t24052 - 11905: 0xB0CD,\n\t24053 - 11905: 0x8E81,\n\t24054 - 11905: 0x8E82,\n\t24055 - 11905: 0xCFEF,\n\t24056 - 11905: 0x8E83,\n\t24057 - 11905: 0x8E84,\n\t24058 - 11905: 0x8E85,\n\t24059 - 11905: 0x8E86,\n\t24060 - 11905: 0x8E87,\n\t24061 - 11905: 0xD9E3,\n\t24062 - 11905: 0xBDED,\n\t24063 - 11905: 0x8E88,\n\t24064 - 11905: 0x8E89,\n\t24065 - 11905: 0xB1D2,\n\t24066 - 11905: 0xCAD0,\n\t24067 - 11905: 0xB2BC,\n\t24068 - 11905: 0x8E8A,\n\t24069 - 11905: 0xCBA7,\n\t24070 - 11905: 0xB7AB,\n\t24071 - 11905: 0x8E8B,\n\t24072 - 11905: 0xCAA6,\n\t24073 - 11905: 0x8E8C,\n\t24074 - 11905: 0x8E8D,\n\t24075 - 11905: 0x8E8E,\n\t24076 - 11905: 0xCFA3,\n\t24077 - 11905: 0x8E8F,\n\t24078 - 11905: 0x8E90,\n\t24079 - 11905: 0xE0F8,\n\t24080 - 11905: 0xD5CA,\n\t24081 - 11905: 0xE0FB,\n\t24082 - 11905: 0x8E91,\n\t24083 - 11905: 0x8E92,\n\t24084 - 11905: 0xE0FA,\n\t24085 - 11905: 0xC5C1,\n\t24086 - 11905: 0xCCFB,\n\t24087 - 11905: 0x8E93,\n\t24088 - 11905: 0xC1B1,\n\t24089 - 11905: 0xE0F9,\n\t24090 - 11905: 0xD6E3,\n\t24091 - 11905: 0xB2AF,\n\t24092 - 11905: 0xD6C4,\n\t24093 - 11905: 0xB5DB,\n\t24094 - 11905: 0x8E94,\n\t24095 - 11905: 0x8E95,\n\t24096 - 11905: 0x8E96,\n\t24097 - 11905: 0x8E97,\n\t24098 - 11905: 0x8E98,\n\t24099 - 11905: 0x8E99,\n\t24100 - 11905: 0x8E9A,\n\t24101 - 11905: 0x8E9B,\n\t24102 - 11905: 0xB4F8,\n\t24103 - 11905: 0xD6A1,\n\t24104 - 11905: 0x8E9C,\n\t24105 - 11905: 0x8E9D,\n\t24106 - 11905: 0x8E9E,\n\t24107 - 11905: 0x8E9F,\n\t24108 - 11905: 0x8EA0,\n\t24109 - 11905: 0xCFAF,\n\t24110 - 11905: 0xB0EF,\n\t24111 - 11905: 0x8EA1,\n\t24112 - 11905: 0x8EA2,\n\t24113 - 11905: 0xE0FC,\n\t24114 - 11905: 0x8EA3,\n\t24115 - 11905: 0x8EA4,\n\t24116 - 11905: 0x8EA5,\n\t24117 - 11905: 0x8EA6,\n\t24118 - 11905: 0x8EA7,\n\t24119 - 11905: 0xE1A1,\n\t24120 - 11905: 0xB3A3,\n\t24121 - 11905: 0x8EA8,\n\t24122 - 11905: 0x8EA9,\n\t24123 - 11905: 0xE0FD,\n\t24124 - 11905: 0xE0FE,\n\t24125 - 11905: 0xC3B1,\n\t24126 - 11905: 0x8EAA,\n\t24127 - 11905: 0x8EAB,\n\t24128 - 11905: 0x8EAC,\n\t24129 - 11905: 0x8EAD,\n\t24130 - 11905: 0xC3DD,\n\t24131 - 11905: 0x8EAE,\n\t24132 - 11905: 0xE1A2,\n\t24133 - 11905: 0xB7F9,\n\t24134 - 11905: 0x8EAF,\n\t24135 - 11905: 0x8EB0,\n\t24136 - 11905: 0x8EB1,\n\t24137 - 11905: 0x8EB2,\n\t24138 - 11905: 0x8EB3,\n\t24139 - 11905: 0x8EB4,\n\t24140 - 11905: 0xBBCF,\n\t24141 - 11905: 0x8EB5,\n\t24142 - 11905: 0x8EB6,\n\t24143 - 11905: 0x8EB7,\n\t24144 - 11905: 0x8EB8,\n\t24145 - 11905: 0x8EB9,\n\t24146 - 11905: 0x8EBA,\n\t24147 - 11905: 0x8EBB,\n\t24148 - 11905: 0xE1A3,\n\t24149 - 11905: 0xC4BB,\n\t24150 - 11905: 0x8EBC,\n\t24151 - 11905: 0x8EBD,\n\t24152 - 11905: 0x8EBE,\n\t24153 - 11905: 0x8EBF,\n\t24154 - 11905: 0x8EC0,\n\t24155 - 11905: 0xE1A4,\n\t24156 - 11905: 0x8EC1,\n\t24157 - 11905: 0x8EC2,\n\t24158 - 11905: 0xE1A5,\n\t24159 - 11905: 0x8EC3,\n\t24160 - 11905: 0x8EC4,\n\t24161 - 11905: 0xE1A6,\n\t24162 - 11905: 0xB4B1,\n\t24163 - 11905: 0x8EC5,\n\t24164 - 11905: 0x8EC6,\n\t24165 - 11905: 0x8EC7,\n\t24166 - 11905: 0x8EC8,\n\t24167 - 11905: 0x8EC9,\n\t24168 - 11905: 0x8ECA,\n\t24169 - 11905: 0x8ECB,\n\t24170 - 11905: 0x8ECC,\n\t24171 - 11905: 0x8ECD,\n\t24172 - 11905: 0x8ECE,\n\t24173 - 11905: 0x8ECF,\n\t24174 - 11905: 0x8ED0,\n\t24175 - 11905: 0x8ED1,\n\t24176 - 11905: 0x8ED2,\n\t24177 - 11905: 0x8ED3,\n\t24178 - 11905: 0xB8C9,\n\t24179 - 11905: 0xC6BD,\n\t24180 - 11905: 0xC4EA,\n\t24181 - 11905: 0x8ED4,\n\t24182 - 11905: 0xB2A2,\n\t24183 - 11905: 0x8ED5,\n\t24184 - 11905: 0xD0D2,\n\t24185 - 11905: 0x8ED6,\n\t24186 - 11905: 0xE7DB,\n\t24187 - 11905: 0xBBC3,\n\t24188 - 11905: 0xD3D7,\n\t24189 - 11905: 0xD3C4,\n\t24190 - 11905: 0x8ED7,\n\t24191 - 11905: 0xB9E3,\n\t24192 - 11905: 0xE2CF,\n\t24193 - 11905: 0x8ED8,\n\t24194 - 11905: 0x8ED9,\n\t24195 - 11905: 0x8EDA,\n\t24196 - 11905: 0xD7AF,\n\t24197 - 11905: 0x8EDB,\n\t24198 - 11905: 0xC7EC,\n\t24199 - 11905: 0xB1D3,\n\t24200 - 11905: 0x8EDC,\n\t24201 - 11905: 0x8EDD,\n\t24202 - 11905: 0xB4B2,\n\t24203 - 11905: 0xE2D1,\n\t24204 - 11905: 0x8EDE,\n\t24205 - 11905: 0x8EDF,\n\t24206 - 11905: 0x8EE0,\n\t24207 - 11905: 0xD0F2,\n\t24208 - 11905: 0xC2AE,\n\t24209 - 11905: 0xE2D0,\n\t24210 - 11905: 0x8EE1,\n\t24211 - 11905: 0xBFE2,\n\t24212 - 11905: 0xD3A6,\n\t24213 - 11905: 0xB5D7,\n\t24214 - 11905: 0xE2D2,\n\t24215 - 11905: 0xB5EA,\n\t24216 - 11905: 0x8EE2,\n\t24217 - 11905: 0xC3ED,\n\t24218 - 11905: 0xB8FD,\n\t24219 - 11905: 0x8EE3,\n\t24220 - 11905: 0xB8AE,\n\t24221 - 11905: 0x8EE4,\n\t24222 - 11905: 0xC5D3,\n\t24223 - 11905: 0xB7CF,\n\t24224 - 11905: 0xE2D4,\n\t24225 - 11905: 0x8EE5,\n\t24226 - 11905: 0x8EE6,\n\t24227 - 11905: 0x8EE7,\n\t24228 - 11905: 0x8EE8,\n\t24229 - 11905: 0xE2D3,\n\t24230 - 11905: 0xB6C8,\n\t24231 - 11905: 0xD7F9,\n\t24232 - 11905: 0x8EE9,\n\t24233 - 11905: 0x8EEA,\n\t24234 - 11905: 0x8EEB,\n\t24235 - 11905: 0x8EEC,\n\t24236 - 11905: 0x8EED,\n\t24237 - 11905: 0xCDA5,\n\t24238 - 11905: 0x8EEE,\n\t24239 - 11905: 0x8EEF,\n\t24240 - 11905: 0x8EF0,\n\t24241 - 11905: 0x8EF1,\n\t24242 - 11905: 0x8EF2,\n\t24243 - 11905: 0xE2D8,\n\t24244 - 11905: 0x8EF3,\n\t24245 - 11905: 0xE2D6,\n\t24246 - 11905: 0xCAFC,\n\t24247 - 11905: 0xBFB5,\n\t24248 - 11905: 0xD3B9,\n\t24249 - 11905: 0xE2D5,\n\t24250 - 11905: 0x8EF4,\n\t24251 - 11905: 0x8EF5,\n\t24252 - 11905: 0x8EF6,\n\t24253 - 11905: 0x8EF7,\n\t24254 - 11905: 0xE2D7,\n\t24255 - 11905: 0x8EF8,\n\t24256 - 11905: 0x8EF9,\n\t24257 - 11905: 0x8EFA,\n\t24258 - 11905: 0x8EFB,\n\t24259 - 11905: 0x8EFC,\n\t24260 - 11905: 0x8EFD,\n\t24261 - 11905: 0x8EFE,\n\t24262 - 11905: 0x8F40,\n\t24263 - 11905: 0x8F41,\n\t24264 - 11905: 0x8F42,\n\t24265 - 11905: 0xC1AE,\n\t24266 - 11905: 0xC0C8,\n\t24267 - 11905: 0x8F43,\n\t24268 - 11905: 0x8F44,\n\t24269 - 11905: 0x8F45,\n\t24270 - 11905: 0x8F46,\n\t24271 - 11905: 0x8F47,\n\t24272 - 11905: 0x8F48,\n\t24273 - 11905: 0xE2DB,\n\t24274 - 11905: 0xE2DA,\n\t24275 - 11905: 0xC0AA,\n\t24276 - 11905: 0x8F49,\n\t24277 - 11905: 0x8F4A,\n\t24278 - 11905: 0xC1CE,\n\t24279 - 11905: 0x8F4B,\n\t24280 - 11905: 0x8F4C,\n\t24281 - 11905: 0x8F4D,\n\t24282 - 11905: 0x8F4E,\n\t24283 - 11905: 0xE2DC,\n\t24284 - 11905: 0x8F4F,\n\t24285 - 11905: 0x8F50,\n\t24286 - 11905: 0x8F51,\n\t24287 - 11905: 0x8F52,\n\t24288 - 11905: 0x8F53,\n\t24289 - 11905: 0x8F54,\n\t24290 - 11905: 0x8F55,\n\t24291 - 11905: 0x8F56,\n\t24292 - 11905: 0x8F57,\n\t24293 - 11905: 0x8F58,\n\t24294 - 11905: 0x8F59,\n\t24295 - 11905: 0x8F5A,\n\t24296 - 11905: 0xE2DD,\n\t24297 - 11905: 0x8F5B,\n\t24298 - 11905: 0xE2DE,\n\t24299 - 11905: 0x8F5C,\n\t24300 - 11905: 0x8F5D,\n\t24301 - 11905: 0x8F5E,\n\t24302 - 11905: 0x8F5F,\n\t24303 - 11905: 0x8F60,\n\t24304 - 11905: 0x8F61,\n\t24305 - 11905: 0x8F62,\n\t24306 - 11905: 0x8F63,\n\t24307 - 11905: 0x8F64,\n\t24308 - 11905: 0xDBC8,\n\t24309 - 11905: 0x8F65,\n\t24310 - 11905: 0xD1D3,\n\t24311 - 11905: 0xCDA2,\n\t24312 - 11905: 0x8F66,\n\t24313 - 11905: 0x8F67,\n\t24314 - 11905: 0xBDA8,\n\t24315 - 11905: 0x8F68,\n\t24316 - 11905: 0x8F69,\n\t24317 - 11905: 0x8F6A,\n\t24318 - 11905: 0xDEC3,\n\t24319 - 11905: 0xD8A5,\n\t24320 - 11905: 0xBFAA,\n\t24321 - 11905: 0xDBCD,\n\t24322 - 11905: 0xD2EC,\n\t24323 - 11905: 0xC6FA,\n\t24324 - 11905: 0xC5AA,\n\t24325 - 11905: 0x8F6B,\n\t24326 - 11905: 0x8F6C,\n\t24327 - 11905: 0x8F6D,\n\t24328 - 11905: 0xDEC4,\n\t24329 - 11905: 0x8F6E,\n\t24330 - 11905: 0xB1D7,\n\t24331 - 11905: 0xDFAE,\n\t24332 - 11905: 0x8F6F,\n\t24333 - 11905: 0x8F70,\n\t24334 - 11905: 0x8F71,\n\t24335 - 11905: 0xCABD,\n\t24336 - 11905: 0x8F72,\n\t24337 - 11905: 0xDFB1,\n\t24338 - 11905: 0x8F73,\n\t24339 - 11905: 0xB9AD,\n\t24340 - 11905: 0x8F74,\n\t24341 - 11905: 0xD2FD,\n\t24342 - 11905: 0x8F75,\n\t24343 - 11905: 0xB8A5,\n\t24344 - 11905: 0xBAEB,\n\t24345 - 11905: 0x8F76,\n\t24346 - 11905: 0x8F77,\n\t24347 - 11905: 0xB3DA,\n\t24348 - 11905: 0x8F78,\n\t24349 - 11905: 0x8F79,\n\t24350 - 11905: 0x8F7A,\n\t24351 - 11905: 0xB5DC,\n\t24352 - 11905: 0xD5C5,\n\t24353 - 11905: 0x8F7B,\n\t24354 - 11905: 0x8F7C,\n\t24355 - 11905: 0x8F7D,\n\t24356 - 11905: 0x8F7E,\n\t24357 - 11905: 0xC3D6,\n\t24358 - 11905: 0xCFD2,\n\t24359 - 11905: 0xBBA1,\n\t24360 - 11905: 0x8F80,\n\t24361 - 11905: 0xE5F3,\n\t24362 - 11905: 0xE5F2,\n\t24363 - 11905: 0x8F81,\n\t24364 - 11905: 0x8F82,\n\t24365 - 11905: 0xE5F4,\n\t24366 - 11905: 0x8F83,\n\t24367 - 11905: 0xCDE4,\n\t24368 - 11905: 0x8F84,\n\t24369 - 11905: 0xC8F5,\n\t24370 - 11905: 0x8F85,\n\t24371 - 11905: 0x8F86,\n\t24372 - 11905: 0x8F87,\n\t24373 - 11905: 0x8F88,\n\t24374 - 11905: 0x8F89,\n\t24375 - 11905: 0x8F8A,\n\t24376 - 11905: 0x8F8B,\n\t24377 - 11905: 0xB5AF,\n\t24378 - 11905: 0xC7BF,\n\t24379 - 11905: 0x8F8C,\n\t24380 - 11905: 0xE5F6,\n\t24381 - 11905: 0x8F8D,\n\t24382 - 11905: 0x8F8E,\n\t24383 - 11905: 0x8F8F,\n\t24384 - 11905: 0xECB0,\n\t24385 - 11905: 0x8F90,\n\t24386 - 11905: 0x8F91,\n\t24387 - 11905: 0x8F92,\n\t24388 - 11905: 0x8F93,\n\t24389 - 11905: 0x8F94,\n\t24390 - 11905: 0x8F95,\n\t24391 - 11905: 0x8F96,\n\t24392 - 11905: 0x8F97,\n\t24393 - 11905: 0x8F98,\n\t24394 - 11905: 0x8F99,\n\t24395 - 11905: 0x8F9A,\n\t24396 - 11905: 0x8F9B,\n\t24397 - 11905: 0x8F9C,\n\t24398 - 11905: 0x8F9D,\n\t24399 - 11905: 0x8F9E,\n\t24400 - 11905: 0xE5E6,\n\t24401 - 11905: 0x8F9F,\n\t24402 - 11905: 0xB9E9,\n\t24403 - 11905: 0xB5B1,\n\t24404 - 11905: 0x8FA0,\n\t24405 - 11905: 0xC2BC,\n\t24406 - 11905: 0xE5E8,\n\t24407 - 11905: 0xE5E7,\n\t24408 - 11905: 0xE5E9,\n\t24409 - 11905: 0x8FA1,\n\t24410 - 11905: 0x8FA2,\n\t24411 - 11905: 0x8FA3,\n\t24412 - 11905: 0x8FA4,\n\t24413 - 11905: 0xD2CD,\n\t24414 - 11905: 0x8FA5,\n\t24415 - 11905: 0x8FA6,\n\t24416 - 11905: 0x8FA7,\n\t24417 - 11905: 0xE1EA,\n\t24418 - 11905: 0xD0CE,\n\t24419 - 11905: 0x8FA8,\n\t24420 - 11905: 0xCDAE,\n\t24421 - 11905: 0x8FA9,\n\t24422 - 11905: 0xD1E5,\n\t24423 - 11905: 0x8FAA,\n\t24424 - 11905: 0x8FAB,\n\t24425 - 11905: 0xB2CA,\n\t24426 - 11905: 0xB1EB,\n\t24427 - 11905: 0x8FAC,\n\t24428 - 11905: 0xB1F2,\n\t24429 - 11905: 0xC5ED,\n\t24430 - 11905: 0x8FAD,\n\t24431 - 11905: 0x8FAE,\n\t24432 - 11905: 0xD5C3,\n\t24433 - 11905: 0xD3B0,\n\t24434 - 11905: 0x8FAF,\n\t24435 - 11905: 0xE1DC,\n\t24436 - 11905: 0x8FB0,\n\t24437 - 11905: 0x8FB1,\n\t24438 - 11905: 0x8FB2,\n\t24439 - 11905: 0xE1DD,\n\t24440 - 11905: 0x8FB3,\n\t24441 - 11905: 0xD2DB,\n\t24442 - 11905: 0x8FB4,\n\t24443 - 11905: 0xB3B9,\n\t24444 - 11905: 0xB1CB,\n\t24445 - 11905: 0x8FB5,\n\t24446 - 11905: 0x8FB6,\n\t24447 - 11905: 0x8FB7,\n\t24448 - 11905: 0xCDF9,\n\t24449 - 11905: 0xD5F7,\n\t24450 - 11905: 0xE1DE,\n\t24451 - 11905: 0x8FB8,\n\t24452 - 11905: 0xBEB6,\n\t24453 - 11905: 0xB4FD,\n\t24454 - 11905: 0x8FB9,\n\t24455 - 11905: 0xE1DF,\n\t24456 - 11905: 0xBADC,\n\t24457 - 11905: 0xE1E0,\n\t24458 - 11905: 0xBBB2,\n\t24459 - 11905: 0xC2C9,\n\t24460 - 11905: 0xE1E1,\n\t24461 - 11905: 0x8FBA,\n\t24462 - 11905: 0x8FBB,\n\t24463 - 11905: 0x8FBC,\n\t24464 - 11905: 0xD0EC,\n\t24465 - 11905: 0x8FBD,\n\t24466 - 11905: 0xCDBD,\n\t24467 - 11905: 0x8FBE,\n\t24468 - 11905: 0x8FBF,\n\t24469 - 11905: 0xE1E2,\n\t24470 - 11905: 0x8FC0,\n\t24471 - 11905: 0xB5C3,\n\t24472 - 11905: 0xC5C7,\n\t24473 - 11905: 0xE1E3,\n\t24474 - 11905: 0x8FC1,\n\t24475 - 11905: 0x8FC2,\n\t24476 - 11905: 0xE1E4,\n\t24477 - 11905: 0x8FC3,\n\t24478 - 11905: 0x8FC4,\n\t24479 - 11905: 0x8FC5,\n\t24480 - 11905: 0x8FC6,\n\t24481 - 11905: 0xD3F9,\n\t24482 - 11905: 0x8FC7,\n\t24483 - 11905: 0x8FC8,\n\t24484 - 11905: 0x8FC9,\n\t24485 - 11905: 0x8FCA,\n\t24486 - 11905: 0x8FCB,\n\t24487 - 11905: 0x8FCC,\n\t24488 - 11905: 0xE1E5,\n\t24489 - 11905: 0x8FCD,\n\t24490 - 11905: 0xD1AD,\n\t24491 - 11905: 0x8FCE,\n\t24492 - 11905: 0x8FCF,\n\t24493 - 11905: 0xE1E6,\n\t24494 - 11905: 0xCEA2,\n\t24495 - 11905: 0x8FD0,\n\t24496 - 11905: 0x8FD1,\n\t24497 - 11905: 0x8FD2,\n\t24498 - 11905: 0x8FD3,\n\t24499 - 11905: 0x8FD4,\n\t24500 - 11905: 0x8FD5,\n\t24501 - 11905: 0xE1E7,\n\t24502 - 11905: 0x8FD6,\n\t24503 - 11905: 0xB5C2,\n\t24504 - 11905: 0x8FD7,\n\t24505 - 11905: 0x8FD8,\n\t24506 - 11905: 0x8FD9,\n\t24507 - 11905: 0x8FDA,\n\t24508 - 11905: 0xE1E8,\n\t24509 - 11905: 0xBBD5,\n\t24510 - 11905: 0x8FDB,\n\t24511 - 11905: 0x8FDC,\n\t24512 - 11905: 0x8FDD,\n\t24513 - 11905: 0x8FDE,\n\t24514 - 11905: 0x8FDF,\n\t24515 - 11905: 0xD0C4,\n\t24516 - 11905: 0xE2E0,\n\t24517 - 11905: 0xB1D8,\n\t24518 - 11905: 0xD2E4,\n\t24519 - 11905: 0x8FE0,\n\t24520 - 11905: 0x8FE1,\n\t24521 - 11905: 0xE2E1,\n\t24522 - 11905: 0x8FE2,\n\t24523 - 11905: 0x8FE3,\n\t24524 - 11905: 0xBCC9,\n\t24525 - 11905: 0xC8CC,\n\t24526 - 11905: 0x8FE4,\n\t24527 - 11905: 0xE2E3,\n\t24528 - 11905: 0xECFE,\n\t24529 - 11905: 0xECFD,\n\t24530 - 11905: 0xDFAF,\n\t24531 - 11905: 0x8FE5,\n\t24532 - 11905: 0x8FE6,\n\t24533 - 11905: 0x8FE7,\n\t24534 - 11905: 0xE2E2,\n\t24535 - 11905: 0xD6BE,\n\t24536 - 11905: 0xCDFC,\n\t24537 - 11905: 0xC3A6,\n\t24538 - 11905: 0x8FE8,\n\t24539 - 11905: 0x8FE9,\n\t24540 - 11905: 0x8FEA,\n\t24541 - 11905: 0xE3C3,\n\t24542 - 11905: 0x8FEB,\n\t24543 - 11905: 0x8FEC,\n\t24544 - 11905: 0xD6D2,\n\t24545 - 11905: 0xE2E7,\n\t24546 - 11905: 0x8FED,\n\t24547 - 11905: 0x8FEE,\n\t24548 - 11905: 0xE2E8,\n\t24549 - 11905: 0x8FEF,\n\t24550 - 11905: 0x8FF0,\n\t24551 - 11905: 0xD3C7,\n\t24552 - 11905: 0x8FF1,\n\t24553 - 11905: 0x8FF2,\n\t24554 - 11905: 0xE2EC,\n\t24555 - 11905: 0xBFEC,\n\t24556 - 11905: 0x8FF3,\n\t24557 - 11905: 0xE2ED,\n\t24558 - 11905: 0xE2E5,\n\t24559 - 11905: 0x8FF4,\n\t24560 - 11905: 0x8FF5,\n\t24561 - 11905: 0xB3C0,\n\t24562 - 11905: 0x8FF6,\n\t24563 - 11905: 0x8FF7,\n\t24564 - 11905: 0x8FF8,\n\t24565 - 11905: 0xC4EE,\n\t24566 - 11905: 0x8FF9,\n\t24567 - 11905: 0x8FFA,\n\t24568 - 11905: 0xE2EE,\n\t24569 - 11905: 0x8FFB,\n\t24570 - 11905: 0x8FFC,\n\t24571 - 11905: 0xD0C3,\n\t24572 - 11905: 0x8FFD,\n\t24573 - 11905: 0xBAF6,\n\t24574 - 11905: 0xE2E9,\n\t24575 - 11905: 0xB7DE,\n\t24576 - 11905: 0xBBB3,\n\t24577 - 11905: 0xCCAC,\n\t24578 - 11905: 0xCBCB,\n\t24579 - 11905: 0xE2E4,\n\t24580 - 11905: 0xE2E6,\n\t24581 - 11905: 0xE2EA,\n\t24582 - 11905: 0xE2EB,\n\t24583 - 11905: 0x8FFE,\n\t24584 - 11905: 0x9040,\n\t24585 - 11905: 0x9041,\n\t24586 - 11905: 0xE2F7,\n\t24587 - 11905: 0x9042,\n\t24588 - 11905: 0x9043,\n\t24589 - 11905: 0xE2F4,\n\t24590 - 11905: 0xD4F5,\n\t24591 - 11905: 0xE2F3,\n\t24592 - 11905: 0x9044,\n\t24593 - 11905: 0x9045,\n\t24594 - 11905: 0xC5AD,\n\t24595 - 11905: 0x9046,\n\t24596 - 11905: 0xD5FA,\n\t24597 - 11905: 0xC5C2,\n\t24598 - 11905: 0xB2C0,\n\t24599 - 11905: 0x9047,\n\t24600 - 11905: 0x9048,\n\t24601 - 11905: 0xE2EF,\n\t24602 - 11905: 0x9049,\n\t24603 - 11905: 0xE2F2,\n\t24604 - 11905: 0xC1AF,\n\t24605 - 11905: 0xCBBC,\n\t24606 - 11905: 0x904A,\n\t24607 - 11905: 0x904B,\n\t24608 - 11905: 0xB5A1,\n\t24609 - 11905: 0xE2F9,\n\t24610 - 11905: 0x904C,\n\t24611 - 11905: 0x904D,\n\t24612 - 11905: 0x904E,\n\t24613 - 11905: 0xBCB1,\n\t24614 - 11905: 0xE2F1,\n\t24615 - 11905: 0xD0D4,\n\t24616 - 11905: 0xD4B9,\n\t24617 - 11905: 0xE2F5,\n\t24618 - 11905: 0xB9D6,\n\t24619 - 11905: 0xE2F6,\n\t24620 - 11905: 0x904F,\n\t24621 - 11905: 0x9050,\n\t24622 - 11905: 0x9051,\n\t24623 - 11905: 0xC7D3,\n\t24624 - 11905: 0x9052,\n\t24625 - 11905: 0x9053,\n\t24626 - 11905: 0x9054,\n\t24627 - 11905: 0x9055,\n\t24628 - 11905: 0x9056,\n\t24629 - 11905: 0xE2F0,\n\t24630 - 11905: 0x9057,\n\t24631 - 11905: 0x9058,\n\t24632 - 11905: 0x9059,\n\t24633 - 11905: 0x905A,\n\t24634 - 11905: 0x905B,\n\t24635 - 11905: 0xD7DC,\n\t24636 - 11905: 0xEDA1,\n\t24637 - 11905: 0x905C,\n\t24638 - 11905: 0x905D,\n\t24639 - 11905: 0xE2F8,\n\t24640 - 11905: 0x905E,\n\t24641 - 11905: 0xEDA5,\n\t24642 - 11905: 0xE2FE,\n\t24643 - 11905: 0xCAD1,\n\t24644 - 11905: 0x905F,\n\t24645 - 11905: 0x9060,\n\t24646 - 11905: 0x9061,\n\t24647 - 11905: 0x9062,\n\t24648 - 11905: 0x9063,\n\t24649 - 11905: 0x9064,\n\t24650 - 11905: 0x9065,\n\t24651 - 11905: 0xC1B5,\n\t24652 - 11905: 0x9066,\n\t24653 - 11905: 0xBBD0,\n\t24654 - 11905: 0x9067,\n\t24655 - 11905: 0x9068,\n\t24656 - 11905: 0xBFD6,\n\t24657 - 11905: 0x9069,\n\t24658 - 11905: 0xBAE3,\n\t24659 - 11905: 0x906A,\n\t24660 - 11905: 0x906B,\n\t24661 - 11905: 0xCBA1,\n\t24662 - 11905: 0x906C,\n\t24663 - 11905: 0x906D,\n\t24664 - 11905: 0x906E,\n\t24665 - 11905: 0xEDA6,\n\t24666 - 11905: 0xEDA3,\n\t24667 - 11905: 0x906F,\n\t24668 - 11905: 0x9070,\n\t24669 - 11905: 0xEDA2,\n\t24670 - 11905: 0x9071,\n\t24671 - 11905: 0x9072,\n\t24672 - 11905: 0x9073,\n\t24673 - 11905: 0x9074,\n\t24674 - 11905: 0xBBD6,\n\t24675 - 11905: 0xEDA7,\n\t24676 - 11905: 0xD0F4,\n\t24677 - 11905: 0x9075,\n\t24678 - 11905: 0x9076,\n\t24679 - 11905: 0xEDA4,\n\t24680 - 11905: 0xBADE,\n\t24681 - 11905: 0xB6F7,\n\t24682 - 11905: 0xE3A1,\n\t24683 - 11905: 0xB6B2,\n\t24684 - 11905: 0xCCF1,\n\t24685 - 11905: 0xB9A7,\n\t24686 - 11905: 0x9077,\n\t24687 - 11905: 0xCFA2,\n\t24688 - 11905: 0xC7A1,\n\t24689 - 11905: 0x9078,\n\t24690 - 11905: 0x9079,\n\t24691 - 11905: 0xBFD2,\n\t24692 - 11905: 0x907A,\n\t24693 - 11905: 0x907B,\n\t24694 - 11905: 0xB6F1,\n\t24695 - 11905: 0x907C,\n\t24696 - 11905: 0xE2FA,\n\t24697 - 11905: 0xE2FB,\n\t24698 - 11905: 0xE2FD,\n\t24699 - 11905: 0xE2FC,\n\t24700 - 11905: 0xC4D5,\n\t24701 - 11905: 0xE3A2,\n\t24702 - 11905: 0x907D,\n\t24703 - 11905: 0xD3C1,\n\t24704 - 11905: 0x907E,\n\t24705 - 11905: 0x9080,\n\t24706 - 11905: 0x9081,\n\t24707 - 11905: 0xE3A7,\n\t24708 - 11905: 0xC7C4,\n\t24709 - 11905: 0x9082,\n\t24710 - 11905: 0x9083,\n\t24711 - 11905: 0x9084,\n\t24712 - 11905: 0x9085,\n\t24713 - 11905: 0xCFA4,\n\t24714 - 11905: 0x9086,\n\t24715 - 11905: 0x9087,\n\t24716 - 11905: 0xE3A9,\n\t24717 - 11905: 0xBAB7,\n\t24718 - 11905: 0x9088,\n\t24719 - 11905: 0x9089,\n\t24720 - 11905: 0x908A,\n\t24721 - 11905: 0x908B,\n\t24722 - 11905: 0xE3A8,\n\t24723 - 11905: 0x908C,\n\t24724 - 11905: 0xBBDA,\n\t24725 - 11905: 0x908D,\n\t24726 - 11905: 0xE3A3,\n\t24727 - 11905: 0x908E,\n\t24728 - 11905: 0x908F,\n\t24729 - 11905: 0x9090,\n\t24730 - 11905: 0xE3A4,\n\t24731 - 11905: 0xE3AA,\n\t24732 - 11905: 0x9091,\n\t24733 - 11905: 0xE3A6,\n\t24734 - 11905: 0x9092,\n\t24735 - 11905: 0xCEF2,\n\t24736 - 11905: 0xD3C6,\n\t24737 - 11905: 0x9093,\n\t24738 - 11905: 0x9094,\n\t24739 - 11905: 0xBBBC,\n\t24740 - 11905: 0x9095,\n\t24741 - 11905: 0x9096,\n\t24742 - 11905: 0xD4C3,\n\t24743 - 11905: 0x9097,\n\t24744 - 11905: 0xC4FA,\n\t24745 - 11905: 0x9098,\n\t24746 - 11905: 0x9099,\n\t24747 - 11905: 0xEDA8,\n\t24748 - 11905: 0xD0FC,\n\t24749 - 11905: 0xE3A5,\n\t24750 - 11905: 0x909A,\n\t24751 - 11905: 0xC3F5,\n\t24752 - 11905: 0x909B,\n\t24753 - 11905: 0xE3AD,\n\t24754 - 11905: 0xB1AF,\n\t24755 - 11905: 0x909C,\n\t24756 - 11905: 0xE3B2,\n\t24757 - 11905: 0x909D,\n\t24758 - 11905: 0x909E,\n\t24759 - 11905: 0x909F,\n\t24760 - 11905: 0xBCC2,\n\t24761 - 11905: 0x90A0,\n\t24762 - 11905: 0x90A1,\n\t24763 - 11905: 0xE3AC,\n\t24764 - 11905: 0xB5BF,\n\t24765 - 11905: 0x90A2,\n\t24766 - 11905: 0x90A3,\n\t24767 - 11905: 0x90A4,\n\t24768 - 11905: 0x90A5,\n\t24769 - 11905: 0x90A6,\n\t24770 - 11905: 0x90A7,\n\t24771 - 11905: 0x90A8,\n\t24772 - 11905: 0x90A9,\n\t24773 - 11905: 0xC7E9,\n\t24774 - 11905: 0xE3B0,\n\t24775 - 11905: 0x90AA,\n\t24776 - 11905: 0x90AB,\n\t24777 - 11905: 0x90AC,\n\t24778 - 11905: 0xBEAA,\n\t24779 - 11905: 0xCDEF,\n\t24780 - 11905: 0x90AD,\n\t24781 - 11905: 0x90AE,\n\t24782 - 11905: 0x90AF,\n\t24783 - 11905: 0x90B0,\n\t24784 - 11905: 0x90B1,\n\t24785 - 11905: 0xBBF3,\n\t24786 - 11905: 0x90B2,\n\t24787 - 11905: 0x90B3,\n\t24788 - 11905: 0x90B4,\n\t24789 - 11905: 0xCCE8,\n\t24790 - 11905: 0x90B5,\n\t24791 - 11905: 0x90B6,\n\t24792 - 11905: 0xE3AF,\n\t24793 - 11905: 0x90B7,\n\t24794 - 11905: 0xE3B1,\n\t24795 - 11905: 0x90B8,\n\t24796 - 11905: 0xCFA7,\n\t24797 - 11905: 0xE3AE,\n\t24798 - 11905: 0x90B9,\n\t24799 - 11905: 0xCEA9,\n\t24800 - 11905: 0xBBDD,\n\t24801 - 11905: 0x90BA,\n\t24802 - 11905: 0x90BB,\n\t24803 - 11905: 0x90BC,\n\t24804 - 11905: 0x90BD,\n\t24805 - 11905: 0x90BE,\n\t24806 - 11905: 0xB5EB,\n\t24807 - 11905: 0xBEE5,\n\t24808 - 11905: 0xB2D2,\n\t24809 - 11905: 0xB3CD,\n\t24810 - 11905: 0x90BF,\n\t24811 - 11905: 0xB1B9,\n\t24812 - 11905: 0xE3AB,\n\t24813 - 11905: 0xB2D1,\n\t24814 - 11905: 0xB5AC,\n\t24815 - 11905: 0xB9DF,\n\t24816 - 11905: 0xB6E8,\n\t24817 - 11905: 0x90C0,\n\t24818 - 11905: 0x90C1,\n\t24819 - 11905: 0xCFEB,\n\t24820 - 11905: 0xE3B7,\n\t24821 - 11905: 0x90C2,\n\t24822 - 11905: 0xBBCC,\n\t24823 - 11905: 0x90C3,\n\t24824 - 11905: 0x90C4,\n\t24825 - 11905: 0xC8C7,\n\t24826 - 11905: 0xD0CA,\n\t24827 - 11905: 0x90C5,\n\t24828 - 11905: 0x90C6,\n\t24829 - 11905: 0x90C7,\n\t24830 - 11905: 0x90C8,\n\t24831 - 11905: 0x90C9,\n\t24832 - 11905: 0xE3B8,\n\t24833 - 11905: 0xB3EE,\n\t24834 - 11905: 0x90CA,\n\t24835 - 11905: 0x90CB,\n\t24836 - 11905: 0x90CC,\n\t24837 - 11905: 0x90CD,\n\t24838 - 11905: 0xEDA9,\n\t24839 - 11905: 0x90CE,\n\t24840 - 11905: 0xD3FA,\n\t24841 - 11905: 0xD3E4,\n\t24842 - 11905: 0x90CF,\n\t24843 - 11905: 0x90D0,\n\t24844 - 11905: 0x90D1,\n\t24845 - 11905: 0xEDAA,\n\t24846 - 11905: 0xE3B9,\n\t24847 - 11905: 0xD2E2,\n\t24848 - 11905: 0x90D2,\n\t24849 - 11905: 0x90D3,\n\t24850 - 11905: 0x90D4,\n\t24851 - 11905: 0x90D5,\n\t24852 - 11905: 0x90D6,\n\t24853 - 11905: 0xE3B5,\n\t24854 - 11905: 0x90D7,\n\t24855 - 11905: 0x90D8,\n\t24856 - 11905: 0x90D9,\n\t24857 - 11905: 0x90DA,\n\t24858 - 11905: 0xD3DE,\n\t24859 - 11905: 0x90DB,\n\t24860 - 11905: 0x90DC,\n\t24861 - 11905: 0x90DD,\n\t24862 - 11905: 0x90DE,\n\t24863 - 11905: 0xB8D0,\n\t24864 - 11905: 0xE3B3,\n\t24865 - 11905: 0x90DF,\n\t24866 - 11905: 0x90E0,\n\t24867 - 11905: 0xE3B6,\n\t24868 - 11905: 0xB7DF,\n\t24869 - 11905: 0x90E1,\n\t24870 - 11905: 0xE3B4,\n\t24871 - 11905: 0xC0A2,\n\t24872 - 11905: 0x90E2,\n\t24873 - 11905: 0x90E3,\n\t24874 - 11905: 0x90E4,\n\t24875 - 11905: 0xE3BA,\n\t24876 - 11905: 0x90E5,\n\t24877 - 11905: 0x90E6,\n\t24878 - 11905: 0x90E7,\n\t24879 - 11905: 0x90E8,\n\t24880 - 11905: 0x90E9,\n\t24881 - 11905: 0x90EA,\n\t24882 - 11905: 0x90EB,\n\t24883 - 11905: 0x90EC,\n\t24884 - 11905: 0x90ED,\n\t24885 - 11905: 0x90EE,\n\t24886 - 11905: 0x90EF,\n\t24887 - 11905: 0x90F0,\n\t24888 - 11905: 0x90F1,\n\t24889 - 11905: 0x90F2,\n\t24890 - 11905: 0x90F3,\n\t24891 - 11905: 0x90F4,\n\t24892 - 11905: 0x90F5,\n\t24893 - 11905: 0x90F6,\n\t24894 - 11905: 0x90F7,\n\t24895 - 11905: 0xD4B8,\n\t24896 - 11905: 0x90F8,\n\t24897 - 11905: 0x90F9,\n\t24898 - 11905: 0x90FA,\n\t24899 - 11905: 0x90FB,\n\t24900 - 11905: 0x90FC,\n\t24901 - 11905: 0x90FD,\n\t24902 - 11905: 0x90FE,\n\t24903 - 11905: 0x9140,\n\t24904 - 11905: 0xB4C8,\n\t24905 - 11905: 0x9141,\n\t24906 - 11905: 0xE3BB,\n\t24907 - 11905: 0x9142,\n\t24908 - 11905: 0xBBC5,\n\t24909 - 11905: 0x9143,\n\t24910 - 11905: 0xC9F7,\n\t24911 - 11905: 0x9144,\n\t24912 - 11905: 0x9145,\n\t24913 - 11905: 0xC9E5,\n\t24914 - 11905: 0x9146,\n\t24915 - 11905: 0x9147,\n\t24916 - 11905: 0x9148,\n\t24917 - 11905: 0xC4BD,\n\t24918 - 11905: 0x9149,\n\t24919 - 11905: 0x914A,\n\t24920 - 11905: 0x914B,\n\t24921 - 11905: 0x914C,\n\t24922 - 11905: 0x914D,\n\t24923 - 11905: 0x914E,\n\t24924 - 11905: 0x914F,\n\t24925 - 11905: 0xEDAB,\n\t24926 - 11905: 0x9150,\n\t24927 - 11905: 0x9151,\n\t24928 - 11905: 0x9152,\n\t24929 - 11905: 0x9153,\n\t24930 - 11905: 0xC2FD,\n\t24931 - 11905: 0x9154,\n\t24932 - 11905: 0x9155,\n\t24933 - 11905: 0x9156,\n\t24934 - 11905: 0x9157,\n\t24935 - 11905: 0xBBDB,\n\t24936 - 11905: 0xBFAE,\n\t24937 - 11905: 0x9158,\n\t24938 - 11905: 0x9159,\n\t24939 - 11905: 0x915A,\n\t24940 - 11905: 0x915B,\n\t24941 - 11905: 0x915C,\n\t24942 - 11905: 0x915D,\n\t24943 - 11905: 0x915E,\n\t24944 - 11905: 0xCEBF,\n\t24945 - 11905: 0x915F,\n\t24946 - 11905: 0x9160,\n\t24947 - 11905: 0x9161,\n\t24948 - 11905: 0x9162,\n\t24949 - 11905: 0xE3BC,\n\t24950 - 11905: 0x9163,\n\t24951 - 11905: 0xBFB6,\n\t24952 - 11905: 0x9164,\n\t24953 - 11905: 0x9165,\n\t24954 - 11905: 0x9166,\n\t24955 - 11905: 0x9167,\n\t24956 - 11905: 0x9168,\n\t24957 - 11905: 0x9169,\n\t24958 - 11905: 0x916A,\n\t24959 - 11905: 0x916B,\n\t24960 - 11905: 0x916C,\n\t24961 - 11905: 0x916D,\n\t24962 - 11905: 0x916E,\n\t24963 - 11905: 0x916F,\n\t24964 - 11905: 0x9170,\n\t24965 - 11905: 0x9171,\n\t24966 - 11905: 0x9172,\n\t24967 - 11905: 0x9173,\n\t24968 - 11905: 0x9174,\n\t24969 - 11905: 0x9175,\n\t24970 - 11905: 0x9176,\n\t24971 - 11905: 0xB1EF,\n\t24972 - 11905: 0x9177,\n\t24973 - 11905: 0x9178,\n\t24974 - 11905: 0xD4F7,\n\t24975 - 11905: 0x9179,\n\t24976 - 11905: 0x917A,\n\t24977 - 11905: 0x917B,\n\t24978 - 11905: 0x917C,\n\t24979 - 11905: 0x917D,\n\t24980 - 11905: 0xE3BE,\n\t24981 - 11905: 0x917E,\n\t24982 - 11905: 0x9180,\n\t24983 - 11905: 0x9181,\n\t24984 - 11905: 0x9182,\n\t24985 - 11905: 0x9183,\n\t24986 - 11905: 0x9184,\n\t24987 - 11905: 0x9185,\n\t24988 - 11905: 0x9186,\n\t24989 - 11905: 0xEDAD,\n\t24990 - 11905: 0x9187,\n\t24991 - 11905: 0x9188,\n\t24992 - 11905: 0x9189,\n\t24993 - 11905: 0x918A,\n\t24994 - 11905: 0x918B,\n\t24995 - 11905: 0x918C,\n\t24996 - 11905: 0x918D,\n\t24997 - 11905: 0x918E,\n\t24998 - 11905: 0x918F,\n\t24999 - 11905: 0xE3BF,\n\t25000 - 11905: 0xBAA9,\n\t25001 - 11905: 0xEDAC,\n\t25002 - 11905: 0x9190,\n\t25003 - 11905: 0x9191,\n\t25004 - 11905: 0xE3BD,\n\t25005 - 11905: 0x9192,\n\t25006 - 11905: 0x9193,\n\t25007 - 11905: 0x9194,\n\t25008 - 11905: 0x9195,\n\t25009 - 11905: 0x9196,\n\t25010 - 11905: 0x9197,\n\t25011 - 11905: 0x9198,\n\t25012 - 11905: 0x9199,\n\t25013 - 11905: 0x919A,\n\t25014 - 11905: 0x919B,\n\t25015 - 11905: 0xE3C0,\n\t25016 - 11905: 0x919C,\n\t25017 - 11905: 0x919D,\n\t25018 - 11905: 0x919E,\n\t25019 - 11905: 0x919F,\n\t25020 - 11905: 0x91A0,\n\t25021 - 11905: 0x91A1,\n\t25022 - 11905: 0xBAB6,\n\t25023 - 11905: 0x91A2,\n\t25024 - 11905: 0x91A3,\n\t25025 - 11905: 0x91A4,\n\t25026 - 11905: 0xB6AE,\n\t25027 - 11905: 0x91A5,\n\t25028 - 11905: 0x91A6,\n\t25029 - 11905: 0x91A7,\n\t25030 - 11905: 0x91A8,\n\t25031 - 11905: 0x91A9,\n\t25032 - 11905: 0xD0B8,\n\t25033 - 11905: 0x91AA,\n\t25034 - 11905: 0xB0C3,\n\t25035 - 11905: 0xEDAE,\n\t25036 - 11905: 0x91AB,\n\t25037 - 11905: 0x91AC,\n\t25038 - 11905: 0x91AD,\n\t25039 - 11905: 0x91AE,\n\t25040 - 11905: 0x91AF,\n\t25041 - 11905: 0xEDAF,\n\t25042 - 11905: 0xC0C1,\n\t25043 - 11905: 0x91B0,\n\t25044 - 11905: 0xE3C1,\n\t25045 - 11905: 0x91B1,\n\t25046 - 11905: 0x91B2,\n\t25047 - 11905: 0x91B3,\n\t25048 - 11905: 0x91B4,\n\t25049 - 11905: 0x91B5,\n\t25050 - 11905: 0x91B6,\n\t25051 - 11905: 0x91B7,\n\t25052 - 11905: 0x91B8,\n\t25053 - 11905: 0x91B9,\n\t25054 - 11905: 0x91BA,\n\t25055 - 11905: 0x91BB,\n\t25056 - 11905: 0x91BC,\n\t25057 - 11905: 0x91BD,\n\t25058 - 11905: 0x91BE,\n\t25059 - 11905: 0x91BF,\n\t25060 - 11905: 0x91C0,\n\t25061 - 11905: 0x91C1,\n\t25062 - 11905: 0xC5B3,\n\t25063 - 11905: 0x91C2,\n\t25064 - 11905: 0x91C3,\n\t25065 - 11905: 0x91C4,\n\t25066 - 11905: 0x91C5,\n\t25067 - 11905: 0x91C6,\n\t25068 - 11905: 0x91C7,\n\t25069 - 11905: 0x91C8,\n\t25070 - 11905: 0x91C9,\n\t25071 - 11905: 0x91CA,\n\t25072 - 11905: 0x91CB,\n\t25073 - 11905: 0x91CC,\n\t25074 - 11905: 0x91CD,\n\t25075 - 11905: 0x91CE,\n\t25076 - 11905: 0x91CF,\n\t25077 - 11905: 0xE3C2,\n\t25078 - 11905: 0x91D0,\n\t25079 - 11905: 0x91D1,\n\t25080 - 11905: 0x91D2,\n\t25081 - 11905: 0x91D3,\n\t25082 - 11905: 0x91D4,\n\t25083 - 11905: 0x91D5,\n\t25084 - 11905: 0x91D6,\n\t25085 - 11905: 0x91D7,\n\t25086 - 11905: 0x91D8,\n\t25087 - 11905: 0xDCB2,\n\t25088 - 11905: 0x91D9,\n\t25089 - 11905: 0x91DA,\n\t25090 - 11905: 0x91DB,\n\t25091 - 11905: 0x91DC,\n\t25092 - 11905: 0x91DD,\n\t25093 - 11905: 0x91DE,\n\t25094 - 11905: 0xEDB0,\n\t25095 - 11905: 0x91DF,\n\t25096 - 11905: 0xB8EA,\n\t25097 - 11905: 0x91E0,\n\t25098 - 11905: 0xCEEC,\n\t25099 - 11905: 0xEAA7,\n\t25100 - 11905: 0xD0E7,\n\t25101 - 11905: 0xCAF9,\n\t25102 - 11905: 0xC8D6,\n\t25103 - 11905: 0xCFB7,\n\t25104 - 11905: 0xB3C9,\n\t25105 - 11905: 0xCED2,\n\t25106 - 11905: 0xBDE4,\n\t25107 - 11905: 0x91E1,\n\t25108 - 11905: 0x91E2,\n\t25109 - 11905: 0xE3DE,\n\t25110 - 11905: 0xBBF2,\n\t25111 - 11905: 0xEAA8,\n\t25112 - 11905: 0xD5BD,\n\t25113 - 11905: 0x91E3,\n\t25114 - 11905: 0xC6DD,\n\t25115 - 11905: 0xEAA9,\n\t25116 - 11905: 0x91E4,\n\t25117 - 11905: 0x91E5,\n\t25118 - 11905: 0x91E6,\n\t25119 - 11905: 0xEAAA,\n\t25120 - 11905: 0x91E7,\n\t25121 - 11905: 0xEAAC,\n\t25122 - 11905: 0xEAAB,\n\t25123 - 11905: 0x91E8,\n\t25124 - 11905: 0xEAAE,\n\t25125 - 11905: 0xEAAD,\n\t25126 - 11905: 0x91E9,\n\t25127 - 11905: 0x91EA,\n\t25128 - 11905: 0x91EB,\n\t25129 - 11905: 0x91EC,\n\t25130 - 11905: 0xBDD8,\n\t25131 - 11905: 0x91ED,\n\t25132 - 11905: 0xEAAF,\n\t25133 - 11905: 0x91EE,\n\t25134 - 11905: 0xC2BE,\n\t25135 - 11905: 0x91EF,\n\t25136 - 11905: 0x91F0,\n\t25137 - 11905: 0x91F1,\n\t25138 - 11905: 0x91F2,\n\t25139 - 11905: 0xB4C1,\n\t25140 - 11905: 0xB4F7,\n\t25141 - 11905: 0x91F3,\n\t25142 - 11905: 0x91F4,\n\t25143 - 11905: 0xBBA7,\n\t25144 - 11905: 0x91F5,\n\t25145 - 11905: 0x91F6,\n\t25146 - 11905: 0x91F7,\n\t25147 - 11905: 0x91F8,\n\t25148 - 11905: 0x91F9,\n\t25149 - 11905: 0xECE6,\n\t25150 - 11905: 0xECE5,\n\t25151 - 11905: 0xB7BF,\n\t25152 - 11905: 0xCBF9,\n\t25153 - 11905: 0xB1E2,\n\t25154 - 11905: 0x91FA,\n\t25155 - 11905: 0xECE7,\n\t25156 - 11905: 0x91FB,\n\t25157 - 11905: 0x91FC,\n\t25158 - 11905: 0x91FD,\n\t25159 - 11905: 0xC9C8,\n\t25160 - 11905: 0xECE8,\n\t25161 - 11905: 0xECE9,\n\t25162 - 11905: 0x91FE,\n\t25163 - 11905: 0xCAD6,\n\t25164 - 11905: 0xDED0,\n\t25165 - 11905: 0xB2C5,\n\t25166 - 11905: 0xD4FA,\n\t25167 - 11905: 0x9240,\n\t25168 - 11905: 0x9241,\n\t25169 - 11905: 0xC6CB,\n\t25170 - 11905: 0xB0C7,\n\t25171 - 11905: 0xB4F2,\n\t25172 - 11905: 0xC8D3,\n\t25173 - 11905: 0x9242,\n\t25174 - 11905: 0x9243,\n\t25175 - 11905: 0x9244,\n\t25176 - 11905: 0xCDD0,\n\t25177 - 11905: 0x9245,\n\t25178 - 11905: 0x9246,\n\t25179 - 11905: 0xBFB8,\n\t25180 - 11905: 0x9247,\n\t25181 - 11905: 0x9248,\n\t25182 - 11905: 0x9249,\n\t25183 - 11905: 0x924A,\n\t25184 - 11905: 0x924B,\n\t25185 - 11905: 0x924C,\n\t25186 - 11905: 0x924D,\n\t25187 - 11905: 0xBFDB,\n\t25188 - 11905: 0x924E,\n\t25189 - 11905: 0x924F,\n\t25190 - 11905: 0xC7A4,\n\t25191 - 11905: 0xD6B4,\n\t25192 - 11905: 0x9250,\n\t25193 - 11905: 0xC0A9,\n\t25194 - 11905: 0xDED1,\n\t25195 - 11905: 0xC9A8,\n\t25196 - 11905: 0xD1EF,\n\t25197 - 11905: 0xC5A4,\n\t25198 - 11905: 0xB0E7,\n\t25199 - 11905: 0xB3B6,\n\t25200 - 11905: 0xC8C5,\n\t25201 - 11905: 0x9251,\n\t25202 - 11905: 0x9252,\n\t25203 - 11905: 0xB0E2,\n\t25204 - 11905: 0x9253,\n\t25205 - 11905: 0x9254,\n\t25206 - 11905: 0xB7F6,\n\t25207 - 11905: 0x9255,\n\t25208 - 11905: 0x9256,\n\t25209 - 11905: 0xC5FA,\n\t25210 - 11905: 0x9257,\n\t25211 - 11905: 0x9258,\n\t25212 - 11905: 0xB6F3,\n\t25213 - 11905: 0x9259,\n\t25214 - 11905: 0xD5D2,\n\t25215 - 11905: 0xB3D0,\n\t25216 - 11905: 0xBCBC,\n\t25217 - 11905: 0x925A,\n\t25218 - 11905: 0x925B,\n\t25219 - 11905: 0x925C,\n\t25220 - 11905: 0xB3AD,\n\t25221 - 11905: 0x925D,\n\t25222 - 11905: 0x925E,\n\t25223 - 11905: 0x925F,\n\t25224 - 11905: 0x9260,\n\t25225 - 11905: 0xBEF1,\n\t25226 - 11905: 0xB0D1,\n\t25227 - 11905: 0x9261,\n\t25228 - 11905: 0x9262,\n\t25229 - 11905: 0x9263,\n\t25230 - 11905: 0x9264,\n\t25231 - 11905: 0x9265,\n\t25232 - 11905: 0x9266,\n\t25233 - 11905: 0xD2D6,\n\t25234 - 11905: 0xCAE3,\n\t25235 - 11905: 0xD7A5,\n\t25236 - 11905: 0x9267,\n\t25237 - 11905: 0xCDB6,\n\t25238 - 11905: 0xB6B6,\n\t25239 - 11905: 0xBFB9,\n\t25240 - 11905: 0xD5DB,\n\t25241 - 11905: 0x9268,\n\t25242 - 11905: 0xB8A7,\n\t25243 - 11905: 0xC5D7,\n\t25244 - 11905: 0x9269,\n\t25245 - 11905: 0x926A,\n\t25246 - 11905: 0x926B,\n\t25247 - 11905: 0xDED2,\n\t25248 - 11905: 0xBFD9,\n\t25249 - 11905: 0xC2D5,\n\t25250 - 11905: 0xC7C0,\n\t25251 - 11905: 0x926C,\n\t25252 - 11905: 0xBBA4,\n\t25253 - 11905: 0xB1A8,\n\t25254 - 11905: 0x926D,\n\t25255 - 11905: 0x926E,\n\t25256 - 11905: 0xC5EA,\n\t25257 - 11905: 0x926F,\n\t25258 - 11905: 0x9270,\n\t25259 - 11905: 0xC5FB,\n\t25260 - 11905: 0xCCA7,\n\t25261 - 11905: 0x9271,\n\t25262 - 11905: 0x9272,\n\t25263 - 11905: 0x9273,\n\t25264 - 11905: 0x9274,\n\t25265 - 11905: 0xB1A7,\n\t25266 - 11905: 0x9275,\n\t25267 - 11905: 0x9276,\n\t25268 - 11905: 0x9277,\n\t25269 - 11905: 0xB5D6,\n\t25270 - 11905: 0x9278,\n\t25271 - 11905: 0x9279,\n\t25272 - 11905: 0x927A,\n\t25273 - 11905: 0xC4A8,\n\t25274 - 11905: 0x927B,\n\t25275 - 11905: 0xDED3,\n\t25276 - 11905: 0xD1BA,\n\t25277 - 11905: 0xB3E9,\n\t25278 - 11905: 0x927C,\n\t25279 - 11905: 0xC3F2,\n\t25280 - 11905: 0x927D,\n\t25281 - 11905: 0x927E,\n\t25282 - 11905: 0xB7F7,\n\t25283 - 11905: 0x9280,\n\t25284 - 11905: 0xD6F4,\n\t25285 - 11905: 0xB5A3,\n\t25286 - 11905: 0xB2F0,\n\t25287 - 11905: 0xC4B4,\n\t25288 - 11905: 0xC4E9,\n\t25289 - 11905: 0xC0AD,\n\t25290 - 11905: 0xDED4,\n\t25291 - 11905: 0x9281,\n\t25292 - 11905: 0xB0E8,\n\t25293 - 11905: 0xC5C4,\n\t25294 - 11905: 0xC1E0,\n\t25295 - 11905: 0x9282,\n\t25296 - 11905: 0xB9D5,\n\t25297 - 11905: 0x9283,\n\t25298 - 11905: 0xBEDC,\n\t25299 - 11905: 0xCDD8,\n\t25300 - 11905: 0xB0CE,\n\t25301 - 11905: 0x9284,\n\t25302 - 11905: 0xCDCF,\n\t25303 - 11905: 0xDED6,\n\t25304 - 11905: 0xBED0,\n\t25305 - 11905: 0xD7BE,\n\t25306 - 11905: 0xDED5,\n\t25307 - 11905: 0xD5D0,\n\t25308 - 11905: 0xB0DD,\n\t25309 - 11905: 0x9285,\n\t25310 - 11905: 0x9286,\n\t25311 - 11905: 0xC4E2,\n\t25312 - 11905: 0x9287,\n\t25313 - 11905: 0x9288,\n\t25314 - 11905: 0xC2A3,\n\t25315 - 11905: 0xBCF0,\n\t25316 - 11905: 0x9289,\n\t25317 - 11905: 0xD3B5,\n\t25318 - 11905: 0xC0B9,\n\t25319 - 11905: 0xC5A1,\n\t25320 - 11905: 0xB2A6,\n\t25321 - 11905: 0xD4F1,\n\t25322 - 11905: 0x928A,\n\t25323 - 11905: 0x928B,\n\t25324 - 11905: 0xC0A8,\n\t25325 - 11905: 0xCAC3,\n\t25326 - 11905: 0xDED7,\n\t25327 - 11905: 0xD5FC,\n\t25328 - 11905: 0x928C,\n\t25329 - 11905: 0xB9B0,\n\t25330 - 11905: 0x928D,\n\t25331 - 11905: 0xC8AD,\n\t25332 - 11905: 0xCBA9,\n\t25333 - 11905: 0x928E,\n\t25334 - 11905: 0xDED9,\n\t25335 - 11905: 0xBFBD,\n\t25336 - 11905: 0x928F,\n\t25337 - 11905: 0x9290,\n\t25338 - 11905: 0x9291,\n\t25339 - 11905: 0x9292,\n\t25340 - 11905: 0xC6B4,\n\t25341 - 11905: 0xD7A7,\n\t25342 - 11905: 0xCAB0,\n\t25343 - 11905: 0xC4C3,\n\t25344 - 11905: 0x9293,\n\t25345 - 11905: 0xB3D6,\n\t25346 - 11905: 0xB9D2,\n\t25347 - 11905: 0x9294,\n\t25348 - 11905: 0x9295,\n\t25349 - 11905: 0x9296,\n\t25350 - 11905: 0x9297,\n\t25351 - 11905: 0xD6B8,\n\t25352 - 11905: 0xEAFC,\n\t25353 - 11905: 0xB0B4,\n\t25354 - 11905: 0x9298,\n\t25355 - 11905: 0x9299,\n\t25356 - 11905: 0x929A,\n\t25357 - 11905: 0x929B,\n\t25358 - 11905: 0xBFE6,\n\t25359 - 11905: 0x929C,\n\t25360 - 11905: 0x929D,\n\t25361 - 11905: 0xCCF4,\n\t25362 - 11905: 0x929E,\n\t25363 - 11905: 0x929F,\n\t25364 - 11905: 0x92A0,\n\t25365 - 11905: 0x92A1,\n\t25366 - 11905: 0xCDDA,\n\t25367 - 11905: 0x92A2,\n\t25368 - 11905: 0x92A3,\n\t25369 - 11905: 0x92A4,\n\t25370 - 11905: 0xD6BF,\n\t25371 - 11905: 0xC2CE,\n\t25372 - 11905: 0x92A5,\n\t25373 - 11905: 0xCECE,\n\t25374 - 11905: 0xCCA2,\n\t25375 - 11905: 0xD0AE,\n\t25376 - 11905: 0xC4D3,\n\t25377 - 11905: 0xB5B2,\n\t25378 - 11905: 0xDED8,\n\t25379 - 11905: 0xD5F5,\n\t25380 - 11905: 0xBCB7,\n\t25381 - 11905: 0xBBD3,\n\t25382 - 11905: 0x92A6,\n\t25383 - 11905: 0x92A7,\n\t25384 - 11905: 0xB0A4,\n\t25385 - 11905: 0x92A8,\n\t25386 - 11905: 0xC5B2,\n\t25387 - 11905: 0xB4EC,\n\t25388 - 11905: 0x92A9,\n\t25389 - 11905: 0x92AA,\n\t25390 - 11905: 0x92AB,\n\t25391 - 11905: 0xD5F1,\n\t25392 - 11905: 0x92AC,\n\t25393 - 11905: 0x92AD,\n\t25394 - 11905: 0xEAFD,\n\t25395 - 11905: 0x92AE,\n\t25396 - 11905: 0x92AF,\n\t25397 - 11905: 0x92B0,\n\t25398 - 11905: 0x92B1,\n\t25399 - 11905: 0x92B2,\n\t25400 - 11905: 0x92B3,\n\t25401 - 11905: 0xDEDA,\n\t25402 - 11905: 0xCDA6,\n\t25403 - 11905: 0x92B4,\n\t25404 - 11905: 0x92B5,\n\t25405 - 11905: 0xCDEC,\n\t25406 - 11905: 0x92B6,\n\t25407 - 11905: 0x92B7,\n\t25408 - 11905: 0x92B8,\n\t25409 - 11905: 0x92B9,\n\t25410 - 11905: 0xCEE6,\n\t25411 - 11905: 0xDEDC,\n\t25412 - 11905: 0x92BA,\n\t25413 - 11905: 0xCDB1,\n\t25414 - 11905: 0xC0A6,\n\t25415 - 11905: 0x92BB,\n\t25416 - 11905: 0x92BC,\n\t25417 - 11905: 0xD7BD,\n\t25418 - 11905: 0x92BD,\n\t25419 - 11905: 0xDEDB,\n\t25420 - 11905: 0xB0C6,\n\t25421 - 11905: 0xBAB4,\n\t25422 - 11905: 0xC9D3,\n\t25423 - 11905: 0xC4F3,\n\t25424 - 11905: 0xBEE8,\n\t25425 - 11905: 0x92BE,\n\t25426 - 11905: 0x92BF,\n\t25427 - 11905: 0x92C0,\n\t25428 - 11905: 0x92C1,\n\t25429 - 11905: 0xB2B6,\n\t25430 - 11905: 0x92C2,\n\t25431 - 11905: 0x92C3,\n\t25432 - 11905: 0x92C4,\n\t25433 - 11905: 0x92C5,\n\t25434 - 11905: 0x92C6,\n\t25435 - 11905: 0x92C7,\n\t25436 - 11905: 0x92C8,\n\t25437 - 11905: 0x92C9,\n\t25438 - 11905: 0xC0CC,\n\t25439 - 11905: 0xCBF0,\n\t25440 - 11905: 0x92CA,\n\t25441 - 11905: 0xBCF1,\n\t25442 - 11905: 0xBBBB,\n\t25443 - 11905: 0xB5B7,\n\t25444 - 11905: 0x92CB,\n\t25445 - 11905: 0x92CC,\n\t25446 - 11905: 0x92CD,\n\t25447 - 11905: 0xC5F5,\n\t25448 - 11905: 0x92CE,\n\t25449 - 11905: 0xDEE6,\n\t25450 - 11905: 0x92CF,\n\t25451 - 11905: 0x92D0,\n\t25452 - 11905: 0x92D1,\n\t25453 - 11905: 0xDEE3,\n\t25454 - 11905: 0xBEDD,\n\t25455 - 11905: 0x92D2,\n\t25456 - 11905: 0x92D3,\n\t25457 - 11905: 0xDEDF,\n\t25458 - 11905: 0x92D4,\n\t25459 - 11905: 0x92D5,\n\t25460 - 11905: 0x92D6,\n\t25461 - 11905: 0x92D7,\n\t25462 - 11905: 0xB4B7,\n\t25463 - 11905: 0xBDDD,\n\t25464 - 11905: 0x92D8,\n\t25465 - 11905: 0x92D9,\n\t25466 - 11905: 0xDEE0,\n\t25467 - 11905: 0xC4ED,\n\t25468 - 11905: 0x92DA,\n\t25469 - 11905: 0x92DB,\n\t25470 - 11905: 0x92DC,\n\t25471 - 11905: 0x92DD,\n\t25472 - 11905: 0xCFC6,\n\t25473 - 11905: 0x92DE,\n\t25474 - 11905: 0xB5E0,\n\t25475 - 11905: 0x92DF,\n\t25476 - 11905: 0x92E0,\n\t25477 - 11905: 0x92E1,\n\t25478 - 11905: 0x92E2,\n\t25479 - 11905: 0xB6DE,\n\t25480 - 11905: 0xCADA,\n\t25481 - 11905: 0xB5F4,\n\t25482 - 11905: 0xDEE5,\n\t25483 - 11905: 0x92E3,\n\t25484 - 11905: 0xD5C6,\n\t25485 - 11905: 0x92E4,\n\t25486 - 11905: 0xDEE1,\n\t25487 - 11905: 0xCCCD,\n\t25488 - 11905: 0xC6FE,\n\t25489 - 11905: 0x92E5,\n\t25490 - 11905: 0xC5C5,\n\t25491 - 11905: 0x92E6,\n\t25492 - 11905: 0x92E7,\n\t25493 - 11905: 0x92E8,\n\t25494 - 11905: 0xD2B4,\n\t25495 - 11905: 0x92E9,\n\t25496 - 11905: 0xBEF2,\n\t25497 - 11905: 0x92EA,\n\t25498 - 11905: 0x92EB,\n\t25499 - 11905: 0x92EC,\n\t25500 - 11905: 0x92ED,\n\t25501 - 11905: 0x92EE,\n\t25502 - 11905: 0x92EF,\n\t25503 - 11905: 0x92F0,\n\t25504 - 11905: 0xC2D3,\n\t25505 - 11905: 0x92F1,\n\t25506 - 11905: 0xCCBD,\n\t25507 - 11905: 0xB3B8,\n\t25508 - 11905: 0x92F2,\n\t25509 - 11905: 0xBDD3,\n\t25510 - 11905: 0x92F3,\n\t25511 - 11905: 0xBFD8,\n\t25512 - 11905: 0xCDC6,\n\t25513 - 11905: 0xD1DA,\n\t25514 - 11905: 0xB4EB,\n\t25515 - 11905: 0x92F4,\n\t25516 - 11905: 0xDEE4,\n\t25517 - 11905: 0xDEDD,\n\t25518 - 11905: 0xDEE7,\n\t25519 - 11905: 0x92F5,\n\t25520 - 11905: 0xEAFE,\n\t25521 - 11905: 0x92F6,\n\t25522 - 11905: 0x92F7,\n\t25523 - 11905: 0xC2B0,\n\t25524 - 11905: 0xDEE2,\n\t25525 - 11905: 0x92F8,\n\t25526 - 11905: 0x92F9,\n\t25527 - 11905: 0xD6C0,\n\t25528 - 11905: 0xB5A7,\n\t25529 - 11905: 0x92FA,\n\t25530 - 11905: 0xB2F4,\n\t25531 - 11905: 0x92FB,\n\t25532 - 11905: 0xDEE8,\n\t25533 - 11905: 0x92FC,\n\t25534 - 11905: 0xDEF2,\n\t25535 - 11905: 0x92FD,\n\t25536 - 11905: 0x92FE,\n\t25537 - 11905: 0x9340,\n\t25538 - 11905: 0x9341,\n\t25539 - 11905: 0x9342,\n\t25540 - 11905: 0xDEED,\n\t25541 - 11905: 0x9343,\n\t25542 - 11905: 0xDEF1,\n\t25543 - 11905: 0x9344,\n\t25544 - 11905: 0x9345,\n\t25545 - 11905: 0xC8E0,\n\t25546 - 11905: 0x9346,\n\t25547 - 11905: 0x9347,\n\t25548 - 11905: 0x9348,\n\t25549 - 11905: 0xD7E1,\n\t25550 - 11905: 0xDEEF,\n\t25551 - 11905: 0xC3E8,\n\t25552 - 11905: 0xCCE1,\n\t25553 - 11905: 0x9349,\n\t25554 - 11905: 0xB2E5,\n\t25555 - 11905: 0x934A,\n\t25556 - 11905: 0x934B,\n\t25557 - 11905: 0x934C,\n\t25558 - 11905: 0xD2BE,\n\t25559 - 11905: 0x934D,\n\t25560 - 11905: 0x934E,\n\t25561 - 11905: 0x934F,\n\t25562 - 11905: 0x9350,\n\t25563 - 11905: 0x9351,\n\t25564 - 11905: 0x9352,\n\t25565 - 11905: 0x9353,\n\t25566 - 11905: 0xDEEE,\n\t25567 - 11905: 0x9354,\n\t25568 - 11905: 0xDEEB,\n\t25569 - 11905: 0xCED5,\n\t25570 - 11905: 0x9355,\n\t25571 - 11905: 0xB4A7,\n\t25572 - 11905: 0x9356,\n\t25573 - 11905: 0x9357,\n\t25574 - 11905: 0x9358,\n\t25575 - 11905: 0x9359,\n\t25576 - 11905: 0x935A,\n\t25577 - 11905: 0xBFAB,\n\t25578 - 11905: 0xBEBE,\n\t25579 - 11905: 0x935B,\n\t25580 - 11905: 0x935C,\n\t25581 - 11905: 0xBDD2,\n\t25582 - 11905: 0x935D,\n\t25583 - 11905: 0x935E,\n\t25584 - 11905: 0x935F,\n\t25585 - 11905: 0x9360,\n\t25586 - 11905: 0xDEE9,\n\t25587 - 11905: 0x9361,\n\t25588 - 11905: 0xD4AE,\n\t25589 - 11905: 0x9362,\n\t25590 - 11905: 0xDEDE,\n\t25591 - 11905: 0x9363,\n\t25592 - 11905: 0xDEEA,\n\t25593 - 11905: 0x9364,\n\t25594 - 11905: 0x9365,\n\t25595 - 11905: 0x9366,\n\t25596 - 11905: 0x9367,\n\t25597 - 11905: 0xC0BF,\n\t25598 - 11905: 0x9368,\n\t25599 - 11905: 0xDEEC,\n\t25600 - 11905: 0xB2F3,\n\t25601 - 11905: 0xB8E9,\n\t25602 - 11905: 0xC2A7,\n\t25603 - 11905: 0x9369,\n\t25604 - 11905: 0x936A,\n\t25605 - 11905: 0xBDC1,\n\t25606 - 11905: 0x936B,\n\t25607 - 11905: 0x936C,\n\t25608 - 11905: 0x936D,\n\t25609 - 11905: 0x936E,\n\t25610 - 11905: 0x936F,\n\t25611 - 11905: 0xDEF5,\n\t25612 - 11905: 0xDEF8,\n\t25613 - 11905: 0x9370,\n\t25614 - 11905: 0x9371,\n\t25615 - 11905: 0xB2AB,\n\t25616 - 11905: 0xB4A4,\n\t25617 - 11905: 0x9372,\n\t25618 - 11905: 0x9373,\n\t25619 - 11905: 0xB4EA,\n\t25620 - 11905: 0xC9A6,\n\t25621 - 11905: 0x9374,\n\t25622 - 11905: 0x9375,\n\t25623 - 11905: 0x9376,\n\t25624 - 11905: 0x9377,\n\t25625 - 11905: 0x9378,\n\t25626 - 11905: 0x9379,\n\t25627 - 11905: 0xDEF6,\n\t25628 - 11905: 0xCBD1,\n\t25629 - 11905: 0x937A,\n\t25630 - 11905: 0xB8E3,\n\t25631 - 11905: 0x937B,\n\t25632 - 11905: 0xDEF7,\n\t25633 - 11905: 0xDEFA,\n\t25634 - 11905: 0x937C,\n\t25635 - 11905: 0x937D,\n\t25636 - 11905: 0x937E,\n\t25637 - 11905: 0x9380,\n\t25638 - 11905: 0xDEF9,\n\t25639 - 11905: 0x9381,\n\t25640 - 11905: 0x9382,\n\t25641 - 11905: 0x9383,\n\t25642 - 11905: 0xCCC2,\n\t25643 - 11905: 0x9384,\n\t25644 - 11905: 0xB0E1,\n\t25645 - 11905: 0xB4EE,\n\t25646 - 11905: 0x9385,\n\t25647 - 11905: 0x9386,\n\t25648 - 11905: 0x9387,\n\t25649 - 11905: 0x9388,\n\t25650 - 11905: 0x9389,\n\t25651 - 11905: 0x938A,\n\t25652 - 11905: 0xE5BA,\n\t25653 - 11905: 0x938B,\n\t25654 - 11905: 0x938C,\n\t25655 - 11905: 0x938D,\n\t25656 - 11905: 0x938E,\n\t25657 - 11905: 0x938F,\n\t25658 - 11905: 0xD0AF,\n\t25659 - 11905: 0x9390,\n\t25660 - 11905: 0x9391,\n\t25661 - 11905: 0xB2EB,\n\t25662 - 11905: 0x9392,\n\t25663 - 11905: 0xEBA1,\n\t25664 - 11905: 0x9393,\n\t25665 - 11905: 0xDEF4,\n\t25666 - 11905: 0x9394,\n\t25667 - 11905: 0x9395,\n\t25668 - 11905: 0xC9E3,\n\t25669 - 11905: 0xDEF3,\n\t25670 - 11905: 0xB0DA,\n\t25671 - 11905: 0xD2A1,\n\t25672 - 11905: 0xB1F7,\n\t25673 - 11905: 0x9396,\n\t25674 - 11905: 0xCCAF,\n\t25675 - 11905: 0x9397,\n\t25676 - 11905: 0x9398,\n\t25677 - 11905: 0x9399,\n\t25678 - 11905: 0x939A,\n\t25679 - 11905: 0x939B,\n\t25680 - 11905: 0x939C,\n\t25681 - 11905: 0x939D,\n\t25682 - 11905: 0xDEF0,\n\t25683 - 11905: 0x939E,\n\t25684 - 11905: 0xCBA4,\n\t25685 - 11905: 0x939F,\n\t25686 - 11905: 0x93A0,\n\t25687 - 11905: 0x93A1,\n\t25688 - 11905: 0xD5AA,\n\t25689 - 11905: 0x93A2,\n\t25690 - 11905: 0x93A3,\n\t25691 - 11905: 0x93A4,\n\t25692 - 11905: 0x93A5,\n\t25693 - 11905: 0x93A6,\n\t25694 - 11905: 0xDEFB,\n\t25695 - 11905: 0x93A7,\n\t25696 - 11905: 0x93A8,\n\t25697 - 11905: 0x93A9,\n\t25698 - 11905: 0x93AA,\n\t25699 - 11905: 0x93AB,\n\t25700 - 11905: 0x93AC,\n\t25701 - 11905: 0x93AD,\n\t25702 - 11905: 0x93AE,\n\t25703 - 11905: 0xB4DD,\n\t25704 - 11905: 0x93AF,\n\t25705 - 11905: 0xC4A6,\n\t25706 - 11905: 0x93B0,\n\t25707 - 11905: 0x93B1,\n\t25708 - 11905: 0x93B2,\n\t25709 - 11905: 0xDEFD,\n\t25710 - 11905: 0x93B3,\n\t25711 - 11905: 0x93B4,\n\t25712 - 11905: 0x93B5,\n\t25713 - 11905: 0x93B6,\n\t25714 - 11905: 0x93B7,\n\t25715 - 11905: 0x93B8,\n\t25716 - 11905: 0x93B9,\n\t25717 - 11905: 0x93BA,\n\t25718 - 11905: 0x93BB,\n\t25719 - 11905: 0x93BC,\n\t25720 - 11905: 0xC3FE,\n\t25721 - 11905: 0xC4A1,\n\t25722 - 11905: 0xDFA1,\n\t25723 - 11905: 0x93BD,\n\t25724 - 11905: 0x93BE,\n\t25725 - 11905: 0x93BF,\n\t25726 - 11905: 0x93C0,\n\t25727 - 11905: 0x93C1,\n\t25728 - 11905: 0x93C2,\n\t25729 - 11905: 0x93C3,\n\t25730 - 11905: 0xC1CC,\n\t25731 - 11905: 0x93C4,\n\t25732 - 11905: 0xDEFC,\n\t25733 - 11905: 0xBEEF,\n\t25734 - 11905: 0x93C5,\n\t25735 - 11905: 0xC6B2,\n\t25736 - 11905: 0x93C6,\n\t25737 - 11905: 0x93C7,\n\t25738 - 11905: 0x93C8,\n\t25739 - 11905: 0x93C9,\n\t25740 - 11905: 0x93CA,\n\t25741 - 11905: 0x93CB,\n\t25742 - 11905: 0x93CC,\n\t25743 - 11905: 0x93CD,\n\t25744 - 11905: 0x93CE,\n\t25745 - 11905: 0xB3C5,\n\t25746 - 11905: 0xC8F6,\n\t25747 - 11905: 0x93CF,\n\t25748 - 11905: 0x93D0,\n\t25749 - 11905: 0xCBBA,\n\t25750 - 11905: 0xDEFE,\n\t25751 - 11905: 0x93D1,\n\t25752 - 11905: 0x93D2,\n\t25753 - 11905: 0xDFA4,\n\t25754 - 11905: 0x93D3,\n\t25755 - 11905: 0x93D4,\n\t25756 - 11905: 0x93D5,\n\t25757 - 11905: 0x93D6,\n\t25758 - 11905: 0xD7B2,\n\t25759 - 11905: 0x93D7,\n\t25760 - 11905: 0x93D8,\n\t25761 - 11905: 0x93D9,\n\t25762 - 11905: 0x93DA,\n\t25763 - 11905: 0x93DB,\n\t25764 - 11905: 0xB3B7,\n\t25765 - 11905: 0x93DC,\n\t25766 - 11905: 0x93DD,\n\t25767 - 11905: 0x93DE,\n\t25768 - 11905: 0x93DF,\n\t25769 - 11905: 0xC1C3,\n\t25770 - 11905: 0x93E0,\n\t25771 - 11905: 0x93E1,\n\t25772 - 11905: 0xC7CB,\n\t25773 - 11905: 0xB2A5,\n\t25774 - 11905: 0xB4E9,\n\t25775 - 11905: 0x93E2,\n\t25776 - 11905: 0xD7AB,\n\t25777 - 11905: 0x93E3,\n\t25778 - 11905: 0x93E4,\n\t25779 - 11905: 0x93E5,\n\t25780 - 11905: 0x93E6,\n\t25781 - 11905: 0xC4EC,\n\t25782 - 11905: 0x93E7,\n\t25783 - 11905: 0xDFA2,\n\t25784 - 11905: 0xDFA3,\n\t25785 - 11905: 0x93E8,\n\t25786 - 11905: 0xDFA5,\n\t25787 - 11905: 0x93E9,\n\t25788 - 11905: 0xBAB3,\n\t25789 - 11905: 0x93EA,\n\t25790 - 11905: 0x93EB,\n\t25791 - 11905: 0x93EC,\n\t25792 - 11905: 0xDFA6,\n\t25793 - 11905: 0x93ED,\n\t25794 - 11905: 0xC0DE,\n\t25795 - 11905: 0x93EE,\n\t25796 - 11905: 0x93EF,\n\t25797 - 11905: 0xC9C3,\n\t25798 - 11905: 0x93F0,\n\t25799 - 11905: 0x93F1,\n\t25800 - 11905: 0x93F2,\n\t25801 - 11905: 0x93F3,\n\t25802 - 11905: 0x93F4,\n\t25803 - 11905: 0x93F5,\n\t25804 - 11905: 0x93F6,\n\t25805 - 11905: 0xB2D9,\n\t25806 - 11905: 0xC7E6,\n\t25807 - 11905: 0x93F7,\n\t25808 - 11905: 0xDFA7,\n\t25809 - 11905: 0x93F8,\n\t25810 - 11905: 0xC7DC,\n\t25811 - 11905: 0x93F9,\n\t25812 - 11905: 0x93FA,\n\t25813 - 11905: 0x93FB,\n\t25814 - 11905: 0x93FC,\n\t25815 - 11905: 0xDFA8,\n\t25816 - 11905: 0xEBA2,\n\t25817 - 11905: 0x93FD,\n\t25818 - 11905: 0x93FE,\n\t25819 - 11905: 0x9440,\n\t25820 - 11905: 0x9441,\n\t25821 - 11905: 0x9442,\n\t25822 - 11905: 0xCBD3,\n\t25823 - 11905: 0x9443,\n\t25824 - 11905: 0x9444,\n\t25825 - 11905: 0x9445,\n\t25826 - 11905: 0xDFAA,\n\t25827 - 11905: 0x9446,\n\t25828 - 11905: 0xDFA9,\n\t25829 - 11905: 0x9447,\n\t25830 - 11905: 0xB2C1,\n\t25831 - 11905: 0x9448,\n\t25832 - 11905: 0x9449,\n\t25833 - 11905: 0x944A,\n\t25834 - 11905: 0x944B,\n\t25835 - 11905: 0x944C,\n\t25836 - 11905: 0x944D,\n\t25837 - 11905: 0x944E,\n\t25838 - 11905: 0x944F,\n\t25839 - 11905: 0x9450,\n\t25840 - 11905: 0x9451,\n\t25841 - 11905: 0x9452,\n\t25842 - 11905: 0x9453,\n\t25843 - 11905: 0x9454,\n\t25844 - 11905: 0x9455,\n\t25845 - 11905: 0x9456,\n\t25846 - 11905: 0x9457,\n\t25847 - 11905: 0x9458,\n\t25848 - 11905: 0x9459,\n\t25849 - 11905: 0x945A,\n\t25850 - 11905: 0x945B,\n\t25851 - 11905: 0x945C,\n\t25852 - 11905: 0x945D,\n\t25853 - 11905: 0x945E,\n\t25854 - 11905: 0x945F,\n\t25855 - 11905: 0x9460,\n\t25856 - 11905: 0xC5CA,\n\t25857 - 11905: 0x9461,\n\t25858 - 11905: 0x9462,\n\t25859 - 11905: 0x9463,\n\t25860 - 11905: 0x9464,\n\t25861 - 11905: 0x9465,\n\t25862 - 11905: 0x9466,\n\t25863 - 11905: 0x9467,\n\t25864 - 11905: 0x9468,\n\t25865 - 11905: 0xDFAB,\n\t25866 - 11905: 0x9469,\n\t25867 - 11905: 0x946A,\n\t25868 - 11905: 0x946B,\n\t25869 - 11905: 0x946C,\n\t25870 - 11905: 0x946D,\n\t25871 - 11905: 0x946E,\n\t25872 - 11905: 0x946F,\n\t25873 - 11905: 0x9470,\n\t25874 - 11905: 0xD4DC,\n\t25875 - 11905: 0x9471,\n\t25876 - 11905: 0x9472,\n\t25877 - 11905: 0x9473,\n\t25878 - 11905: 0x9474,\n\t25879 - 11905: 0x9475,\n\t25880 - 11905: 0xC8C1,\n\t25881 - 11905: 0x9476,\n\t25882 - 11905: 0x9477,\n\t25883 - 11905: 0x9478,\n\t25884 - 11905: 0x9479,\n\t25885 - 11905: 0x947A,\n\t25886 - 11905: 0x947B,\n\t25887 - 11905: 0x947C,\n\t25888 - 11905: 0x947D,\n\t25889 - 11905: 0x947E,\n\t25890 - 11905: 0x9480,\n\t25891 - 11905: 0x9481,\n\t25892 - 11905: 0x9482,\n\t25893 - 11905: 0xDFAC,\n\t25894 - 11905: 0x9483,\n\t25895 - 11905: 0x9484,\n\t25896 - 11905: 0x9485,\n\t25897 - 11905: 0x9486,\n\t25898 - 11905: 0x9487,\n\t25899 - 11905: 0xBEF0,\n\t25900 - 11905: 0x9488,\n\t25901 - 11905: 0x9489,\n\t25902 - 11905: 0xDFAD,\n\t25903 - 11905: 0xD6A7,\n\t25904 - 11905: 0x948A,\n\t25905 - 11905: 0x948B,\n\t25906 - 11905: 0x948C,\n\t25907 - 11905: 0x948D,\n\t25908 - 11905: 0xEAB7,\n\t25909 - 11905: 0xEBB6,\n\t25910 - 11905: 0xCAD5,\n\t25911 - 11905: 0x948E,\n\t25912 - 11905: 0xD8FC,\n\t25913 - 11905: 0xB8C4,\n\t25914 - 11905: 0x948F,\n\t25915 - 11905: 0xB9A5,\n\t25916 - 11905: 0x9490,\n\t25917 - 11905: 0x9491,\n\t25918 - 11905: 0xB7C5,\n\t25919 - 11905: 0xD5FE,\n\t25920 - 11905: 0x9492,\n\t25921 - 11905: 0x9493,\n\t25922 - 11905: 0x9494,\n\t25923 - 11905: 0x9495,\n\t25924 - 11905: 0x9496,\n\t25925 - 11905: 0xB9CA,\n\t25926 - 11905: 0x9497,\n\t25927 - 11905: 0x9498,\n\t25928 - 11905: 0xD0A7,\n\t25929 - 11905: 0xF4CD,\n\t25930 - 11905: 0x9499,\n\t25931 - 11905: 0x949A,\n\t25932 - 11905: 0xB5D0,\n\t25933 - 11905: 0x949B,\n\t25934 - 11905: 0x949C,\n\t25935 - 11905: 0xC3F4,\n\t25936 - 11905: 0x949D,\n\t25937 - 11905: 0xBEC8,\n\t25938 - 11905: 0x949E,\n\t25939 - 11905: 0x949F,\n\t25940 - 11905: 0x94A0,\n\t25941 - 11905: 0xEBB7,\n\t25942 - 11905: 0xB0BD,\n\t25943 - 11905: 0x94A1,\n\t25944 - 11905: 0x94A2,\n\t25945 - 11905: 0xBDCC,\n\t25946 - 11905: 0x94A3,\n\t25947 - 11905: 0xC1B2,\n\t25948 - 11905: 0x94A4,\n\t25949 - 11905: 0xB1D6,\n\t25950 - 11905: 0xB3A8,\n\t25951 - 11905: 0x94A5,\n\t25952 - 11905: 0x94A6,\n\t25953 - 11905: 0x94A7,\n\t25954 - 11905: 0xB8D2,\n\t25955 - 11905: 0xC9A2,\n\t25956 - 11905: 0x94A8,\n\t25957 - 11905: 0x94A9,\n\t25958 - 11905: 0xB6D8,\n\t25959 - 11905: 0x94AA,\n\t25960 - 11905: 0x94AB,\n\t25961 - 11905: 0x94AC,\n\t25962 - 11905: 0x94AD,\n\t25963 - 11905: 0xEBB8,\n\t25964 - 11905: 0xBEB4,\n\t25965 - 11905: 0x94AE,\n\t25966 - 11905: 0x94AF,\n\t25967 - 11905: 0x94B0,\n\t25968 - 11905: 0xCAFD,\n\t25969 - 11905: 0x94B1,\n\t25970 - 11905: 0xC7C3,\n\t25971 - 11905: 0x94B2,\n\t25972 - 11905: 0xD5FB,\n\t25973 - 11905: 0x94B3,\n\t25974 - 11905: 0x94B4,\n\t25975 - 11905: 0xB7F3,\n\t25976 - 11905: 0x94B5,\n\t25977 - 11905: 0x94B6,\n\t25978 - 11905: 0x94B7,\n\t25979 - 11905: 0x94B8,\n\t25980 - 11905: 0x94B9,\n\t25981 - 11905: 0x94BA,\n\t25982 - 11905: 0x94BB,\n\t25983 - 11905: 0x94BC,\n\t25984 - 11905: 0x94BD,\n\t25985 - 11905: 0x94BE,\n\t25986 - 11905: 0x94BF,\n\t25987 - 11905: 0x94C0,\n\t25988 - 11905: 0x94C1,\n\t25989 - 11905: 0x94C2,\n\t25990 - 11905: 0x94C3,\n\t25991 - 11905: 0xCEC4,\n\t25992 - 11905: 0x94C4,\n\t25993 - 11905: 0x94C5,\n\t25994 - 11905: 0x94C6,\n\t25995 - 11905: 0xD5AB,\n\t25996 - 11905: 0xB1F3,\n\t25997 - 11905: 0x94C7,\n\t25998 - 11905: 0x94C8,\n\t25999 - 11905: 0x94C9,\n\t26000 - 11905: 0xECB3,\n\t26001 - 11905: 0xB0DF,\n\t26002 - 11905: 0x94CA,\n\t26003 - 11905: 0xECB5,\n\t26004 - 11905: 0x94CB,\n\t26005 - 11905: 0x94CC,\n\t26006 - 11905: 0x94CD,\n\t26007 - 11905: 0xB6B7,\n\t26008 - 11905: 0x94CE,\n\t26009 - 11905: 0xC1CF,\n\t26010 - 11905: 0x94CF,\n\t26011 - 11905: 0xF5FA,\n\t26012 - 11905: 0xD0B1,\n\t26013 - 11905: 0x94D0,\n\t26014 - 11905: 0x94D1,\n\t26015 - 11905: 0xD5E5,\n\t26016 - 11905: 0x94D2,\n\t26017 - 11905: 0xCED3,\n\t26018 - 11905: 0x94D3,\n\t26019 - 11905: 0x94D4,\n\t26020 - 11905: 0xBDEF,\n\t26021 - 11905: 0xB3E2,\n\t26022 - 11905: 0x94D5,\n\t26023 - 11905: 0xB8AB,\n\t26024 - 11905: 0x94D6,\n\t26025 - 11905: 0xD5B6,\n\t26026 - 11905: 0x94D7,\n\t26027 - 11905: 0xEDBD,\n\t26028 - 11905: 0x94D8,\n\t26029 - 11905: 0xB6CF,\n\t26030 - 11905: 0x94D9,\n\t26031 - 11905: 0xCBB9,\n\t26032 - 11905: 0xD0C2,\n\t26033 - 11905: 0x94DA,\n\t26034 - 11905: 0x94DB,\n\t26035 - 11905: 0x94DC,\n\t26036 - 11905: 0x94DD,\n\t26037 - 11905: 0x94DE,\n\t26038 - 11905: 0x94DF,\n\t26039 - 11905: 0x94E0,\n\t26040 - 11905: 0x94E1,\n\t26041 - 11905: 0xB7BD,\n\t26042 - 11905: 0x94E2,\n\t26043 - 11905: 0x94E3,\n\t26044 - 11905: 0xECB6,\n\t26045 - 11905: 0xCAA9,\n\t26046 - 11905: 0x94E4,\n\t26047 - 11905: 0x94E5,\n\t26048 - 11905: 0x94E6,\n\t26049 - 11905: 0xC5D4,\n\t26050 - 11905: 0x94E7,\n\t26051 - 11905: 0xECB9,\n\t26052 - 11905: 0xECB8,\n\t26053 - 11905: 0xC2C3,\n\t26054 - 11905: 0xECB7,\n\t26055 - 11905: 0x94E8,\n\t26056 - 11905: 0x94E9,\n\t26057 - 11905: 0x94EA,\n\t26058 - 11905: 0x94EB,\n\t26059 - 11905: 0xD0FD,\n\t26060 - 11905: 0xECBA,\n\t26061 - 11905: 0x94EC,\n\t26062 - 11905: 0xECBB,\n\t26063 - 11905: 0xD7E5,\n\t26064 - 11905: 0x94ED,\n\t26065 - 11905: 0x94EE,\n\t26066 - 11905: 0xECBC,\n\t26067 - 11905: 0x94EF,\n\t26068 - 11905: 0x94F0,\n\t26069 - 11905: 0x94F1,\n\t26070 - 11905: 0xECBD,\n\t26071 - 11905: 0xC6EC,\n\t26072 - 11905: 0x94F2,\n\t26073 - 11905: 0x94F3,\n\t26074 - 11905: 0x94F4,\n\t26075 - 11905: 0x94F5,\n\t26076 - 11905: 0x94F6,\n\t26077 - 11905: 0x94F7,\n\t26078 - 11905: 0x94F8,\n\t26079 - 11905: 0x94F9,\n\t26080 - 11905: 0xCEDE,\n\t26081 - 11905: 0x94FA,\n\t26082 - 11905: 0xBCC8,\n\t26083 - 11905: 0x94FB,\n\t26084 - 11905: 0x94FC,\n\t26085 - 11905: 0xC8D5,\n\t26086 - 11905: 0xB5A9,\n\t26087 - 11905: 0xBEC9,\n\t26088 - 11905: 0xD6BC,\n\t26089 - 11905: 0xD4E7,\n\t26090 - 11905: 0x94FD,\n\t26091 - 11905: 0x94FE,\n\t26092 - 11905: 0xD1AE,\n\t26093 - 11905: 0xD0F1,\n\t26094 - 11905: 0xEAB8,\n\t26095 - 11905: 0xEAB9,\n\t26096 - 11905: 0xEABA,\n\t26097 - 11905: 0xBAB5,\n\t26098 - 11905: 0x9540,\n\t26099 - 11905: 0x9541,\n\t26100 - 11905: 0x9542,\n\t26101 - 11905: 0x9543,\n\t26102 - 11905: 0xCAB1,\n\t26103 - 11905: 0xBFF5,\n\t26104 - 11905: 0x9544,\n\t26105 - 11905: 0x9545,\n\t26106 - 11905: 0xCDFA,\n\t26107 - 11905: 0x9546,\n\t26108 - 11905: 0x9547,\n\t26109 - 11905: 0x9548,\n\t26110 - 11905: 0x9549,\n\t26111 - 11905: 0x954A,\n\t26112 - 11905: 0xEAC0,\n\t26113 - 11905: 0x954B,\n\t26114 - 11905: 0xB0BA,\n\t26115 - 11905: 0xEABE,\n\t26116 - 11905: 0x954C,\n\t26117 - 11905: 0x954D,\n\t26118 - 11905: 0xC0A5,\n\t26119 - 11905: 0x954E,\n\t26120 - 11905: 0x954F,\n\t26121 - 11905: 0x9550,\n\t26122 - 11905: 0xEABB,\n\t26123 - 11905: 0x9551,\n\t26124 - 11905: 0xB2FD,\n\t26125 - 11905: 0x9552,\n\t26126 - 11905: 0xC3F7,\n\t26127 - 11905: 0xBBE8,\n\t26128 - 11905: 0x9553,\n\t26129 - 11905: 0x9554,\n\t26130 - 11905: 0x9555,\n\t26131 - 11905: 0xD2D7,\n\t26132 - 11905: 0xCEF4,\n\t26133 - 11905: 0xEABF,\n\t26134 - 11905: 0x9556,\n\t26135 - 11905: 0x9557,\n\t26136 - 11905: 0x9558,\n\t26137 - 11905: 0xEABC,\n\t26138 - 11905: 0x9559,\n\t26139 - 11905: 0x955A,\n\t26140 - 11905: 0x955B,\n\t26141 - 11905: 0xEAC3,\n\t26142 - 11905: 0x955C,\n\t26143 - 11905: 0xD0C7,\n\t26144 - 11905: 0xD3B3,\n\t26145 - 11905: 0x955D,\n\t26146 - 11905: 0x955E,\n\t26147 - 11905: 0x955F,\n\t26148 - 11905: 0x9560,\n\t26149 - 11905: 0xB4BA,\n\t26150 - 11905: 0x9561,\n\t26151 - 11905: 0xC3C1,\n\t26152 - 11905: 0xD7F2,\n\t26153 - 11905: 0x9562,\n\t26154 - 11905: 0x9563,\n\t26155 - 11905: 0x9564,\n\t26156 - 11905: 0x9565,\n\t26157 - 11905: 0xD5D1,\n\t26158 - 11905: 0x9566,\n\t26159 - 11905: 0xCAC7,\n\t26160 - 11905: 0x9567,\n\t26161 - 11905: 0xEAC5,\n\t26162 - 11905: 0x9568,\n\t26163 - 11905: 0x9569,\n\t26164 - 11905: 0xEAC4,\n\t26165 - 11905: 0xEAC7,\n\t26166 - 11905: 0xEAC6,\n\t26167 - 11905: 0x956A,\n\t26168 - 11905: 0x956B,\n\t26169 - 11905: 0x956C,\n\t26170 - 11905: 0x956D,\n\t26171 - 11905: 0x956E,\n\t26172 - 11905: 0xD6E7,\n\t26173 - 11905: 0x956F,\n\t26174 - 11905: 0xCFD4,\n\t26175 - 11905: 0x9570,\n\t26176 - 11905: 0x9571,\n\t26177 - 11905: 0xEACB,\n\t26178 - 11905: 0x9572,\n\t26179 - 11905: 0xBBCE,\n\t26180 - 11905: 0x9573,\n\t26181 - 11905: 0x9574,\n\t26182 - 11905: 0x9575,\n\t26183 - 11905: 0x9576,\n\t26184 - 11905: 0x9577,\n\t26185 - 11905: 0x9578,\n\t26186 - 11905: 0x9579,\n\t26187 - 11905: 0xBDFA,\n\t26188 - 11905: 0xC9CE,\n\t26189 - 11905: 0x957A,\n\t26190 - 11905: 0x957B,\n\t26191 - 11905: 0xEACC,\n\t26192 - 11905: 0x957C,\n\t26193 - 11905: 0x957D,\n\t26194 - 11905: 0xC9B9,\n\t26195 - 11905: 0xCFFE,\n\t26196 - 11905: 0xEACA,\n\t26197 - 11905: 0xD4CE,\n\t26198 - 11905: 0xEACD,\n\t26199 - 11905: 0xEACF,\n\t26200 - 11905: 0x957E,\n\t26201 - 11905: 0x9580,\n\t26202 - 11905: 0xCDED,\n\t26203 - 11905: 0x9581,\n\t26204 - 11905: 0x9582,\n\t26205 - 11905: 0x9583,\n\t26206 - 11905: 0x9584,\n\t26207 - 11905: 0xEAC9,\n\t26208 - 11905: 0x9585,\n\t26209 - 11905: 0xEACE,\n\t26210 - 11905: 0x9586,\n\t26211 - 11905: 0x9587,\n\t26212 - 11905: 0xCEEE,\n\t26213 - 11905: 0x9588,\n\t26214 - 11905: 0xBBDE,\n\t26215 - 11905: 0x9589,\n\t26216 - 11905: 0xB3BF,\n\t26217 - 11905: 0x958A,\n\t26218 - 11905: 0x958B,\n\t26219 - 11905: 0x958C,\n\t26220 - 11905: 0x958D,\n\t26221 - 11905: 0x958E,\n\t26222 - 11905: 0xC6D5,\n\t26223 - 11905: 0xBEB0,\n\t26224 - 11905: 0xCEFA,\n\t26225 - 11905: 0x958F,\n\t26226 - 11905: 0x9590,\n\t26227 - 11905: 0x9591,\n\t26228 - 11905: 0xC7E7,\n\t26229 - 11905: 0x9592,\n\t26230 - 11905: 0xBEA7,\n\t26231 - 11905: 0xEAD0,\n\t26232 - 11905: 0x9593,\n\t26233 - 11905: 0x9594,\n\t26234 - 11905: 0xD6C7,\n\t26235 - 11905: 0x9595,\n\t26236 - 11905: 0x9596,\n\t26237 - 11905: 0x9597,\n\t26238 - 11905: 0xC1C0,\n\t26239 - 11905: 0x9598,\n\t26240 - 11905: 0x9599,\n\t26241 - 11905: 0x959A,\n\t26242 - 11905: 0xD4DD,\n\t26243 - 11905: 0x959B,\n\t26244 - 11905: 0xEAD1,\n\t26245 - 11905: 0x959C,\n\t26246 - 11905: 0x959D,\n\t26247 - 11905: 0xCFBE,\n\t26248 - 11905: 0x959E,\n\t26249 - 11905: 0x959F,\n\t26250 - 11905: 0x95A0,\n\t26251 - 11905: 0x95A1,\n\t26252 - 11905: 0xEAD2,\n\t26253 - 11905: 0x95A2,\n\t26254 - 11905: 0x95A3,\n\t26255 - 11905: 0x95A4,\n\t26256 - 11905: 0x95A5,\n\t26257 - 11905: 0xCAEE,\n\t26258 - 11905: 0x95A6,\n\t26259 - 11905: 0x95A7,\n\t26260 - 11905: 0x95A8,\n\t26261 - 11905: 0x95A9,\n\t26262 - 11905: 0xC5AF,\n\t26263 - 11905: 0xB0B5,\n\t26264 - 11905: 0x95AA,\n\t26265 - 11905: 0x95AB,\n\t26266 - 11905: 0x95AC,\n\t26267 - 11905: 0x95AD,\n\t26268 - 11905: 0x95AE,\n\t26269 - 11905: 0xEAD4,\n\t26270 - 11905: 0x95AF,\n\t26271 - 11905: 0x95B0,\n\t26272 - 11905: 0x95B1,\n\t26273 - 11905: 0x95B2,\n\t26274 - 11905: 0x95B3,\n\t26275 - 11905: 0x95B4,\n\t26276 - 11905: 0x95B5,\n\t26277 - 11905: 0x95B6,\n\t26278 - 11905: 0x95B7,\n\t26279 - 11905: 0xEAD3,\n\t26280 - 11905: 0xF4DF,\n\t26281 - 11905: 0x95B8,\n\t26282 - 11905: 0x95B9,\n\t26283 - 11905: 0x95BA,\n\t26284 - 11905: 0x95BB,\n\t26285 - 11905: 0x95BC,\n\t26286 - 11905: 0xC4BA,\n\t26287 - 11905: 0x95BD,\n\t26288 - 11905: 0x95BE,\n\t26289 - 11905: 0x95BF,\n\t26290 - 11905: 0x95C0,\n\t26291 - 11905: 0x95C1,\n\t26292 - 11905: 0xB1A9,\n\t26293 - 11905: 0x95C2,\n\t26294 - 11905: 0x95C3,\n\t26295 - 11905: 0x95C4,\n\t26296 - 11905: 0x95C5,\n\t26297 - 11905: 0xE5DF,\n\t26298 - 11905: 0x95C6,\n\t26299 - 11905: 0x95C7,\n\t26300 - 11905: 0x95C8,\n\t26301 - 11905: 0x95C9,\n\t26302 - 11905: 0xEAD5,\n\t26303 - 11905: 0x95CA,\n\t26304 - 11905: 0x95CB,\n\t26305 - 11905: 0x95CC,\n\t26306 - 11905: 0x95CD,\n\t26307 - 11905: 0x95CE,\n\t26308 - 11905: 0x95CF,\n\t26309 - 11905: 0x95D0,\n\t26310 - 11905: 0x95D1,\n\t26311 - 11905: 0x95D2,\n\t26312 - 11905: 0x95D3,\n\t26313 - 11905: 0x95D4,\n\t26314 - 11905: 0x95D5,\n\t26315 - 11905: 0x95D6,\n\t26316 - 11905: 0x95D7,\n\t26317 - 11905: 0x95D8,\n\t26318 - 11905: 0x95D9,\n\t26319 - 11905: 0x95DA,\n\t26320 - 11905: 0x95DB,\n\t26321 - 11905: 0x95DC,\n\t26322 - 11905: 0x95DD,\n\t26323 - 11905: 0x95DE,\n\t26324 - 11905: 0x95DF,\n\t26325 - 11905: 0x95E0,\n\t26326 - 11905: 0x95E1,\n\t26327 - 11905: 0x95E2,\n\t26328 - 11905: 0x95E3,\n\t26329 - 11905: 0xCAEF,\n\t26330 - 11905: 0x95E4,\n\t26331 - 11905: 0xEAD6,\n\t26332 - 11905: 0xEAD7,\n\t26333 - 11905: 0xC6D8,\n\t26334 - 11905: 0x95E5,\n\t26335 - 11905: 0x95E6,\n\t26336 - 11905: 0x95E7,\n\t26337 - 11905: 0x95E8,\n\t26338 - 11905: 0x95E9,\n\t26339 - 11905: 0x95EA,\n\t26340 - 11905: 0x95EB,\n\t26341 - 11905: 0x95EC,\n\t26342 - 11905: 0xEAD8,\n\t26343 - 11905: 0x95ED,\n\t26344 - 11905: 0x95EE,\n\t26345 - 11905: 0xEAD9,\n\t26346 - 11905: 0x95EF,\n\t26347 - 11905: 0x95F0,\n\t26348 - 11905: 0x95F1,\n\t26349 - 11905: 0x95F2,\n\t26350 - 11905: 0x95F3,\n\t26351 - 11905: 0x95F4,\n\t26352 - 11905: 0xD4BB,\n\t26353 - 11905: 0x95F5,\n\t26354 - 11905: 0xC7FA,\n\t26355 - 11905: 0xD2B7,\n\t26356 - 11905: 0xB8FC,\n\t26357 - 11905: 0x95F6,\n\t26358 - 11905: 0x95F7,\n\t26359 - 11905: 0xEAC2,\n\t26360 - 11905: 0x95F8,\n\t26361 - 11905: 0xB2DC,\n\t26362 - 11905: 0x95F9,\n\t26363 - 11905: 0x95FA,\n\t26364 - 11905: 0xC2FC,\n\t26365 - 11905: 0x95FB,\n\t26366 - 11905: 0xD4F8,\n\t26367 - 11905: 0xCCE6,\n\t26368 - 11905: 0xD7EE,\n\t26369 - 11905: 0x95FC,\n\t26370 - 11905: 0x95FD,\n\t26371 - 11905: 0x95FE,\n\t26372 - 11905: 0x9640,\n\t26373 - 11905: 0x9641,\n\t26374 - 11905: 0x9642,\n\t26375 - 11905: 0x9643,\n\t26376 - 11905: 0xD4C2,\n\t26377 - 11905: 0xD3D0,\n\t26378 - 11905: 0xEBC3,\n\t26379 - 11905: 0xC5F3,\n\t26380 - 11905: 0x9644,\n\t26381 - 11905: 0xB7FE,\n\t26382 - 11905: 0x9645,\n\t26383 - 11905: 0x9646,\n\t26384 - 11905: 0xEBD4,\n\t26385 - 11905: 0x9647,\n\t26386 - 11905: 0x9648,\n\t26387 - 11905: 0x9649,\n\t26388 - 11905: 0xCBB7,\n\t26389 - 11905: 0xEBDE,\n\t26390 - 11905: 0x964A,\n\t26391 - 11905: 0xC0CA,\n\t26392 - 11905: 0x964B,\n\t26393 - 11905: 0x964C,\n\t26394 - 11905: 0x964D,\n\t26395 - 11905: 0xCDFB,\n\t26396 - 11905: 0x964E,\n\t26397 - 11905: 0xB3AF,\n\t26398 - 11905: 0x964F,\n\t26399 - 11905: 0xC6DA,\n\t26400 - 11905: 0x9650,\n\t26401 - 11905: 0x9651,\n\t26402 - 11905: 0x9652,\n\t26403 - 11905: 0x9653,\n\t26404 - 11905: 0x9654,\n\t26405 - 11905: 0x9655,\n\t26406 - 11905: 0xEBFC,\n\t26407 - 11905: 0x9656,\n\t26408 - 11905: 0xC4BE,\n\t26409 - 11905: 0x9657,\n\t26410 - 11905: 0xCEB4,\n\t26411 - 11905: 0xC4A9,\n\t26412 - 11905: 0xB1BE,\n\t26413 - 11905: 0xD4FD,\n\t26414 - 11905: 0x9658,\n\t26415 - 11905: 0xCAF5,\n\t26416 - 11905: 0x9659,\n\t26417 - 11905: 0xD6EC,\n\t26418 - 11905: 0x965A,\n\t26419 - 11905: 0x965B,\n\t26420 - 11905: 0xC6D3,\n\t26421 - 11905: 0xB6E4,\n\t26422 - 11905: 0x965C,\n\t26423 - 11905: 0x965D,\n\t26424 - 11905: 0x965E,\n\t26425 - 11905: 0x965F,\n\t26426 - 11905: 0xBBFA,\n\t26427 - 11905: 0x9660,\n\t26428 - 11905: 0x9661,\n\t26429 - 11905: 0xD0E0,\n\t26430 - 11905: 0x9662,\n\t26431 - 11905: 0x9663,\n\t26432 - 11905: 0xC9B1,\n\t26433 - 11905: 0x9664,\n\t26434 - 11905: 0xD4D3,\n\t26435 - 11905: 0xC8A8,\n\t26436 - 11905: 0x9665,\n\t26437 - 11905: 0x9666,\n\t26438 - 11905: 0xB8CB,\n\t26439 - 11905: 0x9667,\n\t26440 - 11905: 0xE8BE,\n\t26441 - 11905: 0xC9BC,\n\t26442 - 11905: 0x9668,\n\t26443 - 11905: 0x9669,\n\t26444 - 11905: 0xE8BB,\n\t26445 - 11905: 0x966A,\n\t26446 - 11905: 0xC0EE,\n\t26447 - 11905: 0xD0D3,\n\t26448 - 11905: 0xB2C4,\n\t26449 - 11905: 0xB4E5,\n\t26450 - 11905: 0x966B,\n\t26451 - 11905: 0xE8BC,\n\t26452 - 11905: 0x966C,\n\t26453 - 11905: 0x966D,\n\t26454 - 11905: 0xD5C8,\n\t26455 - 11905: 0x966E,\n\t26456 - 11905: 0x966F,\n\t26457 - 11905: 0x9670,\n\t26458 - 11905: 0x9671,\n\t26459 - 11905: 0x9672,\n\t26460 - 11905: 0xB6C5,\n\t26461 - 11905: 0x9673,\n\t26462 - 11905: 0xE8BD,\n\t26463 - 11905: 0xCAF8,\n\t26464 - 11905: 0xB8DC,\n\t26465 - 11905: 0xCCF5,\n\t26466 - 11905: 0x9674,\n\t26467 - 11905: 0x9675,\n\t26468 - 11905: 0x9676,\n\t26469 - 11905: 0xC0B4,\n\t26470 - 11905: 0x9677,\n\t26471 - 11905: 0x9678,\n\t26472 - 11905: 0xD1EE,\n\t26473 - 11905: 0xE8BF,\n\t26474 - 11905: 0xE8C2,\n\t26475 - 11905: 0x9679,\n\t26476 - 11905: 0x967A,\n\t26477 - 11905: 0xBABC,\n\t26478 - 11905: 0x967B,\n\t26479 - 11905: 0xB1AD,\n\t26480 - 11905: 0xBDDC,\n\t26481 - 11905: 0x967C,\n\t26482 - 11905: 0xEABD,\n\t26483 - 11905: 0xE8C3,\n\t26484 - 11905: 0x967D,\n\t26485 - 11905: 0xE8C6,\n\t26486 - 11905: 0x967E,\n\t26487 - 11905: 0xE8CB,\n\t26488 - 11905: 0x9680,\n\t26489 - 11905: 0x9681,\n\t26490 - 11905: 0x9682,\n\t26491 - 11905: 0x9683,\n\t26492 - 11905: 0xE8CC,\n\t26493 - 11905: 0x9684,\n\t26494 - 11905: 0xCBC9,\n\t26495 - 11905: 0xB0E5,\n\t26496 - 11905: 0x9685,\n\t26497 - 11905: 0xBCAB,\n\t26498 - 11905: 0x9686,\n\t26499 - 11905: 0x9687,\n\t26500 - 11905: 0xB9B9,\n\t26501 - 11905: 0x9688,\n\t26502 - 11905: 0x9689,\n\t26503 - 11905: 0xE8C1,\n\t26504 - 11905: 0x968A,\n\t26505 - 11905: 0xCDF7,\n\t26506 - 11905: 0x968B,\n\t26507 - 11905: 0xE8CA,\n\t26508 - 11905: 0x968C,\n\t26509 - 11905: 0x968D,\n\t26510 - 11905: 0x968E,\n\t26511 - 11905: 0x968F,\n\t26512 - 11905: 0xCEF6,\n\t26513 - 11905: 0x9690,\n\t26514 - 11905: 0x9691,\n\t26515 - 11905: 0x9692,\n\t26516 - 11905: 0x9693,\n\t26517 - 11905: 0xD5ED,\n\t26518 - 11905: 0x9694,\n\t26519 - 11905: 0xC1D6,\n\t26520 - 11905: 0xE8C4,\n\t26521 - 11905: 0x9695,\n\t26522 - 11905: 0xC3B6,\n\t26523 - 11905: 0x9696,\n\t26524 - 11905: 0xB9FB,\n\t26525 - 11905: 0xD6A6,\n\t26526 - 11905: 0xE8C8,\n\t26527 - 11905: 0x9697,\n\t26528 - 11905: 0x9698,\n\t26529 - 11905: 0x9699,\n\t26530 - 11905: 0xCAE0,\n\t26531 - 11905: 0xD4E6,\n\t26532 - 11905: 0x969A,\n\t26533 - 11905: 0xE8C0,\n\t26534 - 11905: 0x969B,\n\t26535 - 11905: 0xE8C5,\n\t26536 - 11905: 0xE8C7,\n\t26537 - 11905: 0x969C,\n\t26538 - 11905: 0xC7B9,\n\t26539 - 11905: 0xB7E3,\n\t26540 - 11905: 0x969D,\n\t26541 - 11905: 0xE8C9,\n\t26542 - 11905: 0x969E,\n\t26543 - 11905: 0xBFDD,\n\t26544 - 11905: 0xE8D2,\n\t26545 - 11905: 0x969F,\n\t26546 - 11905: 0x96A0,\n\t26547 - 11905: 0xE8D7,\n\t26548 - 11905: 0x96A1,\n\t26549 - 11905: 0xE8D5,\n\t26550 - 11905: 0xBCDC,\n\t26551 - 11905: 0xBCCF,\n\t26552 - 11905: 0xE8DB,\n\t26553 - 11905: 0x96A2,\n\t26554 - 11905: 0x96A3,\n\t26555 - 11905: 0x96A4,\n\t26556 - 11905: 0x96A5,\n\t26557 - 11905: 0x96A6,\n\t26558 - 11905: 0x96A7,\n\t26559 - 11905: 0x96A8,\n\t26560 - 11905: 0x96A9,\n\t26561 - 11905: 0xE8DE,\n\t26562 - 11905: 0x96AA,\n\t26563 - 11905: 0xE8DA,\n\t26564 - 11905: 0xB1FA,\n\t26565 - 11905: 0x96AB,\n\t26566 - 11905: 0x96AC,\n\t26567 - 11905: 0x96AD,\n\t26568 - 11905: 0x96AE,\n\t26569 - 11905: 0x96AF,\n\t26570 - 11905: 0x96B0,\n\t26571 - 11905: 0x96B1,\n\t26572 - 11905: 0x96B2,\n\t26573 - 11905: 0x96B3,\n\t26574 - 11905: 0x96B4,\n\t26575 - 11905: 0xB0D8,\n\t26576 - 11905: 0xC4B3,\n\t26577 - 11905: 0xB8CC,\n\t26578 - 11905: 0xC6E2,\n\t26579 - 11905: 0xC8BE,\n\t26580 - 11905: 0xC8E1,\n\t26581 - 11905: 0x96B5,\n\t26582 - 11905: 0x96B6,\n\t26583 - 11905: 0x96B7,\n\t26584 - 11905: 0xE8CF,\n\t26585 - 11905: 0xE8D4,\n\t26586 - 11905: 0xE8D6,\n\t26587 - 11905: 0x96B8,\n\t26588 - 11905: 0xB9F1,\n\t26589 - 11905: 0xE8D8,\n\t26590 - 11905: 0xD7F5,\n\t26591 - 11905: 0x96B9,\n\t26592 - 11905: 0xC4FB,\n\t26593 - 11905: 0x96BA,\n\t26594 - 11905: 0xE8DC,\n\t26595 - 11905: 0x96BB,\n\t26596 - 11905: 0x96BC,\n\t26597 - 11905: 0xB2E9,\n\t26598 - 11905: 0x96BD,\n\t26599 - 11905: 0x96BE,\n\t26600 - 11905: 0x96BF,\n\t26601 - 11905: 0xE8D1,\n\t26602 - 11905: 0x96C0,\n\t26603 - 11905: 0x96C1,\n\t26604 - 11905: 0xBCED,\n\t26605 - 11905: 0x96C2,\n\t26606 - 11905: 0x96C3,\n\t26607 - 11905: 0xBFC2,\n\t26608 - 11905: 0xE8CD,\n\t26609 - 11905: 0xD6F9,\n\t26610 - 11905: 0x96C4,\n\t26611 - 11905: 0xC1F8,\n\t26612 - 11905: 0xB2F1,\n\t26613 - 11905: 0x96C5,\n\t26614 - 11905: 0x96C6,\n\t26615 - 11905: 0x96C7,\n\t26616 - 11905: 0x96C8,\n\t26617 - 11905: 0x96C9,\n\t26618 - 11905: 0x96CA,\n\t26619 - 11905: 0x96CB,\n\t26620 - 11905: 0x96CC,\n\t26621 - 11905: 0xE8DF,\n\t26622 - 11905: 0x96CD,\n\t26623 - 11905: 0xCAC1,\n\t26624 - 11905: 0xE8D9,\n\t26625 - 11905: 0x96CE,\n\t26626 - 11905: 0x96CF,\n\t26627 - 11905: 0x96D0,\n\t26628 - 11905: 0x96D1,\n\t26629 - 11905: 0xD5A4,\n\t26630 - 11905: 0x96D2,\n\t26631 - 11905: 0xB1EA,\n\t26632 - 11905: 0xD5BB,\n\t26633 - 11905: 0xE8CE,\n\t26634 - 11905: 0xE8D0,\n\t26635 - 11905: 0xB6B0,\n\t26636 - 11905: 0xE8D3,\n\t26637 - 11905: 0x96D3,\n\t26638 - 11905: 0xE8DD,\n\t26639 - 11905: 0xC0B8,\n\t26640 - 11905: 0x96D4,\n\t26641 - 11905: 0xCAF7,\n\t26642 - 11905: 0x96D5,\n\t26643 - 11905: 0xCBA8,\n\t26644 - 11905: 0x96D6,\n\t26645 - 11905: 0x96D7,\n\t26646 - 11905: 0xC6DC,\n\t26647 - 11905: 0xC0F5,\n\t26648 - 11905: 0x96D8,\n\t26649 - 11905: 0x96D9,\n\t26650 - 11905: 0x96DA,\n\t26651 - 11905: 0x96DB,\n\t26652 - 11905: 0x96DC,\n\t26653 - 11905: 0xE8E9,\n\t26654 - 11905: 0x96DD,\n\t26655 - 11905: 0x96DE,\n\t26656 - 11905: 0x96DF,\n\t26657 - 11905: 0xD0A3,\n\t26658 - 11905: 0x96E0,\n\t26659 - 11905: 0x96E1,\n\t26660 - 11905: 0x96E2,\n\t26661 - 11905: 0x96E3,\n\t26662 - 11905: 0x96E4,\n\t26663 - 11905: 0x96E5,\n\t26664 - 11905: 0x96E6,\n\t26665 - 11905: 0xE8F2,\n\t26666 - 11905: 0xD6EA,\n\t26667 - 11905: 0x96E7,\n\t26668 - 11905: 0x96E8,\n\t26669 - 11905: 0x96E9,\n\t26670 - 11905: 0x96EA,\n\t26671 - 11905: 0x96EB,\n\t26672 - 11905: 0x96EC,\n\t26673 - 11905: 0x96ED,\n\t26674 - 11905: 0xE8E0,\n\t26675 - 11905: 0xE8E1,\n\t26676 - 11905: 0x96EE,\n\t26677 - 11905: 0x96EF,\n\t26678 - 11905: 0x96F0,\n\t26679 - 11905: 0xD1F9,\n\t26680 - 11905: 0xBACB,\n\t26681 - 11905: 0xB8F9,\n\t26682 - 11905: 0x96F1,\n\t26683 - 11905: 0x96F2,\n\t26684 - 11905: 0xB8F1,\n\t26685 - 11905: 0xD4D4,\n\t26686 - 11905: 0xE8EF,\n\t26687 - 11905: 0x96F3,\n\t26688 - 11905: 0xE8EE,\n\t26689 - 11905: 0xE8EC,\n\t26690 - 11905: 0xB9F0,\n\t26691 - 11905: 0xCCD2,\n\t26692 - 11905: 0xE8E6,\n\t26693 - 11905: 0xCEA6,\n\t26694 - 11905: 0xBFF2,\n\t26695 - 11905: 0x96F4,\n\t26696 - 11905: 0xB0B8,\n\t26697 - 11905: 0xE8F1,\n\t26698 - 11905: 0xE8F0,\n\t26699 - 11905: 0x96F5,\n\t26700 - 11905: 0xD7C0,\n\t26701 - 11905: 0x96F6,\n\t26702 - 11905: 0xE8E4,\n\t26703 - 11905: 0x96F7,\n\t26704 - 11905: 0xCDA9,\n\t26705 - 11905: 0xC9A3,\n\t26706 - 11905: 0x96F8,\n\t26707 - 11905: 0xBBB8,\n\t26708 - 11905: 0xBDDB,\n\t26709 - 11905: 0xE8EA,\n\t26710 - 11905: 0x96F9,\n\t26711 - 11905: 0x96FA,\n\t26712 - 11905: 0x96FB,\n\t26713 - 11905: 0x96FC,\n\t26714 - 11905: 0x96FD,\n\t26715 - 11905: 0x96FE,\n\t26716 - 11905: 0x9740,\n\t26717 - 11905: 0x9741,\n\t26718 - 11905: 0x9742,\n\t26719 - 11905: 0x9743,\n\t26720 - 11905: 0xE8E2,\n\t26721 - 11905: 0xE8E3,\n\t26722 - 11905: 0xE8E5,\n\t26723 - 11905: 0xB5B5,\n\t26724 - 11905: 0xE8E7,\n\t26725 - 11905: 0xC7C5,\n\t26726 - 11905: 0xE8EB,\n\t26727 - 11905: 0xE8ED,\n\t26728 - 11905: 0xBDB0,\n\t26729 - 11905: 0xD7AE,\n\t26730 - 11905: 0x9744,\n\t26731 - 11905: 0xE8F8,\n\t26732 - 11905: 0x9745,\n\t26733 - 11905: 0x9746,\n\t26734 - 11905: 0x9747,\n\t26735 - 11905: 0x9748,\n\t26736 - 11905: 0x9749,\n\t26737 - 11905: 0x974A,\n\t26738 - 11905: 0x974B,\n\t26739 - 11905: 0x974C,\n\t26740 - 11905: 0xE8F5,\n\t26741 - 11905: 0x974D,\n\t26742 - 11905: 0xCDB0,\n\t26743 - 11905: 0xE8F6,\n\t26744 - 11905: 0x974E,\n\t26745 - 11905: 0x974F,\n\t26746 - 11905: 0x9750,\n\t26747 - 11905: 0x9751,\n\t26748 - 11905: 0x9752,\n\t26749 - 11905: 0x9753,\n\t26750 - 11905: 0x9754,\n\t26751 - 11905: 0x9755,\n\t26752 - 11905: 0x9756,\n\t26753 - 11905: 0xC1BA,\n\t26754 - 11905: 0x9757,\n\t26755 - 11905: 0xE8E8,\n\t26756 - 11905: 0x9758,\n\t26757 - 11905: 0xC3B7,\n\t26758 - 11905: 0xB0F0,\n\t26759 - 11905: 0x9759,\n\t26760 - 11905: 0x975A,\n\t26761 - 11905: 0x975B,\n\t26762 - 11905: 0x975C,\n\t26763 - 11905: 0x975D,\n\t26764 - 11905: 0x975E,\n\t26765 - 11905: 0x975F,\n\t26766 - 11905: 0x9760,\n\t26767 - 11905: 0xE8F4,\n\t26768 - 11905: 0x9761,\n\t26769 - 11905: 0x9762,\n\t26770 - 11905: 0x9763,\n\t26771 - 11905: 0xE8F7,\n\t26772 - 11905: 0x9764,\n\t26773 - 11905: 0x9765,\n\t26774 - 11905: 0x9766,\n\t26775 - 11905: 0xB9A3,\n\t26776 - 11905: 0x9767,\n\t26777 - 11905: 0x9768,\n\t26778 - 11905: 0x9769,\n\t26779 - 11905: 0x976A,\n\t26780 - 11905: 0x976B,\n\t26781 - 11905: 0x976C,\n\t26782 - 11905: 0x976D,\n\t26783 - 11905: 0x976E,\n\t26784 - 11905: 0x976F,\n\t26785 - 11905: 0x9770,\n\t26786 - 11905: 0xC9D2,\n\t26787 - 11905: 0x9771,\n\t26788 - 11905: 0x9772,\n\t26789 - 11905: 0x9773,\n\t26790 - 11905: 0xC3CE,\n\t26791 - 11905: 0xCEE0,\n\t26792 - 11905: 0xC0E6,\n\t26793 - 11905: 0x9774,\n\t26794 - 11905: 0x9775,\n\t26795 - 11905: 0x9776,\n\t26796 - 11905: 0x9777,\n\t26797 - 11905: 0xCBF3,\n\t26798 - 11905: 0x9778,\n\t26799 - 11905: 0xCCDD,\n\t26800 - 11905: 0xD0B5,\n\t26801 - 11905: 0x9779,\n\t26802 - 11905: 0x977A,\n\t26803 - 11905: 0xCAE1,\n\t26804 - 11905: 0x977B,\n\t26805 - 11905: 0xE8F3,\n\t26806 - 11905: 0x977C,\n\t26807 - 11905: 0x977D,\n\t26808 - 11905: 0x977E,\n\t26809 - 11905: 0x9780,\n\t26810 - 11905: 0x9781,\n\t26811 - 11905: 0x9782,\n\t26812 - 11905: 0x9783,\n\t26813 - 11905: 0x9784,\n\t26814 - 11905: 0x9785,\n\t26815 - 11905: 0x9786,\n\t26816 - 11905: 0xBCEC,\n\t26817 - 11905: 0x9787,\n\t26818 - 11905: 0xE8F9,\n\t26819 - 11905: 0x9788,\n\t26820 - 11905: 0x9789,\n\t26821 - 11905: 0x978A,\n\t26822 - 11905: 0x978B,\n\t26823 - 11905: 0x978C,\n\t26824 - 11905: 0x978D,\n\t26825 - 11905: 0xC3DE,\n\t26826 - 11905: 0x978E,\n\t26827 - 11905: 0xC6E5,\n\t26828 - 11905: 0x978F,\n\t26829 - 11905: 0xB9F7,\n\t26830 - 11905: 0x9790,\n\t26831 - 11905: 0x9791,\n\t26832 - 11905: 0x9792,\n\t26833 - 11905: 0x9793,\n\t26834 - 11905: 0xB0F4,\n\t26835 - 11905: 0x9794,\n\t26836 - 11905: 0x9795,\n\t26837 - 11905: 0xD7D8,\n\t26838 - 11905: 0x9796,\n\t26839 - 11905: 0x9797,\n\t26840 - 11905: 0xBCAC,\n\t26841 - 11905: 0x9798,\n\t26842 - 11905: 0xC5EF,\n\t26843 - 11905: 0x9799,\n\t26844 - 11905: 0x979A,\n\t26845 - 11905: 0x979B,\n\t26846 - 11905: 0x979C,\n\t26847 - 11905: 0x979D,\n\t26848 - 11905: 0xCCC4,\n\t26849 - 11905: 0x979E,\n\t26850 - 11905: 0x979F,\n\t26851 - 11905: 0xE9A6,\n\t26852 - 11905: 0x97A0,\n\t26853 - 11905: 0x97A1,\n\t26854 - 11905: 0x97A2,\n\t26855 - 11905: 0x97A3,\n\t26856 - 11905: 0x97A4,\n\t26857 - 11905: 0x97A5,\n\t26858 - 11905: 0x97A6,\n\t26859 - 11905: 0x97A7,\n\t26860 - 11905: 0x97A8,\n\t26861 - 11905: 0x97A9,\n\t26862 - 11905: 0xC9AD,\n\t26863 - 11905: 0x97AA,\n\t26864 - 11905: 0xE9A2,\n\t26865 - 11905: 0xC0E2,\n\t26866 - 11905: 0x97AB,\n\t26867 - 11905: 0x97AC,\n\t26868 - 11905: 0x97AD,\n\t26869 - 11905: 0xBFC3,\n\t26870 - 11905: 0x97AE,\n\t26871 - 11905: 0x97AF,\n\t26872 - 11905: 0x97B0,\n\t26873 - 11905: 0xE8FE,\n\t26874 - 11905: 0xB9D7,\n\t26875 - 11905: 0x97B1,\n\t26876 - 11905: 0xE8FB,\n\t26877 - 11905: 0x97B2,\n\t26878 - 11905: 0x97B3,\n\t26879 - 11905: 0x97B4,\n\t26880 - 11905: 0x97B5,\n\t26881 - 11905: 0xE9A4,\n\t26882 - 11905: 0x97B6,\n\t26883 - 11905: 0x97B7,\n\t26884 - 11905: 0x97B8,\n\t26885 - 11905: 0xD2CE,\n\t26886 - 11905: 0x97B9,\n\t26887 - 11905: 0x97BA,\n\t26888 - 11905: 0x97BB,\n\t26889 - 11905: 0x97BC,\n\t26890 - 11905: 0x97BD,\n\t26891 - 11905: 0xE9A3,\n\t26892 - 11905: 0x97BE,\n\t26893 - 11905: 0xD6B2,\n\t26894 - 11905: 0xD7B5,\n\t26895 - 11905: 0x97BF,\n\t26896 - 11905: 0xE9A7,\n\t26897 - 11905: 0x97C0,\n\t26898 - 11905: 0xBDB7,\n\t26899 - 11905: 0x97C1,\n\t26900 - 11905: 0x97C2,\n\t26901 - 11905: 0x97C3,\n\t26902 - 11905: 0x97C4,\n\t26903 - 11905: 0x97C5,\n\t26904 - 11905: 0x97C6,\n\t26905 - 11905: 0x97C7,\n\t26906 - 11905: 0x97C8,\n\t26907 - 11905: 0x97C9,\n\t26908 - 11905: 0x97CA,\n\t26909 - 11905: 0x97CB,\n\t26910 - 11905: 0x97CC,\n\t26911 - 11905: 0xE8FC,\n\t26912 - 11905: 0xE8FD,\n\t26913 - 11905: 0x97CD,\n\t26914 - 11905: 0x97CE,\n\t26915 - 11905: 0x97CF,\n\t26916 - 11905: 0xE9A1,\n\t26917 - 11905: 0x97D0,\n\t26918 - 11905: 0x97D1,\n\t26919 - 11905: 0x97D2,\n\t26920 - 11905: 0x97D3,\n\t26921 - 11905: 0x97D4,\n\t26922 - 11905: 0x97D5,\n\t26923 - 11905: 0x97D6,\n\t26924 - 11905: 0x97D7,\n\t26925 - 11905: 0xCDD6,\n\t26926 - 11905: 0x97D8,\n\t26927 - 11905: 0x97D9,\n\t26928 - 11905: 0xD2AC,\n\t26929 - 11905: 0x97DA,\n\t26930 - 11905: 0x97DB,\n\t26931 - 11905: 0x97DC,\n\t26932 - 11905: 0xE9B2,\n\t26933 - 11905: 0x97DD,\n\t26934 - 11905: 0x97DE,\n\t26935 - 11905: 0x97DF,\n\t26936 - 11905: 0x97E0,\n\t26937 - 11905: 0xE9A9,\n\t26938 - 11905: 0x97E1,\n\t26939 - 11905: 0x97E2,\n\t26940 - 11905: 0x97E3,\n\t26941 - 11905: 0xB4AA,\n\t26942 - 11905: 0x97E4,\n\t26943 - 11905: 0xB4BB,\n\t26944 - 11905: 0x97E5,\n\t26945 - 11905: 0x97E6,\n\t26946 - 11905: 0xE9AB,\n\t26947 - 11905: 0x97E7,\n\t26948 - 11905: 0x97E8,\n\t26949 - 11905: 0x97E9,\n\t26950 - 11905: 0x97EA,\n\t26951 - 11905: 0x97EB,\n\t26952 - 11905: 0x97EC,\n\t26953 - 11905: 0x97ED,\n\t26954 - 11905: 0x97EE,\n\t26955 - 11905: 0x97EF,\n\t26956 - 11905: 0x97F0,\n\t26957 - 11905: 0x97F1,\n\t26958 - 11905: 0x97F2,\n\t26959 - 11905: 0x97F3,\n\t26960 - 11905: 0x97F4,\n\t26961 - 11905: 0x97F5,\n\t26962 - 11905: 0x97F6,\n\t26963 - 11905: 0x97F7,\n\t26964 - 11905: 0xD0A8,\n\t26965 - 11905: 0x97F8,\n\t26966 - 11905: 0x97F9,\n\t26967 - 11905: 0xE9A5,\n\t26968 - 11905: 0x97FA,\n\t26969 - 11905: 0x97FB,\n\t26970 - 11905: 0xB3FE,\n\t26971 - 11905: 0x97FC,\n\t26972 - 11905: 0x97FD,\n\t26973 - 11905: 0xE9AC,\n\t26974 - 11905: 0xC0E3,\n\t26975 - 11905: 0x97FE,\n\t26976 - 11905: 0xE9AA,\n\t26977 - 11905: 0x9840,\n\t26978 - 11905: 0x9841,\n\t26979 - 11905: 0xE9B9,\n\t26980 - 11905: 0x9842,\n\t26981 - 11905: 0x9843,\n\t26982 - 11905: 0xE9B8,\n\t26983 - 11905: 0x9844,\n\t26984 - 11905: 0x9845,\n\t26985 - 11905: 0x9846,\n\t26986 - 11905: 0x9847,\n\t26987 - 11905: 0xE9AE,\n\t26988 - 11905: 0x9848,\n\t26989 - 11905: 0x9849,\n\t26990 - 11905: 0xE8FA,\n\t26991 - 11905: 0x984A,\n\t26992 - 11905: 0x984B,\n\t26993 - 11905: 0xE9A8,\n\t26994 - 11905: 0x984C,\n\t26995 - 11905: 0x984D,\n\t26996 - 11905: 0x984E,\n\t26997 - 11905: 0x984F,\n\t26998 - 11905: 0x9850,\n\t26999 - 11905: 0xBFAC,\n\t27000 - 11905: 0xE9B1,\n\t27001 - 11905: 0xE9BA,\n\t27002 - 11905: 0x9851,\n\t27003 - 11905: 0x9852,\n\t27004 - 11905: 0xC2A5,\n\t27005 - 11905: 0x9853,\n\t27006 - 11905: 0x9854,\n\t27007 - 11905: 0x9855,\n\t27008 - 11905: 0xE9AF,\n\t27009 - 11905: 0x9856,\n\t27010 - 11905: 0xB8C5,\n\t27011 - 11905: 0x9857,\n\t27012 - 11905: 0xE9AD,\n\t27013 - 11905: 0x9858,\n\t27014 - 11905: 0xD3DC,\n\t27015 - 11905: 0xE9B4,\n\t27016 - 11905: 0xE9B5,\n\t27017 - 11905: 0xE9B7,\n\t27018 - 11905: 0x9859,\n\t27019 - 11905: 0x985A,\n\t27020 - 11905: 0x985B,\n\t27021 - 11905: 0xE9C7,\n\t27022 - 11905: 0x985C,\n\t27023 - 11905: 0x985D,\n\t27024 - 11905: 0x985E,\n\t27025 - 11905: 0x985F,\n\t27026 - 11905: 0x9860,\n\t27027 - 11905: 0x9861,\n\t27028 - 11905: 0xC0C6,\n\t27029 - 11905: 0xE9C5,\n\t27030 - 11905: 0x9862,\n\t27031 - 11905: 0x9863,\n\t27032 - 11905: 0xE9B0,\n\t27033 - 11905: 0x9864,\n\t27034 - 11905: 0x9865,\n\t27035 - 11905: 0xE9BB,\n\t27036 - 11905: 0xB0F1,\n\t27037 - 11905: 0x9866,\n\t27038 - 11905: 0x9867,\n\t27039 - 11905: 0x9868,\n\t27040 - 11905: 0x9869,\n\t27041 - 11905: 0x986A,\n\t27042 - 11905: 0x986B,\n\t27043 - 11905: 0x986C,\n\t27044 - 11905: 0x986D,\n\t27045 - 11905: 0x986E,\n\t27046 - 11905: 0x986F,\n\t27047 - 11905: 0xE9BC,\n\t27048 - 11905: 0xD5A5,\n\t27049 - 11905: 0x9870,\n\t27050 - 11905: 0x9871,\n\t27051 - 11905: 0xE9BE,\n\t27052 - 11905: 0x9872,\n\t27053 - 11905: 0xE9BF,\n\t27054 - 11905: 0x9873,\n\t27055 - 11905: 0x9874,\n\t27056 - 11905: 0x9875,\n\t27057 - 11905: 0xE9C1,\n\t27058 - 11905: 0x9876,\n\t27059 - 11905: 0x9877,\n\t27060 - 11905: 0xC1F1,\n\t27061 - 11905: 0x9878,\n\t27062 - 11905: 0x9879,\n\t27063 - 11905: 0xC8B6,\n\t27064 - 11905: 0x987A,\n\t27065 - 11905: 0x987B,\n\t27066 - 11905: 0x987C,\n\t27067 - 11905: 0xE9BD,\n\t27068 - 11905: 0x987D,\n\t27069 - 11905: 0x987E,\n\t27070 - 11905: 0x9880,\n\t27071 - 11905: 0x9881,\n\t27072 - 11905: 0x9882,\n\t27073 - 11905: 0xE9C2,\n\t27074 - 11905: 0x9883,\n\t27075 - 11905: 0x9884,\n\t27076 - 11905: 0x9885,\n\t27077 - 11905: 0x9886,\n\t27078 - 11905: 0x9887,\n\t27079 - 11905: 0x9888,\n\t27080 - 11905: 0x9889,\n\t27081 - 11905: 0x988A,\n\t27082 - 11905: 0xE9C3,\n\t27083 - 11905: 0x988B,\n\t27084 - 11905: 0xE9B3,\n\t27085 - 11905: 0x988C,\n\t27086 - 11905: 0xE9B6,\n\t27087 - 11905: 0x988D,\n\t27088 - 11905: 0xBBB1,\n\t27089 - 11905: 0x988E,\n\t27090 - 11905: 0x988F,\n\t27091 - 11905: 0x9890,\n\t27092 - 11905: 0xE9C0,\n\t27093 - 11905: 0x9891,\n\t27094 - 11905: 0x9892,\n\t27095 - 11905: 0x9893,\n\t27096 - 11905: 0x9894,\n\t27097 - 11905: 0x9895,\n\t27098 - 11905: 0x9896,\n\t27099 - 11905: 0xBCF7,\n\t27100 - 11905: 0x9897,\n\t27101 - 11905: 0x9898,\n\t27102 - 11905: 0x9899,\n\t27103 - 11905: 0xE9C4,\n\t27104 - 11905: 0xE9C6,\n\t27105 - 11905: 0x989A,\n\t27106 - 11905: 0x989B,\n\t27107 - 11905: 0x989C,\n\t27108 - 11905: 0x989D,\n\t27109 - 11905: 0x989E,\n\t27110 - 11905: 0x989F,\n\t27111 - 11905: 0x98A0,\n\t27112 - 11905: 0x98A1,\n\t27113 - 11905: 0x98A2,\n\t27114 - 11905: 0x98A3,\n\t27115 - 11905: 0x98A4,\n\t27116 - 11905: 0x98A5,\n\t27117 - 11905: 0xE9CA,\n\t27118 - 11905: 0x98A6,\n\t27119 - 11905: 0x98A7,\n\t27120 - 11905: 0x98A8,\n\t27121 - 11905: 0x98A9,\n\t27122 - 11905: 0xE9CE,\n\t27123 - 11905: 0x98AA,\n\t27124 - 11905: 0x98AB,\n\t27125 - 11905: 0x98AC,\n\t27126 - 11905: 0x98AD,\n\t27127 - 11905: 0x98AE,\n\t27128 - 11905: 0x98AF,\n\t27129 - 11905: 0x98B0,\n\t27130 - 11905: 0x98B1,\n\t27131 - 11905: 0x98B2,\n\t27132 - 11905: 0x98B3,\n\t27133 - 11905: 0xB2DB,\n\t27134 - 11905: 0x98B4,\n\t27135 - 11905: 0xE9C8,\n\t27136 - 11905: 0x98B5,\n\t27137 - 11905: 0x98B6,\n\t27138 - 11905: 0x98B7,\n\t27139 - 11905: 0x98B8,\n\t27140 - 11905: 0x98B9,\n\t27141 - 11905: 0x98BA,\n\t27142 - 11905: 0x98BB,\n\t27143 - 11905: 0x98BC,\n\t27144 - 11905: 0x98BD,\n\t27145 - 11905: 0x98BE,\n\t27146 - 11905: 0xB7AE,\n\t27147 - 11905: 0x98BF,\n\t27148 - 11905: 0x98C0,\n\t27149 - 11905: 0x98C1,\n\t27150 - 11905: 0x98C2,\n\t27151 - 11905: 0x98C3,\n\t27152 - 11905: 0x98C4,\n\t27153 - 11905: 0x98C5,\n\t27154 - 11905: 0x98C6,\n\t27155 - 11905: 0x98C7,\n\t27156 - 11905: 0x98C8,\n\t27157 - 11905: 0x98C9,\n\t27158 - 11905: 0x98CA,\n\t27159 - 11905: 0xE9CB,\n\t27160 - 11905: 0xE9CC,\n\t27161 - 11905: 0x98CB,\n\t27162 - 11905: 0x98CC,\n\t27163 - 11905: 0x98CD,\n\t27164 - 11905: 0x98CE,\n\t27165 - 11905: 0x98CF,\n\t27166 - 11905: 0x98D0,\n\t27167 - 11905: 0xD5C1,\n\t27168 - 11905: 0x98D1,\n\t27169 - 11905: 0xC4A3,\n\t27170 - 11905: 0x98D2,\n\t27171 - 11905: 0x98D3,\n\t27172 - 11905: 0x98D4,\n\t27173 - 11905: 0x98D5,\n\t27174 - 11905: 0x98D6,\n\t27175 - 11905: 0x98D7,\n\t27176 - 11905: 0xE9D8,\n\t27177 - 11905: 0x98D8,\n\t27178 - 11905: 0xBAE1,\n\t27179 - 11905: 0x98D9,\n\t27180 - 11905: 0x98DA,\n\t27181 - 11905: 0x98DB,\n\t27182 - 11905: 0x98DC,\n\t27183 - 11905: 0xE9C9,\n\t27184 - 11905: 0x98DD,\n\t27185 - 11905: 0xD3A3,\n\t27186 - 11905: 0x98DE,\n\t27187 - 11905: 0x98DF,\n\t27188 - 11905: 0x98E0,\n\t27189 - 11905: 0xE9D4,\n\t27190 - 11905: 0x98E1,\n\t27191 - 11905: 0x98E2,\n\t27192 - 11905: 0x98E3,\n\t27193 - 11905: 0x98E4,\n\t27194 - 11905: 0x98E5,\n\t27195 - 11905: 0x98E6,\n\t27196 - 11905: 0x98E7,\n\t27197 - 11905: 0xE9D7,\n\t27198 - 11905: 0xE9D0,\n\t27199 - 11905: 0x98E8,\n\t27200 - 11905: 0x98E9,\n\t27201 - 11905: 0x98EA,\n\t27202 - 11905: 0x98EB,\n\t27203 - 11905: 0x98EC,\n\t27204 - 11905: 0xE9CF,\n\t27205 - 11905: 0x98ED,\n\t27206 - 11905: 0x98EE,\n\t27207 - 11905: 0xC7C1,\n\t27208 - 11905: 0x98EF,\n\t27209 - 11905: 0x98F0,\n\t27210 - 11905: 0x98F1,\n\t27211 - 11905: 0x98F2,\n\t27212 - 11905: 0x98F3,\n\t27213 - 11905: 0x98F4,\n\t27214 - 11905: 0x98F5,\n\t27215 - 11905: 0x98F6,\n\t27216 - 11905: 0xE9D2,\n\t27217 - 11905: 0x98F7,\n\t27218 - 11905: 0x98F8,\n\t27219 - 11905: 0x98F9,\n\t27220 - 11905: 0x98FA,\n\t27221 - 11905: 0x98FB,\n\t27222 - 11905: 0x98FC,\n\t27223 - 11905: 0x98FD,\n\t27224 - 11905: 0xE9D9,\n\t27225 - 11905: 0xB3C8,\n\t27226 - 11905: 0x98FE,\n\t27227 - 11905: 0xE9D3,\n\t27228 - 11905: 0x9940,\n\t27229 - 11905: 0x9941,\n\t27230 - 11905: 0x9942,\n\t27231 - 11905: 0x9943,\n\t27232 - 11905: 0x9944,\n\t27233 - 11905: 0xCFF0,\n\t27234 - 11905: 0x9945,\n\t27235 - 11905: 0x9946,\n\t27236 - 11905: 0x9947,\n\t27237 - 11905: 0xE9CD,\n\t27238 - 11905: 0x9948,\n\t27239 - 11905: 0x9949,\n\t27240 - 11905: 0x994A,\n\t27241 - 11905: 0x994B,\n\t27242 - 11905: 0x994C,\n\t27243 - 11905: 0x994D,\n\t27244 - 11905: 0x994E,\n\t27245 - 11905: 0x994F,\n\t27246 - 11905: 0x9950,\n\t27247 - 11905: 0x9951,\n\t27248 - 11905: 0x9952,\n\t27249 - 11905: 0xB3F7,\n\t27250 - 11905: 0x9953,\n\t27251 - 11905: 0x9954,\n\t27252 - 11905: 0x9955,\n\t27253 - 11905: 0x9956,\n\t27254 - 11905: 0x9957,\n\t27255 - 11905: 0x9958,\n\t27256 - 11905: 0x9959,\n\t27257 - 11905: 0xE9D6,\n\t27258 - 11905: 0x995A,\n\t27259 - 11905: 0x995B,\n\t27260 - 11905: 0xE9DA,\n\t27261 - 11905: 0x995C,\n\t27262 - 11905: 0x995D,\n\t27263 - 11905: 0x995E,\n\t27264 - 11905: 0xCCB4,\n\t27265 - 11905: 0x995F,\n\t27266 - 11905: 0x9960,\n\t27267 - 11905: 0x9961,\n\t27268 - 11905: 0xCFAD,\n\t27269 - 11905: 0x9962,\n\t27270 - 11905: 0x9963,\n\t27271 - 11905: 0x9964,\n\t27272 - 11905: 0x9965,\n\t27273 - 11905: 0x9966,\n\t27274 - 11905: 0x9967,\n\t27275 - 11905: 0x9968,\n\t27276 - 11905: 0x9969,\n\t27277 - 11905: 0x996A,\n\t27278 - 11905: 0xE9D5,\n\t27279 - 11905: 0x996B,\n\t27280 - 11905: 0xE9DC,\n\t27281 - 11905: 0xE9DB,\n\t27282 - 11905: 0x996C,\n\t27283 - 11905: 0x996D,\n\t27284 - 11905: 0x996E,\n\t27285 - 11905: 0x996F,\n\t27286 - 11905: 0x9970,\n\t27287 - 11905: 0xE9DE,\n\t27288 - 11905: 0x9971,\n\t27289 - 11905: 0x9972,\n\t27290 - 11905: 0x9973,\n\t27291 - 11905: 0x9974,\n\t27292 - 11905: 0x9975,\n\t27293 - 11905: 0x9976,\n\t27294 - 11905: 0x9977,\n\t27295 - 11905: 0x9978,\n\t27296 - 11905: 0xE9D1,\n\t27297 - 11905: 0x9979,\n\t27298 - 11905: 0x997A,\n\t27299 - 11905: 0x997B,\n\t27300 - 11905: 0x997C,\n\t27301 - 11905: 0x997D,\n\t27302 - 11905: 0x997E,\n\t27303 - 11905: 0x9980,\n\t27304 - 11905: 0x9981,\n\t27305 - 11905: 0xE9DD,\n\t27306 - 11905: 0x9982,\n\t27307 - 11905: 0xE9DF,\n\t27308 - 11905: 0xC3CA,\n\t27309 - 11905: 0x9983,\n\t27310 - 11905: 0x9984,\n\t27311 - 11905: 0x9985,\n\t27312 - 11905: 0x9986,\n\t27313 - 11905: 0x9987,\n\t27314 - 11905: 0x9988,\n\t27315 - 11905: 0x9989,\n\t27316 - 11905: 0x998A,\n\t27317 - 11905: 0x998B,\n\t27318 - 11905: 0x998C,\n\t27319 - 11905: 0x998D,\n\t27320 - 11905: 0x998E,\n\t27321 - 11905: 0x998F,\n\t27322 - 11905: 0x9990,\n\t27323 - 11905: 0x9991,\n\t27324 - 11905: 0x9992,\n\t27325 - 11905: 0x9993,\n\t27326 - 11905: 0x9994,\n\t27327 - 11905: 0x9995,\n\t27328 - 11905: 0x9996,\n\t27329 - 11905: 0x9997,\n\t27330 - 11905: 0x9998,\n\t27331 - 11905: 0x9999,\n\t27332 - 11905: 0x999A,\n\t27333 - 11905: 0x999B,\n\t27334 - 11905: 0x999C,\n\t27335 - 11905: 0x999D,\n\t27336 - 11905: 0x999E,\n\t27337 - 11905: 0x999F,\n\t27338 - 11905: 0x99A0,\n\t27339 - 11905: 0x99A1,\n\t27340 - 11905: 0x99A2,\n\t27341 - 11905: 0x99A3,\n\t27342 - 11905: 0x99A4,\n\t27343 - 11905: 0x99A5,\n\t27344 - 11905: 0x99A6,\n\t27345 - 11905: 0x99A7,\n\t27346 - 11905: 0x99A8,\n\t27347 - 11905: 0x99A9,\n\t27348 - 11905: 0x99AA,\n\t27349 - 11905: 0x99AB,\n\t27350 - 11905: 0x99AC,\n\t27351 - 11905: 0x99AD,\n\t27352 - 11905: 0x99AE,\n\t27353 - 11905: 0x99AF,\n\t27354 - 11905: 0x99B0,\n\t27355 - 11905: 0x99B1,\n\t27356 - 11905: 0x99B2,\n\t27357 - 11905: 0x99B3,\n\t27358 - 11905: 0x99B4,\n\t27359 - 11905: 0x99B5,\n\t27360 - 11905: 0x99B6,\n\t27361 - 11905: 0x99B7,\n\t27362 - 11905: 0x99B8,\n\t27363 - 11905: 0x99B9,\n\t27364 - 11905: 0x99BA,\n\t27365 - 11905: 0x99BB,\n\t27366 - 11905: 0x99BC,\n\t27367 - 11905: 0x99BD,\n\t27368 - 11905: 0x99BE,\n\t27369 - 11905: 0x99BF,\n\t27370 - 11905: 0x99C0,\n\t27371 - 11905: 0x99C1,\n\t27372 - 11905: 0x99C2,\n\t27373 - 11905: 0x99C3,\n\t27374 - 11905: 0x99C4,\n\t27375 - 11905: 0x99C5,\n\t27376 - 11905: 0x99C6,\n\t27377 - 11905: 0x99C7,\n\t27378 - 11905: 0x99C8,\n\t27379 - 11905: 0x99C9,\n\t27380 - 11905: 0x99CA,\n\t27381 - 11905: 0x99CB,\n\t27382 - 11905: 0x99CC,\n\t27383 - 11905: 0x99CD,\n\t27384 - 11905: 0x99CE,\n\t27385 - 11905: 0x99CF,\n\t27386 - 11905: 0x99D0,\n\t27387 - 11905: 0x99D1,\n\t27388 - 11905: 0x99D2,\n\t27389 - 11905: 0x99D3,\n\t27390 - 11905: 0x99D4,\n\t27391 - 11905: 0x99D5,\n\t27392 - 11905: 0x99D6,\n\t27393 - 11905: 0x99D7,\n\t27394 - 11905: 0x99D8,\n\t27395 - 11905: 0x99D9,\n\t27396 - 11905: 0x99DA,\n\t27397 - 11905: 0x99DB,\n\t27398 - 11905: 0x99DC,\n\t27399 - 11905: 0x99DD,\n\t27400 - 11905: 0x99DE,\n\t27401 - 11905: 0x99DF,\n\t27402 - 11905: 0x99E0,\n\t27403 - 11905: 0x99E1,\n\t27404 - 11905: 0x99E2,\n\t27405 - 11905: 0x99E3,\n\t27406 - 11905: 0x99E4,\n\t27407 - 11905: 0x99E5,\n\t27408 - 11905: 0x99E6,\n\t27409 - 11905: 0x99E7,\n\t27410 - 11905: 0x99E8,\n\t27411 - 11905: 0x99E9,\n\t27412 - 11905: 0x99EA,\n\t27413 - 11905: 0x99EB,\n\t27414 - 11905: 0x99EC,\n\t27415 - 11905: 0x99ED,\n\t27416 - 11905: 0x99EE,\n\t27417 - 11905: 0x99EF,\n\t27418 - 11905: 0x99F0,\n\t27419 - 11905: 0x99F1,\n\t27420 - 11905: 0x99F2,\n\t27421 - 11905: 0x99F3,\n\t27422 - 11905: 0x99F4,\n\t27423 - 11905: 0x99F5,\n\t27424 - 11905: 0xC7B7,\n\t27425 - 11905: 0xB4CE,\n\t27426 - 11905: 0xBBB6,\n\t27427 - 11905: 0xD0C0,\n\t27428 - 11905: 0xECA3,\n\t27429 - 11905: 0x99F6,\n\t27430 - 11905: 0x99F7,\n\t27431 - 11905: 0xC5B7,\n\t27432 - 11905: 0x99F8,\n\t27433 - 11905: 0x99F9,\n\t27434 - 11905: 0x99FA,\n\t27435 - 11905: 0x99FB,\n\t27436 - 11905: 0x99FC,\n\t27437 - 11905: 0x99FD,\n\t27438 - 11905: 0x99FE,\n\t27439 - 11905: 0x9A40,\n\t27440 - 11905: 0x9A41,\n\t27441 - 11905: 0x9A42,\n\t27442 - 11905: 0xD3FB,\n\t27443 - 11905: 0x9A43,\n\t27444 - 11905: 0x9A44,\n\t27445 - 11905: 0x9A45,\n\t27446 - 11905: 0x9A46,\n\t27447 - 11905: 0xECA4,\n\t27448 - 11905: 0x9A47,\n\t27449 - 11905: 0xECA5,\n\t27450 - 11905: 0xC6DB,\n\t27451 - 11905: 0x9A48,\n\t27452 - 11905: 0x9A49,\n\t27453 - 11905: 0x9A4A,\n\t27454 - 11905: 0xBFEE,\n\t27455 - 11905: 0x9A4B,\n\t27456 - 11905: 0x9A4C,\n\t27457 - 11905: 0x9A4D,\n\t27458 - 11905: 0x9A4E,\n\t27459 - 11905: 0xECA6,\n\t27460 - 11905: 0x9A4F,\n\t27461 - 11905: 0x9A50,\n\t27462 - 11905: 0xECA7,\n\t27463 - 11905: 0xD0AA,\n\t27464 - 11905: 0x9A51,\n\t27465 - 11905: 0xC7B8,\n\t27466 - 11905: 0x9A52,\n\t27467 - 11905: 0x9A53,\n\t27468 - 11905: 0xB8E8,\n\t27469 - 11905: 0x9A54,\n\t27470 - 11905: 0x9A55,\n\t27471 - 11905: 0x9A56,\n\t27472 - 11905: 0x9A57,\n\t27473 - 11905: 0x9A58,\n\t27474 - 11905: 0x9A59,\n\t27475 - 11905: 0x9A5A,\n\t27476 - 11905: 0x9A5B,\n\t27477 - 11905: 0x9A5C,\n\t27478 - 11905: 0x9A5D,\n\t27479 - 11905: 0x9A5E,\n\t27480 - 11905: 0x9A5F,\n\t27481 - 11905: 0xECA8,\n\t27482 - 11905: 0x9A60,\n\t27483 - 11905: 0x9A61,\n\t27484 - 11905: 0x9A62,\n\t27485 - 11905: 0x9A63,\n\t27486 - 11905: 0x9A64,\n\t27487 - 11905: 0x9A65,\n\t27488 - 11905: 0x9A66,\n\t27489 - 11905: 0x9A67,\n\t27490 - 11905: 0xD6B9,\n\t27491 - 11905: 0xD5FD,\n\t27492 - 11905: 0xB4CB,\n\t27493 - 11905: 0xB2BD,\n\t27494 - 11905: 0xCEE4,\n\t27495 - 11905: 0xC6E7,\n\t27496 - 11905: 0x9A68,\n\t27497 - 11905: 0x9A69,\n\t27498 - 11905: 0xCDE1,\n\t27499 - 11905: 0x9A6A,\n\t27500 - 11905: 0x9A6B,\n\t27501 - 11905: 0x9A6C,\n\t27502 - 11905: 0x9A6D,\n\t27503 - 11905: 0x9A6E,\n\t27504 - 11905: 0x9A6F,\n\t27505 - 11905: 0x9A70,\n\t27506 - 11905: 0x9A71,\n\t27507 - 11905: 0x9A72,\n\t27508 - 11905: 0x9A73,\n\t27509 - 11905: 0x9A74,\n\t27510 - 11905: 0x9A75,\n\t27511 - 11905: 0x9A76,\n\t27512 - 11905: 0x9A77,\n\t27513 - 11905: 0xB4F5,\n\t27514 - 11905: 0x9A78,\n\t27515 - 11905: 0xCBC0,\n\t27516 - 11905: 0xBCDF,\n\t27517 - 11905: 0x9A79,\n\t27518 - 11905: 0x9A7A,\n\t27519 - 11905: 0x9A7B,\n\t27520 - 11905: 0x9A7C,\n\t27521 - 11905: 0xE9E2,\n\t27522 - 11905: 0xE9E3,\n\t27523 - 11905: 0xD1EA,\n\t27524 - 11905: 0xE9E5,\n\t27525 - 11905: 0x9A7D,\n\t27526 - 11905: 0xB4F9,\n\t27527 - 11905: 0xE9E4,\n\t27528 - 11905: 0x9A7E,\n\t27529 - 11905: 0xD1B3,\n\t27530 - 11905: 0xCAE2,\n\t27531 - 11905: 0xB2D0,\n\t27532 - 11905: 0x9A80,\n\t27533 - 11905: 0xE9E8,\n\t27534 - 11905: 0x9A81,\n\t27535 - 11905: 0x9A82,\n\t27536 - 11905: 0x9A83,\n\t27537 - 11905: 0x9A84,\n\t27538 - 11905: 0xE9E6,\n\t27539 - 11905: 0xE9E7,\n\t27540 - 11905: 0x9A85,\n\t27541 - 11905: 0x9A86,\n\t27542 - 11905: 0xD6B3,\n\t27543 - 11905: 0x9A87,\n\t27544 - 11905: 0x9A88,\n\t27545 - 11905: 0x9A89,\n\t27546 - 11905: 0xE9E9,\n\t27547 - 11905: 0xE9EA,\n\t27548 - 11905: 0x9A8A,\n\t27549 - 11905: 0x9A8B,\n\t27550 - 11905: 0x9A8C,\n\t27551 - 11905: 0x9A8D,\n\t27552 - 11905: 0x9A8E,\n\t27553 - 11905: 0xE9EB,\n\t27554 - 11905: 0x9A8F,\n\t27555 - 11905: 0x9A90,\n\t27556 - 11905: 0x9A91,\n\t27557 - 11905: 0x9A92,\n\t27558 - 11905: 0x9A93,\n\t27559 - 11905: 0x9A94,\n\t27560 - 11905: 0x9A95,\n\t27561 - 11905: 0x9A96,\n\t27562 - 11905: 0xE9EC,\n\t27563 - 11905: 0x9A97,\n\t27564 - 11905: 0x9A98,\n\t27565 - 11905: 0x9A99,\n\t27566 - 11905: 0x9A9A,\n\t27567 - 11905: 0x9A9B,\n\t27568 - 11905: 0x9A9C,\n\t27569 - 11905: 0x9A9D,\n\t27570 - 11905: 0x9A9E,\n\t27571 - 11905: 0xECAF,\n\t27572 - 11905: 0xC5B9,\n\t27573 - 11905: 0xB6CE,\n\t27574 - 11905: 0x9A9F,\n\t27575 - 11905: 0xD2F3,\n\t27576 - 11905: 0x9AA0,\n\t27577 - 11905: 0x9AA1,\n\t27578 - 11905: 0x9AA2,\n\t27579 - 11905: 0x9AA3,\n\t27580 - 11905: 0x9AA4,\n\t27581 - 11905: 0x9AA5,\n\t27582 - 11905: 0x9AA6,\n\t27583 - 11905: 0xB5EE,\n\t27584 - 11905: 0x9AA7,\n\t27585 - 11905: 0xBBD9,\n\t27586 - 11905: 0xECB1,\n\t27587 - 11905: 0x9AA8,\n\t27588 - 11905: 0x9AA9,\n\t27589 - 11905: 0xD2E3,\n\t27590 - 11905: 0x9AAA,\n\t27591 - 11905: 0x9AAB,\n\t27592 - 11905: 0x9AAC,\n\t27593 - 11905: 0x9AAD,\n\t27594 - 11905: 0x9AAE,\n\t27595 - 11905: 0xCEE3,\n\t27596 - 11905: 0x9AAF,\n\t27597 - 11905: 0xC4B8,\n\t27598 - 11905: 0x9AB0,\n\t27599 - 11905: 0xC3BF,\n\t27600 - 11905: 0x9AB1,\n\t27601 - 11905: 0x9AB2,\n\t27602 - 11905: 0xB6BE,\n\t27603 - 11905: 0xD8B9,\n\t27604 - 11905: 0xB1C8,\n\t27605 - 11905: 0xB1CF,\n\t27606 - 11905: 0xB1D1,\n\t27607 - 11905: 0xC5FE,\n\t27608 - 11905: 0x9AB3,\n\t27609 - 11905: 0xB1D0,\n\t27610 - 11905: 0x9AB4,\n\t27611 - 11905: 0xC3AB,\n\t27612 - 11905: 0x9AB5,\n\t27613 - 11905: 0x9AB6,\n\t27614 - 11905: 0x9AB7,\n\t27615 - 11905: 0x9AB8,\n\t27616 - 11905: 0x9AB9,\n\t27617 - 11905: 0xD5B1,\n\t27618 - 11905: 0x9ABA,\n\t27619 - 11905: 0x9ABB,\n\t27620 - 11905: 0x9ABC,\n\t27621 - 11905: 0x9ABD,\n\t27622 - 11905: 0x9ABE,\n\t27623 - 11905: 0x9ABF,\n\t27624 - 11905: 0x9AC0,\n\t27625 - 11905: 0x9AC1,\n\t27626 - 11905: 0xEBA4,\n\t27627 - 11905: 0xBAC1,\n\t27628 - 11905: 0x9AC2,\n\t27629 - 11905: 0x9AC3,\n\t27630 - 11905: 0x9AC4,\n\t27631 - 11905: 0xCCBA,\n\t27632 - 11905: 0x9AC5,\n\t27633 - 11905: 0x9AC6,\n\t27634 - 11905: 0x9AC7,\n\t27635 - 11905: 0xEBA5,\n\t27636 - 11905: 0x9AC8,\n\t27637 - 11905: 0xEBA7,\n\t27638 - 11905: 0x9AC9,\n\t27639 - 11905: 0x9ACA,\n\t27640 - 11905: 0x9ACB,\n\t27641 - 11905: 0xEBA8,\n\t27642 - 11905: 0x9ACC,\n\t27643 - 11905: 0x9ACD,\n\t27644 - 11905: 0x9ACE,\n\t27645 - 11905: 0xEBA6,\n\t27646 - 11905: 0x9ACF,\n\t27647 - 11905: 0x9AD0,\n\t27648 - 11905: 0x9AD1,\n\t27649 - 11905: 0x9AD2,\n\t27650 - 11905: 0x9AD3,\n\t27651 - 11905: 0x9AD4,\n\t27652 - 11905: 0x9AD5,\n\t27653 - 11905: 0xEBA9,\n\t27654 - 11905: 0xEBAB,\n\t27655 - 11905: 0xEBAA,\n\t27656 - 11905: 0x9AD6,\n\t27657 - 11905: 0x9AD7,\n\t27658 - 11905: 0x9AD8,\n\t27659 - 11905: 0x9AD9,\n\t27660 - 11905: 0x9ADA,\n\t27661 - 11905: 0xEBAC,\n\t27662 - 11905: 0x9ADB,\n\t27663 - 11905: 0xCACF,\n\t27664 - 11905: 0xD8B5,\n\t27665 - 11905: 0xC3F1,\n\t27666 - 11905: 0x9ADC,\n\t27667 - 11905: 0xC3A5,\n\t27668 - 11905: 0xC6F8,\n\t27669 - 11905: 0xEBAD,\n\t27670 - 11905: 0xC4CA,\n\t27671 - 11905: 0x9ADD,\n\t27672 - 11905: 0xEBAE,\n\t27673 - 11905: 0xEBAF,\n\t27674 - 11905: 0xEBB0,\n\t27675 - 11905: 0xB7D5,\n\t27676 - 11905: 0x9ADE,\n\t27677 - 11905: 0x9ADF,\n\t27678 - 11905: 0x9AE0,\n\t27679 - 11905: 0xB7FA,\n\t27680 - 11905: 0x9AE1,\n\t27681 - 11905: 0xEBB1,\n\t27682 - 11905: 0xC7E2,\n\t27683 - 11905: 0x9AE2,\n\t27684 - 11905: 0xEBB3,\n\t27685 - 11905: 0x9AE3,\n\t27686 - 11905: 0xBAA4,\n\t27687 - 11905: 0xD1F5,\n\t27688 - 11905: 0xB0B1,\n\t27689 - 11905: 0xEBB2,\n\t27690 - 11905: 0xEBB4,\n\t27691 - 11905: 0x9AE4,\n\t27692 - 11905: 0x9AE5,\n\t27693 - 11905: 0x9AE6,\n\t27694 - 11905: 0xB5AA,\n\t27695 - 11905: 0xC2C8,\n\t27696 - 11905: 0xC7E8,\n\t27697 - 11905: 0x9AE7,\n\t27698 - 11905: 0xEBB5,\n\t27699 - 11905: 0x9AE8,\n\t27700 - 11905: 0xCBAE,\n\t27701 - 11905: 0xE3DF,\n\t27702 - 11905: 0x9AE9,\n\t27703 - 11905: 0x9AEA,\n\t27704 - 11905: 0xD3C0,\n\t27705 - 11905: 0x9AEB,\n\t27706 - 11905: 0x9AEC,\n\t27707 - 11905: 0x9AED,\n\t27708 - 11905: 0x9AEE,\n\t27709 - 11905: 0xD9DB,\n\t27710 - 11905: 0x9AEF,\n\t27711 - 11905: 0x9AF0,\n\t27712 - 11905: 0xCDA1,\n\t27713 - 11905: 0xD6AD,\n\t27714 - 11905: 0xC7F3,\n\t27715 - 11905: 0x9AF1,\n\t27716 - 11905: 0x9AF2,\n\t27717 - 11905: 0x9AF3,\n\t27718 - 11905: 0xD9E0,\n\t27719 - 11905: 0xBBE3,\n\t27720 - 11905: 0x9AF4,\n\t27721 - 11905: 0xBABA,\n\t27722 - 11905: 0xE3E2,\n\t27723 - 11905: 0x9AF5,\n\t27724 - 11905: 0x9AF6,\n\t27725 - 11905: 0x9AF7,\n\t27726 - 11905: 0x9AF8,\n\t27727 - 11905: 0x9AF9,\n\t27728 - 11905: 0xCFAB,\n\t27729 - 11905: 0x9AFA,\n\t27730 - 11905: 0x9AFB,\n\t27731 - 11905: 0x9AFC,\n\t27732 - 11905: 0xE3E0,\n\t27733 - 11905: 0xC9C7,\n\t27734 - 11905: 0x9AFD,\n\t27735 - 11905: 0xBAB9,\n\t27736 - 11905: 0x9AFE,\n\t27737 - 11905: 0x9B40,\n\t27738 - 11905: 0x9B41,\n\t27739 - 11905: 0xD1B4,\n\t27740 - 11905: 0xE3E1,\n\t27741 - 11905: 0xC8EA,\n\t27742 - 11905: 0xB9AF,\n\t27743 - 11905: 0xBDAD,\n\t27744 - 11905: 0xB3D8,\n\t27745 - 11905: 0xCEDB,\n\t27746 - 11905: 0x9B42,\n\t27747 - 11905: 0x9B43,\n\t27748 - 11905: 0xCCC0,\n\t27749 - 11905: 0x9B44,\n\t27750 - 11905: 0x9B45,\n\t27751 - 11905: 0x9B46,\n\t27752 - 11905: 0xE3E8,\n\t27753 - 11905: 0xE3E9,\n\t27754 - 11905: 0xCDF4,\n\t27755 - 11905: 0x9B47,\n\t27756 - 11905: 0x9B48,\n\t27757 - 11905: 0x9B49,\n\t27758 - 11905: 0x9B4A,\n\t27759 - 11905: 0x9B4B,\n\t27760 - 11905: 0xCCAD,\n\t27761 - 11905: 0x9B4C,\n\t27762 - 11905: 0xBCB3,\n\t27763 - 11905: 0x9B4D,\n\t27764 - 11905: 0xE3EA,\n\t27765 - 11905: 0x9B4E,\n\t27766 - 11905: 0xE3EB,\n\t27767 - 11905: 0x9B4F,\n\t27768 - 11905: 0x9B50,\n\t27769 - 11905: 0xD0DA,\n\t27770 - 11905: 0x9B51,\n\t27771 - 11905: 0x9B52,\n\t27772 - 11905: 0x9B53,\n\t27773 - 11905: 0xC6FB,\n\t27774 - 11905: 0xB7DA,\n\t27775 - 11905: 0x9B54,\n\t27776 - 11905: 0x9B55,\n\t27777 - 11905: 0xC7DF,\n\t27778 - 11905: 0xD2CA,\n\t27779 - 11905: 0xCED6,\n\t27780 - 11905: 0x9B56,\n\t27781 - 11905: 0xE3E4,\n\t27782 - 11905: 0xE3EC,\n\t27783 - 11905: 0x9B57,\n\t27784 - 11905: 0xC9F2,\n\t27785 - 11905: 0xB3C1,\n\t27786 - 11905: 0x9B58,\n\t27787 - 11905: 0x9B59,\n\t27788 - 11905: 0xE3E7,\n\t27789 - 11905: 0x9B5A,\n\t27790 - 11905: 0x9B5B,\n\t27791 - 11905: 0xC6E3,\n\t27792 - 11905: 0xE3E5,\n\t27793 - 11905: 0x9B5C,\n\t27794 - 11905: 0x9B5D,\n\t27795 - 11905: 0xEDB3,\n\t27796 - 11905: 0xE3E6,\n\t27797 - 11905: 0x9B5E,\n\t27798 - 11905: 0x9B5F,\n\t27799 - 11905: 0x9B60,\n\t27800 - 11905: 0x9B61,\n\t27801 - 11905: 0xC9B3,\n\t27802 - 11905: 0x9B62,\n\t27803 - 11905: 0xC5E6,\n\t27804 - 11905: 0x9B63,\n\t27805 - 11905: 0x9B64,\n\t27806 - 11905: 0x9B65,\n\t27807 - 11905: 0xB9B5,\n\t27808 - 11905: 0x9B66,\n\t27809 - 11905: 0xC3BB,\n\t27810 - 11905: 0x9B67,\n\t27811 - 11905: 0xE3E3,\n\t27812 - 11905: 0xC5BD,\n\t27813 - 11905: 0xC1A4,\n\t27814 - 11905: 0xC2D9,\n\t27815 - 11905: 0xB2D7,\n\t27816 - 11905: 0x9B68,\n\t27817 - 11905: 0xE3ED,\n\t27818 - 11905: 0xBBA6,\n\t27819 - 11905: 0xC4AD,\n\t27820 - 11905: 0x9B69,\n\t27821 - 11905: 0xE3F0,\n\t27822 - 11905: 0xBEDA,\n\t27823 - 11905: 0x9B6A,\n\t27824 - 11905: 0x9B6B,\n\t27825 - 11905: 0xE3FB,\n\t27826 - 11905: 0xE3F5,\n\t27827 - 11905: 0xBAD3,\n\t27828 - 11905: 0x9B6C,\n\t27829 - 11905: 0x9B6D,\n\t27830 - 11905: 0x9B6E,\n\t27831 - 11905: 0x9B6F,\n\t27832 - 11905: 0xB7D0,\n\t27833 - 11905: 0xD3CD,\n\t27834 - 11905: 0x9B70,\n\t27835 - 11905: 0xD6CE,\n\t27836 - 11905: 0xD5D3,\n\t27837 - 11905: 0xB9C1,\n\t27838 - 11905: 0xD5B4,\n\t27839 - 11905: 0xD1D8,\n\t27840 - 11905: 0x9B71,\n\t27841 - 11905: 0x9B72,\n\t27842 - 11905: 0x9B73,\n\t27843 - 11905: 0x9B74,\n\t27844 - 11905: 0xD0B9,\n\t27845 - 11905: 0xC7F6,\n\t27846 - 11905: 0x9B75,\n\t27847 - 11905: 0x9B76,\n\t27848 - 11905: 0x9B77,\n\t27849 - 11905: 0xC8AA,\n\t27850 - 11905: 0xB2B4,\n\t27851 - 11905: 0x9B78,\n\t27852 - 11905: 0xC3DA,\n\t27853 - 11905: 0x9B79,\n\t27854 - 11905: 0x9B7A,\n\t27855 - 11905: 0x9B7B,\n\t27856 - 11905: 0xE3EE,\n\t27857 - 11905: 0x9B7C,\n\t27858 - 11905: 0x9B7D,\n\t27859 - 11905: 0xE3FC,\n\t27860 - 11905: 0xE3EF,\n\t27861 - 11905: 0xB7A8,\n\t27862 - 11905: 0xE3F7,\n\t27863 - 11905: 0xE3F4,\n\t27864 - 11905: 0x9B7E,\n\t27865 - 11905: 0x9B80,\n\t27866 - 11905: 0x9B81,\n\t27867 - 11905: 0xB7BA,\n\t27868 - 11905: 0x9B82,\n\t27869 - 11905: 0x9B83,\n\t27870 - 11905: 0xC5A2,\n\t27871 - 11905: 0x9B84,\n\t27872 - 11905: 0xE3F6,\n\t27873 - 11905: 0xC5DD,\n\t27874 - 11905: 0xB2A8,\n\t27875 - 11905: 0xC6FC,\n\t27876 - 11905: 0x9B85,\n\t27877 - 11905: 0xC4E0,\n\t27878 - 11905: 0x9B86,\n\t27879 - 11905: 0x9B87,\n\t27880 - 11905: 0xD7A2,\n\t27881 - 11905: 0x9B88,\n\t27882 - 11905: 0xC0E1,\n\t27883 - 11905: 0xE3F9,\n\t27884 - 11905: 0x9B89,\n\t27885 - 11905: 0x9B8A,\n\t27886 - 11905: 0xE3FA,\n\t27887 - 11905: 0xE3FD,\n\t27888 - 11905: 0xCCA9,\n\t27889 - 11905: 0xE3F3,\n\t27890 - 11905: 0x9B8B,\n\t27891 - 11905: 0xD3BE,\n\t27892 - 11905: 0x9B8C,\n\t27893 - 11905: 0xB1C3,\n\t27894 - 11905: 0xEDB4,\n\t27895 - 11905: 0xE3F1,\n\t27896 - 11905: 0xE3F2,\n\t27897 - 11905: 0x9B8D,\n\t27898 - 11905: 0xE3F8,\n\t27899 - 11905: 0xD0BA,\n\t27900 - 11905: 0xC6C3,\n\t27901 - 11905: 0xD4F3,\n\t27902 - 11905: 0xE3FE,\n\t27903 - 11905: 0x9B8E,\n\t27904 - 11905: 0x9B8F,\n\t27905 - 11905: 0xBDE0,\n\t27906 - 11905: 0x9B90,\n\t27907 - 11905: 0x9B91,\n\t27908 - 11905: 0xE4A7,\n\t27909 - 11905: 0x9B92,\n\t27910 - 11905: 0x9B93,\n\t27911 - 11905: 0xE4A6,\n\t27912 - 11905: 0x9B94,\n\t27913 - 11905: 0x9B95,\n\t27914 - 11905: 0x9B96,\n\t27915 - 11905: 0xD1F3,\n\t27916 - 11905: 0xE4A3,\n\t27917 - 11905: 0x9B97,\n\t27918 - 11905: 0xE4A9,\n\t27919 - 11905: 0x9B98,\n\t27920 - 11905: 0x9B99,\n\t27921 - 11905: 0x9B9A,\n\t27922 - 11905: 0xC8F7,\n\t27923 - 11905: 0x9B9B,\n\t27924 - 11905: 0x9B9C,\n\t27925 - 11905: 0x9B9D,\n\t27926 - 11905: 0x9B9E,\n\t27927 - 11905: 0xCFB4,\n\t27928 - 11905: 0x9B9F,\n\t27929 - 11905: 0xE4A8,\n\t27930 - 11905: 0xE4AE,\n\t27931 - 11905: 0xC2E5,\n\t27932 - 11905: 0x9BA0,\n\t27933 - 11905: 0x9BA1,\n\t27934 - 11905: 0xB6B4,\n\t27935 - 11905: 0x9BA2,\n\t27936 - 11905: 0x9BA3,\n\t27937 - 11905: 0x9BA4,\n\t27938 - 11905: 0x9BA5,\n\t27939 - 11905: 0x9BA6,\n\t27940 - 11905: 0x9BA7,\n\t27941 - 11905: 0xBDF2,\n\t27942 - 11905: 0x9BA8,\n\t27943 - 11905: 0xE4A2,\n\t27944 - 11905: 0x9BA9,\n\t27945 - 11905: 0x9BAA,\n\t27946 - 11905: 0xBAE9,\n\t27947 - 11905: 0xE4AA,\n\t27948 - 11905: 0x9BAB,\n\t27949 - 11905: 0x9BAC,\n\t27950 - 11905: 0xE4AC,\n\t27951 - 11905: 0x9BAD,\n\t27952 - 11905: 0x9BAE,\n\t27953 - 11905: 0xB6FD,\n\t27954 - 11905: 0xD6DE,\n\t27955 - 11905: 0xE4B2,\n\t27956 - 11905: 0x9BAF,\n\t27957 - 11905: 0xE4AD,\n\t27958 - 11905: 0x9BB0,\n\t27959 - 11905: 0x9BB1,\n\t27960 - 11905: 0x9BB2,\n\t27961 - 11905: 0xE4A1,\n\t27962 - 11905: 0x9BB3,\n\t27963 - 11905: 0xBBEE,\n\t27964 - 11905: 0xCDDD,\n\t27965 - 11905: 0xC7A2,\n\t27966 - 11905: 0xC5C9,\n\t27967 - 11905: 0x9BB4,\n\t27968 - 11905: 0x9BB5,\n\t27969 - 11905: 0xC1F7,\n\t27970 - 11905: 0x9BB6,\n\t27971 - 11905: 0xE4A4,\n\t27972 - 11905: 0x9BB7,\n\t27973 - 11905: 0xC7B3,\n\t27974 - 11905: 0xBDAC,\n\t27975 - 11905: 0xBDBD,\n\t27976 - 11905: 0xE4A5,\n\t27977 - 11905: 0x9BB8,\n\t27978 - 11905: 0xD7C7,\n\t27979 - 11905: 0xB2E2,\n\t27980 - 11905: 0x9BB9,\n\t27981 - 11905: 0xE4AB,\n\t27982 - 11905: 0xBCC3,\n\t27983 - 11905: 0xE4AF,\n\t27984 - 11905: 0x9BBA,\n\t27985 - 11905: 0xBBEB,\n\t27986 - 11905: 0xE4B0,\n\t27987 - 11905: 0xC5A8,\n\t27988 - 11905: 0xE4B1,\n\t27989 - 11905: 0x9BBB,\n\t27990 - 11905: 0x9BBC,\n\t27991 - 11905: 0x9BBD,\n\t27992 - 11905: 0x9BBE,\n\t27993 - 11905: 0xD5E3,\n\t27994 - 11905: 0xBFA3,\n\t27995 - 11905: 0x9BBF,\n\t27996 - 11905: 0xE4BA,\n\t27997 - 11905: 0x9BC0,\n\t27998 - 11905: 0xE4B7,\n\t27999 - 11905: 0x9BC1,\n\t28000 - 11905: 0xE4BB,\n\t28001 - 11905: 0x9BC2,\n\t28002 - 11905: 0x9BC3,\n\t28003 - 11905: 0xE4BD,\n\t28004 - 11905: 0x9BC4,\n\t28005 - 11905: 0x9BC5,\n\t28006 - 11905: 0xC6D6,\n\t28007 - 11905: 0x9BC6,\n\t28008 - 11905: 0x9BC7,\n\t28009 - 11905: 0xBAC6,\n\t28010 - 11905: 0xC0CB,\n\t28011 - 11905: 0x9BC8,\n\t28012 - 11905: 0x9BC9,\n\t28013 - 11905: 0x9BCA,\n\t28014 - 11905: 0xB8A1,\n\t28015 - 11905: 0xE4B4,\n\t28016 - 11905: 0x9BCB,\n\t28017 - 11905: 0x9BCC,\n\t28018 - 11905: 0x9BCD,\n\t28019 - 11905: 0x9BCE,\n\t28020 - 11905: 0xD4A1,\n\t28021 - 11905: 0x9BCF,\n\t28022 - 11905: 0x9BD0,\n\t28023 - 11905: 0xBAA3,\n\t28024 - 11905: 0xBDFE,\n\t28025 - 11905: 0x9BD1,\n\t28026 - 11905: 0x9BD2,\n\t28027 - 11905: 0x9BD3,\n\t28028 - 11905: 0xE4BC,\n\t28029 - 11905: 0x9BD4,\n\t28030 - 11905: 0x9BD5,\n\t28031 - 11905: 0x9BD6,\n\t28032 - 11905: 0x9BD7,\n\t28033 - 11905: 0x9BD8,\n\t28034 - 11905: 0xCDBF,\n\t28035 - 11905: 0x9BD9,\n\t28036 - 11905: 0x9BDA,\n\t28037 - 11905: 0xC4F9,\n\t28038 - 11905: 0x9BDB,\n\t28039 - 11905: 0x9BDC,\n\t28040 - 11905: 0xCFFB,\n\t28041 - 11905: 0xC9E6,\n\t28042 - 11905: 0x9BDD,\n\t28043 - 11905: 0x9BDE,\n\t28044 - 11905: 0xD3BF,\n\t28045 - 11905: 0x9BDF,\n\t28046 - 11905: 0xCFD1,\n\t28047 - 11905: 0x9BE0,\n\t28048 - 11905: 0x9BE1,\n\t28049 - 11905: 0xE4B3,\n\t28050 - 11905: 0x9BE2,\n\t28051 - 11905: 0xE4B8,\n\t28052 - 11905: 0xE4B9,\n\t28053 - 11905: 0xCCE9,\n\t28054 - 11905: 0x9BE3,\n\t28055 - 11905: 0x9BE4,\n\t28056 - 11905: 0x9BE5,\n\t28057 - 11905: 0x9BE6,\n\t28058 - 11905: 0x9BE7,\n\t28059 - 11905: 0xCCCE,\n\t28060 - 11905: 0x9BE8,\n\t28061 - 11905: 0xC0D4,\n\t28062 - 11905: 0xE4B5,\n\t28063 - 11905: 0xC1B0,\n\t28064 - 11905: 0xE4B6,\n\t28065 - 11905: 0xCED0,\n\t28066 - 11905: 0x9BE9,\n\t28067 - 11905: 0xBBC1,\n\t28068 - 11905: 0xB5D3,\n\t28069 - 11905: 0x9BEA,\n\t28070 - 11905: 0xC8F3,\n\t28071 - 11905: 0xBDA7,\n\t28072 - 11905: 0xD5C7,\n\t28073 - 11905: 0xC9AC,\n\t28074 - 11905: 0xB8A2,\n\t28075 - 11905: 0xE4CA,\n\t28076 - 11905: 0x9BEB,\n\t28077 - 11905: 0x9BEC,\n\t28078 - 11905: 0xE4CC,\n\t28079 - 11905: 0xD1C4,\n\t28080 - 11905: 0x9BED,\n\t28081 - 11905: 0x9BEE,\n\t28082 - 11905: 0xD2BA,\n\t28083 - 11905: 0x9BEF,\n\t28084 - 11905: 0x9BF0,\n\t28085 - 11905: 0xBAAD,\n\t28086 - 11905: 0x9BF1,\n\t28087 - 11905: 0x9BF2,\n\t28088 - 11905: 0xBAD4,\n\t28089 - 11905: 0x9BF3,\n\t28090 - 11905: 0x9BF4,\n\t28091 - 11905: 0x9BF5,\n\t28092 - 11905: 0x9BF6,\n\t28093 - 11905: 0x9BF7,\n\t28094 - 11905: 0x9BF8,\n\t28095 - 11905: 0xE4C3,\n\t28096 - 11905: 0xB5ED,\n\t28097 - 11905: 0x9BF9,\n\t28098 - 11905: 0x9BFA,\n\t28099 - 11905: 0x9BFB,\n\t28100 - 11905: 0xD7CD,\n\t28101 - 11905: 0xE4C0,\n\t28102 - 11905: 0xCFFD,\n\t28103 - 11905: 0xE4BF,\n\t28104 - 11905: 0x9BFC,\n\t28105 - 11905: 0x9BFD,\n\t28106 - 11905: 0x9BFE,\n\t28107 - 11905: 0xC1DC,\n\t28108 - 11905: 0xCCCA,\n\t28109 - 11905: 0x9C40,\n\t28110 - 11905: 0x9C41,\n\t28111 - 11905: 0x9C42,\n\t28112 - 11905: 0x9C43,\n\t28113 - 11905: 0xCAE7,\n\t28114 - 11905: 0x9C44,\n\t28115 - 11905: 0x9C45,\n\t28116 - 11905: 0x9C46,\n\t28117 - 11905: 0x9C47,\n\t28118 - 11905: 0xC4D7,\n\t28119 - 11905: 0x9C48,\n\t28120 - 11905: 0xCCD4,\n\t28121 - 11905: 0xE4C8,\n\t28122 - 11905: 0x9C49,\n\t28123 - 11905: 0x9C4A,\n\t28124 - 11905: 0x9C4B,\n\t28125 - 11905: 0xE4C7,\n\t28126 - 11905: 0xE4C1,\n\t28127 - 11905: 0x9C4C,\n\t28128 - 11905: 0xE4C4,\n\t28129 - 11905: 0xB5AD,\n\t28130 - 11905: 0x9C4D,\n\t28131 - 11905: 0x9C4E,\n\t28132 - 11905: 0xD3D9,\n\t28133 - 11905: 0x9C4F,\n\t28134 - 11905: 0xE4C6,\n\t28135 - 11905: 0x9C50,\n\t28136 - 11905: 0x9C51,\n\t28137 - 11905: 0x9C52,\n\t28138 - 11905: 0x9C53,\n\t28139 - 11905: 0xD2F9,\n\t28140 - 11905: 0xB4E3,\n\t28141 - 11905: 0x9C54,\n\t28142 - 11905: 0xBBB4,\n\t28143 - 11905: 0x9C55,\n\t28144 - 11905: 0x9C56,\n\t28145 - 11905: 0xC9EE,\n\t28146 - 11905: 0x9C57,\n\t28147 - 11905: 0xB4BE,\n\t28148 - 11905: 0x9C58,\n\t28149 - 11905: 0x9C59,\n\t28150 - 11905: 0x9C5A,\n\t28151 - 11905: 0xBBEC,\n\t28152 - 11905: 0x9C5B,\n\t28153 - 11905: 0xD1CD,\n\t28154 - 11905: 0x9C5C,\n\t28155 - 11905: 0xCCED,\n\t28156 - 11905: 0xEDB5,\n\t28157 - 11905: 0x9C5D,\n\t28158 - 11905: 0x9C5E,\n\t28159 - 11905: 0x9C5F,\n\t28160 - 11905: 0x9C60,\n\t28161 - 11905: 0x9C61,\n\t28162 - 11905: 0x9C62,\n\t28163 - 11905: 0x9C63,\n\t28164 - 11905: 0x9C64,\n\t28165 - 11905: 0xC7E5,\n\t28166 - 11905: 0x9C65,\n\t28167 - 11905: 0x9C66,\n\t28168 - 11905: 0x9C67,\n\t28169 - 11905: 0x9C68,\n\t28170 - 11905: 0xD4A8,\n\t28171 - 11905: 0x9C69,\n\t28172 - 11905: 0xE4CB,\n\t28173 - 11905: 0xD7D5,\n\t28174 - 11905: 0xE4C2,\n\t28175 - 11905: 0x9C6A,\n\t28176 - 11905: 0xBDA5,\n\t28177 - 11905: 0xE4C5,\n\t28178 - 11905: 0x9C6B,\n\t28179 - 11905: 0x9C6C,\n\t28180 - 11905: 0xD3E6,\n\t28181 - 11905: 0x9C6D,\n\t28182 - 11905: 0xE4C9,\n\t28183 - 11905: 0xC9F8,\n\t28184 - 11905: 0x9C6E,\n\t28185 - 11905: 0x9C6F,\n\t28186 - 11905: 0xE4BE,\n\t28187 - 11905: 0x9C70,\n\t28188 - 11905: 0x9C71,\n\t28189 - 11905: 0xD3E5,\n\t28190 - 11905: 0x9C72,\n\t28191 - 11905: 0x9C73,\n\t28192 - 11905: 0xC7FE,\n\t28193 - 11905: 0xB6C9,\n\t28194 - 11905: 0x9C74,\n\t28195 - 11905: 0xD4FC,\n\t28196 - 11905: 0xB2B3,\n\t28197 - 11905: 0xE4D7,\n\t28198 - 11905: 0x9C75,\n\t28199 - 11905: 0x9C76,\n\t28200 - 11905: 0x9C77,\n\t28201 - 11905: 0xCEC2,\n\t28202 - 11905: 0x9C78,\n\t28203 - 11905: 0xE4CD,\n\t28204 - 11905: 0x9C79,\n\t28205 - 11905: 0xCEBC,\n\t28206 - 11905: 0x9C7A,\n\t28207 - 11905: 0xB8DB,\n\t28208 - 11905: 0x9C7B,\n\t28209 - 11905: 0x9C7C,\n\t28210 - 11905: 0xE4D6,\n\t28211 - 11905: 0x9C7D,\n\t28212 - 11905: 0xBFCA,\n\t28213 - 11905: 0x9C7E,\n\t28214 - 11905: 0x9C80,\n\t28215 - 11905: 0x9C81,\n\t28216 - 11905: 0xD3CE,\n\t28217 - 11905: 0x9C82,\n\t28218 - 11905: 0xC3EC,\n\t28219 - 11905: 0x9C83,\n\t28220 - 11905: 0x9C84,\n\t28221 - 11905: 0x9C85,\n\t28222 - 11905: 0x9C86,\n\t28223 - 11905: 0x9C87,\n\t28224 - 11905: 0x9C88,\n\t28225 - 11905: 0x9C89,\n\t28226 - 11905: 0x9C8A,\n\t28227 - 11905: 0xC5C8,\n\t28228 - 11905: 0xE4D8,\n\t28229 - 11905: 0x9C8B,\n\t28230 - 11905: 0x9C8C,\n\t28231 - 11905: 0x9C8D,\n\t28232 - 11905: 0x9C8E,\n\t28233 - 11905: 0x9C8F,\n\t28234 - 11905: 0x9C90,\n\t28235 - 11905: 0x9C91,\n\t28236 - 11905: 0x9C92,\n\t28237 - 11905: 0xCDC4,\n\t28238 - 11905: 0xE4CF,\n\t28239 - 11905: 0x9C93,\n\t28240 - 11905: 0x9C94,\n\t28241 - 11905: 0x9C95,\n\t28242 - 11905: 0x9C96,\n\t28243 - 11905: 0xE4D4,\n\t28244 - 11905: 0xE4D5,\n\t28245 - 11905: 0x9C97,\n\t28246 - 11905: 0xBAFE,\n\t28247 - 11905: 0x9C98,\n\t28248 - 11905: 0xCFE6,\n\t28249 - 11905: 0x9C99,\n\t28250 - 11905: 0x9C9A,\n\t28251 - 11905: 0xD5BF,\n\t28252 - 11905: 0x9C9B,\n\t28253 - 11905: 0x9C9C,\n\t28254 - 11905: 0x9C9D,\n\t28255 - 11905: 0xE4D2,\n\t28256 - 11905: 0x9C9E,\n\t28257 - 11905: 0x9C9F,\n\t28258 - 11905: 0x9CA0,\n\t28259 - 11905: 0x9CA1,\n\t28260 - 11905: 0x9CA2,\n\t28261 - 11905: 0x9CA3,\n\t28262 - 11905: 0x9CA4,\n\t28263 - 11905: 0x9CA5,\n\t28264 - 11905: 0x9CA6,\n\t28265 - 11905: 0x9CA7,\n\t28266 - 11905: 0x9CA8,\n\t28267 - 11905: 0xE4D0,\n\t28268 - 11905: 0x9CA9,\n\t28269 - 11905: 0x9CAA,\n\t28270 - 11905: 0xE4CE,\n\t28271 - 11905: 0x9CAB,\n\t28272 - 11905: 0x9CAC,\n\t28273 - 11905: 0x9CAD,\n\t28274 - 11905: 0x9CAE,\n\t28275 - 11905: 0x9CAF,\n\t28276 - 11905: 0x9CB0,\n\t28277 - 11905: 0x9CB1,\n\t28278 - 11905: 0x9CB2,\n\t28279 - 11905: 0x9CB3,\n\t28280 - 11905: 0x9CB4,\n\t28281 - 11905: 0x9CB5,\n\t28282 - 11905: 0x9CB6,\n\t28283 - 11905: 0x9CB7,\n\t28284 - 11905: 0x9CB8,\n\t28285 - 11905: 0x9CB9,\n\t28286 - 11905: 0xCDE5,\n\t28287 - 11905: 0xCAAA,\n\t28288 - 11905: 0x9CBA,\n\t28289 - 11905: 0x9CBB,\n\t28290 - 11905: 0x9CBC,\n\t28291 - 11905: 0xC0A3,\n\t28292 - 11905: 0x9CBD,\n\t28293 - 11905: 0xBDA6,\n\t28294 - 11905: 0xE4D3,\n\t28295 - 11905: 0x9CBE,\n\t28296 - 11905: 0x9CBF,\n\t28297 - 11905: 0xB8C8,\n\t28298 - 11905: 0x9CC0,\n\t28299 - 11905: 0x9CC1,\n\t28300 - 11905: 0x9CC2,\n\t28301 - 11905: 0x9CC3,\n\t28302 - 11905: 0x9CC4,\n\t28303 - 11905: 0xE4E7,\n\t28304 - 11905: 0xD4B4,\n\t28305 - 11905: 0x9CC5,\n\t28306 - 11905: 0x9CC6,\n\t28307 - 11905: 0x9CC7,\n\t28308 - 11905: 0x9CC8,\n\t28309 - 11905: 0x9CC9,\n\t28310 - 11905: 0x9CCA,\n\t28311 - 11905: 0x9CCB,\n\t28312 - 11905: 0xE4DB,\n\t28313 - 11905: 0x9CCC,\n\t28314 - 11905: 0x9CCD,\n\t28315 - 11905: 0x9CCE,\n\t28316 - 11905: 0xC1EF,\n\t28317 - 11905: 0x9CCF,\n\t28318 - 11905: 0x9CD0,\n\t28319 - 11905: 0xE4E9,\n\t28320 - 11905: 0x9CD1,\n\t28321 - 11905: 0x9CD2,\n\t28322 - 11905: 0xD2E7,\n\t28323 - 11905: 0x9CD3,\n\t28324 - 11905: 0x9CD4,\n\t28325 - 11905: 0xE4DF,\n\t28326 - 11905: 0x9CD5,\n\t28327 - 11905: 0xE4E0,\n\t28328 - 11905: 0x9CD6,\n\t28329 - 11905: 0x9CD7,\n\t28330 - 11905: 0xCFAA,\n\t28331 - 11905: 0x9CD8,\n\t28332 - 11905: 0x9CD9,\n\t28333 - 11905: 0x9CDA,\n\t28334 - 11905: 0x9CDB,\n\t28335 - 11905: 0xCBDD,\n\t28336 - 11905: 0x9CDC,\n\t28337 - 11905: 0xE4DA,\n\t28338 - 11905: 0xE4D1,\n\t28339 - 11905: 0x9CDD,\n\t28340 - 11905: 0xE4E5,\n\t28341 - 11905: 0x9CDE,\n\t28342 - 11905: 0xC8DC,\n\t28343 - 11905: 0xE4E3,\n\t28344 - 11905: 0x9CDF,\n\t28345 - 11905: 0x9CE0,\n\t28346 - 11905: 0xC4E7,\n\t28347 - 11905: 0xE4E2,\n\t28348 - 11905: 0x9CE1,\n\t28349 - 11905: 0xE4E1,\n\t28350 - 11905: 0x9CE2,\n\t28351 - 11905: 0x9CE3,\n\t28352 - 11905: 0x9CE4,\n\t28353 - 11905: 0xB3FC,\n\t28354 - 11905: 0xE4E8,\n\t28355 - 11905: 0x9CE5,\n\t28356 - 11905: 0x9CE6,\n\t28357 - 11905: 0x9CE7,\n\t28358 - 11905: 0x9CE8,\n\t28359 - 11905: 0xB5E1,\n\t28360 - 11905: 0x9CE9,\n\t28361 - 11905: 0x9CEA,\n\t28362 - 11905: 0x9CEB,\n\t28363 - 11905: 0xD7CC,\n\t28364 - 11905: 0x9CEC,\n\t28365 - 11905: 0x9CED,\n\t28366 - 11905: 0x9CEE,\n\t28367 - 11905: 0xE4E6,\n\t28368 - 11905: 0x9CEF,\n\t28369 - 11905: 0xBBAC,\n\t28370 - 11905: 0x9CF0,\n\t28371 - 11905: 0xD7D2,\n\t28372 - 11905: 0xCCCF,\n\t28373 - 11905: 0xEBF8,\n\t28374 - 11905: 0x9CF1,\n\t28375 - 11905: 0xE4E4,\n\t28376 - 11905: 0x9CF2,\n\t28377 - 11905: 0x9CF3,\n\t28378 - 11905: 0xB9F6,\n\t28379 - 11905: 0x9CF4,\n\t28380 - 11905: 0x9CF5,\n\t28381 - 11905: 0x9CF6,\n\t28382 - 11905: 0xD6CD,\n\t28383 - 11905: 0xE4D9,\n\t28384 - 11905: 0xE4DC,\n\t28385 - 11905: 0xC2FA,\n\t28386 - 11905: 0xE4DE,\n\t28387 - 11905: 0x9CF7,\n\t28388 - 11905: 0xC2CB,\n\t28389 - 11905: 0xC0C4,\n\t28390 - 11905: 0xC2D0,\n\t28391 - 11905: 0x9CF8,\n\t28392 - 11905: 0xB1F5,\n\t28393 - 11905: 0xCCB2,\n\t28394 - 11905: 0x9CF9,\n\t28395 - 11905: 0x9CFA,\n\t28396 - 11905: 0x9CFB,\n\t28397 - 11905: 0x9CFC,\n\t28398 - 11905: 0x9CFD,\n\t28399 - 11905: 0x9CFE,\n\t28400 - 11905: 0x9D40,\n\t28401 - 11905: 0x9D41,\n\t28402 - 11905: 0x9D42,\n\t28403 - 11905: 0x9D43,\n\t28404 - 11905: 0xB5CE,\n\t28405 - 11905: 0x9D44,\n\t28406 - 11905: 0x9D45,\n\t28407 - 11905: 0x9D46,\n\t28408 - 11905: 0x9D47,\n\t28409 - 11905: 0xE4EF,\n\t28410 - 11905: 0x9D48,\n\t28411 - 11905: 0x9D49,\n\t28412 - 11905: 0x9D4A,\n\t28413 - 11905: 0x9D4B,\n\t28414 - 11905: 0x9D4C,\n\t28415 - 11905: 0x9D4D,\n\t28416 - 11905: 0x9D4E,\n\t28417 - 11905: 0x9D4F,\n\t28418 - 11905: 0xC6AF,\n\t28419 - 11905: 0x9D50,\n\t28420 - 11905: 0x9D51,\n\t28421 - 11905: 0x9D52,\n\t28422 - 11905: 0xC6E1,\n\t28423 - 11905: 0x9D53,\n\t28424 - 11905: 0x9D54,\n\t28425 - 11905: 0xE4F5,\n\t28426 - 11905: 0x9D55,\n\t28427 - 11905: 0x9D56,\n\t28428 - 11905: 0x9D57,\n\t28429 - 11905: 0x9D58,\n\t28430 - 11905: 0x9D59,\n\t28431 - 11905: 0xC2A9,\n\t28432 - 11905: 0x9D5A,\n\t28433 - 11905: 0x9D5B,\n\t28434 - 11905: 0x9D5C,\n\t28435 - 11905: 0xC0EC,\n\t28436 - 11905: 0xD1DD,\n\t28437 - 11905: 0xE4EE,\n\t28438 - 11905: 0x9D5D,\n\t28439 - 11905: 0x9D5E,\n\t28440 - 11905: 0x9D5F,\n\t28441 - 11905: 0x9D60,\n\t28442 - 11905: 0x9D61,\n\t28443 - 11905: 0x9D62,\n\t28444 - 11905: 0x9D63,\n\t28445 - 11905: 0x9D64,\n\t28446 - 11905: 0x9D65,\n\t28447 - 11905: 0x9D66,\n\t28448 - 11905: 0xC4AE,\n\t28449 - 11905: 0x9D67,\n\t28450 - 11905: 0x9D68,\n\t28451 - 11905: 0x9D69,\n\t28452 - 11905: 0xE4ED,\n\t28453 - 11905: 0x9D6A,\n\t28454 - 11905: 0x9D6B,\n\t28455 - 11905: 0x9D6C,\n\t28456 - 11905: 0x9D6D,\n\t28457 - 11905: 0xE4F6,\n\t28458 - 11905: 0xE4F4,\n\t28459 - 11905: 0xC2FE,\n\t28460 - 11905: 0x9D6E,\n\t28461 - 11905: 0xE4DD,\n\t28462 - 11905: 0x9D6F,\n\t28463 - 11905: 0xE4F0,\n\t28464 - 11905: 0x9D70,\n\t28465 - 11905: 0xCAFE,\n\t28466 - 11905: 0x9D71,\n\t28467 - 11905: 0xD5C4,\n\t28468 - 11905: 0x9D72,\n\t28469 - 11905: 0x9D73,\n\t28470 - 11905: 0xE4F1,\n\t28471 - 11905: 0x9D74,\n\t28472 - 11905: 0x9D75,\n\t28473 - 11905: 0x9D76,\n\t28474 - 11905: 0x9D77,\n\t28475 - 11905: 0x9D78,\n\t28476 - 11905: 0x9D79,\n\t28477 - 11905: 0x9D7A,\n\t28478 - 11905: 0xD1FA,\n\t28479 - 11905: 0x9D7B,\n\t28480 - 11905: 0x9D7C,\n\t28481 - 11905: 0x9D7D,\n\t28482 - 11905: 0x9D7E,\n\t28483 - 11905: 0x9D80,\n\t28484 - 11905: 0x9D81,\n\t28485 - 11905: 0x9D82,\n\t28486 - 11905: 0xE4EB,\n\t28487 - 11905: 0xE4EC,\n\t28488 - 11905: 0x9D83,\n\t28489 - 11905: 0x9D84,\n\t28490 - 11905: 0x9D85,\n\t28491 - 11905: 0xE4F2,\n\t28492 - 11905: 0x9D86,\n\t28493 - 11905: 0xCEAB,\n\t28494 - 11905: 0x9D87,\n\t28495 - 11905: 0x9D88,\n\t28496 - 11905: 0x9D89,\n\t28497 - 11905: 0x9D8A,\n\t28498 - 11905: 0x9D8B,\n\t28499 - 11905: 0x9D8C,\n\t28500 - 11905: 0x9D8D,\n\t28501 - 11905: 0x9D8E,\n\t28502 - 11905: 0x9D8F,\n\t28503 - 11905: 0x9D90,\n\t28504 - 11905: 0xC5CB,\n\t28505 - 11905: 0x9D91,\n\t28506 - 11905: 0x9D92,\n\t28507 - 11905: 0x9D93,\n\t28508 - 11905: 0xC7B1,\n\t28509 - 11905: 0x9D94,\n\t28510 - 11905: 0xC2BA,\n\t28511 - 11905: 0x9D95,\n\t28512 - 11905: 0x9D96,\n\t28513 - 11905: 0x9D97,\n\t28514 - 11905: 0xE4EA,\n\t28515 - 11905: 0x9D98,\n\t28516 - 11905: 0x9D99,\n\t28517 - 11905: 0x9D9A,\n\t28518 - 11905: 0xC1CA,\n\t28519 - 11905: 0x9D9B,\n\t28520 - 11905: 0x9D9C,\n\t28521 - 11905: 0x9D9D,\n\t28522 - 11905: 0x9D9E,\n\t28523 - 11905: 0x9D9F,\n\t28524 - 11905: 0x9DA0,\n\t28525 - 11905: 0xCCB6,\n\t28526 - 11905: 0xB3B1,\n\t28527 - 11905: 0x9DA1,\n\t28528 - 11905: 0x9DA2,\n\t28529 - 11905: 0x9DA3,\n\t28530 - 11905: 0xE4FB,\n\t28531 - 11905: 0x9DA4,\n\t28532 - 11905: 0xE4F3,\n\t28533 - 11905: 0x9DA5,\n\t28534 - 11905: 0x9DA6,\n\t28535 - 11905: 0x9DA7,\n\t28536 - 11905: 0xE4FA,\n\t28537 - 11905: 0x9DA8,\n\t28538 - 11905: 0xE4FD,\n\t28539 - 11905: 0x9DA9,\n\t28540 - 11905: 0xE4FC,\n\t28541 - 11905: 0x9DAA,\n\t28542 - 11905: 0x9DAB,\n\t28543 - 11905: 0x9DAC,\n\t28544 - 11905: 0x9DAD,\n\t28545 - 11905: 0x9DAE,\n\t28546 - 11905: 0x9DAF,\n\t28547 - 11905: 0x9DB0,\n\t28548 - 11905: 0xB3CE,\n\t28549 - 11905: 0x9DB1,\n\t28550 - 11905: 0x9DB2,\n\t28551 - 11905: 0x9DB3,\n\t28552 - 11905: 0xB3BA,\n\t28553 - 11905: 0xE4F7,\n\t28554 - 11905: 0x9DB4,\n\t28555 - 11905: 0x9DB5,\n\t28556 - 11905: 0xE4F9,\n\t28557 - 11905: 0xE4F8,\n\t28558 - 11905: 0xC5EC,\n\t28559 - 11905: 0x9DB6,\n\t28560 - 11905: 0x9DB7,\n\t28561 - 11905: 0x9DB8,\n\t28562 - 11905: 0x9DB9,\n\t28563 - 11905: 0x9DBA,\n\t28564 - 11905: 0x9DBB,\n\t28565 - 11905: 0x9DBC,\n\t28566 - 11905: 0x9DBD,\n\t28567 - 11905: 0x9DBE,\n\t28568 - 11905: 0x9DBF,\n\t28569 - 11905: 0x9DC0,\n\t28570 - 11905: 0x9DC1,\n\t28571 - 11905: 0x9DC2,\n\t28572 - 11905: 0xC0BD,\n\t28573 - 11905: 0x9DC3,\n\t28574 - 11905: 0x9DC4,\n\t28575 - 11905: 0x9DC5,\n\t28576 - 11905: 0x9DC6,\n\t28577 - 11905: 0xD4E8,\n\t28578 - 11905: 0x9DC7,\n\t28579 - 11905: 0x9DC8,\n\t28580 - 11905: 0x9DC9,\n\t28581 - 11905: 0x9DCA,\n\t28582 - 11905: 0x9DCB,\n\t28583 - 11905: 0xE5A2,\n\t28584 - 11905: 0x9DCC,\n\t28585 - 11905: 0x9DCD,\n\t28586 - 11905: 0x9DCE,\n\t28587 - 11905: 0x9DCF,\n\t28588 - 11905: 0x9DD0,\n\t28589 - 11905: 0x9DD1,\n\t28590 - 11905: 0x9DD2,\n\t28591 - 11905: 0x9DD3,\n\t28592 - 11905: 0x9DD4,\n\t28593 - 11905: 0x9DD5,\n\t28594 - 11905: 0x9DD6,\n\t28595 - 11905: 0xB0C4,\n\t28596 - 11905: 0x9DD7,\n\t28597 - 11905: 0x9DD8,\n\t28598 - 11905: 0xE5A4,\n\t28599 - 11905: 0x9DD9,\n\t28600 - 11905: 0x9DDA,\n\t28601 - 11905: 0xE5A3,\n\t28602 - 11905: 0x9DDB,\n\t28603 - 11905: 0x9DDC,\n\t28604 - 11905: 0x9DDD,\n\t28605 - 11905: 0x9DDE,\n\t28606 - 11905: 0x9DDF,\n\t28607 - 11905: 0x9DE0,\n\t28608 - 11905: 0xBCA4,\n\t28609 - 11905: 0x9DE1,\n\t28610 - 11905: 0xE5A5,\n\t28611 - 11905: 0x9DE2,\n\t28612 - 11905: 0x9DE3,\n\t28613 - 11905: 0x9DE4,\n\t28614 - 11905: 0x9DE5,\n\t28615 - 11905: 0x9DE6,\n\t28616 - 11905: 0x9DE7,\n\t28617 - 11905: 0xE5A1,\n\t28618 - 11905: 0x9DE8,\n\t28619 - 11905: 0x9DE9,\n\t28620 - 11905: 0x9DEA,\n\t28621 - 11905: 0x9DEB,\n\t28622 - 11905: 0x9DEC,\n\t28623 - 11905: 0x9DED,\n\t28624 - 11905: 0x9DEE,\n\t28625 - 11905: 0xE4FE,\n\t28626 - 11905: 0xB1F4,\n\t28627 - 11905: 0x9DEF,\n\t28628 - 11905: 0x9DF0,\n\t28629 - 11905: 0x9DF1,\n\t28630 - 11905: 0x9DF2,\n\t28631 - 11905: 0x9DF3,\n\t28632 - 11905: 0x9DF4,\n\t28633 - 11905: 0x9DF5,\n\t28634 - 11905: 0x9DF6,\n\t28635 - 11905: 0x9DF7,\n\t28636 - 11905: 0x9DF8,\n\t28637 - 11905: 0x9DF9,\n\t28638 - 11905: 0xE5A8,\n\t28639 - 11905: 0x9DFA,\n\t28640 - 11905: 0xE5A9,\n\t28641 - 11905: 0xE5A6,\n\t28642 - 11905: 0x9DFB,\n\t28643 - 11905: 0x9DFC,\n\t28644 - 11905: 0x9DFD,\n\t28645 - 11905: 0x9DFE,\n\t28646 - 11905: 0x9E40,\n\t28647 - 11905: 0x9E41,\n\t28648 - 11905: 0x9E42,\n\t28649 - 11905: 0x9E43,\n\t28650 - 11905: 0x9E44,\n\t28651 - 11905: 0x9E45,\n\t28652 - 11905: 0x9E46,\n\t28653 - 11905: 0x9E47,\n\t28654 - 11905: 0xE5A7,\n\t28655 - 11905: 0xE5AA,\n\t28656 - 11905: 0x9E48,\n\t28657 - 11905: 0x9E49,\n\t28658 - 11905: 0x9E4A,\n\t28659 - 11905: 0x9E4B,\n\t28660 - 11905: 0x9E4C,\n\t28661 - 11905: 0x9E4D,\n\t28662 - 11905: 0x9E4E,\n\t28663 - 11905: 0x9E4F,\n\t28664 - 11905: 0x9E50,\n\t28665 - 11905: 0x9E51,\n\t28666 - 11905: 0x9E52,\n\t28667 - 11905: 0x9E53,\n\t28668 - 11905: 0x9E54,\n\t28669 - 11905: 0x9E55,\n\t28670 - 11905: 0x9E56,\n\t28671 - 11905: 0x9E57,\n\t28672 - 11905: 0x9E58,\n\t28673 - 11905: 0x9E59,\n\t28674 - 11905: 0x9E5A,\n\t28675 - 11905: 0x9E5B,\n\t28676 - 11905: 0x9E5C,\n\t28677 - 11905: 0x9E5D,\n\t28678 - 11905: 0x9E5E,\n\t28679 - 11905: 0x9E5F,\n\t28680 - 11905: 0x9E60,\n\t28681 - 11905: 0x9E61,\n\t28682 - 11905: 0x9E62,\n\t28683 - 11905: 0x9E63,\n\t28684 - 11905: 0x9E64,\n\t28685 - 11905: 0x9E65,\n\t28686 - 11905: 0x9E66,\n\t28687 - 11905: 0x9E67,\n\t28688 - 11905: 0x9E68,\n\t28689 - 11905: 0xC6D9,\n\t28690 - 11905: 0x9E69,\n\t28691 - 11905: 0x9E6A,\n\t28692 - 11905: 0x9E6B,\n\t28693 - 11905: 0x9E6C,\n\t28694 - 11905: 0x9E6D,\n\t28695 - 11905: 0x9E6E,\n\t28696 - 11905: 0x9E6F,\n\t28697 - 11905: 0x9E70,\n\t28698 - 11905: 0xE5AB,\n\t28699 - 11905: 0xE5AD,\n\t28700 - 11905: 0x9E71,\n\t28701 - 11905: 0x9E72,\n\t28702 - 11905: 0x9E73,\n\t28703 - 11905: 0x9E74,\n\t28704 - 11905: 0x9E75,\n\t28705 - 11905: 0x9E76,\n\t28706 - 11905: 0x9E77,\n\t28707 - 11905: 0xE5AC,\n\t28708 - 11905: 0x9E78,\n\t28709 - 11905: 0x9E79,\n\t28710 - 11905: 0x9E7A,\n\t28711 - 11905: 0x9E7B,\n\t28712 - 11905: 0x9E7C,\n\t28713 - 11905: 0x9E7D,\n\t28714 - 11905: 0x9E7E,\n\t28715 - 11905: 0x9E80,\n\t28716 - 11905: 0x9E81,\n\t28717 - 11905: 0x9E82,\n\t28718 - 11905: 0x9E83,\n\t28719 - 11905: 0x9E84,\n\t28720 - 11905: 0x9E85,\n\t28721 - 11905: 0x9E86,\n\t28722 - 11905: 0x9E87,\n\t28723 - 11905: 0x9E88,\n\t28724 - 11905: 0x9E89,\n\t28725 - 11905: 0xE5AF,\n\t28726 - 11905: 0x9E8A,\n\t28727 - 11905: 0x9E8B,\n\t28728 - 11905: 0x9E8C,\n\t28729 - 11905: 0xE5AE,\n\t28730 - 11905: 0x9E8D,\n\t28731 - 11905: 0x9E8E,\n\t28732 - 11905: 0x9E8F,\n\t28733 - 11905: 0x9E90,\n\t28734 - 11905: 0x9E91,\n\t28735 - 11905: 0x9E92,\n\t28736 - 11905: 0x9E93,\n\t28737 - 11905: 0x9E94,\n\t28738 - 11905: 0x9E95,\n\t28739 - 11905: 0x9E96,\n\t28740 - 11905: 0x9E97,\n\t28741 - 11905: 0x9E98,\n\t28742 - 11905: 0x9E99,\n\t28743 - 11905: 0x9E9A,\n\t28744 - 11905: 0x9E9B,\n\t28745 - 11905: 0x9E9C,\n\t28746 - 11905: 0x9E9D,\n\t28747 - 11905: 0x9E9E,\n\t28748 - 11905: 0xB9E0,\n\t28749 - 11905: 0x9E9F,\n\t28750 - 11905: 0x9EA0,\n\t28751 - 11905: 0xE5B0,\n\t28752 - 11905: 0x9EA1,\n\t28753 - 11905: 0x9EA2,\n\t28754 - 11905: 0x9EA3,\n\t28755 - 11905: 0x9EA4,\n\t28756 - 11905: 0x9EA5,\n\t28757 - 11905: 0x9EA6,\n\t28758 - 11905: 0x9EA7,\n\t28759 - 11905: 0x9EA8,\n\t28760 - 11905: 0x9EA9,\n\t28761 - 11905: 0x9EAA,\n\t28762 - 11905: 0x9EAB,\n\t28763 - 11905: 0x9EAC,\n\t28764 - 11905: 0x9EAD,\n\t28765 - 11905: 0x9EAE,\n\t28766 - 11905: 0xE5B1,\n\t28767 - 11905: 0x9EAF,\n\t28768 - 11905: 0x9EB0,\n\t28769 - 11905: 0x9EB1,\n\t28770 - 11905: 0x9EB2,\n\t28771 - 11905: 0x9EB3,\n\t28772 - 11905: 0x9EB4,\n\t28773 - 11905: 0x9EB5,\n\t28774 - 11905: 0x9EB6,\n\t28775 - 11905: 0x9EB7,\n\t28776 - 11905: 0x9EB8,\n\t28777 - 11905: 0x9EB9,\n\t28778 - 11905: 0x9EBA,\n\t28779 - 11905: 0xBBF0,\n\t28780 - 11905: 0xECE1,\n\t28781 - 11905: 0xC3F0,\n\t28782 - 11905: 0x9EBB,\n\t28783 - 11905: 0xB5C6,\n\t28784 - 11905: 0xBBD2,\n\t28785 - 11905: 0x9EBC,\n\t28786 - 11905: 0x9EBD,\n\t28787 - 11905: 0x9EBE,\n\t28788 - 11905: 0x9EBF,\n\t28789 - 11905: 0xC1E9,\n\t28790 - 11905: 0xD4EE,\n\t28791 - 11905: 0x9EC0,\n\t28792 - 11905: 0xBEC4,\n\t28793 - 11905: 0x9EC1,\n\t28794 - 11905: 0x9EC2,\n\t28795 - 11905: 0x9EC3,\n\t28796 - 11905: 0xD7C6,\n\t28797 - 11905: 0x9EC4,\n\t28798 - 11905: 0xD4D6,\n\t28799 - 11905: 0xB2D3,\n\t28800 - 11905: 0xECBE,\n\t28801 - 11905: 0x9EC5,\n\t28802 - 11905: 0x9EC6,\n\t28803 - 11905: 0x9EC7,\n\t28804 - 11905: 0x9EC8,\n\t28805 - 11905: 0xEAC1,\n\t28806 - 11905: 0x9EC9,\n\t28807 - 11905: 0x9ECA,\n\t28808 - 11905: 0x9ECB,\n\t28809 - 11905: 0xC2AF,\n\t28810 - 11905: 0xB4B6,\n\t28811 - 11905: 0x9ECC,\n\t28812 - 11905: 0x9ECD,\n\t28813 - 11905: 0x9ECE,\n\t28814 - 11905: 0xD1D7,\n\t28815 - 11905: 0x9ECF,\n\t28816 - 11905: 0x9ED0,\n\t28817 - 11905: 0x9ED1,\n\t28818 - 11905: 0xB3B4,\n\t28819 - 11905: 0x9ED2,\n\t28820 - 11905: 0xC8B2,\n\t28821 - 11905: 0xBFBB,\n\t28822 - 11905: 0xECC0,\n\t28823 - 11905: 0x9ED3,\n\t28824 - 11905: 0x9ED4,\n\t28825 - 11905: 0xD6CB,\n\t28826 - 11905: 0x9ED5,\n\t28827 - 11905: 0x9ED6,\n\t28828 - 11905: 0xECBF,\n\t28829 - 11905: 0xECC1,\n\t28830 - 11905: 0x9ED7,\n\t28831 - 11905: 0x9ED8,\n\t28832 - 11905: 0x9ED9,\n\t28833 - 11905: 0x9EDA,\n\t28834 - 11905: 0x9EDB,\n\t28835 - 11905: 0x9EDC,\n\t28836 - 11905: 0x9EDD,\n\t28837 - 11905: 0x9EDE,\n\t28838 - 11905: 0x9EDF,\n\t28839 - 11905: 0x9EE0,\n\t28840 - 11905: 0x9EE1,\n\t28841 - 11905: 0x9EE2,\n\t28842 - 11905: 0x9EE3,\n\t28843 - 11905: 0xECC5,\n\t28844 - 11905: 0xBEE6,\n\t28845 - 11905: 0xCCBF,\n\t28846 - 11905: 0xC5DA,\n\t28847 - 11905: 0xBEBC,\n\t28848 - 11905: 0x9EE4,\n\t28849 - 11905: 0xECC6,\n\t28850 - 11905: 0x9EE5,\n\t28851 - 11905: 0xB1FE,\n\t28852 - 11905: 0x9EE6,\n\t28853 - 11905: 0x9EE7,\n\t28854 - 11905: 0x9EE8,\n\t28855 - 11905: 0xECC4,\n\t28856 - 11905: 0xD5A8,\n\t28857 - 11905: 0xB5E3,\n\t28858 - 11905: 0x9EE9,\n\t28859 - 11905: 0xECC2,\n\t28860 - 11905: 0xC1B6,\n\t28861 - 11905: 0xB3E3,\n\t28862 - 11905: 0x9EEA,\n\t28863 - 11905: 0x9EEB,\n\t28864 - 11905: 0xECC3,\n\t28865 - 11905: 0xCBB8,\n\t28866 - 11905: 0xC0C3,\n\t28867 - 11905: 0xCCFE,\n\t28868 - 11905: 0x9EEC,\n\t28869 - 11905: 0x9EED,\n\t28870 - 11905: 0x9EEE,\n\t28871 - 11905: 0x9EEF,\n\t28872 - 11905: 0xC1D2,\n\t28873 - 11905: 0x9EF0,\n\t28874 - 11905: 0xECC8,\n\t28875 - 11905: 0x9EF1,\n\t28876 - 11905: 0x9EF2,\n\t28877 - 11905: 0x9EF3,\n\t28878 - 11905: 0x9EF4,\n\t28879 - 11905: 0x9EF5,\n\t28880 - 11905: 0x9EF6,\n\t28881 - 11905: 0x9EF7,\n\t28882 - 11905: 0x9EF8,\n\t28883 - 11905: 0x9EF9,\n\t28884 - 11905: 0x9EFA,\n\t28885 - 11905: 0x9EFB,\n\t28886 - 11905: 0x9EFC,\n\t28887 - 11905: 0x9EFD,\n\t28888 - 11905: 0xBAE6,\n\t28889 - 11905: 0xC0D3,\n\t28890 - 11905: 0x9EFE,\n\t28891 - 11905: 0xD6F2,\n\t28892 - 11905: 0x9F40,\n\t28893 - 11905: 0x9F41,\n\t28894 - 11905: 0x9F42,\n\t28895 - 11905: 0xD1CC,\n\t28896 - 11905: 0x9F43,\n\t28897 - 11905: 0x9F44,\n\t28898 - 11905: 0x9F45,\n\t28899 - 11905: 0x9F46,\n\t28900 - 11905: 0xBFBE,\n\t28901 - 11905: 0x9F47,\n\t28902 - 11905: 0xB7B3,\n\t28903 - 11905: 0xC9D5,\n\t28904 - 11905: 0xECC7,\n\t28905 - 11905: 0xBBE2,\n\t28906 - 11905: 0x9F48,\n\t28907 - 11905: 0xCCCC,\n\t28908 - 11905: 0xBDFD,\n\t28909 - 11905: 0xC8C8,\n\t28910 - 11905: 0x9F49,\n\t28911 - 11905: 0xCFA9,\n\t28912 - 11905: 0x9F4A,\n\t28913 - 11905: 0x9F4B,\n\t28914 - 11905: 0x9F4C,\n\t28915 - 11905: 0x9F4D,\n\t28916 - 11905: 0x9F4E,\n\t28917 - 11905: 0x9F4F,\n\t28918 - 11905: 0x9F50,\n\t28919 - 11905: 0xCDE9,\n\t28920 - 11905: 0x9F51,\n\t28921 - 11905: 0xC5EB,\n\t28922 - 11905: 0x9F52,\n\t28923 - 11905: 0x9F53,\n\t28924 - 11905: 0x9F54,\n\t28925 - 11905: 0xB7E9,\n\t28926 - 11905: 0x9F55,\n\t28927 - 11905: 0x9F56,\n\t28928 - 11905: 0x9F57,\n\t28929 - 11905: 0x9F58,\n\t28930 - 11905: 0x9F59,\n\t28931 - 11905: 0x9F5A,\n\t28932 - 11905: 0x9F5B,\n\t28933 - 11905: 0x9F5C,\n\t28934 - 11905: 0x9F5D,\n\t28935 - 11905: 0x9F5E,\n\t28936 - 11905: 0x9F5F,\n\t28937 - 11905: 0xD1C9,\n\t28938 - 11905: 0xBAB8,\n\t28939 - 11905: 0x9F60,\n\t28940 - 11905: 0x9F61,\n\t28941 - 11905: 0x9F62,\n\t28942 - 11905: 0x9F63,\n\t28943 - 11905: 0x9F64,\n\t28944 - 11905: 0xECC9,\n\t28945 - 11905: 0x9F65,\n\t28946 - 11905: 0x9F66,\n\t28947 - 11905: 0xECCA,\n\t28948 - 11905: 0x9F67,\n\t28949 - 11905: 0xBBC0,\n\t28950 - 11905: 0xECCB,\n\t28951 - 11905: 0x9F68,\n\t28952 - 11905: 0xECE2,\n\t28953 - 11905: 0xB1BA,\n\t28954 - 11905: 0xB7D9,\n\t28955 - 11905: 0x9F69,\n\t28956 - 11905: 0x9F6A,\n\t28957 - 11905: 0x9F6B,\n\t28958 - 11905: 0x9F6C,\n\t28959 - 11905: 0x9F6D,\n\t28960 - 11905: 0x9F6E,\n\t28961 - 11905: 0x9F6F,\n\t28962 - 11905: 0x9F70,\n\t28963 - 11905: 0x9F71,\n\t28964 - 11905: 0x9F72,\n\t28965 - 11905: 0x9F73,\n\t28966 - 11905: 0xBDB9,\n\t28967 - 11905: 0x9F74,\n\t28968 - 11905: 0x9F75,\n\t28969 - 11905: 0x9F76,\n\t28970 - 11905: 0x9F77,\n\t28971 - 11905: 0x9F78,\n\t28972 - 11905: 0x9F79,\n\t28973 - 11905: 0x9F7A,\n\t28974 - 11905: 0x9F7B,\n\t28975 - 11905: 0xECCC,\n\t28976 - 11905: 0xD1E6,\n\t28977 - 11905: 0xECCD,\n\t28978 - 11905: 0x9F7C,\n\t28979 - 11905: 0x9F7D,\n\t28980 - 11905: 0x9F7E,\n\t28981 - 11905: 0x9F80,\n\t28982 - 11905: 0xC8BB,\n\t28983 - 11905: 0x9F81,\n\t28984 - 11905: 0x9F82,\n\t28985 - 11905: 0x9F83,\n\t28986 - 11905: 0x9F84,\n\t28987 - 11905: 0x9F85,\n\t28988 - 11905: 0x9F86,\n\t28989 - 11905: 0x9F87,\n\t28990 - 11905: 0x9F88,\n\t28991 - 11905: 0x9F89,\n\t28992 - 11905: 0x9F8A,\n\t28993 - 11905: 0x9F8B,\n\t28994 - 11905: 0x9F8C,\n\t28995 - 11905: 0x9F8D,\n\t28996 - 11905: 0x9F8E,\n\t28997 - 11905: 0xECD1,\n\t28998 - 11905: 0x9F8F,\n\t28999 - 11905: 0x9F90,\n\t29000 - 11905: 0x9F91,\n\t29001 - 11905: 0x9F92,\n\t29002 - 11905: 0xECD3,\n\t29003 - 11905: 0x9F93,\n\t29004 - 11905: 0xBBCD,\n\t29005 - 11905: 0x9F94,\n\t29006 - 11905: 0xBCE5,\n\t29007 - 11905: 0x9F95,\n\t29008 - 11905: 0x9F96,\n\t29009 - 11905: 0x9F97,\n\t29010 - 11905: 0x9F98,\n\t29011 - 11905: 0x9F99,\n\t29012 - 11905: 0x9F9A,\n\t29013 - 11905: 0x9F9B,\n\t29014 - 11905: 0x9F9C,\n\t29015 - 11905: 0x9F9D,\n\t29016 - 11905: 0x9F9E,\n\t29017 - 11905: 0x9F9F,\n\t29018 - 11905: 0x9FA0,\n\t29019 - 11905: 0x9FA1,\n\t29020 - 11905: 0xECCF,\n\t29021 - 11905: 0x9FA2,\n\t29022 - 11905: 0xC9B7,\n\t29023 - 11905: 0x9FA3,\n\t29024 - 11905: 0x9FA4,\n\t29025 - 11905: 0x9FA5,\n\t29026 - 11905: 0x9FA6,\n\t29027 - 11905: 0x9FA7,\n\t29028 - 11905: 0xC3BA,\n\t29029 - 11905: 0x9FA8,\n\t29030 - 11905: 0xECE3,\n\t29031 - 11905: 0xD5D5,\n\t29032 - 11905: 0xECD0,\n\t29033 - 11905: 0x9FA9,\n\t29034 - 11905: 0x9FAA,\n\t29035 - 11905: 0x9FAB,\n\t29036 - 11905: 0x9FAC,\n\t29037 - 11905: 0x9FAD,\n\t29038 - 11905: 0xD6F3,\n\t29039 - 11905: 0x9FAE,\n\t29040 - 11905: 0x9FAF,\n\t29041 - 11905: 0x9FB0,\n\t29042 - 11905: 0xECD2,\n\t29043 - 11905: 0xECCE,\n\t29044 - 11905: 0x9FB1,\n\t29045 - 11905: 0x9FB2,\n\t29046 - 11905: 0x9FB3,\n\t29047 - 11905: 0x9FB4,\n\t29048 - 11905: 0xECD4,\n\t29049 - 11905: 0x9FB5,\n\t29050 - 11905: 0xECD5,\n\t29051 - 11905: 0x9FB6,\n\t29052 - 11905: 0x9FB7,\n\t29053 - 11905: 0xC9BF,\n\t29054 - 11905: 0x9FB8,\n\t29055 - 11905: 0x9FB9,\n\t29056 - 11905: 0x9FBA,\n\t29057 - 11905: 0x9FBB,\n\t29058 - 11905: 0x9FBC,\n\t29059 - 11905: 0x9FBD,\n\t29060 - 11905: 0xCFA8,\n\t29061 - 11905: 0x9FBE,\n\t29062 - 11905: 0x9FBF,\n\t29063 - 11905: 0x9FC0,\n\t29064 - 11905: 0x9FC1,\n\t29065 - 11905: 0x9FC2,\n\t29066 - 11905: 0xD0DC,\n\t29067 - 11905: 0x9FC3,\n\t29068 - 11905: 0x9FC4,\n\t29069 - 11905: 0x9FC5,\n\t29070 - 11905: 0x9FC6,\n\t29071 - 11905: 0xD1AC,\n\t29072 - 11905: 0x9FC7,\n\t29073 - 11905: 0x9FC8,\n\t29074 - 11905: 0x9FC9,\n\t29075 - 11905: 0x9FCA,\n\t29076 - 11905: 0xC8DB,\n\t29077 - 11905: 0x9FCB,\n\t29078 - 11905: 0x9FCC,\n\t29079 - 11905: 0x9FCD,\n\t29080 - 11905: 0xECD6,\n\t29081 - 11905: 0xCEF5,\n\t29082 - 11905: 0x9FCE,\n\t29083 - 11905: 0x9FCF,\n\t29084 - 11905: 0x9FD0,\n\t29085 - 11905: 0x9FD1,\n\t29086 - 11905: 0x9FD2,\n\t29087 - 11905: 0xCAEC,\n\t29088 - 11905: 0xECDA,\n\t29089 - 11905: 0x9FD3,\n\t29090 - 11905: 0x9FD4,\n\t29091 - 11905: 0x9FD5,\n\t29092 - 11905: 0x9FD6,\n\t29093 - 11905: 0x9FD7,\n\t29094 - 11905: 0x9FD8,\n\t29095 - 11905: 0x9FD9,\n\t29096 - 11905: 0xECD9,\n\t29097 - 11905: 0x9FDA,\n\t29098 - 11905: 0x9FDB,\n\t29099 - 11905: 0x9FDC,\n\t29100 - 11905: 0xB0BE,\n\t29101 - 11905: 0x9FDD,\n\t29102 - 11905: 0x9FDE,\n\t29103 - 11905: 0x9FDF,\n\t29104 - 11905: 0x9FE0,\n\t29105 - 11905: 0x9FE1,\n\t29106 - 11905: 0x9FE2,\n\t29107 - 11905: 0xECD7,\n\t29108 - 11905: 0x9FE3,\n\t29109 - 11905: 0xECD8,\n\t29110 - 11905: 0x9FE4,\n\t29111 - 11905: 0x9FE5,\n\t29112 - 11905: 0x9FE6,\n\t29113 - 11905: 0xECE4,\n\t29114 - 11905: 0x9FE7,\n\t29115 - 11905: 0x9FE8,\n\t29116 - 11905: 0x9FE9,\n\t29117 - 11905: 0x9FEA,\n\t29118 - 11905: 0x9FEB,\n\t29119 - 11905: 0x9FEC,\n\t29120 - 11905: 0x9FED,\n\t29121 - 11905: 0x9FEE,\n\t29122 - 11905: 0x9FEF,\n\t29123 - 11905: 0xC8BC,\n\t29124 - 11905: 0x9FF0,\n\t29125 - 11905: 0x9FF1,\n\t29126 - 11905: 0x9FF2,\n\t29127 - 11905: 0x9FF3,\n\t29128 - 11905: 0x9FF4,\n\t29129 - 11905: 0x9FF5,\n\t29130 - 11905: 0x9FF6,\n\t29131 - 11905: 0x9FF7,\n\t29132 - 11905: 0x9FF8,\n\t29133 - 11905: 0x9FF9,\n\t29134 - 11905: 0xC1C7,\n\t29135 - 11905: 0x9FFA,\n\t29136 - 11905: 0x9FFB,\n\t29137 - 11905: 0x9FFC,\n\t29138 - 11905: 0x9FFD,\n\t29139 - 11905: 0x9FFE,\n\t29140 - 11905: 0xECDC,\n\t29141 - 11905: 0xD1E0,\n\t29142 - 11905: 0xA040,\n\t29143 - 11905: 0xA041,\n\t29144 - 11905: 0xA042,\n\t29145 - 11905: 0xA043,\n\t29146 - 11905: 0xA044,\n\t29147 - 11905: 0xA045,\n\t29148 - 11905: 0xA046,\n\t29149 - 11905: 0xA047,\n\t29150 - 11905: 0xA048,\n\t29151 - 11905: 0xA049,\n\t29152 - 11905: 0xECDB,\n\t29153 - 11905: 0xA04A,\n\t29154 - 11905: 0xA04B,\n\t29155 - 11905: 0xA04C,\n\t29156 - 11905: 0xA04D,\n\t29157 - 11905: 0xD4EF,\n\t29158 - 11905: 0xA04E,\n\t29159 - 11905: 0xECDD,\n\t29160 - 11905: 0xA04F,\n\t29161 - 11905: 0xA050,\n\t29162 - 11905: 0xA051,\n\t29163 - 11905: 0xA052,\n\t29164 - 11905: 0xA053,\n\t29165 - 11905: 0xA054,\n\t29166 - 11905: 0xDBC6,\n\t29167 - 11905: 0xA055,\n\t29168 - 11905: 0xA056,\n\t29169 - 11905: 0xA057,\n\t29170 - 11905: 0xA058,\n\t29171 - 11905: 0xA059,\n\t29172 - 11905: 0xA05A,\n\t29173 - 11905: 0xA05B,\n\t29174 - 11905: 0xA05C,\n\t29175 - 11905: 0xA05D,\n\t29176 - 11905: 0xA05E,\n\t29177 - 11905: 0xECDE,\n\t29178 - 11905: 0xA05F,\n\t29179 - 11905: 0xA060,\n\t29180 - 11905: 0xA061,\n\t29181 - 11905: 0xA062,\n\t29182 - 11905: 0xA063,\n\t29183 - 11905: 0xA064,\n\t29184 - 11905: 0xA065,\n\t29185 - 11905: 0xA066,\n\t29186 - 11905: 0xA067,\n\t29187 - 11905: 0xA068,\n\t29188 - 11905: 0xA069,\n\t29189 - 11905: 0xA06A,\n\t29190 - 11905: 0xB1AC,\n\t29191 - 11905: 0xA06B,\n\t29192 - 11905: 0xA06C,\n\t29193 - 11905: 0xA06D,\n\t29194 - 11905: 0xA06E,\n\t29195 - 11905: 0xA06F,\n\t29196 - 11905: 0xA070,\n\t29197 - 11905: 0xA071,\n\t29198 - 11905: 0xA072,\n\t29199 - 11905: 0xA073,\n\t29200 - 11905: 0xA074,\n\t29201 - 11905: 0xA075,\n\t29202 - 11905: 0xA076,\n\t29203 - 11905: 0xA077,\n\t29204 - 11905: 0xA078,\n\t29205 - 11905: 0xA079,\n\t29206 - 11905: 0xA07A,\n\t29207 - 11905: 0xA07B,\n\t29208 - 11905: 0xA07C,\n\t29209 - 11905: 0xA07D,\n\t29210 - 11905: 0xA07E,\n\t29211 - 11905: 0xA080,\n\t29212 - 11905: 0xA081,\n\t29213 - 11905: 0xECDF,\n\t29214 - 11905: 0xA082,\n\t29215 - 11905: 0xA083,\n\t29216 - 11905: 0xA084,\n\t29217 - 11905: 0xA085,\n\t29218 - 11905: 0xA086,\n\t29219 - 11905: 0xA087,\n\t29220 - 11905: 0xA088,\n\t29221 - 11905: 0xA089,\n\t29222 - 11905: 0xA08A,\n\t29223 - 11905: 0xA08B,\n\t29224 - 11905: 0xECE0,\n\t29225 - 11905: 0xA08C,\n\t29226 - 11905: 0xD7A6,\n\t29227 - 11905: 0xA08D,\n\t29228 - 11905: 0xC5C0,\n\t29229 - 11905: 0xA08E,\n\t29230 - 11905: 0xA08F,\n\t29231 - 11905: 0xA090,\n\t29232 - 11905: 0xEBBC,\n\t29233 - 11905: 0xB0AE,\n\t29234 - 11905: 0xA091,\n\t29235 - 11905: 0xA092,\n\t29236 - 11905: 0xA093,\n\t29237 - 11905: 0xBEF4,\n\t29238 - 11905: 0xB8B8,\n\t29239 - 11905: 0xD2AF,\n\t29240 - 11905: 0xB0D6,\n\t29241 - 11905: 0xB5F9,\n\t29242 - 11905: 0xA094,\n\t29243 - 11905: 0xD8B3,\n\t29244 - 11905: 0xA095,\n\t29245 - 11905: 0xCBAC,\n\t29246 - 11905: 0xA096,\n\t29247 - 11905: 0xE3DD,\n\t29248 - 11905: 0xA097,\n\t29249 - 11905: 0xA098,\n\t29250 - 11905: 0xA099,\n\t29251 - 11905: 0xA09A,\n\t29252 - 11905: 0xA09B,\n\t29253 - 11905: 0xA09C,\n\t29254 - 11905: 0xA09D,\n\t29255 - 11905: 0xC6AC,\n\t29256 - 11905: 0xB0E6,\n\t29257 - 11905: 0xA09E,\n\t29258 - 11905: 0xA09F,\n\t29259 - 11905: 0xA0A0,\n\t29260 - 11905: 0xC5C6,\n\t29261 - 11905: 0xEBB9,\n\t29262 - 11905: 0xA0A1,\n\t29263 - 11905: 0xA0A2,\n\t29264 - 11905: 0xA0A3,\n\t29265 - 11905: 0xA0A4,\n\t29266 - 11905: 0xEBBA,\n\t29267 - 11905: 0xA0A5,\n\t29268 - 11905: 0xA0A6,\n\t29269 - 11905: 0xA0A7,\n\t29270 - 11905: 0xEBBB,\n\t29271 - 11905: 0xA0A8,\n\t29272 - 11905: 0xA0A9,\n\t29273 - 11905: 0xD1C0,\n\t29274 - 11905: 0xA0AA,\n\t29275 - 11905: 0xC5A3,\n\t29276 - 11905: 0xA0AB,\n\t29277 - 11905: 0xEAF2,\n\t29278 - 11905: 0xA0AC,\n\t29279 - 11905: 0xC4B2,\n\t29280 - 11905: 0xA0AD,\n\t29281 - 11905: 0xC4B5,\n\t29282 - 11905: 0xC0CE,\n\t29283 - 11905: 0xA0AE,\n\t29284 - 11905: 0xA0AF,\n\t29285 - 11905: 0xA0B0,\n\t29286 - 11905: 0xEAF3,\n\t29287 - 11905: 0xC4C1,\n\t29288 - 11905: 0xA0B1,\n\t29289 - 11905: 0xCEEF,\n\t29290 - 11905: 0xA0B2,\n\t29291 - 11905: 0xA0B3,\n\t29292 - 11905: 0xA0B4,\n\t29293 - 11905: 0xA0B5,\n\t29294 - 11905: 0xEAF0,\n\t29295 - 11905: 0xEAF4,\n\t29296 - 11905: 0xA0B6,\n\t29297 - 11905: 0xA0B7,\n\t29298 - 11905: 0xC9FC,\n\t29299 - 11905: 0xA0B8,\n\t29300 - 11905: 0xA0B9,\n\t29301 - 11905: 0xC7A3,\n\t29302 - 11905: 0xA0BA,\n\t29303 - 11905: 0xA0BB,\n\t29304 - 11905: 0xA0BC,\n\t29305 - 11905: 0xCCD8,\n\t29306 - 11905: 0xCEFE,\n\t29307 - 11905: 0xA0BD,\n\t29308 - 11905: 0xA0BE,\n\t29309 - 11905: 0xA0BF,\n\t29310 - 11905: 0xEAF5,\n\t29311 - 11905: 0xEAF6,\n\t29312 - 11905: 0xCFAC,\n\t29313 - 11905: 0xC0E7,\n\t29314 - 11905: 0xA0C0,\n\t29315 - 11905: 0xA0C1,\n\t29316 - 11905: 0xEAF7,\n\t29317 - 11905: 0xA0C2,\n\t29318 - 11905: 0xA0C3,\n\t29319 - 11905: 0xA0C4,\n\t29320 - 11905: 0xA0C5,\n\t29321 - 11905: 0xA0C6,\n\t29322 - 11905: 0xB6BF,\n\t29323 - 11905: 0xEAF8,\n\t29324 - 11905: 0xA0C7,\n\t29325 - 11905: 0xEAF9,\n\t29326 - 11905: 0xA0C8,\n\t29327 - 11905: 0xEAFA,\n\t29328 - 11905: 0xA0C9,\n\t29329 - 11905: 0xA0CA,\n\t29330 - 11905: 0xEAFB,\n\t29331 - 11905: 0xA0CB,\n\t29332 - 11905: 0xA0CC,\n\t29333 - 11905: 0xA0CD,\n\t29334 - 11905: 0xA0CE,\n\t29335 - 11905: 0xA0CF,\n\t29336 - 11905: 0xA0D0,\n\t29337 - 11905: 0xA0D1,\n\t29338 - 11905: 0xA0D2,\n\t29339 - 11905: 0xA0D3,\n\t29340 - 11905: 0xA0D4,\n\t29341 - 11905: 0xA0D5,\n\t29342 - 11905: 0xA0D6,\n\t29343 - 11905: 0xEAF1,\n\t29344 - 11905: 0xA0D7,\n\t29345 - 11905: 0xA0D8,\n\t29346 - 11905: 0xA0D9,\n\t29347 - 11905: 0xA0DA,\n\t29348 - 11905: 0xA0DB,\n\t29349 - 11905: 0xA0DC,\n\t29350 - 11905: 0xA0DD,\n\t29351 - 11905: 0xA0DE,\n\t29352 - 11905: 0xA0DF,\n\t29353 - 11905: 0xA0E0,\n\t29354 - 11905: 0xA0E1,\n\t29355 - 11905: 0xA0E2,\n\t29356 - 11905: 0xC8AE,\n\t29357 - 11905: 0xE1EB,\n\t29358 - 11905: 0xA0E3,\n\t29359 - 11905: 0xB7B8,\n\t29360 - 11905: 0xE1EC,\n\t29361 - 11905: 0xA0E4,\n\t29362 - 11905: 0xA0E5,\n\t29363 - 11905: 0xA0E6,\n\t29364 - 11905: 0xE1ED,\n\t29365 - 11905: 0xA0E7,\n\t29366 - 11905: 0xD7B4,\n\t29367 - 11905: 0xE1EE,\n\t29368 - 11905: 0xE1EF,\n\t29369 - 11905: 0xD3CC,\n\t29370 - 11905: 0xA0E8,\n\t29371 - 11905: 0xA0E9,\n\t29372 - 11905: 0xA0EA,\n\t29373 - 11905: 0xA0EB,\n\t29374 - 11905: 0xA0EC,\n\t29375 - 11905: 0xA0ED,\n\t29376 - 11905: 0xA0EE,\n\t29377 - 11905: 0xE1F1,\n\t29378 - 11905: 0xBFF1,\n\t29379 - 11905: 0xE1F0,\n\t29380 - 11905: 0xB5D2,\n\t29381 - 11905: 0xA0EF,\n\t29382 - 11905: 0xA0F0,\n\t29383 - 11905: 0xA0F1,\n\t29384 - 11905: 0xB1B7,\n\t29385 - 11905: 0xA0F2,\n\t29386 - 11905: 0xA0F3,\n\t29387 - 11905: 0xA0F4,\n\t29388 - 11905: 0xA0F5,\n\t29389 - 11905: 0xE1F3,\n\t29390 - 11905: 0xE1F2,\n\t29391 - 11905: 0xA0F6,\n\t29392 - 11905: 0xBAFC,\n\t29393 - 11905: 0xA0F7,\n\t29394 - 11905: 0xE1F4,\n\t29395 - 11905: 0xA0F8,\n\t29396 - 11905: 0xA0F9,\n\t29397 - 11905: 0xA0FA,\n\t29398 - 11905: 0xA0FB,\n\t29399 - 11905: 0xB9B7,\n\t29400 - 11905: 0xA0FC,\n\t29401 - 11905: 0xBED1,\n\t29402 - 11905: 0xA0FD,\n\t29403 - 11905: 0xA0FE,\n\t29404 - 11905: 0xAA40,\n\t29405 - 11905: 0xAA41,\n\t29406 - 11905: 0xC4FC,\n\t29407 - 11905: 0xAA42,\n\t29408 - 11905: 0xBADD,\n\t29409 - 11905: 0xBDC6,\n\t29410 - 11905: 0xAA43,\n\t29411 - 11905: 0xAA44,\n\t29412 - 11905: 0xAA45,\n\t29413 - 11905: 0xAA46,\n\t29414 - 11905: 0xAA47,\n\t29415 - 11905: 0xAA48,\n\t29416 - 11905: 0xE1F5,\n\t29417 - 11905: 0xE1F7,\n\t29418 - 11905: 0xAA49,\n\t29419 - 11905: 0xAA4A,\n\t29420 - 11905: 0xB6C0,\n\t29421 - 11905: 0xCFC1,\n\t29422 - 11905: 0xCAA8,\n\t29423 - 11905: 0xE1F6,\n\t29424 - 11905: 0xD5F8,\n\t29425 - 11905: 0xD3FC,\n\t29426 - 11905: 0xE1F8,\n\t29427 - 11905: 0xE1FC,\n\t29428 - 11905: 0xE1F9,\n\t29429 - 11905: 0xAA4B,\n\t29430 - 11905: 0xAA4C,\n\t29431 - 11905: 0xE1FA,\n\t29432 - 11905: 0xC0EA,\n\t29433 - 11905: 0xAA4D,\n\t29434 - 11905: 0xE1FE,\n\t29435 - 11905: 0xE2A1,\n\t29436 - 11905: 0xC0C7,\n\t29437 - 11905: 0xAA4E,\n\t29438 - 11905: 0xAA4F,\n\t29439 - 11905: 0xAA50,\n\t29440 - 11905: 0xAA51,\n\t29441 - 11905: 0xE1FB,\n\t29442 - 11905: 0xAA52,\n\t29443 - 11905: 0xE1FD,\n\t29444 - 11905: 0xAA53,\n\t29445 - 11905: 0xAA54,\n\t29446 - 11905: 0xAA55,\n\t29447 - 11905: 0xAA56,\n\t29448 - 11905: 0xAA57,\n\t29449 - 11905: 0xAA58,\n\t29450 - 11905: 0xE2A5,\n\t29451 - 11905: 0xAA59,\n\t29452 - 11905: 0xAA5A,\n\t29453 - 11905: 0xAA5B,\n\t29454 - 11905: 0xC1D4,\n\t29455 - 11905: 0xAA5C,\n\t29456 - 11905: 0xAA5D,\n\t29457 - 11905: 0xAA5E,\n\t29458 - 11905: 0xAA5F,\n\t29459 - 11905: 0xE2A3,\n\t29460 - 11905: 0xAA60,\n\t29461 - 11905: 0xE2A8,\n\t29462 - 11905: 0xB2FE,\n\t29463 - 11905: 0xE2A2,\n\t29464 - 11905: 0xAA61,\n\t29465 - 11905: 0xAA62,\n\t29466 - 11905: 0xAA63,\n\t29467 - 11905: 0xC3CD,\n\t29468 - 11905: 0xB2C2,\n\t29469 - 11905: 0xE2A7,\n\t29470 - 11905: 0xE2A6,\n\t29471 - 11905: 0xAA64,\n\t29472 - 11905: 0xAA65,\n\t29473 - 11905: 0xE2A4,\n\t29474 - 11905: 0xE2A9,\n\t29475 - 11905: 0xAA66,\n\t29476 - 11905: 0xAA67,\n\t29477 - 11905: 0xE2AB,\n\t29478 - 11905: 0xAA68,\n\t29479 - 11905: 0xAA69,\n\t29480 - 11905: 0xAA6A,\n\t29481 - 11905: 0xD0C9,\n\t29482 - 11905: 0xD6ED,\n\t29483 - 11905: 0xC3A8,\n\t29484 - 11905: 0xE2AC,\n\t29485 - 11905: 0xAA6B,\n\t29486 - 11905: 0xCFD7,\n\t29487 - 11905: 0xAA6C,\n\t29488 - 11905: 0xAA6D,\n\t29489 - 11905: 0xE2AE,\n\t29490 - 11905: 0xAA6E,\n\t29491 - 11905: 0xAA6F,\n\t29492 - 11905: 0xBAEF,\n\t29493 - 11905: 0xAA70,\n\t29494 - 11905: 0xAA71,\n\t29495 - 11905: 0xE9E0,\n\t29496 - 11905: 0xE2AD,\n\t29497 - 11905: 0xE2AA,\n\t29498 - 11905: 0xAA72,\n\t29499 - 11905: 0xAA73,\n\t29500 - 11905: 0xAA74,\n\t29501 - 11905: 0xAA75,\n\t29502 - 11905: 0xBBAB,\n\t29503 - 11905: 0xD4B3,\n\t29504 - 11905: 0xAA76,\n\t29505 - 11905: 0xAA77,\n\t29506 - 11905: 0xAA78,\n\t29507 - 11905: 0xAA79,\n\t29508 - 11905: 0xAA7A,\n\t29509 - 11905: 0xAA7B,\n\t29510 - 11905: 0xAA7C,\n\t29511 - 11905: 0xAA7D,\n\t29512 - 11905: 0xAA7E,\n\t29513 - 11905: 0xAA80,\n\t29514 - 11905: 0xAA81,\n\t29515 - 11905: 0xAA82,\n\t29516 - 11905: 0xAA83,\n\t29517 - 11905: 0xE2B0,\n\t29518 - 11905: 0xAA84,\n\t29519 - 11905: 0xAA85,\n\t29520 - 11905: 0xE2AF,\n\t29521 - 11905: 0xAA86,\n\t29522 - 11905: 0xE9E1,\n\t29523 - 11905: 0xAA87,\n\t29524 - 11905: 0xAA88,\n\t29525 - 11905: 0xAA89,\n\t29526 - 11905: 0xAA8A,\n\t29527 - 11905: 0xE2B1,\n\t29528 - 11905: 0xAA8B,\n\t29529 - 11905: 0xAA8C,\n\t29530 - 11905: 0xAA8D,\n\t29531 - 11905: 0xAA8E,\n\t29532 - 11905: 0xAA8F,\n\t29533 - 11905: 0xAA90,\n\t29534 - 11905: 0xAA91,\n\t29535 - 11905: 0xAA92,\n\t29536 - 11905: 0xE2B2,\n\t29537 - 11905: 0xAA93,\n\t29538 - 11905: 0xAA94,\n\t29539 - 11905: 0xAA95,\n\t29540 - 11905: 0xAA96,\n\t29541 - 11905: 0xAA97,\n\t29542 - 11905: 0xAA98,\n\t29543 - 11905: 0xAA99,\n\t29544 - 11905: 0xAA9A,\n\t29545 - 11905: 0xAA9B,\n\t29546 - 11905: 0xAA9C,\n\t29547 - 11905: 0xAA9D,\n\t29548 - 11905: 0xE2B3,\n\t29549 - 11905: 0xCCA1,\n\t29550 - 11905: 0xAA9E,\n\t29551 - 11905: 0xE2B4,\n\t29552 - 11905: 0xAA9F,\n\t29553 - 11905: 0xAAA0,\n\t29554 - 11905: 0xAB40,\n\t29555 - 11905: 0xAB41,\n\t29556 - 11905: 0xAB42,\n\t29557 - 11905: 0xAB43,\n\t29558 - 11905: 0xAB44,\n\t29559 - 11905: 0xAB45,\n\t29560 - 11905: 0xAB46,\n\t29561 - 11905: 0xAB47,\n\t29562 - 11905: 0xAB48,\n\t29563 - 11905: 0xAB49,\n\t29564 - 11905: 0xAB4A,\n\t29565 - 11905: 0xAB4B,\n\t29566 - 11905: 0xE2B5,\n\t29567 - 11905: 0xAB4C,\n\t29568 - 11905: 0xAB4D,\n\t29569 - 11905: 0xAB4E,\n\t29570 - 11905: 0xAB4F,\n\t29571 - 11905: 0xAB50,\n\t29572 - 11905: 0xD0FE,\n\t29573 - 11905: 0xAB51,\n\t29574 - 11905: 0xAB52,\n\t29575 - 11905: 0xC2CA,\n\t29576 - 11905: 0xAB53,\n\t29577 - 11905: 0xD3F1,\n\t29578 - 11905: 0xAB54,\n\t29579 - 11905: 0xCDF5,\n\t29580 - 11905: 0xAB55,\n\t29581 - 11905: 0xAB56,\n\t29582 - 11905: 0xE7E0,\n\t29583 - 11905: 0xAB57,\n\t29584 - 11905: 0xAB58,\n\t29585 - 11905: 0xE7E1,\n\t29586 - 11905: 0xAB59,\n\t29587 - 11905: 0xAB5A,\n\t29588 - 11905: 0xAB5B,\n\t29589 - 11905: 0xAB5C,\n\t29590 - 11905: 0xBEC1,\n\t29591 - 11905: 0xAB5D,\n\t29592 - 11905: 0xAB5E,\n\t29593 - 11905: 0xAB5F,\n\t29594 - 11905: 0xAB60,\n\t29595 - 11905: 0xC2EA,\n\t29596 - 11905: 0xAB61,\n\t29597 - 11905: 0xAB62,\n\t29598 - 11905: 0xAB63,\n\t29599 - 11905: 0xE7E4,\n\t29600 - 11905: 0xAB64,\n\t29601 - 11905: 0xAB65,\n\t29602 - 11905: 0xE7E3,\n\t29603 - 11905: 0xAB66,\n\t29604 - 11905: 0xAB67,\n\t29605 - 11905: 0xAB68,\n\t29606 - 11905: 0xAB69,\n\t29607 - 11905: 0xAB6A,\n\t29608 - 11905: 0xAB6B,\n\t29609 - 11905: 0xCDE6,\n\t29610 - 11905: 0xAB6C,\n\t29611 - 11905: 0xC3B5,\n\t29612 - 11905: 0xAB6D,\n\t29613 - 11905: 0xAB6E,\n\t29614 - 11905: 0xE7E2,\n\t29615 - 11905: 0xBBB7,\n\t29616 - 11905: 0xCFD6,\n\t29617 - 11905: 0xAB6F,\n\t29618 - 11905: 0xC1E1,\n\t29619 - 11905: 0xE7E9,\n\t29620 - 11905: 0xAB70,\n\t29621 - 11905: 0xAB71,\n\t29622 - 11905: 0xAB72,\n\t29623 - 11905: 0xE7E8,\n\t29624 - 11905: 0xAB73,\n\t29625 - 11905: 0xAB74,\n\t29626 - 11905: 0xE7F4,\n\t29627 - 11905: 0xB2A3,\n\t29628 - 11905: 0xAB75,\n\t29629 - 11905: 0xAB76,\n\t29630 - 11905: 0xAB77,\n\t29631 - 11905: 0xAB78,\n\t29632 - 11905: 0xE7EA,\n\t29633 - 11905: 0xAB79,\n\t29634 - 11905: 0xE7E6,\n\t29635 - 11905: 0xAB7A,\n\t29636 - 11905: 0xAB7B,\n\t29637 - 11905: 0xAB7C,\n\t29638 - 11905: 0xAB7D,\n\t29639 - 11905: 0xAB7E,\n\t29640 - 11905: 0xE7EC,\n\t29641 - 11905: 0xE7EB,\n\t29642 - 11905: 0xC9BA,\n\t29643 - 11905: 0xAB80,\n\t29644 - 11905: 0xAB81,\n\t29645 - 11905: 0xD5E4,\n\t29646 - 11905: 0xAB82,\n\t29647 - 11905: 0xE7E5,\n\t29648 - 11905: 0xB7A9,\n\t29649 - 11905: 0xE7E7,\n\t29650 - 11905: 0xAB83,\n\t29651 - 11905: 0xAB84,\n\t29652 - 11905: 0xAB85,\n\t29653 - 11905: 0xAB86,\n\t29654 - 11905: 0xAB87,\n\t29655 - 11905: 0xAB88,\n\t29656 - 11905: 0xAB89,\n\t29657 - 11905: 0xE7EE,\n\t29658 - 11905: 0xAB8A,\n\t29659 - 11905: 0xAB8B,\n\t29660 - 11905: 0xAB8C,\n\t29661 - 11905: 0xAB8D,\n\t29662 - 11905: 0xE7F3,\n\t29663 - 11905: 0xAB8E,\n\t29664 - 11905: 0xD6E9,\n\t29665 - 11905: 0xAB8F,\n\t29666 - 11905: 0xAB90,\n\t29667 - 11905: 0xAB91,\n\t29668 - 11905: 0xAB92,\n\t29669 - 11905: 0xE7ED,\n\t29670 - 11905: 0xAB93,\n\t29671 - 11905: 0xE7F2,\n\t29672 - 11905: 0xAB94,\n\t29673 - 11905: 0xE7F1,\n\t29674 - 11905: 0xAB95,\n\t29675 - 11905: 0xAB96,\n\t29676 - 11905: 0xAB97,\n\t29677 - 11905: 0xB0E0,\n\t29678 - 11905: 0xAB98,\n\t29679 - 11905: 0xAB99,\n\t29680 - 11905: 0xAB9A,\n\t29681 - 11905: 0xAB9B,\n\t29682 - 11905: 0xE7F5,\n\t29683 - 11905: 0xAB9C,\n\t29684 - 11905: 0xAB9D,\n\t29685 - 11905: 0xAB9E,\n\t29686 - 11905: 0xAB9F,\n\t29687 - 11905: 0xABA0,\n\t29688 - 11905: 0xAC40,\n\t29689 - 11905: 0xAC41,\n\t29690 - 11905: 0xAC42,\n\t29691 - 11905: 0xAC43,\n\t29692 - 11905: 0xAC44,\n\t29693 - 11905: 0xAC45,\n\t29694 - 11905: 0xAC46,\n\t29695 - 11905: 0xAC47,\n\t29696 - 11905: 0xAC48,\n\t29697 - 11905: 0xAC49,\n\t29698 - 11905: 0xAC4A,\n\t29699 - 11905: 0xC7F2,\n\t29700 - 11905: 0xAC4B,\n\t29701 - 11905: 0xC0C5,\n\t29702 - 11905: 0xC0ED,\n\t29703 - 11905: 0xAC4C,\n\t29704 - 11905: 0xAC4D,\n\t29705 - 11905: 0xC1F0,\n\t29706 - 11905: 0xE7F0,\n\t29707 - 11905: 0xAC4E,\n\t29708 - 11905: 0xAC4F,\n\t29709 - 11905: 0xAC50,\n\t29710 - 11905: 0xAC51,\n\t29711 - 11905: 0xE7F6,\n\t29712 - 11905: 0xCBF6,\n\t29713 - 11905: 0xAC52,\n\t29714 - 11905: 0xAC53,\n\t29715 - 11905: 0xAC54,\n\t29716 - 11905: 0xAC55,\n\t29717 - 11905: 0xAC56,\n\t29718 - 11905: 0xAC57,\n\t29719 - 11905: 0xAC58,\n\t29720 - 11905: 0xAC59,\n\t29721 - 11905: 0xAC5A,\n\t29722 - 11905: 0xE8A2,\n\t29723 - 11905: 0xE8A1,\n\t29724 - 11905: 0xAC5B,\n\t29725 - 11905: 0xAC5C,\n\t29726 - 11905: 0xAC5D,\n\t29727 - 11905: 0xAC5E,\n\t29728 - 11905: 0xAC5F,\n\t29729 - 11905: 0xAC60,\n\t29730 - 11905: 0xD7C1,\n\t29731 - 11905: 0xAC61,\n\t29732 - 11905: 0xAC62,\n\t29733 - 11905: 0xE7FA,\n\t29734 - 11905: 0xE7F9,\n\t29735 - 11905: 0xAC63,\n\t29736 - 11905: 0xE7FB,\n\t29737 - 11905: 0xAC64,\n\t29738 - 11905: 0xE7F7,\n\t29739 - 11905: 0xAC65,\n\t29740 - 11905: 0xE7FE,\n\t29741 - 11905: 0xAC66,\n\t29742 - 11905: 0xE7FD,\n\t29743 - 11905: 0xAC67,\n\t29744 - 11905: 0xE7FC,\n\t29745 - 11905: 0xAC68,\n\t29746 - 11905: 0xAC69,\n\t29747 - 11905: 0xC1D5,\n\t29748 - 11905: 0xC7D9,\n\t29749 - 11905: 0xC5FD,\n\t29750 - 11905: 0xC5C3,\n\t29751 - 11905: 0xAC6A,\n\t29752 - 11905: 0xAC6B,\n\t29753 - 11905: 0xAC6C,\n\t29754 - 11905: 0xAC6D,\n\t29755 - 11905: 0xAC6E,\n\t29756 - 11905: 0xC7ED,\n\t29757 - 11905: 0xAC6F,\n\t29758 - 11905: 0xAC70,\n\t29759 - 11905: 0xAC71,\n\t29760 - 11905: 0xAC72,\n\t29761 - 11905: 0xE8A3,\n\t29762 - 11905: 0xAC73,\n\t29763 - 11905: 0xAC74,\n\t29764 - 11905: 0xAC75,\n\t29765 - 11905: 0xAC76,\n\t29766 - 11905: 0xAC77,\n\t29767 - 11905: 0xAC78,\n\t29768 - 11905: 0xAC79,\n\t29769 - 11905: 0xAC7A,\n\t29770 - 11905: 0xAC7B,\n\t29771 - 11905: 0xAC7C,\n\t29772 - 11905: 0xAC7D,\n\t29773 - 11905: 0xAC7E,\n\t29774 - 11905: 0xAC80,\n\t29775 - 11905: 0xAC81,\n\t29776 - 11905: 0xAC82,\n\t29777 - 11905: 0xAC83,\n\t29778 - 11905: 0xAC84,\n\t29779 - 11905: 0xAC85,\n\t29780 - 11905: 0xAC86,\n\t29781 - 11905: 0xE8A6,\n\t29782 - 11905: 0xAC87,\n\t29783 - 11905: 0xE8A5,\n\t29784 - 11905: 0xAC88,\n\t29785 - 11905: 0xE8A7,\n\t29786 - 11905: 0xBAF7,\n\t29787 - 11905: 0xE7F8,\n\t29788 - 11905: 0xE8A4,\n\t29789 - 11905: 0xAC89,\n\t29790 - 11905: 0xC8F0,\n\t29791 - 11905: 0xC9AA,\n\t29792 - 11905: 0xAC8A,\n\t29793 - 11905: 0xAC8B,\n\t29794 - 11905: 0xAC8C,\n\t29795 - 11905: 0xAC8D,\n\t29796 - 11905: 0xAC8E,\n\t29797 - 11905: 0xAC8F,\n\t29798 - 11905: 0xAC90,\n\t29799 - 11905: 0xAC91,\n\t29800 - 11905: 0xAC92,\n\t29801 - 11905: 0xAC93,\n\t29802 - 11905: 0xAC94,\n\t29803 - 11905: 0xAC95,\n\t29804 - 11905: 0xAC96,\n\t29805 - 11905: 0xE8A9,\n\t29806 - 11905: 0xAC97,\n\t29807 - 11905: 0xAC98,\n\t29808 - 11905: 0xB9E5,\n\t29809 - 11905: 0xAC99,\n\t29810 - 11905: 0xAC9A,\n\t29811 - 11905: 0xAC9B,\n\t29812 - 11905: 0xAC9C,\n\t29813 - 11905: 0xAC9D,\n\t29814 - 11905: 0xD1FE,\n\t29815 - 11905: 0xE8A8,\n\t29816 - 11905: 0xAC9E,\n\t29817 - 11905: 0xAC9F,\n\t29818 - 11905: 0xACA0,\n\t29819 - 11905: 0xAD40,\n\t29820 - 11905: 0xAD41,\n\t29821 - 11905: 0xAD42,\n\t29822 - 11905: 0xE8AA,\n\t29823 - 11905: 0xAD43,\n\t29824 - 11905: 0xE8AD,\n\t29825 - 11905: 0xE8AE,\n\t29826 - 11905: 0xAD44,\n\t29827 - 11905: 0xC1A7,\n\t29828 - 11905: 0xAD45,\n\t29829 - 11905: 0xAD46,\n\t29830 - 11905: 0xAD47,\n\t29831 - 11905: 0xE8AF,\n\t29832 - 11905: 0xAD48,\n\t29833 - 11905: 0xAD49,\n\t29834 - 11905: 0xAD4A,\n\t29835 - 11905: 0xE8B0,\n\t29836 - 11905: 0xAD4B,\n\t29837 - 11905: 0xAD4C,\n\t29838 - 11905: 0xE8AC,\n\t29839 - 11905: 0xAD4D,\n\t29840 - 11905: 0xE8B4,\n\t29841 - 11905: 0xAD4E,\n\t29842 - 11905: 0xAD4F,\n\t29843 - 11905: 0xAD50,\n\t29844 - 11905: 0xAD51,\n\t29845 - 11905: 0xAD52,\n\t29846 - 11905: 0xAD53,\n\t29847 - 11905: 0xAD54,\n\t29848 - 11905: 0xAD55,\n\t29849 - 11905: 0xAD56,\n\t29850 - 11905: 0xAD57,\n\t29851 - 11905: 0xAD58,\n\t29852 - 11905: 0xE8AB,\n\t29853 - 11905: 0xAD59,\n\t29854 - 11905: 0xE8B1,\n\t29855 - 11905: 0xAD5A,\n\t29856 - 11905: 0xAD5B,\n\t29857 - 11905: 0xAD5C,\n\t29858 - 11905: 0xAD5D,\n\t29859 - 11905: 0xAD5E,\n\t29860 - 11905: 0xAD5F,\n\t29861 - 11905: 0xAD60,\n\t29862 - 11905: 0xAD61,\n\t29863 - 11905: 0xE8B5,\n\t29864 - 11905: 0xE8B2,\n\t29865 - 11905: 0xE8B3,\n\t29866 - 11905: 0xAD62,\n\t29867 - 11905: 0xAD63,\n\t29868 - 11905: 0xAD64,\n\t29869 - 11905: 0xAD65,\n\t29870 - 11905: 0xAD66,\n\t29871 - 11905: 0xAD67,\n\t29872 - 11905: 0xAD68,\n\t29873 - 11905: 0xAD69,\n\t29874 - 11905: 0xAD6A,\n\t29875 - 11905: 0xAD6B,\n\t29876 - 11905: 0xAD6C,\n\t29877 - 11905: 0xAD6D,\n\t29878 - 11905: 0xAD6E,\n\t29879 - 11905: 0xAD6F,\n\t29880 - 11905: 0xAD70,\n\t29881 - 11905: 0xAD71,\n\t29882 - 11905: 0xE8B7,\n\t29883 - 11905: 0xAD72,\n\t29884 - 11905: 0xAD73,\n\t29885 - 11905: 0xAD74,\n\t29886 - 11905: 0xAD75,\n\t29887 - 11905: 0xAD76,\n\t29888 - 11905: 0xAD77,\n\t29889 - 11905: 0xAD78,\n\t29890 - 11905: 0xAD79,\n\t29891 - 11905: 0xAD7A,\n\t29892 - 11905: 0xAD7B,\n\t29893 - 11905: 0xAD7C,\n\t29894 - 11905: 0xAD7D,\n\t29895 - 11905: 0xAD7E,\n\t29896 - 11905: 0xAD80,\n\t29897 - 11905: 0xAD81,\n\t29898 - 11905: 0xAD82,\n\t29899 - 11905: 0xAD83,\n\t29900 - 11905: 0xAD84,\n\t29901 - 11905: 0xAD85,\n\t29902 - 11905: 0xAD86,\n\t29903 - 11905: 0xAD87,\n\t29904 - 11905: 0xAD88,\n\t29905 - 11905: 0xAD89,\n\t29906 - 11905: 0xE8B6,\n\t29907 - 11905: 0xAD8A,\n\t29908 - 11905: 0xAD8B,\n\t29909 - 11905: 0xAD8C,\n\t29910 - 11905: 0xAD8D,\n\t29911 - 11905: 0xAD8E,\n\t29912 - 11905: 0xAD8F,\n\t29913 - 11905: 0xAD90,\n\t29914 - 11905: 0xAD91,\n\t29915 - 11905: 0xAD92,\n\t29916 - 11905: 0xB9CF,\n\t29917 - 11905: 0xAD93,\n\t29918 - 11905: 0xF0AC,\n\t29919 - 11905: 0xAD94,\n\t29920 - 11905: 0xF0AD,\n\t29921 - 11905: 0xAD95,\n\t29922 - 11905: 0xC6B0,\n\t29923 - 11905: 0xB0EA,\n\t29924 - 11905: 0xC8BF,\n\t29925 - 11905: 0xAD96,\n\t29926 - 11905: 0xCDDF,\n\t29927 - 11905: 0xAD97,\n\t29928 - 11905: 0xAD98,\n\t29929 - 11905: 0xAD99,\n\t29930 - 11905: 0xAD9A,\n\t29931 - 11905: 0xAD9B,\n\t29932 - 11905: 0xAD9C,\n\t29933 - 11905: 0xAD9D,\n\t29934 - 11905: 0xCECD,\n\t29935 - 11905: 0xEAB1,\n\t29936 - 11905: 0xAD9E,\n\t29937 - 11905: 0xAD9F,\n\t29938 - 11905: 0xADA0,\n\t29939 - 11905: 0xAE40,\n\t29940 - 11905: 0xEAB2,\n\t29941 - 11905: 0xAE41,\n\t29942 - 11905: 0xC6BF,\n\t29943 - 11905: 0xB4C9,\n\t29944 - 11905: 0xAE42,\n\t29945 - 11905: 0xAE43,\n\t29946 - 11905: 0xAE44,\n\t29947 - 11905: 0xAE45,\n\t29948 - 11905: 0xAE46,\n\t29949 - 11905: 0xAE47,\n\t29950 - 11905: 0xAE48,\n\t29951 - 11905: 0xEAB3,\n\t29952 - 11905: 0xAE49,\n\t29953 - 11905: 0xAE4A,\n\t29954 - 11905: 0xAE4B,\n\t29955 - 11905: 0xAE4C,\n\t29956 - 11905: 0xD5E7,\n\t29957 - 11905: 0xAE4D,\n\t29958 - 11905: 0xAE4E,\n\t29959 - 11905: 0xAE4F,\n\t29960 - 11905: 0xAE50,\n\t29961 - 11905: 0xAE51,\n\t29962 - 11905: 0xAE52,\n\t29963 - 11905: 0xAE53,\n\t29964 - 11905: 0xAE54,\n\t29965 - 11905: 0xDDF9,\n\t29966 - 11905: 0xAE55,\n\t29967 - 11905: 0xEAB4,\n\t29968 - 11905: 0xAE56,\n\t29969 - 11905: 0xEAB5,\n\t29970 - 11905: 0xAE57,\n\t29971 - 11905: 0xEAB6,\n\t29972 - 11905: 0xAE58,\n\t29973 - 11905: 0xAE59,\n\t29974 - 11905: 0xAE5A,\n\t29975 - 11905: 0xAE5B,\n\t29976 - 11905: 0xB8CA,\n\t29977 - 11905: 0xDFB0,\n\t29978 - 11905: 0xC9F5,\n\t29979 - 11905: 0xAE5C,\n\t29980 - 11905: 0xCCF0,\n\t29981 - 11905: 0xAE5D,\n\t29982 - 11905: 0xAE5E,\n\t29983 - 11905: 0xC9FA,\n\t29984 - 11905: 0xAE5F,\n\t29985 - 11905: 0xAE60,\n\t29986 - 11905: 0xAE61,\n\t29987 - 11905: 0xAE62,\n\t29988 - 11905: 0xAE63,\n\t29989 - 11905: 0xC9FB,\n\t29990 - 11905: 0xAE64,\n\t29991 - 11905: 0xAE65,\n\t29992 - 11905: 0xD3C3,\n\t29993 - 11905: 0xCBA6,\n\t29994 - 11905: 0xAE66,\n\t29995 - 11905: 0xB8A6,\n\t29996 - 11905: 0xF0AE,\n\t29997 - 11905: 0xB1C2,\n\t29998 - 11905: 0xAE67,\n\t29999 - 11905: 0xE5B8,\n\t30000 - 11905: 0xCCEF,\n\t30001 - 11905: 0xD3C9,\n\t30002 - 11905: 0xBCD7,\n\t30003 - 11905: 0xC9EA,\n\t30004 - 11905: 0xAE68,\n\t30005 - 11905: 0xB5E7,\n\t30006 - 11905: 0xAE69,\n\t30007 - 11905: 0xC4D0,\n\t30008 - 11905: 0xB5E9,\n\t30009 - 11905: 0xAE6A,\n\t30010 - 11905: 0xEEAE,\n\t30011 - 11905: 0xBBAD,\n\t30012 - 11905: 0xAE6B,\n\t30013 - 11905: 0xAE6C,\n\t30014 - 11905: 0xE7DE,\n\t30015 - 11905: 0xAE6D,\n\t30016 - 11905: 0xEEAF,\n\t30017 - 11905: 0xAE6E,\n\t30018 - 11905: 0xAE6F,\n\t30019 - 11905: 0xAE70,\n\t30020 - 11905: 0xAE71,\n\t30021 - 11905: 0xB3A9,\n\t30022 - 11905: 0xAE72,\n\t30023 - 11905: 0xAE73,\n\t30024 - 11905: 0xEEB2,\n\t30025 - 11905: 0xAE74,\n\t30026 - 11905: 0xAE75,\n\t30027 - 11905: 0xEEB1,\n\t30028 - 11905: 0xBDE7,\n\t30029 - 11905: 0xAE76,\n\t30030 - 11905: 0xEEB0,\n\t30031 - 11905: 0xCEB7,\n\t30032 - 11905: 0xAE77,\n\t30033 - 11905: 0xAE78,\n\t30034 - 11905: 0xAE79,\n\t30035 - 11905: 0xAE7A,\n\t30036 - 11905: 0xC5CF,\n\t30037 - 11905: 0xAE7B,\n\t30038 - 11905: 0xAE7C,\n\t30039 - 11905: 0xAE7D,\n\t30040 - 11905: 0xAE7E,\n\t30041 - 11905: 0xC1F4,\n\t30042 - 11905: 0xDBCE,\n\t30043 - 11905: 0xEEB3,\n\t30044 - 11905: 0xD0F3,\n\t30045 - 11905: 0xAE80,\n\t30046 - 11905: 0xAE81,\n\t30047 - 11905: 0xAE82,\n\t30048 - 11905: 0xAE83,\n\t30049 - 11905: 0xAE84,\n\t30050 - 11905: 0xAE85,\n\t30051 - 11905: 0xAE86,\n\t30052 - 11905: 0xAE87,\n\t30053 - 11905: 0xC2D4,\n\t30054 - 11905: 0xC6E8,\n\t30055 - 11905: 0xAE88,\n\t30056 - 11905: 0xAE89,\n\t30057 - 11905: 0xAE8A,\n\t30058 - 11905: 0xB7AC,\n\t30059 - 11905: 0xAE8B,\n\t30060 - 11905: 0xAE8C,\n\t30061 - 11905: 0xAE8D,\n\t30062 - 11905: 0xAE8E,\n\t30063 - 11905: 0xAE8F,\n\t30064 - 11905: 0xAE90,\n\t30065 - 11905: 0xAE91,\n\t30066 - 11905: 0xEEB4,\n\t30067 - 11905: 0xAE92,\n\t30068 - 11905: 0xB3EB,\n\t30069 - 11905: 0xAE93,\n\t30070 - 11905: 0xAE94,\n\t30071 - 11905: 0xAE95,\n\t30072 - 11905: 0xBBFB,\n\t30073 - 11905: 0xEEB5,\n\t30074 - 11905: 0xAE96,\n\t30075 - 11905: 0xAE97,\n\t30076 - 11905: 0xAE98,\n\t30077 - 11905: 0xAE99,\n\t30078 - 11905: 0xAE9A,\n\t30079 - 11905: 0xE7DC,\n\t30080 - 11905: 0xAE9B,\n\t30081 - 11905: 0xAE9C,\n\t30082 - 11905: 0xAE9D,\n\t30083 - 11905: 0xEEB6,\n\t30084 - 11905: 0xAE9E,\n\t30085 - 11905: 0xAE9F,\n\t30086 - 11905: 0xBDAE,\n\t30087 - 11905: 0xAEA0,\n\t30088 - 11905: 0xAF40,\n\t30089 - 11905: 0xAF41,\n\t30090 - 11905: 0xAF42,\n\t30091 - 11905: 0xF1E2,\n\t30092 - 11905: 0xAF43,\n\t30093 - 11905: 0xAF44,\n\t30094 - 11905: 0xAF45,\n\t30095 - 11905: 0xCAE8,\n\t30096 - 11905: 0xAF46,\n\t30097 - 11905: 0xD2C9,\n\t30098 - 11905: 0xF0DA,\n\t30099 - 11905: 0xAF47,\n\t30100 - 11905: 0xF0DB,\n\t30101 - 11905: 0xAF48,\n\t30102 - 11905: 0xF0DC,\n\t30103 - 11905: 0xC1C6,\n\t30104 - 11905: 0xAF49,\n\t30105 - 11905: 0xB8ED,\n\t30106 - 11905: 0xBECE,\n\t30107 - 11905: 0xAF4A,\n\t30108 - 11905: 0xAF4B,\n\t30109 - 11905: 0xF0DE,\n\t30110 - 11905: 0xAF4C,\n\t30111 - 11905: 0xC5B1,\n\t30112 - 11905: 0xF0DD,\n\t30113 - 11905: 0xD1F1,\n\t30114 - 11905: 0xAF4D,\n\t30115 - 11905: 0xF0E0,\n\t30116 - 11905: 0xB0CC,\n\t30117 - 11905: 0xBDEA,\n\t30118 - 11905: 0xAF4E,\n\t30119 - 11905: 0xAF4F,\n\t30120 - 11905: 0xAF50,\n\t30121 - 11905: 0xAF51,\n\t30122 - 11905: 0xAF52,\n\t30123 - 11905: 0xD2DF,\n\t30124 - 11905: 0xF0DF,\n\t30125 - 11905: 0xAF53,\n\t30126 - 11905: 0xB4AF,\n\t30127 - 11905: 0xB7E8,\n\t30128 - 11905: 0xF0E6,\n\t30129 - 11905: 0xF0E5,\n\t30130 - 11905: 0xC6A3,\n\t30131 - 11905: 0xF0E1,\n\t30132 - 11905: 0xF0E2,\n\t30133 - 11905: 0xB4C3,\n\t30134 - 11905: 0xAF54,\n\t30135 - 11905: 0xAF55,\n\t30136 - 11905: 0xF0E3,\n\t30137 - 11905: 0xD5EE,\n\t30138 - 11905: 0xAF56,\n\t30139 - 11905: 0xAF57,\n\t30140 - 11905: 0xCCDB,\n\t30141 - 11905: 0xBED2,\n\t30142 - 11905: 0xBCB2,\n\t30143 - 11905: 0xAF58,\n\t30144 - 11905: 0xAF59,\n\t30145 - 11905: 0xAF5A,\n\t30146 - 11905: 0xF0E8,\n\t30147 - 11905: 0xF0E7,\n\t30148 - 11905: 0xF0E4,\n\t30149 - 11905: 0xB2A1,\n\t30150 - 11905: 0xAF5B,\n\t30151 - 11905: 0xD6A2,\n\t30152 - 11905: 0xD3B8,\n\t30153 - 11905: 0xBEB7,\n\t30154 - 11905: 0xC8AC,\n\t30155 - 11905: 0xAF5C,\n\t30156 - 11905: 0xAF5D,\n\t30157 - 11905: 0xF0EA,\n\t30158 - 11905: 0xAF5E,\n\t30159 - 11905: 0xAF5F,\n\t30160 - 11905: 0xAF60,\n\t30161 - 11905: 0xAF61,\n\t30162 - 11905: 0xD1F7,\n\t30163 - 11905: 0xAF62,\n\t30164 - 11905: 0xD6CC,\n\t30165 - 11905: 0xBADB,\n\t30166 - 11905: 0xF0E9,\n\t30167 - 11905: 0xAF63,\n\t30168 - 11905: 0xB6BB,\n\t30169 - 11905: 0xAF64,\n\t30170 - 11905: 0xAF65,\n\t30171 - 11905: 0xCDB4,\n\t30172 - 11905: 0xAF66,\n\t30173 - 11905: 0xAF67,\n\t30174 - 11905: 0xC6A6,\n\t30175 - 11905: 0xAF68,\n\t30176 - 11905: 0xAF69,\n\t30177 - 11905: 0xAF6A,\n\t30178 - 11905: 0xC1A1,\n\t30179 - 11905: 0xF0EB,\n\t30180 - 11905: 0xF0EE,\n\t30181 - 11905: 0xAF6B,\n\t30182 - 11905: 0xF0ED,\n\t30183 - 11905: 0xF0F0,\n\t30184 - 11905: 0xF0EC,\n\t30185 - 11905: 0xAF6C,\n\t30186 - 11905: 0xBBBE,\n\t30187 - 11905: 0xF0EF,\n\t30188 - 11905: 0xAF6D,\n\t30189 - 11905: 0xAF6E,\n\t30190 - 11905: 0xAF6F,\n\t30191 - 11905: 0xAF70,\n\t30192 - 11905: 0xCCB5,\n\t30193 - 11905: 0xF0F2,\n\t30194 - 11905: 0xAF71,\n\t30195 - 11905: 0xAF72,\n\t30196 - 11905: 0xB3D5,\n\t30197 - 11905: 0xAF73,\n\t30198 - 11905: 0xAF74,\n\t30199 - 11905: 0xAF75,\n\t30200 - 11905: 0xAF76,\n\t30201 - 11905: 0xB1D4,\n\t30202 - 11905: 0xAF77,\n\t30203 - 11905: 0xAF78,\n\t30204 - 11905: 0xF0F3,\n\t30205 - 11905: 0xAF79,\n\t30206 - 11905: 0xAF7A,\n\t30207 - 11905: 0xF0F4,\n\t30208 - 11905: 0xF0F6,\n\t30209 - 11905: 0xB4E1,\n\t30210 - 11905: 0xAF7B,\n\t30211 - 11905: 0xF0F1,\n\t30212 - 11905: 0xAF7C,\n\t30213 - 11905: 0xF0F7,\n\t30214 - 11905: 0xAF7D,\n\t30215 - 11905: 0xAF7E,\n\t30216 - 11905: 0xAF80,\n\t30217 - 11905: 0xAF81,\n\t30218 - 11905: 0xF0FA,\n\t30219 - 11905: 0xAF82,\n\t30220 - 11905: 0xF0F8,\n\t30221 - 11905: 0xAF83,\n\t30222 - 11905: 0xAF84,\n\t30223 - 11905: 0xAF85,\n\t30224 - 11905: 0xF0F5,\n\t30225 - 11905: 0xAF86,\n\t30226 - 11905: 0xAF87,\n\t30227 - 11905: 0xAF88,\n\t30228 - 11905: 0xAF89,\n\t30229 - 11905: 0xF0FD,\n\t30230 - 11905: 0xAF8A,\n\t30231 - 11905: 0xF0F9,\n\t30232 - 11905: 0xF0FC,\n\t30233 - 11905: 0xF0FE,\n\t30234 - 11905: 0xAF8B,\n\t30235 - 11905: 0xF1A1,\n\t30236 - 11905: 0xAF8C,\n\t30237 - 11905: 0xAF8D,\n\t30238 - 11905: 0xAF8E,\n\t30239 - 11905: 0xCEC1,\n\t30240 - 11905: 0xF1A4,\n\t30241 - 11905: 0xAF8F,\n\t30242 - 11905: 0xF1A3,\n\t30243 - 11905: 0xAF90,\n\t30244 - 11905: 0xC1F6,\n\t30245 - 11905: 0xF0FB,\n\t30246 - 11905: 0xCADD,\n\t30247 - 11905: 0xAF91,\n\t30248 - 11905: 0xAF92,\n\t30249 - 11905: 0xB4F1,\n\t30250 - 11905: 0xB1F1,\n\t30251 - 11905: 0xCCB1,\n\t30252 - 11905: 0xAF93,\n\t30253 - 11905: 0xF1A6,\n\t30254 - 11905: 0xAF94,\n\t30255 - 11905: 0xAF95,\n\t30256 - 11905: 0xF1A7,\n\t30257 - 11905: 0xAF96,\n\t30258 - 11905: 0xAF97,\n\t30259 - 11905: 0xF1AC,\n\t30260 - 11905: 0xD5CE,\n\t30261 - 11905: 0xF1A9,\n\t30262 - 11905: 0xAF98,\n\t30263 - 11905: 0xAF99,\n\t30264 - 11905: 0xC8B3,\n\t30265 - 11905: 0xAF9A,\n\t30266 - 11905: 0xAF9B,\n\t30267 - 11905: 0xAF9C,\n\t30268 - 11905: 0xF1A2,\n\t30269 - 11905: 0xAF9D,\n\t30270 - 11905: 0xF1AB,\n\t30271 - 11905: 0xF1A8,\n\t30272 - 11905: 0xF1A5,\n\t30273 - 11905: 0xAF9E,\n\t30274 - 11905: 0xAF9F,\n\t30275 - 11905: 0xF1AA,\n\t30276 - 11905: 0xAFA0,\n\t30277 - 11905: 0xB040,\n\t30278 - 11905: 0xB041,\n\t30279 - 11905: 0xB042,\n\t30280 - 11905: 0xB043,\n\t30281 - 11905: 0xB044,\n\t30282 - 11905: 0xB045,\n\t30283 - 11905: 0xB046,\n\t30284 - 11905: 0xB0A9,\n\t30285 - 11905: 0xF1AD,\n\t30286 - 11905: 0xB047,\n\t30287 - 11905: 0xB048,\n\t30288 - 11905: 0xB049,\n\t30289 - 11905: 0xB04A,\n\t30290 - 11905: 0xB04B,\n\t30291 - 11905: 0xB04C,\n\t30292 - 11905: 0xF1AF,\n\t30293 - 11905: 0xB04D,\n\t30294 - 11905: 0xF1B1,\n\t30295 - 11905: 0xB04E,\n\t30296 - 11905: 0xB04F,\n\t30297 - 11905: 0xB050,\n\t30298 - 11905: 0xB051,\n\t30299 - 11905: 0xB052,\n\t30300 - 11905: 0xF1B0,\n\t30301 - 11905: 0xB053,\n\t30302 - 11905: 0xF1AE,\n\t30303 - 11905: 0xB054,\n\t30304 - 11905: 0xB055,\n\t30305 - 11905: 0xB056,\n\t30306 - 11905: 0xB057,\n\t30307 - 11905: 0xD1A2,\n\t30308 - 11905: 0xB058,\n\t30309 - 11905: 0xB059,\n\t30310 - 11905: 0xB05A,\n\t30311 - 11905: 0xB05B,\n\t30312 - 11905: 0xB05C,\n\t30313 - 11905: 0xB05D,\n\t30314 - 11905: 0xB05E,\n\t30315 - 11905: 0xF1B2,\n\t30316 - 11905: 0xB05F,\n\t30317 - 11905: 0xB060,\n\t30318 - 11905: 0xB061,\n\t30319 - 11905: 0xF1B3,\n\t30320 - 11905: 0xB062,\n\t30321 - 11905: 0xB063,\n\t30322 - 11905: 0xB064,\n\t30323 - 11905: 0xB065,\n\t30324 - 11905: 0xB066,\n\t30325 - 11905: 0xB067,\n\t30326 - 11905: 0xB068,\n\t30327 - 11905: 0xB069,\n\t30328 - 11905: 0xB9EF,\n\t30329 - 11905: 0xB06A,\n\t30330 - 11905: 0xB06B,\n\t30331 - 11905: 0xB5C7,\n\t30332 - 11905: 0xB06C,\n\t30333 - 11905: 0xB0D7,\n\t30334 - 11905: 0xB0D9,\n\t30335 - 11905: 0xB06D,\n\t30336 - 11905: 0xB06E,\n\t30337 - 11905: 0xB06F,\n\t30338 - 11905: 0xD4ED,\n\t30339 - 11905: 0xB070,\n\t30340 - 11905: 0xB5C4,\n\t30341 - 11905: 0xB071,\n\t30342 - 11905: 0xBDD4,\n\t30343 - 11905: 0xBBCA,\n\t30344 - 11905: 0xF0A7,\n\t30345 - 11905: 0xB072,\n\t30346 - 11905: 0xB073,\n\t30347 - 11905: 0xB8DE,\n\t30348 - 11905: 0xB074,\n\t30349 - 11905: 0xB075,\n\t30350 - 11905: 0xF0A8,\n\t30351 - 11905: 0xB076,\n\t30352 - 11905: 0xB077,\n\t30353 - 11905: 0xB0A8,\n\t30354 - 11905: 0xB078,\n\t30355 - 11905: 0xF0A9,\n\t30356 - 11905: 0xB079,\n\t30357 - 11905: 0xB07A,\n\t30358 - 11905: 0xCDEE,\n\t30359 - 11905: 0xB07B,\n\t30360 - 11905: 0xB07C,\n\t30361 - 11905: 0xF0AA,\n\t30362 - 11905: 0xB07D,\n\t30363 - 11905: 0xB07E,\n\t30364 - 11905: 0xB080,\n\t30365 - 11905: 0xB081,\n\t30366 - 11905: 0xB082,\n\t30367 - 11905: 0xB083,\n\t30368 - 11905: 0xB084,\n\t30369 - 11905: 0xB085,\n\t30370 - 11905: 0xB086,\n\t30371 - 11905: 0xB087,\n\t30372 - 11905: 0xF0AB,\n\t30373 - 11905: 0xB088,\n\t30374 - 11905: 0xB089,\n\t30375 - 11905: 0xB08A,\n\t30376 - 11905: 0xB08B,\n\t30377 - 11905: 0xB08C,\n\t30378 - 11905: 0xB08D,\n\t30379 - 11905: 0xB08E,\n\t30380 - 11905: 0xB08F,\n\t30381 - 11905: 0xB090,\n\t30382 - 11905: 0xC6A4,\n\t30383 - 11905: 0xB091,\n\t30384 - 11905: 0xB092,\n\t30385 - 11905: 0xD6E5,\n\t30386 - 11905: 0xF1E4,\n\t30387 - 11905: 0xB093,\n\t30388 - 11905: 0xF1E5,\n\t30389 - 11905: 0xB094,\n\t30390 - 11905: 0xB095,\n\t30391 - 11905: 0xB096,\n\t30392 - 11905: 0xB097,\n\t30393 - 11905: 0xB098,\n\t30394 - 11905: 0xB099,\n\t30395 - 11905: 0xB09A,\n\t30396 - 11905: 0xB09B,\n\t30397 - 11905: 0xB09C,\n\t30398 - 11905: 0xB09D,\n\t30399 - 11905: 0xC3F3,\n\t30400 - 11905: 0xB09E,\n\t30401 - 11905: 0xB09F,\n\t30402 - 11905: 0xD3DB,\n\t30403 - 11905: 0xB0A0,\n\t30404 - 11905: 0xB140,\n\t30405 - 11905: 0xD6D1,\n\t30406 - 11905: 0xC5E8,\n\t30407 - 11905: 0xB141,\n\t30408 - 11905: 0xD3AF,\n\t30409 - 11905: 0xB142,\n\t30410 - 11905: 0xD2E6,\n\t30411 - 11905: 0xB143,\n\t30412 - 11905: 0xB144,\n\t30413 - 11905: 0xEEC1,\n\t30414 - 11905: 0xB0BB,\n\t30415 - 11905: 0xD5B5,\n\t30416 - 11905: 0xD1CE,\n\t30417 - 11905: 0xBCE0,\n\t30418 - 11905: 0xBAD0,\n\t30419 - 11905: 0xB145,\n\t30420 - 11905: 0xBFF8,\n\t30421 - 11905: 0xB146,\n\t30422 - 11905: 0xB8C7,\n\t30423 - 11905: 0xB5C1,\n\t30424 - 11905: 0xC5CC,\n\t30425 - 11905: 0xB147,\n\t30426 - 11905: 0xB148,\n\t30427 - 11905: 0xCAA2,\n\t30428 - 11905: 0xB149,\n\t30429 - 11905: 0xB14A,\n\t30430 - 11905: 0xB14B,\n\t30431 - 11905: 0xC3CB,\n\t30432 - 11905: 0xB14C,\n\t30433 - 11905: 0xB14D,\n\t30434 - 11905: 0xB14E,\n\t30435 - 11905: 0xB14F,\n\t30436 - 11905: 0xB150,\n\t30437 - 11905: 0xEEC2,\n\t30438 - 11905: 0xB151,\n\t30439 - 11905: 0xB152,\n\t30440 - 11905: 0xB153,\n\t30441 - 11905: 0xB154,\n\t30442 - 11905: 0xB155,\n\t30443 - 11905: 0xB156,\n\t30444 - 11905: 0xB157,\n\t30445 - 11905: 0xB158,\n\t30446 - 11905: 0xC4BF,\n\t30447 - 11905: 0xB6A2,\n\t30448 - 11905: 0xB159,\n\t30449 - 11905: 0xEDEC,\n\t30450 - 11905: 0xC3A4,\n\t30451 - 11905: 0xB15A,\n\t30452 - 11905: 0xD6B1,\n\t30453 - 11905: 0xB15B,\n\t30454 - 11905: 0xB15C,\n\t30455 - 11905: 0xB15D,\n\t30456 - 11905: 0xCFE0,\n\t30457 - 11905: 0xEDEF,\n\t30458 - 11905: 0xB15E,\n\t30459 - 11905: 0xB15F,\n\t30460 - 11905: 0xC5CE,\n\t30461 - 11905: 0xB160,\n\t30462 - 11905: 0xB6DC,\n\t30463 - 11905: 0xB161,\n\t30464 - 11905: 0xB162,\n\t30465 - 11905: 0xCAA1,\n\t30466 - 11905: 0xB163,\n\t30467 - 11905: 0xB164,\n\t30468 - 11905: 0xEDED,\n\t30469 - 11905: 0xB165,\n\t30470 - 11905: 0xB166,\n\t30471 - 11905: 0xEDF0,\n\t30472 - 11905: 0xEDF1,\n\t30473 - 11905: 0xC3BC,\n\t30474 - 11905: 0xB167,\n\t30475 - 11905: 0xBFB4,\n\t30476 - 11905: 0xB168,\n\t30477 - 11905: 0xEDEE,\n\t30478 - 11905: 0xB169,\n\t30479 - 11905: 0xB16A,\n\t30480 - 11905: 0xB16B,\n\t30481 - 11905: 0xB16C,\n\t30482 - 11905: 0xB16D,\n\t30483 - 11905: 0xB16E,\n\t30484 - 11905: 0xB16F,\n\t30485 - 11905: 0xB170,\n\t30486 - 11905: 0xB171,\n\t30487 - 11905: 0xB172,\n\t30488 - 11905: 0xB173,\n\t30489 - 11905: 0xEDF4,\n\t30490 - 11905: 0xEDF2,\n\t30491 - 11905: 0xB174,\n\t30492 - 11905: 0xB175,\n\t30493 - 11905: 0xB176,\n\t30494 - 11905: 0xB177,\n\t30495 - 11905: 0xD5E6,\n\t30496 - 11905: 0xC3DF,\n\t30497 - 11905: 0xB178,\n\t30498 - 11905: 0xEDF3,\n\t30499 - 11905: 0xB179,\n\t30500 - 11905: 0xB17A,\n\t30501 - 11905: 0xB17B,\n\t30502 - 11905: 0xEDF6,\n\t30503 - 11905: 0xB17C,\n\t30504 - 11905: 0xD5A3,\n\t30505 - 11905: 0xD1A3,\n\t30506 - 11905: 0xB17D,\n\t30507 - 11905: 0xB17E,\n\t30508 - 11905: 0xB180,\n\t30509 - 11905: 0xEDF5,\n\t30510 - 11905: 0xB181,\n\t30511 - 11905: 0xC3D0,\n\t30512 - 11905: 0xB182,\n\t30513 - 11905: 0xB183,\n\t30514 - 11905: 0xB184,\n\t30515 - 11905: 0xB185,\n\t30516 - 11905: 0xB186,\n\t30517 - 11905: 0xEDF7,\n\t30518 - 11905: 0xBFF4,\n\t30519 - 11905: 0xBEEC,\n\t30520 - 11905: 0xEDF8,\n\t30521 - 11905: 0xB187,\n\t30522 - 11905: 0xCCF7,\n\t30523 - 11905: 0xB188,\n\t30524 - 11905: 0xD1DB,\n\t30525 - 11905: 0xB189,\n\t30526 - 11905: 0xB18A,\n\t30527 - 11905: 0xB18B,\n\t30528 - 11905: 0xD7C5,\n\t30529 - 11905: 0xD5F6,\n\t30530 - 11905: 0xB18C,\n\t30531 - 11905: 0xEDFC,\n\t30532 - 11905: 0xB18D,\n\t30533 - 11905: 0xB18E,\n\t30534 - 11905: 0xB18F,\n\t30535 - 11905: 0xEDFB,\n\t30536 - 11905: 0xB190,\n\t30537 - 11905: 0xB191,\n\t30538 - 11905: 0xB192,\n\t30539 - 11905: 0xB193,\n\t30540 - 11905: 0xB194,\n\t30541 - 11905: 0xB195,\n\t30542 - 11905: 0xB196,\n\t30543 - 11905: 0xB197,\n\t30544 - 11905: 0xEDF9,\n\t30545 - 11905: 0xEDFA,\n\t30546 - 11905: 0xB198,\n\t30547 - 11905: 0xB199,\n\t30548 - 11905: 0xB19A,\n\t30549 - 11905: 0xB19B,\n\t30550 - 11905: 0xB19C,\n\t30551 - 11905: 0xB19D,\n\t30552 - 11905: 0xB19E,\n\t30553 - 11905: 0xB19F,\n\t30554 - 11905: 0xEDFD,\n\t30555 - 11905: 0xBEA6,\n\t30556 - 11905: 0xB1A0,\n\t30557 - 11905: 0xB240,\n\t30558 - 11905: 0xB241,\n\t30559 - 11905: 0xB242,\n\t30560 - 11905: 0xB243,\n\t30561 - 11905: 0xCBAF,\n\t30562 - 11905: 0xEEA1,\n\t30563 - 11905: 0xB6BD,\n\t30564 - 11905: 0xB244,\n\t30565 - 11905: 0xEEA2,\n\t30566 - 11905: 0xC4C0,\n\t30567 - 11905: 0xB245,\n\t30568 - 11905: 0xEDFE,\n\t30569 - 11905: 0xB246,\n\t30570 - 11905: 0xB247,\n\t30571 - 11905: 0xBDDE,\n\t30572 - 11905: 0xB2C7,\n\t30573 - 11905: 0xB248,\n\t30574 - 11905: 0xB249,\n\t30575 - 11905: 0xB24A,\n\t30576 - 11905: 0xB24B,\n\t30577 - 11905: 0xB24C,\n\t30578 - 11905: 0xB24D,\n\t30579 - 11905: 0xB24E,\n\t30580 - 11905: 0xB24F,\n\t30581 - 11905: 0xB250,\n\t30582 - 11905: 0xB251,\n\t30583 - 11905: 0xB252,\n\t30584 - 11905: 0xB253,\n\t30585 - 11905: 0xB6C3,\n\t30586 - 11905: 0xB254,\n\t30587 - 11905: 0xB255,\n\t30588 - 11905: 0xB256,\n\t30589 - 11905: 0xEEA5,\n\t30590 - 11905: 0xD8BA,\n\t30591 - 11905: 0xEEA3,\n\t30592 - 11905: 0xEEA6,\n\t30593 - 11905: 0xB257,\n\t30594 - 11905: 0xB258,\n\t30595 - 11905: 0xB259,\n\t30596 - 11905: 0xC3E9,\n\t30597 - 11905: 0xB3F2,\n\t30598 - 11905: 0xB25A,\n\t30599 - 11905: 0xB25B,\n\t30600 - 11905: 0xB25C,\n\t30601 - 11905: 0xB25D,\n\t30602 - 11905: 0xB25E,\n\t30603 - 11905: 0xB25F,\n\t30604 - 11905: 0xEEA7,\n\t30605 - 11905: 0xEEA4,\n\t30606 - 11905: 0xCFB9,\n\t30607 - 11905: 0xB260,\n\t30608 - 11905: 0xB261,\n\t30609 - 11905: 0xEEA8,\n\t30610 - 11905: 0xC2F7,\n\t30611 - 11905: 0xB262,\n\t30612 - 11905: 0xB263,\n\t30613 - 11905: 0xB264,\n\t30614 - 11905: 0xB265,\n\t30615 - 11905: 0xB266,\n\t30616 - 11905: 0xB267,\n\t30617 - 11905: 0xB268,\n\t30618 - 11905: 0xB269,\n\t30619 - 11905: 0xB26A,\n\t30620 - 11905: 0xB26B,\n\t30621 - 11905: 0xB26C,\n\t30622 - 11905: 0xB26D,\n\t30623 - 11905: 0xEEA9,\n\t30624 - 11905: 0xEEAA,\n\t30625 - 11905: 0xB26E,\n\t30626 - 11905: 0xDEAB,\n\t30627 - 11905: 0xB26F,\n\t30628 - 11905: 0xB270,\n\t30629 - 11905: 0xC6B3,\n\t30630 - 11905: 0xB271,\n\t30631 - 11905: 0xC7C6,\n\t30632 - 11905: 0xB272,\n\t30633 - 11905: 0xD6F5,\n\t30634 - 11905: 0xB5C9,\n\t30635 - 11905: 0xB273,\n\t30636 - 11905: 0xCBB2,\n\t30637 - 11905: 0xB274,\n\t30638 - 11905: 0xB275,\n\t30639 - 11905: 0xB276,\n\t30640 - 11905: 0xEEAB,\n\t30641 - 11905: 0xB277,\n\t30642 - 11905: 0xB278,\n\t30643 - 11905: 0xCDAB,\n\t30644 - 11905: 0xB279,\n\t30645 - 11905: 0xEEAC,\n\t30646 - 11905: 0xB27A,\n\t30647 - 11905: 0xB27B,\n\t30648 - 11905: 0xB27C,\n\t30649 - 11905: 0xB27D,\n\t30650 - 11905: 0xB27E,\n\t30651 - 11905: 0xD5B0,\n\t30652 - 11905: 0xB280,\n\t30653 - 11905: 0xEEAD,\n\t30654 - 11905: 0xB281,\n\t30655 - 11905: 0xF6C4,\n\t30656 - 11905: 0xB282,\n\t30657 - 11905: 0xB283,\n\t30658 - 11905: 0xB284,\n\t30659 - 11905: 0xB285,\n\t30660 - 11905: 0xB286,\n\t30661 - 11905: 0xB287,\n\t30662 - 11905: 0xB288,\n\t30663 - 11905: 0xB289,\n\t30664 - 11905: 0xB28A,\n\t30665 - 11905: 0xB28B,\n\t30666 - 11905: 0xB28C,\n\t30667 - 11905: 0xB28D,\n\t30668 - 11905: 0xB28E,\n\t30669 - 11905: 0xDBC7,\n\t30670 - 11905: 0xB28F,\n\t30671 - 11905: 0xB290,\n\t30672 - 11905: 0xB291,\n\t30673 - 11905: 0xB292,\n\t30674 - 11905: 0xB293,\n\t30675 - 11905: 0xB294,\n\t30676 - 11905: 0xB295,\n\t30677 - 11905: 0xB296,\n\t30678 - 11905: 0xB297,\n\t30679 - 11905: 0xB4A3,\n\t30680 - 11905: 0xB298,\n\t30681 - 11905: 0xB299,\n\t30682 - 11905: 0xB29A,\n\t30683 - 11905: 0xC3AC,\n\t30684 - 11905: 0xF1E6,\n\t30685 - 11905: 0xB29B,\n\t30686 - 11905: 0xB29C,\n\t30687 - 11905: 0xB29D,\n\t30688 - 11905: 0xB29E,\n\t30689 - 11905: 0xB29F,\n\t30690 - 11905: 0xCAB8,\n\t30691 - 11905: 0xD2D3,\n\t30692 - 11905: 0xB2A0,\n\t30693 - 11905: 0xD6AA,\n\t30694 - 11905: 0xB340,\n\t30695 - 11905: 0xEFF2,\n\t30696 - 11905: 0xB341,\n\t30697 - 11905: 0xBED8,\n\t30698 - 11905: 0xB342,\n\t30699 - 11905: 0xBDC3,\n\t30700 - 11905: 0xEFF3,\n\t30701 - 11905: 0xB6CC,\n\t30702 - 11905: 0xB0AB,\n\t30703 - 11905: 0xB343,\n\t30704 - 11905: 0xB344,\n\t30705 - 11905: 0xB345,\n\t30706 - 11905: 0xB346,\n\t30707 - 11905: 0xCAAF,\n\t30708 - 11905: 0xB347,\n\t30709 - 11905: 0xB348,\n\t30710 - 11905: 0xEDB6,\n\t30711 - 11905: 0xB349,\n\t30712 - 11905: 0xEDB7,\n\t30713 - 11905: 0xB34A,\n\t30714 - 11905: 0xB34B,\n\t30715 - 11905: 0xB34C,\n\t30716 - 11905: 0xB34D,\n\t30717 - 11905: 0xCEF9,\n\t30718 - 11905: 0xB7AF,\n\t30719 - 11905: 0xBFF3,\n\t30720 - 11905: 0xEDB8,\n\t30721 - 11905: 0xC2EB,\n\t30722 - 11905: 0xC9B0,\n\t30723 - 11905: 0xB34E,\n\t30724 - 11905: 0xB34F,\n\t30725 - 11905: 0xB350,\n\t30726 - 11905: 0xB351,\n\t30727 - 11905: 0xB352,\n\t30728 - 11905: 0xB353,\n\t30729 - 11905: 0xEDB9,\n\t30730 - 11905: 0xB354,\n\t30731 - 11905: 0xB355,\n\t30732 - 11905: 0xC6F6,\n\t30733 - 11905: 0xBFB3,\n\t30734 - 11905: 0xB356,\n\t30735 - 11905: 0xB357,\n\t30736 - 11905: 0xB358,\n\t30737 - 11905: 0xEDBC,\n\t30738 - 11905: 0xC5F8,\n\t30739 - 11905: 0xB359,\n\t30740 - 11905: 0xD1D0,\n\t30741 - 11905: 0xB35A,\n\t30742 - 11905: 0xD7A9,\n\t30743 - 11905: 0xEDBA,\n\t30744 - 11905: 0xEDBB,\n\t30745 - 11905: 0xB35B,\n\t30746 - 11905: 0xD1E2,\n\t30747 - 11905: 0xB35C,\n\t30748 - 11905: 0xEDBF,\n\t30749 - 11905: 0xEDC0,\n\t30750 - 11905: 0xB35D,\n\t30751 - 11905: 0xEDC4,\n\t30752 - 11905: 0xB35E,\n\t30753 - 11905: 0xB35F,\n\t30754 - 11905: 0xB360,\n\t30755 - 11905: 0xEDC8,\n\t30756 - 11905: 0xB361,\n\t30757 - 11905: 0xEDC6,\n\t30758 - 11905: 0xEDCE,\n\t30759 - 11905: 0xD5E8,\n\t30760 - 11905: 0xB362,\n\t30761 - 11905: 0xEDC9,\n\t30762 - 11905: 0xB363,\n\t30763 - 11905: 0xB364,\n\t30764 - 11905: 0xEDC7,\n\t30765 - 11905: 0xEDBE,\n\t30766 - 11905: 0xB365,\n\t30767 - 11905: 0xB366,\n\t30768 - 11905: 0xC5E9,\n\t30769 - 11905: 0xB367,\n\t30770 - 11905: 0xB368,\n\t30771 - 11905: 0xB369,\n\t30772 - 11905: 0xC6C6,\n\t30773 - 11905: 0xB36A,\n\t30774 - 11905: 0xB36B,\n\t30775 - 11905: 0xC9E9,\n\t30776 - 11905: 0xD4D2,\n\t30777 - 11905: 0xEDC1,\n\t30778 - 11905: 0xEDC2,\n\t30779 - 11905: 0xEDC3,\n\t30780 - 11905: 0xEDC5,\n\t30781 - 11905: 0xB36C,\n\t30782 - 11905: 0xC0F9,\n\t30783 - 11905: 0xB36D,\n\t30784 - 11905: 0xB4A1,\n\t30785 - 11905: 0xB36E,\n\t30786 - 11905: 0xB36F,\n\t30787 - 11905: 0xB370,\n\t30788 - 11905: 0xB371,\n\t30789 - 11905: 0xB9E8,\n\t30790 - 11905: 0xB372,\n\t30791 - 11905: 0xEDD0,\n\t30792 - 11905: 0xB373,\n\t30793 - 11905: 0xB374,\n\t30794 - 11905: 0xB375,\n\t30795 - 11905: 0xB376,\n\t30796 - 11905: 0xEDD1,\n\t30797 - 11905: 0xB377,\n\t30798 - 11905: 0xEDCA,\n\t30799 - 11905: 0xB378,\n\t30800 - 11905: 0xEDCF,\n\t30801 - 11905: 0xB379,\n\t30802 - 11905: 0xCEF8,\n\t30803 - 11905: 0xB37A,\n\t30804 - 11905: 0xB37B,\n\t30805 - 11905: 0xCBB6,\n\t30806 - 11905: 0xEDCC,\n\t30807 - 11905: 0xEDCD,\n\t30808 - 11905: 0xB37C,\n\t30809 - 11905: 0xB37D,\n\t30810 - 11905: 0xB37E,\n\t30811 - 11905: 0xB380,\n\t30812 - 11905: 0xB381,\n\t30813 - 11905: 0xCFF5,\n\t30814 - 11905: 0xB382,\n\t30815 - 11905: 0xB383,\n\t30816 - 11905: 0xB384,\n\t30817 - 11905: 0xB385,\n\t30818 - 11905: 0xB386,\n\t30819 - 11905: 0xB387,\n\t30820 - 11905: 0xB388,\n\t30821 - 11905: 0xB389,\n\t30822 - 11905: 0xB38A,\n\t30823 - 11905: 0xB38B,\n\t30824 - 11905: 0xB38C,\n\t30825 - 11905: 0xB38D,\n\t30826 - 11905: 0xEDD2,\n\t30827 - 11905: 0xC1F2,\n\t30828 - 11905: 0xD3B2,\n\t30829 - 11905: 0xEDCB,\n\t30830 - 11905: 0xC8B7,\n\t30831 - 11905: 0xB38E,\n\t30832 - 11905: 0xB38F,\n\t30833 - 11905: 0xB390,\n\t30834 - 11905: 0xB391,\n\t30835 - 11905: 0xB392,\n\t30836 - 11905: 0xB393,\n\t30837 - 11905: 0xB394,\n\t30838 - 11905: 0xB395,\n\t30839 - 11905: 0xBCEF,\n\t30840 - 11905: 0xB396,\n\t30841 - 11905: 0xB397,\n\t30842 - 11905: 0xB398,\n\t30843 - 11905: 0xB399,\n\t30844 - 11905: 0xC5F0,\n\t30845 - 11905: 0xB39A,\n\t30846 - 11905: 0xB39B,\n\t30847 - 11905: 0xB39C,\n\t30848 - 11905: 0xB39D,\n\t30849 - 11905: 0xB39E,\n\t30850 - 11905: 0xB39F,\n\t30851 - 11905: 0xB3A0,\n\t30852 - 11905: 0xB440,\n\t30853 - 11905: 0xB441,\n\t30854 - 11905: 0xB442,\n\t30855 - 11905: 0xEDD6,\n\t30856 - 11905: 0xB443,\n\t30857 - 11905: 0xB5EF,\n\t30858 - 11905: 0xB444,\n\t30859 - 11905: 0xB445,\n\t30860 - 11905: 0xC2B5,\n\t30861 - 11905: 0xB0AD,\n\t30862 - 11905: 0xCBE9,\n\t30863 - 11905: 0xB446,\n\t30864 - 11905: 0xB447,\n\t30865 - 11905: 0xB1AE,\n\t30866 - 11905: 0xB448,\n\t30867 - 11905: 0xEDD4,\n\t30868 - 11905: 0xB449,\n\t30869 - 11905: 0xB44A,\n\t30870 - 11905: 0xB44B,\n\t30871 - 11905: 0xCDEB,\n\t30872 - 11905: 0xB5E2,\n\t30873 - 11905: 0xB44C,\n\t30874 - 11905: 0xEDD5,\n\t30875 - 11905: 0xEDD3,\n\t30876 - 11905: 0xEDD7,\n\t30877 - 11905: 0xB44D,\n\t30878 - 11905: 0xB44E,\n\t30879 - 11905: 0xB5FA,\n\t30880 - 11905: 0xB44F,\n\t30881 - 11905: 0xEDD8,\n\t30882 - 11905: 0xB450,\n\t30883 - 11905: 0xEDD9,\n\t30884 - 11905: 0xB451,\n\t30885 - 11905: 0xEDDC,\n\t30886 - 11905: 0xB452,\n\t30887 - 11905: 0xB1CC,\n\t30888 - 11905: 0xB453,\n\t30889 - 11905: 0xB454,\n\t30890 - 11905: 0xB455,\n\t30891 - 11905: 0xB456,\n\t30892 - 11905: 0xB457,\n\t30893 - 11905: 0xB458,\n\t30894 - 11905: 0xB459,\n\t30895 - 11905: 0xB45A,\n\t30896 - 11905: 0xC5F6,\n\t30897 - 11905: 0xBCEE,\n\t30898 - 11905: 0xEDDA,\n\t30899 - 11905: 0xCCBC,\n\t30900 - 11905: 0xB2EA,\n\t30901 - 11905: 0xB45B,\n\t30902 - 11905: 0xB45C,\n\t30903 - 11905: 0xB45D,\n\t30904 - 11905: 0xB45E,\n\t30905 - 11905: 0xEDDB,\n\t30906 - 11905: 0xB45F,\n\t30907 - 11905: 0xB460,\n\t30908 - 11905: 0xB461,\n\t30909 - 11905: 0xB462,\n\t30910 - 11905: 0xC4EB,\n\t30911 - 11905: 0xB463,\n\t30912 - 11905: 0xB464,\n\t30913 - 11905: 0xB4C5,\n\t30914 - 11905: 0xB465,\n\t30915 - 11905: 0xB466,\n\t30916 - 11905: 0xB467,\n\t30917 - 11905: 0xB0F5,\n\t30918 - 11905: 0xB468,\n\t30919 - 11905: 0xB469,\n\t30920 - 11905: 0xB46A,\n\t30921 - 11905: 0xEDDF,\n\t30922 - 11905: 0xC0DA,\n\t30923 - 11905: 0xB4E8,\n\t30924 - 11905: 0xB46B,\n\t30925 - 11905: 0xB46C,\n\t30926 - 11905: 0xB46D,\n\t30927 - 11905: 0xB46E,\n\t30928 - 11905: 0xC5CD,\n\t30929 - 11905: 0xB46F,\n\t30930 - 11905: 0xB470,\n\t30931 - 11905: 0xB471,\n\t30932 - 11905: 0xEDDD,\n\t30933 - 11905: 0xBFC4,\n\t30934 - 11905: 0xB472,\n\t30935 - 11905: 0xB473,\n\t30936 - 11905: 0xB474,\n\t30937 - 11905: 0xEDDE,\n\t30938 - 11905: 0xB475,\n\t30939 - 11905: 0xB476,\n\t30940 - 11905: 0xB477,\n\t30941 - 11905: 0xB478,\n\t30942 - 11905: 0xB479,\n\t30943 - 11905: 0xB47A,\n\t30944 - 11905: 0xB47B,\n\t30945 - 11905: 0xB47C,\n\t30946 - 11905: 0xB47D,\n\t30947 - 11905: 0xB47E,\n\t30948 - 11905: 0xB480,\n\t30949 - 11905: 0xB481,\n\t30950 - 11905: 0xB482,\n\t30951 - 11905: 0xB483,\n\t30952 - 11905: 0xC4A5,\n\t30953 - 11905: 0xB484,\n\t30954 - 11905: 0xB485,\n\t30955 - 11905: 0xB486,\n\t30956 - 11905: 0xEDE0,\n\t30957 - 11905: 0xB487,\n\t30958 - 11905: 0xB488,\n\t30959 - 11905: 0xB489,\n\t30960 - 11905: 0xB48A,\n\t30961 - 11905: 0xB48B,\n\t30962 - 11905: 0xEDE1,\n\t30963 - 11905: 0xB48C,\n\t30964 - 11905: 0xEDE3,\n\t30965 - 11905: 0xB48D,\n\t30966 - 11905: 0xB48E,\n\t30967 - 11905: 0xC1D7,\n\t30968 - 11905: 0xB48F,\n\t30969 - 11905: 0xB490,\n\t30970 - 11905: 0xBBC7,\n\t30971 - 11905: 0xB491,\n\t30972 - 11905: 0xB492,\n\t30973 - 11905: 0xB493,\n\t30974 - 11905: 0xB494,\n\t30975 - 11905: 0xB495,\n\t30976 - 11905: 0xB496,\n\t30977 - 11905: 0xBDB8,\n\t30978 - 11905: 0xB497,\n\t30979 - 11905: 0xB498,\n\t30980 - 11905: 0xB499,\n\t30981 - 11905: 0xEDE2,\n\t30982 - 11905: 0xB49A,\n\t30983 - 11905: 0xB49B,\n\t30984 - 11905: 0xB49C,\n\t30985 - 11905: 0xB49D,\n\t30986 - 11905: 0xB49E,\n\t30987 - 11905: 0xB49F,\n\t30988 - 11905: 0xB4A0,\n\t30989 - 11905: 0xB540,\n\t30990 - 11905: 0xB541,\n\t30991 - 11905: 0xB542,\n\t30992 - 11905: 0xB543,\n\t30993 - 11905: 0xB544,\n\t30994 - 11905: 0xB545,\n\t30995 - 11905: 0xEDE4,\n\t30996 - 11905: 0xB546,\n\t30997 - 11905: 0xB547,\n\t30998 - 11905: 0xB548,\n\t30999 - 11905: 0xB549,\n\t31000 - 11905: 0xB54A,\n\t31001 - 11905: 0xB54B,\n\t31002 - 11905: 0xB54C,\n\t31003 - 11905: 0xB54D,\n\t31004 - 11905: 0xB54E,\n\t31005 - 11905: 0xB54F,\n\t31006 - 11905: 0xEDE6,\n\t31007 - 11905: 0xB550,\n\t31008 - 11905: 0xB551,\n\t31009 - 11905: 0xB552,\n\t31010 - 11905: 0xB553,\n\t31011 - 11905: 0xB554,\n\t31012 - 11905: 0xEDE5,\n\t31013 - 11905: 0xB555,\n\t31014 - 11905: 0xB556,\n\t31015 - 11905: 0xB557,\n\t31016 - 11905: 0xB558,\n\t31017 - 11905: 0xB559,\n\t31018 - 11905: 0xB55A,\n\t31019 - 11905: 0xB55B,\n\t31020 - 11905: 0xB55C,\n\t31021 - 11905: 0xB55D,\n\t31022 - 11905: 0xB55E,\n\t31023 - 11905: 0xB55F,\n\t31024 - 11905: 0xB560,\n\t31025 - 11905: 0xB561,\n\t31026 - 11905: 0xB562,\n\t31027 - 11905: 0xB563,\n\t31028 - 11905: 0xEDE7,\n\t31029 - 11905: 0xB564,\n\t31030 - 11905: 0xB565,\n\t31031 - 11905: 0xB566,\n\t31032 - 11905: 0xB567,\n\t31033 - 11905: 0xB568,\n\t31034 - 11905: 0xCABE,\n\t31035 - 11905: 0xECEA,\n\t31036 - 11905: 0xC0F1,\n\t31037 - 11905: 0xB569,\n\t31038 - 11905: 0xC9E7,\n\t31039 - 11905: 0xB56A,\n\t31040 - 11905: 0xECEB,\n\t31041 - 11905: 0xC6EE,\n\t31042 - 11905: 0xB56B,\n\t31043 - 11905: 0xB56C,\n\t31044 - 11905: 0xB56D,\n\t31045 - 11905: 0xB56E,\n\t31046 - 11905: 0xECEC,\n\t31047 - 11905: 0xB56F,\n\t31048 - 11905: 0xC6ED,\n\t31049 - 11905: 0xECED,\n\t31050 - 11905: 0xB570,\n\t31051 - 11905: 0xB571,\n\t31052 - 11905: 0xB572,\n\t31053 - 11905: 0xB573,\n\t31054 - 11905: 0xB574,\n\t31055 - 11905: 0xB575,\n\t31056 - 11905: 0xB576,\n\t31057 - 11905: 0xB577,\n\t31058 - 11905: 0xB578,\n\t31059 - 11905: 0xECF0,\n\t31060 - 11905: 0xB579,\n\t31061 - 11905: 0xB57A,\n\t31062 - 11905: 0xD7E6,\n\t31063 - 11905: 0xECF3,\n\t31064 - 11905: 0xB57B,\n\t31065 - 11905: 0xB57C,\n\t31066 - 11905: 0xECF1,\n\t31067 - 11905: 0xECEE,\n\t31068 - 11905: 0xECEF,\n\t31069 - 11905: 0xD7A3,\n\t31070 - 11905: 0xC9F1,\n\t31071 - 11905: 0xCBEE,\n\t31072 - 11905: 0xECF4,\n\t31073 - 11905: 0xB57D,\n\t31074 - 11905: 0xECF2,\n\t31075 - 11905: 0xB57E,\n\t31076 - 11905: 0xB580,\n\t31077 - 11905: 0xCFE9,\n\t31078 - 11905: 0xB581,\n\t31079 - 11905: 0xECF6,\n\t31080 - 11905: 0xC6B1,\n\t31081 - 11905: 0xB582,\n\t31082 - 11905: 0xB583,\n\t31083 - 11905: 0xB584,\n\t31084 - 11905: 0xB585,\n\t31085 - 11905: 0xBCC0,\n\t31086 - 11905: 0xB586,\n\t31087 - 11905: 0xECF5,\n\t31088 - 11905: 0xB587,\n\t31089 - 11905: 0xB588,\n\t31090 - 11905: 0xB589,\n\t31091 - 11905: 0xB58A,\n\t31092 - 11905: 0xB58B,\n\t31093 - 11905: 0xB58C,\n\t31094 - 11905: 0xB58D,\n\t31095 - 11905: 0xB5BB,\n\t31096 - 11905: 0xBBF6,\n\t31097 - 11905: 0xB58E,\n\t31098 - 11905: 0xECF7,\n\t31099 - 11905: 0xB58F,\n\t31100 - 11905: 0xB590,\n\t31101 - 11905: 0xB591,\n\t31102 - 11905: 0xB592,\n\t31103 - 11905: 0xB593,\n\t31104 - 11905: 0xD9F7,\n\t31105 - 11905: 0xBDFB,\n\t31106 - 11905: 0xB594,\n\t31107 - 11905: 0xB595,\n\t31108 - 11905: 0xC2BB,\n\t31109 - 11905: 0xECF8,\n\t31110 - 11905: 0xB596,\n\t31111 - 11905: 0xB597,\n\t31112 - 11905: 0xB598,\n\t31113 - 11905: 0xB599,\n\t31114 - 11905: 0xECF9,\n\t31115 - 11905: 0xB59A,\n\t31116 - 11905: 0xB59B,\n\t31117 - 11905: 0xB59C,\n\t31118 - 11905: 0xB59D,\n\t31119 - 11905: 0xB8A3,\n\t31120 - 11905: 0xB59E,\n\t31121 - 11905: 0xB59F,\n\t31122 - 11905: 0xB5A0,\n\t31123 - 11905: 0xB640,\n\t31124 - 11905: 0xB641,\n\t31125 - 11905: 0xB642,\n\t31126 - 11905: 0xB643,\n\t31127 - 11905: 0xB644,\n\t31128 - 11905: 0xB645,\n\t31129 - 11905: 0xB646,\n\t31130 - 11905: 0xECFA,\n\t31131 - 11905: 0xB647,\n\t31132 - 11905: 0xB648,\n\t31133 - 11905: 0xB649,\n\t31134 - 11905: 0xB64A,\n\t31135 - 11905: 0xB64B,\n\t31136 - 11905: 0xB64C,\n\t31137 - 11905: 0xB64D,\n\t31138 - 11905: 0xB64E,\n\t31139 - 11905: 0xB64F,\n\t31140 - 11905: 0xB650,\n\t31141 - 11905: 0xB651,\n\t31142 - 11905: 0xB652,\n\t31143 - 11905: 0xECFB,\n\t31144 - 11905: 0xB653,\n\t31145 - 11905: 0xB654,\n\t31146 - 11905: 0xB655,\n\t31147 - 11905: 0xB656,\n\t31148 - 11905: 0xB657,\n\t31149 - 11905: 0xB658,\n\t31150 - 11905: 0xB659,\n\t31151 - 11905: 0xB65A,\n\t31152 - 11905: 0xB65B,\n\t31153 - 11905: 0xB65C,\n\t31154 - 11905: 0xB65D,\n\t31155 - 11905: 0xECFC,\n\t31156 - 11905: 0xB65E,\n\t31157 - 11905: 0xB65F,\n\t31158 - 11905: 0xB660,\n\t31159 - 11905: 0xB661,\n\t31160 - 11905: 0xB662,\n\t31161 - 11905: 0xD3ED,\n\t31162 - 11905: 0xD8AE,\n\t31163 - 11905: 0xC0EB,\n\t31164 - 11905: 0xB663,\n\t31165 - 11905: 0xC7DD,\n\t31166 - 11905: 0xBACC,\n\t31167 - 11905: 0xB664,\n\t31168 - 11905: 0xD0E3,\n\t31169 - 11905: 0xCBBD,\n\t31170 - 11905: 0xB665,\n\t31171 - 11905: 0xCDBA,\n\t31172 - 11905: 0xB666,\n\t31173 - 11905: 0xB667,\n\t31174 - 11905: 0xB8D1,\n\t31175 - 11905: 0xB668,\n\t31176 - 11905: 0xB669,\n\t31177 - 11905: 0xB1FC,\n\t31178 - 11905: 0xB66A,\n\t31179 - 11905: 0xC7EF,\n\t31180 - 11905: 0xB66B,\n\t31181 - 11905: 0xD6D6,\n\t31182 - 11905: 0xB66C,\n\t31183 - 11905: 0xB66D,\n\t31184 - 11905: 0xB66E,\n\t31185 - 11905: 0xBFC6,\n\t31186 - 11905: 0xC3EB,\n\t31187 - 11905: 0xB66F,\n\t31188 - 11905: 0xB670,\n\t31189 - 11905: 0xEFF5,\n\t31190 - 11905: 0xB671,\n\t31191 - 11905: 0xB672,\n\t31192 - 11905: 0xC3D8,\n\t31193 - 11905: 0xB673,\n\t31194 - 11905: 0xB674,\n\t31195 - 11905: 0xB675,\n\t31196 - 11905: 0xB676,\n\t31197 - 11905: 0xB677,\n\t31198 - 11905: 0xB678,\n\t31199 - 11905: 0xD7E2,\n\t31200 - 11905: 0xB679,\n\t31201 - 11905: 0xB67A,\n\t31202 - 11905: 0xB67B,\n\t31203 - 11905: 0xEFF7,\n\t31204 - 11905: 0xB3D3,\n\t31205 - 11905: 0xB67C,\n\t31206 - 11905: 0xC7D8,\n\t31207 - 11905: 0xD1ED,\n\t31208 - 11905: 0xB67D,\n\t31209 - 11905: 0xD6C8,\n\t31210 - 11905: 0xB67E,\n\t31211 - 11905: 0xEFF8,\n\t31212 - 11905: 0xB680,\n\t31213 - 11905: 0xEFF6,\n\t31214 - 11905: 0xB681,\n\t31215 - 11905: 0xBBFD,\n\t31216 - 11905: 0xB3C6,\n\t31217 - 11905: 0xB682,\n\t31218 - 11905: 0xB683,\n\t31219 - 11905: 0xB684,\n\t31220 - 11905: 0xB685,\n\t31221 - 11905: 0xB686,\n\t31222 - 11905: 0xB687,\n\t31223 - 11905: 0xB688,\n\t31224 - 11905: 0xBDD5,\n\t31225 - 11905: 0xB689,\n\t31226 - 11905: 0xB68A,\n\t31227 - 11905: 0xD2C6,\n\t31228 - 11905: 0xB68B,\n\t31229 - 11905: 0xBBE0,\n\t31230 - 11905: 0xB68C,\n\t31231 - 11905: 0xB68D,\n\t31232 - 11905: 0xCFA1,\n\t31233 - 11905: 0xB68E,\n\t31234 - 11905: 0xEFFC,\n\t31235 - 11905: 0xEFFB,\n\t31236 - 11905: 0xB68F,\n\t31237 - 11905: 0xB690,\n\t31238 - 11905: 0xEFF9,\n\t31239 - 11905: 0xB691,\n\t31240 - 11905: 0xB692,\n\t31241 - 11905: 0xB693,\n\t31242 - 11905: 0xB694,\n\t31243 - 11905: 0xB3CC,\n\t31244 - 11905: 0xB695,\n\t31245 - 11905: 0xC9D4,\n\t31246 - 11905: 0xCBB0,\n\t31247 - 11905: 0xB696,\n\t31248 - 11905: 0xB697,\n\t31249 - 11905: 0xB698,\n\t31250 - 11905: 0xB699,\n\t31251 - 11905: 0xB69A,\n\t31252 - 11905: 0xEFFE,\n\t31253 - 11905: 0xB69B,\n\t31254 - 11905: 0xB69C,\n\t31255 - 11905: 0xB0DE,\n\t31256 - 11905: 0xB69D,\n\t31257 - 11905: 0xB69E,\n\t31258 - 11905: 0xD6C9,\n\t31259 - 11905: 0xB69F,\n\t31260 - 11905: 0xB6A0,\n\t31261 - 11905: 0xB740,\n\t31262 - 11905: 0xEFFD,\n\t31263 - 11905: 0xB741,\n\t31264 - 11905: 0xB3ED,\n\t31265 - 11905: 0xB742,\n\t31266 - 11905: 0xB743,\n\t31267 - 11905: 0xF6D5,\n\t31268 - 11905: 0xB744,\n\t31269 - 11905: 0xB745,\n\t31270 - 11905: 0xB746,\n\t31271 - 11905: 0xB747,\n\t31272 - 11905: 0xB748,\n\t31273 - 11905: 0xB749,\n\t31274 - 11905: 0xB74A,\n\t31275 - 11905: 0xB74B,\n\t31276 - 11905: 0xB74C,\n\t31277 - 11905: 0xB74D,\n\t31278 - 11905: 0xB74E,\n\t31279 - 11905: 0xB74F,\n\t31280 - 11905: 0xB750,\n\t31281 - 11905: 0xB751,\n\t31282 - 11905: 0xB752,\n\t31283 - 11905: 0xCEC8,\n\t31284 - 11905: 0xB753,\n\t31285 - 11905: 0xB754,\n\t31286 - 11905: 0xB755,\n\t31287 - 11905: 0xF0A2,\n\t31288 - 11905: 0xB756,\n\t31289 - 11905: 0xF0A1,\n\t31290 - 11905: 0xB757,\n\t31291 - 11905: 0xB5BE,\n\t31292 - 11905: 0xBCDA,\n\t31293 - 11905: 0xBBFC,\n\t31294 - 11905: 0xB758,\n\t31295 - 11905: 0xB8E5,\n\t31296 - 11905: 0xB759,\n\t31297 - 11905: 0xB75A,\n\t31298 - 11905: 0xB75B,\n\t31299 - 11905: 0xB75C,\n\t31300 - 11905: 0xB75D,\n\t31301 - 11905: 0xB75E,\n\t31302 - 11905: 0xC4C2,\n\t31303 - 11905: 0xB75F,\n\t31304 - 11905: 0xB760,\n\t31305 - 11905: 0xB761,\n\t31306 - 11905: 0xB762,\n\t31307 - 11905: 0xB763,\n\t31308 - 11905: 0xB764,\n\t31309 - 11905: 0xB765,\n\t31310 - 11905: 0xB766,\n\t31311 - 11905: 0xB767,\n\t31312 - 11905: 0xB768,\n\t31313 - 11905: 0xF0A3,\n\t31314 - 11905: 0xB769,\n\t31315 - 11905: 0xB76A,\n\t31316 - 11905: 0xB76B,\n\t31317 - 11905: 0xB76C,\n\t31318 - 11905: 0xB76D,\n\t31319 - 11905: 0xCBEB,\n\t31320 - 11905: 0xB76E,\n\t31321 - 11905: 0xB76F,\n\t31322 - 11905: 0xB770,\n\t31323 - 11905: 0xB771,\n\t31324 - 11905: 0xB772,\n\t31325 - 11905: 0xB773,\n\t31326 - 11905: 0xB774,\n\t31327 - 11905: 0xB775,\n\t31328 - 11905: 0xB776,\n\t31329 - 11905: 0xB777,\n\t31330 - 11905: 0xB778,\n\t31331 - 11905: 0xB779,\n\t31332 - 11905: 0xB77A,\n\t31333 - 11905: 0xB77B,\n\t31334 - 11905: 0xB77C,\n\t31335 - 11905: 0xB77D,\n\t31336 - 11905: 0xB77E,\n\t31337 - 11905: 0xB780,\n\t31338 - 11905: 0xB781,\n\t31339 - 11905: 0xB782,\n\t31340 - 11905: 0xB783,\n\t31341 - 11905: 0xB784,\n\t31342 - 11905: 0xB785,\n\t31343 - 11905: 0xB786,\n\t31344 - 11905: 0xF0A6,\n\t31345 - 11905: 0xB787,\n\t31346 - 11905: 0xB788,\n\t31347 - 11905: 0xB789,\n\t31348 - 11905: 0xD1A8,\n\t31349 - 11905: 0xB78A,\n\t31350 - 11905: 0xBEBF,\n\t31351 - 11905: 0xC7EE,\n\t31352 - 11905: 0xF1B6,\n\t31353 - 11905: 0xF1B7,\n\t31354 - 11905: 0xBFD5,\n\t31355 - 11905: 0xB78B,\n\t31356 - 11905: 0xB78C,\n\t31357 - 11905: 0xB78D,\n\t31358 - 11905: 0xB78E,\n\t31359 - 11905: 0xB4A9,\n\t31360 - 11905: 0xF1B8,\n\t31361 - 11905: 0xCDBB,\n\t31362 - 11905: 0xB78F,\n\t31363 - 11905: 0xC7D4,\n\t31364 - 11905: 0xD5AD,\n\t31365 - 11905: 0xB790,\n\t31366 - 11905: 0xF1B9,\n\t31367 - 11905: 0xB791,\n\t31368 - 11905: 0xF1BA,\n\t31369 - 11905: 0xB792,\n\t31370 - 11905: 0xB793,\n\t31371 - 11905: 0xB794,\n\t31372 - 11905: 0xB795,\n\t31373 - 11905: 0xC7CF,\n\t31374 - 11905: 0xB796,\n\t31375 - 11905: 0xB797,\n\t31376 - 11905: 0xB798,\n\t31377 - 11905: 0xD2A4,\n\t31378 - 11905: 0xD6CF,\n\t31379 - 11905: 0xB799,\n\t31380 - 11905: 0xB79A,\n\t31381 - 11905: 0xF1BB,\n\t31382 - 11905: 0xBDD1,\n\t31383 - 11905: 0xB4B0,\n\t31384 - 11905: 0xBEBD,\n\t31385 - 11905: 0xB79B,\n\t31386 - 11905: 0xB79C,\n\t31387 - 11905: 0xB79D,\n\t31388 - 11905: 0xB4DC,\n\t31389 - 11905: 0xCED1,\n\t31390 - 11905: 0xB79E,\n\t31391 - 11905: 0xBFDF,\n\t31392 - 11905: 0xF1BD,\n\t31393 - 11905: 0xB79F,\n\t31394 - 11905: 0xB7A0,\n\t31395 - 11905: 0xB840,\n\t31396 - 11905: 0xB841,\n\t31397 - 11905: 0xBFFA,\n\t31398 - 11905: 0xF1BC,\n\t31399 - 11905: 0xB842,\n\t31400 - 11905: 0xF1BF,\n\t31401 - 11905: 0xB843,\n\t31402 - 11905: 0xB844,\n\t31403 - 11905: 0xB845,\n\t31404 - 11905: 0xF1BE,\n\t31405 - 11905: 0xF1C0,\n\t31406 - 11905: 0xB846,\n\t31407 - 11905: 0xB847,\n\t31408 - 11905: 0xB848,\n\t31409 - 11905: 0xB849,\n\t31410 - 11905: 0xB84A,\n\t31411 - 11905: 0xF1C1,\n\t31412 - 11905: 0xB84B,\n\t31413 - 11905: 0xB84C,\n\t31414 - 11905: 0xB84D,\n\t31415 - 11905: 0xB84E,\n\t31416 - 11905: 0xB84F,\n\t31417 - 11905: 0xB850,\n\t31418 - 11905: 0xB851,\n\t31419 - 11905: 0xB852,\n\t31420 - 11905: 0xB853,\n\t31421 - 11905: 0xB854,\n\t31422 - 11905: 0xB855,\n\t31423 - 11905: 0xC1FE,\n\t31424 - 11905: 0xB856,\n\t31425 - 11905: 0xB857,\n\t31426 - 11905: 0xB858,\n\t31427 - 11905: 0xB859,\n\t31428 - 11905: 0xB85A,\n\t31429 - 11905: 0xB85B,\n\t31430 - 11905: 0xB85C,\n\t31431 - 11905: 0xB85D,\n\t31432 - 11905: 0xB85E,\n\t31433 - 11905: 0xB85F,\n\t31434 - 11905: 0xB860,\n\t31435 - 11905: 0xC1A2,\n\t31436 - 11905: 0xB861,\n\t31437 - 11905: 0xB862,\n\t31438 - 11905: 0xB863,\n\t31439 - 11905: 0xB864,\n\t31440 - 11905: 0xB865,\n\t31441 - 11905: 0xB866,\n\t31442 - 11905: 0xB867,\n\t31443 - 11905: 0xB868,\n\t31444 - 11905: 0xB869,\n\t31445 - 11905: 0xB86A,\n\t31446 - 11905: 0xCAFA,\n\t31447 - 11905: 0xB86B,\n\t31448 - 11905: 0xB86C,\n\t31449 - 11905: 0xD5BE,\n\t31450 - 11905: 0xB86D,\n\t31451 - 11905: 0xB86E,\n\t31452 - 11905: 0xB86F,\n\t31453 - 11905: 0xB870,\n\t31454 - 11905: 0xBEBA,\n\t31455 - 11905: 0xBEB9,\n\t31456 - 11905: 0xD5C2,\n\t31457 - 11905: 0xB871,\n\t31458 - 11905: 0xB872,\n\t31459 - 11905: 0xBFA2,\n\t31460 - 11905: 0xB873,\n\t31461 - 11905: 0xCDAF,\n\t31462 - 11905: 0xF1B5,\n\t31463 - 11905: 0xB874,\n\t31464 - 11905: 0xB875,\n\t31465 - 11905: 0xB876,\n\t31466 - 11905: 0xB877,\n\t31467 - 11905: 0xB878,\n\t31468 - 11905: 0xB879,\n\t31469 - 11905: 0xBDDF,\n\t31470 - 11905: 0xB87A,\n\t31471 - 11905: 0xB6CB,\n\t31472 - 11905: 0xB87B,\n\t31473 - 11905: 0xB87C,\n\t31474 - 11905: 0xB87D,\n\t31475 - 11905: 0xB87E,\n\t31476 - 11905: 0xB880,\n\t31477 - 11905: 0xB881,\n\t31478 - 11905: 0xB882,\n\t31479 - 11905: 0xB883,\n\t31480 - 11905: 0xB884,\n\t31481 - 11905: 0xD6F1,\n\t31482 - 11905: 0xF3C3,\n\t31483 - 11905: 0xB885,\n\t31484 - 11905: 0xB886,\n\t31485 - 11905: 0xF3C4,\n\t31486 - 11905: 0xB887,\n\t31487 - 11905: 0xB8CD,\n\t31488 - 11905: 0xB888,\n\t31489 - 11905: 0xB889,\n\t31490 - 11905: 0xB88A,\n\t31491 - 11905: 0xF3C6,\n\t31492 - 11905: 0xF3C7,\n\t31493 - 11905: 0xB88B,\n\t31494 - 11905: 0xB0CA,\n\t31495 - 11905: 0xB88C,\n\t31496 - 11905: 0xF3C5,\n\t31497 - 11905: 0xB88D,\n\t31498 - 11905: 0xF3C9,\n\t31499 - 11905: 0xCBF1,\n\t31500 - 11905: 0xB88E,\n\t31501 - 11905: 0xB88F,\n\t31502 - 11905: 0xB890,\n\t31503 - 11905: 0xF3CB,\n\t31504 - 11905: 0xB891,\n\t31505 - 11905: 0xD0A6,\n\t31506 - 11905: 0xB892,\n\t31507 - 11905: 0xB893,\n\t31508 - 11905: 0xB1CA,\n\t31509 - 11905: 0xF3C8,\n\t31510 - 11905: 0xB894,\n\t31511 - 11905: 0xB895,\n\t31512 - 11905: 0xB896,\n\t31513 - 11905: 0xF3CF,\n\t31514 - 11905: 0xB897,\n\t31515 - 11905: 0xB5D1,\n\t31516 - 11905: 0xB898,\n\t31517 - 11905: 0xB899,\n\t31518 - 11905: 0xF3D7,\n\t31519 - 11905: 0xB89A,\n\t31520 - 11905: 0xF3D2,\n\t31521 - 11905: 0xB89B,\n\t31522 - 11905: 0xB89C,\n\t31523 - 11905: 0xB89D,\n\t31524 - 11905: 0xF3D4,\n\t31525 - 11905: 0xF3D3,\n\t31526 - 11905: 0xB7FB,\n\t31527 - 11905: 0xB89E,\n\t31528 - 11905: 0xB1BF,\n\t31529 - 11905: 0xB89F,\n\t31530 - 11905: 0xF3CE,\n\t31531 - 11905: 0xF3CA,\n\t31532 - 11905: 0xB5DA,\n\t31533 - 11905: 0xB8A0,\n\t31534 - 11905: 0xF3D0,\n\t31535 - 11905: 0xB940,\n\t31536 - 11905: 0xB941,\n\t31537 - 11905: 0xF3D1,\n\t31538 - 11905: 0xB942,\n\t31539 - 11905: 0xF3D5,\n\t31540 - 11905: 0xB943,\n\t31541 - 11905: 0xB944,\n\t31542 - 11905: 0xB945,\n\t31543 - 11905: 0xB946,\n\t31544 - 11905: 0xF3CD,\n\t31545 - 11905: 0xB947,\n\t31546 - 11905: 0xBCE3,\n\t31547 - 11905: 0xB948,\n\t31548 - 11905: 0xC1FD,\n\t31549 - 11905: 0xB949,\n\t31550 - 11905: 0xF3D6,\n\t31551 - 11905: 0xB94A,\n\t31552 - 11905: 0xB94B,\n\t31553 - 11905: 0xB94C,\n\t31554 - 11905: 0xB94D,\n\t31555 - 11905: 0xB94E,\n\t31556 - 11905: 0xB94F,\n\t31557 - 11905: 0xF3DA,\n\t31558 - 11905: 0xB950,\n\t31559 - 11905: 0xF3CC,\n\t31560 - 11905: 0xB951,\n\t31561 - 11905: 0xB5C8,\n\t31562 - 11905: 0xB952,\n\t31563 - 11905: 0xBDEE,\n\t31564 - 11905: 0xF3DC,\n\t31565 - 11905: 0xB953,\n\t31566 - 11905: 0xB954,\n\t31567 - 11905: 0xB7A4,\n\t31568 - 11905: 0xBFF0,\n\t31569 - 11905: 0xD6FE,\n\t31570 - 11905: 0xCDB2,\n\t31571 - 11905: 0xB955,\n\t31572 - 11905: 0xB4F0,\n\t31573 - 11905: 0xB956,\n\t31574 - 11905: 0xB2DF,\n\t31575 - 11905: 0xB957,\n\t31576 - 11905: 0xF3D8,\n\t31577 - 11905: 0xB958,\n\t31578 - 11905: 0xF3D9,\n\t31579 - 11905: 0xC9B8,\n\t31580 - 11905: 0xB959,\n\t31581 - 11905: 0xF3DD,\n\t31582 - 11905: 0xB95A,\n\t31583 - 11905: 0xB95B,\n\t31584 - 11905: 0xF3DE,\n\t31585 - 11905: 0xB95C,\n\t31586 - 11905: 0xF3E1,\n\t31587 - 11905: 0xB95D,\n\t31588 - 11905: 0xB95E,\n\t31589 - 11905: 0xB95F,\n\t31590 - 11905: 0xB960,\n\t31591 - 11905: 0xB961,\n\t31592 - 11905: 0xB962,\n\t31593 - 11905: 0xB963,\n\t31594 - 11905: 0xB964,\n\t31595 - 11905: 0xB965,\n\t31596 - 11905: 0xB966,\n\t31597 - 11905: 0xB967,\n\t31598 - 11905: 0xF3DF,\n\t31599 - 11905: 0xB968,\n\t31600 - 11905: 0xB969,\n\t31601 - 11905: 0xF3E3,\n\t31602 - 11905: 0xF3E2,\n\t31603 - 11905: 0xB96A,\n\t31604 - 11905: 0xB96B,\n\t31605 - 11905: 0xF3DB,\n\t31606 - 11905: 0xB96C,\n\t31607 - 11905: 0xBFEA,\n\t31608 - 11905: 0xB96D,\n\t31609 - 11905: 0xB3EF,\n\t31610 - 11905: 0xB96E,\n\t31611 - 11905: 0xF3E0,\n\t31612 - 11905: 0xB96F,\n\t31613 - 11905: 0xB970,\n\t31614 - 11905: 0xC7A9,\n\t31615 - 11905: 0xB971,\n\t31616 - 11905: 0xBCF2,\n\t31617 - 11905: 0xB972,\n\t31618 - 11905: 0xB973,\n\t31619 - 11905: 0xB974,\n\t31620 - 11905: 0xB975,\n\t31621 - 11905: 0xF3EB,\n\t31622 - 11905: 0xB976,\n\t31623 - 11905: 0xB977,\n\t31624 - 11905: 0xB978,\n\t31625 - 11905: 0xB979,\n\t31626 - 11905: 0xB97A,\n\t31627 - 11905: 0xB97B,\n\t31628 - 11905: 0xB97C,\n\t31629 - 11905: 0xB9BF,\n\t31630 - 11905: 0xB97D,\n\t31631 - 11905: 0xB97E,\n\t31632 - 11905: 0xF3E4,\n\t31633 - 11905: 0xB980,\n\t31634 - 11905: 0xB981,\n\t31635 - 11905: 0xB982,\n\t31636 - 11905: 0xB2AD,\n\t31637 - 11905: 0xBBFE,\n\t31638 - 11905: 0xB983,\n\t31639 - 11905: 0xCBE3,\n\t31640 - 11905: 0xB984,\n\t31641 - 11905: 0xB985,\n\t31642 - 11905: 0xB986,\n\t31643 - 11905: 0xB987,\n\t31644 - 11905: 0xF3ED,\n\t31645 - 11905: 0xF3E9,\n\t31646 - 11905: 0xB988,\n\t31647 - 11905: 0xB989,\n\t31648 - 11905: 0xB98A,\n\t31649 - 11905: 0xB9DC,\n\t31650 - 11905: 0xF3EE,\n\t31651 - 11905: 0xB98B,\n\t31652 - 11905: 0xB98C,\n\t31653 - 11905: 0xB98D,\n\t31654 - 11905: 0xF3E5,\n\t31655 - 11905: 0xF3E6,\n\t31656 - 11905: 0xF3EA,\n\t31657 - 11905: 0xC2E1,\n\t31658 - 11905: 0xF3EC,\n\t31659 - 11905: 0xF3EF,\n\t31660 - 11905: 0xF3E8,\n\t31661 - 11905: 0xBCFD,\n\t31662 - 11905: 0xB98E,\n\t31663 - 11905: 0xB98F,\n\t31664 - 11905: 0xB990,\n\t31665 - 11905: 0xCFE4,\n\t31666 - 11905: 0xB991,\n\t31667 - 11905: 0xB992,\n\t31668 - 11905: 0xF3F0,\n\t31669 - 11905: 0xB993,\n\t31670 - 11905: 0xB994,\n\t31671 - 11905: 0xB995,\n\t31672 - 11905: 0xF3E7,\n\t31673 - 11905: 0xB996,\n\t31674 - 11905: 0xB997,\n\t31675 - 11905: 0xB998,\n\t31676 - 11905: 0xB999,\n\t31677 - 11905: 0xB99A,\n\t31678 - 11905: 0xB99B,\n\t31679 - 11905: 0xB99C,\n\t31680 - 11905: 0xB99D,\n\t31681 - 11905: 0xF3F2,\n\t31682 - 11905: 0xB99E,\n\t31683 - 11905: 0xB99F,\n\t31684 - 11905: 0xB9A0,\n\t31685 - 11905: 0xBA40,\n\t31686 - 11905: 0xD7AD,\n\t31687 - 11905: 0xC6AA,\n\t31688 - 11905: 0xBA41,\n\t31689 - 11905: 0xBA42,\n\t31690 - 11905: 0xBA43,\n\t31691 - 11905: 0xBA44,\n\t31692 - 11905: 0xF3F3,\n\t31693 - 11905: 0xBA45,\n\t31694 - 11905: 0xBA46,\n\t31695 - 11905: 0xBA47,\n\t31696 - 11905: 0xBA48,\n\t31697 - 11905: 0xF3F1,\n\t31698 - 11905: 0xBA49,\n\t31699 - 11905: 0xC2A8,\n\t31700 - 11905: 0xBA4A,\n\t31701 - 11905: 0xBA4B,\n\t31702 - 11905: 0xBA4C,\n\t31703 - 11905: 0xBA4D,\n\t31704 - 11905: 0xBA4E,\n\t31705 - 11905: 0xB8DD,\n\t31706 - 11905: 0xF3F5,\n\t31707 - 11905: 0xBA4F,\n\t31708 - 11905: 0xBA50,\n\t31709 - 11905: 0xF3F4,\n\t31710 - 11905: 0xBA51,\n\t31711 - 11905: 0xBA52,\n\t31712 - 11905: 0xBA53,\n\t31713 - 11905: 0xB4DB,\n\t31714 - 11905: 0xBA54,\n\t31715 - 11905: 0xBA55,\n\t31716 - 11905: 0xBA56,\n\t31717 - 11905: 0xF3F6,\n\t31718 - 11905: 0xF3F7,\n\t31719 - 11905: 0xBA57,\n\t31720 - 11905: 0xBA58,\n\t31721 - 11905: 0xBA59,\n\t31722 - 11905: 0xF3F8,\n\t31723 - 11905: 0xBA5A,\n\t31724 - 11905: 0xBA5B,\n\t31725 - 11905: 0xBA5C,\n\t31726 - 11905: 0xC0BA,\n\t31727 - 11905: 0xBA5D,\n\t31728 - 11905: 0xBA5E,\n\t31729 - 11905: 0xC0E9,\n\t31730 - 11905: 0xBA5F,\n\t31731 - 11905: 0xBA60,\n\t31732 - 11905: 0xBA61,\n\t31733 - 11905: 0xBA62,\n\t31734 - 11905: 0xBA63,\n\t31735 - 11905: 0xC5F1,\n\t31736 - 11905: 0xBA64,\n\t31737 - 11905: 0xBA65,\n\t31738 - 11905: 0xBA66,\n\t31739 - 11905: 0xBA67,\n\t31740 - 11905: 0xF3FB,\n\t31741 - 11905: 0xBA68,\n\t31742 - 11905: 0xF3FA,\n\t31743 - 11905: 0xBA69,\n\t31744 - 11905: 0xBA6A,\n\t31745 - 11905: 0xBA6B,\n\t31746 - 11905: 0xBA6C,\n\t31747 - 11905: 0xBA6D,\n\t31748 - 11905: 0xBA6E,\n\t31749 - 11905: 0xBA6F,\n\t31750 - 11905: 0xBA70,\n\t31751 - 11905: 0xB4D8,\n\t31752 - 11905: 0xBA71,\n\t31753 - 11905: 0xBA72,\n\t31754 - 11905: 0xBA73,\n\t31755 - 11905: 0xF3FE,\n\t31756 - 11905: 0xF3F9,\n\t31757 - 11905: 0xBA74,\n\t31758 - 11905: 0xBA75,\n\t31759 - 11905: 0xF3FC,\n\t31760 - 11905: 0xBA76,\n\t31761 - 11905: 0xBA77,\n\t31762 - 11905: 0xBA78,\n\t31763 - 11905: 0xBA79,\n\t31764 - 11905: 0xBA7A,\n\t31765 - 11905: 0xBA7B,\n\t31766 - 11905: 0xF3FD,\n\t31767 - 11905: 0xBA7C,\n\t31768 - 11905: 0xBA7D,\n\t31769 - 11905: 0xBA7E,\n\t31770 - 11905: 0xBA80,\n\t31771 - 11905: 0xBA81,\n\t31772 - 11905: 0xBA82,\n\t31773 - 11905: 0xBA83,\n\t31774 - 11905: 0xBA84,\n\t31775 - 11905: 0xF4A1,\n\t31776 - 11905: 0xBA85,\n\t31777 - 11905: 0xBA86,\n\t31778 - 11905: 0xBA87,\n\t31779 - 11905: 0xBA88,\n\t31780 - 11905: 0xBA89,\n\t31781 - 11905: 0xBA8A,\n\t31782 - 11905: 0xF4A3,\n\t31783 - 11905: 0xBBC9,\n\t31784 - 11905: 0xBA8B,\n\t31785 - 11905: 0xBA8C,\n\t31786 - 11905: 0xF4A2,\n\t31787 - 11905: 0xBA8D,\n\t31788 - 11905: 0xBA8E,\n\t31789 - 11905: 0xBA8F,\n\t31790 - 11905: 0xBA90,\n\t31791 - 11905: 0xBA91,\n\t31792 - 11905: 0xBA92,\n\t31793 - 11905: 0xBA93,\n\t31794 - 11905: 0xBA94,\n\t31795 - 11905: 0xBA95,\n\t31796 - 11905: 0xBA96,\n\t31797 - 11905: 0xBA97,\n\t31798 - 11905: 0xBA98,\n\t31799 - 11905: 0xBA99,\n\t31800 - 11905: 0xF4A4,\n\t31801 - 11905: 0xBA9A,\n\t31802 - 11905: 0xBA9B,\n\t31803 - 11905: 0xBA9C,\n\t31804 - 11905: 0xBA9D,\n\t31805 - 11905: 0xBA9E,\n\t31806 - 11905: 0xBA9F,\n\t31807 - 11905: 0xB2BE,\n\t31808 - 11905: 0xF4A6,\n\t31809 - 11905: 0xF4A5,\n\t31810 - 11905: 0xBAA0,\n\t31811 - 11905: 0xBB40,\n\t31812 - 11905: 0xBB41,\n\t31813 - 11905: 0xBB42,\n\t31814 - 11905: 0xBB43,\n\t31815 - 11905: 0xBB44,\n\t31816 - 11905: 0xBB45,\n\t31817 - 11905: 0xBB46,\n\t31818 - 11905: 0xBB47,\n\t31819 - 11905: 0xBB48,\n\t31820 - 11905: 0xBB49,\n\t31821 - 11905: 0xBCAE,\n\t31822 - 11905: 0xBB4A,\n\t31823 - 11905: 0xBB4B,\n\t31824 - 11905: 0xBB4C,\n\t31825 - 11905: 0xBB4D,\n\t31826 - 11905: 0xBB4E,\n\t31827 - 11905: 0xBB4F,\n\t31828 - 11905: 0xBB50,\n\t31829 - 11905: 0xBB51,\n\t31830 - 11905: 0xBB52,\n\t31831 - 11905: 0xBB53,\n\t31832 - 11905: 0xBB54,\n\t31833 - 11905: 0xBB55,\n\t31834 - 11905: 0xBB56,\n\t31835 - 11905: 0xBB57,\n\t31836 - 11905: 0xBB58,\n\t31837 - 11905: 0xBB59,\n\t31838 - 11905: 0xBB5A,\n\t31839 - 11905: 0xBB5B,\n\t31840 - 11905: 0xBB5C,\n\t31841 - 11905: 0xBB5D,\n\t31842 - 11905: 0xBB5E,\n\t31843 - 11905: 0xBB5F,\n\t31844 - 11905: 0xBB60,\n\t31845 - 11905: 0xBB61,\n\t31846 - 11905: 0xBB62,\n\t31847 - 11905: 0xBB63,\n\t31848 - 11905: 0xBB64,\n\t31849 - 11905: 0xBB65,\n\t31850 - 11905: 0xBB66,\n\t31851 - 11905: 0xBB67,\n\t31852 - 11905: 0xBB68,\n\t31853 - 11905: 0xBB69,\n\t31854 - 11905: 0xBB6A,\n\t31855 - 11905: 0xBB6B,\n\t31856 - 11905: 0xBB6C,\n\t31857 - 11905: 0xBB6D,\n\t31858 - 11905: 0xBB6E,\n\t31859 - 11905: 0xC3D7,\n\t31860 - 11905: 0xD9E1,\n\t31861 - 11905: 0xBB6F,\n\t31862 - 11905: 0xBB70,\n\t31863 - 11905: 0xBB71,\n\t31864 - 11905: 0xBB72,\n\t31865 - 11905: 0xBB73,\n\t31866 - 11905: 0xBB74,\n\t31867 - 11905: 0xC0E0,\n\t31868 - 11905: 0xF4CC,\n\t31869 - 11905: 0xD7D1,\n\t31870 - 11905: 0xBB75,\n\t31871 - 11905: 0xBB76,\n\t31872 - 11905: 0xBB77,\n\t31873 - 11905: 0xBB78,\n\t31874 - 11905: 0xBB79,\n\t31875 - 11905: 0xBB7A,\n\t31876 - 11905: 0xBB7B,\n\t31877 - 11905: 0xBB7C,\n\t31878 - 11905: 0xBB7D,\n\t31879 - 11905: 0xBB7E,\n\t31880 - 11905: 0xBB80,\n\t31881 - 11905: 0xB7DB,\n\t31882 - 11905: 0xBB81,\n\t31883 - 11905: 0xBB82,\n\t31884 - 11905: 0xBB83,\n\t31885 - 11905: 0xBB84,\n\t31886 - 11905: 0xBB85,\n\t31887 - 11905: 0xBB86,\n\t31888 - 11905: 0xBB87,\n\t31889 - 11905: 0xF4CE,\n\t31890 - 11905: 0xC1A3,\n\t31891 - 11905: 0xBB88,\n\t31892 - 11905: 0xBB89,\n\t31893 - 11905: 0xC6C9,\n\t31894 - 11905: 0xBB8A,\n\t31895 - 11905: 0xB4D6,\n\t31896 - 11905: 0xD5B3,\n\t31897 - 11905: 0xBB8B,\n\t31898 - 11905: 0xBB8C,\n\t31899 - 11905: 0xBB8D,\n\t31900 - 11905: 0xF4D0,\n\t31901 - 11905: 0xF4CF,\n\t31902 - 11905: 0xF4D1,\n\t31903 - 11905: 0xCBDA,\n\t31904 - 11905: 0xBB8E,\n\t31905 - 11905: 0xBB8F,\n\t31906 - 11905: 0xF4D2,\n\t31907 - 11905: 0xBB90,\n\t31908 - 11905: 0xD4C1,\n\t31909 - 11905: 0xD6E0,\n\t31910 - 11905: 0xBB91,\n\t31911 - 11905: 0xBB92,\n\t31912 - 11905: 0xBB93,\n\t31913 - 11905: 0xBB94,\n\t31914 - 11905: 0xB7E0,\n\t31915 - 11905: 0xBB95,\n\t31916 - 11905: 0xBB96,\n\t31917 - 11905: 0xBB97,\n\t31918 - 11905: 0xC1B8,\n\t31919 - 11905: 0xBB98,\n\t31920 - 11905: 0xBB99,\n\t31921 - 11905: 0xC1BB,\n\t31922 - 11905: 0xF4D3,\n\t31923 - 11905: 0xBEAC,\n\t31924 - 11905: 0xBB9A,\n\t31925 - 11905: 0xBB9B,\n\t31926 - 11905: 0xBB9C,\n\t31927 - 11905: 0xBB9D,\n\t31928 - 11905: 0xBB9E,\n\t31929 - 11905: 0xB4E2,\n\t31930 - 11905: 0xBB9F,\n\t31931 - 11905: 0xBBA0,\n\t31932 - 11905: 0xF4D4,\n\t31933 - 11905: 0xF4D5,\n\t31934 - 11905: 0xBEAB,\n\t31935 - 11905: 0xBC40,\n\t31936 - 11905: 0xBC41,\n\t31937 - 11905: 0xF4D6,\n\t31938 - 11905: 0xBC42,\n\t31939 - 11905: 0xBC43,\n\t31940 - 11905: 0xBC44,\n\t31941 - 11905: 0xF4DB,\n\t31942 - 11905: 0xBC45,\n\t31943 - 11905: 0xF4D7,\n\t31944 - 11905: 0xF4DA,\n\t31945 - 11905: 0xBC46,\n\t31946 - 11905: 0xBAFD,\n\t31947 - 11905: 0xBC47,\n\t31948 - 11905: 0xF4D8,\n\t31949 - 11905: 0xF4D9,\n\t31950 - 11905: 0xBC48,\n\t31951 - 11905: 0xBC49,\n\t31952 - 11905: 0xBC4A,\n\t31953 - 11905: 0xBC4B,\n\t31954 - 11905: 0xBC4C,\n\t31955 - 11905: 0xBC4D,\n\t31956 - 11905: 0xBC4E,\n\t31957 - 11905: 0xB8E2,\n\t31958 - 11905: 0xCCC7,\n\t31959 - 11905: 0xF4DC,\n\t31960 - 11905: 0xBC4F,\n\t31961 - 11905: 0xB2DA,\n\t31962 - 11905: 0xBC50,\n\t31963 - 11905: 0xBC51,\n\t31964 - 11905: 0xC3D3,\n\t31965 - 11905: 0xBC52,\n\t31966 - 11905: 0xBC53,\n\t31967 - 11905: 0xD4E3,\n\t31968 - 11905: 0xBFB7,\n\t31969 - 11905: 0xBC54,\n\t31970 - 11905: 0xBC55,\n\t31971 - 11905: 0xBC56,\n\t31972 - 11905: 0xBC57,\n\t31973 - 11905: 0xBC58,\n\t31974 - 11905: 0xBC59,\n\t31975 - 11905: 0xBC5A,\n\t31976 - 11905: 0xF4DD,\n\t31977 - 11905: 0xBC5B,\n\t31978 - 11905: 0xBC5C,\n\t31979 - 11905: 0xBC5D,\n\t31980 - 11905: 0xBC5E,\n\t31981 - 11905: 0xBC5F,\n\t31982 - 11905: 0xBC60,\n\t31983 - 11905: 0xC5B4,\n\t31984 - 11905: 0xBC61,\n\t31985 - 11905: 0xBC62,\n\t31986 - 11905: 0xBC63,\n\t31987 - 11905: 0xBC64,\n\t31988 - 11905: 0xBC65,\n\t31989 - 11905: 0xBC66,\n\t31990 - 11905: 0xBC67,\n\t31991 - 11905: 0xBC68,\n\t31992 - 11905: 0xF4E9,\n\t31993 - 11905: 0xBC69,\n\t31994 - 11905: 0xBC6A,\n\t31995 - 11905: 0xCFB5,\n\t31996 - 11905: 0xBC6B,\n\t31997 - 11905: 0xBC6C,\n\t31998 - 11905: 0xBC6D,\n\t31999 - 11905: 0xBC6E,\n\t32000 - 11905: 0xBC6F,\n\t32001 - 11905: 0xBC70,\n\t32002 - 11905: 0xBC71,\n\t32003 - 11905: 0xBC72,\n\t32004 - 11905: 0xBC73,\n\t32005 - 11905: 0xBC74,\n\t32006 - 11905: 0xBC75,\n\t32007 - 11905: 0xBC76,\n\t32008 - 11905: 0xBC77,\n\t32009 - 11905: 0xBC78,\n\t32010 - 11905: 0xCEC9,\n\t32011 - 11905: 0xBC79,\n\t32012 - 11905: 0xBC7A,\n\t32013 - 11905: 0xBC7B,\n\t32014 - 11905: 0xBC7C,\n\t32015 - 11905: 0xBC7D,\n\t32016 - 11905: 0xBC7E,\n\t32017 - 11905: 0xBC80,\n\t32018 - 11905: 0xBC81,\n\t32019 - 11905: 0xBC82,\n\t32020 - 11905: 0xBC83,\n\t32021 - 11905: 0xBC84,\n\t32022 - 11905: 0xBC85,\n\t32023 - 11905: 0xBC86,\n\t32024 - 11905: 0xBC87,\n\t32025 - 11905: 0xBC88,\n\t32026 - 11905: 0xBC89,\n\t32027 - 11905: 0xBC8A,\n\t32028 - 11905: 0xBC8B,\n\t32029 - 11905: 0xBC8C,\n\t32030 - 11905: 0xBC8D,\n\t32031 - 11905: 0xBC8E,\n\t32032 - 11905: 0xCBD8,\n\t32033 - 11905: 0xBC8F,\n\t32034 - 11905: 0xCBF7,\n\t32035 - 11905: 0xBC90,\n\t32036 - 11905: 0xBC91,\n\t32037 - 11905: 0xBC92,\n\t32038 - 11905: 0xBC93,\n\t32039 - 11905: 0xBDF4,\n\t32040 - 11905: 0xBC94,\n\t32041 - 11905: 0xBC95,\n\t32042 - 11905: 0xBC96,\n\t32043 - 11905: 0xD7CF,\n\t32044 - 11905: 0xBC97,\n\t32045 - 11905: 0xBC98,\n\t32046 - 11905: 0xBC99,\n\t32047 - 11905: 0xC0DB,\n\t32048 - 11905: 0xBC9A,\n\t32049 - 11905: 0xBC9B,\n\t32050 - 11905: 0xBC9C,\n\t32051 - 11905: 0xBC9D,\n\t32052 - 11905: 0xBC9E,\n\t32053 - 11905: 0xBC9F,\n\t32054 - 11905: 0xBCA0,\n\t32055 - 11905: 0xBD40,\n\t32056 - 11905: 0xBD41,\n\t32057 - 11905: 0xBD42,\n\t32058 - 11905: 0xBD43,\n\t32059 - 11905: 0xBD44,\n\t32060 - 11905: 0xBD45,\n\t32061 - 11905: 0xBD46,\n\t32062 - 11905: 0xBD47,\n\t32063 - 11905: 0xBD48,\n\t32064 - 11905: 0xBD49,\n\t32065 - 11905: 0xBD4A,\n\t32066 - 11905: 0xBD4B,\n\t32067 - 11905: 0xBD4C,\n\t32068 - 11905: 0xBD4D,\n\t32069 - 11905: 0xBD4E,\n\t32070 - 11905: 0xBD4F,\n\t32071 - 11905: 0xBD50,\n\t32072 - 11905: 0xBD51,\n\t32073 - 11905: 0xBD52,\n\t32074 - 11905: 0xBD53,\n\t32075 - 11905: 0xBD54,\n\t32076 - 11905: 0xBD55,\n\t32077 - 11905: 0xBD56,\n\t32078 - 11905: 0xBD57,\n\t32079 - 11905: 0xBD58,\n\t32080 - 11905: 0xBD59,\n\t32081 - 11905: 0xBD5A,\n\t32082 - 11905: 0xBD5B,\n\t32083 - 11905: 0xBD5C,\n\t32084 - 11905: 0xBD5D,\n\t32085 - 11905: 0xBD5E,\n\t32086 - 11905: 0xBD5F,\n\t32087 - 11905: 0xBD60,\n\t32088 - 11905: 0xBD61,\n\t32089 - 11905: 0xBD62,\n\t32090 - 11905: 0xBD63,\n\t32091 - 11905: 0xBD64,\n\t32092 - 11905: 0xBD65,\n\t32093 - 11905: 0xBD66,\n\t32094 - 11905: 0xBD67,\n\t32095 - 11905: 0xBD68,\n\t32096 - 11905: 0xBD69,\n\t32097 - 11905: 0xBD6A,\n\t32098 - 11905: 0xBD6B,\n\t32099 - 11905: 0xBD6C,\n\t32100 - 11905: 0xBD6D,\n\t32101 - 11905: 0xBD6E,\n\t32102 - 11905: 0xBD6F,\n\t32103 - 11905: 0xBD70,\n\t32104 - 11905: 0xBD71,\n\t32105 - 11905: 0xBD72,\n\t32106 - 11905: 0xBD73,\n\t32107 - 11905: 0xBD74,\n\t32108 - 11905: 0xBD75,\n\t32109 - 11905: 0xBD76,\n\t32110 - 11905: 0xD0F5,\n\t32111 - 11905: 0xBD77,\n\t32112 - 11905: 0xBD78,\n\t32113 - 11905: 0xBD79,\n\t32114 - 11905: 0xBD7A,\n\t32115 - 11905: 0xBD7B,\n\t32116 - 11905: 0xBD7C,\n\t32117 - 11905: 0xBD7D,\n\t32118 - 11905: 0xBD7E,\n\t32119 - 11905: 0xF4EA,\n\t32120 - 11905: 0xBD80,\n\t32121 - 11905: 0xBD81,\n\t32122 - 11905: 0xBD82,\n\t32123 - 11905: 0xBD83,\n\t32124 - 11905: 0xBD84,\n\t32125 - 11905: 0xBD85,\n\t32126 - 11905: 0xBD86,\n\t32127 - 11905: 0xBD87,\n\t32128 - 11905: 0xBD88,\n\t32129 - 11905: 0xBD89,\n\t32130 - 11905: 0xBD8A,\n\t32131 - 11905: 0xBD8B,\n\t32132 - 11905: 0xBD8C,\n\t32133 - 11905: 0xBD8D,\n\t32134 - 11905: 0xBD8E,\n\t32135 - 11905: 0xBD8F,\n\t32136 - 11905: 0xBD90,\n\t32137 - 11905: 0xBD91,\n\t32138 - 11905: 0xBD92,\n\t32139 - 11905: 0xBD93,\n\t32140 - 11905: 0xBD94,\n\t32141 - 11905: 0xBD95,\n\t32142 - 11905: 0xBD96,\n\t32143 - 11905: 0xBD97,\n\t32144 - 11905: 0xBD98,\n\t32145 - 11905: 0xBD99,\n\t32146 - 11905: 0xBD9A,\n\t32147 - 11905: 0xBD9B,\n\t32148 - 11905: 0xBD9C,\n\t32149 - 11905: 0xBD9D,\n\t32150 - 11905: 0xBD9E,\n\t32151 - 11905: 0xBD9F,\n\t32152 - 11905: 0xBDA0,\n\t32153 - 11905: 0xBE40,\n\t32154 - 11905: 0xBE41,\n\t32155 - 11905: 0xBE42,\n\t32156 - 11905: 0xBE43,\n\t32157 - 11905: 0xBE44,\n\t32158 - 11905: 0xBE45,\n\t32159 - 11905: 0xBE46,\n\t32160 - 11905: 0xBE47,\n\t32161 - 11905: 0xBE48,\n\t32162 - 11905: 0xBE49,\n\t32163 - 11905: 0xBE4A,\n\t32164 - 11905: 0xBE4B,\n\t32165 - 11905: 0xBE4C,\n\t32166 - 11905: 0xF4EB,\n\t32167 - 11905: 0xBE4D,\n\t32168 - 11905: 0xBE4E,\n\t32169 - 11905: 0xBE4F,\n\t32170 - 11905: 0xBE50,\n\t32171 - 11905: 0xBE51,\n\t32172 - 11905: 0xBE52,\n\t32173 - 11905: 0xBE53,\n\t32174 - 11905: 0xF4EC,\n\t32175 - 11905: 0xBE54,\n\t32176 - 11905: 0xBE55,\n\t32177 - 11905: 0xBE56,\n\t32178 - 11905: 0xBE57,\n\t32179 - 11905: 0xBE58,\n\t32180 - 11905: 0xBE59,\n\t32181 - 11905: 0xBE5A,\n\t32182 - 11905: 0xBE5B,\n\t32183 - 11905: 0xBE5C,\n\t32184 - 11905: 0xBE5D,\n\t32185 - 11905: 0xBE5E,\n\t32186 - 11905: 0xBE5F,\n\t32187 - 11905: 0xBE60,\n\t32188 - 11905: 0xBE61,\n\t32189 - 11905: 0xBE62,\n\t32190 - 11905: 0xBE63,\n\t32191 - 11905: 0xBE64,\n\t32192 - 11905: 0xBE65,\n\t32193 - 11905: 0xBE66,\n\t32194 - 11905: 0xBE67,\n\t32195 - 11905: 0xBE68,\n\t32196 - 11905: 0xBE69,\n\t32197 - 11905: 0xBE6A,\n\t32198 - 11905: 0xBE6B,\n\t32199 - 11905: 0xBE6C,\n\t32200 - 11905: 0xBE6D,\n\t32201 - 11905: 0xBE6E,\n\t32202 - 11905: 0xBE6F,\n\t32203 - 11905: 0xBE70,\n\t32204 - 11905: 0xBE71,\n\t32205 - 11905: 0xBE72,\n\t32206 - 11905: 0xBE73,\n\t32207 - 11905: 0xBE74,\n\t32208 - 11905: 0xBE75,\n\t32209 - 11905: 0xBE76,\n\t32210 - 11905: 0xBE77,\n\t32211 - 11905: 0xBE78,\n\t32212 - 11905: 0xBE79,\n\t32213 - 11905: 0xBE7A,\n\t32214 - 11905: 0xBE7B,\n\t32215 - 11905: 0xBE7C,\n\t32216 - 11905: 0xBE7D,\n\t32217 - 11905: 0xBE7E,\n\t32218 - 11905: 0xBE80,\n\t32219 - 11905: 0xBE81,\n\t32220 - 11905: 0xBE82,\n\t32221 - 11905: 0xBE83,\n\t32222 - 11905: 0xBE84,\n\t32223 - 11905: 0xBE85,\n\t32224 - 11905: 0xBE86,\n\t32225 - 11905: 0xBE87,\n\t32226 - 11905: 0xBE88,\n\t32227 - 11905: 0xBE89,\n\t32228 - 11905: 0xBE8A,\n\t32229 - 11905: 0xBE8B,\n\t32230 - 11905: 0xBE8C,\n\t32231 - 11905: 0xBE8D,\n\t32232 - 11905: 0xBE8E,\n\t32233 - 11905: 0xBE8F,\n\t32234 - 11905: 0xBE90,\n\t32235 - 11905: 0xBE91,\n\t32236 - 11905: 0xBE92,\n\t32237 - 11905: 0xBE93,\n\t32238 - 11905: 0xBE94,\n\t32239 - 11905: 0xBE95,\n\t32240 - 11905: 0xBE96,\n\t32241 - 11905: 0xBE97,\n\t32242 - 11905: 0xBE98,\n\t32243 - 11905: 0xBE99,\n\t32244 - 11905: 0xBE9A,\n\t32245 - 11905: 0xBE9B,\n\t32246 - 11905: 0xBE9C,\n\t32247 - 11905: 0xBE9D,\n\t32248 - 11905: 0xBE9E,\n\t32249 - 11905: 0xBE9F,\n\t32250 - 11905: 0xBEA0,\n\t32251 - 11905: 0xBF40,\n\t32252 - 11905: 0xBF41,\n\t32253 - 11905: 0xBF42,\n\t32254 - 11905: 0xBF43,\n\t32255 - 11905: 0xBF44,\n\t32256 - 11905: 0xBF45,\n\t32257 - 11905: 0xBF46,\n\t32258 - 11905: 0xBF47,\n\t32259 - 11905: 0xBF48,\n\t32260 - 11905: 0xBF49,\n\t32261 - 11905: 0xBF4A,\n\t32262 - 11905: 0xBF4B,\n\t32263 - 11905: 0xBF4C,\n\t32264 - 11905: 0xBF4D,\n\t32265 - 11905: 0xBF4E,\n\t32266 - 11905: 0xBF4F,\n\t32267 - 11905: 0xBF50,\n\t32268 - 11905: 0xBF51,\n\t32269 - 11905: 0xBF52,\n\t32270 - 11905: 0xBF53,\n\t32271 - 11905: 0xBF54,\n\t32272 - 11905: 0xBF55,\n\t32273 - 11905: 0xBF56,\n\t32274 - 11905: 0xBF57,\n\t32275 - 11905: 0xBF58,\n\t32276 - 11905: 0xBF59,\n\t32277 - 11905: 0xBF5A,\n\t32278 - 11905: 0xBF5B,\n\t32279 - 11905: 0xBF5C,\n\t32280 - 11905: 0xBF5D,\n\t32281 - 11905: 0xBF5E,\n\t32282 - 11905: 0xBF5F,\n\t32283 - 11905: 0xBF60,\n\t32284 - 11905: 0xBF61,\n\t32285 - 11905: 0xBF62,\n\t32286 - 11905: 0xBF63,\n\t32287 - 11905: 0xBF64,\n\t32288 - 11905: 0xBF65,\n\t32289 - 11905: 0xBF66,\n\t32290 - 11905: 0xBF67,\n\t32291 - 11905: 0xBF68,\n\t32292 - 11905: 0xBF69,\n\t32293 - 11905: 0xBF6A,\n\t32294 - 11905: 0xBF6B,\n\t32295 - 11905: 0xBF6C,\n\t32296 - 11905: 0xBF6D,\n\t32297 - 11905: 0xBF6E,\n\t32298 - 11905: 0xBF6F,\n\t32299 - 11905: 0xBF70,\n\t32300 - 11905: 0xBF71,\n\t32301 - 11905: 0xBF72,\n\t32302 - 11905: 0xBF73,\n\t32303 - 11905: 0xBF74,\n\t32304 - 11905: 0xBF75,\n\t32305 - 11905: 0xBF76,\n\t32306 - 11905: 0xBF77,\n\t32307 - 11905: 0xBF78,\n\t32308 - 11905: 0xBF79,\n\t32309 - 11905: 0xBF7A,\n\t32310 - 11905: 0xBF7B,\n\t32311 - 11905: 0xBF7C,\n\t32312 - 11905: 0xBF7D,\n\t32313 - 11905: 0xBF7E,\n\t32314 - 11905: 0xBF80,\n\t32315 - 11905: 0xF7E3,\n\t32316 - 11905: 0xBF81,\n\t32317 - 11905: 0xBF82,\n\t32318 - 11905: 0xBF83,\n\t32319 - 11905: 0xBF84,\n\t32320 - 11905: 0xBF85,\n\t32321 - 11905: 0xB7B1,\n\t32322 - 11905: 0xBF86,\n\t32323 - 11905: 0xBF87,\n\t32324 - 11905: 0xBF88,\n\t32325 - 11905: 0xBF89,\n\t32326 - 11905: 0xBF8A,\n\t32327 - 11905: 0xF4ED,\n\t32328 - 11905: 0xBF8B,\n\t32329 - 11905: 0xBF8C,\n\t32330 - 11905: 0xBF8D,\n\t32331 - 11905: 0xBF8E,\n\t32332 - 11905: 0xBF8F,\n\t32333 - 11905: 0xBF90,\n\t32334 - 11905: 0xBF91,\n\t32335 - 11905: 0xBF92,\n\t32336 - 11905: 0xBF93,\n\t32337 - 11905: 0xBF94,\n\t32338 - 11905: 0xBF95,\n\t32339 - 11905: 0xBF96,\n\t32340 - 11905: 0xBF97,\n\t32341 - 11905: 0xBF98,\n\t32342 - 11905: 0xBF99,\n\t32343 - 11905: 0xBF9A,\n\t32344 - 11905: 0xBF9B,\n\t32345 - 11905: 0xBF9C,\n\t32346 - 11905: 0xBF9D,\n\t32347 - 11905: 0xBF9E,\n\t32348 - 11905: 0xBF9F,\n\t32349 - 11905: 0xBFA0,\n\t32350 - 11905: 0xC040,\n\t32351 - 11905: 0xC041,\n\t32352 - 11905: 0xC042,\n\t32353 - 11905: 0xC043,\n\t32354 - 11905: 0xC044,\n\t32355 - 11905: 0xC045,\n\t32356 - 11905: 0xC046,\n\t32357 - 11905: 0xC047,\n\t32358 - 11905: 0xC048,\n\t32359 - 11905: 0xC049,\n\t32360 - 11905: 0xC04A,\n\t32361 - 11905: 0xC04B,\n\t32362 - 11905: 0xC04C,\n\t32363 - 11905: 0xC04D,\n\t32364 - 11905: 0xC04E,\n\t32365 - 11905: 0xC04F,\n\t32366 - 11905: 0xC050,\n\t32367 - 11905: 0xC051,\n\t32368 - 11905: 0xC052,\n\t32369 - 11905: 0xC053,\n\t32370 - 11905: 0xC054,\n\t32371 - 11905: 0xC055,\n\t32372 - 11905: 0xC056,\n\t32373 - 11905: 0xC057,\n\t32374 - 11905: 0xC058,\n\t32375 - 11905: 0xC059,\n\t32376 - 11905: 0xC05A,\n\t32377 - 11905: 0xC05B,\n\t32378 - 11905: 0xC05C,\n\t32379 - 11905: 0xC05D,\n\t32380 - 11905: 0xC05E,\n\t32381 - 11905: 0xC05F,\n\t32382 - 11905: 0xC060,\n\t32383 - 11905: 0xC061,\n\t32384 - 11905: 0xC062,\n\t32385 - 11905: 0xC063,\n\t32386 - 11905: 0xD7EB,\n\t32387 - 11905: 0xC064,\n\t32388 - 11905: 0xC065,\n\t32389 - 11905: 0xC066,\n\t32390 - 11905: 0xC067,\n\t32391 - 11905: 0xC068,\n\t32392 - 11905: 0xC069,\n\t32393 - 11905: 0xC06A,\n\t32394 - 11905: 0xC06B,\n\t32395 - 11905: 0xC06C,\n\t32396 - 11905: 0xC06D,\n\t32397 - 11905: 0xC06E,\n\t32398 - 11905: 0xC06F,\n\t32399 - 11905: 0xC070,\n\t32400 - 11905: 0xC071,\n\t32401 - 11905: 0xC072,\n\t32402 - 11905: 0xC073,\n\t32403 - 11905: 0xC074,\n\t32404 - 11905: 0xC075,\n\t32405 - 11905: 0xC076,\n\t32406 - 11905: 0xC077,\n\t32407 - 11905: 0xC078,\n\t32408 - 11905: 0xC079,\n\t32409 - 11905: 0xC07A,\n\t32410 - 11905: 0xC07B,\n\t32411 - 11905: 0xF4EE,\n\t32412 - 11905: 0xC07C,\n\t32413 - 11905: 0xC07D,\n\t32414 - 11905: 0xC07E,\n\t32415 - 11905: 0xE6F9,\n\t32416 - 11905: 0xBEC0,\n\t32417 - 11905: 0xE6FA,\n\t32418 - 11905: 0xBAEC,\n\t32419 - 11905: 0xE6FB,\n\t32420 - 11905: 0xCFCB,\n\t32421 - 11905: 0xE6FC,\n\t32422 - 11905: 0xD4BC,\n\t32423 - 11905: 0xBCB6,\n\t32424 - 11905: 0xE6FD,\n\t32425 - 11905: 0xE6FE,\n\t32426 - 11905: 0xBCCD,\n\t32427 - 11905: 0xC8D2,\n\t32428 - 11905: 0xCEB3,\n\t32429 - 11905: 0xE7A1,\n\t32430 - 11905: 0xC080,\n\t32431 - 11905: 0xB4BF,\n\t32432 - 11905: 0xE7A2,\n\t32433 - 11905: 0xC9B4,\n\t32434 - 11905: 0xB8D9,\n\t32435 - 11905: 0xC4C9,\n\t32436 - 11905: 0xC081,\n\t32437 - 11905: 0xD7DD,\n\t32438 - 11905: 0xC2DA,\n\t32439 - 11905: 0xB7D7,\n\t32440 - 11905: 0xD6BD,\n\t32441 - 11905: 0xCEC6,\n\t32442 - 11905: 0xB7C4,\n\t32443 - 11905: 0xC082,\n\t32444 - 11905: 0xC083,\n\t32445 - 11905: 0xC5A6,\n\t32446 - 11905: 0xE7A3,\n\t32447 - 11905: 0xCFDF,\n\t32448 - 11905: 0xE7A4,\n\t32449 - 11905: 0xE7A5,\n\t32450 - 11905: 0xE7A6,\n\t32451 - 11905: 0xC1B7,\n\t32452 - 11905: 0xD7E9,\n\t32453 - 11905: 0xC9F0,\n\t32454 - 11905: 0xCFB8,\n\t32455 - 11905: 0xD6AF,\n\t32456 - 11905: 0xD6D5,\n\t32457 - 11905: 0xE7A7,\n\t32458 - 11905: 0xB0ED,\n\t32459 - 11905: 0xE7A8,\n\t32460 - 11905: 0xE7A9,\n\t32461 - 11905: 0xC9DC,\n\t32462 - 11905: 0xD2EF,\n\t32463 - 11905: 0xBEAD,\n\t32464 - 11905: 0xE7AA,\n\t32465 - 11905: 0xB0F3,\n\t32466 - 11905: 0xC8DE,\n\t32467 - 11905: 0xBDE1,\n\t32468 - 11905: 0xE7AB,\n\t32469 - 11905: 0xC8C6,\n\t32470 - 11905: 0xC084,\n\t32471 - 11905: 0xE7AC,\n\t32472 - 11905: 0xBBE6,\n\t32473 - 11905: 0xB8F8,\n\t32474 - 11905: 0xD1A4,\n\t32475 - 11905: 0xE7AD,\n\t32476 - 11905: 0xC2E7,\n\t32477 - 11905: 0xBEF8,\n\t32478 - 11905: 0xBDCA,\n\t32479 - 11905: 0xCDB3,\n\t32480 - 11905: 0xE7AE,\n\t32481 - 11905: 0xE7AF,\n\t32482 - 11905: 0xBEEE,\n\t32483 - 11905: 0xD0E5,\n\t32484 - 11905: 0xC085,\n\t32485 - 11905: 0xCBE7,\n\t32486 - 11905: 0xCCD0,\n\t32487 - 11905: 0xBCCC,\n\t32488 - 11905: 0xE7B0,\n\t32489 - 11905: 0xBCA8,\n\t32490 - 11905: 0xD0F7,\n\t32491 - 11905: 0xE7B1,\n\t32492 - 11905: 0xC086,\n\t32493 - 11905: 0xD0F8,\n\t32494 - 11905: 0xE7B2,\n\t32495 - 11905: 0xE7B3,\n\t32496 - 11905: 0xB4C2,\n\t32497 - 11905: 0xE7B4,\n\t32498 - 11905: 0xE7B5,\n\t32499 - 11905: 0xC9FE,\n\t32500 - 11905: 0xCEAC,\n\t32501 - 11905: 0xC3E0,\n\t32502 - 11905: 0xE7B7,\n\t32503 - 11905: 0xB1C1,\n\t32504 - 11905: 0xB3F1,\n\t32505 - 11905: 0xC087,\n\t32506 - 11905: 0xE7B8,\n\t32507 - 11905: 0xE7B9,\n\t32508 - 11905: 0xD7DB,\n\t32509 - 11905: 0xD5C0,\n\t32510 - 11905: 0xE7BA,\n\t32511 - 11905: 0xC2CC,\n\t32512 - 11905: 0xD7BA,\n\t32513 - 11905: 0xE7BB,\n\t32514 - 11905: 0xE7BC,\n\t32515 - 11905: 0xE7BD,\n\t32516 - 11905: 0xBCEA,\n\t32517 - 11905: 0xC3E5,\n\t32518 - 11905: 0xC0C2,\n\t32519 - 11905: 0xE7BE,\n\t32520 - 11905: 0xE7BF,\n\t32521 - 11905: 0xBCA9,\n\t32522 - 11905: 0xC088,\n\t32523 - 11905: 0xE7C0,\n\t32524 - 11905: 0xE7C1,\n\t32525 - 11905: 0xE7B6,\n\t32526 - 11905: 0xB6D0,\n\t32527 - 11905: 0xE7C2,\n\t32528 - 11905: 0xC089,\n\t32529 - 11905: 0xE7C3,\n\t32530 - 11905: 0xE7C4,\n\t32531 - 11905: 0xBBBA,\n\t32532 - 11905: 0xB5DE,\n\t32533 - 11905: 0xC2C6,\n\t32534 - 11905: 0xB1E0,\n\t32535 - 11905: 0xE7C5,\n\t32536 - 11905: 0xD4B5,\n\t32537 - 11905: 0xE7C6,\n\t32538 - 11905: 0xB8BF,\n\t32539 - 11905: 0xE7C8,\n\t32540 - 11905: 0xE7C7,\n\t32541 - 11905: 0xB7EC,\n\t32542 - 11905: 0xC08A,\n\t32543 - 11905: 0xE7C9,\n\t32544 - 11905: 0xB2F8,\n\t32545 - 11905: 0xE7CA,\n\t32546 - 11905: 0xE7CB,\n\t32547 - 11905: 0xE7CC,\n\t32548 - 11905: 0xE7CD,\n\t32549 - 11905: 0xE7CE,\n\t32550 - 11905: 0xE7CF,\n\t32551 - 11905: 0xE7D0,\n\t32552 - 11905: 0xD3A7,\n\t32553 - 11905: 0xCBF5,\n\t32554 - 11905: 0xE7D1,\n\t32555 - 11905: 0xE7D2,\n\t32556 - 11905: 0xE7D3,\n\t32557 - 11905: 0xE7D4,\n\t32558 - 11905: 0xC9C9,\n\t32559 - 11905: 0xE7D5,\n\t32560 - 11905: 0xE7D6,\n\t32561 - 11905: 0xE7D7,\n\t32562 - 11905: 0xE7D8,\n\t32563 - 11905: 0xE7D9,\n\t32564 - 11905: 0xBDC9,\n\t32565 - 11905: 0xE7DA,\n\t32566 - 11905: 0xF3BE,\n\t32567 - 11905: 0xC08B,\n\t32568 - 11905: 0xB8D7,\n\t32569 - 11905: 0xC08C,\n\t32570 - 11905: 0xC8B1,\n\t32571 - 11905: 0xC08D,\n\t32572 - 11905: 0xC08E,\n\t32573 - 11905: 0xC08F,\n\t32574 - 11905: 0xC090,\n\t32575 - 11905: 0xC091,\n\t32576 - 11905: 0xC092,\n\t32577 - 11905: 0xC093,\n\t32578 - 11905: 0xF3BF,\n\t32579 - 11905: 0xC094,\n\t32580 - 11905: 0xF3C0,\n\t32581 - 11905: 0xF3C1,\n\t32582 - 11905: 0xC095,\n\t32583 - 11905: 0xC096,\n\t32584 - 11905: 0xC097,\n\t32585 - 11905: 0xC098,\n\t32586 - 11905: 0xC099,\n\t32587 - 11905: 0xC09A,\n\t32588 - 11905: 0xC09B,\n\t32589 - 11905: 0xC09C,\n\t32590 - 11905: 0xC09D,\n\t32591 - 11905: 0xC09E,\n\t32592 - 11905: 0xB9DE,\n\t32593 - 11905: 0xCDF8,\n\t32594 - 11905: 0xC09F,\n\t32595 - 11905: 0xC0A0,\n\t32596 - 11905: 0xD8E8,\n\t32597 - 11905: 0xBAB1,\n\t32598 - 11905: 0xC140,\n\t32599 - 11905: 0xC2DE,\n\t32600 - 11905: 0xEEB7,\n\t32601 - 11905: 0xC141,\n\t32602 - 11905: 0xB7A3,\n\t32603 - 11905: 0xC142,\n\t32604 - 11905: 0xC143,\n\t32605 - 11905: 0xC144,\n\t32606 - 11905: 0xC145,\n\t32607 - 11905: 0xEEB9,\n\t32608 - 11905: 0xC146,\n\t32609 - 11905: 0xEEB8,\n\t32610 - 11905: 0xB0D5,\n\t32611 - 11905: 0xC147,\n\t32612 - 11905: 0xC148,\n\t32613 - 11905: 0xC149,\n\t32614 - 11905: 0xC14A,\n\t32615 - 11905: 0xC14B,\n\t32616 - 11905: 0xEEBB,\n\t32617 - 11905: 0xD5D6,\n\t32618 - 11905: 0xD7EF,\n\t32619 - 11905: 0xC14C,\n\t32620 - 11905: 0xC14D,\n\t32621 - 11905: 0xC14E,\n\t32622 - 11905: 0xD6C3,\n\t32623 - 11905: 0xC14F,\n\t32624 - 11905: 0xC150,\n\t32625 - 11905: 0xEEBD,\n\t32626 - 11905: 0xCAF0,\n\t32627 - 11905: 0xC151,\n\t32628 - 11905: 0xEEBC,\n\t32629 - 11905: 0xC152,\n\t32630 - 11905: 0xC153,\n\t32631 - 11905: 0xC154,\n\t32632 - 11905: 0xC155,\n\t32633 - 11905: 0xEEBE,\n\t32634 - 11905: 0xC156,\n\t32635 - 11905: 0xC157,\n\t32636 - 11905: 0xC158,\n\t32637 - 11905: 0xC159,\n\t32638 - 11905: 0xEEC0,\n\t32639 - 11905: 0xC15A,\n\t32640 - 11905: 0xC15B,\n\t32641 - 11905: 0xEEBF,\n\t32642 - 11905: 0xC15C,\n\t32643 - 11905: 0xC15D,\n\t32644 - 11905: 0xC15E,\n\t32645 - 11905: 0xC15F,\n\t32646 - 11905: 0xC160,\n\t32647 - 11905: 0xC161,\n\t32648 - 11905: 0xC162,\n\t32649 - 11905: 0xC163,\n\t32650 - 11905: 0xD1F2,\n\t32651 - 11905: 0xC164,\n\t32652 - 11905: 0xC7BC,\n\t32653 - 11905: 0xC165,\n\t32654 - 11905: 0xC3C0,\n\t32655 - 11905: 0xC166,\n\t32656 - 11905: 0xC167,\n\t32657 - 11905: 0xC168,\n\t32658 - 11905: 0xC169,\n\t32659 - 11905: 0xC16A,\n\t32660 - 11905: 0xB8E1,\n\t32661 - 11905: 0xC16B,\n\t32662 - 11905: 0xC16C,\n\t32663 - 11905: 0xC16D,\n\t32664 - 11905: 0xC16E,\n\t32665 - 11905: 0xC16F,\n\t32666 - 11905: 0xC1E7,\n\t32667 - 11905: 0xC170,\n\t32668 - 11905: 0xC171,\n\t32669 - 11905: 0xF4C6,\n\t32670 - 11905: 0xD0DF,\n\t32671 - 11905: 0xF4C7,\n\t32672 - 11905: 0xC172,\n\t32673 - 11905: 0xCFDB,\n\t32674 - 11905: 0xC173,\n\t32675 - 11905: 0xC174,\n\t32676 - 11905: 0xC8BA,\n\t32677 - 11905: 0xC175,\n\t32678 - 11905: 0xC176,\n\t32679 - 11905: 0xF4C8,\n\t32680 - 11905: 0xC177,\n\t32681 - 11905: 0xC178,\n\t32682 - 11905: 0xC179,\n\t32683 - 11905: 0xC17A,\n\t32684 - 11905: 0xC17B,\n\t32685 - 11905: 0xC17C,\n\t32686 - 11905: 0xC17D,\n\t32687 - 11905: 0xF4C9,\n\t32688 - 11905: 0xF4CA,\n\t32689 - 11905: 0xC17E,\n\t32690 - 11905: 0xF4CB,\n\t32691 - 11905: 0xC180,\n\t32692 - 11905: 0xC181,\n\t32693 - 11905: 0xC182,\n\t32694 - 11905: 0xC183,\n\t32695 - 11905: 0xC184,\n\t32696 - 11905: 0xD9FA,\n\t32697 - 11905: 0xB8FE,\n\t32698 - 11905: 0xC185,\n\t32699 - 11905: 0xC186,\n\t32700 - 11905: 0xE5F1,\n\t32701 - 11905: 0xD3F0,\n\t32702 - 11905: 0xC187,\n\t32703 - 11905: 0xF4E0,\n\t32704 - 11905: 0xC188,\n\t32705 - 11905: 0xCECC,\n\t32706 - 11905: 0xC189,\n\t32707 - 11905: 0xC18A,\n\t32708 - 11905: 0xC18B,\n\t32709 - 11905: 0xB3E1,\n\t32710 - 11905: 0xC18C,\n\t32711 - 11905: 0xC18D,\n\t32712 - 11905: 0xC18E,\n\t32713 - 11905: 0xC18F,\n\t32714 - 11905: 0xF1B4,\n\t32715 - 11905: 0xC190,\n\t32716 - 11905: 0xD2EE,\n\t32717 - 11905: 0xC191,\n\t32718 - 11905: 0xF4E1,\n\t32719 - 11905: 0xC192,\n\t32720 - 11905: 0xC193,\n\t32721 - 11905: 0xC194,\n\t32722 - 11905: 0xC195,\n\t32723 - 11905: 0xC196,\n\t32724 - 11905: 0xCFE8,\n\t32725 - 11905: 0xF4E2,\n\t32726 - 11905: 0xC197,\n\t32727 - 11905: 0xC198,\n\t32728 - 11905: 0xC7CC,\n\t32729 - 11905: 0xC199,\n\t32730 - 11905: 0xC19A,\n\t32731 - 11905: 0xC19B,\n\t32732 - 11905: 0xC19C,\n\t32733 - 11905: 0xC19D,\n\t32734 - 11905: 0xC19E,\n\t32735 - 11905: 0xB5D4,\n\t32736 - 11905: 0xB4E4,\n\t32737 - 11905: 0xF4E4,\n\t32738 - 11905: 0xC19F,\n\t32739 - 11905: 0xC1A0,\n\t32740 - 11905: 0xC240,\n\t32741 - 11905: 0xF4E3,\n\t32742 - 11905: 0xF4E5,\n\t32743 - 11905: 0xC241,\n\t32744 - 11905: 0xC242,\n\t32745 - 11905: 0xF4E6,\n\t32746 - 11905: 0xC243,\n\t32747 - 11905: 0xC244,\n\t32748 - 11905: 0xC245,\n\t32749 - 11905: 0xC246,\n\t32750 - 11905: 0xF4E7,\n\t32751 - 11905: 0xC247,\n\t32752 - 11905: 0xBAB2,\n\t32753 - 11905: 0xB0BF,\n\t32754 - 11905: 0xC248,\n\t32755 - 11905: 0xF4E8,\n\t32756 - 11905: 0xC249,\n\t32757 - 11905: 0xC24A,\n\t32758 - 11905: 0xC24B,\n\t32759 - 11905: 0xC24C,\n\t32760 - 11905: 0xC24D,\n\t32761 - 11905: 0xC24E,\n\t32762 - 11905: 0xC24F,\n\t32763 - 11905: 0xB7AD,\n\t32764 - 11905: 0xD2ED,\n\t32765 - 11905: 0xC250,\n\t32766 - 11905: 0xC251,\n\t32767 - 11905: 0xC252,\n\t32768 - 11905: 0xD2AB,\n\t32769 - 11905: 0xC0CF,\n\t32770 - 11905: 0xC253,\n\t32771 - 11905: 0xBFBC,\n\t32772 - 11905: 0xEBA3,\n\t32773 - 11905: 0xD5DF,\n\t32774 - 11905: 0xEAC8,\n\t32775 - 11905: 0xC254,\n\t32776 - 11905: 0xC255,\n\t32777 - 11905: 0xC256,\n\t32778 - 11905: 0xC257,\n\t32779 - 11905: 0xF1F3,\n\t32780 - 11905: 0xB6F8,\n\t32781 - 11905: 0xCBA3,\n\t32782 - 11905: 0xC258,\n\t32783 - 11905: 0xC259,\n\t32784 - 11905: 0xC4CD,\n\t32785 - 11905: 0xC25A,\n\t32786 - 11905: 0xF1E7,\n\t32787 - 11905: 0xC25B,\n\t32788 - 11905: 0xF1E8,\n\t32789 - 11905: 0xB8FB,\n\t32790 - 11905: 0xF1E9,\n\t32791 - 11905: 0xBAC4,\n\t32792 - 11905: 0xD4C5,\n\t32793 - 11905: 0xB0D2,\n\t32794 - 11905: 0xC25C,\n\t32795 - 11905: 0xC25D,\n\t32796 - 11905: 0xF1EA,\n\t32797 - 11905: 0xC25E,\n\t32798 - 11905: 0xC25F,\n\t32799 - 11905: 0xC260,\n\t32800 - 11905: 0xF1EB,\n\t32801 - 11905: 0xC261,\n\t32802 - 11905: 0xF1EC,\n\t32803 - 11905: 0xC262,\n\t32804 - 11905: 0xC263,\n\t32805 - 11905: 0xF1ED,\n\t32806 - 11905: 0xF1EE,\n\t32807 - 11905: 0xF1EF,\n\t32808 - 11905: 0xF1F1,\n\t32809 - 11905: 0xF1F0,\n\t32810 - 11905: 0xC5D5,\n\t32811 - 11905: 0xC264,\n\t32812 - 11905: 0xC265,\n\t32813 - 11905: 0xC266,\n\t32814 - 11905: 0xC267,\n\t32815 - 11905: 0xC268,\n\t32816 - 11905: 0xC269,\n\t32817 - 11905: 0xF1F2,\n\t32818 - 11905: 0xC26A,\n\t32819 - 11905: 0xB6FA,\n\t32820 - 11905: 0xC26B,\n\t32821 - 11905: 0xF1F4,\n\t32822 - 11905: 0xD2AE,\n\t32823 - 11905: 0xDEC7,\n\t32824 - 11905: 0xCBCA,\n\t32825 - 11905: 0xC26C,\n\t32826 - 11905: 0xC26D,\n\t32827 - 11905: 0xB3DC,\n\t32828 - 11905: 0xC26E,\n\t32829 - 11905: 0xB5A2,\n\t32830 - 11905: 0xC26F,\n\t32831 - 11905: 0xB9A2,\n\t32832 - 11905: 0xC270,\n\t32833 - 11905: 0xC271,\n\t32834 - 11905: 0xC4F4,\n\t32835 - 11905: 0xF1F5,\n\t32836 - 11905: 0xC272,\n\t32837 - 11905: 0xC273,\n\t32838 - 11905: 0xF1F6,\n\t32839 - 11905: 0xC274,\n\t32840 - 11905: 0xC275,\n\t32841 - 11905: 0xC276,\n\t32842 - 11905: 0xC1C4,\n\t32843 - 11905: 0xC1FB,\n\t32844 - 11905: 0xD6B0,\n\t32845 - 11905: 0xF1F7,\n\t32846 - 11905: 0xC277,\n\t32847 - 11905: 0xC278,\n\t32848 - 11905: 0xC279,\n\t32849 - 11905: 0xC27A,\n\t32850 - 11905: 0xF1F8,\n\t32851 - 11905: 0xC27B,\n\t32852 - 11905: 0xC1AA,\n\t32853 - 11905: 0xC27C,\n\t32854 - 11905: 0xC27D,\n\t32855 - 11905: 0xC27E,\n\t32856 - 11905: 0xC6B8,\n\t32857 - 11905: 0xC280,\n\t32858 - 11905: 0xBEDB,\n\t32859 - 11905: 0xC281,\n\t32860 - 11905: 0xC282,\n\t32861 - 11905: 0xC283,\n\t32862 - 11905: 0xC284,\n\t32863 - 11905: 0xC285,\n\t32864 - 11905: 0xC286,\n\t32865 - 11905: 0xC287,\n\t32866 - 11905: 0xC288,\n\t32867 - 11905: 0xC289,\n\t32868 - 11905: 0xC28A,\n\t32869 - 11905: 0xC28B,\n\t32870 - 11905: 0xC28C,\n\t32871 - 11905: 0xC28D,\n\t32872 - 11905: 0xC28E,\n\t32873 - 11905: 0xF1F9,\n\t32874 - 11905: 0xB4CF,\n\t32875 - 11905: 0xC28F,\n\t32876 - 11905: 0xC290,\n\t32877 - 11905: 0xC291,\n\t32878 - 11905: 0xC292,\n\t32879 - 11905: 0xC293,\n\t32880 - 11905: 0xC294,\n\t32881 - 11905: 0xF1FA,\n\t32882 - 11905: 0xC295,\n\t32883 - 11905: 0xC296,\n\t32884 - 11905: 0xC297,\n\t32885 - 11905: 0xC298,\n\t32886 - 11905: 0xC299,\n\t32887 - 11905: 0xC29A,\n\t32888 - 11905: 0xC29B,\n\t32889 - 11905: 0xC29C,\n\t32890 - 11905: 0xC29D,\n\t32891 - 11905: 0xC29E,\n\t32892 - 11905: 0xC29F,\n\t32893 - 11905: 0xC2A0,\n\t32894 - 11905: 0xC340,\n\t32895 - 11905: 0xEDB2,\n\t32896 - 11905: 0xEDB1,\n\t32897 - 11905: 0xC341,\n\t32898 - 11905: 0xC342,\n\t32899 - 11905: 0xCBE0,\n\t32900 - 11905: 0xD2DE,\n\t32901 - 11905: 0xC343,\n\t32902 - 11905: 0xCBC1,\n\t32903 - 11905: 0xD5D8,\n\t32904 - 11905: 0xC344,\n\t32905 - 11905: 0xC8E2,\n\t32906 - 11905: 0xC345,\n\t32907 - 11905: 0xC0DF,\n\t32908 - 11905: 0xBCA1,\n\t32909 - 11905: 0xC346,\n\t32910 - 11905: 0xC347,\n\t32911 - 11905: 0xC348,\n\t32912 - 11905: 0xC349,\n\t32913 - 11905: 0xC34A,\n\t32914 - 11905: 0xC34B,\n\t32915 - 11905: 0xEBC1,\n\t32916 - 11905: 0xC34C,\n\t32917 - 11905: 0xC34D,\n\t32918 - 11905: 0xD0A4,\n\t32919 - 11905: 0xC34E,\n\t32920 - 11905: 0xD6E2,\n\t32921 - 11905: 0xC34F,\n\t32922 - 11905: 0xB6C7,\n\t32923 - 11905: 0xB8D8,\n\t32924 - 11905: 0xEBC0,\n\t32925 - 11905: 0xB8CE,\n\t32926 - 11905: 0xC350,\n\t32927 - 11905: 0xEBBF,\n\t32928 - 11905: 0xB3A6,\n\t32929 - 11905: 0xB9C9,\n\t32930 - 11905: 0xD6AB,\n\t32931 - 11905: 0xC351,\n\t32932 - 11905: 0xB7F4,\n\t32933 - 11905: 0xB7CA,\n\t32934 - 11905: 0xC352,\n\t32935 - 11905: 0xC353,\n\t32936 - 11905: 0xC354,\n\t32937 - 11905: 0xBCE7,\n\t32938 - 11905: 0xB7BE,\n\t32939 - 11905: 0xEBC6,\n\t32940 - 11905: 0xC355,\n\t32941 - 11905: 0xEBC7,\n\t32942 - 11905: 0xB0B9,\n\t32943 - 11905: 0xBFCF,\n\t32944 - 11905: 0xC356,\n\t32945 - 11905: 0xEBC5,\n\t32946 - 11905: 0xD3FD,\n\t32947 - 11905: 0xC357,\n\t32948 - 11905: 0xEBC8,\n\t32949 - 11905: 0xC358,\n\t32950 - 11905: 0xC359,\n\t32951 - 11905: 0xEBC9,\n\t32952 - 11905: 0xC35A,\n\t32953 - 11905: 0xC35B,\n\t32954 - 11905: 0xB7CE,\n\t32955 - 11905: 0xC35C,\n\t32956 - 11905: 0xEBC2,\n\t32957 - 11905: 0xEBC4,\n\t32958 - 11905: 0xC9F6,\n\t32959 - 11905: 0xD6D7,\n\t32960 - 11905: 0xD5CD,\n\t32961 - 11905: 0xD0B2,\n\t32962 - 11905: 0xEBCF,\n\t32963 - 11905: 0xCEB8,\n\t32964 - 11905: 0xEBD0,\n\t32965 - 11905: 0xC35D,\n\t32966 - 11905: 0xB5A8,\n\t32967 - 11905: 0xC35E,\n\t32968 - 11905: 0xC35F,\n\t32969 - 11905: 0xC360,\n\t32970 - 11905: 0xC361,\n\t32971 - 11905: 0xC362,\n\t32972 - 11905: 0xB1B3,\n\t32973 - 11905: 0xEBD2,\n\t32974 - 11905: 0xCCA5,\n\t32975 - 11905: 0xC363,\n\t32976 - 11905: 0xC364,\n\t32977 - 11905: 0xC365,\n\t32978 - 11905: 0xC366,\n\t32979 - 11905: 0xC367,\n\t32980 - 11905: 0xC368,\n\t32981 - 11905: 0xC369,\n\t32982 - 11905: 0xC5D6,\n\t32983 - 11905: 0xEBD3,\n\t32984 - 11905: 0xC36A,\n\t32985 - 11905: 0xEBD1,\n\t32986 - 11905: 0xC5DF,\n\t32987 - 11905: 0xEBCE,\n\t32988 - 11905: 0xCAA4,\n\t32989 - 11905: 0xEBD5,\n\t32990 - 11905: 0xB0FB,\n\t32991 - 11905: 0xC36B,\n\t32992 - 11905: 0xC36C,\n\t32993 - 11905: 0xBAFA,\n\t32994 - 11905: 0xC36D,\n\t32995 - 11905: 0xC36E,\n\t32996 - 11905: 0xD8B7,\n\t32997 - 11905: 0xF1E3,\n\t32998 - 11905: 0xC36F,\n\t32999 - 11905: 0xEBCA,\n\t33000 - 11905: 0xEBCB,\n\t33001 - 11905: 0xEBCC,\n\t33002 - 11905: 0xEBCD,\n\t33003 - 11905: 0xEBD6,\n\t33004 - 11905: 0xE6C0,\n\t33005 - 11905: 0xEBD9,\n\t33006 - 11905: 0xC370,\n\t33007 - 11905: 0xBFE8,\n\t33008 - 11905: 0xD2C8,\n\t33009 - 11905: 0xEBD7,\n\t33010 - 11905: 0xEBDC,\n\t33011 - 11905: 0xB8EC,\n\t33012 - 11905: 0xEBD8,\n\t33013 - 11905: 0xC371,\n\t33014 - 11905: 0xBDBA,\n\t33015 - 11905: 0xC372,\n\t33016 - 11905: 0xD0D8,\n\t33017 - 11905: 0xC373,\n\t33018 - 11905: 0xB0B7,\n\t33019 - 11905: 0xC374,\n\t33020 - 11905: 0xEBDD,\n\t33021 - 11905: 0xC4DC,\n\t33022 - 11905: 0xC375,\n\t33023 - 11905: 0xC376,\n\t33024 - 11905: 0xC377,\n\t33025 - 11905: 0xC378,\n\t33026 - 11905: 0xD6AC,\n\t33027 - 11905: 0xC379,\n\t33028 - 11905: 0xC37A,\n\t33029 - 11905: 0xC37B,\n\t33030 - 11905: 0xB4E0,\n\t33031 - 11905: 0xC37C,\n\t33032 - 11905: 0xC37D,\n\t33033 - 11905: 0xC2F6,\n\t33034 - 11905: 0xBCB9,\n\t33035 - 11905: 0xC37E,\n\t33036 - 11905: 0xC380,\n\t33037 - 11905: 0xEBDA,\n\t33038 - 11905: 0xEBDB,\n\t33039 - 11905: 0xD4E0,\n\t33040 - 11905: 0xC6EA,\n\t33041 - 11905: 0xC4D4,\n\t33042 - 11905: 0xEBDF,\n\t33043 - 11905: 0xC5A7,\n\t33044 - 11905: 0xD9F5,\n\t33045 - 11905: 0xC381,\n\t33046 - 11905: 0xB2B1,\n\t33047 - 11905: 0xC382,\n\t33048 - 11905: 0xEBE4,\n\t33049 - 11905: 0xC383,\n\t33050 - 11905: 0xBDC5,\n\t33051 - 11905: 0xC384,\n\t33052 - 11905: 0xC385,\n\t33053 - 11905: 0xC386,\n\t33054 - 11905: 0xEBE2,\n\t33055 - 11905: 0xC387,\n\t33056 - 11905: 0xC388,\n\t33057 - 11905: 0xC389,\n\t33058 - 11905: 0xC38A,\n\t33059 - 11905: 0xC38B,\n\t33060 - 11905: 0xC38C,\n\t33061 - 11905: 0xC38D,\n\t33062 - 11905: 0xC38E,\n\t33063 - 11905: 0xC38F,\n\t33064 - 11905: 0xC390,\n\t33065 - 11905: 0xC391,\n\t33066 - 11905: 0xC392,\n\t33067 - 11905: 0xC393,\n\t33068 - 11905: 0xEBE3,\n\t33069 - 11905: 0xC394,\n\t33070 - 11905: 0xC395,\n\t33071 - 11905: 0xB8AC,\n\t33072 - 11905: 0xC396,\n\t33073 - 11905: 0xCDD1,\n\t33074 - 11905: 0xEBE5,\n\t33075 - 11905: 0xC397,\n\t33076 - 11905: 0xC398,\n\t33077 - 11905: 0xC399,\n\t33078 - 11905: 0xEBE1,\n\t33079 - 11905: 0xC39A,\n\t33080 - 11905: 0xC1B3,\n\t33081 - 11905: 0xC39B,\n\t33082 - 11905: 0xC39C,\n\t33083 - 11905: 0xC39D,\n\t33084 - 11905: 0xC39E,\n\t33085 - 11905: 0xC39F,\n\t33086 - 11905: 0xC6A2,\n\t33087 - 11905: 0xC3A0,\n\t33088 - 11905: 0xC440,\n\t33089 - 11905: 0xC441,\n\t33090 - 11905: 0xC442,\n\t33091 - 11905: 0xC443,\n\t33092 - 11905: 0xC444,\n\t33093 - 11905: 0xC445,\n\t33094 - 11905: 0xCCF3,\n\t33095 - 11905: 0xC446,\n\t33096 - 11905: 0xEBE6,\n\t33097 - 11905: 0xC447,\n\t33098 - 11905: 0xC0B0,\n\t33099 - 11905: 0xD2B8,\n\t33100 - 11905: 0xEBE7,\n\t33101 - 11905: 0xC448,\n\t33102 - 11905: 0xC449,\n\t33103 - 11905: 0xC44A,\n\t33104 - 11905: 0xB8AF,\n\t33105 - 11905: 0xB8AD,\n\t33106 - 11905: 0xC44B,\n\t33107 - 11905: 0xEBE8,\n\t33108 - 11905: 0xC7BB,\n\t33109 - 11905: 0xCDF3,\n\t33110 - 11905: 0xC44C,\n\t33111 - 11905: 0xC44D,\n\t33112 - 11905: 0xC44E,\n\t33113 - 11905: 0xEBEA,\n\t33114 - 11905: 0xEBEB,\n\t33115 - 11905: 0xC44F,\n\t33116 - 11905: 0xC450,\n\t33117 - 11905: 0xC451,\n\t33118 - 11905: 0xC452,\n\t33119 - 11905: 0xC453,\n\t33120 - 11905: 0xEBED,\n\t33121 - 11905: 0xC454,\n\t33122 - 11905: 0xC455,\n\t33123 - 11905: 0xC456,\n\t33124 - 11905: 0xC457,\n\t33125 - 11905: 0xD0C8,\n\t33126 - 11905: 0xC458,\n\t33127 - 11905: 0xEBF2,\n\t33128 - 11905: 0xC459,\n\t33129 - 11905: 0xEBEE,\n\t33130 - 11905: 0xC45A,\n\t33131 - 11905: 0xC45B,\n\t33132 - 11905: 0xC45C,\n\t33133 - 11905: 0xEBF1,\n\t33134 - 11905: 0xC8F9,\n\t33135 - 11905: 0xC45D,\n\t33136 - 11905: 0xD1FC,\n\t33137 - 11905: 0xEBEC,\n\t33138 - 11905: 0xC45E,\n\t33139 - 11905: 0xC45F,\n\t33140 - 11905: 0xEBE9,\n\t33141 - 11905: 0xC460,\n\t33142 - 11905: 0xC461,\n\t33143 - 11905: 0xC462,\n\t33144 - 11905: 0xC463,\n\t33145 - 11905: 0xB8B9,\n\t33146 - 11905: 0xCFD9,\n\t33147 - 11905: 0xC4E5,\n\t33148 - 11905: 0xEBEF,\n\t33149 - 11905: 0xEBF0,\n\t33150 - 11905: 0xCCDA,\n\t33151 - 11905: 0xCDC8,\n\t33152 - 11905: 0xB0F2,\n\t33153 - 11905: 0xC464,\n\t33154 - 11905: 0xEBF6,\n\t33155 - 11905: 0xC465,\n\t33156 - 11905: 0xC466,\n\t33157 - 11905: 0xC467,\n\t33158 - 11905: 0xC468,\n\t33159 - 11905: 0xC469,\n\t33160 - 11905: 0xEBF5,\n\t33161 - 11905: 0xC46A,\n\t33162 - 11905: 0xB2B2,\n\t33163 - 11905: 0xC46B,\n\t33164 - 11905: 0xC46C,\n\t33165 - 11905: 0xC46D,\n\t33166 - 11905: 0xC46E,\n\t33167 - 11905: 0xB8E0,\n\t33168 - 11905: 0xC46F,\n\t33169 - 11905: 0xEBF7,\n\t33170 - 11905: 0xC470,\n\t33171 - 11905: 0xC471,\n\t33172 - 11905: 0xC472,\n\t33173 - 11905: 0xC473,\n\t33174 - 11905: 0xC474,\n\t33175 - 11905: 0xC475,\n\t33176 - 11905: 0xB1EC,\n\t33177 - 11905: 0xC476,\n\t33178 - 11905: 0xC477,\n\t33179 - 11905: 0xCCC5,\n\t33180 - 11905: 0xC4A4,\n\t33181 - 11905: 0xCFA5,\n\t33182 - 11905: 0xC478,\n\t33183 - 11905: 0xC479,\n\t33184 - 11905: 0xC47A,\n\t33185 - 11905: 0xC47B,\n\t33186 - 11905: 0xC47C,\n\t33187 - 11905: 0xEBF9,\n\t33188 - 11905: 0xC47D,\n\t33189 - 11905: 0xC47E,\n\t33190 - 11905: 0xECA2,\n\t33191 - 11905: 0xC480,\n\t33192 - 11905: 0xC5F2,\n\t33193 - 11905: 0xC481,\n\t33194 - 11905: 0xEBFA,\n\t33195 - 11905: 0xC482,\n\t33196 - 11905: 0xC483,\n\t33197 - 11905: 0xC484,\n\t33198 - 11905: 0xC485,\n\t33199 - 11905: 0xC486,\n\t33200 - 11905: 0xC487,\n\t33201 - 11905: 0xC488,\n\t33202 - 11905: 0xC489,\n\t33203 - 11905: 0xC9C5,\n\t33204 - 11905: 0xC48A,\n\t33205 - 11905: 0xC48B,\n\t33206 - 11905: 0xC48C,\n\t33207 - 11905: 0xC48D,\n\t33208 - 11905: 0xC48E,\n\t33209 - 11905: 0xC48F,\n\t33210 - 11905: 0xE2DF,\n\t33211 - 11905: 0xEBFE,\n\t33212 - 11905: 0xC490,\n\t33213 - 11905: 0xC491,\n\t33214 - 11905: 0xC492,\n\t33215 - 11905: 0xC493,\n\t33216 - 11905: 0xCDCE,\n\t33217 - 11905: 0xECA1,\n\t33218 - 11905: 0xB1DB,\n\t33219 - 11905: 0xD3B7,\n\t33220 - 11905: 0xC494,\n\t33221 - 11905: 0xC495,\n\t33222 - 11905: 0xD2DC,\n\t33223 - 11905: 0xC496,\n\t33224 - 11905: 0xC497,\n\t33225 - 11905: 0xC498,\n\t33226 - 11905: 0xEBFD,\n\t33227 - 11905: 0xC499,\n\t33228 - 11905: 0xEBFB,\n\t33229 - 11905: 0xC49A,\n\t33230 - 11905: 0xC49B,\n\t33231 - 11905: 0xC49C,\n\t33232 - 11905: 0xC49D,\n\t33233 - 11905: 0xC49E,\n\t33234 - 11905: 0xC49F,\n\t33235 - 11905: 0xC4A0,\n\t33236 - 11905: 0xC540,\n\t33237 - 11905: 0xC541,\n\t33238 - 11905: 0xC542,\n\t33239 - 11905: 0xC543,\n\t33240 - 11905: 0xC544,\n\t33241 - 11905: 0xC545,\n\t33242 - 11905: 0xC546,\n\t33243 - 11905: 0xC547,\n\t33244 - 11905: 0xC548,\n\t33245 - 11905: 0xC549,\n\t33246 - 11905: 0xC54A,\n\t33247 - 11905: 0xC54B,\n\t33248 - 11905: 0xC54C,\n\t33249 - 11905: 0xC54D,\n\t33250 - 11905: 0xC54E,\n\t33251 - 11905: 0xB3BC,\n\t33252 - 11905: 0xC54F,\n\t33253 - 11905: 0xC550,\n\t33254 - 11905: 0xC551,\n\t33255 - 11905: 0xEAB0,\n\t33256 - 11905: 0xC552,\n\t33257 - 11905: 0xC553,\n\t33258 - 11905: 0xD7D4,\n\t33259 - 11905: 0xC554,\n\t33260 - 11905: 0xF4AB,\n\t33261 - 11905: 0xB3F4,\n\t33262 - 11905: 0xC555,\n\t33263 - 11905: 0xC556,\n\t33264 - 11905: 0xC557,\n\t33265 - 11905: 0xC558,\n\t33266 - 11905: 0xC559,\n\t33267 - 11905: 0xD6C1,\n\t33268 - 11905: 0xD6C2,\n\t33269 - 11905: 0xC55A,\n\t33270 - 11905: 0xC55B,\n\t33271 - 11905: 0xC55C,\n\t33272 - 11905: 0xC55D,\n\t33273 - 11905: 0xC55E,\n\t33274 - 11905: 0xC55F,\n\t33275 - 11905: 0xD5E9,\n\t33276 - 11905: 0xBECA,\n\t33277 - 11905: 0xC560,\n\t33278 - 11905: 0xF4A7,\n\t33279 - 11905: 0xC561,\n\t33280 - 11905: 0xD2A8,\n\t33281 - 11905: 0xF4A8,\n\t33282 - 11905: 0xF4A9,\n\t33283 - 11905: 0xC562,\n\t33284 - 11905: 0xF4AA,\n\t33285 - 11905: 0xBECB,\n\t33286 - 11905: 0xD3DF,\n\t33287 - 11905: 0xC563,\n\t33288 - 11905: 0xC564,\n\t33289 - 11905: 0xC565,\n\t33290 - 11905: 0xC566,\n\t33291 - 11905: 0xC567,\n\t33292 - 11905: 0xC9E0,\n\t33293 - 11905: 0xC9E1,\n\t33294 - 11905: 0xC568,\n\t33295 - 11905: 0xC569,\n\t33296 - 11905: 0xF3C2,\n\t33297 - 11905: 0xC56A,\n\t33298 - 11905: 0xCAE6,\n\t33299 - 11905: 0xC56B,\n\t33300 - 11905: 0xCCF2,\n\t33301 - 11905: 0xC56C,\n\t33302 - 11905: 0xC56D,\n\t33303 - 11905: 0xC56E,\n\t33304 - 11905: 0xC56F,\n\t33305 - 11905: 0xC570,\n\t33306 - 11905: 0xC571,\n\t33307 - 11905: 0xE2B6,\n\t33308 - 11905: 0xCBB4,\n\t33309 - 11905: 0xC572,\n\t33310 - 11905: 0xCEE8,\n\t33311 - 11905: 0xD6DB,\n\t33312 - 11905: 0xC573,\n\t33313 - 11905: 0xF4AD,\n\t33314 - 11905: 0xF4AE,\n\t33315 - 11905: 0xF4AF,\n\t33316 - 11905: 0xC574,\n\t33317 - 11905: 0xC575,\n\t33318 - 11905: 0xC576,\n\t33319 - 11905: 0xC577,\n\t33320 - 11905: 0xF4B2,\n\t33321 - 11905: 0xC578,\n\t33322 - 11905: 0xBABD,\n\t33323 - 11905: 0xF4B3,\n\t33324 - 11905: 0xB0E3,\n\t33325 - 11905: 0xF4B0,\n\t33326 - 11905: 0xC579,\n\t33327 - 11905: 0xF4B1,\n\t33328 - 11905: 0xBDA2,\n\t33329 - 11905: 0xB2D5,\n\t33330 - 11905: 0xC57A,\n\t33331 - 11905: 0xF4B6,\n\t33332 - 11905: 0xF4B7,\n\t33333 - 11905: 0xB6E6,\n\t33334 - 11905: 0xB2B0,\n\t33335 - 11905: 0xCFCF,\n\t33336 - 11905: 0xF4B4,\n\t33337 - 11905: 0xB4AC,\n\t33338 - 11905: 0xC57B,\n\t33339 - 11905: 0xF4B5,\n\t33340 - 11905: 0xC57C,\n\t33341 - 11905: 0xC57D,\n\t33342 - 11905: 0xF4B8,\n\t33343 - 11905: 0xC57E,\n\t33344 - 11905: 0xC580,\n\t33345 - 11905: 0xC581,\n\t33346 - 11905: 0xC582,\n\t33347 - 11905: 0xC583,\n\t33348 - 11905: 0xF4B9,\n\t33349 - 11905: 0xC584,\n\t33350 - 11905: 0xC585,\n\t33351 - 11905: 0xCDA7,\n\t33352 - 11905: 0xC586,\n\t33353 - 11905: 0xF4BA,\n\t33354 - 11905: 0xC587,\n\t33355 - 11905: 0xF4BB,\n\t33356 - 11905: 0xC588,\n\t33357 - 11905: 0xC589,\n\t33358 - 11905: 0xC58A,\n\t33359 - 11905: 0xF4BC,\n\t33360 - 11905: 0xC58B,\n\t33361 - 11905: 0xC58C,\n\t33362 - 11905: 0xC58D,\n\t33363 - 11905: 0xC58E,\n\t33364 - 11905: 0xC58F,\n\t33365 - 11905: 0xC590,\n\t33366 - 11905: 0xC591,\n\t33367 - 11905: 0xC592,\n\t33368 - 11905: 0xCBD2,\n\t33369 - 11905: 0xC593,\n\t33370 - 11905: 0xF4BD,\n\t33371 - 11905: 0xC594,\n\t33372 - 11905: 0xC595,\n\t33373 - 11905: 0xC596,\n\t33374 - 11905: 0xC597,\n\t33375 - 11905: 0xF4BE,\n\t33376 - 11905: 0xC598,\n\t33377 - 11905: 0xC599,\n\t33378 - 11905: 0xC59A,\n\t33379 - 11905: 0xC59B,\n\t33380 - 11905: 0xC59C,\n\t33381 - 11905: 0xC59D,\n\t33382 - 11905: 0xC59E,\n\t33383 - 11905: 0xC59F,\n\t33384 - 11905: 0xF4BF,\n\t33385 - 11905: 0xC5A0,\n\t33386 - 11905: 0xC640,\n\t33387 - 11905: 0xC641,\n\t33388 - 11905: 0xC642,\n\t33389 - 11905: 0xC643,\n\t33390 - 11905: 0xF4DE,\n\t33391 - 11905: 0xC1BC,\n\t33392 - 11905: 0xBCE8,\n\t33393 - 11905: 0xC644,\n\t33394 - 11905: 0xC9AB,\n\t33395 - 11905: 0xD1DE,\n\t33396 - 11905: 0xE5F5,\n\t33397 - 11905: 0xC645,\n\t33398 - 11905: 0xC646,\n\t33399 - 11905: 0xC647,\n\t33400 - 11905: 0xC648,\n\t33401 - 11905: 0xDCB3,\n\t33402 - 11905: 0xD2D5,\n\t33403 - 11905: 0xC649,\n\t33404 - 11905: 0xC64A,\n\t33405 - 11905: 0xDCB4,\n\t33406 - 11905: 0xB0AC,\n\t33407 - 11905: 0xDCB5,\n\t33408 - 11905: 0xC64B,\n\t33409 - 11905: 0xC64C,\n\t33410 - 11905: 0xBDDA,\n\t33411 - 11905: 0xC64D,\n\t33412 - 11905: 0xDCB9,\n\t33413 - 11905: 0xC64E,\n\t33414 - 11905: 0xC64F,\n\t33415 - 11905: 0xC650,\n\t33416 - 11905: 0xD8C2,\n\t33417 - 11905: 0xC651,\n\t33418 - 11905: 0xDCB7,\n\t33419 - 11905: 0xD3F3,\n\t33420 - 11905: 0xC652,\n\t33421 - 11905: 0xC9D6,\n\t33422 - 11905: 0xDCBA,\n\t33423 - 11905: 0xDCB6,\n\t33424 - 11905: 0xC653,\n\t33425 - 11905: 0xDCBB,\n\t33426 - 11905: 0xC3A2,\n\t33427 - 11905: 0xC654,\n\t33428 - 11905: 0xC655,\n\t33429 - 11905: 0xC656,\n\t33430 - 11905: 0xC657,\n\t33431 - 11905: 0xDCBC,\n\t33432 - 11905: 0xDCC5,\n\t33433 - 11905: 0xDCBD,\n\t33434 - 11905: 0xC658,\n\t33435 - 11905: 0xC659,\n\t33436 - 11905: 0xCEDF,\n\t33437 - 11905: 0xD6A5,\n\t33438 - 11905: 0xC65A,\n\t33439 - 11905: 0xDCCF,\n\t33440 - 11905: 0xC65B,\n\t33441 - 11905: 0xDCCD,\n\t33442 - 11905: 0xC65C,\n\t33443 - 11905: 0xC65D,\n\t33444 - 11905: 0xDCD2,\n\t33445 - 11905: 0xBDE6,\n\t33446 - 11905: 0xC2AB,\n\t33447 - 11905: 0xC65E,\n\t33448 - 11905: 0xDCB8,\n\t33449 - 11905: 0xDCCB,\n\t33450 - 11905: 0xDCCE,\n\t33451 - 11905: 0xDCBE,\n\t33452 - 11905: 0xB7D2,\n\t33453 - 11905: 0xB0C5,\n\t33454 - 11905: 0xDCC7,\n\t33455 - 11905: 0xD0BE,\n\t33456 - 11905: 0xDCC1,\n\t33457 - 11905: 0xBBA8,\n\t33458 - 11905: 0xC65F,\n\t33459 - 11905: 0xB7BC,\n\t33460 - 11905: 0xDCCC,\n\t33461 - 11905: 0xC660,\n\t33462 - 11905: 0xC661,\n\t33463 - 11905: 0xDCC6,\n\t33464 - 11905: 0xDCBF,\n\t33465 - 11905: 0xC7DB,\n\t33466 - 11905: 0xC662,\n\t33467 - 11905: 0xC663,\n\t33468 - 11905: 0xC664,\n\t33469 - 11905: 0xD1BF,\n\t33470 - 11905: 0xDCC0,\n\t33471 - 11905: 0xC665,\n\t33472 - 11905: 0xC666,\n\t33473 - 11905: 0xDCCA,\n\t33474 - 11905: 0xC667,\n\t33475 - 11905: 0xC668,\n\t33476 - 11905: 0xDCD0,\n\t33477 - 11905: 0xC669,\n\t33478 - 11905: 0xC66A,\n\t33479 - 11905: 0xCEAD,\n\t33480 - 11905: 0xDCC2,\n\t33481 - 11905: 0xC66B,\n\t33482 - 11905: 0xDCC3,\n\t33483 - 11905: 0xDCC8,\n\t33484 - 11905: 0xDCC9,\n\t33485 - 11905: 0xB2D4,\n\t33486 - 11905: 0xDCD1,\n\t33487 - 11905: 0xCBD5,\n\t33488 - 11905: 0xC66C,\n\t33489 - 11905: 0xD4B7,\n\t33490 - 11905: 0xDCDB,\n\t33491 - 11905: 0xDCDF,\n\t33492 - 11905: 0xCCA6,\n\t33493 - 11905: 0xDCE6,\n\t33494 - 11905: 0xC66D,\n\t33495 - 11905: 0xC3E7,\n\t33496 - 11905: 0xDCDC,\n\t33497 - 11905: 0xC66E,\n\t33498 - 11905: 0xC66F,\n\t33499 - 11905: 0xBFC1,\n\t33500 - 11905: 0xDCD9,\n\t33501 - 11905: 0xC670,\n\t33502 - 11905: 0xB0FA,\n\t33503 - 11905: 0xB9B6,\n\t33504 - 11905: 0xDCE5,\n\t33505 - 11905: 0xDCD3,\n\t33506 - 11905: 0xC671,\n\t33507 - 11905: 0xDCC4,\n\t33508 - 11905: 0xDCD6,\n\t33509 - 11905: 0xC8F4,\n\t33510 - 11905: 0xBFE0,\n\t33511 - 11905: 0xC672,\n\t33512 - 11905: 0xC673,\n\t33513 - 11905: 0xC674,\n\t33514 - 11905: 0xC675,\n\t33515 - 11905: 0xC9BB,\n\t33516 - 11905: 0xC676,\n\t33517 - 11905: 0xC677,\n\t33518 - 11905: 0xC678,\n\t33519 - 11905: 0xB1BD,\n\t33520 - 11905: 0xC679,\n\t33521 - 11905: 0xD3A2,\n\t33522 - 11905: 0xC67A,\n\t33523 - 11905: 0xC67B,\n\t33524 - 11905: 0xDCDA,\n\t33525 - 11905: 0xC67C,\n\t33526 - 11905: 0xC67D,\n\t33527 - 11905: 0xDCD5,\n\t33528 - 11905: 0xC67E,\n\t33529 - 11905: 0xC6BB,\n\t33530 - 11905: 0xC680,\n\t33531 - 11905: 0xDCDE,\n\t33532 - 11905: 0xC681,\n\t33533 - 11905: 0xC682,\n\t33534 - 11905: 0xC683,\n\t33535 - 11905: 0xC684,\n\t33536 - 11905: 0xC685,\n\t33537 - 11905: 0xD7C2,\n\t33538 - 11905: 0xC3AF,\n\t33539 - 11905: 0xB7B6,\n\t33540 - 11905: 0xC7D1,\n\t33541 - 11905: 0xC3A9,\n\t33542 - 11905: 0xDCE2,\n\t33543 - 11905: 0xDCD8,\n\t33544 - 11905: 0xDCEB,\n\t33545 - 11905: 0xDCD4,\n\t33546 - 11905: 0xC686,\n\t33547 - 11905: 0xC687,\n\t33548 - 11905: 0xDCDD,\n\t33549 - 11905: 0xC688,\n\t33550 - 11905: 0xBEA5,\n\t33551 - 11905: 0xDCD7,\n\t33552 - 11905: 0xC689,\n\t33553 - 11905: 0xDCE0,\n\t33554 - 11905: 0xC68A,\n\t33555 - 11905: 0xC68B,\n\t33556 - 11905: 0xDCE3,\n\t33557 - 11905: 0xDCE4,\n\t33558 - 11905: 0xC68C,\n\t33559 - 11905: 0xDCF8,\n\t33560 - 11905: 0xC68D,\n\t33561 - 11905: 0xC68E,\n\t33562 - 11905: 0xDCE1,\n\t33563 - 11905: 0xDDA2,\n\t33564 - 11905: 0xDCE7,\n\t33565 - 11905: 0xC68F,\n\t33566 - 11905: 0xC690,\n\t33567 - 11905: 0xC691,\n\t33568 - 11905: 0xC692,\n\t33569 - 11905: 0xC693,\n\t33570 - 11905: 0xC694,\n\t33571 - 11905: 0xC695,\n\t33572 - 11905: 0xC696,\n\t33573 - 11905: 0xC697,\n\t33574 - 11905: 0xC698,\n\t33575 - 11905: 0xBCEB,\n\t33576 - 11905: 0xB4C4,\n\t33577 - 11905: 0xC699,\n\t33578 - 11905: 0xC69A,\n\t33579 - 11905: 0xC3A3,\n\t33580 - 11905: 0xB2E7,\n\t33581 - 11905: 0xDCFA,\n\t33582 - 11905: 0xC69B,\n\t33583 - 11905: 0xDCF2,\n\t33584 - 11905: 0xC69C,\n\t33585 - 11905: 0xDCEF,\n\t33586 - 11905: 0xC69D,\n\t33587 - 11905: 0xDCFC,\n\t33588 - 11905: 0xDCEE,\n\t33589 - 11905: 0xD2F0,\n\t33590 - 11905: 0xB2E8,\n\t33591 - 11905: 0xC69E,\n\t33592 - 11905: 0xC8D7,\n\t33593 - 11905: 0xC8E3,\n\t33594 - 11905: 0xDCFB,\n\t33595 - 11905: 0xC69F,\n\t33596 - 11905: 0xDCED,\n\t33597 - 11905: 0xC6A0,\n\t33598 - 11905: 0xC740,\n\t33599 - 11905: 0xC741,\n\t33600 - 11905: 0xDCF7,\n\t33601 - 11905: 0xC742,\n\t33602 - 11905: 0xC743,\n\t33603 - 11905: 0xDCF5,\n\t33604 - 11905: 0xC744,\n\t33605 - 11905: 0xC745,\n\t33606 - 11905: 0xBEA3,\n\t33607 - 11905: 0xDCF4,\n\t33608 - 11905: 0xC746,\n\t33609 - 11905: 0xB2DD,\n\t33610 - 11905: 0xC747,\n\t33611 - 11905: 0xC748,\n\t33612 - 11905: 0xC749,\n\t33613 - 11905: 0xC74A,\n\t33614 - 11905: 0xC74B,\n\t33615 - 11905: 0xDCF3,\n\t33616 - 11905: 0xBCF6,\n\t33617 - 11905: 0xDCE8,\n\t33618 - 11905: 0xBBC4,\n\t33619 - 11905: 0xC74C,\n\t33620 - 11905: 0xC0F3,\n\t33621 - 11905: 0xC74D,\n\t33622 - 11905: 0xC74E,\n\t33623 - 11905: 0xC74F,\n\t33624 - 11905: 0xC750,\n\t33625 - 11905: 0xC751,\n\t33626 - 11905: 0xBCD4,\n\t33627 - 11905: 0xDCE9,\n\t33628 - 11905: 0xDCEA,\n\t33629 - 11905: 0xC752,\n\t33630 - 11905: 0xDCF1,\n\t33631 - 11905: 0xDCF6,\n\t33632 - 11905: 0xDCF9,\n\t33633 - 11905: 0xB5B4,\n\t33634 - 11905: 0xC753,\n\t33635 - 11905: 0xC8D9,\n\t33636 - 11905: 0xBBE7,\n\t33637 - 11905: 0xDCFE,\n\t33638 - 11905: 0xDCFD,\n\t33639 - 11905: 0xD3AB,\n\t33640 - 11905: 0xDDA1,\n\t33641 - 11905: 0xDDA3,\n\t33642 - 11905: 0xDDA5,\n\t33643 - 11905: 0xD2F1,\n\t33644 - 11905: 0xDDA4,\n\t33645 - 11905: 0xDDA6,\n\t33646 - 11905: 0xDDA7,\n\t33647 - 11905: 0xD2A9,\n\t33648 - 11905: 0xC754,\n\t33649 - 11905: 0xC755,\n\t33650 - 11905: 0xC756,\n\t33651 - 11905: 0xC757,\n\t33652 - 11905: 0xC758,\n\t33653 - 11905: 0xC759,\n\t33654 - 11905: 0xC75A,\n\t33655 - 11905: 0xBAC9,\n\t33656 - 11905: 0xDDA9,\n\t33657 - 11905: 0xC75B,\n\t33658 - 11905: 0xC75C,\n\t33659 - 11905: 0xDDB6,\n\t33660 - 11905: 0xDDB1,\n\t33661 - 11905: 0xDDB4,\n\t33662 - 11905: 0xC75D,\n\t33663 - 11905: 0xC75E,\n\t33664 - 11905: 0xC75F,\n\t33665 - 11905: 0xC760,\n\t33666 - 11905: 0xC761,\n\t33667 - 11905: 0xC762,\n\t33668 - 11905: 0xC763,\n\t33669 - 11905: 0xDDB0,\n\t33670 - 11905: 0xC6CE,\n\t33671 - 11905: 0xC764,\n\t33672 - 11905: 0xC765,\n\t33673 - 11905: 0xC0F2,\n\t33674 - 11905: 0xC766,\n\t33675 - 11905: 0xC767,\n\t33676 - 11905: 0xC768,\n\t33677 - 11905: 0xC769,\n\t33678 - 11905: 0xC9AF,\n\t33679 - 11905: 0xC76A,\n\t33680 - 11905: 0xC76B,\n\t33681 - 11905: 0xC76C,\n\t33682 - 11905: 0xDCEC,\n\t33683 - 11905: 0xDDAE,\n\t33684 - 11905: 0xC76D,\n\t33685 - 11905: 0xC76E,\n\t33686 - 11905: 0xC76F,\n\t33687 - 11905: 0xC770,\n\t33688 - 11905: 0xDDB7,\n\t33689 - 11905: 0xC771,\n\t33690 - 11905: 0xC772,\n\t33691 - 11905: 0xDCF0,\n\t33692 - 11905: 0xDDAF,\n\t33693 - 11905: 0xC773,\n\t33694 - 11905: 0xDDB8,\n\t33695 - 11905: 0xC774,\n\t33696 - 11905: 0xDDAC,\n\t33697 - 11905: 0xC775,\n\t33698 - 11905: 0xC776,\n\t33699 - 11905: 0xC777,\n\t33700 - 11905: 0xC778,\n\t33701 - 11905: 0xC779,\n\t33702 - 11905: 0xC77A,\n\t33703 - 11905: 0xC77B,\n\t33704 - 11905: 0xDDB9,\n\t33705 - 11905: 0xDDB3,\n\t33706 - 11905: 0xDDAD,\n\t33707 - 11905: 0xC4AA,\n\t33708 - 11905: 0xC77C,\n\t33709 - 11905: 0xC77D,\n\t33710 - 11905: 0xC77E,\n\t33711 - 11905: 0xC780,\n\t33712 - 11905: 0xDDA8,\n\t33713 - 11905: 0xC0B3,\n\t33714 - 11905: 0xC1AB,\n\t33715 - 11905: 0xDDAA,\n\t33716 - 11905: 0xDDAB,\n\t33717 - 11905: 0xC781,\n\t33718 - 11905: 0xDDB2,\n\t33719 - 11905: 0xBBF1,\n\t33720 - 11905: 0xDDB5,\n\t33721 - 11905: 0xD3A8,\n\t33722 - 11905: 0xDDBA,\n\t33723 - 11905: 0xC782,\n\t33724 - 11905: 0xDDBB,\n\t33725 - 11905: 0xC3A7,\n\t33726 - 11905: 0xC783,\n\t33727 - 11905: 0xC784,\n\t33728 - 11905: 0xDDD2,\n\t33729 - 11905: 0xDDBC,\n\t33730 - 11905: 0xC785,\n\t33731 - 11905: 0xC786,\n\t33732 - 11905: 0xC787,\n\t33733 - 11905: 0xDDD1,\n\t33734 - 11905: 0xC788,\n\t33735 - 11905: 0xB9BD,\n\t33736 - 11905: 0xC789,\n\t33737 - 11905: 0xC78A,\n\t33738 - 11905: 0xBED5,\n\t33739 - 11905: 0xC78B,\n\t33740 - 11905: 0xBEFA,\n\t33741 - 11905: 0xC78C,\n\t33742 - 11905: 0xC78D,\n\t33743 - 11905: 0xBACA,\n\t33744 - 11905: 0xC78E,\n\t33745 - 11905: 0xC78F,\n\t33746 - 11905: 0xC790,\n\t33747 - 11905: 0xC791,\n\t33748 - 11905: 0xDDCA,\n\t33749 - 11905: 0xC792,\n\t33750 - 11905: 0xDDC5,\n\t33751 - 11905: 0xC793,\n\t33752 - 11905: 0xDDBF,\n\t33753 - 11905: 0xC794,\n\t33754 - 11905: 0xC795,\n\t33755 - 11905: 0xC796,\n\t33756 - 11905: 0xB2CB,\n\t33757 - 11905: 0xDDC3,\n\t33758 - 11905: 0xC797,\n\t33759 - 11905: 0xDDCB,\n\t33760 - 11905: 0xB2A4,\n\t33761 - 11905: 0xDDD5,\n\t33762 - 11905: 0xC798,\n\t33763 - 11905: 0xC799,\n\t33764 - 11905: 0xC79A,\n\t33765 - 11905: 0xDDBE,\n\t33766 - 11905: 0xC79B,\n\t33767 - 11905: 0xC79C,\n\t33768 - 11905: 0xC79D,\n\t33769 - 11905: 0xC6D0,\n\t33770 - 11905: 0xDDD0,\n\t33771 - 11905: 0xC79E,\n\t33772 - 11905: 0xC79F,\n\t33773 - 11905: 0xC7A0,\n\t33774 - 11905: 0xC840,\n\t33775 - 11905: 0xC841,\n\t33776 - 11905: 0xDDD4,\n\t33777 - 11905: 0xC1E2,\n\t33778 - 11905: 0xB7C6,\n\t33779 - 11905: 0xC842,\n\t33780 - 11905: 0xC843,\n\t33781 - 11905: 0xC844,\n\t33782 - 11905: 0xC845,\n\t33783 - 11905: 0xC846,\n\t33784 - 11905: 0xDDCE,\n\t33785 - 11905: 0xDDCF,\n\t33786 - 11905: 0xC847,\n\t33787 - 11905: 0xC848,\n\t33788 - 11905: 0xC849,\n\t33789 - 11905: 0xDDC4,\n\t33790 - 11905: 0xC84A,\n\t33791 - 11905: 0xC84B,\n\t33792 - 11905: 0xC84C,\n\t33793 - 11905: 0xDDBD,\n\t33794 - 11905: 0xC84D,\n\t33795 - 11905: 0xDDCD,\n\t33796 - 11905: 0xCCD1,\n\t33797 - 11905: 0xC84E,\n\t33798 - 11905: 0xDDC9,\n\t33799 - 11905: 0xC84F,\n\t33800 - 11905: 0xC850,\n\t33801 - 11905: 0xC851,\n\t33802 - 11905: 0xC852,\n\t33803 - 11905: 0xDDC2,\n\t33804 - 11905: 0xC3C8,\n\t33805 - 11905: 0xC6BC,\n\t33806 - 11905: 0xCEAE,\n\t33807 - 11905: 0xDDCC,\n\t33808 - 11905: 0xC853,\n\t33809 - 11905: 0xDDC8,\n\t33810 - 11905: 0xC854,\n\t33811 - 11905: 0xC855,\n\t33812 - 11905: 0xC856,\n\t33813 - 11905: 0xC857,\n\t33814 - 11905: 0xC858,\n\t33815 - 11905: 0xC859,\n\t33816 - 11905: 0xDDC1,\n\t33817 - 11905: 0xC85A,\n\t33818 - 11905: 0xC85B,\n\t33819 - 11905: 0xC85C,\n\t33820 - 11905: 0xDDC6,\n\t33821 - 11905: 0xC2DC,\n\t33822 - 11905: 0xC85D,\n\t33823 - 11905: 0xC85E,\n\t33824 - 11905: 0xC85F,\n\t33825 - 11905: 0xC860,\n\t33826 - 11905: 0xC861,\n\t33827 - 11905: 0xC862,\n\t33828 - 11905: 0xD3A9,\n\t33829 - 11905: 0xD3AA,\n\t33830 - 11905: 0xDDD3,\n\t33831 - 11905: 0xCFF4,\n\t33832 - 11905: 0xC8F8,\n\t33833 - 11905: 0xC863,\n\t33834 - 11905: 0xC864,\n\t33835 - 11905: 0xC865,\n\t33836 - 11905: 0xC866,\n\t33837 - 11905: 0xC867,\n\t33838 - 11905: 0xC868,\n\t33839 - 11905: 0xC869,\n\t33840 - 11905: 0xC86A,\n\t33841 - 11905: 0xDDE6,\n\t33842 - 11905: 0xC86B,\n\t33843 - 11905: 0xC86C,\n\t33844 - 11905: 0xC86D,\n\t33845 - 11905: 0xC86E,\n\t33846 - 11905: 0xC86F,\n\t33847 - 11905: 0xC870,\n\t33848 - 11905: 0xDDC7,\n\t33849 - 11905: 0xC871,\n\t33850 - 11905: 0xC872,\n\t33851 - 11905: 0xC873,\n\t33852 - 11905: 0xDDE0,\n\t33853 - 11905: 0xC2E4,\n\t33854 - 11905: 0xC874,\n\t33855 - 11905: 0xC875,\n\t33856 - 11905: 0xC876,\n\t33857 - 11905: 0xC877,\n\t33858 - 11905: 0xC878,\n\t33859 - 11905: 0xC879,\n\t33860 - 11905: 0xC87A,\n\t33861 - 11905: 0xC87B,\n\t33862 - 11905: 0xDDE1,\n\t33863 - 11905: 0xC87C,\n\t33864 - 11905: 0xC87D,\n\t33865 - 11905: 0xC87E,\n\t33866 - 11905: 0xC880,\n\t33867 - 11905: 0xC881,\n\t33868 - 11905: 0xC882,\n\t33869 - 11905: 0xC883,\n\t33870 - 11905: 0xC884,\n\t33871 - 11905: 0xC885,\n\t33872 - 11905: 0xC886,\n\t33873 - 11905: 0xDDD7,\n\t33874 - 11905: 0xC887,\n\t33875 - 11905: 0xC888,\n\t33876 - 11905: 0xC889,\n\t33877 - 11905: 0xC88A,\n\t33878 - 11905: 0xC88B,\n\t33879 - 11905: 0xD6F8,\n\t33880 - 11905: 0xC88C,\n\t33881 - 11905: 0xDDD9,\n\t33882 - 11905: 0xDDD8,\n\t33883 - 11905: 0xB8F0,\n\t33884 - 11905: 0xDDD6,\n\t33885 - 11905: 0xC88D,\n\t33886 - 11905: 0xC88E,\n\t33887 - 11905: 0xC88F,\n\t33888 - 11905: 0xC890,\n\t33889 - 11905: 0xC6CF,\n\t33890 - 11905: 0xC891,\n\t33891 - 11905: 0xB6AD,\n\t33892 - 11905: 0xC892,\n\t33893 - 11905: 0xC893,\n\t33894 - 11905: 0xC894,\n\t33895 - 11905: 0xC895,\n\t33896 - 11905: 0xC896,\n\t33897 - 11905: 0xDDE2,\n\t33898 - 11905: 0xC897,\n\t33899 - 11905: 0xBAF9,\n\t33900 - 11905: 0xD4E1,\n\t33901 - 11905: 0xDDE7,\n\t33902 - 11905: 0xC898,\n\t33903 - 11905: 0xC899,\n\t33904 - 11905: 0xC89A,\n\t33905 - 11905: 0xB4D0,\n\t33906 - 11905: 0xC89B,\n\t33907 - 11905: 0xDDDA,\n\t33908 - 11905: 0xC89C,\n\t33909 - 11905: 0xBFFB,\n\t33910 - 11905: 0xDDE3,\n\t33911 - 11905: 0xC89D,\n\t33912 - 11905: 0xDDDF,\n\t33913 - 11905: 0xC89E,\n\t33914 - 11905: 0xDDDD,\n\t33915 - 11905: 0xC89F,\n\t33916 - 11905: 0xC8A0,\n\t33917 - 11905: 0xC940,\n\t33918 - 11905: 0xC941,\n\t33919 - 11905: 0xC942,\n\t33920 - 11905: 0xC943,\n\t33921 - 11905: 0xC944,\n\t33922 - 11905: 0xB5D9,\n\t33923 - 11905: 0xC945,\n\t33924 - 11905: 0xC946,\n\t33925 - 11905: 0xC947,\n\t33926 - 11905: 0xC948,\n\t33927 - 11905: 0xDDDB,\n\t33928 - 11905: 0xDDDC,\n\t33929 - 11905: 0xDDDE,\n\t33930 - 11905: 0xC949,\n\t33931 - 11905: 0xBDAF,\n\t33932 - 11905: 0xDDE4,\n\t33933 - 11905: 0xC94A,\n\t33934 - 11905: 0xDDE5,\n\t33935 - 11905: 0xC94B,\n\t33936 - 11905: 0xC94C,\n\t33937 - 11905: 0xC94D,\n\t33938 - 11905: 0xC94E,\n\t33939 - 11905: 0xC94F,\n\t33940 - 11905: 0xC950,\n\t33941 - 11905: 0xC951,\n\t33942 - 11905: 0xC952,\n\t33943 - 11905: 0xDDF5,\n\t33944 - 11905: 0xC953,\n\t33945 - 11905: 0xC3C9,\n\t33946 - 11905: 0xC954,\n\t33947 - 11905: 0xC955,\n\t33948 - 11905: 0xCBE2,\n\t33949 - 11905: 0xC956,\n\t33950 - 11905: 0xC957,\n\t33951 - 11905: 0xC958,\n\t33952 - 11905: 0xC959,\n\t33953 - 11905: 0xDDF2,\n\t33954 - 11905: 0xC95A,\n\t33955 - 11905: 0xC95B,\n\t33956 - 11905: 0xC95C,\n\t33957 - 11905: 0xC95D,\n\t33958 - 11905: 0xC95E,\n\t33959 - 11905: 0xC95F,\n\t33960 - 11905: 0xC960,\n\t33961 - 11905: 0xC961,\n\t33962 - 11905: 0xC962,\n\t33963 - 11905: 0xC963,\n\t33964 - 11905: 0xC964,\n\t33965 - 11905: 0xC965,\n\t33966 - 11905: 0xC966,\n\t33967 - 11905: 0xD8E1,\n\t33968 - 11905: 0xC967,\n\t33969 - 11905: 0xC968,\n\t33970 - 11905: 0xC6D1,\n\t33971 - 11905: 0xC969,\n\t33972 - 11905: 0xDDF4,\n\t33973 - 11905: 0xC96A,\n\t33974 - 11905: 0xC96B,\n\t33975 - 11905: 0xC96C,\n\t33976 - 11905: 0xD5F4,\n\t33977 - 11905: 0xDDF3,\n\t33978 - 11905: 0xDDF0,\n\t33979 - 11905: 0xC96D,\n\t33980 - 11905: 0xC96E,\n\t33981 - 11905: 0xDDEC,\n\t33982 - 11905: 0xC96F,\n\t33983 - 11905: 0xDDEF,\n\t33984 - 11905: 0xC970,\n\t33985 - 11905: 0xDDE8,\n\t33986 - 11905: 0xC971,\n\t33987 - 11905: 0xC972,\n\t33988 - 11905: 0xD0EE,\n\t33989 - 11905: 0xC973,\n\t33990 - 11905: 0xC974,\n\t33991 - 11905: 0xC975,\n\t33992 - 11905: 0xC976,\n\t33993 - 11905: 0xC8D8,\n\t33994 - 11905: 0xDDEE,\n\t33995 - 11905: 0xC977,\n\t33996 - 11905: 0xC978,\n\t33997 - 11905: 0xDDE9,\n\t33998 - 11905: 0xC979,\n\t33999 - 11905: 0xC97A,\n\t34000 - 11905: 0xDDEA,\n\t34001 - 11905: 0xCBF2,\n\t34002 - 11905: 0xC97B,\n\t34003 - 11905: 0xDDED,\n\t34004 - 11905: 0xC97C,\n\t34005 - 11905: 0xC97D,\n\t34006 - 11905: 0xB1CD,\n\t34007 - 11905: 0xC97E,\n\t34008 - 11905: 0xC980,\n\t34009 - 11905: 0xC981,\n\t34010 - 11905: 0xC982,\n\t34011 - 11905: 0xC983,\n\t34012 - 11905: 0xC984,\n\t34013 - 11905: 0xC0B6,\n\t34014 - 11905: 0xC985,\n\t34015 - 11905: 0xBCBB,\n\t34016 - 11905: 0xDDF1,\n\t34017 - 11905: 0xC986,\n\t34018 - 11905: 0xC987,\n\t34019 - 11905: 0xDDF7,\n\t34020 - 11905: 0xC988,\n\t34021 - 11905: 0xDDF6,\n\t34022 - 11905: 0xDDEB,\n\t34023 - 11905: 0xC989,\n\t34024 - 11905: 0xC98A,\n\t34025 - 11905: 0xC98B,\n\t34026 - 11905: 0xC98C,\n\t34027 - 11905: 0xC98D,\n\t34028 - 11905: 0xC5EE,\n\t34029 - 11905: 0xC98E,\n\t34030 - 11905: 0xC98F,\n\t34031 - 11905: 0xC990,\n\t34032 - 11905: 0xDDFB,\n\t34033 - 11905: 0xC991,\n\t34034 - 11905: 0xC992,\n\t34035 - 11905: 0xC993,\n\t34036 - 11905: 0xC994,\n\t34037 - 11905: 0xC995,\n\t34038 - 11905: 0xC996,\n\t34039 - 11905: 0xC997,\n\t34040 - 11905: 0xC998,\n\t34041 - 11905: 0xC999,\n\t34042 - 11905: 0xC99A,\n\t34043 - 11905: 0xC99B,\n\t34044 - 11905: 0xDEA4,\n\t34045 - 11905: 0xC99C,\n\t34046 - 11905: 0xC99D,\n\t34047 - 11905: 0xDEA3,\n\t34048 - 11905: 0xC99E,\n\t34049 - 11905: 0xC99F,\n\t34050 - 11905: 0xC9A0,\n\t34051 - 11905: 0xCA40,\n\t34052 - 11905: 0xCA41,\n\t34053 - 11905: 0xCA42,\n\t34054 - 11905: 0xCA43,\n\t34055 - 11905: 0xCA44,\n\t34056 - 11905: 0xCA45,\n\t34057 - 11905: 0xCA46,\n\t34058 - 11905: 0xCA47,\n\t34059 - 11905: 0xCA48,\n\t34060 - 11905: 0xDDF8,\n\t34061 - 11905: 0xCA49,\n\t34062 - 11905: 0xCA4A,\n\t34063 - 11905: 0xCA4B,\n\t34064 - 11905: 0xCA4C,\n\t34065 - 11905: 0xC3EF,\n\t34066 - 11905: 0xCA4D,\n\t34067 - 11905: 0xC2FB,\n\t34068 - 11905: 0xCA4E,\n\t34069 - 11905: 0xCA4F,\n\t34070 - 11905: 0xCA50,\n\t34071 - 11905: 0xD5E1,\n\t34072 - 11905: 0xCA51,\n\t34073 - 11905: 0xCA52,\n\t34074 - 11905: 0xCEB5,\n\t34075 - 11905: 0xCA53,\n\t34076 - 11905: 0xCA54,\n\t34077 - 11905: 0xCA55,\n\t34078 - 11905: 0xCA56,\n\t34079 - 11905: 0xDDFD,\n\t34080 - 11905: 0xCA57,\n\t34081 - 11905: 0xB2CC,\n\t34082 - 11905: 0xCA58,\n\t34083 - 11905: 0xCA59,\n\t34084 - 11905: 0xCA5A,\n\t34085 - 11905: 0xCA5B,\n\t34086 - 11905: 0xCA5C,\n\t34087 - 11905: 0xCA5D,\n\t34088 - 11905: 0xCA5E,\n\t34089 - 11905: 0xCA5F,\n\t34090 - 11905: 0xCA60,\n\t34091 - 11905: 0xC4E8,\n\t34092 - 11905: 0xCADF,\n\t34093 - 11905: 0xCA61,\n\t34094 - 11905: 0xCA62,\n\t34095 - 11905: 0xCA63,\n\t34096 - 11905: 0xCA64,\n\t34097 - 11905: 0xCA65,\n\t34098 - 11905: 0xCA66,\n\t34099 - 11905: 0xCA67,\n\t34100 - 11905: 0xCA68,\n\t34101 - 11905: 0xCA69,\n\t34102 - 11905: 0xCA6A,\n\t34103 - 11905: 0xC7BE,\n\t34104 - 11905: 0xDDFA,\n\t34105 - 11905: 0xDDFC,\n\t34106 - 11905: 0xDDFE,\n\t34107 - 11905: 0xDEA2,\n\t34108 - 11905: 0xB0AA,\n\t34109 - 11905: 0xB1CE,\n\t34110 - 11905: 0xCA6B,\n\t34111 - 11905: 0xCA6C,\n\t34112 - 11905: 0xCA6D,\n\t34113 - 11905: 0xCA6E,\n\t34114 - 11905: 0xCA6F,\n\t34115 - 11905: 0xDEAC,\n\t34116 - 11905: 0xCA70,\n\t34117 - 11905: 0xCA71,\n\t34118 - 11905: 0xCA72,\n\t34119 - 11905: 0xCA73,\n\t34120 - 11905: 0xDEA6,\n\t34121 - 11905: 0xBDB6,\n\t34122 - 11905: 0xC8EF,\n\t34123 - 11905: 0xCA74,\n\t34124 - 11905: 0xCA75,\n\t34125 - 11905: 0xCA76,\n\t34126 - 11905: 0xCA77,\n\t34127 - 11905: 0xCA78,\n\t34128 - 11905: 0xCA79,\n\t34129 - 11905: 0xCA7A,\n\t34130 - 11905: 0xCA7B,\n\t34131 - 11905: 0xCA7C,\n\t34132 - 11905: 0xCA7D,\n\t34133 - 11905: 0xCA7E,\n\t34134 - 11905: 0xDEA1,\n\t34135 - 11905: 0xCA80,\n\t34136 - 11905: 0xCA81,\n\t34137 - 11905: 0xDEA5,\n\t34138 - 11905: 0xCA82,\n\t34139 - 11905: 0xCA83,\n\t34140 - 11905: 0xCA84,\n\t34141 - 11905: 0xCA85,\n\t34142 - 11905: 0xDEA9,\n\t34143 - 11905: 0xCA86,\n\t34144 - 11905: 0xCA87,\n\t34145 - 11905: 0xCA88,\n\t34146 - 11905: 0xCA89,\n\t34147 - 11905: 0xCA8A,\n\t34148 - 11905: 0xDEA8,\n\t34149 - 11905: 0xCA8B,\n\t34150 - 11905: 0xCA8C,\n\t34151 - 11905: 0xCA8D,\n\t34152 - 11905: 0xDEA7,\n\t34153 - 11905: 0xCA8E,\n\t34154 - 11905: 0xCA8F,\n\t34155 - 11905: 0xCA90,\n\t34156 - 11905: 0xCA91,\n\t34157 - 11905: 0xCA92,\n\t34158 - 11905: 0xCA93,\n\t34159 - 11905: 0xCA94,\n\t34160 - 11905: 0xCA95,\n\t34161 - 11905: 0xCA96,\n\t34162 - 11905: 0xDEAD,\n\t34163 - 11905: 0xCA97,\n\t34164 - 11905: 0xD4CC,\n\t34165 - 11905: 0xCA98,\n\t34166 - 11905: 0xCA99,\n\t34167 - 11905: 0xCA9A,\n\t34168 - 11905: 0xCA9B,\n\t34169 - 11905: 0xDEB3,\n\t34170 - 11905: 0xDEAA,\n\t34171 - 11905: 0xDEAE,\n\t34172 - 11905: 0xCA9C,\n\t34173 - 11905: 0xCA9D,\n\t34174 - 11905: 0xC0D9,\n\t34175 - 11905: 0xCA9E,\n\t34176 - 11905: 0xCA9F,\n\t34177 - 11905: 0xCAA0,\n\t34178 - 11905: 0xCB40,\n\t34179 - 11905: 0xCB41,\n\t34180 - 11905: 0xB1A1,\n\t34181 - 11905: 0xDEB6,\n\t34182 - 11905: 0xCB42,\n\t34183 - 11905: 0xDEB1,\n\t34184 - 11905: 0xCB43,\n\t34185 - 11905: 0xCB44,\n\t34186 - 11905: 0xCB45,\n\t34187 - 11905: 0xCB46,\n\t34188 - 11905: 0xCB47,\n\t34189 - 11905: 0xCB48,\n\t34190 - 11905: 0xCB49,\n\t34191 - 11905: 0xDEB2,\n\t34192 - 11905: 0xCB4A,\n\t34193 - 11905: 0xCB4B,\n\t34194 - 11905: 0xCB4C,\n\t34195 - 11905: 0xCB4D,\n\t34196 - 11905: 0xCB4E,\n\t34197 - 11905: 0xCB4F,\n\t34198 - 11905: 0xCB50,\n\t34199 - 11905: 0xCB51,\n\t34200 - 11905: 0xCB52,\n\t34201 - 11905: 0xCB53,\n\t34202 - 11905: 0xCB54,\n\t34203 - 11905: 0xD1A6,\n\t34204 - 11905: 0xDEB5,\n\t34205 - 11905: 0xCB55,\n\t34206 - 11905: 0xCB56,\n\t34207 - 11905: 0xCB57,\n\t34208 - 11905: 0xCB58,\n\t34209 - 11905: 0xCB59,\n\t34210 - 11905: 0xCB5A,\n\t34211 - 11905: 0xCB5B,\n\t34212 - 11905: 0xDEAF,\n\t34213 - 11905: 0xCB5C,\n\t34214 - 11905: 0xCB5D,\n\t34215 - 11905: 0xCB5E,\n\t34216 - 11905: 0xDEB0,\n\t34217 - 11905: 0xCB5F,\n\t34218 - 11905: 0xD0BD,\n\t34219 - 11905: 0xCB60,\n\t34220 - 11905: 0xCB61,\n\t34221 - 11905: 0xCB62,\n\t34222 - 11905: 0xDEB4,\n\t34223 - 11905: 0xCAED,\n\t34224 - 11905: 0xDEB9,\n\t34225 - 11905: 0xCB63,\n\t34226 - 11905: 0xCB64,\n\t34227 - 11905: 0xCB65,\n\t34228 - 11905: 0xCB66,\n\t34229 - 11905: 0xCB67,\n\t34230 - 11905: 0xCB68,\n\t34231 - 11905: 0xDEB8,\n\t34232 - 11905: 0xCB69,\n\t34233 - 11905: 0xDEB7,\n\t34234 - 11905: 0xCB6A,\n\t34235 - 11905: 0xCB6B,\n\t34236 - 11905: 0xCB6C,\n\t34237 - 11905: 0xCB6D,\n\t34238 - 11905: 0xCB6E,\n\t34239 - 11905: 0xCB6F,\n\t34240 - 11905: 0xCB70,\n\t34241 - 11905: 0xDEBB,\n\t34242 - 11905: 0xCB71,\n\t34243 - 11905: 0xCB72,\n\t34244 - 11905: 0xCB73,\n\t34245 - 11905: 0xCB74,\n\t34246 - 11905: 0xCB75,\n\t34247 - 11905: 0xCB76,\n\t34248 - 11905: 0xCB77,\n\t34249 - 11905: 0xBDE5,\n\t34250 - 11905: 0xCB78,\n\t34251 - 11905: 0xCB79,\n\t34252 - 11905: 0xCB7A,\n\t34253 - 11905: 0xCB7B,\n\t34254 - 11905: 0xCB7C,\n\t34255 - 11905: 0xB2D8,\n\t34256 - 11905: 0xC3EA,\n\t34257 - 11905: 0xCB7D,\n\t34258 - 11905: 0xCB7E,\n\t34259 - 11905: 0xDEBA,\n\t34260 - 11905: 0xCB80,\n\t34261 - 11905: 0xC5BA,\n\t34262 - 11905: 0xCB81,\n\t34263 - 11905: 0xCB82,\n\t34264 - 11905: 0xCB83,\n\t34265 - 11905: 0xCB84,\n\t34266 - 11905: 0xCB85,\n\t34267 - 11905: 0xCB86,\n\t34268 - 11905: 0xDEBC,\n\t34269 - 11905: 0xCB87,\n\t34270 - 11905: 0xCB88,\n\t34271 - 11905: 0xCB89,\n\t34272 - 11905: 0xCB8A,\n\t34273 - 11905: 0xCB8B,\n\t34274 - 11905: 0xCB8C,\n\t34275 - 11905: 0xCB8D,\n\t34276 - 11905: 0xCCD9,\n\t34277 - 11905: 0xCB8E,\n\t34278 - 11905: 0xCB8F,\n\t34279 - 11905: 0xCB90,\n\t34280 - 11905: 0xCB91,\n\t34281 - 11905: 0xB7AA,\n\t34282 - 11905: 0xCB92,\n\t34283 - 11905: 0xCB93,\n\t34284 - 11905: 0xCB94,\n\t34285 - 11905: 0xCB95,\n\t34286 - 11905: 0xCB96,\n\t34287 - 11905: 0xCB97,\n\t34288 - 11905: 0xCB98,\n\t34289 - 11905: 0xCB99,\n\t34290 - 11905: 0xCB9A,\n\t34291 - 11905: 0xCB9B,\n\t34292 - 11905: 0xCB9C,\n\t34293 - 11905: 0xCB9D,\n\t34294 - 11905: 0xCB9E,\n\t34295 - 11905: 0xCB9F,\n\t34296 - 11905: 0xCBA0,\n\t34297 - 11905: 0xCC40,\n\t34298 - 11905: 0xCC41,\n\t34299 - 11905: 0xD4E5,\n\t34300 - 11905: 0xCC42,\n\t34301 - 11905: 0xCC43,\n\t34302 - 11905: 0xCC44,\n\t34303 - 11905: 0xDEBD,\n\t34304 - 11905: 0xCC45,\n\t34305 - 11905: 0xCC46,\n\t34306 - 11905: 0xCC47,\n\t34307 - 11905: 0xCC48,\n\t34308 - 11905: 0xCC49,\n\t34309 - 11905: 0xDEBF,\n\t34310 - 11905: 0xCC4A,\n\t34311 - 11905: 0xCC4B,\n\t34312 - 11905: 0xCC4C,\n\t34313 - 11905: 0xCC4D,\n\t34314 - 11905: 0xCC4E,\n\t34315 - 11905: 0xCC4F,\n\t34316 - 11905: 0xCC50,\n\t34317 - 11905: 0xCC51,\n\t34318 - 11905: 0xCC52,\n\t34319 - 11905: 0xCC53,\n\t34320 - 11905: 0xCC54,\n\t34321 - 11905: 0xC4A2,\n\t34322 - 11905: 0xCC55,\n\t34323 - 11905: 0xCC56,\n\t34324 - 11905: 0xCC57,\n\t34325 - 11905: 0xCC58,\n\t34326 - 11905: 0xDEC1,\n\t34327 - 11905: 0xCC59,\n\t34328 - 11905: 0xCC5A,\n\t34329 - 11905: 0xCC5B,\n\t34330 - 11905: 0xCC5C,\n\t34331 - 11905: 0xCC5D,\n\t34332 - 11905: 0xCC5E,\n\t34333 - 11905: 0xCC5F,\n\t34334 - 11905: 0xCC60,\n\t34335 - 11905: 0xCC61,\n\t34336 - 11905: 0xCC62,\n\t34337 - 11905: 0xCC63,\n\t34338 - 11905: 0xCC64,\n\t34339 - 11905: 0xCC65,\n\t34340 - 11905: 0xCC66,\n\t34341 - 11905: 0xCC67,\n\t34342 - 11905: 0xCC68,\n\t34343 - 11905: 0xDEBE,\n\t34344 - 11905: 0xCC69,\n\t34345 - 11905: 0xDEC0,\n\t34346 - 11905: 0xCC6A,\n\t34347 - 11905: 0xCC6B,\n\t34348 - 11905: 0xCC6C,\n\t34349 - 11905: 0xCC6D,\n\t34350 - 11905: 0xCC6E,\n\t34351 - 11905: 0xCC6F,\n\t34352 - 11905: 0xCC70,\n\t34353 - 11905: 0xCC71,\n\t34354 - 11905: 0xCC72,\n\t34355 - 11905: 0xCC73,\n\t34356 - 11905: 0xCC74,\n\t34357 - 11905: 0xCC75,\n\t34358 - 11905: 0xCC76,\n\t34359 - 11905: 0xCC77,\n\t34360 - 11905: 0xD5BA,\n\t34361 - 11905: 0xCC78,\n\t34362 - 11905: 0xCC79,\n\t34363 - 11905: 0xCC7A,\n\t34364 - 11905: 0xDEC2,\n\t34365 - 11905: 0xCC7B,\n\t34366 - 11905: 0xCC7C,\n\t34367 - 11905: 0xCC7D,\n\t34368 - 11905: 0xCC7E,\n\t34369 - 11905: 0xCC80,\n\t34370 - 11905: 0xCC81,\n\t34371 - 11905: 0xCC82,\n\t34372 - 11905: 0xCC83,\n\t34373 - 11905: 0xCC84,\n\t34374 - 11905: 0xCC85,\n\t34375 - 11905: 0xCC86,\n\t34376 - 11905: 0xCC87,\n\t34377 - 11905: 0xCC88,\n\t34378 - 11905: 0xCC89,\n\t34379 - 11905: 0xCC8A,\n\t34380 - 11905: 0xCC8B,\n\t34381 - 11905: 0xF2AE,\n\t34382 - 11905: 0xBBA2,\n\t34383 - 11905: 0xC2B2,\n\t34384 - 11905: 0xC5B0,\n\t34385 - 11905: 0xC2C7,\n\t34386 - 11905: 0xCC8C,\n\t34387 - 11905: 0xCC8D,\n\t34388 - 11905: 0xF2AF,\n\t34389 - 11905: 0xCC8E,\n\t34390 - 11905: 0xCC8F,\n\t34391 - 11905: 0xCC90,\n\t34392 - 11905: 0xCC91,\n\t34393 - 11905: 0xCC92,\n\t34394 - 11905: 0xD0E9,\n\t34395 - 11905: 0xCC93,\n\t34396 - 11905: 0xCC94,\n\t34397 - 11905: 0xCC95,\n\t34398 - 11905: 0xD3DD,\n\t34399 - 11905: 0xCC96,\n\t34400 - 11905: 0xCC97,\n\t34401 - 11905: 0xCC98,\n\t34402 - 11905: 0xEBBD,\n\t34403 - 11905: 0xCC99,\n\t34404 - 11905: 0xCC9A,\n\t34405 - 11905: 0xCC9B,\n\t34406 - 11905: 0xCC9C,\n\t34407 - 11905: 0xCC9D,\n\t34408 - 11905: 0xCC9E,\n\t34409 - 11905: 0xCC9F,\n\t34410 - 11905: 0xCCA0,\n\t34411 - 11905: 0xB3E6,\n\t34412 - 11905: 0xF2B0,\n\t34413 - 11905: 0xCD40,\n\t34414 - 11905: 0xF2B1,\n\t34415 - 11905: 0xCD41,\n\t34416 - 11905: 0xCD42,\n\t34417 - 11905: 0xCAAD,\n\t34418 - 11905: 0xCD43,\n\t34419 - 11905: 0xCD44,\n\t34420 - 11905: 0xCD45,\n\t34421 - 11905: 0xCD46,\n\t34422 - 11905: 0xCD47,\n\t34423 - 11905: 0xCD48,\n\t34424 - 11905: 0xCD49,\n\t34425 - 11905: 0xBAE7,\n\t34426 - 11905: 0xF2B3,\n\t34427 - 11905: 0xF2B5,\n\t34428 - 11905: 0xF2B4,\n\t34429 - 11905: 0xCBE4,\n\t34430 - 11905: 0xCFBA,\n\t34431 - 11905: 0xF2B2,\n\t34432 - 11905: 0xCAB4,\n\t34433 - 11905: 0xD2CF,\n\t34434 - 11905: 0xC2EC,\n\t34435 - 11905: 0xCD4A,\n\t34436 - 11905: 0xCD4B,\n\t34437 - 11905: 0xCD4C,\n\t34438 - 11905: 0xCD4D,\n\t34439 - 11905: 0xCD4E,\n\t34440 - 11905: 0xCD4F,\n\t34441 - 11905: 0xCD50,\n\t34442 - 11905: 0xCEC3,\n\t34443 - 11905: 0xF2B8,\n\t34444 - 11905: 0xB0F6,\n\t34445 - 11905: 0xF2B7,\n\t34446 - 11905: 0xCD51,\n\t34447 - 11905: 0xCD52,\n\t34448 - 11905: 0xCD53,\n\t34449 - 11905: 0xCD54,\n\t34450 - 11905: 0xCD55,\n\t34451 - 11905: 0xF2BE,\n\t34452 - 11905: 0xCD56,\n\t34453 - 11905: 0xB2CF,\n\t34454 - 11905: 0xCD57,\n\t34455 - 11905: 0xCD58,\n\t34456 - 11905: 0xCD59,\n\t34457 - 11905: 0xCD5A,\n\t34458 - 11905: 0xCD5B,\n\t34459 - 11905: 0xCD5C,\n\t34460 - 11905: 0xD1C1,\n\t34461 - 11905: 0xF2BA,\n\t34462 - 11905: 0xCD5D,\n\t34463 - 11905: 0xCD5E,\n\t34464 - 11905: 0xCD5F,\n\t34465 - 11905: 0xCD60,\n\t34466 - 11905: 0xCD61,\n\t34467 - 11905: 0xF2BC,\n\t34468 - 11905: 0xD4E9,\n\t34469 - 11905: 0xCD62,\n\t34470 - 11905: 0xCD63,\n\t34471 - 11905: 0xF2BB,\n\t34472 - 11905: 0xF2B6,\n\t34473 - 11905: 0xF2BF,\n\t34474 - 11905: 0xF2BD,\n\t34475 - 11905: 0xCD64,\n\t34476 - 11905: 0xF2B9,\n\t34477 - 11905: 0xCD65,\n\t34478 - 11905: 0xCD66,\n\t34479 - 11905: 0xF2C7,\n\t34480 - 11905: 0xF2C4,\n\t34481 - 11905: 0xF2C6,\n\t34482 - 11905: 0xCD67,\n\t34483 - 11905: 0xCD68,\n\t34484 - 11905: 0xF2CA,\n\t34485 - 11905: 0xF2C2,\n\t34486 - 11905: 0xF2C0,\n\t34487 - 11905: 0xCD69,\n\t34488 - 11905: 0xCD6A,\n\t34489 - 11905: 0xCD6B,\n\t34490 - 11905: 0xF2C5,\n\t34491 - 11905: 0xCD6C,\n\t34492 - 11905: 0xCD6D,\n\t34493 - 11905: 0xCD6E,\n\t34494 - 11905: 0xCD6F,\n\t34495 - 11905: 0xCD70,\n\t34496 - 11905: 0xD6FB,\n\t34497 - 11905: 0xCD71,\n\t34498 - 11905: 0xCD72,\n\t34499 - 11905: 0xCD73,\n\t34500 - 11905: 0xF2C1,\n\t34501 - 11905: 0xCD74,\n\t34502 - 11905: 0xC7F9,\n\t34503 - 11905: 0xC9DF,\n\t34504 - 11905: 0xCD75,\n\t34505 - 11905: 0xF2C8,\n\t34506 - 11905: 0xB9C6,\n\t34507 - 11905: 0xB5B0,\n\t34508 - 11905: 0xCD76,\n\t34509 - 11905: 0xCD77,\n\t34510 - 11905: 0xF2C3,\n\t34511 - 11905: 0xF2C9,\n\t34512 - 11905: 0xF2D0,\n\t34513 - 11905: 0xF2D6,\n\t34514 - 11905: 0xCD78,\n\t34515 - 11905: 0xCD79,\n\t34516 - 11905: 0xBBD7,\n\t34517 - 11905: 0xCD7A,\n\t34518 - 11905: 0xCD7B,\n\t34519 - 11905: 0xCD7C,\n\t34520 - 11905: 0xF2D5,\n\t34521 - 11905: 0xCDDC,\n\t34522 - 11905: 0xCD7D,\n\t34523 - 11905: 0xD6EB,\n\t34524 - 11905: 0xCD7E,\n\t34525 - 11905: 0xCD80,\n\t34526 - 11905: 0xF2D2,\n\t34527 - 11905: 0xF2D4,\n\t34528 - 11905: 0xCD81,\n\t34529 - 11905: 0xCD82,\n\t34530 - 11905: 0xCD83,\n\t34531 - 11905: 0xCD84,\n\t34532 - 11905: 0xB8F2,\n\t34533 - 11905: 0xCD85,\n\t34534 - 11905: 0xCD86,\n\t34535 - 11905: 0xCD87,\n\t34536 - 11905: 0xCD88,\n\t34537 - 11905: 0xF2CB,\n\t34538 - 11905: 0xCD89,\n\t34539 - 11905: 0xCD8A,\n\t34540 - 11905: 0xCD8B,\n\t34541 - 11905: 0xF2CE,\n\t34542 - 11905: 0xC2F9,\n\t34543 - 11905: 0xCD8C,\n\t34544 - 11905: 0xD5DD,\n\t34545 - 11905: 0xF2CC,\n\t34546 - 11905: 0xF2CD,\n\t34547 - 11905: 0xF2CF,\n\t34548 - 11905: 0xF2D3,\n\t34549 - 11905: 0xCD8D,\n\t34550 - 11905: 0xCD8E,\n\t34551 - 11905: 0xCD8F,\n\t34552 - 11905: 0xF2D9,\n\t34553 - 11905: 0xD3BC,\n\t34554 - 11905: 0xCD90,\n\t34555 - 11905: 0xCD91,\n\t34556 - 11905: 0xCD92,\n\t34557 - 11905: 0xCD93,\n\t34558 - 11905: 0xB6EA,\n\t34559 - 11905: 0xCD94,\n\t34560 - 11905: 0xCAF1,\n\t34561 - 11905: 0xCD95,\n\t34562 - 11905: 0xB7E4,\n\t34563 - 11905: 0xF2D7,\n\t34564 - 11905: 0xCD96,\n\t34565 - 11905: 0xCD97,\n\t34566 - 11905: 0xCD98,\n\t34567 - 11905: 0xF2D8,\n\t34568 - 11905: 0xF2DA,\n\t34569 - 11905: 0xF2DD,\n\t34570 - 11905: 0xF2DB,\n\t34571 - 11905: 0xCD99,\n\t34572 - 11905: 0xCD9A,\n\t34573 - 11905: 0xF2DC,\n\t34574 - 11905: 0xCD9B,\n\t34575 - 11905: 0xCD9C,\n\t34576 - 11905: 0xCD9D,\n\t34577 - 11905: 0xCD9E,\n\t34578 - 11905: 0xD1D1,\n\t34579 - 11905: 0xF2D1,\n\t34580 - 11905: 0xCD9F,\n\t34581 - 11905: 0xCDC9,\n\t34582 - 11905: 0xCDA0,\n\t34583 - 11905: 0xCECF,\n\t34584 - 11905: 0xD6A9,\n\t34585 - 11905: 0xCE40,\n\t34586 - 11905: 0xF2E3,\n\t34587 - 11905: 0xCE41,\n\t34588 - 11905: 0xC3DB,\n\t34589 - 11905: 0xCE42,\n\t34590 - 11905: 0xF2E0,\n\t34591 - 11905: 0xCE43,\n\t34592 - 11905: 0xCE44,\n\t34593 - 11905: 0xC0AF,\n\t34594 - 11905: 0xF2EC,\n\t34595 - 11905: 0xF2DE,\n\t34596 - 11905: 0xCE45,\n\t34597 - 11905: 0xF2E1,\n\t34598 - 11905: 0xCE46,\n\t34599 - 11905: 0xCE47,\n\t34600 - 11905: 0xCE48,\n\t34601 - 11905: 0xF2E8,\n\t34602 - 11905: 0xCE49,\n\t34603 - 11905: 0xCE4A,\n\t34604 - 11905: 0xCE4B,\n\t34605 - 11905: 0xCE4C,\n\t34606 - 11905: 0xF2E2,\n\t34607 - 11905: 0xCE4D,\n\t34608 - 11905: 0xCE4E,\n\t34609 - 11905: 0xF2E7,\n\t34610 - 11905: 0xCE4F,\n\t34611 - 11905: 0xCE50,\n\t34612 - 11905: 0xF2E6,\n\t34613 - 11905: 0xCE51,\n\t34614 - 11905: 0xCE52,\n\t34615 - 11905: 0xF2E9,\n\t34616 - 11905: 0xCE53,\n\t34617 - 11905: 0xCE54,\n\t34618 - 11905: 0xCE55,\n\t34619 - 11905: 0xF2DF,\n\t34620 - 11905: 0xCE56,\n\t34621 - 11905: 0xCE57,\n\t34622 - 11905: 0xF2E4,\n\t34623 - 11905: 0xF2EA,\n\t34624 - 11905: 0xCE58,\n\t34625 - 11905: 0xCE59,\n\t34626 - 11905: 0xCE5A,\n\t34627 - 11905: 0xCE5B,\n\t34628 - 11905: 0xCE5C,\n\t34629 - 11905: 0xCE5D,\n\t34630 - 11905: 0xCE5E,\n\t34631 - 11905: 0xD3AC,\n\t34632 - 11905: 0xF2E5,\n\t34633 - 11905: 0xB2F5,\n\t34634 - 11905: 0xCE5F,\n\t34635 - 11905: 0xCE60,\n\t34636 - 11905: 0xF2F2,\n\t34637 - 11905: 0xCE61,\n\t34638 - 11905: 0xD0AB,\n\t34639 - 11905: 0xCE62,\n\t34640 - 11905: 0xCE63,\n\t34641 - 11905: 0xCE64,\n\t34642 - 11905: 0xCE65,\n\t34643 - 11905: 0xF2F5,\n\t34644 - 11905: 0xCE66,\n\t34645 - 11905: 0xCE67,\n\t34646 - 11905: 0xCE68,\n\t34647 - 11905: 0xBBC8,\n\t34648 - 11905: 0xCE69,\n\t34649 - 11905: 0xF2F9,\n\t34650 - 11905: 0xCE6A,\n\t34651 - 11905: 0xCE6B,\n\t34652 - 11905: 0xCE6C,\n\t34653 - 11905: 0xCE6D,\n\t34654 - 11905: 0xCE6E,\n\t34655 - 11905: 0xCE6F,\n\t34656 - 11905: 0xF2F0,\n\t34657 - 11905: 0xCE70,\n\t34658 - 11905: 0xCE71,\n\t34659 - 11905: 0xF2F6,\n\t34660 - 11905: 0xF2F8,\n\t34661 - 11905: 0xF2FA,\n\t34662 - 11905: 0xCE72,\n\t34663 - 11905: 0xCE73,\n\t34664 - 11905: 0xCE74,\n\t34665 - 11905: 0xCE75,\n\t34666 - 11905: 0xCE76,\n\t34667 - 11905: 0xCE77,\n\t34668 - 11905: 0xCE78,\n\t34669 - 11905: 0xCE79,\n\t34670 - 11905: 0xF2F3,\n\t34671 - 11905: 0xCE7A,\n\t34672 - 11905: 0xF2F1,\n\t34673 - 11905: 0xCE7B,\n\t34674 - 11905: 0xCE7C,\n\t34675 - 11905: 0xCE7D,\n\t34676 - 11905: 0xBAFB,\n\t34677 - 11905: 0xCE7E,\n\t34678 - 11905: 0xB5FB,\n\t34679 - 11905: 0xCE80,\n\t34680 - 11905: 0xCE81,\n\t34681 - 11905: 0xCE82,\n\t34682 - 11905: 0xCE83,\n\t34683 - 11905: 0xF2EF,\n\t34684 - 11905: 0xF2F7,\n\t34685 - 11905: 0xF2ED,\n\t34686 - 11905: 0xF2EE,\n\t34687 - 11905: 0xCE84,\n\t34688 - 11905: 0xCE85,\n\t34689 - 11905: 0xCE86,\n\t34690 - 11905: 0xF2EB,\n\t34691 - 11905: 0xF3A6,\n\t34692 - 11905: 0xCE87,\n\t34693 - 11905: 0xF3A3,\n\t34694 - 11905: 0xCE88,\n\t34695 - 11905: 0xCE89,\n\t34696 - 11905: 0xF3A2,\n\t34697 - 11905: 0xCE8A,\n\t34698 - 11905: 0xCE8B,\n\t34699 - 11905: 0xF2F4,\n\t34700 - 11905: 0xCE8C,\n\t34701 - 11905: 0xC8DA,\n\t34702 - 11905: 0xCE8D,\n\t34703 - 11905: 0xCE8E,\n\t34704 - 11905: 0xCE8F,\n\t34705 - 11905: 0xCE90,\n\t34706 - 11905: 0xCE91,\n\t34707 - 11905: 0xF2FB,\n\t34708 - 11905: 0xCE92,\n\t34709 - 11905: 0xCE93,\n\t34710 - 11905: 0xCE94,\n\t34711 - 11905: 0xF3A5,\n\t34712 - 11905: 0xCE95,\n\t34713 - 11905: 0xCE96,\n\t34714 - 11905: 0xCE97,\n\t34715 - 11905: 0xCE98,\n\t34716 - 11905: 0xCE99,\n\t34717 - 11905: 0xCE9A,\n\t34718 - 11905: 0xCE9B,\n\t34719 - 11905: 0xC3F8,\n\t34720 - 11905: 0xCE9C,\n\t34721 - 11905: 0xCE9D,\n\t34722 - 11905: 0xCE9E,\n\t34723 - 11905: 0xCE9F,\n\t34724 - 11905: 0xCEA0,\n\t34725 - 11905: 0xCF40,\n\t34726 - 11905: 0xCF41,\n\t34727 - 11905: 0xCF42,\n\t34728 - 11905: 0xF2FD,\n\t34729 - 11905: 0xCF43,\n\t34730 - 11905: 0xCF44,\n\t34731 - 11905: 0xF3A7,\n\t34732 - 11905: 0xF3A9,\n\t34733 - 11905: 0xF3A4,\n\t34734 - 11905: 0xCF45,\n\t34735 - 11905: 0xF2FC,\n\t34736 - 11905: 0xCF46,\n\t34737 - 11905: 0xCF47,\n\t34738 - 11905: 0xCF48,\n\t34739 - 11905: 0xF3AB,\n\t34740 - 11905: 0xCF49,\n\t34741 - 11905: 0xF3AA,\n\t34742 - 11905: 0xCF4A,\n\t34743 - 11905: 0xCF4B,\n\t34744 - 11905: 0xCF4C,\n\t34745 - 11905: 0xCF4D,\n\t34746 - 11905: 0xC2DD,\n\t34747 - 11905: 0xCF4E,\n\t34748 - 11905: 0xCF4F,\n\t34749 - 11905: 0xF3AE,\n\t34750 - 11905: 0xCF50,\n\t34751 - 11905: 0xCF51,\n\t34752 - 11905: 0xF3B0,\n\t34753 - 11905: 0xCF52,\n\t34754 - 11905: 0xCF53,\n\t34755 - 11905: 0xCF54,\n\t34756 - 11905: 0xCF55,\n\t34757 - 11905: 0xCF56,\n\t34758 - 11905: 0xF3A1,\n\t34759 - 11905: 0xCF57,\n\t34760 - 11905: 0xCF58,\n\t34761 - 11905: 0xCF59,\n\t34762 - 11905: 0xF3B1,\n\t34763 - 11905: 0xF3AC,\n\t34764 - 11905: 0xCF5A,\n\t34765 - 11905: 0xCF5B,\n\t34766 - 11905: 0xCF5C,\n\t34767 - 11905: 0xCF5D,\n\t34768 - 11905: 0xCF5E,\n\t34769 - 11905: 0xF3AF,\n\t34770 - 11905: 0xF2FE,\n\t34771 - 11905: 0xF3AD,\n\t34772 - 11905: 0xCF5F,\n\t34773 - 11905: 0xCF60,\n\t34774 - 11905: 0xCF61,\n\t34775 - 11905: 0xCF62,\n\t34776 - 11905: 0xCF63,\n\t34777 - 11905: 0xCF64,\n\t34778 - 11905: 0xCF65,\n\t34779 - 11905: 0xF3B2,\n\t34780 - 11905: 0xCF66,\n\t34781 - 11905: 0xCF67,\n\t34782 - 11905: 0xCF68,\n\t34783 - 11905: 0xCF69,\n\t34784 - 11905: 0xF3B4,\n\t34785 - 11905: 0xCF6A,\n\t34786 - 11905: 0xCF6B,\n\t34787 - 11905: 0xCF6C,\n\t34788 - 11905: 0xCF6D,\n\t34789 - 11905: 0xF3A8,\n\t34790 - 11905: 0xCF6E,\n\t34791 - 11905: 0xCF6F,\n\t34792 - 11905: 0xCF70,\n\t34793 - 11905: 0xCF71,\n\t34794 - 11905: 0xF3B3,\n\t34795 - 11905: 0xCF72,\n\t34796 - 11905: 0xCF73,\n\t34797 - 11905: 0xCF74,\n\t34798 - 11905: 0xF3B5,\n\t34799 - 11905: 0xCF75,\n\t34800 - 11905: 0xCF76,\n\t34801 - 11905: 0xCF77,\n\t34802 - 11905: 0xCF78,\n\t34803 - 11905: 0xCF79,\n\t34804 - 11905: 0xCF7A,\n\t34805 - 11905: 0xCF7B,\n\t34806 - 11905: 0xCF7C,\n\t34807 - 11905: 0xCF7D,\n\t34808 - 11905: 0xCF7E,\n\t34809 - 11905: 0xD0B7,\n\t34810 - 11905: 0xCF80,\n\t34811 - 11905: 0xCF81,\n\t34812 - 11905: 0xCF82,\n\t34813 - 11905: 0xCF83,\n\t34814 - 11905: 0xF3B8,\n\t34815 - 11905: 0xCF84,\n\t34816 - 11905: 0xCF85,\n\t34817 - 11905: 0xCF86,\n\t34818 - 11905: 0xCF87,\n\t34819 - 11905: 0xD9F9,\n\t34820 - 11905: 0xCF88,\n\t34821 - 11905: 0xCF89,\n\t34822 - 11905: 0xCF8A,\n\t34823 - 11905: 0xCF8B,\n\t34824 - 11905: 0xCF8C,\n\t34825 - 11905: 0xCF8D,\n\t34826 - 11905: 0xF3B9,\n\t34827 - 11905: 0xCF8E,\n\t34828 - 11905: 0xCF8F,\n\t34829 - 11905: 0xCF90,\n\t34830 - 11905: 0xCF91,\n\t34831 - 11905: 0xCF92,\n\t34832 - 11905: 0xCF93,\n\t34833 - 11905: 0xCF94,\n\t34834 - 11905: 0xCF95,\n\t34835 - 11905: 0xF3B7,\n\t34836 - 11905: 0xCF96,\n\t34837 - 11905: 0xC8E4,\n\t34838 - 11905: 0xF3B6,\n\t34839 - 11905: 0xCF97,\n\t34840 - 11905: 0xCF98,\n\t34841 - 11905: 0xCF99,\n\t34842 - 11905: 0xCF9A,\n\t34843 - 11905: 0xF3BA,\n\t34844 - 11905: 0xCF9B,\n\t34845 - 11905: 0xCF9C,\n\t34846 - 11905: 0xCF9D,\n\t34847 - 11905: 0xCF9E,\n\t34848 - 11905: 0xCF9F,\n\t34849 - 11905: 0xF3BB,\n\t34850 - 11905: 0xB4C0,\n\t34851 - 11905: 0xCFA0,\n\t34852 - 11905: 0xD040,\n\t34853 - 11905: 0xD041,\n\t34854 - 11905: 0xD042,\n\t34855 - 11905: 0xD043,\n\t34856 - 11905: 0xD044,\n\t34857 - 11905: 0xD045,\n\t34858 - 11905: 0xD046,\n\t34859 - 11905: 0xD047,\n\t34860 - 11905: 0xD048,\n\t34861 - 11905: 0xD049,\n\t34862 - 11905: 0xD04A,\n\t34863 - 11905: 0xD04B,\n\t34864 - 11905: 0xD04C,\n\t34865 - 11905: 0xD04D,\n\t34866 - 11905: 0xEEC3,\n\t34867 - 11905: 0xD04E,\n\t34868 - 11905: 0xD04F,\n\t34869 - 11905: 0xD050,\n\t34870 - 11905: 0xD051,\n\t34871 - 11905: 0xD052,\n\t34872 - 11905: 0xD053,\n\t34873 - 11905: 0xF3BC,\n\t34874 - 11905: 0xD054,\n\t34875 - 11905: 0xD055,\n\t34876 - 11905: 0xF3BD,\n\t34877 - 11905: 0xD056,\n\t34878 - 11905: 0xD057,\n\t34879 - 11905: 0xD058,\n\t34880 - 11905: 0xD1AA,\n\t34881 - 11905: 0xD059,\n\t34882 - 11905: 0xD05A,\n\t34883 - 11905: 0xD05B,\n\t34884 - 11905: 0xF4AC,\n\t34885 - 11905: 0xD0C6,\n\t34886 - 11905: 0xD05C,\n\t34887 - 11905: 0xD05D,\n\t34888 - 11905: 0xD05E,\n\t34889 - 11905: 0xD05F,\n\t34890 - 11905: 0xD060,\n\t34891 - 11905: 0xD061,\n\t34892 - 11905: 0xD0D0,\n\t34893 - 11905: 0xD1DC,\n\t34894 - 11905: 0xD062,\n\t34895 - 11905: 0xD063,\n\t34896 - 11905: 0xD064,\n\t34897 - 11905: 0xD065,\n\t34898 - 11905: 0xD066,\n\t34899 - 11905: 0xD067,\n\t34900 - 11905: 0xCFCE,\n\t34901 - 11905: 0xD068,\n\t34902 - 11905: 0xD069,\n\t34903 - 11905: 0xBDD6,\n\t34904 - 11905: 0xD06A,\n\t34905 - 11905: 0xD1C3,\n\t34906 - 11905: 0xD06B,\n\t34907 - 11905: 0xD06C,\n\t34908 - 11905: 0xD06D,\n\t34909 - 11905: 0xD06E,\n\t34910 - 11905: 0xD06F,\n\t34911 - 11905: 0xD070,\n\t34912 - 11905: 0xD071,\n\t34913 - 11905: 0xBAE2,\n\t34914 - 11905: 0xE1E9,\n\t34915 - 11905: 0xD2C2,\n\t34916 - 11905: 0xF1C2,\n\t34917 - 11905: 0xB2B9,\n\t34918 - 11905: 0xD072,\n\t34919 - 11905: 0xD073,\n\t34920 - 11905: 0xB1ED,\n\t34921 - 11905: 0xF1C3,\n\t34922 - 11905: 0xD074,\n\t34923 - 11905: 0xC9C0,\n\t34924 - 11905: 0xB3C4,\n\t34925 - 11905: 0xD075,\n\t34926 - 11905: 0xD9F2,\n\t34927 - 11905: 0xD076,\n\t34928 - 11905: 0xCBA5,\n\t34929 - 11905: 0xD077,\n\t34930 - 11905: 0xF1C4,\n\t34931 - 11905: 0xD078,\n\t34932 - 11905: 0xD079,\n\t34933 - 11905: 0xD07A,\n\t34934 - 11905: 0xD07B,\n\t34935 - 11905: 0xD6D4,\n\t34936 - 11905: 0xD07C,\n\t34937 - 11905: 0xD07D,\n\t34938 - 11905: 0xD07E,\n\t34939 - 11905: 0xD080,\n\t34940 - 11905: 0xD081,\n\t34941 - 11905: 0xF1C5,\n\t34942 - 11905: 0xF4C0,\n\t34943 - 11905: 0xF1C6,\n\t34944 - 11905: 0xD082,\n\t34945 - 11905: 0xD4AC,\n\t34946 - 11905: 0xF1C7,\n\t34947 - 11905: 0xD083,\n\t34948 - 11905: 0xB0C0,\n\t34949 - 11905: 0xF4C1,\n\t34950 - 11905: 0xD084,\n\t34951 - 11905: 0xD085,\n\t34952 - 11905: 0xF4C2,\n\t34953 - 11905: 0xD086,\n\t34954 - 11905: 0xD087,\n\t34955 - 11905: 0xB4FC,\n\t34956 - 11905: 0xD088,\n\t34957 - 11905: 0xC5DB,\n\t34958 - 11905: 0xD089,\n\t34959 - 11905: 0xD08A,\n\t34960 - 11905: 0xD08B,\n\t34961 - 11905: 0xD08C,\n\t34962 - 11905: 0xCCBB,\n\t34963 - 11905: 0xD08D,\n\t34964 - 11905: 0xD08E,\n\t34965 - 11905: 0xD08F,\n\t34966 - 11905: 0xD0E4,\n\t34967 - 11905: 0xD090,\n\t34968 - 11905: 0xD091,\n\t34969 - 11905: 0xD092,\n\t34970 - 11905: 0xD093,\n\t34971 - 11905: 0xD094,\n\t34972 - 11905: 0xCDE0,\n\t34973 - 11905: 0xD095,\n\t34974 - 11905: 0xD096,\n\t34975 - 11905: 0xD097,\n\t34976 - 11905: 0xD098,\n\t34977 - 11905: 0xD099,\n\t34978 - 11905: 0xF1C8,\n\t34979 - 11905: 0xD09A,\n\t34980 - 11905: 0xD9F3,\n\t34981 - 11905: 0xD09B,\n\t34982 - 11905: 0xD09C,\n\t34983 - 11905: 0xD09D,\n\t34984 - 11905: 0xD09E,\n\t34985 - 11905: 0xD09F,\n\t34986 - 11905: 0xD0A0,\n\t34987 - 11905: 0xB1BB,\n\t34988 - 11905: 0xD140,\n\t34989 - 11905: 0xCFAE,\n\t34990 - 11905: 0xD141,\n\t34991 - 11905: 0xD142,\n\t34992 - 11905: 0xD143,\n\t34993 - 11905: 0xB8A4,\n\t34994 - 11905: 0xD144,\n\t34995 - 11905: 0xD145,\n\t34996 - 11905: 0xD146,\n\t34997 - 11905: 0xD147,\n\t34998 - 11905: 0xD148,\n\t34999 - 11905: 0xF1CA,\n\t35000 - 11905: 0xD149,\n\t35001 - 11905: 0xD14A,\n\t35002 - 11905: 0xD14B,\n\t35003 - 11905: 0xD14C,\n\t35004 - 11905: 0xF1CB,\n\t35005 - 11905: 0xD14D,\n\t35006 - 11905: 0xD14E,\n\t35007 - 11905: 0xD14F,\n\t35008 - 11905: 0xD150,\n\t35009 - 11905: 0xB2C3,\n\t35010 - 11905: 0xC1D1,\n\t35011 - 11905: 0xD151,\n\t35012 - 11905: 0xD152,\n\t35013 - 11905: 0xD7B0,\n\t35014 - 11905: 0xF1C9,\n\t35015 - 11905: 0xD153,\n\t35016 - 11905: 0xD154,\n\t35017 - 11905: 0xF1CC,\n\t35018 - 11905: 0xD155,\n\t35019 - 11905: 0xD156,\n\t35020 - 11905: 0xD157,\n\t35021 - 11905: 0xD158,\n\t35022 - 11905: 0xF1CE,\n\t35023 - 11905: 0xD159,\n\t35024 - 11905: 0xD15A,\n\t35025 - 11905: 0xD15B,\n\t35026 - 11905: 0xD9F6,\n\t35027 - 11905: 0xD15C,\n\t35028 - 11905: 0xD2E1,\n\t35029 - 11905: 0xD4A3,\n\t35030 - 11905: 0xD15D,\n\t35031 - 11905: 0xD15E,\n\t35032 - 11905: 0xF4C3,\n\t35033 - 11905: 0xC8B9,\n\t35034 - 11905: 0xD15F,\n\t35035 - 11905: 0xD160,\n\t35036 - 11905: 0xD161,\n\t35037 - 11905: 0xD162,\n\t35038 - 11905: 0xD163,\n\t35039 - 11905: 0xF4C4,\n\t35040 - 11905: 0xD164,\n\t35041 - 11905: 0xD165,\n\t35042 - 11905: 0xF1CD,\n\t35043 - 11905: 0xF1CF,\n\t35044 - 11905: 0xBFE3,\n\t35045 - 11905: 0xF1D0,\n\t35046 - 11905: 0xD166,\n\t35047 - 11905: 0xD167,\n\t35048 - 11905: 0xF1D4,\n\t35049 - 11905: 0xD168,\n\t35050 - 11905: 0xD169,\n\t35051 - 11905: 0xD16A,\n\t35052 - 11905: 0xD16B,\n\t35053 - 11905: 0xD16C,\n\t35054 - 11905: 0xD16D,\n\t35055 - 11905: 0xD16E,\n\t35056 - 11905: 0xF1D6,\n\t35057 - 11905: 0xF1D1,\n\t35058 - 11905: 0xD16F,\n\t35059 - 11905: 0xC9D1,\n\t35060 - 11905: 0xC5E1,\n\t35061 - 11905: 0xD170,\n\t35062 - 11905: 0xD171,\n\t35063 - 11905: 0xD172,\n\t35064 - 11905: 0xC2E3,\n\t35065 - 11905: 0xB9FC,\n\t35066 - 11905: 0xD173,\n\t35067 - 11905: 0xD174,\n\t35068 - 11905: 0xF1D3,\n\t35069 - 11905: 0xD175,\n\t35070 - 11905: 0xF1D5,\n\t35071 - 11905: 0xD176,\n\t35072 - 11905: 0xD177,\n\t35073 - 11905: 0xD178,\n\t35074 - 11905: 0xB9D3,\n\t35075 - 11905: 0xD179,\n\t35076 - 11905: 0xD17A,\n\t35077 - 11905: 0xD17B,\n\t35078 - 11905: 0xD17C,\n\t35079 - 11905: 0xD17D,\n\t35080 - 11905: 0xD17E,\n\t35081 - 11905: 0xD180,\n\t35082 - 11905: 0xF1DB,\n\t35083 - 11905: 0xD181,\n\t35084 - 11905: 0xD182,\n\t35085 - 11905: 0xD183,\n\t35086 - 11905: 0xD184,\n\t35087 - 11905: 0xD185,\n\t35088 - 11905: 0xBAD6,\n\t35089 - 11905: 0xD186,\n\t35090 - 11905: 0xB0FD,\n\t35091 - 11905: 0xF1D9,\n\t35092 - 11905: 0xD187,\n\t35093 - 11905: 0xD188,\n\t35094 - 11905: 0xD189,\n\t35095 - 11905: 0xD18A,\n\t35096 - 11905: 0xD18B,\n\t35097 - 11905: 0xF1D8,\n\t35098 - 11905: 0xF1D2,\n\t35099 - 11905: 0xF1DA,\n\t35100 - 11905: 0xD18C,\n\t35101 - 11905: 0xD18D,\n\t35102 - 11905: 0xD18E,\n\t35103 - 11905: 0xD18F,\n\t35104 - 11905: 0xD190,\n\t35105 - 11905: 0xF1D7,\n\t35106 - 11905: 0xD191,\n\t35107 - 11905: 0xD192,\n\t35108 - 11905: 0xD193,\n\t35109 - 11905: 0xC8EC,\n\t35110 - 11905: 0xD194,\n\t35111 - 11905: 0xD195,\n\t35112 - 11905: 0xD196,\n\t35113 - 11905: 0xD197,\n\t35114 - 11905: 0xCDCA,\n\t35115 - 11905: 0xF1DD,\n\t35116 - 11905: 0xD198,\n\t35117 - 11905: 0xD199,\n\t35118 - 11905: 0xD19A,\n\t35119 - 11905: 0xD19B,\n\t35120 - 11905: 0xE5BD,\n\t35121 - 11905: 0xD19C,\n\t35122 - 11905: 0xD19D,\n\t35123 - 11905: 0xD19E,\n\t35124 - 11905: 0xF1DC,\n\t35125 - 11905: 0xD19F,\n\t35126 - 11905: 0xF1DE,\n\t35127 - 11905: 0xD1A0,\n\t35128 - 11905: 0xD240,\n\t35129 - 11905: 0xD241,\n\t35130 - 11905: 0xD242,\n\t35131 - 11905: 0xD243,\n\t35132 - 11905: 0xD244,\n\t35133 - 11905: 0xD245,\n\t35134 - 11905: 0xD246,\n\t35135 - 11905: 0xD247,\n\t35136 - 11905: 0xD248,\n\t35137 - 11905: 0xF1DF,\n\t35138 - 11905: 0xD249,\n\t35139 - 11905: 0xD24A,\n\t35140 - 11905: 0xCFE5,\n\t35141 - 11905: 0xD24B,\n\t35142 - 11905: 0xD24C,\n\t35143 - 11905: 0xD24D,\n\t35144 - 11905: 0xD24E,\n\t35145 - 11905: 0xD24F,\n\t35146 - 11905: 0xD250,\n\t35147 - 11905: 0xD251,\n\t35148 - 11905: 0xD252,\n\t35149 - 11905: 0xD253,\n\t35150 - 11905: 0xD254,\n\t35151 - 11905: 0xD255,\n\t35152 - 11905: 0xD256,\n\t35153 - 11905: 0xD257,\n\t35154 - 11905: 0xD258,\n\t35155 - 11905: 0xD259,\n\t35156 - 11905: 0xD25A,\n\t35157 - 11905: 0xD25B,\n\t35158 - 11905: 0xD25C,\n\t35159 - 11905: 0xD25D,\n\t35160 - 11905: 0xD25E,\n\t35161 - 11905: 0xD25F,\n\t35162 - 11905: 0xD260,\n\t35163 - 11905: 0xD261,\n\t35164 - 11905: 0xD262,\n\t35165 - 11905: 0xD263,\n\t35166 - 11905: 0xF4C5,\n\t35167 - 11905: 0xBDF3,\n\t35168 - 11905: 0xD264,\n\t35169 - 11905: 0xD265,\n\t35170 - 11905: 0xD266,\n\t35171 - 11905: 0xD267,\n\t35172 - 11905: 0xD268,\n\t35173 - 11905: 0xD269,\n\t35174 - 11905: 0xF1E0,\n\t35175 - 11905: 0xD26A,\n\t35176 - 11905: 0xD26B,\n\t35177 - 11905: 0xD26C,\n\t35178 - 11905: 0xD26D,\n\t35179 - 11905: 0xD26E,\n\t35180 - 11905: 0xD26F,\n\t35181 - 11905: 0xD270,\n\t35182 - 11905: 0xD271,\n\t35183 - 11905: 0xD272,\n\t35184 - 11905: 0xD273,\n\t35185 - 11905: 0xD274,\n\t35186 - 11905: 0xD275,\n\t35187 - 11905: 0xD276,\n\t35188 - 11905: 0xD277,\n\t35189 - 11905: 0xD278,\n\t35190 - 11905: 0xD279,\n\t35191 - 11905: 0xD27A,\n\t35192 - 11905: 0xD27B,\n\t35193 - 11905: 0xD27C,\n\t35194 - 11905: 0xD27D,\n\t35195 - 11905: 0xF1E1,\n\t35196 - 11905: 0xD27E,\n\t35197 - 11905: 0xD280,\n\t35198 - 11905: 0xD281,\n\t35199 - 11905: 0xCEF7,\n\t35200 - 11905: 0xD282,\n\t35201 - 11905: 0xD2AA,\n\t35202 - 11905: 0xD283,\n\t35203 - 11905: 0xF1FB,\n\t35204 - 11905: 0xD284,\n\t35205 - 11905: 0xD285,\n\t35206 - 11905: 0xB8B2,\n\t35207 - 11905: 0xD286,\n\t35208 - 11905: 0xD287,\n\t35209 - 11905: 0xD288,\n\t35210 - 11905: 0xD289,\n\t35211 - 11905: 0xD28A,\n\t35212 - 11905: 0xD28B,\n\t35213 - 11905: 0xD28C,\n\t35214 - 11905: 0xD28D,\n\t35215 - 11905: 0xD28E,\n\t35216 - 11905: 0xD28F,\n\t35217 - 11905: 0xD290,\n\t35218 - 11905: 0xD291,\n\t35219 - 11905: 0xD292,\n\t35220 - 11905: 0xD293,\n\t35221 - 11905: 0xD294,\n\t35222 - 11905: 0xD295,\n\t35223 - 11905: 0xD296,\n\t35224 - 11905: 0xD297,\n\t35225 - 11905: 0xD298,\n\t35226 - 11905: 0xD299,\n\t35227 - 11905: 0xD29A,\n\t35228 - 11905: 0xD29B,\n\t35229 - 11905: 0xD29C,\n\t35230 - 11905: 0xD29D,\n\t35231 - 11905: 0xD29E,\n\t35232 - 11905: 0xD29F,\n\t35233 - 11905: 0xD2A0,\n\t35234 - 11905: 0xD340,\n\t35235 - 11905: 0xD341,\n\t35236 - 11905: 0xD342,\n\t35237 - 11905: 0xD343,\n\t35238 - 11905: 0xD344,\n\t35239 - 11905: 0xD345,\n\t35240 - 11905: 0xD346,\n\t35241 - 11905: 0xD347,\n\t35242 - 11905: 0xD348,\n\t35243 - 11905: 0xD349,\n\t35244 - 11905: 0xD34A,\n\t35245 - 11905: 0xD34B,\n\t35246 - 11905: 0xD34C,\n\t35247 - 11905: 0xD34D,\n\t35248 - 11905: 0xD34E,\n\t35249 - 11905: 0xD34F,\n\t35250 - 11905: 0xD350,\n\t35251 - 11905: 0xD351,\n\t35252 - 11905: 0xD352,\n\t35253 - 11905: 0xD353,\n\t35254 - 11905: 0xD354,\n\t35255 - 11905: 0xD355,\n\t35256 - 11905: 0xD356,\n\t35257 - 11905: 0xD357,\n\t35258 - 11905: 0xD358,\n\t35259 - 11905: 0xD359,\n\t35260 - 11905: 0xD35A,\n\t35261 - 11905: 0xD35B,\n\t35262 - 11905: 0xD35C,\n\t35263 - 11905: 0xD35D,\n\t35264 - 11905: 0xD35E,\n\t35265 - 11905: 0xBCFB,\n\t35266 - 11905: 0xB9DB,\n\t35267 - 11905: 0xD35F,\n\t35268 - 11905: 0xB9E6,\n\t35269 - 11905: 0xC3D9,\n\t35270 - 11905: 0xCAD3,\n\t35271 - 11905: 0xEAE8,\n\t35272 - 11905: 0xC0C0,\n\t35273 - 11905: 0xBEF5,\n\t35274 - 11905: 0xEAE9,\n\t35275 - 11905: 0xEAEA,\n\t35276 - 11905: 0xEAEB,\n\t35277 - 11905: 0xD360,\n\t35278 - 11905: 0xEAEC,\n\t35279 - 11905: 0xEAED,\n\t35280 - 11905: 0xEAEE,\n\t35281 - 11905: 0xEAEF,\n\t35282 - 11905: 0xBDC7,\n\t35283 - 11905: 0xD361,\n\t35284 - 11905: 0xD362,\n\t35285 - 11905: 0xD363,\n\t35286 - 11905: 0xF5FB,\n\t35287 - 11905: 0xD364,\n\t35288 - 11905: 0xD365,\n\t35289 - 11905: 0xD366,\n\t35290 - 11905: 0xF5FD,\n\t35291 - 11905: 0xD367,\n\t35292 - 11905: 0xF5FE,\n\t35293 - 11905: 0xD368,\n\t35294 - 11905: 0xF5FC,\n\t35295 - 11905: 0xD369,\n\t35296 - 11905: 0xD36A,\n\t35297 - 11905: 0xD36B,\n\t35298 - 11905: 0xD36C,\n\t35299 - 11905: 0xBDE2,\n\t35300 - 11905: 0xD36D,\n\t35301 - 11905: 0xF6A1,\n\t35302 - 11905: 0xB4A5,\n\t35303 - 11905: 0xD36E,\n\t35304 - 11905: 0xD36F,\n\t35305 - 11905: 0xD370,\n\t35306 - 11905: 0xD371,\n\t35307 - 11905: 0xF6A2,\n\t35308 - 11905: 0xD372,\n\t35309 - 11905: 0xD373,\n\t35310 - 11905: 0xD374,\n\t35311 - 11905: 0xF6A3,\n\t35312 - 11905: 0xD375,\n\t35313 - 11905: 0xD376,\n\t35314 - 11905: 0xD377,\n\t35315 - 11905: 0xECB2,\n\t35316 - 11905: 0xD378,\n\t35317 - 11905: 0xD379,\n\t35318 - 11905: 0xD37A,\n\t35319 - 11905: 0xD37B,\n\t35320 - 11905: 0xD37C,\n\t35321 - 11905: 0xD37D,\n\t35322 - 11905: 0xD37E,\n\t35323 - 11905: 0xD380,\n\t35324 - 11905: 0xD381,\n\t35325 - 11905: 0xD382,\n\t35326 - 11905: 0xD383,\n\t35327 - 11905: 0xD384,\n\t35328 - 11905: 0xD1D4,\n\t35329 - 11905: 0xD385,\n\t35330 - 11905: 0xD386,\n\t35331 - 11905: 0xD387,\n\t35332 - 11905: 0xD388,\n\t35333 - 11905: 0xD389,\n\t35334 - 11905: 0xD38A,\n\t35335 - 11905: 0xD9EA,\n\t35336 - 11905: 0xD38B,\n\t35337 - 11905: 0xD38C,\n\t35338 - 11905: 0xD38D,\n\t35339 - 11905: 0xD38E,\n\t35340 - 11905: 0xD38F,\n\t35341 - 11905: 0xD390,\n\t35342 - 11905: 0xD391,\n\t35343 - 11905: 0xD392,\n\t35344 - 11905: 0xD393,\n\t35345 - 11905: 0xD394,\n\t35346 - 11905: 0xD395,\n\t35347 - 11905: 0xD396,\n\t35348 - 11905: 0xD397,\n\t35349 - 11905: 0xD398,\n\t35350 - 11905: 0xD399,\n\t35351 - 11905: 0xD39A,\n\t35352 - 11905: 0xD39B,\n\t35353 - 11905: 0xD39C,\n\t35354 - 11905: 0xD39D,\n\t35355 - 11905: 0xD39E,\n\t35356 - 11905: 0xD39F,\n\t35357 - 11905: 0xD3A0,\n\t35358 - 11905: 0xD440,\n\t35359 - 11905: 0xD441,\n\t35360 - 11905: 0xD442,\n\t35361 - 11905: 0xD443,\n\t35362 - 11905: 0xD444,\n\t35363 - 11905: 0xD445,\n\t35364 - 11905: 0xD446,\n\t35365 - 11905: 0xD447,\n\t35366 - 11905: 0xD448,\n\t35367 - 11905: 0xD449,\n\t35368 - 11905: 0xD44A,\n\t35369 - 11905: 0xD44B,\n\t35370 - 11905: 0xD44C,\n\t35371 - 11905: 0xD44D,\n\t35372 - 11905: 0xD44E,\n\t35373 - 11905: 0xD44F,\n\t35374 - 11905: 0xD450,\n\t35375 - 11905: 0xD451,\n\t35376 - 11905: 0xD452,\n\t35377 - 11905: 0xD453,\n\t35378 - 11905: 0xD454,\n\t35379 - 11905: 0xD455,\n\t35380 - 11905: 0xD456,\n\t35381 - 11905: 0xD457,\n\t35382 - 11905: 0xD458,\n\t35383 - 11905: 0xD459,\n\t35384 - 11905: 0xD45A,\n\t35385 - 11905: 0xD45B,\n\t35386 - 11905: 0xD45C,\n\t35387 - 11905: 0xD45D,\n\t35388 - 11905: 0xD45E,\n\t35389 - 11905: 0xD45F,\n\t35390 - 11905: 0xF6A4,\n\t35391 - 11905: 0xD460,\n\t35392 - 11905: 0xD461,\n\t35393 - 11905: 0xD462,\n\t35394 - 11905: 0xD463,\n\t35395 - 11905: 0xD464,\n\t35396 - 11905: 0xD465,\n\t35397 - 11905: 0xD466,\n\t35398 - 11905: 0xD467,\n\t35399 - 11905: 0xD468,\n\t35400 - 11905: 0xEEBA,\n\t35401 - 11905: 0xD469,\n\t35402 - 11905: 0xD46A,\n\t35403 - 11905: 0xD46B,\n\t35404 - 11905: 0xD46C,\n\t35405 - 11905: 0xD46D,\n\t35406 - 11905: 0xD46E,\n\t35407 - 11905: 0xD46F,\n\t35408 - 11905: 0xD470,\n\t35409 - 11905: 0xD471,\n\t35410 - 11905: 0xD472,\n\t35411 - 11905: 0xD473,\n\t35412 - 11905: 0xD474,\n\t35413 - 11905: 0xD475,\n\t35414 - 11905: 0xD476,\n\t35415 - 11905: 0xD477,\n\t35416 - 11905: 0xD478,\n\t35417 - 11905: 0xD479,\n\t35418 - 11905: 0xD47A,\n\t35419 - 11905: 0xD47B,\n\t35420 - 11905: 0xD47C,\n\t35421 - 11905: 0xD47D,\n\t35422 - 11905: 0xD47E,\n\t35423 - 11905: 0xD480,\n\t35424 - 11905: 0xD481,\n\t35425 - 11905: 0xD482,\n\t35426 - 11905: 0xD483,\n\t35427 - 11905: 0xD484,\n\t35428 - 11905: 0xD485,\n\t35429 - 11905: 0xD486,\n\t35430 - 11905: 0xD487,\n\t35431 - 11905: 0xD488,\n\t35432 - 11905: 0xD489,\n\t35433 - 11905: 0xD48A,\n\t35434 - 11905: 0xD48B,\n\t35435 - 11905: 0xD48C,\n\t35436 - 11905: 0xD48D,\n\t35437 - 11905: 0xD48E,\n\t35438 - 11905: 0xD48F,\n\t35439 - 11905: 0xD490,\n\t35440 - 11905: 0xD491,\n\t35441 - 11905: 0xD492,\n\t35442 - 11905: 0xD493,\n\t35443 - 11905: 0xD494,\n\t35444 - 11905: 0xD495,\n\t35445 - 11905: 0xD496,\n\t35446 - 11905: 0xD497,\n\t35447 - 11905: 0xD498,\n\t35448 - 11905: 0xD499,\n\t35449 - 11905: 0xD5B2,\n\t35450 - 11905: 0xD49A,\n\t35451 - 11905: 0xD49B,\n\t35452 - 11905: 0xD49C,\n\t35453 - 11905: 0xD49D,\n\t35454 - 11905: 0xD49E,\n\t35455 - 11905: 0xD49F,\n\t35456 - 11905: 0xD4A0,\n\t35457 - 11905: 0xD540,\n\t35458 - 11905: 0xD541,\n\t35459 - 11905: 0xD542,\n\t35460 - 11905: 0xD543,\n\t35461 - 11905: 0xD544,\n\t35462 - 11905: 0xD545,\n\t35463 - 11905: 0xD546,\n\t35464 - 11905: 0xD547,\n\t35465 - 11905: 0xD3FE,\n\t35466 - 11905: 0xCCDC,\n\t35467 - 11905: 0xD548,\n\t35468 - 11905: 0xD549,\n\t35469 - 11905: 0xD54A,\n\t35470 - 11905: 0xD54B,\n\t35471 - 11905: 0xD54C,\n\t35472 - 11905: 0xD54D,\n\t35473 - 11905: 0xD54E,\n\t35474 - 11905: 0xD54F,\n\t35475 - 11905: 0xCAC4,\n\t35476 - 11905: 0xD550,\n\t35477 - 11905: 0xD551,\n\t35478 - 11905: 0xD552,\n\t35479 - 11905: 0xD553,\n\t35480 - 11905: 0xD554,\n\t35481 - 11905: 0xD555,\n\t35482 - 11905: 0xD556,\n\t35483 - 11905: 0xD557,\n\t35484 - 11905: 0xD558,\n\t35485 - 11905: 0xD559,\n\t35486 - 11905: 0xD55A,\n\t35487 - 11905: 0xD55B,\n\t35488 - 11905: 0xD55C,\n\t35489 - 11905: 0xD55D,\n\t35490 - 11905: 0xD55E,\n\t35491 - 11905: 0xD55F,\n\t35492 - 11905: 0xD560,\n\t35493 - 11905: 0xD561,\n\t35494 - 11905: 0xD562,\n\t35495 - 11905: 0xD563,\n\t35496 - 11905: 0xD564,\n\t35497 - 11905: 0xD565,\n\t35498 - 11905: 0xD566,\n\t35499 - 11905: 0xD567,\n\t35500 - 11905: 0xD568,\n\t35501 - 11905: 0xD569,\n\t35502 - 11905: 0xD56A,\n\t35503 - 11905: 0xD56B,\n\t35504 - 11905: 0xD56C,\n\t35505 - 11905: 0xD56D,\n\t35506 - 11905: 0xD56E,\n\t35507 - 11905: 0xD56F,\n\t35508 - 11905: 0xD570,\n\t35509 - 11905: 0xD571,\n\t35510 - 11905: 0xD572,\n\t35511 - 11905: 0xD573,\n\t35512 - 11905: 0xD574,\n\t35513 - 11905: 0xD575,\n\t35514 - 11905: 0xD576,\n\t35515 - 11905: 0xD577,\n\t35516 - 11905: 0xD578,\n\t35517 - 11905: 0xD579,\n\t35518 - 11905: 0xD57A,\n\t35519 - 11905: 0xD57B,\n\t35520 - 11905: 0xD57C,\n\t35521 - 11905: 0xD57D,\n\t35522 - 11905: 0xD57E,\n\t35523 - 11905: 0xD580,\n\t35524 - 11905: 0xD581,\n\t35525 - 11905: 0xD582,\n\t35526 - 11905: 0xD583,\n\t35527 - 11905: 0xD584,\n\t35528 - 11905: 0xD585,\n\t35529 - 11905: 0xD586,\n\t35530 - 11905: 0xD587,\n\t35531 - 11905: 0xD588,\n\t35532 - 11905: 0xD589,\n\t35533 - 11905: 0xD58A,\n\t35534 - 11905: 0xD58B,\n\t35535 - 11905: 0xD58C,\n\t35536 - 11905: 0xD58D,\n\t35537 - 11905: 0xD58E,\n\t35538 - 11905: 0xD58F,\n\t35539 - 11905: 0xD590,\n\t35540 - 11905: 0xD591,\n\t35541 - 11905: 0xD592,\n\t35542 - 11905: 0xD593,\n\t35543 - 11905: 0xD594,\n\t35544 - 11905: 0xD595,\n\t35545 - 11905: 0xD596,\n\t35546 - 11905: 0xD597,\n\t35547 - 11905: 0xD598,\n\t35548 - 11905: 0xD599,\n\t35549 - 11905: 0xD59A,\n\t35550 - 11905: 0xD59B,\n\t35551 - 11905: 0xD59C,\n\t35552 - 11905: 0xD59D,\n\t35553 - 11905: 0xD59E,\n\t35554 - 11905: 0xD59F,\n\t35555 - 11905: 0xD5A0,\n\t35556 - 11905: 0xD640,\n\t35557 - 11905: 0xD641,\n\t35558 - 11905: 0xD642,\n\t35559 - 11905: 0xD643,\n\t35560 - 11905: 0xD644,\n\t35561 - 11905: 0xD645,\n\t35562 - 11905: 0xD646,\n\t35563 - 11905: 0xD647,\n\t35564 - 11905: 0xD648,\n\t35565 - 11905: 0xD649,\n\t35566 - 11905: 0xD64A,\n\t35567 - 11905: 0xD64B,\n\t35568 - 11905: 0xD64C,\n\t35569 - 11905: 0xD64D,\n\t35570 - 11905: 0xD64E,\n\t35571 - 11905: 0xD64F,\n\t35572 - 11905: 0xD650,\n\t35573 - 11905: 0xD651,\n\t35574 - 11905: 0xD652,\n\t35575 - 11905: 0xD653,\n\t35576 - 11905: 0xD654,\n\t35577 - 11905: 0xD655,\n\t35578 - 11905: 0xD656,\n\t35579 - 11905: 0xD657,\n\t35580 - 11905: 0xD658,\n\t35581 - 11905: 0xD659,\n\t35582 - 11905: 0xD65A,\n\t35583 - 11905: 0xD65B,\n\t35584 - 11905: 0xD65C,\n\t35585 - 11905: 0xD65D,\n\t35586 - 11905: 0xD65E,\n\t35587 - 11905: 0xD65F,\n\t35588 - 11905: 0xD660,\n\t35589 - 11905: 0xD661,\n\t35590 - 11905: 0xD662,\n\t35591 - 11905: 0xE5C0,\n\t35592 - 11905: 0xD663,\n\t35593 - 11905: 0xD664,\n\t35594 - 11905: 0xD665,\n\t35595 - 11905: 0xD666,\n\t35596 - 11905: 0xD667,\n\t35597 - 11905: 0xD668,\n\t35598 - 11905: 0xD669,\n\t35599 - 11905: 0xD66A,\n\t35600 - 11905: 0xD66B,\n\t35601 - 11905: 0xD66C,\n\t35602 - 11905: 0xD66D,\n\t35603 - 11905: 0xD66E,\n\t35604 - 11905: 0xD66F,\n\t35605 - 11905: 0xD670,\n\t35606 - 11905: 0xD671,\n\t35607 - 11905: 0xD672,\n\t35608 - 11905: 0xD673,\n\t35609 - 11905: 0xD674,\n\t35610 - 11905: 0xD675,\n\t35611 - 11905: 0xD676,\n\t35612 - 11905: 0xD677,\n\t35613 - 11905: 0xD678,\n\t35614 - 11905: 0xD679,\n\t35615 - 11905: 0xD67A,\n\t35616 - 11905: 0xD67B,\n\t35617 - 11905: 0xD67C,\n\t35618 - 11905: 0xD67D,\n\t35619 - 11905: 0xD67E,\n\t35620 - 11905: 0xD680,\n\t35621 - 11905: 0xD681,\n\t35622 - 11905: 0xF6A5,\n\t35623 - 11905: 0xD682,\n\t35624 - 11905: 0xD683,\n\t35625 - 11905: 0xD684,\n\t35626 - 11905: 0xD685,\n\t35627 - 11905: 0xD686,\n\t35628 - 11905: 0xD687,\n\t35629 - 11905: 0xD688,\n\t35630 - 11905: 0xD689,\n\t35631 - 11905: 0xD68A,\n\t35632 - 11905: 0xD68B,\n\t35633 - 11905: 0xD68C,\n\t35634 - 11905: 0xD68D,\n\t35635 - 11905: 0xD68E,\n\t35636 - 11905: 0xD68F,\n\t35637 - 11905: 0xD690,\n\t35638 - 11905: 0xD691,\n\t35639 - 11905: 0xD692,\n\t35640 - 11905: 0xD693,\n\t35641 - 11905: 0xD694,\n\t35642 - 11905: 0xD695,\n\t35643 - 11905: 0xD696,\n\t35644 - 11905: 0xD697,\n\t35645 - 11905: 0xD698,\n\t35646 - 11905: 0xD699,\n\t35647 - 11905: 0xD69A,\n\t35648 - 11905: 0xD69B,\n\t35649 - 11905: 0xD69C,\n\t35650 - 11905: 0xD69D,\n\t35651 - 11905: 0xD69E,\n\t35652 - 11905: 0xD69F,\n\t35653 - 11905: 0xD6A0,\n\t35654 - 11905: 0xD740,\n\t35655 - 11905: 0xD741,\n\t35656 - 11905: 0xD742,\n\t35657 - 11905: 0xD743,\n\t35658 - 11905: 0xD744,\n\t35659 - 11905: 0xD745,\n\t35660 - 11905: 0xD746,\n\t35661 - 11905: 0xD747,\n\t35662 - 11905: 0xD748,\n\t35663 - 11905: 0xD749,\n\t35664 - 11905: 0xD74A,\n\t35665 - 11905: 0xD74B,\n\t35666 - 11905: 0xD74C,\n\t35667 - 11905: 0xD74D,\n\t35668 - 11905: 0xD74E,\n\t35669 - 11905: 0xD74F,\n\t35670 - 11905: 0xD750,\n\t35671 - 11905: 0xD751,\n\t35672 - 11905: 0xD752,\n\t35673 - 11905: 0xD753,\n\t35674 - 11905: 0xD754,\n\t35675 - 11905: 0xD755,\n\t35676 - 11905: 0xD756,\n\t35677 - 11905: 0xD757,\n\t35678 - 11905: 0xD758,\n\t35679 - 11905: 0xD759,\n\t35680 - 11905: 0xD75A,\n\t35681 - 11905: 0xD75B,\n\t35682 - 11905: 0xD75C,\n\t35683 - 11905: 0xD75D,\n\t35684 - 11905: 0xD75E,\n\t35685 - 11905: 0xD75F,\n\t35686 - 11905: 0xBEAF,\n\t35687 - 11905: 0xD760,\n\t35688 - 11905: 0xD761,\n\t35689 - 11905: 0xD762,\n\t35690 - 11905: 0xD763,\n\t35691 - 11905: 0xD764,\n\t35692 - 11905: 0xC6A9,\n\t35693 - 11905: 0xD765,\n\t35694 - 11905: 0xD766,\n\t35695 - 11905: 0xD767,\n\t35696 - 11905: 0xD768,\n\t35697 - 11905: 0xD769,\n\t35698 - 11905: 0xD76A,\n\t35699 - 11905: 0xD76B,\n\t35700 - 11905: 0xD76C,\n\t35701 - 11905: 0xD76D,\n\t35702 - 11905: 0xD76E,\n\t35703 - 11905: 0xD76F,\n\t35704 - 11905: 0xD770,\n\t35705 - 11905: 0xD771,\n\t35706 - 11905: 0xD772,\n\t35707 - 11905: 0xD773,\n\t35708 - 11905: 0xD774,\n\t35709 - 11905: 0xD775,\n\t35710 - 11905: 0xD776,\n\t35711 - 11905: 0xD777,\n\t35712 - 11905: 0xD778,\n\t35713 - 11905: 0xD779,\n\t35714 - 11905: 0xD77A,\n\t35715 - 11905: 0xD77B,\n\t35716 - 11905: 0xD77C,\n\t35717 - 11905: 0xD77D,\n\t35718 - 11905: 0xD77E,\n\t35719 - 11905: 0xD780,\n\t35720 - 11905: 0xD781,\n\t35721 - 11905: 0xD782,\n\t35722 - 11905: 0xD783,\n\t35723 - 11905: 0xD784,\n\t35724 - 11905: 0xD785,\n\t35725 - 11905: 0xD786,\n\t35726 - 11905: 0xD787,\n\t35727 - 11905: 0xD788,\n\t35728 - 11905: 0xD789,\n\t35729 - 11905: 0xD78A,\n\t35730 - 11905: 0xD78B,\n\t35731 - 11905: 0xD78C,\n\t35732 - 11905: 0xD78D,\n\t35733 - 11905: 0xD78E,\n\t35734 - 11905: 0xD78F,\n\t35735 - 11905: 0xD790,\n\t35736 - 11905: 0xD791,\n\t35737 - 11905: 0xD792,\n\t35738 - 11905: 0xD793,\n\t35739 - 11905: 0xD794,\n\t35740 - 11905: 0xD795,\n\t35741 - 11905: 0xD796,\n\t35742 - 11905: 0xD797,\n\t35743 - 11905: 0xD798,\n\t35744 - 11905: 0xDAA5,\n\t35745 - 11905: 0xBCC6,\n\t35746 - 11905: 0xB6A9,\n\t35747 - 11905: 0xB8BC,\n\t35748 - 11905: 0xC8CF,\n\t35749 - 11905: 0xBCA5,\n\t35750 - 11905: 0xDAA6,\n\t35751 - 11905: 0xDAA7,\n\t35752 - 11905: 0xCCD6,\n\t35753 - 11905: 0xC8C3,\n\t35754 - 11905: 0xDAA8,\n\t35755 - 11905: 0xC6FD,\n\t35756 - 11905: 0xD799,\n\t35757 - 11905: 0xD1B5,\n\t35758 - 11905: 0xD2E9,\n\t35759 - 11905: 0xD1B6,\n\t35760 - 11905: 0xBCC7,\n\t35761 - 11905: 0xD79A,\n\t35762 - 11905: 0xBDB2,\n\t35763 - 11905: 0xBBE4,\n\t35764 - 11905: 0xDAA9,\n\t35765 - 11905: 0xDAAA,\n\t35766 - 11905: 0xD1C8,\n\t35767 - 11905: 0xDAAB,\n\t35768 - 11905: 0xD0ED,\n\t35769 - 11905: 0xB6EF,\n\t35770 - 11905: 0xC2DB,\n\t35771 - 11905: 0xD79B,\n\t35772 - 11905: 0xCBCF,\n\t35773 - 11905: 0xB7ED,\n\t35774 - 11905: 0xC9E8,\n\t35775 - 11905: 0xB7C3,\n\t35776 - 11905: 0xBEF7,\n\t35777 - 11905: 0xD6A4,\n\t35778 - 11905: 0xDAAC,\n\t35779 - 11905: 0xDAAD,\n\t35780 - 11905: 0xC6C0,\n\t35781 - 11905: 0xD7E7,\n\t35782 - 11905: 0xCAB6,\n\t35783 - 11905: 0xD79C,\n\t35784 - 11905: 0xD5A9,\n\t35785 - 11905: 0xCBDF,\n\t35786 - 11905: 0xD5EF,\n\t35787 - 11905: 0xDAAE,\n\t35788 - 11905: 0xD6DF,\n\t35789 - 11905: 0xB4CA,\n\t35790 - 11905: 0xDAB0,\n\t35791 - 11905: 0xDAAF,\n\t35792 - 11905: 0xD79D,\n\t35793 - 11905: 0xD2EB,\n\t35794 - 11905: 0xDAB1,\n\t35795 - 11905: 0xDAB2,\n\t35796 - 11905: 0xDAB3,\n\t35797 - 11905: 0xCAD4,\n\t35798 - 11905: 0xDAB4,\n\t35799 - 11905: 0xCAAB,\n\t35800 - 11905: 0xDAB5,\n\t35801 - 11905: 0xDAB6,\n\t35802 - 11905: 0xB3CF,\n\t35803 - 11905: 0xD6EF,\n\t35804 - 11905: 0xDAB7,\n\t35805 - 11905: 0xBBB0,\n\t35806 - 11905: 0xB5AE,\n\t35807 - 11905: 0xDAB8,\n\t35808 - 11905: 0xDAB9,\n\t35809 - 11905: 0xB9EE,\n\t35810 - 11905: 0xD1AF,\n\t35811 - 11905: 0xD2E8,\n\t35812 - 11905: 0xDABA,\n\t35813 - 11905: 0xB8C3,\n\t35814 - 11905: 0xCFEA,\n\t35815 - 11905: 0xB2EF,\n\t35816 - 11905: 0xDABB,\n\t35817 - 11905: 0xDABC,\n\t35818 - 11905: 0xD79E,\n\t35819 - 11905: 0xBDEB,\n\t35820 - 11905: 0xCEDC,\n\t35821 - 11905: 0xD3EF,\n\t35822 - 11905: 0xDABD,\n\t35823 - 11905: 0xCEF3,\n\t35824 - 11905: 0xDABE,\n\t35825 - 11905: 0xD3D5,\n\t35826 - 11905: 0xBBE5,\n\t35827 - 11905: 0xDABF,\n\t35828 - 11905: 0xCBB5,\n\t35829 - 11905: 0xCBD0,\n\t35830 - 11905: 0xDAC0,\n\t35831 - 11905: 0xC7EB,\n\t35832 - 11905: 0xD6EE,\n\t35833 - 11905: 0xDAC1,\n\t35834 - 11905: 0xC5B5,\n\t35835 - 11905: 0xB6C1,\n\t35836 - 11905: 0xDAC2,\n\t35837 - 11905: 0xB7CC,\n\t35838 - 11905: 0xBFCE,\n\t35839 - 11905: 0xDAC3,\n\t35840 - 11905: 0xDAC4,\n\t35841 - 11905: 0xCBAD,\n\t35842 - 11905: 0xDAC5,\n\t35843 - 11905: 0xB5F7,\n\t35844 - 11905: 0xDAC6,\n\t35845 - 11905: 0xC1C2,\n\t35846 - 11905: 0xD7BB,\n\t35847 - 11905: 0xDAC7,\n\t35848 - 11905: 0xCCB8,\n\t35849 - 11905: 0xD79F,\n\t35850 - 11905: 0xD2EA,\n\t35851 - 11905: 0xC4B1,\n\t35852 - 11905: 0xDAC8,\n\t35853 - 11905: 0xB5FD,\n\t35854 - 11905: 0xBBD1,\n\t35855 - 11905: 0xDAC9,\n\t35856 - 11905: 0xD0B3,\n\t35857 - 11905: 0xDACA,\n\t35858 - 11905: 0xDACB,\n\t35859 - 11905: 0xCEBD,\n\t35860 - 11905: 0xDACC,\n\t35861 - 11905: 0xDACD,\n\t35862 - 11905: 0xDACE,\n\t35863 - 11905: 0xB2F7,\n\t35864 - 11905: 0xDAD1,\n\t35865 - 11905: 0xDACF,\n\t35866 - 11905: 0xD1E8,\n\t35867 - 11905: 0xDAD0,\n\t35868 - 11905: 0xC3D5,\n\t35869 - 11905: 0xDAD2,\n\t35870 - 11905: 0xD7A0,\n\t35871 - 11905: 0xDAD3,\n\t35872 - 11905: 0xDAD4,\n\t35873 - 11905: 0xDAD5,\n\t35874 - 11905: 0xD0BB,\n\t35875 - 11905: 0xD2A5,\n\t35876 - 11905: 0xB0F9,\n\t35877 - 11905: 0xDAD6,\n\t35878 - 11905: 0xC7AB,\n\t35879 - 11905: 0xDAD7,\n\t35880 - 11905: 0xBDF7,\n\t35881 - 11905: 0xC3A1,\n\t35882 - 11905: 0xDAD8,\n\t35883 - 11905: 0xDAD9,\n\t35884 - 11905: 0xC3FD,\n\t35885 - 11905: 0xCCB7,\n\t35886 - 11905: 0xDADA,\n\t35887 - 11905: 0xDADB,\n\t35888 - 11905: 0xC0BE,\n\t35889 - 11905: 0xC6D7,\n\t35890 - 11905: 0xDADC,\n\t35891 - 11905: 0xDADD,\n\t35892 - 11905: 0xC7B4,\n\t35893 - 11905: 0xDADE,\n\t35894 - 11905: 0xDADF,\n\t35895 - 11905: 0xB9C8,\n\t35896 - 11905: 0xD840,\n\t35897 - 11905: 0xD841,\n\t35898 - 11905: 0xD842,\n\t35899 - 11905: 0xD843,\n\t35900 - 11905: 0xD844,\n\t35901 - 11905: 0xD845,\n\t35902 - 11905: 0xD846,\n\t35903 - 11905: 0xD847,\n\t35904 - 11905: 0xD848,\n\t35905 - 11905: 0xBBED,\n\t35906 - 11905: 0xD849,\n\t35907 - 11905: 0xD84A,\n\t35908 - 11905: 0xD84B,\n\t35909 - 11905: 0xD84C,\n\t35910 - 11905: 0xB6B9,\n\t35911 - 11905: 0xF4F8,\n\t35912 - 11905: 0xD84D,\n\t35913 - 11905: 0xF4F9,\n\t35914 - 11905: 0xD84E,\n\t35915 - 11905: 0xD84F,\n\t35916 - 11905: 0xCDE3,\n\t35917 - 11905: 0xD850,\n\t35918 - 11905: 0xD851,\n\t35919 - 11905: 0xD852,\n\t35920 - 11905: 0xD853,\n\t35921 - 11905: 0xD854,\n\t35922 - 11905: 0xD855,\n\t35923 - 11905: 0xD856,\n\t35924 - 11905: 0xD857,\n\t35925 - 11905: 0xF5B9,\n\t35926 - 11905: 0xD858,\n\t35927 - 11905: 0xD859,\n\t35928 - 11905: 0xD85A,\n\t35929 - 11905: 0xD85B,\n\t35930 - 11905: 0xEBE0,\n\t35931 - 11905: 0xD85C,\n\t35932 - 11905: 0xD85D,\n\t35933 - 11905: 0xD85E,\n\t35934 - 11905: 0xD85F,\n\t35935 - 11905: 0xD860,\n\t35936 - 11905: 0xD861,\n\t35937 - 11905: 0xCFF3,\n\t35938 - 11905: 0xBBBF,\n\t35939 - 11905: 0xD862,\n\t35940 - 11905: 0xD863,\n\t35941 - 11905: 0xD864,\n\t35942 - 11905: 0xD865,\n\t35943 - 11905: 0xD866,\n\t35944 - 11905: 0xD867,\n\t35945 - 11905: 0xD868,\n\t35946 - 11905: 0xBAC0,\n\t35947 - 11905: 0xD4A5,\n\t35948 - 11905: 0xD869,\n\t35949 - 11905: 0xD86A,\n\t35950 - 11905: 0xD86B,\n\t35951 - 11905: 0xD86C,\n\t35952 - 11905: 0xD86D,\n\t35953 - 11905: 0xD86E,\n\t35954 - 11905: 0xD86F,\n\t35955 - 11905: 0xE1D9,\n\t35956 - 11905: 0xD870,\n\t35957 - 11905: 0xD871,\n\t35958 - 11905: 0xD872,\n\t35959 - 11905: 0xD873,\n\t35960 - 11905: 0xF5F4,\n\t35961 - 11905: 0xB1AA,\n\t35962 - 11905: 0xB2F2,\n\t35963 - 11905: 0xD874,\n\t35964 - 11905: 0xD875,\n\t35965 - 11905: 0xD876,\n\t35966 - 11905: 0xD877,\n\t35967 - 11905: 0xD878,\n\t35968 - 11905: 0xD879,\n\t35969 - 11905: 0xD87A,\n\t35970 - 11905: 0xF5F5,\n\t35971 - 11905: 0xD87B,\n\t35972 - 11905: 0xD87C,\n\t35973 - 11905: 0xF5F7,\n\t35974 - 11905: 0xD87D,\n\t35975 - 11905: 0xD87E,\n\t35976 - 11905: 0xD880,\n\t35977 - 11905: 0xBAD1,\n\t35978 - 11905: 0xF5F6,\n\t35979 - 11905: 0xD881,\n\t35980 - 11905: 0xC3B2,\n\t35981 - 11905: 0xD882,\n\t35982 - 11905: 0xD883,\n\t35983 - 11905: 0xD884,\n\t35984 - 11905: 0xD885,\n\t35985 - 11905: 0xD886,\n\t35986 - 11905: 0xD887,\n\t35987 - 11905: 0xD888,\n\t35988 - 11905: 0xF5F9,\n\t35989 - 11905: 0xD889,\n\t35990 - 11905: 0xD88A,\n\t35991 - 11905: 0xD88B,\n\t35992 - 11905: 0xF5F8,\n\t35993 - 11905: 0xD88C,\n\t35994 - 11905: 0xD88D,\n\t35995 - 11905: 0xD88E,\n\t35996 - 11905: 0xD88F,\n\t35997 - 11905: 0xD890,\n\t35998 - 11905: 0xD891,\n\t35999 - 11905: 0xD892,\n\t36000 - 11905: 0xD893,\n\t36001 - 11905: 0xD894,\n\t36002 - 11905: 0xD895,\n\t36003 - 11905: 0xD896,\n\t36004 - 11905: 0xD897,\n\t36005 - 11905: 0xD898,\n\t36006 - 11905: 0xD899,\n\t36007 - 11905: 0xD89A,\n\t36008 - 11905: 0xD89B,\n\t36009 - 11905: 0xD89C,\n\t36010 - 11905: 0xD89D,\n\t36011 - 11905: 0xD89E,\n\t36012 - 11905: 0xD89F,\n\t36013 - 11905: 0xD8A0,\n\t36014 - 11905: 0xD940,\n\t36015 - 11905: 0xD941,\n\t36016 - 11905: 0xD942,\n\t36017 - 11905: 0xD943,\n\t36018 - 11905: 0xD944,\n\t36019 - 11905: 0xD945,\n\t36020 - 11905: 0xD946,\n\t36021 - 11905: 0xD947,\n\t36022 - 11905: 0xD948,\n\t36023 - 11905: 0xD949,\n\t36024 - 11905: 0xD94A,\n\t36025 - 11905: 0xD94B,\n\t36026 - 11905: 0xD94C,\n\t36027 - 11905: 0xD94D,\n\t36028 - 11905: 0xD94E,\n\t36029 - 11905: 0xD94F,\n\t36030 - 11905: 0xD950,\n\t36031 - 11905: 0xD951,\n\t36032 - 11905: 0xD952,\n\t36033 - 11905: 0xD953,\n\t36034 - 11905: 0xD954,\n\t36035 - 11905: 0xD955,\n\t36036 - 11905: 0xD956,\n\t36037 - 11905: 0xD957,\n\t36038 - 11905: 0xD958,\n\t36039 - 11905: 0xD959,\n\t36040 - 11905: 0xD95A,\n\t36041 - 11905: 0xD95B,\n\t36042 - 11905: 0xD95C,\n\t36043 - 11905: 0xD95D,\n\t36044 - 11905: 0xD95E,\n\t36045 - 11905: 0xD95F,\n\t36046 - 11905: 0xD960,\n\t36047 - 11905: 0xD961,\n\t36048 - 11905: 0xD962,\n\t36049 - 11905: 0xD963,\n\t36050 - 11905: 0xD964,\n\t36051 - 11905: 0xD965,\n\t36052 - 11905: 0xD966,\n\t36053 - 11905: 0xD967,\n\t36054 - 11905: 0xD968,\n\t36055 - 11905: 0xD969,\n\t36056 - 11905: 0xD96A,\n\t36057 - 11905: 0xD96B,\n\t36058 - 11905: 0xD96C,\n\t36059 - 11905: 0xD96D,\n\t36060 - 11905: 0xD96E,\n\t36061 - 11905: 0xD96F,\n\t36062 - 11905: 0xD970,\n\t36063 - 11905: 0xD971,\n\t36064 - 11905: 0xD972,\n\t36065 - 11905: 0xD973,\n\t36066 - 11905: 0xD974,\n\t36067 - 11905: 0xD975,\n\t36068 - 11905: 0xD976,\n\t36069 - 11905: 0xD977,\n\t36070 - 11905: 0xD978,\n\t36071 - 11905: 0xD979,\n\t36072 - 11905: 0xD97A,\n\t36073 - 11905: 0xD97B,\n\t36074 - 11905: 0xD97C,\n\t36075 - 11905: 0xD97D,\n\t36076 - 11905: 0xD97E,\n\t36077 - 11905: 0xD980,\n\t36078 - 11905: 0xD981,\n\t36079 - 11905: 0xD982,\n\t36080 - 11905: 0xD983,\n\t36081 - 11905: 0xD984,\n\t36082 - 11905: 0xD985,\n\t36083 - 11905: 0xD986,\n\t36084 - 11905: 0xD987,\n\t36085 - 11905: 0xD988,\n\t36086 - 11905: 0xD989,\n\t36087 - 11905: 0xD98A,\n\t36088 - 11905: 0xD98B,\n\t36089 - 11905: 0xD98C,\n\t36090 - 11905: 0xD98D,\n\t36091 - 11905: 0xD98E,\n\t36092 - 11905: 0xD98F,\n\t36093 - 11905: 0xD990,\n\t36094 - 11905: 0xD991,\n\t36095 - 11905: 0xD992,\n\t36096 - 11905: 0xD993,\n\t36097 - 11905: 0xD994,\n\t36098 - 11905: 0xD995,\n\t36099 - 11905: 0xD996,\n\t36100 - 11905: 0xD997,\n\t36101 - 11905: 0xD998,\n\t36102 - 11905: 0xD999,\n\t36103 - 11905: 0xD99A,\n\t36104 - 11905: 0xD99B,\n\t36105 - 11905: 0xD99C,\n\t36106 - 11905: 0xD99D,\n\t36107 - 11905: 0xD99E,\n\t36108 - 11905: 0xD99F,\n\t36109 - 11905: 0xD9A0,\n\t36110 - 11905: 0xDA40,\n\t36111 - 11905: 0xDA41,\n\t36112 - 11905: 0xDA42,\n\t36113 - 11905: 0xDA43,\n\t36114 - 11905: 0xDA44,\n\t36115 - 11905: 0xDA45,\n\t36116 - 11905: 0xDA46,\n\t36117 - 11905: 0xDA47,\n\t36118 - 11905: 0xDA48,\n\t36119 - 11905: 0xDA49,\n\t36120 - 11905: 0xDA4A,\n\t36121 - 11905: 0xDA4B,\n\t36122 - 11905: 0xDA4C,\n\t36123 - 11905: 0xDA4D,\n\t36124 - 11905: 0xDA4E,\n\t36125 - 11905: 0xB1B4,\n\t36126 - 11905: 0xD5EA,\n\t36127 - 11905: 0xB8BA,\n\t36128 - 11905: 0xDA4F,\n\t36129 - 11905: 0xB9B1,\n\t36130 - 11905: 0xB2C6,\n\t36131 - 11905: 0xD4F0,\n\t36132 - 11905: 0xCFCD,\n\t36133 - 11905: 0xB0DC,\n\t36134 - 11905: 0xD5CB,\n\t36135 - 11905: 0xBBF5,\n\t36136 - 11905: 0xD6CA,\n\t36137 - 11905: 0xB7B7,\n\t36138 - 11905: 0xCCB0,\n\t36139 - 11905: 0xC6B6,\n\t36140 - 11905: 0xB1E1,\n\t36141 - 11905: 0xB9BA,\n\t36142 - 11905: 0xD6FC,\n\t36143 - 11905: 0xB9E1,\n\t36144 - 11905: 0xB7A1,\n\t36145 - 11905: 0xBCFA,\n\t36146 - 11905: 0xEADA,\n\t36147 - 11905: 0xEADB,\n\t36148 - 11905: 0xCCF9,\n\t36149 - 11905: 0xB9F3,\n\t36150 - 11905: 0xEADC,\n\t36151 - 11905: 0xB4FB,\n\t36152 - 11905: 0xC3B3,\n\t36153 - 11905: 0xB7D1,\n\t36154 - 11905: 0xBAD8,\n\t36155 - 11905: 0xEADD,\n\t36156 - 11905: 0xD4F4,\n\t36157 - 11905: 0xEADE,\n\t36158 - 11905: 0xBCD6,\n\t36159 - 11905: 0xBBDF,\n\t36160 - 11905: 0xEADF,\n\t36161 - 11905: 0xC1DE,\n\t36162 - 11905: 0xC2B8,\n\t36163 - 11905: 0xD4DF,\n\t36164 - 11905: 0xD7CA,\n\t36165 - 11905: 0xEAE0,\n\t36166 - 11905: 0xEAE1,\n\t36167 - 11905: 0xEAE4,\n\t36168 - 11905: 0xEAE2,\n\t36169 - 11905: 0xEAE3,\n\t36170 - 11905: 0xC9DE,\n\t36171 - 11905: 0xB8B3,\n\t36172 - 11905: 0xB6C4,\n\t36173 - 11905: 0xEAE5,\n\t36174 - 11905: 0xCAEA,\n\t36175 - 11905: 0xC9CD,\n\t36176 - 11905: 0xB4CD,\n\t36177 - 11905: 0xDA50,\n\t36178 - 11905: 0xDA51,\n\t36179 - 11905: 0xE2D9,\n\t36180 - 11905: 0xC5E2,\n\t36181 - 11905: 0xEAE6,\n\t36182 - 11905: 0xC0B5,\n\t36183 - 11905: 0xDA52,\n\t36184 - 11905: 0xD7B8,\n\t36185 - 11905: 0xEAE7,\n\t36186 - 11905: 0xD7AC,\n\t36187 - 11905: 0xC8FC,\n\t36188 - 11905: 0xD8D3,\n\t36189 - 11905: 0xD8CD,\n\t36190 - 11905: 0xD4DE,\n\t36191 - 11905: 0xDA53,\n\t36192 - 11905: 0xD4F9,\n\t36193 - 11905: 0xC9C4,\n\t36194 - 11905: 0xD3AE,\n\t36195 - 11905: 0xB8D3,\n\t36196 - 11905: 0xB3E0,\n\t36197 - 11905: 0xDA54,\n\t36198 - 11905: 0xC9E2,\n\t36199 - 11905: 0xF4F6,\n\t36200 - 11905: 0xDA55,\n\t36201 - 11905: 0xDA56,\n\t36202 - 11905: 0xDA57,\n\t36203 - 11905: 0xBAD5,\n\t36204 - 11905: 0xDA58,\n\t36205 - 11905: 0xF4F7,\n\t36206 - 11905: 0xDA59,\n\t36207 - 11905: 0xDA5A,\n\t36208 - 11905: 0xD7DF,\n\t36209 - 11905: 0xDA5B,\n\t36210 - 11905: 0xDA5C,\n\t36211 - 11905: 0xF4F1,\n\t36212 - 11905: 0xB8B0,\n\t36213 - 11905: 0xD5D4,\n\t36214 - 11905: 0xB8CF,\n\t36215 - 11905: 0xC6F0,\n\t36216 - 11905: 0xDA5D,\n\t36217 - 11905: 0xDA5E,\n\t36218 - 11905: 0xDA5F,\n\t36219 - 11905: 0xDA60,\n\t36220 - 11905: 0xDA61,\n\t36221 - 11905: 0xDA62,\n\t36222 - 11905: 0xDA63,\n\t36223 - 11905: 0xDA64,\n\t36224 - 11905: 0xDA65,\n\t36225 - 11905: 0xB3C3,\n\t36226 - 11905: 0xDA66,\n\t36227 - 11905: 0xDA67,\n\t36228 - 11905: 0xF4F2,\n\t36229 - 11905: 0xB3AC,\n\t36230 - 11905: 0xDA68,\n\t36231 - 11905: 0xDA69,\n\t36232 - 11905: 0xDA6A,\n\t36233 - 11905: 0xDA6B,\n\t36234 - 11905: 0xD4BD,\n\t36235 - 11905: 0xC7F7,\n\t36236 - 11905: 0xDA6C,\n\t36237 - 11905: 0xDA6D,\n\t36238 - 11905: 0xDA6E,\n\t36239 - 11905: 0xDA6F,\n\t36240 - 11905: 0xDA70,\n\t36241 - 11905: 0xF4F4,\n\t36242 - 11905: 0xDA71,\n\t36243 - 11905: 0xDA72,\n\t36244 - 11905: 0xF4F3,\n\t36245 - 11905: 0xDA73,\n\t36246 - 11905: 0xDA74,\n\t36247 - 11905: 0xDA75,\n\t36248 - 11905: 0xDA76,\n\t36249 - 11905: 0xDA77,\n\t36250 - 11905: 0xDA78,\n\t36251 - 11905: 0xDA79,\n\t36252 - 11905: 0xDA7A,\n\t36253 - 11905: 0xDA7B,\n\t36254 - 11905: 0xDA7C,\n\t36255 - 11905: 0xCCCB,\n\t36256 - 11905: 0xDA7D,\n\t36257 - 11905: 0xDA7E,\n\t36258 - 11905: 0xDA80,\n\t36259 - 11905: 0xC8A4,\n\t36260 - 11905: 0xDA81,\n\t36261 - 11905: 0xDA82,\n\t36262 - 11905: 0xDA83,\n\t36263 - 11905: 0xDA84,\n\t36264 - 11905: 0xDA85,\n\t36265 - 11905: 0xDA86,\n\t36266 - 11905: 0xDA87,\n\t36267 - 11905: 0xDA88,\n\t36268 - 11905: 0xDA89,\n\t36269 - 11905: 0xDA8A,\n\t36270 - 11905: 0xDA8B,\n\t36271 - 11905: 0xDA8C,\n\t36272 - 11905: 0xDA8D,\n\t36273 - 11905: 0xF4F5,\n\t36274 - 11905: 0xDA8E,\n\t36275 - 11905: 0xD7E3,\n\t36276 - 11905: 0xC5BF,\n\t36277 - 11905: 0xF5C0,\n\t36278 - 11905: 0xDA8F,\n\t36279 - 11905: 0xDA90,\n\t36280 - 11905: 0xF5BB,\n\t36281 - 11905: 0xDA91,\n\t36282 - 11905: 0xF5C3,\n\t36283 - 11905: 0xDA92,\n\t36284 - 11905: 0xF5C2,\n\t36285 - 11905: 0xDA93,\n\t36286 - 11905: 0xD6BA,\n\t36287 - 11905: 0xF5C1,\n\t36288 - 11905: 0xDA94,\n\t36289 - 11905: 0xDA95,\n\t36290 - 11905: 0xDA96,\n\t36291 - 11905: 0xD4BE,\n\t36292 - 11905: 0xF5C4,\n\t36293 - 11905: 0xDA97,\n\t36294 - 11905: 0xF5CC,\n\t36295 - 11905: 0xDA98,\n\t36296 - 11905: 0xDA99,\n\t36297 - 11905: 0xDA9A,\n\t36298 - 11905: 0xDA9B,\n\t36299 - 11905: 0xB0CF,\n\t36300 - 11905: 0xB5F8,\n\t36301 - 11905: 0xDA9C,\n\t36302 - 11905: 0xF5C9,\n\t36303 - 11905: 0xF5CA,\n\t36304 - 11905: 0xDA9D,\n\t36305 - 11905: 0xC5DC,\n\t36306 - 11905: 0xDA9E,\n\t36307 - 11905: 0xDA9F,\n\t36308 - 11905: 0xDAA0,\n\t36309 - 11905: 0xDB40,\n\t36310 - 11905: 0xF5C5,\n\t36311 - 11905: 0xF5C6,\n\t36312 - 11905: 0xDB41,\n\t36313 - 11905: 0xDB42,\n\t36314 - 11905: 0xF5C7,\n\t36315 - 11905: 0xF5CB,\n\t36316 - 11905: 0xDB43,\n\t36317 - 11905: 0xBEE0,\n\t36318 - 11905: 0xF5C8,\n\t36319 - 11905: 0xB8FA,\n\t36320 - 11905: 0xDB44,\n\t36321 - 11905: 0xDB45,\n\t36322 - 11905: 0xDB46,\n\t36323 - 11905: 0xF5D0,\n\t36324 - 11905: 0xF5D3,\n\t36325 - 11905: 0xDB47,\n\t36326 - 11905: 0xDB48,\n\t36327 - 11905: 0xDB49,\n\t36328 - 11905: 0xBFE7,\n\t36329 - 11905: 0xDB4A,\n\t36330 - 11905: 0xB9F2,\n\t36331 - 11905: 0xF5BC,\n\t36332 - 11905: 0xF5CD,\n\t36333 - 11905: 0xDB4B,\n\t36334 - 11905: 0xDB4C,\n\t36335 - 11905: 0xC2B7,\n\t36336 - 11905: 0xDB4D,\n\t36337 - 11905: 0xDB4E,\n\t36338 - 11905: 0xDB4F,\n\t36339 - 11905: 0xCCF8,\n\t36340 - 11905: 0xDB50,\n\t36341 - 11905: 0xBCF9,\n\t36342 - 11905: 0xDB51,\n\t36343 - 11905: 0xF5CE,\n\t36344 - 11905: 0xF5CF,\n\t36345 - 11905: 0xF5D1,\n\t36346 - 11905: 0xB6E5,\n\t36347 - 11905: 0xF5D2,\n\t36348 - 11905: 0xDB52,\n\t36349 - 11905: 0xF5D5,\n\t36350 - 11905: 0xDB53,\n\t36351 - 11905: 0xDB54,\n\t36352 - 11905: 0xDB55,\n\t36353 - 11905: 0xDB56,\n\t36354 - 11905: 0xDB57,\n\t36355 - 11905: 0xDB58,\n\t36356 - 11905: 0xDB59,\n\t36357 - 11905: 0xF5BD,\n\t36358 - 11905: 0xDB5A,\n\t36359 - 11905: 0xDB5B,\n\t36360 - 11905: 0xDB5C,\n\t36361 - 11905: 0xF5D4,\n\t36362 - 11905: 0xD3BB,\n\t36363 - 11905: 0xDB5D,\n\t36364 - 11905: 0xB3EC,\n\t36365 - 11905: 0xDB5E,\n\t36366 - 11905: 0xDB5F,\n\t36367 - 11905: 0xCCA4,\n\t36368 - 11905: 0xDB60,\n\t36369 - 11905: 0xDB61,\n\t36370 - 11905: 0xDB62,\n\t36371 - 11905: 0xDB63,\n\t36372 - 11905: 0xF5D6,\n\t36373 - 11905: 0xDB64,\n\t36374 - 11905: 0xDB65,\n\t36375 - 11905: 0xDB66,\n\t36376 - 11905: 0xDB67,\n\t36377 - 11905: 0xDB68,\n\t36378 - 11905: 0xDB69,\n\t36379 - 11905: 0xDB6A,\n\t36380 - 11905: 0xDB6B,\n\t36381 - 11905: 0xF5D7,\n\t36382 - 11905: 0xBEE1,\n\t36383 - 11905: 0xF5D8,\n\t36384 - 11905: 0xDB6C,\n\t36385 - 11905: 0xDB6D,\n\t36386 - 11905: 0xCCDF,\n\t36387 - 11905: 0xF5DB,\n\t36388 - 11905: 0xDB6E,\n\t36389 - 11905: 0xDB6F,\n\t36390 - 11905: 0xDB70,\n\t36391 - 11905: 0xDB71,\n\t36392 - 11905: 0xDB72,\n\t36393 - 11905: 0xB2C8,\n\t36394 - 11905: 0xD7D9,\n\t36395 - 11905: 0xDB73,\n\t36396 - 11905: 0xF5D9,\n\t36397 - 11905: 0xDB74,\n\t36398 - 11905: 0xF5DA,\n\t36399 - 11905: 0xF5DC,\n\t36400 - 11905: 0xDB75,\n\t36401 - 11905: 0xF5E2,\n\t36402 - 11905: 0xDB76,\n\t36403 - 11905: 0xDB77,\n\t36404 - 11905: 0xDB78,\n\t36405 - 11905: 0xF5E0,\n\t36406 - 11905: 0xDB79,\n\t36407 - 11905: 0xDB7A,\n\t36408 - 11905: 0xDB7B,\n\t36409 - 11905: 0xF5DF,\n\t36410 - 11905: 0xF5DD,\n\t36411 - 11905: 0xDB7C,\n\t36412 - 11905: 0xDB7D,\n\t36413 - 11905: 0xF5E1,\n\t36414 - 11905: 0xDB7E,\n\t36415 - 11905: 0xDB80,\n\t36416 - 11905: 0xF5DE,\n\t36417 - 11905: 0xF5E4,\n\t36418 - 11905: 0xF5E5,\n\t36419 - 11905: 0xDB81,\n\t36420 - 11905: 0xCCE3,\n\t36421 - 11905: 0xDB82,\n\t36422 - 11905: 0xDB83,\n\t36423 - 11905: 0xE5BF,\n\t36424 - 11905: 0xB5B8,\n\t36425 - 11905: 0xF5E3,\n\t36426 - 11905: 0xF5E8,\n\t36427 - 11905: 0xCCA3,\n\t36428 - 11905: 0xDB84,\n\t36429 - 11905: 0xDB85,\n\t36430 - 11905: 0xDB86,\n\t36431 - 11905: 0xDB87,\n\t36432 - 11905: 0xDB88,\n\t36433 - 11905: 0xF5E6,\n\t36434 - 11905: 0xF5E7,\n\t36435 - 11905: 0xDB89,\n\t36436 - 11905: 0xDB8A,\n\t36437 - 11905: 0xDB8B,\n\t36438 - 11905: 0xDB8C,\n\t36439 - 11905: 0xDB8D,\n\t36440 - 11905: 0xDB8E,\n\t36441 - 11905: 0xF5BE,\n\t36442 - 11905: 0xDB8F,\n\t36443 - 11905: 0xDB90,\n\t36444 - 11905: 0xDB91,\n\t36445 - 11905: 0xDB92,\n\t36446 - 11905: 0xDB93,\n\t36447 - 11905: 0xDB94,\n\t36448 - 11905: 0xDB95,\n\t36449 - 11905: 0xDB96,\n\t36450 - 11905: 0xDB97,\n\t36451 - 11905: 0xDB98,\n\t36452 - 11905: 0xDB99,\n\t36453 - 11905: 0xDB9A,\n\t36454 - 11905: 0xB1C4,\n\t36455 - 11905: 0xDB9B,\n\t36456 - 11905: 0xDB9C,\n\t36457 - 11905: 0xF5BF,\n\t36458 - 11905: 0xDB9D,\n\t36459 - 11905: 0xDB9E,\n\t36460 - 11905: 0xB5C5,\n\t36461 - 11905: 0xB2E4,\n\t36462 - 11905: 0xDB9F,\n\t36463 - 11905: 0xF5EC,\n\t36464 - 11905: 0xF5E9,\n\t36465 - 11905: 0xDBA0,\n\t36466 - 11905: 0xB6D7,\n\t36467 - 11905: 0xDC40,\n\t36468 - 11905: 0xF5ED,\n\t36469 - 11905: 0xDC41,\n\t36470 - 11905: 0xF5EA,\n\t36471 - 11905: 0xDC42,\n\t36472 - 11905: 0xDC43,\n\t36473 - 11905: 0xDC44,\n\t36474 - 11905: 0xDC45,\n\t36475 - 11905: 0xDC46,\n\t36476 - 11905: 0xF5EB,\n\t36477 - 11905: 0xDC47,\n\t36478 - 11905: 0xDC48,\n\t36479 - 11905: 0xB4DA,\n\t36480 - 11905: 0xDC49,\n\t36481 - 11905: 0xD4EA,\n\t36482 - 11905: 0xDC4A,\n\t36483 - 11905: 0xDC4B,\n\t36484 - 11905: 0xDC4C,\n\t36485 - 11905: 0xF5EE,\n\t36486 - 11905: 0xDC4D,\n\t36487 - 11905: 0xB3F9,\n\t36488 - 11905: 0xDC4E,\n\t36489 - 11905: 0xDC4F,\n\t36490 - 11905: 0xDC50,\n\t36491 - 11905: 0xDC51,\n\t36492 - 11905: 0xDC52,\n\t36493 - 11905: 0xDC53,\n\t36494 - 11905: 0xDC54,\n\t36495 - 11905: 0xF5EF,\n\t36496 - 11905: 0xF5F1,\n\t36497 - 11905: 0xDC55,\n\t36498 - 11905: 0xDC56,\n\t36499 - 11905: 0xDC57,\n\t36500 - 11905: 0xF5F0,\n\t36501 - 11905: 0xDC58,\n\t36502 - 11905: 0xDC59,\n\t36503 - 11905: 0xDC5A,\n\t36504 - 11905: 0xDC5B,\n\t36505 - 11905: 0xDC5C,\n\t36506 - 11905: 0xDC5D,\n\t36507 - 11905: 0xDC5E,\n\t36508 - 11905: 0xF5F2,\n\t36509 - 11905: 0xDC5F,\n\t36510 - 11905: 0xF5F3,\n\t36511 - 11905: 0xDC60,\n\t36512 - 11905: 0xDC61,\n\t36513 - 11905: 0xDC62,\n\t36514 - 11905: 0xDC63,\n\t36515 - 11905: 0xDC64,\n\t36516 - 11905: 0xDC65,\n\t36517 - 11905: 0xDC66,\n\t36518 - 11905: 0xDC67,\n\t36519 - 11905: 0xDC68,\n\t36520 - 11905: 0xDC69,\n\t36521 - 11905: 0xDC6A,\n\t36522 - 11905: 0xDC6B,\n\t36523 - 11905: 0xC9ED,\n\t36524 - 11905: 0xB9AA,\n\t36525 - 11905: 0xDC6C,\n\t36526 - 11905: 0xDC6D,\n\t36527 - 11905: 0xC7FB,\n\t36528 - 11905: 0xDC6E,\n\t36529 - 11905: 0xDC6F,\n\t36530 - 11905: 0xB6E3,\n\t36531 - 11905: 0xDC70,\n\t36532 - 11905: 0xDC71,\n\t36533 - 11905: 0xDC72,\n\t36534 - 11905: 0xDC73,\n\t36535 - 11905: 0xDC74,\n\t36536 - 11905: 0xDC75,\n\t36537 - 11905: 0xDC76,\n\t36538 - 11905: 0xCCC9,\n\t36539 - 11905: 0xDC77,\n\t36540 - 11905: 0xDC78,\n\t36541 - 11905: 0xDC79,\n\t36542 - 11905: 0xDC7A,\n\t36543 - 11905: 0xDC7B,\n\t36544 - 11905: 0xDC7C,\n\t36545 - 11905: 0xDC7D,\n\t36546 - 11905: 0xDC7E,\n\t36547 - 11905: 0xDC80,\n\t36548 - 11905: 0xDC81,\n\t36549 - 11905: 0xDC82,\n\t36550 - 11905: 0xDC83,\n\t36551 - 11905: 0xDC84,\n\t36552 - 11905: 0xDC85,\n\t36553 - 11905: 0xDC86,\n\t36554 - 11905: 0xDC87,\n\t36555 - 11905: 0xDC88,\n\t36556 - 11905: 0xDC89,\n\t36557 - 11905: 0xDC8A,\n\t36558 - 11905: 0xEAA6,\n\t36559 - 11905: 0xDC8B,\n\t36560 - 11905: 0xDC8C,\n\t36561 - 11905: 0xDC8D,\n\t36562 - 11905: 0xDC8E,\n\t36563 - 11905: 0xDC8F,\n\t36564 - 11905: 0xDC90,\n\t36565 - 11905: 0xDC91,\n\t36566 - 11905: 0xDC92,\n\t36567 - 11905: 0xDC93,\n\t36568 - 11905: 0xDC94,\n\t36569 - 11905: 0xDC95,\n\t36570 - 11905: 0xDC96,\n\t36571 - 11905: 0xDC97,\n\t36572 - 11905: 0xDC98,\n\t36573 - 11905: 0xDC99,\n\t36574 - 11905: 0xDC9A,\n\t36575 - 11905: 0xDC9B,\n\t36576 - 11905: 0xDC9C,\n\t36577 - 11905: 0xDC9D,\n\t36578 - 11905: 0xDC9E,\n\t36579 - 11905: 0xDC9F,\n\t36580 - 11905: 0xDCA0,\n\t36581 - 11905: 0xDD40,\n\t36582 - 11905: 0xDD41,\n\t36583 - 11905: 0xDD42,\n\t36584 - 11905: 0xDD43,\n\t36585 - 11905: 0xDD44,\n\t36586 - 11905: 0xDD45,\n\t36587 - 11905: 0xDD46,\n\t36588 - 11905: 0xDD47,\n\t36589 - 11905: 0xDD48,\n\t36590 - 11905: 0xDD49,\n\t36591 - 11905: 0xDD4A,\n\t36592 - 11905: 0xDD4B,\n\t36593 - 11905: 0xDD4C,\n\t36594 - 11905: 0xDD4D,\n\t36595 - 11905: 0xDD4E,\n\t36596 - 11905: 0xDD4F,\n\t36597 - 11905: 0xDD50,\n\t36598 - 11905: 0xDD51,\n\t36599 - 11905: 0xDD52,\n\t36600 - 11905: 0xDD53,\n\t36601 - 11905: 0xDD54,\n\t36602 - 11905: 0xDD55,\n\t36603 - 11905: 0xDD56,\n\t36604 - 11905: 0xDD57,\n\t36605 - 11905: 0xDD58,\n\t36606 - 11905: 0xDD59,\n\t36607 - 11905: 0xDD5A,\n\t36608 - 11905: 0xDD5B,\n\t36609 - 11905: 0xDD5C,\n\t36610 - 11905: 0xDD5D,\n\t36611 - 11905: 0xDD5E,\n\t36612 - 11905: 0xDD5F,\n\t36613 - 11905: 0xDD60,\n\t36614 - 11905: 0xDD61,\n\t36615 - 11905: 0xDD62,\n\t36616 - 11905: 0xDD63,\n\t36617 - 11905: 0xDD64,\n\t36618 - 11905: 0xDD65,\n\t36619 - 11905: 0xDD66,\n\t36620 - 11905: 0xDD67,\n\t36621 - 11905: 0xDD68,\n\t36622 - 11905: 0xDD69,\n\t36623 - 11905: 0xDD6A,\n\t36624 - 11905: 0xDD6B,\n\t36625 - 11905: 0xDD6C,\n\t36626 - 11905: 0xDD6D,\n\t36627 - 11905: 0xDD6E,\n\t36628 - 11905: 0xDD6F,\n\t36629 - 11905: 0xDD70,\n\t36630 - 11905: 0xDD71,\n\t36631 - 11905: 0xDD72,\n\t36632 - 11905: 0xDD73,\n\t36633 - 11905: 0xDD74,\n\t36634 - 11905: 0xDD75,\n\t36635 - 11905: 0xDD76,\n\t36636 - 11905: 0xDD77,\n\t36637 - 11905: 0xDD78,\n\t36638 - 11905: 0xDD79,\n\t36639 - 11905: 0xDD7A,\n\t36640 - 11905: 0xDD7B,\n\t36641 - 11905: 0xDD7C,\n\t36642 - 11905: 0xDD7D,\n\t36643 - 11905: 0xDD7E,\n\t36644 - 11905: 0xDD80,\n\t36645 - 11905: 0xDD81,\n\t36646 - 11905: 0xDD82,\n\t36647 - 11905: 0xDD83,\n\t36648 - 11905: 0xDD84,\n\t36649 - 11905: 0xDD85,\n\t36650 - 11905: 0xDD86,\n\t36651 - 11905: 0xDD87,\n\t36652 - 11905: 0xDD88,\n\t36653 - 11905: 0xDD89,\n\t36654 - 11905: 0xDD8A,\n\t36655 - 11905: 0xDD8B,\n\t36656 - 11905: 0xDD8C,\n\t36657 - 11905: 0xDD8D,\n\t36658 - 11905: 0xDD8E,\n\t36659 - 11905: 0xDD8F,\n\t36660 - 11905: 0xDD90,\n\t36661 - 11905: 0xDD91,\n\t36662 - 11905: 0xDD92,\n\t36663 - 11905: 0xDD93,\n\t36664 - 11905: 0xDD94,\n\t36665 - 11905: 0xDD95,\n\t36666 - 11905: 0xDD96,\n\t36667 - 11905: 0xDD97,\n\t36668 - 11905: 0xDD98,\n\t36669 - 11905: 0xDD99,\n\t36670 - 11905: 0xDD9A,\n\t36671 - 11905: 0xDD9B,\n\t36672 - 11905: 0xDD9C,\n\t36673 - 11905: 0xDD9D,\n\t36674 - 11905: 0xDD9E,\n\t36675 - 11905: 0xDD9F,\n\t36676 - 11905: 0xDDA0,\n\t36677 - 11905: 0xDE40,\n\t36678 - 11905: 0xDE41,\n\t36679 - 11905: 0xDE42,\n\t36680 - 11905: 0xDE43,\n\t36681 - 11905: 0xDE44,\n\t36682 - 11905: 0xDE45,\n\t36683 - 11905: 0xDE46,\n\t36684 - 11905: 0xDE47,\n\t36685 - 11905: 0xDE48,\n\t36686 - 11905: 0xDE49,\n\t36687 - 11905: 0xDE4A,\n\t36688 - 11905: 0xDE4B,\n\t36689 - 11905: 0xDE4C,\n\t36690 - 11905: 0xDE4D,\n\t36691 - 11905: 0xDE4E,\n\t36692 - 11905: 0xDE4F,\n\t36693 - 11905: 0xDE50,\n\t36694 - 11905: 0xDE51,\n\t36695 - 11905: 0xDE52,\n\t36696 - 11905: 0xDE53,\n\t36697 - 11905: 0xDE54,\n\t36698 - 11905: 0xDE55,\n\t36699 - 11905: 0xDE56,\n\t36700 - 11905: 0xDE57,\n\t36701 - 11905: 0xDE58,\n\t36702 - 11905: 0xDE59,\n\t36703 - 11905: 0xDE5A,\n\t36704 - 11905: 0xDE5B,\n\t36705 - 11905: 0xDE5C,\n\t36706 - 11905: 0xDE5D,\n\t36707 - 11905: 0xDE5E,\n\t36708 - 11905: 0xDE5F,\n\t36709 - 11905: 0xDE60,\n\t36710 - 11905: 0xB3B5,\n\t36711 - 11905: 0xD4FE,\n\t36712 - 11905: 0xB9EC,\n\t36713 - 11905: 0xD0F9,\n\t36714 - 11905: 0xDE61,\n\t36715 - 11905: 0xE9ED,\n\t36716 - 11905: 0xD7AA,\n\t36717 - 11905: 0xE9EE,\n\t36718 - 11905: 0xC2D6,\n\t36719 - 11905: 0xC8ED,\n\t36720 - 11905: 0xBAE4,\n\t36721 - 11905: 0xE9EF,\n\t36722 - 11905: 0xE9F0,\n\t36723 - 11905: 0xE9F1,\n\t36724 - 11905: 0xD6E1,\n\t36725 - 11905: 0xE9F2,\n\t36726 - 11905: 0xE9F3,\n\t36727 - 11905: 0xE9F5,\n\t36728 - 11905: 0xE9F4,\n\t36729 - 11905: 0xE9F6,\n\t36730 - 11905: 0xE9F7,\n\t36731 - 11905: 0xC7E1,\n\t36732 - 11905: 0xE9F8,\n\t36733 - 11905: 0xD4D8,\n\t36734 - 11905: 0xE9F9,\n\t36735 - 11905: 0xBDCE,\n\t36736 - 11905: 0xDE62,\n\t36737 - 11905: 0xE9FA,\n\t36738 - 11905: 0xE9FB,\n\t36739 - 11905: 0xBDCF,\n\t36740 - 11905: 0xE9FC,\n\t36741 - 11905: 0xB8A8,\n\t36742 - 11905: 0xC1BE,\n\t36743 - 11905: 0xE9FD,\n\t36744 - 11905: 0xB1B2,\n\t36745 - 11905: 0xBBD4,\n\t36746 - 11905: 0xB9F5,\n\t36747 - 11905: 0xE9FE,\n\t36748 - 11905: 0xDE63,\n\t36749 - 11905: 0xEAA1,\n\t36750 - 11905: 0xEAA2,\n\t36751 - 11905: 0xEAA3,\n\t36752 - 11905: 0xB7F8,\n\t36753 - 11905: 0xBCAD,\n\t36754 - 11905: 0xDE64,\n\t36755 - 11905: 0xCAE4,\n\t36756 - 11905: 0xE0CE,\n\t36757 - 11905: 0xD4AF,\n\t36758 - 11905: 0xCFBD,\n\t36759 - 11905: 0xD5B7,\n\t36760 - 11905: 0xEAA4,\n\t36761 - 11905: 0xD5DE,\n\t36762 - 11905: 0xEAA5,\n\t36763 - 11905: 0xD0C1,\n\t36764 - 11905: 0xB9BC,\n\t36765 - 11905: 0xDE65,\n\t36766 - 11905: 0xB4C7,\n\t36767 - 11905: 0xB1D9,\n\t36768 - 11905: 0xDE66,\n\t36769 - 11905: 0xDE67,\n\t36770 - 11905: 0xDE68,\n\t36771 - 11905: 0xC0B1,\n\t36772 - 11905: 0xDE69,\n\t36773 - 11905: 0xDE6A,\n\t36774 - 11905: 0xDE6B,\n\t36775 - 11905: 0xDE6C,\n\t36776 - 11905: 0xB1E6,\n\t36777 - 11905: 0xB1E7,\n\t36778 - 11905: 0xDE6D,\n\t36779 - 11905: 0xB1E8,\n\t36780 - 11905: 0xDE6E,\n\t36781 - 11905: 0xDE6F,\n\t36782 - 11905: 0xDE70,\n\t36783 - 11905: 0xDE71,\n\t36784 - 11905: 0xB3BD,\n\t36785 - 11905: 0xC8E8,\n\t36786 - 11905: 0xDE72,\n\t36787 - 11905: 0xDE73,\n\t36788 - 11905: 0xDE74,\n\t36789 - 11905: 0xDE75,\n\t36790 - 11905: 0xE5C1,\n\t36791 - 11905: 0xDE76,\n\t36792 - 11905: 0xDE77,\n\t36793 - 11905: 0xB1DF,\n\t36794 - 11905: 0xDE78,\n\t36795 - 11905: 0xDE79,\n\t36796 - 11905: 0xDE7A,\n\t36797 - 11905: 0xC1C9,\n\t36798 - 11905: 0xB4EF,\n\t36799 - 11905: 0xDE7B,\n\t36800 - 11905: 0xDE7C,\n\t36801 - 11905: 0xC7A8,\n\t36802 - 11905: 0xD3D8,\n\t36803 - 11905: 0xDE7D,\n\t36804 - 11905: 0xC6F9,\n\t36805 - 11905: 0xD1B8,\n\t36806 - 11905: 0xDE7E,\n\t36807 - 11905: 0xB9FD,\n\t36808 - 11905: 0xC2F5,\n\t36809 - 11905: 0xDE80,\n\t36810 - 11905: 0xDE81,\n\t36811 - 11905: 0xDE82,\n\t36812 - 11905: 0xDE83,\n\t36813 - 11905: 0xDE84,\n\t36814 - 11905: 0xD3AD,\n\t36815 - 11905: 0xDE85,\n\t36816 - 11905: 0xD4CB,\n\t36817 - 11905: 0xBDFC,\n\t36818 - 11905: 0xDE86,\n\t36819 - 11905: 0xE5C2,\n\t36820 - 11905: 0xB7B5,\n\t36821 - 11905: 0xE5C3,\n\t36822 - 11905: 0xDE87,\n\t36823 - 11905: 0xDE88,\n\t36824 - 11905: 0xBBB9,\n\t36825 - 11905: 0xD5E2,\n\t36826 - 11905: 0xDE89,\n\t36827 - 11905: 0xBDF8,\n\t36828 - 11905: 0xD4B6,\n\t36829 - 11905: 0xCEA5,\n\t36830 - 11905: 0xC1AC,\n\t36831 - 11905: 0xB3D9,\n\t36832 - 11905: 0xDE8A,\n\t36833 - 11905: 0xDE8B,\n\t36834 - 11905: 0xCCF6,\n\t36835 - 11905: 0xDE8C,\n\t36836 - 11905: 0xE5C6,\n\t36837 - 11905: 0xE5C4,\n\t36838 - 11905: 0xE5C8,\n\t36839 - 11905: 0xDE8D,\n\t36840 - 11905: 0xE5CA,\n\t36841 - 11905: 0xE5C7,\n\t36842 - 11905: 0xB5CF,\n\t36843 - 11905: 0xC6C8,\n\t36844 - 11905: 0xDE8E,\n\t36845 - 11905: 0xB5FC,\n\t36846 - 11905: 0xE5C5,\n\t36847 - 11905: 0xDE8F,\n\t36848 - 11905: 0xCAF6,\n\t36849 - 11905: 0xDE90,\n\t36850 - 11905: 0xDE91,\n\t36851 - 11905: 0xE5C9,\n\t36852 - 11905: 0xDE92,\n\t36853 - 11905: 0xDE93,\n\t36854 - 11905: 0xDE94,\n\t36855 - 11905: 0xC3D4,\n\t36856 - 11905: 0xB1C5,\n\t36857 - 11905: 0xBCA3,\n\t36858 - 11905: 0xDE95,\n\t36859 - 11905: 0xDE96,\n\t36860 - 11905: 0xDE97,\n\t36861 - 11905: 0xD7B7,\n\t36862 - 11905: 0xDE98,\n\t36863 - 11905: 0xDE99,\n\t36864 - 11905: 0xCDCB,\n\t36865 - 11905: 0xCBCD,\n\t36866 - 11905: 0xCACA,\n\t36867 - 11905: 0xCCD3,\n\t36868 - 11905: 0xE5CC,\n\t36869 - 11905: 0xE5CB,\n\t36870 - 11905: 0xC4E6,\n\t36871 - 11905: 0xDE9A,\n\t36872 - 11905: 0xDE9B,\n\t36873 - 11905: 0xD1A1,\n\t36874 - 11905: 0xD1B7,\n\t36875 - 11905: 0xE5CD,\n\t36876 - 11905: 0xDE9C,\n\t36877 - 11905: 0xE5D0,\n\t36878 - 11905: 0xDE9D,\n\t36879 - 11905: 0xCDB8,\n\t36880 - 11905: 0xD6F0,\n\t36881 - 11905: 0xE5CF,\n\t36882 - 11905: 0xB5DD,\n\t36883 - 11905: 0xDE9E,\n\t36884 - 11905: 0xCDBE,\n\t36885 - 11905: 0xDE9F,\n\t36886 - 11905: 0xE5D1,\n\t36887 - 11905: 0xB6BA,\n\t36888 - 11905: 0xDEA0,\n\t36889 - 11905: 0xDF40,\n\t36890 - 11905: 0xCDA8,\n\t36891 - 11905: 0xB9E4,\n\t36892 - 11905: 0xDF41,\n\t36893 - 11905: 0xCAC5,\n\t36894 - 11905: 0xB3D1,\n\t36895 - 11905: 0xCBD9,\n\t36896 - 11905: 0xD4EC,\n\t36897 - 11905: 0xE5D2,\n\t36898 - 11905: 0xB7EA,\n\t36899 - 11905: 0xDF42,\n\t36900 - 11905: 0xDF43,\n\t36901 - 11905: 0xDF44,\n\t36902 - 11905: 0xE5CE,\n\t36903 - 11905: 0xDF45,\n\t36904 - 11905: 0xDF46,\n\t36905 - 11905: 0xDF47,\n\t36906 - 11905: 0xDF48,\n\t36907 - 11905: 0xDF49,\n\t36908 - 11905: 0xDF4A,\n\t36909 - 11905: 0xE5D5,\n\t36910 - 11905: 0xB4FE,\n\t36911 - 11905: 0xE5D6,\n\t36912 - 11905: 0xDF4B,\n\t36913 - 11905: 0xDF4C,\n\t36914 - 11905: 0xDF4D,\n\t36915 - 11905: 0xDF4E,\n\t36916 - 11905: 0xDF4F,\n\t36917 - 11905: 0xE5D3,\n\t36918 - 11905: 0xE5D4,\n\t36919 - 11905: 0xDF50,\n\t36920 - 11905: 0xD2DD,\n\t36921 - 11905: 0xDF51,\n\t36922 - 11905: 0xDF52,\n\t36923 - 11905: 0xC2DF,\n\t36924 - 11905: 0xB1C6,\n\t36925 - 11905: 0xDF53,\n\t36926 - 11905: 0xD3E2,\n\t36927 - 11905: 0xDF54,\n\t36928 - 11905: 0xDF55,\n\t36929 - 11905: 0xB6DD,\n\t36930 - 11905: 0xCBEC,\n\t36931 - 11905: 0xDF56,\n\t36932 - 11905: 0xE5D7,\n\t36933 - 11905: 0xDF57,\n\t36934 - 11905: 0xDF58,\n\t36935 - 11905: 0xD3F6,\n\t36936 - 11905: 0xDF59,\n\t36937 - 11905: 0xDF5A,\n\t36938 - 11905: 0xDF5B,\n\t36939 - 11905: 0xDF5C,\n\t36940 - 11905: 0xDF5D,\n\t36941 - 11905: 0xB1E9,\n\t36942 - 11905: 0xDF5E,\n\t36943 - 11905: 0xB6F4,\n\t36944 - 11905: 0xE5DA,\n\t36945 - 11905: 0xE5D8,\n\t36946 - 11905: 0xE5D9,\n\t36947 - 11905: 0xB5C0,\n\t36948 - 11905: 0xDF5F,\n\t36949 - 11905: 0xDF60,\n\t36950 - 11905: 0xDF61,\n\t36951 - 11905: 0xD2C5,\n\t36952 - 11905: 0xE5DC,\n\t36953 - 11905: 0xDF62,\n\t36954 - 11905: 0xDF63,\n\t36955 - 11905: 0xE5DE,\n\t36956 - 11905: 0xDF64,\n\t36957 - 11905: 0xDF65,\n\t36958 - 11905: 0xDF66,\n\t36959 - 11905: 0xDF67,\n\t36960 - 11905: 0xDF68,\n\t36961 - 11905: 0xDF69,\n\t36962 - 11905: 0xE5DD,\n\t36963 - 11905: 0xC7B2,\n\t36964 - 11905: 0xDF6A,\n\t36965 - 11905: 0xD2A3,\n\t36966 - 11905: 0xDF6B,\n\t36967 - 11905: 0xDF6C,\n\t36968 - 11905: 0xE5DB,\n\t36969 - 11905: 0xDF6D,\n\t36970 - 11905: 0xDF6E,\n\t36971 - 11905: 0xDF6F,\n\t36972 - 11905: 0xDF70,\n\t36973 - 11905: 0xD4E2,\n\t36974 - 11905: 0xD5DA,\n\t36975 - 11905: 0xDF71,\n\t36976 - 11905: 0xDF72,\n\t36977 - 11905: 0xDF73,\n\t36978 - 11905: 0xDF74,\n\t36979 - 11905: 0xDF75,\n\t36980 - 11905: 0xE5E0,\n\t36981 - 11905: 0xD7F1,\n\t36982 - 11905: 0xDF76,\n\t36983 - 11905: 0xDF77,\n\t36984 - 11905: 0xDF78,\n\t36985 - 11905: 0xDF79,\n\t36986 - 11905: 0xDF7A,\n\t36987 - 11905: 0xDF7B,\n\t36988 - 11905: 0xDF7C,\n\t36989 - 11905: 0xE5E1,\n\t36990 - 11905: 0xDF7D,\n\t36991 - 11905: 0xB1DC,\n\t36992 - 11905: 0xD1FB,\n\t36993 - 11905: 0xDF7E,\n\t36994 - 11905: 0xE5E2,\n\t36995 - 11905: 0xE5E4,\n\t36996 - 11905: 0xDF80,\n\t36997 - 11905: 0xDF81,\n\t36998 - 11905: 0xDF82,\n\t36999 - 11905: 0xDF83,\n\t37000 - 11905: 0xE5E3,\n\t37001 - 11905: 0xDF84,\n\t37002 - 11905: 0xDF85,\n\t37003 - 11905: 0xE5E5,\n\t37004 - 11905: 0xDF86,\n\t37005 - 11905: 0xDF87,\n\t37006 - 11905: 0xDF88,\n\t37007 - 11905: 0xDF89,\n\t37008 - 11905: 0xDF8A,\n\t37009 - 11905: 0xD2D8,\n\t37010 - 11905: 0xDF8B,\n\t37011 - 11905: 0xB5CB,\n\t37012 - 11905: 0xDF8C,\n\t37013 - 11905: 0xE7DF,\n\t37014 - 11905: 0xDF8D,\n\t37015 - 11905: 0xDAF5,\n\t37016 - 11905: 0xDF8E,\n\t37017 - 11905: 0xDAF8,\n\t37018 - 11905: 0xDF8F,\n\t37019 - 11905: 0xDAF6,\n\t37020 - 11905: 0xDF90,\n\t37021 - 11905: 0xDAF7,\n\t37022 - 11905: 0xDF91,\n\t37023 - 11905: 0xDF92,\n\t37024 - 11905: 0xDF93,\n\t37025 - 11905: 0xDAFA,\n\t37026 - 11905: 0xD0CF,\n\t37027 - 11905: 0xC4C7,\n\t37028 - 11905: 0xDF94,\n\t37029 - 11905: 0xDF95,\n\t37030 - 11905: 0xB0EE,\n\t37031 - 11905: 0xDF96,\n\t37032 - 11905: 0xDF97,\n\t37033 - 11905: 0xDF98,\n\t37034 - 11905: 0xD0B0,\n\t37035 - 11905: 0xDF99,\n\t37036 - 11905: 0xDAF9,\n\t37037 - 11905: 0xDF9A,\n\t37038 - 11905: 0xD3CA,\n\t37039 - 11905: 0xBAAA,\n\t37040 - 11905: 0xDBA2,\n\t37041 - 11905: 0xC7F1,\n\t37042 - 11905: 0xDF9B,\n\t37043 - 11905: 0xDAFC,\n\t37044 - 11905: 0xDAFB,\n\t37045 - 11905: 0xC9DB,\n\t37046 - 11905: 0xDAFD,\n\t37047 - 11905: 0xDF9C,\n\t37048 - 11905: 0xDBA1,\n\t37049 - 11905: 0xD7DE,\n\t37050 - 11905: 0xDAFE,\n\t37051 - 11905: 0xC1DA,\n\t37052 - 11905: 0xDF9D,\n\t37053 - 11905: 0xDF9E,\n\t37054 - 11905: 0xDBA5,\n\t37055 - 11905: 0xDF9F,\n\t37056 - 11905: 0xDFA0,\n\t37057 - 11905: 0xD3F4,\n\t37058 - 11905: 0xE040,\n\t37059 - 11905: 0xE041,\n\t37060 - 11905: 0xDBA7,\n\t37061 - 11905: 0xDBA4,\n\t37062 - 11905: 0xE042,\n\t37063 - 11905: 0xDBA8,\n\t37064 - 11905: 0xE043,\n\t37065 - 11905: 0xE044,\n\t37066 - 11905: 0xBDBC,\n\t37067 - 11905: 0xE045,\n\t37068 - 11905: 0xE046,\n\t37069 - 11905: 0xE047,\n\t37070 - 11905: 0xC0C9,\n\t37071 - 11905: 0xDBA3,\n\t37072 - 11905: 0xDBA6,\n\t37073 - 11905: 0xD6A3,\n\t37074 - 11905: 0xE048,\n\t37075 - 11905: 0xDBA9,\n\t37076 - 11905: 0xE049,\n\t37077 - 11905: 0xE04A,\n\t37078 - 11905: 0xE04B,\n\t37079 - 11905: 0xDBAD,\n\t37080 - 11905: 0xE04C,\n\t37081 - 11905: 0xE04D,\n\t37082 - 11905: 0xE04E,\n\t37083 - 11905: 0xDBAE,\n\t37084 - 11905: 0xDBAC,\n\t37085 - 11905: 0xBAC2,\n\t37086 - 11905: 0xE04F,\n\t37087 - 11905: 0xE050,\n\t37088 - 11905: 0xE051,\n\t37089 - 11905: 0xBFA4,\n\t37090 - 11905: 0xDBAB,\n\t37091 - 11905: 0xE052,\n\t37092 - 11905: 0xE053,\n\t37093 - 11905: 0xE054,\n\t37094 - 11905: 0xDBAA,\n\t37095 - 11905: 0xD4C7,\n\t37096 - 11905: 0xB2BF,\n\t37097 - 11905: 0xE055,\n\t37098 - 11905: 0xE056,\n\t37099 - 11905: 0xDBAF,\n\t37100 - 11905: 0xE057,\n\t37101 - 11905: 0xB9F9,\n\t37102 - 11905: 0xE058,\n\t37103 - 11905: 0xDBB0,\n\t37104 - 11905: 0xE059,\n\t37105 - 11905: 0xE05A,\n\t37106 - 11905: 0xE05B,\n\t37107 - 11905: 0xE05C,\n\t37108 - 11905: 0xB3BB,\n\t37109 - 11905: 0xE05D,\n\t37110 - 11905: 0xE05E,\n\t37111 - 11905: 0xE05F,\n\t37112 - 11905: 0xB5A6,\n\t37113 - 11905: 0xE060,\n\t37114 - 11905: 0xE061,\n\t37115 - 11905: 0xE062,\n\t37116 - 11905: 0xE063,\n\t37117 - 11905: 0xB6BC,\n\t37118 - 11905: 0xDBB1,\n\t37119 - 11905: 0xE064,\n\t37120 - 11905: 0xE065,\n\t37121 - 11905: 0xE066,\n\t37122 - 11905: 0xB6F5,\n\t37123 - 11905: 0xE067,\n\t37124 - 11905: 0xDBB2,\n\t37125 - 11905: 0xE068,\n\t37126 - 11905: 0xE069,\n\t37127 - 11905: 0xE06A,\n\t37128 - 11905: 0xE06B,\n\t37129 - 11905: 0xE06C,\n\t37130 - 11905: 0xE06D,\n\t37131 - 11905: 0xE06E,\n\t37132 - 11905: 0xE06F,\n\t37133 - 11905: 0xE070,\n\t37134 - 11905: 0xE071,\n\t37135 - 11905: 0xE072,\n\t37136 - 11905: 0xE073,\n\t37137 - 11905: 0xE074,\n\t37138 - 11905: 0xE075,\n\t37139 - 11905: 0xE076,\n\t37140 - 11905: 0xE077,\n\t37141 - 11905: 0xE078,\n\t37142 - 11905: 0xE079,\n\t37143 - 11905: 0xE07A,\n\t37144 - 11905: 0xE07B,\n\t37145 - 11905: 0xB1C9,\n\t37146 - 11905: 0xE07C,\n\t37147 - 11905: 0xE07D,\n\t37148 - 11905: 0xE07E,\n\t37149 - 11905: 0xE080,\n\t37150 - 11905: 0xDBB4,\n\t37151 - 11905: 0xE081,\n\t37152 - 11905: 0xE082,\n\t37153 - 11905: 0xE083,\n\t37154 - 11905: 0xDBB3,\n\t37155 - 11905: 0xDBB5,\n\t37156 - 11905: 0xE084,\n\t37157 - 11905: 0xE085,\n\t37158 - 11905: 0xE086,\n\t37159 - 11905: 0xE087,\n\t37160 - 11905: 0xE088,\n\t37161 - 11905: 0xE089,\n\t37162 - 11905: 0xE08A,\n\t37163 - 11905: 0xE08B,\n\t37164 - 11905: 0xE08C,\n\t37165 - 11905: 0xE08D,\n\t37166 - 11905: 0xE08E,\n\t37167 - 11905: 0xDBB7,\n\t37168 - 11905: 0xE08F,\n\t37169 - 11905: 0xDBB6,\n\t37170 - 11905: 0xE090,\n\t37171 - 11905: 0xE091,\n\t37172 - 11905: 0xE092,\n\t37173 - 11905: 0xE093,\n\t37174 - 11905: 0xE094,\n\t37175 - 11905: 0xE095,\n\t37176 - 11905: 0xE096,\n\t37177 - 11905: 0xDBB8,\n\t37178 - 11905: 0xE097,\n\t37179 - 11905: 0xE098,\n\t37180 - 11905: 0xE099,\n\t37181 - 11905: 0xE09A,\n\t37182 - 11905: 0xE09B,\n\t37183 - 11905: 0xE09C,\n\t37184 - 11905: 0xE09D,\n\t37185 - 11905: 0xE09E,\n\t37186 - 11905: 0xE09F,\n\t37187 - 11905: 0xDBB9,\n\t37188 - 11905: 0xE0A0,\n\t37189 - 11905: 0xE140,\n\t37190 - 11905: 0xDBBA,\n\t37191 - 11905: 0xE141,\n\t37192 - 11905: 0xE142,\n\t37193 - 11905: 0xD3CF,\n\t37194 - 11905: 0xF4FA,\n\t37195 - 11905: 0xC7F5,\n\t37196 - 11905: 0xD7C3,\n\t37197 - 11905: 0xC5E4,\n\t37198 - 11905: 0xF4FC,\n\t37199 - 11905: 0xF4FD,\n\t37200 - 11905: 0xF4FB,\n\t37201 - 11905: 0xE143,\n\t37202 - 11905: 0xBEC6,\n\t37203 - 11905: 0xE144,\n\t37204 - 11905: 0xE145,\n\t37205 - 11905: 0xE146,\n\t37206 - 11905: 0xE147,\n\t37207 - 11905: 0xD0EF,\n\t37208 - 11905: 0xE148,\n\t37209 - 11905: 0xE149,\n\t37210 - 11905: 0xB7D3,\n\t37211 - 11905: 0xE14A,\n\t37212 - 11905: 0xE14B,\n\t37213 - 11905: 0xD4CD,\n\t37214 - 11905: 0xCCAA,\n\t37215 - 11905: 0xE14C,\n\t37216 - 11905: 0xE14D,\n\t37217 - 11905: 0xF5A2,\n\t37218 - 11905: 0xF5A1,\n\t37219 - 11905: 0xBAA8,\n\t37220 - 11905: 0xF4FE,\n\t37221 - 11905: 0xCBD6,\n\t37222 - 11905: 0xE14E,\n\t37223 - 11905: 0xE14F,\n\t37224 - 11905: 0xE150,\n\t37225 - 11905: 0xF5A4,\n\t37226 - 11905: 0xC0D2,\n\t37227 - 11905: 0xE151,\n\t37228 - 11905: 0xB3EA,\n\t37229 - 11905: 0xE152,\n\t37230 - 11905: 0xCDAA,\n\t37231 - 11905: 0xF5A5,\n\t37232 - 11905: 0xF5A3,\n\t37233 - 11905: 0xBDB4,\n\t37234 - 11905: 0xF5A8,\n\t37235 - 11905: 0xE153,\n\t37236 - 11905: 0xF5A9,\n\t37237 - 11905: 0xBDCD,\n\t37238 - 11905: 0xC3B8,\n\t37239 - 11905: 0xBFE1,\n\t37240 - 11905: 0xCBE1,\n\t37241 - 11905: 0xF5AA,\n\t37242 - 11905: 0xE154,\n\t37243 - 11905: 0xE155,\n\t37244 - 11905: 0xE156,\n\t37245 - 11905: 0xF5A6,\n\t37246 - 11905: 0xF5A7,\n\t37247 - 11905: 0xC4F0,\n\t37248 - 11905: 0xE157,\n\t37249 - 11905: 0xE158,\n\t37250 - 11905: 0xE159,\n\t37251 - 11905: 0xE15A,\n\t37252 - 11905: 0xE15B,\n\t37253 - 11905: 0xF5AC,\n\t37254 - 11905: 0xE15C,\n\t37255 - 11905: 0xB4BC,\n\t37256 - 11905: 0xE15D,\n\t37257 - 11905: 0xD7ED,\n\t37258 - 11905: 0xE15E,\n\t37259 - 11905: 0xB4D7,\n\t37260 - 11905: 0xF5AB,\n\t37261 - 11905: 0xF5AE,\n\t37262 - 11905: 0xE15F,\n\t37263 - 11905: 0xE160,\n\t37264 - 11905: 0xF5AD,\n\t37265 - 11905: 0xF5AF,\n\t37266 - 11905: 0xD0D1,\n\t37267 - 11905: 0xE161,\n\t37268 - 11905: 0xE162,\n\t37269 - 11905: 0xE163,\n\t37270 - 11905: 0xE164,\n\t37271 - 11905: 0xE165,\n\t37272 - 11905: 0xE166,\n\t37273 - 11905: 0xE167,\n\t37274 - 11905: 0xC3D1,\n\t37275 - 11905: 0xC8A9,\n\t37276 - 11905: 0xE168,\n\t37277 - 11905: 0xE169,\n\t37278 - 11905: 0xE16A,\n\t37279 - 11905: 0xE16B,\n\t37280 - 11905: 0xE16C,\n\t37281 - 11905: 0xE16D,\n\t37282 - 11905: 0xF5B0,\n\t37283 - 11905: 0xF5B1,\n\t37284 - 11905: 0xE16E,\n\t37285 - 11905: 0xE16F,\n\t37286 - 11905: 0xE170,\n\t37287 - 11905: 0xE171,\n\t37288 - 11905: 0xE172,\n\t37289 - 11905: 0xE173,\n\t37290 - 11905: 0xF5B2,\n\t37291 - 11905: 0xE174,\n\t37292 - 11905: 0xE175,\n\t37293 - 11905: 0xF5B3,\n\t37294 - 11905: 0xF5B4,\n\t37295 - 11905: 0xF5B5,\n\t37296 - 11905: 0xE176,\n\t37297 - 11905: 0xE177,\n\t37298 - 11905: 0xE178,\n\t37299 - 11905: 0xE179,\n\t37300 - 11905: 0xF5B7,\n\t37301 - 11905: 0xF5B6,\n\t37302 - 11905: 0xE17A,\n\t37303 - 11905: 0xE17B,\n\t37304 - 11905: 0xE17C,\n\t37305 - 11905: 0xE17D,\n\t37306 - 11905: 0xF5B8,\n\t37307 - 11905: 0xE17E,\n\t37308 - 11905: 0xE180,\n\t37309 - 11905: 0xE181,\n\t37310 - 11905: 0xE182,\n\t37311 - 11905: 0xE183,\n\t37312 - 11905: 0xE184,\n\t37313 - 11905: 0xE185,\n\t37314 - 11905: 0xE186,\n\t37315 - 11905: 0xE187,\n\t37316 - 11905: 0xE188,\n\t37317 - 11905: 0xE189,\n\t37318 - 11905: 0xE18A,\n\t37319 - 11905: 0xB2C9,\n\t37320 - 11905: 0xE18B,\n\t37321 - 11905: 0xD3D4,\n\t37322 - 11905: 0xCACD,\n\t37323 - 11905: 0xE18C,\n\t37324 - 11905: 0xC0EF,\n\t37325 - 11905: 0xD6D8,\n\t37326 - 11905: 0xD2B0,\n\t37327 - 11905: 0xC1BF,\n\t37328 - 11905: 0xE18D,\n\t37329 - 11905: 0xBDF0,\n\t37330 - 11905: 0xE18E,\n\t37331 - 11905: 0xE18F,\n\t37332 - 11905: 0xE190,\n\t37333 - 11905: 0xE191,\n\t37334 - 11905: 0xE192,\n\t37335 - 11905: 0xE193,\n\t37336 - 11905: 0xE194,\n\t37337 - 11905: 0xE195,\n\t37338 - 11905: 0xE196,\n\t37339 - 11905: 0xE197,\n\t37340 - 11905: 0xB8AA,\n\t37341 - 11905: 0xE198,\n\t37342 - 11905: 0xE199,\n\t37343 - 11905: 0xE19A,\n\t37344 - 11905: 0xE19B,\n\t37345 - 11905: 0xE19C,\n\t37346 - 11905: 0xE19D,\n\t37347 - 11905: 0xE19E,\n\t37348 - 11905: 0xE19F,\n\t37349 - 11905: 0xE1A0,\n\t37350 - 11905: 0xE240,\n\t37351 - 11905: 0xE241,\n\t37352 - 11905: 0xE242,\n\t37353 - 11905: 0xE243,\n\t37354 - 11905: 0xE244,\n\t37355 - 11905: 0xE245,\n\t37356 - 11905: 0xE246,\n\t37357 - 11905: 0xE247,\n\t37358 - 11905: 0xE248,\n\t37359 - 11905: 0xE249,\n\t37360 - 11905: 0xE24A,\n\t37361 - 11905: 0xE24B,\n\t37362 - 11905: 0xE24C,\n\t37363 - 11905: 0xE24D,\n\t37364 - 11905: 0xE24E,\n\t37365 - 11905: 0xE24F,\n\t37366 - 11905: 0xE250,\n\t37367 - 11905: 0xE251,\n\t37368 - 11905: 0xE252,\n\t37369 - 11905: 0xE253,\n\t37370 - 11905: 0xE254,\n\t37371 - 11905: 0xE255,\n\t37372 - 11905: 0xE256,\n\t37373 - 11905: 0xE257,\n\t37374 - 11905: 0xE258,\n\t37375 - 11905: 0xE259,\n\t37376 - 11905: 0xE25A,\n\t37377 - 11905: 0xE25B,\n\t37378 - 11905: 0xE25C,\n\t37379 - 11905: 0xE25D,\n\t37380 - 11905: 0xE25E,\n\t37381 - 11905: 0xE25F,\n\t37382 - 11905: 0xE260,\n\t37383 - 11905: 0xE261,\n\t37384 - 11905: 0xE262,\n\t37385 - 11905: 0xE263,\n\t37386 - 11905: 0xE264,\n\t37387 - 11905: 0xE265,\n\t37388 - 11905: 0xE266,\n\t37389 - 11905: 0xE267,\n\t37390 - 11905: 0xE268,\n\t37391 - 11905: 0xE269,\n\t37392 - 11905: 0xE26A,\n\t37393 - 11905: 0xE26B,\n\t37394 - 11905: 0xE26C,\n\t37395 - 11905: 0xE26D,\n\t37396 - 11905: 0xE26E,\n\t37397 - 11905: 0xE26F,\n\t37398 - 11905: 0xE270,\n\t37399 - 11905: 0xE271,\n\t37400 - 11905: 0xE272,\n\t37401 - 11905: 0xE273,\n\t37402 - 11905: 0xE274,\n\t37403 - 11905: 0xE275,\n\t37404 - 11905: 0xE276,\n\t37405 - 11905: 0xE277,\n\t37406 - 11905: 0xE278,\n\t37407 - 11905: 0xE279,\n\t37408 - 11905: 0xE27A,\n\t37409 - 11905: 0xE27B,\n\t37410 - 11905: 0xE27C,\n\t37411 - 11905: 0xE27D,\n\t37412 - 11905: 0xE27E,\n\t37413 - 11905: 0xE280,\n\t37414 - 11905: 0xE281,\n\t37415 - 11905: 0xE282,\n\t37416 - 11905: 0xE283,\n\t37417 - 11905: 0xE284,\n\t37418 - 11905: 0xE285,\n\t37419 - 11905: 0xE286,\n\t37420 - 11905: 0xE287,\n\t37421 - 11905: 0xE288,\n\t37422 - 11905: 0xE289,\n\t37423 - 11905: 0xE28A,\n\t37424 - 11905: 0xE28B,\n\t37425 - 11905: 0xE28C,\n\t37426 - 11905: 0xE28D,\n\t37427 - 11905: 0xE28E,\n\t37428 - 11905: 0xE28F,\n\t37429 - 11905: 0xE290,\n\t37430 - 11905: 0xE291,\n\t37431 - 11905: 0xE292,\n\t37432 - 11905: 0xE293,\n\t37433 - 11905: 0xE294,\n\t37434 - 11905: 0xE295,\n\t37435 - 11905: 0xE296,\n\t37436 - 11905: 0xE297,\n\t37437 - 11905: 0xE298,\n\t37438 - 11905: 0xE299,\n\t37439 - 11905: 0xE29A,\n\t37440 - 11905: 0xE29B,\n\t37441 - 11905: 0xE29C,\n\t37442 - 11905: 0xE29D,\n\t37443 - 11905: 0xE29E,\n\t37444 - 11905: 0xE29F,\n\t37445 - 11905: 0xE2A0,\n\t37446 - 11905: 0xE340,\n\t37447 - 11905: 0xE341,\n\t37448 - 11905: 0xE342,\n\t37449 - 11905: 0xE343,\n\t37450 - 11905: 0xE344,\n\t37451 - 11905: 0xE345,\n\t37452 - 11905: 0xE346,\n\t37453 - 11905: 0xE347,\n\t37454 - 11905: 0xE348,\n\t37455 - 11905: 0xE349,\n\t37456 - 11905: 0xE34A,\n\t37457 - 11905: 0xE34B,\n\t37458 - 11905: 0xE34C,\n\t37459 - 11905: 0xE34D,\n\t37460 - 11905: 0xE34E,\n\t37461 - 11905: 0xE34F,\n\t37462 - 11905: 0xE350,\n\t37463 - 11905: 0xE351,\n\t37464 - 11905: 0xE352,\n\t37465 - 11905: 0xE353,\n\t37466 - 11905: 0xE354,\n\t37467 - 11905: 0xE355,\n\t37468 - 11905: 0xE356,\n\t37469 - 11905: 0xE357,\n\t37470 - 11905: 0xE358,\n\t37471 - 11905: 0xE359,\n\t37472 - 11905: 0xE35A,\n\t37473 - 11905: 0xE35B,\n\t37474 - 11905: 0xE35C,\n\t37475 - 11905: 0xE35D,\n\t37476 - 11905: 0xE35E,\n\t37477 - 11905: 0xE35F,\n\t37478 - 11905: 0xE360,\n\t37479 - 11905: 0xE361,\n\t37480 - 11905: 0xE362,\n\t37481 - 11905: 0xE363,\n\t37482 - 11905: 0xE364,\n\t37483 - 11905: 0xE365,\n\t37484 - 11905: 0xE366,\n\t37485 - 11905: 0xE367,\n\t37486 - 11905: 0xE368,\n\t37487 - 11905: 0xE369,\n\t37488 - 11905: 0xE36A,\n\t37489 - 11905: 0xE36B,\n\t37490 - 11905: 0xE36C,\n\t37491 - 11905: 0xE36D,\n\t37492 - 11905: 0xBCF8,\n\t37493 - 11905: 0xE36E,\n\t37494 - 11905: 0xE36F,\n\t37495 - 11905: 0xE370,\n\t37496 - 11905: 0xE371,\n\t37497 - 11905: 0xE372,\n\t37498 - 11905: 0xE373,\n\t37499 - 11905: 0xE374,\n\t37500 - 11905: 0xE375,\n\t37501 - 11905: 0xE376,\n\t37502 - 11905: 0xE377,\n\t37503 - 11905: 0xE378,\n\t37504 - 11905: 0xE379,\n\t37505 - 11905: 0xE37A,\n\t37506 - 11905: 0xE37B,\n\t37507 - 11905: 0xE37C,\n\t37508 - 11905: 0xE37D,\n\t37509 - 11905: 0xE37E,\n\t37510 - 11905: 0xE380,\n\t37511 - 11905: 0xE381,\n\t37512 - 11905: 0xE382,\n\t37513 - 11905: 0xE383,\n\t37514 - 11905: 0xE384,\n\t37515 - 11905: 0xE385,\n\t37516 - 11905: 0xE386,\n\t37517 - 11905: 0xE387,\n\t37518 - 11905: 0xF6C6,\n\t37519 - 11905: 0xE388,\n\t37520 - 11905: 0xE389,\n\t37521 - 11905: 0xE38A,\n\t37522 - 11905: 0xE38B,\n\t37523 - 11905: 0xE38C,\n\t37524 - 11905: 0xE38D,\n\t37525 - 11905: 0xE38E,\n\t37526 - 11905: 0xE38F,\n\t37527 - 11905: 0xE390,\n\t37528 - 11905: 0xE391,\n\t37529 - 11905: 0xE392,\n\t37530 - 11905: 0xE393,\n\t37531 - 11905: 0xE394,\n\t37532 - 11905: 0xE395,\n\t37533 - 11905: 0xE396,\n\t37534 - 11905: 0xE397,\n\t37535 - 11905: 0xE398,\n\t37536 - 11905: 0xE399,\n\t37537 - 11905: 0xE39A,\n\t37538 - 11905: 0xE39B,\n\t37539 - 11905: 0xE39C,\n\t37540 - 11905: 0xE39D,\n\t37541 - 11905: 0xE39E,\n\t37542 - 11905: 0xE39F,\n\t37543 - 11905: 0xE3A0,\n\t37544 - 11905: 0xE440,\n\t37545 - 11905: 0xE441,\n\t37546 - 11905: 0xE442,\n\t37547 - 11905: 0xE443,\n\t37548 - 11905: 0xE444,\n\t37549 - 11905: 0xE445,\n\t37550 - 11905: 0xF6C7,\n\t37551 - 11905: 0xE446,\n\t37552 - 11905: 0xE447,\n\t37553 - 11905: 0xE448,\n\t37554 - 11905: 0xE449,\n\t37555 - 11905: 0xE44A,\n\t37556 - 11905: 0xE44B,\n\t37557 - 11905: 0xE44C,\n\t37558 - 11905: 0xE44D,\n\t37559 - 11905: 0xE44E,\n\t37560 - 11905: 0xE44F,\n\t37561 - 11905: 0xE450,\n\t37562 - 11905: 0xE451,\n\t37563 - 11905: 0xE452,\n\t37564 - 11905: 0xE453,\n\t37565 - 11905: 0xE454,\n\t37566 - 11905: 0xE455,\n\t37567 - 11905: 0xE456,\n\t37568 - 11905: 0xE457,\n\t37569 - 11905: 0xE458,\n\t37570 - 11905: 0xE459,\n\t37571 - 11905: 0xE45A,\n\t37572 - 11905: 0xE45B,\n\t37573 - 11905: 0xE45C,\n\t37574 - 11905: 0xE45D,\n\t37575 - 11905: 0xE45E,\n\t37576 - 11905: 0xF6C8,\n\t37577 - 11905: 0xE45F,\n\t37578 - 11905: 0xE460,\n\t37579 - 11905: 0xE461,\n\t37580 - 11905: 0xE462,\n\t37581 - 11905: 0xE463,\n\t37582 - 11905: 0xE464,\n\t37583 - 11905: 0xE465,\n\t37584 - 11905: 0xE466,\n\t37585 - 11905: 0xE467,\n\t37586 - 11905: 0xE468,\n\t37587 - 11905: 0xE469,\n\t37588 - 11905: 0xE46A,\n\t37589 - 11905: 0xE46B,\n\t37590 - 11905: 0xE46C,\n\t37591 - 11905: 0xE46D,\n\t37592 - 11905: 0xE46E,\n\t37593 - 11905: 0xE46F,\n\t37594 - 11905: 0xE470,\n\t37595 - 11905: 0xE471,\n\t37596 - 11905: 0xE472,\n\t37597 - 11905: 0xE473,\n\t37598 - 11905: 0xE474,\n\t37599 - 11905: 0xE475,\n\t37600 - 11905: 0xE476,\n\t37601 - 11905: 0xE477,\n\t37602 - 11905: 0xE478,\n\t37603 - 11905: 0xE479,\n\t37604 - 11905: 0xE47A,\n\t37605 - 11905: 0xE47B,\n\t37606 - 11905: 0xE47C,\n\t37607 - 11905: 0xE47D,\n\t37608 - 11905: 0xE47E,\n\t37609 - 11905: 0xE480,\n\t37610 - 11905: 0xE481,\n\t37611 - 11905: 0xE482,\n\t37612 - 11905: 0xE483,\n\t37613 - 11905: 0xE484,\n\t37614 - 11905: 0xE485,\n\t37615 - 11905: 0xE486,\n\t37616 - 11905: 0xE487,\n\t37617 - 11905: 0xE488,\n\t37618 - 11905: 0xE489,\n\t37619 - 11905: 0xE48A,\n\t37620 - 11905: 0xE48B,\n\t37621 - 11905: 0xE48C,\n\t37622 - 11905: 0xE48D,\n\t37623 - 11905: 0xE48E,\n\t37624 - 11905: 0xE48F,\n\t37625 - 11905: 0xE490,\n\t37626 - 11905: 0xE491,\n\t37627 - 11905: 0xE492,\n\t37628 - 11905: 0xE493,\n\t37629 - 11905: 0xE494,\n\t37630 - 11905: 0xE495,\n\t37631 - 11905: 0xE496,\n\t37632 - 11905: 0xE497,\n\t37633 - 11905: 0xE498,\n\t37634 - 11905: 0xE499,\n\t37635 - 11905: 0xE49A,\n\t37636 - 11905: 0xE49B,\n\t37637 - 11905: 0xE49C,\n\t37638 - 11905: 0xE49D,\n\t37639 - 11905: 0xE49E,\n\t37640 - 11905: 0xE49F,\n\t37641 - 11905: 0xE4A0,\n\t37642 - 11905: 0xE540,\n\t37643 - 11905: 0xE541,\n\t37644 - 11905: 0xE542,\n\t37645 - 11905: 0xE543,\n\t37646 - 11905: 0xE544,\n\t37647 - 11905: 0xE545,\n\t37648 - 11905: 0xE546,\n\t37649 - 11905: 0xE547,\n\t37650 - 11905: 0xE548,\n\t37651 - 11905: 0xE549,\n\t37652 - 11905: 0xE54A,\n\t37653 - 11905: 0xE54B,\n\t37654 - 11905: 0xE54C,\n\t37655 - 11905: 0xE54D,\n\t37656 - 11905: 0xE54E,\n\t37657 - 11905: 0xE54F,\n\t37658 - 11905: 0xE550,\n\t37659 - 11905: 0xE551,\n\t37660 - 11905: 0xE552,\n\t37661 - 11905: 0xE553,\n\t37662 - 11905: 0xE554,\n\t37663 - 11905: 0xE555,\n\t37664 - 11905: 0xE556,\n\t37665 - 11905: 0xE557,\n\t37666 - 11905: 0xE558,\n\t37667 - 11905: 0xE559,\n\t37668 - 11905: 0xE55A,\n\t37669 - 11905: 0xE55B,\n\t37670 - 11905: 0xE55C,\n\t37671 - 11905: 0xE55D,\n\t37672 - 11905: 0xE55E,\n\t37673 - 11905: 0xE55F,\n\t37674 - 11905: 0xE560,\n\t37675 - 11905: 0xE561,\n\t37676 - 11905: 0xE562,\n\t37677 - 11905: 0xE563,\n\t37678 - 11905: 0xE564,\n\t37679 - 11905: 0xE565,\n\t37680 - 11905: 0xE566,\n\t37681 - 11905: 0xE567,\n\t37682 - 11905: 0xE568,\n\t37683 - 11905: 0xE569,\n\t37684 - 11905: 0xE56A,\n\t37685 - 11905: 0xE56B,\n\t37686 - 11905: 0xE56C,\n\t37687 - 11905: 0xE56D,\n\t37688 - 11905: 0xE56E,\n\t37689 - 11905: 0xE56F,\n\t37690 - 11905: 0xE570,\n\t37691 - 11905: 0xE571,\n\t37692 - 11905: 0xE572,\n\t37693 - 11905: 0xE573,\n\t37694 - 11905: 0xF6C9,\n\t37695 - 11905: 0xE574,\n\t37696 - 11905: 0xE575,\n\t37697 - 11905: 0xE576,\n\t37698 - 11905: 0xE577,\n\t37699 - 11905: 0xE578,\n\t37700 - 11905: 0xE579,\n\t37701 - 11905: 0xE57A,\n\t37702 - 11905: 0xE57B,\n\t37703 - 11905: 0xE57C,\n\t37704 - 11905: 0xE57D,\n\t37705 - 11905: 0xE57E,\n\t37706 - 11905: 0xE580,\n\t37707 - 11905: 0xE581,\n\t37708 - 11905: 0xE582,\n\t37709 - 11905: 0xE583,\n\t37710 - 11905: 0xE584,\n\t37711 - 11905: 0xE585,\n\t37712 - 11905: 0xE586,\n\t37713 - 11905: 0xE587,\n\t37714 - 11905: 0xE588,\n\t37715 - 11905: 0xE589,\n\t37716 - 11905: 0xE58A,\n\t37717 - 11905: 0xE58B,\n\t37718 - 11905: 0xE58C,\n\t37719 - 11905: 0xE58D,\n\t37720 - 11905: 0xE58E,\n\t37721 - 11905: 0xE58F,\n\t37722 - 11905: 0xE590,\n\t37723 - 11905: 0xE591,\n\t37724 - 11905: 0xE592,\n\t37725 - 11905: 0xE593,\n\t37726 - 11905: 0xE594,\n\t37727 - 11905: 0xE595,\n\t37728 - 11905: 0xE596,\n\t37729 - 11905: 0xE597,\n\t37730 - 11905: 0xE598,\n\t37731 - 11905: 0xE599,\n\t37732 - 11905: 0xE59A,\n\t37733 - 11905: 0xE59B,\n\t37734 - 11905: 0xE59C,\n\t37735 - 11905: 0xE59D,\n\t37736 - 11905: 0xE59E,\n\t37737 - 11905: 0xE59F,\n\t37738 - 11905: 0xF6CA,\n\t37739 - 11905: 0xE5A0,\n\t37740 - 11905: 0xE640,\n\t37741 - 11905: 0xE641,\n\t37742 - 11905: 0xE642,\n\t37743 - 11905: 0xE643,\n\t37744 - 11905: 0xE644,\n\t37745 - 11905: 0xE645,\n\t37746 - 11905: 0xE646,\n\t37747 - 11905: 0xE647,\n\t37748 - 11905: 0xE648,\n\t37749 - 11905: 0xE649,\n\t37750 - 11905: 0xE64A,\n\t37751 - 11905: 0xE64B,\n\t37752 - 11905: 0xE64C,\n\t37753 - 11905: 0xE64D,\n\t37754 - 11905: 0xE64E,\n\t37755 - 11905: 0xE64F,\n\t37756 - 11905: 0xE650,\n\t37757 - 11905: 0xE651,\n\t37758 - 11905: 0xE652,\n\t37759 - 11905: 0xE653,\n\t37760 - 11905: 0xE654,\n\t37761 - 11905: 0xE655,\n\t37762 - 11905: 0xE656,\n\t37763 - 11905: 0xE657,\n\t37764 - 11905: 0xE658,\n\t37765 - 11905: 0xE659,\n\t37766 - 11905: 0xE65A,\n\t37767 - 11905: 0xE65B,\n\t37768 - 11905: 0xE65C,\n\t37769 - 11905: 0xE65D,\n\t37770 - 11905: 0xE65E,\n\t37771 - 11905: 0xE65F,\n\t37772 - 11905: 0xE660,\n\t37773 - 11905: 0xE661,\n\t37774 - 11905: 0xE662,\n\t37775 - 11905: 0xF6CC,\n\t37776 - 11905: 0xE663,\n\t37777 - 11905: 0xE664,\n\t37778 - 11905: 0xE665,\n\t37779 - 11905: 0xE666,\n\t37780 - 11905: 0xE667,\n\t37781 - 11905: 0xE668,\n\t37782 - 11905: 0xE669,\n\t37783 - 11905: 0xE66A,\n\t37784 - 11905: 0xE66B,\n\t37785 - 11905: 0xE66C,\n\t37786 - 11905: 0xE66D,\n\t37787 - 11905: 0xE66E,\n\t37788 - 11905: 0xE66F,\n\t37789 - 11905: 0xE670,\n\t37790 - 11905: 0xE671,\n\t37791 - 11905: 0xE672,\n\t37792 - 11905: 0xE673,\n\t37793 - 11905: 0xE674,\n\t37794 - 11905: 0xE675,\n\t37795 - 11905: 0xE676,\n\t37796 - 11905: 0xE677,\n\t37797 - 11905: 0xE678,\n\t37798 - 11905: 0xE679,\n\t37799 - 11905: 0xE67A,\n\t37800 - 11905: 0xE67B,\n\t37801 - 11905: 0xE67C,\n\t37802 - 11905: 0xE67D,\n\t37803 - 11905: 0xE67E,\n\t37804 - 11905: 0xE680,\n\t37805 - 11905: 0xE681,\n\t37806 - 11905: 0xE682,\n\t37807 - 11905: 0xE683,\n\t37808 - 11905: 0xE684,\n\t37809 - 11905: 0xE685,\n\t37810 - 11905: 0xE686,\n\t37811 - 11905: 0xE687,\n\t37812 - 11905: 0xE688,\n\t37813 - 11905: 0xE689,\n\t37814 - 11905: 0xE68A,\n\t37815 - 11905: 0xE68B,\n\t37816 - 11905: 0xE68C,\n\t37817 - 11905: 0xE68D,\n\t37818 - 11905: 0xE68E,\n\t37819 - 11905: 0xE68F,\n\t37820 - 11905: 0xE690,\n\t37821 - 11905: 0xE691,\n\t37822 - 11905: 0xE692,\n\t37823 - 11905: 0xE693,\n\t37824 - 11905: 0xE694,\n\t37825 - 11905: 0xE695,\n\t37826 - 11905: 0xE696,\n\t37827 - 11905: 0xE697,\n\t37828 - 11905: 0xE698,\n\t37829 - 11905: 0xE699,\n\t37830 - 11905: 0xE69A,\n\t37831 - 11905: 0xE69B,\n\t37832 - 11905: 0xE69C,\n\t37833 - 11905: 0xE69D,\n\t37834 - 11905: 0xF6CB,\n\t37835 - 11905: 0xE69E,\n\t37836 - 11905: 0xE69F,\n\t37837 - 11905: 0xE6A0,\n\t37838 - 11905: 0xE740,\n\t37839 - 11905: 0xE741,\n\t37840 - 11905: 0xE742,\n\t37841 - 11905: 0xE743,\n\t37842 - 11905: 0xE744,\n\t37843 - 11905: 0xE745,\n\t37844 - 11905: 0xE746,\n\t37845 - 11905: 0xE747,\n\t37846 - 11905: 0xF7E9,\n\t37847 - 11905: 0xE748,\n\t37848 - 11905: 0xE749,\n\t37849 - 11905: 0xE74A,\n\t37850 - 11905: 0xE74B,\n\t37851 - 11905: 0xE74C,\n\t37852 - 11905: 0xE74D,\n\t37853 - 11905: 0xE74E,\n\t37854 - 11905: 0xE74F,\n\t37855 - 11905: 0xE750,\n\t37856 - 11905: 0xE751,\n\t37857 - 11905: 0xE752,\n\t37858 - 11905: 0xE753,\n\t37859 - 11905: 0xE754,\n\t37860 - 11905: 0xE755,\n\t37861 - 11905: 0xE756,\n\t37862 - 11905: 0xE757,\n\t37863 - 11905: 0xE758,\n\t37864 - 11905: 0xE759,\n\t37865 - 11905: 0xE75A,\n\t37866 - 11905: 0xE75B,\n\t37867 - 11905: 0xE75C,\n\t37868 - 11905: 0xE75D,\n\t37869 - 11905: 0xE75E,\n\t37870 - 11905: 0xE75F,\n\t37871 - 11905: 0xE760,\n\t37872 - 11905: 0xE761,\n\t37873 - 11905: 0xE762,\n\t37874 - 11905: 0xE763,\n\t37875 - 11905: 0xE764,\n\t37876 - 11905: 0xE765,\n\t37877 - 11905: 0xE766,\n\t37878 - 11905: 0xE767,\n\t37879 - 11905: 0xE768,\n\t37880 - 11905: 0xE769,\n\t37881 - 11905: 0xE76A,\n\t37882 - 11905: 0xE76B,\n\t37883 - 11905: 0xE76C,\n\t37884 - 11905: 0xE76D,\n\t37885 - 11905: 0xE76E,\n\t37886 - 11905: 0xE76F,\n\t37887 - 11905: 0xE770,\n\t37888 - 11905: 0xE771,\n\t37889 - 11905: 0xE772,\n\t37890 - 11905: 0xE773,\n\t37891 - 11905: 0xE774,\n\t37892 - 11905: 0xE775,\n\t37893 - 11905: 0xE776,\n\t37894 - 11905: 0xE777,\n\t37895 - 11905: 0xE778,\n\t37896 - 11905: 0xE779,\n\t37897 - 11905: 0xE77A,\n\t37898 - 11905: 0xE77B,\n\t37899 - 11905: 0xE77C,\n\t37900 - 11905: 0xE77D,\n\t37901 - 11905: 0xE77E,\n\t37902 - 11905: 0xE780,\n\t37903 - 11905: 0xE781,\n\t37904 - 11905: 0xE782,\n\t37905 - 11905: 0xE783,\n\t37906 - 11905: 0xE784,\n\t37907 - 11905: 0xE785,\n\t37908 - 11905: 0xE786,\n\t37909 - 11905: 0xE787,\n\t37910 - 11905: 0xE788,\n\t37911 - 11905: 0xE789,\n\t37912 - 11905: 0xE78A,\n\t37913 - 11905: 0xE78B,\n\t37914 - 11905: 0xE78C,\n\t37915 - 11905: 0xE78D,\n\t37916 - 11905: 0xE78E,\n\t37917 - 11905: 0xE78F,\n\t37918 - 11905: 0xE790,\n\t37919 - 11905: 0xE791,\n\t37920 - 11905: 0xE792,\n\t37921 - 11905: 0xE793,\n\t37922 - 11905: 0xE794,\n\t37923 - 11905: 0xE795,\n\t37924 - 11905: 0xE796,\n\t37925 - 11905: 0xE797,\n\t37926 - 11905: 0xE798,\n\t37927 - 11905: 0xE799,\n\t37928 - 11905: 0xE79A,\n\t37929 - 11905: 0xE79B,\n\t37930 - 11905: 0xE79C,\n\t37931 - 11905: 0xE79D,\n\t37932 - 11905: 0xE79E,\n\t37933 - 11905: 0xE79F,\n\t37934 - 11905: 0xE7A0,\n\t37935 - 11905: 0xE840,\n\t37936 - 11905: 0xE841,\n\t37937 - 11905: 0xE842,\n\t37938 - 11905: 0xE843,\n\t37939 - 11905: 0xE844,\n\t37940 - 11905: 0xE845,\n\t37941 - 11905: 0xE846,\n\t37942 - 11905: 0xE847,\n\t37943 - 11905: 0xE848,\n\t37944 - 11905: 0xE849,\n\t37945 - 11905: 0xE84A,\n\t37946 - 11905: 0xE84B,\n\t37947 - 11905: 0xE84C,\n\t37948 - 11905: 0xE84D,\n\t37949 - 11905: 0xE84E,\n\t37950 - 11905: 0xF6CD,\n\t37951 - 11905: 0xE84F,\n\t37952 - 11905: 0xE850,\n\t37953 - 11905: 0xE851,\n\t37954 - 11905: 0xE852,\n\t37955 - 11905: 0xE853,\n\t37956 - 11905: 0xE854,\n\t37957 - 11905: 0xE855,\n\t37958 - 11905: 0xE856,\n\t37959 - 11905: 0xE857,\n\t37960 - 11905: 0xE858,\n\t37961 - 11905: 0xE859,\n\t37962 - 11905: 0xE85A,\n\t37963 - 11905: 0xE85B,\n\t37964 - 11905: 0xE85C,\n\t37965 - 11905: 0xE85D,\n\t37966 - 11905: 0xE85E,\n\t37967 - 11905: 0xE85F,\n\t37968 - 11905: 0xE860,\n\t37969 - 11905: 0xE861,\n\t37970 - 11905: 0xE862,\n\t37971 - 11905: 0xE863,\n\t37972 - 11905: 0xE864,\n\t37973 - 11905: 0xE865,\n\t37974 - 11905: 0xE866,\n\t37975 - 11905: 0xE867,\n\t37976 - 11905: 0xE868,\n\t37977 - 11905: 0xE869,\n\t37978 - 11905: 0xE86A,\n\t37979 - 11905: 0xE86B,\n\t37980 - 11905: 0xE86C,\n\t37981 - 11905: 0xE86D,\n\t37982 - 11905: 0xE86E,\n\t37983 - 11905: 0xE86F,\n\t37984 - 11905: 0xE870,\n\t37985 - 11905: 0xE871,\n\t37986 - 11905: 0xE872,\n\t37987 - 11905: 0xE873,\n\t37988 - 11905: 0xE874,\n\t37989 - 11905: 0xE875,\n\t37990 - 11905: 0xE876,\n\t37991 - 11905: 0xE877,\n\t37992 - 11905: 0xE878,\n\t37993 - 11905: 0xE879,\n\t37994 - 11905: 0xE87A,\n\t37995 - 11905: 0xF6CE,\n\t37996 - 11905: 0xE87B,\n\t37997 - 11905: 0xE87C,\n\t37998 - 11905: 0xE87D,\n\t37999 - 11905: 0xE87E,\n\t38000 - 11905: 0xE880,\n\t38001 - 11905: 0xE881,\n\t38002 - 11905: 0xE882,\n\t38003 - 11905: 0xE883,\n\t38004 - 11905: 0xE884,\n\t38005 - 11905: 0xE885,\n\t38006 - 11905: 0xE886,\n\t38007 - 11905: 0xE887,\n\t38008 - 11905: 0xE888,\n\t38009 - 11905: 0xE889,\n\t38010 - 11905: 0xE88A,\n\t38011 - 11905: 0xE88B,\n\t38012 - 11905: 0xE88C,\n\t38013 - 11905: 0xE88D,\n\t38014 - 11905: 0xE88E,\n\t38015 - 11905: 0xE88F,\n\t38016 - 11905: 0xE890,\n\t38017 - 11905: 0xE891,\n\t38018 - 11905: 0xE892,\n\t38019 - 11905: 0xE893,\n\t38020 - 11905: 0xE894,\n\t38021 - 11905: 0xEEC4,\n\t38022 - 11905: 0xEEC5,\n\t38023 - 11905: 0xEEC6,\n\t38024 - 11905: 0xD5EB,\n\t38025 - 11905: 0xB6A4,\n\t38026 - 11905: 0xEEC8,\n\t38027 - 11905: 0xEEC7,\n\t38028 - 11905: 0xEEC9,\n\t38029 - 11905: 0xEECA,\n\t38030 - 11905: 0xC7A5,\n\t38031 - 11905: 0xEECB,\n\t38032 - 11905: 0xEECC,\n\t38033 - 11905: 0xE895,\n\t38034 - 11905: 0xB7B0,\n\t38035 - 11905: 0xB5F6,\n\t38036 - 11905: 0xEECD,\n\t38037 - 11905: 0xEECF,\n\t38038 - 11905: 0xE896,\n\t38039 - 11905: 0xEECE,\n\t38040 - 11905: 0xE897,\n\t38041 - 11905: 0xB8C6,\n\t38042 - 11905: 0xEED0,\n\t38043 - 11905: 0xEED1,\n\t38044 - 11905: 0xEED2,\n\t38045 - 11905: 0xB6DB,\n\t38046 - 11905: 0xB3AE,\n\t38047 - 11905: 0xD6D3,\n\t38048 - 11905: 0xC4C6,\n\t38049 - 11905: 0xB1B5,\n\t38050 - 11905: 0xB8D6,\n\t38051 - 11905: 0xEED3,\n\t38052 - 11905: 0xEED4,\n\t38053 - 11905: 0xD4BF,\n\t38054 - 11905: 0xC7D5,\n\t38055 - 11905: 0xBEFB,\n\t38056 - 11905: 0xCED9,\n\t38057 - 11905: 0xB9B3,\n\t38058 - 11905: 0xEED6,\n\t38059 - 11905: 0xEED5,\n\t38060 - 11905: 0xEED8,\n\t38061 - 11905: 0xEED7,\n\t38062 - 11905: 0xC5A5,\n\t38063 - 11905: 0xEED9,\n\t38064 - 11905: 0xEEDA,\n\t38065 - 11905: 0xC7AE,\n\t38066 - 11905: 0xEEDB,\n\t38067 - 11905: 0xC7AF,\n\t38068 - 11905: 0xEEDC,\n\t38069 - 11905: 0xB2A7,\n\t38070 - 11905: 0xEEDD,\n\t38071 - 11905: 0xEEDE,\n\t38072 - 11905: 0xEEDF,\n\t38073 - 11905: 0xEEE0,\n\t38074 - 11905: 0xEEE1,\n\t38075 - 11905: 0xD7EA,\n\t38076 - 11905: 0xEEE2,\n\t38077 - 11905: 0xEEE3,\n\t38078 - 11905: 0xBCD8,\n\t38079 - 11905: 0xEEE4,\n\t38080 - 11905: 0xD3CB,\n\t38081 - 11905: 0xCCFA,\n\t38082 - 11905: 0xB2AC,\n\t38083 - 11905: 0xC1E5,\n\t38084 - 11905: 0xEEE5,\n\t38085 - 11905: 0xC7A6,\n\t38086 - 11905: 0xC3AD,\n\t38087 - 11905: 0xE898,\n\t38088 - 11905: 0xEEE6,\n\t38089 - 11905: 0xEEE7,\n\t38090 - 11905: 0xEEE8,\n\t38091 - 11905: 0xEEE9,\n\t38092 - 11905: 0xEEEA,\n\t38093 - 11905: 0xEEEB,\n\t38094 - 11905: 0xEEEC,\n\t38095 - 11905: 0xE899,\n\t38096 - 11905: 0xEEED,\n\t38097 - 11905: 0xEEEE,\n\t38098 - 11905: 0xEEEF,\n\t38099 - 11905: 0xE89A,\n\t38100 - 11905: 0xE89B,\n\t38101 - 11905: 0xEEF0,\n\t38102 - 11905: 0xEEF1,\n\t38103 - 11905: 0xEEF2,\n\t38104 - 11905: 0xEEF4,\n\t38105 - 11905: 0xEEF3,\n\t38106 - 11905: 0xE89C,\n\t38107 - 11905: 0xEEF5,\n\t38108 - 11905: 0xCDAD,\n\t38109 - 11905: 0xC2C1,\n\t38110 - 11905: 0xEEF6,\n\t38111 - 11905: 0xEEF7,\n\t38112 - 11905: 0xEEF8,\n\t38113 - 11905: 0xD5A1,\n\t38114 - 11905: 0xEEF9,\n\t38115 - 11905: 0xCFB3,\n\t38116 - 11905: 0xEEFA,\n\t38117 - 11905: 0xEEFB,\n\t38118 - 11905: 0xE89D,\n\t38119 - 11905: 0xEEFC,\n\t38120 - 11905: 0xEEFD,\n\t38121 - 11905: 0xEFA1,\n\t38122 - 11905: 0xEEFE,\n\t38123 - 11905: 0xEFA2,\n\t38124 - 11905: 0xB8F5,\n\t38125 - 11905: 0xC3FA,\n\t38126 - 11905: 0xEFA3,\n\t38127 - 11905: 0xEFA4,\n\t38128 - 11905: 0xBDC2,\n\t38129 - 11905: 0xD2BF,\n\t38130 - 11905: 0xB2F9,\n\t38131 - 11905: 0xEFA5,\n\t38132 - 11905: 0xEFA6,\n\t38133 - 11905: 0xEFA7,\n\t38134 - 11905: 0xD2F8,\n\t38135 - 11905: 0xEFA8,\n\t38136 - 11905: 0xD6FD,\n\t38137 - 11905: 0xEFA9,\n\t38138 - 11905: 0xC6CC,\n\t38139 - 11905: 0xE89E,\n\t38140 - 11905: 0xEFAA,\n\t38141 - 11905: 0xEFAB,\n\t38142 - 11905: 0xC1B4,\n\t38143 - 11905: 0xEFAC,\n\t38144 - 11905: 0xCFFA,\n\t38145 - 11905: 0xCBF8,\n\t38146 - 11905: 0xEFAE,\n\t38147 - 11905: 0xEFAD,\n\t38148 - 11905: 0xB3FA,\n\t38149 - 11905: 0xB9F8,\n\t38150 - 11905: 0xEFAF,\n\t38151 - 11905: 0xEFB0,\n\t38152 - 11905: 0xD0E2,\n\t38153 - 11905: 0xEFB1,\n\t38154 - 11905: 0xEFB2,\n\t38155 - 11905: 0xB7E6,\n\t38156 - 11905: 0xD0BF,\n\t38157 - 11905: 0xEFB3,\n\t38158 - 11905: 0xEFB4,\n\t38159 - 11905: 0xEFB5,\n\t38160 - 11905: 0xC8F1,\n\t38161 - 11905: 0xCCE0,\n\t38162 - 11905: 0xEFB6,\n\t38163 - 11905: 0xEFB7,\n\t38164 - 11905: 0xEFB8,\n\t38165 - 11905: 0xEFB9,\n\t38166 - 11905: 0xEFBA,\n\t38167 - 11905: 0xD5E0,\n\t38168 - 11905: 0xEFBB,\n\t38169 - 11905: 0xB4ED,\n\t38170 - 11905: 0xC3AA,\n\t38171 - 11905: 0xEFBC,\n\t38172 - 11905: 0xE89F,\n\t38173 - 11905: 0xEFBD,\n\t38174 - 11905: 0xEFBE,\n\t38175 - 11905: 0xEFBF,\n\t38176 - 11905: 0xE8A0,\n\t38177 - 11905: 0xCEFD,\n\t38178 - 11905: 0xEFC0,\n\t38179 - 11905: 0xC2E0,\n\t38180 - 11905: 0xB4B8,\n\t38181 - 11905: 0xD7B6,\n\t38182 - 11905: 0xBDF5,\n\t38183 - 11905: 0xE940,\n\t38184 - 11905: 0xCFC7,\n\t38185 - 11905: 0xEFC3,\n\t38186 - 11905: 0xEFC1,\n\t38187 - 11905: 0xEFC2,\n\t38188 - 11905: 0xEFC4,\n\t38189 - 11905: 0xB6A7,\n\t38190 - 11905: 0xBCFC,\n\t38191 - 11905: 0xBEE2,\n\t38192 - 11905: 0xC3CC,\n\t38193 - 11905: 0xEFC5,\n\t38194 - 11905: 0xEFC6,\n\t38195 - 11905: 0xE941,\n\t38196 - 11905: 0xEFC7,\n\t38197 - 11905: 0xEFCF,\n\t38198 - 11905: 0xEFC8,\n\t38199 - 11905: 0xEFC9,\n\t38200 - 11905: 0xEFCA,\n\t38201 - 11905: 0xC7C2,\n\t38202 - 11905: 0xEFF1,\n\t38203 - 11905: 0xB6CD,\n\t38204 - 11905: 0xEFCB,\n\t38205 - 11905: 0xE942,\n\t38206 - 11905: 0xEFCC,\n\t38207 - 11905: 0xEFCD,\n\t38208 - 11905: 0xB6C6,\n\t38209 - 11905: 0xC3BE,\n\t38210 - 11905: 0xEFCE,\n\t38211 - 11905: 0xE943,\n\t38212 - 11905: 0xEFD0,\n\t38213 - 11905: 0xEFD1,\n\t38214 - 11905: 0xEFD2,\n\t38215 - 11905: 0xD5F2,\n\t38216 - 11905: 0xE944,\n\t38217 - 11905: 0xEFD3,\n\t38218 - 11905: 0xC4F7,\n\t38219 - 11905: 0xE945,\n\t38220 - 11905: 0xEFD4,\n\t38221 - 11905: 0xC4F8,\n\t38222 - 11905: 0xEFD5,\n\t38223 - 11905: 0xEFD6,\n\t38224 - 11905: 0xB8E4,\n\t38225 - 11905: 0xB0F7,\n\t38226 - 11905: 0xEFD7,\n\t38227 - 11905: 0xEFD8,\n\t38228 - 11905: 0xEFD9,\n\t38229 - 11905: 0xE946,\n\t38230 - 11905: 0xEFDA,\n\t38231 - 11905: 0xEFDB,\n\t38232 - 11905: 0xEFDC,\n\t38233 - 11905: 0xEFDD,\n\t38234 - 11905: 0xE947,\n\t38235 - 11905: 0xEFDE,\n\t38236 - 11905: 0xBEB5,\n\t38237 - 11905: 0xEFE1,\n\t38238 - 11905: 0xEFDF,\n\t38239 - 11905: 0xEFE0,\n\t38240 - 11905: 0xE948,\n\t38241 - 11905: 0xEFE2,\n\t38242 - 11905: 0xEFE3,\n\t38243 - 11905: 0xC1CD,\n\t38244 - 11905: 0xEFE4,\n\t38245 - 11905: 0xEFE5,\n\t38246 - 11905: 0xEFE6,\n\t38247 - 11905: 0xEFE7,\n\t38248 - 11905: 0xEFE8,\n\t38249 - 11905: 0xEFE9,\n\t38250 - 11905: 0xEFEA,\n\t38251 - 11905: 0xEFEB,\n\t38252 - 11905: 0xEFEC,\n\t38253 - 11905: 0xC0D8,\n\t38254 - 11905: 0xE949,\n\t38255 - 11905: 0xEFED,\n\t38256 - 11905: 0xC1AD,\n\t38257 - 11905: 0xEFEE,\n\t38258 - 11905: 0xEFEF,\n\t38259 - 11905: 0xEFF0,\n\t38260 - 11905: 0xE94A,\n\t38261 - 11905: 0xE94B,\n\t38262 - 11905: 0xCFE2,\n\t38263 - 11905: 0xE94C,\n\t38264 - 11905: 0xE94D,\n\t38265 - 11905: 0xE94E,\n\t38266 - 11905: 0xE94F,\n\t38267 - 11905: 0xE950,\n\t38268 - 11905: 0xE951,\n\t38269 - 11905: 0xE952,\n\t38270 - 11905: 0xE953,\n\t38271 - 11905: 0xB3A4,\n\t38272 - 11905: 0xE954,\n\t38273 - 11905: 0xE955,\n\t38274 - 11905: 0xE956,\n\t38275 - 11905: 0xE957,\n\t38276 - 11905: 0xE958,\n\t38277 - 11905: 0xE959,\n\t38278 - 11905: 0xE95A,\n\t38279 - 11905: 0xE95B,\n\t38280 - 11905: 0xE95C,\n\t38281 - 11905: 0xE95D,\n\t38282 - 11905: 0xE95E,\n\t38283 - 11905: 0xE95F,\n\t38284 - 11905: 0xE960,\n\t38285 - 11905: 0xE961,\n\t38286 - 11905: 0xE962,\n\t38287 - 11905: 0xE963,\n\t38288 - 11905: 0xE964,\n\t38289 - 11905: 0xE965,\n\t38290 - 11905: 0xE966,\n\t38291 - 11905: 0xE967,\n\t38292 - 11905: 0xE968,\n\t38293 - 11905: 0xE969,\n\t38294 - 11905: 0xE96A,\n\t38295 - 11905: 0xE96B,\n\t38296 - 11905: 0xE96C,\n\t38297 - 11905: 0xE96D,\n\t38298 - 11905: 0xE96E,\n\t38299 - 11905: 0xE96F,\n\t38300 - 11905: 0xE970,\n\t38301 - 11905: 0xE971,\n\t38302 - 11905: 0xE972,\n\t38303 - 11905: 0xE973,\n\t38304 - 11905: 0xE974,\n\t38305 - 11905: 0xE975,\n\t38306 - 11905: 0xE976,\n\t38307 - 11905: 0xE977,\n\t38308 - 11905: 0xE978,\n\t38309 - 11905: 0xE979,\n\t38310 - 11905: 0xE97A,\n\t38311 - 11905: 0xE97B,\n\t38312 - 11905: 0xE97C,\n\t38313 - 11905: 0xE97D,\n\t38314 - 11905: 0xE97E,\n\t38315 - 11905: 0xE980,\n\t38316 - 11905: 0xE981,\n\t38317 - 11905: 0xE982,\n\t38318 - 11905: 0xE983,\n\t38319 - 11905: 0xE984,\n\t38320 - 11905: 0xE985,\n\t38321 - 11905: 0xE986,\n\t38322 - 11905: 0xE987,\n\t38323 - 11905: 0xE988,\n\t38324 - 11905: 0xE989,\n\t38325 - 11905: 0xE98A,\n\t38326 - 11905: 0xE98B,\n\t38327 - 11905: 0xE98C,\n\t38328 - 11905: 0xE98D,\n\t38329 - 11905: 0xE98E,\n\t38330 - 11905: 0xE98F,\n\t38331 - 11905: 0xE990,\n\t38332 - 11905: 0xE991,\n\t38333 - 11905: 0xE992,\n\t38334 - 11905: 0xE993,\n\t38335 - 11905: 0xE994,\n\t38336 - 11905: 0xE995,\n\t38337 - 11905: 0xE996,\n\t38338 - 11905: 0xE997,\n\t38339 - 11905: 0xE998,\n\t38340 - 11905: 0xE999,\n\t38341 - 11905: 0xE99A,\n\t38342 - 11905: 0xE99B,\n\t38343 - 11905: 0xE99C,\n\t38344 - 11905: 0xE99D,\n\t38345 - 11905: 0xE99E,\n\t38346 - 11905: 0xE99F,\n\t38347 - 11905: 0xE9A0,\n\t38348 - 11905: 0xEA40,\n\t38349 - 11905: 0xEA41,\n\t38350 - 11905: 0xEA42,\n\t38351 - 11905: 0xEA43,\n\t38352 - 11905: 0xEA44,\n\t38353 - 11905: 0xEA45,\n\t38354 - 11905: 0xEA46,\n\t38355 - 11905: 0xEA47,\n\t38356 - 11905: 0xEA48,\n\t38357 - 11905: 0xEA49,\n\t38358 - 11905: 0xEA4A,\n\t38359 - 11905: 0xEA4B,\n\t38360 - 11905: 0xEA4C,\n\t38361 - 11905: 0xEA4D,\n\t38362 - 11905: 0xEA4E,\n\t38363 - 11905: 0xEA4F,\n\t38364 - 11905: 0xEA50,\n\t38365 - 11905: 0xEA51,\n\t38366 - 11905: 0xEA52,\n\t38367 - 11905: 0xEA53,\n\t38368 - 11905: 0xEA54,\n\t38369 - 11905: 0xEA55,\n\t38370 - 11905: 0xEA56,\n\t38371 - 11905: 0xEA57,\n\t38372 - 11905: 0xEA58,\n\t38373 - 11905: 0xEA59,\n\t38374 - 11905: 0xEA5A,\n\t38375 - 11905: 0xEA5B,\n\t38376 - 11905: 0xC3C5,\n\t38377 - 11905: 0xE3C5,\n\t38378 - 11905: 0xC9C1,\n\t38379 - 11905: 0xE3C6,\n\t38380 - 11905: 0xEA5C,\n\t38381 - 11905: 0xB1D5,\n\t38382 - 11905: 0xCECA,\n\t38383 - 11905: 0xB4B3,\n\t38384 - 11905: 0xC8F2,\n\t38385 - 11905: 0xE3C7,\n\t38386 - 11905: 0xCFD0,\n\t38387 - 11905: 0xE3C8,\n\t38388 - 11905: 0xBCE4,\n\t38389 - 11905: 0xE3C9,\n\t38390 - 11905: 0xE3CA,\n\t38391 - 11905: 0xC3C6,\n\t38392 - 11905: 0xD5A2,\n\t38393 - 11905: 0xC4D6,\n\t38394 - 11905: 0xB9EB,\n\t38395 - 11905: 0xCEC5,\n\t38396 - 11905: 0xE3CB,\n\t38397 - 11905: 0xC3F6,\n\t38398 - 11905: 0xE3CC,\n\t38399 - 11905: 0xEA5D,\n\t38400 - 11905: 0xB7A7,\n\t38401 - 11905: 0xB8F3,\n\t38402 - 11905: 0xBAD2,\n\t38403 - 11905: 0xE3CD,\n\t38404 - 11905: 0xE3CE,\n\t38405 - 11905: 0xD4C4,\n\t38406 - 11905: 0xE3CF,\n\t38407 - 11905: 0xEA5E,\n\t38408 - 11905: 0xE3D0,\n\t38409 - 11905: 0xD1CB,\n\t38410 - 11905: 0xE3D1,\n\t38411 - 11905: 0xE3D2,\n\t38412 - 11905: 0xE3D3,\n\t38413 - 11905: 0xE3D4,\n\t38414 - 11905: 0xD1D6,\n\t38415 - 11905: 0xE3D5,\n\t38416 - 11905: 0xB2FB,\n\t38417 - 11905: 0xC0BB,\n\t38418 - 11905: 0xE3D6,\n\t38419 - 11905: 0xEA5F,\n\t38420 - 11905: 0xC0AB,\n\t38421 - 11905: 0xE3D7,\n\t38422 - 11905: 0xE3D8,\n\t38423 - 11905: 0xE3D9,\n\t38424 - 11905: 0xEA60,\n\t38425 - 11905: 0xE3DA,\n\t38426 - 11905: 0xE3DB,\n\t38427 - 11905: 0xEA61,\n\t38428 - 11905: 0xB8B7,\n\t38429 - 11905: 0xDAE2,\n\t38430 - 11905: 0xEA62,\n\t38431 - 11905: 0xB6D3,\n\t38432 - 11905: 0xEA63,\n\t38433 - 11905: 0xDAE4,\n\t38434 - 11905: 0xDAE3,\n\t38435 - 11905: 0xEA64,\n\t38436 - 11905: 0xEA65,\n\t38437 - 11905: 0xEA66,\n\t38438 - 11905: 0xEA67,\n\t38439 - 11905: 0xEA68,\n\t38440 - 11905: 0xEA69,\n\t38441 - 11905: 0xEA6A,\n\t38442 - 11905: 0xDAE6,\n\t38443 - 11905: 0xEA6B,\n\t38444 - 11905: 0xEA6C,\n\t38445 - 11905: 0xEA6D,\n\t38446 - 11905: 0xC8EE,\n\t38447 - 11905: 0xEA6E,\n\t38448 - 11905: 0xEA6F,\n\t38449 - 11905: 0xDAE5,\n\t38450 - 11905: 0xB7C0,\n\t38451 - 11905: 0xD1F4,\n\t38452 - 11905: 0xD2F5,\n\t38453 - 11905: 0xD5F3,\n\t38454 - 11905: 0xBDD7,\n\t38455 - 11905: 0xEA70,\n\t38456 - 11905: 0xEA71,\n\t38457 - 11905: 0xEA72,\n\t38458 - 11905: 0xEA73,\n\t38459 - 11905: 0xD7E8,\n\t38460 - 11905: 0xDAE8,\n\t38461 - 11905: 0xDAE7,\n\t38462 - 11905: 0xEA74,\n\t38463 - 11905: 0xB0A2,\n\t38464 - 11905: 0xCDD3,\n\t38465 - 11905: 0xEA75,\n\t38466 - 11905: 0xDAE9,\n\t38467 - 11905: 0xEA76,\n\t38468 - 11905: 0xB8BD,\n\t38469 - 11905: 0xBCCA,\n\t38470 - 11905: 0xC2BD,\n\t38471 - 11905: 0xC2A4,\n\t38472 - 11905: 0xB3C2,\n\t38473 - 11905: 0xDAEA,\n\t38474 - 11905: 0xEA77,\n\t38475 - 11905: 0xC2AA,\n\t38476 - 11905: 0xC4B0,\n\t38477 - 11905: 0xBDB5,\n\t38478 - 11905: 0xEA78,\n\t38479 - 11905: 0xEA79,\n\t38480 - 11905: 0xCFDE,\n\t38481 - 11905: 0xEA7A,\n\t38482 - 11905: 0xEA7B,\n\t38483 - 11905: 0xEA7C,\n\t38484 - 11905: 0xDAEB,\n\t38485 - 11905: 0xC9C2,\n\t38486 - 11905: 0xEA7D,\n\t38487 - 11905: 0xEA7E,\n\t38488 - 11905: 0xEA80,\n\t38489 - 11905: 0xEA81,\n\t38490 - 11905: 0xEA82,\n\t38491 - 11905: 0xB1DD,\n\t38492 - 11905: 0xEA83,\n\t38493 - 11905: 0xEA84,\n\t38494 - 11905: 0xEA85,\n\t38495 - 11905: 0xDAEC,\n\t38496 - 11905: 0xEA86,\n\t38497 - 11905: 0xB6B8,\n\t38498 - 11905: 0xD4BA,\n\t38499 - 11905: 0xEA87,\n\t38500 - 11905: 0xB3FD,\n\t38501 - 11905: 0xEA88,\n\t38502 - 11905: 0xEA89,\n\t38503 - 11905: 0xDAED,\n\t38504 - 11905: 0xD4C9,\n\t38505 - 11905: 0xCFD5,\n\t38506 - 11905: 0xC5E3,\n\t38507 - 11905: 0xEA8A,\n\t38508 - 11905: 0xDAEE,\n\t38509 - 11905: 0xEA8B,\n\t38510 - 11905: 0xEA8C,\n\t38511 - 11905: 0xEA8D,\n\t38512 - 11905: 0xEA8E,\n\t38513 - 11905: 0xEA8F,\n\t38514 - 11905: 0xDAEF,\n\t38515 - 11905: 0xEA90,\n\t38516 - 11905: 0xDAF0,\n\t38517 - 11905: 0xC1EA,\n\t38518 - 11905: 0xCCD5,\n\t38519 - 11905: 0xCFDD,\n\t38520 - 11905: 0xEA91,\n\t38521 - 11905: 0xEA92,\n\t38522 - 11905: 0xEA93,\n\t38523 - 11905: 0xEA94,\n\t38524 - 11905: 0xEA95,\n\t38525 - 11905: 0xEA96,\n\t38526 - 11905: 0xEA97,\n\t38527 - 11905: 0xEA98,\n\t38528 - 11905: 0xEA99,\n\t38529 - 11905: 0xEA9A,\n\t38530 - 11905: 0xEA9B,\n\t38531 - 11905: 0xEA9C,\n\t38532 - 11905: 0xEA9D,\n\t38533 - 11905: 0xD3E7,\n\t38534 - 11905: 0xC2A1,\n\t38535 - 11905: 0xEA9E,\n\t38536 - 11905: 0xDAF1,\n\t38537 - 11905: 0xEA9F,\n\t38538 - 11905: 0xEAA0,\n\t38539 - 11905: 0xCBE5,\n\t38540 - 11905: 0xEB40,\n\t38541 - 11905: 0xDAF2,\n\t38542 - 11905: 0xEB41,\n\t38543 - 11905: 0xCBE6,\n\t38544 - 11905: 0xD2FE,\n\t38545 - 11905: 0xEB42,\n\t38546 - 11905: 0xEB43,\n\t38547 - 11905: 0xEB44,\n\t38548 - 11905: 0xB8F4,\n\t38549 - 11905: 0xEB45,\n\t38550 - 11905: 0xEB46,\n\t38551 - 11905: 0xDAF3,\n\t38552 - 11905: 0xB0AF,\n\t38553 - 11905: 0xCFB6,\n\t38554 - 11905: 0xEB47,\n\t38555 - 11905: 0xEB48,\n\t38556 - 11905: 0xD5CF,\n\t38557 - 11905: 0xEB49,\n\t38558 - 11905: 0xEB4A,\n\t38559 - 11905: 0xEB4B,\n\t38560 - 11905: 0xEB4C,\n\t38561 - 11905: 0xEB4D,\n\t38562 - 11905: 0xEB4E,\n\t38563 - 11905: 0xEB4F,\n\t38564 - 11905: 0xEB50,\n\t38565 - 11905: 0xEB51,\n\t38566 - 11905: 0xEB52,\n\t38567 - 11905: 0xCBED,\n\t38568 - 11905: 0xEB53,\n\t38569 - 11905: 0xEB54,\n\t38570 - 11905: 0xEB55,\n\t38571 - 11905: 0xEB56,\n\t38572 - 11905: 0xEB57,\n\t38573 - 11905: 0xEB58,\n\t38574 - 11905: 0xEB59,\n\t38575 - 11905: 0xEB5A,\n\t38576 - 11905: 0xDAF4,\n\t38577 - 11905: 0xEB5B,\n\t38578 - 11905: 0xEB5C,\n\t38579 - 11905: 0xE3C4,\n\t38580 - 11905: 0xEB5D,\n\t38581 - 11905: 0xEB5E,\n\t38582 - 11905: 0xC1A5,\n\t38583 - 11905: 0xEB5F,\n\t38584 - 11905: 0xEB60,\n\t38585 - 11905: 0xF6BF,\n\t38586 - 11905: 0xEB61,\n\t38587 - 11905: 0xEB62,\n\t38588 - 11905: 0xF6C0,\n\t38589 - 11905: 0xF6C1,\n\t38590 - 11905: 0xC4D1,\n\t38591 - 11905: 0xEB63,\n\t38592 - 11905: 0xC8B8,\n\t38593 - 11905: 0xD1E3,\n\t38594 - 11905: 0xEB64,\n\t38595 - 11905: 0xEB65,\n\t38596 - 11905: 0xD0DB,\n\t38597 - 11905: 0xD1C5,\n\t38598 - 11905: 0xBCAF,\n\t38599 - 11905: 0xB9CD,\n\t38600 - 11905: 0xEB66,\n\t38601 - 11905: 0xEFF4,\n\t38602 - 11905: 0xEB67,\n\t38603 - 11905: 0xEB68,\n\t38604 - 11905: 0xB4C6,\n\t38605 - 11905: 0xD3BA,\n\t38606 - 11905: 0xF6C2,\n\t38607 - 11905: 0xB3FB,\n\t38608 - 11905: 0xEB69,\n\t38609 - 11905: 0xEB6A,\n\t38610 - 11905: 0xF6C3,\n\t38611 - 11905: 0xEB6B,\n\t38612 - 11905: 0xEB6C,\n\t38613 - 11905: 0xB5F1,\n\t38614 - 11905: 0xEB6D,\n\t38615 - 11905: 0xEB6E,\n\t38616 - 11905: 0xEB6F,\n\t38617 - 11905: 0xEB70,\n\t38618 - 11905: 0xEB71,\n\t38619 - 11905: 0xEB72,\n\t38620 - 11905: 0xEB73,\n\t38621 - 11905: 0xEB74,\n\t38622 - 11905: 0xEB75,\n\t38623 - 11905: 0xEB76,\n\t38624 - 11905: 0xF6C5,\n\t38625 - 11905: 0xEB77,\n\t38626 - 11905: 0xEB78,\n\t38627 - 11905: 0xEB79,\n\t38628 - 11905: 0xEB7A,\n\t38629 - 11905: 0xEB7B,\n\t38630 - 11905: 0xEB7C,\n\t38631 - 11905: 0xEB7D,\n\t38632 - 11905: 0xD3EA,\n\t38633 - 11905: 0xF6A7,\n\t38634 - 11905: 0xD1A9,\n\t38635 - 11905: 0xEB7E,\n\t38636 - 11905: 0xEB80,\n\t38637 - 11905: 0xEB81,\n\t38638 - 11905: 0xEB82,\n\t38639 - 11905: 0xF6A9,\n\t38640 - 11905: 0xEB83,\n\t38641 - 11905: 0xEB84,\n\t38642 - 11905: 0xEB85,\n\t38643 - 11905: 0xF6A8,\n\t38644 - 11905: 0xEB86,\n\t38645 - 11905: 0xEB87,\n\t38646 - 11905: 0xC1E3,\n\t38647 - 11905: 0xC0D7,\n\t38648 - 11905: 0xEB88,\n\t38649 - 11905: 0xB1A2,\n\t38650 - 11905: 0xEB89,\n\t38651 - 11905: 0xEB8A,\n\t38652 - 11905: 0xEB8B,\n\t38653 - 11905: 0xEB8C,\n\t38654 - 11905: 0xCEED,\n\t38655 - 11905: 0xEB8D,\n\t38656 - 11905: 0xD0E8,\n\t38657 - 11905: 0xF6AB,\n\t38658 - 11905: 0xEB8E,\n\t38659 - 11905: 0xEB8F,\n\t38660 - 11905: 0xCFF6,\n\t38661 - 11905: 0xEB90,\n\t38662 - 11905: 0xF6AA,\n\t38663 - 11905: 0xD5F0,\n\t38664 - 11905: 0xF6AC,\n\t38665 - 11905: 0xC3B9,\n\t38666 - 11905: 0xEB91,\n\t38667 - 11905: 0xEB92,\n\t38668 - 11905: 0xEB93,\n\t38669 - 11905: 0xBBF4,\n\t38670 - 11905: 0xF6AE,\n\t38671 - 11905: 0xF6AD,\n\t38672 - 11905: 0xEB94,\n\t38673 - 11905: 0xEB95,\n\t38674 - 11905: 0xEB96,\n\t38675 - 11905: 0xC4DE,\n\t38676 - 11905: 0xEB97,\n\t38677 - 11905: 0xEB98,\n\t38678 - 11905: 0xC1D8,\n\t38679 - 11905: 0xEB99,\n\t38680 - 11905: 0xEB9A,\n\t38681 - 11905: 0xEB9B,\n\t38682 - 11905: 0xEB9C,\n\t38683 - 11905: 0xEB9D,\n\t38684 - 11905: 0xCBAA,\n\t38685 - 11905: 0xEB9E,\n\t38686 - 11905: 0xCFBC,\n\t38687 - 11905: 0xEB9F,\n\t38688 - 11905: 0xEBA0,\n\t38689 - 11905: 0xEC40,\n\t38690 - 11905: 0xEC41,\n\t38691 - 11905: 0xEC42,\n\t38692 - 11905: 0xEC43,\n\t38693 - 11905: 0xEC44,\n\t38694 - 11905: 0xEC45,\n\t38695 - 11905: 0xEC46,\n\t38696 - 11905: 0xEC47,\n\t38697 - 11905: 0xEC48,\n\t38698 - 11905: 0xF6AF,\n\t38699 - 11905: 0xEC49,\n\t38700 - 11905: 0xEC4A,\n\t38701 - 11905: 0xF6B0,\n\t38702 - 11905: 0xEC4B,\n\t38703 - 11905: 0xEC4C,\n\t38704 - 11905: 0xF6B1,\n\t38705 - 11905: 0xEC4D,\n\t38706 - 11905: 0xC2B6,\n\t38707 - 11905: 0xEC4E,\n\t38708 - 11905: 0xEC4F,\n\t38709 - 11905: 0xEC50,\n\t38710 - 11905: 0xEC51,\n\t38711 - 11905: 0xEC52,\n\t38712 - 11905: 0xB0D4,\n\t38713 - 11905: 0xC5F9,\n\t38714 - 11905: 0xEC53,\n\t38715 - 11905: 0xEC54,\n\t38716 - 11905: 0xEC55,\n\t38717 - 11905: 0xEC56,\n\t38718 - 11905: 0xF6B2,\n\t38719 - 11905: 0xEC57,\n\t38720 - 11905: 0xEC58,\n\t38721 - 11905: 0xEC59,\n\t38722 - 11905: 0xEC5A,\n\t38723 - 11905: 0xEC5B,\n\t38724 - 11905: 0xEC5C,\n\t38725 - 11905: 0xEC5D,\n\t38726 - 11905: 0xEC5E,\n\t38727 - 11905: 0xEC5F,\n\t38728 - 11905: 0xEC60,\n\t38729 - 11905: 0xEC61,\n\t38730 - 11905: 0xEC62,\n\t38731 - 11905: 0xEC63,\n\t38732 - 11905: 0xEC64,\n\t38733 - 11905: 0xEC65,\n\t38734 - 11905: 0xEC66,\n\t38735 - 11905: 0xEC67,\n\t38736 - 11905: 0xEC68,\n\t38737 - 11905: 0xEC69,\n\t38738 - 11905: 0xC7E0,\n\t38739 - 11905: 0xF6A6,\n\t38740 - 11905: 0xEC6A,\n\t38741 - 11905: 0xEC6B,\n\t38742 - 11905: 0xBEB8,\n\t38743 - 11905: 0xEC6C,\n\t38744 - 11905: 0xEC6D,\n\t38745 - 11905: 0xBEB2,\n\t38746 - 11905: 0xEC6E,\n\t38747 - 11905: 0xB5E5,\n\t38748 - 11905: 0xEC6F,\n\t38749 - 11905: 0xEC70,\n\t38750 - 11905: 0xB7C7,\n\t38751 - 11905: 0xEC71,\n\t38752 - 11905: 0xBFBF,\n\t38753 - 11905: 0xC3D2,\n\t38754 - 11905: 0xC3E6,\n\t38755 - 11905: 0xEC72,\n\t38756 - 11905: 0xEC73,\n\t38757 - 11905: 0xD8CC,\n\t38758 - 11905: 0xEC74,\n\t38759 - 11905: 0xEC75,\n\t38760 - 11905: 0xEC76,\n\t38761 - 11905: 0xB8EF,\n\t38762 - 11905: 0xEC77,\n\t38763 - 11905: 0xEC78,\n\t38764 - 11905: 0xEC79,\n\t38765 - 11905: 0xEC7A,\n\t38766 - 11905: 0xEC7B,\n\t38767 - 11905: 0xEC7C,\n\t38768 - 11905: 0xEC7D,\n\t38769 - 11905: 0xEC7E,\n\t38770 - 11905: 0xEC80,\n\t38771 - 11905: 0xBDF9,\n\t38772 - 11905: 0xD1A5,\n\t38773 - 11905: 0xEC81,\n\t38774 - 11905: 0xB0D0,\n\t38775 - 11905: 0xEC82,\n\t38776 - 11905: 0xEC83,\n\t38777 - 11905: 0xEC84,\n\t38778 - 11905: 0xEC85,\n\t38779 - 11905: 0xEC86,\n\t38780 - 11905: 0xF7B0,\n\t38781 - 11905: 0xEC87,\n\t38782 - 11905: 0xEC88,\n\t38783 - 11905: 0xEC89,\n\t38784 - 11905: 0xEC8A,\n\t38785 - 11905: 0xEC8B,\n\t38786 - 11905: 0xEC8C,\n\t38787 - 11905: 0xEC8D,\n\t38788 - 11905: 0xEC8E,\n\t38789 - 11905: 0xF7B1,\n\t38790 - 11905: 0xEC8F,\n\t38791 - 11905: 0xEC90,\n\t38792 - 11905: 0xEC91,\n\t38793 - 11905: 0xEC92,\n\t38794 - 11905: 0xEC93,\n\t38795 - 11905: 0xD0AC,\n\t38796 - 11905: 0xEC94,\n\t38797 - 11905: 0xB0B0,\n\t38798 - 11905: 0xEC95,\n\t38799 - 11905: 0xEC96,\n\t38800 - 11905: 0xEC97,\n\t38801 - 11905: 0xF7B2,\n\t38802 - 11905: 0xF7B3,\n\t38803 - 11905: 0xEC98,\n\t38804 - 11905: 0xF7B4,\n\t38805 - 11905: 0xEC99,\n\t38806 - 11905: 0xEC9A,\n\t38807 - 11905: 0xEC9B,\n\t38808 - 11905: 0xC7CA,\n\t38809 - 11905: 0xEC9C,\n\t38810 - 11905: 0xEC9D,\n\t38811 - 11905: 0xEC9E,\n\t38812 - 11905: 0xEC9F,\n\t38813 - 11905: 0xECA0,\n\t38814 - 11905: 0xED40,\n\t38815 - 11905: 0xED41,\n\t38816 - 11905: 0xBECF,\n\t38817 - 11905: 0xED42,\n\t38818 - 11905: 0xED43,\n\t38819 - 11905: 0xF7B7,\n\t38820 - 11905: 0xED44,\n\t38821 - 11905: 0xED45,\n\t38822 - 11905: 0xED46,\n\t38823 - 11905: 0xED47,\n\t38824 - 11905: 0xED48,\n\t38825 - 11905: 0xED49,\n\t38826 - 11905: 0xED4A,\n\t38827 - 11905: 0xF7B6,\n\t38828 - 11905: 0xED4B,\n\t38829 - 11905: 0xB1DE,\n\t38830 - 11905: 0xED4C,\n\t38831 - 11905: 0xF7B5,\n\t38832 - 11905: 0xED4D,\n\t38833 - 11905: 0xED4E,\n\t38834 - 11905: 0xF7B8,\n\t38835 - 11905: 0xED4F,\n\t38836 - 11905: 0xF7B9,\n\t38837 - 11905: 0xED50,\n\t38838 - 11905: 0xED51,\n\t38839 - 11905: 0xED52,\n\t38840 - 11905: 0xED53,\n\t38841 - 11905: 0xED54,\n\t38842 - 11905: 0xED55,\n\t38843 - 11905: 0xED56,\n\t38844 - 11905: 0xED57,\n\t38845 - 11905: 0xED58,\n\t38846 - 11905: 0xED59,\n\t38847 - 11905: 0xED5A,\n\t38848 - 11905: 0xED5B,\n\t38849 - 11905: 0xED5C,\n\t38850 - 11905: 0xED5D,\n\t38851 - 11905: 0xED5E,\n\t38852 - 11905: 0xED5F,\n\t38853 - 11905: 0xED60,\n\t38854 - 11905: 0xED61,\n\t38855 - 11905: 0xED62,\n\t38856 - 11905: 0xED63,\n\t38857 - 11905: 0xED64,\n\t38858 - 11905: 0xED65,\n\t38859 - 11905: 0xED66,\n\t38860 - 11905: 0xED67,\n\t38861 - 11905: 0xED68,\n\t38862 - 11905: 0xED69,\n\t38863 - 11905: 0xED6A,\n\t38864 - 11905: 0xED6B,\n\t38865 - 11905: 0xED6C,\n\t38866 - 11905: 0xED6D,\n\t38867 - 11905: 0xED6E,\n\t38868 - 11905: 0xED6F,\n\t38869 - 11905: 0xED70,\n\t38870 - 11905: 0xED71,\n\t38871 - 11905: 0xED72,\n\t38872 - 11905: 0xED73,\n\t38873 - 11905: 0xED74,\n\t38874 - 11905: 0xED75,\n\t38875 - 11905: 0xED76,\n\t38876 - 11905: 0xED77,\n\t38877 - 11905: 0xED78,\n\t38878 - 11905: 0xED79,\n\t38879 - 11905: 0xED7A,\n\t38880 - 11905: 0xED7B,\n\t38881 - 11905: 0xED7C,\n\t38882 - 11905: 0xED7D,\n\t38883 - 11905: 0xED7E,\n\t38884 - 11905: 0xED80,\n\t38885 - 11905: 0xED81,\n\t38886 - 11905: 0xCEA4,\n\t38887 - 11905: 0xC8CD,\n\t38888 - 11905: 0xED82,\n\t38889 - 11905: 0xBAAB,\n\t38890 - 11905: 0xE8B8,\n\t38891 - 11905: 0xE8B9,\n\t38892 - 11905: 0xE8BA,\n\t38893 - 11905: 0xBEC2,\n\t38894 - 11905: 0xED83,\n\t38895 - 11905: 0xED84,\n\t38896 - 11905: 0xED85,\n\t38897 - 11905: 0xED86,\n\t38898 - 11905: 0xED87,\n\t38899 - 11905: 0xD2F4,\n\t38900 - 11905: 0xED88,\n\t38901 - 11905: 0xD4CF,\n\t38902 - 11905: 0xC9D8,\n\t38903 - 11905: 0xED89,\n\t38904 - 11905: 0xED8A,\n\t38905 - 11905: 0xED8B,\n\t38906 - 11905: 0xED8C,\n\t38907 - 11905: 0xED8D,\n\t38908 - 11905: 0xED8E,\n\t38909 - 11905: 0xED8F,\n\t38910 - 11905: 0xED90,\n\t38911 - 11905: 0xED91,\n\t38912 - 11905: 0xED92,\n\t38913 - 11905: 0xED93,\n\t38914 - 11905: 0xED94,\n\t38915 - 11905: 0xED95,\n\t38916 - 11905: 0xED96,\n\t38917 - 11905: 0xED97,\n\t38918 - 11905: 0xED98,\n\t38919 - 11905: 0xED99,\n\t38920 - 11905: 0xED9A,\n\t38921 - 11905: 0xED9B,\n\t38922 - 11905: 0xED9C,\n\t38923 - 11905: 0xED9D,\n\t38924 - 11905: 0xED9E,\n\t38925 - 11905: 0xED9F,\n\t38926 - 11905: 0xEDA0,\n\t38927 - 11905: 0xEE40,\n\t38928 - 11905: 0xEE41,\n\t38929 - 11905: 0xEE42,\n\t38930 - 11905: 0xEE43,\n\t38931 - 11905: 0xEE44,\n\t38932 - 11905: 0xEE45,\n\t38933 - 11905: 0xEE46,\n\t38934 - 11905: 0xEE47,\n\t38935 - 11905: 0xEE48,\n\t38936 - 11905: 0xEE49,\n\t38937 - 11905: 0xEE4A,\n\t38938 - 11905: 0xEE4B,\n\t38939 - 11905: 0xEE4C,\n\t38940 - 11905: 0xEE4D,\n\t38941 - 11905: 0xEE4E,\n\t38942 - 11905: 0xEE4F,\n\t38943 - 11905: 0xEE50,\n\t38944 - 11905: 0xEE51,\n\t38945 - 11905: 0xEE52,\n\t38946 - 11905: 0xEE53,\n\t38947 - 11905: 0xEE54,\n\t38948 - 11905: 0xEE55,\n\t38949 - 11905: 0xEE56,\n\t38950 - 11905: 0xEE57,\n\t38951 - 11905: 0xEE58,\n\t38952 - 11905: 0xEE59,\n\t38953 - 11905: 0xEE5A,\n\t38954 - 11905: 0xEE5B,\n\t38955 - 11905: 0xEE5C,\n\t38956 - 11905: 0xEE5D,\n\t38957 - 11905: 0xEE5E,\n\t38958 - 11905: 0xEE5F,\n\t38959 - 11905: 0xEE60,\n\t38960 - 11905: 0xEE61,\n\t38961 - 11905: 0xEE62,\n\t38962 - 11905: 0xEE63,\n\t38963 - 11905: 0xEE64,\n\t38964 - 11905: 0xEE65,\n\t38965 - 11905: 0xEE66,\n\t38966 - 11905: 0xEE67,\n\t38967 - 11905: 0xEE68,\n\t38968 - 11905: 0xEE69,\n\t38969 - 11905: 0xEE6A,\n\t38970 - 11905: 0xEE6B,\n\t38971 - 11905: 0xEE6C,\n\t38972 - 11905: 0xEE6D,\n\t38973 - 11905: 0xEE6E,\n\t38974 - 11905: 0xEE6F,\n\t38975 - 11905: 0xEE70,\n\t38976 - 11905: 0xEE71,\n\t38977 - 11905: 0xEE72,\n\t38978 - 11905: 0xEE73,\n\t38979 - 11905: 0xEE74,\n\t38980 - 11905: 0xEE75,\n\t38981 - 11905: 0xEE76,\n\t38982 - 11905: 0xEE77,\n\t38983 - 11905: 0xEE78,\n\t38984 - 11905: 0xEE79,\n\t38985 - 11905: 0xEE7A,\n\t38986 - 11905: 0xEE7B,\n\t38987 - 11905: 0xEE7C,\n\t38988 - 11905: 0xEE7D,\n\t38989 - 11905: 0xEE7E,\n\t38990 - 11905: 0xEE80,\n\t38991 - 11905: 0xEE81,\n\t38992 - 11905: 0xEE82,\n\t38993 - 11905: 0xEE83,\n\t38994 - 11905: 0xEE84,\n\t38995 - 11905: 0xEE85,\n\t38996 - 11905: 0xEE86,\n\t38997 - 11905: 0xEE87,\n\t38998 - 11905: 0xEE88,\n\t38999 - 11905: 0xEE89,\n\t39000 - 11905: 0xEE8A,\n\t39001 - 11905: 0xEE8B,\n\t39002 - 11905: 0xEE8C,\n\t39003 - 11905: 0xEE8D,\n\t39004 - 11905: 0xEE8E,\n\t39005 - 11905: 0xEE8F,\n\t39006 - 11905: 0xEE90,\n\t39007 - 11905: 0xEE91,\n\t39008 - 11905: 0xEE92,\n\t39009 - 11905: 0xEE93,\n\t39010 - 11905: 0xEE94,\n\t39011 - 11905: 0xEE95,\n\t39012 - 11905: 0xEE96,\n\t39013 - 11905: 0xEE97,\n\t39014 - 11905: 0xEE98,\n\t39015 - 11905: 0xEE99,\n\t39016 - 11905: 0xEE9A,\n\t39017 - 11905: 0xEE9B,\n\t39018 - 11905: 0xEE9C,\n\t39019 - 11905: 0xEE9D,\n\t39020 - 11905: 0xEE9E,\n\t39021 - 11905: 0xEE9F,\n\t39022 - 11905: 0xEEA0,\n\t39023 - 11905: 0xEF40,\n\t39024 - 11905: 0xEF41,\n\t39025 - 11905: 0xEF42,\n\t39026 - 11905: 0xEF43,\n\t39027 - 11905: 0xEF44,\n\t39028 - 11905: 0xEF45,\n\t39029 - 11905: 0xD2B3,\n\t39030 - 11905: 0xB6A5,\n\t39031 - 11905: 0xC7EA,\n\t39032 - 11905: 0xF1FC,\n\t39033 - 11905: 0xCFEE,\n\t39034 - 11905: 0xCBB3,\n\t39035 - 11905: 0xD0EB,\n\t39036 - 11905: 0xE7EF,\n\t39037 - 11905: 0xCDE7,\n\t39038 - 11905: 0xB9CB,\n\t39039 - 11905: 0xB6D9,\n\t39040 - 11905: 0xF1FD,\n\t39041 - 11905: 0xB0E4,\n\t39042 - 11905: 0xCBCC,\n\t39043 - 11905: 0xF1FE,\n\t39044 - 11905: 0xD4A4,\n\t39045 - 11905: 0xC2AD,\n\t39046 - 11905: 0xC1EC,\n\t39047 - 11905: 0xC6C4,\n\t39048 - 11905: 0xBEB1,\n\t39049 - 11905: 0xF2A1,\n\t39050 - 11905: 0xBCD5,\n\t39051 - 11905: 0xEF46,\n\t39052 - 11905: 0xF2A2,\n\t39053 - 11905: 0xF2A3,\n\t39054 - 11905: 0xEF47,\n\t39055 - 11905: 0xF2A4,\n\t39056 - 11905: 0xD2C3,\n\t39057 - 11905: 0xC6B5,\n\t39058 - 11905: 0xEF48,\n\t39059 - 11905: 0xCDC7,\n\t39060 - 11905: 0xF2A5,\n\t39061 - 11905: 0xEF49,\n\t39062 - 11905: 0xD3B1,\n\t39063 - 11905: 0xBFC5,\n\t39064 - 11905: 0xCCE2,\n\t39065 - 11905: 0xEF4A,\n\t39066 - 11905: 0xF2A6,\n\t39067 - 11905: 0xF2A7,\n\t39068 - 11905: 0xD1D5,\n\t39069 - 11905: 0xB6EE,\n\t39070 - 11905: 0xF2A8,\n\t39071 - 11905: 0xF2A9,\n\t39072 - 11905: 0xB5DF,\n\t39073 - 11905: 0xF2AA,\n\t39074 - 11905: 0xF2AB,\n\t39075 - 11905: 0xEF4B,\n\t39076 - 11905: 0xB2FC,\n\t39077 - 11905: 0xF2AC,\n\t39078 - 11905: 0xF2AD,\n\t39079 - 11905: 0xC8A7,\n\t39080 - 11905: 0xEF4C,\n\t39081 - 11905: 0xEF4D,\n\t39082 - 11905: 0xEF4E,\n\t39083 - 11905: 0xEF4F,\n\t39084 - 11905: 0xEF50,\n\t39085 - 11905: 0xEF51,\n\t39086 - 11905: 0xEF52,\n\t39087 - 11905: 0xEF53,\n\t39088 - 11905: 0xEF54,\n\t39089 - 11905: 0xEF55,\n\t39090 - 11905: 0xEF56,\n\t39091 - 11905: 0xEF57,\n\t39092 - 11905: 0xEF58,\n\t39093 - 11905: 0xEF59,\n\t39094 - 11905: 0xEF5A,\n\t39095 - 11905: 0xEF5B,\n\t39096 - 11905: 0xEF5C,\n\t39097 - 11905: 0xEF5D,\n\t39098 - 11905: 0xEF5E,\n\t39099 - 11905: 0xEF5F,\n\t39100 - 11905: 0xEF60,\n\t39101 - 11905: 0xEF61,\n\t39102 - 11905: 0xEF62,\n\t39103 - 11905: 0xEF63,\n\t39104 - 11905: 0xEF64,\n\t39105 - 11905: 0xEF65,\n\t39106 - 11905: 0xEF66,\n\t39107 - 11905: 0xEF67,\n\t39108 - 11905: 0xEF68,\n\t39109 - 11905: 0xEF69,\n\t39110 - 11905: 0xEF6A,\n\t39111 - 11905: 0xEF6B,\n\t39112 - 11905: 0xEF6C,\n\t39113 - 11905: 0xEF6D,\n\t39114 - 11905: 0xEF6E,\n\t39115 - 11905: 0xEF6F,\n\t39116 - 11905: 0xEF70,\n\t39117 - 11905: 0xEF71,\n\t39118 - 11905: 0xB7E7,\n\t39119 - 11905: 0xEF72,\n\t39120 - 11905: 0xEF73,\n\t39121 - 11905: 0xECA9,\n\t39122 - 11905: 0xECAA,\n\t39123 - 11905: 0xECAB,\n\t39124 - 11905: 0xEF74,\n\t39125 - 11905: 0xECAC,\n\t39126 - 11905: 0xEF75,\n\t39127 - 11905: 0xEF76,\n\t39128 - 11905: 0xC6AE,\n\t39129 - 11905: 0xECAD,\n\t39130 - 11905: 0xECAE,\n\t39131 - 11905: 0xEF77,\n\t39132 - 11905: 0xEF78,\n\t39133 - 11905: 0xEF79,\n\t39134 - 11905: 0xB7C9,\n\t39135 - 11905: 0xCAB3,\n\t39136 - 11905: 0xEF7A,\n\t39137 - 11905: 0xEF7B,\n\t39138 - 11905: 0xEF7C,\n\t39139 - 11905: 0xEF7D,\n\t39140 - 11905: 0xEF7E,\n\t39141 - 11905: 0xEF80,\n\t39142 - 11905: 0xEF81,\n\t39143 - 11905: 0xE2B8,\n\t39144 - 11905: 0xF7CF,\n\t39145 - 11905: 0xEF82,\n\t39146 - 11905: 0xEF83,\n\t39147 - 11905: 0xEF84,\n\t39148 - 11905: 0xEF85,\n\t39149 - 11905: 0xEF86,\n\t39150 - 11905: 0xEF87,\n\t39151 - 11905: 0xEF88,\n\t39152 - 11905: 0xEF89,\n\t39153 - 11905: 0xEF8A,\n\t39154 - 11905: 0xEF8B,\n\t39155 - 11905: 0xEF8C,\n\t39156 - 11905: 0xEF8D,\n\t39157 - 11905: 0xEF8E,\n\t39158 - 11905: 0xEF8F,\n\t39159 - 11905: 0xEF90,\n\t39160 - 11905: 0xEF91,\n\t39161 - 11905: 0xEF92,\n\t39162 - 11905: 0xEF93,\n\t39163 - 11905: 0xEF94,\n\t39164 - 11905: 0xEF95,\n\t39165 - 11905: 0xEF96,\n\t39166 - 11905: 0xEF97,\n\t39167 - 11905: 0xEF98,\n\t39168 - 11905: 0xEF99,\n\t39169 - 11905: 0xEF9A,\n\t39170 - 11905: 0xEF9B,\n\t39171 - 11905: 0xEF9C,\n\t39172 - 11905: 0xEF9D,\n\t39173 - 11905: 0xEF9E,\n\t39174 - 11905: 0xEF9F,\n\t39175 - 11905: 0xEFA0,\n\t39176 - 11905: 0xF040,\n\t39177 - 11905: 0xF041,\n\t39178 - 11905: 0xF042,\n\t39179 - 11905: 0xF043,\n\t39180 - 11905: 0xF044,\n\t39181 - 11905: 0xF7D0,\n\t39182 - 11905: 0xF045,\n\t39183 - 11905: 0xF046,\n\t39184 - 11905: 0xB2CD,\n\t39185 - 11905: 0xF047,\n\t39186 - 11905: 0xF048,\n\t39187 - 11905: 0xF049,\n\t39188 - 11905: 0xF04A,\n\t39189 - 11905: 0xF04B,\n\t39190 - 11905: 0xF04C,\n\t39191 - 11905: 0xF04D,\n\t39192 - 11905: 0xF04E,\n\t39193 - 11905: 0xF04F,\n\t39194 - 11905: 0xF050,\n\t39195 - 11905: 0xF051,\n\t39196 - 11905: 0xF052,\n\t39197 - 11905: 0xF053,\n\t39198 - 11905: 0xF054,\n\t39199 - 11905: 0xF055,\n\t39200 - 11905: 0xF056,\n\t39201 - 11905: 0xF057,\n\t39202 - 11905: 0xF058,\n\t39203 - 11905: 0xF059,\n\t39204 - 11905: 0xF05A,\n\t39205 - 11905: 0xF05B,\n\t39206 - 11905: 0xF05C,\n\t39207 - 11905: 0xF05D,\n\t39208 - 11905: 0xF05E,\n\t39209 - 11905: 0xF05F,\n\t39210 - 11905: 0xF060,\n\t39211 - 11905: 0xF061,\n\t39212 - 11905: 0xF062,\n\t39213 - 11905: 0xF063,\n\t39214 - 11905: 0xF7D1,\n\t39215 - 11905: 0xF064,\n\t39216 - 11905: 0xF065,\n\t39217 - 11905: 0xF066,\n\t39218 - 11905: 0xF067,\n\t39219 - 11905: 0xF068,\n\t39220 - 11905: 0xF069,\n\t39221 - 11905: 0xF06A,\n\t39222 - 11905: 0xF06B,\n\t39223 - 11905: 0xF06C,\n\t39224 - 11905: 0xF06D,\n\t39225 - 11905: 0xF06E,\n\t39226 - 11905: 0xF06F,\n\t39227 - 11905: 0xF070,\n\t39228 - 11905: 0xF071,\n\t39229 - 11905: 0xF072,\n\t39230 - 11905: 0xF073,\n\t39231 - 11905: 0xF074,\n\t39232 - 11905: 0xF075,\n\t39233 - 11905: 0xF076,\n\t39234 - 11905: 0xF077,\n\t39235 - 11905: 0xF078,\n\t39236 - 11905: 0xF079,\n\t39237 - 11905: 0xF07A,\n\t39238 - 11905: 0xF07B,\n\t39239 - 11905: 0xF07C,\n\t39240 - 11905: 0xF07D,\n\t39241 - 11905: 0xF07E,\n\t39242 - 11905: 0xF080,\n\t39243 - 11905: 0xF081,\n\t39244 - 11905: 0xF082,\n\t39245 - 11905: 0xF083,\n\t39246 - 11905: 0xF084,\n\t39247 - 11905: 0xF085,\n\t39248 - 11905: 0xF086,\n\t39249 - 11905: 0xF087,\n\t39250 - 11905: 0xF088,\n\t39251 - 11905: 0xF089,\n\t39252 - 11905: 0xF7D3,\n\t39253 - 11905: 0xF7D2,\n\t39254 - 11905: 0xF08A,\n\t39255 - 11905: 0xF08B,\n\t39256 - 11905: 0xF08C,\n\t39257 - 11905: 0xF08D,\n\t39258 - 11905: 0xF08E,\n\t39259 - 11905: 0xF08F,\n\t39260 - 11905: 0xF090,\n\t39261 - 11905: 0xF091,\n\t39262 - 11905: 0xF092,\n\t39263 - 11905: 0xF093,\n\t39264 - 11905: 0xF094,\n\t39265 - 11905: 0xF095,\n\t39266 - 11905: 0xF096,\n\t39267 - 11905: 0xE2BB,\n\t39268 - 11905: 0xF097,\n\t39269 - 11905: 0xBCA2,\n\t39270 - 11905: 0xF098,\n\t39271 - 11905: 0xE2BC,\n\t39272 - 11905: 0xE2BD,\n\t39273 - 11905: 0xE2BE,\n\t39274 - 11905: 0xE2BF,\n\t39275 - 11905: 0xE2C0,\n\t39276 - 11905: 0xE2C1,\n\t39277 - 11905: 0xB7B9,\n\t39278 - 11905: 0xD2FB,\n\t39279 - 11905: 0xBDA4,\n\t39280 - 11905: 0xCACE,\n\t39281 - 11905: 0xB1A5,\n\t39282 - 11905: 0xCBC7,\n\t39283 - 11905: 0xF099,\n\t39284 - 11905: 0xE2C2,\n\t39285 - 11905: 0xB6FC,\n\t39286 - 11905: 0xC8C4,\n\t39287 - 11905: 0xE2C3,\n\t39288 - 11905: 0xF09A,\n\t39289 - 11905: 0xF09B,\n\t39290 - 11905: 0xBDC8,\n\t39291 - 11905: 0xF09C,\n\t39292 - 11905: 0xB1FD,\n\t39293 - 11905: 0xE2C4,\n\t39294 - 11905: 0xF09D,\n\t39295 - 11905: 0xB6F6,\n\t39296 - 11905: 0xE2C5,\n\t39297 - 11905: 0xC4D9,\n\t39298 - 11905: 0xF09E,\n\t39299 - 11905: 0xF09F,\n\t39300 - 11905: 0xE2C6,\n\t39301 - 11905: 0xCFDA,\n\t39302 - 11905: 0xB9DD,\n\t39303 - 11905: 0xE2C7,\n\t39304 - 11905: 0xC0A1,\n\t39305 - 11905: 0xF0A0,\n\t39306 - 11905: 0xE2C8,\n\t39307 - 11905: 0xB2F6,\n\t39308 - 11905: 0xF140,\n\t39309 - 11905: 0xE2C9,\n\t39310 - 11905: 0xF141,\n\t39311 - 11905: 0xC1F3,\n\t39312 - 11905: 0xE2CA,\n\t39313 - 11905: 0xE2CB,\n\t39314 - 11905: 0xC2F8,\n\t39315 - 11905: 0xE2CC,\n\t39316 - 11905: 0xE2CD,\n\t39317 - 11905: 0xE2CE,\n\t39318 - 11905: 0xCAD7,\n\t39319 - 11905: 0xD8B8,\n\t39320 - 11905: 0xD9E5,\n\t39321 - 11905: 0xCFE3,\n\t39322 - 11905: 0xF142,\n\t39323 - 11905: 0xF143,\n\t39324 - 11905: 0xF144,\n\t39325 - 11905: 0xF145,\n\t39326 - 11905: 0xF146,\n\t39327 - 11905: 0xF147,\n\t39328 - 11905: 0xF148,\n\t39329 - 11905: 0xF149,\n\t39330 - 11905: 0xF14A,\n\t39331 - 11905: 0xF14B,\n\t39332 - 11905: 0xF14C,\n\t39333 - 11905: 0xF0A5,\n\t39334 - 11905: 0xF14D,\n\t39335 - 11905: 0xF14E,\n\t39336 - 11905: 0xDCB0,\n\t39337 - 11905: 0xF14F,\n\t39338 - 11905: 0xF150,\n\t39339 - 11905: 0xF151,\n\t39340 - 11905: 0xF152,\n\t39341 - 11905: 0xF153,\n\t39342 - 11905: 0xF154,\n\t39343 - 11905: 0xF155,\n\t39344 - 11905: 0xF156,\n\t39345 - 11905: 0xF157,\n\t39346 - 11905: 0xF158,\n\t39347 - 11905: 0xF159,\n\t39348 - 11905: 0xF15A,\n\t39349 - 11905: 0xF15B,\n\t39350 - 11905: 0xF15C,\n\t39351 - 11905: 0xF15D,\n\t39352 - 11905: 0xF15E,\n\t39353 - 11905: 0xF15F,\n\t39354 - 11905: 0xF160,\n\t39355 - 11905: 0xF161,\n\t39356 - 11905: 0xF162,\n\t39357 - 11905: 0xF163,\n\t39358 - 11905: 0xF164,\n\t39359 - 11905: 0xF165,\n\t39360 - 11905: 0xF166,\n\t39361 - 11905: 0xF167,\n\t39362 - 11905: 0xF168,\n\t39363 - 11905: 0xF169,\n\t39364 - 11905: 0xF16A,\n\t39365 - 11905: 0xF16B,\n\t39366 - 11905: 0xF16C,\n\t39367 - 11905: 0xF16D,\n\t39368 - 11905: 0xF16E,\n\t39369 - 11905: 0xF16F,\n\t39370 - 11905: 0xF170,\n\t39371 - 11905: 0xF171,\n\t39372 - 11905: 0xF172,\n\t39373 - 11905: 0xF173,\n\t39374 - 11905: 0xF174,\n\t39375 - 11905: 0xF175,\n\t39376 - 11905: 0xF176,\n\t39377 - 11905: 0xF177,\n\t39378 - 11905: 0xF178,\n\t39379 - 11905: 0xF179,\n\t39380 - 11905: 0xF17A,\n\t39381 - 11905: 0xF17B,\n\t39382 - 11905: 0xF17C,\n\t39383 - 11905: 0xF17D,\n\t39384 - 11905: 0xF17E,\n\t39385 - 11905: 0xF180,\n\t39386 - 11905: 0xF181,\n\t39387 - 11905: 0xF182,\n\t39388 - 11905: 0xF183,\n\t39389 - 11905: 0xF184,\n\t39390 - 11905: 0xF185,\n\t39391 - 11905: 0xF186,\n\t39392 - 11905: 0xF187,\n\t39393 - 11905: 0xF188,\n\t39394 - 11905: 0xF189,\n\t39395 - 11905: 0xF18A,\n\t39396 - 11905: 0xF18B,\n\t39397 - 11905: 0xF18C,\n\t39398 - 11905: 0xF18D,\n\t39399 - 11905: 0xF18E,\n\t39400 - 11905: 0xF18F,\n\t39401 - 11905: 0xF190,\n\t39402 - 11905: 0xF191,\n\t39403 - 11905: 0xF192,\n\t39404 - 11905: 0xF193,\n\t39405 - 11905: 0xF194,\n\t39406 - 11905: 0xF195,\n\t39407 - 11905: 0xF196,\n\t39408 - 11905: 0xF197,\n\t39409 - 11905: 0xF198,\n\t39410 - 11905: 0xF199,\n\t39411 - 11905: 0xF19A,\n\t39412 - 11905: 0xF19B,\n\t39413 - 11905: 0xF19C,\n\t39414 - 11905: 0xF19D,\n\t39415 - 11905: 0xF19E,\n\t39416 - 11905: 0xF19F,\n\t39417 - 11905: 0xF1A0,\n\t39418 - 11905: 0xF240,\n\t39419 - 11905: 0xF241,\n\t39420 - 11905: 0xF242,\n\t39421 - 11905: 0xF243,\n\t39422 - 11905: 0xF244,\n\t39423 - 11905: 0xF245,\n\t39424 - 11905: 0xF246,\n\t39425 - 11905: 0xF247,\n\t39426 - 11905: 0xF248,\n\t39427 - 11905: 0xF249,\n\t39428 - 11905: 0xF24A,\n\t39429 - 11905: 0xF24B,\n\t39430 - 11905: 0xF24C,\n\t39431 - 11905: 0xF24D,\n\t39432 - 11905: 0xF24E,\n\t39433 - 11905: 0xF24F,\n\t39434 - 11905: 0xF250,\n\t39435 - 11905: 0xF251,\n\t39436 - 11905: 0xF252,\n\t39437 - 11905: 0xF253,\n\t39438 - 11905: 0xF254,\n\t39439 - 11905: 0xF255,\n\t39440 - 11905: 0xF256,\n\t39441 - 11905: 0xF257,\n\t39442 - 11905: 0xF258,\n\t39443 - 11905: 0xF259,\n\t39444 - 11905: 0xF25A,\n\t39445 - 11905: 0xF25B,\n\t39446 - 11905: 0xF25C,\n\t39447 - 11905: 0xF25D,\n\t39448 - 11905: 0xF25E,\n\t39449 - 11905: 0xF25F,\n\t39450 - 11905: 0xF260,\n\t39451 - 11905: 0xF261,\n\t39452 - 11905: 0xF262,\n\t39453 - 11905: 0xF263,\n\t39454 - 11905: 0xF264,\n\t39455 - 11905: 0xF265,\n\t39456 - 11905: 0xF266,\n\t39457 - 11905: 0xF267,\n\t39458 - 11905: 0xF268,\n\t39459 - 11905: 0xF269,\n\t39460 - 11905: 0xF26A,\n\t39461 - 11905: 0xF26B,\n\t39462 - 11905: 0xF26C,\n\t39463 - 11905: 0xF26D,\n\t39464 - 11905: 0xF26E,\n\t39465 - 11905: 0xF26F,\n\t39466 - 11905: 0xF270,\n\t39467 - 11905: 0xF271,\n\t39468 - 11905: 0xF272,\n\t39469 - 11905: 0xF273,\n\t39470 - 11905: 0xF274,\n\t39471 - 11905: 0xF275,\n\t39472 - 11905: 0xF276,\n\t39473 - 11905: 0xF277,\n\t39474 - 11905: 0xF278,\n\t39475 - 11905: 0xF279,\n\t39476 - 11905: 0xF27A,\n\t39477 - 11905: 0xF27B,\n\t39478 - 11905: 0xF27C,\n\t39479 - 11905: 0xF27D,\n\t39480 - 11905: 0xF27E,\n\t39481 - 11905: 0xF280,\n\t39482 - 11905: 0xF281,\n\t39483 - 11905: 0xF282,\n\t39484 - 11905: 0xF283,\n\t39485 - 11905: 0xF284,\n\t39486 - 11905: 0xF285,\n\t39487 - 11905: 0xF286,\n\t39488 - 11905: 0xF287,\n\t39489 - 11905: 0xF288,\n\t39490 - 11905: 0xF289,\n\t39491 - 11905: 0xF28A,\n\t39492 - 11905: 0xF28B,\n\t39493 - 11905: 0xF28C,\n\t39494 - 11905: 0xF28D,\n\t39495 - 11905: 0xF28E,\n\t39496 - 11905: 0xF28F,\n\t39497 - 11905: 0xF290,\n\t39498 - 11905: 0xF291,\n\t39499 - 11905: 0xF292,\n\t39500 - 11905: 0xF293,\n\t39501 - 11905: 0xF294,\n\t39502 - 11905: 0xF295,\n\t39503 - 11905: 0xF296,\n\t39504 - 11905: 0xF297,\n\t39505 - 11905: 0xF298,\n\t39506 - 11905: 0xF299,\n\t39507 - 11905: 0xF29A,\n\t39508 - 11905: 0xF29B,\n\t39509 - 11905: 0xF29C,\n\t39510 - 11905: 0xF29D,\n\t39511 - 11905: 0xF29E,\n\t39512 - 11905: 0xF29F,\n\t39513 - 11905: 0xF2A0,\n\t39514 - 11905: 0xF340,\n\t39515 - 11905: 0xF341,\n\t39516 - 11905: 0xF342,\n\t39517 - 11905: 0xF343,\n\t39518 - 11905: 0xF344,\n\t39519 - 11905: 0xF345,\n\t39520 - 11905: 0xF346,\n\t39521 - 11905: 0xF347,\n\t39522 - 11905: 0xF348,\n\t39523 - 11905: 0xF349,\n\t39524 - 11905: 0xF34A,\n\t39525 - 11905: 0xF34B,\n\t39526 - 11905: 0xF34C,\n\t39527 - 11905: 0xF34D,\n\t39528 - 11905: 0xF34E,\n\t39529 - 11905: 0xF34F,\n\t39530 - 11905: 0xF350,\n\t39531 - 11905: 0xF351,\n\t39532 - 11905: 0xC2ED,\n\t39533 - 11905: 0xD4A6,\n\t39534 - 11905: 0xCDD4,\n\t39535 - 11905: 0xD1B1,\n\t39536 - 11905: 0xB3DB,\n\t39537 - 11905: 0xC7FD,\n\t39538 - 11905: 0xF352,\n\t39539 - 11905: 0xB2B5,\n\t39540 - 11905: 0xC2BF,\n\t39541 - 11905: 0xE6E0,\n\t39542 - 11905: 0xCABB,\n\t39543 - 11905: 0xE6E1,\n\t39544 - 11905: 0xE6E2,\n\t39545 - 11905: 0xBED4,\n\t39546 - 11905: 0xE6E3,\n\t39547 - 11905: 0xD7A4,\n\t39548 - 11905: 0xCDD5,\n\t39549 - 11905: 0xE6E5,\n\t39550 - 11905: 0xBCDD,\n\t39551 - 11905: 0xE6E4,\n\t39552 - 11905: 0xE6E6,\n\t39553 - 11905: 0xE6E7,\n\t39554 - 11905: 0xC2EE,\n\t39555 - 11905: 0xF353,\n\t39556 - 11905: 0xBDBE,\n\t39557 - 11905: 0xE6E8,\n\t39558 - 11905: 0xC2E6,\n\t39559 - 11905: 0xBAA7,\n\t39560 - 11905: 0xE6E9,\n\t39561 - 11905: 0xF354,\n\t39562 - 11905: 0xE6EA,\n\t39563 - 11905: 0xB3D2,\n\t39564 - 11905: 0xD1E9,\n\t39565 - 11905: 0xF355,\n\t39566 - 11905: 0xF356,\n\t39567 - 11905: 0xBFA5,\n\t39568 - 11905: 0xE6EB,\n\t39569 - 11905: 0xC6EF,\n\t39570 - 11905: 0xE6EC,\n\t39571 - 11905: 0xE6ED,\n\t39572 - 11905: 0xF357,\n\t39573 - 11905: 0xF358,\n\t39574 - 11905: 0xE6EE,\n\t39575 - 11905: 0xC6AD,\n\t39576 - 11905: 0xE6EF,\n\t39577 - 11905: 0xF359,\n\t39578 - 11905: 0xC9A7,\n\t39579 - 11905: 0xE6F0,\n\t39580 - 11905: 0xE6F1,\n\t39581 - 11905: 0xE6F2,\n\t39582 - 11905: 0xE5B9,\n\t39583 - 11905: 0xE6F3,\n\t39584 - 11905: 0xE6F4,\n\t39585 - 11905: 0xC2E2,\n\t39586 - 11905: 0xE6F5,\n\t39587 - 11905: 0xE6F6,\n\t39588 - 11905: 0xD6E8,\n\t39589 - 11905: 0xE6F7,\n\t39590 - 11905: 0xF35A,\n\t39591 - 11905: 0xE6F8,\n\t39592 - 11905: 0xB9C7,\n\t39593 - 11905: 0xF35B,\n\t39594 - 11905: 0xF35C,\n\t39595 - 11905: 0xF35D,\n\t39596 - 11905: 0xF35E,\n\t39597 - 11905: 0xF35F,\n\t39598 - 11905: 0xF360,\n\t39599 - 11905: 0xF361,\n\t39600 - 11905: 0xF7BB,\n\t39601 - 11905: 0xF7BA,\n\t39602 - 11905: 0xF362,\n\t39603 - 11905: 0xF363,\n\t39604 - 11905: 0xF364,\n\t39605 - 11905: 0xF365,\n\t39606 - 11905: 0xF7BE,\n\t39607 - 11905: 0xF7BC,\n\t39608 - 11905: 0xBAA1,\n\t39609 - 11905: 0xF366,\n\t39610 - 11905: 0xF7BF,\n\t39611 - 11905: 0xF367,\n\t39612 - 11905: 0xF7C0,\n\t39613 - 11905: 0xF368,\n\t39614 - 11905: 0xF369,\n\t39615 - 11905: 0xF36A,\n\t39616 - 11905: 0xF7C2,\n\t39617 - 11905: 0xF7C1,\n\t39618 - 11905: 0xF7C4,\n\t39619 - 11905: 0xF36B,\n\t39620 - 11905: 0xF36C,\n\t39621 - 11905: 0xF7C3,\n\t39622 - 11905: 0xF36D,\n\t39623 - 11905: 0xF36E,\n\t39624 - 11905: 0xF36F,\n\t39625 - 11905: 0xF370,\n\t39626 - 11905: 0xF371,\n\t39627 - 11905: 0xF7C5,\n\t39628 - 11905: 0xF7C6,\n\t39629 - 11905: 0xF372,\n\t39630 - 11905: 0xF373,\n\t39631 - 11905: 0xF374,\n\t39632 - 11905: 0xF375,\n\t39633 - 11905: 0xF7C7,\n\t39634 - 11905: 0xF376,\n\t39635 - 11905: 0xCBE8,\n\t39636 - 11905: 0xF377,\n\t39637 - 11905: 0xF378,\n\t39638 - 11905: 0xF379,\n\t39639 - 11905: 0xF37A,\n\t39640 - 11905: 0xB8DF,\n\t39641 - 11905: 0xF37B,\n\t39642 - 11905: 0xF37C,\n\t39643 - 11905: 0xF37D,\n\t39644 - 11905: 0xF37E,\n\t39645 - 11905: 0xF380,\n\t39646 - 11905: 0xF381,\n\t39647 - 11905: 0xF7D4,\n\t39648 - 11905: 0xF382,\n\t39649 - 11905: 0xF7D5,\n\t39650 - 11905: 0xF383,\n\t39651 - 11905: 0xF384,\n\t39652 - 11905: 0xF385,\n\t39653 - 11905: 0xF386,\n\t39654 - 11905: 0xF7D6,\n\t39655 - 11905: 0xF387,\n\t39656 - 11905: 0xF388,\n\t39657 - 11905: 0xF389,\n\t39658 - 11905: 0xF38A,\n\t39659 - 11905: 0xF7D8,\n\t39660 - 11905: 0xF38B,\n\t39661 - 11905: 0xF7DA,\n\t39662 - 11905: 0xF38C,\n\t39663 - 11905: 0xF7D7,\n\t39664 - 11905: 0xF38D,\n\t39665 - 11905: 0xF38E,\n\t39666 - 11905: 0xF38F,\n\t39667 - 11905: 0xF390,\n\t39668 - 11905: 0xF391,\n\t39669 - 11905: 0xF392,\n\t39670 - 11905: 0xF393,\n\t39671 - 11905: 0xF394,\n\t39672 - 11905: 0xF395,\n\t39673 - 11905: 0xF7DB,\n\t39674 - 11905: 0xF396,\n\t39675 - 11905: 0xF7D9,\n\t39676 - 11905: 0xF397,\n\t39677 - 11905: 0xF398,\n\t39678 - 11905: 0xF399,\n\t39679 - 11905: 0xF39A,\n\t39680 - 11905: 0xF39B,\n\t39681 - 11905: 0xF39C,\n\t39682 - 11905: 0xF39D,\n\t39683 - 11905: 0xD7D7,\n\t39684 - 11905: 0xF39E,\n\t39685 - 11905: 0xF39F,\n\t39686 - 11905: 0xF3A0,\n\t39687 - 11905: 0xF440,\n\t39688 - 11905: 0xF7DC,\n\t39689 - 11905: 0xF441,\n\t39690 - 11905: 0xF442,\n\t39691 - 11905: 0xF443,\n\t39692 - 11905: 0xF444,\n\t39693 - 11905: 0xF445,\n\t39694 - 11905: 0xF446,\n\t39695 - 11905: 0xF7DD,\n\t39696 - 11905: 0xF447,\n\t39697 - 11905: 0xF448,\n\t39698 - 11905: 0xF449,\n\t39699 - 11905: 0xF7DE,\n\t39700 - 11905: 0xF44A,\n\t39701 - 11905: 0xF44B,\n\t39702 - 11905: 0xF44C,\n\t39703 - 11905: 0xF44D,\n\t39704 - 11905: 0xF44E,\n\t39705 - 11905: 0xF44F,\n\t39706 - 11905: 0xF450,\n\t39707 - 11905: 0xF451,\n\t39708 - 11905: 0xF452,\n\t39709 - 11905: 0xF453,\n\t39710 - 11905: 0xF454,\n\t39711 - 11905: 0xF7DF,\n\t39712 - 11905: 0xF455,\n\t39713 - 11905: 0xF456,\n\t39714 - 11905: 0xF457,\n\t39715 - 11905: 0xF7E0,\n\t39716 - 11905: 0xF458,\n\t39717 - 11905: 0xF459,\n\t39718 - 11905: 0xF45A,\n\t39719 - 11905: 0xF45B,\n\t39720 - 11905: 0xF45C,\n\t39721 - 11905: 0xF45D,\n\t39722 - 11905: 0xF45E,\n\t39723 - 11905: 0xF45F,\n\t39724 - 11905: 0xF460,\n\t39725 - 11905: 0xF461,\n\t39726 - 11905: 0xF462,\n\t39727 - 11905: 0xDBCB,\n\t39728 - 11905: 0xF463,\n\t39729 - 11905: 0xF464,\n\t39730 - 11905: 0xD8AA,\n\t39731 - 11905: 0xF465,\n\t39732 - 11905: 0xF466,\n\t39733 - 11905: 0xF467,\n\t39734 - 11905: 0xF468,\n\t39735 - 11905: 0xF469,\n\t39736 - 11905: 0xF46A,\n\t39737 - 11905: 0xF46B,\n\t39738 - 11905: 0xF46C,\n\t39739 - 11905: 0xE5F7,\n\t39740 - 11905: 0xB9ED,\n\t39741 - 11905: 0xF46D,\n\t39742 - 11905: 0xF46E,\n\t39743 - 11905: 0xF46F,\n\t39744 - 11905: 0xF470,\n\t39745 - 11905: 0xBFFD,\n\t39746 - 11905: 0xBBEA,\n\t39747 - 11905: 0xF7C9,\n\t39748 - 11905: 0xC6C7,\n\t39749 - 11905: 0xF7C8,\n\t39750 - 11905: 0xF471,\n\t39751 - 11905: 0xF7CA,\n\t39752 - 11905: 0xF7CC,\n\t39753 - 11905: 0xF7CB,\n\t39754 - 11905: 0xF472,\n\t39755 - 11905: 0xF473,\n\t39756 - 11905: 0xF474,\n\t39757 - 11905: 0xF7CD,\n\t39758 - 11905: 0xF475,\n\t39759 - 11905: 0xCEBA,\n\t39760 - 11905: 0xF476,\n\t39761 - 11905: 0xF7CE,\n\t39762 - 11905: 0xF477,\n\t39763 - 11905: 0xF478,\n\t39764 - 11905: 0xC4A7,\n\t39765 - 11905: 0xF479,\n\t39766 - 11905: 0xF47A,\n\t39767 - 11905: 0xF47B,\n\t39768 - 11905: 0xF47C,\n\t39769 - 11905: 0xF47D,\n\t39770 - 11905: 0xF47E,\n\t39771 - 11905: 0xF480,\n\t39772 - 11905: 0xF481,\n\t39773 - 11905: 0xF482,\n\t39774 - 11905: 0xF483,\n\t39775 - 11905: 0xF484,\n\t39776 - 11905: 0xF485,\n\t39777 - 11905: 0xF486,\n\t39778 - 11905: 0xF487,\n\t39779 - 11905: 0xF488,\n\t39780 - 11905: 0xF489,\n\t39781 - 11905: 0xF48A,\n\t39782 - 11905: 0xF48B,\n\t39783 - 11905: 0xF48C,\n\t39784 - 11905: 0xF48D,\n\t39785 - 11905: 0xF48E,\n\t39786 - 11905: 0xF48F,\n\t39787 - 11905: 0xF490,\n\t39788 - 11905: 0xF491,\n\t39789 - 11905: 0xF492,\n\t39790 - 11905: 0xF493,\n\t39791 - 11905: 0xF494,\n\t39792 - 11905: 0xF495,\n\t39793 - 11905: 0xF496,\n\t39794 - 11905: 0xF497,\n\t39795 - 11905: 0xF498,\n\t39796 - 11905: 0xF499,\n\t39797 - 11905: 0xF49A,\n\t39798 - 11905: 0xF49B,\n\t39799 - 11905: 0xF49C,\n\t39800 - 11905: 0xF49D,\n\t39801 - 11905: 0xF49E,\n\t39802 - 11905: 0xF49F,\n\t39803 - 11905: 0xF4A0,\n\t39804 - 11905: 0xF540,\n\t39805 - 11905: 0xF541,\n\t39806 - 11905: 0xF542,\n\t39807 - 11905: 0xF543,\n\t39808 - 11905: 0xF544,\n\t39809 - 11905: 0xF545,\n\t39810 - 11905: 0xF546,\n\t39811 - 11905: 0xF547,\n\t39812 - 11905: 0xF548,\n\t39813 - 11905: 0xF549,\n\t39814 - 11905: 0xF54A,\n\t39815 - 11905: 0xF54B,\n\t39816 - 11905: 0xF54C,\n\t39817 - 11905: 0xF54D,\n\t39818 - 11905: 0xF54E,\n\t39819 - 11905: 0xF54F,\n\t39820 - 11905: 0xF550,\n\t39821 - 11905: 0xF551,\n\t39822 - 11905: 0xF552,\n\t39823 - 11905: 0xF553,\n\t39824 - 11905: 0xF554,\n\t39825 - 11905: 0xF555,\n\t39826 - 11905: 0xF556,\n\t39827 - 11905: 0xF557,\n\t39828 - 11905: 0xF558,\n\t39829 - 11905: 0xF559,\n\t39830 - 11905: 0xF55A,\n\t39831 - 11905: 0xF55B,\n\t39832 - 11905: 0xF55C,\n\t39833 - 11905: 0xF55D,\n\t39834 - 11905: 0xF55E,\n\t39835 - 11905: 0xF55F,\n\t39836 - 11905: 0xF560,\n\t39837 - 11905: 0xF561,\n\t39838 - 11905: 0xF562,\n\t39839 - 11905: 0xF563,\n\t39840 - 11905: 0xF564,\n\t39841 - 11905: 0xF565,\n\t39842 - 11905: 0xF566,\n\t39843 - 11905: 0xF567,\n\t39844 - 11905: 0xF568,\n\t39845 - 11905: 0xF569,\n\t39846 - 11905: 0xF56A,\n\t39847 - 11905: 0xF56B,\n\t39848 - 11905: 0xF56C,\n\t39849 - 11905: 0xF56D,\n\t39850 - 11905: 0xF56E,\n\t39851 - 11905: 0xF56F,\n\t39852 - 11905: 0xF570,\n\t39853 - 11905: 0xF571,\n\t39854 - 11905: 0xF572,\n\t39855 - 11905: 0xF573,\n\t39856 - 11905: 0xF574,\n\t39857 - 11905: 0xF575,\n\t39858 - 11905: 0xF576,\n\t39859 - 11905: 0xF577,\n\t39860 - 11905: 0xF578,\n\t39861 - 11905: 0xF579,\n\t39862 - 11905: 0xF57A,\n\t39863 - 11905: 0xF57B,\n\t39864 - 11905: 0xF57C,\n\t39865 - 11905: 0xF57D,\n\t39866 - 11905: 0xF57E,\n\t39867 - 11905: 0xF580,\n\t39868 - 11905: 0xF581,\n\t39869 - 11905: 0xF582,\n\t39870 - 11905: 0xF583,\n\t39871 - 11905: 0xF584,\n\t39872 - 11905: 0xF585,\n\t39873 - 11905: 0xF586,\n\t39874 - 11905: 0xF587,\n\t39875 - 11905: 0xF588,\n\t39876 - 11905: 0xF589,\n\t39877 - 11905: 0xF58A,\n\t39878 - 11905: 0xF58B,\n\t39879 - 11905: 0xF58C,\n\t39880 - 11905: 0xF58D,\n\t39881 - 11905: 0xF58E,\n\t39882 - 11905: 0xF58F,\n\t39883 - 11905: 0xF590,\n\t39884 - 11905: 0xF591,\n\t39885 - 11905: 0xF592,\n\t39886 - 11905: 0xF593,\n\t39887 - 11905: 0xF594,\n\t39888 - 11905: 0xF595,\n\t39889 - 11905: 0xF596,\n\t39890 - 11905: 0xF597,\n\t39891 - 11905: 0xF598,\n\t39892 - 11905: 0xF599,\n\t39893 - 11905: 0xF59A,\n\t39894 - 11905: 0xF59B,\n\t39895 - 11905: 0xF59C,\n\t39896 - 11905: 0xF59D,\n\t39897 - 11905: 0xF59E,\n\t39898 - 11905: 0xF59F,\n\t39899 - 11905: 0xF5A0,\n\t39900 - 11905: 0xF640,\n\t39901 - 11905: 0xF641,\n\t39902 - 11905: 0xF642,\n\t39903 - 11905: 0xF643,\n\t39904 - 11905: 0xF644,\n\t39905 - 11905: 0xF645,\n\t39906 - 11905: 0xF646,\n\t39907 - 11905: 0xF647,\n\t39908 - 11905: 0xF648,\n\t39909 - 11905: 0xF649,\n\t39910 - 11905: 0xF64A,\n\t39911 - 11905: 0xF64B,\n\t39912 - 11905: 0xF64C,\n\t39913 - 11905: 0xF64D,\n\t39914 - 11905: 0xF64E,\n\t39915 - 11905: 0xF64F,\n\t39916 - 11905: 0xF650,\n\t39917 - 11905: 0xF651,\n\t39918 - 11905: 0xF652,\n\t39919 - 11905: 0xF653,\n\t39920 - 11905: 0xF654,\n\t39921 - 11905: 0xF655,\n\t39922 - 11905: 0xF656,\n\t39923 - 11905: 0xF657,\n\t39924 - 11905: 0xF658,\n\t39925 - 11905: 0xF659,\n\t39926 - 11905: 0xF65A,\n\t39927 - 11905: 0xF65B,\n\t39928 - 11905: 0xF65C,\n\t39929 - 11905: 0xF65D,\n\t39930 - 11905: 0xF65E,\n\t39931 - 11905: 0xF65F,\n\t39932 - 11905: 0xF660,\n\t39933 - 11905: 0xF661,\n\t39934 - 11905: 0xF662,\n\t39935 - 11905: 0xF663,\n\t39936 - 11905: 0xF664,\n\t39937 - 11905: 0xF665,\n\t39938 - 11905: 0xF666,\n\t39939 - 11905: 0xF667,\n\t39940 - 11905: 0xF668,\n\t39941 - 11905: 0xF669,\n\t39942 - 11905: 0xF66A,\n\t39943 - 11905: 0xF66B,\n\t39944 - 11905: 0xF66C,\n\t39945 - 11905: 0xF66D,\n\t39946 - 11905: 0xF66E,\n\t39947 - 11905: 0xF66F,\n\t39948 - 11905: 0xF670,\n\t39949 - 11905: 0xF671,\n\t39950 - 11905: 0xF672,\n\t39951 - 11905: 0xF673,\n\t39952 - 11905: 0xF674,\n\t39953 - 11905: 0xF675,\n\t39954 - 11905: 0xF676,\n\t39955 - 11905: 0xF677,\n\t39956 - 11905: 0xF678,\n\t39957 - 11905: 0xF679,\n\t39958 - 11905: 0xF67A,\n\t39959 - 11905: 0xF67B,\n\t39960 - 11905: 0xF67C,\n\t39961 - 11905: 0xF67D,\n\t39962 - 11905: 0xF67E,\n\t39963 - 11905: 0xF680,\n\t39964 - 11905: 0xF681,\n\t39965 - 11905: 0xF682,\n\t39966 - 11905: 0xF683,\n\t39967 - 11905: 0xF684,\n\t39968 - 11905: 0xF685,\n\t39969 - 11905: 0xF686,\n\t39970 - 11905: 0xF687,\n\t39971 - 11905: 0xF688,\n\t39972 - 11905: 0xF689,\n\t39973 - 11905: 0xF68A,\n\t39974 - 11905: 0xF68B,\n\t39975 - 11905: 0xF68C,\n\t39976 - 11905: 0xF68D,\n\t39977 - 11905: 0xF68E,\n\t39978 - 11905: 0xF68F,\n\t39979 - 11905: 0xF690,\n\t39980 - 11905: 0xF691,\n\t39981 - 11905: 0xF692,\n\t39982 - 11905: 0xF693,\n\t39983 - 11905: 0xF694,\n\t39984 - 11905: 0xF695,\n\t39985 - 11905: 0xF696,\n\t39986 - 11905: 0xF697,\n\t39987 - 11905: 0xF698,\n\t39988 - 11905: 0xF699,\n\t39989 - 11905: 0xF69A,\n\t39990 - 11905: 0xF69B,\n\t39991 - 11905: 0xF69C,\n\t39992 - 11905: 0xF69D,\n\t39993 - 11905: 0xF69E,\n\t39994 - 11905: 0xF69F,\n\t39995 - 11905: 0xF6A0,\n\t39996 - 11905: 0xF740,\n\t39997 - 11905: 0xF741,\n\t39998 - 11905: 0xF742,\n\t39999 - 11905: 0xF743,\n\t40000 - 11905: 0xF744,\n\t40001 - 11905: 0xF745,\n\t40002 - 11905: 0xF746,\n\t40003 - 11905: 0xF747,\n\t40004 - 11905: 0xF748,\n\t40005 - 11905: 0xF749,\n\t40006 - 11905: 0xF74A,\n\t40007 - 11905: 0xF74B,\n\t40008 - 11905: 0xF74C,\n\t40009 - 11905: 0xF74D,\n\t40010 - 11905: 0xF74E,\n\t40011 - 11905: 0xF74F,\n\t40012 - 11905: 0xF750,\n\t40013 - 11905: 0xF751,\n\t40014 - 11905: 0xF752,\n\t40015 - 11905: 0xF753,\n\t40016 - 11905: 0xF754,\n\t40017 - 11905: 0xF755,\n\t40018 - 11905: 0xF756,\n\t40019 - 11905: 0xF757,\n\t40020 - 11905: 0xF758,\n\t40021 - 11905: 0xF759,\n\t40022 - 11905: 0xF75A,\n\t40023 - 11905: 0xF75B,\n\t40024 - 11905: 0xF75C,\n\t40025 - 11905: 0xF75D,\n\t40026 - 11905: 0xF75E,\n\t40027 - 11905: 0xF75F,\n\t40028 - 11905: 0xF760,\n\t40029 - 11905: 0xF761,\n\t40030 - 11905: 0xF762,\n\t40031 - 11905: 0xF763,\n\t40032 - 11905: 0xF764,\n\t40033 - 11905: 0xF765,\n\t40034 - 11905: 0xF766,\n\t40035 - 11905: 0xF767,\n\t40036 - 11905: 0xF768,\n\t40037 - 11905: 0xF769,\n\t40038 - 11905: 0xF76A,\n\t40039 - 11905: 0xF76B,\n\t40040 - 11905: 0xF76C,\n\t40041 - 11905: 0xF76D,\n\t40042 - 11905: 0xF76E,\n\t40043 - 11905: 0xF76F,\n\t40044 - 11905: 0xF770,\n\t40045 - 11905: 0xF771,\n\t40046 - 11905: 0xF772,\n\t40047 - 11905: 0xF773,\n\t40048 - 11905: 0xF774,\n\t40049 - 11905: 0xF775,\n\t40050 - 11905: 0xF776,\n\t40051 - 11905: 0xF777,\n\t40052 - 11905: 0xF778,\n\t40053 - 11905: 0xF779,\n\t40054 - 11905: 0xF77A,\n\t40055 - 11905: 0xF77B,\n\t40056 - 11905: 0xF77C,\n\t40057 - 11905: 0xF77D,\n\t40058 - 11905: 0xF77E,\n\t40059 - 11905: 0xF780,\n\t40060 - 11905: 0xD3E3,\n\t40061 - 11905: 0xF781,\n\t40062 - 11905: 0xF782,\n\t40063 - 11905: 0xF6CF,\n\t40064 - 11905: 0xF783,\n\t40065 - 11905: 0xC2B3,\n\t40066 - 11905: 0xF6D0,\n\t40067 - 11905: 0xF784,\n\t40068 - 11905: 0xF785,\n\t40069 - 11905: 0xF6D1,\n\t40070 - 11905: 0xF6D2,\n\t40071 - 11905: 0xF6D3,\n\t40072 - 11905: 0xF6D4,\n\t40073 - 11905: 0xF786,\n\t40074 - 11905: 0xF787,\n\t40075 - 11905: 0xF6D6,\n\t40076 - 11905: 0xF788,\n\t40077 - 11905: 0xB1AB,\n\t40078 - 11905: 0xF6D7,\n\t40079 - 11905: 0xF789,\n\t40080 - 11905: 0xF6D8,\n\t40081 - 11905: 0xF6D9,\n\t40082 - 11905: 0xF6DA,\n\t40083 - 11905: 0xF78A,\n\t40084 - 11905: 0xF6DB,\n\t40085 - 11905: 0xF6DC,\n\t40086 - 11905: 0xF78B,\n\t40087 - 11905: 0xF78C,\n\t40088 - 11905: 0xF78D,\n\t40089 - 11905: 0xF78E,\n\t40090 - 11905: 0xF6DD,\n\t40091 - 11905: 0xF6DE,\n\t40092 - 11905: 0xCFCA,\n\t40093 - 11905: 0xF78F,\n\t40094 - 11905: 0xF6DF,\n\t40095 - 11905: 0xF6E0,\n\t40096 - 11905: 0xF6E1,\n\t40097 - 11905: 0xF6E2,\n\t40098 - 11905: 0xF6E3,\n\t40099 - 11905: 0xF6E4,\n\t40100 - 11905: 0xC0F0,\n\t40101 - 11905: 0xF6E5,\n\t40102 - 11905: 0xF6E6,\n\t40103 - 11905: 0xF6E7,\n\t40104 - 11905: 0xF6E8,\n\t40105 - 11905: 0xF6E9,\n\t40106 - 11905: 0xF790,\n\t40107 - 11905: 0xF6EA,\n\t40108 - 11905: 0xF791,\n\t40109 - 11905: 0xF6EB,\n\t40110 - 11905: 0xF6EC,\n\t40111 - 11905: 0xF792,\n\t40112 - 11905: 0xF6ED,\n\t40113 - 11905: 0xF6EE,\n\t40114 - 11905: 0xF6EF,\n\t40115 - 11905: 0xF6F0,\n\t40116 - 11905: 0xF6F1,\n\t40117 - 11905: 0xF6F2,\n\t40118 - 11905: 0xF6F3,\n\t40119 - 11905: 0xF6F4,\n\t40120 - 11905: 0xBEA8,\n\t40121 - 11905: 0xF793,\n\t40122 - 11905: 0xF6F5,\n\t40123 - 11905: 0xF6F6,\n\t40124 - 11905: 0xF6F7,\n\t40125 - 11905: 0xF6F8,\n\t40126 - 11905: 0xF794,\n\t40127 - 11905: 0xF795,\n\t40128 - 11905: 0xF796,\n\t40129 - 11905: 0xF797,\n\t40130 - 11905: 0xF798,\n\t40131 - 11905: 0xC8FA,\n\t40132 - 11905: 0xF6F9,\n\t40133 - 11905: 0xF6FA,\n\t40134 - 11905: 0xF6FB,\n\t40135 - 11905: 0xF6FC,\n\t40136 - 11905: 0xF799,\n\t40137 - 11905: 0xF79A,\n\t40138 - 11905: 0xF6FD,\n\t40139 - 11905: 0xF6FE,\n\t40140 - 11905: 0xF7A1,\n\t40141 - 11905: 0xF7A2,\n\t40142 - 11905: 0xF7A3,\n\t40143 - 11905: 0xF7A4,\n\t40144 - 11905: 0xF7A5,\n\t40145 - 11905: 0xF79B,\n\t40146 - 11905: 0xF79C,\n\t40147 - 11905: 0xF7A6,\n\t40148 - 11905: 0xF7A7,\n\t40149 - 11905: 0xF7A8,\n\t40150 - 11905: 0xB1EE,\n\t40151 - 11905: 0xF7A9,\n\t40152 - 11905: 0xF7AA,\n\t40153 - 11905: 0xF7AB,\n\t40154 - 11905: 0xF79D,\n\t40155 - 11905: 0xF79E,\n\t40156 - 11905: 0xF7AC,\n\t40157 - 11905: 0xF7AD,\n\t40158 - 11905: 0xC1DB,\n\t40159 - 11905: 0xF7AE,\n\t40160 - 11905: 0xF79F,\n\t40161 - 11905: 0xF7A0,\n\t40162 - 11905: 0xF7AF,\n\t40163 - 11905: 0xF840,\n\t40164 - 11905: 0xF841,\n\t40165 - 11905: 0xF842,\n\t40166 - 11905: 0xF843,\n\t40167 - 11905: 0xF844,\n\t40168 - 11905: 0xF845,\n\t40169 - 11905: 0xF846,\n\t40170 - 11905: 0xF847,\n\t40171 - 11905: 0xF848,\n\t40172 - 11905: 0xF849,\n\t40173 - 11905: 0xF84A,\n\t40174 - 11905: 0xF84B,\n\t40175 - 11905: 0xF84C,\n\t40176 - 11905: 0xF84D,\n\t40177 - 11905: 0xF84E,\n\t40178 - 11905: 0xF84F,\n\t40179 - 11905: 0xF850,\n\t40180 - 11905: 0xF851,\n\t40181 - 11905: 0xF852,\n\t40182 - 11905: 0xF853,\n\t40183 - 11905: 0xF854,\n\t40184 - 11905: 0xF855,\n\t40185 - 11905: 0xF856,\n\t40186 - 11905: 0xF857,\n\t40187 - 11905: 0xF858,\n\t40188 - 11905: 0xF859,\n\t40189 - 11905: 0xF85A,\n\t40190 - 11905: 0xF85B,\n\t40191 - 11905: 0xF85C,\n\t40192 - 11905: 0xF85D,\n\t40193 - 11905: 0xF85E,\n\t40194 - 11905: 0xF85F,\n\t40195 - 11905: 0xF860,\n\t40196 - 11905: 0xF861,\n\t40197 - 11905: 0xF862,\n\t40198 - 11905: 0xF863,\n\t40199 - 11905: 0xF864,\n\t40200 - 11905: 0xF865,\n\t40201 - 11905: 0xF866,\n\t40202 - 11905: 0xF867,\n\t40203 - 11905: 0xF868,\n\t40204 - 11905: 0xF869,\n\t40205 - 11905: 0xF86A,\n\t40206 - 11905: 0xF86B,\n\t40207 - 11905: 0xF86C,\n\t40208 - 11905: 0xF86D,\n\t40209 - 11905: 0xF86E,\n\t40210 - 11905: 0xF86F,\n\t40211 - 11905: 0xF870,\n\t40212 - 11905: 0xF871,\n\t40213 - 11905: 0xF872,\n\t40214 - 11905: 0xF873,\n\t40215 - 11905: 0xF874,\n\t40216 - 11905: 0xF875,\n\t40217 - 11905: 0xF876,\n\t40218 - 11905: 0xF877,\n\t40219 - 11905: 0xF878,\n\t40220 - 11905: 0xF879,\n\t40221 - 11905: 0xF87A,\n\t40222 - 11905: 0xF87B,\n\t40223 - 11905: 0xF87C,\n\t40224 - 11905: 0xF87D,\n\t40225 - 11905: 0xF87E,\n\t40226 - 11905: 0xF880,\n\t40227 - 11905: 0xF881,\n\t40228 - 11905: 0xF882,\n\t40229 - 11905: 0xF883,\n\t40230 - 11905: 0xF884,\n\t40231 - 11905: 0xF885,\n\t40232 - 11905: 0xF886,\n\t40233 - 11905: 0xF887,\n\t40234 - 11905: 0xF888,\n\t40235 - 11905: 0xF889,\n\t40236 - 11905: 0xF88A,\n\t40237 - 11905: 0xF88B,\n\t40238 - 11905: 0xF88C,\n\t40239 - 11905: 0xF88D,\n\t40240 - 11905: 0xF88E,\n\t40241 - 11905: 0xF88F,\n\t40242 - 11905: 0xF890,\n\t40243 - 11905: 0xF891,\n\t40244 - 11905: 0xF892,\n\t40245 - 11905: 0xF893,\n\t40246 - 11905: 0xF894,\n\t40247 - 11905: 0xF895,\n\t40248 - 11905: 0xF896,\n\t40249 - 11905: 0xF897,\n\t40250 - 11905: 0xF898,\n\t40251 - 11905: 0xF899,\n\t40252 - 11905: 0xF89A,\n\t40253 - 11905: 0xF89B,\n\t40254 - 11905: 0xF89C,\n\t40255 - 11905: 0xF89D,\n\t40256 - 11905: 0xF89E,\n\t40257 - 11905: 0xF89F,\n\t40258 - 11905: 0xF8A0,\n\t40259 - 11905: 0xF940,\n\t40260 - 11905: 0xF941,\n\t40261 - 11905: 0xF942,\n\t40262 - 11905: 0xF943,\n\t40263 - 11905: 0xF944,\n\t40264 - 11905: 0xF945,\n\t40265 - 11905: 0xF946,\n\t40266 - 11905: 0xF947,\n\t40267 - 11905: 0xF948,\n\t40268 - 11905: 0xF949,\n\t40269 - 11905: 0xF94A,\n\t40270 - 11905: 0xF94B,\n\t40271 - 11905: 0xF94C,\n\t40272 - 11905: 0xF94D,\n\t40273 - 11905: 0xF94E,\n\t40274 - 11905: 0xF94F,\n\t40275 - 11905: 0xF950,\n\t40276 - 11905: 0xF951,\n\t40277 - 11905: 0xF952,\n\t40278 - 11905: 0xF953,\n\t40279 - 11905: 0xF954,\n\t40280 - 11905: 0xF955,\n\t40281 - 11905: 0xF956,\n\t40282 - 11905: 0xF957,\n\t40283 - 11905: 0xF958,\n\t40284 - 11905: 0xF959,\n\t40285 - 11905: 0xF95A,\n\t40286 - 11905: 0xF95B,\n\t40287 - 11905: 0xF95C,\n\t40288 - 11905: 0xF95D,\n\t40289 - 11905: 0xF95E,\n\t40290 - 11905: 0xF95F,\n\t40291 - 11905: 0xF960,\n\t40292 - 11905: 0xF961,\n\t40293 - 11905: 0xF962,\n\t40294 - 11905: 0xF963,\n\t40295 - 11905: 0xF964,\n\t40296 - 11905: 0xF965,\n\t40297 - 11905: 0xF966,\n\t40298 - 11905: 0xF967,\n\t40299 - 11905: 0xF968,\n\t40300 - 11905: 0xF969,\n\t40301 - 11905: 0xF96A,\n\t40302 - 11905: 0xF96B,\n\t40303 - 11905: 0xF96C,\n\t40304 - 11905: 0xF96D,\n\t40305 - 11905: 0xF96E,\n\t40306 - 11905: 0xF96F,\n\t40307 - 11905: 0xF970,\n\t40308 - 11905: 0xF971,\n\t40309 - 11905: 0xF972,\n\t40310 - 11905: 0xF973,\n\t40311 - 11905: 0xF974,\n\t40312 - 11905: 0xF975,\n\t40313 - 11905: 0xF976,\n\t40314 - 11905: 0xF977,\n\t40315 - 11905: 0xF978,\n\t40316 - 11905: 0xF979,\n\t40317 - 11905: 0xF97A,\n\t40318 - 11905: 0xF97B,\n\t40319 - 11905: 0xF97C,\n\t40320 - 11905: 0xF97D,\n\t40321 - 11905: 0xF97E,\n\t40322 - 11905: 0xF980,\n\t40323 - 11905: 0xF981,\n\t40324 - 11905: 0xF982,\n\t40325 - 11905: 0xF983,\n\t40326 - 11905: 0xF984,\n\t40327 - 11905: 0xF985,\n\t40328 - 11905: 0xF986,\n\t40329 - 11905: 0xF987,\n\t40330 - 11905: 0xF988,\n\t40331 - 11905: 0xF989,\n\t40332 - 11905: 0xF98A,\n\t40333 - 11905: 0xF98B,\n\t40334 - 11905: 0xF98C,\n\t40335 - 11905: 0xF98D,\n\t40336 - 11905: 0xF98E,\n\t40337 - 11905: 0xF98F,\n\t40338 - 11905: 0xF990,\n\t40339 - 11905: 0xF991,\n\t40340 - 11905: 0xF992,\n\t40341 - 11905: 0xF993,\n\t40342 - 11905: 0xF994,\n\t40343 - 11905: 0xF995,\n\t40344 - 11905: 0xF996,\n\t40345 - 11905: 0xF997,\n\t40346 - 11905: 0xF998,\n\t40347 - 11905: 0xF999,\n\t40348 - 11905: 0xF99A,\n\t40349 - 11905: 0xF99B,\n\t40350 - 11905: 0xF99C,\n\t40351 - 11905: 0xF99D,\n\t40352 - 11905: 0xF99E,\n\t40353 - 11905: 0xF99F,\n\t40354 - 11905: 0xF9A0,\n\t40355 - 11905: 0xFA40,\n\t40356 - 11905: 0xFA41,\n\t40357 - 11905: 0xFA42,\n\t40358 - 11905: 0xFA43,\n\t40359 - 11905: 0xFA44,\n\t40360 - 11905: 0xFA45,\n\t40361 - 11905: 0xFA46,\n\t40362 - 11905: 0xFA47,\n\t40363 - 11905: 0xFA48,\n\t40364 - 11905: 0xFA49,\n\t40365 - 11905: 0xFA4A,\n\t40366 - 11905: 0xFA4B,\n\t40367 - 11905: 0xFA4C,\n\t40368 - 11905: 0xFA4D,\n\t40369 - 11905: 0xFA4E,\n\t40370 - 11905: 0xFA4F,\n\t40371 - 11905: 0xFA50,\n\t40372 - 11905: 0xFA51,\n\t40373 - 11905: 0xFA52,\n\t40374 - 11905: 0xFA53,\n\t40375 - 11905: 0xFA54,\n\t40376 - 11905: 0xFA55,\n\t40377 - 11905: 0xFA56,\n\t40378 - 11905: 0xFA57,\n\t40379 - 11905: 0xFA58,\n\t40380 - 11905: 0xFA59,\n\t40381 - 11905: 0xFA5A,\n\t40382 - 11905: 0xFA5B,\n\t40383 - 11905: 0xFA5C,\n\t40384 - 11905: 0xFA5D,\n\t40385 - 11905: 0xFA5E,\n\t40386 - 11905: 0xFA5F,\n\t40387 - 11905: 0xFA60,\n\t40388 - 11905: 0xFA61,\n\t40389 - 11905: 0xFA62,\n\t40390 - 11905: 0xFA63,\n\t40391 - 11905: 0xFA64,\n\t40392 - 11905: 0xFA65,\n\t40393 - 11905: 0xFA66,\n\t40394 - 11905: 0xFA67,\n\t40395 - 11905: 0xFA68,\n\t40396 - 11905: 0xFA69,\n\t40397 - 11905: 0xFA6A,\n\t40398 - 11905: 0xFA6B,\n\t40399 - 11905: 0xFA6C,\n\t40400 - 11905: 0xFA6D,\n\t40401 - 11905: 0xFA6E,\n\t40402 - 11905: 0xFA6F,\n\t40403 - 11905: 0xFA70,\n\t40404 - 11905: 0xFA71,\n\t40405 - 11905: 0xFA72,\n\t40406 - 11905: 0xFA73,\n\t40407 - 11905: 0xFA74,\n\t40408 - 11905: 0xFA75,\n\t40409 - 11905: 0xFA76,\n\t40410 - 11905: 0xFA77,\n\t40411 - 11905: 0xFA78,\n\t40412 - 11905: 0xFA79,\n\t40413 - 11905: 0xFA7A,\n\t40414 - 11905: 0xFA7B,\n\t40415 - 11905: 0xFA7C,\n\t40416 - 11905: 0xFA7D,\n\t40417 - 11905: 0xFA7E,\n\t40418 - 11905: 0xFA80,\n\t40419 - 11905: 0xFA81,\n\t40420 - 11905: 0xFA82,\n\t40421 - 11905: 0xFA83,\n\t40422 - 11905: 0xFA84,\n\t40423 - 11905: 0xFA85,\n\t40424 - 11905: 0xFA86,\n\t40425 - 11905: 0xFA87,\n\t40426 - 11905: 0xFA88,\n\t40427 - 11905: 0xFA89,\n\t40428 - 11905: 0xFA8A,\n\t40429 - 11905: 0xFA8B,\n\t40430 - 11905: 0xFA8C,\n\t40431 - 11905: 0xFA8D,\n\t40432 - 11905: 0xFA8E,\n\t40433 - 11905: 0xFA8F,\n\t40434 - 11905: 0xFA90,\n\t40435 - 11905: 0xFA91,\n\t40436 - 11905: 0xFA92,\n\t40437 - 11905: 0xFA93,\n\t40438 - 11905: 0xFA94,\n\t40439 - 11905: 0xFA95,\n\t40440 - 11905: 0xFA96,\n\t40441 - 11905: 0xFA97,\n\t40442 - 11905: 0xFA98,\n\t40443 - 11905: 0xFA99,\n\t40444 - 11905: 0xFA9A,\n\t40445 - 11905: 0xFA9B,\n\t40446 - 11905: 0xFA9C,\n\t40447 - 11905: 0xFA9D,\n\t40448 - 11905: 0xFA9E,\n\t40449 - 11905: 0xFA9F,\n\t40450 - 11905: 0xFAA0,\n\t40451 - 11905: 0xFB40,\n\t40452 - 11905: 0xFB41,\n\t40453 - 11905: 0xFB42,\n\t40454 - 11905: 0xFB43,\n\t40455 - 11905: 0xFB44,\n\t40456 - 11905: 0xFB45,\n\t40457 - 11905: 0xFB46,\n\t40458 - 11905: 0xFB47,\n\t40459 - 11905: 0xFB48,\n\t40460 - 11905: 0xFB49,\n\t40461 - 11905: 0xFB4A,\n\t40462 - 11905: 0xFB4B,\n\t40463 - 11905: 0xFB4C,\n\t40464 - 11905: 0xFB4D,\n\t40465 - 11905: 0xFB4E,\n\t40466 - 11905: 0xFB4F,\n\t40467 - 11905: 0xFB50,\n\t40468 - 11905: 0xFB51,\n\t40469 - 11905: 0xFB52,\n\t40470 - 11905: 0xFB53,\n\t40471 - 11905: 0xFB54,\n\t40472 - 11905: 0xFB55,\n\t40473 - 11905: 0xFB56,\n\t40474 - 11905: 0xFB57,\n\t40475 - 11905: 0xFB58,\n\t40476 - 11905: 0xFB59,\n\t40477 - 11905: 0xFB5A,\n\t40478 - 11905: 0xFB5B,\n\t40479 - 11905: 0xC4F1,\n\t40480 - 11905: 0xF0AF,\n\t40481 - 11905: 0xBCA6,\n\t40482 - 11905: 0xF0B0,\n\t40483 - 11905: 0xC3F9,\n\t40484 - 11905: 0xFB5C,\n\t40485 - 11905: 0xC5B8,\n\t40486 - 11905: 0xD1BB,\n\t40487 - 11905: 0xFB5D,\n\t40488 - 11905: 0xF0B1,\n\t40489 - 11905: 0xF0B2,\n\t40490 - 11905: 0xF0B3,\n\t40491 - 11905: 0xF0B4,\n\t40492 - 11905: 0xF0B5,\n\t40493 - 11905: 0xD1BC,\n\t40494 - 11905: 0xFB5E,\n\t40495 - 11905: 0xD1EC,\n\t40496 - 11905: 0xFB5F,\n\t40497 - 11905: 0xF0B7,\n\t40498 - 11905: 0xF0B6,\n\t40499 - 11905: 0xD4A7,\n\t40500 - 11905: 0xFB60,\n\t40501 - 11905: 0xCDD2,\n\t40502 - 11905: 0xF0B8,\n\t40503 - 11905: 0xF0BA,\n\t40504 - 11905: 0xF0B9,\n\t40505 - 11905: 0xF0BB,\n\t40506 - 11905: 0xF0BC,\n\t40507 - 11905: 0xFB61,\n\t40508 - 11905: 0xFB62,\n\t40509 - 11905: 0xB8EB,\n\t40510 - 11905: 0xF0BD,\n\t40511 - 11905: 0xBAE8,\n\t40512 - 11905: 0xFB63,\n\t40513 - 11905: 0xF0BE,\n\t40514 - 11905: 0xF0BF,\n\t40515 - 11905: 0xBEE9,\n\t40516 - 11905: 0xF0C0,\n\t40517 - 11905: 0xB6EC,\n\t40518 - 11905: 0xF0C1,\n\t40519 - 11905: 0xF0C2,\n\t40520 - 11905: 0xF0C3,\n\t40521 - 11905: 0xF0C4,\n\t40522 - 11905: 0xC8B5,\n\t40523 - 11905: 0xF0C5,\n\t40524 - 11905: 0xF0C6,\n\t40525 - 11905: 0xFB64,\n\t40526 - 11905: 0xF0C7,\n\t40527 - 11905: 0xC5F4,\n\t40528 - 11905: 0xFB65,\n\t40529 - 11905: 0xF0C8,\n\t40530 - 11905: 0xFB66,\n\t40531 - 11905: 0xFB67,\n\t40532 - 11905: 0xFB68,\n\t40533 - 11905: 0xF0C9,\n\t40534 - 11905: 0xFB69,\n\t40535 - 11905: 0xF0CA,\n\t40536 - 11905: 0xF7BD,\n\t40537 - 11905: 0xFB6A,\n\t40538 - 11905: 0xF0CB,\n\t40539 - 11905: 0xF0CC,\n\t40540 - 11905: 0xF0CD,\n\t40541 - 11905: 0xFB6B,\n\t40542 - 11905: 0xF0CE,\n\t40543 - 11905: 0xFB6C,\n\t40544 - 11905: 0xFB6D,\n\t40545 - 11905: 0xFB6E,\n\t40546 - 11905: 0xFB6F,\n\t40547 - 11905: 0xF0CF,\n\t40548 - 11905: 0xBAD7,\n\t40549 - 11905: 0xFB70,\n\t40550 - 11905: 0xF0D0,\n\t40551 - 11905: 0xF0D1,\n\t40552 - 11905: 0xF0D2,\n\t40553 - 11905: 0xF0D3,\n\t40554 - 11905: 0xF0D4,\n\t40555 - 11905: 0xF0D5,\n\t40556 - 11905: 0xF0D6,\n\t40557 - 11905: 0xF0D8,\n\t40558 - 11905: 0xFB71,\n\t40559 - 11905: 0xFB72,\n\t40560 - 11905: 0xD3A5,\n\t40561 - 11905: 0xF0D7,\n\t40562 - 11905: 0xFB73,\n\t40563 - 11905: 0xF0D9,\n\t40564 - 11905: 0xFB74,\n\t40565 - 11905: 0xFB75,\n\t40566 - 11905: 0xFB76,\n\t40567 - 11905: 0xFB77,\n\t40568 - 11905: 0xFB78,\n\t40569 - 11905: 0xFB79,\n\t40570 - 11905: 0xFB7A,\n\t40571 - 11905: 0xFB7B,\n\t40572 - 11905: 0xFB7C,\n\t40573 - 11905: 0xFB7D,\n\t40574 - 11905: 0xF5BA,\n\t40575 - 11905: 0xC2B9,\n\t40576 - 11905: 0xFB7E,\n\t40577 - 11905: 0xFB80,\n\t40578 - 11905: 0xF7E4,\n\t40579 - 11905: 0xFB81,\n\t40580 - 11905: 0xFB82,\n\t40581 - 11905: 0xFB83,\n\t40582 - 11905: 0xFB84,\n\t40583 - 11905: 0xF7E5,\n\t40584 - 11905: 0xF7E6,\n\t40585 - 11905: 0xFB85,\n\t40586 - 11905: 0xFB86,\n\t40587 - 11905: 0xF7E7,\n\t40588 - 11905: 0xFB87,\n\t40589 - 11905: 0xFB88,\n\t40590 - 11905: 0xFB89,\n\t40591 - 11905: 0xFB8A,\n\t40592 - 11905: 0xFB8B,\n\t40593 - 11905: 0xFB8C,\n\t40594 - 11905: 0xF7E8,\n\t40595 - 11905: 0xC2B4,\n\t40596 - 11905: 0xFB8D,\n\t40597 - 11905: 0xFB8E,\n\t40598 - 11905: 0xFB8F,\n\t40599 - 11905: 0xFB90,\n\t40600 - 11905: 0xFB91,\n\t40601 - 11905: 0xFB92,\n\t40602 - 11905: 0xFB93,\n\t40603 - 11905: 0xFB94,\n\t40604 - 11905: 0xFB95,\n\t40605 - 11905: 0xF7EA,\n\t40606 - 11905: 0xFB96,\n\t40607 - 11905: 0xF7EB,\n\t40608 - 11905: 0xFB97,\n\t40609 - 11905: 0xFB98,\n\t40610 - 11905: 0xFB99,\n\t40611 - 11905: 0xFB9A,\n\t40612 - 11905: 0xFB9B,\n\t40613 - 11905: 0xFB9C,\n\t40614 - 11905: 0xC2F3,\n\t40615 - 11905: 0xFB9D,\n\t40616 - 11905: 0xFB9E,\n\t40617 - 11905: 0xFB9F,\n\t40618 - 11905: 0xFBA0,\n\t40619 - 11905: 0xFC40,\n\t40620 - 11905: 0xFC41,\n\t40621 - 11905: 0xFC42,\n\t40622 - 11905: 0xFC43,\n\t40623 - 11905: 0xFC44,\n\t40624 - 11905: 0xFC45,\n\t40625 - 11905: 0xFC46,\n\t40626 - 11905: 0xFC47,\n\t40627 - 11905: 0xFC48,\n\t40628 - 11905: 0xF4F0,\n\t40629 - 11905: 0xFC49,\n\t40630 - 11905: 0xFC4A,\n\t40631 - 11905: 0xFC4B,\n\t40632 - 11905: 0xF4EF,\n\t40633 - 11905: 0xFC4C,\n\t40634 - 11905: 0xFC4D,\n\t40635 - 11905: 0xC2E9,\n\t40636 - 11905: 0xFC4E,\n\t40637 - 11905: 0xF7E1,\n\t40638 - 11905: 0xF7E2,\n\t40639 - 11905: 0xFC4F,\n\t40640 - 11905: 0xFC50,\n\t40641 - 11905: 0xFC51,\n\t40642 - 11905: 0xFC52,\n\t40643 - 11905: 0xFC53,\n\t40644 - 11905: 0xBBC6,\n\t40645 - 11905: 0xFC54,\n\t40646 - 11905: 0xFC55,\n\t40647 - 11905: 0xFC56,\n\t40648 - 11905: 0xFC57,\n\t40649 - 11905: 0xD9E4,\n\t40650 - 11905: 0xFC58,\n\t40651 - 11905: 0xFC59,\n\t40652 - 11905: 0xFC5A,\n\t40653 - 11905: 0xCAF2,\n\t40654 - 11905: 0xC0E8,\n\t40655 - 11905: 0xF0A4,\n\t40656 - 11905: 0xFC5B,\n\t40657 - 11905: 0xBADA,\n\t40658 - 11905: 0xFC5C,\n\t40659 - 11905: 0xFC5D,\n\t40660 - 11905: 0xC7AD,\n\t40661 - 11905: 0xFC5E,\n\t40662 - 11905: 0xFC5F,\n\t40663 - 11905: 0xFC60,\n\t40664 - 11905: 0xC4AC,\n\t40665 - 11905: 0xFC61,\n\t40666 - 11905: 0xFC62,\n\t40667 - 11905: 0xF7EC,\n\t40668 - 11905: 0xF7ED,\n\t40669 - 11905: 0xF7EE,\n\t40670 - 11905: 0xFC63,\n\t40671 - 11905: 0xF7F0,\n\t40672 - 11905: 0xF7EF,\n\t40673 - 11905: 0xFC64,\n\t40674 - 11905: 0xF7F1,\n\t40675 - 11905: 0xFC65,\n\t40676 - 11905: 0xFC66,\n\t40677 - 11905: 0xF7F4,\n\t40678 - 11905: 0xFC67,\n\t40679 - 11905: 0xF7F3,\n\t40680 - 11905: 0xFC68,\n\t40681 - 11905: 0xF7F2,\n\t40682 - 11905: 0xF7F5,\n\t40683 - 11905: 0xFC69,\n\t40684 - 11905: 0xFC6A,\n\t40685 - 11905: 0xFC6B,\n\t40686 - 11905: 0xFC6C,\n\t40687 - 11905: 0xF7F6,\n\t40688 - 11905: 0xFC6D,\n\t40689 - 11905: 0xFC6E,\n\t40690 - 11905: 0xFC6F,\n\t40691 - 11905: 0xFC70,\n\t40692 - 11905: 0xFC71,\n\t40693 - 11905: 0xFC72,\n\t40694 - 11905: 0xFC73,\n\t40695 - 11905: 0xFC74,\n\t40696 - 11905: 0xFC75,\n\t40697 - 11905: 0xEDE9,\n\t40698 - 11905: 0xFC76,\n\t40699 - 11905: 0xEDEA,\n\t40700 - 11905: 0xEDEB,\n\t40701 - 11905: 0xFC77,\n\t40702 - 11905: 0xF6BC,\n\t40703 - 11905: 0xFC78,\n\t40704 - 11905: 0xFC79,\n\t40705 - 11905: 0xFC7A,\n\t40706 - 11905: 0xFC7B,\n\t40707 - 11905: 0xFC7C,\n\t40708 - 11905: 0xFC7D,\n\t40709 - 11905: 0xFC7E,\n\t40710 - 11905: 0xFC80,\n\t40711 - 11905: 0xFC81,\n\t40712 - 11905: 0xFC82,\n\t40713 - 11905: 0xFC83,\n\t40714 - 11905: 0xFC84,\n\t40715 - 11905: 0xF6BD,\n\t40716 - 11905: 0xFC85,\n\t40717 - 11905: 0xF6BE,\n\t40718 - 11905: 0xB6A6,\n\t40719 - 11905: 0xFC86,\n\t40720 - 11905: 0xD8BE,\n\t40721 - 11905: 0xFC87,\n\t40722 - 11905: 0xFC88,\n\t40723 - 11905: 0xB9C4,\n\t40724 - 11905: 0xFC89,\n\t40725 - 11905: 0xFC8A,\n\t40726 - 11905: 0xFC8B,\n\t40727 - 11905: 0xD8BB,\n\t40728 - 11905: 0xFC8C,\n\t40729 - 11905: 0xDCB1,\n\t40730 - 11905: 0xFC8D,\n\t40731 - 11905: 0xFC8E,\n\t40732 - 11905: 0xFC8F,\n\t40733 - 11905: 0xFC90,\n\t40734 - 11905: 0xFC91,\n\t40735 - 11905: 0xFC92,\n\t40736 - 11905: 0xCAF3,\n\t40737 - 11905: 0xFC93,\n\t40738 - 11905: 0xF7F7,\n\t40739 - 11905: 0xFC94,\n\t40740 - 11905: 0xFC95,\n\t40741 - 11905: 0xFC96,\n\t40742 - 11905: 0xFC97,\n\t40743 - 11905: 0xFC98,\n\t40744 - 11905: 0xFC99,\n\t40745 - 11905: 0xFC9A,\n\t40746 - 11905: 0xFC9B,\n\t40747 - 11905: 0xFC9C,\n\t40748 - 11905: 0xF7F8,\n\t40749 - 11905: 0xFC9D,\n\t40750 - 11905: 0xFC9E,\n\t40751 - 11905: 0xF7F9,\n\t40752 - 11905: 0xFC9F,\n\t40753 - 11905: 0xFCA0,\n\t40754 - 11905: 0xFD40,\n\t40755 - 11905: 0xFD41,\n\t40756 - 11905: 0xFD42,\n\t40757 - 11905: 0xFD43,\n\t40758 - 11905: 0xFD44,\n\t40759 - 11905: 0xF7FB,\n\t40760 - 11905: 0xFD45,\n\t40761 - 11905: 0xF7FA,\n\t40762 - 11905: 0xFD46,\n\t40763 - 11905: 0xB1C7,\n\t40764 - 11905: 0xFD47,\n\t40765 - 11905: 0xF7FC,\n\t40766 - 11905: 0xF7FD,\n\t40767 - 11905: 0xFD48,\n\t40768 - 11905: 0xFD49,\n\t40769 - 11905: 0xFD4A,\n\t40770 - 11905: 0xFD4B,\n\t40771 - 11905: 0xFD4C,\n\t40772 - 11905: 0xF7FE,\n\t40773 - 11905: 0xFD4D,\n\t40774 - 11905: 0xFD4E,\n\t40775 - 11905: 0xFD4F,\n\t40776 - 11905: 0xFD50,\n\t40777 - 11905: 0xFD51,\n\t40778 - 11905: 0xFD52,\n\t40779 - 11905: 0xFD53,\n\t40780 - 11905: 0xFD54,\n\t40781 - 11905: 0xFD55,\n\t40782 - 11905: 0xFD56,\n\t40783 - 11905: 0xFD57,\n\t40784 - 11905: 0xC6EB,\n\t40785 - 11905: 0xECB4,\n\t40786 - 11905: 0xFD58,\n\t40787 - 11905: 0xFD59,\n\t40788 - 11905: 0xFD5A,\n\t40789 - 11905: 0xFD5B,\n\t40790 - 11905: 0xFD5C,\n\t40791 - 11905: 0xFD5D,\n\t40792 - 11905: 0xFD5E,\n\t40793 - 11905: 0xFD5F,\n\t40794 - 11905: 0xFD60,\n\t40795 - 11905: 0xFD61,\n\t40796 - 11905: 0xFD62,\n\t40797 - 11905: 0xFD63,\n\t40798 - 11905: 0xFD64,\n\t40799 - 11905: 0xFD65,\n\t40800 - 11905: 0xFD66,\n\t40801 - 11905: 0xFD67,\n\t40802 - 11905: 0xFD68,\n\t40803 - 11905: 0xFD69,\n\t40804 - 11905: 0xFD6A,\n\t40805 - 11905: 0xFD6B,\n\t40806 - 11905: 0xFD6C,\n\t40807 - 11905: 0xFD6D,\n\t40808 - 11905: 0xFD6E,\n\t40809 - 11905: 0xFD6F,\n\t40810 - 11905: 0xFD70,\n\t40811 - 11905: 0xFD71,\n\t40812 - 11905: 0xFD72,\n\t40813 - 11905: 0xFD73,\n\t40814 - 11905: 0xFD74,\n\t40815 - 11905: 0xFD75,\n\t40816 - 11905: 0xFD76,\n\t40817 - 11905: 0xFD77,\n\t40818 - 11905: 0xFD78,\n\t40819 - 11905: 0xFD79,\n\t40820 - 11905: 0xFD7A,\n\t40821 - 11905: 0xFD7B,\n\t40822 - 11905: 0xFD7C,\n\t40823 - 11905: 0xFD7D,\n\t40824 - 11905: 0xFD7E,\n\t40825 - 11905: 0xFD80,\n\t40826 - 11905: 0xFD81,\n\t40827 - 11905: 0xFD82,\n\t40828 - 11905: 0xFD83,\n\t40829 - 11905: 0xFD84,\n\t40830 - 11905: 0xFD85,\n\t40831 - 11905: 0xB3DD,\n\t40832 - 11905: 0xF6B3,\n\t40833 - 11905: 0xFD86,\n\t40834 - 11905: 0xFD87,\n\t40835 - 11905: 0xF6B4,\n\t40836 - 11905: 0xC1E4,\n\t40837 - 11905: 0xF6B5,\n\t40838 - 11905: 0xF6B6,\n\t40839 - 11905: 0xF6B7,\n\t40840 - 11905: 0xF6B8,\n\t40841 - 11905: 0xF6B9,\n\t40842 - 11905: 0xF6BA,\n\t40843 - 11905: 0xC8A3,\n\t40844 - 11905: 0xF6BB,\n\t40845 - 11905: 0xFD88,\n\t40846 - 11905: 0xFD89,\n\t40847 - 11905: 0xFD8A,\n\t40848 - 11905: 0xFD8B,\n\t40849 - 11905: 0xFD8C,\n\t40850 - 11905: 0xFD8D,\n\t40851 - 11905: 0xFD8E,\n\t40852 - 11905: 0xFD8F,\n\t40853 - 11905: 0xFD90,\n\t40854 - 11905: 0xFD91,\n\t40855 - 11905: 0xFD92,\n\t40856 - 11905: 0xFD93,\n\t40857 - 11905: 0xC1FA,\n\t40858 - 11905: 0xB9A8,\n\t40859 - 11905: 0xEDE8,\n\t40860 - 11905: 0xFD94,\n\t40861 - 11905: 0xFD95,\n\t40862 - 11905: 0xFD96,\n\t40863 - 11905: 0xB9EA,\n\t40864 - 11905: 0xD9DF,\n\t40865 - 11905: 0xFD97,\n\t40866 - 11905: 0xFD98,\n\t40867 - 11905: 0xFD99,\n\t40868 - 11905: 0xFD9A,\n\t40869 - 11905: 0xFD9B,\n}\n\nconst encode1Low, encode1High = 8208, 9795\n\nvar encode1 = [...]uint16{\n\t8208 - 8208: 0xA95C,\n\t8211 - 8208: 0xA843,\n\t8212 - 8208: 0xA1AA,\n\t8213 - 8208: 0xA844,\n\t8214 - 8208: 0xA1AC,\n\t8216 - 8208: 0xA1AE,\n\t8217 - 8208: 0xA1AF,\n\t8220 - 8208: 0xA1B0,\n\t8221 - 8208: 0xA1B1,\n\t8229 - 8208: 0xA845,\n\t8230 - 8208: 0xA1AD,\n\t8240 - 8208: 0xA1EB,\n\t8242 - 8208: 0xA1E4,\n\t8243 - 8208: 0xA1E5,\n\t8245 - 8208: 0xA846,\n\t8251 - 8208: 0xA1F9,\n\t8364 - 8208: 0xA2E3,\n\t8451 - 8208: 0xA1E6,\n\t8453 - 8208: 0xA847,\n\t8457 - 8208: 0xA848,\n\t8470 - 8208: 0xA1ED,\n\t8481 - 8208: 0xA959,\n\t8544 - 8208: 0xA2F1,\n\t8545 - 8208: 0xA2F2,\n\t8546 - 8208: 0xA2F3,\n\t8547 - 8208: 0xA2F4,\n\t8548 - 8208: 0xA2F5,\n\t8549 - 8208: 0xA2F6,\n\t8550 - 8208: 0xA2F7,\n\t8551 - 8208: 0xA2F8,\n\t8552 - 8208: 0xA2F9,\n\t8553 - 8208: 0xA2FA,\n\t8554 - 8208: 0xA2FB,\n\t8555 - 8208: 0xA2FC,\n\t8560 - 8208: 0xA2A1,\n\t8561 - 8208: 0xA2A2,\n\t8562 - 8208: 0xA2A3,\n\t8563 - 8208: 0xA2A4,\n\t8564 - 8208: 0xA2A5,\n\t8565 - 8208: 0xA2A6,\n\t8566 - 8208: 0xA2A7,\n\t8567 - 8208: 0xA2A8,\n\t8568 - 8208: 0xA2A9,\n\t8569 - 8208: 0xA2AA,\n\t8592 - 8208: 0xA1FB,\n\t8593 - 8208: 0xA1FC,\n\t8594 - 8208: 0xA1FA,\n\t8595 - 8208: 0xA1FD,\n\t8598 - 8208: 0xA849,\n\t8599 - 8208: 0xA84A,\n\t8600 - 8208: 0xA84B,\n\t8601 - 8208: 0xA84C,\n\t8712 - 8208: 0xA1CA,\n\t8719 - 8208: 0xA1C7,\n\t8721 - 8208: 0xA1C6,\n\t8725 - 8208: 0xA84D,\n\t8730 - 8208: 0xA1CC,\n\t8733 - 8208: 0xA1D8,\n\t8734 - 8208: 0xA1DE,\n\t8735 - 8208: 0xA84E,\n\t8736 - 8208: 0xA1CF,\n\t8739 - 8208: 0xA84F,\n\t8741 - 8208: 0xA1CE,\n\t8743 - 8208: 0xA1C4,\n\t8744 - 8208: 0xA1C5,\n\t8745 - 8208: 0xA1C9,\n\t8746 - 8208: 0xA1C8,\n\t8747 - 8208: 0xA1D2,\n\t8750 - 8208: 0xA1D3,\n\t8756 - 8208: 0xA1E0,\n\t8757 - 8208: 0xA1DF,\n\t8758 - 8208: 0xA1C3,\n\t8759 - 8208: 0xA1CB,\n\t8765 - 8208: 0xA1D7,\n\t8776 - 8208: 0xA1D6,\n\t8780 - 8208: 0xA1D5,\n\t8786 - 8208: 0xA850,\n\t8800 - 8208: 0xA1D9,\n\t8801 - 8208: 0xA1D4,\n\t8804 - 8208: 0xA1DC,\n\t8805 - 8208: 0xA1DD,\n\t8806 - 8208: 0xA851,\n\t8807 - 8208: 0xA852,\n\t8814 - 8208: 0xA1DA,\n\t8815 - 8208: 0xA1DB,\n\t8853 - 8208: 0xA892,\n\t8857 - 8208: 0xA1D1,\n\t8869 - 8208: 0xA1CD,\n\t8895 - 8208: 0xA853,\n\t8978 - 8208: 0xA1D0,\n\t9312 - 8208: 0xA2D9,\n\t9313 - 8208: 0xA2DA,\n\t9314 - 8208: 0xA2DB,\n\t9315 - 8208: 0xA2DC,\n\t9316 - 8208: 0xA2DD,\n\t9317 - 8208: 0xA2DE,\n\t9318 - 8208: 0xA2DF,\n\t9319 - 8208: 0xA2E0,\n\t9320 - 8208: 0xA2E1,\n\t9321 - 8208: 0xA2E2,\n\t9332 - 8208: 0xA2C5,\n\t9333 - 8208: 0xA2C6,\n\t9334 - 8208: 0xA2C7,\n\t9335 - 8208: 0xA2C8,\n\t9336 - 8208: 0xA2C9,\n\t9337 - 8208: 0xA2CA,\n\t9338 - 8208: 0xA2CB,\n\t9339 - 8208: 0xA2CC,\n\t9340 - 8208: 0xA2CD,\n\t9341 - 8208: 0xA2CE,\n\t9342 - 8208: 0xA2CF,\n\t9343 - 8208: 0xA2D0,\n\t9344 - 8208: 0xA2D1,\n\t9345 - 8208: 0xA2D2,\n\t9346 - 8208: 0xA2D3,\n\t9347 - 8208: 0xA2D4,\n\t9348 - 8208: 0xA2D5,\n\t9349 - 8208: 0xA2D6,\n\t9350 - 8208: 0xA2D7,\n\t9351 - 8208: 0xA2D8,\n\t9352 - 8208: 0xA2B1,\n\t9353 - 8208: 0xA2B2,\n\t9354 - 8208: 0xA2B3,\n\t9355 - 8208: 0xA2B4,\n\t9356 - 8208: 0xA2B5,\n\t9357 - 8208: 0xA2B6,\n\t9358 - 8208: 0xA2B7,\n\t9359 - 8208: 0xA2B8,\n\t9360 - 8208: 0xA2B9,\n\t9361 - 8208: 0xA2BA,\n\t9362 - 8208: 0xA2BB,\n\t9363 - 8208: 0xA2BC,\n\t9364 - 8208: 0xA2BD,\n\t9365 - 8208: 0xA2BE,\n\t9366 - 8208: 0xA2BF,\n\t9367 - 8208: 0xA2C0,\n\t9368 - 8208: 0xA2C1,\n\t9369 - 8208: 0xA2C2,\n\t9370 - 8208: 0xA2C3,\n\t9371 - 8208: 0xA2C4,\n\t9472 - 8208: 0xA9A4,\n\t9473 - 8208: 0xA9A5,\n\t9474 - 8208: 0xA9A6,\n\t9475 - 8208: 0xA9A7,\n\t9476 - 8208: 0xA9A8,\n\t9477 - 8208: 0xA9A9,\n\t9478 - 8208: 0xA9AA,\n\t9479 - 8208: 0xA9AB,\n\t9480 - 8208: 0xA9AC,\n\t9481 - 8208: 0xA9AD,\n\t9482 - 8208: 0xA9AE,\n\t9483 - 8208: 0xA9AF,\n\t9484 - 8208: 0xA9B0,\n\t9485 - 8208: 0xA9B1,\n\t9486 - 8208: 0xA9B2,\n\t9487 - 8208: 0xA9B3,\n\t9488 - 8208: 0xA9B4,\n\t9489 - 8208: 0xA9B5,\n\t9490 - 8208: 0xA9B6,\n\t9491 - 8208: 0xA9B7,\n\t9492 - 8208: 0xA9B8,\n\t9493 - 8208: 0xA9B9,\n\t9494 - 8208: 0xA9BA,\n\t9495 - 8208: 0xA9BB,\n\t9496 - 8208: 0xA9BC,\n\t9497 - 8208: 0xA9BD,\n\t9498 - 8208: 0xA9BE,\n\t9499 - 8208: 0xA9BF,\n\t9500 - 8208: 0xA9C0,\n\t9501 - 8208: 0xA9C1,\n\t9502 - 8208: 0xA9C2,\n\t9503 - 8208: 0xA9C3,\n\t9504 - 8208: 0xA9C4,\n\t9505 - 8208: 0xA9C5,\n\t9506 - 8208: 0xA9C6,\n\t9507 - 8208: 0xA9C7,\n\t9508 - 8208: 0xA9C8,\n\t9509 - 8208: 0xA9C9,\n\t9510 - 8208: 0xA9CA,\n\t9511 - 8208: 0xA9CB,\n\t9512 - 8208: 0xA9CC,\n\t9513 - 8208: 0xA9CD,\n\t9514 - 8208: 0xA9CE,\n\t9515 - 8208: 0xA9CF,\n\t9516 - 8208: 0xA9D0,\n\t9517 - 8208: 0xA9D1,\n\t9518 - 8208: 0xA9D2,\n\t9519 - 8208: 0xA9D3,\n\t9520 - 8208: 0xA9D4,\n\t9521 - 8208: 0xA9D5,\n\t9522 - 8208: 0xA9D6,\n\t9523 - 8208: 0xA9D7,\n\t9524 - 8208: 0xA9D8,\n\t9525 - 8208: 0xA9D9,\n\t9526 - 8208: 0xA9DA,\n\t9527 - 8208: 0xA9DB,\n\t9528 - 8208: 0xA9DC,\n\t9529 - 8208: 0xA9DD,\n\t9530 - 8208: 0xA9DE,\n\t9531 - 8208: 0xA9DF,\n\t9532 - 8208: 0xA9E0,\n\t9533 - 8208: 0xA9E1,\n\t9534 - 8208: 0xA9E2,\n\t9535 - 8208: 0xA9E3,\n\t9536 - 8208: 0xA9E4,\n\t9537 - 8208: 0xA9E5,\n\t9538 - 8208: 0xA9E6,\n\t9539 - 8208: 0xA9E7,\n\t9540 - 8208: 0xA9E8,\n\t9541 - 8208: 0xA9E9,\n\t9542 - 8208: 0xA9EA,\n\t9543 - 8208: 0xA9EB,\n\t9544 - 8208: 0xA9EC,\n\t9545 - 8208: 0xA9ED,\n\t9546 - 8208: 0xA9EE,\n\t9547 - 8208: 0xA9EF,\n\t9552 - 8208: 0xA854,\n\t9553 - 8208: 0xA855,\n\t9554 - 8208: 0xA856,\n\t9555 - 8208: 0xA857,\n\t9556 - 8208: 0xA858,\n\t9557 - 8208: 0xA859,\n\t9558 - 8208: 0xA85A,\n\t9559 - 8208: 0xA85B,\n\t9560 - 8208: 0xA85C,\n\t9561 - 8208: 0xA85D,\n\t9562 - 8208: 0xA85E,\n\t9563 - 8208: 0xA85F,\n\t9564 - 8208: 0xA860,\n\t9565 - 8208: 0xA861,\n\t9566 - 8208: 0xA862,\n\t9567 - 8208: 0xA863,\n\t9568 - 8208: 0xA864,\n\t9569 - 8208: 0xA865,\n\t9570 - 8208: 0xA866,\n\t9571 - 8208: 0xA867,\n\t9572 - 8208: 0xA868,\n\t9573 - 8208: 0xA869,\n\t9574 - 8208: 0xA86A,\n\t9575 - 8208: 0xA86B,\n\t9576 - 8208: 0xA86C,\n\t9577 - 8208: 0xA86D,\n\t9578 - 8208: 0xA86E,\n\t9579 - 8208: 0xA86F,\n\t9580 - 8208: 0xA870,\n\t9581 - 8208: 0xA871,\n\t9582 - 8208: 0xA872,\n\t9583 - 8208: 0xA873,\n\t9584 - 8208: 0xA874,\n\t9585 - 8208: 0xA875,\n\t9586 - 8208: 0xA876,\n\t9587 - 8208: 0xA877,\n\t9601 - 8208: 0xA878,\n\t9602 - 8208: 0xA879,\n\t9603 - 8208: 0xA87A,\n\t9604 - 8208: 0xA87B,\n\t9605 - 8208: 0xA87C,\n\t9606 - 8208: 0xA87D,\n\t9607 - 8208: 0xA87E,\n\t9608 - 8208: 0xA880,\n\t9609 - 8208: 0xA881,\n\t9610 - 8208: 0xA882,\n\t9611 - 8208: 0xA883,\n\t9612 - 8208: 0xA884,\n\t9613 - 8208: 0xA885,\n\t9614 - 8208: 0xA886,\n\t9615 - 8208: 0xA887,\n\t9619 - 8208: 0xA888,\n\t9620 - 8208: 0xA889,\n\t9621 - 8208: 0xA88A,\n\t9632 - 8208: 0xA1F6,\n\t9633 - 8208: 0xA1F5,\n\t9650 - 8208: 0xA1F8,\n\t9651 - 8208: 0xA1F7,\n\t9660 - 8208: 0xA88B,\n\t9661 - 8208: 0xA88C,\n\t9670 - 8208: 0xA1F4,\n\t9671 - 8208: 0xA1F3,\n\t9675 - 8208: 0xA1F0,\n\t9678 - 8208: 0xA1F2,\n\t9679 - 8208: 0xA1F1,\n\t9698 - 8208: 0xA88D,\n\t9699 - 8208: 0xA88E,\n\t9700 - 8208: 0xA88F,\n\t9701 - 8208: 0xA890,\n\t9733 - 8208: 0xA1EF,\n\t9734 - 8208: 0xA1EE,\n\t9737 - 8208: 0xA891,\n\t9792 - 8208: 0xA1E2,\n\t9794 - 8208: 0xA1E1,\n}\n\nconst encode2Low, encode2High = 164, 1106\n\nvar encode2 = [...]uint16{\n\t164 - 164:  0xA1E8,\n\t167 - 164:  0xA1EC,\n\t168 - 164:  0xA1A7,\n\t176 - 164:  0xA1E3,\n\t177 - 164:  0xA1C0,\n\t183 - 164:  0xA1A4,\n\t215 - 164:  0xA1C1,\n\t224 - 164:  0xA8A4,\n\t225 - 164:  0xA8A2,\n\t232 - 164:  0xA8A8,\n\t233 - 164:  0xA8A6,\n\t234 - 164:  0xA8BA,\n\t236 - 164:  0xA8AC,\n\t237 - 164:  0xA8AA,\n\t242 - 164:  0xA8B0,\n\t243 - 164:  0xA8AE,\n\t247 - 164:  0xA1C2,\n\t249 - 164:  0xA8B4,\n\t250 - 164:  0xA8B2,\n\t252 - 164:  0xA8B9,\n\t257 - 164:  0xA8A1,\n\t275 - 164:  0xA8A5,\n\t283 - 164:  0xA8A7,\n\t299 - 164:  0xA8A9,\n\t324 - 164:  0xA8BD,\n\t328 - 164:  0xA8BE,\n\t333 - 164:  0xA8AD,\n\t363 - 164:  0xA8B1,\n\t462 - 164:  0xA8A3,\n\t464 - 164:  0xA8AB,\n\t466 - 164:  0xA8AF,\n\t468 - 164:  0xA8B3,\n\t470 - 164:  0xA8B5,\n\t472 - 164:  0xA8B6,\n\t474 - 164:  0xA8B7,\n\t476 - 164:  0xA8B8,\n\t505 - 164:  0xA8BF,\n\t593 - 164:  0xA8BB,\n\t609 - 164:  0xA8C0,\n\t711 - 164:  0xA1A6,\n\t713 - 164:  0xA1A5,\n\t714 - 164:  0xA840,\n\t715 - 164:  0xA841,\n\t729 - 164:  0xA842,\n\t913 - 164:  0xA6A1,\n\t914 - 164:  0xA6A2,\n\t915 - 164:  0xA6A3,\n\t916 - 164:  0xA6A4,\n\t917 - 164:  0xA6A5,\n\t918 - 164:  0xA6A6,\n\t919 - 164:  0xA6A7,\n\t920 - 164:  0xA6A8,\n\t921 - 164:  0xA6A9,\n\t922 - 164:  0xA6AA,\n\t923 - 164:  0xA6AB,\n\t924 - 164:  0xA6AC,\n\t925 - 164:  0xA6AD,\n\t926 - 164:  0xA6AE,\n\t927 - 164:  0xA6AF,\n\t928 - 164:  0xA6B0,\n\t929 - 164:  0xA6B1,\n\t931 - 164:  0xA6B2,\n\t932 - 164:  0xA6B3,\n\t933 - 164:  0xA6B4,\n\t934 - 164:  0xA6B5,\n\t935 - 164:  0xA6B6,\n\t936 - 164:  0xA6B7,\n\t937 - 164:  0xA6B8,\n\t945 - 164:  0xA6C1,\n\t946 - 164:  0xA6C2,\n\t947 - 164:  0xA6C3,\n\t948 - 164:  0xA6C4,\n\t949 - 164:  0xA6C5,\n\t950 - 164:  0xA6C6,\n\t951 - 164:  0xA6C7,\n\t952 - 164:  0xA6C8,\n\t953 - 164:  0xA6C9,\n\t954 - 164:  0xA6CA,\n\t955 - 164:  0xA6CB,\n\t956 - 164:  0xA6CC,\n\t957 - 164:  0xA6CD,\n\t958 - 164:  0xA6CE,\n\t959 - 164:  0xA6CF,\n\t960 - 164:  0xA6D0,\n\t961 - 164:  0xA6D1,\n\t963 - 164:  0xA6D2,\n\t964 - 164:  0xA6D3,\n\t965 - 164:  0xA6D4,\n\t966 - 164:  0xA6D5,\n\t967 - 164:  0xA6D6,\n\t968 - 164:  0xA6D7,\n\t969 - 164:  0xA6D8,\n\t1025 - 164: 0xA7A7,\n\t1040 - 164: 0xA7A1,\n\t1041 - 164: 0xA7A2,\n\t1042 - 164: 0xA7A3,\n\t1043 - 164: 0xA7A4,\n\t1044 - 164: 0xA7A5,\n\t1045 - 164: 0xA7A6,\n\t1046 - 164: 0xA7A8,\n\t1047 - 164: 0xA7A9,\n\t1048 - 164: 0xA7AA,\n\t1049 - 164: 0xA7AB,\n\t1050 - 164: 0xA7AC,\n\t1051 - 164: 0xA7AD,\n\t1052 - 164: 0xA7AE,\n\t1053 - 164: 0xA7AF,\n\t1054 - 164: 0xA7B0,\n\t1055 - 164: 0xA7B1,\n\t1056 - 164: 0xA7B2,\n\t1057 - 164: 0xA7B3,\n\t1058 - 164: 0xA7B4,\n\t1059 - 164: 0xA7B5,\n\t1060 - 164: 0xA7B6,\n\t1061 - 164: 0xA7B7,\n\t1062 - 164: 0xA7B8,\n\t1063 - 164: 0xA7B9,\n\t1064 - 164: 0xA7BA,\n\t1065 - 164: 0xA7BB,\n\t1066 - 164: 0xA7BC,\n\t1067 - 164: 0xA7BD,\n\t1068 - 164: 0xA7BE,\n\t1069 - 164: 0xA7BF,\n\t1070 - 164: 0xA7C0,\n\t1071 - 164: 0xA7C1,\n\t1072 - 164: 0xA7D1,\n\t1073 - 164: 0xA7D2,\n\t1074 - 164: 0xA7D3,\n\t1075 - 164: 0xA7D4,\n\t1076 - 164: 0xA7D5,\n\t1077 - 164: 0xA7D6,\n\t1078 - 164: 0xA7D8,\n\t1079 - 164: 0xA7D9,\n\t1080 - 164: 0xA7DA,\n\t1081 - 164: 0xA7DB,\n\t1082 - 164: 0xA7DC,\n\t1083 - 164: 0xA7DD,\n\t1084 - 164: 0xA7DE,\n\t1085 - 164: 0xA7DF,\n\t1086 - 164: 0xA7E0,\n\t1087 - 164: 0xA7E1,\n\t1088 - 164: 0xA7E2,\n\t1089 - 164: 0xA7E3,\n\t1090 - 164: 0xA7E4,\n\t1091 - 164: 0xA7E5,\n\t1092 - 164: 0xA7E6,\n\t1093 - 164: 0xA7E7,\n\t1094 - 164: 0xA7E8,\n\t1095 - 164: 0xA7E9,\n\t1096 - 164: 0xA7EA,\n\t1097 - 164: 0xA7EB,\n\t1098 - 164: 0xA7EC,\n\t1099 - 164: 0xA7ED,\n\t1100 - 164: 0xA7EE,\n\t1101 - 164: 0xA7EF,\n\t1102 - 164: 0xA7F0,\n\t1103 - 164: 0xA7F1,\n\t1105 - 164: 0xA7D7,\n}\n\nconst encode3Low, encode3High = 65072, 65510\n\nvar encode3 = [...]uint16{\n\t65072 - 65072: 0xA955,\n\t65073 - 65072: 0xA6F2,\n\t65075 - 65072: 0xA6F4,\n\t65076 - 65072: 0xA6F5,\n\t65077 - 65072: 0xA6E0,\n\t65078 - 65072: 0xA6E1,\n\t65079 - 65072: 0xA6F0,\n\t65080 - 65072: 0xA6F1,\n\t65081 - 65072: 0xA6E2,\n\t65082 - 65072: 0xA6E3,\n\t65083 - 65072: 0xA6EE,\n\t65084 - 65072: 0xA6EF,\n\t65085 - 65072: 0xA6E6,\n\t65086 - 65072: 0xA6E7,\n\t65087 - 65072: 0xA6E4,\n\t65088 - 65072: 0xA6E5,\n\t65089 - 65072: 0xA6E8,\n\t65090 - 65072: 0xA6E9,\n\t65091 - 65072: 0xA6EA,\n\t65092 - 65072: 0xA6EB,\n\t65097 - 65072: 0xA968,\n\t65098 - 65072: 0xA969,\n\t65099 - 65072: 0xA96A,\n\t65100 - 65072: 0xA96B,\n\t65101 - 65072: 0xA96C,\n\t65102 - 65072: 0xA96D,\n\t65103 - 65072: 0xA96E,\n\t65104 - 65072: 0xA96F,\n\t65105 - 65072: 0xA970,\n\t65106 - 65072: 0xA971,\n\t65108 - 65072: 0xA972,\n\t65109 - 65072: 0xA973,\n\t65110 - 65072: 0xA974,\n\t65111 - 65072: 0xA975,\n\t65113 - 65072: 0xA976,\n\t65114 - 65072: 0xA977,\n\t65115 - 65072: 0xA978,\n\t65116 - 65072: 0xA979,\n\t65117 - 65072: 0xA97A,\n\t65118 - 65072: 0xA97B,\n\t65119 - 65072: 0xA97C,\n\t65120 - 65072: 0xA97D,\n\t65121 - 65072: 0xA97E,\n\t65122 - 65072: 0xA980,\n\t65123 - 65072: 0xA981,\n\t65124 - 65072: 0xA982,\n\t65125 - 65072: 0xA983,\n\t65126 - 65072: 0xA984,\n\t65128 - 65072: 0xA985,\n\t65129 - 65072: 0xA986,\n\t65130 - 65072: 0xA987,\n\t65131 - 65072: 0xA988,\n\t65281 - 65072: 0xA3A1,\n\t65282 - 65072: 0xA3A2,\n\t65283 - 65072: 0xA3A3,\n\t65284 - 65072: 0xA1E7,\n\t65285 - 65072: 0xA3A5,\n\t65286 - 65072: 0xA3A6,\n\t65287 - 65072: 0xA3A7,\n\t65288 - 65072: 0xA3A8,\n\t65289 - 65072: 0xA3A9,\n\t65290 - 65072: 0xA3AA,\n\t65291 - 65072: 0xA3AB,\n\t65292 - 65072: 0xA3AC,\n\t65293 - 65072: 0xA3AD,\n\t65294 - 65072: 0xA3AE,\n\t65295 - 65072: 0xA3AF,\n\t65296 - 65072: 0xA3B0,\n\t65297 - 65072: 0xA3B1,\n\t65298 - 65072: 0xA3B2,\n\t65299 - 65072: 0xA3B3,\n\t65300 - 65072: 0xA3B4,\n\t65301 - 65072: 0xA3B5,\n\t65302 - 65072: 0xA3B6,\n\t65303 - 65072: 0xA3B7,\n\t65304 - 65072: 0xA3B8,\n\t65305 - 65072: 0xA3B9,\n\t65306 - 65072: 0xA3BA,\n\t65307 - 65072: 0xA3BB,\n\t65308 - 65072: 0xA3BC,\n\t65309 - 65072: 0xA3BD,\n\t65310 - 65072: 0xA3BE,\n\t65311 - 65072: 0xA3BF,\n\t65312 - 65072: 0xA3C0,\n\t65313 - 65072: 0xA3C1,\n\t65314 - 65072: 0xA3C2,\n\t65315 - 65072: 0xA3C3,\n\t65316 - 65072: 0xA3C4,\n\t65317 - 65072: 0xA3C5,\n\t65318 - 65072: 0xA3C6,\n\t65319 - 65072: 0xA3C7,\n\t65320 - 65072: 0xA3C8,\n\t65321 - 65072: 0xA3C9,\n\t65322 - 65072: 0xA3CA,\n\t65323 - 65072: 0xA3CB,\n\t65324 - 65072: 0xA3CC,\n\t65325 - 65072: 0xA3CD,\n\t65326 - 65072: 0xA3CE,\n\t65327 - 65072: 0xA3CF,\n\t65328 - 65072: 0xA3D0,\n\t65329 - 65072: 0xA3D1,\n\t65330 - 65072: 0xA3D2,\n\t65331 - 65072: 0xA3D3,\n\t65332 - 65072: 0xA3D4,\n\t65333 - 65072: 0xA3D5,\n\t65334 - 65072: 0xA3D6,\n\t65335 - 65072: 0xA3D7,\n\t65336 - 65072: 0xA3D8,\n\t65337 - 65072: 0xA3D9,\n\t65338 - 65072: 0xA3DA,\n\t65339 - 65072: 0xA3DB,\n\t65340 - 65072: 0xA3DC,\n\t65341 - 65072: 0xA3DD,\n\t65342 - 65072: 0xA3DE,\n\t65343 - 65072: 0xA3DF,\n\t65344 - 65072: 0xA3E0,\n\t65345 - 65072: 0xA3E1,\n\t65346 - 65072: 0xA3E2,\n\t65347 - 65072: 0xA3E3,\n\t65348 - 65072: 0xA3E4,\n\t65349 - 65072: 0xA3E5,\n\t65350 - 65072: 0xA3E6,\n\t65351 - 65072: 0xA3E7,\n\t65352 - 65072: 0xA3E8,\n\t65353 - 65072: 0xA3E9,\n\t65354 - 65072: 0xA3EA,\n\t65355 - 65072: 0xA3EB,\n\t65356 - 65072: 0xA3EC,\n\t65357 - 65072: 0xA3ED,\n\t65358 - 65072: 0xA3EE,\n\t65359 - 65072: 0xA3EF,\n\t65360 - 65072: 0xA3F0,\n\t65361 - 65072: 0xA3F1,\n\t65362 - 65072: 0xA3F2,\n\t65363 - 65072: 0xA3F3,\n\t65364 - 65072: 0xA3F4,\n\t65365 - 65072: 0xA3F5,\n\t65366 - 65072: 0xA3F6,\n\t65367 - 65072: 0xA3F7,\n\t65368 - 65072: 0xA3F8,\n\t65369 - 65072: 0xA3F9,\n\t65370 - 65072: 0xA3FA,\n\t65371 - 65072: 0xA3FB,\n\t65372 - 65072: 0xA3FC,\n\t65373 - 65072: 0xA3FD,\n\t65374 - 65072: 0xA1AB,\n\t65504 - 65072: 0xA1E9,\n\t65505 - 65072: 0xA1EA,\n\t65506 - 65072: 0xA956,\n\t65507 - 65072: 0xA3FE,\n\t65508 - 65072: 0xA957,\n\t65509 - 65072: 0xA3A4,\n}\n\nconst encode4Low, encode4High = 63788, 64042\n\nvar encode4 = [...]uint16{\n\t63788 - 63788: 0xFD9C,\n\t63865 - 63788: 0xFD9D,\n\t63893 - 63788: 0xFD9E,\n\t63975 - 63788: 0xFD9F,\n\t63985 - 63788: 0xFDA0,\n\t64012 - 63788: 0xFE40,\n\t64013 - 63788: 0xFE41,\n\t64014 - 63788: 0xFE42,\n\t64015 - 63788: 0xFE43,\n\t64017 - 63788: 0xFE44,\n\t64019 - 63788: 0xFE45,\n\t64020 - 63788: 0xFE46,\n\t64024 - 63788: 0xFE47,\n\t64031 - 63788: 0xFE48,\n\t64032 - 63788: 0xFE49,\n\t64033 - 63788: 0xFE4A,\n\t64035 - 63788: 0xFE4B,\n\t64036 - 63788: 0xFE4C,\n\t64039 - 63788: 0xFE4D,\n\t64040 - 63788: 0xFE4E,\n\t64041 - 63788: 0xFE4F,\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/traditionalchinese/big5.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage traditionalchinese\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/transform\"\n)\n\n// All is a list of all defined encodings in this package.\nvar All = []encoding.Encoding{Big5}\n\n// Big5 is the Big5 encoding, also known as Code Page 950.\nvar Big5 encoding.Encoding = &big5\n\nvar big5 = internal.Encoding{\n\t&internal.SimpleEncoding{big5Decoder{}, big5Encoder{}},\n\t\"Big5\",\n\tidentifier.Big5,\n}\n\ntype big5Decoder struct{ transform.NopResetter }\n\nfunc (big5Decoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size, s := rune(0), 0, \"\"\nloop:\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tswitch c0 := src[nSrc]; {\n\t\tcase c0 < utf8.RuneSelf:\n\t\t\tr, size = rune(c0), 1\n\n\t\tcase 0x81 <= c0 && c0 < 0xff:\n\t\t\tif nSrc+1 >= len(src) {\n\t\t\t\tif !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak loop\n\t\t\t\t}\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tc1 := src[nSrc+1]\n\t\t\tswitch {\n\t\t\tcase 0x40 <= c1 && c1 < 0x7f:\n\t\t\t\tc1 -= 0x40\n\t\t\tcase 0xa1 <= c1 && c1 < 0xff:\n\t\t\t\tc1 -= 0x62\n\t\t\tcase c1 < 0x40:\n\t\t\t\tr, size = utf8.RuneError, 1\n\t\t\t\tgoto write\n\t\t\tdefault:\n\t\t\t\tr, size = utf8.RuneError, 2\n\t\t\t\tgoto write\n\t\t\t}\n\t\t\tr, size = '\\ufffd', 2\n\t\t\tif i := int(c0-0x81)*157 + int(c1); i < len(decode) {\n\t\t\t\tif 1133 <= i && i < 1167 {\n\t\t\t\t\t// The two-rune special cases for LATIN CAPITAL / SMALL E WITH CIRCUMFLEX\n\t\t\t\t\t// AND MACRON / CARON are from http://encoding.spec.whatwg.org/#big5\n\t\t\t\t\tswitch i {\n\t\t\t\t\tcase 1133:\n\t\t\t\t\t\ts = \"\\u00CA\\u0304\"\n\t\t\t\t\t\tgoto writeStr\n\t\t\t\t\tcase 1135:\n\t\t\t\t\t\ts = \"\\u00CA\\u030C\"\n\t\t\t\t\t\tgoto writeStr\n\t\t\t\t\tcase 1164:\n\t\t\t\t\t\ts = \"\\u00EA\\u0304\"\n\t\t\t\t\t\tgoto writeStr\n\t\t\t\t\tcase 1166:\n\t\t\t\t\t\ts = \"\\u00EA\\u030C\"\n\t\t\t\t\t\tgoto writeStr\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tr = rune(decode[i])\n\t\t\t\tif r == 0 {\n\t\t\t\t\tr = '\\ufffd'\n\t\t\t\t}\n\t\t\t}\n\n\t\tdefault:\n\t\t\tr, size = utf8.RuneError, 1\n\t\t}\n\n\twrite:\n\t\tif nDst+utf8.RuneLen(r) > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak loop\n\t\t}\n\t\tnDst += utf8.EncodeRune(dst[nDst:], r)\n\t\tcontinue loop\n\n\twriteStr:\n\t\tif nDst+len(s) > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak loop\n\t\t}\n\t\tnDst += copy(dst[nDst:], s)\n\t\tcontinue loop\n\t}\n\treturn nDst, nSrc, err\n}\n\ntype big5Encoder struct{ transform.NopResetter }\n\nfunc (big5Encoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tr, size := rune(0), 0\n\tfor ; nSrc < len(src); nSrc += size {\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tsize = 1\n\t\t\tif nDst >= len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[nDst] = uint8(r)\n\t\t\tnDst++\n\t\t\tcontinue\n\n\t\t} else {\n\t\t\t// Decode a multi-byte rune.\n\t\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\t\tif size == 1 {\n\t\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t\t// full character yet.\n\t\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif r >= utf8.RuneSelf {\n\t\t\t// func init checks that the switch covers all tables.\n\t\t\tswitch {\n\t\t\tcase encode0Low <= r && r < encode0High:\n\t\t\t\tif r = rune(encode0[r-encode0Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode1Low <= r && r < encode1High:\n\t\t\t\tif r = rune(encode1[r-encode1Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode2Low <= r && r < encode2High:\n\t\t\t\tif r = rune(encode2[r-encode2Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode3Low <= r && r < encode3High:\n\t\t\t\tif r = rune(encode3[r-encode3Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode4Low <= r && r < encode4High:\n\t\t\t\tif r = rune(encode4[r-encode4Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode5Low <= r && r < encode5High:\n\t\t\t\tif r = rune(encode5[r-encode5Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode6Low <= r && r < encode6High:\n\t\t\t\tif r = rune(encode6[r-encode6Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\tcase encode7Low <= r && r < encode7High:\n\t\t\t\tif r = rune(encode7[r-encode7Low]); r != 0 {\n\t\t\t\t\tgoto write2\n\t\t\t\t}\n\t\t\t}\n\t\t\terr = internal.ErrASCIIReplacement\n\t\t\tbreak\n\t\t}\n\n\twrite2:\n\t\tif nDst+2 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst+0] = uint8(r >> 8)\n\t\tdst[nDst+1] = uint8(r)\n\t\tnDst += 2\n\t\tcontinue\n\t}\n\treturn nDst, nSrc, err\n}\n\nfunc init() {\n\t// Check that the hard-coded encode switch covers all tables.\n\tif numEncodeTables != 8 {\n\t\tpanic(\"bad numEncodeTables\")\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/traditionalchinese/tables.go",
    "content": "// generated by go run maketables.go; DO NOT EDIT\n\n// Package traditionalchinese provides Traditional Chinese encodings such as Big5.\npackage traditionalchinese // import \"golang.org/x/text/encoding/traditionalchinese\"\n\n// decode is the decoding table from Big5 code to Unicode.\n// It is defined at http://encoding.spec.whatwg.org/index-big5.txt\nvar decode = [...]uint32{\n\t942:   0x000043F0,\n\t943:   0x00004C32,\n\t944:   0x00004603,\n\t945:   0x000045A6,\n\t946:   0x00004578,\n\t947:   0x00027267,\n\t948:   0x00004D77,\n\t949:   0x000045B3,\n\t950:   0x00027CB1,\n\t951:   0x00004CE2,\n\t952:   0x00027CC5,\n\t953:   0x00003B95,\n\t954:   0x00004736,\n\t955:   0x00004744,\n\t956:   0x00004C47,\n\t957:   0x00004C40,\n\t958:   0x000242BF,\n\t959:   0x00023617,\n\t960:   0x00027352,\n\t961:   0x00026E8B,\n\t962:   0x000270D2,\n\t963:   0x00004C57,\n\t964:   0x0002A351,\n\t965:   0x0000474F,\n\t966:   0x000045DA,\n\t967:   0x00004C85,\n\t968:   0x00027C6C,\n\t969:   0x00004D07,\n\t970:   0x00004AA4,\n\t971:   0x000046A1,\n\t972:   0x00026B23,\n\t973:   0x00007225,\n\t974:   0x00025A54,\n\t975:   0x00021A63,\n\t976:   0x00023E06,\n\t977:   0x00023F61,\n\t978:   0x0000664D,\n\t979:   0x000056FB,\n\t981:   0x00007D95,\n\t982:   0x0000591D,\n\t983:   0x00028BB9,\n\t984:   0x00003DF4,\n\t985:   0x00009734,\n\t986:   0x00027BEF,\n\t987:   0x00005BDB,\n\t988:   0x00021D5E,\n\t989:   0x00005AA4,\n\t990:   0x00003625,\n\t991:   0x00029EB0,\n\t992:   0x00005AD1,\n\t993:   0x00005BB7,\n\t994:   0x00005CFC,\n\t995:   0x0000676E,\n\t996:   0x00008593,\n\t997:   0x00029945,\n\t998:   0x00007461,\n\t999:   0x0000749D,\n\t1000:  0x00003875,\n\t1001:  0x00021D53,\n\t1002:  0x0002369E,\n\t1003:  0x00026021,\n\t1004:  0x00003EEC,\n\t1005:  0x000258DE,\n\t1006:  0x00003AF5,\n\t1007:  0x00007AFC,\n\t1008:  0x00009F97,\n\t1009:  0x00024161,\n\t1010:  0x0002890D,\n\t1011:  0x000231EA,\n\t1012:  0x00020A8A,\n\t1013:  0x0002325E,\n\t1014:  0x0000430A,\n\t1015:  0x00008484,\n\t1016:  0x00009F96,\n\t1017:  0x0000942F,\n\t1018:  0x00004930,\n\t1019:  0x00008613,\n\t1020:  0x00005896,\n\t1021:  0x0000974A,\n\t1022:  0x00009218,\n\t1023:  0x000079D0,\n\t1024:  0x00007A32,\n\t1025:  0x00006660,\n\t1026:  0x00006A29,\n\t1027:  0x0000889D,\n\t1028:  0x0000744C,\n\t1029:  0x00007BC5,\n\t1030:  0x00006782,\n\t1031:  0x00007A2C,\n\t1032:  0x0000524F,\n\t1033:  0x00009046,\n\t1034:  0x000034E6,\n\t1035:  0x000073C4,\n\t1036:  0x00025DB9,\n\t1037:  0x000074C6,\n\t1038:  0x00009FC7,\n\t1039:  0x000057B3,\n\t1040:  0x0000492F,\n\t1041:  0x0000544C,\n\t1042:  0x00004131,\n\t1043:  0x0002368E,\n\t1044:  0x00005818,\n\t1045:  0x00007A72,\n\t1046:  0x00027B65,\n\t1047:  0x00008B8F,\n\t1048:  0x000046AE,\n\t1049:  0x00026E88,\n\t1050:  0x00004181,\n\t1051:  0x00025D99,\n\t1052:  0x00007BAE,\n\t1053:  0x000224BC,\n\t1054:  0x00009FC8,\n\t1055:  0x000224C1,\n\t1056:  0x000224C9,\n\t1057:  0x000224CC,\n\t1058:  0x00009FC9,\n\t1059:  0x00008504,\n\t1060:  0x000235BB,\n\t1061:  0x000040B4,\n\t1062:  0x00009FCA,\n\t1063:  0x000044E1,\n\t1064:  0x0002ADFF,\n\t1065:  0x000062C1,\n\t1066:  0x0000706E,\n\t1067:  0x00009FCB,\n\t1099:  0x000031C0,\n\t1100:  0x000031C1,\n\t1101:  0x000031C2,\n\t1102:  0x000031C3,\n\t1103:  0x000031C4,\n\t1104:  0x0002010C,\n\t1105:  0x000031C5,\n\t1106:  0x000200D1,\n\t1107:  0x000200CD,\n\t1108:  0x000031C6,\n\t1109:  0x000031C7,\n\t1110:  0x000200CB,\n\t1111:  0x00021FE8,\n\t1112:  0x000031C8,\n\t1113:  0x000200CA,\n\t1114:  0x000031C9,\n\t1115:  0x000031CA,\n\t1116:  0x000031CB,\n\t1117:  0x000031CC,\n\t1118:  0x0002010E,\n\t1119:  0x000031CD,\n\t1120:  0x000031CE,\n\t1121:  0x00000100,\n\t1122:  0x000000C1,\n\t1123:  0x000001CD,\n\t1124:  0x000000C0,\n\t1125:  0x00000112,\n\t1126:  0x000000C9,\n\t1127:  0x0000011A,\n\t1128:  0x000000C8,\n\t1129:  0x0000014C,\n\t1130:  0x000000D3,\n\t1131:  0x000001D1,\n\t1132:  0x000000D2,\n\t1134:  0x00001EBE,\n\t1136:  0x00001EC0,\n\t1137:  0x000000CA,\n\t1138:  0x00000101,\n\t1139:  0x000000E1,\n\t1140:  0x000001CE,\n\t1141:  0x000000E0,\n\t1142:  0x00000251,\n\t1143:  0x00000113,\n\t1144:  0x000000E9,\n\t1145:  0x0000011B,\n\t1146:  0x000000E8,\n\t1147:  0x0000012B,\n\t1148:  0x000000ED,\n\t1149:  0x000001D0,\n\t1150:  0x000000EC,\n\t1151:  0x0000014D,\n\t1152:  0x000000F3,\n\t1153:  0x000001D2,\n\t1154:  0x000000F2,\n\t1155:  0x0000016B,\n\t1156:  0x000000FA,\n\t1157:  0x000001D4,\n\t1158:  0x000000F9,\n\t1159:  0x000001D6,\n\t1160:  0x000001D8,\n\t1161:  0x000001DA,\n\t1162:  0x000001DC,\n\t1163:  0x000000FC,\n\t1165:  0x00001EBF,\n\t1167:  0x00001EC1,\n\t1168:  0x000000EA,\n\t1169:  0x00000261,\n\t1170:  0x000023DA,\n\t1171:  0x000023DB,\n\t1256:  0x0002A3A9,\n\t1257:  0x00021145,\n\t1259:  0x0000650A,\n\t1262:  0x00004E3D,\n\t1263:  0x00006EDD,\n\t1264:  0x00009D4E,\n\t1265:  0x000091DF,\n\t1268:  0x00027735,\n\t1269:  0x00006491,\n\t1270:  0x00004F1A,\n\t1271:  0x00004F28,\n\t1272:  0x00004FA8,\n\t1273:  0x00005156,\n\t1274:  0x00005174,\n\t1275:  0x0000519C,\n\t1276:  0x000051E4,\n\t1277:  0x000052A1,\n\t1278:  0x000052A8,\n\t1279:  0x0000533B,\n\t1280:  0x0000534E,\n\t1281:  0x000053D1,\n\t1282:  0x000053D8,\n\t1283:  0x000056E2,\n\t1284:  0x000058F0,\n\t1285:  0x00005904,\n\t1286:  0x00005907,\n\t1287:  0x00005932,\n\t1288:  0x00005934,\n\t1289:  0x00005B66,\n\t1290:  0x00005B9E,\n\t1291:  0x00005B9F,\n\t1292:  0x00005C9A,\n\t1293:  0x00005E86,\n\t1294:  0x0000603B,\n\t1295:  0x00006589,\n\t1296:  0x000067FE,\n\t1297:  0x00006804,\n\t1298:  0x00006865,\n\t1299:  0x00006D4E,\n\t1300:  0x000070BC,\n\t1301:  0x00007535,\n\t1302:  0x00007EA4,\n\t1303:  0x00007EAC,\n\t1304:  0x00007EBA,\n\t1305:  0x00007EC7,\n\t1306:  0x00007ECF,\n\t1307:  0x00007EDF,\n\t1308:  0x00007F06,\n\t1309:  0x00007F37,\n\t1310:  0x0000827A,\n\t1311:  0x000082CF,\n\t1312:  0x0000836F,\n\t1313:  0x000089C6,\n\t1314:  0x00008BBE,\n\t1315:  0x00008BE2,\n\t1316:  0x00008F66,\n\t1317:  0x00008F67,\n\t1318:  0x00008F6E,\n\t1319:  0x00007411,\n\t1320:  0x00007CFC,\n\t1321:  0x00007DCD,\n\t1322:  0x00006946,\n\t1323:  0x00007AC9,\n\t1324:  0x00005227,\n\t1329:  0x0000918C,\n\t1330:  0x000078B8,\n\t1331:  0x0000915E,\n\t1332:  0x000080BC,\n\t1334:  0x00008D0B,\n\t1335:  0x000080F6,\n\t1336:  0x000209E7,\n\t1339:  0x0000809F,\n\t1340:  0x00009EC7,\n\t1341:  0x00004CCD,\n\t1342:  0x00009DC9,\n\t1343:  0x00009E0C,\n\t1344:  0x00004C3E,\n\t1345:  0x00029DF6,\n\t1346:  0x0002700E,\n\t1347:  0x00009E0A,\n\t1348:  0x0002A133,\n\t1349:  0x000035C1,\n\t1351:  0x00006E9A,\n\t1352:  0x0000823E,\n\t1353:  0x00007519,\n\t1355:  0x00004911,\n\t1356:  0x00009A6C,\n\t1357:  0x00009A8F,\n\t1358:  0x00009F99,\n\t1359:  0x00007987,\n\t1360:  0x0002846C,\n\t1361:  0x00021DCA,\n\t1362:  0x000205D0,\n\t1363:  0x00022AE6,\n\t1364:  0x00004E24,\n\t1365:  0x00004E81,\n\t1366:  0x00004E80,\n\t1367:  0x00004E87,\n\t1368:  0x00004EBF,\n\t1369:  0x00004EEB,\n\t1370:  0x00004F37,\n\t1371:  0x0000344C,\n\t1372:  0x00004FBD,\n\t1373:  0x00003E48,\n\t1374:  0x00005003,\n\t1375:  0x00005088,\n\t1376:  0x0000347D,\n\t1377:  0x00003493,\n\t1378:  0x000034A5,\n\t1379:  0x00005186,\n\t1380:  0x00005905,\n\t1381:  0x000051DB,\n\t1382:  0x000051FC,\n\t1383:  0x00005205,\n\t1384:  0x00004E89,\n\t1385:  0x00005279,\n\t1386:  0x00005290,\n\t1387:  0x00005327,\n\t1388:  0x000035C7,\n\t1389:  0x000053A9,\n\t1390:  0x00003551,\n\t1391:  0x000053B0,\n\t1392:  0x00003553,\n\t1393:  0x000053C2,\n\t1394:  0x00005423,\n\t1395:  0x0000356D,\n\t1396:  0x00003572,\n\t1397:  0x00003681,\n\t1398:  0x00005493,\n\t1399:  0x000054A3,\n\t1400:  0x000054B4,\n\t1401:  0x000054B9,\n\t1402:  0x000054D0,\n\t1403:  0x000054EF,\n\t1404:  0x00005518,\n\t1405:  0x00005523,\n\t1406:  0x00005528,\n\t1407:  0x00003598,\n\t1408:  0x0000553F,\n\t1409:  0x000035A5,\n\t1410:  0x000035BF,\n\t1411:  0x000055D7,\n\t1412:  0x000035C5,\n\t1413:  0x00027D84,\n\t1414:  0x00005525,\n\t1416:  0x00020C42,\n\t1417:  0x00020D15,\n\t1418:  0x0002512B,\n\t1419:  0x00005590,\n\t1420:  0x00022CC6,\n\t1421:  0x000039EC,\n\t1422:  0x00020341,\n\t1423:  0x00008E46,\n\t1424:  0x00024DB8,\n\t1425:  0x000294E5,\n\t1426:  0x00004053,\n\t1427:  0x000280BE,\n\t1428:  0x0000777A,\n\t1429:  0x00022C38,\n\t1430:  0x00003A34,\n\t1431:  0x000047D5,\n\t1432:  0x0002815D,\n\t1433:  0x000269F2,\n\t1434:  0x00024DEA,\n\t1435:  0x000064DD,\n\t1436:  0x00020D7C,\n\t1437:  0x00020FB4,\n\t1438:  0x00020CD5,\n\t1439:  0x000210F4,\n\t1440:  0x0000648D,\n\t1441:  0x00008E7E,\n\t1442:  0x00020E96,\n\t1443:  0x00020C0B,\n\t1444:  0x00020F64,\n\t1445:  0x00022CA9,\n\t1446:  0x00028256,\n\t1447:  0x000244D3,\n\t1449:  0x00020D46,\n\t1450:  0x00029A4D,\n\t1451:  0x000280E9,\n\t1452:  0x000047F4,\n\t1453:  0x00024EA7,\n\t1454:  0x00022CC2,\n\t1455:  0x00009AB2,\n\t1456:  0x00003A67,\n\t1457:  0x000295F4,\n\t1458:  0x00003FED,\n\t1459:  0x00003506,\n\t1460:  0x000252C7,\n\t1461:  0x000297D4,\n\t1462:  0x000278C8,\n\t1463:  0x00022D44,\n\t1464:  0x00009D6E,\n\t1465:  0x00009815,\n\t1467:  0x000043D9,\n\t1468:  0x000260A5,\n\t1469:  0x000064B4,\n\t1470:  0x000054E3,\n\t1471:  0x00022D4C,\n\t1472:  0x00022BCA,\n\t1473:  0x00021077,\n\t1474:  0x000039FB,\n\t1475:  0x0002106F,\n\t1476:  0x000266DA,\n\t1477:  0x00026716,\n\t1478:  0x000279A0,\n\t1479:  0x000064EA,\n\t1480:  0x00025052,\n\t1481:  0x00020C43,\n\t1482:  0x00008E68,\n\t1483:  0x000221A1,\n\t1484:  0x00028B4C,\n\t1485:  0x00020731,\n\t1487:  0x0000480B,\n\t1488:  0x000201A9,\n\t1489:  0x00003FFA,\n\t1490:  0x00005873,\n\t1491:  0x00022D8D,\n\t1493:  0x000245C8,\n\t1494:  0x000204FC,\n\t1495:  0x00026097,\n\t1496:  0x00020F4C,\n\t1497:  0x00020D96,\n\t1498:  0x00005579,\n\t1499:  0x000040BB,\n\t1500:  0x000043BA,\n\t1502:  0x00004AB4,\n\t1503:  0x00022A66,\n\t1504:  0x0002109D,\n\t1505:  0x000081AA,\n\t1506:  0x000098F5,\n\t1507:  0x00020D9C,\n\t1508:  0x00006379,\n\t1509:  0x000039FE,\n\t1510:  0x00022775,\n\t1511:  0x00008DC0,\n\t1512:  0x000056A1,\n\t1513:  0x0000647C,\n\t1514:  0x00003E43,\n\t1516:  0x0002A601,\n\t1517:  0x00020E09,\n\t1518:  0x00022ACF,\n\t1519:  0x00022CC9,\n\t1521:  0x000210C8,\n\t1522:  0x000239C2,\n\t1523:  0x00003992,\n\t1524:  0x00003A06,\n\t1525:  0x0002829B,\n\t1526:  0x00003578,\n\t1527:  0x00025E49,\n\t1528:  0x000220C7,\n\t1529:  0x00005652,\n\t1530:  0x00020F31,\n\t1531:  0x00022CB2,\n\t1532:  0x00029720,\n\t1533:  0x000034BC,\n\t1534:  0x00006C3D,\n\t1535:  0x00024E3B,\n\t1538:  0x00027574,\n\t1539:  0x00022E8B,\n\t1540:  0x00022208,\n\t1541:  0x0002A65B,\n\t1542:  0x00028CCD,\n\t1543:  0x00020E7A,\n\t1544:  0x00020C34,\n\t1545:  0x0002681C,\n\t1546:  0x00007F93,\n\t1547:  0x000210CF,\n\t1548:  0x00022803,\n\t1549:  0x00022939,\n\t1550:  0x000035FB,\n\t1551:  0x000251E3,\n\t1552:  0x00020E8C,\n\t1553:  0x00020F8D,\n\t1554:  0x00020EAA,\n\t1555:  0x00003F93,\n\t1556:  0x00020F30,\n\t1557:  0x00020D47,\n\t1558:  0x0002114F,\n\t1559:  0x00020E4C,\n\t1561:  0x00020EAB,\n\t1562:  0x00020BA9,\n\t1563:  0x00020D48,\n\t1564:  0x000210C0,\n\t1565:  0x0002113D,\n\t1566:  0x00003FF9,\n\t1567:  0x00022696,\n\t1568:  0x00006432,\n\t1569:  0x00020FAD,\n\t1570:  0x000233F4,\n\t1571:  0x00027639,\n\t1572:  0x00022BCE,\n\t1573:  0x00020D7E,\n\t1574:  0x00020D7F,\n\t1575:  0x00022C51,\n\t1576:  0x00022C55,\n\t1577:  0x00003A18,\n\t1578:  0x00020E98,\n\t1579:  0x000210C7,\n\t1580:  0x00020F2E,\n\t1581:  0x0002A632,\n\t1582:  0x00026B50,\n\t1583:  0x00028CD2,\n\t1584:  0x00028D99,\n\t1585:  0x00028CCA,\n\t1586:  0x000095AA,\n\t1587:  0x000054CC,\n\t1588:  0x000082C4,\n\t1589:  0x000055B9,\n\t1591:  0x00029EC3,\n\t1592:  0x00009C26,\n\t1593:  0x00009AB6,\n\t1594:  0x0002775E,\n\t1595:  0x00022DEE,\n\t1596:  0x00007140,\n\t1597:  0x0000816D,\n\t1598:  0x000080EC,\n\t1599:  0x00005C1C,\n\t1600:  0x00026572,\n\t1601:  0x00008134,\n\t1602:  0x00003797,\n\t1603:  0x0000535F,\n\t1604:  0x000280BD,\n\t1605:  0x000091B6,\n\t1606:  0x00020EFA,\n\t1607:  0x00020E0F,\n\t1608:  0x00020E77,\n\t1609:  0x00020EFB,\n\t1610:  0x000035DD,\n\t1611:  0x00024DEB,\n\t1612:  0x00003609,\n\t1613:  0x00020CD6,\n\t1614:  0x000056AF,\n\t1615:  0x000227B5,\n\t1616:  0x000210C9,\n\t1617:  0x00020E10,\n\t1618:  0x00020E78,\n\t1619:  0x00021078,\n\t1620:  0x00021148,\n\t1621:  0x00028207,\n\t1622:  0x00021455,\n\t1623:  0x00020E79,\n\t1624:  0x00024E50,\n\t1625:  0x00022DA4,\n\t1626:  0x00005A54,\n\t1627:  0x0002101D,\n\t1628:  0x0002101E,\n\t1629:  0x000210F5,\n\t1630:  0x000210F6,\n\t1631:  0x0000579C,\n\t1632:  0x00020E11,\n\t1633:  0x00027694,\n\t1634:  0x000282CD,\n\t1635:  0x00020FB5,\n\t1636:  0x00020E7B,\n\t1637:  0x0002517E,\n\t1638:  0x00003703,\n\t1639:  0x00020FB6,\n\t1640:  0x00021180,\n\t1641:  0x000252D8,\n\t1642:  0x0002A2BD,\n\t1643:  0x000249DA,\n\t1644:  0x0002183A,\n\t1645:  0x00024177,\n\t1646:  0x0002827C,\n\t1647:  0x00005899,\n\t1648:  0x00005268,\n\t1649:  0x0000361A,\n\t1650:  0x0002573D,\n\t1651:  0x00007BB2,\n\t1652:  0x00005B68,\n\t1653:  0x00004800,\n\t1654:  0x00004B2C,\n\t1655:  0x00009F27,\n\t1656:  0x000049E7,\n\t1657:  0x00009C1F,\n\t1658:  0x00009B8D,\n\t1659:  0x00025B74,\n\t1660:  0x0002313D,\n\t1661:  0x000055FB,\n\t1662:  0x000035F2,\n\t1663:  0x00005689,\n\t1664:  0x00004E28,\n\t1665:  0x00005902,\n\t1666:  0x00021BC1,\n\t1667:  0x0002F878,\n\t1668:  0x00009751,\n\t1669:  0x00020086,\n\t1670:  0x00004E5B,\n\t1671:  0x00004EBB,\n\t1672:  0x0000353E,\n\t1673:  0x00005C23,\n\t1674:  0x00005F51,\n\t1675:  0x00005FC4,\n\t1676:  0x000038FA,\n\t1677:  0x0000624C,\n\t1678:  0x00006535,\n\t1679:  0x00006B7A,\n\t1680:  0x00006C35,\n\t1681:  0x00006C3A,\n\t1682:  0x0000706C,\n\t1683:  0x0000722B,\n\t1684:  0x00004E2C,\n\t1685:  0x000072AD,\n\t1686:  0x000248E9,\n\t1687:  0x00007F52,\n\t1688:  0x0000793B,\n\t1689:  0x00007CF9,\n\t1690:  0x00007F53,\n\t1691:  0x0002626A,\n\t1692:  0x000034C1,\n\t1694:  0x0002634B,\n\t1695:  0x00008002,\n\t1696:  0x00008080,\n\t1697:  0x00026612,\n\t1698:  0x00026951,\n\t1699:  0x0000535D,\n\t1700:  0x00008864,\n\t1701:  0x000089C1,\n\t1702:  0x000278B2,\n\t1703:  0x00008BA0,\n\t1704:  0x00008D1D,\n\t1705:  0x00009485,\n\t1706:  0x00009578,\n\t1707:  0x0000957F,\n\t1708:  0x000095E8,\n\t1709:  0x00028E0F,\n\t1710:  0x000097E6,\n\t1711:  0x00009875,\n\t1712:  0x000098CE,\n\t1713:  0x000098DE,\n\t1714:  0x00009963,\n\t1715:  0x00029810,\n\t1716:  0x00009C7C,\n\t1717:  0x00009E1F,\n\t1718:  0x00009EC4,\n\t1719:  0x00006B6F,\n\t1720:  0x0000F907,\n\t1721:  0x00004E37,\n\t1722:  0x00020087,\n\t1723:  0x0000961D,\n\t1724:  0x00006237,\n\t1725:  0x000094A2,\n\t1727:  0x0000503B,\n\t1728:  0x00006DFE,\n\t1729:  0x00029C73,\n\t1730:  0x00009FA6,\n\t1731:  0x00003DC9,\n\t1732:  0x0000888F,\n\t1733:  0x0002414E,\n\t1734:  0x00007077,\n\t1735:  0x00005CF5,\n\t1736:  0x00004B20,\n\t1737:  0x000251CD,\n\t1738:  0x00003559,\n\t1739:  0x00025D30,\n\t1740:  0x00006122,\n\t1741:  0x00028A32,\n\t1742:  0x00008FA7,\n\t1743:  0x000091F6,\n\t1744:  0x00007191,\n\t1745:  0x00006719,\n\t1746:  0x000073BA,\n\t1747:  0x00023281,\n\t1748:  0x0002A107,\n\t1749:  0x00003C8B,\n\t1750:  0x00021980,\n\t1751:  0x00004B10,\n\t1752:  0x000078E4,\n\t1753:  0x00007402,\n\t1754:  0x000051AE,\n\t1755:  0x0002870F,\n\t1756:  0x00004009,\n\t1757:  0x00006A63,\n\t1758:  0x0002A2BA,\n\t1759:  0x00004223,\n\t1760:  0x0000860F,\n\t1761:  0x00020A6F,\n\t1762:  0x00007A2A,\n\t1763:  0x00029947,\n\t1764:  0x00028AEA,\n\t1765:  0x00009755,\n\t1766:  0x0000704D,\n\t1767:  0x00005324,\n\t1768:  0x0002207E,\n\t1769:  0x000093F4,\n\t1770:  0x000076D9,\n\t1771:  0x000289E3,\n\t1772:  0x00009FA7,\n\t1773:  0x000077DD,\n\t1774:  0x00004EA3,\n\t1775:  0x00004FF0,\n\t1776:  0x000050BC,\n\t1777:  0x00004E2F,\n\t1778:  0x00004F17,\n\t1779:  0x00009FA8,\n\t1780:  0x00005434,\n\t1781:  0x00007D8B,\n\t1782:  0x00005892,\n\t1783:  0x000058D0,\n\t1784:  0x00021DB6,\n\t1785:  0x00005E92,\n\t1786:  0x00005E99,\n\t1787:  0x00005FC2,\n\t1788:  0x00022712,\n\t1789:  0x0000658B,\n\t1790:  0x000233F9,\n\t1791:  0x00006919,\n\t1792:  0x00006A43,\n\t1793:  0x00023C63,\n\t1794:  0x00006CFF,\n\t1796:  0x00007200,\n\t1797:  0x00024505,\n\t1798:  0x0000738C,\n\t1799:  0x00003EDB,\n\t1800:  0x00024A13,\n\t1801:  0x00005B15,\n\t1802:  0x000074B9,\n\t1803:  0x00008B83,\n\t1804:  0x00025CA4,\n\t1805:  0x00025695,\n\t1806:  0x00007A93,\n\t1807:  0x00007BEC,\n\t1808:  0x00007CC3,\n\t1809:  0x00007E6C,\n\t1810:  0x000082F8,\n\t1811:  0x00008597,\n\t1812:  0x00009FA9,\n\t1813:  0x00008890,\n\t1814:  0x00009FAA,\n\t1815:  0x00008EB9,\n\t1816:  0x00009FAB,\n\t1817:  0x00008FCF,\n\t1818:  0x0000855F,\n\t1819:  0x000099E0,\n\t1820:  0x00009221,\n\t1821:  0x00009FAC,\n\t1822:  0x00028DB9,\n\t1823:  0x0002143F,\n\t1824:  0x00004071,\n\t1825:  0x000042A2,\n\t1826:  0x00005A1A,\n\t1830:  0x00009868,\n\t1831:  0x0000676B,\n\t1832:  0x00004276,\n\t1833:  0x0000573D,\n\t1835:  0x000085D6,\n\t1836:  0x0002497B,\n\t1837:  0x000082BF,\n\t1838:  0x0002710D,\n\t1839:  0x00004C81,\n\t1840:  0x00026D74,\n\t1841:  0x00005D7B,\n\t1842:  0x00026B15,\n\t1843:  0x00026FBE,\n\t1844:  0x00009FAD,\n\t1845:  0x00009FAE,\n\t1846:  0x00005B96,\n\t1847:  0x00009FAF,\n\t1848:  0x000066E7,\n\t1849:  0x00007E5B,\n\t1850:  0x00006E57,\n\t1851:  0x000079CA,\n\t1852:  0x00003D88,\n\t1853:  0x000044C3,\n\t1854:  0x00023256,\n\t1855:  0x00022796,\n\t1856:  0x0000439A,\n\t1857:  0x00004536,\n\t1859:  0x00005CD5,\n\t1860:  0x00023B1A,\n\t1861:  0x00008AF9,\n\t1862:  0x00005C78,\n\t1863:  0x00003D12,\n\t1864:  0x00023551,\n\t1865:  0x00005D78,\n\t1866:  0x00009FB2,\n\t1867:  0x00007157,\n\t1868:  0x00004558,\n\t1869:  0x000240EC,\n\t1870:  0x00021E23,\n\t1871:  0x00004C77,\n\t1872:  0x00003978,\n\t1873:  0x0000344A,\n\t1874:  0x000201A4,\n\t1875:  0x00026C41,\n\t1876:  0x00008ACC,\n\t1877:  0x00004FB4,\n\t1878:  0x00020239,\n\t1879:  0x000059BF,\n\t1880:  0x0000816C,\n\t1881:  0x00009856,\n\t1882:  0x000298FA,\n\t1883:  0x00005F3B,\n\t1884:  0x00020B9F,\n\t1886:  0x000221C1,\n\t1887:  0x0002896D,\n\t1888:  0x00004102,\n\t1889:  0x000046BB,\n\t1890:  0x00029079,\n\t1891:  0x00003F07,\n\t1892:  0x00009FB3,\n\t1893:  0x0002A1B5,\n\t1894:  0x000040F8,\n\t1895:  0x000037D6,\n\t1896:  0x000046F7,\n\t1897:  0x00026C46,\n\t1898:  0x0000417C,\n\t1899:  0x000286B2,\n\t1900:  0x000273FF,\n\t1901:  0x0000456D,\n\t1902:  0x000038D4,\n\t1903:  0x0002549A,\n\t1904:  0x00004561,\n\t1905:  0x0000451B,\n\t1906:  0x00004D89,\n\t1907:  0x00004C7B,\n\t1908:  0x00004D76,\n\t1909:  0x000045EA,\n\t1910:  0x00003FC8,\n\t1911:  0x00024B0F,\n\t1912:  0x00003661,\n\t1913:  0x000044DE,\n\t1914:  0x000044BD,\n\t1915:  0x000041ED,\n\t1916:  0x00005D3E,\n\t1917:  0x00005D48,\n\t1918:  0x00005D56,\n\t1919:  0x00003DFC,\n\t1920:  0x0000380F,\n\t1921:  0x00005DA4,\n\t1922:  0x00005DB9,\n\t1923:  0x00003820,\n\t1924:  0x00003838,\n\t1925:  0x00005E42,\n\t1926:  0x00005EBD,\n\t1927:  0x00005F25,\n\t1928:  0x00005F83,\n\t1929:  0x00003908,\n\t1930:  0x00003914,\n\t1931:  0x0000393F,\n\t1932:  0x0000394D,\n\t1933:  0x000060D7,\n\t1934:  0x0000613D,\n\t1935:  0x00005CE5,\n\t1936:  0x00003989,\n\t1937:  0x000061B7,\n\t1938:  0x000061B9,\n\t1939:  0x000061CF,\n\t1940:  0x000039B8,\n\t1941:  0x0000622C,\n\t1942:  0x00006290,\n\t1943:  0x000062E5,\n\t1944:  0x00006318,\n\t1945:  0x000039F8,\n\t1946:  0x000056B1,\n\t1947:  0x00003A03,\n\t1948:  0x000063E2,\n\t1949:  0x000063FB,\n\t1950:  0x00006407,\n\t1951:  0x0000645A,\n\t1952:  0x00003A4B,\n\t1953:  0x000064C0,\n\t1954:  0x00005D15,\n\t1955:  0x00005621,\n\t1956:  0x00009F9F,\n\t1957:  0x00003A97,\n\t1958:  0x00006586,\n\t1959:  0x00003ABD,\n\t1960:  0x000065FF,\n\t1961:  0x00006653,\n\t1962:  0x00003AF2,\n\t1963:  0x00006692,\n\t1964:  0x00003B22,\n\t1965:  0x00006716,\n\t1966:  0x00003B42,\n\t1967:  0x000067A4,\n\t1968:  0x00006800,\n\t1969:  0x00003B58,\n\t1970:  0x0000684A,\n\t1971:  0x00006884,\n\t1972:  0x00003B72,\n\t1973:  0x00003B71,\n\t1974:  0x00003B7B,\n\t1975:  0x00006909,\n\t1976:  0x00006943,\n\t1977:  0x0000725C,\n\t1978:  0x00006964,\n\t1979:  0x0000699F,\n\t1980:  0x00006985,\n\t1981:  0x00003BBC,\n\t1982:  0x000069D6,\n\t1983:  0x00003BDD,\n\t1984:  0x00006A65,\n\t1985:  0x00006A74,\n\t1986:  0x00006A71,\n\t1987:  0x00006A82,\n\t1988:  0x00003BEC,\n\t1989:  0x00006A99,\n\t1990:  0x00003BF2,\n\t1991:  0x00006AAB,\n\t1992:  0x00006AB5,\n\t1993:  0x00006AD4,\n\t1994:  0x00006AF6,\n\t1995:  0x00006B81,\n\t1996:  0x00006BC1,\n\t1997:  0x00006BEA,\n\t1998:  0x00006C75,\n\t1999:  0x00006CAA,\n\t2000:  0x00003CCB,\n\t2001:  0x00006D02,\n\t2002:  0x00006D06,\n\t2003:  0x00006D26,\n\t2004:  0x00006D81,\n\t2005:  0x00003CEF,\n\t2006:  0x00006DA4,\n\t2007:  0x00006DB1,\n\t2008:  0x00006E15,\n\t2009:  0x00006E18,\n\t2010:  0x00006E29,\n\t2011:  0x00006E86,\n\t2012:  0x000289C0,\n\t2013:  0x00006EBB,\n\t2014:  0x00006EE2,\n\t2015:  0x00006EDA,\n\t2016:  0x00009F7F,\n\t2017:  0x00006EE8,\n\t2018:  0x00006EE9,\n\t2019:  0x00006F24,\n\t2020:  0x00006F34,\n\t2021:  0x00003D46,\n\t2022:  0x00023F41,\n\t2023:  0x00006F81,\n\t2024:  0x00006FBE,\n\t2025:  0x00003D6A,\n\t2026:  0x00003D75,\n\t2027:  0x000071B7,\n\t2028:  0x00005C99,\n\t2029:  0x00003D8A,\n\t2030:  0x0000702C,\n\t2031:  0x00003D91,\n\t2032:  0x00007050,\n\t2033:  0x00007054,\n\t2034:  0x0000706F,\n\t2035:  0x0000707F,\n\t2036:  0x00007089,\n\t2037:  0x00020325,\n\t2038:  0x000043C1,\n\t2039:  0x000035F1,\n\t2040:  0x00020ED8,\n\t2041:  0x00023ED7,\n\t2042:  0x000057BE,\n\t2043:  0x00026ED3,\n\t2044:  0x0000713E,\n\t2045:  0x000257E0,\n\t2046:  0x0000364E,\n\t2047:  0x000069A2,\n\t2048:  0x00028BE9,\n\t2049:  0x00005B74,\n\t2050:  0x00007A49,\n\t2051:  0x000258E1,\n\t2052:  0x000294D9,\n\t2053:  0x00007A65,\n\t2054:  0x00007A7D,\n\t2055:  0x000259AC,\n\t2056:  0x00007ABB,\n\t2057:  0x00007AB0,\n\t2058:  0x00007AC2,\n\t2059:  0x00007AC3,\n\t2060:  0x000071D1,\n\t2061:  0x0002648D,\n\t2062:  0x000041CA,\n\t2063:  0x00007ADA,\n\t2064:  0x00007ADD,\n\t2065:  0x00007AEA,\n\t2066:  0x000041EF,\n\t2067:  0x000054B2,\n\t2068:  0x00025C01,\n\t2069:  0x00007B0B,\n\t2070:  0x00007B55,\n\t2071:  0x00007B29,\n\t2072:  0x0002530E,\n\t2073:  0x00025CFE,\n\t2074:  0x00007BA2,\n\t2075:  0x00007B6F,\n\t2076:  0x0000839C,\n\t2077:  0x00025BB4,\n\t2078:  0x00026C7F,\n\t2079:  0x00007BD0,\n\t2080:  0x00008421,\n\t2081:  0x00007B92,\n\t2082:  0x00007BB8,\n\t2083:  0x00025D20,\n\t2084:  0x00003DAD,\n\t2085:  0x00025C65,\n\t2086:  0x00008492,\n\t2087:  0x00007BFA,\n\t2088:  0x00007C06,\n\t2089:  0x00007C35,\n\t2090:  0x00025CC1,\n\t2091:  0x00007C44,\n\t2092:  0x00007C83,\n\t2093:  0x00024882,\n\t2094:  0x00007CA6,\n\t2095:  0x0000667D,\n\t2096:  0x00024578,\n\t2097:  0x00007CC9,\n\t2098:  0x00007CC7,\n\t2099:  0x00007CE6,\n\t2100:  0x00007C74,\n\t2101:  0x00007CF3,\n\t2102:  0x00007CF5,\n\t2103:  0x00007CCE,\n\t2104:  0x00007E67,\n\t2105:  0x0000451D,\n\t2106:  0x00026E44,\n\t2107:  0x00007D5D,\n\t2108:  0x00026ED6,\n\t2109:  0x0000748D,\n\t2110:  0x00007D89,\n\t2111:  0x00007DAB,\n\t2112:  0x00007135,\n\t2113:  0x00007DB3,\n\t2114:  0x00007DD2,\n\t2115:  0x00024057,\n\t2116:  0x00026029,\n\t2117:  0x00007DE4,\n\t2118:  0x00003D13,\n\t2119:  0x00007DF5,\n\t2120:  0x000217F9,\n\t2121:  0x00007DE5,\n\t2122:  0x0002836D,\n\t2123:  0x00007E1D,\n\t2124:  0x00026121,\n\t2125:  0x0002615A,\n\t2126:  0x00007E6E,\n\t2127:  0x00007E92,\n\t2128:  0x0000432B,\n\t2129:  0x0000946C,\n\t2130:  0x00007E27,\n\t2131:  0x00007F40,\n\t2132:  0x00007F41,\n\t2133:  0x00007F47,\n\t2134:  0x00007936,\n\t2135:  0x000262D0,\n\t2136:  0x000099E1,\n\t2137:  0x00007F97,\n\t2138:  0x00026351,\n\t2139:  0x00007FA3,\n\t2140:  0x00021661,\n\t2141:  0x00020068,\n\t2142:  0x0000455C,\n\t2143:  0x00023766,\n\t2144:  0x00004503,\n\t2145:  0x0002833A,\n\t2146:  0x00007FFA,\n\t2147:  0x00026489,\n\t2148:  0x00008005,\n\t2149:  0x00008008,\n\t2150:  0x0000801D,\n\t2151:  0x00008028,\n\t2152:  0x0000802F,\n\t2153:  0x0002A087,\n\t2154:  0x00026CC3,\n\t2155:  0x0000803B,\n\t2156:  0x0000803C,\n\t2157:  0x00008061,\n\t2158:  0x00022714,\n\t2159:  0x00004989,\n\t2160:  0x00026626,\n\t2161:  0x00023DE3,\n\t2162:  0x000266E8,\n\t2163:  0x00006725,\n\t2164:  0x000080A7,\n\t2165:  0x00028A48,\n\t2166:  0x00008107,\n\t2167:  0x0000811A,\n\t2168:  0x000058B0,\n\t2169:  0x000226F6,\n\t2170:  0x00006C7F,\n\t2171:  0x00026498,\n\t2172:  0x00024FB8,\n\t2173:  0x000064E7,\n\t2174:  0x0002148A,\n\t2175:  0x00008218,\n\t2176:  0x0002185E,\n\t2177:  0x00006A53,\n\t2178:  0x00024A65,\n\t2179:  0x00024A95,\n\t2180:  0x0000447A,\n\t2181:  0x00008229,\n\t2182:  0x00020B0D,\n\t2183:  0x00026A52,\n\t2184:  0x00023D7E,\n\t2185:  0x00004FF9,\n\t2186:  0x000214FD,\n\t2187:  0x000084E2,\n\t2188:  0x00008362,\n\t2189:  0x00026B0A,\n\t2190:  0x000249A7,\n\t2191:  0x00023530,\n\t2192:  0x00021773,\n\t2193:  0x00023DF8,\n\t2194:  0x000082AA,\n\t2195:  0x0000691B,\n\t2196:  0x0002F994,\n\t2197:  0x000041DB,\n\t2198:  0x0000854B,\n\t2199:  0x000082D0,\n\t2200:  0x0000831A,\n\t2201:  0x00020E16,\n\t2202:  0x000217B4,\n\t2203:  0x000036C1,\n\t2204:  0x0002317D,\n\t2205:  0x0002355A,\n\t2206:  0x0000827B,\n\t2207:  0x000082E2,\n\t2208:  0x00008318,\n\t2209:  0x00023E8B,\n\t2210:  0x00026DA3,\n\t2211:  0x00026B05,\n\t2212:  0x00026B97,\n\t2213:  0x000235CE,\n\t2214:  0x00003DBF,\n\t2215:  0x0000831D,\n\t2216:  0x000055EC,\n\t2217:  0x00008385,\n\t2218:  0x0000450B,\n\t2219:  0x00026DA5,\n\t2220:  0x000083AC,\n\t2221:  0x000083C1,\n\t2222:  0x000083D3,\n\t2223:  0x0000347E,\n\t2224:  0x00026ED4,\n\t2225:  0x00006A57,\n\t2226:  0x0000855A,\n\t2227:  0x00003496,\n\t2228:  0x00026E42,\n\t2229:  0x00022EEF,\n\t2230:  0x00008458,\n\t2231:  0x00025BE4,\n\t2232:  0x00008471,\n\t2233:  0x00003DD3,\n\t2234:  0x000044E4,\n\t2235:  0x00006AA7,\n\t2236:  0x0000844A,\n\t2237:  0x00023CB5,\n\t2238:  0x00007958,\n\t2239:  0x000084A8,\n\t2240:  0x00026B96,\n\t2241:  0x00026E77,\n\t2242:  0x00026E43,\n\t2243:  0x000084DE,\n\t2244:  0x0000840F,\n\t2245:  0x00008391,\n\t2246:  0x000044A0,\n\t2247:  0x00008493,\n\t2248:  0x000084E4,\n\t2249:  0x00025C91,\n\t2250:  0x00004240,\n\t2251:  0x00025CC0,\n\t2252:  0x00004543,\n\t2253:  0x00008534,\n\t2254:  0x00005AF2,\n\t2255:  0x00026E99,\n\t2256:  0x00004527,\n\t2257:  0x00008573,\n\t2258:  0x00004516,\n\t2259:  0x000067BF,\n\t2260:  0x00008616,\n\t2261:  0x00028625,\n\t2262:  0x0002863B,\n\t2263:  0x000085C1,\n\t2264:  0x00027088,\n\t2265:  0x00008602,\n\t2266:  0x00021582,\n\t2267:  0x000270CD,\n\t2268:  0x0002F9B2,\n\t2269:  0x0000456A,\n\t2270:  0x00008628,\n\t2271:  0x00003648,\n\t2272:  0x000218A2,\n\t2273:  0x000053F7,\n\t2274:  0x0002739A,\n\t2275:  0x0000867E,\n\t2276:  0x00008771,\n\t2277:  0x0002A0F8,\n\t2278:  0x000087EE,\n\t2279:  0x00022C27,\n\t2280:  0x000087B1,\n\t2281:  0x000087DA,\n\t2282:  0x0000880F,\n\t2283:  0x00005661,\n\t2284:  0x0000866C,\n\t2285:  0x00006856,\n\t2286:  0x0000460F,\n\t2287:  0x00008845,\n\t2288:  0x00008846,\n\t2289:  0x000275E0,\n\t2290:  0x00023DB9,\n\t2291:  0x000275E4,\n\t2292:  0x0000885E,\n\t2293:  0x0000889C,\n\t2294:  0x0000465B,\n\t2295:  0x000088B4,\n\t2296:  0x000088B5,\n\t2297:  0x000063C1,\n\t2298:  0x000088C5,\n\t2299:  0x00007777,\n\t2300:  0x0002770F,\n\t2301:  0x00008987,\n\t2302:  0x0000898A,\n\t2303:  0x000089A6,\n\t2304:  0x000089A9,\n\t2305:  0x000089A7,\n\t2306:  0x000089BC,\n\t2307:  0x00028A25,\n\t2308:  0x000089E7,\n\t2309:  0x00027924,\n\t2310:  0x00027ABD,\n\t2311:  0x00008A9C,\n\t2312:  0x00007793,\n\t2313:  0x000091FE,\n\t2314:  0x00008A90,\n\t2315:  0x00027A59,\n\t2316:  0x00007AE9,\n\t2317:  0x00027B3A,\n\t2318:  0x00023F8F,\n\t2319:  0x00004713,\n\t2320:  0x00027B38,\n\t2321:  0x0000717C,\n\t2322:  0x00008B0C,\n\t2323:  0x00008B1F,\n\t2324:  0x00025430,\n\t2325:  0x00025565,\n\t2326:  0x00008B3F,\n\t2327:  0x00008B4C,\n\t2328:  0x00008B4D,\n\t2329:  0x00008AA9,\n\t2330:  0x00024A7A,\n\t2331:  0x00008B90,\n\t2332:  0x00008B9B,\n\t2333:  0x00008AAF,\n\t2334:  0x000216DF,\n\t2335:  0x00004615,\n\t2336:  0x0000884F,\n\t2337:  0x00008C9B,\n\t2338:  0x00027D54,\n\t2339:  0x00027D8F,\n\t2340:  0x0002F9D4,\n\t2341:  0x00003725,\n\t2342:  0x00027D53,\n\t2343:  0x00008CD6,\n\t2344:  0x00027D98,\n\t2345:  0x00027DBD,\n\t2346:  0x00008D12,\n\t2347:  0x00008D03,\n\t2348:  0x00021910,\n\t2349:  0x00008CDB,\n\t2350:  0x0000705C,\n\t2351:  0x00008D11,\n\t2352:  0x00024CC9,\n\t2353:  0x00003ED0,\n\t2354:  0x00008D77,\n\t2355:  0x00008DA9,\n\t2356:  0x00028002,\n\t2357:  0x00021014,\n\t2358:  0x0002498A,\n\t2359:  0x00003B7C,\n\t2360:  0x000281BC,\n\t2361:  0x0002710C,\n\t2362:  0x00007AE7,\n\t2363:  0x00008EAD,\n\t2364:  0x00008EB6,\n\t2365:  0x00008EC3,\n\t2366:  0x000092D4,\n\t2367:  0x00008F19,\n\t2368:  0x00008F2D,\n\t2369:  0x00028365,\n\t2370:  0x00028412,\n\t2371:  0x00008FA5,\n\t2372:  0x00009303,\n\t2373:  0x0002A29F,\n\t2374:  0x00020A50,\n\t2375:  0x00008FB3,\n\t2376:  0x0000492A,\n\t2377:  0x000289DE,\n\t2378:  0x0002853D,\n\t2379:  0x00023DBB,\n\t2380:  0x00005EF8,\n\t2381:  0x00023262,\n\t2382:  0x00008FF9,\n\t2383:  0x0002A014,\n\t2384:  0x000286BC,\n\t2385:  0x00028501,\n\t2386:  0x00022325,\n\t2387:  0x00003980,\n\t2388:  0x00026ED7,\n\t2389:  0x00009037,\n\t2390:  0x0002853C,\n\t2391:  0x00027ABE,\n\t2392:  0x00009061,\n\t2393:  0x0002856C,\n\t2394:  0x0002860B,\n\t2395:  0x000090A8,\n\t2396:  0x00028713,\n\t2397:  0x000090C4,\n\t2398:  0x000286E6,\n\t2399:  0x000090AE,\n\t2400:  0x000090FD,\n\t2401:  0x00009167,\n\t2402:  0x00003AF0,\n\t2403:  0x000091A9,\n\t2404:  0x000091C4,\n\t2405:  0x00007CAC,\n\t2406:  0x00028933,\n\t2407:  0x00021E89,\n\t2408:  0x0000920E,\n\t2409:  0x00006C9F,\n\t2410:  0x00009241,\n\t2411:  0x00009262,\n\t2412:  0x000255B9,\n\t2413:  0x000092B9,\n\t2414:  0x00028AC6,\n\t2415:  0x00023C9B,\n\t2416:  0x00028B0C,\n\t2417:  0x000255DB,\n\t2418:  0x00020D31,\n\t2419:  0x0000932C,\n\t2420:  0x0000936B,\n\t2421:  0x00028AE1,\n\t2422:  0x00028BEB,\n\t2423:  0x0000708F,\n\t2424:  0x00005AC3,\n\t2425:  0x00028AE2,\n\t2426:  0x00028AE5,\n\t2427:  0x00004965,\n\t2428:  0x00009244,\n\t2429:  0x00028BEC,\n\t2430:  0x00028C39,\n\t2431:  0x00028BFF,\n\t2432:  0x00009373,\n\t2433:  0x0000945B,\n\t2434:  0x00008EBC,\n\t2435:  0x00009585,\n\t2436:  0x000095A6,\n\t2437:  0x00009426,\n\t2438:  0x000095A0,\n\t2439:  0x00006FF6,\n\t2440:  0x000042B9,\n\t2441:  0x0002267A,\n\t2442:  0x000286D8,\n\t2443:  0x0002127C,\n\t2444:  0x00023E2E,\n\t2445:  0x000049DF,\n\t2446:  0x00006C1C,\n\t2447:  0x0000967B,\n\t2448:  0x00009696,\n\t2449:  0x0000416C,\n\t2450:  0x000096A3,\n\t2451:  0x00026ED5,\n\t2452:  0x000061DA,\n\t2453:  0x000096B6,\n\t2454:  0x000078F5,\n\t2455:  0x00028AE0,\n\t2456:  0x000096BD,\n\t2457:  0x000053CC,\n\t2458:  0x000049A1,\n\t2459:  0x00026CB8,\n\t2460:  0x00020274,\n\t2461:  0x00026410,\n\t2462:  0x000290AF,\n\t2463:  0x000290E5,\n\t2464:  0x00024AD1,\n\t2465:  0x00021915,\n\t2466:  0x0002330A,\n\t2467:  0x00009731,\n\t2468:  0x00008642,\n\t2469:  0x00009736,\n\t2470:  0x00004A0F,\n\t2471:  0x0000453D,\n\t2472:  0x00004585,\n\t2473:  0x00024AE9,\n\t2474:  0x00007075,\n\t2475:  0x00005B41,\n\t2476:  0x0000971B,\n\t2477:  0x0000975C,\n\t2478:  0x000291D5,\n\t2479:  0x00009757,\n\t2480:  0x00005B4A,\n\t2481:  0x000291EB,\n\t2482:  0x0000975F,\n\t2483:  0x00009425,\n\t2484:  0x000050D0,\n\t2485:  0x000230B7,\n\t2486:  0x000230BC,\n\t2487:  0x00009789,\n\t2488:  0x0000979F,\n\t2489:  0x000097B1,\n\t2490:  0x000097BE,\n\t2491:  0x000097C0,\n\t2492:  0x000097D2,\n\t2493:  0x000097E0,\n\t2494:  0x0002546C,\n\t2495:  0x000097EE,\n\t2496:  0x0000741C,\n\t2497:  0x00029433,\n\t2498:  0x000097FF,\n\t2499:  0x000097F5,\n\t2500:  0x0002941D,\n\t2501:  0x0002797A,\n\t2502:  0x00004AD1,\n\t2503:  0x00009834,\n\t2504:  0x00009833,\n\t2505:  0x0000984B,\n\t2506:  0x00009866,\n\t2507:  0x00003B0E,\n\t2508:  0x00027175,\n\t2509:  0x00003D51,\n\t2510:  0x00020630,\n\t2511:  0x0002415C,\n\t2512:  0x00025706,\n\t2513:  0x000098CA,\n\t2514:  0x000098B7,\n\t2515:  0x000098C8,\n\t2516:  0x000098C7,\n\t2517:  0x00004AFF,\n\t2518:  0x00026D27,\n\t2519:  0x000216D3,\n\t2520:  0x000055B0,\n\t2521:  0x000098E1,\n\t2522:  0x000098E6,\n\t2523:  0x000098EC,\n\t2524:  0x00009378,\n\t2525:  0x00009939,\n\t2526:  0x00024A29,\n\t2527:  0x00004B72,\n\t2528:  0x00029857,\n\t2529:  0x00029905,\n\t2530:  0x000099F5,\n\t2531:  0x00009A0C,\n\t2532:  0x00009A3B,\n\t2533:  0x00009A10,\n\t2534:  0x00009A58,\n\t2535:  0x00025725,\n\t2536:  0x000036C4,\n\t2537:  0x000290B1,\n\t2538:  0x00029BD5,\n\t2539:  0x00009AE0,\n\t2540:  0x00009AE2,\n\t2541:  0x00029B05,\n\t2542:  0x00009AF4,\n\t2543:  0x00004C0E,\n\t2544:  0x00009B14,\n\t2545:  0x00009B2D,\n\t2546:  0x00028600,\n\t2547:  0x00005034,\n\t2548:  0x00009B34,\n\t2549:  0x000269A8,\n\t2550:  0x000038C3,\n\t2551:  0x0002307D,\n\t2552:  0x00009B50,\n\t2553:  0x00009B40,\n\t2554:  0x00029D3E,\n\t2555:  0x00005A45,\n\t2556:  0x00021863,\n\t2557:  0x00009B8E,\n\t2558:  0x0002424B,\n\t2559:  0x00009C02,\n\t2560:  0x00009BFF,\n\t2561:  0x00009C0C,\n\t2562:  0x00029E68,\n\t2563:  0x00009DD4,\n\t2564:  0x00029FB7,\n\t2565:  0x0002A192,\n\t2566:  0x0002A1AB,\n\t2567:  0x0002A0E1,\n\t2568:  0x0002A123,\n\t2569:  0x0002A1DF,\n\t2570:  0x00009D7E,\n\t2571:  0x00009D83,\n\t2572:  0x0002A134,\n\t2573:  0x00009E0E,\n\t2574:  0x00006888,\n\t2575:  0x00009DC4,\n\t2576:  0x0002215B,\n\t2577:  0x0002A193,\n\t2578:  0x0002A220,\n\t2579:  0x0002193B,\n\t2580:  0x0002A233,\n\t2581:  0x00009D39,\n\t2582:  0x0002A0B9,\n\t2583:  0x0002A2B4,\n\t2584:  0x00009E90,\n\t2585:  0x00009E95,\n\t2586:  0x00009E9E,\n\t2587:  0x00009EA2,\n\t2588:  0x00004D34,\n\t2589:  0x00009EAA,\n\t2590:  0x00009EAF,\n\t2591:  0x00024364,\n\t2592:  0x00009EC1,\n\t2593:  0x00003B60,\n\t2594:  0x000039E5,\n\t2595:  0x00003D1D,\n\t2596:  0x00004F32,\n\t2597:  0x000037BE,\n\t2598:  0x00028C2B,\n\t2599:  0x00009F02,\n\t2600:  0x00009F08,\n\t2601:  0x00004B96,\n\t2602:  0x00009424,\n\t2603:  0x00026DA2,\n\t2604:  0x00009F17,\n\t2605:  0x00009F16,\n\t2606:  0x00009F39,\n\t2607:  0x0000569F,\n\t2608:  0x0000568A,\n\t2609:  0x00009F45,\n\t2610:  0x000099B8,\n\t2611:  0x0002908B,\n\t2612:  0x000097F2,\n\t2613:  0x0000847F,\n\t2614:  0x00009F62,\n\t2615:  0x00009F69,\n\t2616:  0x00007ADC,\n\t2617:  0x00009F8E,\n\t2618:  0x00007216,\n\t2619:  0x00004BBE,\n\t2620:  0x00024975,\n\t2621:  0x000249BB,\n\t2622:  0x00007177,\n\t2623:  0x000249F8,\n\t2624:  0x00024348,\n\t2625:  0x00024A51,\n\t2626:  0x0000739E,\n\t2627:  0x00028BDA,\n\t2628:  0x000218FA,\n\t2629:  0x0000799F,\n\t2630:  0x0002897E,\n\t2631:  0x00028E36,\n\t2632:  0x00009369,\n\t2633:  0x000093F3,\n\t2634:  0x00028A44,\n\t2635:  0x000092EC,\n\t2636:  0x00009381,\n\t2637:  0x000093CB,\n\t2638:  0x0002896C,\n\t2639:  0x000244B9,\n\t2640:  0x00007217,\n\t2641:  0x00003EEB,\n\t2642:  0x00007772,\n\t2643:  0x00007A43,\n\t2644:  0x000070D0,\n\t2645:  0x00024473,\n\t2646:  0x000243F8,\n\t2647:  0x0000717E,\n\t2648:  0x000217EF,\n\t2649:  0x000070A3,\n\t2650:  0x000218BE,\n\t2651:  0x00023599,\n\t2652:  0x00003EC7,\n\t2653:  0x00021885,\n\t2654:  0x0002542F,\n\t2655:  0x000217F8,\n\t2656:  0x00003722,\n\t2657:  0x000216FB,\n\t2658:  0x00021839,\n\t2659:  0x000036E1,\n\t2660:  0x00021774,\n\t2661:  0x000218D1,\n\t2662:  0x00025F4B,\n\t2663:  0x00003723,\n\t2664:  0x000216C0,\n\t2665:  0x0000575B,\n\t2666:  0x00024A25,\n\t2667:  0x000213FE,\n\t2668:  0x000212A8,\n\t2669:  0x000213C6,\n\t2670:  0x000214B6,\n\t2671:  0x00008503,\n\t2672:  0x000236A6,\n\t2673:  0x00008503,\n\t2674:  0x00008455,\n\t2675:  0x00024994,\n\t2676:  0x00027165,\n\t2677:  0x00023E31,\n\t2678:  0x0002555C,\n\t2679:  0x00023EFB,\n\t2680:  0x00027052,\n\t2681:  0x000044F4,\n\t2682:  0x000236EE,\n\t2683:  0x0002999D,\n\t2684:  0x00026F26,\n\t2685:  0x000067F9,\n\t2686:  0x00003733,\n\t2687:  0x00003C15,\n\t2688:  0x00003DE7,\n\t2689:  0x0000586C,\n\t2690:  0x00021922,\n\t2691:  0x00006810,\n\t2692:  0x00004057,\n\t2693:  0x0002373F,\n\t2694:  0x000240E1,\n\t2695:  0x0002408B,\n\t2696:  0x0002410F,\n\t2697:  0x00026C21,\n\t2698:  0x000054CB,\n\t2699:  0x0000569E,\n\t2700:  0x000266B1,\n\t2701:  0x00005692,\n\t2702:  0x00020FDF,\n\t2703:  0x00020BA8,\n\t2704:  0x00020E0D,\n\t2705:  0x000093C6,\n\t2706:  0x00028B13,\n\t2707:  0x0000939C,\n\t2708:  0x00004EF8,\n\t2709:  0x0000512B,\n\t2710:  0x00003819,\n\t2711:  0x00024436,\n\t2712:  0x00004EBC,\n\t2713:  0x00020465,\n\t2714:  0x0002037F,\n\t2715:  0x00004F4B,\n\t2716:  0x00004F8A,\n\t2717:  0x00025651,\n\t2718:  0x00005A68,\n\t2719:  0x000201AB,\n\t2720:  0x000203CB,\n\t2721:  0x00003999,\n\t2722:  0x0002030A,\n\t2723:  0x00020414,\n\t2724:  0x00003435,\n\t2725:  0x00004F29,\n\t2726:  0x000202C0,\n\t2727:  0x00028EB3,\n\t2728:  0x00020275,\n\t2729:  0x00008ADA,\n\t2730:  0x0002020C,\n\t2731:  0x00004E98,\n\t2732:  0x000050CD,\n\t2733:  0x0000510D,\n\t2734:  0x00004FA2,\n\t2735:  0x00004F03,\n\t2736:  0x00024A0E,\n\t2737:  0x00023E8A,\n\t2738:  0x00004F42,\n\t2739:  0x0000502E,\n\t2740:  0x0000506C,\n\t2741:  0x00005081,\n\t2742:  0x00004FCC,\n\t2743:  0x00004FE5,\n\t2744:  0x00005058,\n\t2745:  0x000050FC,\n\t2746:  0x00005159,\n\t2747:  0x0000515B,\n\t2748:  0x0000515D,\n\t2749:  0x0000515E,\n\t2750:  0x00006E76,\n\t2751:  0x00023595,\n\t2752:  0x00023E39,\n\t2753:  0x00023EBF,\n\t2754:  0x00006D72,\n\t2755:  0x00021884,\n\t2756:  0x00023E89,\n\t2757:  0x000051A8,\n\t2758:  0x000051C3,\n\t2759:  0x000205E0,\n\t2760:  0x000044DD,\n\t2761:  0x000204A3,\n\t2762:  0x00020492,\n\t2763:  0x00020491,\n\t2764:  0x00008D7A,\n\t2765:  0x00028A9C,\n\t2766:  0x0002070E,\n\t2767:  0x00005259,\n\t2768:  0x000052A4,\n\t2769:  0x00020873,\n\t2770:  0x000052E1,\n\t2771:  0x0000936E,\n\t2772:  0x0000467A,\n\t2773:  0x0000718C,\n\t2774:  0x0002438C,\n\t2775:  0x00020C20,\n\t2776:  0x000249AC,\n\t2777:  0x000210E4,\n\t2778:  0x000069D1,\n\t2779:  0x00020E1D,\n\t2780:  0x00007479,\n\t2781:  0x00003EDE,\n\t2782:  0x00007499,\n\t2783:  0x00007414,\n\t2784:  0x00007456,\n\t2785:  0x00007398,\n\t2786:  0x00004B8E,\n\t2787:  0x00024ABC,\n\t2788:  0x0002408D,\n\t2789:  0x000053D0,\n\t2790:  0x00003584,\n\t2791:  0x0000720F,\n\t2792:  0x000240C9,\n\t2793:  0x000055B4,\n\t2794:  0x00020345,\n\t2795:  0x000054CD,\n\t2796:  0x00020BC6,\n\t2797:  0x0000571D,\n\t2798:  0x0000925D,\n\t2799:  0x000096F4,\n\t2800:  0x00009366,\n\t2801:  0x000057DD,\n\t2802:  0x0000578D,\n\t2803:  0x0000577F,\n\t2804:  0x0000363E,\n\t2805:  0x000058CB,\n\t2806:  0x00005A99,\n\t2807:  0x00028A46,\n\t2808:  0x000216FA,\n\t2809:  0x0002176F,\n\t2810:  0x00021710,\n\t2811:  0x00005A2C,\n\t2812:  0x000059B8,\n\t2813:  0x0000928F,\n\t2814:  0x00005A7E,\n\t2815:  0x00005ACF,\n\t2816:  0x00005A12,\n\t2817:  0x00025946,\n\t2818:  0x000219F3,\n\t2819:  0x00021861,\n\t2820:  0x00024295,\n\t2821:  0x000036F5,\n\t2822:  0x00006D05,\n\t2823:  0x00007443,\n\t2824:  0x00005A21,\n\t2825:  0x00025E83,\n\t2826:  0x00005A81,\n\t2827:  0x00028BD7,\n\t2828:  0x00020413,\n\t2829:  0x000093E0,\n\t2830:  0x0000748C,\n\t2831:  0x00021303,\n\t2832:  0x00007105,\n\t2833:  0x00004972,\n\t2834:  0x00009408,\n\t2835:  0x000289FB,\n\t2836:  0x000093BD,\n\t2837:  0x000037A0,\n\t2838:  0x00005C1E,\n\t2839:  0x00005C9E,\n\t2840:  0x00005E5E,\n\t2841:  0x00005E48,\n\t2842:  0x00021996,\n\t2843:  0x0002197C,\n\t2844:  0x00023AEE,\n\t2845:  0x00005ECD,\n\t2846:  0x00005B4F,\n\t2847:  0x00021903,\n\t2848:  0x00021904,\n\t2849:  0x00003701,\n\t2850:  0x000218A0,\n\t2851:  0x000036DD,\n\t2852:  0x000216FE,\n\t2853:  0x000036D3,\n\t2854:  0x0000812A,\n\t2855:  0x00028A47,\n\t2856:  0x00021DBA,\n\t2857:  0x00023472,\n\t2858:  0x000289A8,\n\t2859:  0x00005F0C,\n\t2860:  0x00005F0E,\n\t2861:  0x00021927,\n\t2862:  0x000217AB,\n\t2863:  0x00005A6B,\n\t2864:  0x0002173B,\n\t2865:  0x00005B44,\n\t2866:  0x00008614,\n\t2867:  0x000275FD,\n\t2868:  0x00008860,\n\t2869:  0x0000607E,\n\t2870:  0x00022860,\n\t2871:  0x0002262B,\n\t2872:  0x00005FDB,\n\t2873:  0x00003EB8,\n\t2874:  0x000225AF,\n\t2875:  0x000225BE,\n\t2876:  0x00029088,\n\t2877:  0x00026F73,\n\t2878:  0x000061C0,\n\t2879:  0x0002003E,\n\t2880:  0x00020046,\n\t2881:  0x0002261B,\n\t2882:  0x00006199,\n\t2883:  0x00006198,\n\t2884:  0x00006075,\n\t2885:  0x00022C9B,\n\t2886:  0x00022D07,\n\t2887:  0x000246D4,\n\t2888:  0x0002914D,\n\t2889:  0x00006471,\n\t2890:  0x00024665,\n\t2891:  0x00022B6A,\n\t2892:  0x00003A29,\n\t2893:  0x00022B22,\n\t2894:  0x00023450,\n\t2895:  0x000298EA,\n\t2896:  0x00022E78,\n\t2897:  0x00006337,\n\t2898:  0x0002A45B,\n\t2899:  0x000064B6,\n\t2900:  0x00006331,\n\t2901:  0x000063D1,\n\t2902:  0x000249E3,\n\t2903:  0x00022D67,\n\t2904:  0x000062A4,\n\t2905:  0x00022CA1,\n\t2906:  0x0000643B,\n\t2907:  0x0000656B,\n\t2908:  0x00006972,\n\t2909:  0x00003BF4,\n\t2910:  0x0002308E,\n\t2911:  0x000232AD,\n\t2912:  0x00024989,\n\t2913:  0x000232AB,\n\t2914:  0x0000550D,\n\t2915:  0x000232E0,\n\t2916:  0x000218D9,\n\t2917:  0x0002943F,\n\t2918:  0x000066CE,\n\t2919:  0x00023289,\n\t2920:  0x000231B3,\n\t2921:  0x00003AE0,\n\t2922:  0x00004190,\n\t2923:  0x00025584,\n\t2924:  0x00028B22,\n\t2925:  0x0002558F,\n\t2926:  0x000216FC,\n\t2927:  0x0002555B,\n\t2928:  0x00025425,\n\t2929:  0x000078EE,\n\t2930:  0x00023103,\n\t2931:  0x0002182A,\n\t2932:  0x00023234,\n\t2933:  0x00003464,\n\t2934:  0x0002320F,\n\t2935:  0x00023182,\n\t2936:  0x000242C9,\n\t2937:  0x0000668E,\n\t2938:  0x00026D24,\n\t2939:  0x0000666B,\n\t2940:  0x00004B93,\n\t2941:  0x00006630,\n\t2942:  0x00027870,\n\t2943:  0x00021DEB,\n\t2944:  0x00006663,\n\t2945:  0x000232D2,\n\t2946:  0x000232E1,\n\t2947:  0x0000661E,\n\t2948:  0x00025872,\n\t2949:  0x000038D1,\n\t2950:  0x0002383A,\n\t2951:  0x000237BC,\n\t2952:  0x00003B99,\n\t2953:  0x000237A2,\n\t2954:  0x000233FE,\n\t2955:  0x000074D0,\n\t2956:  0x00003B96,\n\t2957:  0x0000678F,\n\t2958:  0x0002462A,\n\t2959:  0x000068B6,\n\t2960:  0x0000681E,\n\t2961:  0x00003BC4,\n\t2962:  0x00006ABE,\n\t2963:  0x00003863,\n\t2964:  0x000237D5,\n\t2965:  0x00024487,\n\t2966:  0x00006A33,\n\t2967:  0x00006A52,\n\t2968:  0x00006AC9,\n\t2969:  0x00006B05,\n\t2970:  0x00021912,\n\t2971:  0x00006511,\n\t2972:  0x00006898,\n\t2973:  0x00006A4C,\n\t2974:  0x00003BD7,\n\t2975:  0x00006A7A,\n\t2976:  0x00006B57,\n\t2977:  0x00023FC0,\n\t2978:  0x00023C9A,\n\t2979:  0x000093A0,\n\t2980:  0x000092F2,\n\t2981:  0x00028BEA,\n\t2982:  0x00028ACB,\n\t2983:  0x00009289,\n\t2984:  0x0002801E,\n\t2985:  0x000289DC,\n\t2986:  0x00009467,\n\t2987:  0x00006DA5,\n\t2988:  0x00006F0B,\n\t2989:  0x000249EC,\n\t2990:  0x00006D67,\n\t2991:  0x00023F7F,\n\t2992:  0x00003D8F,\n\t2993:  0x00006E04,\n\t2994:  0x0002403C,\n\t2995:  0x00005A3D,\n\t2996:  0x00006E0A,\n\t2997:  0x00005847,\n\t2998:  0x00006D24,\n\t2999:  0x00007842,\n\t3000:  0x0000713B,\n\t3001:  0x0002431A,\n\t3002:  0x00024276,\n\t3003:  0x000070F1,\n\t3004:  0x00007250,\n\t3005:  0x00007287,\n\t3006:  0x00007294,\n\t3007:  0x0002478F,\n\t3008:  0x00024725,\n\t3009:  0x00005179,\n\t3010:  0x00024AA4,\n\t3011:  0x000205EB,\n\t3012:  0x0000747A,\n\t3013:  0x00023EF8,\n\t3014:  0x0002365F,\n\t3015:  0x00024A4A,\n\t3016:  0x00024917,\n\t3017:  0x00025FE1,\n\t3018:  0x00003F06,\n\t3019:  0x00003EB1,\n\t3020:  0x00024ADF,\n\t3021:  0x00028C23,\n\t3022:  0x00023F35,\n\t3023:  0x000060A7,\n\t3024:  0x00003EF3,\n\t3025:  0x000074CC,\n\t3026:  0x0000743C,\n\t3027:  0x00009387,\n\t3028:  0x00007437,\n\t3029:  0x0000449F,\n\t3030:  0x00026DEA,\n\t3031:  0x00004551,\n\t3032:  0x00007583,\n\t3033:  0x00003F63,\n\t3034:  0x00024CD9,\n\t3035:  0x00024D06,\n\t3036:  0x00003F58,\n\t3037:  0x00007555,\n\t3038:  0x00007673,\n\t3039:  0x0002A5C6,\n\t3040:  0x00003B19,\n\t3041:  0x00007468,\n\t3042:  0x00028ACC,\n\t3043:  0x000249AB,\n\t3044:  0x0002498E,\n\t3045:  0x00003AFB,\n\t3046:  0x00003DCD,\n\t3047:  0x00024A4E,\n\t3048:  0x00003EFF,\n\t3049:  0x000249C5,\n\t3050:  0x000248F3,\n\t3051:  0x000091FA,\n\t3052:  0x00005732,\n\t3053:  0x00009342,\n\t3054:  0x00028AE3,\n\t3055:  0x00021864,\n\t3056:  0x000050DF,\n\t3057:  0x00025221,\n\t3058:  0x000251E7,\n\t3059:  0x00007778,\n\t3060:  0x00023232,\n\t3061:  0x0000770E,\n\t3062:  0x0000770F,\n\t3063:  0x0000777B,\n\t3064:  0x00024697,\n\t3065:  0x00023781,\n\t3066:  0x00003A5E,\n\t3067:  0x000248F0,\n\t3068:  0x00007438,\n\t3069:  0x0000749B,\n\t3070:  0x00003EBF,\n\t3071:  0x00024ABA,\n\t3072:  0x00024AC7,\n\t3073:  0x000040C8,\n\t3074:  0x00024A96,\n\t3075:  0x000261AE,\n\t3076:  0x00009307,\n\t3077:  0x00025581,\n\t3078:  0x0000781E,\n\t3079:  0x0000788D,\n\t3080:  0x00007888,\n\t3081:  0x000078D2,\n\t3082:  0x000073D0,\n\t3083:  0x00007959,\n\t3084:  0x00027741,\n\t3085:  0x000256E3,\n\t3086:  0x0000410E,\n\t3087:  0x0000799B,\n\t3088:  0x00008496,\n\t3089:  0x000079A5,\n\t3090:  0x00006A2D,\n\t3091:  0x00023EFA,\n\t3092:  0x00007A3A,\n\t3093:  0x000079F4,\n\t3094:  0x0000416E,\n\t3095:  0x000216E6,\n\t3096:  0x00004132,\n\t3097:  0x00009235,\n\t3098:  0x000079F1,\n\t3099:  0x00020D4C,\n\t3100:  0x0002498C,\n\t3101:  0x00020299,\n\t3102:  0x00023DBA,\n\t3103:  0x0002176E,\n\t3104:  0x00003597,\n\t3105:  0x0000556B,\n\t3106:  0x00003570,\n\t3107:  0x000036AA,\n\t3108:  0x000201D4,\n\t3109:  0x00020C0D,\n\t3110:  0x00007AE2,\n\t3111:  0x00005A59,\n\t3112:  0x000226F5,\n\t3113:  0x00025AAF,\n\t3114:  0x00025A9C,\n\t3115:  0x00005A0D,\n\t3116:  0x0002025B,\n\t3117:  0x000078F0,\n\t3118:  0x00005A2A,\n\t3119:  0x00025BC6,\n\t3120:  0x00007AFE,\n\t3121:  0x000041F9,\n\t3122:  0x00007C5D,\n\t3123:  0x00007C6D,\n\t3124:  0x00004211,\n\t3125:  0x00025BB3,\n\t3126:  0x00025EBC,\n\t3127:  0x00025EA6,\n\t3128:  0x00007CCD,\n\t3129:  0x000249F9,\n\t3130:  0x000217B0,\n\t3131:  0x00007C8E,\n\t3132:  0x00007C7C,\n\t3133:  0x00007CAE,\n\t3134:  0x00006AB2,\n\t3135:  0x00007DDC,\n\t3136:  0x00007E07,\n\t3137:  0x00007DD3,\n\t3138:  0x00007F4E,\n\t3139:  0x00026261,\n\t3140:  0x0002615C,\n\t3141:  0x00027B48,\n\t3142:  0x00007D97,\n\t3143:  0x00025E82,\n\t3144:  0x0000426A,\n\t3145:  0x00026B75,\n\t3146:  0x00020916,\n\t3147:  0x000067D6,\n\t3148:  0x0002004E,\n\t3149:  0x000235CF,\n\t3150:  0x000057C4,\n\t3151:  0x00026412,\n\t3152:  0x000263F8,\n\t3153:  0x00024962,\n\t3154:  0x00007FDD,\n\t3155:  0x00007B27,\n\t3156:  0x0002082C,\n\t3157:  0x00025AE9,\n\t3158:  0x00025D43,\n\t3159:  0x00007B0C,\n\t3160:  0x00025E0E,\n\t3161:  0x000099E6,\n\t3162:  0x00008645,\n\t3163:  0x00009A63,\n\t3164:  0x00006A1C,\n\t3165:  0x0002343F,\n\t3166:  0x000039E2,\n\t3167:  0x000249F7,\n\t3168:  0x000265AD,\n\t3169:  0x00009A1F,\n\t3170:  0x000265A0,\n\t3171:  0x00008480,\n\t3172:  0x00027127,\n\t3173:  0x00026CD1,\n\t3174:  0x000044EA,\n\t3175:  0x00008137,\n\t3176:  0x00004402,\n\t3177:  0x000080C6,\n\t3178:  0x00008109,\n\t3179:  0x00008142,\n\t3180:  0x000267B4,\n\t3181:  0x000098C3,\n\t3182:  0x00026A42,\n\t3183:  0x00008262,\n\t3184:  0x00008265,\n\t3185:  0x00026A51,\n\t3186:  0x00008453,\n\t3187:  0x00026DA7,\n\t3188:  0x00008610,\n\t3189:  0x0002721B,\n\t3190:  0x00005A86,\n\t3191:  0x0000417F,\n\t3192:  0x00021840,\n\t3193:  0x00005B2B,\n\t3194:  0x000218A1,\n\t3195:  0x00005AE4,\n\t3196:  0x000218D8,\n\t3197:  0x000086A0,\n\t3198:  0x0002F9BC,\n\t3199:  0x00023D8F,\n\t3200:  0x0000882D,\n\t3201:  0x00027422,\n\t3202:  0x00005A02,\n\t3203:  0x0000886E,\n\t3204:  0x00004F45,\n\t3205:  0x00008887,\n\t3206:  0x000088BF,\n\t3207:  0x000088E6,\n\t3208:  0x00008965,\n\t3209:  0x0000894D,\n\t3210:  0x00025683,\n\t3211:  0x00008954,\n\t3212:  0x00027785,\n\t3213:  0x00027784,\n\t3214:  0x00028BF5,\n\t3215:  0x00028BD9,\n\t3216:  0x00028B9C,\n\t3217:  0x000289F9,\n\t3218:  0x00003EAD,\n\t3219:  0x000084A3,\n\t3220:  0x000046F5,\n\t3221:  0x000046CF,\n\t3222:  0x000037F2,\n\t3223:  0x00008A3D,\n\t3224:  0x00008A1C,\n\t3225:  0x00029448,\n\t3226:  0x00005F4D,\n\t3227:  0x0000922B,\n\t3228:  0x00024284,\n\t3229:  0x000065D4,\n\t3230:  0x00007129,\n\t3231:  0x000070C4,\n\t3232:  0x00021845,\n\t3233:  0x00009D6D,\n\t3234:  0x00008C9F,\n\t3235:  0x00008CE9,\n\t3236:  0x00027DDC,\n\t3237:  0x0000599A,\n\t3238:  0x000077C3,\n\t3239:  0x000059F0,\n\t3240:  0x0000436E,\n\t3241:  0x000036D4,\n\t3242:  0x00008E2A,\n\t3243:  0x00008EA7,\n\t3244:  0x00024C09,\n\t3245:  0x00008F30,\n\t3246:  0x00008F4A,\n\t3247:  0x000042F4,\n\t3248:  0x00006C58,\n\t3249:  0x00006FBB,\n\t3250:  0x00022321,\n\t3251:  0x0000489B,\n\t3252:  0x00006F79,\n\t3253:  0x00006E8B,\n\t3254:  0x000217DA,\n\t3255:  0x00009BE9,\n\t3256:  0x000036B5,\n\t3257:  0x0002492F,\n\t3258:  0x000090BB,\n\t3259:  0x00009097,\n\t3260:  0x00005571,\n\t3261:  0x00004906,\n\t3262:  0x000091BB,\n\t3263:  0x00009404,\n\t3264:  0x00028A4B,\n\t3265:  0x00004062,\n\t3266:  0x00028AFC,\n\t3267:  0x00009427,\n\t3268:  0x00028C1D,\n\t3269:  0x00028C3B,\n\t3270:  0x000084E5,\n\t3271:  0x00008A2B,\n\t3272:  0x00009599,\n\t3273:  0x000095A7,\n\t3274:  0x00009597,\n\t3275:  0x00009596,\n\t3276:  0x00028D34,\n\t3277:  0x00007445,\n\t3278:  0x00003EC2,\n\t3279:  0x000248FF,\n\t3280:  0x00024A42,\n\t3281:  0x000243EA,\n\t3282:  0x00003EE7,\n\t3283:  0x00023225,\n\t3284:  0x0000968F,\n\t3285:  0x00028EE7,\n\t3286:  0x00028E66,\n\t3287:  0x00028E65,\n\t3288:  0x00003ECC,\n\t3289:  0x000249ED,\n\t3290:  0x00024A78,\n\t3291:  0x00023FEE,\n\t3292:  0x00007412,\n\t3293:  0x0000746B,\n\t3294:  0x00003EFC,\n\t3295:  0x00009741,\n\t3296:  0x000290B0,\n\t3297:  0x00006847,\n\t3298:  0x00004A1D,\n\t3299:  0x00029093,\n\t3300:  0x000257DF,\n\t3301:  0x0000975D,\n\t3302:  0x00009368,\n\t3303:  0x00028989,\n\t3304:  0x00028C26,\n\t3305:  0x00028B2F,\n\t3306:  0x000263BE,\n\t3307:  0x000092BA,\n\t3308:  0x00005B11,\n\t3309:  0x00008B69,\n\t3310:  0x0000493C,\n\t3311:  0x000073F9,\n\t3312:  0x0002421B,\n\t3313:  0x0000979B,\n\t3314:  0x00009771,\n\t3315:  0x00009938,\n\t3316:  0x00020F26,\n\t3317:  0x00005DC1,\n\t3318:  0x00028BC5,\n\t3319:  0x00024AB2,\n\t3320:  0x0000981F,\n\t3321:  0x000294DA,\n\t3322:  0x000092F6,\n\t3323:  0x000295D7,\n\t3324:  0x000091E5,\n\t3325:  0x000044C0,\n\t3326:  0x00028B50,\n\t3327:  0x00024A67,\n\t3328:  0x00028B64,\n\t3329:  0x000098DC,\n\t3330:  0x00028A45,\n\t3331:  0x00003F00,\n\t3332:  0x0000922A,\n\t3333:  0x00004925,\n\t3334:  0x00008414,\n\t3335:  0x0000993B,\n\t3336:  0x0000994D,\n\t3337:  0x00027B06,\n\t3338:  0x00003DFD,\n\t3339:  0x0000999B,\n\t3340:  0x00004B6F,\n\t3341:  0x000099AA,\n\t3342:  0x00009A5C,\n\t3343:  0x00028B65,\n\t3344:  0x000258C8,\n\t3345:  0x00006A8F,\n\t3346:  0x00009A21,\n\t3347:  0x00005AFE,\n\t3348:  0x00009A2F,\n\t3349:  0x000298F1,\n\t3350:  0x00004B90,\n\t3351:  0x00029948,\n\t3352:  0x000099BC,\n\t3353:  0x00004BBD,\n\t3354:  0x00004B97,\n\t3355:  0x0000937D,\n\t3356:  0x00005872,\n\t3357:  0x00021302,\n\t3358:  0x00005822,\n\t3359:  0x000249B8,\n\t3360:  0x000214E8,\n\t3361:  0x00007844,\n\t3362:  0x0002271F,\n\t3363:  0x00023DB8,\n\t3364:  0x000068C5,\n\t3365:  0x00003D7D,\n\t3366:  0x00009458,\n\t3367:  0x00003927,\n\t3368:  0x00006150,\n\t3369:  0x00022781,\n\t3370:  0x0002296B,\n\t3371:  0x00006107,\n\t3372:  0x00009C4F,\n\t3373:  0x00009C53,\n\t3374:  0x00009C7B,\n\t3375:  0x00009C35,\n\t3376:  0x00009C10,\n\t3377:  0x00009B7F,\n\t3378:  0x00009BCF,\n\t3379:  0x00029E2D,\n\t3380:  0x00009B9F,\n\t3381:  0x0002A1F5,\n\t3382:  0x0002A0FE,\n\t3383:  0x00009D21,\n\t3384:  0x00004CAE,\n\t3385:  0x00024104,\n\t3386:  0x00009E18,\n\t3387:  0x00004CB0,\n\t3388:  0x00009D0C,\n\t3389:  0x0002A1B4,\n\t3390:  0x0002A0ED,\n\t3391:  0x0002A0F3,\n\t3392:  0x0002992F,\n\t3393:  0x00009DA5,\n\t3394:  0x000084BD,\n\t3395:  0x00026E12,\n\t3396:  0x00026FDF,\n\t3397:  0x00026B82,\n\t3398:  0x000085FC,\n\t3399:  0x00004533,\n\t3400:  0x00026DA4,\n\t3401:  0x00026E84,\n\t3402:  0x00026DF0,\n\t3403:  0x00008420,\n\t3404:  0x000085EE,\n\t3405:  0x00026E00,\n\t3406:  0x000237D7,\n\t3407:  0x00026064,\n\t3408:  0x000079E2,\n\t3409:  0x0002359C,\n\t3410:  0x00023640,\n\t3411:  0x0000492D,\n\t3412:  0x000249DE,\n\t3413:  0x00003D62,\n\t3414:  0x000093DB,\n\t3415:  0x000092BE,\n\t3416:  0x00009348,\n\t3417:  0x000202BF,\n\t3418:  0x000078B9,\n\t3419:  0x00009277,\n\t3420:  0x0000944D,\n\t3421:  0x00004FE4,\n\t3422:  0x00003440,\n\t3423:  0x00009064,\n\t3424:  0x0002555D,\n\t3425:  0x0000783D,\n\t3426:  0x00007854,\n\t3427:  0x000078B6,\n\t3428:  0x0000784B,\n\t3429:  0x00021757,\n\t3430:  0x000231C9,\n\t3431:  0x00024941,\n\t3432:  0x0000369A,\n\t3433:  0x00004F72,\n\t3434:  0x00006FDA,\n\t3435:  0x00006FD9,\n\t3436:  0x0000701E,\n\t3437:  0x0000701E,\n\t3438:  0x00005414,\n\t3439:  0x000241B5,\n\t3440:  0x000057BB,\n\t3441:  0x000058F3,\n\t3442:  0x0000578A,\n\t3443:  0x00009D16,\n\t3444:  0x000057D7,\n\t3445:  0x00007134,\n\t3446:  0x000034AF,\n\t3447:  0x000241AC,\n\t3448:  0x000071EB,\n\t3449:  0x00026C40,\n\t3450:  0x00024F97,\n\t3451:  0x00005B28,\n\t3452:  0x000217B5,\n\t3453:  0x00028A49,\n\t3454:  0x0000610C,\n\t3455:  0x00005ACE,\n\t3456:  0x00005A0B,\n\t3457:  0x000042BC,\n\t3458:  0x00024488,\n\t3459:  0x0000372C,\n\t3460:  0x00004B7B,\n\t3461:  0x000289FC,\n\t3462:  0x000093BB,\n\t3463:  0x000093B8,\n\t3464:  0x000218D6,\n\t3465:  0x00020F1D,\n\t3466:  0x00008472,\n\t3467:  0x00026CC0,\n\t3468:  0x00021413,\n\t3469:  0x000242FA,\n\t3470:  0x00022C26,\n\t3471:  0x000243C1,\n\t3472:  0x00005994,\n\t3473:  0x00023DB7,\n\t3474:  0x00026741,\n\t3475:  0x00007DA8,\n\t3476:  0x0002615B,\n\t3477:  0x000260A4,\n\t3478:  0x000249B9,\n\t3479:  0x0002498B,\n\t3480:  0x000289FA,\n\t3481:  0x000092E5,\n\t3482:  0x000073E2,\n\t3483:  0x00003EE9,\n\t3484:  0x000074B4,\n\t3485:  0x00028B63,\n\t3486:  0x0002189F,\n\t3487:  0x00003EE1,\n\t3488:  0x00024AB3,\n\t3489:  0x00006AD8,\n\t3490:  0x000073F3,\n\t3491:  0x000073FB,\n\t3492:  0x00003ED6,\n\t3493:  0x00024A3E,\n\t3494:  0x00024A94,\n\t3495:  0x000217D9,\n\t3496:  0x00024A66,\n\t3497:  0x000203A7,\n\t3498:  0x00021424,\n\t3499:  0x000249E5,\n\t3500:  0x00007448,\n\t3501:  0x00024916,\n\t3502:  0x000070A5,\n\t3503:  0x00024976,\n\t3504:  0x00009284,\n\t3505:  0x000073E6,\n\t3506:  0x0000935F,\n\t3507:  0x000204FE,\n\t3508:  0x00009331,\n\t3509:  0x00028ACE,\n\t3510:  0x00028A16,\n\t3511:  0x00009386,\n\t3512:  0x00028BE7,\n\t3513:  0x000255D5,\n\t3514:  0x00004935,\n\t3515:  0x00028A82,\n\t3516:  0x0000716B,\n\t3517:  0x00024943,\n\t3518:  0x00020CFF,\n\t3519:  0x000056A4,\n\t3520:  0x0002061A,\n\t3521:  0x00020BEB,\n\t3522:  0x00020CB8,\n\t3523:  0x00005502,\n\t3524:  0x000079C4,\n\t3525:  0x000217FA,\n\t3526:  0x00007DFE,\n\t3527:  0x000216C2,\n\t3528:  0x00024A50,\n\t3529:  0x00021852,\n\t3530:  0x0000452E,\n\t3531:  0x00009401,\n\t3532:  0x0000370A,\n\t3533:  0x00028AC0,\n\t3534:  0x000249AD,\n\t3535:  0x000059B0,\n\t3536:  0x000218BF,\n\t3537:  0x00021883,\n\t3538:  0x00027484,\n\t3539:  0x00005AA1,\n\t3540:  0x000036E2,\n\t3541:  0x00023D5B,\n\t3542:  0x000036B0,\n\t3543:  0x0000925F,\n\t3544:  0x00005A79,\n\t3545:  0x00028A81,\n\t3546:  0x00021862,\n\t3547:  0x00009374,\n\t3548:  0x00003CCD,\n\t3549:  0x00020AB4,\n\t3550:  0x00004A96,\n\t3551:  0x0000398A,\n\t3552:  0x000050F4,\n\t3553:  0x00003D69,\n\t3554:  0x00003D4C,\n\t3555:  0x0002139C,\n\t3556:  0x00007175,\n\t3557:  0x000042FB,\n\t3558:  0x00028218,\n\t3559:  0x00006E0F,\n\t3560:  0x000290E4,\n\t3561:  0x000044EB,\n\t3562:  0x00006D57,\n\t3563:  0x00027E4F,\n\t3564:  0x00007067,\n\t3565:  0x00006CAF,\n\t3566:  0x00003CD6,\n\t3567:  0x00023FED,\n\t3568:  0x00023E2D,\n\t3569:  0x00006E02,\n\t3570:  0x00006F0C,\n\t3571:  0x00003D6F,\n\t3572:  0x000203F5,\n\t3573:  0x00007551,\n\t3574:  0x000036BC,\n\t3575:  0x000034C8,\n\t3576:  0x00004680,\n\t3577:  0x00003EDA,\n\t3578:  0x00004871,\n\t3579:  0x000059C4,\n\t3580:  0x0000926E,\n\t3581:  0x0000493E,\n\t3582:  0x00008F41,\n\t3583:  0x00028C1C,\n\t3584:  0x00026BC0,\n\t3585:  0x00005812,\n\t3586:  0x000057C8,\n\t3587:  0x000036D6,\n\t3588:  0x00021452,\n\t3589:  0x000070FE,\n\t3590:  0x00024362,\n\t3591:  0x00024A71,\n\t3592:  0x00022FE3,\n\t3593:  0x000212B0,\n\t3594:  0x000223BD,\n\t3595:  0x000068B9,\n\t3596:  0x00006967,\n\t3597:  0x00021398,\n\t3598:  0x000234E5,\n\t3599:  0x00027BF4,\n\t3600:  0x000236DF,\n\t3601:  0x00028A83,\n\t3602:  0x000237D6,\n\t3603:  0x000233FA,\n\t3604:  0x00024C9F,\n\t3605:  0x00006A1A,\n\t3606:  0x000236AD,\n\t3607:  0x00026CB7,\n\t3608:  0x0000843E,\n\t3609:  0x000044DF,\n\t3610:  0x000044CE,\n\t3611:  0x00026D26,\n\t3612:  0x00026D51,\n\t3613:  0x00026C82,\n\t3614:  0x00026FDE,\n\t3615:  0x00006F17,\n\t3616:  0x00027109,\n\t3617:  0x0000833D,\n\t3618:  0x0002173A,\n\t3619:  0x000083ED,\n\t3620:  0x00026C80,\n\t3621:  0x00027053,\n\t3622:  0x000217DB,\n\t3623:  0x00005989,\n\t3624:  0x00005A82,\n\t3625:  0x000217B3,\n\t3626:  0x00005A61,\n\t3627:  0x00005A71,\n\t3628:  0x00021905,\n\t3629:  0x000241FC,\n\t3630:  0x0000372D,\n\t3631:  0x000059EF,\n\t3632:  0x0002173C,\n\t3633:  0x000036C7,\n\t3634:  0x0000718E,\n\t3635:  0x00009390,\n\t3636:  0x0000669A,\n\t3637:  0x000242A5,\n\t3638:  0x00005A6E,\n\t3639:  0x00005A2B,\n\t3640:  0x00024293,\n\t3641:  0x00006A2B,\n\t3642:  0x00023EF9,\n\t3643:  0x00027736,\n\t3644:  0x0002445B,\n\t3645:  0x000242CA,\n\t3646:  0x0000711D,\n\t3647:  0x00024259,\n\t3648:  0x000289E1,\n\t3649:  0x00004FB0,\n\t3650:  0x00026D28,\n\t3651:  0x00005CC2,\n\t3652:  0x000244CE,\n\t3653:  0x00027E4D,\n\t3654:  0x000243BD,\n\t3655:  0x00006A0C,\n\t3656:  0x00024256,\n\t3657:  0x00021304,\n\t3658:  0x000070A6,\n\t3659:  0x00007133,\n\t3660:  0x000243E9,\n\t3661:  0x00003DA5,\n\t3662:  0x00006CDF,\n\t3663:  0x0002F825,\n\t3664:  0x00024A4F,\n\t3665:  0x00007E65,\n\t3666:  0x000059EB,\n\t3667:  0x00005D2F,\n\t3668:  0x00003DF3,\n\t3669:  0x00005F5C,\n\t3670:  0x00024A5D,\n\t3671:  0x000217DF,\n\t3672:  0x00007DA4,\n\t3673:  0x00008426,\n\t3674:  0x00005485,\n\t3675:  0x00023AFA,\n\t3676:  0x00023300,\n\t3677:  0x00020214,\n\t3678:  0x0000577E,\n\t3679:  0x000208D5,\n\t3680:  0x00020619,\n\t3681:  0x00003FE5,\n\t3682:  0x00021F9E,\n\t3683:  0x0002A2B6,\n\t3684:  0x00007003,\n\t3685:  0x0002915B,\n\t3686:  0x00005D70,\n\t3687:  0x0000738F,\n\t3688:  0x00007CD3,\n\t3689:  0x00028A59,\n\t3690:  0x00029420,\n\t3691:  0x00004FC8,\n\t3692:  0x00007FE7,\n\t3693:  0x000072CD,\n\t3694:  0x00007310,\n\t3695:  0x00027AF4,\n\t3696:  0x00007338,\n\t3697:  0x00007339,\n\t3698:  0x000256F6,\n\t3699:  0x00007341,\n\t3700:  0x00007348,\n\t3701:  0x00003EA9,\n\t3702:  0x00027B18,\n\t3703:  0x0000906C,\n\t3704:  0x000071F5,\n\t3705:  0x000248F2,\n\t3706:  0x000073E1,\n\t3707:  0x000081F6,\n\t3708:  0x00003ECA,\n\t3709:  0x0000770C,\n\t3710:  0x00003ED1,\n\t3711:  0x00006CA2,\n\t3712:  0x000056FD,\n\t3713:  0x00007419,\n\t3714:  0x0000741E,\n\t3715:  0x0000741F,\n\t3716:  0x00003EE2,\n\t3717:  0x00003EF0,\n\t3718:  0x00003EF4,\n\t3719:  0x00003EFA,\n\t3720:  0x000074D3,\n\t3721:  0x00003F0E,\n\t3722:  0x00003F53,\n\t3723:  0x00007542,\n\t3724:  0x0000756D,\n\t3725:  0x00007572,\n\t3726:  0x0000758D,\n\t3727:  0x00003F7C,\n\t3728:  0x000075C8,\n\t3729:  0x000075DC,\n\t3730:  0x00003FC0,\n\t3731:  0x0000764D,\n\t3732:  0x00003FD7,\n\t3733:  0x00007674,\n\t3734:  0x00003FDC,\n\t3735:  0x0000767A,\n\t3736:  0x00024F5C,\n\t3737:  0x00007188,\n\t3738:  0x00005623,\n\t3739:  0x00008980,\n\t3740:  0x00005869,\n\t3741:  0x0000401D,\n\t3742:  0x00007743,\n\t3743:  0x00004039,\n\t3744:  0x00006761,\n\t3745:  0x00004045,\n\t3746:  0x000035DB,\n\t3747:  0x00007798,\n\t3748:  0x0000406A,\n\t3749:  0x0000406F,\n\t3750:  0x00005C5E,\n\t3751:  0x000077BE,\n\t3752:  0x000077CB,\n\t3753:  0x000058F2,\n\t3754:  0x00007818,\n\t3755:  0x000070B9,\n\t3756:  0x0000781C,\n\t3757:  0x000040A8,\n\t3758:  0x00007839,\n\t3759:  0x00007847,\n\t3760:  0x00007851,\n\t3761:  0x00007866,\n\t3762:  0x00008448,\n\t3763:  0x00025535,\n\t3764:  0x00007933,\n\t3765:  0x00006803,\n\t3766:  0x00007932,\n\t3767:  0x00004103,\n\t3768:  0x00004109,\n\t3769:  0x00007991,\n\t3770:  0x00007999,\n\t3771:  0x00008FBB,\n\t3772:  0x00007A06,\n\t3773:  0x00008FBC,\n\t3774:  0x00004167,\n\t3775:  0x00007A91,\n\t3776:  0x000041B2,\n\t3777:  0x00007ABC,\n\t3778:  0x00008279,\n\t3779:  0x000041C4,\n\t3780:  0x00007ACF,\n\t3781:  0x00007ADB,\n\t3782:  0x000041CF,\n\t3783:  0x00004E21,\n\t3784:  0x00007B62,\n\t3785:  0x00007B6C,\n\t3786:  0x00007B7B,\n\t3787:  0x00007C12,\n\t3788:  0x00007C1B,\n\t3789:  0x00004260,\n\t3790:  0x0000427A,\n\t3791:  0x00007C7B,\n\t3792:  0x00007C9C,\n\t3793:  0x0000428C,\n\t3794:  0x00007CB8,\n\t3795:  0x00004294,\n\t3796:  0x00007CED,\n\t3797:  0x00008F93,\n\t3798:  0x000070C0,\n\t3799:  0x00020CCF,\n\t3800:  0x00007DCF,\n\t3801:  0x00007DD4,\n\t3802:  0x00007DD0,\n\t3803:  0x00007DFD,\n\t3804:  0x00007FAE,\n\t3805:  0x00007FB4,\n\t3806:  0x0000729F,\n\t3807:  0x00004397,\n\t3808:  0x00008020,\n\t3809:  0x00008025,\n\t3810:  0x00007B39,\n\t3811:  0x0000802E,\n\t3812:  0x00008031,\n\t3813:  0x00008054,\n\t3814:  0x00003DCC,\n\t3815:  0x000057B4,\n\t3816:  0x000070A0,\n\t3817:  0x000080B7,\n\t3818:  0x000080E9,\n\t3819:  0x000043ED,\n\t3820:  0x0000810C,\n\t3821:  0x0000732A,\n\t3822:  0x0000810E,\n\t3823:  0x00008112,\n\t3824:  0x00007560,\n\t3825:  0x00008114,\n\t3826:  0x00004401,\n\t3827:  0x00003B39,\n\t3828:  0x00008156,\n\t3829:  0x00008159,\n\t3830:  0x0000815A,\n\t3831:  0x00004413,\n\t3832:  0x0000583A,\n\t3833:  0x0000817C,\n\t3834:  0x00008184,\n\t3835:  0x00004425,\n\t3836:  0x00008193,\n\t3837:  0x0000442D,\n\t3838:  0x000081A5,\n\t3839:  0x000057EF,\n\t3840:  0x000081C1,\n\t3841:  0x000081E4,\n\t3842:  0x00008254,\n\t3843:  0x0000448F,\n\t3844:  0x000082A6,\n\t3845:  0x00008276,\n\t3846:  0x000082CA,\n\t3847:  0x000082D8,\n\t3848:  0x000082FF,\n\t3849:  0x000044B0,\n\t3850:  0x00008357,\n\t3851:  0x00009669,\n\t3852:  0x0000698A,\n\t3853:  0x00008405,\n\t3854:  0x000070F5,\n\t3855:  0x00008464,\n\t3856:  0x000060E3,\n\t3857:  0x00008488,\n\t3858:  0x00004504,\n\t3859:  0x000084BE,\n\t3860:  0x000084E1,\n\t3861:  0x000084F8,\n\t3862:  0x00008510,\n\t3863:  0x00008538,\n\t3864:  0x00008552,\n\t3865:  0x0000453B,\n\t3866:  0x0000856F,\n\t3867:  0x00008570,\n\t3868:  0x000085E0,\n\t3869:  0x00004577,\n\t3870:  0x00008672,\n\t3871:  0x00008692,\n\t3872:  0x000086B2,\n\t3873:  0x000086EF,\n\t3874:  0x00009645,\n\t3875:  0x0000878B,\n\t3876:  0x00004606,\n\t3877:  0x00004617,\n\t3878:  0x000088AE,\n\t3879:  0x000088FF,\n\t3880:  0x00008924,\n\t3881:  0x00008947,\n\t3882:  0x00008991,\n\t3883:  0x00027967,\n\t3884:  0x00008A29,\n\t3885:  0x00008A38,\n\t3886:  0x00008A94,\n\t3887:  0x00008AB4,\n\t3888:  0x00008C51,\n\t3889:  0x00008CD4,\n\t3890:  0x00008CF2,\n\t3891:  0x00008D1C,\n\t3892:  0x00004798,\n\t3893:  0x0000585F,\n\t3894:  0x00008DC3,\n\t3895:  0x000047ED,\n\t3896:  0x00004EEE,\n\t3897:  0x00008E3A,\n\t3898:  0x000055D8,\n\t3899:  0x00005754,\n\t3900:  0x00008E71,\n\t3901:  0x000055F5,\n\t3902:  0x00008EB0,\n\t3903:  0x00004837,\n\t3904:  0x00008ECE,\n\t3905:  0x00008EE2,\n\t3906:  0x00008EE4,\n\t3907:  0x00008EED,\n\t3908:  0x00008EF2,\n\t3909:  0x00008FB7,\n\t3910:  0x00008FC1,\n\t3911:  0x00008FCA,\n\t3912:  0x00008FCC,\n\t3913:  0x00009033,\n\t3914:  0x000099C4,\n\t3915:  0x000048AD,\n\t3916:  0x000098E0,\n\t3917:  0x00009213,\n\t3918:  0x0000491E,\n\t3919:  0x00009228,\n\t3920:  0x00009258,\n\t3921:  0x0000926B,\n\t3922:  0x000092B1,\n\t3923:  0x000092AE,\n\t3924:  0x000092BF,\n\t3925:  0x000092E3,\n\t3926:  0x000092EB,\n\t3927:  0x000092F3,\n\t3928:  0x000092F4,\n\t3929:  0x000092FD,\n\t3930:  0x00009343,\n\t3931:  0x00009384,\n\t3932:  0x000093AD,\n\t3933:  0x00004945,\n\t3934:  0x00004951,\n\t3935:  0x00009EBF,\n\t3936:  0x00009417,\n\t3937:  0x00005301,\n\t3938:  0x0000941D,\n\t3939:  0x0000942D,\n\t3940:  0x0000943E,\n\t3941:  0x0000496A,\n\t3942:  0x00009454,\n\t3943:  0x00009479,\n\t3944:  0x0000952D,\n\t3945:  0x000095A2,\n\t3946:  0x000049A7,\n\t3947:  0x000095F4,\n\t3948:  0x00009633,\n\t3949:  0x000049E5,\n\t3950:  0x000067A0,\n\t3951:  0x00004A24,\n\t3952:  0x00009740,\n\t3953:  0x00004A35,\n\t3954:  0x000097B2,\n\t3955:  0x000097C2,\n\t3956:  0x00005654,\n\t3957:  0x00004AE4,\n\t3958:  0x000060E8,\n\t3959:  0x000098B9,\n\t3960:  0x00004B19,\n\t3961:  0x000098F1,\n\t3962:  0x00005844,\n\t3963:  0x0000990E,\n\t3964:  0x00009919,\n\t3965:  0x000051B4,\n\t3966:  0x0000991C,\n\t3967:  0x00009937,\n\t3968:  0x00009942,\n\t3969:  0x0000995D,\n\t3970:  0x00009962,\n\t3971:  0x00004B70,\n\t3972:  0x000099C5,\n\t3973:  0x00004B9D,\n\t3974:  0x00009A3C,\n\t3975:  0x00009B0F,\n\t3976:  0x00007A83,\n\t3977:  0x00009B69,\n\t3978:  0x00009B81,\n\t3979:  0x00009BDD,\n\t3980:  0x00009BF1,\n\t3981:  0x00009BF4,\n\t3982:  0x00004C6D,\n\t3983:  0x00009C20,\n\t3984:  0x0000376F,\n\t3985:  0x00021BC2,\n\t3986:  0x00009D49,\n\t3987:  0x00009C3A,\n\t3988:  0x00009EFE,\n\t3989:  0x00005650,\n\t3990:  0x00009D93,\n\t3991:  0x00009DBD,\n\t3992:  0x00009DC0,\n\t3993:  0x00009DFC,\n\t3994:  0x000094F6,\n\t3995:  0x00008FB6,\n\t3996:  0x00009E7B,\n\t3997:  0x00009EAC,\n\t3998:  0x00009EB1,\n\t3999:  0x00009EBD,\n\t4000:  0x00009EC6,\n\t4001:  0x000094DC,\n\t4002:  0x00009EE2,\n\t4003:  0x00009EF1,\n\t4004:  0x00009EF8,\n\t4005:  0x00007AC8,\n\t4006:  0x00009F44,\n\t4007:  0x00020094,\n\t4008:  0x000202B7,\n\t4009:  0x000203A0,\n\t4010:  0x0000691A,\n\t4011:  0x000094C3,\n\t4012:  0x000059AC,\n\t4013:  0x000204D7,\n\t4014:  0x00005840,\n\t4015:  0x000094C1,\n\t4016:  0x000037B9,\n\t4017:  0x000205D5,\n\t4018:  0x00020615,\n\t4019:  0x00020676,\n\t4020:  0x000216BA,\n\t4021:  0x00005757,\n\t4022:  0x00007173,\n\t4023:  0x00020AC2,\n\t4024:  0x00020ACD,\n\t4025:  0x00020BBF,\n\t4026:  0x0000546A,\n\t4027:  0x0002F83B,\n\t4028:  0x00020BCB,\n\t4029:  0x0000549E,\n\t4030:  0x00020BFB,\n\t4031:  0x00020C3B,\n\t4032:  0x00020C53,\n\t4033:  0x00020C65,\n\t4034:  0x00020C7C,\n\t4035:  0x000060E7,\n\t4036:  0x00020C8D,\n\t4037:  0x0000567A,\n\t4038:  0x00020CB5,\n\t4039:  0x00020CDD,\n\t4040:  0x00020CED,\n\t4041:  0x00020D6F,\n\t4042:  0x00020DB2,\n\t4043:  0x00020DC8,\n\t4044:  0x00006955,\n\t4045:  0x00009C2F,\n\t4046:  0x000087A5,\n\t4047:  0x00020E04,\n\t4048:  0x00020E0E,\n\t4049:  0x00020ED7,\n\t4050:  0x00020F90,\n\t4051:  0x00020F2D,\n\t4052:  0x00020E73,\n\t4053:  0x00005C20,\n\t4054:  0x00020FBC,\n\t4055:  0x00005E0B,\n\t4056:  0x0002105C,\n\t4057:  0x0002104F,\n\t4058:  0x00021076,\n\t4059:  0x0000671E,\n\t4060:  0x0002107B,\n\t4061:  0x00021088,\n\t4062:  0x00021096,\n\t4063:  0x00003647,\n\t4064:  0x000210BF,\n\t4065:  0x000210D3,\n\t4066:  0x0002112F,\n\t4067:  0x0002113B,\n\t4068:  0x00005364,\n\t4069:  0x000084AD,\n\t4070:  0x000212E3,\n\t4071:  0x00021375,\n\t4072:  0x00021336,\n\t4073:  0x00008B81,\n\t4074:  0x00021577,\n\t4075:  0x00021619,\n\t4076:  0x000217C3,\n\t4077:  0x000217C7,\n\t4078:  0x00004E78,\n\t4079:  0x000070BB,\n\t4080:  0x0002182D,\n\t4081:  0x0002196A,\n\t4082:  0x00021A2D,\n\t4083:  0x00021A45,\n\t4084:  0x00021C2A,\n\t4085:  0x00021C70,\n\t4086:  0x00021CAC,\n\t4087:  0x00021EC8,\n\t4088:  0x000062C3,\n\t4089:  0x00021ED5,\n\t4090:  0x00021F15,\n\t4091:  0x00007198,\n\t4092:  0x00006855,\n\t4093:  0x00022045,\n\t4094:  0x000069E9,\n\t4095:  0x000036C8,\n\t4096:  0x0002227C,\n\t4097:  0x000223D7,\n\t4098:  0x000223FA,\n\t4099:  0x0002272A,\n\t4100:  0x00022871,\n\t4101:  0x0002294F,\n\t4102:  0x000082FD,\n\t4103:  0x00022967,\n\t4104:  0x00022993,\n\t4105:  0x00022AD5,\n\t4106:  0x000089A5,\n\t4107:  0x00022AE8,\n\t4108:  0x00008FA0,\n\t4109:  0x00022B0E,\n\t4110:  0x000097B8,\n\t4111:  0x00022B3F,\n\t4112:  0x00009847,\n\t4113:  0x00009ABD,\n\t4114:  0x00022C4C,\n\t4116:  0x00022C88,\n\t4117:  0x00022CB7,\n\t4118:  0x00025BE8,\n\t4119:  0x00022D08,\n\t4120:  0x00022D12,\n\t4121:  0x00022DB7,\n\t4122:  0x00022D95,\n\t4123:  0x00022E42,\n\t4124:  0x00022F74,\n\t4125:  0x00022FCC,\n\t4126:  0x00023033,\n\t4127:  0x00023066,\n\t4128:  0x0002331F,\n\t4129:  0x000233DE,\n\t4130:  0x00005FB1,\n\t4131:  0x00006648,\n\t4132:  0x000066BF,\n\t4133:  0x00027A79,\n\t4134:  0x00023567,\n\t4135:  0x000235F3,\n\t4136:  0x00007201,\n\t4137:  0x000249BA,\n\t4138:  0x000077D7,\n\t4139:  0x0002361A,\n\t4140:  0x00023716,\n\t4141:  0x00007E87,\n\t4142:  0x00020346,\n\t4143:  0x000058B5,\n\t4144:  0x0000670E,\n\t4145:  0x00006918,\n\t4146:  0x00023AA7,\n\t4147:  0x00027657,\n\t4148:  0x00025FE2,\n\t4149:  0x00023E11,\n\t4150:  0x00023EB9,\n\t4151:  0x000275FE,\n\t4152:  0x0002209A,\n\t4153:  0x000048D0,\n\t4154:  0x00004AB8,\n\t4155:  0x00024119,\n\t4156:  0x00028A9A,\n\t4157:  0x000242EE,\n\t4158:  0x0002430D,\n\t4159:  0x0002403B,\n\t4160:  0x00024334,\n\t4161:  0x00024396,\n\t4162:  0x00024A45,\n\t4163:  0x000205CA,\n\t4164:  0x000051D2,\n\t4165:  0x00020611,\n\t4166:  0x0000599F,\n\t4167:  0x00021EA8,\n\t4168:  0x00003BBE,\n\t4169:  0x00023CFF,\n\t4170:  0x00024404,\n\t4171:  0x000244D6,\n\t4172:  0x00005788,\n\t4173:  0x00024674,\n\t4174:  0x0000399B,\n\t4175:  0x0002472F,\n\t4176:  0x000285E8,\n\t4177:  0x000299C9,\n\t4178:  0x00003762,\n\t4179:  0x000221C3,\n\t4180:  0x00008B5E,\n\t4181:  0x00028B4E,\n\t4182:  0x000099D6,\n\t4183:  0x00024812,\n\t4184:  0x000248FB,\n\t4185:  0x00024A15,\n\t4186:  0x00007209,\n\t4187:  0x00024AC0,\n\t4188:  0x00020C78,\n\t4189:  0x00005965,\n\t4190:  0x00024EA5,\n\t4191:  0x00024F86,\n\t4192:  0x00020779,\n\t4193:  0x00008EDA,\n\t4194:  0x0002502C,\n\t4195:  0x0000528F,\n\t4196:  0x0000573F,\n\t4197:  0x00007171,\n\t4198:  0x00025299,\n\t4199:  0x00025419,\n\t4200:  0x00023F4A,\n\t4201:  0x00024AA7,\n\t4202:  0x000055BC,\n\t4203:  0x00025446,\n\t4204:  0x0002546E,\n\t4205:  0x00026B52,\n\t4206:  0x000091D4,\n\t4207:  0x00003473,\n\t4208:  0x0002553F,\n\t4209:  0x00027632,\n\t4210:  0x0002555E,\n\t4211:  0x00004718,\n\t4212:  0x00025562,\n\t4213:  0x00025566,\n\t4214:  0x000257C7,\n\t4215:  0x0002493F,\n\t4216:  0x0002585D,\n\t4217:  0x00005066,\n\t4218:  0x000034FB,\n\t4219:  0x000233CC,\n\t4220:  0x000060DE,\n\t4221:  0x00025903,\n\t4222:  0x0000477C,\n\t4223:  0x00028948,\n\t4224:  0x00025AAE,\n\t4225:  0x00025B89,\n\t4226:  0x00025C06,\n\t4227:  0x00021D90,\n\t4228:  0x000057A1,\n\t4229:  0x00007151,\n\t4230:  0x00006FB6,\n\t4231:  0x00026102,\n\t4232:  0x00027C12,\n\t4233:  0x00009056,\n\t4234:  0x000261B2,\n\t4235:  0x00024F9A,\n\t4236:  0x00008B62,\n\t4237:  0x00026402,\n\t4238:  0x0002644A,\n\t4239:  0x00005D5B,\n\t4240:  0x00026BF7,\n\t4241:  0x00008F36,\n\t4242:  0x00026484,\n\t4243:  0x0002191C,\n\t4244:  0x00008AEA,\n\t4245:  0x000249F6,\n\t4246:  0x00026488,\n\t4247:  0x00023FEF,\n\t4248:  0x00026512,\n\t4249:  0x00004BC0,\n\t4250:  0x000265BF,\n\t4251:  0x000266B5,\n\t4252:  0x0002271B,\n\t4253:  0x00009465,\n\t4254:  0x000257E1,\n\t4255:  0x00006195,\n\t4256:  0x00005A27,\n\t4257:  0x0002F8CD,\n\t4258:  0x00004FBB,\n\t4259:  0x000056B9,\n\t4260:  0x00024521,\n\t4261:  0x000266FC,\n\t4262:  0x00004E6A,\n\t4263:  0x00024934,\n\t4264:  0x00009656,\n\t4265:  0x00006D8F,\n\t4266:  0x00026CBD,\n\t4267:  0x00003618,\n\t4268:  0x00008977,\n\t4269:  0x00026799,\n\t4270:  0x0002686E,\n\t4271:  0x00026411,\n\t4272:  0x0002685E,\n\t4273:  0x000071DF,\n\t4274:  0x000268C7,\n\t4275:  0x00007B42,\n\t4276:  0x000290C0,\n\t4277:  0x00020A11,\n\t4278:  0x00026926,\n\t4279:  0x00009104,\n\t4280:  0x00026939,\n\t4281:  0x00007A45,\n\t4282:  0x00009DF0,\n\t4283:  0x000269FA,\n\t4284:  0x00009A26,\n\t4285:  0x00026A2D,\n\t4286:  0x0000365F,\n\t4287:  0x00026469,\n\t4288:  0x00020021,\n\t4289:  0x00007983,\n\t4290:  0x00026A34,\n\t4291:  0x00026B5B,\n\t4292:  0x00005D2C,\n\t4293:  0x00023519,\n\t4294:  0x000083CF,\n\t4295:  0x00026B9D,\n\t4296:  0x000046D0,\n\t4297:  0x00026CA4,\n\t4298:  0x0000753B,\n\t4299:  0x00008865,\n\t4300:  0x00026DAE,\n\t4301:  0x000058B6,\n\t4302:  0x0000371C,\n\t4303:  0x0002258D,\n\t4304:  0x0002704B,\n\t4305:  0x000271CD,\n\t4306:  0x00003C54,\n\t4307:  0x00027280,\n\t4308:  0x00027285,\n\t4309:  0x00009281,\n\t4310:  0x0002217A,\n\t4311:  0x0002728B,\n\t4312:  0x00009330,\n\t4313:  0x000272E6,\n\t4314:  0x000249D0,\n\t4315:  0x00006C39,\n\t4316:  0x0000949F,\n\t4317:  0x00027450,\n\t4318:  0x00020EF8,\n\t4319:  0x00008827,\n\t4320:  0x000088F5,\n\t4321:  0x00022926,\n\t4322:  0x00028473,\n\t4323:  0x000217B1,\n\t4324:  0x00006EB8,\n\t4325:  0x00024A2A,\n\t4326:  0x00021820,\n\t4327:  0x000039A4,\n\t4328:  0x000036B9,\n\t4329:  0x00005C10,\n\t4330:  0x000079E3,\n\t4331:  0x0000453F,\n\t4332:  0x000066B6,\n\t4333:  0x00029CAD,\n\t4334:  0x000298A4,\n\t4335:  0x00008943,\n\t4336:  0x000277CC,\n\t4337:  0x00027858,\n\t4338:  0x000056D6,\n\t4339:  0x000040DF,\n\t4340:  0x0002160A,\n\t4341:  0x000039A1,\n\t4342:  0x0002372F,\n\t4343:  0x000280E8,\n\t4344:  0x000213C5,\n\t4345:  0x000071AD,\n\t4346:  0x00008366,\n\t4347:  0x000279DD,\n\t4348:  0x000291A8,\n\t4349:  0x00005A67,\n\t4350:  0x00004CB7,\n\t4351:  0x000270AF,\n\t4352:  0x000289AB,\n\t4353:  0x000279FD,\n\t4354:  0x00027A0A,\n\t4355:  0x00027B0B,\n\t4356:  0x00027D66,\n\t4357:  0x0002417A,\n\t4358:  0x00007B43,\n\t4359:  0x0000797E,\n\t4360:  0x00028009,\n\t4361:  0x00006FB5,\n\t4362:  0x0002A2DF,\n\t4363:  0x00006A03,\n\t4364:  0x00028318,\n\t4365:  0x000053A2,\n\t4366:  0x00026E07,\n\t4367:  0x000093BF,\n\t4368:  0x00006836,\n\t4369:  0x0000975D,\n\t4370:  0x0002816F,\n\t4371:  0x00028023,\n\t4372:  0x000269B5,\n\t4373:  0x000213ED,\n\t4374:  0x0002322F,\n\t4375:  0x00028048,\n\t4376:  0x00005D85,\n\t4377:  0x00028C30,\n\t4378:  0x00028083,\n\t4379:  0x00005715,\n\t4380:  0x00009823,\n\t4381:  0x00028949,\n\t4382:  0x00005DAB,\n\t4383:  0x00024988,\n\t4384:  0x000065BE,\n\t4385:  0x000069D5,\n\t4386:  0x000053D2,\n\t4387:  0x00024AA5,\n\t4388:  0x00023F81,\n\t4389:  0x00003C11,\n\t4390:  0x00006736,\n\t4391:  0x00028090,\n\t4392:  0x000280F4,\n\t4393:  0x0002812E,\n\t4394:  0x00021FA1,\n\t4395:  0x0002814F,\n\t4396:  0x00028189,\n\t4397:  0x000281AF,\n\t4398:  0x0002821A,\n\t4399:  0x00028306,\n\t4400:  0x0002832F,\n\t4401:  0x0002838A,\n\t4402:  0x000035CA,\n\t4403:  0x00028468,\n\t4404:  0x000286AA,\n\t4405:  0x000048FA,\n\t4406:  0x000063E6,\n\t4407:  0x00028956,\n\t4408:  0x00007808,\n\t4409:  0x00009255,\n\t4410:  0x000289B8,\n\t4411:  0x000043F2,\n\t4412:  0x000289E7,\n\t4413:  0x000043DF,\n\t4414:  0x000289E8,\n\t4415:  0x00028B46,\n\t4416:  0x00028BD4,\n\t4417:  0x000059F8,\n\t4418:  0x00028C09,\n\t4419:  0x00008F0B,\n\t4420:  0x00028FC5,\n\t4421:  0x000290EC,\n\t4422:  0x00007B51,\n\t4423:  0x00029110,\n\t4424:  0x0002913C,\n\t4425:  0x00003DF7,\n\t4426:  0x0002915E,\n\t4427:  0x00024ACA,\n\t4428:  0x00008FD0,\n\t4429:  0x0000728F,\n\t4430:  0x0000568B,\n\t4431:  0x000294E7,\n\t4432:  0x000295E9,\n\t4433:  0x000295B0,\n\t4434:  0x000295B8,\n\t4435:  0x00029732,\n\t4436:  0x000298D1,\n\t4437:  0x00029949,\n\t4438:  0x0002996A,\n\t4439:  0x000299C3,\n\t4440:  0x00029A28,\n\t4441:  0x00029B0E,\n\t4442:  0x00029D5A,\n\t4443:  0x00029D9B,\n\t4444:  0x00007E9F,\n\t4445:  0x00029EF8,\n\t4446:  0x00029F23,\n\t4447:  0x00004CA4,\n\t4448:  0x00009547,\n\t4449:  0x0002A293,\n\t4450:  0x000071A2,\n\t4451:  0x0002A2FF,\n\t4452:  0x00004D91,\n\t4453:  0x00009012,\n\t4454:  0x0002A5CB,\n\t4455:  0x00004D9C,\n\t4456:  0x00020C9C,\n\t4457:  0x00008FBE,\n\t4458:  0x000055C1,\n\t4459:  0x00008FBA,\n\t4460:  0x000224B0,\n\t4461:  0x00008FB9,\n\t4462:  0x00024A93,\n\t4463:  0x00004509,\n\t4464:  0x00007E7F,\n\t4465:  0x00006F56,\n\t4466:  0x00006AB1,\n\t4467:  0x00004EEA,\n\t4468:  0x000034E4,\n\t4469:  0x00028B2C,\n\t4470:  0x0002789D,\n\t4471:  0x0000373A,\n\t4472:  0x00008E80,\n\t4473:  0x000217F5,\n\t4474:  0x00028024,\n\t4475:  0x00028B6C,\n\t4476:  0x00028B99,\n\t4477:  0x00027A3E,\n\t4478:  0x000266AF,\n\t4479:  0x00003DEB,\n\t4480:  0x00027655,\n\t4481:  0x00023CB7,\n\t4482:  0x00025635,\n\t4483:  0x00025956,\n\t4484:  0x00004E9A,\n\t4485:  0x00025E81,\n\t4486:  0x00026258,\n\t4487:  0x000056BF,\n\t4488:  0x00020E6D,\n\t4489:  0x00008E0E,\n\t4490:  0x00005B6D,\n\t4491:  0x00023E88,\n\t4492:  0x00024C9E,\n\t4493:  0x000063DE,\n\t4494:  0x000062D0,\n\t4495:  0x000217F6,\n\t4496:  0x0002187B,\n\t4497:  0x00006530,\n\t4498:  0x0000562D,\n\t4499:  0x00025C4A,\n\t4500:  0x0000541A,\n\t4501:  0x00025311,\n\t4502:  0x00003DC6,\n\t4503:  0x00029D98,\n\t4504:  0x00004C7D,\n\t4505:  0x00005622,\n\t4506:  0x0000561E,\n\t4507:  0x00007F49,\n\t4508:  0x00025ED8,\n\t4509:  0x00005975,\n\t4510:  0x00023D40,\n\t4511:  0x00008770,\n\t4512:  0x00004E1C,\n\t4513:  0x00020FEA,\n\t4514:  0x00020D49,\n\t4515:  0x000236BA,\n\t4516:  0x00008117,\n\t4517:  0x00009D5E,\n\t4518:  0x00008D18,\n\t4519:  0x0000763B,\n\t4520:  0x00009C45,\n\t4521:  0x0000764E,\n\t4522:  0x000077B9,\n\t4523:  0x00009345,\n\t4524:  0x00005432,\n\t4525:  0x00008148,\n\t4526:  0x000082F7,\n\t4527:  0x00005625,\n\t4528:  0x00008132,\n\t4529:  0x00008418,\n\t4530:  0x000080BD,\n\t4531:  0x000055EA,\n\t4532:  0x00007962,\n\t4533:  0x00005643,\n\t4534:  0x00005416,\n\t4535:  0x00020E9D,\n\t4536:  0x000035CE,\n\t4537:  0x00005605,\n\t4538:  0x000055F1,\n\t4539:  0x000066F1,\n\t4540:  0x000282E2,\n\t4541:  0x0000362D,\n\t4542:  0x00007534,\n\t4543:  0x000055F0,\n\t4544:  0x000055BA,\n\t4545:  0x00005497,\n\t4546:  0x00005572,\n\t4547:  0x00020C41,\n\t4548:  0x00020C96,\n\t4549:  0x00005ED0,\n\t4550:  0x00025148,\n\t4551:  0x00020E76,\n\t4552:  0x00022C62,\n\t4553:  0x00020EA2,\n\t4554:  0x00009EAB,\n\t4555:  0x00007D5A,\n\t4556:  0x000055DE,\n\t4557:  0x00021075,\n\t4558:  0x0000629D,\n\t4559:  0x0000976D,\n\t4560:  0x00005494,\n\t4561:  0x00008CCD,\n\t4562:  0x000071F6,\n\t4563:  0x00009176,\n\t4564:  0x000063FC,\n\t4565:  0x000063B9,\n\t4566:  0x000063FE,\n\t4567:  0x00005569,\n\t4568:  0x00022B43,\n\t4569:  0x00009C72,\n\t4570:  0x00022EB3,\n\t4571:  0x0000519A,\n\t4572:  0x000034DF,\n\t4573:  0x00020DA7,\n\t4574:  0x000051A7,\n\t4575:  0x0000544D,\n\t4576:  0x0000551E,\n\t4577:  0x00005513,\n\t4578:  0x00007666,\n\t4579:  0x00008E2D,\n\t4580:  0x0002688A,\n\t4581:  0x000075B1,\n\t4582:  0x000080B6,\n\t4583:  0x00008804,\n\t4584:  0x00008786,\n\t4585:  0x000088C7,\n\t4586:  0x000081B6,\n\t4587:  0x0000841C,\n\t4588:  0x000210C1,\n\t4589:  0x000044EC,\n\t4590:  0x00007304,\n\t4591:  0x00024706,\n\t4592:  0x00005B90,\n\t4593:  0x0000830B,\n\t4594:  0x00026893,\n\t4595:  0x0000567B,\n\t4596:  0x000226F4,\n\t4597:  0x00027D2F,\n\t4598:  0x000241A3,\n\t4599:  0x00027D73,\n\t4600:  0x00026ED0,\n\t4601:  0x000272B6,\n\t4602:  0x00009170,\n\t4603:  0x000211D9,\n\t4604:  0x00009208,\n\t4605:  0x00023CFC,\n\t4606:  0x0002A6A9,\n\t4607:  0x00020EAC,\n\t4608:  0x00020EF9,\n\t4609:  0x00007266,\n\t4610:  0x00021CA2,\n\t4611:  0x0000474E,\n\t4612:  0x00024FC2,\n\t4613:  0x00027FF9,\n\t4614:  0x00020FEB,\n\t4615:  0x000040FA,\n\t4616:  0x00009C5D,\n\t4617:  0x0000651F,\n\t4618:  0x00022DA0,\n\t4619:  0x000048F3,\n\t4620:  0x000247E0,\n\t4621:  0x00029D7C,\n\t4622:  0x00020FEC,\n\t4623:  0x00020E0A,\n\t4624:  0x00006062,\n\t4625:  0x000275A3,\n\t4626:  0x00020FED,\n\t4628:  0x00026048,\n\t4629:  0x00021187,\n\t4630:  0x000071A3,\n\t4631:  0x00007E8E,\n\t4632:  0x00009D50,\n\t4633:  0x00004E1A,\n\t4634:  0x00004E04,\n\t4635:  0x00003577,\n\t4636:  0x00005B0D,\n\t4637:  0x00006CB2,\n\t4638:  0x00005367,\n\t4639:  0x000036AC,\n\t4640:  0x000039DC,\n\t4641:  0x0000537D,\n\t4642:  0x000036A5,\n\t4643:  0x00024618,\n\t4644:  0x0000589A,\n\t4645:  0x00024B6E,\n\t4646:  0x0000822D,\n\t4647:  0x0000544B,\n\t4648:  0x000057AA,\n\t4649:  0x00025A95,\n\t4650:  0x00020979,\n\t4652:  0x00003A52,\n\t4653:  0x00022465,\n\t4654:  0x00007374,\n\t4655:  0x00029EAC,\n\t4656:  0x00004D09,\n\t4657:  0x00009BED,\n\t4658:  0x00023CFE,\n\t4659:  0x00029F30,\n\t4660:  0x00004C5B,\n\t4661:  0x00024FA9,\n\t4662:  0x0002959E,\n\t4663:  0x00029FDE,\n\t4664:  0x0000845C,\n\t4665:  0x00023DB6,\n\t4666:  0x000272B2,\n\t4667:  0x000267B3,\n\t4668:  0x00023720,\n\t4669:  0x0000632E,\n\t4670:  0x00007D25,\n\t4671:  0x00023EF7,\n\t4672:  0x00023E2C,\n\t4673:  0x00003A2A,\n\t4674:  0x00009008,\n\t4675:  0x000052CC,\n\t4676:  0x00003E74,\n\t4677:  0x0000367A,\n\t4678:  0x000045E9,\n\t4679:  0x0002048E,\n\t4680:  0x00007640,\n\t4681:  0x00005AF0,\n\t4682:  0x00020EB6,\n\t4683:  0x0000787A,\n\t4684:  0x00027F2E,\n\t4685:  0x000058A7,\n\t4686:  0x000040BF,\n\t4687:  0x0000567C,\n\t4688:  0x00009B8B,\n\t4689:  0x00005D74,\n\t4690:  0x00007654,\n\t4691:  0x0002A434,\n\t4692:  0x00009E85,\n\t4693:  0x00004CE1,\n\t4694:  0x000075F9,\n\t4695:  0x000037FB,\n\t4696:  0x00006119,\n\t4697:  0x000230DA,\n\t4698:  0x000243F2,\n\t4700:  0x0000565D,\n\t4701:  0x000212A9,\n\t4702:  0x000057A7,\n\t4703:  0x00024963,\n\t4704:  0x00029E06,\n\t4705:  0x00005234,\n\t4706:  0x000270AE,\n\t4707:  0x000035AD,\n\t4708:  0x00006C4A,\n\t4709:  0x00009D7C,\n\t4710:  0x00007C56,\n\t4711:  0x00009B39,\n\t4712:  0x000057DE,\n\t4713:  0x0002176C,\n\t4714:  0x00005C53,\n\t4715:  0x000064D3,\n\t4716:  0x000294D0,\n\t4717:  0x00026335,\n\t4718:  0x00027164,\n\t4719:  0x000086AD,\n\t4720:  0x00020D28,\n\t4721:  0x00026D22,\n\t4722:  0x00024AE2,\n\t4723:  0x00020D71,\n\t4725:  0x000051FE,\n\t4726:  0x00021F0F,\n\t4727:  0x00005D8E,\n\t4728:  0x00009703,\n\t4729:  0x00021DD1,\n\t4730:  0x00009E81,\n\t4731:  0x0000904C,\n\t4732:  0x00007B1F,\n\t4733:  0x00009B02,\n\t4734:  0x00005CD1,\n\t4735:  0x00007BA3,\n\t4736:  0x00006268,\n\t4737:  0x00006335,\n\t4738:  0x00009AFF,\n\t4739:  0x00007BCF,\n\t4740:  0x00009B2A,\n\t4741:  0x00007C7E,\n\t4742:  0x00009B2E,\n\t4743:  0x00007C42,\n\t4744:  0x00007C86,\n\t4745:  0x00009C15,\n\t4746:  0x00007BFC,\n\t4747:  0x00009B09,\n\t4748:  0x00009F17,\n\t4749:  0x00009C1B,\n\t4750:  0x0002493E,\n\t4751:  0x00009F5A,\n\t4752:  0x00005573,\n\t4753:  0x00005BC3,\n\t4754:  0x00004FFD,\n\t4755:  0x00009E98,\n\t4756:  0x00004FF2,\n\t4757:  0x00005260,\n\t4758:  0x00003E06,\n\t4759:  0x000052D1,\n\t4760:  0x00005767,\n\t4761:  0x00005056,\n\t4762:  0x000059B7,\n\t4763:  0x00005E12,\n\t4764:  0x000097C8,\n\t4765:  0x00009DAB,\n\t4766:  0x00008F5C,\n\t4767:  0x00005469,\n\t4768:  0x000097B4,\n\t4769:  0x00009940,\n\t4770:  0x000097BA,\n\t4771:  0x0000532C,\n\t4772:  0x00006130,\n\t4773:  0x0000692C,\n\t4774:  0x000053DA,\n\t4775:  0x00009C0A,\n\t4776:  0x00009D02,\n\t4777:  0x00004C3B,\n\t4778:  0x00009641,\n\t4779:  0x00006980,\n\t4780:  0x000050A6,\n\t4781:  0x00007546,\n\t4782:  0x0002176D,\n\t4783:  0x000099DA,\n\t4784:  0x00005273,\n\t4786:  0x00009159,\n\t4787:  0x00009681,\n\t4788:  0x0000915C,\n\t4790:  0x00009151,\n\t4791:  0x00028E97,\n\t4792:  0x0000637F,\n\t4793:  0x00026D23,\n\t4794:  0x00006ACA,\n\t4795:  0x00005611,\n\t4796:  0x0000918E,\n\t4797:  0x0000757A,\n\t4798:  0x00006285,\n\t4799:  0x000203FC,\n\t4800:  0x0000734F,\n\t4801:  0x00007C70,\n\t4802:  0x00025C21,\n\t4803:  0x00023CFD,\n\t4805:  0x00024919,\n\t4806:  0x000076D6,\n\t4807:  0x00009B9D,\n\t4808:  0x00004E2A,\n\t4809:  0x00020CD4,\n\t4810:  0x000083BE,\n\t4811:  0x00008842,\n\t4813:  0x00005C4A,\n\t4814:  0x000069C0,\n\t4815:  0x000050ED,\n\t4816:  0x0000577A,\n\t4817:  0x0000521F,\n\t4818:  0x00005DF5,\n\t4819:  0x00004ECE,\n\t4820:  0x00006C31,\n\t4821:  0x000201F2,\n\t4822:  0x00004F39,\n\t4823:  0x0000549C,\n\t4824:  0x000054DA,\n\t4825:  0x0000529A,\n\t4826:  0x00008D82,\n\t4827:  0x000035FE,\n\t4828:  0x00005F0C,\n\t4829:  0x000035F3,\n\t4831:  0x00006B52,\n\t4832:  0x0000917C,\n\t4833:  0x00009FA5,\n\t4834:  0x00009B97,\n\t4835:  0x0000982E,\n\t4836:  0x000098B4,\n\t4837:  0x00009ABA,\n\t4838:  0x00009EA8,\n\t4839:  0x00009E84,\n\t4840:  0x0000717A,\n\t4841:  0x00007B14,\n\t4843:  0x00006BFA,\n\t4844:  0x00008818,\n\t4845:  0x00007F78,\n\t4847:  0x00005620,\n\t4848:  0x0002A64A,\n\t4849:  0x00008E77,\n\t4850:  0x00009F53,\n\t4852:  0x00008DD4,\n\t4853:  0x00008E4F,\n\t4854:  0x00009E1C,\n\t4855:  0x00008E01,\n\t4856:  0x00006282,\n\t4857:  0x0002837D,\n\t4858:  0x00008E28,\n\t4859:  0x00008E75,\n\t4860:  0x00007AD3,\n\t4861:  0x00024A77,\n\t4862:  0x00007A3E,\n\t4863:  0x000078D8,\n\t4864:  0x00006CEA,\n\t4865:  0x00008A67,\n\t4866:  0x00007607,\n\t4867:  0x00028A5A,\n\t4868:  0x00009F26,\n\t4869:  0x00006CCE,\n\t4870:  0x000087D6,\n\t4871:  0x000075C3,\n\t4872:  0x0002A2B2,\n\t4873:  0x00007853,\n\t4874:  0x0002F840,\n\t4875:  0x00008D0C,\n\t4876:  0x000072E2,\n\t4877:  0x00007371,\n\t4878:  0x00008B2D,\n\t4879:  0x00007302,\n\t4880:  0x000074F1,\n\t4881:  0x00008CEB,\n\t4882:  0x00024ABB,\n\t4883:  0x0000862F,\n\t4884:  0x00005FBA,\n\t4885:  0x000088A0,\n\t4886:  0x000044B7,\n\t4888:  0x0002183B,\n\t4889:  0x00026E05,\n\t4891:  0x00008A7E,\n\t4892:  0x0002251B,\n\t4894:  0x000060FD,\n\t4895:  0x00007667,\n\t4896:  0x00009AD7,\n\t4897:  0x00009D44,\n\t4898:  0x0000936E,\n\t4899:  0x00009B8F,\n\t4900:  0x000087F5,\n\t4902:  0x0000880F,\n\t4903:  0x00008CF7,\n\t4904:  0x0000732C,\n\t4905:  0x00009721,\n\t4906:  0x00009BB0,\n\t4907:  0x000035D6,\n\t4908:  0x000072B2,\n\t4909:  0x00004C07,\n\t4910:  0x00007C51,\n\t4911:  0x0000994A,\n\t4912:  0x00026159,\n\t4913:  0x00006159,\n\t4914:  0x00004C04,\n\t4915:  0x00009E96,\n\t4916:  0x0000617D,\n\t4918:  0x0000575F,\n\t4919:  0x0000616F,\n\t4920:  0x000062A6,\n\t4921:  0x00006239,\n\t4922:  0x000062CE,\n\t4923:  0x00003A5C,\n\t4924:  0x000061E2,\n\t4925:  0x000053AA,\n\t4926:  0x000233F5,\n\t4927:  0x00006364,\n\t4928:  0x00006802,\n\t4929:  0x000035D2,\n\t4930:  0x00005D57,\n\t4931:  0x00028BC2,\n\t4932:  0x00008FDA,\n\t4933:  0x00028E39,\n\t4935:  0x000050D9,\n\t4936:  0x00021D46,\n\t4937:  0x00007906,\n\t4938:  0x00005332,\n\t4939:  0x00009638,\n\t4940:  0x00020F3B,\n\t4941:  0x00004065,\n\t4943:  0x000077FE,\n\t4945:  0x00007CC2,\n\t4946:  0x00025F1A,\n\t4947:  0x00007CDA,\n\t4948:  0x00007A2D,\n\t4949:  0x00008066,\n\t4950:  0x00008063,\n\t4951:  0x00007D4D,\n\t4952:  0x00007505,\n\t4953:  0x000074F2,\n\t4954:  0x00008994,\n\t4955:  0x0000821A,\n\t4956:  0x0000670C,\n\t4957:  0x00008062,\n\t4958:  0x00027486,\n\t4959:  0x0000805B,\n\t4960:  0x000074F0,\n\t4961:  0x00008103,\n\t4962:  0x00007724,\n\t4963:  0x00008989,\n\t4964:  0x000267CC,\n\t4965:  0x00007553,\n\t4966:  0x00026ED1,\n\t4967:  0x000087A9,\n\t4968:  0x000087CE,\n\t4969:  0x000081C8,\n\t4970:  0x0000878C,\n\t4971:  0x00008A49,\n\t4972:  0x00008CAD,\n\t4973:  0x00008B43,\n\t4974:  0x0000772B,\n\t4975:  0x000074F8,\n\t4976:  0x000084DA,\n\t4977:  0x00003635,\n\t4978:  0x000069B2,\n\t4979:  0x00008DA6,\n\t4981:  0x000089A9,\n\t4982:  0x00007468,\n\t4983:  0x00006DB9,\n\t4984:  0x000087C1,\n\t4985:  0x00024011,\n\t4986:  0x000074E7,\n\t4987:  0x00003DDB,\n\t4988:  0x00007176,\n\t4989:  0x000060A4,\n\t4990:  0x0000619C,\n\t4991:  0x00003CD1,\n\t4992:  0x00007162,\n\t4993:  0x00006077,\n\t4995:  0x00007F71,\n\t4996:  0x00028B2D,\n\t4997:  0x00007250,\n\t4998:  0x000060E9,\n\t4999:  0x00004B7E,\n\t5000:  0x00005220,\n\t5001:  0x00003C18,\n\t5002:  0x00023CC7,\n\t5003:  0x00025ED7,\n\t5004:  0x00027656,\n\t5005:  0x00025531,\n\t5006:  0x00021944,\n\t5007:  0x000212FE,\n\t5008:  0x00029903,\n\t5009:  0x00026DDC,\n\t5010:  0x000270AD,\n\t5011:  0x00005CC1,\n\t5012:  0x000261AD,\n\t5013:  0x00028A0F,\n\t5014:  0x00023677,\n\t5015:  0x000200EE,\n\t5016:  0x00026846,\n\t5017:  0x00024F0E,\n\t5018:  0x00004562,\n\t5019:  0x00005B1F,\n\t5020:  0x0002634C,\n\t5021:  0x00009F50,\n\t5022:  0x00009EA6,\n\t5023:  0x0002626B,\n\t5024:  0x00003000,\n\t5025:  0x0000FF0C,\n\t5026:  0x00003001,\n\t5027:  0x00003002,\n\t5028:  0x0000FF0E,\n\t5029:  0x00002027,\n\t5030:  0x0000FF1B,\n\t5031:  0x0000FF1A,\n\t5032:  0x0000FF1F,\n\t5033:  0x0000FF01,\n\t5034:  0x0000FE30,\n\t5035:  0x00002026,\n\t5036:  0x00002025,\n\t5037:  0x0000FE50,\n\t5038:  0x0000FE51,\n\t5039:  0x0000FE52,\n\t5040:  0x000000B7,\n\t5041:  0x0000FE54,\n\t5042:  0x0000FE55,\n\t5043:  0x0000FE56,\n\t5044:  0x0000FE57,\n\t5045:  0x0000FF5C,\n\t5046:  0x00002013,\n\t5047:  0x0000FE31,\n\t5048:  0x00002014,\n\t5049:  0x0000FE33,\n\t5050:  0x00002574,\n\t5051:  0x0000FE34,\n\t5052:  0x0000FE4F,\n\t5053:  0x0000FF08,\n\t5054:  0x0000FF09,\n\t5055:  0x0000FE35,\n\t5056:  0x0000FE36,\n\t5057:  0x0000FF5B,\n\t5058:  0x0000FF5D,\n\t5059:  0x0000FE37,\n\t5060:  0x0000FE38,\n\t5061:  0x00003014,\n\t5062:  0x00003015,\n\t5063:  0x0000FE39,\n\t5064:  0x0000FE3A,\n\t5065:  0x00003010,\n\t5066:  0x00003011,\n\t5067:  0x0000FE3B,\n\t5068:  0x0000FE3C,\n\t5069:  0x0000300A,\n\t5070:  0x0000300B,\n\t5071:  0x0000FE3D,\n\t5072:  0x0000FE3E,\n\t5073:  0x00003008,\n\t5074:  0x00003009,\n\t5075:  0x0000FE3F,\n\t5076:  0x0000FE40,\n\t5077:  0x0000300C,\n\t5078:  0x0000300D,\n\t5079:  0x0000FE41,\n\t5080:  0x0000FE42,\n\t5081:  0x0000300E,\n\t5082:  0x0000300F,\n\t5083:  0x0000FE43,\n\t5084:  0x0000FE44,\n\t5085:  0x0000FE59,\n\t5086:  0x0000FE5A,\n\t5087:  0x0000FE5B,\n\t5088:  0x0000FE5C,\n\t5089:  0x0000FE5D,\n\t5090:  0x0000FE5E,\n\t5091:  0x00002018,\n\t5092:  0x00002019,\n\t5093:  0x0000201C,\n\t5094:  0x0000201D,\n\t5095:  0x0000301D,\n\t5096:  0x0000301E,\n\t5097:  0x00002035,\n\t5098:  0x00002032,\n\t5099:  0x0000FF03,\n\t5100:  0x0000FF06,\n\t5101:  0x0000FF0A,\n\t5102:  0x0000203B,\n\t5103:  0x000000A7,\n\t5104:  0x00003003,\n\t5105:  0x000025CB,\n\t5106:  0x000025CF,\n\t5107:  0x000025B3,\n\t5108:  0x000025B2,\n\t5109:  0x000025CE,\n\t5110:  0x00002606,\n\t5111:  0x00002605,\n\t5112:  0x000025C7,\n\t5113:  0x000025C6,\n\t5114:  0x000025A1,\n\t5115:  0x000025A0,\n\t5116:  0x000025BD,\n\t5117:  0x000025BC,\n\t5118:  0x000032A3,\n\t5119:  0x00002105,\n\t5120:  0x000000AF,\n\t5121:  0x0000FFE3,\n\t5122:  0x0000FF3F,\n\t5123:  0x000002CD,\n\t5124:  0x0000FE49,\n\t5125:  0x0000FE4A,\n\t5126:  0x0000FE4D,\n\t5127:  0x0000FE4E,\n\t5128:  0x0000FE4B,\n\t5129:  0x0000FE4C,\n\t5130:  0x0000FE5F,\n\t5131:  0x0000FE60,\n\t5132:  0x0000FE61,\n\t5133:  0x0000FF0B,\n\t5134:  0x0000FF0D,\n\t5135:  0x000000D7,\n\t5136:  0x000000F7,\n\t5137:  0x000000B1,\n\t5138:  0x0000221A,\n\t5139:  0x0000FF1C,\n\t5140:  0x0000FF1E,\n\t5141:  0x0000FF1D,\n\t5142:  0x00002266,\n\t5143:  0x00002267,\n\t5144:  0x00002260,\n\t5145:  0x0000221E,\n\t5146:  0x00002252,\n\t5147:  0x00002261,\n\t5148:  0x0000FE62,\n\t5149:  0x0000FE63,\n\t5150:  0x0000FE64,\n\t5151:  0x0000FE65,\n\t5152:  0x0000FE66,\n\t5153:  0x0000FF5E,\n\t5154:  0x00002229,\n\t5155:  0x0000222A,\n\t5156:  0x000022A5,\n\t5157:  0x00002220,\n\t5158:  0x0000221F,\n\t5159:  0x000022BF,\n\t5160:  0x000033D2,\n\t5161:  0x000033D1,\n\t5162:  0x0000222B,\n\t5163:  0x0000222E,\n\t5164:  0x00002235,\n\t5165:  0x00002234,\n\t5166:  0x00002640,\n\t5167:  0x00002642,\n\t5168:  0x00002295,\n\t5169:  0x00002299,\n\t5170:  0x00002191,\n\t5171:  0x00002193,\n\t5172:  0x00002190,\n\t5173:  0x00002192,\n\t5174:  0x00002196,\n\t5175:  0x00002197,\n\t5176:  0x00002199,\n\t5177:  0x00002198,\n\t5178:  0x00002225,\n\t5179:  0x00002223,\n\t5180:  0x0000FF0F,\n\t5181:  0x0000FF3C,\n\t5182:  0x00002215,\n\t5183:  0x0000FE68,\n\t5184:  0x0000FF04,\n\t5185:  0x0000FFE5,\n\t5186:  0x00003012,\n\t5187:  0x0000FFE0,\n\t5188:  0x0000FFE1,\n\t5189:  0x0000FF05,\n\t5190:  0x0000FF20,\n\t5191:  0x00002103,\n\t5192:  0x00002109,\n\t5193:  0x0000FE69,\n\t5194:  0x0000FE6A,\n\t5195:  0x0000FE6B,\n\t5196:  0x000033D5,\n\t5197:  0x0000339C,\n\t5198:  0x0000339D,\n\t5199:  0x0000339E,\n\t5200:  0x000033CE,\n\t5201:  0x000033A1,\n\t5202:  0x0000338E,\n\t5203:  0x0000338F,\n\t5204:  0x000033C4,\n\t5205:  0x000000B0,\n\t5206:  0x00005159,\n\t5207:  0x0000515B,\n\t5208:  0x0000515E,\n\t5209:  0x0000515D,\n\t5210:  0x00005161,\n\t5211:  0x00005163,\n\t5212:  0x000055E7,\n\t5213:  0x000074E9,\n\t5214:  0x00007CCE,\n\t5215:  0x00002581,\n\t5216:  0x00002582,\n\t5217:  0x00002583,\n\t5218:  0x00002584,\n\t5219:  0x00002585,\n\t5220:  0x00002586,\n\t5221:  0x00002587,\n\t5222:  0x00002588,\n\t5223:  0x0000258F,\n\t5224:  0x0000258E,\n\t5225:  0x0000258D,\n\t5226:  0x0000258C,\n\t5227:  0x0000258B,\n\t5228:  0x0000258A,\n\t5229:  0x00002589,\n\t5230:  0x0000253C,\n\t5231:  0x00002534,\n\t5232:  0x0000252C,\n\t5233:  0x00002524,\n\t5234:  0x0000251C,\n\t5235:  0x00002594,\n\t5236:  0x00002500,\n\t5237:  0x00002502,\n\t5238:  0x00002595,\n\t5239:  0x0000250C,\n\t5240:  0x00002510,\n\t5241:  0x00002514,\n\t5242:  0x00002518,\n\t5243:  0x0000256D,\n\t5244:  0x0000256E,\n\t5245:  0x00002570,\n\t5246:  0x0000256F,\n\t5247:  0x00002550,\n\t5248:  0x0000255E,\n\t5249:  0x0000256A,\n\t5250:  0x00002561,\n\t5251:  0x000025E2,\n\t5252:  0x000025E3,\n\t5253:  0x000025E5,\n\t5254:  0x000025E4,\n\t5255:  0x00002571,\n\t5256:  0x00002572,\n\t5257:  0x00002573,\n\t5258:  0x0000FF10,\n\t5259:  0x0000FF11,\n\t5260:  0x0000FF12,\n\t5261:  0x0000FF13,\n\t5262:  0x0000FF14,\n\t5263:  0x0000FF15,\n\t5264:  0x0000FF16,\n\t5265:  0x0000FF17,\n\t5266:  0x0000FF18,\n\t5267:  0x0000FF19,\n\t5268:  0x00002160,\n\t5269:  0x00002161,\n\t5270:  0x00002162,\n\t5271:  0x00002163,\n\t5272:  0x00002164,\n\t5273:  0x00002165,\n\t5274:  0x00002166,\n\t5275:  0x00002167,\n\t5276:  0x00002168,\n\t5277:  0x00002169,\n\t5278:  0x00003021,\n\t5279:  0x00003022,\n\t5280:  0x00003023,\n\t5281:  0x00003024,\n\t5282:  0x00003025,\n\t5283:  0x00003026,\n\t5284:  0x00003027,\n\t5285:  0x00003028,\n\t5286:  0x00003029,\n\t5287:  0x00005341,\n\t5288:  0x00005344,\n\t5289:  0x00005345,\n\t5290:  0x0000FF21,\n\t5291:  0x0000FF22,\n\t5292:  0x0000FF23,\n\t5293:  0x0000FF24,\n\t5294:  0x0000FF25,\n\t5295:  0x0000FF26,\n\t5296:  0x0000FF27,\n\t5297:  0x0000FF28,\n\t5298:  0x0000FF29,\n\t5299:  0x0000FF2A,\n\t5300:  0x0000FF2B,\n\t5301:  0x0000FF2C,\n\t5302:  0x0000FF2D,\n\t5303:  0x0000FF2E,\n\t5304:  0x0000FF2F,\n\t5305:  0x0000FF30,\n\t5306:  0x0000FF31,\n\t5307:  0x0000FF32,\n\t5308:  0x0000FF33,\n\t5309:  0x0000FF34,\n\t5310:  0x0000FF35,\n\t5311:  0x0000FF36,\n\t5312:  0x0000FF37,\n\t5313:  0x0000FF38,\n\t5314:  0x0000FF39,\n\t5315:  0x0000FF3A,\n\t5316:  0x0000FF41,\n\t5317:  0x0000FF42,\n\t5318:  0x0000FF43,\n\t5319:  0x0000FF44,\n\t5320:  0x0000FF45,\n\t5321:  0x0000FF46,\n\t5322:  0x0000FF47,\n\t5323:  0x0000FF48,\n\t5324:  0x0000FF49,\n\t5325:  0x0000FF4A,\n\t5326:  0x0000FF4B,\n\t5327:  0x0000FF4C,\n\t5328:  0x0000FF4D,\n\t5329:  0x0000FF4E,\n\t5330:  0x0000FF4F,\n\t5331:  0x0000FF50,\n\t5332:  0x0000FF51,\n\t5333:  0x0000FF52,\n\t5334:  0x0000FF53,\n\t5335:  0x0000FF54,\n\t5336:  0x0000FF55,\n\t5337:  0x0000FF56,\n\t5338:  0x0000FF57,\n\t5339:  0x0000FF58,\n\t5340:  0x0000FF59,\n\t5341:  0x0000FF5A,\n\t5342:  0x00000391,\n\t5343:  0x00000392,\n\t5344:  0x00000393,\n\t5345:  0x00000394,\n\t5346:  0x00000395,\n\t5347:  0x00000396,\n\t5348:  0x00000397,\n\t5349:  0x00000398,\n\t5350:  0x00000399,\n\t5351:  0x0000039A,\n\t5352:  0x0000039B,\n\t5353:  0x0000039C,\n\t5354:  0x0000039D,\n\t5355:  0x0000039E,\n\t5356:  0x0000039F,\n\t5357:  0x000003A0,\n\t5358:  0x000003A1,\n\t5359:  0x000003A3,\n\t5360:  0x000003A4,\n\t5361:  0x000003A5,\n\t5362:  0x000003A6,\n\t5363:  0x000003A7,\n\t5364:  0x000003A8,\n\t5365:  0x000003A9,\n\t5366:  0x000003B1,\n\t5367:  0x000003B2,\n\t5368:  0x000003B3,\n\t5369:  0x000003B4,\n\t5370:  0x000003B5,\n\t5371:  0x000003B6,\n\t5372:  0x000003B7,\n\t5373:  0x000003B8,\n\t5374:  0x000003B9,\n\t5375:  0x000003BA,\n\t5376:  0x000003BB,\n\t5377:  0x000003BC,\n\t5378:  0x000003BD,\n\t5379:  0x000003BE,\n\t5380:  0x000003BF,\n\t5381:  0x000003C0,\n\t5382:  0x000003C1,\n\t5383:  0x000003C3,\n\t5384:  0x000003C4,\n\t5385:  0x000003C5,\n\t5386:  0x000003C6,\n\t5387:  0x000003C7,\n\t5388:  0x000003C8,\n\t5389:  0x000003C9,\n\t5390:  0x00003105,\n\t5391:  0x00003106,\n\t5392:  0x00003107,\n\t5393:  0x00003108,\n\t5394:  0x00003109,\n\t5395:  0x0000310A,\n\t5396:  0x0000310B,\n\t5397:  0x0000310C,\n\t5398:  0x0000310D,\n\t5399:  0x0000310E,\n\t5400:  0x0000310F,\n\t5401:  0x00003110,\n\t5402:  0x00003111,\n\t5403:  0x00003112,\n\t5404:  0x00003113,\n\t5405:  0x00003114,\n\t5406:  0x00003115,\n\t5407:  0x00003116,\n\t5408:  0x00003117,\n\t5409:  0x00003118,\n\t5410:  0x00003119,\n\t5411:  0x0000311A,\n\t5412:  0x0000311B,\n\t5413:  0x0000311C,\n\t5414:  0x0000311D,\n\t5415:  0x0000311E,\n\t5416:  0x0000311F,\n\t5417:  0x00003120,\n\t5418:  0x00003121,\n\t5419:  0x00003122,\n\t5420:  0x00003123,\n\t5421:  0x00003124,\n\t5422:  0x00003125,\n\t5423:  0x00003126,\n\t5424:  0x00003127,\n\t5425:  0x00003128,\n\t5426:  0x00003129,\n\t5427:  0x000002D9,\n\t5428:  0x000002C9,\n\t5429:  0x000002CA,\n\t5430:  0x000002C7,\n\t5431:  0x000002CB,\n\t5432:  0x00002400,\n\t5433:  0x00002401,\n\t5434:  0x00002402,\n\t5435:  0x00002403,\n\t5436:  0x00002404,\n\t5437:  0x00002405,\n\t5438:  0x00002406,\n\t5439:  0x00002407,\n\t5440:  0x00002408,\n\t5441:  0x00002409,\n\t5442:  0x0000240A,\n\t5443:  0x0000240B,\n\t5444:  0x0000240C,\n\t5445:  0x0000240D,\n\t5446:  0x0000240E,\n\t5447:  0x0000240F,\n\t5448:  0x00002410,\n\t5449:  0x00002411,\n\t5450:  0x00002412,\n\t5451:  0x00002413,\n\t5452:  0x00002414,\n\t5453:  0x00002415,\n\t5454:  0x00002416,\n\t5455:  0x00002417,\n\t5456:  0x00002418,\n\t5457:  0x00002419,\n\t5458:  0x0000241A,\n\t5459:  0x0000241B,\n\t5460:  0x0000241C,\n\t5461:  0x0000241D,\n\t5462:  0x0000241E,\n\t5463:  0x0000241F,\n\t5464:  0x00002421,\n\t5465:  0x000020AC,\n\t5495:  0x00004E00,\n\t5496:  0x00004E59,\n\t5497:  0x00004E01,\n\t5498:  0x00004E03,\n\t5499:  0x00004E43,\n\t5500:  0x00004E5D,\n\t5501:  0x00004E86,\n\t5502:  0x00004E8C,\n\t5503:  0x00004EBA,\n\t5504:  0x0000513F,\n\t5505:  0x00005165,\n\t5506:  0x0000516B,\n\t5507:  0x000051E0,\n\t5508:  0x00005200,\n\t5509:  0x00005201,\n\t5510:  0x0000529B,\n\t5511:  0x00005315,\n\t5512:  0x00005341,\n\t5513:  0x0000535C,\n\t5514:  0x000053C8,\n\t5515:  0x00004E09,\n\t5516:  0x00004E0B,\n\t5517:  0x00004E08,\n\t5518:  0x00004E0A,\n\t5519:  0x00004E2B,\n\t5520:  0x00004E38,\n\t5521:  0x000051E1,\n\t5522:  0x00004E45,\n\t5523:  0x00004E48,\n\t5524:  0x00004E5F,\n\t5525:  0x00004E5E,\n\t5526:  0x00004E8E,\n\t5527:  0x00004EA1,\n\t5528:  0x00005140,\n\t5529:  0x00005203,\n\t5530:  0x000052FA,\n\t5531:  0x00005343,\n\t5532:  0x000053C9,\n\t5533:  0x000053E3,\n\t5534:  0x0000571F,\n\t5535:  0x000058EB,\n\t5536:  0x00005915,\n\t5537:  0x00005927,\n\t5538:  0x00005973,\n\t5539:  0x00005B50,\n\t5540:  0x00005B51,\n\t5541:  0x00005B53,\n\t5542:  0x00005BF8,\n\t5543:  0x00005C0F,\n\t5544:  0x00005C22,\n\t5545:  0x00005C38,\n\t5546:  0x00005C71,\n\t5547:  0x00005DDD,\n\t5548:  0x00005DE5,\n\t5549:  0x00005DF1,\n\t5550:  0x00005DF2,\n\t5551:  0x00005DF3,\n\t5552:  0x00005DFE,\n\t5553:  0x00005E72,\n\t5554:  0x00005EFE,\n\t5555:  0x00005F0B,\n\t5556:  0x00005F13,\n\t5557:  0x0000624D,\n\t5558:  0x00004E11,\n\t5559:  0x00004E10,\n\t5560:  0x00004E0D,\n\t5561:  0x00004E2D,\n\t5562:  0x00004E30,\n\t5563:  0x00004E39,\n\t5564:  0x00004E4B,\n\t5565:  0x00005C39,\n\t5566:  0x00004E88,\n\t5567:  0x00004E91,\n\t5568:  0x00004E95,\n\t5569:  0x00004E92,\n\t5570:  0x00004E94,\n\t5571:  0x00004EA2,\n\t5572:  0x00004EC1,\n\t5573:  0x00004EC0,\n\t5574:  0x00004EC3,\n\t5575:  0x00004EC6,\n\t5576:  0x00004EC7,\n\t5577:  0x00004ECD,\n\t5578:  0x00004ECA,\n\t5579:  0x00004ECB,\n\t5580:  0x00004EC4,\n\t5581:  0x00005143,\n\t5582:  0x00005141,\n\t5583:  0x00005167,\n\t5584:  0x0000516D,\n\t5585:  0x0000516E,\n\t5586:  0x0000516C,\n\t5587:  0x00005197,\n\t5588:  0x000051F6,\n\t5589:  0x00005206,\n\t5590:  0x00005207,\n\t5591:  0x00005208,\n\t5592:  0x000052FB,\n\t5593:  0x000052FE,\n\t5594:  0x000052FF,\n\t5595:  0x00005316,\n\t5596:  0x00005339,\n\t5597:  0x00005348,\n\t5598:  0x00005347,\n\t5599:  0x00005345,\n\t5600:  0x0000535E,\n\t5601:  0x00005384,\n\t5602:  0x000053CB,\n\t5603:  0x000053CA,\n\t5604:  0x000053CD,\n\t5605:  0x000058EC,\n\t5606:  0x00005929,\n\t5607:  0x0000592B,\n\t5608:  0x0000592A,\n\t5609:  0x0000592D,\n\t5610:  0x00005B54,\n\t5611:  0x00005C11,\n\t5612:  0x00005C24,\n\t5613:  0x00005C3A,\n\t5614:  0x00005C6F,\n\t5615:  0x00005DF4,\n\t5616:  0x00005E7B,\n\t5617:  0x00005EFF,\n\t5618:  0x00005F14,\n\t5619:  0x00005F15,\n\t5620:  0x00005FC3,\n\t5621:  0x00006208,\n\t5622:  0x00006236,\n\t5623:  0x0000624B,\n\t5624:  0x0000624E,\n\t5625:  0x0000652F,\n\t5626:  0x00006587,\n\t5627:  0x00006597,\n\t5628:  0x000065A4,\n\t5629:  0x000065B9,\n\t5630:  0x000065E5,\n\t5631:  0x000066F0,\n\t5632:  0x00006708,\n\t5633:  0x00006728,\n\t5634:  0x00006B20,\n\t5635:  0x00006B62,\n\t5636:  0x00006B79,\n\t5637:  0x00006BCB,\n\t5638:  0x00006BD4,\n\t5639:  0x00006BDB,\n\t5640:  0x00006C0F,\n\t5641:  0x00006C34,\n\t5642:  0x0000706B,\n\t5643:  0x0000722A,\n\t5644:  0x00007236,\n\t5645:  0x0000723B,\n\t5646:  0x00007247,\n\t5647:  0x00007259,\n\t5648:  0x0000725B,\n\t5649:  0x000072AC,\n\t5650:  0x0000738B,\n\t5651:  0x00004E19,\n\t5652:  0x00004E16,\n\t5653:  0x00004E15,\n\t5654:  0x00004E14,\n\t5655:  0x00004E18,\n\t5656:  0x00004E3B,\n\t5657:  0x00004E4D,\n\t5658:  0x00004E4F,\n\t5659:  0x00004E4E,\n\t5660:  0x00004EE5,\n\t5661:  0x00004ED8,\n\t5662:  0x00004ED4,\n\t5663:  0x00004ED5,\n\t5664:  0x00004ED6,\n\t5665:  0x00004ED7,\n\t5666:  0x00004EE3,\n\t5667:  0x00004EE4,\n\t5668:  0x00004ED9,\n\t5669:  0x00004EDE,\n\t5670:  0x00005145,\n\t5671:  0x00005144,\n\t5672:  0x00005189,\n\t5673:  0x0000518A,\n\t5674:  0x000051AC,\n\t5675:  0x000051F9,\n\t5676:  0x000051FA,\n\t5677:  0x000051F8,\n\t5678:  0x0000520A,\n\t5679:  0x000052A0,\n\t5680:  0x0000529F,\n\t5681:  0x00005305,\n\t5682:  0x00005306,\n\t5683:  0x00005317,\n\t5684:  0x0000531D,\n\t5685:  0x00004EDF,\n\t5686:  0x0000534A,\n\t5687:  0x00005349,\n\t5688:  0x00005361,\n\t5689:  0x00005360,\n\t5690:  0x0000536F,\n\t5691:  0x0000536E,\n\t5692:  0x000053BB,\n\t5693:  0x000053EF,\n\t5694:  0x000053E4,\n\t5695:  0x000053F3,\n\t5696:  0x000053EC,\n\t5697:  0x000053EE,\n\t5698:  0x000053E9,\n\t5699:  0x000053E8,\n\t5700:  0x000053FC,\n\t5701:  0x000053F8,\n\t5702:  0x000053F5,\n\t5703:  0x000053EB,\n\t5704:  0x000053E6,\n\t5705:  0x000053EA,\n\t5706:  0x000053F2,\n\t5707:  0x000053F1,\n\t5708:  0x000053F0,\n\t5709:  0x000053E5,\n\t5710:  0x000053ED,\n\t5711:  0x000053FB,\n\t5712:  0x000056DB,\n\t5713:  0x000056DA,\n\t5714:  0x00005916,\n\t5715:  0x0000592E,\n\t5716:  0x00005931,\n\t5717:  0x00005974,\n\t5718:  0x00005976,\n\t5719:  0x00005B55,\n\t5720:  0x00005B83,\n\t5721:  0x00005C3C,\n\t5722:  0x00005DE8,\n\t5723:  0x00005DE7,\n\t5724:  0x00005DE6,\n\t5725:  0x00005E02,\n\t5726:  0x00005E03,\n\t5727:  0x00005E73,\n\t5728:  0x00005E7C,\n\t5729:  0x00005F01,\n\t5730:  0x00005F18,\n\t5731:  0x00005F17,\n\t5732:  0x00005FC5,\n\t5733:  0x0000620A,\n\t5734:  0x00006253,\n\t5735:  0x00006254,\n\t5736:  0x00006252,\n\t5737:  0x00006251,\n\t5738:  0x000065A5,\n\t5739:  0x000065E6,\n\t5740:  0x0000672E,\n\t5741:  0x0000672C,\n\t5742:  0x0000672A,\n\t5743:  0x0000672B,\n\t5744:  0x0000672D,\n\t5745:  0x00006B63,\n\t5746:  0x00006BCD,\n\t5747:  0x00006C11,\n\t5748:  0x00006C10,\n\t5749:  0x00006C38,\n\t5750:  0x00006C41,\n\t5751:  0x00006C40,\n\t5752:  0x00006C3E,\n\t5753:  0x000072AF,\n\t5754:  0x00007384,\n\t5755:  0x00007389,\n\t5756:  0x000074DC,\n\t5757:  0x000074E6,\n\t5758:  0x00007518,\n\t5759:  0x0000751F,\n\t5760:  0x00007528,\n\t5761:  0x00007529,\n\t5762:  0x00007530,\n\t5763:  0x00007531,\n\t5764:  0x00007532,\n\t5765:  0x00007533,\n\t5766:  0x0000758B,\n\t5767:  0x0000767D,\n\t5768:  0x000076AE,\n\t5769:  0x000076BF,\n\t5770:  0x000076EE,\n\t5771:  0x000077DB,\n\t5772:  0x000077E2,\n\t5773:  0x000077F3,\n\t5774:  0x0000793A,\n\t5775:  0x000079BE,\n\t5776:  0x00007A74,\n\t5777:  0x00007ACB,\n\t5778:  0x00004E1E,\n\t5779:  0x00004E1F,\n\t5780:  0x00004E52,\n\t5781:  0x00004E53,\n\t5782:  0x00004E69,\n\t5783:  0x00004E99,\n\t5784:  0x00004EA4,\n\t5785:  0x00004EA6,\n\t5786:  0x00004EA5,\n\t5787:  0x00004EFF,\n\t5788:  0x00004F09,\n\t5789:  0x00004F19,\n\t5790:  0x00004F0A,\n\t5791:  0x00004F15,\n\t5792:  0x00004F0D,\n\t5793:  0x00004F10,\n\t5794:  0x00004F11,\n\t5795:  0x00004F0F,\n\t5796:  0x00004EF2,\n\t5797:  0x00004EF6,\n\t5798:  0x00004EFB,\n\t5799:  0x00004EF0,\n\t5800:  0x00004EF3,\n\t5801:  0x00004EFD,\n\t5802:  0x00004F01,\n\t5803:  0x00004F0B,\n\t5804:  0x00005149,\n\t5805:  0x00005147,\n\t5806:  0x00005146,\n\t5807:  0x00005148,\n\t5808:  0x00005168,\n\t5809:  0x00005171,\n\t5810:  0x0000518D,\n\t5811:  0x000051B0,\n\t5812:  0x00005217,\n\t5813:  0x00005211,\n\t5814:  0x00005212,\n\t5815:  0x0000520E,\n\t5816:  0x00005216,\n\t5817:  0x000052A3,\n\t5818:  0x00005308,\n\t5819:  0x00005321,\n\t5820:  0x00005320,\n\t5821:  0x00005370,\n\t5822:  0x00005371,\n\t5823:  0x00005409,\n\t5824:  0x0000540F,\n\t5825:  0x0000540C,\n\t5826:  0x0000540A,\n\t5827:  0x00005410,\n\t5828:  0x00005401,\n\t5829:  0x0000540B,\n\t5830:  0x00005404,\n\t5831:  0x00005411,\n\t5832:  0x0000540D,\n\t5833:  0x00005408,\n\t5834:  0x00005403,\n\t5835:  0x0000540E,\n\t5836:  0x00005406,\n\t5837:  0x00005412,\n\t5838:  0x000056E0,\n\t5839:  0x000056DE,\n\t5840:  0x000056DD,\n\t5841:  0x00005733,\n\t5842:  0x00005730,\n\t5843:  0x00005728,\n\t5844:  0x0000572D,\n\t5845:  0x0000572C,\n\t5846:  0x0000572F,\n\t5847:  0x00005729,\n\t5848:  0x00005919,\n\t5849:  0x0000591A,\n\t5850:  0x00005937,\n\t5851:  0x00005938,\n\t5852:  0x00005984,\n\t5853:  0x00005978,\n\t5854:  0x00005983,\n\t5855:  0x0000597D,\n\t5856:  0x00005979,\n\t5857:  0x00005982,\n\t5858:  0x00005981,\n\t5859:  0x00005B57,\n\t5860:  0x00005B58,\n\t5861:  0x00005B87,\n\t5862:  0x00005B88,\n\t5863:  0x00005B85,\n\t5864:  0x00005B89,\n\t5865:  0x00005BFA,\n\t5866:  0x00005C16,\n\t5867:  0x00005C79,\n\t5868:  0x00005DDE,\n\t5869:  0x00005E06,\n\t5870:  0x00005E76,\n\t5871:  0x00005E74,\n\t5872:  0x00005F0F,\n\t5873:  0x00005F1B,\n\t5874:  0x00005FD9,\n\t5875:  0x00005FD6,\n\t5876:  0x0000620E,\n\t5877:  0x0000620C,\n\t5878:  0x0000620D,\n\t5879:  0x00006210,\n\t5880:  0x00006263,\n\t5881:  0x0000625B,\n\t5882:  0x00006258,\n\t5883:  0x00006536,\n\t5884:  0x000065E9,\n\t5885:  0x000065E8,\n\t5886:  0x000065EC,\n\t5887:  0x000065ED,\n\t5888:  0x000066F2,\n\t5889:  0x000066F3,\n\t5890:  0x00006709,\n\t5891:  0x0000673D,\n\t5892:  0x00006734,\n\t5893:  0x00006731,\n\t5894:  0x00006735,\n\t5895:  0x00006B21,\n\t5896:  0x00006B64,\n\t5897:  0x00006B7B,\n\t5898:  0x00006C16,\n\t5899:  0x00006C5D,\n\t5900:  0x00006C57,\n\t5901:  0x00006C59,\n\t5902:  0x00006C5F,\n\t5903:  0x00006C60,\n\t5904:  0x00006C50,\n\t5905:  0x00006C55,\n\t5906:  0x00006C61,\n\t5907:  0x00006C5B,\n\t5908:  0x00006C4D,\n\t5909:  0x00006C4E,\n\t5910:  0x00007070,\n\t5911:  0x0000725F,\n\t5912:  0x0000725D,\n\t5913:  0x0000767E,\n\t5914:  0x00007AF9,\n\t5915:  0x00007C73,\n\t5916:  0x00007CF8,\n\t5917:  0x00007F36,\n\t5918:  0x00007F8A,\n\t5919:  0x00007FBD,\n\t5920:  0x00008001,\n\t5921:  0x00008003,\n\t5922:  0x0000800C,\n\t5923:  0x00008012,\n\t5924:  0x00008033,\n\t5925:  0x0000807F,\n\t5926:  0x00008089,\n\t5927:  0x0000808B,\n\t5928:  0x0000808C,\n\t5929:  0x000081E3,\n\t5930:  0x000081EA,\n\t5931:  0x000081F3,\n\t5932:  0x000081FC,\n\t5933:  0x0000820C,\n\t5934:  0x0000821B,\n\t5935:  0x0000821F,\n\t5936:  0x0000826E,\n\t5937:  0x00008272,\n\t5938:  0x0000827E,\n\t5939:  0x0000866B,\n\t5940:  0x00008840,\n\t5941:  0x0000884C,\n\t5942:  0x00008863,\n\t5943:  0x0000897F,\n\t5944:  0x00009621,\n\t5945:  0x00004E32,\n\t5946:  0x00004EA8,\n\t5947:  0x00004F4D,\n\t5948:  0x00004F4F,\n\t5949:  0x00004F47,\n\t5950:  0x00004F57,\n\t5951:  0x00004F5E,\n\t5952:  0x00004F34,\n\t5953:  0x00004F5B,\n\t5954:  0x00004F55,\n\t5955:  0x00004F30,\n\t5956:  0x00004F50,\n\t5957:  0x00004F51,\n\t5958:  0x00004F3D,\n\t5959:  0x00004F3A,\n\t5960:  0x00004F38,\n\t5961:  0x00004F43,\n\t5962:  0x00004F54,\n\t5963:  0x00004F3C,\n\t5964:  0x00004F46,\n\t5965:  0x00004F63,\n\t5966:  0x00004F5C,\n\t5967:  0x00004F60,\n\t5968:  0x00004F2F,\n\t5969:  0x00004F4E,\n\t5970:  0x00004F36,\n\t5971:  0x00004F59,\n\t5972:  0x00004F5D,\n\t5973:  0x00004F48,\n\t5974:  0x00004F5A,\n\t5975:  0x0000514C,\n\t5976:  0x0000514B,\n\t5977:  0x0000514D,\n\t5978:  0x00005175,\n\t5979:  0x000051B6,\n\t5980:  0x000051B7,\n\t5981:  0x00005225,\n\t5982:  0x00005224,\n\t5983:  0x00005229,\n\t5984:  0x0000522A,\n\t5985:  0x00005228,\n\t5986:  0x000052AB,\n\t5987:  0x000052A9,\n\t5988:  0x000052AA,\n\t5989:  0x000052AC,\n\t5990:  0x00005323,\n\t5991:  0x00005373,\n\t5992:  0x00005375,\n\t5993:  0x0000541D,\n\t5994:  0x0000542D,\n\t5995:  0x0000541E,\n\t5996:  0x0000543E,\n\t5997:  0x00005426,\n\t5998:  0x0000544E,\n\t5999:  0x00005427,\n\t6000:  0x00005446,\n\t6001:  0x00005443,\n\t6002:  0x00005433,\n\t6003:  0x00005448,\n\t6004:  0x00005442,\n\t6005:  0x0000541B,\n\t6006:  0x00005429,\n\t6007:  0x0000544A,\n\t6008:  0x00005439,\n\t6009:  0x0000543B,\n\t6010:  0x00005438,\n\t6011:  0x0000542E,\n\t6012:  0x00005435,\n\t6013:  0x00005436,\n\t6014:  0x00005420,\n\t6015:  0x0000543C,\n\t6016:  0x00005440,\n\t6017:  0x00005431,\n\t6018:  0x0000542B,\n\t6019:  0x0000541F,\n\t6020:  0x0000542C,\n\t6021:  0x000056EA,\n\t6022:  0x000056F0,\n\t6023:  0x000056E4,\n\t6024:  0x000056EB,\n\t6025:  0x0000574A,\n\t6026:  0x00005751,\n\t6027:  0x00005740,\n\t6028:  0x0000574D,\n\t6029:  0x00005747,\n\t6030:  0x0000574E,\n\t6031:  0x0000573E,\n\t6032:  0x00005750,\n\t6033:  0x0000574F,\n\t6034:  0x0000573B,\n\t6035:  0x000058EF,\n\t6036:  0x0000593E,\n\t6037:  0x0000599D,\n\t6038:  0x00005992,\n\t6039:  0x000059A8,\n\t6040:  0x0000599E,\n\t6041:  0x000059A3,\n\t6042:  0x00005999,\n\t6043:  0x00005996,\n\t6044:  0x0000598D,\n\t6045:  0x000059A4,\n\t6046:  0x00005993,\n\t6047:  0x0000598A,\n\t6048:  0x000059A5,\n\t6049:  0x00005B5D,\n\t6050:  0x00005B5C,\n\t6051:  0x00005B5A,\n\t6052:  0x00005B5B,\n\t6053:  0x00005B8C,\n\t6054:  0x00005B8B,\n\t6055:  0x00005B8F,\n\t6056:  0x00005C2C,\n\t6057:  0x00005C40,\n\t6058:  0x00005C41,\n\t6059:  0x00005C3F,\n\t6060:  0x00005C3E,\n\t6061:  0x00005C90,\n\t6062:  0x00005C91,\n\t6063:  0x00005C94,\n\t6064:  0x00005C8C,\n\t6065:  0x00005DEB,\n\t6066:  0x00005E0C,\n\t6067:  0x00005E8F,\n\t6068:  0x00005E87,\n\t6069:  0x00005E8A,\n\t6070:  0x00005EF7,\n\t6071:  0x00005F04,\n\t6072:  0x00005F1F,\n\t6073:  0x00005F64,\n\t6074:  0x00005F62,\n\t6075:  0x00005F77,\n\t6076:  0x00005F79,\n\t6077:  0x00005FD8,\n\t6078:  0x00005FCC,\n\t6079:  0x00005FD7,\n\t6080:  0x00005FCD,\n\t6081:  0x00005FF1,\n\t6082:  0x00005FEB,\n\t6083:  0x00005FF8,\n\t6084:  0x00005FEA,\n\t6085:  0x00006212,\n\t6086:  0x00006211,\n\t6087:  0x00006284,\n\t6088:  0x00006297,\n\t6089:  0x00006296,\n\t6090:  0x00006280,\n\t6091:  0x00006276,\n\t6092:  0x00006289,\n\t6093:  0x0000626D,\n\t6094:  0x0000628A,\n\t6095:  0x0000627C,\n\t6096:  0x0000627E,\n\t6097:  0x00006279,\n\t6098:  0x00006273,\n\t6099:  0x00006292,\n\t6100:  0x0000626F,\n\t6101:  0x00006298,\n\t6102:  0x0000626E,\n\t6103:  0x00006295,\n\t6104:  0x00006293,\n\t6105:  0x00006291,\n\t6106:  0x00006286,\n\t6107:  0x00006539,\n\t6108:  0x0000653B,\n\t6109:  0x00006538,\n\t6110:  0x000065F1,\n\t6111:  0x000066F4,\n\t6112:  0x0000675F,\n\t6113:  0x0000674E,\n\t6114:  0x0000674F,\n\t6115:  0x00006750,\n\t6116:  0x00006751,\n\t6117:  0x0000675C,\n\t6118:  0x00006756,\n\t6119:  0x0000675E,\n\t6120:  0x00006749,\n\t6121:  0x00006746,\n\t6122:  0x00006760,\n\t6123:  0x00006753,\n\t6124:  0x00006757,\n\t6125:  0x00006B65,\n\t6126:  0x00006BCF,\n\t6127:  0x00006C42,\n\t6128:  0x00006C5E,\n\t6129:  0x00006C99,\n\t6130:  0x00006C81,\n\t6131:  0x00006C88,\n\t6132:  0x00006C89,\n\t6133:  0x00006C85,\n\t6134:  0x00006C9B,\n\t6135:  0x00006C6A,\n\t6136:  0x00006C7A,\n\t6137:  0x00006C90,\n\t6138:  0x00006C70,\n\t6139:  0x00006C8C,\n\t6140:  0x00006C68,\n\t6141:  0x00006C96,\n\t6142:  0x00006C92,\n\t6143:  0x00006C7D,\n\t6144:  0x00006C83,\n\t6145:  0x00006C72,\n\t6146:  0x00006C7E,\n\t6147:  0x00006C74,\n\t6148:  0x00006C86,\n\t6149:  0x00006C76,\n\t6150:  0x00006C8D,\n\t6151:  0x00006C94,\n\t6152:  0x00006C98,\n\t6153:  0x00006C82,\n\t6154:  0x00007076,\n\t6155:  0x0000707C,\n\t6156:  0x0000707D,\n\t6157:  0x00007078,\n\t6158:  0x00007262,\n\t6159:  0x00007261,\n\t6160:  0x00007260,\n\t6161:  0x000072C4,\n\t6162:  0x000072C2,\n\t6163:  0x00007396,\n\t6164:  0x0000752C,\n\t6165:  0x0000752B,\n\t6166:  0x00007537,\n\t6167:  0x00007538,\n\t6168:  0x00007682,\n\t6169:  0x000076EF,\n\t6170:  0x000077E3,\n\t6171:  0x000079C1,\n\t6172:  0x000079C0,\n\t6173:  0x000079BF,\n\t6174:  0x00007A76,\n\t6175:  0x00007CFB,\n\t6176:  0x00007F55,\n\t6177:  0x00008096,\n\t6178:  0x00008093,\n\t6179:  0x0000809D,\n\t6180:  0x00008098,\n\t6181:  0x0000809B,\n\t6182:  0x0000809A,\n\t6183:  0x000080B2,\n\t6184:  0x0000826F,\n\t6185:  0x00008292,\n\t6186:  0x0000828B,\n\t6187:  0x0000828D,\n\t6188:  0x0000898B,\n\t6189:  0x000089D2,\n\t6190:  0x00008A00,\n\t6191:  0x00008C37,\n\t6192:  0x00008C46,\n\t6193:  0x00008C55,\n\t6194:  0x00008C9D,\n\t6195:  0x00008D64,\n\t6196:  0x00008D70,\n\t6197:  0x00008DB3,\n\t6198:  0x00008EAB,\n\t6199:  0x00008ECA,\n\t6200:  0x00008F9B,\n\t6201:  0x00008FB0,\n\t6202:  0x00008FC2,\n\t6203:  0x00008FC6,\n\t6204:  0x00008FC5,\n\t6205:  0x00008FC4,\n\t6206:  0x00005DE1,\n\t6207:  0x00009091,\n\t6208:  0x000090A2,\n\t6209:  0x000090AA,\n\t6210:  0x000090A6,\n\t6211:  0x000090A3,\n\t6212:  0x00009149,\n\t6213:  0x000091C6,\n\t6214:  0x000091CC,\n\t6215:  0x00009632,\n\t6216:  0x0000962E,\n\t6217:  0x00009631,\n\t6218:  0x0000962A,\n\t6219:  0x0000962C,\n\t6220:  0x00004E26,\n\t6221:  0x00004E56,\n\t6222:  0x00004E73,\n\t6223:  0x00004E8B,\n\t6224:  0x00004E9B,\n\t6225:  0x00004E9E,\n\t6226:  0x00004EAB,\n\t6227:  0x00004EAC,\n\t6228:  0x00004F6F,\n\t6229:  0x00004F9D,\n\t6230:  0x00004F8D,\n\t6231:  0x00004F73,\n\t6232:  0x00004F7F,\n\t6233:  0x00004F6C,\n\t6234:  0x00004F9B,\n\t6235:  0x00004F8B,\n\t6236:  0x00004F86,\n\t6237:  0x00004F83,\n\t6238:  0x00004F70,\n\t6239:  0x00004F75,\n\t6240:  0x00004F88,\n\t6241:  0x00004F69,\n\t6242:  0x00004F7B,\n\t6243:  0x00004F96,\n\t6244:  0x00004F7E,\n\t6245:  0x00004F8F,\n\t6246:  0x00004F91,\n\t6247:  0x00004F7A,\n\t6248:  0x00005154,\n\t6249:  0x00005152,\n\t6250:  0x00005155,\n\t6251:  0x00005169,\n\t6252:  0x00005177,\n\t6253:  0x00005176,\n\t6254:  0x00005178,\n\t6255:  0x000051BD,\n\t6256:  0x000051FD,\n\t6257:  0x0000523B,\n\t6258:  0x00005238,\n\t6259:  0x00005237,\n\t6260:  0x0000523A,\n\t6261:  0x00005230,\n\t6262:  0x0000522E,\n\t6263:  0x00005236,\n\t6264:  0x00005241,\n\t6265:  0x000052BE,\n\t6266:  0x000052BB,\n\t6267:  0x00005352,\n\t6268:  0x00005354,\n\t6269:  0x00005353,\n\t6270:  0x00005351,\n\t6271:  0x00005366,\n\t6272:  0x00005377,\n\t6273:  0x00005378,\n\t6274:  0x00005379,\n\t6275:  0x000053D6,\n\t6276:  0x000053D4,\n\t6277:  0x000053D7,\n\t6278:  0x00005473,\n\t6279:  0x00005475,\n\t6280:  0x00005496,\n\t6281:  0x00005478,\n\t6282:  0x00005495,\n\t6283:  0x00005480,\n\t6284:  0x0000547B,\n\t6285:  0x00005477,\n\t6286:  0x00005484,\n\t6287:  0x00005492,\n\t6288:  0x00005486,\n\t6289:  0x0000547C,\n\t6290:  0x00005490,\n\t6291:  0x00005471,\n\t6292:  0x00005476,\n\t6293:  0x0000548C,\n\t6294:  0x0000549A,\n\t6295:  0x00005462,\n\t6296:  0x00005468,\n\t6297:  0x0000548B,\n\t6298:  0x0000547D,\n\t6299:  0x0000548E,\n\t6300:  0x000056FA,\n\t6301:  0x00005783,\n\t6302:  0x00005777,\n\t6303:  0x0000576A,\n\t6304:  0x00005769,\n\t6305:  0x00005761,\n\t6306:  0x00005766,\n\t6307:  0x00005764,\n\t6308:  0x0000577C,\n\t6309:  0x0000591C,\n\t6310:  0x00005949,\n\t6311:  0x00005947,\n\t6312:  0x00005948,\n\t6313:  0x00005944,\n\t6314:  0x00005954,\n\t6315:  0x000059BE,\n\t6316:  0x000059BB,\n\t6317:  0x000059D4,\n\t6318:  0x000059B9,\n\t6319:  0x000059AE,\n\t6320:  0x000059D1,\n\t6321:  0x000059C6,\n\t6322:  0x000059D0,\n\t6323:  0x000059CD,\n\t6324:  0x000059CB,\n\t6325:  0x000059D3,\n\t6326:  0x000059CA,\n\t6327:  0x000059AF,\n\t6328:  0x000059B3,\n\t6329:  0x000059D2,\n\t6330:  0x000059C5,\n\t6331:  0x00005B5F,\n\t6332:  0x00005B64,\n\t6333:  0x00005B63,\n\t6334:  0x00005B97,\n\t6335:  0x00005B9A,\n\t6336:  0x00005B98,\n\t6337:  0x00005B9C,\n\t6338:  0x00005B99,\n\t6339:  0x00005B9B,\n\t6340:  0x00005C1A,\n\t6341:  0x00005C48,\n\t6342:  0x00005C45,\n\t6343:  0x00005C46,\n\t6344:  0x00005CB7,\n\t6345:  0x00005CA1,\n\t6346:  0x00005CB8,\n\t6347:  0x00005CA9,\n\t6348:  0x00005CAB,\n\t6349:  0x00005CB1,\n\t6350:  0x00005CB3,\n\t6351:  0x00005E18,\n\t6352:  0x00005E1A,\n\t6353:  0x00005E16,\n\t6354:  0x00005E15,\n\t6355:  0x00005E1B,\n\t6356:  0x00005E11,\n\t6357:  0x00005E78,\n\t6358:  0x00005E9A,\n\t6359:  0x00005E97,\n\t6360:  0x00005E9C,\n\t6361:  0x00005E95,\n\t6362:  0x00005E96,\n\t6363:  0x00005EF6,\n\t6364:  0x00005F26,\n\t6365:  0x00005F27,\n\t6366:  0x00005F29,\n\t6367:  0x00005F80,\n\t6368:  0x00005F81,\n\t6369:  0x00005F7F,\n\t6370:  0x00005F7C,\n\t6371:  0x00005FDD,\n\t6372:  0x00005FE0,\n\t6373:  0x00005FFD,\n\t6374:  0x00005FF5,\n\t6375:  0x00005FFF,\n\t6376:  0x0000600F,\n\t6377:  0x00006014,\n\t6378:  0x0000602F,\n\t6379:  0x00006035,\n\t6380:  0x00006016,\n\t6381:  0x0000602A,\n\t6382:  0x00006015,\n\t6383:  0x00006021,\n\t6384:  0x00006027,\n\t6385:  0x00006029,\n\t6386:  0x0000602B,\n\t6387:  0x0000601B,\n\t6388:  0x00006216,\n\t6389:  0x00006215,\n\t6390:  0x0000623F,\n\t6391:  0x0000623E,\n\t6392:  0x00006240,\n\t6393:  0x0000627F,\n\t6394:  0x000062C9,\n\t6395:  0x000062CC,\n\t6396:  0x000062C4,\n\t6397:  0x000062BF,\n\t6398:  0x000062C2,\n\t6399:  0x000062B9,\n\t6400:  0x000062D2,\n\t6401:  0x000062DB,\n\t6402:  0x000062AB,\n\t6403:  0x000062D3,\n\t6404:  0x000062D4,\n\t6405:  0x000062CB,\n\t6406:  0x000062C8,\n\t6407:  0x000062A8,\n\t6408:  0x000062BD,\n\t6409:  0x000062BC,\n\t6410:  0x000062D0,\n\t6411:  0x000062D9,\n\t6412:  0x000062C7,\n\t6413:  0x000062CD,\n\t6414:  0x000062B5,\n\t6415:  0x000062DA,\n\t6416:  0x000062B1,\n\t6417:  0x000062D8,\n\t6418:  0x000062D6,\n\t6419:  0x000062D7,\n\t6420:  0x000062C6,\n\t6421:  0x000062AC,\n\t6422:  0x000062CE,\n\t6423:  0x0000653E,\n\t6424:  0x000065A7,\n\t6425:  0x000065BC,\n\t6426:  0x000065FA,\n\t6427:  0x00006614,\n\t6428:  0x00006613,\n\t6429:  0x0000660C,\n\t6430:  0x00006606,\n\t6431:  0x00006602,\n\t6432:  0x0000660E,\n\t6433:  0x00006600,\n\t6434:  0x0000660F,\n\t6435:  0x00006615,\n\t6436:  0x0000660A,\n\t6437:  0x00006607,\n\t6438:  0x0000670D,\n\t6439:  0x0000670B,\n\t6440:  0x0000676D,\n\t6441:  0x0000678B,\n\t6442:  0x00006795,\n\t6443:  0x00006771,\n\t6444:  0x0000679C,\n\t6445:  0x00006773,\n\t6446:  0x00006777,\n\t6447:  0x00006787,\n\t6448:  0x0000679D,\n\t6449:  0x00006797,\n\t6450:  0x0000676F,\n\t6451:  0x00006770,\n\t6452:  0x0000677F,\n\t6453:  0x00006789,\n\t6454:  0x0000677E,\n\t6455:  0x00006790,\n\t6456:  0x00006775,\n\t6457:  0x0000679A,\n\t6458:  0x00006793,\n\t6459:  0x0000677C,\n\t6460:  0x0000676A,\n\t6461:  0x00006772,\n\t6462:  0x00006B23,\n\t6463:  0x00006B66,\n\t6464:  0x00006B67,\n\t6465:  0x00006B7F,\n\t6466:  0x00006C13,\n\t6467:  0x00006C1B,\n\t6468:  0x00006CE3,\n\t6469:  0x00006CE8,\n\t6470:  0x00006CF3,\n\t6471:  0x00006CB1,\n\t6472:  0x00006CCC,\n\t6473:  0x00006CE5,\n\t6474:  0x00006CB3,\n\t6475:  0x00006CBD,\n\t6476:  0x00006CBE,\n\t6477:  0x00006CBC,\n\t6478:  0x00006CE2,\n\t6479:  0x00006CAB,\n\t6480:  0x00006CD5,\n\t6481:  0x00006CD3,\n\t6482:  0x00006CB8,\n\t6483:  0x00006CC4,\n\t6484:  0x00006CB9,\n\t6485:  0x00006CC1,\n\t6486:  0x00006CAE,\n\t6487:  0x00006CD7,\n\t6488:  0x00006CC5,\n\t6489:  0x00006CF1,\n\t6490:  0x00006CBF,\n\t6491:  0x00006CBB,\n\t6492:  0x00006CE1,\n\t6493:  0x00006CDB,\n\t6494:  0x00006CCA,\n\t6495:  0x00006CAC,\n\t6496:  0x00006CEF,\n\t6497:  0x00006CDC,\n\t6498:  0x00006CD6,\n\t6499:  0x00006CE0,\n\t6500:  0x00007095,\n\t6501:  0x0000708E,\n\t6502:  0x00007092,\n\t6503:  0x0000708A,\n\t6504:  0x00007099,\n\t6505:  0x0000722C,\n\t6506:  0x0000722D,\n\t6507:  0x00007238,\n\t6508:  0x00007248,\n\t6509:  0x00007267,\n\t6510:  0x00007269,\n\t6511:  0x000072C0,\n\t6512:  0x000072CE,\n\t6513:  0x000072D9,\n\t6514:  0x000072D7,\n\t6515:  0x000072D0,\n\t6516:  0x000073A9,\n\t6517:  0x000073A8,\n\t6518:  0x0000739F,\n\t6519:  0x000073AB,\n\t6520:  0x000073A5,\n\t6521:  0x0000753D,\n\t6522:  0x0000759D,\n\t6523:  0x00007599,\n\t6524:  0x0000759A,\n\t6525:  0x00007684,\n\t6526:  0x000076C2,\n\t6527:  0x000076F2,\n\t6528:  0x000076F4,\n\t6529:  0x000077E5,\n\t6530:  0x000077FD,\n\t6531:  0x0000793E,\n\t6532:  0x00007940,\n\t6533:  0x00007941,\n\t6534:  0x000079C9,\n\t6535:  0x000079C8,\n\t6536:  0x00007A7A,\n\t6537:  0x00007A79,\n\t6538:  0x00007AFA,\n\t6539:  0x00007CFE,\n\t6540:  0x00007F54,\n\t6541:  0x00007F8C,\n\t6542:  0x00007F8B,\n\t6543:  0x00008005,\n\t6544:  0x000080BA,\n\t6545:  0x000080A5,\n\t6546:  0x000080A2,\n\t6547:  0x000080B1,\n\t6548:  0x000080A1,\n\t6549:  0x000080AB,\n\t6550:  0x000080A9,\n\t6551:  0x000080B4,\n\t6552:  0x000080AA,\n\t6553:  0x000080AF,\n\t6554:  0x000081E5,\n\t6555:  0x000081FE,\n\t6556:  0x0000820D,\n\t6557:  0x000082B3,\n\t6558:  0x0000829D,\n\t6559:  0x00008299,\n\t6560:  0x000082AD,\n\t6561:  0x000082BD,\n\t6562:  0x0000829F,\n\t6563:  0x000082B9,\n\t6564:  0x000082B1,\n\t6565:  0x000082AC,\n\t6566:  0x000082A5,\n\t6567:  0x000082AF,\n\t6568:  0x000082B8,\n\t6569:  0x000082A3,\n\t6570:  0x000082B0,\n\t6571:  0x000082BE,\n\t6572:  0x000082B7,\n\t6573:  0x0000864E,\n\t6574:  0x00008671,\n\t6575:  0x0000521D,\n\t6576:  0x00008868,\n\t6577:  0x00008ECB,\n\t6578:  0x00008FCE,\n\t6579:  0x00008FD4,\n\t6580:  0x00008FD1,\n\t6581:  0x000090B5,\n\t6582:  0x000090B8,\n\t6583:  0x000090B1,\n\t6584:  0x000090B6,\n\t6585:  0x000091C7,\n\t6586:  0x000091D1,\n\t6587:  0x00009577,\n\t6588:  0x00009580,\n\t6589:  0x0000961C,\n\t6590:  0x00009640,\n\t6591:  0x0000963F,\n\t6592:  0x0000963B,\n\t6593:  0x00009644,\n\t6594:  0x00009642,\n\t6595:  0x000096B9,\n\t6596:  0x000096E8,\n\t6597:  0x00009752,\n\t6598:  0x0000975E,\n\t6599:  0x00004E9F,\n\t6600:  0x00004EAD,\n\t6601:  0x00004EAE,\n\t6602:  0x00004FE1,\n\t6603:  0x00004FB5,\n\t6604:  0x00004FAF,\n\t6605:  0x00004FBF,\n\t6606:  0x00004FE0,\n\t6607:  0x00004FD1,\n\t6608:  0x00004FCF,\n\t6609:  0x00004FDD,\n\t6610:  0x00004FC3,\n\t6611:  0x00004FB6,\n\t6612:  0x00004FD8,\n\t6613:  0x00004FDF,\n\t6614:  0x00004FCA,\n\t6615:  0x00004FD7,\n\t6616:  0x00004FAE,\n\t6617:  0x00004FD0,\n\t6618:  0x00004FC4,\n\t6619:  0x00004FC2,\n\t6620:  0x00004FDA,\n\t6621:  0x00004FCE,\n\t6622:  0x00004FDE,\n\t6623:  0x00004FB7,\n\t6624:  0x00005157,\n\t6625:  0x00005192,\n\t6626:  0x00005191,\n\t6627:  0x000051A0,\n\t6628:  0x0000524E,\n\t6629:  0x00005243,\n\t6630:  0x0000524A,\n\t6631:  0x0000524D,\n\t6632:  0x0000524C,\n\t6633:  0x0000524B,\n\t6634:  0x00005247,\n\t6635:  0x000052C7,\n\t6636:  0x000052C9,\n\t6637:  0x000052C3,\n\t6638:  0x000052C1,\n\t6639:  0x0000530D,\n\t6640:  0x00005357,\n\t6641:  0x0000537B,\n\t6642:  0x0000539A,\n\t6643:  0x000053DB,\n\t6644:  0x000054AC,\n\t6645:  0x000054C0,\n\t6646:  0x000054A8,\n\t6647:  0x000054CE,\n\t6648:  0x000054C9,\n\t6649:  0x000054B8,\n\t6650:  0x000054A6,\n\t6651:  0x000054B3,\n\t6652:  0x000054C7,\n\t6653:  0x000054C2,\n\t6654:  0x000054BD,\n\t6655:  0x000054AA,\n\t6656:  0x000054C1,\n\t6657:  0x000054C4,\n\t6658:  0x000054C8,\n\t6659:  0x000054AF,\n\t6660:  0x000054AB,\n\t6661:  0x000054B1,\n\t6662:  0x000054BB,\n\t6663:  0x000054A9,\n\t6664:  0x000054A7,\n\t6665:  0x000054BF,\n\t6666:  0x000056FF,\n\t6667:  0x00005782,\n\t6668:  0x0000578B,\n\t6669:  0x000057A0,\n\t6670:  0x000057A3,\n\t6671:  0x000057A2,\n\t6672:  0x000057CE,\n\t6673:  0x000057AE,\n\t6674:  0x00005793,\n\t6675:  0x00005955,\n\t6676:  0x00005951,\n\t6677:  0x0000594F,\n\t6678:  0x0000594E,\n\t6679:  0x00005950,\n\t6680:  0x000059DC,\n\t6681:  0x000059D8,\n\t6682:  0x000059FF,\n\t6683:  0x000059E3,\n\t6684:  0x000059E8,\n\t6685:  0x00005A03,\n\t6686:  0x000059E5,\n\t6687:  0x000059EA,\n\t6688:  0x000059DA,\n\t6689:  0x000059E6,\n\t6690:  0x00005A01,\n\t6691:  0x000059FB,\n\t6692:  0x00005B69,\n\t6693:  0x00005BA3,\n\t6694:  0x00005BA6,\n\t6695:  0x00005BA4,\n\t6696:  0x00005BA2,\n\t6697:  0x00005BA5,\n\t6698:  0x00005C01,\n\t6699:  0x00005C4E,\n\t6700:  0x00005C4F,\n\t6701:  0x00005C4D,\n\t6702:  0x00005C4B,\n\t6703:  0x00005CD9,\n\t6704:  0x00005CD2,\n\t6705:  0x00005DF7,\n\t6706:  0x00005E1D,\n\t6707:  0x00005E25,\n\t6708:  0x00005E1F,\n\t6709:  0x00005E7D,\n\t6710:  0x00005EA0,\n\t6711:  0x00005EA6,\n\t6712:  0x00005EFA,\n\t6713:  0x00005F08,\n\t6714:  0x00005F2D,\n\t6715:  0x00005F65,\n\t6716:  0x00005F88,\n\t6717:  0x00005F85,\n\t6718:  0x00005F8A,\n\t6719:  0x00005F8B,\n\t6720:  0x00005F87,\n\t6721:  0x00005F8C,\n\t6722:  0x00005F89,\n\t6723:  0x00006012,\n\t6724:  0x0000601D,\n\t6725:  0x00006020,\n\t6726:  0x00006025,\n\t6727:  0x0000600E,\n\t6728:  0x00006028,\n\t6729:  0x0000604D,\n\t6730:  0x00006070,\n\t6731:  0x00006068,\n\t6732:  0x00006062,\n\t6733:  0x00006046,\n\t6734:  0x00006043,\n\t6735:  0x0000606C,\n\t6736:  0x0000606B,\n\t6737:  0x0000606A,\n\t6738:  0x00006064,\n\t6739:  0x00006241,\n\t6740:  0x000062DC,\n\t6741:  0x00006316,\n\t6742:  0x00006309,\n\t6743:  0x000062FC,\n\t6744:  0x000062ED,\n\t6745:  0x00006301,\n\t6746:  0x000062EE,\n\t6747:  0x000062FD,\n\t6748:  0x00006307,\n\t6749:  0x000062F1,\n\t6750:  0x000062F7,\n\t6751:  0x000062EF,\n\t6752:  0x000062EC,\n\t6753:  0x000062FE,\n\t6754:  0x000062F4,\n\t6755:  0x00006311,\n\t6756:  0x00006302,\n\t6757:  0x0000653F,\n\t6758:  0x00006545,\n\t6759:  0x000065AB,\n\t6760:  0x000065BD,\n\t6761:  0x000065E2,\n\t6762:  0x00006625,\n\t6763:  0x0000662D,\n\t6764:  0x00006620,\n\t6765:  0x00006627,\n\t6766:  0x0000662F,\n\t6767:  0x0000661F,\n\t6768:  0x00006628,\n\t6769:  0x00006631,\n\t6770:  0x00006624,\n\t6771:  0x000066F7,\n\t6772:  0x000067FF,\n\t6773:  0x000067D3,\n\t6774:  0x000067F1,\n\t6775:  0x000067D4,\n\t6776:  0x000067D0,\n\t6777:  0x000067EC,\n\t6778:  0x000067B6,\n\t6779:  0x000067AF,\n\t6780:  0x000067F5,\n\t6781:  0x000067E9,\n\t6782:  0x000067EF,\n\t6783:  0x000067C4,\n\t6784:  0x000067D1,\n\t6785:  0x000067B4,\n\t6786:  0x000067DA,\n\t6787:  0x000067E5,\n\t6788:  0x000067B8,\n\t6789:  0x000067CF,\n\t6790:  0x000067DE,\n\t6791:  0x000067F3,\n\t6792:  0x000067B0,\n\t6793:  0x000067D9,\n\t6794:  0x000067E2,\n\t6795:  0x000067DD,\n\t6796:  0x000067D2,\n\t6797:  0x00006B6A,\n\t6798:  0x00006B83,\n\t6799:  0x00006B86,\n\t6800:  0x00006BB5,\n\t6801:  0x00006BD2,\n\t6802:  0x00006BD7,\n\t6803:  0x00006C1F,\n\t6804:  0x00006CC9,\n\t6805:  0x00006D0B,\n\t6806:  0x00006D32,\n\t6807:  0x00006D2A,\n\t6808:  0x00006D41,\n\t6809:  0x00006D25,\n\t6810:  0x00006D0C,\n\t6811:  0x00006D31,\n\t6812:  0x00006D1E,\n\t6813:  0x00006D17,\n\t6814:  0x00006D3B,\n\t6815:  0x00006D3D,\n\t6816:  0x00006D3E,\n\t6817:  0x00006D36,\n\t6818:  0x00006D1B,\n\t6819:  0x00006CF5,\n\t6820:  0x00006D39,\n\t6821:  0x00006D27,\n\t6822:  0x00006D38,\n\t6823:  0x00006D29,\n\t6824:  0x00006D2E,\n\t6825:  0x00006D35,\n\t6826:  0x00006D0E,\n\t6827:  0x00006D2B,\n\t6828:  0x000070AB,\n\t6829:  0x000070BA,\n\t6830:  0x000070B3,\n\t6831:  0x000070AC,\n\t6832:  0x000070AF,\n\t6833:  0x000070AD,\n\t6834:  0x000070B8,\n\t6835:  0x000070AE,\n\t6836:  0x000070A4,\n\t6837:  0x00007230,\n\t6838:  0x00007272,\n\t6839:  0x0000726F,\n\t6840:  0x00007274,\n\t6841:  0x000072E9,\n\t6842:  0x000072E0,\n\t6843:  0x000072E1,\n\t6844:  0x000073B7,\n\t6845:  0x000073CA,\n\t6846:  0x000073BB,\n\t6847:  0x000073B2,\n\t6848:  0x000073CD,\n\t6849:  0x000073C0,\n\t6850:  0x000073B3,\n\t6851:  0x0000751A,\n\t6852:  0x0000752D,\n\t6853:  0x0000754F,\n\t6854:  0x0000754C,\n\t6855:  0x0000754E,\n\t6856:  0x0000754B,\n\t6857:  0x000075AB,\n\t6858:  0x000075A4,\n\t6859:  0x000075A5,\n\t6860:  0x000075A2,\n\t6861:  0x000075A3,\n\t6862:  0x00007678,\n\t6863:  0x00007686,\n\t6864:  0x00007687,\n\t6865:  0x00007688,\n\t6866:  0x000076C8,\n\t6867:  0x000076C6,\n\t6868:  0x000076C3,\n\t6869:  0x000076C5,\n\t6870:  0x00007701,\n\t6871:  0x000076F9,\n\t6872:  0x000076F8,\n\t6873:  0x00007709,\n\t6874:  0x0000770B,\n\t6875:  0x000076FE,\n\t6876:  0x000076FC,\n\t6877:  0x00007707,\n\t6878:  0x000077DC,\n\t6879:  0x00007802,\n\t6880:  0x00007814,\n\t6881:  0x0000780C,\n\t6882:  0x0000780D,\n\t6883:  0x00007946,\n\t6884:  0x00007949,\n\t6885:  0x00007948,\n\t6886:  0x00007947,\n\t6887:  0x000079B9,\n\t6888:  0x000079BA,\n\t6889:  0x000079D1,\n\t6890:  0x000079D2,\n\t6891:  0x000079CB,\n\t6892:  0x00007A7F,\n\t6893:  0x00007A81,\n\t6894:  0x00007AFF,\n\t6895:  0x00007AFD,\n\t6896:  0x00007C7D,\n\t6897:  0x00007D02,\n\t6898:  0x00007D05,\n\t6899:  0x00007D00,\n\t6900:  0x00007D09,\n\t6901:  0x00007D07,\n\t6902:  0x00007D04,\n\t6903:  0x00007D06,\n\t6904:  0x00007F38,\n\t6905:  0x00007F8E,\n\t6906:  0x00007FBF,\n\t6907:  0x00008004,\n\t6908:  0x00008010,\n\t6909:  0x0000800D,\n\t6910:  0x00008011,\n\t6911:  0x00008036,\n\t6912:  0x000080D6,\n\t6913:  0x000080E5,\n\t6914:  0x000080DA,\n\t6915:  0x000080C3,\n\t6916:  0x000080C4,\n\t6917:  0x000080CC,\n\t6918:  0x000080E1,\n\t6919:  0x000080DB,\n\t6920:  0x000080CE,\n\t6921:  0x000080DE,\n\t6922:  0x000080E4,\n\t6923:  0x000080DD,\n\t6924:  0x000081F4,\n\t6925:  0x00008222,\n\t6926:  0x000082E7,\n\t6927:  0x00008303,\n\t6928:  0x00008305,\n\t6929:  0x000082E3,\n\t6930:  0x000082DB,\n\t6931:  0x000082E6,\n\t6932:  0x00008304,\n\t6933:  0x000082E5,\n\t6934:  0x00008302,\n\t6935:  0x00008309,\n\t6936:  0x000082D2,\n\t6937:  0x000082D7,\n\t6938:  0x000082F1,\n\t6939:  0x00008301,\n\t6940:  0x000082DC,\n\t6941:  0x000082D4,\n\t6942:  0x000082D1,\n\t6943:  0x000082DE,\n\t6944:  0x000082D3,\n\t6945:  0x000082DF,\n\t6946:  0x000082EF,\n\t6947:  0x00008306,\n\t6948:  0x00008650,\n\t6949:  0x00008679,\n\t6950:  0x0000867B,\n\t6951:  0x0000867A,\n\t6952:  0x0000884D,\n\t6953:  0x0000886B,\n\t6954:  0x00008981,\n\t6955:  0x000089D4,\n\t6956:  0x00008A08,\n\t6957:  0x00008A02,\n\t6958:  0x00008A03,\n\t6959:  0x00008C9E,\n\t6960:  0x00008CA0,\n\t6961:  0x00008D74,\n\t6962:  0x00008D73,\n\t6963:  0x00008DB4,\n\t6964:  0x00008ECD,\n\t6965:  0x00008ECC,\n\t6966:  0x00008FF0,\n\t6967:  0x00008FE6,\n\t6968:  0x00008FE2,\n\t6969:  0x00008FEA,\n\t6970:  0x00008FE5,\n\t6971:  0x00008FED,\n\t6972:  0x00008FEB,\n\t6973:  0x00008FE4,\n\t6974:  0x00008FE8,\n\t6975:  0x000090CA,\n\t6976:  0x000090CE,\n\t6977:  0x000090C1,\n\t6978:  0x000090C3,\n\t6979:  0x0000914B,\n\t6980:  0x0000914A,\n\t6981:  0x000091CD,\n\t6982:  0x00009582,\n\t6983:  0x00009650,\n\t6984:  0x0000964B,\n\t6985:  0x0000964C,\n\t6986:  0x0000964D,\n\t6987:  0x00009762,\n\t6988:  0x00009769,\n\t6989:  0x000097CB,\n\t6990:  0x000097ED,\n\t6991:  0x000097F3,\n\t6992:  0x00009801,\n\t6993:  0x000098A8,\n\t6994:  0x000098DB,\n\t6995:  0x000098DF,\n\t6996:  0x00009996,\n\t6997:  0x00009999,\n\t6998:  0x00004E58,\n\t6999:  0x00004EB3,\n\t7000:  0x0000500C,\n\t7001:  0x0000500D,\n\t7002:  0x00005023,\n\t7003:  0x00004FEF,\n\t7004:  0x00005026,\n\t7005:  0x00005025,\n\t7006:  0x00004FF8,\n\t7007:  0x00005029,\n\t7008:  0x00005016,\n\t7009:  0x00005006,\n\t7010:  0x0000503C,\n\t7011:  0x0000501F,\n\t7012:  0x0000501A,\n\t7013:  0x00005012,\n\t7014:  0x00005011,\n\t7015:  0x00004FFA,\n\t7016:  0x00005000,\n\t7017:  0x00005014,\n\t7018:  0x00005028,\n\t7019:  0x00004FF1,\n\t7020:  0x00005021,\n\t7021:  0x0000500B,\n\t7022:  0x00005019,\n\t7023:  0x00005018,\n\t7024:  0x00004FF3,\n\t7025:  0x00004FEE,\n\t7026:  0x0000502D,\n\t7027:  0x0000502A,\n\t7028:  0x00004FFE,\n\t7029:  0x0000502B,\n\t7030:  0x00005009,\n\t7031:  0x0000517C,\n\t7032:  0x000051A4,\n\t7033:  0x000051A5,\n\t7034:  0x000051A2,\n\t7035:  0x000051CD,\n\t7036:  0x000051CC,\n\t7037:  0x000051C6,\n\t7038:  0x000051CB,\n\t7039:  0x00005256,\n\t7040:  0x0000525C,\n\t7041:  0x00005254,\n\t7042:  0x0000525B,\n\t7043:  0x0000525D,\n\t7044:  0x0000532A,\n\t7045:  0x0000537F,\n\t7046:  0x0000539F,\n\t7047:  0x0000539D,\n\t7048:  0x000053DF,\n\t7049:  0x000054E8,\n\t7050:  0x00005510,\n\t7051:  0x00005501,\n\t7052:  0x00005537,\n\t7053:  0x000054FC,\n\t7054:  0x000054E5,\n\t7055:  0x000054F2,\n\t7056:  0x00005506,\n\t7057:  0x000054FA,\n\t7058:  0x00005514,\n\t7059:  0x000054E9,\n\t7060:  0x000054ED,\n\t7061:  0x000054E1,\n\t7062:  0x00005509,\n\t7063:  0x000054EE,\n\t7064:  0x000054EA,\n\t7065:  0x000054E6,\n\t7066:  0x00005527,\n\t7067:  0x00005507,\n\t7068:  0x000054FD,\n\t7069:  0x0000550F,\n\t7070:  0x00005703,\n\t7071:  0x00005704,\n\t7072:  0x000057C2,\n\t7073:  0x000057D4,\n\t7074:  0x000057CB,\n\t7075:  0x000057C3,\n\t7076:  0x00005809,\n\t7077:  0x0000590F,\n\t7078:  0x00005957,\n\t7079:  0x00005958,\n\t7080:  0x0000595A,\n\t7081:  0x00005A11,\n\t7082:  0x00005A18,\n\t7083:  0x00005A1C,\n\t7084:  0x00005A1F,\n\t7085:  0x00005A1B,\n\t7086:  0x00005A13,\n\t7087:  0x000059EC,\n\t7088:  0x00005A20,\n\t7089:  0x00005A23,\n\t7090:  0x00005A29,\n\t7091:  0x00005A25,\n\t7092:  0x00005A0C,\n\t7093:  0x00005A09,\n\t7094:  0x00005B6B,\n\t7095:  0x00005C58,\n\t7096:  0x00005BB0,\n\t7097:  0x00005BB3,\n\t7098:  0x00005BB6,\n\t7099:  0x00005BB4,\n\t7100:  0x00005BAE,\n\t7101:  0x00005BB5,\n\t7102:  0x00005BB9,\n\t7103:  0x00005BB8,\n\t7104:  0x00005C04,\n\t7105:  0x00005C51,\n\t7106:  0x00005C55,\n\t7107:  0x00005C50,\n\t7108:  0x00005CED,\n\t7109:  0x00005CFD,\n\t7110:  0x00005CFB,\n\t7111:  0x00005CEA,\n\t7112:  0x00005CE8,\n\t7113:  0x00005CF0,\n\t7114:  0x00005CF6,\n\t7115:  0x00005D01,\n\t7116:  0x00005CF4,\n\t7117:  0x00005DEE,\n\t7118:  0x00005E2D,\n\t7119:  0x00005E2B,\n\t7120:  0x00005EAB,\n\t7121:  0x00005EAD,\n\t7122:  0x00005EA7,\n\t7123:  0x00005F31,\n\t7124:  0x00005F92,\n\t7125:  0x00005F91,\n\t7126:  0x00005F90,\n\t7127:  0x00006059,\n\t7128:  0x00006063,\n\t7129:  0x00006065,\n\t7130:  0x00006050,\n\t7131:  0x00006055,\n\t7132:  0x0000606D,\n\t7133:  0x00006069,\n\t7134:  0x0000606F,\n\t7135:  0x00006084,\n\t7136:  0x0000609F,\n\t7137:  0x0000609A,\n\t7138:  0x0000608D,\n\t7139:  0x00006094,\n\t7140:  0x0000608C,\n\t7141:  0x00006085,\n\t7142:  0x00006096,\n\t7143:  0x00006247,\n\t7144:  0x000062F3,\n\t7145:  0x00006308,\n\t7146:  0x000062FF,\n\t7147:  0x0000634E,\n\t7148:  0x0000633E,\n\t7149:  0x0000632F,\n\t7150:  0x00006355,\n\t7151:  0x00006342,\n\t7152:  0x00006346,\n\t7153:  0x0000634F,\n\t7154:  0x00006349,\n\t7155:  0x0000633A,\n\t7156:  0x00006350,\n\t7157:  0x0000633D,\n\t7158:  0x0000632A,\n\t7159:  0x0000632B,\n\t7160:  0x00006328,\n\t7161:  0x0000634D,\n\t7162:  0x0000634C,\n\t7163:  0x00006548,\n\t7164:  0x00006549,\n\t7165:  0x00006599,\n\t7166:  0x000065C1,\n\t7167:  0x000065C5,\n\t7168:  0x00006642,\n\t7169:  0x00006649,\n\t7170:  0x0000664F,\n\t7171:  0x00006643,\n\t7172:  0x00006652,\n\t7173:  0x0000664C,\n\t7174:  0x00006645,\n\t7175:  0x00006641,\n\t7176:  0x000066F8,\n\t7177:  0x00006714,\n\t7178:  0x00006715,\n\t7179:  0x00006717,\n\t7180:  0x00006821,\n\t7181:  0x00006838,\n\t7182:  0x00006848,\n\t7183:  0x00006846,\n\t7184:  0x00006853,\n\t7185:  0x00006839,\n\t7186:  0x00006842,\n\t7187:  0x00006854,\n\t7188:  0x00006829,\n\t7189:  0x000068B3,\n\t7190:  0x00006817,\n\t7191:  0x0000684C,\n\t7192:  0x00006851,\n\t7193:  0x0000683D,\n\t7194:  0x000067F4,\n\t7195:  0x00006850,\n\t7196:  0x00006840,\n\t7197:  0x0000683C,\n\t7198:  0x00006843,\n\t7199:  0x0000682A,\n\t7200:  0x00006845,\n\t7201:  0x00006813,\n\t7202:  0x00006818,\n\t7203:  0x00006841,\n\t7204:  0x00006B8A,\n\t7205:  0x00006B89,\n\t7206:  0x00006BB7,\n\t7207:  0x00006C23,\n\t7208:  0x00006C27,\n\t7209:  0x00006C28,\n\t7210:  0x00006C26,\n\t7211:  0x00006C24,\n\t7212:  0x00006CF0,\n\t7213:  0x00006D6A,\n\t7214:  0x00006D95,\n\t7215:  0x00006D88,\n\t7216:  0x00006D87,\n\t7217:  0x00006D66,\n\t7218:  0x00006D78,\n\t7219:  0x00006D77,\n\t7220:  0x00006D59,\n\t7221:  0x00006D93,\n\t7222:  0x00006D6C,\n\t7223:  0x00006D89,\n\t7224:  0x00006D6E,\n\t7225:  0x00006D5A,\n\t7226:  0x00006D74,\n\t7227:  0x00006D69,\n\t7228:  0x00006D8C,\n\t7229:  0x00006D8A,\n\t7230:  0x00006D79,\n\t7231:  0x00006D85,\n\t7232:  0x00006D65,\n\t7233:  0x00006D94,\n\t7234:  0x000070CA,\n\t7235:  0x000070D8,\n\t7236:  0x000070E4,\n\t7237:  0x000070D9,\n\t7238:  0x000070C8,\n\t7239:  0x000070CF,\n\t7240:  0x00007239,\n\t7241:  0x00007279,\n\t7242:  0x000072FC,\n\t7243:  0x000072F9,\n\t7244:  0x000072FD,\n\t7245:  0x000072F8,\n\t7246:  0x000072F7,\n\t7247:  0x00007386,\n\t7248:  0x000073ED,\n\t7249:  0x00007409,\n\t7250:  0x000073EE,\n\t7251:  0x000073E0,\n\t7252:  0x000073EA,\n\t7253:  0x000073DE,\n\t7254:  0x00007554,\n\t7255:  0x0000755D,\n\t7256:  0x0000755C,\n\t7257:  0x0000755A,\n\t7258:  0x00007559,\n\t7259:  0x000075BE,\n\t7260:  0x000075C5,\n\t7261:  0x000075C7,\n\t7262:  0x000075B2,\n\t7263:  0x000075B3,\n\t7264:  0x000075BD,\n\t7265:  0x000075BC,\n\t7266:  0x000075B9,\n\t7267:  0x000075C2,\n\t7268:  0x000075B8,\n\t7269:  0x0000768B,\n\t7270:  0x000076B0,\n\t7271:  0x000076CA,\n\t7272:  0x000076CD,\n\t7273:  0x000076CE,\n\t7274:  0x00007729,\n\t7275:  0x0000771F,\n\t7276:  0x00007720,\n\t7277:  0x00007728,\n\t7278:  0x000077E9,\n\t7279:  0x00007830,\n\t7280:  0x00007827,\n\t7281:  0x00007838,\n\t7282:  0x0000781D,\n\t7283:  0x00007834,\n\t7284:  0x00007837,\n\t7285:  0x00007825,\n\t7286:  0x0000782D,\n\t7287:  0x00007820,\n\t7288:  0x0000781F,\n\t7289:  0x00007832,\n\t7290:  0x00007955,\n\t7291:  0x00007950,\n\t7292:  0x00007960,\n\t7293:  0x0000795F,\n\t7294:  0x00007956,\n\t7295:  0x0000795E,\n\t7296:  0x0000795D,\n\t7297:  0x00007957,\n\t7298:  0x0000795A,\n\t7299:  0x000079E4,\n\t7300:  0x000079E3,\n\t7301:  0x000079E7,\n\t7302:  0x000079DF,\n\t7303:  0x000079E6,\n\t7304:  0x000079E9,\n\t7305:  0x000079D8,\n\t7306:  0x00007A84,\n\t7307:  0x00007A88,\n\t7308:  0x00007AD9,\n\t7309:  0x00007B06,\n\t7310:  0x00007B11,\n\t7311:  0x00007C89,\n\t7312:  0x00007D21,\n\t7313:  0x00007D17,\n\t7314:  0x00007D0B,\n\t7315:  0x00007D0A,\n\t7316:  0x00007D20,\n\t7317:  0x00007D22,\n\t7318:  0x00007D14,\n\t7319:  0x00007D10,\n\t7320:  0x00007D15,\n\t7321:  0x00007D1A,\n\t7322:  0x00007D1C,\n\t7323:  0x00007D0D,\n\t7324:  0x00007D19,\n\t7325:  0x00007D1B,\n\t7326:  0x00007F3A,\n\t7327:  0x00007F5F,\n\t7328:  0x00007F94,\n\t7329:  0x00007FC5,\n\t7330:  0x00007FC1,\n\t7331:  0x00008006,\n\t7332:  0x00008018,\n\t7333:  0x00008015,\n\t7334:  0x00008019,\n\t7335:  0x00008017,\n\t7336:  0x0000803D,\n\t7337:  0x0000803F,\n\t7338:  0x000080F1,\n\t7339:  0x00008102,\n\t7340:  0x000080F0,\n\t7341:  0x00008105,\n\t7342:  0x000080ED,\n\t7343:  0x000080F4,\n\t7344:  0x00008106,\n\t7345:  0x000080F8,\n\t7346:  0x000080F3,\n\t7347:  0x00008108,\n\t7348:  0x000080FD,\n\t7349:  0x0000810A,\n\t7350:  0x000080FC,\n\t7351:  0x000080EF,\n\t7352:  0x000081ED,\n\t7353:  0x000081EC,\n\t7354:  0x00008200,\n\t7355:  0x00008210,\n\t7356:  0x0000822A,\n\t7357:  0x0000822B,\n\t7358:  0x00008228,\n\t7359:  0x0000822C,\n\t7360:  0x000082BB,\n\t7361:  0x0000832B,\n\t7362:  0x00008352,\n\t7363:  0x00008354,\n\t7364:  0x0000834A,\n\t7365:  0x00008338,\n\t7366:  0x00008350,\n\t7367:  0x00008349,\n\t7368:  0x00008335,\n\t7369:  0x00008334,\n\t7370:  0x0000834F,\n\t7371:  0x00008332,\n\t7372:  0x00008339,\n\t7373:  0x00008336,\n\t7374:  0x00008317,\n\t7375:  0x00008340,\n\t7376:  0x00008331,\n\t7377:  0x00008328,\n\t7378:  0x00008343,\n\t7379:  0x00008654,\n\t7380:  0x0000868A,\n\t7381:  0x000086AA,\n\t7382:  0x00008693,\n\t7383:  0x000086A4,\n\t7384:  0x000086A9,\n\t7385:  0x0000868C,\n\t7386:  0x000086A3,\n\t7387:  0x0000869C,\n\t7388:  0x00008870,\n\t7389:  0x00008877,\n\t7390:  0x00008881,\n\t7391:  0x00008882,\n\t7392:  0x0000887D,\n\t7393:  0x00008879,\n\t7394:  0x00008A18,\n\t7395:  0x00008A10,\n\t7396:  0x00008A0E,\n\t7397:  0x00008A0C,\n\t7398:  0x00008A15,\n\t7399:  0x00008A0A,\n\t7400:  0x00008A17,\n\t7401:  0x00008A13,\n\t7402:  0x00008A16,\n\t7403:  0x00008A0F,\n\t7404:  0x00008A11,\n\t7405:  0x00008C48,\n\t7406:  0x00008C7A,\n\t7407:  0x00008C79,\n\t7408:  0x00008CA1,\n\t7409:  0x00008CA2,\n\t7410:  0x00008D77,\n\t7411:  0x00008EAC,\n\t7412:  0x00008ED2,\n\t7413:  0x00008ED4,\n\t7414:  0x00008ECF,\n\t7415:  0x00008FB1,\n\t7416:  0x00009001,\n\t7417:  0x00009006,\n\t7418:  0x00008FF7,\n\t7419:  0x00009000,\n\t7420:  0x00008FFA,\n\t7421:  0x00008FF4,\n\t7422:  0x00009003,\n\t7423:  0x00008FFD,\n\t7424:  0x00009005,\n\t7425:  0x00008FF8,\n\t7426:  0x00009095,\n\t7427:  0x000090E1,\n\t7428:  0x000090DD,\n\t7429:  0x000090E2,\n\t7430:  0x00009152,\n\t7431:  0x0000914D,\n\t7432:  0x0000914C,\n\t7433:  0x000091D8,\n\t7434:  0x000091DD,\n\t7435:  0x000091D7,\n\t7436:  0x000091DC,\n\t7437:  0x000091D9,\n\t7438:  0x00009583,\n\t7439:  0x00009662,\n\t7440:  0x00009663,\n\t7441:  0x00009661,\n\t7442:  0x0000965B,\n\t7443:  0x0000965D,\n\t7444:  0x00009664,\n\t7445:  0x00009658,\n\t7446:  0x0000965E,\n\t7447:  0x000096BB,\n\t7448:  0x000098E2,\n\t7449:  0x000099AC,\n\t7450:  0x00009AA8,\n\t7451:  0x00009AD8,\n\t7452:  0x00009B25,\n\t7453:  0x00009B32,\n\t7454:  0x00009B3C,\n\t7455:  0x00004E7E,\n\t7456:  0x0000507A,\n\t7457:  0x0000507D,\n\t7458:  0x0000505C,\n\t7459:  0x00005047,\n\t7460:  0x00005043,\n\t7461:  0x0000504C,\n\t7462:  0x0000505A,\n\t7463:  0x00005049,\n\t7464:  0x00005065,\n\t7465:  0x00005076,\n\t7466:  0x0000504E,\n\t7467:  0x00005055,\n\t7468:  0x00005075,\n\t7469:  0x00005074,\n\t7470:  0x00005077,\n\t7471:  0x0000504F,\n\t7472:  0x0000500F,\n\t7473:  0x0000506F,\n\t7474:  0x0000506D,\n\t7475:  0x0000515C,\n\t7476:  0x00005195,\n\t7477:  0x000051F0,\n\t7478:  0x0000526A,\n\t7479:  0x0000526F,\n\t7480:  0x000052D2,\n\t7481:  0x000052D9,\n\t7482:  0x000052D8,\n\t7483:  0x000052D5,\n\t7484:  0x00005310,\n\t7485:  0x0000530F,\n\t7486:  0x00005319,\n\t7487:  0x0000533F,\n\t7488:  0x00005340,\n\t7489:  0x0000533E,\n\t7490:  0x000053C3,\n\t7491:  0x000066FC,\n\t7492:  0x00005546,\n\t7493:  0x0000556A,\n\t7494:  0x00005566,\n\t7495:  0x00005544,\n\t7496:  0x0000555E,\n\t7497:  0x00005561,\n\t7498:  0x00005543,\n\t7499:  0x0000554A,\n\t7500:  0x00005531,\n\t7501:  0x00005556,\n\t7502:  0x0000554F,\n\t7503:  0x00005555,\n\t7504:  0x0000552F,\n\t7505:  0x00005564,\n\t7506:  0x00005538,\n\t7507:  0x0000552E,\n\t7508:  0x0000555C,\n\t7509:  0x0000552C,\n\t7510:  0x00005563,\n\t7511:  0x00005533,\n\t7512:  0x00005541,\n\t7513:  0x00005557,\n\t7514:  0x00005708,\n\t7515:  0x0000570B,\n\t7516:  0x00005709,\n\t7517:  0x000057DF,\n\t7518:  0x00005805,\n\t7519:  0x0000580A,\n\t7520:  0x00005806,\n\t7521:  0x000057E0,\n\t7522:  0x000057E4,\n\t7523:  0x000057FA,\n\t7524:  0x00005802,\n\t7525:  0x00005835,\n\t7526:  0x000057F7,\n\t7527:  0x000057F9,\n\t7528:  0x00005920,\n\t7529:  0x00005962,\n\t7530:  0x00005A36,\n\t7531:  0x00005A41,\n\t7532:  0x00005A49,\n\t7533:  0x00005A66,\n\t7534:  0x00005A6A,\n\t7535:  0x00005A40,\n\t7536:  0x00005A3C,\n\t7537:  0x00005A62,\n\t7538:  0x00005A5A,\n\t7539:  0x00005A46,\n\t7540:  0x00005A4A,\n\t7541:  0x00005B70,\n\t7542:  0x00005BC7,\n\t7543:  0x00005BC5,\n\t7544:  0x00005BC4,\n\t7545:  0x00005BC2,\n\t7546:  0x00005BBF,\n\t7547:  0x00005BC6,\n\t7548:  0x00005C09,\n\t7549:  0x00005C08,\n\t7550:  0x00005C07,\n\t7551:  0x00005C60,\n\t7552:  0x00005C5C,\n\t7553:  0x00005C5D,\n\t7554:  0x00005D07,\n\t7555:  0x00005D06,\n\t7556:  0x00005D0E,\n\t7557:  0x00005D1B,\n\t7558:  0x00005D16,\n\t7559:  0x00005D22,\n\t7560:  0x00005D11,\n\t7561:  0x00005D29,\n\t7562:  0x00005D14,\n\t7563:  0x00005D19,\n\t7564:  0x00005D24,\n\t7565:  0x00005D27,\n\t7566:  0x00005D17,\n\t7567:  0x00005DE2,\n\t7568:  0x00005E38,\n\t7569:  0x00005E36,\n\t7570:  0x00005E33,\n\t7571:  0x00005E37,\n\t7572:  0x00005EB7,\n\t7573:  0x00005EB8,\n\t7574:  0x00005EB6,\n\t7575:  0x00005EB5,\n\t7576:  0x00005EBE,\n\t7577:  0x00005F35,\n\t7578:  0x00005F37,\n\t7579:  0x00005F57,\n\t7580:  0x00005F6C,\n\t7581:  0x00005F69,\n\t7582:  0x00005F6B,\n\t7583:  0x00005F97,\n\t7584:  0x00005F99,\n\t7585:  0x00005F9E,\n\t7586:  0x00005F98,\n\t7587:  0x00005FA1,\n\t7588:  0x00005FA0,\n\t7589:  0x00005F9C,\n\t7590:  0x0000607F,\n\t7591:  0x000060A3,\n\t7592:  0x00006089,\n\t7593:  0x000060A0,\n\t7594:  0x000060A8,\n\t7595:  0x000060CB,\n\t7596:  0x000060B4,\n\t7597:  0x000060E6,\n\t7598:  0x000060BD,\n\t7599:  0x000060C5,\n\t7600:  0x000060BB,\n\t7601:  0x000060B5,\n\t7602:  0x000060DC,\n\t7603:  0x000060BC,\n\t7604:  0x000060D8,\n\t7605:  0x000060D5,\n\t7606:  0x000060C6,\n\t7607:  0x000060DF,\n\t7608:  0x000060B8,\n\t7609:  0x000060DA,\n\t7610:  0x000060C7,\n\t7611:  0x0000621A,\n\t7612:  0x0000621B,\n\t7613:  0x00006248,\n\t7614:  0x000063A0,\n\t7615:  0x000063A7,\n\t7616:  0x00006372,\n\t7617:  0x00006396,\n\t7618:  0x000063A2,\n\t7619:  0x000063A5,\n\t7620:  0x00006377,\n\t7621:  0x00006367,\n\t7622:  0x00006398,\n\t7623:  0x000063AA,\n\t7624:  0x00006371,\n\t7625:  0x000063A9,\n\t7626:  0x00006389,\n\t7627:  0x00006383,\n\t7628:  0x0000639B,\n\t7629:  0x0000636B,\n\t7630:  0x000063A8,\n\t7631:  0x00006384,\n\t7632:  0x00006388,\n\t7633:  0x00006399,\n\t7634:  0x000063A1,\n\t7635:  0x000063AC,\n\t7636:  0x00006392,\n\t7637:  0x0000638F,\n\t7638:  0x00006380,\n\t7639:  0x0000637B,\n\t7640:  0x00006369,\n\t7641:  0x00006368,\n\t7642:  0x0000637A,\n\t7643:  0x0000655D,\n\t7644:  0x00006556,\n\t7645:  0x00006551,\n\t7646:  0x00006559,\n\t7647:  0x00006557,\n\t7648:  0x0000555F,\n\t7649:  0x0000654F,\n\t7650:  0x00006558,\n\t7651:  0x00006555,\n\t7652:  0x00006554,\n\t7653:  0x0000659C,\n\t7654:  0x0000659B,\n\t7655:  0x000065AC,\n\t7656:  0x000065CF,\n\t7657:  0x000065CB,\n\t7658:  0x000065CC,\n\t7659:  0x000065CE,\n\t7660:  0x0000665D,\n\t7661:  0x0000665A,\n\t7662:  0x00006664,\n\t7663:  0x00006668,\n\t7664:  0x00006666,\n\t7665:  0x0000665E,\n\t7666:  0x000066F9,\n\t7667:  0x000052D7,\n\t7668:  0x0000671B,\n\t7669:  0x00006881,\n\t7670:  0x000068AF,\n\t7671:  0x000068A2,\n\t7672:  0x00006893,\n\t7673:  0x000068B5,\n\t7674:  0x0000687F,\n\t7675:  0x00006876,\n\t7676:  0x000068B1,\n\t7677:  0x000068A7,\n\t7678:  0x00006897,\n\t7679:  0x000068B0,\n\t7680:  0x00006883,\n\t7681:  0x000068C4,\n\t7682:  0x000068AD,\n\t7683:  0x00006886,\n\t7684:  0x00006885,\n\t7685:  0x00006894,\n\t7686:  0x0000689D,\n\t7687:  0x000068A8,\n\t7688:  0x0000689F,\n\t7689:  0x000068A1,\n\t7690:  0x00006882,\n\t7691:  0x00006B32,\n\t7692:  0x00006BBA,\n\t7693:  0x00006BEB,\n\t7694:  0x00006BEC,\n\t7695:  0x00006C2B,\n\t7696:  0x00006D8E,\n\t7697:  0x00006DBC,\n\t7698:  0x00006DF3,\n\t7699:  0x00006DD9,\n\t7700:  0x00006DB2,\n\t7701:  0x00006DE1,\n\t7702:  0x00006DCC,\n\t7703:  0x00006DE4,\n\t7704:  0x00006DFB,\n\t7705:  0x00006DFA,\n\t7706:  0x00006E05,\n\t7707:  0x00006DC7,\n\t7708:  0x00006DCB,\n\t7709:  0x00006DAF,\n\t7710:  0x00006DD1,\n\t7711:  0x00006DAE,\n\t7712:  0x00006DDE,\n\t7713:  0x00006DF9,\n\t7714:  0x00006DB8,\n\t7715:  0x00006DF7,\n\t7716:  0x00006DF5,\n\t7717:  0x00006DC5,\n\t7718:  0x00006DD2,\n\t7719:  0x00006E1A,\n\t7720:  0x00006DB5,\n\t7721:  0x00006DDA,\n\t7722:  0x00006DEB,\n\t7723:  0x00006DD8,\n\t7724:  0x00006DEA,\n\t7725:  0x00006DF1,\n\t7726:  0x00006DEE,\n\t7727:  0x00006DE8,\n\t7728:  0x00006DC6,\n\t7729:  0x00006DC4,\n\t7730:  0x00006DAA,\n\t7731:  0x00006DEC,\n\t7732:  0x00006DBF,\n\t7733:  0x00006DE6,\n\t7734:  0x000070F9,\n\t7735:  0x00007109,\n\t7736:  0x0000710A,\n\t7737:  0x000070FD,\n\t7738:  0x000070EF,\n\t7739:  0x0000723D,\n\t7740:  0x0000727D,\n\t7741:  0x00007281,\n\t7742:  0x0000731C,\n\t7743:  0x0000731B,\n\t7744:  0x00007316,\n\t7745:  0x00007313,\n\t7746:  0x00007319,\n\t7747:  0x00007387,\n\t7748:  0x00007405,\n\t7749:  0x0000740A,\n\t7750:  0x00007403,\n\t7751:  0x00007406,\n\t7752:  0x000073FE,\n\t7753:  0x0000740D,\n\t7754:  0x000074E0,\n\t7755:  0x000074F6,\n\t7756:  0x000074F7,\n\t7757:  0x0000751C,\n\t7758:  0x00007522,\n\t7759:  0x00007565,\n\t7760:  0x00007566,\n\t7761:  0x00007562,\n\t7762:  0x00007570,\n\t7763:  0x0000758F,\n\t7764:  0x000075D4,\n\t7765:  0x000075D5,\n\t7766:  0x000075B5,\n\t7767:  0x000075CA,\n\t7768:  0x000075CD,\n\t7769:  0x0000768E,\n\t7770:  0x000076D4,\n\t7771:  0x000076D2,\n\t7772:  0x000076DB,\n\t7773:  0x00007737,\n\t7774:  0x0000773E,\n\t7775:  0x0000773C,\n\t7776:  0x00007736,\n\t7777:  0x00007738,\n\t7778:  0x0000773A,\n\t7779:  0x0000786B,\n\t7780:  0x00007843,\n\t7781:  0x0000784E,\n\t7782:  0x00007965,\n\t7783:  0x00007968,\n\t7784:  0x0000796D,\n\t7785:  0x000079FB,\n\t7786:  0x00007A92,\n\t7787:  0x00007A95,\n\t7788:  0x00007B20,\n\t7789:  0x00007B28,\n\t7790:  0x00007B1B,\n\t7791:  0x00007B2C,\n\t7792:  0x00007B26,\n\t7793:  0x00007B19,\n\t7794:  0x00007B1E,\n\t7795:  0x00007B2E,\n\t7796:  0x00007C92,\n\t7797:  0x00007C97,\n\t7798:  0x00007C95,\n\t7799:  0x00007D46,\n\t7800:  0x00007D43,\n\t7801:  0x00007D71,\n\t7802:  0x00007D2E,\n\t7803:  0x00007D39,\n\t7804:  0x00007D3C,\n\t7805:  0x00007D40,\n\t7806:  0x00007D30,\n\t7807:  0x00007D33,\n\t7808:  0x00007D44,\n\t7809:  0x00007D2F,\n\t7810:  0x00007D42,\n\t7811:  0x00007D32,\n\t7812:  0x00007D31,\n\t7813:  0x00007F3D,\n\t7814:  0x00007F9E,\n\t7815:  0x00007F9A,\n\t7816:  0x00007FCC,\n\t7817:  0x00007FCE,\n\t7818:  0x00007FD2,\n\t7819:  0x0000801C,\n\t7820:  0x0000804A,\n\t7821:  0x00008046,\n\t7822:  0x0000812F,\n\t7823:  0x00008116,\n\t7824:  0x00008123,\n\t7825:  0x0000812B,\n\t7826:  0x00008129,\n\t7827:  0x00008130,\n\t7828:  0x00008124,\n\t7829:  0x00008202,\n\t7830:  0x00008235,\n\t7831:  0x00008237,\n\t7832:  0x00008236,\n\t7833:  0x00008239,\n\t7834:  0x0000838E,\n\t7835:  0x0000839E,\n\t7836:  0x00008398,\n\t7837:  0x00008378,\n\t7838:  0x000083A2,\n\t7839:  0x00008396,\n\t7840:  0x000083BD,\n\t7841:  0x000083AB,\n\t7842:  0x00008392,\n\t7843:  0x0000838A,\n\t7844:  0x00008393,\n\t7845:  0x00008389,\n\t7846:  0x000083A0,\n\t7847:  0x00008377,\n\t7848:  0x0000837B,\n\t7849:  0x0000837C,\n\t7850:  0x00008386,\n\t7851:  0x000083A7,\n\t7852:  0x00008655,\n\t7853:  0x00005F6A,\n\t7854:  0x000086C7,\n\t7855:  0x000086C0,\n\t7856:  0x000086B6,\n\t7857:  0x000086C4,\n\t7858:  0x000086B5,\n\t7859:  0x000086C6,\n\t7860:  0x000086CB,\n\t7861:  0x000086B1,\n\t7862:  0x000086AF,\n\t7863:  0x000086C9,\n\t7864:  0x00008853,\n\t7865:  0x0000889E,\n\t7866:  0x00008888,\n\t7867:  0x000088AB,\n\t7868:  0x00008892,\n\t7869:  0x00008896,\n\t7870:  0x0000888D,\n\t7871:  0x0000888B,\n\t7872:  0x00008993,\n\t7873:  0x0000898F,\n\t7874:  0x00008A2A,\n\t7875:  0x00008A1D,\n\t7876:  0x00008A23,\n\t7877:  0x00008A25,\n\t7878:  0x00008A31,\n\t7879:  0x00008A2D,\n\t7880:  0x00008A1F,\n\t7881:  0x00008A1B,\n\t7882:  0x00008A22,\n\t7883:  0x00008C49,\n\t7884:  0x00008C5A,\n\t7885:  0x00008CA9,\n\t7886:  0x00008CAC,\n\t7887:  0x00008CAB,\n\t7888:  0x00008CA8,\n\t7889:  0x00008CAA,\n\t7890:  0x00008CA7,\n\t7891:  0x00008D67,\n\t7892:  0x00008D66,\n\t7893:  0x00008DBE,\n\t7894:  0x00008DBA,\n\t7895:  0x00008EDB,\n\t7896:  0x00008EDF,\n\t7897:  0x00009019,\n\t7898:  0x0000900D,\n\t7899:  0x0000901A,\n\t7900:  0x00009017,\n\t7901:  0x00009023,\n\t7902:  0x0000901F,\n\t7903:  0x0000901D,\n\t7904:  0x00009010,\n\t7905:  0x00009015,\n\t7906:  0x0000901E,\n\t7907:  0x00009020,\n\t7908:  0x0000900F,\n\t7909:  0x00009022,\n\t7910:  0x00009016,\n\t7911:  0x0000901B,\n\t7912:  0x00009014,\n\t7913:  0x000090E8,\n\t7914:  0x000090ED,\n\t7915:  0x000090FD,\n\t7916:  0x00009157,\n\t7917:  0x000091CE,\n\t7918:  0x000091F5,\n\t7919:  0x000091E6,\n\t7920:  0x000091E3,\n\t7921:  0x000091E7,\n\t7922:  0x000091ED,\n\t7923:  0x000091E9,\n\t7924:  0x00009589,\n\t7925:  0x0000966A,\n\t7926:  0x00009675,\n\t7927:  0x00009673,\n\t7928:  0x00009678,\n\t7929:  0x00009670,\n\t7930:  0x00009674,\n\t7931:  0x00009676,\n\t7932:  0x00009677,\n\t7933:  0x0000966C,\n\t7934:  0x000096C0,\n\t7935:  0x000096EA,\n\t7936:  0x000096E9,\n\t7937:  0x00007AE0,\n\t7938:  0x00007ADF,\n\t7939:  0x00009802,\n\t7940:  0x00009803,\n\t7941:  0x00009B5A,\n\t7942:  0x00009CE5,\n\t7943:  0x00009E75,\n\t7944:  0x00009E7F,\n\t7945:  0x00009EA5,\n\t7946:  0x00009EBB,\n\t7947:  0x000050A2,\n\t7948:  0x0000508D,\n\t7949:  0x00005085,\n\t7950:  0x00005099,\n\t7951:  0x00005091,\n\t7952:  0x00005080,\n\t7953:  0x00005096,\n\t7954:  0x00005098,\n\t7955:  0x0000509A,\n\t7956:  0x00006700,\n\t7957:  0x000051F1,\n\t7958:  0x00005272,\n\t7959:  0x00005274,\n\t7960:  0x00005275,\n\t7961:  0x00005269,\n\t7962:  0x000052DE,\n\t7963:  0x000052DD,\n\t7964:  0x000052DB,\n\t7965:  0x0000535A,\n\t7966:  0x000053A5,\n\t7967:  0x0000557B,\n\t7968:  0x00005580,\n\t7969:  0x000055A7,\n\t7970:  0x0000557C,\n\t7971:  0x0000558A,\n\t7972:  0x0000559D,\n\t7973:  0x00005598,\n\t7974:  0x00005582,\n\t7975:  0x0000559C,\n\t7976:  0x000055AA,\n\t7977:  0x00005594,\n\t7978:  0x00005587,\n\t7979:  0x0000558B,\n\t7980:  0x00005583,\n\t7981:  0x000055B3,\n\t7982:  0x000055AE,\n\t7983:  0x0000559F,\n\t7984:  0x0000553E,\n\t7985:  0x000055B2,\n\t7986:  0x0000559A,\n\t7987:  0x000055BB,\n\t7988:  0x000055AC,\n\t7989:  0x000055B1,\n\t7990:  0x0000557E,\n\t7991:  0x00005589,\n\t7992:  0x000055AB,\n\t7993:  0x00005599,\n\t7994:  0x0000570D,\n\t7995:  0x0000582F,\n\t7996:  0x0000582A,\n\t7997:  0x00005834,\n\t7998:  0x00005824,\n\t7999:  0x00005830,\n\t8000:  0x00005831,\n\t8001:  0x00005821,\n\t8002:  0x0000581D,\n\t8003:  0x00005820,\n\t8004:  0x000058F9,\n\t8005:  0x000058FA,\n\t8006:  0x00005960,\n\t8007:  0x00005A77,\n\t8008:  0x00005A9A,\n\t8009:  0x00005A7F,\n\t8010:  0x00005A92,\n\t8011:  0x00005A9B,\n\t8012:  0x00005AA7,\n\t8013:  0x00005B73,\n\t8014:  0x00005B71,\n\t8015:  0x00005BD2,\n\t8016:  0x00005BCC,\n\t8017:  0x00005BD3,\n\t8018:  0x00005BD0,\n\t8019:  0x00005C0A,\n\t8020:  0x00005C0B,\n\t8021:  0x00005C31,\n\t8022:  0x00005D4C,\n\t8023:  0x00005D50,\n\t8024:  0x00005D34,\n\t8025:  0x00005D47,\n\t8026:  0x00005DFD,\n\t8027:  0x00005E45,\n\t8028:  0x00005E3D,\n\t8029:  0x00005E40,\n\t8030:  0x00005E43,\n\t8031:  0x00005E7E,\n\t8032:  0x00005ECA,\n\t8033:  0x00005EC1,\n\t8034:  0x00005EC2,\n\t8035:  0x00005EC4,\n\t8036:  0x00005F3C,\n\t8037:  0x00005F6D,\n\t8038:  0x00005FA9,\n\t8039:  0x00005FAA,\n\t8040:  0x00005FA8,\n\t8041:  0x000060D1,\n\t8042:  0x000060E1,\n\t8043:  0x000060B2,\n\t8044:  0x000060B6,\n\t8045:  0x000060E0,\n\t8046:  0x0000611C,\n\t8047:  0x00006123,\n\t8048:  0x000060FA,\n\t8049:  0x00006115,\n\t8050:  0x000060F0,\n\t8051:  0x000060FB,\n\t8052:  0x000060F4,\n\t8053:  0x00006168,\n\t8054:  0x000060F1,\n\t8055:  0x0000610E,\n\t8056:  0x000060F6,\n\t8057:  0x00006109,\n\t8058:  0x00006100,\n\t8059:  0x00006112,\n\t8060:  0x0000621F,\n\t8061:  0x00006249,\n\t8062:  0x000063A3,\n\t8063:  0x0000638C,\n\t8064:  0x000063CF,\n\t8065:  0x000063C0,\n\t8066:  0x000063E9,\n\t8067:  0x000063C9,\n\t8068:  0x000063C6,\n\t8069:  0x000063CD,\n\t8070:  0x000063D2,\n\t8071:  0x000063E3,\n\t8072:  0x000063D0,\n\t8073:  0x000063E1,\n\t8074:  0x000063D6,\n\t8075:  0x000063ED,\n\t8076:  0x000063EE,\n\t8077:  0x00006376,\n\t8078:  0x000063F4,\n\t8079:  0x000063EA,\n\t8080:  0x000063DB,\n\t8081:  0x00006452,\n\t8082:  0x000063DA,\n\t8083:  0x000063F9,\n\t8084:  0x0000655E,\n\t8085:  0x00006566,\n\t8086:  0x00006562,\n\t8087:  0x00006563,\n\t8088:  0x00006591,\n\t8089:  0x00006590,\n\t8090:  0x000065AF,\n\t8091:  0x0000666E,\n\t8092:  0x00006670,\n\t8093:  0x00006674,\n\t8094:  0x00006676,\n\t8095:  0x0000666F,\n\t8096:  0x00006691,\n\t8097:  0x0000667A,\n\t8098:  0x0000667E,\n\t8099:  0x00006677,\n\t8100:  0x000066FE,\n\t8101:  0x000066FF,\n\t8102:  0x0000671F,\n\t8103:  0x0000671D,\n\t8104:  0x000068FA,\n\t8105:  0x000068D5,\n\t8106:  0x000068E0,\n\t8107:  0x000068D8,\n\t8108:  0x000068D7,\n\t8109:  0x00006905,\n\t8110:  0x000068DF,\n\t8111:  0x000068F5,\n\t8112:  0x000068EE,\n\t8113:  0x000068E7,\n\t8114:  0x000068F9,\n\t8115:  0x000068D2,\n\t8116:  0x000068F2,\n\t8117:  0x000068E3,\n\t8118:  0x000068CB,\n\t8119:  0x000068CD,\n\t8120:  0x0000690D,\n\t8121:  0x00006912,\n\t8122:  0x0000690E,\n\t8123:  0x000068C9,\n\t8124:  0x000068DA,\n\t8125:  0x0000696E,\n\t8126:  0x000068FB,\n\t8127:  0x00006B3E,\n\t8128:  0x00006B3A,\n\t8129:  0x00006B3D,\n\t8130:  0x00006B98,\n\t8131:  0x00006B96,\n\t8132:  0x00006BBC,\n\t8133:  0x00006BEF,\n\t8134:  0x00006C2E,\n\t8135:  0x00006C2F,\n\t8136:  0x00006C2C,\n\t8137:  0x00006E2F,\n\t8138:  0x00006E38,\n\t8139:  0x00006E54,\n\t8140:  0x00006E21,\n\t8141:  0x00006E32,\n\t8142:  0x00006E67,\n\t8143:  0x00006E4A,\n\t8144:  0x00006E20,\n\t8145:  0x00006E25,\n\t8146:  0x00006E23,\n\t8147:  0x00006E1B,\n\t8148:  0x00006E5B,\n\t8149:  0x00006E58,\n\t8150:  0x00006E24,\n\t8151:  0x00006E56,\n\t8152:  0x00006E6E,\n\t8153:  0x00006E2D,\n\t8154:  0x00006E26,\n\t8155:  0x00006E6F,\n\t8156:  0x00006E34,\n\t8157:  0x00006E4D,\n\t8158:  0x00006E3A,\n\t8159:  0x00006E2C,\n\t8160:  0x00006E43,\n\t8161:  0x00006E1D,\n\t8162:  0x00006E3E,\n\t8163:  0x00006ECB,\n\t8164:  0x00006E89,\n\t8165:  0x00006E19,\n\t8166:  0x00006E4E,\n\t8167:  0x00006E63,\n\t8168:  0x00006E44,\n\t8169:  0x00006E72,\n\t8170:  0x00006E69,\n\t8171:  0x00006E5F,\n\t8172:  0x00007119,\n\t8173:  0x0000711A,\n\t8174:  0x00007126,\n\t8175:  0x00007130,\n\t8176:  0x00007121,\n\t8177:  0x00007136,\n\t8178:  0x0000716E,\n\t8179:  0x0000711C,\n\t8180:  0x0000724C,\n\t8181:  0x00007284,\n\t8182:  0x00007280,\n\t8183:  0x00007336,\n\t8184:  0x00007325,\n\t8185:  0x00007334,\n\t8186:  0x00007329,\n\t8187:  0x0000743A,\n\t8188:  0x0000742A,\n\t8189:  0x00007433,\n\t8190:  0x00007422,\n\t8191:  0x00007425,\n\t8192:  0x00007435,\n\t8193:  0x00007436,\n\t8194:  0x00007434,\n\t8195:  0x0000742F,\n\t8196:  0x0000741B,\n\t8197:  0x00007426,\n\t8198:  0x00007428,\n\t8199:  0x00007525,\n\t8200:  0x00007526,\n\t8201:  0x0000756B,\n\t8202:  0x0000756A,\n\t8203:  0x000075E2,\n\t8204:  0x000075DB,\n\t8205:  0x000075E3,\n\t8206:  0x000075D9,\n\t8207:  0x000075D8,\n\t8208:  0x000075DE,\n\t8209:  0x000075E0,\n\t8210:  0x0000767B,\n\t8211:  0x0000767C,\n\t8212:  0x00007696,\n\t8213:  0x00007693,\n\t8214:  0x000076B4,\n\t8215:  0x000076DC,\n\t8216:  0x0000774F,\n\t8217:  0x000077ED,\n\t8218:  0x0000785D,\n\t8219:  0x0000786C,\n\t8220:  0x0000786F,\n\t8221:  0x00007A0D,\n\t8222:  0x00007A08,\n\t8223:  0x00007A0B,\n\t8224:  0x00007A05,\n\t8225:  0x00007A00,\n\t8226:  0x00007A98,\n\t8227:  0x00007A97,\n\t8228:  0x00007A96,\n\t8229:  0x00007AE5,\n\t8230:  0x00007AE3,\n\t8231:  0x00007B49,\n\t8232:  0x00007B56,\n\t8233:  0x00007B46,\n\t8234:  0x00007B50,\n\t8235:  0x00007B52,\n\t8236:  0x00007B54,\n\t8237:  0x00007B4D,\n\t8238:  0x00007B4B,\n\t8239:  0x00007B4F,\n\t8240:  0x00007B51,\n\t8241:  0x00007C9F,\n\t8242:  0x00007CA5,\n\t8243:  0x00007D5E,\n\t8244:  0x00007D50,\n\t8245:  0x00007D68,\n\t8246:  0x00007D55,\n\t8247:  0x00007D2B,\n\t8248:  0x00007D6E,\n\t8249:  0x00007D72,\n\t8250:  0x00007D61,\n\t8251:  0x00007D66,\n\t8252:  0x00007D62,\n\t8253:  0x00007D70,\n\t8254:  0x00007D73,\n\t8255:  0x00005584,\n\t8256:  0x00007FD4,\n\t8257:  0x00007FD5,\n\t8258:  0x0000800B,\n\t8259:  0x00008052,\n\t8260:  0x00008085,\n\t8261:  0x00008155,\n\t8262:  0x00008154,\n\t8263:  0x0000814B,\n\t8264:  0x00008151,\n\t8265:  0x0000814E,\n\t8266:  0x00008139,\n\t8267:  0x00008146,\n\t8268:  0x0000813E,\n\t8269:  0x0000814C,\n\t8270:  0x00008153,\n\t8271:  0x00008174,\n\t8272:  0x00008212,\n\t8273:  0x0000821C,\n\t8274:  0x000083E9,\n\t8275:  0x00008403,\n\t8276:  0x000083F8,\n\t8277:  0x0000840D,\n\t8278:  0x000083E0,\n\t8279:  0x000083C5,\n\t8280:  0x0000840B,\n\t8281:  0x000083C1,\n\t8282:  0x000083EF,\n\t8283:  0x000083F1,\n\t8284:  0x000083F4,\n\t8285:  0x00008457,\n\t8286:  0x0000840A,\n\t8287:  0x000083F0,\n\t8288:  0x0000840C,\n\t8289:  0x000083CC,\n\t8290:  0x000083FD,\n\t8291:  0x000083F2,\n\t8292:  0x000083CA,\n\t8293:  0x00008438,\n\t8294:  0x0000840E,\n\t8295:  0x00008404,\n\t8296:  0x000083DC,\n\t8297:  0x00008407,\n\t8298:  0x000083D4,\n\t8299:  0x000083DF,\n\t8300:  0x0000865B,\n\t8301:  0x000086DF,\n\t8302:  0x000086D9,\n\t8303:  0x000086ED,\n\t8304:  0x000086D4,\n\t8305:  0x000086DB,\n\t8306:  0x000086E4,\n\t8307:  0x000086D0,\n\t8308:  0x000086DE,\n\t8309:  0x00008857,\n\t8310:  0x000088C1,\n\t8311:  0x000088C2,\n\t8312:  0x000088B1,\n\t8313:  0x00008983,\n\t8314:  0x00008996,\n\t8315:  0x00008A3B,\n\t8316:  0x00008A60,\n\t8317:  0x00008A55,\n\t8318:  0x00008A5E,\n\t8319:  0x00008A3C,\n\t8320:  0x00008A41,\n\t8321:  0x00008A54,\n\t8322:  0x00008A5B,\n\t8323:  0x00008A50,\n\t8324:  0x00008A46,\n\t8325:  0x00008A34,\n\t8326:  0x00008A3A,\n\t8327:  0x00008A36,\n\t8328:  0x00008A56,\n\t8329:  0x00008C61,\n\t8330:  0x00008C82,\n\t8331:  0x00008CAF,\n\t8332:  0x00008CBC,\n\t8333:  0x00008CB3,\n\t8334:  0x00008CBD,\n\t8335:  0x00008CC1,\n\t8336:  0x00008CBB,\n\t8337:  0x00008CC0,\n\t8338:  0x00008CB4,\n\t8339:  0x00008CB7,\n\t8340:  0x00008CB6,\n\t8341:  0x00008CBF,\n\t8342:  0x00008CB8,\n\t8343:  0x00008D8A,\n\t8344:  0x00008D85,\n\t8345:  0x00008D81,\n\t8346:  0x00008DCE,\n\t8347:  0x00008DDD,\n\t8348:  0x00008DCB,\n\t8349:  0x00008DDA,\n\t8350:  0x00008DD1,\n\t8351:  0x00008DCC,\n\t8352:  0x00008DDB,\n\t8353:  0x00008DC6,\n\t8354:  0x00008EFB,\n\t8355:  0x00008EF8,\n\t8356:  0x00008EFC,\n\t8357:  0x00008F9C,\n\t8358:  0x0000902E,\n\t8359:  0x00009035,\n\t8360:  0x00009031,\n\t8361:  0x00009038,\n\t8362:  0x00009032,\n\t8363:  0x00009036,\n\t8364:  0x00009102,\n\t8365:  0x000090F5,\n\t8366:  0x00009109,\n\t8367:  0x000090FE,\n\t8368:  0x00009163,\n\t8369:  0x00009165,\n\t8370:  0x000091CF,\n\t8371:  0x00009214,\n\t8372:  0x00009215,\n\t8373:  0x00009223,\n\t8374:  0x00009209,\n\t8375:  0x0000921E,\n\t8376:  0x0000920D,\n\t8377:  0x00009210,\n\t8378:  0x00009207,\n\t8379:  0x00009211,\n\t8380:  0x00009594,\n\t8381:  0x0000958F,\n\t8382:  0x0000958B,\n\t8383:  0x00009591,\n\t8384:  0x00009593,\n\t8385:  0x00009592,\n\t8386:  0x0000958E,\n\t8387:  0x0000968A,\n\t8388:  0x0000968E,\n\t8389:  0x0000968B,\n\t8390:  0x0000967D,\n\t8391:  0x00009685,\n\t8392:  0x00009686,\n\t8393:  0x0000968D,\n\t8394:  0x00009672,\n\t8395:  0x00009684,\n\t8396:  0x000096C1,\n\t8397:  0x000096C5,\n\t8398:  0x000096C4,\n\t8399:  0x000096C6,\n\t8400:  0x000096C7,\n\t8401:  0x000096EF,\n\t8402:  0x000096F2,\n\t8403:  0x000097CC,\n\t8404:  0x00009805,\n\t8405:  0x00009806,\n\t8406:  0x00009808,\n\t8407:  0x000098E7,\n\t8408:  0x000098EA,\n\t8409:  0x000098EF,\n\t8410:  0x000098E9,\n\t8411:  0x000098F2,\n\t8412:  0x000098ED,\n\t8413:  0x000099AE,\n\t8414:  0x000099AD,\n\t8415:  0x00009EC3,\n\t8416:  0x00009ECD,\n\t8417:  0x00009ED1,\n\t8418:  0x00004E82,\n\t8419:  0x000050AD,\n\t8420:  0x000050B5,\n\t8421:  0x000050B2,\n\t8422:  0x000050B3,\n\t8423:  0x000050C5,\n\t8424:  0x000050BE,\n\t8425:  0x000050AC,\n\t8426:  0x000050B7,\n\t8427:  0x000050BB,\n\t8428:  0x000050AF,\n\t8429:  0x000050C7,\n\t8430:  0x0000527F,\n\t8431:  0x00005277,\n\t8432:  0x0000527D,\n\t8433:  0x000052DF,\n\t8434:  0x000052E6,\n\t8435:  0x000052E4,\n\t8436:  0x000052E2,\n\t8437:  0x000052E3,\n\t8438:  0x0000532F,\n\t8439:  0x000055DF,\n\t8440:  0x000055E8,\n\t8441:  0x000055D3,\n\t8442:  0x000055E6,\n\t8443:  0x000055CE,\n\t8444:  0x000055DC,\n\t8445:  0x000055C7,\n\t8446:  0x000055D1,\n\t8447:  0x000055E3,\n\t8448:  0x000055E4,\n\t8449:  0x000055EF,\n\t8450:  0x000055DA,\n\t8451:  0x000055E1,\n\t8452:  0x000055C5,\n\t8453:  0x000055C6,\n\t8454:  0x000055E5,\n\t8455:  0x000055C9,\n\t8456:  0x00005712,\n\t8457:  0x00005713,\n\t8458:  0x0000585E,\n\t8459:  0x00005851,\n\t8460:  0x00005858,\n\t8461:  0x00005857,\n\t8462:  0x0000585A,\n\t8463:  0x00005854,\n\t8464:  0x0000586B,\n\t8465:  0x0000584C,\n\t8466:  0x0000586D,\n\t8467:  0x0000584A,\n\t8468:  0x00005862,\n\t8469:  0x00005852,\n\t8470:  0x0000584B,\n\t8471:  0x00005967,\n\t8472:  0x00005AC1,\n\t8473:  0x00005AC9,\n\t8474:  0x00005ACC,\n\t8475:  0x00005ABE,\n\t8476:  0x00005ABD,\n\t8477:  0x00005ABC,\n\t8478:  0x00005AB3,\n\t8479:  0x00005AC2,\n\t8480:  0x00005AB2,\n\t8481:  0x00005D69,\n\t8482:  0x00005D6F,\n\t8483:  0x00005E4C,\n\t8484:  0x00005E79,\n\t8485:  0x00005EC9,\n\t8486:  0x00005EC8,\n\t8487:  0x00005F12,\n\t8488:  0x00005F59,\n\t8489:  0x00005FAC,\n\t8490:  0x00005FAE,\n\t8491:  0x0000611A,\n\t8492:  0x0000610F,\n\t8493:  0x00006148,\n\t8494:  0x0000611F,\n\t8495:  0x000060F3,\n\t8496:  0x0000611B,\n\t8497:  0x000060F9,\n\t8498:  0x00006101,\n\t8499:  0x00006108,\n\t8500:  0x0000614E,\n\t8501:  0x0000614C,\n\t8502:  0x00006144,\n\t8503:  0x0000614D,\n\t8504:  0x0000613E,\n\t8505:  0x00006134,\n\t8506:  0x00006127,\n\t8507:  0x0000610D,\n\t8508:  0x00006106,\n\t8509:  0x00006137,\n\t8510:  0x00006221,\n\t8511:  0x00006222,\n\t8512:  0x00006413,\n\t8513:  0x0000643E,\n\t8514:  0x0000641E,\n\t8515:  0x0000642A,\n\t8516:  0x0000642D,\n\t8517:  0x0000643D,\n\t8518:  0x0000642C,\n\t8519:  0x0000640F,\n\t8520:  0x0000641C,\n\t8521:  0x00006414,\n\t8522:  0x0000640D,\n\t8523:  0x00006436,\n\t8524:  0x00006416,\n\t8525:  0x00006417,\n\t8526:  0x00006406,\n\t8527:  0x0000656C,\n\t8528:  0x0000659F,\n\t8529:  0x000065B0,\n\t8530:  0x00006697,\n\t8531:  0x00006689,\n\t8532:  0x00006687,\n\t8533:  0x00006688,\n\t8534:  0x00006696,\n\t8535:  0x00006684,\n\t8536:  0x00006698,\n\t8537:  0x0000668D,\n\t8538:  0x00006703,\n\t8539:  0x00006994,\n\t8540:  0x0000696D,\n\t8541:  0x0000695A,\n\t8542:  0x00006977,\n\t8543:  0x00006960,\n\t8544:  0x00006954,\n\t8545:  0x00006975,\n\t8546:  0x00006930,\n\t8547:  0x00006982,\n\t8548:  0x0000694A,\n\t8549:  0x00006968,\n\t8550:  0x0000696B,\n\t8551:  0x0000695E,\n\t8552:  0x00006953,\n\t8553:  0x00006979,\n\t8554:  0x00006986,\n\t8555:  0x0000695D,\n\t8556:  0x00006963,\n\t8557:  0x0000695B,\n\t8558:  0x00006B47,\n\t8559:  0x00006B72,\n\t8560:  0x00006BC0,\n\t8561:  0x00006BBF,\n\t8562:  0x00006BD3,\n\t8563:  0x00006BFD,\n\t8564:  0x00006EA2,\n\t8565:  0x00006EAF,\n\t8566:  0x00006ED3,\n\t8567:  0x00006EB6,\n\t8568:  0x00006EC2,\n\t8569:  0x00006E90,\n\t8570:  0x00006E9D,\n\t8571:  0x00006EC7,\n\t8572:  0x00006EC5,\n\t8573:  0x00006EA5,\n\t8574:  0x00006E98,\n\t8575:  0x00006EBC,\n\t8576:  0x00006EBA,\n\t8577:  0x00006EAB,\n\t8578:  0x00006ED1,\n\t8579:  0x00006E96,\n\t8580:  0x00006E9C,\n\t8581:  0x00006EC4,\n\t8582:  0x00006ED4,\n\t8583:  0x00006EAA,\n\t8584:  0x00006EA7,\n\t8585:  0x00006EB4,\n\t8586:  0x0000714E,\n\t8587:  0x00007159,\n\t8588:  0x00007169,\n\t8589:  0x00007164,\n\t8590:  0x00007149,\n\t8591:  0x00007167,\n\t8592:  0x0000715C,\n\t8593:  0x0000716C,\n\t8594:  0x00007166,\n\t8595:  0x0000714C,\n\t8596:  0x00007165,\n\t8597:  0x0000715E,\n\t8598:  0x00007146,\n\t8599:  0x00007168,\n\t8600:  0x00007156,\n\t8601:  0x0000723A,\n\t8602:  0x00007252,\n\t8603:  0x00007337,\n\t8604:  0x00007345,\n\t8605:  0x0000733F,\n\t8606:  0x0000733E,\n\t8607:  0x0000746F,\n\t8608:  0x0000745A,\n\t8609:  0x00007455,\n\t8610:  0x0000745F,\n\t8611:  0x0000745E,\n\t8612:  0x00007441,\n\t8613:  0x0000743F,\n\t8614:  0x00007459,\n\t8615:  0x0000745B,\n\t8616:  0x0000745C,\n\t8617:  0x00007576,\n\t8618:  0x00007578,\n\t8619:  0x00007600,\n\t8620:  0x000075F0,\n\t8621:  0x00007601,\n\t8622:  0x000075F2,\n\t8623:  0x000075F1,\n\t8624:  0x000075FA,\n\t8625:  0x000075FF,\n\t8626:  0x000075F4,\n\t8627:  0x000075F3,\n\t8628:  0x000076DE,\n\t8629:  0x000076DF,\n\t8630:  0x0000775B,\n\t8631:  0x0000776B,\n\t8632:  0x00007766,\n\t8633:  0x0000775E,\n\t8634:  0x00007763,\n\t8635:  0x00007779,\n\t8636:  0x0000776A,\n\t8637:  0x0000776C,\n\t8638:  0x0000775C,\n\t8639:  0x00007765,\n\t8640:  0x00007768,\n\t8641:  0x00007762,\n\t8642:  0x000077EE,\n\t8643:  0x0000788E,\n\t8644:  0x000078B0,\n\t8645:  0x00007897,\n\t8646:  0x00007898,\n\t8647:  0x0000788C,\n\t8648:  0x00007889,\n\t8649:  0x0000787C,\n\t8650:  0x00007891,\n\t8651:  0x00007893,\n\t8652:  0x0000787F,\n\t8653:  0x0000797A,\n\t8654:  0x0000797F,\n\t8655:  0x00007981,\n\t8656:  0x0000842C,\n\t8657:  0x000079BD,\n\t8658:  0x00007A1C,\n\t8659:  0x00007A1A,\n\t8660:  0x00007A20,\n\t8661:  0x00007A14,\n\t8662:  0x00007A1F,\n\t8663:  0x00007A1E,\n\t8664:  0x00007A9F,\n\t8665:  0x00007AA0,\n\t8666:  0x00007B77,\n\t8667:  0x00007BC0,\n\t8668:  0x00007B60,\n\t8669:  0x00007B6E,\n\t8670:  0x00007B67,\n\t8671:  0x00007CB1,\n\t8672:  0x00007CB3,\n\t8673:  0x00007CB5,\n\t8674:  0x00007D93,\n\t8675:  0x00007D79,\n\t8676:  0x00007D91,\n\t8677:  0x00007D81,\n\t8678:  0x00007D8F,\n\t8679:  0x00007D5B,\n\t8680:  0x00007F6E,\n\t8681:  0x00007F69,\n\t8682:  0x00007F6A,\n\t8683:  0x00007F72,\n\t8684:  0x00007FA9,\n\t8685:  0x00007FA8,\n\t8686:  0x00007FA4,\n\t8687:  0x00008056,\n\t8688:  0x00008058,\n\t8689:  0x00008086,\n\t8690:  0x00008084,\n\t8691:  0x00008171,\n\t8692:  0x00008170,\n\t8693:  0x00008178,\n\t8694:  0x00008165,\n\t8695:  0x0000816E,\n\t8696:  0x00008173,\n\t8697:  0x0000816B,\n\t8698:  0x00008179,\n\t8699:  0x0000817A,\n\t8700:  0x00008166,\n\t8701:  0x00008205,\n\t8702:  0x00008247,\n\t8703:  0x00008482,\n\t8704:  0x00008477,\n\t8705:  0x0000843D,\n\t8706:  0x00008431,\n\t8707:  0x00008475,\n\t8708:  0x00008466,\n\t8709:  0x0000846B,\n\t8710:  0x00008449,\n\t8711:  0x0000846C,\n\t8712:  0x0000845B,\n\t8713:  0x0000843C,\n\t8714:  0x00008435,\n\t8715:  0x00008461,\n\t8716:  0x00008463,\n\t8717:  0x00008469,\n\t8718:  0x0000846D,\n\t8719:  0x00008446,\n\t8720:  0x0000865E,\n\t8721:  0x0000865C,\n\t8722:  0x0000865F,\n\t8723:  0x000086F9,\n\t8724:  0x00008713,\n\t8725:  0x00008708,\n\t8726:  0x00008707,\n\t8727:  0x00008700,\n\t8728:  0x000086FE,\n\t8729:  0x000086FB,\n\t8730:  0x00008702,\n\t8731:  0x00008703,\n\t8732:  0x00008706,\n\t8733:  0x0000870A,\n\t8734:  0x00008859,\n\t8735:  0x000088DF,\n\t8736:  0x000088D4,\n\t8737:  0x000088D9,\n\t8738:  0x000088DC,\n\t8739:  0x000088D8,\n\t8740:  0x000088DD,\n\t8741:  0x000088E1,\n\t8742:  0x000088CA,\n\t8743:  0x000088D5,\n\t8744:  0x000088D2,\n\t8745:  0x0000899C,\n\t8746:  0x000089E3,\n\t8747:  0x00008A6B,\n\t8748:  0x00008A72,\n\t8749:  0x00008A73,\n\t8750:  0x00008A66,\n\t8751:  0x00008A69,\n\t8752:  0x00008A70,\n\t8753:  0x00008A87,\n\t8754:  0x00008A7C,\n\t8755:  0x00008A63,\n\t8756:  0x00008AA0,\n\t8757:  0x00008A71,\n\t8758:  0x00008A85,\n\t8759:  0x00008A6D,\n\t8760:  0x00008A62,\n\t8761:  0x00008A6E,\n\t8762:  0x00008A6C,\n\t8763:  0x00008A79,\n\t8764:  0x00008A7B,\n\t8765:  0x00008A3E,\n\t8766:  0x00008A68,\n\t8767:  0x00008C62,\n\t8768:  0x00008C8A,\n\t8769:  0x00008C89,\n\t8770:  0x00008CCA,\n\t8771:  0x00008CC7,\n\t8772:  0x00008CC8,\n\t8773:  0x00008CC4,\n\t8774:  0x00008CB2,\n\t8775:  0x00008CC3,\n\t8776:  0x00008CC2,\n\t8777:  0x00008CC5,\n\t8778:  0x00008DE1,\n\t8779:  0x00008DDF,\n\t8780:  0x00008DE8,\n\t8781:  0x00008DEF,\n\t8782:  0x00008DF3,\n\t8783:  0x00008DFA,\n\t8784:  0x00008DEA,\n\t8785:  0x00008DE4,\n\t8786:  0x00008DE6,\n\t8787:  0x00008EB2,\n\t8788:  0x00008F03,\n\t8789:  0x00008F09,\n\t8790:  0x00008EFE,\n\t8791:  0x00008F0A,\n\t8792:  0x00008F9F,\n\t8793:  0x00008FB2,\n\t8794:  0x0000904B,\n\t8795:  0x0000904A,\n\t8796:  0x00009053,\n\t8797:  0x00009042,\n\t8798:  0x00009054,\n\t8799:  0x0000903C,\n\t8800:  0x00009055,\n\t8801:  0x00009050,\n\t8802:  0x00009047,\n\t8803:  0x0000904F,\n\t8804:  0x0000904E,\n\t8805:  0x0000904D,\n\t8806:  0x00009051,\n\t8807:  0x0000903E,\n\t8808:  0x00009041,\n\t8809:  0x00009112,\n\t8810:  0x00009117,\n\t8811:  0x0000916C,\n\t8812:  0x0000916A,\n\t8813:  0x00009169,\n\t8814:  0x000091C9,\n\t8815:  0x00009237,\n\t8816:  0x00009257,\n\t8817:  0x00009238,\n\t8818:  0x0000923D,\n\t8819:  0x00009240,\n\t8820:  0x0000923E,\n\t8821:  0x0000925B,\n\t8822:  0x0000924B,\n\t8823:  0x00009264,\n\t8824:  0x00009251,\n\t8825:  0x00009234,\n\t8826:  0x00009249,\n\t8827:  0x0000924D,\n\t8828:  0x00009245,\n\t8829:  0x00009239,\n\t8830:  0x0000923F,\n\t8831:  0x0000925A,\n\t8832:  0x00009598,\n\t8833:  0x00009698,\n\t8834:  0x00009694,\n\t8835:  0x00009695,\n\t8836:  0x000096CD,\n\t8837:  0x000096CB,\n\t8838:  0x000096C9,\n\t8839:  0x000096CA,\n\t8840:  0x000096F7,\n\t8841:  0x000096FB,\n\t8842:  0x000096F9,\n\t8843:  0x000096F6,\n\t8844:  0x00009756,\n\t8845:  0x00009774,\n\t8846:  0x00009776,\n\t8847:  0x00009810,\n\t8848:  0x00009811,\n\t8849:  0x00009813,\n\t8850:  0x0000980A,\n\t8851:  0x00009812,\n\t8852:  0x0000980C,\n\t8853:  0x000098FC,\n\t8854:  0x000098F4,\n\t8855:  0x000098FD,\n\t8856:  0x000098FE,\n\t8857:  0x000099B3,\n\t8858:  0x000099B1,\n\t8859:  0x000099B4,\n\t8860:  0x00009AE1,\n\t8861:  0x00009CE9,\n\t8862:  0x00009E82,\n\t8863:  0x00009F0E,\n\t8864:  0x00009F13,\n\t8865:  0x00009F20,\n\t8866:  0x000050E7,\n\t8867:  0x000050EE,\n\t8868:  0x000050E5,\n\t8869:  0x000050D6,\n\t8870:  0x000050ED,\n\t8871:  0x000050DA,\n\t8872:  0x000050D5,\n\t8873:  0x000050CF,\n\t8874:  0x000050D1,\n\t8875:  0x000050F1,\n\t8876:  0x000050CE,\n\t8877:  0x000050E9,\n\t8878:  0x00005162,\n\t8879:  0x000051F3,\n\t8880:  0x00005283,\n\t8881:  0x00005282,\n\t8882:  0x00005331,\n\t8883:  0x000053AD,\n\t8884:  0x000055FE,\n\t8885:  0x00005600,\n\t8886:  0x0000561B,\n\t8887:  0x00005617,\n\t8888:  0x000055FD,\n\t8889:  0x00005614,\n\t8890:  0x00005606,\n\t8891:  0x00005609,\n\t8892:  0x0000560D,\n\t8893:  0x0000560E,\n\t8894:  0x000055F7,\n\t8895:  0x00005616,\n\t8896:  0x0000561F,\n\t8897:  0x00005608,\n\t8898:  0x00005610,\n\t8899:  0x000055F6,\n\t8900:  0x00005718,\n\t8901:  0x00005716,\n\t8902:  0x00005875,\n\t8903:  0x0000587E,\n\t8904:  0x00005883,\n\t8905:  0x00005893,\n\t8906:  0x0000588A,\n\t8907:  0x00005879,\n\t8908:  0x00005885,\n\t8909:  0x0000587D,\n\t8910:  0x000058FD,\n\t8911:  0x00005925,\n\t8912:  0x00005922,\n\t8913:  0x00005924,\n\t8914:  0x0000596A,\n\t8915:  0x00005969,\n\t8916:  0x00005AE1,\n\t8917:  0x00005AE6,\n\t8918:  0x00005AE9,\n\t8919:  0x00005AD7,\n\t8920:  0x00005AD6,\n\t8921:  0x00005AD8,\n\t8922:  0x00005AE3,\n\t8923:  0x00005B75,\n\t8924:  0x00005BDE,\n\t8925:  0x00005BE7,\n\t8926:  0x00005BE1,\n\t8927:  0x00005BE5,\n\t8928:  0x00005BE6,\n\t8929:  0x00005BE8,\n\t8930:  0x00005BE2,\n\t8931:  0x00005BE4,\n\t8932:  0x00005BDF,\n\t8933:  0x00005C0D,\n\t8934:  0x00005C62,\n\t8935:  0x00005D84,\n\t8936:  0x00005D87,\n\t8937:  0x00005E5B,\n\t8938:  0x00005E63,\n\t8939:  0x00005E55,\n\t8940:  0x00005E57,\n\t8941:  0x00005E54,\n\t8942:  0x00005ED3,\n\t8943:  0x00005ED6,\n\t8944:  0x00005F0A,\n\t8945:  0x00005F46,\n\t8946:  0x00005F70,\n\t8947:  0x00005FB9,\n\t8948:  0x00006147,\n\t8949:  0x0000613F,\n\t8950:  0x0000614B,\n\t8951:  0x00006177,\n\t8952:  0x00006162,\n\t8953:  0x00006163,\n\t8954:  0x0000615F,\n\t8955:  0x0000615A,\n\t8956:  0x00006158,\n\t8957:  0x00006175,\n\t8958:  0x0000622A,\n\t8959:  0x00006487,\n\t8960:  0x00006458,\n\t8961:  0x00006454,\n\t8962:  0x000064A4,\n\t8963:  0x00006478,\n\t8964:  0x0000645F,\n\t8965:  0x0000647A,\n\t8966:  0x00006451,\n\t8967:  0x00006467,\n\t8968:  0x00006434,\n\t8969:  0x0000646D,\n\t8970:  0x0000647B,\n\t8971:  0x00006572,\n\t8972:  0x000065A1,\n\t8973:  0x000065D7,\n\t8974:  0x000065D6,\n\t8975:  0x000066A2,\n\t8976:  0x000066A8,\n\t8977:  0x0000669D,\n\t8978:  0x0000699C,\n\t8979:  0x000069A8,\n\t8980:  0x00006995,\n\t8981:  0x000069C1,\n\t8982:  0x000069AE,\n\t8983:  0x000069D3,\n\t8984:  0x000069CB,\n\t8985:  0x0000699B,\n\t8986:  0x000069B7,\n\t8987:  0x000069BB,\n\t8988:  0x000069AB,\n\t8989:  0x000069B4,\n\t8990:  0x000069D0,\n\t8991:  0x000069CD,\n\t8992:  0x000069AD,\n\t8993:  0x000069CC,\n\t8994:  0x000069A6,\n\t8995:  0x000069C3,\n\t8996:  0x000069A3,\n\t8997:  0x00006B49,\n\t8998:  0x00006B4C,\n\t8999:  0x00006C33,\n\t9000:  0x00006F33,\n\t9001:  0x00006F14,\n\t9002:  0x00006EFE,\n\t9003:  0x00006F13,\n\t9004:  0x00006EF4,\n\t9005:  0x00006F29,\n\t9006:  0x00006F3E,\n\t9007:  0x00006F20,\n\t9008:  0x00006F2C,\n\t9009:  0x00006F0F,\n\t9010:  0x00006F02,\n\t9011:  0x00006F22,\n\t9012:  0x00006EFF,\n\t9013:  0x00006EEF,\n\t9014:  0x00006F06,\n\t9015:  0x00006F31,\n\t9016:  0x00006F38,\n\t9017:  0x00006F32,\n\t9018:  0x00006F23,\n\t9019:  0x00006F15,\n\t9020:  0x00006F2B,\n\t9021:  0x00006F2F,\n\t9022:  0x00006F88,\n\t9023:  0x00006F2A,\n\t9024:  0x00006EEC,\n\t9025:  0x00006F01,\n\t9026:  0x00006EF2,\n\t9027:  0x00006ECC,\n\t9028:  0x00006EF7,\n\t9029:  0x00007194,\n\t9030:  0x00007199,\n\t9031:  0x0000717D,\n\t9032:  0x0000718A,\n\t9033:  0x00007184,\n\t9034:  0x00007192,\n\t9035:  0x0000723E,\n\t9036:  0x00007292,\n\t9037:  0x00007296,\n\t9038:  0x00007344,\n\t9039:  0x00007350,\n\t9040:  0x00007464,\n\t9041:  0x00007463,\n\t9042:  0x0000746A,\n\t9043:  0x00007470,\n\t9044:  0x0000746D,\n\t9045:  0x00007504,\n\t9046:  0x00007591,\n\t9047:  0x00007627,\n\t9048:  0x0000760D,\n\t9049:  0x0000760B,\n\t9050:  0x00007609,\n\t9051:  0x00007613,\n\t9052:  0x000076E1,\n\t9053:  0x000076E3,\n\t9054:  0x00007784,\n\t9055:  0x0000777D,\n\t9056:  0x0000777F,\n\t9057:  0x00007761,\n\t9058:  0x000078C1,\n\t9059:  0x0000789F,\n\t9060:  0x000078A7,\n\t9061:  0x000078B3,\n\t9062:  0x000078A9,\n\t9063:  0x000078A3,\n\t9064:  0x0000798E,\n\t9065:  0x0000798F,\n\t9066:  0x0000798D,\n\t9067:  0x00007A2E,\n\t9068:  0x00007A31,\n\t9069:  0x00007AAA,\n\t9070:  0x00007AA9,\n\t9071:  0x00007AED,\n\t9072:  0x00007AEF,\n\t9073:  0x00007BA1,\n\t9074:  0x00007B95,\n\t9075:  0x00007B8B,\n\t9076:  0x00007B75,\n\t9077:  0x00007B97,\n\t9078:  0x00007B9D,\n\t9079:  0x00007B94,\n\t9080:  0x00007B8F,\n\t9081:  0x00007BB8,\n\t9082:  0x00007B87,\n\t9083:  0x00007B84,\n\t9084:  0x00007CB9,\n\t9085:  0x00007CBD,\n\t9086:  0x00007CBE,\n\t9087:  0x00007DBB,\n\t9088:  0x00007DB0,\n\t9089:  0x00007D9C,\n\t9090:  0x00007DBD,\n\t9091:  0x00007DBE,\n\t9092:  0x00007DA0,\n\t9093:  0x00007DCA,\n\t9094:  0x00007DB4,\n\t9095:  0x00007DB2,\n\t9096:  0x00007DB1,\n\t9097:  0x00007DBA,\n\t9098:  0x00007DA2,\n\t9099:  0x00007DBF,\n\t9100:  0x00007DB5,\n\t9101:  0x00007DB8,\n\t9102:  0x00007DAD,\n\t9103:  0x00007DD2,\n\t9104:  0x00007DC7,\n\t9105:  0x00007DAC,\n\t9106:  0x00007F70,\n\t9107:  0x00007FE0,\n\t9108:  0x00007FE1,\n\t9109:  0x00007FDF,\n\t9110:  0x0000805E,\n\t9111:  0x0000805A,\n\t9112:  0x00008087,\n\t9113:  0x00008150,\n\t9114:  0x00008180,\n\t9115:  0x0000818F,\n\t9116:  0x00008188,\n\t9117:  0x0000818A,\n\t9118:  0x0000817F,\n\t9119:  0x00008182,\n\t9120:  0x000081E7,\n\t9121:  0x000081FA,\n\t9122:  0x00008207,\n\t9123:  0x00008214,\n\t9124:  0x0000821E,\n\t9125:  0x0000824B,\n\t9126:  0x000084C9,\n\t9127:  0x000084BF,\n\t9128:  0x000084C6,\n\t9129:  0x000084C4,\n\t9130:  0x00008499,\n\t9131:  0x0000849E,\n\t9132:  0x000084B2,\n\t9133:  0x0000849C,\n\t9134:  0x000084CB,\n\t9135:  0x000084B8,\n\t9136:  0x000084C0,\n\t9137:  0x000084D3,\n\t9138:  0x00008490,\n\t9139:  0x000084BC,\n\t9140:  0x000084D1,\n\t9141:  0x000084CA,\n\t9142:  0x0000873F,\n\t9143:  0x0000871C,\n\t9144:  0x0000873B,\n\t9145:  0x00008722,\n\t9146:  0x00008725,\n\t9147:  0x00008734,\n\t9148:  0x00008718,\n\t9149:  0x00008755,\n\t9150:  0x00008737,\n\t9151:  0x00008729,\n\t9152:  0x000088F3,\n\t9153:  0x00008902,\n\t9154:  0x000088F4,\n\t9155:  0x000088F9,\n\t9156:  0x000088F8,\n\t9157:  0x000088FD,\n\t9158:  0x000088E8,\n\t9159:  0x0000891A,\n\t9160:  0x000088EF,\n\t9161:  0x00008AA6,\n\t9162:  0x00008A8C,\n\t9163:  0x00008A9E,\n\t9164:  0x00008AA3,\n\t9165:  0x00008A8D,\n\t9166:  0x00008AA1,\n\t9167:  0x00008A93,\n\t9168:  0x00008AA4,\n\t9169:  0x00008AAA,\n\t9170:  0x00008AA5,\n\t9171:  0x00008AA8,\n\t9172:  0x00008A98,\n\t9173:  0x00008A91,\n\t9174:  0x00008A9A,\n\t9175:  0x00008AA7,\n\t9176:  0x00008C6A,\n\t9177:  0x00008C8D,\n\t9178:  0x00008C8C,\n\t9179:  0x00008CD3,\n\t9180:  0x00008CD1,\n\t9181:  0x00008CD2,\n\t9182:  0x00008D6B,\n\t9183:  0x00008D99,\n\t9184:  0x00008D95,\n\t9185:  0x00008DFC,\n\t9186:  0x00008F14,\n\t9187:  0x00008F12,\n\t9188:  0x00008F15,\n\t9189:  0x00008F13,\n\t9190:  0x00008FA3,\n\t9191:  0x00009060,\n\t9192:  0x00009058,\n\t9193:  0x0000905C,\n\t9194:  0x00009063,\n\t9195:  0x00009059,\n\t9196:  0x0000905E,\n\t9197:  0x00009062,\n\t9198:  0x0000905D,\n\t9199:  0x0000905B,\n\t9200:  0x00009119,\n\t9201:  0x00009118,\n\t9202:  0x0000911E,\n\t9203:  0x00009175,\n\t9204:  0x00009178,\n\t9205:  0x00009177,\n\t9206:  0x00009174,\n\t9207:  0x00009278,\n\t9208:  0x00009280,\n\t9209:  0x00009285,\n\t9210:  0x00009298,\n\t9211:  0x00009296,\n\t9212:  0x0000927B,\n\t9213:  0x00009293,\n\t9214:  0x0000929C,\n\t9215:  0x000092A8,\n\t9216:  0x0000927C,\n\t9217:  0x00009291,\n\t9218:  0x000095A1,\n\t9219:  0x000095A8,\n\t9220:  0x000095A9,\n\t9221:  0x000095A3,\n\t9222:  0x000095A5,\n\t9223:  0x000095A4,\n\t9224:  0x00009699,\n\t9225:  0x0000969C,\n\t9226:  0x0000969B,\n\t9227:  0x000096CC,\n\t9228:  0x000096D2,\n\t9229:  0x00009700,\n\t9230:  0x0000977C,\n\t9231:  0x00009785,\n\t9232:  0x000097F6,\n\t9233:  0x00009817,\n\t9234:  0x00009818,\n\t9235:  0x000098AF,\n\t9236:  0x000098B1,\n\t9237:  0x00009903,\n\t9238:  0x00009905,\n\t9239:  0x0000990C,\n\t9240:  0x00009909,\n\t9241:  0x000099C1,\n\t9242:  0x00009AAF,\n\t9243:  0x00009AB0,\n\t9244:  0x00009AE6,\n\t9245:  0x00009B41,\n\t9246:  0x00009B42,\n\t9247:  0x00009CF4,\n\t9248:  0x00009CF6,\n\t9249:  0x00009CF3,\n\t9250:  0x00009EBC,\n\t9251:  0x00009F3B,\n\t9252:  0x00009F4A,\n\t9253:  0x00005104,\n\t9254:  0x00005100,\n\t9255:  0x000050FB,\n\t9256:  0x000050F5,\n\t9257:  0x000050F9,\n\t9258:  0x00005102,\n\t9259:  0x00005108,\n\t9260:  0x00005109,\n\t9261:  0x00005105,\n\t9262:  0x000051DC,\n\t9263:  0x00005287,\n\t9264:  0x00005288,\n\t9265:  0x00005289,\n\t9266:  0x0000528D,\n\t9267:  0x0000528A,\n\t9268:  0x000052F0,\n\t9269:  0x000053B2,\n\t9270:  0x0000562E,\n\t9271:  0x0000563B,\n\t9272:  0x00005639,\n\t9273:  0x00005632,\n\t9274:  0x0000563F,\n\t9275:  0x00005634,\n\t9276:  0x00005629,\n\t9277:  0x00005653,\n\t9278:  0x0000564E,\n\t9279:  0x00005657,\n\t9280:  0x00005674,\n\t9281:  0x00005636,\n\t9282:  0x0000562F,\n\t9283:  0x00005630,\n\t9284:  0x00005880,\n\t9285:  0x0000589F,\n\t9286:  0x0000589E,\n\t9287:  0x000058B3,\n\t9288:  0x0000589C,\n\t9289:  0x000058AE,\n\t9290:  0x000058A9,\n\t9291:  0x000058A6,\n\t9292:  0x0000596D,\n\t9293:  0x00005B09,\n\t9294:  0x00005AFB,\n\t9295:  0x00005B0B,\n\t9296:  0x00005AF5,\n\t9297:  0x00005B0C,\n\t9298:  0x00005B08,\n\t9299:  0x00005BEE,\n\t9300:  0x00005BEC,\n\t9301:  0x00005BE9,\n\t9302:  0x00005BEB,\n\t9303:  0x00005C64,\n\t9304:  0x00005C65,\n\t9305:  0x00005D9D,\n\t9306:  0x00005D94,\n\t9307:  0x00005E62,\n\t9308:  0x00005E5F,\n\t9309:  0x00005E61,\n\t9310:  0x00005EE2,\n\t9311:  0x00005EDA,\n\t9312:  0x00005EDF,\n\t9313:  0x00005EDD,\n\t9314:  0x00005EE3,\n\t9315:  0x00005EE0,\n\t9316:  0x00005F48,\n\t9317:  0x00005F71,\n\t9318:  0x00005FB7,\n\t9319:  0x00005FB5,\n\t9320:  0x00006176,\n\t9321:  0x00006167,\n\t9322:  0x0000616E,\n\t9323:  0x0000615D,\n\t9324:  0x00006155,\n\t9325:  0x00006182,\n\t9326:  0x0000617C,\n\t9327:  0x00006170,\n\t9328:  0x0000616B,\n\t9329:  0x0000617E,\n\t9330:  0x000061A7,\n\t9331:  0x00006190,\n\t9332:  0x000061AB,\n\t9333:  0x0000618E,\n\t9334:  0x000061AC,\n\t9335:  0x0000619A,\n\t9336:  0x000061A4,\n\t9337:  0x00006194,\n\t9338:  0x000061AE,\n\t9339:  0x0000622E,\n\t9340:  0x00006469,\n\t9341:  0x0000646F,\n\t9342:  0x00006479,\n\t9343:  0x0000649E,\n\t9344:  0x000064B2,\n\t9345:  0x00006488,\n\t9346:  0x00006490,\n\t9347:  0x000064B0,\n\t9348:  0x000064A5,\n\t9349:  0x00006493,\n\t9350:  0x00006495,\n\t9351:  0x000064A9,\n\t9352:  0x00006492,\n\t9353:  0x000064AE,\n\t9354:  0x000064AD,\n\t9355:  0x000064AB,\n\t9356:  0x0000649A,\n\t9357:  0x000064AC,\n\t9358:  0x00006499,\n\t9359:  0x000064A2,\n\t9360:  0x000064B3,\n\t9361:  0x00006575,\n\t9362:  0x00006577,\n\t9363:  0x00006578,\n\t9364:  0x000066AE,\n\t9365:  0x000066AB,\n\t9366:  0x000066B4,\n\t9367:  0x000066B1,\n\t9368:  0x00006A23,\n\t9369:  0x00006A1F,\n\t9370:  0x000069E8,\n\t9371:  0x00006A01,\n\t9372:  0x00006A1E,\n\t9373:  0x00006A19,\n\t9374:  0x000069FD,\n\t9375:  0x00006A21,\n\t9376:  0x00006A13,\n\t9377:  0x00006A0A,\n\t9378:  0x000069F3,\n\t9379:  0x00006A02,\n\t9380:  0x00006A05,\n\t9381:  0x000069ED,\n\t9382:  0x00006A11,\n\t9383:  0x00006B50,\n\t9384:  0x00006B4E,\n\t9385:  0x00006BA4,\n\t9386:  0x00006BC5,\n\t9387:  0x00006BC6,\n\t9388:  0x00006F3F,\n\t9389:  0x00006F7C,\n\t9390:  0x00006F84,\n\t9391:  0x00006F51,\n\t9392:  0x00006F66,\n\t9393:  0x00006F54,\n\t9394:  0x00006F86,\n\t9395:  0x00006F6D,\n\t9396:  0x00006F5B,\n\t9397:  0x00006F78,\n\t9398:  0x00006F6E,\n\t9399:  0x00006F8E,\n\t9400:  0x00006F7A,\n\t9401:  0x00006F70,\n\t9402:  0x00006F64,\n\t9403:  0x00006F97,\n\t9404:  0x00006F58,\n\t9405:  0x00006ED5,\n\t9406:  0x00006F6F,\n\t9407:  0x00006F60,\n\t9408:  0x00006F5F,\n\t9409:  0x0000719F,\n\t9410:  0x000071AC,\n\t9411:  0x000071B1,\n\t9412:  0x000071A8,\n\t9413:  0x00007256,\n\t9414:  0x0000729B,\n\t9415:  0x0000734E,\n\t9416:  0x00007357,\n\t9417:  0x00007469,\n\t9418:  0x0000748B,\n\t9419:  0x00007483,\n\t9420:  0x0000747E,\n\t9421:  0x00007480,\n\t9422:  0x0000757F,\n\t9423:  0x00007620,\n\t9424:  0x00007629,\n\t9425:  0x0000761F,\n\t9426:  0x00007624,\n\t9427:  0x00007626,\n\t9428:  0x00007621,\n\t9429:  0x00007622,\n\t9430:  0x0000769A,\n\t9431:  0x000076BA,\n\t9432:  0x000076E4,\n\t9433:  0x0000778E,\n\t9434:  0x00007787,\n\t9435:  0x0000778C,\n\t9436:  0x00007791,\n\t9437:  0x0000778B,\n\t9438:  0x000078CB,\n\t9439:  0x000078C5,\n\t9440:  0x000078BA,\n\t9441:  0x000078CA,\n\t9442:  0x000078BE,\n\t9443:  0x000078D5,\n\t9444:  0x000078BC,\n\t9445:  0x000078D0,\n\t9446:  0x00007A3F,\n\t9447:  0x00007A3C,\n\t9448:  0x00007A40,\n\t9449:  0x00007A3D,\n\t9450:  0x00007A37,\n\t9451:  0x00007A3B,\n\t9452:  0x00007AAF,\n\t9453:  0x00007AAE,\n\t9454:  0x00007BAD,\n\t9455:  0x00007BB1,\n\t9456:  0x00007BC4,\n\t9457:  0x00007BB4,\n\t9458:  0x00007BC6,\n\t9459:  0x00007BC7,\n\t9460:  0x00007BC1,\n\t9461:  0x00007BA0,\n\t9462:  0x00007BCC,\n\t9463:  0x00007CCA,\n\t9464:  0x00007DE0,\n\t9465:  0x00007DF4,\n\t9466:  0x00007DEF,\n\t9467:  0x00007DFB,\n\t9468:  0x00007DD8,\n\t9469:  0x00007DEC,\n\t9470:  0x00007DDD,\n\t9471:  0x00007DE8,\n\t9472:  0x00007DE3,\n\t9473:  0x00007DDA,\n\t9474:  0x00007DDE,\n\t9475:  0x00007DE9,\n\t9476:  0x00007D9E,\n\t9477:  0x00007DD9,\n\t9478:  0x00007DF2,\n\t9479:  0x00007DF9,\n\t9480:  0x00007F75,\n\t9481:  0x00007F77,\n\t9482:  0x00007FAF,\n\t9483:  0x00007FE9,\n\t9484:  0x00008026,\n\t9485:  0x0000819B,\n\t9486:  0x0000819C,\n\t9487:  0x0000819D,\n\t9488:  0x000081A0,\n\t9489:  0x0000819A,\n\t9490:  0x00008198,\n\t9491:  0x00008517,\n\t9492:  0x0000853D,\n\t9493:  0x0000851A,\n\t9494:  0x000084EE,\n\t9495:  0x0000852C,\n\t9496:  0x0000852D,\n\t9497:  0x00008513,\n\t9498:  0x00008511,\n\t9499:  0x00008523,\n\t9500:  0x00008521,\n\t9501:  0x00008514,\n\t9502:  0x000084EC,\n\t9503:  0x00008525,\n\t9504:  0x000084FF,\n\t9505:  0x00008506,\n\t9506:  0x00008782,\n\t9507:  0x00008774,\n\t9508:  0x00008776,\n\t9509:  0x00008760,\n\t9510:  0x00008766,\n\t9511:  0x00008778,\n\t9512:  0x00008768,\n\t9513:  0x00008759,\n\t9514:  0x00008757,\n\t9515:  0x0000874C,\n\t9516:  0x00008753,\n\t9517:  0x0000885B,\n\t9518:  0x0000885D,\n\t9519:  0x00008910,\n\t9520:  0x00008907,\n\t9521:  0x00008912,\n\t9522:  0x00008913,\n\t9523:  0x00008915,\n\t9524:  0x0000890A,\n\t9525:  0x00008ABC,\n\t9526:  0x00008AD2,\n\t9527:  0x00008AC7,\n\t9528:  0x00008AC4,\n\t9529:  0x00008A95,\n\t9530:  0x00008ACB,\n\t9531:  0x00008AF8,\n\t9532:  0x00008AB2,\n\t9533:  0x00008AC9,\n\t9534:  0x00008AC2,\n\t9535:  0x00008ABF,\n\t9536:  0x00008AB0,\n\t9537:  0x00008AD6,\n\t9538:  0x00008ACD,\n\t9539:  0x00008AB6,\n\t9540:  0x00008AB9,\n\t9541:  0x00008ADB,\n\t9542:  0x00008C4C,\n\t9543:  0x00008C4E,\n\t9544:  0x00008C6C,\n\t9545:  0x00008CE0,\n\t9546:  0x00008CDE,\n\t9547:  0x00008CE6,\n\t9548:  0x00008CE4,\n\t9549:  0x00008CEC,\n\t9550:  0x00008CED,\n\t9551:  0x00008CE2,\n\t9552:  0x00008CE3,\n\t9553:  0x00008CDC,\n\t9554:  0x00008CEA,\n\t9555:  0x00008CE1,\n\t9556:  0x00008D6D,\n\t9557:  0x00008D9F,\n\t9558:  0x00008DA3,\n\t9559:  0x00008E2B,\n\t9560:  0x00008E10,\n\t9561:  0x00008E1D,\n\t9562:  0x00008E22,\n\t9563:  0x00008E0F,\n\t9564:  0x00008E29,\n\t9565:  0x00008E1F,\n\t9566:  0x00008E21,\n\t9567:  0x00008E1E,\n\t9568:  0x00008EBA,\n\t9569:  0x00008F1D,\n\t9570:  0x00008F1B,\n\t9571:  0x00008F1F,\n\t9572:  0x00008F29,\n\t9573:  0x00008F26,\n\t9574:  0x00008F2A,\n\t9575:  0x00008F1C,\n\t9576:  0x00008F1E,\n\t9577:  0x00008F25,\n\t9578:  0x00009069,\n\t9579:  0x0000906E,\n\t9580:  0x00009068,\n\t9581:  0x0000906D,\n\t9582:  0x00009077,\n\t9583:  0x00009130,\n\t9584:  0x0000912D,\n\t9585:  0x00009127,\n\t9586:  0x00009131,\n\t9587:  0x00009187,\n\t9588:  0x00009189,\n\t9589:  0x0000918B,\n\t9590:  0x00009183,\n\t9591:  0x000092C5,\n\t9592:  0x000092BB,\n\t9593:  0x000092B7,\n\t9594:  0x000092EA,\n\t9595:  0x000092AC,\n\t9596:  0x000092E4,\n\t9597:  0x000092C1,\n\t9598:  0x000092B3,\n\t9599:  0x000092BC,\n\t9600:  0x000092D2,\n\t9601:  0x000092C7,\n\t9602:  0x000092F0,\n\t9603:  0x000092B2,\n\t9604:  0x000095AD,\n\t9605:  0x000095B1,\n\t9606:  0x00009704,\n\t9607:  0x00009706,\n\t9608:  0x00009707,\n\t9609:  0x00009709,\n\t9610:  0x00009760,\n\t9611:  0x0000978D,\n\t9612:  0x0000978B,\n\t9613:  0x0000978F,\n\t9614:  0x00009821,\n\t9615:  0x0000982B,\n\t9616:  0x0000981C,\n\t9617:  0x000098B3,\n\t9618:  0x0000990A,\n\t9619:  0x00009913,\n\t9620:  0x00009912,\n\t9621:  0x00009918,\n\t9622:  0x000099DD,\n\t9623:  0x000099D0,\n\t9624:  0x000099DF,\n\t9625:  0x000099DB,\n\t9626:  0x000099D1,\n\t9627:  0x000099D5,\n\t9628:  0x000099D2,\n\t9629:  0x000099D9,\n\t9630:  0x00009AB7,\n\t9631:  0x00009AEE,\n\t9632:  0x00009AEF,\n\t9633:  0x00009B27,\n\t9634:  0x00009B45,\n\t9635:  0x00009B44,\n\t9636:  0x00009B77,\n\t9637:  0x00009B6F,\n\t9638:  0x00009D06,\n\t9639:  0x00009D09,\n\t9640:  0x00009D03,\n\t9641:  0x00009EA9,\n\t9642:  0x00009EBE,\n\t9643:  0x00009ECE,\n\t9644:  0x000058A8,\n\t9645:  0x00009F52,\n\t9646:  0x00005112,\n\t9647:  0x00005118,\n\t9648:  0x00005114,\n\t9649:  0x00005110,\n\t9650:  0x00005115,\n\t9651:  0x00005180,\n\t9652:  0x000051AA,\n\t9653:  0x000051DD,\n\t9654:  0x00005291,\n\t9655:  0x00005293,\n\t9656:  0x000052F3,\n\t9657:  0x00005659,\n\t9658:  0x0000566B,\n\t9659:  0x00005679,\n\t9660:  0x00005669,\n\t9661:  0x00005664,\n\t9662:  0x00005678,\n\t9663:  0x0000566A,\n\t9664:  0x00005668,\n\t9665:  0x00005665,\n\t9666:  0x00005671,\n\t9667:  0x0000566F,\n\t9668:  0x0000566C,\n\t9669:  0x00005662,\n\t9670:  0x00005676,\n\t9671:  0x000058C1,\n\t9672:  0x000058BE,\n\t9673:  0x000058C7,\n\t9674:  0x000058C5,\n\t9675:  0x0000596E,\n\t9676:  0x00005B1D,\n\t9677:  0x00005B34,\n\t9678:  0x00005B78,\n\t9679:  0x00005BF0,\n\t9680:  0x00005C0E,\n\t9681:  0x00005F4A,\n\t9682:  0x000061B2,\n\t9683:  0x00006191,\n\t9684:  0x000061A9,\n\t9685:  0x0000618A,\n\t9686:  0x000061CD,\n\t9687:  0x000061B6,\n\t9688:  0x000061BE,\n\t9689:  0x000061CA,\n\t9690:  0x000061C8,\n\t9691:  0x00006230,\n\t9692:  0x000064C5,\n\t9693:  0x000064C1,\n\t9694:  0x000064CB,\n\t9695:  0x000064BB,\n\t9696:  0x000064BC,\n\t9697:  0x000064DA,\n\t9698:  0x000064C4,\n\t9699:  0x000064C7,\n\t9700:  0x000064C2,\n\t9701:  0x000064CD,\n\t9702:  0x000064BF,\n\t9703:  0x000064D2,\n\t9704:  0x000064D4,\n\t9705:  0x000064BE,\n\t9706:  0x00006574,\n\t9707:  0x000066C6,\n\t9708:  0x000066C9,\n\t9709:  0x000066B9,\n\t9710:  0x000066C4,\n\t9711:  0x000066C7,\n\t9712:  0x000066B8,\n\t9713:  0x00006A3D,\n\t9714:  0x00006A38,\n\t9715:  0x00006A3A,\n\t9716:  0x00006A59,\n\t9717:  0x00006A6B,\n\t9718:  0x00006A58,\n\t9719:  0x00006A39,\n\t9720:  0x00006A44,\n\t9721:  0x00006A62,\n\t9722:  0x00006A61,\n\t9723:  0x00006A4B,\n\t9724:  0x00006A47,\n\t9725:  0x00006A35,\n\t9726:  0x00006A5F,\n\t9727:  0x00006A48,\n\t9728:  0x00006B59,\n\t9729:  0x00006B77,\n\t9730:  0x00006C05,\n\t9731:  0x00006FC2,\n\t9732:  0x00006FB1,\n\t9733:  0x00006FA1,\n\t9734:  0x00006FC3,\n\t9735:  0x00006FA4,\n\t9736:  0x00006FC1,\n\t9737:  0x00006FA7,\n\t9738:  0x00006FB3,\n\t9739:  0x00006FC0,\n\t9740:  0x00006FB9,\n\t9741:  0x00006FB6,\n\t9742:  0x00006FA6,\n\t9743:  0x00006FA0,\n\t9744:  0x00006FB4,\n\t9745:  0x000071BE,\n\t9746:  0x000071C9,\n\t9747:  0x000071D0,\n\t9748:  0x000071D2,\n\t9749:  0x000071C8,\n\t9750:  0x000071D5,\n\t9751:  0x000071B9,\n\t9752:  0x000071CE,\n\t9753:  0x000071D9,\n\t9754:  0x000071DC,\n\t9755:  0x000071C3,\n\t9756:  0x000071C4,\n\t9757:  0x00007368,\n\t9758:  0x0000749C,\n\t9759:  0x000074A3,\n\t9760:  0x00007498,\n\t9761:  0x0000749F,\n\t9762:  0x0000749E,\n\t9763:  0x000074E2,\n\t9764:  0x0000750C,\n\t9765:  0x0000750D,\n\t9766:  0x00007634,\n\t9767:  0x00007638,\n\t9768:  0x0000763A,\n\t9769:  0x000076E7,\n\t9770:  0x000076E5,\n\t9771:  0x000077A0,\n\t9772:  0x0000779E,\n\t9773:  0x0000779F,\n\t9774:  0x000077A5,\n\t9775:  0x000078E8,\n\t9776:  0x000078DA,\n\t9777:  0x000078EC,\n\t9778:  0x000078E7,\n\t9779:  0x000079A6,\n\t9780:  0x00007A4D,\n\t9781:  0x00007A4E,\n\t9782:  0x00007A46,\n\t9783:  0x00007A4C,\n\t9784:  0x00007A4B,\n\t9785:  0x00007ABA,\n\t9786:  0x00007BD9,\n\t9787:  0x00007C11,\n\t9788:  0x00007BC9,\n\t9789:  0x00007BE4,\n\t9790:  0x00007BDB,\n\t9791:  0x00007BE1,\n\t9792:  0x00007BE9,\n\t9793:  0x00007BE6,\n\t9794:  0x00007CD5,\n\t9795:  0x00007CD6,\n\t9796:  0x00007E0A,\n\t9797:  0x00007E11,\n\t9798:  0x00007E08,\n\t9799:  0x00007E1B,\n\t9800:  0x00007E23,\n\t9801:  0x00007E1E,\n\t9802:  0x00007E1D,\n\t9803:  0x00007E09,\n\t9804:  0x00007E10,\n\t9805:  0x00007F79,\n\t9806:  0x00007FB2,\n\t9807:  0x00007FF0,\n\t9808:  0x00007FF1,\n\t9809:  0x00007FEE,\n\t9810:  0x00008028,\n\t9811:  0x000081B3,\n\t9812:  0x000081A9,\n\t9813:  0x000081A8,\n\t9814:  0x000081FB,\n\t9815:  0x00008208,\n\t9816:  0x00008258,\n\t9817:  0x00008259,\n\t9818:  0x0000854A,\n\t9819:  0x00008559,\n\t9820:  0x00008548,\n\t9821:  0x00008568,\n\t9822:  0x00008569,\n\t9823:  0x00008543,\n\t9824:  0x00008549,\n\t9825:  0x0000856D,\n\t9826:  0x0000856A,\n\t9827:  0x0000855E,\n\t9828:  0x00008783,\n\t9829:  0x0000879F,\n\t9830:  0x0000879E,\n\t9831:  0x000087A2,\n\t9832:  0x0000878D,\n\t9833:  0x00008861,\n\t9834:  0x0000892A,\n\t9835:  0x00008932,\n\t9836:  0x00008925,\n\t9837:  0x0000892B,\n\t9838:  0x00008921,\n\t9839:  0x000089AA,\n\t9840:  0x000089A6,\n\t9841:  0x00008AE6,\n\t9842:  0x00008AFA,\n\t9843:  0x00008AEB,\n\t9844:  0x00008AF1,\n\t9845:  0x00008B00,\n\t9846:  0x00008ADC,\n\t9847:  0x00008AE7,\n\t9848:  0x00008AEE,\n\t9849:  0x00008AFE,\n\t9850:  0x00008B01,\n\t9851:  0x00008B02,\n\t9852:  0x00008AF7,\n\t9853:  0x00008AED,\n\t9854:  0x00008AF3,\n\t9855:  0x00008AF6,\n\t9856:  0x00008AFC,\n\t9857:  0x00008C6B,\n\t9858:  0x00008C6D,\n\t9859:  0x00008C93,\n\t9860:  0x00008CF4,\n\t9861:  0x00008E44,\n\t9862:  0x00008E31,\n\t9863:  0x00008E34,\n\t9864:  0x00008E42,\n\t9865:  0x00008E39,\n\t9866:  0x00008E35,\n\t9867:  0x00008F3B,\n\t9868:  0x00008F2F,\n\t9869:  0x00008F38,\n\t9870:  0x00008F33,\n\t9871:  0x00008FA8,\n\t9872:  0x00008FA6,\n\t9873:  0x00009075,\n\t9874:  0x00009074,\n\t9875:  0x00009078,\n\t9876:  0x00009072,\n\t9877:  0x0000907C,\n\t9878:  0x0000907A,\n\t9879:  0x00009134,\n\t9880:  0x00009192,\n\t9881:  0x00009320,\n\t9882:  0x00009336,\n\t9883:  0x000092F8,\n\t9884:  0x00009333,\n\t9885:  0x0000932F,\n\t9886:  0x00009322,\n\t9887:  0x000092FC,\n\t9888:  0x0000932B,\n\t9889:  0x00009304,\n\t9890:  0x0000931A,\n\t9891:  0x00009310,\n\t9892:  0x00009326,\n\t9893:  0x00009321,\n\t9894:  0x00009315,\n\t9895:  0x0000932E,\n\t9896:  0x00009319,\n\t9897:  0x000095BB,\n\t9898:  0x000096A7,\n\t9899:  0x000096A8,\n\t9900:  0x000096AA,\n\t9901:  0x000096D5,\n\t9902:  0x0000970E,\n\t9903:  0x00009711,\n\t9904:  0x00009716,\n\t9905:  0x0000970D,\n\t9906:  0x00009713,\n\t9907:  0x0000970F,\n\t9908:  0x0000975B,\n\t9909:  0x0000975C,\n\t9910:  0x00009766,\n\t9911:  0x00009798,\n\t9912:  0x00009830,\n\t9913:  0x00009838,\n\t9914:  0x0000983B,\n\t9915:  0x00009837,\n\t9916:  0x0000982D,\n\t9917:  0x00009839,\n\t9918:  0x00009824,\n\t9919:  0x00009910,\n\t9920:  0x00009928,\n\t9921:  0x0000991E,\n\t9922:  0x0000991B,\n\t9923:  0x00009921,\n\t9924:  0x0000991A,\n\t9925:  0x000099ED,\n\t9926:  0x000099E2,\n\t9927:  0x000099F1,\n\t9928:  0x00009AB8,\n\t9929:  0x00009ABC,\n\t9930:  0x00009AFB,\n\t9931:  0x00009AED,\n\t9932:  0x00009B28,\n\t9933:  0x00009B91,\n\t9934:  0x00009D15,\n\t9935:  0x00009D23,\n\t9936:  0x00009D26,\n\t9937:  0x00009D28,\n\t9938:  0x00009D12,\n\t9939:  0x00009D1B,\n\t9940:  0x00009ED8,\n\t9941:  0x00009ED4,\n\t9942:  0x00009F8D,\n\t9943:  0x00009F9C,\n\t9944:  0x0000512A,\n\t9945:  0x0000511F,\n\t9946:  0x00005121,\n\t9947:  0x00005132,\n\t9948:  0x000052F5,\n\t9949:  0x0000568E,\n\t9950:  0x00005680,\n\t9951:  0x00005690,\n\t9952:  0x00005685,\n\t9953:  0x00005687,\n\t9954:  0x0000568F,\n\t9955:  0x000058D5,\n\t9956:  0x000058D3,\n\t9957:  0x000058D1,\n\t9958:  0x000058CE,\n\t9959:  0x00005B30,\n\t9960:  0x00005B2A,\n\t9961:  0x00005B24,\n\t9962:  0x00005B7A,\n\t9963:  0x00005C37,\n\t9964:  0x00005C68,\n\t9965:  0x00005DBC,\n\t9966:  0x00005DBA,\n\t9967:  0x00005DBD,\n\t9968:  0x00005DB8,\n\t9969:  0x00005E6B,\n\t9970:  0x00005F4C,\n\t9971:  0x00005FBD,\n\t9972:  0x000061C9,\n\t9973:  0x000061C2,\n\t9974:  0x000061C7,\n\t9975:  0x000061E6,\n\t9976:  0x000061CB,\n\t9977:  0x00006232,\n\t9978:  0x00006234,\n\t9979:  0x000064CE,\n\t9980:  0x000064CA,\n\t9981:  0x000064D8,\n\t9982:  0x000064E0,\n\t9983:  0x000064F0,\n\t9984:  0x000064E6,\n\t9985:  0x000064EC,\n\t9986:  0x000064F1,\n\t9987:  0x000064E2,\n\t9988:  0x000064ED,\n\t9989:  0x00006582,\n\t9990:  0x00006583,\n\t9991:  0x000066D9,\n\t9992:  0x000066D6,\n\t9993:  0x00006A80,\n\t9994:  0x00006A94,\n\t9995:  0x00006A84,\n\t9996:  0x00006AA2,\n\t9997:  0x00006A9C,\n\t9998:  0x00006ADB,\n\t9999:  0x00006AA3,\n\t10000: 0x00006A7E,\n\t10001: 0x00006A97,\n\t10002: 0x00006A90,\n\t10003: 0x00006AA0,\n\t10004: 0x00006B5C,\n\t10005: 0x00006BAE,\n\t10006: 0x00006BDA,\n\t10007: 0x00006C08,\n\t10008: 0x00006FD8,\n\t10009: 0x00006FF1,\n\t10010: 0x00006FDF,\n\t10011: 0x00006FE0,\n\t10012: 0x00006FDB,\n\t10013: 0x00006FE4,\n\t10014: 0x00006FEB,\n\t10015: 0x00006FEF,\n\t10016: 0x00006F80,\n\t10017: 0x00006FEC,\n\t10018: 0x00006FE1,\n\t10019: 0x00006FE9,\n\t10020: 0x00006FD5,\n\t10021: 0x00006FEE,\n\t10022: 0x00006FF0,\n\t10023: 0x000071E7,\n\t10024: 0x000071DF,\n\t10025: 0x000071EE,\n\t10026: 0x000071E6,\n\t10027: 0x000071E5,\n\t10028: 0x000071ED,\n\t10029: 0x000071EC,\n\t10030: 0x000071F4,\n\t10031: 0x000071E0,\n\t10032: 0x00007235,\n\t10033: 0x00007246,\n\t10034: 0x00007370,\n\t10035: 0x00007372,\n\t10036: 0x000074A9,\n\t10037: 0x000074B0,\n\t10038: 0x000074A6,\n\t10039: 0x000074A8,\n\t10040: 0x00007646,\n\t10041: 0x00007642,\n\t10042: 0x0000764C,\n\t10043: 0x000076EA,\n\t10044: 0x000077B3,\n\t10045: 0x000077AA,\n\t10046: 0x000077B0,\n\t10047: 0x000077AC,\n\t10048: 0x000077A7,\n\t10049: 0x000077AD,\n\t10050: 0x000077EF,\n\t10051: 0x000078F7,\n\t10052: 0x000078FA,\n\t10053: 0x000078F4,\n\t10054: 0x000078EF,\n\t10055: 0x00007901,\n\t10056: 0x000079A7,\n\t10057: 0x000079AA,\n\t10058: 0x00007A57,\n\t10059: 0x00007ABF,\n\t10060: 0x00007C07,\n\t10061: 0x00007C0D,\n\t10062: 0x00007BFE,\n\t10063: 0x00007BF7,\n\t10064: 0x00007C0C,\n\t10065: 0x00007BE0,\n\t10066: 0x00007CE0,\n\t10067: 0x00007CDC,\n\t10068: 0x00007CDE,\n\t10069: 0x00007CE2,\n\t10070: 0x00007CDF,\n\t10071: 0x00007CD9,\n\t10072: 0x00007CDD,\n\t10073: 0x00007E2E,\n\t10074: 0x00007E3E,\n\t10075: 0x00007E46,\n\t10076: 0x00007E37,\n\t10077: 0x00007E32,\n\t10078: 0x00007E43,\n\t10079: 0x00007E2B,\n\t10080: 0x00007E3D,\n\t10081: 0x00007E31,\n\t10082: 0x00007E45,\n\t10083: 0x00007E41,\n\t10084: 0x00007E34,\n\t10085: 0x00007E39,\n\t10086: 0x00007E48,\n\t10087: 0x00007E35,\n\t10088: 0x00007E3F,\n\t10089: 0x00007E2F,\n\t10090: 0x00007F44,\n\t10091: 0x00007FF3,\n\t10092: 0x00007FFC,\n\t10093: 0x00008071,\n\t10094: 0x00008072,\n\t10095: 0x00008070,\n\t10096: 0x0000806F,\n\t10097: 0x00008073,\n\t10098: 0x000081C6,\n\t10099: 0x000081C3,\n\t10100: 0x000081BA,\n\t10101: 0x000081C2,\n\t10102: 0x000081C0,\n\t10103: 0x000081BF,\n\t10104: 0x000081BD,\n\t10105: 0x000081C9,\n\t10106: 0x000081BE,\n\t10107: 0x000081E8,\n\t10108: 0x00008209,\n\t10109: 0x00008271,\n\t10110: 0x000085AA,\n\t10111: 0x00008584,\n\t10112: 0x0000857E,\n\t10113: 0x0000859C,\n\t10114: 0x00008591,\n\t10115: 0x00008594,\n\t10116: 0x000085AF,\n\t10117: 0x0000859B,\n\t10118: 0x00008587,\n\t10119: 0x000085A8,\n\t10120: 0x0000858A,\n\t10121: 0x00008667,\n\t10122: 0x000087C0,\n\t10123: 0x000087D1,\n\t10124: 0x000087B3,\n\t10125: 0x000087D2,\n\t10126: 0x000087C6,\n\t10127: 0x000087AB,\n\t10128: 0x000087BB,\n\t10129: 0x000087BA,\n\t10130: 0x000087C8,\n\t10131: 0x000087CB,\n\t10132: 0x0000893B,\n\t10133: 0x00008936,\n\t10134: 0x00008944,\n\t10135: 0x00008938,\n\t10136: 0x0000893D,\n\t10137: 0x000089AC,\n\t10138: 0x00008B0E,\n\t10139: 0x00008B17,\n\t10140: 0x00008B19,\n\t10141: 0x00008B1B,\n\t10142: 0x00008B0A,\n\t10143: 0x00008B20,\n\t10144: 0x00008B1D,\n\t10145: 0x00008B04,\n\t10146: 0x00008B10,\n\t10147: 0x00008C41,\n\t10148: 0x00008C3F,\n\t10149: 0x00008C73,\n\t10150: 0x00008CFA,\n\t10151: 0x00008CFD,\n\t10152: 0x00008CFC,\n\t10153: 0x00008CF8,\n\t10154: 0x00008CFB,\n\t10155: 0x00008DA8,\n\t10156: 0x00008E49,\n\t10157: 0x00008E4B,\n\t10158: 0x00008E48,\n\t10159: 0x00008E4A,\n\t10160: 0x00008F44,\n\t10161: 0x00008F3E,\n\t10162: 0x00008F42,\n\t10163: 0x00008F45,\n\t10164: 0x00008F3F,\n\t10165: 0x0000907F,\n\t10166: 0x0000907D,\n\t10167: 0x00009084,\n\t10168: 0x00009081,\n\t10169: 0x00009082,\n\t10170: 0x00009080,\n\t10171: 0x00009139,\n\t10172: 0x000091A3,\n\t10173: 0x0000919E,\n\t10174: 0x0000919C,\n\t10175: 0x0000934D,\n\t10176: 0x00009382,\n\t10177: 0x00009328,\n\t10178: 0x00009375,\n\t10179: 0x0000934A,\n\t10180: 0x00009365,\n\t10181: 0x0000934B,\n\t10182: 0x00009318,\n\t10183: 0x0000937E,\n\t10184: 0x0000936C,\n\t10185: 0x0000935B,\n\t10186: 0x00009370,\n\t10187: 0x0000935A,\n\t10188: 0x00009354,\n\t10189: 0x000095CA,\n\t10190: 0x000095CB,\n\t10191: 0x000095CC,\n\t10192: 0x000095C8,\n\t10193: 0x000095C6,\n\t10194: 0x000096B1,\n\t10195: 0x000096B8,\n\t10196: 0x000096D6,\n\t10197: 0x0000971C,\n\t10198: 0x0000971E,\n\t10199: 0x000097A0,\n\t10200: 0x000097D3,\n\t10201: 0x00009846,\n\t10202: 0x000098B6,\n\t10203: 0x00009935,\n\t10204: 0x00009A01,\n\t10205: 0x000099FF,\n\t10206: 0x00009BAE,\n\t10207: 0x00009BAB,\n\t10208: 0x00009BAA,\n\t10209: 0x00009BAD,\n\t10210: 0x00009D3B,\n\t10211: 0x00009D3F,\n\t10212: 0x00009E8B,\n\t10213: 0x00009ECF,\n\t10214: 0x00009EDE,\n\t10215: 0x00009EDC,\n\t10216: 0x00009EDD,\n\t10217: 0x00009EDB,\n\t10218: 0x00009F3E,\n\t10219: 0x00009F4B,\n\t10220: 0x000053E2,\n\t10221: 0x00005695,\n\t10222: 0x000056AE,\n\t10223: 0x000058D9,\n\t10224: 0x000058D8,\n\t10225: 0x00005B38,\n\t10226: 0x00005F5D,\n\t10227: 0x000061E3,\n\t10228: 0x00006233,\n\t10229: 0x000064F4,\n\t10230: 0x000064F2,\n\t10231: 0x000064FE,\n\t10232: 0x00006506,\n\t10233: 0x000064FA,\n\t10234: 0x000064FB,\n\t10235: 0x000064F7,\n\t10236: 0x000065B7,\n\t10237: 0x000066DC,\n\t10238: 0x00006726,\n\t10239: 0x00006AB3,\n\t10240: 0x00006AAC,\n\t10241: 0x00006AC3,\n\t10242: 0x00006ABB,\n\t10243: 0x00006AB8,\n\t10244: 0x00006AC2,\n\t10245: 0x00006AAE,\n\t10246: 0x00006AAF,\n\t10247: 0x00006B5F,\n\t10248: 0x00006B78,\n\t10249: 0x00006BAF,\n\t10250: 0x00007009,\n\t10251: 0x0000700B,\n\t10252: 0x00006FFE,\n\t10253: 0x00007006,\n\t10254: 0x00006FFA,\n\t10255: 0x00007011,\n\t10256: 0x0000700F,\n\t10257: 0x000071FB,\n\t10258: 0x000071FC,\n\t10259: 0x000071FE,\n\t10260: 0x000071F8,\n\t10261: 0x00007377,\n\t10262: 0x00007375,\n\t10263: 0x000074A7,\n\t10264: 0x000074BF,\n\t10265: 0x00007515,\n\t10266: 0x00007656,\n\t10267: 0x00007658,\n\t10268: 0x00007652,\n\t10269: 0x000077BD,\n\t10270: 0x000077BF,\n\t10271: 0x000077BB,\n\t10272: 0x000077BC,\n\t10273: 0x0000790E,\n\t10274: 0x000079AE,\n\t10275: 0x00007A61,\n\t10276: 0x00007A62,\n\t10277: 0x00007A60,\n\t10278: 0x00007AC4,\n\t10279: 0x00007AC5,\n\t10280: 0x00007C2B,\n\t10281: 0x00007C27,\n\t10282: 0x00007C2A,\n\t10283: 0x00007C1E,\n\t10284: 0x00007C23,\n\t10285: 0x00007C21,\n\t10286: 0x00007CE7,\n\t10287: 0x00007E54,\n\t10288: 0x00007E55,\n\t10289: 0x00007E5E,\n\t10290: 0x00007E5A,\n\t10291: 0x00007E61,\n\t10292: 0x00007E52,\n\t10293: 0x00007E59,\n\t10294: 0x00007F48,\n\t10295: 0x00007FF9,\n\t10296: 0x00007FFB,\n\t10297: 0x00008077,\n\t10298: 0x00008076,\n\t10299: 0x000081CD,\n\t10300: 0x000081CF,\n\t10301: 0x0000820A,\n\t10302: 0x000085CF,\n\t10303: 0x000085A9,\n\t10304: 0x000085CD,\n\t10305: 0x000085D0,\n\t10306: 0x000085C9,\n\t10307: 0x000085B0,\n\t10308: 0x000085BA,\n\t10309: 0x000085B9,\n\t10310: 0x000085A6,\n\t10311: 0x000087EF,\n\t10312: 0x000087EC,\n\t10313: 0x000087F2,\n\t10314: 0x000087E0,\n\t10315: 0x00008986,\n\t10316: 0x000089B2,\n\t10317: 0x000089F4,\n\t10318: 0x00008B28,\n\t10319: 0x00008B39,\n\t10320: 0x00008B2C,\n\t10321: 0x00008B2B,\n\t10322: 0x00008C50,\n\t10323: 0x00008D05,\n\t10324: 0x00008E59,\n\t10325: 0x00008E63,\n\t10326: 0x00008E66,\n\t10327: 0x00008E64,\n\t10328: 0x00008E5F,\n\t10329: 0x00008E55,\n\t10330: 0x00008EC0,\n\t10331: 0x00008F49,\n\t10332: 0x00008F4D,\n\t10333: 0x00009087,\n\t10334: 0x00009083,\n\t10335: 0x00009088,\n\t10336: 0x000091AB,\n\t10337: 0x000091AC,\n\t10338: 0x000091D0,\n\t10339: 0x00009394,\n\t10340: 0x0000938A,\n\t10341: 0x00009396,\n\t10342: 0x000093A2,\n\t10343: 0x000093B3,\n\t10344: 0x000093AE,\n\t10345: 0x000093AC,\n\t10346: 0x000093B0,\n\t10347: 0x00009398,\n\t10348: 0x0000939A,\n\t10349: 0x00009397,\n\t10350: 0x000095D4,\n\t10351: 0x000095D6,\n\t10352: 0x000095D0,\n\t10353: 0x000095D5,\n\t10354: 0x000096E2,\n\t10355: 0x000096DC,\n\t10356: 0x000096D9,\n\t10357: 0x000096DB,\n\t10358: 0x000096DE,\n\t10359: 0x00009724,\n\t10360: 0x000097A3,\n\t10361: 0x000097A6,\n\t10362: 0x000097AD,\n\t10363: 0x000097F9,\n\t10364: 0x0000984D,\n\t10365: 0x0000984F,\n\t10366: 0x0000984C,\n\t10367: 0x0000984E,\n\t10368: 0x00009853,\n\t10369: 0x000098BA,\n\t10370: 0x0000993E,\n\t10371: 0x0000993F,\n\t10372: 0x0000993D,\n\t10373: 0x0000992E,\n\t10374: 0x000099A5,\n\t10375: 0x00009A0E,\n\t10376: 0x00009AC1,\n\t10377: 0x00009B03,\n\t10378: 0x00009B06,\n\t10379: 0x00009B4F,\n\t10380: 0x00009B4E,\n\t10381: 0x00009B4D,\n\t10382: 0x00009BCA,\n\t10383: 0x00009BC9,\n\t10384: 0x00009BFD,\n\t10385: 0x00009BC8,\n\t10386: 0x00009BC0,\n\t10387: 0x00009D51,\n\t10388: 0x00009D5D,\n\t10389: 0x00009D60,\n\t10390: 0x00009EE0,\n\t10391: 0x00009F15,\n\t10392: 0x00009F2C,\n\t10393: 0x00005133,\n\t10394: 0x000056A5,\n\t10395: 0x000058DE,\n\t10396: 0x000058DF,\n\t10397: 0x000058E2,\n\t10398: 0x00005BF5,\n\t10399: 0x00009F90,\n\t10400: 0x00005EEC,\n\t10401: 0x000061F2,\n\t10402: 0x000061F7,\n\t10403: 0x000061F6,\n\t10404: 0x000061F5,\n\t10405: 0x00006500,\n\t10406: 0x0000650F,\n\t10407: 0x000066E0,\n\t10408: 0x000066DD,\n\t10409: 0x00006AE5,\n\t10410: 0x00006ADD,\n\t10411: 0x00006ADA,\n\t10412: 0x00006AD3,\n\t10413: 0x0000701B,\n\t10414: 0x0000701F,\n\t10415: 0x00007028,\n\t10416: 0x0000701A,\n\t10417: 0x0000701D,\n\t10418: 0x00007015,\n\t10419: 0x00007018,\n\t10420: 0x00007206,\n\t10421: 0x0000720D,\n\t10422: 0x00007258,\n\t10423: 0x000072A2,\n\t10424: 0x00007378,\n\t10425: 0x0000737A,\n\t10426: 0x000074BD,\n\t10427: 0x000074CA,\n\t10428: 0x000074E3,\n\t10429: 0x00007587,\n\t10430: 0x00007586,\n\t10431: 0x0000765F,\n\t10432: 0x00007661,\n\t10433: 0x000077C7,\n\t10434: 0x00007919,\n\t10435: 0x000079B1,\n\t10436: 0x00007A6B,\n\t10437: 0x00007A69,\n\t10438: 0x00007C3E,\n\t10439: 0x00007C3F,\n\t10440: 0x00007C38,\n\t10441: 0x00007C3D,\n\t10442: 0x00007C37,\n\t10443: 0x00007C40,\n\t10444: 0x00007E6B,\n\t10445: 0x00007E6D,\n\t10446: 0x00007E79,\n\t10447: 0x00007E69,\n\t10448: 0x00007E6A,\n\t10449: 0x00007F85,\n\t10450: 0x00007E73,\n\t10451: 0x00007FB6,\n\t10452: 0x00007FB9,\n\t10453: 0x00007FB8,\n\t10454: 0x000081D8,\n\t10455: 0x000085E9,\n\t10456: 0x000085DD,\n\t10457: 0x000085EA,\n\t10458: 0x000085D5,\n\t10459: 0x000085E4,\n\t10460: 0x000085E5,\n\t10461: 0x000085F7,\n\t10462: 0x000087FB,\n\t10463: 0x00008805,\n\t10464: 0x0000880D,\n\t10465: 0x000087F9,\n\t10466: 0x000087FE,\n\t10467: 0x00008960,\n\t10468: 0x0000895F,\n\t10469: 0x00008956,\n\t10470: 0x0000895E,\n\t10471: 0x00008B41,\n\t10472: 0x00008B5C,\n\t10473: 0x00008B58,\n\t10474: 0x00008B49,\n\t10475: 0x00008B5A,\n\t10476: 0x00008B4E,\n\t10477: 0x00008B4F,\n\t10478: 0x00008B46,\n\t10479: 0x00008B59,\n\t10480: 0x00008D08,\n\t10481: 0x00008D0A,\n\t10482: 0x00008E7C,\n\t10483: 0x00008E72,\n\t10484: 0x00008E87,\n\t10485: 0x00008E76,\n\t10486: 0x00008E6C,\n\t10487: 0x00008E7A,\n\t10488: 0x00008E74,\n\t10489: 0x00008F54,\n\t10490: 0x00008F4E,\n\t10491: 0x00008FAD,\n\t10492: 0x0000908A,\n\t10493: 0x0000908B,\n\t10494: 0x000091B1,\n\t10495: 0x000091AE,\n\t10496: 0x000093E1,\n\t10497: 0x000093D1,\n\t10498: 0x000093DF,\n\t10499: 0x000093C3,\n\t10500: 0x000093C8,\n\t10501: 0x000093DC,\n\t10502: 0x000093DD,\n\t10503: 0x000093D6,\n\t10504: 0x000093E2,\n\t10505: 0x000093CD,\n\t10506: 0x000093D8,\n\t10507: 0x000093E4,\n\t10508: 0x000093D7,\n\t10509: 0x000093E8,\n\t10510: 0x000095DC,\n\t10511: 0x000096B4,\n\t10512: 0x000096E3,\n\t10513: 0x0000972A,\n\t10514: 0x00009727,\n\t10515: 0x00009761,\n\t10516: 0x000097DC,\n\t10517: 0x000097FB,\n\t10518: 0x0000985E,\n\t10519: 0x00009858,\n\t10520: 0x0000985B,\n\t10521: 0x000098BC,\n\t10522: 0x00009945,\n\t10523: 0x00009949,\n\t10524: 0x00009A16,\n\t10525: 0x00009A19,\n\t10526: 0x00009B0D,\n\t10527: 0x00009BE8,\n\t10528: 0x00009BE7,\n\t10529: 0x00009BD6,\n\t10530: 0x00009BDB,\n\t10531: 0x00009D89,\n\t10532: 0x00009D61,\n\t10533: 0x00009D72,\n\t10534: 0x00009D6A,\n\t10535: 0x00009D6C,\n\t10536: 0x00009E92,\n\t10537: 0x00009E97,\n\t10538: 0x00009E93,\n\t10539: 0x00009EB4,\n\t10540: 0x000052F8,\n\t10541: 0x000056A8,\n\t10542: 0x000056B7,\n\t10543: 0x000056B6,\n\t10544: 0x000056B4,\n\t10545: 0x000056BC,\n\t10546: 0x000058E4,\n\t10547: 0x00005B40,\n\t10548: 0x00005B43,\n\t10549: 0x00005B7D,\n\t10550: 0x00005BF6,\n\t10551: 0x00005DC9,\n\t10552: 0x000061F8,\n\t10553: 0x000061FA,\n\t10554: 0x00006518,\n\t10555: 0x00006514,\n\t10556: 0x00006519,\n\t10557: 0x000066E6,\n\t10558: 0x00006727,\n\t10559: 0x00006AEC,\n\t10560: 0x0000703E,\n\t10561: 0x00007030,\n\t10562: 0x00007032,\n\t10563: 0x00007210,\n\t10564: 0x0000737B,\n\t10565: 0x000074CF,\n\t10566: 0x00007662,\n\t10567: 0x00007665,\n\t10568: 0x00007926,\n\t10569: 0x0000792A,\n\t10570: 0x0000792C,\n\t10571: 0x0000792B,\n\t10572: 0x00007AC7,\n\t10573: 0x00007AF6,\n\t10574: 0x00007C4C,\n\t10575: 0x00007C43,\n\t10576: 0x00007C4D,\n\t10577: 0x00007CEF,\n\t10578: 0x00007CF0,\n\t10579: 0x00008FAE,\n\t10580: 0x00007E7D,\n\t10581: 0x00007E7C,\n\t10582: 0x00007E82,\n\t10583: 0x00007F4C,\n\t10584: 0x00008000,\n\t10585: 0x000081DA,\n\t10586: 0x00008266,\n\t10587: 0x000085FB,\n\t10588: 0x000085F9,\n\t10589: 0x00008611,\n\t10590: 0x000085FA,\n\t10591: 0x00008606,\n\t10592: 0x0000860B,\n\t10593: 0x00008607,\n\t10594: 0x0000860A,\n\t10595: 0x00008814,\n\t10596: 0x00008815,\n\t10597: 0x00008964,\n\t10598: 0x000089BA,\n\t10599: 0x000089F8,\n\t10600: 0x00008B70,\n\t10601: 0x00008B6C,\n\t10602: 0x00008B66,\n\t10603: 0x00008B6F,\n\t10604: 0x00008B5F,\n\t10605: 0x00008B6B,\n\t10606: 0x00008D0F,\n\t10607: 0x00008D0D,\n\t10608: 0x00008E89,\n\t10609: 0x00008E81,\n\t10610: 0x00008E85,\n\t10611: 0x00008E82,\n\t10612: 0x000091B4,\n\t10613: 0x000091CB,\n\t10614: 0x00009418,\n\t10615: 0x00009403,\n\t10616: 0x000093FD,\n\t10617: 0x000095E1,\n\t10618: 0x00009730,\n\t10619: 0x000098C4,\n\t10620: 0x00009952,\n\t10621: 0x00009951,\n\t10622: 0x000099A8,\n\t10623: 0x00009A2B,\n\t10624: 0x00009A30,\n\t10625: 0x00009A37,\n\t10626: 0x00009A35,\n\t10627: 0x00009C13,\n\t10628: 0x00009C0D,\n\t10629: 0x00009E79,\n\t10630: 0x00009EB5,\n\t10631: 0x00009EE8,\n\t10632: 0x00009F2F,\n\t10633: 0x00009F5F,\n\t10634: 0x00009F63,\n\t10635: 0x00009F61,\n\t10636: 0x00005137,\n\t10637: 0x00005138,\n\t10638: 0x000056C1,\n\t10639: 0x000056C0,\n\t10640: 0x000056C2,\n\t10641: 0x00005914,\n\t10642: 0x00005C6C,\n\t10643: 0x00005DCD,\n\t10644: 0x000061FC,\n\t10645: 0x000061FE,\n\t10646: 0x0000651D,\n\t10647: 0x0000651C,\n\t10648: 0x00006595,\n\t10649: 0x000066E9,\n\t10650: 0x00006AFB,\n\t10651: 0x00006B04,\n\t10652: 0x00006AFA,\n\t10653: 0x00006BB2,\n\t10654: 0x0000704C,\n\t10655: 0x0000721B,\n\t10656: 0x000072A7,\n\t10657: 0x000074D6,\n\t10658: 0x000074D4,\n\t10659: 0x00007669,\n\t10660: 0x000077D3,\n\t10661: 0x00007C50,\n\t10662: 0x00007E8F,\n\t10663: 0x00007E8C,\n\t10664: 0x00007FBC,\n\t10665: 0x00008617,\n\t10666: 0x0000862D,\n\t10667: 0x0000861A,\n\t10668: 0x00008823,\n\t10669: 0x00008822,\n\t10670: 0x00008821,\n\t10671: 0x0000881F,\n\t10672: 0x0000896A,\n\t10673: 0x0000896C,\n\t10674: 0x000089BD,\n\t10675: 0x00008B74,\n\t10676: 0x00008B77,\n\t10677: 0x00008B7D,\n\t10678: 0x00008D13,\n\t10679: 0x00008E8A,\n\t10680: 0x00008E8D,\n\t10681: 0x00008E8B,\n\t10682: 0x00008F5F,\n\t10683: 0x00008FAF,\n\t10684: 0x000091BA,\n\t10685: 0x0000942E,\n\t10686: 0x00009433,\n\t10687: 0x00009435,\n\t10688: 0x0000943A,\n\t10689: 0x00009438,\n\t10690: 0x00009432,\n\t10691: 0x0000942B,\n\t10692: 0x000095E2,\n\t10693: 0x00009738,\n\t10694: 0x00009739,\n\t10695: 0x00009732,\n\t10696: 0x000097FF,\n\t10697: 0x00009867,\n\t10698: 0x00009865,\n\t10699: 0x00009957,\n\t10700: 0x00009A45,\n\t10701: 0x00009A43,\n\t10702: 0x00009A40,\n\t10703: 0x00009A3E,\n\t10704: 0x00009ACF,\n\t10705: 0x00009B54,\n\t10706: 0x00009B51,\n\t10707: 0x00009C2D,\n\t10708: 0x00009C25,\n\t10709: 0x00009DAF,\n\t10710: 0x00009DB4,\n\t10711: 0x00009DC2,\n\t10712: 0x00009DB8,\n\t10713: 0x00009E9D,\n\t10714: 0x00009EEF,\n\t10715: 0x00009F19,\n\t10716: 0x00009F5C,\n\t10717: 0x00009F66,\n\t10718: 0x00009F67,\n\t10719: 0x0000513C,\n\t10720: 0x0000513B,\n\t10721: 0x000056C8,\n\t10722: 0x000056CA,\n\t10723: 0x000056C9,\n\t10724: 0x00005B7F,\n\t10725: 0x00005DD4,\n\t10726: 0x00005DD2,\n\t10727: 0x00005F4E,\n\t10728: 0x000061FF,\n\t10729: 0x00006524,\n\t10730: 0x00006B0A,\n\t10731: 0x00006B61,\n\t10732: 0x00007051,\n\t10733: 0x00007058,\n\t10734: 0x00007380,\n\t10735: 0x000074E4,\n\t10736: 0x0000758A,\n\t10737: 0x0000766E,\n\t10738: 0x0000766C,\n\t10739: 0x000079B3,\n\t10740: 0x00007C60,\n\t10741: 0x00007C5F,\n\t10742: 0x0000807E,\n\t10743: 0x0000807D,\n\t10744: 0x000081DF,\n\t10745: 0x00008972,\n\t10746: 0x0000896F,\n\t10747: 0x000089FC,\n\t10748: 0x00008B80,\n\t10749: 0x00008D16,\n\t10750: 0x00008D17,\n\t10751: 0x00008E91,\n\t10752: 0x00008E93,\n\t10753: 0x00008F61,\n\t10754: 0x00009148,\n\t10755: 0x00009444,\n\t10756: 0x00009451,\n\t10757: 0x00009452,\n\t10758: 0x0000973D,\n\t10759: 0x0000973E,\n\t10760: 0x000097C3,\n\t10761: 0x000097C1,\n\t10762: 0x0000986B,\n\t10763: 0x00009955,\n\t10764: 0x00009A55,\n\t10765: 0x00009A4D,\n\t10766: 0x00009AD2,\n\t10767: 0x00009B1A,\n\t10768: 0x00009C49,\n\t10769: 0x00009C31,\n\t10770: 0x00009C3E,\n\t10771: 0x00009C3B,\n\t10772: 0x00009DD3,\n\t10773: 0x00009DD7,\n\t10774: 0x00009F34,\n\t10775: 0x00009F6C,\n\t10776: 0x00009F6A,\n\t10777: 0x00009F94,\n\t10778: 0x000056CC,\n\t10779: 0x00005DD6,\n\t10780: 0x00006200,\n\t10781: 0x00006523,\n\t10782: 0x0000652B,\n\t10783: 0x0000652A,\n\t10784: 0x000066EC,\n\t10785: 0x00006B10,\n\t10786: 0x000074DA,\n\t10787: 0x00007ACA,\n\t10788: 0x00007C64,\n\t10789: 0x00007C63,\n\t10790: 0x00007C65,\n\t10791: 0x00007E93,\n\t10792: 0x00007E96,\n\t10793: 0x00007E94,\n\t10794: 0x000081E2,\n\t10795: 0x00008638,\n\t10796: 0x0000863F,\n\t10797: 0x00008831,\n\t10798: 0x00008B8A,\n\t10799: 0x00009090,\n\t10800: 0x0000908F,\n\t10801: 0x00009463,\n\t10802: 0x00009460,\n\t10803: 0x00009464,\n\t10804: 0x00009768,\n\t10805: 0x0000986F,\n\t10806: 0x0000995C,\n\t10807: 0x00009A5A,\n\t10808: 0x00009A5B,\n\t10809: 0x00009A57,\n\t10810: 0x00009AD3,\n\t10811: 0x00009AD4,\n\t10812: 0x00009AD1,\n\t10813: 0x00009C54,\n\t10814: 0x00009C57,\n\t10815: 0x00009C56,\n\t10816: 0x00009DE5,\n\t10817: 0x00009E9F,\n\t10818: 0x00009EF4,\n\t10819: 0x000056D1,\n\t10820: 0x000058E9,\n\t10821: 0x0000652C,\n\t10822: 0x0000705E,\n\t10823: 0x00007671,\n\t10824: 0x00007672,\n\t10825: 0x000077D7,\n\t10826: 0x00007F50,\n\t10827: 0x00007F88,\n\t10828: 0x00008836,\n\t10829: 0x00008839,\n\t10830: 0x00008862,\n\t10831: 0x00008B93,\n\t10832: 0x00008B92,\n\t10833: 0x00008B96,\n\t10834: 0x00008277,\n\t10835: 0x00008D1B,\n\t10836: 0x000091C0,\n\t10837: 0x0000946A,\n\t10838: 0x00009742,\n\t10839: 0x00009748,\n\t10840: 0x00009744,\n\t10841: 0x000097C6,\n\t10842: 0x00009870,\n\t10843: 0x00009A5F,\n\t10844: 0x00009B22,\n\t10845: 0x00009B58,\n\t10846: 0x00009C5F,\n\t10847: 0x00009DF9,\n\t10848: 0x00009DFA,\n\t10849: 0x00009E7C,\n\t10850: 0x00009E7D,\n\t10851: 0x00009F07,\n\t10852: 0x00009F77,\n\t10853: 0x00009F72,\n\t10854: 0x00005EF3,\n\t10855: 0x00006B16,\n\t10856: 0x00007063,\n\t10857: 0x00007C6C,\n\t10858: 0x00007C6E,\n\t10859: 0x0000883B,\n\t10860: 0x000089C0,\n\t10861: 0x00008EA1,\n\t10862: 0x000091C1,\n\t10863: 0x00009472,\n\t10864: 0x00009470,\n\t10865: 0x00009871,\n\t10866: 0x0000995E,\n\t10867: 0x00009AD6,\n\t10868: 0x00009B23,\n\t10869: 0x00009ECC,\n\t10870: 0x00007064,\n\t10871: 0x000077DA,\n\t10872: 0x00008B9A,\n\t10873: 0x00009477,\n\t10874: 0x000097C9,\n\t10875: 0x00009A62,\n\t10876: 0x00009A65,\n\t10877: 0x00007E9C,\n\t10878: 0x00008B9C,\n\t10879: 0x00008EAA,\n\t10880: 0x000091C5,\n\t10881: 0x0000947D,\n\t10882: 0x0000947E,\n\t10883: 0x0000947C,\n\t10884: 0x00009C77,\n\t10885: 0x00009C78,\n\t10886: 0x00009EF7,\n\t10887: 0x00008C54,\n\t10888: 0x0000947F,\n\t10889: 0x00009E1A,\n\t10890: 0x00007228,\n\t10891: 0x00009A6A,\n\t10892: 0x00009B31,\n\t10893: 0x00009E1B,\n\t10894: 0x00009E1E,\n\t10895: 0x00007C72,\n\t10896: 0x00002460,\n\t10897: 0x00002461,\n\t10898: 0x00002462,\n\t10899: 0x00002463,\n\t10900: 0x00002464,\n\t10901: 0x00002465,\n\t10902: 0x00002466,\n\t10903: 0x00002467,\n\t10904: 0x00002468,\n\t10905: 0x00002469,\n\t10906: 0x00002474,\n\t10907: 0x00002475,\n\t10908: 0x00002476,\n\t10909: 0x00002477,\n\t10910: 0x00002478,\n\t10911: 0x00002479,\n\t10912: 0x0000247A,\n\t10913: 0x0000247B,\n\t10914: 0x0000247C,\n\t10915: 0x0000247D,\n\t10916: 0x00002170,\n\t10917: 0x00002171,\n\t10918: 0x00002172,\n\t10919: 0x00002173,\n\t10920: 0x00002174,\n\t10921: 0x00002175,\n\t10922: 0x00002176,\n\t10923: 0x00002177,\n\t10924: 0x00002178,\n\t10925: 0x00002179,\n\t10926: 0x00004E36,\n\t10927: 0x00004E3F,\n\t10928: 0x00004E85,\n\t10929: 0x00004EA0,\n\t10930: 0x00005182,\n\t10931: 0x00005196,\n\t10932: 0x000051AB,\n\t10933: 0x000052F9,\n\t10934: 0x00005338,\n\t10935: 0x00005369,\n\t10936: 0x000053B6,\n\t10937: 0x0000590A,\n\t10938: 0x00005B80,\n\t10939: 0x00005DDB,\n\t10940: 0x00002F33,\n\t10941: 0x00005E7F,\n\t10942: 0x00005EF4,\n\t10943: 0x00005F50,\n\t10944: 0x00005F61,\n\t10945: 0x00006534,\n\t10946: 0x000065E0,\n\t10947: 0x00007592,\n\t10948: 0x00007676,\n\t10949: 0x00008FB5,\n\t10950: 0x000096B6,\n\t10951: 0x000000A8,\n\t10952: 0x000002C6,\n\t10953: 0x000030FD,\n\t10954: 0x000030FE,\n\t10955: 0x0000309D,\n\t10956: 0x0000309E,\n\t10957: 0x00003003,\n\t10958: 0x00004EDD,\n\t10959: 0x00003005,\n\t10960: 0x00003006,\n\t10961: 0x00003007,\n\t10962: 0x000030FC,\n\t10963: 0x0000FF3B,\n\t10964: 0x0000FF3D,\n\t10965: 0x0000273D,\n\t10966: 0x00003041,\n\t10967: 0x00003042,\n\t10968: 0x00003043,\n\t10969: 0x00003044,\n\t10970: 0x00003045,\n\t10971: 0x00003046,\n\t10972: 0x00003047,\n\t10973: 0x00003048,\n\t10974: 0x00003049,\n\t10975: 0x0000304A,\n\t10976: 0x0000304B,\n\t10977: 0x0000304C,\n\t10978: 0x0000304D,\n\t10979: 0x0000304E,\n\t10980: 0x0000304F,\n\t10981: 0x00003050,\n\t10982: 0x00003051,\n\t10983: 0x00003052,\n\t10984: 0x00003053,\n\t10985: 0x00003054,\n\t10986: 0x00003055,\n\t10987: 0x00003056,\n\t10988: 0x00003057,\n\t10989: 0x00003058,\n\t10990: 0x00003059,\n\t10991: 0x0000305A,\n\t10992: 0x0000305B,\n\t10993: 0x0000305C,\n\t10994: 0x0000305D,\n\t10995: 0x0000305E,\n\t10996: 0x0000305F,\n\t10997: 0x00003060,\n\t10998: 0x00003061,\n\t10999: 0x00003062,\n\t11000: 0x00003063,\n\t11001: 0x00003064,\n\t11002: 0x00003065,\n\t11003: 0x00003066,\n\t11004: 0x00003067,\n\t11005: 0x00003068,\n\t11006: 0x00003069,\n\t11007: 0x0000306A,\n\t11008: 0x0000306B,\n\t11009: 0x0000306C,\n\t11010: 0x0000306D,\n\t11011: 0x0000306E,\n\t11012: 0x0000306F,\n\t11013: 0x00003070,\n\t11014: 0x00003071,\n\t11015: 0x00003072,\n\t11016: 0x00003073,\n\t11017: 0x00003074,\n\t11018: 0x00003075,\n\t11019: 0x00003076,\n\t11020: 0x00003077,\n\t11021: 0x00003078,\n\t11022: 0x00003079,\n\t11023: 0x0000307A,\n\t11024: 0x0000307B,\n\t11025: 0x0000307C,\n\t11026: 0x0000307D,\n\t11027: 0x0000307E,\n\t11028: 0x0000307F,\n\t11029: 0x00003080,\n\t11030: 0x00003081,\n\t11031: 0x00003082,\n\t11032: 0x00003083,\n\t11033: 0x00003084,\n\t11034: 0x00003085,\n\t11035: 0x00003086,\n\t11036: 0x00003087,\n\t11037: 0x00003088,\n\t11038: 0x00003089,\n\t11039: 0x0000308A,\n\t11040: 0x0000308B,\n\t11041: 0x0000308C,\n\t11042: 0x0000308D,\n\t11043: 0x0000308E,\n\t11044: 0x0000308F,\n\t11045: 0x00003090,\n\t11046: 0x00003091,\n\t11047: 0x00003092,\n\t11048: 0x00003093,\n\t11049: 0x000030A1,\n\t11050: 0x000030A2,\n\t11051: 0x000030A3,\n\t11052: 0x000030A4,\n\t11053: 0x000030A5,\n\t11054: 0x000030A6,\n\t11055: 0x000030A7,\n\t11056: 0x000030A8,\n\t11057: 0x000030A9,\n\t11058: 0x000030AA,\n\t11059: 0x000030AB,\n\t11060: 0x000030AC,\n\t11061: 0x000030AD,\n\t11062: 0x000030AE,\n\t11063: 0x000030AF,\n\t11064: 0x000030B0,\n\t11065: 0x000030B1,\n\t11066: 0x000030B2,\n\t11067: 0x000030B3,\n\t11068: 0x000030B4,\n\t11069: 0x000030B5,\n\t11070: 0x000030B6,\n\t11071: 0x000030B7,\n\t11072: 0x000030B8,\n\t11073: 0x000030B9,\n\t11074: 0x000030BA,\n\t11075: 0x000030BB,\n\t11076: 0x000030BC,\n\t11077: 0x000030BD,\n\t11078: 0x000030BE,\n\t11079: 0x000030BF,\n\t11080: 0x000030C0,\n\t11081: 0x000030C1,\n\t11082: 0x000030C2,\n\t11083: 0x000030C3,\n\t11084: 0x000030C4,\n\t11085: 0x000030C5,\n\t11086: 0x000030C6,\n\t11087: 0x000030C7,\n\t11088: 0x000030C8,\n\t11089: 0x000030C9,\n\t11090: 0x000030CA,\n\t11091: 0x000030CB,\n\t11092: 0x000030CC,\n\t11093: 0x000030CD,\n\t11094: 0x000030CE,\n\t11095: 0x000030CF,\n\t11096: 0x000030D0,\n\t11097: 0x000030D1,\n\t11098: 0x000030D2,\n\t11099: 0x000030D3,\n\t11100: 0x000030D4,\n\t11101: 0x000030D5,\n\t11102: 0x000030D6,\n\t11103: 0x000030D7,\n\t11104: 0x000030D8,\n\t11105: 0x000030D9,\n\t11106: 0x000030DA,\n\t11107: 0x000030DB,\n\t11108: 0x000030DC,\n\t11109: 0x000030DD,\n\t11110: 0x000030DE,\n\t11111: 0x000030DF,\n\t11112: 0x000030E0,\n\t11113: 0x000030E1,\n\t11114: 0x000030E2,\n\t11115: 0x000030E3,\n\t11116: 0x000030E4,\n\t11117: 0x000030E5,\n\t11118: 0x000030E6,\n\t11119: 0x000030E7,\n\t11120: 0x000030E8,\n\t11121: 0x000030E9,\n\t11122: 0x000030EA,\n\t11123: 0x000030EB,\n\t11124: 0x000030EC,\n\t11125: 0x000030ED,\n\t11126: 0x000030EE,\n\t11127: 0x000030EF,\n\t11128: 0x000030F0,\n\t11129: 0x000030F1,\n\t11130: 0x000030F2,\n\t11131: 0x000030F3,\n\t11132: 0x000030F4,\n\t11133: 0x000030F5,\n\t11134: 0x000030F6,\n\t11135: 0x00000410,\n\t11136: 0x00000411,\n\t11137: 0x00000412,\n\t11138: 0x00000413,\n\t11139: 0x00000414,\n\t11140: 0x00000415,\n\t11141: 0x00000401,\n\t11142: 0x00000416,\n\t11143: 0x00000417,\n\t11144: 0x00000418,\n\t11145: 0x00000419,\n\t11146: 0x0000041A,\n\t11147: 0x0000041B,\n\t11148: 0x0000041C,\n\t11149: 0x0000041D,\n\t11150: 0x0000041E,\n\t11151: 0x0000041F,\n\t11152: 0x00000420,\n\t11153: 0x00000421,\n\t11154: 0x00000422,\n\t11155: 0x00000423,\n\t11156: 0x00000424,\n\t11157: 0x00000425,\n\t11158: 0x00000426,\n\t11159: 0x00000427,\n\t11160: 0x00000428,\n\t11161: 0x00000429,\n\t11162: 0x0000042A,\n\t11163: 0x0000042B,\n\t11164: 0x0000042C,\n\t11165: 0x0000042D,\n\t11166: 0x0000042E,\n\t11167: 0x0000042F,\n\t11168: 0x00000430,\n\t11169: 0x00000431,\n\t11170: 0x00000432,\n\t11171: 0x00000433,\n\t11172: 0x00000434,\n\t11173: 0x00000435,\n\t11174: 0x00000451,\n\t11175: 0x00000436,\n\t11176: 0x00000437,\n\t11177: 0x00000438,\n\t11178: 0x00000439,\n\t11179: 0x0000043A,\n\t11180: 0x0000043B,\n\t11181: 0x0000043C,\n\t11182: 0x0000043D,\n\t11183: 0x0000043E,\n\t11184: 0x0000043F,\n\t11185: 0x00000440,\n\t11186: 0x00000441,\n\t11187: 0x00000442,\n\t11188: 0x00000443,\n\t11189: 0x00000444,\n\t11190: 0x00000445,\n\t11191: 0x00000446,\n\t11192: 0x00000447,\n\t11193: 0x00000448,\n\t11194: 0x00000449,\n\t11195: 0x0000044A,\n\t11196: 0x0000044B,\n\t11197: 0x0000044C,\n\t11198: 0x0000044D,\n\t11199: 0x0000044E,\n\t11200: 0x0000044F,\n\t11201: 0x000021E7,\n\t11202: 0x000021B8,\n\t11203: 0x000021B9,\n\t11204: 0x000031CF,\n\t11205: 0x000200CC,\n\t11206: 0x00004E5A,\n\t11207: 0x0002008A,\n\t11208: 0x00005202,\n\t11209: 0x00004491,\n\t11210: 0x00009FB0,\n\t11211: 0x00005188,\n\t11212: 0x00009FB1,\n\t11213: 0x00027607,\n\t11254: 0x0000FFE2,\n\t11255: 0x0000FFE4,\n\t11256: 0x0000FF07,\n\t11257: 0x0000FF02,\n\t11258: 0x00003231,\n\t11259: 0x00002116,\n\t11260: 0x00002121,\n\t11261: 0x0000309B,\n\t11262: 0x0000309C,\n\t11263: 0x00002E80,\n\t11264: 0x00002E84,\n\t11265: 0x00002E86,\n\t11266: 0x00002E87,\n\t11267: 0x00002E88,\n\t11268: 0x00002E8A,\n\t11269: 0x00002E8C,\n\t11270: 0x00002E8D,\n\t11271: 0x00002E95,\n\t11272: 0x00002E9C,\n\t11273: 0x00002E9D,\n\t11274: 0x00002EA5,\n\t11275: 0x00002EA7,\n\t11276: 0x00002EAA,\n\t11277: 0x00002EAC,\n\t11278: 0x00002EAE,\n\t11279: 0x00002EB6,\n\t11280: 0x00002EBC,\n\t11281: 0x00002EBE,\n\t11282: 0x00002EC6,\n\t11283: 0x00002ECA,\n\t11284: 0x00002ECC,\n\t11285: 0x00002ECD,\n\t11286: 0x00002ECF,\n\t11287: 0x00002ED6,\n\t11288: 0x00002ED7,\n\t11289: 0x00002EDE,\n\t11290: 0x00002EE3,\n\t11294: 0x00000283,\n\t11295: 0x00000250,\n\t11296: 0x0000025B,\n\t11297: 0x00000254,\n\t11298: 0x00000275,\n\t11299: 0x00000153,\n\t11300: 0x000000F8,\n\t11301: 0x0000014B,\n\t11302: 0x0000028A,\n\t11303: 0x0000026A,\n\t11304: 0x00004E42,\n\t11305: 0x00004E5C,\n\t11306: 0x000051F5,\n\t11307: 0x0000531A,\n\t11308: 0x00005382,\n\t11309: 0x00004E07,\n\t11310: 0x00004E0C,\n\t11311: 0x00004E47,\n\t11312: 0x00004E8D,\n\t11313: 0x000056D7,\n\t11314: 0x0000FA0C,\n\t11315: 0x00005C6E,\n\t11316: 0x00005F73,\n\t11317: 0x00004E0F,\n\t11318: 0x00005187,\n\t11319: 0x00004E0E,\n\t11320: 0x00004E2E,\n\t11321: 0x00004E93,\n\t11322: 0x00004EC2,\n\t11323: 0x00004EC9,\n\t11324: 0x00004EC8,\n\t11325: 0x00005198,\n\t11326: 0x000052FC,\n\t11327: 0x0000536C,\n\t11328: 0x000053B9,\n\t11329: 0x00005720,\n\t11330: 0x00005903,\n\t11331: 0x0000592C,\n\t11332: 0x00005C10,\n\t11333: 0x00005DFF,\n\t11334: 0x000065E1,\n\t11335: 0x00006BB3,\n\t11336: 0x00006BCC,\n\t11337: 0x00006C14,\n\t11338: 0x0000723F,\n\t11339: 0x00004E31,\n\t11340: 0x00004E3C,\n\t11341: 0x00004EE8,\n\t11342: 0x00004EDC,\n\t11343: 0x00004EE9,\n\t11344: 0x00004EE1,\n\t11345: 0x00004EDD,\n\t11346: 0x00004EDA,\n\t11347: 0x0000520C,\n\t11348: 0x0000531C,\n\t11349: 0x0000534C,\n\t11350: 0x00005722,\n\t11351: 0x00005723,\n\t11352: 0x00005917,\n\t11353: 0x0000592F,\n\t11354: 0x00005B81,\n\t11355: 0x00005B84,\n\t11356: 0x00005C12,\n\t11357: 0x00005C3B,\n\t11358: 0x00005C74,\n\t11359: 0x00005C73,\n\t11360: 0x00005E04,\n\t11361: 0x00005E80,\n\t11362: 0x00005E82,\n\t11363: 0x00005FC9,\n\t11364: 0x00006209,\n\t11365: 0x00006250,\n\t11366: 0x00006C15,\n\t11367: 0x00006C36,\n\t11368: 0x00006C43,\n\t11369: 0x00006C3F,\n\t11370: 0x00006C3B,\n\t11371: 0x000072AE,\n\t11372: 0x000072B0,\n\t11373: 0x0000738A,\n\t11374: 0x000079B8,\n\t11375: 0x0000808A,\n\t11376: 0x0000961E,\n\t11377: 0x00004F0E,\n\t11378: 0x00004F18,\n\t11379: 0x00004F2C,\n\t11380: 0x00004EF5,\n\t11381: 0x00004F14,\n\t11382: 0x00004EF1,\n\t11383: 0x00004F00,\n\t11384: 0x00004EF7,\n\t11385: 0x00004F08,\n\t11386: 0x00004F1D,\n\t11387: 0x00004F02,\n\t11388: 0x00004F05,\n\t11389: 0x00004F22,\n\t11390: 0x00004F13,\n\t11391: 0x00004F04,\n\t11392: 0x00004EF4,\n\t11393: 0x00004F12,\n\t11394: 0x000051B1,\n\t11395: 0x00005213,\n\t11396: 0x00005209,\n\t11397: 0x00005210,\n\t11398: 0x000052A6,\n\t11399: 0x00005322,\n\t11400: 0x0000531F,\n\t11401: 0x0000534D,\n\t11402: 0x0000538A,\n\t11403: 0x00005407,\n\t11404: 0x000056E1,\n\t11405: 0x000056DF,\n\t11406: 0x0000572E,\n\t11407: 0x0000572A,\n\t11408: 0x00005734,\n\t11409: 0x0000593C,\n\t11410: 0x00005980,\n\t11411: 0x0000597C,\n\t11412: 0x00005985,\n\t11413: 0x0000597B,\n\t11414: 0x0000597E,\n\t11415: 0x00005977,\n\t11416: 0x0000597F,\n\t11417: 0x00005B56,\n\t11418: 0x00005C15,\n\t11419: 0x00005C25,\n\t11420: 0x00005C7C,\n\t11421: 0x00005C7A,\n\t11422: 0x00005C7B,\n\t11423: 0x00005C7E,\n\t11424: 0x00005DDF,\n\t11425: 0x00005E75,\n\t11426: 0x00005E84,\n\t11427: 0x00005F02,\n\t11428: 0x00005F1A,\n\t11429: 0x00005F74,\n\t11430: 0x00005FD5,\n\t11431: 0x00005FD4,\n\t11432: 0x00005FCF,\n\t11433: 0x0000625C,\n\t11434: 0x0000625E,\n\t11435: 0x00006264,\n\t11436: 0x00006261,\n\t11437: 0x00006266,\n\t11438: 0x00006262,\n\t11439: 0x00006259,\n\t11440: 0x00006260,\n\t11441: 0x0000625A,\n\t11442: 0x00006265,\n\t11443: 0x000065EF,\n\t11444: 0x000065EE,\n\t11445: 0x0000673E,\n\t11446: 0x00006739,\n\t11447: 0x00006738,\n\t11448: 0x0000673B,\n\t11449: 0x0000673A,\n\t11450: 0x0000673F,\n\t11451: 0x0000673C,\n\t11452: 0x00006733,\n\t11453: 0x00006C18,\n\t11454: 0x00006C46,\n\t11455: 0x00006C52,\n\t11456: 0x00006C5C,\n\t11457: 0x00006C4F,\n\t11458: 0x00006C4A,\n\t11459: 0x00006C54,\n\t11460: 0x00006C4B,\n\t11461: 0x00006C4C,\n\t11462: 0x00007071,\n\t11463: 0x0000725E,\n\t11464: 0x000072B4,\n\t11465: 0x000072B5,\n\t11466: 0x0000738E,\n\t11467: 0x0000752A,\n\t11468: 0x0000767F,\n\t11469: 0x00007A75,\n\t11470: 0x00007F51,\n\t11471: 0x00008278,\n\t11472: 0x0000827C,\n\t11473: 0x00008280,\n\t11474: 0x0000827D,\n\t11475: 0x0000827F,\n\t11476: 0x0000864D,\n\t11477: 0x0000897E,\n\t11478: 0x00009099,\n\t11479: 0x00009097,\n\t11480: 0x00009098,\n\t11481: 0x0000909B,\n\t11482: 0x00009094,\n\t11483: 0x00009622,\n\t11484: 0x00009624,\n\t11485: 0x00009620,\n\t11486: 0x00009623,\n\t11487: 0x00004F56,\n\t11488: 0x00004F3B,\n\t11489: 0x00004F62,\n\t11490: 0x00004F49,\n\t11491: 0x00004F53,\n\t11492: 0x00004F64,\n\t11493: 0x00004F3E,\n\t11494: 0x00004F67,\n\t11495: 0x00004F52,\n\t11496: 0x00004F5F,\n\t11497: 0x00004F41,\n\t11498: 0x00004F58,\n\t11499: 0x00004F2D,\n\t11500: 0x00004F33,\n\t11501: 0x00004F3F,\n\t11502: 0x00004F61,\n\t11503: 0x0000518F,\n\t11504: 0x000051B9,\n\t11505: 0x0000521C,\n\t11506: 0x0000521E,\n\t11507: 0x00005221,\n\t11508: 0x000052AD,\n\t11509: 0x000052AE,\n\t11510: 0x00005309,\n\t11511: 0x00005363,\n\t11512: 0x00005372,\n\t11513: 0x0000538E,\n\t11514: 0x0000538F,\n\t11515: 0x00005430,\n\t11516: 0x00005437,\n\t11517: 0x0000542A,\n\t11518: 0x00005454,\n\t11519: 0x00005445,\n\t11520: 0x00005419,\n\t11521: 0x0000541C,\n\t11522: 0x00005425,\n\t11523: 0x00005418,\n\t11524: 0x0000543D,\n\t11525: 0x0000544F,\n\t11526: 0x00005441,\n\t11527: 0x00005428,\n\t11528: 0x00005424,\n\t11529: 0x00005447,\n\t11530: 0x000056EE,\n\t11531: 0x000056E7,\n\t11532: 0x000056E5,\n\t11533: 0x00005741,\n\t11534: 0x00005745,\n\t11535: 0x0000574C,\n\t11536: 0x00005749,\n\t11537: 0x0000574B,\n\t11538: 0x00005752,\n\t11539: 0x00005906,\n\t11540: 0x00005940,\n\t11541: 0x000059A6,\n\t11542: 0x00005998,\n\t11543: 0x000059A0,\n\t11544: 0x00005997,\n\t11545: 0x0000598E,\n\t11546: 0x000059A2,\n\t11547: 0x00005990,\n\t11548: 0x0000598F,\n\t11549: 0x000059A7,\n\t11550: 0x000059A1,\n\t11551: 0x00005B8E,\n\t11552: 0x00005B92,\n\t11553: 0x00005C28,\n\t11554: 0x00005C2A,\n\t11555: 0x00005C8D,\n\t11556: 0x00005C8F,\n\t11557: 0x00005C88,\n\t11558: 0x00005C8B,\n\t11559: 0x00005C89,\n\t11560: 0x00005C92,\n\t11561: 0x00005C8A,\n\t11562: 0x00005C86,\n\t11563: 0x00005C93,\n\t11564: 0x00005C95,\n\t11565: 0x00005DE0,\n\t11566: 0x00005E0A,\n\t11567: 0x00005E0E,\n\t11568: 0x00005E8B,\n\t11569: 0x00005E89,\n\t11570: 0x00005E8C,\n\t11571: 0x00005E88,\n\t11572: 0x00005E8D,\n\t11573: 0x00005F05,\n\t11574: 0x00005F1D,\n\t11575: 0x00005F78,\n\t11576: 0x00005F76,\n\t11577: 0x00005FD2,\n\t11578: 0x00005FD1,\n\t11579: 0x00005FD0,\n\t11580: 0x00005FED,\n\t11581: 0x00005FE8,\n\t11582: 0x00005FEE,\n\t11583: 0x00005FF3,\n\t11584: 0x00005FE1,\n\t11585: 0x00005FE4,\n\t11586: 0x00005FE3,\n\t11587: 0x00005FFA,\n\t11588: 0x00005FEF,\n\t11589: 0x00005FF7,\n\t11590: 0x00005FFB,\n\t11591: 0x00006000,\n\t11592: 0x00005FF4,\n\t11593: 0x0000623A,\n\t11594: 0x00006283,\n\t11595: 0x0000628C,\n\t11596: 0x0000628E,\n\t11597: 0x0000628F,\n\t11598: 0x00006294,\n\t11599: 0x00006287,\n\t11600: 0x00006271,\n\t11601: 0x0000627B,\n\t11602: 0x0000627A,\n\t11603: 0x00006270,\n\t11604: 0x00006281,\n\t11605: 0x00006288,\n\t11606: 0x00006277,\n\t11607: 0x0000627D,\n\t11608: 0x00006272,\n\t11609: 0x00006274,\n\t11610: 0x00006537,\n\t11611: 0x000065F0,\n\t11612: 0x000065F4,\n\t11613: 0x000065F3,\n\t11614: 0x000065F2,\n\t11615: 0x000065F5,\n\t11616: 0x00006745,\n\t11617: 0x00006747,\n\t11618: 0x00006759,\n\t11619: 0x00006755,\n\t11620: 0x0000674C,\n\t11621: 0x00006748,\n\t11622: 0x0000675D,\n\t11623: 0x0000674D,\n\t11624: 0x0000675A,\n\t11625: 0x0000674B,\n\t11626: 0x00006BD0,\n\t11627: 0x00006C19,\n\t11628: 0x00006C1A,\n\t11629: 0x00006C78,\n\t11630: 0x00006C67,\n\t11631: 0x00006C6B,\n\t11632: 0x00006C84,\n\t11633: 0x00006C8B,\n\t11634: 0x00006C8F,\n\t11635: 0x00006C71,\n\t11636: 0x00006C6F,\n\t11637: 0x00006C69,\n\t11638: 0x00006C9A,\n\t11639: 0x00006C6D,\n\t11640: 0x00006C87,\n\t11641: 0x00006C95,\n\t11642: 0x00006C9C,\n\t11643: 0x00006C66,\n\t11644: 0x00006C73,\n\t11645: 0x00006C65,\n\t11646: 0x00006C7B,\n\t11647: 0x00006C8E,\n\t11648: 0x00007074,\n\t11649: 0x0000707A,\n\t11650: 0x00007263,\n\t11651: 0x000072BF,\n\t11652: 0x000072BD,\n\t11653: 0x000072C3,\n\t11654: 0x000072C6,\n\t11655: 0x000072C1,\n\t11656: 0x000072BA,\n\t11657: 0x000072C5,\n\t11658: 0x00007395,\n\t11659: 0x00007397,\n\t11660: 0x00007393,\n\t11661: 0x00007394,\n\t11662: 0x00007392,\n\t11663: 0x0000753A,\n\t11664: 0x00007539,\n\t11665: 0x00007594,\n\t11666: 0x00007595,\n\t11667: 0x00007681,\n\t11668: 0x0000793D,\n\t11669: 0x00008034,\n\t11670: 0x00008095,\n\t11671: 0x00008099,\n\t11672: 0x00008090,\n\t11673: 0x00008092,\n\t11674: 0x0000809C,\n\t11675: 0x00008290,\n\t11676: 0x0000828F,\n\t11677: 0x00008285,\n\t11678: 0x0000828E,\n\t11679: 0x00008291,\n\t11680: 0x00008293,\n\t11681: 0x0000828A,\n\t11682: 0x00008283,\n\t11683: 0x00008284,\n\t11684: 0x00008C78,\n\t11685: 0x00008FC9,\n\t11686: 0x00008FBF,\n\t11687: 0x0000909F,\n\t11688: 0x000090A1,\n\t11689: 0x000090A5,\n\t11690: 0x0000909E,\n\t11691: 0x000090A7,\n\t11692: 0x000090A0,\n\t11693: 0x00009630,\n\t11694: 0x00009628,\n\t11695: 0x0000962F,\n\t11696: 0x0000962D,\n\t11697: 0x00004E33,\n\t11698: 0x00004F98,\n\t11699: 0x00004F7C,\n\t11700: 0x00004F85,\n\t11701: 0x00004F7D,\n\t11702: 0x00004F80,\n\t11703: 0x00004F87,\n\t11704: 0x00004F76,\n\t11705: 0x00004F74,\n\t11706: 0x00004F89,\n\t11707: 0x00004F84,\n\t11708: 0x00004F77,\n\t11709: 0x00004F4C,\n\t11710: 0x00004F97,\n\t11711: 0x00004F6A,\n\t11712: 0x00004F9A,\n\t11713: 0x00004F79,\n\t11714: 0x00004F81,\n\t11715: 0x00004F78,\n\t11716: 0x00004F90,\n\t11717: 0x00004F9C,\n\t11718: 0x00004F94,\n\t11719: 0x00004F9E,\n\t11720: 0x00004F92,\n\t11721: 0x00004F82,\n\t11722: 0x00004F95,\n\t11723: 0x00004F6B,\n\t11724: 0x00004F6E,\n\t11725: 0x0000519E,\n\t11726: 0x000051BC,\n\t11727: 0x000051BE,\n\t11728: 0x00005235,\n\t11729: 0x00005232,\n\t11730: 0x00005233,\n\t11731: 0x00005246,\n\t11732: 0x00005231,\n\t11733: 0x000052BC,\n\t11734: 0x0000530A,\n\t11735: 0x0000530B,\n\t11736: 0x0000533C,\n\t11737: 0x00005392,\n\t11738: 0x00005394,\n\t11739: 0x00005487,\n\t11740: 0x0000547F,\n\t11741: 0x00005481,\n\t11742: 0x00005491,\n\t11743: 0x00005482,\n\t11744: 0x00005488,\n\t11745: 0x0000546B,\n\t11746: 0x0000547A,\n\t11747: 0x0000547E,\n\t11748: 0x00005465,\n\t11749: 0x0000546C,\n\t11750: 0x00005474,\n\t11751: 0x00005466,\n\t11752: 0x0000548D,\n\t11753: 0x0000546F,\n\t11754: 0x00005461,\n\t11755: 0x00005460,\n\t11756: 0x00005498,\n\t11757: 0x00005463,\n\t11758: 0x00005467,\n\t11759: 0x00005464,\n\t11760: 0x000056F7,\n\t11761: 0x000056F9,\n\t11762: 0x0000576F,\n\t11763: 0x00005772,\n\t11764: 0x0000576D,\n\t11765: 0x0000576B,\n\t11766: 0x00005771,\n\t11767: 0x00005770,\n\t11768: 0x00005776,\n\t11769: 0x00005780,\n\t11770: 0x00005775,\n\t11771: 0x0000577B,\n\t11772: 0x00005773,\n\t11773: 0x00005774,\n\t11774: 0x00005762,\n\t11775: 0x00005768,\n\t11776: 0x0000577D,\n\t11777: 0x0000590C,\n\t11778: 0x00005945,\n\t11779: 0x000059B5,\n\t11780: 0x000059BA,\n\t11781: 0x000059CF,\n\t11782: 0x000059CE,\n\t11783: 0x000059B2,\n\t11784: 0x000059CC,\n\t11785: 0x000059C1,\n\t11786: 0x000059B6,\n\t11787: 0x000059BC,\n\t11788: 0x000059C3,\n\t11789: 0x000059D6,\n\t11790: 0x000059B1,\n\t11791: 0x000059BD,\n\t11792: 0x000059C0,\n\t11793: 0x000059C8,\n\t11794: 0x000059B4,\n\t11795: 0x000059C7,\n\t11796: 0x00005B62,\n\t11797: 0x00005B65,\n\t11798: 0x00005B93,\n\t11799: 0x00005B95,\n\t11800: 0x00005C44,\n\t11801: 0x00005C47,\n\t11802: 0x00005CAE,\n\t11803: 0x00005CA4,\n\t11804: 0x00005CA0,\n\t11805: 0x00005CB5,\n\t11806: 0x00005CAF,\n\t11807: 0x00005CA8,\n\t11808: 0x00005CAC,\n\t11809: 0x00005C9F,\n\t11810: 0x00005CA3,\n\t11811: 0x00005CAD,\n\t11812: 0x00005CA2,\n\t11813: 0x00005CAA,\n\t11814: 0x00005CA7,\n\t11815: 0x00005C9D,\n\t11816: 0x00005CA5,\n\t11817: 0x00005CB6,\n\t11818: 0x00005CB0,\n\t11819: 0x00005CA6,\n\t11820: 0x00005E17,\n\t11821: 0x00005E14,\n\t11822: 0x00005E19,\n\t11823: 0x00005F28,\n\t11824: 0x00005F22,\n\t11825: 0x00005F23,\n\t11826: 0x00005F24,\n\t11827: 0x00005F54,\n\t11828: 0x00005F82,\n\t11829: 0x00005F7E,\n\t11830: 0x00005F7D,\n\t11831: 0x00005FDE,\n\t11832: 0x00005FE5,\n\t11833: 0x0000602D,\n\t11834: 0x00006026,\n\t11835: 0x00006019,\n\t11836: 0x00006032,\n\t11837: 0x0000600B,\n\t11838: 0x00006034,\n\t11839: 0x0000600A,\n\t11840: 0x00006017,\n\t11841: 0x00006033,\n\t11842: 0x0000601A,\n\t11843: 0x0000601E,\n\t11844: 0x0000602C,\n\t11845: 0x00006022,\n\t11846: 0x0000600D,\n\t11847: 0x00006010,\n\t11848: 0x0000602E,\n\t11849: 0x00006013,\n\t11850: 0x00006011,\n\t11851: 0x0000600C,\n\t11852: 0x00006009,\n\t11853: 0x0000601C,\n\t11854: 0x00006214,\n\t11855: 0x0000623D,\n\t11856: 0x000062AD,\n\t11857: 0x000062B4,\n\t11858: 0x000062D1,\n\t11859: 0x000062BE,\n\t11860: 0x000062AA,\n\t11861: 0x000062B6,\n\t11862: 0x000062CA,\n\t11863: 0x000062AE,\n\t11864: 0x000062B3,\n\t11865: 0x000062AF,\n\t11866: 0x000062BB,\n\t11867: 0x000062A9,\n\t11868: 0x000062B0,\n\t11869: 0x000062B8,\n\t11870: 0x0000653D,\n\t11871: 0x000065A8,\n\t11872: 0x000065BB,\n\t11873: 0x00006609,\n\t11874: 0x000065FC,\n\t11875: 0x00006604,\n\t11876: 0x00006612,\n\t11877: 0x00006608,\n\t11878: 0x000065FB,\n\t11879: 0x00006603,\n\t11880: 0x0000660B,\n\t11881: 0x0000660D,\n\t11882: 0x00006605,\n\t11883: 0x000065FD,\n\t11884: 0x00006611,\n\t11885: 0x00006610,\n\t11886: 0x000066F6,\n\t11887: 0x0000670A,\n\t11888: 0x00006785,\n\t11889: 0x0000676C,\n\t11890: 0x0000678E,\n\t11891: 0x00006792,\n\t11892: 0x00006776,\n\t11893: 0x0000677B,\n\t11894: 0x00006798,\n\t11895: 0x00006786,\n\t11896: 0x00006784,\n\t11897: 0x00006774,\n\t11898: 0x0000678D,\n\t11899: 0x0000678C,\n\t11900: 0x0000677A,\n\t11901: 0x0000679F,\n\t11902: 0x00006791,\n\t11903: 0x00006799,\n\t11904: 0x00006783,\n\t11905: 0x0000677D,\n\t11906: 0x00006781,\n\t11907: 0x00006778,\n\t11908: 0x00006779,\n\t11909: 0x00006794,\n\t11910: 0x00006B25,\n\t11911: 0x00006B80,\n\t11912: 0x00006B7E,\n\t11913: 0x00006BDE,\n\t11914: 0x00006C1D,\n\t11915: 0x00006C93,\n\t11916: 0x00006CEC,\n\t11917: 0x00006CEB,\n\t11918: 0x00006CEE,\n\t11919: 0x00006CD9,\n\t11920: 0x00006CB6,\n\t11921: 0x00006CD4,\n\t11922: 0x00006CAD,\n\t11923: 0x00006CE7,\n\t11924: 0x00006CB7,\n\t11925: 0x00006CD0,\n\t11926: 0x00006CC2,\n\t11927: 0x00006CBA,\n\t11928: 0x00006CC3,\n\t11929: 0x00006CC6,\n\t11930: 0x00006CED,\n\t11931: 0x00006CF2,\n\t11932: 0x00006CD2,\n\t11933: 0x00006CDD,\n\t11934: 0x00006CB4,\n\t11935: 0x00006C8A,\n\t11936: 0x00006C9D,\n\t11937: 0x00006C80,\n\t11938: 0x00006CDE,\n\t11939: 0x00006CC0,\n\t11940: 0x00006D30,\n\t11941: 0x00006CCD,\n\t11942: 0x00006CC7,\n\t11943: 0x00006CB0,\n\t11944: 0x00006CF9,\n\t11945: 0x00006CCF,\n\t11946: 0x00006CE9,\n\t11947: 0x00006CD1,\n\t11948: 0x00007094,\n\t11949: 0x00007098,\n\t11950: 0x00007085,\n\t11951: 0x00007093,\n\t11952: 0x00007086,\n\t11953: 0x00007084,\n\t11954: 0x00007091,\n\t11955: 0x00007096,\n\t11956: 0x00007082,\n\t11957: 0x0000709A,\n\t11958: 0x00007083,\n\t11959: 0x0000726A,\n\t11960: 0x000072D6,\n\t11961: 0x000072CB,\n\t11962: 0x000072D8,\n\t11963: 0x000072C9,\n\t11964: 0x000072DC,\n\t11965: 0x000072D2,\n\t11966: 0x000072D4,\n\t11967: 0x000072DA,\n\t11968: 0x000072CC,\n\t11969: 0x000072D1,\n\t11970: 0x000073A4,\n\t11971: 0x000073A1,\n\t11972: 0x000073AD,\n\t11973: 0x000073A6,\n\t11974: 0x000073A2,\n\t11975: 0x000073A0,\n\t11976: 0x000073AC,\n\t11977: 0x0000739D,\n\t11978: 0x000074DD,\n\t11979: 0x000074E8,\n\t11980: 0x0000753F,\n\t11981: 0x00007540,\n\t11982: 0x0000753E,\n\t11983: 0x0000758C,\n\t11984: 0x00007598,\n\t11985: 0x000076AF,\n\t11986: 0x000076F3,\n\t11987: 0x000076F1,\n\t11988: 0x000076F0,\n\t11989: 0x000076F5,\n\t11990: 0x000077F8,\n\t11991: 0x000077FC,\n\t11992: 0x000077F9,\n\t11993: 0x000077FB,\n\t11994: 0x000077FA,\n\t11995: 0x000077F7,\n\t11996: 0x00007942,\n\t11997: 0x0000793F,\n\t11998: 0x000079C5,\n\t11999: 0x00007A78,\n\t12000: 0x00007A7B,\n\t12001: 0x00007AFB,\n\t12002: 0x00007C75,\n\t12003: 0x00007CFD,\n\t12004: 0x00008035,\n\t12005: 0x0000808F,\n\t12006: 0x000080AE,\n\t12007: 0x000080A3,\n\t12008: 0x000080B8,\n\t12009: 0x000080B5,\n\t12010: 0x000080AD,\n\t12011: 0x00008220,\n\t12012: 0x000082A0,\n\t12013: 0x000082C0,\n\t12014: 0x000082AB,\n\t12015: 0x0000829A,\n\t12016: 0x00008298,\n\t12017: 0x0000829B,\n\t12018: 0x000082B5,\n\t12019: 0x000082A7,\n\t12020: 0x000082AE,\n\t12021: 0x000082BC,\n\t12022: 0x0000829E,\n\t12023: 0x000082BA,\n\t12024: 0x000082B4,\n\t12025: 0x000082A8,\n\t12026: 0x000082A1,\n\t12027: 0x000082A9,\n\t12028: 0x000082C2,\n\t12029: 0x000082A4,\n\t12030: 0x000082C3,\n\t12031: 0x000082B6,\n\t12032: 0x000082A2,\n\t12033: 0x00008670,\n\t12034: 0x0000866F,\n\t12035: 0x0000866D,\n\t12036: 0x0000866E,\n\t12037: 0x00008C56,\n\t12038: 0x00008FD2,\n\t12039: 0x00008FCB,\n\t12040: 0x00008FD3,\n\t12041: 0x00008FCD,\n\t12042: 0x00008FD6,\n\t12043: 0x00008FD5,\n\t12044: 0x00008FD7,\n\t12045: 0x000090B2,\n\t12046: 0x000090B4,\n\t12047: 0x000090AF,\n\t12048: 0x000090B3,\n\t12049: 0x000090B0,\n\t12050: 0x00009639,\n\t12051: 0x0000963D,\n\t12052: 0x0000963C,\n\t12053: 0x0000963A,\n\t12054: 0x00009643,\n\t12055: 0x00004FCD,\n\t12056: 0x00004FC5,\n\t12057: 0x00004FD3,\n\t12058: 0x00004FB2,\n\t12059: 0x00004FC9,\n\t12060: 0x00004FCB,\n\t12061: 0x00004FC1,\n\t12062: 0x00004FD4,\n\t12063: 0x00004FDC,\n\t12064: 0x00004FD9,\n\t12065: 0x00004FBB,\n\t12066: 0x00004FB3,\n\t12067: 0x00004FDB,\n\t12068: 0x00004FC7,\n\t12069: 0x00004FD6,\n\t12070: 0x00004FBA,\n\t12071: 0x00004FC0,\n\t12072: 0x00004FB9,\n\t12073: 0x00004FEC,\n\t12074: 0x00005244,\n\t12075: 0x00005249,\n\t12076: 0x000052C0,\n\t12077: 0x000052C2,\n\t12078: 0x0000533D,\n\t12079: 0x0000537C,\n\t12080: 0x00005397,\n\t12081: 0x00005396,\n\t12082: 0x00005399,\n\t12083: 0x00005398,\n\t12084: 0x000054BA,\n\t12085: 0x000054A1,\n\t12086: 0x000054AD,\n\t12087: 0x000054A5,\n\t12088: 0x000054CF,\n\t12089: 0x000054C3,\n\t12090: 0x0000830D,\n\t12091: 0x000054B7,\n\t12092: 0x000054AE,\n\t12093: 0x000054D6,\n\t12094: 0x000054B6,\n\t12095: 0x000054C5,\n\t12096: 0x000054C6,\n\t12097: 0x000054A0,\n\t12098: 0x00005470,\n\t12099: 0x000054BC,\n\t12100: 0x000054A2,\n\t12101: 0x000054BE,\n\t12102: 0x00005472,\n\t12103: 0x000054DE,\n\t12104: 0x000054B0,\n\t12105: 0x000057B5,\n\t12106: 0x0000579E,\n\t12107: 0x0000579F,\n\t12108: 0x000057A4,\n\t12109: 0x0000578C,\n\t12110: 0x00005797,\n\t12111: 0x0000579D,\n\t12112: 0x0000579B,\n\t12113: 0x00005794,\n\t12114: 0x00005798,\n\t12115: 0x0000578F,\n\t12116: 0x00005799,\n\t12117: 0x000057A5,\n\t12118: 0x0000579A,\n\t12119: 0x00005795,\n\t12120: 0x000058F4,\n\t12121: 0x0000590D,\n\t12122: 0x00005953,\n\t12123: 0x000059E1,\n\t12124: 0x000059DE,\n\t12125: 0x000059EE,\n\t12126: 0x00005A00,\n\t12127: 0x000059F1,\n\t12128: 0x000059DD,\n\t12129: 0x000059FA,\n\t12130: 0x000059FD,\n\t12131: 0x000059FC,\n\t12132: 0x000059F6,\n\t12133: 0x000059E4,\n\t12134: 0x000059F2,\n\t12135: 0x000059F7,\n\t12136: 0x000059DB,\n\t12137: 0x000059E9,\n\t12138: 0x000059F3,\n\t12139: 0x000059F5,\n\t12140: 0x000059E0,\n\t12141: 0x000059FE,\n\t12142: 0x000059F4,\n\t12143: 0x000059ED,\n\t12144: 0x00005BA8,\n\t12145: 0x00005C4C,\n\t12146: 0x00005CD0,\n\t12147: 0x00005CD8,\n\t12148: 0x00005CCC,\n\t12149: 0x00005CD7,\n\t12150: 0x00005CCB,\n\t12151: 0x00005CDB,\n\t12152: 0x00005CDE,\n\t12153: 0x00005CDA,\n\t12154: 0x00005CC9,\n\t12155: 0x00005CC7,\n\t12156: 0x00005CCA,\n\t12157: 0x00005CD6,\n\t12158: 0x00005CD3,\n\t12159: 0x00005CD4,\n\t12160: 0x00005CCF,\n\t12161: 0x00005CC8,\n\t12162: 0x00005CC6,\n\t12163: 0x00005CCE,\n\t12164: 0x00005CDF,\n\t12165: 0x00005CF8,\n\t12166: 0x00005DF9,\n\t12167: 0x00005E21,\n\t12168: 0x00005E22,\n\t12169: 0x00005E23,\n\t12170: 0x00005E20,\n\t12171: 0x00005E24,\n\t12172: 0x00005EB0,\n\t12173: 0x00005EA4,\n\t12174: 0x00005EA2,\n\t12175: 0x00005E9B,\n\t12176: 0x00005EA3,\n\t12177: 0x00005EA5,\n\t12178: 0x00005F07,\n\t12179: 0x00005F2E,\n\t12180: 0x00005F56,\n\t12181: 0x00005F86,\n\t12182: 0x00006037,\n\t12183: 0x00006039,\n\t12184: 0x00006054,\n\t12185: 0x00006072,\n\t12186: 0x0000605E,\n\t12187: 0x00006045,\n\t12188: 0x00006053,\n\t12189: 0x00006047,\n\t12190: 0x00006049,\n\t12191: 0x0000605B,\n\t12192: 0x0000604C,\n\t12193: 0x00006040,\n\t12194: 0x00006042,\n\t12195: 0x0000605F,\n\t12196: 0x00006024,\n\t12197: 0x00006044,\n\t12198: 0x00006058,\n\t12199: 0x00006066,\n\t12200: 0x0000606E,\n\t12201: 0x00006242,\n\t12202: 0x00006243,\n\t12203: 0x000062CF,\n\t12204: 0x0000630D,\n\t12205: 0x0000630B,\n\t12206: 0x000062F5,\n\t12207: 0x0000630E,\n\t12208: 0x00006303,\n\t12209: 0x000062EB,\n\t12210: 0x000062F9,\n\t12211: 0x0000630F,\n\t12212: 0x0000630C,\n\t12213: 0x000062F8,\n\t12214: 0x000062F6,\n\t12215: 0x00006300,\n\t12216: 0x00006313,\n\t12217: 0x00006314,\n\t12218: 0x000062FA,\n\t12219: 0x00006315,\n\t12220: 0x000062FB,\n\t12221: 0x000062F0,\n\t12222: 0x00006541,\n\t12223: 0x00006543,\n\t12224: 0x000065AA,\n\t12225: 0x000065BF,\n\t12226: 0x00006636,\n\t12227: 0x00006621,\n\t12228: 0x00006632,\n\t12229: 0x00006635,\n\t12230: 0x0000661C,\n\t12231: 0x00006626,\n\t12232: 0x00006622,\n\t12233: 0x00006633,\n\t12234: 0x0000662B,\n\t12235: 0x0000663A,\n\t12236: 0x0000661D,\n\t12237: 0x00006634,\n\t12238: 0x00006639,\n\t12239: 0x0000662E,\n\t12240: 0x0000670F,\n\t12241: 0x00006710,\n\t12242: 0x000067C1,\n\t12243: 0x000067F2,\n\t12244: 0x000067C8,\n\t12245: 0x000067BA,\n\t12246: 0x000067DC,\n\t12247: 0x000067BB,\n\t12248: 0x000067F8,\n\t12249: 0x000067D8,\n\t12250: 0x000067C0,\n\t12251: 0x000067B7,\n\t12252: 0x000067C5,\n\t12253: 0x000067EB,\n\t12254: 0x000067E4,\n\t12255: 0x000067DF,\n\t12256: 0x000067B5,\n\t12257: 0x000067CD,\n\t12258: 0x000067B3,\n\t12259: 0x000067F7,\n\t12260: 0x000067F6,\n\t12261: 0x000067EE,\n\t12262: 0x000067E3,\n\t12263: 0x000067C2,\n\t12264: 0x000067B9,\n\t12265: 0x000067CE,\n\t12266: 0x000067E7,\n\t12267: 0x000067F0,\n\t12268: 0x000067B2,\n\t12269: 0x000067FC,\n\t12270: 0x000067C6,\n\t12271: 0x000067ED,\n\t12272: 0x000067CC,\n\t12273: 0x000067AE,\n\t12274: 0x000067E6,\n\t12275: 0x000067DB,\n\t12276: 0x000067FA,\n\t12277: 0x000067C9,\n\t12278: 0x000067CA,\n\t12279: 0x000067C3,\n\t12280: 0x000067EA,\n\t12281: 0x000067CB,\n\t12282: 0x00006B28,\n\t12283: 0x00006B82,\n\t12284: 0x00006B84,\n\t12285: 0x00006BB6,\n\t12286: 0x00006BD6,\n\t12287: 0x00006BD8,\n\t12288: 0x00006BE0,\n\t12289: 0x00006C20,\n\t12290: 0x00006C21,\n\t12291: 0x00006D28,\n\t12292: 0x00006D34,\n\t12293: 0x00006D2D,\n\t12294: 0x00006D1F,\n\t12295: 0x00006D3C,\n\t12296: 0x00006D3F,\n\t12297: 0x00006D12,\n\t12298: 0x00006D0A,\n\t12299: 0x00006CDA,\n\t12300: 0x00006D33,\n\t12301: 0x00006D04,\n\t12302: 0x00006D19,\n\t12303: 0x00006D3A,\n\t12304: 0x00006D1A,\n\t12305: 0x00006D11,\n\t12306: 0x00006D00,\n\t12307: 0x00006D1D,\n\t12308: 0x00006D42,\n\t12309: 0x00006D01,\n\t12310: 0x00006D18,\n\t12311: 0x00006D37,\n\t12312: 0x00006D03,\n\t12313: 0x00006D0F,\n\t12314: 0x00006D40,\n\t12315: 0x00006D07,\n\t12316: 0x00006D20,\n\t12317: 0x00006D2C,\n\t12318: 0x00006D08,\n\t12319: 0x00006D22,\n\t12320: 0x00006D09,\n\t12321: 0x00006D10,\n\t12322: 0x000070B7,\n\t12323: 0x0000709F,\n\t12324: 0x000070BE,\n\t12325: 0x000070B1,\n\t12326: 0x000070B0,\n\t12327: 0x000070A1,\n\t12328: 0x000070B4,\n\t12329: 0x000070B5,\n\t12330: 0x000070A9,\n\t12331: 0x00007241,\n\t12332: 0x00007249,\n\t12333: 0x0000724A,\n\t12334: 0x0000726C,\n\t12335: 0x00007270,\n\t12336: 0x00007273,\n\t12337: 0x0000726E,\n\t12338: 0x000072CA,\n\t12339: 0x000072E4,\n\t12340: 0x000072E8,\n\t12341: 0x000072EB,\n\t12342: 0x000072DF,\n\t12343: 0x000072EA,\n\t12344: 0x000072E6,\n\t12345: 0x000072E3,\n\t12346: 0x00007385,\n\t12347: 0x000073CC,\n\t12348: 0x000073C2,\n\t12349: 0x000073C8,\n\t12350: 0x000073C5,\n\t12351: 0x000073B9,\n\t12352: 0x000073B6,\n\t12353: 0x000073B5,\n\t12354: 0x000073B4,\n\t12355: 0x000073EB,\n\t12356: 0x000073BF,\n\t12357: 0x000073C7,\n\t12358: 0x000073BE,\n\t12359: 0x000073C3,\n\t12360: 0x000073C6,\n\t12361: 0x000073B8,\n\t12362: 0x000073CB,\n\t12363: 0x000074EC,\n\t12364: 0x000074EE,\n\t12365: 0x0000752E,\n\t12366: 0x00007547,\n\t12367: 0x00007548,\n\t12368: 0x000075A7,\n\t12369: 0x000075AA,\n\t12370: 0x00007679,\n\t12371: 0x000076C4,\n\t12372: 0x00007708,\n\t12373: 0x00007703,\n\t12374: 0x00007704,\n\t12375: 0x00007705,\n\t12376: 0x0000770A,\n\t12377: 0x000076F7,\n\t12378: 0x000076FB,\n\t12379: 0x000076FA,\n\t12380: 0x000077E7,\n\t12381: 0x000077E8,\n\t12382: 0x00007806,\n\t12383: 0x00007811,\n\t12384: 0x00007812,\n\t12385: 0x00007805,\n\t12386: 0x00007810,\n\t12387: 0x0000780F,\n\t12388: 0x0000780E,\n\t12389: 0x00007809,\n\t12390: 0x00007803,\n\t12391: 0x00007813,\n\t12392: 0x0000794A,\n\t12393: 0x0000794C,\n\t12394: 0x0000794B,\n\t12395: 0x00007945,\n\t12396: 0x00007944,\n\t12397: 0x000079D5,\n\t12398: 0x000079CD,\n\t12399: 0x000079CF,\n\t12400: 0x000079D6,\n\t12401: 0x000079CE,\n\t12402: 0x00007A80,\n\t12403: 0x00007A7E,\n\t12404: 0x00007AD1,\n\t12405: 0x00007B00,\n\t12406: 0x00007B01,\n\t12407: 0x00007C7A,\n\t12408: 0x00007C78,\n\t12409: 0x00007C79,\n\t12410: 0x00007C7F,\n\t12411: 0x00007C80,\n\t12412: 0x00007C81,\n\t12413: 0x00007D03,\n\t12414: 0x00007D08,\n\t12415: 0x00007D01,\n\t12416: 0x00007F58,\n\t12417: 0x00007F91,\n\t12418: 0x00007F8D,\n\t12419: 0x00007FBE,\n\t12420: 0x00008007,\n\t12421: 0x0000800E,\n\t12422: 0x0000800F,\n\t12423: 0x00008014,\n\t12424: 0x00008037,\n\t12425: 0x000080D8,\n\t12426: 0x000080C7,\n\t12427: 0x000080E0,\n\t12428: 0x000080D1,\n\t12429: 0x000080C8,\n\t12430: 0x000080C2,\n\t12431: 0x000080D0,\n\t12432: 0x000080C5,\n\t12433: 0x000080E3,\n\t12434: 0x000080D9,\n\t12435: 0x000080DC,\n\t12436: 0x000080CA,\n\t12437: 0x000080D5,\n\t12438: 0x000080C9,\n\t12439: 0x000080CF,\n\t12440: 0x000080D7,\n\t12441: 0x000080E6,\n\t12442: 0x000080CD,\n\t12443: 0x000081FF,\n\t12444: 0x00008221,\n\t12445: 0x00008294,\n\t12446: 0x000082D9,\n\t12447: 0x000082FE,\n\t12448: 0x000082F9,\n\t12449: 0x00008307,\n\t12450: 0x000082E8,\n\t12451: 0x00008300,\n\t12452: 0x000082D5,\n\t12453: 0x0000833A,\n\t12454: 0x000082EB,\n\t12455: 0x000082D6,\n\t12456: 0x000082F4,\n\t12457: 0x000082EC,\n\t12458: 0x000082E1,\n\t12459: 0x000082F2,\n\t12460: 0x000082F5,\n\t12461: 0x0000830C,\n\t12462: 0x000082FB,\n\t12463: 0x000082F6,\n\t12464: 0x000082F0,\n\t12465: 0x000082EA,\n\t12466: 0x000082E4,\n\t12467: 0x000082E0,\n\t12468: 0x000082FA,\n\t12469: 0x000082F3,\n\t12470: 0x000082ED,\n\t12471: 0x00008677,\n\t12472: 0x00008674,\n\t12473: 0x0000867C,\n\t12474: 0x00008673,\n\t12475: 0x00008841,\n\t12476: 0x0000884E,\n\t12477: 0x00008867,\n\t12478: 0x0000886A,\n\t12479: 0x00008869,\n\t12480: 0x000089D3,\n\t12481: 0x00008A04,\n\t12482: 0x00008A07,\n\t12483: 0x00008D72,\n\t12484: 0x00008FE3,\n\t12485: 0x00008FE1,\n\t12486: 0x00008FEE,\n\t12487: 0x00008FE0,\n\t12488: 0x000090F1,\n\t12489: 0x000090BD,\n\t12490: 0x000090BF,\n\t12491: 0x000090D5,\n\t12492: 0x000090C5,\n\t12493: 0x000090BE,\n\t12494: 0x000090C7,\n\t12495: 0x000090CB,\n\t12496: 0x000090C8,\n\t12497: 0x000091D4,\n\t12498: 0x000091D3,\n\t12499: 0x00009654,\n\t12500: 0x0000964F,\n\t12501: 0x00009651,\n\t12502: 0x00009653,\n\t12503: 0x0000964A,\n\t12504: 0x0000964E,\n\t12505: 0x0000501E,\n\t12506: 0x00005005,\n\t12507: 0x00005007,\n\t12508: 0x00005013,\n\t12509: 0x00005022,\n\t12510: 0x00005030,\n\t12511: 0x0000501B,\n\t12512: 0x00004FF5,\n\t12513: 0x00004FF4,\n\t12514: 0x00005033,\n\t12515: 0x00005037,\n\t12516: 0x0000502C,\n\t12517: 0x00004FF6,\n\t12518: 0x00004FF7,\n\t12519: 0x00005017,\n\t12520: 0x0000501C,\n\t12521: 0x00005020,\n\t12522: 0x00005027,\n\t12523: 0x00005035,\n\t12524: 0x0000502F,\n\t12525: 0x00005031,\n\t12526: 0x0000500E,\n\t12527: 0x0000515A,\n\t12528: 0x00005194,\n\t12529: 0x00005193,\n\t12530: 0x000051CA,\n\t12531: 0x000051C4,\n\t12532: 0x000051C5,\n\t12533: 0x000051C8,\n\t12534: 0x000051CE,\n\t12535: 0x00005261,\n\t12536: 0x0000525A,\n\t12537: 0x00005252,\n\t12538: 0x0000525E,\n\t12539: 0x0000525F,\n\t12540: 0x00005255,\n\t12541: 0x00005262,\n\t12542: 0x000052CD,\n\t12543: 0x0000530E,\n\t12544: 0x0000539E,\n\t12545: 0x00005526,\n\t12546: 0x000054E2,\n\t12547: 0x00005517,\n\t12548: 0x00005512,\n\t12549: 0x000054E7,\n\t12550: 0x000054F3,\n\t12551: 0x000054E4,\n\t12552: 0x0000551A,\n\t12553: 0x000054FF,\n\t12554: 0x00005504,\n\t12555: 0x00005508,\n\t12556: 0x000054EB,\n\t12557: 0x00005511,\n\t12558: 0x00005505,\n\t12559: 0x000054F1,\n\t12560: 0x0000550A,\n\t12561: 0x000054FB,\n\t12562: 0x000054F7,\n\t12563: 0x000054F8,\n\t12564: 0x000054E0,\n\t12565: 0x0000550E,\n\t12566: 0x00005503,\n\t12567: 0x0000550B,\n\t12568: 0x00005701,\n\t12569: 0x00005702,\n\t12570: 0x000057CC,\n\t12571: 0x00005832,\n\t12572: 0x000057D5,\n\t12573: 0x000057D2,\n\t12574: 0x000057BA,\n\t12575: 0x000057C6,\n\t12576: 0x000057BD,\n\t12577: 0x000057BC,\n\t12578: 0x000057B8,\n\t12579: 0x000057B6,\n\t12580: 0x000057BF,\n\t12581: 0x000057C7,\n\t12582: 0x000057D0,\n\t12583: 0x000057B9,\n\t12584: 0x000057C1,\n\t12585: 0x0000590E,\n\t12586: 0x0000594A,\n\t12587: 0x00005A19,\n\t12588: 0x00005A16,\n\t12589: 0x00005A2D,\n\t12590: 0x00005A2E,\n\t12591: 0x00005A15,\n\t12592: 0x00005A0F,\n\t12593: 0x00005A17,\n\t12594: 0x00005A0A,\n\t12595: 0x00005A1E,\n\t12596: 0x00005A33,\n\t12597: 0x00005B6C,\n\t12598: 0x00005BA7,\n\t12599: 0x00005BAD,\n\t12600: 0x00005BAC,\n\t12601: 0x00005C03,\n\t12602: 0x00005C56,\n\t12603: 0x00005C54,\n\t12604: 0x00005CEC,\n\t12605: 0x00005CFF,\n\t12606: 0x00005CEE,\n\t12607: 0x00005CF1,\n\t12608: 0x00005CF7,\n\t12609: 0x00005D00,\n\t12610: 0x00005CF9,\n\t12611: 0x00005E29,\n\t12612: 0x00005E28,\n\t12613: 0x00005EA8,\n\t12614: 0x00005EAE,\n\t12615: 0x00005EAA,\n\t12616: 0x00005EAC,\n\t12617: 0x00005F33,\n\t12618: 0x00005F30,\n\t12619: 0x00005F67,\n\t12620: 0x0000605D,\n\t12621: 0x0000605A,\n\t12622: 0x00006067,\n\t12623: 0x00006041,\n\t12624: 0x000060A2,\n\t12625: 0x00006088,\n\t12626: 0x00006080,\n\t12627: 0x00006092,\n\t12628: 0x00006081,\n\t12629: 0x0000609D,\n\t12630: 0x00006083,\n\t12631: 0x00006095,\n\t12632: 0x0000609B,\n\t12633: 0x00006097,\n\t12634: 0x00006087,\n\t12635: 0x0000609C,\n\t12636: 0x0000608E,\n\t12637: 0x00006219,\n\t12638: 0x00006246,\n\t12639: 0x000062F2,\n\t12640: 0x00006310,\n\t12641: 0x00006356,\n\t12642: 0x0000632C,\n\t12643: 0x00006344,\n\t12644: 0x00006345,\n\t12645: 0x00006336,\n\t12646: 0x00006343,\n\t12647: 0x000063E4,\n\t12648: 0x00006339,\n\t12649: 0x0000634B,\n\t12650: 0x0000634A,\n\t12651: 0x0000633C,\n\t12652: 0x00006329,\n\t12653: 0x00006341,\n\t12654: 0x00006334,\n\t12655: 0x00006358,\n\t12656: 0x00006354,\n\t12657: 0x00006359,\n\t12658: 0x0000632D,\n\t12659: 0x00006347,\n\t12660: 0x00006333,\n\t12661: 0x0000635A,\n\t12662: 0x00006351,\n\t12663: 0x00006338,\n\t12664: 0x00006357,\n\t12665: 0x00006340,\n\t12666: 0x00006348,\n\t12667: 0x0000654A,\n\t12668: 0x00006546,\n\t12669: 0x000065C6,\n\t12670: 0x000065C3,\n\t12671: 0x000065C4,\n\t12672: 0x000065C2,\n\t12673: 0x0000664A,\n\t12674: 0x0000665F,\n\t12675: 0x00006647,\n\t12676: 0x00006651,\n\t12677: 0x00006712,\n\t12678: 0x00006713,\n\t12679: 0x0000681F,\n\t12680: 0x0000681A,\n\t12681: 0x00006849,\n\t12682: 0x00006832,\n\t12683: 0x00006833,\n\t12684: 0x0000683B,\n\t12685: 0x0000684B,\n\t12686: 0x0000684F,\n\t12687: 0x00006816,\n\t12688: 0x00006831,\n\t12689: 0x0000681C,\n\t12690: 0x00006835,\n\t12691: 0x0000682B,\n\t12692: 0x0000682D,\n\t12693: 0x0000682F,\n\t12694: 0x0000684E,\n\t12695: 0x00006844,\n\t12696: 0x00006834,\n\t12697: 0x0000681D,\n\t12698: 0x00006812,\n\t12699: 0x00006814,\n\t12700: 0x00006826,\n\t12701: 0x00006828,\n\t12702: 0x0000682E,\n\t12703: 0x0000684D,\n\t12704: 0x0000683A,\n\t12705: 0x00006825,\n\t12706: 0x00006820,\n\t12707: 0x00006B2C,\n\t12708: 0x00006B2F,\n\t12709: 0x00006B2D,\n\t12710: 0x00006B31,\n\t12711: 0x00006B34,\n\t12712: 0x00006B6D,\n\t12713: 0x00008082,\n\t12714: 0x00006B88,\n\t12715: 0x00006BE6,\n\t12716: 0x00006BE4,\n\t12717: 0x00006BE8,\n\t12718: 0x00006BE3,\n\t12719: 0x00006BE2,\n\t12720: 0x00006BE7,\n\t12721: 0x00006C25,\n\t12722: 0x00006D7A,\n\t12723: 0x00006D63,\n\t12724: 0x00006D64,\n\t12725: 0x00006D76,\n\t12726: 0x00006D0D,\n\t12727: 0x00006D61,\n\t12728: 0x00006D92,\n\t12729: 0x00006D58,\n\t12730: 0x00006D62,\n\t12731: 0x00006D6D,\n\t12732: 0x00006D6F,\n\t12733: 0x00006D91,\n\t12734: 0x00006D8D,\n\t12735: 0x00006DEF,\n\t12736: 0x00006D7F,\n\t12737: 0x00006D86,\n\t12738: 0x00006D5E,\n\t12739: 0x00006D67,\n\t12740: 0x00006D60,\n\t12741: 0x00006D97,\n\t12742: 0x00006D70,\n\t12743: 0x00006D7C,\n\t12744: 0x00006D5F,\n\t12745: 0x00006D82,\n\t12746: 0x00006D98,\n\t12747: 0x00006D2F,\n\t12748: 0x00006D68,\n\t12749: 0x00006D8B,\n\t12750: 0x00006D7E,\n\t12751: 0x00006D80,\n\t12752: 0x00006D84,\n\t12753: 0x00006D16,\n\t12754: 0x00006D83,\n\t12755: 0x00006D7B,\n\t12756: 0x00006D7D,\n\t12757: 0x00006D75,\n\t12758: 0x00006D90,\n\t12759: 0x000070DC,\n\t12760: 0x000070D3,\n\t12761: 0x000070D1,\n\t12762: 0x000070DD,\n\t12763: 0x000070CB,\n\t12764: 0x00007F39,\n\t12765: 0x000070E2,\n\t12766: 0x000070D7,\n\t12767: 0x000070D2,\n\t12768: 0x000070DE,\n\t12769: 0x000070E0,\n\t12770: 0x000070D4,\n\t12771: 0x000070CD,\n\t12772: 0x000070C5,\n\t12773: 0x000070C6,\n\t12774: 0x000070C7,\n\t12775: 0x000070DA,\n\t12776: 0x000070CE,\n\t12777: 0x000070E1,\n\t12778: 0x00007242,\n\t12779: 0x00007278,\n\t12780: 0x00007277,\n\t12781: 0x00007276,\n\t12782: 0x00007300,\n\t12783: 0x000072FA,\n\t12784: 0x000072F4,\n\t12785: 0x000072FE,\n\t12786: 0x000072F6,\n\t12787: 0x000072F3,\n\t12788: 0x000072FB,\n\t12789: 0x00007301,\n\t12790: 0x000073D3,\n\t12791: 0x000073D9,\n\t12792: 0x000073E5,\n\t12793: 0x000073D6,\n\t12794: 0x000073BC,\n\t12795: 0x000073E7,\n\t12796: 0x000073E3,\n\t12797: 0x000073E9,\n\t12798: 0x000073DC,\n\t12799: 0x000073D2,\n\t12800: 0x000073DB,\n\t12801: 0x000073D4,\n\t12802: 0x000073DD,\n\t12803: 0x000073DA,\n\t12804: 0x000073D7,\n\t12805: 0x000073D8,\n\t12806: 0x000073E8,\n\t12807: 0x000074DE,\n\t12808: 0x000074DF,\n\t12809: 0x000074F4,\n\t12810: 0x000074F5,\n\t12811: 0x00007521,\n\t12812: 0x0000755B,\n\t12813: 0x0000755F,\n\t12814: 0x000075B0,\n\t12815: 0x000075C1,\n\t12816: 0x000075BB,\n\t12817: 0x000075C4,\n\t12818: 0x000075C0,\n\t12819: 0x000075BF,\n\t12820: 0x000075B6,\n\t12821: 0x000075BA,\n\t12822: 0x0000768A,\n\t12823: 0x000076C9,\n\t12824: 0x0000771D,\n\t12825: 0x0000771B,\n\t12826: 0x00007710,\n\t12827: 0x00007713,\n\t12828: 0x00007712,\n\t12829: 0x00007723,\n\t12830: 0x00007711,\n\t12831: 0x00007715,\n\t12832: 0x00007719,\n\t12833: 0x0000771A,\n\t12834: 0x00007722,\n\t12835: 0x00007727,\n\t12836: 0x00007823,\n\t12837: 0x0000782C,\n\t12838: 0x00007822,\n\t12839: 0x00007835,\n\t12840: 0x0000782F,\n\t12841: 0x00007828,\n\t12842: 0x0000782E,\n\t12843: 0x0000782B,\n\t12844: 0x00007821,\n\t12845: 0x00007829,\n\t12846: 0x00007833,\n\t12847: 0x0000782A,\n\t12848: 0x00007831,\n\t12849: 0x00007954,\n\t12850: 0x0000795B,\n\t12851: 0x0000794F,\n\t12852: 0x0000795C,\n\t12853: 0x00007953,\n\t12854: 0x00007952,\n\t12855: 0x00007951,\n\t12856: 0x000079EB,\n\t12857: 0x000079EC,\n\t12858: 0x000079E0,\n\t12859: 0x000079EE,\n\t12860: 0x000079ED,\n\t12861: 0x000079EA,\n\t12862: 0x000079DC,\n\t12863: 0x000079DE,\n\t12864: 0x000079DD,\n\t12865: 0x00007A86,\n\t12866: 0x00007A89,\n\t12867: 0x00007A85,\n\t12868: 0x00007A8B,\n\t12869: 0x00007A8C,\n\t12870: 0x00007A8A,\n\t12871: 0x00007A87,\n\t12872: 0x00007AD8,\n\t12873: 0x00007B10,\n\t12874: 0x00007B04,\n\t12875: 0x00007B13,\n\t12876: 0x00007B05,\n\t12877: 0x00007B0F,\n\t12878: 0x00007B08,\n\t12879: 0x00007B0A,\n\t12880: 0x00007B0E,\n\t12881: 0x00007B09,\n\t12882: 0x00007B12,\n\t12883: 0x00007C84,\n\t12884: 0x00007C91,\n\t12885: 0x00007C8A,\n\t12886: 0x00007C8C,\n\t12887: 0x00007C88,\n\t12888: 0x00007C8D,\n\t12889: 0x00007C85,\n\t12890: 0x00007D1E,\n\t12891: 0x00007D1D,\n\t12892: 0x00007D11,\n\t12893: 0x00007D0E,\n\t12894: 0x00007D18,\n\t12895: 0x00007D16,\n\t12896: 0x00007D13,\n\t12897: 0x00007D1F,\n\t12898: 0x00007D12,\n\t12899: 0x00007D0F,\n\t12900: 0x00007D0C,\n\t12901: 0x00007F5C,\n\t12902: 0x00007F61,\n\t12903: 0x00007F5E,\n\t12904: 0x00007F60,\n\t12905: 0x00007F5D,\n\t12906: 0x00007F5B,\n\t12907: 0x00007F96,\n\t12908: 0x00007F92,\n\t12909: 0x00007FC3,\n\t12910: 0x00007FC2,\n\t12911: 0x00007FC0,\n\t12912: 0x00008016,\n\t12913: 0x0000803E,\n\t12914: 0x00008039,\n\t12915: 0x000080FA,\n\t12916: 0x000080F2,\n\t12917: 0x000080F9,\n\t12918: 0x000080F5,\n\t12919: 0x00008101,\n\t12920: 0x000080FB,\n\t12921: 0x00008100,\n\t12922: 0x00008201,\n\t12923: 0x0000822F,\n\t12924: 0x00008225,\n\t12925: 0x00008333,\n\t12926: 0x0000832D,\n\t12927: 0x00008344,\n\t12928: 0x00008319,\n\t12929: 0x00008351,\n\t12930: 0x00008325,\n\t12931: 0x00008356,\n\t12932: 0x0000833F,\n\t12933: 0x00008341,\n\t12934: 0x00008326,\n\t12935: 0x0000831C,\n\t12936: 0x00008322,\n\t12937: 0x00008342,\n\t12938: 0x0000834E,\n\t12939: 0x0000831B,\n\t12940: 0x0000832A,\n\t12941: 0x00008308,\n\t12942: 0x0000833C,\n\t12943: 0x0000834D,\n\t12944: 0x00008316,\n\t12945: 0x00008324,\n\t12946: 0x00008320,\n\t12947: 0x00008337,\n\t12948: 0x0000832F,\n\t12949: 0x00008329,\n\t12950: 0x00008347,\n\t12951: 0x00008345,\n\t12952: 0x0000834C,\n\t12953: 0x00008353,\n\t12954: 0x0000831E,\n\t12955: 0x0000832C,\n\t12956: 0x0000834B,\n\t12957: 0x00008327,\n\t12958: 0x00008348,\n\t12959: 0x00008653,\n\t12960: 0x00008652,\n\t12961: 0x000086A2,\n\t12962: 0x000086A8,\n\t12963: 0x00008696,\n\t12964: 0x0000868D,\n\t12965: 0x00008691,\n\t12966: 0x0000869E,\n\t12967: 0x00008687,\n\t12968: 0x00008697,\n\t12969: 0x00008686,\n\t12970: 0x0000868B,\n\t12971: 0x0000869A,\n\t12972: 0x00008685,\n\t12973: 0x000086A5,\n\t12974: 0x00008699,\n\t12975: 0x000086A1,\n\t12976: 0x000086A7,\n\t12977: 0x00008695,\n\t12978: 0x00008698,\n\t12979: 0x0000868E,\n\t12980: 0x0000869D,\n\t12981: 0x00008690,\n\t12982: 0x00008694,\n\t12983: 0x00008843,\n\t12984: 0x00008844,\n\t12985: 0x0000886D,\n\t12986: 0x00008875,\n\t12987: 0x00008876,\n\t12988: 0x00008872,\n\t12989: 0x00008880,\n\t12990: 0x00008871,\n\t12991: 0x0000887F,\n\t12992: 0x0000886F,\n\t12993: 0x00008883,\n\t12994: 0x0000887E,\n\t12995: 0x00008874,\n\t12996: 0x0000887C,\n\t12997: 0x00008A12,\n\t12998: 0x00008C47,\n\t12999: 0x00008C57,\n\t13000: 0x00008C7B,\n\t13001: 0x00008CA4,\n\t13002: 0x00008CA3,\n\t13003: 0x00008D76,\n\t13004: 0x00008D78,\n\t13005: 0x00008DB5,\n\t13006: 0x00008DB7,\n\t13007: 0x00008DB6,\n\t13008: 0x00008ED1,\n\t13009: 0x00008ED3,\n\t13010: 0x00008FFE,\n\t13011: 0x00008FF5,\n\t13012: 0x00009002,\n\t13013: 0x00008FFF,\n\t13014: 0x00008FFB,\n\t13015: 0x00009004,\n\t13016: 0x00008FFC,\n\t13017: 0x00008FF6,\n\t13018: 0x000090D6,\n\t13019: 0x000090E0,\n\t13020: 0x000090D9,\n\t13021: 0x000090DA,\n\t13022: 0x000090E3,\n\t13023: 0x000090DF,\n\t13024: 0x000090E5,\n\t13025: 0x000090D8,\n\t13026: 0x000090DB,\n\t13027: 0x000090D7,\n\t13028: 0x000090DC,\n\t13029: 0x000090E4,\n\t13030: 0x00009150,\n\t13031: 0x0000914E,\n\t13032: 0x0000914F,\n\t13033: 0x000091D5,\n\t13034: 0x000091E2,\n\t13035: 0x000091DA,\n\t13036: 0x0000965C,\n\t13037: 0x0000965F,\n\t13038: 0x000096BC,\n\t13039: 0x000098E3,\n\t13040: 0x00009ADF,\n\t13041: 0x00009B2F,\n\t13042: 0x00004E7F,\n\t13043: 0x00005070,\n\t13044: 0x0000506A,\n\t13045: 0x00005061,\n\t13046: 0x0000505E,\n\t13047: 0x00005060,\n\t13048: 0x00005053,\n\t13049: 0x0000504B,\n\t13050: 0x0000505D,\n\t13051: 0x00005072,\n\t13052: 0x00005048,\n\t13053: 0x0000504D,\n\t13054: 0x00005041,\n\t13055: 0x0000505B,\n\t13056: 0x0000504A,\n\t13057: 0x00005062,\n\t13058: 0x00005015,\n\t13059: 0x00005045,\n\t13060: 0x0000505F,\n\t13061: 0x00005069,\n\t13062: 0x0000506B,\n\t13063: 0x00005063,\n\t13064: 0x00005064,\n\t13065: 0x00005046,\n\t13066: 0x00005040,\n\t13067: 0x0000506E,\n\t13068: 0x00005073,\n\t13069: 0x00005057,\n\t13070: 0x00005051,\n\t13071: 0x000051D0,\n\t13072: 0x0000526B,\n\t13073: 0x0000526D,\n\t13074: 0x0000526C,\n\t13075: 0x0000526E,\n\t13076: 0x000052D6,\n\t13077: 0x000052D3,\n\t13078: 0x0000532D,\n\t13079: 0x0000539C,\n\t13080: 0x00005575,\n\t13081: 0x00005576,\n\t13082: 0x0000553C,\n\t13083: 0x0000554D,\n\t13084: 0x00005550,\n\t13085: 0x00005534,\n\t13086: 0x0000552A,\n\t13087: 0x00005551,\n\t13088: 0x00005562,\n\t13089: 0x00005536,\n\t13090: 0x00005535,\n\t13091: 0x00005530,\n\t13092: 0x00005552,\n\t13093: 0x00005545,\n\t13094: 0x0000550C,\n\t13095: 0x00005532,\n\t13096: 0x00005565,\n\t13097: 0x0000554E,\n\t13098: 0x00005539,\n\t13099: 0x00005548,\n\t13100: 0x0000552D,\n\t13101: 0x0000553B,\n\t13102: 0x00005540,\n\t13103: 0x0000554B,\n\t13104: 0x0000570A,\n\t13105: 0x00005707,\n\t13106: 0x000057FB,\n\t13107: 0x00005814,\n\t13108: 0x000057E2,\n\t13109: 0x000057F6,\n\t13110: 0x000057DC,\n\t13111: 0x000057F4,\n\t13112: 0x00005800,\n\t13113: 0x000057ED,\n\t13114: 0x000057FD,\n\t13115: 0x00005808,\n\t13116: 0x000057F8,\n\t13117: 0x0000580B,\n\t13118: 0x000057F3,\n\t13119: 0x000057CF,\n\t13120: 0x00005807,\n\t13121: 0x000057EE,\n\t13122: 0x000057E3,\n\t13123: 0x000057F2,\n\t13124: 0x000057E5,\n\t13125: 0x000057EC,\n\t13126: 0x000057E1,\n\t13127: 0x0000580E,\n\t13128: 0x000057FC,\n\t13129: 0x00005810,\n\t13130: 0x000057E7,\n\t13131: 0x00005801,\n\t13132: 0x0000580C,\n\t13133: 0x000057F1,\n\t13134: 0x000057E9,\n\t13135: 0x000057F0,\n\t13136: 0x0000580D,\n\t13137: 0x00005804,\n\t13138: 0x0000595C,\n\t13139: 0x00005A60,\n\t13140: 0x00005A58,\n\t13141: 0x00005A55,\n\t13142: 0x00005A67,\n\t13143: 0x00005A5E,\n\t13144: 0x00005A38,\n\t13145: 0x00005A35,\n\t13146: 0x00005A6D,\n\t13147: 0x00005A50,\n\t13148: 0x00005A5F,\n\t13149: 0x00005A65,\n\t13150: 0x00005A6C,\n\t13151: 0x00005A53,\n\t13152: 0x00005A64,\n\t13153: 0x00005A57,\n\t13154: 0x00005A43,\n\t13155: 0x00005A5D,\n\t13156: 0x00005A52,\n\t13157: 0x00005A44,\n\t13158: 0x00005A5B,\n\t13159: 0x00005A48,\n\t13160: 0x00005A8E,\n\t13161: 0x00005A3E,\n\t13162: 0x00005A4D,\n\t13163: 0x00005A39,\n\t13164: 0x00005A4C,\n\t13165: 0x00005A70,\n\t13166: 0x00005A69,\n\t13167: 0x00005A47,\n\t13168: 0x00005A51,\n\t13169: 0x00005A56,\n\t13170: 0x00005A42,\n\t13171: 0x00005A5C,\n\t13172: 0x00005B72,\n\t13173: 0x00005B6E,\n\t13174: 0x00005BC1,\n\t13175: 0x00005BC0,\n\t13176: 0x00005C59,\n\t13177: 0x00005D1E,\n\t13178: 0x00005D0B,\n\t13179: 0x00005D1D,\n\t13180: 0x00005D1A,\n\t13181: 0x00005D20,\n\t13182: 0x00005D0C,\n\t13183: 0x00005D28,\n\t13184: 0x00005D0D,\n\t13185: 0x00005D26,\n\t13186: 0x00005D25,\n\t13187: 0x00005D0F,\n\t13188: 0x00005D30,\n\t13189: 0x00005D12,\n\t13190: 0x00005D23,\n\t13191: 0x00005D1F,\n\t13192: 0x00005D2E,\n\t13193: 0x00005E3E,\n\t13194: 0x00005E34,\n\t13195: 0x00005EB1,\n\t13196: 0x00005EB4,\n\t13197: 0x00005EB9,\n\t13198: 0x00005EB2,\n\t13199: 0x00005EB3,\n\t13200: 0x00005F36,\n\t13201: 0x00005F38,\n\t13202: 0x00005F9B,\n\t13203: 0x00005F96,\n\t13204: 0x00005F9F,\n\t13205: 0x0000608A,\n\t13206: 0x00006090,\n\t13207: 0x00006086,\n\t13208: 0x000060BE,\n\t13209: 0x000060B0,\n\t13210: 0x000060BA,\n\t13211: 0x000060D3,\n\t13212: 0x000060D4,\n\t13213: 0x000060CF,\n\t13214: 0x000060E4,\n\t13215: 0x000060D9,\n\t13216: 0x000060DD,\n\t13217: 0x000060C8,\n\t13218: 0x000060B1,\n\t13219: 0x000060DB,\n\t13220: 0x000060B7,\n\t13221: 0x000060CA,\n\t13222: 0x000060BF,\n\t13223: 0x000060C3,\n\t13224: 0x000060CD,\n\t13225: 0x000060C0,\n\t13226: 0x00006332,\n\t13227: 0x00006365,\n\t13228: 0x0000638A,\n\t13229: 0x00006382,\n\t13230: 0x0000637D,\n\t13231: 0x000063BD,\n\t13232: 0x0000639E,\n\t13233: 0x000063AD,\n\t13234: 0x0000639D,\n\t13235: 0x00006397,\n\t13236: 0x000063AB,\n\t13237: 0x0000638E,\n\t13238: 0x0000636F,\n\t13239: 0x00006387,\n\t13240: 0x00006390,\n\t13241: 0x0000636E,\n\t13242: 0x000063AF,\n\t13243: 0x00006375,\n\t13244: 0x0000639C,\n\t13245: 0x0000636D,\n\t13246: 0x000063AE,\n\t13247: 0x0000637C,\n\t13248: 0x000063A4,\n\t13249: 0x0000633B,\n\t13250: 0x0000639F,\n\t13251: 0x00006378,\n\t13252: 0x00006385,\n\t13253: 0x00006381,\n\t13254: 0x00006391,\n\t13255: 0x0000638D,\n\t13256: 0x00006370,\n\t13257: 0x00006553,\n\t13258: 0x000065CD,\n\t13259: 0x00006665,\n\t13260: 0x00006661,\n\t13261: 0x0000665B,\n\t13262: 0x00006659,\n\t13263: 0x0000665C,\n\t13264: 0x00006662,\n\t13265: 0x00006718,\n\t13266: 0x00006879,\n\t13267: 0x00006887,\n\t13268: 0x00006890,\n\t13269: 0x0000689C,\n\t13270: 0x0000686D,\n\t13271: 0x0000686E,\n\t13272: 0x000068AE,\n\t13273: 0x000068AB,\n\t13274: 0x00006956,\n\t13275: 0x0000686F,\n\t13276: 0x000068A3,\n\t13277: 0x000068AC,\n\t13278: 0x000068A9,\n\t13279: 0x00006875,\n\t13280: 0x00006874,\n\t13281: 0x000068B2,\n\t13282: 0x0000688F,\n\t13283: 0x00006877,\n\t13284: 0x00006892,\n\t13285: 0x0000687C,\n\t13286: 0x0000686B,\n\t13287: 0x00006872,\n\t13288: 0x000068AA,\n\t13289: 0x00006880,\n\t13290: 0x00006871,\n\t13291: 0x0000687E,\n\t13292: 0x0000689B,\n\t13293: 0x00006896,\n\t13294: 0x0000688B,\n\t13295: 0x000068A0,\n\t13296: 0x00006889,\n\t13297: 0x000068A4,\n\t13298: 0x00006878,\n\t13299: 0x0000687B,\n\t13300: 0x00006891,\n\t13301: 0x0000688C,\n\t13302: 0x0000688A,\n\t13303: 0x0000687D,\n\t13304: 0x00006B36,\n\t13305: 0x00006B33,\n\t13306: 0x00006B37,\n\t13307: 0x00006B38,\n\t13308: 0x00006B91,\n\t13309: 0x00006B8F,\n\t13310: 0x00006B8D,\n\t13311: 0x00006B8E,\n\t13312: 0x00006B8C,\n\t13313: 0x00006C2A,\n\t13314: 0x00006DC0,\n\t13315: 0x00006DAB,\n\t13316: 0x00006DB4,\n\t13317: 0x00006DB3,\n\t13318: 0x00006E74,\n\t13319: 0x00006DAC,\n\t13320: 0x00006DE9,\n\t13321: 0x00006DE2,\n\t13322: 0x00006DB7,\n\t13323: 0x00006DF6,\n\t13324: 0x00006DD4,\n\t13325: 0x00006E00,\n\t13326: 0x00006DC8,\n\t13327: 0x00006DE0,\n\t13328: 0x00006DDF,\n\t13329: 0x00006DD6,\n\t13330: 0x00006DBE,\n\t13331: 0x00006DE5,\n\t13332: 0x00006DDC,\n\t13333: 0x00006DDD,\n\t13334: 0x00006DDB,\n\t13335: 0x00006DF4,\n\t13336: 0x00006DCA,\n\t13337: 0x00006DBD,\n\t13338: 0x00006DED,\n\t13339: 0x00006DF0,\n\t13340: 0x00006DBA,\n\t13341: 0x00006DD5,\n\t13342: 0x00006DC2,\n\t13343: 0x00006DCF,\n\t13344: 0x00006DC9,\n\t13345: 0x00006DD0,\n\t13346: 0x00006DF2,\n\t13347: 0x00006DD3,\n\t13348: 0x00006DFD,\n\t13349: 0x00006DD7,\n\t13350: 0x00006DCD,\n\t13351: 0x00006DE3,\n\t13352: 0x00006DBB,\n\t13353: 0x000070FA,\n\t13354: 0x0000710D,\n\t13355: 0x000070F7,\n\t13356: 0x00007117,\n\t13357: 0x000070F4,\n\t13358: 0x0000710C,\n\t13359: 0x000070F0,\n\t13360: 0x00007104,\n\t13361: 0x000070F3,\n\t13362: 0x00007110,\n\t13363: 0x000070FC,\n\t13364: 0x000070FF,\n\t13365: 0x00007106,\n\t13366: 0x00007113,\n\t13367: 0x00007100,\n\t13368: 0x000070F8,\n\t13369: 0x000070F6,\n\t13370: 0x0000710B,\n\t13371: 0x00007102,\n\t13372: 0x0000710E,\n\t13373: 0x0000727E,\n\t13374: 0x0000727B,\n\t13375: 0x0000727C,\n\t13376: 0x0000727F,\n\t13377: 0x0000731D,\n\t13378: 0x00007317,\n\t13379: 0x00007307,\n\t13380: 0x00007311,\n\t13381: 0x00007318,\n\t13382: 0x0000730A,\n\t13383: 0x00007308,\n\t13384: 0x000072FF,\n\t13385: 0x0000730F,\n\t13386: 0x0000731E,\n\t13387: 0x00007388,\n\t13388: 0x000073F6,\n\t13389: 0x000073F8,\n\t13390: 0x000073F5,\n\t13391: 0x00007404,\n\t13392: 0x00007401,\n\t13393: 0x000073FD,\n\t13394: 0x00007407,\n\t13395: 0x00007400,\n\t13396: 0x000073FA,\n\t13397: 0x000073FC,\n\t13398: 0x000073FF,\n\t13399: 0x0000740C,\n\t13400: 0x0000740B,\n\t13401: 0x000073F4,\n\t13402: 0x00007408,\n\t13403: 0x00007564,\n\t13404: 0x00007563,\n\t13405: 0x000075CE,\n\t13406: 0x000075D2,\n\t13407: 0x000075CF,\n\t13408: 0x000075CB,\n\t13409: 0x000075CC,\n\t13410: 0x000075D1,\n\t13411: 0x000075D0,\n\t13412: 0x0000768F,\n\t13413: 0x00007689,\n\t13414: 0x000076D3,\n\t13415: 0x00007739,\n\t13416: 0x0000772F,\n\t13417: 0x0000772D,\n\t13418: 0x00007731,\n\t13419: 0x00007732,\n\t13420: 0x00007734,\n\t13421: 0x00007733,\n\t13422: 0x0000773D,\n\t13423: 0x00007725,\n\t13424: 0x0000773B,\n\t13425: 0x00007735,\n\t13426: 0x00007848,\n\t13427: 0x00007852,\n\t13428: 0x00007849,\n\t13429: 0x0000784D,\n\t13430: 0x0000784A,\n\t13431: 0x0000784C,\n\t13432: 0x00007826,\n\t13433: 0x00007845,\n\t13434: 0x00007850,\n\t13435: 0x00007964,\n\t13436: 0x00007967,\n\t13437: 0x00007969,\n\t13438: 0x0000796A,\n\t13439: 0x00007963,\n\t13440: 0x0000796B,\n\t13441: 0x00007961,\n\t13442: 0x000079BB,\n\t13443: 0x000079FA,\n\t13444: 0x000079F8,\n\t13445: 0x000079F6,\n\t13446: 0x000079F7,\n\t13447: 0x00007A8F,\n\t13448: 0x00007A94,\n\t13449: 0x00007A90,\n\t13450: 0x00007B35,\n\t13451: 0x00007B47,\n\t13452: 0x00007B34,\n\t13453: 0x00007B25,\n\t13454: 0x00007B30,\n\t13455: 0x00007B22,\n\t13456: 0x00007B24,\n\t13457: 0x00007B33,\n\t13458: 0x00007B18,\n\t13459: 0x00007B2A,\n\t13460: 0x00007B1D,\n\t13461: 0x00007B31,\n\t13462: 0x00007B2B,\n\t13463: 0x00007B2D,\n\t13464: 0x00007B2F,\n\t13465: 0x00007B32,\n\t13466: 0x00007B38,\n\t13467: 0x00007B1A,\n\t13468: 0x00007B23,\n\t13469: 0x00007C94,\n\t13470: 0x00007C98,\n\t13471: 0x00007C96,\n\t13472: 0x00007CA3,\n\t13473: 0x00007D35,\n\t13474: 0x00007D3D,\n\t13475: 0x00007D38,\n\t13476: 0x00007D36,\n\t13477: 0x00007D3A,\n\t13478: 0x00007D45,\n\t13479: 0x00007D2C,\n\t13480: 0x00007D29,\n\t13481: 0x00007D41,\n\t13482: 0x00007D47,\n\t13483: 0x00007D3E,\n\t13484: 0x00007D3F,\n\t13485: 0x00007D4A,\n\t13486: 0x00007D3B,\n\t13487: 0x00007D28,\n\t13488: 0x00007F63,\n\t13489: 0x00007F95,\n\t13490: 0x00007F9C,\n\t13491: 0x00007F9D,\n\t13492: 0x00007F9B,\n\t13493: 0x00007FCA,\n\t13494: 0x00007FCB,\n\t13495: 0x00007FCD,\n\t13496: 0x00007FD0,\n\t13497: 0x00007FD1,\n\t13498: 0x00007FC7,\n\t13499: 0x00007FCF,\n\t13500: 0x00007FC9,\n\t13501: 0x0000801F,\n\t13502: 0x0000801E,\n\t13503: 0x0000801B,\n\t13504: 0x00008047,\n\t13505: 0x00008043,\n\t13506: 0x00008048,\n\t13507: 0x00008118,\n\t13508: 0x00008125,\n\t13509: 0x00008119,\n\t13510: 0x0000811B,\n\t13511: 0x0000812D,\n\t13512: 0x0000811F,\n\t13513: 0x0000812C,\n\t13514: 0x0000811E,\n\t13515: 0x00008121,\n\t13516: 0x00008115,\n\t13517: 0x00008127,\n\t13518: 0x0000811D,\n\t13519: 0x00008122,\n\t13520: 0x00008211,\n\t13521: 0x00008238,\n\t13522: 0x00008233,\n\t13523: 0x0000823A,\n\t13524: 0x00008234,\n\t13525: 0x00008232,\n\t13526: 0x00008274,\n\t13527: 0x00008390,\n\t13528: 0x000083A3,\n\t13529: 0x000083A8,\n\t13530: 0x0000838D,\n\t13531: 0x0000837A,\n\t13532: 0x00008373,\n\t13533: 0x000083A4,\n\t13534: 0x00008374,\n\t13535: 0x0000838F,\n\t13536: 0x00008381,\n\t13537: 0x00008395,\n\t13538: 0x00008399,\n\t13539: 0x00008375,\n\t13540: 0x00008394,\n\t13541: 0x000083A9,\n\t13542: 0x0000837D,\n\t13543: 0x00008383,\n\t13544: 0x0000838C,\n\t13545: 0x0000839D,\n\t13546: 0x0000839B,\n\t13547: 0x000083AA,\n\t13548: 0x0000838B,\n\t13549: 0x0000837E,\n\t13550: 0x000083A5,\n\t13551: 0x000083AF,\n\t13552: 0x00008388,\n\t13553: 0x00008397,\n\t13554: 0x000083B0,\n\t13555: 0x0000837F,\n\t13556: 0x000083A6,\n\t13557: 0x00008387,\n\t13558: 0x000083AE,\n\t13559: 0x00008376,\n\t13560: 0x0000839A,\n\t13561: 0x00008659,\n\t13562: 0x00008656,\n\t13563: 0x000086BF,\n\t13564: 0x000086B7,\n\t13565: 0x000086C2,\n\t13566: 0x000086C1,\n\t13567: 0x000086C5,\n\t13568: 0x000086BA,\n\t13569: 0x000086B0,\n\t13570: 0x000086C8,\n\t13571: 0x000086B9,\n\t13572: 0x000086B3,\n\t13573: 0x000086B8,\n\t13574: 0x000086CC,\n\t13575: 0x000086B4,\n\t13576: 0x000086BB,\n\t13577: 0x000086BC,\n\t13578: 0x000086C3,\n\t13579: 0x000086BD,\n\t13580: 0x000086BE,\n\t13581: 0x00008852,\n\t13582: 0x00008889,\n\t13583: 0x00008895,\n\t13584: 0x000088A8,\n\t13585: 0x000088A2,\n\t13586: 0x000088AA,\n\t13587: 0x0000889A,\n\t13588: 0x00008891,\n\t13589: 0x000088A1,\n\t13590: 0x0000889F,\n\t13591: 0x00008898,\n\t13592: 0x000088A7,\n\t13593: 0x00008899,\n\t13594: 0x0000889B,\n\t13595: 0x00008897,\n\t13596: 0x000088A4,\n\t13597: 0x000088AC,\n\t13598: 0x0000888C,\n\t13599: 0x00008893,\n\t13600: 0x0000888E,\n\t13601: 0x00008982,\n\t13602: 0x000089D6,\n\t13603: 0x000089D9,\n\t13604: 0x000089D5,\n\t13605: 0x00008A30,\n\t13606: 0x00008A27,\n\t13607: 0x00008A2C,\n\t13608: 0x00008A1E,\n\t13609: 0x00008C39,\n\t13610: 0x00008C3B,\n\t13611: 0x00008C5C,\n\t13612: 0x00008C5D,\n\t13613: 0x00008C7D,\n\t13614: 0x00008CA5,\n\t13615: 0x00008D7D,\n\t13616: 0x00008D7B,\n\t13617: 0x00008D79,\n\t13618: 0x00008DBC,\n\t13619: 0x00008DC2,\n\t13620: 0x00008DB9,\n\t13621: 0x00008DBF,\n\t13622: 0x00008DC1,\n\t13623: 0x00008ED8,\n\t13624: 0x00008EDE,\n\t13625: 0x00008EDD,\n\t13626: 0x00008EDC,\n\t13627: 0x00008ED7,\n\t13628: 0x00008EE0,\n\t13629: 0x00008EE1,\n\t13630: 0x00009024,\n\t13631: 0x0000900B,\n\t13632: 0x00009011,\n\t13633: 0x0000901C,\n\t13634: 0x0000900C,\n\t13635: 0x00009021,\n\t13636: 0x000090EF,\n\t13637: 0x000090EA,\n\t13638: 0x000090F0,\n\t13639: 0x000090F4,\n\t13640: 0x000090F2,\n\t13641: 0x000090F3,\n\t13642: 0x000090D4,\n\t13643: 0x000090EB,\n\t13644: 0x000090EC,\n\t13645: 0x000090E9,\n\t13646: 0x00009156,\n\t13647: 0x00009158,\n\t13648: 0x0000915A,\n\t13649: 0x00009153,\n\t13650: 0x00009155,\n\t13651: 0x000091EC,\n\t13652: 0x000091F4,\n\t13653: 0x000091F1,\n\t13654: 0x000091F3,\n\t13655: 0x000091F8,\n\t13656: 0x000091E4,\n\t13657: 0x000091F9,\n\t13658: 0x000091EA,\n\t13659: 0x000091EB,\n\t13660: 0x000091F7,\n\t13661: 0x000091E8,\n\t13662: 0x000091EE,\n\t13663: 0x0000957A,\n\t13664: 0x00009586,\n\t13665: 0x00009588,\n\t13666: 0x0000967C,\n\t13667: 0x0000966D,\n\t13668: 0x0000966B,\n\t13669: 0x00009671,\n\t13670: 0x0000966F,\n\t13671: 0x000096BF,\n\t13672: 0x0000976A,\n\t13673: 0x00009804,\n\t13674: 0x000098E5,\n\t13675: 0x00009997,\n\t13676: 0x0000509B,\n\t13677: 0x00005095,\n\t13678: 0x00005094,\n\t13679: 0x0000509E,\n\t13680: 0x0000508B,\n\t13681: 0x000050A3,\n\t13682: 0x00005083,\n\t13683: 0x0000508C,\n\t13684: 0x0000508E,\n\t13685: 0x0000509D,\n\t13686: 0x00005068,\n\t13687: 0x0000509C,\n\t13688: 0x00005092,\n\t13689: 0x00005082,\n\t13690: 0x00005087,\n\t13691: 0x0000515F,\n\t13692: 0x000051D4,\n\t13693: 0x00005312,\n\t13694: 0x00005311,\n\t13695: 0x000053A4,\n\t13696: 0x000053A7,\n\t13697: 0x00005591,\n\t13698: 0x000055A8,\n\t13699: 0x000055A5,\n\t13700: 0x000055AD,\n\t13701: 0x00005577,\n\t13702: 0x00005645,\n\t13703: 0x000055A2,\n\t13704: 0x00005593,\n\t13705: 0x00005588,\n\t13706: 0x0000558F,\n\t13707: 0x000055B5,\n\t13708: 0x00005581,\n\t13709: 0x000055A3,\n\t13710: 0x00005592,\n\t13711: 0x000055A4,\n\t13712: 0x0000557D,\n\t13713: 0x0000558C,\n\t13714: 0x000055A6,\n\t13715: 0x0000557F,\n\t13716: 0x00005595,\n\t13717: 0x000055A1,\n\t13718: 0x0000558E,\n\t13719: 0x0000570C,\n\t13720: 0x00005829,\n\t13721: 0x00005837,\n\t13722: 0x00005819,\n\t13723: 0x0000581E,\n\t13724: 0x00005827,\n\t13725: 0x00005823,\n\t13726: 0x00005828,\n\t13727: 0x000057F5,\n\t13728: 0x00005848,\n\t13729: 0x00005825,\n\t13730: 0x0000581C,\n\t13731: 0x0000581B,\n\t13732: 0x00005833,\n\t13733: 0x0000583F,\n\t13734: 0x00005836,\n\t13735: 0x0000582E,\n\t13736: 0x00005839,\n\t13737: 0x00005838,\n\t13738: 0x0000582D,\n\t13739: 0x0000582C,\n\t13740: 0x0000583B,\n\t13741: 0x00005961,\n\t13742: 0x00005AAF,\n\t13743: 0x00005A94,\n\t13744: 0x00005A9F,\n\t13745: 0x00005A7A,\n\t13746: 0x00005AA2,\n\t13747: 0x00005A9E,\n\t13748: 0x00005A78,\n\t13749: 0x00005AA6,\n\t13750: 0x00005A7C,\n\t13751: 0x00005AA5,\n\t13752: 0x00005AAC,\n\t13753: 0x00005A95,\n\t13754: 0x00005AAE,\n\t13755: 0x00005A37,\n\t13756: 0x00005A84,\n\t13757: 0x00005A8A,\n\t13758: 0x00005A97,\n\t13759: 0x00005A83,\n\t13760: 0x00005A8B,\n\t13761: 0x00005AA9,\n\t13762: 0x00005A7B,\n\t13763: 0x00005A7D,\n\t13764: 0x00005A8C,\n\t13765: 0x00005A9C,\n\t13766: 0x00005A8F,\n\t13767: 0x00005A93,\n\t13768: 0x00005A9D,\n\t13769: 0x00005BEA,\n\t13770: 0x00005BCD,\n\t13771: 0x00005BCB,\n\t13772: 0x00005BD4,\n\t13773: 0x00005BD1,\n\t13774: 0x00005BCA,\n\t13775: 0x00005BCE,\n\t13776: 0x00005C0C,\n\t13777: 0x00005C30,\n\t13778: 0x00005D37,\n\t13779: 0x00005D43,\n\t13780: 0x00005D6B,\n\t13781: 0x00005D41,\n\t13782: 0x00005D4B,\n\t13783: 0x00005D3F,\n\t13784: 0x00005D35,\n\t13785: 0x00005D51,\n\t13786: 0x00005D4E,\n\t13787: 0x00005D55,\n\t13788: 0x00005D33,\n\t13789: 0x00005D3A,\n\t13790: 0x00005D52,\n\t13791: 0x00005D3D,\n\t13792: 0x00005D31,\n\t13793: 0x00005D59,\n\t13794: 0x00005D42,\n\t13795: 0x00005D39,\n\t13796: 0x00005D49,\n\t13797: 0x00005D38,\n\t13798: 0x00005D3C,\n\t13799: 0x00005D32,\n\t13800: 0x00005D36,\n\t13801: 0x00005D40,\n\t13802: 0x00005D45,\n\t13803: 0x00005E44,\n\t13804: 0x00005E41,\n\t13805: 0x00005F58,\n\t13806: 0x00005FA6,\n\t13807: 0x00005FA5,\n\t13808: 0x00005FAB,\n\t13809: 0x000060C9,\n\t13810: 0x000060B9,\n\t13811: 0x000060CC,\n\t13812: 0x000060E2,\n\t13813: 0x000060CE,\n\t13814: 0x000060C4,\n\t13815: 0x00006114,\n\t13816: 0x000060F2,\n\t13817: 0x0000610A,\n\t13818: 0x00006116,\n\t13819: 0x00006105,\n\t13820: 0x000060F5,\n\t13821: 0x00006113,\n\t13822: 0x000060F8,\n\t13823: 0x000060FC,\n\t13824: 0x000060FE,\n\t13825: 0x000060C1,\n\t13826: 0x00006103,\n\t13827: 0x00006118,\n\t13828: 0x0000611D,\n\t13829: 0x00006110,\n\t13830: 0x000060FF,\n\t13831: 0x00006104,\n\t13832: 0x0000610B,\n\t13833: 0x0000624A,\n\t13834: 0x00006394,\n\t13835: 0x000063B1,\n\t13836: 0x000063B0,\n\t13837: 0x000063CE,\n\t13838: 0x000063E5,\n\t13839: 0x000063E8,\n\t13840: 0x000063EF,\n\t13841: 0x000063C3,\n\t13842: 0x0000649D,\n\t13843: 0x000063F3,\n\t13844: 0x000063CA,\n\t13845: 0x000063E0,\n\t13846: 0x000063F6,\n\t13847: 0x000063D5,\n\t13848: 0x000063F2,\n\t13849: 0x000063F5,\n\t13850: 0x00006461,\n\t13851: 0x000063DF,\n\t13852: 0x000063BE,\n\t13853: 0x000063DD,\n\t13854: 0x000063DC,\n\t13855: 0x000063C4,\n\t13856: 0x000063D8,\n\t13857: 0x000063D3,\n\t13858: 0x000063C2,\n\t13859: 0x000063C7,\n\t13860: 0x000063CC,\n\t13861: 0x000063CB,\n\t13862: 0x000063C8,\n\t13863: 0x000063F0,\n\t13864: 0x000063D7,\n\t13865: 0x000063D9,\n\t13866: 0x00006532,\n\t13867: 0x00006567,\n\t13868: 0x0000656A,\n\t13869: 0x00006564,\n\t13870: 0x0000655C,\n\t13871: 0x00006568,\n\t13872: 0x00006565,\n\t13873: 0x0000658C,\n\t13874: 0x0000659D,\n\t13875: 0x0000659E,\n\t13876: 0x000065AE,\n\t13877: 0x000065D0,\n\t13878: 0x000065D2,\n\t13879: 0x0000667C,\n\t13880: 0x0000666C,\n\t13881: 0x0000667B,\n\t13882: 0x00006680,\n\t13883: 0x00006671,\n\t13884: 0x00006679,\n\t13885: 0x0000666A,\n\t13886: 0x00006672,\n\t13887: 0x00006701,\n\t13888: 0x0000690C,\n\t13889: 0x000068D3,\n\t13890: 0x00006904,\n\t13891: 0x000068DC,\n\t13892: 0x0000692A,\n\t13893: 0x000068EC,\n\t13894: 0x000068EA,\n\t13895: 0x000068F1,\n\t13896: 0x0000690F,\n\t13897: 0x000068D6,\n\t13898: 0x000068F7,\n\t13899: 0x000068EB,\n\t13900: 0x000068E4,\n\t13901: 0x000068F6,\n\t13902: 0x00006913,\n\t13903: 0x00006910,\n\t13904: 0x000068F3,\n\t13905: 0x000068E1,\n\t13906: 0x00006907,\n\t13907: 0x000068CC,\n\t13908: 0x00006908,\n\t13909: 0x00006970,\n\t13910: 0x000068B4,\n\t13911: 0x00006911,\n\t13912: 0x000068EF,\n\t13913: 0x000068C6,\n\t13914: 0x00006914,\n\t13915: 0x000068F8,\n\t13916: 0x000068D0,\n\t13917: 0x000068FD,\n\t13918: 0x000068FC,\n\t13919: 0x000068E8,\n\t13920: 0x0000690B,\n\t13921: 0x0000690A,\n\t13922: 0x00006917,\n\t13923: 0x000068CE,\n\t13924: 0x000068C8,\n\t13925: 0x000068DD,\n\t13926: 0x000068DE,\n\t13927: 0x000068E6,\n\t13928: 0x000068F4,\n\t13929: 0x000068D1,\n\t13930: 0x00006906,\n\t13931: 0x000068D4,\n\t13932: 0x000068E9,\n\t13933: 0x00006915,\n\t13934: 0x00006925,\n\t13935: 0x000068C7,\n\t13936: 0x00006B39,\n\t13937: 0x00006B3B,\n\t13938: 0x00006B3F,\n\t13939: 0x00006B3C,\n\t13940: 0x00006B94,\n\t13941: 0x00006B97,\n\t13942: 0x00006B99,\n\t13943: 0x00006B95,\n\t13944: 0x00006BBD,\n\t13945: 0x00006BF0,\n\t13946: 0x00006BF2,\n\t13947: 0x00006BF3,\n\t13948: 0x00006C30,\n\t13949: 0x00006DFC,\n\t13950: 0x00006E46,\n\t13951: 0x00006E47,\n\t13952: 0x00006E1F,\n\t13953: 0x00006E49,\n\t13954: 0x00006E88,\n\t13955: 0x00006E3C,\n\t13956: 0x00006E3D,\n\t13957: 0x00006E45,\n\t13958: 0x00006E62,\n\t13959: 0x00006E2B,\n\t13960: 0x00006E3F,\n\t13961: 0x00006E41,\n\t13962: 0x00006E5D,\n\t13963: 0x00006E73,\n\t13964: 0x00006E1C,\n\t13965: 0x00006E33,\n\t13966: 0x00006E4B,\n\t13967: 0x00006E40,\n\t13968: 0x00006E51,\n\t13969: 0x00006E3B,\n\t13970: 0x00006E03,\n\t13971: 0x00006E2E,\n\t13972: 0x00006E5E,\n\t13973: 0x00006E68,\n\t13974: 0x00006E5C,\n\t13975: 0x00006E61,\n\t13976: 0x00006E31,\n\t13977: 0x00006E28,\n\t13978: 0x00006E60,\n\t13979: 0x00006E71,\n\t13980: 0x00006E6B,\n\t13981: 0x00006E39,\n\t13982: 0x00006E22,\n\t13983: 0x00006E30,\n\t13984: 0x00006E53,\n\t13985: 0x00006E65,\n\t13986: 0x00006E27,\n\t13987: 0x00006E78,\n\t13988: 0x00006E64,\n\t13989: 0x00006E77,\n\t13990: 0x00006E55,\n\t13991: 0x00006E79,\n\t13992: 0x00006E52,\n\t13993: 0x00006E66,\n\t13994: 0x00006E35,\n\t13995: 0x00006E36,\n\t13996: 0x00006E5A,\n\t13997: 0x00007120,\n\t13998: 0x0000711E,\n\t13999: 0x0000712F,\n\t14000: 0x000070FB,\n\t14001: 0x0000712E,\n\t14002: 0x00007131,\n\t14003: 0x00007123,\n\t14004: 0x00007125,\n\t14005: 0x00007122,\n\t14006: 0x00007132,\n\t14007: 0x0000711F,\n\t14008: 0x00007128,\n\t14009: 0x0000713A,\n\t14010: 0x0000711B,\n\t14011: 0x0000724B,\n\t14012: 0x0000725A,\n\t14013: 0x00007288,\n\t14014: 0x00007289,\n\t14015: 0x00007286,\n\t14016: 0x00007285,\n\t14017: 0x0000728B,\n\t14018: 0x00007312,\n\t14019: 0x0000730B,\n\t14020: 0x00007330,\n\t14021: 0x00007322,\n\t14022: 0x00007331,\n\t14023: 0x00007333,\n\t14024: 0x00007327,\n\t14025: 0x00007332,\n\t14026: 0x0000732D,\n\t14027: 0x00007326,\n\t14028: 0x00007323,\n\t14029: 0x00007335,\n\t14030: 0x0000730C,\n\t14031: 0x0000742E,\n\t14032: 0x0000742C,\n\t14033: 0x00007430,\n\t14034: 0x0000742B,\n\t14035: 0x00007416,\n\t14036: 0x0000741A,\n\t14037: 0x00007421,\n\t14038: 0x0000742D,\n\t14039: 0x00007431,\n\t14040: 0x00007424,\n\t14041: 0x00007423,\n\t14042: 0x0000741D,\n\t14043: 0x00007429,\n\t14044: 0x00007420,\n\t14045: 0x00007432,\n\t14046: 0x000074FB,\n\t14047: 0x0000752F,\n\t14048: 0x0000756F,\n\t14049: 0x0000756C,\n\t14050: 0x000075E7,\n\t14051: 0x000075DA,\n\t14052: 0x000075E1,\n\t14053: 0x000075E6,\n\t14054: 0x000075DD,\n\t14055: 0x000075DF,\n\t14056: 0x000075E4,\n\t14057: 0x000075D7,\n\t14058: 0x00007695,\n\t14059: 0x00007692,\n\t14060: 0x000076DA,\n\t14061: 0x00007746,\n\t14062: 0x00007747,\n\t14063: 0x00007744,\n\t14064: 0x0000774D,\n\t14065: 0x00007745,\n\t14066: 0x0000774A,\n\t14067: 0x0000774E,\n\t14068: 0x0000774B,\n\t14069: 0x0000774C,\n\t14070: 0x000077DE,\n\t14071: 0x000077EC,\n\t14072: 0x00007860,\n\t14073: 0x00007864,\n\t14074: 0x00007865,\n\t14075: 0x0000785C,\n\t14076: 0x0000786D,\n\t14077: 0x00007871,\n\t14078: 0x0000786A,\n\t14079: 0x0000786E,\n\t14080: 0x00007870,\n\t14081: 0x00007869,\n\t14082: 0x00007868,\n\t14083: 0x0000785E,\n\t14084: 0x00007862,\n\t14085: 0x00007974,\n\t14086: 0x00007973,\n\t14087: 0x00007972,\n\t14088: 0x00007970,\n\t14089: 0x00007A02,\n\t14090: 0x00007A0A,\n\t14091: 0x00007A03,\n\t14092: 0x00007A0C,\n\t14093: 0x00007A04,\n\t14094: 0x00007A99,\n\t14095: 0x00007AE6,\n\t14096: 0x00007AE4,\n\t14097: 0x00007B4A,\n\t14098: 0x00007B3B,\n\t14099: 0x00007B44,\n\t14100: 0x00007B48,\n\t14101: 0x00007B4C,\n\t14102: 0x00007B4E,\n\t14103: 0x00007B40,\n\t14104: 0x00007B58,\n\t14105: 0x00007B45,\n\t14106: 0x00007CA2,\n\t14107: 0x00007C9E,\n\t14108: 0x00007CA8,\n\t14109: 0x00007CA1,\n\t14110: 0x00007D58,\n\t14111: 0x00007D6F,\n\t14112: 0x00007D63,\n\t14113: 0x00007D53,\n\t14114: 0x00007D56,\n\t14115: 0x00007D67,\n\t14116: 0x00007D6A,\n\t14117: 0x00007D4F,\n\t14118: 0x00007D6D,\n\t14119: 0x00007D5C,\n\t14120: 0x00007D6B,\n\t14121: 0x00007D52,\n\t14122: 0x00007D54,\n\t14123: 0x00007D69,\n\t14124: 0x00007D51,\n\t14125: 0x00007D5F,\n\t14126: 0x00007D4E,\n\t14127: 0x00007F3E,\n\t14128: 0x00007F3F,\n\t14129: 0x00007F65,\n\t14130: 0x00007F66,\n\t14131: 0x00007FA2,\n\t14132: 0x00007FA0,\n\t14133: 0x00007FA1,\n\t14134: 0x00007FD7,\n\t14135: 0x00008051,\n\t14136: 0x0000804F,\n\t14137: 0x00008050,\n\t14138: 0x000080FE,\n\t14139: 0x000080D4,\n\t14140: 0x00008143,\n\t14141: 0x0000814A,\n\t14142: 0x00008152,\n\t14143: 0x0000814F,\n\t14144: 0x00008147,\n\t14145: 0x0000813D,\n\t14146: 0x0000814D,\n\t14147: 0x0000813A,\n\t14148: 0x000081E6,\n\t14149: 0x000081EE,\n\t14150: 0x000081F7,\n\t14151: 0x000081F8,\n\t14152: 0x000081F9,\n\t14153: 0x00008204,\n\t14154: 0x0000823C,\n\t14155: 0x0000823D,\n\t14156: 0x0000823F,\n\t14157: 0x00008275,\n\t14158: 0x0000833B,\n\t14159: 0x000083CF,\n\t14160: 0x000083F9,\n\t14161: 0x00008423,\n\t14162: 0x000083C0,\n\t14163: 0x000083E8,\n\t14164: 0x00008412,\n\t14165: 0x000083E7,\n\t14166: 0x000083E4,\n\t14167: 0x000083FC,\n\t14168: 0x000083F6,\n\t14169: 0x00008410,\n\t14170: 0x000083C6,\n\t14171: 0x000083C8,\n\t14172: 0x000083EB,\n\t14173: 0x000083E3,\n\t14174: 0x000083BF,\n\t14175: 0x00008401,\n\t14176: 0x000083DD,\n\t14177: 0x000083E5,\n\t14178: 0x000083D8,\n\t14179: 0x000083FF,\n\t14180: 0x000083E1,\n\t14181: 0x000083CB,\n\t14182: 0x000083CE,\n\t14183: 0x000083D6,\n\t14184: 0x000083F5,\n\t14185: 0x000083C9,\n\t14186: 0x00008409,\n\t14187: 0x0000840F,\n\t14188: 0x000083DE,\n\t14189: 0x00008411,\n\t14190: 0x00008406,\n\t14191: 0x000083C2,\n\t14192: 0x000083F3,\n\t14193: 0x000083D5,\n\t14194: 0x000083FA,\n\t14195: 0x000083C7,\n\t14196: 0x000083D1,\n\t14197: 0x000083EA,\n\t14198: 0x00008413,\n\t14199: 0x000083C3,\n\t14200: 0x000083EC,\n\t14201: 0x000083EE,\n\t14202: 0x000083C4,\n\t14203: 0x000083FB,\n\t14204: 0x000083D7,\n\t14205: 0x000083E2,\n\t14206: 0x0000841B,\n\t14207: 0x000083DB,\n\t14208: 0x000083FE,\n\t14209: 0x000086D8,\n\t14210: 0x000086E2,\n\t14211: 0x000086E6,\n\t14212: 0x000086D3,\n\t14213: 0x000086E3,\n\t14214: 0x000086DA,\n\t14215: 0x000086EA,\n\t14216: 0x000086DD,\n\t14217: 0x000086EB,\n\t14218: 0x000086DC,\n\t14219: 0x000086EC,\n\t14220: 0x000086E9,\n\t14221: 0x000086D7,\n\t14222: 0x000086E8,\n\t14223: 0x000086D1,\n\t14224: 0x00008848,\n\t14225: 0x00008856,\n\t14226: 0x00008855,\n\t14227: 0x000088BA,\n\t14228: 0x000088D7,\n\t14229: 0x000088B9,\n\t14230: 0x000088B8,\n\t14231: 0x000088C0,\n\t14232: 0x000088BE,\n\t14233: 0x000088B6,\n\t14234: 0x000088BC,\n\t14235: 0x000088B7,\n\t14236: 0x000088BD,\n\t14237: 0x000088B2,\n\t14238: 0x00008901,\n\t14239: 0x000088C9,\n\t14240: 0x00008995,\n\t14241: 0x00008998,\n\t14242: 0x00008997,\n\t14243: 0x000089DD,\n\t14244: 0x000089DA,\n\t14245: 0x000089DB,\n\t14246: 0x00008A4E,\n\t14247: 0x00008A4D,\n\t14248: 0x00008A39,\n\t14249: 0x00008A59,\n\t14250: 0x00008A40,\n\t14251: 0x00008A57,\n\t14252: 0x00008A58,\n\t14253: 0x00008A44,\n\t14254: 0x00008A45,\n\t14255: 0x00008A52,\n\t14256: 0x00008A48,\n\t14257: 0x00008A51,\n\t14258: 0x00008A4A,\n\t14259: 0x00008A4C,\n\t14260: 0x00008A4F,\n\t14261: 0x00008C5F,\n\t14262: 0x00008C81,\n\t14263: 0x00008C80,\n\t14264: 0x00008CBA,\n\t14265: 0x00008CBE,\n\t14266: 0x00008CB0,\n\t14267: 0x00008CB9,\n\t14268: 0x00008CB5,\n\t14269: 0x00008D84,\n\t14270: 0x00008D80,\n\t14271: 0x00008D89,\n\t14272: 0x00008DD8,\n\t14273: 0x00008DD3,\n\t14274: 0x00008DCD,\n\t14275: 0x00008DC7,\n\t14276: 0x00008DD6,\n\t14277: 0x00008DDC,\n\t14278: 0x00008DCF,\n\t14279: 0x00008DD5,\n\t14280: 0x00008DD9,\n\t14281: 0x00008DC8,\n\t14282: 0x00008DD7,\n\t14283: 0x00008DC5,\n\t14284: 0x00008EEF,\n\t14285: 0x00008EF7,\n\t14286: 0x00008EFA,\n\t14287: 0x00008EF9,\n\t14288: 0x00008EE6,\n\t14289: 0x00008EEE,\n\t14290: 0x00008EE5,\n\t14291: 0x00008EF5,\n\t14292: 0x00008EE7,\n\t14293: 0x00008EE8,\n\t14294: 0x00008EF6,\n\t14295: 0x00008EEB,\n\t14296: 0x00008EF1,\n\t14297: 0x00008EEC,\n\t14298: 0x00008EF4,\n\t14299: 0x00008EE9,\n\t14300: 0x0000902D,\n\t14301: 0x00009034,\n\t14302: 0x0000902F,\n\t14303: 0x00009106,\n\t14304: 0x0000912C,\n\t14305: 0x00009104,\n\t14306: 0x000090FF,\n\t14307: 0x000090FC,\n\t14308: 0x00009108,\n\t14309: 0x000090F9,\n\t14310: 0x000090FB,\n\t14311: 0x00009101,\n\t14312: 0x00009100,\n\t14313: 0x00009107,\n\t14314: 0x00009105,\n\t14315: 0x00009103,\n\t14316: 0x00009161,\n\t14317: 0x00009164,\n\t14318: 0x0000915F,\n\t14319: 0x00009162,\n\t14320: 0x00009160,\n\t14321: 0x00009201,\n\t14322: 0x0000920A,\n\t14323: 0x00009225,\n\t14324: 0x00009203,\n\t14325: 0x0000921A,\n\t14326: 0x00009226,\n\t14327: 0x0000920F,\n\t14328: 0x0000920C,\n\t14329: 0x00009200,\n\t14330: 0x00009212,\n\t14331: 0x000091FF,\n\t14332: 0x000091FD,\n\t14333: 0x00009206,\n\t14334: 0x00009204,\n\t14335: 0x00009227,\n\t14336: 0x00009202,\n\t14337: 0x0000921C,\n\t14338: 0x00009224,\n\t14339: 0x00009219,\n\t14340: 0x00009217,\n\t14341: 0x00009205,\n\t14342: 0x00009216,\n\t14343: 0x0000957B,\n\t14344: 0x0000958D,\n\t14345: 0x0000958C,\n\t14346: 0x00009590,\n\t14347: 0x00009687,\n\t14348: 0x0000967E,\n\t14349: 0x00009688,\n\t14350: 0x00009689,\n\t14351: 0x00009683,\n\t14352: 0x00009680,\n\t14353: 0x000096C2,\n\t14354: 0x000096C8,\n\t14355: 0x000096C3,\n\t14356: 0x000096F1,\n\t14357: 0x000096F0,\n\t14358: 0x0000976C,\n\t14359: 0x00009770,\n\t14360: 0x0000976E,\n\t14361: 0x00009807,\n\t14362: 0x000098A9,\n\t14363: 0x000098EB,\n\t14364: 0x00009CE6,\n\t14365: 0x00009EF9,\n\t14366: 0x00004E83,\n\t14367: 0x00004E84,\n\t14368: 0x00004EB6,\n\t14369: 0x000050BD,\n\t14370: 0x000050BF,\n\t14371: 0x000050C6,\n\t14372: 0x000050AE,\n\t14373: 0x000050C4,\n\t14374: 0x000050CA,\n\t14375: 0x000050B4,\n\t14376: 0x000050C8,\n\t14377: 0x000050C2,\n\t14378: 0x000050B0,\n\t14379: 0x000050C1,\n\t14380: 0x000050BA,\n\t14381: 0x000050B1,\n\t14382: 0x000050CB,\n\t14383: 0x000050C9,\n\t14384: 0x000050B6,\n\t14385: 0x000050B8,\n\t14386: 0x000051D7,\n\t14387: 0x0000527A,\n\t14388: 0x00005278,\n\t14389: 0x0000527B,\n\t14390: 0x0000527C,\n\t14391: 0x000055C3,\n\t14392: 0x000055DB,\n\t14393: 0x000055CC,\n\t14394: 0x000055D0,\n\t14395: 0x000055CB,\n\t14396: 0x000055CA,\n\t14397: 0x000055DD,\n\t14398: 0x000055C0,\n\t14399: 0x000055D4,\n\t14400: 0x000055C4,\n\t14401: 0x000055E9,\n\t14402: 0x000055BF,\n\t14403: 0x000055D2,\n\t14404: 0x0000558D,\n\t14405: 0x000055CF,\n\t14406: 0x000055D5,\n\t14407: 0x000055E2,\n\t14408: 0x000055D6,\n\t14409: 0x000055C8,\n\t14410: 0x000055F2,\n\t14411: 0x000055CD,\n\t14412: 0x000055D9,\n\t14413: 0x000055C2,\n\t14414: 0x00005714,\n\t14415: 0x00005853,\n\t14416: 0x00005868,\n\t14417: 0x00005864,\n\t14418: 0x0000584F,\n\t14419: 0x0000584D,\n\t14420: 0x00005849,\n\t14421: 0x0000586F,\n\t14422: 0x00005855,\n\t14423: 0x0000584E,\n\t14424: 0x0000585D,\n\t14425: 0x00005859,\n\t14426: 0x00005865,\n\t14427: 0x0000585B,\n\t14428: 0x0000583D,\n\t14429: 0x00005863,\n\t14430: 0x00005871,\n\t14431: 0x000058FC,\n\t14432: 0x00005AC7,\n\t14433: 0x00005AC4,\n\t14434: 0x00005ACB,\n\t14435: 0x00005ABA,\n\t14436: 0x00005AB8,\n\t14437: 0x00005AB1,\n\t14438: 0x00005AB5,\n\t14439: 0x00005AB0,\n\t14440: 0x00005ABF,\n\t14441: 0x00005AC8,\n\t14442: 0x00005ABB,\n\t14443: 0x00005AC6,\n\t14444: 0x00005AB7,\n\t14445: 0x00005AC0,\n\t14446: 0x00005ACA,\n\t14447: 0x00005AB4,\n\t14448: 0x00005AB6,\n\t14449: 0x00005ACD,\n\t14450: 0x00005AB9,\n\t14451: 0x00005A90,\n\t14452: 0x00005BD6,\n\t14453: 0x00005BD8,\n\t14454: 0x00005BD9,\n\t14455: 0x00005C1F,\n\t14456: 0x00005C33,\n\t14457: 0x00005D71,\n\t14458: 0x00005D63,\n\t14459: 0x00005D4A,\n\t14460: 0x00005D65,\n\t14461: 0x00005D72,\n\t14462: 0x00005D6C,\n\t14463: 0x00005D5E,\n\t14464: 0x00005D68,\n\t14465: 0x00005D67,\n\t14466: 0x00005D62,\n\t14467: 0x00005DF0,\n\t14468: 0x00005E4F,\n\t14469: 0x00005E4E,\n\t14470: 0x00005E4A,\n\t14471: 0x00005E4D,\n\t14472: 0x00005E4B,\n\t14473: 0x00005EC5,\n\t14474: 0x00005ECC,\n\t14475: 0x00005EC6,\n\t14476: 0x00005ECB,\n\t14477: 0x00005EC7,\n\t14478: 0x00005F40,\n\t14479: 0x00005FAF,\n\t14480: 0x00005FAD,\n\t14481: 0x000060F7,\n\t14482: 0x00006149,\n\t14483: 0x0000614A,\n\t14484: 0x0000612B,\n\t14485: 0x00006145,\n\t14486: 0x00006136,\n\t14487: 0x00006132,\n\t14488: 0x0000612E,\n\t14489: 0x00006146,\n\t14490: 0x0000612F,\n\t14491: 0x0000614F,\n\t14492: 0x00006129,\n\t14493: 0x00006140,\n\t14494: 0x00006220,\n\t14495: 0x00009168,\n\t14496: 0x00006223,\n\t14497: 0x00006225,\n\t14498: 0x00006224,\n\t14499: 0x000063C5,\n\t14500: 0x000063F1,\n\t14501: 0x000063EB,\n\t14502: 0x00006410,\n\t14503: 0x00006412,\n\t14504: 0x00006409,\n\t14505: 0x00006420,\n\t14506: 0x00006424,\n\t14507: 0x00006433,\n\t14508: 0x00006443,\n\t14509: 0x0000641F,\n\t14510: 0x00006415,\n\t14511: 0x00006418,\n\t14512: 0x00006439,\n\t14513: 0x00006437,\n\t14514: 0x00006422,\n\t14515: 0x00006423,\n\t14516: 0x0000640C,\n\t14517: 0x00006426,\n\t14518: 0x00006430,\n\t14519: 0x00006428,\n\t14520: 0x00006441,\n\t14521: 0x00006435,\n\t14522: 0x0000642F,\n\t14523: 0x0000640A,\n\t14524: 0x0000641A,\n\t14525: 0x00006440,\n\t14526: 0x00006425,\n\t14527: 0x00006427,\n\t14528: 0x0000640B,\n\t14529: 0x000063E7,\n\t14530: 0x0000641B,\n\t14531: 0x0000642E,\n\t14532: 0x00006421,\n\t14533: 0x0000640E,\n\t14534: 0x0000656F,\n\t14535: 0x00006592,\n\t14536: 0x000065D3,\n\t14537: 0x00006686,\n\t14538: 0x0000668C,\n\t14539: 0x00006695,\n\t14540: 0x00006690,\n\t14541: 0x0000668B,\n\t14542: 0x0000668A,\n\t14543: 0x00006699,\n\t14544: 0x00006694,\n\t14545: 0x00006678,\n\t14546: 0x00006720,\n\t14547: 0x00006966,\n\t14548: 0x0000695F,\n\t14549: 0x00006938,\n\t14550: 0x0000694E,\n\t14551: 0x00006962,\n\t14552: 0x00006971,\n\t14553: 0x0000693F,\n\t14554: 0x00006945,\n\t14555: 0x0000696A,\n\t14556: 0x00006939,\n\t14557: 0x00006942,\n\t14558: 0x00006957,\n\t14559: 0x00006959,\n\t14560: 0x0000697A,\n\t14561: 0x00006948,\n\t14562: 0x00006949,\n\t14563: 0x00006935,\n\t14564: 0x0000696C,\n\t14565: 0x00006933,\n\t14566: 0x0000693D,\n\t14567: 0x00006965,\n\t14568: 0x000068F0,\n\t14569: 0x00006978,\n\t14570: 0x00006934,\n\t14571: 0x00006969,\n\t14572: 0x00006940,\n\t14573: 0x0000696F,\n\t14574: 0x00006944,\n\t14575: 0x00006976,\n\t14576: 0x00006958,\n\t14577: 0x00006941,\n\t14578: 0x00006974,\n\t14579: 0x0000694C,\n\t14580: 0x0000693B,\n\t14581: 0x0000694B,\n\t14582: 0x00006937,\n\t14583: 0x0000695C,\n\t14584: 0x0000694F,\n\t14585: 0x00006951,\n\t14586: 0x00006932,\n\t14587: 0x00006952,\n\t14588: 0x0000692F,\n\t14589: 0x0000697B,\n\t14590: 0x0000693C,\n\t14591: 0x00006B46,\n\t14592: 0x00006B45,\n\t14593: 0x00006B43,\n\t14594: 0x00006B42,\n\t14595: 0x00006B48,\n\t14596: 0x00006B41,\n\t14597: 0x00006B9B,\n\t14598: 0x0000FA0D,\n\t14599: 0x00006BFB,\n\t14600: 0x00006BFC,\n\t14601: 0x00006BF9,\n\t14602: 0x00006BF7,\n\t14603: 0x00006BF8,\n\t14604: 0x00006E9B,\n\t14605: 0x00006ED6,\n\t14606: 0x00006EC8,\n\t14607: 0x00006E8F,\n\t14608: 0x00006EC0,\n\t14609: 0x00006E9F,\n\t14610: 0x00006E93,\n\t14611: 0x00006E94,\n\t14612: 0x00006EA0,\n\t14613: 0x00006EB1,\n\t14614: 0x00006EB9,\n\t14615: 0x00006EC6,\n\t14616: 0x00006ED2,\n\t14617: 0x00006EBD,\n\t14618: 0x00006EC1,\n\t14619: 0x00006E9E,\n\t14620: 0x00006EC9,\n\t14621: 0x00006EB7,\n\t14622: 0x00006EB0,\n\t14623: 0x00006ECD,\n\t14624: 0x00006EA6,\n\t14625: 0x00006ECF,\n\t14626: 0x00006EB2,\n\t14627: 0x00006EBE,\n\t14628: 0x00006EC3,\n\t14629: 0x00006EDC,\n\t14630: 0x00006ED8,\n\t14631: 0x00006E99,\n\t14632: 0x00006E92,\n\t14633: 0x00006E8E,\n\t14634: 0x00006E8D,\n\t14635: 0x00006EA4,\n\t14636: 0x00006EA1,\n\t14637: 0x00006EBF,\n\t14638: 0x00006EB3,\n\t14639: 0x00006ED0,\n\t14640: 0x00006ECA,\n\t14641: 0x00006E97,\n\t14642: 0x00006EAE,\n\t14643: 0x00006EA3,\n\t14644: 0x00007147,\n\t14645: 0x00007154,\n\t14646: 0x00007152,\n\t14647: 0x00007163,\n\t14648: 0x00007160,\n\t14649: 0x00007141,\n\t14650: 0x0000715D,\n\t14651: 0x00007162,\n\t14652: 0x00007172,\n\t14653: 0x00007178,\n\t14654: 0x0000716A,\n\t14655: 0x00007161,\n\t14656: 0x00007142,\n\t14657: 0x00007158,\n\t14658: 0x00007143,\n\t14659: 0x0000714B,\n\t14660: 0x00007170,\n\t14661: 0x0000715F,\n\t14662: 0x00007150,\n\t14663: 0x00007153,\n\t14664: 0x00007144,\n\t14665: 0x0000714D,\n\t14666: 0x0000715A,\n\t14667: 0x0000724F,\n\t14668: 0x0000728D,\n\t14669: 0x0000728C,\n\t14670: 0x00007291,\n\t14671: 0x00007290,\n\t14672: 0x0000728E,\n\t14673: 0x0000733C,\n\t14674: 0x00007342,\n\t14675: 0x0000733B,\n\t14676: 0x0000733A,\n\t14677: 0x00007340,\n\t14678: 0x0000734A,\n\t14679: 0x00007349,\n\t14680: 0x00007444,\n\t14681: 0x0000744A,\n\t14682: 0x0000744B,\n\t14683: 0x00007452,\n\t14684: 0x00007451,\n\t14685: 0x00007457,\n\t14686: 0x00007440,\n\t14687: 0x0000744F,\n\t14688: 0x00007450,\n\t14689: 0x0000744E,\n\t14690: 0x00007442,\n\t14691: 0x00007446,\n\t14692: 0x0000744D,\n\t14693: 0x00007454,\n\t14694: 0x000074E1,\n\t14695: 0x000074FF,\n\t14696: 0x000074FE,\n\t14697: 0x000074FD,\n\t14698: 0x0000751D,\n\t14699: 0x00007579,\n\t14700: 0x00007577,\n\t14701: 0x00006983,\n\t14702: 0x000075EF,\n\t14703: 0x0000760F,\n\t14704: 0x00007603,\n\t14705: 0x000075F7,\n\t14706: 0x000075FE,\n\t14707: 0x000075FC,\n\t14708: 0x000075F9,\n\t14709: 0x000075F8,\n\t14710: 0x00007610,\n\t14711: 0x000075FB,\n\t14712: 0x000075F6,\n\t14713: 0x000075ED,\n\t14714: 0x000075F5,\n\t14715: 0x000075FD,\n\t14716: 0x00007699,\n\t14717: 0x000076B5,\n\t14718: 0x000076DD,\n\t14719: 0x00007755,\n\t14720: 0x0000775F,\n\t14721: 0x00007760,\n\t14722: 0x00007752,\n\t14723: 0x00007756,\n\t14724: 0x0000775A,\n\t14725: 0x00007769,\n\t14726: 0x00007767,\n\t14727: 0x00007754,\n\t14728: 0x00007759,\n\t14729: 0x0000776D,\n\t14730: 0x000077E0,\n\t14731: 0x00007887,\n\t14732: 0x0000789A,\n\t14733: 0x00007894,\n\t14734: 0x0000788F,\n\t14735: 0x00007884,\n\t14736: 0x00007895,\n\t14737: 0x00007885,\n\t14738: 0x00007886,\n\t14739: 0x000078A1,\n\t14740: 0x00007883,\n\t14741: 0x00007879,\n\t14742: 0x00007899,\n\t14743: 0x00007880,\n\t14744: 0x00007896,\n\t14745: 0x0000787B,\n\t14746: 0x0000797C,\n\t14747: 0x00007982,\n\t14748: 0x0000797D,\n\t14749: 0x00007979,\n\t14750: 0x00007A11,\n\t14751: 0x00007A18,\n\t14752: 0x00007A19,\n\t14753: 0x00007A12,\n\t14754: 0x00007A17,\n\t14755: 0x00007A15,\n\t14756: 0x00007A22,\n\t14757: 0x00007A13,\n\t14758: 0x00007A1B,\n\t14759: 0x00007A10,\n\t14760: 0x00007AA3,\n\t14761: 0x00007AA2,\n\t14762: 0x00007A9E,\n\t14763: 0x00007AEB,\n\t14764: 0x00007B66,\n\t14765: 0x00007B64,\n\t14766: 0x00007B6D,\n\t14767: 0x00007B74,\n\t14768: 0x00007B69,\n\t14769: 0x00007B72,\n\t14770: 0x00007B65,\n\t14771: 0x00007B73,\n\t14772: 0x00007B71,\n\t14773: 0x00007B70,\n\t14774: 0x00007B61,\n\t14775: 0x00007B78,\n\t14776: 0x00007B76,\n\t14777: 0x00007B63,\n\t14778: 0x00007CB2,\n\t14779: 0x00007CB4,\n\t14780: 0x00007CAF,\n\t14781: 0x00007D88,\n\t14782: 0x00007D86,\n\t14783: 0x00007D80,\n\t14784: 0x00007D8D,\n\t14785: 0x00007D7F,\n\t14786: 0x00007D85,\n\t14787: 0x00007D7A,\n\t14788: 0x00007D8E,\n\t14789: 0x00007D7B,\n\t14790: 0x00007D83,\n\t14791: 0x00007D7C,\n\t14792: 0x00007D8C,\n\t14793: 0x00007D94,\n\t14794: 0x00007D84,\n\t14795: 0x00007D7D,\n\t14796: 0x00007D92,\n\t14797: 0x00007F6D,\n\t14798: 0x00007F6B,\n\t14799: 0x00007F67,\n\t14800: 0x00007F68,\n\t14801: 0x00007F6C,\n\t14802: 0x00007FA6,\n\t14803: 0x00007FA5,\n\t14804: 0x00007FA7,\n\t14805: 0x00007FDB,\n\t14806: 0x00007FDC,\n\t14807: 0x00008021,\n\t14808: 0x00008164,\n\t14809: 0x00008160,\n\t14810: 0x00008177,\n\t14811: 0x0000815C,\n\t14812: 0x00008169,\n\t14813: 0x0000815B,\n\t14814: 0x00008162,\n\t14815: 0x00008172,\n\t14816: 0x00006721,\n\t14817: 0x0000815E,\n\t14818: 0x00008176,\n\t14819: 0x00008167,\n\t14820: 0x0000816F,\n\t14821: 0x00008144,\n\t14822: 0x00008161,\n\t14823: 0x0000821D,\n\t14824: 0x00008249,\n\t14825: 0x00008244,\n\t14826: 0x00008240,\n\t14827: 0x00008242,\n\t14828: 0x00008245,\n\t14829: 0x000084F1,\n\t14830: 0x0000843F,\n\t14831: 0x00008456,\n\t14832: 0x00008476,\n\t14833: 0x00008479,\n\t14834: 0x0000848F,\n\t14835: 0x0000848D,\n\t14836: 0x00008465,\n\t14837: 0x00008451,\n\t14838: 0x00008440,\n\t14839: 0x00008486,\n\t14840: 0x00008467,\n\t14841: 0x00008430,\n\t14842: 0x0000844D,\n\t14843: 0x0000847D,\n\t14844: 0x0000845A,\n\t14845: 0x00008459,\n\t14846: 0x00008474,\n\t14847: 0x00008473,\n\t14848: 0x0000845D,\n\t14849: 0x00008507,\n\t14850: 0x0000845E,\n\t14851: 0x00008437,\n\t14852: 0x0000843A,\n\t14853: 0x00008434,\n\t14854: 0x0000847A,\n\t14855: 0x00008443,\n\t14856: 0x00008478,\n\t14857: 0x00008432,\n\t14858: 0x00008445,\n\t14859: 0x00008429,\n\t14860: 0x000083D9,\n\t14861: 0x0000844B,\n\t14862: 0x0000842F,\n\t14863: 0x00008442,\n\t14864: 0x0000842D,\n\t14865: 0x0000845F,\n\t14866: 0x00008470,\n\t14867: 0x00008439,\n\t14868: 0x0000844E,\n\t14869: 0x0000844C,\n\t14870: 0x00008452,\n\t14871: 0x0000846F,\n\t14872: 0x000084C5,\n\t14873: 0x0000848E,\n\t14874: 0x0000843B,\n\t14875: 0x00008447,\n\t14876: 0x00008436,\n\t14877: 0x00008433,\n\t14878: 0x00008468,\n\t14879: 0x0000847E,\n\t14880: 0x00008444,\n\t14881: 0x0000842B,\n\t14882: 0x00008460,\n\t14883: 0x00008454,\n\t14884: 0x0000846E,\n\t14885: 0x00008450,\n\t14886: 0x0000870B,\n\t14887: 0x00008704,\n\t14888: 0x000086F7,\n\t14889: 0x0000870C,\n\t14890: 0x000086FA,\n\t14891: 0x000086D6,\n\t14892: 0x000086F5,\n\t14893: 0x0000874D,\n\t14894: 0x000086F8,\n\t14895: 0x0000870E,\n\t14896: 0x00008709,\n\t14897: 0x00008701,\n\t14898: 0x000086F6,\n\t14899: 0x0000870D,\n\t14900: 0x00008705,\n\t14901: 0x000088D6,\n\t14902: 0x000088CB,\n\t14903: 0x000088CD,\n\t14904: 0x000088CE,\n\t14905: 0x000088DE,\n\t14906: 0x000088DB,\n\t14907: 0x000088DA,\n\t14908: 0x000088CC,\n\t14909: 0x000088D0,\n\t14910: 0x00008985,\n\t14911: 0x0000899B,\n\t14912: 0x000089DF,\n\t14913: 0x000089E5,\n\t14914: 0x000089E4,\n\t14915: 0x000089E1,\n\t14916: 0x000089E0,\n\t14917: 0x000089E2,\n\t14918: 0x000089DC,\n\t14919: 0x000089E6,\n\t14920: 0x00008A76,\n\t14921: 0x00008A86,\n\t14922: 0x00008A7F,\n\t14923: 0x00008A61,\n\t14924: 0x00008A3F,\n\t14925: 0x00008A77,\n\t14926: 0x00008A82,\n\t14927: 0x00008A84,\n\t14928: 0x00008A75,\n\t14929: 0x00008A83,\n\t14930: 0x00008A81,\n\t14931: 0x00008A74,\n\t14932: 0x00008A7A,\n\t14933: 0x00008C3C,\n\t14934: 0x00008C4B,\n\t14935: 0x00008C4A,\n\t14936: 0x00008C65,\n\t14937: 0x00008C64,\n\t14938: 0x00008C66,\n\t14939: 0x00008C86,\n\t14940: 0x00008C84,\n\t14941: 0x00008C85,\n\t14942: 0x00008CCC,\n\t14943: 0x00008D68,\n\t14944: 0x00008D69,\n\t14945: 0x00008D91,\n\t14946: 0x00008D8C,\n\t14947: 0x00008D8E,\n\t14948: 0x00008D8F,\n\t14949: 0x00008D8D,\n\t14950: 0x00008D93,\n\t14951: 0x00008D94,\n\t14952: 0x00008D90,\n\t14953: 0x00008D92,\n\t14954: 0x00008DF0,\n\t14955: 0x00008DE0,\n\t14956: 0x00008DEC,\n\t14957: 0x00008DF1,\n\t14958: 0x00008DEE,\n\t14959: 0x00008DD0,\n\t14960: 0x00008DE9,\n\t14961: 0x00008DE3,\n\t14962: 0x00008DE2,\n\t14963: 0x00008DE7,\n\t14964: 0x00008DF2,\n\t14965: 0x00008DEB,\n\t14966: 0x00008DF4,\n\t14967: 0x00008F06,\n\t14968: 0x00008EFF,\n\t14969: 0x00008F01,\n\t14970: 0x00008F00,\n\t14971: 0x00008F05,\n\t14972: 0x00008F07,\n\t14973: 0x00008F08,\n\t14974: 0x00008F02,\n\t14975: 0x00008F0B,\n\t14976: 0x00009052,\n\t14977: 0x0000903F,\n\t14978: 0x00009044,\n\t14979: 0x00009049,\n\t14980: 0x0000903D,\n\t14981: 0x00009110,\n\t14982: 0x0000910D,\n\t14983: 0x0000910F,\n\t14984: 0x00009111,\n\t14985: 0x00009116,\n\t14986: 0x00009114,\n\t14987: 0x0000910B,\n\t14988: 0x0000910E,\n\t14989: 0x0000916E,\n\t14990: 0x0000916F,\n\t14991: 0x00009248,\n\t14992: 0x00009252,\n\t14993: 0x00009230,\n\t14994: 0x0000923A,\n\t14995: 0x00009266,\n\t14996: 0x00009233,\n\t14997: 0x00009265,\n\t14998: 0x0000925E,\n\t14999: 0x00009283,\n\t15000: 0x0000922E,\n\t15001: 0x0000924A,\n\t15002: 0x00009246,\n\t15003: 0x0000926D,\n\t15004: 0x0000926C,\n\t15005: 0x0000924F,\n\t15006: 0x00009260,\n\t15007: 0x00009267,\n\t15008: 0x0000926F,\n\t15009: 0x00009236,\n\t15010: 0x00009261,\n\t15011: 0x00009270,\n\t15012: 0x00009231,\n\t15013: 0x00009254,\n\t15014: 0x00009263,\n\t15015: 0x00009250,\n\t15016: 0x00009272,\n\t15017: 0x0000924E,\n\t15018: 0x00009253,\n\t15019: 0x0000924C,\n\t15020: 0x00009256,\n\t15021: 0x00009232,\n\t15022: 0x0000959F,\n\t15023: 0x0000959C,\n\t15024: 0x0000959E,\n\t15025: 0x0000959B,\n\t15026: 0x00009692,\n\t15027: 0x00009693,\n\t15028: 0x00009691,\n\t15029: 0x00009697,\n\t15030: 0x000096CE,\n\t15031: 0x000096FA,\n\t15032: 0x000096FD,\n\t15033: 0x000096F8,\n\t15034: 0x000096F5,\n\t15035: 0x00009773,\n\t15036: 0x00009777,\n\t15037: 0x00009778,\n\t15038: 0x00009772,\n\t15039: 0x0000980F,\n\t15040: 0x0000980D,\n\t15041: 0x0000980E,\n\t15042: 0x000098AC,\n\t15043: 0x000098F6,\n\t15044: 0x000098F9,\n\t15045: 0x000099AF,\n\t15046: 0x000099B2,\n\t15047: 0x000099B0,\n\t15048: 0x000099B5,\n\t15049: 0x00009AAD,\n\t15050: 0x00009AAB,\n\t15051: 0x00009B5B,\n\t15052: 0x00009CEA,\n\t15053: 0x00009CED,\n\t15054: 0x00009CE7,\n\t15055: 0x00009E80,\n\t15056: 0x00009EFD,\n\t15057: 0x000050E6,\n\t15058: 0x000050D4,\n\t15059: 0x000050D7,\n\t15060: 0x000050E8,\n\t15061: 0x000050F3,\n\t15062: 0x000050DB,\n\t15063: 0x000050EA,\n\t15064: 0x000050DD,\n\t15065: 0x000050E4,\n\t15066: 0x000050D3,\n\t15067: 0x000050EC,\n\t15068: 0x000050F0,\n\t15069: 0x000050EF,\n\t15070: 0x000050E3,\n\t15071: 0x000050E0,\n\t15072: 0x000051D8,\n\t15073: 0x00005280,\n\t15074: 0x00005281,\n\t15075: 0x000052E9,\n\t15076: 0x000052EB,\n\t15077: 0x00005330,\n\t15078: 0x000053AC,\n\t15079: 0x00005627,\n\t15080: 0x00005615,\n\t15081: 0x0000560C,\n\t15082: 0x00005612,\n\t15083: 0x000055FC,\n\t15084: 0x0000560F,\n\t15085: 0x0000561C,\n\t15086: 0x00005601,\n\t15087: 0x00005613,\n\t15088: 0x00005602,\n\t15089: 0x000055FA,\n\t15090: 0x0000561D,\n\t15091: 0x00005604,\n\t15092: 0x000055FF,\n\t15093: 0x000055F9,\n\t15094: 0x00005889,\n\t15095: 0x0000587C,\n\t15096: 0x00005890,\n\t15097: 0x00005898,\n\t15098: 0x00005886,\n\t15099: 0x00005881,\n\t15100: 0x0000587F,\n\t15101: 0x00005874,\n\t15102: 0x0000588B,\n\t15103: 0x0000587A,\n\t15104: 0x00005887,\n\t15105: 0x00005891,\n\t15106: 0x0000588E,\n\t15107: 0x00005876,\n\t15108: 0x00005882,\n\t15109: 0x00005888,\n\t15110: 0x0000587B,\n\t15111: 0x00005894,\n\t15112: 0x0000588F,\n\t15113: 0x000058FE,\n\t15114: 0x0000596B,\n\t15115: 0x00005ADC,\n\t15116: 0x00005AEE,\n\t15117: 0x00005AE5,\n\t15118: 0x00005AD5,\n\t15119: 0x00005AEA,\n\t15120: 0x00005ADA,\n\t15121: 0x00005AED,\n\t15122: 0x00005AEB,\n\t15123: 0x00005AF3,\n\t15124: 0x00005AE2,\n\t15125: 0x00005AE0,\n\t15126: 0x00005ADB,\n\t15127: 0x00005AEC,\n\t15128: 0x00005ADE,\n\t15129: 0x00005ADD,\n\t15130: 0x00005AD9,\n\t15131: 0x00005AE8,\n\t15132: 0x00005ADF,\n\t15133: 0x00005B77,\n\t15134: 0x00005BE0,\n\t15135: 0x00005BE3,\n\t15136: 0x00005C63,\n\t15137: 0x00005D82,\n\t15138: 0x00005D80,\n\t15139: 0x00005D7D,\n\t15140: 0x00005D86,\n\t15141: 0x00005D7A,\n\t15142: 0x00005D81,\n\t15143: 0x00005D77,\n\t15144: 0x00005D8A,\n\t15145: 0x00005D89,\n\t15146: 0x00005D88,\n\t15147: 0x00005D7E,\n\t15148: 0x00005D7C,\n\t15149: 0x00005D8D,\n\t15150: 0x00005D79,\n\t15151: 0x00005D7F,\n\t15152: 0x00005E58,\n\t15153: 0x00005E59,\n\t15154: 0x00005E53,\n\t15155: 0x00005ED8,\n\t15156: 0x00005ED1,\n\t15157: 0x00005ED7,\n\t15158: 0x00005ECE,\n\t15159: 0x00005EDC,\n\t15160: 0x00005ED5,\n\t15161: 0x00005ED9,\n\t15162: 0x00005ED2,\n\t15163: 0x00005ED4,\n\t15164: 0x00005F44,\n\t15165: 0x00005F43,\n\t15166: 0x00005F6F,\n\t15167: 0x00005FB6,\n\t15168: 0x0000612C,\n\t15169: 0x00006128,\n\t15170: 0x00006141,\n\t15171: 0x0000615E,\n\t15172: 0x00006171,\n\t15173: 0x00006173,\n\t15174: 0x00006152,\n\t15175: 0x00006153,\n\t15176: 0x00006172,\n\t15177: 0x0000616C,\n\t15178: 0x00006180,\n\t15179: 0x00006174,\n\t15180: 0x00006154,\n\t15181: 0x0000617A,\n\t15182: 0x0000615B,\n\t15183: 0x00006165,\n\t15184: 0x0000613B,\n\t15185: 0x0000616A,\n\t15186: 0x00006161,\n\t15187: 0x00006156,\n\t15188: 0x00006229,\n\t15189: 0x00006227,\n\t15190: 0x0000622B,\n\t15191: 0x0000642B,\n\t15192: 0x0000644D,\n\t15193: 0x0000645B,\n\t15194: 0x0000645D,\n\t15195: 0x00006474,\n\t15196: 0x00006476,\n\t15197: 0x00006472,\n\t15198: 0x00006473,\n\t15199: 0x0000647D,\n\t15200: 0x00006475,\n\t15201: 0x00006466,\n\t15202: 0x000064A6,\n\t15203: 0x0000644E,\n\t15204: 0x00006482,\n\t15205: 0x0000645E,\n\t15206: 0x0000645C,\n\t15207: 0x0000644B,\n\t15208: 0x00006453,\n\t15209: 0x00006460,\n\t15210: 0x00006450,\n\t15211: 0x0000647F,\n\t15212: 0x0000643F,\n\t15213: 0x0000646C,\n\t15214: 0x0000646B,\n\t15215: 0x00006459,\n\t15216: 0x00006465,\n\t15217: 0x00006477,\n\t15218: 0x00006573,\n\t15219: 0x000065A0,\n\t15220: 0x000066A1,\n\t15221: 0x000066A0,\n\t15222: 0x0000669F,\n\t15223: 0x00006705,\n\t15224: 0x00006704,\n\t15225: 0x00006722,\n\t15226: 0x000069B1,\n\t15227: 0x000069B6,\n\t15228: 0x000069C9,\n\t15229: 0x000069A0,\n\t15230: 0x000069CE,\n\t15231: 0x00006996,\n\t15232: 0x000069B0,\n\t15233: 0x000069AC,\n\t15234: 0x000069BC,\n\t15235: 0x00006991,\n\t15236: 0x00006999,\n\t15237: 0x0000698E,\n\t15238: 0x000069A7,\n\t15239: 0x0000698D,\n\t15240: 0x000069A9,\n\t15241: 0x000069BE,\n\t15242: 0x000069AF,\n\t15243: 0x000069BF,\n\t15244: 0x000069C4,\n\t15245: 0x000069BD,\n\t15246: 0x000069A4,\n\t15247: 0x000069D4,\n\t15248: 0x000069B9,\n\t15249: 0x000069CA,\n\t15250: 0x0000699A,\n\t15251: 0x000069CF,\n\t15252: 0x000069B3,\n\t15253: 0x00006993,\n\t15254: 0x000069AA,\n\t15255: 0x000069A1,\n\t15256: 0x0000699E,\n\t15257: 0x000069D9,\n\t15258: 0x00006997,\n\t15259: 0x00006990,\n\t15260: 0x000069C2,\n\t15261: 0x000069B5,\n\t15262: 0x000069A5,\n\t15263: 0x000069C6,\n\t15264: 0x00006B4A,\n\t15265: 0x00006B4D,\n\t15266: 0x00006B4B,\n\t15267: 0x00006B9E,\n\t15268: 0x00006B9F,\n\t15269: 0x00006BA0,\n\t15270: 0x00006BC3,\n\t15271: 0x00006BC4,\n\t15272: 0x00006BFE,\n\t15273: 0x00006ECE,\n\t15274: 0x00006EF5,\n\t15275: 0x00006EF1,\n\t15276: 0x00006F03,\n\t15277: 0x00006F25,\n\t15278: 0x00006EF8,\n\t15279: 0x00006F37,\n\t15280: 0x00006EFB,\n\t15281: 0x00006F2E,\n\t15282: 0x00006F09,\n\t15283: 0x00006F4E,\n\t15284: 0x00006F19,\n\t15285: 0x00006F1A,\n\t15286: 0x00006F27,\n\t15287: 0x00006F18,\n\t15288: 0x00006F3B,\n\t15289: 0x00006F12,\n\t15290: 0x00006EED,\n\t15291: 0x00006F0A,\n\t15292: 0x00006F36,\n\t15293: 0x00006F73,\n\t15294: 0x00006EF9,\n\t15295: 0x00006EEE,\n\t15296: 0x00006F2D,\n\t15297: 0x00006F40,\n\t15298: 0x00006F30,\n\t15299: 0x00006F3C,\n\t15300: 0x00006F35,\n\t15301: 0x00006EEB,\n\t15302: 0x00006F07,\n\t15303: 0x00006F0E,\n\t15304: 0x00006F43,\n\t15305: 0x00006F05,\n\t15306: 0x00006EFD,\n\t15307: 0x00006EF6,\n\t15308: 0x00006F39,\n\t15309: 0x00006F1C,\n\t15310: 0x00006EFC,\n\t15311: 0x00006F3A,\n\t15312: 0x00006F1F,\n\t15313: 0x00006F0D,\n\t15314: 0x00006F1E,\n\t15315: 0x00006F08,\n\t15316: 0x00006F21,\n\t15317: 0x00007187,\n\t15318: 0x00007190,\n\t15319: 0x00007189,\n\t15320: 0x00007180,\n\t15321: 0x00007185,\n\t15322: 0x00007182,\n\t15323: 0x0000718F,\n\t15324: 0x0000717B,\n\t15325: 0x00007186,\n\t15326: 0x00007181,\n\t15327: 0x00007197,\n\t15328: 0x00007244,\n\t15329: 0x00007253,\n\t15330: 0x00007297,\n\t15331: 0x00007295,\n\t15332: 0x00007293,\n\t15333: 0x00007343,\n\t15334: 0x0000734D,\n\t15335: 0x00007351,\n\t15336: 0x0000734C,\n\t15337: 0x00007462,\n\t15338: 0x00007473,\n\t15339: 0x00007471,\n\t15340: 0x00007475,\n\t15341: 0x00007472,\n\t15342: 0x00007467,\n\t15343: 0x0000746E,\n\t15344: 0x00007500,\n\t15345: 0x00007502,\n\t15346: 0x00007503,\n\t15347: 0x0000757D,\n\t15348: 0x00007590,\n\t15349: 0x00007616,\n\t15350: 0x00007608,\n\t15351: 0x0000760C,\n\t15352: 0x00007615,\n\t15353: 0x00007611,\n\t15354: 0x0000760A,\n\t15355: 0x00007614,\n\t15356: 0x000076B8,\n\t15357: 0x00007781,\n\t15358: 0x0000777C,\n\t15359: 0x00007785,\n\t15360: 0x00007782,\n\t15361: 0x0000776E,\n\t15362: 0x00007780,\n\t15363: 0x0000776F,\n\t15364: 0x0000777E,\n\t15365: 0x00007783,\n\t15366: 0x000078B2,\n\t15367: 0x000078AA,\n\t15368: 0x000078B4,\n\t15369: 0x000078AD,\n\t15370: 0x000078A8,\n\t15371: 0x0000787E,\n\t15372: 0x000078AB,\n\t15373: 0x0000789E,\n\t15374: 0x000078A5,\n\t15375: 0x000078A0,\n\t15376: 0x000078AC,\n\t15377: 0x000078A2,\n\t15378: 0x000078A4,\n\t15379: 0x00007998,\n\t15380: 0x0000798A,\n\t15381: 0x0000798B,\n\t15382: 0x00007996,\n\t15383: 0x00007995,\n\t15384: 0x00007994,\n\t15385: 0x00007993,\n\t15386: 0x00007997,\n\t15387: 0x00007988,\n\t15388: 0x00007992,\n\t15389: 0x00007990,\n\t15390: 0x00007A2B,\n\t15391: 0x00007A4A,\n\t15392: 0x00007A30,\n\t15393: 0x00007A2F,\n\t15394: 0x00007A28,\n\t15395: 0x00007A26,\n\t15396: 0x00007AA8,\n\t15397: 0x00007AAB,\n\t15398: 0x00007AAC,\n\t15399: 0x00007AEE,\n\t15400: 0x00007B88,\n\t15401: 0x00007B9C,\n\t15402: 0x00007B8A,\n\t15403: 0x00007B91,\n\t15404: 0x00007B90,\n\t15405: 0x00007B96,\n\t15406: 0x00007B8D,\n\t15407: 0x00007B8C,\n\t15408: 0x00007B9B,\n\t15409: 0x00007B8E,\n\t15410: 0x00007B85,\n\t15411: 0x00007B98,\n\t15412: 0x00005284,\n\t15413: 0x00007B99,\n\t15414: 0x00007BA4,\n\t15415: 0x00007B82,\n\t15416: 0x00007CBB,\n\t15417: 0x00007CBF,\n\t15418: 0x00007CBC,\n\t15419: 0x00007CBA,\n\t15420: 0x00007DA7,\n\t15421: 0x00007DB7,\n\t15422: 0x00007DC2,\n\t15423: 0x00007DA3,\n\t15424: 0x00007DAA,\n\t15425: 0x00007DC1,\n\t15426: 0x00007DC0,\n\t15427: 0x00007DC5,\n\t15428: 0x00007D9D,\n\t15429: 0x00007DCE,\n\t15430: 0x00007DC4,\n\t15431: 0x00007DC6,\n\t15432: 0x00007DCB,\n\t15433: 0x00007DCC,\n\t15434: 0x00007DAF,\n\t15435: 0x00007DB9,\n\t15436: 0x00007D96,\n\t15437: 0x00007DBC,\n\t15438: 0x00007D9F,\n\t15439: 0x00007DA6,\n\t15440: 0x00007DAE,\n\t15441: 0x00007DA9,\n\t15442: 0x00007DA1,\n\t15443: 0x00007DC9,\n\t15444: 0x00007F73,\n\t15445: 0x00007FE2,\n\t15446: 0x00007FE3,\n\t15447: 0x00007FE5,\n\t15448: 0x00007FDE,\n\t15449: 0x00008024,\n\t15450: 0x0000805D,\n\t15451: 0x0000805C,\n\t15452: 0x00008189,\n\t15453: 0x00008186,\n\t15454: 0x00008183,\n\t15455: 0x00008187,\n\t15456: 0x0000818D,\n\t15457: 0x0000818C,\n\t15458: 0x0000818B,\n\t15459: 0x00008215,\n\t15460: 0x00008497,\n\t15461: 0x000084A4,\n\t15462: 0x000084A1,\n\t15463: 0x0000849F,\n\t15464: 0x000084BA,\n\t15465: 0x000084CE,\n\t15466: 0x000084C2,\n\t15467: 0x000084AC,\n\t15468: 0x000084AE,\n\t15469: 0x000084AB,\n\t15470: 0x000084B9,\n\t15471: 0x000084B4,\n\t15472: 0x000084C1,\n\t15473: 0x000084CD,\n\t15474: 0x000084AA,\n\t15475: 0x0000849A,\n\t15476: 0x000084B1,\n\t15477: 0x000084D0,\n\t15478: 0x0000849D,\n\t15479: 0x000084A7,\n\t15480: 0x000084BB,\n\t15481: 0x000084A2,\n\t15482: 0x00008494,\n\t15483: 0x000084C7,\n\t15484: 0x000084CC,\n\t15485: 0x0000849B,\n\t15486: 0x000084A9,\n\t15487: 0x000084AF,\n\t15488: 0x000084A8,\n\t15489: 0x000084D6,\n\t15490: 0x00008498,\n\t15491: 0x000084B6,\n\t15492: 0x000084CF,\n\t15493: 0x000084A0,\n\t15494: 0x000084D7,\n\t15495: 0x000084D4,\n\t15496: 0x000084D2,\n\t15497: 0x000084DB,\n\t15498: 0x000084B0,\n\t15499: 0x00008491,\n\t15500: 0x00008661,\n\t15501: 0x00008733,\n\t15502: 0x00008723,\n\t15503: 0x00008728,\n\t15504: 0x0000876B,\n\t15505: 0x00008740,\n\t15506: 0x0000872E,\n\t15507: 0x0000871E,\n\t15508: 0x00008721,\n\t15509: 0x00008719,\n\t15510: 0x0000871B,\n\t15511: 0x00008743,\n\t15512: 0x0000872C,\n\t15513: 0x00008741,\n\t15514: 0x0000873E,\n\t15515: 0x00008746,\n\t15516: 0x00008720,\n\t15517: 0x00008732,\n\t15518: 0x0000872A,\n\t15519: 0x0000872D,\n\t15520: 0x0000873C,\n\t15521: 0x00008712,\n\t15522: 0x0000873A,\n\t15523: 0x00008731,\n\t15524: 0x00008735,\n\t15525: 0x00008742,\n\t15526: 0x00008726,\n\t15527: 0x00008727,\n\t15528: 0x00008738,\n\t15529: 0x00008724,\n\t15530: 0x0000871A,\n\t15531: 0x00008730,\n\t15532: 0x00008711,\n\t15533: 0x000088F7,\n\t15534: 0x000088E7,\n\t15535: 0x000088F1,\n\t15536: 0x000088F2,\n\t15537: 0x000088FA,\n\t15538: 0x000088FE,\n\t15539: 0x000088EE,\n\t15540: 0x000088FC,\n\t15541: 0x000088F6,\n\t15542: 0x000088FB,\n\t15543: 0x000088F0,\n\t15544: 0x000088EC,\n\t15545: 0x000088EB,\n\t15546: 0x0000899D,\n\t15547: 0x000089A1,\n\t15548: 0x0000899F,\n\t15549: 0x0000899E,\n\t15550: 0x000089E9,\n\t15551: 0x000089EB,\n\t15552: 0x000089E8,\n\t15553: 0x00008AAB,\n\t15554: 0x00008A99,\n\t15555: 0x00008A8B,\n\t15556: 0x00008A92,\n\t15557: 0x00008A8F,\n\t15558: 0x00008A96,\n\t15559: 0x00008C3D,\n\t15560: 0x00008C68,\n\t15561: 0x00008C69,\n\t15562: 0x00008CD5,\n\t15563: 0x00008CCF,\n\t15564: 0x00008CD7,\n\t15565: 0x00008D96,\n\t15566: 0x00008E09,\n\t15567: 0x00008E02,\n\t15568: 0x00008DFF,\n\t15569: 0x00008E0D,\n\t15570: 0x00008DFD,\n\t15571: 0x00008E0A,\n\t15572: 0x00008E03,\n\t15573: 0x00008E07,\n\t15574: 0x00008E06,\n\t15575: 0x00008E05,\n\t15576: 0x00008DFE,\n\t15577: 0x00008E00,\n\t15578: 0x00008E04,\n\t15579: 0x00008F10,\n\t15580: 0x00008F11,\n\t15581: 0x00008F0E,\n\t15582: 0x00008F0D,\n\t15583: 0x00009123,\n\t15584: 0x0000911C,\n\t15585: 0x00009120,\n\t15586: 0x00009122,\n\t15587: 0x0000911F,\n\t15588: 0x0000911D,\n\t15589: 0x0000911A,\n\t15590: 0x00009124,\n\t15591: 0x00009121,\n\t15592: 0x0000911B,\n\t15593: 0x0000917A,\n\t15594: 0x00009172,\n\t15595: 0x00009179,\n\t15596: 0x00009173,\n\t15597: 0x000092A5,\n\t15598: 0x000092A4,\n\t15599: 0x00009276,\n\t15600: 0x0000929B,\n\t15601: 0x0000927A,\n\t15602: 0x000092A0,\n\t15603: 0x00009294,\n\t15604: 0x000092AA,\n\t15605: 0x0000928D,\n\t15606: 0x000092A6,\n\t15607: 0x0000929A,\n\t15608: 0x000092AB,\n\t15609: 0x00009279,\n\t15610: 0x00009297,\n\t15611: 0x0000927F,\n\t15612: 0x000092A3,\n\t15613: 0x000092EE,\n\t15614: 0x0000928E,\n\t15615: 0x00009282,\n\t15616: 0x00009295,\n\t15617: 0x000092A2,\n\t15618: 0x0000927D,\n\t15619: 0x00009288,\n\t15620: 0x000092A1,\n\t15621: 0x0000928A,\n\t15622: 0x00009286,\n\t15623: 0x0000928C,\n\t15624: 0x00009299,\n\t15625: 0x000092A7,\n\t15626: 0x0000927E,\n\t15627: 0x00009287,\n\t15628: 0x000092A9,\n\t15629: 0x0000929D,\n\t15630: 0x0000928B,\n\t15631: 0x0000922D,\n\t15632: 0x0000969E,\n\t15633: 0x000096A1,\n\t15634: 0x000096FF,\n\t15635: 0x00009758,\n\t15636: 0x0000977D,\n\t15637: 0x0000977A,\n\t15638: 0x0000977E,\n\t15639: 0x00009783,\n\t15640: 0x00009780,\n\t15641: 0x00009782,\n\t15642: 0x0000977B,\n\t15643: 0x00009784,\n\t15644: 0x00009781,\n\t15645: 0x0000977F,\n\t15646: 0x000097CE,\n\t15647: 0x000097CD,\n\t15648: 0x00009816,\n\t15649: 0x000098AD,\n\t15650: 0x000098AE,\n\t15651: 0x00009902,\n\t15652: 0x00009900,\n\t15653: 0x00009907,\n\t15654: 0x0000999D,\n\t15655: 0x0000999C,\n\t15656: 0x000099C3,\n\t15657: 0x000099B9,\n\t15658: 0x000099BB,\n\t15659: 0x000099BA,\n\t15660: 0x000099C2,\n\t15661: 0x000099BD,\n\t15662: 0x000099C7,\n\t15663: 0x00009AB1,\n\t15664: 0x00009AE3,\n\t15665: 0x00009AE7,\n\t15666: 0x00009B3E,\n\t15667: 0x00009B3F,\n\t15668: 0x00009B60,\n\t15669: 0x00009B61,\n\t15670: 0x00009B5F,\n\t15671: 0x00009CF1,\n\t15672: 0x00009CF2,\n\t15673: 0x00009CF5,\n\t15674: 0x00009EA7,\n\t15675: 0x000050FF,\n\t15676: 0x00005103,\n\t15677: 0x00005130,\n\t15678: 0x000050F8,\n\t15679: 0x00005106,\n\t15680: 0x00005107,\n\t15681: 0x000050F6,\n\t15682: 0x000050FE,\n\t15683: 0x0000510B,\n\t15684: 0x0000510C,\n\t15685: 0x000050FD,\n\t15686: 0x0000510A,\n\t15687: 0x0000528B,\n\t15688: 0x0000528C,\n\t15689: 0x000052F1,\n\t15690: 0x000052EF,\n\t15691: 0x00005648,\n\t15692: 0x00005642,\n\t15693: 0x0000564C,\n\t15694: 0x00005635,\n\t15695: 0x00005641,\n\t15696: 0x0000564A,\n\t15697: 0x00005649,\n\t15698: 0x00005646,\n\t15699: 0x00005658,\n\t15700: 0x0000565A,\n\t15701: 0x00005640,\n\t15702: 0x00005633,\n\t15703: 0x0000563D,\n\t15704: 0x0000562C,\n\t15705: 0x0000563E,\n\t15706: 0x00005638,\n\t15707: 0x0000562A,\n\t15708: 0x0000563A,\n\t15709: 0x0000571A,\n\t15710: 0x000058AB,\n\t15711: 0x0000589D,\n\t15712: 0x000058B1,\n\t15713: 0x000058A0,\n\t15714: 0x000058A3,\n\t15715: 0x000058AF,\n\t15716: 0x000058AC,\n\t15717: 0x000058A5,\n\t15718: 0x000058A1,\n\t15719: 0x000058FF,\n\t15720: 0x00005AFF,\n\t15721: 0x00005AF4,\n\t15722: 0x00005AFD,\n\t15723: 0x00005AF7,\n\t15724: 0x00005AF6,\n\t15725: 0x00005B03,\n\t15726: 0x00005AF8,\n\t15727: 0x00005B02,\n\t15728: 0x00005AF9,\n\t15729: 0x00005B01,\n\t15730: 0x00005B07,\n\t15731: 0x00005B05,\n\t15732: 0x00005B0F,\n\t15733: 0x00005C67,\n\t15734: 0x00005D99,\n\t15735: 0x00005D97,\n\t15736: 0x00005D9F,\n\t15737: 0x00005D92,\n\t15738: 0x00005DA2,\n\t15739: 0x00005D93,\n\t15740: 0x00005D95,\n\t15741: 0x00005DA0,\n\t15742: 0x00005D9C,\n\t15743: 0x00005DA1,\n\t15744: 0x00005D9A,\n\t15745: 0x00005D9E,\n\t15746: 0x00005E69,\n\t15747: 0x00005E5D,\n\t15748: 0x00005E60,\n\t15749: 0x00005E5C,\n\t15750: 0x00007DF3,\n\t15751: 0x00005EDB,\n\t15752: 0x00005EDE,\n\t15753: 0x00005EE1,\n\t15754: 0x00005F49,\n\t15755: 0x00005FB2,\n\t15756: 0x0000618B,\n\t15757: 0x00006183,\n\t15758: 0x00006179,\n\t15759: 0x000061B1,\n\t15760: 0x000061B0,\n\t15761: 0x000061A2,\n\t15762: 0x00006189,\n\t15763: 0x0000619B,\n\t15764: 0x00006193,\n\t15765: 0x000061AF,\n\t15766: 0x000061AD,\n\t15767: 0x0000619F,\n\t15768: 0x00006192,\n\t15769: 0x000061AA,\n\t15770: 0x000061A1,\n\t15771: 0x0000618D,\n\t15772: 0x00006166,\n\t15773: 0x000061B3,\n\t15774: 0x0000622D,\n\t15775: 0x0000646E,\n\t15776: 0x00006470,\n\t15777: 0x00006496,\n\t15778: 0x000064A0,\n\t15779: 0x00006485,\n\t15780: 0x00006497,\n\t15781: 0x0000649C,\n\t15782: 0x0000648F,\n\t15783: 0x0000648B,\n\t15784: 0x0000648A,\n\t15785: 0x0000648C,\n\t15786: 0x000064A3,\n\t15787: 0x0000649F,\n\t15788: 0x00006468,\n\t15789: 0x000064B1,\n\t15790: 0x00006498,\n\t15791: 0x00006576,\n\t15792: 0x0000657A,\n\t15793: 0x00006579,\n\t15794: 0x0000657B,\n\t15795: 0x000065B2,\n\t15796: 0x000065B3,\n\t15797: 0x000066B5,\n\t15798: 0x000066B0,\n\t15799: 0x000066A9,\n\t15800: 0x000066B2,\n\t15801: 0x000066B7,\n\t15802: 0x000066AA,\n\t15803: 0x000066AF,\n\t15804: 0x00006A00,\n\t15805: 0x00006A06,\n\t15806: 0x00006A17,\n\t15807: 0x000069E5,\n\t15808: 0x000069F8,\n\t15809: 0x00006A15,\n\t15810: 0x000069F1,\n\t15811: 0x000069E4,\n\t15812: 0x00006A20,\n\t15813: 0x000069FF,\n\t15814: 0x000069EC,\n\t15815: 0x000069E2,\n\t15816: 0x00006A1B,\n\t15817: 0x00006A1D,\n\t15818: 0x000069FE,\n\t15819: 0x00006A27,\n\t15820: 0x000069F2,\n\t15821: 0x000069EE,\n\t15822: 0x00006A14,\n\t15823: 0x000069F7,\n\t15824: 0x000069E7,\n\t15825: 0x00006A40,\n\t15826: 0x00006A08,\n\t15827: 0x000069E6,\n\t15828: 0x000069FB,\n\t15829: 0x00006A0D,\n\t15830: 0x000069FC,\n\t15831: 0x000069EB,\n\t15832: 0x00006A09,\n\t15833: 0x00006A04,\n\t15834: 0x00006A18,\n\t15835: 0x00006A25,\n\t15836: 0x00006A0F,\n\t15837: 0x000069F6,\n\t15838: 0x00006A26,\n\t15839: 0x00006A07,\n\t15840: 0x000069F4,\n\t15841: 0x00006A16,\n\t15842: 0x00006B51,\n\t15843: 0x00006BA5,\n\t15844: 0x00006BA3,\n\t15845: 0x00006BA2,\n\t15846: 0x00006BA6,\n\t15847: 0x00006C01,\n\t15848: 0x00006C00,\n\t15849: 0x00006BFF,\n\t15850: 0x00006C02,\n\t15851: 0x00006F41,\n\t15852: 0x00006F26,\n\t15853: 0x00006F7E,\n\t15854: 0x00006F87,\n\t15855: 0x00006FC6,\n\t15856: 0x00006F92,\n\t15857: 0x00006F8D,\n\t15858: 0x00006F89,\n\t15859: 0x00006F8C,\n\t15860: 0x00006F62,\n\t15861: 0x00006F4F,\n\t15862: 0x00006F85,\n\t15863: 0x00006F5A,\n\t15864: 0x00006F96,\n\t15865: 0x00006F76,\n\t15866: 0x00006F6C,\n\t15867: 0x00006F82,\n\t15868: 0x00006F55,\n\t15869: 0x00006F72,\n\t15870: 0x00006F52,\n\t15871: 0x00006F50,\n\t15872: 0x00006F57,\n\t15873: 0x00006F94,\n\t15874: 0x00006F93,\n\t15875: 0x00006F5D,\n\t15876: 0x00006F00,\n\t15877: 0x00006F61,\n\t15878: 0x00006F6B,\n\t15879: 0x00006F7D,\n\t15880: 0x00006F67,\n\t15881: 0x00006F90,\n\t15882: 0x00006F53,\n\t15883: 0x00006F8B,\n\t15884: 0x00006F69,\n\t15885: 0x00006F7F,\n\t15886: 0x00006F95,\n\t15887: 0x00006F63,\n\t15888: 0x00006F77,\n\t15889: 0x00006F6A,\n\t15890: 0x00006F7B,\n\t15891: 0x000071B2,\n\t15892: 0x000071AF,\n\t15893: 0x0000719B,\n\t15894: 0x000071B0,\n\t15895: 0x000071A0,\n\t15896: 0x0000719A,\n\t15897: 0x000071A9,\n\t15898: 0x000071B5,\n\t15899: 0x0000719D,\n\t15900: 0x000071A5,\n\t15901: 0x0000719E,\n\t15902: 0x000071A4,\n\t15903: 0x000071A1,\n\t15904: 0x000071AA,\n\t15905: 0x0000719C,\n\t15906: 0x000071A7,\n\t15907: 0x000071B3,\n\t15908: 0x00007298,\n\t15909: 0x0000729A,\n\t15910: 0x00007358,\n\t15911: 0x00007352,\n\t15912: 0x0000735E,\n\t15913: 0x0000735F,\n\t15914: 0x00007360,\n\t15915: 0x0000735D,\n\t15916: 0x0000735B,\n\t15917: 0x00007361,\n\t15918: 0x0000735A,\n\t15919: 0x00007359,\n\t15920: 0x00007362,\n\t15921: 0x00007487,\n\t15922: 0x00007489,\n\t15923: 0x0000748A,\n\t15924: 0x00007486,\n\t15925: 0x00007481,\n\t15926: 0x0000747D,\n\t15927: 0x00007485,\n\t15928: 0x00007488,\n\t15929: 0x0000747C,\n\t15930: 0x00007479,\n\t15931: 0x00007508,\n\t15932: 0x00007507,\n\t15933: 0x0000757E,\n\t15934: 0x00007625,\n\t15935: 0x0000761E,\n\t15936: 0x00007619,\n\t15937: 0x0000761D,\n\t15938: 0x0000761C,\n\t15939: 0x00007623,\n\t15940: 0x0000761A,\n\t15941: 0x00007628,\n\t15942: 0x0000761B,\n\t15943: 0x0000769C,\n\t15944: 0x0000769D,\n\t15945: 0x0000769E,\n\t15946: 0x0000769B,\n\t15947: 0x0000778D,\n\t15948: 0x0000778F,\n\t15949: 0x00007789,\n\t15950: 0x00007788,\n\t15951: 0x000078CD,\n\t15952: 0x000078BB,\n\t15953: 0x000078CF,\n\t15954: 0x000078CC,\n\t15955: 0x000078D1,\n\t15956: 0x000078CE,\n\t15957: 0x000078D4,\n\t15958: 0x000078C8,\n\t15959: 0x000078C3,\n\t15960: 0x000078C4,\n\t15961: 0x000078C9,\n\t15962: 0x0000799A,\n\t15963: 0x000079A1,\n\t15964: 0x000079A0,\n\t15965: 0x0000799C,\n\t15966: 0x000079A2,\n\t15967: 0x0000799B,\n\t15968: 0x00006B76,\n\t15969: 0x00007A39,\n\t15970: 0x00007AB2,\n\t15971: 0x00007AB4,\n\t15972: 0x00007AB3,\n\t15973: 0x00007BB7,\n\t15974: 0x00007BCB,\n\t15975: 0x00007BBE,\n\t15976: 0x00007BAC,\n\t15977: 0x00007BCE,\n\t15978: 0x00007BAF,\n\t15979: 0x00007BB9,\n\t15980: 0x00007BCA,\n\t15981: 0x00007BB5,\n\t15982: 0x00007CC5,\n\t15983: 0x00007CC8,\n\t15984: 0x00007CCC,\n\t15985: 0x00007CCB,\n\t15986: 0x00007DF7,\n\t15987: 0x00007DDB,\n\t15988: 0x00007DEA,\n\t15989: 0x00007DE7,\n\t15990: 0x00007DD7,\n\t15991: 0x00007DE1,\n\t15992: 0x00007E03,\n\t15993: 0x00007DFA,\n\t15994: 0x00007DE6,\n\t15995: 0x00007DF6,\n\t15996: 0x00007DF1,\n\t15997: 0x00007DF0,\n\t15998: 0x00007DEE,\n\t15999: 0x00007DDF,\n\t16000: 0x00007F76,\n\t16001: 0x00007FAC,\n\t16002: 0x00007FB0,\n\t16003: 0x00007FAD,\n\t16004: 0x00007FED,\n\t16005: 0x00007FEB,\n\t16006: 0x00007FEA,\n\t16007: 0x00007FEC,\n\t16008: 0x00007FE6,\n\t16009: 0x00007FE8,\n\t16010: 0x00008064,\n\t16011: 0x00008067,\n\t16012: 0x000081A3,\n\t16013: 0x0000819F,\n\t16014: 0x0000819E,\n\t16015: 0x00008195,\n\t16016: 0x000081A2,\n\t16017: 0x00008199,\n\t16018: 0x00008197,\n\t16019: 0x00008216,\n\t16020: 0x0000824F,\n\t16021: 0x00008253,\n\t16022: 0x00008252,\n\t16023: 0x00008250,\n\t16024: 0x0000824E,\n\t16025: 0x00008251,\n\t16026: 0x00008524,\n\t16027: 0x0000853B,\n\t16028: 0x0000850F,\n\t16029: 0x00008500,\n\t16030: 0x00008529,\n\t16031: 0x0000850E,\n\t16032: 0x00008509,\n\t16033: 0x0000850D,\n\t16034: 0x0000851F,\n\t16035: 0x0000850A,\n\t16036: 0x00008527,\n\t16037: 0x0000851C,\n\t16038: 0x000084FB,\n\t16039: 0x0000852B,\n\t16040: 0x000084FA,\n\t16041: 0x00008508,\n\t16042: 0x0000850C,\n\t16043: 0x000084F4,\n\t16044: 0x0000852A,\n\t16045: 0x000084F2,\n\t16046: 0x00008515,\n\t16047: 0x000084F7,\n\t16048: 0x000084EB,\n\t16049: 0x000084F3,\n\t16050: 0x000084FC,\n\t16051: 0x00008512,\n\t16052: 0x000084EA,\n\t16053: 0x000084E9,\n\t16054: 0x00008516,\n\t16055: 0x000084FE,\n\t16056: 0x00008528,\n\t16057: 0x0000851D,\n\t16058: 0x0000852E,\n\t16059: 0x00008502,\n\t16060: 0x000084FD,\n\t16061: 0x0000851E,\n\t16062: 0x000084F6,\n\t16063: 0x00008531,\n\t16064: 0x00008526,\n\t16065: 0x000084E7,\n\t16066: 0x000084E8,\n\t16067: 0x000084F0,\n\t16068: 0x000084EF,\n\t16069: 0x000084F9,\n\t16070: 0x00008518,\n\t16071: 0x00008520,\n\t16072: 0x00008530,\n\t16073: 0x0000850B,\n\t16074: 0x00008519,\n\t16075: 0x0000852F,\n\t16076: 0x00008662,\n\t16077: 0x00008756,\n\t16078: 0x00008763,\n\t16079: 0x00008764,\n\t16080: 0x00008777,\n\t16081: 0x000087E1,\n\t16082: 0x00008773,\n\t16083: 0x00008758,\n\t16084: 0x00008754,\n\t16085: 0x0000875B,\n\t16086: 0x00008752,\n\t16087: 0x00008761,\n\t16088: 0x0000875A,\n\t16089: 0x00008751,\n\t16090: 0x0000875E,\n\t16091: 0x0000876D,\n\t16092: 0x0000876A,\n\t16093: 0x00008750,\n\t16094: 0x0000874E,\n\t16095: 0x0000875F,\n\t16096: 0x0000875D,\n\t16097: 0x0000876F,\n\t16098: 0x0000876C,\n\t16099: 0x0000877A,\n\t16100: 0x0000876E,\n\t16101: 0x0000875C,\n\t16102: 0x00008765,\n\t16103: 0x0000874F,\n\t16104: 0x0000877B,\n\t16105: 0x00008775,\n\t16106: 0x00008762,\n\t16107: 0x00008767,\n\t16108: 0x00008769,\n\t16109: 0x0000885A,\n\t16110: 0x00008905,\n\t16111: 0x0000890C,\n\t16112: 0x00008914,\n\t16113: 0x0000890B,\n\t16114: 0x00008917,\n\t16115: 0x00008918,\n\t16116: 0x00008919,\n\t16117: 0x00008906,\n\t16118: 0x00008916,\n\t16119: 0x00008911,\n\t16120: 0x0000890E,\n\t16121: 0x00008909,\n\t16122: 0x000089A2,\n\t16123: 0x000089A4,\n\t16124: 0x000089A3,\n\t16125: 0x000089ED,\n\t16126: 0x000089F0,\n\t16127: 0x000089EC,\n\t16128: 0x00008ACF,\n\t16129: 0x00008AC6,\n\t16130: 0x00008AB8,\n\t16131: 0x00008AD3,\n\t16132: 0x00008AD1,\n\t16133: 0x00008AD4,\n\t16134: 0x00008AD5,\n\t16135: 0x00008ABB,\n\t16136: 0x00008AD7,\n\t16137: 0x00008ABE,\n\t16138: 0x00008AC0,\n\t16139: 0x00008AC5,\n\t16140: 0x00008AD8,\n\t16141: 0x00008AC3,\n\t16142: 0x00008ABA,\n\t16143: 0x00008ABD,\n\t16144: 0x00008AD9,\n\t16145: 0x00008C3E,\n\t16146: 0x00008C4D,\n\t16147: 0x00008C8F,\n\t16148: 0x00008CE5,\n\t16149: 0x00008CDF,\n\t16150: 0x00008CD9,\n\t16151: 0x00008CE8,\n\t16152: 0x00008CDA,\n\t16153: 0x00008CDD,\n\t16154: 0x00008CE7,\n\t16155: 0x00008DA0,\n\t16156: 0x00008D9C,\n\t16157: 0x00008DA1,\n\t16158: 0x00008D9B,\n\t16159: 0x00008E20,\n\t16160: 0x00008E23,\n\t16161: 0x00008E25,\n\t16162: 0x00008E24,\n\t16163: 0x00008E2E,\n\t16164: 0x00008E15,\n\t16165: 0x00008E1B,\n\t16166: 0x00008E16,\n\t16167: 0x00008E11,\n\t16168: 0x00008E19,\n\t16169: 0x00008E26,\n\t16170: 0x00008E27,\n\t16171: 0x00008E14,\n\t16172: 0x00008E12,\n\t16173: 0x00008E18,\n\t16174: 0x00008E13,\n\t16175: 0x00008E1C,\n\t16176: 0x00008E17,\n\t16177: 0x00008E1A,\n\t16178: 0x00008F2C,\n\t16179: 0x00008F24,\n\t16180: 0x00008F18,\n\t16181: 0x00008F1A,\n\t16182: 0x00008F20,\n\t16183: 0x00008F23,\n\t16184: 0x00008F16,\n\t16185: 0x00008F17,\n\t16186: 0x00009073,\n\t16187: 0x00009070,\n\t16188: 0x0000906F,\n\t16189: 0x00009067,\n\t16190: 0x0000906B,\n\t16191: 0x0000912F,\n\t16192: 0x0000912B,\n\t16193: 0x00009129,\n\t16194: 0x0000912A,\n\t16195: 0x00009132,\n\t16196: 0x00009126,\n\t16197: 0x0000912E,\n\t16198: 0x00009185,\n\t16199: 0x00009186,\n\t16200: 0x0000918A,\n\t16201: 0x00009181,\n\t16202: 0x00009182,\n\t16203: 0x00009184,\n\t16204: 0x00009180,\n\t16205: 0x000092D0,\n\t16206: 0x000092C3,\n\t16207: 0x000092C4,\n\t16208: 0x000092C0,\n\t16209: 0x000092D9,\n\t16210: 0x000092B6,\n\t16211: 0x000092CF,\n\t16212: 0x000092F1,\n\t16213: 0x000092DF,\n\t16214: 0x000092D8,\n\t16215: 0x000092E9,\n\t16216: 0x000092D7,\n\t16217: 0x000092DD,\n\t16218: 0x000092CC,\n\t16219: 0x000092EF,\n\t16220: 0x000092C2,\n\t16221: 0x000092E8,\n\t16222: 0x000092CA,\n\t16223: 0x000092C8,\n\t16224: 0x000092CE,\n\t16225: 0x000092E6,\n\t16226: 0x000092CD,\n\t16227: 0x000092D5,\n\t16228: 0x000092C9,\n\t16229: 0x000092E0,\n\t16230: 0x000092DE,\n\t16231: 0x000092E7,\n\t16232: 0x000092D1,\n\t16233: 0x000092D3,\n\t16234: 0x000092B5,\n\t16235: 0x000092E1,\n\t16236: 0x000092C6,\n\t16237: 0x000092B4,\n\t16238: 0x0000957C,\n\t16239: 0x000095AC,\n\t16240: 0x000095AB,\n\t16241: 0x000095AE,\n\t16242: 0x000095B0,\n\t16243: 0x000096A4,\n\t16244: 0x000096A2,\n\t16245: 0x000096D3,\n\t16246: 0x00009705,\n\t16247: 0x00009708,\n\t16248: 0x00009702,\n\t16249: 0x0000975A,\n\t16250: 0x0000978A,\n\t16251: 0x0000978E,\n\t16252: 0x00009788,\n\t16253: 0x000097D0,\n\t16254: 0x000097CF,\n\t16255: 0x0000981E,\n\t16256: 0x0000981D,\n\t16257: 0x00009826,\n\t16258: 0x00009829,\n\t16259: 0x00009828,\n\t16260: 0x00009820,\n\t16261: 0x0000981B,\n\t16262: 0x00009827,\n\t16263: 0x000098B2,\n\t16264: 0x00009908,\n\t16265: 0x000098FA,\n\t16266: 0x00009911,\n\t16267: 0x00009914,\n\t16268: 0x00009916,\n\t16269: 0x00009917,\n\t16270: 0x00009915,\n\t16271: 0x000099DC,\n\t16272: 0x000099CD,\n\t16273: 0x000099CF,\n\t16274: 0x000099D3,\n\t16275: 0x000099D4,\n\t16276: 0x000099CE,\n\t16277: 0x000099C9,\n\t16278: 0x000099D6,\n\t16279: 0x000099D8,\n\t16280: 0x000099CB,\n\t16281: 0x000099D7,\n\t16282: 0x000099CC,\n\t16283: 0x00009AB3,\n\t16284: 0x00009AEC,\n\t16285: 0x00009AEB,\n\t16286: 0x00009AF3,\n\t16287: 0x00009AF2,\n\t16288: 0x00009AF1,\n\t16289: 0x00009B46,\n\t16290: 0x00009B43,\n\t16291: 0x00009B67,\n\t16292: 0x00009B74,\n\t16293: 0x00009B71,\n\t16294: 0x00009B66,\n\t16295: 0x00009B76,\n\t16296: 0x00009B75,\n\t16297: 0x00009B70,\n\t16298: 0x00009B68,\n\t16299: 0x00009B64,\n\t16300: 0x00009B6C,\n\t16301: 0x00009CFC,\n\t16302: 0x00009CFA,\n\t16303: 0x00009CFD,\n\t16304: 0x00009CFF,\n\t16305: 0x00009CF7,\n\t16306: 0x00009D07,\n\t16307: 0x00009D00,\n\t16308: 0x00009CF9,\n\t16309: 0x00009CFB,\n\t16310: 0x00009D08,\n\t16311: 0x00009D05,\n\t16312: 0x00009D04,\n\t16313: 0x00009E83,\n\t16314: 0x00009ED3,\n\t16315: 0x00009F0F,\n\t16316: 0x00009F10,\n\t16317: 0x0000511C,\n\t16318: 0x00005113,\n\t16319: 0x00005117,\n\t16320: 0x0000511A,\n\t16321: 0x00005111,\n\t16322: 0x000051DE,\n\t16323: 0x00005334,\n\t16324: 0x000053E1,\n\t16325: 0x00005670,\n\t16326: 0x00005660,\n\t16327: 0x0000566E,\n\t16328: 0x00005673,\n\t16329: 0x00005666,\n\t16330: 0x00005663,\n\t16331: 0x0000566D,\n\t16332: 0x00005672,\n\t16333: 0x0000565E,\n\t16334: 0x00005677,\n\t16335: 0x0000571C,\n\t16336: 0x0000571B,\n\t16337: 0x000058C8,\n\t16338: 0x000058BD,\n\t16339: 0x000058C9,\n\t16340: 0x000058BF,\n\t16341: 0x000058BA,\n\t16342: 0x000058C2,\n\t16343: 0x000058BC,\n\t16344: 0x000058C6,\n\t16345: 0x00005B17,\n\t16346: 0x00005B19,\n\t16347: 0x00005B1B,\n\t16348: 0x00005B21,\n\t16349: 0x00005B14,\n\t16350: 0x00005B13,\n\t16351: 0x00005B10,\n\t16352: 0x00005B16,\n\t16353: 0x00005B28,\n\t16354: 0x00005B1A,\n\t16355: 0x00005B20,\n\t16356: 0x00005B1E,\n\t16357: 0x00005BEF,\n\t16358: 0x00005DAC,\n\t16359: 0x00005DB1,\n\t16360: 0x00005DA9,\n\t16361: 0x00005DA7,\n\t16362: 0x00005DB5,\n\t16363: 0x00005DB0,\n\t16364: 0x00005DAE,\n\t16365: 0x00005DAA,\n\t16366: 0x00005DA8,\n\t16367: 0x00005DB2,\n\t16368: 0x00005DAD,\n\t16369: 0x00005DAF,\n\t16370: 0x00005DB4,\n\t16371: 0x00005E67,\n\t16372: 0x00005E68,\n\t16373: 0x00005E66,\n\t16374: 0x00005E6F,\n\t16375: 0x00005EE9,\n\t16376: 0x00005EE7,\n\t16377: 0x00005EE6,\n\t16378: 0x00005EE8,\n\t16379: 0x00005EE5,\n\t16380: 0x00005F4B,\n\t16381: 0x00005FBC,\n\t16382: 0x0000619D,\n\t16383: 0x000061A8,\n\t16384: 0x00006196,\n\t16385: 0x000061C5,\n\t16386: 0x000061B4,\n\t16387: 0x000061C6,\n\t16388: 0x000061C1,\n\t16389: 0x000061CC,\n\t16390: 0x000061BA,\n\t16391: 0x000061BF,\n\t16392: 0x000061B8,\n\t16393: 0x0000618C,\n\t16394: 0x000064D7,\n\t16395: 0x000064D6,\n\t16396: 0x000064D0,\n\t16397: 0x000064CF,\n\t16398: 0x000064C9,\n\t16399: 0x000064BD,\n\t16400: 0x00006489,\n\t16401: 0x000064C3,\n\t16402: 0x000064DB,\n\t16403: 0x000064F3,\n\t16404: 0x000064D9,\n\t16405: 0x00006533,\n\t16406: 0x0000657F,\n\t16407: 0x0000657C,\n\t16408: 0x000065A2,\n\t16409: 0x000066C8,\n\t16410: 0x000066BE,\n\t16411: 0x000066C0,\n\t16412: 0x000066CA,\n\t16413: 0x000066CB,\n\t16414: 0x000066CF,\n\t16415: 0x000066BD,\n\t16416: 0x000066BB,\n\t16417: 0x000066BA,\n\t16418: 0x000066CC,\n\t16419: 0x00006723,\n\t16420: 0x00006A34,\n\t16421: 0x00006A66,\n\t16422: 0x00006A49,\n\t16423: 0x00006A67,\n\t16424: 0x00006A32,\n\t16425: 0x00006A68,\n\t16426: 0x00006A3E,\n\t16427: 0x00006A5D,\n\t16428: 0x00006A6D,\n\t16429: 0x00006A76,\n\t16430: 0x00006A5B,\n\t16431: 0x00006A51,\n\t16432: 0x00006A28,\n\t16433: 0x00006A5A,\n\t16434: 0x00006A3B,\n\t16435: 0x00006A3F,\n\t16436: 0x00006A41,\n\t16437: 0x00006A6A,\n\t16438: 0x00006A64,\n\t16439: 0x00006A50,\n\t16440: 0x00006A4F,\n\t16441: 0x00006A54,\n\t16442: 0x00006A6F,\n\t16443: 0x00006A69,\n\t16444: 0x00006A60,\n\t16445: 0x00006A3C,\n\t16446: 0x00006A5E,\n\t16447: 0x00006A56,\n\t16448: 0x00006A55,\n\t16449: 0x00006A4D,\n\t16450: 0x00006A4E,\n\t16451: 0x00006A46,\n\t16452: 0x00006B55,\n\t16453: 0x00006B54,\n\t16454: 0x00006B56,\n\t16455: 0x00006BA7,\n\t16456: 0x00006BAA,\n\t16457: 0x00006BAB,\n\t16458: 0x00006BC8,\n\t16459: 0x00006BC7,\n\t16460: 0x00006C04,\n\t16461: 0x00006C03,\n\t16462: 0x00006C06,\n\t16463: 0x00006FAD,\n\t16464: 0x00006FCB,\n\t16465: 0x00006FA3,\n\t16466: 0x00006FC7,\n\t16467: 0x00006FBC,\n\t16468: 0x00006FCE,\n\t16469: 0x00006FC8,\n\t16470: 0x00006F5E,\n\t16471: 0x00006FC4,\n\t16472: 0x00006FBD,\n\t16473: 0x00006F9E,\n\t16474: 0x00006FCA,\n\t16475: 0x00006FA8,\n\t16476: 0x00007004,\n\t16477: 0x00006FA5,\n\t16478: 0x00006FAE,\n\t16479: 0x00006FBA,\n\t16480: 0x00006FAC,\n\t16481: 0x00006FAA,\n\t16482: 0x00006FCF,\n\t16483: 0x00006FBF,\n\t16484: 0x00006FB8,\n\t16485: 0x00006FA2,\n\t16486: 0x00006FC9,\n\t16487: 0x00006FAB,\n\t16488: 0x00006FCD,\n\t16489: 0x00006FAF,\n\t16490: 0x00006FB2,\n\t16491: 0x00006FB0,\n\t16492: 0x000071C5,\n\t16493: 0x000071C2,\n\t16494: 0x000071BF,\n\t16495: 0x000071B8,\n\t16496: 0x000071D6,\n\t16497: 0x000071C0,\n\t16498: 0x000071C1,\n\t16499: 0x000071CB,\n\t16500: 0x000071D4,\n\t16501: 0x000071CA,\n\t16502: 0x000071C7,\n\t16503: 0x000071CF,\n\t16504: 0x000071BD,\n\t16505: 0x000071D8,\n\t16506: 0x000071BC,\n\t16507: 0x000071C6,\n\t16508: 0x000071DA,\n\t16509: 0x000071DB,\n\t16510: 0x0000729D,\n\t16511: 0x0000729E,\n\t16512: 0x00007369,\n\t16513: 0x00007366,\n\t16514: 0x00007367,\n\t16515: 0x0000736C,\n\t16516: 0x00007365,\n\t16517: 0x0000736B,\n\t16518: 0x0000736A,\n\t16519: 0x0000747F,\n\t16520: 0x0000749A,\n\t16521: 0x000074A0,\n\t16522: 0x00007494,\n\t16523: 0x00007492,\n\t16524: 0x00007495,\n\t16525: 0x000074A1,\n\t16526: 0x0000750B,\n\t16527: 0x00007580,\n\t16528: 0x0000762F,\n\t16529: 0x0000762D,\n\t16530: 0x00007631,\n\t16531: 0x0000763D,\n\t16532: 0x00007633,\n\t16533: 0x0000763C,\n\t16534: 0x00007635,\n\t16535: 0x00007632,\n\t16536: 0x00007630,\n\t16537: 0x000076BB,\n\t16538: 0x000076E6,\n\t16539: 0x0000779A,\n\t16540: 0x0000779D,\n\t16541: 0x000077A1,\n\t16542: 0x0000779C,\n\t16543: 0x0000779B,\n\t16544: 0x000077A2,\n\t16545: 0x000077A3,\n\t16546: 0x00007795,\n\t16547: 0x00007799,\n\t16548: 0x00007797,\n\t16549: 0x000078DD,\n\t16550: 0x000078E9,\n\t16551: 0x000078E5,\n\t16552: 0x000078EA,\n\t16553: 0x000078DE,\n\t16554: 0x000078E3,\n\t16555: 0x000078DB,\n\t16556: 0x000078E1,\n\t16557: 0x000078E2,\n\t16558: 0x000078ED,\n\t16559: 0x000078DF,\n\t16560: 0x000078E0,\n\t16561: 0x000079A4,\n\t16562: 0x00007A44,\n\t16563: 0x00007A48,\n\t16564: 0x00007A47,\n\t16565: 0x00007AB6,\n\t16566: 0x00007AB8,\n\t16567: 0x00007AB5,\n\t16568: 0x00007AB1,\n\t16569: 0x00007AB7,\n\t16570: 0x00007BDE,\n\t16571: 0x00007BE3,\n\t16572: 0x00007BE7,\n\t16573: 0x00007BDD,\n\t16574: 0x00007BD5,\n\t16575: 0x00007BE5,\n\t16576: 0x00007BDA,\n\t16577: 0x00007BE8,\n\t16578: 0x00007BF9,\n\t16579: 0x00007BD4,\n\t16580: 0x00007BEA,\n\t16581: 0x00007BE2,\n\t16582: 0x00007BDC,\n\t16583: 0x00007BEB,\n\t16584: 0x00007BD8,\n\t16585: 0x00007BDF,\n\t16586: 0x00007CD2,\n\t16587: 0x00007CD4,\n\t16588: 0x00007CD7,\n\t16589: 0x00007CD0,\n\t16590: 0x00007CD1,\n\t16591: 0x00007E12,\n\t16592: 0x00007E21,\n\t16593: 0x00007E17,\n\t16594: 0x00007E0C,\n\t16595: 0x00007E1F,\n\t16596: 0x00007E20,\n\t16597: 0x00007E13,\n\t16598: 0x00007E0E,\n\t16599: 0x00007E1C,\n\t16600: 0x00007E15,\n\t16601: 0x00007E1A,\n\t16602: 0x00007E22,\n\t16603: 0x00007E0B,\n\t16604: 0x00007E0F,\n\t16605: 0x00007E16,\n\t16606: 0x00007E0D,\n\t16607: 0x00007E14,\n\t16608: 0x00007E25,\n\t16609: 0x00007E24,\n\t16610: 0x00007F43,\n\t16611: 0x00007F7B,\n\t16612: 0x00007F7C,\n\t16613: 0x00007F7A,\n\t16614: 0x00007FB1,\n\t16615: 0x00007FEF,\n\t16616: 0x0000802A,\n\t16617: 0x00008029,\n\t16618: 0x0000806C,\n\t16619: 0x000081B1,\n\t16620: 0x000081A6,\n\t16621: 0x000081AE,\n\t16622: 0x000081B9,\n\t16623: 0x000081B5,\n\t16624: 0x000081AB,\n\t16625: 0x000081B0,\n\t16626: 0x000081AC,\n\t16627: 0x000081B4,\n\t16628: 0x000081B2,\n\t16629: 0x000081B7,\n\t16630: 0x000081A7,\n\t16631: 0x000081F2,\n\t16632: 0x00008255,\n\t16633: 0x00008256,\n\t16634: 0x00008257,\n\t16635: 0x00008556,\n\t16636: 0x00008545,\n\t16637: 0x0000856B,\n\t16638: 0x0000854D,\n\t16639: 0x00008553,\n\t16640: 0x00008561,\n\t16641: 0x00008558,\n\t16642: 0x00008540,\n\t16643: 0x00008546,\n\t16644: 0x00008564,\n\t16645: 0x00008541,\n\t16646: 0x00008562,\n\t16647: 0x00008544,\n\t16648: 0x00008551,\n\t16649: 0x00008547,\n\t16650: 0x00008563,\n\t16651: 0x0000853E,\n\t16652: 0x0000855B,\n\t16653: 0x00008571,\n\t16654: 0x0000854E,\n\t16655: 0x0000856E,\n\t16656: 0x00008575,\n\t16657: 0x00008555,\n\t16658: 0x00008567,\n\t16659: 0x00008560,\n\t16660: 0x0000858C,\n\t16661: 0x00008566,\n\t16662: 0x0000855D,\n\t16663: 0x00008554,\n\t16664: 0x00008565,\n\t16665: 0x0000856C,\n\t16666: 0x00008663,\n\t16667: 0x00008665,\n\t16668: 0x00008664,\n\t16669: 0x0000879B,\n\t16670: 0x0000878F,\n\t16671: 0x00008797,\n\t16672: 0x00008793,\n\t16673: 0x00008792,\n\t16674: 0x00008788,\n\t16675: 0x00008781,\n\t16676: 0x00008796,\n\t16677: 0x00008798,\n\t16678: 0x00008779,\n\t16679: 0x00008787,\n\t16680: 0x000087A3,\n\t16681: 0x00008785,\n\t16682: 0x00008790,\n\t16683: 0x00008791,\n\t16684: 0x0000879D,\n\t16685: 0x00008784,\n\t16686: 0x00008794,\n\t16687: 0x0000879C,\n\t16688: 0x0000879A,\n\t16689: 0x00008789,\n\t16690: 0x0000891E,\n\t16691: 0x00008926,\n\t16692: 0x00008930,\n\t16693: 0x0000892D,\n\t16694: 0x0000892E,\n\t16695: 0x00008927,\n\t16696: 0x00008931,\n\t16697: 0x00008922,\n\t16698: 0x00008929,\n\t16699: 0x00008923,\n\t16700: 0x0000892F,\n\t16701: 0x0000892C,\n\t16702: 0x0000891F,\n\t16703: 0x000089F1,\n\t16704: 0x00008AE0,\n\t16705: 0x00008AE2,\n\t16706: 0x00008AF2,\n\t16707: 0x00008AF4,\n\t16708: 0x00008AF5,\n\t16709: 0x00008ADD,\n\t16710: 0x00008B14,\n\t16711: 0x00008AE4,\n\t16712: 0x00008ADF,\n\t16713: 0x00008AF0,\n\t16714: 0x00008AC8,\n\t16715: 0x00008ADE,\n\t16716: 0x00008AE1,\n\t16717: 0x00008AE8,\n\t16718: 0x00008AFF,\n\t16719: 0x00008AEF,\n\t16720: 0x00008AFB,\n\t16721: 0x00008C91,\n\t16722: 0x00008C92,\n\t16723: 0x00008C90,\n\t16724: 0x00008CF5,\n\t16725: 0x00008CEE,\n\t16726: 0x00008CF1,\n\t16727: 0x00008CF0,\n\t16728: 0x00008CF3,\n\t16729: 0x00008D6C,\n\t16730: 0x00008D6E,\n\t16731: 0x00008DA5,\n\t16732: 0x00008DA7,\n\t16733: 0x00008E33,\n\t16734: 0x00008E3E,\n\t16735: 0x00008E38,\n\t16736: 0x00008E40,\n\t16737: 0x00008E45,\n\t16738: 0x00008E36,\n\t16739: 0x00008E3C,\n\t16740: 0x00008E3D,\n\t16741: 0x00008E41,\n\t16742: 0x00008E30,\n\t16743: 0x00008E3F,\n\t16744: 0x00008EBD,\n\t16745: 0x00008F36,\n\t16746: 0x00008F2E,\n\t16747: 0x00008F35,\n\t16748: 0x00008F32,\n\t16749: 0x00008F39,\n\t16750: 0x00008F37,\n\t16751: 0x00008F34,\n\t16752: 0x00009076,\n\t16753: 0x00009079,\n\t16754: 0x0000907B,\n\t16755: 0x00009086,\n\t16756: 0x000090FA,\n\t16757: 0x00009133,\n\t16758: 0x00009135,\n\t16759: 0x00009136,\n\t16760: 0x00009193,\n\t16761: 0x00009190,\n\t16762: 0x00009191,\n\t16763: 0x0000918D,\n\t16764: 0x0000918F,\n\t16765: 0x00009327,\n\t16766: 0x0000931E,\n\t16767: 0x00009308,\n\t16768: 0x0000931F,\n\t16769: 0x00009306,\n\t16770: 0x0000930F,\n\t16771: 0x0000937A,\n\t16772: 0x00009338,\n\t16773: 0x0000933C,\n\t16774: 0x0000931B,\n\t16775: 0x00009323,\n\t16776: 0x00009312,\n\t16777: 0x00009301,\n\t16778: 0x00009346,\n\t16779: 0x0000932D,\n\t16780: 0x0000930E,\n\t16781: 0x0000930D,\n\t16782: 0x000092CB,\n\t16783: 0x0000931D,\n\t16784: 0x000092FA,\n\t16785: 0x00009325,\n\t16786: 0x00009313,\n\t16787: 0x000092F9,\n\t16788: 0x000092F7,\n\t16789: 0x00009334,\n\t16790: 0x00009302,\n\t16791: 0x00009324,\n\t16792: 0x000092FF,\n\t16793: 0x00009329,\n\t16794: 0x00009339,\n\t16795: 0x00009335,\n\t16796: 0x0000932A,\n\t16797: 0x00009314,\n\t16798: 0x0000930C,\n\t16799: 0x0000930B,\n\t16800: 0x000092FE,\n\t16801: 0x00009309,\n\t16802: 0x00009300,\n\t16803: 0x000092FB,\n\t16804: 0x00009316,\n\t16805: 0x000095BC,\n\t16806: 0x000095CD,\n\t16807: 0x000095BE,\n\t16808: 0x000095B9,\n\t16809: 0x000095BA,\n\t16810: 0x000095B6,\n\t16811: 0x000095BF,\n\t16812: 0x000095B5,\n\t16813: 0x000095BD,\n\t16814: 0x000096A9,\n\t16815: 0x000096D4,\n\t16816: 0x0000970B,\n\t16817: 0x00009712,\n\t16818: 0x00009710,\n\t16819: 0x00009799,\n\t16820: 0x00009797,\n\t16821: 0x00009794,\n\t16822: 0x000097F0,\n\t16823: 0x000097F8,\n\t16824: 0x00009835,\n\t16825: 0x0000982F,\n\t16826: 0x00009832,\n\t16827: 0x00009924,\n\t16828: 0x0000991F,\n\t16829: 0x00009927,\n\t16830: 0x00009929,\n\t16831: 0x0000999E,\n\t16832: 0x000099EE,\n\t16833: 0x000099EC,\n\t16834: 0x000099E5,\n\t16835: 0x000099E4,\n\t16836: 0x000099F0,\n\t16837: 0x000099E3,\n\t16838: 0x000099EA,\n\t16839: 0x000099E9,\n\t16840: 0x000099E7,\n\t16841: 0x00009AB9,\n\t16842: 0x00009ABF,\n\t16843: 0x00009AB4,\n\t16844: 0x00009ABB,\n\t16845: 0x00009AF6,\n\t16846: 0x00009AFA,\n\t16847: 0x00009AF9,\n\t16848: 0x00009AF7,\n\t16849: 0x00009B33,\n\t16850: 0x00009B80,\n\t16851: 0x00009B85,\n\t16852: 0x00009B87,\n\t16853: 0x00009B7C,\n\t16854: 0x00009B7E,\n\t16855: 0x00009B7B,\n\t16856: 0x00009B82,\n\t16857: 0x00009B93,\n\t16858: 0x00009B92,\n\t16859: 0x00009B90,\n\t16860: 0x00009B7A,\n\t16861: 0x00009B95,\n\t16862: 0x00009B7D,\n\t16863: 0x00009B88,\n\t16864: 0x00009D25,\n\t16865: 0x00009D17,\n\t16866: 0x00009D20,\n\t16867: 0x00009D1E,\n\t16868: 0x00009D14,\n\t16869: 0x00009D29,\n\t16870: 0x00009D1D,\n\t16871: 0x00009D18,\n\t16872: 0x00009D22,\n\t16873: 0x00009D10,\n\t16874: 0x00009D19,\n\t16875: 0x00009D1F,\n\t16876: 0x00009E88,\n\t16877: 0x00009E86,\n\t16878: 0x00009E87,\n\t16879: 0x00009EAE,\n\t16880: 0x00009EAD,\n\t16881: 0x00009ED5,\n\t16882: 0x00009ED6,\n\t16883: 0x00009EFA,\n\t16884: 0x00009F12,\n\t16885: 0x00009F3D,\n\t16886: 0x00005126,\n\t16887: 0x00005125,\n\t16888: 0x00005122,\n\t16889: 0x00005124,\n\t16890: 0x00005120,\n\t16891: 0x00005129,\n\t16892: 0x000052F4,\n\t16893: 0x00005693,\n\t16894: 0x0000568C,\n\t16895: 0x0000568D,\n\t16896: 0x00005686,\n\t16897: 0x00005684,\n\t16898: 0x00005683,\n\t16899: 0x0000567E,\n\t16900: 0x00005682,\n\t16901: 0x0000567F,\n\t16902: 0x00005681,\n\t16903: 0x000058D6,\n\t16904: 0x000058D4,\n\t16905: 0x000058CF,\n\t16906: 0x000058D2,\n\t16907: 0x00005B2D,\n\t16908: 0x00005B25,\n\t16909: 0x00005B32,\n\t16910: 0x00005B23,\n\t16911: 0x00005B2C,\n\t16912: 0x00005B27,\n\t16913: 0x00005B26,\n\t16914: 0x00005B2F,\n\t16915: 0x00005B2E,\n\t16916: 0x00005B7B,\n\t16917: 0x00005BF1,\n\t16918: 0x00005BF2,\n\t16919: 0x00005DB7,\n\t16920: 0x00005E6C,\n\t16921: 0x00005E6A,\n\t16922: 0x00005FBE,\n\t16923: 0x00005FBB,\n\t16924: 0x000061C3,\n\t16925: 0x000061B5,\n\t16926: 0x000061BC,\n\t16927: 0x000061E7,\n\t16928: 0x000061E0,\n\t16929: 0x000061E5,\n\t16930: 0x000061E4,\n\t16931: 0x000061E8,\n\t16932: 0x000061DE,\n\t16933: 0x000064EF,\n\t16934: 0x000064E9,\n\t16935: 0x000064E3,\n\t16936: 0x000064EB,\n\t16937: 0x000064E4,\n\t16938: 0x000064E8,\n\t16939: 0x00006581,\n\t16940: 0x00006580,\n\t16941: 0x000065B6,\n\t16942: 0x000065DA,\n\t16943: 0x000066D2,\n\t16944: 0x00006A8D,\n\t16945: 0x00006A96,\n\t16946: 0x00006A81,\n\t16947: 0x00006AA5,\n\t16948: 0x00006A89,\n\t16949: 0x00006A9F,\n\t16950: 0x00006A9B,\n\t16951: 0x00006AA1,\n\t16952: 0x00006A9E,\n\t16953: 0x00006A87,\n\t16954: 0x00006A93,\n\t16955: 0x00006A8E,\n\t16956: 0x00006A95,\n\t16957: 0x00006A83,\n\t16958: 0x00006AA8,\n\t16959: 0x00006AA4,\n\t16960: 0x00006A91,\n\t16961: 0x00006A7F,\n\t16962: 0x00006AA6,\n\t16963: 0x00006A9A,\n\t16964: 0x00006A85,\n\t16965: 0x00006A8C,\n\t16966: 0x00006A92,\n\t16967: 0x00006B5B,\n\t16968: 0x00006BAD,\n\t16969: 0x00006C09,\n\t16970: 0x00006FCC,\n\t16971: 0x00006FA9,\n\t16972: 0x00006FF4,\n\t16973: 0x00006FD4,\n\t16974: 0x00006FE3,\n\t16975: 0x00006FDC,\n\t16976: 0x00006FED,\n\t16977: 0x00006FE7,\n\t16978: 0x00006FE6,\n\t16979: 0x00006FDE,\n\t16980: 0x00006FF2,\n\t16981: 0x00006FDD,\n\t16982: 0x00006FE2,\n\t16983: 0x00006FE8,\n\t16984: 0x000071E1,\n\t16985: 0x000071F1,\n\t16986: 0x000071E8,\n\t16987: 0x000071F2,\n\t16988: 0x000071E4,\n\t16989: 0x000071F0,\n\t16990: 0x000071E2,\n\t16991: 0x00007373,\n\t16992: 0x0000736E,\n\t16993: 0x0000736F,\n\t16994: 0x00007497,\n\t16995: 0x000074B2,\n\t16996: 0x000074AB,\n\t16997: 0x00007490,\n\t16998: 0x000074AA,\n\t16999: 0x000074AD,\n\t17000: 0x000074B1,\n\t17001: 0x000074A5,\n\t17002: 0x000074AF,\n\t17003: 0x00007510,\n\t17004: 0x00007511,\n\t17005: 0x00007512,\n\t17006: 0x0000750F,\n\t17007: 0x00007584,\n\t17008: 0x00007643,\n\t17009: 0x00007648,\n\t17010: 0x00007649,\n\t17011: 0x00007647,\n\t17012: 0x000076A4,\n\t17013: 0x000076E9,\n\t17014: 0x000077B5,\n\t17015: 0x000077AB,\n\t17016: 0x000077B2,\n\t17017: 0x000077B7,\n\t17018: 0x000077B6,\n\t17019: 0x000077B4,\n\t17020: 0x000077B1,\n\t17021: 0x000077A8,\n\t17022: 0x000077F0,\n\t17023: 0x000078F3,\n\t17024: 0x000078FD,\n\t17025: 0x00007902,\n\t17026: 0x000078FB,\n\t17027: 0x000078FC,\n\t17028: 0x000078F2,\n\t17029: 0x00007905,\n\t17030: 0x000078F9,\n\t17031: 0x000078FE,\n\t17032: 0x00007904,\n\t17033: 0x000079AB,\n\t17034: 0x000079A8,\n\t17035: 0x00007A5C,\n\t17036: 0x00007A5B,\n\t17037: 0x00007A56,\n\t17038: 0x00007A58,\n\t17039: 0x00007A54,\n\t17040: 0x00007A5A,\n\t17041: 0x00007ABE,\n\t17042: 0x00007AC0,\n\t17043: 0x00007AC1,\n\t17044: 0x00007C05,\n\t17045: 0x00007C0F,\n\t17046: 0x00007BF2,\n\t17047: 0x00007C00,\n\t17048: 0x00007BFF,\n\t17049: 0x00007BFB,\n\t17050: 0x00007C0E,\n\t17051: 0x00007BF4,\n\t17052: 0x00007C0B,\n\t17053: 0x00007BF3,\n\t17054: 0x00007C02,\n\t17055: 0x00007C09,\n\t17056: 0x00007C03,\n\t17057: 0x00007C01,\n\t17058: 0x00007BF8,\n\t17059: 0x00007BFD,\n\t17060: 0x00007C06,\n\t17061: 0x00007BF0,\n\t17062: 0x00007BF1,\n\t17063: 0x00007C10,\n\t17064: 0x00007C0A,\n\t17065: 0x00007CE8,\n\t17066: 0x00007E2D,\n\t17067: 0x00007E3C,\n\t17068: 0x00007E42,\n\t17069: 0x00007E33,\n\t17070: 0x00009848,\n\t17071: 0x00007E38,\n\t17072: 0x00007E2A,\n\t17073: 0x00007E49,\n\t17074: 0x00007E40,\n\t17075: 0x00007E47,\n\t17076: 0x00007E29,\n\t17077: 0x00007E4C,\n\t17078: 0x00007E30,\n\t17079: 0x00007E3B,\n\t17080: 0x00007E36,\n\t17081: 0x00007E44,\n\t17082: 0x00007E3A,\n\t17083: 0x00007F45,\n\t17084: 0x00007F7F,\n\t17085: 0x00007F7E,\n\t17086: 0x00007F7D,\n\t17087: 0x00007FF4,\n\t17088: 0x00007FF2,\n\t17089: 0x0000802C,\n\t17090: 0x000081BB,\n\t17091: 0x000081C4,\n\t17092: 0x000081CC,\n\t17093: 0x000081CA,\n\t17094: 0x000081C5,\n\t17095: 0x000081C7,\n\t17096: 0x000081BC,\n\t17097: 0x000081E9,\n\t17098: 0x0000825B,\n\t17099: 0x0000825A,\n\t17100: 0x0000825C,\n\t17101: 0x00008583,\n\t17102: 0x00008580,\n\t17103: 0x0000858F,\n\t17104: 0x000085A7,\n\t17105: 0x00008595,\n\t17106: 0x000085A0,\n\t17107: 0x0000858B,\n\t17108: 0x000085A3,\n\t17109: 0x0000857B,\n\t17110: 0x000085A4,\n\t17111: 0x0000859A,\n\t17112: 0x0000859E,\n\t17113: 0x00008577,\n\t17114: 0x0000857C,\n\t17115: 0x00008589,\n\t17116: 0x000085A1,\n\t17117: 0x0000857A,\n\t17118: 0x00008578,\n\t17119: 0x00008557,\n\t17120: 0x0000858E,\n\t17121: 0x00008596,\n\t17122: 0x00008586,\n\t17123: 0x0000858D,\n\t17124: 0x00008599,\n\t17125: 0x0000859D,\n\t17126: 0x00008581,\n\t17127: 0x000085A2,\n\t17128: 0x00008582,\n\t17129: 0x00008588,\n\t17130: 0x00008585,\n\t17131: 0x00008579,\n\t17132: 0x00008576,\n\t17133: 0x00008598,\n\t17134: 0x00008590,\n\t17135: 0x0000859F,\n\t17136: 0x00008668,\n\t17137: 0x000087BE,\n\t17138: 0x000087AA,\n\t17139: 0x000087AD,\n\t17140: 0x000087C5,\n\t17141: 0x000087B0,\n\t17142: 0x000087AC,\n\t17143: 0x000087B9,\n\t17144: 0x000087B5,\n\t17145: 0x000087BC,\n\t17146: 0x000087AE,\n\t17147: 0x000087C9,\n\t17148: 0x000087C3,\n\t17149: 0x000087C2,\n\t17150: 0x000087CC,\n\t17151: 0x000087B7,\n\t17152: 0x000087AF,\n\t17153: 0x000087C4,\n\t17154: 0x000087CA,\n\t17155: 0x000087B4,\n\t17156: 0x000087B6,\n\t17157: 0x000087BF,\n\t17158: 0x000087B8,\n\t17159: 0x000087BD,\n\t17160: 0x000087DE,\n\t17161: 0x000087B2,\n\t17162: 0x00008935,\n\t17163: 0x00008933,\n\t17164: 0x0000893C,\n\t17165: 0x0000893E,\n\t17166: 0x00008941,\n\t17167: 0x00008952,\n\t17168: 0x00008937,\n\t17169: 0x00008942,\n\t17170: 0x000089AD,\n\t17171: 0x000089AF,\n\t17172: 0x000089AE,\n\t17173: 0x000089F2,\n\t17174: 0x000089F3,\n\t17175: 0x00008B1E,\n\t17176: 0x00008B18,\n\t17177: 0x00008B16,\n\t17178: 0x00008B11,\n\t17179: 0x00008B05,\n\t17180: 0x00008B0B,\n\t17181: 0x00008B22,\n\t17182: 0x00008B0F,\n\t17183: 0x00008B12,\n\t17184: 0x00008B15,\n\t17185: 0x00008B07,\n\t17186: 0x00008B0D,\n\t17187: 0x00008B08,\n\t17188: 0x00008B06,\n\t17189: 0x00008B1C,\n\t17190: 0x00008B13,\n\t17191: 0x00008B1A,\n\t17192: 0x00008C4F,\n\t17193: 0x00008C70,\n\t17194: 0x00008C72,\n\t17195: 0x00008C71,\n\t17196: 0x00008C6F,\n\t17197: 0x00008C95,\n\t17198: 0x00008C94,\n\t17199: 0x00008CF9,\n\t17200: 0x00008D6F,\n\t17201: 0x00008E4E,\n\t17202: 0x00008E4D,\n\t17203: 0x00008E53,\n\t17204: 0x00008E50,\n\t17205: 0x00008E4C,\n\t17206: 0x00008E47,\n\t17207: 0x00008F43,\n\t17208: 0x00008F40,\n\t17209: 0x00009085,\n\t17210: 0x0000907E,\n\t17211: 0x00009138,\n\t17212: 0x0000919A,\n\t17213: 0x000091A2,\n\t17214: 0x0000919B,\n\t17215: 0x00009199,\n\t17216: 0x0000919F,\n\t17217: 0x000091A1,\n\t17218: 0x0000919D,\n\t17219: 0x000091A0,\n\t17220: 0x000093A1,\n\t17221: 0x00009383,\n\t17222: 0x000093AF,\n\t17223: 0x00009364,\n\t17224: 0x00009356,\n\t17225: 0x00009347,\n\t17226: 0x0000937C,\n\t17227: 0x00009358,\n\t17228: 0x0000935C,\n\t17229: 0x00009376,\n\t17230: 0x00009349,\n\t17231: 0x00009350,\n\t17232: 0x00009351,\n\t17233: 0x00009360,\n\t17234: 0x0000936D,\n\t17235: 0x0000938F,\n\t17236: 0x0000934C,\n\t17237: 0x0000936A,\n\t17238: 0x00009379,\n\t17239: 0x00009357,\n\t17240: 0x00009355,\n\t17241: 0x00009352,\n\t17242: 0x0000934F,\n\t17243: 0x00009371,\n\t17244: 0x00009377,\n\t17245: 0x0000937B,\n\t17246: 0x00009361,\n\t17247: 0x0000935E,\n\t17248: 0x00009363,\n\t17249: 0x00009367,\n\t17250: 0x00009380,\n\t17251: 0x0000934E,\n\t17252: 0x00009359,\n\t17253: 0x000095C7,\n\t17254: 0x000095C0,\n\t17255: 0x000095C9,\n\t17256: 0x000095C3,\n\t17257: 0x000095C5,\n\t17258: 0x000095B7,\n\t17259: 0x000096AE,\n\t17260: 0x000096B0,\n\t17261: 0x000096AC,\n\t17262: 0x00009720,\n\t17263: 0x0000971F,\n\t17264: 0x00009718,\n\t17265: 0x0000971D,\n\t17266: 0x00009719,\n\t17267: 0x0000979A,\n\t17268: 0x000097A1,\n\t17269: 0x0000979C,\n\t17270: 0x0000979E,\n\t17271: 0x0000979D,\n\t17272: 0x000097D5,\n\t17273: 0x000097D4,\n\t17274: 0x000097F1,\n\t17275: 0x00009841,\n\t17276: 0x00009844,\n\t17277: 0x0000984A,\n\t17278: 0x00009849,\n\t17279: 0x00009845,\n\t17280: 0x00009843,\n\t17281: 0x00009925,\n\t17282: 0x0000992B,\n\t17283: 0x0000992C,\n\t17284: 0x0000992A,\n\t17285: 0x00009933,\n\t17286: 0x00009932,\n\t17287: 0x0000992F,\n\t17288: 0x0000992D,\n\t17289: 0x00009931,\n\t17290: 0x00009930,\n\t17291: 0x00009998,\n\t17292: 0x000099A3,\n\t17293: 0x000099A1,\n\t17294: 0x00009A02,\n\t17295: 0x000099FA,\n\t17296: 0x000099F4,\n\t17297: 0x000099F7,\n\t17298: 0x000099F9,\n\t17299: 0x000099F8,\n\t17300: 0x000099F6,\n\t17301: 0x000099FB,\n\t17302: 0x000099FD,\n\t17303: 0x000099FE,\n\t17304: 0x000099FC,\n\t17305: 0x00009A03,\n\t17306: 0x00009ABE,\n\t17307: 0x00009AFE,\n\t17308: 0x00009AFD,\n\t17309: 0x00009B01,\n\t17310: 0x00009AFC,\n\t17311: 0x00009B48,\n\t17312: 0x00009B9A,\n\t17313: 0x00009BA8,\n\t17314: 0x00009B9E,\n\t17315: 0x00009B9B,\n\t17316: 0x00009BA6,\n\t17317: 0x00009BA1,\n\t17318: 0x00009BA5,\n\t17319: 0x00009BA4,\n\t17320: 0x00009B86,\n\t17321: 0x00009BA2,\n\t17322: 0x00009BA0,\n\t17323: 0x00009BAF,\n\t17324: 0x00009D33,\n\t17325: 0x00009D41,\n\t17326: 0x00009D67,\n\t17327: 0x00009D36,\n\t17328: 0x00009D2E,\n\t17329: 0x00009D2F,\n\t17330: 0x00009D31,\n\t17331: 0x00009D38,\n\t17332: 0x00009D30,\n\t17333: 0x00009D45,\n\t17334: 0x00009D42,\n\t17335: 0x00009D43,\n\t17336: 0x00009D3E,\n\t17337: 0x00009D37,\n\t17338: 0x00009D40,\n\t17339: 0x00009D3D,\n\t17340: 0x00007FF5,\n\t17341: 0x00009D2D,\n\t17342: 0x00009E8A,\n\t17343: 0x00009E89,\n\t17344: 0x00009E8D,\n\t17345: 0x00009EB0,\n\t17346: 0x00009EC8,\n\t17347: 0x00009EDA,\n\t17348: 0x00009EFB,\n\t17349: 0x00009EFF,\n\t17350: 0x00009F24,\n\t17351: 0x00009F23,\n\t17352: 0x00009F22,\n\t17353: 0x00009F54,\n\t17354: 0x00009FA0,\n\t17355: 0x00005131,\n\t17356: 0x0000512D,\n\t17357: 0x0000512E,\n\t17358: 0x00005698,\n\t17359: 0x0000569C,\n\t17360: 0x00005697,\n\t17361: 0x0000569A,\n\t17362: 0x0000569D,\n\t17363: 0x00005699,\n\t17364: 0x00005970,\n\t17365: 0x00005B3C,\n\t17366: 0x00005C69,\n\t17367: 0x00005C6A,\n\t17368: 0x00005DC0,\n\t17369: 0x00005E6D,\n\t17370: 0x00005E6E,\n\t17371: 0x000061D8,\n\t17372: 0x000061DF,\n\t17373: 0x000061ED,\n\t17374: 0x000061EE,\n\t17375: 0x000061F1,\n\t17376: 0x000061EA,\n\t17377: 0x000061F0,\n\t17378: 0x000061EB,\n\t17379: 0x000061D6,\n\t17380: 0x000061E9,\n\t17381: 0x000064FF,\n\t17382: 0x00006504,\n\t17383: 0x000064FD,\n\t17384: 0x000064F8,\n\t17385: 0x00006501,\n\t17386: 0x00006503,\n\t17387: 0x000064FC,\n\t17388: 0x00006594,\n\t17389: 0x000065DB,\n\t17390: 0x000066DA,\n\t17391: 0x000066DB,\n\t17392: 0x000066D8,\n\t17393: 0x00006AC5,\n\t17394: 0x00006AB9,\n\t17395: 0x00006ABD,\n\t17396: 0x00006AE1,\n\t17397: 0x00006AC6,\n\t17398: 0x00006ABA,\n\t17399: 0x00006AB6,\n\t17400: 0x00006AB7,\n\t17401: 0x00006AC7,\n\t17402: 0x00006AB4,\n\t17403: 0x00006AAD,\n\t17404: 0x00006B5E,\n\t17405: 0x00006BC9,\n\t17406: 0x00006C0B,\n\t17407: 0x00007007,\n\t17408: 0x0000700C,\n\t17409: 0x0000700D,\n\t17410: 0x00007001,\n\t17411: 0x00007005,\n\t17412: 0x00007014,\n\t17413: 0x0000700E,\n\t17414: 0x00006FFF,\n\t17415: 0x00007000,\n\t17416: 0x00006FFB,\n\t17417: 0x00007026,\n\t17418: 0x00006FFC,\n\t17419: 0x00006FF7,\n\t17420: 0x0000700A,\n\t17421: 0x00007201,\n\t17422: 0x000071FF,\n\t17423: 0x000071F9,\n\t17424: 0x00007203,\n\t17425: 0x000071FD,\n\t17426: 0x00007376,\n\t17427: 0x000074B8,\n\t17428: 0x000074C0,\n\t17429: 0x000074B5,\n\t17430: 0x000074C1,\n\t17431: 0x000074BE,\n\t17432: 0x000074B6,\n\t17433: 0x000074BB,\n\t17434: 0x000074C2,\n\t17435: 0x00007514,\n\t17436: 0x00007513,\n\t17437: 0x0000765C,\n\t17438: 0x00007664,\n\t17439: 0x00007659,\n\t17440: 0x00007650,\n\t17441: 0x00007653,\n\t17442: 0x00007657,\n\t17443: 0x0000765A,\n\t17444: 0x000076A6,\n\t17445: 0x000076BD,\n\t17446: 0x000076EC,\n\t17447: 0x000077C2,\n\t17448: 0x000077BA,\n\t17449: 0x000078FF,\n\t17450: 0x0000790C,\n\t17451: 0x00007913,\n\t17452: 0x00007914,\n\t17453: 0x00007909,\n\t17454: 0x00007910,\n\t17455: 0x00007912,\n\t17456: 0x00007911,\n\t17457: 0x000079AD,\n\t17458: 0x000079AC,\n\t17459: 0x00007A5F,\n\t17460: 0x00007C1C,\n\t17461: 0x00007C29,\n\t17462: 0x00007C19,\n\t17463: 0x00007C20,\n\t17464: 0x00007C1F,\n\t17465: 0x00007C2D,\n\t17466: 0x00007C1D,\n\t17467: 0x00007C26,\n\t17468: 0x00007C28,\n\t17469: 0x00007C22,\n\t17470: 0x00007C25,\n\t17471: 0x00007C30,\n\t17472: 0x00007E5C,\n\t17473: 0x00007E50,\n\t17474: 0x00007E56,\n\t17475: 0x00007E63,\n\t17476: 0x00007E58,\n\t17477: 0x00007E62,\n\t17478: 0x00007E5F,\n\t17479: 0x00007E51,\n\t17480: 0x00007E60,\n\t17481: 0x00007E57,\n\t17482: 0x00007E53,\n\t17483: 0x00007FB5,\n\t17484: 0x00007FB3,\n\t17485: 0x00007FF7,\n\t17486: 0x00007FF8,\n\t17487: 0x00008075,\n\t17488: 0x000081D1,\n\t17489: 0x000081D2,\n\t17490: 0x000081D0,\n\t17491: 0x0000825F,\n\t17492: 0x0000825E,\n\t17493: 0x000085B4,\n\t17494: 0x000085C6,\n\t17495: 0x000085C0,\n\t17496: 0x000085C3,\n\t17497: 0x000085C2,\n\t17498: 0x000085B3,\n\t17499: 0x000085B5,\n\t17500: 0x000085BD,\n\t17501: 0x000085C7,\n\t17502: 0x000085C4,\n\t17503: 0x000085BF,\n\t17504: 0x000085CB,\n\t17505: 0x000085CE,\n\t17506: 0x000085C8,\n\t17507: 0x000085C5,\n\t17508: 0x000085B1,\n\t17509: 0x000085B6,\n\t17510: 0x000085D2,\n\t17511: 0x00008624,\n\t17512: 0x000085B8,\n\t17513: 0x000085B7,\n\t17514: 0x000085BE,\n\t17515: 0x00008669,\n\t17516: 0x000087E7,\n\t17517: 0x000087E6,\n\t17518: 0x000087E2,\n\t17519: 0x000087DB,\n\t17520: 0x000087EB,\n\t17521: 0x000087EA,\n\t17522: 0x000087E5,\n\t17523: 0x000087DF,\n\t17524: 0x000087F3,\n\t17525: 0x000087E4,\n\t17526: 0x000087D4,\n\t17527: 0x000087DC,\n\t17528: 0x000087D3,\n\t17529: 0x000087ED,\n\t17530: 0x000087D8,\n\t17531: 0x000087E3,\n\t17532: 0x000087A4,\n\t17533: 0x000087D7,\n\t17534: 0x000087D9,\n\t17535: 0x00008801,\n\t17536: 0x000087F4,\n\t17537: 0x000087E8,\n\t17538: 0x000087DD,\n\t17539: 0x00008953,\n\t17540: 0x0000894B,\n\t17541: 0x0000894F,\n\t17542: 0x0000894C,\n\t17543: 0x00008946,\n\t17544: 0x00008950,\n\t17545: 0x00008951,\n\t17546: 0x00008949,\n\t17547: 0x00008B2A,\n\t17548: 0x00008B27,\n\t17549: 0x00008B23,\n\t17550: 0x00008B33,\n\t17551: 0x00008B30,\n\t17552: 0x00008B35,\n\t17553: 0x00008B47,\n\t17554: 0x00008B2F,\n\t17555: 0x00008B3C,\n\t17556: 0x00008B3E,\n\t17557: 0x00008B31,\n\t17558: 0x00008B25,\n\t17559: 0x00008B37,\n\t17560: 0x00008B26,\n\t17561: 0x00008B36,\n\t17562: 0x00008B2E,\n\t17563: 0x00008B24,\n\t17564: 0x00008B3B,\n\t17565: 0x00008B3D,\n\t17566: 0x00008B3A,\n\t17567: 0x00008C42,\n\t17568: 0x00008C75,\n\t17569: 0x00008C99,\n\t17570: 0x00008C98,\n\t17571: 0x00008C97,\n\t17572: 0x00008CFE,\n\t17573: 0x00008D04,\n\t17574: 0x00008D02,\n\t17575: 0x00008D00,\n\t17576: 0x00008E5C,\n\t17577: 0x00008E62,\n\t17578: 0x00008E60,\n\t17579: 0x00008E57,\n\t17580: 0x00008E56,\n\t17581: 0x00008E5E,\n\t17582: 0x00008E65,\n\t17583: 0x00008E67,\n\t17584: 0x00008E5B,\n\t17585: 0x00008E5A,\n\t17586: 0x00008E61,\n\t17587: 0x00008E5D,\n\t17588: 0x00008E69,\n\t17589: 0x00008E54,\n\t17590: 0x00008F46,\n\t17591: 0x00008F47,\n\t17592: 0x00008F48,\n\t17593: 0x00008F4B,\n\t17594: 0x00009128,\n\t17595: 0x0000913A,\n\t17596: 0x0000913B,\n\t17597: 0x0000913E,\n\t17598: 0x000091A8,\n\t17599: 0x000091A5,\n\t17600: 0x000091A7,\n\t17601: 0x000091AF,\n\t17602: 0x000091AA,\n\t17603: 0x000093B5,\n\t17604: 0x0000938C,\n\t17605: 0x00009392,\n\t17606: 0x000093B7,\n\t17607: 0x0000939B,\n\t17608: 0x0000939D,\n\t17609: 0x00009389,\n\t17610: 0x000093A7,\n\t17611: 0x0000938E,\n\t17612: 0x000093AA,\n\t17613: 0x0000939E,\n\t17614: 0x000093A6,\n\t17615: 0x00009395,\n\t17616: 0x00009388,\n\t17617: 0x00009399,\n\t17618: 0x0000939F,\n\t17619: 0x0000938D,\n\t17620: 0x000093B1,\n\t17621: 0x00009391,\n\t17622: 0x000093B2,\n\t17623: 0x000093A4,\n\t17624: 0x000093A8,\n\t17625: 0x000093B4,\n\t17626: 0x000093A3,\n\t17627: 0x000093A5,\n\t17628: 0x000095D2,\n\t17629: 0x000095D3,\n\t17630: 0x000095D1,\n\t17631: 0x000096B3,\n\t17632: 0x000096D7,\n\t17633: 0x000096DA,\n\t17634: 0x00005DC2,\n\t17635: 0x000096DF,\n\t17636: 0x000096D8,\n\t17637: 0x000096DD,\n\t17638: 0x00009723,\n\t17639: 0x00009722,\n\t17640: 0x00009725,\n\t17641: 0x000097AC,\n\t17642: 0x000097AE,\n\t17643: 0x000097A8,\n\t17644: 0x000097AB,\n\t17645: 0x000097A4,\n\t17646: 0x000097AA,\n\t17647: 0x000097A2,\n\t17648: 0x000097A5,\n\t17649: 0x000097D7,\n\t17650: 0x000097D9,\n\t17651: 0x000097D6,\n\t17652: 0x000097D8,\n\t17653: 0x000097FA,\n\t17654: 0x00009850,\n\t17655: 0x00009851,\n\t17656: 0x00009852,\n\t17657: 0x000098B8,\n\t17658: 0x00009941,\n\t17659: 0x0000993C,\n\t17660: 0x0000993A,\n\t17661: 0x00009A0F,\n\t17662: 0x00009A0B,\n\t17663: 0x00009A09,\n\t17664: 0x00009A0D,\n\t17665: 0x00009A04,\n\t17666: 0x00009A11,\n\t17667: 0x00009A0A,\n\t17668: 0x00009A05,\n\t17669: 0x00009A07,\n\t17670: 0x00009A06,\n\t17671: 0x00009AC0,\n\t17672: 0x00009ADC,\n\t17673: 0x00009B08,\n\t17674: 0x00009B04,\n\t17675: 0x00009B05,\n\t17676: 0x00009B29,\n\t17677: 0x00009B35,\n\t17678: 0x00009B4A,\n\t17679: 0x00009B4C,\n\t17680: 0x00009B4B,\n\t17681: 0x00009BC7,\n\t17682: 0x00009BC6,\n\t17683: 0x00009BC3,\n\t17684: 0x00009BBF,\n\t17685: 0x00009BC1,\n\t17686: 0x00009BB5,\n\t17687: 0x00009BB8,\n\t17688: 0x00009BD3,\n\t17689: 0x00009BB6,\n\t17690: 0x00009BC4,\n\t17691: 0x00009BB9,\n\t17692: 0x00009BBD,\n\t17693: 0x00009D5C,\n\t17694: 0x00009D53,\n\t17695: 0x00009D4F,\n\t17696: 0x00009D4A,\n\t17697: 0x00009D5B,\n\t17698: 0x00009D4B,\n\t17699: 0x00009D59,\n\t17700: 0x00009D56,\n\t17701: 0x00009D4C,\n\t17702: 0x00009D57,\n\t17703: 0x00009D52,\n\t17704: 0x00009D54,\n\t17705: 0x00009D5F,\n\t17706: 0x00009D58,\n\t17707: 0x00009D5A,\n\t17708: 0x00009E8E,\n\t17709: 0x00009E8C,\n\t17710: 0x00009EDF,\n\t17711: 0x00009F01,\n\t17712: 0x00009F00,\n\t17713: 0x00009F16,\n\t17714: 0x00009F25,\n\t17715: 0x00009F2B,\n\t17716: 0x00009F2A,\n\t17717: 0x00009F29,\n\t17718: 0x00009F28,\n\t17719: 0x00009F4C,\n\t17720: 0x00009F55,\n\t17721: 0x00005134,\n\t17722: 0x00005135,\n\t17723: 0x00005296,\n\t17724: 0x000052F7,\n\t17725: 0x000053B4,\n\t17726: 0x000056AB,\n\t17727: 0x000056AD,\n\t17728: 0x000056A6,\n\t17729: 0x000056A7,\n\t17730: 0x000056AA,\n\t17731: 0x000056AC,\n\t17732: 0x000058DA,\n\t17733: 0x000058DD,\n\t17734: 0x000058DB,\n\t17735: 0x00005912,\n\t17736: 0x00005B3D,\n\t17737: 0x00005B3E,\n\t17738: 0x00005B3F,\n\t17739: 0x00005DC3,\n\t17740: 0x00005E70,\n\t17741: 0x00005FBF,\n\t17742: 0x000061FB,\n\t17743: 0x00006507,\n\t17744: 0x00006510,\n\t17745: 0x0000650D,\n\t17746: 0x00006509,\n\t17747: 0x0000650C,\n\t17748: 0x0000650E,\n\t17749: 0x00006584,\n\t17750: 0x000065DE,\n\t17751: 0x000065DD,\n\t17752: 0x000066DE,\n\t17753: 0x00006AE7,\n\t17754: 0x00006AE0,\n\t17755: 0x00006ACC,\n\t17756: 0x00006AD1,\n\t17757: 0x00006AD9,\n\t17758: 0x00006ACB,\n\t17759: 0x00006ADF,\n\t17760: 0x00006ADC,\n\t17761: 0x00006AD0,\n\t17762: 0x00006AEB,\n\t17763: 0x00006ACF,\n\t17764: 0x00006ACD,\n\t17765: 0x00006ADE,\n\t17766: 0x00006B60,\n\t17767: 0x00006BB0,\n\t17768: 0x00006C0C,\n\t17769: 0x00007019,\n\t17770: 0x00007027,\n\t17771: 0x00007020,\n\t17772: 0x00007016,\n\t17773: 0x0000702B,\n\t17774: 0x00007021,\n\t17775: 0x00007022,\n\t17776: 0x00007023,\n\t17777: 0x00007029,\n\t17778: 0x00007017,\n\t17779: 0x00007024,\n\t17780: 0x0000701C,\n\t17781: 0x0000702A,\n\t17782: 0x0000720C,\n\t17783: 0x0000720A,\n\t17784: 0x00007207,\n\t17785: 0x00007202,\n\t17786: 0x00007205,\n\t17787: 0x000072A5,\n\t17788: 0x000072A6,\n\t17789: 0x000072A4,\n\t17790: 0x000072A3,\n\t17791: 0x000072A1,\n\t17792: 0x000074CB,\n\t17793: 0x000074C5,\n\t17794: 0x000074B7,\n\t17795: 0x000074C3,\n\t17796: 0x00007516,\n\t17797: 0x00007660,\n\t17798: 0x000077C9,\n\t17799: 0x000077CA,\n\t17800: 0x000077C4,\n\t17801: 0x000077F1,\n\t17802: 0x0000791D,\n\t17803: 0x0000791B,\n\t17804: 0x00007921,\n\t17805: 0x0000791C,\n\t17806: 0x00007917,\n\t17807: 0x0000791E,\n\t17808: 0x000079B0,\n\t17809: 0x00007A67,\n\t17810: 0x00007A68,\n\t17811: 0x00007C33,\n\t17812: 0x00007C3C,\n\t17813: 0x00007C39,\n\t17814: 0x00007C2C,\n\t17815: 0x00007C3B,\n\t17816: 0x00007CEC,\n\t17817: 0x00007CEA,\n\t17818: 0x00007E76,\n\t17819: 0x00007E75,\n\t17820: 0x00007E78,\n\t17821: 0x00007E70,\n\t17822: 0x00007E77,\n\t17823: 0x00007E6F,\n\t17824: 0x00007E7A,\n\t17825: 0x00007E72,\n\t17826: 0x00007E74,\n\t17827: 0x00007E68,\n\t17828: 0x00007F4B,\n\t17829: 0x00007F4A,\n\t17830: 0x00007F83,\n\t17831: 0x00007F86,\n\t17832: 0x00007FB7,\n\t17833: 0x00007FFD,\n\t17834: 0x00007FFE,\n\t17835: 0x00008078,\n\t17836: 0x000081D7,\n\t17837: 0x000081D5,\n\t17838: 0x00008264,\n\t17839: 0x00008261,\n\t17840: 0x00008263,\n\t17841: 0x000085EB,\n\t17842: 0x000085F1,\n\t17843: 0x000085ED,\n\t17844: 0x000085D9,\n\t17845: 0x000085E1,\n\t17846: 0x000085E8,\n\t17847: 0x000085DA,\n\t17848: 0x000085D7,\n\t17849: 0x000085EC,\n\t17850: 0x000085F2,\n\t17851: 0x000085F8,\n\t17852: 0x000085D8,\n\t17853: 0x000085DF,\n\t17854: 0x000085E3,\n\t17855: 0x000085DC,\n\t17856: 0x000085D1,\n\t17857: 0x000085F0,\n\t17858: 0x000085E6,\n\t17859: 0x000085EF,\n\t17860: 0x000085DE,\n\t17861: 0x000085E2,\n\t17862: 0x00008800,\n\t17863: 0x000087FA,\n\t17864: 0x00008803,\n\t17865: 0x000087F6,\n\t17866: 0x000087F7,\n\t17867: 0x00008809,\n\t17868: 0x0000880C,\n\t17869: 0x0000880B,\n\t17870: 0x00008806,\n\t17871: 0x000087FC,\n\t17872: 0x00008808,\n\t17873: 0x000087FF,\n\t17874: 0x0000880A,\n\t17875: 0x00008802,\n\t17876: 0x00008962,\n\t17877: 0x0000895A,\n\t17878: 0x0000895B,\n\t17879: 0x00008957,\n\t17880: 0x00008961,\n\t17881: 0x0000895C,\n\t17882: 0x00008958,\n\t17883: 0x0000895D,\n\t17884: 0x00008959,\n\t17885: 0x00008988,\n\t17886: 0x000089B7,\n\t17887: 0x000089B6,\n\t17888: 0x000089F6,\n\t17889: 0x00008B50,\n\t17890: 0x00008B48,\n\t17891: 0x00008B4A,\n\t17892: 0x00008B40,\n\t17893: 0x00008B53,\n\t17894: 0x00008B56,\n\t17895: 0x00008B54,\n\t17896: 0x00008B4B,\n\t17897: 0x00008B55,\n\t17898: 0x00008B51,\n\t17899: 0x00008B42,\n\t17900: 0x00008B52,\n\t17901: 0x00008B57,\n\t17902: 0x00008C43,\n\t17903: 0x00008C77,\n\t17904: 0x00008C76,\n\t17905: 0x00008C9A,\n\t17906: 0x00008D06,\n\t17907: 0x00008D07,\n\t17908: 0x00008D09,\n\t17909: 0x00008DAC,\n\t17910: 0x00008DAA,\n\t17911: 0x00008DAD,\n\t17912: 0x00008DAB,\n\t17913: 0x00008E6D,\n\t17914: 0x00008E78,\n\t17915: 0x00008E73,\n\t17916: 0x00008E6A,\n\t17917: 0x00008E6F,\n\t17918: 0x00008E7B,\n\t17919: 0x00008EC2,\n\t17920: 0x00008F52,\n\t17921: 0x00008F51,\n\t17922: 0x00008F4F,\n\t17923: 0x00008F50,\n\t17924: 0x00008F53,\n\t17925: 0x00008FB4,\n\t17926: 0x00009140,\n\t17927: 0x0000913F,\n\t17928: 0x000091B0,\n\t17929: 0x000091AD,\n\t17930: 0x000093DE,\n\t17931: 0x000093C7,\n\t17932: 0x000093CF,\n\t17933: 0x000093C2,\n\t17934: 0x000093DA,\n\t17935: 0x000093D0,\n\t17936: 0x000093F9,\n\t17937: 0x000093EC,\n\t17938: 0x000093CC,\n\t17939: 0x000093D9,\n\t17940: 0x000093A9,\n\t17941: 0x000093E6,\n\t17942: 0x000093CA,\n\t17943: 0x000093D4,\n\t17944: 0x000093EE,\n\t17945: 0x000093E3,\n\t17946: 0x000093D5,\n\t17947: 0x000093C4,\n\t17948: 0x000093CE,\n\t17949: 0x000093C0,\n\t17950: 0x000093D2,\n\t17951: 0x000093E7,\n\t17952: 0x0000957D,\n\t17953: 0x000095DA,\n\t17954: 0x000095DB,\n\t17955: 0x000096E1,\n\t17956: 0x00009729,\n\t17957: 0x0000972B,\n\t17958: 0x0000972C,\n\t17959: 0x00009728,\n\t17960: 0x00009726,\n\t17961: 0x000097B3,\n\t17962: 0x000097B7,\n\t17963: 0x000097B6,\n\t17964: 0x000097DD,\n\t17965: 0x000097DE,\n\t17966: 0x000097DF,\n\t17967: 0x0000985C,\n\t17968: 0x00009859,\n\t17969: 0x0000985D,\n\t17970: 0x00009857,\n\t17971: 0x000098BF,\n\t17972: 0x000098BD,\n\t17973: 0x000098BB,\n\t17974: 0x000098BE,\n\t17975: 0x00009948,\n\t17976: 0x00009947,\n\t17977: 0x00009943,\n\t17978: 0x000099A6,\n\t17979: 0x000099A7,\n\t17980: 0x00009A1A,\n\t17981: 0x00009A15,\n\t17982: 0x00009A25,\n\t17983: 0x00009A1D,\n\t17984: 0x00009A24,\n\t17985: 0x00009A1B,\n\t17986: 0x00009A22,\n\t17987: 0x00009A20,\n\t17988: 0x00009A27,\n\t17989: 0x00009A23,\n\t17990: 0x00009A1E,\n\t17991: 0x00009A1C,\n\t17992: 0x00009A14,\n\t17993: 0x00009AC2,\n\t17994: 0x00009B0B,\n\t17995: 0x00009B0A,\n\t17996: 0x00009B0E,\n\t17997: 0x00009B0C,\n\t17998: 0x00009B37,\n\t17999: 0x00009BEA,\n\t18000: 0x00009BEB,\n\t18001: 0x00009BE0,\n\t18002: 0x00009BDE,\n\t18003: 0x00009BE4,\n\t18004: 0x00009BE6,\n\t18005: 0x00009BE2,\n\t18006: 0x00009BF0,\n\t18007: 0x00009BD4,\n\t18008: 0x00009BD7,\n\t18009: 0x00009BEC,\n\t18010: 0x00009BDC,\n\t18011: 0x00009BD9,\n\t18012: 0x00009BE5,\n\t18013: 0x00009BD5,\n\t18014: 0x00009BE1,\n\t18015: 0x00009BDA,\n\t18016: 0x00009D77,\n\t18017: 0x00009D81,\n\t18018: 0x00009D8A,\n\t18019: 0x00009D84,\n\t18020: 0x00009D88,\n\t18021: 0x00009D71,\n\t18022: 0x00009D80,\n\t18023: 0x00009D78,\n\t18024: 0x00009D86,\n\t18025: 0x00009D8B,\n\t18026: 0x00009D8C,\n\t18027: 0x00009D7D,\n\t18028: 0x00009D6B,\n\t18029: 0x00009D74,\n\t18030: 0x00009D75,\n\t18031: 0x00009D70,\n\t18032: 0x00009D69,\n\t18033: 0x00009D85,\n\t18034: 0x00009D73,\n\t18035: 0x00009D7B,\n\t18036: 0x00009D82,\n\t18037: 0x00009D6F,\n\t18038: 0x00009D79,\n\t18039: 0x00009D7F,\n\t18040: 0x00009D87,\n\t18041: 0x00009D68,\n\t18042: 0x00009E94,\n\t18043: 0x00009E91,\n\t18044: 0x00009EC0,\n\t18045: 0x00009EFC,\n\t18046: 0x00009F2D,\n\t18047: 0x00009F40,\n\t18048: 0x00009F41,\n\t18049: 0x00009F4D,\n\t18050: 0x00009F56,\n\t18051: 0x00009F57,\n\t18052: 0x00009F58,\n\t18053: 0x00005337,\n\t18054: 0x000056B2,\n\t18055: 0x000056B5,\n\t18056: 0x000056B3,\n\t18057: 0x000058E3,\n\t18058: 0x00005B45,\n\t18059: 0x00005DC6,\n\t18060: 0x00005DC7,\n\t18061: 0x00005EEE,\n\t18062: 0x00005EEF,\n\t18063: 0x00005FC0,\n\t18064: 0x00005FC1,\n\t18065: 0x000061F9,\n\t18066: 0x00006517,\n\t18067: 0x00006516,\n\t18068: 0x00006515,\n\t18069: 0x00006513,\n\t18070: 0x000065DF,\n\t18071: 0x000066E8,\n\t18072: 0x000066E3,\n\t18073: 0x000066E4,\n\t18074: 0x00006AF3,\n\t18075: 0x00006AF0,\n\t18076: 0x00006AEA,\n\t18077: 0x00006AE8,\n\t18078: 0x00006AF9,\n\t18079: 0x00006AF1,\n\t18080: 0x00006AEE,\n\t18081: 0x00006AEF,\n\t18082: 0x0000703C,\n\t18083: 0x00007035,\n\t18084: 0x0000702F,\n\t18085: 0x00007037,\n\t18086: 0x00007034,\n\t18087: 0x00007031,\n\t18088: 0x00007042,\n\t18089: 0x00007038,\n\t18090: 0x0000703F,\n\t18091: 0x0000703A,\n\t18092: 0x00007039,\n\t18093: 0x00007040,\n\t18094: 0x0000703B,\n\t18095: 0x00007033,\n\t18096: 0x00007041,\n\t18097: 0x00007213,\n\t18098: 0x00007214,\n\t18099: 0x000072A8,\n\t18100: 0x0000737D,\n\t18101: 0x0000737C,\n\t18102: 0x000074BA,\n\t18103: 0x000076AB,\n\t18104: 0x000076AA,\n\t18105: 0x000076BE,\n\t18106: 0x000076ED,\n\t18107: 0x000077CC,\n\t18108: 0x000077CE,\n\t18109: 0x000077CF,\n\t18110: 0x000077CD,\n\t18111: 0x000077F2,\n\t18112: 0x00007925,\n\t18113: 0x00007923,\n\t18114: 0x00007927,\n\t18115: 0x00007928,\n\t18116: 0x00007924,\n\t18117: 0x00007929,\n\t18118: 0x000079B2,\n\t18119: 0x00007A6E,\n\t18120: 0x00007A6C,\n\t18121: 0x00007A6D,\n\t18122: 0x00007AF7,\n\t18123: 0x00007C49,\n\t18124: 0x00007C48,\n\t18125: 0x00007C4A,\n\t18126: 0x00007C47,\n\t18127: 0x00007C45,\n\t18128: 0x00007CEE,\n\t18129: 0x00007E7B,\n\t18130: 0x00007E7E,\n\t18131: 0x00007E81,\n\t18132: 0x00007E80,\n\t18133: 0x00007FBA,\n\t18134: 0x00007FFF,\n\t18135: 0x00008079,\n\t18136: 0x000081DB,\n\t18137: 0x000081D9,\n\t18138: 0x0000820B,\n\t18139: 0x00008268,\n\t18140: 0x00008269,\n\t18141: 0x00008622,\n\t18142: 0x000085FF,\n\t18143: 0x00008601,\n\t18144: 0x000085FE,\n\t18145: 0x0000861B,\n\t18146: 0x00008600,\n\t18147: 0x000085F6,\n\t18148: 0x00008604,\n\t18149: 0x00008609,\n\t18150: 0x00008605,\n\t18151: 0x0000860C,\n\t18152: 0x000085FD,\n\t18153: 0x00008819,\n\t18154: 0x00008810,\n\t18155: 0x00008811,\n\t18156: 0x00008817,\n\t18157: 0x00008813,\n\t18158: 0x00008816,\n\t18159: 0x00008963,\n\t18160: 0x00008966,\n\t18161: 0x000089B9,\n\t18162: 0x000089F7,\n\t18163: 0x00008B60,\n\t18164: 0x00008B6A,\n\t18165: 0x00008B5D,\n\t18166: 0x00008B68,\n\t18167: 0x00008B63,\n\t18168: 0x00008B65,\n\t18169: 0x00008B67,\n\t18170: 0x00008B6D,\n\t18171: 0x00008DAE,\n\t18172: 0x00008E86,\n\t18173: 0x00008E88,\n\t18174: 0x00008E84,\n\t18175: 0x00008F59,\n\t18176: 0x00008F56,\n\t18177: 0x00008F57,\n\t18178: 0x00008F55,\n\t18179: 0x00008F58,\n\t18180: 0x00008F5A,\n\t18181: 0x0000908D,\n\t18182: 0x00009143,\n\t18183: 0x00009141,\n\t18184: 0x000091B7,\n\t18185: 0x000091B5,\n\t18186: 0x000091B2,\n\t18187: 0x000091B3,\n\t18188: 0x0000940B,\n\t18189: 0x00009413,\n\t18190: 0x000093FB,\n\t18191: 0x00009420,\n\t18192: 0x0000940F,\n\t18193: 0x00009414,\n\t18194: 0x000093FE,\n\t18195: 0x00009415,\n\t18196: 0x00009410,\n\t18197: 0x00009428,\n\t18198: 0x00009419,\n\t18199: 0x0000940D,\n\t18200: 0x000093F5,\n\t18201: 0x00009400,\n\t18202: 0x000093F7,\n\t18203: 0x00009407,\n\t18204: 0x0000940E,\n\t18205: 0x00009416,\n\t18206: 0x00009412,\n\t18207: 0x000093FA,\n\t18208: 0x00009409,\n\t18209: 0x000093F8,\n\t18210: 0x0000940A,\n\t18211: 0x000093FF,\n\t18212: 0x000093FC,\n\t18213: 0x0000940C,\n\t18214: 0x000093F6,\n\t18215: 0x00009411,\n\t18216: 0x00009406,\n\t18217: 0x000095DE,\n\t18218: 0x000095E0,\n\t18219: 0x000095DF,\n\t18220: 0x0000972E,\n\t18221: 0x0000972F,\n\t18222: 0x000097B9,\n\t18223: 0x000097BB,\n\t18224: 0x000097FD,\n\t18225: 0x000097FE,\n\t18226: 0x00009860,\n\t18227: 0x00009862,\n\t18228: 0x00009863,\n\t18229: 0x0000985F,\n\t18230: 0x000098C1,\n\t18231: 0x000098C2,\n\t18232: 0x00009950,\n\t18233: 0x0000994E,\n\t18234: 0x00009959,\n\t18235: 0x0000994C,\n\t18236: 0x0000994B,\n\t18237: 0x00009953,\n\t18238: 0x00009A32,\n\t18239: 0x00009A34,\n\t18240: 0x00009A31,\n\t18241: 0x00009A2C,\n\t18242: 0x00009A2A,\n\t18243: 0x00009A36,\n\t18244: 0x00009A29,\n\t18245: 0x00009A2E,\n\t18246: 0x00009A38,\n\t18247: 0x00009A2D,\n\t18248: 0x00009AC7,\n\t18249: 0x00009ACA,\n\t18250: 0x00009AC6,\n\t18251: 0x00009B10,\n\t18252: 0x00009B12,\n\t18253: 0x00009B11,\n\t18254: 0x00009C0B,\n\t18255: 0x00009C08,\n\t18256: 0x00009BF7,\n\t18257: 0x00009C05,\n\t18258: 0x00009C12,\n\t18259: 0x00009BF8,\n\t18260: 0x00009C40,\n\t18261: 0x00009C07,\n\t18262: 0x00009C0E,\n\t18263: 0x00009C06,\n\t18264: 0x00009C17,\n\t18265: 0x00009C14,\n\t18266: 0x00009C09,\n\t18267: 0x00009D9F,\n\t18268: 0x00009D99,\n\t18269: 0x00009DA4,\n\t18270: 0x00009D9D,\n\t18271: 0x00009D92,\n\t18272: 0x00009D98,\n\t18273: 0x00009D90,\n\t18274: 0x00009D9B,\n\t18275: 0x00009DA0,\n\t18276: 0x00009D94,\n\t18277: 0x00009D9C,\n\t18278: 0x00009DAA,\n\t18279: 0x00009D97,\n\t18280: 0x00009DA1,\n\t18281: 0x00009D9A,\n\t18282: 0x00009DA2,\n\t18283: 0x00009DA8,\n\t18284: 0x00009D9E,\n\t18285: 0x00009DA3,\n\t18286: 0x00009DBF,\n\t18287: 0x00009DA9,\n\t18288: 0x00009D96,\n\t18289: 0x00009DA6,\n\t18290: 0x00009DA7,\n\t18291: 0x00009E99,\n\t18292: 0x00009E9B,\n\t18293: 0x00009E9A,\n\t18294: 0x00009EE5,\n\t18295: 0x00009EE4,\n\t18296: 0x00009EE7,\n\t18297: 0x00009EE6,\n\t18298: 0x00009F30,\n\t18299: 0x00009F2E,\n\t18300: 0x00009F5B,\n\t18301: 0x00009F60,\n\t18302: 0x00009F5E,\n\t18303: 0x00009F5D,\n\t18304: 0x00009F59,\n\t18305: 0x00009F91,\n\t18306: 0x0000513A,\n\t18307: 0x00005139,\n\t18308: 0x00005298,\n\t18309: 0x00005297,\n\t18310: 0x000056C3,\n\t18311: 0x000056BD,\n\t18312: 0x000056BE,\n\t18313: 0x00005B48,\n\t18314: 0x00005B47,\n\t18315: 0x00005DCB,\n\t18316: 0x00005DCF,\n\t18317: 0x00005EF1,\n\t18318: 0x000061FD,\n\t18319: 0x0000651B,\n\t18320: 0x00006B02,\n\t18321: 0x00006AFC,\n\t18322: 0x00006B03,\n\t18323: 0x00006AF8,\n\t18324: 0x00006B00,\n\t18325: 0x00007043,\n\t18326: 0x00007044,\n\t18327: 0x0000704A,\n\t18328: 0x00007048,\n\t18329: 0x00007049,\n\t18330: 0x00007045,\n\t18331: 0x00007046,\n\t18332: 0x0000721D,\n\t18333: 0x0000721A,\n\t18334: 0x00007219,\n\t18335: 0x0000737E,\n\t18336: 0x00007517,\n\t18337: 0x0000766A,\n\t18338: 0x000077D0,\n\t18339: 0x0000792D,\n\t18340: 0x00007931,\n\t18341: 0x0000792F,\n\t18342: 0x00007C54,\n\t18343: 0x00007C53,\n\t18344: 0x00007CF2,\n\t18345: 0x00007E8A,\n\t18346: 0x00007E87,\n\t18347: 0x00007E88,\n\t18348: 0x00007E8B,\n\t18349: 0x00007E86,\n\t18350: 0x00007E8D,\n\t18351: 0x00007F4D,\n\t18352: 0x00007FBB,\n\t18353: 0x00008030,\n\t18354: 0x000081DD,\n\t18355: 0x00008618,\n\t18356: 0x0000862A,\n\t18357: 0x00008626,\n\t18358: 0x0000861F,\n\t18359: 0x00008623,\n\t18360: 0x0000861C,\n\t18361: 0x00008619,\n\t18362: 0x00008627,\n\t18363: 0x0000862E,\n\t18364: 0x00008621,\n\t18365: 0x00008620,\n\t18366: 0x00008629,\n\t18367: 0x0000861E,\n\t18368: 0x00008625,\n\t18369: 0x00008829,\n\t18370: 0x0000881D,\n\t18371: 0x0000881B,\n\t18372: 0x00008820,\n\t18373: 0x00008824,\n\t18374: 0x0000881C,\n\t18375: 0x0000882B,\n\t18376: 0x0000884A,\n\t18377: 0x0000896D,\n\t18378: 0x00008969,\n\t18379: 0x0000896E,\n\t18380: 0x0000896B,\n\t18381: 0x000089FA,\n\t18382: 0x00008B79,\n\t18383: 0x00008B78,\n\t18384: 0x00008B45,\n\t18385: 0x00008B7A,\n\t18386: 0x00008B7B,\n\t18387: 0x00008D10,\n\t18388: 0x00008D14,\n\t18389: 0x00008DAF,\n\t18390: 0x00008E8E,\n\t18391: 0x00008E8C,\n\t18392: 0x00008F5E,\n\t18393: 0x00008F5B,\n\t18394: 0x00008F5D,\n\t18395: 0x00009146,\n\t18396: 0x00009144,\n\t18397: 0x00009145,\n\t18398: 0x000091B9,\n\t18399: 0x0000943F,\n\t18400: 0x0000943B,\n\t18401: 0x00009436,\n\t18402: 0x00009429,\n\t18403: 0x0000943D,\n\t18404: 0x0000943C,\n\t18405: 0x00009430,\n\t18406: 0x00009439,\n\t18407: 0x0000942A,\n\t18408: 0x00009437,\n\t18409: 0x0000942C,\n\t18410: 0x00009440,\n\t18411: 0x00009431,\n\t18412: 0x000095E5,\n\t18413: 0x000095E4,\n\t18414: 0x000095E3,\n\t18415: 0x00009735,\n\t18416: 0x0000973A,\n\t18417: 0x000097BF,\n\t18418: 0x000097E1,\n\t18419: 0x00009864,\n\t18420: 0x000098C9,\n\t18421: 0x000098C6,\n\t18422: 0x000098C0,\n\t18423: 0x00009958,\n\t18424: 0x00009956,\n\t18425: 0x00009A39,\n\t18426: 0x00009A3D,\n\t18427: 0x00009A46,\n\t18428: 0x00009A44,\n\t18429: 0x00009A42,\n\t18430: 0x00009A41,\n\t18431: 0x00009A3A,\n\t18432: 0x00009A3F,\n\t18433: 0x00009ACD,\n\t18434: 0x00009B15,\n\t18435: 0x00009B17,\n\t18436: 0x00009B18,\n\t18437: 0x00009B16,\n\t18438: 0x00009B3A,\n\t18439: 0x00009B52,\n\t18440: 0x00009C2B,\n\t18441: 0x00009C1D,\n\t18442: 0x00009C1C,\n\t18443: 0x00009C2C,\n\t18444: 0x00009C23,\n\t18445: 0x00009C28,\n\t18446: 0x00009C29,\n\t18447: 0x00009C24,\n\t18448: 0x00009C21,\n\t18449: 0x00009DB7,\n\t18450: 0x00009DB6,\n\t18451: 0x00009DBC,\n\t18452: 0x00009DC1,\n\t18453: 0x00009DC7,\n\t18454: 0x00009DCA,\n\t18455: 0x00009DCF,\n\t18456: 0x00009DBE,\n\t18457: 0x00009DC5,\n\t18458: 0x00009DC3,\n\t18459: 0x00009DBB,\n\t18460: 0x00009DB5,\n\t18461: 0x00009DCE,\n\t18462: 0x00009DB9,\n\t18463: 0x00009DBA,\n\t18464: 0x00009DAC,\n\t18465: 0x00009DC8,\n\t18466: 0x00009DB1,\n\t18467: 0x00009DAD,\n\t18468: 0x00009DCC,\n\t18469: 0x00009DB3,\n\t18470: 0x00009DCD,\n\t18471: 0x00009DB2,\n\t18472: 0x00009E7A,\n\t18473: 0x00009E9C,\n\t18474: 0x00009EEB,\n\t18475: 0x00009EEE,\n\t18476: 0x00009EED,\n\t18477: 0x00009F1B,\n\t18478: 0x00009F18,\n\t18479: 0x00009F1A,\n\t18480: 0x00009F31,\n\t18481: 0x00009F4E,\n\t18482: 0x00009F65,\n\t18483: 0x00009F64,\n\t18484: 0x00009F92,\n\t18485: 0x00004EB9,\n\t18486: 0x000056C6,\n\t18487: 0x000056C5,\n\t18488: 0x000056CB,\n\t18489: 0x00005971,\n\t18490: 0x00005B4B,\n\t18491: 0x00005B4C,\n\t18492: 0x00005DD5,\n\t18493: 0x00005DD1,\n\t18494: 0x00005EF2,\n\t18495: 0x00006521,\n\t18496: 0x00006520,\n\t18497: 0x00006526,\n\t18498: 0x00006522,\n\t18499: 0x00006B0B,\n\t18500: 0x00006B08,\n\t18501: 0x00006B09,\n\t18502: 0x00006C0D,\n\t18503: 0x00007055,\n\t18504: 0x00007056,\n\t18505: 0x00007057,\n\t18506: 0x00007052,\n\t18507: 0x0000721E,\n\t18508: 0x0000721F,\n\t18509: 0x000072A9,\n\t18510: 0x0000737F,\n\t18511: 0x000074D8,\n\t18512: 0x000074D5,\n\t18513: 0x000074D9,\n\t18514: 0x000074D7,\n\t18515: 0x0000766D,\n\t18516: 0x000076AD,\n\t18517: 0x00007935,\n\t18518: 0x000079B4,\n\t18519: 0x00007A70,\n\t18520: 0x00007A71,\n\t18521: 0x00007C57,\n\t18522: 0x00007C5C,\n\t18523: 0x00007C59,\n\t18524: 0x00007C5B,\n\t18525: 0x00007C5A,\n\t18526: 0x00007CF4,\n\t18527: 0x00007CF1,\n\t18528: 0x00007E91,\n\t18529: 0x00007F4F,\n\t18530: 0x00007F87,\n\t18531: 0x000081DE,\n\t18532: 0x0000826B,\n\t18533: 0x00008634,\n\t18534: 0x00008635,\n\t18535: 0x00008633,\n\t18536: 0x0000862C,\n\t18537: 0x00008632,\n\t18538: 0x00008636,\n\t18539: 0x0000882C,\n\t18540: 0x00008828,\n\t18541: 0x00008826,\n\t18542: 0x0000882A,\n\t18543: 0x00008825,\n\t18544: 0x00008971,\n\t18545: 0x000089BF,\n\t18546: 0x000089BE,\n\t18547: 0x000089FB,\n\t18548: 0x00008B7E,\n\t18549: 0x00008B84,\n\t18550: 0x00008B82,\n\t18551: 0x00008B86,\n\t18552: 0x00008B85,\n\t18553: 0x00008B7F,\n\t18554: 0x00008D15,\n\t18555: 0x00008E95,\n\t18556: 0x00008E94,\n\t18557: 0x00008E9A,\n\t18558: 0x00008E92,\n\t18559: 0x00008E90,\n\t18560: 0x00008E96,\n\t18561: 0x00008E97,\n\t18562: 0x00008F60,\n\t18563: 0x00008F62,\n\t18564: 0x00009147,\n\t18565: 0x0000944C,\n\t18566: 0x00009450,\n\t18567: 0x0000944A,\n\t18568: 0x0000944B,\n\t18569: 0x0000944F,\n\t18570: 0x00009447,\n\t18571: 0x00009445,\n\t18572: 0x00009448,\n\t18573: 0x00009449,\n\t18574: 0x00009446,\n\t18575: 0x0000973F,\n\t18576: 0x000097E3,\n\t18577: 0x0000986A,\n\t18578: 0x00009869,\n\t18579: 0x000098CB,\n\t18580: 0x00009954,\n\t18581: 0x0000995B,\n\t18582: 0x00009A4E,\n\t18583: 0x00009A53,\n\t18584: 0x00009A54,\n\t18585: 0x00009A4C,\n\t18586: 0x00009A4F,\n\t18587: 0x00009A48,\n\t18588: 0x00009A4A,\n\t18589: 0x00009A49,\n\t18590: 0x00009A52,\n\t18591: 0x00009A50,\n\t18592: 0x00009AD0,\n\t18593: 0x00009B19,\n\t18594: 0x00009B2B,\n\t18595: 0x00009B3B,\n\t18596: 0x00009B56,\n\t18597: 0x00009B55,\n\t18598: 0x00009C46,\n\t18599: 0x00009C48,\n\t18600: 0x00009C3F,\n\t18601: 0x00009C44,\n\t18602: 0x00009C39,\n\t18603: 0x00009C33,\n\t18604: 0x00009C41,\n\t18605: 0x00009C3C,\n\t18606: 0x00009C37,\n\t18607: 0x00009C34,\n\t18608: 0x00009C32,\n\t18609: 0x00009C3D,\n\t18610: 0x00009C36,\n\t18611: 0x00009DDB,\n\t18612: 0x00009DD2,\n\t18613: 0x00009DDE,\n\t18614: 0x00009DDA,\n\t18615: 0x00009DCB,\n\t18616: 0x00009DD0,\n\t18617: 0x00009DDC,\n\t18618: 0x00009DD1,\n\t18619: 0x00009DDF,\n\t18620: 0x00009DE9,\n\t18621: 0x00009DD9,\n\t18622: 0x00009DD8,\n\t18623: 0x00009DD6,\n\t18624: 0x00009DF5,\n\t18625: 0x00009DD5,\n\t18626: 0x00009DDD,\n\t18627: 0x00009EB6,\n\t18628: 0x00009EF0,\n\t18629: 0x00009F35,\n\t18630: 0x00009F33,\n\t18631: 0x00009F32,\n\t18632: 0x00009F42,\n\t18633: 0x00009F6B,\n\t18634: 0x00009F95,\n\t18635: 0x00009FA2,\n\t18636: 0x0000513D,\n\t18637: 0x00005299,\n\t18638: 0x000058E8,\n\t18639: 0x000058E7,\n\t18640: 0x00005972,\n\t18641: 0x00005B4D,\n\t18642: 0x00005DD8,\n\t18643: 0x0000882F,\n\t18644: 0x00005F4F,\n\t18645: 0x00006201,\n\t18646: 0x00006203,\n\t18647: 0x00006204,\n\t18648: 0x00006529,\n\t18649: 0x00006525,\n\t18650: 0x00006596,\n\t18651: 0x000066EB,\n\t18652: 0x00006B11,\n\t18653: 0x00006B12,\n\t18654: 0x00006B0F,\n\t18655: 0x00006BCA,\n\t18656: 0x0000705B,\n\t18657: 0x0000705A,\n\t18658: 0x00007222,\n\t18659: 0x00007382,\n\t18660: 0x00007381,\n\t18661: 0x00007383,\n\t18662: 0x00007670,\n\t18663: 0x000077D4,\n\t18664: 0x00007C67,\n\t18665: 0x00007C66,\n\t18666: 0x00007E95,\n\t18667: 0x0000826C,\n\t18668: 0x0000863A,\n\t18669: 0x00008640,\n\t18670: 0x00008639,\n\t18671: 0x0000863C,\n\t18672: 0x00008631,\n\t18673: 0x0000863B,\n\t18674: 0x0000863E,\n\t18675: 0x00008830,\n\t18676: 0x00008832,\n\t18677: 0x0000882E,\n\t18678: 0x00008833,\n\t18679: 0x00008976,\n\t18680: 0x00008974,\n\t18681: 0x00008973,\n\t18682: 0x000089FE,\n\t18683: 0x00008B8C,\n\t18684: 0x00008B8E,\n\t18685: 0x00008B8B,\n\t18686: 0x00008B88,\n\t18687: 0x00008C45,\n\t18688: 0x00008D19,\n\t18689: 0x00008E98,\n\t18690: 0x00008F64,\n\t18691: 0x00008F63,\n\t18692: 0x000091BC,\n\t18693: 0x00009462,\n\t18694: 0x00009455,\n\t18695: 0x0000945D,\n\t18696: 0x00009457,\n\t18697: 0x0000945E,\n\t18698: 0x000097C4,\n\t18699: 0x000097C5,\n\t18700: 0x00009800,\n\t18701: 0x00009A56,\n\t18702: 0x00009A59,\n\t18703: 0x00009B1E,\n\t18704: 0x00009B1F,\n\t18705: 0x00009B20,\n\t18706: 0x00009C52,\n\t18707: 0x00009C58,\n\t18708: 0x00009C50,\n\t18709: 0x00009C4A,\n\t18710: 0x00009C4D,\n\t18711: 0x00009C4B,\n\t18712: 0x00009C55,\n\t18713: 0x00009C59,\n\t18714: 0x00009C4C,\n\t18715: 0x00009C4E,\n\t18716: 0x00009DFB,\n\t18717: 0x00009DF7,\n\t18718: 0x00009DEF,\n\t18719: 0x00009DE3,\n\t18720: 0x00009DEB,\n\t18721: 0x00009DF8,\n\t18722: 0x00009DE4,\n\t18723: 0x00009DF6,\n\t18724: 0x00009DE1,\n\t18725: 0x00009DEE,\n\t18726: 0x00009DE6,\n\t18727: 0x00009DF2,\n\t18728: 0x00009DF0,\n\t18729: 0x00009DE2,\n\t18730: 0x00009DEC,\n\t18731: 0x00009DF4,\n\t18732: 0x00009DF3,\n\t18733: 0x00009DE8,\n\t18734: 0x00009DED,\n\t18735: 0x00009EC2,\n\t18736: 0x00009ED0,\n\t18737: 0x00009EF2,\n\t18738: 0x00009EF3,\n\t18739: 0x00009F06,\n\t18740: 0x00009F1C,\n\t18741: 0x00009F38,\n\t18742: 0x00009F37,\n\t18743: 0x00009F36,\n\t18744: 0x00009F43,\n\t18745: 0x00009F4F,\n\t18746: 0x00009F71,\n\t18747: 0x00009F70,\n\t18748: 0x00009F6E,\n\t18749: 0x00009F6F,\n\t18750: 0x000056D3,\n\t18751: 0x000056CD,\n\t18752: 0x00005B4E,\n\t18753: 0x00005C6D,\n\t18754: 0x0000652D,\n\t18755: 0x000066ED,\n\t18756: 0x000066EE,\n\t18757: 0x00006B13,\n\t18758: 0x0000705F,\n\t18759: 0x00007061,\n\t18760: 0x0000705D,\n\t18761: 0x00007060,\n\t18762: 0x00007223,\n\t18763: 0x000074DB,\n\t18764: 0x000074E5,\n\t18765: 0x000077D5,\n\t18766: 0x00007938,\n\t18767: 0x000079B7,\n\t18768: 0x000079B6,\n\t18769: 0x00007C6A,\n\t18770: 0x00007E97,\n\t18771: 0x00007F89,\n\t18772: 0x0000826D,\n\t18773: 0x00008643,\n\t18774: 0x00008838,\n\t18775: 0x00008837,\n\t18776: 0x00008835,\n\t18777: 0x0000884B,\n\t18778: 0x00008B94,\n\t18779: 0x00008B95,\n\t18780: 0x00008E9E,\n\t18781: 0x00008E9F,\n\t18782: 0x00008EA0,\n\t18783: 0x00008E9D,\n\t18784: 0x000091BE,\n\t18785: 0x000091BD,\n\t18786: 0x000091C2,\n\t18787: 0x0000946B,\n\t18788: 0x00009468,\n\t18789: 0x00009469,\n\t18790: 0x000096E5,\n\t18791: 0x00009746,\n\t18792: 0x00009743,\n\t18793: 0x00009747,\n\t18794: 0x000097C7,\n\t18795: 0x000097E5,\n\t18796: 0x00009A5E,\n\t18797: 0x00009AD5,\n\t18798: 0x00009B59,\n\t18799: 0x00009C63,\n\t18800: 0x00009C67,\n\t18801: 0x00009C66,\n\t18802: 0x00009C62,\n\t18803: 0x00009C5E,\n\t18804: 0x00009C60,\n\t18805: 0x00009E02,\n\t18806: 0x00009DFE,\n\t18807: 0x00009E07,\n\t18808: 0x00009E03,\n\t18809: 0x00009E06,\n\t18810: 0x00009E05,\n\t18811: 0x00009E00,\n\t18812: 0x00009E01,\n\t18813: 0x00009E09,\n\t18814: 0x00009DFF,\n\t18815: 0x00009DFD,\n\t18816: 0x00009E04,\n\t18817: 0x00009EA0,\n\t18818: 0x00009F1E,\n\t18819: 0x00009F46,\n\t18820: 0x00009F74,\n\t18821: 0x00009F75,\n\t18822: 0x00009F76,\n\t18823: 0x000056D4,\n\t18824: 0x0000652E,\n\t18825: 0x000065B8,\n\t18826: 0x00006B18,\n\t18827: 0x00006B19,\n\t18828: 0x00006B17,\n\t18829: 0x00006B1A,\n\t18830: 0x00007062,\n\t18831: 0x00007226,\n\t18832: 0x000072AA,\n\t18833: 0x000077D8,\n\t18834: 0x000077D9,\n\t18835: 0x00007939,\n\t18836: 0x00007C69,\n\t18837: 0x00007C6B,\n\t18838: 0x00007CF6,\n\t18839: 0x00007E9A,\n\t18840: 0x00007E98,\n\t18841: 0x00007E9B,\n\t18842: 0x00007E99,\n\t18843: 0x000081E0,\n\t18844: 0x000081E1,\n\t18845: 0x00008646,\n\t18846: 0x00008647,\n\t18847: 0x00008648,\n\t18848: 0x00008979,\n\t18849: 0x0000897A,\n\t18850: 0x0000897C,\n\t18851: 0x0000897B,\n\t18852: 0x000089FF,\n\t18853: 0x00008B98,\n\t18854: 0x00008B99,\n\t18855: 0x00008EA5,\n\t18856: 0x00008EA4,\n\t18857: 0x00008EA3,\n\t18858: 0x0000946E,\n\t18859: 0x0000946D,\n\t18860: 0x0000946F,\n\t18861: 0x00009471,\n\t18862: 0x00009473,\n\t18863: 0x00009749,\n\t18864: 0x00009872,\n\t18865: 0x0000995F,\n\t18866: 0x00009C68,\n\t18867: 0x00009C6E,\n\t18868: 0x00009C6D,\n\t18869: 0x00009E0B,\n\t18870: 0x00009E0D,\n\t18871: 0x00009E10,\n\t18872: 0x00009E0F,\n\t18873: 0x00009E12,\n\t18874: 0x00009E11,\n\t18875: 0x00009EA1,\n\t18876: 0x00009EF5,\n\t18877: 0x00009F09,\n\t18878: 0x00009F47,\n\t18879: 0x00009F78,\n\t18880: 0x00009F7B,\n\t18881: 0x00009F7A,\n\t18882: 0x00009F79,\n\t18883: 0x0000571E,\n\t18884: 0x00007066,\n\t18885: 0x00007C6F,\n\t18886: 0x0000883C,\n\t18887: 0x00008DB2,\n\t18888: 0x00008EA6,\n\t18889: 0x000091C3,\n\t18890: 0x00009474,\n\t18891: 0x00009478,\n\t18892: 0x00009476,\n\t18893: 0x00009475,\n\t18894: 0x00009A60,\n\t18895: 0x00009C74,\n\t18896: 0x00009C73,\n\t18897: 0x00009C71,\n\t18898: 0x00009C75,\n\t18899: 0x00009E14,\n\t18900: 0x00009E13,\n\t18901: 0x00009EF6,\n\t18902: 0x00009F0A,\n\t18903: 0x00009FA4,\n\t18904: 0x00007068,\n\t18905: 0x00007065,\n\t18906: 0x00007CF7,\n\t18907: 0x0000866A,\n\t18908: 0x0000883E,\n\t18909: 0x0000883D,\n\t18910: 0x0000883F,\n\t18911: 0x00008B9E,\n\t18912: 0x00008C9C,\n\t18913: 0x00008EA9,\n\t18914: 0x00008EC9,\n\t18915: 0x0000974B,\n\t18916: 0x00009873,\n\t18917: 0x00009874,\n\t18918: 0x000098CC,\n\t18919: 0x00009961,\n\t18920: 0x000099AB,\n\t18921: 0x00009A64,\n\t18922: 0x00009A66,\n\t18923: 0x00009A67,\n\t18924: 0x00009B24,\n\t18925: 0x00009E15,\n\t18926: 0x00009E17,\n\t18927: 0x00009F48,\n\t18928: 0x00006207,\n\t18929: 0x00006B1E,\n\t18930: 0x00007227,\n\t18931: 0x0000864C,\n\t18932: 0x00008EA8,\n\t18933: 0x00009482,\n\t18934: 0x00009480,\n\t18935: 0x00009481,\n\t18936: 0x00009A69,\n\t18937: 0x00009A68,\n\t18938: 0x00009B2E,\n\t18939: 0x00009E19,\n\t18940: 0x00007229,\n\t18941: 0x0000864B,\n\t18942: 0x00008B9F,\n\t18943: 0x00009483,\n\t18944: 0x00009C79,\n\t18945: 0x00009EB7,\n\t18946: 0x00007675,\n\t18947: 0x00009A6B,\n\t18948: 0x00009C7A,\n\t18949: 0x00009E1D,\n\t18950: 0x00007069,\n\t18951: 0x0000706A,\n\t18952: 0x00009EA4,\n\t18953: 0x00009F7E,\n\t18954: 0x00009F49,\n\t18955: 0x00009F98,\n\t18956: 0x00007881,\n\t18957: 0x000092B9,\n\t18958: 0x000088CF,\n\t18959: 0x000058BB,\n\t18960: 0x00006052,\n\t18961: 0x00007CA7,\n\t18962: 0x00005AFA,\n\t18963: 0x00002554,\n\t18964: 0x00002566,\n\t18965: 0x00002557,\n\t18966: 0x00002560,\n\t18967: 0x0000256C,\n\t18968: 0x00002563,\n\t18969: 0x0000255A,\n\t18970: 0x00002569,\n\t18971: 0x0000255D,\n\t18972: 0x00002552,\n\t18973: 0x00002564,\n\t18974: 0x00002555,\n\t18975: 0x0000255E,\n\t18976: 0x0000256A,\n\t18977: 0x00002561,\n\t18978: 0x00002558,\n\t18979: 0x00002567,\n\t18980: 0x0000255B,\n\t18981: 0x00002553,\n\t18982: 0x00002565,\n\t18983: 0x00002556,\n\t18984: 0x0000255F,\n\t18985: 0x0000256B,\n\t18986: 0x00002562,\n\t18987: 0x00002559,\n\t18988: 0x00002568,\n\t18989: 0x0000255C,\n\t18990: 0x00002551,\n\t18991: 0x00002550,\n\t18992: 0x0000256D,\n\t18993: 0x0000256E,\n\t18994: 0x00002570,\n\t18995: 0x0000256F,\n\t18996: 0x0000FFED,\n\t18997: 0x00020547,\n\t18998: 0x000092DB,\n\t18999: 0x000205DF,\n\t19000: 0x00023FC5,\n\t19001: 0x0000854C,\n\t19002: 0x000042B5,\n\t19003: 0x000073EF,\n\t19004: 0x000051B5,\n\t19005: 0x00003649,\n\t19006: 0x00024942,\n\t19007: 0x000289E4,\n\t19008: 0x00009344,\n\t19009: 0x000219DB,\n\t19010: 0x000082EE,\n\t19011: 0x00023CC8,\n\t19012: 0x0000783C,\n\t19013: 0x00006744,\n\t19014: 0x000062DF,\n\t19015: 0x00024933,\n\t19016: 0x000289AA,\n\t19017: 0x000202A0,\n\t19018: 0x00026BB3,\n\t19019: 0x00021305,\n\t19020: 0x00004FAB,\n\t19021: 0x000224ED,\n\t19022: 0x00005008,\n\t19023: 0x00026D29,\n\t19024: 0x00027A84,\n\t19025: 0x00023600,\n\t19026: 0x00024AB1,\n\t19027: 0x00022513,\n\t19028: 0x00005029,\n\t19029: 0x0002037E,\n\t19030: 0x00005FA4,\n\t19031: 0x00020380,\n\t19032: 0x00020347,\n\t19033: 0x00006EDB,\n\t19034: 0x0002041F,\n\t19035: 0x0000507D,\n\t19036: 0x00005101,\n\t19037: 0x0000347A,\n\t19038: 0x0000510E,\n\t19039: 0x0000986C,\n\t19040: 0x00003743,\n\t19041: 0x00008416,\n\t19042: 0x000249A4,\n\t19043: 0x00020487,\n\t19044: 0x00005160,\n\t19045: 0x000233B4,\n\t19046: 0x0000516A,\n\t19047: 0x00020BFF,\n\t19048: 0x000220FC,\n\t19049: 0x000202E5,\n\t19050: 0x00022530,\n\t19051: 0x0002058E,\n\t19052: 0x00023233,\n\t19053: 0x00021983,\n\t19054: 0x00005B82,\n\t19055: 0x0000877D,\n\t19056: 0x000205B3,\n\t19057: 0x00023C99,\n\t19058: 0x000051B2,\n\t19059: 0x000051B8,\n\t19060: 0x00009D34,\n\t19061: 0x000051C9,\n\t19062: 0x000051CF,\n\t19063: 0x000051D1,\n\t19064: 0x00003CDC,\n\t19065: 0x000051D3,\n\t19066: 0x00024AA6,\n\t19067: 0x000051B3,\n\t19068: 0x000051E2,\n\t19069: 0x00005342,\n\t19070: 0x000051ED,\n\t19071: 0x000083CD,\n\t19072: 0x0000693E,\n\t19073: 0x0002372D,\n\t19074: 0x00005F7B,\n\t19075: 0x0000520B,\n\t19076: 0x00005226,\n\t19077: 0x0000523C,\n\t19078: 0x000052B5,\n\t19079: 0x00005257,\n\t19080: 0x00005294,\n\t19081: 0x000052B9,\n\t19082: 0x000052C5,\n\t19083: 0x00007C15,\n\t19084: 0x00008542,\n\t19085: 0x000052E0,\n\t19086: 0x0000860D,\n\t19087: 0x00026B13,\n\t19088: 0x00005305,\n\t19089: 0x00028ADE,\n\t19090: 0x00005549,\n\t19091: 0x00006ED9,\n\t19092: 0x00023F80,\n\t19093: 0x00020954,\n\t19094: 0x00023FEC,\n\t19095: 0x00005333,\n\t19096: 0x00005344,\n\t19097: 0x00020BE2,\n\t19098: 0x00006CCB,\n\t19099: 0x00021726,\n\t19100: 0x0000681B,\n\t19101: 0x000073D5,\n\t19102: 0x0000604A,\n\t19103: 0x00003EAA,\n\t19104: 0x000038CC,\n\t19105: 0x000216E8,\n\t19106: 0x000071DD,\n\t19107: 0x000044A2,\n\t19108: 0x0000536D,\n\t19109: 0x00005374,\n\t19110: 0x000286AB,\n\t19111: 0x0000537E,\n\t19112: 0x0000537F,\n\t19113: 0x00021596,\n\t19114: 0x00021613,\n\t19115: 0x000077E6,\n\t19116: 0x00005393,\n\t19117: 0x00028A9B,\n\t19118: 0x000053A0,\n\t19119: 0x000053AB,\n\t19120: 0x000053AE,\n\t19121: 0x000073A7,\n\t19122: 0x00025772,\n\t19123: 0x00003F59,\n\t19124: 0x0000739C,\n\t19125: 0x000053C1,\n\t19126: 0x000053C5,\n\t19127: 0x00006C49,\n\t19128: 0x00004E49,\n\t19129: 0x000057FE,\n\t19130: 0x000053D9,\n\t19131: 0x00003AAB,\n\t19132: 0x00020B8F,\n\t19133: 0x000053E0,\n\t19134: 0x00023FEB,\n\t19135: 0x00022DA3,\n\t19136: 0x000053F6,\n\t19137: 0x00020C77,\n\t19138: 0x00005413,\n\t19139: 0x00007079,\n\t19140: 0x0000552B,\n\t19141: 0x00006657,\n\t19142: 0x00006D5B,\n\t19143: 0x0000546D,\n\t19144: 0x00026B53,\n\t19145: 0x00020D74,\n\t19146: 0x0000555D,\n\t19147: 0x0000548F,\n\t19148: 0x000054A4,\n\t19149: 0x000047A6,\n\t19150: 0x0002170D,\n\t19151: 0x00020EDD,\n\t19152: 0x00003DB4,\n\t19153: 0x00020D4D,\n\t19154: 0x000289BC,\n\t19155: 0x00022698,\n\t19156: 0x00005547,\n\t19157: 0x00004CED,\n\t19158: 0x0000542F,\n\t19159: 0x00007417,\n\t19160: 0x00005586,\n\t19161: 0x000055A9,\n\t19162: 0x00005605,\n\t19163: 0x000218D7,\n\t19164: 0x0002403A,\n\t19165: 0x00004552,\n\t19166: 0x00024435,\n\t19167: 0x000066B3,\n\t19168: 0x000210B4,\n\t19169: 0x00005637,\n\t19170: 0x000066CD,\n\t19171: 0x0002328A,\n\t19172: 0x000066A4,\n\t19173: 0x000066AD,\n\t19174: 0x0000564D,\n\t19175: 0x0000564F,\n\t19176: 0x000078F1,\n\t19177: 0x000056F1,\n\t19178: 0x00009787,\n\t19179: 0x000053FE,\n\t19180: 0x00005700,\n\t19181: 0x000056EF,\n\t19182: 0x000056ED,\n\t19183: 0x00028B66,\n\t19184: 0x00003623,\n\t19185: 0x0002124F,\n\t19186: 0x00005746,\n\t19187: 0x000241A5,\n\t19188: 0x00006C6E,\n\t19189: 0x0000708B,\n\t19190: 0x00005742,\n\t19191: 0x000036B1,\n\t19192: 0x00026C7E,\n\t19193: 0x000057E6,\n\t19194: 0x00021416,\n\t19195: 0x00005803,\n\t19196: 0x00021454,\n\t19197: 0x00024363,\n\t19198: 0x00005826,\n\t19199: 0x00024BF5,\n\t19200: 0x0000585C,\n\t19201: 0x000058AA,\n\t19202: 0x00003561,\n\t19203: 0x000058E0,\n\t19204: 0x000058DC,\n\t19205: 0x0002123C,\n\t19206: 0x000058FB,\n\t19207: 0x00005BFF,\n\t19208: 0x00005743,\n\t19209: 0x0002A150,\n\t19210: 0x00024278,\n\t19211: 0x000093D3,\n\t19212: 0x000035A1,\n\t19213: 0x0000591F,\n\t19214: 0x000068A6,\n\t19215: 0x000036C3,\n\t19216: 0x00006E59,\n\t19217: 0x0002163E,\n\t19218: 0x00005A24,\n\t19219: 0x00005553,\n\t19220: 0x00021692,\n\t19221: 0x00008505,\n\t19222: 0x000059C9,\n\t19223: 0x00020D4E,\n\t19224: 0x00026C81,\n\t19225: 0x00026D2A,\n\t19226: 0x000217DC,\n\t19227: 0x000059D9,\n\t19228: 0x000217FB,\n\t19229: 0x000217B2,\n\t19230: 0x00026DA6,\n\t19231: 0x00006D71,\n\t19232: 0x00021828,\n\t19233: 0x000216D5,\n\t19234: 0x000059F9,\n\t19235: 0x00026E45,\n\t19236: 0x00005AAB,\n\t19237: 0x00005A63,\n\t19238: 0x000036E6,\n\t19239: 0x000249A9,\n\t19240: 0x00005A77,\n\t19241: 0x00003708,\n\t19242: 0x00005A96,\n\t19243: 0x00007465,\n\t19244: 0x00005AD3,\n\t19245: 0x00026FA1,\n\t19246: 0x00022554,\n\t19247: 0x00003D85,\n\t19248: 0x00021911,\n\t19249: 0x00003732,\n\t19250: 0x000216B8,\n\t19251: 0x00005E83,\n\t19252: 0x000052D0,\n\t19253: 0x00005B76,\n\t19254: 0x00006588,\n\t19255: 0x00005B7C,\n\t19256: 0x00027A0E,\n\t19257: 0x00004004,\n\t19258: 0x0000485D,\n\t19259: 0x00020204,\n\t19260: 0x00005BD5,\n\t19261: 0x00006160,\n\t19262: 0x00021A34,\n\t19263: 0x000259CC,\n\t19264: 0x000205A5,\n\t19265: 0x00005BF3,\n\t19266: 0x00005B9D,\n\t19267: 0x00004D10,\n\t19268: 0x00005C05,\n\t19269: 0x00021B44,\n\t19270: 0x00005C13,\n\t19271: 0x000073CE,\n\t19272: 0x00005C14,\n\t19273: 0x00021CA5,\n\t19274: 0x00026B28,\n\t19275: 0x00005C49,\n\t19276: 0x000048DD,\n\t19277: 0x00005C85,\n\t19278: 0x00005CE9,\n\t19279: 0x00005CEF,\n\t19280: 0x00005D8B,\n\t19281: 0x00021DF9,\n\t19282: 0x00021E37,\n\t19283: 0x00005D10,\n\t19284: 0x00005D18,\n\t19285: 0x00005D46,\n\t19286: 0x00021EA4,\n\t19287: 0x00005CBA,\n\t19288: 0x00005DD7,\n\t19289: 0x000082FC,\n\t19290: 0x0000382D,\n\t19291: 0x00024901,\n\t19292: 0x00022049,\n\t19293: 0x00022173,\n\t19294: 0x00008287,\n\t19295: 0x00003836,\n\t19296: 0x00003BC2,\n\t19297: 0x00005E2E,\n\t19298: 0x00006A8A,\n\t19299: 0x00005E75,\n\t19300: 0x00005E7A,\n\t19301: 0x000244BC,\n\t19302: 0x00020CD3,\n\t19303: 0x000053A6,\n\t19304: 0x00004EB7,\n\t19305: 0x00005ED0,\n\t19306: 0x000053A8,\n\t19307: 0x00021771,\n\t19308: 0x00005E09,\n\t19309: 0x00005EF4,\n\t19310: 0x00028482,\n\t19311: 0x00005EF9,\n\t19312: 0x00005EFB,\n\t19313: 0x000038A0,\n\t19314: 0x00005EFC,\n\t19315: 0x0000683E,\n\t19316: 0x0000941B,\n\t19317: 0x00005F0D,\n\t19318: 0x000201C1,\n\t19319: 0x0002F894,\n\t19320: 0x00003ADE,\n\t19321: 0x000048AE,\n\t19322: 0x0002133A,\n\t19323: 0x00005F3A,\n\t19324: 0x00026888,\n\t19325: 0x000223D0,\n\t19326: 0x00005F58,\n\t19327: 0x00022471,\n\t19328: 0x00005F63,\n\t19329: 0x000097BD,\n\t19330: 0x00026E6E,\n\t19331: 0x00005F72,\n\t19332: 0x00009340,\n\t19333: 0x00028A36,\n\t19334: 0x00005FA7,\n\t19335: 0x00005DB6,\n\t19336: 0x00003D5F,\n\t19337: 0x00025250,\n\t19338: 0x00021F6A,\n\t19339: 0x000270F8,\n\t19340: 0x00022668,\n\t19341: 0x000091D6,\n\t19342: 0x0002029E,\n\t19343: 0x00028A29,\n\t19344: 0x00006031,\n\t19345: 0x00006685,\n\t19346: 0x00021877,\n\t19347: 0x00003963,\n\t19348: 0x00003DC7,\n\t19349: 0x00003639,\n\t19350: 0x00005790,\n\t19351: 0x000227B4,\n\t19352: 0x00007971,\n\t19353: 0x00003E40,\n\t19354: 0x0000609E,\n\t19355: 0x000060A4,\n\t19356: 0x000060B3,\n\t19357: 0x00024982,\n\t19358: 0x0002498F,\n\t19359: 0x00027A53,\n\t19360: 0x000074A4,\n\t19361: 0x000050E1,\n\t19362: 0x00005AA0,\n\t19363: 0x00006164,\n\t19364: 0x00008424,\n\t19365: 0x00006142,\n\t19366: 0x0002F8A6,\n\t19367: 0x00026ED2,\n\t19368: 0x00006181,\n\t19369: 0x000051F4,\n\t19370: 0x00020656,\n\t19371: 0x00006187,\n\t19372: 0x00005BAA,\n\t19373: 0x00023FB7,\n\t19374: 0x0002285F,\n\t19375: 0x000061D3,\n\t19376: 0x00028B9D,\n\t19377: 0x0002995D,\n\t19378: 0x000061D0,\n\t19379: 0x00003932,\n\t19380: 0x00022980,\n\t19381: 0x000228C1,\n\t19382: 0x00006023,\n\t19383: 0x0000615C,\n\t19384: 0x0000651E,\n\t19385: 0x0000638B,\n\t19386: 0x00020118,\n\t19387: 0x000062C5,\n\t19388: 0x00021770,\n\t19389: 0x000062D5,\n\t19390: 0x00022E0D,\n\t19391: 0x0000636C,\n\t19392: 0x000249DF,\n\t19393: 0x00003A17,\n\t19394: 0x00006438,\n\t19395: 0x000063F8,\n\t19396: 0x0002138E,\n\t19397: 0x000217FC,\n\t19398: 0x00006490,\n\t19399: 0x00006F8A,\n\t19400: 0x00022E36,\n\t19401: 0x00009814,\n\t19402: 0x0002408C,\n\t19403: 0x0002571D,\n\t19404: 0x000064E1,\n\t19405: 0x000064E5,\n\t19406: 0x0000947B,\n\t19407: 0x00003A66,\n\t19408: 0x0000643A,\n\t19409: 0x00003A57,\n\t19410: 0x0000654D,\n\t19411: 0x00006F16,\n\t19412: 0x00024A28,\n\t19413: 0x00024A23,\n\t19414: 0x00006585,\n\t19415: 0x0000656D,\n\t19416: 0x0000655F,\n\t19417: 0x0002307E,\n\t19418: 0x000065B5,\n\t19419: 0x00024940,\n\t19420: 0x00004B37,\n\t19421: 0x000065D1,\n\t19422: 0x000040D8,\n\t19423: 0x00021829,\n\t19424: 0x000065E0,\n\t19425: 0x000065E3,\n\t19426: 0x00005FDF,\n\t19427: 0x00023400,\n\t19428: 0x00006618,\n\t19429: 0x000231F7,\n\t19430: 0x000231F8,\n\t19431: 0x00006644,\n\t19432: 0x000231A4,\n\t19433: 0x000231A5,\n\t19434: 0x0000664B,\n\t19435: 0x00020E75,\n\t19436: 0x00006667,\n\t19437: 0x000251E6,\n\t19438: 0x00006673,\n\t19439: 0x00006674,\n\t19440: 0x00021E3D,\n\t19441: 0x00023231,\n\t19442: 0x000285F4,\n\t19443: 0x000231C8,\n\t19444: 0x00025313,\n\t19445: 0x000077C5,\n\t19446: 0x000228F7,\n\t19447: 0x000099A4,\n\t19448: 0x00006702,\n\t19449: 0x0002439C,\n\t19450: 0x00024A21,\n\t19451: 0x00003B2B,\n\t19452: 0x000069FA,\n\t19453: 0x000237C2,\n\t19454: 0x0000675E,\n\t19455: 0x00006767,\n\t19456: 0x00006762,\n\t19457: 0x000241CD,\n\t19458: 0x000290ED,\n\t19459: 0x000067D7,\n\t19460: 0x000044E9,\n\t19461: 0x00006822,\n\t19462: 0x00006E50,\n\t19463: 0x0000923C,\n\t19464: 0x00006801,\n\t19465: 0x000233E6,\n\t19466: 0x00026DA0,\n\t19467: 0x0000685D,\n\t19468: 0x0002346F,\n\t19469: 0x000069E1,\n\t19470: 0x00006A0B,\n\t19471: 0x00028ADF,\n\t19472: 0x00006973,\n\t19473: 0x000068C3,\n\t19474: 0x000235CD,\n\t19475: 0x00006901,\n\t19476: 0x00006900,\n\t19477: 0x00003D32,\n\t19478: 0x00003A01,\n\t19479: 0x0002363C,\n\t19480: 0x00003B80,\n\t19481: 0x000067AC,\n\t19482: 0x00006961,\n\t19483: 0x00028A4A,\n\t19484: 0x000042FC,\n\t19485: 0x00006936,\n\t19486: 0x00006998,\n\t19487: 0x00003BA1,\n\t19488: 0x000203C9,\n\t19489: 0x00008363,\n\t19490: 0x00005090,\n\t19491: 0x000069F9,\n\t19492: 0x00023659,\n\t19493: 0x0002212A,\n\t19494: 0x00006A45,\n\t19495: 0x00023703,\n\t19496: 0x00006A9D,\n\t19497: 0x00003BF3,\n\t19498: 0x000067B1,\n\t19499: 0x00006AC8,\n\t19500: 0x0002919C,\n\t19501: 0x00003C0D,\n\t19502: 0x00006B1D,\n\t19503: 0x00020923,\n\t19504: 0x000060DE,\n\t19505: 0x00006B35,\n\t19506: 0x00006B74,\n\t19507: 0x000227CD,\n\t19508: 0x00006EB5,\n\t19509: 0x00023ADB,\n\t19510: 0x000203B5,\n\t19511: 0x00021958,\n\t19512: 0x00003740,\n\t19513: 0x00005421,\n\t19514: 0x00023B5A,\n\t19515: 0x00006BE1,\n\t19516: 0x00023EFC,\n\t19517: 0x00006BDC,\n\t19518: 0x00006C37,\n\t19519: 0x0002248B,\n\t19520: 0x000248F1,\n\t19521: 0x00026B51,\n\t19522: 0x00006C5A,\n\t19523: 0x00008226,\n\t19524: 0x00006C79,\n\t19525: 0x00023DBC,\n\t19526: 0x000044C5,\n\t19527: 0x00023DBD,\n\t19528: 0x000241A4,\n\t19529: 0x0002490C,\n\t19530: 0x00024900,\n\t19531: 0x00023CC9,\n\t19532: 0x000036E5,\n\t19533: 0x00003CEB,\n\t19534: 0x00020D32,\n\t19535: 0x00009B83,\n\t19536: 0x000231F9,\n\t19537: 0x00022491,\n\t19538: 0x00007F8F,\n\t19539: 0x00006837,\n\t19540: 0x00026D25,\n\t19541: 0x00026DA1,\n\t19542: 0x00026DEB,\n\t19543: 0x00006D96,\n\t19544: 0x00006D5C,\n\t19545: 0x00006E7C,\n\t19546: 0x00006F04,\n\t19547: 0x0002497F,\n\t19548: 0x00024085,\n\t19549: 0x00026E72,\n\t19550: 0x00008533,\n\t19551: 0x00026F74,\n\t19552: 0x000051C7,\n\t19553: 0x00006C9C,\n\t19554: 0x00006E1D,\n\t19555: 0x0000842E,\n\t19556: 0x00028B21,\n\t19557: 0x00006E2F,\n\t19558: 0x00023E2F,\n\t19559: 0x00007453,\n\t19560: 0x00023F82,\n\t19561: 0x000079CC,\n\t19562: 0x00006E4F,\n\t19563: 0x00005A91,\n\t19564: 0x0002304B,\n\t19565: 0x00006FF8,\n\t19566: 0x0000370D,\n\t19567: 0x00006F9D,\n\t19568: 0x00023E30,\n\t19569: 0x00006EFA,\n\t19570: 0x00021497,\n\t19571: 0x0002403D,\n\t19572: 0x00004555,\n\t19573: 0x000093F0,\n\t19574: 0x00006F44,\n\t19575: 0x00006F5C,\n\t19576: 0x00003D4E,\n\t19577: 0x00006F74,\n\t19578: 0x00029170,\n\t19579: 0x00003D3B,\n\t19580: 0x00006F9F,\n\t19581: 0x00024144,\n\t19582: 0x00006FD3,\n\t19583: 0x00024091,\n\t19584: 0x00024155,\n\t19585: 0x00024039,\n\t19586: 0x00023FF0,\n\t19587: 0x00023FB4,\n\t19588: 0x0002413F,\n\t19589: 0x000051DF,\n\t19590: 0x00024156,\n\t19591: 0x00024157,\n\t19592: 0x00024140,\n\t19593: 0x000261DD,\n\t19594: 0x0000704B,\n\t19595: 0x0000707E,\n\t19596: 0x000070A7,\n\t19597: 0x00007081,\n\t19598: 0x000070CC,\n\t19599: 0x000070D5,\n\t19600: 0x000070D6,\n\t19601: 0x000070DF,\n\t19602: 0x00004104,\n\t19603: 0x00003DE8,\n\t19604: 0x000071B4,\n\t19605: 0x00007196,\n\t19606: 0x00024277,\n\t19607: 0x0000712B,\n\t19608: 0x00007145,\n\t19609: 0x00005A88,\n\t19610: 0x0000714A,\n\t19611: 0x0000716E,\n\t19612: 0x00005C9C,\n\t19613: 0x00024365,\n\t19614: 0x0000714F,\n\t19615: 0x00009362,\n\t19616: 0x000242C1,\n\t19617: 0x0000712C,\n\t19618: 0x0002445A,\n\t19619: 0x00024A27,\n\t19620: 0x00024A22,\n\t19621: 0x000071BA,\n\t19622: 0x00028BE8,\n\t19623: 0x000070BD,\n\t19624: 0x0000720E,\n\t19625: 0x00009442,\n\t19626: 0x00007215,\n\t19627: 0x00005911,\n\t19628: 0x00009443,\n\t19629: 0x00007224,\n\t19630: 0x00009341,\n\t19631: 0x00025605,\n\t19632: 0x0000722E,\n\t19633: 0x00007240,\n\t19634: 0x00024974,\n\t19635: 0x000068BD,\n\t19636: 0x00007255,\n\t19637: 0x00007257,\n\t19638: 0x00003E55,\n\t19639: 0x00023044,\n\t19640: 0x0000680D,\n\t19641: 0x00006F3D,\n\t19642: 0x00007282,\n\t19643: 0x0000732A,\n\t19644: 0x0000732B,\n\t19645: 0x00024823,\n\t19646: 0x0002882B,\n\t19647: 0x000048ED,\n\t19648: 0x00028804,\n\t19649: 0x00007328,\n\t19650: 0x0000732E,\n\t19651: 0x000073CF,\n\t19652: 0x000073AA,\n\t19653: 0x00020C3A,\n\t19654: 0x00026A2E,\n\t19655: 0x000073C9,\n\t19656: 0x00007449,\n\t19657: 0x000241E2,\n\t19658: 0x000216E7,\n\t19659: 0x00024A24,\n\t19660: 0x00006623,\n\t19661: 0x000036C5,\n\t19662: 0x000249B7,\n\t19663: 0x0002498D,\n\t19664: 0x000249FB,\n\t19665: 0x000073F7,\n\t19666: 0x00007415,\n\t19667: 0x00006903,\n\t19668: 0x00024A26,\n\t19669: 0x00007439,\n\t19670: 0x000205C3,\n\t19671: 0x00003ED7,\n\t19672: 0x0000745C,\n\t19673: 0x000228AD,\n\t19674: 0x00007460,\n\t19675: 0x00028EB2,\n\t19676: 0x00007447,\n\t19677: 0x000073E4,\n\t19678: 0x00007476,\n\t19679: 0x000083B9,\n\t19680: 0x0000746C,\n\t19681: 0x00003730,\n\t19682: 0x00007474,\n\t19683: 0x000093F1,\n\t19684: 0x00006A2C,\n\t19685: 0x00007482,\n\t19686: 0x00004953,\n\t19687: 0x00024A8C,\n\t19688: 0x0002415F,\n\t19689: 0x00024A79,\n\t19690: 0x00028B8F,\n\t19691: 0x00005B46,\n\t19692: 0x00028C03,\n\t19693: 0x0002189E,\n\t19694: 0x000074C8,\n\t19695: 0x00021988,\n\t19696: 0x0000750E,\n\t19697: 0x000074E9,\n\t19698: 0x0000751E,\n\t19699: 0x00028ED9,\n\t19700: 0x00021A4B,\n\t19701: 0x00005BD7,\n\t19702: 0x00028EAC,\n\t19703: 0x00009385,\n\t19704: 0x0000754D,\n\t19705: 0x0000754A,\n\t19706: 0x00007567,\n\t19707: 0x0000756E,\n\t19708: 0x00024F82,\n\t19709: 0x00003F04,\n\t19710: 0x00024D13,\n\t19711: 0x0000758E,\n\t19712: 0x0000745D,\n\t19713: 0x0000759E,\n\t19714: 0x000075B4,\n\t19715: 0x00007602,\n\t19716: 0x0000762C,\n\t19717: 0x00007651,\n\t19718: 0x0000764F,\n\t19719: 0x0000766F,\n\t19720: 0x00007676,\n\t19721: 0x000263F5,\n\t19722: 0x00007690,\n\t19723: 0x000081EF,\n\t19724: 0x000037F8,\n\t19725: 0x00026911,\n\t19726: 0x0002690E,\n\t19727: 0x000076A1,\n\t19728: 0x000076A5,\n\t19729: 0x000076B7,\n\t19730: 0x000076CC,\n\t19731: 0x00026F9F,\n\t19732: 0x00008462,\n\t19733: 0x0002509D,\n\t19734: 0x0002517D,\n\t19735: 0x00021E1C,\n\t19736: 0x0000771E,\n\t19737: 0x00007726,\n\t19738: 0x00007740,\n\t19739: 0x000064AF,\n\t19740: 0x00025220,\n\t19741: 0x00007758,\n\t19742: 0x000232AC,\n\t19743: 0x000077AF,\n\t19744: 0x00028964,\n\t19745: 0x00028968,\n\t19746: 0x000216C1,\n\t19747: 0x000077F4,\n\t19748: 0x00007809,\n\t19749: 0x00021376,\n\t19750: 0x00024A12,\n\t19751: 0x000068CA,\n\t19752: 0x000078AF,\n\t19753: 0x000078C7,\n\t19754: 0x000078D3,\n\t19755: 0x000096A5,\n\t19756: 0x0000792E,\n\t19757: 0x000255E0,\n\t19758: 0x000078D7,\n\t19759: 0x00007934,\n\t19760: 0x000078B1,\n\t19761: 0x0002760C,\n\t19762: 0x00008FB8,\n\t19763: 0x00008884,\n\t19764: 0x00028B2B,\n\t19765: 0x00026083,\n\t19766: 0x0002261C,\n\t19767: 0x00007986,\n\t19768: 0x00008900,\n\t19769: 0x00006902,\n\t19770: 0x00007980,\n\t19771: 0x00025857,\n\t19772: 0x0000799D,\n\t19773: 0x00027B39,\n\t19774: 0x0000793C,\n\t19775: 0x000079A9,\n\t19776: 0x00006E2A,\n\t19777: 0x00027126,\n\t19778: 0x00003EA8,\n\t19779: 0x000079C6,\n\t19780: 0x0002910D,\n\t19781: 0x000079D4,\n}\n\nconst numEncodeTables = 8\n\n// encodeX are the encoding tables from Unicode to Big5 code,\n// sorted by decreasing length.\n// encode0: 42633 entries for runes in [131105, 173738).\n// encode1: 29004 entries for runes in [ 11904,  40908).\n// encode2:  2176 entries for runes in [  7870,  10046).\n// encode3:   939 entries for runes in [   167,   1106).\n// encode4:   446 entries for runes in [ 65072,  65518).\n// encode5:   432 entries for runes in [194597, 195029).\n// encode6:   263 entries for runes in [ 63751,  64014).\n// encode7:     1 entries for runes in [175615, 175616).\n\nconst encode0Low, encode0High = 131105, 173738\n\nvar encode0 = [...]uint16{\n\t131105 - 131105: 0x9C71,\n\t131134 - 131105: 0x9375,\n\t131142 - 131105: 0x9376,\n\t131150 - 131105: 0x9548,\n\t131176 - 131105: 0x8EC6,\n\t131206 - 131105: 0x8BC5,\n\t131207 - 131105: 0x8BFA,\n\t131210 - 131105: 0xC87C,\n\t131220 - 131105: 0x9AB4,\n\t131274 - 131105: 0x884E,\n\t131275 - 131105: 0x884B,\n\t131276 - 131105: 0xC87A,\n\t131277 - 131105: 0x8848,\n\t131281 - 131105: 0x8847,\n\t131310 - 131105: 0xA0F6,\n\t131340 - 131105: 0x8845,\n\t131342 - 131105: 0x8853,\n\t131352 - 131105: 0xFCAD,\n\t131492 - 131105: 0x8CF5,\n\t131497 - 131105: 0x8AAD,\n\t131499 - 131105: 0x9272,\n\t131521 - 131105: 0xFC47,\n\t131540 - 131105: 0x94DF,\n\t131570 - 131105: 0x9FD1,\n\t131588 - 131105: 0xFBCB,\n\t131596 - 131105: 0x927D,\n\t131604 - 131105: 0x98A4,\n\t131641 - 131105: 0x8CF9,\n\t131675 - 131105: 0x94E7,\n\t131700 - 131105: 0x90CB,\n\t131701 - 131105: 0x927B,\n\t131737 - 131105: 0x94D8,\n\t131742 - 131105: 0xFC5F,\n\t131744 - 131105: 0xFA54,\n\t131767 - 131105: 0x9AB5,\n\t131775 - 131105: 0x96DA,\n\t131776 - 131105: 0x9279,\n\t131813 - 131105: 0xFA74,\n\t131850 - 131105: 0x9275,\n\t131877 - 131105: 0x8DFB,\n\t131905 - 131105: 0x8A49,\n\t131909 - 131105: 0x92DF,\n\t131910 - 131105: 0x9B7C,\n\t131911 - 131105: 0xFA63,\n\t131966 - 131105: 0xFA60,\n\t131967 - 131105: 0x926D,\n\t131968 - 131105: 0xFA62,\n\t132000 - 131105: 0x9AB6,\n\t132007 - 131105: 0x976B,\n\t132021 - 131105: 0xFD6A,\n\t132041 - 131105: 0xFD54,\n\t132043 - 131105: 0x9273,\n\t132085 - 131105: 0x97D8,\n\t132092 - 131105: 0x9FBB,\n\t132115 - 131105: 0x9342,\n\t132116 - 131105: 0x9276,\n\t132127 - 131105: 0xFA65,\n\t132197 - 131105: 0x926C,\n\t132231 - 131105: 0xFA6E,\n\t132238 - 131105: 0x9EE0,\n\t132241 - 131105: 0x92C0,\n\t132242 - 131105: 0x92BF,\n\t132259 - 131105: 0x92BE,\n\t132311 - 131105: 0x9ABA,\n\t132348 - 131105: 0x8AB3,\n\t132350 - 131105: 0x9775,\n\t132423 - 131105: 0xFA40,\n\t132494 - 131105: 0xFA76,\n\t132517 - 131105: 0xFBD0,\n\t132531 - 131105: 0xFA7B,\n\t132547 - 131105: 0xFE6D,\n\t132554 - 131105: 0x9BB3,\n\t132560 - 131105: 0x89CC,\n\t132565 - 131105: 0x9ABE,\n\t132575 - 131105: 0xFA42,\n\t132576 - 131105: 0x92BC,\n\t132587 - 131105: 0x945C,\n\t132625 - 131105: 0x9BB5,\n\t132629 - 131105: 0x9ABF,\n\t132633 - 131105: 0x98A7,\n\t132634 - 131105: 0x97A4,\n\t132656 - 131105: 0x90FD,\n\t132694 - 131105: 0xFC7B,\n\t132726 - 131105: 0x9AC0,\n\t132878 - 131105: 0x92C3,\n\t132913 - 131105: 0x8AAA,\n\t132985 - 131105: 0x9BD0,\n\t133164 - 131105: 0x9550,\n\t133235 - 131105: 0x92C6,\n\t133333 - 131105: 0x98A6,\n\t133398 - 131105: 0x9546,\n\t133411 - 131105: 0xFD63,\n\t133460 - 131105: 0xFAC2,\n\t133497 - 131105: 0x9EC3,\n\t133607 - 131105: 0x89B2,\n\t133649 - 131105: 0x9C66,\n\t133712 - 131105: 0x9053,\n\t133743 - 131105: 0x8C62,\n\t133770 - 131105: 0x87A8,\n\t133812 - 131105: 0x97C1,\n\t133826 - 131105: 0x9AC4,\n\t133837 - 131105: 0x9AC5,\n\t133901 - 131105: 0x8EEF,\n\t134031 - 131105: 0xFAE9,\n\t134047 - 131105: 0x8D40,\n\t134056 - 131105: 0x9262,\n\t134057 - 131105: 0x8AF7,\n\t134079 - 131105: 0x9AC6,\n\t134086 - 131105: 0x92E1,\n\t134091 - 131105: 0x9AC9,\n\t134114 - 131105: 0xFAC6,\n\t134123 - 131105: 0x97A5,\n\t134139 - 131105: 0x9ACB,\n\t134143 - 131105: 0xFA72,\n\t134155 - 131105: 0x8A5E,\n\t134157 - 131105: 0x94E0,\n\t134176 - 131105: 0x92CC,\n\t134196 - 131105: 0x8AE5,\n\t134202 - 131105: 0xFE5C,\n\t134203 - 131105: 0x9ACC,\n\t134209 - 131105: 0x9DF9,\n\t134210 - 131105: 0x8A43,\n\t134211 - 131105: 0x8AA6,\n\t134227 - 131105: 0x9ACD,\n\t134245 - 131105: 0x9ACE,\n\t134263 - 131105: 0xFAEE,\n\t134264 - 131105: 0x9BCC,\n\t134268 - 131105: 0x9ACF,\n\t134285 - 131105: 0x9AD1,\n\t134294 - 131105: 0x9DFA,\n\t134300 - 131105: 0x9D7C,\n\t134325 - 131105: 0x9AD3,\n\t134328 - 131105: 0x97A6,\n\t134351 - 131105: 0x995F,\n\t134355 - 131105: 0xFBF6,\n\t134356 - 131105: 0x9FC5,\n\t134357 - 131105: 0x8A59,\n\t134358 - 131105: 0x8B6B,\n\t134365 - 131105: 0x9AD4,\n\t134381 - 131105: 0x9AD5,\n\t134399 - 131105: 0x97A2,\n\t134421 - 131105: 0x8A44,\n\t134440 - 131105: 0x9F4A,\n\t134449 - 131105: 0x90A1,\n\t134450 - 131105: 0xFDA4,\n\t134470 - 131105: 0x8A64,\n\t134471 - 131105: 0x8AF2,\n\t134472 - 131105: 0x8AF8,\n\t134473 - 131105: 0x9DD8,\n\t134476 - 131105: 0x94D6,\n\t134477 - 131105: 0xFAFE,\n\t134478 - 131105: 0xFBA7,\n\t134511 - 131105: 0x9AD6,\n\t134513 - 131105: 0x9F4D,\n\t134516 - 131105: 0xFAF6,\n\t134524 - 131105: 0x8A57,\n\t134526 - 131105: 0x8B43,\n\t134527 - 131105: 0x8B44,\n\t134550 - 131105: 0x8AB6,\n\t134556 - 131105: 0x8AC0,\n\t134567 - 131105: 0x9E54,\n\t134578 - 131105: 0x9AD7,\n\t134600 - 131105: 0x9AD8,\n\t134660 - 131105: 0x9ADC,\n\t134665 - 131105: 0x8ACA,\n\t134666 - 131105: 0x9EA8,\n\t134669 - 131105: 0x9263,\n\t134670 - 131105: 0x9ADD,\n\t134671 - 131105: 0x8B65,\n\t134672 - 131105: 0x8B6F,\n\t134673 - 131105: 0x8B7E,\n\t134678 - 131105: 0x8F43,\n\t134685 - 131105: 0x92D0,\n\t134732 - 131105: 0x8AF4,\n\t134765 - 131105: 0x9DBE,\n\t134771 - 131105: 0x9AE1,\n\t134773 - 131105: 0xFCDE,\n\t134774 - 131105: 0x9DFD,\n\t134775 - 131105: 0x8B66,\n\t134776 - 131105: 0x8B70,\n\t134777 - 131105: 0x8B75,\n\t134778 - 131105: 0x8AE4,\n\t134779 - 131105: 0x8BA4,\n\t134796 - 131105: 0x8AED,\n\t134806 - 131105: 0x8A5D,\n\t134808 - 131105: 0x8B48,\n\t134813 - 131105: 0x9DED,\n\t134818 - 131105: 0x9E40,\n\t134826 - 131105: 0x8AEF,\n\t134827 - 131105: 0x8AF6,\n\t134828 - 131105: 0x9E76,\n\t134838 - 131105: 0x9EE3,\n\t134871 - 131105: 0x9ADE,\n\t134872 - 131105: 0x8DFE,\n\t134877 - 131105: 0xFAFC,\n\t134904 - 131105: 0x9CB1,\n\t134905 - 131105: 0x9E77,\n\t134906 - 131105: 0x8B64,\n\t134907 - 131105: 0x8B67,\n\t134941 - 131105: 0x974B,\n\t134950 - 131105: 0x9653,\n\t134957 - 131105: 0x9AE0,\n\t134958 - 131105: 0x8B4A,\n\t134960 - 131105: 0x8AF1,\n\t134961 - 131105: 0x8AD7,\n\t134971 - 131105: 0xA0AB,\n\t134988 - 131105: 0x8AB5,\n\t135012 - 131105: 0x8A5F,\n\t135053 - 131105: 0x8AEE,\n\t135056 - 131105: 0x9ADF,\n\t135085 - 131105: 0x8AFE,\n\t135092 - 131105: 0x8A58,\n\t135093 - 131105: 0x8BA3,\n\t135094 - 131105: 0x8BA7,\n\t135100 - 131105: 0x9AE3,\n\t135135 - 131105: 0x9261,\n\t135146 - 131105: 0x9DD7,\n\t135147 - 131105: 0x9E7D,\n\t135148 - 131105: 0x9EA7,\n\t135149 - 131105: 0x9EAB,\n\t135188 - 131105: 0x9042,\n\t135197 - 131105: 0x8B79,\n\t135198 - 131105: 0x8B7A,\n\t135247 - 131105: 0x9AE6,\n\t135260 - 131105: 0x9AE5,\n\t135279 - 131105: 0x8A7E,\n\t135285 - 131105: 0x9E44,\n\t135286 - 131105: 0x9AE7,\n\t135287 - 131105: 0x8A7C,\n\t135288 - 131105: 0x8B71,\n\t135291 - 131105: 0x9AE9,\n\t135304 - 131105: 0x9AEA,\n\t135318 - 131105: 0x9AEB,\n\t135325 - 131105: 0x8ABD,\n\t135348 - 131105: 0xFB4E,\n\t135359 - 131105: 0x9AED,\n\t135360 - 131105: 0x8AF9,\n\t135361 - 131105: 0x9E63,\n\t135367 - 131105: 0x8B49,\n\t135368 - 131105: 0x8ACE,\n\t135369 - 131105: 0x8B6E,\n\t135375 - 131105: 0x8AE8,\n\t135379 - 131105: 0x9AEE,\n\t135396 - 131105: 0x92CE,\n\t135412 - 131105: 0x8A5A,\n\t135413 - 131105: 0x8B7B,\n\t135414 - 131105: 0x8B7C,\n\t135471 - 131105: 0x9AEF,\n\t135483 - 131105: 0x9AF0,\n\t135485 - 131105: 0x8AFA,\n\t135493 - 131105: 0x8941,\n\t135496 - 131105: 0x8B72,\n\t135503 - 131105: 0x8AF3,\n\t135552 - 131105: 0x8BA8,\n\t135559 - 131105: 0x9EAE,\n\t135641 - 131105: 0x9E72,\n\t135740 - 131105: 0xFB73,\n\t135759 - 131105: 0xFB5F,\n\t135804 - 131105: 0x90BA,\n\t135848 - 131105: 0x91FE,\n\t135849 - 131105: 0x9EF6,\n\t135856 - 131105: 0x97ED,\n\t135907 - 131105: 0x9AF3,\n\t135934 - 131105: 0xA0EE,\n\t135938 - 131105: 0x967C,\n\t135939 - 131105: 0x9345,\n\t135940 - 131105: 0x986E,\n\t135941 - 131105: 0xFA56,\n\t135990 - 131105: 0x9AF5,\n\t135994 - 131105: 0xFC4B,\n\t136053 - 131105: 0x9AF4,\n\t136054 - 131105: 0xFEDE,\n\t136078 - 131105: 0xFCB7,\n\t136088 - 131105: 0x97F1,\n\t136092 - 131105: 0x97C7,\n\t136133 - 131105: 0x9CCB,\n\t136134 - 131105: 0x9240,\n\t136173 - 131105: 0x9CE8,\n\t136190 - 131105: 0x91FD,\n\t136211 - 131105: 0x974E,\n\t136214 - 131105: 0xFB68,\n\t136228 - 131105: 0x976C,\n\t136255 - 131105: 0x8CC2,\n\t136274 - 131105: 0x97E8,\n\t136276 - 131105: 0xFB6A,\n\t136277 - 131105: 0x8B74,\n\t136330 - 131105: 0x8EE7,\n\t136343 - 131105: 0xFDC8,\n\t136374 - 131105: 0x9241,\n\t136424 - 131105: 0x96A1,\n\t136445 - 131105: 0x8EF3,\n\t136567 - 131105: 0x9AF7,\n\t136578 - 131105: 0x8FA6,\n\t136598 - 131105: 0xFAD6,\n\t136714 - 131105: 0x9CC7,\n\t136723 - 131105: 0xFAD7,\n\t136729 - 131105: 0x9AF8,\n\t136766 - 131105: 0xFBA1,\n\t136801 - 131105: 0x8EC5,\n\t136850 - 131105: 0xFBA4,\n\t136888 - 131105: 0xFBC2,\n\t136890 - 131105: 0x9AC1,\n\t136896 - 131105: 0x91FA,\n\t136897 - 131105: 0xFEDB,\n\t136898 - 131105: 0x97AB,\n\t136915 - 131105: 0x9147,\n\t136917 - 131105: 0xFBB1,\n\t136927 - 131105: 0x8FEA,\n\t136934 - 131105: 0x94D2,\n\t136935 - 131105: 0xFE61,\n\t136936 - 131105: 0xFACE,\n\t136954 - 131105: 0x92ED,\n\t136955 - 131105: 0x91F3,\n\t136956 - 131105: 0x93C6,\n\t136958 - 131105: 0x935A,\n\t136973 - 131105: 0xFAFB,\n\t136976 - 131105: 0x92EF,\n\t136998 - 131105: 0xFAC8,\n\t137018 - 131105: 0x9847,\n\t137019 - 131105: 0x9366,\n\t137020 - 131105: 0x9855,\n\t137047 - 131105: 0x96E6,\n\t137068 - 131105: 0x9F43,\n\t137069 - 131105: 0x9FAA,\n\t137070 - 131105: 0x94DA,\n\t137071 - 131105: 0x92EE,\n\t137072 - 131105: 0xFCAF,\n\t137073 - 131105: 0xFBFB,\n\t137075 - 131105: 0x8EF9,\n\t137076 - 131105: 0x91F6,\n\t137131 - 131105: 0x9364,\n\t137136 - 131105: 0x94F5,\n\t137137 - 131105: 0x9CB6,\n\t137138 - 131105: 0xFBAD,\n\t137139 - 131105: 0x984E,\n\t137140 - 131105: 0x8F44,\n\t137141 - 131105: 0x96FD,\n\t137155 - 131105: 0x9AF9,\n\t137159 - 131105: 0x9AFA,\n\t137177 - 131105: 0x9769,\n\t137178 - 131105: 0x95D4,\n\t137179 - 131105: 0x984B,\n\t137180 - 131105: 0xFBAA,\n\t137183 - 131105: 0x987C,\n\t137199 - 131105: 0x91EA,\n\t137205 - 131105: 0x9DAF,\n\t137206 - 131105: 0x9DC5,\n\t137208 - 131105: 0x91F1,\n\t137209 - 131105: 0x8EB1,\n\t137210 - 131105: 0x97A9,\n\t137211 - 131105: 0xFBAC,\n\t137212 - 131105: 0xFCB8,\n\t137248 - 131105: 0x9CB9,\n\t137256 - 131105: 0xFBB0,\n\t137257 - 131105: 0xFCD2,\n\t137258 - 131105: 0x93CB,\n\t137261 - 131105: 0x9AFD,\n\t137273 - 131105: 0x91F4,\n\t137274 - 131105: 0x8BAC,\n\t137275 - 131105: 0xA055,\n\t137280 - 131105: 0x9574,\n\t137285 - 131105: 0x95BE,\n\t137298 - 131105: 0x97AD,\n\t137310 - 131105: 0x8EE9,\n\t137313 - 131105: 0x92F8,\n\t137314 - 131105: 0x97BE,\n\t137315 - 131105: 0x916C,\n\t137316 - 131105: 0x94AA,\n\t137335 - 131105: 0xFC63,\n\t137339 - 131105: 0x9DC6,\n\t137347 - 131105: 0x97B5,\n\t137348 - 131105: 0x92B8,\n\t137349 - 131105: 0x91EF,\n\t137374 - 131105: 0xFEA6,\n\t137375 - 131105: 0x9760,\n\t137376 - 131105: 0x9358,\n\t137377 - 131105: 0x9576,\n\t137378 - 131105: 0x8FAC,\n\t137406 - 131105: 0x91EC,\n\t137407 - 131105: 0x97B4,\n\t137425 - 131105: 0x91F7,\n\t137430 - 131105: 0x974A,\n\t137431 - 131105: 0xFB49,\n\t137432 - 131105: 0x9578,\n\t137433 - 131105: 0x93BC,\n\t137466 - 131105: 0x91D6,\n\t137475 - 131105: 0x9355,\n\t137476 - 131105: 0x9356,\n\t137477 - 131105: 0x9851,\n\t137488 - 131105: 0x8FF8,\n\t137489 - 131105: 0xFBC0,\n\t137490 - 131105: 0x93F2,\n\t137493 - 131105: 0x90D0,\n\t137500 - 131105: 0x9C44,\n\t137506 - 131105: 0x9255,\n\t137511 - 131105: 0x9363,\n\t137531 - 131105: 0x91A5,\n\t137540 - 131105: 0xA0ED,\n\t137560 - 131105: 0xFD6B,\n\t137578 - 131105: 0x9AFE,\n\t137596 - 131105: 0x9351,\n\t137600 - 131105: 0x8C57,\n\t137603 - 131105: 0xFA78,\n\t137608 - 131105: 0xFEA8,\n\t137622 - 131105: 0x9350,\n\t137691 - 131105: 0xFA4C,\n\t137715 - 131105: 0x92F7,\n\t137773 - 131105: 0x9B40,\n\t137780 - 131105: 0xFBCE,\n\t137797 - 131105: 0x9B41,\n\t137803 - 131105: 0xFEAD,\n\t137827 - 131105: 0x8761,\n\t138052 - 131105: 0xFBD5,\n\t138177 - 131105: 0x8BC2,\n\t138178 - 131105: 0x9A7C,\n\t138282 - 131105: 0x9B42,\n\t138352 - 131105: 0x9B43,\n\t138402 - 131105: 0x9E79,\n\t138405 - 131105: 0xFBD9,\n\t138412 - 131105: 0x9B44,\n\t138566 - 131105: 0xA0A7,\n\t138579 - 131105: 0x877B,\n\t138590 - 131105: 0x876E,\n\t138640 - 131105: 0x9BF3,\n\t138678 - 131105: 0x8C79,\n\t138682 - 131105: 0x935E,\n\t138698 - 131105: 0x89CB,\n\t138705 - 131105: 0x9F53,\n\t138731 - 131105: 0x93D7,\n\t138745 - 131105: 0xFBE1,\n\t138780 - 131105: 0xFED0,\n\t138787 - 131105: 0x8CF1,\n\t138807 - 131105: 0xFBE2,\n\t138813 - 131105: 0xFCE3,\n\t138889 - 131105: 0x9074,\n\t138916 - 131105: 0xFBE6,\n\t138920 - 131105: 0x9BB7,\n\t138952 - 131105: 0x9B45,\n\t138965 - 131105: 0x9B47,\n\t139023 - 131105: 0x9F50,\n\t139029 - 131105: 0x9B48,\n\t139114 - 131105: 0xFC5B,\n\t139166 - 131105: 0x98A9,\n\t139169 - 131105: 0x9CFD,\n\t139240 - 131105: 0x884C,\n\t139333 - 131105: 0x9B4B,\n\t139337 - 131105: 0xFBEC,\n\t139390 - 131105: 0x8C69,\n\t139418 - 131105: 0x9BA8,\n\t139463 - 131105: 0x8AD5,\n\t139516 - 131105: 0xFA73,\n\t139562 - 131105: 0xFD59,\n\t139611 - 131105: 0x91A2,\n\t139635 - 131105: 0xFBED,\n\t139642 - 131105: 0x9CA9,\n\t139681 - 131105: 0x8AA8,\n\t139713 - 131105: 0x8D42,\n\t139715 - 131105: 0x9BC3,\n\t139784 - 131105: 0x8AE1,\n\t139900 - 131105: 0x9B4E,\n\t140065 - 131105: 0x95D0,\n\t140069 - 131105: 0x905F,\n\t140221 - 131105: 0x97EE,\n\t140240 - 131105: 0xFC4E,\n\t140247 - 131105: 0x9B4F,\n\t140282 - 131105: 0x9B50,\n\t140389 - 131105: 0x9EC6,\n\t140401 - 131105: 0xFC50,\n\t140427 - 131105: 0xFD73,\n\t140433 - 131105: 0xFDA7,\n\t140464 - 131105: 0x9DA2,\n\t140476 - 131105: 0x87D1,\n\t140481 - 131105: 0x87D3,\n\t140489 - 131105: 0x87D4,\n\t140492 - 131105: 0x87D5,\n\t140525 - 131105: 0xFA58,\n\t140563 - 131105: 0xFA5E,\n\t140571 - 131105: 0xA059,\n\t140592 - 131105: 0xFA75,\n\t140628 - 131105: 0xFBBE,\n\t140685 - 131105: 0x9CA2,\n\t140719 - 131105: 0x9370,\n\t140734 - 131105: 0x9371,\n\t140827 - 131105: 0x9377,\n\t140828 - 131105: 0xFEEF,\n\t140843 - 131105: 0x936D,\n\t140904 - 131105: 0xFC5D,\n\t140922 - 131105: 0x90B8,\n\t140950 - 131105: 0x8AFC,\n\t140952 - 131105: 0xFB41,\n\t141044 - 131105: 0x9E6B,\n\t141045 - 131105: 0x94E3,\n\t141046 - 131105: 0x8EE2,\n\t141074 - 131105: 0x8C7D,\n\t141076 - 131105: 0x8ED7,\n\t141083 - 131105: 0x9C4D,\n\t141087 - 131105: 0x96A3,\n\t141098 - 131105: 0x9B51,\n\t141173 - 131105: 0x8AC3,\n\t141185 - 131105: 0x96AA,\n\t141206 - 131105: 0x8CE2,\n\t141236 - 131105: 0xFC68,\n\t141237 - 131105: 0x8B6D,\n\t141261 - 131105: 0xFD67,\n\t141315 - 131105: 0x8AE9,\n\t141407 - 131105: 0xFCA1,\n\t141408 - 131105: 0x936C,\n\t141425 - 131105: 0x9B52,\n\t141485 - 131105: 0xFE70,\n\t141505 - 131105: 0xFCA8,\n\t141559 - 131105: 0xFCE9,\n\t141606 - 131105: 0x9CB4,\n\t141625 - 131105: 0x8AEA,\n\t141647 - 131105: 0x9B53,\n\t141671 - 131105: 0x9B55,\n\t141675 - 131105: 0x96AB,\n\t141696 - 131105: 0xFCA7,\n\t141715 - 131105: 0x9B56,\n\t141926 - 131105: 0x8ABC,\n\t142031 - 131105: 0x8ACB,\n\t142037 - 131105: 0x9B57,\n\t142054 - 131105: 0x89CD,\n\t142056 - 131105: 0x9B59,\n\t142094 - 131105: 0x9B5B,\n\t142114 - 131105: 0x93A5,\n\t142143 - 131105: 0x9B5D,\n\t142147 - 131105: 0x9E4F,\n\t142186 - 131105: 0x93A3,\n\t142282 - 131105: 0x8A7B,\n\t142286 - 131105: 0x8B42,\n\t142374 - 131105: 0x9750,\n\t142375 - 131105: 0x8FB3,\n\t142392 - 131105: 0x8A50,\n\t142412 - 131105: 0x9B60,\n\t142417 - 131105: 0x8B45,\n\t142421 - 131105: 0x8B46,\n\t142434 - 131105: 0x9DFE,\n\t142472 - 131105: 0x9B62,\n\t142491 - 131105: 0x937B,\n\t142497 - 131105: 0x93B1,\n\t142505 - 131105: 0x8A60,\n\t142514 - 131105: 0x8AD8,\n\t142519 - 131105: 0x9B63,\n\t142530 - 131105: 0x8A69,\n\t142534 - 131105: 0x8A47,\n\t142537 - 131105: 0x8ACC,\n\t142599 - 131105: 0x937C,\n\t142600 - 131105: 0x9B65,\n\t142610 - 131105: 0x9B66,\n\t142660 - 131105: 0x8A72,\n\t142668 - 131105: 0x8A7A,\n\t142695 - 131105: 0x93AF,\n\t142733 - 131105: 0x8AB0,\n\t142741 - 131105: 0x9B68,\n\t142752 - 131105: 0x9EA3,\n\t142755 - 131105: 0xFAEC,\n\t142756 - 131105: 0x8B77,\n\t142775 - 131105: 0x9B67,\n\t142830 - 131105: 0x8B59,\n\t142861 - 131105: 0xFCB1,\n\t142902 - 131105: 0xFCBB,\n\t142914 - 131105: 0x9B69,\n\t142968 - 131105: 0x93A8,\n\t142987 - 131105: 0x8AE0,\n\t143027 - 131105: 0x9E51,\n\t143087 - 131105: 0x8F5F,\n\t143220 - 131105: 0x9B6A,\n\t143308 - 131105: 0x9B6B,\n\t143331 - 131105: 0x97EC,\n\t143411 - 131105: 0x9B6C,\n\t143428 - 131105: 0xFE4E,\n\t143435 - 131105: 0xFDC2,\n\t143462 - 131105: 0x9B6D,\n\t143485 - 131105: 0x9167,\n\t143486 - 131105: 0xFCCC,\n\t143502 - 131105: 0x93B6,\n\t143543 - 131105: 0x90E4,\n\t143548 - 131105: 0x90E5,\n\t143578 - 131105: 0x9EF2,\n\t143619 - 131105: 0x93CA,\n\t143677 - 131105: 0x8BBC,\n\t143741 - 131105: 0x8F46,\n\t143746 - 131105: 0x93CF,\n\t143780 - 131105: 0xFCDB,\n\t143781 - 131105: 0xFCDC,\n\t143795 - 131105: 0x93C0,\n\t143816 - 131105: 0xFCE6,\n\t143817 - 131105: 0x96E7,\n\t143850 - 131105: 0x87A7,\n\t143863 - 131105: 0xFCD8,\n\t143864 - 131105: 0xFCD9,\n\t143865 - 131105: 0xFDA6,\n\t143887 - 131105: 0x93CE,\n\t143909 - 131105: 0x95F1,\n\t143919 - 131105: 0x9CE9,\n\t143921 - 131105: 0xFCE4,\n\t143922 - 131105: 0x94AF,\n\t143923 - 131105: 0xFA77,\n\t143924 - 131105: 0x93CC,\n\t143958 - 131105: 0x8CE1,\n\t143966 - 131105: 0x87A9,\n\t143970 - 131105: 0x905A,\n\t144001 - 131105: 0x8C54,\n\t144009 - 131105: 0x93BF,\n\t144010 - 131105: 0xFB51,\n\t144043 - 131105: 0x93B9,\n\t144044 - 131105: 0xFED7,\n\t144045 - 131105: 0x93B7,\n\t144082 - 131105: 0x93D9,\n\t144096 - 131105: 0x93BB,\n\t144097 - 131105: 0x93DA,\n\t144128 - 131105: 0x98A3,\n\t144138 - 131105: 0x90D1,\n\t144159 - 131105: 0x9B6E,\n\t144308 - 131105: 0xFA70,\n\t144332 - 131105: 0x9BEB,\n\t144350 - 131105: 0x9B6F,\n\t144358 - 131105: 0xFCFC,\n\t144372 - 131105: 0x8B40,\n\t144373 - 131105: 0xA07B,\n\t144377 - 131105: 0x8CA1,\n\t144378 - 131105: 0x97F7,\n\t144382 - 131105: 0x93E2,\n\t144384 - 131105: 0xFCD6,\n\t144447 - 131105: 0x9559,\n\t144464 - 131105: 0x93A6,\n\t144495 - 131105: 0xFD40,\n\t144498 - 131105: 0x935F,\n\t144613 - 131105: 0x97F2,\n\t144665 - 131105: 0x9C76,\n\t144688 - 131105: 0x8EF8,\n\t144721 - 131105: 0x8CEB,\n\t144730 - 131105: 0x8F47,\n\t144743 - 131105: 0x9B74,\n\t144789 - 131105: 0x92B4,\n\t144793 - 131105: 0x91ED,\n\t144796 - 131105: 0x96D2,\n\t144827 - 131105: 0x87D8,\n\t144845 - 131105: 0xFD46,\n\t144846 - 131105: 0x8F4F,\n\t144847 - 131105: 0x9549,\n\t144883 - 131105: 0x9B75,\n\t144896 - 131105: 0xFA5C,\n\t144919 - 131105: 0x8751,\n\t144922 - 131105: 0x9B79,\n\t144956 - 131105: 0xFD4B,\n\t144960 - 131105: 0x96D3,\n\t144985 - 131105: 0xFD58,\n\t144991 - 131105: 0x945F,\n\t145015 - 131105: 0xA0F5,\n\t145038 - 131105: 0x87C7,\n\t145054 - 131105: 0x877C,\n\t145062 - 131105: 0x9243,\n\t145069 - 131105: 0x97FA,\n\t145082 - 131105: 0x9DD9,\n\t145119 - 131105: 0x97F4,\n\t145134 - 131105: 0x924D,\n\t145155 - 131105: 0xFD5B,\n\t145174 - 131105: 0x9B7A,\n\t145184 - 131105: 0x9ED5,\n\t145197 - 131105: 0xFAAE,\n\t145199 - 131105: 0x9CC9,\n\t145215 - 131105: 0x9258,\n\t145254 - 131105: 0x8EC8,\n\t145281 - 131105: 0x94B4,\n\t145314 - 131105: 0x93E1,\n\t145340 - 131105: 0x93DF,\n\t145346 - 131105: 0xFCF0,\n\t145365 - 131105: 0x93EC,\n\t145366 - 131105: 0x97F6,\n\t145367 - 131105: 0x96CF,\n\t145466 - 131105: 0x93DE,\n\t145858 - 131105: 0x8ACF,\n\t146087 - 131105: 0x9BA2,\n\t146139 - 131105: 0xFD69,\n\t146158 - 131105: 0x9352,\n\t146170 - 131105: 0x98A2,\n\t146202 - 131105: 0x8CE7,\n\t146266 - 131105: 0xFD6E,\n\t146531 - 131105: 0x8CA4,\n\t146585 - 131105: 0xFA7C,\n\t146586 - 131105: 0x93FA,\n\t146587 - 131105: 0x907C,\n\t146613 - 131105: 0x8F67,\n\t146615 - 131105: 0x9DB7,\n\t146631 - 131105: 0xA0E9,\n\t146632 - 131105: 0xFA4E,\n\t146633 - 131105: 0xFDA1,\n\t146684 - 131105: 0x9E74,\n\t146685 - 131105: 0x9FBF,\n\t146686 - 131105: 0x9ECB,\n\t146687 - 131105: 0x9BB9,\n\t146752 - 131105: 0x9DD4,\n\t146779 - 131105: 0x97B9,\n\t146814 - 131105: 0x8EF1,\n\t146831 - 131105: 0x957B,\n\t146870 - 131105: 0x9ED2,\n\t146871 - 131105: 0x9753,\n\t146872 - 131105: 0x96A4,\n\t146873 - 131105: 0x8FBE,\n\t146874 - 131105: 0x94D9,\n\t146875 - 131105: 0x9058,\n\t146876 - 131105: 0xFD79,\n\t146877 - 131105: 0xFD7B,\n\t146915 - 131105: 0x8EDA,\n\t146936 - 131105: 0x8EFA,\n\t146950 - 131105: 0x8762,\n\t146961 - 131105: 0x9BA5,\n\t146988 - 131105: 0x9ED9,\n\t146989 - 131105: 0x97D4,\n\t146990 - 131105: 0x90BB,\n\t146991 - 131105: 0xFDBC,\n\t146992 - 131105: 0xFDC6,\n\t146993 - 131105: 0x9248,\n\t147001 - 131105: 0x92B5,\n\t147080 - 131105: 0x9DC1,\n\t147081 - 131105: 0x92B9,\n\t147082 - 131105: 0x92A6,\n\t147083 - 131105: 0x8F4B,\n\t147129 - 131105: 0x9BA6,\n\t147135 - 131105: 0x92B6,\n\t147159 - 131105: 0x8E40,\n\t147191 - 131105: 0x9ED8,\n\t147192 - 131105: 0x945E,\n\t147193 - 131105: 0x985F,\n\t147194 - 131105: 0x94CE,\n\t147195 - 131105: 0x924A,\n\t147196 - 131105: 0xFD70,\n\t147253 - 131105: 0x9467,\n\t147265 - 131105: 0x8DEC,\n\t147274 - 131105: 0x9BD8,\n\t147297 - 131105: 0x8763,\n\t147327 - 131105: 0x9448,\n\t147328 - 131105: 0xFAC1,\n\t147329 - 131105: 0x9CF7,\n\t147330 - 131105: 0xFDBE,\n\t147343 - 131105: 0x8FDA,\n\t147380 - 131105: 0xFDD9,\n\t147383 - 131105: 0xFC7E,\n\t147392 - 131105: 0x93F9,\n\t147397 - 131105: 0xFA43,\n\t147435 - 131105: 0xFAEB,\n\t147436 - 131105: 0xFAC3,\n\t147437 - 131105: 0x97D3,\n\t147438 - 131105: 0x95F9,\n\t147439 - 131105: 0x9C48,\n\t147440 - 131105: 0xFDD8,\n\t147473 - 131105: 0xA0D8,\n\t147513 - 131105: 0xFDD7,\n\t147514 - 131105: 0xFB4A,\n\t147515 - 131105: 0x9BAF,\n\t147516 - 131105: 0x944B,\n\t147517 - 131105: 0xFDC9,\n\t147543 - 131105: 0x8EAC,\n\t147589 - 131105: 0xFDB2,\n\t147595 - 131105: 0x925A,\n\t147596 - 131105: 0xFCBD,\n\t147597 - 131105: 0x92D9,\n\t147601 - 131105: 0xFDD5,\n\t147657 - 131105: 0x92DD,\n\t147681 - 131105: 0x9259,\n\t147692 - 131105: 0x8CF0,\n\t147716 - 131105: 0x96BA,\n\t147727 - 131105: 0x925B,\n\t147737 - 131105: 0x9BAB,\n\t147775 - 131105: 0xFDDA,\n\t147776 - 131105: 0xFDDE,\n\t147780 - 131105: 0xFDD3,\n\t147790 - 131105: 0x8C46,\n\t147797 - 131105: 0xFDD6,\n\t147798 - 131105: 0xFDDC,\n\t147799 - 131105: 0xFDDD,\n\t147804 - 131105: 0x90FE,\n\t147807 - 131105: 0xFEA1,\n\t147809 - 131105: 0x87A5,\n\t147831 - 131105: 0x8BAD,\n\t147834 - 131105: 0x9CD8,\n\t147875 - 131105: 0x9E6D,\n\t147876 - 131105: 0xFD7C,\n\t147877 - 131105: 0xFB61,\n\t147884 - 131105: 0x96F8,\n\t147893 - 131105: 0x96F0,\n\t147917 - 131105: 0xFCF4,\n\t147938 - 131105: 0xFE60,\n\t147964 - 131105: 0x9852,\n\t147995 - 131105: 0x964F,\n\t148043 - 131105: 0x916E,\n\t148054 - 131105: 0x986D,\n\t148057 - 131105: 0x9864,\n\t148086 - 131105: 0x9453,\n\t148087 - 131105: 0xFDEC,\n\t148088 - 131105: 0xFB78,\n\t148100 - 131105: 0x95BA,\n\t148115 - 131105: 0x985D,\n\t148117 - 131105: 0x92F9,\n\t148133 - 131105: 0x985A,\n\t148159 - 131105: 0x8750,\n\t148161 - 131105: 0xFDF6,\n\t148169 - 131105: 0x93D0,\n\t148170 - 131105: 0x9862,\n\t148206 - 131105: 0x9BAD,\n\t148218 - 131105: 0x974F,\n\t148237 - 131105: 0x9BAE,\n\t148250 - 131105: 0x9452,\n\t148276 - 131105: 0x9BB0,\n\t148296 - 131105: 0x91D2,\n\t148322 - 131105: 0x97EA,\n\t148323 - 131105: 0xFB6B,\n\t148324 - 131105: 0x91B1,\n\t148325 - 131105: 0xFDF3,\n\t148364 - 131105: 0x92CB,\n\t148374 - 131105: 0x9BB1,\n\t148380 - 131105: 0xFCEC,\n\t148413 - 131105: 0x986B,\n\t148417 - 131105: 0x9751,\n\t148457 - 131105: 0x9871,\n\t148458 - 131105: 0x95EF,\n\t148466 - 131105: 0x9EF3,\n\t148472 - 131105: 0x91E8,\n\t148484 - 131105: 0x9BBA,\n\t148533 - 131105: 0xFB4C,\n\t148534 - 131105: 0x926A,\n\t148570 - 131105: 0xFDF8,\n\t148571 - 131105: 0x9861,\n\t148595 - 131105: 0x91E7,\n\t148615 - 131105: 0x93ED,\n\t148616 - 131105: 0x9744,\n\t148665 - 131105: 0x91E1,\n\t148668 - 131105: 0xFBF5,\n\t148686 - 131105: 0x9869,\n\t148691 - 131105: 0x8A62,\n\t148694 - 131105: 0x9BBB,\n\t148741 - 131105: 0x8CA8,\n\t148769 - 131105: 0x9C55,\n\t148856 - 131105: 0x8E77,\n\t148936 - 131105: 0x8AB2,\n\t149016 - 131105: 0x9EBC,\n\t149034 - 131105: 0x93E6,\n\t149093 - 131105: 0x93A2,\n\t149108 - 131105: 0x9BBD,\n\t149143 - 131105: 0x94B3,\n\t149204 - 131105: 0x937D,\n\t149254 - 131105: 0x9E66,\n\t149285 - 131105: 0x9459,\n\t149295 - 131105: 0x9BBF,\n\t149391 - 131105: 0x9458,\n\t149472 - 131105: 0x9EA5,\n\t149522 - 131105: 0x9BC7,\n\t149539 - 131105: 0xFE54,\n\t149634 - 131105: 0x8E74,\n\t149737 - 131105: 0x8BD6,\n\t149744 - 131105: 0x94B6,\n\t149745 - 131105: 0xFD74,\n\t149746 - 131105: 0x98C0,\n\t149747 - 131105: 0x94A5,\n\t149755 - 131105: 0x9BC8,\n\t149759 - 131105: 0x95ED,\n\t149760 - 131105: 0xFD7E,\n\t149761 - 131105: 0xFBEB,\n\t149772 - 131105: 0xFD7D,\n\t149782 - 131105: 0x976F,\n\t149783 - 131105: 0x9461,\n\t149785 - 131105: 0x9FC1,\n\t149807 - 131105: 0x95D7,\n\t149811 - 131105: 0xFA52,\n\t149812 - 131105: 0x9C58,\n\t149822 - 131105: 0x9F68,\n\t149823 - 131105: 0x9BE7,\n\t149824 - 131105: 0xFCCE,\n\t149825 - 131105: 0x96E8,\n\t149826 - 131105: 0xFA49,\n\t149827 - 131105: 0x97A1,\n\t149858 - 131105: 0x954D,\n\t149859 - 131105: 0x9EF8,\n\t149876 - 131105: 0xFE49,\n\t149877 - 131105: 0x91CE,\n\t149878 - 131105: 0x9771,\n\t149883 - 131105: 0x8CCF,\n\t149887 - 131105: 0xFDB1,\n\t149890 - 131105: 0xFC6E,\n\t149896 - 131105: 0x9CF2,\n\t149897 - 131105: 0x93B8,\n\t149898 - 131105: 0x9043,\n\t149899 - 131105: 0x9759,\n\t149900 - 131105: 0x94D7,\n\t149901 - 131105: 0xFE66,\n\t149902 - 131105: 0x947D,\n\t149903 - 131105: 0xFC6F,\n\t149908 - 131105: 0x9246,\n\t149924 - 131105: 0xFA6D,\n\t149927 - 131105: 0x8EF7,\n\t149929 - 131105: 0xFBB7,\n\t149931 - 131105: 0x947C,\n\t149932 - 131105: 0x92CD,\n\t149933 - 131105: 0x97B2,\n\t149943 - 131105: 0xFE65,\n\t149944 - 131105: 0x967E,\n\t149945 - 131105: 0x9758,\n\t149946 - 131105: 0x9B77,\n\t149947 - 131105: 0x91CF,\n\t149957 - 131105: 0x94A4,\n\t149968 - 131105: 0x9CAD,\n\t149978 - 131105: 0x8BAB,\n\t149982 - 131105: 0x96D5,\n\t149983 - 131105: 0xFCB3,\n\t149987 - 131105: 0x93AE,\n\t149989 - 131105: 0x976D,\n\t149996 - 131105: 0x9446,\n\t149997 - 131105: 0x95F7,\n\t150006 - 131105: 0x9C46,\n\t150007 - 131105: 0x955B,\n\t150008 - 131105: 0x91D1,\n\t150009 - 131105: 0x94F4,\n\t150011 - 131105: 0xFE67,\n\t150030 - 131105: 0x92A5,\n\t150034 - 131105: 0xFEDF,\n\t150035 - 131105: 0x8CAB,\n\t150037 - 131105: 0x9BC9,\n\t150049 - 131105: 0xFCED,\n\t150050 - 131105: 0xFDFA,\n\t150051 - 131105: 0xFCC8,\n\t150052 - 131105: 0xFE62,\n\t150053 - 131105: 0x91FC,\n\t150054 - 131105: 0xFE6B,\n\t150055 - 131105: 0xFDF9,\n\t150056 - 131105: 0xFCC7,\n\t150057 - 131105: 0x914E,\n\t150058 - 131105: 0x9CB8,\n\t150078 - 131105: 0x9767,\n\t150082 - 131105: 0x95EE,\n\t150085 - 131105: 0x9BB2,\n\t150090 - 131105: 0x9460,\n\t150094 - 131105: 0x94A2,\n\t150095 - 131105: 0x9875,\n\t150096 - 131105: 0x97AC,\n\t150097 - 131105: 0x91D3,\n\t150109 - 131105: 0x987B,\n\t150117 - 131105: 0x8EEB,\n\t150118 - 131105: 0x976A,\n\t150119 - 131105: 0x965E,\n\t150129 - 131105: 0x97EB,\n\t150135 - 131105: 0x9FF9,\n\t150136 - 131105: 0x95F8,\n\t150137 - 131105: 0xFEA2,\n\t150138 - 131105: 0x8FE6,\n\t150156 - 131105: 0xFE7E,\n\t150163 - 131105: 0x9DA4,\n\t150164 - 131105: 0x9768,\n\t150165 - 131105: 0x8EEC,\n\t150166 - 131105: 0x94BD,\n\t150180 - 131105: 0x945B,\n\t150181 - 131105: 0x9CF6,\n\t150182 - 131105: 0xFAA7,\n\t150183 - 131105: 0x9BD9,\n\t150193 - 131105: 0xFA5D,\n\t150194 - 131105: 0x9656,\n\t150195 - 131105: 0x9762,\n\t150202 - 131105: 0x94BA,\n\t150203 - 131105: 0xA04F,\n\t150204 - 131105: 0x92D8,\n\t150208 - 131105: 0x9BCB,\n\t150215 - 131105: 0x94BB,\n\t150218 - 131105: 0x9D5F,\n\t150225 - 131105: 0x90CF,\n\t150239 - 131105: 0x9465,\n\t150242 - 131105: 0x9F4C,\n\t150249 - 131105: 0x90D8,\n\t150287 - 131105: 0x8D5B,\n\t150382 - 131105: 0x9EBE,\n\t150517 - 131105: 0xFB6D,\n\t150537 - 131105: 0x95CA,\n\t150686 - 131105: 0x9DC2,\n\t150687 - 131105: 0x97F8,\n\t150729 - 131105: 0x8FFC,\n\t150745 - 131105: 0x9473,\n\t150790 - 131105: 0x9474,\n\t150803 - 131105: 0xFEB7,\n\t150968 - 131105: 0x8A4B,\n\t151018 - 131105: 0x8A55,\n\t151019 - 131105: 0x8B69,\n\t151099 - 131105: 0x8ADC,\n\t151120 - 131105: 0x8B76,\n\t151205 - 131105: 0x9BCE,\n\t151207 - 131105: 0x8A68,\n\t151310 - 131105: 0xA0F8,\n\t151388 - 131105: 0x98DF,\n\t151426 - 131105: 0xFEB5,\n\t151430 - 131105: 0x9BCF,\n\t151447 - 131105: 0x96FB,\n\t151450 - 131105: 0x9BFB,\n\t151465 - 131105: 0x9ECE,\n\t151480 - 131105: 0x8EE5,\n\t151490 - 131105: 0x9E7B,\n\t151596 - 131105: 0x9BD2,\n\t151634 - 131105: 0x8AA5,\n\t151709 - 131105: 0xFECE,\n\t151851 - 131105: 0x8A45,\n\t151880 - 131105: 0x9DFC,\n\t151933 - 131105: 0xFECF,\n\t151934 - 131105: 0x8BA5,\n\t152013 - 131105: 0x8C4A,\n\t152035 - 131105: 0x8AEC,\n\t152038 - 131105: 0xFCE0,\n\t152039 - 131105: 0x94AD,\n\t152096 - 131105: 0xFED5,\n\t152097 - 131105: 0x94AC,\n\t152144 - 131105: 0xFC5A,\n\t152217 - 131105: 0x9BD6,\n\t152263 - 131105: 0x8A6F,\n\t152280 - 131105: 0x8BA9,\n\t152334 - 131105: 0x8E5F,\n\t152337 - 131105: 0x9DCB,\n\t152339 - 131105: 0xFCE7,\n\t152601 - 131105: 0x9BD7,\n\t152613 - 131105: 0x93C8,\n\t152623 - 131105: 0x91F0,\n\t152624 - 131105: 0x8FE0,\n\t152646 - 131105: 0x9BDB,\n\t152684 - 131105: 0x90ED,\n\t152686 - 131105: 0x9BDC,\n\t152730 - 131105: 0x8D53,\n\t152881 - 131105: 0xA0EC,\n\t152885 - 131105: 0x98FA,\n\t152895 - 131105: 0x9BE0,\n\t152923 - 131105: 0x93C7,\n\t152924 - 131105: 0x9249,\n\t152925 - 131105: 0x96E1,\n\t152926 - 131105: 0x9BE2,\n\t152930 - 131105: 0x9BE4,\n\t152933 - 131105: 0x8FE1,\n\t152934 - 131105: 0x9BE5,\n\t152961 - 131105: 0x94C0,\n\t152964 - 131105: 0x93C3,\n\t152975 - 131105: 0x93C5,\n\t153017 - 131105: 0x9079,\n\t153045 - 131105: 0x977B,\n\t153051 - 131105: 0x907E,\n\t153056 - 131105: 0xFEE6,\n\t153093 - 131105: 0xFE46,\n\t153141 - 131105: 0x9DB8,\n\t153169 - 131105: 0x9270,\n\t153219 - 131105: 0x95A8,\n\t153237 - 131105: 0x8CB0,\n\t153315 - 131105: 0x94C8,\n\t153334 - 131105: 0x98B9,\n\t153350 - 131105: 0x9140,\n\t153373 - 131105: 0xFCBE,\n\t153381 - 131105: 0x9157,\n\t153405 - 131105: 0x8BB2,\n\t153458 - 131105: 0xFADF,\n\t153543 - 131105: 0x9BE6,\n\t153567 - 131105: 0x9643,\n\t153568 - 131105: 0x8E44,\n\t153569 - 131105: 0x9C4F,\n\t153687 - 131105: 0xFEF4,\n\t153693 - 131105: 0x9BE8,\n\t153714 - 131105: 0x93DC,\n\t153800 - 131105: 0x966F,\n\t153822 - 131105: 0x87A1,\n\t153825 - 131105: 0x8E4A,\n\t153859 - 131105: 0x9BED,\n\t153926 - 131105: 0x92F6,\n\t153942 - 131105: 0x9DB9,\n\t154028 - 131105: 0x8E4E,\n\t154060 - 131105: 0xFBCF,\n\t154196 - 131105: 0x8760,\n\t154261 - 131105: 0x9EC2,\n\t154268 - 131105: 0x94E5,\n\t154286 - 131105: 0x9BF0,\n\t154287 - 131105: 0x94E4,\n\t154345 - 131105: 0x9551,\n\t154484 - 131105: 0x8BBB,\n\t154505 - 131105: 0x9BF1,\n\t154547 - 131105: 0x94F0,\n\t154548 - 131105: 0x8E64,\n\t154566 - 131105: 0x94EA,\n\t154596 - 131105: 0x8F61,\n\t154600 - 131105: 0x9B64,\n\t154625 - 131105: 0x8E5B,\n\t154630 - 131105: 0x9BF2,\n\t154657 - 131105: 0x9FBE,\n\t154698 - 131105: 0x9DC9,\n\t154725 - 131105: 0x8E6C,\n\t154769 - 131105: 0x8F73,\n\t154788 - 131105: 0x8CAF,\n\t154816 - 131105: 0x8F75,\n\t154817 - 131105: 0x8E71,\n\t154878 - 131105: 0x8E60,\n\t154912 - 131105: 0x8E6A,\n\t154928 - 131105: 0x8C4C,\n\t154947 - 131105: 0x9552,\n\t155033 - 131105: 0x87CF,\n\t155065 - 131105: 0x87C0,\n\t155150 - 131105: 0x9554,\n\t155209 - 131105: 0x8AD4,\n\t155265 - 131105: 0x9DBB,\n\t155266 - 131105: 0x9543,\n\t155267 - 131105: 0x92FE,\n\t155302 - 131105: 0x94F2,\n\t155324 - 131105: 0x94F1,\n\t155351 - 131105: 0xA0EA,\n\t155352 - 131105: 0x9DD2,\n\t155418 - 131105: 0xA0B1,\n\t155467 - 131105: 0x91F8,\n\t155617 - 131105: 0x9462,\n\t155618 - 131105: 0x9BA4,\n\t155681 - 131105: 0x877D,\n\t155689 - 131105: 0x8EAD,\n\t155720 - 131105: 0x9EAD,\n\t155748 - 131105: 0x96D0,\n\t155779 - 131105: 0xFEEE,\n\t155799 - 131105: 0x8AB4,\n\t155812 - 131105: 0x9757,\n\t155813 - 131105: 0x8A77,\n\t155906 - 131105: 0x9BF7,\n\t155937 - 131105: 0x8EB5,\n\t155993 - 131105: 0xA06D,\n\t155994 - 131105: 0x8EB6,\n\t155995 - 131105: 0x9756,\n\t155996 - 131105: 0x9540,\n\t156077 - 131105: 0xA0F3,\n\t156078 - 131105: 0x94BE,\n\t156082 - 131105: 0x9BFA,\n\t156125 - 131105: 0xFDDF,\n\t156248 - 131105: 0x9DBC,\n\t156257 - 131105: 0x94FE,\n\t156266 - 131105: 0x8BDB,\n\t156267 - 131105: 0xA0FE,\n\t156368 - 131105: 0x8EC0,\n\t156469 - 131105: 0x9F47,\n\t156491 - 131105: 0x8BDE,\n\t156492 - 131105: 0xA0FB,\n\t156497 - 131105: 0x8EC3,\n\t156606 - 131105: 0x9649,\n\t156661 - 131105: 0xFEC2,\n\t156664 - 131105: 0x954C,\n\t156674 - 131105: 0x9BFD,\n\t156688 - 131105: 0x90CC,\n\t156689 - 131105: 0x9C60,\n\t156690 - 131105: 0x954B,\n\t156746 - 131105: 0x9BFE,\n\t156777 - 131105: 0x9C70,\n\t156804 - 131105: 0x9C43,\n\t156808 - 131105: 0x9C47,\n\t156809 - 131105: 0x8ECC,\n\t156813 - 131105: 0x8E54,\n\t156824 - 131105: 0x8EE4,\n\t156946 - 131105: 0x9C49,\n\t157042 - 131105: 0x8B5E,\n\t157088 - 131105: 0x955E,\n\t157101 - 131105: 0x955C,\n\t157119 - 131105: 0x9C4B,\n\t157202 - 131105: 0x8BE1,\n\t157222 - 131105: 0x8ED9,\n\t157359 - 131105: 0x9DB4,\n\t157361 - 131105: 0x925F,\n\t157365 - 131105: 0x9C4C,\n\t157402 - 131105: 0x8AA1,\n\t157416 - 131105: 0x8EDB,\n\t157436 - 131105: 0x9C56,\n\t157462 - 131105: 0x8AA2,\n\t157505 - 131105: 0x9754,\n\t157593 - 131105: 0x9C5E,\n\t157619 - 131105: 0x9ED4,\n\t157620 - 131105: 0x9568,\n\t157644 - 131105: 0xA0C3,\n\t157724 - 131105: 0x8AE6,\n\t157766 - 131105: 0xA0F7,\n\t157790 - 131105: 0x9C61,\n\t157806 - 131105: 0x9C5F,\n\t157832 - 131105: 0xFC4D,\n\t157834 - 131105: 0x9E5B,\n\t157843 - 131105: 0x9E69,\n\t157895 - 131105: 0x9C63,\n\t157966 - 131105: 0xFEC7,\n\t157969 - 131105: 0xFEC6,\n\t157990 - 131105: 0x9C67,\n\t158009 - 131105: 0x9C69,\n\t158033 - 131105: 0x8BE2,\n\t158120 - 131105: 0x9165,\n\t158133 - 131105: 0x9CE7,\n\t158194 - 131105: 0x8A54,\n\t158202 - 131105: 0x9C6C,\n\t158253 - 131105: 0x9C6E,\n\t158254 - 131105: 0xFE5D,\n\t158260 - 131105: 0x9C73,\n\t158274 - 131105: 0x956A,\n\t158289 - 131105: 0x956D,\n\t158290 - 131105: 0x8EF0,\n\t158469 - 131105: 0x8F4D,\n\t158474 - 131105: 0x8EF6,\n\t158483 - 131105: 0xFABC,\n\t158485 - 131105: 0x8CD5,\n\t158499 - 131105: 0x875E,\n\t158504 - 131105: 0xFBDA,\n\t158544 - 131105: 0x8B4C,\n\t158545 - 131105: 0xFD75,\n\t158546 - 131105: 0x9BDD,\n\t158547 - 131105: 0xFAF5,\n\t158555 - 131105: 0x9C74,\n\t158581 - 131105: 0x9545,\n\t158594 - 131105: 0x96C6,\n\t158614 - 131105: 0x8F6A,\n\t158615 - 131105: 0x8F4E,\n\t158621 - 131105: 0x9C78,\n\t158643 - 131105: 0xFA55,\n\t158656 - 131105: 0x97E4,\n\t158711 - 131105: 0x9C41,\n\t158753 - 131105: 0x925C,\n\t158784 - 131105: 0x96FA,\n\t158785 - 131105: 0x8CF6,\n\t158790 - 131105: 0x8D4D,\n\t158846 - 131105: 0xFB66,\n\t158847 - 131105: 0x8E65,\n\t158848 - 131105: 0x9849,\n\t158849 - 131105: 0xFBA8,\n\t158850 - 131105: 0x9842,\n\t158884 - 131105: 0x9C7A,\n\t158903 - 131105: 0x97FB,\n\t158904 - 131105: 0x90CA,\n\t158909 - 131105: 0x9C5B,\n\t158912 - 131105: 0x974D,\n\t158915 - 131105: 0x8ED3,\n\t158929 - 131105: 0x9561,\n\t159010 - 131105: 0x9F4B,\n\t159011 - 131105: 0x9FB5,\n\t159012 - 131105: 0x93D2,\n\t159013 - 131105: 0xFDAA,\n\t159014 - 131105: 0x9840,\n\t159015 - 131105: 0x9146,\n\t159016 - 131105: 0x9867,\n\t159017 - 131105: 0xFA5A,\n\t159018 - 131105: 0xFBA9,\n\t159057 - 131105: 0x9841,\n\t159092 - 131105: 0x8CD3,\n\t159136 - 131105: 0xFCFD,\n\t159137 - 131105: 0xFDAB,\n\t159138 - 131105: 0x91BD,\n\t159139 - 131105: 0x8F4C,\n\t159140 - 131105: 0x96C9,\n\t159141 - 131105: 0x8F55,\n\t159142 - 131105: 0xFBAE,\n\t159143 - 131105: 0x956F,\n\t159150 - 131105: 0x9C7D,\n\t159196 - 131105: 0xA0F0,\n\t159210 - 131105: 0x946F,\n\t159211 - 131105: 0xFDAC,\n\t159216 - 131105: 0x96CB,\n\t159232 - 131105: 0x96CE,\n\t159237 - 131105: 0xA056,\n\t159239 - 131105: 0x9CE1,\n\t159250 - 131105: 0x96C4,\n\t159298 - 131105: 0x8F5E,\n\t159299 - 131105: 0x8F6C,\n\t159300 - 131105: 0x8EA3,\n\t159301 - 131105: 0xFBB3,\n\t159342 - 131105: 0xFC53,\n\t159346 - 131105: 0xFDB3,\n\t159351 - 131105: 0x8F6B,\n\t159364 - 131105: 0x96CA,\n\t159368 - 131105: 0x87CD,\n\t159371 - 131105: 0x8753,\n\t159385 - 131105: 0x8F79,\n\t159440 - 131105: 0x9E6F,\n\t159441 - 131105: 0xA0C5,\n\t159442 - 131105: 0xFC78,\n\t159443 - 131105: 0x8E42,\n\t159444 - 131105: 0x8F5A,\n\t159445 - 131105: 0x90C2,\n\t159446 - 131105: 0x8EA5,\n\t159447 - 131105: 0x9061,\n\t159526 - 131105: 0x924F,\n\t159603 - 131105: 0x9373,\n\t159604 - 131105: 0xFDB5,\n\t159647 - 131105: 0xFECC,\n\t159649 - 131105: 0xFBBD,\n\t159678 - 131105: 0x8CD6,\n\t159710 - 131105: 0x9843,\n\t159711 - 131105: 0x96C5,\n\t159758 - 131105: 0x89BC,\n\t159819 - 131105: 0x9CA3,\n\t159826 - 131105: 0x924B,\n\t159827 - 131105: 0x984A,\n\t159880 - 131105: 0x8FA4,\n\t159917 - 131105: 0xA0F1,\n\t159918 - 131105: 0x9EFB,\n\t159919 - 131105: 0x9CD2,\n\t159949 - 131105: 0x8FA7,\n\t159954 - 131105: 0x8754,\n\t159992 - 131105: 0xFC5C,\n\t160009 - 131105: 0x9845,\n\t160012 - 131105: 0x9046,\n\t160013 - 131105: 0x8CD1,\n\t160038 - 131105: 0xFEFA,\n\t160039 - 131105: 0x9560,\n\t160100 - 131105: 0x9F48,\n\t160101 - 131105: 0x9247,\n\t160117 - 131105: 0x90FB,\n\t160205 - 131105: 0x9CA4,\n\t160283 - 131105: 0x9571,\n\t160359 - 131105: 0x8745,\n\t160384 - 131105: 0x9CA6,\n\t160389 - 131105: 0x9CA7,\n\t160395 - 131105: 0x9CAA,\n\t160434 - 131105: 0x9ED3,\n\t160438 - 131105: 0x9E70,\n\t160486 - 131105: 0x9CAC,\n\t160594 - 131105: 0x8752,\n\t160666 - 131105: 0x8FAE,\n\t160767 - 131105: 0x8D50,\n\t160802 - 131105: 0x957D,\n\t160848 - 131105: 0x9CB0,\n\t160900 - 131105: 0x97B6,\n\t160902 - 131105: 0xA0BD,\n\t161140 - 131105: 0x8ADF,\n\t161187 - 131105: 0x9EAA,\n\t161248 - 131105: 0x8FBD,\n\t161252 - 131105: 0x8FBF,\n\t161277 - 131105: 0x9369,\n\t161278 - 131105: 0x9BA7,\n\t161287 - 131105: 0xC8A4,\n\t161292 - 131105: 0xFEEA,\n\t161330 - 131105: 0x9BE1,\n\t161337 - 131105: 0x8B41,\n\t161365 - 131105: 0x9DB6,\n\t161366 - 131105: 0xA0EB,\n\t161367 - 131105: 0x9BA3,\n\t161428 - 131105: 0x8BA1,\n\t161551 - 131105: 0x8FC8,\n\t161589 - 131105: 0x894C,\n\t161590 - 131105: 0x9860,\n\t161601 - 131105: 0x94C7,\n\t161630 - 131105: 0x8B58,\n\t161668 - 131105: 0x95AB,\n\t161669 - 131105: 0x95AA,\n\t161740 - 131105: 0x9CC3,\n\t161880 - 131105: 0x9CC4,\n\t161904 - 131105: 0x93D6,\n\t161949 - 131105: 0x9DAC,\n\t161970 - 131105: 0x8BE6,\n\t161992 - 131105: 0x8A71,\n\t162084 - 131105: 0x8FD1,\n\t162151 - 131105: 0x99D5,\n\t162170 - 131105: 0x90F4,\n\t162208 - 131105: 0x8AA3,\n\t162269 - 131105: 0x9CCE,\n\t162301 - 131105: 0x9CD4,\n\t162314 - 131105: 0x9CD5,\n\t162318 - 131105: 0xFBC8,\n\t162366 - 131105: 0x9DB3,\n\t162387 - 131105: 0xFC70,\n\t162393 - 131105: 0x8FD7,\n\t162425 - 131105: 0x9B73,\n\t162436 - 131105: 0xFA5B,\n\t162493 - 131105: 0x8FD2,\n\t162494 - 131105: 0x9064,\n\t162548 - 131105: 0x98B6,\n\t162566 - 131105: 0x9668,\n\t162571 - 131105: 0x9CD6,\n\t162584 - 131105: 0x98BD,\n\t162616 - 131105: 0x8FDC,\n\t162617 - 131105: 0xFEF6,\n\t162618 - 131105: 0x8FD9,\n\t162632 - 131105: 0x9541,\n\t162661 - 131105: 0x87CA,\n\t162799 - 131105: 0x876C,\n\t162804 - 131105: 0x97F3,\n\t162834 - 131105: 0x9BF8,\n\t162924 - 131105: 0x875A,\n\t162993 - 131105: 0x8748,\n\t163013 - 131105: 0x874A,\n\t163119 - 131105: 0x9E6C,\n\t163155 - 131105: 0x8FF2,\n\t163156 - 131105: 0x8FEE,\n\t163174 - 131105: 0x9CD7,\n\t163187 - 131105: 0x9E6E,\n\t163204 - 131105: 0x8A40,\n\t163215 - 131105: 0x8FEF,\n\t163224 - 131105: 0x8FF4,\n\t163261 - 131105: 0x8FF5,\n\t163292 - 131105: 0x95C2,\n\t163405 - 131105: 0x986A,\n\t163407 - 131105: 0x97CF,\n\t163630 - 131105: 0x9EE5,\n\t163833 - 131105: 0x9E7C,\n\t163842 - 131105: 0x9041,\n\t163849 - 131105: 0x9CDB,\n\t163870 - 131105: 0x9441,\n\t163875 - 131105: 0x9CE6,\n\t163876 - 131105: 0x9DB0,\n\t163912 - 131105: 0x9CEA,\n\t163971 - 131105: 0x9CED,\n\t163984 - 131105: 0x9CFA,\n\t164029 - 131105: 0x8B62,\n\t164030 - 131105: 0x8A4E,\n\t164072 - 131105: 0x9CCA,\n\t164073 - 131105: 0x8A66,\n\t164084 - 131105: 0x9CFB,\n\t164142 - 131105: 0x9CFC,\n\t164175 - 131105: 0x9CFE,\n\t164189 - 131105: 0x8A53,\n\t164207 - 131105: 0x9CE5,\n\t164233 - 131105: 0x9D40,\n\t164271 - 131105: 0x9D41,\n\t164284 - 131105: 0x9045,\n\t164359 - 131105: 0x8B73,\n\t164376 - 131105: 0x97CA,\n\t164378 - 131105: 0x9D42,\n\t164438 - 131105: 0x8A61,\n\t164476 - 131105: 0x8BAE,\n\t164507 - 131105: 0x8AD2,\n\t164557 - 131105: 0x8BA2,\n\t164578 - 131105: 0x9DF2,\n\t164614 - 131105: 0x9D43,\n\t164632 - 131105: 0x9CDF,\n\t164655 - 131105: 0x9D44,\n\t164666 - 131105: 0x8ECA,\n\t164709 - 131105: 0x904E,\n\t164717 - 131105: 0x8EB3,\n\t164733 - 131105: 0x9FF5,\n\t164746 - 131105: 0x9D45,\n\t164882 - 131105: 0x904F,\n\t164968 - 131105: 0x9D47,\n\t164972 - 131105: 0x89CA,\n\t164979 - 131105: 0x9CB5,\n\t164994 - 131105: 0xFBFE,\n\t165121 - 131105: 0x905E,\n\t165180 - 131105: 0x9063,\n\t165181 - 131105: 0x9057,\n\t165228 - 131105: 0x9066,\n\t165352 - 131105: 0x9BC0,\n\t165364 - 131105: 0xFCE5,\n\t165376 - 131105: 0x9162,\n\t165387 - 131105: 0x9067,\n\t165413 - 131105: 0x8FA1,\n\t165435 - 131105: 0x8FA2,\n\t165546 - 131105: 0x9D48,\n\t165547 - 131105: 0xFAD3,\n\t165554 - 131105: 0x8D4F,\n\t165564 - 131105: 0x905D,\n\t165592 - 131105: 0x90B9,\n\t165606 - 131105: 0x906B,\n\t165647 - 131105: 0x8C5C,\n\t165651 - 131105: 0x9069,\n\t165892 - 131105: 0xFE57,\n\t165931 - 131105: 0xFE55,\n\t166157 - 131105: 0x87A6,\n\t166195 - 131105: 0x9073,\n\t166216 - 131105: 0x9BEF,\n\t166217 - 131105: 0x9CF0,\n\t166230 - 131105: 0x9D4B,\n\t166244 - 131105: 0xFED9,\n\t166248 - 131105: 0xFEDA,\n\t166252 - 131105: 0x91E0,\n\t166253 - 131105: 0x8D43,\n\t166270 - 131105: 0x91D8,\n\t166281 - 131105: 0x9646,\n\t166312 - 131105: 0x9360,\n\t166314 - 131105: 0xFA53,\n\t166315 - 131105: 0x9CD3,\n\t166328 - 131105: 0x9D4E,\n\t166332 - 131105: 0xFB40,\n\t166336 - 131105: 0x8DE2,\n\t166364 - 131105: 0x9442,\n\t166366 - 131105: 0x9056,\n\t166369 - 131105: 0x9865,\n\t166371 - 131105: 0x8C6C,\n\t166372 - 131105: 0xFA4A,\n\t166375 - 131105: 0x9D50,\n\t166376 - 131105: 0x9D52,\n\t166393 - 131105: 0x95AF,\n\t166394 - 131105: 0x975A,\n\t166395 - 131105: 0x9349,\n\t166396 - 131105: 0x9747,\n\t166415 - 131105: 0xA0F4,\n\t166422 - 131105: 0x9778,\n\t166437 - 131105: 0x8FCF,\n\t166441 - 131105: 0xFC60,\n\t166450 - 131105: 0x8C4E,\n\t166454 - 131105: 0xFC56,\n\t166468 - 131105: 0x91DC,\n\t166469 - 131105: 0x9661,\n\t166470 - 131105: 0x92EC,\n\t166471 - 131105: 0x935D,\n\t166472 - 131105: 0x8EDE,\n\t166473 - 131105: 0x96FE,\n\t166474 - 131105: 0xFD4F,\n\t166475 - 131105: 0x95DE,\n\t166489 - 131105: 0x98B0,\n\t166490 - 131105: 0xA040,\n\t166529 - 131105: 0x97BD,\n\t166530 - 131105: 0x977D,\n\t166531 - 131105: 0x97F5,\n\t166554 - 131105: 0x9BAC,\n\t166555 - 131105: 0xFADA,\n\t166556 - 131105: 0x92C2,\n\t166592 - 131105: 0x97B1,\n\t166598 - 131105: 0x907B,\n\t166603 - 131105: 0x93FE,\n\t166604 - 131105: 0x947B,\n\t166606 - 131105: 0x9777,\n\t166622 - 131105: 0xFABE,\n\t166623 - 131105: 0xFD43,\n\t166624 - 131105: 0x90C6,\n\t166625 - 131105: 0x90A4,\n\t166626 - 131105: 0x90A8,\n\t166627 - 131105: 0x94A9,\n\t166629 - 131105: 0x90A9,\n\t166634 - 131105: 0x8C65,\n\t166652 - 131105: 0x95E0,\n\t166668 - 131105: 0x907D,\n\t166675 - 131105: 0x9265,\n\t166689 - 131105: 0xFDBA,\n\t166690 - 131105: 0x93C4,\n\t166699 - 131105: 0xFEED,\n\t166700 - 131105: 0x9DAB,\n\t166701 - 131105: 0xA0E3,\n\t166703 - 131105: 0x9648,\n\t166726 - 131105: 0x9D53,\n\t166732 - 131105: 0x8AA9,\n\t166734 - 131105: 0x9BC5,\n\t166736 - 131105: 0x965D,\n\t166755 - 131105: 0x975F,\n\t166756 - 131105: 0x965F,\n\t166757 - 131105: 0x966E,\n\t166758 - 131105: 0xFB5D,\n\t166764 - 131105: 0x9DB1,\n\t166799 - 131105: 0xFEA3,\n\t166809 - 131105: 0x9DB2,\n\t166812 - 131105: 0x95AE,\n\t166813 - 131105: 0xFCA3,\n\t166841 - 131105: 0x8769,\n\t166850 - 131105: 0xA0A2,\n\t166853 - 131105: 0x9655,\n\t166868 - 131105: 0x9D54,\n\t166871 - 131105: 0x9341,\n\t166873 - 131105: 0x95AD,\n\t166874 - 131105: 0x91D5,\n\t166887 - 131105: 0x977A,\n\t166888 - 131105: 0xFDFC,\n\t166889 - 131105: 0x8E47,\n\t166890 - 131105: 0x93FD,\n\t166891 - 131105: 0x90A5,\n\t166892 - 131105: 0x90AC,\n\t166901 - 131105: 0x95AC,\n\t166911 - 131105: 0x90AE,\n\t166915 - 131105: 0xFEA5,\n\t166921 - 131105: 0x9D56,\n\t166940 - 131105: 0x97E3,\n\t166941 - 131105: 0x95E2,\n\t166947 - 131105: 0x9466,\n\t166950 - 131105: 0x9647,\n\t166955 - 131105: 0x91B8,\n\t166960 - 131105: 0x9CEC,\n\t166969 - 131105: 0x90AD,\n\t166971 - 131105: 0x95E3,\n\t167114 - 131105: 0x8B4F,\n\t167117 - 131105: 0x8AE3,\n\t167122 - 131105: 0x8B4D,\n\t167220 - 131105: 0x95EA,\n\t167321 - 131105: 0x8B4E,\n\t167353 - 131105: 0x8CC1,\n\t167439 - 131105: 0x8BED,\n\t167478 - 131105: 0x91D9,\n\t167481 - 131105: 0xA0A4,\n\t167525 - 131105: 0x95F5,\n\t167526 - 131105: 0x95F4,\n\t167575 - 131105: 0x9FB3,\n\t167596 - 131105: 0xFEAF,\n\t167602 - 131105: 0xFE72,\n\t167603 - 131105: 0x927A,\n\t167641 - 131105: 0xFEAC,\n\t167655 - 131105: 0x95F3,\n\t167877 - 131105: 0x9D58,\n\t168057 - 131105: 0x8D46,\n\t168072 - 131105: 0x9372,\n\t168075 - 131105: 0x91C5,\n\t168083 - 131105: 0x9642,\n\t168111 - 131105: 0x90CD,\n\t168112 - 131105: 0x95FE,\n\t168113 - 131105: 0x9159,\n\t168128 - 131105: 0x9C65,\n\t168164 - 131105: 0x97CC,\n\t168165 - 131105: 0x90CE,\n\t168172 - 131105: 0x9D59,\n\t168173 - 131105: 0xFCF5,\n\t168205 - 131105: 0xFEFD,\n\t168208 - 131105: 0x9D5B,\n\t168252 - 131105: 0x9D5C,\n\t168269 - 131105: 0x937E,\n\t168283 - 131105: 0x98AC,\n\t168286 - 131105: 0x9D5E,\n\t168304 - 131105: 0xFDD0,\n\t168348 - 131105: 0xFD60,\n\t168360 - 131105: 0x9CCF,\n\t168405 - 131105: 0x90DD,\n\t168427 - 131105: 0x90E0,\n\t168989 - 131105: 0x90F3,\n\t168992 - 131105: 0x98B1,\n\t169011 - 131105: 0x90F0,\n\t169023 - 131105: 0x93BD,\n\t169032 - 131105: 0x95B7,\n\t169168 - 131105: 0x9F46,\n\t169177 - 131105: 0x8E4B,\n\t169178 - 131105: 0x9658,\n\t169189 - 131105: 0x8A4C,\n\t169191 - 131105: 0x9D63,\n\t169374 - 131105: 0x9ECF,\n\t169392 - 131105: 0x9D65,\n\t169400 - 131105: 0x9D66,\n\t169431 - 131105: 0x965A,\n\t169449 - 131105: 0x9D64,\n\t169460 - 131105: 0x8A6C,\n\t169760 - 131105: 0x8AD9,\n\t169778 - 131105: 0x9D67,\n\t169940 - 131105: 0x8A70,\n\t170000 - 131105: 0x8BF3,\n\t170071 - 131105: 0x9150,\n\t170148 - 131105: 0x9CC1,\n\t170193 - 131105: 0x9D68,\n\t170218 - 131105: 0x93A7,\n\t170225 - 131105: 0x9674,\n\t170234 - 131105: 0x8CFD,\n\t170243 - 131105: 0xA0EF,\n\t170245 - 131105: 0x9151,\n\t170287 - 131105: 0x96C1,\n\t170309 - 131105: 0x8777,\n\t170311 - 131105: 0x8C64,\n\t170312 - 131105: 0x9676,\n\t170313 - 131105: 0x9D69,\n\t170333 - 131105: 0xFCA4,\n\t170346 - 131105: 0x9D6A,\n\t170397 - 131105: 0x924E,\n\t170435 - 131105: 0x9D6B,\n\t170441 - 131105: 0x9BC1,\n\t170536 - 131105: 0x9D6C,\n\t170573 - 131105: 0x8A65,\n\t170757 - 131105: 0x915D,\n\t170766 - 131105: 0x9D6D,\n\t170965 - 131105: 0x915A,\n\t171123 - 131105: 0x8C42,\n\t171181 - 131105: 0x9CC0,\n\t171326 - 131105: 0x916A,\n\t171354 - 131105: 0x9D6E,\n\t171388 - 131105: 0x9EA6,\n\t171416 - 131105: 0x9DCD,\n\t171419 - 131105: 0x9D6F,\n\t171510 - 131105: 0x89BB,\n\t171526 - 131105: 0x9EF9,\n\t171565 - 131105: 0x96B4,\n\t171624 - 131105: 0x9172,\n\t171692 - 131105: 0x9EC8,\n\t171696 - 131105: 0x8771,\n\t171715 - 131105: 0x8B55,\n\t171768 - 131105: 0x9D71,\n\t171811 - 131105: 0x9D72,\n\t171824 - 131105: 0x9ECC,\n\t171959 - 131105: 0x9174,\n\t171998 - 131105: 0x9ED0,\n\t172052 - 131105: 0x905C,\n\t172167 - 131105: 0x8ED2,\n\t172217 - 131105: 0x91A8,\n\t172257 - 131105: 0x9177,\n\t172269 - 131105: 0x96BF,\n\t172275 - 131105: 0x96C0,\n\t172280 - 131105: 0x8FB1,\n\t172286 - 131105: 0x96B7,\n\t172295 - 131105: 0x8C55,\n\t172323 - 131105: 0x9178,\n\t172339 - 131105: 0x89BE,\n\t172340 - 131105: 0x917C,\n\t172368 - 131105: 0xFB77,\n\t172434 - 131105: 0x9175,\n\t172435 - 131105: 0x91A3,\n\t172459 - 131105: 0x9176,\n\t172468 - 131105: 0x96BE,\n\t172469 - 131105: 0x8D49,\n\t172511 - 131105: 0x9179,\n\t172533 - 131105: 0x96B6,\n\t172576 - 131105: 0x91A4,\n\t172595 - 131105: 0x91A6,\n\t172691 - 131105: 0x9D75,\n\t172703 - 131105: 0x9052,\n\t172722 - 131105: 0xA045,\n\t172724 - 131105: 0x91A9,\n\t172726 - 131105: 0x98AA,\n\t172730 - 131105: 0x8C5F,\n\t172733 - 131105: 0x8BAA,\n\t172767 - 131105: 0x9CDD,\n\t172799 - 131105: 0x9D77,\n\t172881 - 131105: 0x8756,\n\t172969 - 131105: 0x8940,\n\t173108 - 131105: 0x9EEC,\n\t173147 - 131105: 0x93AA,\n\t173510 - 131105: 0x9478,\n\t173515 - 131105: 0x9D7A,\n\t173569 - 131105: 0x8AC9,\n\t173618 - 131105: 0x8B4B,\n\t173642 - 131105: 0x9FEC,\n\t173659 - 131105: 0x8AE2,\n\t173737 - 131105: 0x9E75,\n}\n\nconst encode1Low, encode1High = 11904, 40908\n\nvar encode1 = [...]uint16{\n\t11904 - 11904: 0xC8D6,\n\t11908 - 11904: 0xC8D7,\n\t11910 - 11904: 0xC8D8,\n\t11911 - 11904: 0xC8D9,\n\t11912 - 11904: 0xC8DA,\n\t11914 - 11904: 0xC8DB,\n\t11916 - 11904: 0xC8DC,\n\t11917 - 11904: 0xC8DD,\n\t11925 - 11904: 0xC8DE,\n\t11932 - 11904: 0xC8DF,\n\t11933 - 11904: 0xC8E0,\n\t11941 - 11904: 0xC8E1,\n\t11943 - 11904: 0xC8E2,\n\t11946 - 11904: 0xC8E3,\n\t11948 - 11904: 0xC8E4,\n\t11950 - 11904: 0xC8E5,\n\t11958 - 11904: 0xC8E6,\n\t11964 - 11904: 0xC8E7,\n\t11966 - 11904: 0xC8E8,\n\t11974 - 11904: 0xC8E9,\n\t11978 - 11904: 0xC8EA,\n\t11980 - 11904: 0xC8EB,\n\t11981 - 11904: 0xC8EC,\n\t11983 - 11904: 0xC8ED,\n\t11990 - 11904: 0xC8EE,\n\t11991 - 11904: 0xC8EF,\n\t11998 - 11904: 0xC8F0,\n\t12003 - 11904: 0xC8F1,\n\t12083 - 11904: 0xC6CD,\n\t12288 - 11904: 0xA140,\n\t12289 - 11904: 0xA142,\n\t12290 - 11904: 0xA143,\n\t12291 - 11904: 0xC6DE,\n\t12293 - 11904: 0xC6E0,\n\t12294 - 11904: 0xC6E1,\n\t12295 - 11904: 0xC6E2,\n\t12296 - 11904: 0xA171,\n\t12297 - 11904: 0xA172,\n\t12298 - 11904: 0xA16D,\n\t12299 - 11904: 0xA16E,\n\t12300 - 11904: 0xA175,\n\t12301 - 11904: 0xA176,\n\t12302 - 11904: 0xA179,\n\t12303 - 11904: 0xA17A,\n\t12304 - 11904: 0xA169,\n\t12305 - 11904: 0xA16A,\n\t12306 - 11904: 0xA245,\n\t12308 - 11904: 0xA165,\n\t12309 - 11904: 0xA166,\n\t12317 - 11904: 0xA1A9,\n\t12318 - 11904: 0xA1AA,\n\t12321 - 11904: 0xA2C3,\n\t12322 - 11904: 0xA2C4,\n\t12323 - 11904: 0xA2C5,\n\t12324 - 11904: 0xA2C6,\n\t12325 - 11904: 0xA2C7,\n\t12326 - 11904: 0xA2C8,\n\t12327 - 11904: 0xA2C9,\n\t12328 - 11904: 0xA2CA,\n\t12329 - 11904: 0xA2CB,\n\t12353 - 11904: 0xC6E7,\n\t12354 - 11904: 0xC6E8,\n\t12355 - 11904: 0xC6E9,\n\t12356 - 11904: 0xC6EA,\n\t12357 - 11904: 0xC6EB,\n\t12358 - 11904: 0xC6EC,\n\t12359 - 11904: 0xC6ED,\n\t12360 - 11904: 0xC6EE,\n\t12361 - 11904: 0xC6EF,\n\t12362 - 11904: 0xC6F0,\n\t12363 - 11904: 0xC6F1,\n\t12364 - 11904: 0xC6F2,\n\t12365 - 11904: 0xC6F3,\n\t12366 - 11904: 0xC6F4,\n\t12367 - 11904: 0xC6F5,\n\t12368 - 11904: 0xC6F6,\n\t12369 - 11904: 0xC6F7,\n\t12370 - 11904: 0xC6F8,\n\t12371 - 11904: 0xC6F9,\n\t12372 - 11904: 0xC6FA,\n\t12373 - 11904: 0xC6FB,\n\t12374 - 11904: 0xC6FC,\n\t12375 - 11904: 0xC6FD,\n\t12376 - 11904: 0xC6FE,\n\t12377 - 11904: 0xC740,\n\t12378 - 11904: 0xC741,\n\t12379 - 11904: 0xC742,\n\t12380 - 11904: 0xC743,\n\t12381 - 11904: 0xC744,\n\t12382 - 11904: 0xC745,\n\t12383 - 11904: 0xC746,\n\t12384 - 11904: 0xC747,\n\t12385 - 11904: 0xC748,\n\t12386 - 11904: 0xC749,\n\t12387 - 11904: 0xC74A,\n\t12388 - 11904: 0xC74B,\n\t12389 - 11904: 0xC74C,\n\t12390 - 11904: 0xC74D,\n\t12391 - 11904: 0xC74E,\n\t12392 - 11904: 0xC74F,\n\t12393 - 11904: 0xC750,\n\t12394 - 11904: 0xC751,\n\t12395 - 11904: 0xC752,\n\t12396 - 11904: 0xC753,\n\t12397 - 11904: 0xC754,\n\t12398 - 11904: 0xC755,\n\t12399 - 11904: 0xC756,\n\t12400 - 11904: 0xC757,\n\t12401 - 11904: 0xC758,\n\t12402 - 11904: 0xC759,\n\t12403 - 11904: 0xC75A,\n\t12404 - 11904: 0xC75B,\n\t12405 - 11904: 0xC75C,\n\t12406 - 11904: 0xC75D,\n\t12407 - 11904: 0xC75E,\n\t12408 - 11904: 0xC75F,\n\t12409 - 11904: 0xC760,\n\t12410 - 11904: 0xC761,\n\t12411 - 11904: 0xC762,\n\t12412 - 11904: 0xC763,\n\t12413 - 11904: 0xC764,\n\t12414 - 11904: 0xC765,\n\t12415 - 11904: 0xC766,\n\t12416 - 11904: 0xC767,\n\t12417 - 11904: 0xC768,\n\t12418 - 11904: 0xC769,\n\t12419 - 11904: 0xC76A,\n\t12420 - 11904: 0xC76B,\n\t12421 - 11904: 0xC76C,\n\t12422 - 11904: 0xC76D,\n\t12423 - 11904: 0xC76E,\n\t12424 - 11904: 0xC76F,\n\t12425 - 11904: 0xC770,\n\t12426 - 11904: 0xC771,\n\t12427 - 11904: 0xC772,\n\t12428 - 11904: 0xC773,\n\t12429 - 11904: 0xC774,\n\t12430 - 11904: 0xC775,\n\t12431 - 11904: 0xC776,\n\t12432 - 11904: 0xC777,\n\t12433 - 11904: 0xC778,\n\t12434 - 11904: 0xC779,\n\t12435 - 11904: 0xC77A,\n\t12443 - 11904: 0xC8D4,\n\t12444 - 11904: 0xC8D5,\n\t12445 - 11904: 0xC6DC,\n\t12446 - 11904: 0xC6DD,\n\t12449 - 11904: 0xC77B,\n\t12450 - 11904: 0xC77C,\n\t12451 - 11904: 0xC77D,\n\t12452 - 11904: 0xC77E,\n\t12453 - 11904: 0xC7A1,\n\t12454 - 11904: 0xC7A2,\n\t12455 - 11904: 0xC7A3,\n\t12456 - 11904: 0xC7A4,\n\t12457 - 11904: 0xC7A5,\n\t12458 - 11904: 0xC7A6,\n\t12459 - 11904: 0xC7A7,\n\t12460 - 11904: 0xC7A8,\n\t12461 - 11904: 0xC7A9,\n\t12462 - 11904: 0xC7AA,\n\t12463 - 11904: 0xC7AB,\n\t12464 - 11904: 0xC7AC,\n\t12465 - 11904: 0xC7AD,\n\t12466 - 11904: 0xC7AE,\n\t12467 - 11904: 0xC7AF,\n\t12468 - 11904: 0xC7B0,\n\t12469 - 11904: 0xC7B1,\n\t12470 - 11904: 0xC7B2,\n\t12471 - 11904: 0xC7B3,\n\t12472 - 11904: 0xC7B4,\n\t12473 - 11904: 0xC7B5,\n\t12474 - 11904: 0xC7B6,\n\t12475 - 11904: 0xC7B7,\n\t12476 - 11904: 0xC7B8,\n\t12477 - 11904: 0xC7B9,\n\t12478 - 11904: 0xC7BA,\n\t12479 - 11904: 0xC7BB,\n\t12480 - 11904: 0xC7BC,\n\t12481 - 11904: 0xC7BD,\n\t12482 - 11904: 0xC7BE,\n\t12483 - 11904: 0xC7BF,\n\t12484 - 11904: 0xC7C0,\n\t12485 - 11904: 0xC7C1,\n\t12486 - 11904: 0xC7C2,\n\t12487 - 11904: 0xC7C3,\n\t12488 - 11904: 0xC7C4,\n\t12489 - 11904: 0xC7C5,\n\t12490 - 11904: 0xC7C6,\n\t12491 - 11904: 0xC7C7,\n\t12492 - 11904: 0xC7C8,\n\t12493 - 11904: 0xC7C9,\n\t12494 - 11904: 0xC7CA,\n\t12495 - 11904: 0xC7CB,\n\t12496 - 11904: 0xC7CC,\n\t12497 - 11904: 0xC7CD,\n\t12498 - 11904: 0xC7CE,\n\t12499 - 11904: 0xC7CF,\n\t12500 - 11904: 0xC7D0,\n\t12501 - 11904: 0xC7D1,\n\t12502 - 11904: 0xC7D2,\n\t12503 - 11904: 0xC7D3,\n\t12504 - 11904: 0xC7D4,\n\t12505 - 11904: 0xC7D5,\n\t12506 - 11904: 0xC7D6,\n\t12507 - 11904: 0xC7D7,\n\t12508 - 11904: 0xC7D8,\n\t12509 - 11904: 0xC7D9,\n\t12510 - 11904: 0xC7DA,\n\t12511 - 11904: 0xC7DB,\n\t12512 - 11904: 0xC7DC,\n\t12513 - 11904: 0xC7DD,\n\t12514 - 11904: 0xC7DE,\n\t12515 - 11904: 0xC7DF,\n\t12516 - 11904: 0xC7E0,\n\t12517 - 11904: 0xC7E1,\n\t12518 - 11904: 0xC7E2,\n\t12519 - 11904: 0xC7E3,\n\t12520 - 11904: 0xC7E4,\n\t12521 - 11904: 0xC7E5,\n\t12522 - 11904: 0xC7E6,\n\t12523 - 11904: 0xC7E7,\n\t12524 - 11904: 0xC7E8,\n\t12525 - 11904: 0xC7E9,\n\t12526 - 11904: 0xC7EA,\n\t12527 - 11904: 0xC7EB,\n\t12528 - 11904: 0xC7EC,\n\t12529 - 11904: 0xC7ED,\n\t12530 - 11904: 0xC7EE,\n\t12531 - 11904: 0xC7EF,\n\t12532 - 11904: 0xC7F0,\n\t12533 - 11904: 0xC7F1,\n\t12534 - 11904: 0xC7F2,\n\t12540 - 11904: 0xC6E3,\n\t12541 - 11904: 0xC6DA,\n\t12542 - 11904: 0xC6DB,\n\t12549 - 11904: 0xA374,\n\t12550 - 11904: 0xA375,\n\t12551 - 11904: 0xA376,\n\t12552 - 11904: 0xA377,\n\t12553 - 11904: 0xA378,\n\t12554 - 11904: 0xA379,\n\t12555 - 11904: 0xA37A,\n\t12556 - 11904: 0xA37B,\n\t12557 - 11904: 0xA37C,\n\t12558 - 11904: 0xA37D,\n\t12559 - 11904: 0xA37E,\n\t12560 - 11904: 0xA3A1,\n\t12561 - 11904: 0xA3A2,\n\t12562 - 11904: 0xA3A3,\n\t12563 - 11904: 0xA3A4,\n\t12564 - 11904: 0xA3A5,\n\t12565 - 11904: 0xA3A6,\n\t12566 - 11904: 0xA3A7,\n\t12567 - 11904: 0xA3A8,\n\t12568 - 11904: 0xA3A9,\n\t12569 - 11904: 0xA3AA,\n\t12570 - 11904: 0xA3AB,\n\t12571 - 11904: 0xA3AC,\n\t12572 - 11904: 0xA3AD,\n\t12573 - 11904: 0xA3AE,\n\t12574 - 11904: 0xA3AF,\n\t12575 - 11904: 0xA3B0,\n\t12576 - 11904: 0xA3B1,\n\t12577 - 11904: 0xA3B2,\n\t12578 - 11904: 0xA3B3,\n\t12579 - 11904: 0xA3B4,\n\t12580 - 11904: 0xA3B5,\n\t12581 - 11904: 0xA3B6,\n\t12582 - 11904: 0xA3B7,\n\t12583 - 11904: 0xA3B8,\n\t12584 - 11904: 0xA3B9,\n\t12585 - 11904: 0xA3BA,\n\t12736 - 11904: 0x8840,\n\t12737 - 11904: 0x8841,\n\t12738 - 11904: 0x8842,\n\t12739 - 11904: 0x8843,\n\t12740 - 11904: 0x8844,\n\t12741 - 11904: 0x8846,\n\t12742 - 11904: 0x8849,\n\t12743 - 11904: 0x884A,\n\t12744 - 11904: 0x884D,\n\t12745 - 11904: 0x884F,\n\t12746 - 11904: 0x8850,\n\t12747 - 11904: 0x8851,\n\t12748 - 11904: 0x8852,\n\t12749 - 11904: 0x8854,\n\t12750 - 11904: 0x8855,\n\t12751 - 11904: 0xC879,\n\t12849 - 11904: 0xC8D1,\n\t12963 - 11904: 0xA1C0,\n\t13198 - 11904: 0xA255,\n\t13199 - 11904: 0xA256,\n\t13212 - 11904: 0xA250,\n\t13213 - 11904: 0xA251,\n\t13214 - 11904: 0xA252,\n\t13217 - 11904: 0xA254,\n\t13252 - 11904: 0xA257,\n\t13262 - 11904: 0xA253,\n\t13265 - 11904: 0xA1EB,\n\t13266 - 11904: 0xA1EA,\n\t13269 - 11904: 0xA24F,\n\t13365 - 11904: 0x9277,\n\t13376 - 11904: 0x96DF,\n\t13386 - 11904: 0x8CF4,\n\t13388 - 11904: 0x89D5,\n\t13412 - 11904: 0x93CD,\n\t13427 - 11904: 0x9BDF,\n\t13434 - 11904: 0xFA68,\n\t13437 - 11904: 0x89DA,\n\t13438 - 11904: 0x8F59,\n\t13459 - 11904: 0x89DB,\n\t13462 - 11904: 0x8F5D,\n\t13477 - 11904: 0x89DC,\n\t13487 - 11904: 0x96F7,\n\t13500 - 11904: 0x8ADA,\n\t13505 - 11904: 0x8BDC,\n\t13512 - 11904: 0x97DB,\n\t13535 - 11904: 0x9E53,\n\t13540 - 11904: 0x9DAA,\n\t13542 - 11904: 0x87BE,\n\t13563 - 11904: 0x9BEA,\n\t13574 - 11904: 0x8A6E,\n\t13630 - 11904: 0x8BC8,\n\t13649 - 11904: 0x89E8,\n\t13651 - 11904: 0x89EA,\n\t13657 - 11904: 0x8C4B,\n\t13665 - 11904: 0xFB70,\n\t13677 - 11904: 0x89ED,\n\t13680 - 11904: 0x94DD,\n\t13682 - 11904: 0x89EE,\n\t13687 - 11904: 0x9EB4,\n\t13688 - 11904: 0x8AD3,\n\t13700 - 11904: 0x92DB,\n\t13719 - 11904: 0x94DB,\n\t13720 - 11904: 0x89F9,\n\t13729 - 11904: 0xFB7A,\n\t13733 - 11904: 0x89FB,\n\t13741 - 11904: 0x9EFC,\n\t13759 - 11904: 0x89FC,\n\t13761 - 11904: 0x89BF,\n\t13765 - 11904: 0x89FE,\n\t13767 - 11904: 0x89E6,\n\t13770 - 11904: 0x9D46,\n\t13774 - 11904: 0x9DEE,\n\t13778 - 11904: 0xA07E,\n\t13782 - 11904: 0xA068,\n\t13787 - 11904: 0x98E9,\n\t13789 - 11904: 0x8B68,\n\t13809 - 11904: 0x8DFD,\n\t13810 - 11904: 0x8BBE,\n\t13811 - 11904: 0x9FD9,\n\t13819 - 11904: 0x8AEB,\n\t13822 - 11904: 0x9FD7,\n\t13833 - 11904: 0x8B6A,\n\t13848 - 11904: 0x9C5C,\n\t13850 - 11904: 0x8BB1,\n\t13859 - 11904: 0xFB5E,\n\t13861 - 11904: 0x8770,\n\t13869 - 11904: 0x9DF3,\n\t13877 - 11904: 0xA0D0,\n\t13881 - 11904: 0xFC66,\n\t13886 - 11904: 0x92E9,\n\t13895 - 11904: 0x9AEC,\n\t13896 - 11904: 0x8FAB,\n\t13897 - 11904: 0xFA48,\n\t13902 - 11904: 0x8E45,\n\t13919 - 11904: 0x9C6F,\n\t13921 - 11904: 0x8D5C,\n\t13946 - 11904: 0x9EDE,\n\t13953 - 11904: 0x89EF,\n\t13978 - 11904: 0x96E9,\n\t13989 - 11904: 0x9EBB,\n\t13994 - 11904: 0x94DE,\n\t13996 - 11904: 0x9EB8,\n\t14000 - 11904: 0x97BA,\n\t14001 - 11904: 0xFB65,\n\t14005 - 11904: 0x95D6,\n\t14009 - 11904: 0x9CBB,\n\t14012 - 11904: 0x97DA,\n\t14017 - 11904: 0x8F45,\n\t14019 - 11904: 0xFB7D,\n\t14020 - 11904: 0x9158,\n\t14021 - 11904: 0xFE64,\n\t14023 - 11904: 0x9856,\n\t14024 - 11904: 0x9B4D,\n\t14035 - 11904: 0x935B,\n\t14036 - 11904: 0x95C7,\n\t14038 - 11904: 0x97E7,\n\t14045 - 11904: 0x9359,\n\t14049 - 11904: 0x91F5,\n\t14050 - 11904: 0x97B8,\n\t14053 - 11904: 0xFDA2,\n\t14054 - 11904: 0xFBB6,\n\t14069 - 11904: 0x92FA,\n\t14081 - 11904: 0x9357,\n\t14083 - 11904: 0x8BA6,\n\t14088 - 11904: 0xFBB9,\n\t14090 - 11904: 0x97B0,\n\t14093 - 11904: 0xFDC4,\n\t14108 - 11904: 0x9CA1,\n\t14114 - 11904: 0x91F2,\n\t14115 - 11904: 0x91F9,\n\t14117 - 11904: 0x8FF1,\n\t14124 - 11904: 0x9745,\n\t14125 - 11904: 0x9853,\n\t14128 - 11904: 0xFE78,\n\t14130 - 11904: 0xFBC1,\n\t14131 - 11904: 0x9251,\n\t14138 - 11904: 0x9DAD,\n\t14144 - 11904: 0xFD6C,\n\t14147 - 11904: 0xFA6B,\n\t14178 - 11904: 0x9BC2,\n\t14191 - 11904: 0x9A7B,\n\t14231 - 11904: 0x8B60,\n\t14240 - 11904: 0x934B,\n\t14265 - 11904: 0x9ABD,\n\t14270 - 11904: 0x91B7,\n\t14294 - 11904: 0x8D4B,\n\t14322 - 11904: 0x95B4,\n\t14328 - 11904: 0xFEC5,\n\t14331 - 11904: 0x9EF0,\n\t14351 - 11904: 0x8D64,\n\t14361 - 11904: 0x9269,\n\t14368 - 11904: 0x8D67,\n\t14381 - 11904: 0xFBEA,\n\t14390 - 11904: 0xFBEF,\n\t14392 - 11904: 0x8D68,\n\t14435 - 11904: 0x93EB,\n\t14453 - 11904: 0x877A,\n\t14496 - 11904: 0xFC42,\n\t14531 - 11904: 0x9166,\n\t14540 - 11904: 0xFACD,\n\t14545 - 11904: 0x93DD,\n\t14548 - 11904: 0x8D52,\n\t14586 - 11904: 0x8BCC,\n\t14600 - 11904: 0x8D6D,\n\t14612 - 11904: 0x8D6E,\n\t14631 - 11904: 0x96A8,\n\t14642 - 11904: 0xFCA6,\n\t14655 - 11904: 0x8D6F,\n\t14669 - 11904: 0x8D70,\n\t14691 - 11904: 0xFC64,\n\t14712 - 11904: 0x8CF3,\n\t14720 - 11904: 0x9060,\n\t14729 - 11904: 0x8D74,\n\t14730 - 11904: 0x97C3,\n\t14738 - 11904: 0x8AD0,\n\t14745 - 11904: 0x9274,\n\t14747 - 11904: 0x9BBE,\n\t14753 - 11904: 0x9CC8,\n\t14756 - 11904: 0x9CBA,\n\t14776 - 11904: 0x8D78,\n\t14812 - 11904: 0x9EB9,\n\t14818 - 11904: 0x955A,\n\t14821 - 11904: 0x91B4,\n\t14828 - 11904: 0x8A48,\n\t14840 - 11904: 0x8D7D,\n\t14843 - 11904: 0x8A7D,\n\t14846 - 11904: 0x8AC2,\n\t14849 - 11904: 0xFD4A,\n\t14851 - 11904: 0x8DA1,\n\t14854 - 11904: 0x8AD1,\n\t14871 - 11904: 0xFCB4,\n\t14872 - 11904: 0x8B47,\n\t14889 - 11904: 0x93A4,\n\t14890 - 11904: 0x9EDA,\n\t14900 - 11904: 0x8A51,\n\t14923 - 11904: 0x8DA6,\n\t14930 - 11904: 0x9EC5,\n\t14935 - 11904: 0xFCC4,\n\t14940 - 11904: 0xA078,\n\t14942 - 11904: 0x94B5,\n\t14950 - 11904: 0xFCC2,\n\t14951 - 11904: 0x8A6B,\n\t14999 - 11904: 0x8DAB,\n\t15019 - 11904: 0xFAE8,\n\t15037 - 11904: 0x8DAD,\n\t15070 - 11904: 0xFC49,\n\t15072 - 11904: 0x93C1,\n\t15088 - 11904: 0x906F,\n\t15090 - 11904: 0x8DB0,\n\t15093 - 11904: 0x87A2,\n\t15099 - 11904: 0x947E,\n\t15118 - 11904: 0x90FA,\n\t15129 - 11904: 0x9479,\n\t15138 - 11904: 0x8DB2,\n\t15147 - 11904: 0xFCEE,\n\t15161 - 11904: 0x997B,\n\t15170 - 11904: 0x8DB4,\n\t15192 - 11904: 0x8DB7,\n\t15200 - 11904: 0x91B3,\n\t15217 - 11904: 0x8DBB,\n\t15218 - 11904: 0x8DBA,\n\t15227 - 11904: 0x8DBC,\n\t15228 - 11904: 0x9044,\n\t15232 - 11904: 0xFD4C,\n\t15253 - 11904: 0x874B,\n\t15254 - 11904: 0x93E4,\n\t15257 - 11904: 0x93E0,\n\t15265 - 11904: 0xFD53,\n\t15292 - 11904: 0x8DC3,\n\t15294 - 11904: 0x9BB8,\n\t15298 - 11904: 0xFBF0,\n\t15300 - 11904: 0x93E9,\n\t15319 - 11904: 0x93F6,\n\t15325 - 11904: 0x8DC5,\n\t15340 - 11904: 0x8DCA,\n\t15346 - 11904: 0x8DCC,\n\t15347 - 11904: 0xFD5D,\n\t15348 - 11904: 0x93B5,\n\t15373 - 11904: 0xFD61,\n\t15377 - 11904: 0x9CF8,\n\t15381 - 11904: 0x9252,\n\t15384 - 11904: 0xA0E8,\n\t15444 - 11904: 0x9CA5,\n\t15499 - 11904: 0x8C56,\n\t15563 - 11904: 0x8DD6,\n\t15565 - 11904: 0x97C0,\n\t15569 - 11904: 0xA0DE,\n\t15574 - 11904: 0x97D2,\n\t15580 - 11904: 0xFAA5,\n\t15595 - 11904: 0xFDA3,\n\t15599 - 11904: 0x8DDB,\n\t15634 - 11904: 0x8CEA,\n\t15635 - 11904: 0x8EAF,\n\t15645 - 11904: 0x91B5,\n\t15666 - 11904: 0xFD49,\n\t15675 - 11904: 0xFDD1,\n\t15686 - 11904: 0x8DEB,\n\t15692 - 11904: 0x97C6,\n\t15694 - 11904: 0xFDCE,\n\t15697 - 11904: 0x90FC,\n\t15711 - 11904: 0xFC59,\n\t15714 - 11904: 0x96D6,\n\t15721 - 11904: 0x97C5,\n\t15722 - 11904: 0x8DEF,\n\t15727 - 11904: 0x97D7,\n\t15733 - 11904: 0x8DF0,\n\t15741 - 11904: 0x96A6,\n\t15749 - 11904: 0xFBBF,\n\t15752 - 11904: 0x8CDF,\n\t15754 - 11904: 0x8DF3,\n\t15759 - 11904: 0x9449,\n\t15761 - 11904: 0x8DF5,\n\t15781 - 11904: 0x9872,\n\t15789 - 11904: 0x8E6B,\n\t15796 - 11904: 0xFAFD,\n\t15807 - 11904: 0x8F50,\n\t15814 - 11904: 0x9DCC,\n\t15815 - 11904: 0xFC65,\n\t15817 - 11904: 0x8C44,\n\t15820 - 11904: 0x996E,\n\t15821 - 11904: 0x94A1,\n\t15827 - 11904: 0x8F63,\n\t15835 - 11904: 0xA0DA,\n\t15847 - 11904: 0x9253,\n\t15848 - 11904: 0xFDE9,\n\t15851 - 11904: 0x9DB5,\n\t15859 - 11904: 0x9879,\n\t15860 - 11904: 0x876A,\n\t15863 - 11904: 0x9D5D,\n\t15868 - 11904: 0x8D63,\n\t15869 - 11904: 0x9669,\n\t15878 - 11904: 0x9F70,\n\t15936 - 11904: 0xFC6A,\n\t15939 - 11904: 0x8AC7,\n\t15944 - 11904: 0x89D7,\n\t15957 - 11904: 0xFE4D,\n\t15988 - 11904: 0x9EDD,\n\t16040 - 11904: 0xFEFB,\n\t16041 - 11904: 0x98BC,\n\t16042 - 11904: 0xFACC,\n\t16045 - 11904: 0x95B0,\n\t16049 - 11904: 0x9464,\n\t16056 - 11904: 0x936F,\n\t16063 - 11904: 0x94B9,\n\t16066 - 11904: 0x95EC,\n\t16071 - 11904: 0x91EE,\n\t16074 - 11904: 0x98C3,\n\t16076 - 11904: 0x95F6,\n\t16080 - 11904: 0x8FFD,\n\t16081 - 11904: 0x98C5,\n\t16086 - 11904: 0x9766,\n\t16087 - 11904: 0xFE6E,\n\t16090 - 11904: 0x97DD,\n\t16091 - 11904: 0x8CAA,\n\t16094 - 11904: 0x92D2,\n\t16097 - 11904: 0x9761,\n\t16098 - 11904: 0x98CB,\n\t16103 - 11904: 0x95F0,\n\t16105 - 11904: 0x975D,\n\t16107 - 11904: 0x91E3,\n\t16108 - 11904: 0x877E,\n\t16112 - 11904: 0x98CC,\n\t16115 - 11904: 0x9469,\n\t16116 - 11904: 0x98CD,\n\t16122 - 11904: 0x98CE,\n\t16124 - 11904: 0x95FC,\n\t16127 - 11904: 0x94A3,\n\t16128 - 11904: 0x9662,\n\t16132 - 11904: 0xFEB6,\n\t16134 - 11904: 0x9463,\n\t16135 - 11904: 0x8D47,\n\t16142 - 11904: 0x98D0,\n\t16211 - 11904: 0x98D1,\n\t16216 - 11904: 0x9475,\n\t16217 - 11904: 0xFAE0,\n\t16227 - 11904: 0x9472,\n\t16252 - 11904: 0x98D6,\n\t16275 - 11904: 0x8AF0,\n\t16320 - 11904: 0x98D9,\n\t16328 - 11904: 0x8D5A,\n\t16343 - 11904: 0x98DB,\n\t16348 - 11904: 0x98DD,\n\t16357 - 11904: 0x98A8,\n\t16365 - 11904: 0x8A6D,\n\t16377 - 11904: 0x8AFB,\n\t16378 - 11904: 0x8AAE,\n\t16388 - 11904: 0xFBC9,\n\t16393 - 11904: 0x8C5D,\n\t16413 - 11904: 0x98E4,\n\t16441 - 11904: 0x98E6,\n\t16453 - 11904: 0x98E8,\n\t16467 - 11904: 0x8A4D,\n\t16471 - 11904: 0x9257,\n\t16482 - 11904: 0x95DF,\n\t16485 - 11904: 0xA0AC,\n\t16490 - 11904: 0x98EB,\n\t16495 - 11904: 0x98EC,\n\t16497 - 11904: 0x8CC3,\n\t16552 - 11904: 0x98F4,\n\t16564 - 11904: 0x87D9,\n\t16571 - 11904: 0x8AB8,\n\t16575 - 11904: 0x9EE7,\n\t16584 - 11904: 0x94BC,\n\t16600 - 11904: 0xFCD1,\n\t16607 - 11904: 0x9CC6,\n\t16632 - 11904: 0x8D4A,\n\t16634 - 11904: 0x9E7E,\n\t16642 - 11904: 0x8D44,\n\t16643 - 11904: 0x98FE,\n\t16644 - 11904: 0xFDE8,\n\t16649 - 11904: 0x9940,\n\t16654 - 11904: 0x94C9,\n\t16689 - 11904: 0x87C6,\n\t16690 - 11904: 0x94D3,\n\t16743 - 11904: 0x9946,\n\t16748 - 11904: 0x90C0,\n\t16750 - 11904: 0x94D1,\n\t16764 - 11904: 0x8D4E,\n\t16767 - 11904: 0x9573,\n\t16769 - 11904: 0x87CE,\n\t16784 - 11904: 0x93C2,\n\t16818 - 11904: 0x9948,\n\t16836 - 11904: 0x994B,\n\t16842 - 11904: 0x8E55,\n\t16847 - 11904: 0x994E,\n\t16859 - 11904: 0x8EFE,\n\t16877 - 11904: 0x8D5F,\n\t16879 - 11904: 0x8E59,\n\t16889 - 11904: 0x94EC,\n\t16913 - 11904: 0x94EF,\n\t16931 - 11904: 0x8C60,\n\t16960 - 11904: 0x8F74,\n\t16992 - 11904: 0x9955,\n\t17002 - 11904: 0x9544,\n\t17014 - 11904: 0x8CCB,\n\t17018 - 11904: 0x9956,\n\t17036 - 11904: 0x9959,\n\t17044 - 11904: 0x995B,\n\t17058 - 11904: 0x8CC4,\n\t17077 - 11904: 0xFA45,\n\t17081 - 11904: 0x90B7,\n\t17084 - 11904: 0x9743,\n\t17140 - 11904: 0x95CD,\n\t17147 - 11904: 0x97C9,\n\t17148 - 11904: 0xFD50,\n\t17162 - 11904: 0x87AA,\n\t17195 - 11904: 0x8EB9,\n\t17262 - 11904: 0x95C6,\n\t17303 - 11904: 0x9967,\n\t17306 - 11904: 0x8CE3,\n\t17338 - 11904: 0x8AB9,\n\t17345 - 11904: 0x8DFC,\n\t17369 - 11904: 0x8A76,\n\t17375 - 11904: 0x9D51,\n\t17389 - 11904: 0x9973,\n\t17392 - 11904: 0x8740,\n\t17394 - 11904: 0x9D4F,\n\t17409 - 11904: 0x997A,\n\t17410 - 11904: 0x9564,\n\t17427 - 11904: 0x99A1,\n\t17445 - 11904: 0x99A5,\n\t17453 - 11904: 0x99A7,\n\t17530 - 11904: 0x8EED,\n\t17551 - 11904: 0x99AD,\n\t17553 - 11904: 0xC87E,\n\t17567 - 11904: 0x946E,\n\t17568 - 11904: 0x8F70,\n\t17570 - 11904: 0xFAD0,\n\t17584 - 11904: 0x99B3,\n\t17591 - 11904: 0xA053,\n\t17597 - 11904: 0x8D5E,\n\t17600 - 11904: 0x965C,\n\t17603 - 11904: 0x8CE0,\n\t17605 - 11904: 0xFD7A,\n\t17614 - 11904: 0x97FE,\n\t17629 - 11904: 0x92BD,\n\t17630 - 11904: 0x8D5D,\n\t17631 - 11904: 0x97FD,\n\t17633 - 11904: 0x87DB,\n\t17636 - 11904: 0x8F64,\n\t17641 - 11904: 0xFCF7,\n\t17642 - 11904: 0x9562,\n\t17643 - 11904: 0x97CD,\n\t17644 - 11904: 0x9E64,\n\t17652 - 11904: 0x924C,\n\t17667 - 11904: 0x8EC9,\n\t17668 - 11904: 0x99BC,\n\t17673 - 11904: 0x9DA5,\n\t17675 - 11904: 0x8F54,\n\t17686 - 11904: 0x8F7C,\n\t17691 - 11904: 0x8D55,\n\t17693 - 11904: 0x8EA2,\n\t17703 - 11904: 0x8F7A,\n\t17710 - 11904: 0x97AE,\n\t17715 - 11904: 0x96C8,\n\t17718 - 11904: 0x8CE4,\n\t17723 - 11904: 0x99C3,\n\t17725 - 11904: 0x90D6,\n\t17727 - 11904: 0x9CBE,\n\t17731 - 11904: 0x8F76,\n\t17745 - 11904: 0x9470,\n\t17746 - 11904: 0xFB4B,\n\t17749 - 11904: 0xFDCA,\n\t17752 - 11904: 0x8CEF,\n\t17756 - 11904: 0x8EC7,\n\t17761 - 11904: 0x8D54,\n\t17762 - 11904: 0xA0F9,\n\t17770 - 11904: 0x8FA9,\n\t17773 - 11904: 0x8D51,\n\t17783 - 11904: 0x99C7,\n\t17784 - 11904: 0x8744,\n\t17797 - 11904: 0x90D7,\n\t17830 - 11904: 0x8743,\n\t17843 - 11904: 0x8747,\n\t17882 - 11904: 0x8758,\n\t17897 - 11904: 0x9EDF,\n\t17898 - 11904: 0x8D59,\n\t17923 - 11904: 0x8742,\n\t17926 - 11904: 0x99CE,\n\t17935 - 11904: 0x8FBA,\n\t17941 - 11904: 0x8FEB,\n\t17943 - 11904: 0x99CF,\n\t18011 - 11904: 0x8FC2,\n\t18042 - 11904: 0x92C9,\n\t18048 - 11904: 0x97DC,\n\t18081 - 11904: 0x875D,\n\t18094 - 11904: 0x87CC,\n\t18107 - 11904: 0x8D45,\n\t18127 - 11904: 0x95B3,\n\t18128 - 11904: 0x9C79,\n\t18165 - 11904: 0x95B2,\n\t18167 - 11904: 0x8D4C,\n\t18195 - 11904: 0x8FDB,\n\t18200 - 11904: 0x9BE3,\n\t18230 - 11904: 0x874C,\n\t18244 - 11904: 0x874D,\n\t18254 - 11904: 0x9E7A,\n\t18255 - 11904: 0x8757,\n\t18300 - 11904: 0x9BEE,\n\t18328 - 11904: 0x99DE,\n\t18342 - 11904: 0xFAFA,\n\t18389 - 11904: 0x8A52,\n\t18413 - 11904: 0x99E1,\n\t18420 - 11904: 0x8A67,\n\t18432 - 11904: 0x8BB5,\n\t18443 - 11904: 0x8AAC,\n\t18487 - 11904: 0x99E9,\n\t18525 - 11904: 0xFBCA,\n\t18545 - 11904: 0x97DE,\n\t18587 - 11904: 0x95D1,\n\t18605 - 11904: 0x99F5,\n\t18606 - 11904: 0xFC4A,\n\t18640 - 11904: 0x9BA9,\n\t18653 - 11904: 0xFBDC,\n\t18669 - 11904: 0xFE56,\n\t18675 - 11904: 0x9EA4,\n\t18682 - 11904: 0x9D49,\n\t18694 - 11904: 0x95DB,\n\t18705 - 11904: 0x89C5,\n\t18718 - 11904: 0x99F8,\n\t18725 - 11904: 0x9664,\n\t18730 - 11904: 0x9055,\n\t18733 - 11904: 0x96D4,\n\t18735 - 11904: 0x87C4,\n\t18736 - 11904: 0x87AE,\n\t18741 - 11904: 0x977C,\n\t18748 - 11904: 0x964D,\n\t18750 - 11904: 0x97E1,\n\t18757 - 11904: 0x9A48,\n\t18769 - 11904: 0x9A49,\n\t18771 - 11904: 0xFE7D,\n\t18789 - 11904: 0x90AA,\n\t18794 - 11904: 0x9A50,\n\t18802 - 11904: 0x9347,\n\t18825 - 11904: 0x8ED8,\n\t18849 - 11904: 0x90C9,\n\t18855 - 11904: 0x9A55,\n\t18911 - 11904: 0x90BC,\n\t18917 - 11904: 0x9A58,\n\t18919 - 11904: 0x8BB8,\n\t18959 - 11904: 0x90D5,\n\t18973 - 11904: 0x9641,\n\t18980 - 11904: 0x9A5A,\n\t18997 - 11904: 0x9A5C,\n\t19094 - 11904: 0x97C2,\n\t19108 - 11904: 0x875C,\n\t19124 - 11904: 0x8ABB,\n\t19128 - 11904: 0x9BAA,\n\t19153 - 11904: 0x90F5,\n\t19172 - 11904: 0x9A60,\n\t19199 - 11904: 0x9145,\n\t19216 - 11904: 0x8C58,\n\t19225 - 11904: 0x9A63,\n\t19232 - 11904: 0x8C49,\n\t19244 - 11904: 0x8BB6,\n\t19255 - 11904: 0xFCCF,\n\t19311 - 11904: 0x966B,\n\t19312 - 11904: 0x9A6E,\n\t19314 - 11904: 0x914F,\n\t19323 - 11904: 0x9746,\n\t19326 - 11904: 0xA0E6,\n\t19342 - 11904: 0x92D7,\n\t19344 - 11904: 0x9675,\n\t19347 - 11904: 0x93D4,\n\t19350 - 11904: 0x91BB,\n\t19351 - 11904: 0x9679,\n\t19357 - 11904: 0x9A70,\n\t19389 - 11904: 0x9678,\n\t19390 - 11904: 0x91CD,\n\t19392 - 11904: 0x9C4A,\n\t19460 - 11904: 0xA06F,\n\t19463 - 11904: 0xA06A,\n\t19470 - 11904: 0x915F,\n\t19506 - 11904: 0x8741,\n\t19515 - 11904: 0x9FA5,\n\t19518 - 11904: 0x89BA,\n\t19520 - 11904: 0x874F,\n\t19527 - 11904: 0x874E,\n\t19543 - 11904: 0x8755,\n\t19547 - 11904: 0x9ECD,\n\t19565 - 11904: 0x9A79,\n\t19575 - 11904: 0x8CF2,\n\t19579 - 11904: 0x8D57,\n\t19581 - 11904: 0x9DCE,\n\t19585 - 11904: 0x8CD2,\n\t19589 - 11904: 0x8759,\n\t19620 - 11904: 0x9D73,\n\t19630 - 11904: 0x96B9,\n\t19632 - 11904: 0x96BC,\n\t19639 - 11904: 0x9CD1,\n\t19661 - 11904: 0x89B7,\n\t19681 - 11904: 0x9EEE,\n\t19682 - 11904: 0x8749,\n\t19693 - 11904: 0xFB43,\n\t19719 - 11904: 0x875B,\n\t19721 - 11904: 0x9EC9,\n\t19728 - 11904: 0xFBD3,\n\t19764 - 11904: 0x91AE,\n\t19830 - 11904: 0x8D58,\n\t19831 - 11904: 0x8746,\n\t19849 - 11904: 0x8D56,\n\t19857 - 11904: 0x9D78,\n\t19868 - 11904: 0x9D7B,\n\t19968 - 11904: 0xA440,\n\t19969 - 11904: 0xA442,\n\t19971 - 11904: 0xA443,\n\t19972 - 11904: 0x9EB3,\n\t19975 - 11904: 0xC945,\n\t19976 - 11904: 0xA456,\n\t19977 - 11904: 0xA454,\n\t19978 - 11904: 0xA457,\n\t19979 - 11904: 0xA455,\n\t19980 - 11904: 0xC946,\n\t19981 - 11904: 0xA4A3,\n\t19982 - 11904: 0xC94F,\n\t19983 - 11904: 0xC94D,\n\t19984 - 11904: 0xA4A2,\n\t19985 - 11904: 0xA4A1,\n\t19988 - 11904: 0xA542,\n\t19989 - 11904: 0xA541,\n\t19990 - 11904: 0xA540,\n\t19992 - 11904: 0xA543,\n\t19993 - 11904: 0xA4FE,\n\t19994 - 11904: 0x9EB2,\n\t19996 - 11904: 0x9DD6,\n\t19998 - 11904: 0xA5E0,\n\t19999 - 11904: 0xA5E1,\n\t20001 - 11904: 0x994F,\n\t20004 - 11904: 0x89CE,\n\t20006 - 11904: 0xA8C3,\n\t20008 - 11904: 0x8BC0,\n\t20010 - 11904: 0x9FC4,\n\t20011 - 11904: 0xA458,\n\t20012 - 11904: 0x8BD4,\n\t20013 - 11904: 0xA4A4,\n\t20014 - 11904: 0xC950,\n\t20015 - 11904: 0x8C72,\n\t20016 - 11904: 0xA4A5,\n\t20017 - 11904: 0xC963,\n\t20018 - 11904: 0xA6EA,\n\t20019 - 11904: 0xCBB1,\n\t20022 - 11904: 0xC6BF,\n\t20023 - 11904: 0x8BF9,\n\t20024 - 11904: 0xA459,\n\t20025 - 11904: 0xA4A6,\n\t20027 - 11904: 0xA544,\n\t20028 - 11904: 0xC964,\n\t20029 - 11904: 0x8946,\n\t20031 - 11904: 0xC6C0,\n\t20034 - 11904: 0xC940,\n\t20035 - 11904: 0xA444,\n\t20037 - 11904: 0xA45B,\n\t20039 - 11904: 0xC947,\n\t20040 - 11904: 0xA45C,\n\t20041 - 11904: 0xFAE5,\n\t20043 - 11904: 0xA4A7,\n\t20045 - 11904: 0xA545,\n\t20046 - 11904: 0xA547,\n\t20047 - 11904: 0xA546,\n\t20050 - 11904: 0xA5E2,\n\t20051 - 11904: 0xA5E3,\n\t20054 - 11904: 0xA8C4,\n\t20056 - 11904: 0xADBC,\n\t20057 - 11904: 0xA441,\n\t20058 - 11904: 0xC87B,\n\t20059 - 11904: 0x8BC6,\n\t20060 - 11904: 0xC941,\n\t20061 - 11904: 0xA445,\n\t20062 - 11904: 0xA45E,\n\t20063 - 11904: 0xA45D,\n\t20073 - 11904: 0xA5E4,\n\t20074 - 11904: 0x9C57,\n\t20083 - 11904: 0xA8C5,\n\t20088 - 11904: 0x9AFB,\n\t20094 - 11904: 0xB0AE,\n\t20095 - 11904: 0xD44B,\n\t20096 - 11904: 0x89D0,\n\t20097 - 11904: 0x89CF,\n\t20098 - 11904: 0xB6C3,\n\t20099 - 11904: 0xDCB1,\n\t20100 - 11904: 0xDCB2,\n\t20101 - 11904: 0xC6C1,\n\t20102 - 11904: 0xA446,\n\t20103 - 11904: 0x89D1,\n\t20104 - 11904: 0xA4A9,\n\t20105 - 11904: 0x89E2,\n\t20107 - 11904: 0xA8C6,\n\t20108 - 11904: 0xA447,\n\t20109 - 11904: 0xC948,\n\t20110 - 11904: 0xA45F,\n\t20113 - 11904: 0xA4AA,\n\t20114 - 11904: 0xA4AC,\n\t20115 - 11904: 0xC951,\n\t20116 - 11904: 0xA4AD,\n\t20117 - 11904: 0xA4AB,\n\t20120 - 11904: 0x927E,\n\t20121 - 11904: 0xA5E5,\n\t20122 - 11904: 0x9DBA,\n\t20123 - 11904: 0xA8C7,\n\t20126 - 11904: 0xA8C8,\n\t20127 - 11904: 0xAB45,\n\t20128 - 11904: 0xC6C2,\n\t20129 - 11904: 0xA460,\n\t20130 - 11904: 0xA4AE,\n\t20131 - 11904: 0x8C6F,\n\t20132 - 11904: 0xA5E6,\n\t20133 - 11904: 0xA5E8,\n\t20134 - 11904: 0xA5E7,\n\t20136 - 11904: 0xA6EB,\n\t20139 - 11904: 0xA8C9,\n\t20140 - 11904: 0xA8CA,\n\t20141 - 11904: 0xAB46,\n\t20142 - 11904: 0xAB47,\n\t20147 - 11904: 0xADBD,\n\t20150 - 11904: 0xDCB3,\n\t20151 - 11904: 0xFBF8,\n\t20153 - 11904: 0xF6D6,\n\t20154 - 11904: 0xA448,\n\t20155 - 11904: 0x8BC7,\n\t20156 - 11904: 0x926B,\n\t20159 - 11904: 0x89D2,\n\t20160 - 11904: 0xA4B0,\n\t20161 - 11904: 0xA4AF,\n\t20162 - 11904: 0xC952,\n\t20163 - 11904: 0xA4B1,\n\t20164 - 11904: 0xA4B7,\n\t20166 - 11904: 0xA4B2,\n\t20167 - 11904: 0xA4B3,\n\t20168 - 11904: 0xC954,\n\t20169 - 11904: 0xC953,\n\t20170 - 11904: 0xA4B5,\n\t20171 - 11904: 0xA4B6,\n\t20173 - 11904: 0xA4B4,\n\t20174 - 11904: 0x9FCF,\n\t20180 - 11904: 0xA54A,\n\t20181 - 11904: 0xA54B,\n\t20182 - 11904: 0xA54C,\n\t20183 - 11904: 0xA54D,\n\t20184 - 11904: 0xA549,\n\t20185 - 11904: 0xA550,\n\t20186 - 11904: 0xC96A,\n\t20188 - 11904: 0xC966,\n\t20189 - 11904: 0xC969,\n\t20190 - 11904: 0xA551,\n\t20191 - 11904: 0xA561,\n\t20193 - 11904: 0xC968,\n\t20195 - 11904: 0xA54E,\n\t20196 - 11904: 0xA54F,\n\t20197 - 11904: 0xA548,\n\t20200 - 11904: 0xC965,\n\t20201 - 11904: 0xC967,\n\t20202 - 11904: 0x9DA9,\n\t20203 - 11904: 0x89D3,\n\t20206 - 11904: 0x99E2,\n\t20208 - 11904: 0xA5F5,\n\t20209 - 11904: 0xC9B0,\n\t20210 - 11904: 0xA5F2,\n\t20211 - 11904: 0xA5F6,\n\t20212 - 11904: 0xC9BA,\n\t20213 - 11904: 0xC9AE,\n\t20214 - 11904: 0xA5F3,\n\t20215 - 11904: 0xC9B2,\n\t20216 - 11904: 0x9267,\n\t20219 - 11904: 0xA5F4,\n\t20221 - 11904: 0xA5F7,\n\t20223 - 11904: 0xA5E9,\n\t20224 - 11904: 0xC9B1,\n\t20225 - 11904: 0xA5F8,\n\t20226 - 11904: 0xC9B5,\n\t20227 - 11904: 0x92A4,\n\t20228 - 11904: 0xC9B9,\n\t20229 - 11904: 0xC9B6,\n\t20232 - 11904: 0xC9B3,\n\t20233 - 11904: 0xA5EA,\n\t20234 - 11904: 0xA5EC,\n\t20235 - 11904: 0xA5F9,\n\t20237 - 11904: 0xA5EE,\n\t20238 - 11904: 0xC9AB,\n\t20239 - 11904: 0xA5F1,\n\t20240 - 11904: 0xA5EF,\n\t20241 - 11904: 0xA5F0,\n\t20242 - 11904: 0xC9BB,\n\t20243 - 11904: 0xC9B8,\n\t20244 - 11904: 0xC9AF,\n\t20245 - 11904: 0xA5ED,\n\t20247 - 11904: 0x8C73,\n\t20248 - 11904: 0xC9AC,\n\t20249 - 11904: 0xA5EB,\n\t20250 - 11904: 0x894E,\n\t20253 - 11904: 0xC9B4,\n\t20258 - 11904: 0xC9B7,\n\t20264 - 11904: 0x894F,\n\t20265 - 11904: 0x9278,\n\t20268 - 11904: 0xC9AD,\n\t20269 - 11904: 0xCA66,\n\t20271 - 11904: 0xA742,\n\t20272 - 11904: 0xA6F4,\n\t20274 - 11904: 0x91B6,\n\t20275 - 11904: 0xCA67,\n\t20276 - 11904: 0xA6F1,\n\t20278 - 11904: 0xA744,\n\t20279 - 11904: 0x89D4,\n\t20280 - 11904: 0xA6F9,\n\t20281 - 11904: 0x9FD2,\n\t20282 - 11904: 0xA6F8,\n\t20283 - 11904: 0xCA5B,\n\t20284 - 11904: 0xA6FC,\n\t20285 - 11904: 0xA6F7,\n\t20286 - 11904: 0xCA60,\n\t20287 - 11904: 0xCA68,\n\t20289 - 11904: 0xCA64,\n\t20290 - 11904: 0x92A7,\n\t20291 - 11904: 0xA6FA,\n\t20293 - 11904: 0x95A2,\n\t20294 - 11904: 0xA6FD,\n\t20295 - 11904: 0xA6EE,\n\t20296 - 11904: 0xA747,\n\t20297 - 11904: 0xCA5D,\n\t20299 - 11904: 0x926E,\n\t20300 - 11904: 0xCBBD,\n\t20301 - 11904: 0xA6EC,\n\t20302 - 11904: 0xA743,\n\t20303 - 11904: 0xA6ED,\n\t20304 - 11904: 0xA6F5,\n\t20305 - 11904: 0xA6F6,\n\t20306 - 11904: 0xCA62,\n\t20307 - 11904: 0xCA5E,\n\t20308 - 11904: 0xA6FB,\n\t20309 - 11904: 0xA6F3,\n\t20310 - 11904: 0xCA5A,\n\t20311 - 11904: 0xA6EF,\n\t20312 - 11904: 0xCA65,\n\t20313 - 11904: 0xA745,\n\t20314 - 11904: 0xA748,\n\t20315 - 11904: 0xA6F2,\n\t20316 - 11904: 0xA740,\n\t20317 - 11904: 0xA746,\n\t20318 - 11904: 0xA6F0,\n\t20319 - 11904: 0xCA63,\n\t20320 - 11904: 0xA741,\n\t20321 - 11904: 0xCA69,\n\t20322 - 11904: 0xCA5C,\n\t20323 - 11904: 0xA6FE,\n\t20324 - 11904: 0xCA5F,\n\t20327 - 11904: 0xCA61,\n\t20329 - 11904: 0xA8D8,\n\t20330 - 11904: 0xCBBF,\n\t20331 - 11904: 0xCBCB,\n\t20332 - 11904: 0xA8D0,\n\t20334 - 11904: 0xCBCC,\n\t20335 - 11904: 0xA8CB,\n\t20336 - 11904: 0xA8D5,\n\t20338 - 11904: 0x96EA,\n\t20339 - 11904: 0xA8CE,\n\t20340 - 11904: 0xCBB9,\n\t20341 - 11904: 0xA8D6,\n\t20342 - 11904: 0xCBB8,\n\t20343 - 11904: 0xCBBC,\n\t20344 - 11904: 0xCBC3,\n\t20345 - 11904: 0xCBC1,\n\t20346 - 11904: 0xA8DE,\n\t20347 - 11904: 0xA8D9,\n\t20348 - 11904: 0xCBB3,\n\t20349 - 11904: 0xCBB5,\n\t20350 - 11904: 0xA8DB,\n\t20351 - 11904: 0xA8CF,\n\t20352 - 11904: 0xCBB6,\n\t20353 - 11904: 0xCBC2,\n\t20354 - 11904: 0xCBC9,\n\t20355 - 11904: 0xA8D4,\n\t20356 - 11904: 0xCBBB,\n\t20357 - 11904: 0xCBB4,\n\t20358 - 11904: 0xA8D3,\n\t20359 - 11904: 0xCBB7,\n\t20360 - 11904: 0xA8D7,\n\t20361 - 11904: 0xCBBA,\n\t20362 - 11904: 0x926F,\n\t20363 - 11904: 0xA8D2,\n\t20365 - 11904: 0xA8CD,\n\t20367 - 11904: 0xA8DC,\n\t20368 - 11904: 0xCBC4,\n\t20369 - 11904: 0xA8DD,\n\t20370 - 11904: 0xCBC8,\n\t20372 - 11904: 0xCBC6,\n\t20373 - 11904: 0xCBCA,\n\t20374 - 11904: 0xA8DA,\n\t20375 - 11904: 0xCBBE,\n\t20376 - 11904: 0xCBB2,\n\t20378 - 11904: 0xCBC0,\n\t20379 - 11904: 0xA8D1,\n\t20380 - 11904: 0xCBC5,\n\t20381 - 11904: 0xA8CC,\n\t20382 - 11904: 0xCBC7,\n\t20386 - 11904: 0x92A3,\n\t20392 - 11904: 0x8950,\n\t20395 - 11904: 0xFA57,\n\t20398 - 11904: 0xAB56,\n\t20399 - 11904: 0xAB4A,\n\t20400 - 11904: 0x9866,\n\t20402 - 11904: 0xCDE0,\n\t20403 - 11904: 0xCDE8,\n\t20404 - 11904: 0x8CF8,\n\t20405 - 11904: 0xAB49,\n\t20406 - 11904: 0xAB51,\n\t20407 - 11904: 0xAB5D,\n\t20409 - 11904: 0xCDEE,\n\t20410 - 11904: 0xCDEC,\n\t20411 - 11904: 0xCDE7,\n\t20413 - 11904: 0x89D6,\n\t20415 - 11904: 0xAB4B,\n\t20416 - 11904: 0xCDED,\n\t20417 - 11904: 0xCDE3,\n\t20418 - 11904: 0xAB59,\n\t20419 - 11904: 0xAB50,\n\t20420 - 11904: 0xAB58,\n\t20421 - 11904: 0xCDDE,\n\t20423 - 11904: 0xCDEA,\n\t20424 - 11904: 0x98B2,\n\t20425 - 11904: 0xCDE1,\n\t20426 - 11904: 0xAB54,\n\t20427 - 11904: 0xCDE2,\n\t20428 - 11904: 0x92AB,\n\t20429 - 11904: 0xCDDD,\n\t20430 - 11904: 0xAB5B,\n\t20431 - 11904: 0xAB4E,\n\t20432 - 11904: 0xAB57,\n\t20433 - 11904: 0xAB4D,\n\t20435 - 11904: 0xCDDF,\n\t20436 - 11904: 0xCDE4,\n\t20438 - 11904: 0xCDEB,\n\t20439 - 11904: 0xAB55,\n\t20440 - 11904: 0xAB52,\n\t20441 - 11904: 0xCDE6,\n\t20442 - 11904: 0xAB5A,\n\t20443 - 11904: 0xCDE9,\n\t20444 - 11904: 0xCDE5,\n\t20445 - 11904: 0xAB4F,\n\t20446 - 11904: 0xAB5C,\n\t20447 - 11904: 0xAB53,\n\t20448 - 11904: 0xAB4C,\n\t20449 - 11904: 0xAB48,\n\t20452 - 11904: 0x96DE,\n\t20453 - 11904: 0x92AC,\n\t20460 - 11904: 0xCDEF,\n\t20462 - 11904: 0xADD7,\n\t20463 - 11904: 0xADC1,\n\t20464 - 11904: 0x8C70,\n\t20465 - 11904: 0xADD1,\n\t20466 - 11904: 0x9F6E,\n\t20467 - 11904: 0xADD6,\n\t20468 - 11904: 0xD0D0,\n\t20469 - 11904: 0xD0CF,\n\t20470 - 11904: 0xD0D4,\n\t20471 - 11904: 0xD0D5,\n\t20472 - 11904: 0xADC4,\n\t20473 - 11904: 0x8EF2,\n\t20474 - 11904: 0xADCD,\n\t20477 - 11904: 0x9F6C,\n\t20478 - 11904: 0xADDA,\n\t20480 - 11904: 0xADCE,\n\t20483 - 11904: 0x89D8,\n\t20485 - 11904: 0xD0C9,\n\t20486 - 11904: 0xADC7,\n\t20487 - 11904: 0xD0CA,\n\t20488 - 11904: 0xFA59,\n\t20489 - 11904: 0xADDC,\n\t20491 - 11904: 0xADD3,\n\t20492 - 11904: 0xADBE,\n\t20493 - 11904: 0xADBF,\n\t20494 - 11904: 0xD0DD,\n\t20495 - 11904: 0xB0BF,\n\t20497 - 11904: 0xADCC,\n\t20498 - 11904: 0xADCB,\n\t20499 - 11904: 0xD0CB,\n\t20500 - 11904: 0xADCF,\n\t20501 - 11904: 0xD45B,\n\t20502 - 11904: 0xADC6,\n\t20503 - 11904: 0xD0D6,\n\t20504 - 11904: 0xADD5,\n\t20505 - 11904: 0xADD4,\n\t20506 - 11904: 0xADCA,\n\t20507 - 11904: 0xD0CE,\n\t20508 - 11904: 0xD0D7,\n\t20510 - 11904: 0xD0C8,\n\t20511 - 11904: 0xADC9,\n\t20512 - 11904: 0xD0D8,\n\t20513 - 11904: 0xADD2,\n\t20514 - 11904: 0xD0CC,\n\t20515 - 11904: 0xADC0,\n\t20517 - 11904: 0xADC3,\n\t20518 - 11904: 0xADC2,\n\t20519 - 11904: 0xD0D9,\n\t20520 - 11904: 0xADD0,\n\t20521 - 11904: 0xFA5F,\n\t20522 - 11904: 0xADD9,\n\t20523 - 11904: 0xADDB,\n\t20524 - 11904: 0xD0D3,\n\t20525 - 11904: 0xADD8,\n\t20526 - 11904: 0x92A8,\n\t20527 - 11904: 0xD0DB,\n\t20528 - 11904: 0xD0CD,\n\t20529 - 11904: 0xD0DC,\n\t20531 - 11904: 0xD0D1,\n\t20532 - 11904: 0x9163,\n\t20533 - 11904: 0xD0DA,\n\t20535 - 11904: 0xD0D2,\n\t20539 - 11904: 0x8C40,\n\t20540 - 11904: 0xADC8,\n\t20544 - 11904: 0xD463,\n\t20545 - 11904: 0xD457,\n\t20547 - 11904: 0xB0B3,\n\t20549 - 11904: 0xD45C,\n\t20550 - 11904: 0xD462,\n\t20551 - 11904: 0xB0B2,\n\t20552 - 11904: 0xD455,\n\t20553 - 11904: 0xB0B6,\n\t20554 - 11904: 0xD459,\n\t20555 - 11904: 0xD452,\n\t20556 - 11904: 0xB0B4,\n\t20557 - 11904: 0xD456,\n\t20558 - 11904: 0xB0B9,\n\t20559 - 11904: 0xB0BE,\n\t20561 - 11904: 0xD467,\n\t20563 - 11904: 0xD451,\n\t20565 - 11904: 0xB0BA,\n\t20566 - 11904: 0x9F73,\n\t20567 - 11904: 0xD466,\n\t20568 - 11904: 0x92AD,\n\t20570 - 11904: 0xB0B5,\n\t20571 - 11904: 0xD458,\n\t20572 - 11904: 0xB0B1,\n\t20573 - 11904: 0xD453,\n\t20574 - 11904: 0xD44F,\n\t20575 - 11904: 0xD45D,\n\t20576 - 11904: 0xD450,\n\t20577 - 11904: 0xD44E,\n\t20578 - 11904: 0xD45A,\n\t20579 - 11904: 0xD460,\n\t20580 - 11904: 0xD461,\n\t20581 - 11904: 0xB0B7,\n\t20582 - 11904: 0x9BE9,\n\t20584 - 11904: 0xD85B,\n\t20585 - 11904: 0xD45E,\n\t20586 - 11904: 0xD44D,\n\t20587 - 11904: 0xD45F,\n\t20588 - 11904: 0x92A9,\n\t20589 - 11904: 0xB0C1,\n\t20590 - 11904: 0xD464,\n\t20591 - 11904: 0xB0C0,\n\t20592 - 11904: 0xD44C,\n\t20594 - 11904: 0xD454,\n\t20595 - 11904: 0xD465,\n\t20596 - 11904: 0xB0BC,\n\t20597 - 11904: 0xB0BB,\n\t20598 - 11904: 0xB0B8,\n\t20599 - 11904: 0xB0BD,\n\t20602 - 11904: 0xB0AF,\n\t20605 - 11904: 0xFA66,\n\t20608 - 11904: 0xB3C8,\n\t20609 - 11904: 0x92AA,\n\t20610 - 11904: 0xD85E,\n\t20611 - 11904: 0xD857,\n\t20613 - 11904: 0xB3C5,\n\t20615 - 11904: 0xD85F,\n\t20616 - 11904: 0x89D9,\n\t20619 - 11904: 0xD855,\n\t20620 - 11904: 0xD858,\n\t20621 - 11904: 0xB3C4,\n\t20622 - 11904: 0xD859,\n\t20624 - 11904: 0xFD56,\n\t20625 - 11904: 0xB3C7,\n\t20626 - 11904: 0xD85D,\n\t20628 - 11904: 0xD853,\n\t20629 - 11904: 0xD852,\n\t20630 - 11904: 0xB3C9,\n\t20632 - 11904: 0xB3CA,\n\t20633 - 11904: 0xB3C6,\n\t20634 - 11904: 0xB3CB,\n\t20635 - 11904: 0xD851,\n\t20636 - 11904: 0xD85C,\n\t20637 - 11904: 0xD85A,\n\t20638 - 11904: 0xD854,\n\t20642 - 11904: 0xB3C3,\n\t20643 - 11904: 0xD856,\n\t20646 - 11904: 0x9FA8,\n\t20652 - 11904: 0xB6CA,\n\t20653 - 11904: 0xB6C4,\n\t20654 - 11904: 0xDCB7,\n\t20655 - 11904: 0xB6CD,\n\t20656 - 11904: 0xDCBD,\n\t20657 - 11904: 0xDCC0,\n\t20658 - 11904: 0xB6C6,\n\t20659 - 11904: 0xB6C7,\n\t20660 - 11904: 0xDCBA,\n\t20661 - 11904: 0xB6C5,\n\t20662 - 11904: 0xDCC3,\n\t20663 - 11904: 0xB6CB,\n\t20664 - 11904: 0xDCC4,\n\t20666 - 11904: 0xDCBF,\n\t20667 - 11904: 0xB6CC,\n\t20668 - 11904: 0x8C71,\n\t20669 - 11904: 0xDCB4,\n\t20670 - 11904: 0xB6C9,\n\t20671 - 11904: 0xDCB5,\n\t20673 - 11904: 0xDCBE,\n\t20674 - 11904: 0xDCBC,\n\t20676 - 11904: 0xDCB8,\n\t20677 - 11904: 0xB6C8,\n\t20678 - 11904: 0xDCB6,\n\t20679 - 11904: 0xB6CE,\n\t20680 - 11904: 0xDCBB,\n\t20681 - 11904: 0xDCC2,\n\t20682 - 11904: 0xDCB9,\n\t20683 - 11904: 0xDCC1,\n\t20685 - 11904: 0x92A1,\n\t20686 - 11904: 0xB9B6,\n\t20687 - 11904: 0xB9B3,\n\t20688 - 11904: 0x90E3,\n\t20689 - 11904: 0xB9B4,\n\t20691 - 11904: 0xE0F9,\n\t20692 - 11904: 0xE0F1,\n\t20693 - 11904: 0xB9B2,\n\t20694 - 11904: 0xB9AF,\n\t20695 - 11904: 0xE0F2,\n\t20697 - 11904: 0xA0A6,\n\t20698 - 11904: 0xB9B1,\n\t20699 - 11904: 0xE0F5,\n\t20701 - 11904: 0xE0F7,\n\t20703 - 11904: 0x94AB,\n\t20704 - 11904: 0xE0FE,\n\t20705 - 11904: 0xFC72,\n\t20707 - 11904: 0xE0FD,\n\t20708 - 11904: 0xE0F8,\n\t20709 - 11904: 0xB9AE,\n\t20710 - 11904: 0xE0F0,\n\t20711 - 11904: 0xB9AC,\n\t20712 - 11904: 0xE0F3,\n\t20713 - 11904: 0xB9B7,\n\t20714 - 11904: 0xE0F6,\n\t20716 - 11904: 0xE0FA,\n\t20717 - 11904: 0xB9B0,\n\t20718 - 11904: 0xB9AD,\n\t20719 - 11904: 0xE0FC,\n\t20720 - 11904: 0xE0FB,\n\t20721 - 11904: 0xB9B5,\n\t20723 - 11904: 0xE0F4,\n\t20724 - 11904: 0x97C4,\n\t20725 - 11904: 0xBBF8,\n\t20726 - 11904: 0xE4EC,\n\t20728 - 11904: 0xE4E9,\n\t20729 - 11904: 0xBBF9,\n\t20731 - 11904: 0xBBF7,\n\t20732 - 11904: 0x92AE,\n\t20733 - 11904: 0xE4F0,\n\t20734 - 11904: 0xE4ED,\n\t20735 - 11904: 0xE4E6,\n\t20736 - 11904: 0xBBF6,\n\t20737 - 11904: 0xFA67,\n\t20738 - 11904: 0xBBFA,\n\t20739 - 11904: 0xE4E7,\n\t20740 - 11904: 0xBBF5,\n\t20741 - 11904: 0xBBFD,\n\t20742 - 11904: 0xE4EA,\n\t20743 - 11904: 0xE4EB,\n\t20744 - 11904: 0xBBFB,\n\t20745 - 11904: 0xBBFC,\n\t20746 - 11904: 0xE4F1,\n\t20747 - 11904: 0xE4EE,\n\t20748 - 11904: 0xE4EF,\n\t20749 - 11904: 0x92A2,\n\t20750 - 11904: 0xFA69,\n\t20752 - 11904: 0xBEAA,\n\t20753 - 11904: 0xE8F8,\n\t20754 - 11904: 0xBEA7,\n\t20755 - 11904: 0xE8F5,\n\t20756 - 11904: 0xBEA9,\n\t20757 - 11904: 0xBEAB,\n\t20759 - 11904: 0xE8F6,\n\t20760 - 11904: 0xBEA8,\n\t20762 - 11904: 0xE8F7,\n\t20764 - 11904: 0xE8F4,\n\t20767 - 11904: 0xC076,\n\t20768 - 11904: 0xECBD,\n\t20769 - 11904: 0xC077,\n\t20770 - 11904: 0xECBB,\n\t20772 - 11904: 0xECBC,\n\t20773 - 11904: 0xECBA,\n\t20774 - 11904: 0xECB9,\n\t20777 - 11904: 0xECBE,\n\t20778 - 11904: 0xC075,\n\t20779 - 11904: 0x9268,\n\t20781 - 11904: 0xEFB8,\n\t20782 - 11904: 0xEFB9,\n\t20784 - 11904: 0xE4E8,\n\t20785 - 11904: 0xEFB7,\n\t20786 - 11904: 0xC078,\n\t20787 - 11904: 0xC35F,\n\t20788 - 11904: 0xF1EB,\n\t20789 - 11904: 0xF1EC,\n\t20791 - 11904: 0xC4D7,\n\t20792 - 11904: 0xC4D8,\n\t20793 - 11904: 0xF5C1,\n\t20794 - 11904: 0xF5C0,\n\t20795 - 11904: 0xC56C,\n\t20796 - 11904: 0xC56B,\n\t20797 - 11904: 0xF7D0,\n\t20799 - 11904: 0xA449,\n\t20800 - 11904: 0xA461,\n\t20801 - 11904: 0xA4B9,\n\t20803 - 11904: 0xA4B8,\n\t20804 - 11904: 0xA553,\n\t20805 - 11904: 0xA552,\n\t20806 - 11904: 0xA5FC,\n\t20807 - 11904: 0xA5FB,\n\t20808 - 11904: 0xA5FD,\n\t20809 - 11904: 0xA5FA,\n\t20811 - 11904: 0xA74A,\n\t20812 - 11904: 0xA749,\n\t20813 - 11904: 0xA74B,\n\t20818 - 11904: 0xA8E0,\n\t20820 - 11904: 0xA8DF,\n\t20821 - 11904: 0xA8E1,\n\t20822 - 11904: 0x8951,\n\t20823 - 11904: 0xAB5E,\n\t20825 - 11904: 0xA259,\n\t20826 - 11904: 0xD0DE,\n\t20827 - 11904: 0xA25A,\n\t20828 - 11904: 0xB0C2,\n\t20829 - 11904: 0xA25C,\n\t20830 - 11904: 0xA25B,\n\t20831 - 11904: 0xD860,\n\t20832 - 11904: 0xFA6F,\n\t20833 - 11904: 0xA25D,\n\t20834 - 11904: 0xB9B8,\n\t20835 - 11904: 0xA25E,\n\t20837 - 11904: 0xA44A,\n\t20839 - 11904: 0xA4BA,\n\t20840 - 11904: 0xA5FE,\n\t20841 - 11904: 0xA8E2,\n\t20842 - 11904: 0xFA71,\n\t20843 - 11904: 0xA44B,\n\t20844 - 11904: 0xA4BD,\n\t20845 - 11904: 0xA4BB,\n\t20846 - 11904: 0xA4BC,\n\t20849 - 11904: 0xA640,\n\t20852 - 11904: 0x8952,\n\t20853 - 11904: 0xA74C,\n\t20854 - 11904: 0xA8E4,\n\t20855 - 11904: 0xA8E3,\n\t20856 - 11904: 0xA8E5,\n\t20857 - 11904: 0x945A,\n\t20860 - 11904: 0xADDD,\n\t20864 - 11904: 0xBEAC,\n\t20866 - 11904: 0xC6C3,\n\t20870 - 11904: 0x89DD,\n\t20871 - 11904: 0xC94E,\n\t20872 - 11904: 0xC8A2,\n\t20873 - 11904: 0xA554,\n\t20874 - 11904: 0xA555,\n\t20877 - 11904: 0xA641,\n\t20879 - 11904: 0xCA6A,\n\t20881 - 11904: 0xAB60,\n\t20882 - 11904: 0xAB5F,\n\t20883 - 11904: 0xD0E0,\n\t20884 - 11904: 0xD0DF,\n\t20885 - 11904: 0xB0C3,\n\t20886 - 11904: 0xC6C4,\n\t20887 - 11904: 0xA4BE,\n\t20888 - 11904: 0xC955,\n\t20890 - 11904: 0x9E52,\n\t20892 - 11904: 0x8953,\n\t20894 - 11904: 0xCBCD,\n\t20896 - 11904: 0xAB61,\n\t20898 - 11904: 0xADE0,\n\t20900 - 11904: 0xADDE,\n\t20901 - 11904: 0xADDF,\n\t20903 - 11904: 0x9E55,\n\t20904 - 11904: 0x92BA,\n\t20906 - 11904: 0xBEAD,\n\t20907 - 11904: 0xC6C5,\n\t20908 - 11904: 0xA556,\n\t20910 - 11904: 0x8C5B,\n\t20912 - 11904: 0xA642,\n\t20913 - 11904: 0xC9BC,\n\t20914 - 11904: 0xFA7D,\n\t20915 - 11904: 0xFAA8,\n\t20916 - 11904: 0x9A68,\n\t20917 - 11904: 0xFA47,\n\t20918 - 11904: 0xA74D,\n\t20919 - 11904: 0xA74E,\n\t20920 - 11904: 0xFA7E,\n\t20921 - 11904: 0xCA6B,\n\t20924 - 11904: 0xCBCE,\n\t20925 - 11904: 0xA8E6,\n\t20926 - 11904: 0xCBCF,\n\t20931 - 11904: 0x92BB,\n\t20932 - 11904: 0xD0E2,\n\t20933 - 11904: 0xD0E3,\n\t20934 - 11904: 0xADE3,\n\t20935 - 11904: 0xFDB6,\n\t20936 - 11904: 0xD0E4,\n\t20937 - 11904: 0xFAA2,\n\t20938 - 11904: 0xD0E1,\n\t20939 - 11904: 0xADE4,\n\t20940 - 11904: 0xADE2,\n\t20941 - 11904: 0xADE1,\n\t20942 - 11904: 0xD0E5,\n\t20943 - 11904: 0xFAA3,\n\t20944 - 11904: 0xD468,\n\t20945 - 11904: 0xFAA4,\n\t20946 - 11904: 0x9BB4,\n\t20947 - 11904: 0xFAA6,\n\t20948 - 11904: 0xD861,\n\t20951 - 11904: 0xDCC5,\n\t20952 - 11904: 0xE140,\n\t20955 - 11904: 0x89DF,\n\t20956 - 11904: 0xBBFE,\n\t20957 - 11904: 0xBEAE,\n\t20958 - 11904: 0xE8F9,\n\t20959 - 11904: 0xFDDB,\n\t20960 - 11904: 0xA44C,\n\t20961 - 11904: 0xA45A,\n\t20962 - 11904: 0xFAA9,\n\t20964 - 11904: 0x8954,\n\t20973 - 11904: 0xFAAB,\n\t20976 - 11904: 0xB0C4,\n\t20977 - 11904: 0xB3CD,\n\t20979 - 11904: 0xB9B9,\n\t20980 - 11904: 0xFC7A,\n\t20981 - 11904: 0xC942,\n\t20982 - 11904: 0xA4BF,\n\t20984 - 11904: 0xA559,\n\t20985 - 11904: 0xA557,\n\t20986 - 11904: 0xA558,\n\t20988 - 11904: 0x89E0,\n\t20989 - 11904: 0xA8E7,\n\t20990 - 11904: 0x9F4F,\n\t20992 - 11904: 0xA44D,\n\t20993 - 11904: 0xA44E,\n\t20994 - 11904: 0xC87D,\n\t20995 - 11904: 0xA462,\n\t20997 - 11904: 0x89E1,\n\t20998 - 11904: 0xA4C0,\n\t20999 - 11904: 0xA4C1,\n\t21000 - 11904: 0xA4C2,\n\t21001 - 11904: 0xC9BE,\n\t21002 - 11904: 0xA55A,\n\t21003 - 11904: 0xFAB0,\n\t21004 - 11904: 0xC96B,\n\t21006 - 11904: 0xA646,\n\t21008 - 11904: 0xC9BF,\n\t21009 - 11904: 0xA644,\n\t21010 - 11904: 0xA645,\n\t21011 - 11904: 0xC9BD,\n\t21014 - 11904: 0xA647,\n\t21015 - 11904: 0xA643,\n\t21020 - 11904: 0xCA6C,\n\t21021 - 11904: 0xAAEC,\n\t21022 - 11904: 0xCA6D,\n\t21023 - 11904: 0x9FCD,\n\t21024 - 11904: 0xA0E7,\n\t21025 - 11904: 0xCA6E,\n\t21028 - 11904: 0xA750,\n\t21029 - 11904: 0xA74F,\n\t21030 - 11904: 0xFAB1,\n\t21031 - 11904: 0x89A6,\n\t21032 - 11904: 0xA753,\n\t21033 - 11904: 0xA751,\n\t21034 - 11904: 0xA752,\n\t21038 - 11904: 0xA8ED,\n\t21040 - 11904: 0xA8EC,\n\t21041 - 11904: 0xCBD4,\n\t21042 - 11904: 0xCBD1,\n\t21043 - 11904: 0xCBD2,\n\t21044 - 11904: 0x9EFA,\n\t21045 - 11904: 0xCBD0,\n\t21046 - 11904: 0xA8EE,\n\t21047 - 11904: 0xA8EA,\n\t21048 - 11904: 0xA8E9,\n\t21050 - 11904: 0xA8EB,\n\t21051 - 11904: 0xA8E8,\n\t21052 - 11904: 0xFAB2,\n\t21057 - 11904: 0xA8EF,\n\t21059 - 11904: 0xAB63,\n\t21060 - 11904: 0xCDF0,\n\t21062 - 11904: 0xCBD3,\n\t21063 - 11904: 0xAB68,\n\t21065 - 11904: 0xCDF1,\n\t21066 - 11904: 0xAB64,\n\t21067 - 11904: 0xAB67,\n\t21068 - 11904: 0xAB66,\n\t21069 - 11904: 0xAB65,\n\t21070 - 11904: 0xAB62,\n\t21071 - 11904: 0x87BC,\n\t21074 - 11904: 0xD0E8,\n\t21076 - 11904: 0xADE7,\n\t21077 - 11904: 0xD0EB,\n\t21078 - 11904: 0xADE5,\n\t21079 - 11904: 0xFAB4,\n\t21081 - 11904: 0x92C4,\n\t21082 - 11904: 0xD0E7,\n\t21083 - 11904: 0xADE8,\n\t21084 - 11904: 0xADE6,\n\t21085 - 11904: 0xADE9,\n\t21086 - 11904: 0xD0E9,\n\t21087 - 11904: 0xD0EA,\n\t21088 - 11904: 0x9F6F,\n\t21089 - 11904: 0xD0E6,\n\t21090 - 11904: 0xD0EC,\n\t21096 - 11904: 0x8BB0,\n\t21097 - 11904: 0xB3D1,\n\t21098 - 11904: 0xB0C5,\n\t21099 - 11904: 0xD469,\n\t21100 - 11904: 0xD46B,\n\t21101 - 11904: 0xD46A,\n\t21102 - 11904: 0xD46C,\n\t21103 - 11904: 0xB0C6,\n\t21106 - 11904: 0xB3CE,\n\t21107 - 11904: 0x9FAC,\n\t21108 - 11904: 0xB3CF,\n\t21109 - 11904: 0xB3D0,\n\t21111 - 11904: 0xB6D0,\n\t21112 - 11904: 0xDCC7,\n\t21113 - 11904: 0x89E3,\n\t21114 - 11904: 0xDCC6,\n\t21115 - 11904: 0xDCC8,\n\t21116 - 11904: 0xDCC9,\n\t21117 - 11904: 0xB6D1,\n\t21119 - 11904: 0xB6CF,\n\t21120 - 11904: 0xE141,\n\t21121 - 11904: 0xE142,\n\t21122 - 11904: 0xB9BB,\n\t21123 - 11904: 0xB9BA,\n\t21124 - 11904: 0xE35A,\n\t21127 - 11904: 0xBC40,\n\t21128 - 11904: 0xBC41,\n\t21129 - 11904: 0xBC42,\n\t21130 - 11904: 0xBC44,\n\t21131 - 11904: 0xE4F2,\n\t21132 - 11904: 0xE4F3,\n\t21133 - 11904: 0xBC43,\n\t21135 - 11904: 0x9BD3,\n\t21136 - 11904: 0x89E4,\n\t21137 - 11904: 0xBEAF,\n\t21139 - 11904: 0xBEB0,\n\t21140 - 11904: 0xFAB5,\n\t21142 - 11904: 0xF1ED,\n\t21143 - 11904: 0xF5C3,\n\t21144 - 11904: 0xF5C2,\n\t21145 - 11904: 0xF7D1,\n\t21146 - 11904: 0x9FD5,\n\t21147 - 11904: 0xA44F,\n\t21151 - 11904: 0xA55C,\n\t21152 - 11904: 0xA55B,\n\t21153 - 11904: 0x8955,\n\t21155 - 11904: 0xA648,\n\t21156 - 11904: 0x92C5,\n\t21158 - 11904: 0xC9C0,\n\t21160 - 11904: 0x8956,\n\t21161 - 11904: 0xA755,\n\t21162 - 11904: 0xA756,\n\t21163 - 11904: 0xA754,\n\t21164 - 11904: 0xA757,\n\t21165 - 11904: 0xCA6F,\n\t21166 - 11904: 0xCA70,\n\t21173 - 11904: 0xFAB3,\n\t21177 - 11904: 0xFAB6,\n\t21179 - 11904: 0xA8F1,\n\t21180 - 11904: 0xCBD5,\n\t21182 - 11904: 0xA8F0,\n\t21184 - 11904: 0xCDF2,\n\t21185 - 11904: 0xAB6C,\n\t21186 - 11904: 0xCDF3,\n\t21187 - 11904: 0xAB6B,\n\t21189 - 11904: 0xFAB7,\n\t21191 - 11904: 0xAB69,\n\t21193 - 11904: 0xAB6A,\n\t21196 - 11904: 0x9EDC,\n\t21197 - 11904: 0xD0ED,\n\t21200 - 11904: 0xFBC4,\n\t21201 - 11904: 0x9F71,\n\t21202 - 11904: 0xB0C7,\n\t21203 - 11904: 0xD46E,\n\t21205 - 11904: 0xB0CA,\n\t21206 - 11904: 0xD46D,\n\t21207 - 11904: 0xB1E5,\n\t21208 - 11904: 0xB0C9,\n\t21209 - 11904: 0xB0C8,\n\t21211 - 11904: 0xB3D4,\n\t21213 - 11904: 0xB3D3,\n\t21214 - 11904: 0xB3D2,\n\t21215 - 11904: 0xB6D2,\n\t21216 - 11904: 0xFABA,\n\t21217 - 11904: 0x92C7,\n\t21218 - 11904: 0xB6D5,\n\t21219 - 11904: 0xB6D6,\n\t21220 - 11904: 0xB6D4,\n\t21222 - 11904: 0xB6D3,\n\t21225 - 11904: 0xE143,\n\t21227 - 11904: 0xE144,\n\t21231 - 11904: 0xE4F5,\n\t21232 - 11904: 0xBC45,\n\t21233 - 11904: 0xE4F4,\n\t21235 - 11904: 0xBEB1,\n\t21236 - 11904: 0xECBF,\n\t21237 - 11904: 0xC079,\n\t21239 - 11904: 0xF1EE,\n\t21240 - 11904: 0xC455,\n\t21241 - 11904: 0xC6C6,\n\t21242 - 11904: 0xA463,\n\t21243 - 11904: 0xA4C3,\n\t21244 - 11904: 0xC956,\n\t21246 - 11904: 0xA4C4,\n\t21247 - 11904: 0xA4C5,\n\t21249 - 11904: 0x9A4C,\n\t21253 - 11904: 0xFABD,\n\t21254 - 11904: 0xA55E,\n\t21256 - 11904: 0xA649,\n\t21257 - 11904: 0xCA71,\n\t21258 - 11904: 0xCBD6,\n\t21259 - 11904: 0xCBD7,\n\t21261 - 11904: 0xAB6D,\n\t21262 - 11904: 0xD0EE,\n\t21263 - 11904: 0xB0CC,\n\t21264 - 11904: 0xB0CB,\n\t21265 - 11904: 0xD863,\n\t21266 - 11904: 0xD862,\n\t21269 - 11904: 0xA450,\n\t21270 - 11904: 0xA4C6,\n\t21271 - 11904: 0xA55F,\n\t21273 - 11904: 0xB0CD,\n\t21274 - 11904: 0xC943,\n\t21276 - 11904: 0xC96C,\n\t21277 - 11904: 0xA560,\n\t21279 - 11904: 0xC9C2,\n\t21280 - 11904: 0xA64B,\n\t21281 - 11904: 0xA64A,\n\t21282 - 11904: 0xC9C1,\n\t21283 - 11904: 0xA758,\n\t21284 - 11904: 0x8C68,\n\t21287 - 11904: 0x89E5,\n\t21290 - 11904: 0xADEA,\n\t21292 - 11904: 0x9F7D,\n\t21293 - 11904: 0xD46F,\n\t21295 - 11904: 0xB6D7,\n\t21296 - 11904: 0xE145,\n\t21297 - 11904: 0xB9BC,\n\t21298 - 11904: 0xA0A9,\n\t21299 - 11904: 0xFAC4,\n\t21300 - 11904: 0xE8FA,\n\t21303 - 11904: 0xF3FD,\n\t21304 - 11904: 0xC6C7,\n\t21305 - 11904: 0xA4C7,\n\t21307 - 11904: 0x8957,\n\t21308 - 11904: 0xCBD8,\n\t21309 - 11904: 0xCDF4,\n\t21310 - 11904: 0xB0D0,\n\t21311 - 11904: 0xB0CE,\n\t21312 - 11904: 0xB0CF,\n\t21313 - 11904: 0xA451,\n\t21314 - 11904: 0xFAAA,\n\t21315 - 11904: 0xA464,\n\t21316 - 11904: 0xFAC5,\n\t21317 - 11904: 0xA4CA,\n\t21319 - 11904: 0xA4C9,\n\t21320 - 11904: 0xA4C8,\n\t21321 - 11904: 0xA563,\n\t21322 - 11904: 0xA562,\n\t21324 - 11904: 0xC96D,\n\t21325 - 11904: 0xC9C3,\n\t21326 - 11904: 0x8958,\n\t21329 - 11904: 0xA8F5,\n\t21330 - 11904: 0xA8F2,\n\t21331 - 11904: 0xA8F4,\n\t21332 - 11904: 0xA8F3,\n\t21335 - 11904: 0xAB6E,\n\t21338 - 11904: 0xB3D5,\n\t21340 - 11904: 0xA452,\n\t21341 - 11904: 0x8BE3,\n\t21342 - 11904: 0xA4CB,\n\t21343 - 11904: 0x8B61,\n\t21344 - 11904: 0xA565,\n\t21345 - 11904: 0xA564,\n\t21347 - 11904: 0xCA72,\n\t21348 - 11904: 0x9AF1,\n\t21350 - 11904: 0xA8F6,\n\t21351 - 11904: 0x9EB7,\n\t21353 - 11904: 0xC6C8,\n\t21356 - 11904: 0xC957,\n\t21357 - 11904: 0xFAD1,\n\t21358 - 11904: 0xA567,\n\t21359 - 11904: 0xA566,\n\t21360 - 11904: 0xA64C,\n\t21361 - 11904: 0xA64D,\n\t21362 - 11904: 0xCA73,\n\t21363 - 11904: 0xA759,\n\t21364 - 11904: 0xFAD2,\n\t21365 - 11904: 0xA75A,\n\t21367 - 11904: 0xA8F7,\n\t21368 - 11904: 0xA8F8,\n\t21369 - 11904: 0xA8F9,\n\t21371 - 11904: 0xAB6F,\n\t21372 - 11904: 0xCDF5,\n\t21373 - 11904: 0x9EBA,\n\t21374 - 11904: 0xFAD4,\n\t21375 - 11904: 0xFAD5,\n\t21378 - 11904: 0xC944,\n\t21380 - 11904: 0xA4CC,\n\t21386 - 11904: 0xC9C4,\n\t21390 - 11904: 0xCA74,\n\t21391 - 11904: 0xCA75,\n\t21394 - 11904: 0xCBD9,\n\t21395 - 11904: 0xFAD9,\n\t21396 - 11904: 0xCBDA,\n\t21398 - 11904: 0xCDF7,\n\t21399 - 11904: 0xCDF6,\n\t21400 - 11904: 0xCDF9,\n\t21401 - 11904: 0xCDF8,\n\t21402 - 11904: 0xAB70,\n\t21404 - 11904: 0xD470,\n\t21405 - 11904: 0xADED,\n\t21406 - 11904: 0xD0EF,\n\t21407 - 11904: 0xADEC,\n\t21408 - 11904: 0xFADB,\n\t21410 - 11904: 0x9CE0,\n\t21412 - 11904: 0xD864,\n\t21413 - 11904: 0xB3D6,\n\t21414 - 11904: 0xFBF7,\n\t21415 - 11904: 0xD865,\n\t21416 - 11904: 0xFBFA,\n\t21417 - 11904: 0x89E7,\n\t21418 - 11904: 0xA07A,\n\t21419 - 11904: 0xFADC,\n\t21420 - 11904: 0xE146,\n\t21421 - 11904: 0xB9BD,\n\t21422 - 11904: 0xFADD,\n\t21424 - 11904: 0x89E9,\n\t21426 - 11904: 0xBC46,\n\t21428 - 11904: 0xF1EF,\n\t21430 - 11904: 0xC6C9,\n\t21433 - 11904: 0xC958,\n\t21435 - 11904: 0xA568,\n\t21441 - 11904: 0xFAE2,\n\t21442 - 11904: 0x89EB,\n\t21443 - 11904: 0xB0D1,\n\t21445 - 11904: 0xFAE3,\n\t21448 - 11904: 0xA453,\n\t21449 - 11904: 0xA465,\n\t21450 - 11904: 0xA4CE,\n\t21451 - 11904: 0xA4CD,\n\t21452 - 11904: 0x90C8,\n\t21453 - 11904: 0xA4CF,\n\t21456 - 11904: 0x92DA,\n\t21457 - 11904: 0x8959,\n\t21458 - 11904: 0x9CF5,\n\t21460 - 11904: 0xA8FB,\n\t21462 - 11904: 0xA8FA,\n\t21463 - 11904: 0xA8FC,\n\t21464 - 11904: 0x895A,\n\t21465 - 11904: 0xFAE7,\n\t21466 - 11904: 0x9FA2,\n\t21467 - 11904: 0xAB71,\n\t21471 - 11904: 0xADEE,\n\t21472 - 11904: 0xFAEA,\n\t21473 - 11904: 0xE8FB,\n\t21474 - 11904: 0xC24F,\n\t21475 - 11904: 0xA466,\n\t21476 - 11904: 0xA56A,\n\t21477 - 11904: 0xA579,\n\t21478 - 11904: 0xA574,\n\t21480 - 11904: 0xA56F,\n\t21481 - 11904: 0xA56E,\n\t21482 - 11904: 0xA575,\n\t21483 - 11904: 0xA573,\n\t21484 - 11904: 0xA56C,\n\t21485 - 11904: 0xA57A,\n\t21486 - 11904: 0xA56D,\n\t21487 - 11904: 0xA569,\n\t21488 - 11904: 0xA578,\n\t21489 - 11904: 0xA577,\n\t21490 - 11904: 0xA576,\n\t21491 - 11904: 0xA56B,\n\t21493 - 11904: 0xA572,\n\t21494 - 11904: 0xFAED,\n\t21495 - 11904: 0x8FAD,\n\t21496 - 11904: 0xA571,\n\t21499 - 11904: 0xA57B,\n\t21500 - 11904: 0xA570,\n\t21502 - 11904: 0xFB59,\n\t21505 - 11904: 0xA653,\n\t21507 - 11904: 0xA659,\n\t21508 - 11904: 0xA655,\n\t21510 - 11904: 0xA65B,\n\t21511 - 11904: 0xC9C5,\n\t21512 - 11904: 0xA658,\n\t21513 - 11904: 0xA64E,\n\t21514 - 11904: 0xA651,\n\t21515 - 11904: 0xA654,\n\t21516 - 11904: 0xA650,\n\t21517 - 11904: 0xA657,\n\t21518 - 11904: 0xA65A,\n\t21519 - 11904: 0xA64F,\n\t21520 - 11904: 0xA652,\n\t21521 - 11904: 0xA656,\n\t21522 - 11904: 0xA65C,\n\t21523 - 11904: 0xFAEF,\n\t21524 - 11904: 0x96EF,\n\t21526 - 11904: 0x9DEC,\n\t21528 - 11904: 0xCA7E,\n\t21529 - 11904: 0xCA7B,\n\t21530 - 11904: 0x9DCA,\n\t21531 - 11904: 0xA767,\n\t21532 - 11904: 0xCA7C,\n\t21533 - 11904: 0xA75B,\n\t21534 - 11904: 0xA75D,\n\t21535 - 11904: 0xA775,\n\t21536 - 11904: 0xA770,\n\t21537 - 11904: 0xFD6D,\n\t21539 - 11904: 0x89EC,\n\t21540 - 11904: 0xCAA5,\n\t21541 - 11904: 0xCA7D,\n\t21542 - 11904: 0xA75F,\n\t21543 - 11904: 0xA761,\n\t21544 - 11904: 0xCAA4,\n\t21545 - 11904: 0xA768,\n\t21546 - 11904: 0xCA78,\n\t21547 - 11904: 0xA774,\n\t21548 - 11904: 0xA776,\n\t21549 - 11904: 0xA75C,\n\t21550 - 11904: 0xA76D,\n\t21551 - 11904: 0xFB44,\n\t21552 - 11904: 0xCA76,\n\t21553 - 11904: 0xA773,\n\t21554 - 11904: 0x9DE2,\n\t21555 - 11904: 0xA764,\n\t21556 - 11904: 0x8C75,\n\t21557 - 11904: 0xA76E,\n\t21558 - 11904: 0xA76F,\n\t21559 - 11904: 0xCA77,\n\t21560 - 11904: 0xA76C,\n\t21561 - 11904: 0xA76A,\n\t21563 - 11904: 0xA76B,\n\t21564 - 11904: 0xA771,\n\t21565 - 11904: 0xCAA1,\n\t21566 - 11904: 0xA75E,\n\t21568 - 11904: 0xA772,\n\t21569 - 11904: 0xCAA3,\n\t21570 - 11904: 0xA766,\n\t21571 - 11904: 0xA763,\n\t21573 - 11904: 0xCA7A,\n\t21574 - 11904: 0xA762,\n\t21575 - 11904: 0xCAA6,\n\t21576 - 11904: 0xA765,\n\t21578 - 11904: 0xA769,\n\t21579 - 11904: 0x9EC0,\n\t21580 - 11904: 0x87C5,\n\t21581 - 11904: 0x9E56,\n\t21582 - 11904: 0xA760,\n\t21583 - 11904: 0xCAA2,\n\t21588 - 11904: 0xCA79,\n\t21600 - 11904: 0xCBEB,\n\t21601 - 11904: 0xCBEA,\n\t21602 - 11904: 0xA94F,\n\t21603 - 11904: 0xCBED,\n\t21604 - 11904: 0xCBEF,\n\t21605 - 11904: 0xCBE4,\n\t21606 - 11904: 0xCBE7,\n\t21607 - 11904: 0xCBEE,\n\t21608 - 11904: 0xA950,\n\t21609 - 11904: 0x9F79,\n\t21610 - 11904: 0x9AC7,\n\t21611 - 11904: 0xCBE1,\n\t21612 - 11904: 0xCBE5,\n\t21613 - 11904: 0xFAF4,\n\t21615 - 11904: 0xCBE9,\n\t21616 - 11904: 0xCE49,\n\t21617 - 11904: 0xA94B,\n\t21618 - 11904: 0xCE4D,\n\t21619 - 11904: 0xA8FD,\n\t21620 - 11904: 0xCBE6,\n\t21621 - 11904: 0xA8FE,\n\t21622 - 11904: 0xA94C,\n\t21623 - 11904: 0xA945,\n\t21624 - 11904: 0xA941,\n\t21626 - 11904: 0xCBE2,\n\t21627 - 11904: 0xA944,\n\t21628 - 11904: 0xA949,\n\t21629 - 11904: 0xA952,\n\t21630 - 11904: 0xCBE3,\n\t21631 - 11904: 0xCBDC,\n\t21632 - 11904: 0xA943,\n\t21633 - 11904: 0xCBDD,\n\t21634 - 11904: 0xCBDF,\n\t21636 - 11904: 0xA946,\n\t21637 - 11904: 0x98A1,\n\t21638 - 11904: 0xA948,\n\t21639 - 11904: 0xCBDB,\n\t21640 - 11904: 0xCBE0,\n\t21643 - 11904: 0xA951,\n\t21644 - 11904: 0xA94D,\n\t21645 - 11904: 0xCBE8,\n\t21646 - 11904: 0xA953,\n\t21647 - 11904: 0xFAF8,\n\t21648 - 11904: 0xA94A,\n\t21649 - 11904: 0xCBDE,\n\t21650 - 11904: 0xA947,\n\t21651 - 11904: 0x89F0,\n\t21652 - 11904: 0x9E47,\n\t21653 - 11904: 0xA942,\n\t21654 - 11904: 0xA940,\n\t21655 - 11904: 0x9DF7,\n\t21656 - 11904: 0xCBEC,\n\t21658 - 11904: 0xA94E,\n\t21660 - 11904: 0x9FD3,\n\t21662 - 11904: 0x9ACA,\n\t21664 - 11904: 0xCE48,\n\t21665 - 11904: 0xCDFB,\n\t21666 - 11904: 0xCE4B,\n\t21667 - 11904: 0x89F1,\n\t21668 - 11904: 0xFAF9,\n\t21669 - 11904: 0xCDFD,\n\t21670 - 11904: 0xAB78,\n\t21671 - 11904: 0xABA8,\n\t21672 - 11904: 0xAB74,\n\t21673 - 11904: 0xABA7,\n\t21674 - 11904: 0xAB7D,\n\t21675 - 11904: 0xABA4,\n\t21676 - 11904: 0xAB72,\n\t21677 - 11904: 0xCDFC,\n\t21678 - 11904: 0xCE43,\n\t21679 - 11904: 0xABA3,\n\t21680 - 11904: 0xCE4F,\n\t21681 - 11904: 0xABA5,\n\t21682 - 11904: 0x8E5A,\n\t21683 - 11904: 0xAB79,\n\t21684 - 11904: 0x89F2,\n\t21686 - 11904: 0xCE45,\n\t21687 - 11904: 0xCE42,\n\t21688 - 11904: 0xAB77,\n\t21689 - 11904: 0x89F3,\n\t21690 - 11904: 0xCDFA,\n\t21691 - 11904: 0xABA6,\n\t21692 - 11904: 0xCE4A,\n\t21693 - 11904: 0xAB7C,\n\t21694 - 11904: 0xCE4C,\n\t21695 - 11904: 0xABA9,\n\t21696 - 11904: 0xAB73,\n\t21697 - 11904: 0xAB7E,\n\t21698 - 11904: 0xAB7B,\n\t21699 - 11904: 0xCE40,\n\t21700 - 11904: 0xABA1,\n\t21701 - 11904: 0xCE46,\n\t21702 - 11904: 0xCE47,\n\t21703 - 11904: 0xAB7A,\n\t21704 - 11904: 0xABA2,\n\t21705 - 11904: 0xAB76,\n\t21707 - 11904: 0x925D,\n\t21708 - 11904: 0x8B51,\n\t21709 - 11904: 0x92E0,\n\t21710 - 11904: 0xAB75,\n\t21711 - 11904: 0xCDFE,\n\t21712 - 11904: 0x89F4,\n\t21718 - 11904: 0xCE44,\n\t21722 - 11904: 0x9FD4,\n\t21726 - 11904: 0xCE4E,\n\t21728 - 11904: 0xD144,\n\t21729 - 11904: 0xADFB,\n\t21730 - 11904: 0xD0F1,\n\t21731 - 11904: 0x8A79,\n\t21732 - 11904: 0xD0F6,\n\t21733 - 11904: 0xADF4,\n\t21734 - 11904: 0xAE40,\n\t21735 - 11904: 0xD0F4,\n\t21736 - 11904: 0xADEF,\n\t21737 - 11904: 0xADF9,\n\t21738 - 11904: 0xADFE,\n\t21739 - 11904: 0xD0FB,\n\t21741 - 11904: 0xADFA,\n\t21742 - 11904: 0xADFD,\n\t21743 - 11904: 0x89F5,\n\t21745 - 11904: 0xD0FE,\n\t21746 - 11904: 0xADF5,\n\t21747 - 11904: 0xD0F5,\n\t21751 - 11904: 0xD142,\n\t21752 - 11904: 0xD143,\n\t21754 - 11904: 0xADF7,\n\t21755 - 11904: 0xD141,\n\t21756 - 11904: 0xADF3,\n\t21757 - 11904: 0xAE43,\n\t21759 - 11904: 0xD0F8,\n\t21761 - 11904: 0xADF1,\n\t21762 - 11904: 0x97A7,\n\t21763 - 11904: 0xD146,\n\t21764 - 11904: 0xD0F9,\n\t21765 - 11904: 0xD0FD,\n\t21766 - 11904: 0xADF6,\n\t21767 - 11904: 0xAE42,\n\t21768 - 11904: 0xD0FA,\n\t21769 - 11904: 0xADFC,\n\t21770 - 11904: 0xD140,\n\t21771 - 11904: 0xD147,\n\t21772 - 11904: 0xD4A1,\n\t21773 - 11904: 0x93BA,\n\t21774 - 11904: 0xD145,\n\t21775 - 11904: 0xAE44,\n\t21776 - 11904: 0xADF0,\n\t21777 - 11904: 0xD0FC,\n\t21778 - 11904: 0xD0F3,\n\t21779 - 11904: 0x9E58,\n\t21780 - 11904: 0xADF8,\n\t21783 - 11904: 0xD0F2,\n\t21784 - 11904: 0x89F6,\n\t21786 - 11904: 0xD0F7,\n\t21790 - 11904: 0x9E57,\n\t21795 - 11904: 0x89F7,\n\t21797 - 11904: 0x8A41,\n\t21798 - 11904: 0xD0F0,\n\t21799 - 11904: 0xAE41,\n\t21800 - 11904: 0x89F8,\n\t21802 - 11904: 0xD477,\n\t21803 - 11904: 0xFAF1,\n\t21804 - 11904: 0xB0E4,\n\t21805 - 11904: 0xD4A7,\n\t21806 - 11904: 0xB0E2,\n\t21807 - 11904: 0xB0DF,\n\t21808 - 11904: 0xD47C,\n\t21809 - 11904: 0xB0DB,\n\t21810 - 11904: 0xD4A2,\n\t21811 - 11904: 0xB0E6,\n\t21812 - 11904: 0xD476,\n\t21813 - 11904: 0xD47B,\n\t21814 - 11904: 0xD47A,\n\t21815 - 11904: 0xADF2,\n\t21816 - 11904: 0xB0E1,\n\t21817 - 11904: 0xD4A5,\n\t21819 - 11904: 0xD4A8,\n\t21820 - 11904: 0xD473,\n\t21822 - 11904: 0xB3E8,\n\t21823 - 11904: 0x89FA,\n\t21824 - 11904: 0xD4A9,\n\t21825 - 11904: 0xB0E7,\n\t21827 - 11904: 0xB0D9,\n\t21828 - 11904: 0xB0D6,\n\t21829 - 11904: 0xD47E,\n\t21830 - 11904: 0xB0D3,\n\t21831 - 11904: 0xFB42,\n\t21832 - 11904: 0xD4A6,\n\t21833 - 11904: 0xFABF,\n\t21834 - 11904: 0xB0DA,\n\t21835 - 11904: 0xD4AA,\n\t21837 - 11904: 0xD474,\n\t21838 - 11904: 0xD4A4,\n\t21839 - 11904: 0xB0DD,\n\t21840 - 11904: 0xD475,\n\t21841 - 11904: 0xD478,\n\t21842 - 11904: 0xD47D,\n\t21843 - 11904: 0xFBA3,\n\t21845 - 11904: 0xB0DE,\n\t21846 - 11904: 0xB0DC,\n\t21847 - 11904: 0xB0E8,\n\t21852 - 11904: 0xB0E3,\n\t21853 - 11904: 0xFAF7,\n\t21854 - 11904: 0xB0D7,\n\t21855 - 11904: 0xB1D2,\n\t21857 - 11904: 0xB0D8,\n\t21858 - 11904: 0xD479,\n\t21859 - 11904: 0xB0E5,\n\t21860 - 11904: 0xB0E0,\n\t21861 - 11904: 0xD4A3,\n\t21862 - 11904: 0xB0D5,\n\t21865 - 11904: 0x9E4E,\n\t21866 - 11904: 0xB0D4,\n\t21867 - 11904: 0x94DC,\n\t21873 - 11904: 0x95DA,\n\t21874 - 11904: 0x9DF8,\n\t21875 - 11904: 0x9F6A,\n\t21877 - 11904: 0xD471,\n\t21878 - 11904: 0xD472,\n\t21879 - 11904: 0xD86A,\n\t21881 - 11904: 0x8AB7,\n\t21883 - 11904: 0xB3D7,\n\t21884 - 11904: 0xB3DA,\n\t21885 - 11904: 0xD875,\n\t21886 - 11904: 0xB3EE,\n\t21887 - 11904: 0xD878,\n\t21888 - 11904: 0xB3D8,\n\t21889 - 11904: 0xD871,\n\t21890 - 11904: 0xB3DE,\n\t21891 - 11904: 0xB3E4,\n\t21892 - 11904: 0xB5BD,\n\t21894 - 11904: 0xFB46,\n\t21895 - 11904: 0xB3E2,\n\t21896 - 11904: 0xD86E,\n\t21897 - 11904: 0xB3EF,\n\t21898 - 11904: 0xB3DB,\n\t21899 - 11904: 0xB3E3,\n\t21900 - 11904: 0xD876,\n\t21901 - 11904: 0xDCD7,\n\t21902 - 11904: 0xD87B,\n\t21903 - 11904: 0xD86F,\n\t21904 - 11904: 0x8A46,\n\t21905 - 11904: 0xD866,\n\t21906 - 11904: 0xD873,\n\t21907 - 11904: 0xD86D,\n\t21908 - 11904: 0xB3E1,\n\t21909 - 11904: 0xD879,\n\t21912 - 11904: 0xB3DD,\n\t21913 - 11904: 0xB3F1,\n\t21914 - 11904: 0xB3EA,\n\t21916 - 11904: 0xB3DF,\n\t21917 - 11904: 0xB3DC,\n\t21919 - 11904: 0xB3E7,\n\t21921 - 11904: 0xD87A,\n\t21922 - 11904: 0xD86C,\n\t21923 - 11904: 0xD872,\n\t21924 - 11904: 0xD874,\n\t21925 - 11904: 0xD868,\n\t21926 - 11904: 0xD877,\n\t21927 - 11904: 0xB3D9,\n\t21928 - 11904: 0xD867,\n\t21929 - 11904: 0xFB47,\n\t21930 - 11904: 0xB3E0,\n\t21931 - 11904: 0xB3F0,\n\t21932 - 11904: 0xB3EC,\n\t21933 - 11904: 0xD869,\n\t21934 - 11904: 0xB3E6,\n\t21936 - 11904: 0x9148,\n\t21937 - 11904: 0xB3ED,\n\t21938 - 11904: 0xB3E9,\n\t21939 - 11904: 0xB3E5,\n\t21940 - 11904: 0x92DE,\n\t21941 - 11904: 0xD870,\n\t21945 - 11904: 0x8B53,\n\t21946 - 11904: 0x9DF6,\n\t21947 - 11904: 0xB3EB,\n\t21948 - 11904: 0x9BDA,\n\t21951 - 11904: 0xDCD5,\n\t21952 - 11904: 0xDCD1,\n\t21953 - 11904: 0x9D7E,\n\t21954 - 11904: 0xDCE0,\n\t21955 - 11904: 0xDCCA,\n\t21956 - 11904: 0xDCD3,\n\t21957 - 11904: 0xB6E5,\n\t21958 - 11904: 0xB6E6,\n\t21959 - 11904: 0xB6DE,\n\t21960 - 11904: 0xDCDC,\n\t21961 - 11904: 0xB6E8,\n\t21962 - 11904: 0xDCCF,\n\t21963 - 11904: 0xDCCE,\n\t21964 - 11904: 0xDCCC,\n\t21965 - 11904: 0xDCDE,\n\t21966 - 11904: 0xB6DC,\n\t21967 - 11904: 0xDCD8,\n\t21968 - 11904: 0xDCCD,\n\t21969 - 11904: 0xB6DF,\n\t21970 - 11904: 0xDCD6,\n\t21971 - 11904: 0xB6DA,\n\t21972 - 11904: 0xDCD2,\n\t21973 - 11904: 0xDCD9,\n\t21974 - 11904: 0xDCDB,\n\t21975 - 11904: 0x89FD,\n\t21976 - 11904: 0x99E4,\n\t21977 - 11904: 0xDCDF,\n\t21978 - 11904: 0xB6E3,\n\t21979 - 11904: 0xDCCB,\n\t21980 - 11904: 0xB6DD,\n\t21981 - 11904: 0xDCD0,\n\t21982 - 11904: 0x9E43,\n\t21983 - 11904: 0xB6D8,\n\t21985 - 11904: 0xB6E4,\n\t21986 - 11904: 0xDCDA,\n\t21987 - 11904: 0xB6E0,\n\t21988 - 11904: 0xB6E1,\n\t21989 - 11904: 0xB6E7,\n\t21990 - 11904: 0xB6DB,\n\t21991 - 11904: 0xA25F,\n\t21992 - 11904: 0xB6D9,\n\t21993 - 11904: 0xDCD4,\n\t21994 - 11904: 0x9DE9,\n\t21996 - 11904: 0x8F52,\n\t21999 - 11904: 0xB6E2,\n\t22000 - 11904: 0x9DF5,\n\t22001 - 11904: 0x9DF0,\n\t22002 - 11904: 0xDCDD,\n\t22005 - 11904: 0x99E7,\n\t22006 - 11904: 0xB9CD,\n\t22007 - 11904: 0xB9C8,\n\t22009 - 11904: 0xE155,\n\t22010 - 11904: 0xE151,\n\t22011 - 11904: 0x8BBD,\n\t22012 - 11904: 0xE14B,\n\t22013 - 11904: 0xB9C2,\n\t22014 - 11904: 0xB9BE,\n\t22015 - 11904: 0xE154,\n\t22016 - 11904: 0xB9BF,\n\t22017 - 11904: 0xE14E,\n\t22018 - 11904: 0xE150,\n\t22020 - 11904: 0xE153,\n\t22021 - 11904: 0xFB48,\n\t22022 - 11904: 0xB9C4,\n\t22024 - 11904: 0xB9CB,\n\t22025 - 11904: 0xB9C5,\n\t22028 - 11904: 0xE149,\n\t22029 - 11904: 0xB9C6,\n\t22030 - 11904: 0xB9C7,\n\t22031 - 11904: 0xE14C,\n\t22032 - 11904: 0xB9CC,\n\t22033 - 11904: 0x9FB7,\n\t22034 - 11904: 0xE14A,\n\t22035 - 11904: 0xE14F,\n\t22036 - 11904: 0xB9C3,\n\t22037 - 11904: 0xE148,\n\t22038 - 11904: 0xB9C9,\n\t22039 - 11904: 0xB9C1,\n\t22043 - 11904: 0xB9C0,\n\t22044 - 11904: 0xE14D,\n\t22045 - 11904: 0xE152,\n\t22046 - 11904: 0x9DD0,\n\t22047 - 11904: 0xB9CA,\n\t22048 - 11904: 0x9FEB,\n\t22049 - 11904: 0x8DA9,\n\t22050 - 11904: 0x9DCF,\n\t22051 - 11904: 0x98E1,\n\t22053 - 11904: 0x9DE5,\n\t22055 - 11904: 0xE147,\n\t22057 - 11904: 0xBC4D,\n\t22058 - 11904: 0xE547,\n\t22060 - 11904: 0xE544,\n\t22061 - 11904: 0x9DC8,\n\t22062 - 11904: 0xBC47,\n\t22063 - 11904: 0xBC53,\n\t22064 - 11904: 0xBC54,\n\t22066 - 11904: 0xBC4A,\n\t22067 - 11904: 0xE542,\n\t22068 - 11904: 0xBC4C,\n\t22069 - 11904: 0xE4F9,\n\t22070 - 11904: 0xBC52,\n\t22071 - 11904: 0xFB4F,\n\t22072 - 11904: 0xE546,\n\t22073 - 11904: 0xBC49,\n\t22074 - 11904: 0xE548,\n\t22075 - 11904: 0xBC48,\n\t22077 - 11904: 0xE543,\n\t22078 - 11904: 0xE545,\n\t22079 - 11904: 0xBC4B,\n\t22080 - 11904: 0xE541,\n\t22081 - 11904: 0xE4FA,\n\t22082 - 11904: 0xE4F7,\n\t22083 - 11904: 0x9DEB,\n\t22085 - 11904: 0xD86B,\n\t22086 - 11904: 0xE4FD,\n\t22088 - 11904: 0xE4F6,\n\t22089 - 11904: 0xE4FC,\n\t22090 - 11904: 0xE4FB,\n\t22092 - 11904: 0xE4F8,\n\t22093 - 11904: 0xFB54,\n\t22094 - 11904: 0xBC4F,\n\t22095 - 11904: 0xFB55,\n\t22096 - 11904: 0x9AA2,\n\t22098 - 11904: 0x8AD6,\n\t22099 - 11904: 0xBC4E,\n\t22100 - 11904: 0x9A5F,\n\t22103 - 11904: 0xBC50,\n\t22104 - 11904: 0xE4FE,\n\t22105 - 11904: 0xBEB2,\n\t22106 - 11904: 0xE540,\n\t22109 - 11904: 0x9EF5,\n\t22110 - 11904: 0xE945,\n\t22112 - 11904: 0xE8FD,\n\t22113 - 11904: 0x8FB7,\n\t22114 - 11904: 0xBEBE,\n\t22115 - 11904: 0xE942,\n\t22116 - 11904: 0xBEB6,\n\t22117 - 11904: 0xBEBA,\n\t22118 - 11904: 0xE941,\n\t22120 - 11904: 0xBEB9,\n\t22121 - 11904: 0xBEB5,\n\t22122 - 11904: 0xBEB8,\n\t22123 - 11904: 0xBEB3,\n\t22124 - 11904: 0xBEBD,\n\t22125 - 11904: 0xE943,\n\t22126 - 11904: 0xE8FE,\n\t22127 - 11904: 0xBEBC,\n\t22128 - 11904: 0xE8FC,\n\t22129 - 11904: 0xBEBB,\n\t22130 - 11904: 0xE944,\n\t22131 - 11904: 0xE940,\n\t22132 - 11904: 0xBC51,\n\t22134 - 11904: 0xBEBF,\n\t22135 - 11904: 0xE946,\n\t22136 - 11904: 0xBEB7,\n\t22137 - 11904: 0xBEB4,\n\t22138 - 11904: 0x9AD2,\n\t22139 - 11904: 0x9E6A,\n\t22140 - 11904: 0x9EE8,\n\t22142 - 11904: 0xECC6,\n\t22143 - 11904: 0xECC8,\n\t22144 - 11904: 0xC07B,\n\t22145 - 11904: 0xECC9,\n\t22146 - 11904: 0xECC7,\n\t22147 - 11904: 0xECC5,\n\t22148 - 11904: 0xECC4,\n\t22149 - 11904: 0xC07D,\n\t22150 - 11904: 0xECC3,\n\t22151 - 11904: 0xC07E,\n\t22153 - 11904: 0x8BBF,\n\t22154 - 11904: 0x91C2,\n\t22155 - 11904: 0x9D62,\n\t22156 - 11904: 0xECC1,\n\t22157 - 11904: 0xECC2,\n\t22158 - 11904: 0xC07A,\n\t22159 - 11904: 0xC0A1,\n\t22160 - 11904: 0xC07C,\n\t22162 - 11904: 0x9260,\n\t22163 - 11904: 0xECC0,\n\t22165 - 11904: 0xC250,\n\t22167 - 11904: 0xEFBC,\n\t22168 - 11904: 0xEFBA,\n\t22169 - 11904: 0xEFBF,\n\t22170 - 11904: 0xEFBD,\n\t22172 - 11904: 0xEFBB,\n\t22173 - 11904: 0xEFBE,\n\t22174 - 11904: 0x925E,\n\t22175 - 11904: 0x91C1,\n\t22177 - 11904: 0x8AC5,\n\t22180 - 11904: 0x97A3,\n\t22181 - 11904: 0xC360,\n\t22182 - 11904: 0xF1F2,\n\t22183 - 11904: 0xF1F3,\n\t22184 - 11904: 0xC456,\n\t22186 - 11904: 0xF1F4,\n\t22187 - 11904: 0xF1F0,\n\t22188 - 11904: 0xF1F5,\n\t22189 - 11904: 0xF1F1,\n\t22190 - 11904: 0xC251,\n\t22191 - 11904: 0x8B6C,\n\t22193 - 11904: 0x8D7E,\n\t22194 - 11904: 0xF3FE,\n\t22195 - 11904: 0xF441,\n\t22196 - 11904: 0xC459,\n\t22197 - 11904: 0xF440,\n\t22198 - 11904: 0xC458,\n\t22199 - 11904: 0xC457,\n\t22201 - 11904: 0x9C54,\n\t22204 - 11904: 0xC45A,\n\t22205 - 11904: 0xF5C5,\n\t22206 - 11904: 0xF5C6,\n\t22207 - 11904: 0x9DBD,\n\t22208 - 11904: 0xC4DA,\n\t22209 - 11904: 0xC4D9,\n\t22210 - 11904: 0xC4DB,\n\t22211 - 11904: 0xF5C4,\n\t22213 - 11904: 0xF6D8,\n\t22214 - 11904: 0xF6D7,\n\t22216 - 11904: 0xC56D,\n\t22217 - 11904: 0xC56F,\n\t22218 - 11904: 0xC56E,\n\t22219 - 11904: 0xF6D9,\n\t22220 - 11904: 0xC5C8,\n\t22221 - 11904: 0xF8A6,\n\t22225 - 11904: 0xC5F1,\n\t22227 - 11904: 0xF8A5,\n\t22228 - 11904: 0xF8EE,\n\t22230 - 11904: 0x9CC5,\n\t22231 - 11904: 0xC949,\n\t22234 - 11904: 0xA57D,\n\t22235 - 11904: 0xA57C,\n\t22237 - 11904: 0xA65F,\n\t22238 - 11904: 0xA65E,\n\t22239 - 11904: 0xC9C7,\n\t22240 - 11904: 0xA65D,\n\t22241 - 11904: 0xC9C6,\n\t22242 - 11904: 0x895B,\n\t22244 - 11904: 0xA779,\n\t22245 - 11904: 0xCAA9,\n\t22247 - 11904: 0xCAA8,\n\t22250 - 11904: 0xA777,\n\t22251 - 11904: 0xA77A,\n\t22253 - 11904: 0xFB5C,\n\t22254 - 11904: 0xCAA7,\n\t22255 - 11904: 0xFB5B,\n\t22256 - 11904: 0xA778,\n\t22257 - 11904: 0xFB57,\n\t22263 - 11904: 0xCBF0,\n\t22265 - 11904: 0xCBF1,\n\t22266 - 11904: 0xA954,\n\t22267 - 11904: 0x8765,\n\t22269 - 11904: 0x98C7,\n\t22271 - 11904: 0xABAA,\n\t22272 - 11904: 0xFB5A,\n\t22273 - 11904: 0xD148,\n\t22274 - 11904: 0xD149,\n\t22275 - 11904: 0xAE45,\n\t22276 - 11904: 0xAE46,\n\t22279 - 11904: 0xD4AC,\n\t22280 - 11904: 0xB0E9,\n\t22281 - 11904: 0xB0EB,\n\t22282 - 11904: 0xD4AB,\n\t22283 - 11904: 0xB0EA,\n\t22284 - 11904: 0xD87C,\n\t22285 - 11904: 0xB3F2,\n\t22290 - 11904: 0xB6E9,\n\t22291 - 11904: 0xB6EA,\n\t22292 - 11904: 0xDCE1,\n\t22293 - 11904: 0x9CEE,\n\t22294 - 11904: 0xB9CF,\n\t22296 - 11904: 0xB9CE,\n\t22298 - 11904: 0xE549,\n\t22299 - 11904: 0xE948,\n\t22300 - 11904: 0xE947,\n\t22301 - 11904: 0x92E2,\n\t22302 - 11904: 0xF96B,\n\t22303 - 11904: 0xA467,\n\t22304 - 11904: 0xC959,\n\t22306 - 11904: 0xC96E,\n\t22307 - 11904: 0xC96F,\n\t22312 - 11904: 0xA662,\n\t22313 - 11904: 0xA666,\n\t22314 - 11904: 0xC9C9,\n\t22316 - 11904: 0xA664,\n\t22317 - 11904: 0xA663,\n\t22318 - 11904: 0xC9C8,\n\t22319 - 11904: 0xA665,\n\t22320 - 11904: 0xA661,\n\t22322 - 11904: 0x94A7,\n\t22323 - 11904: 0xA660,\n\t22324 - 11904: 0xC9CA,\n\t22331 - 11904: 0xA7A6,\n\t22333 - 11904: 0x8CCC,\n\t22334 - 11904: 0xA7A3,\n\t22335 - 11904: 0x9BD4,\n\t22336 - 11904: 0xA77D,\n\t22337 - 11904: 0xCAAA,\n\t22338 - 11904: 0xFB64,\n\t22339 - 11904: 0xFB76,\n\t22341 - 11904: 0xCAAB,\n\t22342 - 11904: 0xFB60,\n\t22343 - 11904: 0xA7A1,\n\t22345 - 11904: 0xCAAD,\n\t22346 - 11904: 0xA77B,\n\t22347 - 11904: 0xCAAE,\n\t22348 - 11904: 0xCAAC,\n\t22349 - 11904: 0xA77E,\n\t22350 - 11904: 0xA7A2,\n\t22351 - 11904: 0xA7A5,\n\t22352 - 11904: 0xA7A4,\n\t22353 - 11904: 0xA77C,\n\t22354 - 11904: 0xCAAF,\n\t22356 - 11904: 0x99E5,\n\t22359 - 11904: 0x9AC2,\n\t22363 - 11904: 0x91FB,\n\t22367 - 11904: 0xA073,\n\t22369 - 11904: 0xA959,\n\t22370 - 11904: 0xCBFE,\n\t22372 - 11904: 0xA95B,\n\t22374 - 11904: 0xA95A,\n\t22375 - 11904: 0x9F72,\n\t22376 - 11904: 0xCC40,\n\t22377 - 11904: 0xA958,\n\t22378 - 11904: 0xA957,\n\t22379 - 11904: 0xCBF5,\n\t22381 - 11904: 0xCBF4,\n\t22383 - 11904: 0xCBF2,\n\t22384 - 11904: 0xCBF7,\n\t22385 - 11904: 0xCBF6,\n\t22386 - 11904: 0xCBF3,\n\t22387 - 11904: 0xCBFC,\n\t22388 - 11904: 0xCBFD,\n\t22389 - 11904: 0xCBFA,\n\t22390 - 11904: 0xCBF8,\n\t22391 - 11904: 0xA956,\n\t22394 - 11904: 0x9FCC,\n\t22395 - 11904: 0xCBFB,\n\t22396 - 11904: 0xA95C,\n\t22397 - 11904: 0xCC41,\n\t22398 - 11904: 0x98A5,\n\t22399 - 11904: 0x92E8,\n\t22400 - 11904: 0xCBF9,\n\t22402 - 11904: 0xABAB,\n\t22403 - 11904: 0xA955,\n\t22408 - 11904: 0x9BBC,\n\t22410 - 11904: 0x96F3,\n\t22411 - 11904: 0xABAC,\n\t22412 - 11904: 0xCE54,\n\t22413 - 11904: 0x92E7,\n\t22415 - 11904: 0xCE5A,\n\t22416 - 11904: 0xFC67,\n\t22419 - 11904: 0xABB2,\n\t22420 - 11904: 0xCE58,\n\t22421 - 11904: 0xCE5E,\n\t22423 - 11904: 0xCE55,\n\t22424 - 11904: 0xCE59,\n\t22425 - 11904: 0xCE5B,\n\t22426 - 11904: 0xCE5D,\n\t22427 - 11904: 0xCE57,\n\t22428 - 11904: 0x8B7D,\n\t22429 - 11904: 0xCE56,\n\t22430 - 11904: 0xCE51,\n\t22431 - 11904: 0xCE52,\n\t22432 - 11904: 0xABAD,\n\t22433 - 11904: 0x9BF4,\n\t22434 - 11904: 0xABAF,\n\t22435 - 11904: 0xABAE,\n\t22436 - 11904: 0xCE53,\n\t22437 - 11904: 0xCE5C,\n\t22439 - 11904: 0x9EF7,\n\t22442 - 11904: 0x9EC1,\n\t22446 - 11904: 0xABB1,\n\t22451 - 11904: 0x87C3,\n\t22452 - 11904: 0x996F,\n\t22453 - 11904: 0xCE50,\n\t22454 - 11904: 0xD153,\n\t22456 - 11904: 0xD152,\n\t22457 - 11904: 0xD157,\n\t22458 - 11904: 0xD14E,\n\t22459 - 11904: 0x96F1,\n\t22460 - 11904: 0xD151,\n\t22461 - 11904: 0xD150,\n\t22462 - 11904: 0x8E41,\n\t22463 - 11904: 0xD154,\n\t22465 - 11904: 0xD158,\n\t22466 - 11904: 0xAE47,\n\t22467 - 11904: 0xAE4A,\n\t22468 - 11904: 0x954A,\n\t22470 - 11904: 0xD14F,\n\t22471 - 11904: 0xD155,\n\t22472 - 11904: 0x97E6,\n\t22475 - 11904: 0xAE49,\n\t22476 - 11904: 0xD14A,\n\t22478 - 11904: 0xABB0,\n\t22479 - 11904: 0xD4BA,\n\t22480 - 11904: 0xD156,\n\t22482 - 11904: 0xD14D,\n\t22484 - 11904: 0xAE48,\n\t22485 - 11904: 0xD14C,\n\t22487 - 11904: 0x96F5,\n\t22492 - 11904: 0xD4B1,\n\t22493 - 11904: 0x92E6,\n\t22494 - 11904: 0x9F42,\n\t22495 - 11904: 0xB0EC,\n\t22496 - 11904: 0xB0F0,\n\t22497 - 11904: 0xD4C1,\n\t22498 - 11904: 0xD4AF,\n\t22499 - 11904: 0xD4BD,\n\t22500 - 11904: 0xB0F1,\n\t22501 - 11904: 0xD4BF,\n\t22502 - 11904: 0xFB67,\n\t22503 - 11904: 0xD4C5,\n\t22505 - 11904: 0xD4C9,\n\t22508 - 11904: 0xD4C0,\n\t22509 - 11904: 0xD4B4,\n\t22510 - 11904: 0xD4BC,\n\t22511 - 11904: 0x99A9,\n\t22512 - 11904: 0xD4CA,\n\t22513 - 11904: 0xD4C8,\n\t22514 - 11904: 0xD4BE,\n\t22515 - 11904: 0xD4B9,\n\t22516 - 11904: 0xD4B2,\n\t22517 - 11904: 0xD8A6,\n\t22518 - 11904: 0xD4B0,\n\t22519 - 11904: 0xB0F5,\n\t22520 - 11904: 0xD4B7,\n\t22521 - 11904: 0xB0F6,\n\t22522 - 11904: 0xB0F2,\n\t22523 - 11904: 0xD4AD,\n\t22524 - 11904: 0xD4C3,\n\t22525 - 11904: 0xD4B5,\n\t22526 - 11904: 0xFAE6,\n\t22528 - 11904: 0xD4B3,\n\t22529 - 11904: 0xD4C6,\n\t22530 - 11904: 0xB0F3,\n\t22531 - 11904: 0xFB69,\n\t22532 - 11904: 0xD4CC,\n\t22533 - 11904: 0xB0ED,\n\t22534 - 11904: 0xB0EF,\n\t22535 - 11904: 0xD4BB,\n\t22536 - 11904: 0xD4B6,\n\t22537 - 11904: 0xAE4B,\n\t22538 - 11904: 0xB0EE,\n\t22539 - 11904: 0xD4B8,\n\t22540 - 11904: 0xD4C7,\n\t22541 - 11904: 0xD4CB,\n\t22542 - 11904: 0xD4C2,\n\t22544 - 11904: 0xD4C4,\n\t22546 - 11904: 0x97E5,\n\t22548 - 11904: 0xD4AE,\n\t22552 - 11904: 0x87C8,\n\t22553 - 11904: 0xD8A1,\n\t22555 - 11904: 0xD8AA,\n\t22556 - 11904: 0xD8A9,\n\t22557 - 11904: 0xB3FA,\n\t22558 - 11904: 0xD8A2,\n\t22560 - 11904: 0xB3FB,\n\t22561 - 11904: 0xB3F9,\n\t22562 - 11904: 0x967D,\n\t22563 - 11904: 0xD8A4,\n\t22564 - 11904: 0xB3F6,\n\t22565 - 11904: 0xD8A8,\n\t22566 - 11904: 0xFB6C,\n\t22567 - 11904: 0xD8A3,\n\t22568 - 11904: 0xD8A5,\n\t22569 - 11904: 0xD87D,\n\t22570 - 11904: 0xB3F4,\n\t22572 - 11904: 0xD8B2,\n\t22573 - 11904: 0xD8B1,\n\t22574 - 11904: 0xD8AE,\n\t22575 - 11904: 0xB3F3,\n\t22576 - 11904: 0xB3F7,\n\t22577 - 11904: 0xB3F8,\n\t22578 - 11904: 0xD14B,\n\t22579 - 11904: 0xD8AB,\n\t22580 - 11904: 0xB3F5,\n\t22581 - 11904: 0xB0F4,\n\t22582 - 11904: 0xD8AD,\n\t22583 - 11904: 0xD87E,\n\t22584 - 11904: 0xD8B0,\n\t22585 - 11904: 0xD8AF,\n\t22586 - 11904: 0x99A2,\n\t22587 - 11904: 0xD8B3,\n\t22589 - 11904: 0xDCEF,\n\t22591 - 11904: 0xD8AC,\n\t22592 - 11904: 0x9ABB,\n\t22596 - 11904: 0x9A65,\n\t22599 - 11904: 0x944E,\n\t22600 - 11904: 0xD8A7,\n\t22601 - 11904: 0xDCE7,\n\t22602 - 11904: 0xB6F4,\n\t22603 - 11904: 0xB6F7,\n\t22604 - 11904: 0xB6F2,\n\t22605 - 11904: 0xDCE6,\n\t22606 - 11904: 0xDCEA,\n\t22607 - 11904: 0xDCE5,\n\t22609 - 11904: 0xB6EC,\n\t22610 - 11904: 0xB6F6,\n\t22611 - 11904: 0xDCE2,\n\t22612 - 11904: 0xB6F0,\n\t22613 - 11904: 0xDCE9,\n\t22615 - 11904: 0xB6EE,\n\t22616 - 11904: 0xB6ED,\n\t22617 - 11904: 0xDCEC,\n\t22618 - 11904: 0xB6EF,\n\t22619 - 11904: 0xDCEE,\n\t22620 - 11904: 0xFB6E,\n\t22621 - 11904: 0xDCEB,\n\t22622 - 11904: 0xB6EB,\n\t22623 - 11904: 0x99DF,\n\t22626 - 11904: 0xB6F5,\n\t22627 - 11904: 0xDCF0,\n\t22628 - 11904: 0xDCE4,\n\t22629 - 11904: 0xDCED,\n\t22632 - 11904: 0xDCE3,\n\t22633 - 11904: 0x98E3,\n\t22635 - 11904: 0xB6F1,\n\t22636 - 11904: 0x9254,\n\t22637 - 11904: 0xB6F3,\n\t22639 - 11904: 0xDCE8,\n\t22641 - 11904: 0xDCF1,\n\t22642 - 11904: 0x967B,\n\t22643 - 11904: 0x8AAF,\n\t22644 - 11904: 0xE15D,\n\t22645 - 11904: 0xB9D0,\n\t22646 - 11904: 0xE163,\n\t22649 - 11904: 0xB9D5,\n\t22650 - 11904: 0xE15F,\n\t22651 - 11904: 0xE166,\n\t22652 - 11904: 0xE157,\n\t22653 - 11904: 0xB9D7,\n\t22654 - 11904: 0xB9D1,\n\t22655 - 11904: 0xE15C,\n\t22656 - 11904: 0xBC55,\n\t22657 - 11904: 0xE15B,\n\t22658 - 11904: 0xE164,\n\t22659 - 11904: 0xB9D2,\n\t22661 - 11904: 0xB9D6,\n\t22662 - 11904: 0xE15A,\n\t22663 - 11904: 0xE160,\n\t22664 - 11904: 0xE165,\n\t22665 - 11904: 0xE156,\n\t22666 - 11904: 0xB9D4,\n\t22667 - 11904: 0xE15E,\n\t22670 - 11904: 0xE162,\n\t22671 - 11904: 0xE168,\n\t22672 - 11904: 0xE158,\n\t22673 - 11904: 0xE161,\n\t22674 - 11904: 0x8C77,\n\t22675 - 11904: 0xB9D3,\n\t22676 - 11904: 0xE167,\n\t22678 - 11904: 0x87B0,\n\t22680 - 11904: 0xE159,\n\t22681 - 11904: 0x8BAF,\n\t22682 - 11904: 0x9EBD,\n\t22684 - 11904: 0xBC59,\n\t22685 - 11904: 0xE54B,\n\t22686 - 11904: 0xBC57,\n\t22687 - 11904: 0xBC56,\n\t22688 - 11904: 0xE54D,\n\t22689 - 11904: 0xE552,\n\t22691 - 11904: 0xE54E,\n\t22693 - 11904: 0xE551,\n\t22694 - 11904: 0xBC5C,\n\t22695 - 11904: 0x9EE6,\n\t22696 - 11904: 0xBEA5,\n\t22697 - 11904: 0xBC5B,\n\t22698 - 11904: 0xFB6F,\n\t22699 - 11904: 0xE54A,\n\t22700 - 11904: 0xE550,\n\t22702 - 11904: 0xBC5A,\n\t22703 - 11904: 0xE54F,\n\t22704 - 11904: 0x8EE1,\n\t22705 - 11904: 0xE54C,\n\t22707 - 11904: 0xBC58,\n\t22709 - 11904: 0x9B7D,\n\t22710 - 11904: 0x9C7E,\n\t22714 - 11904: 0xE94D,\n\t22715 - 11904: 0xF9D9,\n\t22716 - 11904: 0xE94F,\n\t22717 - 11904: 0xE94A,\n\t22718 - 11904: 0xBEC1,\n\t22719 - 11904: 0xE94C,\n\t22721 - 11904: 0xBEC0,\n\t22722 - 11904: 0xE94E,\n\t22725 - 11904: 0xBEC3,\n\t22726 - 11904: 0xE950,\n\t22727 - 11904: 0xBEC2,\n\t22728 - 11904: 0xE949,\n\t22729 - 11904: 0xE94B,\n\t22731 - 11904: 0x92EA,\n\t22734 - 11904: 0xC0A5,\n\t22735 - 11904: 0xECCC,\n\t22736 - 11904: 0x8C78,\n\t22737 - 11904: 0xC0A4,\n\t22738 - 11904: 0xECCD,\n\t22739 - 11904: 0xC0A3,\n\t22740 - 11904: 0xECCB,\n\t22741 - 11904: 0xC0A2,\n\t22742 - 11904: 0xECCA,\n\t22744 - 11904: 0xC253,\n\t22745 - 11904: 0xC252,\n\t22746 - 11904: 0xF1F6,\n\t22747 - 11904: 0xF1F8,\n\t22748 - 11904: 0xFB72,\n\t22749 - 11904: 0xF1F7,\n\t22750 - 11904: 0xC361,\n\t22751 - 11904: 0xC362,\n\t22752 - 11904: 0xFB71,\n\t22754 - 11904: 0xC363,\n\t22755 - 11904: 0xF442,\n\t22756 - 11904: 0xC45B,\n\t22759 - 11904: 0xF7D3,\n\t22760 - 11904: 0xF7D2,\n\t22761 - 11904: 0xC5F2,\n\t22763 - 11904: 0xA468,\n\t22764 - 11904: 0xA4D0,\n\t22767 - 11904: 0xA7A7,\n\t22768 - 11904: 0x895C,\n\t22770 - 11904: 0x98F0,\n\t22771 - 11904: 0x96F2,\n\t22772 - 11904: 0xCE5F,\n\t22777 - 11904: 0xB3FC,\n\t22778 - 11904: 0xB3FD,\n\t22779 - 11904: 0xFB74,\n\t22780 - 11904: 0xDCF2,\n\t22781 - 11904: 0xB9D8,\n\t22782 - 11904: 0xE169,\n\t22783 - 11904: 0xE553,\n\t22786 - 11904: 0x8BC1,\n\t22787 - 11904: 0xC95A,\n\t22788 - 11904: 0x895D,\n\t22789 - 11904: 0x89DE,\n\t22790 - 11904: 0xCAB0,\n\t22791 - 11904: 0x895E,\n\t22794 - 11904: 0xC6CA,\n\t22796 - 11904: 0xCC42,\n\t22797 - 11904: 0xCE60,\n\t22798 - 11904: 0xD159,\n\t22799 - 11904: 0xAE4C,\n\t22801 - 11904: 0xFE42,\n\t22802 - 11904: 0xF1F9,\n\t22804 - 11904: 0xC4DC,\n\t22805 - 11904: 0xA469,\n\t22806 - 11904: 0xA57E,\n\t22807 - 11904: 0xC970,\n\t22809 - 11904: 0xA667,\n\t22810 - 11904: 0xA668,\n\t22812 - 11904: 0xA95D,\n\t22813 - 11904: 0x8768,\n\t22815 - 11904: 0xFB7B,\n\t22816 - 11904: 0xB0F7,\n\t22818 - 11904: 0xB9DA,\n\t22820 - 11904: 0xB9DB,\n\t22821 - 11904: 0xB9D9,\n\t22823 - 11904: 0xA46A,\n\t22825 - 11904: 0xA4D1,\n\t22826 - 11904: 0xA4D3,\n\t22827 - 11904: 0xA4D2,\n\t22828 - 11904: 0xC95B,\n\t22829 - 11904: 0xA4D4,\n\t22830 - 11904: 0xA5A1,\n\t22831 - 11904: 0xC971,\n\t22833 - 11904: 0xA5A2,\n\t22834 - 11904: 0x895F,\n\t22836 - 11904: 0x8960,\n\t22839 - 11904: 0xA669,\n\t22840 - 11904: 0xA66A,\n\t22844 - 11904: 0xC9CB,\n\t22846 - 11904: 0xA7A8,\n\t22848 - 11904: 0xCAB1,\n\t22852 - 11904: 0xA961,\n\t22853 - 11904: 0xCC43,\n\t22855 - 11904: 0xA95F,\n\t22856 - 11904: 0xA960,\n\t22857 - 11904: 0xA95E,\n\t22858 - 11904: 0xD15A,\n\t22862 - 11904: 0xABB6,\n\t22863 - 11904: 0xABB5,\n\t22864 - 11904: 0xABB7,\n\t22865 - 11904: 0xABB4,\n\t22867 - 11904: 0xCE61,\n\t22868 - 11904: 0xA962,\n\t22869 - 11904: 0xABB3,\n\t22871 - 11904: 0xAE4D,\n\t22872 - 11904: 0xAE4E,\n\t22874 - 11904: 0xAE4F,\n\t22876 - 11904: 0xD4CD,\n\t22880 - 11904: 0xB3FE,\n\t22881 - 11904: 0xD8B4,\n\t22882 - 11904: 0xB0F8,\n\t22885 - 11904: 0x9BCD,\n\t22887 - 11904: 0xB6F8,\n\t22889 - 11904: 0xB9DD,\n\t22890 - 11904: 0xB9DC,\n\t22891 - 11904: 0xE16A,\n\t22893 - 11904: 0xBC5D,\n\t22894 - 11904: 0xBEC4,\n\t22896 - 11904: 0xEFC0,\n\t22897 - 11904: 0xF6DA,\n\t22898 - 11904: 0xF7D4,\n\t22899 - 11904: 0xA46B,\n\t22900 - 11904: 0xA5A3,\n\t22901 - 11904: 0x9DD3,\n\t22902 - 11904: 0xA5A4,\n\t22903 - 11904: 0xC9D1,\n\t22904 - 11904: 0xA66C,\n\t22905 - 11904: 0xA66F,\n\t22907 - 11904: 0xC9CF,\n\t22908 - 11904: 0xC9CD,\n\t22909 - 11904: 0xA66E,\n\t22910 - 11904: 0xC9D0,\n\t22911 - 11904: 0xC9D2,\n\t22912 - 11904: 0xC9CC,\n\t22913 - 11904: 0xA671,\n\t22914 - 11904: 0xA670,\n\t22915 - 11904: 0xA66D,\n\t22916 - 11904: 0xA66B,\n\t22917 - 11904: 0xC9CE,\n\t22921 - 11904: 0x984C,\n\t22922 - 11904: 0xA7B3,\n\t22925 - 11904: 0xA7B0,\n\t22926 - 11904: 0xCAB6,\n\t22927 - 11904: 0xCAB9,\n\t22928 - 11904: 0xCAB8,\n\t22930 - 11904: 0xA7AA,\n\t22931 - 11904: 0xA7B2,\n\t22932 - 11904: 0x9752,\n\t22934 - 11904: 0xA7AF,\n\t22935 - 11904: 0xCAB5,\n\t22936 - 11904: 0xCAB3,\n\t22937 - 11904: 0xA7AE,\n\t22938 - 11904: 0x95C3,\n\t22941 - 11904: 0xA7A9,\n\t22942 - 11904: 0xA7AC,\n\t22943 - 11904: 0x9BB6,\n\t22944 - 11904: 0xCAB4,\n\t22945 - 11904: 0xCABB,\n\t22946 - 11904: 0xCAB7,\n\t22947 - 11904: 0xA7AD,\n\t22948 - 11904: 0xA7B1,\n\t22949 - 11904: 0xA7B4,\n\t22950 - 11904: 0xCAB2,\n\t22951 - 11904: 0xCABA,\n\t22952 - 11904: 0xA7AB,\n\t22956 - 11904: 0x9AB9,\n\t22958 - 11904: 0xA967,\n\t22959 - 11904: 0xA96F,\n\t22960 - 11904: 0x97B3,\n\t22961 - 11904: 0xCC4F,\n\t22962 - 11904: 0xCC48,\n\t22963 - 11904: 0xA970,\n\t22964 - 11904: 0xCC53,\n\t22965 - 11904: 0xCC44,\n\t22966 - 11904: 0xCC4B,\n\t22967 - 11904: 0x9F74,\n\t22968 - 11904: 0x92F1,\n\t22969 - 11904: 0xA966,\n\t22970 - 11904: 0xCC45,\n\t22971 - 11904: 0xA964,\n\t22972 - 11904: 0xCC4C,\n\t22973 - 11904: 0xCC50,\n\t22974 - 11904: 0xA963,\n\t22975 - 11904: 0x8CFA,\n\t22976 - 11904: 0xCC51,\n\t22977 - 11904: 0xCC4A,\n\t22979 - 11904: 0xCC4D,\n\t22980 - 11904: 0x97DF,\n\t22981 - 11904: 0xA972,\n\t22982 - 11904: 0xA969,\n\t22983 - 11904: 0xCC54,\n\t22984 - 11904: 0xCC52,\n\t22985 - 11904: 0xFBA6,\n\t22986 - 11904: 0xA96E,\n\t22987 - 11904: 0xA96C,\n\t22988 - 11904: 0xCC49,\n\t22989 - 11904: 0xA96B,\n\t22990 - 11904: 0xCC47,\n\t22991 - 11904: 0xCC46,\n\t22992 - 11904: 0xA96A,\n\t22993 - 11904: 0xA968,\n\t22994 - 11904: 0xA971,\n\t22995 - 11904: 0xA96D,\n\t22996 - 11904: 0xA965,\n\t22998 - 11904: 0xCC4E,\n\t23000 - 11904: 0xABB9,\n\t23001 - 11904: 0xFBAB,\n\t23002 - 11904: 0xABC0,\n\t23003 - 11904: 0xCE6F,\n\t23004 - 11904: 0xABB8,\n\t23005 - 11904: 0xCE67,\n\t23006 - 11904: 0xCE63,\n\t23008 - 11904: 0xCE73,\n\t23009 - 11904: 0xCE62,\n\t23011 - 11904: 0xABBB,\n\t23012 - 11904: 0xCE6C,\n\t23013 - 11904: 0xABBE,\n\t23014 - 11904: 0xABC1,\n\t23016 - 11904: 0xABBC,\n\t23017 - 11904: 0xCE70,\n\t23018 - 11904: 0xABBF,\n\t23019 - 11904: 0x9877,\n\t23020 - 11904: 0xAE56,\n\t23021 - 11904: 0xCE76,\n\t23022 - 11904: 0xCE64,\n\t23023 - 11904: 0x9854,\n\t23024 - 11904: 0x95C5,\n\t23025 - 11904: 0xCE66,\n\t23026 - 11904: 0xCE6D,\n\t23027 - 11904: 0xCE71,\n\t23028 - 11904: 0xCE75,\n\t23029 - 11904: 0xCE72,\n\t23030 - 11904: 0xCE6B,\n\t23031 - 11904: 0xCE6E,\n\t23032 - 11904: 0x9D55,\n\t23033 - 11904: 0xFBB2,\n\t23034 - 11904: 0xCE68,\n\t23035 - 11904: 0xABC3,\n\t23036 - 11904: 0xCE6A,\n\t23037 - 11904: 0xCE69,\n\t23038 - 11904: 0xCE74,\n\t23039 - 11904: 0xABBA,\n\t23040 - 11904: 0xCE65,\n\t23041 - 11904: 0xABC2,\n\t23042 - 11904: 0x957E,\n\t23043 - 11904: 0xABBD,\n\t23049 - 11904: 0xAE5C,\n\t23050 - 11904: 0xD162,\n\t23051 - 11904: 0x9742,\n\t23052 - 11904: 0xAE5B,\n\t23053 - 11904: 0x94E6,\n\t23055 - 11904: 0xD160,\n\t23057 - 11904: 0xAE50,\n\t23058 - 11904: 0x92F5,\n\t23059 - 11904: 0xAE55,\n\t23061 - 11904: 0xD15F,\n\t23062 - 11904: 0xD15C,\n\t23063 - 11904: 0xD161,\n\t23064 - 11904: 0xAE51,\n\t23065 - 11904: 0xD15B,\n\t23066 - 11904: 0x8CC5,\n\t23067 - 11904: 0xAE54,\n\t23068 - 11904: 0xAE52,\n\t23070 - 11904: 0xD163,\n\t23071 - 11904: 0xAE53,\n\t23072 - 11904: 0xAE57,\n\t23073 - 11904: 0x92FD,\n\t23075 - 11904: 0xAE58,\n\t23076 - 11904: 0xFBA2,\n\t23077 - 11904: 0xAE5A,\n\t23079 - 11904: 0x9C51,\n\t23081 - 11904: 0xAE59,\n\t23082 - 11904: 0x94E9,\n\t23083 - 11904: 0x985C,\n\t23084 - 11904: 0x92F0,\n\t23085 - 11904: 0xD15D,\n\t23086 - 11904: 0xD15E,\n\t23091 - 11904: 0xD164,\n\t23093 - 11904: 0xD4D4,\n\t23094 - 11904: 0xB0F9,\n\t23095 - 11904: 0xD8C2,\n\t23096 - 11904: 0xD4D3,\n\t23097 - 11904: 0xD4E6,\n\t23100 - 11904: 0xB140,\n\t23101 - 11904: 0x944C,\n\t23102 - 11904: 0xD4E4,\n\t23104 - 11904: 0xB0FE,\n\t23105 - 11904: 0xB0FA,\n\t23106 - 11904: 0xD4ED,\n\t23107 - 11904: 0xD4DD,\n\t23108 - 11904: 0xD4E0,\n\t23109 - 11904: 0x916B,\n\t23110 - 11904: 0xB143,\n\t23111 - 11904: 0xD4EA,\n\t23112 - 11904: 0xD4E2,\n\t23113 - 11904: 0xB0FB,\n\t23114 - 11904: 0xB144,\n\t23116 - 11904: 0xD4E7,\n\t23117 - 11904: 0xD4E5,\n\t23120 - 11904: 0xD4D6,\n\t23121 - 11904: 0xD4EB,\n\t23122 - 11904: 0xD4DF,\n\t23123 - 11904: 0xD4DA,\n\t23124 - 11904: 0x8B78,\n\t23125 - 11904: 0xD4D0,\n\t23126 - 11904: 0xD4EC,\n\t23127 - 11904: 0xD4DC,\n\t23128 - 11904: 0xD4CF,\n\t23129 - 11904: 0x94E2,\n\t23130 - 11904: 0xB142,\n\t23131 - 11904: 0xD4E1,\n\t23132 - 11904: 0xD4EE,\n\t23133 - 11904: 0xD4DE,\n\t23134 - 11904: 0xD4D2,\n\t23135 - 11904: 0xD4D7,\n\t23136 - 11904: 0xD4CE,\n\t23137 - 11904: 0x984F,\n\t23138 - 11904: 0xB141,\n\t23139 - 11904: 0xFBB5,\n\t23140 - 11904: 0xD4DB,\n\t23141 - 11904: 0xD4D8,\n\t23142 - 11904: 0xB0FC,\n\t23143 - 11904: 0xD4D1,\n\t23144 - 11904: 0x9271,\n\t23145 - 11904: 0xD4E9,\n\t23146 - 11904: 0xB0FD,\n\t23147 - 11904: 0x9365,\n\t23148 - 11904: 0xD4D9,\n\t23149 - 11904: 0xD4D5,\n\t23150 - 11904: 0x985B,\n\t23152 - 11904: 0xD4E8,\n\t23153 - 11904: 0x9850,\n\t23159 - 11904: 0xFBB8,\n\t23160 - 11904: 0xD8BB,\n\t23161 - 11904: 0x97BC,\n\t23162 - 11904: 0xD8B8,\n\t23163 - 11904: 0xD8C9,\n\t23164 - 11904: 0xD8BD,\n\t23165 - 11904: 0xD8CA,\n\t23166 - 11904: 0x92F3,\n\t23167 - 11904: 0xB442,\n\t23169 - 11904: 0x9340,\n\t23170 - 11904: 0x984D,\n\t23171 - 11904: 0xD8C6,\n\t23172 - 11904: 0xD8C3,\n\t23174 - 11904: 0x9572,\n\t23176 - 11904: 0xFDEF,\n\t23178 - 11904: 0xD8C4,\n\t23179 - 11904: 0xD8C7,\n\t23180 - 11904: 0xD8CB,\n\t23182 - 11904: 0xD4E3,\n\t23183 - 11904: 0xD8CD,\n\t23184 - 11904: 0xDD47,\n\t23185 - 11904: 0xFDC1,\n\t23186 - 11904: 0xB443,\n\t23187 - 11904: 0xD8CE,\n\t23188 - 11904: 0xD8B6,\n\t23189 - 11904: 0xD8C0,\n\t23190 - 11904: 0xFBBA,\n\t23191 - 11904: 0xD8C5,\n\t23193 - 11904: 0x92EB,\n\t23194 - 11904: 0xB441,\n\t23195 - 11904: 0xB444,\n\t23196 - 11904: 0xD8CC,\n\t23197 - 11904: 0xD8CF,\n\t23198 - 11904: 0xD8BA,\n\t23199 - 11904: 0xD8B7,\n\t23200 - 11904: 0xFC73,\n\t23201 - 11904: 0x97B7,\n\t23202 - 11904: 0xD8B9,\n\t23204 - 11904: 0x876F,\n\t23205 - 11904: 0xD8BE,\n\t23206 - 11904: 0xD8BC,\n\t23207 - 11904: 0xB445,\n\t23209 - 11904: 0xD8C8,\n\t23211 - 11904: 0xFBB4,\n\t23212 - 11904: 0xD8BF,\n\t23214 - 11904: 0xD8C1,\n\t23215 - 11904: 0xD8B5,\n\t23216 - 11904: 0xDCFA,\n\t23217 - 11904: 0xDCF8,\n\t23218 - 11904: 0xB742,\n\t23219 - 11904: 0xB740,\n\t23220 - 11904: 0xDD43,\n\t23221 - 11904: 0xDCF9,\n\t23222 - 11904: 0xDD44,\n\t23223 - 11904: 0xDD40,\n\t23224 - 11904: 0xDCF7,\n\t23225 - 11904: 0xDD46,\n\t23226 - 11904: 0xDCF6,\n\t23227 - 11904: 0xDCFD,\n\t23228 - 11904: 0xB6FE,\n\t23229 - 11904: 0xB6FD,\n\t23230 - 11904: 0xB6FC,\n\t23231 - 11904: 0xDCFB,\n\t23232 - 11904: 0xDD41,\n\t23233 - 11904: 0xB6F9,\n\t23234 - 11904: 0xB741,\n\t23235 - 11904: 0x90A7,\n\t23236 - 11904: 0xDCF4,\n\t23238 - 11904: 0xDCFE,\n\t23239 - 11904: 0xDCF3,\n\t23240 - 11904: 0xDCFC,\n\t23241 - 11904: 0xB6FA,\n\t23242 - 11904: 0xDD42,\n\t23243 - 11904: 0xDCF5,\n\t23244 - 11904: 0xB6FB,\n\t23245 - 11904: 0xDD45,\n\t23246 - 11904: 0x9741,\n\t23247 - 11904: 0x92F4,\n\t23249 - 11904: 0x8772,\n\t23251 - 11904: 0xFBBC,\n\t23253 - 11904: 0xE16E,\n\t23254 - 11904: 0xB9E2,\n\t23255 - 11904: 0xB9E1,\n\t23256 - 11904: 0xB9E3,\n\t23257 - 11904: 0xE17A,\n\t23258 - 11904: 0xE170,\n\t23259 - 11904: 0xE176,\n\t23260 - 11904: 0xE16B,\n\t23261 - 11904: 0xE179,\n\t23262 - 11904: 0xE178,\n\t23263 - 11904: 0xE17C,\n\t23264 - 11904: 0xE175,\n\t23265 - 11904: 0xB9DE,\n\t23266 - 11904: 0xE174,\n\t23267 - 11904: 0xB9E4,\n\t23268 - 11904: 0x9577,\n\t23269 - 11904: 0xE16D,\n\t23270 - 11904: 0xB9DF,\n\t23272 - 11904: 0xE17B,\n\t23273 - 11904: 0xB9E0,\n\t23274 - 11904: 0xE16F,\n\t23275 - 11904: 0xE172,\n\t23276 - 11904: 0xE177,\n\t23277 - 11904: 0xE171,\n\t23278 - 11904: 0xE16C,\n\t23280 - 11904: 0x9EE2,\n\t23282 - 11904: 0x8F78,\n\t23283 - 11904: 0xE173,\n\t23284 - 11904: 0xE555,\n\t23285 - 11904: 0xBC61,\n\t23286 - 11904: 0xE558,\n\t23287 - 11904: 0xE557,\n\t23288 - 11904: 0xE55A,\n\t23289 - 11904: 0xE55C,\n\t23290 - 11904: 0xF9DC,\n\t23291 - 11904: 0xBC5F,\n\t23293 - 11904: 0xE556,\n\t23294 - 11904: 0x9672,\n\t23295 - 11904: 0xE554,\n\t23297 - 11904: 0xE55D,\n\t23298 - 11904: 0xE55B,\n\t23299 - 11904: 0xE559,\n\t23301 - 11904: 0xE55F,\n\t23303 - 11904: 0xE55E,\n\t23304 - 11904: 0xBC63,\n\t23305 - 11904: 0xBC5E,\n\t23307 - 11904: 0xBC60,\n\t23308 - 11904: 0xBC62,\n\t23309 - 11904: 0x9EB5,\n\t23311 - 11904: 0xE560,\n\t23312 - 11904: 0xE957,\n\t23313 - 11904: 0x964B,\n\t23315 - 11904: 0xE956,\n\t23316 - 11904: 0xE955,\n\t23317 - 11904: 0x8CAC,\n\t23318 - 11904: 0xE958,\n\t23319 - 11904: 0xE951,\n\t23321 - 11904: 0xE952,\n\t23322 - 11904: 0xE95A,\n\t23323 - 11904: 0xE953,\n\t23325 - 11904: 0xBEC5,\n\t23326 - 11904: 0xE95C,\n\t23327 - 11904: 0xA0FA,\n\t23328 - 11904: 0xE95B,\n\t23329 - 11904: 0xE954,\n\t23331 - 11904: 0xECD1,\n\t23332 - 11904: 0xC0A8,\n\t23333 - 11904: 0xECCF,\n\t23334 - 11904: 0xECD4,\n\t23335 - 11904: 0xECD3,\n\t23336 - 11904: 0xE959,\n\t23338 - 11904: 0xC0A7,\n\t23339 - 11904: 0x9575,\n\t23340 - 11904: 0xECD2,\n\t23341 - 11904: 0xECCE,\n\t23342 - 11904: 0xECD6,\n\t23343 - 11904: 0xECD5,\n\t23344 - 11904: 0xC0A6,\n\t23346 - 11904: 0xECD0,\n\t23348 - 11904: 0xBEC6,\n\t23352 - 11904: 0xC254,\n\t23356 - 11904: 0xEFC1,\n\t23357 - 11904: 0xF1FA,\n\t23358 - 11904: 0xF1FB,\n\t23359 - 11904: 0xF1FC,\n\t23360 - 11904: 0xC45C,\n\t23361 - 11904: 0x90DA,\n\t23363 - 11904: 0xC45D,\n\t23364 - 11904: 0x9367,\n\t23365 - 11904: 0xF443,\n\t23366 - 11904: 0xFEA4,\n\t23367 - 11904: 0xF5C8,\n\t23368 - 11904: 0xF5C7,\n\t23370 - 11904: 0x90DF,\n\t23371 - 11904: 0xF6DB,\n\t23372 - 11904: 0xF6DC,\n\t23373 - 11904: 0xF7D5,\n\t23374 - 11904: 0xF8A7,\n\t23375 - 11904: 0x9354,\n\t23376 - 11904: 0xA46C,\n\t23377 - 11904: 0xA46D,\n\t23379 - 11904: 0xA46E,\n\t23380 - 11904: 0xA4D5,\n\t23381 - 11904: 0xA5A5,\n\t23382 - 11904: 0xC9D3,\n\t23383 - 11904: 0xA672,\n\t23384 - 11904: 0xA673,\n\t23386 - 11904: 0xA7B7,\n\t23387 - 11904: 0xA7B8,\n\t23388 - 11904: 0xA7B6,\n\t23389 - 11904: 0xA7B5,\n\t23391 - 11904: 0xA973,\n\t23394 - 11904: 0xCC55,\n\t23395 - 11904: 0xA975,\n\t23396 - 11904: 0xA974,\n\t23397 - 11904: 0xCC56,\n\t23398 - 11904: 0x8961,\n\t23400 - 11904: 0x8BB4,\n\t23401 - 11904: 0xABC4,\n\t23403 - 11904: 0xAE5D,\n\t23404 - 11904: 0xD165,\n\t23405 - 11904: 0x9DC0,\n\t23406 - 11904: 0xD4F0,\n\t23408 - 11904: 0xB145,\n\t23409 - 11904: 0xB447,\n\t23410 - 11904: 0xD4EF,\n\t23411 - 11904: 0xB446,\n\t23412 - 11904: 0x8E48,\n\t23413 - 11904: 0xB9E5,\n\t23414 - 11904: 0xFBC5,\n\t23415 - 11904: 0xE17D,\n\t23416 - 11904: 0xBEC7,\n\t23418 - 11904: 0xC0A9,\n\t23419 - 11904: 0xECD7,\n\t23420 - 11904: 0xFBC7,\n\t23421 - 11904: 0xC45E,\n\t23423 - 11904: 0xC570,\n\t23424 - 11904: 0xC6CB,\n\t23425 - 11904: 0xC972,\n\t23426 - 11904: 0xFA79,\n\t23427 - 11904: 0xA5A6,\n\t23428 - 11904: 0xC973,\n\t23429 - 11904: 0xA676,\n\t23431 - 11904: 0xA674,\n\t23432 - 11904: 0xA675,\n\t23433 - 11904: 0xA677,\n\t23435 - 11904: 0xA7BA,\n\t23436 - 11904: 0xA7B9,\n\t23438 - 11904: 0xCABC,\n\t23439 - 11904: 0xA7BB,\n\t23440 - 11904: 0x9E67,\n\t23442 - 11904: 0xCABD,\n\t23443 - 11904: 0xCC57,\n\t23445 - 11904: 0xCC58,\n\t23446 - 11904: 0x8CD9,\n\t23447 - 11904: 0xA976,\n\t23448 - 11904: 0xA978,\n\t23449 - 11904: 0xA97A,\n\t23450 - 11904: 0xA977,\n\t23451 - 11904: 0xA97B,\n\t23452 - 11904: 0xA979,\n\t23453 - 11904: 0xFBD2,\n\t23454 - 11904: 0x8962,\n\t23455 - 11904: 0x8963,\n\t23458 - 11904: 0xABC8,\n\t23459 - 11904: 0xABC5,\n\t23460 - 11904: 0xABC7,\n\t23461 - 11904: 0xABC9,\n\t23462 - 11904: 0xABC6,\n\t23463 - 11904: 0xD166,\n\t23464 - 11904: 0xCE77,\n\t23466 - 11904: 0xFC7D,\n\t23468 - 11904: 0xD168,\n\t23469 - 11904: 0xD167,\n\t23470 - 11904: 0xAE63,\n\t23472 - 11904: 0xAE5F,\n\t23475 - 11904: 0xAE60,\n\t23476 - 11904: 0xAE62,\n\t23477 - 11904: 0xAE64,\n\t23478 - 11904: 0xAE61,\n\t23479 - 11904: 0x8773,\n\t23480 - 11904: 0xAE66,\n\t23481 - 11904: 0xAE65,\n\t23487 - 11904: 0xB14A,\n\t23488 - 11904: 0xD4F2,\n\t23489 - 11904: 0xD4F1,\n\t23490 - 11904: 0xB149,\n\t23491 - 11904: 0x9F6B,\n\t23492 - 11904: 0xB148,\n\t23493 - 11904: 0xB147,\n\t23494 - 11904: 0xB14B,\n\t23495 - 11904: 0xB146,\n\t23498 - 11904: 0xD8D5,\n\t23499 - 11904: 0xD8D2,\n\t23500 - 11904: 0xB449,\n\t23501 - 11904: 0xD8D1,\n\t23502 - 11904: 0xD8D6,\n\t23504 - 11904: 0xB44B,\n\t23505 - 11904: 0xD8D4,\n\t23506 - 11904: 0xB448,\n\t23507 - 11904: 0xB44A,\n\t23508 - 11904: 0xD8D3,\n\t23509 - 11904: 0xFBCC,\n\t23510 - 11904: 0xDD48,\n\t23511 - 11904: 0xFEAE,\n\t23512 - 11904: 0xDD49,\n\t23513 - 11904: 0xDD4A,\n\t23515 - 11904: 0x876D,\n\t23518 - 11904: 0xB9E6,\n\t23519 - 11904: 0xB9EE,\n\t23520 - 11904: 0xE17E,\n\t23521 - 11904: 0xB9E8,\n\t23522 - 11904: 0xB9EC,\n\t23523 - 11904: 0xE1A1,\n\t23524 - 11904: 0xB9ED,\n\t23525 - 11904: 0xB9E9,\n\t23526 - 11904: 0xB9EA,\n\t23527 - 11904: 0xB9E7,\n\t23528 - 11904: 0xB9EB,\n\t23529 - 11904: 0xBC66,\n\t23530 - 11904: 0xD8D0,\n\t23531 - 11904: 0xBC67,\n\t23532 - 11904: 0xBC65,\n\t23534 - 11904: 0xBC64,\n\t23535 - 11904: 0xE95D,\n\t23536 - 11904: 0xBEC8,\n\t23537 - 11904: 0xECD8,\n\t23538 - 11904: 0xECD9,\n\t23539 - 11904: 0xFBD1,\n\t23541 - 11904: 0xC364,\n\t23542 - 11904: 0xC45F,\n\t23544 - 11904: 0xA46F,\n\t23546 - 11904: 0xA678,\n\t23551 - 11904: 0xFB75,\n\t23553 - 11904: 0xABCA,\n\t23555 - 11904: 0xD169,\n\t23556 - 11904: 0xAE67,\n\t23557 - 11904: 0xFBD4,\n\t23559 - 11904: 0xB14E,\n\t23560 - 11904: 0xB14D,\n\t23561 - 11904: 0xB14C,\n\t23562 - 11904: 0xB44C,\n\t23563 - 11904: 0xB44D,\n\t23564 - 11904: 0xD8D7,\n\t23565 - 11904: 0xB9EF,\n\t23566 - 11904: 0xBEC9,\n\t23567 - 11904: 0xA470,\n\t23568 - 11904: 0xC95C,\n\t23569 - 11904: 0xA4D6,\n\t23570 - 11904: 0xC974,\n\t23571 - 11904: 0xFBD6,\n\t23572 - 11904: 0xFBD8,\n\t23573 - 11904: 0xC9D4,\n\t23574 - 11904: 0xA679,\n\t23578 - 11904: 0xA97C,\n\t23580 - 11904: 0x8B5D,\n\t23582 - 11904: 0x934C,\n\t23583 - 11904: 0xDD4B,\n\t23584 - 11904: 0x9AE2,\n\t23586 - 11904: 0xA471,\n\t23587 - 11904: 0x8BC9,\n\t23588 - 11904: 0xA4D7,\n\t23589 - 11904: 0xC9D5,\n\t23592 - 11904: 0xCABE,\n\t23594 - 11904: 0xCABF,\n\t23596 - 11904: 0xA7BC,\n\t23600 - 11904: 0xD8D8,\n\t23601 - 11904: 0xB44E,\n\t23603 - 11904: 0xDD4C,\n\t23607 - 11904: 0xC0AA,\n\t23608 - 11904: 0xA472,\n\t23609 - 11904: 0xA4A8,\n\t23610 - 11904: 0xA4D8,\n\t23611 - 11904: 0xC975,\n\t23612 - 11904: 0xA5A7,\n\t23614 - 11904: 0xA7C0,\n\t23615 - 11904: 0xA7BF,\n\t23616 - 11904: 0xA7BD,\n\t23617 - 11904: 0xA7BE,\n\t23620 - 11904: 0xCC59,\n\t23621 - 11904: 0xA97E,\n\t23622 - 11904: 0xA9A1,\n\t23623 - 11904: 0xCC5A,\n\t23624 - 11904: 0xA97D,\n\t23625 - 11904: 0xFBDB,\n\t23626 - 11904: 0x9FC9,\n\t23627 - 11904: 0xABCE,\n\t23628 - 11904: 0xCE78,\n\t23629 - 11904: 0xABCD,\n\t23630 - 11904: 0xABCB,\n\t23631 - 11904: 0xABCC,\n\t23632 - 11904: 0xAE6A,\n\t23633 - 11904: 0xAE68,\n\t23635 - 11904: 0x9F44,\n\t23636 - 11904: 0xD16B,\n\t23637 - 11904: 0xAE69,\n\t23638 - 11904: 0xD16A,\n\t23640 - 11904: 0xAE5E,\n\t23641 - 11904: 0xD4F3,\n\t23644 - 11904: 0xB150,\n\t23645 - 11904: 0xB151,\n\t23646 - 11904: 0x98ED,\n\t23648 - 11904: 0xB14F,\n\t23650 - 11904: 0xB9F0,\n\t23651 - 11904: 0xE1A2,\n\t23652 - 11904: 0xBC68,\n\t23653 - 11904: 0xBC69,\n\t23655 - 11904: 0xE561,\n\t23656 - 11904: 0xC0AB,\n\t23657 - 11904: 0xEFC2,\n\t23658 - 11904: 0xEFC3,\n\t23660 - 11904: 0xC4DD,\n\t23661 - 11904: 0xF8A8,\n\t23662 - 11904: 0xC94B,\n\t23663 - 11904: 0xA4D9,\n\t23665 - 11904: 0xA473,\n\t23667 - 11904: 0xC977,\n\t23668 - 11904: 0xC976,\n\t23672 - 11904: 0x8CE9,\n\t23673 - 11904: 0xA67A,\n\t23674 - 11904: 0xC9D7,\n\t23675 - 11904: 0xC9D8,\n\t23676 - 11904: 0xC9D6,\n\t23678 - 11904: 0xC9D9,\n\t23685 - 11904: 0xFBDD,\n\t23686 - 11904: 0xCAC7,\n\t23688 - 11904: 0xCAC2,\n\t23689 - 11904: 0xCAC4,\n\t23690 - 11904: 0xCAC6,\n\t23691 - 11904: 0xCAC3,\n\t23692 - 11904: 0xA7C4,\n\t23693 - 11904: 0xCAC0,\n\t23695 - 11904: 0xCAC1,\n\t23696 - 11904: 0xA7C1,\n\t23697 - 11904: 0xA7C2,\n\t23698 - 11904: 0xCAC5,\n\t23699 - 11904: 0xCAC8,\n\t23700 - 11904: 0xA7C3,\n\t23701 - 11904: 0xCAC9,\n\t23705 - 11904: 0x8DF2,\n\t23706 - 11904: 0x8964,\n\t23708 - 11904: 0xFDF2,\n\t23709 - 11904: 0xCC68,\n\t23710 - 11904: 0x934D,\n\t23711 - 11904: 0xCC62,\n\t23712 - 11904: 0xCC5D,\n\t23713 - 11904: 0xA9A3,\n\t23714 - 11904: 0xCC65,\n\t23715 - 11904: 0xCC63,\n\t23716 - 11904: 0xCC5C,\n\t23717 - 11904: 0xCC69,\n\t23718 - 11904: 0xCC6C,\n\t23719 - 11904: 0xCC67,\n\t23720 - 11904: 0xCC60,\n\t23721 - 11904: 0xA9A5,\n\t23722 - 11904: 0xCC66,\n\t23723 - 11904: 0xA9A6,\n\t23724 - 11904: 0xCC61,\n\t23725 - 11904: 0xCC64,\n\t23726 - 11904: 0xCC5B,\n\t23727 - 11904: 0xCC5F,\n\t23728 - 11904: 0xCC6B,\n\t23729 - 11904: 0xA9A7,\n\t23731 - 11904: 0xA9A8,\n\t23733 - 11904: 0xCC5E,\n\t23734 - 11904: 0xCC6A,\n\t23735 - 11904: 0xA9A2,\n\t23736 - 11904: 0xA9A4,\n\t23738 - 11904: 0xFBE7,\n\t23745 - 11904: 0xA0F2,\n\t23746 - 11904: 0x9868,\n\t23750 - 11904: 0xCEAB,\n\t23751 - 11904: 0xCEA4,\n\t23752 - 11904: 0xCEAA,\n\t23753 - 11904: 0xCEA3,\n\t23754 - 11904: 0xCEA5,\n\t23755 - 11904: 0xCE7D,\n\t23756 - 11904: 0xCE7B,\n\t23758 - 11904: 0xCEAC,\n\t23759 - 11904: 0xCEA9,\n\t23760 - 11904: 0xCE79,\n\t23761 - 11904: 0x9F58,\n\t23762 - 11904: 0xABD0,\n\t23763 - 11904: 0xCEA7,\n\t23764 - 11904: 0xCEA8,\n\t23765 - 11904: 0x8CE6,\n\t23766 - 11904: 0xCEA6,\n\t23767 - 11904: 0xCE7C,\n\t23768 - 11904: 0xCE7A,\n\t23769 - 11904: 0xABCF,\n\t23770 - 11904: 0xCEA2,\n\t23771 - 11904: 0xCE7E,\n\t23774 - 11904: 0xCEA1,\n\t23775 - 11904: 0xCEAD,\n\t23781 - 11904: 0x8D73,\n\t23784 - 11904: 0xAE6F,\n\t23785 - 11904: 0xFBDE,\n\t23786 - 11904: 0xAE6E,\n\t23788 - 11904: 0xD16C,\n\t23789 - 11904: 0xAE6B,\n\t23790 - 11904: 0xD16E,\n\t23791 - 11904: 0xFBDF,\n\t23792 - 11904: 0xAE70,\n\t23793 - 11904: 0xD16F,\n\t23796 - 11904: 0xAE73,\n\t23797 - 11904: 0x8C48,\n\t23798 - 11904: 0xAE71,\n\t23799 - 11904: 0xD170,\n\t23800 - 11904: 0xCEAE,\n\t23801 - 11904: 0xD172,\n\t23803 - 11904: 0xAE6D,\n\t23804 - 11904: 0x8774,\n\t23805 - 11904: 0xAE6C,\n\t23807 - 11904: 0xD16D,\n\t23808 - 11904: 0xD171,\n\t23809 - 11904: 0xAE72,\n\t23814 - 11904: 0xB153,\n\t23815 - 11904: 0xB152,\n\t23819 - 11904: 0xD4F5,\n\t23820 - 11904: 0xD4F9,\n\t23821 - 11904: 0xD4FB,\n\t23822 - 11904: 0xB154,\n\t23823 - 11904: 0xD4FE,\n\t23824 - 11904: 0xFBE3,\n\t23825 - 11904: 0xB158,\n\t23826 - 11904: 0xD541,\n\t23828 - 11904: 0xB15A,\n\t23829 - 11904: 0x8DA8,\n\t23830 - 11904: 0xB156,\n\t23831 - 11904: 0xB15E,\n\t23832 - 11904: 0xFBE4,\n\t23833 - 11904: 0xB15B,\n\t23834 - 11904: 0xD4F7,\n\t23835 - 11904: 0xB155,\n\t23837 - 11904: 0xD4F6,\n\t23838 - 11904: 0xD4F4,\n\t23839 - 11904: 0xD543,\n\t23840 - 11904: 0xD4F8,\n\t23842 - 11904: 0xB157,\n\t23843 - 11904: 0xD542,\n\t23844 - 11904: 0xB15C,\n\t23845 - 11904: 0xD4FD,\n\t23846 - 11904: 0xD4FC,\n\t23847 - 11904: 0xB15D,\n\t23848 - 11904: 0xD4FA,\n\t23849 - 11904: 0xB159,\n\t23852 - 11904: 0x9C75,\n\t23854 - 11904: 0xD544,\n\t23855 - 11904: 0x9878,\n\t23856 - 11904: 0xD540,\n\t23857 - 11904: 0xD8E7,\n\t23858 - 11904: 0xD8EE,\n\t23859 - 11904: 0xD8E3,\n\t23860 - 11904: 0xB451,\n\t23861 - 11904: 0xD8DF,\n\t23862 - 11904: 0xD8EF,\n\t23863 - 11904: 0xD8D9,\n\t23864 - 11904: 0xD8EC,\n\t23865 - 11904: 0xD8EA,\n\t23866 - 11904: 0xD8E4,\n\t23868 - 11904: 0xD8ED,\n\t23869 - 11904: 0xD8E6,\n\t23870 - 11904: 0x8D60,\n\t23871 - 11904: 0xD8DE,\n\t23872 - 11904: 0xD8F0,\n\t23873 - 11904: 0xD8DC,\n\t23874 - 11904: 0xD8E9,\n\t23875 - 11904: 0xD8DA,\n\t23877 - 11904: 0xD8F1,\n\t23878 - 11904: 0xFBE5,\n\t23879 - 11904: 0xB452,\n\t23880 - 11904: 0x8D61,\n\t23881 - 11904: 0xD8EB,\n\t23882 - 11904: 0xDD4F,\n\t23883 - 11904: 0xD8DD,\n\t23884 - 11904: 0xB44F,\n\t23886 - 11904: 0xD8E1,\n\t23888 - 11904: 0xB450,\n\t23889 - 11904: 0xD8E0,\n\t23890 - 11904: 0xD8E5,\n\t23893 - 11904: 0xD8E2,\n\t23894 - 11904: 0x8D62,\n\t23895 - 11904: 0xA0A1,\n\t23897 - 11904: 0xD8E8,\n\t23899 - 11904: 0x9C40,\n\t23902 - 11904: 0xDD53,\n\t23906 - 11904: 0xDD56,\n\t23907 - 11904: 0xDD4E,\n\t23909 - 11904: 0xDD50,\n\t23911 - 11904: 0xDD55,\n\t23912 - 11904: 0xDD54,\n\t23913 - 11904: 0xB743,\n\t23915 - 11904: 0xD8DB,\n\t23916 - 11904: 0xDD52,\n\t23919 - 11904: 0xB744,\n\t23920 - 11904: 0x98AD,\n\t23921 - 11904: 0xDD4D,\n\t23922 - 11904: 0xDD51,\n\t23924 - 11904: 0x9EEA,\n\t23927 - 11904: 0xE1A9,\n\t23928 - 11904: 0x8CEC,\n\t23929 - 11904: 0xE1B0,\n\t23930 - 11904: 0xE1A7,\n\t23931 - 11904: 0x8CD4,\n\t23932 - 11904: 0xE1AE,\n\t23933 - 11904: 0xE1A5,\n\t23934 - 11904: 0xE1AD,\n\t23935 - 11904: 0xE1B1,\n\t23936 - 11904: 0xE1A4,\n\t23937 - 11904: 0xE1A8,\n\t23938 - 11904: 0xE1A3,\n\t23940 - 11904: 0xB9F1,\n\t23941 - 11904: 0x9CEB,\n\t23942 - 11904: 0xE1A6,\n\t23943 - 11904: 0xB9F2,\n\t23944 - 11904: 0xE1AC,\n\t23945 - 11904: 0xE1AB,\n\t23946 - 11904: 0xE1AA,\n\t23947 - 11904: 0xFBE0,\n\t23949 - 11904: 0xE1AF,\n\t23950 - 11904: 0x9F51,\n\t23954 - 11904: 0xE565,\n\t23955 - 11904: 0xE567,\n\t23956 - 11904: 0xBC6B,\n\t23957 - 11904: 0xE568,\n\t23959 - 11904: 0xE563,\n\t23961 - 11904: 0xE562,\n\t23962 - 11904: 0xE56C,\n\t23964 - 11904: 0xE56A,\n\t23965 - 11904: 0xBC6A,\n\t23966 - 11904: 0xE56D,\n\t23967 - 11904: 0xE564,\n\t23968 - 11904: 0xE569,\n\t23969 - 11904: 0xE56B,\n\t23970 - 11904: 0xE566,\n\t23972 - 11904: 0x8D65,\n\t23975 - 11904: 0xE961,\n\t23976 - 11904: 0xE966,\n\t23977 - 11904: 0xE960,\n\t23978 - 11904: 0xE965,\n\t23979 - 11904: 0x9CF1,\n\t23980 - 11904: 0xE95E,\n\t23981 - 11904: 0xE968,\n\t23982 - 11904: 0xE964,\n\t23983 - 11904: 0xE969,\n\t23984 - 11904: 0xE963,\n\t23985 - 11904: 0xE95F,\n\t23986 - 11904: 0xE967,\n\t23988 - 11904: 0xE96A,\n\t23989 - 11904: 0xE962,\n\t23990 - 11904: 0xFC58,\n\t23991 - 11904: 0xECDA,\n\t23992 - 11904: 0xC0AF,\n\t23993 - 11904: 0x8D66,\n\t23994 - 11904: 0xC0AD,\n\t23996 - 11904: 0xC0AC,\n\t23997 - 11904: 0xC0AE,\n\t24000 - 11904: 0xEFC4,\n\t24001 - 11904: 0x9654,\n\t24002 - 11904: 0xF172,\n\t24003 - 11904: 0xF1FD,\n\t24006 - 11904: 0xF444,\n\t24007 - 11904: 0xF445,\n\t24009 - 11904: 0xC460,\n\t24011 - 11904: 0xF5C9,\n\t24013 - 11904: 0xC4DE,\n\t24015 - 11904: 0xF5CA,\n\t24017 - 11904: 0xF6DE,\n\t24018 - 11904: 0xC572,\n\t24020 - 11904: 0xC571,\n\t24021 - 11904: 0xF6DD,\n\t24022 - 11904: 0xC5C9,\n\t24023 - 11904: 0xFBE8,\n\t24024 - 11904: 0xF7D6,\n\t24027 - 11904: 0xC6CC,\n\t24029 - 11904: 0xA474,\n\t24030 - 11904: 0xA67B,\n\t24031 - 11904: 0xC9DA,\n\t24032 - 11904: 0xCACA,\n\t24033 - 11904: 0xA8B5,\n\t24034 - 11904: 0xB15F,\n\t24037 - 11904: 0xA475,\n\t24038 - 11904: 0xA5AA,\n\t24039 - 11904: 0xA5A9,\n\t24040 - 11904: 0xA5A8,\n\t24043 - 11904: 0xA7C5,\n\t24046 - 11904: 0xAE74,\n\t24048 - 11904: 0xDD57,\n\t24049 - 11904: 0xA476,\n\t24050 - 11904: 0xA477,\n\t24051 - 11904: 0xA478,\n\t24052 - 11904: 0xA4DA,\n\t24053 - 11904: 0x9FCE,\n\t24055 - 11904: 0xABD1,\n\t24057 - 11904: 0xCEAF,\n\t24061 - 11904: 0xB453,\n\t24062 - 11904: 0xA479,\n\t24063 - 11904: 0xC95D,\n\t24066 - 11904: 0xA5AB,\n\t24067 - 11904: 0xA5AC,\n\t24068 - 11904: 0xC978,\n\t24070 - 11904: 0xA67C,\n\t24073 - 11904: 0xFBFC,\n\t24074 - 11904: 0xCACB,\n\t24075 - 11904: 0x9AE4,\n\t24076 - 11904: 0xA7C6,\n\t24078 - 11904: 0xCACC,\n\t24081 - 11904: 0xA9AE,\n\t24082 - 11904: 0x9F75,\n\t24084 - 11904: 0xCC6E,\n\t24085 - 11904: 0xA9AC,\n\t24086 - 11904: 0xA9AB,\n\t24087 - 11904: 0xCC6D,\n\t24088 - 11904: 0xA9A9,\n\t24089 - 11904: 0xCC6F,\n\t24090 - 11904: 0xA9AA,\n\t24091 - 11904: 0xA9AD,\n\t24093 - 11904: 0xABD2,\n\t24095 - 11904: 0xABD4,\n\t24096 - 11904: 0xCEB3,\n\t24097 - 11904: 0xCEB0,\n\t24098 - 11904: 0xCEB1,\n\t24099 - 11904: 0xCEB2,\n\t24100 - 11904: 0xCEB4,\n\t24101 - 11904: 0xABD3,\n\t24104 - 11904: 0xD174,\n\t24105 - 11904: 0xD173,\n\t24107 - 11904: 0xAE76,\n\t24109 - 11904: 0xAE75,\n\t24110 - 11904: 0xFBF1,\n\t24115 - 11904: 0xB162,\n\t24116 - 11904: 0xD546,\n\t24118 - 11904: 0xB161,\n\t24119 - 11904: 0xB163,\n\t24120 - 11904: 0xB160,\n\t24125 - 11904: 0xB455,\n\t24126 - 11904: 0xD545,\n\t24128 - 11904: 0xB456,\n\t24129 - 11904: 0xD8F3,\n\t24130 - 11904: 0x8D69,\n\t24131 - 11904: 0xB457,\n\t24132 - 11904: 0xD8F2,\n\t24133 - 11904: 0xB454,\n\t24136 - 11904: 0x934F,\n\t24138 - 11904: 0xDD5A,\n\t24139 - 11904: 0xDD5C,\n\t24140 - 11904: 0xB745,\n\t24141 - 11904: 0xDD5B,\n\t24142 - 11904: 0xDD59,\n\t24143 - 11904: 0xDD58,\n\t24147 - 11904: 0xE1B4,\n\t24148 - 11904: 0xB9F7,\n\t24149 - 11904: 0xB9F5,\n\t24151 - 11904: 0xB9F6,\n\t24152 - 11904: 0xE1B2,\n\t24153 - 11904: 0xE1B3,\n\t24155 - 11904: 0xB9F3,\n\t24156 - 11904: 0xE571,\n\t24157 - 11904: 0xE56F,\n\t24158 - 11904: 0x934E,\n\t24159 - 11904: 0xBC6D,\n\t24160 - 11904: 0xE570,\n\t24161 - 11904: 0xBC6E,\n\t24162 - 11904: 0xBC6C,\n\t24163 - 11904: 0xB9F4,\n\t24166 - 11904: 0xE96D,\n\t24167 - 11904: 0xE96B,\n\t24168 - 11904: 0xE96C,\n\t24169 - 11904: 0xE56E,\n\t24170 - 11904: 0xECDC,\n\t24171 - 11904: 0xC0B0,\n\t24172 - 11904: 0xECDB,\n\t24173 - 11904: 0xEFC5,\n\t24174 - 11904: 0xEFC6,\n\t24175 - 11904: 0xE96E,\n\t24176 - 11904: 0xF1FE,\n\t24178 - 11904: 0xA47A,\n\t24179 - 11904: 0xA5AD,\n\t24180 - 11904: 0xA67E,\n\t24181 - 11904: 0xFBF3,\n\t24182 - 11904: 0xA67D,\n\t24184 - 11904: 0xA9AF,\n\t24185 - 11904: 0xB746,\n\t24186 - 11904: 0xFBF4,\n\t24187 - 11904: 0xA4DB,\n\t24188 - 11904: 0xA5AE,\n\t24189 - 11904: 0xABD5,\n\t24190 - 11904: 0xB458,\n\t24191 - 11904: 0xC6CE,\n\t24192 - 11904: 0xC979,\n\t24194 - 11904: 0xC97A,\n\t24195 - 11904: 0xFBC3,\n\t24196 - 11904: 0xC9DC,\n\t24198 - 11904: 0x8965,\n\t24199 - 11904: 0xA7C8,\n\t24200 - 11904: 0xCAD0,\n\t24201 - 11904: 0xCACE,\n\t24202 - 11904: 0xA7C9,\n\t24203 - 11904: 0xCACD,\n\t24204 - 11904: 0xCACF,\n\t24205 - 11904: 0xCAD1,\n\t24207 - 11904: 0xA7C7,\n\t24210 - 11904: 0x8C7A,\n\t24213 - 11904: 0xA9B3,\n\t24214 - 11904: 0xA9B4,\n\t24215 - 11904: 0xA9B1,\n\t24217 - 11904: 0x8C7B,\n\t24218 - 11904: 0xA9B0,\n\t24219 - 11904: 0xCEB8,\n\t24220 - 11904: 0xA9B2,\n\t24224 - 11904: 0xABD6,\n\t24226 - 11904: 0xCEB7,\n\t24227 - 11904: 0xCEB9,\n\t24228 - 11904: 0xCEB6,\n\t24229 - 11904: 0xCEBA,\n\t24230 - 11904: 0xABD7,\n\t24231 - 11904: 0xAE79,\n\t24232 - 11904: 0xD175,\n\t24234 - 11904: 0xD177,\n\t24235 - 11904: 0xAE77,\n\t24236 - 11904: 0xD178,\n\t24237 - 11904: 0xAE78,\n\t24238 - 11904: 0xD176,\n\t24240 - 11904: 0xCEB5,\n\t24241 - 11904: 0xD547,\n\t24242 - 11904: 0xD54A,\n\t24243 - 11904: 0xD54B,\n\t24244 - 11904: 0xD548,\n\t24245 - 11904: 0xB167,\n\t24246 - 11904: 0xB166,\n\t24247 - 11904: 0xB164,\n\t24248 - 11904: 0xB165,\n\t24249 - 11904: 0xD549,\n\t24253 - 11904: 0x8D6A,\n\t24254 - 11904: 0xB168,\n\t24257 - 11904: 0xB45A,\n\t24258 - 11904: 0xB45B,\n\t24260 - 11904: 0xB45C,\n\t24261 - 11904: 0xDD5D,\n\t24262 - 11904: 0xDD5F,\n\t24263 - 11904: 0xDD61,\n\t24264 - 11904: 0xB748,\n\t24265 - 11904: 0xB747,\n\t24266 - 11904: 0xB459,\n\t24267 - 11904: 0xDD60,\n\t24268 - 11904: 0xDD5E,\n\t24269 - 11904: 0x9353,\n\t24270 - 11904: 0xE1B8,\n\t24272 - 11904: 0xFBF9,\n\t24273 - 11904: 0xE1B6,\n\t24274 - 11904: 0xE1BC,\n\t24275 - 11904: 0xB9F8,\n\t24276 - 11904: 0xE1BD,\n\t24277 - 11904: 0xE1BA,\n\t24278 - 11904: 0xB9F9,\n\t24279 - 11904: 0xE1B7,\n\t24280 - 11904: 0xE1B5,\n\t24281 - 11904: 0xE1BB,\n\t24282 - 11904: 0xBC70,\n\t24283 - 11904: 0xE573,\n\t24284 - 11904: 0xE1B9,\n\t24285 - 11904: 0xBC72,\n\t24286 - 11904: 0xE574,\n\t24287 - 11904: 0xBC71,\n\t24288 - 11904: 0xBC74,\n\t24289 - 11904: 0xE575,\n\t24290 - 11904: 0xBC6F,\n\t24291 - 11904: 0xBC73,\n\t24293 - 11904: 0xE973,\n\t24294 - 11904: 0xE971,\n\t24295 - 11904: 0xE970,\n\t24296 - 11904: 0xE972,\n\t24297 - 11904: 0xE96F,\n\t24300 - 11904: 0xC366,\n\t24302 - 11904: 0xF446,\n\t24303 - 11904: 0xF447,\n\t24305 - 11904: 0xF5CB,\n\t24306 - 11904: 0xF6DF,\n\t24307 - 11904: 0xC655,\n\t24308 - 11904: 0xFBFD,\n\t24310 - 11904: 0xA9B5,\n\t24311 - 11904: 0xA7CA,\n\t24312 - 11904: 0x9059,\n\t24313 - 11904: 0xFC40,\n\t24314 - 11904: 0xABD8,\n\t24315 - 11904: 0xFC41,\n\t24316 - 11904: 0xFC43,\n\t24318 - 11904: 0xA47B,\n\t24319 - 11904: 0xA4DC,\n\t24321 - 11904: 0xA5AF,\n\t24322 - 11904: 0xC9DD,\n\t24324 - 11904: 0xA7CB,\n\t24325 - 11904: 0xCAD2,\n\t24327 - 11904: 0xCEBB,\n\t24328 - 11904: 0xABD9,\n\t24330 - 11904: 0xB9FA,\n\t24331 - 11904: 0xA47C,\n\t24332 - 11904: 0x9FD8,\n\t24333 - 11904: 0xFC46,\n\t24334 - 11904: 0x9362,\n\t24335 - 11904: 0xA6A1,\n\t24338 - 11904: 0xB749,\n\t24339 - 11904: 0xA47D,\n\t24340 - 11904: 0xA4DD,\n\t24341 - 11904: 0xA4DE,\n\t24343 - 11904: 0xA5B1,\n\t24344 - 11904: 0xA5B0,\n\t24346 - 11904: 0xC9DE,\n\t24347 - 11904: 0xA6A2,\n\t24349 - 11904: 0xCAD3,\n\t24351 - 11904: 0xA7CC,\n\t24354 - 11904: 0xCC71,\n\t24355 - 11904: 0xCC72,\n\t24356 - 11904: 0xCC73,\n\t24357 - 11904: 0x8D6B,\n\t24358 - 11904: 0xA9B6,\n\t24359 - 11904: 0xA9B7,\n\t24360 - 11904: 0xCC70,\n\t24361 - 11904: 0xA9B8,\n\t24365 - 11904: 0xABDA,\n\t24366 - 11904: 0xCEBC,\n\t24368 - 11904: 0xD17A,\n\t24369 - 11904: 0xAE7A,\n\t24371 - 11904: 0xD179,\n\t24373 - 11904: 0xB169,\n\t24374 - 11904: 0xD54C,\n\t24375 - 11904: 0xB16A,\n\t24376 - 11904: 0xD54D,\n\t24378 - 11904: 0xFC4C,\n\t24379 - 11904: 0x8CFE,\n\t24380 - 11904: 0xB45D,\n\t24384 - 11904: 0xDD62,\n\t24387 - 11904: 0xE1BF,\n\t24388 - 11904: 0xE1BE,\n\t24390 - 11904: 0xB9FB,\n\t24392 - 11904: 0xBC75,\n\t24393 - 11904: 0xE576,\n\t24394 - 11904: 0xBECA,\n\t24395 - 11904: 0xE974,\n\t24396 - 11904: 0xC0B1,\n\t24397 - 11904: 0x95B8,\n\t24398 - 11904: 0xC573,\n\t24399 - 11904: 0xF7D8,\n\t24400 - 11904: 0xC6D0,\n\t24401 - 11904: 0x8BCA,\n\t24404 - 11904: 0xCC74,\n\t24406 - 11904: 0xCEBD,\n\t24407 - 11904: 0xB16B,\n\t24408 - 11904: 0xFC4F,\n\t24409 - 11904: 0xB74A,\n\t24412 - 11904: 0x987A,\n\t24413 - 11904: 0xC255,\n\t24417 - 11904: 0xC6D1,\n\t24418 - 11904: 0xA7CE,\n\t24419 - 11904: 0xFC51,\n\t24420 - 11904: 0xA7CD,\n\t24421 - 11904: 0xABDB,\n\t24423 - 11904: 0xD17B,\n\t24425 - 11904: 0xB16D,\n\t24426 - 11904: 0xB343,\n\t24427 - 11904: 0xB16E,\n\t24428 - 11904: 0xB16C,\n\t24429 - 11904: 0xB45E,\n\t24431 - 11904: 0xE1C0,\n\t24432 - 11904: 0xB9FC,\n\t24433 - 11904: 0xBC76,\n\t24434 - 11904: 0xFC54,\n\t24435 - 11904: 0xC94C,\n\t24436 - 11904: 0xC9DF,\n\t24438 - 11904: 0xCAD5,\n\t24439 - 11904: 0xA7CF,\n\t24440 - 11904: 0xCAD4,\n\t24441 - 11904: 0xA7D0,\n\t24443 - 11904: 0xFAAF,\n\t24444 - 11904: 0xA9BC,\n\t24445 - 11904: 0xCC77,\n\t24446 - 11904: 0xCC76,\n\t24447 - 11904: 0xA9BB,\n\t24448 - 11904: 0xA9B9,\n\t24449 - 11904: 0xA9BA,\n\t24450 - 11904: 0xCC75,\n\t24451 - 11904: 0x8D6C,\n\t24453 - 11904: 0xABDD,\n\t24454 - 11904: 0xCEBE,\n\t24455 - 11904: 0xABE0,\n\t24456 - 11904: 0xABDC,\n\t24457 - 11904: 0xABE2,\n\t24458 - 11904: 0xABDE,\n\t24459 - 11904: 0xABDF,\n\t24460 - 11904: 0xABE1,\n\t24464 - 11904: 0xAE7D,\n\t24465 - 11904: 0xAE7C,\n\t24466 - 11904: 0xAE7B,\n\t24470 - 11904: 0xD54F,\n\t24471 - 11904: 0xB16F,\n\t24472 - 11904: 0xB172,\n\t24473 - 11904: 0xB170,\n\t24475 - 11904: 0xD54E,\n\t24476 - 11904: 0xB175,\n\t24478 - 11904: 0xB171,\n\t24479 - 11904: 0xD550,\n\t24480 - 11904: 0xB174,\n\t24481 - 11904: 0xB173,\n\t24484 - 11904: 0xFA61,\n\t24485 - 11904: 0xD8F6,\n\t24486 - 11904: 0xD8F5,\n\t24487 - 11904: 0xFC57,\n\t24488 - 11904: 0xB461,\n\t24489 - 11904: 0xB45F,\n\t24490 - 11904: 0xB460,\n\t24491 - 11904: 0xD8F7,\n\t24492 - 11904: 0xB74B,\n\t24493 - 11904: 0xDD64,\n\t24494 - 11904: 0xB74C,\n\t24495 - 11904: 0xDD63,\n\t24497 - 11904: 0x9B70,\n\t24498 - 11904: 0xE577,\n\t24501 - 11904: 0xBC78,\n\t24502 - 11904: 0xE1C1,\n\t24503 - 11904: 0xBC77,\n\t24505 - 11904: 0xB9FD,\n\t24506 - 11904: 0xA051,\n\t24507 - 11904: 0xECDE,\n\t24508 - 11904: 0xE975,\n\t24509 - 11904: 0xC0B2,\n\t24510 - 11904: 0xECDD,\n\t24511 - 11904: 0xF240,\n\t24512 - 11904: 0xF448,\n\t24513 - 11904: 0xF449,\n\t24514 - 11904: 0x8C7C,\n\t24515 - 11904: 0xA4DF,\n\t24516 - 11904: 0x8BCB,\n\t24517 - 11904: 0xA5B2,\n\t24521 - 11904: 0xC97B,\n\t24524 - 11904: 0xA7D2,\n\t24525 - 11904: 0xA7D4,\n\t24527 - 11904: 0xC9E2,\n\t24528 - 11904: 0xCAD8,\n\t24529 - 11904: 0xCAD7,\n\t24530 - 11904: 0xCAD6,\n\t24532 - 11904: 0xC9E1,\n\t24533 - 11904: 0xC9E0,\n\t24534 - 11904: 0xA6A4,\n\t24535 - 11904: 0xA7D3,\n\t24536 - 11904: 0xA7D1,\n\t24537 - 11904: 0xA6A3,\n\t24539 - 11904: 0x936E,\n\t24541 - 11904: 0xA9BD,\n\t24542 - 11904: 0xCC78,\n\t24543 - 11904: 0xFCD5,\n\t24544 - 11904: 0xA9BE,\n\t24545 - 11904: 0xCADD,\n\t24547 - 11904: 0xCADF,\n\t24548 - 11904: 0xCADE,\n\t24549 - 11904: 0xCC79,\n\t24552 - 11904: 0xCADA,\n\t24554 - 11904: 0xA7D8,\n\t24555 - 11904: 0xA7D6,\n\t24557 - 11904: 0xCAD9,\n\t24558 - 11904: 0xCADB,\n\t24559 - 11904: 0xCAE1,\n\t24561 - 11904: 0xA7D5,\n\t24563 - 11904: 0xCADC,\n\t24564 - 11904: 0xCAE5,\n\t24565 - 11904: 0xA9C0,\n\t24567 - 11904: 0xCAE2,\n\t24568 - 11904: 0xA7D7,\n\t24570 - 11904: 0xCAE0,\n\t24571 - 11904: 0xCAE3,\n\t24573 - 11904: 0xA9BF,\n\t24575 - 11904: 0xA9C1,\n\t24576 - 11904: 0xCAE4,\n\t24585 - 11904: 0xCCAF,\n\t24586 - 11904: 0xCCA2,\n\t24587 - 11904: 0xCC7E,\n\t24588 - 11904: 0xCCAE,\n\t24589 - 11904: 0xCCA9,\n\t24590 - 11904: 0xABE7,\n\t24591 - 11904: 0xA9C2,\n\t24592 - 11904: 0xCCAA,\n\t24593 - 11904: 0xCCAD,\n\t24594 - 11904: 0xABE3,\n\t24595 - 11904: 0xCCAC,\n\t24596 - 11904: 0xA9C3,\n\t24597 - 11904: 0xA9C8,\n\t24598 - 11904: 0xA9C6,\n\t24599 - 11904: 0xCCA3,\n\t24601 - 11904: 0xCC7C,\n\t24602 - 11904: 0xCCA5,\n\t24603 - 11904: 0xA9CD,\n\t24604 - 11904: 0xCCB0,\n\t24605 - 11904: 0xABE4,\n\t24606 - 11904: 0xCCA6,\n\t24608 - 11904: 0xABE5,\n\t24609 - 11904: 0xA9C9,\n\t24610 - 11904: 0xCCA8,\n\t24611 - 11904: 0xFCA9,\n\t24612 - 11904: 0xCECD,\n\t24613 - 11904: 0xABE6,\n\t24614 - 11904: 0xCC7B,\n\t24615 - 11904: 0xA9CA,\n\t24616 - 11904: 0xABE8,\n\t24617 - 11904: 0xA9CB,\n\t24618 - 11904: 0xA9C7,\n\t24619 - 11904: 0xA9CC,\n\t24620 - 11904: 0xCCA7,\n\t24621 - 11904: 0xCC7A,\n\t24622 - 11904: 0xCCAB,\n\t24623 - 11904: 0xA9C4,\n\t24625 - 11904: 0xFC61,\n\t24626 - 11904: 0xCC7D,\n\t24627 - 11904: 0xCCA4,\n\t24628 - 11904: 0xCCA1,\n\t24629 - 11904: 0xA9C5,\n\t24631 - 11904: 0xCEBF,\n\t24633 - 11904: 0xCEC0,\n\t24635 - 11904: 0x8966,\n\t24640 - 11904: 0xCECA,\n\t24641 - 11904: 0xD1A1,\n\t24642 - 11904: 0xCECB,\n\t24643 - 11904: 0xABEE,\n\t24644 - 11904: 0xCECE,\n\t24645 - 11904: 0xCEC4,\n\t24646 - 11904: 0xABED,\n\t24647 - 11904: 0xCEC6,\n\t24649 - 11904: 0xCEC7,\n\t24650 - 11904: 0xFACB,\n\t24652 - 11904: 0xCEC9,\n\t24653 - 11904: 0xABE9,\n\t24656 - 11904: 0xAEA3,\n\t24658 - 11904: 0xF9DA,\n\t24659 - 11904: 0xCEC5,\n\t24660 - 11904: 0xCEC1,\n\t24661 - 11904: 0xAEA4,\n\t24664 - 11904: 0xCECF,\n\t24665 - 11904: 0xAE7E,\n\t24666 - 11904: 0xD17D,\n\t24667 - 11904: 0xCEC8,\n\t24669 - 11904: 0xD17C,\n\t24670 - 11904: 0xCEC3,\n\t24671 - 11904: 0xCECC,\n\t24674 - 11904: 0xABEC,\n\t24675 - 11904: 0xAEA1,\n\t24676 - 11904: 0xABF2,\n\t24677 - 11904: 0xAEA2,\n\t24678 - 11904: 0xCED0,\n\t24679 - 11904: 0xD17E,\n\t24680 - 11904: 0xABEB,\n\t24681 - 11904: 0xAEA6,\n\t24682 - 11904: 0xABF1,\n\t24683 - 11904: 0xABF0,\n\t24684 - 11904: 0xABEF,\n\t24685 - 11904: 0xAEA5,\n\t24686 - 11904: 0xCED1,\n\t24687 - 11904: 0xAEA7,\n\t24688 - 11904: 0xABEA,\n\t24690 - 11904: 0xCEC2,\n\t24693 - 11904: 0x937A,\n\t24695 - 11904: 0xA0E0,\n\t24702 - 11904: 0x936B,\n\t24703 - 11904: 0xB176,\n\t24704 - 11904: 0xD1A4,\n\t24705 - 11904: 0xD1A6,\n\t24707 - 11904: 0xD1A8,\n\t24708 - 11904: 0xAEA8,\n\t24709 - 11904: 0xAEAE,\n\t24710 - 11904: 0xD553,\n\t24711 - 11904: 0xD1AC,\n\t24712 - 11904: 0xD1A3,\n\t24713 - 11904: 0xB178,\n\t24714 - 11904: 0xD551,\n\t24716 - 11904: 0xAEAD,\n\t24717 - 11904: 0xAEAB,\n\t24718 - 11904: 0xD1AE,\n\t24720 - 11904: 0xD552,\n\t24722 - 11904: 0xD1A5,\n\t24724 - 11904: 0xAEAC,\n\t24725 - 11904: 0xD1A9,\n\t24726 - 11904: 0xAEAF,\n\t24727 - 11904: 0xD1AB,\n\t24730 - 11904: 0xAEAA,\n\t24731 - 11904: 0xD1AA,\n\t24732 - 11904: 0xD1AD,\n\t24733 - 11904: 0xD1A7,\n\t24734 - 11904: 0xFC6B,\n\t24735 - 11904: 0xAEA9,\n\t24736 - 11904: 0xB179,\n\t24738 - 11904: 0xD1A2,\n\t24739 - 11904: 0xB177,\n\t24740 - 11904: 0xFC6C,\n\t24743 - 11904: 0x9468,\n\t24744 - 11904: 0xB17A,\n\t24752 - 11904: 0xD555,\n\t24753 - 11904: 0xD55E,\n\t24754 - 11904: 0xB464,\n\t24755 - 11904: 0xFC6D,\n\t24756 - 11904: 0xB17C,\n\t24757 - 11904: 0xB1A3,\n\t24758 - 11904: 0xB465,\n\t24759 - 11904: 0xD560,\n\t24760 - 11904: 0xB1AA,\n\t24761 - 11904: 0xD8F9,\n\t24762 - 11904: 0xD556,\n\t24763 - 11904: 0xB1A2,\n\t24764 - 11904: 0xB1A5,\n\t24765 - 11904: 0xB17E,\n\t24766 - 11904: 0xD554,\n\t24767 - 11904: 0xD562,\n\t24768 - 11904: 0xD565,\n\t24769 - 11904: 0xD949,\n\t24771 - 11904: 0xD563,\n\t24772 - 11904: 0xD8FD,\n\t24773 - 11904: 0xB1A1,\n\t24774 - 11904: 0xB1A8,\n\t24775 - 11904: 0xB1AC,\n\t24776 - 11904: 0xD55D,\n\t24777 - 11904: 0xD8F8,\n\t24778 - 11904: 0xD561,\n\t24779 - 11904: 0xB17B,\n\t24780 - 11904: 0xD8FA,\n\t24781 - 11904: 0xD564,\n\t24782 - 11904: 0xD8FC,\n\t24783 - 11904: 0xD559,\n\t24785 - 11904: 0xB462,\n\t24787 - 11904: 0xD557,\n\t24788 - 11904: 0xD558,\n\t24789 - 11904: 0xB1A7,\n\t24791 - 11904: 0x8D71,\n\t24792 - 11904: 0xB1A6,\n\t24793 - 11904: 0xD55B,\n\t24794 - 11904: 0xB1AB,\n\t24795 - 11904: 0xD55F,\n\t24796 - 11904: 0xB1A4,\n\t24797 - 11904: 0xD55C,\n\t24798 - 11904: 0xFD64,\n\t24799 - 11904: 0xB1A9,\n\t24800 - 11904: 0xB466,\n\t24801 - 11904: 0xB463,\n\t24802 - 11904: 0xD8FB,\n\t24803 - 11904: 0x99BA,\n\t24804 - 11904: 0xD55A,\n\t24806 - 11904: 0xB17D,\n\t24807 - 11904: 0x9AD0,\n\t24808 - 11904: 0x9A61,\n\t24809 - 11904: 0xA0E5,\n\t24816 - 11904: 0xB46B,\n\t24817 - 11904: 0xB46F,\n\t24818 - 11904: 0xD940,\n\t24819 - 11904: 0xB751,\n\t24820 - 11904: 0xB46D,\n\t24821 - 11904: 0xD944,\n\t24822 - 11904: 0xB471,\n\t24823 - 11904: 0xDD65,\n\t24824 - 11904: 0xD946,\n\t24825 - 11904: 0xB753,\n\t24826 - 11904: 0xB469,\n\t24827 - 11904: 0xB46C,\n\t24828 - 11904: 0xD947,\n\t24829 - 11904: 0xA05B,\n\t24830 - 11904: 0xD948,\n\t24831 - 11904: 0xD94E,\n\t24832 - 11904: 0xB473,\n\t24833 - 11904: 0xB754,\n\t24835 - 11904: 0xD94A,\n\t24836 - 11904: 0xD94F,\n\t24837 - 11904: 0xD943,\n\t24838 - 11904: 0xB75E,\n\t24839 - 11904: 0x96AC,\n\t24840 - 11904: 0xB755,\n\t24841 - 11904: 0xB472,\n\t24842 - 11904: 0xD941,\n\t24843 - 11904: 0xD950,\n\t24844 - 11904: 0x9740,\n\t24845 - 11904: 0xB75D,\n\t24846 - 11904: 0xB470,\n\t24847 - 11904: 0xB74E,\n\t24848 - 11904: 0xD94D,\n\t24850 - 11904: 0xB474,\n\t24851 - 11904: 0xD945,\n\t24852 - 11904: 0xD8FE,\n\t24853 - 11904: 0xB46A,\n\t24854 - 11904: 0xD942,\n\t24856 - 11904: 0xD94B,\n\t24857 - 11904: 0x9EF1,\n\t24858 - 11904: 0xB74D,\n\t24859 - 11904: 0xB752,\n\t24860 - 11904: 0xB467,\n\t24861 - 11904: 0xD94C,\n\t24863 - 11904: 0xB750,\n\t24866 - 11904: 0x8C4D,\n\t24867 - 11904: 0xB468,\n\t24871 - 11904: 0xB75C,\n\t24872 - 11904: 0xE1C3,\n\t24873 - 11904: 0xDD70,\n\t24875 - 11904: 0xDD68,\n\t24876 - 11904: 0xE1C2,\n\t24878 - 11904: 0xDD6C,\n\t24879 - 11904: 0xDD6E,\n\t24880 - 11904: 0x9F7E,\n\t24882 - 11904: 0xDD6B,\n\t24884 - 11904: 0xB75B,\n\t24886 - 11904: 0xDD6A,\n\t24887 - 11904: 0xB75F,\n\t24891 - 11904: 0xE1D2,\n\t24893 - 11904: 0x8D72,\n\t24894 - 11904: 0xB75A,\n\t24895 - 11904: 0xBA40,\n\t24896 - 11904: 0xDD71,\n\t24897 - 11904: 0xE1C4,\n\t24898 - 11904: 0xFC76,\n\t24900 - 11904: 0xB758,\n\t24901 - 11904: 0xDD69,\n\t24902 - 11904: 0xDD6D,\n\t24903 - 11904: 0xB9FE,\n\t24904 - 11904: 0xB74F,\n\t24905 - 11904: 0xDD66,\n\t24906 - 11904: 0xDD67,\n\t24907 - 11904: 0xBA41,\n\t24908 - 11904: 0xB757,\n\t24909 - 11904: 0xB759,\n\t24910 - 11904: 0xB756,\n\t24911 - 11904: 0xDD6F,\n\t24912 - 11904: 0x96A9,\n\t24914 - 11904: 0xE1C8,\n\t24915 - 11904: 0xE1C9,\n\t24916 - 11904: 0xE1CE,\n\t24917 - 11904: 0xBC7D,\n\t24918 - 11904: 0xE1D5,\n\t24920 - 11904: 0xBA47,\n\t24921 - 11904: 0xA06E,\n\t24922 - 11904: 0xBA46,\n\t24923 - 11904: 0xE1D0,\n\t24924 - 11904: 0xFCAA,\n\t24925 - 11904: 0xBC7C,\n\t24926 - 11904: 0xE1C5,\n\t24927 - 11904: 0xBA45,\n\t24928 - 11904: 0xFBCD,\n\t24929 - 11904: 0xE1D4,\n\t24930 - 11904: 0xBA43,\n\t24931 - 11904: 0xBA44,\n\t24932 - 11904: 0xFC74,\n\t24933 - 11904: 0xE1D1,\n\t24934 - 11904: 0xE5AA,\n\t24935 - 11904: 0xBC7A,\n\t24936 - 11904: 0xB46E,\n\t24938 - 11904: 0xE1D3,\n\t24939 - 11904: 0xBCA3,\n\t24940 - 11904: 0xE1CB,\n\t24942 - 11904: 0xBC7B,\n\t24943 - 11904: 0xA074,\n\t24944 - 11904: 0xBCA2,\n\t24945 - 11904: 0xE1C6,\n\t24946 - 11904: 0xE1CA,\n\t24947 - 11904: 0xE1C7,\n\t24948 - 11904: 0xE1CD,\n\t24949 - 11904: 0xBA48,\n\t24950 - 11904: 0xBC79,\n\t24951 - 11904: 0xBA42,\n\t24953 - 11904: 0xE57A,\n\t24954 - 11904: 0xE1CF,\n\t24956 - 11904: 0xBCA1,\n\t24957 - 11904: 0xA071,\n\t24958 - 11904: 0xBCA4,\n\t24960 - 11904: 0xE1CC,\n\t24961 - 11904: 0xFC79,\n\t24962 - 11904: 0xBC7E,\n\t24963 - 11904: 0xE579,\n\t24967 - 11904: 0xFC7C,\n\t24969 - 11904: 0xE57E,\n\t24970 - 11904: 0xBECE,\n\t24971 - 11904: 0xE578,\n\t24972 - 11904: 0xE9A3,\n\t24973 - 11904: 0xE5A9,\n\t24974 - 11904: 0xBCA8,\n\t24976 - 11904: 0xBCA6,\n\t24977 - 11904: 0xBECC,\n\t24978 - 11904: 0xE5A6,\n\t24979 - 11904: 0xE5A2,\n\t24980 - 11904: 0xBCAC,\n\t24981 - 11904: 0x9C50,\n\t24982 - 11904: 0xE978,\n\t24984 - 11904: 0x9379,\n\t24985 - 11904: 0x9378,\n\t24986 - 11904: 0xBCAA,\n\t24987 - 11904: 0xE5A1,\n\t24988 - 11904: 0xA0DD,\n\t24989 - 11904: 0xE976,\n\t24991 - 11904: 0xE5A5,\n\t24993 - 11904: 0xE5A8,\n\t24994 - 11904: 0xE57D,\n\t24996 - 11904: 0xBCAB,\n\t24999 - 11904: 0xBCA5,\n\t25000 - 11904: 0xE977,\n\t25001 - 11904: 0xBECD,\n\t25002 - 11904: 0xE5A7,\n\t25003 - 11904: 0xBCA7,\n\t25004 - 11904: 0xBCA9,\n\t25005 - 11904: 0xE5A4,\n\t25006 - 11904: 0xBCAD,\n\t25007 - 11904: 0xE5A3,\n\t25008 - 11904: 0xE57C,\n\t25009 - 11904: 0xE57B,\n\t25010 - 11904: 0xBECB,\n\t25011 - 11904: 0xE5AB,\n\t25012 - 11904: 0xE97A,\n\t25013 - 11904: 0xECE0,\n\t25014 - 11904: 0xBED0,\n\t25015 - 11904: 0x8D75,\n\t25016 - 11904: 0xE9A2,\n\t25017 - 11904: 0x8D76,\n\t25018 - 11904: 0xE97E,\n\t25020 - 11904: 0xECE1,\n\t25022 - 11904: 0xBED1,\n\t25023 - 11904: 0xE9A1,\n\t25024 - 11904: 0x9374,\n\t25025 - 11904: 0xE97C,\n\t25026 - 11904: 0xC0B4,\n\t25027 - 11904: 0xECDF,\n\t25029 - 11904: 0xE979,\n\t25030 - 11904: 0xE97B,\n\t25031 - 11904: 0xC0B5,\n\t25032 - 11904: 0xBED3,\n\t25033 - 11904: 0xC0B3,\n\t25034 - 11904: 0xBED2,\n\t25035 - 11904: 0xC0B7,\n\t25036 - 11904: 0xE97D,\n\t25037 - 11904: 0xBECF,\n\t25039 - 11904: 0x8D77,\n\t25040 - 11904: 0xFCA5,\n\t25043 - 11904: 0xFCA2,\n\t25046 - 11904: 0xEFCF,\n\t25048 - 11904: 0xEFC7,\n\t25050 - 11904: 0x90C3,\n\t25054 - 11904: 0xECE7,\n\t25055 - 11904: 0xEFC8,\n\t25056 - 11904: 0xECE3,\n\t25058 - 11904: 0xA079,\n\t25059 - 11904: 0xC256,\n\t25060 - 11904: 0xECE5,\n\t25061 - 11904: 0xECE4,\n\t25062 - 11904: 0xC0B6,\n\t25063 - 11904: 0xECE2,\n\t25064 - 11904: 0xECE6,\n\t25065 - 11904: 0xEFD0,\n\t25066 - 11904: 0xEFCC,\n\t25067 - 11904: 0xEFCE,\n\t25069 - 11904: 0xEFC9,\n\t25070 - 11904: 0xEFCA,\n\t25072 - 11904: 0xEFCD,\n\t25073 - 11904: 0xEFCB,\n\t25074 - 11904: 0xC367,\n\t25077 - 11904: 0xC36A,\n\t25078 - 11904: 0xC369,\n\t25079 - 11904: 0xC368,\n\t25080 - 11904: 0xC461,\n\t25081 - 11904: 0xF44A,\n\t25082 - 11904: 0xC462,\n\t25083 - 11904: 0xF241,\n\t25084 - 11904: 0xC4DF,\n\t25085 - 11904: 0xF5CC,\n\t25086 - 11904: 0xC4E0,\n\t25087 - 11904: 0xC574,\n\t25088 - 11904: 0xC5CA,\n\t25089 - 11904: 0xF7D9,\n\t25091 - 11904: 0xF7DA,\n\t25092 - 11904: 0xF7DB,\n\t25095 - 11904: 0xF9BA,\n\t25096 - 11904: 0xA4E0,\n\t25097 - 11904: 0xC97C,\n\t25098 - 11904: 0xA5B3,\n\t25100 - 11904: 0xA6A6,\n\t25101 - 11904: 0xA6A7,\n\t25102 - 11904: 0xA6A5,\n\t25104 - 11904: 0xA6A8,\n\t25105 - 11904: 0xA7DA,\n\t25106 - 11904: 0xA7D9,\n\t25108 - 11904: 0xCCB1,\n\t25109 - 11904: 0xA9CF,\n\t25110 - 11904: 0xA9CE,\n\t25113 - 11904: 0xD1AF,\n\t25114 - 11904: 0xB1AD,\n\t25115 - 11904: 0xB1AE,\n\t25119 - 11904: 0xB475,\n\t25120 - 11904: 0xDD72,\n\t25121 - 11904: 0xB760,\n\t25122 - 11904: 0xB761,\n\t25123 - 11904: 0xDD74,\n\t25124 - 11904: 0xDD76,\n\t25125 - 11904: 0xDD75,\n\t25127 - 11904: 0xE1D7,\n\t25129 - 11904: 0xE1D6,\n\t25130 - 11904: 0xBA49,\n\t25131 - 11904: 0xE1D8,\n\t25132 - 11904: 0x8D79,\n\t25133 - 11904: 0xE5AC,\n\t25134 - 11904: 0xBCAE,\n\t25136 - 11904: 0xBED4,\n\t25138 - 11904: 0xC0B8,\n\t25139 - 11904: 0xC257,\n\t25140 - 11904: 0xC0B9,\n\t25142 - 11904: 0xA4E1,\n\t25143 - 11904: 0x8BFC,\n\t25145 - 11904: 0xA076,\n\t25146 - 11904: 0xCAE6,\n\t25149 - 11904: 0xCCB2,\n\t25150 - 11904: 0xA9D1,\n\t25151 - 11904: 0xA9D0,\n\t25152 - 11904: 0xA9D2,\n\t25153 - 11904: 0xABF3,\n\t25154 - 11904: 0xCED2,\n\t25155 - 11904: 0xCED3,\n\t25158 - 11904: 0xD1B0,\n\t25159 - 11904: 0xAEB0,\n\t25160 - 11904: 0xB1AF,\n\t25161 - 11904: 0xB476,\n\t25162 - 11904: 0xD951,\n\t25163 - 11904: 0xA4E2,\n\t25164 - 11904: 0x8BCD,\n\t25165 - 11904: 0xA47E,\n\t25166 - 11904: 0xA4E3,\n\t25168 - 11904: 0xC97D,\n\t25169 - 11904: 0xA5B7,\n\t25170 - 11904: 0xA5B6,\n\t25171 - 11904: 0xA5B4,\n\t25172 - 11904: 0xA5B5,\n\t25176 - 11904: 0xA6AB,\n\t25177 - 11904: 0xC9E9,\n\t25178 - 11904: 0xC9EB,\n\t25179 - 11904: 0xA6AA,\n\t25180 - 11904: 0xC9E3,\n\t25182 - 11904: 0xC9E4,\n\t25184 - 11904: 0xC9EA,\n\t25185 - 11904: 0xC9E6,\n\t25186 - 11904: 0xC9E8,\n\t25187 - 11904: 0xA6A9,\n\t25188 - 11904: 0xC9E5,\n\t25189 - 11904: 0xC9EC,\n\t25190 - 11904: 0xC9E7,\n\t25192 - 11904: 0x9F5A,\n\t25197 - 11904: 0xA7E1,\n\t25198 - 11904: 0xA7EA,\n\t25199 - 11904: 0xA7E8,\n\t25200 - 11904: 0xCAF0,\n\t25201 - 11904: 0xCAED,\n\t25202 - 11904: 0xCAF5,\n\t25203 - 11904: 0xA7E6,\n\t25204 - 11904: 0xCAF6,\n\t25206 - 11904: 0xA7DF,\n\t25207 - 11904: 0xCAF3,\n\t25209 - 11904: 0xA7E5,\n\t25210 - 11904: 0xCAEF,\n\t25211 - 11904: 0xCAEE,\n\t25212 - 11904: 0xA7E3,\n\t25213 - 11904: 0xCAF4,\n\t25214 - 11904: 0xA7E4,\n\t25215 - 11904: 0xA9D3,\n\t25216 - 11904: 0xA7DE,\n\t25217 - 11904: 0xCAF1,\n\t25218 - 11904: 0x9FF4,\n\t25219 - 11904: 0xCAE7,\n\t25220 - 11904: 0xA7DB,\n\t25221 - 11904: 0x9FBA,\n\t25222 - 11904: 0xA7EE,\n\t25223 - 11904: 0xCAEC,\n\t25224 - 11904: 0xCAF2,\n\t25225 - 11904: 0xA7E0,\n\t25226 - 11904: 0xA7E2,\n\t25228 - 11904: 0xCAE8,\n\t25230 - 11904: 0xCAE9,\n\t25231 - 11904: 0xCAEA,\n\t25232 - 11904: 0x8D7A,\n\t25233 - 11904: 0xA7ED,\n\t25234 - 11904: 0xA7E7,\n\t25235 - 11904: 0xA7EC,\n\t25236 - 11904: 0xCAEB,\n\t25237 - 11904: 0xA7EB,\n\t25238 - 11904: 0xA7DD,\n\t25239 - 11904: 0xA7DC,\n\t25240 - 11904: 0xA7E9,\n\t25245 - 11904: 0x9E45,\n\t25252 - 11904: 0x93B0,\n\t25254 - 11904: 0xA075,\n\t25256 - 11904: 0xA9E1,\n\t25257 - 11904: 0xCCBE,\n\t25258 - 11904: 0xCCB7,\n\t25259 - 11904: 0xA9DC,\n\t25260 - 11904: 0xA9EF,\n\t25261 - 11904: 0xCCB3,\n\t25262 - 11904: 0xCCBA,\n\t25263 - 11904: 0xCCBC,\n\t25264 - 11904: 0xCCBF,\n\t25265 - 11904: 0xA9EA,\n\t25267 - 11904: 0xCCBB,\n\t25268 - 11904: 0xCCB4,\n\t25269 - 11904: 0xA9E8,\n\t25270 - 11904: 0xCCB8,\n\t25272 - 11904: 0xCCC0,\n\t25273 - 11904: 0xA9D9,\n\t25275 - 11904: 0xCCBD,\n\t25276 - 11904: 0xA9E3,\n\t25277 - 11904: 0xA9E2,\n\t25278 - 11904: 0xCCB6,\n\t25279 - 11904: 0xA9D7,\n\t25281 - 11904: 0x87DD,\n\t25282 - 11904: 0xA9D8,\n\t25283 - 11904: 0x9B46,\n\t25284 - 11904: 0xA9D6,\n\t25285 - 11904: 0xFCAE,\n\t25286 - 11904: 0xA9EE,\n\t25287 - 11904: 0xA9E6,\n\t25288 - 11904: 0xA9E0,\n\t25289 - 11904: 0xA9D4,\n\t25290 - 11904: 0xCCB9,\n\t25291 - 11904: 0xA9DF,\n\t25292 - 11904: 0xA9D5,\n\t25293 - 11904: 0xA9E7,\n\t25294 - 11904: 0xA9F0,\n\t25295 - 11904: 0xCED4,\n\t25296 - 11904: 0xA9E4,\n\t25297 - 11904: 0xCCB5,\n\t25298 - 11904: 0xA9DA,\n\t25299 - 11904: 0xA9DD,\n\t25300 - 11904: 0xA9DE,\n\t25301 - 11904: 0xFCB0,\n\t25302 - 11904: 0xA9EC,\n\t25303 - 11904: 0xA9ED,\n\t25304 - 11904: 0xA9EB,\n\t25305 - 11904: 0xA9E5,\n\t25306 - 11904: 0xA9E9,\n\t25307 - 11904: 0xA9DB,\n\t25308 - 11904: 0xABF4,\n\t25311 - 11904: 0xFA51,\n\t25317 - 11904: 0x8D7B,\n\t25323 - 11904: 0xCEDA,\n\t25324 - 11904: 0xAC41,\n\t25325 - 11904: 0xABF8,\n\t25326 - 11904: 0xABFA,\n\t25327 - 11904: 0xAC40,\n\t25328 - 11904: 0xCEE6,\n\t25329 - 11904: 0xABFD,\n\t25330 - 11904: 0xD1B1,\n\t25331 - 11904: 0xAEB1,\n\t25332 - 11904: 0xAC43,\n\t25333 - 11904: 0xCED7,\n\t25334 - 11904: 0xCEDF,\n\t25335 - 11904: 0xABFE,\n\t25336 - 11904: 0xCEDE,\n\t25337 - 11904: 0xCEDB,\n\t25338 - 11904: 0xCEE3,\n\t25339 - 11904: 0xCEE5,\n\t25340 - 11904: 0xABF7,\n\t25341 - 11904: 0xABFB,\n\t25342 - 11904: 0xAC42,\n\t25343 - 11904: 0xAEB3,\n\t25344 - 11904: 0xCEE0,\n\t25345 - 11904: 0xABF9,\n\t25346 - 11904: 0xAC45,\n\t25347 - 11904: 0xCED9,\n\t25351 - 11904: 0xABFC,\n\t25352 - 11904: 0xAEB2,\n\t25353 - 11904: 0xABF6,\n\t25355 - 11904: 0xCED6,\n\t25356 - 11904: 0xCEDD,\n\t25357 - 11904: 0xCED5,\n\t25358 - 11904: 0xCED8,\n\t25359 - 11904: 0xCEDC,\n\t25360 - 11904: 0xD1B2,\n\t25361 - 11904: 0xAC44,\n\t25363 - 11904: 0xCEE1,\n\t25364 - 11904: 0xCEE2,\n\t25365 - 11904: 0xCEE4,\n\t25366 - 11904: 0xABF5,\n\t25368 - 11904: 0x8D7C,\n\t25384 - 11904: 0xAEC1,\n\t25385 - 11904: 0xD1BE,\n\t25386 - 11904: 0xAEBF,\n\t25387 - 11904: 0xAEC0,\n\t25388 - 11904: 0xD1B4,\n\t25389 - 11904: 0xD1C4,\n\t25390 - 11904: 0x9ED6,\n\t25391 - 11904: 0xAEB6,\n\t25393 - 11904: 0x93AC,\n\t25394 - 11904: 0xD566,\n\t25395 - 11904: 0xD1C6,\n\t25396 - 11904: 0xD1C0,\n\t25397 - 11904: 0x9F5B,\n\t25398 - 11904: 0xD1B7,\n\t25399 - 11904: 0x93A9,\n\t25400 - 11904: 0xD1C9,\n\t25401 - 11904: 0xD1BA,\n\t25402 - 11904: 0xAEBC,\n\t25403 - 11904: 0xD57D,\n\t25404 - 11904: 0xD1BD,\n\t25405 - 11904: 0xAEBE,\n\t25406 - 11904: 0xAEB5,\n\t25408 - 11904: 0xD1CB,\n\t25409 - 11904: 0xD1BF,\n\t25410 - 11904: 0xAEB8,\n\t25411 - 11904: 0xD1B8,\n\t25412 - 11904: 0xD1B5,\n\t25413 - 11904: 0xD1B6,\n\t25414 - 11904: 0xAEB9,\n\t25415 - 11904: 0xD1C5,\n\t25416 - 11904: 0xD1CC,\n\t25417 - 11904: 0xAEBB,\n\t25418 - 11904: 0xD1BC,\n\t25419 - 11904: 0xD1BB,\n\t25420 - 11904: 0xAEC3,\n\t25421 - 11904: 0xAEC2,\n\t25422 - 11904: 0xAEB4,\n\t25423 - 11904: 0xAEBA,\n\t25424 - 11904: 0xAEBD,\n\t25425 - 11904: 0xD1C8,\n\t25428 - 11904: 0xD1C2,\n\t25429 - 11904: 0xAEB7,\n\t25430 - 11904: 0xD1B3,\n\t25431 - 11904: 0xD1CA,\n\t25432 - 11904: 0xD1C1,\n\t25433 - 11904: 0xD1C3,\n\t25434 - 11904: 0xD1C7,\n\t25444 - 11904: 0xA07C,\n\t25445 - 11904: 0xD567,\n\t25447 - 11904: 0xB1B7,\n\t25448 - 11904: 0xB1CB,\n\t25449 - 11904: 0xB1CA,\n\t25451 - 11904: 0xB1BF,\n\t25452 - 11904: 0xFCB2,\n\t25453 - 11904: 0xD579,\n\t25454 - 11904: 0xD575,\n\t25455 - 11904: 0xD572,\n\t25456 - 11904: 0xD5A6,\n\t25457 - 11904: 0xB1BA,\n\t25458 - 11904: 0xB1B2,\n\t25461 - 11904: 0xD577,\n\t25462 - 11904: 0xB4A8,\n\t25463 - 11904: 0xB1B6,\n\t25464 - 11904: 0xD5A1,\n\t25465 - 11904: 0x8AC1,\n\t25466 - 11904: 0xB1CC,\n\t25467 - 11904: 0xB1C9,\n\t25468 - 11904: 0xD57B,\n\t25469 - 11904: 0xD56A,\n\t25471 - 11904: 0x9FB4,\n\t25472 - 11904: 0xB1C8,\n\t25473 - 11904: 0xD5A3,\n\t25474 - 11904: 0xD569,\n\t25475 - 11904: 0xB1BD,\n\t25476 - 11904: 0xB1C1,\n\t25477 - 11904: 0xD5A2,\n\t25479 - 11904: 0xD573,\n\t25480 - 11904: 0xB1C2,\n\t25481 - 11904: 0xB1BC,\n\t25482 - 11904: 0xD568,\n\t25483 - 11904: 0xFCAC,\n\t25484 - 11904: 0xB478,\n\t25485 - 11904: 0xD5A5,\n\t25486 - 11904: 0xD571,\n\t25487 - 11904: 0xB1C7,\n\t25488 - 11904: 0xD574,\n\t25489 - 11904: 0xD5A4,\n\t25490 - 11904: 0xB1C6,\n\t25492 - 11904: 0xD952,\n\t25494 - 11904: 0xB1B3,\n\t25495 - 11904: 0xD56F,\n\t25496 - 11904: 0xB1B8,\n\t25497 - 11904: 0xB1C3,\n\t25499 - 11904: 0xB1BE,\n\t25500 - 11904: 0xD578,\n\t25501 - 11904: 0xD56E,\n\t25502 - 11904: 0xD56C,\n\t25503 - 11904: 0xD57E,\n\t25504 - 11904: 0xB1B0,\n\t25505 - 11904: 0xB1C4,\n\t25506 - 11904: 0xB1B4,\n\t25507 - 11904: 0xB477,\n\t25508 - 11904: 0xD57C,\n\t25509 - 11904: 0xB1B5,\n\t25511 - 11904: 0xB1B1,\n\t25512 - 11904: 0xB1C0,\n\t25513 - 11904: 0xB1BB,\n\t25514 - 11904: 0xB1B9,\n\t25515 - 11904: 0xD570,\n\t25516 - 11904: 0xB1C5,\n\t25517 - 11904: 0xD56D,\n\t25518 - 11904: 0xD57A,\n\t25519 - 11904: 0xD576,\n\t25520 - 11904: 0xD954,\n\t25521 - 11904: 0xD953,\n\t25529 - 11904: 0x9E4C,\n\t25533 - 11904: 0xD56B,\n\t25534 - 11904: 0xD964,\n\t25536 - 11904: 0xB47A,\n\t25537 - 11904: 0x8FC5,\n\t25538 - 11904: 0xD96A,\n\t25539 - 11904: 0xD959,\n\t25540 - 11904: 0xD967,\n\t25541 - 11904: 0xDD77,\n\t25542 - 11904: 0xB47D,\n\t25543 - 11904: 0xD96B,\n\t25544 - 11904: 0xD96E,\n\t25545 - 11904: 0xB47C,\n\t25546 - 11904: 0xD95C,\n\t25547 - 11904: 0xD96D,\n\t25548 - 11904: 0xD96C,\n\t25549 - 11904: 0xB47E,\n\t25550 - 11904: 0xD955,\n\t25551 - 11904: 0xB479,\n\t25552 - 11904: 0xB4A3,\n\t25553 - 11904: 0x93AD,\n\t25554 - 11904: 0xB4A1,\n\t25555 - 11904: 0xD969,\n\t25557 - 11904: 0xD95F,\n\t25558 - 11904: 0xB4A5,\n\t25559 - 11904: 0xD970,\n\t25560 - 11904: 0xD968,\n\t25561 - 11904: 0xD971,\n\t25562 - 11904: 0xB4AD,\n\t25563 - 11904: 0xB4AB,\n\t25564 - 11904: 0xD966,\n\t25565 - 11904: 0xD965,\n\t25566 - 11904: 0x9DC3,\n\t25567 - 11904: 0xD963,\n\t25568 - 11904: 0xD95D,\n\t25569 - 11904: 0xB4A4,\n\t25570 - 11904: 0x8DA2,\n\t25571 - 11904: 0xB4A2,\n\t25572 - 11904: 0xD1B9,\n\t25573 - 11904: 0xD956,\n\t25574 - 11904: 0x9D4A,\n\t25575 - 11904: 0xDDB7,\n\t25576 - 11904: 0xD957,\n\t25577 - 11904: 0xB47B,\n\t25578 - 11904: 0xB4AA,\n\t25579 - 11904: 0xDD79,\n\t25581 - 11904: 0xB4A6,\n\t25582 - 11904: 0xB4A7,\n\t25583 - 11904: 0xD958,\n\t25584 - 11904: 0xD96F,\n\t25585 - 11904: 0xDD78,\n\t25586 - 11904: 0xD960,\n\t25587 - 11904: 0xD95B,\n\t25588 - 11904: 0xB4A9,\n\t25589 - 11904: 0xD961,\n\t25590 - 11904: 0xD95E,\n\t25592 - 11904: 0xFCB6,\n\t25593 - 11904: 0xB4AE,\n\t25595 - 11904: 0x8DA3,\n\t25596 - 11904: 0x9E4B,\n\t25598 - 11904: 0x9E4D,\n\t25606 - 11904: 0xB770,\n\t25607 - 11904: 0x8DA4,\n\t25609 - 11904: 0xDD7C,\n\t25610 - 11904: 0xDDB1,\n\t25611 - 11904: 0xDDB6,\n\t25612 - 11904: 0xDDAA,\n\t25613 - 11904: 0xB76C,\n\t25614 - 11904: 0xDDBB,\n\t25615 - 11904: 0xB769,\n\t25616 - 11904: 0xDD7A,\n\t25618 - 11904: 0xDD7B,\n\t25619 - 11904: 0xB762,\n\t25620 - 11904: 0xB76B,\n\t25621 - 11904: 0xDDA4,\n\t25622 - 11904: 0xB76E,\n\t25623 - 11904: 0xB76F,\n\t25624 - 11904: 0xDDA5,\n\t25626 - 11904: 0xDDB2,\n\t25627 - 11904: 0xDDB8,\n\t25628 - 11904: 0xB76A,\n\t25630 - 11904: 0xB764,\n\t25631 - 11904: 0xDDA3,\n\t25632 - 11904: 0xDD7D,\n\t25633 - 11904: 0xDDBA,\n\t25634 - 11904: 0xDDA8,\n\t25635 - 11904: 0xDDA9,\n\t25636 - 11904: 0xDD7E,\n\t25637 - 11904: 0xDDB4,\n\t25638 - 11904: 0xDDAB,\n\t25639 - 11904: 0xDDB5,\n\t25640 - 11904: 0xDDAD,\n\t25642 - 11904: 0xB765,\n\t25643 - 11904: 0xE1D9,\n\t25644 - 11904: 0xB768,\n\t25645 - 11904: 0xB766,\n\t25646 - 11904: 0xDDB9,\n\t25647 - 11904: 0xDDB0,\n\t25648 - 11904: 0xDDAC,\n\t25650 - 11904: 0x8AFD,\n\t25651 - 11904: 0xDDA1,\n\t25652 - 11904: 0xBA53,\n\t25653 - 11904: 0xDDAF,\n\t25654 - 11904: 0xB76D,\n\t25655 - 11904: 0xDDA7,\n\t25656 - 11904: 0xFCB5,\n\t25657 - 11904: 0xDDA6,\n\t25658 - 11904: 0xFCC3,\n\t25659 - 11904: 0x93B2,\n\t25661 - 11904: 0xB767,\n\t25662 - 11904: 0xB763,\n\t25663 - 11904: 0xE1EE,\n\t25664 - 11904: 0xDDB3,\n\t25665 - 11904: 0xDDAE,\n\t25667 - 11904: 0xDDA2,\n\t25675 - 11904: 0xE1E9,\n\t25677 - 11904: 0xE1DA,\n\t25678 - 11904: 0xE1E5,\n\t25680 - 11904: 0xE1EC,\n\t25681 - 11904: 0xBA51,\n\t25682 - 11904: 0xB4AC,\n\t25683 - 11904: 0xE1EA,\n\t25684 - 11904: 0xBA4C,\n\t25688 - 11904: 0xBA4B,\n\t25689 - 11904: 0xE1F1,\n\t25690 - 11904: 0x8DA5,\n\t25691 - 11904: 0xE1DB,\n\t25692 - 11904: 0xE1E8,\n\t25693 - 11904: 0xE1DC,\n\t25694 - 11904: 0xE1E7,\n\t25695 - 11904: 0xBA4F,\n\t25696 - 11904: 0xE1EB,\n\t25697 - 11904: 0xD962,\n\t25701 - 11904: 0xE1F2,\n\t25702 - 11904: 0xE1E3,\n\t25703 - 11904: 0xBA52,\n\t25704 - 11904: 0xE5BA,\n\t25705 - 11904: 0xBCAF,\n\t25707 - 11904: 0xE1F0,\n\t25708 - 11904: 0xE1EF,\n\t25709 - 11904: 0xBA54,\n\t25710 - 11904: 0xE5AD,\n\t25711 - 11904: 0xBCB0,\n\t25712 - 11904: 0xE5AE,\n\t25713 - 11904: 0x93A1,\n\t25714 - 11904: 0xE1DF,\n\t25715 - 11904: 0xE1E0,\n\t25716 - 11904: 0xE1DD,\n\t25717 - 11904: 0xE1E2,\n\t25718 - 11904: 0xE1DE,\n\t25719 - 11904: 0xE1F3,\n\t25720 - 11904: 0xBA4E,\n\t25721 - 11904: 0xBCB1,\n\t25722 - 11904: 0xBA50,\n\t25723 - 11904: 0xBA55,\n\t25724 - 11904: 0x8AC6,\n\t25725 - 11904: 0xE1E1,\n\t25727 - 11904: 0xE1ED,\n\t25730 - 11904: 0xE1E6,\n\t25733 - 11904: 0xE5B1,\n\t25735 - 11904: 0xBA4A,\n\t25736 - 11904: 0xBCB4,\n\t25737 - 11904: 0xE9AA,\n\t25738 - 11904: 0xE5B6,\n\t25739 - 11904: 0xE5B5,\n\t25740 - 11904: 0xE5B7,\n\t25741 - 11904: 0x8A5B,\n\t25743 - 11904: 0xE5B4,\n\t25744 - 11904: 0xFCB9,\n\t25745 - 11904: 0x894D,\n\t25746 - 11904: 0xBCBB,\n\t25747 - 11904: 0xBCB8,\n\t25749 - 11904: 0xBCB9,\n\t25750 - 11904: 0xE5AF,\n\t25751 - 11904: 0xE5B2,\n\t25752 - 11904: 0xE5BC,\n\t25753 - 11904: 0xBCC1,\n\t25754 - 11904: 0xBCBF,\n\t25756 - 11904: 0xE5B3,\n\t25757 - 11904: 0xD95A,\n\t25758 - 11904: 0xBCB2,\n\t25759 - 11904: 0xE5B9,\n\t25760 - 11904: 0xE5B0,\n\t25762 - 11904: 0xBCC2,\n\t25763 - 11904: 0xE5B8,\n\t25764 - 11904: 0xBA4D,\n\t25765 - 11904: 0xBCB7,\n\t25766 - 11904: 0xE1E4,\n\t25769 - 11904: 0xBCBA,\n\t25771 - 11904: 0xBCBE,\n\t25772 - 11904: 0xBCC0,\n\t25773 - 11904: 0xBCBD,\n\t25774 - 11904: 0xBCBC,\n\t25775 - 11904: 0xFED4,\n\t25776 - 11904: 0xBCB6,\n\t25777 - 11904: 0xE5BB,\n\t25778 - 11904: 0xBCB3,\n\t25779 - 11904: 0xBCC3,\n\t25780 - 11904: 0x8A78,\n\t25782 - 11904: 0x93AB,\n\t25787 - 11904: 0xBED8,\n\t25788 - 11904: 0xBED9,\n\t25789 - 11904: 0xE9A9,\n\t25790 - 11904: 0xBEE2,\n\t25791 - 11904: 0xBEDF,\n\t25792 - 11904: 0x8DA7,\n\t25793 - 11904: 0xBED6,\n\t25794 - 11904: 0xBEDD,\n\t25795 - 11904: 0xE9AB,\n\t25796 - 11904: 0xBEDB,\n\t25797 - 11904: 0xBED5,\n\t25799 - 11904: 0xBEDC,\n\t25801 - 11904: 0xE9A8,\n\t25802 - 11904: 0xC0BB,\n\t25803 - 11904: 0xBED7,\n\t25805 - 11904: 0xBEDE,\n\t25806 - 11904: 0xC0BA,\n\t25807 - 11904: 0xE9A7,\n\t25808 - 11904: 0xE9A6,\n\t25810 - 11904: 0xBEE0,\n\t25811 - 11904: 0x9F45,\n\t25812 - 11904: 0xBEE1,\n\t25814 - 11904: 0xE9A5,\n\t25815 - 11904: 0xE9A4,\n\t25816 - 11904: 0xC0BC,\n\t25817 - 11904: 0xE9AE,\n\t25818 - 11904: 0xBEDA,\n\t25819 - 11904: 0xE9AC,\n\t25821 - 11904: 0x8A56,\n\t25824 - 11904: 0xC0BD,\n\t25825 - 11904: 0xFCBF,\n\t25826 - 11904: 0xC0C2,\n\t25827 - 11904: 0xECEA,\n\t25828 - 11904: 0xECEC,\n\t25829 - 11904: 0xFCC0,\n\t25830 - 11904: 0xC0BF,\n\t25831 - 11904: 0x8EE6,\n\t25832 - 11904: 0xECED,\n\t25833 - 11904: 0xECE9,\n\t25834 - 11904: 0x8AA4,\n\t25835 - 11904: 0xECEB,\n\t25836 - 11904: 0xC0C0,\n\t25837 - 11904: 0xC0C3,\n\t25839 - 11904: 0xECE8,\n\t25840 - 11904: 0xC0BE,\n\t25841 - 11904: 0xC0C1,\n\t25842 - 11904: 0xC259,\n\t25843 - 11904: 0xE9AD,\n\t25844 - 11904: 0xC258,\n\t25847 - 11904: 0xC25E,\n\t25848 - 11904: 0xEFD4,\n\t25850 - 11904: 0xC25C,\n\t25851 - 11904: 0xC25D,\n\t25852 - 11904: 0xEFD7,\n\t25853 - 11904: 0xEFD3,\n\t25854 - 11904: 0xC25A,\n\t25855 - 11904: 0xEFD1,\n\t25856 - 11904: 0xC36B,\n\t25857 - 11904: 0xEFD5,\n\t25859 - 11904: 0xEFD6,\n\t25860 - 11904: 0xEFD2,\n\t25862 - 11904: 0xC25B,\n\t25863 - 11904: 0xF242,\n\t25865 - 11904: 0xF245,\n\t25866 - 11904: 0x8943,\n\t25868 - 11904: 0xF246,\n\t25869 - 11904: 0xF244,\n\t25870 - 11904: 0xF247,\n\t25871 - 11904: 0xC36C,\n\t25872 - 11904: 0xF243,\n\t25873 - 11904: 0x93F3,\n\t25875 - 11904: 0xF44E,\n\t25876 - 11904: 0xC464,\n\t25877 - 11904: 0xF44D,\n\t25878 - 11904: 0xF44C,\n\t25879 - 11904: 0xF44B,\n\t25880 - 11904: 0xC463,\n\t25881 - 11904: 0xC465,\n\t25883 - 11904: 0xF5CD,\n\t25884 - 11904: 0xC4E2,\n\t25885 - 11904: 0xC4E1,\n\t25886 - 11904: 0xFCAB,\n\t25887 - 11904: 0x9EA2,\n\t25888 - 11904: 0xF6E1,\n\t25889 - 11904: 0xF6E0,\n\t25890 - 11904: 0xF6E3,\n\t25891 - 11904: 0xC5CB,\n\t25892 - 11904: 0xC575,\n\t25893 - 11904: 0xF7DD,\n\t25894 - 11904: 0xF6E2,\n\t25897 - 11904: 0xF7DC,\n\t25898 - 11904: 0xC5CD,\n\t25899 - 11904: 0xC5CC,\n\t25900 - 11904: 0xC5F3,\n\t25901 - 11904: 0xF8A9,\n\t25902 - 11904: 0xF8EF,\n\t25903 - 11904: 0xA4E4,\n\t25904 - 11904: 0x9DC7,\n\t25906 - 11904: 0xD972,\n\t25907 - 11904: 0xE9AF,\n\t25908 - 11904: 0xC6D2,\n\t25909 - 11904: 0x8BCE,\n\t25910 - 11904: 0xA6AC,\n\t25911 - 11904: 0xCAF7,\n\t25912 - 11904: 0xA7F1,\n\t25913 - 11904: 0xA7EF,\n\t25915 - 11904: 0xA7F0,\n\t25917 - 11904: 0xCCC1,\n\t25918 - 11904: 0xA9F1,\n\t25919 - 11904: 0xAC46,\n\t25921 - 11904: 0xCEE7,\n\t25923 - 11904: 0xCEE8,\n\t25925 - 11904: 0xAC47,\n\t25926 - 11904: 0xD1CE,\n\t25928 - 11904: 0xAEC4,\n\t25929 - 11904: 0xAEC5,\n\t25930 - 11904: 0xD1CD,\n\t25933 - 11904: 0xFCC5,\n\t25935 - 11904: 0xB1D3,\n\t25937 - 11904: 0xB1CF,\n\t25939 - 11904: 0xD5A7,\n\t25940 - 11904: 0xB1D6,\n\t25941 - 11904: 0xB1D5,\n\t25942 - 11904: 0xB1CE,\n\t25943 - 11904: 0xB1D1,\n\t25944 - 11904: 0xB1D4,\n\t25945 - 11904: 0xB1D0,\n\t25948 - 11904: 0xD976,\n\t25949 - 11904: 0xB1CD,\n\t25950 - 11904: 0xB4AF,\n\t25951 - 11904: 0xFCCB,\n\t25954 - 11904: 0xB4B1,\n\t25955 - 11904: 0xB4B2,\n\t25956 - 11904: 0xD975,\n\t25957 - 11904: 0xD978,\n\t25958 - 11904: 0xB4B0,\n\t25959 - 11904: 0xD973,\n\t25960 - 11904: 0xD977,\n\t25962 - 11904: 0xD974,\n\t25963 - 11904: 0x93B3,\n\t25964 - 11904: 0xB771,\n\t25965 - 11904: 0xFCCA,\n\t25967 - 11904: 0xDDBC,\n\t25970 - 11904: 0xBA56,\n\t25971 - 11904: 0xE1F4,\n\t25972 - 11904: 0xBEE3,\n\t25973 - 11904: 0xBCC4,\n\t25974 - 11904: 0xE5BD,\n\t25975 - 11904: 0xBCC5,\n\t25976 - 11904: 0xBCC6,\n\t25977 - 11904: 0xE5BF,\n\t25978 - 11904: 0xE5BE,\n\t25979 - 11904: 0xE5C0,\n\t25980 - 11904: 0xE9B1,\n\t25983 - 11904: 0xE9B0,\n\t25984 - 11904: 0xECEF,\n\t25985 - 11904: 0xECEE,\n\t25986 - 11904: 0xC0C4,\n\t25987 - 11904: 0xC0C5,\n\t25988 - 11904: 0xF248,\n\t25989 - 11904: 0xFCC9,\n\t25990 - 11904: 0x8DAC,\n\t25991 - 11904: 0xA4E5,\n\t25992 - 11904: 0xFBC6,\n\t25993 - 11904: 0x8967,\n\t25995 - 11904: 0x8C7E,\n\t25996 - 11904: 0xD979,\n\t26000 - 11904: 0xB4B4,\n\t26001 - 11904: 0xB4B3,\n\t26002 - 11904: 0xDDBD,\n\t26004 - 11904: 0xEFD8,\n\t26005 - 11904: 0xC4E3,\n\t26006 - 11904: 0xF7DE,\n\t26007 - 11904: 0xA4E6,\n\t26009 - 11904: 0xAEC6,\n\t26011 - 11904: 0xB1D8,\n\t26012 - 11904: 0xB1D7,\n\t26013 - 11904: 0xD97A,\n\t26014 - 11904: 0xD97B,\n\t26015 - 11904: 0xB772,\n\t26016 - 11904: 0xE1F5,\n\t26017 - 11904: 0xBA57,\n\t26018 - 11904: 0xE9B2,\n\t26020 - 11904: 0xA4E7,\n\t26021 - 11904: 0xA5B8,\n\t26023 - 11904: 0xA9F2,\n\t26024 - 11904: 0xCCC2,\n\t26026 - 11904: 0xCEE9,\n\t26027 - 11904: 0xAC48,\n\t26028 - 11904: 0xB1D9,\n\t26030 - 11904: 0xD97C,\n\t26031 - 11904: 0xB4B5,\n\t26032 - 11904: 0xB773,\n\t26034 - 11904: 0xE5C1,\n\t26035 - 11904: 0xE5C2,\n\t26037 - 11904: 0xFCCD,\n\t26038 - 11904: 0xECF0,\n\t26039 - 11904: 0xC25F,\n\t26040 - 11904: 0xF8F0,\n\t26041 - 11904: 0xA4E8,\n\t26043 - 11904: 0xCCC3,\n\t26044 - 11904: 0xA9F3,\n\t26045 - 11904: 0xAC49,\n\t26046 - 11904: 0x9CF3,\n\t26047 - 11904: 0xCEEA,\n\t26049 - 11904: 0xAEC7,\n\t26050 - 11904: 0xD1D2,\n\t26051 - 11904: 0xD1D0,\n\t26052 - 11904: 0xD1D1,\n\t26053 - 11904: 0xAEC8,\n\t26054 - 11904: 0xD1CF,\n\t26059 - 11904: 0xB1DB,\n\t26060 - 11904: 0xB1DC,\n\t26061 - 11904: 0xD5A8,\n\t26062 - 11904: 0xB1DD,\n\t26063 - 11904: 0xB1DA,\n\t26064 - 11904: 0xD97D,\n\t26065 - 11904: 0xFCD0,\n\t26066 - 11904: 0xD97E,\n\t26067 - 11904: 0xDDBE,\n\t26068 - 11904: 0x95BB,\n\t26070 - 11904: 0xBA59,\n\t26071 - 11904: 0xBA58,\n\t26074 - 11904: 0xECF1,\n\t26075 - 11904: 0xEFD9,\n\t26077 - 11904: 0xF24A,\n\t26078 - 11904: 0xF249,\n\t26079 - 11904: 0xF44F,\n\t26080 - 11904: 0xFCD3,\n\t26081 - 11904: 0xC95E,\n\t26082 - 11904: 0xAC4A,\n\t26083 - 11904: 0xFCD4,\n\t26085 - 11904: 0xA4E9,\n\t26086 - 11904: 0xA5B9,\n\t26088 - 11904: 0xA6AE,\n\t26089 - 11904: 0xA6AD,\n\t26092 - 11904: 0xA6AF,\n\t26093 - 11904: 0xA6B0,\n\t26094 - 11904: 0xC9EE,\n\t26095 - 11904: 0xC9ED,\n\t26096 - 11904: 0xCAF8,\n\t26097 - 11904: 0xA7F2,\n\t26098 - 11904: 0xCAFB,\n\t26099 - 11904: 0xCAFA,\n\t26100 - 11904: 0xCAF9,\n\t26101 - 11904: 0xCAFC,\n\t26106 - 11904: 0xA9F4,\n\t26107 - 11904: 0xCCC9,\n\t26108 - 11904: 0xCCC5,\n\t26109 - 11904: 0xCCCE,\n\t26111 - 11904: 0x8DAE,\n\t26112 - 11904: 0xA9FB,\n\t26114 - 11904: 0xA9F9,\n\t26115 - 11904: 0xCCCA,\n\t26116 - 11904: 0xCCC6,\n\t26117 - 11904: 0xCCCD,\n\t26118 - 11904: 0xA9F8,\n\t26119 - 11904: 0xAA40,\n\t26120 - 11904: 0xCCC8,\n\t26121 - 11904: 0xCCC4,\n\t26122 - 11904: 0xA9FE,\n\t26123 - 11904: 0xCCCB,\n\t26124 - 11904: 0xA9F7,\n\t26125 - 11904: 0xCCCC,\n\t26126 - 11904: 0xA9FA,\n\t26127 - 11904: 0xA9FC,\n\t26128 - 11904: 0xCCD0,\n\t26129 - 11904: 0xCCCF,\n\t26130 - 11904: 0xCCC7,\n\t26131 - 11904: 0xA9F6,\n\t26132 - 11904: 0xA9F5,\n\t26133 - 11904: 0xA9FD,\n\t26136 - 11904: 0xFCD7,\n\t26140 - 11904: 0xCEEF,\n\t26141 - 11904: 0xCEF5,\n\t26142 - 11904: 0x93DB,\n\t26143 - 11904: 0xAC50,\n\t26144 - 11904: 0xAC4D,\n\t26145 - 11904: 0xCEEC,\n\t26146 - 11904: 0xCEF1,\n\t26147 - 11904: 0xFE63,\n\t26148 - 11904: 0xAC53,\n\t26149 - 11904: 0xAC4B,\n\t26150 - 11904: 0xCEF0,\n\t26151 - 11904: 0xAC4E,\n\t26152 - 11904: 0xAC51,\n\t26155 - 11904: 0xCEF3,\n\t26157 - 11904: 0xAC4C,\n\t26158 - 11904: 0xCEF8,\n\t26159 - 11904: 0xAC4F,\n\t26160 - 11904: 0x93D5,\n\t26161 - 11904: 0xAC52,\n\t26162 - 11904: 0xCEED,\n\t26163 - 11904: 0xCEF2,\n\t26164 - 11904: 0xCEF6,\n\t26165 - 11904: 0xCEEE,\n\t26166 - 11904: 0xCEEB,\n\t26169 - 11904: 0xCEF7,\n\t26170 - 11904: 0xCEF4,\n\t26177 - 11904: 0xAED0,\n\t26178 - 11904: 0xAEC9,\n\t26179 - 11904: 0xAECC,\n\t26180 - 11904: 0xFCDA,\n\t26181 - 11904: 0xAECF,\n\t26183 - 11904: 0xD1D5,\n\t26184 - 11904: 0x9B71,\n\t26185 - 11904: 0xAECA,\n\t26186 - 11904: 0xD1D3,\n\t26187 - 11904: 0xFCDD,\n\t26188 - 11904: 0xAECE,\n\t26189 - 11904: 0x8764,\n\t26191 - 11904: 0xAECB,\n\t26193 - 11904: 0xD1D6,\n\t26194 - 11904: 0xAECD,\n\t26195 - 11904: 0x8DAF,\n\t26199 - 11904: 0xFAF2,\n\t26201 - 11904: 0xD5AC,\n\t26202 - 11904: 0xB1DF,\n\t26203 - 11904: 0xD5AB,\n\t26204 - 11904: 0xD5AD,\n\t26205 - 11904: 0xB1DE,\n\t26206 - 11904: 0xB1E3,\n\t26207 - 11904: 0xD1D4,\n\t26208 - 11904: 0x87B5,\n\t26209 - 11904: 0xD5AA,\n\t26210 - 11904: 0xD5AE,\n\t26211 - 11904: 0x93D8,\n\t26212 - 11904: 0xB1E0,\n\t26213 - 11904: 0xD5A9,\n\t26214 - 11904: 0xB1E2,\n\t26215 - 11904: 0xFCDF,\n\t26216 - 11904: 0xB1E1,\n\t26218 - 11904: 0xD9A7,\n\t26219 - 11904: 0x93D3,\n\t26220 - 11904: 0xD9A2,\n\t26222 - 11904: 0xB4B6,\n\t26223 - 11904: 0xB4BA,\n\t26224 - 11904: 0xB4B7,\n\t26225 - 11904: 0xD9A5,\n\t26226 - 11904: 0xD9A8,\n\t26227 - 11904: 0xFCE1,\n\t26228 - 11904: 0xFCE2,\n\t26230 - 11904: 0xB4B9,\n\t26231 - 11904: 0xB4BE,\n\t26232 - 11904: 0xDDC7,\n\t26233 - 11904: 0xD9A6,\n\t26234 - 11904: 0xB4BC,\n\t26235 - 11904: 0xD9A3,\n\t26236 - 11904: 0xD9A1,\n\t26237 - 11904: 0x8E76,\n\t26238 - 11904: 0xB4BD,\n\t26240 - 11904: 0xD9A4,\n\t26244 - 11904: 0xB779,\n\t26245 - 11904: 0xFC62,\n\t26246 - 11904: 0xDDBF,\n\t26247 - 11904: 0xB776,\n\t26248 - 11904: 0xB777,\n\t26249 - 11904: 0xB775,\n\t26250 - 11904: 0xDDC4,\n\t26251 - 11904: 0xDDC3,\n\t26252 - 11904: 0xDDC0,\n\t26253 - 11904: 0xB77B,\n\t26254 - 11904: 0x93D1,\n\t26256 - 11904: 0xDDC2,\n\t26257 - 11904: 0xB4BB,\n\t26258 - 11904: 0x8DB1,\n\t26260 - 11904: 0xDDC6,\n\t26261 - 11904: 0xDDC1,\n\t26262 - 11904: 0xB778,\n\t26263 - 11904: 0xB774,\n\t26264 - 11904: 0xB77A,\n\t26265 - 11904: 0xDDC5,\n\t26266 - 11904: 0x9859,\n\t26269 - 11904: 0xBA5C,\n\t26271 - 11904: 0xE1F8,\n\t26272 - 11904: 0xE1F7,\n\t26273 - 11904: 0xE1F6,\n\t26274 - 11904: 0xBA5A,\n\t26276 - 11904: 0xFB52,\n\t26280 - 11904: 0xBA5B,\n\t26281 - 11904: 0xE5C5,\n\t26282 - 11904: 0xE5C8,\n\t26283 - 11904: 0xBCC8,\n\t26285 - 11904: 0xFB53,\n\t26286 - 11904: 0xBCC7,\n\t26287 - 11904: 0xE5C9,\n\t26288 - 11904: 0xE5C4,\n\t26289 - 11904: 0xBCCA,\n\t26290 - 11904: 0xE5C6,\n\t26291 - 11904: 0xFB4D,\n\t26292 - 11904: 0xBCC9,\n\t26293 - 11904: 0xE5C3,\n\t26294 - 11904: 0x9CBF,\n\t26295 - 11904: 0xE5C7,\n\t26296 - 11904: 0xBEE9,\n\t26297 - 11904: 0xBEE6,\n\t26298 - 11904: 0xE9BB,\n\t26299 - 11904: 0xE9BA,\n\t26301 - 11904: 0xE9B9,\n\t26302 - 11904: 0xE9B4,\n\t26303 - 11904: 0x9B72,\n\t26304 - 11904: 0xE9B5,\n\t26308 - 11904: 0xBEE7,\n\t26310 - 11904: 0xBEE4,\n\t26311 - 11904: 0xBEE8,\n\t26312 - 11904: 0xE9B3,\n\t26313 - 11904: 0xBEE5,\n\t26314 - 11904: 0xE9B6,\n\t26315 - 11904: 0xE9B7,\n\t26316 - 11904: 0xE9BC,\n\t26317 - 11904: 0xFB50,\n\t26318 - 11904: 0x93BE,\n\t26319 - 11904: 0xE9B8,\n\t26322 - 11904: 0xECF2,\n\t26326 - 11904: 0xC0C7,\n\t26328 - 11904: 0xEFDC,\n\t26329 - 11904: 0xC0C6,\n\t26330 - 11904: 0xEFDA,\n\t26331 - 11904: 0xEFDB,\n\t26332 - 11904: 0xC260,\n\t26333 - 11904: 0xC36E,\n\t26334 - 11904: 0xF24B,\n\t26336 - 11904: 0xC36D,\n\t26339 - 11904: 0xF451,\n\t26340 - 11904: 0xF452,\n\t26342 - 11904: 0xC466,\n\t26343 - 11904: 0x8CDB,\n\t26344 - 11904: 0xF450,\n\t26345 - 11904: 0xC4E4,\n\t26347 - 11904: 0xF7DF,\n\t26348 - 11904: 0xC5CE,\n\t26349 - 11904: 0xF8AA,\n\t26350 - 11904: 0xF8AB,\n\t26352 - 11904: 0xA4EA,\n\t26353 - 11904: 0x9DF1,\n\t26354 - 11904: 0xA6B1,\n\t26355 - 11904: 0xA6B2,\n\t26356 - 11904: 0xA7F3,\n\t26358 - 11904: 0xCCD1,\n\t26359 - 11904: 0xAC54,\n\t26360 - 11904: 0xAED1,\n\t26361 - 11904: 0xB1E4,\n\t26364 - 11904: 0xB0D2,\n\t26366 - 11904: 0xB4BF,\n\t26367 - 11904: 0xB4C0,\n\t26368 - 11904: 0xB3CC,\n\t26369 - 11904: 0xD9A9,\n\t26370 - 11904: 0xFCEB,\n\t26371 - 11904: 0xB77C,\n\t26372 - 11904: 0xE1FA,\n\t26373 - 11904: 0xE1F9,\n\t26376 - 11904: 0xA4EB,\n\t26377 - 11904: 0xA6B3,\n\t26378 - 11904: 0xCCD2,\n\t26379 - 11904: 0xAA42,\n\t26380 - 11904: 0xA0BB,\n\t26381 - 11904: 0xAA41,\n\t26382 - 11904: 0x9B7E,\n\t26383 - 11904: 0xCEF9,\n\t26384 - 11904: 0xCEFA,\n\t26386 - 11904: 0xD1D7,\n\t26387 - 11904: 0xD1D8,\n\t26388 - 11904: 0xAED2,\n\t26389 - 11904: 0xAED3,\n\t26390 - 11904: 0x8DB3,\n\t26391 - 11904: 0xAED4,\n\t26392 - 11904: 0xD5AF,\n\t26393 - 11904: 0x8C52,\n\t26395 - 11904: 0xB1E6,\n\t26397 - 11904: 0xB4C2,\n\t26398 - 11904: 0x9AE8,\n\t26399 - 11904: 0xB4C1,\n\t26400 - 11904: 0xDDC8,\n\t26401 - 11904: 0xDF7A,\n\t26402 - 11904: 0xE1FB,\n\t26403 - 11904: 0xE9BD,\n\t26405 - 11904: 0x8EDC,\n\t26406 - 11904: 0xC261,\n\t26407 - 11904: 0xC467,\n\t26408 - 11904: 0xA4EC,\n\t26410 - 11904: 0xA5BC,\n\t26411 - 11904: 0xA5BD,\n\t26412 - 11904: 0xA5BB,\n\t26413 - 11904: 0xA5BE,\n\t26414 - 11904: 0xA5BA,\n\t26417 - 11904: 0xA6B6,\n\t26419 - 11904: 0xC9F6,\n\t26420 - 11904: 0xA6B5,\n\t26421 - 11904: 0xA6B7,\n\t26422 - 11904: 0x9CF9,\n\t26424 - 11904: 0xC9F1,\n\t26425 - 11904: 0xC9F0,\n\t26426 - 11904: 0xC9F3,\n\t26427 - 11904: 0xC9F2,\n\t26428 - 11904: 0xC9F5,\n\t26429 - 11904: 0xA6B4,\n\t26430 - 11904: 0xC9EF,\n\t26431 - 11904: 0xC9F4,\n\t26436 - 11904: 0xFA50,\n\t26437 - 11904: 0xCAFD,\n\t26438 - 11904: 0xA7FD,\n\t26439 - 11904: 0xCAFE,\n\t26440 - 11904: 0xCB43,\n\t26441 - 11904: 0xA7FC,\n\t26443 - 11904: 0xCB47,\n\t26444 - 11904: 0xCB42,\n\t26445 - 11904: 0xCB45,\n\t26446 - 11904: 0xA7F5,\n\t26447 - 11904: 0xA7F6,\n\t26448 - 11904: 0xA7F7,\n\t26449 - 11904: 0xA7F8,\n\t26451 - 11904: 0xA840,\n\t26453 - 11904: 0xCB41,\n\t26454 - 11904: 0xA7FA,\n\t26455 - 11904: 0xA841,\n\t26457 - 11904: 0xCB40,\n\t26458 - 11904: 0xCB46,\n\t26460 - 11904: 0xA7F9,\n\t26461 - 11904: 0xCB44,\n\t26462 - 11904: 0xFCF1,\n\t26463 - 11904: 0xA7F4,\n\t26464 - 11904: 0xA7FE,\n\t26465 - 11904: 0x98E7,\n\t26466 - 11904: 0xFCF3,\n\t26471 - 11904: 0xFCF2,\n\t26474 - 11904: 0xAA57,\n\t26475 - 11904: 0x8CCA,\n\t26476 - 11904: 0xCCD4,\n\t26477 - 11904: 0xAA43,\n\t26478 - 11904: 0x8775,\n\t26479 - 11904: 0xAA4D,\n\t26480 - 11904: 0xAA4E,\n\t26481 - 11904: 0xAA46,\n\t26482 - 11904: 0xAA58,\n\t26483 - 11904: 0xAA48,\n\t26484 - 11904: 0xCCDC,\n\t26485 - 11904: 0xAA53,\n\t26486 - 11904: 0xCCD7,\n\t26487 - 11904: 0xAA49,\n\t26488 - 11904: 0xCCE6,\n\t26489 - 11904: 0xCCE7,\n\t26490 - 11904: 0xCCDF,\n\t26491 - 11904: 0xCCD8,\n\t26492 - 11904: 0xAA56,\n\t26493 - 11904: 0xCCE4,\n\t26494 - 11904: 0xAA51,\n\t26495 - 11904: 0xAA4F,\n\t26497 - 11904: 0xCCE5,\n\t26498 - 11904: 0x87BA,\n\t26499 - 11904: 0xCCE3,\n\t26500 - 11904: 0xCCDB,\n\t26501 - 11904: 0xCCD3,\n\t26502 - 11904: 0xCCDA,\n\t26503 - 11904: 0xAA4A,\n\t26505 - 11904: 0xAA50,\n\t26507 - 11904: 0xAA44,\n\t26508 - 11904: 0xCCDE,\n\t26509 - 11904: 0xCCDD,\n\t26510 - 11904: 0xCCD5,\n\t26511 - 11904: 0x93E5,\n\t26512 - 11904: 0xAA52,\n\t26513 - 11904: 0xCCE1,\n\t26514 - 11904: 0xCCD6,\n\t26515 - 11904: 0xAA55,\n\t26516 - 11904: 0xCCE8,\n\t26517 - 11904: 0xAA45,\n\t26519 - 11904: 0xAA4C,\n\t26520 - 11904: 0xCCD9,\n\t26521 - 11904: 0xCCE2,\n\t26522 - 11904: 0xAA54,\n\t26524 - 11904: 0xAA47,\n\t26525 - 11904: 0xAA4B,\n\t26527 - 11904: 0xCCE0,\n\t26528 - 11904: 0x9A59,\n\t26532 - 11904: 0x8DB5,\n\t26540 - 11904: 0xFD4D,\n\t26542 - 11904: 0xCF5B,\n\t26543 - 11904: 0xAC5C,\n\t26544 - 11904: 0xAC69,\n\t26545 - 11904: 0xFD5E,\n\t26546 - 11904: 0xCF56,\n\t26547 - 11904: 0xCF4C,\n\t26548 - 11904: 0xAC62,\n\t26549 - 11904: 0xCF4A,\n\t26550 - 11904: 0xAC5B,\n\t26551 - 11904: 0xCF45,\n\t26552 - 11904: 0xAC65,\n\t26553 - 11904: 0xCF52,\n\t26554 - 11904: 0xCEFE,\n\t26555 - 11904: 0xCF41,\n\t26559 - 11904: 0x8F7D,\n\t26560 - 11904: 0xCF44,\n\t26561 - 11904: 0xCEFB,\n\t26562 - 11904: 0xCF51,\n\t26563 - 11904: 0xCF61,\n\t26564 - 11904: 0xAC60,\n\t26565 - 11904: 0xCF46,\n\t26566 - 11904: 0xCF58,\n\t26568 - 11904: 0xCEFD,\n\t26569 - 11904: 0xCF5F,\n\t26570 - 11904: 0xCF60,\n\t26571 - 11904: 0xCF63,\n\t26572 - 11904: 0xCF5A,\n\t26573 - 11904: 0xCF4B,\n\t26574 - 11904: 0xCF53,\n\t26575 - 11904: 0xAC66,\n\t26576 - 11904: 0xAC59,\n\t26577 - 11904: 0xAC61,\n\t26578 - 11904: 0xAC6D,\n\t26579 - 11904: 0xAC56,\n\t26580 - 11904: 0xAC58,\n\t26582 - 11904: 0x9547,\n\t26583 - 11904: 0xFCF6,\n\t26584 - 11904: 0xCF43,\n\t26585 - 11904: 0xAC6A,\n\t26586 - 11904: 0xAC63,\n\t26587 - 11904: 0xCF5D,\n\t26588 - 11904: 0xCF40,\n\t26589 - 11904: 0xAC6C,\n\t26590 - 11904: 0xAC67,\n\t26591 - 11904: 0xCF49,\n\t26594 - 11904: 0xAC6B,\n\t26595 - 11904: 0xCF50,\n\t26596 - 11904: 0xCF48,\n\t26597 - 11904: 0xAC64,\n\t26598 - 11904: 0xCF5C,\n\t26599 - 11904: 0xCF54,\n\t26601 - 11904: 0xAC5E,\n\t26602 - 11904: 0xCF62,\n\t26603 - 11904: 0xCF47,\n\t26604 - 11904: 0xAC5A,\n\t26605 - 11904: 0xCF59,\n\t26606 - 11904: 0xCF4F,\n\t26607 - 11904: 0xAC5F,\n\t26608 - 11904: 0xCF55,\n\t26609 - 11904: 0xAC57,\n\t26610 - 11904: 0xCEFC,\n\t26611 - 11904: 0xAC68,\n\t26612 - 11904: 0xAEE3,\n\t26613 - 11904: 0xAC5D,\n\t26614 - 11904: 0xCF4E,\n\t26615 - 11904: 0xCF4D,\n\t26616 - 11904: 0xCF42,\n\t26617 - 11904: 0x9250,\n\t26618 - 11904: 0xCF5E,\n\t26620 - 11904: 0xCF57,\n\t26622 - 11904: 0x8968,\n\t26623 - 11904: 0xAC55,\n\t26624 - 11904: 0x8DB6,\n\t26625 - 11904: 0xFCFB,\n\t26626 - 11904: 0xA07D,\n\t26627 - 11904: 0x98FC,\n\t26628 - 11904: 0x8969,\n\t26637 - 11904: 0xFE4F,\n\t26640 - 11904: 0x9256,\n\t26642 - 11904: 0xD1EC,\n\t26643 - 11904: 0xAEEA,\n\t26644 - 11904: 0xD1ED,\n\t26646 - 11904: 0xD1E1,\n\t26647 - 11904: 0xAEDF,\n\t26648 - 11904: 0xAEEB,\n\t26650 - 11904: 0xD1DA,\n\t26651 - 11904: 0xFAC9,\n\t26652 - 11904: 0xD1E3,\n\t26653 - 11904: 0xD1EB,\n\t26654 - 11904: 0x93E8,\n\t26655 - 11904: 0xD1D9,\n\t26656 - 11904: 0xD1F4,\n\t26657 - 11904: 0xAED5,\n\t26658 - 11904: 0xFCF8,\n\t26661 - 11904: 0xD1F3,\n\t26662 - 11904: 0xD1EE,\n\t26664 - 11904: 0xD1EF,\n\t26665 - 11904: 0xAEDD,\n\t26666 - 11904: 0xAEE8,\n\t26667 - 11904: 0xD1E5,\n\t26669 - 11904: 0xD1E6,\n\t26670 - 11904: 0xD1F0,\n\t26671 - 11904: 0xD1E7,\n\t26673 - 11904: 0xD1E2,\n\t26674 - 11904: 0xD1DC,\n\t26675 - 11904: 0xD1DD,\n\t26676 - 11904: 0xD1EA,\n\t26677 - 11904: 0xD1E4,\n\t26678 - 11904: 0x9CE3,\n\t26679 - 11904: 0xFDA9,\n\t26680 - 11904: 0xAED6,\n\t26681 - 11904: 0xAEDA,\n\t26682 - 11904: 0xD1F2,\n\t26683 - 11904: 0xD1DE,\n\t26684 - 11904: 0xAEE6,\n\t26685 - 11904: 0xAEE2,\n\t26686 - 11904: 0xFC44,\n\t26688 - 11904: 0xAEE5,\n\t26689 - 11904: 0xAEEC,\n\t26690 - 11904: 0xAEDB,\n\t26691 - 11904: 0xAEE7,\n\t26692 - 11904: 0xD1E9,\n\t26693 - 11904: 0xAEE9,\n\t26694 - 11904: 0xAED8,\n\t26695 - 11904: 0x9640,\n\t26696 - 11904: 0xAED7,\n\t26697 - 11904: 0xD1DB,\n\t26698 - 11904: 0x8DB8,\n\t26699 - 11904: 0xD1DF,\n\t26700 - 11904: 0xAEE0,\n\t26701 - 11904: 0xD1F1,\n\t26702 - 11904: 0xD1E8,\n\t26703 - 11904: 0xD1E0,\n\t26704 - 11904: 0xAEE4,\n\t26705 - 11904: 0xAEE1,\n\t26707 - 11904: 0xAED9,\n\t26708 - 11904: 0xAEDC,\n\t26709 - 11904: 0x9B4A,\n\t26710 - 11904: 0x8FB9,\n\t26717 - 11904: 0xFCFE,\n\t26725 - 11904: 0x896A,\n\t26731 - 11904: 0xD5C4,\n\t26733 - 11904: 0xD5B4,\n\t26734 - 11904: 0xD5B5,\n\t26735 - 11904: 0xD5B9,\n\t26737 - 11904: 0xD5C8,\n\t26738 - 11904: 0xD5C5,\n\t26740 - 11904: 0xD5BE,\n\t26741 - 11904: 0xD5BD,\n\t26742 - 11904: 0xB1ED,\n\t26743 - 11904: 0xD5C1,\n\t26744 - 11904: 0xD5D0,\n\t26745 - 11904: 0xD5B0,\n\t26747 - 11904: 0xD5D1,\n\t26748 - 11904: 0xD5C3,\n\t26749 - 11904: 0xD5D5,\n\t26750 - 11904: 0xD5C9,\n\t26751 - 11904: 0xB1EC,\n\t26752 - 11904: 0xD5C7,\n\t26753 - 11904: 0xB1E7,\n\t26754 - 11904: 0xB1FC,\n\t26755 - 11904: 0xB1F2,\n\t26756 - 11904: 0x8DB9,\n\t26757 - 11904: 0xB1F6,\n\t26758 - 11904: 0xB1F5,\n\t26759 - 11904: 0xD5B1,\n\t26760 - 11904: 0x917E,\n\t26761 - 11904: 0xD5CE,\n\t26762 - 11904: 0xD5D4,\n\t26763 - 11904: 0xD5CC,\n\t26764 - 11904: 0xD5D3,\n\t26767 - 11904: 0xD5C0,\n\t26768 - 11904: 0xD5B2,\n\t26769 - 11904: 0xD5D2,\n\t26770 - 11904: 0xD5C2,\n\t26771 - 11904: 0xB1EA,\n\t26772 - 11904: 0xB1F7,\n\t26774 - 11904: 0xD5CB,\n\t26775 - 11904: 0xB1F0,\n\t26776 - 11904: 0x93F4,\n\t26779 - 11904: 0xD5CA,\n\t26780 - 11904: 0xD5B3,\n\t26781 - 11904: 0xB1F8,\n\t26783 - 11904: 0xB1FA,\n\t26784 - 11904: 0xD5CD,\n\t26785 - 11904: 0xB1FB,\n\t26786 - 11904: 0xB1E9,\n\t26787 - 11904: 0xD5BA,\n\t26788 - 11904: 0xD5CF,\n\t26790 - 11904: 0xFB7C,\n\t26791 - 11904: 0xB1EF,\n\t26792 - 11904: 0xB1F9,\n\t26793 - 11904: 0xD5BC,\n\t26794 - 11904: 0xD5C6,\n\t26795 - 11904: 0xD5B7,\n\t26796 - 11904: 0xD5BB,\n\t26797 - 11904: 0xB1F4,\n\t26798 - 11904: 0xD5B6,\n\t26799 - 11904: 0xB1E8,\n\t26800 - 11904: 0xB1F1,\n\t26801 - 11904: 0xB1EE,\n\t26802 - 11904: 0xD5BF,\n\t26803 - 11904: 0xAEDE,\n\t26804 - 11904: 0xD9C0,\n\t26805 - 11904: 0xB1EB,\n\t26806 - 11904: 0x93E7,\n\t26809 - 11904: 0x97EF,\n\t26813 - 11904: 0xFE4A,\n\t26819 - 11904: 0xFD45,\n\t26820 - 11904: 0xB1F3,\n\t26821 - 11904: 0x96A5,\n\t26822 - 11904: 0xD9C3,\n\t26823 - 11904: 0xD9D9,\n\t26824 - 11904: 0xD9CE,\n\t26825 - 11904: 0xB4D6,\n\t26826 - 11904: 0xFEE0,\n\t26827 - 11904: 0xB4D1,\n\t26828 - 11904: 0xD9BD,\n\t26829 - 11904: 0xB4D2,\n\t26830 - 11904: 0xD9CD,\n\t26832 - 11904: 0xD9C6,\n\t26833 - 11904: 0xD9D3,\n\t26834 - 11904: 0xB4CE,\n\t26835 - 11904: 0xD9AB,\n\t26836 - 11904: 0xD9D5,\n\t26837 - 11904: 0xB4C4,\n\t26838 - 11904: 0xD9B3,\n\t26839 - 11904: 0xB4C7,\n\t26840 - 11904: 0xB4C6,\n\t26842 - 11904: 0xB4D7,\n\t26844 - 11904: 0xD9AD,\n\t26845 - 11904: 0xD9CF,\n\t26846 - 11904: 0xD9D0,\n\t26847 - 11904: 0xB4C9,\n\t26848 - 11904: 0xB4C5,\n\t26849 - 11904: 0xD9BB,\n\t26851 - 11904: 0xB4D0,\n\t26852 - 11904: 0xD9B6,\n\t26854 - 11904: 0xD9D1,\n\t26855 - 11904: 0xB4CC,\n\t26856 - 11904: 0xD9C9,\n\t26857 - 11904: 0xD9D6,\n\t26858 - 11904: 0xD9B0,\n\t26859 - 11904: 0xD9B5,\n\t26860 - 11904: 0xD9AF,\n\t26862 - 11904: 0xB4CB,\n\t26863 - 11904: 0xD9C2,\n\t26864 - 11904: 0xDDDE,\n\t26865 - 11904: 0xD9B1,\n\t26866 - 11904: 0xB4CF,\n\t26867 - 11904: 0xD9BA,\n\t26868 - 11904: 0xD9D2,\n\t26869 - 11904: 0xB4CA,\n\t26870 - 11904: 0xD9B7,\n\t26871 - 11904: 0xD9B4,\n\t26872 - 11904: 0xD9C5,\n\t26873 - 11904: 0xB4CD,\n\t26874 - 11904: 0xB4C3,\n\t26875 - 11904: 0xB4D9,\n\t26876 - 11904: 0xD9C8,\n\t26877 - 11904: 0xD9C7,\n\t26880 - 11904: 0xFD48,\n\t26881 - 11904: 0xFD47,\n\t26882 - 11904: 0xFEF2,\n\t26883 - 11904: 0xFE6A,\n\t26884 - 11904: 0xD9AC,\n\t26885 - 11904: 0xB4C8,\n\t26886 - 11904: 0xD9D4,\n\t26887 - 11904: 0xD9BC,\n\t26888 - 11904: 0xD9BE,\n\t26889 - 11904: 0x8DBD,\n\t26890 - 11904: 0xD9CB,\n\t26891 - 11904: 0xD9CA,\n\t26892 - 11904: 0xD9AA,\n\t26893 - 11904: 0xB4D3,\n\t26894 - 11904: 0xB4D5,\n\t26895 - 11904: 0xD9B2,\n\t26896 - 11904: 0xD9B9,\n\t26897 - 11904: 0xD9C1,\n\t26898 - 11904: 0xB4D4,\n\t26899 - 11904: 0xD9B8,\n\t26900 - 11904: 0xD9C4,\n\t26901 - 11904: 0xD9D7,\n\t26903 - 11904: 0xD9CC,\n\t26904 - 11904: 0x9BA1,\n\t26905 - 11904: 0x8CA2,\n\t26906 - 11904: 0x9AB7,\n\t26907 - 11904: 0x8EFC,\n\t26917 - 11904: 0xD9D8,\n\t26922 - 11904: 0xD9AE,\n\t26924 - 11904: 0x9FA1,\n\t26927 - 11904: 0xDDF2,\n\t26928 - 11904: 0xB7A6,\n\t26930 - 11904: 0xDDF0,\n\t26931 - 11904: 0xDDDB,\n\t26932 - 11904: 0xDDE0,\n\t26933 - 11904: 0xDDD9,\n\t26934 - 11904: 0xFD51,\n\t26935 - 11904: 0xDDEC,\n\t26936 - 11904: 0xDDCB,\n\t26937 - 11904: 0xDDD2,\n\t26939 - 11904: 0xDDEA,\n\t26940 - 11904: 0xDDF4,\n\t26941 - 11904: 0xDDDC,\n\t26942 - 11904: 0xFAAD,\n\t26943 - 11904: 0xDDCF,\n\t26944 - 11904: 0xDDE2,\n\t26945 - 11904: 0xDDE7,\n\t26946 - 11904: 0xDDD3,\n\t26947 - 11904: 0x8DBE,\n\t26948 - 11904: 0xDDE4,\n\t26949 - 11904: 0xDDD0,\n\t26950 - 11904: 0x89A4,\n\t26952 - 11904: 0xDDD7,\n\t26953 - 11904: 0xDDD8,\n\t26954 - 11904: 0xB7A8,\n\t26955 - 11904: 0xDDEB,\n\t26956 - 11904: 0xDDE9,\n\t26958 - 11904: 0xDDCC,\n\t26959 - 11904: 0xDDEE,\n\t26961 - 11904: 0xDDEF,\n\t26962 - 11904: 0xDDF1,\n\t26963 - 11904: 0xB7AC,\n\t26964 - 11904: 0xB7A4,\n\t26965 - 11904: 0x9AD9,\n\t26966 - 11904: 0xD5B8,\n\t26967 - 11904: 0xDDD4,\n\t26968 - 11904: 0xDDE6,\n\t26969 - 11904: 0xDDD5,\n\t26970 - 11904: 0xB7A1,\n\t26971 - 11904: 0xB7B1,\n\t26972 - 11904: 0xDDED,\n\t26973 - 11904: 0xB7AF,\n\t26974 - 11904: 0xB7AB,\n\t26975 - 11904: 0xDDCA,\n\t26976 - 11904: 0xB7A3,\n\t26977 - 11904: 0xFD4E,\n\t26978 - 11904: 0xDDCD,\n\t26979 - 11904: 0xB7B0,\n\t26980 - 11904: 0x8DC0,\n\t26981 - 11904: 0xDDDD,\n\t26982 - 11904: 0xDDC9,\n\t26983 - 11904: 0x97F0,\n\t26984 - 11904: 0xB7A9,\n\t26985 - 11904: 0xDDE1,\n\t26986 - 11904: 0xDDD1,\n\t26987 - 11904: 0xB7AA,\n\t26988 - 11904: 0xDDDA,\n\t26989 - 11904: 0xB77E,\n\t26990 - 11904: 0xB4D8,\n\t26991 - 11904: 0xDDE3,\n\t26992 - 11904: 0xD9BF,\n\t26993 - 11904: 0xDDCE,\n\t26994 - 11904: 0x93B4,\n\t26995 - 11904: 0xFD44,\n\t26996 - 11904: 0xDDE8,\n\t26997 - 11904: 0xB7A5,\n\t26998 - 11904: 0xDDE5,\n\t26999 - 11904: 0xB7A2,\n\t27000 - 11904: 0xDDDF,\n\t27001 - 11904: 0xB7AD,\n\t27002 - 11904: 0xDDD6,\n\t27003 - 11904: 0xDDF3,\n\t27008 - 11904: 0x9FA7,\n\t27010 - 11904: 0xB7A7,\n\t27011 - 11904: 0xDEC6,\n\t27013 - 11904: 0x8DC2,\n\t27014 - 11904: 0xB7AE,\n\t27018 - 11904: 0x99B6,\n\t27021 - 11904: 0xE24A,\n\t27022 - 11904: 0xE248,\n\t27024 - 11904: 0xE25E,\n\t27025 - 11904: 0xE246,\n\t27027 - 11904: 0xE258,\n\t27028 - 11904: 0xB77D,\n\t27029 - 11904: 0xBA5F,\n\t27030 - 11904: 0xE242,\n\t27031 - 11904: 0xE25D,\n\t27032 - 11904: 0xFD52,\n\t27033 - 11904: 0xE247,\n\t27034 - 11904: 0xE255,\n\t27035 - 11904: 0xBA64,\n\t27036 - 11904: 0xBA5D,\n\t27038 - 11904: 0xE25B,\n\t27039 - 11904: 0x8DC1,\n\t27040 - 11904: 0xE240,\n\t27041 - 11904: 0xE25A,\n\t27042 - 11904: 0x8E46,\n\t27043 - 11904: 0xBA6F,\n\t27044 - 11904: 0xE251,\n\t27045 - 11904: 0xE261,\n\t27046 - 11904: 0xBA6D,\n\t27047 - 11904: 0xE249,\n\t27048 - 11904: 0xBA5E,\n\t27049 - 11904: 0xE24B,\n\t27050 - 11904: 0xE259,\n\t27051 - 11904: 0xBA67,\n\t27052 - 11904: 0xE244,\n\t27053 - 11904: 0xBA6B,\n\t27054 - 11904: 0xBA61,\n\t27055 - 11904: 0xE24D,\n\t27056 - 11904: 0xE243,\n\t27057 - 11904: 0xE1FC,\n\t27058 - 11904: 0xA0D1,\n\t27059 - 11904: 0xE257,\n\t27060 - 11904: 0xBA68,\n\t27061 - 11904: 0xE260,\n\t27062 - 11904: 0xE1FD,\n\t27063 - 11904: 0xBA65,\n\t27065 - 11904: 0xE253,\n\t27067 - 11904: 0xBA66,\n\t27068 - 11904: 0xE245,\n\t27069 - 11904: 0xE250,\n\t27070 - 11904: 0xE24C,\n\t27071 - 11904: 0xE24E,\n\t27072 - 11904: 0x9FCA,\n\t27073 - 11904: 0xBA60,\n\t27074 - 11904: 0xE25F,\n\t27075 - 11904: 0xBA6E,\n\t27076 - 11904: 0xE24F,\n\t27078 - 11904: 0xE262,\n\t27081 - 11904: 0xE1FE,\n\t27082 - 11904: 0xE254,\n\t27083 - 11904: 0xBA63,\n\t27084 - 11904: 0xBA6C,\n\t27085 - 11904: 0xBA6A,\n\t27086 - 11904: 0xE241,\n\t27087 - 11904: 0xE256,\n\t27088 - 11904: 0xBA69,\n\t27089 - 11904: 0x92CF,\n\t27091 - 11904: 0xBA62,\n\t27092 - 11904: 0xE252,\n\t27093 - 11904: 0x9CF4,\n\t27094 - 11904: 0x8DC4,\n\t27097 - 11904: 0xE25C,\n\t27105 - 11904: 0xFD41,\n\t27106 - 11904: 0xE5D5,\n\t27108 - 11904: 0xE5D1,\n\t27109 - 11904: 0xE5CD,\n\t27110 - 11904: 0xE5E1,\n\t27111 - 11904: 0xE5DE,\n\t27112 - 11904: 0xBCCD,\n\t27113 - 11904: 0x9B4C,\n\t27115 - 11904: 0xE5E5,\n\t27116 - 11904: 0xE5D4,\n\t27117 - 11904: 0xBCD8,\n\t27118 - 11904: 0xE5DB,\n\t27121 - 11904: 0xE5D0,\n\t27122 - 11904: 0xE5DA,\n\t27123 - 11904: 0xBCD5,\n\t27124 - 11904: 0xE5EE,\n\t27126 - 11904: 0xE5EB,\n\t27127 - 11904: 0xE5DD,\n\t27128 - 11904: 0xE5CE,\n\t27129 - 11904: 0xFD57,\n\t27130 - 11904: 0xFCEF,\n\t27131 - 11904: 0xE5E2,\n\t27132 - 11904: 0xE5E4,\n\t27133 - 11904: 0xBCD1,\n\t27134 - 11904: 0xE5D8,\n\t27135 - 11904: 0xE5D3,\n\t27136 - 11904: 0xE5CA,\n\t27137 - 11904: 0xBCCE,\n\t27138 - 11904: 0xBCD6,\n\t27139 - 11904: 0x9CDE,\n\t27140 - 11904: 0xE5E7,\n\t27141 - 11904: 0xBCD7,\n\t27142 - 11904: 0xE5CB,\n\t27143 - 11904: 0xE5ED,\n\t27144 - 11904: 0xE5E0,\n\t27145 - 11904: 0xE5E6,\n\t27146 - 11904: 0xBCD4,\n\t27147 - 11904: 0xFD42,\n\t27148 - 11904: 0x986C,\n\t27149 - 11904: 0xE5E3,\n\t27151 - 11904: 0xE5EA,\n\t27153 - 11904: 0xBCD9,\n\t27155 - 11904: 0xBCD3,\n\t27156 - 11904: 0xE5DC,\n\t27157 - 11904: 0xE5CF,\n\t27158 - 11904: 0xE5EF,\n\t27159 - 11904: 0xE5CC,\n\t27160 - 11904: 0xE5E8,\n\t27161 - 11904: 0xBCD0,\n\t27162 - 11904: 0x97F9,\n\t27163 - 11904: 0xE5D6,\n\t27164 - 11904: 0x9558,\n\t27165 - 11904: 0xE5D7,\n\t27166 - 11904: 0xBCCF,\n\t27167 - 11904: 0xBCCC,\n\t27168 - 11904: 0xE5D2,\n\t27169 - 11904: 0xBCD2,\n\t27171 - 11904: 0xBCCB,\n\t27173 - 11904: 0xE5E9,\n\t27174 - 11904: 0xE5EC,\n\t27175 - 11904: 0xE5D9,\n\t27176 - 11904: 0xE9CA,\n\t27177 - 11904: 0x87B6,\n\t27179 - 11904: 0x985E,\n\t27180 - 11904: 0xFE7B,\n\t27181 - 11904: 0x94CD,\n\t27186 - 11904: 0xE9C2,\n\t27187 - 11904: 0x93EE,\n\t27188 - 11904: 0xE9BE,\n\t27189 - 11904: 0xBEF6,\n\t27192 - 11904: 0xBEEB,\n\t27193 - 11904: 0xBEF0,\n\t27194 - 11904: 0xBEEC,\n\t27195 - 11904: 0xE9CC,\n\t27196 - 11904: 0xE9D7,\n\t27197 - 11904: 0xBEEA,\n\t27198 - 11904: 0xE9C4,\n\t27199 - 11904: 0xE9CD,\n\t27200 - 11904: 0xE5DF,\n\t27201 - 11904: 0xE9CE,\n\t27203 - 11904: 0x8CA3,\n\t27204 - 11904: 0xBEF1,\n\t27205 - 11904: 0xFD5A,\n\t27206 - 11904: 0xE9DD,\n\t27207 - 11904: 0xBEF5,\n\t27208 - 11904: 0xBEF8,\n\t27209 - 11904: 0xE9C0,\n\t27211 - 11904: 0xBEF4,\n\t27212 - 11904: 0x93F5,\n\t27213 - 11904: 0xE9DB,\n\t27214 - 11904: 0xE9DC,\n\t27215 - 11904: 0xE9D2,\n\t27216 - 11904: 0xE9D1,\n\t27217 - 11904: 0xE9C9,\n\t27218 - 11904: 0x93EF,\n\t27219 - 11904: 0x8EEA,\n\t27220 - 11904: 0xE9D3,\n\t27221 - 11904: 0xE9DA,\n\t27222 - 11904: 0xE9D9,\n\t27223 - 11904: 0x8F5B,\n\t27224 - 11904: 0xBEEF,\n\t27225 - 11904: 0xBEED,\n\t27226 - 11904: 0xE9CB,\n\t27227 - 11904: 0xE9C8,\n\t27229 - 11904: 0xE9C5,\n\t27230 - 11904: 0xE9D8,\n\t27231 - 11904: 0xBEF7,\n\t27232 - 11904: 0xE9D6,\n\t27233 - 11904: 0xBEF3,\n\t27234 - 11904: 0xBEF2,\n\t27235 - 11904: 0x8C5E,\n\t27236 - 11904: 0xE9D0,\n\t27237 - 11904: 0x8DC6,\n\t27238 - 11904: 0xE9BF,\n\t27239 - 11904: 0xE9C1,\n\t27240 - 11904: 0xE9C3,\n\t27241 - 11904: 0xE9D5,\n\t27242 - 11904: 0xE9CF,\n\t27243 - 11904: 0xBEEE,\n\t27245 - 11904: 0xE9C6,\n\t27247 - 11904: 0xE9D4,\n\t27249 - 11904: 0x8DC8,\n\t27252 - 11904: 0x8DC7,\n\t27254 - 11904: 0xE9C7,\n\t27258 - 11904: 0x93F7,\n\t27262 - 11904: 0xC0CF,\n\t27263 - 11904: 0xED45,\n\t27264 - 11904: 0xC0C8,\n\t27265 - 11904: 0xECF5,\n\t27266 - 11904: 0x8DC9,\n\t27267 - 11904: 0xED41,\n\t27268 - 11904: 0xC0CA,\n\t27269 - 11904: 0xED48,\n\t27271 - 11904: 0xECFC,\n\t27273 - 11904: 0xECF7,\n\t27274 - 11904: 0xFBF2,\n\t27276 - 11904: 0xED49,\n\t27277 - 11904: 0xECF3,\n\t27278 - 11904: 0xECFE,\n\t27279 - 11904: 0x9670,\n\t27280 - 11904: 0xC0D1,\n\t27281 - 11904: 0xED44,\n\t27282 - 11904: 0xED4A,\n\t27283 - 11904: 0xECFD,\n\t27284 - 11904: 0xC0C9,\n\t27285 - 11904: 0xED40,\n\t27286 - 11904: 0xECF4,\n\t27287 - 11904: 0xC0D0,\n\t27289 - 11904: 0x8DCB,\n\t27290 - 11904: 0xED47,\n\t27291 - 11904: 0xECF9,\n\t27292 - 11904: 0xC0CC,\n\t27293 - 11904: 0xFD5C,\n\t27294 - 11904: 0xECFB,\n\t27295 - 11904: 0xECF8,\n\t27296 - 11904: 0xC0D2,\n\t27297 - 11904: 0xECFA,\n\t27298 - 11904: 0xC0CB,\n\t27299 - 11904: 0xC0CE,\n\t27300 - 11904: 0xED43,\n\t27301 - 11904: 0xECF6,\n\t27302 - 11904: 0xED46,\n\t27303 - 11904: 0x8F65,\n\t27304 - 11904: 0xED42,\n\t27307 - 11904: 0x8DCD,\n\t27308 - 11904: 0xC263,\n\t27309 - 11904: 0xEFE7,\n\t27310 - 11904: 0xC268,\n\t27311 - 11904: 0xC269,\n\t27313 - 11904: 0x9DA8,\n\t27314 - 11904: 0x94F9,\n\t27315 - 11904: 0xC262,\n\t27316 - 11904: 0xEFE6,\n\t27317 - 11904: 0x8DCE,\n\t27318 - 11904: 0xEFE3,\n\t27319 - 11904: 0xEFE4,\n\t27320 - 11904: 0xC266,\n\t27321 - 11904: 0xEFDE,\n\t27322 - 11904: 0xEFE2,\n\t27323 - 11904: 0xC265,\n\t27325 - 11904: 0xEFDF,\n\t27326 - 11904: 0x93EA,\n\t27330 - 11904: 0xC267,\n\t27331 - 11904: 0xC264,\n\t27333 - 11904: 0xEFDD,\n\t27334 - 11904: 0xEFE1,\n\t27335 - 11904: 0xEFE5,\n\t27336 - 11904: 0xFD5F,\n\t27337 - 11904: 0x93F0,\n\t27338 - 11904: 0x9FB6,\n\t27339 - 11904: 0xF251,\n\t27340 - 11904: 0xF24E,\n\t27341 - 11904: 0xF257,\n\t27343 - 11904: 0xF256,\n\t27344 - 11904: 0xF254,\n\t27345 - 11904: 0xF24F,\n\t27347 - 11904: 0xC372,\n\t27348 - 11904: 0x8DCF,\n\t27352 - 11904: 0x9763,\n\t27353 - 11904: 0xF250,\n\t27354 - 11904: 0xC371,\n\t27355 - 11904: 0xC0CD,\n\t27356 - 11904: 0xF253,\n\t27357 - 11904: 0xC370,\n\t27358 - 11904: 0xF258,\n\t27359 - 11904: 0xF252,\n\t27360 - 11904: 0xF24D,\n\t27361 - 11904: 0xEFE0,\n\t27365 - 11904: 0xC36F,\n\t27367 - 11904: 0xF24C,\n\t27368 - 11904: 0xF456,\n\t27370 - 11904: 0xF455,\n\t27371 - 11904: 0xF255,\n\t27372 - 11904: 0xC468,\n\t27374 - 11904: 0xF459,\n\t27375 - 11904: 0xF45A,\n\t27376 - 11904: 0xF454,\n\t27377 - 11904: 0xF458,\n\t27379 - 11904: 0xF453,\n\t27382 - 11904: 0x8DD0,\n\t27384 - 11904: 0xF5D1,\n\t27385 - 11904: 0xF457,\n\t27386 - 11904: 0xC4E7,\n\t27387 - 11904: 0xC4E5,\n\t27388 - 11904: 0xF5CF,\n\t27392 - 11904: 0xF5D2,\n\t27394 - 11904: 0xF5CE,\n\t27395 - 11904: 0xF5D0,\n\t27396 - 11904: 0xC4E6,\n\t27397 - 11904: 0x93F1,\n\t27400 - 11904: 0xF6E5,\n\t27401 - 11904: 0xF6E6,\n\t27402 - 11904: 0xC576,\n\t27403 - 11904: 0xF6E4,\n\t27407 - 11904: 0xF7E2,\n\t27408 - 11904: 0xC5CF,\n\t27409 - 11904: 0xF7E0,\n\t27410 - 11904: 0xF7E1,\n\t27411 - 11904: 0xF8AC,\n\t27414 - 11904: 0xC656,\n\t27415 - 11904: 0xF8F3,\n\t27416 - 11904: 0xF8F1,\n\t27417 - 11904: 0xF8F2,\n\t27418 - 11904: 0xF8F4,\n\t27421 - 11904: 0xFD62,\n\t27422 - 11904: 0xF9BB,\n\t27424 - 11904: 0xA4ED,\n\t27425 - 11904: 0xA6B8,\n\t27427 - 11904: 0xAA59,\n\t27429 - 11904: 0xCCE9,\n\t27432 - 11904: 0xCF64,\n\t27436 - 11904: 0xD1F5,\n\t27437 - 11904: 0xD1F7,\n\t27439 - 11904: 0xD1F6,\n\t27441 - 11904: 0xD1F8,\n\t27442 - 11904: 0xB1FD,\n\t27443 - 11904: 0xD5D7,\n\t27444 - 11904: 0xD1F9,\n\t27445 - 11904: 0xFD65,\n\t27446 - 11904: 0xD5D6,\n\t27447 - 11904: 0xD5D8,\n\t27448 - 11904: 0xD5D9,\n\t27449 - 11904: 0xD9DA,\n\t27450 - 11904: 0xB4DB,\n\t27451 - 11904: 0xD9DB,\n\t27452 - 11904: 0xD9DD,\n\t27453 - 11904: 0xB4DC,\n\t27454 - 11904: 0xB4DA,\n\t27455 - 11904: 0xD9DC,\n\t27457 - 11904: 0xDDFA,\n\t27458 - 11904: 0xDDF8,\n\t27459 - 11904: 0xDDF7,\n\t27461 - 11904: 0xDDF6,\n\t27462 - 11904: 0xDDF5,\n\t27463 - 11904: 0xB7B2,\n\t27464 - 11904: 0xDDF9,\n\t27465 - 11904: 0xBA70,\n\t27466 - 11904: 0xE263,\n\t27467 - 11904: 0xE265,\n\t27468 - 11904: 0xBA71,\n\t27469 - 11904: 0xE264,\n\t27470 - 11904: 0xBCDB,\n\t27472 - 11904: 0xBCDA,\n\t27473 - 11904: 0xE5F0,\n\t27474 - 11904: 0x9FDB,\n\t27476 - 11904: 0xE9DF,\n\t27477 - 11904: 0xE9DE,\n\t27478 - 11904: 0xE9E0,\n\t27479 - 11904: 0x93F8,\n\t27481 - 11904: 0xBEF9,\n\t27483 - 11904: 0xED4B,\n\t27484 - 11904: 0xC0D3,\n\t27486 - 11904: 0xEFE8,\n\t27487 - 11904: 0xC26A,\n\t27488 - 11904: 0xF259,\n\t27489 - 11904: 0xC577,\n\t27490 - 11904: 0xA4EE,\n\t27491 - 11904: 0xA5BF,\n\t27492 - 11904: 0xA6B9,\n\t27493 - 11904: 0xA842,\n\t27494 - 11904: 0xAA5A,\n\t27495 - 11904: 0xAA5B,\n\t27498 - 11904: 0xAC6E,\n\t27501 - 11904: 0xD1FA,\n\t27503 - 11904: 0x8BF7,\n\t27506 - 11904: 0xB7B3,\n\t27508 - 11904: 0xFD66,\n\t27510 - 11904: 0xE6D1,\n\t27511 - 11904: 0xBEFA,\n\t27512 - 11904: 0xC26B,\n\t27513 - 11904: 0xA4EF,\n\t27514 - 11904: 0x8BCF,\n\t27515 - 11904: 0xA6BA,\n\t27518 - 11904: 0xCCEB,\n\t27519 - 11904: 0xAA5C,\n\t27520 - 11904: 0xCCEA,\n\t27521 - 11904: 0x8DD1,\n\t27522 - 11904: 0xCF65,\n\t27523 - 11904: 0xAC6F,\n\t27524 - 11904: 0xCF66,\n\t27526 - 11904: 0xAC70,\n\t27528 - 11904: 0xD1FC,\n\t27529 - 11904: 0xAEEE,\n\t27530 - 11904: 0xAEED,\n\t27532 - 11904: 0xD5DE,\n\t27533 - 11904: 0xD5DC,\n\t27534 - 11904: 0xD5DD,\n\t27535 - 11904: 0xD5DB,\n\t27537 - 11904: 0xD5DA,\n\t27540 - 11904: 0xD9DE,\n\t27541 - 11904: 0xD9E1,\n\t27542 - 11904: 0xB4DE,\n\t27543 - 11904: 0xD9DF,\n\t27544 - 11904: 0xB4DD,\n\t27545 - 11904: 0xD9E0,\n\t27547 - 11904: 0xDDFB,\n\t27550 - 11904: 0xE266,\n\t27551 - 11904: 0xE267,\n\t27552 - 11904: 0xE268,\n\t27554 - 11904: 0xE5F3,\n\t27555 - 11904: 0xE5F2,\n\t27556 - 11904: 0xBCDC,\n\t27557 - 11904: 0xE5F1,\n\t27558 - 11904: 0xE5F4,\n\t27559 - 11904: 0xE9E1,\n\t27562 - 11904: 0xE9E2,\n\t27563 - 11904: 0xE9E3,\n\t27565 - 11904: 0xED4C,\n\t27566 - 11904: 0xC0D4,\n\t27567 - 11904: 0xC26C,\n\t27568 - 11904: 0xF25A,\n\t27570 - 11904: 0xC4E8,\n\t27571 - 11904: 0xC95F,\n\t27573 - 11904: 0xAC71,\n\t27574 - 11904: 0xCF67,\n\t27575 - 11904: 0xAEEF,\n\t27578 - 11904: 0xB1FE,\n\t27580 - 11904: 0xB4DF,\n\t27581 - 11904: 0xD9E2,\n\t27583 - 11904: 0xB7B5,\n\t27584 - 11904: 0xB7B4,\n\t27585 - 11904: 0x8DD2,\n\t27587 - 11904: 0xE269,\n\t27588 - 11904: 0xE26A,\n\t27589 - 11904: 0xBCDD,\n\t27590 - 11904: 0xBCDE,\n\t27591 - 11904: 0xE9E5,\n\t27592 - 11904: 0xE9E4,\n\t27593 - 11904: 0xEFE9,\n\t27594 - 11904: 0xF7E3,\n\t27595 - 11904: 0xA4F0,\n\t27596 - 11904: 0xC960,\n\t27597 - 11904: 0xA5C0,\n\t27599 - 11904: 0xA843,\n\t27600 - 11904: 0xCB48,\n\t27602 - 11904: 0xAC72,\n\t27603 - 11904: 0xB7B6,\n\t27604 - 11904: 0xA4F1,\n\t27606 - 11904: 0xCF68,\n\t27607 - 11904: 0xAC73,\n\t27608 - 11904: 0xCF69,\n\t27610 - 11904: 0xC0D5,\n\t27611 - 11904: 0xA4F2,\n\t27612 - 11904: 0xFD71,\n\t27614 - 11904: 0xCCEC,\n\t27616 - 11904: 0xCF6A,\n\t27617 - 11904: 0xFD6F,\n\t27618 - 11904: 0xD242,\n\t27619 - 11904: 0xD241,\n\t27620 - 11904: 0xD1FE,\n\t27622 - 11904: 0xD1FD,\n\t27623 - 11904: 0xD243,\n\t27624 - 11904: 0xD240,\n\t27626 - 11904: 0x8DD3,\n\t27627 - 11904: 0xB240,\n\t27628 - 11904: 0xB241,\n\t27631 - 11904: 0xB4E0,\n\t27632 - 11904: 0xD9E3,\n\t27634 - 11904: 0xD9E4,\n\t27635 - 11904: 0xD9E5,\n\t27639 - 11904: 0xDE41,\n\t27640 - 11904: 0xDE42,\n\t27641 - 11904: 0xDE40,\n\t27642 - 11904: 0x9FE7,\n\t27643 - 11904: 0xDDFD,\n\t27644 - 11904: 0xDDFE,\n\t27645 - 11904: 0xB7B7,\n\t27646 - 11904: 0xE26B,\n\t27647 - 11904: 0xE5F7,\n\t27648 - 11904: 0xE5F6,\n\t27649 - 11904: 0xE5F5,\n\t27650 - 11904: 0xE5F8,\n\t27651 - 11904: 0xE9E7,\n\t27652 - 11904: 0xE9E6,\n\t27653 - 11904: 0xBEFB,\n\t27654 - 11904: 0xE9E8,\n\t27656 - 11904: 0xC0D6,\n\t27657 - 11904: 0xED4D,\n\t27659 - 11904: 0xEFEA,\n\t27660 - 11904: 0xF25B,\n\t27661 - 11904: 0xF6E7,\n\t27663 - 11904: 0xA4F3,\n\t27664 - 11904: 0xA5C2,\n\t27665 - 11904: 0xA5C1,\n\t27667 - 11904: 0xAA5D,\n\t27668 - 11904: 0xC961,\n\t27669 - 11904: 0xC97E,\n\t27670 - 11904: 0xA6BB,\n\t27672 - 11904: 0xC9F7,\n\t27673 - 11904: 0xCB49,\n\t27674 - 11904: 0xCB4A,\n\t27675 - 11904: 0xAA5E,\n\t27676 - 11904: 0x90BD,\n\t27677 - 11904: 0xCCED,\n\t27679 - 11904: 0xAC74,\n\t27680 - 11904: 0xCF6B,\n\t27681 - 11904: 0xCF6C,\n\t27683 - 11904: 0xAEF0,\n\t27684 - 11904: 0xAEF4,\n\t27685 - 11904: 0xD244,\n\t27686 - 11904: 0xAEF3,\n\t27687 - 11904: 0xAEF1,\n\t27688 - 11904: 0xAEF2,\n\t27690 - 11904: 0xD5DF,\n\t27691 - 11904: 0xB242,\n\t27692 - 11904: 0xB4E3,\n\t27694 - 11904: 0xB4E1,\n\t27695 - 11904: 0xB4E2,\n\t27696 - 11904: 0xD9E6,\n\t27697 - 11904: 0x9FD0,\n\t27699 - 11904: 0xBA72,\n\t27700 - 11904: 0xA4F4,\n\t27701 - 11904: 0x8BD0,\n\t27702 - 11904: 0xC9A1,\n\t27703 - 11904: 0xFD72,\n\t27704 - 11904: 0xA5C3,\n\t27705 - 11904: 0x9CAE,\n\t27706 - 11904: 0x8BD1,\n\t27707 - 11904: 0xC9A4,\n\t27709 - 11904: 0x8ADB,\n\t27710 - 11904: 0xA5C6,\n\t27711 - 11904: 0xC9A3,\n\t27712 - 11904: 0xA5C5,\n\t27713 - 11904: 0xA5C4,\n\t27714 - 11904: 0xA844,\n\t27715 - 11904: 0xC9A2,\n\t27718 - 11904: 0xC9F8,\n\t27721 - 11904: 0xFAE4,\n\t27722 - 11904: 0xC9FC,\n\t27723 - 11904: 0xC9FE,\n\t27724 - 11904: 0xCA40,\n\t27725 - 11904: 0xA6C5,\n\t27726 - 11904: 0xA6C6,\n\t27727 - 11904: 0xC9FB,\n\t27728 - 11904: 0xA6C1,\n\t27730 - 11904: 0xC9F9,\n\t27732 - 11904: 0xC9FD,\n\t27733 - 11904: 0xA6C2,\n\t27735 - 11904: 0xA6BD,\n\t27736 - 11904: 0x95CE,\n\t27737 - 11904: 0xA6BE,\n\t27738 - 11904: 0xFD76,\n\t27739 - 11904: 0xA6C4,\n\t27740 - 11904: 0xC9FA,\n\t27741 - 11904: 0xA6BC,\n\t27742 - 11904: 0xA845,\n\t27743 - 11904: 0xA6BF,\n\t27744 - 11904: 0xA6C0,\n\t27745 - 11904: 0xA6C3,\n\t27749 - 11904: 0xCB5B,\n\t27750 - 11904: 0xCB59,\n\t27751 - 11904: 0xCB4C,\n\t27752 - 11904: 0xA851,\n\t27753 - 11904: 0xCB53,\n\t27754 - 11904: 0xA84C,\n\t27755 - 11904: 0xCB4D,\n\t27757 - 11904: 0xCB55,\n\t27758 - 11904: 0xFB62,\n\t27759 - 11904: 0xCB52,\n\t27760 - 11904: 0xA84F,\n\t27761 - 11904: 0xCB51,\n\t27762 - 11904: 0xA856,\n\t27763 - 11904: 0xCB5A,\n\t27764 - 11904: 0xA858,\n\t27765 - 11904: 0x8DD4,\n\t27766 - 11904: 0xA85A,\n\t27768 - 11904: 0xCB4B,\n\t27769 - 11904: 0xFD78,\n\t27770 - 11904: 0xA84D,\n\t27771 - 11904: 0xCB5C,\n\t27773 - 11904: 0xA854,\n\t27774 - 11904: 0xA857,\n\t27775 - 11904: 0x8EE3,\n\t27776 - 11904: 0xCD45,\n\t27777 - 11904: 0xA847,\n\t27778 - 11904: 0xA85E,\n\t27779 - 11904: 0xA855,\n\t27780 - 11904: 0xCB4E,\n\t27781 - 11904: 0xA84A,\n\t27782 - 11904: 0xA859,\n\t27783 - 11904: 0xCB56,\n\t27784 - 11904: 0xA848,\n\t27785 - 11904: 0xA849,\n\t27786 - 11904: 0xCD43,\n\t27787 - 11904: 0xCB4F,\n\t27788 - 11904: 0xA850,\n\t27789 - 11904: 0xA85B,\n\t27790 - 11904: 0xCB5D,\n\t27791 - 11904: 0xCB50,\n\t27792 - 11904: 0xA84E,\n\t27794 - 11904: 0xA853,\n\t27795 - 11904: 0xCCEE,\n\t27796 - 11904: 0xA85C,\n\t27797 - 11904: 0xCB57,\n\t27798 - 11904: 0xA852,\n\t27800 - 11904: 0xA85D,\n\t27801 - 11904: 0xA846,\n\t27802 - 11904: 0xCB54,\n\t27803 - 11904: 0xA84B,\n\t27804 - 11904: 0xFDB7,\n\t27805 - 11904: 0xCD44,\n\t27807 - 11904: 0x9076,\n\t27810 - 11904: 0x98C6,\n\t27818 - 11904: 0x8DD5,\n\t27819 - 11904: 0xAA6A,\n\t27820 - 11904: 0xAA7A,\n\t27821 - 11904: 0xCCF5,\n\t27822 - 11904: 0xAA71,\n\t27823 - 11904: 0x97D1,\n\t27824 - 11904: 0xCD4B,\n\t27825 - 11904: 0xAA62,\n\t27826 - 11904: 0x9EB6,\n\t27827 - 11904: 0xAA65,\n\t27828 - 11904: 0xCD42,\n\t27830 - 11904: 0xCCF3,\n\t27831 - 11904: 0xCCF7,\n\t27832 - 11904: 0xAA6D,\n\t27833 - 11904: 0xAA6F,\n\t27834 - 11904: 0xCCFA,\n\t27835 - 11904: 0xAA76,\n\t27836 - 11904: 0xAA68,\n\t27837 - 11904: 0xAA66,\n\t27838 - 11904: 0xAA67,\n\t27839 - 11904: 0xAA75,\n\t27840 - 11904: 0xCD47,\n\t27841 - 11904: 0xAA70,\n\t27842 - 11904: 0xCCF9,\n\t27843 - 11904: 0xCCFB,\n\t27844 - 11904: 0xAA6E,\n\t27845 - 11904: 0xAA73,\n\t27846 - 11904: 0xCCFC,\n\t27847 - 11904: 0xCD4A,\n\t27849 - 11904: 0xAC75,\n\t27850 - 11904: 0xAA79,\n\t27851 - 11904: 0xFAC7,\n\t27852 - 11904: 0xAA63,\n\t27853 - 11904: 0xCD49,\n\t27854 - 11904: 0xA042,\n\t27855 - 11904: 0xCD4D,\n\t27856 - 11904: 0xCCF8,\n\t27857 - 11904: 0xCD4F,\n\t27858 - 11904: 0xCD40,\n\t27859 - 11904: 0xAA6C,\n\t27860 - 11904: 0xCCF4,\n\t27861 - 11904: 0xAA6B,\n\t27862 - 11904: 0xAA7D,\n\t27863 - 11904: 0xAA72,\n\t27865 - 11904: 0xCCF2,\n\t27866 - 11904: 0xCF75,\n\t27867 - 11904: 0xAA78,\n\t27868 - 11904: 0xAA7C,\n\t27869 - 11904: 0xCD41,\n\t27870 - 11904: 0xCD46,\n\t27871 - 11904: 0x9873,\n\t27872 - 11904: 0xAA7E,\n\t27873 - 11904: 0xAA77,\n\t27874 - 11904: 0xAA69,\n\t27875 - 11904: 0xAA5F,\n\t27877 - 11904: 0xAA64,\n\t27879 - 11904: 0xCCF6,\n\t27880 - 11904: 0xAA60,\n\t27881 - 11904: 0xCD4E,\n\t27882 - 11904: 0x9FFC,\n\t27883 - 11904: 0xCCF0,\n\t27884 - 11904: 0xCCEF,\n\t27885 - 11904: 0xCCFD,\n\t27886 - 11904: 0xCCF1,\n\t27887 - 11904: 0xAA7B,\n\t27888 - 11904: 0xAEF5,\n\t27889 - 11904: 0xAA74,\n\t27890 - 11904: 0xCCFE,\n\t27891 - 11904: 0xAA61,\n\t27893 - 11904: 0xACA6,\n\t27897 - 11904: 0xCD4C,\n\t27903 - 11904: 0x8CA5,\n\t27904 - 11904: 0xCF7C,\n\t27905 - 11904: 0xCFA1,\n\t27906 - 11904: 0x8DD7,\n\t27907 - 11904: 0xCFA4,\n\t27908 - 11904: 0xCF77,\n\t27909 - 11904: 0x92FB,\n\t27910 - 11904: 0x8DD8,\n\t27911 - 11904: 0xCFA7,\n\t27912 - 11904: 0xCFAA,\n\t27913 - 11904: 0xCFAC,\n\t27914 - 11904: 0xCF74,\n\t27915 - 11904: 0xAC76,\n\t27916 - 11904: 0xAC7B,\n\t27917 - 11904: 0xD249,\n\t27918 - 11904: 0xACAD,\n\t27919 - 11904: 0xCFA5,\n\t27920 - 11904: 0xCFAD,\n\t27921 - 11904: 0xCF7B,\n\t27922 - 11904: 0xCF73,\n\t27926 - 11904: 0xD264,\n\t27927 - 11904: 0xAC7E,\n\t27928 - 11904: 0xCFA2,\n\t27929 - 11904: 0xCF78,\n\t27930 - 11904: 0xCF7A,\n\t27931 - 11904: 0xACA5,\n\t27933 - 11904: 0xCF7D,\n\t27934 - 11904: 0xAC7D,\n\t27935 - 11904: 0xCF70,\n\t27936 - 11904: 0xCFA8,\n\t27938 - 11904: 0xCFAB,\n\t27940 - 11904: 0x944F,\n\t27941 - 11904: 0xAC7A,\n\t27942 - 11904: 0x8DD9,\n\t27943 - 11904: 0xACA8,\n\t27944 - 11904: 0xCF6D,\n\t27945 - 11904: 0xACAA,\n\t27946 - 11904: 0xAC78,\n\t27947 - 11904: 0xACAE,\n\t27948 - 11904: 0xCFA9,\n\t27949 - 11904: 0xCF6F,\n\t27950 - 11904: 0xACAB,\n\t27951 - 11904: 0xD25E,\n\t27952 - 11904: 0xCD48,\n\t27953 - 11904: 0xAC7C,\n\t27954 - 11904: 0xAC77,\n\t27955 - 11904: 0xCF76,\n\t27956 - 11904: 0xCF6E,\n\t27957 - 11904: 0xACAC,\n\t27958 - 11904: 0xACA4,\n\t27959 - 11904: 0xCFA3,\n\t27960 - 11904: 0xACA9,\n\t27961 - 11904: 0xACA7,\n\t27962 - 11904: 0xCF79,\n\t27963 - 11904: 0xACA1,\n\t27964 - 11904: 0xCF71,\n\t27965 - 11904: 0xACA2,\n\t27966 - 11904: 0xACA3,\n\t27967 - 11904: 0xCF72,\n\t27968 - 11904: 0xCFA6,\n\t27969 - 11904: 0xAC79,\n\t27970 - 11904: 0xCF7E,\n\t27982 - 11904: 0x896B,\n\t27991 - 11904: 0x97CE,\n\t27992 - 11904: 0xD24C,\n\t27993 - 11904: 0xAEFD,\n\t27994 - 11904: 0xAF43,\n\t27995 - 11904: 0xFAF3,\n\t27996 - 11904: 0xFDAE,\n\t27998 - 11904: 0xD255,\n\t27999 - 11904: 0xD25B,\n\t28000 - 11904: 0xD257,\n\t28001 - 11904: 0xD24A,\n\t28002 - 11904: 0xD24D,\n\t28003 - 11904: 0xD246,\n\t28004 - 11904: 0xD247,\n\t28005 - 11904: 0xAF4A,\n\t28006 - 11904: 0xAEFA,\n\t28007 - 11904: 0xD256,\n\t28008 - 11904: 0xD25F,\n\t28009 - 11904: 0xAF45,\n\t28010 - 11904: 0xAEF6,\n\t28012 - 11904: 0xAF40,\n\t28013 - 11904: 0xD24E,\n\t28014 - 11904: 0xAF42,\n\t28015 - 11904: 0xD24F,\n\t28016 - 11904: 0xD259,\n\t28017 - 11904: 0xFBAF,\n\t28018 - 11904: 0x92B7,\n\t28020 - 11904: 0xAF44,\n\t28021 - 11904: 0xD268,\n\t28022 - 11904: 0xD248,\n\t28023 - 11904: 0xAEFC,\n\t28024 - 11904: 0xAEFB,\n\t28025 - 11904: 0xAF48,\n\t28026 - 11904: 0xD245,\n\t28027 - 11904: 0xD266,\n\t28028 - 11904: 0xD25A,\n\t28029 - 11904: 0xD267,\n\t28030 - 11904: 0xD261,\n\t28031 - 11904: 0xD253,\n\t28032 - 11904: 0xD262,\n\t28033 - 11904: 0x8DDA,\n\t28034 - 11904: 0xD25C,\n\t28035 - 11904: 0xD265,\n\t28036 - 11904: 0xD263,\n\t28037 - 11904: 0xAF49,\n\t28038 - 11904: 0xD254,\n\t28039 - 11904: 0xAEF9,\n\t28040 - 11904: 0xAEF8,\n\t28041 - 11904: 0xAF41,\n\t28042 - 11904: 0xAF47,\n\t28043 - 11904: 0xD260,\n\t28044 - 11904: 0xAF46,\n\t28045 - 11904: 0xD251,\n\t28046 - 11904: 0xB243,\n\t28047 - 11904: 0x9C5A,\n\t28048 - 11904: 0xD269,\n\t28049 - 11904: 0xD250,\n\t28050 - 11904: 0xD24B,\n\t28051 - 11904: 0xAEFE,\n\t28052 - 11904: 0xAF4B,\n\t28053 - 11904: 0xAEF7,\n\t28054 - 11904: 0xFDAD,\n\t28055 - 11904: 0xD258,\n\t28056 - 11904: 0xD25D,\n\t28068 - 11904: 0x8DDC,\n\t28069 - 11904: 0x9444,\n\t28074 - 11904: 0xB265,\n\t28075 - 11904: 0xD5E1,\n\t28076 - 11904: 0xD5E5,\n\t28078 - 11904: 0xB252,\n\t28079 - 11904: 0xB250,\n\t28081 - 11904: 0x8DDD,\n\t28082 - 11904: 0xB247,\n\t28083 - 11904: 0xD5E3,\n\t28084 - 11904: 0xD5E2,\n\t28085 - 11904: 0xB25B,\n\t28087 - 11904: 0xD5E8,\n\t28088 - 11904: 0xB255,\n\t28089 - 11904: 0xA0D6,\n\t28090 - 11904: 0xD5FA,\n\t28091 - 11904: 0xD647,\n\t28092 - 11904: 0xB244,\n\t28093 - 11904: 0xD5F7,\n\t28094 - 11904: 0xD5F0,\n\t28095 - 11904: 0xB267,\n\t28096 - 11904: 0xD5E0,\n\t28098 - 11904: 0xD5FC,\n\t28100 - 11904: 0xB264,\n\t28101 - 11904: 0xB258,\n\t28102 - 11904: 0xB263,\n\t28103 - 11904: 0xB24E,\n\t28104 - 11904: 0xD5EC,\n\t28105 - 11904: 0xD5FE,\n\t28106 - 11904: 0xD5F6,\n\t28107 - 11904: 0xB24F,\n\t28108 - 11904: 0xB249,\n\t28109 - 11904: 0xD645,\n\t28111 - 11904: 0xD5FD,\n\t28112 - 11904: 0xD640,\n\t28113 - 11904: 0xB251,\n\t28114 - 11904: 0xB259,\n\t28115 - 11904: 0xD642,\n\t28116 - 11904: 0xD5EA,\n\t28117 - 11904: 0xD5FB,\n\t28118 - 11904: 0xD5EF,\n\t28119 - 11904: 0xD644,\n\t28120 - 11904: 0xB25E,\n\t28121 - 11904: 0xB246,\n\t28122 - 11904: 0xB25C,\n\t28123 - 11904: 0xD5F4,\n\t28124 - 11904: 0xD5F2,\n\t28125 - 11904: 0xD5F3,\n\t28126 - 11904: 0xB253,\n\t28127 - 11904: 0xD5EE,\n\t28128 - 11904: 0xD5ED,\n\t28129 - 11904: 0xB248,\n\t28130 - 11904: 0xD5E7,\n\t28131 - 11904: 0xD646,\n\t28132 - 11904: 0xB24A,\n\t28133 - 11904: 0xD5F1,\n\t28134 - 11904: 0xB268,\n\t28136 - 11904: 0xB262,\n\t28137 - 11904: 0xD5E6,\n\t28138 - 11904: 0xB25F,\n\t28139 - 11904: 0xB25D,\n\t28140 - 11904: 0xB266,\n\t28141 - 11904: 0xD5F8,\n\t28142 - 11904: 0xB261,\n\t28143 - 11904: 0xD252,\n\t28144 - 11904: 0xD5F9,\n\t28145 - 11904: 0xB260,\n\t28146 - 11904: 0xD641,\n\t28147 - 11904: 0xB245,\n\t28148 - 11904: 0xD5F5,\n\t28149 - 11904: 0xB257,\n\t28150 - 11904: 0xD5E9,\n\t28151 - 11904: 0xB256,\n\t28153 - 11904: 0xB254,\n\t28154 - 11904: 0xB24C,\n\t28155 - 11904: 0xB24B,\n\t28156 - 11904: 0xD9E7,\n\t28157 - 11904: 0xD643,\n\t28158 - 11904: 0x8C41,\n\t28160 - 11904: 0xD5EB,\n\t28162 - 11904: 0x97D5,\n\t28163 - 11904: 0xD9FC,\n\t28164 - 11904: 0x944A,\n\t28165 - 11904: 0xB24D,\n\t28170 - 11904: 0x944D,\n\t28175 - 11904: 0x97CB,\n\t28181 - 11904: 0x8DDE,\n\t28184 - 11904: 0x8DDF,\n\t28185 - 11904: 0xB541,\n\t28186 - 11904: 0xB25A,\n\t28187 - 11904: 0xB4EE,\n\t28188 - 11904: 0xD9F6,\n\t28189 - 11904: 0xFDB8,\n\t28191 - 11904: 0xD9EA,\n\t28192 - 11904: 0xB4EB,\n\t28193 - 11904: 0xB4E7,\n\t28194 - 11904: 0xDA49,\n\t28195 - 11904: 0xB4ED,\n\t28196 - 11904: 0xB4F1,\n\t28197 - 11904: 0xB4EC,\n\t28198 - 11904: 0xB4F5,\n\t28199 - 11904: 0xDA4D,\n\t28200 - 11904: 0xDA44,\n\t28201 - 11904: 0x8DE0,\n\t28202 - 11904: 0xFEF9,\n\t28203 - 11904: 0xD9F1,\n\t28204 - 11904: 0xB4FA,\n\t28205 - 11904: 0xB4F4,\n\t28206 - 11904: 0xD9FD,\n\t28207 - 11904: 0xFDBB,\n\t28208 - 11904: 0xDA4A,\n\t28209 - 11904: 0xDA43,\n\t28210 - 11904: 0xB4E8,\n\t28211 - 11904: 0xD9F7,\n\t28212 - 11904: 0xB4F7,\n\t28213 - 11904: 0xDA55,\n\t28214 - 11904: 0xDA56,\n\t28216 - 11904: 0xB4E5,\n\t28217 - 11904: 0xDA48,\n\t28218 - 11904: 0xB4F9,\n\t28219 - 11904: 0xD9FB,\n\t28220 - 11904: 0xD9ED,\n\t28221 - 11904: 0xD9EE,\n\t28222 - 11904: 0xB4FD,\n\t28223 - 11904: 0xD9F2,\n\t28224 - 11904: 0xD9F9,\n\t28225 - 11904: 0xD9F3,\n\t28227 - 11904: 0xB4FB,\n\t28228 - 11904: 0xB544,\n\t28229 - 11904: 0xD9EF,\n\t28230 - 11904: 0xD9E8,\n\t28231 - 11904: 0xD9E9,\n\t28233 - 11904: 0xD9EB,\n\t28234 - 11904: 0xB4EA,\n\t28235 - 11904: 0xD9F8,\n\t28237 - 11904: 0xB4F8,\n\t28238 - 11904: 0xB542,\n\t28239 - 11904: 0xFDC0,\n\t28240 - 11904: 0xFCF9,\n\t28241 - 11904: 0xD9FA,\n\t28242 - 11904: 0xDA53,\n\t28243 - 11904: 0xDA4B,\n\t28244 - 11904: 0xB4E6,\n\t28245 - 11904: 0xDA51,\n\t28246 - 11904: 0xB4F2,\n\t28247 - 11904: 0x8CDD,\n\t28248 - 11904: 0xB4F0,\n\t28249 - 11904: 0xFB7E,\n\t28250 - 11904: 0xDA57,\n\t28251 - 11904: 0xB4EF,\n\t28252 - 11904: 0xDA41,\n\t28253 - 11904: 0xD9F4,\n\t28254 - 11904: 0xD9FE,\n\t28255 - 11904: 0xB547,\n\t28256 - 11904: 0xDA45,\n\t28257 - 11904: 0xDA42,\n\t28258 - 11904: 0xD9F0,\n\t28259 - 11904: 0xB543,\n\t28260 - 11904: 0xDA4F,\n\t28261 - 11904: 0xDA4C,\n\t28262 - 11904: 0xDA54,\n\t28263 - 11904: 0xB4E9,\n\t28264 - 11904: 0xDA40,\n\t28265 - 11904: 0xB546,\n\t28267 - 11904: 0xDA47,\n\t28270 - 11904: 0xB4F3,\n\t28271 - 11904: 0xB4F6,\n\t28273 - 11904: 0xDA46,\n\t28274 - 11904: 0xB545,\n\t28275 - 11904: 0xD9F5,\n\t28276 - 11904: 0xD5E4,\n\t28278 - 11904: 0x92B3,\n\t28279 - 11904: 0xDA50,\n\t28280 - 11904: 0xDA4E,\n\t28281 - 11904: 0xDA52,\n\t28284 - 11904: 0xFDAF,\n\t28294 - 11904: 0x8DE1,\n\t28296 - 11904: 0xD9EC,\n\t28297 - 11904: 0xB540,\n\t28299 - 11904: 0x95D3,\n\t28301 - 11904: 0xDE61,\n\t28302 - 11904: 0xDE60,\n\t28303 - 11904: 0xDE46,\n\t28304 - 11904: 0xB7BD,\n\t28306 - 11904: 0xDE5F,\n\t28307 - 11904: 0xDE49,\n\t28308 - 11904: 0xDE4A,\n\t28310 - 11904: 0xB7C7,\n\t28311 - 11904: 0xDE68,\n\t28312 - 11904: 0xB7C2,\n\t28313 - 11904: 0xDE5E,\n\t28314 - 11904: 0x89C1,\n\t28315 - 11904: 0xDE43,\n\t28316 - 11904: 0xB7C8,\n\t28317 - 11904: 0xB7BE,\n\t28318 - 11904: 0xDE52,\n\t28319 - 11904: 0xDE48,\n\t28320 - 11904: 0xDE4B,\n\t28321 - 11904: 0xDE63,\n\t28322 - 11904: 0xB7B8,\n\t28323 - 11904: 0xDE6A,\n\t28324 - 11904: 0xDE62,\n\t28325 - 11904: 0xB7C1,\n\t28326 - 11904: 0xDE57,\n\t28327 - 11904: 0xB7CC,\n\t28330 - 11904: 0xB7CB,\n\t28331 - 11904: 0xB7C5,\n\t28334 - 11904: 0xDE69,\n\t28335 - 11904: 0xB7B9,\n\t28336 - 11904: 0xDE55,\n\t28337 - 11904: 0xDE4C,\n\t28338 - 11904: 0xDE59,\n\t28339 - 11904: 0xDE65,\n\t28340 - 11904: 0xB7CD,\n\t28341 - 11904: 0xFD68,\n\t28342 - 11904: 0xB7BB,\n\t28343 - 11904: 0xDE54,\n\t28344 - 11904: 0x9CB7,\n\t28345 - 11904: 0xDE4D,\n\t28346 - 11904: 0xB7C4,\n\t28347 - 11904: 0x8DE3,\n\t28348 - 11904: 0xB7C3,\n\t28349 - 11904: 0xDE50,\n\t28350 - 11904: 0xDE5A,\n\t28351 - 11904: 0xDE64,\n\t28352 - 11904: 0xDE47,\n\t28353 - 11904: 0xDE51,\n\t28354 - 11904: 0xB7BC,\n\t28355 - 11904: 0xDE5B,\n\t28356 - 11904: 0xB7C9,\n\t28357 - 11904: 0xB7C0,\n\t28358 - 11904: 0xDE4E,\n\t28359 - 11904: 0xB7BF,\n\t28360 - 11904: 0xDE45,\n\t28361 - 11904: 0xDE53,\n\t28362 - 11904: 0xDE67,\n\t28363 - 11904: 0xB4FE,\n\t28364 - 11904: 0xBAB0,\n\t28365 - 11904: 0xDE56,\n\t28366 - 11904: 0xE26C,\n\t28367 - 11904: 0xDE58,\n\t28368 - 11904: 0xDE66,\n\t28369 - 11904: 0xB7C6,\n\t28370 - 11904: 0xDE4F,\n\t28371 - 11904: 0xB7BA,\n\t28372 - 11904: 0xB7CA,\n\t28373 - 11904: 0xBCF0,\n\t28374 - 11904: 0xDE44,\n\t28376 - 11904: 0xDE5D,\n\t28377 - 11904: 0xFAC0,\n\t28378 - 11904: 0x8DE5,\n\t28379 - 11904: 0xFA64,\n\t28380 - 11904: 0xDE5C,\n\t28381 - 11904: 0x8947,\n\t28386 - 11904: 0x8DE4,\n\t28392 - 11904: 0x8DE7,\n\t28393 - 11904: 0x8DE8,\n\t28395 - 11904: 0xE2AA,\n\t28396 - 11904: 0xBAAD,\n\t28397 - 11904: 0xE27D,\n\t28398 - 11904: 0xE2A4,\n\t28399 - 11904: 0xBAA2,\n\t28401 - 11904: 0xE26E,\n\t28402 - 11904: 0xBAAF,\n\t28404 - 11904: 0xBA77,\n\t28405 - 11904: 0xE26D,\n\t28406 - 11904: 0xE2B0,\n\t28407 - 11904: 0xBAB1,\n\t28408 - 11904: 0xE271,\n\t28409 - 11904: 0xE2A3,\n\t28410 - 11904: 0xFDC7,\n\t28411 - 11904: 0xE273,\n\t28412 - 11904: 0xE2B3,\n\t28413 - 11904: 0xE2AF,\n\t28414 - 11904: 0xBA75,\n\t28415 - 11904: 0xBAA1,\n\t28416 - 11904: 0xE653,\n\t28417 - 11904: 0xBAAE,\n\t28418 - 11904: 0xBA7D,\n\t28419 - 11904: 0xE26F,\n\t28420 - 11904: 0xFDB0,\n\t28421 - 11904: 0xE2AE,\n\t28422 - 11904: 0xBAA3,\n\t28423 - 11904: 0xE2AB,\n\t28424 - 11904: 0xE2B8,\n\t28425 - 11904: 0xE275,\n\t28426 - 11904: 0xE27E,\n\t28427 - 11904: 0x9445,\n\t28428 - 11904: 0x97D6,\n\t28429 - 11904: 0xE2B6,\n\t28430 - 11904: 0xE2AC,\n\t28431 - 11904: 0xBA7C,\n\t28434 - 11904: 0xE27C,\n\t28435 - 11904: 0xBA76,\n\t28436 - 11904: 0xBA74,\n\t28437 - 11904: 0xBAA8,\n\t28438 - 11904: 0xFCC6,\n\t28439 - 11904: 0x9844,\n\t28440 - 11904: 0xE27A,\n\t28441 - 11904: 0xE277,\n\t28442 - 11904: 0xE278,\n\t28444 - 11904: 0xE2B2,\n\t28446 - 11904: 0xE2B7,\n\t28447 - 11904: 0xE2B5,\n\t28448 - 11904: 0xBA7A,\n\t28449 - 11904: 0xE2B9,\n\t28450 - 11904: 0xBA7E,\n\t28451 - 11904: 0xBAA7,\n\t28452 - 11904: 0x8DE9,\n\t28453 - 11904: 0xE270,\n\t28454 - 11904: 0xE5FA,\n\t28455 - 11904: 0xE279,\n\t28457 - 11904: 0xBA78,\n\t28458 - 11904: 0xBAAC,\n\t28459 - 11904: 0xBAA9,\n\t28460 - 11904: 0xBA7B,\n\t28461 - 11904: 0xE2A5,\n\t28462 - 11904: 0xE274,\n\t28463 - 11904: 0xBAAA,\n\t28464 - 11904: 0xE2A7,\n\t28465 - 11904: 0xBAA4,\n\t28466 - 11904: 0xBAA6,\n\t28467 - 11904: 0xBA73,\n\t28468 - 11904: 0x8DEA,\n\t28469 - 11904: 0xE2A9,\n\t28470 - 11904: 0xE2A1,\n\t28471 - 11904: 0xE272,\n\t28472 - 11904: 0xBAA5,\n\t28473 - 11904: 0xE2B1,\n\t28474 - 11904: 0xE2B4,\n\t28475 - 11904: 0xE27B,\n\t28476 - 11904: 0xE2A8,\n\t28477 - 11904: 0xFE50,\n\t28478 - 11904: 0xBA79,\n\t28479 - 11904: 0xBCDF,\n\t28480 - 11904: 0xE2A6,\n\t28481 - 11904: 0xE5F9,\n\t28483 - 11904: 0xE2AD,\n\t28484 - 11904: 0xFDCC,\n\t28494 - 11904: 0xE276,\n\t28495 - 11904: 0xE644,\n\t28496 - 11904: 0xE64E,\n\t28497 - 11904: 0xBCE2,\n\t28498 - 11904: 0xE64D,\n\t28499 - 11904: 0xE659,\n\t28500 - 11904: 0xBCE4,\n\t28501 - 11904: 0xE64B,\n\t28502 - 11904: 0x9DA7,\n\t28503 - 11904: 0xE64F,\n\t28504 - 11904: 0xBCEF,\n\t28506 - 11904: 0xE646,\n\t28507 - 11904: 0xBCE7,\n\t28508 - 11904: 0xFDCD,\n\t28509 - 11904: 0xE652,\n\t28510 - 11904: 0xE9F0,\n\t28511 - 11904: 0xBCF3,\n\t28512 - 11904: 0xBCF2,\n\t28513 - 11904: 0xE654,\n\t28514 - 11904: 0xE643,\n\t28515 - 11904: 0xE65E,\n\t28516 - 11904: 0xBCED,\n\t28518 - 11904: 0xBCE3,\n\t28519 - 11904: 0xE657,\n\t28521 - 11904: 0xE65B,\n\t28522 - 11904: 0xE660,\n\t28523 - 11904: 0xE655,\n\t28524 - 11904: 0xE649,\n\t28525 - 11904: 0xBCE6,\n\t28526 - 11904: 0xBCE9,\n\t28527 - 11904: 0xBCF1,\n\t28528 - 11904: 0xBCEC,\n\t28530 - 11904: 0xE64C,\n\t28531 - 11904: 0xE2A2,\n\t28532 - 11904: 0xFDCF,\n\t28534 - 11904: 0xE648,\n\t28535 - 11904: 0xE65F,\n\t28536 - 11904: 0xBCE8,\n\t28537 - 11904: 0x95D2,\n\t28538 - 11904: 0xBCEB,\n\t28539 - 11904: 0xE661,\n\t28540 - 11904: 0xBCE0,\n\t28541 - 11904: 0xE656,\n\t28542 - 11904: 0xE5FB,\n\t28543 - 11904: 0xE65C,\n\t28544 - 11904: 0xC0DF,\n\t28545 - 11904: 0x8DED,\n\t28546 - 11904: 0xE64A,\n\t28548 - 11904: 0xBCE1,\n\t28549 - 11904: 0xE645,\n\t28550 - 11904: 0xBCE5,\n\t28551 - 11904: 0xE5FC,\n\t28552 - 11904: 0xBAAB,\n\t28553 - 11904: 0xE641,\n\t28554 - 11904: 0xFCBA,\n\t28555 - 11904: 0xE65A,\n\t28556 - 11904: 0xE642,\n\t28557 - 11904: 0xE640,\n\t28558 - 11904: 0xBCEA,\n\t28560 - 11904: 0xE658,\n\t28562 - 11904: 0xE5FE,\n\t28563 - 11904: 0xE651,\n\t28564 - 11904: 0xE650,\n\t28565 - 11904: 0xE65D,\n\t28566 - 11904: 0xE647,\n\t28567 - 11904: 0xBCEE,\n\t28573 - 11904: 0xFDC5,\n\t28574 - 11904: 0xE9F3,\n\t28575 - 11904: 0xFDD2,\n\t28576 - 11904: 0xBF49,\n\t28577 - 11904: 0xBEFE,\n\t28578 - 11904: 0xEA40,\n\t28579 - 11904: 0xE9EB,\n\t28580 - 11904: 0xBF41,\n\t28581 - 11904: 0xE9F7,\n\t28582 - 11904: 0xBF48,\n\t28583 - 11904: 0xBF43,\n\t28584 - 11904: 0xE9F5,\n\t28585 - 11904: 0xED4F,\n\t28586 - 11904: 0xE9FB,\n\t28587 - 11904: 0xEA42,\n\t28588 - 11904: 0xE9FA,\n\t28589 - 11904: 0xE9E9,\n\t28590 - 11904: 0xE9F8,\n\t28591 - 11904: 0xEA44,\n\t28592 - 11904: 0xEA46,\n\t28593 - 11904: 0xBEFD,\n\t28594 - 11904: 0xEA45,\n\t28595 - 11904: 0xBF44,\n\t28596 - 11904: 0xBF4A,\n\t28597 - 11904: 0x9CDC,\n\t28598 - 11904: 0xBF47,\n\t28600 - 11904: 0xE9FE,\n\t28601 - 11904: 0xBF46,\n\t28602 - 11904: 0xE9F9,\n\t28603 - 11904: 0x95CF,\n\t28604 - 11904: 0xE9ED,\n\t28605 - 11904: 0xE9F2,\n\t28606 - 11904: 0x8DEE,\n\t28607 - 11904: 0xE9FD,\n\t28608 - 11904: 0xBF45,\n\t28609 - 11904: 0xBF42,\n\t28610 - 11904: 0xBEFC,\n\t28611 - 11904: 0xBF40,\n\t28612 - 11904: 0xE9F1,\n\t28614 - 11904: 0xE5FD,\n\t28615 - 11904: 0xE9EC,\n\t28616 - 11904: 0xE9EF,\n\t28617 - 11904: 0xEA41,\n\t28618 - 11904: 0xE9F4,\n\t28619 - 11904: 0xE9EA,\n\t28620 - 11904: 0xED4E,\n\t28621 - 11904: 0xEA43,\n\t28622 - 11904: 0xE9EE,\n\t28623 - 11904: 0xE9FC,\n\t28627 - 11904: 0xFDD4,\n\t28628 - 11904: 0xED51,\n\t28629 - 11904: 0xC0E3,\n\t28632 - 11904: 0xC0D7,\n\t28633 - 11904: 0x96EC,\n\t28634 - 11904: 0x96EB,\n\t28635 - 11904: 0xC0DB,\n\t28636 - 11904: 0xED53,\n\t28637 - 11904: 0xED59,\n\t28638 - 11904: 0xED57,\n\t28639 - 11904: 0xC0D9,\n\t28640 - 11904: 0xC0DA,\n\t28641 - 11904: 0xC0E1,\n\t28642 - 11904: 0xED5A,\n\t28643 - 11904: 0xED52,\n\t28644 - 11904: 0xC0DC,\n\t28646 - 11904: 0xED56,\n\t28647 - 11904: 0xED55,\n\t28648 - 11904: 0xED5B,\n\t28649 - 11904: 0xC0E2,\n\t28651 - 11904: 0xC0DD,\n\t28652 - 11904: 0xC0E0,\n\t28653 - 11904: 0xED54,\n\t28654 - 11904: 0xC0E4,\n\t28655 - 11904: 0xC0DE,\n\t28656 - 11904: 0xC0E5,\n\t28657 - 11904: 0xC0D8,\n\t28658 - 11904: 0xED58,\n\t28660 - 11904: 0xED50,\n\t28662 - 11904: 0x90B6,\n\t28663 - 11904: 0xEFF7,\n\t28664 - 11904: 0xFDC3,\n\t28666 - 11904: 0xC271,\n\t28667 - 11904: 0xEFF4,\n\t28668 - 11904: 0xEFF6,\n\t28670 - 11904: 0xC26F,\n\t28671 - 11904: 0xEFF2,\n\t28672 - 11904: 0xEFF3,\n\t28673 - 11904: 0xEFEE,\n\t28675 - 11904: 0x98AB,\n\t28676 - 11904: 0xE9F6,\n\t28677 - 11904: 0xEFEF,\n\t28678 - 11904: 0xC270,\n\t28679 - 11904: 0xEFEB,\n\t28681 - 11904: 0xC26D,\n\t28682 - 11904: 0xEFF8,\n\t28683 - 11904: 0xC26E,\n\t28684 - 11904: 0xEFEC,\n\t28685 - 11904: 0xEFED,\n\t28686 - 11904: 0xEFF1,\n\t28687 - 11904: 0xC273,\n\t28689 - 11904: 0xC272,\n\t28692 - 11904: 0xEFF0,\n\t28693 - 11904: 0xC378,\n\t28694 - 11904: 0xF25F,\n\t28695 - 11904: 0xF265,\n\t28696 - 11904: 0xC379,\n\t28697 - 11904: 0xF25C,\n\t28698 - 11904: 0xC376,\n\t28699 - 11904: 0xC373,\n\t28700 - 11904: 0xF267,\n\t28701 - 11904: 0xC377,\n\t28702 - 11904: 0x96EE,\n\t28703 - 11904: 0xC374,\n\t28704 - 11904: 0xF25E,\n\t28705 - 11904: 0xF261,\n\t28706 - 11904: 0xF262,\n\t28707 - 11904: 0xF263,\n\t28708 - 11904: 0xF266,\n\t28710 - 11904: 0xEFF5,\n\t28711 - 11904: 0xF25D,\n\t28712 - 11904: 0xC375,\n\t28713 - 11904: 0xF264,\n\t28714 - 11904: 0xF268,\n\t28715 - 11904: 0xF260,\n\t28716 - 11904: 0x8DF4,\n\t28719 - 11904: 0xF45D,\n\t28720 - 11904: 0xC46A,\n\t28721 - 11904: 0xF460,\n\t28722 - 11904: 0xC46B,\n\t28723 - 11904: 0xF468,\n\t28724 - 11904: 0xF45F,\n\t28725 - 11904: 0xF45C,\n\t28727 - 11904: 0xF45E,\n\t28728 - 11904: 0xF462,\n\t28729 - 11904: 0xF465,\n\t28730 - 11904: 0xF464,\n\t28731 - 11904: 0xF467,\n\t28732 - 11904: 0xF45B,\n\t28734 - 11904: 0xC469,\n\t28735 - 11904: 0xF463,\n\t28736 - 11904: 0xF466,\n\t28737 - 11904: 0xF469,\n\t28738 - 11904: 0xF461,\n\t28739 - 11904: 0xF5D3,\n\t28740 - 11904: 0xF5D4,\n\t28741 - 11904: 0xF5D8,\n\t28742 - 11904: 0xF5D9,\n\t28744 - 11904: 0xF5D6,\n\t28745 - 11904: 0xF5D7,\n\t28746 - 11904: 0xF5D5,\n\t28747 - 11904: 0xFDE0,\n\t28748 - 11904: 0xC4E9,\n\t28749 - 11904: 0x8C67,\n\t28752 - 11904: 0x8DF6,\n\t28753 - 11904: 0xC578,\n\t28754 - 11904: 0xF6EB,\n\t28756 - 11904: 0x8DF7,\n\t28757 - 11904: 0xF6E8,\n\t28758 - 11904: 0xF6E9,\n\t28759 - 11904: 0xF6EA,\n\t28760 - 11904: 0xC579,\n\t28762 - 11904: 0xF7E5,\n\t28763 - 11904: 0xF7E4,\n\t28764 - 11904: 0x8FFA,\n\t28765 - 11904: 0xF8AF,\n\t28766 - 11904: 0xC5F4,\n\t28767 - 11904: 0xF8AD,\n\t28768 - 11904: 0xF8B0,\n\t28769 - 11904: 0xF8AE,\n\t28770 - 11904: 0xF8F5,\n\t28771 - 11904: 0xC657,\n\t28772 - 11904: 0xC665,\n\t28773 - 11904: 0xF9A3,\n\t28774 - 11904: 0xF96C,\n\t28775 - 11904: 0x97D0,\n\t28776 - 11904: 0xF9A2,\n\t28777 - 11904: 0xF9D0,\n\t28778 - 11904: 0xF9D1,\n\t28779 - 11904: 0xA4F5,\n\t28780 - 11904: 0x8BD2,\n\t28782 - 11904: 0x87DE,\n\t28783 - 11904: 0x8DF8,\n\t28784 - 11904: 0xA6C7,\n\t28785 - 11904: 0xCA41,\n\t28788 - 11904: 0xCB5E,\n\t28789 - 11904: 0x90D9,\n\t28790 - 11904: 0xA85F,\n\t28791 - 11904: 0x8C47,\n\t28792 - 11904: 0xA862,\n\t28793 - 11904: 0xFAF0,\n\t28794 - 11904: 0xCB5F,\n\t28796 - 11904: 0xA860,\n\t28797 - 11904: 0xA861,\n\t28798 - 11904: 0xFDE1,\n\t28799 - 11904: 0x8DF9,\n\t28801 - 11904: 0xFDE3,\n\t28802 - 11904: 0xCD58,\n\t28803 - 11904: 0xCD5A,\n\t28804 - 11904: 0xCD55,\n\t28805 - 11904: 0xCD52,\n\t28806 - 11904: 0xCD54,\n\t28809 - 11904: 0x8DFA,\n\t28810 - 11904: 0xAAA4,\n\t28811 - 11904: 0xFB63,\n\t28814 - 11904: 0xAAA2,\n\t28815 - 11904: 0x90A6,\n\t28817 - 11904: 0xCD56,\n\t28818 - 11904: 0xAAA3,\n\t28819 - 11904: 0xCD53,\n\t28820 - 11904: 0xCD50,\n\t28821 - 11904: 0xAAA1,\n\t28822 - 11904: 0xCD57,\n\t28824 - 11904: 0xCD51,\n\t28825 - 11904: 0xAAA5,\n\t28826 - 11904: 0xCD59,\n\t28831 - 11904: 0xCFAF,\n\t28832 - 11904: 0x9970,\n\t28833 - 11904: 0xCFB3,\n\t28835 - 11904: 0x91EB,\n\t28836 - 11904: 0xACB7,\n\t28837 - 11904: 0x9770,\n\t28838 - 11904: 0x986F,\n\t28839 - 11904: 0xFDE2,\n\t28841 - 11904: 0xCFB6,\n\t28843 - 11904: 0xACAF,\n\t28844 - 11904: 0xACB2,\n\t28845 - 11904: 0xACB4,\n\t28846 - 11904: 0xACB6,\n\t28847 - 11904: 0xACB3,\n\t28848 - 11904: 0xCFB2,\n\t28849 - 11904: 0xCFB1,\n\t28851 - 11904: 0xACB1,\n\t28852 - 11904: 0xCFB4,\n\t28853 - 11904: 0xCFB5,\n\t28855 - 11904: 0xCFAE,\n\t28856 - 11904: 0xACB5,\n\t28857 - 11904: 0x98F2,\n\t28858 - 11904: 0xACB0,\n\t28859 - 11904: 0x9AFC,\n\t28860 - 11904: 0x896C,\n\t28861 - 11904: 0xFDFD,\n\t28862 - 11904: 0xCFB0,\n\t28864 - 11904: 0x995E,\n\t28868 - 11904: 0x95BD,\n\t28869 - 11904: 0xD277,\n\t28870 - 11904: 0xD278,\n\t28871 - 11904: 0xD279,\n\t28872 - 11904: 0xAF50,\n\t28874 - 11904: 0xAF4C,\n\t28875 - 11904: 0xD26E,\n\t28876 - 11904: 0xFDE4,\n\t28877 - 11904: 0xD276,\n\t28878 - 11904: 0xD27B,\n\t28879 - 11904: 0xAF51,\n\t28880 - 11904: 0x91E6,\n\t28881 - 11904: 0xD26C,\n\t28882 - 11904: 0xD272,\n\t28883 - 11904: 0xD26B,\n\t28884 - 11904: 0xD275,\n\t28885 - 11904: 0xFDE5,\n\t28886 - 11904: 0xFDE6,\n\t28887 - 11904: 0xD271,\n\t28888 - 11904: 0xAF4D,\n\t28889 - 11904: 0xAF4F,\n\t28890 - 11904: 0xD27A,\n\t28892 - 11904: 0xD26A,\n\t28893 - 11904: 0xD26D,\n\t28894 - 11904: 0xD273,\n\t28895 - 11904: 0xFDE7,\n\t28896 - 11904: 0xD274,\n\t28897 - 11904: 0xD27C,\n\t28898 - 11904: 0xD270,\n\t28900 - 11904: 0xAF4E,\n\t28911 - 11904: 0xB26D,\n\t28912 - 11904: 0xD64E,\n\t28913 - 11904: 0x9454,\n\t28915 - 11904: 0xD650,\n\t28916 - 11904: 0xD64C,\n\t28917 - 11904: 0x99B8,\n\t28918 - 11904: 0xD658,\n\t28919 - 11904: 0xD64A,\n\t28920 - 11904: 0xD657,\n\t28921 - 11904: 0xB269,\n\t28922 - 11904: 0xD648,\n\t28923 - 11904: 0xDA5B,\n\t28924 - 11904: 0xD652,\n\t28925 - 11904: 0xB26C,\n\t28926 - 11904: 0x97E9,\n\t28927 - 11904: 0xD653,\n\t28928 - 11904: 0xD656,\n\t28930 - 11904: 0xD65A,\n\t28932 - 11904: 0xD64F,\n\t28933 - 11904: 0x9346,\n\t28934 - 11904: 0xD654,\n\t28937 - 11904: 0xB26A,\n\t28938 - 11904: 0xB26B,\n\t28939 - 11904: 0xD659,\n\t28940 - 11904: 0xD64D,\n\t28941 - 11904: 0xD649,\n\t28942 - 11904: 0xD65B,\n\t28944 - 11904: 0xD651,\n\t28947 - 11904: 0xD655,\n\t28951 - 11904: 0xD64B,\n\t28953 - 11904: 0xB548,\n\t28954 - 11904: 0xB549,\n\t28955 - 11904: 0xDA65,\n\t28956 - 11904: 0xB54F,\n\t28957 - 11904: 0x9863,\n\t28958 - 11904: 0xDA59,\n\t28959 - 11904: 0xDA62,\n\t28960 - 11904: 0xDA58,\n\t28961 - 11904: 0xB54C,\n\t28962 - 11904: 0xDA60,\n\t28963 - 11904: 0xDA5E,\n\t28965 - 11904: 0xDA5F,\n\t28966 - 11904: 0xB54A,\n\t28968 - 11904: 0xDA63,\n\t28969 - 11904: 0x95BC,\n\t28971 - 11904: 0xFDED,\n\t28972 - 11904: 0xFDF7,\n\t28974 - 11904: 0xDA5C,\n\t28975 - 11904: 0xDA5A,\n\t28976 - 11904: 0xB54B,\n\t28977 - 11904: 0xDA5D,\n\t28978 - 11904: 0xDA61,\n\t28979 - 11904: 0x9870,\n\t28980 - 11904: 0x96F6,\n\t28981 - 11904: 0x8EA9,\n\t28982 - 11904: 0xB54D,\n\t28986 - 11904: 0xDA64,\n\t28987 - 11904: 0x9451,\n\t28990 - 11904: 0x8E43,\n\t28992 - 11904: 0x8B5A,\n\t28993 - 11904: 0xDE70,\n\t28994 - 11904: 0xDE77,\n\t28995 - 11904: 0xDE79,\n\t28996 - 11904: 0xDEA1,\n\t28997 - 11904: 0xFDEE,\n\t28998 - 11904: 0xB7DA,\n\t28999 - 11904: 0xDE6B,\n\t29001 - 11904: 0xB7D2,\n\t29002 - 11904: 0xFDF0,\n\t29003 - 11904: 0xDE7A,\n\t29004 - 11904: 0xB7D7,\n\t29005 - 11904: 0xDEA2,\n\t29006 - 11904: 0xB7CE,\n\t29007 - 11904: 0xFDF4,\n\t29008 - 11904: 0xDE7D,\n\t29009 - 11904: 0x9BF5,\n\t29010 - 11904: 0xDE6D,\n\t29011 - 11904: 0xDE7E,\n\t29012 - 11904: 0xDE6C,\n\t29014 - 11904: 0xB7DC,\n\t29015 - 11904: 0x8CEE,\n\t29016 - 11904: 0xDE78,\n\t29017 - 11904: 0xB7CF,\n\t29018 - 11904: 0xDEA3,\n\t29020 - 11904: 0xB7D4,\n\t29021 - 11904: 0xDE71,\n\t29022 - 11904: 0xB7D9,\n\t29023 - 11904: 0xDE7C,\n\t29024 - 11904: 0xDE6F,\n\t29025 - 11904: 0xDE76,\n\t29026 - 11904: 0xDE72,\n\t29027 - 11904: 0xDE6E,\n\t29028 - 11904: 0xB7D1,\n\t29029 - 11904: 0xB7D8,\n\t29030 - 11904: 0xB7D6,\n\t29031 - 11904: 0xB7D3,\n\t29032 - 11904: 0xB7DB,\n\t29033 - 11904: 0xB7D0,\n\t29034 - 11904: 0xDE75,\n\t29035 - 11904: 0x977E,\n\t29036 - 11904: 0xB7D5,\n\t29038 - 11904: 0xFDF1,\n\t29040 - 11904: 0xDE7B,\n\t29041 - 11904: 0x9BD5,\n\t29042 - 11904: 0xDE73,\n\t29043 - 11904: 0x9AC3,\n\t29045 - 11904: 0x97C8,\n\t29046 - 11904: 0xA0DB,\n\t29047 - 11904: 0x91D0,\n\t29048 - 11904: 0xDE74,\n\t29050 - 11904: 0x9FE4,\n\t29051 - 11904: 0xE2C1,\n\t29052 - 11904: 0x8FDD,\n\t29053 - 11904: 0xBAB4,\n\t29054 - 11904: 0x91E9,\n\t29056 - 11904: 0xE2BD,\n\t29057 - 11904: 0xE2C3,\n\t29058 - 11904: 0xE2BF,\n\t29060 - 11904: 0xBAB6,\n\t29061 - 11904: 0xE2BE,\n\t29062 - 11904: 0xE2C2,\n\t29063 - 11904: 0xE2BA,\n\t29064 - 11904: 0x98E0,\n\t29065 - 11904: 0xE2BC,\n\t29066 - 11904: 0xBAB5,\n\t29068 - 11904: 0x92CA,\n\t29070 - 11904: 0x9857,\n\t29071 - 11904: 0xE2C0,\n\t29072 - 11904: 0xE2BB,\n\t29073 - 11904: 0x8C51,\n\t29074 - 11904: 0xBAB7,\n\t29076 - 11904: 0xBAB2,\n\t29078 - 11904: 0xFDEB,\n\t29079 - 11904: 0xE2C4,\n\t29080 - 11904: 0x9B49,\n\t29081 - 11904: 0xBAB3,\n\t29082 - 11904: 0xE667,\n\t29083 - 11904: 0xE664,\n\t29084 - 11904: 0xE670,\n\t29085 - 11904: 0xE66A,\n\t29086 - 11904: 0xE66C,\n\t29087 - 11904: 0xBCF4,\n\t29088 - 11904: 0xE666,\n\t29089 - 11904: 0xE66E,\n\t29090 - 11904: 0x9D76,\n\t29091 - 11904: 0x9EAF,\n\t29092 - 11904: 0xE66D,\n\t29093 - 11904: 0xE66B,\n\t29095 - 11904: 0xE671,\n\t29096 - 11904: 0xBCF7,\n\t29097 - 11904: 0xE668,\n\t29098 - 11904: 0xE66F,\n\t29100 - 11904: 0xBCF5,\n\t29101 - 11904: 0x9CCC,\n\t29103 - 11904: 0xE663,\n\t29104 - 11904: 0xE665,\n\t29105 - 11904: 0xBCF6,\n\t29106 - 11904: 0xE662,\n\t29107 - 11904: 0xE672,\n\t29108 - 11904: 0xFDEA,\n\t29109 - 11904: 0xE669,\n\t29111 - 11904: 0x8DF1,\n\t29112 - 11904: 0xEA4A,\n\t29113 - 11904: 0xBF51,\n\t29114 - 11904: 0xFDFB,\n\t29116 - 11904: 0xEA55,\n\t29117 - 11904: 0xEA53,\n\t29118 - 11904: 0xBF4B,\n\t29119 - 11904: 0xEA49,\n\t29120 - 11904: 0xEA4C,\n\t29121 - 11904: 0xEA4D,\n\t29122 - 11904: 0xEA48,\n\t29123 - 11904: 0xBF55,\n\t29124 - 11904: 0xBF56,\n\t29125 - 11904: 0xEA47,\n\t29126 - 11904: 0xEA56,\n\t29127 - 11904: 0xEA51,\n\t29128 - 11904: 0xBF4F,\n\t29129 - 11904: 0xBF4C,\n\t29130 - 11904: 0xEA50,\n\t29131 - 11904: 0xEA4E,\n\t29134 - 11904: 0xBF52,\n\t29135 - 11904: 0xEA52,\n\t29136 - 11904: 0xBF4D,\n\t29137 - 11904: 0x8E53,\n\t29138 - 11904: 0xBF4E,\n\t29140 - 11904: 0xEA4F,\n\t29141 - 11904: 0xBF50,\n\t29142 - 11904: 0xEA4B,\n\t29144 - 11904: 0xEA54,\n\t29145 - 11904: 0xBF53,\n\t29146 - 11904: 0xEA57,\n\t29147 - 11904: 0xEA58,\n\t29148 - 11904: 0xBF54,\n\t29149 - 11904: 0xFACF,\n\t29151 - 11904: 0xC0E7,\n\t29152 - 11904: 0xC0EE,\n\t29153 - 11904: 0xED5C,\n\t29154 - 11904: 0xED62,\n\t29156 - 11904: 0xED60,\n\t29157 - 11904: 0xC0EA,\n\t29158 - 11904: 0xC0E9,\n\t29159 - 11904: 0xC0E6,\n\t29160 - 11904: 0xED5E,\n\t29163 - 11904: 0x96F9,\n\t29164 - 11904: 0xC0EC,\n\t29165 - 11904: 0xC0EB,\n\t29166 - 11904: 0xC0E8,\n\t29168 - 11904: 0xED61,\n\t29169 - 11904: 0xED5D,\n\t29170 - 11904: 0xED5F,\n\t29172 - 11904: 0xC0ED,\n\t29173 - 11904: 0x98BF,\n\t29174 - 11904: 0x9E49,\n\t29176 - 11904: 0xC277,\n\t29177 - 11904: 0xEFFB,\n\t29179 - 11904: 0xC274,\n\t29180 - 11904: 0xC275,\n\t29181 - 11904: 0xEFFD,\n\t29182 - 11904: 0xC276,\n\t29183 - 11904: 0xEFFA,\n\t29184 - 11904: 0x8CA7,\n\t29185 - 11904: 0xEFF9,\n\t29186 - 11904: 0xF26C,\n\t29187 - 11904: 0xEFFC,\n\t29189 - 11904: 0xF26D,\n\t29190 - 11904: 0xC37A,\n\t29191 - 11904: 0xF26B,\n\t29193 - 11904: 0x9BCA,\n\t29194 - 11904: 0xF26A,\n\t29196 - 11904: 0xF269,\n\t29197 - 11904: 0xC37B,\n\t29198 - 11904: 0xFDFE,\n\t29199 - 11904: 0x92DC,\n\t29200 - 11904: 0xC46C,\n\t29203 - 11904: 0xF46A,\n\t29204 - 11904: 0xF46B,\n\t29205 - 11904: 0xFE41,\n\t29206 - 11904: 0x91CC,\n\t29207 - 11904: 0x91E2,\n\t29209 - 11904: 0xF5DC,\n\t29210 - 11904: 0xF5DB,\n\t29211 - 11904: 0xC4EA,\n\t29213 - 11904: 0xF5DA,\n\t29214 - 11904: 0xF6EC,\n\t29215 - 11904: 0xF6ED,\n\t29218 - 11904: 0xF7E6,\n\t29219 - 11904: 0xF8B1,\n\t29220 - 11904: 0xFE44,\n\t29221 - 11904: 0x875F,\n\t29222 - 11904: 0xF8F6,\n\t29223 - 11904: 0xF9BC,\n\t29224 - 11904: 0xC679,\n\t29225 - 11904: 0xF9C6,\n\t29226 - 11904: 0xA4F6,\n\t29227 - 11904: 0x8BD3,\n\t29228 - 11904: 0xAAA6,\n\t29229 - 11904: 0xAAA7,\n\t29230 - 11904: 0xFE47,\n\t29232 - 11904: 0xACB8,\n\t29237 - 11904: 0xC0EF,\n\t29238 - 11904: 0xA4F7,\n\t29240 - 11904: 0xAAA8,\n\t29241 - 11904: 0xAF52,\n\t29242 - 11904: 0xB7DD,\n\t29243 - 11904: 0xA4F8,\n\t29245 - 11904: 0xB26E,\n\t29246 - 11904: 0xBAB8,\n\t29247 - 11904: 0xC962,\n\t29248 - 11904: 0xFE48,\n\t29249 - 11904: 0xCFB7,\n\t29250 - 11904: 0xD27D,\n\t29252 - 11904: 0xE2C5,\n\t29254 - 11904: 0xC0F0,\n\t29255 - 11904: 0xA4F9,\n\t29256 - 11904: 0xAAA9,\n\t29257 - 11904: 0xCFB8,\n\t29258 - 11904: 0xCFB9,\n\t29259 - 11904: 0xDA66,\n\t29260 - 11904: 0xB550,\n\t29263 - 11904: 0xDEA4,\n\t29264 - 11904: 0xA0E4,\n\t29266 - 11904: 0xB7DE,\n\t29267 - 11904: 0xE2C6,\n\t29269 - 11904: 0xFE4B,\n\t29270 - 11904: 0xBCF8,\n\t29271 - 11904: 0xFE4C,\n\t29272 - 11904: 0xC37C,\n\t29273 - 11904: 0xA4FA,\n\t29274 - 11904: 0xDA67,\n\t29275 - 11904: 0xA4FB,\n\t29276 - 11904: 0x8DBF,\n\t29277 - 11904: 0xA6C9,\n\t29278 - 11904: 0xCA42,\n\t29279 - 11904: 0xA6C8,\n\t29280 - 11904: 0xA865,\n\t29281 - 11904: 0xA864,\n\t29282 - 11904: 0xA863,\n\t29283 - 11904: 0xCB60,\n\t29286 - 11904: 0x9E78,\n\t29287 - 11904: 0xAAAA,\n\t29289 - 11904: 0xAAAB,\n\t29290 - 11904: 0xCD5B,\n\t29292 - 11904: 0xCFBA,\n\t29294 - 11904: 0xCFBD,\n\t29295 - 11904: 0xACBA,\n\t29296 - 11904: 0xCFBB,\n\t29298 - 11904: 0xACB9,\n\t29299 - 11904: 0xCFBC,\n\t29300 - 11904: 0xACBB,\n\t29302 - 11904: 0xD2A2,\n\t29303 - 11904: 0xD2A1,\n\t29304 - 11904: 0xD27E,\n\t29305 - 11904: 0xAF53,\n\t29307 - 11904: 0xD65D,\n\t29308 - 11904: 0xD65E,\n\t29309 - 11904: 0xB26F,\n\t29310 - 11904: 0xD65C,\n\t29311 - 11904: 0xD65F,\n\t29312 - 11904: 0xB552,\n\t29313 - 11904: 0xB270,\n\t29314 - 11904: 0xFE51,\n\t29316 - 11904: 0xB551,\n\t29317 - 11904: 0xDA6B,\n\t29318 - 11904: 0xDA6A,\n\t29319 - 11904: 0x9456,\n\t29320 - 11904: 0xDA68,\n\t29321 - 11904: 0xDA69,\n\t29323 - 11904: 0xDA6C,\n\t29324 - 11904: 0xDEA6,\n\t29325 - 11904: 0xDEA5,\n\t29326 - 11904: 0xDEA9,\n\t29327 - 11904: 0x9D61,\n\t29328 - 11904: 0xDEA8,\n\t29329 - 11904: 0xDEA7,\n\t29330 - 11904: 0xBAB9,\n\t29331 - 11904: 0xE2C9,\n\t29332 - 11904: 0x9457,\n\t29333 - 11904: 0xE2C8,\n\t29334 - 11904: 0xBABA,\n\t29335 - 11904: 0xE2C7,\n\t29336 - 11904: 0xE673,\n\t29338 - 11904: 0xE674,\n\t29339 - 11904: 0xBCF9,\n\t29341 - 11904: 0xEA59,\n\t29342 - 11904: 0xEA5A,\n\t29343 - 11904: 0x9966,\n\t29345 - 11904: 0xF272,\n\t29346 - 11904: 0xC37D,\n\t29347 - 11904: 0xF271,\n\t29348 - 11904: 0xF270,\n\t29349 - 11904: 0xF26E,\n\t29350 - 11904: 0xF26F,\n\t29351 - 11904: 0xC4EB,\n\t29352 - 11904: 0xF46C,\n\t29353 - 11904: 0xF6EE,\n\t29354 - 11904: 0xF8F7,\n\t29356 - 11904: 0xA4FC,\n\t29357 - 11904: 0x8BD5,\n\t29358 - 11904: 0xC9A5,\n\t29359 - 11904: 0xA5C7,\n\t29360 - 11904: 0xC9A6,\n\t29362 - 11904: 0xA069,\n\t29364 - 11904: 0xCA43,\n\t29365 - 11904: 0xCA44,\n\t29370 - 11904: 0xCB66,\n\t29373 - 11904: 0xCB62,\n\t29375 - 11904: 0xCB61,\n\t29376 - 11904: 0xAAAC,\n\t29377 - 11904: 0xCB65,\n\t29378 - 11904: 0xA867,\n\t29379 - 11904: 0xCB63,\n\t29380 - 11904: 0xA866,\n\t29381 - 11904: 0xCB67,\n\t29382 - 11904: 0xCB64,\n\t29385 - 11904: 0xCD5F,\n\t29386 - 11904: 0xCFBE,\n\t29387 - 11904: 0xCD5D,\n\t29388 - 11904: 0xCD64,\n\t29389 - 11904: 0x98B4,\n\t29390 - 11904: 0xAAAD,\n\t29392 - 11904: 0xAAB0,\n\t29393 - 11904: 0xCD65,\n\t29394 - 11904: 0xCD61,\n\t29396 - 11904: 0xCD62,\n\t29398 - 11904: 0xCD5C,\n\t29399 - 11904: 0xAAAF,\n\t29400 - 11904: 0xCD5E,\n\t29401 - 11904: 0xAAAE,\n\t29402 - 11904: 0xCD63,\n\t29404 - 11904: 0xCD60,\n\t29407 - 11904: 0xCFC2,\n\t29408 - 11904: 0xACBD,\n\t29409 - 11904: 0xACBE,\n\t29410 - 11904: 0xA049,\n\t29411 - 11904: 0xCFC5,\n\t29412 - 11904: 0xCFBF,\n\t29414 - 11904: 0xCFC4,\n\t29416 - 11904: 0xCFC0,\n\t29417 - 11904: 0xACBC,\n\t29418 - 11904: 0xCFC3,\n\t29419 - 11904: 0xCFC1,\n\t29427 - 11904: 0xD2A8,\n\t29428 - 11904: 0xD2A5,\n\t29430 - 11904: 0xD2A7,\n\t29431 - 11904: 0xAF58,\n\t29432 - 11904: 0xAF57,\n\t29433 - 11904: 0xAF55,\n\t29434 - 11904: 0xD2A4,\n\t29435 - 11904: 0xD2A9,\n\t29436 - 11904: 0xAF54,\n\t29437 - 11904: 0xAF56,\n\t29438 - 11904: 0xD2A6,\n\t29439 - 11904: 0xD667,\n\t29440 - 11904: 0xD2A3,\n\t29441 - 11904: 0xD2AA,\n\t29442 - 11904: 0xA04C,\n\t29444 - 11904: 0x9E65,\n\t29447 - 11904: 0xD662,\n\t29448 - 11904: 0xD666,\n\t29450 - 11904: 0xD665,\n\t29451 - 11904: 0xDA6E,\n\t29452 - 11904: 0xDA79,\n\t29455 - 11904: 0xD668,\n\t29456 - 11904: 0x98B5,\n\t29457 - 11904: 0xD663,\n\t29458 - 11904: 0xDA6D,\n\t29459 - 11904: 0xB274,\n\t29462 - 11904: 0xB273,\n\t29463 - 11904: 0xD661,\n\t29464 - 11904: 0xD664,\n\t29465 - 11904: 0xB275,\n\t29467 - 11904: 0xB272,\n\t29468 - 11904: 0xB271,\n\t29469 - 11904: 0xD660,\n\t29470 - 11904: 0xD669,\n\t29474 - 11904: 0xDA70,\n\t29475 - 11904: 0xDA77,\n\t29477 - 11904: 0xB554,\n\t29478 - 11904: 0xDA76,\n\t29479 - 11904: 0xDA73,\n\t29480 - 11904: 0xFE58,\n\t29481 - 11904: 0xB556,\n\t29482 - 11904: 0xFE52,\n\t29483 - 11904: 0xFE53,\n\t29484 - 11904: 0xA065,\n\t29485 - 11904: 0xDA75,\n\t29486 - 11904: 0xFE59,\n\t29488 - 11904: 0xDA6F,\n\t29489 - 11904: 0xDA71,\n\t29490 - 11904: 0xDA74,\n\t29491 - 11904: 0xDA72,\n\t29492 - 11904: 0xB555,\n\t29493 - 11904: 0xDA78,\n\t29494 - 11904: 0xB553,\n\t29495 - 11904: 0xB7DF,\n\t29496 - 11904: 0x98B7,\n\t29497 - 11904: 0x98B8,\n\t29498 - 11904: 0xDEAD,\n\t29499 - 11904: 0xDEAC,\n\t29500 - 11904: 0xDEAA,\n\t29502 - 11904: 0xB7E2,\n\t29503 - 11904: 0xB7E1,\n\t29504 - 11904: 0xDEAE,\n\t29505 - 11904: 0x98BA,\n\t29506 - 11904: 0xDEAB,\n\t29507 - 11904: 0xE2CA,\n\t29508 - 11904: 0xBABB,\n\t29509 - 11904: 0xB7E0,\n\t29512 - 11904: 0x98BB,\n\t29513 - 11904: 0xDEB0,\n\t29514 - 11904: 0xDEAF,\n\t29516 - 11904: 0xE2CD,\n\t29517 - 11904: 0xE2CB,\n\t29518 - 11904: 0xBCFA,\n\t29519 - 11904: 0x9FBC,\n\t29520 - 11904: 0xBABC,\n\t29521 - 11904: 0xE2CC,\n\t29522 - 11904: 0xE676,\n\t29527 - 11904: 0xBCFB,\n\t29528 - 11904: 0xE675,\n\t29529 - 11904: 0xE67E,\n\t29530 - 11904: 0xE67D,\n\t29531 - 11904: 0xE67B,\n\t29533 - 11904: 0xE67A,\n\t29534 - 11904: 0xE677,\n\t29535 - 11904: 0xE678,\n\t29536 - 11904: 0xE679,\n\t29537 - 11904: 0xE67C,\n\t29538 - 11904: 0xE6A1,\n\t29541 - 11904: 0xEA5F,\n\t29542 - 11904: 0xEA5C,\n\t29543 - 11904: 0xEA5D,\n\t29544 - 11904: 0xBF57,\n\t29545 - 11904: 0xEA5B,\n\t29546 - 11904: 0xEA61,\n\t29547 - 11904: 0xEA60,\n\t29548 - 11904: 0xEA5E,\n\t29550 - 11904: 0xED64,\n\t29551 - 11904: 0xED65,\n\t29552 - 11904: 0xC0F1,\n\t29553 - 11904: 0xA04A,\n\t29554 - 11904: 0xC0F2,\n\t29555 - 11904: 0xED63,\n\t29556 - 11904: 0x9EC7,\n\t29557 - 11904: 0xC279,\n\t29558 - 11904: 0xEFFE,\n\t29559 - 11904: 0xC278,\n\t29560 - 11904: 0xC37E,\n\t29562 - 11904: 0xC3A1,\n\t29563 - 11904: 0xC46D,\n\t29564 - 11904: 0xF46E,\n\t29565 - 11904: 0xF46D,\n\t29566 - 11904: 0xF5DD,\n\t29567 - 11904: 0xF6EF,\n\t29568 - 11904: 0xC57A,\n\t29569 - 11904: 0xF7E8,\n\t29570 - 11904: 0xF7E7,\n\t29571 - 11904: 0xF7E9,\n\t29572 - 11904: 0xA5C8,\n\t29573 - 11904: 0xCFC6,\n\t29574 - 11904: 0xAF59,\n\t29575 - 11904: 0xB276,\n\t29576 - 11904: 0xD66A,\n\t29577 - 11904: 0xA5C9,\n\t29578 - 11904: 0xC9A7,\n\t29579 - 11904: 0xA4FD,\n\t29580 - 11904: 0x8CA9,\n\t29582 - 11904: 0xCA45,\n\t29583 - 11904: 0x98AE,\n\t29586 - 11904: 0xCB6C,\n\t29587 - 11904: 0xCB6A,\n\t29588 - 11904: 0xCB6B,\n\t29589 - 11904: 0xCB68,\n\t29590 - 11904: 0xA868,\n\t29591 - 11904: 0xCB69,\n\t29592 - 11904: 0x92D6,\n\t29596 - 11904: 0xFAE1,\n\t29597 - 11904: 0xCD6D,\n\t29598 - 11904: 0x91D4,\n\t29599 - 11904: 0xAAB3,\n\t29600 - 11904: 0xCD6B,\n\t29601 - 11904: 0xCD67,\n\t29602 - 11904: 0xCD6A,\n\t29604 - 11904: 0xCD66,\n\t29605 - 11904: 0xAAB5,\n\t29606 - 11904: 0xCD69,\n\t29607 - 11904: 0xFADE,\n\t29608 - 11904: 0xAAB2,\n\t29609 - 11904: 0xAAB1,\n\t29610 - 11904: 0xFE5B,\n\t29611 - 11904: 0xAAB4,\n\t29612 - 11904: 0xCD6C,\n\t29613 - 11904: 0xCD68,\n\t29618 - 11904: 0xACC2,\n\t29619 - 11904: 0xACC5,\n\t29620 - 11904: 0xCFCE,\n\t29621 - 11904: 0xCFCD,\n\t29622 - 11904: 0xCFCC,\n\t29623 - 11904: 0xACBF,\n\t29624 - 11904: 0xCFD5,\n\t29625 - 11904: 0xCFCB,\n\t29626 - 11904: 0x8C53,\n\t29627 - 11904: 0xACC1,\n\t29628 - 11904: 0xD2AF,\n\t29630 - 11904: 0xCFD2,\n\t29631 - 11904: 0xCFD0,\n\t29632 - 11904: 0xACC4,\n\t29634 - 11904: 0xCFC8,\n\t29635 - 11904: 0xCFD3,\n\t29636 - 11904: 0x87BF,\n\t29637 - 11904: 0xCFCA,\n\t29638 - 11904: 0xCFD4,\n\t29639 - 11904: 0xCFD1,\n\t29640 - 11904: 0xCFC9,\n\t29641 - 11904: 0xFE5E,\n\t29642 - 11904: 0xACC0,\n\t29643 - 11904: 0xCFD6,\n\t29644 - 11904: 0xCFC7,\n\t29645 - 11904: 0xACC3,\n\t29646 - 11904: 0xFBD7,\n\t29647 - 11904: 0xFE5A,\n\t29648 - 11904: 0x94C5,\n\t29650 - 11904: 0xD2B4,\n\t29651 - 11904: 0xD2AB,\n\t29652 - 11904: 0xD2B6,\n\t29653 - 11904: 0xFACA,\n\t29654 - 11904: 0xD2AE,\n\t29655 - 11904: 0xD2B9,\n\t29656 - 11904: 0xD2BA,\n\t29657 - 11904: 0xD2AC,\n\t29658 - 11904: 0xD2B8,\n\t29659 - 11904: 0xD2B5,\n\t29660 - 11904: 0xD2B3,\n\t29661 - 11904: 0xD2B7,\n\t29662 - 11904: 0xAF5F,\n\t29664 - 11904: 0xAF5D,\n\t29665 - 11904: 0x98C1,\n\t29666 - 11904: 0x975C,\n\t29667 - 11904: 0xD2B1,\n\t29668 - 11904: 0xFE74,\n\t29669 - 11904: 0xD2AD,\n\t29670 - 11904: 0x9773,\n\t29671 - 11904: 0xD2B0,\n\t29672 - 11904: 0xD2BB,\n\t29673 - 11904: 0xD2B2,\n\t29674 - 11904: 0xAF5E,\n\t29675 - 11904: 0xCFCF,\n\t29677 - 11904: 0xAF5A,\n\t29678 - 11904: 0xAF5C,\n\t29679 - 11904: 0xFA46,\n\t29683 - 11904: 0x9764,\n\t29684 - 11904: 0xD678,\n\t29685 - 11904: 0xD66D,\n\t29686 - 11904: 0xD66B,\n\t29687 - 11904: 0xFE68,\n\t29688 - 11904: 0xD66C,\n\t29689 - 11904: 0x964E,\n\t29690 - 11904: 0xD673,\n\t29691 - 11904: 0x9765,\n\t29692 - 11904: 0xD674,\n\t29693 - 11904: 0xD670,\n\t29694 - 11904: 0xB27B,\n\t29695 - 11904: 0xD675,\n\t29696 - 11904: 0xD672,\n\t29697 - 11904: 0xD66F,\n\t29698 - 11904: 0x8C5A,\n\t29699 - 11904: 0xB279,\n\t29700 - 11904: 0xD66E,\n\t29701 - 11904: 0xB277,\n\t29702 - 11904: 0xB27A,\n\t29703 - 11904: 0xD671,\n\t29704 - 11904: 0xD679,\n\t29705 - 11904: 0xAF5B,\n\t29706 - 11904: 0xB278,\n\t29707 - 11904: 0xD677,\n\t29708 - 11904: 0xD676,\n\t29709 - 11904: 0xB27C,\n\t29713 - 11904: 0x89A1,\n\t29714 - 11904: 0x95FA,\n\t29716 - 11904: 0x92D4,\n\t29717 - 11904: 0xFE69,\n\t29718 - 11904: 0xDA7E,\n\t29719 - 11904: 0xFB45,\n\t29721 - 11904: 0x98C8,\n\t29722 - 11904: 0xDAA1,\n\t29723 - 11904: 0xB560,\n\t29724 - 11904: 0x90EF,\n\t29725 - 11904: 0xDAA7,\n\t29726 - 11904: 0x98C9,\n\t29727 - 11904: 0x98CA,\n\t29728 - 11904: 0xDAA9,\n\t29729 - 11904: 0xDAA2,\n\t29730 - 11904: 0xB55A,\n\t29731 - 11904: 0xDAA6,\n\t29732 - 11904: 0xDAA5,\n\t29733 - 11904: 0xB55B,\n\t29734 - 11904: 0xB561,\n\t29736 - 11904: 0xB562,\n\t29737 - 11904: 0xDAA8,\n\t29738 - 11904: 0xB558,\n\t29739 - 11904: 0xDA7D,\n\t29740 - 11904: 0xDA7B,\n\t29741 - 11904: 0xDAA3,\n\t29742 - 11904: 0xDA7A,\n\t29743 - 11904: 0xB55F,\n\t29744 - 11904: 0xDA7C,\n\t29745 - 11904: 0xDAA4,\n\t29746 - 11904: 0xDAAA,\n\t29747 - 11904: 0xB559,\n\t29748 - 11904: 0xB55E,\n\t29749 - 11904: 0xB55C,\n\t29750 - 11904: 0xB55D,\n\t29751 - 11904: 0x946D,\n\t29752 - 11904: 0x94B7,\n\t29753 - 11904: 0xFE6C,\n\t29754 - 11904: 0xB557,\n\t29756 - 11904: 0x946B,\n\t29759 - 11904: 0xB7E9,\n\t29760 - 11904: 0xDEB7,\n\t29761 - 11904: 0xB7E8,\n\t29762 - 11904: 0xDEBB,\n\t29763 - 11904: 0x92FC,\n\t29764 - 11904: 0xDEB1,\n\t29765 - 11904: 0x95EB,\n\t29766 - 11904: 0xDEBC,\n\t29767 - 11904: 0xFE73,\n\t29768 - 11904: 0x976E,\n\t29769 - 11904: 0xFE5F,\n\t29770 - 11904: 0xDEB2,\n\t29771 - 11904: 0xDEB3,\n\t29772 - 11904: 0x87B8,\n\t29773 - 11904: 0xDEBD,\n\t29774 - 11904: 0xDEBA,\n\t29775 - 11904: 0xDEB8,\n\t29776 - 11904: 0xDEB9,\n\t29777 - 11904: 0xDEB5,\n\t29778 - 11904: 0xDEB4,\n\t29779 - 11904: 0xFDBD,\n\t29780 - 11904: 0xDEBE,\n\t29781 - 11904: 0xB7E5,\n\t29782 - 11904: 0x92D5,\n\t29783 - 11904: 0xDEB6,\n\t29785 - 11904: 0xB7EA,\n\t29786 - 11904: 0xB7E4,\n\t29787 - 11904: 0xB7EB,\n\t29788 - 11904: 0xFE6F,\n\t29789 - 11904: 0xFEB9,\n\t29790 - 11904: 0xB7E7,\n\t29791 - 11904: 0xB7E6,\n\t29792 - 11904: 0xFE71,\n\t29793 - 11904: 0x8778,\n\t29794 - 11904: 0xE2CE,\n\t29795 - 11904: 0xBABE,\n\t29796 - 11904: 0xBABD,\n\t29797 - 11904: 0xFBBB,\n\t29799 - 11904: 0xE2D3,\n\t29800 - 11904: 0xA0D5,\n\t29801 - 11904: 0xBCFC,\n\t29802 - 11904: 0xBABF,\n\t29803 - 11904: 0x95FB,\n\t29804 - 11904: 0xFE77,\n\t29805 - 11904: 0xBAC1,\n\t29806 - 11904: 0xE2D4,\n\t29807 - 11904: 0xB7E3,\n\t29808 - 11904: 0xBAC0,\n\t29809 - 11904: 0xE2D0,\n\t29810 - 11904: 0xE2D2,\n\t29811 - 11904: 0xE2CF,\n\t29812 - 11904: 0xFE79,\n\t29813 - 11904: 0xE2D1,\n\t29814 - 11904: 0xFE75,\n\t29817 - 11904: 0xE6AB,\n\t29818 - 11904: 0x945D,\n\t29820 - 11904: 0xE6AA,\n\t29821 - 11904: 0xE6A7,\n\t29822 - 11904: 0xBD40,\n\t29823 - 11904: 0xEA62,\n\t29824 - 11904: 0xBD41,\n\t29825 - 11904: 0xE6A6,\n\t29826 - 11904: 0xFE7C,\n\t29827 - 11904: 0xBCFE,\n\t29829 - 11904: 0xE6A8,\n\t29830 - 11904: 0xE6A5,\n\t29831 - 11904: 0xE6A2,\n\t29832 - 11904: 0xE6A9,\n\t29833 - 11904: 0xE6A3,\n\t29834 - 11904: 0xE6A4,\n\t29835 - 11904: 0xBCFD,\n\t29836 - 11904: 0x9344,\n\t29837 - 11904: 0x8EA6,\n\t29840 - 11904: 0xED69,\n\t29842 - 11904: 0xEA66,\n\t29844 - 11904: 0xEA65,\n\t29845 - 11904: 0xEA67,\n\t29847 - 11904: 0xED66,\n\t29848 - 11904: 0xBF5A,\n\t29849 - 11904: 0x92D3,\n\t29850 - 11904: 0xEA63,\n\t29851 - 11904: 0x94B8,\n\t29852 - 11904: 0xBF58,\n\t29853 - 11904: 0x8779,\n\t29854 - 11904: 0xBF5C,\n\t29855 - 11904: 0xBF5B,\n\t29856 - 11904: 0xEA64,\n\t29857 - 11904: 0xEA68,\n\t29859 - 11904: 0xBF59,\n\t29860 - 11904: 0xFC71,\n\t29861 - 11904: 0xED6D,\n\t29862 - 11904: 0xC0F5,\n\t29863 - 11904: 0xC27A,\n\t29864 - 11904: 0xC0F6,\n\t29865 - 11904: 0xC0F3,\n\t29866 - 11904: 0xED6A,\n\t29867 - 11904: 0xED68,\n\t29869 - 11904: 0xED6B,\n\t29871 - 11904: 0xED6E,\n\t29872 - 11904: 0xC0F4,\n\t29873 - 11904: 0xED6C,\n\t29874 - 11904: 0xED67,\n\t29876 - 11904: 0x975E,\n\t29877 - 11904: 0xF042,\n\t29878 - 11904: 0xF045,\n\t29879 - 11904: 0xF275,\n\t29880 - 11904: 0xF040,\n\t29881 - 11904: 0x8CAD,\n\t29882 - 11904: 0xF46F,\n\t29883 - 11904: 0xF046,\n\t29885 - 11904: 0xC3A2,\n\t29886 - 11904: 0xF044,\n\t29887 - 11904: 0xC27B,\n\t29888 - 11904: 0xF041,\n\t29889 - 11904: 0xF043,\n\t29890 - 11904: 0xF047,\n\t29891 - 11904: 0xF276,\n\t29893 - 11904: 0xF274,\n\t29894 - 11904: 0x87C1,\n\t29896 - 11904: 0xFEA7,\n\t29898 - 11904: 0xC3A3,\n\t29899 - 11904: 0xF273,\n\t29900 - 11904: 0x946A,\n\t29903 - 11904: 0xC46E,\n\t29904 - 11904: 0x93E3,\n\t29907 - 11904: 0x98CF,\n\t29908 - 11904: 0xC4ED,\n\t29909 - 11904: 0xF6F1,\n\t29910 - 11904: 0xC4EC,\n\t29911 - 11904: 0xF6F3,\n\t29912 - 11904: 0xF6F0,\n\t29913 - 11904: 0xF6F2,\n\t29914 - 11904: 0xC5D0,\n\t29915 - 11904: 0xF8B2,\n\t29916 - 11904: 0xA5CA,\n\t29917 - 11904: 0xCD6E,\n\t29918 - 11904: 0xD2BC,\n\t29919 - 11904: 0xD2BD,\n\t29920 - 11904: 0xB27D,\n\t29921 - 11904: 0xDEBF,\n\t29922 - 11904: 0xBF5D,\n\t29923 - 11904: 0xC3A4,\n\t29924 - 11904: 0xC57B,\n\t29925 - 11904: 0xF8B3,\n\t29926 - 11904: 0xA5CB,\n\t29927 - 11904: 0xA0D9,\n\t29928 - 11904: 0xCD6F,\n\t29929 - 11904: 0xFEAA,\n\t29932 - 11904: 0xCFD7,\n\t29934 - 11904: 0xCFD8,\n\t29936 - 11904: 0xA0BF,\n\t29937 - 11904: 0xA04D,\n\t29938 - 11904: 0xA0B8,\n\t29940 - 11904: 0xD2BE,\n\t29941 - 11904: 0xD2BF,\n\t29942 - 11904: 0xB27E,\n\t29943 - 11904: 0xB2A1,\n\t29944 - 11904: 0xA0CE,\n\t29947 - 11904: 0xDAAB,\n\t29949 - 11904: 0xDEC2,\n\t29950 - 11904: 0xDEC1,\n\t29951 - 11904: 0xDEC0,\n\t29952 - 11904: 0xE2D5,\n\t29954 - 11904: 0xE2D6,\n\t29955 - 11904: 0xE2D7,\n\t29956 - 11904: 0xBAC2,\n\t29957 - 11904: 0xA0B7,\n\t29959 - 11904: 0xE6AD,\n\t29960 - 11904: 0xE6AC,\n\t29963 - 11904: 0xEA69,\n\t29964 - 11904: 0xBF5E,\n\t29965 - 11904: 0xBF5F,\n\t29966 - 11904: 0xFEA9,\n\t29967 - 11904: 0xED72,\n\t29968 - 11904: 0xED6F,\n\t29969 - 11904: 0xED70,\n\t29970 - 11904: 0xED71,\n\t29971 - 11904: 0xF049,\n\t29972 - 11904: 0xF048,\n\t29973 - 11904: 0xC27C,\n\t29974 - 11904: 0xF277,\n\t29975 - 11904: 0xF5DE,\n\t29976 - 11904: 0xA5CC,\n\t29977 - 11904: 0x89C3,\n\t29978 - 11904: 0xACC6,\n\t29980 - 11904: 0xB2A2,\n\t29981 - 11904: 0xDEC3,\n\t29982 - 11904: 0xFEAB,\n\t29983 - 11904: 0xA5CD,\n\t29985 - 11904: 0xD2C0,\n\t29986 - 11904: 0xB2A3,\n\t29989 - 11904: 0xB563,\n\t29990 - 11904: 0xB564,\n\t29992 - 11904: 0xA5CE,\n\t29993 - 11904: 0xA5CF,\n\t29994 - 11904: 0xCA46,\n\t29995 - 11904: 0xA86A,\n\t29996 - 11904: 0xA869,\n\t29997 - 11904: 0xACC7,\n\t29998 - 11904: 0xCFD9,\n\t29999 - 11904: 0xDAAC,\n\t30000 - 11904: 0xA5D0,\n\t30001 - 11904: 0xA5D1,\n\t30002 - 11904: 0xA5D2,\n\t30003 - 11904: 0xA5D3,\n\t30004 - 11904: 0x9DF4,\n\t30005 - 11904: 0x896D,\n\t30007 - 11904: 0xA86B,\n\t30008 - 11904: 0xA86C,\n\t30009 - 11904: 0xCB6E,\n\t30010 - 11904: 0xCB6D,\n\t30011 - 11904: 0x9C7B,\n\t30013 - 11904: 0xAAB6,\n\t30014 - 11904: 0xCD72,\n\t30015 - 11904: 0xCD70,\n\t30016 - 11904: 0xCD71,\n\t30018 - 11904: 0x98D2,\n\t30022 - 11904: 0x9FA9,\n\t30023 - 11904: 0xCFDA,\n\t30024 - 11904: 0xCFDB,\n\t30026 - 11904: 0xFEB2,\n\t30027 - 11904: 0xACCB,\n\t30028 - 11904: 0xACC9,\n\t30029 - 11904: 0xFEB1,\n\t30030 - 11904: 0xACCA,\n\t30031 - 11904: 0xACC8,\n\t30033 - 11904: 0x97D9,\n\t30035 - 11904: 0xA0C4,\n\t30036 - 11904: 0xAF60,\n\t30037 - 11904: 0x9476,\n\t30041 - 11904: 0xAF64,\n\t30042 - 11904: 0xAF63,\n\t30043 - 11904: 0xD2C1,\n\t30044 - 11904: 0xAF62,\n\t30045 - 11904: 0xAF61,\n\t30047 - 11904: 0xD2C2,\n\t30048 - 11904: 0x9978,\n\t30050 - 11904: 0xB2A6,\n\t30051 - 11904: 0xD67B,\n\t30052 - 11904: 0xD67A,\n\t30053 - 11904: 0xB2A4,\n\t30054 - 11904: 0xB2A5,\n\t30055 - 11904: 0xFEB3,\n\t30058 - 11904: 0xB566,\n\t30059 - 11904: 0xB565,\n\t30060 - 11904: 0xDAAE,\n\t30061 - 11904: 0x98D3,\n\t30062 - 11904: 0xFEB4,\n\t30063 - 11904: 0xDAAD,\n\t30064 - 11904: 0xB2A7,\n\t30066 - 11904: 0x98D4,\n\t30070 - 11904: 0xB7ED,\n\t30071 - 11904: 0xDEC5,\n\t30072 - 11904: 0xB7EE,\n\t30073 - 11904: 0xDEC4,\n\t30074 - 11904: 0x9FB9,\n\t30077 - 11904: 0xE2D8,\n\t30078 - 11904: 0xE6AE,\n\t30079 - 11904: 0xBD42,\n\t30080 - 11904: 0xEA6A,\n\t30083 - 11904: 0x9471,\n\t30084 - 11904: 0xED73,\n\t30086 - 11904: 0xC3A6,\n\t30087 - 11904: 0xC3A5,\n\t30090 - 11904: 0xC57C,\n\t30091 - 11904: 0xA5D4,\n\t30092 - 11904: 0xCD73,\n\t30093 - 11904: 0x98D5,\n\t30094 - 11904: 0xFEB8,\n\t30095 - 11904: 0xB2A8,\n\t30096 - 11904: 0xE2D9,\n\t30097 - 11904: 0xBAC3,\n\t30098 - 11904: 0xC6D4,\n\t30100 - 11904: 0xCB6F,\n\t30101 - 11904: 0xCB70,\n\t30104 - 11904: 0xCD74,\n\t30105 - 11904: 0xAAB8,\n\t30106 - 11904: 0xAAB9,\n\t30109 - 11904: 0xAAB7,\n\t30110 - 11904: 0xFEBA,\n\t30114 - 11904: 0xACCF,\n\t30115 - 11904: 0xACD0,\n\t30116 - 11904: 0xACCD,\n\t30117 - 11904: 0xACCE,\n\t30119 - 11904: 0xCFDC,\n\t30122 - 11904: 0xCFDD,\n\t30123 - 11904: 0xACCC,\n\t30128 - 11904: 0xD2C3,\n\t30129 - 11904: 0x9E5C,\n\t30130 - 11904: 0xAF68,\n\t30131 - 11904: 0xAF69,\n\t30132 - 11904: 0xFEBB,\n\t30133 - 11904: 0xB2AB,\n\t30134 - 11904: 0xD2C9,\n\t30136 - 11904: 0xAF6E,\n\t30137 - 11904: 0xAF6C,\n\t30138 - 11904: 0xD2CA,\n\t30139 - 11904: 0xD2C5,\n\t30140 - 11904: 0xAF6B,\n\t30141 - 11904: 0xAF6A,\n\t30142 - 11904: 0xAF65,\n\t30143 - 11904: 0xD2C8,\n\t30144 - 11904: 0xD2C7,\n\t30145 - 11904: 0xD2C4,\n\t30146 - 11904: 0xAF6D,\n\t30147 - 11904: 0xA044,\n\t30148 - 11904: 0xD2C6,\n\t30149 - 11904: 0xAF66,\n\t30151 - 11904: 0xAF67,\n\t30152 - 11904: 0x98D7,\n\t30154 - 11904: 0xB2AC,\n\t30155 - 11904: 0xD6A1,\n\t30156 - 11904: 0xD6A2,\n\t30157 - 11904: 0xB2AD,\n\t30158 - 11904: 0xD67C,\n\t30159 - 11904: 0xD67E,\n\t30160 - 11904: 0xD6A4,\n\t30161 - 11904: 0xD6A3,\n\t30162 - 11904: 0xD67D,\n\t30164 - 11904: 0xB2A9,\n\t30165 - 11904: 0xB2AA,\n\t30167 - 11904: 0xDAB6,\n\t30168 - 11904: 0xB56B,\n\t30169 - 11904: 0xB56A,\n\t30170 - 11904: 0xDAB0,\n\t30171 - 11904: 0xB568,\n\t30172 - 11904: 0x98D8,\n\t30173 - 11904: 0xDAB3,\n\t30174 - 11904: 0xB56C,\n\t30175 - 11904: 0xDAB4,\n\t30176 - 11904: 0xB56D,\n\t30177 - 11904: 0xDAB1,\n\t30178 - 11904: 0xB567,\n\t30179 - 11904: 0xB569,\n\t30180 - 11904: 0xDAB5,\n\t30182 - 11904: 0xDAB2,\n\t30183 - 11904: 0xDAAF,\n\t30189 - 11904: 0xDED2,\n\t30191 - 11904: 0xDEC7,\n\t30192 - 11904: 0xB7F0,\n\t30193 - 11904: 0xB7F3,\n\t30194 - 11904: 0xB7F2,\n\t30195 - 11904: 0xB7F7,\n\t30196 - 11904: 0xB7F6,\n\t30197 - 11904: 0xDED3,\n\t30198 - 11904: 0xDED1,\n\t30199 - 11904: 0xDECA,\n\t30200 - 11904: 0xDECE,\n\t30201 - 11904: 0xDECD,\n\t30202 - 11904: 0xB7F4,\n\t30203 - 11904: 0xDED0,\n\t30204 - 11904: 0xDECC,\n\t30205 - 11904: 0xDED4,\n\t30206 - 11904: 0xDECB,\n\t30207 - 11904: 0xB7F5,\n\t30208 - 11904: 0xB7EF,\n\t30209 - 11904: 0xB7F1,\n\t30210 - 11904: 0xFEBC,\n\t30211 - 11904: 0xDEC9,\n\t30215 - 11904: 0x9FFE,\n\t30216 - 11904: 0xE2DB,\n\t30217 - 11904: 0xBAC7,\n\t30218 - 11904: 0xE2DF,\n\t30219 - 11904: 0xBAC6,\n\t30220 - 11904: 0xE2DC,\n\t30221 - 11904: 0xBAC5,\n\t30223 - 11904: 0xDEC8,\n\t30224 - 11904: 0xDECF,\n\t30225 - 11904: 0xE2DE,\n\t30227 - 11904: 0xBAC8,\n\t30228 - 11904: 0xE2E0,\n\t30229 - 11904: 0xE2DD,\n\t30230 - 11904: 0xE2DA,\n\t30233 - 11904: 0xE6B1,\n\t30234 - 11904: 0xE6B5,\n\t30235 - 11904: 0xE6B7,\n\t30236 - 11904: 0xE6B3,\n\t30237 - 11904: 0xE6B2,\n\t30238 - 11904: 0xE6B0,\n\t30239 - 11904: 0xBD45,\n\t30240 - 11904: 0xBD43,\n\t30241 - 11904: 0xBD48,\n\t30242 - 11904: 0xBD49,\n\t30243 - 11904: 0xE6B4,\n\t30244 - 11904: 0xBD46,\n\t30245 - 11904: 0xE6AF,\n\t30246 - 11904: 0xBD47,\n\t30247 - 11904: 0xBAC4,\n\t30248 - 11904: 0xE6B6,\n\t30249 - 11904: 0xBD44,\n\t30252 - 11904: 0xFEBD,\n\t30253 - 11904: 0xEA6C,\n\t30255 - 11904: 0xEA6B,\n\t30256 - 11904: 0xEA73,\n\t30257 - 11904: 0xEA6D,\n\t30258 - 11904: 0xEA72,\n\t30259 - 11904: 0xEA6F,\n\t30260 - 11904: 0xBF60,\n\t30261 - 11904: 0xEA71,\n\t30264 - 11904: 0xBF61,\n\t30266 - 11904: 0xBF62,\n\t30267 - 11904: 0x9DDD,\n\t30268 - 11904: 0xEA70,\n\t30269 - 11904: 0xEA6E,\n\t30272 - 11904: 0x9EE1,\n\t30274 - 11904: 0xC0F8,\n\t30275 - 11904: 0xED74,\n\t30278 - 11904: 0xC0F7,\n\t30279 - 11904: 0xED77,\n\t30280 - 11904: 0xED75,\n\t30281 - 11904: 0xED76,\n\t30284 - 11904: 0xC0F9,\n\t30285 - 11904: 0x98DA,\n\t30286 - 11904: 0x9DDF,\n\t30287 - 11904: 0xFEBF,\n\t30288 - 11904: 0xF04D,\n\t30289 - 11904: 0xFEBE,\n\t30290 - 11904: 0xC2A1,\n\t30291 - 11904: 0xF04E,\n\t30292 - 11904: 0x9EEB,\n\t30294 - 11904: 0xC27D,\n\t30295 - 11904: 0xF04F,\n\t30296 - 11904: 0xC27E,\n\t30297 - 11904: 0xF04C,\n\t30298 - 11904: 0xF050,\n\t30300 - 11904: 0xF04A,\n\t30303 - 11904: 0xC3A7,\n\t30304 - 11904: 0xF278,\n\t30305 - 11904: 0xC3A8,\n\t30306 - 11904: 0xC46F,\n\t30308 - 11904: 0xF04B,\n\t30309 - 11904: 0xC470,\n\t30310 - 11904: 0x9E59,\n\t30311 - 11904: 0xA05C,\n\t30313 - 11904: 0xC4EE,\n\t30314 - 11904: 0xF5DF,\n\t30316 - 11904: 0xC57E,\n\t30317 - 11904: 0xF6F4,\n\t30318 - 11904: 0xC57D,\n\t30319 - 11904: 0xFEC0,\n\t30320 - 11904: 0xF7EA,\n\t30321 - 11904: 0xC5F5,\n\t30322 - 11904: 0xC5F6,\n\t30323 - 11904: 0x9477,\n\t30324 - 11904: 0x98DC,\n\t30325 - 11904: 0xF9CC,\n\t30326 - 11904: 0xFEC1,\n\t30328 - 11904: 0xACD1,\n\t30329 - 11904: 0xCFDE,\n\t30330 - 11904: 0x98DE,\n\t30331 - 11904: 0xB56E,\n\t30332 - 11904: 0xB56F,\n\t30333 - 11904: 0xA5D5,\n\t30334 - 11904: 0xA6CA,\n\t30335 - 11904: 0xCA47,\n\t30337 - 11904: 0xCB71,\n\t30338 - 11904: 0xA86D,\n\t30340 - 11904: 0xAABA,\n\t30342 - 11904: 0xACD2,\n\t30343 - 11904: 0xACD3,\n\t30344 - 11904: 0xACD4,\n\t30345 - 11904: 0xD6A6,\n\t30346 - 11904: 0xD2CB,\n\t30347 - 11904: 0xAF6F,\n\t30350 - 11904: 0xB2AE,\n\t30351 - 11904: 0xD6A5,\n\t30352 - 11904: 0xFEC3,\n\t30354 - 11904: 0xDAB8,\n\t30355 - 11904: 0xB571,\n\t30357 - 11904: 0xDAB7,\n\t30358 - 11904: 0xB570,\n\t30361 - 11904: 0xDED5,\n\t30362 - 11904: 0xBD4A,\n\t30363 - 11904: 0xE6BB,\n\t30364 - 11904: 0xE6B8,\n\t30365 - 11904: 0xE6B9,\n\t30366 - 11904: 0xE6BA,\n\t30369 - 11904: 0xFEC8,\n\t30372 - 11904: 0xED78,\n\t30373 - 11904: 0xFEC9,\n\t30374 - 11904: 0xF051,\n\t30378 - 11904: 0xF471,\n\t30379 - 11904: 0xF470,\n\t30381 - 11904: 0xF6F5,\n\t30382 - 11904: 0xA5D6,\n\t30383 - 11904: 0xCD75,\n\t30384 - 11904: 0xAF70,\n\t30388 - 11904: 0xB572,\n\t30389 - 11904: 0xDED6,\n\t30391 - 11904: 0xFECA,\n\t30392 - 11904: 0xE2E1,\n\t30394 - 11904: 0xBD4B,\n\t30395 - 11904: 0xEA74,\n\t30397 - 11904: 0xF052,\n\t30398 - 11904: 0xF472,\n\t30399 - 11904: 0xA5D7,\n\t30402 - 11904: 0xAABB,\n\t30403 - 11904: 0xACD7,\n\t30404 - 11904: 0xCFDF,\n\t30405 - 11904: 0xACD8,\n\t30406 - 11904: 0xACD6,\n\t30408 - 11904: 0xACD5,\n\t30409 - 11904: 0xD2CC,\n\t30410 - 11904: 0xAF71,\n\t30412 - 11904: 0xFECB,\n\t30413 - 11904: 0xAF72,\n\t30414 - 11904: 0xAF73,\n\t30418 - 11904: 0xB2B0,\n\t30419 - 11904: 0xD6A7,\n\t30420 - 11904: 0xB2AF,\n\t30422 - 11904: 0x9FC2,\n\t30425 - 11904: 0x8C6B,\n\t30426 - 11904: 0xDAB9,\n\t30427 - 11904: 0xB2B1,\n\t30428 - 11904: 0xB573,\n\t30429 - 11904: 0xDED7,\n\t30430 - 11904: 0xB7F8,\n\t30431 - 11904: 0xB7F9,\n\t30433 - 11904: 0xBAC9,\n\t30435 - 11904: 0xBACA,\n\t30436 - 11904: 0xBD4C,\n\t30437 - 11904: 0xBF64,\n\t30438 - 11904: 0xEA75,\n\t30439 - 11904: 0xBF63,\n\t30441 - 11904: 0xED79,\n\t30442 - 11904: 0xC0FA,\n\t30444 - 11904: 0xF053,\n\t30445 - 11904: 0xF473,\n\t30446 - 11904: 0xA5D8,\n\t30447 - 11904: 0xA86E,\n\t30448 - 11904: 0xCD78,\n\t30449 - 11904: 0xCD77,\n\t30450 - 11904: 0xAABC,\n\t30451 - 11904: 0xCD76,\n\t30452 - 11904: 0xAABD,\n\t30453 - 11904: 0xCD79,\n\t30455 - 11904: 0xCFE5,\n\t30456 - 11904: 0xACDB,\n\t30457 - 11904: 0xACDA,\n\t30458 - 11904: 0xCFE7,\n\t30459 - 11904: 0xCFE6,\n\t30460 - 11904: 0xACDF,\n\t30462 - 11904: 0xACDE,\n\t30465 - 11904: 0xACD9,\n\t30467 - 11904: 0xCFE1,\n\t30468 - 11904: 0xCFE2,\n\t30469 - 11904: 0xCFE3,\n\t30471 - 11904: 0xACE0,\n\t30472 - 11904: 0xCFE0,\n\t30473 - 11904: 0xACDC,\n\t30474 - 11904: 0xCFE4,\n\t30475 - 11904: 0xACDD,\n\t30476 - 11904: 0x98C4,\n\t30478 - 11904: 0x94B0,\n\t30479 - 11904: 0x94B1,\n\t30480 - 11904: 0xD2CF,\n\t30481 - 11904: 0xD2D3,\n\t30482 - 11904: 0xD2D1,\n\t30483 - 11904: 0xD2D0,\n\t30485 - 11904: 0xD2D4,\n\t30489 - 11904: 0xD2D5,\n\t30490 - 11904: 0xD2D6,\n\t30491 - 11904: 0xD2CE,\n\t30493 - 11904: 0xD2CD,\n\t30494 - 11904: 0xFED1,\n\t30495 - 11904: 0xAF75,\n\t30496 - 11904: 0xAF76,\n\t30498 - 11904: 0xD2D7,\n\t30499 - 11904: 0xD2D2,\n\t30500 - 11904: 0xA0C1,\n\t30501 - 11904: 0xD6B0,\n\t30502 - 11904: 0xFED2,\n\t30503 - 11904: 0xD2D8,\n\t30504 - 11904: 0xAF77,\n\t30505 - 11904: 0xAF74,\n\t30507 - 11904: 0xA0CD,\n\t30509 - 11904: 0xD6AA,\n\t30511 - 11904: 0xD6A9,\n\t30513 - 11904: 0xD6AB,\n\t30514 - 11904: 0xD6AC,\n\t30515 - 11904: 0xD6AE,\n\t30516 - 11904: 0xD6AD,\n\t30517 - 11904: 0xD6B2,\n\t30518 - 11904: 0xB2B5,\n\t30519 - 11904: 0xB2B2,\n\t30520 - 11904: 0xB2B6,\n\t30521 - 11904: 0xD6A8,\n\t30522 - 11904: 0xB2B7,\n\t30523 - 11904: 0xD6B1,\n\t30524 - 11904: 0xB2B4,\n\t30525 - 11904: 0xD6AF,\n\t30526 - 11904: 0xB2B3,\n\t30528 - 11904: 0xFED3,\n\t30531 - 11904: 0x98E5,\n\t30532 - 11904: 0xDABC,\n\t30533 - 11904: 0xDABE,\n\t30534 - 11904: 0xDABA,\n\t30535 - 11904: 0xDABB,\n\t30538 - 11904: 0xDABF,\n\t30539 - 11904: 0xDAC1,\n\t30540 - 11904: 0xDAC2,\n\t30541 - 11904: 0xDABD,\n\t30542 - 11904: 0xDAC0,\n\t30543 - 11904: 0xB574,\n\t30546 - 11904: 0xDEDB,\n\t30548 - 11904: 0xDEE0,\n\t30549 - 11904: 0xDED8,\n\t30550 - 11904: 0xDEDC,\n\t30552 - 11904: 0xFED6,\n\t30553 - 11904: 0xDEE1,\n\t30554 - 11904: 0xDEDD,\n\t30555 - 11904: 0xB7FA,\n\t30556 - 11904: 0xB843,\n\t30558 - 11904: 0xB7FD,\n\t30559 - 11904: 0xDED9,\n\t30560 - 11904: 0xDEDA,\n\t30561 - 11904: 0xBACE,\n\t30562 - 11904: 0xB846,\n\t30563 - 11904: 0xB7FE,\n\t30565 - 11904: 0xB844,\n\t30566 - 11904: 0xB7FC,\n\t30567 - 11904: 0xDEDF,\n\t30568 - 11904: 0xB845,\n\t30569 - 11904: 0xDEDE,\n\t30570 - 11904: 0xB841,\n\t30571 - 11904: 0xB7FB,\n\t30572 - 11904: 0xB842,\n\t30573 - 11904: 0xDEE2,\n\t30574 - 11904: 0xE2E6,\n\t30575 - 11904: 0xE2E8,\n\t30578 - 11904: 0x91E4,\n\t30583 - 11904: 0x8FC7,\n\t30584 - 11904: 0x94AE,\n\t30585 - 11904: 0xB840,\n\t30586 - 11904: 0x8A4F,\n\t30587 - 11904: 0x94B2,\n\t30588 - 11904: 0xE2E3,\n\t30589 - 11904: 0xBACC,\n\t30590 - 11904: 0xE2E9,\n\t30591 - 11904: 0xBACD,\n\t30592 - 11904: 0xE2E7,\n\t30593 - 11904: 0xE2E2,\n\t30594 - 11904: 0xE2E5,\n\t30595 - 11904: 0xE2EA,\n\t30596 - 11904: 0xBACB,\n\t30597 - 11904: 0xE2E4,\n\t30599 - 11904: 0xBD4E,\n\t30600 - 11904: 0xE6BF,\n\t30601 - 11904: 0xE6BE,\n\t30603 - 11904: 0xBD51,\n\t30604 - 11904: 0xBD4F,\n\t30605 - 11904: 0xE6BC,\n\t30606 - 11904: 0xBD4D,\n\t30607 - 11904: 0xE6BD,\n\t30609 - 11904: 0xBD50,\n\t30611 - 11904: 0x8FD4,\n\t30613 - 11904: 0xEA7D,\n\t30615 - 11904: 0xEAA1,\n\t30616 - 11904: 0x98EA,\n\t30617 - 11904: 0xEA7E,\n\t30618 - 11904: 0xEA76,\n\t30619 - 11904: 0xEA7A,\n\t30620 - 11904: 0xEA79,\n\t30621 - 11904: 0xEA77,\n\t30622 - 11904: 0xBF66,\n\t30623 - 11904: 0xBF67,\n\t30624 - 11904: 0xBF65,\n\t30625 - 11904: 0xEA78,\n\t30626 - 11904: 0xEA7B,\n\t30627 - 11904: 0xEA7C,\n\t30629 - 11904: 0xBF68,\n\t30631 - 11904: 0xC140,\n\t30632 - 11904: 0xEDA3,\n\t30634 - 11904: 0xC0FC,\n\t30635 - 11904: 0xED7B,\n\t30636 - 11904: 0xC0FE,\n\t30637 - 11904: 0xC141,\n\t30639 - 11904: 0xFED8,\n\t30640 - 11904: 0xC0FD,\n\t30641 - 11904: 0xEDA2,\n\t30642 - 11904: 0xED7C,\n\t30643 - 11904: 0xC0FB,\n\t30644 - 11904: 0xEDA1,\n\t30645 - 11904: 0xED7A,\n\t30646 - 11904: 0xED7E,\n\t30647 - 11904: 0xED7D,\n\t30649 - 11904: 0x9DE0,\n\t30650 - 11904: 0xF055,\n\t30651 - 11904: 0xC2A4,\n\t30652 - 11904: 0xC2A5,\n\t30653 - 11904: 0xC2A2,\n\t30654 - 11904: 0x98EE,\n\t30655 - 11904: 0xC2A3,\n\t30658 - 11904: 0xF054,\n\t30659 - 11904: 0x95C4,\n\t30660 - 11904: 0xF27B,\n\t30661 - 11904: 0xFCE8,\n\t30663 - 11904: 0xC3A9,\n\t30665 - 11904: 0xF279,\n\t30666 - 11904: 0xF27A,\n\t30667 - 11904: 0x98EF,\n\t30668 - 11904: 0xF474,\n\t30669 - 11904: 0xF477,\n\t30670 - 11904: 0xF475,\n\t30671 - 11904: 0xF476,\n\t30672 - 11904: 0xF5E0,\n\t30675 - 11904: 0xC4EF,\n\t30676 - 11904: 0xF7EB,\n\t30677 - 11904: 0xF8B4,\n\t30679 - 11904: 0xC5F7,\n\t30680 - 11904: 0xF8F8,\n\t30681 - 11904: 0xF8F9,\n\t30682 - 11904: 0xC666,\n\t30683 - 11904: 0xA5D9,\n\t30684 - 11904: 0xACE1,\n\t30685 - 11904: 0x8C6E,\n\t30686 - 11904: 0xDAC3,\n\t30688 - 11904: 0xDEE3,\n\t30690 - 11904: 0xA5DA,\n\t30691 - 11904: 0xA86F,\n\t30693 - 11904: 0xAABE,\n\t30694 - 11904: 0xFAD8,\n\t30695 - 11904: 0xCFE8,\n\t30696 - 11904: 0xCFE9,\n\t30697 - 11904: 0xAF78,\n\t30700 - 11904: 0xDAC4,\n\t30701 - 11904: 0xB575,\n\t30702 - 11904: 0xB847,\n\t30703 - 11904: 0xC142,\n\t30704 - 11904: 0xEDA4,\n\t30705 - 11904: 0xF27C,\n\t30706 - 11904: 0xF478,\n\t30707 - 11904: 0xA5DB,\n\t30708 - 11904: 0xFEDC,\n\t30711 - 11904: 0xCDA1,\n\t30712 - 11904: 0xCD7A,\n\t30713 - 11904: 0xCD7C,\n\t30714 - 11904: 0xCD7E,\n\t30715 - 11904: 0xCD7D,\n\t30716 - 11904: 0xCD7B,\n\t30717 - 11904: 0xAABF,\n\t30718 - 11904: 0xA0AE,\n\t30722 - 11904: 0xACE2,\n\t30723 - 11904: 0xCFF2,\n\t30725 - 11904: 0xCFED,\n\t30726 - 11904: 0xCFEA,\n\t30728 - 11904: 0x9D4C,\n\t30729 - 11904: 0xFEDD,\n\t30732 - 11904: 0xACE4,\n\t30733 - 11904: 0xACE5,\n\t30734 - 11904: 0xCFF0,\n\t30735 - 11904: 0xCFEF,\n\t30736 - 11904: 0xCFEE,\n\t30737 - 11904: 0xCFEB,\n\t30738 - 11904: 0xCFEC,\n\t30739 - 11904: 0xCFF3,\n\t30740 - 11904: 0xACE3,\n\t30744 - 11904: 0x98F1,\n\t30748 - 11904: 0x98F3,\n\t30749 - 11904: 0xAF7C,\n\t30750 - 11904: 0x94C1,\n\t30751 - 11904: 0xAFA4,\n\t30752 - 11904: 0xAFA3,\n\t30753 - 11904: 0xD2E1,\n\t30754 - 11904: 0xD2DB,\n\t30755 - 11904: 0xD2D9,\n\t30757 - 11904: 0xAFA1,\n\t30758 - 11904: 0xD6B9,\n\t30759 - 11904: 0xAF7A,\n\t30760 - 11904: 0xD2DE,\n\t30761 - 11904: 0xD2E2,\n\t30762 - 11904: 0xD2E4,\n\t30763 - 11904: 0xD2E0,\n\t30764 - 11904: 0xD2DA,\n\t30765 - 11904: 0xAFA2,\n\t30766 - 11904: 0xD2DF,\n\t30767 - 11904: 0xD2DD,\n\t30768 - 11904: 0xAF79,\n\t30769 - 11904: 0xD2E5,\n\t30770 - 11904: 0xAFA5,\n\t30771 - 11904: 0xD2E3,\n\t30772 - 11904: 0xAF7D,\n\t30773 - 11904: 0xD2DC,\n\t30775 - 11904: 0xAF7E,\n\t30776 - 11904: 0xAF7B,\n\t30777 - 11904: 0x98F5,\n\t30780 - 11904: 0xFA4F,\n\t30781 - 11904: 0x96E2,\n\t30786 - 11904: 0x9450,\n\t30787 - 11904: 0xB2B9,\n\t30788 - 11904: 0x96A2,\n\t30789 - 11904: 0xD6BA,\n\t30791 - 11904: 0x98F6,\n\t30792 - 11904: 0xD6B3,\n\t30793 - 11904: 0xD6B5,\n\t30794 - 11904: 0xD6B7,\n\t30795 - 11904: 0x96E5,\n\t30796 - 11904: 0xD6B8,\n\t30797 - 11904: 0xD6B6,\n\t30798 - 11904: 0xB2BA,\n\t30800 - 11904: 0xD6BB,\n\t30801 - 11904: 0x98F7,\n\t30802 - 11904: 0xD6B4,\n\t30803 - 11904: 0xA046,\n\t30804 - 11904: 0x96E3,\n\t30812 - 11904: 0xDAC8,\n\t30813 - 11904: 0xB576,\n\t30814 - 11904: 0xDAD0,\n\t30816 - 11904: 0xDAC5,\n\t30818 - 11904: 0xDAD1,\n\t30820 - 11904: 0xDAC6,\n\t30821 - 11904: 0xDAC7,\n\t30822 - 11904: 0x98F8,\n\t30824 - 11904: 0xDACF,\n\t30825 - 11904: 0xDACE,\n\t30826 - 11904: 0xDACB,\n\t30827 - 11904: 0xB2B8,\n\t30828 - 11904: 0xB577,\n\t30829 - 11904: 0xDAC9,\n\t30830 - 11904: 0xDACC,\n\t30831 - 11904: 0xB578,\n\t30832 - 11904: 0xDACD,\n\t30833 - 11904: 0xDACA,\n\t30841 - 11904: 0xDEEE,\n\t30842 - 11904: 0x9EE4,\n\t30843 - 11904: 0xDEF2,\n\t30844 - 11904: 0xB84E,\n\t30846 - 11904: 0xE2F0,\n\t30847 - 11904: 0xB851,\n\t30848 - 11904: 0xDEF0,\n\t30849 - 11904: 0xF9D6,\n\t30851 - 11904: 0xDEED,\n\t30852 - 11904: 0xDEE8,\n\t30853 - 11904: 0xDEEA,\n\t30854 - 11904: 0xDEEB,\n\t30855 - 11904: 0xDEE4,\n\t30856 - 11904: 0x94C3,\n\t30857 - 11904: 0xB84D,\n\t30860 - 11904: 0xB84C,\n\t30861 - 11904: 0x94C2,\n\t30862 - 11904: 0xB848,\n\t30863 - 11904: 0xDEE7,\n\t30865 - 11904: 0xB84F,\n\t30867 - 11904: 0xB850,\n\t30868 - 11904: 0xDEE6,\n\t30869 - 11904: 0xDEE9,\n\t30870 - 11904: 0xDEF1,\n\t30871 - 11904: 0xB84A,\n\t30872 - 11904: 0xB84B,\n\t30873 - 11904: 0xDEEF,\n\t30874 - 11904: 0xDEE5,\n\t30878 - 11904: 0xE2F2,\n\t30879 - 11904: 0xBAD0,\n\t30880 - 11904: 0xE2F4,\n\t30881 - 11904: 0xDEEC,\n\t30882 - 11904: 0xE2F6,\n\t30883 - 11904: 0xBAD4,\n\t30884 - 11904: 0xE2F7,\n\t30885 - 11904: 0xE2F3,\n\t30887 - 11904: 0xBAD1,\n\t30888 - 11904: 0xE2EF,\n\t30889 - 11904: 0xBAD3,\n\t30890 - 11904: 0xE2EC,\n\t30891 - 11904: 0xE2F1,\n\t30892 - 11904: 0xE2F5,\n\t30893 - 11904: 0xE2EE,\n\t30895 - 11904: 0xFEE1,\n\t30896 - 11904: 0xB849,\n\t30897 - 11904: 0xFEE9,\n\t30898 - 11904: 0xE2EB,\n\t30899 - 11904: 0xBAD2,\n\t30900 - 11904: 0xE2ED,\n\t30902 - 11904: 0x96E4,\n\t30904 - 11904: 0x89AC,\n\t30905 - 11904: 0x96DB,\n\t30906 - 11904: 0xBD54,\n\t30907 - 11904: 0xE6C1,\n\t30908 - 11904: 0xBD58,\n\t30910 - 11904: 0xBD56,\n\t30913 - 11904: 0xBACF,\n\t30915 - 11904: 0xE6C8,\n\t30916 - 11904: 0xE6C9,\n\t30917 - 11904: 0xBD53,\n\t30919 - 11904: 0xFEE2,\n\t30920 - 11904: 0xE6C7,\n\t30921 - 11904: 0xE6CA,\n\t30922 - 11904: 0xBD55,\n\t30923 - 11904: 0xBD52,\n\t30924 - 11904: 0xE6C3,\n\t30925 - 11904: 0xE6C0,\n\t30926 - 11904: 0xE6C5,\n\t30927 - 11904: 0xE6C2,\n\t30928 - 11904: 0xBD59,\n\t30929 - 11904: 0xE6C4,\n\t30930 - 11904: 0x94C4,\n\t30931 - 11904: 0xFEE3,\n\t30932 - 11904: 0xE6C6,\n\t30933 - 11904: 0xBD57,\n\t30935 - 11904: 0xFEE7,\n\t30936 - 11904: 0x9FFB,\n\t30938 - 11904: 0xBF6A,\n\t30939 - 11904: 0xEAA8,\n\t30941 - 11904: 0xEAA2,\n\t30942 - 11904: 0xEAA6,\n\t30943 - 11904: 0xEAAC,\n\t30944 - 11904: 0xEAAD,\n\t30945 - 11904: 0xEAA9,\n\t30946 - 11904: 0xEAAA,\n\t30947 - 11904: 0xEAA7,\n\t30948 - 11904: 0x8C59,\n\t30949 - 11904: 0xEAA4,\n\t30951 - 11904: 0xBF6C,\n\t30952 - 11904: 0xBF69,\n\t30953 - 11904: 0xEAA3,\n\t30954 - 11904: 0xEAA5,\n\t30956 - 11904: 0xBF6B,\n\t30957 - 11904: 0xEAAB,\n\t30958 - 11904: 0x93C9,\n\t30959 - 11904: 0xC146,\n\t30960 - 11904: 0x94E8,\n\t30961 - 11904: 0xFB56,\n\t30962 - 11904: 0xEDAA,\n\t30963 - 11904: 0xEDA5,\n\t30964 - 11904: 0xC145,\n\t30965 - 11904: 0x90C5,\n\t30967 - 11904: 0xC143,\n\t30969 - 11904: 0xEDAC,\n\t30970 - 11904: 0xC144,\n\t30971 - 11904: 0xEDA8,\n\t30972 - 11904: 0xEDA9,\n\t30973 - 11904: 0xEDA6,\n\t30974 - 11904: 0xEDAD,\n\t30975 - 11904: 0xF056,\n\t30977 - 11904: 0xC147,\n\t30978 - 11904: 0xEDA7,\n\t30980 - 11904: 0xEDAE,\n\t30981 - 11904: 0xEDAB,\n\t30982 - 11904: 0xA0A8,\n\t30985 - 11904: 0xF05A,\n\t30988 - 11904: 0xF057,\n\t30990 - 11904: 0xC2A6,\n\t30992 - 11904: 0xF05B,\n\t30993 - 11904: 0xF05D,\n\t30994 - 11904: 0xF05C,\n\t30995 - 11904: 0xF058,\n\t30996 - 11904: 0xF059,\n\t30999 - 11904: 0xF2A3,\n\t31001 - 11904: 0xC3AA,\n\t31003 - 11904: 0xF27E,\n\t31004 - 11904: 0xF2A2,\n\t31005 - 11904: 0xF27D,\n\t31006 - 11904: 0xF2A4,\n\t31009 - 11904: 0xF2A1,\n\t31011 - 11904: 0xF47A,\n\t31012 - 11904: 0xF47D,\n\t31013 - 11904: 0xF479,\n\t31014 - 11904: 0xC471,\n\t31015 - 11904: 0xF47B,\n\t31016 - 11904: 0xF47C,\n\t31017 - 11904: 0xF47E,\n\t31018 - 11904: 0xC472,\n\t31019 - 11904: 0xC474,\n\t31020 - 11904: 0xC473,\n\t31021 - 11904: 0xF5E1,\n\t31022 - 11904: 0xFEE5,\n\t31023 - 11904: 0xF5E3,\n\t31025 - 11904: 0xF5E2,\n\t31026 - 11904: 0x98FD,\n\t31027 - 11904: 0x98FB,\n\t31028 - 11904: 0xFEE8,\n\t31029 - 11904: 0xF6F6,\n\t31030 - 11904: 0x8EBF,\n\t31032 - 11904: 0xF8B5,\n\t31033 - 11904: 0xF8FA,\n\t31034 - 11904: 0xA5DC,\n\t31035 - 11904: 0x8BD8,\n\t31036 - 11904: 0xFEF7,\n\t31037 - 11904: 0xCB72,\n\t31038 - 11904: 0xAAC0,\n\t31039 - 11904: 0xCDA3,\n\t31040 - 11904: 0xAAC1,\n\t31041 - 11904: 0xAAC2,\n\t31042 - 11904: 0xCDA2,\n\t31044 - 11904: 0xCFF8,\n\t31045 - 11904: 0xCFF7,\n\t31046 - 11904: 0xACE6,\n\t31047 - 11904: 0xACE9,\n\t31048 - 11904: 0xACE8,\n\t31049 - 11904: 0xACE7,\n\t31050 - 11904: 0xCFF4,\n\t31051 - 11904: 0xCFF6,\n\t31052 - 11904: 0xCFF5,\n\t31055 - 11904: 0xD2E8,\n\t31056 - 11904: 0xAFA7,\n\t31057 - 11904: 0xD2EC,\n\t31058 - 11904: 0xD2EB,\n\t31059 - 11904: 0xD2EA,\n\t31060 - 11904: 0xD2E6,\n\t31061 - 11904: 0xAFA6,\n\t31062 - 11904: 0xAFAA,\n\t31063 - 11904: 0xAFAD,\n\t31064 - 11904: 0x8F68,\n\t31065 - 11904: 0x94C6,\n\t31066 - 11904: 0xAFAE,\n\t31067 - 11904: 0xD2E7,\n\t31068 - 11904: 0xD2E9,\n\t31069 - 11904: 0xAFAC,\n\t31070 - 11904: 0xAFAB,\n\t31071 - 11904: 0xAFA9,\n\t31072 - 11904: 0xAFA8,\n\t31073 - 11904: 0xD6C2,\n\t31074 - 11904: 0x9DEA,\n\t31075 - 11904: 0xD6C0,\n\t31076 - 11904: 0xD6BC,\n\t31077 - 11904: 0xB2BB,\n\t31079 - 11904: 0xD6BD,\n\t31080 - 11904: 0xB2BC,\n\t31081 - 11904: 0xD6BE,\n\t31082 - 11904: 0xD6BF,\n\t31083 - 11904: 0xD6C1,\n\t31085 - 11904: 0xB2BD,\n\t31088 - 11904: 0xDAD5,\n\t31089 - 11904: 0xFC69,\n\t31090 - 11904: 0xDAD4,\n\t31091 - 11904: 0xDAD3,\n\t31092 - 11904: 0xDAD2,\n\t31097 - 11904: 0xDEF6,\n\t31098 - 11904: 0xB852,\n\t31100 - 11904: 0xDEF3,\n\t31101 - 11904: 0xDEF5,\n\t31102 - 11904: 0x9CDA,\n\t31103 - 11904: 0xB853,\n\t31104 - 11904: 0xFEF3,\n\t31105 - 11904: 0xB854,\n\t31106 - 11904: 0xDEF4,\n\t31107 - 11904: 0x9C72,\n\t31110 - 11904: 0xFEF0,\n\t31111 - 11904: 0x89C9,\n\t31112 - 11904: 0xE341,\n\t31114 - 11904: 0xE2F9,\n\t31115 - 11904: 0xE2FA,\n\t31117 - 11904: 0xBAD7,\n\t31118 - 11904: 0xBAD5,\n\t31119 - 11904: 0xBAD6,\n\t31120 - 11904: 0xE343,\n\t31121 - 11904: 0x9941,\n\t31122 - 11904: 0xE342,\n\t31123 - 11904: 0xE2FE,\n\t31124 - 11904: 0xE2FD,\n\t31125 - 11904: 0xE2FC,\n\t31126 - 11904: 0xE2FB,\n\t31127 - 11904: 0xE340,\n\t31128 - 11904: 0xE2F8,\n\t31129 - 11904: 0x9942,\n\t31130 - 11904: 0xE6CB,\n\t31131 - 11904: 0xE6D0,\n\t31132 - 11904: 0xE6CE,\n\t31133 - 11904: 0xFEF5,\n\t31135 - 11904: 0x91D7,\n\t31136 - 11904: 0xE6CD,\n\t31137 - 11904: 0xE6CC,\n\t31138 - 11904: 0xE6CF,\n\t31140 - 11904: 0xEAAE,\n\t31141 - 11904: 0x94CC,\n\t31142 - 11904: 0xBF6D,\n\t31143 - 11904: 0xC148,\n\t31144 - 11904: 0xEDB0,\n\t31145 - 11904: 0xFEF8,\n\t31146 - 11904: 0xC149,\n\t31147 - 11904: 0xEDAF,\n\t31148 - 11904: 0xF05F,\n\t31149 - 11904: 0xF05E,\n\t31150 - 11904: 0xC2A7,\n\t31152 - 11904: 0xF2A5,\n\t31153 - 11904: 0xC3AB,\n\t31154 - 11904: 0xF4A1,\n\t31155 - 11904: 0xC5A1,\n\t31156 - 11904: 0xF6F7,\n\t31158 - 11904: 0xF8B7,\n\t31159 - 11904: 0xF8B6,\n\t31160 - 11904: 0xC9A8,\n\t31161 - 11904: 0xACEA,\n\t31162 - 11904: 0xACEB,\n\t31163 - 11904: 0xD6C3,\n\t31165 - 11904: 0xB856,\n\t31166 - 11904: 0xA5DD,\n\t31167 - 11904: 0xA872,\n\t31168 - 11904: 0xA871,\n\t31169 - 11904: 0xA870,\n\t31172 - 11904: 0x97A8,\n\t31173 - 11904: 0xCDA4,\n\t31174 - 11904: 0xFEFC,\n\t31176 - 11904: 0xAAC4,\n\t31177 - 11904: 0xAAC3,\n\t31178 - 11904: 0x8CDE,\n\t31179 - 11904: 0xACEE,\n\t31180 - 11904: 0xFDBF,\n\t31181 - 11904: 0xCFFA,\n\t31182 - 11904: 0xCFFD,\n\t31183 - 11904: 0xCFFB,\n\t31184 - 11904: 0x87B3,\n\t31185 - 11904: 0xACEC,\n\t31186 - 11904: 0xACED,\n\t31188 - 11904: 0xFEFE,\n\t31189 - 11904: 0xCFF9,\n\t31190 - 11904: 0xCFFC,\n\t31192 - 11904: 0xAFB5,\n\t31196 - 11904: 0xD2F3,\n\t31197 - 11904: 0xD2F5,\n\t31198 - 11904: 0xD2F4,\n\t31199 - 11904: 0xAFB2,\n\t31200 - 11904: 0xD2EF,\n\t31202 - 11904: 0x96D1,\n\t31203 - 11904: 0xAFB0,\n\t31204 - 11904: 0xAFAF,\n\t31206 - 11904: 0xAFB3,\n\t31207 - 11904: 0xAFB1,\n\t31209 - 11904: 0xAFB4,\n\t31210 - 11904: 0xD2F2,\n\t31211 - 11904: 0xD2ED,\n\t31212 - 11904: 0xD2EE,\n\t31213 - 11904: 0xD2F1,\n\t31214 - 11904: 0xD2F0,\n\t31217 - 11904: 0x94D5,\n\t31220 - 11904: 0x94D0,\n\t31222 - 11904: 0xD6C6,\n\t31223 - 11904: 0xD6C7,\n\t31224 - 11904: 0xD6C5,\n\t31226 - 11904: 0xD6C4,\n\t31227 - 11904: 0xB2BE,\n\t31232 - 11904: 0xB57D,\n\t31234 - 11904: 0xDAD6,\n\t31235 - 11904: 0xDAD8,\n\t31236 - 11904: 0xDADA,\n\t31237 - 11904: 0xB57C,\n\t31238 - 11904: 0x9944,\n\t31240 - 11904: 0xB57A,\n\t31242 - 11904: 0xDAD7,\n\t31243 - 11904: 0xB57B,\n\t31244 - 11904: 0xDAD9,\n\t31245 - 11904: 0xB579,\n\t31248 - 11904: 0xDF41,\n\t31249 - 11904: 0xDEF7,\n\t31250 - 11904: 0xDEFA,\n\t31251 - 11904: 0xDEFE,\n\t31252 - 11904: 0xB85A,\n\t31253 - 11904: 0xDEFC,\n\t31255 - 11904: 0xDEFB,\n\t31256 - 11904: 0xDEF8,\n\t31257 - 11904: 0xDEF9,\n\t31258 - 11904: 0xB858,\n\t31259 - 11904: 0xDF40,\n\t31260 - 11904: 0xB857,\n\t31262 - 11904: 0xB85C,\n\t31263 - 11904: 0xB85B,\n\t31264 - 11904: 0xB859,\n\t31266 - 11904: 0xDEFD,\n\t31270 - 11904: 0xE349,\n\t31272 - 11904: 0xE348,\n\t31274 - 11904: 0x8C63,\n\t31275 - 11904: 0xE344,\n\t31276 - 11904: 0x87BB,\n\t31277 - 11904: 0xA0B3,\n\t31278 - 11904: 0xBAD8,\n\t31279 - 11904: 0xE347,\n\t31280 - 11904: 0xE346,\n\t31281 - 11904: 0xBAD9,\n\t31282 - 11904: 0x87B4,\n\t31287 - 11904: 0xBD5E,\n\t31289 - 11904: 0xE6D2,\n\t31290 - 11904: 0x94CF,\n\t31291 - 11904: 0xBD5F,\n\t31292 - 11904: 0xBD5B,\n\t31293 - 11904: 0xBD5D,\n\t31294 - 11904: 0x9FFA,\n\t31295 - 11904: 0xBD5A,\n\t31296 - 11904: 0xBD5C,\n\t31299 - 11904: 0x91E5,\n\t31300 - 11904: 0xEAAF,\n\t31301 - 11904: 0x9C6A,\n\t31302 - 11904: 0xBF70,\n\t31303 - 11904: 0xEAB1,\n\t31304 - 11904: 0xEAB0,\n\t31305 - 11904: 0x8E49,\n\t31306 - 11904: 0xE345,\n\t31307 - 11904: 0xBF72,\n\t31308 - 11904: 0xBF71,\n\t31309 - 11904: 0xBF6E,\n\t31310 - 11904: 0xBF6F,\n\t31316 - 11904: 0xEDB5,\n\t31318 - 11904: 0xEDB3,\n\t31319 - 11904: 0xC14A,\n\t31320 - 11904: 0xEDB4,\n\t31322 - 11904: 0xEDB6,\n\t31323 - 11904: 0xEDB2,\n\t31324 - 11904: 0xEDB1,\n\t31327 - 11904: 0xF060,\n\t31328 - 11904: 0xC2AA,\n\t31329 - 11904: 0xC2A8,\n\t31330 - 11904: 0xC2A9,\n\t31333 - 11904: 0x8E4C,\n\t31335 - 11904: 0xF2A6,\n\t31336 - 11904: 0xF2A7,\n\t31337 - 11904: 0xC3AD,\n\t31339 - 11904: 0xC3AC,\n\t31340 - 11904: 0xF4A3,\n\t31341 - 11904: 0xF4A4,\n\t31342 - 11904: 0xF4A2,\n\t31344 - 11904: 0xF6F8,\n\t31345 - 11904: 0xF6F9,\n\t31346 - 11904: 0x87C9,\n\t31348 - 11904: 0xA5DE,\n\t31349 - 11904: 0xCA48,\n\t31350 - 11904: 0xA873,\n\t31352 - 11904: 0xCDA5,\n\t31353 - 11904: 0xAAC6,\n\t31354 - 11904: 0xAAC5,\n\t31355 - 11904: 0xCDA6,\n\t31357 - 11904: 0x8E4D,\n\t31358 - 11904: 0xD040,\n\t31359 - 11904: 0xACEF,\n\t31360 - 11904: 0xCFFE,\n\t31361 - 11904: 0xACF0,\n\t31363 - 11904: 0x9A73,\n\t31364 - 11904: 0xAFB6,\n\t31365 - 11904: 0xD2F8,\n\t31366 - 11904: 0xD2F6,\n\t31367 - 11904: 0xD2FC,\n\t31368 - 11904: 0xAFB7,\n\t31369 - 11904: 0xD2F7,\n\t31370 - 11904: 0xD2FB,\n\t31371 - 11904: 0xD2F9,\n\t31372 - 11904: 0xD2FA,\n\t31375 - 11904: 0xD6C8,\n\t31376 - 11904: 0xD6CA,\n\t31377 - 11904: 0x9947,\n\t31378 - 11904: 0xB2BF,\n\t31379 - 11904: 0x8CB1,\n\t31380 - 11904: 0xD6C9,\n\t31381 - 11904: 0xB2C0,\n\t31382 - 11904: 0xB5A2,\n\t31383 - 11904: 0xB5A1,\n\t31384 - 11904: 0xB57E,\n\t31385 - 11904: 0xDADB,\n\t31390 - 11904: 0xDF44,\n\t31391 - 11904: 0xB85D,\n\t31392 - 11904: 0xB85E,\n\t31394 - 11904: 0xDF43,\n\t31395 - 11904: 0xDF42,\n\t31400 - 11904: 0xE34A,\n\t31401 - 11904: 0xBADB,\n\t31402 - 11904: 0xBADA,\n\t31403 - 11904: 0xE34B,\n\t31404 - 11904: 0xE34C,\n\t31406 - 11904: 0xBD61,\n\t31407 - 11904: 0xBD60,\n\t31408 - 11904: 0x8E50,\n\t31409 - 11904: 0xEAB5,\n\t31410 - 11904: 0xE6D3,\n\t31411 - 11904: 0xE6D5,\n\t31412 - 11904: 0xE6D4,\n\t31413 - 11904: 0xEAB4,\n\t31414 - 11904: 0xEAB2,\n\t31415 - 11904: 0xEAB6,\n\t31416 - 11904: 0xEAB3,\n\t31418 - 11904: 0xBF73,\n\t31419 - 11904: 0x8E4F,\n\t31420 - 11904: 0x9949,\n\t31422 - 11904: 0xEDB7,\n\t31423 - 11904: 0xC14B,\n\t31424 - 11904: 0xEDB8,\n\t31425 - 11904: 0xEDB9,\n\t31426 - 11904: 0x8E51,\n\t31427 - 11904: 0x8E52,\n\t31428 - 11904: 0xC2AB,\n\t31429 - 11904: 0xC2AC,\n\t31431 - 11904: 0xC475,\n\t31432 - 11904: 0x9AB2,\n\t31433 - 11904: 0x89A5,\n\t31434 - 11904: 0xC5D1,\n\t31435 - 11904: 0xA5DF,\n\t31439 - 11904: 0x994C,\n\t31441 - 11904: 0xD041,\n\t31443 - 11904: 0x9FF8,\n\t31448 - 11904: 0xD2FD,\n\t31449 - 11904: 0xAFB8,\n\t31450 - 11904: 0x8E56,\n\t31451 - 11904: 0x994D,\n\t31452 - 11904: 0x91CA,\n\t31453 - 11904: 0x8E57,\n\t31455 - 11904: 0xB3BA,\n\t31456 - 11904: 0xB3B9,\n\t31458 - 11904: 0x94E1,\n\t31459 - 11904: 0xB5A4,\n\t31460 - 11904: 0xDADD,\n\t31461 - 11904: 0xB5A3,\n\t31462 - 11904: 0xDADC,\n\t31463 - 11904: 0x9047,\n\t31465 - 11904: 0x8FD8,\n\t31466 - 11904: 0x8E58,\n\t31467 - 11904: 0xDF45,\n\t31469 - 11904: 0xBADC,\n\t31470 - 11904: 0xE34D,\n\t31471 - 11904: 0xBADD,\n\t31478 - 11904: 0xC476,\n\t31479 - 11904: 0xF4A5,\n\t31481 - 11904: 0xA6CB,\n\t31482 - 11904: 0xAAC7,\n\t31483 - 11904: 0xCDA7,\n\t31484 - 11904: 0x87A3,\n\t31485 - 11904: 0xACF2,\n\t31486 - 11904: 0x94EB,\n\t31487 - 11904: 0xACF1,\n\t31488 - 11904: 0xD042,\n\t31489 - 11904: 0xD043,\n\t31492 - 11904: 0xD340,\n\t31493 - 11904: 0xD342,\n\t31494 - 11904: 0xAFB9,\n\t31496 - 11904: 0xD344,\n\t31497 - 11904: 0xD347,\n\t31498 - 11904: 0xD345,\n\t31499 - 11904: 0x8E5C,\n\t31500 - 11904: 0x9553,\n\t31502 - 11904: 0xD346,\n\t31503 - 11904: 0xD343,\n\t31504 - 11904: 0xD2FE,\n\t31505 - 11904: 0xAFBA,\n\t31506 - 11904: 0xD348,\n\t31507 - 11904: 0xD341,\n\t31508 - 11904: 0x9FE5,\n\t31512 - 11904: 0xD6D3,\n\t31513 - 11904: 0xB2C6,\n\t31514 - 11904: 0xD6DC,\n\t31515 - 11904: 0xB2C3,\n\t31517 - 11904: 0xD6D5,\n\t31518 - 11904: 0xB2C7,\n\t31519 - 11904: 0x9F56,\n\t31520 - 11904: 0xB2C1,\n\t31522 - 11904: 0xD6D0,\n\t31523 - 11904: 0xD6DD,\n\t31524 - 11904: 0xD6D1,\n\t31525 - 11904: 0xD6CE,\n\t31526 - 11904: 0xB2C5,\n\t31527 - 11904: 0x954F,\n\t31528 - 11904: 0xB2C2,\n\t31529 - 11904: 0x8E5E,\n\t31530 - 11904: 0xD6D4,\n\t31531 - 11904: 0xD6D7,\n\t31532 - 11904: 0xB2C4,\n\t31533 - 11904: 0xD6D8,\n\t31534 - 11904: 0xB2C8,\n\t31535 - 11904: 0xD6D9,\n\t31536 - 11904: 0xD6CF,\n\t31537 - 11904: 0xD6D6,\n\t31538 - 11904: 0xD6DA,\n\t31539 - 11904: 0xD6D2,\n\t31540 - 11904: 0xD6CD,\n\t31541 - 11904: 0xD6CB,\n\t31544 - 11904: 0xD6DB,\n\t31545 - 11904: 0x996A,\n\t31547 - 11904: 0xDADF,\n\t31552 - 11904: 0xDAE4,\n\t31554 - 11904: 0x9C64,\n\t31555 - 11904: 0x9CD9,\n\t31556 - 11904: 0xDAE0,\n\t31557 - 11904: 0xDAE6,\n\t31558 - 11904: 0xB5A7,\n\t31559 - 11904: 0xD6CC,\n\t31560 - 11904: 0xDAE1,\n\t31561 - 11904: 0xB5A5,\n\t31562 - 11904: 0xDADE,\n\t31563 - 11904: 0xB5AC,\n\t31564 - 11904: 0xDAE2,\n\t31565 - 11904: 0xB5AB,\n\t31566 - 11904: 0xDAE3,\n\t31567 - 11904: 0xB5AD,\n\t31568 - 11904: 0xB5A8,\n\t31569 - 11904: 0xB5AE,\n\t31570 - 11904: 0xB5A9,\n\t31572 - 11904: 0xB5AA,\n\t31573 - 11904: 0x8E5D,\n\t31574 - 11904: 0xB5A6,\n\t31576 - 11904: 0xDAE5,\n\t31584 - 11904: 0xB861,\n\t31585 - 11904: 0xDF50,\n\t31586 - 11904: 0x9950,\n\t31587 - 11904: 0xDF53,\n\t31588 - 11904: 0xDF47,\n\t31589 - 11904: 0xDF4C,\n\t31590 - 11904: 0xDF46,\n\t31591 - 11904: 0xB863,\n\t31593 - 11904: 0xDF4A,\n\t31596 - 11904: 0x9951,\n\t31597 - 11904: 0xDF48,\n\t31598 - 11904: 0xB862,\n\t31599 - 11904: 0x8E62,\n\t31600 - 11904: 0xDF4F,\n\t31601 - 11904: 0xDF4E,\n\t31602 - 11904: 0xDF4B,\n\t31603 - 11904: 0xDF4D,\n\t31604 - 11904: 0xDF49,\n\t31605 - 11904: 0xBAE1,\n\t31606 - 11904: 0xDF52,\n\t31607 - 11904: 0xB85F,\n\t31608 - 11904: 0xDF51,\n\t31611 - 11904: 0x9952,\n\t31618 - 11904: 0xE35D,\n\t31620 - 11904: 0xBAE8,\n\t31621 - 11904: 0xE358,\n\t31623 - 11904: 0xBAE7,\n\t31624 - 11904: 0xE34E,\n\t31626 - 11904: 0xE350,\n\t31627 - 11904: 0xBAE0,\n\t31628 - 11904: 0xE355,\n\t31629 - 11904: 0xE354,\n\t31630 - 11904: 0xE357,\n\t31631 - 11904: 0xBAE5,\n\t31632 - 11904: 0xE352,\n\t31633 - 11904: 0xE351,\n\t31634 - 11904: 0x8E68,\n\t31636 - 11904: 0xBAE4,\n\t31637 - 11904: 0xBADF,\n\t31638 - 11904: 0xE353,\n\t31639 - 11904: 0xBAE2,\n\t31640 - 11904: 0xE359,\n\t31641 - 11904: 0xE35B,\n\t31643 - 11904: 0xE356,\n\t31644 - 11904: 0xE34F,\n\t31645 - 11904: 0xBAE3,\n\t31648 - 11904: 0xBD69,\n\t31649 - 11904: 0xBADE,\n\t31650 - 11904: 0x8E61,\n\t31651 - 11904: 0x9F59,\n\t31652 - 11904: 0xE35C,\n\t31660 - 11904: 0xE6D9,\n\t31661 - 11904: 0xBD62,\n\t31662 - 11904: 0x87D0,\n\t31663 - 11904: 0xE6DB,\n\t31665 - 11904: 0xBD63,\n\t31666 - 11904: 0x8BB3,\n\t31668 - 11904: 0xBD65,\n\t31669 - 11904: 0xE6DE,\n\t31671 - 11904: 0xE6D6,\n\t31672 - 11904: 0xBAE6,\n\t31673 - 11904: 0xE6DC,\n\t31678 - 11904: 0xE6D8,\n\t31680 - 11904: 0xB860,\n\t31681 - 11904: 0xBD68,\n\t31684 - 11904: 0xBD64,\n\t31685 - 11904: 0x87B9,\n\t31686 - 11904: 0xBD66,\n\t31687 - 11904: 0xBD67,\n\t31689 - 11904: 0xBF76,\n\t31690 - 11904: 0xE6DD,\n\t31691 - 11904: 0xE6D7,\n\t31692 - 11904: 0xBD6A,\n\t31694 - 11904: 0xE6DA,\n\t31695 - 11904: 0x9F5D,\n\t31696 - 11904: 0x8E66,\n\t31700 - 11904: 0xEAC0,\n\t31701 - 11904: 0xEABB,\n\t31704 - 11904: 0xEAC5,\n\t31705 - 11904: 0xBF74,\n\t31706 - 11904: 0xEABD,\n\t31707 - 11904: 0xBF78,\n\t31708 - 11904: 0xEAC3,\n\t31709 - 11904: 0xEABA,\n\t31710 - 11904: 0xEAB7,\n\t31711 - 11904: 0xEAC6,\n\t31712 - 11904: 0xC151,\n\t31713 - 11904: 0xBF79,\n\t31714 - 11904: 0xEAC2,\n\t31715 - 11904: 0xEAB8,\n\t31716 - 11904: 0xBF77,\n\t31717 - 11904: 0xEABC,\n\t31718 - 11904: 0xBF7B,\n\t31719 - 11904: 0xEAB9,\n\t31720 - 11904: 0xEABE,\n\t31721 - 11904: 0xBF7A,\n\t31722 - 11904: 0xEAC1,\n\t31723 - 11904: 0xEAC4,\n\t31724 - 11904: 0x8CB2,\n\t31728 - 11904: 0xEDCB,\n\t31729 - 11904: 0xEDCC,\n\t31730 - 11904: 0xEDBC,\n\t31731 - 11904: 0xEDC3,\n\t31732 - 11904: 0xEDC1,\n\t31735 - 11904: 0xC14F,\n\t31736 - 11904: 0xEDC8,\n\t31737 - 11904: 0xEABF,\n\t31738 - 11904: 0x8E6E,\n\t31739 - 11904: 0xEDBF,\n\t31740 - 11904: 0x9F64,\n\t31741 - 11904: 0xEDC9,\n\t31742 - 11904: 0xC14E,\n\t31743 - 11904: 0xEDBE,\n\t31744 - 11904: 0xEDBD,\n\t31745 - 11904: 0xEDC7,\n\t31746 - 11904: 0xEDC4,\n\t31747 - 11904: 0xEDC6,\n\t31749 - 11904: 0xEDBA,\n\t31750 - 11904: 0xEDCA,\n\t31751 - 11904: 0xC14C,\n\t31753 - 11904: 0xEDC5,\n\t31754 - 11904: 0xEDCE,\n\t31755 - 11904: 0xEDC2,\n\t31756 - 11904: 0xC150,\n\t31757 - 11904: 0xC14D,\n\t31758 - 11904: 0xEDC0,\n\t31759 - 11904: 0xEDBB,\n\t31760 - 11904: 0xEDCD,\n\t31761 - 11904: 0xBF75,\n\t31762 - 11904: 0x9953,\n\t31765 - 11904: 0xFAB8,\n\t31769 - 11904: 0xF063,\n\t31771 - 11904: 0x9954,\n\t31772 - 11904: 0xF061,\n\t31773 - 11904: 0xF067,\n\t31774 - 11904: 0xC2B0,\n\t31775 - 11904: 0xF065,\n\t31776 - 11904: 0xF064,\n\t31777 - 11904: 0xC2B2,\n\t31778 - 11904: 0xF06A,\n\t31779 - 11904: 0xC2B1,\n\t31781 - 11904: 0xF06B,\n\t31782 - 11904: 0xF068,\n\t31783 - 11904: 0xC2AE,\n\t31784 - 11904: 0xF069,\n\t31785 - 11904: 0xF062,\n\t31786 - 11904: 0xC2AF,\n\t31787 - 11904: 0xC2AD,\n\t31788 - 11904: 0xF2AB,\n\t31789 - 11904: 0xF066,\n\t31792 - 11904: 0xF06C,\n\t31795 - 11904: 0xF2A8,\n\t31797 - 11904: 0x8E70,\n\t31799 - 11904: 0xC3B2,\n\t31800 - 11904: 0xC3B0,\n\t31801 - 11904: 0xF2AA,\n\t31803 - 11904: 0xF2AC,\n\t31804 - 11904: 0xF2A9,\n\t31805 - 11904: 0xC3B1,\n\t31806 - 11904: 0xC3AE,\n\t31807 - 11904: 0xC3AF,\n\t31808 - 11904: 0xC3B3,\n\t31810 - 11904: 0x9F61,\n\t31811 - 11904: 0xC478,\n\t31812 - 11904: 0x8E72,\n\t31813 - 11904: 0xF4AA,\n\t31815 - 11904: 0xF4A9,\n\t31816 - 11904: 0xF4A7,\n\t31817 - 11904: 0xF4A6,\n\t31818 - 11904: 0xF4A8,\n\t31820 - 11904: 0xC477,\n\t31821 - 11904: 0xC479,\n\t31824 - 11904: 0xC4F0,\n\t31825 - 11904: 0xA06B,\n\t31827 - 11904: 0xF5E5,\n\t31828 - 11904: 0xF5E4,\n\t31830 - 11904: 0x9F40,\n\t31831 - 11904: 0xF6FA,\n\t31833 - 11904: 0xF6FC,\n\t31834 - 11904: 0xF6FE,\n\t31835 - 11904: 0xF6FD,\n\t31836 - 11904: 0xF6FB,\n\t31837 - 11904: 0x94ED,\n\t31839 - 11904: 0xC5A3,\n\t31840 - 11904: 0xC5A2,\n\t31843 - 11904: 0xC5D3,\n\t31844 - 11904: 0xC5D2,\n\t31845 - 11904: 0xC5D4,\n\t31846 - 11904: 0xF7ED,\n\t31847 - 11904: 0xF7EC,\n\t31849 - 11904: 0xF8FB,\n\t31850 - 11904: 0xF8B8,\n\t31851 - 11904: 0xF8FC,\n\t31852 - 11904: 0xC658,\n\t31853 - 11904: 0x94EE,\n\t31854 - 11904: 0xC659,\n\t31855 - 11904: 0xF96D,\n\t31856 - 11904: 0x9FBD,\n\t31858 - 11904: 0xC67E,\n\t31859 - 11904: 0xA6CC,\n\t31860 - 11904: 0x8E7B,\n\t31861 - 11904: 0xCDA8,\n\t31864 - 11904: 0xD045,\n\t31865 - 11904: 0xD046,\n\t31866 - 11904: 0xD044,\n\t31867 - 11904: 0x9957,\n\t31868 - 11904: 0x94F7,\n\t31869 - 11904: 0xACF3,\n\t31870 - 11904: 0x9F5F,\n\t31871 - 11904: 0xD047,\n\t31872 - 11904: 0xD048,\n\t31873 - 11904: 0xD049,\n\t31875 - 11904: 0x8E73,\n\t31876 - 11904: 0xD349,\n\t31877 - 11904: 0xD34F,\n\t31878 - 11904: 0x9F62,\n\t31880 - 11904: 0xD34D,\n\t31881 - 11904: 0xAFBB,\n\t31882 - 11904: 0xD34B,\n\t31884 - 11904: 0xD34C,\n\t31885 - 11904: 0xD34E,\n\t31886 - 11904: 0x94F6,\n\t31889 - 11904: 0xD34A,\n\t31890 - 11904: 0xB2C9,\n\t31892 - 11904: 0xD6DE,\n\t31893 - 11904: 0xB2CB,\n\t31894 - 11904: 0xD6E0,\n\t31895 - 11904: 0xB2CA,\n\t31896 - 11904: 0xD6DF,\n\t31900 - 11904: 0x9958,\n\t31902 - 11904: 0xDAE8,\n\t31903 - 11904: 0xB5AF,\n\t31905 - 11904: 0xDAEA,\n\t31906 - 11904: 0xDAE7,\n\t31907 - 11904: 0xD6E1,\n\t31909 - 11904: 0xB5B0,\n\t31910 - 11904: 0x8E75,\n\t31911 - 11904: 0xF9DB,\n\t31912 - 11904: 0xDAE9,\n\t31916 - 11904: 0x9072,\n\t31918 - 11904: 0x94F8,\n\t31919 - 11904: 0xDF56,\n\t31921 - 11904: 0xB864,\n\t31922 - 11904: 0xDF54,\n\t31923 - 11904: 0xB865,\n\t31924 - 11904: 0xDF55,\n\t31925 - 11904: 0xB866,\n\t31928 - 11904: 0x995A,\n\t31929 - 11904: 0xBAE9,\n\t31930 - 11904: 0xE361,\n\t31931 - 11904: 0xE35E,\n\t31932 - 11904: 0xE360,\n\t31933 - 11904: 0xBAEA,\n\t31934 - 11904: 0xBAEB,\n\t31935 - 11904: 0xE35F,\n\t31938 - 11904: 0xA0B0,\n\t31939 - 11904: 0x8CB3,\n\t31941 - 11904: 0xE6DF,\n\t31943 - 11904: 0x8E79,\n\t31944 - 11904: 0xE6E0,\n\t31945 - 11904: 0x8E78,\n\t31946 - 11904: 0xBD6B,\n\t31947 - 11904: 0xE6E2,\n\t31948 - 11904: 0xE6E1,\n\t31949 - 11904: 0x94F3,\n\t31950 - 11904: 0xA261,\n\t31952 - 11904: 0xEACA,\n\t31953 - 11904: 0xEACB,\n\t31954 - 11904: 0xEAC7,\n\t31955 - 11904: 0x98AF,\n\t31956 - 11904: 0xEAC8,\n\t31957 - 11904: 0xBF7C,\n\t31958 - 11904: 0xBF7D,\n\t31959 - 11904: 0xEAC9,\n\t31961 - 11904: 0xC157,\n\t31962 - 11904: 0xA0B2,\n\t31964 - 11904: 0xC153,\n\t31965 - 11904: 0xC158,\n\t31966 - 11904: 0xC154,\n\t31967 - 11904: 0xC156,\n\t31968 - 11904: 0xC152,\n\t31970 - 11904: 0xC155,\n\t31974 - 11904: 0x8E7A,\n\t31975 - 11904: 0xC2B3,\n\t31976 - 11904: 0xEDCF,\n\t31978 - 11904: 0xF2AE,\n\t31980 - 11904: 0xF2AD,\n\t31981 - 11904: 0x995C,\n\t31982 - 11904: 0xF4AB,\n\t31983 - 11904: 0xC47A,\n\t31984 - 11904: 0xC47B,\n\t31985 - 11904: 0xF741,\n\t31986 - 11904: 0xF5E6,\n\t31987 - 11904: 0x8E7C,\n\t31988 - 11904: 0xF740,\n\t31989 - 11904: 0x8E7D,\n\t31990 - 11904: 0xF8FD,\n\t31991 - 11904: 0xF9A4,\n\t31992 - 11904: 0xA6CD,\n\t31993 - 11904: 0x8BD9,\n\t31995 - 11904: 0xA874,\n\t31996 - 11904: 0x89A2,\n\t31997 - 11904: 0xCDA9,\n\t31998 - 11904: 0xAAC8,\n\t32000 - 11904: 0xACF6,\n\t32001 - 11904: 0xD04C,\n\t32002 - 11904: 0xACF4,\n\t32003 - 11904: 0xD04A,\n\t32004 - 11904: 0xACF9,\n\t32005 - 11904: 0xACF5,\n\t32006 - 11904: 0xACFA,\n\t32007 - 11904: 0xACF8,\n\t32008 - 11904: 0xD04B,\n\t32009 - 11904: 0xACF7,\n\t32010 - 11904: 0xAFBF,\n\t32011 - 11904: 0xAFBE,\n\t32012 - 11904: 0xD35A,\n\t32013 - 11904: 0xAFC7,\n\t32014 - 11904: 0xD353,\n\t32015 - 11904: 0xD359,\n\t32016 - 11904: 0xAFC3,\n\t32017 - 11904: 0xD352,\n\t32018 - 11904: 0xD358,\n\t32019 - 11904: 0xD356,\n\t32020 - 11904: 0xAFC2,\n\t32021 - 11904: 0xAFC4,\n\t32022 - 11904: 0xD355,\n\t32023 - 11904: 0xAFBD,\n\t32024 - 11904: 0xD354,\n\t32025 - 11904: 0xAFC8,\n\t32026 - 11904: 0xAFC5,\n\t32027 - 11904: 0xAFC9,\n\t32028 - 11904: 0xAFC6,\n\t32029 - 11904: 0xD351,\n\t32030 - 11904: 0xD350,\n\t32031 - 11904: 0xD357,\n\t32032 - 11904: 0xAFC0,\n\t32033 - 11904: 0xAFBC,\n\t32034 - 11904: 0xAFC1,\n\t32037 - 11904: 0x9ED7,\n\t32040 - 11904: 0xD6F0,\n\t32041 - 11904: 0xD6E9,\n\t32043 - 11904: 0xB5B5,\n\t32044 - 11904: 0xD6E8,\n\t32046 - 11904: 0xB2CF,\n\t32047 - 11904: 0xB2D6,\n\t32048 - 11904: 0xB2D3,\n\t32049 - 11904: 0xB2D9,\n\t32050 - 11904: 0xB2D8,\n\t32051 - 11904: 0xB2D4,\n\t32053 - 11904: 0xD6E2,\n\t32054 - 11904: 0xD6E5,\n\t32056 - 11904: 0xD6E4,\n\t32057 - 11904: 0xB2D0,\n\t32058 - 11904: 0xD6E6,\n\t32059 - 11904: 0xD6EF,\n\t32060 - 11904: 0xB2D1,\n\t32061 - 11904: 0xD6E3,\n\t32062 - 11904: 0xD6EC,\n\t32063 - 11904: 0xD6ED,\n\t32064 - 11904: 0xB2D2,\n\t32065 - 11904: 0xD6EA,\n\t32066 - 11904: 0xB2D7,\n\t32067 - 11904: 0xB2CD,\n\t32068 - 11904: 0xB2D5,\n\t32069 - 11904: 0xD6E7,\n\t32070 - 11904: 0xB2CC,\n\t32071 - 11904: 0xD6EB,\n\t32074 - 11904: 0xD6EE,\n\t32077 - 11904: 0xA0B6,\n\t32078 - 11904: 0xDAFB,\n\t32079 - 11904: 0xDAF2,\n\t32080 - 11904: 0xB5B2,\n\t32081 - 11904: 0xDAF9,\n\t32082 - 11904: 0xDAF6,\n\t32083 - 11904: 0xDAEE,\n\t32084 - 11904: 0xDAF7,\n\t32085 - 11904: 0xB5B4,\n\t32086 - 11904: 0xDAEF,\n\t32088 - 11904: 0xDAEB,\n\t32090 - 11904: 0x9E42,\n\t32091 - 11904: 0xB86C,\n\t32092 - 11904: 0xDAF4,\n\t32093 - 11904: 0x8EA4,\n\t32094 - 11904: 0xB5B1,\n\t32095 - 11904: 0xDAFA,\n\t32097 - 11904: 0xB5B8,\n\t32098 - 11904: 0xB5BA,\n\t32099 - 11904: 0xDAED,\n\t32102 - 11904: 0xB5B9,\n\t32103 - 11904: 0xDAF0,\n\t32104 - 11904: 0xB5B3,\n\t32105 - 11904: 0xDAF8,\n\t32106 - 11904: 0xDAF1,\n\t32107 - 11904: 0xDAF5,\n\t32109 - 11904: 0xDAF3,\n\t32110 - 11904: 0xB5B6,\n\t32111 - 11904: 0xDAEC,\n\t32112 - 11904: 0xB5BB,\n\t32113 - 11904: 0xB2CE,\n\t32114 - 11904: 0xB5B7,\n\t32115 - 11904: 0xB5BC,\n\t32121 - 11904: 0xB868,\n\t32122 - 11904: 0xDF5D,\n\t32123 - 11904: 0xDF5F,\n\t32124 - 11904: 0xDF61,\n\t32125 - 11904: 0xDF65,\n\t32127 - 11904: 0xDF5B,\n\t32128 - 11904: 0xDF59,\n\t32129 - 11904: 0xB86A,\n\t32131 - 11904: 0xDF60,\n\t32132 - 11904: 0xDF64,\n\t32133 - 11904: 0xDF5C,\n\t32134 - 11904: 0xDF58,\n\t32136 - 11904: 0xDF57,\n\t32137 - 11904: 0x8EA7,\n\t32139 - 11904: 0x8C76,\n\t32140 - 11904: 0xDF62,\n\t32141 - 11904: 0xDF5A,\n\t32142 - 11904: 0xDF5E,\n\t32143 - 11904: 0xB86B,\n\t32145 - 11904: 0xB869,\n\t32146 - 11904: 0xDF66,\n\t32147 - 11904: 0xB867,\n\t32148 - 11904: 0xDF63,\n\t32149 - 11904: 0x8767,\n\t32150 - 11904: 0xE372,\n\t32151 - 11904: 0x9542,\n\t32156 - 11904: 0xBAEE,\n\t32157 - 11904: 0xE36A,\n\t32158 - 11904: 0xBD78,\n\t32159 - 11904: 0xE374,\n\t32160 - 11904: 0xBAF1,\n\t32161 - 11904: 0xE378,\n\t32162 - 11904: 0xBAF7,\n\t32163 - 11904: 0xE365,\n\t32164 - 11904: 0x987D,\n\t32166 - 11904: 0xE375,\n\t32167 - 11904: 0xE362,\n\t32168 - 11904: 0x9755,\n\t32169 - 11904: 0xE377,\n\t32170 - 11904: 0xE366,\n\t32171 - 11904: 0x8EA8,\n\t32172 - 11904: 0xBAFE,\n\t32173 - 11904: 0xBAFB,\n\t32174 - 11904: 0xE376,\n\t32175 - 11904: 0xE370,\n\t32176 - 11904: 0xBAED,\n\t32177 - 11904: 0xBAF5,\n\t32178 - 11904: 0xBAF4,\n\t32179 - 11904: 0x8EAA,\n\t32180 - 11904: 0xBAF3,\n\t32181 - 11904: 0xBAF9,\n\t32183 - 11904: 0xE363,\n\t32184 - 11904: 0xBAFA,\n\t32185 - 11904: 0xE371,\n\t32186 - 11904: 0xBAF6,\n\t32187 - 11904: 0xBAEC,\n\t32188 - 11904: 0xE373,\n\t32189 - 11904: 0xBAEF,\n\t32190 - 11904: 0xBAF0,\n\t32191 - 11904: 0xBAF8,\n\t32192 - 11904: 0xE368,\n\t32193 - 11904: 0xE367,\n\t32194 - 11904: 0xE364,\n\t32196 - 11904: 0xE36C,\n\t32197 - 11904: 0xE369,\n\t32198 - 11904: 0xE36D,\n\t32199 - 11904: 0xBAFD,\n\t32201 - 11904: 0xE379,\n\t32202 - 11904: 0xBAF2,\n\t32203 - 11904: 0xE36E,\n\t32204 - 11904: 0xE36F,\n\t32205 - 11904: 0x89A3,\n\t32206 - 11904: 0xE36B,\n\t32207 - 11904: 0x9960,\n\t32208 - 11904: 0x9962,\n\t32210 - 11904: 0xBAFC,\n\t32211 - 11904: 0x94FC,\n\t32212 - 11904: 0x9961,\n\t32215 - 11904: 0xE6E7,\n\t32216 - 11904: 0xBD70,\n\t32217 - 11904: 0xBD79,\n\t32218 - 11904: 0xBD75,\n\t32219 - 11904: 0xE6E4,\n\t32220 - 11904: 0x94FA,\n\t32221 - 11904: 0xBD72,\n\t32222 - 11904: 0xBD76,\n\t32223 - 11904: 0xE6F0,\n\t32224 - 11904: 0xBD6C,\n\t32225 - 11904: 0xE6E8,\n\t32227 - 11904: 0xBD74,\n\t32228 - 11904: 0x8EAE,\n\t32229 - 11904: 0x8EB2,\n\t32230 - 11904: 0xE6EB,\n\t32231 - 11904: 0xE6E6,\n\t32232 - 11904: 0xBD73,\n\t32233 - 11904: 0xBD77,\n\t32234 - 11904: 0xE6E5,\n\t32236 - 11904: 0xBD71,\n\t32238 - 11904: 0xE6EF,\n\t32239 - 11904: 0xBD6E,\n\t32240 - 11904: 0xE6EE,\n\t32241 - 11904: 0xE6ED,\n\t32242 - 11904: 0xBD7A,\n\t32243 - 11904: 0xE572,\n\t32244 - 11904: 0xBD6D,\n\t32245 - 11904: 0x8EB0,\n\t32246 - 11904: 0xE6EC,\n\t32247 - 11904: 0xE6E3,\n\t32249 - 11904: 0xBD7B,\n\t32250 - 11904: 0xE6EA,\n\t32251 - 11904: 0xBD6F,\n\t32253 - 11904: 0x9963,\n\t32254 - 11904: 0x97AA,\n\t32259 - 11904: 0xE6E9,\n\t32263 - 11904: 0x94FB,\n\t32264 - 11904: 0xBFA2,\n\t32265 - 11904: 0xBFA7,\n\t32266 - 11904: 0xBF7E,\n\t32267 - 11904: 0xEAD8,\n\t32268 - 11904: 0xEACF,\n\t32269 - 11904: 0xEADB,\n\t32270 - 11904: 0xEAD3,\n\t32271 - 11904: 0xEAD9,\n\t32272 - 11904: 0xBFA8,\n\t32273 - 11904: 0xBFA1,\n\t32274 - 11904: 0xEACC,\n\t32275 - 11904: 0xEAD2,\n\t32276 - 11904: 0xEADC,\n\t32277 - 11904: 0xEAD5,\n\t32278 - 11904: 0xEADA,\n\t32279 - 11904: 0xEACE,\n\t32282 - 11904: 0xEAD6,\n\t32283 - 11904: 0xBFA3,\n\t32284 - 11904: 0xEAD4,\n\t32285 - 11904: 0xBFA6,\n\t32286 - 11904: 0xBFA5,\n\t32287 - 11904: 0xEAD0,\n\t32288 - 11904: 0xEAD1,\n\t32289 - 11904: 0xEACD,\n\t32290 - 11904: 0xEAD7,\n\t32291 - 11904: 0xBFA4,\n\t32292 - 11904: 0xEADE,\n\t32293 - 11904: 0xEADD,\n\t32295 - 11904: 0x8EBB,\n\t32297 - 11904: 0xEDDA,\n\t32298 - 11904: 0xEDD6,\n\t32299 - 11904: 0xC15F,\n\t32301 - 11904: 0xEDD0,\n\t32302 - 11904: 0xC159,\n\t32303 - 11904: 0xC169,\n\t32304 - 11904: 0xEDDC,\n\t32305 - 11904: 0xC161,\n\t32306 - 11904: 0xC15D,\n\t32307 - 11904: 0xEDD3,\n\t32308 - 11904: 0xC164,\n\t32309 - 11904: 0xC167,\n\t32310 - 11904: 0xEDDE,\n\t32311 - 11904: 0xC15C,\n\t32312 - 11904: 0xEDD5,\n\t32313 - 11904: 0xC165,\n\t32314 - 11904: 0xEDE0,\n\t32315 - 11904: 0xEDDD,\n\t32316 - 11904: 0xEDD1,\n\t32317 - 11904: 0xC160,\n\t32318 - 11904: 0xC15A,\n\t32319 - 11904: 0xC168,\n\t32320 - 11904: 0xEDD8,\n\t32321 - 11904: 0xC163,\n\t32322 - 11904: 0xEDD2,\n\t32323 - 11904: 0xC15E,\n\t32324 - 11904: 0xEDDF,\n\t32325 - 11904: 0xC162,\n\t32326 - 11904: 0xC15B,\n\t32327 - 11904: 0xEDD9,\n\t32328 - 11904: 0xC166,\n\t32329 - 11904: 0xEDD7,\n\t32332 - 11904: 0xEDDB,\n\t32336 - 11904: 0xF06E,\n\t32337 - 11904: 0xF074,\n\t32338 - 11904: 0xC2B9,\n\t32339 - 11904: 0xF077,\n\t32340 - 11904: 0xC2B4,\n\t32341 - 11904: 0xC2B5,\n\t32342 - 11904: 0xF06F,\n\t32343 - 11904: 0xF076,\n\t32344 - 11904: 0xF071,\n\t32345 - 11904: 0xC2BA,\n\t32346 - 11904: 0xC2B7,\n\t32347 - 11904: 0x8CDC,\n\t32348 - 11904: 0xF06D,\n\t32350 - 11904: 0xC2B6,\n\t32351 - 11904: 0xF073,\n\t32352 - 11904: 0xF075,\n\t32353 - 11904: 0xC2B8,\n\t32354 - 11904: 0xF072,\n\t32355 - 11904: 0xF070,\n\t32357 - 11904: 0x9876,\n\t32359 - 11904: 0x8EA1,\n\t32360 - 11904: 0xF2B8,\n\t32361 - 11904: 0xC3B7,\n\t32362 - 11904: 0xC3B8,\n\t32363 - 11904: 0xC3B4,\n\t32364 - 11904: 0x8CB4,\n\t32365 - 11904: 0xC3B5,\n\t32366 - 11904: 0x8EB7,\n\t32367 - 11904: 0xF2B4,\n\t32368 - 11904: 0xF2B2,\n\t32370 - 11904: 0xF2B6,\n\t32371 - 11904: 0xC3BA,\n\t32372 - 11904: 0xF2B7,\n\t32373 - 11904: 0xF2B0,\n\t32374 - 11904: 0xF2AF,\n\t32375 - 11904: 0xF2B3,\n\t32376 - 11904: 0xF2B1,\n\t32377 - 11904: 0xC3B6,\n\t32378 - 11904: 0xF2B5,\n\t32379 - 11904: 0xF4AC,\n\t32380 - 11904: 0xC47E,\n\t32381 - 11904: 0xC47D,\n\t32382 - 11904: 0xF4AD,\n\t32383 - 11904: 0x9DA6,\n\t32384 - 11904: 0xF4AF,\n\t32385 - 11904: 0xF4AE,\n\t32386 - 11904: 0xC4A1,\n\t32390 - 11904: 0xF5EB,\n\t32391 - 11904: 0xF5E8,\n\t32392 - 11904: 0xF5E9,\n\t32394 - 11904: 0xF5E7,\n\t32395 - 11904: 0xF5EA,\n\t32396 - 11904: 0xC4F2,\n\t32397 - 11904: 0xF5EC,\n\t32398 - 11904: 0x9EB0,\n\t32399 - 11904: 0xC4F1,\n\t32401 - 11904: 0xF742,\n\t32402 - 11904: 0x8EB8,\n\t32403 - 11904: 0xC5D5,\n\t32404 - 11904: 0xC5D7,\n\t32405 - 11904: 0xF7EE,\n\t32406 - 11904: 0xC5D6,\n\t32407 - 11904: 0xF8B9,\n\t32408 - 11904: 0xF940,\n\t32409 - 11904: 0xF942,\n\t32410 - 11904: 0xF8FE,\n\t32411 - 11904: 0xF941,\n\t32412 - 11904: 0xC66C,\n\t32415 - 11904: 0x9D70,\n\t32420 - 11904: 0x896E,\n\t32428 - 11904: 0x896F,\n\t32442 - 11904: 0x8970,\n\t32455 - 11904: 0x8971,\n\t32463 - 11904: 0x8972,\n\t32479 - 11904: 0x8973,\n\t32518 - 11904: 0x8974,\n\t32566 - 11904: 0xA6CE,\n\t32567 - 11904: 0x8975,\n\t32568 - 11904: 0xACFB,\n\t32569 - 11904: 0xD26F,\n\t32570 - 11904: 0xAFCA,\n\t32573 - 11904: 0xB2DA,\n\t32574 - 11904: 0xDAFC,\n\t32575 - 11904: 0xDAFD,\n\t32576 - 11904: 0x8EBC,\n\t32577 - 11904: 0x8EBD,\n\t32579 - 11904: 0xEADF,\n\t32580 - 11904: 0xC16A,\n\t32581 - 11904: 0xEDE1,\n\t32583 - 11904: 0x8EBE,\n\t32584 - 11904: 0xC2BB,\n\t32585 - 11904: 0x9DD1,\n\t32586 - 11904: 0xF2BA,\n\t32587 - 11904: 0xF2B9,\n\t32588 - 11904: 0xC4A2,\n\t32589 - 11904: 0xF5ED,\n\t32590 - 11904: 0x94FD,\n\t32591 - 11904: 0xF743,\n\t32592 - 11904: 0xC5F8,\n\t32593 - 11904: 0xCA49,\n\t32594 - 11904: 0x8BD7,\n\t32595 - 11904: 0x8BDA,\n\t32596 - 11904: 0xAAC9,\n\t32597 - 11904: 0xA875,\n\t32600 - 11904: 0xD04D,\n\t32603 - 11904: 0xD360,\n\t32604 - 11904: 0xD35B,\n\t32605 - 11904: 0xD35F,\n\t32606 - 11904: 0xD35D,\n\t32607 - 11904: 0xAFCB,\n\t32608 - 11904: 0xD35E,\n\t32609 - 11904: 0xD35C,\n\t32611 - 11904: 0xD6F1,\n\t32613 - 11904: 0xDAFE,\n\t32614 - 11904: 0xDB40,\n\t32615 - 11904: 0xDF69,\n\t32616 - 11904: 0xDF6A,\n\t32617 - 11904: 0xB86E,\n\t32618 - 11904: 0xB86F,\n\t32619 - 11904: 0xDF68,\n\t32620 - 11904: 0xDF6B,\n\t32621 - 11904: 0xDF67,\n\t32622 - 11904: 0xB86D,\n\t32624 - 11904: 0xBB40,\n\t32625 - 11904: 0xA0E2,\n\t32626 - 11904: 0xB870,\n\t32627 - 11904: 0xE37A,\n\t32629 - 11904: 0xBD7C,\n\t32630 - 11904: 0xE6F1,\n\t32631 - 11904: 0xBD7D,\n\t32632 - 11904: 0x9FE9,\n\t32633 - 11904: 0xBFA9,\n\t32634 - 11904: 0xEAE2,\n\t32635 - 11904: 0xEAE0,\n\t32636 - 11904: 0xEAE1,\n\t32637 - 11904: 0xEDE4,\n\t32638 - 11904: 0xEDE3,\n\t32639 - 11904: 0xEDE2,\n\t32643 - 11904: 0xF2BB,\n\t32645 - 11904: 0xC3B9,\n\t32646 - 11904: 0xF2BC,\n\t32647 - 11904: 0xF744,\n\t32648 - 11904: 0xC5F9,\n\t32649 - 11904: 0xF8BA,\n\t32650 - 11904: 0xA6CF,\n\t32651 - 11904: 0xAACB,\n\t32652 - 11904: 0xAACA,\n\t32653 - 11904: 0xD04F,\n\t32654 - 11904: 0xACFC,\n\t32655 - 11904: 0xFDA8,\n\t32657 - 11904: 0xD04E,\n\t32658 - 11904: 0xD362,\n\t32659 - 11904: 0x8AE7,\n\t32660 - 11904: 0xAFCC,\n\t32661 - 11904: 0xD6F2,\n\t32662 - 11904: 0xD361,\n\t32663 - 11904: 0x8EC2,\n\t32666 - 11904: 0xB2DC,\n\t32667 - 11904: 0xD6F5,\n\t32668 - 11904: 0xD6F3,\n\t32669 - 11904: 0xD6F4,\n\t32670 - 11904: 0xB2DB,\n\t32672 - 11904: 0xDB42,\n\t32673 - 11904: 0xDB43,\n\t32674 - 11904: 0xDB41,\n\t32675 - 11904: 0x8EC4,\n\t32676 - 11904: 0xB873,\n\t32677 - 11904: 0xDF6D,\n\t32678 - 11904: 0xDF6C,\n\t32679 - 11904: 0xDF6E,\n\t32680 - 11904: 0xB872,\n\t32681 - 11904: 0xB871,\n\t32684 - 11904: 0xE6F2,\n\t32685 - 11904: 0xE6F4,\n\t32686 - 11904: 0x9964,\n\t32687 - 11904: 0xBD7E,\n\t32688 - 11904: 0xE6F3,\n\t32689 - 11904: 0xEAE3,\n\t32690 - 11904: 0xBFAA,\n\t32691 - 11904: 0xF079,\n\t32692 - 11904: 0x9965,\n\t32693 - 11904: 0xF078,\n\t32694 - 11904: 0xC3BB,\n\t32695 - 11904: 0xF2BD,\n\t32696 - 11904: 0xC3BD,\n\t32697 - 11904: 0xC3BC,\n\t32698 - 11904: 0xF4B0,\n\t32699 - 11904: 0xF5EE,\n\t32700 - 11904: 0xC4F3,\n\t32701 - 11904: 0xA6D0,\n\t32702 - 11904: 0xD050,\n\t32703 - 11904: 0xACFD,\n\t32704 - 11904: 0xD365,\n\t32705 - 11904: 0xAFCE,\n\t32706 - 11904: 0xD364,\n\t32707 - 11904: 0xD363,\n\t32709 - 11904: 0xAFCD,\n\t32711 - 11904: 0xD6FB,\n\t32713 - 11904: 0xD6FD,\n\t32714 - 11904: 0xD6F6,\n\t32715 - 11904: 0xD6F7,\n\t32716 - 11904: 0xB2DD,\n\t32717 - 11904: 0xD6F8,\n\t32718 - 11904: 0xB2DE,\n\t32719 - 11904: 0xD6FC,\n\t32720 - 11904: 0xD6F9,\n\t32721 - 11904: 0xD6FA,\n\t32722 - 11904: 0xB2DF,\n\t32724 - 11904: 0xB5BE,\n\t32725 - 11904: 0xB5BF,\n\t32727 - 11904: 0xDB44,\n\t32731 - 11904: 0xDF6F,\n\t32732 - 11904: 0xDF70,\n\t32733 - 11904: 0x954E,\n\t32734 - 11904: 0xE37E,\n\t32735 - 11904: 0xBB43,\n\t32736 - 11904: 0xBB41,\n\t32737 - 11904: 0xBB42,\n\t32738 - 11904: 0xE37B,\n\t32739 - 11904: 0xE37C,\n\t32741 - 11904: 0xE37D,\n\t32742 - 11904: 0xE6F9,\n\t32743 - 11904: 0x98B3,\n\t32744 - 11904: 0xE6FA,\n\t32745 - 11904: 0xBDA1,\n\t32746 - 11904: 0xE6F7,\n\t32747 - 11904: 0xE6F6,\n\t32748 - 11904: 0xE6F8,\n\t32749 - 11904: 0xE6F5,\n\t32750 - 11904: 0xBFAD,\n\t32751 - 11904: 0xEAE4,\n\t32752 - 11904: 0xBFAB,\n\t32753 - 11904: 0xBFAC,\n\t32754 - 11904: 0xEDE6,\n\t32755 - 11904: 0xC16B,\n\t32756 - 11904: 0xEDE5,\n\t32757 - 11904: 0xEFA8,\n\t32759 - 11904: 0xF07A,\n\t32760 - 11904: 0xF07B,\n\t32761 - 11904: 0xC2BC,\n\t32762 - 11904: 0x8ECB,\n\t32763 - 11904: 0xC2BD,\n\t32764 - 11904: 0xC16C,\n\t32765 - 11904: 0xF2BE,\n\t32766 - 11904: 0xF2BF,\n\t32767 - 11904: 0xF4B1,\n\t32768 - 11904: 0xC4A3,\n\t32769 - 11904: 0xA6D1,\n\t32770 - 11904: 0x8BDF,\n\t32771 - 11904: 0xA6D2,\n\t32772 - 11904: 0xACFE,\n\t32773 - 11904: 0xAACC,\n\t32774 - 11904: 0xAFCF,\n\t32775 - 11904: 0xD051,\n\t32776 - 11904: 0x8ECE,\n\t32779 - 11904: 0xB5C0,\n\t32780 - 11904: 0xA6D3,\n\t32781 - 11904: 0xAD41,\n\t32782 - 11904: 0xD052,\n\t32783 - 11904: 0xD053,\n\t32784 - 11904: 0xAD40,\n\t32785 - 11904: 0xAD42,\n\t32786 - 11904: 0xA6D4,\n\t32788 - 11904: 0xD054,\n\t32789 - 11904: 0xAFD1,\n\t32790 - 11904: 0xD366,\n\t32791 - 11904: 0xAFD3,\n\t32792 - 11904: 0xAFD0,\n\t32793 - 11904: 0xAFD2,\n\t32795 - 11904: 0xD741,\n\t32796 - 11904: 0xB2E0,\n\t32797 - 11904: 0x8ECF,\n\t32798 - 11904: 0xD740,\n\t32799 - 11904: 0xD6FE,\n\t32800 - 11904: 0x9968,\n\t32801 - 11904: 0xDF71,\n\t32804 - 11904: 0xE3A1,\n\t32805 - 11904: 0x9969,\n\t32806 - 11904: 0xBDA2,\n\t32808 - 11904: 0xBFAE,\n\t32809 - 11904: 0xEAE6,\n\t32810 - 11904: 0xEAE5,\n\t32812 - 11904: 0xEDE7,\n\t32814 - 11904: 0x996B,\n\t32815 - 11904: 0x8ED1,\n\t32816 - 11904: 0xF5EF,\n\t32817 - 11904: 0x996C,\n\t32819 - 11904: 0xA6D5,\n\t32820 - 11904: 0xCB73,\n\t32821 - 11904: 0xCDAA,\n\t32822 - 11904: 0xAD43,\n\t32823 - 11904: 0xD055,\n\t32825 - 11904: 0xD368,\n\t32827 - 11904: 0x8ED4,\n\t32828 - 11904: 0x8ED5,\n\t32829 - 11904: 0xAFD4,\n\t32830 - 11904: 0xD367,\n\t32831 - 11904: 0xAFD5,\n\t32835 - 11904: 0xD743,\n\t32838 - 11904: 0xB2E2,\n\t32839 - 11904: 0xD742,\n\t32840 - 11904: 0xD744,\n\t32842 - 11904: 0xB2E1,\n\t32847 - 11904: 0xDB46,\n\t32848 - 11904: 0xDB47,\n\t32849 - 11904: 0xDB45,\n\t32850 - 11904: 0xB5C1,\n\t32852 - 11904: 0x996D,\n\t32854 - 11904: 0xB874,\n\t32856 - 11904: 0xB875,\n\t32858 - 11904: 0xBB45,\n\t32859 - 11904: 0xA0BE,\n\t32860 - 11904: 0xE3A3,\n\t32861 - 11904: 0xE3A2,\n\t32862 - 11904: 0xBB44,\n\t32865 - 11904: 0x8ED6,\n\t32866 - 11904: 0xA0BC,\n\t32867 - 11904: 0xA0B5,\n\t32868 - 11904: 0xE6FB,\n\t32870 - 11904: 0xA0B4,\n\t32871 - 11904: 0xE6FC,\n\t32876 - 11904: 0xEAE7,\n\t32879 - 11904: 0xC170,\n\t32880 - 11904: 0xC16F,\n\t32881 - 11904: 0xC16D,\n\t32882 - 11904: 0xC16E,\n\t32883 - 11904: 0xC171,\n\t32885 - 11904: 0xF07C,\n\t32886 - 11904: 0xC2BF,\n\t32887 - 11904: 0xC2BE,\n\t32888 - 11904: 0xF2C0,\n\t32889 - 11904: 0xF4B2,\n\t32893 - 11904: 0xC5A5,\n\t32894 - 11904: 0xC5A4,\n\t32895 - 11904: 0xA6D6,\n\t32896 - 11904: 0x8BE0,\n\t32898 - 11904: 0xD1FB,\n\t32900 - 11904: 0xB877,\n\t32901 - 11904: 0xB5C2,\n\t32902 - 11904: 0xB876,\n\t32903 - 11904: 0xBB46,\n\t32905 - 11904: 0xA6D7,\n\t32906 - 11904: 0xC9A9,\n\t32907 - 11904: 0xA6D8,\n\t32908 - 11904: 0xA6D9,\n\t32911 - 11904: 0xCDAB,\n\t32912 - 11904: 0xCB76,\n\t32914 - 11904: 0xCB77,\n\t32915 - 11904: 0xA877,\n\t32917 - 11904: 0xCB74,\n\t32918 - 11904: 0xA876,\n\t32920 - 11904: 0xA879,\n\t32921 - 11904: 0xCB75,\n\t32922 - 11904: 0xA87B,\n\t32923 - 11904: 0xA87A,\n\t32924 - 11904: 0xCB78,\n\t32925 - 11904: 0xA878,\n\t32927 - 11904: 0x89B5,\n\t32929 - 11904: 0xAAD1,\n\t32930 - 11904: 0xAACF,\n\t32931 - 11904: 0xCDAD,\n\t32933 - 11904: 0xAACE,\n\t32935 - 11904: 0x8EDD,\n\t32937 - 11904: 0xAAD3,\n\t32938 - 11904: 0xAAD5,\n\t32939 - 11904: 0xAAD2,\n\t32941 - 11904: 0xCDB0,\n\t32942 - 11904: 0xCDAC,\n\t32943 - 11904: 0xAAD6,\n\t32945 - 11904: 0xAAD0,\n\t32946 - 11904: 0xA87C,\n\t32948 - 11904: 0xAAD4,\n\t32949 - 11904: 0xCDAF,\n\t32950 - 11904: 0x9E5D,\n\t32951 - 11904: 0x9971,\n\t32952 - 11904: 0xCDAE,\n\t32954 - 11904: 0xAACD,\n\t32956 - 11904: 0x89AE,\n\t32957 - 11904: 0x9DE8,\n\t32962 - 11904: 0xD05B,\n\t32963 - 11904: 0xAD47,\n\t32964 - 11904: 0xAD48,\n\t32965 - 11904: 0xD05D,\n\t32966 - 11904: 0x9565,\n\t32967 - 11904: 0xD057,\n\t32968 - 11904: 0xD05A,\n\t32969 - 11904: 0xD063,\n\t32970 - 11904: 0xD061,\n\t32972 - 11904: 0xAD49,\n\t32973 - 11904: 0xD067,\n\t32974 - 11904: 0xAD4C,\n\t32975 - 11904: 0xD064,\n\t32976 - 11904: 0xD05C,\n\t32977 - 11904: 0xD059,\n\t32980 - 11904: 0xDB49,\n\t32981 - 11904: 0xD062,\n\t32982 - 11904: 0xAD44,\n\t32983 - 11904: 0xD065,\n\t32984 - 11904: 0xD056,\n\t32985 - 11904: 0xD05F,\n\t32986 - 11904: 0xAD46,\n\t32987 - 11904: 0xAD4B,\n\t32988 - 11904: 0xD060,\n\t32989 - 11904: 0xAD4F,\n\t32990 - 11904: 0xAD4D,\n\t32992 - 11904: 0xD058,\n\t32993 - 11904: 0xAD4A,\n\t32995 - 11904: 0xD05E,\n\t32996 - 11904: 0xAD4E,\n\t32997 - 11904: 0xAD45,\n\t32998 - 11904: 0xD066,\n\t33001 - 11904: 0x9972,\n\t33004 - 11904: 0x8B5C,\n\t33005 - 11904: 0xAFDA,\n\t33007 - 11904: 0xAFE3,\n\t33008 - 11904: 0xAFD8,\n\t33009 - 11904: 0xAFD6,\n\t33010 - 11904: 0xD36A,\n\t33011 - 11904: 0xAFDE,\n\t33012 - 11904: 0xAFDB,\n\t33013 - 11904: 0xD36C,\n\t33014 - 11904: 0x89B1,\n\t33016 - 11904: 0xAFDD,\n\t33017 - 11904: 0xD36B,\n\t33018 - 11904: 0xD369,\n\t33019 - 11904: 0xD36E,\n\t33020 - 11904: 0xAFE2,\n\t33021 - 11904: 0xAFE0,\n\t33022 - 11904: 0xDB48,\n\t33024 - 11904: 0xD36F,\n\t33025 - 11904: 0xD36D,\n\t33026 - 11904: 0xAFD7,\n\t33027 - 11904: 0xA0C0,\n\t33029 - 11904: 0xAFD9,\n\t33030 - 11904: 0xAFDC,\n\t33031 - 11904: 0x8EDF,\n\t33032 - 11904: 0xAFDF,\n\t33033 - 11904: 0x9566,\n\t33034 - 11904: 0xAFE1,\n\t33036 - 11904: 0x9974,\n\t33038 - 11904: 0x9976,\n\t33042 - 11904: 0x9977,\n\t33044 - 11904: 0x9979,\n\t33045 - 11904: 0xD74E,\n\t33046 - 11904: 0xB2E4,\n\t33047 - 11904: 0x9DDA,\n\t33048 - 11904: 0xD745,\n\t33049 - 11904: 0xD747,\n\t33050 - 11904: 0x8EE0,\n\t33051 - 11904: 0xD748,\n\t33053 - 11904: 0xD750,\n\t33054 - 11904: 0xD74C,\n\t33055 - 11904: 0xD74A,\n\t33057 - 11904: 0xD74D,\n\t33058 - 11904: 0xD751,\n\t33059 - 11904: 0xB2E5,\n\t33060 - 11904: 0xB2E9,\n\t33061 - 11904: 0xD746,\n\t33063 - 11904: 0xD74F,\n\t33065 - 11904: 0xB2E7,\n\t33066 - 11904: 0x935C,\n\t33067 - 11904: 0xB2E6,\n\t33068 - 11904: 0xD74B,\n\t33069 - 11904: 0xD749,\n\t33071 - 11904: 0xB2E3,\n\t33072 - 11904: 0xB2E8,\n\t33074 - 11904: 0x9DE6,\n\t33076 - 11904: 0x8B5F,\n\t33079 - 11904: 0x9563,\n\t33081 - 11904: 0xB5C8,\n\t33082 - 11904: 0xDB51,\n\t33085 - 11904: 0xDB4F,\n\t33086 - 11904: 0xB5CA,\n\t33090 - 11904: 0x9567,\n\t33091 - 11904: 0xDB4A,\n\t33092 - 11904: 0xDFA1,\n\t33094 - 11904: 0xB5C9,\n\t33095 - 11904: 0xDB4E,\n\t33096 - 11904: 0x9DE3,\n\t33098 - 11904: 0xDB4B,\n\t33099 - 11904: 0xB5C5,\n\t33100 - 11904: 0xB5CB,\n\t33101 - 11904: 0xDB50,\n\t33102 - 11904: 0xB5C7,\n\t33103 - 11904: 0xDB4D,\n\t33104 - 11904: 0xBB47,\n\t33105 - 11904: 0xB5C6,\n\t33106 - 11904: 0xDB4C,\n\t33107 - 11904: 0xB5CC,\n\t33108 - 11904: 0xB5C4,\n\t33109 - 11904: 0xB5C3,\n\t33110 - 11904: 0x997C,\n\t33113 - 11904: 0x997D,\n\t33114 - 11904: 0x997E,\n\t33115 - 11904: 0xDF77,\n\t33116 - 11904: 0xDF75,\n\t33118 - 11904: 0xDF7B,\n\t33120 - 11904: 0xDF73,\n\t33121 - 11904: 0xDFA2,\n\t33122 - 11904: 0xDF78,\n\t33124 - 11904: 0xDF72,\n\t33125 - 11904: 0xB87B,\n\t33126 - 11904: 0xB8A3,\n\t33127 - 11904: 0xDF7D,\n\t33129 - 11904: 0xDF76,\n\t33131 - 11904: 0xB87E,\n\t33132 - 11904: 0x8CFB,\n\t33133 - 11904: 0x8B5B,\n\t33134 - 11904: 0xB87C,\n\t33135 - 11904: 0xDF7E,\n\t33136 - 11904: 0xB879,\n\t33137 - 11904: 0xB878,\n\t33138 - 11904: 0xDF79,\n\t33139 - 11904: 0xB87D,\n\t33140 - 11904: 0xB5CD,\n\t33142 - 11904: 0xDF7C,\n\t33143 - 11904: 0xDF74,\n\t33144 - 11904: 0xB87A,\n\t33145 - 11904: 0xB8A1,\n\t33146 - 11904: 0xB8A2,\n\t33148 - 11904: 0x99A3,\n\t33151 - 11904: 0xBB4C,\n\t33152 - 11904: 0xBB48,\n\t33154 - 11904: 0xBB4D,\n\t33155 - 11904: 0xE3A6,\n\t33156 - 11904: 0x99A4,\n\t33158 - 11904: 0xE3A5,\n\t33159 - 11904: 0xE3A7,\n\t33160 - 11904: 0xBB4A,\n\t33161 - 11904: 0xE3A4,\n\t33162 - 11904: 0xBB4B,\n\t33163 - 11904: 0xE3AA,\n\t33164 - 11904: 0xE3A9,\n\t33165 - 11904: 0xE3A8,\n\t33167 - 11904: 0xBB49,\n\t33171 - 11904: 0x99A6,\n\t33173 - 11904: 0xE741,\n\t33175 - 11904: 0xE744,\n\t33176 - 11904: 0xBDA8,\n\t33177 - 11904: 0xE743,\n\t33178 - 11904: 0xBDA7,\n\t33179 - 11904: 0xBDA3,\n\t33180 - 11904: 0xBDA4,\n\t33181 - 11904: 0xBDA5,\n\t33182 - 11904: 0xE740,\n\t33183 - 11904: 0xE6FE,\n\t33184 - 11904: 0xBDA6,\n\t33186 - 11904: 0xE742,\n\t33187 - 11904: 0xE6FD,\n\t33189 - 11904: 0x99A8,\n\t33190 - 11904: 0xEAE9,\n\t33191 - 11904: 0xEAF3,\n\t33192 - 11904: 0xBFB1,\n\t33193 - 11904: 0xBFB0,\n\t33194 - 11904: 0x8ABE,\n\t33195 - 11904: 0xEAED,\n\t33196 - 11904: 0xEAEF,\n\t33198 - 11904: 0xEAEA,\n\t33200 - 11904: 0xEAEE,\n\t33201 - 11904: 0xEAE8,\n\t33202 - 11904: 0xEAF1,\n\t33203 - 11904: 0xBFAF,\n\t33204 - 11904: 0xEAF0,\n\t33205 - 11904: 0xEAEC,\n\t33206 - 11904: 0x9E61,\n\t33207 - 11904: 0xEAF2,\n\t33209 - 11904: 0xEAEB,\n\t33210 - 11904: 0xC174,\n\t33211 - 11904: 0xEDE8,\n\t33212 - 11904: 0xEDEE,\n\t33213 - 11904: 0xC178,\n\t33214 - 11904: 0xC17A,\n\t33215 - 11904: 0xC177,\n\t33216 - 11904: 0xC176,\n\t33217 - 11904: 0x99AA,\n\t33218 - 11904: 0xC175,\n\t33219 - 11904: 0xC173,\n\t33220 - 11904: 0xEDE9,\n\t33221 - 11904: 0xEDEC,\n\t33222 - 11904: 0xC172,\n\t33223 - 11904: 0xEDED,\n\t33224 - 11904: 0xA0C8,\n\t33225 - 11904: 0xC179,\n\t33226 - 11904: 0xEDEB,\n\t33228 - 11904: 0xEDEA,\n\t33229 - 11904: 0xC2C0,\n\t33231 - 11904: 0xC2C1,\n\t33232 - 11904: 0xF0A1,\n\t33233 - 11904: 0xF07D,\n\t33234 - 11904: 0xF07E,\n\t33237 - 11904: 0xF2C2,\n\t33239 - 11904: 0xF2C1,\n\t33240 - 11904: 0xC3BE,\n\t33241 - 11904: 0xF4B4,\n\t33242 - 11904: 0xC4A4,\n\t33243 - 11904: 0xF4B3,\n\t33245 - 11904: 0xF5F0,\n\t33246 - 11904: 0xF745,\n\t33247 - 11904: 0xC5A6,\n\t33248 - 11904: 0xF943,\n\t33249 - 11904: 0xF944,\n\t33250 - 11904: 0xC5D8,\n\t33251 - 11904: 0xA6DA,\n\t33252 - 11904: 0x99AB,\n\t33253 - 11904: 0xAAD7,\n\t33254 - 11904: 0xDB52,\n\t33255 - 11904: 0xBB4E,\n\t33256 - 11904: 0xC17B,\n\t33257 - 11904: 0xEDEF,\n\t33258 - 11904: 0xA6DB,\n\t33260 - 11904: 0xAFE5,\n\t33261 - 11904: 0xAFE4,\n\t33262 - 11904: 0xDB53,\n\t33263 - 11904: 0xFEC4,\n\t33266 - 11904: 0xEAF4,\n\t33267 - 11904: 0xA6DC,\n\t33268 - 11904: 0xAD50,\n\t33270 - 11904: 0x98C2,\n\t33271 - 11904: 0xDB54,\n\t33272 - 11904: 0xDB55,\n\t33273 - 11904: 0xDB56,\n\t33274 - 11904: 0xBB4F,\n\t33275 - 11904: 0xBFB2,\n\t33276 - 11904: 0xA6DD,\n\t33278 - 11904: 0xAAD8,\n\t33279 - 11904: 0xD068,\n\t33280 - 11904: 0xAFE6,\n\t33281 - 11904: 0xD370,\n\t33282 - 11904: 0xB2EA,\n\t33284 - 11904: 0xDB57,\n\t33285 - 11904: 0xB8A4,\n\t33287 - 11904: 0xBB50,\n\t33288 - 11904: 0xBFB3,\n\t33289 - 11904: 0xC17C,\n\t33290 - 11904: 0xC2C2,\n\t33291 - 11904: 0xF4B5,\n\t33292 - 11904: 0xA6DE,\n\t33293 - 11904: 0xAAD9,\n\t33296 - 11904: 0xAFE7,\n\t33297 - 11904: 0xD752,\n\t33298 - 11904: 0xB5CE,\n\t33300 - 11904: 0xBB51,\n\t33301 - 11904: 0xE3AB,\n\t33302 - 11904: 0xE745,\n\t33304 - 11904: 0x8EE8,\n\t33306 - 11904: 0xA0BA,\n\t33307 - 11904: 0xA6DF,\n\t33308 - 11904: 0xB5CF,\n\t33309 - 11904: 0xDFA3,\n\t33310 - 11904: 0xBB52,\n\t33311 - 11904: 0xA6E0,\n\t33312 - 11904: 0xCDB1,\n\t33313 - 11904: 0xD069,\n\t33314 - 11904: 0xAD51,\n\t33317 - 11904: 0xD372,\n\t33318 - 11904: 0xFD77,\n\t33320 - 11904: 0xAFEA,\n\t33321 - 11904: 0x8EEE,\n\t33322 - 11904: 0xAFE8,\n\t33323 - 11904: 0xAFE9,\n\t33324 - 11904: 0xAFEB,\n\t33325 - 11904: 0x9EBF,\n\t33327 - 11904: 0xD371,\n\t33330 - 11904: 0xD757,\n\t33331 - 11904: 0xD754,\n\t33332 - 11904: 0xD756,\n\t33333 - 11904: 0xB2EB,\n\t33334 - 11904: 0xB2ED,\n\t33335 - 11904: 0xB2EC,\n\t33336 - 11904: 0xD753,\n\t33337 - 11904: 0xB2EE,\n\t33338 - 11904: 0xD755,\n\t33340 - 11904: 0xDB58,\n\t33341 - 11904: 0xDB59,\n\t33342 - 11904: 0x89C2,\n\t33343 - 11904: 0xDB5A,\n\t33344 - 11904: 0xDFA6,\n\t33346 - 11904: 0xDFA7,\n\t33348 - 11904: 0xDFA5,\n\t33349 - 11904: 0xDFA8,\n\t33351 - 11904: 0xB8A5,\n\t33353 - 11904: 0xDFA4,\n\t33355 - 11904: 0xBB53,\n\t33358 - 11904: 0xE74A,\n\t33359 - 11904: 0xE746,\n\t33360 - 11904: 0xE749,\n\t33361 - 11904: 0xE74B,\n\t33362 - 11904: 0xE748,\n\t33363 - 11904: 0xE747,\n\t33364 - 11904: 0x99AC,\n\t33365 - 11904: 0xEAF5,\n\t33366 - 11904: 0xEAF6,\n\t33367 - 11904: 0xEAF7,\n\t33368 - 11904: 0xBFB4,\n\t33369 - 11904: 0xBFB5,\n\t33370 - 11904: 0xEDF1,\n\t33371 - 11904: 0xEDF0,\n\t33372 - 11904: 0xEDF2,\n\t33374 - 11904: 0xF0A3,\n\t33375 - 11904: 0xF0A2,\n\t33377 - 11904: 0xF2C4,\n\t33378 - 11904: 0x956B,\n\t33379 - 11904: 0xF2C5,\n\t33380 - 11904: 0xF2C3,\n\t33381 - 11904: 0x956C,\n\t33382 - 11904: 0xC4A5,\n\t33384 - 11904: 0xF4B6,\n\t33385 - 11904: 0xF4B7,\n\t33387 - 11904: 0xF746,\n\t33388 - 11904: 0xF7EF,\n\t33389 - 11904: 0xF8BB,\n\t33390 - 11904: 0xA6E1,\n\t33391 - 11904: 0xA87D,\n\t33393 - 11904: 0xC17D,\n\t33394 - 11904: 0xA6E2,\n\t33396 - 11904: 0xD758,\n\t33397 - 11904: 0xDB5B,\n\t33398 - 11904: 0x99AF,\n\t33399 - 11904: 0xC641,\n\t33400 - 11904: 0xCA4A,\n\t33401 - 11904: 0x994A,\n\t33402 - 11904: 0x8976,\n\t33403 - 11904: 0x8F48,\n\t33404 - 11904: 0xCA4B,\n\t33405 - 11904: 0xCA4D,\n\t33406 - 11904: 0xA6E3,\n\t33407 - 11904: 0xCA4E,\n\t33408 - 11904: 0xCA4C,\n\t33411 - 11904: 0xCBA2,\n\t33412 - 11904: 0xCBA3,\n\t33413 - 11904: 0xCB7B,\n\t33415 - 11904: 0xFBEE,\n\t33418 - 11904: 0xCBA1,\n\t33419 - 11904: 0xA8A1,\n\t33421 - 11904: 0xA8A2,\n\t33422 - 11904: 0xCB7C,\n\t33423 - 11904: 0xCB7A,\n\t33424 - 11904: 0xCB79,\n\t33425 - 11904: 0xCB7D,\n\t33426 - 11904: 0xA87E,\n\t33427 - 11904: 0xCB7E,\n\t33428 - 11904: 0xD06A,\n\t33432 - 11904: 0xCDB6,\n\t33433 - 11904: 0xAADC,\n\t33434 - 11904: 0xCDB5,\n\t33435 - 11904: 0xCDB7,\n\t33437 - 11904: 0xAADB,\n\t33438 - 11904: 0xCDBC,\n\t33439 - 11904: 0xAADF,\n\t33440 - 11904: 0xCDB2,\n\t33441 - 11904: 0xCDC0,\n\t33442 - 11904: 0xCDC6,\n\t33443 - 11904: 0xAAE6,\n\t33444 - 11904: 0xCDC3,\n\t33445 - 11904: 0xAAE3,\n\t33446 - 11904: 0x99AE,\n\t33447 - 11904: 0xCDB9,\n\t33448 - 11904: 0xCDBF,\n\t33449 - 11904: 0xCDC1,\n\t33450 - 11904: 0x8EFB,\n\t33451 - 11904: 0xCDB4,\n\t33452 - 11904: 0xAAE2,\n\t33453 - 11904: 0xAADD,\n\t33454 - 11904: 0xCDBA,\n\t33455 - 11904: 0xAAE4,\n\t33456 - 11904: 0xAAE7,\n\t33457 - 11904: 0xAAE1,\n\t33459 - 11904: 0xAADA,\n\t33460 - 11904: 0xCDBE,\n\t33461 - 11904: 0xCDB8,\n\t33462 - 11904: 0xCDC5,\n\t33463 - 11904: 0xAAE9,\n\t33464 - 11904: 0xAAE5,\n\t33465 - 11904: 0xAAE0,\n\t33466 - 11904: 0xCDBD,\n\t33467 - 11904: 0xAFEC,\n\t33468 - 11904: 0xCDBB,\n\t33469 - 11904: 0xAADE,\n\t33470 - 11904: 0xAAE8,\n\t33471 - 11904: 0x8CD0,\n\t33472 - 11904: 0xCDB3,\n\t33474 - 11904: 0xCDC2,\n\t33475 - 11904: 0xCDC4,\n\t33476 - 11904: 0x8B52,\n\t33482 - 11904: 0x99B0,\n\t33487 - 11904: 0x8977,\n\t33488 - 11904: 0x8F41,\n\t33489 - 11904: 0xAD62,\n\t33490 - 11904: 0xAD5C,\n\t33491 - 11904: 0xAD64,\n\t33492 - 11904: 0xAD61,\n\t33493 - 11904: 0xD071,\n\t33494 - 11904: 0xD074,\n\t33495 - 11904: 0xAD5D,\n\t33496 - 11904: 0x99B1,\n\t33497 - 11904: 0xD06B,\n\t33499 - 11904: 0xAD56,\n\t33500 - 11904: 0xAD60,\n\t33502 - 11904: 0xAD63,\n\t33503 - 11904: 0xAD65,\n\t33504 - 11904: 0xD0A2,\n\t33505 - 11904: 0xD077,\n\t33506 - 11904: 0x8F49,\n\t33507 - 11904: 0xAD55,\n\t33508 - 11904: 0xD0A1,\n\t33509 - 11904: 0xAD59,\n\t33510 - 11904: 0xAD57,\n\t33511 - 11904: 0xAD52,\n\t33512 - 11904: 0xD06F,\n\t33514 - 11904: 0xD07E,\n\t33515 - 11904: 0xD073,\n\t33516 - 11904: 0xD076,\n\t33517 - 11904: 0xD0A5,\n\t33518 - 11904: 0xFA4D,\n\t33519 - 11904: 0xAD66,\n\t33520 - 11904: 0xD07D,\n\t33521 - 11904: 0xAD5E,\n\t33522 - 11904: 0xD078,\n\t33523 - 11904: 0xD0A4,\n\t33524 - 11904: 0xD075,\n\t33525 - 11904: 0xD079,\n\t33526 - 11904: 0xD07C,\n\t33527 - 11904: 0x9DE4,\n\t33528 - 11904: 0x8CB5,\n\t33529 - 11904: 0xD06D,\n\t33530 - 11904: 0xD0A3,\n\t33531 - 11904: 0xD07B,\n\t33532 - 11904: 0xFBE9,\n\t33533 - 11904: 0x9B54,\n\t33534 - 11904: 0xD06C,\n\t33535 - 11904: 0x99B2,\n\t33536 - 11904: 0xD070,\n\t33537 - 11904: 0xAD5F,\n\t33538 - 11904: 0xAD5A,\n\t33539 - 11904: 0xAD53,\n\t33540 - 11904: 0xAD58,\n\t33541 - 11904: 0xAD54,\n\t33542 - 11904: 0xAD67,\n\t33543 - 11904: 0xD06E,\n\t33544 - 11904: 0xD3A5,\n\t33545 - 11904: 0xAD5B,\n\t33547 - 11904: 0x9E68,\n\t33548 - 11904: 0xD07A,\n\t33549 - 11904: 0xCE41,\n\t33558 - 11904: 0xD3A8,\n\t33559 - 11904: 0xAFFA,\n\t33560 - 11904: 0x8F4A,\n\t33561 - 11904: 0xD376,\n\t33562 - 11904: 0x8F42,\n\t33563 - 11904: 0xD3A3,\n\t33564 - 11904: 0xD37D,\n\t33565 - 11904: 0x8F51,\n\t33566 - 11904: 0xD3B2,\n\t33568 - 11904: 0xD3AA,\n\t33570 - 11904: 0xD37E,\n\t33572 - 11904: 0xD3A9,\n\t33573 - 11904: 0xD378,\n\t33574 - 11904: 0xD37C,\n\t33575 - 11904: 0xD3B5,\n\t33576 - 11904: 0xAFFD,\n\t33577 - 11904: 0xD3AD,\n\t33578 - 11904: 0xD3A4,\n\t33579 - 11904: 0xAFED,\n\t33580 - 11904: 0xD3B3,\n\t33581 - 11904: 0xD374,\n\t33583 - 11904: 0xD3AC,\n\t33585 - 11904: 0xAFFC,\n\t33586 - 11904: 0xAFF7,\n\t33587 - 11904: 0xD373,\n\t33588 - 11904: 0xAFF5,\n\t33589 - 11904: 0xAFF4,\n\t33590 - 11904: 0xAFF9,\n\t33591 - 11904: 0xD3AB,\n\t33592 - 11904: 0xAFF1,\n\t33593 - 11904: 0xAFF8,\n\t33594 - 11904: 0xD072,\n\t33595 - 11904: 0xDB5C,\n\t33596 - 11904: 0xD3A6,\n\t33597 - 11904: 0x9846,\n\t33599 - 11904: 0xD37A,\n\t33600 - 11904: 0xAFFB,\n\t33601 - 11904: 0xD37B,\n\t33602 - 11904: 0xD3A1,\n\t33603 - 11904: 0xAFFE,\n\t33604 - 11904: 0xD375,\n\t33605 - 11904: 0xD3AF,\n\t33607 - 11904: 0xD3AE,\n\t33608 - 11904: 0xD3B6,\n\t33609 - 11904: 0xAFF3,\n\t33610 - 11904: 0xAFF0,\n\t33611 - 11904: 0xD3B4,\n\t33612 - 11904: 0xD3B0,\n\t33613 - 11904: 0xD3A7,\n\t33614 - 11904: 0xD3A2,\n\t33615 - 11904: 0xAFF6,\n\t33616 - 11904: 0xAFF2,\n\t33617 - 11904: 0xD377,\n\t33618 - 11904: 0xAFEE,\n\t33619 - 11904: 0xD3B1,\n\t33620 - 11904: 0xAFEF,\n\t33622 - 11904: 0xD379,\n\t33623 - 11904: 0x99B4,\n\t33634 - 11904: 0x8EF5,\n\t33635 - 11904: 0xFD55,\n\t33638 - 11904: 0x9CCD,\n\t33647 - 11904: 0x8978,\n\t33651 - 11904: 0xD75E,\n\t33652 - 11904: 0xD760,\n\t33653 - 11904: 0xD765,\n\t33654 - 11904: 0xD779,\n\t33655 - 11904: 0xB2FC,\n\t33656 - 11904: 0xB2F2,\n\t33658 - 11904: 0xD75D,\n\t33659 - 11904: 0xB2FD,\n\t33660 - 11904: 0xB2FE,\n\t33661 - 11904: 0xD768,\n\t33662 - 11904: 0xD76F,\n\t33663 - 11904: 0xD775,\n\t33665 - 11904: 0xD762,\n\t33667 - 11904: 0xD769,\n\t33669 - 11904: 0x8F53,\n\t33670 - 11904: 0xB340,\n\t33671 - 11904: 0xD777,\n\t33672 - 11904: 0xD772,\n\t33673 - 11904: 0xB2FA,\n\t33674 - 11904: 0xB2F8,\n\t33675 - 11904: 0xD76E,\n\t33676 - 11904: 0xD76A,\n\t33677 - 11904: 0xD75C,\n\t33678 - 11904: 0xB2EF,\n\t33679 - 11904: 0xD761,\n\t33680 - 11904: 0xD759,\n\t33681 - 11904: 0x8F6F,\n\t33682 - 11904: 0xB2F7,\n\t33683 - 11904: 0xB2F9,\n\t33684 - 11904: 0xD766,\n\t33685 - 11904: 0xD763,\n\t33686 - 11904: 0xB2F4,\n\t33687 - 11904: 0xD773,\n\t33688 - 11904: 0xB2F1,\n\t33689 - 11904: 0xD764,\n\t33690 - 11904: 0xD77A,\n\t33691 - 11904: 0xD76C,\n\t33692 - 11904: 0x8E63,\n\t33693 - 11904: 0xD76B,\n\t33694 - 11904: 0xB2F0,\n\t33696 - 11904: 0xB2FB,\n\t33698 - 11904: 0xB2F3,\n\t33699 - 11904: 0xD75A,\n\t33700 - 11904: 0xD75F,\n\t33701 - 11904: 0xD770,\n\t33702 - 11904: 0xD776,\n\t33703 - 11904: 0xB341,\n\t33704 - 11904: 0xD75B,\n\t33705 - 11904: 0xD767,\n\t33706 - 11904: 0xD76D,\n\t33707 - 11904: 0xB2F6,\n\t33708 - 11904: 0x8F56,\n\t33710 - 11904: 0xD778,\n\t33711 - 11904: 0xD771,\n\t33712 - 11904: 0xD774,\n\t33721 - 11904: 0xFE76,\n\t33725 - 11904: 0xB2F5,\n\t33726 - 11904: 0x9FC6,\n\t33727 - 11904: 0xDB6C,\n\t33728 - 11904: 0xDB60,\n\t33729 - 11904: 0xB5D7,\n\t33730 - 11904: 0xDB7D,\n\t33731 - 11904: 0xDBA7,\n\t33732 - 11904: 0xDBAA,\n\t33733 - 11904: 0xB5D5,\n\t33734 - 11904: 0xDB68,\n\t33735 - 11904: 0xDBA3,\n\t33736 - 11904: 0xDB69,\n\t33737 - 11904: 0xDB77,\n\t33738 - 11904: 0xB5E2,\n\t33739 - 11904: 0xDB73,\n\t33740 - 11904: 0xB5DF,\n\t33741 - 11904: 0xFAAC,\n\t33742 - 11904: 0xDB74,\n\t33743 - 11904: 0xDB5D,\n\t33745 - 11904: 0xDBA4,\n\t33747 - 11904: 0x8F58,\n\t33748 - 11904: 0xB5E8,\n\t33749 - 11904: 0xDBA1,\n\t33750 - 11904: 0xDB75,\n\t33751 - 11904: 0xDBAC,\n\t33752 - 11904: 0xDB70,\n\t33753 - 11904: 0xDFC8,\n\t33755 - 11904: 0xDBAF,\n\t33756 - 11904: 0xB5E6,\n\t33757 - 11904: 0xDB6E,\n\t33758 - 11904: 0xDB7A,\n\t33759 - 11904: 0xB5E9,\n\t33760 - 11904: 0xB5D4,\n\t33761 - 11904: 0xDB72,\n\t33762 - 11904: 0xDBAD,\n\t33763 - 11904: 0xDB6B,\n\t33764 - 11904: 0xDB64,\n\t33765 - 11904: 0xDB6F,\n\t33767 - 11904: 0xDB63,\n\t33768 - 11904: 0xDB61,\n\t33769 - 11904: 0xB5D0,\n\t33770 - 11904: 0xDBA5,\n\t33771 - 11904: 0xDB6A,\n\t33772 - 11904: 0xDBA8,\n\t33773 - 11904: 0x9848,\n\t33774 - 11904: 0xDBA9,\n\t33775 - 11904: 0xB5D8,\n\t33776 - 11904: 0xB5DD,\n\t33777 - 11904: 0xB5D9,\n\t33778 - 11904: 0xB5E1,\n\t33779 - 11904: 0xDB7E,\n\t33780 - 11904: 0xB5DA,\n\t33781 - 11904: 0xDB76,\n\t33782 - 11904: 0xDB66,\n\t33784 - 11904: 0xB5D2,\n\t33785 - 11904: 0xDB5E,\n\t33786 - 11904: 0xDBA2,\n\t33787 - 11904: 0xDBAB,\n\t33788 - 11904: 0xDB65,\n\t33789 - 11904: 0xB5E0,\n\t33790 - 11904: 0xDBB0,\n\t33791 - 11904: 0xDB71,\n\t33793 - 11904: 0xDB6D,\n\t33795 - 11904: 0xB5D1,\n\t33796 - 11904: 0xB5E5,\n\t33797 - 11904: 0x99B7,\n\t33798 - 11904: 0xDB7C,\n\t33799 - 11904: 0xB5E7,\n\t33801 - 11904: 0xDB78,\n\t33802 - 11904: 0xB5DC,\n\t33803 - 11904: 0xB5D6,\n\t33804 - 11904: 0xB5DE,\n\t33805 - 11904: 0xB5D3,\n\t33806 - 11904: 0xB5E4,\n\t33807 - 11904: 0xDB79,\n\t33808 - 11904: 0xDB67,\n\t33809 - 11904: 0xDB7B,\n\t33810 - 11904: 0xDB62,\n\t33811 - 11904: 0xDBA6,\n\t33812 - 11904: 0x9665,\n\t33814 - 11904: 0xFA6C,\n\t33816 - 11904: 0x9DE7,\n\t33819 - 11904: 0xDBAE,\n\t33820 - 11904: 0x9E62,\n\t33824 - 11904: 0x96CC,\n\t33825 - 11904: 0x8E67,\n\t33827 - 11904: 0xDB5F,\n\t33828 - 11904: 0xFC75,\n\t33830 - 11904: 0x987E,\n\t33833 - 11904: 0xDFC7,\n\t33835 - 11904: 0xDFDD,\n\t33836 - 11904: 0xB855,\n\t33837 - 11904: 0xDFCC,\n\t33838 - 11904: 0xFDB9,\n\t33839 - 11904: 0xDFCA,\n\t33840 - 11904: 0xDFB5,\n\t33841 - 11904: 0xB8A9,\n\t33842 - 11904: 0xDFC5,\n\t33843 - 11904: 0xDFD9,\n\t33844 - 11904: 0xDFC1,\n\t33845 - 11904: 0xB8B1,\n\t33846 - 11904: 0xDFD8,\n\t33847 - 11904: 0xDFBF,\n\t33848 - 11904: 0xB5E3,\n\t33849 - 11904: 0xDFCF,\n\t33850 - 11904: 0xDFC0,\n\t33851 - 11904: 0xDFD6,\n\t33852 - 11904: 0xB8B0,\n\t33853 - 11904: 0xB8A8,\n\t33854 - 11904: 0x97FC,\n\t33855 - 11904: 0xDFAA,\n\t33856 - 11904: 0xDFB2,\n\t33858 - 11904: 0xDFCB,\n\t33859 - 11904: 0xDFC3,\n\t33860 - 11904: 0xDFDC,\n\t33861 - 11904: 0xDFC6,\n\t33862 - 11904: 0xB8B6,\n\t33863 - 11904: 0xDFD7,\n\t33864 - 11904: 0x98F9,\n\t33865 - 11904: 0xB8AD,\n\t33866 - 11904: 0x8F66,\n\t33867 - 11904: 0xDFC9,\n\t33868 - 11904: 0xDFD1,\n\t33869 - 11904: 0xDFB6,\n\t33870 - 11904: 0xDFD0,\n\t33872 - 11904: 0xDFE1,\n\t33873 - 11904: 0xDFB1,\n\t33874 - 11904: 0xDFD2,\n\t33875 - 11904: 0x956E,\n\t33876 - 11904: 0xDFDF,\n\t33877 - 11904: 0x9245,\n\t33878 - 11904: 0xDFAB,\n\t33879 - 11904: 0xB5DB,\n\t33880 - 11904: 0x8F60,\n\t33881 - 11904: 0xDFB9,\n\t33882 - 11904: 0xDFB8,\n\t33883 - 11904: 0xB8AF,\n\t33884 - 11904: 0x9ED1,\n\t33885 - 11904: 0xDFBC,\n\t33886 - 11904: 0xDFBE,\n\t33887 - 11904: 0xDFCD,\n\t33888 - 11904: 0xDFDE,\n\t33889 - 11904: 0xB8B2,\n\t33890 - 11904: 0xFECD,\n\t33891 - 11904: 0xB8B3,\n\t33892 - 11904: 0x99B9,\n\t33893 - 11904: 0xDFB0,\n\t33894 - 11904: 0xB8AB,\n\t33895 - 11904: 0xDFB4,\n\t33896 - 11904: 0xDFDA,\n\t33897 - 11904: 0xB8B4,\n\t33899 - 11904: 0xB8AC,\n\t33900 - 11904: 0xB8AE,\n\t33901 - 11904: 0xB8B5,\n\t33902 - 11904: 0xDFE0,\n\t33903 - 11904: 0xDFD3,\n\t33904 - 11904: 0xDFCE,\n\t33905 - 11904: 0x8F62,\n\t33906 - 11904: 0x974C,\n\t33907 - 11904: 0xDFBB,\n\t33908 - 11904: 0xDFBA,\n\t33909 - 11904: 0xB8AA,\n\t33910 - 11904: 0xDFAC,\n\t33911 - 11904: 0xB8A7,\n\t33912 - 11904: 0xDFC4,\n\t33913 - 11904: 0xDFAD,\n\t33914 - 11904: 0xDFC2,\n\t33917 - 11904: 0xDFB7,\n\t33918 - 11904: 0xDFDB,\n\t33919 - 11904: 0x91C7,\n\t33920 - 11904: 0x955F,\n\t33922 - 11904: 0xB8A6,\n\t33924 - 11904: 0x87AB,\n\t33926 - 11904: 0xDFB3,\n\t33928 - 11904: 0x99BB,\n\t33933 - 11904: 0xDFAF,\n\t33934 - 11904: 0xDFD5,\n\t33935 - 11904: 0xDFAE,\n\t33936 - 11904: 0xBB60,\n\t33937 - 11904: 0xE3D3,\n\t33938 - 11904: 0x8E6D,\n\t33939 - 11904: 0x8F71,\n\t33940 - 11904: 0xE3C2,\n\t33942 - 11904: 0x94CB,\n\t33943 - 11904: 0xE3AC,\n\t33944 - 11904: 0xE3CA,\n\t33945 - 11904: 0xBB58,\n\t33946 - 11904: 0xE3BB,\n\t33947 - 11904: 0xE3C5,\n\t33948 - 11904: 0xBB5B,\n\t33949 - 11904: 0xE3BE,\n\t33950 - 11904: 0xBB59,\n\t33951 - 11904: 0xE3AF,\n\t33952 - 11904: 0xE3CD,\n\t33953 - 11904: 0xE3AE,\n\t33954 - 11904: 0xE3C1,\n\t33955 - 11904: 0x95B1,\n\t33956 - 11904: 0xE3AD,\n\t33959 - 11904: 0xE3BF,\n\t33960 - 11904: 0xE3C8,\n\t33961 - 11904: 0xE3C6,\n\t33962 - 11904: 0xE3BA,\n\t33963 - 11904: 0xE3B5,\n\t33964 - 11904: 0xE3B3,\n\t33965 - 11904: 0x9AF2,\n\t33966 - 11904: 0xE3B4,\n\t33967 - 11904: 0xE3C7,\n\t33968 - 11904: 0xE3D2,\n\t33969 - 11904: 0xE3BC,\n\t33970 - 11904: 0xBB5A,\n\t33972 - 11904: 0xE3B7,\n\t33974 - 11904: 0xE3CB,\n\t33976 - 11904: 0xBB5D,\n\t33977 - 11904: 0xE3B6,\n\t33978 - 11904: 0xE3B0,\n\t33979 - 11904: 0xE3C0,\n\t33980 - 11904: 0xBB61,\n\t33981 - 11904: 0x96C3,\n\t33982 - 11904: 0x99BD,\n\t33983 - 11904: 0xBB55,\n\t33984 - 11904: 0xBB5E,\n\t33985 - 11904: 0xE3B8,\n\t33986 - 11904: 0xE3B2,\n\t33988 - 11904: 0xBB57,\n\t33989 - 11904: 0xDFD4,\n\t33990 - 11904: 0xBB56,\n\t33991 - 11904: 0xE3C3,\n\t33993 - 11904: 0xBB54,\n\t33994 - 11904: 0xBB63,\n\t33995 - 11904: 0xBB5C,\n\t33996 - 11904: 0xE3C4,\n\t33997 - 11904: 0xE3B9,\n\t33998 - 11904: 0xE3B1,\n\t33999 - 11904: 0xE3CC,\n\t34000 - 11904: 0xE3BD,\n\t34001 - 11904: 0xBB62,\n\t34002 - 11904: 0xE3D0,\n\t34003 - 11904: 0xBB5F,\n\t34004 - 11904: 0xE3CF,\n\t34006 - 11904: 0xE3C9,\n\t34007 - 11904: 0xE3CE,\n\t34010 - 11904: 0xA0CF,\n\t34011 - 11904: 0xE3D1,\n\t34014 - 11904: 0x8F6D,\n\t34017 - 11904: 0x99BE,\n\t34018 - 11904: 0x8EF4,\n\t34020 - 11904: 0x8F72,\n\t34021 - 11904: 0x95E4,\n\t34023 - 11904: 0xE773,\n\t34024 - 11904: 0xE774,\n\t34025 - 11904: 0xE767,\n\t34026 - 11904: 0xE766,\n\t34027 - 11904: 0xE762,\n\t34028 - 11904: 0xBDB4,\n\t34030 - 11904: 0xBDAC,\n\t34031 - 11904: 0xE776,\n\t34032 - 11904: 0xE775,\n\t34033 - 11904: 0xDFA9,\n\t34034 - 11904: 0xE75F,\n\t34035 - 11904: 0xE763,\n\t34036 - 11904: 0xE75D,\n\t34038 - 11904: 0xE770,\n\t34039 - 11904: 0xE761,\n\t34040 - 11904: 0x99BF,\n\t34041 - 11904: 0xE777,\n\t34042 - 11904: 0xE75A,\n\t34043 - 11904: 0xE758,\n\t34044 - 11904: 0xE764,\n\t34045 - 11904: 0xE76E,\n\t34046 - 11904: 0xE769,\n\t34047 - 11904: 0xBDB6,\n\t34048 - 11904: 0xE74F,\n\t34050 - 11904: 0xE76D,\n\t34051 - 11904: 0x9244,\n\t34052 - 11904: 0x87D7,\n\t34053 - 11904: 0xFBA5,\n\t34054 - 11904: 0xBDB7,\n\t34055 - 11904: 0xDFBD,\n\t34056 - 11904: 0xE75B,\n\t34057 - 11904: 0xE752,\n\t34058 - 11904: 0xE755,\n\t34059 - 11904: 0xE77B,\n\t34060 - 11904: 0xE75C,\n\t34061 - 11904: 0xE753,\n\t34062 - 11904: 0xE751,\n\t34063 - 11904: 0xE74E,\n\t34064 - 11904: 0x99C0,\n\t34065 - 11904: 0xBDB0,\n\t34066 - 11904: 0xE765,\n\t34067 - 11904: 0xBDAF,\n\t34068 - 11904: 0xBDB3,\n\t34069 - 11904: 0xE760,\n\t34070 - 11904: 0xE768,\n\t34071 - 11904: 0xBDA9,\n\t34072 - 11904: 0xE778,\n\t34073 - 11904: 0xE77C,\n\t34074 - 11904: 0xBDAB,\n\t34076 - 11904: 0xE757,\n\t34077 - 11904: 0xE76B,\n\t34078 - 11904: 0xE76F,\n\t34079 - 11904: 0xE754,\n\t34080 - 11904: 0xE779,\n\t34081 - 11904: 0xBDB2,\n\t34083 - 11904: 0xBDB1,\n\t34084 - 11904: 0xE74C,\n\t34085 - 11904: 0xBDB5,\n\t34086 - 11904: 0xE772,\n\t34087 - 11904: 0xE756,\n\t34088 - 11904: 0xE76A,\n\t34089 - 11904: 0xE750,\n\t34090 - 11904: 0xE75E,\n\t34091 - 11904: 0xE759,\n\t34092 - 11904: 0xBDAD,\n\t34093 - 11904: 0xBDAE,\n\t34094 - 11904: 0xE76C,\n\t34095 - 11904: 0xE77D,\n\t34096 - 11904: 0xE77A,\n\t34097 - 11904: 0xE771,\n\t34099 - 11904: 0xFDB4,\n\t34100 - 11904: 0x8F77,\n\t34104 - 11904: 0x99C1,\n\t34107 - 11904: 0xE74D,\n\t34109 - 11904: 0xBDAA,\n\t34110 - 11904: 0xEB49,\n\t34112 - 11904: 0xEB40,\n\t34113 - 11904: 0xEB43,\n\t34114 - 11904: 0xFAB9,\n\t34115 - 11904: 0xBFBB,\n\t34116 - 11904: 0xEB45,\n\t34117 - 11904: 0xEAF9,\n\t34118 - 11904: 0xEB41,\n\t34119 - 11904: 0xEB47,\n\t34120 - 11904: 0xBFB8,\n\t34121 - 11904: 0xBFBC,\n\t34122 - 11904: 0xBFB6,\n\t34123 - 11904: 0x8F40,\n\t34124 - 11904: 0xFA44,\n\t34125 - 11904: 0xEAFB,\n\t34126 - 11904: 0xEB4C,\n\t34129 - 11904: 0xEB46,\n\t34130 - 11904: 0x99C2,\n\t34131 - 11904: 0xEAFC,\n\t34132 - 11904: 0xEB55,\n\t34133 - 11904: 0xEB4F,\n\t34134 - 11904: 0xEAF8,\n\t34135 - 11904: 0xEE46,\n\t34136 - 11904: 0xEAFE,\n\t34137 - 11904: 0xBFB7,\n\t34138 - 11904: 0x8F5C,\n\t34139 - 11904: 0xEB4A,\n\t34141 - 11904: 0xEB54,\n\t34142 - 11904: 0xBFBF,\n\t34143 - 11904: 0x8CBD,\n\t34144 - 11904: 0xEB51,\n\t34145 - 11904: 0xEAFD,\n\t34146 - 11904: 0xEB44,\n\t34147 - 11904: 0xEB48,\n\t34148 - 11904: 0xEB42,\n\t34149 - 11904: 0xEB56,\n\t34150 - 11904: 0xEB53,\n\t34151 - 11904: 0xEB50,\n\t34152 - 11904: 0xBFB9,\n\t34153 - 11904: 0xBFBA,\n\t34154 - 11904: 0xBFBE,\n\t34155 - 11904: 0xEAFA,\n\t34156 - 11904: 0xEB57,\n\t34157 - 11904: 0xBFBD,\n\t34158 - 11904: 0xEB4D,\n\t34159 - 11904: 0x99C4,\n\t34160 - 11904: 0x99C5,\n\t34161 - 11904: 0xEB4B,\n\t34163 - 11904: 0x8F7B,\n\t34165 - 11904: 0xEB4E,\n\t34166 - 11904: 0xEE53,\n\t34167 - 11904: 0xEE40,\n\t34168 - 11904: 0xEE45,\n\t34169 - 11904: 0xEE52,\n\t34170 - 11904: 0xEE44,\n\t34171 - 11904: 0xEDFB,\n\t34172 - 11904: 0xEE41,\n\t34174 - 11904: 0xC1A2,\n\t34176 - 11904: 0xEDF4,\n\t34177 - 11904: 0xEE4D,\n\t34178 - 11904: 0xEE4F,\n\t34179 - 11904: 0xEDF3,\n\t34180 - 11904: 0xC1A1,\n\t34181 - 11904: 0xEE51,\n\t34182 - 11904: 0xEE49,\n\t34183 - 11904: 0xC1A8,\n\t34184 - 11904: 0xEE50,\n\t34185 - 11904: 0xEE42,\n\t34186 - 11904: 0xC1AA,\n\t34187 - 11904: 0xEDF9,\n\t34188 - 11904: 0xEB52,\n\t34189 - 11904: 0xEE4A,\n\t34190 - 11904: 0xEE47,\n\t34191 - 11904: 0xEDF5,\n\t34192 - 11904: 0xEE55,\n\t34193 - 11904: 0xC1A4,\n\t34195 - 11904: 0x8776,\n\t34196 - 11904: 0xC1A5,\n\t34197 - 11904: 0xEDF7,\n\t34198 - 11904: 0xEE48,\n\t34199 - 11904: 0x8CB6,\n\t34200 - 11904: 0xEE54,\n\t34201 - 11904: 0xEE4B,\n\t34202 - 11904: 0xEDFD,\n\t34203 - 11904: 0xC1A7,\n\t34204 - 11904: 0xC1A3,\n\t34205 - 11904: 0xEE4C,\n\t34206 - 11904: 0xEDFE,\n\t34207 - 11904: 0xEE56,\n\t34208 - 11904: 0xEDF8,\n\t34209 - 11904: 0xEE43,\n\t34210 - 11904: 0xEE4E,\n\t34211 - 11904: 0xEDFA,\n\t34212 - 11904: 0xEDFC,\n\t34214 - 11904: 0xC2CB,\n\t34215 - 11904: 0xEDF6,\n\t34216 - 11904: 0xC1A9,\n\t34217 - 11904: 0xC2C4,\n\t34218 - 11904: 0xC17E,\n\t34223 - 11904: 0xC1A6,\n\t34224 - 11904: 0xC2C8,\n\t34225 - 11904: 0xF0B3,\n\t34227 - 11904: 0xF0A9,\n\t34228 - 11904: 0xF0A4,\n\t34229 - 11904: 0xF0AA,\n\t34230 - 11904: 0xF0B4,\n\t34231 - 11904: 0xF0B8,\n\t34232 - 11904: 0xF0B7,\n\t34233 - 11904: 0xC2CA,\n\t34234 - 11904: 0xC2C9,\n\t34237 - 11904: 0xF0AB,\n\t34238 - 11904: 0xF0B9,\n\t34239 - 11904: 0xF0AE,\n\t34240 - 11904: 0xF0A6,\n\t34241 - 11904: 0x8FA3,\n\t34242 - 11904: 0xF0A8,\n\t34243 - 11904: 0xF0A7,\n\t34244 - 11904: 0xF0AD,\n\t34245 - 11904: 0xF0B2,\n\t34246 - 11904: 0xF0A5,\n\t34247 - 11904: 0xF0AC,\n\t34248 - 11904: 0xF0B1,\n\t34249 - 11904: 0xC2C7,\n\t34251 - 11904: 0xF0AF,\n\t34253 - 11904: 0xC2C5,\n\t34254 - 11904: 0xF0B0,\n\t34255 - 11904: 0xC2C3,\n\t34256 - 11904: 0xC2C6,\n\t34257 - 11904: 0xF2D5,\n\t34258 - 11904: 0xF0B5,\n\t34261 - 11904: 0xC3C2,\n\t34262 - 11904: 0x8CCE,\n\t34263 - 11904: 0xF2CD,\n\t34264 - 11904: 0xF2D1,\n\t34265 - 11904: 0xF2C9,\n\t34266 - 11904: 0xF2CC,\n\t34268 - 11904: 0xF2D4,\n\t34269 - 11904: 0xC3C0,\n\t34270 - 11904: 0xF2D9,\n\t34271 - 11904: 0xF2D2,\n\t34272 - 11904: 0x99C6,\n\t34273 - 11904: 0xF2CA,\n\t34274 - 11904: 0xF2DA,\n\t34275 - 11904: 0xF2D3,\n\t34276 - 11904: 0xC3C3,\n\t34277 - 11904: 0xC3C4,\n\t34278 - 11904: 0xF2D7,\n\t34280 - 11904: 0xF2CB,\n\t34281 - 11904: 0xC3BF,\n\t34282 - 11904: 0xC3C1,\n\t34283 - 11904: 0xF2C6,\n\t34284 - 11904: 0xF2CE,\n\t34285 - 11904: 0xF2C8,\n\t34286 - 11904: 0x96CD,\n\t34287 - 11904: 0xF2D8,\n\t34288 - 11904: 0xF2D6,\n\t34289 - 11904: 0xF2C7,\n\t34290 - 11904: 0xF2CF,\n\t34294 - 11904: 0xF4BE,\n\t34295 - 11904: 0xC3C5,\n\t34296 - 11904: 0xF2D0,\n\t34297 - 11904: 0xC4A7,\n\t34298 - 11904: 0xC4A9,\n\t34299 - 11904: 0xC4A6,\n\t34300 - 11904: 0x96C7,\n\t34301 - 11904: 0xF4C3,\n\t34302 - 11904: 0xF4BB,\n\t34303 - 11904: 0xF4B9,\n\t34304 - 11904: 0xF4BD,\n\t34305 - 11904: 0xF4BA,\n\t34306 - 11904: 0x8FA5,\n\t34308 - 11904: 0xF4BF,\n\t34309 - 11904: 0xF4C1,\n\t34310 - 11904: 0xC4AA,\n\t34311 - 11904: 0xC4AC,\n\t34313 - 11904: 0xF4C0,\n\t34314 - 11904: 0xC4AD,\n\t34315 - 11904: 0xC4AB,\n\t34316 - 11904: 0xF4C2,\n\t34317 - 11904: 0xFABB,\n\t34319 - 11904: 0x8C61,\n\t34320 - 11904: 0x9570,\n\t34321 - 11904: 0xC4A8,\n\t34323 - 11904: 0x87AF,\n\t34324 - 11904: 0x9368,\n\t34326 - 11904: 0x8F7E,\n\t34327 - 11904: 0xC4F4,\n\t34328 - 11904: 0xF5F1,\n\t34329 - 11904: 0xF5F7,\n\t34330 - 11904: 0xC4F6,\n\t34331 - 11904: 0xF4BC,\n\t34332 - 11904: 0xF5F6,\n\t34334 - 11904: 0xF5FD,\n\t34335 - 11904: 0xF5F4,\n\t34336 - 11904: 0xF5FB,\n\t34337 - 11904: 0xF5FA,\n\t34338 - 11904: 0xF4B8,\n\t34339 - 11904: 0xF5F5,\n\t34340 - 11904: 0xF0B6,\n\t34341 - 11904: 0xF5FE,\n\t34342 - 11904: 0xF5F3,\n\t34343 - 11904: 0xF5F8,\n\t34344 - 11904: 0x8FAA,\n\t34345 - 11904: 0xF5FC,\n\t34346 - 11904: 0xF5F2,\n\t34348 - 11904: 0xF74A,\n\t34349 - 11904: 0xC4F5,\n\t34350 - 11904: 0xF5F9,\n\t34351 - 11904: 0xA050,\n\t34353 - 11904: 0xF7F4,\n\t34354 - 11904: 0xF74B,\n\t34355 - 11904: 0xF749,\n\t34356 - 11904: 0xF747,\n\t34357 - 11904: 0xF748,\n\t34358 - 11904: 0xF74C,\n\t34360 - 11904: 0xC5D9,\n\t34361 - 11904: 0xF7F2,\n\t34362 - 11904: 0xF7F0,\n\t34363 - 11904: 0xF7F5,\n\t34364 - 11904: 0xF7F3,\n\t34366 - 11904: 0xF7F6,\n\t34367 - 11904: 0xC5DA,\n\t34368 - 11904: 0xF7F1,\n\t34370 - 11904: 0x90D3,\n\t34371 - 11904: 0xF8BC,\n\t34373 - 11904: 0x9556,\n\t34374 - 11904: 0xF945,\n\t34375 - 11904: 0xF946,\n\t34376 - 11904: 0xF947,\n\t34379 - 11904: 0xF9C7,\n\t34380 - 11904: 0xF9BD,\n\t34381 - 11904: 0xCA4F,\n\t34382 - 11904: 0xAAEA,\n\t34384 - 11904: 0xAD68,\n\t34386 - 11904: 0xD3B8,\n\t34387 - 11904: 0xD3B7,\n\t34388 - 11904: 0xB040,\n\t34389 - 11904: 0xB342,\n\t34390 - 11904: 0xD77C,\n\t34393 - 11904: 0xD77B,\n\t34395 - 11904: 0xB5EA,\n\t34396 - 11904: 0xB8B8,\n\t34398 - 11904: 0xB8B7,\n\t34399 - 11904: 0xB8B9,\n\t34401 - 11904: 0xE3D4,\n\t34402 - 11904: 0xE77E,\n\t34403 - 11904: 0xEB58,\n\t34404 - 11904: 0xEB5A,\n\t34405 - 11904: 0xEB59,\n\t34407 - 11904: 0xC1AB,\n\t34408 - 11904: 0xEE57,\n\t34409 - 11904: 0xF0BA,\n\t34410 - 11904: 0xF9A5,\n\t34411 - 11904: 0xA6E4,\n\t34412 - 11904: 0x8FB8,\n\t34413 - 11904: 0xCDC9,\n\t34414 - 11904: 0xCDCA,\n\t34415 - 11904: 0xCDC8,\n\t34416 - 11904: 0xCDC7,\n\t34417 - 11904: 0xAAEB,\n\t34418 - 11904: 0x99C8,\n\t34419 - 11904: 0xD0A9,\n\t34420 - 11904: 0xD0A7,\n\t34423 - 11904: 0xD0A6,\n\t34425 - 11904: 0xAD69,\n\t34426 - 11904: 0xAD6B,\n\t34427 - 11904: 0xAD6A,\n\t34428 - 11904: 0xD0A8,\n\t34430 - 11904: 0x8FAF,\n\t34437 - 11904: 0xD3C4,\n\t34438 - 11904: 0xD3C1,\n\t34439 - 11904: 0xD3BF,\n\t34442 - 11904: 0xB041,\n\t34443 - 11904: 0xD3C2,\n\t34444 - 11904: 0xB046,\n\t34445 - 11904: 0xD3BC,\n\t34446 - 11904: 0xD3CB,\n\t34448 - 11904: 0xD3CD,\n\t34449 - 11904: 0xD3BD,\n\t34450 - 11904: 0x99C9,\n\t34451 - 11904: 0xB043,\n\t34452 - 11904: 0xD3CE,\n\t34453 - 11904: 0xD3C9,\n\t34454 - 11904: 0xD3BB,\n\t34455 - 11904: 0xD3C0,\n\t34456 - 11904: 0xD3CA,\n\t34457 - 11904: 0xD3C6,\n\t34458 - 11904: 0xD3C3,\n\t34460 - 11904: 0xB048,\n\t34461 - 11904: 0xD3CC,\n\t34462 - 11904: 0xD3BE,\n\t34464 - 11904: 0x9579,\n\t34465 - 11904: 0xD3C7,\n\t34466 - 11904: 0xD3B9,\n\t34467 - 11904: 0xB047,\n\t34468 - 11904: 0xB044,\n\t34469 - 11904: 0xD3C5,\n\t34471 - 11904: 0xD3C8,\n\t34472 - 11904: 0xD3BA,\n\t34473 - 11904: 0xB045,\n\t34474 - 11904: 0xB042,\n\t34477 - 11904: 0x9F49,\n\t34479 - 11904: 0xB34C,\n\t34480 - 11904: 0xD7A5,\n\t34481 - 11904: 0xB34B,\n\t34482 - 11904: 0x99CA,\n\t34483 - 11904: 0xD7A8,\n\t34484 - 11904: 0xD7AB,\n\t34485 - 11904: 0xB348,\n\t34486 - 11904: 0xB346,\n\t34487 - 11904: 0xD77E,\n\t34488 - 11904: 0xD7A9,\n\t34489 - 11904: 0xD7A7,\n\t34490 - 11904: 0xD7A4,\n\t34491 - 11904: 0xD7AC,\n\t34492 - 11904: 0xD7AD,\n\t34493 - 11904: 0xD7AF,\n\t34494 - 11904: 0xD7B0,\n\t34495 - 11904: 0xD77D,\n\t34496 - 11904: 0xB345,\n\t34497 - 11904: 0xD7A2,\n\t34498 - 11904: 0xD7A1,\n\t34499 - 11904: 0xD7AE,\n\t34500 - 11904: 0xB347,\n\t34501 - 11904: 0xD7A3,\n\t34502 - 11904: 0xB349,\n\t34503 - 11904: 0xB344,\n\t34504 - 11904: 0xD7A6,\n\t34505 - 11904: 0xB34D,\n\t34507 - 11904: 0xB34A,\n\t34508 - 11904: 0xD7AA,\n\t34512 - 11904: 0xB5F1,\n\t34513 - 11904: 0xDBBF,\n\t34515 - 11904: 0xDBB4,\n\t34516 - 11904: 0xB5EE,\n\t34518 - 11904: 0xDFE7,\n\t34519 - 11904: 0xDBBD,\n\t34520 - 11904: 0xDBB1,\n\t34521 - 11904: 0xB5EC,\n\t34522 - 11904: 0xDBB6,\n\t34523 - 11904: 0xB5EF,\n\t34524 - 11904: 0xDBBA,\n\t34525 - 11904: 0xDBB8,\n\t34526 - 11904: 0xB5F2,\n\t34527 - 11904: 0xB5EB,\n\t34530 - 11904: 0xDBB2,\n\t34531 - 11904: 0xDBB5,\n\t34532 - 11904: 0xB5F0,\n\t34534 - 11904: 0xDBB3,\n\t34536 - 11904: 0xDBBE,\n\t34537 - 11904: 0xDBBC,\n\t34538 - 11904: 0xDBB7,\n\t34539 - 11904: 0xDBB9,\n\t34540 - 11904: 0xDBBB,\n\t34541 - 11904: 0xB5ED,\n\t34543 - 11904: 0x99CB,\n\t34549 - 11904: 0xDFE8,\n\t34550 - 11904: 0xDFEE,\n\t34551 - 11904: 0xDFE4,\n\t34552 - 11904: 0xDFEA,\n\t34553 - 11904: 0xB8BA,\n\t34554 - 11904: 0xDFE6,\n\t34555 - 11904: 0xB8C0,\n\t34558 - 11904: 0xB8BF,\n\t34560 - 11904: 0xB8BE,\n\t34561 - 11904: 0xDFED,\n\t34562 - 11904: 0xB8C1,\n\t34563 - 11904: 0xB8C2,\n\t34564 - 11904: 0xDFE3,\n\t34565 - 11904: 0xDFF0,\n\t34566 - 11904: 0xB8C3,\n\t34567 - 11904: 0xB8BD,\n\t34568 - 11904: 0xB8BC,\n\t34569 - 11904: 0xDFEC,\n\t34570 - 11904: 0xB8C4,\n\t34571 - 11904: 0xDFE2,\n\t34572 - 11904: 0xDFE5,\n\t34573 - 11904: 0xDFEF,\n\t34574 - 11904: 0xDFEB,\n\t34577 - 11904: 0xE3F4,\n\t34578 - 11904: 0xE3E9,\n\t34579 - 11904: 0xB8BB,\n\t34584 - 11904: 0xBB6A,\n\t34585 - 11904: 0xE3DD,\n\t34586 - 11904: 0xE3F2,\n\t34587 - 11904: 0xE3DE,\n\t34588 - 11904: 0xBB65,\n\t34590 - 11904: 0xE3DB,\n\t34592 - 11904: 0xE3E4,\n\t34593 - 11904: 0xE3DC,\n\t34594 - 11904: 0xBB67,\n\t34595 - 11904: 0xE3D6,\n\t34596 - 11904: 0xE3F1,\n\t34597 - 11904: 0xBB68,\n\t34598 - 11904: 0xE3EE,\n\t34599 - 11904: 0xE3EF,\n\t34600 - 11904: 0xE3D7,\n\t34601 - 11904: 0xBB6D,\n\t34602 - 11904: 0xE3E6,\n\t34604 - 11904: 0xE3E0,\n\t34605 - 11904: 0xE3E7,\n\t34606 - 11904: 0xE3DA,\n\t34608 - 11904: 0xE3F3,\n\t34609 - 11904: 0xE3EB,\n\t34610 - 11904: 0xE3E5,\n\t34611 - 11904: 0xE3D5,\n\t34612 - 11904: 0xBB69,\n\t34613 - 11904: 0xE3EC,\n\t34615 - 11904: 0xBB6C,\n\t34616 - 11904: 0xE3F0,\n\t34618 - 11904: 0xE3EA,\n\t34619 - 11904: 0xBB66,\n\t34620 - 11904: 0xE3E8,\n\t34622 - 11904: 0xE3E2,\n\t34623 - 11904: 0xBB64,\n\t34624 - 11904: 0xE3D9,\n\t34625 - 11904: 0xE3E1,\n\t34626 - 11904: 0xE3ED,\n\t34627 - 11904: 0xE3DF,\n\t34630 - 11904: 0xE3E3,\n\t34636 - 11904: 0xBDC1,\n\t34637 - 11904: 0xDFE9,\n\t34638 - 11904: 0xE7B2,\n\t34639 - 11904: 0xE7BB,\n\t34640 - 11904: 0xE7B1,\n\t34641 - 11904: 0xE7AD,\n\t34642 - 11904: 0xE7AA,\n\t34643 - 11904: 0xBDC2,\n\t34644 - 11904: 0xE7A8,\n\t34645 - 11904: 0xBB6B,\n\t34646 - 11904: 0xE7A1,\n\t34647 - 11904: 0xBDC0,\n\t34648 - 11904: 0xE7A7,\n\t34649 - 11904: 0xBDBF,\n\t34650 - 11904: 0xE7AC,\n\t34651 - 11904: 0xE7A9,\n\t34652 - 11904: 0xE7B9,\n\t34653 - 11904: 0xE7B4,\n\t34654 - 11904: 0xE7AE,\n\t34655 - 11904: 0xE7B3,\n\t34656 - 11904: 0xBDBB,\n\t34657 - 11904: 0xE7AB,\n\t34658 - 11904: 0xE7BE,\n\t34659 - 11904: 0xE7A2,\n\t34660 - 11904: 0xE7A3,\n\t34661 - 11904: 0xE7BA,\n\t34662 - 11904: 0xBDBC,\n\t34663 - 11904: 0xE7BF,\n\t34664 - 11904: 0xBDBE,\n\t34665 - 11904: 0xE7C0,\n\t34666 - 11904: 0xE7B0,\n\t34667 - 11904: 0xE3D8,\n\t34668 - 11904: 0xE7B6,\n\t34669 - 11904: 0xE7AF,\n\t34670 - 11904: 0xE7B8,\n\t34671 - 11904: 0xE7B5,\n\t34672 - 11904: 0x9DD5,\n\t34673 - 11904: 0x8FB0,\n\t34675 - 11904: 0xE7A6,\n\t34676 - 11904: 0xBDB9,\n\t34677 - 11904: 0xE7BD,\n\t34678 - 11904: 0xBDBA,\n\t34679 - 11904: 0xE7A4,\n\t34680 - 11904: 0xBDBD,\n\t34681 - 11904: 0xEB64,\n\t34682 - 11904: 0xE7B7,\n\t34683 - 11904: 0xE7BC,\n\t34685 - 11904: 0xFA7A,\n\t34689 - 11904: 0xEB61,\n\t34690 - 11904: 0xBDB8,\n\t34691 - 11904: 0xBFC0,\n\t34692 - 11904: 0xEB6B,\n\t34693 - 11904: 0xEB67,\n\t34694 - 11904: 0x9E5F,\n\t34695 - 11904: 0xEB65,\n\t34696 - 11904: 0xEB60,\n\t34697 - 11904: 0xEB6F,\n\t34699 - 11904: 0x99CD,\n\t34700 - 11904: 0xA0C9,\n\t34701 - 11904: 0xBFC4,\n\t34703 - 11904: 0xEB5C,\n\t34704 - 11904: 0xEB68,\n\t34705 - 11904: 0xEB69,\n\t34706 - 11904: 0xEB5F,\n\t34707 - 11904: 0xEB5E,\n\t34708 - 11904: 0xEB6C,\n\t34710 - 11904: 0xEB62,\n\t34711 - 11904: 0xEB5D,\n\t34712 - 11904: 0xEB63,\n\t34714 - 11904: 0xEB6E,\n\t34715 - 11904: 0xEB5B,\n\t34716 - 11904: 0xEB6D,\n\t34717 - 11904: 0xEB6A,\n\t34718 - 11904: 0xBFC2,\n\t34719 - 11904: 0xBFC1,\n\t34722 - 11904: 0xBFC3,\n\t34723 - 11904: 0xEB66,\n\t34724 - 11904: 0xF0CB,\n\t34725 - 11904: 0x9ADB,\n\t34729 - 11904: 0xA0C6,\n\t34730 - 11904: 0xEE59,\n\t34731 - 11904: 0xC1B1,\n\t34732 - 11904: 0xEE5D,\n\t34733 - 11904: 0xEE5A,\n\t34734 - 11904: 0xEE61,\n\t34735 - 11904: 0xEE67,\n\t34736 - 11904: 0xEE5C,\n\t34737 - 11904: 0x8FB4,\n\t34738 - 11904: 0xEE70,\n\t34739 - 11904: 0xC1AE,\n\t34740 - 11904: 0xEE6A,\n\t34741 - 11904: 0xEE5F,\n\t34742 - 11904: 0xEE6B,\n\t34743 - 11904: 0xEE66,\n\t34744 - 11904: 0xEE6D,\n\t34745 - 11904: 0xEE5E,\n\t34746 - 11904: 0xC1B3,\n\t34747 - 11904: 0xC1B2,\n\t34748 - 11904: 0xEE60,\n\t34749 - 11904: 0xEE6E,\n\t34750 - 11904: 0xEE58,\n\t34751 - 11904: 0xEE6C,\n\t34752 - 11904: 0xC1AC,\n\t34753 - 11904: 0xA0D7,\n\t34754 - 11904: 0xEE64,\n\t34755 - 11904: 0xEE63,\n\t34756 - 11904: 0xEE68,\n\t34757 - 11904: 0xEE5B,\n\t34758 - 11904: 0xC1B0,\n\t34760 - 11904: 0xC1B4,\n\t34761 - 11904: 0xEE62,\n\t34762 - 11904: 0xEE69,\n\t34763 - 11904: 0xC1B5,\n\t34764 - 11904: 0xEE65,\n\t34766 - 11904: 0xA0C7,\n\t34769 - 11904: 0xC1AD,\n\t34770 - 11904: 0xC1AF,\n\t34771 - 11904: 0xF0C7,\n\t34772 - 11904: 0xF0C5,\n\t34774 - 11904: 0xA043,\n\t34775 - 11904: 0xF0CC,\n\t34776 - 11904: 0xF0C9,\n\t34777 - 11904: 0xF0CD,\n\t34778 - 11904: 0x8FB5,\n\t34779 - 11904: 0xF0BE,\n\t34780 - 11904: 0xF0C6,\n\t34781 - 11904: 0xF0D1,\n\t34782 - 11904: 0xEE6F,\n\t34783 - 11904: 0xF0C2,\n\t34784 - 11904: 0xC2CF,\n\t34785 - 11904: 0xE7A5,\n\t34786 - 11904: 0xF0BD,\n\t34787 - 11904: 0xF0CA,\n\t34788 - 11904: 0xF0C4,\n\t34789 - 11904: 0xF0C1,\n\t34790 - 11904: 0xF0BC,\n\t34791 - 11904: 0xF0BB,\n\t34792 - 11904: 0xF0D0,\n\t34794 - 11904: 0xF0C0,\n\t34795 - 11904: 0xF0BF,\n\t34796 - 11904: 0xC2CD,\n\t34797 - 11904: 0xF0C8,\n\t34798 - 11904: 0x8FB2,\n\t34799 - 11904: 0xC2CC,\n\t34802 - 11904: 0xC2CE,\n\t34803 - 11904: 0xF0C3,\n\t34804 - 11904: 0xF0CF,\n\t34805 - 11904: 0xA061,\n\t34806 - 11904: 0xF2DE,\n\t34807 - 11904: 0xF2DF,\n\t34809 - 11904: 0xC3C9,\n\t34810 - 11904: 0xF2DC,\n\t34811 - 11904: 0xC3C6,\n\t34812 - 11904: 0xF2E4,\n\t34814 - 11904: 0xC3CA,\n\t34815 - 11904: 0xF2E6,\n\t34816 - 11904: 0xF2DB,\n\t34817 - 11904: 0xF0CE,\n\t34818 - 11904: 0xF2E8,\n\t34819 - 11904: 0xF2DD,\n\t34820 - 11904: 0x9E5E,\n\t34821 - 11904: 0xC3C7,\n\t34822 - 11904: 0xF2E3,\n\t34824 - 11904: 0xF2E5,\n\t34825 - 11904: 0xF2E0,\n\t34826 - 11904: 0xF2E7,\n\t34827 - 11904: 0xF2E2,\n\t34828 - 11904: 0xF2E1,\n\t34829 - 11904: 0xC3C8,\n\t34831 - 11904: 0xA063,\n\t34832 - 11904: 0xF4C5,\n\t34833 - 11904: 0xF4C6,\n\t34835 - 11904: 0xF4C8,\n\t34836 - 11904: 0xC4AE,\n\t34837 - 11904: 0xC4AF,\n\t34838 - 11904: 0xF4C9,\n\t34839 - 11904: 0xF4C7,\n\t34840 - 11904: 0x9FE8,\n\t34841 - 11904: 0xF4C4,\n\t34843 - 11904: 0xF642,\n\t34844 - 11904: 0xF645,\n\t34845 - 11904: 0xF641,\n\t34847 - 11904: 0xC4FA,\n\t34848 - 11904: 0xF643,\n\t34849 - 11904: 0xC4F9,\n\t34850 - 11904: 0xC4F8,\n\t34851 - 11904: 0xC4F7,\n\t34852 - 11904: 0xF644,\n\t34853 - 11904: 0xF751,\n\t34854 - 11904: 0xF74F,\n\t34855 - 11904: 0x9CB2,\n\t34856 - 11904: 0xF74E,\n\t34857 - 11904: 0xF640,\n\t34858 - 11904: 0xF750,\n\t34859 - 11904: 0xF646,\n\t34860 - 11904: 0xF74D,\n\t34861 - 11904: 0x957C,\n\t34862 - 11904: 0xF7F9,\n\t34863 - 11904: 0xF7D7,\n\t34864 - 11904: 0xF7F7,\n\t34865 - 11904: 0xC5DB,\n\t34866 - 11904: 0xF7F8,\n\t34867 - 11904: 0xF7FA,\n\t34869 - 11904: 0xF8BF,\n\t34870 - 11904: 0xC5FA,\n\t34871 - 11904: 0xF8BE,\n\t34872 - 11904: 0xF8BD,\n\t34873 - 11904: 0xC5FB,\n\t34875 - 11904: 0xC65A,\n\t34876 - 11904: 0xF96E,\n\t34877 - 11904: 0xF9A7,\n\t34878 - 11904: 0xF9A6,\n\t34879 - 11904: 0xF9A8,\n\t34880 - 11904: 0xA6E5,\n\t34881 - 11904: 0xD0AA,\n\t34882 - 11904: 0x9FC7,\n\t34883 - 11904: 0xD3CF,\n\t34884 - 11904: 0xD3D0,\n\t34885 - 11904: 0x8FBB,\n\t34886 - 11904: 0x8FBC,\n\t34888 - 11904: 0xDBC0,\n\t34890 - 11904: 0xF647,\n\t34891 - 11904: 0xF8C0,\n\t34892 - 11904: 0xA6E6,\n\t34893 - 11904: 0xAD6C,\n\t34894 - 11904: 0xD0AB,\n\t34895 - 11904: 0x8FEC,\n\t34898 - 11904: 0xD7B1,\n\t34899 - 11904: 0xB34E,\n\t34901 - 11904: 0xDBC2,\n\t34902 - 11904: 0xDBC1,\n\t34903 - 11904: 0xB5F3,\n\t34905 - 11904: 0xB8C5,\n\t34906 - 11904: 0xE7C1,\n\t34907 - 11904: 0xBDC3,\n\t34909 - 11904: 0xBDC4,\n\t34910 - 11904: 0x8FC0,\n\t34912 - 11904: 0x936A,\n\t34913 - 11904: 0xBFC5,\n\t34914 - 11904: 0xC5FC,\n\t34915 - 11904: 0xA6E7,\n\t34916 - 11904: 0x8BE4,\n\t34917 - 11904: 0x9C7C,\n\t34919 - 11904: 0xD0AC,\n\t34920 - 11904: 0xAAED,\n\t34921 - 11904: 0xD0AE,\n\t34922 - 11904: 0xD0AD,\n\t34923 - 11904: 0xAD6D,\n\t34925 - 11904: 0xD3D1,\n\t34926 - 11904: 0x95A1,\n\t34927 - 11904: 0xD3D8,\n\t34928 - 11904: 0xB049,\n\t34929 - 11904: 0xD3D6,\n\t34930 - 11904: 0xD3D4,\n\t34932 - 11904: 0xD3DB,\n\t34933 - 11904: 0xD3D2,\n\t34934 - 11904: 0xD3D3,\n\t34935 - 11904: 0xB04A,\n\t34937 - 11904: 0xB04E,\n\t34940 - 11904: 0xD3DC,\n\t34941 - 11904: 0xB04D,\n\t34942 - 11904: 0xD3DA,\n\t34943 - 11904: 0xD3D7,\n\t34944 - 11904: 0xD3D5,\n\t34945 - 11904: 0xB04B,\n\t34946 - 11904: 0xB04C,\n\t34947 - 11904: 0xD3D9,\n\t34948 - 11904: 0xFEEC,\n\t34951 - 11904: 0x95A3,\n\t34952 - 11904: 0xB350,\n\t34953 - 11904: 0xD7B2,\n\t34955 - 11904: 0xB355,\n\t34956 - 11904: 0xD7C2,\n\t34957 - 11904: 0xB354,\n\t34958 - 11904: 0xD7C4,\n\t34959 - 11904: 0x8C45,\n\t34960 - 11904: 0x8CB8,\n\t34961 - 11904: 0xD7B8,\n\t34962 - 11904: 0xB352,\n\t34963 - 11904: 0xD7C3,\n\t34965 - 11904: 0xD7B3,\n\t34966 - 11904: 0xB353,\n\t34967 - 11904: 0xD7BF,\n\t34968 - 11904: 0xD7BB,\n\t34969 - 11904: 0xD7BD,\n\t34970 - 11904: 0xD7B7,\n\t34971 - 11904: 0xD7BE,\n\t34972 - 11904: 0x8FC1,\n\t34973 - 11904: 0x87B7,\n\t34974 - 11904: 0xB34F,\n\t34975 - 11904: 0xD7BA,\n\t34976 - 11904: 0xA052,\n\t34977 - 11904: 0xD7B9,\n\t34978 - 11904: 0xD7B5,\n\t34980 - 11904: 0xD7C0,\n\t34983 - 11904: 0xD7BC,\n\t34984 - 11904: 0xD7B4,\n\t34986 - 11904: 0xD7B6,\n\t34987 - 11904: 0xB351,\n\t34988 - 11904: 0xD7C1,\n\t34990 - 11904: 0x99D0,\n\t34993 - 11904: 0xB5F6,\n\t34994 - 11904: 0xDBCD,\n\t34996 - 11904: 0x8FC3,\n\t34997 - 11904: 0x8FC4,\n\t34998 - 11904: 0xDBC9,\n\t34999 - 11904: 0xDBCB,\n\t35000 - 11904: 0xDBC6,\n\t35001 - 11904: 0xDBC5,\n\t35002 - 11904: 0xDBC3,\n\t35004 - 11904: 0xDBCA,\n\t35005 - 11904: 0xDBCC,\n\t35006 - 11904: 0xDBC8,\n\t35007 - 11904: 0x95A4,\n\t35008 - 11904: 0xDBC7,\n\t35009 - 11904: 0xB5F4,\n\t35010 - 11904: 0xB5F5,\n\t35013 - 11904: 0x8FC6,\n\t35015 - 11904: 0x9E60,\n\t35017 - 11904: 0xDBCF,\n\t35018 - 11904: 0xB8CD,\n\t35019 - 11904: 0xDFF2,\n\t35020 - 11904: 0xDFF8,\n\t35021 - 11904: 0xDFF3,\n\t35022 - 11904: 0xDFF4,\n\t35023 - 11904: 0xF9D8,\n\t35024 - 11904: 0xDFF9,\n\t35026 - 11904: 0xB8CF,\n\t35028 - 11904: 0xB8C7,\n\t35029 - 11904: 0xB8CE,\n\t35030 - 11904: 0xDFF1,\n\t35031 - 11904: 0xDBC4,\n\t35032 - 11904: 0xB8CA,\n\t35033 - 11904: 0xB8C8,\n\t35034 - 11904: 0xDFF7,\n\t35035 - 11904: 0xDFF6,\n\t35036 - 11904: 0xB8C9,\n\t35037 - 11904: 0xB8CB,\n\t35038 - 11904: 0xDFF5,\n\t35039 - 11904: 0xB8C6,\n\t35041 - 11904: 0xB8CC,\n\t35046 - 11904: 0x95A5,\n\t35047 - 11904: 0xE3F6,\n\t35048 - 11904: 0xBB74,\n\t35051 - 11904: 0xE442,\n\t35052 - 11904: 0xE441,\n\t35054 - 11904: 0xE3FB,\n\t35055 - 11904: 0xBB76,\n\t35056 - 11904: 0xE440,\n\t35057 - 11904: 0xE3F7,\n\t35058 - 11904: 0xE3F8,\n\t35059 - 11904: 0xBB6E,\n\t35060 - 11904: 0xBB70,\n\t35061 - 11904: 0x9CB3,\n\t35062 - 11904: 0xE3FD,\n\t35063 - 11904: 0xE3F5,\n\t35064 - 11904: 0xBB72,\n\t35065 - 11904: 0xBB71,\n\t35066 - 11904: 0xE3F9,\n\t35067 - 11904: 0xE3FE,\n\t35068 - 11904: 0xE3FC,\n\t35069 - 11904: 0xBB73,\n\t35070 - 11904: 0xE3FA,\n\t35071 - 11904: 0x99D1,\n\t35072 - 11904: 0xFEF1,\n\t35073 - 11904: 0xDBCE,\n\t35074 - 11904: 0xBB6F,\n\t35077 - 11904: 0xE7C2,\n\t35078 - 11904: 0xE7C9,\n\t35079 - 11904: 0xBDC6,\n\t35081 - 11904: 0xE7CD,\n\t35082 - 11904: 0xBDCA,\n\t35083 - 11904: 0xE7C5,\n\t35084 - 11904: 0xE7C3,\n\t35086 - 11904: 0xE7CC,\n\t35088 - 11904: 0xBDC5,\n\t35089 - 11904: 0xE7CB,\n\t35090 - 11904: 0xBDC7,\n\t35091 - 11904: 0xBDC8,\n\t35092 - 11904: 0xE7C4,\n\t35093 - 11904: 0xBDC9,\n\t35094 - 11904: 0xE7CA,\n\t35095 - 11904: 0xE7C6,\n\t35096 - 11904: 0xE7C7,\n\t35097 - 11904: 0xE7C8,\n\t35098 - 11904: 0xBB75,\n\t35102 - 11904: 0xEB70,\n\t35103 - 11904: 0xEB7C,\n\t35105 - 11904: 0xBFCA,\n\t35106 - 11904: 0xEB77,\n\t35107 - 11904: 0xEB79,\n\t35108 - 11904: 0x99D2,\n\t35109 - 11904: 0xBFC8,\n\t35110 - 11904: 0xEB71,\n\t35111 - 11904: 0xEB75,\n\t35113 - 11904: 0xEB78,\n\t35114 - 11904: 0xBFC6,\n\t35115 - 11904: 0xBFC9,\n\t35116 - 11904: 0xEB7B,\n\t35117 - 11904: 0xEB73,\n\t35118 - 11904: 0xEB74,\n\t35119 - 11904: 0xEB7A,\n\t35120 - 11904: 0xEB72,\n\t35121 - 11904: 0xEB76,\n\t35122 - 11904: 0xBFC7,\n\t35123 - 11904: 0xEE72,\n\t35125 - 11904: 0xEE71,\n\t35126 - 11904: 0xC1B7,\n\t35127 - 11904: 0xEE77,\n\t35128 - 11904: 0xC1B9,\n\t35131 - 11904: 0xC1B6,\n\t35132 - 11904: 0xEE73,\n\t35133 - 11904: 0xC1BA,\n\t35134 - 11904: 0xEE74,\n\t35137 - 11904: 0xEE75,\n\t35138 - 11904: 0xEE78,\n\t35139 - 11904: 0x9CC2,\n\t35140 - 11904: 0xC1B8,\n\t35142 - 11904: 0xF0D6,\n\t35143 - 11904: 0x99D3,\n\t35145 - 11904: 0xF0D9,\n\t35147 - 11904: 0xF0D3,\n\t35148 - 11904: 0xF0D5,\n\t35149 - 11904: 0x95A7,\n\t35151 - 11904: 0xF0D4,\n\t35152 - 11904: 0xF0D7,\n\t35153 - 11904: 0xF0D8,\n\t35154 - 11904: 0xEE76,\n\t35155 - 11904: 0xF0D2,\n\t35156 - 11904: 0x95A9,\n\t35158 - 11904: 0xC3CD,\n\t35159 - 11904: 0xF2EC,\n\t35160 - 11904: 0xF2EF,\n\t35161 - 11904: 0xF2F1,\n\t35162 - 11904: 0xF2EA,\n\t35163 - 11904: 0xF2EB,\n\t35164 - 11904: 0xF2EE,\n\t35165 - 11904: 0xF2F0,\n\t35166 - 11904: 0xC3CE,\n\t35167 - 11904: 0xC3CC,\n\t35168 - 11904: 0xC3CB,\n\t35169 - 11904: 0xF2ED,\n\t35170 - 11904: 0xF2E9,\n\t35171 - 11904: 0xF4CA,\n\t35172 - 11904: 0xC4B0,\n\t35173 - 11904: 0x95A6,\n\t35174 - 11904: 0xF4CB,\n\t35177 - 11904: 0xF649,\n\t35178 - 11904: 0xC4FB,\n\t35179 - 11904: 0xF64B,\n\t35180 - 11904: 0xC4FC,\n\t35181 - 11904: 0xF648,\n\t35182 - 11904: 0xF64A,\n\t35183 - 11904: 0xC5A8,\n\t35185 - 11904: 0xF752,\n\t35186 - 11904: 0xC5A7,\n\t35187 - 11904: 0xF7FD,\n\t35188 - 11904: 0xF7FC,\n\t35190 - 11904: 0xF7FB,\n\t35191 - 11904: 0x9C5D,\n\t35193 - 11904: 0xF948,\n\t35194 - 11904: 0xF949,\n\t35195 - 11904: 0xF94B,\n\t35196 - 11904: 0xF94A,\n\t35198 - 11904: 0xCA50,\n\t35199 - 11904: 0xA6E8,\n\t35200 - 11904: 0x98E2,\n\t35201 - 11904: 0xAD6E,\n\t35202 - 11904: 0xD7C5,\n\t35203 - 11904: 0xB5F7,\n\t35205 - 11904: 0xDFFA,\n\t35206 - 11904: 0xC2D0,\n\t35207 - 11904: 0x8FC9,\n\t35208 - 11904: 0xF2F2,\n\t35209 - 11904: 0xA0C2,\n\t35210 - 11904: 0x8FCA,\n\t35211 - 11904: 0xA8A3,\n\t35215 - 11904: 0xB357,\n\t35217 - 11904: 0x99D4,\n\t35219 - 11904: 0xB356,\n\t35220 - 11904: 0xA0B9,\n\t35221 - 11904: 0xDBD0,\n\t35222 - 11904: 0xB5F8,\n\t35223 - 11904: 0xDBD2,\n\t35224 - 11904: 0xDBD1,\n\t35227 - 11904: 0xDFFB,\n\t35228 - 11904: 0xB8D0,\n\t35229 - 11904: 0xE443,\n\t35230 - 11904: 0xE446,\n\t35231 - 11904: 0xE445,\n\t35233 - 11904: 0xE444,\n\t35234 - 11904: 0xE7CE,\n\t35235 - 11904: 0xE7D0,\n\t35236 - 11904: 0xE7CF,\n\t35237 - 11904: 0x9B58,\n\t35238 - 11904: 0xBFCC,\n\t35239 - 11904: 0x8FCD,\n\t35241 - 11904: 0xA0D4,\n\t35242 - 11904: 0xBFCB,\n\t35244 - 11904: 0xC1BB,\n\t35245 - 11904: 0xEE79,\n\t35246 - 11904: 0xEE7B,\n\t35247 - 11904: 0xEE7A,\n\t35250 - 11904: 0xC2D1,\n\t35254 - 11904: 0xF2F4,\n\t35255 - 11904: 0xF2F3,\n\t35257 - 11904: 0xF4CC,\n\t35258 - 11904: 0xC4B1,\n\t35260 - 11904: 0x8FCE,\n\t35261 - 11904: 0xC4FD,\n\t35262 - 11904: 0xF754,\n\t35263 - 11904: 0xF753,\n\t35264 - 11904: 0xC65B,\n\t35265 - 11904: 0x8BE5,\n\t35270 - 11904: 0x8979,\n\t35282 - 11904: 0xA8A4,\n\t35283 - 11904: 0xD0AF,\n\t35284 - 11904: 0xAD6F,\n\t35285 - 11904: 0xD7C8,\n\t35286 - 11904: 0xD7C6,\n\t35289 - 11904: 0xD7C7,\n\t35290 - 11904: 0xDBD4,\n\t35291 - 11904: 0xDBD5,\n\t35292 - 11904: 0xE043,\n\t35293 - 11904: 0xDBD3,\n\t35295 - 11904: 0xDFFC,\n\t35296 - 11904: 0xE041,\n\t35297 - 11904: 0xE040,\n\t35298 - 11904: 0xE042,\n\t35299 - 11904: 0xB8D1,\n\t35300 - 11904: 0xDFFE,\n\t35301 - 11904: 0xDFFD,\n\t35302 - 11904: 0xE044,\n\t35303 - 11904: 0x8FD0,\n\t35304 - 11904: 0xE449,\n\t35305 - 11904: 0xE447,\n\t35307 - 11904: 0xE448,\n\t35308 - 11904: 0xE7D3,\n\t35309 - 11904: 0xE7D1,\n\t35312 - 11904: 0xE7D2,\n\t35313 - 11904: 0xEB7D,\n\t35314 - 11904: 0xEE7C,\n\t35315 - 11904: 0xEE7D,\n\t35316 - 11904: 0xC2D2,\n\t35318 - 11904: 0xF2F5,\n\t35319 - 11904: 0xF4CD,\n\t35320 - 11904: 0xC4B2,\n\t35322 - 11904: 0xF64C,\n\t35323 - 11904: 0xF755,\n\t35324 - 11904: 0xC5A9,\n\t35326 - 11904: 0xF7FE,\n\t35327 - 11904: 0xF94C,\n\t35328 - 11904: 0xA8A5,\n\t35330 - 11904: 0xAD71,\n\t35331 - 11904: 0xAD72,\n\t35332 - 11904: 0xD0B0,\n\t35335 - 11904: 0xD0B1,\n\t35336 - 11904: 0xAD70,\n\t35338 - 11904: 0xB054,\n\t35340 - 11904: 0xB052,\n\t35342 - 11904: 0xB051,\n\t35343 - 11904: 0xB058,\n\t35344 - 11904: 0xB050,\n\t35345 - 11904: 0xB059,\n\t35346 - 11904: 0xD3DD,\n\t35347 - 11904: 0xB056,\n\t35349 - 11904: 0xB053,\n\t35350 - 11904: 0xB057,\n\t35351 - 11904: 0xB055,\n\t35352 - 11904: 0xB04F,\n\t35355 - 11904: 0xB35F,\n\t35356 - 11904: 0x95B6,\n\t35357 - 11904: 0xB359,\n\t35358 - 11904: 0xD7CC,\n\t35359 - 11904: 0xB35E,\n\t35362 - 11904: 0xB360,\n\t35363 - 11904: 0xB35A,\n\t35365 - 11904: 0xB35B,\n\t35367 - 11904: 0xD7CA,\n\t35369 - 11904: 0x99D6,\n\t35370 - 11904: 0xB358,\n\t35371 - 11904: 0x95E5,\n\t35372 - 11904: 0xD7CB,\n\t35373 - 11904: 0xB35D,\n\t35376 - 11904: 0xD7C9,\n\t35377 - 11904: 0xB35C,\n\t35380 - 11904: 0xB644,\n\t35382 - 11904: 0xB646,\n\t35384 - 11904: 0x99D7,\n\t35385 - 11904: 0xDBD8,\n\t35386 - 11904: 0xB645,\n\t35387 - 11904: 0xB5F9,\n\t35388 - 11904: 0xB5FD,\n\t35389 - 11904: 0x95B5,\n\t35390 - 11904: 0xB8E4,\n\t35391 - 11904: 0xE049,\n\t35392 - 11904: 0xDBDA,\n\t35393 - 11904: 0xB5FE,\n\t35396 - 11904: 0xDBDD,\n\t35397 - 11904: 0xDBDE,\n\t35398 - 11904: 0xB643,\n\t35400 - 11904: 0xDBE0,\n\t35401 - 11904: 0xA0CA,\n\t35402 - 11904: 0xDBE2,\n\t35404 - 11904: 0xDBE3,\n\t35405 - 11904: 0xDBD7,\n\t35406 - 11904: 0xDBD6,\n\t35407 - 11904: 0xDBE4,\n\t35408 - 11904: 0xB642,\n\t35409 - 11904: 0xDBE1,\n\t35410 - 11904: 0xDBDF,\n\t35412 - 11904: 0xB640,\n\t35413 - 11904: 0xB5FB,\n\t35414 - 11904: 0xB647,\n\t35415 - 11904: 0xDBDB,\n\t35416 - 11904: 0xDBDC,\n\t35417 - 11904: 0xDBD9,\n\t35419 - 11904: 0xB641,\n\t35422 - 11904: 0xB5FC,\n\t35424 - 11904: 0xB5FA,\n\t35425 - 11904: 0xE048,\n\t35426 - 11904: 0xB8DF,\n\t35427 - 11904: 0xB8DA,\n\t35430 - 11904: 0xB8D5,\n\t35431 - 11904: 0x9FFD,\n\t35432 - 11904: 0xB8E5,\n\t35433 - 11904: 0xB8D6,\n\t35435 - 11904: 0xB8D2,\n\t35436 - 11904: 0xB8E1,\n\t35437 - 11904: 0xB8DE,\n\t35438 - 11904: 0xB8E0,\n\t35440 - 11904: 0xB8D7,\n\t35441 - 11904: 0xB8DC,\n\t35442 - 11904: 0xB8D3,\n\t35443 - 11904: 0xB8D4,\n\t35444 - 11904: 0xE050,\n\t35445 - 11904: 0xE04D,\n\t35446 - 11904: 0xE045,\n\t35447 - 11904: 0xE04A,\n\t35449 - 11904: 0xB8E2,\n\t35450 - 11904: 0xE051,\n\t35451 - 11904: 0xB8E3,\n\t35452 - 11904: 0xB8D9,\n\t35454 - 11904: 0xA058,\n\t35455 - 11904: 0xE047,\n\t35457 - 11904: 0xE04F,\n\t35458 - 11904: 0xE04B,\n\t35459 - 11904: 0xE04E,\n\t35460 - 11904: 0xE04C,\n\t35461 - 11904: 0xB8DD,\n\t35462 - 11904: 0xE046,\n\t35463 - 11904: 0xB8D8,\n\t35467 - 11904: 0xE44C,\n\t35468 - 11904: 0xBB78,\n\t35469 - 11904: 0xBB7B,\n\t35471 - 11904: 0xE44E,\n\t35472 - 11904: 0x8FD6,\n\t35473 - 11904: 0xBBA5,\n\t35474 - 11904: 0xE44D,\n\t35475 - 11904: 0xBB7D,\n\t35476 - 11904: 0x99D8,\n\t35477 - 11904: 0xBDCF,\n\t35478 - 11904: 0xE44F,\n\t35480 - 11904: 0xBBA4,\n\t35481 - 11904: 0xE44B,\n\t35482 - 11904: 0xBBA6,\n\t35484 - 11904: 0x8FD3,\n\t35486 - 11904: 0xBB79,\n\t35488 - 11904: 0xB8DB,\n\t35489 - 11904: 0xBB7C,\n\t35491 - 11904: 0xBB7A,\n\t35492 - 11904: 0xBB7E,\n\t35493 - 11904: 0xBBA2,\n\t35494 - 11904: 0xBB77,\n\t35495 - 11904: 0xBBA7,\n\t35496 - 11904: 0xBBA3,\n\t35497 - 11904: 0x8FE5,\n\t35498 - 11904: 0xBBA1,\n\t35499 - 11904: 0xE44A,\n\t35503 - 11904: 0x8FE9,\n\t35504 - 11904: 0xBDD6,\n\t35506 - 11904: 0xBDD2,\n\t35508 - 11904: 0x99D9,\n\t35510 - 11904: 0xBDD9,\n\t35512 - 11904: 0xE7D6,\n\t35513 - 11904: 0xBDDA,\n\t35514 - 11904: 0xE7E2,\n\t35515 - 11904: 0xE7DB,\n\t35516 - 11904: 0xBDCB,\n\t35517 - 11904: 0xE7E3,\n\t35518 - 11904: 0xE7DD,\n\t35519 - 11904: 0xBDD5,\n\t35520 - 11904: 0xE7DE,\n\t35522 - 11904: 0xBDD4,\n\t35523 - 11904: 0xE7E1,\n\t35524 - 11904: 0xBDCE,\n\t35525 - 11904: 0xE7DF,\n\t35526 - 11904: 0xE7D5,\n\t35527 - 11904: 0xBDCD,\n\t35528 - 11904: 0xEBAA,\n\t35529 - 11904: 0xBDD3,\n\t35531 - 11904: 0xBDD0,\n\t35532 - 11904: 0x8CF7,\n\t35533 - 11904: 0xBDD8,\n\t35535 - 11904: 0xE7D4,\n\t35537 - 11904: 0xE7D8,\n\t35538 - 11904: 0xBDCC,\n\t35539 - 11904: 0xE7D7,\n\t35540 - 11904: 0xE7D9,\n\t35541 - 11904: 0xE7DA,\n\t35542 - 11904: 0xBDD7,\n\t35543 - 11904: 0xE7DC,\n\t35544 - 11904: 0xE7E0,\n\t35545 - 11904: 0xE7E4,\n\t35546 - 11904: 0x927C,\n\t35547 - 11904: 0xBDDB,\n\t35548 - 11904: 0xBFD2,\n\t35549 - 11904: 0xEBA5,\n\t35550 - 11904: 0xEBAB,\n\t35551 - 11904: 0xEBA8,\n\t35552 - 11904: 0xEB7E,\n\t35553 - 11904: 0xEBAC,\n\t35554 - 11904: 0xEBA1,\n\t35556 - 11904: 0xEBA7,\n\t35558 - 11904: 0xBFCD,\n\t35559 - 11904: 0xBFD3,\n\t35560 - 11904: 0xEBAD,\n\t35562 - 11904: 0x9C45,\n\t35563 - 11904: 0xBFCF,\n\t35565 - 11904: 0xBFD9,\n\t35566 - 11904: 0xBFD4,\n\t35567 - 11904: 0xEBAF,\n\t35568 - 11904: 0xEBA9,\n\t35569 - 11904: 0xBFD0,\n\t35570 - 11904: 0xEBA2,\n\t35571 - 11904: 0xBFDA,\n\t35572 - 11904: 0xEBA3,\n\t35573 - 11904: 0xEBA4,\n\t35574 - 11904: 0xBFDB,\n\t35575 - 11904: 0xBFD8,\n\t35576 - 11904: 0xBDD1,\n\t35577 - 11904: 0x8CE8,\n\t35578 - 11904: 0xBFCE,\n\t35579 - 11904: 0xEBB0,\n\t35580 - 11904: 0xBFDC,\n\t35582 - 11904: 0xBFD5,\n\t35583 - 11904: 0xEBAE,\n\t35584 - 11904: 0xBFD1,\n\t35585 - 11904: 0xBFD6,\n\t35586 - 11904: 0xBFD7,\n\t35588 - 11904: 0xC1C3,\n\t35589 - 11904: 0xEEA4,\n\t35590 - 11904: 0xEEAD,\n\t35591 - 11904: 0xEEAA,\n\t35592 - 11904: 0xEEAC,\n\t35594 - 11904: 0xC1C0,\n\t35595 - 11904: 0xEEA5,\n\t35596 - 11904: 0x8FDE,\n\t35597 - 11904: 0xEEAB,\n\t35598 - 11904: 0xC1BC,\n\t35599 - 11904: 0xEEA7,\n\t35600 - 11904: 0xC1C4,\n\t35601 - 11904: 0xEEA3,\n\t35602 - 11904: 0xEEA8,\n\t35603 - 11904: 0xEEAF,\n\t35604 - 11904: 0xEBA6,\n\t35605 - 11904: 0xEEA9,\n\t35606 - 11904: 0xEEA2,\n\t35607 - 11904: 0xC1BD,\n\t35608 - 11904: 0xEEA1,\n\t35609 - 11904: 0xC1BE,\n\t35610 - 11904: 0xEEB0,\n\t35611 - 11904: 0xC1BF,\n\t35612 - 11904: 0xEEAE,\n\t35613 - 11904: 0xC1C2,\n\t35614 - 11904: 0xEE7E,\n\t35615 - 11904: 0x8FDF,\n\t35616 - 11904: 0xC1C1,\n\t35618 - 11904: 0xEEA6,\n\t35619 - 11904: 0xF0DC,\n\t35620 - 11904: 0xF0EA,\n\t35621 - 11904: 0xF0E5,\n\t35622 - 11904: 0xF0E7,\n\t35623 - 11904: 0xF0DB,\n\t35624 - 11904: 0xC2D3,\n\t35626 - 11904: 0xF0DA,\n\t35627 - 11904: 0xC2D6,\n\t35628 - 11904: 0xC2D5,\n\t35629 - 11904: 0xA04B,\n\t35630 - 11904: 0xF0E9,\n\t35631 - 11904: 0xF0E1,\n\t35632 - 11904: 0xF0DE,\n\t35633 - 11904: 0xF0E4,\n\t35635 - 11904: 0xF0DD,\n\t35637 - 11904: 0xF0DF,\n\t35638 - 11904: 0xF0E8,\n\t35639 - 11904: 0xF0E6,\n\t35641 - 11904: 0xC2D4,\n\t35642 - 11904: 0xF0ED,\n\t35643 - 11904: 0xF0EB,\n\t35644 - 11904: 0xF0E2,\n\t35645 - 11904: 0xF0EC,\n\t35646 - 11904: 0xF0E3,\n\t35647 - 11904: 0x8FE2,\n\t35648 - 11904: 0xF2F9,\n\t35649 - 11904: 0xC3CF,\n\t35650 - 11904: 0xF341,\n\t35651 - 11904: 0xA0CC,\n\t35653 - 11904: 0xF64F,\n\t35654 - 11904: 0xC3D6,\n\t35655 - 11904: 0xF0E0,\n\t35656 - 11904: 0xF2F7,\n\t35657 - 11904: 0xC3D2,\n\t35658 - 11904: 0xF2F8,\n\t35659 - 11904: 0xF2FD,\n\t35660 - 11904: 0x8FE3,\n\t35661 - 11904: 0x8FE4,\n\t35662 - 11904: 0xC3D4,\n\t35663 - 11904: 0xC3D5,\n\t35664 - 11904: 0xF2F6,\n\t35665 - 11904: 0xF340,\n\t35666 - 11904: 0xF342,\n\t35667 - 11904: 0xF2FA,\n\t35668 - 11904: 0xF2FC,\n\t35669 - 11904: 0xF2FE,\n\t35670 - 11904: 0xF2FB,\n\t35671 - 11904: 0xF343,\n\t35672 - 11904: 0xC3D1,\n\t35673 - 11904: 0xC3D7,\n\t35674 - 11904: 0xC3D3,\n\t35676 - 11904: 0xC3D0,\n\t35677 - 11904: 0xF4D0,\n\t35678 - 11904: 0x9BC4,\n\t35679 - 11904: 0xC4B7,\n\t35680 - 11904: 0xF4CE,\n\t35682 - 11904: 0x9BFC,\n\t35683 - 11904: 0xF4D2,\n\t35685 - 11904: 0xF4D3,\n\t35686 - 11904: 0xC4B5,\n\t35687 - 11904: 0xF4D4,\n\t35688 - 11904: 0xF4D1,\n\t35689 - 11904: 0x964C,\n\t35690 - 11904: 0xF4CF,\n\t35691 - 11904: 0xC4B8,\n\t35692 - 11904: 0xC4B4,\n\t35693 - 11904: 0xF4D5,\n\t35695 - 11904: 0xC4B6,\n\t35696 - 11904: 0xC4B3,\n\t35700 - 11904: 0xC4FE,\n\t35703 - 11904: 0xC540,\n\t35704 - 11904: 0xF64E,\n\t35705 - 11904: 0xF64D,\n\t35706 - 11904: 0xF650,\n\t35707 - 11904: 0xF651,\n\t35709 - 11904: 0xC541,\n\t35710 - 11904: 0xF756,\n\t35711 - 11904: 0xF75B,\n\t35712 - 11904: 0xC5AA,\n\t35713 - 11904: 0x9AF6,\n\t35714 - 11904: 0xF758,\n\t35715 - 11904: 0x8CAE,\n\t35716 - 11904: 0xF757,\n\t35717 - 11904: 0xF75A,\n\t35718 - 11904: 0xF759,\n\t35720 - 11904: 0xF843,\n\t35722 - 11904: 0xC5DC,\n\t35723 - 11904: 0xF842,\n\t35724 - 11904: 0xF840,\n\t35726 - 11904: 0xF841,\n\t35727 - 11904: 0x87CB,\n\t35728 - 11904: 0x8FE7,\n\t35730 - 11904: 0xC5FE,\n\t35731 - 11904: 0xC5FD,\n\t35732 - 11904: 0xF8C1,\n\t35733 - 11904: 0xF8C2,\n\t35734 - 11904: 0xC640,\n\t35736 - 11904: 0xF94D,\n\t35737 - 11904: 0xF94E,\n\t35738 - 11904: 0xC667,\n\t35739 - 11904: 0x8FE8,\n\t35740 - 11904: 0xC66D,\n\t35742 - 11904: 0xF9A9,\n\t35743 - 11904: 0xF9C8,\n\t35744 - 11904: 0x8BE7,\n\t35774 - 11904: 0x897A,\n\t35810 - 11904: 0x897B,\n\t35895 - 11904: 0xA8A6,\n\t35897 - 11904: 0xD7CD,\n\t35899 - 11904: 0xD7CE,\n\t35900 - 11904: 0xE052,\n\t35901 - 11904: 0xE450,\n\t35902 - 11904: 0xE7E5,\n\t35903 - 11904: 0xC1C6,\n\t35905 - 11904: 0xC1C5,\n\t35906 - 11904: 0xF0EE,\n\t35907 - 11904: 0xF344,\n\t35909 - 11904: 0xF844,\n\t35910 - 11904: 0xA8A7,\n\t35911 - 11904: 0xD3DE,\n\t35912 - 11904: 0xB05A,\n\t35913 - 11904: 0xB361,\n\t35914 - 11904: 0xE054,\n\t35915 - 11904: 0xE053,\n\t35916 - 11904: 0xBDDC,\n\t35917 - 11904: 0xE7E6,\n\t35918 - 11904: 0xBDDD,\n\t35919 - 11904: 0xEEB1,\n\t35920 - 11904: 0xC2D7,\n\t35921 - 11904: 0x99DA,\n\t35924 - 11904: 0xC676,\n\t35925 - 11904: 0xA8A8,\n\t35926 - 11904: 0xCDCB,\n\t35927 - 11904: 0xD3DF,\n\t35930 - 11904: 0xB362,\n\t35932 - 11904: 0xD7CF,\n\t35933 - 11904: 0xD7D0,\n\t35935 - 11904: 0xDBE5,\n\t35937 - 11904: 0xB648,\n\t35938 - 11904: 0xB8E6,\n\t35940 - 11904: 0xE056,\n\t35941 - 11904: 0xE055,\n\t35942 - 11904: 0xE057,\n\t35944 - 11904: 0xE451,\n\t35945 - 11904: 0xE452,\n\t35946 - 11904: 0xBBA8,\n\t35947 - 11904: 0xBFDD,\n\t35948 - 11904: 0xBDDE,\n\t35949 - 11904: 0xBFDE,\n\t35951 - 11904: 0xEEB5,\n\t35952 - 11904: 0xEEB2,\n\t35953 - 11904: 0xEEB4,\n\t35954 - 11904: 0xEEB3,\n\t35955 - 11904: 0xC1C7,\n\t35957 - 11904: 0xF0EF,\n\t35958 - 11904: 0xF346,\n\t35959 - 11904: 0xF345,\n\t35960 - 11904: 0xCBA4,\n\t35961 - 11904: 0xB05C,\n\t35962 - 11904: 0xB05B,\n\t35963 - 11904: 0xD3E0,\n\t35965 - 11904: 0xD7D1,\n\t35968 - 11904: 0xDBE7,\n\t35969 - 11904: 0xDBE6,\n\t35970 - 11904: 0xB649,\n\t35972 - 11904: 0xE059,\n\t35973 - 11904: 0xE05A,\n\t35974 - 11904: 0xE058,\n\t35977 - 11904: 0xB8E8,\n\t35978 - 11904: 0xB8E7,\n\t35980 - 11904: 0xBBAA,\n\t35981 - 11904: 0xBBA9,\n\t35983 - 11904: 0xE7E7,\n\t35984 - 11904: 0xEBB3,\n\t35985 - 11904: 0xEBB1,\n\t35986 - 11904: 0xEBB2,\n\t35987 - 11904: 0xBFDF,\n\t35988 - 11904: 0xEEB7,\n\t35989 - 11904: 0xEEB6,\n\t35991 - 11904: 0xF0F2,\n\t35992 - 11904: 0xF0F1,\n\t35993 - 11904: 0xF0F0,\n\t35994 - 11904: 0xF347,\n\t35995 - 11904: 0x8FED,\n\t35996 - 11904: 0xF9AA,\n\t35997 - 11904: 0xA8A9,\n\t35998 - 11904: 0xAD73,\n\t35999 - 11904: 0x95C0,\n\t36000 - 11904: 0xAD74,\n\t36001 - 11904: 0xB05D,\n\t36002 - 11904: 0xB05E,\n\t36003 - 11904: 0xD3E2,\n\t36004 - 11904: 0xD3E1,\n\t36005 - 11904: 0xD7D2,\n\t36007 - 11904: 0xB368,\n\t36008 - 11904: 0xB366,\n\t36009 - 11904: 0xB363,\n\t36010 - 11904: 0xB367,\n\t36011 - 11904: 0xB365,\n\t36012 - 11904: 0xB364,\n\t36013 - 11904: 0xA0CB,\n\t36015 - 11904: 0xB64A,\n\t36016 - 11904: 0xDBEA,\n\t36018 - 11904: 0xB8ED,\n\t36019 - 11904: 0xB64C,\n\t36020 - 11904: 0xB651,\n\t36021 - 11904: 0xDBEC,\n\t36022 - 11904: 0xB653,\n\t36023 - 11904: 0xB652,\n\t36024 - 11904: 0xB655,\n\t36025 - 11904: 0xDBEB,\n\t36026 - 11904: 0xDBE8,\n\t36027 - 11904: 0xB64F,\n\t36028 - 11904: 0xB64B,\n\t36029 - 11904: 0xB64D,\n\t36030 - 11904: 0xDBE9,\n\t36031 - 11904: 0xB654,\n\t36032 - 11904: 0xB650,\n\t36033 - 11904: 0xB64E,\n\t36034 - 11904: 0xB8EF,\n\t36035 - 11904: 0xB8EE,\n\t36036 - 11904: 0xB8EC,\n\t36037 - 11904: 0xB8F0,\n\t36039 - 11904: 0xB8EA,\n\t36040 - 11904: 0xB8EB,\n\t36042 - 11904: 0xB8E9,\n\t36044 - 11904: 0xE05B,\n\t36045 - 11904: 0x9E48,\n\t36047 - 11904: 0xE454,\n\t36049 - 11904: 0xBBAC,\n\t36050 - 11904: 0xBBAD,\n\t36051 - 11904: 0xBBAB,\n\t36052 - 11904: 0x99DB,\n\t36053 - 11904: 0xE453,\n\t36054 - 11904: 0x8FF3,\n\t36055 - 11904: 0xE455,\n\t36057 - 11904: 0xE7EA,\n\t36058 - 11904: 0xE7EC,\n\t36059 - 11904: 0x8FF9,\n\t36060 - 11904: 0xBDE7,\n\t36061 - 11904: 0xE7ED,\n\t36062 - 11904: 0xBDE0,\n\t36063 - 11904: 0xE7E9,\n\t36064 - 11904: 0xBDDF,\n\t36065 - 11904: 0xBDE9,\n\t36066 - 11904: 0xBDE5,\n\t36067 - 11904: 0xBDE6,\n\t36068 - 11904: 0xBDE2,\n\t36069 - 11904: 0xE7E8,\n\t36070 - 11904: 0xBDE1,\n\t36071 - 11904: 0xE7EE,\n\t36072 - 11904: 0xE7EB,\n\t36073 - 11904: 0x95C1,\n\t36074 - 11904: 0xBDE8,\n\t36075 - 11904: 0xA04E,\n\t36076 - 11904: 0xBDE3,\n\t36077 - 11904: 0xBDE4,\n\t36078 - 11904: 0xEBB5,\n\t36080 - 11904: 0xEBB7,\n\t36081 - 11904: 0xEBB6,\n\t36082 - 11904: 0x99DC,\n\t36083 - 11904: 0xEBB8,\n\t36084 - 11904: 0xBFE0,\n\t36085 - 11904: 0xEBB4,\n\t36087 - 11904: 0xA064,\n\t36088 - 11904: 0xC1CB,\n\t36089 - 11904: 0xEEB8,\n\t36090 - 11904: 0xC1C8,\n\t36091 - 11904: 0xC1CC,\n\t36092 - 11904: 0xC1CA,\n\t36093 - 11904: 0xC1C9,\n\t36094 - 11904: 0xF0F3,\n\t36096 - 11904: 0xF0F6,\n\t36098 - 11904: 0xF0F5,\n\t36099 - 11904: 0x8FF7,\n\t36100 - 11904: 0xF0F4,\n\t36101 - 11904: 0xC2D8,\n\t36102 - 11904: 0xF348,\n\t36103 - 11904: 0xF349,\n\t36104 - 11904: 0xC3D8,\n\t36105 - 11904: 0xF34A,\n\t36106 - 11904: 0xC3D9,\n\t36107 - 11904: 0x89B0,\n\t36108 - 11904: 0xA048,\n\t36109 - 11904: 0xC4BA,\n\t36111 - 11904: 0xC4B9,\n\t36112 - 11904: 0xF652,\n\t36113 - 11904: 0x8FFB,\n\t36114 - 11904: 0x8FF6,\n\t36115 - 11904: 0xC542,\n\t36116 - 11904: 0xF653,\n\t36117 - 11904: 0xF75C,\n\t36118 - 11904: 0xC5AB,\n\t36119 - 11904: 0xC5AC,\n\t36120 - 11904: 0x9DDC,\n\t36121 - 11904: 0xF845,\n\t36123 - 11904: 0xC642,\n\t36124 - 11904: 0x99DD,\n\t36125 - 11904: 0x8BE8,\n\t36196 - 11904: 0xA8AA,\n\t36198 - 11904: 0xB36A,\n\t36199 - 11904: 0xB369,\n\t36200 - 11904: 0xE05C,\n\t36201 - 11904: 0xE05D,\n\t36203 - 11904: 0xBBAE,\n\t36204 - 11904: 0xEBB9,\n\t36205 - 11904: 0xBDEA,\n\t36206 - 11904: 0xEBBA,\n\t36207 - 11904: 0xEEB9,\n\t36208 - 11904: 0xA8AB,\n\t36210 - 11904: 0xD0B2,\n\t36211 - 11904: 0xAD76,\n\t36212 - 11904: 0xAD75,\n\t36214 - 11904: 0xD3E3,\n\t36215 - 11904: 0xB05F,\n\t36216 - 11904: 0xD3E4,\n\t36217 - 11904: 0xD7D5,\n\t36218 - 11904: 0x92C1,\n\t36219 - 11904: 0xD7D4,\n\t36221 - 11904: 0xD7D3,\n\t36224 - 11904: 0xDBEE,\n\t36225 - 11904: 0xB658,\n\t36226 - 11904: 0x9FD6,\n\t36228 - 11904: 0xDBED,\n\t36229 - 11904: 0xB657,\n\t36233 - 11904: 0xDBEF,\n\t36234 - 11904: 0xB656,\n\t36236 - 11904: 0xE05F,\n\t36237 - 11904: 0xE062,\n\t36238 - 11904: 0xE060,\n\t36239 - 11904: 0xE061,\n\t36240 - 11904: 0xE065,\n\t36241 - 11904: 0xE05E,\n\t36242 - 11904: 0xE066,\n\t36243 - 11904: 0xE063,\n\t36244 - 11904: 0xE064,\n\t36245 - 11904: 0xBBB0,\n\t36246 - 11904: 0xE456,\n\t36249 - 11904: 0xBBAF,\n\t36251 - 11904: 0xE7F2,\n\t36252 - 11904: 0xE7F0,\n\t36255 - 11904: 0xBDEB,\n\t36256 - 11904: 0xE7EF,\n\t36257 - 11904: 0xE7F1,\n\t36259 - 11904: 0xBDEC,\n\t36261 - 11904: 0xEBBB,\n\t36262 - 11904: 0xA0D2,\n\t36263 - 11904: 0xEBBC,\n\t36264 - 11904: 0xC1CD,\n\t36265 - 11904: 0x9040,\n\t36266 - 11904: 0xF34C,\n\t36267 - 11904: 0xF34E,\n\t36268 - 11904: 0xF34B,\n\t36269 - 11904: 0xF34D,\n\t36270 - 11904: 0xF4D6,\n\t36271 - 11904: 0xF654,\n\t36274 - 11904: 0xF96F,\n\t36275 - 11904: 0xA8AC,\n\t36276 - 11904: 0xAD77,\n\t36277 - 11904: 0xD3E5,\n\t36278 - 11904: 0xD3E7,\n\t36279 - 11904: 0xD3E6,\n\t36281 - 11904: 0xD7D8,\n\t36282 - 11904: 0xB36C,\n\t36284 - 11904: 0xD7D6,\n\t36286 - 11904: 0xB36B,\n\t36287 - 11904: 0xD7D9,\n\t36288 - 11904: 0x8AC4,\n\t36289 - 11904: 0xD7DA,\n\t36290 - 11904: 0xD7D7,\n\t36291 - 11904: 0x99E0,\n\t36293 - 11904: 0xDBFB,\n\t36294 - 11904: 0xB660,\n\t36295 - 11904: 0xDBF3,\n\t36296 - 11904: 0xDBF9,\n\t36299 - 11904: 0xB65B,\n\t36300 - 11904: 0xB65E,\n\t36301 - 11904: 0xDBF2,\n\t36302 - 11904: 0xB659,\n\t36303 - 11904: 0xDBF6,\n\t36304 - 11904: 0xE06C,\n\t36305 - 11904: 0xB65D,\n\t36307 - 11904: 0xDBF1,\n\t36308 - 11904: 0x9FF0,\n\t36309 - 11904: 0xDBF7,\n\t36310 - 11904: 0xDBF4,\n\t36311 - 11904: 0xDBFA,\n\t36312 - 11904: 0xDBF0,\n\t36313 - 11904: 0xDBF8,\n\t36314 - 11904: 0xB65C,\n\t36315 - 11904: 0xB65F,\n\t36316 - 11904: 0xDBF5,\n\t36317 - 11904: 0xB65A,\n\t36319 - 11904: 0xB8F2,\n\t36320 - 11904: 0xE068,\n\t36321 - 11904: 0xB8F1,\n\t36322 - 11904: 0xE06F,\n\t36323 - 11904: 0xE06E,\n\t36324 - 11904: 0xB8F8,\n\t36326 - 11904: 0xB8F9,\n\t36327 - 11904: 0xE070,\n\t36328 - 11904: 0xB8F3,\n\t36329 - 11904: 0xE06D,\n\t36330 - 11904: 0xB8F7,\n\t36331 - 11904: 0xE072,\n\t36332 - 11904: 0xE069,\n\t36334 - 11904: 0xE06B,\n\t36335 - 11904: 0xB8F4,\n\t36336 - 11904: 0xE067,\n\t36337 - 11904: 0xE06A,\n\t36338 - 11904: 0xE071,\n\t36339 - 11904: 0xB8F5,\n\t36340 - 11904: 0xE073,\n\t36346 - 11904: 0xB8F6,\n\t36348 - 11904: 0xBBB1,\n\t36349 - 11904: 0xE45B,\n\t36350 - 11904: 0xE461,\n\t36351 - 11904: 0xE459,\n\t36352 - 11904: 0xE462,\n\t36353 - 11904: 0x9FF3,\n\t36354 - 11904: 0xE458,\n\t36355 - 11904: 0xE45D,\n\t36356 - 11904: 0xE463,\n\t36357 - 11904: 0xE460,\n\t36358 - 11904: 0xE45F,\n\t36359 - 11904: 0xE45E,\n\t36361 - 11904: 0xE457,\n\t36362 - 11904: 0xE45C,\n\t36365 - 11904: 0xE45A,\n\t36366 - 11904: 0x9DBF,\n\t36367 - 11904: 0xBDF1,\n\t36368 - 11904: 0xBDEE,\n\t36369 - 11904: 0xE7FB,\n\t36370 - 11904: 0xE841,\n\t36371 - 11904: 0xE843,\n\t36372 - 11904: 0xE840,\n\t36373 - 11904: 0xE7F8,\n\t36374 - 11904: 0xE7FA,\n\t36375 - 11904: 0xE845,\n\t36376 - 11904: 0xE842,\n\t36377 - 11904: 0xE7FC,\n\t36378 - 11904: 0xE846,\n\t36379 - 11904: 0xE7F9,\n\t36380 - 11904: 0xE844,\n\t36381 - 11904: 0xBDEF,\n\t36382 - 11904: 0xBDF5,\n\t36383 - 11904: 0xBDF3,\n\t36384 - 11904: 0xE7F3,\n\t36385 - 11904: 0xBDF4,\n\t36386 - 11904: 0xBDF0,\n\t36387 - 11904: 0xE7F4,\n\t36388 - 11904: 0xE7F6,\n\t36389 - 11904: 0xE7F5,\n\t36390 - 11904: 0xE7FD,\n\t36391 - 11904: 0xE7FE,\n\t36392 - 11904: 0x9FF6,\n\t36393 - 11904: 0xBDF2,\n\t36394 - 11904: 0x95C8,\n\t36395 - 11904: 0xBDED,\n\t36397 - 11904: 0x9E5A,\n\t36398 - 11904: 0xE7F7,\n\t36400 - 11904: 0xEBC6,\n\t36401 - 11904: 0xBFE2,\n\t36403 - 11904: 0xEBBD,\n\t36404 - 11904: 0xBFE3,\n\t36405 - 11904: 0xBFE6,\n\t36406 - 11904: 0xEBC2,\n\t36408 - 11904: 0xEBBF,\n\t36409 - 11904: 0xBFE5,\n\t36410 - 11904: 0x99E3,\n\t36412 - 11904: 0xEBC3,\n\t36413 - 11904: 0xEBC4,\n\t36414 - 11904: 0xEBBE,\n\t36415 - 11904: 0xEBC7,\n\t36416 - 11904: 0xEBC0,\n\t36417 - 11904: 0xEBC5,\n\t36418 - 11904: 0xBFE4,\n\t36420 - 11904: 0xBFE1,\n\t36421 - 11904: 0xEBC1,\n\t36422 - 11904: 0x8A4A,\n\t36423 - 11904: 0xEEBF,\n\t36424 - 11904: 0xC1D0,\n\t36425 - 11904: 0xC1CE,\n\t36426 - 11904: 0xC1D1,\n\t36427 - 11904: 0xC1CF,\n\t36428 - 11904: 0xEEBE,\n\t36429 - 11904: 0xEEBB,\n\t36430 - 11904: 0xEEBA,\n\t36431 - 11904: 0x9FF1,\n\t36432 - 11904: 0xEEBD,\n\t36435 - 11904: 0xEEBC,\n\t36436 - 11904: 0xF145,\n\t36437 - 11904: 0xC2DE,\n\t36438 - 11904: 0xF0FB,\n\t36439 - 11904: 0xF0FA,\n\t36441 - 11904: 0xC2D9,\n\t36442 - 11904: 0xF141,\n\t36443 - 11904: 0xF140,\n\t36444 - 11904: 0xF0F7,\n\t36445 - 11904: 0xF143,\n\t36446 - 11904: 0xF0FC,\n\t36447 - 11904: 0xC2DD,\n\t36448 - 11904: 0xF0F9,\n\t36449 - 11904: 0xF142,\n\t36450 - 11904: 0xF0F8,\n\t36451 - 11904: 0xC2DA,\n\t36452 - 11904: 0xC2DC,\n\t36453 - 11904: 0xF0FD,\n\t36454 - 11904: 0xC2DB,\n\t36455 - 11904: 0xF0FE,\n\t36456 - 11904: 0x8AA7,\n\t36457 - 11904: 0xF144,\n\t36458 - 11904: 0xF352,\n\t36460 - 11904: 0xC3DE,\n\t36461 - 11904: 0xF34F,\n\t36463 - 11904: 0xF353,\n\t36465 - 11904: 0x99E6,\n\t36466 - 11904: 0xC3DB,\n\t36467 - 11904: 0xF351,\n\t36468 - 11904: 0xC3E0,\n\t36469 - 11904: 0x9FF7,\n\t36470 - 11904: 0xC3DD,\n\t36471 - 11904: 0x9FED,\n\t36472 - 11904: 0xF350,\n\t36474 - 11904: 0xC3DF,\n\t36475 - 11904: 0xF354,\n\t36476 - 11904: 0xC3DA,\n\t36478 - 11904: 0x8A5C,\n\t36480 - 11904: 0x9DAE,\n\t36481 - 11904: 0xC4BC,\n\t36482 - 11904: 0xC4BE,\n\t36484 - 11904: 0xF4D9,\n\t36485 - 11904: 0xC4BD,\n\t36486 - 11904: 0xF4D7,\n\t36487 - 11904: 0xC3DC,\n\t36488 - 11904: 0xF4D8,\n\t36489 - 11904: 0xC4BB,\n\t36490 - 11904: 0xC543,\n\t36491 - 11904: 0xC545,\n\t36492 - 11904: 0xF656,\n\t36493 - 11904: 0xC544,\n\t36494 - 11904: 0xF655,\n\t36496 - 11904: 0xF761,\n\t36497 - 11904: 0xC5AD,\n\t36498 - 11904: 0xF760,\n\t36499 - 11904: 0xC5AE,\n\t36500 - 11904: 0xF75E,\n\t36501 - 11904: 0xF75D,\n\t36502 - 11904: 0xF762,\n\t36503 - 11904: 0xF763,\n\t36504 - 11904: 0xF846,\n\t36506 - 11904: 0xF75F,\n\t36509 - 11904: 0xF8C6,\n\t36510 - 11904: 0xF8C3,\n\t36511 - 11904: 0xF8C4,\n\t36512 - 11904: 0xF8C5,\n\t36513 - 11904: 0xC65C,\n\t36515 - 11904: 0xF951,\n\t36516 - 11904: 0xF950,\n\t36517 - 11904: 0xF94F,\n\t36518 - 11904: 0xF970,\n\t36519 - 11904: 0x95C9,\n\t36520 - 11904: 0xF9BE,\n\t36521 - 11904: 0xF9AB,\n\t36522 - 11904: 0xC66E,\n\t36523 - 11904: 0xA8AD,\n\t36524 - 11904: 0xB060,\n\t36525 - 11904: 0x9048,\n\t36528 - 11904: 0x99E8,\n\t36530 - 11904: 0xB8FA,\n\t36534 - 11904: 0x9049,\n\t36537 - 11904: 0x8CBA,\n\t36538 - 11904: 0xBDF6,\n\t36540 - 11904: 0x90B1,\n\t36541 - 11904: 0xEBC8,\n\t36544 - 11904: 0xC2DF,\n\t36546 - 11904: 0xF355,\n\t36547 - 11904: 0x904A,\n\t36553 - 11904: 0xF9AC,\n\t36554 - 11904: 0xA8AE,\n\t36555 - 11904: 0xAAEE,\n\t36556 - 11904: 0xAD79,\n\t36557 - 11904: 0xAD78,\n\t36558 - 11904: 0x99EA,\n\t36559 - 11904: 0xB063,\n\t36561 - 11904: 0xD3E8,\n\t36562 - 11904: 0xB061,\n\t36563 - 11904: 0xD3E9,\n\t36564 - 11904: 0xB062,\n\t36567 - 11904: 0xD7DF,\n\t36568 - 11904: 0xD7DB,\n\t36570 - 11904: 0x9BD1,\n\t36571 - 11904: 0xB36D,\n\t36572 - 11904: 0xD7DE,\n\t36573 - 11904: 0xD7DD,\n\t36574 - 11904: 0xD7DC,\n\t36575 - 11904: 0xB36E,\n\t36576 - 11904: 0xD7E0,\n\t36577 - 11904: 0xD7E1,\n\t36578 - 11904: 0x99EB,\n\t36580 - 11904: 0x99EC,\n\t36581 - 11904: 0xDC43,\n\t36582 - 11904: 0xDC41,\n\t36583 - 11904: 0xDC45,\n\t36584 - 11904: 0xDC46,\n\t36585 - 11904: 0xDC4C,\n\t36587 - 11904: 0xDC48,\n\t36588 - 11904: 0xDC4A,\n\t36589 - 11904: 0x99ED,\n\t36590 - 11904: 0xDC42,\n\t36591 - 11904: 0xDBFC,\n\t36593 - 11904: 0xDC49,\n\t36594 - 11904: 0x99EE,\n\t36596 - 11904: 0xDC4B,\n\t36597 - 11904: 0xDC44,\n\t36598 - 11904: 0xDC47,\n\t36599 - 11904: 0xDBFD,\n\t36600 - 11904: 0xB662,\n\t36601 - 11904: 0xDC40,\n\t36602 - 11904: 0xDBFE,\n\t36603 - 11904: 0xB661,\n\t36604 - 11904: 0xB663,\n\t36606 - 11904: 0xB8FD,\n\t36607 - 11904: 0xE075,\n\t36608 - 11904: 0xE077,\n\t36609 - 11904: 0xE076,\n\t36610 - 11904: 0xE07B,\n\t36611 - 11904: 0xB8FB,\n\t36613 - 11904: 0xE078,\n\t36614 - 11904: 0xE074,\n\t36615 - 11904: 0xE079,\n\t36616 - 11904: 0xE07A,\n\t36617 - 11904: 0xB8FC,\n\t36618 - 11904: 0xB8FE,\n\t36619 - 11904: 0xE07C,\n\t36621 - 11904: 0xE467,\n\t36622 - 11904: 0xE466,\n\t36624 - 11904: 0xE464,\n\t36625 - 11904: 0xE465,\n\t36626 - 11904: 0xBBB3,\n\t36627 - 11904: 0xBBB5,\n\t36628 - 11904: 0xBBB2,\n\t36629 - 11904: 0xBBB4,\n\t36630 - 11904: 0xE84D,\n\t36631 - 11904: 0xE84E,\n\t36632 - 11904: 0xE849,\n\t36633 - 11904: 0x904C,\n\t36634 - 11904: 0xE84A,\n\t36635 - 11904: 0xBDF8,\n\t36636 - 11904: 0xBDFD,\n\t36637 - 11904: 0xBDF7,\n\t36638 - 11904: 0xBDFE,\n\t36639 - 11904: 0xBDF9,\n\t36640 - 11904: 0xE84B,\n\t36643 - 11904: 0xE84C,\n\t36644 - 11904: 0xE848,\n\t36645 - 11904: 0xBE40,\n\t36646 - 11904: 0xBDFB,\n\t36649 - 11904: 0xBDFA,\n\t36650 - 11904: 0xBDFC,\n\t36652 - 11904: 0xE847,\n\t36653 - 11904: 0x904D,\n\t36654 - 11904: 0xEBCA,\n\t36655 - 11904: 0xBFE8,\n\t36656 - 11904: 0x95CB,\n\t36658 - 11904: 0xEBCC,\n\t36659 - 11904: 0xBFEA,\n\t36660 - 11904: 0xEBCF,\n\t36661 - 11904: 0xEBCB,\n\t36662 - 11904: 0xEBC9,\n\t36663 - 11904: 0xEBCE,\n\t36664 - 11904: 0xBFE9,\n\t36665 - 11904: 0xEBCD,\n\t36667 - 11904: 0xBFE7,\n\t36670 - 11904: 0xC1D3,\n\t36671 - 11904: 0xC1D6,\n\t36672 - 11904: 0xEEC1,\n\t36673 - 11904: 0x97E2,\n\t36674 - 11904: 0xC1D4,\n\t36675 - 11904: 0xEEC0,\n\t36676 - 11904: 0xC1D2,\n\t36677 - 11904: 0xC1D5,\n\t36678 - 11904: 0xF146,\n\t36679 - 11904: 0xF147,\n\t36680 - 11904: 0xF148,\n\t36681 - 11904: 0xC2E0,\n\t36682 - 11904: 0x95CC,\n\t36683 - 11904: 0xF149,\n\t36685 - 11904: 0xC2E1,\n\t36686 - 11904: 0xC3E2,\n\t36687 - 11904: 0xF358,\n\t36688 - 11904: 0xF359,\n\t36689 - 11904: 0xF357,\n\t36690 - 11904: 0xF356,\n\t36691 - 11904: 0xF35A,\n\t36692 - 11904: 0xC3E1,\n\t36693 - 11904: 0xF4DD,\n\t36694 - 11904: 0xF4DB,\n\t36695 - 11904: 0xF4DC,\n\t36696 - 11904: 0xF4DE,\n\t36697 - 11904: 0xF4DA,\n\t36698 - 11904: 0xF4DF,\n\t36699 - 11904: 0xF658,\n\t36700 - 11904: 0x9F78,\n\t36701 - 11904: 0xF659,\n\t36702 - 11904: 0xF657,\n\t36703 - 11904: 0xC546,\n\t36704 - 11904: 0xF764,\n\t36705 - 11904: 0xC5AF,\n\t36706 - 11904: 0xF765,\n\t36707 - 11904: 0xF848,\n\t36708 - 11904: 0xF847,\n\t36710 - 11904: 0x897C,\n\t36711 - 11904: 0x897D,\n\t36718 - 11904: 0x897E,\n\t36755 - 11904: 0x995D,\n\t36763 - 11904: 0xA8AF,\n\t36764 - 11904: 0xB664,\n\t36767 - 11904: 0xB940,\n\t36768 - 11904: 0x9B5A,\n\t36771 - 11904: 0xBBB6,\n\t36773 - 11904: 0x9050,\n\t36774 - 11904: 0xBFEC,\n\t36775 - 11904: 0x8C4F,\n\t36776 - 11904: 0xBFEB,\n\t36781 - 11904: 0xC3E3,\n\t36782 - 11904: 0xC47C,\n\t36783 - 11904: 0xC547,\n\t36784 - 11904: 0xA8B0,\n\t36785 - 11904: 0xB064,\n\t36786 - 11904: 0xB941,\n\t36787 - 11904: 0x9054,\n\t36788 - 11904: 0xF35B,\n\t36789 - 11904: 0xC6D6,\n\t36790 - 11904: 0x9AA8,\n\t36791 - 11904: 0x99EF,\n\t36792 - 11904: 0xFEEB,\n\t36793 - 11904: 0x9DA3,\n\t36794 - 11904: 0x9DA1,\n\t36795 - 11904: 0x9943,\n\t36796 - 11904: 0x9945,\n\t36798 - 11904: 0x9D7D,\n\t36799 - 11904: 0xCBA6,\n\t36801 - 11904: 0x99F0,\n\t36802 - 11904: 0xA8B1,\n\t36804 - 11904: 0xA8B4,\n\t36805 - 11904: 0xA8B3,\n\t36806 - 11904: 0xA8B2,\n\t36809 - 11904: 0xCBA5,\n\t36810 - 11904: 0x99F1,\n\t36811 - 11904: 0xCDCD,\n\t36812 - 11904: 0x99F2,\n\t36813 - 11904: 0xCDCF,\n\t36814 - 11904: 0xAAEF,\n\t36815 - 11904: 0x8CBC,\n\t36816 - 11904: 0x9D60,\n\t36817 - 11904: 0xAAF1,\n\t36818 - 11904: 0xCDCC,\n\t36819 - 11904: 0xCDCE,\n\t36820 - 11904: 0xAAF0,\n\t36821 - 11904: 0xCDD1,\n\t36822 - 11904: 0xCDD0,\n\t36823 - 11904: 0xCDD2,\n\t36826 - 11904: 0xA0A3,\n\t36832 - 11904: 0xD0B6,\n\t36833 - 11904: 0xD0B4,\n\t36834 - 11904: 0xAD7C,\n\t36835 - 11904: 0xD0B3,\n\t36836 - 11904: 0xADA3,\n\t36837 - 11904: 0xAD7E,\n\t36838 - 11904: 0xAD7B,\n\t36840 - 11904: 0xADA4,\n\t36842 - 11904: 0xAD7D,\n\t36843 - 11904: 0xADA2,\n\t36845 - 11904: 0xADA1,\n\t36846 - 11904: 0xD0B5,\n\t36848 - 11904: 0xAD7A,\n\t36852 - 11904: 0xB06A,\n\t36853 - 11904: 0xD3EB,\n\t36854 - 11904: 0xD3F1,\n\t36855 - 11904: 0xB067,\n\t36856 - 11904: 0xB06E,\n\t36857 - 11904: 0x905B,\n\t36858 - 11904: 0xB069,\n\t36859 - 11904: 0xD3EE,\n\t36860 - 11904: 0xD3F0,\n\t36861 - 11904: 0xB06C,\n\t36862 - 11904: 0xD3EA,\n\t36863 - 11904: 0xD3ED,\n\t36864 - 11904: 0xB068,\n\t36865 - 11904: 0xB065,\n\t36866 - 11904: 0xD3EC,\n\t36867 - 11904: 0xB06B,\n\t36868 - 11904: 0xD3EF,\n\t36869 - 11904: 0xB06D,\n\t36870 - 11904: 0xB066,\n\t36872 - 11904: 0x9EDB,\n\t36875 - 11904: 0xD7E3,\n\t36876 - 11904: 0xD7E6,\n\t36877 - 11904: 0xB370,\n\t36879 - 11904: 0xB37A,\n\t36880 - 11904: 0xB376,\n\t36881 - 11904: 0xD7E4,\n\t36882 - 11904: 0x9D79,\n\t36884 - 11904: 0xB37E,\n\t36885 - 11904: 0xB377,\n\t36886 - 11904: 0xB37C,\n\t36887 - 11904: 0xB372,\n\t36889 - 11904: 0xB36F,\n\t36890 - 11904: 0xB371,\n\t36891 - 11904: 0xB37D,\n\t36892 - 11904: 0xD7E5,\n\t36893 - 11904: 0xB375,\n\t36894 - 11904: 0xB378,\n\t36895 - 11904: 0xB374,\n\t36896 - 11904: 0xB379,\n\t36897 - 11904: 0xD7E7,\n\t36898 - 11904: 0xB37B,\n\t36899 - 11904: 0xB373,\n\t36900 - 11904: 0xD7E2,\n\t36909 - 11904: 0xDC4D,\n\t36910 - 11904: 0xB665,\n\t36911 - 11904: 0xDC4F,\n\t36913 - 11904: 0xB667,\n\t36914 - 11904: 0xB669,\n\t36915 - 11904: 0x99F3,\n\t36916 - 11904: 0xDC4E,\n\t36917 - 11904: 0xB666,\n\t36918 - 11904: 0xB66A,\n\t36919 - 11904: 0x9062,\n\t36920 - 11904: 0xB668,\n\t36924 - 11904: 0xB947,\n\t36925 - 11904: 0xE0A3,\n\t36926 - 11904: 0xB94F,\n\t36927 - 11904: 0xE07E,\n\t36929 - 11904: 0xB950,\n\t36930 - 11904: 0xB945,\n\t36932 - 11904: 0xE0A1,\n\t36934 - 11904: 0x87BD,\n\t36935 - 11904: 0xB94A,\n\t36937 - 11904: 0xE0A2,\n\t36938 - 11904: 0xB943,\n\t36939 - 11904: 0xB942,\n\t36940 - 11904: 0x9F55,\n\t36941 - 11904: 0xB94D,\n\t36942 - 11904: 0xB94C,\n\t36943 - 11904: 0xB94B,\n\t36944 - 11904: 0xB949,\n\t36945 - 11904: 0xB94E,\n\t36946 - 11904: 0xE07D,\n\t36947 - 11904: 0xB944,\n\t36948 - 11904: 0xB946,\n\t36949 - 11904: 0xB948,\n\t36950 - 11904: 0x9BF9,\n\t36952 - 11904: 0xBBB8,\n\t36953 - 11904: 0xBBBB,\n\t36955 - 11904: 0xBBBF,\n\t36956 - 11904: 0xBBB9,\n\t36957 - 11904: 0xBBBE,\n\t36958 - 11904: 0xBBBC,\n\t36960 - 11904: 0xBBB7,\n\t36961 - 11904: 0x9065,\n\t36962 - 11904: 0xBBBD,\n\t36963 - 11904: 0xBBBA,\n\t36964 - 11904: 0x96E0,\n\t36967 - 11904: 0xE852,\n\t36968 - 11904: 0xBE43,\n\t36969 - 11904: 0xBE41,\n\t36971 - 11904: 0xE853,\n\t36972 - 11904: 0x98BE,\n\t36973 - 11904: 0xBE44,\n\t36974 - 11904: 0xBE42,\n\t36975 - 11904: 0xE851,\n\t36976 - 11904: 0xE850,\n\t36978 - 11904: 0xBFF0,\n\t36979 - 11904: 0xE84F,\n\t36980 - 11904: 0xBFEE,\n\t36981 - 11904: 0xBFED,\n\t36982 - 11904: 0xEBD0,\n\t36983 - 11904: 0xBE45,\n\t36984 - 11904: 0xBFEF,\n\t36985 - 11904: 0xEBD1,\n\t36986 - 11904: 0xBFF2,\n\t36987 - 11904: 0xEBD2,\n\t36988 - 11904: 0xBFF1,\n\t36989 - 11904: 0xC1D8,\n\t36990 - 11904: 0xEEC3,\n\t36991 - 11904: 0xC1D7,\n\t36992 - 11904: 0xC1DC,\n\t36993 - 11904: 0xC1DA,\n\t36994 - 11904: 0xC1DB,\n\t36995 - 11904: 0xC2E3,\n\t36996 - 11904: 0xC1D9,\n\t36997 - 11904: 0xEEC2,\n\t36998 - 11904: 0xEBD3,\n\t36999 - 11904: 0xC2E2,\n\t37000 - 11904: 0xC2E4,\n\t37002 - 11904: 0xC3E4,\n\t37003 - 11904: 0xC3E5,\n\t37005 - 11904: 0xF4E0,\n\t37007 - 11904: 0xC5DE,\n\t37008 - 11904: 0xC5DD,\n\t37009 - 11904: 0xA8B6,\n\t37012 - 11904: 0xCA55,\n\t37013 - 11904: 0xB06F,\n\t37015 - 11904: 0xCA52,\n\t37016 - 11904: 0xCA53,\n\t37017 - 11904: 0xCA51,\n\t37019 - 11904: 0xCA54,\n\t37022 - 11904: 0xCBAA,\n\t37023 - 11904: 0xCBA7,\n\t37024 - 11904: 0xCBAC,\n\t37025 - 11904: 0xCBA8,\n\t37026 - 11904: 0xA8B7,\n\t37027 - 11904: 0xA8BA,\n\t37029 - 11904: 0xCBA9,\n\t37030 - 11904: 0xA8B9,\n\t37031 - 11904: 0xCBAB,\n\t37032 - 11904: 0x9068,\n\t37034 - 11904: 0xA8B8,\n\t37038 - 11904: 0x906C,\n\t37039 - 11904: 0xCDD5,\n\t37040 - 11904: 0xCDD7,\n\t37041 - 11904: 0xAAF4,\n\t37042 - 11904: 0xCDD3,\n\t37043 - 11904: 0xCDD6,\n\t37044 - 11904: 0xCDD4,\n\t37045 - 11904: 0xAAF2,\n\t37046 - 11904: 0xAAF5,\n\t37048 - 11904: 0xAAF3,\n\t37051 - 11904: 0x95D8,\n\t37053 - 11904: 0xD0B8,\n\t37054 - 11904: 0xD0BC,\n\t37055 - 11904: 0xD0B9,\n\t37057 - 11904: 0xADA7,\n\t37059 - 11904: 0xADA8,\n\t37060 - 11904: 0x906A,\n\t37061 - 11904: 0xD0BB,\n\t37063 - 11904: 0xD0BD,\n\t37064 - 11904: 0xD0BF,\n\t37066 - 11904: 0xADA5,\n\t37067 - 11904: 0xD0BE,\n\t37070 - 11904: 0xADA6,\n\t37076 - 11904: 0xD7EE,\n\t37077 - 11904: 0xD0BA,\n\t37078 - 11904: 0xD3F2,\n\t37079 - 11904: 0xD3FB,\n\t37080 - 11904: 0xD3F9,\n\t37081 - 11904: 0xD3F4,\n\t37082 - 11904: 0xD3F5,\n\t37083 - 11904: 0xD3FA,\n\t37084 - 11904: 0xD3FC,\n\t37085 - 11904: 0xB071,\n\t37087 - 11904: 0xD3F7,\n\t37088 - 11904: 0xD3F3,\n\t37089 - 11904: 0xB070,\n\t37090 - 11904: 0xB072,\n\t37091 - 11904: 0xD3F6,\n\t37092 - 11904: 0xD3FD,\n\t37093 - 11904: 0xD3F8,\n\t37096 - 11904: 0xB3A1,\n\t37097 - 11904: 0xD7F1,\n\t37098 - 11904: 0xD7E9,\n\t37099 - 11904: 0xD7EF,\n\t37100 - 11904: 0xD7F0,\n\t37101 - 11904: 0xB3A2,\n\t37103 - 11904: 0xD7E8,\n\t37104 - 11904: 0xD7EA,\n\t37105 - 11904: 0xD0B7,\n\t37106 - 11904: 0xD7EC,\n\t37107 - 11904: 0xD7ED,\n\t37108 - 11904: 0xD7EB,\n\t37109 - 11904: 0xB66C,\n\t37113 - 11904: 0xDC56,\n\t37114 - 11904: 0xEBD4,\n\t37115 - 11904: 0xDC57,\n\t37116 - 11904: 0xDC54,\n\t37117 - 11904: 0xB3A3,\n\t37118 - 11904: 0xB66E,\n\t37119 - 11904: 0xDC53,\n\t37120 - 11904: 0xDC59,\n\t37121 - 11904: 0xDC58,\n\t37122 - 11904: 0xB66B,\n\t37123 - 11904: 0xDC5C,\n\t37124 - 11904: 0xDC52,\n\t37125 - 11904: 0xDC5B,\n\t37126 - 11904: 0xDC50,\n\t37127 - 11904: 0xDC5A,\n\t37128 - 11904: 0xDC55,\n\t37129 - 11904: 0xB66D,\n\t37131 - 11904: 0xE0AA,\n\t37133 - 11904: 0xE0A5,\n\t37134 - 11904: 0xE0AB,\n\t37135 - 11904: 0xE0A6,\n\t37136 - 11904: 0xE0A4,\n\t37137 - 11904: 0xE0A7,\n\t37138 - 11904: 0xB951,\n\t37140 - 11904: 0xE0A9,\n\t37142 - 11904: 0xE0A8,\n\t37143 - 11904: 0xB952,\n\t37144 - 11904: 0xBBC1,\n\t37145 - 11904: 0xBBC0,\n\t37146 - 11904: 0xE46E,\n\t37147 - 11904: 0xE471,\n\t37148 - 11904: 0xE469,\n\t37149 - 11904: 0xE46D,\n\t37150 - 11904: 0xBBC2,\n\t37151 - 11904: 0xE46C,\n\t37152 - 11904: 0xE46A,\n\t37153 - 11904: 0xE470,\n\t37154 - 11904: 0xE46B,\n\t37155 - 11904: 0xE468,\n\t37156 - 11904: 0xE46F,\n\t37158 - 11904: 0xE859,\n\t37159 - 11904: 0xBE48,\n\t37160 - 11904: 0xF14A,\n\t37161 - 11904: 0xE856,\n\t37162 - 11904: 0xE857,\n\t37163 - 11904: 0xE855,\n\t37164 - 11904: 0xDC51,\n\t37165 - 11904: 0xBE47,\n\t37166 - 11904: 0xE85A,\n\t37167 - 11904: 0xE854,\n\t37168 - 11904: 0xBE46,\n\t37169 - 11904: 0xBE49,\n\t37170 - 11904: 0xE858,\n\t37171 - 11904: 0xEBD5,\n\t37172 - 11904: 0xBFF3,\n\t37173 - 11904: 0xEBD6,\n\t37174 - 11904: 0xEBD7,\n\t37176 - 11904: 0xEEC4,\n\t37177 - 11904: 0xC1DD,\n\t37178 - 11904: 0xF14B,\n\t37179 - 11904: 0xF14C,\n\t37182 - 11904: 0xF14D,\n\t37183 - 11904: 0xF35D,\n\t37184 - 11904: 0xF35C,\n\t37185 - 11904: 0xF4E2,\n\t37187 - 11904: 0xF4E1,\n\t37188 - 11904: 0xF65B,\n\t37189 - 11904: 0xF65C,\n\t37190 - 11904: 0xF65A,\n\t37191 - 11904: 0xF766,\n\t37192 - 11904: 0xC5B0,\n\t37193 - 11904: 0xA8BB,\n\t37194 - 11904: 0xADAA,\n\t37195 - 11904: 0xADA9,\n\t37196 - 11904: 0xB075,\n\t37197 - 11904: 0xB074,\n\t37198 - 11904: 0xD440,\n\t37199 - 11904: 0xD441,\n\t37200 - 11904: 0xD3FE,\n\t37201 - 11904: 0x9FB2,\n\t37202 - 11904: 0xB073,\n\t37203 - 11904: 0xD7F5,\n\t37205 - 11904: 0xD7F6,\n\t37206 - 11904: 0xD7F2,\n\t37207 - 11904: 0xB3A4,\n\t37208 - 11904: 0xD7F3,\n\t37209 - 11904: 0x9FAE,\n\t37210 - 11904: 0xD7F4,\n\t37212 - 11904: 0x9FB0,\n\t37214 - 11904: 0x89AD,\n\t37215 - 11904: 0xDC5F,\n\t37216 - 11904: 0xDC61,\n\t37217 - 11904: 0xDC5D,\n\t37218 - 11904: 0xDC60,\n\t37219 - 11904: 0xB66F,\n\t37220 - 11904: 0xDC5E,\n\t37221 - 11904: 0xB670,\n\t37223 - 11904: 0x906E,\n\t37224 - 11904: 0xDD73,\n\t37225 - 11904: 0xB955,\n\t37226 - 11904: 0xB954,\n\t37228 - 11904: 0xB953,\n\t37230 - 11904: 0xE0AC,\n\t37231 - 11904: 0xE0AD,\n\t37232 - 11904: 0x9E71,\n\t37234 - 11904: 0xE473,\n\t37235 - 11904: 0xE475,\n\t37236 - 11904: 0xBBC6,\n\t37237 - 11904: 0xBBC3,\n\t37238 - 11904: 0x9E4A,\n\t37239 - 11904: 0xBBC5,\n\t37240 - 11904: 0xBBC4,\n\t37241 - 11904: 0xE474,\n\t37242 - 11904: 0xE472,\n\t37244 - 11904: 0x9FDC,\n\t37248 - 11904: 0xE861,\n\t37249 - 11904: 0xE85E,\n\t37250 - 11904: 0xE85F,\n\t37251 - 11904: 0xBE4D,\n\t37252 - 11904: 0xE860,\n\t37253 - 11904: 0xE85B,\n\t37254 - 11904: 0xE85C,\n\t37255 - 11904: 0xBE4A,\n\t37257 - 11904: 0xBE4B,\n\t37258 - 11904: 0xE85D,\n\t37259 - 11904: 0xBE4C,\n\t37260 - 11904: 0x89AB,\n\t37261 - 11904: 0xEBDB,\n\t37262 - 11904: 0x9FB8,\n\t37263 - 11904: 0xEBDC,\n\t37264 - 11904: 0xEBD9,\n\t37265 - 11904: 0xEBDA,\n\t37266 - 11904: 0xBFF4,\n\t37267 - 11904: 0xEBD8,\n\t37273 - 11904: 0xEEC8,\n\t37274 - 11904: 0xEEC5,\n\t37275 - 11904: 0xEEC7,\n\t37276 - 11904: 0xC1E0,\n\t37277 - 11904: 0xEECB,\n\t37278 - 11904: 0xC1DF,\n\t37279 - 11904: 0xEEC9,\n\t37280 - 11904: 0xEECC,\n\t37281 - 11904: 0xEECA,\n\t37282 - 11904: 0xEEC6,\n\t37283 - 11904: 0xC1DE,\n\t37285 - 11904: 0xF14F,\n\t37287 - 11904: 0xF150,\n\t37288 - 11904: 0xF14E,\n\t37289 - 11904: 0x9070,\n\t37290 - 11904: 0xF152,\n\t37291 - 11904: 0xC2E5,\n\t37292 - 11904: 0xC2E6,\n\t37293 - 11904: 0xF35F,\n\t37294 - 11904: 0xC3E7,\n\t37295 - 11904: 0xF151,\n\t37296 - 11904: 0xF35E,\n\t37297 - 11904: 0xC3E6,\n\t37298 - 11904: 0xF4E5,\n\t37299 - 11904: 0xF4E6,\n\t37300 - 11904: 0xC4BF,\n\t37301 - 11904: 0xF4E4,\n\t37302 - 11904: 0x8B63,\n\t37303 - 11904: 0xF4E3,\n\t37305 - 11904: 0xF65D,\n\t37306 - 11904: 0xC548,\n\t37307 - 11904: 0x95DC,\n\t37308 - 11904: 0xF849,\n\t37309 - 11904: 0xF8C8,\n\t37310 - 11904: 0xF8C7,\n\t37312 - 11904: 0xC643,\n\t37313 - 11904: 0xC65D,\n\t37314 - 11904: 0xF8C9,\n\t37315 - 11904: 0xF971,\n\t37316 - 11904: 0x9071,\n\t37317 - 11904: 0xC66F,\n\t37318 - 11904: 0xA8BC,\n\t37319 - 11904: 0xAAF6,\n\t37321 - 11904: 0xB956,\n\t37323 - 11904: 0xC4C0,\n\t37324 - 11904: 0xA8BD,\n\t37325 - 11904: 0xADAB,\n\t37326 - 11904: 0xB3A5,\n\t37327 - 11904: 0xB671,\n\t37328 - 11904: 0xC2E7,\n\t37329 - 11904: 0xAAF7,\n\t37331 - 11904: 0xD0C1,\n\t37332 - 11904: 0xD0C0,\n\t37333 - 11904: 0xD442,\n\t37334 - 11904: 0xFC5E,\n\t37335 - 11904: 0xB078,\n\t37336 - 11904: 0xB076,\n\t37337 - 11904: 0xB07A,\n\t37338 - 11904: 0xD444,\n\t37340 - 11904: 0xB079,\n\t37341 - 11904: 0xB077,\n\t37343 - 11904: 0x8949,\n\t37346 - 11904: 0xD443,\n\t37347 - 11904: 0xB3A8,\n\t37348 - 11904: 0xD7FC,\n\t37349 - 11904: 0x965B,\n\t37350 - 11904: 0xB3A7,\n\t37351 - 11904: 0xB3A9,\n\t37352 - 11904: 0xD842,\n\t37353 - 11904: 0xB3AB,\n\t37354 - 11904: 0xD7FE,\n\t37355 - 11904: 0xD840,\n\t37356 - 11904: 0xD7F7,\n\t37357 - 11904: 0xB3AA,\n\t37358 - 11904: 0xD843,\n\t37361 - 11904: 0xD7F9,\n\t37363 - 11904: 0xD7FA,\n\t37364 - 11904: 0xD7F8,\n\t37365 - 11904: 0xB3A6,\n\t37366 - 11904: 0x8C50,\n\t37367 - 11904: 0xD841,\n\t37368 - 11904: 0xD7FB,\n\t37369 - 11904: 0xD7FD,\n\t37370 - 11904: 0x94A6,\n\t37373 - 11904: 0xDC6D,\n\t37374 - 11904: 0x8FD5,\n\t37375 - 11904: 0xDC6C,\n\t37376 - 11904: 0xDC6A,\n\t37377 - 11904: 0xDC62,\n\t37378 - 11904: 0xDC71,\n\t37379 - 11904: 0xDC65,\n\t37380 - 11904: 0xDC6F,\n\t37381 - 11904: 0xDC76,\n\t37382 - 11904: 0xDC6E,\n\t37383 - 11904: 0xB679,\n\t37384 - 11904: 0x9E73,\n\t37385 - 11904: 0xB675,\n\t37386 - 11904: 0xDC63,\n\t37388 - 11904: 0xDC69,\n\t37389 - 11904: 0xB677,\n\t37390 - 11904: 0x9075,\n\t37391 - 11904: 0xDC68,\n\t37392 - 11904: 0xB678,\n\t37393 - 11904: 0xB67A,\n\t37394 - 11904: 0xDC6B,\n\t37395 - 11904: 0x99F7,\n\t37396 - 11904: 0xB672,\n\t37397 - 11904: 0xB673,\n\t37398 - 11904: 0xDC77,\n\t37399 - 11904: 0xDC75,\n\t37400 - 11904: 0x87B2,\n\t37401 - 11904: 0xDC74,\n\t37402 - 11904: 0xDC66,\n\t37404 - 11904: 0xDC72,\n\t37406 - 11904: 0xB676,\n\t37409 - 11904: 0x8CBF,\n\t37411 - 11904: 0xB674,\n\t37412 - 11904: 0xDC73,\n\t37413 - 11904: 0xDC64,\n\t37414 - 11904: 0xDC67,\n\t37415 - 11904: 0xDC70,\n\t37416 - 11904: 0x99F9,\n\t37418 - 11904: 0x9663,\n\t37419 - 11904: 0x95B9,\n\t37421 - 11904: 0xE4BA,\n\t37422 - 11904: 0xE0B7,\n\t37424 - 11904: 0xE0B0,\n\t37425 - 11904: 0xE0C3,\n\t37426 - 11904: 0xE0CC,\n\t37427 - 11904: 0xE0B3,\n\t37428 - 11904: 0xB961,\n\t37429 - 11904: 0x94D4,\n\t37430 - 11904: 0xE0C0,\n\t37431 - 11904: 0xB957,\n\t37432 - 11904: 0xB959,\n\t37433 - 11904: 0xB965,\n\t37434 - 11904: 0xE0B1,\n\t37436 - 11904: 0xFCFA,\n\t37437 - 11904: 0xB95A,\n\t37438 - 11904: 0xB95C,\n\t37439 - 11904: 0xB966,\n\t37440 - 11904: 0xB95B,\n\t37441 - 11904: 0x9077,\n\t37444 - 11904: 0x90AB,\n\t37445 - 11904: 0xB964,\n\t37446 - 11904: 0xE0B9,\n\t37448 - 11904: 0xE0AE,\n\t37449 - 11904: 0xB962,\n\t37450 - 11904: 0xE0B8,\n\t37451 - 11904: 0xB95E,\n\t37452 - 11904: 0xE0CA,\n\t37453 - 11904: 0xB963,\n\t37454 - 11904: 0xE0C8,\n\t37455 - 11904: 0xE0BC,\n\t37456 - 11904: 0xE0C6,\n\t37457 - 11904: 0xB960,\n\t37458 - 11904: 0xE0AF,\n\t37459 - 11904: 0xE0C9,\n\t37460 - 11904: 0xE0C4,\n\t37461 - 11904: 0x9D4D,\n\t37462 - 11904: 0xE0CB,\n\t37463 - 11904: 0xB958,\n\t37464 - 11904: 0x99FA,\n\t37466 - 11904: 0xB967,\n\t37467 - 11904: 0xB95D,\n\t37469 - 11904: 0x92E3,\n\t37470 - 11904: 0xE0B5,\n\t37471 - 11904: 0x97BB,\n\t37472 - 11904: 0xE0BD,\n\t37473 - 11904: 0xE0C1,\n\t37474 - 11904: 0x9078,\n\t37475 - 11904: 0xE0C5,\n\t37476 - 11904: 0xB95F,\n\t37477 - 11904: 0xE0B4,\n\t37478 - 11904: 0xE0B2,\n\t37479 - 11904: 0xE0BE,\n\t37483 - 11904: 0x99FB,\n\t37484 - 11904: 0xE0BB,\n\t37485 - 11904: 0xE0BA,\n\t37486 - 11904: 0x97E0,\n\t37487 - 11904: 0xE0BF,\n\t37488 - 11904: 0xE0C2,\n\t37490 - 11904: 0xE0C7,\n\t37494 - 11904: 0xE478,\n\t37495 - 11904: 0x96DC,\n\t37496 - 11904: 0xBBC7,\n\t37497 - 11904: 0xE4A4,\n\t37498 - 11904: 0xE47A,\n\t37499 - 11904: 0xBBCC,\n\t37500 - 11904: 0xBBD0,\n\t37501 - 11904: 0xE4AD,\n\t37502 - 11904: 0xE4B5,\n\t37503 - 11904: 0xE4A6,\n\t37504 - 11904: 0xBBC8,\n\t37505 - 11904: 0x9CA8,\n\t37506 - 11904: 0xE4AA,\n\t37507 - 11904: 0xE0B6,\n\t37508 - 11904: 0x9772,\n\t37509 - 11904: 0xBBC9,\n\t37510 - 11904: 0xE4B1,\n\t37511 - 11904: 0xE4B6,\n\t37512 - 11904: 0xE4AE,\n\t37513 - 11904: 0x9440,\n\t37514 - 11904: 0xE4B0,\n\t37515 - 11904: 0xE4B9,\n\t37516 - 11904: 0xE4B2,\n\t37517 - 11904: 0xE47E,\n\t37518 - 11904: 0xE4A9,\n\t37519 - 11904: 0x92F2,\n\t37521 - 11904: 0xBBD1,\n\t37523 - 11904: 0xBBCD,\n\t37524 - 11904: 0xE47C,\n\t37525 - 11904: 0xE4AB,\n\t37526 - 11904: 0xBBCB,\n\t37527 - 11904: 0xE4A5,\n\t37528 - 11904: 0xBBCA,\n\t37529 - 11904: 0xE4B3,\n\t37530 - 11904: 0xE4A2,\n\t37531 - 11904: 0xE479,\n\t37532 - 11904: 0xBBCE,\n\t37533 - 11904: 0xE4B8,\n\t37536 - 11904: 0xE47B,\n\t37537 - 11904: 0xE4AF,\n\t37538 - 11904: 0xE4AC,\n\t37539 - 11904: 0xE4A7,\n\t37540 - 11904: 0xE477,\n\t37541 - 11904: 0xE476,\n\t37542 - 11904: 0xE4A1,\n\t37543 - 11904: 0xE4B4,\n\t37544 - 11904: 0xBBCF,\n\t37545 - 11904: 0xE4B7,\n\t37546 - 11904: 0xE47D,\n\t37547 - 11904: 0xE4A3,\n\t37548 - 11904: 0xBE52,\n\t37550 - 11904: 0x99FD,\n\t37553 - 11904: 0x99FC,\n\t37554 - 11904: 0xBE5A,\n\t37555 - 11904: 0xBE55,\n\t37556 - 11904: 0xE8A4,\n\t37557 - 11904: 0xE8A1,\n\t37558 - 11904: 0xE867,\n\t37559 - 11904: 0xBE50,\n\t37561 - 11904: 0xF9D7,\n\t37562 - 11904: 0x964A,\n\t37563 - 11904: 0xBE4F,\n\t37564 - 11904: 0xBE56,\n\t37566 - 11904: 0x96D8,\n\t37567 - 11904: 0x99FE,\n\t37568 - 11904: 0xE865,\n\t37569 - 11904: 0xBE54,\n\t37570 - 11904: 0xE871,\n\t37571 - 11904: 0xE863,\n\t37572 - 11904: 0xE864,\n\t37573 - 11904: 0xBE4E,\n\t37574 - 11904: 0xE8A3,\n\t37575 - 11904: 0xBE58,\n\t37576 - 11904: 0xE874,\n\t37577 - 11904: 0xE879,\n\t37578 - 11904: 0xE873,\n\t37579 - 11904: 0xEBEE,\n\t37580 - 11904: 0xE86F,\n\t37581 - 11904: 0xE877,\n\t37582 - 11904: 0xE875,\n\t37583 - 11904: 0xE868,\n\t37584 - 11904: 0xE862,\n\t37585 - 11904: 0xE87D,\n\t37586 - 11904: 0xBE57,\n\t37587 - 11904: 0xE87E,\n\t37588 - 11904: 0x904B,\n\t37589 - 11904: 0xE878,\n\t37591 - 11904: 0xE86D,\n\t37592 - 11904: 0xE86B,\n\t37593 - 11904: 0xE866,\n\t37595 - 11904: 0xFA41,\n\t37597 - 11904: 0xE86E,\n\t37598 - 11904: 0xE87B,\n\t37599 - 11904: 0xE86A,\n\t37600 - 11904: 0xE87A,\n\t37601 - 11904: 0xE8A2,\n\t37603 - 11904: 0x9A40,\n\t37604 - 11904: 0xBE53,\n\t37605 - 11904: 0x975B,\n\t37606 - 11904: 0xE876,\n\t37607 - 11904: 0xE87C,\n\t37608 - 11904: 0xE872,\n\t37609 - 11904: 0xE86C,\n\t37610 - 11904: 0xBE51,\n\t37611 - 11904: 0x9A41,\n\t37612 - 11904: 0x91DD,\n\t37614 - 11904: 0xE4A8,\n\t37615 - 11904: 0xE870,\n\t37616 - 11904: 0xBE59,\n\t37617 - 11904: 0xE869,\n\t37618 - 11904: 0x93FC,\n\t37619 - 11904: 0x9A42,\n\t37620 - 11904: 0x9A43,\n\t37622 - 11904: 0x9659,\n\t37623 - 11904: 0xEBF4,\n\t37624 - 11904: 0xBFF7,\n\t37625 - 11904: 0xEBF3,\n\t37626 - 11904: 0xEBF0,\n\t37627 - 11904: 0xEC44,\n\t37628 - 11904: 0xBFFB,\n\t37629 - 11904: 0x9A44,\n\t37630 - 11904: 0xEC41,\n\t37631 - 11904: 0xEBF8,\n\t37632 - 11904: 0xEC43,\n\t37633 - 11904: 0xEBE9,\n\t37634 - 11904: 0xEBF6,\n\t37635 - 11904: 0x9051,\n\t37636 - 11904: 0xBFFD,\n\t37638 - 11904: 0xEBE1,\n\t37639 - 11904: 0x94BF,\n\t37640 - 11904: 0xEBDF,\n\t37641 - 11904: 0xEC42,\n\t37643 - 11904: 0xEC40,\n\t37644 - 11904: 0xEBFE,\n\t37645 - 11904: 0xEBED,\n\t37646 - 11904: 0xEBEC,\n\t37647 - 11904: 0xEBE2,\n\t37648 - 11904: 0xC040,\n\t37650 - 11904: 0xEBE8,\n\t37651 - 11904: 0xEBF2,\n\t37652 - 11904: 0xEBFD,\n\t37653 - 11904: 0xC043,\n\t37654 - 11904: 0xEC45,\n\t37656 - 11904: 0xC1E8,\n\t37657 - 11904: 0xC045,\n\t37658 - 11904: 0xBFFE,\n\t37659 - 11904: 0xEBE6,\n\t37661 - 11904: 0xEBEF,\n\t37662 - 11904: 0xEBDE,\n\t37663 - 11904: 0xEBE0,\n\t37664 - 11904: 0xBFF5,\n\t37665 - 11904: 0xC042,\n\t37666 - 11904: 0xBFFA,\n\t37667 - 11904: 0xEBE7,\n\t37668 - 11904: 0xEBF7,\n\t37669 - 11904: 0xEBF1,\n\t37670 - 11904: 0xC041,\n\t37671 - 11904: 0xEBDD,\n\t37672 - 11904: 0xC1E3,\n\t37673 - 11904: 0xEBF9,\n\t37674 - 11904: 0xEBFC,\n\t37675 - 11904: 0xBFFC,\n\t37676 - 11904: 0x90A2,\n\t37677 - 11904: 0xEBEB,\n\t37678 - 11904: 0xC044,\n\t37679 - 11904: 0xBFF9,\n\t37680 - 11904: 0x9CAB,\n\t37681 - 11904: 0x9776,\n\t37683 - 11904: 0xBFF8,\n\t37684 - 11904: 0xEBF5,\n\t37685 - 11904: 0xEBFB,\n\t37686 - 11904: 0xBFF6,\n\t37688 - 11904: 0xEBE4,\n\t37689 - 11904: 0xEBFA,\n\t37692 - 11904: 0xEBE5,\n\t37696 - 11904: 0xFC55,\n\t37697 - 11904: 0xFE45,\n\t37698 - 11904: 0x94A8,\n\t37699 - 11904: 0x9A45,\n\t37700 - 11904: 0xFA4B,\n\t37701 - 11904: 0x9DE1,\n\t37702 - 11904: 0xEBEA,\n\t37703 - 11904: 0xEED2,\n\t37704 - 11904: 0x96D9,\n\t37705 - 11904: 0xEED7,\n\t37706 - 11904: 0xC1E5,\n\t37707 - 11904: 0xC1E7,\n\t37708 - 11904: 0xEEDD,\n\t37709 - 11904: 0xC1E1,\n\t37710 - 11904: 0xEEEC,\n\t37711 - 11904: 0xEEE3,\n\t37712 - 11904: 0xEED8,\n\t37713 - 11904: 0xEED9,\n\t37714 - 11904: 0xEEE2,\n\t37716 - 11904: 0xC1EE,\n\t37717 - 11904: 0xEEE1,\n\t37718 - 11904: 0xEED1,\n\t37719 - 11904: 0xEEE0,\n\t37720 - 11904: 0xEED4,\n\t37721 - 11904: 0xEEED,\n\t37722 - 11904: 0xC1ED,\n\t37723 - 11904: 0xC1EB,\n\t37724 - 11904: 0xEED5,\n\t37726 - 11904: 0xEEE8,\n\t37727 - 11904: 0x9774,\n\t37728 - 11904: 0xEEDA,\n\t37729 - 11904: 0xEEE7,\n\t37730 - 11904: 0xFDF5,\n\t37731 - 11904: 0xEEE9,\n\t37732 - 11904: 0xEED0,\n\t37733 - 11904: 0xC1E6,\n\t37734 - 11904: 0x92E5,\n\t37735 - 11904: 0xEEEA,\n\t37736 - 11904: 0x9645,\n\t37737 - 11904: 0x91DA,\n\t37738 - 11904: 0xEEDE,\n\t37739 - 11904: 0x90A3,\n\t37740 - 11904: 0xC1EA,\n\t37741 - 11904: 0xEEDB,\n\t37742 - 11904: 0xA05F,\n\t37744 - 11904: 0xC1EC,\n\t37745 - 11904: 0xEEE4,\n\t37747 - 11904: 0x90AF,\n\t37748 - 11904: 0x97BF,\n\t37749 - 11904: 0xC1E4,\n\t37750 - 11904: 0xEED6,\n\t37751 - 11904: 0xEEE5,\n\t37752 - 11904: 0x914C,\n\t37753 - 11904: 0xEEDF,\n\t37754 - 11904: 0xEBE3,\n\t37755 - 11904: 0xEEE6,\n\t37756 - 11904: 0xEED3,\n\t37757 - 11904: 0x967A,\n\t37758 - 11904: 0xC1E9,\n\t37760 - 11904: 0xEEEB,\n\t37761 - 11904: 0x91DE,\n\t37762 - 11904: 0xC1E2,\n\t37763 - 11904: 0xEECE,\n\t37764 - 11904: 0x9A46,\n\t37765 - 11904: 0xFEB0,\n\t37766 - 11904: 0x9779,\n\t37767 - 11904: 0x946C,\n\t37768 - 11904: 0xF160,\n\t37769 - 11904: 0xF159,\n\t37770 - 11904: 0xC2E9,\n\t37772 - 11904: 0xF154,\n\t37773 - 11904: 0xF163,\n\t37774 - 11904: 0xF15B,\n\t37775 - 11904: 0xEEDC,\n\t37776 - 11904: 0x9858,\n\t37777 - 11904: 0xF165,\n\t37778 - 11904: 0xF155,\n\t37780 - 11904: 0xC2E8,\n\t37781 - 11904: 0xF15F,\n\t37782 - 11904: 0xC2EA,\n\t37783 - 11904: 0xC2F2,\n\t37784 - 11904: 0xC2F0,\n\t37785 - 11904: 0xF161,\n\t37786 - 11904: 0xC2F1,\n\t37787 - 11904: 0xF157,\n\t37788 - 11904: 0x9266,\n\t37789 - 11904: 0xF158,\n\t37790 - 11904: 0xF15D,\n\t37791 - 11904: 0xF162,\n\t37792 - 11904: 0x93FB,\n\t37793 - 11904: 0xEECD,\n\t37794 - 11904: 0xC2EB,\n\t37795 - 11904: 0xF16A,\n\t37796 - 11904: 0xF167,\n\t37797 - 11904: 0xF16B,\n\t37798 - 11904: 0xF15E,\n\t37799 - 11904: 0xF15A,\n\t37800 - 11904: 0xF168,\n\t37801 - 11904: 0xF36A,\n\t37802 - 11904: 0xF15C,\n\t37804 - 11904: 0xC2EE,\n\t37805 - 11904: 0x9A47,\n\t37806 - 11904: 0xC2ED,\n\t37807 - 11904: 0xEECF,\n\t37808 - 11904: 0xC2EF,\n\t37809 - 11904: 0xF164,\n\t37810 - 11904: 0xF166,\n\t37811 - 11904: 0xC2EC,\n\t37812 - 11904: 0xF169,\n\t37813 - 11904: 0xF153,\n\t37815 - 11904: 0xF156,\n\t37816 - 11904: 0x9749,\n\t37819 - 11904: 0x9748,\n\t37821 - 11904: 0x934A,\n\t37823 - 11904: 0x9CE2,\n\t37824 - 11904: 0xF373,\n\t37826 - 11904: 0xF363,\n\t37827 - 11904: 0xC3EB,\n\t37828 - 11904: 0xF371,\n\t37830 - 11904: 0x9264,\n\t37831 - 11904: 0xF361,\n\t37832 - 11904: 0xC3EC,\n\t37834 - 11904: 0xF36C,\n\t37835 - 11904: 0x91DF,\n\t37836 - 11904: 0xF368,\n\t37837 - 11904: 0xC3F1,\n\t37838 - 11904: 0xF372,\n\t37839 - 11904: 0xF362,\n\t37840 - 11904: 0xF365,\n\t37841 - 11904: 0xC3E9,\n\t37842 - 11904: 0xF374,\n\t37843 - 11904: 0xFB79,\n\t37844 - 11904: 0xF36D,\n\t37845 - 11904: 0xF370,\n\t37846 - 11904: 0xC3EF,\n\t37847 - 11904: 0xC3F4,\n\t37848 - 11904: 0xC3F2,\n\t37849 - 11904: 0xF369,\n\t37850 - 11904: 0xF364,\n\t37851 - 11904: 0x96D7,\n\t37852 - 11904: 0xC3ED,\n\t37853 - 11904: 0xC3EE,\n\t37854 - 11904: 0xF360,\n\t37855 - 11904: 0xC3EA,\n\t37856 - 11904: 0x9343,\n\t37857 - 11904: 0xC3E8,\n\t37858 - 11904: 0xC3F0,\n\t37859 - 11904: 0xF36F,\n\t37860 - 11904: 0xC3F3,\n\t37862 - 11904: 0xF36B,\n\t37863 - 11904: 0xF375,\n\t37864 - 11904: 0xC3F5,\n\t37868 - 11904: 0xF367,\n\t37870 - 11904: 0xF36E,\n\t37872 - 11904: 0xFDCB,\n\t37873 - 11904: 0xFE7A,\n\t37875 - 11904: 0x91DB,\n\t37876 - 11904: 0x8C6A,\n\t37877 - 11904: 0xF4F3,\n\t37878 - 11904: 0xF542,\n\t37879 - 11904: 0xF4F5,\n\t37880 - 11904: 0xF4FC,\n\t37881 - 11904: 0xF366,\n\t37882 - 11904: 0xF4FA,\n\t37883 - 11904: 0xF4E9,\n\t37884 - 11904: 0xF540,\n\t37885 - 11904: 0xC4C3,\n\t37886 - 11904: 0xF4ED,\n\t37887 - 11904: 0xF4FE,\n\t37888 - 11904: 0xF4F4,\n\t37889 - 11904: 0x97AF,\n\t37891 - 11904: 0xC4C2,\n\t37892 - 11904: 0x95DD,\n\t37894 - 11904: 0xF544,\n\t37895 - 11904: 0xF4F6,\n\t37896 - 11904: 0x9348,\n\t37897 - 11904: 0xF4FB,\n\t37898 - 11904: 0xF4FD,\n\t37899 - 11904: 0xF4E7,\n\t37900 - 11904: 0xF541,\n\t37901 - 11904: 0xF4F2,\n\t37902 - 11904: 0xF4F7,\n\t37903 - 11904: 0xF4EB,\n\t37904 - 11904: 0xF4EF,\n\t37905 - 11904: 0xF543,\n\t37906 - 11904: 0xF4F9,\n\t37907 - 11904: 0xF4E8,\n\t37908 - 11904: 0xF4EC,\n\t37909 - 11904: 0xF4EE,\n\t37910 - 11904: 0xF4F8,\n\t37911 - 11904: 0x9A4B,\n\t37912 - 11904: 0xC4C1,\n\t37913 - 11904: 0xF4F1,\n\t37915 - 11904: 0xFC45,\n\t37917 - 11904: 0x9A4D,\n\t37920 - 11904: 0xF4EA,\n\t37924 - 11904: 0x91BC,\n\t37925 - 11904: 0x90E2,\n\t37926 - 11904: 0x90B4,\n\t37927 - 11904: 0x95E1,\n\t37928 - 11904: 0xF4F0,\n\t37929 - 11904: 0xF661,\n\t37930 - 11904: 0xF666,\n\t37931 - 11904: 0xC54F,\n\t37932 - 11904: 0xF668,\n\t37933 - 11904: 0x9A4E,\n\t37934 - 11904: 0xC549,\n\t37935 - 11904: 0x87AD,\n\t37936 - 11904: 0xF664,\n\t37937 - 11904: 0xF66A,\n\t37938 - 11904: 0xC54E,\n\t37939 - 11904: 0xC54A,\n\t37941 - 11904: 0xC54B,\n\t37942 - 11904: 0xF660,\n\t37943 - 11904: 0xF667,\n\t37944 - 11904: 0xC54D,\n\t37945 - 11904: 0xF665,\n\t37946 - 11904: 0xC54C,\n\t37947 - 11904: 0xF65F,\n\t37948 - 11904: 0xF663,\n\t37949 - 11904: 0xF662,\n\t37950 - 11904: 0x9A4F,\n\t37951 - 11904: 0xF65E,\n\t37952 - 11904: 0xF669,\n\t37954 - 11904: 0xFE40,\n\t37955 - 11904: 0xFE43,\n\t37956 - 11904: 0xC5B1,\n\t37957 - 11904: 0xF76D,\n\t37958 - 11904: 0xF770,\n\t37959 - 11904: 0xF76C,\n\t37960 - 11904: 0xF76E,\n\t37961 - 11904: 0xF76F,\n\t37962 - 11904: 0xF769,\n\t37963 - 11904: 0xF76A,\n\t37964 - 11904: 0xF767,\n\t37965 - 11904: 0x96DD,\n\t37967 - 11904: 0xF76B,\n\t37968 - 11904: 0xF768,\n\t37969 - 11904: 0xC5B2,\n\t37970 - 11904: 0xC5B3,\n\t37972 - 11904: 0x9A51,\n\t37973 - 11904: 0xF84B,\n\t37975 - 11904: 0xF84D,\n\t37976 - 11904: 0x96A7,\n\t37979 - 11904: 0x90B0,\n\t37981 - 11904: 0xF84C,\n\t37982 - 11904: 0xF84E,\n\t37984 - 11904: 0xC5E0,\n\t37986 - 11904: 0xF84A,\n\t37987 - 11904: 0xC5DF,\n\t37988 - 11904: 0xC5E1,\n\t37989 - 11904: 0x9C4E,\n\t37991 - 11904: 0x9443,\n\t37992 - 11904: 0xF8CB,\n\t37993 - 11904: 0xF8CC,\n\t37994 - 11904: 0xC644,\n\t37995 - 11904: 0xF8CA,\n\t37996 - 11904: 0x8EBA,\n\t37997 - 11904: 0xF953,\n\t37998 - 11904: 0xF952,\n\t37999 - 11904: 0xF954,\n\t38000 - 11904: 0xC65F,\n\t38001 - 11904: 0xF955,\n\t38002 - 11904: 0xC65E,\n\t38003 - 11904: 0xF956,\n\t38004 - 11904: 0xF972,\n\t38005 - 11904: 0xF975,\n\t38006 - 11904: 0xF974,\n\t38007 - 11904: 0xC668,\n\t38008 - 11904: 0xF973,\n\t38009 - 11904: 0x9A52,\n\t38011 - 11904: 0xFCC1,\n\t38012 - 11904: 0xC672,\n\t38013 - 11904: 0xC670,\n\t38014 - 11904: 0xC671,\n\t38015 - 11904: 0xC677,\n\t38016 - 11904: 0xF9C0,\n\t38017 - 11904: 0xF9C1,\n\t38018 - 11904: 0xF9BF,\n\t38019 - 11904: 0xF9C9,\n\t38021 - 11904: 0x8BE9,\n\t38047 - 11904: 0x9CAF,\n\t38050 - 11904: 0x8BFD,\n\t38081 - 11904: 0x9ABC,\n\t38083 - 11904: 0x9AB8,\n\t38108 - 11904: 0x9AAE,\n\t38134 - 11904: 0x9AA7,\n\t38189 - 11904: 0x9A53,\n\t38215 - 11904: 0x9D74,\n\t38263 - 11904: 0xAAF8,\n\t38264 - 11904: 0x8BEA,\n\t38266 - 11904: 0xD844,\n\t38267 - 11904: 0xDC78,\n\t38268 - 11904: 0xE8A5,\n\t38269 - 11904: 0xF376,\n\t38271 - 11904: 0x8BEB,\n\t38272 - 11904: 0xAAF9,\n\t38274 - 11904: 0xADAC,\n\t38275 - 11904: 0xB07B,\n\t38277 - 11904: 0x90B2,\n\t38278 - 11904: 0xD845,\n\t38280 - 11904: 0xD846,\n\t38281 - 11904: 0xB3AC,\n\t38283 - 11904: 0xB67D,\n\t38284 - 11904: 0xDC7A,\n\t38285 - 11904: 0xDC79,\n\t38286 - 11904: 0xB6A3,\n\t38287 - 11904: 0xB67C,\n\t38288 - 11904: 0xDC7B,\n\t38289 - 11904: 0xB67E,\n\t38290 - 11904: 0xB6A2,\n\t38291 - 11904: 0xB6A1,\n\t38292 - 11904: 0xB67B,\n\t38294 - 11904: 0x95E9,\n\t38295 - 11904: 0x95E8,\n\t38296 - 11904: 0xB968,\n\t38297 - 11904: 0x95E6,\n\t38299 - 11904: 0xE0D0,\n\t38300 - 11904: 0xE0CE,\n\t38302 - 11904: 0xE0CF,\n\t38303 - 11904: 0xE0CD,\n\t38304 - 11904: 0x90B5,\n\t38305 - 11904: 0xBBD2,\n\t38306 - 11904: 0x9A54,\n\t38307 - 11904: 0xBBD5,\n\t38308 - 11904: 0xBBD7,\n\t38309 - 11904: 0xBBD6,\n\t38310 - 11904: 0x90B3,\n\t38311 - 11904: 0x95E7,\n\t38312 - 11904: 0xBBD3,\n\t38313 - 11904: 0xBBD4,\n\t38314 - 11904: 0x8B50,\n\t38315 - 11904: 0xE8A7,\n\t38316 - 11904: 0xE8A6,\n\t38317 - 11904: 0xBE5B,\n\t38318 - 11904: 0xE8A8,\n\t38320 - 11904: 0xE8A9,\n\t38321 - 11904: 0xBE5C,\n\t38325 - 11904: 0xEC4D,\n\t38326 - 11904: 0xEC4B,\n\t38327 - 11904: 0xEEF3,\n\t38329 - 11904: 0xEC49,\n\t38330 - 11904: 0xEC4A,\n\t38331 - 11904: 0xC046,\n\t38332 - 11904: 0xEC46,\n\t38333 - 11904: 0xEC4E,\n\t38334 - 11904: 0xEC48,\n\t38335 - 11904: 0xEC4C,\n\t38336 - 11904: 0xEEEF,\n\t38339 - 11904: 0xEEF1,\n\t38341 - 11904: 0xEEF2,\n\t38342 - 11904: 0xC1F3,\n\t38343 - 11904: 0xEEEE,\n\t38344 - 11904: 0xC1F2,\n\t38345 - 11904: 0xEEF0,\n\t38346 - 11904: 0xC1EF,\n\t38347 - 11904: 0xC1F0,\n\t38348 - 11904: 0xC1F1,\n\t38349 - 11904: 0xEC47,\n\t38352 - 11904: 0xC2F5,\n\t38353 - 11904: 0xF16E,\n\t38354 - 11904: 0xF16C,\n\t38355 - 11904: 0xF16D,\n\t38356 - 11904: 0xC2F3,\n\t38357 - 11904: 0xC2F6,\n\t38358 - 11904: 0xC2F4,\n\t38362 - 11904: 0xF377,\n\t38363 - 11904: 0xF378,\n\t38364 - 11904: 0xC3F6,\n\t38366 - 11904: 0xF545,\n\t38367 - 11904: 0xF547,\n\t38368 - 11904: 0xF546,\n\t38369 - 11904: 0xC4C4,\n\t38370 - 11904: 0xC550,\n\t38371 - 11904: 0xF66D,\n\t38372 - 11904: 0xF66C,\n\t38373 - 11904: 0xF66B,\n\t38376 - 11904: 0x8BEC,\n\t38388 - 11904: 0x9A56,\n\t38428 - 11904: 0xAAFA,\n\t38429 - 11904: 0x8BFB,\n\t38430 - 11904: 0xC9AA,\n\t38432 - 11904: 0xCA58,\n\t38433 - 11904: 0xA6E9,\n\t38434 - 11904: 0xCA56,\n\t38435 - 11904: 0xCA59,\n\t38436 - 11904: 0xCA57,\n\t38440 - 11904: 0xCBAE,\n\t38442 - 11904: 0xA8C1,\n\t38444 - 11904: 0xA8C2,\n\t38445 - 11904: 0xCBB0,\n\t38446 - 11904: 0xA8BF,\n\t38447 - 11904: 0xCBAF,\n\t38448 - 11904: 0xCBAD,\n\t38449 - 11904: 0xA8C0,\n\t38450 - 11904: 0xA8BE,\n\t38451 - 11904: 0x9A57,\n\t38456 - 11904: 0xA0AA,\n\t38457 - 11904: 0xCDD8,\n\t38458 - 11904: 0xCDDB,\n\t38459 - 11904: 0xAAFD,\n\t38460 - 11904: 0xCDDA,\n\t38461 - 11904: 0xCDD9,\n\t38463 - 11904: 0xAAFC,\n\t38464 - 11904: 0xAAFB,\n\t38465 - 11904: 0x9FA6,\n\t38466 - 11904: 0xAB40,\n\t38467 - 11904: 0xCDDC,\n\t38468 - 11904: 0xAAFE,\n\t38469 - 11904: 0x99CC,\n\t38474 - 11904: 0xD0C6,\n\t38475 - 11904: 0xADAE,\n\t38476 - 11904: 0xADAF,\n\t38477 - 11904: 0xADB0,\n\t38478 - 11904: 0xD0C7,\n\t38479 - 11904: 0xD0C3,\n\t38480 - 11904: 0xADAD,\n\t38481 - 11904: 0xD0C4,\n\t38483 - 11904: 0xD0C5,\n\t38484 - 11904: 0xD0C2,\n\t38486 - 11904: 0x9C59,\n\t38488 - 11904: 0xB0A4,\n\t38491 - 11904: 0xB0A1,\n\t38492 - 11904: 0xD445,\n\t38493 - 11904: 0xB0A2,\n\t38494 - 11904: 0xB0A5,\n\t38495 - 11904: 0xD446,\n\t38497 - 11904: 0xB07E,\n\t38498 - 11904: 0xB07C,\n\t38499 - 11904: 0xB07D,\n\t38500 - 11904: 0xB0A3,\n\t38505 - 11904: 0x99B5,\n\t38506 - 11904: 0xB3AD,\n\t38507 - 11904: 0xD849,\n\t38508 - 11904: 0xB3B5,\n\t38509 - 11904: 0xD848,\n\t38511 - 11904: 0xD84B,\n\t38512 - 11904: 0xB3B1,\n\t38513 - 11904: 0xD84A,\n\t38514 - 11904: 0xB6AB,\n\t38515 - 11904: 0xB3AF,\n\t38516 - 11904: 0xB3B2,\n\t38517 - 11904: 0xB3AE,\n\t38518 - 11904: 0xB3B3,\n\t38519 - 11904: 0xB3B4,\n\t38520 - 11904: 0xB3B0,\n\t38523 - 11904: 0x90BE,\n\t38524 - 11904: 0xD847,\n\t38525 - 11904: 0xB6A7,\n\t38526 - 11904: 0xDC7D,\n\t38528 - 11904: 0xDCA3,\n\t38529 - 11904: 0x9FAF,\n\t38531 - 11904: 0xDCA2,\n\t38532 - 11904: 0xB6AC,\n\t38533 - 11904: 0xB6A8,\n\t38534 - 11904: 0xB6A9,\n\t38535 - 11904: 0xDC7C,\n\t38536 - 11904: 0xDC7E,\n\t38537 - 11904: 0xDCA1,\n\t38538 - 11904: 0xB6A4,\n\t38539 - 11904: 0xB6A6,\n\t38541 - 11904: 0xB6AA,\n\t38542 - 11904: 0xB6A5,\n\t38543 - 11904: 0x95F2,\n\t38545 - 11904: 0xE0D3,\n\t38546 - 11904: 0xE0D1,\n\t38547 - 11904: 0xE0D2,\n\t38548 - 11904: 0xB96A,\n\t38549 - 11904: 0xB96B,\n\t38550 - 11904: 0x90BF,\n\t38551 - 11904: 0xE0D4,\n\t38552 - 11904: 0xB969,\n\t38553 - 11904: 0xBBD8,\n\t38555 - 11904: 0xBBDA,\n\t38556 - 11904: 0xBBD9,\n\t38558 - 11904: 0xE4BB,\n\t38561 - 11904: 0xE4BC,\n\t38562 - 11904: 0xE8AB,\n\t38563 - 11904: 0x90C1,\n\t38564 - 11904: 0xE8AA,\n\t38565 - 11904: 0xFEE4,\n\t38567 - 11904: 0xC047,\n\t38568 - 11904: 0xC048,\n\t38569 - 11904: 0xEC4F,\n\t38570 - 11904: 0xC049,\n\t38572 - 11904: 0xEEF6,\n\t38574 - 11904: 0xEEF4,\n\t38576 - 11904: 0xEEF5,\n\t38577 - 11904: 0xC1F4,\n\t38579 - 11904: 0xF16F,\n\t38580 - 11904: 0xC3F7,\n\t38582 - 11904: 0xC6D7,\n\t38584 - 11904: 0xC1F5,\n\t38585 - 11904: 0xAB41,\n\t38587 - 11904: 0xB0A6,\n\t38588 - 11904: 0xD447,\n\t38589 - 11904: 0x90C7,\n\t38591 - 11904: 0xD84C,\n\t38592 - 11904: 0xB3B6,\n\t38593 - 11904: 0xB6AD,\n\t38594 - 11904: 0xDCA4,\n\t38595 - 11904: 0xDCA6,\n\t38596 - 11904: 0xB6AF,\n\t38597 - 11904: 0xB6AE,\n\t38598 - 11904: 0xB6B0,\n\t38599 - 11904: 0xB6B1,\n\t38600 - 11904: 0xDCA5,\n\t38601 - 11904: 0xB96E,\n\t38602 - 11904: 0xB96F,\n\t38603 - 11904: 0xB96D,\n\t38604 - 11904: 0xBBDB,\n\t38605 - 11904: 0xB96C,\n\t38606 - 11904: 0xE0D5,\n\t38610 - 11904: 0xBBDC,\n\t38611 - 11904: 0xE8AC,\n\t38612 - 11904: 0xEC50,\n\t38613 - 11904: 0xC04A,\n\t38614 - 11904: 0xC1F6,\n\t38615 - 11904: 0xF170,\n\t38616 - 11904: 0xF174,\n\t38617 - 11904: 0xC2F9,\n\t38618 - 11904: 0xF171,\n\t38619 - 11904: 0xC2FA,\n\t38620 - 11904: 0xC2F8,\n\t38621 - 11904: 0xF175,\n\t38622 - 11904: 0xC2FB,\n\t38623 - 11904: 0xF173,\n\t38625 - 11904: 0xF379,\n\t38626 - 11904: 0xC2F7,\n\t38627 - 11904: 0xC3F8,\n\t38629 - 11904: 0xF8CD,\n\t38632 - 11904: 0xAB42,\n\t38633 - 11904: 0xB3B8,\n\t38634 - 11904: 0xB3B7,\n\t38639 - 11904: 0xB6B2,\n\t38640 - 11904: 0xDCA8,\n\t38641 - 11904: 0xDCA7,\n\t38642 - 11904: 0xB6B3,\n\t38644 - 11904: 0x92E4,\n\t38645 - 11904: 0xE0D9,\n\t38646 - 11904: 0xB973,\n\t38647 - 11904: 0xB970,\n\t38648 - 11904: 0xE0D8,\n\t38649 - 11904: 0xB972,\n\t38650 - 11904: 0xE0D6,\n\t38651 - 11904: 0xB971,\n\t38653 - 11904: 0xE0D7,\n\t38655 - 11904: 0xE4BD,\n\t38656 - 11904: 0xBBDD,\n\t38658 - 11904: 0xE8AF,\n\t38659 - 11904: 0x9F52,\n\t38660 - 11904: 0xBE5D,\n\t38661 - 11904: 0xE8AD,\n\t38662 - 11904: 0xBE5E,\n\t38663 - 11904: 0xBE5F,\n\t38664 - 11904: 0xE8AE,\n\t38665 - 11904: 0xBE60,\n\t38667 - 11904: 0xEC51,\n\t38669 - 11904: 0xC04E,\n\t38670 - 11904: 0xC04B,\n\t38671 - 11904: 0xC050,\n\t38672 - 11904: 0xEC53,\n\t38673 - 11904: 0xC04C,\n\t38674 - 11904: 0xEC52,\n\t38675 - 11904: 0xC04F,\n\t38678 - 11904: 0xC04D,\n\t38680 - 11904: 0xEEF9,\n\t38681 - 11904: 0xEEFB,\n\t38683 - 11904: 0x90DB,\n\t38684 - 11904: 0xC1F7,\n\t38685 - 11904: 0xEEFA,\n\t38686 - 11904: 0xC1F8,\n\t38687 - 11904: 0xEEF8,\n\t38688 - 11904: 0xEEF7,\n\t38689 - 11904: 0xA066,\n\t38690 - 11904: 0xF177,\n\t38691 - 11904: 0xF176,\n\t38692 - 11904: 0xC2FC,\n\t38693 - 11904: 0xF178,\n\t38694 - 11904: 0xF37E,\n\t38695 - 11904: 0xC3FA,\n\t38696 - 11904: 0xF37D,\n\t38697 - 11904: 0xF37A,\n\t38698 - 11904: 0xC3F9,\n\t38699 - 11904: 0xF37B,\n\t38700 - 11904: 0xF37C,\n\t38702 - 11904: 0xF548,\n\t38703 - 11904: 0xF549,\n\t38704 - 11904: 0xC4C5,\n\t38705 - 11904: 0x90D2,\n\t38706 - 11904: 0xC553,\n\t38708 - 11904: 0x876B,\n\t38709 - 11904: 0xF66E,\n\t38710 - 11904: 0x90D4,\n\t38712 - 11904: 0xC551,\n\t38713 - 11904: 0xC552,\n\t38714 - 11904: 0xF66F,\n\t38717 - 11904: 0xC5B4,\n\t38718 - 11904: 0xC5B5,\n\t38719 - 11904: 0xF771,\n\t38720 - 11904: 0x9A5B,\n\t38721 - 11904: 0x95FD,\n\t38722 - 11904: 0xC645,\n\t38723 - 11904: 0xF8CF,\n\t38724 - 11904: 0xC647,\n\t38726 - 11904: 0xF8CE,\n\t38727 - 11904: 0xF8D0,\n\t38728 - 11904: 0xC646,\n\t38729 - 11904: 0xF957,\n\t38730 - 11904: 0x87B1,\n\t38731 - 11904: 0xF9AD,\n\t38737 - 11904: 0x8BC4,\n\t38738 - 11904: 0xAB43,\n\t38741 - 11904: 0x8C66,\n\t38742 - 11904: 0xB974,\n\t38743 - 11904: 0x90DE,\n\t38744 - 11904: 0xE4BE,\n\t38746 - 11904: 0xE8B0,\n\t38747 - 11904: 0xC051,\n\t38748 - 11904: 0xC052,\n\t38749 - 11904: 0x9CE4,\n\t38750 - 11904: 0xAB44,\n\t38751 - 11904: 0x90E1,\n\t38752 - 11904: 0xBE61,\n\t38753 - 11904: 0xC3FB,\n\t38754 - 11904: 0xADB1,\n\t38758 - 11904: 0xC053,\n\t38760 - 11904: 0xC5E2,\n\t38761 - 11904: 0xADB2,\n\t38762 - 11904: 0xD84D,\n\t38764 - 11904: 0xDCA9,\n\t38765 - 11904: 0x9E46,\n\t38766 - 11904: 0xDCAB,\n\t38768 - 11904: 0xDCAA,\n\t38769 - 11904: 0x9651,\n\t38770 - 11904: 0xE0DD,\n\t38771 - 11904: 0xE0DA,\n\t38772 - 11904: 0xB975,\n\t38774 - 11904: 0xB976,\n\t38775 - 11904: 0xE0DB,\n\t38776 - 11904: 0xE0DC,\n\t38778 - 11904: 0xE4C0,\n\t38779 - 11904: 0xE4C5,\n\t38780 - 11904: 0xBBDE,\n\t38781 - 11904: 0xE4BF,\n\t38782 - 11904: 0xE4C1,\n\t38783 - 11904: 0xE4C8,\n\t38784 - 11904: 0xE4C3,\n\t38785 - 11904: 0xE4C7,\n\t38786 - 11904: 0xE4C4,\n\t38787 - 11904: 0xE4C2,\n\t38788 - 11904: 0xE4C6,\n\t38789 - 11904: 0xBBDF,\n\t38791 - 11904: 0xFB58,\n\t38792 - 11904: 0xE8B3,\n\t38793 - 11904: 0x90E6,\n\t38794 - 11904: 0xE8B1,\n\t38795 - 11904: 0xBE63,\n\t38797 - 11904: 0xBE62,\n\t38798 - 11904: 0xE8B2,\n\t38799 - 11904: 0xBE64,\n\t38804 - 11904: 0xEC56,\n\t38807 - 11904: 0xEC55,\n\t38808 - 11904: 0xC054,\n\t38809 - 11904: 0xEC54,\n\t38810 - 11904: 0xEEFC,\n\t38811 - 11904: 0x9650,\n\t38812 - 11904: 0xEEFE,\n\t38813 - 11904: 0xEF41,\n\t38814 - 11904: 0xEF40,\n\t38815 - 11904: 0x90E7,\n\t38816 - 11904: 0xC1F9,\n\t38817 - 11904: 0xEEFD,\n\t38818 - 11904: 0xF1A1,\n\t38819 - 11904: 0xC2FD,\n\t38820 - 11904: 0xF17D,\n\t38821 - 11904: 0xF1A2,\n\t38822 - 11904: 0xC2FE,\n\t38824 - 11904: 0xF17B,\n\t38826 - 11904: 0xF17E,\n\t38827 - 11904: 0xF17C,\n\t38828 - 11904: 0xF179,\n\t38829 - 11904: 0xC340,\n\t38830 - 11904: 0xF17A,\n\t38833 - 11904: 0x90E8,\n\t38834 - 11904: 0x9A5D,\n\t38835 - 11904: 0xF3A1,\n\t38836 - 11904: 0x9F7A,\n\t38838 - 11904: 0xF3A3,\n\t38839 - 11904: 0xF3A2,\n\t38840 - 11904: 0x9B5C,\n\t38841 - 11904: 0xF54A,\n\t38842 - 11904: 0x9F7C,\n\t38843 - 11904: 0xF54B,\n\t38845 - 11904: 0xFC52,\n\t38846 - 11904: 0x90E9,\n\t38847 - 11904: 0xF670,\n\t38848 - 11904: 0x90EA,\n\t38849 - 11904: 0xC5B7,\n\t38850 - 11904: 0x9A5E,\n\t38851 - 11904: 0xC5B6,\n\t38852 - 11904: 0xF84F,\n\t38853 - 11904: 0xF850,\n\t38854 - 11904: 0xC648,\n\t38855 - 11904: 0xF8D1,\n\t38856 - 11904: 0x9F76,\n\t38857 - 11904: 0xC669,\n\t38859 - 11904: 0xADB3,\n\t38860 - 11904: 0xB6B4,\n\t38861 - 11904: 0xE4CA,\n\t38862 - 11904: 0xE4C9,\n\t38863 - 11904: 0xE8B5,\n\t38864 - 11904: 0xE8B4,\n\t38866 - 11904: 0x90EB,\n\t38867 - 11904: 0xC1FA,\n\t38868 - 11904: 0xEF43,\n\t38869 - 11904: 0xEF42,\n\t38870 - 11904: 0xF1A5,\n\t38871 - 11904: 0xF1A3,\n\t38872 - 11904: 0xF1A6,\n\t38873 - 11904: 0xF1A4,\n\t38876 - 11904: 0xC3FC,\n\t38877 - 11904: 0xF3A4,\n\t38878 - 11904: 0xF3A5,\n\t38879 - 11904: 0xF3A6,\n\t38880 - 11904: 0x90EC,\n\t38881 - 11904: 0xF671,\n\t38883 - 11904: 0xF772,\n\t38885 - 11904: 0xF8D2,\n\t38886 - 11904: 0x8BEE,\n\t38893 - 11904: 0xADB4,\n\t38894 - 11904: 0x90EE,\n\t38896 - 11904: 0xEC57,\n\t38897 - 11904: 0xEF44,\n\t38898 - 11904: 0x91C6,\n\t38899 - 11904: 0xADB5,\n\t38901 - 11904: 0x90F2,\n\t38902 - 11904: 0xBBE0,\n\t38904 - 11904: 0xEC58,\n\t38905 - 11904: 0xC341,\n\t38906 - 11904: 0xF1A7,\n\t38907 - 11904: 0xC3FD,\n\t38909 - 11904: 0xF54C,\n\t38910 - 11904: 0xF54D,\n\t38911 - 11904: 0xC554,\n\t38912 - 11904: 0xF851,\n\t38913 - 11904: 0xADB6,\n\t38914 - 11904: 0xB3BB,\n\t38915 - 11904: 0xB3BC,\n\t38916 - 11904: 0xD84E,\n\t38917 - 11904: 0xB6B5,\n\t38918 - 11904: 0xB6B6,\n\t38919 - 11904: 0xDCAC,\n\t38920 - 11904: 0xB6B7,\n\t38922 - 11904: 0xB97A,\n\t38924 - 11904: 0xB97C,\n\t38925 - 11904: 0xE0DF,\n\t38926 - 11904: 0xE0E0,\n\t38927 - 11904: 0xE0DE,\n\t38928 - 11904: 0xB977,\n\t38929 - 11904: 0xB978,\n\t38930 - 11904: 0xB97B,\n\t38931 - 11904: 0xB979,\n\t38932 - 11904: 0xFCBC,\n\t38933 - 11904: 0x8A74,\n\t38934 - 11904: 0xE4CB,\n\t38935 - 11904: 0xBBE1,\n\t38936 - 11904: 0xBBE2,\n\t38939 - 11904: 0xE8BC,\n\t38940 - 11904: 0xBE67,\n\t38941 - 11904: 0xE8B7,\n\t38942 - 11904: 0xE8B6,\n\t38943 - 11904: 0x9657,\n\t38944 - 11904: 0xE8BB,\n\t38945 - 11904: 0xBE65,\n\t38947 - 11904: 0x9CEF,\n\t38948 - 11904: 0xC05B,\n\t38950 - 11904: 0xE8B8,\n\t38951 - 11904: 0xE8BD,\n\t38952 - 11904: 0xE8BA,\n\t38953 - 11904: 0xE8B9,\n\t38955 - 11904: 0xBE66,\n\t38957 - 11904: 0xC059,\n\t38958 - 11904: 0x9FDF,\n\t38959 - 11904: 0xEC5A,\n\t38960 - 11904: 0xC055,\n\t38962 - 11904: 0xEC5B,\n\t38963 - 11904: 0x90F7,\n\t38964 - 11904: 0x90F6,\n\t38965 - 11904: 0xEC59,\n\t38967 - 11904: 0xC058,\n\t38968 - 11904: 0xC056,\n\t38969 - 11904: 0xC05A,\n\t38971 - 11904: 0xC057,\n\t38977 - 11904: 0xEF45,\n\t38979 - 11904: 0xEF4A,\n\t38980 - 11904: 0xEF46,\n\t38981 - 11904: 0xEF49,\n\t38982 - 11904: 0xC1FB,\n\t38983 - 11904: 0x9B5E,\n\t38984 - 11904: 0xEDD4,\n\t38985 - 11904: 0xEF48,\n\t38986 - 11904: 0xEF47,\n\t38987 - 11904: 0x90F8,\n\t38988 - 11904: 0xC344,\n\t38989 - 11904: 0xC342,\n\t38990 - 11904: 0xC345,\n\t38991 - 11904: 0xC343,\n\t38992 - 11904: 0xF1A8,\n\t38993 - 11904: 0xF1A9,\n\t38994 - 11904: 0xF1AA,\n\t38995 - 11904: 0xC346,\n\t38998 - 11904: 0x8CFC,\n\t38999 - 11904: 0xF3AA,\n\t39000 - 11904: 0xC440,\n\t39001 - 11904: 0xF3A8,\n\t39003 - 11904: 0xC441,\n\t39004 - 11904: 0xF3A7,\n\t39005 - 11904: 0xF3A9,\n\t39006 - 11904: 0xC3FE,\n\t39007 - 11904: 0xF551,\n\t39008 - 11904: 0xF54E,\n\t39010 - 11904: 0xF54F,\n\t39011 - 11904: 0xF550,\n\t39012 - 11904: 0xF672,\n\t39013 - 11904: 0xC556,\n\t39014 - 11904: 0x90F9,\n\t39015 - 11904: 0xC555,\n\t39016 - 11904: 0x8CC9,\n\t39017 - 11904: 0xF774,\n\t39018 - 11904: 0xF773,\n\t39019 - 11904: 0xC5B8,\n\t39020 - 11904: 0xFA6A,\n\t39023 - 11904: 0xC5E3,\n\t39024 - 11904: 0xC649,\n\t39025 - 11904: 0xC660,\n\t39026 - 11904: 0xF958,\n\t39027 - 11904: 0xF9AE,\n\t39028 - 11904: 0xF9AF,\n\t39029 - 11904: 0x8BEF,\n\t39080 - 11904: 0xADB7,\n\t39081 - 11904: 0xDCAD,\n\t39084 - 11904: 0xE0E1,\n\t39085 - 11904: 0xE4CC,\n\t39086 - 11904: 0xE4CD,\n\t39087 - 11904: 0xBBE3,\n\t39089 - 11904: 0xBBE4,\n\t39090 - 11904: 0xE8BE,\n\t39091 - 11904: 0xBE68,\n\t39092 - 11904: 0x9FE0,\n\t39094 - 11904: 0xC1FC,\n\t39095 - 11904: 0x9142,\n\t39096 - 11904: 0xF1AB,\n\t39097 - 11904: 0x9A62,\n\t39098 - 11904: 0xC347,\n\t39099 - 11904: 0xF3AD,\n\t39100 - 11904: 0xC442,\n\t39101 - 11904: 0xF3AC,\n\t39102 - 11904: 0xF3AE,\n\t39103 - 11904: 0xF3AB,\n\t39104 - 11904: 0xF675,\n\t39105 - 11904: 0xF552,\n\t39106 - 11904: 0xF553,\n\t39107 - 11904: 0x9569,\n\t39108 - 11904: 0xC4C6,\n\t39110 - 11904: 0xF674,\n\t39111 - 11904: 0x9144,\n\t39112 - 11904: 0x9143,\n\t39113 - 11904: 0xF673,\n\t39114 - 11904: 0x9141,\n\t39115 - 11904: 0xF775,\n\t39116 - 11904: 0xF9B0,\n\t39118 - 11904: 0x8BF0,\n\t39131 - 11904: 0xADB8,\n\t39132 - 11904: 0x9660,\n\t39134 - 11904: 0x8BF1,\n\t39135 - 11904: 0xADB9,\n\t39136 - 11904: 0x99F6,\n\t39137 - 11904: 0x9149,\n\t39138 - 11904: 0xB0A7,\n\t39139 - 11904: 0xD448,\n\t39141 - 11904: 0xD84F,\n\t39142 - 11904: 0x914A,\n\t39143 - 11904: 0xB6B8,\n\t39145 - 11904: 0xB6BB,\n\t39146 - 11904: 0xB6B9,\n\t39147 - 11904: 0xDCAE,\n\t39148 - 11904: 0x914B,\n\t39149 - 11904: 0xB6BD,\n\t39151 - 11904: 0xB6BA,\n\t39153 - 11904: 0x9A64,\n\t39154 - 11904: 0xB6BC,\n\t39156 - 11904: 0xB97E,\n\t39157 - 11904: 0x8ABF,\n\t39158 - 11904: 0xE0E2,\n\t39161 - 11904: 0xE0E3,\n\t39162 - 11904: 0xE8C0,\n\t39164 - 11904: 0xB97D,\n\t39165 - 11904: 0xB9A1,\n\t39166 - 11904: 0xB9A2,\n\t39168 - 11904: 0xE4CF,\n\t39170 - 11904: 0xE4CE,\n\t39171 - 11904: 0xBBE5,\n\t39173 - 11904: 0xBBE6,\n\t39175 - 11904: 0xE4D0,\n\t39176 - 11904: 0xE8BF,\n\t39177 - 11904: 0xBBE8,\n\t39178 - 11904: 0xBE69,\n\t39180 - 11904: 0xBBE7,\n\t39182 - 11904: 0x9A66,\n\t39184 - 11904: 0xC05C,\n\t39185 - 11904: 0xE8C1,\n\t39186 - 11904: 0xBE6B,\n\t39187 - 11904: 0xBE6A,\n\t39188 - 11904: 0xE8C2,\n\t39189 - 11904: 0xE8C5,\n\t39190 - 11904: 0xE8C3,\n\t39191 - 11904: 0xE8C4,\n\t39192 - 11904: 0xBE6C,\n\t39193 - 11904: 0x9A67,\n\t39194 - 11904: 0xC061,\n\t39195 - 11904: 0xC05F,\n\t39196 - 11904: 0x9A69,\n\t39198 - 11904: 0xC05E,\n\t39199 - 11904: 0xEC5D,\n\t39201 - 11904: 0xC060,\n\t39204 - 11904: 0xEC5C,\n\t39205 - 11904: 0xEF4B,\n\t39207 - 11904: 0xEC5E,\n\t39208 - 11904: 0xC05D,\n\t39209 - 11904: 0xEC5F,\n\t39210 - 11904: 0xEF4E,\n\t39211 - 11904: 0xEF4C,\n\t39212 - 11904: 0xEF4D,\n\t39213 - 11904: 0xEF52,\n\t39214 - 11904: 0xC34B,\n\t39215 - 11904: 0xEF51,\n\t39216 - 11904: 0xEF54,\n\t39217 - 11904: 0xEF53,\n\t39218 - 11904: 0xEF50,\n\t39219 - 11904: 0xEF4F,\n\t39221 - 11904: 0xC1FD,\n\t39223 - 11904: 0x9A6A,\n\t39224 - 11904: 0x9652,\n\t39225 - 11904: 0x914D,\n\t39226 - 11904: 0xF1AE,\n\t39227 - 11904: 0x9666,\n\t39228 - 11904: 0xF1AD,\n\t39229 - 11904: 0xC34A,\n\t39230 - 11904: 0xC348,\n\t39231 - 11904: 0xC349,\n\t39232 - 11904: 0x9F7B,\n\t39233 - 11904: 0xF1AC,\n\t39234 - 11904: 0x9A6B,\n\t39235 - 11904: 0xF3B1,\n\t39237 - 11904: 0xC443,\n\t39239 - 11904: 0xF3B0,\n\t39240 - 11904: 0xF3AF,\n\t39241 - 11904: 0xC444,\n\t39242 - 11904: 0xA06C,\n\t39243 - 11904: 0xF558,\n\t39244 - 11904: 0xF557,\n\t39245 - 11904: 0x9667,\n\t39246 - 11904: 0xF555,\n\t39248 - 11904: 0xF554,\n\t39249 - 11904: 0xC4C8,\n\t39250 - 11904: 0xC4C7,\n\t39251 - 11904: 0xF559,\n\t39252 - 11904: 0xF776,\n\t39253 - 11904: 0xC5B9,\n\t39254 - 11904: 0xF677,\n\t39255 - 11904: 0xC557,\n\t39256 - 11904: 0xF676,\n\t39257 - 11904: 0xF556,\n\t39259 - 11904: 0xF777,\n\t39260 - 11904: 0xC5E4,\n\t39261 - 11904: 0x9A6C,\n\t39262 - 11904: 0xC661,\n\t39263 - 11904: 0xF959,\n\t39265 - 11904: 0xF9B1,\n\t39266 - 11904: 0x9A6D,\n\t39267 - 11904: 0x8BF2,\n\t39318 - 11904: 0xADBA,\n\t39319 - 11904: 0xD850,\n\t39320 - 11904: 0xEF55,\n\t39321 - 11904: 0xADBB,\n\t39323 - 11904: 0x966A,\n\t39324 - 11904: 0xE4D2,\n\t39325 - 11904: 0xE4D1,\n\t39326 - 11904: 0xEC60,\n\t39329 - 11904: 0xEF57,\n\t39331 - 11904: 0xEF56,\n\t39332 - 11904: 0xFCEA,\n\t39333 - 11904: 0xC34C,\n\t39334 - 11904: 0xF3B2,\n\t39335 - 11904: 0xF3B3,\n\t39336 - 11904: 0xC4C9,\n\t39338 - 11904: 0x966C,\n\t39339 - 11904: 0xF9B2,\n\t39340 - 11904: 0xB0A8,\n\t39341 - 11904: 0xB6BF,\n\t39342 - 11904: 0xB6BE,\n\t39343 - 11904: 0xE0E4,\n\t39344 - 11904: 0xE0E6,\n\t39345 - 11904: 0xB9A4,\n\t39346 - 11904: 0xE0E5,\n\t39347 - 11904: 0xB9A3,\n\t39348 - 11904: 0xB9A5,\n\t39349 - 11904: 0xE0E7,\n\t39352 - 11904: 0x91C4,\n\t39353 - 11904: 0xE4D4,\n\t39354 - 11904: 0xE4D6,\n\t39355 - 11904: 0xE4D5,\n\t39356 - 11904: 0x9677,\n\t39357 - 11904: 0xE4D8,\n\t39361 - 11904: 0xBBE9,\n\t39362 - 11904: 0xE4D7,\n\t39363 - 11904: 0xE4D3,\n\t39364 - 11904: 0x99F4,\n\t39365 - 11904: 0x9A6F,\n\t39367 - 11904: 0xE4D9,\n\t39369 - 11904: 0xE8CC,\n\t39371 - 11904: 0xE8CF,\n\t39372 - 11904: 0xE8D1,\n\t39373 - 11904: 0xE8C7,\n\t39374 - 11904: 0xE8CB,\n\t39375 - 11904: 0xE8C8,\n\t39376 - 11904: 0xBE6E,\n\t39377 - 11904: 0xBE71,\n\t39378 - 11904: 0xBE73,\n\t39379 - 11904: 0xE8C9,\n\t39380 - 11904: 0xE8CA,\n\t39381 - 11904: 0xBE72,\n\t39382 - 11904: 0xE8CD,\n\t39383 - 11904: 0xE8D0,\n\t39384 - 11904: 0xE8CE,\n\t39385 - 11904: 0xBE74,\n\t39386 - 11904: 0x9FAB,\n\t39387 - 11904: 0xBE70,\n\t39388 - 11904: 0xE8C6,\n\t39389 - 11904: 0xBE6D,\n\t39391 - 11904: 0xBE6F,\n\t39392 - 11904: 0x8CBE,\n\t39393 - 11904: 0x8EC1,\n\t39394 - 11904: 0xC063,\n\t39395 - 11904: 0xEC66,\n\t39396 - 11904: 0xEC64,\n\t39397 - 11904: 0xEC63,\n\t39398 - 11904: 0x9555,\n\t39399 - 11904: 0xEC69,\n\t39401 - 11904: 0xEC68,\n\t39402 - 11904: 0xEC67,\n\t39404 - 11904: 0xEC62,\n\t39405 - 11904: 0xC062,\n\t39406 - 11904: 0xEC61,\n\t39408 - 11904: 0xEC65,\n\t39409 - 11904: 0xC064,\n\t39412 - 11904: 0xEF5A,\n\t39413 - 11904: 0x9152,\n\t39414 - 11904: 0xEF5E,\n\t39415 - 11904: 0xEF5B,\n\t39416 - 11904: 0xEF5D,\n\t39417 - 11904: 0xEF5C,\n\t39418 - 11904: 0xEF59,\n\t39419 - 11904: 0xEF5F,\n\t39420 - 11904: 0xEF62,\n\t39421 - 11904: 0xEF60,\n\t39422 - 11904: 0xEF61,\n\t39423 - 11904: 0xC240,\n\t39425 - 11904: 0xC1FE,\n\t39426 - 11904: 0xEF58,\n\t39427 - 11904: 0xEF63,\n\t39428 - 11904: 0xF1B3,\n\t39429 - 11904: 0xF1B6,\n\t39430 - 11904: 0xF1B8,\n\t39431 - 11904: 0xF1B7,\n\t39433 - 11904: 0xF1B1,\n\t39434 - 11904: 0xF1B5,\n\t39435 - 11904: 0xF1B0,\n\t39436 - 11904: 0x9153,\n\t39437 - 11904: 0xF1B2,\n\t39438 - 11904: 0xC34D,\n\t39439 - 11904: 0xF1AF,\n\t39440 - 11904: 0x9155,\n\t39441 - 11904: 0xF1B4,\n\t39444 - 11904: 0xF3C0,\n\t39445 - 11904: 0xF3B5,\n\t39446 - 11904: 0xC445,\n\t39449 - 11904: 0xC446,\n\t39450 - 11904: 0xF3B4,\n\t39451 - 11904: 0xF3B9,\n\t39452 - 11904: 0xF3BF,\n\t39453 - 11904: 0xF3B7,\n\t39454 - 11904: 0xF3BE,\n\t39455 - 11904: 0x955D,\n\t39456 - 11904: 0xF3BB,\n\t39457 - 11904: 0x9671,\n\t39458 - 11904: 0xF3BA,\n\t39459 - 11904: 0xF3BD,\n\t39460 - 11904: 0xF3B8,\n\t39461 - 11904: 0xF3B6,\n\t39462 - 11904: 0x9C6D,\n\t39463 - 11904: 0xF3BC,\n\t39465 - 11904: 0xF560,\n\t39466 - 11904: 0xF55E,\n\t39467 - 11904: 0xC4CA,\n\t39468 - 11904: 0xF55D,\n\t39469 - 11904: 0xF563,\n\t39470 - 11904: 0xF561,\n\t39471 - 11904: 0x9673,\n\t39472 - 11904: 0xC4CB,\n\t39473 - 11904: 0xF55C,\n\t39474 - 11904: 0xF55A,\n\t39476 - 11904: 0xF55B,\n\t39477 - 11904: 0xC4CD,\n\t39478 - 11904: 0xF55F,\n\t39479 - 11904: 0xC4CC,\n\t39480 - 11904: 0xF562,\n\t39481 - 11904: 0xF678,\n\t39482 - 11904: 0xF67E,\n\t39483 - 11904: 0x9154,\n\t39484 - 11904: 0x9A71,\n\t39485 - 11904: 0xF679,\n\t39486 - 11904: 0xC55B,\n\t39487 - 11904: 0xF6A1,\n\t39488 - 11904: 0xC55A,\n\t39489 - 11904: 0xF67D,\n\t39490 - 11904: 0xF67C,\n\t39491 - 11904: 0xC559,\n\t39492 - 11904: 0xF67B,\n\t39493 - 11904: 0xC558,\n\t39494 - 11904: 0xF67A,\n\t39496 - 11904: 0xF77D,\n\t39497 - 11904: 0xF7A1,\n\t39498 - 11904: 0xF77E,\n\t39500 - 11904: 0xF77B,\n\t39501 - 11904: 0xC5BB,\n\t39502 - 11904: 0xF778,\n\t39503 - 11904: 0xF77C,\n\t39504 - 11904: 0xF7A3,\n\t39506 - 11904: 0xF7A2,\n\t39507 - 11904: 0xF779,\n\t39508 - 11904: 0xF77A,\n\t39509 - 11904: 0xC5BA,\n\t39510 - 11904: 0xF852,\n\t39511 - 11904: 0xC5E7,\n\t39512 - 11904: 0x9156,\n\t39513 - 11904: 0xF853,\n\t39514 - 11904: 0xC5E5,\n\t39515 - 11904: 0xC5E6,\n\t39516 - 11904: 0x966D,\n\t39518 - 11904: 0xF8D3,\n\t39519 - 11904: 0xC64A,\n\t39520 - 11904: 0xF976,\n\t39522 - 11904: 0xC66A,\n\t39523 - 11904: 0x9557,\n\t39524 - 11904: 0xF9B3,\n\t39525 - 11904: 0xC66B,\n\t39526 - 11904: 0xF9B4,\n\t39527 - 11904: 0xF9B5,\n\t39528 - 11904: 0xF9C3,\n\t39529 - 11904: 0xF9C2,\n\t39530 - 11904: 0xC67A,\n\t39531 - 11904: 0xF9CD,\n\t39532 - 11904: 0x89C6,\n\t39567 - 11904: 0x89C7,\n\t39592 - 11904: 0xB0A9,\n\t39595 - 11904: 0xE0E9,\n\t39597 - 11904: 0xE0E8,\n\t39599 - 11904: 0xBBEA,\n\t39600 - 11904: 0xBBEB,\n\t39601 - 11904: 0xE4DA,\n\t39602 - 11904: 0x8A6A,\n\t39603 - 11904: 0xE8D2,\n\t39604 - 11904: 0xEC6C,\n\t39606 - 11904: 0x8B57,\n\t39607 - 11904: 0xBE75,\n\t39608 - 11904: 0xC065,\n\t39609 - 11904: 0xEC6A,\n\t39610 - 11904: 0x9FE1,\n\t39611 - 11904: 0xEC6D,\n\t39612 - 11904: 0xC066,\n\t39613 - 11904: 0x9B5F,\n\t39614 - 11904: 0xEF64,\n\t39615 - 11904: 0xEC6B,\n\t39616 - 11904: 0xF1B9,\n\t39617 - 11904: 0xC34E,\n\t39618 - 11904: 0xF3C1,\n\t39622 - 11904: 0xF566,\n\t39623 - 11904: 0xF564,\n\t39626 - 11904: 0xF565,\n\t39629 - 11904: 0xF6A2,\n\t39631 - 11904: 0xC55C,\n\t39632 - 11904: 0xF7A4,\n\t39633 - 11904: 0xC5EA,\n\t39634 - 11904: 0xC5BC,\n\t39635 - 11904: 0xC5E8,\n\t39636 - 11904: 0xC5E9,\n\t39637 - 11904: 0xF8D4,\n\t39638 - 11904: 0xC662,\n\t39639 - 11904: 0xA05D,\n\t39640 - 11904: 0xB0AA,\n\t39644 - 11904: 0xF1BA,\n\t39647 - 11904: 0xD449,\n\t39648 - 11904: 0x915B,\n\t39649 - 11904: 0xB9A6,\n\t39650 - 11904: 0x915C,\n\t39651 - 11904: 0xE4DB,\n\t39654 - 11904: 0xBBEC,\n\t39655 - 11904: 0xE4DC,\n\t39659 - 11904: 0xE8D4,\n\t39660 - 11904: 0xE8D3,\n\t39661 - 11904: 0xC068,\n\t39662 - 11904: 0xBE76,\n\t39663 - 11904: 0xBE77,\n\t39665 - 11904: 0xE8D7,\n\t39666 - 11904: 0xE8D6,\n\t39667 - 11904: 0xE8D5,\n\t39668 - 11904: 0x915E,\n\t39670 - 11904: 0xEC6E,\n\t39671 - 11904: 0xEC71,\n\t39673 - 11904: 0xEC70,\n\t39674 - 11904: 0xEC6F,\n\t39675 - 11904: 0xC067,\n\t39676 - 11904: 0xEF68,\n\t39677 - 11904: 0xEF66,\n\t39678 - 11904: 0xEF65,\n\t39679 - 11904: 0x9F5C,\n\t39681 - 11904: 0xEF67,\n\t39682 - 11904: 0x9F57,\n\t39683 - 11904: 0xC34F,\n\t39684 - 11904: 0xF1BC,\n\t39685 - 11904: 0xF1BD,\n\t39686 - 11904: 0xC350,\n\t39688 - 11904: 0xF1BB,\n\t39689 - 11904: 0x9F65,\n\t39690 - 11904: 0xF3C3,\n\t39691 - 11904: 0xF3C2,\n\t39692 - 11904: 0xF3C5,\n\t39693 - 11904: 0xC447,\n\t39694 - 11904: 0xF3C4,\n\t39695 - 11904: 0x9A72,\n\t39696 - 11904: 0xF567,\n\t39697 - 11904: 0xF569,\n\t39698 - 11904: 0xF568,\n\t39700 - 11904: 0x9160,\n\t39701 - 11904: 0xF6A3,\n\t39702 - 11904: 0xF6A6,\n\t39703 - 11904: 0xF6A4,\n\t39704 - 11904: 0xF6A5,\n\t39705 - 11904: 0xF7A5,\n\t39706 - 11904: 0xC5BD,\n\t39710 - 11904: 0xF854,\n\t39711 - 11904: 0xF855,\n\t39712 - 11904: 0xF856,\n\t39714 - 11904: 0xC64B,\n\t39715 - 11904: 0xC663,\n\t39716 - 11904: 0xF9B6,\n\t39717 - 11904: 0xB0AB,\n\t39719 - 11904: 0xBE78,\n\t39720 - 11904: 0xC069,\n\t39721 - 11904: 0xF1BE,\n\t39722 - 11904: 0x9F5E,\n\t39723 - 11904: 0xF7A6,\n\t39725 - 11904: 0x9161,\n\t39726 - 11904: 0xF9C4,\n\t39727 - 11904: 0xD44A,\n\t39729 - 11904: 0xC67B,\n\t39730 - 11904: 0xB0AC,\n\t39731 - 11904: 0xEC72,\n\t39732 - 11904: 0x9164,\n\t39733 - 11904: 0xF1BF,\n\t39735 - 11904: 0xF3C6,\n\t39737 - 11904: 0x9F41,\n\t39738 - 11904: 0xF6A7,\n\t39739 - 11904: 0xF7A7,\n\t39740 - 11904: 0xB0AD,\n\t39742 - 11904: 0xE4DD,\n\t39743 - 11904: 0xE4DE,\n\t39744 - 11904: 0x9169,\n\t39745 - 11904: 0xBBED,\n\t39746 - 11904: 0xBBEE,\n\t39747 - 11904: 0xE8D9,\n\t39748 - 11904: 0xBE7A,\n\t39749 - 11904: 0xBE79,\n\t39750 - 11904: 0xE8D8,\n\t39752 - 11904: 0xEF69,\n\t39754 - 11904: 0xF1C0,\n\t39755 - 11904: 0xF1C2,\n\t39756 - 11904: 0xF1C1,\n\t39757 - 11904: 0xC353,\n\t39758 - 11904: 0xC352,\n\t39759 - 11904: 0xC351,\n\t39760 - 11904: 0x9168,\n\t39761 - 11904: 0xC55E,\n\t39762 - 11904: 0xF6A8,\n\t39764 - 11904: 0xC55D,\n\t39765 - 11904: 0xF7A9,\n\t39766 - 11904: 0xF7A8,\n\t39768 - 11904: 0xC64C,\n\t39769 - 11904: 0xF8D5,\n\t39770 - 11904: 0xB3BD,\n\t39771 - 11904: 0xE0EA,\n\t39775 - 11904: 0xE4E1,\n\t39776 - 11904: 0xE4DF,\n\t39777 - 11904: 0xE4E0,\n\t39780 - 11904: 0xE8E2,\n\t39782 - 11904: 0xE8DD,\n\t39783 - 11904: 0xE8DA,\n\t39784 - 11904: 0xE8E1,\n\t39785 - 11904: 0x9A74,\n\t39788 - 11904: 0xE8E3,\n\t39791 - 11904: 0xBE7C,\n\t39792 - 11904: 0xE8E0,\n\t39793 - 11904: 0xE8DC,\n\t39796 - 11904: 0xE8DB,\n\t39797 - 11904: 0xE8DF,\n\t39798 - 11904: 0xE8DE,\n\t39799 - 11904: 0xBE7B,\n\t39802 - 11904: 0xEC7D,\n\t39803 - 11904: 0xEC78,\n\t39804 - 11904: 0xEC76,\n\t39805 - 11904: 0xECA1,\n\t39806 - 11904: 0xEC77,\n\t39807 - 11904: 0x96B2,\n\t39808 - 11904: 0xEC73,\n\t39809 - 11904: 0x9A75,\n\t39810 - 11904: 0xEC79,\n\t39811 - 11904: 0xFDA5,\n\t39813 - 11904: 0xEC74,\n\t39814 - 11904: 0xEF72,\n\t39815 - 11904: 0xEC75,\n\t39816 - 11904: 0xECA2,\n\t39819 - 11904: 0x9EE9,\n\t39821 - 11904: 0x8BBA,\n\t39822 - 11904: 0x916D,\n\t39823 - 11904: 0xA060,\n\t39824 - 11904: 0xEC7C,\n\t39825 - 11904: 0xC06A,\n\t39826 - 11904: 0xEC7B,\n\t39827 - 11904: 0xEC7A,\n\t39829 - 11904: 0xEC7E,\n\t39831 - 11904: 0x9FDE,\n\t39834 - 11904: 0xEF6A,\n\t39835 - 11904: 0xEF6D,\n\t39837 - 11904: 0x9FC3,\n\t39838 - 11904: 0xEF6C,\n\t39839 - 11904: 0x96B5,\n\t39840 - 11904: 0xEF74,\n\t39841 - 11904: 0xEF6F,\n\t39842 - 11904: 0xEF73,\n\t39844 - 11904: 0xEF71,\n\t39845 - 11904: 0xEF70,\n\t39846 - 11904: 0xEF6E,\n\t39848 - 11904: 0xEF6B,\n\t39850 - 11904: 0xC243,\n\t39851 - 11904: 0xC242,\n\t39853 - 11904: 0xC244,\n\t39854 - 11904: 0xC241,\n\t39855 - 11904: 0xEF75,\n\t39856 - 11904: 0xA067,\n\t39861 - 11904: 0xF1C8,\n\t39862 - 11904: 0xF1CB,\n\t39864 - 11904: 0xF1C9,\n\t39865 - 11904: 0xF1CD,\n\t39869 - 11904: 0xF1CE,\n\t39871 - 11904: 0xF1C6,\n\t39872 - 11904: 0xC358,\n\t39873 - 11904: 0xF1C7,\n\t39875 - 11904: 0xF1C5,\n\t39876 - 11904: 0xF1CC,\n\t39878 - 11904: 0xF1C4,\n\t39879 - 11904: 0xF1C3,\n\t39880 - 11904: 0xC357,\n\t39881 - 11904: 0xC355,\n\t39882 - 11904: 0xC354,\n\t39887 - 11904: 0x96B3,\n\t39891 - 11904: 0xF1CA,\n\t39892 - 11904: 0xF3CF,\n\t39893 - 11904: 0xF3D5,\n\t39894 - 11904: 0xC44A,\n\t39895 - 11904: 0xF3D0,\n\t39897 - 11904: 0xF3D3,\n\t39898 - 11904: 0xF3D7,\n\t39899 - 11904: 0xC44B,\n\t39900 - 11904: 0xF3D2,\n\t39901 - 11904: 0x9A76,\n\t39902 - 11904: 0xF3CA,\n\t39904 - 11904: 0xF3C9,\n\t39905 - 11904: 0xF3D6,\n\t39906 - 11904: 0xF3CD,\n\t39908 - 11904: 0xF3CB,\n\t39909 - 11904: 0xF3D4,\n\t39910 - 11904: 0xF3CC,\n\t39911 - 11904: 0xC449,\n\t39912 - 11904: 0xC448,\n\t39913 - 11904: 0x95D5,\n\t39914 - 11904: 0xF3C7,\n\t39915 - 11904: 0xF3C8,\n\t39916 - 11904: 0xF3D1,\n\t39917 - 11904: 0x9ECA,\n\t39920 - 11904: 0xF3CE,\n\t39921 - 11904: 0x9A77,\n\t39924 - 11904: 0x9A78,\n\t39927 - 11904: 0xF56C,\n\t39928 - 11904: 0xF56F,\n\t39933 - 11904: 0xC356,\n\t39935 - 11904: 0x9170,\n\t39938 - 11904: 0x916F,\n\t39941 - 11904: 0xF56D,\n\t39942 - 11904: 0xF573,\n\t39943 - 11904: 0xF571,\n\t39944 - 11904: 0xF56B,\n\t39945 - 11904: 0xF576,\n\t39946 - 11904: 0x9FA3,\n\t39947 - 11904: 0xF56A,\n\t39948 - 11904: 0x9171,\n\t39949 - 11904: 0xC4CF,\n\t39950 - 11904: 0xF572,\n\t39952 - 11904: 0x96B1,\n\t39954 - 11904: 0xF56E,\n\t39955 - 11904: 0xC4CE,\n\t39956 - 11904: 0xF575,\n\t39957 - 11904: 0x9F63,\n\t39959 - 11904: 0xF574,\n\t39963 - 11904: 0x9F67,\n\t39964 - 11904: 0xF6AB,\n\t39965 - 11904: 0xF6AA,\n\t39967 - 11904: 0x8BB9,\n\t39968 - 11904: 0x9A7A,\n\t39969 - 11904: 0xF6B1,\n\t39971 - 11904: 0xF6AD,\n\t39972 - 11904: 0xF6B0,\n\t39973 - 11904: 0xC560,\n\t39974 - 11904: 0x8B56,\n\t39976 - 11904: 0xF6AE,\n\t39977 - 11904: 0xF6AF,\n\t39979 - 11904: 0xF6A9,\n\t39980 - 11904: 0xF6AC,\n\t39981 - 11904: 0xC55F,\n\t39983 - 11904: 0x9ADA,\n\t39985 - 11904: 0xC5BF,\n\t39986 - 11904: 0xF7B4,\n\t39987 - 11904: 0xF7AF,\n\t39988 - 11904: 0xF7B3,\n\t39989 - 11904: 0x96B0,\n\t39990 - 11904: 0xF7B6,\n\t39991 - 11904: 0xF7B2,\n\t39993 - 11904: 0xF7AE,\n\t39994 - 11904: 0x9A7E,\n\t39995 - 11904: 0xC5C1,\n\t39996 - 11904: 0xF7B1,\n\t39997 - 11904: 0xF7B5,\n\t39998 - 11904: 0xC5C0,\n\t39999 - 11904: 0xF7AC,\n\t40000 - 11904: 0xF570,\n\t40001 - 11904: 0xF7B0,\n\t40004 - 11904: 0xF7AD,\n\t40005 - 11904: 0x9DDE,\n\t40006 - 11904: 0xF7AA,\n\t40008 - 11904: 0xF7AB,\n\t40009 - 11904: 0xC5BE,\n\t40010 - 11904: 0xF85A,\n\t40011 - 11904: 0xF85C,\n\t40012 - 11904: 0xF85F,\n\t40013 - 11904: 0xF85B,\n\t40014 - 11904: 0xF860,\n\t40015 - 11904: 0x96AD,\n\t40016 - 11904: 0xF859,\n\t40018 - 11904: 0xF857,\n\t40019 - 11904: 0x96AE,\n\t40020 - 11904: 0xC5EB,\n\t40021 - 11904: 0xF85D,\n\t40022 - 11904: 0xC5ED,\n\t40023 - 11904: 0xC5EC,\n\t40024 - 11904: 0xF858,\n\t40025 - 11904: 0xF85E,\n\t40029 - 11904: 0x9EA1,\n\t40030 - 11904: 0xF8DA,\n\t40031 - 11904: 0xC64D,\n\t40032 - 11904: 0xF8DB,\n\t40034 - 11904: 0xF8D9,\n\t40035 - 11904: 0xF8D6,\n\t40038 - 11904: 0xF8D8,\n\t40039 - 11904: 0xF8D7,\n\t40040 - 11904: 0xF95A,\n\t40045 - 11904: 0xF95C,\n\t40046 - 11904: 0xF95B,\n\t40049 - 11904: 0xF979,\n\t40050 - 11904: 0x9E50,\n\t40051 - 11904: 0xF978,\n\t40052 - 11904: 0xF977,\n\t40053 - 11904: 0xF97A,\n\t40055 - 11904: 0xC673,\n\t40056 - 11904: 0xC674,\n\t40057 - 11904: 0xF9CA,\n\t40058 - 11904: 0xF9CE,\n\t40059 - 11904: 0x96AF,\n\t40060 - 11904: 0x8BF4,\n\t40165 - 11904: 0xB3BE,\n\t40166 - 11904: 0xDCAF,\n\t40167 - 11904: 0xE0ED,\n\t40169 - 11904: 0xB9A7,\n\t40170 - 11904: 0xE0EB,\n\t40173 - 11904: 0xE0EC,\n\t40177 - 11904: 0xE4E2,\n\t40178 - 11904: 0xE4E3,\n\t40179 - 11904: 0xBBF1,\n\t40180 - 11904: 0xBBEF,\n\t40181 - 11904: 0xE4E4,\n\t40182 - 11904: 0xBBF0,\n\t40183 - 11904: 0xE8E8,\n\t40185 - 11904: 0xE8EB,\n\t40186 - 11904: 0xE8E5,\n\t40187 - 11904: 0xE8EC,\n\t40188 - 11904: 0xE8E4,\n\t40189 - 11904: 0xE8E6,\n\t40191 - 11904: 0xE8E7,\n\t40192 - 11904: 0xE8EA,\n\t40194 - 11904: 0x9FA4,\n\t40195 - 11904: 0xBEA1,\n\t40196 - 11904: 0xE8EF,\n\t40197 - 11904: 0xE8EE,\n\t40198 - 11904: 0xBE7D,\n\t40199 - 11904: 0xE8E9,\n\t40200 - 11904: 0xE8ED,\n\t40201 - 11904: 0xBE7E,\n\t40204 - 11904: 0x96BD,\n\t40208 - 11904: 0xECAC,\n\t40210 - 11904: 0xC06F,\n\t40212 - 11904: 0xECA7,\n\t40213 - 11904: 0xC06B,\n\t40214 - 11904: 0x96F4,\n\t40215 - 11904: 0xECA4,\n\t40216 - 11904: 0xECAA,\n\t40217 - 11904: 0xECAD,\n\t40219 - 11904: 0xC070,\n\t40221 - 11904: 0xECA9,\n\t40222 - 11904: 0xECA6,\n\t40223 - 11904: 0xECAE,\n\t40224 - 11904: 0xECA5,\n\t40225 - 11904: 0x96B8,\n\t40226 - 11904: 0xECAB,\n\t40227 - 11904: 0xC06C,\n\t40229 - 11904: 0xECA3,\n\t40230 - 11904: 0xC06D,\n\t40232 - 11904: 0xC06E,\n\t40233 - 11904: 0xECA8,\n\t40237 - 11904: 0xEFA9,\n\t40238 - 11904: 0xEF7A,\n\t40239 - 11904: 0xEF7B,\n\t40240 - 11904: 0xEF7E,\n\t40241 - 11904: 0xEF7C,\n\t40243 - 11904: 0xEF76,\n\t40244 - 11904: 0xFAA1,\n\t40246 - 11904: 0xEF79,\n\t40247 - 11904: 0xEFA5,\n\t40248 - 11904: 0xEF7D,\n\t40249 - 11904: 0x91A7,\n\t40251 - 11904: 0xC245,\n\t40253 - 11904: 0xEFA7,\n\t40254 - 11904: 0xEFA4,\n\t40255 - 11904: 0xC246,\n\t40256 - 11904: 0xEFA6,\n\t40257 - 11904: 0xEF77,\n\t40258 - 11904: 0xEFA2,\n\t40259 - 11904: 0xEFA3,\n\t40260 - 11904: 0xA05E,\n\t40261 - 11904: 0xEFA1,\n\t40265 - 11904: 0x9A7D,\n\t40266 - 11904: 0xF1D2,\n\t40267 - 11904: 0xF1D4,\n\t40268 - 11904: 0xF1D7,\n\t40270 - 11904: 0x8948,\n\t40271 - 11904: 0xF1D1,\n\t40272 - 11904: 0x9EB1,\n\t40273 - 11904: 0xC359,\n\t40274 - 11904: 0xF1D9,\n\t40275 - 11904: 0xF1D0,\n\t40276 - 11904: 0xF1DA,\n\t40278 - 11904: 0xF1D6,\n\t40279 - 11904: 0xF1D8,\n\t40280 - 11904: 0xF1DC,\n\t40281 - 11904: 0xF1D5,\n\t40282 - 11904: 0xF1DD,\n\t40283 - 11904: 0xF1D3,\n\t40284 - 11904: 0xF1CF,\n\t40285 - 11904: 0xC35A,\n\t40286 - 11904: 0x9DDB,\n\t40287 - 11904: 0xF1DB,\n\t40288 - 11904: 0xC35B,\n\t40289 - 11904: 0xC44D,\n\t40295 - 11904: 0xEF78,\n\t40296 - 11904: 0xF3F1,\n\t40297 - 11904: 0xF3E8,\n\t40298 - 11904: 0xC44F,\n\t40299 - 11904: 0xF3E4,\n\t40300 - 11904: 0xC450,\n\t40301 - 11904: 0x95BF,\n\t40302 - 11904: 0x8A73,\n\t40303 - 11904: 0xF3ED,\n\t40304 - 11904: 0xF3E7,\n\t40305 - 11904: 0xF3DD,\n\t40306 - 11904: 0xC44E,\n\t40307 - 11904: 0xF3EA,\n\t40308 - 11904: 0xF3E5,\n\t40309 - 11904: 0xF3E6,\n\t40311 - 11904: 0xF3D8,\n\t40312 - 11904: 0xF3DF,\n\t40313 - 11904: 0xF3EE,\n\t40315 - 11904: 0xF3EB,\n\t40316 - 11904: 0x9EFE,\n\t40317 - 11904: 0xF3E3,\n\t40318 - 11904: 0x917A,\n\t40319 - 11904: 0xF3EF,\n\t40320 - 11904: 0xF3DE,\n\t40321 - 11904: 0xF3D9,\n\t40322 - 11904: 0xF3EC,\n\t40323 - 11904: 0x917B,\n\t40324 - 11904: 0xF3DB,\n\t40325 - 11904: 0xF3E9,\n\t40326 - 11904: 0xF3E0,\n\t40327 - 11904: 0xF3F0,\n\t40328 - 11904: 0xF3DC,\n\t40329 - 11904: 0xC44C,\n\t40330 - 11904: 0xF3DA,\n\t40331 - 11904: 0xF3E1,\n\t40332 - 11904: 0xF3E2,\n\t40336 - 11904: 0xF57D,\n\t40338 - 11904: 0xF57B,\n\t40339 - 11904: 0x9AA3,\n\t40340 - 11904: 0xF5A2,\n\t40342 - 11904: 0xF5AE,\n\t40343 - 11904: 0xF5A5,\n\t40344 - 11904: 0xF57C,\n\t40345 - 11904: 0xF578,\n\t40346 - 11904: 0xF5A7,\n\t40347 - 11904: 0xF57E,\n\t40348 - 11904: 0xF5A3,\n\t40349 - 11904: 0xF57A,\n\t40350 - 11904: 0xF5AA,\n\t40351 - 11904: 0xF577,\n\t40352 - 11904: 0xF5A1,\n\t40353 - 11904: 0xF5A6,\n\t40354 - 11904: 0xF5A8,\n\t40355 - 11904: 0xF5AB,\n\t40356 - 11904: 0xF579,\n\t40357 - 11904: 0x96C2,\n\t40358 - 11904: 0xF5AF,\n\t40359 - 11904: 0xF5B0,\n\t40360 - 11904: 0xF5A9,\n\t40361 - 11904: 0xF5AD,\n\t40362 - 11904: 0xF5A4,\n\t40363 - 11904: 0x9F77,\n\t40364 - 11904: 0xF6C1,\n\t40365 - 11904: 0xF6C4,\n\t40367 - 11904: 0xC561,\n\t40369 - 11904: 0xF6C3,\n\t40370 - 11904: 0xF6C8,\n\t40371 - 11904: 0xF6C6,\n\t40372 - 11904: 0xC562,\n\t40373 - 11904: 0xF6BD,\n\t40374 - 11904: 0xF6B3,\n\t40375 - 11904: 0xF6B2,\n\t40376 - 11904: 0xC564,\n\t40377 - 11904: 0xF6BF,\n\t40378 - 11904: 0xF6C0,\n\t40379 - 11904: 0xF6BC,\n\t40380 - 11904: 0xF6B4,\n\t40381 - 11904: 0x9AA4,\n\t40382 - 11904: 0xF6B9,\n\t40383 - 11904: 0xF5AC,\n\t40384 - 11904: 0x9AA5,\n\t40385 - 11904: 0xF6B5,\n\t40386 - 11904: 0xC563,\n\t40387 - 11904: 0xF6BB,\n\t40388 - 11904: 0x91A1,\n\t40389 - 11904: 0xF6BA,\n\t40391 - 11904: 0xF6B6,\n\t40392 - 11904: 0xF6C2,\n\t40393 - 11904: 0x89B8,\n\t40394 - 11904: 0xF6B7,\n\t40395 - 11904: 0xF7BB,\n\t40396 - 11904: 0xF6C5,\n\t40397 - 11904: 0xF6C7,\n\t40398 - 11904: 0xF6BE,\n\t40399 - 11904: 0xF6B8,\n\t40400 - 11904: 0xF7BC,\n\t40401 - 11904: 0xF7BE,\n\t40402 - 11904: 0xF7B8,\n\t40403 - 11904: 0xC5C2,\n\t40404 - 11904: 0x9173,\n\t40405 - 11904: 0xF7C5,\n\t40406 - 11904: 0xF7C3,\n\t40407 - 11904: 0xC5C3,\n\t40408 - 11904: 0xF7C2,\n\t40409 - 11904: 0xF7C1,\n\t40410 - 11904: 0xF7BA,\n\t40411 - 11904: 0xF7B7,\n\t40412 - 11904: 0xF7BD,\n\t40413 - 11904: 0xF7C6,\n\t40414 - 11904: 0xF7B9,\n\t40415 - 11904: 0xF7BF,\n\t40417 - 11904: 0xF869,\n\t40418 - 11904: 0xF86E,\n\t40419 - 11904: 0xF864,\n\t40420 - 11904: 0xF867,\n\t40421 - 11904: 0xC5EE,\n\t40422 - 11904: 0xF86B,\n\t40424 - 11904: 0xF872,\n\t40425 - 11904: 0xF7C0,\n\t40427 - 11904: 0xF865,\n\t40428 - 11904: 0xF86F,\n\t40429 - 11904: 0xF873,\n\t40430 - 11904: 0xF86A,\n\t40431 - 11904: 0xF863,\n\t40432 - 11904: 0xF86D,\n\t40434 - 11904: 0xF86C,\n\t40435 - 11904: 0xF871,\n\t40436 - 11904: 0xF870,\n\t40437 - 11904: 0xF7C4,\n\t40438 - 11904: 0xF868,\n\t40439 - 11904: 0xF862,\n\t40440 - 11904: 0xF866,\n\t40441 - 11904: 0xC64E,\n\t40442 - 11904: 0xC64F,\n\t40443 - 11904: 0xF861,\n\t40444 - 11904: 0x9AA6,\n\t40445 - 11904: 0xF8E6,\n\t40446 - 11904: 0xF8DD,\n\t40447 - 11904: 0xF8E5,\n\t40448 - 11904: 0xF8E2,\n\t40449 - 11904: 0xF8E3,\n\t40450 - 11904: 0xF8DC,\n\t40451 - 11904: 0xF8DF,\n\t40452 - 11904: 0xF8E7,\n\t40453 - 11904: 0xF8E1,\n\t40454 - 11904: 0xF8E0,\n\t40455 - 11904: 0xF8DE,\n\t40457 - 11904: 0xF8E4,\n\t40458 - 11904: 0x89BD,\n\t40459 - 11904: 0xF95D,\n\t40460 - 11904: 0x89B9,\n\t40461 - 11904: 0xF95E,\n\t40462 - 11904: 0x917D,\n\t40463 - 11904: 0xF960,\n\t40464 - 11904: 0xF95F,\n\t40465 - 11904: 0xF962,\n\t40466 - 11904: 0xF961,\n\t40467 - 11904: 0xF97C,\n\t40468 - 11904: 0xF97B,\n\t40469 - 11904: 0xF9B7,\n\t40471 - 11904: 0xF9B8,\n\t40472 - 11904: 0x96BB,\n\t40473 - 11904: 0xF9C5,\n\t40474 - 11904: 0xC678,\n\t40475 - 11904: 0xC67C,\n\t40476 - 11904: 0x9FF2,\n\t40477 - 11904: 0xF9CF,\n\t40478 - 11904: 0xC67D,\n\t40479 - 11904: 0x8BF5,\n\t40565 - 11904: 0xB3BF,\n\t40569 - 11904: 0xC4D0,\n\t40570 - 11904: 0xF6C9,\n\t40571 - 11904: 0x9AA9,\n\t40572 - 11904: 0xC650,\n\t40573 - 11904: 0xC651,\n\t40575 - 11904: 0xB3C0,\n\t40576 - 11904: 0xE0EE,\n\t40577 - 11904: 0x9F54,\n\t40578 - 11904: 0xB9A8,\n\t40579 - 11904: 0xE8F0,\n\t40580 - 11904: 0x9FE3,\n\t40581 - 11904: 0x9EED,\n\t40582 - 11904: 0xECB0,\n\t40583 - 11904: 0xECB1,\n\t40584 - 11904: 0xECAF,\n\t40585 - 11904: 0xEFAB,\n\t40586 - 11904: 0xEFAA,\n\t40587 - 11904: 0xC247,\n\t40588 - 11904: 0xF1DF,\n\t40589 - 11904: 0xEFAC,\n\t40590 - 11904: 0xF1DE,\n\t40592 - 11904: 0x91AA,\n\t40593 - 11904: 0xF3F3,\n\t40594 - 11904: 0xC451,\n\t40595 - 11904: 0xC453,\n\t40596 - 11904: 0xF3F2,\n\t40597 - 11904: 0x91AB,\n\t40598 - 11904: 0xA070,\n\t40599 - 11904: 0xC452,\n\t40600 - 11904: 0x9F6D,\n\t40601 - 11904: 0xF5B1,\n\t40602 - 11904: 0xF5B3,\n\t40603 - 11904: 0xF5B2,\n\t40604 - 11904: 0xF6CA,\n\t40605 - 11904: 0xC565,\n\t40606 - 11904: 0x91AC,\n\t40607 - 11904: 0xC5EF,\n\t40608 - 11904: 0xF8E8,\n\t40609 - 11904: 0xF963,\n\t40610 - 11904: 0x91AD,\n\t40612 - 11904: 0xF9D2,\n\t40613 - 11904: 0xB3C1,\n\t40614 - 11904: 0xA0FD,\n\t40615 - 11904: 0xE4E5,\n\t40616 - 11904: 0x9FE2,\n\t40617 - 11904: 0xBEA2,\n\t40618 - 11904: 0x91AF,\n\t40619 - 11904: 0x9E41,\n\t40620 - 11904: 0x9AAA,\n\t40621 - 11904: 0xECB3,\n\t40622 - 11904: 0xECB2,\n\t40623 - 11904: 0x91B0,\n\t40624 - 11904: 0xEFAD,\n\t40625 - 11904: 0x9AAB,\n\t40628 - 11904: 0xC454,\n\t40629 - 11904: 0xC4D1,\n\t40630 - 11904: 0xF7C7,\n\t40631 - 11904: 0xF9CB,\n\t40635 - 11904: 0xB3C2,\n\t40636 - 11904: 0xBBF2,\n\t40637 - 11904: 0x9AAC,\n\t40638 - 11904: 0xBEA3,\n\t40639 - 11904: 0x9A4A,\n\t40640 - 11904: 0xF3F4,\n\t40641 - 11904: 0x91B2,\n\t40642 - 11904: 0xF874,\n\t40643 - 11904: 0xB6C0,\n\t40644 - 11904: 0x8BF6,\n\t40646 - 11904: 0x9AAD,\n\t40647 - 11904: 0x89B6,\n\t40648 - 11904: 0xEFAE,\n\t40652 - 11904: 0xC664,\n\t40653 - 11904: 0xB6C1,\n\t40654 - 11904: 0xBEA4,\n\t40655 - 11904: 0xC248,\n\t40656 - 11904: 0xF875,\n\t40657 - 11904: 0xB6C2,\n\t40659 - 11904: 0xE8F1,\n\t40660 - 11904: 0xC072,\n\t40661 - 11904: 0xECB4,\n\t40662 - 11904: 0xECB5,\n\t40664 - 11904: 0xC071,\n\t40666 - 11904: 0xEFAF,\n\t40667 - 11904: 0xC24C,\n\t40668 - 11904: 0xC24A,\n\t40669 - 11904: 0xC24B,\n\t40670 - 11904: 0xC249,\n\t40671 - 11904: 0xF1E0,\n\t40672 - 11904: 0xC35C,\n\t40674 - 11904: 0x9AAF,\n\t40676 - 11904: 0xF5B5,\n\t40677 - 11904: 0xF5B4,\n\t40678 - 11904: 0xF5B7,\n\t40679 - 11904: 0xF5B6,\n\t40680 - 11904: 0xC4D2,\n\t40683 - 11904: 0xF6CB,\n\t40685 - 11904: 0xF6CD,\n\t40686 - 11904: 0xF6CC,\n\t40687 - 11904: 0xC566,\n\t40688 - 11904: 0xF7C8,\n\t40689 - 11904: 0x9AB0,\n\t40690 - 11904: 0xF876,\n\t40691 - 11904: 0xF877,\n\t40692 - 11904: 0xC5F0,\n\t40693 - 11904: 0xF964,\n\t40694 - 11904: 0xF97D,\n\t40695 - 11904: 0xC675,\n\t40696 - 11904: 0x9AB1,\n\t40697 - 11904: 0xDCB0,\n\t40698 - 11904: 0xECB6,\n\t40699 - 11904: 0xEFB0,\n\t40700 - 11904: 0xF3F5,\n\t40701 - 11904: 0xE0EF,\n\t40702 - 11904: 0x9AA1,\n\t40703 - 11904: 0xEFB1,\n\t40704 - 11904: 0xF1E2,\n\t40705 - 11904: 0xF1E1,\n\t40706 - 11904: 0x91B9,\n\t40710 - 11904: 0xF878,\n\t40711 - 11904: 0xC652,\n\t40712 - 11904: 0x91BA,\n\t40713 - 11904: 0xF965,\n\t40714 - 11904: 0xF97E,\n\t40718 - 11904: 0xB9A9,\n\t40719 - 11904: 0xE8F2,\n\t40720 - 11904: 0xE8F3,\n\t40722 - 11904: 0xECB7,\n\t40723 - 11904: 0xB9AA,\n\t40725 - 11904: 0xC35D,\n\t40726 - 11904: 0xF1E3,\n\t40727 - 11904: 0x9F66,\n\t40728 - 11904: 0xF6CF,\n\t40729 - 11904: 0xC567,\n\t40730 - 11904: 0xF6D0,\n\t40731 - 11904: 0xF6CE,\n\t40732 - 11904: 0xF879,\n\t40734 - 11904: 0xF8E9,\n\t40736 - 11904: 0xB9AB,\n\t40738 - 11904: 0xEFB4,\n\t40739 - 11904: 0xEFB3,\n\t40740 - 11904: 0xEFB2,\n\t40741 - 11904: 0xF1E4,\n\t40742 - 11904: 0xA041,\n\t40743 - 11904: 0x8BB7,\n\t40744 - 11904: 0xF1E8,\n\t40745 - 11904: 0xF1E7,\n\t40746 - 11904: 0xF1E6,\n\t40747 - 11904: 0xF1E5,\n\t40748 - 11904: 0xC35E,\n\t40749 - 11904: 0xF3F6,\n\t40750 - 11904: 0xF5B9,\n\t40751 - 11904: 0xC4D3,\n\t40752 - 11904: 0xF5B8,\n\t40753 - 11904: 0xF6D1,\n\t40754 - 11904: 0xF7CB,\n\t40755 - 11904: 0xF7CA,\n\t40756 - 11904: 0xC5C4,\n\t40757 - 11904: 0xF7C9,\n\t40758 - 11904: 0xF87C,\n\t40759 - 11904: 0xF87B,\n\t40760 - 11904: 0xF87A,\n\t40761 - 11904: 0x91C0,\n\t40763 - 11904: 0xBBF3,\n\t40765 - 11904: 0xECB8,\n\t40766 - 11904: 0xC24D,\n\t40768 - 11904: 0xF3F7,\n\t40769 - 11904: 0xF3F8,\n\t40770 - 11904: 0xF7CC,\n\t40771 - 11904: 0xF87D,\n\t40772 - 11904: 0x9AB3,\n\t40773 - 11904: 0x91C3,\n\t40774 - 11904: 0xF8EA,\n\t40775 - 11904: 0xF966,\n\t40776 - 11904: 0xF9B9,\n\t40777 - 11904: 0xF9D4,\n\t40778 - 11904: 0xBBF4,\n\t40779 - 11904: 0xC24E,\n\t40780 - 11904: 0xF1E9,\n\t40781 - 11904: 0xF3F9,\n\t40782 - 11904: 0xF6D2,\n\t40783 - 11904: 0xF87E,\n\t40784 - 11904: 0xA0FC,\n\t40786 - 11904: 0xBEA6,\n\t40787 - 11904: 0x9FEE,\n\t40788 - 11904: 0xEFB5,\n\t40789 - 11904: 0xF1EA,\n\t40790 - 11904: 0xF3FA,\n\t40791 - 11904: 0xF3FB,\n\t40792 - 11904: 0xF3FC,\n\t40793 - 11904: 0xF5BE,\n\t40794 - 11904: 0x9F69,\n\t40795 - 11904: 0xF5BA,\n\t40796 - 11904: 0xC568,\n\t40797 - 11904: 0xF5BD,\n\t40798 - 11904: 0xF5BC,\n\t40799 - 11904: 0xC4D4,\n\t40800 - 11904: 0xF5BB,\n\t40801 - 11904: 0xC4D6,\n\t40802 - 11904: 0x91C8,\n\t40803 - 11904: 0xC4D5,\n\t40804 - 11904: 0xF6D4,\n\t40805 - 11904: 0xF6D3,\n\t40806 - 11904: 0xC569,\n\t40807 - 11904: 0xC56A,\n\t40809 - 11904: 0x91C9,\n\t40810 - 11904: 0xC5C6,\n\t40811 - 11904: 0xF7CD,\n\t40812 - 11904: 0xC5C5,\n\t40814 - 11904: 0xF8A3,\n\t40815 - 11904: 0xF8A4,\n\t40816 - 11904: 0xF8A2,\n\t40817 - 11904: 0xF8A1,\n\t40818 - 11904: 0xC654,\n\t40820 - 11904: 0xF8EB,\n\t40821 - 11904: 0xF8EC,\n\t40822 - 11904: 0xF8ED,\n\t40823 - 11904: 0xC653,\n\t40824 - 11904: 0xF967,\n\t40825 - 11904: 0xF96A,\n\t40826 - 11904: 0xF969,\n\t40827 - 11904: 0xF968,\n\t40830 - 11904: 0xF9D3,\n\t40831 - 11904: 0x8DE6,\n\t40845 - 11904: 0xC073,\n\t40846 - 11904: 0x91CB,\n\t40848 - 11904: 0xC365,\n\t40849 - 11904: 0xF5BF,\n\t40850 - 11904: 0xF6D5,\n\t40852 - 11904: 0xC5C7,\n\t40853 - 11904: 0xF7CE,\n\t40854 - 11904: 0x87AC,\n\t40855 - 11904: 0x87A4,\n\t40856 - 11904: 0xF9D5,\n\t40857 - 11904: 0x89C8,\n\t40860 - 11904: 0xC074,\n\t40863 - 11904: 0x8DAA,\n\t40864 - 11904: 0xEFB6,\n\t40866 - 11904: 0xF7CF,\n\t40868 - 11904: 0xF9A1,\n\t40869 - 11904: 0x9FDD,\n\t40870 - 11904: 0x8C43,\n\t40871 - 11904: 0x8C6D,\n\t40872 - 11904: 0x8C74,\n\t40873 - 11904: 0x8CB7,\n\t40874 - 11904: 0x8CB9,\n\t40875 - 11904: 0x8CBB,\n\t40876 - 11904: 0x8CC0,\n\t40877 - 11904: 0x8CD7,\n\t40878 - 11904: 0x8CD8,\n\t40879 - 11904: 0x8CDA,\n\t40880 - 11904: 0xC8A1,\n\t40881 - 11904: 0xC8A3,\n\t40882 - 11904: 0x8CED,\n\t40883 - 11904: 0x8D48,\n\t40903 - 11904: 0x87C2,\n\t40904 - 11904: 0x87D2,\n\t40905 - 11904: 0x87D6,\n\t40906 - 11904: 0x87DA,\n\t40907 - 11904: 0x87DF,\n}\n\nconst encode2Low, encode2High = 7870, 10046\n\nvar encode2 = [...]uint16{\n\t7870 - 7870:  0x8863,\n\t7871 - 7870:  0x88A4,\n\t7872 - 7870:  0x8865,\n\t7873 - 7870:  0x88A6,\n\t8211 - 7870:  0xA156,\n\t8212 - 7870:  0xA158,\n\t8216 - 7870:  0xA1A5,\n\t8217 - 7870:  0xA1A6,\n\t8220 - 7870:  0xA1A7,\n\t8221 - 7870:  0xA1A8,\n\t8229 - 7870:  0xA14C,\n\t8230 - 7870:  0xA14B,\n\t8231 - 7870:  0xA145,\n\t8242 - 7870:  0xA1AC,\n\t8245 - 7870:  0xA1AB,\n\t8251 - 7870:  0xA1B0,\n\t8364 - 7870:  0xA3E1,\n\t8451 - 7870:  0xA24A,\n\t8453 - 7870:  0xA1C1,\n\t8457 - 7870:  0xA24B,\n\t8470 - 7870:  0xC8D2,\n\t8481 - 7870:  0xC8D3,\n\t8544 - 7870:  0xA2B9,\n\t8545 - 7870:  0xA2BA,\n\t8546 - 7870:  0xA2BB,\n\t8547 - 7870:  0xA2BC,\n\t8548 - 7870:  0xA2BD,\n\t8549 - 7870:  0xA2BE,\n\t8550 - 7870:  0xA2BF,\n\t8551 - 7870:  0xA2C0,\n\t8552 - 7870:  0xA2C1,\n\t8553 - 7870:  0xA2C2,\n\t8560 - 7870:  0xC6B5,\n\t8561 - 7870:  0xC6B6,\n\t8562 - 7870:  0xC6B7,\n\t8563 - 7870:  0xC6B8,\n\t8564 - 7870:  0xC6B9,\n\t8565 - 7870:  0xC6BA,\n\t8566 - 7870:  0xC6BB,\n\t8567 - 7870:  0xC6BC,\n\t8568 - 7870:  0xC6BD,\n\t8569 - 7870:  0xC6BE,\n\t8592 - 7870:  0xA1F6,\n\t8593 - 7870:  0xA1F4,\n\t8594 - 7870:  0xA1F7,\n\t8595 - 7870:  0xA1F5,\n\t8598 - 7870:  0xA1F8,\n\t8599 - 7870:  0xA1F9,\n\t8600 - 7870:  0xA1FB,\n\t8601 - 7870:  0xA1FA,\n\t8632 - 7870:  0xC877,\n\t8633 - 7870:  0xC878,\n\t8679 - 7870:  0xC876,\n\t8725 - 7870:  0xA241,\n\t8730 - 7870:  0xA1D4,\n\t8734 - 7870:  0xA1DB,\n\t8735 - 7870:  0xA1E8,\n\t8736 - 7870:  0xA1E7,\n\t8739 - 7870:  0xA1FD,\n\t8741 - 7870:  0xA1FC,\n\t8745 - 7870:  0xA1E4,\n\t8746 - 7870:  0xA1E5,\n\t8747 - 7870:  0xA1EC,\n\t8750 - 7870:  0xA1ED,\n\t8756 - 7870:  0xA1EF,\n\t8757 - 7870:  0xA1EE,\n\t8786 - 7870:  0xA1DC,\n\t8800 - 7870:  0xA1DA,\n\t8801 - 7870:  0xA1DD,\n\t8806 - 7870:  0xA1D8,\n\t8807 - 7870:  0xA1D9,\n\t8853 - 7870:  0xA1F2,\n\t8857 - 7870:  0xA1F3,\n\t8869 - 7870:  0xA1E6,\n\t8895 - 7870:  0xA1E9,\n\t9178 - 7870:  0x88A9,\n\t9179 - 7870:  0x88AA,\n\t9216 - 7870:  0xA3C0,\n\t9217 - 7870:  0xA3C1,\n\t9218 - 7870:  0xA3C2,\n\t9219 - 7870:  0xA3C3,\n\t9220 - 7870:  0xA3C4,\n\t9221 - 7870:  0xA3C5,\n\t9222 - 7870:  0xA3C6,\n\t9223 - 7870:  0xA3C7,\n\t9224 - 7870:  0xA3C8,\n\t9225 - 7870:  0xA3C9,\n\t9226 - 7870:  0xA3CA,\n\t9227 - 7870:  0xA3CB,\n\t9228 - 7870:  0xA3CC,\n\t9229 - 7870:  0xA3CD,\n\t9230 - 7870:  0xA3CE,\n\t9231 - 7870:  0xA3CF,\n\t9232 - 7870:  0xA3D0,\n\t9233 - 7870:  0xA3D1,\n\t9234 - 7870:  0xA3D2,\n\t9235 - 7870:  0xA3D3,\n\t9236 - 7870:  0xA3D4,\n\t9237 - 7870:  0xA3D5,\n\t9238 - 7870:  0xA3D6,\n\t9239 - 7870:  0xA3D7,\n\t9240 - 7870:  0xA3D8,\n\t9241 - 7870:  0xA3D9,\n\t9242 - 7870:  0xA3DA,\n\t9243 - 7870:  0xA3DB,\n\t9244 - 7870:  0xA3DC,\n\t9245 - 7870:  0xA3DD,\n\t9246 - 7870:  0xA3DE,\n\t9247 - 7870:  0xA3DF,\n\t9249 - 7870:  0xA3E0,\n\t9312 - 7870:  0xC6A1,\n\t9313 - 7870:  0xC6A2,\n\t9314 - 7870:  0xC6A3,\n\t9315 - 7870:  0xC6A4,\n\t9316 - 7870:  0xC6A5,\n\t9317 - 7870:  0xC6A6,\n\t9318 - 7870:  0xC6A7,\n\t9319 - 7870:  0xC6A8,\n\t9320 - 7870:  0xC6A9,\n\t9321 - 7870:  0xC6AA,\n\t9332 - 7870:  0xC6AB,\n\t9333 - 7870:  0xC6AC,\n\t9334 - 7870:  0xC6AD,\n\t9335 - 7870:  0xC6AE,\n\t9336 - 7870:  0xC6AF,\n\t9337 - 7870:  0xC6B0,\n\t9338 - 7870:  0xC6B1,\n\t9339 - 7870:  0xC6B2,\n\t9340 - 7870:  0xC6B3,\n\t9341 - 7870:  0xC6B4,\n\t9472 - 7870:  0xA277,\n\t9474 - 7870:  0xA278,\n\t9484 - 7870:  0xA27A,\n\t9488 - 7870:  0xA27B,\n\t9492 - 7870:  0xA27C,\n\t9496 - 7870:  0xA27D,\n\t9500 - 7870:  0xA275,\n\t9508 - 7870:  0xA274,\n\t9516 - 7870:  0xA273,\n\t9524 - 7870:  0xA272,\n\t9532 - 7870:  0xA271,\n\t9552 - 7870:  0xF9F9,\n\t9553 - 7870:  0xF9F8,\n\t9554 - 7870:  0xF9E6,\n\t9555 - 7870:  0xF9EF,\n\t9556 - 7870:  0xF9DD,\n\t9557 - 7870:  0xF9E8,\n\t9558 - 7870:  0xF9F1,\n\t9559 - 7870:  0xF9DF,\n\t9560 - 7870:  0xF9EC,\n\t9561 - 7870:  0xF9F5,\n\t9562 - 7870:  0xF9E3,\n\t9563 - 7870:  0xF9EE,\n\t9564 - 7870:  0xF9F7,\n\t9565 - 7870:  0xF9E5,\n\t9566 - 7870:  0xF9E9,\n\t9567 - 7870:  0xF9F2,\n\t9568 - 7870:  0xF9E0,\n\t9569 - 7870:  0xF9EB,\n\t9570 - 7870:  0xF9F4,\n\t9571 - 7870:  0xF9E2,\n\t9572 - 7870:  0xF9E7,\n\t9573 - 7870:  0xF9F0,\n\t9574 - 7870:  0xF9DE,\n\t9575 - 7870:  0xF9ED,\n\t9576 - 7870:  0xF9F6,\n\t9577 - 7870:  0xF9E4,\n\t9578 - 7870:  0xF9EA,\n\t9579 - 7870:  0xF9F3,\n\t9580 - 7870:  0xF9E1,\n\t9581 - 7870:  0xF9FA,\n\t9582 - 7870:  0xF9FB,\n\t9583 - 7870:  0xF9FD,\n\t9584 - 7870:  0xF9FC,\n\t9585 - 7870:  0xA2AC,\n\t9586 - 7870:  0xA2AD,\n\t9587 - 7870:  0xA2AE,\n\t9588 - 7870:  0xA15A,\n\t9601 - 7870:  0xA262,\n\t9602 - 7870:  0xA263,\n\t9603 - 7870:  0xA264,\n\t9604 - 7870:  0xA265,\n\t9605 - 7870:  0xA266,\n\t9606 - 7870:  0xA267,\n\t9607 - 7870:  0xA268,\n\t9608 - 7870:  0xA269,\n\t9609 - 7870:  0xA270,\n\t9610 - 7870:  0xA26F,\n\t9611 - 7870:  0xA26E,\n\t9612 - 7870:  0xA26D,\n\t9613 - 7870:  0xA26C,\n\t9614 - 7870:  0xA26B,\n\t9615 - 7870:  0xA26A,\n\t9620 - 7870:  0xA276,\n\t9621 - 7870:  0xA279,\n\t9632 - 7870:  0xA1BD,\n\t9633 - 7870:  0xA1BC,\n\t9650 - 7870:  0xA1B6,\n\t9651 - 7870:  0xA1B5,\n\t9660 - 7870:  0xA1BF,\n\t9661 - 7870:  0xA1BE,\n\t9670 - 7870:  0xA1BB,\n\t9671 - 7870:  0xA1BA,\n\t9675 - 7870:  0xA1B3,\n\t9678 - 7870:  0xA1B7,\n\t9679 - 7870:  0xA1B4,\n\t9698 - 7870:  0xA2A8,\n\t9699 - 7870:  0xA2A9,\n\t9700 - 7870:  0xA2AB,\n\t9701 - 7870:  0xA2AA,\n\t9733 - 7870:  0xA1B9,\n\t9734 - 7870:  0xA1B8,\n\t9792 - 7870:  0xA1F0,\n\t9794 - 7870:  0xA1F1,\n\t10045 - 7870: 0xC6E6,\n}\n\nconst encode3Low, encode3High = 167, 1106\n\nvar encode3 = [...]uint16{\n\t167 - 167:  0xA1B1,\n\t168 - 167:  0xC6D8,\n\t175 - 167:  0xA1C2,\n\t176 - 167:  0xA258,\n\t177 - 167:  0xA1D3,\n\t183 - 167:  0xA150,\n\t192 - 167:  0x8859,\n\t193 - 167:  0x8857,\n\t200 - 167:  0x885D,\n\t201 - 167:  0x885B,\n\t202 - 167:  0x8866,\n\t210 - 167:  0x8861,\n\t211 - 167:  0x885F,\n\t215 - 167:  0xA1D1,\n\t224 - 167:  0x886A,\n\t225 - 167:  0x8868,\n\t232 - 167:  0x886F,\n\t233 - 167:  0x886D,\n\t234 - 167:  0x88A7,\n\t236 - 167:  0x8873,\n\t237 - 167:  0x8871,\n\t242 - 167:  0x8877,\n\t243 - 167:  0x8875,\n\t247 - 167:  0xA1D2,\n\t248 - 167:  0xC8FB,\n\t249 - 167:  0x887B,\n\t250 - 167:  0x8879,\n\t252 - 167:  0x88A2,\n\t256 - 167:  0x8856,\n\t257 - 167:  0x8867,\n\t274 - 167:  0x885A,\n\t275 - 167:  0x886C,\n\t282 - 167:  0x885C,\n\t283 - 167:  0x886E,\n\t299 - 167:  0x8870,\n\t331 - 167:  0xC8FC,\n\t332 - 167:  0x885E,\n\t333 - 167:  0x8874,\n\t339 - 167:  0xC8FA,\n\t363 - 167:  0x8878,\n\t461 - 167:  0x8858,\n\t462 - 167:  0x8869,\n\t464 - 167:  0x8872,\n\t465 - 167:  0x8860,\n\t466 - 167:  0x8876,\n\t468 - 167:  0x887A,\n\t470 - 167:  0x887C,\n\t472 - 167:  0x887D,\n\t474 - 167:  0x887E,\n\t476 - 167:  0x88A1,\n\t592 - 167:  0xC8F6,\n\t593 - 167:  0x886B,\n\t596 - 167:  0xC8F8,\n\t603 - 167:  0xC8F7,\n\t609 - 167:  0x88A8,\n\t618 - 167:  0xC8FE,\n\t629 - 167:  0xC8F9,\n\t643 - 167:  0xC8F5,\n\t650 - 167:  0xC8FD,\n\t710 - 167:  0xC6D9,\n\t711 - 167:  0xA3BE,\n\t713 - 167:  0xA3BC,\n\t714 - 167:  0xA3BD,\n\t715 - 167:  0xA3BF,\n\t717 - 167:  0xA1C5,\n\t729 - 167:  0xA3BB,\n\t913 - 167:  0xA344,\n\t914 - 167:  0xA345,\n\t915 - 167:  0xA346,\n\t916 - 167:  0xA347,\n\t917 - 167:  0xA348,\n\t918 - 167:  0xA349,\n\t919 - 167:  0xA34A,\n\t920 - 167:  0xA34B,\n\t921 - 167:  0xA34C,\n\t922 - 167:  0xA34D,\n\t923 - 167:  0xA34E,\n\t924 - 167:  0xA34F,\n\t925 - 167:  0xA350,\n\t926 - 167:  0xA351,\n\t927 - 167:  0xA352,\n\t928 - 167:  0xA353,\n\t929 - 167:  0xA354,\n\t931 - 167:  0xA355,\n\t932 - 167:  0xA356,\n\t933 - 167:  0xA357,\n\t934 - 167:  0xA358,\n\t935 - 167:  0xA359,\n\t936 - 167:  0xA35A,\n\t937 - 167:  0xA35B,\n\t945 - 167:  0xA35C,\n\t946 - 167:  0xA35D,\n\t947 - 167:  0xA35E,\n\t948 - 167:  0xA35F,\n\t949 - 167:  0xA360,\n\t950 - 167:  0xA361,\n\t951 - 167:  0xA362,\n\t952 - 167:  0xA363,\n\t953 - 167:  0xA364,\n\t954 - 167:  0xA365,\n\t955 - 167:  0xA366,\n\t956 - 167:  0xA367,\n\t957 - 167:  0xA368,\n\t958 - 167:  0xA369,\n\t959 - 167:  0xA36A,\n\t960 - 167:  0xA36B,\n\t961 - 167:  0xA36C,\n\t963 - 167:  0xA36D,\n\t964 - 167:  0xA36E,\n\t965 - 167:  0xA36F,\n\t966 - 167:  0xA370,\n\t967 - 167:  0xA371,\n\t968 - 167:  0xA372,\n\t969 - 167:  0xA373,\n\t1025 - 167: 0xC7F9,\n\t1040 - 167: 0xC7F3,\n\t1041 - 167: 0xC7F4,\n\t1042 - 167: 0xC7F5,\n\t1043 - 167: 0xC7F6,\n\t1044 - 167: 0xC7F7,\n\t1045 - 167: 0xC7F8,\n\t1046 - 167: 0xC7FA,\n\t1047 - 167: 0xC7FB,\n\t1048 - 167: 0xC7FC,\n\t1049 - 167: 0xC7FD,\n\t1050 - 167: 0xC7FE,\n\t1051 - 167: 0xC840,\n\t1052 - 167: 0xC841,\n\t1053 - 167: 0xC842,\n\t1054 - 167: 0xC843,\n\t1055 - 167: 0xC844,\n\t1056 - 167: 0xC845,\n\t1057 - 167: 0xC846,\n\t1058 - 167: 0xC847,\n\t1059 - 167: 0xC848,\n\t1060 - 167: 0xC849,\n\t1061 - 167: 0xC84A,\n\t1062 - 167: 0xC84B,\n\t1063 - 167: 0xC84C,\n\t1064 - 167: 0xC84D,\n\t1065 - 167: 0xC84E,\n\t1066 - 167: 0xC84F,\n\t1067 - 167: 0xC850,\n\t1068 - 167: 0xC851,\n\t1069 - 167: 0xC852,\n\t1070 - 167: 0xC853,\n\t1071 - 167: 0xC854,\n\t1072 - 167: 0xC855,\n\t1073 - 167: 0xC856,\n\t1074 - 167: 0xC857,\n\t1075 - 167: 0xC858,\n\t1076 - 167: 0xC859,\n\t1077 - 167: 0xC85A,\n\t1078 - 167: 0xC85C,\n\t1079 - 167: 0xC85D,\n\t1080 - 167: 0xC85E,\n\t1081 - 167: 0xC85F,\n\t1082 - 167: 0xC860,\n\t1083 - 167: 0xC861,\n\t1084 - 167: 0xC862,\n\t1085 - 167: 0xC863,\n\t1086 - 167: 0xC864,\n\t1087 - 167: 0xC865,\n\t1088 - 167: 0xC866,\n\t1089 - 167: 0xC867,\n\t1090 - 167: 0xC868,\n\t1091 - 167: 0xC869,\n\t1092 - 167: 0xC86A,\n\t1093 - 167: 0xC86B,\n\t1094 - 167: 0xC86C,\n\t1095 - 167: 0xC86D,\n\t1096 - 167: 0xC86E,\n\t1097 - 167: 0xC86F,\n\t1098 - 167: 0xC870,\n\t1099 - 167: 0xC871,\n\t1100 - 167: 0xC872,\n\t1101 - 167: 0xC873,\n\t1102 - 167: 0xC874,\n\t1103 - 167: 0xC875,\n\t1105 - 167: 0xC85B,\n}\n\nconst encode4Low, encode4High = 65072, 65518\n\nvar encode4 = [...]uint16{\n\t65072 - 65072: 0xA14A,\n\t65073 - 65072: 0xA157,\n\t65075 - 65072: 0xA159,\n\t65076 - 65072: 0xA15B,\n\t65077 - 65072: 0xA15F,\n\t65078 - 65072: 0xA160,\n\t65079 - 65072: 0xA163,\n\t65080 - 65072: 0xA164,\n\t65081 - 65072: 0xA167,\n\t65082 - 65072: 0xA168,\n\t65083 - 65072: 0xA16B,\n\t65084 - 65072: 0xA16C,\n\t65085 - 65072: 0xA16F,\n\t65086 - 65072: 0xA170,\n\t65087 - 65072: 0xA173,\n\t65088 - 65072: 0xA174,\n\t65089 - 65072: 0xA177,\n\t65090 - 65072: 0xA178,\n\t65091 - 65072: 0xA17B,\n\t65092 - 65072: 0xA17C,\n\t65097 - 65072: 0xA1C6,\n\t65098 - 65072: 0xA1C7,\n\t65099 - 65072: 0xA1CA,\n\t65100 - 65072: 0xA1CB,\n\t65101 - 65072: 0xA1C8,\n\t65102 - 65072: 0xA1C9,\n\t65103 - 65072: 0xA15C,\n\t65104 - 65072: 0xA14D,\n\t65105 - 65072: 0xA14E,\n\t65106 - 65072: 0xA14F,\n\t65108 - 65072: 0xA151,\n\t65109 - 65072: 0xA152,\n\t65110 - 65072: 0xA153,\n\t65111 - 65072: 0xA154,\n\t65113 - 65072: 0xA17D,\n\t65114 - 65072: 0xA17E,\n\t65115 - 65072: 0xA1A1,\n\t65116 - 65072: 0xA1A2,\n\t65117 - 65072: 0xA1A3,\n\t65118 - 65072: 0xA1A4,\n\t65119 - 65072: 0xA1CC,\n\t65120 - 65072: 0xA1CD,\n\t65121 - 65072: 0xA1CE,\n\t65122 - 65072: 0xA1DE,\n\t65123 - 65072: 0xA1DF,\n\t65124 - 65072: 0xA1E0,\n\t65125 - 65072: 0xA1E1,\n\t65126 - 65072: 0xA1E2,\n\t65128 - 65072: 0xA242,\n\t65129 - 65072: 0xA24C,\n\t65130 - 65072: 0xA24D,\n\t65131 - 65072: 0xA24E,\n\t65281 - 65072: 0xA149,\n\t65282 - 65072: 0xC8D0,\n\t65283 - 65072: 0xA1AD,\n\t65284 - 65072: 0xA243,\n\t65285 - 65072: 0xA248,\n\t65286 - 65072: 0xA1AE,\n\t65287 - 65072: 0xC8CF,\n\t65288 - 65072: 0xA15D,\n\t65289 - 65072: 0xA15E,\n\t65290 - 65072: 0xA1AF,\n\t65291 - 65072: 0xA1CF,\n\t65292 - 65072: 0xA141,\n\t65293 - 65072: 0xA1D0,\n\t65294 - 65072: 0xA144,\n\t65295 - 65072: 0xA1FE,\n\t65296 - 65072: 0xA2AF,\n\t65297 - 65072: 0xA2B0,\n\t65298 - 65072: 0xA2B1,\n\t65299 - 65072: 0xA2B2,\n\t65300 - 65072: 0xA2B3,\n\t65301 - 65072: 0xA2B4,\n\t65302 - 65072: 0xA2B5,\n\t65303 - 65072: 0xA2B6,\n\t65304 - 65072: 0xA2B7,\n\t65305 - 65072: 0xA2B8,\n\t65306 - 65072: 0xA147,\n\t65307 - 65072: 0xA146,\n\t65308 - 65072: 0xA1D5,\n\t65309 - 65072: 0xA1D7,\n\t65310 - 65072: 0xA1D6,\n\t65311 - 65072: 0xA148,\n\t65312 - 65072: 0xA249,\n\t65313 - 65072: 0xA2CF,\n\t65314 - 65072: 0xA2D0,\n\t65315 - 65072: 0xA2D1,\n\t65316 - 65072: 0xA2D2,\n\t65317 - 65072: 0xA2D3,\n\t65318 - 65072: 0xA2D4,\n\t65319 - 65072: 0xA2D5,\n\t65320 - 65072: 0xA2D6,\n\t65321 - 65072: 0xA2D7,\n\t65322 - 65072: 0xA2D8,\n\t65323 - 65072: 0xA2D9,\n\t65324 - 65072: 0xA2DA,\n\t65325 - 65072: 0xA2DB,\n\t65326 - 65072: 0xA2DC,\n\t65327 - 65072: 0xA2DD,\n\t65328 - 65072: 0xA2DE,\n\t65329 - 65072: 0xA2DF,\n\t65330 - 65072: 0xA2E0,\n\t65331 - 65072: 0xA2E1,\n\t65332 - 65072: 0xA2E2,\n\t65333 - 65072: 0xA2E3,\n\t65334 - 65072: 0xA2E4,\n\t65335 - 65072: 0xA2E5,\n\t65336 - 65072: 0xA2E6,\n\t65337 - 65072: 0xA2E7,\n\t65338 - 65072: 0xA2E8,\n\t65339 - 65072: 0xC6E4,\n\t65340 - 65072: 0xA240,\n\t65341 - 65072: 0xC6E5,\n\t65343 - 65072: 0xA1C4,\n\t65345 - 65072: 0xA2E9,\n\t65346 - 65072: 0xA2EA,\n\t65347 - 65072: 0xA2EB,\n\t65348 - 65072: 0xA2EC,\n\t65349 - 65072: 0xA2ED,\n\t65350 - 65072: 0xA2EE,\n\t65351 - 65072: 0xA2EF,\n\t65352 - 65072: 0xA2F0,\n\t65353 - 65072: 0xA2F1,\n\t65354 - 65072: 0xA2F2,\n\t65355 - 65072: 0xA2F3,\n\t65356 - 65072: 0xA2F4,\n\t65357 - 65072: 0xA2F5,\n\t65358 - 65072: 0xA2F6,\n\t65359 - 65072: 0xA2F7,\n\t65360 - 65072: 0xA2F8,\n\t65361 - 65072: 0xA2F9,\n\t65362 - 65072: 0xA2FA,\n\t65363 - 65072: 0xA2FB,\n\t65364 - 65072: 0xA2FC,\n\t65365 - 65072: 0xA2FD,\n\t65366 - 65072: 0xA2FE,\n\t65367 - 65072: 0xA340,\n\t65368 - 65072: 0xA341,\n\t65369 - 65072: 0xA342,\n\t65370 - 65072: 0xA343,\n\t65371 - 65072: 0xA161,\n\t65372 - 65072: 0xA155,\n\t65373 - 65072: 0xA162,\n\t65374 - 65072: 0xA1E3,\n\t65504 - 65072: 0xA246,\n\t65505 - 65072: 0xA247,\n\t65506 - 65072: 0xC8CD,\n\t65507 - 65072: 0xA1C3,\n\t65508 - 65072: 0xC8CE,\n\t65509 - 65072: 0xA244,\n\t65517 - 65072: 0xF9FE,\n}\n\nconst encode5Low, encode5High = 194597, 195029\n\nvar encode5 = [...]uint16{\n\t194597 - 194597: 0x9874,\n\t194619 - 194597: 0x9AC8,\n\t194624 - 194597: 0xA047,\n\t194680 - 194597: 0x8BC3,\n\t194708 - 194597: 0xFC48,\n\t194726 - 194597: 0xFC77,\n\t194765 - 194597: 0x9C52,\n\t194964 - 194597: 0x8EFD,\n\t194994 - 194597: 0x8FA8,\n\t195004 - 194597: 0x957A,\n\t195028 - 194597: 0x8FF0,\n}\n\nconst encode6Low, encode6High = 63751, 64014\n\nvar encode6 = [...]uint16{\n\t63751 - 63751: 0x8BF8,\n\t64012 - 63751: 0xC94A,\n\t64013 - 63751: 0xDDFC,\n}\n\nconst encode7Low, encode7High = 175615, 175616\n\nvar encode7 = [...]uint16{\n\t175615 - 175615: 0x87DC,\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/unicode/override.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage unicode\n\nimport (\n\t\"golang.org/x/text/transform\"\n)\n\n// BOMOverride returns a new decoder transformer that is identical to fallback,\n// except that the presence of a Byte Order Mark at the start of the input\n// causes it to switch to the corresponding Unicode decoding. It will only\n// consider BOMs for UTF-8, UTF-16BE, and UTF-16LE.\n//\n// This differs from using ExpectBOM by allowing a BOM to switch to UTF-8, not\n// just UTF-16 variants, and allowing falling back to any encoding scheme.\n//\n// This technique is recommended by the W3C for use in HTML 5: \"For\n// compatibility with deployed content, the byte order mark (also known as BOM)\n// is considered more authoritative than anything else.\"\n// http://www.w3.org/TR/encoding/#specification-hooks\n//\n// Using BOMOverride is mostly intended for use cases where the first characters\n// of a fallback encoding are known to not be a BOM, for example, for valid HTML\n// and most encodings.\nfunc BOMOverride(fallback transform.Transformer) transform.Transformer {\n\t// TODO: possibly allow a variadic argument of unicode encodings to allow\n\t// specifying details of which fallbacks are supported as well as\n\t// specifying the details of the implementations. This would also allow for\n\t// support for UTF-32, which should not be supported by default.\n\treturn &bomOverride{fallback: fallback}\n}\n\ntype bomOverride struct {\n\tfallback transform.Transformer\n\tcurrent  transform.Transformer\n}\n\nfunc (d *bomOverride) Reset() {\n\td.current = nil\n\td.fallback.Reset()\n}\n\nvar (\n\t// TODO: we could use decode functions here, instead of allocating a new\n\t// decoder on every NewDecoder as IgnoreBOM decoders can be stateless.\n\tutf16le = UTF16(LittleEndian, IgnoreBOM)\n\tutf16be = UTF16(BigEndian, IgnoreBOM)\n)\n\nconst utf8BOM = \"\\ufeff\"\n\nfunc (d *bomOverride) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tif d.current != nil {\n\t\treturn d.current.Transform(dst, src, atEOF)\n\t}\n\tif len(src) < 3 && !atEOF {\n\t\treturn 0, 0, transform.ErrShortSrc\n\t}\n\td.current = d.fallback\n\tbomSize := 0\n\tif len(src) >= 2 {\n\t\tif src[0] == 0xFF && src[1] == 0xFE {\n\t\t\td.current = utf16le.NewDecoder()\n\t\t\tbomSize = 2\n\t\t} else if src[0] == 0xFE && src[1] == 0xFF {\n\t\t\td.current = utf16be.NewDecoder()\n\t\t\tbomSize = 2\n\t\t} else if len(src) >= 3 &&\n\t\t\tsrc[0] == utf8BOM[0] &&\n\t\t\tsrc[1] == utf8BOM[1] &&\n\t\t\tsrc[2] == utf8BOM[2] {\n\t\t\td.current = transform.Nop\n\t\t\tbomSize = 3\n\t\t}\n\t}\n\tif bomSize < len(src) {\n\t\tnDst, nSrc, err = d.current.Transform(dst, src[bomSize:], atEOF)\n\t}\n\treturn nDst, nSrc + bomSize, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/encoding/unicode/unicode.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package unicode provides Unicode encodings such as UTF-16.\npackage unicode // import \"golang.org/x/text/encoding/unicode\"\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"unicode/utf16\"\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/encoding\"\n\t\"golang.org/x/text/encoding/internal\"\n\t\"golang.org/x/text/encoding/internal/identifier\"\n\t\"golang.org/x/text/internal/utf8internal\"\n\t\"golang.org/x/text/runes\"\n\t\"golang.org/x/text/transform\"\n)\n\n// TODO: I think the Transformers really should return errors on unmatched\n// surrogate pairs and odd numbers of bytes. This is not required by RFC 2781,\n// which leaves it open, but is suggested by WhatWG. It will allow for all error\n// modes as defined by WhatWG: fatal, HTML and Replacement. This would require\n// the introduction of some kind of error type for conveying the erroneous code\n// point.\n\n// UTF8 is the UTF-8 encoding. It neither removes nor adds byte order marks.\nvar UTF8 encoding.Encoding = utf8enc\n\n// UTF8BOM is an UTF-8 encoding where the decoder strips a leading byte order\n// mark while the encoder adds one.\n//\n// Some editors add a byte order mark as a signature to UTF-8 files. Although\n// the byte order mark is not useful for detecting byte order in UTF-8, it is\n// sometimes used as a convention to mark UTF-8-encoded files. This relies on\n// the observation that the UTF-8 byte order mark is either an illegal or at\n// least very unlikely sequence in any other character encoding.\nvar UTF8BOM encoding.Encoding = utf8bomEncoding{}\n\ntype utf8bomEncoding struct{}\n\nfunc (utf8bomEncoding) String() string {\n\treturn \"UTF-8-BOM\"\n}\n\nfunc (utf8bomEncoding) ID() (identifier.MIB, string) {\n\treturn identifier.Unofficial, \"x-utf8bom\"\n}\n\nfunc (utf8bomEncoding) NewEncoder() *encoding.Encoder {\n\treturn &encoding.Encoder{\n\t\tTransformer: &utf8bomEncoder{t: runes.ReplaceIllFormed()},\n\t}\n}\n\nfunc (utf8bomEncoding) NewDecoder() *encoding.Decoder {\n\treturn &encoding.Decoder{Transformer: &utf8bomDecoder{}}\n}\n\nvar utf8enc = &internal.Encoding{\n\t&internal.SimpleEncoding{utf8Decoder{}, runes.ReplaceIllFormed()},\n\t\"UTF-8\",\n\tidentifier.UTF8,\n}\n\ntype utf8bomDecoder struct {\n\tchecked bool\n}\n\nfunc (t *utf8bomDecoder) Reset() {\n\tt.checked = false\n}\n\nfunc (t *utf8bomDecoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tif !t.checked {\n\t\tif !atEOF && len(src) < len(utf8BOM) {\n\t\t\tif len(src) == 0 {\n\t\t\t\treturn 0, 0, nil\n\t\t\t}\n\t\t\treturn 0, 0, transform.ErrShortSrc\n\t\t}\n\t\tif bytes.HasPrefix(src, []byte(utf8BOM)) {\n\t\t\tnSrc += len(utf8BOM)\n\t\t\tsrc = src[len(utf8BOM):]\n\t\t}\n\t\tt.checked = true\n\t}\n\tnDst, n, err := utf8Decoder.Transform(utf8Decoder{}, dst[nDst:], src, atEOF)\n\tnSrc += n\n\treturn nDst, nSrc, err\n}\n\ntype utf8bomEncoder struct {\n\twritten bool\n\tt       transform.Transformer\n}\n\nfunc (t *utf8bomEncoder) Reset() {\n\tt.written = false\n\tt.t.Reset()\n}\n\nfunc (t *utf8bomEncoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tif !t.written {\n\t\tif len(dst) < len(utf8BOM) {\n\t\t\treturn nDst, 0, transform.ErrShortDst\n\t\t}\n\t\tnDst = copy(dst, utf8BOM)\n\t\tt.written = true\n\t}\n\tn, nSrc, err := utf8Decoder.Transform(utf8Decoder{}, dst[nDst:], src, atEOF)\n\tnDst += n\n\treturn nDst, nSrc, err\n}\n\ntype utf8Decoder struct{ transform.NopResetter }\n\nfunc (utf8Decoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tvar pSrc int // point from which to start copy in src\n\tvar accept utf8internal.AcceptRange\n\n\t// The decoder can only make the input larger, not smaller.\n\tn := len(src)\n\tif len(dst) < n {\n\t\terr = transform.ErrShortDst\n\t\tn = len(dst)\n\t\tatEOF = false\n\t}\n\tfor nSrc < n {\n\t\tc := src[nSrc]\n\t\tif c < utf8.RuneSelf {\n\t\t\tnSrc++\n\t\t\tcontinue\n\t\t}\n\t\tfirst := utf8internal.First[c]\n\t\tsize := int(first & utf8internal.SizeMask)\n\t\tif first == utf8internal.FirstInvalid {\n\t\t\tgoto handleInvalid // invalid starter byte\n\t\t}\n\t\taccept = utf8internal.AcceptRanges[first>>utf8internal.AcceptShift]\n\t\tif nSrc+size > n {\n\t\t\tif !atEOF {\n\t\t\t\t// We may stop earlier than necessary here if the short sequence\n\t\t\t\t// has invalid bytes. Not checking for this simplifies the code\n\t\t\t\t// and may avoid duplicate computations in certain conditions.\n\t\t\t\tif err == nil {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Determine the maximal subpart of an ill-formed subsequence.\n\t\t\tswitch {\n\t\t\tcase nSrc+1 >= n || src[nSrc+1] < accept.Lo || accept.Hi < src[nSrc+1]:\n\t\t\t\tsize = 1\n\t\t\tcase nSrc+2 >= n || src[nSrc+2] < utf8internal.LoCB || utf8internal.HiCB < src[nSrc+2]:\n\t\t\t\tsize = 2\n\t\t\tdefault:\n\t\t\t\tsize = 3 // As we are short, the maximum is 3.\n\t\t\t}\n\t\t\tgoto handleInvalid\n\t\t}\n\t\tif c = src[nSrc+1]; c < accept.Lo || accept.Hi < c {\n\t\t\tsize = 1\n\t\t\tgoto handleInvalid // invalid continuation byte\n\t\t} else if size == 2 {\n\t\t} else if c = src[nSrc+2]; c < utf8internal.LoCB || utf8internal.HiCB < c {\n\t\t\tsize = 2\n\t\t\tgoto handleInvalid // invalid continuation byte\n\t\t} else if size == 3 {\n\t\t} else if c = src[nSrc+3]; c < utf8internal.LoCB || utf8internal.HiCB < c {\n\t\t\tsize = 3\n\t\t\tgoto handleInvalid // invalid continuation byte\n\t\t}\n\t\tnSrc += size\n\t\tcontinue\n\n\thandleInvalid:\n\t\t// Copy the scanned input so far.\n\t\tnDst += copy(dst[nDst:], src[pSrc:nSrc])\n\n\t\t// Append RuneError to the destination.\n\t\tconst runeError = \"\\ufffd\"\n\t\tif nDst+len(runeError) > len(dst) {\n\t\t\treturn nDst, nSrc, transform.ErrShortDst\n\t\t}\n\t\tnDst += copy(dst[nDst:], runeError)\n\n\t\t// Skip the maximal subpart of an ill-formed subsequence according to\n\t\t// the W3C standard way instead of the Go way. This Transform is\n\t\t// probably the only place in the text repo where it is warranted.\n\t\tnSrc += size\n\t\tpSrc = nSrc\n\n\t\t// Recompute the maximum source length.\n\t\tif sz := len(dst) - nDst; sz < len(src)-nSrc {\n\t\t\terr = transform.ErrShortDst\n\t\t\tn = nSrc + sz\n\t\t\tatEOF = false\n\t\t}\n\t}\n\treturn nDst + copy(dst[nDst:], src[pSrc:nSrc]), nSrc, err\n}\n\n// UTF16 returns a UTF-16 Encoding for the given default endianness and byte\n// order mark (BOM) policy.\n//\n// When decoding from UTF-16 to UTF-8, if the BOMPolicy is IgnoreBOM then\n// neither BOMs U+FEFF nor noncharacters U+FFFE in the input stream will affect\n// the endianness used for decoding, and will instead be output as their\n// standard UTF-8 encodings: \"\\xef\\xbb\\xbf\" and \"\\xef\\xbf\\xbe\". If the BOMPolicy\n// is UseBOM or ExpectBOM a staring BOM is not written to the UTF-8 output.\n// Instead, it overrides the default endianness e for the remainder of the\n// transformation. Any subsequent BOMs U+FEFF or noncharacters U+FFFE will not\n// affect the endianness used, and will instead be output as their standard\n// UTF-8 encodings. For UseBOM, if there is no starting BOM, it will proceed\n// with the default Endianness. For ExpectBOM, in that case, the transformation\n// will return early with an ErrMissingBOM error.\n//\n// When encoding from UTF-8 to UTF-16, a BOM will be inserted at the start of\n// the output if the BOMPolicy is UseBOM or ExpectBOM. Otherwise, a BOM will not\n// be inserted. The UTF-8 input does not need to contain a BOM.\n//\n// There is no concept of a 'native' endianness. If the UTF-16 data is produced\n// and consumed in a greater context that implies a certain endianness, use\n// IgnoreBOM. Otherwise, use ExpectBOM and always produce and consume a BOM.\n//\n// In the language of https://www.unicode.org/faq/utf_bom.html#bom10, IgnoreBOM\n// corresponds to \"Where the precise type of the data stream is known... the\n// BOM should not be used\" and ExpectBOM corresponds to \"A particular\n// protocol... may require use of the BOM\".\nfunc UTF16(e Endianness, b BOMPolicy) encoding.Encoding {\n\treturn utf16Encoding{config{e, b}, mibValue[e][b&bomMask]}\n}\n\n// mibValue maps Endianness and BOMPolicy settings to MIB constants. Note that\n// some configurations map to the same MIB identifier. RFC 2781 has requirements\n// and recommendations. Some of the \"configurations\" are merely recommendations,\n// so multiple configurations could match.\nvar mibValue = map[Endianness][numBOMValues]identifier.MIB{\n\tBigEndian: [numBOMValues]identifier.MIB{\n\t\tIgnoreBOM: identifier.UTF16BE,\n\t\tUseBOM:    identifier.UTF16, // BigEnding default is preferred by RFC 2781.\n\t\t// TODO: acceptBOM | strictBOM would map to UTF16BE as well.\n\t},\n\tLittleEndian: [numBOMValues]identifier.MIB{\n\t\tIgnoreBOM: identifier.UTF16LE,\n\t\tUseBOM:    identifier.UTF16, // LittleEndian default is allowed and preferred on Windows.\n\t\t// TODO: acceptBOM | strictBOM would map to UTF16LE as well.\n\t},\n\t// ExpectBOM is not widely used and has no valid MIB identifier.\n}\n\n// All lists a configuration for each IANA-defined UTF-16 variant.\nvar All = []encoding.Encoding{\n\tUTF8,\n\tUTF16(BigEndian, UseBOM),\n\tUTF16(BigEndian, IgnoreBOM),\n\tUTF16(LittleEndian, IgnoreBOM),\n}\n\n// BOMPolicy is a UTF-16 encoding's byte order mark policy.\ntype BOMPolicy uint8\n\nconst (\n\twriteBOM   BOMPolicy = 0x01\n\tacceptBOM  BOMPolicy = 0x02\n\trequireBOM BOMPolicy = 0x04\n\tbomMask    BOMPolicy = 0x07\n\n\t// HACK: numBOMValues == 8 triggers a bug in the 1.4 compiler (cannot have a\n\t// map of an array of length 8 of a type that is also used as a key or value\n\t// in another map). See golang.org/issue/11354.\n\t// TODO: consider changing this value back to 8 if the use of 1.4.* has\n\t// been minimized.\n\tnumBOMValues = 8 + 1\n\n\t// IgnoreBOM means to ignore any byte order marks.\n\tIgnoreBOM BOMPolicy = 0\n\t// Common and RFC 2781-compliant interpretation for UTF-16BE/LE.\n\n\t// UseBOM means that the UTF-16 form may start with a byte order mark, which\n\t// will be used to override the default encoding.\n\tUseBOM BOMPolicy = writeBOM | acceptBOM\n\t// Common and RFC 2781-compliant interpretation for UTF-16.\n\n\t// ExpectBOM means that the UTF-16 form must start with a byte order mark,\n\t// which will be used to override the default encoding.\n\tExpectBOM BOMPolicy = writeBOM | acceptBOM | requireBOM\n\t// Used in Java as Unicode (not to be confused with Java's UTF-16) and\n\t// ICU's UTF-16,version=1. Not compliant with RFC 2781.\n\n\t// TODO (maybe): strictBOM: BOM must match Endianness. This would allow:\n\t// - UTF-16(B|L)E,version=1: writeBOM | acceptBOM | requireBOM | strictBOM\n\t//    (UnicodeBig and UnicodeLittle in Java)\n\t// - RFC 2781-compliant, but less common interpretation for UTF-16(B|L)E:\n\t//    acceptBOM | strictBOM (e.g. assigned to CheckBOM).\n\t// This addition would be consistent with supporting ExpectBOM.\n)\n\n// Endianness is a UTF-16 encoding's default endianness.\ntype Endianness bool\n\nconst (\n\t// BigEndian is UTF-16BE.\n\tBigEndian Endianness = false\n\t// LittleEndian is UTF-16LE.\n\tLittleEndian Endianness = true\n)\n\n// ErrMissingBOM means that decoding UTF-16 input with ExpectBOM did not find a\n// starting byte order mark.\nvar ErrMissingBOM = errors.New(\"encoding: missing byte order mark\")\n\ntype utf16Encoding struct {\n\tconfig\n\tmib identifier.MIB\n}\n\ntype config struct {\n\tendianness Endianness\n\tbomPolicy  BOMPolicy\n}\n\nfunc (u utf16Encoding) NewDecoder() *encoding.Decoder {\n\treturn &encoding.Decoder{Transformer: &utf16Decoder{\n\t\tinitial: u.config,\n\t\tcurrent: u.config,\n\t}}\n}\n\nfunc (u utf16Encoding) NewEncoder() *encoding.Encoder {\n\treturn &encoding.Encoder{Transformer: &utf16Encoder{\n\t\tendianness:       u.endianness,\n\t\tinitialBOMPolicy: u.bomPolicy,\n\t\tcurrentBOMPolicy: u.bomPolicy,\n\t}}\n}\n\nfunc (u utf16Encoding) ID() (mib identifier.MIB, other string) {\n\treturn u.mib, \"\"\n}\n\nfunc (u utf16Encoding) String() string {\n\te, b := \"B\", \"\"\n\tif u.endianness == LittleEndian {\n\t\te = \"L\"\n\t}\n\tswitch u.bomPolicy {\n\tcase ExpectBOM:\n\t\tb = \"Expect\"\n\tcase UseBOM:\n\t\tb = \"Use\"\n\tcase IgnoreBOM:\n\t\tb = \"Ignore\"\n\t}\n\treturn \"UTF-16\" + e + \"E (\" + b + \" BOM)\"\n}\n\ntype utf16Decoder struct {\n\tinitial config\n\tcurrent config\n}\n\nfunc (u *utf16Decoder) Reset() {\n\tu.current = u.initial\n}\n\nfunc (u *utf16Decoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tif len(src) < 2 && atEOF && u.current.bomPolicy&requireBOM != 0 {\n\t\treturn 0, 0, ErrMissingBOM\n\t}\n\tif len(src) == 0 {\n\t\treturn 0, 0, nil\n\t}\n\tif len(src) >= 2 && u.current.bomPolicy&acceptBOM != 0 {\n\t\tswitch {\n\t\tcase src[0] == 0xfe && src[1] == 0xff:\n\t\t\tu.current.endianness = BigEndian\n\t\t\tnSrc = 2\n\t\tcase src[0] == 0xff && src[1] == 0xfe:\n\t\t\tu.current.endianness = LittleEndian\n\t\t\tnSrc = 2\n\t\tdefault:\n\t\t\tif u.current.bomPolicy&requireBOM != 0 {\n\t\t\t\treturn 0, 0, ErrMissingBOM\n\t\t\t}\n\t\t}\n\t\tu.current.bomPolicy = IgnoreBOM\n\t}\n\n\tvar r rune\n\tvar dSize, sSize int\n\tfor nSrc < len(src) {\n\t\tif nSrc+1 < len(src) {\n\t\t\tx := uint16(src[nSrc+0])<<8 | uint16(src[nSrc+1])\n\t\t\tif u.current.endianness == LittleEndian {\n\t\t\t\tx = x>>8 | x<<8\n\t\t\t}\n\t\t\tr, sSize = rune(x), 2\n\t\t\tif utf16.IsSurrogate(r) {\n\t\t\t\tif nSrc+3 < len(src) {\n\t\t\t\t\tx = uint16(src[nSrc+2])<<8 | uint16(src[nSrc+3])\n\t\t\t\t\tif u.current.endianness == LittleEndian {\n\t\t\t\t\t\tx = x>>8 | x<<8\n\t\t\t\t\t}\n\t\t\t\t\t// Save for next iteration if it is not a high surrogate.\n\t\t\t\t\tif isHighSurrogate(rune(x)) {\n\t\t\t\t\t\tr, sSize = utf16.DecodeRune(r, rune(x)), 4\n\t\t\t\t\t}\n\t\t\t\t} else if !atEOF {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif dSize = utf8.RuneLen(r); dSize < 0 {\n\t\t\t\tr, dSize = utf8.RuneError, 3\n\t\t\t}\n\t\t} else if atEOF {\n\t\t\t// Single trailing byte.\n\t\t\tr, dSize, sSize = utf8.RuneError, 3, 1\n\t\t} else {\n\t\t\terr = transform.ErrShortSrc\n\t\t\tbreak\n\t\t}\n\t\tif nDst+dSize > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tnDst += utf8.EncodeRune(dst[nDst:], r)\n\t\tnSrc += sSize\n\t}\n\treturn nDst, nSrc, err\n}\n\nfunc isHighSurrogate(r rune) bool {\n\treturn 0xDC00 <= r && r <= 0xDFFF\n}\n\ntype utf16Encoder struct {\n\tendianness       Endianness\n\tinitialBOMPolicy BOMPolicy\n\tcurrentBOMPolicy BOMPolicy\n}\n\nfunc (u *utf16Encoder) Reset() {\n\tu.currentBOMPolicy = u.initialBOMPolicy\n}\n\nfunc (u *utf16Encoder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tif u.currentBOMPolicy&writeBOM != 0 {\n\t\tif len(dst) < 2 {\n\t\t\treturn 0, 0, transform.ErrShortDst\n\t\t}\n\t\tdst[0], dst[1] = 0xfe, 0xff\n\t\tu.currentBOMPolicy = IgnoreBOM\n\t\tnDst = 2\n\t}\n\n\tr, size := rune(0), 0\n\tfor nSrc < len(src) {\n\t\tr = rune(src[nSrc])\n\n\t\t// Decode a 1-byte rune.\n\t\tif r < utf8.RuneSelf {\n\t\t\tsize = 1\n\n\t\t} else {\n\t\t\t// Decode a multi-byte rune.\n\t\t\tr, size = utf8.DecodeRune(src[nSrc:])\n\t\t\tif size == 1 {\n\t\t\t\t// All valid runes of size 1 (those below utf8.RuneSelf) were\n\t\t\t\t// handled above. We have invalid UTF-8 or we haven't seen the\n\t\t\t\t// full character yet.\n\t\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif r <= 0xffff {\n\t\t\tif nDst+2 > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[nDst+0] = uint8(r >> 8)\n\t\t\tdst[nDst+1] = uint8(r)\n\t\t\tnDst += 2\n\t\t} else {\n\t\t\tif nDst+4 > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tr1, r2 := utf16.EncodeRune(r)\n\t\t\tdst[nDst+0] = uint8(r1 >> 8)\n\t\t\tdst[nDst+1] = uint8(r1)\n\t\t\tdst[nDst+2] = uint8(r2 >> 8)\n\t\t\tdst[nDst+3] = uint8(r2)\n\t\t\tnDst += 4\n\t\t}\n\t\tnSrc += size\n\t}\n\n\tif u.endianness == LittleEndian {\n\t\tfor i := 0; i < nDst; i += 2 {\n\t\t\tdst[i], dst[i+1] = dst[i+1], dst[i]\n\t\t}\n\t}\n\treturn nDst, nSrc, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/common.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\npackage language\n\n// This file contains code common to the maketables.go and the package code.\n\n// AliasType is the type of an alias in AliasMap.\ntype AliasType int8\n\nconst (\n\tDeprecated AliasType = iota\n\tMacro\n\tLegacy\n\n\tAliasTypeUnknown AliasType = -1\n)\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/compact/compact.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package compact defines a compact representation of language tags.\n//\n// Common language tags (at least all for which locale information is defined\n// in CLDR) are assigned a unique index. Each Tag is associated with such an\n// ID for selecting language-related resources (such as translations) as well\n// as one for selecting regional defaults (currency, number formatting, etc.)\n//\n// It may want to export this functionality at some point, but at this point\n// this is only available for use within x/text.\npackage compact // import \"golang.org/x/text/internal/language/compact\"\n\nimport (\n\t\"sort\"\n\t\"strings\"\n\n\t\"golang.org/x/text/internal/language\"\n)\n\n// ID is an integer identifying a single tag.\ntype ID uint16\n\nfunc getCoreIndex(t language.Tag) (id ID, ok bool) {\n\tcci, ok := language.GetCompactCore(t)\n\tif !ok {\n\t\treturn 0, false\n\t}\n\ti := sort.Search(len(coreTags), func(i int) bool {\n\t\treturn cci <= coreTags[i]\n\t})\n\tif i == len(coreTags) || coreTags[i] != cci {\n\t\treturn 0, false\n\t}\n\treturn ID(i), true\n}\n\n// Parent returns the ID of the parent or the root ID if id is already the root.\nfunc (id ID) Parent() ID {\n\treturn parents[id]\n}\n\n// Tag converts id to an internal language Tag.\nfunc (id ID) Tag() language.Tag {\n\tif int(id) >= len(coreTags) {\n\t\treturn specialTags[int(id)-len(coreTags)]\n\t}\n\treturn coreTags[id].Tag()\n}\n\nvar specialTags []language.Tag\n\nfunc init() {\n\ttags := strings.Split(specialTagsStr, \" \")\n\tspecialTags = make([]language.Tag, len(tags))\n\tfor i, t := range tags {\n\t\tspecialTags[i] = language.MustParse(t)\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/compact/language.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n//go:generate go run gen.go gen_index.go -output tables.go\n//go:generate go run gen_parents.go\n\npackage compact\n\n// TODO: Remove above NOTE after:\n// - verifying that tables are dropped correctly (most notably matcher tables).\n\nimport (\n\t\"strings\"\n\n\t\"golang.org/x/text/internal/language\"\n)\n\n// Tag represents a BCP 47 language tag. It is used to specify an instance of a\n// specific language or locale. All language tag values are guaranteed to be\n// well-formed.\ntype Tag struct {\n\t// NOTE: exported tags will become part of the public API.\n\tlanguage ID\n\tlocale   ID\n\tfull     fullTag // always a language.Tag for now.\n}\n\nconst _und = 0\n\ntype fullTag interface {\n\tIsRoot() bool\n\tParent() language.Tag\n}\n\n// Make a compact Tag from a fully specified internal language Tag.\nfunc Make(t language.Tag) (tag Tag) {\n\tif region := t.TypeForKey(\"rg\"); len(region) == 6 && region[2:] == \"zzzz\" {\n\t\tif r, err := language.ParseRegion(region[:2]); err == nil {\n\t\t\ttFull := t\n\t\t\tt, _ = t.SetTypeForKey(\"rg\", \"\")\n\t\t\t// TODO: should we not consider \"va\" for the language tag?\n\t\t\tvar exact1, exact2 bool\n\t\t\ttag.language, exact1 = FromTag(t)\n\t\t\tt.RegionID = r\n\t\t\ttag.locale, exact2 = FromTag(t)\n\t\t\tif !exact1 || !exact2 {\n\t\t\t\ttag.full = tFull\n\t\t\t}\n\t\t\treturn tag\n\t\t}\n\t}\n\tlang, ok := FromTag(t)\n\ttag.language = lang\n\ttag.locale = lang\n\tif !ok {\n\t\ttag.full = t\n\t}\n\treturn tag\n}\n\n// Tag returns an internal language Tag version of this tag.\nfunc (t Tag) Tag() language.Tag {\n\tif t.full != nil {\n\t\treturn t.full.(language.Tag)\n\t}\n\ttag := t.language.Tag()\n\tif t.language != t.locale {\n\t\tloc := t.locale.Tag()\n\t\ttag, _ = tag.SetTypeForKey(\"rg\", strings.ToLower(loc.RegionID.String())+\"zzzz\")\n\t}\n\treturn tag\n}\n\n// IsCompact reports whether this tag is fully defined in terms of ID.\nfunc (t *Tag) IsCompact() bool {\n\treturn t.full == nil\n}\n\n// MayHaveVariants reports whether a tag may have variants. If it returns false\n// it is guaranteed the tag does not have variants.\nfunc (t Tag) MayHaveVariants() bool {\n\treturn t.full != nil || int(t.language) >= len(coreTags)\n}\n\n// MayHaveExtensions reports whether a tag may have extensions. If it returns\n// false it is guaranteed the tag does not have them.\nfunc (t Tag) MayHaveExtensions() bool {\n\treturn t.full != nil ||\n\t\tint(t.language) >= len(coreTags) ||\n\t\tt.language != t.locale\n}\n\n// IsRoot returns true if t is equal to language \"und\".\nfunc (t Tag) IsRoot() bool {\n\tif t.full != nil {\n\t\treturn t.full.IsRoot()\n\t}\n\treturn t.language == _und\n}\n\n// Parent returns the CLDR parent of t. In CLDR, missing fields in data for a\n// specific language are substituted with fields from the parent language.\n// The parent for a language may change for newer versions of CLDR.\nfunc (t Tag) Parent() Tag {\n\tif t.full != nil {\n\t\treturn Make(t.full.Parent())\n\t}\n\tif t.language != t.locale {\n\t\t// Simulate stripping -u-rg-xxxxxx\n\t\treturn Tag{language: t.language, locale: t.language}\n\t}\n\t// TODO: use parent lookup table once cycle from internal package is\n\t// removed. Probably by internalizing the table and declaring this fast\n\t// enough.\n\t// lang := compactID(internal.Parent(uint16(t.language)))\n\tlang, _ := FromTag(t.language.Tag().Parent())\n\treturn Tag{language: lang, locale: lang}\n}\n\n// returns token t and the rest of the string.\nfunc nextToken(s string) (t, tail string) {\n\tp := strings.Index(s[1:], \"-\")\n\tif p == -1 {\n\t\treturn s[1:], \"\"\n\t}\n\tp++\n\treturn s[1:p], s[p:]\n}\n\n// LanguageID returns an index, where 0 <= index < NumCompactTags, for tags\n// for which data exists in the text repository.The index will change over time\n// and should not be stored in persistent storage. If t does not match a compact\n// index, exact will be false and the compact index will be returned for the\n// first match after repeatedly taking the Parent of t.\nfunc LanguageID(t Tag) (id ID, exact bool) {\n\treturn t.language, t.full == nil\n}\n\n// RegionalID returns the ID for the regional variant of this tag. This index is\n// used to indicate region-specific overrides, such as default currency, default\n// calendar and week data, default time cycle, and default measurement system\n// and unit preferences.\n//\n// For instance, the tag en-GB-u-rg-uszzzz specifies British English with US\n// settings for currency, number formatting, etc. The CompactIndex for this tag\n// will be that for en-GB, while the RegionalID will be the one corresponding to\n// en-US.\nfunc RegionalID(t Tag) (id ID, exact bool) {\n\treturn t.locale, t.full == nil\n}\n\n// LanguageTag returns t stripped of regional variant indicators.\n//\n// At the moment this means it is stripped of a regional and variant subtag \"rg\"\n// and \"va\" in the \"u\" extension.\nfunc (t Tag) LanguageTag() Tag {\n\tif t.full == nil {\n\t\treturn Tag{language: t.language, locale: t.language}\n\t}\n\ttt := t.Tag()\n\ttt.SetTypeForKey(\"rg\", \"\")\n\ttt.SetTypeForKey(\"va\", \"\")\n\treturn Make(tt)\n}\n\n// RegionalTag returns the regional variant of the tag.\n//\n// At the moment this means that the region is set from the regional subtag\n// \"rg\" in the \"u\" extension.\nfunc (t Tag) RegionalTag() Tag {\n\trt := Tag{language: t.locale, locale: t.locale}\n\tif t.full == nil {\n\t\treturn rt\n\t}\n\tb := language.Builder{}\n\ttag := t.Tag()\n\t// tag, _ = tag.SetTypeForKey(\"rg\", \"\")\n\tb.SetTag(t.locale.Tag())\n\tif v := tag.Variants(); v != \"\" {\n\t\tfor _, v := range strings.Split(v, \"-\") {\n\t\t\tb.AddVariant(v)\n\t\t}\n\t}\n\tfor _, e := range tag.Extensions() {\n\t\tb.AddExt(e)\n\t}\n\treturn t\n}\n\n// FromTag reports closest matching ID for an internal language Tag.\nfunc FromTag(t language.Tag) (id ID, exact bool) {\n\t// TODO: perhaps give more frequent tags a lower index.\n\t// TODO: we could make the indexes stable. This will excluded some\n\t//       possibilities for optimization, so don't do this quite yet.\n\texact = true\n\n\tb, s, r := t.Raw()\n\tif t.HasString() {\n\t\tif t.IsPrivateUse() {\n\t\t\t// We have no entries for user-defined tags.\n\t\t\treturn 0, false\n\t\t}\n\t\thasExtra := false\n\t\tif t.HasVariants() {\n\t\t\tif t.HasExtensions() {\n\t\t\t\tbuild := language.Builder{}\n\t\t\t\tbuild.SetTag(language.Tag{LangID: b, ScriptID: s, RegionID: r})\n\t\t\t\tbuild.AddVariant(t.Variants())\n\t\t\t\texact = false\n\t\t\t\tt = build.Make()\n\t\t\t}\n\t\t\thasExtra = true\n\t\t} else if _, ok := t.Extension('u'); ok {\n\t\t\t// TODO: va may mean something else. Consider not considering it.\n\t\t\t// Strip all but the 'va' entry.\n\t\t\told := t\n\t\t\tvariant := t.TypeForKey(\"va\")\n\t\t\tt = language.Tag{LangID: b, ScriptID: s, RegionID: r}\n\t\t\tif variant != \"\" {\n\t\t\t\tt, _ = t.SetTypeForKey(\"va\", variant)\n\t\t\t\thasExtra = true\n\t\t\t}\n\t\t\texact = old == t\n\t\t} else {\n\t\t\texact = false\n\t\t}\n\t\tif hasExtra {\n\t\t\t// We have some variants.\n\t\t\tfor i, s := range specialTags {\n\t\t\t\tif s == t {\n\t\t\t\t\treturn ID(i + len(coreTags)), exact\n\t\t\t\t}\n\t\t\t}\n\t\t\texact = false\n\t\t}\n\t}\n\tif x, ok := getCoreIndex(t); ok {\n\t\treturn x, exact\n\t}\n\texact = false\n\tif r != 0 && s == 0 {\n\t\t// Deal with cases where an extra script is inserted for the region.\n\t\tt, _ := t.Maximize()\n\t\tif x, ok := getCoreIndex(t); ok {\n\t\t\treturn x, exact\n\t\t}\n\t}\n\tfor t = t.Parent(); t != root; t = t.Parent() {\n\t\t// No variants specified: just compare core components.\n\t\t// The key has the form lllssrrr, where l, s, and r are nibbles for\n\t\t// respectively the langID, scriptID, and regionID.\n\t\tif x, ok := getCoreIndex(t); ok {\n\t\t\treturn x, exact\n\t\t}\n\t}\n\treturn 0, exact\n}\n\nvar root = language.Tag{}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/compact/parents.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\npackage compact\n\n// parents maps a compact index of a tag to the compact index of the parent of\n// this tag.\nvar parents = []ID{ // 775 elements\n\t// Entry 0 - 3F\n\t0x0000, 0x0000, 0x0001, 0x0001, 0x0000, 0x0004, 0x0000, 0x0006,\n\t0x0000, 0x0008, 0x0000, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a,\n\t0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a,\n\t0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a,\n\t0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x0000,\n\t0x0000, 0x0028, 0x0000, 0x002a, 0x0000, 0x002c, 0x0000, 0x0000,\n\t0x002f, 0x002e, 0x002e, 0x0000, 0x0033, 0x0000, 0x0035, 0x0000,\n\t0x0037, 0x0000, 0x0039, 0x0000, 0x003b, 0x0000, 0x0000, 0x003e,\n\t// Entry 40 - 7F\n\t0x0000, 0x0040, 0x0040, 0x0000, 0x0043, 0x0043, 0x0000, 0x0046,\n\t0x0000, 0x0048, 0x0000, 0x0000, 0x004b, 0x004a, 0x004a, 0x0000,\n\t0x004f, 0x004f, 0x004f, 0x004f, 0x0000, 0x0054, 0x0054, 0x0000,\n\t0x0057, 0x0000, 0x0059, 0x0000, 0x005b, 0x0000, 0x005d, 0x005d,\n\t0x0000, 0x0060, 0x0000, 0x0062, 0x0000, 0x0064, 0x0000, 0x0066,\n\t0x0066, 0x0000, 0x0069, 0x0000, 0x006b, 0x006b, 0x006b, 0x006b,\n\t0x006b, 0x006b, 0x006b, 0x0000, 0x0073, 0x0000, 0x0075, 0x0000,\n\t0x0077, 0x0000, 0x0000, 0x007a, 0x0000, 0x007c, 0x0000, 0x007e,\n\t// Entry 80 - BF\n\t0x0000, 0x0080, 0x0080, 0x0000, 0x0083, 0x0083, 0x0000, 0x0086,\n\t0x0087, 0x0087, 0x0087, 0x0086, 0x0088, 0x0087, 0x0087, 0x0087,\n\t0x0086, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0088,\n\t0x0087, 0x0087, 0x0087, 0x0087, 0x0088, 0x0087, 0x0088, 0x0087,\n\t0x0087, 0x0088, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087,\n\t0x0087, 0x0087, 0x0087, 0x0086, 0x0087, 0x0087, 0x0087, 0x0087,\n\t0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087,\n\t0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0086, 0x0087, 0x0086,\n\t// Entry C0 - FF\n\t0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087,\n\t0x0088, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087,\n\t0x0086, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0088, 0x0087,\n\t0x0087, 0x0088, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087,\n\t0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0086, 0x0086, 0x0087,\n\t0x0087, 0x0086, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0000,\n\t0x00ef, 0x0000, 0x00f1, 0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f2,\n\t0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f1, 0x00f2, 0x00f1, 0x00f1,\n\t// Entry 100 - 13F\n\t0x00f2, 0x00f2, 0x00f1, 0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f1,\n\t0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x00f2, 0x0000, 0x010e,\n\t0x0000, 0x0110, 0x0000, 0x0112, 0x0000, 0x0114, 0x0114, 0x0000,\n\t0x0117, 0x0117, 0x0117, 0x0117, 0x0000, 0x011c, 0x0000, 0x011e,\n\t0x0000, 0x0120, 0x0120, 0x0000, 0x0123, 0x0123, 0x0123, 0x0123,\n\t0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,\n\t0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,\n\t0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,\n\t// Entry 140 - 17F\n\t0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,\n\t0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,\n\t0x0123, 0x0123, 0x0000, 0x0152, 0x0000, 0x0154, 0x0000, 0x0156,\n\t0x0000, 0x0158, 0x0000, 0x015a, 0x0000, 0x015c, 0x015c, 0x015c,\n\t0x0000, 0x0160, 0x0000, 0x0000, 0x0163, 0x0000, 0x0165, 0x0000,\n\t0x0167, 0x0167, 0x0167, 0x0000, 0x016b, 0x0000, 0x016d, 0x0000,\n\t0x016f, 0x0000, 0x0171, 0x0171, 0x0000, 0x0174, 0x0000, 0x0176,\n\t0x0000, 0x0178, 0x0000, 0x017a, 0x0000, 0x017c, 0x0000, 0x017e,\n\t// Entry 180 - 1BF\n\t0x0000, 0x0000, 0x0000, 0x0182, 0x0000, 0x0184, 0x0184, 0x0184,\n\t0x0184, 0x0000, 0x0000, 0x0000, 0x018b, 0x0000, 0x0000, 0x018e,\n\t0x0000, 0x0000, 0x0191, 0x0000, 0x0000, 0x0000, 0x0195, 0x0000,\n\t0x0197, 0x0000, 0x0000, 0x019a, 0x0000, 0x0000, 0x019d, 0x0000,\n\t0x019f, 0x0000, 0x01a1, 0x0000, 0x01a3, 0x0000, 0x01a5, 0x0000,\n\t0x01a7, 0x0000, 0x01a9, 0x0000, 0x01ab, 0x0000, 0x01ad, 0x0000,\n\t0x01af, 0x0000, 0x01b1, 0x01b1, 0x0000, 0x01b4, 0x0000, 0x01b6,\n\t0x0000, 0x01b8, 0x0000, 0x01ba, 0x0000, 0x01bc, 0x0000, 0x0000,\n\t// Entry 1C0 - 1FF\n\t0x01bf, 0x0000, 0x01c1, 0x0000, 0x01c3, 0x0000, 0x01c5, 0x0000,\n\t0x01c7, 0x0000, 0x01c9, 0x0000, 0x01cb, 0x01cb, 0x01cb, 0x01cb,\n\t0x0000, 0x01d0, 0x0000, 0x01d2, 0x01d2, 0x0000, 0x01d5, 0x0000,\n\t0x01d7, 0x0000, 0x01d9, 0x0000, 0x01db, 0x0000, 0x01dd, 0x0000,\n\t0x01df, 0x01df, 0x0000, 0x01e2, 0x0000, 0x01e4, 0x0000, 0x01e6,\n\t0x0000, 0x01e8, 0x0000, 0x01ea, 0x0000, 0x01ec, 0x0000, 0x01ee,\n\t0x0000, 0x01f0, 0x0000, 0x0000, 0x01f3, 0x0000, 0x01f5, 0x01f5,\n\t0x01f5, 0x0000, 0x01f9, 0x0000, 0x01fb, 0x0000, 0x01fd, 0x0000,\n\t// Entry 200 - 23F\n\t0x01ff, 0x0000, 0x0000, 0x0202, 0x0000, 0x0204, 0x0204, 0x0000,\n\t0x0207, 0x0000, 0x0209, 0x0209, 0x0000, 0x020c, 0x020c, 0x0000,\n\t0x020f, 0x020f, 0x020f, 0x020f, 0x020f, 0x020f, 0x020f, 0x0000,\n\t0x0217, 0x0000, 0x0219, 0x0000, 0x021b, 0x0000, 0x0000, 0x0000,\n\t0x0000, 0x0000, 0x0221, 0x0000, 0x0000, 0x0224, 0x0000, 0x0226,\n\t0x0226, 0x0000, 0x0229, 0x0000, 0x022b, 0x022b, 0x0000, 0x0000,\n\t0x022f, 0x022e, 0x022e, 0x0000, 0x0000, 0x0234, 0x0000, 0x0236,\n\t0x0000, 0x0238, 0x0000, 0x0244, 0x023a, 0x0244, 0x0244, 0x0244,\n\t// Entry 240 - 27F\n\t0x0244, 0x0244, 0x0244, 0x0244, 0x023a, 0x0244, 0x0244, 0x0000,\n\t0x0247, 0x0247, 0x0247, 0x0000, 0x024b, 0x0000, 0x024d, 0x0000,\n\t0x024f, 0x024f, 0x0000, 0x0252, 0x0000, 0x0254, 0x0254, 0x0254,\n\t0x0254, 0x0254, 0x0254, 0x0000, 0x025b, 0x0000, 0x025d, 0x0000,\n\t0x025f, 0x0000, 0x0261, 0x0000, 0x0263, 0x0000, 0x0265, 0x0000,\n\t0x0000, 0x0268, 0x0268, 0x0268, 0x0000, 0x026c, 0x0000, 0x026e,\n\t0x0000, 0x0270, 0x0000, 0x0000, 0x0000, 0x0274, 0x0273, 0x0273,\n\t0x0000, 0x0278, 0x0000, 0x027a, 0x0000, 0x027c, 0x0000, 0x0000,\n\t// Entry 280 - 2BF\n\t0x0000, 0x0000, 0x0281, 0x0000, 0x0000, 0x0284, 0x0000, 0x0286,\n\t0x0286, 0x0286, 0x0286, 0x0000, 0x028b, 0x028b, 0x028b, 0x0000,\n\t0x028f, 0x028f, 0x028f, 0x028f, 0x028f, 0x0000, 0x0295, 0x0295,\n\t0x0295, 0x0295, 0x0000, 0x0000, 0x0000, 0x0000, 0x029d, 0x029d,\n\t0x029d, 0x0000, 0x02a1, 0x02a1, 0x02a1, 0x02a1, 0x0000, 0x0000,\n\t0x02a7, 0x02a7, 0x02a7, 0x02a7, 0x0000, 0x02ac, 0x0000, 0x02ae,\n\t0x02ae, 0x0000, 0x02b1, 0x0000, 0x02b3, 0x0000, 0x02b5, 0x02b5,\n\t0x0000, 0x0000, 0x02b9, 0x0000, 0x0000, 0x0000, 0x02bd, 0x0000,\n\t// Entry 2C0 - 2FF\n\t0x02bf, 0x02bf, 0x0000, 0x0000, 0x02c3, 0x0000, 0x02c5, 0x0000,\n\t0x02c7, 0x0000, 0x02c9, 0x0000, 0x02cb, 0x0000, 0x02cd, 0x02cd,\n\t0x0000, 0x0000, 0x02d1, 0x0000, 0x02d3, 0x02d0, 0x02d0, 0x0000,\n\t0x0000, 0x02d8, 0x02d7, 0x02d7, 0x0000, 0x0000, 0x02dd, 0x0000,\n\t0x02df, 0x0000, 0x02e1, 0x0000, 0x0000, 0x02e4, 0x0000, 0x02e6,\n\t0x0000, 0x0000, 0x02e9, 0x0000, 0x02eb, 0x0000, 0x02ed, 0x0000,\n\t0x02ef, 0x02ef, 0x0000, 0x0000, 0x02f3, 0x02f2, 0x02f2, 0x0000,\n\t0x02f7, 0x0000, 0x02f9, 0x02f9, 0x02f9, 0x02f9, 0x02f9, 0x0000,\n\t// Entry 300 - 33F\n\t0x02ff, 0x0300, 0x02ff, 0x0000, 0x0303, 0x0051, 0x00e6,\n} // Size: 1574 bytes\n\n// Total table size 1574 bytes (1KiB); checksum: 895AAF0B\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/compact/tables.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\npackage compact\n\nimport \"golang.org/x/text/internal/language\"\n\n// CLDRVersion is the CLDR version from which the tables in this package are derived.\nconst CLDRVersion = \"32\"\n\n// NumCompactTags is the number of common tags. The maximum tag is\n// NumCompactTags-1.\nconst NumCompactTags = 775\nconst (\n\tundIndex          ID = 0\n\tafIndex           ID = 1\n\tafNAIndex         ID = 2\n\tafZAIndex         ID = 3\n\tagqIndex          ID = 4\n\tagqCMIndex        ID = 5\n\takIndex           ID = 6\n\takGHIndex         ID = 7\n\tamIndex           ID = 8\n\tamETIndex         ID = 9\n\tarIndex           ID = 10\n\tar001Index        ID = 11\n\tarAEIndex         ID = 12\n\tarBHIndex         ID = 13\n\tarDJIndex         ID = 14\n\tarDZIndex         ID = 15\n\tarEGIndex         ID = 16\n\tarEHIndex         ID = 17\n\tarERIndex         ID = 18\n\tarILIndex         ID = 19\n\tarIQIndex         ID = 20\n\tarJOIndex         ID = 21\n\tarKMIndex         ID = 22\n\tarKWIndex         ID = 23\n\tarLBIndex         ID = 24\n\tarLYIndex         ID = 25\n\tarMAIndex         ID = 26\n\tarMRIndex         ID = 27\n\tarOMIndex         ID = 28\n\tarPSIndex         ID = 29\n\tarQAIndex         ID = 30\n\tarSAIndex         ID = 31\n\tarSDIndex         ID = 32\n\tarSOIndex         ID = 33\n\tarSSIndex         ID = 34\n\tarSYIndex         ID = 35\n\tarTDIndex         ID = 36\n\tarTNIndex         ID = 37\n\tarYEIndex         ID = 38\n\tarsIndex          ID = 39\n\tasIndex           ID = 40\n\tasINIndex         ID = 41\n\tasaIndex          ID = 42\n\tasaTZIndex        ID = 43\n\tastIndex          ID = 44\n\tastESIndex        ID = 45\n\tazIndex           ID = 46\n\tazCyrlIndex       ID = 47\n\tazCyrlAZIndex     ID = 48\n\tazLatnIndex       ID = 49\n\tazLatnAZIndex     ID = 50\n\tbasIndex          ID = 51\n\tbasCMIndex        ID = 52\n\tbeIndex           ID = 53\n\tbeBYIndex         ID = 54\n\tbemIndex          ID = 55\n\tbemZMIndex        ID = 56\n\tbezIndex          ID = 57\n\tbezTZIndex        ID = 58\n\tbgIndex           ID = 59\n\tbgBGIndex         ID = 60\n\tbhIndex           ID = 61\n\tbmIndex           ID = 62\n\tbmMLIndex         ID = 63\n\tbnIndex           ID = 64\n\tbnBDIndex         ID = 65\n\tbnINIndex         ID = 66\n\tboIndex           ID = 67\n\tboCNIndex         ID = 68\n\tboINIndex         ID = 69\n\tbrIndex           ID = 70\n\tbrFRIndex         ID = 71\n\tbrxIndex          ID = 72\n\tbrxINIndex        ID = 73\n\tbsIndex           ID = 74\n\tbsCyrlIndex       ID = 75\n\tbsCyrlBAIndex     ID = 76\n\tbsLatnIndex       ID = 77\n\tbsLatnBAIndex     ID = 78\n\tcaIndex           ID = 79\n\tcaADIndex         ID = 80\n\tcaESIndex         ID = 81\n\tcaFRIndex         ID = 82\n\tcaITIndex         ID = 83\n\tccpIndex          ID = 84\n\tccpBDIndex        ID = 85\n\tccpINIndex        ID = 86\n\tceIndex           ID = 87\n\tceRUIndex         ID = 88\n\tcggIndex          ID = 89\n\tcggUGIndex        ID = 90\n\tchrIndex          ID = 91\n\tchrUSIndex        ID = 92\n\tckbIndex          ID = 93\n\tckbIQIndex        ID = 94\n\tckbIRIndex        ID = 95\n\tcsIndex           ID = 96\n\tcsCZIndex         ID = 97\n\tcuIndex           ID = 98\n\tcuRUIndex         ID = 99\n\tcyIndex           ID = 100\n\tcyGBIndex         ID = 101\n\tdaIndex           ID = 102\n\tdaDKIndex         ID = 103\n\tdaGLIndex         ID = 104\n\tdavIndex          ID = 105\n\tdavKEIndex        ID = 106\n\tdeIndex           ID = 107\n\tdeATIndex         ID = 108\n\tdeBEIndex         ID = 109\n\tdeCHIndex         ID = 110\n\tdeDEIndex         ID = 111\n\tdeITIndex         ID = 112\n\tdeLIIndex         ID = 113\n\tdeLUIndex         ID = 114\n\tdjeIndex          ID = 115\n\tdjeNEIndex        ID = 116\n\tdsbIndex          ID = 117\n\tdsbDEIndex        ID = 118\n\tduaIndex          ID = 119\n\tduaCMIndex        ID = 120\n\tdvIndex           ID = 121\n\tdyoIndex          ID = 122\n\tdyoSNIndex        ID = 123\n\tdzIndex           ID = 124\n\tdzBTIndex         ID = 125\n\tebuIndex          ID = 126\n\tebuKEIndex        ID = 127\n\teeIndex           ID = 128\n\teeGHIndex         ID = 129\n\teeTGIndex         ID = 130\n\telIndex           ID = 131\n\telCYIndex         ID = 132\n\telGRIndex         ID = 133\n\tenIndex           ID = 134\n\ten001Index        ID = 135\n\ten150Index        ID = 136\n\tenAGIndex         ID = 137\n\tenAIIndex         ID = 138\n\tenASIndex         ID = 139\n\tenATIndex         ID = 140\n\tenAUIndex         ID = 141\n\tenBBIndex         ID = 142\n\tenBEIndex         ID = 143\n\tenBIIndex         ID = 144\n\tenBMIndex         ID = 145\n\tenBSIndex         ID = 146\n\tenBWIndex         ID = 147\n\tenBZIndex         ID = 148\n\tenCAIndex         ID = 149\n\tenCCIndex         ID = 150\n\tenCHIndex         ID = 151\n\tenCKIndex         ID = 152\n\tenCMIndex         ID = 153\n\tenCXIndex         ID = 154\n\tenCYIndex         ID = 155\n\tenDEIndex         ID = 156\n\tenDGIndex         ID = 157\n\tenDKIndex         ID = 158\n\tenDMIndex         ID = 159\n\tenERIndex         ID = 160\n\tenFIIndex         ID = 161\n\tenFJIndex         ID = 162\n\tenFKIndex         ID = 163\n\tenFMIndex         ID = 164\n\tenGBIndex         ID = 165\n\tenGDIndex         ID = 166\n\tenGGIndex         ID = 167\n\tenGHIndex         ID = 168\n\tenGIIndex         ID = 169\n\tenGMIndex         ID = 170\n\tenGUIndex         ID = 171\n\tenGYIndex         ID = 172\n\tenHKIndex         ID = 173\n\tenIEIndex         ID = 174\n\tenILIndex         ID = 175\n\tenIMIndex         ID = 176\n\tenINIndex         ID = 177\n\tenIOIndex         ID = 178\n\tenJEIndex         ID = 179\n\tenJMIndex         ID = 180\n\tenKEIndex         ID = 181\n\tenKIIndex         ID = 182\n\tenKNIndex         ID = 183\n\tenKYIndex         ID = 184\n\tenLCIndex         ID = 185\n\tenLRIndex         ID = 186\n\tenLSIndex         ID = 187\n\tenMGIndex         ID = 188\n\tenMHIndex         ID = 189\n\tenMOIndex         ID = 190\n\tenMPIndex         ID = 191\n\tenMSIndex         ID = 192\n\tenMTIndex         ID = 193\n\tenMUIndex         ID = 194\n\tenMWIndex         ID = 195\n\tenMYIndex         ID = 196\n\tenNAIndex         ID = 197\n\tenNFIndex         ID = 198\n\tenNGIndex         ID = 199\n\tenNLIndex         ID = 200\n\tenNRIndex         ID = 201\n\tenNUIndex         ID = 202\n\tenNZIndex         ID = 203\n\tenPGIndex         ID = 204\n\tenPHIndex         ID = 205\n\tenPKIndex         ID = 206\n\tenPNIndex         ID = 207\n\tenPRIndex         ID = 208\n\tenPWIndex         ID = 209\n\tenRWIndex         ID = 210\n\tenSBIndex         ID = 211\n\tenSCIndex         ID = 212\n\tenSDIndex         ID = 213\n\tenSEIndex         ID = 214\n\tenSGIndex         ID = 215\n\tenSHIndex         ID = 216\n\tenSIIndex         ID = 217\n\tenSLIndex         ID = 218\n\tenSSIndex         ID = 219\n\tenSXIndex         ID = 220\n\tenSZIndex         ID = 221\n\tenTCIndex         ID = 222\n\tenTKIndex         ID = 223\n\tenTOIndex         ID = 224\n\tenTTIndex         ID = 225\n\tenTVIndex         ID = 226\n\tenTZIndex         ID = 227\n\tenUGIndex         ID = 228\n\tenUMIndex         ID = 229\n\tenUSIndex         ID = 230\n\tenVCIndex         ID = 231\n\tenVGIndex         ID = 232\n\tenVIIndex         ID = 233\n\tenVUIndex         ID = 234\n\tenWSIndex         ID = 235\n\tenZAIndex         ID = 236\n\tenZMIndex         ID = 237\n\tenZWIndex         ID = 238\n\teoIndex           ID = 239\n\teo001Index        ID = 240\n\tesIndex           ID = 241\n\tes419Index        ID = 242\n\tesARIndex         ID = 243\n\tesBOIndex         ID = 244\n\tesBRIndex         ID = 245\n\tesBZIndex         ID = 246\n\tesCLIndex         ID = 247\n\tesCOIndex         ID = 248\n\tesCRIndex         ID = 249\n\tesCUIndex         ID = 250\n\tesDOIndex         ID = 251\n\tesEAIndex         ID = 252\n\tesECIndex         ID = 253\n\tesESIndex         ID = 254\n\tesGQIndex         ID = 255\n\tesGTIndex         ID = 256\n\tesHNIndex         ID = 257\n\tesICIndex         ID = 258\n\tesMXIndex         ID = 259\n\tesNIIndex         ID = 260\n\tesPAIndex         ID = 261\n\tesPEIndex         ID = 262\n\tesPHIndex         ID = 263\n\tesPRIndex         ID = 264\n\tesPYIndex         ID = 265\n\tesSVIndex         ID = 266\n\tesUSIndex         ID = 267\n\tesUYIndex         ID = 268\n\tesVEIndex         ID = 269\n\tetIndex           ID = 270\n\tetEEIndex         ID = 271\n\teuIndex           ID = 272\n\teuESIndex         ID = 273\n\tewoIndex          ID = 274\n\tewoCMIndex        ID = 275\n\tfaIndex           ID = 276\n\tfaAFIndex         ID = 277\n\tfaIRIndex         ID = 278\n\tffIndex           ID = 279\n\tffCMIndex         ID = 280\n\tffGNIndex         ID = 281\n\tffMRIndex         ID = 282\n\tffSNIndex         ID = 283\n\tfiIndex           ID = 284\n\tfiFIIndex         ID = 285\n\tfilIndex          ID = 286\n\tfilPHIndex        ID = 287\n\tfoIndex           ID = 288\n\tfoDKIndex         ID = 289\n\tfoFOIndex         ID = 290\n\tfrIndex           ID = 291\n\tfrBEIndex         ID = 292\n\tfrBFIndex         ID = 293\n\tfrBIIndex         ID = 294\n\tfrBJIndex         ID = 295\n\tfrBLIndex         ID = 296\n\tfrCAIndex         ID = 297\n\tfrCDIndex         ID = 298\n\tfrCFIndex         ID = 299\n\tfrCGIndex         ID = 300\n\tfrCHIndex         ID = 301\n\tfrCIIndex         ID = 302\n\tfrCMIndex         ID = 303\n\tfrDJIndex         ID = 304\n\tfrDZIndex         ID = 305\n\tfrFRIndex         ID = 306\n\tfrGAIndex         ID = 307\n\tfrGFIndex         ID = 308\n\tfrGNIndex         ID = 309\n\tfrGPIndex         ID = 310\n\tfrGQIndex         ID = 311\n\tfrHTIndex         ID = 312\n\tfrKMIndex         ID = 313\n\tfrLUIndex         ID = 314\n\tfrMAIndex         ID = 315\n\tfrMCIndex         ID = 316\n\tfrMFIndex         ID = 317\n\tfrMGIndex         ID = 318\n\tfrMLIndex         ID = 319\n\tfrMQIndex         ID = 320\n\tfrMRIndex         ID = 321\n\tfrMUIndex         ID = 322\n\tfrNCIndex         ID = 323\n\tfrNEIndex         ID = 324\n\tfrPFIndex         ID = 325\n\tfrPMIndex         ID = 326\n\tfrREIndex         ID = 327\n\tfrRWIndex         ID = 328\n\tfrSCIndex         ID = 329\n\tfrSNIndex         ID = 330\n\tfrSYIndex         ID = 331\n\tfrTDIndex         ID = 332\n\tfrTGIndex         ID = 333\n\tfrTNIndex         ID = 334\n\tfrVUIndex         ID = 335\n\tfrWFIndex         ID = 336\n\tfrYTIndex         ID = 337\n\tfurIndex          ID = 338\n\tfurITIndex        ID = 339\n\tfyIndex           ID = 340\n\tfyNLIndex         ID = 341\n\tgaIndex           ID = 342\n\tgaIEIndex         ID = 343\n\tgdIndex           ID = 344\n\tgdGBIndex         ID = 345\n\tglIndex           ID = 346\n\tglESIndex         ID = 347\n\tgswIndex          ID = 348\n\tgswCHIndex        ID = 349\n\tgswFRIndex        ID = 350\n\tgswLIIndex        ID = 351\n\tguIndex           ID = 352\n\tguINIndex         ID = 353\n\tguwIndex          ID = 354\n\tguzIndex          ID = 355\n\tguzKEIndex        ID = 356\n\tgvIndex           ID = 357\n\tgvIMIndex         ID = 358\n\thaIndex           ID = 359\n\thaGHIndex         ID = 360\n\thaNEIndex         ID = 361\n\thaNGIndex         ID = 362\n\thawIndex          ID = 363\n\thawUSIndex        ID = 364\n\theIndex           ID = 365\n\theILIndex         ID = 366\n\thiIndex           ID = 367\n\thiINIndex         ID = 368\n\thrIndex           ID = 369\n\thrBAIndex         ID = 370\n\thrHRIndex         ID = 371\n\thsbIndex          ID = 372\n\thsbDEIndex        ID = 373\n\thuIndex           ID = 374\n\thuHUIndex         ID = 375\n\thyIndex           ID = 376\n\thyAMIndex         ID = 377\n\tidIndex           ID = 378\n\tidIDIndex         ID = 379\n\tigIndex           ID = 380\n\tigNGIndex         ID = 381\n\tiiIndex           ID = 382\n\tiiCNIndex         ID = 383\n\tinIndex           ID = 384\n\tioIndex           ID = 385\n\tisIndex           ID = 386\n\tisISIndex         ID = 387\n\titIndex           ID = 388\n\titCHIndex         ID = 389\n\titITIndex         ID = 390\n\titSMIndex         ID = 391\n\titVAIndex         ID = 392\n\tiuIndex           ID = 393\n\tiwIndex           ID = 394\n\tjaIndex           ID = 395\n\tjaJPIndex         ID = 396\n\tjboIndex          ID = 397\n\tjgoIndex          ID = 398\n\tjgoCMIndex        ID = 399\n\tjiIndex           ID = 400\n\tjmcIndex          ID = 401\n\tjmcTZIndex        ID = 402\n\tjvIndex           ID = 403\n\tjwIndex           ID = 404\n\tkaIndex           ID = 405\n\tkaGEIndex         ID = 406\n\tkabIndex          ID = 407\n\tkabDZIndex        ID = 408\n\tkajIndex          ID = 409\n\tkamIndex          ID = 410\n\tkamKEIndex        ID = 411\n\tkcgIndex          ID = 412\n\tkdeIndex          ID = 413\n\tkdeTZIndex        ID = 414\n\tkeaIndex          ID = 415\n\tkeaCVIndex        ID = 416\n\tkhqIndex          ID = 417\n\tkhqMLIndex        ID = 418\n\tkiIndex           ID = 419\n\tkiKEIndex         ID = 420\n\tkkIndex           ID = 421\n\tkkKZIndex         ID = 422\n\tkkjIndex          ID = 423\n\tkkjCMIndex        ID = 424\n\tklIndex           ID = 425\n\tklGLIndex         ID = 426\n\tklnIndex          ID = 427\n\tklnKEIndex        ID = 428\n\tkmIndex           ID = 429\n\tkmKHIndex         ID = 430\n\tknIndex           ID = 431\n\tknINIndex         ID = 432\n\tkoIndex           ID = 433\n\tkoKPIndex         ID = 434\n\tkoKRIndex         ID = 435\n\tkokIndex          ID = 436\n\tkokINIndex        ID = 437\n\tksIndex           ID = 438\n\tksINIndex         ID = 439\n\tksbIndex          ID = 440\n\tksbTZIndex        ID = 441\n\tksfIndex          ID = 442\n\tksfCMIndex        ID = 443\n\tkshIndex          ID = 444\n\tkshDEIndex        ID = 445\n\tkuIndex           ID = 446\n\tkwIndex           ID = 447\n\tkwGBIndex         ID = 448\n\tkyIndex           ID = 449\n\tkyKGIndex         ID = 450\n\tlagIndex          ID = 451\n\tlagTZIndex        ID = 452\n\tlbIndex           ID = 453\n\tlbLUIndex         ID = 454\n\tlgIndex           ID = 455\n\tlgUGIndex         ID = 456\n\tlktIndex          ID = 457\n\tlktUSIndex        ID = 458\n\tlnIndex           ID = 459\n\tlnAOIndex         ID = 460\n\tlnCDIndex         ID = 461\n\tlnCFIndex         ID = 462\n\tlnCGIndex         ID = 463\n\tloIndex           ID = 464\n\tloLAIndex         ID = 465\n\tlrcIndex          ID = 466\n\tlrcIQIndex        ID = 467\n\tlrcIRIndex        ID = 468\n\tltIndex           ID = 469\n\tltLTIndex         ID = 470\n\tluIndex           ID = 471\n\tluCDIndex         ID = 472\n\tluoIndex          ID = 473\n\tluoKEIndex        ID = 474\n\tluyIndex          ID = 475\n\tluyKEIndex        ID = 476\n\tlvIndex           ID = 477\n\tlvLVIndex         ID = 478\n\tmasIndex          ID = 479\n\tmasKEIndex        ID = 480\n\tmasTZIndex        ID = 481\n\tmerIndex          ID = 482\n\tmerKEIndex        ID = 483\n\tmfeIndex          ID = 484\n\tmfeMUIndex        ID = 485\n\tmgIndex           ID = 486\n\tmgMGIndex         ID = 487\n\tmghIndex          ID = 488\n\tmghMZIndex        ID = 489\n\tmgoIndex          ID = 490\n\tmgoCMIndex        ID = 491\n\tmkIndex           ID = 492\n\tmkMKIndex         ID = 493\n\tmlIndex           ID = 494\n\tmlINIndex         ID = 495\n\tmnIndex           ID = 496\n\tmnMNIndex         ID = 497\n\tmoIndex           ID = 498\n\tmrIndex           ID = 499\n\tmrINIndex         ID = 500\n\tmsIndex           ID = 501\n\tmsBNIndex         ID = 502\n\tmsMYIndex         ID = 503\n\tmsSGIndex         ID = 504\n\tmtIndex           ID = 505\n\tmtMTIndex         ID = 506\n\tmuaIndex          ID = 507\n\tmuaCMIndex        ID = 508\n\tmyIndex           ID = 509\n\tmyMMIndex         ID = 510\n\tmznIndex          ID = 511\n\tmznIRIndex        ID = 512\n\tnahIndex          ID = 513\n\tnaqIndex          ID = 514\n\tnaqNAIndex        ID = 515\n\tnbIndex           ID = 516\n\tnbNOIndex         ID = 517\n\tnbSJIndex         ID = 518\n\tndIndex           ID = 519\n\tndZWIndex         ID = 520\n\tndsIndex          ID = 521\n\tndsDEIndex        ID = 522\n\tndsNLIndex        ID = 523\n\tneIndex           ID = 524\n\tneINIndex         ID = 525\n\tneNPIndex         ID = 526\n\tnlIndex           ID = 527\n\tnlAWIndex         ID = 528\n\tnlBEIndex         ID = 529\n\tnlBQIndex         ID = 530\n\tnlCWIndex         ID = 531\n\tnlNLIndex         ID = 532\n\tnlSRIndex         ID = 533\n\tnlSXIndex         ID = 534\n\tnmgIndex          ID = 535\n\tnmgCMIndex        ID = 536\n\tnnIndex           ID = 537\n\tnnNOIndex         ID = 538\n\tnnhIndex          ID = 539\n\tnnhCMIndex        ID = 540\n\tnoIndex           ID = 541\n\tnqoIndex          ID = 542\n\tnrIndex           ID = 543\n\tnsoIndex          ID = 544\n\tnusIndex          ID = 545\n\tnusSSIndex        ID = 546\n\tnyIndex           ID = 547\n\tnynIndex          ID = 548\n\tnynUGIndex        ID = 549\n\tomIndex           ID = 550\n\tomETIndex         ID = 551\n\tomKEIndex         ID = 552\n\torIndex           ID = 553\n\torINIndex         ID = 554\n\tosIndex           ID = 555\n\tosGEIndex         ID = 556\n\tosRUIndex         ID = 557\n\tpaIndex           ID = 558\n\tpaArabIndex       ID = 559\n\tpaArabPKIndex     ID = 560\n\tpaGuruIndex       ID = 561\n\tpaGuruINIndex     ID = 562\n\tpapIndex          ID = 563\n\tplIndex           ID = 564\n\tplPLIndex         ID = 565\n\tprgIndex          ID = 566\n\tprg001Index       ID = 567\n\tpsIndex           ID = 568\n\tpsAFIndex         ID = 569\n\tptIndex           ID = 570\n\tptAOIndex         ID = 571\n\tptBRIndex         ID = 572\n\tptCHIndex         ID = 573\n\tptCVIndex         ID = 574\n\tptGQIndex         ID = 575\n\tptGWIndex         ID = 576\n\tptLUIndex         ID = 577\n\tptMOIndex         ID = 578\n\tptMZIndex         ID = 579\n\tptPTIndex         ID = 580\n\tptSTIndex         ID = 581\n\tptTLIndex         ID = 582\n\tquIndex           ID = 583\n\tquBOIndex         ID = 584\n\tquECIndex         ID = 585\n\tquPEIndex         ID = 586\n\trmIndex           ID = 587\n\trmCHIndex         ID = 588\n\trnIndex           ID = 589\n\trnBIIndex         ID = 590\n\troIndex           ID = 591\n\troMDIndex         ID = 592\n\troROIndex         ID = 593\n\trofIndex          ID = 594\n\trofTZIndex        ID = 595\n\truIndex           ID = 596\n\truBYIndex         ID = 597\n\truKGIndex         ID = 598\n\truKZIndex         ID = 599\n\truMDIndex         ID = 600\n\truRUIndex         ID = 601\n\truUAIndex         ID = 602\n\trwIndex           ID = 603\n\trwRWIndex         ID = 604\n\trwkIndex          ID = 605\n\trwkTZIndex        ID = 606\n\tsahIndex          ID = 607\n\tsahRUIndex        ID = 608\n\tsaqIndex          ID = 609\n\tsaqKEIndex        ID = 610\n\tsbpIndex          ID = 611\n\tsbpTZIndex        ID = 612\n\tsdIndex           ID = 613\n\tsdPKIndex         ID = 614\n\tsdhIndex          ID = 615\n\tseIndex           ID = 616\n\tseFIIndex         ID = 617\n\tseNOIndex         ID = 618\n\tseSEIndex         ID = 619\n\tsehIndex          ID = 620\n\tsehMZIndex        ID = 621\n\tsesIndex          ID = 622\n\tsesMLIndex        ID = 623\n\tsgIndex           ID = 624\n\tsgCFIndex         ID = 625\n\tshIndex           ID = 626\n\tshiIndex          ID = 627\n\tshiLatnIndex      ID = 628\n\tshiLatnMAIndex    ID = 629\n\tshiTfngIndex      ID = 630\n\tshiTfngMAIndex    ID = 631\n\tsiIndex           ID = 632\n\tsiLKIndex         ID = 633\n\tskIndex           ID = 634\n\tskSKIndex         ID = 635\n\tslIndex           ID = 636\n\tslSIIndex         ID = 637\n\tsmaIndex          ID = 638\n\tsmiIndex          ID = 639\n\tsmjIndex          ID = 640\n\tsmnIndex          ID = 641\n\tsmnFIIndex        ID = 642\n\tsmsIndex          ID = 643\n\tsnIndex           ID = 644\n\tsnZWIndex         ID = 645\n\tsoIndex           ID = 646\n\tsoDJIndex         ID = 647\n\tsoETIndex         ID = 648\n\tsoKEIndex         ID = 649\n\tsoSOIndex         ID = 650\n\tsqIndex           ID = 651\n\tsqALIndex         ID = 652\n\tsqMKIndex         ID = 653\n\tsqXKIndex         ID = 654\n\tsrIndex           ID = 655\n\tsrCyrlIndex       ID = 656\n\tsrCyrlBAIndex     ID = 657\n\tsrCyrlMEIndex     ID = 658\n\tsrCyrlRSIndex     ID = 659\n\tsrCyrlXKIndex     ID = 660\n\tsrLatnIndex       ID = 661\n\tsrLatnBAIndex     ID = 662\n\tsrLatnMEIndex     ID = 663\n\tsrLatnRSIndex     ID = 664\n\tsrLatnXKIndex     ID = 665\n\tssIndex           ID = 666\n\tssyIndex          ID = 667\n\tstIndex           ID = 668\n\tsvIndex           ID = 669\n\tsvAXIndex         ID = 670\n\tsvFIIndex         ID = 671\n\tsvSEIndex         ID = 672\n\tswIndex           ID = 673\n\tswCDIndex         ID = 674\n\tswKEIndex         ID = 675\n\tswTZIndex         ID = 676\n\tswUGIndex         ID = 677\n\tsyrIndex          ID = 678\n\ttaIndex           ID = 679\n\ttaINIndex         ID = 680\n\ttaLKIndex         ID = 681\n\ttaMYIndex         ID = 682\n\ttaSGIndex         ID = 683\n\tteIndex           ID = 684\n\tteINIndex         ID = 685\n\tteoIndex          ID = 686\n\tteoKEIndex        ID = 687\n\tteoUGIndex        ID = 688\n\ttgIndex           ID = 689\n\ttgTJIndex         ID = 690\n\tthIndex           ID = 691\n\tthTHIndex         ID = 692\n\ttiIndex           ID = 693\n\ttiERIndex         ID = 694\n\ttiETIndex         ID = 695\n\ttigIndex          ID = 696\n\ttkIndex           ID = 697\n\ttkTMIndex         ID = 698\n\ttlIndex           ID = 699\n\ttnIndex           ID = 700\n\ttoIndex           ID = 701\n\ttoTOIndex         ID = 702\n\ttrIndex           ID = 703\n\ttrCYIndex         ID = 704\n\ttrTRIndex         ID = 705\n\ttsIndex           ID = 706\n\tttIndex           ID = 707\n\tttRUIndex         ID = 708\n\ttwqIndex          ID = 709\n\ttwqNEIndex        ID = 710\n\ttzmIndex          ID = 711\n\ttzmMAIndex        ID = 712\n\tugIndex           ID = 713\n\tugCNIndex         ID = 714\n\tukIndex           ID = 715\n\tukUAIndex         ID = 716\n\turIndex           ID = 717\n\turINIndex         ID = 718\n\turPKIndex         ID = 719\n\tuzIndex           ID = 720\n\tuzArabIndex       ID = 721\n\tuzArabAFIndex     ID = 722\n\tuzCyrlIndex       ID = 723\n\tuzCyrlUZIndex     ID = 724\n\tuzLatnIndex       ID = 725\n\tuzLatnUZIndex     ID = 726\n\tvaiIndex          ID = 727\n\tvaiLatnIndex      ID = 728\n\tvaiLatnLRIndex    ID = 729\n\tvaiVaiiIndex      ID = 730\n\tvaiVaiiLRIndex    ID = 731\n\tveIndex           ID = 732\n\tviIndex           ID = 733\n\tviVNIndex         ID = 734\n\tvoIndex           ID = 735\n\tvo001Index        ID = 736\n\tvunIndex          ID = 737\n\tvunTZIndex        ID = 738\n\twaIndex           ID = 739\n\twaeIndex          ID = 740\n\twaeCHIndex        ID = 741\n\twoIndex           ID = 742\n\twoSNIndex         ID = 743\n\txhIndex           ID = 744\n\txogIndex          ID = 745\n\txogUGIndex        ID = 746\n\tyavIndex          ID = 747\n\tyavCMIndex        ID = 748\n\tyiIndex           ID = 749\n\tyi001Index        ID = 750\n\tyoIndex           ID = 751\n\tyoBJIndex         ID = 752\n\tyoNGIndex         ID = 753\n\tyueIndex          ID = 754\n\tyueHansIndex      ID = 755\n\tyueHansCNIndex    ID = 756\n\tyueHantIndex      ID = 757\n\tyueHantHKIndex    ID = 758\n\tzghIndex          ID = 759\n\tzghMAIndex        ID = 760\n\tzhIndex           ID = 761\n\tzhHansIndex       ID = 762\n\tzhHansCNIndex     ID = 763\n\tzhHansHKIndex     ID = 764\n\tzhHansMOIndex     ID = 765\n\tzhHansSGIndex     ID = 766\n\tzhHantIndex       ID = 767\n\tzhHantHKIndex     ID = 768\n\tzhHantMOIndex     ID = 769\n\tzhHantTWIndex     ID = 770\n\tzuIndex           ID = 771\n\tzuZAIndex         ID = 772\n\tcaESvalenciaIndex ID = 773\n\tenUSuvaposixIndex ID = 774\n)\n\nvar coreTags = []language.CompactCoreInfo{ // 773 elements\n\t// Entry 0 - 1F\n\t0x00000000, 0x01600000, 0x016000d2, 0x01600161,\n\t0x01c00000, 0x01c00052, 0x02100000, 0x02100080,\n\t0x02700000, 0x0270006f, 0x03a00000, 0x03a00001,\n\t0x03a00023, 0x03a00039, 0x03a00062, 0x03a00067,\n\t0x03a0006b, 0x03a0006c, 0x03a0006d, 0x03a00097,\n\t0x03a0009b, 0x03a000a1, 0x03a000a8, 0x03a000ac,\n\t0x03a000b0, 0x03a000b9, 0x03a000ba, 0x03a000c9,\n\t0x03a000e1, 0x03a000ed, 0x03a000f3, 0x03a00108,\n\t// Entry 20 - 3F\n\t0x03a0010b, 0x03a00115, 0x03a00117, 0x03a0011c,\n\t0x03a00120, 0x03a00128, 0x03a0015e, 0x04000000,\n\t0x04300000, 0x04300099, 0x04400000, 0x0440012f,\n\t0x04800000, 0x0480006e, 0x05800000, 0x0581f000,\n\t0x0581f032, 0x05857000, 0x05857032, 0x05e00000,\n\t0x05e00052, 0x07100000, 0x07100047, 0x07500000,\n\t0x07500162, 0x07900000, 0x0790012f, 0x07e00000,\n\t0x07e00038, 0x08200000, 0x0a000000, 0x0a0000c3,\n\t// Entry 40 - 5F\n\t0x0a500000, 0x0a500035, 0x0a500099, 0x0a900000,\n\t0x0a900053, 0x0a900099, 0x0b200000, 0x0b200078,\n\t0x0b500000, 0x0b500099, 0x0b700000, 0x0b71f000,\n\t0x0b71f033, 0x0b757000, 0x0b757033, 0x0d700000,\n\t0x0d700022, 0x0d70006e, 0x0d700078, 0x0d70009e,\n\t0x0db00000, 0x0db00035, 0x0db00099, 0x0dc00000,\n\t0x0dc00106, 0x0df00000, 0x0df00131, 0x0e500000,\n\t0x0e500135, 0x0e900000, 0x0e90009b, 0x0e90009c,\n\t// Entry 60 - 7F\n\t0x0fa00000, 0x0fa0005e, 0x0fe00000, 0x0fe00106,\n\t0x10000000, 0x1000007b, 0x10100000, 0x10100063,\n\t0x10100082, 0x10800000, 0x108000a4, 0x10d00000,\n\t0x10d0002e, 0x10d00036, 0x10d0004e, 0x10d00060,\n\t0x10d0009e, 0x10d000b2, 0x10d000b7, 0x11700000,\n\t0x117000d4, 0x11f00000, 0x11f00060, 0x12400000,\n\t0x12400052, 0x12800000, 0x12b00000, 0x12b00114,\n\t0x12d00000, 0x12d00043, 0x12f00000, 0x12f000a4,\n\t// Entry 80 - 9F\n\t0x13000000, 0x13000080, 0x13000122, 0x13600000,\n\t0x1360005d, 0x13600087, 0x13900000, 0x13900001,\n\t0x1390001a, 0x13900025, 0x13900026, 0x1390002d,\n\t0x1390002e, 0x1390002f, 0x13900034, 0x13900036,\n\t0x1390003a, 0x1390003d, 0x13900042, 0x13900046,\n\t0x13900048, 0x13900049, 0x1390004a, 0x1390004e,\n\t0x13900050, 0x13900052, 0x1390005c, 0x1390005d,\n\t0x13900060, 0x13900061, 0x13900063, 0x13900064,\n\t// Entry A0 - BF\n\t0x1390006d, 0x13900072, 0x13900073, 0x13900074,\n\t0x13900075, 0x1390007b, 0x1390007c, 0x1390007f,\n\t0x13900080, 0x13900081, 0x13900083, 0x1390008a,\n\t0x1390008c, 0x1390008d, 0x13900096, 0x13900097,\n\t0x13900098, 0x13900099, 0x1390009a, 0x1390009f,\n\t0x139000a0, 0x139000a4, 0x139000a7, 0x139000a9,\n\t0x139000ad, 0x139000b1, 0x139000b4, 0x139000b5,\n\t0x139000bf, 0x139000c0, 0x139000c6, 0x139000c7,\n\t// Entry C0 - DF\n\t0x139000ca, 0x139000cb, 0x139000cc, 0x139000ce,\n\t0x139000d0, 0x139000d2, 0x139000d5, 0x139000d6,\n\t0x139000d9, 0x139000dd, 0x139000df, 0x139000e0,\n\t0x139000e6, 0x139000e7, 0x139000e8, 0x139000eb,\n\t0x139000ec, 0x139000f0, 0x13900107, 0x13900109,\n\t0x1390010a, 0x1390010b, 0x1390010c, 0x1390010d,\n\t0x1390010e, 0x1390010f, 0x13900112, 0x13900117,\n\t0x1390011b, 0x1390011d, 0x1390011f, 0x13900125,\n\t// Entry E0 - FF\n\t0x13900129, 0x1390012c, 0x1390012d, 0x1390012f,\n\t0x13900131, 0x13900133, 0x13900135, 0x13900139,\n\t0x1390013c, 0x1390013d, 0x1390013f, 0x13900142,\n\t0x13900161, 0x13900162, 0x13900164, 0x13c00000,\n\t0x13c00001, 0x13e00000, 0x13e0001f, 0x13e0002c,\n\t0x13e0003f, 0x13e00041, 0x13e00048, 0x13e00051,\n\t0x13e00054, 0x13e00056, 0x13e00059, 0x13e00065,\n\t0x13e00068, 0x13e00069, 0x13e0006e, 0x13e00086,\n\t// Entry 100 - 11F\n\t0x13e00089, 0x13e0008f, 0x13e00094, 0x13e000cf,\n\t0x13e000d8, 0x13e000e2, 0x13e000e4, 0x13e000e7,\n\t0x13e000ec, 0x13e000f1, 0x13e0011a, 0x13e00135,\n\t0x13e00136, 0x13e0013b, 0x14000000, 0x1400006a,\n\t0x14500000, 0x1450006e, 0x14600000, 0x14600052,\n\t0x14800000, 0x14800024, 0x1480009c, 0x14e00000,\n\t0x14e00052, 0x14e00084, 0x14e000c9, 0x14e00114,\n\t0x15100000, 0x15100072, 0x15300000, 0x153000e7,\n\t// Entry 120 - 13F\n\t0x15800000, 0x15800063, 0x15800076, 0x15e00000,\n\t0x15e00036, 0x15e00037, 0x15e0003a, 0x15e0003b,\n\t0x15e0003c, 0x15e00049, 0x15e0004b, 0x15e0004c,\n\t0x15e0004d, 0x15e0004e, 0x15e0004f, 0x15e00052,\n\t0x15e00062, 0x15e00067, 0x15e00078, 0x15e0007a,\n\t0x15e0007e, 0x15e00084, 0x15e00085, 0x15e00086,\n\t0x15e00091, 0x15e000a8, 0x15e000b7, 0x15e000ba,\n\t0x15e000bb, 0x15e000be, 0x15e000bf, 0x15e000c3,\n\t// Entry 140 - 15F\n\t0x15e000c8, 0x15e000c9, 0x15e000cc, 0x15e000d3,\n\t0x15e000d4, 0x15e000e5, 0x15e000ea, 0x15e00102,\n\t0x15e00107, 0x15e0010a, 0x15e00114, 0x15e0011c,\n\t0x15e00120, 0x15e00122, 0x15e00128, 0x15e0013f,\n\t0x15e00140, 0x15e0015f, 0x16900000, 0x1690009e,\n\t0x16d00000, 0x16d000d9, 0x16e00000, 0x16e00096,\n\t0x17e00000, 0x17e0007b, 0x19000000, 0x1900006e,\n\t0x1a300000, 0x1a30004e, 0x1a300078, 0x1a3000b2,\n\t// Entry 160 - 17F\n\t0x1a400000, 0x1a400099, 0x1a900000, 0x1ab00000,\n\t0x1ab000a4, 0x1ac00000, 0x1ac00098, 0x1b400000,\n\t0x1b400080, 0x1b4000d4, 0x1b4000d6, 0x1b800000,\n\t0x1b800135, 0x1bc00000, 0x1bc00097, 0x1be00000,\n\t0x1be00099, 0x1d100000, 0x1d100033, 0x1d100090,\n\t0x1d200000, 0x1d200060, 0x1d500000, 0x1d500092,\n\t0x1d700000, 0x1d700028, 0x1e100000, 0x1e100095,\n\t0x1e700000, 0x1e7000d6, 0x1ea00000, 0x1ea00053,\n\t// Entry 180 - 19F\n\t0x1f300000, 0x1f500000, 0x1f800000, 0x1f80009d,\n\t0x1f900000, 0x1f90004e, 0x1f90009e, 0x1f900113,\n\t0x1f900138, 0x1fa00000, 0x1fb00000, 0x20000000,\n\t0x200000a2, 0x20300000, 0x20700000, 0x20700052,\n\t0x20800000, 0x20a00000, 0x20a0012f, 0x20e00000,\n\t0x20f00000, 0x21000000, 0x2100007d, 0x21200000,\n\t0x21200067, 0x21600000, 0x21700000, 0x217000a4,\n\t0x21f00000, 0x22300000, 0x2230012f, 0x22700000,\n\t// Entry 1A0 - 1BF\n\t0x2270005a, 0x23400000, 0x234000c3, 0x23900000,\n\t0x239000a4, 0x24200000, 0x242000ae, 0x24400000,\n\t0x24400052, 0x24500000, 0x24500082, 0x24600000,\n\t0x246000a4, 0x24a00000, 0x24a000a6, 0x25100000,\n\t0x25100099, 0x25400000, 0x254000aa, 0x254000ab,\n\t0x25600000, 0x25600099, 0x26a00000, 0x26a00099,\n\t0x26b00000, 0x26b0012f, 0x26d00000, 0x26d00052,\n\t0x26e00000, 0x26e00060, 0x27400000, 0x28100000,\n\t// Entry 1C0 - 1DF\n\t0x2810007b, 0x28a00000, 0x28a000a5, 0x29100000,\n\t0x2910012f, 0x29500000, 0x295000b7, 0x2a300000,\n\t0x2a300131, 0x2af00000, 0x2af00135, 0x2b500000,\n\t0x2b50002a, 0x2b50004b, 0x2b50004c, 0x2b50004d,\n\t0x2b800000, 0x2b8000af, 0x2bf00000, 0x2bf0009b,\n\t0x2bf0009c, 0x2c000000, 0x2c0000b6, 0x2c200000,\n\t0x2c20004b, 0x2c400000, 0x2c4000a4, 0x2c500000,\n\t0x2c5000a4, 0x2c700000, 0x2c7000b8, 0x2d100000,\n\t// Entry 1E0 - 1FF\n\t0x2d1000a4, 0x2d10012f, 0x2e900000, 0x2e9000a4,\n\t0x2ed00000, 0x2ed000cc, 0x2f100000, 0x2f1000bf,\n\t0x2f200000, 0x2f2000d1, 0x2f400000, 0x2f400052,\n\t0x2ff00000, 0x2ff000c2, 0x30400000, 0x30400099,\n\t0x30b00000, 0x30b000c5, 0x31000000, 0x31b00000,\n\t0x31b00099, 0x31f00000, 0x31f0003e, 0x31f000d0,\n\t0x31f0010d, 0x32000000, 0x320000cb, 0x32500000,\n\t0x32500052, 0x33100000, 0x331000c4, 0x33a00000,\n\t// Entry 200 - 21F\n\t0x33a0009c, 0x34100000, 0x34500000, 0x345000d2,\n\t0x34700000, 0x347000da, 0x34700110, 0x34e00000,\n\t0x34e00164, 0x35000000, 0x35000060, 0x350000d9,\n\t0x35100000, 0x35100099, 0x351000db, 0x36700000,\n\t0x36700030, 0x36700036, 0x36700040, 0x3670005b,\n\t0x367000d9, 0x36700116, 0x3670011b, 0x36800000,\n\t0x36800052, 0x36a00000, 0x36a000da, 0x36c00000,\n\t0x36c00052, 0x36f00000, 0x37500000, 0x37600000,\n\t// Entry 220 - 23F\n\t0x37a00000, 0x38000000, 0x38000117, 0x38700000,\n\t0x38900000, 0x38900131, 0x39000000, 0x3900006f,\n\t0x390000a4, 0x39500000, 0x39500099, 0x39800000,\n\t0x3980007d, 0x39800106, 0x39d00000, 0x39d05000,\n\t0x39d050e8, 0x39d33000, 0x39d33099, 0x3a100000,\n\t0x3b300000, 0x3b3000e9, 0x3bd00000, 0x3bd00001,\n\t0x3be00000, 0x3be00024, 0x3c000000, 0x3c00002a,\n\t0x3c000041, 0x3c00004e, 0x3c00005a, 0x3c000086,\n\t// Entry 240 - 25F\n\t0x3c00008b, 0x3c0000b7, 0x3c0000c6, 0x3c0000d1,\n\t0x3c0000ee, 0x3c000118, 0x3c000126, 0x3c400000,\n\t0x3c40003f, 0x3c400069, 0x3c4000e4, 0x3d400000,\n\t0x3d40004e, 0x3d900000, 0x3d90003a, 0x3dc00000,\n\t0x3dc000bc, 0x3dc00104, 0x3de00000, 0x3de0012f,\n\t0x3e200000, 0x3e200047, 0x3e2000a5, 0x3e2000ae,\n\t0x3e2000bc, 0x3e200106, 0x3e200130, 0x3e500000,\n\t0x3e500107, 0x3e600000, 0x3e60012f, 0x3eb00000,\n\t// Entry 260 - 27F\n\t0x3eb00106, 0x3ec00000, 0x3ec000a4, 0x3f300000,\n\t0x3f30012f, 0x3fa00000, 0x3fa000e8, 0x3fc00000,\n\t0x3fd00000, 0x3fd00072, 0x3fd000da, 0x3fd0010c,\n\t0x3ff00000, 0x3ff000d1, 0x40100000, 0x401000c3,\n\t0x40200000, 0x4020004c, 0x40700000, 0x40800000,\n\t0x40857000, 0x408570ba, 0x408dc000, 0x408dc0ba,\n\t0x40c00000, 0x40c000b3, 0x41200000, 0x41200111,\n\t0x41600000, 0x4160010f, 0x41c00000, 0x41d00000,\n\t// Entry 280 - 29F\n\t0x41e00000, 0x41f00000, 0x41f00072, 0x42200000,\n\t0x42300000, 0x42300164, 0x42900000, 0x42900062,\n\t0x4290006f, 0x429000a4, 0x42900115, 0x43100000,\n\t0x43100027, 0x431000c2, 0x4310014d, 0x43200000,\n\t0x4321f000, 0x4321f033, 0x4321f0bd, 0x4321f105,\n\t0x4321f14d, 0x43257000, 0x43257033, 0x432570bd,\n\t0x43257105, 0x4325714d, 0x43700000, 0x43a00000,\n\t0x43b00000, 0x44400000, 0x44400031, 0x44400072,\n\t// Entry 2A0 - 2BF\n\t0x4440010c, 0x44500000, 0x4450004b, 0x445000a4,\n\t0x4450012f, 0x44500131, 0x44e00000, 0x45000000,\n\t0x45000099, 0x450000b3, 0x450000d0, 0x4500010d,\n\t0x46100000, 0x46100099, 0x46400000, 0x464000a4,\n\t0x46400131, 0x46700000, 0x46700124, 0x46b00000,\n\t0x46b00123, 0x46f00000, 0x46f0006d, 0x46f0006f,\n\t0x47100000, 0x47600000, 0x47600127, 0x47a00000,\n\t0x48000000, 0x48200000, 0x48200129, 0x48a00000,\n\t// Entry 2C0 - 2DF\n\t0x48a0005d, 0x48a0012b, 0x48e00000, 0x49400000,\n\t0x49400106, 0x4a400000, 0x4a4000d4, 0x4a900000,\n\t0x4a9000ba, 0x4ac00000, 0x4ac00053, 0x4ae00000,\n\t0x4ae00130, 0x4b400000, 0x4b400099, 0x4b4000e8,\n\t0x4bc00000, 0x4bc05000, 0x4bc05024, 0x4bc1f000,\n\t0x4bc1f137, 0x4bc57000, 0x4bc57137, 0x4be00000,\n\t0x4be57000, 0x4be570b4, 0x4bee3000, 0x4bee30b4,\n\t0x4c000000, 0x4c300000, 0x4c30013e, 0x4c900000,\n\t// Entry 2E0 - 2FF\n\t0x4c900001, 0x4cc00000, 0x4cc0012f, 0x4ce00000,\n\t0x4cf00000, 0x4cf0004e, 0x4e500000, 0x4e500114,\n\t0x4f200000, 0x4fb00000, 0x4fb00131, 0x50900000,\n\t0x50900052, 0x51200000, 0x51200001, 0x51800000,\n\t0x5180003b, 0x518000d6, 0x51f00000, 0x51f38000,\n\t0x51f38053, 0x51f39000, 0x51f3908d, 0x52800000,\n\t0x528000ba, 0x52900000, 0x52938000, 0x52938053,\n\t0x5293808d, 0x529380c6, 0x5293810d, 0x52939000,\n\t// Entry 300 - 31F\n\t0x5293908d, 0x529390c6, 0x5293912e, 0x52f00000,\n\t0x52f00161,\n} // Size: 3116 bytes\n\nconst specialTagsStr string = \"ca-ES-valencia en-US-u-va-posix\"\n\n// Total table size 3147 bytes (3KiB); checksum: F4E57D15\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/compact/tags.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage compact\n\nvar (\n\tund = Tag{}\n\n\tUnd Tag = Tag{}\n\n\tAfrikaans            Tag = Tag{language: afIndex, locale: afIndex}\n\tAmharic              Tag = Tag{language: amIndex, locale: amIndex}\n\tArabic               Tag = Tag{language: arIndex, locale: arIndex}\n\tModernStandardArabic Tag = Tag{language: ar001Index, locale: ar001Index}\n\tAzerbaijani          Tag = Tag{language: azIndex, locale: azIndex}\n\tBulgarian            Tag = Tag{language: bgIndex, locale: bgIndex}\n\tBengali              Tag = Tag{language: bnIndex, locale: bnIndex}\n\tCatalan              Tag = Tag{language: caIndex, locale: caIndex}\n\tCzech                Tag = Tag{language: csIndex, locale: csIndex}\n\tDanish               Tag = Tag{language: daIndex, locale: daIndex}\n\tGerman               Tag = Tag{language: deIndex, locale: deIndex}\n\tGreek                Tag = Tag{language: elIndex, locale: elIndex}\n\tEnglish              Tag = Tag{language: enIndex, locale: enIndex}\n\tAmericanEnglish      Tag = Tag{language: enUSIndex, locale: enUSIndex}\n\tBritishEnglish       Tag = Tag{language: enGBIndex, locale: enGBIndex}\n\tSpanish              Tag = Tag{language: esIndex, locale: esIndex}\n\tEuropeanSpanish      Tag = Tag{language: esESIndex, locale: esESIndex}\n\tLatinAmericanSpanish Tag = Tag{language: es419Index, locale: es419Index}\n\tEstonian             Tag = Tag{language: etIndex, locale: etIndex}\n\tPersian              Tag = Tag{language: faIndex, locale: faIndex}\n\tFinnish              Tag = Tag{language: fiIndex, locale: fiIndex}\n\tFilipino             Tag = Tag{language: filIndex, locale: filIndex}\n\tFrench               Tag = Tag{language: frIndex, locale: frIndex}\n\tCanadianFrench       Tag = Tag{language: frCAIndex, locale: frCAIndex}\n\tGujarati             Tag = Tag{language: guIndex, locale: guIndex}\n\tHebrew               Tag = Tag{language: heIndex, locale: heIndex}\n\tHindi                Tag = Tag{language: hiIndex, locale: hiIndex}\n\tCroatian             Tag = Tag{language: hrIndex, locale: hrIndex}\n\tHungarian            Tag = Tag{language: huIndex, locale: huIndex}\n\tArmenian             Tag = Tag{language: hyIndex, locale: hyIndex}\n\tIndonesian           Tag = Tag{language: idIndex, locale: idIndex}\n\tIcelandic            Tag = Tag{language: isIndex, locale: isIndex}\n\tItalian              Tag = Tag{language: itIndex, locale: itIndex}\n\tJapanese             Tag = Tag{language: jaIndex, locale: jaIndex}\n\tGeorgian             Tag = Tag{language: kaIndex, locale: kaIndex}\n\tKazakh               Tag = Tag{language: kkIndex, locale: kkIndex}\n\tKhmer                Tag = Tag{language: kmIndex, locale: kmIndex}\n\tKannada              Tag = Tag{language: knIndex, locale: knIndex}\n\tKorean               Tag = Tag{language: koIndex, locale: koIndex}\n\tKirghiz              Tag = Tag{language: kyIndex, locale: kyIndex}\n\tLao                  Tag = Tag{language: loIndex, locale: loIndex}\n\tLithuanian           Tag = Tag{language: ltIndex, locale: ltIndex}\n\tLatvian              Tag = Tag{language: lvIndex, locale: lvIndex}\n\tMacedonian           Tag = Tag{language: mkIndex, locale: mkIndex}\n\tMalayalam            Tag = Tag{language: mlIndex, locale: mlIndex}\n\tMongolian            Tag = Tag{language: mnIndex, locale: mnIndex}\n\tMarathi              Tag = Tag{language: mrIndex, locale: mrIndex}\n\tMalay                Tag = Tag{language: msIndex, locale: msIndex}\n\tBurmese              Tag = Tag{language: myIndex, locale: myIndex}\n\tNepali               Tag = Tag{language: neIndex, locale: neIndex}\n\tDutch                Tag = Tag{language: nlIndex, locale: nlIndex}\n\tNorwegian            Tag = Tag{language: noIndex, locale: noIndex}\n\tPunjabi              Tag = Tag{language: paIndex, locale: paIndex}\n\tPolish               Tag = Tag{language: plIndex, locale: plIndex}\n\tPortuguese           Tag = Tag{language: ptIndex, locale: ptIndex}\n\tBrazilianPortuguese  Tag = Tag{language: ptBRIndex, locale: ptBRIndex}\n\tEuropeanPortuguese   Tag = Tag{language: ptPTIndex, locale: ptPTIndex}\n\tRomanian             Tag = Tag{language: roIndex, locale: roIndex}\n\tRussian              Tag = Tag{language: ruIndex, locale: ruIndex}\n\tSinhala              Tag = Tag{language: siIndex, locale: siIndex}\n\tSlovak               Tag = Tag{language: skIndex, locale: skIndex}\n\tSlovenian            Tag = Tag{language: slIndex, locale: slIndex}\n\tAlbanian             Tag = Tag{language: sqIndex, locale: sqIndex}\n\tSerbian              Tag = Tag{language: srIndex, locale: srIndex}\n\tSerbianLatin         Tag = Tag{language: srLatnIndex, locale: srLatnIndex}\n\tSwedish              Tag = Tag{language: svIndex, locale: svIndex}\n\tSwahili              Tag = Tag{language: swIndex, locale: swIndex}\n\tTamil                Tag = Tag{language: taIndex, locale: taIndex}\n\tTelugu               Tag = Tag{language: teIndex, locale: teIndex}\n\tThai                 Tag = Tag{language: thIndex, locale: thIndex}\n\tTurkish              Tag = Tag{language: trIndex, locale: trIndex}\n\tUkrainian            Tag = Tag{language: ukIndex, locale: ukIndex}\n\tUrdu                 Tag = Tag{language: urIndex, locale: urIndex}\n\tUzbek                Tag = Tag{language: uzIndex, locale: uzIndex}\n\tVietnamese           Tag = Tag{language: viIndex, locale: viIndex}\n\tChinese              Tag = Tag{language: zhIndex, locale: zhIndex}\n\tSimplifiedChinese    Tag = Tag{language: zhHansIndex, locale: zhHansIndex}\n\tTraditionalChinese   Tag = Tag{language: zhHantIndex, locale: zhHantIndex}\n\tZulu                 Tag = Tag{language: zuIndex, locale: zuIndex}\n)\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/compact.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\n// CompactCoreInfo is a compact integer with the three core tags encoded.\ntype CompactCoreInfo uint32\n\n// GetCompactCore generates a uint32 value that is guaranteed to be unique for\n// different language, region, and script values.\nfunc GetCompactCore(t Tag) (cci CompactCoreInfo, ok bool) {\n\tif t.LangID > langNoIndexOffset {\n\t\treturn 0, false\n\t}\n\tcci |= CompactCoreInfo(t.LangID) << (8 + 12)\n\tcci |= CompactCoreInfo(t.ScriptID) << 12\n\tcci |= CompactCoreInfo(t.RegionID)\n\treturn cci, true\n}\n\n// Tag generates a tag from c.\nfunc (c CompactCoreInfo) Tag() Tag {\n\treturn Tag{\n\t\tLangID:   Language(c >> 20),\n\t\tRegionID: Region(c & 0x3ff),\n\t\tScriptID: Script(c>>12) & 0xff,\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/compose.go",
    "content": "// Copyright 2018 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\nimport (\n\t\"sort\"\n\t\"strings\"\n)\n\n// A Builder allows constructing a Tag from individual components.\n// Its main user is Compose in the top-level language package.\ntype Builder struct {\n\tTag Tag\n\n\tprivate    string // the x extension\n\tvariants   []string\n\textensions []string\n}\n\n// Make returns a new Tag from the current settings.\nfunc (b *Builder) Make() Tag {\n\tt := b.Tag\n\n\tif len(b.extensions) > 0 || len(b.variants) > 0 {\n\t\tsort.Sort(sortVariants(b.variants))\n\t\tsort.Strings(b.extensions)\n\n\t\tif b.private != \"\" {\n\t\t\tb.extensions = append(b.extensions, b.private)\n\t\t}\n\t\tn := maxCoreSize + tokenLen(b.variants...) + tokenLen(b.extensions...)\n\t\tbuf := make([]byte, n)\n\t\tp := t.genCoreBytes(buf)\n\t\tt.pVariant = byte(p)\n\t\tp += appendTokens(buf[p:], b.variants...)\n\t\tt.pExt = uint16(p)\n\t\tp += appendTokens(buf[p:], b.extensions...)\n\t\tt.str = string(buf[:p])\n\t\t// We may not always need to remake the string, but when or when not\n\t\t// to do so is rather tricky.\n\t\tscan := makeScanner(buf[:p])\n\t\tt, _ = parse(&scan, \"\")\n\t\treturn t\n\n\t} else if b.private != \"\" {\n\t\tt.str = b.private\n\t\tt.RemakeString()\n\t}\n\treturn t\n}\n\n// SetTag copies all the settings from a given Tag. Any previously set values\n// are discarded.\nfunc (b *Builder) SetTag(t Tag) {\n\tb.Tag.LangID = t.LangID\n\tb.Tag.RegionID = t.RegionID\n\tb.Tag.ScriptID = t.ScriptID\n\t// TODO: optimize\n\tb.variants = b.variants[:0]\n\tif variants := t.Variants(); variants != \"\" {\n\t\tfor _, vr := range strings.Split(variants[1:], \"-\") {\n\t\t\tb.variants = append(b.variants, vr)\n\t\t}\n\t}\n\tb.extensions, b.private = b.extensions[:0], \"\"\n\tfor _, e := range t.Extensions() {\n\t\tb.AddExt(e)\n\t}\n}\n\n// AddExt adds extension e to the tag. e must be a valid extension as returned\n// by Tag.Extension. If the extension already exists, it will be discarded,\n// except for a -u extension, where non-existing key-type pairs will added.\nfunc (b *Builder) AddExt(e string) {\n\tif e[0] == 'x' {\n\t\tif b.private == \"\" {\n\t\t\tb.private = e\n\t\t}\n\t\treturn\n\t}\n\tfor i, s := range b.extensions {\n\t\tif s[0] == e[0] {\n\t\t\tif e[0] == 'u' {\n\t\t\t\tb.extensions[i] += e[1:]\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t}\n\tb.extensions = append(b.extensions, e)\n}\n\n// SetExt sets the extension e to the tag. e must be a valid extension as\n// returned by Tag.Extension. If the extension already exists, it will be\n// overwritten, except for a -u extension, where the individual key-type pairs\n// will be set.\nfunc (b *Builder) SetExt(e string) {\n\tif e[0] == 'x' {\n\t\tb.private = e\n\t\treturn\n\t}\n\tfor i, s := range b.extensions {\n\t\tif s[0] == e[0] {\n\t\t\tif e[0] == 'u' {\n\t\t\t\tb.extensions[i] = e + s[1:]\n\t\t\t} else {\n\t\t\t\tb.extensions[i] = e\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t}\n\tb.extensions = append(b.extensions, e)\n}\n\n// AddVariant adds any number of variants.\nfunc (b *Builder) AddVariant(v ...string) {\n\tfor _, v := range v {\n\t\tif v != \"\" {\n\t\t\tb.variants = append(b.variants, v)\n\t\t}\n\t}\n}\n\n// ClearVariants removes any variants previously added, including those\n// copied from a Tag in SetTag.\nfunc (b *Builder) ClearVariants() {\n\tb.variants = b.variants[:0]\n}\n\n// ClearExtensions removes any extensions previously added, including those\n// copied from a Tag in SetTag.\nfunc (b *Builder) ClearExtensions() {\n\tb.private = \"\"\n\tb.extensions = b.extensions[:0]\n}\n\nfunc tokenLen(token ...string) (n int) {\n\tfor _, t := range token {\n\t\tn += len(t) + 1\n\t}\n\treturn\n}\n\nfunc appendTokens(b []byte, token ...string) int {\n\tp := 0\n\tfor _, t := range token {\n\t\tb[p] = '-'\n\t\tcopy(b[p+1:], t)\n\t\tp += 1 + len(t)\n\t}\n\treturn p\n}\n\ntype sortVariants []string\n\nfunc (s sortVariants) Len() int {\n\treturn len(s)\n}\n\nfunc (s sortVariants) Swap(i, j int) {\n\ts[j], s[i] = s[i], s[j]\n}\n\nfunc (s sortVariants) Less(i, j int) bool {\n\treturn variantIndex[s[i]] < variantIndex[s[j]]\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/coverage.go",
    "content": "// Copyright 2014 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\n// BaseLanguages returns the list of all supported base languages. It generates\n// the list by traversing the internal structures.\nfunc BaseLanguages() []Language {\n\tbase := make([]Language, 0, NumLanguages)\n\tfor i := 0; i < langNoIndexOffset; i++ {\n\t\t// We included \"und\" already for the value 0.\n\t\tif i != nonCanonicalUnd {\n\t\t\tbase = append(base, Language(i))\n\t\t}\n\t}\n\ti := langNoIndexOffset\n\tfor _, v := range langNoIndex {\n\t\tfor k := 0; k < 8; k++ {\n\t\t\tif v&1 == 1 {\n\t\t\t\tbase = append(base, Language(i))\n\t\t\t}\n\t\t\tv >>= 1\n\t\t\ti++\n\t\t}\n\t}\n\treturn base\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/language.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n//go:generate go run gen.go gen_common.go -output tables.go\n\npackage language // import \"golang.org/x/text/internal/language\"\n\n// TODO: Remove above NOTE after:\n// - verifying that tables are dropped correctly (most notably matcher tables).\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"strings\"\n)\n\nconst (\n\t// maxCoreSize is the maximum size of a BCP 47 tag without variants and\n\t// extensions. Equals max lang (3) + script (4) + max reg (3) + 2 dashes.\n\tmaxCoreSize = 12\n\n\t// max99thPercentileSize is a somewhat arbitrary buffer size that presumably\n\t// is large enough to hold at least 99% of the BCP 47 tags.\n\tmax99thPercentileSize = 32\n\n\t// maxSimpleUExtensionSize is the maximum size of a -u extension with one\n\t// key-type pair. Equals len(\"-u-\") + key (2) + dash + max value (8).\n\tmaxSimpleUExtensionSize = 14\n)\n\n// Tag represents a BCP 47 language tag. It is used to specify an instance of a\n// specific language or locale. All language tag values are guaranteed to be\n// well-formed. The zero value of Tag is Und.\ntype Tag struct {\n\t// TODO: the following fields have the form TagTypeID. This name is chosen\n\t// to allow refactoring the public package without conflicting with its\n\t// Base, Script, and Region methods. Once the transition is fully completed\n\t// the ID can be stripped from the name.\n\n\tLangID   Language\n\tRegionID Region\n\t// TODO: we will soon run out of positions for ScriptID. Idea: instead of\n\t// storing lang, region, and ScriptID codes, store only the compact index and\n\t// have a lookup table from this code to its expansion. This greatly speeds\n\t// up table lookup, speed up common variant cases.\n\t// This will also immediately free up 3 extra bytes. Also, the pVariant\n\t// field can now be moved to the lookup table, as the compact index uniquely\n\t// determines the offset of a possible variant.\n\tScriptID Script\n\tpVariant byte   // offset in str, includes preceding '-'\n\tpExt     uint16 // offset of first extension, includes preceding '-'\n\n\t// str is the string representation of the Tag. It will only be used if the\n\t// tag has variants or extensions.\n\tstr string\n}\n\n// Make is a convenience wrapper for Parse that omits the error.\n// In case of an error, a sensible default is returned.\nfunc Make(s string) Tag {\n\tt, _ := Parse(s)\n\treturn t\n}\n\n// Raw returns the raw base language, script and region, without making an\n// attempt to infer their values.\n// TODO: consider removing\nfunc (t Tag) Raw() (b Language, s Script, r Region) {\n\treturn t.LangID, t.ScriptID, t.RegionID\n}\n\n// equalTags compares language, script and region subtags only.\nfunc (t Tag) equalTags(a Tag) bool {\n\treturn t.LangID == a.LangID && t.ScriptID == a.ScriptID && t.RegionID == a.RegionID\n}\n\n// IsRoot returns true if t is equal to language \"und\".\nfunc (t Tag) IsRoot() bool {\n\tif int(t.pVariant) < len(t.str) {\n\t\treturn false\n\t}\n\treturn t.equalTags(Und)\n}\n\n// IsPrivateUse reports whether the Tag consists solely of an IsPrivateUse use\n// tag.\nfunc (t Tag) IsPrivateUse() bool {\n\treturn t.str != \"\" && t.pVariant == 0\n}\n\n// RemakeString is used to update t.str in case lang, script or region changed.\n// It is assumed that pExt and pVariant still point to the start of the\n// respective parts.\nfunc (t *Tag) RemakeString() {\n\tif t.str == \"\" {\n\t\treturn\n\t}\n\textra := t.str[t.pVariant:]\n\tif t.pVariant > 0 {\n\t\textra = extra[1:]\n\t}\n\tif t.equalTags(Und) && strings.HasPrefix(extra, \"x-\") {\n\t\tt.str = extra\n\t\tt.pVariant = 0\n\t\tt.pExt = 0\n\t\treturn\n\t}\n\tvar buf [max99thPercentileSize]byte // avoid extra memory allocation in most cases.\n\tb := buf[:t.genCoreBytes(buf[:])]\n\tif extra != \"\" {\n\t\tdiff := len(b) - int(t.pVariant)\n\t\tb = append(b, '-')\n\t\tb = append(b, extra...)\n\t\tt.pVariant = uint8(int(t.pVariant) + diff)\n\t\tt.pExt = uint16(int(t.pExt) + diff)\n\t} else {\n\t\tt.pVariant = uint8(len(b))\n\t\tt.pExt = uint16(len(b))\n\t}\n\tt.str = string(b)\n}\n\n// genCoreBytes writes a string for the base languages, script and region tags\n// to the given buffer and returns the number of bytes written. It will never\n// write more than maxCoreSize bytes.\nfunc (t *Tag) genCoreBytes(buf []byte) int {\n\tn := t.LangID.StringToBuf(buf[:])\n\tif t.ScriptID != 0 {\n\t\tn += copy(buf[n:], \"-\")\n\t\tn += copy(buf[n:], t.ScriptID.String())\n\t}\n\tif t.RegionID != 0 {\n\t\tn += copy(buf[n:], \"-\")\n\t\tn += copy(buf[n:], t.RegionID.String())\n\t}\n\treturn n\n}\n\n// String returns the canonical string representation of the language tag.\nfunc (t Tag) String() string {\n\tif t.str != \"\" {\n\t\treturn t.str\n\t}\n\tif t.ScriptID == 0 && t.RegionID == 0 {\n\t\treturn t.LangID.String()\n\t}\n\tbuf := [maxCoreSize]byte{}\n\treturn string(buf[:t.genCoreBytes(buf[:])])\n}\n\n// MarshalText implements encoding.TextMarshaler.\nfunc (t Tag) MarshalText() (text []byte, err error) {\n\tif t.str != \"\" {\n\t\ttext = append(text, t.str...)\n\t} else if t.ScriptID == 0 && t.RegionID == 0 {\n\t\ttext = append(text, t.LangID.String()...)\n\t} else {\n\t\tbuf := [maxCoreSize]byte{}\n\t\ttext = buf[:t.genCoreBytes(buf[:])]\n\t}\n\treturn text, nil\n}\n\n// UnmarshalText implements encoding.TextUnmarshaler.\nfunc (t *Tag) UnmarshalText(text []byte) error {\n\ttag, err := Parse(string(text))\n\t*t = tag\n\treturn err\n}\n\n// Variants returns the part of the tag holding all variants or the empty string\n// if there are no variants defined.\nfunc (t Tag) Variants() string {\n\tif t.pVariant == 0 {\n\t\treturn \"\"\n\t}\n\treturn t.str[t.pVariant:t.pExt]\n}\n\n// VariantOrPrivateUseTags returns variants or private use tags.\nfunc (t Tag) VariantOrPrivateUseTags() string {\n\tif t.pExt > 0 {\n\t\treturn t.str[t.pVariant:t.pExt]\n\t}\n\treturn t.str[t.pVariant:]\n}\n\n// HasString reports whether this tag defines more than just the raw\n// components.\nfunc (t Tag) HasString() bool {\n\treturn t.str != \"\"\n}\n\n// Parent returns the CLDR parent of t. In CLDR, missing fields in data for a\n// specific language are substituted with fields from the parent language.\n// The parent for a language may change for newer versions of CLDR.\nfunc (t Tag) Parent() Tag {\n\tif t.str != \"\" {\n\t\t// Strip the variants and extensions.\n\t\tb, s, r := t.Raw()\n\t\tt = Tag{LangID: b, ScriptID: s, RegionID: r}\n\t\tif t.RegionID == 0 && t.ScriptID != 0 && t.LangID != 0 {\n\t\t\tbase, _ := addTags(Tag{LangID: t.LangID})\n\t\t\tif base.ScriptID == t.ScriptID {\n\t\t\t\treturn Tag{LangID: t.LangID}\n\t\t\t}\n\t\t}\n\t\treturn t\n\t}\n\tif t.LangID != 0 {\n\t\tif t.RegionID != 0 {\n\t\t\tmaxScript := t.ScriptID\n\t\t\tif maxScript == 0 {\n\t\t\t\tmax, _ := addTags(t)\n\t\t\t\tmaxScript = max.ScriptID\n\t\t\t}\n\n\t\t\tfor i := range parents {\n\t\t\t\tif Language(parents[i].lang) == t.LangID && Script(parents[i].maxScript) == maxScript {\n\t\t\t\t\tfor _, r := range parents[i].fromRegion {\n\t\t\t\t\t\tif Region(r) == t.RegionID {\n\t\t\t\t\t\t\treturn Tag{\n\t\t\t\t\t\t\t\tLangID:   t.LangID,\n\t\t\t\t\t\t\t\tScriptID: Script(parents[i].script),\n\t\t\t\t\t\t\t\tRegionID: Region(parents[i].toRegion),\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Strip the script if it is the default one.\n\t\t\tbase, _ := addTags(Tag{LangID: t.LangID})\n\t\t\tif base.ScriptID != maxScript {\n\t\t\t\treturn Tag{LangID: t.LangID, ScriptID: maxScript}\n\t\t\t}\n\t\t\treturn Tag{LangID: t.LangID}\n\t\t} else if t.ScriptID != 0 {\n\t\t\t// The parent for an base-script pair with a non-default script is\n\t\t\t// \"und\" instead of the base language.\n\t\t\tbase, _ := addTags(Tag{LangID: t.LangID})\n\t\t\tif base.ScriptID != t.ScriptID {\n\t\t\t\treturn Und\n\t\t\t}\n\t\t\treturn Tag{LangID: t.LangID}\n\t\t}\n\t}\n\treturn Und\n}\n\n// ParseExtension parses s as an extension and returns it on success.\nfunc ParseExtension(s string) (ext string, err error) {\n\tscan := makeScannerString(s)\n\tvar end int\n\tif n := len(scan.token); n != 1 {\n\t\treturn \"\", ErrSyntax\n\t}\n\tscan.toLower(0, len(scan.b))\n\tend = parseExtension(&scan)\n\tif end != len(s) {\n\t\treturn \"\", ErrSyntax\n\t}\n\treturn string(scan.b), nil\n}\n\n// HasVariants reports whether t has variants.\nfunc (t Tag) HasVariants() bool {\n\treturn uint16(t.pVariant) < t.pExt\n}\n\n// HasExtensions reports whether t has extensions.\nfunc (t Tag) HasExtensions() bool {\n\treturn int(t.pExt) < len(t.str)\n}\n\n// Extension returns the extension of type x for tag t. It will return\n// false for ok if t does not have the requested extension. The returned\n// extension will be invalid in this case.\nfunc (t Tag) Extension(x byte) (ext string, ok bool) {\n\tfor i := int(t.pExt); i < len(t.str)-1; {\n\t\tvar ext string\n\t\ti, ext = getExtension(t.str, i)\n\t\tif ext[0] == x {\n\t\t\treturn ext, true\n\t\t}\n\t}\n\treturn \"\", false\n}\n\n// Extensions returns all extensions of t.\nfunc (t Tag) Extensions() []string {\n\te := []string{}\n\tfor i := int(t.pExt); i < len(t.str)-1; {\n\t\tvar ext string\n\t\ti, ext = getExtension(t.str, i)\n\t\te = append(e, ext)\n\t}\n\treturn e\n}\n\n// TypeForKey returns the type associated with the given key, where key and type\n// are of the allowed values defined for the Unicode locale extension ('u') in\n// https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.\n// TypeForKey will traverse the inheritance chain to get the correct value.\nfunc (t Tag) TypeForKey(key string) string {\n\tif start, end, _ := t.findTypeForKey(key); end != start {\n\t\treturn t.str[start:end]\n\t}\n\treturn \"\"\n}\n\nvar (\n\terrPrivateUse       = errors.New(\"cannot set a key on a private use tag\")\n\terrInvalidArguments = errors.New(\"invalid key or type\")\n)\n\n// SetTypeForKey returns a new Tag with the key set to type, where key and type\n// are of the allowed values defined for the Unicode locale extension ('u') in\n// https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.\n// An empty value removes an existing pair with the same key.\nfunc (t Tag) SetTypeForKey(key, value string) (Tag, error) {\n\tif t.IsPrivateUse() {\n\t\treturn t, errPrivateUse\n\t}\n\tif len(key) != 2 {\n\t\treturn t, errInvalidArguments\n\t}\n\n\t// Remove the setting if value is \"\".\n\tif value == \"\" {\n\t\tstart, end, _ := t.findTypeForKey(key)\n\t\tif start != end {\n\t\t\t// Remove key tag and leading '-'.\n\t\t\tstart -= 4\n\n\t\t\t// Remove a possible empty extension.\n\t\t\tif (end == len(t.str) || t.str[end+2] == '-') && t.str[start-2] == '-' {\n\t\t\t\tstart -= 2\n\t\t\t}\n\t\t\tif start == int(t.pVariant) && end == len(t.str) {\n\t\t\t\tt.str = \"\"\n\t\t\t\tt.pVariant, t.pExt = 0, 0\n\t\t\t} else {\n\t\t\t\tt.str = fmt.Sprintf(\"%s%s\", t.str[:start], t.str[end:])\n\t\t\t}\n\t\t}\n\t\treturn t, nil\n\t}\n\n\tif len(value) < 3 || len(value) > 8 {\n\t\treturn t, errInvalidArguments\n\t}\n\n\tvar (\n\t\tbuf    [maxCoreSize + maxSimpleUExtensionSize]byte\n\t\tuStart int // start of the -u extension.\n\t)\n\n\t// Generate the tag string if needed.\n\tif t.str == \"\" {\n\t\tuStart = t.genCoreBytes(buf[:])\n\t\tbuf[uStart] = '-'\n\t\tuStart++\n\t}\n\n\t// Create new key-type pair and parse it to verify.\n\tb := buf[uStart:]\n\tcopy(b, \"u-\")\n\tcopy(b[2:], key)\n\tb[4] = '-'\n\tb = b[:5+copy(b[5:], value)]\n\tscan := makeScanner(b)\n\tif parseExtensions(&scan); scan.err != nil {\n\t\treturn t, scan.err\n\t}\n\n\t// Assemble the replacement string.\n\tif t.str == \"\" {\n\t\tt.pVariant, t.pExt = byte(uStart-1), uint16(uStart-1)\n\t\tt.str = string(buf[:uStart+len(b)])\n\t} else {\n\t\ts := t.str\n\t\tstart, end, hasExt := t.findTypeForKey(key)\n\t\tif start == end {\n\t\t\tif hasExt {\n\t\t\t\tb = b[2:]\n\t\t\t}\n\t\t\tt.str = fmt.Sprintf(\"%s-%s%s\", s[:start], b, s[end:])\n\t\t} else {\n\t\t\tt.str = fmt.Sprintf(\"%s%s%s\", s[:start], value, s[end:])\n\t\t}\n\t}\n\treturn t, nil\n}\n\n// findKeyAndType returns the start and end position for the type corresponding\n// to key or the point at which to insert the key-value pair if the type\n// wasn't found. The hasExt return value reports whether an -u extension was present.\n// Note: the extensions are typically very small and are likely to contain\n// only one key-type pair.\nfunc (t Tag) findTypeForKey(key string) (start, end int, hasExt bool) {\n\tp := int(t.pExt)\n\tif len(key) != 2 || p == len(t.str) || p == 0 {\n\t\treturn p, p, false\n\t}\n\ts := t.str\n\n\t// Find the correct extension.\n\tfor p++; s[p] != 'u'; p++ {\n\t\tif s[p] > 'u' {\n\t\t\tp--\n\t\t\treturn p, p, false\n\t\t}\n\t\tif p = nextExtension(s, p); p == len(s) {\n\t\t\treturn len(s), len(s), false\n\t\t}\n\t}\n\t// Proceed to the hyphen following the extension name.\n\tp++\n\n\t// curKey is the key currently being processed.\n\tcurKey := \"\"\n\n\t// Iterate over keys until we get the end of a section.\n\tfor {\n\t\t// p points to the hyphen preceding the current token.\n\t\tif p3 := p + 3; s[p3] == '-' {\n\t\t\t// Found a key.\n\t\t\t// Check whether we just processed the key that was requested.\n\t\t\tif curKey == key {\n\t\t\t\treturn start, p, true\n\t\t\t}\n\t\t\t// Set to the next key and continue scanning type tokens.\n\t\t\tcurKey = s[p+1 : p3]\n\t\t\tif curKey > key {\n\t\t\t\treturn p, p, true\n\t\t\t}\n\t\t\t// Start of the type token sequence.\n\t\t\tstart = p + 4\n\t\t\t// A type is at least 3 characters long.\n\t\t\tp += 7 // 4 + 3\n\t\t} else {\n\t\t\t// Attribute or type, which is at least 3 characters long.\n\t\t\tp += 4\n\t\t}\n\t\t// p points past the third character of a type or attribute.\n\t\tmax := p + 5 // maximum length of token plus hyphen.\n\t\tif len(s) < max {\n\t\t\tmax = len(s)\n\t\t}\n\t\tfor ; p < max && s[p] != '-'; p++ {\n\t\t}\n\t\t// Bail if we have exhausted all tokens or if the next token starts\n\t\t// a new extension.\n\t\tif p == len(s) || s[p+2] == '-' {\n\t\t\tif curKey == key {\n\t\t\t\treturn start, p, true\n\t\t\t}\n\t\t\treturn p, p, true\n\t\t}\n\t}\n}\n\n// ParseBase parses a 2- or 3-letter ISO 639 code.\n// It returns a ValueError if s is a well-formed but unknown language identifier\n// or another error if another error occurred.\nfunc ParseBase(s string) (Language, error) {\n\tif n := len(s); n < 2 || 3 < n {\n\t\treturn 0, ErrSyntax\n\t}\n\tvar buf [3]byte\n\treturn getLangID(buf[:copy(buf[:], s)])\n}\n\n// ParseScript parses a 4-letter ISO 15924 code.\n// It returns a ValueError if s is a well-formed but unknown script identifier\n// or another error if another error occurred.\nfunc ParseScript(s string) (Script, error) {\n\tif len(s) != 4 {\n\t\treturn 0, ErrSyntax\n\t}\n\tvar buf [4]byte\n\treturn getScriptID(script, buf[:copy(buf[:], s)])\n}\n\n// EncodeM49 returns the Region for the given UN M.49 code.\n// It returns an error if r is not a valid code.\nfunc EncodeM49(r int) (Region, error) {\n\treturn getRegionM49(r)\n}\n\n// ParseRegion parses a 2- or 3-letter ISO 3166-1 or a UN M.49 code.\n// It returns a ValueError if s is a well-formed but unknown region identifier\n// or another error if another error occurred.\nfunc ParseRegion(s string) (Region, error) {\n\tif n := len(s); n < 2 || 3 < n {\n\t\treturn 0, ErrSyntax\n\t}\n\tvar buf [3]byte\n\treturn getRegionID(buf[:copy(buf[:], s)])\n}\n\n// IsCountry returns whether this region is a country or autonomous area. This\n// includes non-standard definitions from CLDR.\nfunc (r Region) IsCountry() bool {\n\tif r == 0 || r.IsGroup() || r.IsPrivateUse() && r != _XK {\n\t\treturn false\n\t}\n\treturn true\n}\n\n// IsGroup returns whether this region defines a collection of regions. This\n// includes non-standard definitions from CLDR.\nfunc (r Region) IsGroup() bool {\n\tif r == 0 {\n\t\treturn false\n\t}\n\treturn int(regionInclusion[r]) < len(regionContainment)\n}\n\n// Contains returns whether Region c is contained by Region r. It returns true\n// if c == r.\nfunc (r Region) Contains(c Region) bool {\n\tif r == c {\n\t\treturn true\n\t}\n\tg := regionInclusion[r]\n\tif g >= nRegionGroups {\n\t\treturn false\n\t}\n\tm := regionContainment[g]\n\n\td := regionInclusion[c]\n\tb := regionInclusionBits[d]\n\n\t// A contained country may belong to multiple disjoint groups. Matching any\n\t// of these indicates containment. If the contained region is a group, it\n\t// must strictly be a subset.\n\tif d >= nRegionGroups {\n\t\treturn b&m != 0\n\t}\n\treturn b&^m == 0\n}\n\nvar errNoTLD = errors.New(\"language: region is not a valid ccTLD\")\n\n// TLD returns the country code top-level domain (ccTLD). UK is returned for GB.\n// In all other cases it returns either the region itself or an error.\n//\n// This method may return an error for a region for which there exists a\n// canonical form with a ccTLD. To get that ccTLD canonicalize r first. The\n// region will already be canonicalized it was obtained from a Tag that was\n// obtained using any of the default methods.\nfunc (r Region) TLD() (Region, error) {\n\t// See http://en.wikipedia.org/wiki/Country_code_top-level_domain for the\n\t// difference between ISO 3166-1 and IANA ccTLD.\n\tif r == _GB {\n\t\tr = _UK\n\t}\n\tif (r.typ() & ccTLD) == 0 {\n\t\treturn 0, errNoTLD\n\t}\n\treturn r, nil\n}\n\n// Canonicalize returns the region or a possible replacement if the region is\n// deprecated. It will not return a replacement for deprecated regions that\n// are split into multiple regions.\nfunc (r Region) Canonicalize() Region {\n\tif cr := normRegion(r); cr != 0 {\n\t\treturn cr\n\t}\n\treturn r\n}\n\n// Variant represents a registered variant of a language as defined by BCP 47.\ntype Variant struct {\n\tID  uint8\n\tstr string\n}\n\n// ParseVariant parses and returns a Variant. An error is returned if s is not\n// a valid variant.\nfunc ParseVariant(s string) (Variant, error) {\n\ts = strings.ToLower(s)\n\tif id, ok := variantIndex[s]; ok {\n\t\treturn Variant{id, s}, nil\n\t}\n\treturn Variant{}, NewValueError([]byte(s))\n}\n\n// String returns the string representation of the variant.\nfunc (v Variant) String() string {\n\treturn v.str\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/lookup.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"sort\"\n\t\"strconv\"\n\n\t\"golang.org/x/text/internal/tag\"\n)\n\n// findIndex tries to find the given tag in idx and returns a standardized error\n// if it could not be found.\nfunc findIndex(idx tag.Index, key []byte, form string) (index int, err error) {\n\tif !tag.FixCase(form, key) {\n\t\treturn 0, ErrSyntax\n\t}\n\ti := idx.Index(key)\n\tif i == -1 {\n\t\treturn 0, NewValueError(key)\n\t}\n\treturn i, nil\n}\n\nfunc searchUint(imap []uint16, key uint16) int {\n\treturn sort.Search(len(imap), func(i int) bool {\n\t\treturn imap[i] >= key\n\t})\n}\n\ntype Language uint16\n\n// getLangID returns the langID of s if s is a canonical subtag\n// or langUnknown if s is not a canonical subtag.\nfunc getLangID(s []byte) (Language, error) {\n\tif len(s) == 2 {\n\t\treturn getLangISO2(s)\n\t}\n\treturn getLangISO3(s)\n}\n\n// TODO language normalization as well as the AliasMaps could be moved to the\n// higher level package, but it is a bit tricky to separate the generation.\n\nfunc (id Language) Canonicalize() (Language, AliasType) {\n\treturn normLang(id)\n}\n\n// mapLang returns the mapped langID of id according to mapping m.\nfunc normLang(id Language) (Language, AliasType) {\n\tk := sort.Search(len(AliasMap), func(i int) bool {\n\t\treturn AliasMap[i].From >= uint16(id)\n\t})\n\tif k < len(AliasMap) && AliasMap[k].From == uint16(id) {\n\t\treturn Language(AliasMap[k].To), AliasTypes[k]\n\t}\n\treturn id, AliasTypeUnknown\n}\n\n// getLangISO2 returns the langID for the given 2-letter ISO language code\n// or unknownLang if this does not exist.\nfunc getLangISO2(s []byte) (Language, error) {\n\tif !tag.FixCase(\"zz\", s) {\n\t\treturn 0, ErrSyntax\n\t}\n\tif i := lang.Index(s); i != -1 && lang.Elem(i)[3] != 0 {\n\t\treturn Language(i), nil\n\t}\n\treturn 0, NewValueError(s)\n}\n\nconst base = 'z' - 'a' + 1\n\nfunc strToInt(s []byte) uint {\n\tv := uint(0)\n\tfor i := 0; i < len(s); i++ {\n\t\tv *= base\n\t\tv += uint(s[i] - 'a')\n\t}\n\treturn v\n}\n\n// converts the given integer to the original ASCII string passed to strToInt.\n// len(s) must match the number of characters obtained.\nfunc intToStr(v uint, s []byte) {\n\tfor i := len(s) - 1; i >= 0; i-- {\n\t\ts[i] = byte(v%base) + 'a'\n\t\tv /= base\n\t}\n}\n\n// getLangISO3 returns the langID for the given 3-letter ISO language code\n// or unknownLang if this does not exist.\nfunc getLangISO3(s []byte) (Language, error) {\n\tif tag.FixCase(\"und\", s) {\n\t\t// first try to match canonical 3-letter entries\n\t\tfor i := lang.Index(s[:2]); i != -1; i = lang.Next(s[:2], i) {\n\t\t\tif e := lang.Elem(i); e[3] == 0 && e[2] == s[2] {\n\t\t\t\t// We treat \"und\" as special and always translate it to \"unspecified\".\n\t\t\t\t// Note that ZZ and Zzzz are private use and are not treated as\n\t\t\t\t// unspecified by default.\n\t\t\t\tid := Language(i)\n\t\t\t\tif id == nonCanonicalUnd {\n\t\t\t\t\treturn 0, nil\n\t\t\t\t}\n\t\t\t\treturn id, nil\n\t\t\t}\n\t\t}\n\t\tif i := altLangISO3.Index(s); i != -1 {\n\t\t\treturn Language(altLangIndex[altLangISO3.Elem(i)[3]]), nil\n\t\t}\n\t\tn := strToInt(s)\n\t\tif langNoIndex[n/8]&(1<<(n%8)) != 0 {\n\t\t\treturn Language(n) + langNoIndexOffset, nil\n\t\t}\n\t\t// Check for non-canonical uses of ISO3.\n\t\tfor i := lang.Index(s[:1]); i != -1; i = lang.Next(s[:1], i) {\n\t\t\tif e := lang.Elem(i); e[2] == s[1] && e[3] == s[2] {\n\t\t\t\treturn Language(i), nil\n\t\t\t}\n\t\t}\n\t\treturn 0, NewValueError(s)\n\t}\n\treturn 0, ErrSyntax\n}\n\n// StringToBuf writes the string to b and returns the number of bytes\n// written.  cap(b) must be >= 3.\nfunc (id Language) StringToBuf(b []byte) int {\n\tif id >= langNoIndexOffset {\n\t\tintToStr(uint(id)-langNoIndexOffset, b[:3])\n\t\treturn 3\n\t} else if id == 0 {\n\t\treturn copy(b, \"und\")\n\t}\n\tl := lang[id<<2:]\n\tif l[3] == 0 {\n\t\treturn copy(b, l[:3])\n\t}\n\treturn copy(b, l[:2])\n}\n\n// String returns the BCP 47 representation of the langID.\n// Use b as variable name, instead of id, to ensure the variable\n// used is consistent with that of Base in which this type is embedded.\nfunc (b Language) String() string {\n\tif b == 0 {\n\t\treturn \"und\"\n\t} else if b >= langNoIndexOffset {\n\t\tb -= langNoIndexOffset\n\t\tbuf := [3]byte{}\n\t\tintToStr(uint(b), buf[:])\n\t\treturn string(buf[:])\n\t}\n\tl := lang.Elem(int(b))\n\tif l[3] == 0 {\n\t\treturn l[:3]\n\t}\n\treturn l[:2]\n}\n\n// ISO3 returns the ISO 639-3 language code.\nfunc (b Language) ISO3() string {\n\tif b == 0 || b >= langNoIndexOffset {\n\t\treturn b.String()\n\t}\n\tl := lang.Elem(int(b))\n\tif l[3] == 0 {\n\t\treturn l[:3]\n\t} else if l[2] == 0 {\n\t\treturn altLangISO3.Elem(int(l[3]))[:3]\n\t}\n\t// This allocation will only happen for 3-letter ISO codes\n\t// that are non-canonical BCP 47 language identifiers.\n\treturn l[0:1] + l[2:4]\n}\n\n// IsPrivateUse reports whether this language code is reserved for private use.\nfunc (b Language) IsPrivateUse() bool {\n\treturn langPrivateStart <= b && b <= langPrivateEnd\n}\n\n// SuppressScript returns the script marked as SuppressScript in the IANA\n// language tag repository, or 0 if there is no such script.\nfunc (b Language) SuppressScript() Script {\n\tif b < langNoIndexOffset {\n\t\treturn Script(suppressScript[b])\n\t}\n\treturn 0\n}\n\ntype Region uint16\n\n// getRegionID returns the region id for s if s is a valid 2-letter region code\n// or unknownRegion.\nfunc getRegionID(s []byte) (Region, error) {\n\tif len(s) == 3 {\n\t\tif isAlpha(s[0]) {\n\t\t\treturn getRegionISO3(s)\n\t\t}\n\t\tif i, err := strconv.ParseUint(string(s), 10, 10); err == nil {\n\t\t\treturn getRegionM49(int(i))\n\t\t}\n\t}\n\treturn getRegionISO2(s)\n}\n\n// getRegionISO2 returns the regionID for the given 2-letter ISO country code\n// or unknownRegion if this does not exist.\nfunc getRegionISO2(s []byte) (Region, error) {\n\ti, err := findIndex(regionISO, s, \"ZZ\")\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn Region(i) + isoRegionOffset, nil\n}\n\n// getRegionISO3 returns the regionID for the given 3-letter ISO country code\n// or unknownRegion if this does not exist.\nfunc getRegionISO3(s []byte) (Region, error) {\n\tif tag.FixCase(\"ZZZ\", s) {\n\t\tfor i := regionISO.Index(s[:1]); i != -1; i = regionISO.Next(s[:1], i) {\n\t\t\tif e := regionISO.Elem(i); e[2] == s[1] && e[3] == s[2] {\n\t\t\t\treturn Region(i) + isoRegionOffset, nil\n\t\t\t}\n\t\t}\n\t\tfor i := 0; i < len(altRegionISO3); i += 3 {\n\t\t\tif tag.Compare(altRegionISO3[i:i+3], s) == 0 {\n\t\t\t\treturn Region(altRegionIDs[i/3]), nil\n\t\t\t}\n\t\t}\n\t\treturn 0, NewValueError(s)\n\t}\n\treturn 0, ErrSyntax\n}\n\nfunc getRegionM49(n int) (Region, error) {\n\tif 0 < n && n <= 999 {\n\t\tconst (\n\t\t\tsearchBits = 7\n\t\t\tregionBits = 9\n\t\t\tregionMask = 1<<regionBits - 1\n\t\t)\n\t\tidx := n >> searchBits\n\t\tbuf := fromM49[m49Index[idx]:m49Index[idx+1]]\n\t\tval := uint16(n) << regionBits // we rely on bits shifting out\n\t\ti := sort.Search(len(buf), func(i int) bool {\n\t\t\treturn buf[i] >= val\n\t\t})\n\t\tif r := fromM49[int(m49Index[idx])+i]; r&^regionMask == val {\n\t\t\treturn Region(r & regionMask), nil\n\t\t}\n\t}\n\tvar e ValueError\n\tfmt.Fprint(bytes.NewBuffer([]byte(e.v[:])), n)\n\treturn 0, e\n}\n\n// normRegion returns a region if r is deprecated or 0 otherwise.\n// TODO: consider supporting BYS (-> BLR), CSK (-> 200 or CZ), PHI (-> PHL) and AFI (-> DJ).\n// TODO: consider mapping split up regions to new most populous one (like CLDR).\nfunc normRegion(r Region) Region {\n\tm := regionOldMap\n\tk := sort.Search(len(m), func(i int) bool {\n\t\treturn m[i].From >= uint16(r)\n\t})\n\tif k < len(m) && m[k].From == uint16(r) {\n\t\treturn Region(m[k].To)\n\t}\n\treturn 0\n}\n\nconst (\n\tiso3166UserAssigned = 1 << iota\n\tccTLD\n\tbcp47Region\n)\n\nfunc (r Region) typ() byte {\n\treturn regionTypes[r]\n}\n\n// String returns the BCP 47 representation for the region.\n// It returns \"ZZ\" for an unspecified region.\nfunc (r Region) String() string {\n\tif r < isoRegionOffset {\n\t\tif r == 0 {\n\t\t\treturn \"ZZ\"\n\t\t}\n\t\treturn fmt.Sprintf(\"%03d\", r.M49())\n\t}\n\tr -= isoRegionOffset\n\treturn regionISO.Elem(int(r))[:2]\n}\n\n// ISO3 returns the 3-letter ISO code of r.\n// Note that not all regions have a 3-letter ISO code.\n// In such cases this method returns \"ZZZ\".\nfunc (r Region) ISO3() string {\n\tif r < isoRegionOffset {\n\t\treturn \"ZZZ\"\n\t}\n\tr -= isoRegionOffset\n\treg := regionISO.Elem(int(r))\n\tswitch reg[2] {\n\tcase 0:\n\t\treturn altRegionISO3[reg[3]:][:3]\n\tcase ' ':\n\t\treturn \"ZZZ\"\n\t}\n\treturn reg[0:1] + reg[2:4]\n}\n\n// M49 returns the UN M.49 encoding of r, or 0 if this encoding\n// is not defined for r.\nfunc (r Region) M49() int {\n\treturn int(m49[r])\n}\n\n// IsPrivateUse reports whether r has the ISO 3166 User-assigned status. This\n// may include private-use tags that are assigned by CLDR and used in this\n// implementation. So IsPrivateUse and IsCountry can be simultaneously true.\nfunc (r Region) IsPrivateUse() bool {\n\treturn r.typ()&iso3166UserAssigned != 0\n}\n\ntype Script uint8\n\n// getScriptID returns the script id for string s. It assumes that s\n// is of the format [A-Z][a-z]{3}.\nfunc getScriptID(idx tag.Index, s []byte) (Script, error) {\n\ti, err := findIndex(idx, s, \"Zzzz\")\n\treturn Script(i), err\n}\n\n// String returns the script code in title case.\n// It returns \"Zzzz\" for an unspecified script.\nfunc (s Script) String() string {\n\tif s == 0 {\n\t\treturn \"Zzzz\"\n\t}\n\treturn script.Elem(int(s))\n}\n\n// IsPrivateUse reports whether this script code is reserved for private use.\nfunc (s Script) IsPrivateUse() bool {\n\treturn _Qaaa <= s && s <= _Qabx\n}\n\nconst (\n\tmaxAltTaglen = len(\"en-US-POSIX\")\n\tmaxLen       = maxAltTaglen\n)\n\nvar (\n\t// grandfatheredMap holds a mapping from legacy and grandfathered tags to\n\t// their base language or index to more elaborate tag.\n\tgrandfatheredMap = map[[maxLen]byte]int16{\n\t\t[maxLen]byte{'a', 'r', 't', '-', 'l', 'o', 'j', 'b', 'a', 'n'}: _jbo, // art-lojban\n\t\t[maxLen]byte{'i', '-', 'a', 'm', 'i'}:                          _ami, // i-ami\n\t\t[maxLen]byte{'i', '-', 'b', 'n', 'n'}:                          _bnn, // i-bnn\n\t\t[maxLen]byte{'i', '-', 'h', 'a', 'k'}:                          _hak, // i-hak\n\t\t[maxLen]byte{'i', '-', 'k', 'l', 'i', 'n', 'g', 'o', 'n'}:      _tlh, // i-klingon\n\t\t[maxLen]byte{'i', '-', 'l', 'u', 'x'}:                          _lb,  // i-lux\n\t\t[maxLen]byte{'i', '-', 'n', 'a', 'v', 'a', 'j', 'o'}:           _nv,  // i-navajo\n\t\t[maxLen]byte{'i', '-', 'p', 'w', 'n'}:                          _pwn, // i-pwn\n\t\t[maxLen]byte{'i', '-', 't', 'a', 'o'}:                          _tao, // i-tao\n\t\t[maxLen]byte{'i', '-', 't', 'a', 'y'}:                          _tay, // i-tay\n\t\t[maxLen]byte{'i', '-', 't', 's', 'u'}:                          _tsu, // i-tsu\n\t\t[maxLen]byte{'n', 'o', '-', 'b', 'o', 'k'}:                     _nb,  // no-bok\n\t\t[maxLen]byte{'n', 'o', '-', 'n', 'y', 'n'}:                     _nn,  // no-nyn\n\t\t[maxLen]byte{'s', 'g', 'n', '-', 'b', 'e', '-', 'f', 'r'}:      _sfb, // sgn-BE-FR\n\t\t[maxLen]byte{'s', 'g', 'n', '-', 'b', 'e', '-', 'n', 'l'}:      _vgt, // sgn-BE-NL\n\t\t[maxLen]byte{'s', 'g', 'n', '-', 'c', 'h', '-', 'd', 'e'}:      _sgg, // sgn-CH-DE\n\t\t[maxLen]byte{'z', 'h', '-', 'g', 'u', 'o', 'y', 'u'}:           _cmn, // zh-guoyu\n\t\t[maxLen]byte{'z', 'h', '-', 'h', 'a', 'k', 'k', 'a'}:           _hak, // zh-hakka\n\t\t[maxLen]byte{'z', 'h', '-', 'm', 'i', 'n', '-', 'n', 'a', 'n'}: _nan, // zh-min-nan\n\t\t[maxLen]byte{'z', 'h', '-', 'x', 'i', 'a', 'n', 'g'}:           _hsn, // zh-xiang\n\n\t\t// Grandfathered tags with no modern replacement will be converted as\n\t\t// follows:\n\t\t[maxLen]byte{'c', 'e', 'l', '-', 'g', 'a', 'u', 'l', 'i', 's', 'h'}: -1, // cel-gaulish\n\t\t[maxLen]byte{'e', 'n', '-', 'g', 'b', '-', 'o', 'e', 'd'}:           -2, // en-GB-oed\n\t\t[maxLen]byte{'i', '-', 'd', 'e', 'f', 'a', 'u', 'l', 't'}:           -3, // i-default\n\t\t[maxLen]byte{'i', '-', 'e', 'n', 'o', 'c', 'h', 'i', 'a', 'n'}:      -4, // i-enochian\n\t\t[maxLen]byte{'i', '-', 'm', 'i', 'n', 'g', 'o'}:                     -5, // i-mingo\n\t\t[maxLen]byte{'z', 'h', '-', 'm', 'i', 'n'}:                          -6, // zh-min\n\n\t\t// CLDR-specific tag.\n\t\t[maxLen]byte{'r', 'o', 'o', 't'}:                                    0,  // root\n\t\t[maxLen]byte{'e', 'n', '-', 'u', 's', '-', 'p', 'o', 's', 'i', 'x'}: -7, // en_US_POSIX\"\n\t}\n\n\taltTagIndex = [...]uint8{0, 17, 31, 45, 61, 74, 86, 102}\n\n\taltTags = \"xtg-x-cel-gaulishen-GB-oxendicten-x-i-defaultund-x-i-enochiansee-x-i-mingonan-x-zh-minen-US-u-va-posix\"\n)\n\nfunc grandfathered(s [maxAltTaglen]byte) (t Tag, ok bool) {\n\tif v, ok := grandfatheredMap[s]; ok {\n\t\tif v < 0 {\n\t\t\treturn Make(altTags[altTagIndex[-v-1]:altTagIndex[-v]]), true\n\t\t}\n\t\tt.LangID = Language(v)\n\t\treturn t, true\n\t}\n\treturn t, false\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/match.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\nimport \"errors\"\n\ntype scriptRegionFlags uint8\n\nconst (\n\tisList = 1 << iota\n\tscriptInFrom\n\tregionInFrom\n)\n\nfunc (t *Tag) setUndefinedLang(id Language) {\n\tif t.LangID == 0 {\n\t\tt.LangID = id\n\t}\n}\n\nfunc (t *Tag) setUndefinedScript(id Script) {\n\tif t.ScriptID == 0 {\n\t\tt.ScriptID = id\n\t}\n}\n\nfunc (t *Tag) setUndefinedRegion(id Region) {\n\tif t.RegionID == 0 || t.RegionID.Contains(id) {\n\t\tt.RegionID = id\n\t}\n}\n\n// ErrMissingLikelyTagsData indicates no information was available\n// to compute likely values of missing tags.\nvar ErrMissingLikelyTagsData = errors.New(\"missing likely tags data\")\n\n// addLikelySubtags sets subtags to their most likely value, given the locale.\n// In most cases this means setting fields for unknown values, but in some\n// cases it may alter a value.  It returns an ErrMissingLikelyTagsData error\n// if the given locale cannot be expanded.\nfunc (t Tag) addLikelySubtags() (Tag, error) {\n\tid, err := addTags(t)\n\tif err != nil {\n\t\treturn t, err\n\t} else if id.equalTags(t) {\n\t\treturn t, nil\n\t}\n\tid.RemakeString()\n\treturn id, nil\n}\n\n// specializeRegion attempts to specialize a group region.\nfunc specializeRegion(t *Tag) bool {\n\tif i := regionInclusion[t.RegionID]; i < nRegionGroups {\n\t\tx := likelyRegionGroup[i]\n\t\tif Language(x.lang) == t.LangID && Script(x.script) == t.ScriptID {\n\t\t\tt.RegionID = Region(x.region)\n\t\t}\n\t\treturn true\n\t}\n\treturn false\n}\n\n// Maximize returns a new tag with missing tags filled in.\nfunc (t Tag) Maximize() (Tag, error) {\n\treturn addTags(t)\n}\n\nfunc addTags(t Tag) (Tag, error) {\n\t// We leave private use identifiers alone.\n\tif t.IsPrivateUse() {\n\t\treturn t, nil\n\t}\n\tif t.ScriptID != 0 && t.RegionID != 0 {\n\t\tif t.LangID != 0 {\n\t\t\t// already fully specified\n\t\t\tspecializeRegion(&t)\n\t\t\treturn t, nil\n\t\t}\n\t\t// Search matches for und-script-region. Note that for these cases\n\t\t// region will never be a group so there is no need to check for this.\n\t\tlist := likelyRegion[t.RegionID : t.RegionID+1]\n\t\tif x := list[0]; x.flags&isList != 0 {\n\t\t\tlist = likelyRegionList[x.lang : x.lang+uint16(x.script)]\n\t\t}\n\t\tfor _, x := range list {\n\t\t\t// Deviating from the spec. See match_test.go for details.\n\t\t\tif Script(x.script) == t.ScriptID {\n\t\t\t\tt.setUndefinedLang(Language(x.lang))\n\t\t\t\treturn t, nil\n\t\t\t}\n\t\t}\n\t}\n\tif t.LangID != 0 {\n\t\t// Search matches for lang-script and lang-region, where lang != und.\n\t\tif t.LangID < langNoIndexOffset {\n\t\t\tx := likelyLang[t.LangID]\n\t\t\tif x.flags&isList != 0 {\n\t\t\t\tlist := likelyLangList[x.region : x.region+uint16(x.script)]\n\t\t\t\tif t.ScriptID != 0 {\n\t\t\t\t\tfor _, x := range list {\n\t\t\t\t\t\tif Script(x.script) == t.ScriptID && x.flags&scriptInFrom != 0 {\n\t\t\t\t\t\t\tt.setUndefinedRegion(Region(x.region))\n\t\t\t\t\t\t\treturn t, nil\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if t.RegionID != 0 {\n\t\t\t\t\tcount := 0\n\t\t\t\t\tgoodScript := true\n\t\t\t\t\ttt := t\n\t\t\t\t\tfor _, x := range list {\n\t\t\t\t\t\t// We visit all entries for which the script was not\n\t\t\t\t\t\t// defined, including the ones where the region was not\n\t\t\t\t\t\t// defined. This allows for proper disambiguation within\n\t\t\t\t\t\t// regions.\n\t\t\t\t\t\tif x.flags&scriptInFrom == 0 && t.RegionID.Contains(Region(x.region)) {\n\t\t\t\t\t\t\ttt.RegionID = Region(x.region)\n\t\t\t\t\t\t\ttt.setUndefinedScript(Script(x.script))\n\t\t\t\t\t\t\tgoodScript = goodScript && tt.ScriptID == Script(x.script)\n\t\t\t\t\t\t\tcount++\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif count == 1 {\n\t\t\t\t\t\treturn tt, nil\n\t\t\t\t\t}\n\t\t\t\t\t// Even if we fail to find a unique Region, we might have\n\t\t\t\t\t// an unambiguous script.\n\t\t\t\t\tif goodScript {\n\t\t\t\t\t\tt.ScriptID = tt.ScriptID\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// Search matches for und-script.\n\t\tif t.ScriptID != 0 {\n\t\t\tx := likelyScript[t.ScriptID]\n\t\t\tif x.region != 0 {\n\t\t\t\tt.setUndefinedRegion(Region(x.region))\n\t\t\t\tt.setUndefinedLang(Language(x.lang))\n\t\t\t\treturn t, nil\n\t\t\t}\n\t\t}\n\t\t// Search matches for und-region. If und-script-region exists, it would\n\t\t// have been found earlier.\n\t\tif t.RegionID != 0 {\n\t\t\tif i := regionInclusion[t.RegionID]; i < nRegionGroups {\n\t\t\t\tx := likelyRegionGroup[i]\n\t\t\t\tif x.region != 0 {\n\t\t\t\t\tt.setUndefinedLang(Language(x.lang))\n\t\t\t\t\tt.setUndefinedScript(Script(x.script))\n\t\t\t\t\tt.RegionID = Region(x.region)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tx := likelyRegion[t.RegionID]\n\t\t\t\tif x.flags&isList != 0 {\n\t\t\t\t\tx = likelyRegionList[x.lang]\n\t\t\t\t}\n\t\t\t\tif x.script != 0 && x.flags != scriptInFrom {\n\t\t\t\t\tt.setUndefinedLang(Language(x.lang))\n\t\t\t\t\tt.setUndefinedScript(Script(x.script))\n\t\t\t\t\treturn t, nil\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Search matches for lang.\n\tif t.LangID < langNoIndexOffset {\n\t\tx := likelyLang[t.LangID]\n\t\tif x.flags&isList != 0 {\n\t\t\tx = likelyLangList[x.region]\n\t\t}\n\t\tif x.region != 0 {\n\t\t\tt.setUndefinedScript(Script(x.script))\n\t\t\tt.setUndefinedRegion(Region(x.region))\n\t\t}\n\t\tspecializeRegion(&t)\n\t\tif t.LangID == 0 {\n\t\t\tt.LangID = _en // default language\n\t\t}\n\t\treturn t, nil\n\t}\n\treturn t, ErrMissingLikelyTagsData\n}\n\nfunc (t *Tag) setTagsFrom(id Tag) {\n\tt.LangID = id.LangID\n\tt.ScriptID = id.ScriptID\n\tt.RegionID = id.RegionID\n}\n\n// minimize removes the region or script subtags from t such that\n// t.addLikelySubtags() == t.minimize().addLikelySubtags().\nfunc (t Tag) minimize() (Tag, error) {\n\tt, err := minimizeTags(t)\n\tif err != nil {\n\t\treturn t, err\n\t}\n\tt.RemakeString()\n\treturn t, nil\n}\n\n// minimizeTags mimics the behavior of the ICU 51 C implementation.\nfunc minimizeTags(t Tag) (Tag, error) {\n\tif t.equalTags(Und) {\n\t\treturn t, nil\n\t}\n\tmax, err := addTags(t)\n\tif err != nil {\n\t\treturn t, err\n\t}\n\tfor _, id := range [...]Tag{\n\t\t{LangID: t.LangID},\n\t\t{LangID: t.LangID, RegionID: t.RegionID},\n\t\t{LangID: t.LangID, ScriptID: t.ScriptID},\n\t} {\n\t\tif x, err := addTags(id); err == nil && max.equalTags(x) {\n\t\t\tt.setTagsFrom(id)\n\t\t\tbreak\n\t\t}\n\t}\n\treturn t, nil\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/parse.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"sort\"\n\n\t\"golang.org/x/text/internal/tag\"\n)\n\n// isAlpha returns true if the byte is not a digit.\n// b must be an ASCII letter or digit.\nfunc isAlpha(b byte) bool {\n\treturn b > '9'\n}\n\n// isAlphaNum returns true if the string contains only ASCII letters or digits.\nfunc isAlphaNum(s []byte) bool {\n\tfor _, c := range s {\n\t\tif !('a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' || '0' <= c && c <= '9') {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// ErrSyntax is returned by any of the parsing functions when the\n// input is not well-formed, according to BCP 47.\n// TODO: return the position at which the syntax error occurred?\nvar ErrSyntax = errors.New(\"language: tag is not well-formed\")\n\n// ErrDuplicateKey is returned when a tag contains the same key twice with\n// different values in the -u section.\nvar ErrDuplicateKey = errors.New(\"language: different values for same key in -u extension\")\n\n// ValueError is returned by any of the parsing functions when the\n// input is well-formed but the respective subtag is not recognized\n// as a valid value.\ntype ValueError struct {\n\tv [8]byte\n}\n\n// NewValueError creates a new ValueError.\nfunc NewValueError(tag []byte) ValueError {\n\tvar e ValueError\n\tcopy(e.v[:], tag)\n\treturn e\n}\n\nfunc (e ValueError) tag() []byte {\n\tn := bytes.IndexByte(e.v[:], 0)\n\tif n == -1 {\n\t\tn = 8\n\t}\n\treturn e.v[:n]\n}\n\n// Error implements the error interface.\nfunc (e ValueError) Error() string {\n\treturn fmt.Sprintf(\"language: subtag %q is well-formed but unknown\", e.tag())\n}\n\n// Subtag returns the subtag for which the error occurred.\nfunc (e ValueError) Subtag() string {\n\treturn string(e.tag())\n}\n\n// scanner is used to scan BCP 47 tokens, which are separated by _ or -.\ntype scanner struct {\n\tb     []byte\n\tbytes [max99thPercentileSize]byte\n\ttoken []byte\n\tstart int // start position of the current token\n\tend   int // end position of the current token\n\tnext  int // next point for scan\n\terr   error\n\tdone  bool\n}\n\nfunc makeScannerString(s string) scanner {\n\tscan := scanner{}\n\tif len(s) <= len(scan.bytes) {\n\t\tscan.b = scan.bytes[:copy(scan.bytes[:], s)]\n\t} else {\n\t\tscan.b = []byte(s)\n\t}\n\tscan.init()\n\treturn scan\n}\n\n// makeScanner returns a scanner using b as the input buffer.\n// b is not copied and may be modified by the scanner routines.\nfunc makeScanner(b []byte) scanner {\n\tscan := scanner{b: b}\n\tscan.init()\n\treturn scan\n}\n\nfunc (s *scanner) init() {\n\tfor i, c := range s.b {\n\t\tif c == '_' {\n\t\t\ts.b[i] = '-'\n\t\t}\n\t}\n\ts.scan()\n}\n\n// restToLower converts the string between start and end to lower case.\nfunc (s *scanner) toLower(start, end int) {\n\tfor i := start; i < end; i++ {\n\t\tc := s.b[i]\n\t\tif 'A' <= c && c <= 'Z' {\n\t\t\ts.b[i] += 'a' - 'A'\n\t\t}\n\t}\n}\n\nfunc (s *scanner) setError(e error) {\n\tif s.err == nil || (e == ErrSyntax && s.err != ErrSyntax) {\n\t\ts.err = e\n\t}\n}\n\n// resizeRange shrinks or grows the array at position oldStart such that\n// a new string of size newSize can fit between oldStart and oldEnd.\n// Sets the scan point to after the resized range.\nfunc (s *scanner) resizeRange(oldStart, oldEnd, newSize int) {\n\ts.start = oldStart\n\tif end := oldStart + newSize; end != oldEnd {\n\t\tdiff := end - oldEnd\n\t\tif end < cap(s.b) {\n\t\t\tb := make([]byte, len(s.b)+diff)\n\t\t\tcopy(b, s.b[:oldStart])\n\t\t\tcopy(b[end:], s.b[oldEnd:])\n\t\t\ts.b = b\n\t\t} else {\n\t\t\ts.b = append(s.b[end:], s.b[oldEnd:]...)\n\t\t}\n\t\ts.next = end + (s.next - s.end)\n\t\ts.end = end\n\t}\n}\n\n// replace replaces the current token with repl.\nfunc (s *scanner) replace(repl string) {\n\ts.resizeRange(s.start, s.end, len(repl))\n\tcopy(s.b[s.start:], repl)\n}\n\n// gobble removes the current token from the input.\n// Caller must call scan after calling gobble.\nfunc (s *scanner) gobble(e error) {\n\ts.setError(e)\n\tif s.start == 0 {\n\t\ts.b = s.b[:+copy(s.b, s.b[s.next:])]\n\t\ts.end = 0\n\t} else {\n\t\ts.b = s.b[:s.start-1+copy(s.b[s.start-1:], s.b[s.end:])]\n\t\ts.end = s.start - 1\n\t}\n\ts.next = s.start\n}\n\n// deleteRange removes the given range from s.b before the current token.\nfunc (s *scanner) deleteRange(start, end int) {\n\ts.b = s.b[:start+copy(s.b[start:], s.b[end:])]\n\tdiff := end - start\n\ts.next -= diff\n\ts.start -= diff\n\ts.end -= diff\n}\n\n// scan parses the next token of a BCP 47 string.  Tokens that are larger\n// than 8 characters or include non-alphanumeric characters result in an error\n// and are gobbled and removed from the output.\n// It returns the end position of the last token consumed.\nfunc (s *scanner) scan() (end int) {\n\tend = s.end\n\ts.token = nil\n\tfor s.start = s.next; s.next < len(s.b); {\n\t\ti := bytes.IndexByte(s.b[s.next:], '-')\n\t\tif i == -1 {\n\t\t\ts.end = len(s.b)\n\t\t\ts.next = len(s.b)\n\t\t\ti = s.end - s.start\n\t\t} else {\n\t\t\ts.end = s.next + i\n\t\t\ts.next = s.end + 1\n\t\t}\n\t\ttoken := s.b[s.start:s.end]\n\t\tif i < 1 || i > 8 || !isAlphaNum(token) {\n\t\t\ts.gobble(ErrSyntax)\n\t\t\tcontinue\n\t\t}\n\t\ts.token = token\n\t\treturn end\n\t}\n\tif n := len(s.b); n > 0 && s.b[n-1] == '-' {\n\t\ts.setError(ErrSyntax)\n\t\ts.b = s.b[:len(s.b)-1]\n\t}\n\ts.done = true\n\treturn end\n}\n\n// acceptMinSize parses multiple tokens of the given size or greater.\n// It returns the end position of the last token consumed.\nfunc (s *scanner) acceptMinSize(min int) (end int) {\n\tend = s.end\n\ts.scan()\n\tfor ; len(s.token) >= min; s.scan() {\n\t\tend = s.end\n\t}\n\treturn end\n}\n\n// Parse parses the given BCP 47 string and returns a valid Tag. If parsing\n// failed it returns an error and any part of the tag that could be parsed.\n// If parsing succeeded but an unknown value was found, it returns\n// ValueError. The Tag returned in this case is just stripped of the unknown\n// value. All other values are preserved. It accepts tags in the BCP 47 format\n// and extensions to this standard defined in\n// https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.\nfunc Parse(s string) (t Tag, err error) {\n\t// TODO: consider supporting old-style locale key-value pairs.\n\tif s == \"\" {\n\t\treturn Und, ErrSyntax\n\t}\n\tif len(s) <= maxAltTaglen {\n\t\tb := [maxAltTaglen]byte{}\n\t\tfor i, c := range s {\n\t\t\t// Generating invalid UTF-8 is okay as it won't match.\n\t\t\tif 'A' <= c && c <= 'Z' {\n\t\t\t\tc += 'a' - 'A'\n\t\t\t} else if c == '_' {\n\t\t\t\tc = '-'\n\t\t\t}\n\t\t\tb[i] = byte(c)\n\t\t}\n\t\tif t, ok := grandfathered(b); ok {\n\t\t\treturn t, nil\n\t\t}\n\t}\n\tscan := makeScannerString(s)\n\treturn parse(&scan, s)\n}\n\nfunc parse(scan *scanner, s string) (t Tag, err error) {\n\tt = Und\n\tvar end int\n\tif n := len(scan.token); n <= 1 {\n\t\tscan.toLower(0, len(scan.b))\n\t\tif n == 0 || scan.token[0] != 'x' {\n\t\t\treturn t, ErrSyntax\n\t\t}\n\t\tend = parseExtensions(scan)\n\t} else if n >= 4 {\n\t\treturn Und, ErrSyntax\n\t} else { // the usual case\n\t\tt, end = parseTag(scan)\n\t\tif n := len(scan.token); n == 1 {\n\t\t\tt.pExt = uint16(end)\n\t\t\tend = parseExtensions(scan)\n\t\t} else if end < len(scan.b) {\n\t\t\tscan.setError(ErrSyntax)\n\t\t\tscan.b = scan.b[:end]\n\t\t}\n\t}\n\tif int(t.pVariant) < len(scan.b) {\n\t\tif end < len(s) {\n\t\t\ts = s[:end]\n\t\t}\n\t\tif len(s) > 0 && tag.Compare(s, scan.b) == 0 {\n\t\t\tt.str = s\n\t\t} else {\n\t\t\tt.str = string(scan.b)\n\t\t}\n\t} else {\n\t\tt.pVariant, t.pExt = 0, 0\n\t}\n\treturn t, scan.err\n}\n\n// parseTag parses language, script, region and variants.\n// It returns a Tag and the end position in the input that was parsed.\nfunc parseTag(scan *scanner) (t Tag, end int) {\n\tvar e error\n\t// TODO: set an error if an unknown lang, script or region is encountered.\n\tt.LangID, e = getLangID(scan.token)\n\tscan.setError(e)\n\tscan.replace(t.LangID.String())\n\tlangStart := scan.start\n\tend = scan.scan()\n\tfor len(scan.token) == 3 && isAlpha(scan.token[0]) {\n\t\t// From http://tools.ietf.org/html/bcp47, <lang>-<extlang> tags are equivalent\n\t\t// to a tag of the form <extlang>.\n\t\tlang, e := getLangID(scan.token)\n\t\tif lang != 0 {\n\t\t\tt.LangID = lang\n\t\t\tcopy(scan.b[langStart:], lang.String())\n\t\t\tscan.b[langStart+3] = '-'\n\t\t\tscan.start = langStart + 4\n\t\t}\n\t\tscan.gobble(e)\n\t\tend = scan.scan()\n\t}\n\tif len(scan.token) == 4 && isAlpha(scan.token[0]) {\n\t\tt.ScriptID, e = getScriptID(script, scan.token)\n\t\tif t.ScriptID == 0 {\n\t\t\tscan.gobble(e)\n\t\t}\n\t\tend = scan.scan()\n\t}\n\tif n := len(scan.token); n >= 2 && n <= 3 {\n\t\tt.RegionID, e = getRegionID(scan.token)\n\t\tif t.RegionID == 0 {\n\t\t\tscan.gobble(e)\n\t\t} else {\n\t\t\tscan.replace(t.RegionID.String())\n\t\t}\n\t\tend = scan.scan()\n\t}\n\tscan.toLower(scan.start, len(scan.b))\n\tt.pVariant = byte(end)\n\tend = parseVariants(scan, end, t)\n\tt.pExt = uint16(end)\n\treturn t, end\n}\n\nvar separator = []byte{'-'}\n\n// parseVariants scans tokens as long as each token is a valid variant string.\n// Duplicate variants are removed.\nfunc parseVariants(scan *scanner, end int, t Tag) int {\n\tstart := scan.start\n\tvarIDBuf := [4]uint8{}\n\tvariantBuf := [4][]byte{}\n\tvarID := varIDBuf[:0]\n\tvariant := variantBuf[:0]\n\tlast := -1\n\tneedSort := false\n\tfor ; len(scan.token) >= 4; scan.scan() {\n\t\t// TODO: measure the impact of needing this conversion and redesign\n\t\t// the data structure if there is an issue.\n\t\tv, ok := variantIndex[string(scan.token)]\n\t\tif !ok {\n\t\t\t// unknown variant\n\t\t\t// TODO: allow user-defined variants?\n\t\t\tscan.gobble(NewValueError(scan.token))\n\t\t\tcontinue\n\t\t}\n\t\tvarID = append(varID, v)\n\t\tvariant = append(variant, scan.token)\n\t\tif !needSort {\n\t\t\tif last < int(v) {\n\t\t\t\tlast = int(v)\n\t\t\t} else {\n\t\t\t\tneedSort = true\n\t\t\t\t// There is no legal combinations of more than 7 variants\n\t\t\t\t// (and this is by no means a useful sequence).\n\t\t\t\tconst maxVariants = 8\n\t\t\t\tif len(varID) > maxVariants {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tend = scan.end\n\t}\n\tif needSort {\n\t\tsort.Sort(variantsSort{varID, variant})\n\t\tk, l := 0, -1\n\t\tfor i, v := range varID {\n\t\t\tw := int(v)\n\t\t\tif l == w {\n\t\t\t\t// Remove duplicates.\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tvarID[k] = varID[i]\n\t\t\tvariant[k] = variant[i]\n\t\t\tk++\n\t\t\tl = w\n\t\t}\n\t\tif str := bytes.Join(variant[:k], separator); len(str) == 0 {\n\t\t\tend = start - 1\n\t\t} else {\n\t\t\tscan.resizeRange(start, end, len(str))\n\t\t\tcopy(scan.b[scan.start:], str)\n\t\t\tend = scan.end\n\t\t}\n\t}\n\treturn end\n}\n\ntype variantsSort struct {\n\ti []uint8\n\tv [][]byte\n}\n\nfunc (s variantsSort) Len() int {\n\treturn len(s.i)\n}\n\nfunc (s variantsSort) Swap(i, j int) {\n\ts.i[i], s.i[j] = s.i[j], s.i[i]\n\ts.v[i], s.v[j] = s.v[j], s.v[i]\n}\n\nfunc (s variantsSort) Less(i, j int) bool {\n\treturn s.i[i] < s.i[j]\n}\n\ntype bytesSort struct {\n\tb [][]byte\n\tn int // first n bytes to compare\n}\n\nfunc (b bytesSort) Len() int {\n\treturn len(b.b)\n}\n\nfunc (b bytesSort) Swap(i, j int) {\n\tb.b[i], b.b[j] = b.b[j], b.b[i]\n}\n\nfunc (b bytesSort) Less(i, j int) bool {\n\tfor k := 0; k < b.n; k++ {\n\t\tif b.b[i][k] == b.b[j][k] {\n\t\t\tcontinue\n\t\t}\n\t\treturn b.b[i][k] < b.b[j][k]\n\t}\n\treturn false\n}\n\n// parseExtensions parses and normalizes the extensions in the buffer.\n// It returns the last position of scan.b that is part of any extension.\n// It also trims scan.b to remove excess parts accordingly.\nfunc parseExtensions(scan *scanner) int {\n\tstart := scan.start\n\texts := [][]byte{}\n\tprivate := []byte{}\n\tend := scan.end\n\tfor len(scan.token) == 1 {\n\t\textStart := scan.start\n\t\text := scan.token[0]\n\t\tend = parseExtension(scan)\n\t\textension := scan.b[extStart:end]\n\t\tif len(extension) < 3 || (ext != 'x' && len(extension) < 4) {\n\t\t\tscan.setError(ErrSyntax)\n\t\t\tend = extStart\n\t\t\tcontinue\n\t\t} else if start == extStart && (ext == 'x' || scan.start == len(scan.b)) {\n\t\t\tscan.b = scan.b[:end]\n\t\t\treturn end\n\t\t} else if ext == 'x' {\n\t\t\tprivate = extension\n\t\t\tbreak\n\t\t}\n\t\texts = append(exts, extension)\n\t}\n\tsort.Sort(bytesSort{exts, 1})\n\tif len(private) > 0 {\n\t\texts = append(exts, private)\n\t}\n\tscan.b = scan.b[:start]\n\tif len(exts) > 0 {\n\t\tscan.b = append(scan.b, bytes.Join(exts, separator)...)\n\t} else if start > 0 {\n\t\t// Strip trailing '-'.\n\t\tscan.b = scan.b[:start-1]\n\t}\n\treturn end\n}\n\n// parseExtension parses a single extension and returns the position of\n// the extension end.\nfunc parseExtension(scan *scanner) int {\n\tstart, end := scan.start, scan.end\n\tswitch scan.token[0] {\n\tcase 'u':\n\t\tattrStart := end\n\t\tscan.scan()\n\t\tfor last := []byte{}; len(scan.token) > 2; scan.scan() {\n\t\t\tif bytes.Compare(scan.token, last) != -1 {\n\t\t\t\t// Attributes are unsorted. Start over from scratch.\n\t\t\t\tp := attrStart + 1\n\t\t\t\tscan.next = p\n\t\t\t\tattrs := [][]byte{}\n\t\t\t\tfor scan.scan(); len(scan.token) > 2; scan.scan() {\n\t\t\t\t\tattrs = append(attrs, scan.token)\n\t\t\t\t\tend = scan.end\n\t\t\t\t}\n\t\t\t\tsort.Sort(bytesSort{attrs, 3})\n\t\t\t\tcopy(scan.b[p:], bytes.Join(attrs, separator))\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tlast = scan.token\n\t\t\tend = scan.end\n\t\t}\n\t\tvar last, key []byte\n\t\tfor attrEnd := end; len(scan.token) == 2; last = key {\n\t\t\tkey = scan.token\n\t\t\tkeyEnd := scan.end\n\t\t\tend = scan.acceptMinSize(3)\n\t\t\t// TODO: check key value validity\n\t\t\tif keyEnd == end || bytes.Compare(key, last) != 1 {\n\t\t\t\t// We have an invalid key or the keys are not sorted.\n\t\t\t\t// Start scanning keys from scratch and reorder.\n\t\t\t\tp := attrEnd + 1\n\t\t\t\tscan.next = p\n\t\t\t\tkeys := [][]byte{}\n\t\t\t\tfor scan.scan(); len(scan.token) == 2; {\n\t\t\t\t\tkeyStart, keyEnd := scan.start, scan.end\n\t\t\t\t\tend = scan.acceptMinSize(3)\n\t\t\t\t\tif keyEnd != end {\n\t\t\t\t\t\tkeys = append(keys, scan.b[keyStart:end])\n\t\t\t\t\t} else {\n\t\t\t\t\t\tscan.setError(ErrSyntax)\n\t\t\t\t\t\tend = keyStart\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tsort.Stable(bytesSort{keys, 2})\n\t\t\t\tif n := len(keys); n > 0 {\n\t\t\t\t\tk := 0\n\t\t\t\t\tfor i := 1; i < n; i++ {\n\t\t\t\t\t\tif !bytes.Equal(keys[k][:2], keys[i][:2]) {\n\t\t\t\t\t\t\tk++\n\t\t\t\t\t\t\tkeys[k] = keys[i]\n\t\t\t\t\t\t} else if !bytes.Equal(keys[k], keys[i]) {\n\t\t\t\t\t\t\tscan.setError(ErrDuplicateKey)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tkeys = keys[:k+1]\n\t\t\t\t}\n\t\t\t\treordered := bytes.Join(keys, separator)\n\t\t\t\tif e := p + len(reordered); e < end {\n\t\t\t\t\tscan.deleteRange(e, end)\n\t\t\t\t\tend = e\n\t\t\t\t}\n\t\t\t\tcopy(scan.b[p:], reordered)\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\tcase 't':\n\t\tscan.scan()\n\t\tif n := len(scan.token); n >= 2 && n <= 3 && isAlpha(scan.token[1]) {\n\t\t\t_, end = parseTag(scan)\n\t\t\tscan.toLower(start, end)\n\t\t}\n\t\tfor len(scan.token) == 2 && !isAlpha(scan.token[1]) {\n\t\t\tend = scan.acceptMinSize(3)\n\t\t}\n\tcase 'x':\n\t\tend = scan.acceptMinSize(1)\n\tdefault:\n\t\tend = scan.acceptMinSize(2)\n\t}\n\treturn end\n}\n\n// getExtension returns the name, body and end position of the extension.\nfunc getExtension(s string, p int) (end int, ext string) {\n\tif s[p] == '-' {\n\t\tp++\n\t}\n\tif s[p] == 'x' {\n\t\treturn len(s), s[p:]\n\t}\n\tend = nextExtension(s, p)\n\treturn end, s[p:end]\n}\n\n// nextExtension finds the next extension within the string, searching\n// for the -<char>- pattern from position p.\n// In the fast majority of cases, language tags will have at most\n// one extension and extensions tend to be small.\nfunc nextExtension(s string, p int) int {\n\tfor n := len(s) - 3; p < n; {\n\t\tif s[p] == '-' {\n\t\t\tif s[p+2] == '-' {\n\t\t\t\treturn p\n\t\t\t}\n\t\t\tp += 3\n\t\t} else {\n\t\t\tp++\n\t\t}\n\t}\n\treturn len(s)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/tables.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\npackage language\n\nimport \"golang.org/x/text/internal/tag\"\n\n// CLDRVersion is the CLDR version from which the tables in this package are derived.\nconst CLDRVersion = \"32\"\n\nconst NumLanguages = 8665\n\nconst NumScripts = 242\n\nconst NumRegions = 357\n\ntype FromTo struct {\n\tFrom uint16\n\tTo   uint16\n}\n\nconst nonCanonicalUnd = 1201\nconst (\n\t_af  = 22\n\t_am  = 39\n\t_ar  = 58\n\t_az  = 88\n\t_bg  = 126\n\t_bn  = 165\n\t_ca  = 215\n\t_cs  = 250\n\t_da  = 257\n\t_de  = 269\n\t_el  = 310\n\t_en  = 313\n\t_es  = 318\n\t_et  = 320\n\t_fa  = 328\n\t_fi  = 337\n\t_fil = 339\n\t_fr  = 350\n\t_gu  = 420\n\t_he  = 444\n\t_hi  = 446\n\t_hr  = 465\n\t_hu  = 469\n\t_hy  = 471\n\t_id  = 481\n\t_is  = 504\n\t_it  = 505\n\t_ja  = 512\n\t_ka  = 528\n\t_kk  = 578\n\t_km  = 586\n\t_kn  = 593\n\t_ko  = 596\n\t_ky  = 650\n\t_lo  = 696\n\t_lt  = 704\n\t_lv  = 711\n\t_mk  = 767\n\t_ml  = 772\n\t_mn  = 779\n\t_mo  = 784\n\t_mr  = 795\n\t_ms  = 799\n\t_mul = 806\n\t_my  = 817\n\t_nb  = 839\n\t_ne  = 849\n\t_nl  = 871\n\t_no  = 879\n\t_pa  = 925\n\t_pl  = 947\n\t_pt  = 960\n\t_ro  = 988\n\t_ru  = 994\n\t_sh  = 1031\n\t_si  = 1036\n\t_sk  = 1042\n\t_sl  = 1046\n\t_sq  = 1073\n\t_sr  = 1074\n\t_sv  = 1092\n\t_sw  = 1093\n\t_ta  = 1104\n\t_te  = 1121\n\t_th  = 1131\n\t_tl  = 1146\n\t_tn  = 1152\n\t_tr  = 1162\n\t_uk  = 1198\n\t_ur  = 1204\n\t_uz  = 1212\n\t_vi  = 1219\n\t_zh  = 1321\n\t_zu  = 1327\n\t_jbo = 515\n\t_ami = 1650\n\t_bnn = 2357\n\t_hak = 438\n\t_tlh = 14467\n\t_lb  = 661\n\t_nv  = 899\n\t_pwn = 12055\n\t_tao = 14188\n\t_tay = 14198\n\t_tsu = 14662\n\t_nn  = 874\n\t_sfb = 13629\n\t_vgt = 15701\n\t_sgg = 13660\n\t_cmn = 3007\n\t_nan = 835\n\t_hsn = 467\n)\n\nconst langPrivateStart = 0x2f72\n\nconst langPrivateEnd = 0x3179\n\n// lang holds an alphabetically sorted list of ISO-639 language identifiers.\n// All entries are 4 bytes. The index of the identifier (divided by 4) is the language tag.\n// For 2-byte language identifiers, the two successive bytes have the following meaning:\n//     - if the first letter of the 2- and 3-letter ISO codes are the same:\n//       the second and third letter of the 3-letter ISO code.\n//     - otherwise: a 0 and a by 2 bits right-shifted index into altLangISO3.\n// For 3-byte language identifiers the 4th byte is 0.\nconst lang tag.Index = \"\" + // Size: 5324 bytes\n\t\"---\\x00aaaraai\\x00aak\\x00aau\\x00abbkabi\\x00abq\\x00abr\\x00abt\\x00aby\\x00a\" +\n\t\"cd\\x00ace\\x00ach\\x00ada\\x00ade\\x00adj\\x00ady\\x00adz\\x00aeveaeb\\x00aey\" +\n\t\"\\x00affragc\\x00agd\\x00agg\\x00agm\\x00ago\\x00agq\\x00aha\\x00ahl\\x00aho\\x00a\" +\n\t\"jg\\x00akkaakk\\x00ala\\x00ali\\x00aln\\x00alt\\x00ammhamm\\x00amn\\x00amo\\x00am\" +\n\t\"p\\x00anrganc\\x00ank\\x00ann\\x00any\\x00aoj\\x00aom\\x00aoz\\x00apc\\x00apd\\x00\" +\n\t\"ape\\x00apr\\x00aps\\x00apz\\x00arraarc\\x00arh\\x00arn\\x00aro\\x00arq\\x00ars\" +\n\t\"\\x00ary\\x00arz\\x00assmasa\\x00ase\\x00asg\\x00aso\\x00ast\\x00ata\\x00atg\\x00a\" +\n\t\"tj\\x00auy\\x00avvaavl\\x00avn\\x00avt\\x00avu\\x00awa\\x00awb\\x00awo\\x00awx\" +\n\t\"\\x00ayymayb\\x00azzebaakbal\\x00ban\\x00bap\\x00bar\\x00bas\\x00bav\\x00bax\\x00\" +\n\t\"bba\\x00bbb\\x00bbc\\x00bbd\\x00bbj\\x00bbp\\x00bbr\\x00bcf\\x00bch\\x00bci\\x00bc\" +\n\t\"m\\x00bcn\\x00bco\\x00bcq\\x00bcu\\x00bdd\\x00beelbef\\x00beh\\x00bej\\x00bem\\x00\" +\n\t\"bet\\x00bew\\x00bex\\x00bez\\x00bfd\\x00bfq\\x00bft\\x00bfy\\x00bgulbgc\\x00bgn\" +\n\t\"\\x00bgx\\x00bhihbhb\\x00bhg\\x00bhi\\x00bhk\\x00bhl\\x00bho\\x00bhy\\x00biisbib\" +\n\t\"\\x00big\\x00bik\\x00bim\\x00bin\\x00bio\\x00biq\\x00bjh\\x00bji\\x00bjj\\x00bjn\" +\n\t\"\\x00bjo\\x00bjr\\x00bjt\\x00bjz\\x00bkc\\x00bkm\\x00bkq\\x00bku\\x00bkv\\x00blt\" +\n\t\"\\x00bmambmh\\x00bmk\\x00bmq\\x00bmu\\x00bnenbng\\x00bnm\\x00bnp\\x00boodboj\\x00\" +\n\t\"bom\\x00bon\\x00bpy\\x00bqc\\x00bqi\\x00bqp\\x00bqv\\x00brrebra\\x00brh\\x00brx\" +\n\t\"\\x00brz\\x00bsosbsj\\x00bsq\\x00bss\\x00bst\\x00bto\\x00btt\\x00btv\\x00bua\\x00b\" +\n\t\"uc\\x00bud\\x00bug\\x00buk\\x00bum\\x00buo\\x00bus\\x00buu\\x00bvb\\x00bwd\\x00bwr\" +\n\t\"\\x00bxh\\x00bye\\x00byn\\x00byr\\x00bys\\x00byv\\x00byx\\x00bza\\x00bze\\x00bzf\" +\n\t\"\\x00bzh\\x00bzw\\x00caatcan\\x00cbj\\x00cch\\x00ccp\\x00ceheceb\\x00cfa\\x00cgg\" +\n\t\"\\x00chhachk\\x00chm\\x00cho\\x00chp\\x00chr\\x00cja\\x00cjm\\x00cjv\\x00ckb\\x00c\" +\n\t\"kl\\x00cko\\x00cky\\x00cla\\x00cme\\x00cmg\\x00cooscop\\x00cps\\x00crrecrh\\x00cr\" +\n\t\"j\\x00crk\\x00crl\\x00crm\\x00crs\\x00csescsb\\x00csw\\x00ctd\\x00cuhucvhvcyymda\" +\n\t\"andad\\x00daf\\x00dag\\x00dah\\x00dak\\x00dar\\x00dav\\x00dbd\\x00dbq\\x00dcc\\x00\" +\n\t\"ddn\\x00deeuded\\x00den\\x00dga\\x00dgh\\x00dgi\\x00dgl\\x00dgr\\x00dgz\\x00dia\" +\n\t\"\\x00dje\\x00dnj\\x00dob\\x00doi\\x00dop\\x00dow\\x00dri\\x00drs\\x00dsb\\x00dtm\" +\n\t\"\\x00dtp\\x00dts\\x00dty\\x00dua\\x00duc\\x00dud\\x00dug\\x00dvivdva\\x00dww\\x00d\" +\n\t\"yo\\x00dyu\\x00dzzodzg\\x00ebu\\x00eeweefi\\x00egl\\x00egy\\x00eka\\x00eky\\x00el\" +\n\t\"llema\\x00emi\\x00enngenn\\x00enq\\x00eopoeri\\x00es\\x00\\x05esu\\x00etstetr\" +\n\t\"\\x00ett\\x00etu\\x00etx\\x00euusewo\\x00ext\\x00faasfaa\\x00fab\\x00fag\\x00fai\" +\n\t\"\\x00fan\\x00ffulffi\\x00ffm\\x00fiinfia\\x00fil\\x00fit\\x00fjijflr\\x00fmp\\x00\" +\n\t\"foaofod\\x00fon\\x00for\\x00fpe\\x00fqs\\x00frrafrc\\x00frp\\x00frr\\x00frs\\x00f\" +\n\t\"ub\\x00fud\\x00fue\\x00fuf\\x00fuh\\x00fuq\\x00fur\\x00fuv\\x00fuy\\x00fvr\\x00fyr\" +\n\t\"ygalegaa\\x00gaf\\x00gag\\x00gah\\x00gaj\\x00gam\\x00gan\\x00gaw\\x00gay\\x00gba\" +\n\t\"\\x00gbf\\x00gbm\\x00gby\\x00gbz\\x00gcr\\x00gdlagde\\x00gdn\\x00gdr\\x00geb\\x00g\" +\n\t\"ej\\x00gel\\x00gez\\x00gfk\\x00ggn\\x00ghs\\x00gil\\x00gim\\x00gjk\\x00gjn\\x00gju\" +\n\t\"\\x00gkn\\x00gkp\\x00gllgglk\\x00gmm\\x00gmv\\x00gnrngnd\\x00gng\\x00god\\x00gof\" +\n\t\"\\x00goi\\x00gom\\x00gon\\x00gor\\x00gos\\x00got\\x00grb\\x00grc\\x00grt\\x00grw\" +\n\t\"\\x00gsw\\x00guujgub\\x00guc\\x00gud\\x00gur\\x00guw\\x00gux\\x00guz\\x00gvlvgvf\" +\n\t\"\\x00gvr\\x00gvs\\x00gwc\\x00gwi\\x00gwt\\x00gyi\\x00haauhag\\x00hak\\x00ham\\x00h\" +\n\t\"aw\\x00haz\\x00hbb\\x00hdy\\x00heebhhy\\x00hiinhia\\x00hif\\x00hig\\x00hih\\x00hi\" +\n\t\"l\\x00hla\\x00hlu\\x00hmd\\x00hmt\\x00hnd\\x00hne\\x00hnj\\x00hnn\\x00hno\\x00homo\" +\n\t\"hoc\\x00hoj\\x00hot\\x00hrrvhsb\\x00hsn\\x00htathuunhui\\x00hyyehzerianaian\" +\n\t\"\\x00iar\\x00iba\\x00ibb\\x00iby\\x00ica\\x00ich\\x00idndidd\\x00idi\\x00idu\\x00i\" +\n\t\"eleife\\x00igboigb\\x00ige\\x00iiiiijj\\x00ikpkikk\\x00ikt\\x00ikw\\x00ikx\\x00i\" +\n\t\"lo\\x00imo\\x00inndinh\\x00iodoiou\\x00iri\\x00isslittaiukuiw\\x00\\x03iwm\\x00i\" +\n\t\"ws\\x00izh\\x00izi\\x00japnjab\\x00jam\\x00jbo\\x00jbu\\x00jen\\x00jgk\\x00jgo\" +\n\t\"\\x00ji\\x00\\x06jib\\x00jmc\\x00jml\\x00jra\\x00jut\\x00jvavjwavkaatkaa\\x00kab\" +\n\t\"\\x00kac\\x00kad\\x00kai\\x00kaj\\x00kam\\x00kao\\x00kbd\\x00kbm\\x00kbp\\x00kbq\" +\n\t\"\\x00kbx\\x00kby\\x00kcg\\x00kck\\x00kcl\\x00kct\\x00kde\\x00kdh\\x00kdl\\x00kdt\" +\n\t\"\\x00kea\\x00ken\\x00kez\\x00kfo\\x00kfr\\x00kfy\\x00kgonkge\\x00kgf\\x00kgp\\x00k\" +\n\t\"ha\\x00khb\\x00khn\\x00khq\\x00khs\\x00kht\\x00khw\\x00khz\\x00kiikkij\\x00kiu\" +\n\t\"\\x00kiw\\x00kjuakjd\\x00kjg\\x00kjs\\x00kjy\\x00kkazkkc\\x00kkj\\x00klalkln\\x00\" +\n\t\"klq\\x00klt\\x00klx\\x00kmhmkmb\\x00kmh\\x00kmo\\x00kms\\x00kmu\\x00kmw\\x00knank\" +\n\t\"nf\\x00knp\\x00koorkoi\\x00kok\\x00kol\\x00kos\\x00koz\\x00kpe\\x00kpf\\x00kpo\" +\n\t\"\\x00kpr\\x00kpx\\x00kqb\\x00kqf\\x00kqs\\x00kqy\\x00kraukrc\\x00kri\\x00krj\\x00k\" +\n\t\"rl\\x00krs\\x00kru\\x00ksasksb\\x00ksd\\x00ksf\\x00ksh\\x00ksj\\x00ksr\\x00ktb\" +\n\t\"\\x00ktm\\x00kto\\x00kuurkub\\x00kud\\x00kue\\x00kuj\\x00kum\\x00kun\\x00kup\\x00k\" +\n\t\"us\\x00kvomkvg\\x00kvr\\x00kvx\\x00kw\\x00\\x01kwj\\x00kwo\\x00kxa\\x00kxc\\x00kxm\" +\n\t\"\\x00kxp\\x00kxw\\x00kxz\\x00kyirkye\\x00kyx\\x00kzr\\x00laatlab\\x00lad\\x00lag\" +\n\t\"\\x00lah\\x00laj\\x00las\\x00lbtzlbe\\x00lbu\\x00lbw\\x00lcm\\x00lcp\\x00ldb\\x00l\" +\n\t\"ed\\x00lee\\x00lem\\x00lep\\x00leq\\x00leu\\x00lez\\x00lguglgg\\x00liimlia\\x00li\" +\n\t\"d\\x00lif\\x00lig\\x00lih\\x00lij\\x00lis\\x00ljp\\x00lki\\x00lkt\\x00lle\\x00lln\" +\n\t\"\\x00lmn\\x00lmo\\x00lmp\\x00lninlns\\x00lnu\\x00loaoloj\\x00lok\\x00lol\\x00lor\" +\n\t\"\\x00los\\x00loz\\x00lrc\\x00ltitltg\\x00luublua\\x00luo\\x00luy\\x00luz\\x00lvav\" +\n\t\"lwl\\x00lzh\\x00lzz\\x00mad\\x00maf\\x00mag\\x00mai\\x00mak\\x00man\\x00mas\\x00ma\" +\n\t\"w\\x00maz\\x00mbh\\x00mbo\\x00mbq\\x00mbu\\x00mbw\\x00mci\\x00mcp\\x00mcq\\x00mcr\" +\n\t\"\\x00mcu\\x00mda\\x00mde\\x00mdf\\x00mdh\\x00mdj\\x00mdr\\x00mdx\\x00med\\x00mee\" +\n\t\"\\x00mek\\x00men\\x00mer\\x00met\\x00meu\\x00mfa\\x00mfe\\x00mfn\\x00mfo\\x00mfq\" +\n\t\"\\x00mglgmgh\\x00mgl\\x00mgo\\x00mgp\\x00mgy\\x00mhahmhi\\x00mhl\\x00mirimif\\x00\" +\n\t\"min\\x00mis\\x00miw\\x00mkkdmki\\x00mkl\\x00mkp\\x00mkw\\x00mlalmle\\x00mlp\\x00m\" +\n\t\"ls\\x00mmo\\x00mmu\\x00mmx\\x00mnonmna\\x00mnf\\x00mni\\x00mnw\\x00moolmoa\\x00mo\" +\n\t\"e\\x00moh\\x00mos\\x00mox\\x00mpp\\x00mps\\x00mpt\\x00mpx\\x00mql\\x00mrarmrd\\x00\" +\n\t\"mrj\\x00mro\\x00mssamtltmtc\\x00mtf\\x00mti\\x00mtr\\x00mua\\x00mul\\x00mur\\x00m\" +\n\t\"us\\x00mva\\x00mvn\\x00mvy\\x00mwk\\x00mwr\\x00mwv\\x00mxc\\x00mxm\\x00myyamyk\" +\n\t\"\\x00mym\\x00myv\\x00myw\\x00myx\\x00myz\\x00mzk\\x00mzm\\x00mzn\\x00mzp\\x00mzw\" +\n\t\"\\x00mzz\\x00naaunac\\x00naf\\x00nah\\x00nak\\x00nan\\x00nap\\x00naq\\x00nas\\x00n\" +\n\t\"bobnca\\x00nce\\x00ncf\\x00nch\\x00nco\\x00ncu\\x00nddendc\\x00nds\\x00neepneb\" +\n\t\"\\x00new\\x00nex\\x00nfr\\x00ngdonga\\x00ngb\\x00ngl\\x00nhb\\x00nhe\\x00nhw\\x00n\" +\n\t\"if\\x00nii\\x00nij\\x00nin\\x00niu\\x00niy\\x00niz\\x00njo\\x00nkg\\x00nko\\x00nll\" +\n\t\"dnmg\\x00nmz\\x00nnnonnf\\x00nnh\\x00nnk\\x00nnm\\x00noornod\\x00noe\\x00non\\x00\" +\n\t\"nop\\x00nou\\x00nqo\\x00nrblnrb\\x00nsk\\x00nsn\\x00nso\\x00nss\\x00ntm\\x00ntr\" +\n\t\"\\x00nui\\x00nup\\x00nus\\x00nuv\\x00nux\\x00nvavnwb\\x00nxq\\x00nxr\\x00nyyanym\" +\n\t\"\\x00nyn\\x00nzi\\x00occiogc\\x00ojjiokr\\x00okv\\x00omrmong\\x00onn\\x00ons\\x00\" +\n\t\"opm\\x00orrioro\\x00oru\\x00osssosa\\x00ota\\x00otk\\x00ozm\\x00paanpag\\x00pal\" +\n\t\"\\x00pam\\x00pap\\x00pau\\x00pbi\\x00pcd\\x00pcm\\x00pdc\\x00pdt\\x00ped\\x00peo\" +\n\t\"\\x00pex\\x00pfl\\x00phl\\x00phn\\x00pilipil\\x00pip\\x00pka\\x00pko\\x00plolpla\" +\n\t\"\\x00pms\\x00png\\x00pnn\\x00pnt\\x00pon\\x00ppo\\x00pra\\x00prd\\x00prg\\x00psusp\" +\n\t\"ss\\x00ptorptp\\x00puu\\x00pwa\\x00quuequc\\x00qug\\x00rai\\x00raj\\x00rao\\x00rc\" +\n\t\"f\\x00rej\\x00rel\\x00res\\x00rgn\\x00rhg\\x00ria\\x00rif\\x00rjs\\x00rkt\\x00rmoh\" +\n\t\"rmf\\x00rmo\\x00rmt\\x00rmu\\x00rnunrna\\x00rng\\x00roonrob\\x00rof\\x00roo\\x00r\" +\n\t\"ro\\x00rtm\\x00ruusrue\\x00rug\\x00rw\\x00\\x04rwk\\x00rwo\\x00ryu\\x00saansaf\" +\n\t\"\\x00sah\\x00saq\\x00sas\\x00sat\\x00sav\\x00saz\\x00sba\\x00sbe\\x00sbp\\x00scrds\" +\n\t\"ck\\x00scl\\x00scn\\x00sco\\x00scs\\x00sdndsdc\\x00sdh\\x00semesef\\x00seh\\x00se\" +\n\t\"i\\x00ses\\x00sgagsga\\x00sgs\\x00sgw\\x00sgz\\x00sh\\x00\\x02shi\\x00shk\\x00shn\" +\n\t\"\\x00shu\\x00siinsid\\x00sig\\x00sil\\x00sim\\x00sjr\\x00sklkskc\\x00skr\\x00sks\" +\n\t\"\\x00sllvsld\\x00sli\\x00sll\\x00sly\\x00smmosma\\x00smi\\x00smj\\x00smn\\x00smp\" +\n\t\"\\x00smq\\x00sms\\x00snnasnc\\x00snk\\x00snp\\x00snx\\x00sny\\x00soomsok\\x00soq\" +\n\t\"\\x00sou\\x00soy\\x00spd\\x00spl\\x00sps\\x00sqqisrrpsrb\\x00srn\\x00srr\\x00srx\" +\n\t\"\\x00ssswssd\\x00ssg\\x00ssy\\x00stotstk\\x00stq\\x00suunsua\\x00sue\\x00suk\\x00\" +\n\t\"sur\\x00sus\\x00svweswwaswb\\x00swc\\x00swg\\x00swp\\x00swv\\x00sxn\\x00sxw\\x00s\" +\n\t\"yl\\x00syr\\x00szl\\x00taamtaj\\x00tal\\x00tan\\x00taq\\x00tbc\\x00tbd\\x00tbf\" +\n\t\"\\x00tbg\\x00tbo\\x00tbw\\x00tbz\\x00tci\\x00tcy\\x00tdd\\x00tdg\\x00tdh\\x00teelt\" +\n\t\"ed\\x00tem\\x00teo\\x00tet\\x00tfi\\x00tggktgc\\x00tgo\\x00tgu\\x00thhathl\\x00th\" +\n\t\"q\\x00thr\\x00tiirtif\\x00tig\\x00tik\\x00tim\\x00tio\\x00tiv\\x00tkuktkl\\x00tkr\" +\n\t\"\\x00tkt\\x00tlgltlf\\x00tlx\\x00tly\\x00tmh\\x00tmy\\x00tnsntnh\\x00toontof\\x00\" +\n\t\"tog\\x00toq\\x00tpi\\x00tpm\\x00tpz\\x00tqo\\x00trurtru\\x00trv\\x00trw\\x00tssot\" +\n\t\"sd\\x00tsf\\x00tsg\\x00tsj\\x00tsw\\x00ttatttd\\x00tte\\x00ttj\\x00ttr\\x00tts\" +\n\t\"\\x00ttt\\x00tuh\\x00tul\\x00tum\\x00tuq\\x00tvd\\x00tvl\\x00tvu\\x00twwitwh\\x00t\" +\n\t\"wq\\x00txg\\x00tyahtya\\x00tyv\\x00tzm\\x00ubu\\x00udm\\x00ugiguga\\x00ukkruli\" +\n\t\"\\x00umb\\x00und\\x00unr\\x00unx\\x00urrduri\\x00urt\\x00urw\\x00usa\\x00utr\\x00u\" +\n\t\"vh\\x00uvl\\x00uzzbvag\\x00vai\\x00van\\x00veenvec\\x00vep\\x00viievic\\x00viv\" +\n\t\"\\x00vls\\x00vmf\\x00vmw\\x00voolvot\\x00vro\\x00vun\\x00vut\\x00walnwae\\x00waj\" +\n\t\"\\x00wal\\x00wan\\x00war\\x00wbp\\x00wbq\\x00wbr\\x00wci\\x00wer\\x00wgi\\x00whg\" +\n\t\"\\x00wib\\x00wiu\\x00wiv\\x00wja\\x00wji\\x00wls\\x00wmo\\x00wnc\\x00wni\\x00wnu\" +\n\t\"\\x00woolwob\\x00wos\\x00wrs\\x00wsk\\x00wtm\\x00wuu\\x00wuv\\x00wwa\\x00xav\\x00x\" +\n\t\"bi\\x00xcr\\x00xes\\x00xhhoxla\\x00xlc\\x00xld\\x00xmf\\x00xmn\\x00xmr\\x00xna\" +\n\t\"\\x00xnr\\x00xog\\x00xon\\x00xpr\\x00xrb\\x00xsa\\x00xsi\\x00xsm\\x00xsr\\x00xwe\" +\n\t\"\\x00yam\\x00yao\\x00yap\\x00yas\\x00yat\\x00yav\\x00yay\\x00yaz\\x00yba\\x00ybb\" +\n\t\"\\x00yby\\x00yer\\x00ygr\\x00ygw\\x00yiidyko\\x00yle\\x00ylg\\x00yll\\x00yml\\x00y\" +\n\t\"ooryon\\x00yrb\\x00yre\\x00yrl\\x00yss\\x00yua\\x00yue\\x00yuj\\x00yut\\x00yuw\" +\n\t\"\\x00zahazag\\x00zbl\\x00zdj\\x00zea\\x00zgh\\x00zhhozhx\\x00zia\\x00zlm\\x00zmi\" +\n\t\"\\x00zne\\x00zuulzxx\\x00zza\\x00\\xff\\xff\\xff\\xff\"\n\nconst langNoIndexOffset = 1330\n\n// langNoIndex is a bit vector of all 3-letter language codes that are not used as an index\n// in lookup tables. The language ids for these language codes are derived directly\n// from the letters and are not consecutive.\n// Size: 2197 bytes, 2197 elements\nvar langNoIndex = [2197]uint8{\n\t// Entry 0 - 3F\n\t0xff, 0xf8, 0xed, 0xfe, 0xeb, 0xd3, 0x3b, 0xd2,\n\t0xfb, 0xbf, 0x7a, 0xfa, 0x37, 0x1d, 0x3c, 0x57,\n\t0x6e, 0x97, 0x73, 0x38, 0xfb, 0xea, 0xbf, 0x70,\n\t0xad, 0x03, 0xff, 0xff, 0xcf, 0x05, 0x84, 0x62,\n\t0xe9, 0xbf, 0xfd, 0xbf, 0xbf, 0xf7, 0xfd, 0x77,\n\t0x0f, 0xff, 0xef, 0x6f, 0xff, 0xfb, 0xdf, 0xe2,\n\t0xc9, 0xf8, 0x7f, 0x7e, 0x4d, 0xb8, 0x0a, 0x6a,\n\t0x7c, 0xea, 0xe3, 0xfa, 0x7a, 0xbf, 0x67, 0xff,\n\t// Entry 40 - 7F\n\t0xff, 0xff, 0xff, 0xdf, 0x2a, 0x54, 0x91, 0xc0,\n\t0x5d, 0xe3, 0x97, 0x14, 0x07, 0x20, 0xdd, 0xed,\n\t0x9f, 0x3f, 0xc9, 0x21, 0xf8, 0x3f, 0x94, 0x35,\n\t0x7c, 0x5f, 0xff, 0x5f, 0x8e, 0x6e, 0xdf, 0xff,\n\t0xff, 0xff, 0x55, 0x7c, 0xd3, 0xfd, 0xbf, 0xb5,\n\t0x7b, 0xdf, 0x7f, 0xf7, 0xca, 0xfe, 0xdb, 0xa3,\n\t0xa8, 0xff, 0x1f, 0x67, 0x7d, 0xeb, 0xef, 0xce,\n\t0xff, 0xff, 0x9f, 0xff, 0xb7, 0xef, 0xfe, 0xcf,\n\t// Entry 80 - BF\n\t0xdb, 0xff, 0xf3, 0xcd, 0xfb, 0x2f, 0xff, 0xff,\n\t0xbb, 0xee, 0xf7, 0xbd, 0xdb, 0xff, 0x5f, 0xf7,\n\t0xfd, 0xf2, 0xfd, 0xff, 0x5e, 0x2f, 0x3b, 0xba,\n\t0x7e, 0xff, 0xff, 0xfe, 0xf7, 0xff, 0xdd, 0xff,\n\t0xfd, 0xdf, 0xfb, 0xfe, 0x9d, 0xb4, 0xd3, 0xff,\n\t0xef, 0xff, 0xdf, 0xf7, 0x7f, 0xb7, 0xfd, 0xd5,\n\t0xa5, 0x77, 0x40, 0xff, 0x9c, 0xc1, 0x41, 0x2c,\n\t0x08, 0x20, 0x41, 0x00, 0x50, 0x40, 0x00, 0x80,\n\t// Entry C0 - FF\n\t0xfb, 0x4a, 0xf2, 0x9f, 0xb4, 0x42, 0x41, 0x96,\n\t0x1b, 0x14, 0x08, 0xf2, 0x2b, 0xe7, 0x17, 0x56,\n\t0x05, 0x7d, 0x0e, 0x1c, 0x37, 0x71, 0xf3, 0xef,\n\t0x97, 0xff, 0x5d, 0x38, 0x64, 0x08, 0x00, 0x10,\n\t0xbc, 0x85, 0xaf, 0xdf, 0xff, 0xf7, 0x73, 0x35,\n\t0x3e, 0x87, 0xc7, 0xdf, 0xff, 0x00, 0x81, 0x00,\n\t0xb0, 0x05, 0x80, 0x00, 0x00, 0x00, 0x00, 0x03,\n\t0x40, 0x00, 0x40, 0x92, 0x21, 0x50, 0xb1, 0x5d,\n\t// Entry 100 - 13F\n\t0xfd, 0xdc, 0xbe, 0x5e, 0x00, 0x00, 0x02, 0x64,\n\t0x0d, 0x19, 0x41, 0xdf, 0x79, 0x22, 0x00, 0x00,\n\t0x00, 0x5e, 0x64, 0xdc, 0x24, 0xe5, 0xd9, 0xe3,\n\t0xfe, 0xff, 0xfd, 0xcb, 0x9f, 0x14, 0x01, 0x0c,\n\t0x86, 0x00, 0xd1, 0x00, 0xf0, 0xc5, 0x67, 0x5f,\n\t0x56, 0x89, 0x5e, 0xb5, 0x6c, 0xaf, 0x03, 0x00,\n\t0x02, 0x00, 0x00, 0x00, 0xc0, 0x37, 0xda, 0x56,\n\t0x90, 0x69, 0x01, 0x2c, 0x96, 0x69, 0x20, 0xfb,\n\t// Entry 140 - 17F\n\t0xff, 0x3f, 0x00, 0x00, 0x00, 0x01, 0x08, 0x16,\n\t0x01, 0x00, 0x00, 0xb0, 0x14, 0x03, 0x50, 0x06,\n\t0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x11, 0x09,\n\t0x00, 0x00, 0x60, 0x10, 0x00, 0x00, 0x00, 0x10,\n\t0x00, 0x00, 0x44, 0x00, 0x00, 0x10, 0x00, 0x04,\n\t0x08, 0x00, 0x00, 0x04, 0x00, 0x80, 0x28, 0x04,\n\t0x00, 0x00, 0x40, 0xd5, 0x2d, 0x00, 0x64, 0x35,\n\t0x24, 0x52, 0xf4, 0xd4, 0xbd, 0x62, 0xc9, 0x03,\n\t// Entry 180 - 1BF\n\t0x00, 0x80, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x04, 0x13, 0x39, 0x01, 0xdd, 0x57, 0x98,\n\t0x21, 0x18, 0x81, 0x00, 0x00, 0x01, 0x40, 0x82,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x01, 0x40, 0x00, 0x44, 0x00, 0x00, 0x80, 0xea,\n\t0xa9, 0x39, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,\n\t// Entry 1C0 - 1FF\n\t0x00, 0x01, 0x28, 0x05, 0x00, 0x00, 0x00, 0x00,\n\t0x04, 0x20, 0x04, 0xa6, 0x00, 0x04, 0x00, 0x00,\n\t0x81, 0x50, 0x00, 0x00, 0x00, 0x11, 0x84, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x55,\n\t0x02, 0x10, 0x08, 0x04, 0x00, 0x00, 0x00, 0x40,\n\t0x30, 0x83, 0x01, 0x00, 0x00, 0x00, 0x11, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x1e, 0xcd, 0xbf, 0x7a, 0xbf,\n\t// Entry 200 - 23F\n\t0xdf, 0xc3, 0x83, 0x82, 0xc0, 0xfb, 0x57, 0x27,\n\t0xcd, 0x55, 0xe7, 0x01, 0x00, 0x20, 0xb2, 0xc5,\n\t0xa4, 0x45, 0x25, 0x9b, 0x02, 0xdf, 0xe0, 0xdf,\n\t0x03, 0x44, 0x08, 0x10, 0x01, 0x04, 0x01, 0xe3,\n\t0x92, 0x54, 0xdb, 0x28, 0xd1, 0x5f, 0xf6, 0x6d,\n\t0x79, 0xed, 0x1c, 0x7d, 0x04, 0x08, 0x00, 0x01,\n\t0x21, 0x12, 0x64, 0x5f, 0xdd, 0x0e, 0x85, 0x4f,\n\t0x40, 0x40, 0x00, 0x04, 0xf1, 0xfd, 0x3d, 0x54,\n\t// Entry 240 - 27F\n\t0xe8, 0x03, 0xb4, 0x27, 0x23, 0x0d, 0x00, 0x00,\n\t0x20, 0x7b, 0x38, 0x02, 0x05, 0x84, 0x00, 0xf0,\n\t0xbb, 0x7e, 0x5a, 0x00, 0x18, 0x04, 0x81, 0x00,\n\t0x00, 0x00, 0x80, 0x10, 0x90, 0x1c, 0x01, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x10, 0x40, 0x00, 0x04,\n\t0x08, 0xa0, 0x70, 0xa5, 0x0c, 0x40, 0x00, 0x00,\n\t0x11, 0x04, 0x04, 0x68, 0x00, 0x20, 0x70, 0xff,\n\t0x7b, 0x7f, 0x60, 0x00, 0x05, 0x9b, 0xdd, 0x66,\n\t// Entry 280 - 2BF\n\t0x03, 0x00, 0x11, 0x00, 0x00, 0x00, 0x40, 0x05,\n\t0xb5, 0xb6, 0x80, 0x08, 0x04, 0x00, 0x04, 0x51,\n\t0xe2, 0xef, 0xfd, 0x3f, 0x05, 0x09, 0x08, 0x05,\n\t0x40, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00,\n\t0x08, 0x00, 0x00, 0x00, 0x00, 0x81, 0x00, 0x60,\n\t0xe7, 0x48, 0x00, 0x81, 0x20, 0xc0, 0x05, 0x80,\n\t0x03, 0x00, 0x00, 0x00, 0x8c, 0x50, 0x40, 0x04,\n\t0x84, 0x47, 0x84, 0x40, 0x20, 0x10, 0x00, 0x20,\n\t// Entry 2C0 - 2FF\n\t0x02, 0x50, 0x80, 0x11, 0x00, 0x91, 0x6c, 0xe2,\n\t0x50, 0x27, 0x1d, 0x11, 0x29, 0x06, 0x59, 0xe9,\n\t0x33, 0x08, 0x00, 0x20, 0x04, 0x40, 0x10, 0x00,\n\t0x00, 0x00, 0x50, 0x44, 0x92, 0x49, 0xd6, 0x5d,\n\t0xa7, 0x81, 0x47, 0x97, 0xfb, 0x00, 0x10, 0x00,\n\t0x08, 0x00, 0x80, 0x00, 0x40, 0x04, 0x00, 0x01,\n\t0x02, 0x00, 0x01, 0x40, 0x80, 0x00, 0x00, 0x08,\n\t0xd8, 0xeb, 0xf6, 0x39, 0xc4, 0x89, 0x12, 0x00,\n\t// Entry 300 - 33F\n\t0x00, 0x0c, 0x04, 0x01, 0x20, 0x20, 0xdd, 0xa0,\n\t0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00,\n\t0x04, 0x10, 0xd0, 0x9d, 0x95, 0x13, 0x04, 0x80,\n\t0x00, 0x01, 0xd0, 0x12, 0x40, 0x00, 0x10, 0xb0,\n\t0x10, 0x62, 0x4c, 0xd2, 0x02, 0x01, 0x4a, 0x00,\n\t0x46, 0x04, 0x00, 0x08, 0x02, 0x00, 0x20, 0x80,\n\t0x00, 0x80, 0x06, 0x00, 0x08, 0x00, 0x00, 0x00,\n\t0x00, 0xf0, 0xd8, 0x6f, 0x15, 0x02, 0x08, 0x00,\n\t// Entry 340 - 37F\n\t0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x01,\n\t0x00, 0x10, 0x00, 0x00, 0x00, 0xf0, 0x84, 0xe3,\n\t0xdd, 0xbf, 0xf9, 0xf9, 0x3b, 0x7f, 0x7f, 0xdb,\n\t0xfd, 0xfc, 0xfe, 0xdf, 0xff, 0xfd, 0xff, 0xf6,\n\t0xfb, 0xfc, 0xf7, 0x1f, 0xff, 0xb3, 0x6c, 0xff,\n\t0xd9, 0xad, 0xdf, 0xfe, 0xef, 0xba, 0xdf, 0xff,\n\t0xff, 0xff, 0xb7, 0xdd, 0x7d, 0xbf, 0xab, 0x7f,\n\t0xfd, 0xfd, 0xdf, 0x2f, 0x9c, 0xdf, 0xf3, 0x6f,\n\t// Entry 380 - 3BF\n\t0xdf, 0xdd, 0xff, 0xfb, 0xee, 0xd2, 0xab, 0x5f,\n\t0xd5, 0xdf, 0x7f, 0xff, 0xeb, 0xff, 0xe4, 0x4d,\n\t0xf9, 0xff, 0xfe, 0xf7, 0xfd, 0xdf, 0xfb, 0xbf,\n\t0xee, 0xdb, 0x6f, 0xef, 0xff, 0x7f, 0xff, 0xff,\n\t0xf7, 0x5f, 0xd3, 0x3b, 0xfd, 0xd9, 0xdf, 0xeb,\n\t0xbc, 0x08, 0x05, 0x24, 0xff, 0x07, 0x70, 0xfe,\n\t0xe6, 0x5e, 0x00, 0x08, 0x00, 0x83, 0x3d, 0x1b,\n\t0x06, 0xe6, 0x72, 0x60, 0xd1, 0x3c, 0x7f, 0x44,\n\t// Entry 3C0 - 3FF\n\t0x02, 0x30, 0x9f, 0x7a, 0x16, 0xbd, 0x7f, 0x57,\n\t0xf2, 0xff, 0x31, 0xff, 0xf2, 0x1e, 0x90, 0xf7,\n\t0xf1, 0xf9, 0x45, 0x80, 0x01, 0x02, 0x00, 0x00,\n\t0x40, 0x54, 0x9f, 0x8a, 0xd9, 0xd9, 0x0e, 0x11,\n\t0x86, 0x51, 0xc0, 0xf3, 0xfb, 0x47, 0x00, 0x01,\n\t0x05, 0xd1, 0x50, 0x58, 0x00, 0x00, 0x00, 0x10,\n\t0x04, 0x02, 0x00, 0x00, 0x0a, 0x00, 0x17, 0xd2,\n\t0xb9, 0xfd, 0xfc, 0xba, 0xfe, 0xef, 0xc7, 0xbe,\n\t// Entry 400 - 43F\n\t0x53, 0x6f, 0xdf, 0xe7, 0xdb, 0x65, 0xbb, 0x7f,\n\t0xfa, 0xff, 0x77, 0xf3, 0xef, 0xbf, 0xfd, 0xf7,\n\t0xdf, 0xdf, 0x9b, 0x7f, 0xff, 0xff, 0x7f, 0x6f,\n\t0xf7, 0xfb, 0xeb, 0xdf, 0xbc, 0xff, 0xbf, 0x6b,\n\t0x7b, 0xfb, 0xff, 0xce, 0x76, 0xbd, 0xf7, 0xf7,\n\t0xdf, 0xdc, 0xf7, 0xf7, 0xff, 0xdf, 0xf3, 0xfe,\n\t0xef, 0xff, 0xff, 0xff, 0xb6, 0x7f, 0x7f, 0xde,\n\t0xf7, 0xb9, 0xeb, 0x77, 0xff, 0xfb, 0xbf, 0xdf,\n\t// Entry 440 - 47F\n\t0xfd, 0xfe, 0xfb, 0xff, 0xfe, 0xeb, 0x1f, 0x7d,\n\t0x2f, 0xfd, 0xb6, 0xb5, 0xa5, 0xfc, 0xff, 0xfd,\n\t0x7f, 0x4e, 0xbf, 0x8f, 0xae, 0xff, 0xee, 0xdf,\n\t0x7f, 0xf7, 0x73, 0x02, 0x02, 0x04, 0xfc, 0xf7,\n\t0xff, 0xb7, 0xd7, 0xef, 0xfe, 0xcd, 0xf5, 0xce,\n\t0xe2, 0x8e, 0xe7, 0xbf, 0xb7, 0xff, 0x56, 0xbd,\n\t0xcd, 0xff, 0xfb, 0xff, 0xdf, 0xd7, 0xea, 0xff,\n\t0xe5, 0x5f, 0x6d, 0x0f, 0xa7, 0x51, 0x06, 0xc4,\n\t// Entry 480 - 4BF\n\t0x13, 0x50, 0x5d, 0xaf, 0xa6, 0xfd, 0x99, 0xfb,\n\t0x63, 0x1d, 0x53, 0xff, 0xef, 0xb7, 0x35, 0x20,\n\t0x14, 0x00, 0x55, 0x51, 0x82, 0x65, 0xf5, 0x41,\n\t0xe2, 0xff, 0xfc, 0xdf, 0x00, 0x05, 0xc5, 0x05,\n\t0x00, 0x22, 0x00, 0x74, 0x69, 0x10, 0x08, 0x04,\n\t0x41, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x51, 0x20, 0x05, 0x04, 0x01, 0x00, 0x00,\n\t0x06, 0x01, 0x20, 0x00, 0x18, 0x01, 0x92, 0xb1,\n\t// Entry 4C0 - 4FF\n\t0xfd, 0x47, 0x49, 0x06, 0x95, 0x06, 0x57, 0xed,\n\t0xfb, 0x4c, 0x1c, 0x6b, 0x83, 0x04, 0x62, 0x40,\n\t0x00, 0x11, 0x42, 0x00, 0x00, 0x00, 0x54, 0x83,\n\t0xb8, 0x4f, 0x10, 0x8c, 0x89, 0x46, 0xde, 0xf7,\n\t0x13, 0x31, 0x00, 0x20, 0x00, 0x00, 0x00, 0x90,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x10, 0x00,\n\t0x01, 0x00, 0x00, 0xf0, 0x5b, 0xf4, 0xbe, 0x3d,\n\t0xba, 0xcf, 0xf7, 0xaf, 0x42, 0x04, 0x84, 0x41,\n\t// Entry 500 - 53F\n\t0x30, 0xff, 0x79, 0x72, 0x04, 0x00, 0x00, 0x49,\n\t0x2d, 0x14, 0x27, 0x57, 0xed, 0xf1, 0x3f, 0xe7,\n\t0x3f, 0x00, 0x00, 0x02, 0xc6, 0xa0, 0x1e, 0xf8,\n\t0xbb, 0xff, 0xfd, 0xfb, 0xb7, 0xfd, 0xe5, 0xf7,\n\t0xfd, 0xfc, 0xd5, 0xed, 0x47, 0xf4, 0x7e, 0x10,\n\t0x01, 0x01, 0x84, 0x6d, 0xff, 0xf7, 0xdd, 0xf9,\n\t0x5b, 0x05, 0x86, 0xed, 0xf5, 0x77, 0xbd, 0x3c,\n\t0x00, 0x00, 0x00, 0x42, 0x71, 0x42, 0x00, 0x40,\n\t// Entry 540 - 57F\n\t0x00, 0x00, 0x01, 0x43, 0x19, 0x00, 0x08, 0x00,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t// Entry 580 - 5BF\n\t0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n\t0xff, 0xab, 0xbd, 0xe7, 0x57, 0xee, 0x13, 0x5d,\n\t0x09, 0xc1, 0x40, 0x21, 0xfa, 0x17, 0x01, 0x80,\n\t0x00, 0x00, 0x00, 0x00, 0xf0, 0xce, 0xfb, 0xbf,\n\t0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00,\n\t0x00, 0x30, 0x15, 0xa3, 0x10, 0x00, 0x00, 0x00,\n\t0x11, 0x04, 0x16, 0x00, 0x00, 0x02, 0x00, 0x81,\n\t0xa3, 0x01, 0x50, 0x00, 0x00, 0x83, 0x11, 0x40,\n\t// Entry 5C0 - 5FF\n\t0x00, 0x00, 0x00, 0xf0, 0xdd, 0x7b, 0x3e, 0x02,\n\t0xaa, 0x10, 0x5d, 0x98, 0x52, 0x00, 0x80, 0x20,\n\t0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x02, 0x02,\n\t0x19, 0x00, 0x10, 0x02, 0x10, 0x61, 0x5a, 0x9d,\n\t0x31, 0x00, 0x00, 0x00, 0x01, 0x10, 0x02, 0x20,\n\t0x00, 0x00, 0x01, 0x00, 0x42, 0x00, 0x20, 0x00,\n\t0x00, 0x1f, 0xdf, 0xd2, 0xb9, 0xff, 0xfd, 0x3f,\n\t0x1f, 0x98, 0xcf, 0x9c, 0xbf, 0xaf, 0x5f, 0xfe,\n\t// Entry 600 - 63F\n\t0x7b, 0x4b, 0x40, 0x10, 0xe1, 0xfd, 0xaf, 0xd9,\n\t0xb7, 0xf6, 0xfb, 0xb3, 0xc7, 0xff, 0x6f, 0xf1,\n\t0x73, 0xb1, 0x7f, 0x9f, 0x7f, 0xbd, 0xfc, 0xb7,\n\t0xee, 0x1c, 0xfa, 0xcb, 0xef, 0xdd, 0xf9, 0xbd,\n\t0x6e, 0xae, 0x55, 0xfd, 0x6e, 0x81, 0x76, 0x1f,\n\t0xd4, 0x77, 0xf5, 0x7d, 0xfb, 0xff, 0xeb, 0xfe,\n\t0xbe, 0x5f, 0x46, 0x1b, 0xe9, 0x5f, 0x50, 0x18,\n\t0x02, 0xfa, 0xf7, 0x9d, 0x15, 0x97, 0x05, 0x0f,\n\t// Entry 640 - 67F\n\t0x75, 0xc4, 0x7d, 0x81, 0x92, 0xf1, 0x57, 0x6c,\n\t0xff, 0xe4, 0xef, 0x6f, 0xff, 0xfc, 0xdd, 0xde,\n\t0xfc, 0xfd, 0x76, 0x5f, 0x7a, 0x1f, 0x00, 0x98,\n\t0x02, 0xfb, 0xa3, 0xef, 0xf3, 0xd6, 0xf2, 0xff,\n\t0xb9, 0xda, 0x7d, 0x50, 0x1e, 0x15, 0x7b, 0xb4,\n\t0xf5, 0x3e, 0xff, 0xff, 0xf1, 0xf7, 0xff, 0xe7,\n\t0x5f, 0xff, 0xff, 0x9e, 0xdb, 0xf6, 0xd7, 0xb9,\n\t0xef, 0x27, 0x80, 0xbb, 0xc5, 0xff, 0xff, 0xe3,\n\t// Entry 680 - 6BF\n\t0x97, 0x9d, 0xbf, 0x9f, 0xf7, 0xc7, 0xfd, 0x37,\n\t0xce, 0x7f, 0x04, 0x1d, 0x53, 0x7f, 0xf8, 0xda,\n\t0x5d, 0xce, 0x7d, 0x06, 0xb9, 0xea, 0x69, 0xa0,\n\t0x1a, 0x20, 0x00, 0x30, 0x02, 0x04, 0x24, 0x08,\n\t0x04, 0x00, 0x00, 0x40, 0xd4, 0x02, 0x04, 0x00,\n\t0x00, 0x04, 0x00, 0x04, 0x00, 0x20, 0x01, 0x06,\n\t0x50, 0x00, 0x08, 0x00, 0x00, 0x00, 0x24, 0x00,\n\t0x04, 0x00, 0x10, 0xcc, 0x58, 0xd5, 0x0d, 0x0f,\n\t// Entry 6C0 - 6FF\n\t0x14, 0x4d, 0xf1, 0x16, 0x44, 0xd1, 0x42, 0x08,\n\t0x40, 0x00, 0x00, 0x40, 0x00, 0x08, 0x00, 0x00,\n\t0x00, 0xdc, 0xfb, 0xcb, 0x0e, 0x58, 0x08, 0x41,\n\t0x04, 0x20, 0x04, 0x00, 0x30, 0x12, 0x40, 0x00,\n\t0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x01, 0x00, 0x00, 0x00, 0x80, 0x10, 0x10, 0xab,\n\t0x6d, 0x93, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x80, 0x80, 0x25, 0x00, 0x00,\n\t// Entry 700 - 73F\n\t0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,\n\t0x80, 0x86, 0xc2, 0x00, 0x00, 0x00, 0x00, 0x01,\n\t0xdf, 0x18, 0x00, 0x00, 0x02, 0xf0, 0xfd, 0x79,\n\t0x3b, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00,\n\t0x03, 0x00, 0x09, 0x20, 0x00, 0x00, 0x01, 0x00,\n\t0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 740 - 77F\n\t0x00, 0x00, 0x00, 0xef, 0xd5, 0xfd, 0xcf, 0x7e,\n\t0xb0, 0x11, 0x00, 0x00, 0x00, 0x92, 0x01, 0x44,\n\t0xcd, 0xf9, 0x5c, 0x00, 0x01, 0x00, 0x30, 0x04,\n\t0x04, 0x55, 0x00, 0x01, 0x04, 0xf4, 0x3f, 0x4a,\n\t0x01, 0x00, 0x00, 0xb0, 0x80, 0x00, 0x55, 0x55,\n\t0x97, 0x7c, 0x9f, 0x31, 0xcc, 0x68, 0xd1, 0x03,\n\t0xd5, 0x57, 0x27, 0x14, 0x01, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x2c, 0xf7, 0xcb, 0x1f, 0x14, 0x60,\n\t// Entry 780 - 7BF\n\t0x03, 0x68, 0x01, 0x10, 0x8b, 0x38, 0x8a, 0x01,\n\t0x00, 0x00, 0x20, 0x00, 0x24, 0x44, 0x00, 0x00,\n\t0x10, 0x03, 0x11, 0x02, 0x01, 0x00, 0x00, 0xf0,\n\t0xf5, 0xff, 0xd5, 0x97, 0xbc, 0x70, 0xd6, 0x78,\n\t0x78, 0x15, 0x50, 0x01, 0xa4, 0x84, 0xa9, 0x41,\n\t0x00, 0x00, 0x00, 0x6b, 0x39, 0x52, 0x74, 0x00,\n\t0xe8, 0x30, 0x90, 0x6a, 0x92, 0x00, 0x00, 0x02,\n\t0xff, 0xef, 0xff, 0x4b, 0x85, 0x53, 0xf4, 0xed,\n\t// Entry 7C0 - 7FF\n\t0xdd, 0xbf, 0x72, 0x19, 0xc7, 0x0c, 0xd5, 0x42,\n\t0x54, 0xdd, 0x77, 0x14, 0x00, 0x80, 0x40, 0x56,\n\t0xcc, 0x16, 0x9e, 0xea, 0x35, 0x7d, 0xef, 0xff,\n\t0xbd, 0xa4, 0xaf, 0x01, 0x44, 0x18, 0x01, 0x4d,\n\t0x4e, 0x4a, 0x08, 0x50, 0x28, 0x30, 0xe0, 0x80,\n\t0x10, 0x20, 0x24, 0x00, 0xff, 0x2f, 0xd3, 0x60,\n\t0xfe, 0x01, 0x02, 0x88, 0x0a, 0x40, 0x16, 0x01,\n\t0x01, 0x15, 0x2b, 0x3c, 0x01, 0x00, 0x00, 0x10,\n\t// Entry 800 - 83F\n\t0x90, 0x49, 0x41, 0x02, 0x02, 0x01, 0xe1, 0xbf,\n\t0xbf, 0x03, 0x00, 0x00, 0x10, 0xd4, 0xa3, 0xd1,\n\t0x40, 0x9c, 0x44, 0xdf, 0xf5, 0x8f, 0x66, 0xb3,\n\t0x55, 0x20, 0xd4, 0xc1, 0xd8, 0x30, 0x3d, 0x80,\n\t0x00, 0x00, 0x00, 0x04, 0xd4, 0x11, 0xc5, 0x84,\n\t0x2e, 0x50, 0x00, 0x22, 0x50, 0x6e, 0xbd, 0x93,\n\t0x07, 0x00, 0x20, 0x10, 0x84, 0xb2, 0x45, 0x10,\n\t0x06, 0x44, 0x00, 0x00, 0x12, 0x02, 0x11, 0x00,\n\t// Entry 840 - 87F\n\t0xf0, 0xfb, 0xfd, 0x3f, 0x05, 0x00, 0x12, 0x81,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02,\n\t0x00, 0x00, 0x00, 0x00, 0x03, 0x30, 0x02, 0x28,\n\t0x84, 0x00, 0x21, 0xc0, 0x23, 0x24, 0x00, 0x00,\n\t0x00, 0xcb, 0xe4, 0x3a, 0x42, 0x88, 0x14, 0xf1,\n\t0xef, 0xff, 0x7f, 0x12, 0x01, 0x01, 0x84, 0x50,\n\t0x07, 0xfc, 0xff, 0xff, 0x0f, 0x01, 0x00, 0x40,\n\t0x10, 0x38, 0x01, 0x01, 0x1c, 0x12, 0x40, 0xe1,\n\t// Entry 880 - 8BF\n\t0x76, 0x16, 0x08, 0x03, 0x10, 0x00, 0x00, 0x00,\n\t0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x24,\n\t0x0a, 0x00, 0x80, 0x00, 0x00,\n}\n\n// altLangISO3 holds an alphabetically sorted list of 3-letter language code alternatives\n// to 2-letter language codes that cannot be derived using the method described above.\n// Each 3-letter code is followed by its 1-byte langID.\nconst altLangISO3 tag.Index = \"---\\x00cor\\x00hbs\\x01heb\\x02kin\\x03spa\\x04yid\\x05\\xff\\xff\\xff\\xff\"\n\n// altLangIndex is used to convert indexes in altLangISO3 to langIDs.\n// Size: 12 bytes, 6 elements\nvar altLangIndex = [6]uint16{\n\t0x0281, 0x0407, 0x01fb, 0x03e5, 0x013e, 0x0208,\n}\n\n// AliasMap maps langIDs to their suggested replacements.\n// Size: 656 bytes, 164 elements\nvar AliasMap = [164]FromTo{\n\t0:   {From: 0x82, To: 0x88},\n\t1:   {From: 0x187, To: 0x1ae},\n\t2:   {From: 0x1f3, To: 0x1e1},\n\t3:   {From: 0x1fb, To: 0x1bc},\n\t4:   {From: 0x208, To: 0x512},\n\t5:   {From: 0x20f, To: 0x20e},\n\t6:   {From: 0x310, To: 0x3dc},\n\t7:   {From: 0x347, To: 0x36f},\n\t8:   {From: 0x407, To: 0x432},\n\t9:   {From: 0x47a, To: 0x153},\n\t10:  {From: 0x490, To: 0x451},\n\t11:  {From: 0x4a2, To: 0x21},\n\t12:  {From: 0x53e, To: 0x544},\n\t13:  {From: 0x58f, To: 0x12d},\n\t14:  {From: 0x630, To: 0x1eb1},\n\t15:  {From: 0x651, To: 0x431},\n\t16:  {From: 0x662, To: 0x431},\n\t17:  {From: 0x6ed, To: 0x3a},\n\t18:  {From: 0x6f8, To: 0x1d7},\n\t19:  {From: 0x73e, To: 0x21a1},\n\t20:  {From: 0x7b3, To: 0x56},\n\t21:  {From: 0x7b9, To: 0x299b},\n\t22:  {From: 0x7c5, To: 0x58},\n\t23:  {From: 0x7e6, To: 0x145},\n\t24:  {From: 0x80c, To: 0x5a},\n\t25:  {From: 0x815, To: 0x8d},\n\t26:  {From: 0x87e, To: 0x810},\n\t27:  {From: 0x8c3, To: 0xee3},\n\t28:  {From: 0x9ef, To: 0x331},\n\t29:  {From: 0xa36, To: 0x2c5},\n\t30:  {From: 0xa3d, To: 0xbf},\n\t31:  {From: 0xabe, To: 0x3322},\n\t32:  {From: 0xb38, To: 0x529},\n\t33:  {From: 0xb75, To: 0x265a},\n\t34:  {From: 0xb7e, To: 0xbc3},\n\t35:  {From: 0xb9b, To: 0x44e},\n\t36:  {From: 0xbbc, To: 0x4229},\n\t37:  {From: 0xbbf, To: 0x529},\n\t38:  {From: 0xbfe, To: 0x2da7},\n\t39:  {From: 0xc2e, To: 0x3181},\n\t40:  {From: 0xcb9, To: 0xf3},\n\t41:  {From: 0xd08, To: 0xfa},\n\t42:  {From: 0xdc8, To: 0x11a},\n\t43:  {From: 0xdd7, To: 0x32d},\n\t44:  {From: 0xdf8, To: 0xdfb},\n\t45:  {From: 0xdfe, To: 0x531},\n\t46:  {From: 0xedf, To: 0x205a},\n\t47:  {From: 0xeee, To: 0x2e9a},\n\t48:  {From: 0xf39, To: 0x367},\n\t49:  {From: 0x10d0, To: 0x140},\n\t50:  {From: 0x1104, To: 0x2d0},\n\t51:  {From: 0x11a0, To: 0x1ec},\n\t52:  {From: 0x1279, To: 0x21},\n\t53:  {From: 0x1424, To: 0x15e},\n\t54:  {From: 0x1470, To: 0x14e},\n\t55:  {From: 0x151f, To: 0xd9b},\n\t56:  {From: 0x1523, To: 0x390},\n\t57:  {From: 0x1532, To: 0x19f},\n\t58:  {From: 0x1580, To: 0x210},\n\t59:  {From: 0x1583, To: 0x10d},\n\t60:  {From: 0x15a3, To: 0x3caf},\n\t61:  {From: 0x166a, To: 0x19b},\n\t62:  {From: 0x16c8, To: 0x136},\n\t63:  {From: 0x1700, To: 0x29f8},\n\t64:  {From: 0x1718, To: 0x194},\n\t65:  {From: 0x1727, To: 0xf3f},\n\t66:  {From: 0x177a, To: 0x178},\n\t67:  {From: 0x1809, To: 0x17b6},\n\t68:  {From: 0x1816, To: 0x18f3},\n\t69:  {From: 0x188a, To: 0x436},\n\t70:  {From: 0x1979, To: 0x1d01},\n\t71:  {From: 0x1a74, To: 0x2bb0},\n\t72:  {From: 0x1a8a, To: 0x1f8},\n\t73:  {From: 0x1b5a, To: 0x1fa},\n\t74:  {From: 0x1b86, To: 0x1515},\n\t75:  {From: 0x1d64, To: 0x2c9b},\n\t76:  {From: 0x2038, To: 0x37b1},\n\t77:  {From: 0x203d, To: 0x20dd},\n\t78:  {From: 0x205a, To: 0x30b},\n\t79:  {From: 0x20e3, To: 0x274},\n\t80:  {From: 0x20ee, To: 0x263},\n\t81:  {From: 0x20f2, To: 0x22d},\n\t82:  {From: 0x20f9, To: 0x256},\n\t83:  {From: 0x210f, To: 0x21eb},\n\t84:  {From: 0x2135, To: 0x27d},\n\t85:  {From: 0x2160, To: 0x913},\n\t86:  {From: 0x2199, To: 0x121},\n\t87:  {From: 0x21ce, To: 0x1561},\n\t88:  {From: 0x21e6, To: 0x504},\n\t89:  {From: 0x21f4, To: 0x49f},\n\t90:  {From: 0x222d, To: 0x121},\n\t91:  {From: 0x2237, To: 0x121},\n\t92:  {From: 0x2262, To: 0x92a},\n\t93:  {From: 0x2316, To: 0x3226},\n\t94:  {From: 0x2382, To: 0x3365},\n\t95:  {From: 0x2472, To: 0x2c7},\n\t96:  {From: 0x24e4, To: 0x2ff},\n\t97:  {From: 0x24f0, To: 0x2fa},\n\t98:  {From: 0x24fa, To: 0x31f},\n\t99:  {From: 0x2550, To: 0xb5b},\n\t100: {From: 0x25a9, To: 0xe2},\n\t101: {From: 0x263e, To: 0x2d0},\n\t102: {From: 0x26c9, To: 0x26b4},\n\t103: {From: 0x26f9, To: 0x3c8},\n\t104: {From: 0x2727, To: 0x3caf},\n\t105: {From: 0x2765, To: 0x26b4},\n\t106: {From: 0x2789, To: 0x4358},\n\t107: {From: 0x28ef, To: 0x2837},\n\t108: {From: 0x2914, To: 0x351},\n\t109: {From: 0x2986, To: 0x2da7},\n\t110: {From: 0x2b1a, To: 0x38d},\n\t111: {From: 0x2bfc, To: 0x395},\n\t112: {From: 0x2c3f, To: 0x3caf},\n\t113: {From: 0x2cfc, To: 0x3be},\n\t114: {From: 0x2d13, To: 0x597},\n\t115: {From: 0x2d47, To: 0x148},\n\t116: {From: 0x2d48, To: 0x148},\n\t117: {From: 0x2dff, To: 0x2f1},\n\t118: {From: 0x2e08, To: 0x19cc},\n\t119: {From: 0x2e1a, To: 0x2d95},\n\t120: {From: 0x2e21, To: 0x292},\n\t121: {From: 0x2e54, To: 0x7d},\n\t122: {From: 0x2e65, To: 0x2282},\n\t123: {From: 0x2ea0, To: 0x2e9b},\n\t124: {From: 0x2eef, To: 0x2ed7},\n\t125: {From: 0x3193, To: 0x3c4},\n\t126: {From: 0x3366, To: 0x338e},\n\t127: {From: 0x342a, To: 0x3dc},\n\t128: {From: 0x34ee, To: 0x18d0},\n\t129: {From: 0x35c8, To: 0x2c9b},\n\t130: {From: 0x35e6, To: 0x412},\n\t131: {From: 0x3658, To: 0x246},\n\t132: {From: 0x3676, To: 0x3f4},\n\t133: {From: 0x36fd, To: 0x445},\n\t134: {From: 0x37c0, To: 0x121},\n\t135: {From: 0x3816, To: 0x38f2},\n\t136: {From: 0x382b, To: 0x2c9b},\n\t137: {From: 0x382f, To: 0xa9},\n\t138: {From: 0x3832, To: 0x3228},\n\t139: {From: 0x386c, To: 0x39a6},\n\t140: {From: 0x3892, To: 0x3fc0},\n\t141: {From: 0x38a5, To: 0x39d7},\n\t142: {From: 0x38b4, To: 0x1fa4},\n\t143: {From: 0x38b5, To: 0x2e9a},\n\t144: {From: 0x395c, To: 0x47e},\n\t145: {From: 0x3b4e, To: 0xd91},\n\t146: {From: 0x3b78, To: 0x137},\n\t147: {From: 0x3c99, To: 0x4bc},\n\t148: {From: 0x3fbd, To: 0x100},\n\t149: {From: 0x4208, To: 0xa91},\n\t150: {From: 0x42be, To: 0x573},\n\t151: {From: 0x42f9, To: 0x3f60},\n\t152: {From: 0x4378, To: 0x25a},\n\t153: {From: 0x43cb, To: 0x36cb},\n\t154: {From: 0x43cd, To: 0x10f},\n\t155: {From: 0x44af, To: 0x3322},\n\t156: {From: 0x44e3, To: 0x512},\n\t157: {From: 0x45ca, To: 0x2409},\n\t158: {From: 0x45dd, To: 0x26dc},\n\t159: {From: 0x4610, To: 0x48ae},\n\t160: {From: 0x46ae, To: 0x46a0},\n\t161: {From: 0x473e, To: 0x4745},\n\t162: {From: 0x4916, To: 0x31f},\n\t163: {From: 0x49a7, To: 0x523},\n}\n\n// Size: 164 bytes, 164 elements\nvar AliasTypes = [164]AliasType{\n\t// Entry 0 - 3F\n\t1, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 1, 0, 0, 1, 2,\n\t1, 1, 2, 0, 1, 0, 1, 2, 1, 1, 0, 0, 2, 1, 1, 0,\n\t2, 0, 0, 1, 0, 1, 0, 0, 1, 2, 1, 1, 1, 1, 0, 0,\n\t2, 1, 1, 1, 1, 2, 1, 0, 1, 1, 2, 2, 0, 1, 2, 0,\n\t// Entry 40 - 7F\n\t1, 0, 1, 1, 1, 1, 0, 0, 2, 1, 0, 0, 0, 0, 1, 1,\n\t1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,\n\t2, 2, 2, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1,\n\t0, 1, 0, 2, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 2,\n\t// Entry 80 - BF\n\t0, 0, 2, 1, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0,\n\t1, 1, 0, 1, 2, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0,\n\t0, 1, 1, 1,\n}\n\nconst (\n\t_Latn = 87\n\t_Hani = 54\n\t_Hans = 56\n\t_Hant = 57\n\t_Qaaa = 139\n\t_Qaai = 147\n\t_Qabx = 188\n\t_Zinh = 236\n\t_Zyyy = 241\n\t_Zzzz = 242\n)\n\n// script is an alphabetically sorted list of ISO 15924 codes. The index\n// of the script in the string, divided by 4, is the internal scriptID.\nconst script tag.Index = \"\" + // Size: 976 bytes\n\t\"----AdlmAfakAghbAhomArabAranArmiArmnAvstBaliBamuBassBatkBengBhksBlisBopo\" +\n\t\"BrahBraiBugiBuhdCakmCansCariChamCherCirtCoptCpmnCprtCyrlCyrsDevaDogrDsrt\" +\n\t\"DuplEgydEgyhEgypElbaEthiGeokGeorGlagGongGonmGothGranGrekGujrGuruHanbHang\" +\n\t\"HaniHanoHansHantHatrHebrHiraHluwHmngHmnpHrktHungIndsItalJamoJavaJpanJurc\" +\n\t\"KaliKanaKharKhmrKhojKitlKitsKndaKoreKpelKthiLanaLaooLatfLatgLatnLekeLepc\" +\n\t\"LimbLinaLinbLisuLomaLyciLydiMahjMakaMandManiMarcMayaMedfMendMercMeroMlym\" +\n\t\"ModiMongMoonMrooMteiMultMymrNarbNbatNewaNkdbNkgbNkooNshuOgamOlckOrkhOrya\" +\n\t\"OsgeOsmaPalmPaucPermPhagPhliPhlpPhlvPhnxPiqdPlrdPrtiQaaaQaabQaacQaadQaae\" +\n\t\"QaafQaagQaahQaaiQaajQaakQaalQaamQaanQaaoQaapQaaqQaarQaasQaatQaauQaavQaaw\" +\n\t\"QaaxQaayQaazQabaQabbQabcQabdQabeQabfQabgQabhQabiQabjQabkQablQabmQabnQabo\" +\n\t\"QabpQabqQabrQabsQabtQabuQabvQabwQabxRjngRoroRunrSamrSaraSarbSaurSgnwShaw\" +\n\t\"ShrdShuiSiddSindSinhSoraSoyoSundSyloSyrcSyreSyrjSyrnTagbTakrTaleTaluTaml\" +\n\t\"TangTavtTeluTengTfngTglgThaaThaiTibtTirhUgarVaiiVispWaraWchoWoleXpeoXsux\" +\n\t\"YiiiZanbZinhZmthZsyeZsymZxxxZyyyZzzz\\xff\\xff\\xff\\xff\"\n\n// suppressScript is an index from langID to the dominant script for that language,\n// if it exists.  If a script is given, it should be suppressed from the language tag.\n// Size: 1330 bytes, 1330 elements\nvar suppressScript = [1330]uint8{\n\t// Entry 0 - 3F\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x29,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 40 - 7F\n\t0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00,\n\t// Entry 80 - BF\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry C0 - FF\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 100 - 13F\n\t0x57, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0xde, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00,\n\t0x00, 0x57, 0x00, 0x00, 0x57, 0x00, 0x57, 0x00,\n\t// Entry 140 - 17F\n\t0x57, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00,\n\t0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x57, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00,\n\t0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t0x00, 0x57, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x57, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 180 - 1BF\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x57, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x57, 0x32, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x21, 0x00,\n\t// Entry 1C0 - 1FF\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x57, 0x57, 0x00, 0x57, 0x57, 0x00, 0x08,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00,\n\t0x57, 0x57, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 200 - 23F\n\t0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 240 - 27F\n\t0x00, 0x00, 0x1f, 0x00, 0x00, 0x57, 0x00, 0x00,\n\t0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x4f, 0x00, 0x00, 0x50, 0x00, 0x21, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 280 - 2BF\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00,\n\t0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 2C0 - 2FF\n\t0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f,\n\t// Entry 300 - 33F\n\t0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x57,\n\t0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t// Entry 340 - 37F\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t0x57, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x57, 0x00,\n\t0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 380 - 3BF\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x57, 0x00, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00,\n\t// Entry 3C0 - 3FF\n\t0x57, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00,\n\t0x00, 0x57, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x1f, 0x00, 0x00, 0x57, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 400 - 43F\n\t0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 440 - 47F\n\t0x00, 0x00, 0x00, 0x00, 0x57, 0x57, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0xda, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x29,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t// Entry 480 - 4BF\n\t0x57, 0x00, 0x57, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x57, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 4C0 - 4FF\n\t0x57, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 500 - 53F\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57,\n\t0x00, 0x00,\n}\n\nconst (\n\t_001 = 1\n\t_419 = 31\n\t_BR  = 65\n\t_CA  = 73\n\t_ES  = 110\n\t_GB  = 123\n\t_MD  = 188\n\t_PT  = 238\n\t_UK  = 306\n\t_US  = 309\n\t_ZZ  = 357\n\t_XA  = 323\n\t_XC  = 325\n\t_XK  = 333\n)\n\n// isoRegionOffset needs to be added to the index of regionISO to obtain the regionID\n// for 2-letter ISO codes. (The first isoRegionOffset regionIDs are reserved for\n// the UN.M49 codes used for groups.)\nconst isoRegionOffset = 32\n\n// regionTypes defines the status of a region for various standards.\n// Size: 358 bytes, 358 elements\nvar regionTypes = [358]uint8{\n\t// Entry 0 - 3F\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t// Entry 40 - 7F\n\t0x06, 0x06, 0x06, 0x06, 0x04, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x04, 0x06, 0x04,\n\t0x00, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x04,\n\t0x06, 0x04, 0x06, 0x06, 0x06, 0x06, 0x00, 0x06,\n\t0x04, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x04, 0x06, 0x06, 0x06, 0x06, 0x06, 0x00,\n\t0x06, 0x04, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t// Entry 80 - BF\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x00, 0x04, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x00, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t// Entry C0 - FF\n\t0x06, 0x00, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x00,\n\t0x06, 0x06, 0x06, 0x06, 0x00, 0x06, 0x04, 0x06,\n\t0x06, 0x06, 0x06, 0x00, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x00,\n\t0x06, 0x06, 0x00, 0x06, 0x05, 0x05, 0x05, 0x05,\n\t0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,\n\t// Entry 100 - 13F\n\t0x05, 0x05, 0x06, 0x00, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x04, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x02, 0x06, 0x04, 0x06, 0x06, 0x06,\n\t0x06, 0x06, 0x00, 0x06, 0x06, 0x06, 0x06, 0x06,\n\t// Entry 140 - 17F\n\t0x06, 0x00, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05,\n\t0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,\n\t0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,\n\t0x05, 0x05, 0x05, 0x05, 0x05, 0x04, 0x06, 0x06,\n\t0x04, 0x06, 0x06, 0x04, 0x06, 0x05,\n}\n\n// regionISO holds a list of alphabetically sorted 2-letter ISO region codes.\n// Each 2-letter codes is followed by two bytes with the following meaning:\n//     - [A-Z}{2}: the first letter of the 2-letter code plus these two\n//                 letters form the 3-letter ISO code.\n//     - 0, n:     index into altRegionISO3.\nconst regionISO tag.Index = \"\" + // Size: 1308 bytes\n\t\"AAAAACSCADNDAEREAFFGAGTGAIIAALLBAMRMANNTAOGOAQTAARRGASSMATUTAUUSAWBWAXLA\" +\n\t\"AZZEBAIHBBRBBDGDBEELBFFABGGRBHHRBIDIBJENBLLMBMMUBNRNBOOLBQESBRRABSHSBTTN\" +\n\t\"BUURBVVTBWWABYLRBZLZCAANCCCKCDODCFAFCGOGCHHECIIVCKOKCLHLCMMRCNHNCOOLCPPT\" +\n\t\"CRRICS\\x00\\x00CTTECUUBCVPVCWUWCXXRCYYPCZZEDDDRDEEUDGGADJJIDKNKDMMADOOMDY\" +\n\t\"HYDZZAEA  ECCUEESTEGGYEHSHERRIESSPETTHEU\\x00\\x03EZ  FIINFJJIFKLKFMSMFORO\" +\n\t\"FQ\\x00\\x18FRRAFXXXGAABGBBRGDRDGEEOGFUFGGGYGHHAGIIBGLRLGMMBGNINGPLPGQNQGR\" +\n\t\"RCGS\\x00\\x06GTTMGUUMGWNBGYUYHKKGHMMDHNNDHRRVHTTIHUUNHVVOIC  IDDNIERLILSR\" +\n\t\"IMMNINNDIOOTIQRQIRRNISSLITTAJEEYJMAMJOORJPPNJTTNKEENKGGZKHHMKIIRKM\\x00\" +\n\t\"\\x09KNNAKP\\x00\\x0cKRORKWWTKY\\x00\\x0fKZAZLAAOLBBNLCCALIIELKKALRBRLSSOLTTU\" +\n\t\"LUUXLVVALYBYMAARMCCOMDDAMENEMFAFMGDGMHHLMIIDMKKDMLLIMMMRMNNGMOACMPNPMQTQ\" +\n\t\"MRRTMSSRMTLTMUUSMVDVMWWIMXEXMYYSMZOZNAAMNCCLNEERNFFKNGGANHHBNIICNLLDNOOR\" +\n\t\"NPPLNQ\\x00\\x1eNRRUNTTZNUIUNZZLOMMNPAANPCCIPEERPFYFPGNGPHHLPKAKPLOLPM\\x00\" +\n\t\"\\x12PNCNPRRIPSSEPTRTPUUSPWLWPYRYPZCZQAATQMMMQNNNQOOOQPPPQQQQQRRRQSSSQTTT\" +\n\t\"QU\\x00\\x03QVVVQWWWQXXXQYYYQZZZREEURHHOROOURS\\x00\\x15RUUSRWWASAAUSBLBSCYC\" +\n\t\"SDDNSEWESGGPSHHNSIVNSJJMSKVKSLLESMMRSNENSOOMSRURSSSDSTTPSUUNSVLVSXXMSYYR\" +\n\t\"SZWZTAAATCCATDCDTF\\x00\\x18TGGOTHHATJJKTKKLTLLSTMKMTNUNTOONTPMPTRURTTTOTV\" +\n\t\"UVTWWNTZZAUAKRUGGAUK  UMMIUN  USSAUYRYUZZBVAATVCCTVDDRVEENVGGBVIIRVNNMVU\" +\n\t\"UTWFLFWKAKWSSMXAAAXBBBXCCCXDDDXEEEXFFFXGGGXHHHXIIIXJJJXKKKXLLLXMMMXNNNXO\" +\n\t\"OOXPPPXQQQXRRRXSSSXTTTXUUUXVVVXWWWXXXXXYYYXZZZYDMDYEEMYT\\x00\\x1bYUUGZAAF\" +\n\t\"ZMMBZRARZWWEZZZZ\\xff\\xff\\xff\\xff\"\n\n// altRegionISO3 holds a list of 3-letter region codes that cannot be\n// mapped to 2-letter codes using the default algorithm. This is a short list.\nconst altRegionISO3 string = \"SCGQUUSGSCOMPRKCYMSPMSRBATFMYTATN\"\n\n// altRegionIDs holds a list of regionIDs the positions of which match those\n// of the 3-letter ISO codes in altRegionISO3.\n// Size: 22 bytes, 11 elements\nvar altRegionIDs = [11]uint16{\n\t0x0057, 0x0070, 0x0088, 0x00a8, 0x00aa, 0x00ad, 0x00ea, 0x0105,\n\t0x0121, 0x015f, 0x00dc,\n}\n\n// Size: 80 bytes, 20 elements\nvar regionOldMap = [20]FromTo{\n\t0:  {From: 0x44, To: 0xc4},\n\t1:  {From: 0x58, To: 0xa7},\n\t2:  {From: 0x5f, To: 0x60},\n\t3:  {From: 0x66, To: 0x3b},\n\t4:  {From: 0x79, To: 0x78},\n\t5:  {From: 0x93, To: 0x37},\n\t6:  {From: 0xa3, To: 0x133},\n\t7:  {From: 0xc1, To: 0x133},\n\t8:  {From: 0xd7, To: 0x13f},\n\t9:  {From: 0xdc, To: 0x2b},\n\t10: {From: 0xef, To: 0x133},\n\t11: {From: 0xf2, To: 0xe2},\n\t12: {From: 0xfc, To: 0x70},\n\t13: {From: 0x103, To: 0x164},\n\t14: {From: 0x12a, To: 0x126},\n\t15: {From: 0x132, To: 0x7b},\n\t16: {From: 0x13a, To: 0x13e},\n\t17: {From: 0x141, To: 0x133},\n\t18: {From: 0x15d, To: 0x15e},\n\t19: {From: 0x163, To: 0x4b},\n}\n\n// m49 maps regionIDs to UN.M49 codes. The first isoRegionOffset entries are\n// codes indicating collections of regions.\n// Size: 716 bytes, 358 elements\nvar m49 = [358]int16{\n\t// Entry 0 - 3F\n\t0, 1, 2, 3, 5, 9, 11, 13,\n\t14, 15, 17, 18, 19, 21, 29, 30,\n\t34, 35, 39, 53, 54, 57, 61, 142,\n\t143, 145, 150, 151, 154, 155, 202, 419,\n\t958, 0, 20, 784, 4, 28, 660, 8,\n\t51, 530, 24, 10, 32, 16, 40, 36,\n\t533, 248, 31, 70, 52, 50, 56, 854,\n\t100, 48, 108, 204, 652, 60, 96, 68,\n\t// Entry 40 - 7F\n\t535, 76, 44, 64, 104, 74, 72, 112,\n\t84, 124, 166, 180, 140, 178, 756, 384,\n\t184, 152, 120, 156, 170, 0, 188, 891,\n\t296, 192, 132, 531, 162, 196, 203, 278,\n\t276, 0, 262, 208, 212, 214, 204, 12,\n\t0, 218, 233, 818, 732, 232, 724, 231,\n\t967, 0, 246, 242, 238, 583, 234, 0,\n\t250, 249, 266, 826, 308, 268, 254, 831,\n\t// Entry 80 - BF\n\t288, 292, 304, 270, 324, 312, 226, 300,\n\t239, 320, 316, 624, 328, 344, 334, 340,\n\t191, 332, 348, 854, 0, 360, 372, 376,\n\t833, 356, 86, 368, 364, 352, 380, 832,\n\t388, 400, 392, 581, 404, 417, 116, 296,\n\t174, 659, 408, 410, 414, 136, 398, 418,\n\t422, 662, 438, 144, 430, 426, 440, 442,\n\t428, 434, 504, 492, 498, 499, 663, 450,\n\t// Entry C0 - FF\n\t584, 581, 807, 466, 104, 496, 446, 580,\n\t474, 478, 500, 470, 480, 462, 454, 484,\n\t458, 508, 516, 540, 562, 574, 566, 548,\n\t558, 528, 578, 524, 10, 520, 536, 570,\n\t554, 512, 591, 0, 604, 258, 598, 608,\n\t586, 616, 666, 612, 630, 275, 620, 581,\n\t585, 600, 591, 634, 959, 960, 961, 962,\n\t963, 964, 965, 966, 967, 968, 969, 970,\n\t// Entry 100 - 13F\n\t971, 972, 638, 716, 642, 688, 643, 646,\n\t682, 90, 690, 729, 752, 702, 654, 705,\n\t744, 703, 694, 674, 686, 706, 740, 728,\n\t678, 810, 222, 534, 760, 748, 0, 796,\n\t148, 260, 768, 764, 762, 772, 626, 795,\n\t788, 776, 626, 792, 780, 798, 158, 834,\n\t804, 800, 826, 581, 0, 840, 858, 860,\n\t336, 670, 704, 862, 92, 850, 704, 548,\n\t// Entry 140 - 17F\n\t876, 581, 882, 973, 974, 975, 976, 977,\n\t978, 979, 980, 981, 982, 983, 984, 985,\n\t986, 987, 988, 989, 990, 991, 992, 993,\n\t994, 995, 996, 997, 998, 720, 887, 175,\n\t891, 710, 894, 180, 716, 999,\n}\n\n// m49Index gives indexes into fromM49 based on the three most significant bits\n// of a 10-bit UN.M49 code. To search an UN.M49 code in fromM49, search in\n//    fromM49[m49Index[msb39(code)]:m49Index[msb3(code)+1]]\n// for an entry where the first 7 bits match the 7 lsb of the UN.M49 code.\n// The region code is stored in the 9 lsb of the indexed value.\n// Size: 18 bytes, 9 elements\nvar m49Index = [9]int16{\n\t0, 59, 108, 143, 181, 220, 259, 291,\n\t333,\n}\n\n// fromM49 contains entries to map UN.M49 codes to regions. See m49Index for details.\n// Size: 666 bytes, 333 elements\nvar fromM49 = [333]uint16{\n\t// Entry 0 - 3F\n\t0x0201, 0x0402, 0x0603, 0x0824, 0x0a04, 0x1027, 0x1205, 0x142b,\n\t0x1606, 0x1867, 0x1a07, 0x1c08, 0x1e09, 0x202d, 0x220a, 0x240b,\n\t0x260c, 0x2822, 0x2a0d, 0x302a, 0x3825, 0x3a0e, 0x3c0f, 0x3e32,\n\t0x402c, 0x4410, 0x4611, 0x482f, 0x4e12, 0x502e, 0x5842, 0x6039,\n\t0x6435, 0x6628, 0x6834, 0x6a13, 0x6c14, 0x7036, 0x7215, 0x783d,\n\t0x7a16, 0x8043, 0x883f, 0x8c33, 0x9046, 0x9445, 0x9841, 0xa848,\n\t0xac9a, 0xb509, 0xb93c, 0xc03e, 0xc838, 0xd0c4, 0xd83a, 0xe047,\n\t0xe8a6, 0xf052, 0xf849, 0x085a, 0x10ad, 0x184c, 0x1c17, 0x1e18,\n\t// Entry 40 - 7F\n\t0x20b3, 0x2219, 0x2920, 0x2c1a, 0x2e1b, 0x3051, 0x341c, 0x361d,\n\t0x3853, 0x3d2e, 0x445c, 0x4c4a, 0x5454, 0x5ca8, 0x5f5f, 0x644d,\n\t0x684b, 0x7050, 0x7856, 0x7e90, 0x8059, 0x885d, 0x941e, 0x965e,\n\t0x983b, 0xa063, 0xa864, 0xac65, 0xb469, 0xbd1a, 0xc486, 0xcc6f,\n\t0xce6f, 0xd06d, 0xd26a, 0xd476, 0xdc74, 0xde88, 0xe473, 0xec72,\n\t0xf031, 0xf279, 0xf478, 0xfc7e, 0x04e5, 0x0921, 0x0c62, 0x147a,\n\t0x187d, 0x1c83, 0x26ed, 0x2860, 0x2c5f, 0x3060, 0x4080, 0x4881,\n\t0x50a7, 0x5887, 0x6082, 0x687c, 0x7085, 0x788a, 0x8089, 0x8884,\n\t// Entry 80 - BF\n\t0x908c, 0x9891, 0x9c8e, 0xa138, 0xa88f, 0xb08d, 0xb892, 0xc09d,\n\t0xc899, 0xd095, 0xd89c, 0xe09b, 0xe896, 0xf097, 0xf89e, 0x004f,\n\t0x08a0, 0x10a2, 0x1cae, 0x20a1, 0x28a4, 0x30aa, 0x34ab, 0x3cac,\n\t0x42a5, 0x44af, 0x461f, 0x4cb0, 0x54b5, 0x58b8, 0x5cb4, 0x64b9,\n\t0x6cb2, 0x70b6, 0x74b7, 0x7cc6, 0x84bf, 0x8cce, 0x94d0, 0x9ccd,\n\t0xa4c3, 0xaccb, 0xb4c8, 0xbcc9, 0xc0cc, 0xc8cf, 0xd8bb, 0xe0c5,\n\t0xe4bc, 0xe6bd, 0xe8ca, 0xf0ba, 0xf8d1, 0x00e1, 0x08d2, 0x10dd,\n\t0x18db, 0x20d9, 0x2429, 0x265b, 0x2a30, 0x2d1b, 0x2e40, 0x30de,\n\t// Entry C0 - FF\n\t0x38d3, 0x493f, 0x54e0, 0x5cd8, 0x64d4, 0x6cd6, 0x74df, 0x7cd5,\n\t0x84da, 0x88c7, 0x8b33, 0x8e75, 0x90c0, 0x92f0, 0x94e8, 0x9ee2,\n\t0xace6, 0xb0f1, 0xb8e4, 0xc0e7, 0xc8eb, 0xd0e9, 0xd8ee, 0xe08b,\n\t0xe526, 0xecec, 0xf4f3, 0xfd02, 0x0504, 0x0706, 0x0d07, 0x183c,\n\t0x1d0e, 0x26a9, 0x2826, 0x2cb1, 0x2ebe, 0x34ea, 0x3d39, 0x4513,\n\t0x4d18, 0x5508, 0x5d14, 0x6105, 0x650a, 0x6d12, 0x7d0d, 0x7f11,\n\t0x813e, 0x830f, 0x8515, 0x8d61, 0x9964, 0xa15d, 0xa86e, 0xb117,\n\t0xb30b, 0xb86c, 0xc10b, 0xc916, 0xd110, 0xd91d, 0xe10c, 0xe84e,\n\t// Entry 100 - 13F\n\t0xf11c, 0xf524, 0xf923, 0x0122, 0x0925, 0x1129, 0x192c, 0x2023,\n\t0x2928, 0x312b, 0x3727, 0x391f, 0x3d2d, 0x4131, 0x4930, 0x4ec2,\n\t0x5519, 0x646b, 0x747b, 0x7e7f, 0x809f, 0x8298, 0x852f, 0x9135,\n\t0xa53d, 0xac37, 0xb536, 0xb937, 0xbd3b, 0xd940, 0xe542, 0xed5e,\n\t0xef5e, 0xf657, 0xfd62, 0x7c20, 0x7ef4, 0x80f5, 0x82f6, 0x84f7,\n\t0x86f8, 0x88f9, 0x8afa, 0x8cfb, 0x8e70, 0x90fd, 0x92fe, 0x94ff,\n\t0x9700, 0x9901, 0x9b43, 0x9d44, 0x9f45, 0xa146, 0xa347, 0xa548,\n\t0xa749, 0xa94a, 0xab4b, 0xad4c, 0xaf4d, 0xb14e, 0xb34f, 0xb550,\n\t// Entry 140 - 17F\n\t0xb751, 0xb952, 0xbb53, 0xbd54, 0xbf55, 0xc156, 0xc357, 0xc558,\n\t0xc759, 0xc95a, 0xcb5b, 0xcd5c, 0xcf65,\n}\n\n// Size: 1615 bytes\nvar variantIndex = map[string]uint8{\n\t\"1606nict\": 0x0,\n\t\"1694acad\": 0x1,\n\t\"1901\":     0x2,\n\t\"1959acad\": 0x3,\n\t\"1994\":     0x4d,\n\t\"1996\":     0x4,\n\t\"abl1943\":  0x5,\n\t\"akuapem\":  0x6,\n\t\"alalc97\":  0x4f,\n\t\"aluku\":    0x7,\n\t\"ao1990\":   0x8,\n\t\"arevela\":  0x9,\n\t\"arevmda\":  0xa,\n\t\"asante\":   0xb,\n\t\"baku1926\": 0xc,\n\t\"balanka\":  0xd,\n\t\"barla\":    0xe,\n\t\"basiceng\": 0xf,\n\t\"bauddha\":  0x10,\n\t\"biscayan\": 0x11,\n\t\"biske\":    0x48,\n\t\"bohoric\":  0x12,\n\t\"boont\":    0x13,\n\t\"colb1945\": 0x14,\n\t\"cornu\":    0x15,\n\t\"dajnko\":   0x16,\n\t\"ekavsk\":   0x17,\n\t\"emodeng\":  0x18,\n\t\"fonipa\":   0x50,\n\t\"fonnapa\":  0x51,\n\t\"fonupa\":   0x52,\n\t\"fonxsamp\": 0x53,\n\t\"hepburn\":  0x19,\n\t\"heploc\":   0x4e,\n\t\"hognorsk\": 0x1a,\n\t\"hsistemo\": 0x1b,\n\t\"ijekavsk\": 0x1c,\n\t\"itihasa\":  0x1d,\n\t\"jauer\":    0x1e,\n\t\"jyutping\": 0x1f,\n\t\"kkcor\":    0x20,\n\t\"kociewie\": 0x21,\n\t\"kscor\":    0x22,\n\t\"laukika\":  0x23,\n\t\"lipaw\":    0x49,\n\t\"luna1918\": 0x24,\n\t\"metelko\":  0x25,\n\t\"monoton\":  0x26,\n\t\"ndyuka\":   0x27,\n\t\"nedis\":    0x28,\n\t\"newfound\": 0x29,\n\t\"njiva\":    0x4a,\n\t\"nulik\":    0x2a,\n\t\"osojs\":    0x4b,\n\t\"oxendict\": 0x2b,\n\t\"pahawh2\":  0x2c,\n\t\"pahawh3\":  0x2d,\n\t\"pahawh4\":  0x2e,\n\t\"pamaka\":   0x2f,\n\t\"petr1708\": 0x30,\n\t\"pinyin\":   0x31,\n\t\"polyton\":  0x32,\n\t\"puter\":    0x33,\n\t\"rigik\":    0x34,\n\t\"rozaj\":    0x35,\n\t\"rumgr\":    0x36,\n\t\"scotland\": 0x37,\n\t\"scouse\":   0x38,\n\t\"simple\":   0x54,\n\t\"solba\":    0x4c,\n\t\"sotav\":    0x39,\n\t\"spanglis\": 0x3a,\n\t\"surmiran\": 0x3b,\n\t\"sursilv\":  0x3c,\n\t\"sutsilv\":  0x3d,\n\t\"tarask\":   0x3e,\n\t\"uccor\":    0x3f,\n\t\"ucrcor\":   0x40,\n\t\"ulster\":   0x41,\n\t\"unifon\":   0x42,\n\t\"vaidika\":  0x43,\n\t\"valencia\": 0x44,\n\t\"vallader\": 0x45,\n\t\"wadegile\": 0x46,\n\t\"xsistemo\": 0x47,\n}\n\n// variantNumSpecialized is the number of specialized variants in variants.\nconst variantNumSpecialized = 79\n\n// nRegionGroups is the number of region groups.\nconst nRegionGroups = 33\n\ntype likelyLangRegion struct {\n\tlang   uint16\n\tregion uint16\n}\n\n// likelyScript is a lookup table, indexed by scriptID, for the most likely\n// languages and regions given a script.\n// Size: 976 bytes, 244 elements\nvar likelyScript = [244]likelyLangRegion{\n\t1:   {lang: 0x14e, region: 0x84},\n\t3:   {lang: 0x2a2, region: 0x106},\n\t4:   {lang: 0x1f, region: 0x99},\n\t5:   {lang: 0x3a, region: 0x6b},\n\t7:   {lang: 0x3b, region: 0x9c},\n\t8:   {lang: 0x1d7, region: 0x28},\n\t9:   {lang: 0x13, region: 0x9c},\n\t10:  {lang: 0x5b, region: 0x95},\n\t11:  {lang: 0x60, region: 0x52},\n\t12:  {lang: 0xb9, region: 0xb4},\n\t13:  {lang: 0x63, region: 0x95},\n\t14:  {lang: 0xa5, region: 0x35},\n\t15:  {lang: 0x3e9, region: 0x99},\n\t17:  {lang: 0x529, region: 0x12e},\n\t18:  {lang: 0x3b1, region: 0x99},\n\t19:  {lang: 0x15e, region: 0x78},\n\t20:  {lang: 0xc2, region: 0x95},\n\t21:  {lang: 0x9d, region: 0xe7},\n\t22:  {lang: 0xdb, region: 0x35},\n\t23:  {lang: 0xf3, region: 0x49},\n\t24:  {lang: 0x4f0, region: 0x12b},\n\t25:  {lang: 0xe7, region: 0x13e},\n\t26:  {lang: 0xe5, region: 0x135},\n\t28:  {lang: 0xf1, region: 0x6b},\n\t30:  {lang: 0x1a0, region: 0x5d},\n\t31:  {lang: 0x3e2, region: 0x106},\n\t33:  {lang: 0x1be, region: 0x99},\n\t36:  {lang: 0x15e, region: 0x78},\n\t39:  {lang: 0x133, region: 0x6b},\n\t40:  {lang: 0x431, region: 0x27},\n\t41:  {lang: 0x27, region: 0x6f},\n\t43:  {lang: 0x210, region: 0x7d},\n\t44:  {lang: 0xfe, region: 0x38},\n\t46:  {lang: 0x19b, region: 0x99},\n\t47:  {lang: 0x19e, region: 0x130},\n\t48:  {lang: 0x3e9, region: 0x99},\n\t49:  {lang: 0x136, region: 0x87},\n\t50:  {lang: 0x1a4, region: 0x99},\n\t51:  {lang: 0x39d, region: 0x99},\n\t52:  {lang: 0x529, region: 0x12e},\n\t53:  {lang: 0x254, region: 0xab},\n\t54:  {lang: 0x529, region: 0x53},\n\t55:  {lang: 0x1cb, region: 0xe7},\n\t56:  {lang: 0x529, region: 0x53},\n\t57:  {lang: 0x529, region: 0x12e},\n\t58:  {lang: 0x2fd, region: 0x9b},\n\t59:  {lang: 0x1bc, region: 0x97},\n\t60:  {lang: 0x200, region: 0xa2},\n\t61:  {lang: 0x1c5, region: 0x12b},\n\t62:  {lang: 0x1ca, region: 0xaf},\n\t65:  {lang: 0x1d5, region: 0x92},\n\t67:  {lang: 0x142, region: 0x9e},\n\t68:  {lang: 0x254, region: 0xab},\n\t69:  {lang: 0x20e, region: 0x95},\n\t70:  {lang: 0x200, region: 0xa2},\n\t72:  {lang: 0x135, region: 0xc4},\n\t73:  {lang: 0x200, region: 0xa2},\n\t74:  {lang: 0x3bb, region: 0xe8},\n\t75:  {lang: 0x24a, region: 0xa6},\n\t76:  {lang: 0x3fa, region: 0x99},\n\t79:  {lang: 0x251, region: 0x99},\n\t80:  {lang: 0x254, region: 0xab},\n\t82:  {lang: 0x88, region: 0x99},\n\t83:  {lang: 0x370, region: 0x123},\n\t84:  {lang: 0x2b8, region: 0xaf},\n\t89:  {lang: 0x29f, region: 0x99},\n\t90:  {lang: 0x2a8, region: 0x99},\n\t91:  {lang: 0x28f, region: 0x87},\n\t92:  {lang: 0x1a0, region: 0x87},\n\t93:  {lang: 0x2ac, region: 0x53},\n\t95:  {lang: 0x4f4, region: 0x12b},\n\t96:  {lang: 0x4f5, region: 0x12b},\n\t97:  {lang: 0x1be, region: 0x99},\n\t99:  {lang: 0x337, region: 0x9c},\n\t100: {lang: 0x4f7, region: 0x53},\n\t101: {lang: 0xa9, region: 0x53},\n\t104: {lang: 0x2e8, region: 0x112},\n\t105: {lang: 0x4f8, region: 0x10b},\n\t106: {lang: 0x4f8, region: 0x10b},\n\t107: {lang: 0x304, region: 0x99},\n\t108: {lang: 0x31b, region: 0x99},\n\t109: {lang: 0x30b, region: 0x53},\n\t111: {lang: 0x31e, region: 0x35},\n\t112: {lang: 0x30e, region: 0x99},\n\t113: {lang: 0x414, region: 0xe8},\n\t114: {lang: 0x331, region: 0xc4},\n\t115: {lang: 0x4f9, region: 0x108},\n\t116: {lang: 0x3b, region: 0xa1},\n\t117: {lang: 0x353, region: 0xdb},\n\t120: {lang: 0x2d0, region: 0x84},\n\t121: {lang: 0x52a, region: 0x53},\n\t122: {lang: 0x403, region: 0x96},\n\t123: {lang: 0x3ee, region: 0x99},\n\t124: {lang: 0x39b, region: 0xc5},\n\t125: {lang: 0x395, region: 0x99},\n\t126: {lang: 0x399, region: 0x135},\n\t127: {lang: 0x429, region: 0x115},\n\t128: {lang: 0x3b, region: 0x11c},\n\t129: {lang: 0xfd, region: 0xc4},\n\t130: {lang: 0x27d, region: 0x106},\n\t131: {lang: 0x2c9, region: 0x53},\n\t132: {lang: 0x39f, region: 0x9c},\n\t133: {lang: 0x39f, region: 0x53},\n\t135: {lang: 0x3ad, region: 0xb0},\n\t137: {lang: 0x1c6, region: 0x53},\n\t138: {lang: 0x4fd, region: 0x9c},\n\t189: {lang: 0x3cb, region: 0x95},\n\t191: {lang: 0x372, region: 0x10c},\n\t192: {lang: 0x420, region: 0x97},\n\t194: {lang: 0x4ff, region: 0x15e},\n\t195: {lang: 0x3f0, region: 0x99},\n\t196: {lang: 0x45, region: 0x135},\n\t197: {lang: 0x139, region: 0x7b},\n\t198: {lang: 0x3e9, region: 0x99},\n\t200: {lang: 0x3e9, region: 0x99},\n\t201: {lang: 0x3fa, region: 0x99},\n\t202: {lang: 0x40c, region: 0xb3},\n\t203: {lang: 0x433, region: 0x99},\n\t204: {lang: 0xef, region: 0xc5},\n\t205: {lang: 0x43e, region: 0x95},\n\t206: {lang: 0x44d, region: 0x35},\n\t207: {lang: 0x44e, region: 0x9b},\n\t211: {lang: 0x45a, region: 0xe7},\n\t212: {lang: 0x11a, region: 0x99},\n\t213: {lang: 0x45e, region: 0x53},\n\t214: {lang: 0x232, region: 0x53},\n\t215: {lang: 0x450, region: 0x99},\n\t216: {lang: 0x4a5, region: 0x53},\n\t217: {lang: 0x9f, region: 0x13e},\n\t218: {lang: 0x461, region: 0x99},\n\t220: {lang: 0x528, region: 0xba},\n\t221: {lang: 0x153, region: 0xe7},\n\t222: {lang: 0x128, region: 0xcd},\n\t223: {lang: 0x46b, region: 0x123},\n\t224: {lang: 0xa9, region: 0x53},\n\t225: {lang: 0x2ce, region: 0x99},\n\t226: {lang: 0x4ad, region: 0x11c},\n\t227: {lang: 0x4be, region: 0xb4},\n\t229: {lang: 0x1ce, region: 0x99},\n\t232: {lang: 0x3a9, region: 0x9c},\n\t233: {lang: 0x22, region: 0x9b},\n\t234: {lang: 0x1ea, region: 0x53},\n\t235: {lang: 0xef, region: 0xc5},\n}\n\ntype likelyScriptRegion struct {\n\tregion uint16\n\tscript uint8\n\tflags  uint8\n}\n\n// likelyLang is a lookup table, indexed by langID, for the most likely\n// scripts and regions given incomplete information. If more entries exist for a\n// given language, region and script are the index and size respectively\n// of the list in likelyLangList.\n// Size: 5320 bytes, 1330 elements\nvar likelyLang = [1330]likelyScriptRegion{\n\t0:    {region: 0x135, script: 0x57, flags: 0x0},\n\t1:    {region: 0x6f, script: 0x57, flags: 0x0},\n\t2:    {region: 0x165, script: 0x57, flags: 0x0},\n\t3:    {region: 0x165, script: 0x57, flags: 0x0},\n\t4:    {region: 0x165, script: 0x57, flags: 0x0},\n\t5:    {region: 0x7d, script: 0x1f, flags: 0x0},\n\t6:    {region: 0x165, script: 0x57, flags: 0x0},\n\t7:    {region: 0x165, script: 0x1f, flags: 0x0},\n\t8:    {region: 0x80, script: 0x57, flags: 0x0},\n\t9:    {region: 0x165, script: 0x57, flags: 0x0},\n\t10:   {region: 0x165, script: 0x57, flags: 0x0},\n\t11:   {region: 0x165, script: 0x57, flags: 0x0},\n\t12:   {region: 0x95, script: 0x57, flags: 0x0},\n\t13:   {region: 0x131, script: 0x57, flags: 0x0},\n\t14:   {region: 0x80, script: 0x57, flags: 0x0},\n\t15:   {region: 0x165, script: 0x57, flags: 0x0},\n\t16:   {region: 0x165, script: 0x57, flags: 0x0},\n\t17:   {region: 0x106, script: 0x1f, flags: 0x0},\n\t18:   {region: 0x165, script: 0x57, flags: 0x0},\n\t19:   {region: 0x9c, script: 0x9, flags: 0x0},\n\t20:   {region: 0x128, script: 0x5, flags: 0x0},\n\t21:   {region: 0x165, script: 0x57, flags: 0x0},\n\t22:   {region: 0x161, script: 0x57, flags: 0x0},\n\t23:   {region: 0x165, script: 0x57, flags: 0x0},\n\t24:   {region: 0x165, script: 0x57, flags: 0x0},\n\t25:   {region: 0x165, script: 0x57, flags: 0x0},\n\t26:   {region: 0x165, script: 0x57, flags: 0x0},\n\t27:   {region: 0x165, script: 0x57, flags: 0x0},\n\t28:   {region: 0x52, script: 0x57, flags: 0x0},\n\t29:   {region: 0x165, script: 0x57, flags: 0x0},\n\t30:   {region: 0x165, script: 0x57, flags: 0x0},\n\t31:   {region: 0x99, script: 0x4, flags: 0x0},\n\t32:   {region: 0x165, script: 0x57, flags: 0x0},\n\t33:   {region: 0x80, script: 0x57, flags: 0x0},\n\t34:   {region: 0x9b, script: 0xe9, flags: 0x0},\n\t35:   {region: 0x165, script: 0x57, flags: 0x0},\n\t36:   {region: 0x165, script: 0x57, flags: 0x0},\n\t37:   {region: 0x14d, script: 0x57, flags: 0x0},\n\t38:   {region: 0x106, script: 0x1f, flags: 0x0},\n\t39:   {region: 0x6f, script: 0x29, flags: 0x0},\n\t40:   {region: 0x165, script: 0x57, flags: 0x0},\n\t41:   {region: 0x165, script: 0x57, flags: 0x0},\n\t42:   {region: 0xd6, script: 0x57, flags: 0x0},\n\t43:   {region: 0x165, script: 0x57, flags: 0x0},\n\t45:   {region: 0x165, script: 0x57, flags: 0x0},\n\t46:   {region: 0x165, script: 0x57, flags: 0x0},\n\t47:   {region: 0x165, script: 0x57, flags: 0x0},\n\t48:   {region: 0x165, script: 0x57, flags: 0x0},\n\t49:   {region: 0x165, script: 0x57, flags: 0x0},\n\t50:   {region: 0x165, script: 0x57, flags: 0x0},\n\t51:   {region: 0x95, script: 0x57, flags: 0x0},\n\t52:   {region: 0x165, script: 0x5, flags: 0x0},\n\t53:   {region: 0x122, script: 0x5, flags: 0x0},\n\t54:   {region: 0x165, script: 0x57, flags: 0x0},\n\t55:   {region: 0x165, script: 0x57, flags: 0x0},\n\t56:   {region: 0x165, script: 0x57, flags: 0x0},\n\t57:   {region: 0x165, script: 0x57, flags: 0x0},\n\t58:   {region: 0x6b, script: 0x5, flags: 0x0},\n\t59:   {region: 0x0, script: 0x3, flags: 0x1},\n\t60:   {region: 0x165, script: 0x57, flags: 0x0},\n\t61:   {region: 0x51, script: 0x57, flags: 0x0},\n\t62:   {region: 0x3f, script: 0x57, flags: 0x0},\n\t63:   {region: 0x67, script: 0x5, flags: 0x0},\n\t65:   {region: 0xba, script: 0x5, flags: 0x0},\n\t66:   {region: 0x6b, script: 0x5, flags: 0x0},\n\t67:   {region: 0x99, script: 0xe, flags: 0x0},\n\t68:   {region: 0x12f, script: 0x57, flags: 0x0},\n\t69:   {region: 0x135, script: 0xc4, flags: 0x0},\n\t70:   {region: 0x165, script: 0x57, flags: 0x0},\n\t71:   {region: 0x165, script: 0x57, flags: 0x0},\n\t72:   {region: 0x6e, script: 0x57, flags: 0x0},\n\t73:   {region: 0x165, script: 0x57, flags: 0x0},\n\t74:   {region: 0x165, script: 0x57, flags: 0x0},\n\t75:   {region: 0x49, script: 0x57, flags: 0x0},\n\t76:   {region: 0x165, script: 0x57, flags: 0x0},\n\t77:   {region: 0x106, script: 0x1f, flags: 0x0},\n\t78:   {region: 0x165, script: 0x5, flags: 0x0},\n\t79:   {region: 0x165, script: 0x57, flags: 0x0},\n\t80:   {region: 0x165, script: 0x57, flags: 0x0},\n\t81:   {region: 0x165, script: 0x57, flags: 0x0},\n\t82:   {region: 0x99, script: 0x21, flags: 0x0},\n\t83:   {region: 0x165, script: 0x57, flags: 0x0},\n\t84:   {region: 0x165, script: 0x57, flags: 0x0},\n\t85:   {region: 0x165, script: 0x57, flags: 0x0},\n\t86:   {region: 0x3f, script: 0x57, flags: 0x0},\n\t87:   {region: 0x165, script: 0x57, flags: 0x0},\n\t88:   {region: 0x3, script: 0x5, flags: 0x1},\n\t89:   {region: 0x106, script: 0x1f, flags: 0x0},\n\t90:   {region: 0xe8, script: 0x5, flags: 0x0},\n\t91:   {region: 0x95, script: 0x57, flags: 0x0},\n\t92:   {region: 0xdb, script: 0x21, flags: 0x0},\n\t93:   {region: 0x2e, script: 0x57, flags: 0x0},\n\t94:   {region: 0x52, script: 0x57, flags: 0x0},\n\t95:   {region: 0x165, script: 0x57, flags: 0x0},\n\t96:   {region: 0x52, script: 0xb, flags: 0x0},\n\t97:   {region: 0x165, script: 0x57, flags: 0x0},\n\t98:   {region: 0x165, script: 0x57, flags: 0x0},\n\t99:   {region: 0x95, script: 0x57, flags: 0x0},\n\t100:  {region: 0x165, script: 0x57, flags: 0x0},\n\t101:  {region: 0x52, script: 0x57, flags: 0x0},\n\t102:  {region: 0x165, script: 0x57, flags: 0x0},\n\t103:  {region: 0x165, script: 0x57, flags: 0x0},\n\t104:  {region: 0x165, script: 0x57, flags: 0x0},\n\t105:  {region: 0x165, script: 0x57, flags: 0x0},\n\t106:  {region: 0x4f, script: 0x57, flags: 0x0},\n\t107:  {region: 0x165, script: 0x57, flags: 0x0},\n\t108:  {region: 0x165, script: 0x57, flags: 0x0},\n\t109:  {region: 0x165, script: 0x57, flags: 0x0},\n\t110:  {region: 0x165, script: 0x29, flags: 0x0},\n\t111:  {region: 0x165, script: 0x57, flags: 0x0},\n\t112:  {region: 0x165, script: 0x57, flags: 0x0},\n\t113:  {region: 0x47, script: 0x1f, flags: 0x0},\n\t114:  {region: 0x165, script: 0x57, flags: 0x0},\n\t115:  {region: 0x165, script: 0x57, flags: 0x0},\n\t116:  {region: 0x10b, script: 0x5, flags: 0x0},\n\t117:  {region: 0x162, script: 0x57, flags: 0x0},\n\t118:  {region: 0x165, script: 0x57, flags: 0x0},\n\t119:  {region: 0x95, script: 0x57, flags: 0x0},\n\t120:  {region: 0x165, script: 0x57, flags: 0x0},\n\t121:  {region: 0x12f, script: 0x57, flags: 0x0},\n\t122:  {region: 0x52, script: 0x57, flags: 0x0},\n\t123:  {region: 0x99, script: 0xd7, flags: 0x0},\n\t124:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t125:  {region: 0x99, script: 0x21, flags: 0x0},\n\t126:  {region: 0x38, script: 0x1f, flags: 0x0},\n\t127:  {region: 0x99, script: 0x21, flags: 0x0},\n\t128:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t129:  {region: 0x12b, script: 0x31, flags: 0x0},\n\t131:  {region: 0x99, script: 0x21, flags: 0x0},\n\t132:  {region: 0x165, script: 0x57, flags: 0x0},\n\t133:  {region: 0x99, script: 0x21, flags: 0x0},\n\t134:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t135:  {region: 0x165, script: 0x57, flags: 0x0},\n\t136:  {region: 0x99, script: 0x21, flags: 0x0},\n\t137:  {region: 0x165, script: 0x57, flags: 0x0},\n\t138:  {region: 0x13f, script: 0x57, flags: 0x0},\n\t139:  {region: 0x165, script: 0x57, flags: 0x0},\n\t140:  {region: 0x165, script: 0x57, flags: 0x0},\n\t141:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t142:  {region: 0x165, script: 0x57, flags: 0x0},\n\t143:  {region: 0xd6, script: 0x57, flags: 0x0},\n\t144:  {region: 0x165, script: 0x57, flags: 0x0},\n\t145:  {region: 0x165, script: 0x57, flags: 0x0},\n\t146:  {region: 0x165, script: 0x57, flags: 0x0},\n\t147:  {region: 0x165, script: 0x29, flags: 0x0},\n\t148:  {region: 0x99, script: 0x21, flags: 0x0},\n\t149:  {region: 0x95, script: 0x57, flags: 0x0},\n\t150:  {region: 0x165, script: 0x57, flags: 0x0},\n\t151:  {region: 0x165, script: 0x57, flags: 0x0},\n\t152:  {region: 0x114, script: 0x57, flags: 0x0},\n\t153:  {region: 0x165, script: 0x57, flags: 0x0},\n\t154:  {region: 0x165, script: 0x57, flags: 0x0},\n\t155:  {region: 0x52, script: 0x57, flags: 0x0},\n\t156:  {region: 0x165, script: 0x57, flags: 0x0},\n\t157:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t158:  {region: 0x165, script: 0x57, flags: 0x0},\n\t159:  {region: 0x13e, script: 0xd9, flags: 0x0},\n\t160:  {region: 0xc3, script: 0x57, flags: 0x0},\n\t161:  {region: 0x165, script: 0x57, flags: 0x0},\n\t162:  {region: 0x165, script: 0x57, flags: 0x0},\n\t163:  {region: 0xc3, script: 0x57, flags: 0x0},\n\t164:  {region: 0x165, script: 0x57, flags: 0x0},\n\t165:  {region: 0x35, script: 0xe, flags: 0x0},\n\t166:  {region: 0x165, script: 0x57, flags: 0x0},\n\t167:  {region: 0x165, script: 0x57, flags: 0x0},\n\t168:  {region: 0x165, script: 0x57, flags: 0x0},\n\t169:  {region: 0x53, script: 0xe0, flags: 0x0},\n\t170:  {region: 0x165, script: 0x57, flags: 0x0},\n\t171:  {region: 0x165, script: 0x57, flags: 0x0},\n\t172:  {region: 0x165, script: 0x57, flags: 0x0},\n\t173:  {region: 0x99, script: 0xe, flags: 0x0},\n\t174:  {region: 0x165, script: 0x57, flags: 0x0},\n\t175:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t176:  {region: 0x165, script: 0x57, flags: 0x0},\n\t177:  {region: 0x4f, script: 0x57, flags: 0x0},\n\t178:  {region: 0x78, script: 0x57, flags: 0x0},\n\t179:  {region: 0x99, script: 0x21, flags: 0x0},\n\t180:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t181:  {region: 0x99, script: 0x21, flags: 0x0},\n\t182:  {region: 0x165, script: 0x57, flags: 0x0},\n\t183:  {region: 0x33, script: 0x57, flags: 0x0},\n\t184:  {region: 0x165, script: 0x57, flags: 0x0},\n\t185:  {region: 0xb4, script: 0xc, flags: 0x0},\n\t186:  {region: 0x52, script: 0x57, flags: 0x0},\n\t187:  {region: 0x165, script: 0x29, flags: 0x0},\n\t188:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t189:  {region: 0x165, script: 0x57, flags: 0x0},\n\t190:  {region: 0xe8, script: 0x21, flags: 0x0},\n\t191:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t192:  {region: 0x15f, script: 0x57, flags: 0x0},\n\t193:  {region: 0x165, script: 0x57, flags: 0x0},\n\t194:  {region: 0x95, script: 0x57, flags: 0x0},\n\t195:  {region: 0x165, script: 0x57, flags: 0x0},\n\t196:  {region: 0x52, script: 0x57, flags: 0x0},\n\t197:  {region: 0x165, script: 0x57, flags: 0x0},\n\t198:  {region: 0x165, script: 0x57, flags: 0x0},\n\t199:  {region: 0x165, script: 0x57, flags: 0x0},\n\t200:  {region: 0x86, script: 0x57, flags: 0x0},\n\t201:  {region: 0x165, script: 0x57, flags: 0x0},\n\t202:  {region: 0x165, script: 0x57, flags: 0x0},\n\t203:  {region: 0x165, script: 0x57, flags: 0x0},\n\t204:  {region: 0x165, script: 0x57, flags: 0x0},\n\t205:  {region: 0x6d, script: 0x29, flags: 0x0},\n\t206:  {region: 0x165, script: 0x57, flags: 0x0},\n\t207:  {region: 0x165, script: 0x57, flags: 0x0},\n\t208:  {region: 0x52, script: 0x57, flags: 0x0},\n\t209:  {region: 0x165, script: 0x57, flags: 0x0},\n\t210:  {region: 0x165, script: 0x57, flags: 0x0},\n\t211:  {region: 0xc3, script: 0x57, flags: 0x0},\n\t212:  {region: 0x165, script: 0x57, flags: 0x0},\n\t213:  {region: 0x165, script: 0x57, flags: 0x0},\n\t214:  {region: 0x165, script: 0x57, flags: 0x0},\n\t215:  {region: 0x6e, script: 0x57, flags: 0x0},\n\t216:  {region: 0x165, script: 0x57, flags: 0x0},\n\t217:  {region: 0x165, script: 0x57, flags: 0x0},\n\t218:  {region: 0xd6, script: 0x57, flags: 0x0},\n\t219:  {region: 0x35, script: 0x16, flags: 0x0},\n\t220:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t221:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t222:  {region: 0x165, script: 0x57, flags: 0x0},\n\t223:  {region: 0x131, script: 0x57, flags: 0x0},\n\t224:  {region: 0x8a, script: 0x57, flags: 0x0},\n\t225:  {region: 0x75, script: 0x57, flags: 0x0},\n\t226:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t227:  {region: 0x135, script: 0x57, flags: 0x0},\n\t228:  {region: 0x49, script: 0x57, flags: 0x0},\n\t229:  {region: 0x135, script: 0x1a, flags: 0x0},\n\t230:  {region: 0xa6, script: 0x5, flags: 0x0},\n\t231:  {region: 0x13e, script: 0x19, flags: 0x0},\n\t232:  {region: 0x165, script: 0x57, flags: 0x0},\n\t233:  {region: 0x9b, script: 0x5, flags: 0x0},\n\t234:  {region: 0x165, script: 0x57, flags: 0x0},\n\t235:  {region: 0x165, script: 0x57, flags: 0x0},\n\t236:  {region: 0x165, script: 0x57, flags: 0x0},\n\t237:  {region: 0x165, script: 0x57, flags: 0x0},\n\t238:  {region: 0x165, script: 0x57, flags: 0x0},\n\t239:  {region: 0xc5, script: 0xcc, flags: 0x0},\n\t240:  {region: 0x78, script: 0x57, flags: 0x0},\n\t241:  {region: 0x6b, script: 0x1c, flags: 0x0},\n\t242:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t243:  {region: 0x49, script: 0x17, flags: 0x0},\n\t244:  {region: 0x130, script: 0x1f, flags: 0x0},\n\t245:  {region: 0x49, script: 0x17, flags: 0x0},\n\t246:  {region: 0x49, script: 0x17, flags: 0x0},\n\t247:  {region: 0x49, script: 0x17, flags: 0x0},\n\t248:  {region: 0x49, script: 0x17, flags: 0x0},\n\t249:  {region: 0x10a, script: 0x57, flags: 0x0},\n\t250:  {region: 0x5e, script: 0x57, flags: 0x0},\n\t251:  {region: 0xe9, script: 0x57, flags: 0x0},\n\t252:  {region: 0x49, script: 0x17, flags: 0x0},\n\t253:  {region: 0xc4, script: 0x81, flags: 0x0},\n\t254:  {region: 0x8, script: 0x2, flags: 0x1},\n\t255:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t256:  {region: 0x7b, script: 0x57, flags: 0x0},\n\t257:  {region: 0x63, script: 0x57, flags: 0x0},\n\t258:  {region: 0x165, script: 0x57, flags: 0x0},\n\t259:  {region: 0x165, script: 0x57, flags: 0x0},\n\t260:  {region: 0x165, script: 0x57, flags: 0x0},\n\t261:  {region: 0x165, script: 0x57, flags: 0x0},\n\t262:  {region: 0x135, script: 0x57, flags: 0x0},\n\t263:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t264:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t265:  {region: 0x165, script: 0x57, flags: 0x0},\n\t266:  {region: 0x165, script: 0x57, flags: 0x0},\n\t267:  {region: 0x99, script: 0x5, flags: 0x0},\n\t268:  {region: 0x165, script: 0x57, flags: 0x0},\n\t269:  {region: 0x60, script: 0x57, flags: 0x0},\n\t270:  {region: 0x165, script: 0x57, flags: 0x0},\n\t271:  {region: 0x49, script: 0x57, flags: 0x0},\n\t272:  {region: 0x165, script: 0x57, flags: 0x0},\n\t273:  {region: 0x165, script: 0x57, flags: 0x0},\n\t274:  {region: 0x165, script: 0x57, flags: 0x0},\n\t275:  {region: 0x165, script: 0x5, flags: 0x0},\n\t276:  {region: 0x49, script: 0x57, flags: 0x0},\n\t277:  {region: 0x165, script: 0x57, flags: 0x0},\n\t278:  {region: 0x165, script: 0x57, flags: 0x0},\n\t279:  {region: 0xd4, script: 0x57, flags: 0x0},\n\t280:  {region: 0x4f, script: 0x57, flags: 0x0},\n\t281:  {region: 0x165, script: 0x57, flags: 0x0},\n\t282:  {region: 0x99, script: 0x5, flags: 0x0},\n\t283:  {region: 0x165, script: 0x57, flags: 0x0},\n\t284:  {region: 0x165, script: 0x57, flags: 0x0},\n\t285:  {region: 0x165, script: 0x57, flags: 0x0},\n\t286:  {region: 0x165, script: 0x29, flags: 0x0},\n\t287:  {region: 0x60, script: 0x57, flags: 0x0},\n\t288:  {region: 0xc3, script: 0x57, flags: 0x0},\n\t289:  {region: 0xd0, script: 0x57, flags: 0x0},\n\t290:  {region: 0x165, script: 0x57, flags: 0x0},\n\t291:  {region: 0xdb, script: 0x21, flags: 0x0},\n\t292:  {region: 0x52, script: 0x57, flags: 0x0},\n\t293:  {region: 0x165, script: 0x57, flags: 0x0},\n\t294:  {region: 0x165, script: 0x57, flags: 0x0},\n\t295:  {region: 0x165, script: 0x57, flags: 0x0},\n\t296:  {region: 0xcd, script: 0xde, flags: 0x0},\n\t297:  {region: 0x165, script: 0x57, flags: 0x0},\n\t298:  {region: 0x165, script: 0x57, flags: 0x0},\n\t299:  {region: 0x114, script: 0x57, flags: 0x0},\n\t300:  {region: 0x37, script: 0x57, flags: 0x0},\n\t301:  {region: 0x43, script: 0xe0, flags: 0x0},\n\t302:  {region: 0x165, script: 0x57, flags: 0x0},\n\t303:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t304:  {region: 0x80, script: 0x57, flags: 0x0},\n\t305:  {region: 0xd6, script: 0x57, flags: 0x0},\n\t306:  {region: 0x9e, script: 0x57, flags: 0x0},\n\t307:  {region: 0x6b, script: 0x27, flags: 0x0},\n\t308:  {region: 0x165, script: 0x57, flags: 0x0},\n\t309:  {region: 0xc4, script: 0x48, flags: 0x0},\n\t310:  {region: 0x87, script: 0x31, flags: 0x0},\n\t311:  {region: 0x165, script: 0x57, flags: 0x0},\n\t312:  {region: 0x165, script: 0x57, flags: 0x0},\n\t313:  {region: 0xa, script: 0x2, flags: 0x1},\n\t314:  {region: 0x165, script: 0x57, flags: 0x0},\n\t315:  {region: 0x165, script: 0x57, flags: 0x0},\n\t316:  {region: 0x1, script: 0x57, flags: 0x0},\n\t317:  {region: 0x165, script: 0x57, flags: 0x0},\n\t318:  {region: 0x6e, script: 0x57, flags: 0x0},\n\t319:  {region: 0x135, script: 0x57, flags: 0x0},\n\t320:  {region: 0x6a, script: 0x57, flags: 0x0},\n\t321:  {region: 0x165, script: 0x57, flags: 0x0},\n\t322:  {region: 0x9e, script: 0x43, flags: 0x0},\n\t323:  {region: 0x165, script: 0x57, flags: 0x0},\n\t324:  {region: 0x165, script: 0x57, flags: 0x0},\n\t325:  {region: 0x6e, script: 0x57, flags: 0x0},\n\t326:  {region: 0x52, script: 0x57, flags: 0x0},\n\t327:  {region: 0x6e, script: 0x57, flags: 0x0},\n\t328:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t329:  {region: 0x165, script: 0x57, flags: 0x0},\n\t330:  {region: 0x165, script: 0x57, flags: 0x0},\n\t331:  {region: 0x165, script: 0x57, flags: 0x0},\n\t332:  {region: 0x165, script: 0x57, flags: 0x0},\n\t333:  {region: 0x86, script: 0x57, flags: 0x0},\n\t334:  {region: 0xc, script: 0x2, flags: 0x1},\n\t335:  {region: 0x165, script: 0x57, flags: 0x0},\n\t336:  {region: 0xc3, script: 0x57, flags: 0x0},\n\t337:  {region: 0x72, script: 0x57, flags: 0x0},\n\t338:  {region: 0x10b, script: 0x5, flags: 0x0},\n\t339:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t340:  {region: 0x10c, script: 0x57, flags: 0x0},\n\t341:  {region: 0x73, script: 0x57, flags: 0x0},\n\t342:  {region: 0x165, script: 0x57, flags: 0x0},\n\t343:  {region: 0x165, script: 0x57, flags: 0x0},\n\t344:  {region: 0x76, script: 0x57, flags: 0x0},\n\t345:  {region: 0x165, script: 0x57, flags: 0x0},\n\t346:  {region: 0x3b, script: 0x57, flags: 0x0},\n\t347:  {region: 0x165, script: 0x57, flags: 0x0},\n\t348:  {region: 0x165, script: 0x57, flags: 0x0},\n\t349:  {region: 0x165, script: 0x57, flags: 0x0},\n\t350:  {region: 0x78, script: 0x57, flags: 0x0},\n\t351:  {region: 0x135, script: 0x57, flags: 0x0},\n\t352:  {region: 0x78, script: 0x57, flags: 0x0},\n\t353:  {region: 0x60, script: 0x57, flags: 0x0},\n\t354:  {region: 0x60, script: 0x57, flags: 0x0},\n\t355:  {region: 0x52, script: 0x5, flags: 0x0},\n\t356:  {region: 0x140, script: 0x57, flags: 0x0},\n\t357:  {region: 0x165, script: 0x57, flags: 0x0},\n\t358:  {region: 0x84, script: 0x57, flags: 0x0},\n\t359:  {region: 0x165, script: 0x57, flags: 0x0},\n\t360:  {region: 0xd4, script: 0x57, flags: 0x0},\n\t361:  {region: 0x9e, script: 0x57, flags: 0x0},\n\t362:  {region: 0xd6, script: 0x57, flags: 0x0},\n\t363:  {region: 0x165, script: 0x57, flags: 0x0},\n\t364:  {region: 0x10b, script: 0x57, flags: 0x0},\n\t365:  {region: 0xd9, script: 0x57, flags: 0x0},\n\t366:  {region: 0x96, script: 0x57, flags: 0x0},\n\t367:  {region: 0x80, script: 0x57, flags: 0x0},\n\t368:  {region: 0x165, script: 0x57, flags: 0x0},\n\t369:  {region: 0xbc, script: 0x57, flags: 0x0},\n\t370:  {region: 0x165, script: 0x57, flags: 0x0},\n\t371:  {region: 0x165, script: 0x57, flags: 0x0},\n\t372:  {region: 0x165, script: 0x57, flags: 0x0},\n\t373:  {region: 0x53, script: 0x38, flags: 0x0},\n\t374:  {region: 0x165, script: 0x57, flags: 0x0},\n\t375:  {region: 0x95, script: 0x57, flags: 0x0},\n\t376:  {region: 0x165, script: 0x57, flags: 0x0},\n\t377:  {region: 0x165, script: 0x57, flags: 0x0},\n\t378:  {region: 0x99, script: 0x21, flags: 0x0},\n\t379:  {region: 0x165, script: 0x57, flags: 0x0},\n\t380:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t381:  {region: 0x7e, script: 0x57, flags: 0x0},\n\t382:  {region: 0x7b, script: 0x57, flags: 0x0},\n\t383:  {region: 0x165, script: 0x57, flags: 0x0},\n\t384:  {region: 0x165, script: 0x57, flags: 0x0},\n\t385:  {region: 0x165, script: 0x57, flags: 0x0},\n\t386:  {region: 0x165, script: 0x57, flags: 0x0},\n\t387:  {region: 0x165, script: 0x57, flags: 0x0},\n\t388:  {region: 0x165, script: 0x57, flags: 0x0},\n\t389:  {region: 0x6f, script: 0x29, flags: 0x0},\n\t390:  {region: 0x165, script: 0x57, flags: 0x0},\n\t391:  {region: 0xdb, script: 0x21, flags: 0x0},\n\t392:  {region: 0x165, script: 0x57, flags: 0x0},\n\t393:  {region: 0xa7, script: 0x57, flags: 0x0},\n\t394:  {region: 0x165, script: 0x57, flags: 0x0},\n\t395:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t396:  {region: 0x165, script: 0x57, flags: 0x0},\n\t397:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t398:  {region: 0x165, script: 0x57, flags: 0x0},\n\t399:  {region: 0x165, script: 0x57, flags: 0x0},\n\t400:  {region: 0x6e, script: 0x57, flags: 0x0},\n\t401:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t402:  {region: 0x165, script: 0x57, flags: 0x0},\n\t403:  {region: 0x165, script: 0x29, flags: 0x0},\n\t404:  {region: 0xf1, script: 0x57, flags: 0x0},\n\t405:  {region: 0x165, script: 0x57, flags: 0x0},\n\t406:  {region: 0x165, script: 0x57, flags: 0x0},\n\t407:  {region: 0x165, script: 0x57, flags: 0x0},\n\t408:  {region: 0x165, script: 0x29, flags: 0x0},\n\t409:  {region: 0x165, script: 0x57, flags: 0x0},\n\t410:  {region: 0x99, script: 0x21, flags: 0x0},\n\t411:  {region: 0x99, script: 0xda, flags: 0x0},\n\t412:  {region: 0x95, script: 0x57, flags: 0x0},\n\t413:  {region: 0xd9, script: 0x57, flags: 0x0},\n\t414:  {region: 0x130, script: 0x2f, flags: 0x0},\n\t415:  {region: 0x165, script: 0x57, flags: 0x0},\n\t416:  {region: 0xe, script: 0x2, flags: 0x1},\n\t417:  {region: 0x99, script: 0xe, flags: 0x0},\n\t418:  {region: 0x165, script: 0x57, flags: 0x0},\n\t419:  {region: 0x4e, script: 0x57, flags: 0x0},\n\t420:  {region: 0x99, script: 0x32, flags: 0x0},\n\t421:  {region: 0x41, script: 0x57, flags: 0x0},\n\t422:  {region: 0x54, script: 0x57, flags: 0x0},\n\t423:  {region: 0x165, script: 0x57, flags: 0x0},\n\t424:  {region: 0x80, script: 0x57, flags: 0x0},\n\t425:  {region: 0x165, script: 0x57, flags: 0x0},\n\t426:  {region: 0x165, script: 0x57, flags: 0x0},\n\t427:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t428:  {region: 0x98, script: 0x57, flags: 0x0},\n\t429:  {region: 0x165, script: 0x57, flags: 0x0},\n\t430:  {region: 0xdb, script: 0x21, flags: 0x0},\n\t431:  {region: 0x165, script: 0x57, flags: 0x0},\n\t432:  {region: 0x165, script: 0x5, flags: 0x0},\n\t433:  {region: 0x49, script: 0x57, flags: 0x0},\n\t434:  {region: 0x165, script: 0x5, flags: 0x0},\n\t435:  {region: 0x165, script: 0x57, flags: 0x0},\n\t436:  {region: 0x10, script: 0x3, flags: 0x1},\n\t437:  {region: 0x165, script: 0x57, flags: 0x0},\n\t438:  {region: 0x53, script: 0x38, flags: 0x0},\n\t439:  {region: 0x165, script: 0x57, flags: 0x0},\n\t440:  {region: 0x135, script: 0x57, flags: 0x0},\n\t441:  {region: 0x24, script: 0x5, flags: 0x0},\n\t442:  {region: 0x165, script: 0x57, flags: 0x0},\n\t443:  {region: 0x165, script: 0x29, flags: 0x0},\n\t444:  {region: 0x97, script: 0x3b, flags: 0x0},\n\t445:  {region: 0x165, script: 0x57, flags: 0x0},\n\t446:  {region: 0x99, script: 0x21, flags: 0x0},\n\t447:  {region: 0x165, script: 0x57, flags: 0x0},\n\t448:  {region: 0x73, script: 0x57, flags: 0x0},\n\t449:  {region: 0x165, script: 0x57, flags: 0x0},\n\t450:  {region: 0x165, script: 0x57, flags: 0x0},\n\t451:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t452:  {region: 0x165, script: 0x57, flags: 0x0},\n\t453:  {region: 0x12b, script: 0x3d, flags: 0x0},\n\t454:  {region: 0x53, script: 0x89, flags: 0x0},\n\t455:  {region: 0x165, script: 0x57, flags: 0x0},\n\t456:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t457:  {region: 0x99, script: 0x21, flags: 0x0},\n\t458:  {region: 0xaf, script: 0x3e, flags: 0x0},\n\t459:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t460:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t461:  {region: 0xe6, script: 0x57, flags: 0x0},\n\t462:  {region: 0x99, script: 0x21, flags: 0x0},\n\t463:  {region: 0x99, script: 0x21, flags: 0x0},\n\t464:  {region: 0x165, script: 0x57, flags: 0x0},\n\t465:  {region: 0x90, script: 0x57, flags: 0x0},\n\t466:  {region: 0x60, script: 0x57, flags: 0x0},\n\t467:  {region: 0x53, script: 0x38, flags: 0x0},\n\t468:  {region: 0x91, script: 0x57, flags: 0x0},\n\t469:  {region: 0x92, script: 0x57, flags: 0x0},\n\t470:  {region: 0x165, script: 0x57, flags: 0x0},\n\t471:  {region: 0x28, script: 0x8, flags: 0x0},\n\t472:  {region: 0xd2, script: 0x57, flags: 0x0},\n\t473:  {region: 0x78, script: 0x57, flags: 0x0},\n\t474:  {region: 0x165, script: 0x57, flags: 0x0},\n\t475:  {region: 0x165, script: 0x57, flags: 0x0},\n\t476:  {region: 0xd0, script: 0x57, flags: 0x0},\n\t477:  {region: 0xd6, script: 0x57, flags: 0x0},\n\t478:  {region: 0x165, script: 0x57, flags: 0x0},\n\t479:  {region: 0x165, script: 0x57, flags: 0x0},\n\t480:  {region: 0x165, script: 0x57, flags: 0x0},\n\t481:  {region: 0x95, script: 0x57, flags: 0x0},\n\t482:  {region: 0x165, script: 0x57, flags: 0x0},\n\t483:  {region: 0x165, script: 0x57, flags: 0x0},\n\t484:  {region: 0x165, script: 0x57, flags: 0x0},\n\t486:  {region: 0x122, script: 0x57, flags: 0x0},\n\t487:  {region: 0xd6, script: 0x57, flags: 0x0},\n\t488:  {region: 0x165, script: 0x57, flags: 0x0},\n\t489:  {region: 0x165, script: 0x57, flags: 0x0},\n\t490:  {region: 0x53, script: 0xea, flags: 0x0},\n\t491:  {region: 0x165, script: 0x57, flags: 0x0},\n\t492:  {region: 0x135, script: 0x57, flags: 0x0},\n\t493:  {region: 0x165, script: 0x57, flags: 0x0},\n\t494:  {region: 0x49, script: 0x57, flags: 0x0},\n\t495:  {region: 0x165, script: 0x57, flags: 0x0},\n\t496:  {region: 0x165, script: 0x57, flags: 0x0},\n\t497:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t498:  {region: 0x165, script: 0x57, flags: 0x0},\n\t499:  {region: 0x95, script: 0x57, flags: 0x0},\n\t500:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t501:  {region: 0x1, script: 0x57, flags: 0x0},\n\t502:  {region: 0x165, script: 0x57, flags: 0x0},\n\t503:  {region: 0x165, script: 0x57, flags: 0x0},\n\t504:  {region: 0x9d, script: 0x57, flags: 0x0},\n\t505:  {region: 0x9e, script: 0x57, flags: 0x0},\n\t506:  {region: 0x49, script: 0x17, flags: 0x0},\n\t507:  {region: 0x97, script: 0x3b, flags: 0x0},\n\t508:  {region: 0x165, script: 0x57, flags: 0x0},\n\t509:  {region: 0x165, script: 0x57, flags: 0x0},\n\t510:  {region: 0x106, script: 0x57, flags: 0x0},\n\t511:  {region: 0x165, script: 0x57, flags: 0x0},\n\t512:  {region: 0xa2, script: 0x46, flags: 0x0},\n\t513:  {region: 0x165, script: 0x57, flags: 0x0},\n\t514:  {region: 0xa0, script: 0x57, flags: 0x0},\n\t515:  {region: 0x1, script: 0x57, flags: 0x0},\n\t516:  {region: 0x165, script: 0x57, flags: 0x0},\n\t517:  {region: 0x165, script: 0x57, flags: 0x0},\n\t518:  {region: 0x165, script: 0x57, flags: 0x0},\n\t519:  {region: 0x52, script: 0x57, flags: 0x0},\n\t520:  {region: 0x130, script: 0x3b, flags: 0x0},\n\t521:  {region: 0x165, script: 0x57, flags: 0x0},\n\t522:  {region: 0x12f, script: 0x57, flags: 0x0},\n\t523:  {region: 0xdb, script: 0x21, flags: 0x0},\n\t524:  {region: 0x165, script: 0x57, flags: 0x0},\n\t525:  {region: 0x63, script: 0x57, flags: 0x0},\n\t526:  {region: 0x95, script: 0x57, flags: 0x0},\n\t527:  {region: 0x95, script: 0x57, flags: 0x0},\n\t528:  {region: 0x7d, script: 0x2b, flags: 0x0},\n\t529:  {region: 0x137, script: 0x1f, flags: 0x0},\n\t530:  {region: 0x67, script: 0x57, flags: 0x0},\n\t531:  {region: 0xc4, script: 0x57, flags: 0x0},\n\t532:  {region: 0x165, script: 0x57, flags: 0x0},\n\t533:  {region: 0x165, script: 0x57, flags: 0x0},\n\t534:  {region: 0xd6, script: 0x57, flags: 0x0},\n\t535:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t536:  {region: 0xc3, script: 0x57, flags: 0x0},\n\t537:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t538:  {region: 0x165, script: 0x57, flags: 0x0},\n\t539:  {region: 0x165, script: 0x57, flags: 0x0},\n\t540:  {region: 0x165, script: 0x57, flags: 0x0},\n\t541:  {region: 0x165, script: 0x57, flags: 0x0},\n\t542:  {region: 0xd4, script: 0x5, flags: 0x0},\n\t543:  {region: 0xd6, script: 0x57, flags: 0x0},\n\t544:  {region: 0x164, script: 0x57, flags: 0x0},\n\t545:  {region: 0x165, script: 0x57, flags: 0x0},\n\t546:  {region: 0x165, script: 0x57, flags: 0x0},\n\t547:  {region: 0x12f, script: 0x57, flags: 0x0},\n\t548:  {region: 0x122, script: 0x5, flags: 0x0},\n\t549:  {region: 0x165, script: 0x57, flags: 0x0},\n\t550:  {region: 0x123, script: 0xdf, flags: 0x0},\n\t551:  {region: 0x5a, script: 0x57, flags: 0x0},\n\t552:  {region: 0x52, script: 0x57, flags: 0x0},\n\t553:  {region: 0x165, script: 0x57, flags: 0x0},\n\t554:  {region: 0x4f, script: 0x57, flags: 0x0},\n\t555:  {region: 0x99, script: 0x21, flags: 0x0},\n\t556:  {region: 0x99, script: 0x21, flags: 0x0},\n\t557:  {region: 0x4b, script: 0x57, flags: 0x0},\n\t558:  {region: 0x95, script: 0x57, flags: 0x0},\n\t559:  {region: 0x165, script: 0x57, flags: 0x0},\n\t560:  {region: 0x41, script: 0x57, flags: 0x0},\n\t561:  {region: 0x99, script: 0x57, flags: 0x0},\n\t562:  {region: 0x53, script: 0xd6, flags: 0x0},\n\t563:  {region: 0x99, script: 0x21, flags: 0x0},\n\t564:  {region: 0xc3, script: 0x57, flags: 0x0},\n\t565:  {region: 0x165, script: 0x57, flags: 0x0},\n\t566:  {region: 0x99, script: 0x72, flags: 0x0},\n\t567:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t568:  {region: 0x165, script: 0x57, flags: 0x0},\n\t569:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t570:  {region: 0x165, script: 0x57, flags: 0x0},\n\t571:  {region: 0x12b, script: 0x57, flags: 0x0},\n\t572:  {region: 0x165, script: 0x57, flags: 0x0},\n\t573:  {region: 0xd2, script: 0x57, flags: 0x0},\n\t574:  {region: 0x165, script: 0x57, flags: 0x0},\n\t575:  {region: 0xaf, script: 0x54, flags: 0x0},\n\t576:  {region: 0x165, script: 0x57, flags: 0x0},\n\t577:  {region: 0x165, script: 0x57, flags: 0x0},\n\t578:  {region: 0x13, script: 0x6, flags: 0x1},\n\t579:  {region: 0x165, script: 0x57, flags: 0x0},\n\t580:  {region: 0x52, script: 0x57, flags: 0x0},\n\t581:  {region: 0x82, script: 0x57, flags: 0x0},\n\t582:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t583:  {region: 0x165, script: 0x57, flags: 0x0},\n\t584:  {region: 0x165, script: 0x57, flags: 0x0},\n\t585:  {region: 0x165, script: 0x57, flags: 0x0},\n\t586:  {region: 0xa6, script: 0x4b, flags: 0x0},\n\t587:  {region: 0x2a, script: 0x57, flags: 0x0},\n\t588:  {region: 0x165, script: 0x57, flags: 0x0},\n\t589:  {region: 0x165, script: 0x57, flags: 0x0},\n\t590:  {region: 0x165, script: 0x57, flags: 0x0},\n\t591:  {region: 0x165, script: 0x57, flags: 0x0},\n\t592:  {region: 0x165, script: 0x57, flags: 0x0},\n\t593:  {region: 0x99, script: 0x4f, flags: 0x0},\n\t594:  {region: 0x8b, script: 0x57, flags: 0x0},\n\t595:  {region: 0x165, script: 0x57, flags: 0x0},\n\t596:  {region: 0xab, script: 0x50, flags: 0x0},\n\t597:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t598:  {region: 0x99, script: 0x21, flags: 0x0},\n\t599:  {region: 0x165, script: 0x57, flags: 0x0},\n\t600:  {region: 0x75, script: 0x57, flags: 0x0},\n\t601:  {region: 0x165, script: 0x57, flags: 0x0},\n\t602:  {region: 0xb4, script: 0x57, flags: 0x0},\n\t603:  {region: 0x165, script: 0x57, flags: 0x0},\n\t604:  {region: 0x165, script: 0x57, flags: 0x0},\n\t605:  {region: 0x165, script: 0x57, flags: 0x0},\n\t606:  {region: 0x165, script: 0x57, flags: 0x0},\n\t607:  {region: 0x165, script: 0x57, flags: 0x0},\n\t608:  {region: 0x165, script: 0x57, flags: 0x0},\n\t609:  {region: 0x165, script: 0x57, flags: 0x0},\n\t610:  {region: 0x165, script: 0x29, flags: 0x0},\n\t611:  {region: 0x165, script: 0x57, flags: 0x0},\n\t612:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t613:  {region: 0x112, script: 0x57, flags: 0x0},\n\t614:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t615:  {region: 0x106, script: 0x57, flags: 0x0},\n\t616:  {region: 0x165, script: 0x57, flags: 0x0},\n\t617:  {region: 0x99, script: 0x21, flags: 0x0},\n\t618:  {region: 0x99, script: 0x5, flags: 0x0},\n\t619:  {region: 0x12f, script: 0x57, flags: 0x0},\n\t620:  {region: 0x165, script: 0x57, flags: 0x0},\n\t621:  {region: 0x52, script: 0x57, flags: 0x0},\n\t622:  {region: 0x60, script: 0x57, flags: 0x0},\n\t623:  {region: 0x165, script: 0x57, flags: 0x0},\n\t624:  {region: 0x165, script: 0x57, flags: 0x0},\n\t625:  {region: 0x165, script: 0x29, flags: 0x0},\n\t626:  {region: 0x165, script: 0x57, flags: 0x0},\n\t627:  {region: 0x165, script: 0x57, flags: 0x0},\n\t628:  {region: 0x19, script: 0x3, flags: 0x1},\n\t629:  {region: 0x165, script: 0x57, flags: 0x0},\n\t630:  {region: 0x165, script: 0x57, flags: 0x0},\n\t631:  {region: 0x165, script: 0x57, flags: 0x0},\n\t632:  {region: 0x165, script: 0x57, flags: 0x0},\n\t633:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t634:  {region: 0x165, script: 0x57, flags: 0x0},\n\t635:  {region: 0x165, script: 0x57, flags: 0x0},\n\t636:  {region: 0x165, script: 0x57, flags: 0x0},\n\t637:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t638:  {region: 0x165, script: 0x57, flags: 0x0},\n\t639:  {region: 0x95, script: 0x57, flags: 0x0},\n\t640:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t641:  {region: 0x7b, script: 0x57, flags: 0x0},\n\t642:  {region: 0x165, script: 0x57, flags: 0x0},\n\t643:  {region: 0x165, script: 0x57, flags: 0x0},\n\t644:  {region: 0x165, script: 0x57, flags: 0x0},\n\t645:  {region: 0x165, script: 0x29, flags: 0x0},\n\t646:  {region: 0x123, script: 0xdf, flags: 0x0},\n\t647:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t648:  {region: 0x165, script: 0x57, flags: 0x0},\n\t649:  {region: 0x165, script: 0x57, flags: 0x0},\n\t650:  {region: 0x1c, script: 0x5, flags: 0x1},\n\t651:  {region: 0x165, script: 0x57, flags: 0x0},\n\t652:  {region: 0x165, script: 0x57, flags: 0x0},\n\t653:  {region: 0x165, script: 0x57, flags: 0x0},\n\t654:  {region: 0x138, script: 0x57, flags: 0x0},\n\t655:  {region: 0x87, script: 0x5b, flags: 0x0},\n\t656:  {region: 0x97, script: 0x3b, flags: 0x0},\n\t657:  {region: 0x12f, script: 0x57, flags: 0x0},\n\t658:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t659:  {region: 0x131, script: 0x57, flags: 0x0},\n\t660:  {region: 0x165, script: 0x57, flags: 0x0},\n\t661:  {region: 0xb7, script: 0x57, flags: 0x0},\n\t662:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t663:  {region: 0x165, script: 0x57, flags: 0x0},\n\t664:  {region: 0x95, script: 0x57, flags: 0x0},\n\t665:  {region: 0x165, script: 0x57, flags: 0x0},\n\t666:  {region: 0x53, script: 0xdf, flags: 0x0},\n\t667:  {region: 0x165, script: 0x57, flags: 0x0},\n\t668:  {region: 0x165, script: 0x57, flags: 0x0},\n\t669:  {region: 0x165, script: 0x57, flags: 0x0},\n\t670:  {region: 0x165, script: 0x57, flags: 0x0},\n\t671:  {region: 0x99, script: 0x59, flags: 0x0},\n\t672:  {region: 0x165, script: 0x57, flags: 0x0},\n\t673:  {region: 0x165, script: 0x57, flags: 0x0},\n\t674:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t675:  {region: 0x131, script: 0x57, flags: 0x0},\n\t676:  {region: 0x165, script: 0x57, flags: 0x0},\n\t677:  {region: 0xd9, script: 0x57, flags: 0x0},\n\t678:  {region: 0x165, script: 0x57, flags: 0x0},\n\t679:  {region: 0x165, script: 0x57, flags: 0x0},\n\t680:  {region: 0x21, script: 0x2, flags: 0x1},\n\t681:  {region: 0x165, script: 0x57, flags: 0x0},\n\t682:  {region: 0x165, script: 0x57, flags: 0x0},\n\t683:  {region: 0x9e, script: 0x57, flags: 0x0},\n\t684:  {region: 0x53, script: 0x5d, flags: 0x0},\n\t685:  {region: 0x95, script: 0x57, flags: 0x0},\n\t686:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t687:  {region: 0x135, script: 0x57, flags: 0x0},\n\t688:  {region: 0x165, script: 0x57, flags: 0x0},\n\t689:  {region: 0x165, script: 0x57, flags: 0x0},\n\t690:  {region: 0x99, script: 0xda, flags: 0x0},\n\t691:  {region: 0x9e, script: 0x57, flags: 0x0},\n\t692:  {region: 0x165, script: 0x57, flags: 0x0},\n\t693:  {region: 0x4b, script: 0x57, flags: 0x0},\n\t694:  {region: 0x165, script: 0x57, flags: 0x0},\n\t695:  {region: 0x165, script: 0x57, flags: 0x0},\n\t696:  {region: 0xaf, script: 0x54, flags: 0x0},\n\t697:  {region: 0x165, script: 0x57, flags: 0x0},\n\t698:  {region: 0x165, script: 0x57, flags: 0x0},\n\t699:  {region: 0x4b, script: 0x57, flags: 0x0},\n\t700:  {region: 0x165, script: 0x57, flags: 0x0},\n\t701:  {region: 0x165, script: 0x57, flags: 0x0},\n\t702:  {region: 0x162, script: 0x57, flags: 0x0},\n\t703:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t704:  {region: 0xb6, script: 0x57, flags: 0x0},\n\t705:  {region: 0xb8, script: 0x57, flags: 0x0},\n\t706:  {region: 0x4b, script: 0x57, flags: 0x0},\n\t707:  {region: 0x4b, script: 0x57, flags: 0x0},\n\t708:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t709:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t710:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t711:  {region: 0xb8, script: 0x57, flags: 0x0},\n\t712:  {region: 0x123, script: 0xdf, flags: 0x0},\n\t713:  {region: 0x53, script: 0x38, flags: 0x0},\n\t714:  {region: 0x12b, script: 0x57, flags: 0x0},\n\t715:  {region: 0x95, script: 0x57, flags: 0x0},\n\t716:  {region: 0x52, script: 0x57, flags: 0x0},\n\t717:  {region: 0x99, script: 0x21, flags: 0x0},\n\t718:  {region: 0x99, script: 0x21, flags: 0x0},\n\t719:  {region: 0x95, script: 0x57, flags: 0x0},\n\t720:  {region: 0x23, script: 0x3, flags: 0x1},\n\t721:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t722:  {region: 0x165, script: 0x57, flags: 0x0},\n\t723:  {region: 0xcf, script: 0x57, flags: 0x0},\n\t724:  {region: 0x165, script: 0x57, flags: 0x0},\n\t725:  {region: 0x165, script: 0x57, flags: 0x0},\n\t726:  {region: 0x165, script: 0x57, flags: 0x0},\n\t727:  {region: 0x165, script: 0x57, flags: 0x0},\n\t728:  {region: 0x165, script: 0x57, flags: 0x0},\n\t729:  {region: 0x165, script: 0x57, flags: 0x0},\n\t730:  {region: 0x165, script: 0x57, flags: 0x0},\n\t731:  {region: 0x165, script: 0x57, flags: 0x0},\n\t732:  {region: 0x165, script: 0x57, flags: 0x0},\n\t733:  {region: 0x165, script: 0x57, flags: 0x0},\n\t734:  {region: 0x165, script: 0x57, flags: 0x0},\n\t735:  {region: 0x165, script: 0x5, flags: 0x0},\n\t736:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t737:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t738:  {region: 0x165, script: 0x57, flags: 0x0},\n\t739:  {region: 0x95, script: 0x57, flags: 0x0},\n\t740:  {region: 0x165, script: 0x29, flags: 0x0},\n\t741:  {region: 0x165, script: 0x57, flags: 0x0},\n\t742:  {region: 0x165, script: 0x57, flags: 0x0},\n\t743:  {region: 0x165, script: 0x57, flags: 0x0},\n\t744:  {region: 0x112, script: 0x57, flags: 0x0},\n\t745:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t746:  {region: 0x165, script: 0x57, flags: 0x0},\n\t747:  {region: 0x165, script: 0x57, flags: 0x0},\n\t748:  {region: 0x123, script: 0x5, flags: 0x0},\n\t749:  {region: 0xcc, script: 0x57, flags: 0x0},\n\t750:  {region: 0x165, script: 0x57, flags: 0x0},\n\t751:  {region: 0x165, script: 0x57, flags: 0x0},\n\t752:  {region: 0x165, script: 0x57, flags: 0x0},\n\t753:  {region: 0xbf, script: 0x57, flags: 0x0},\n\t754:  {region: 0xd1, script: 0x57, flags: 0x0},\n\t755:  {region: 0x165, script: 0x57, flags: 0x0},\n\t756:  {region: 0x52, script: 0x57, flags: 0x0},\n\t757:  {region: 0xdb, script: 0x21, flags: 0x0},\n\t758:  {region: 0x12f, script: 0x57, flags: 0x0},\n\t759:  {region: 0xc0, script: 0x57, flags: 0x0},\n\t760:  {region: 0x165, script: 0x57, flags: 0x0},\n\t761:  {region: 0x165, script: 0x57, flags: 0x0},\n\t762:  {region: 0xe0, script: 0x57, flags: 0x0},\n\t763:  {region: 0x165, script: 0x57, flags: 0x0},\n\t764:  {region: 0x95, script: 0x57, flags: 0x0},\n\t765:  {region: 0x9b, script: 0x3a, flags: 0x0},\n\t766:  {region: 0x165, script: 0x57, flags: 0x0},\n\t767:  {region: 0xc2, script: 0x1f, flags: 0x0},\n\t768:  {region: 0x165, script: 0x5, flags: 0x0},\n\t769:  {region: 0x165, script: 0x57, flags: 0x0},\n\t770:  {region: 0x165, script: 0x57, flags: 0x0},\n\t771:  {region: 0x165, script: 0x57, flags: 0x0},\n\t772:  {region: 0x99, script: 0x6b, flags: 0x0},\n\t773:  {region: 0x165, script: 0x57, flags: 0x0},\n\t774:  {region: 0x165, script: 0x57, flags: 0x0},\n\t775:  {region: 0x10b, script: 0x57, flags: 0x0},\n\t776:  {region: 0x165, script: 0x57, flags: 0x0},\n\t777:  {region: 0x165, script: 0x57, flags: 0x0},\n\t778:  {region: 0x165, script: 0x57, flags: 0x0},\n\t779:  {region: 0x26, script: 0x3, flags: 0x1},\n\t780:  {region: 0x165, script: 0x57, flags: 0x0},\n\t781:  {region: 0x165, script: 0x57, flags: 0x0},\n\t782:  {region: 0x99, script: 0xe, flags: 0x0},\n\t783:  {region: 0xc4, script: 0x72, flags: 0x0},\n\t785:  {region: 0x165, script: 0x57, flags: 0x0},\n\t786:  {region: 0x49, script: 0x57, flags: 0x0},\n\t787:  {region: 0x49, script: 0x57, flags: 0x0},\n\t788:  {region: 0x37, script: 0x57, flags: 0x0},\n\t789:  {region: 0x165, script: 0x57, flags: 0x0},\n\t790:  {region: 0x165, script: 0x57, flags: 0x0},\n\t791:  {region: 0x165, script: 0x57, flags: 0x0},\n\t792:  {region: 0x165, script: 0x57, flags: 0x0},\n\t793:  {region: 0x165, script: 0x57, flags: 0x0},\n\t794:  {region: 0x165, script: 0x57, flags: 0x0},\n\t795:  {region: 0x99, script: 0x21, flags: 0x0},\n\t796:  {region: 0xdb, script: 0x21, flags: 0x0},\n\t797:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t798:  {region: 0x35, script: 0x6f, flags: 0x0},\n\t799:  {region: 0x29, script: 0x3, flags: 0x1},\n\t800:  {region: 0xcb, script: 0x57, flags: 0x0},\n\t801:  {region: 0x165, script: 0x57, flags: 0x0},\n\t802:  {region: 0x165, script: 0x57, flags: 0x0},\n\t803:  {region: 0x165, script: 0x57, flags: 0x0},\n\t804:  {region: 0x99, script: 0x21, flags: 0x0},\n\t805:  {region: 0x52, script: 0x57, flags: 0x0},\n\t807:  {region: 0x165, script: 0x57, flags: 0x0},\n\t808:  {region: 0x135, script: 0x57, flags: 0x0},\n\t809:  {region: 0x165, script: 0x57, flags: 0x0},\n\t810:  {region: 0x165, script: 0x57, flags: 0x0},\n\t811:  {region: 0xe8, script: 0x5, flags: 0x0},\n\t812:  {region: 0xc3, script: 0x57, flags: 0x0},\n\t813:  {region: 0x99, script: 0x21, flags: 0x0},\n\t814:  {region: 0x95, script: 0x57, flags: 0x0},\n\t815:  {region: 0x164, script: 0x57, flags: 0x0},\n\t816:  {region: 0x165, script: 0x57, flags: 0x0},\n\t817:  {region: 0xc4, script: 0x72, flags: 0x0},\n\t818:  {region: 0x165, script: 0x57, flags: 0x0},\n\t819:  {region: 0x165, script: 0x29, flags: 0x0},\n\t820:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t821:  {region: 0x165, script: 0x57, flags: 0x0},\n\t822:  {region: 0x131, script: 0x57, flags: 0x0},\n\t823:  {region: 0x9c, script: 0x63, flags: 0x0},\n\t824:  {region: 0x165, script: 0x57, flags: 0x0},\n\t825:  {region: 0x165, script: 0x57, flags: 0x0},\n\t826:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t827:  {region: 0x165, script: 0x57, flags: 0x0},\n\t828:  {region: 0x165, script: 0x57, flags: 0x0},\n\t829:  {region: 0x165, script: 0x57, flags: 0x0},\n\t830:  {region: 0xdd, script: 0x57, flags: 0x0},\n\t831:  {region: 0x165, script: 0x57, flags: 0x0},\n\t832:  {region: 0x165, script: 0x57, flags: 0x0},\n\t834:  {region: 0x165, script: 0x57, flags: 0x0},\n\t835:  {region: 0x53, script: 0x38, flags: 0x0},\n\t836:  {region: 0x9e, script: 0x57, flags: 0x0},\n\t837:  {region: 0xd2, script: 0x57, flags: 0x0},\n\t838:  {region: 0x165, script: 0x57, flags: 0x0},\n\t839:  {region: 0xda, script: 0x57, flags: 0x0},\n\t840:  {region: 0x165, script: 0x57, flags: 0x0},\n\t841:  {region: 0x165, script: 0x57, flags: 0x0},\n\t842:  {region: 0x165, script: 0x57, flags: 0x0},\n\t843:  {region: 0xcf, script: 0x57, flags: 0x0},\n\t844:  {region: 0x165, script: 0x57, flags: 0x0},\n\t845:  {region: 0x165, script: 0x57, flags: 0x0},\n\t846:  {region: 0x164, script: 0x57, flags: 0x0},\n\t847:  {region: 0xd1, script: 0x57, flags: 0x0},\n\t848:  {region: 0x60, script: 0x57, flags: 0x0},\n\t849:  {region: 0xdb, script: 0x21, flags: 0x0},\n\t850:  {region: 0x165, script: 0x57, flags: 0x0},\n\t851:  {region: 0xdb, script: 0x21, flags: 0x0},\n\t852:  {region: 0x165, script: 0x57, flags: 0x0},\n\t853:  {region: 0x165, script: 0x57, flags: 0x0},\n\t854:  {region: 0xd2, script: 0x57, flags: 0x0},\n\t855:  {region: 0x165, script: 0x57, flags: 0x0},\n\t856:  {region: 0x165, script: 0x57, flags: 0x0},\n\t857:  {region: 0xd1, script: 0x57, flags: 0x0},\n\t858:  {region: 0x165, script: 0x57, flags: 0x0},\n\t859:  {region: 0xcf, script: 0x57, flags: 0x0},\n\t860:  {region: 0xcf, script: 0x57, flags: 0x0},\n\t861:  {region: 0x165, script: 0x57, flags: 0x0},\n\t862:  {region: 0x165, script: 0x57, flags: 0x0},\n\t863:  {region: 0x95, script: 0x57, flags: 0x0},\n\t864:  {region: 0x165, script: 0x57, flags: 0x0},\n\t865:  {region: 0xdf, script: 0x57, flags: 0x0},\n\t866:  {region: 0x165, script: 0x57, flags: 0x0},\n\t867:  {region: 0x165, script: 0x57, flags: 0x0},\n\t868:  {region: 0x99, script: 0x57, flags: 0x0},\n\t869:  {region: 0x165, script: 0x57, flags: 0x0},\n\t870:  {region: 0x165, script: 0x57, flags: 0x0},\n\t871:  {region: 0xd9, script: 0x57, flags: 0x0},\n\t872:  {region: 0x52, script: 0x57, flags: 0x0},\n\t873:  {region: 0x165, script: 0x57, flags: 0x0},\n\t874:  {region: 0xda, script: 0x57, flags: 0x0},\n\t875:  {region: 0x165, script: 0x57, flags: 0x0},\n\t876:  {region: 0x52, script: 0x57, flags: 0x0},\n\t877:  {region: 0x165, script: 0x57, flags: 0x0},\n\t878:  {region: 0x165, script: 0x57, flags: 0x0},\n\t879:  {region: 0xda, script: 0x57, flags: 0x0},\n\t880:  {region: 0x123, script: 0x53, flags: 0x0},\n\t881:  {region: 0x99, script: 0x21, flags: 0x0},\n\t882:  {region: 0x10c, script: 0xbf, flags: 0x0},\n\t883:  {region: 0x165, script: 0x57, flags: 0x0},\n\t884:  {region: 0x165, script: 0x57, flags: 0x0},\n\t885:  {region: 0x84, script: 0x78, flags: 0x0},\n\t886:  {region: 0x161, script: 0x57, flags: 0x0},\n\t887:  {region: 0x165, script: 0x57, flags: 0x0},\n\t888:  {region: 0x49, script: 0x17, flags: 0x0},\n\t889:  {region: 0x165, script: 0x57, flags: 0x0},\n\t890:  {region: 0x161, script: 0x57, flags: 0x0},\n\t891:  {region: 0x165, script: 0x57, flags: 0x0},\n\t892:  {region: 0x165, script: 0x57, flags: 0x0},\n\t893:  {region: 0x165, script: 0x57, flags: 0x0},\n\t894:  {region: 0x165, script: 0x57, flags: 0x0},\n\t895:  {region: 0x165, script: 0x57, flags: 0x0},\n\t896:  {region: 0x117, script: 0x57, flags: 0x0},\n\t897:  {region: 0x165, script: 0x57, flags: 0x0},\n\t898:  {region: 0x165, script: 0x57, flags: 0x0},\n\t899:  {region: 0x135, script: 0x57, flags: 0x0},\n\t900:  {region: 0x165, script: 0x57, flags: 0x0},\n\t901:  {region: 0x53, script: 0x57, flags: 0x0},\n\t902:  {region: 0x165, script: 0x57, flags: 0x0},\n\t903:  {region: 0xce, script: 0x57, flags: 0x0},\n\t904:  {region: 0x12f, script: 0x57, flags: 0x0},\n\t905:  {region: 0x131, script: 0x57, flags: 0x0},\n\t906:  {region: 0x80, script: 0x57, flags: 0x0},\n\t907:  {region: 0x78, script: 0x57, flags: 0x0},\n\t908:  {region: 0x165, script: 0x57, flags: 0x0},\n\t910:  {region: 0x165, script: 0x57, flags: 0x0},\n\t911:  {region: 0x165, script: 0x57, flags: 0x0},\n\t912:  {region: 0x6f, script: 0x57, flags: 0x0},\n\t913:  {region: 0x165, script: 0x57, flags: 0x0},\n\t914:  {region: 0x165, script: 0x57, flags: 0x0},\n\t915:  {region: 0x165, script: 0x57, flags: 0x0},\n\t916:  {region: 0x165, script: 0x57, flags: 0x0},\n\t917:  {region: 0x99, script: 0x7d, flags: 0x0},\n\t918:  {region: 0x165, script: 0x57, flags: 0x0},\n\t919:  {region: 0x165, script: 0x5, flags: 0x0},\n\t920:  {region: 0x7d, script: 0x1f, flags: 0x0},\n\t921:  {region: 0x135, script: 0x7e, flags: 0x0},\n\t922:  {region: 0x165, script: 0x5, flags: 0x0},\n\t923:  {region: 0xc5, script: 0x7c, flags: 0x0},\n\t924:  {region: 0x165, script: 0x57, flags: 0x0},\n\t925:  {region: 0x2c, script: 0x3, flags: 0x1},\n\t926:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t927:  {region: 0x2f, script: 0x2, flags: 0x1},\n\t928:  {region: 0xe7, script: 0x57, flags: 0x0},\n\t929:  {region: 0x30, script: 0x57, flags: 0x0},\n\t930:  {region: 0xf0, script: 0x57, flags: 0x0},\n\t931:  {region: 0x165, script: 0x57, flags: 0x0},\n\t932:  {region: 0x78, script: 0x57, flags: 0x0},\n\t933:  {region: 0xd6, script: 0x57, flags: 0x0},\n\t934:  {region: 0x135, script: 0x57, flags: 0x0},\n\t935:  {region: 0x49, script: 0x57, flags: 0x0},\n\t936:  {region: 0x165, script: 0x57, flags: 0x0},\n\t937:  {region: 0x9c, script: 0xe8, flags: 0x0},\n\t938:  {region: 0x165, script: 0x57, flags: 0x0},\n\t939:  {region: 0x60, script: 0x57, flags: 0x0},\n\t940:  {region: 0x165, script: 0x5, flags: 0x0},\n\t941:  {region: 0xb0, script: 0x87, flags: 0x0},\n\t943:  {region: 0x165, script: 0x57, flags: 0x0},\n\t944:  {region: 0x165, script: 0x57, flags: 0x0},\n\t945:  {region: 0x99, script: 0x12, flags: 0x0},\n\t946:  {region: 0xa4, script: 0x57, flags: 0x0},\n\t947:  {region: 0xe9, script: 0x57, flags: 0x0},\n\t948:  {region: 0x165, script: 0x57, flags: 0x0},\n\t949:  {region: 0x9e, script: 0x57, flags: 0x0},\n\t950:  {region: 0x165, script: 0x57, flags: 0x0},\n\t951:  {region: 0x165, script: 0x57, flags: 0x0},\n\t952:  {region: 0x87, script: 0x31, flags: 0x0},\n\t953:  {region: 0x75, script: 0x57, flags: 0x0},\n\t954:  {region: 0x165, script: 0x57, flags: 0x0},\n\t955:  {region: 0xe8, script: 0x4a, flags: 0x0},\n\t956:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t957:  {region: 0x1, script: 0x57, flags: 0x0},\n\t958:  {region: 0x24, script: 0x5, flags: 0x0},\n\t959:  {region: 0x165, script: 0x57, flags: 0x0},\n\t960:  {region: 0x41, script: 0x57, flags: 0x0},\n\t961:  {region: 0x165, script: 0x57, flags: 0x0},\n\t962:  {region: 0x7a, script: 0x57, flags: 0x0},\n\t963:  {region: 0x165, script: 0x57, flags: 0x0},\n\t964:  {region: 0xe4, script: 0x57, flags: 0x0},\n\t965:  {region: 0x89, script: 0x57, flags: 0x0},\n\t966:  {region: 0x69, script: 0x57, flags: 0x0},\n\t967:  {region: 0x165, script: 0x57, flags: 0x0},\n\t968:  {region: 0x99, script: 0x21, flags: 0x0},\n\t969:  {region: 0x165, script: 0x57, flags: 0x0},\n\t970:  {region: 0x102, script: 0x57, flags: 0x0},\n\t971:  {region: 0x95, script: 0x57, flags: 0x0},\n\t972:  {region: 0x165, script: 0x57, flags: 0x0},\n\t973:  {region: 0x165, script: 0x57, flags: 0x0},\n\t974:  {region: 0x9e, script: 0x57, flags: 0x0},\n\t975:  {region: 0x165, script: 0x5, flags: 0x0},\n\t976:  {region: 0x99, script: 0x57, flags: 0x0},\n\t977:  {region: 0x31, script: 0x2, flags: 0x1},\n\t978:  {region: 0xdb, script: 0x21, flags: 0x0},\n\t979:  {region: 0x35, script: 0xe, flags: 0x0},\n\t980:  {region: 0x4e, script: 0x57, flags: 0x0},\n\t981:  {region: 0x72, script: 0x57, flags: 0x0},\n\t982:  {region: 0x4e, script: 0x57, flags: 0x0},\n\t983:  {region: 0x9c, script: 0x5, flags: 0x0},\n\t984:  {region: 0x10c, script: 0x57, flags: 0x0},\n\t985:  {region: 0x3a, script: 0x57, flags: 0x0},\n\t986:  {region: 0x165, script: 0x57, flags: 0x0},\n\t987:  {region: 0xd1, script: 0x57, flags: 0x0},\n\t988:  {region: 0x104, script: 0x57, flags: 0x0},\n\t989:  {region: 0x95, script: 0x57, flags: 0x0},\n\t990:  {region: 0x12f, script: 0x57, flags: 0x0},\n\t991:  {region: 0x165, script: 0x57, flags: 0x0},\n\t992:  {region: 0x165, script: 0x57, flags: 0x0},\n\t993:  {region: 0x73, script: 0x57, flags: 0x0},\n\t994:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t995:  {region: 0x130, script: 0x1f, flags: 0x0},\n\t996:  {region: 0x109, script: 0x57, flags: 0x0},\n\t997:  {region: 0x107, script: 0x57, flags: 0x0},\n\t998:  {region: 0x12f, script: 0x57, flags: 0x0},\n\t999:  {region: 0x165, script: 0x57, flags: 0x0},\n\t1000: {region: 0xa2, script: 0x49, flags: 0x0},\n\t1001: {region: 0x99, script: 0x21, flags: 0x0},\n\t1002: {region: 0x80, script: 0x57, flags: 0x0},\n\t1003: {region: 0x106, script: 0x1f, flags: 0x0},\n\t1004: {region: 0xa4, script: 0x57, flags: 0x0},\n\t1005: {region: 0x95, script: 0x57, flags: 0x0},\n\t1006: {region: 0x99, script: 0x57, flags: 0x0},\n\t1007: {region: 0x114, script: 0x57, flags: 0x0},\n\t1008: {region: 0x99, script: 0xc3, flags: 0x0},\n\t1009: {region: 0x165, script: 0x57, flags: 0x0},\n\t1010: {region: 0x165, script: 0x57, flags: 0x0},\n\t1011: {region: 0x12f, script: 0x57, flags: 0x0},\n\t1012: {region: 0x9e, script: 0x57, flags: 0x0},\n\t1013: {region: 0x99, script: 0x21, flags: 0x0},\n\t1014: {region: 0x165, script: 0x5, flags: 0x0},\n\t1015: {region: 0x9e, script: 0x57, flags: 0x0},\n\t1016: {region: 0x7b, script: 0x57, flags: 0x0},\n\t1017: {region: 0x49, script: 0x57, flags: 0x0},\n\t1018: {region: 0x33, script: 0x4, flags: 0x1},\n\t1019: {region: 0x9e, script: 0x57, flags: 0x0},\n\t1020: {region: 0x9c, script: 0x5, flags: 0x0},\n\t1021: {region: 0xda, script: 0x57, flags: 0x0},\n\t1022: {region: 0x4f, script: 0x57, flags: 0x0},\n\t1023: {region: 0xd1, script: 0x57, flags: 0x0},\n\t1024: {region: 0xcf, script: 0x57, flags: 0x0},\n\t1025: {region: 0xc3, script: 0x57, flags: 0x0},\n\t1026: {region: 0x4c, script: 0x57, flags: 0x0},\n\t1027: {region: 0x96, script: 0x7a, flags: 0x0},\n\t1028: {region: 0xb6, script: 0x57, flags: 0x0},\n\t1029: {region: 0x165, script: 0x29, flags: 0x0},\n\t1030: {region: 0x165, script: 0x57, flags: 0x0},\n\t1032: {region: 0xba, script: 0xdc, flags: 0x0},\n\t1033: {region: 0x165, script: 0x57, flags: 0x0},\n\t1034: {region: 0xc4, script: 0x72, flags: 0x0},\n\t1035: {region: 0x165, script: 0x5, flags: 0x0},\n\t1036: {region: 0xb3, script: 0xca, flags: 0x0},\n\t1037: {region: 0x6f, script: 0x57, flags: 0x0},\n\t1038: {region: 0x165, script: 0x57, flags: 0x0},\n\t1039: {region: 0x165, script: 0x57, flags: 0x0},\n\t1040: {region: 0x165, script: 0x57, flags: 0x0},\n\t1041: {region: 0x165, script: 0x57, flags: 0x0},\n\t1042: {region: 0x111, script: 0x57, flags: 0x0},\n\t1043: {region: 0x165, script: 0x57, flags: 0x0},\n\t1044: {region: 0xe8, script: 0x5, flags: 0x0},\n\t1045: {region: 0x165, script: 0x57, flags: 0x0},\n\t1046: {region: 0x10f, script: 0x57, flags: 0x0},\n\t1047: {region: 0x165, script: 0x57, flags: 0x0},\n\t1048: {region: 0xe9, script: 0x57, flags: 0x0},\n\t1049: {region: 0x165, script: 0x57, flags: 0x0},\n\t1050: {region: 0x95, script: 0x57, flags: 0x0},\n\t1051: {region: 0x142, script: 0x57, flags: 0x0},\n\t1052: {region: 0x10c, script: 0x57, flags: 0x0},\n\t1054: {region: 0x10c, script: 0x57, flags: 0x0},\n\t1055: {region: 0x72, script: 0x57, flags: 0x0},\n\t1056: {region: 0x97, script: 0xc0, flags: 0x0},\n\t1057: {region: 0x165, script: 0x57, flags: 0x0},\n\t1058: {region: 0x72, script: 0x57, flags: 0x0},\n\t1059: {region: 0x164, script: 0x57, flags: 0x0},\n\t1060: {region: 0x165, script: 0x57, flags: 0x0},\n\t1061: {region: 0xc3, script: 0x57, flags: 0x0},\n\t1062: {region: 0x165, script: 0x57, flags: 0x0},\n\t1063: {region: 0x165, script: 0x57, flags: 0x0},\n\t1064: {region: 0x165, script: 0x57, flags: 0x0},\n\t1065: {region: 0x115, script: 0x57, flags: 0x0},\n\t1066: {region: 0x165, script: 0x57, flags: 0x0},\n\t1067: {region: 0x165, script: 0x57, flags: 0x0},\n\t1068: {region: 0x123, script: 0xdf, flags: 0x0},\n\t1069: {region: 0x165, script: 0x57, flags: 0x0},\n\t1070: {region: 0x165, script: 0x57, flags: 0x0},\n\t1071: {region: 0x165, script: 0x57, flags: 0x0},\n\t1072: {region: 0x165, script: 0x57, flags: 0x0},\n\t1073: {region: 0x27, script: 0x57, flags: 0x0},\n\t1074: {region: 0x37, script: 0x5, flags: 0x1},\n\t1075: {region: 0x99, script: 0xcb, flags: 0x0},\n\t1076: {region: 0x116, script: 0x57, flags: 0x0},\n\t1077: {region: 0x114, script: 0x57, flags: 0x0},\n\t1078: {region: 0x99, script: 0x21, flags: 0x0},\n\t1079: {region: 0x161, script: 0x57, flags: 0x0},\n\t1080: {region: 0x165, script: 0x57, flags: 0x0},\n\t1081: {region: 0x165, script: 0x57, flags: 0x0},\n\t1082: {region: 0x6d, script: 0x57, flags: 0x0},\n\t1083: {region: 0x161, script: 0x57, flags: 0x0},\n\t1084: {region: 0x165, script: 0x57, flags: 0x0},\n\t1085: {region: 0x60, script: 0x57, flags: 0x0},\n\t1086: {region: 0x95, script: 0x57, flags: 0x0},\n\t1087: {region: 0x165, script: 0x57, flags: 0x0},\n\t1088: {region: 0x165, script: 0x57, flags: 0x0},\n\t1089: {region: 0x12f, script: 0x57, flags: 0x0},\n\t1090: {region: 0x165, script: 0x57, flags: 0x0},\n\t1091: {region: 0x84, script: 0x57, flags: 0x0},\n\t1092: {region: 0x10c, script: 0x57, flags: 0x0},\n\t1093: {region: 0x12f, script: 0x57, flags: 0x0},\n\t1094: {region: 0x15f, script: 0x5, flags: 0x0},\n\t1095: {region: 0x4b, script: 0x57, flags: 0x0},\n\t1096: {region: 0x60, script: 0x57, flags: 0x0},\n\t1097: {region: 0x165, script: 0x57, flags: 0x0},\n\t1098: {region: 0x99, script: 0x21, flags: 0x0},\n\t1099: {region: 0x95, script: 0x57, flags: 0x0},\n\t1100: {region: 0x165, script: 0x57, flags: 0x0},\n\t1101: {region: 0x35, script: 0xe, flags: 0x0},\n\t1102: {region: 0x9b, script: 0xcf, flags: 0x0},\n\t1103: {region: 0xe9, script: 0x57, flags: 0x0},\n\t1104: {region: 0x99, script: 0xd7, flags: 0x0},\n\t1105: {region: 0xdb, script: 0x21, flags: 0x0},\n\t1106: {region: 0x165, script: 0x57, flags: 0x0},\n\t1107: {region: 0x165, script: 0x57, flags: 0x0},\n\t1108: {region: 0x165, script: 0x57, flags: 0x0},\n\t1109: {region: 0x165, script: 0x57, flags: 0x0},\n\t1110: {region: 0x165, script: 0x57, flags: 0x0},\n\t1111: {region: 0x165, script: 0x57, flags: 0x0},\n\t1112: {region: 0x165, script: 0x57, flags: 0x0},\n\t1113: {region: 0x165, script: 0x57, flags: 0x0},\n\t1114: {region: 0xe7, script: 0x57, flags: 0x0},\n\t1115: {region: 0x165, script: 0x57, flags: 0x0},\n\t1116: {region: 0x165, script: 0x57, flags: 0x0},\n\t1117: {region: 0x99, script: 0x4f, flags: 0x0},\n\t1118: {region: 0x53, script: 0xd5, flags: 0x0},\n\t1119: {region: 0xdb, script: 0x21, flags: 0x0},\n\t1120: {region: 0xdb, script: 0x21, flags: 0x0},\n\t1121: {region: 0x99, script: 0xda, flags: 0x0},\n\t1122: {region: 0x165, script: 0x57, flags: 0x0},\n\t1123: {region: 0x112, script: 0x57, flags: 0x0},\n\t1124: {region: 0x131, script: 0x57, flags: 0x0},\n\t1125: {region: 0x126, script: 0x57, flags: 0x0},\n\t1126: {region: 0x165, script: 0x57, flags: 0x0},\n\t1127: {region: 0x3c, script: 0x3, flags: 0x1},\n\t1128: {region: 0x165, script: 0x57, flags: 0x0},\n\t1129: {region: 0x165, script: 0x57, flags: 0x0},\n\t1130: {region: 0x165, script: 0x57, flags: 0x0},\n\t1131: {region: 0x123, script: 0xdf, flags: 0x0},\n\t1132: {region: 0xdb, script: 0x21, flags: 0x0},\n\t1133: {region: 0xdb, script: 0x21, flags: 0x0},\n\t1134: {region: 0xdb, script: 0x21, flags: 0x0},\n\t1135: {region: 0x6f, script: 0x29, flags: 0x0},\n\t1136: {region: 0x165, script: 0x57, flags: 0x0},\n\t1137: {region: 0x6d, script: 0x29, flags: 0x0},\n\t1138: {region: 0x165, script: 0x57, flags: 0x0},\n\t1139: {region: 0x165, script: 0x57, flags: 0x0},\n\t1140: {region: 0x165, script: 0x57, flags: 0x0},\n\t1141: {region: 0xd6, script: 0x57, flags: 0x0},\n\t1142: {region: 0x127, script: 0x57, flags: 0x0},\n\t1143: {region: 0x125, script: 0x57, flags: 0x0},\n\t1144: {region: 0x32, script: 0x57, flags: 0x0},\n\t1145: {region: 0xdb, script: 0x21, flags: 0x0},\n\t1146: {region: 0xe7, script: 0x57, flags: 0x0},\n\t1147: {region: 0x165, script: 0x57, flags: 0x0},\n\t1148: {region: 0x165, script: 0x57, flags: 0x0},\n\t1149: {region: 0x32, script: 0x57, flags: 0x0},\n\t1150: {region: 0xd4, script: 0x57, flags: 0x0},\n\t1151: {region: 0x165, script: 0x57, flags: 0x0},\n\t1152: {region: 0x161, script: 0x57, flags: 0x0},\n\t1153: {region: 0x165, script: 0x57, flags: 0x0},\n\t1154: {region: 0x129, script: 0x57, flags: 0x0},\n\t1155: {region: 0x165, script: 0x57, flags: 0x0},\n\t1156: {region: 0xce, script: 0x57, flags: 0x0},\n\t1157: {region: 0x165, script: 0x57, flags: 0x0},\n\t1158: {region: 0xe6, script: 0x57, flags: 0x0},\n\t1159: {region: 0x165, script: 0x57, flags: 0x0},\n\t1160: {region: 0x165, script: 0x57, flags: 0x0},\n\t1161: {region: 0x165, script: 0x57, flags: 0x0},\n\t1162: {region: 0x12b, script: 0x57, flags: 0x0},\n\t1163: {region: 0x12b, script: 0x57, flags: 0x0},\n\t1164: {region: 0x12e, script: 0x57, flags: 0x0},\n\t1165: {region: 0x165, script: 0x5, flags: 0x0},\n\t1166: {region: 0x161, script: 0x57, flags: 0x0},\n\t1167: {region: 0x87, script: 0x31, flags: 0x0},\n\t1168: {region: 0xdb, script: 0x21, flags: 0x0},\n\t1169: {region: 0xe7, script: 0x57, flags: 0x0},\n\t1170: {region: 0x43, script: 0xe0, flags: 0x0},\n\t1171: {region: 0x165, script: 0x57, flags: 0x0},\n\t1172: {region: 0x106, script: 0x1f, flags: 0x0},\n\t1173: {region: 0x165, script: 0x57, flags: 0x0},\n\t1174: {region: 0x165, script: 0x57, flags: 0x0},\n\t1175: {region: 0x131, script: 0x57, flags: 0x0},\n\t1176: {region: 0x165, script: 0x57, flags: 0x0},\n\t1177: {region: 0x123, script: 0xdf, flags: 0x0},\n\t1178: {region: 0x32, script: 0x57, flags: 0x0},\n\t1179: {region: 0x165, script: 0x57, flags: 0x0},\n\t1180: {region: 0x165, script: 0x57, flags: 0x0},\n\t1181: {region: 0xce, script: 0x57, flags: 0x0},\n\t1182: {region: 0x165, script: 0x57, flags: 0x0},\n\t1183: {region: 0x165, script: 0x57, flags: 0x0},\n\t1184: {region: 0x12d, script: 0x57, flags: 0x0},\n\t1185: {region: 0x165, script: 0x57, flags: 0x0},\n\t1187: {region: 0x165, script: 0x57, flags: 0x0},\n\t1188: {region: 0xd4, script: 0x57, flags: 0x0},\n\t1189: {region: 0x53, script: 0xd8, flags: 0x0},\n\t1190: {region: 0xe5, script: 0x57, flags: 0x0},\n\t1191: {region: 0x165, script: 0x57, flags: 0x0},\n\t1192: {region: 0x106, script: 0x1f, flags: 0x0},\n\t1193: {region: 0xba, script: 0x57, flags: 0x0},\n\t1194: {region: 0x165, script: 0x57, flags: 0x0},\n\t1195: {region: 0x106, script: 0x1f, flags: 0x0},\n\t1196: {region: 0x3f, script: 0x4, flags: 0x1},\n\t1197: {region: 0x11c, script: 0xe2, flags: 0x0},\n\t1198: {region: 0x130, script: 0x1f, flags: 0x0},\n\t1199: {region: 0x75, script: 0x57, flags: 0x0},\n\t1200: {region: 0x2a, script: 0x57, flags: 0x0},\n\t1202: {region: 0x43, script: 0x3, flags: 0x1},\n\t1203: {region: 0x99, script: 0xe, flags: 0x0},\n\t1204: {region: 0xe8, script: 0x5, flags: 0x0},\n\t1205: {region: 0x165, script: 0x57, flags: 0x0},\n\t1206: {region: 0x165, script: 0x57, flags: 0x0},\n\t1207: {region: 0x165, script: 0x57, flags: 0x0},\n\t1208: {region: 0x165, script: 0x57, flags: 0x0},\n\t1209: {region: 0x165, script: 0x57, flags: 0x0},\n\t1210: {region: 0x165, script: 0x57, flags: 0x0},\n\t1211: {region: 0x165, script: 0x57, flags: 0x0},\n\t1212: {region: 0x46, script: 0x4, flags: 0x1},\n\t1213: {region: 0x165, script: 0x57, flags: 0x0},\n\t1214: {region: 0xb4, script: 0xe3, flags: 0x0},\n\t1215: {region: 0x165, script: 0x57, flags: 0x0},\n\t1216: {region: 0x161, script: 0x57, flags: 0x0},\n\t1217: {region: 0x9e, script: 0x57, flags: 0x0},\n\t1218: {region: 0x106, script: 0x57, flags: 0x0},\n\t1219: {region: 0x13e, script: 0x57, flags: 0x0},\n\t1220: {region: 0x11b, script: 0x57, flags: 0x0},\n\t1221: {region: 0x165, script: 0x57, flags: 0x0},\n\t1222: {region: 0x36, script: 0x57, flags: 0x0},\n\t1223: {region: 0x60, script: 0x57, flags: 0x0},\n\t1224: {region: 0xd1, script: 0x57, flags: 0x0},\n\t1225: {region: 0x1, script: 0x57, flags: 0x0},\n\t1226: {region: 0x106, script: 0x57, flags: 0x0},\n\t1227: {region: 0x6a, script: 0x57, flags: 0x0},\n\t1228: {region: 0x12f, script: 0x57, flags: 0x0},\n\t1229: {region: 0x165, script: 0x57, flags: 0x0},\n\t1230: {region: 0x36, script: 0x57, flags: 0x0},\n\t1231: {region: 0x4e, script: 0x57, flags: 0x0},\n\t1232: {region: 0x165, script: 0x57, flags: 0x0},\n\t1233: {region: 0x6f, script: 0x29, flags: 0x0},\n\t1234: {region: 0x165, script: 0x57, flags: 0x0},\n\t1235: {region: 0xe7, script: 0x57, flags: 0x0},\n\t1236: {region: 0x2f, script: 0x57, flags: 0x0},\n\t1237: {region: 0x99, script: 0xda, flags: 0x0},\n\t1238: {region: 0x99, script: 0x21, flags: 0x0},\n\t1239: {region: 0x165, script: 0x57, flags: 0x0},\n\t1240: {region: 0x165, script: 0x57, flags: 0x0},\n\t1241: {region: 0x165, script: 0x57, flags: 0x0},\n\t1242: {region: 0x165, script: 0x57, flags: 0x0},\n\t1243: {region: 0x165, script: 0x57, flags: 0x0},\n\t1244: {region: 0x165, script: 0x57, flags: 0x0},\n\t1245: {region: 0x165, script: 0x57, flags: 0x0},\n\t1246: {region: 0x165, script: 0x57, flags: 0x0},\n\t1247: {region: 0x165, script: 0x57, flags: 0x0},\n\t1248: {region: 0x140, script: 0x57, flags: 0x0},\n\t1249: {region: 0x165, script: 0x57, flags: 0x0},\n\t1250: {region: 0x165, script: 0x57, flags: 0x0},\n\t1251: {region: 0xa8, script: 0x5, flags: 0x0},\n\t1252: {region: 0x165, script: 0x57, flags: 0x0},\n\t1253: {region: 0x114, script: 0x57, flags: 0x0},\n\t1254: {region: 0x165, script: 0x57, flags: 0x0},\n\t1255: {region: 0x165, script: 0x57, flags: 0x0},\n\t1256: {region: 0x165, script: 0x57, flags: 0x0},\n\t1257: {region: 0x165, script: 0x57, flags: 0x0},\n\t1258: {region: 0x99, script: 0x21, flags: 0x0},\n\t1259: {region: 0x53, script: 0x38, flags: 0x0},\n\t1260: {region: 0x165, script: 0x57, flags: 0x0},\n\t1261: {region: 0x165, script: 0x57, flags: 0x0},\n\t1262: {region: 0x41, script: 0x57, flags: 0x0},\n\t1263: {region: 0x165, script: 0x57, flags: 0x0},\n\t1264: {region: 0x12b, script: 0x18, flags: 0x0},\n\t1265: {region: 0x165, script: 0x57, flags: 0x0},\n\t1266: {region: 0x161, script: 0x57, flags: 0x0},\n\t1267: {region: 0x165, script: 0x57, flags: 0x0},\n\t1268: {region: 0x12b, script: 0x5f, flags: 0x0},\n\t1269: {region: 0x12b, script: 0x60, flags: 0x0},\n\t1270: {region: 0x7d, script: 0x2b, flags: 0x0},\n\t1271: {region: 0x53, script: 0x64, flags: 0x0},\n\t1272: {region: 0x10b, script: 0x69, flags: 0x0},\n\t1273: {region: 0x108, script: 0x73, flags: 0x0},\n\t1274: {region: 0x99, script: 0x21, flags: 0x0},\n\t1275: {region: 0x131, script: 0x57, flags: 0x0},\n\t1276: {region: 0x165, script: 0x57, flags: 0x0},\n\t1277: {region: 0x9c, script: 0x8a, flags: 0x0},\n\t1278: {region: 0x165, script: 0x57, flags: 0x0},\n\t1279: {region: 0x15e, script: 0xc2, flags: 0x0},\n\t1280: {region: 0x165, script: 0x57, flags: 0x0},\n\t1281: {region: 0x165, script: 0x57, flags: 0x0},\n\t1282: {region: 0xdb, script: 0x21, flags: 0x0},\n\t1283: {region: 0x165, script: 0x57, flags: 0x0},\n\t1284: {region: 0x165, script: 0x57, flags: 0x0},\n\t1285: {region: 0xd1, script: 0x57, flags: 0x0},\n\t1286: {region: 0x75, script: 0x57, flags: 0x0},\n\t1287: {region: 0x165, script: 0x57, flags: 0x0},\n\t1288: {region: 0x165, script: 0x57, flags: 0x0},\n\t1289: {region: 0x52, script: 0x57, flags: 0x0},\n\t1290: {region: 0x165, script: 0x57, flags: 0x0},\n\t1291: {region: 0x165, script: 0x57, flags: 0x0},\n\t1292: {region: 0x165, script: 0x57, flags: 0x0},\n\t1293: {region: 0x52, script: 0x57, flags: 0x0},\n\t1294: {region: 0x165, script: 0x57, flags: 0x0},\n\t1295: {region: 0x165, script: 0x57, flags: 0x0},\n\t1296: {region: 0x165, script: 0x57, flags: 0x0},\n\t1297: {region: 0x165, script: 0x57, flags: 0x0},\n\t1298: {region: 0x1, script: 0x3b, flags: 0x0},\n\t1299: {region: 0x165, script: 0x57, flags: 0x0},\n\t1300: {region: 0x165, script: 0x57, flags: 0x0},\n\t1301: {region: 0x165, script: 0x57, flags: 0x0},\n\t1302: {region: 0x165, script: 0x57, flags: 0x0},\n\t1303: {region: 0x165, script: 0x57, flags: 0x0},\n\t1304: {region: 0xd6, script: 0x57, flags: 0x0},\n\t1305: {region: 0x165, script: 0x57, flags: 0x0},\n\t1306: {region: 0x165, script: 0x57, flags: 0x0},\n\t1307: {region: 0x165, script: 0x57, flags: 0x0},\n\t1308: {region: 0x41, script: 0x57, flags: 0x0},\n\t1309: {region: 0x165, script: 0x57, flags: 0x0},\n\t1310: {region: 0xcf, script: 0x57, flags: 0x0},\n\t1311: {region: 0x4a, script: 0x3, flags: 0x1},\n\t1312: {region: 0x165, script: 0x57, flags: 0x0},\n\t1313: {region: 0x165, script: 0x57, flags: 0x0},\n\t1314: {region: 0x165, script: 0x57, flags: 0x0},\n\t1315: {region: 0x53, script: 0x57, flags: 0x0},\n\t1316: {region: 0x10b, script: 0x57, flags: 0x0},\n\t1318: {region: 0xa8, script: 0x5, flags: 0x0},\n\t1319: {region: 0xd9, script: 0x57, flags: 0x0},\n\t1320: {region: 0xba, script: 0xdc, flags: 0x0},\n\t1321: {region: 0x4d, script: 0x14, flags: 0x1},\n\t1322: {region: 0x53, script: 0x79, flags: 0x0},\n\t1323: {region: 0x165, script: 0x57, flags: 0x0},\n\t1324: {region: 0x122, script: 0x57, flags: 0x0},\n\t1325: {region: 0xd0, script: 0x57, flags: 0x0},\n\t1326: {region: 0x165, script: 0x57, flags: 0x0},\n\t1327: {region: 0x161, script: 0x57, flags: 0x0},\n\t1329: {region: 0x12b, script: 0x57, flags: 0x0},\n}\n\n// likelyLangList holds lists info associated with likelyLang.\n// Size: 388 bytes, 97 elements\nvar likelyLangList = [97]likelyScriptRegion{\n\t0:  {region: 0x9c, script: 0x7, flags: 0x0},\n\t1:  {region: 0xa1, script: 0x74, flags: 0x2},\n\t2:  {region: 0x11c, script: 0x80, flags: 0x2},\n\t3:  {region: 0x32, script: 0x57, flags: 0x0},\n\t4:  {region: 0x9b, script: 0x5, flags: 0x4},\n\t5:  {region: 0x9c, script: 0x5, flags: 0x4},\n\t6:  {region: 0x106, script: 0x1f, flags: 0x4},\n\t7:  {region: 0x9c, script: 0x5, flags: 0x2},\n\t8:  {region: 0x106, script: 0x1f, flags: 0x0},\n\t9:  {region: 0x38, script: 0x2c, flags: 0x2},\n\t10: {region: 0x135, script: 0x57, flags: 0x0},\n\t11: {region: 0x7b, script: 0xc5, flags: 0x2},\n\t12: {region: 0x114, script: 0x57, flags: 0x0},\n\t13: {region: 0x84, script: 0x1, flags: 0x2},\n\t14: {region: 0x5d, script: 0x1e, flags: 0x0},\n\t15: {region: 0x87, script: 0x5c, flags: 0x2},\n\t16: {region: 0xd6, script: 0x57, flags: 0x0},\n\t17: {region: 0x52, script: 0x5, flags: 0x4},\n\t18: {region: 0x10b, script: 0x5, flags: 0x4},\n\t19: {region: 0xae, script: 0x1f, flags: 0x0},\n\t20: {region: 0x24, script: 0x5, flags: 0x4},\n\t21: {region: 0x53, script: 0x5, flags: 0x4},\n\t22: {region: 0x9c, script: 0x5, flags: 0x4},\n\t23: {region: 0xc5, script: 0x5, flags: 0x4},\n\t24: {region: 0x53, script: 0x5, flags: 0x2},\n\t25: {region: 0x12b, script: 0x57, flags: 0x0},\n\t26: {region: 0xb0, script: 0x5, flags: 0x4},\n\t27: {region: 0x9b, script: 0x5, flags: 0x2},\n\t28: {region: 0xa5, script: 0x1f, flags: 0x0},\n\t29: {region: 0x53, script: 0x5, flags: 0x4},\n\t30: {region: 0x12b, script: 0x57, flags: 0x4},\n\t31: {region: 0x53, script: 0x5, flags: 0x2},\n\t32: {region: 0x12b, script: 0x57, flags: 0x2},\n\t33: {region: 0xdb, script: 0x21, flags: 0x0},\n\t34: {region: 0x99, script: 0x5a, flags: 0x2},\n\t35: {region: 0x83, script: 0x57, flags: 0x0},\n\t36: {region: 0x84, script: 0x78, flags: 0x4},\n\t37: {region: 0x84, script: 0x78, flags: 0x2},\n\t38: {region: 0xc5, script: 0x1f, flags: 0x0},\n\t39: {region: 0x53, script: 0x6d, flags: 0x4},\n\t40: {region: 0x53, script: 0x6d, flags: 0x2},\n\t41: {region: 0xd0, script: 0x57, flags: 0x0},\n\t42: {region: 0x4a, script: 0x5, flags: 0x4},\n\t43: {region: 0x95, script: 0x5, flags: 0x4},\n\t44: {region: 0x99, script: 0x33, flags: 0x0},\n\t45: {region: 0xe8, script: 0x5, flags: 0x4},\n\t46: {region: 0xe8, script: 0x5, flags: 0x2},\n\t47: {region: 0x9c, script: 0x84, flags: 0x0},\n\t48: {region: 0x53, script: 0x85, flags: 0x2},\n\t49: {region: 0xba, script: 0xdc, flags: 0x0},\n\t50: {region: 0xd9, script: 0x57, flags: 0x4},\n\t51: {region: 0xe8, script: 0x5, flags: 0x0},\n\t52: {region: 0x99, script: 0x21, flags: 0x2},\n\t53: {region: 0x99, script: 0x4c, flags: 0x2},\n\t54: {region: 0x99, script: 0xc9, flags: 0x2},\n\t55: {region: 0x105, script: 0x1f, flags: 0x0},\n\t56: {region: 0xbd, script: 0x57, flags: 0x4},\n\t57: {region: 0x104, script: 0x57, flags: 0x4},\n\t58: {region: 0x106, script: 0x57, flags: 0x4},\n\t59: {region: 0x12b, script: 0x57, flags: 0x4},\n\t60: {region: 0x124, script: 0x1f, flags: 0x0},\n\t61: {region: 0xe8, script: 0x5, flags: 0x4},\n\t62: {region: 0xe8, script: 0x5, flags: 0x2},\n\t63: {region: 0x53, script: 0x5, flags: 0x0},\n\t64: {region: 0xae, script: 0x1f, flags: 0x4},\n\t65: {region: 0xc5, script: 0x1f, flags: 0x4},\n\t66: {region: 0xae, script: 0x1f, flags: 0x2},\n\t67: {region: 0x99, script: 0xe, flags: 0x0},\n\t68: {region: 0xdb, script: 0x21, flags: 0x4},\n\t69: {region: 0xdb, script: 0x21, flags: 0x2},\n\t70: {region: 0x137, script: 0x57, flags: 0x0},\n\t71: {region: 0x24, script: 0x5, flags: 0x4},\n\t72: {region: 0x53, script: 0x1f, flags: 0x4},\n\t73: {region: 0x24, script: 0x5, flags: 0x2},\n\t74: {region: 0x8d, script: 0x39, flags: 0x0},\n\t75: {region: 0x53, script: 0x38, flags: 0x4},\n\t76: {region: 0x53, script: 0x38, flags: 0x2},\n\t77: {region: 0x53, script: 0x38, flags: 0x0},\n\t78: {region: 0x2f, script: 0x39, flags: 0x4},\n\t79: {region: 0x3e, script: 0x39, flags: 0x4},\n\t80: {region: 0x7b, script: 0x39, flags: 0x4},\n\t81: {region: 0x7e, script: 0x39, flags: 0x4},\n\t82: {region: 0x8d, script: 0x39, flags: 0x4},\n\t83: {region: 0x95, script: 0x39, flags: 0x4},\n\t84: {region: 0xc6, script: 0x39, flags: 0x4},\n\t85: {region: 0xd0, script: 0x39, flags: 0x4},\n\t86: {region: 0xe2, script: 0x39, flags: 0x4},\n\t87: {region: 0xe5, script: 0x39, flags: 0x4},\n\t88: {region: 0xe7, script: 0x39, flags: 0x4},\n\t89: {region: 0x116, script: 0x39, flags: 0x4},\n\t90: {region: 0x123, script: 0x39, flags: 0x4},\n\t91: {region: 0x12e, script: 0x39, flags: 0x4},\n\t92: {region: 0x135, script: 0x39, flags: 0x4},\n\t93: {region: 0x13e, script: 0x39, flags: 0x4},\n\t94: {region: 0x12e, script: 0x11, flags: 0x2},\n\t95: {region: 0x12e, script: 0x34, flags: 0x2},\n\t96: {region: 0x12e, script: 0x39, flags: 0x2},\n}\n\ntype likelyLangScript struct {\n\tlang   uint16\n\tscript uint8\n\tflags  uint8\n}\n\n// likelyRegion is a lookup table, indexed by regionID, for the most likely\n// languages and scripts given incomplete information. If more entries exist\n// for a given regionID, lang and script are the index and size respectively\n// of the list in likelyRegionList.\n// TODO: exclude containers and user-definable regions from the list.\n// Size: 1432 bytes, 358 elements\nvar likelyRegion = [358]likelyLangScript{\n\t34:  {lang: 0xd7, script: 0x57, flags: 0x0},\n\t35:  {lang: 0x3a, script: 0x5, flags: 0x0},\n\t36:  {lang: 0x0, script: 0x2, flags: 0x1},\n\t39:  {lang: 0x2, script: 0x2, flags: 0x1},\n\t40:  {lang: 0x4, script: 0x2, flags: 0x1},\n\t42:  {lang: 0x3c0, script: 0x57, flags: 0x0},\n\t43:  {lang: 0x0, script: 0x57, flags: 0x0},\n\t44:  {lang: 0x13e, script: 0x57, flags: 0x0},\n\t45:  {lang: 0x41b, script: 0x57, flags: 0x0},\n\t46:  {lang: 0x10d, script: 0x57, flags: 0x0},\n\t48:  {lang: 0x367, script: 0x57, flags: 0x0},\n\t49:  {lang: 0x444, script: 0x57, flags: 0x0},\n\t50:  {lang: 0x58, script: 0x57, flags: 0x0},\n\t51:  {lang: 0x6, script: 0x2, flags: 0x1},\n\t53:  {lang: 0xa5, script: 0xe, flags: 0x0},\n\t54:  {lang: 0x367, script: 0x57, flags: 0x0},\n\t55:  {lang: 0x15e, script: 0x57, flags: 0x0},\n\t56:  {lang: 0x7e, script: 0x1f, flags: 0x0},\n\t57:  {lang: 0x3a, script: 0x5, flags: 0x0},\n\t58:  {lang: 0x3d9, script: 0x57, flags: 0x0},\n\t59:  {lang: 0x15e, script: 0x57, flags: 0x0},\n\t60:  {lang: 0x15e, script: 0x57, flags: 0x0},\n\t62:  {lang: 0x31f, script: 0x57, flags: 0x0},\n\t63:  {lang: 0x13e, script: 0x57, flags: 0x0},\n\t64:  {lang: 0x3a1, script: 0x57, flags: 0x0},\n\t65:  {lang: 0x3c0, script: 0x57, flags: 0x0},\n\t67:  {lang: 0x8, script: 0x2, flags: 0x1},\n\t69:  {lang: 0x0, script: 0x57, flags: 0x0},\n\t71:  {lang: 0x71, script: 0x1f, flags: 0x0},\n\t73:  {lang: 0x512, script: 0x3b, flags: 0x2},\n\t74:  {lang: 0x31f, script: 0x5, flags: 0x2},\n\t75:  {lang: 0x445, script: 0x57, flags: 0x0},\n\t76:  {lang: 0x15e, script: 0x57, flags: 0x0},\n\t77:  {lang: 0x15e, script: 0x57, flags: 0x0},\n\t78:  {lang: 0x10d, script: 0x57, flags: 0x0},\n\t79:  {lang: 0x15e, script: 0x57, flags: 0x0},\n\t81:  {lang: 0x13e, script: 0x57, flags: 0x0},\n\t82:  {lang: 0x15e, script: 0x57, flags: 0x0},\n\t83:  {lang: 0xa, script: 0x4, flags: 0x1},\n\t84:  {lang: 0x13e, script: 0x57, flags: 0x0},\n\t85:  {lang: 0x0, script: 0x57, flags: 0x0},\n\t86:  {lang: 0x13e, script: 0x57, flags: 0x0},\n\t89:  {lang: 0x13e, script: 0x57, flags: 0x0},\n\t90:  {lang: 0x3c0, script: 0x57, flags: 0x0},\n\t91:  {lang: 0x3a1, script: 0x57, flags: 0x0},\n\t93:  {lang: 0xe, script: 0x2, flags: 0x1},\n\t94:  {lang: 0xfa, script: 0x57, flags: 0x0},\n\t96:  {lang: 0x10d, script: 0x57, flags: 0x0},\n\t98:  {lang: 0x1, script: 0x57, flags: 0x0},\n\t99:  {lang: 0x101, script: 0x57, flags: 0x0},\n\t101: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t103: {lang: 0x10, script: 0x2, flags: 0x1},\n\t104: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t105: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t106: {lang: 0x140, script: 0x57, flags: 0x0},\n\t107: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t108: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t109: {lang: 0x46f, script: 0x29, flags: 0x0},\n\t110: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t111: {lang: 0x12, script: 0x2, flags: 0x1},\n\t113: {lang: 0x10d, script: 0x57, flags: 0x0},\n\t114: {lang: 0x151, script: 0x57, flags: 0x0},\n\t115: {lang: 0x1c0, script: 0x21, flags: 0x2},\n\t118: {lang: 0x158, script: 0x57, flags: 0x0},\n\t120: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t122: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t123: {lang: 0x14, script: 0x2, flags: 0x1},\n\t125: {lang: 0x16, script: 0x3, flags: 0x1},\n\t126: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t128: {lang: 0x21, script: 0x57, flags: 0x0},\n\t130: {lang: 0x245, script: 0x57, flags: 0x0},\n\t132: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t133: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t134: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t135: {lang: 0x19, script: 0x2, flags: 0x1},\n\t136: {lang: 0x0, script: 0x57, flags: 0x0},\n\t137: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t139: {lang: 0x3c0, script: 0x57, flags: 0x0},\n\t141: {lang: 0x529, script: 0x39, flags: 0x0},\n\t142: {lang: 0x0, script: 0x57, flags: 0x0},\n\t143: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t144: {lang: 0x1d1, script: 0x57, flags: 0x0},\n\t145: {lang: 0x1d4, script: 0x57, flags: 0x0},\n\t146: {lang: 0x1d5, script: 0x57, flags: 0x0},\n\t148: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t149: {lang: 0x1b, script: 0x2, flags: 0x1},\n\t151: {lang: 0x1bc, script: 0x3b, flags: 0x0},\n\t153: {lang: 0x1d, script: 0x3, flags: 0x1},\n\t155: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t156: {lang: 0x20, script: 0x2, flags: 0x1},\n\t157: {lang: 0x1f8, script: 0x57, flags: 0x0},\n\t158: {lang: 0x1f9, script: 0x57, flags: 0x0},\n\t161: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t162: {lang: 0x200, script: 0x46, flags: 0x0},\n\t164: {lang: 0x445, script: 0x57, flags: 0x0},\n\t165: {lang: 0x28a, script: 0x1f, flags: 0x0},\n\t166: {lang: 0x22, script: 0x3, flags: 0x1},\n\t168: {lang: 0x25, script: 0x2, flags: 0x1},\n\t170: {lang: 0x254, script: 0x50, flags: 0x0},\n\t171: {lang: 0x254, script: 0x50, flags: 0x0},\n\t172: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t174: {lang: 0x3e2, script: 0x1f, flags: 0x0},\n\t175: {lang: 0x27, script: 0x2, flags: 0x1},\n\t176: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t178: {lang: 0x10d, script: 0x57, flags: 0x0},\n\t179: {lang: 0x40c, script: 0xca, flags: 0x0},\n\t181: {lang: 0x43b, script: 0x57, flags: 0x0},\n\t182: {lang: 0x2c0, script: 0x57, flags: 0x0},\n\t183: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t184: {lang: 0x2c7, script: 0x57, flags: 0x0},\n\t185: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t186: {lang: 0x29, script: 0x2, flags: 0x1},\n\t187: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t188: {lang: 0x2b, script: 0x2, flags: 0x1},\n\t189: {lang: 0x432, script: 0x57, flags: 0x0},\n\t190: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t191: {lang: 0x2f1, script: 0x57, flags: 0x0},\n\t194: {lang: 0x2d, script: 0x2, flags: 0x1},\n\t195: {lang: 0xa0, script: 0x57, flags: 0x0},\n\t196: {lang: 0x2f, script: 0x2, flags: 0x1},\n\t197: {lang: 0x31, script: 0x2, flags: 0x1},\n\t198: {lang: 0x33, script: 0x2, flags: 0x1},\n\t200: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t201: {lang: 0x35, script: 0x2, flags: 0x1},\n\t203: {lang: 0x320, script: 0x57, flags: 0x0},\n\t204: {lang: 0x37, script: 0x3, flags: 0x1},\n\t205: {lang: 0x128, script: 0xde, flags: 0x0},\n\t207: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t208: {lang: 0x31f, script: 0x57, flags: 0x0},\n\t209: {lang: 0x3c0, script: 0x57, flags: 0x0},\n\t210: {lang: 0x16, script: 0x57, flags: 0x0},\n\t211: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t212: {lang: 0x1b4, script: 0x57, flags: 0x0},\n\t214: {lang: 0x1b4, script: 0x5, flags: 0x2},\n\t216: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t217: {lang: 0x367, script: 0x57, flags: 0x0},\n\t218: {lang: 0x347, script: 0x57, flags: 0x0},\n\t219: {lang: 0x351, script: 0x21, flags: 0x0},\n\t225: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t226: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t228: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t229: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t230: {lang: 0x486, script: 0x57, flags: 0x0},\n\t231: {lang: 0x153, script: 0x57, flags: 0x0},\n\t232: {lang: 0x3a, script: 0x3, flags: 0x1},\n\t233: {lang: 0x3b3, script: 0x57, flags: 0x0},\n\t234: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t236: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t237: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t238: {lang: 0x3c0, script: 0x57, flags: 0x0},\n\t240: {lang: 0x3a2, script: 0x57, flags: 0x0},\n\t241: {lang: 0x194, script: 0x57, flags: 0x0},\n\t243: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t258: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t260: {lang: 0x3d, script: 0x2, flags: 0x1},\n\t261: {lang: 0x432, script: 0x1f, flags: 0x0},\n\t262: {lang: 0x3f, script: 0x2, flags: 0x1},\n\t263: {lang: 0x3e5, script: 0x57, flags: 0x0},\n\t264: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t266: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t267: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t268: {lang: 0x41, script: 0x2, flags: 0x1},\n\t271: {lang: 0x416, script: 0x57, flags: 0x0},\n\t272: {lang: 0x347, script: 0x57, flags: 0x0},\n\t273: {lang: 0x43, script: 0x2, flags: 0x1},\n\t275: {lang: 0x1f9, script: 0x57, flags: 0x0},\n\t276: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t277: {lang: 0x429, script: 0x57, flags: 0x0},\n\t278: {lang: 0x367, script: 0x57, flags: 0x0},\n\t280: {lang: 0x3c0, script: 0x57, flags: 0x0},\n\t282: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t284: {lang: 0x45, script: 0x2, flags: 0x1},\n\t288: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t289: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t290: {lang: 0x47, script: 0x2, flags: 0x1},\n\t291: {lang: 0x49, script: 0x3, flags: 0x1},\n\t292: {lang: 0x4c, script: 0x2, flags: 0x1},\n\t293: {lang: 0x477, script: 0x57, flags: 0x0},\n\t294: {lang: 0x3c0, script: 0x57, flags: 0x0},\n\t295: {lang: 0x476, script: 0x57, flags: 0x0},\n\t296: {lang: 0x4e, script: 0x2, flags: 0x1},\n\t297: {lang: 0x482, script: 0x57, flags: 0x0},\n\t299: {lang: 0x50, script: 0x4, flags: 0x1},\n\t301: {lang: 0x4a0, script: 0x57, flags: 0x0},\n\t302: {lang: 0x54, script: 0x2, flags: 0x1},\n\t303: {lang: 0x445, script: 0x57, flags: 0x0},\n\t304: {lang: 0x56, script: 0x3, flags: 0x1},\n\t305: {lang: 0x445, script: 0x57, flags: 0x0},\n\t309: {lang: 0x512, script: 0x3b, flags: 0x2},\n\t310: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t311: {lang: 0x4bc, script: 0x57, flags: 0x0},\n\t312: {lang: 0x1f9, script: 0x57, flags: 0x0},\n\t315: {lang: 0x13e, script: 0x57, flags: 0x0},\n\t318: {lang: 0x4c3, script: 0x57, flags: 0x0},\n\t319: {lang: 0x8a, script: 0x57, flags: 0x0},\n\t320: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t322: {lang: 0x41b, script: 0x57, flags: 0x0},\n\t333: {lang: 0x59, script: 0x2, flags: 0x1},\n\t350: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t351: {lang: 0x5b, script: 0x2, flags: 0x1},\n\t356: {lang: 0x423, script: 0x57, flags: 0x0},\n}\n\n// likelyRegionList holds lists info associated with likelyRegion.\n// Size: 372 bytes, 93 elements\nvar likelyRegionList = [93]likelyLangScript{\n\t0:  {lang: 0x148, script: 0x5, flags: 0x0},\n\t1:  {lang: 0x476, script: 0x57, flags: 0x0},\n\t2:  {lang: 0x431, script: 0x57, flags: 0x0},\n\t3:  {lang: 0x2ff, script: 0x1f, flags: 0x0},\n\t4:  {lang: 0x1d7, script: 0x8, flags: 0x0},\n\t5:  {lang: 0x274, script: 0x57, flags: 0x0},\n\t6:  {lang: 0xb7, script: 0x57, flags: 0x0},\n\t7:  {lang: 0x432, script: 0x1f, flags: 0x0},\n\t8:  {lang: 0x12d, script: 0xe0, flags: 0x0},\n\t9:  {lang: 0x351, script: 0x21, flags: 0x0},\n\t10: {lang: 0x529, script: 0x38, flags: 0x0},\n\t11: {lang: 0x4ac, script: 0x5, flags: 0x0},\n\t12: {lang: 0x523, script: 0x57, flags: 0x0},\n\t13: {lang: 0x29a, script: 0xdf, flags: 0x0},\n\t14: {lang: 0x136, script: 0x31, flags: 0x0},\n\t15: {lang: 0x48a, script: 0x57, flags: 0x0},\n\t16: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t17: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t18: {lang: 0x27, script: 0x29, flags: 0x0},\n\t19: {lang: 0x139, script: 0x57, flags: 0x0},\n\t20: {lang: 0x26a, script: 0x5, flags: 0x2},\n\t21: {lang: 0x512, script: 0x3b, flags: 0x2},\n\t22: {lang: 0x210, script: 0x2b, flags: 0x0},\n\t23: {lang: 0x5, script: 0x1f, flags: 0x0},\n\t24: {lang: 0x274, script: 0x57, flags: 0x0},\n\t25: {lang: 0x136, script: 0x31, flags: 0x0},\n\t26: {lang: 0x2ff, script: 0x1f, flags: 0x0},\n\t27: {lang: 0x1e1, script: 0x57, flags: 0x0},\n\t28: {lang: 0x31f, script: 0x5, flags: 0x0},\n\t29: {lang: 0x1be, script: 0x21, flags: 0x0},\n\t30: {lang: 0x4b4, script: 0x5, flags: 0x0},\n\t31: {lang: 0x236, script: 0x72, flags: 0x0},\n\t32: {lang: 0x148, script: 0x5, flags: 0x0},\n\t33: {lang: 0x476, script: 0x57, flags: 0x0},\n\t34: {lang: 0x24a, script: 0x4b, flags: 0x0},\n\t35: {lang: 0xe6, script: 0x5, flags: 0x0},\n\t36: {lang: 0x226, script: 0xdf, flags: 0x0},\n\t37: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t38: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t39: {lang: 0x2b8, script: 0x54, flags: 0x0},\n\t40: {lang: 0x226, script: 0xdf, flags: 0x0},\n\t41: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t42: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t43: {lang: 0x3dc, script: 0x57, flags: 0x0},\n\t44: {lang: 0x4ae, script: 0x1f, flags: 0x0},\n\t45: {lang: 0x2ff, script: 0x1f, flags: 0x0},\n\t46: {lang: 0x431, script: 0x57, flags: 0x0},\n\t47: {lang: 0x331, script: 0x72, flags: 0x0},\n\t48: {lang: 0x213, script: 0x57, flags: 0x0},\n\t49: {lang: 0x30b, script: 0x1f, flags: 0x0},\n\t50: {lang: 0x242, script: 0x5, flags: 0x0},\n\t51: {lang: 0x529, script: 0x39, flags: 0x0},\n\t52: {lang: 0x3c0, script: 0x57, flags: 0x0},\n\t53: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t54: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t55: {lang: 0x2ed, script: 0x57, flags: 0x0},\n\t56: {lang: 0x4b4, script: 0x5, flags: 0x0},\n\t57: {lang: 0x88, script: 0x21, flags: 0x0},\n\t58: {lang: 0x4b4, script: 0x5, flags: 0x0},\n\t59: {lang: 0x4b4, script: 0x5, flags: 0x0},\n\t60: {lang: 0xbe, script: 0x21, flags: 0x0},\n\t61: {lang: 0x3dc, script: 0x57, flags: 0x0},\n\t62: {lang: 0x7e, script: 0x1f, flags: 0x0},\n\t63: {lang: 0x3e2, script: 0x1f, flags: 0x0},\n\t64: {lang: 0x267, script: 0x57, flags: 0x0},\n\t65: {lang: 0x444, script: 0x57, flags: 0x0},\n\t66: {lang: 0x512, script: 0x3b, flags: 0x0},\n\t67: {lang: 0x412, script: 0x57, flags: 0x0},\n\t68: {lang: 0x4ae, script: 0x1f, flags: 0x0},\n\t69: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t70: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t71: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t72: {lang: 0x35, script: 0x5, flags: 0x0},\n\t73: {lang: 0x46b, script: 0xdf, flags: 0x0},\n\t74: {lang: 0x2ec, script: 0x5, flags: 0x0},\n\t75: {lang: 0x30f, script: 0x72, flags: 0x0},\n\t76: {lang: 0x467, script: 0x1f, flags: 0x0},\n\t77: {lang: 0x148, script: 0x5, flags: 0x0},\n\t78: {lang: 0x3a, script: 0x5, flags: 0x0},\n\t79: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t80: {lang: 0x48a, script: 0x57, flags: 0x0},\n\t81: {lang: 0x58, script: 0x5, flags: 0x0},\n\t82: {lang: 0x219, script: 0x1f, flags: 0x0},\n\t83: {lang: 0x81, script: 0x31, flags: 0x0},\n\t84: {lang: 0x529, script: 0x39, flags: 0x0},\n\t85: {lang: 0x48c, script: 0x57, flags: 0x0},\n\t86: {lang: 0x4ae, script: 0x1f, flags: 0x0},\n\t87: {lang: 0x512, script: 0x3b, flags: 0x0},\n\t88: {lang: 0x3b3, script: 0x57, flags: 0x0},\n\t89: {lang: 0x431, script: 0x57, flags: 0x0},\n\t90: {lang: 0x432, script: 0x1f, flags: 0x0},\n\t91: {lang: 0x15e, script: 0x57, flags: 0x0},\n\t92: {lang: 0x446, script: 0x5, flags: 0x0},\n}\n\ntype likelyTag struct {\n\tlang   uint16\n\tregion uint16\n\tscript uint8\n}\n\n// Size: 198 bytes, 33 elements\nvar likelyRegionGroup = [33]likelyTag{\n\t1:  {lang: 0x139, region: 0xd6, script: 0x57},\n\t2:  {lang: 0x139, region: 0x135, script: 0x57},\n\t3:  {lang: 0x3c0, region: 0x41, script: 0x57},\n\t4:  {lang: 0x139, region: 0x2f, script: 0x57},\n\t5:  {lang: 0x139, region: 0xd6, script: 0x57},\n\t6:  {lang: 0x13e, region: 0xcf, script: 0x57},\n\t7:  {lang: 0x445, region: 0x12f, script: 0x57},\n\t8:  {lang: 0x3a, region: 0x6b, script: 0x5},\n\t9:  {lang: 0x445, region: 0x4b, script: 0x57},\n\t10: {lang: 0x139, region: 0x161, script: 0x57},\n\t11: {lang: 0x139, region: 0x135, script: 0x57},\n\t12: {lang: 0x139, region: 0x135, script: 0x57},\n\t13: {lang: 0x13e, region: 0x59, script: 0x57},\n\t14: {lang: 0x529, region: 0x53, script: 0x38},\n\t15: {lang: 0x1be, region: 0x99, script: 0x21},\n\t16: {lang: 0x1e1, region: 0x95, script: 0x57},\n\t17: {lang: 0x1f9, region: 0x9e, script: 0x57},\n\t18: {lang: 0x139, region: 0x2f, script: 0x57},\n\t19: {lang: 0x139, region: 0xe6, script: 0x57},\n\t20: {lang: 0x139, region: 0x8a, script: 0x57},\n\t21: {lang: 0x41b, region: 0x142, script: 0x57},\n\t22: {lang: 0x529, region: 0x53, script: 0x38},\n\t23: {lang: 0x4bc, region: 0x137, script: 0x57},\n\t24: {lang: 0x3a, region: 0x108, script: 0x5},\n\t25: {lang: 0x3e2, region: 0x106, script: 0x1f},\n\t26: {lang: 0x3e2, region: 0x106, script: 0x1f},\n\t27: {lang: 0x139, region: 0x7b, script: 0x57},\n\t28: {lang: 0x10d, region: 0x60, script: 0x57},\n\t29: {lang: 0x139, region: 0xd6, script: 0x57},\n\t30: {lang: 0x13e, region: 0x1f, script: 0x57},\n\t31: {lang: 0x139, region: 0x9a, script: 0x57},\n\t32: {lang: 0x139, region: 0x7b, script: 0x57},\n}\n\n// Size: 264 bytes, 33 elements\nvar regionContainment = [33]uint64{\n\t// Entry 0 - 1F\n\t0x00000001ffffffff, 0x00000000200007a2, 0x0000000000003044, 0x0000000000000008,\n\t0x00000000803c0010, 0x0000000000000020, 0x0000000000000040, 0x0000000000000080,\n\t0x0000000000000100, 0x0000000000000200, 0x0000000000000400, 0x000000004000384c,\n\t0x0000000000001000, 0x0000000000002000, 0x0000000000004000, 0x0000000000008000,\n\t0x0000000000010000, 0x0000000000020000, 0x0000000000040000, 0x0000000000080000,\n\t0x0000000000100000, 0x0000000000200000, 0x0000000001c1c000, 0x0000000000800000,\n\t0x0000000001000000, 0x000000001e020000, 0x0000000004000000, 0x0000000008000000,\n\t0x0000000010000000, 0x00000000200006a0, 0x0000000040002048, 0x0000000080000000,\n\t// Entry 20 - 3F\n\t0x0000000100000000,\n}\n\n// regionInclusion maps region identifiers to sets of regions in regionInclusionBits,\n// where each set holds all groupings that are directly connected in a region\n// containment graph.\n// Size: 358 bytes, 358 elements\nvar regionInclusion = [358]uint8{\n\t// Entry 0 - 3F\n\t0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,\n\t0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,\n\t0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,\n\t0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,\n\t0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x26, 0x23,\n\t0x24, 0x26, 0x27, 0x22, 0x28, 0x29, 0x2a, 0x2b,\n\t0x26, 0x2c, 0x24, 0x23, 0x26, 0x25, 0x2a, 0x2d,\n\t0x2e, 0x24, 0x2f, 0x2d, 0x26, 0x30, 0x31, 0x28,\n\t// Entry 40 - 7F\n\t0x26, 0x28, 0x26, 0x25, 0x31, 0x22, 0x32, 0x33,\n\t0x34, 0x30, 0x22, 0x27, 0x27, 0x27, 0x35, 0x2d,\n\t0x29, 0x28, 0x27, 0x36, 0x28, 0x22, 0x34, 0x23,\n\t0x21, 0x26, 0x2d, 0x26, 0x22, 0x37, 0x2e, 0x35,\n\t0x2a, 0x22, 0x2f, 0x38, 0x26, 0x26, 0x21, 0x39,\n\t0x39, 0x28, 0x38, 0x39, 0x39, 0x2f, 0x3a, 0x2f,\n\t0x20, 0x21, 0x38, 0x3b, 0x28, 0x3c, 0x2c, 0x21,\n\t0x2a, 0x35, 0x27, 0x38, 0x26, 0x24, 0x28, 0x2c,\n\t// Entry 80 - BF\n\t0x2d, 0x23, 0x30, 0x2d, 0x2d, 0x26, 0x27, 0x3a,\n\t0x22, 0x34, 0x3c, 0x2d, 0x28, 0x36, 0x22, 0x34,\n\t0x3a, 0x26, 0x2e, 0x21, 0x39, 0x31, 0x38, 0x24,\n\t0x2c, 0x25, 0x22, 0x24, 0x25, 0x2c, 0x3a, 0x2c,\n\t0x26, 0x24, 0x36, 0x21, 0x2f, 0x3d, 0x31, 0x3c,\n\t0x2f, 0x26, 0x36, 0x36, 0x24, 0x26, 0x3d, 0x31,\n\t0x24, 0x26, 0x35, 0x25, 0x2d, 0x32, 0x38, 0x2a,\n\t0x38, 0x39, 0x39, 0x35, 0x33, 0x23, 0x26, 0x2f,\n\t// Entry C0 - FF\n\t0x3c, 0x21, 0x23, 0x2d, 0x31, 0x36, 0x36, 0x3c,\n\t0x26, 0x2d, 0x26, 0x3a, 0x2f, 0x25, 0x2f, 0x34,\n\t0x31, 0x2f, 0x32, 0x3b, 0x2d, 0x2b, 0x2d, 0x21,\n\t0x34, 0x2a, 0x2c, 0x25, 0x21, 0x3c, 0x24, 0x29,\n\t0x2b, 0x24, 0x34, 0x21, 0x28, 0x29, 0x3b, 0x31,\n\t0x25, 0x2e, 0x30, 0x29, 0x26, 0x24, 0x3a, 0x21,\n\t0x3c, 0x28, 0x21, 0x24, 0x21, 0x21, 0x1f, 0x21,\n\t0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21,\n\t// Entry 100 - 13F\n\t0x21, 0x21, 0x2f, 0x21, 0x2e, 0x23, 0x33, 0x2f,\n\t0x24, 0x3b, 0x2f, 0x39, 0x38, 0x31, 0x2d, 0x3a,\n\t0x2c, 0x2e, 0x2d, 0x23, 0x2d, 0x2f, 0x28, 0x2f,\n\t0x27, 0x33, 0x34, 0x26, 0x24, 0x32, 0x22, 0x26,\n\t0x27, 0x22, 0x2d, 0x31, 0x3d, 0x29, 0x31, 0x3d,\n\t0x39, 0x29, 0x31, 0x24, 0x26, 0x29, 0x36, 0x2f,\n\t0x33, 0x2f, 0x21, 0x22, 0x21, 0x30, 0x28, 0x3d,\n\t0x23, 0x26, 0x21, 0x28, 0x26, 0x26, 0x31, 0x3b,\n\t// Entry 140 - 17F\n\t0x29, 0x21, 0x29, 0x21, 0x21, 0x21, 0x21, 0x21,\n\t0x21, 0x21, 0x21, 0x21, 0x21, 0x23, 0x21, 0x21,\n\t0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21,\n\t0x21, 0x21, 0x21, 0x21, 0x21, 0x24, 0x24, 0x2f,\n\t0x23, 0x32, 0x2f, 0x27, 0x2f, 0x21,\n}\n\n// regionInclusionBits is an array of bit vectors where every vector represents\n// a set of region groupings.  These sets are used to compute the distance\n// between two regions for the purpose of language matching.\n// Size: 584 bytes, 73 elements\nvar regionInclusionBits = [73]uint64{\n\t// Entry 0 - 1F\n\t0x0000000102400813, 0x00000000200007a3, 0x0000000000003844, 0x0000000040000808,\n\t0x00000000803c0011, 0x0000000020000022, 0x0000000040000844, 0x0000000020000082,\n\t0x0000000000000102, 0x0000000020000202, 0x0000000020000402, 0x000000004000384d,\n\t0x0000000000001804, 0x0000000040002804, 0x0000000000404000, 0x0000000000408000,\n\t0x0000000000410000, 0x0000000002020000, 0x0000000000040010, 0x0000000000080010,\n\t0x0000000000100010, 0x0000000000200010, 0x0000000001c1c001, 0x0000000000c00000,\n\t0x0000000001400000, 0x000000001e020001, 0x0000000006000000, 0x000000000a000000,\n\t0x0000000012000000, 0x00000000200006a2, 0x0000000040002848, 0x0000000080000010,\n\t// Entry 20 - 3F\n\t0x0000000100000001, 0x0000000000000001, 0x0000000080000000, 0x0000000000020000,\n\t0x0000000001000000, 0x0000000000008000, 0x0000000000002000, 0x0000000000000200,\n\t0x0000000000000008, 0x0000000000200000, 0x0000000110000000, 0x0000000000040000,\n\t0x0000000008000000, 0x0000000000000020, 0x0000000104000000, 0x0000000000000080,\n\t0x0000000000001000, 0x0000000000010000, 0x0000000000000400, 0x0000000004000000,\n\t0x0000000000000040, 0x0000000010000000, 0x0000000000004000, 0x0000000101000000,\n\t0x0000000108000000, 0x0000000000000100, 0x0000000100020000, 0x0000000000080000,\n\t0x0000000000100000, 0x0000000000800000, 0x00000001ffffffff, 0x0000000122400fb3,\n\t// Entry 40 - 5F\n\t0x00000001827c0813, 0x000000014240385f, 0x0000000103c1c813, 0x000000011e420813,\n\t0x0000000112000001, 0x0000000106000001, 0x0000000101400001, 0x000000010a000001,\n\t0x0000000102020001,\n}\n\n// regionInclusionNext marks, for each entry in regionInclusionBits, the set of\n// all groups that are reachable from the groups set in the respective entry.\n// Size: 73 bytes, 73 elements\nvar regionInclusionNext = [73]uint8{\n\t// Entry 0 - 3F\n\t0x3e, 0x3f, 0x0b, 0x0b, 0x40, 0x01, 0x0b, 0x01,\n\t0x01, 0x01, 0x01, 0x41, 0x0b, 0x0b, 0x16, 0x16,\n\t0x16, 0x19, 0x04, 0x04, 0x04, 0x04, 0x42, 0x16,\n\t0x16, 0x43, 0x19, 0x19, 0x19, 0x01, 0x0b, 0x04,\n\t0x00, 0x00, 0x1f, 0x11, 0x18, 0x0f, 0x0d, 0x09,\n\t0x03, 0x15, 0x44, 0x12, 0x1b, 0x05, 0x45, 0x07,\n\t0x0c, 0x10, 0x0a, 0x1a, 0x06, 0x1c, 0x0e, 0x46,\n\t0x47, 0x08, 0x48, 0x13, 0x14, 0x17, 0x3e, 0x3e,\n\t// Entry 40 - 7F\n\t0x3e, 0x3e, 0x3e, 0x3e, 0x43, 0x43, 0x42, 0x43,\n\t0x43,\n}\n\ntype parentRel struct {\n\tlang       uint16\n\tscript     uint8\n\tmaxScript  uint8\n\ttoRegion   uint16\n\tfromRegion []uint16\n}\n\n// Size: 414 bytes, 5 elements\nvar parents = [5]parentRel{\n\t0: {lang: 0x139, script: 0x0, maxScript: 0x57, toRegion: 0x1, fromRegion: []uint16{0x1a, 0x25, 0x26, 0x2f, 0x34, 0x36, 0x3d, 0x42, 0x46, 0x48, 0x49, 0x4a, 0x50, 0x52, 0x5c, 0x5d, 0x61, 0x64, 0x6d, 0x73, 0x74, 0x75, 0x7b, 0x7c, 0x7f, 0x80, 0x81, 0x83, 0x8c, 0x8d, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9f, 0xa0, 0xa4, 0xa7, 0xa9, 0xad, 0xb1, 0xb4, 0xb5, 0xbf, 0xc6, 0xca, 0xcb, 0xcc, 0xce, 0xd0, 0xd2, 0xd5, 0xd6, 0xdd, 0xdf, 0xe0, 0xe6, 0xe7, 0xe8, 0xeb, 0xf0, 0x107, 0x109, 0x10a, 0x10b, 0x10d, 0x10e, 0x112, 0x117, 0x11b, 0x11d, 0x11f, 0x125, 0x129, 0x12c, 0x12d, 0x12f, 0x131, 0x139, 0x13c, 0x13f, 0x142, 0x161, 0x162, 0x164}},\n\t1: {lang: 0x139, script: 0x0, maxScript: 0x57, toRegion: 0x1a, fromRegion: []uint16{0x2e, 0x4e, 0x60, 0x63, 0x72, 0xd9, 0x10c, 0x10f}},\n\t2: {lang: 0x13e, script: 0x0, maxScript: 0x57, toRegion: 0x1f, fromRegion: []uint16{0x2c, 0x3f, 0x41, 0x48, 0x51, 0x54, 0x56, 0x59, 0x65, 0x69, 0x89, 0x8f, 0xcf, 0xd8, 0xe2, 0xe4, 0xec, 0xf1, 0x11a, 0x135, 0x136, 0x13b}},\n\t3: {lang: 0x3c0, script: 0x0, maxScript: 0x57, toRegion: 0xee, fromRegion: []uint16{0x2a, 0x4e, 0x5a, 0x86, 0x8b, 0xb7, 0xc6, 0xd1, 0x118, 0x126}},\n\t4: {lang: 0x529, script: 0x39, maxScript: 0x39, toRegion: 0x8d, fromRegion: []uint16{0xc6}},\n}\n\n// Total table size 25886 bytes (25KiB); checksum: 50D3D57D\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/language/tags.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\n// MustParse is like Parse, but panics if the given BCP 47 tag cannot be parsed.\n// It simplifies safe initialization of Tag values.\nfunc MustParse(s string) Tag {\n\tt, err := Parse(s)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn t\n}\n\n// MustParseBase is like ParseBase, but panics if the given base cannot be parsed.\n// It simplifies safe initialization of Base values.\nfunc MustParseBase(s string) Language {\n\tb, err := ParseBase(s)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn b\n}\n\n// MustParseScript is like ParseScript, but panics if the given script cannot be\n// parsed. It simplifies safe initialization of Script values.\nfunc MustParseScript(s string) Script {\n\tscr, err := ParseScript(s)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn scr\n}\n\n// MustParseRegion is like ParseRegion, but panics if the given region cannot be\n// parsed. It simplifies safe initialization of Region values.\nfunc MustParseRegion(s string) Region {\n\tr, err := ParseRegion(s)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn r\n}\n\n// Und is the root language.\nvar Und Tag\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/tag/tag.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package tag contains functionality handling tags and related data.\npackage tag // import \"golang.org/x/text/internal/tag\"\n\nimport \"sort\"\n\n// An Index converts tags to a compact numeric value.\n//\n// All elements are of size 4. Tags may be up to 4 bytes long. Excess bytes can\n// be used to store additional information about the tag.\ntype Index string\n\n// Elem returns the element data at the given index.\nfunc (s Index) Elem(x int) string {\n\treturn string(s[x*4 : x*4+4])\n}\n\n// Index reports the index of the given key or -1 if it could not be found.\n// Only the first len(key) bytes from the start of the 4-byte entries will be\n// considered for the search and the first match in Index will be returned.\nfunc (s Index) Index(key []byte) int {\n\tn := len(key)\n\t// search the index of the first entry with an equal or higher value than\n\t// key in s.\n\tindex := sort.Search(len(s)/4, func(i int) bool {\n\t\treturn cmp(s[i*4:i*4+n], key) != -1\n\t})\n\ti := index * 4\n\tif cmp(s[i:i+len(key)], key) != 0 {\n\t\treturn -1\n\t}\n\treturn index\n}\n\n// Next finds the next occurrence of key after index x, which must have been\n// obtained from a call to Index using the same key. It returns x+1 or -1.\nfunc (s Index) Next(key []byte, x int) int {\n\tif x++; x*4 < len(s) && cmp(s[x*4:x*4+len(key)], key) == 0 {\n\t\treturn x\n\t}\n\treturn -1\n}\n\n// cmp returns an integer comparing a and b lexicographically.\nfunc cmp(a Index, b []byte) int {\n\tn := len(a)\n\tif len(b) < n {\n\t\tn = len(b)\n\t}\n\tfor i, c := range b[:n] {\n\t\tswitch {\n\t\tcase a[i] > c:\n\t\t\treturn 1\n\t\tcase a[i] < c:\n\t\t\treturn -1\n\t\t}\n\t}\n\tswitch {\n\tcase len(a) < len(b):\n\t\treturn -1\n\tcase len(a) > len(b):\n\t\treturn 1\n\t}\n\treturn 0\n}\n\n// Compare returns an integer comparing a and b lexicographically.\nfunc Compare(a string, b []byte) int {\n\treturn cmp(Index(a), b)\n}\n\n// FixCase reformats b to the same pattern of cases as form.\n// If returns false if string b is malformed.\nfunc FixCase(form string, b []byte) bool {\n\tif len(form) != len(b) {\n\t\treturn false\n\t}\n\tfor i, c := range b {\n\t\tif form[i] <= 'Z' {\n\t\t\tif c >= 'a' {\n\t\t\t\tc -= 'z' - 'Z'\n\t\t\t}\n\t\t\tif c < 'A' || 'Z' < c {\n\t\t\t\treturn false\n\t\t\t}\n\t\t} else {\n\t\t\tif c <= 'Z' {\n\t\t\t\tc += 'z' - 'Z'\n\t\t\t}\n\t\t\tif c < 'a' || 'z' < c {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tb[i] = c\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/internal/utf8internal/utf8internal.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package utf8internal contains low-level utf8-related constants, tables, etc.\n// that are used internally by the text package.\npackage utf8internal\n\n// The default lowest and highest continuation byte.\nconst (\n\tLoCB = 0x80 // 1000 0000\n\tHiCB = 0xBF // 1011 1111\n)\n\n// Constants related to getting information of first bytes of UTF-8 sequences.\nconst (\n\t// ASCII identifies a UTF-8 byte as ASCII.\n\tASCII = as\n\n\t// FirstInvalid indicates a byte is invalid as a first byte of a UTF-8\n\t// sequence.\n\tFirstInvalid = xx\n\n\t// SizeMask is a mask for the size bits. Use use x&SizeMask to get the size.\n\tSizeMask = 7\n\n\t// AcceptShift is the right-shift count for the first byte info byte to get\n\t// the index into the AcceptRanges table. See AcceptRanges.\n\tAcceptShift = 4\n\n\t// The names of these constants are chosen to give nice alignment in the\n\t// table below. The first nibble is an index into acceptRanges or F for\n\t// special one-byte cases. The second nibble is the Rune length or the\n\t// Status for the special one-byte case.\n\txx = 0xF1 // invalid: size 1\n\tas = 0xF0 // ASCII: size 1\n\ts1 = 0x02 // accept 0, size 2\n\ts2 = 0x13 // accept 1, size 3\n\ts3 = 0x03 // accept 0, size 3\n\ts4 = 0x23 // accept 2, size 3\n\ts5 = 0x34 // accept 3, size 4\n\ts6 = 0x04 // accept 0, size 4\n\ts7 = 0x44 // accept 4, size 4\n)\n\n// First is information about the first byte in a UTF-8 sequence.\nvar First = [256]uint8{\n\t//   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F\n\tas, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x00-0x0F\n\tas, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x10-0x1F\n\tas, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x20-0x2F\n\tas, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x30-0x3F\n\tas, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x40-0x4F\n\tas, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x50-0x5F\n\tas, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x60-0x6F\n\tas, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x70-0x7F\n\t//   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F\n\txx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, // 0x80-0x8F\n\txx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, // 0x90-0x9F\n\txx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, // 0xA0-0xAF\n\txx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, // 0xB0-0xBF\n\txx, xx, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, // 0xC0-0xCF\n\ts1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, // 0xD0-0xDF\n\ts2, s3, s3, s3, s3, s3, s3, s3, s3, s3, s3, s3, s3, s4, s3, s3, // 0xE0-0xEF\n\ts5, s6, s6, s6, s7, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, // 0xF0-0xFF\n}\n\n// AcceptRange gives the range of valid values for the second byte in a UTF-8\n// sequence for any value for First that is not ASCII or FirstInvalid.\ntype AcceptRange struct {\n\tLo uint8 // lowest value for second byte.\n\tHi uint8 // highest value for second byte.\n}\n\n// AcceptRanges is a slice of AcceptRange values. For a given byte sequence b\n//\n//\t\tAcceptRanges[First[b[0]]>>AcceptShift]\n//\n// will give the value of AcceptRange for the multi-byte UTF-8 sequence starting\n// at b[0].\nvar AcceptRanges = [...]AcceptRange{\n\t0: {LoCB, HiCB},\n\t1: {0xA0, HiCB},\n\t2: {LoCB, 0x9F},\n\t3: {0x90, HiCB},\n\t4: {LoCB, 0x8F},\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/language/coverage.go",
    "content": "// Copyright 2014 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\nimport (\n\t\"fmt\"\n\t\"sort\"\n\n\t\"golang.org/x/text/internal/language\"\n)\n\n// The Coverage interface is used to define the level of coverage of an\n// internationalization service. Note that not all types are supported by all\n// services. As lists may be generated on the fly, it is recommended that users\n// of a Coverage cache the results.\ntype Coverage interface {\n\t// Tags returns the list of supported tags.\n\tTags() []Tag\n\n\t// BaseLanguages returns the list of supported base languages.\n\tBaseLanguages() []Base\n\n\t// Scripts returns the list of supported scripts.\n\tScripts() []Script\n\n\t// Regions returns the list of supported regions.\n\tRegions() []Region\n}\n\nvar (\n\t// Supported defines a Coverage that lists all supported subtags. Tags\n\t// always returns nil.\n\tSupported Coverage = allSubtags{}\n)\n\n// TODO:\n// - Support Variants, numbering systems.\n// - CLDR coverage levels.\n// - Set of common tags defined in this package.\n\ntype allSubtags struct{}\n\n// Regions returns the list of supported regions. As all regions are in a\n// consecutive range, it simply returns a slice of numbers in increasing order.\n// The \"undefined\" region is not returned.\nfunc (s allSubtags) Regions() []Region {\n\treg := make([]Region, language.NumRegions)\n\tfor i := range reg {\n\t\treg[i] = Region{language.Region(i + 1)}\n\t}\n\treturn reg\n}\n\n// Scripts returns the list of supported scripts. As all scripts are in a\n// consecutive range, it simply returns a slice of numbers in increasing order.\n// The \"undefined\" script is not returned.\nfunc (s allSubtags) Scripts() []Script {\n\tscr := make([]Script, language.NumScripts)\n\tfor i := range scr {\n\t\tscr[i] = Script{language.Script(i + 1)}\n\t}\n\treturn scr\n}\n\n// BaseLanguages returns the list of all supported base languages. It generates\n// the list by traversing the internal structures.\nfunc (s allSubtags) BaseLanguages() []Base {\n\tbs := language.BaseLanguages()\n\tbase := make([]Base, len(bs))\n\tfor i, b := range bs {\n\t\tbase[i] = Base{b}\n\t}\n\treturn base\n}\n\n// Tags always returns nil.\nfunc (s allSubtags) Tags() []Tag {\n\treturn nil\n}\n\n// coverage is used by NewCoverage which is used as a convenient way for\n// creating Coverage implementations for partially defined data. Very often a\n// package will only need to define a subset of slices. coverage provides a\n// convenient way to do this. Moreover, packages using NewCoverage, instead of\n// their own implementation, will not break if later new slice types are added.\ntype coverage struct {\n\ttags    func() []Tag\n\tbases   func() []Base\n\tscripts func() []Script\n\tregions func() []Region\n}\n\nfunc (s *coverage) Tags() []Tag {\n\tif s.tags == nil {\n\t\treturn nil\n\t}\n\treturn s.tags()\n}\n\n// bases implements sort.Interface and is used to sort base languages.\ntype bases []Base\n\nfunc (b bases) Len() int {\n\treturn len(b)\n}\n\nfunc (b bases) Swap(i, j int) {\n\tb[i], b[j] = b[j], b[i]\n}\n\nfunc (b bases) Less(i, j int) bool {\n\treturn b[i].langID < b[j].langID\n}\n\n// BaseLanguages returns the result from calling s.bases if it is specified or\n// otherwise derives the set of supported base languages from tags.\nfunc (s *coverage) BaseLanguages() []Base {\n\tif s.bases == nil {\n\t\ttags := s.Tags()\n\t\tif len(tags) == 0 {\n\t\t\treturn nil\n\t\t}\n\t\ta := make([]Base, len(tags))\n\t\tfor i, t := range tags {\n\t\t\ta[i] = Base{language.Language(t.lang())}\n\t\t}\n\t\tsort.Sort(bases(a))\n\t\tk := 0\n\t\tfor i := 1; i < len(a); i++ {\n\t\t\tif a[k] != a[i] {\n\t\t\t\tk++\n\t\t\t\ta[k] = a[i]\n\t\t\t}\n\t\t}\n\t\treturn a[:k+1]\n\t}\n\treturn s.bases()\n}\n\nfunc (s *coverage) Scripts() []Script {\n\tif s.scripts == nil {\n\t\treturn nil\n\t}\n\treturn s.scripts()\n}\n\nfunc (s *coverage) Regions() []Region {\n\tif s.regions == nil {\n\t\treturn nil\n\t}\n\treturn s.regions()\n}\n\n// NewCoverage returns a Coverage for the given lists. It is typically used by\n// packages providing internationalization services to define their level of\n// coverage. A list may be of type []T or func() []T, where T is either Tag,\n// Base, Script or Region. The returned Coverage derives the value for Bases\n// from Tags if no func or slice for []Base is specified. For other unspecified\n// types the returned Coverage will return nil for the respective methods.\nfunc NewCoverage(list ...interface{}) Coverage {\n\ts := &coverage{}\n\tfor _, x := range list {\n\t\tswitch v := x.(type) {\n\t\tcase func() []Base:\n\t\t\ts.bases = v\n\t\tcase func() []Script:\n\t\t\ts.scripts = v\n\t\tcase func() []Region:\n\t\t\ts.regions = v\n\t\tcase func() []Tag:\n\t\t\ts.tags = v\n\t\tcase []Base:\n\t\t\ts.bases = func() []Base { return v }\n\t\tcase []Script:\n\t\t\ts.scripts = func() []Script { return v }\n\t\tcase []Region:\n\t\t\ts.regions = func() []Region { return v }\n\t\tcase []Tag:\n\t\t\ts.tags = func() []Tag { return v }\n\t\tdefault:\n\t\t\tpanic(fmt.Sprintf(\"language: unsupported set type %T\", v))\n\t\t}\n\t}\n\treturn s\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/language/doc.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package language implements BCP 47 language tags and related functionality.\n//\n// The most important function of package language is to match a list of\n// user-preferred languages to a list of supported languages.\n// It alleviates the developer of dealing with the complexity of this process\n// and provides the user with the best experience\n// (see https://blog.golang.org/matchlang).\n//\n//\n// Matching preferred against supported languages\n//\n// A Matcher for an application that supports English, Australian English,\n// Danish, and standard Mandarin can be created as follows:\n//\n//    var matcher = language.NewMatcher([]language.Tag{\n//        language.English,   // The first language is used as fallback.\n//        language.MustParse(\"en-AU\"),\n//        language.Danish,\n//        language.Chinese,\n//    })\n//\n// This list of supported languages is typically implied by the languages for\n// which there exists translations of the user interface.\n//\n// User-preferred languages usually come as a comma-separated list of BCP 47\n// language tags.\n// The MatchString finds best matches for such strings:\n//\n//    handler(w http.ResponseWriter, r *http.Request) {\n//        lang, _ := r.Cookie(\"lang\")\n//        accept := r.Header.Get(\"Accept-Language\")\n//        tag, _ := language.MatchStrings(matcher, lang.String(), accept)\n//\n//        // tag should now be used for the initialization of any\n//        // locale-specific service.\n//    }\n//\n// The Matcher's Match method can be used to match Tags directly.\n//\n// Matchers are aware of the intricacies of equivalence between languages, such\n// as deprecated subtags, legacy tags, macro languages, mutual\n// intelligibility between scripts and languages, and transparently passing\n// BCP 47 user configuration.\n// For instance, it will know that a reader of Bokmål Danish can read Norwegian\n// and will know that Cantonese (\"yue\") is a good match for \"zh-HK\".\n//\n//\n// Using match results\n//\n// To guarantee a consistent user experience to the user it is important to\n// use the same language tag for the selection of any locale-specific services.\n// For example, it is utterly confusing to substitute spelled-out numbers\n// or dates in one language in text of another language.\n// More subtly confusing is using the wrong sorting order or casing\n// algorithm for a certain language.\n//\n//    All the packages in x/text that provide locale-specific services\n//    (e.g. collate, cases) should be initialized with the tag that was\n//    obtained at the start of an interaction with the user.\n//\n// Note that Tag that is returned by Match and MatchString may differ from any\n// of the supported languages, as it may contain carried over settings from\n// the user tags.\n// This may be inconvenient when your application has some additional\n// locale-specific data for your supported languages.\n// Match and MatchString both return the index of the matched supported tag\n// to simplify associating such data with the matched tag.\n//\n//\n// Canonicalization\n//\n// If one uses the Matcher to compare languages one does not need to\n// worry about canonicalization.\n//\n// The meaning of a Tag varies per application. The language package\n// therefore delays canonicalization and preserves information as much\n// as possible. The Matcher, however, will always take into account that\n// two different tags may represent the same language.\n//\n// By default, only legacy and deprecated tags are converted into their\n// canonical equivalent. All other information is preserved. This approach makes\n// the confidence scores more accurate and allows matchers to distinguish\n// between variants that are otherwise lost.\n//\n// As a consequence, two tags that should be treated as identical according to\n// BCP 47 or CLDR, like \"en-Latn\" and \"en\", will be represented differently. The\n// Matcher handles such distinctions, though, and is aware of the\n// equivalence relations. The CanonType type can be used to alter the\n// canonicalization form.\n//\n// References\n//\n// BCP 47 - Tags for Identifying Languages http://tools.ietf.org/html/bcp47\n//\npackage language // import \"golang.org/x/text/language\"\n\n// TODO: explanation on how to match languages for your own locale-specific\n// service.\n"
  },
  {
    "path": "vendor/golang.org/x/text/language/go1_1.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build !go1.2\n\npackage language\n\nimport \"sort\"\n\nfunc sortStable(s sort.Interface) {\n\tss := stableSort{\n\t\ts:   s,\n\t\tpos: make([]int, s.Len()),\n\t}\n\tfor i := range ss.pos {\n\t\tss.pos[i] = i\n\t}\n\tsort.Sort(&ss)\n}\n\ntype stableSort struct {\n\ts   sort.Interface\n\tpos []int\n}\n\nfunc (s *stableSort) Len() int {\n\treturn len(s.pos)\n}\n\nfunc (s *stableSort) Less(i, j int) bool {\n\treturn s.s.Less(i, j) || !s.s.Less(j, i) && s.pos[i] < s.pos[j]\n}\n\nfunc (s *stableSort) Swap(i, j int) {\n\ts.s.Swap(i, j)\n\ts.pos[i], s.pos[j] = s.pos[j], s.pos[i]\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/language/go1_2.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// +build go1.2\n\npackage language\n\nimport \"sort\"\n\nvar sortStable = sort.Stable\n"
  },
  {
    "path": "vendor/golang.org/x/text/language/language.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n//go:generate go run gen.go -output tables.go\n\npackage language\n\n// TODO: Remove above NOTE after:\n// - verifying that tables are dropped correctly (most notably matcher tables).\n\nimport (\n\t\"strings\"\n\n\t\"golang.org/x/text/internal/language\"\n\t\"golang.org/x/text/internal/language/compact\"\n)\n\n// Tag represents a BCP 47 language tag. It is used to specify an instance of a\n// specific language or locale. All language tag values are guaranteed to be\n// well-formed.\ntype Tag compact.Tag\n\nfunc makeTag(t language.Tag) (tag Tag) {\n\treturn Tag(compact.Make(t))\n}\n\nfunc (t *Tag) tag() language.Tag {\n\treturn (*compact.Tag)(t).Tag()\n}\n\nfunc (t *Tag) isCompact() bool {\n\treturn (*compact.Tag)(t).IsCompact()\n}\n\n// TODO: improve performance.\nfunc (t *Tag) lang() language.Language { return t.tag().LangID }\nfunc (t *Tag) region() language.Region { return t.tag().RegionID }\nfunc (t *Tag) script() language.Script { return t.tag().ScriptID }\n\n// Make is a convenience wrapper for Parse that omits the error.\n// In case of an error, a sensible default is returned.\nfunc Make(s string) Tag {\n\treturn Default.Make(s)\n}\n\n// Make is a convenience wrapper for c.Parse that omits the error.\n// In case of an error, a sensible default is returned.\nfunc (c CanonType) Make(s string) Tag {\n\tt, _ := c.Parse(s)\n\treturn t\n}\n\n// Raw returns the raw base language, script and region, without making an\n// attempt to infer their values.\nfunc (t Tag) Raw() (b Base, s Script, r Region) {\n\ttt := t.tag()\n\treturn Base{tt.LangID}, Script{tt.ScriptID}, Region{tt.RegionID}\n}\n\n// IsRoot returns true if t is equal to language \"und\".\nfunc (t Tag) IsRoot() bool {\n\treturn compact.Tag(t).IsRoot()\n}\n\n// CanonType can be used to enable or disable various types of canonicalization.\ntype CanonType int\n\nconst (\n\t// Replace deprecated base languages with their preferred replacements.\n\tDeprecatedBase CanonType = 1 << iota\n\t// Replace deprecated scripts with their preferred replacements.\n\tDeprecatedScript\n\t// Replace deprecated regions with their preferred replacements.\n\tDeprecatedRegion\n\t// Remove redundant scripts.\n\tSuppressScript\n\t// Normalize legacy encodings. This includes legacy languages defined in\n\t// CLDR as well as bibliographic codes defined in ISO-639.\n\tLegacy\n\t// Map the dominant language of a macro language group to the macro language\n\t// subtag. For example cmn -> zh.\n\tMacro\n\t// The CLDR flag should be used if full compatibility with CLDR is required.\n\t// There are a few cases where language.Tag may differ from CLDR. To follow all\n\t// of CLDR's suggestions, use All|CLDR.\n\tCLDR\n\n\t// Raw can be used to Compose or Parse without Canonicalization.\n\tRaw CanonType = 0\n\n\t// Replace all deprecated tags with their preferred replacements.\n\tDeprecated = DeprecatedBase | DeprecatedScript | DeprecatedRegion\n\n\t// All canonicalizations recommended by BCP 47.\n\tBCP47 = Deprecated | SuppressScript\n\n\t// All canonicalizations.\n\tAll = BCP47 | Legacy | Macro\n\n\t// Default is the canonicalization used by Parse, Make and Compose. To\n\t// preserve as much information as possible, canonicalizations that remove\n\t// potentially valuable information are not included. The Matcher is\n\t// designed to recognize similar tags that would be the same if\n\t// they were canonicalized using All.\n\tDefault = Deprecated | Legacy\n\n\tcanonLang = DeprecatedBase | Legacy | Macro\n\n\t// TODO: LikelyScript, LikelyRegion: suppress similar to ICU.\n)\n\n// canonicalize returns the canonicalized equivalent of the tag and\n// whether there was any change.\nfunc canonicalize(c CanonType, t language.Tag) (language.Tag, bool) {\n\tif c == Raw {\n\t\treturn t, false\n\t}\n\tchanged := false\n\tif c&SuppressScript != 0 {\n\t\tif t.LangID.SuppressScript() == t.ScriptID {\n\t\t\tt.ScriptID = 0\n\t\t\tchanged = true\n\t\t}\n\t}\n\tif c&canonLang != 0 {\n\t\tfor {\n\t\t\tif l, aliasType := t.LangID.Canonicalize(); l != t.LangID {\n\t\t\t\tswitch aliasType {\n\t\t\t\tcase language.Legacy:\n\t\t\t\t\tif c&Legacy != 0 {\n\t\t\t\t\t\tif t.LangID == _sh && t.ScriptID == 0 {\n\t\t\t\t\t\t\tt.ScriptID = _Latn\n\t\t\t\t\t\t}\n\t\t\t\t\t\tt.LangID = l\n\t\t\t\t\t\tchanged = true\n\t\t\t\t\t}\n\t\t\t\tcase language.Macro:\n\t\t\t\t\tif c&Macro != 0 {\n\t\t\t\t\t\t// We deviate here from CLDR. The mapping \"nb\" -> \"no\"\n\t\t\t\t\t\t// qualifies as a typical Macro language mapping.  However,\n\t\t\t\t\t\t// for legacy reasons, CLDR maps \"no\", the macro language\n\t\t\t\t\t\t// code for Norwegian, to the dominant variant \"nb\". This\n\t\t\t\t\t\t// change is currently under consideration for CLDR as well.\n\t\t\t\t\t\t// See https://unicode.org/cldr/trac/ticket/2698 and also\n\t\t\t\t\t\t// https://unicode.org/cldr/trac/ticket/1790 for some of the\n\t\t\t\t\t\t// practical implications. TODO: this check could be removed\n\t\t\t\t\t\t// if CLDR adopts this change.\n\t\t\t\t\t\tif c&CLDR == 0 || t.LangID != _nb {\n\t\t\t\t\t\t\tchanged = true\n\t\t\t\t\t\t\tt.LangID = l\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\tcase language.Deprecated:\n\t\t\t\t\tif c&DeprecatedBase != 0 {\n\t\t\t\t\t\tif t.LangID == _mo && t.RegionID == 0 {\n\t\t\t\t\t\t\tt.RegionID = _MD\n\t\t\t\t\t\t}\n\t\t\t\t\t\tt.LangID = l\n\t\t\t\t\t\tchanged = true\n\t\t\t\t\t\t// Other canonicalization types may still apply.\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if c&Legacy != 0 && t.LangID == _no && c&CLDR != 0 {\n\t\t\t\tt.LangID = _nb\n\t\t\t\tchanged = true\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t}\n\tif c&DeprecatedScript != 0 {\n\t\tif t.ScriptID == _Qaai {\n\t\t\tchanged = true\n\t\t\tt.ScriptID = _Zinh\n\t\t}\n\t}\n\tif c&DeprecatedRegion != 0 {\n\t\tif r := t.RegionID.Canonicalize(); r != t.RegionID {\n\t\t\tchanged = true\n\t\t\tt.RegionID = r\n\t\t}\n\t}\n\treturn t, changed\n}\n\n// Canonicalize returns the canonicalized equivalent of the tag.\nfunc (c CanonType) Canonicalize(t Tag) (Tag, error) {\n\t// First try fast path.\n\tif t.isCompact() {\n\t\tif _, changed := canonicalize(c, compact.Tag(t).Tag()); !changed {\n\t\t\treturn t, nil\n\t\t}\n\t}\n\t// It is unlikely that one will canonicalize a tag after matching. So do\n\t// a slow but simple approach here.\n\tif tag, changed := canonicalize(c, t.tag()); changed {\n\t\ttag.RemakeString()\n\t\treturn makeTag(tag), nil\n\t}\n\treturn t, nil\n\n}\n\n// Confidence indicates the level of certainty for a given return value.\n// For example, Serbian may be written in Cyrillic or Latin script.\n// The confidence level indicates whether a value was explicitly specified,\n// whether it is typically the only possible value, or whether there is\n// an ambiguity.\ntype Confidence int\n\nconst (\n\tNo    Confidence = iota // full confidence that there was no match\n\tLow                     // most likely value picked out of a set of alternatives\n\tHigh                    // value is generally assumed to be the correct match\n\tExact                   // exact match or explicitly specified value\n)\n\nvar confName = []string{\"No\", \"Low\", \"High\", \"Exact\"}\n\nfunc (c Confidence) String() string {\n\treturn confName[c]\n}\n\n// String returns the canonical string representation of the language tag.\nfunc (t Tag) String() string {\n\treturn t.tag().String()\n}\n\n// MarshalText implements encoding.TextMarshaler.\nfunc (t Tag) MarshalText() (text []byte, err error) {\n\treturn t.tag().MarshalText()\n}\n\n// UnmarshalText implements encoding.TextUnmarshaler.\nfunc (t *Tag) UnmarshalText(text []byte) error {\n\tvar tag language.Tag\n\terr := tag.UnmarshalText(text)\n\t*t = makeTag(tag)\n\treturn err\n}\n\n// Base returns the base language of the language tag. If the base language is\n// unspecified, an attempt will be made to infer it from the context.\n// It uses a variant of CLDR's Add Likely Subtags algorithm. This is subject to change.\nfunc (t Tag) Base() (Base, Confidence) {\n\tif b := t.lang(); b != 0 {\n\t\treturn Base{b}, Exact\n\t}\n\ttt := t.tag()\n\tc := High\n\tif tt.ScriptID == 0 && !tt.RegionID.IsCountry() {\n\t\tc = Low\n\t}\n\tif tag, err := tt.Maximize(); err == nil && tag.LangID != 0 {\n\t\treturn Base{tag.LangID}, c\n\t}\n\treturn Base{0}, No\n}\n\n// Script infers the script for the language tag. If it was not explicitly given, it will infer\n// a most likely candidate.\n// If more than one script is commonly used for a language, the most likely one\n// is returned with a low confidence indication. For example, it returns (Cyrl, Low)\n// for Serbian.\n// If a script cannot be inferred (Zzzz, No) is returned. We do not use Zyyy (undetermined)\n// as one would suspect from the IANA registry for BCP 47. In a Unicode context Zyyy marks\n// common characters (like 1, 2, 3, '.', etc.) and is therefore more like multiple scripts.\n// See https://www.unicode.org/reports/tr24/#Values for more details. Zzzz is also used for\n// unknown value in CLDR.  (Zzzz, Exact) is returned if Zzzz was explicitly specified.\n// Note that an inferred script is never guaranteed to be the correct one. Latin is\n// almost exclusively used for Afrikaans, but Arabic has been used for some texts\n// in the past.  Also, the script that is commonly used may change over time.\n// It uses a variant of CLDR's Add Likely Subtags algorithm. This is subject to change.\nfunc (t Tag) Script() (Script, Confidence) {\n\tif scr := t.script(); scr != 0 {\n\t\treturn Script{scr}, Exact\n\t}\n\ttt := t.tag()\n\tsc, c := language.Script(_Zzzz), No\n\tif scr := tt.LangID.SuppressScript(); scr != 0 {\n\t\t// Note: it is not always the case that a language with a suppress\n\t\t// script value is only written in one script (e.g. kk, ms, pa).\n\t\tif tt.RegionID == 0 {\n\t\t\treturn Script{scr}, High\n\t\t}\n\t\tsc, c = scr, High\n\t}\n\tif tag, err := tt.Maximize(); err == nil {\n\t\tif tag.ScriptID != sc {\n\t\t\tsc, c = tag.ScriptID, Low\n\t\t}\n\t} else {\n\t\ttt, _ = canonicalize(Deprecated|Macro, tt)\n\t\tif tag, err := tt.Maximize(); err == nil && tag.ScriptID != sc {\n\t\t\tsc, c = tag.ScriptID, Low\n\t\t}\n\t}\n\treturn Script{sc}, c\n}\n\n// Region returns the region for the language tag. If it was not explicitly given, it will\n// infer a most likely candidate from the context.\n// It uses a variant of CLDR's Add Likely Subtags algorithm. This is subject to change.\nfunc (t Tag) Region() (Region, Confidence) {\n\tif r := t.region(); r != 0 {\n\t\treturn Region{r}, Exact\n\t}\n\ttt := t.tag()\n\tif tt, err := tt.Maximize(); err == nil {\n\t\treturn Region{tt.RegionID}, Low // TODO: differentiate between high and low.\n\t}\n\ttt, _ = canonicalize(Deprecated|Macro, tt)\n\tif tag, err := tt.Maximize(); err == nil {\n\t\treturn Region{tag.RegionID}, Low\n\t}\n\treturn Region{_ZZ}, No // TODO: return world instead of undetermined?\n}\n\n// Variants returns the variants specified explicitly for this language tag.\n// or nil if no variant was specified.\nfunc (t Tag) Variants() []Variant {\n\tif !compact.Tag(t).MayHaveVariants() {\n\t\treturn nil\n\t}\n\tv := []Variant{}\n\tx, str := \"\", t.tag().Variants()\n\tfor str != \"\" {\n\t\tx, str = nextToken(str)\n\t\tv = append(v, Variant{x})\n\t}\n\treturn v\n}\n\n// Parent returns the CLDR parent of t. In CLDR, missing fields in data for a\n// specific language are substituted with fields from the parent language.\n// The parent for a language may change for newer versions of CLDR.\n//\n// Parent returns a tag for a less specific language that is mutually\n// intelligible or Und if there is no such language. This may not be the same as\n// simply stripping the last BCP 47 subtag. For instance, the parent of \"zh-TW\"\n// is \"zh-Hant\", and the parent of \"zh-Hant\" is \"und\".\nfunc (t Tag) Parent() Tag {\n\treturn Tag(compact.Tag(t).Parent())\n}\n\n// returns token t and the rest of the string.\nfunc nextToken(s string) (t, tail string) {\n\tp := strings.Index(s[1:], \"-\")\n\tif p == -1 {\n\t\treturn s[1:], \"\"\n\t}\n\tp++\n\treturn s[1:p], s[p:]\n}\n\n// Extension is a single BCP 47 extension.\ntype Extension struct {\n\ts string\n}\n\n// String returns the string representation of the extension, including the\n// type tag.\nfunc (e Extension) String() string {\n\treturn e.s\n}\n\n// ParseExtension parses s as an extension and returns it on success.\nfunc ParseExtension(s string) (e Extension, err error) {\n\text, err := language.ParseExtension(s)\n\treturn Extension{ext}, err\n}\n\n// Type returns the one-byte extension type of e. It returns 0 for the zero\n// exception.\nfunc (e Extension) Type() byte {\n\tif e.s == \"\" {\n\t\treturn 0\n\t}\n\treturn e.s[0]\n}\n\n// Tokens returns the list of tokens of e.\nfunc (e Extension) Tokens() []string {\n\treturn strings.Split(e.s, \"-\")\n}\n\n// Extension returns the extension of type x for tag t. It will return\n// false for ok if t does not have the requested extension. The returned\n// extension will be invalid in this case.\nfunc (t Tag) Extension(x byte) (ext Extension, ok bool) {\n\tif !compact.Tag(t).MayHaveExtensions() {\n\t\treturn Extension{}, false\n\t}\n\te, ok := t.tag().Extension(x)\n\treturn Extension{e}, ok\n}\n\n// Extensions returns all extensions of t.\nfunc (t Tag) Extensions() []Extension {\n\tif !compact.Tag(t).MayHaveExtensions() {\n\t\treturn nil\n\t}\n\te := []Extension{}\n\tfor _, ext := range t.tag().Extensions() {\n\t\te = append(e, Extension{ext})\n\t}\n\treturn e\n}\n\n// TypeForKey returns the type associated with the given key, where key and type\n// are of the allowed values defined for the Unicode locale extension ('u') in\n// https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.\n// TypeForKey will traverse the inheritance chain to get the correct value.\nfunc (t Tag) TypeForKey(key string) string {\n\tif !compact.Tag(t).MayHaveExtensions() {\n\t\tif key != \"rg\" && key != \"va\" {\n\t\t\treturn \"\"\n\t\t}\n\t}\n\treturn t.tag().TypeForKey(key)\n}\n\n// SetTypeForKey returns a new Tag with the key set to type, where key and type\n// are of the allowed values defined for the Unicode locale extension ('u') in\n// https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.\n// An empty value removes an existing pair with the same key.\nfunc (t Tag) SetTypeForKey(key, value string) (Tag, error) {\n\ttt, err := t.tag().SetTypeForKey(key, value)\n\treturn makeTag(tt), err\n}\n\n// NumCompactTags is the number of compact tags. The maximum tag is\n// NumCompactTags-1.\nconst NumCompactTags = compact.NumCompactTags\n\n// CompactIndex returns an index, where 0 <= index < NumCompactTags, for tags\n// for which data exists in the text repository.The index will change over time\n// and should not be stored in persistent storage. If t does not match a compact\n// index, exact will be false and the compact index will be returned for the\n// first match after repeatedly taking the Parent of t.\nfunc CompactIndex(t Tag) (index int, exact bool) {\n\tid, exact := compact.LanguageID(compact.Tag(t))\n\treturn int(id), exact\n}\n\nvar root = language.Tag{}\n\n// Base is an ISO 639 language code, used for encoding the base language\n// of a language tag.\ntype Base struct {\n\tlangID language.Language\n}\n\n// ParseBase parses a 2- or 3-letter ISO 639 code.\n// It returns a ValueError if s is a well-formed but unknown language identifier\n// or another error if another error occurred.\nfunc ParseBase(s string) (Base, error) {\n\tl, err := language.ParseBase(s)\n\treturn Base{l}, err\n}\n\n// String returns the BCP 47 representation of the base language.\nfunc (b Base) String() string {\n\treturn b.langID.String()\n}\n\n// ISO3 returns the ISO 639-3 language code.\nfunc (b Base) ISO3() string {\n\treturn b.langID.ISO3()\n}\n\n// IsPrivateUse reports whether this language code is reserved for private use.\nfunc (b Base) IsPrivateUse() bool {\n\treturn b.langID.IsPrivateUse()\n}\n\n// Script is a 4-letter ISO 15924 code for representing scripts.\n// It is idiomatically represented in title case.\ntype Script struct {\n\tscriptID language.Script\n}\n\n// ParseScript parses a 4-letter ISO 15924 code.\n// It returns a ValueError if s is a well-formed but unknown script identifier\n// or another error if another error occurred.\nfunc ParseScript(s string) (Script, error) {\n\tsc, err := language.ParseScript(s)\n\treturn Script{sc}, err\n}\n\n// String returns the script code in title case.\n// It returns \"Zzzz\" for an unspecified script.\nfunc (s Script) String() string {\n\treturn s.scriptID.String()\n}\n\n// IsPrivateUse reports whether this script code is reserved for private use.\nfunc (s Script) IsPrivateUse() bool {\n\treturn s.scriptID.IsPrivateUse()\n}\n\n// Region is an ISO 3166-1 or UN M.49 code for representing countries and regions.\ntype Region struct {\n\tregionID language.Region\n}\n\n// EncodeM49 returns the Region for the given UN M.49 code.\n// It returns an error if r is not a valid code.\nfunc EncodeM49(r int) (Region, error) {\n\trid, err := language.EncodeM49(r)\n\treturn Region{rid}, err\n}\n\n// ParseRegion parses a 2- or 3-letter ISO 3166-1 or a UN M.49 code.\n// It returns a ValueError if s is a well-formed but unknown region identifier\n// or another error if another error occurred.\nfunc ParseRegion(s string) (Region, error) {\n\tr, err := language.ParseRegion(s)\n\treturn Region{r}, err\n}\n\n// String returns the BCP 47 representation for the region.\n// It returns \"ZZ\" for an unspecified region.\nfunc (r Region) String() string {\n\treturn r.regionID.String()\n}\n\n// ISO3 returns the 3-letter ISO code of r.\n// Note that not all regions have a 3-letter ISO code.\n// In such cases this method returns \"ZZZ\".\nfunc (r Region) ISO3() string {\n\treturn r.regionID.ISO3()\n}\n\n// M49 returns the UN M.49 encoding of r, or 0 if this encoding\n// is not defined for r.\nfunc (r Region) M49() int {\n\treturn r.regionID.M49()\n}\n\n// IsPrivateUse reports whether r has the ISO 3166 User-assigned status. This\n// may include private-use tags that are assigned by CLDR and used in this\n// implementation. So IsPrivateUse and IsCountry can be simultaneously true.\nfunc (r Region) IsPrivateUse() bool {\n\treturn r.regionID.IsPrivateUse()\n}\n\n// IsCountry returns whether this region is a country or autonomous area. This\n// includes non-standard definitions from CLDR.\nfunc (r Region) IsCountry() bool {\n\treturn r.regionID.IsCountry()\n}\n\n// IsGroup returns whether this region defines a collection of regions. This\n// includes non-standard definitions from CLDR.\nfunc (r Region) IsGroup() bool {\n\treturn r.regionID.IsGroup()\n}\n\n// Contains returns whether Region c is contained by Region r. It returns true\n// if c == r.\nfunc (r Region) Contains(c Region) bool {\n\treturn r.regionID.Contains(c.regionID)\n}\n\n// TLD returns the country code top-level domain (ccTLD). UK is returned for GB.\n// In all other cases it returns either the region itself or an error.\n//\n// This method may return an error for a region for which there exists a\n// canonical form with a ccTLD. To get that ccTLD canonicalize r first. The\n// region will already be canonicalized it was obtained from a Tag that was\n// obtained using any of the default methods.\nfunc (r Region) TLD() (Region, error) {\n\ttld, err := r.regionID.TLD()\n\treturn Region{tld}, err\n}\n\n// Canonicalize returns the region or a possible replacement if the region is\n// deprecated. It will not return a replacement for deprecated regions that\n// are split into multiple regions.\nfunc (r Region) Canonicalize() Region {\n\treturn Region{r.regionID.Canonicalize()}\n}\n\n// Variant represents a registered variant of a language as defined by BCP 47.\ntype Variant struct {\n\tvariant string\n}\n\n// ParseVariant parses and returns a Variant. An error is returned if s is not\n// a valid variant.\nfunc ParseVariant(s string) (Variant, error) {\n\tv, err := language.ParseVariant(s)\n\treturn Variant{v.String()}, err\n}\n\n// String returns the string representation of the variant.\nfunc (v Variant) String() string {\n\treturn v.variant\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/language/match.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\nimport (\n\t\"errors\"\n\t\"strings\"\n\n\t\"golang.org/x/text/internal/language\"\n)\n\n// A MatchOption configures a Matcher.\ntype MatchOption func(*matcher)\n\n// PreferSameScript will, in the absence of a match, result in the first\n// preferred tag with the same script as a supported tag to match this supported\n// tag. The default is currently true, but this may change in the future.\nfunc PreferSameScript(preferSame bool) MatchOption {\n\treturn func(m *matcher) { m.preferSameScript = preferSame }\n}\n\n// TODO(v1.0.0): consider making Matcher a concrete type, instead of interface.\n// There doesn't seem to be too much need for multiple types.\n// Making it a concrete type allows MatchStrings to be a method, which will\n// improve its discoverability.\n\n// MatchStrings parses and matches the given strings until one of them matches\n// the language in the Matcher. A string may be an Accept-Language header as\n// handled by ParseAcceptLanguage. The default language is returned if no\n// other language matched.\nfunc MatchStrings(m Matcher, lang ...string) (tag Tag, index int) {\n\tfor _, accept := range lang {\n\t\tdesired, _, err := ParseAcceptLanguage(accept)\n\t\tif err != nil {\n\t\t\tcontinue\n\t\t}\n\t\tif tag, index, conf := m.Match(desired...); conf != No {\n\t\t\treturn tag, index\n\t\t}\n\t}\n\ttag, index, _ = m.Match()\n\treturn\n}\n\n// Matcher is the interface that wraps the Match method.\n//\n// Match returns the best match for any of the given tags, along with\n// a unique index associated with the returned tag and a confidence\n// score.\ntype Matcher interface {\n\tMatch(t ...Tag) (tag Tag, index int, c Confidence)\n}\n\n// Comprehends reports the confidence score for a speaker of a given language\n// to being able to comprehend the written form of an alternative language.\nfunc Comprehends(speaker, alternative Tag) Confidence {\n\t_, _, c := NewMatcher([]Tag{alternative}).Match(speaker)\n\treturn c\n}\n\n// NewMatcher returns a Matcher that matches an ordered list of preferred tags\n// against a list of supported tags based on written intelligibility, closeness\n// of dialect, equivalence of subtags and various other rules. It is initialized\n// with the list of supported tags. The first element is used as the default\n// value in case no match is found.\n//\n// Its Match method matches the first of the given Tags to reach a certain\n// confidence threshold. The tags passed to Match should therefore be specified\n// in order of preference. Extensions are ignored for matching.\n//\n// The index returned by the Match method corresponds to the index of the\n// matched tag in t, but is augmented with the Unicode extension ('u')of the\n// corresponding preferred tag. This allows user locale options to be passed\n// transparently.\nfunc NewMatcher(t []Tag, options ...MatchOption) Matcher {\n\treturn newMatcher(t, options)\n}\n\nfunc (m *matcher) Match(want ...Tag) (t Tag, index int, c Confidence) {\n\tvar tt language.Tag\n\tmatch, w, c := m.getBest(want...)\n\tif match != nil {\n\t\ttt, index = match.tag, match.index\n\t} else {\n\t\t// TODO: this should be an option\n\t\ttt = m.default_.tag\n\t\tif m.preferSameScript {\n\t\touter:\n\t\t\tfor _, w := range want {\n\t\t\t\tscript, _ := w.Script()\n\t\t\t\tif script.scriptID == 0 {\n\t\t\t\t\t// Don't do anything if there is no script, such as with\n\t\t\t\t\t// private subtags.\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tfor i, h := range m.supported {\n\t\t\t\t\tif script.scriptID == h.maxScript {\n\t\t\t\t\t\ttt, index = h.tag, i\n\t\t\t\t\t\tbreak outer\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t// TODO: select first language tag based on script.\n\t}\n\tif w.RegionID != tt.RegionID && w.RegionID != 0 {\n\t\tif w.RegionID != 0 && tt.RegionID != 0 && tt.RegionID.Contains(w.RegionID) {\n\t\t\ttt.RegionID = w.RegionID\n\t\t\ttt.RemakeString()\n\t\t} else if r := w.RegionID.String(); len(r) == 2 {\n\t\t\t// TODO: also filter macro and deprecated.\n\t\t\ttt, _ = tt.SetTypeForKey(\"rg\", strings.ToLower(r)+\"zzzz\")\n\t\t}\n\t}\n\t// Copy options from the user-provided tag into the result tag. This is hard\n\t// to do after the fact, so we do it here.\n\t// TODO: add in alternative variants to -u-va-.\n\t// TODO: add preferred region to -u-rg-.\n\tif e := w.Extensions(); len(e) > 0 {\n\t\tb := language.Builder{}\n\t\tb.SetTag(tt)\n\t\tfor _, e := range e {\n\t\t\tb.AddExt(e)\n\t\t}\n\t\ttt = b.Make()\n\t}\n\treturn makeTag(tt), index, c\n}\n\n// ErrMissingLikelyTagsData indicates no information was available\n// to compute likely values of missing tags.\nvar ErrMissingLikelyTagsData = errors.New(\"missing likely tags data\")\n\n// func (t *Tag) setTagsFrom(id Tag) {\n// \tt.LangID = id.LangID\n// \tt.ScriptID = id.ScriptID\n// \tt.RegionID = id.RegionID\n// }\n\n// Tag Matching\n// CLDR defines an algorithm for finding the best match between two sets of language\n// tags. The basic algorithm defines how to score a possible match and then find\n// the match with the best score\n// (see https://www.unicode.org/reports/tr35/#LanguageMatching).\n// Using scoring has several disadvantages. The scoring obfuscates the importance of\n// the various factors considered, making the algorithm harder to understand. Using\n// scoring also requires the full score to be computed for each pair of tags.\n//\n// We will use a different algorithm which aims to have the following properties:\n// - clarity on the precedence of the various selection factors, and\n// - improved performance by allowing early termination of a comparison.\n//\n// Matching algorithm (overview)\n// Input:\n//   - supported: a set of supported tags\n//   - default:   the default tag to return in case there is no match\n//   - desired:   list of desired tags, ordered by preference, starting with\n//                the most-preferred.\n//\n// Algorithm:\n//   1) Set the best match to the lowest confidence level\n//   2) For each tag in \"desired\":\n//     a) For each tag in \"supported\":\n//        1) compute the match between the two tags.\n//        2) if the match is better than the previous best match, replace it\n//           with the new match. (see next section)\n//     b) if the current best match is Exact and pin is true the result will be\n//        frozen to the language found thusfar, although better matches may\n//        still be found for the same language.\n//   3) If the best match so far is below a certain threshold, return \"default\".\n//\n// Ranking:\n// We use two phases to determine whether one pair of tags are a better match\n// than another pair of tags. First, we determine a rough confidence level. If the\n// levels are different, the one with the highest confidence wins.\n// Second, if the rough confidence levels are identical, we use a set of tie-breaker\n// rules.\n//\n// The confidence level of matching a pair of tags is determined by finding the\n// lowest confidence level of any matches of the corresponding subtags (the\n// result is deemed as good as its weakest link).\n// We define the following levels:\n//   Exact    - An exact match of a subtag, before adding likely subtags.\n//   MaxExact - An exact match of a subtag, after adding likely subtags.\n//              [See Note 2].\n//   High     - High level of mutual intelligibility between different subtag\n//              variants.\n//   Low      - Low level of mutual intelligibility between different subtag\n//              variants.\n//   No       - No mutual intelligibility.\n//\n// The following levels can occur for each type of subtag:\n//   Base:    Exact, MaxExact, High, Low, No\n//   Script:  Exact, MaxExact [see Note 3], Low, No\n//   Region:  Exact, MaxExact, High\n//   Variant: Exact, High\n//   Private: Exact, No\n//\n// Any result with a confidence level of Low or higher is deemed a possible match.\n// Once a desired tag matches any of the supported tags with a level of MaxExact\n// or higher, the next desired tag is not considered (see Step 2.b).\n// Note that CLDR provides languageMatching data that defines close equivalence\n// classes for base languages, scripts and regions.\n//\n// Tie-breaking\n// If we get the same confidence level for two matches, we apply a sequence of\n// tie-breaking rules. The first that succeeds defines the result. The rules are\n// applied in the following order.\n//   1) Original language was defined and was identical.\n//   2) Original region was defined and was identical.\n//   3) Distance between two maximized regions was the smallest.\n//   4) Original script was defined and was identical.\n//   5) Distance from want tag to have tag using the parent relation [see Note 5.]\n// If there is still no winner after these rules are applied, the first match\n// found wins.\n//\n// Notes:\n// [2] In practice, as matching of Exact is done in a separate phase from\n//     matching the other levels, we reuse the Exact level to mean MaxExact in\n//     the second phase. As a consequence, we only need the levels defined by\n//     the Confidence type. The MaxExact confidence level is mapped to High in\n//     the public API.\n// [3] We do not differentiate between maximized script values that were derived\n//     from suppressScript versus most likely tag data. We determined that in\n//     ranking the two, one ranks just after the other. Moreover, the two cannot\n//     occur concurrently. As a consequence, they are identical for practical\n//     purposes.\n// [4] In case of deprecated, macro-equivalents and legacy mappings, we assign\n//     the MaxExact level to allow iw vs he to still be a closer match than\n//     en-AU vs en-US, for example.\n// [5] In CLDR a locale inherits fields that are unspecified for this locale\n//     from its parent. Therefore, if a locale is a parent of another locale,\n//     it is a strong measure for closeness, especially when no other tie\n//     breaker rule applies. One could also argue it is inconsistent, for\n//     example, when pt-AO matches pt (which CLDR equates with pt-BR), even\n//     though its parent is pt-PT according to the inheritance rules.\n//\n// Implementation Details:\n// There are several performance considerations worth pointing out. Most notably,\n// we preprocess as much as possible (within reason) at the time of creation of a\n// matcher. This includes:\n//   - creating a per-language map, which includes data for the raw base language\n//     and its canonicalized variant (if applicable),\n//   - expanding entries for the equivalence classes defined in CLDR's\n//     languageMatch data.\n// The per-language map ensures that typically only a very small number of tags\n// need to be considered. The pre-expansion of canonicalized subtags and\n// equivalence classes reduces the amount of map lookups that need to be done at\n// runtime.\n\n// matcher keeps a set of supported language tags, indexed by language.\ntype matcher struct {\n\tdefault_         *haveTag\n\tsupported        []*haveTag\n\tindex            map[language.Language]*matchHeader\n\tpassSettings     bool\n\tpreferSameScript bool\n}\n\n// matchHeader has the lists of tags for exact matches and matches based on\n// maximized and canonicalized tags for a given language.\ntype matchHeader struct {\n\thaveTags []*haveTag\n\toriginal bool\n}\n\n// haveTag holds a supported Tag and its maximized script and region. The maximized\n// or canonicalized language is not stored as it is not needed during matching.\ntype haveTag struct {\n\ttag language.Tag\n\n\t// index of this tag in the original list of supported tags.\n\tindex int\n\n\t// conf is the maximum confidence that can result from matching this haveTag.\n\t// When conf < Exact this means it was inserted after applying a CLDR equivalence rule.\n\tconf Confidence\n\n\t// Maximized region and script.\n\tmaxRegion language.Region\n\tmaxScript language.Script\n\n\t// altScript may be checked as an alternative match to maxScript. If altScript\n\t// matches, the confidence level for this match is Low. Theoretically there\n\t// could be multiple alternative scripts. This does not occur in practice.\n\taltScript language.Script\n\n\t// nextMax is the index of the next haveTag with the same maximized tags.\n\tnextMax uint16\n}\n\nfunc makeHaveTag(tag language.Tag, index int) (haveTag, language.Language) {\n\tmax := tag\n\tif tag.LangID != 0 || tag.RegionID != 0 || tag.ScriptID != 0 {\n\t\tmax, _ = canonicalize(All, max)\n\t\tmax, _ = max.Maximize()\n\t\tmax.RemakeString()\n\t}\n\treturn haveTag{tag, index, Exact, max.RegionID, max.ScriptID, altScript(max.LangID, max.ScriptID), 0}, max.LangID\n}\n\n// altScript returns an alternative script that may match the given script with\n// a low confidence.  At the moment, the langMatch data allows for at most one\n// script to map to another and we rely on this to keep the code simple.\nfunc altScript(l language.Language, s language.Script) language.Script {\n\tfor _, alt := range matchScript {\n\t\t// TODO: also match cases where language is not the same.\n\t\tif (language.Language(alt.wantLang) == l || language.Language(alt.haveLang) == l) &&\n\t\t\tlanguage.Script(alt.haveScript) == s {\n\t\t\treturn language.Script(alt.wantScript)\n\t\t}\n\t}\n\treturn 0\n}\n\n// addIfNew adds a haveTag to the list of tags only if it is a unique tag.\n// Tags that have the same maximized values are linked by index.\nfunc (h *matchHeader) addIfNew(n haveTag, exact bool) {\n\th.original = h.original || exact\n\t// Don't add new exact matches.\n\tfor _, v := range h.haveTags {\n\t\tif equalsRest(v.tag, n.tag) {\n\t\t\treturn\n\t\t}\n\t}\n\t// Allow duplicate maximized tags, but create a linked list to allow quickly\n\t// comparing the equivalents and bail out.\n\tfor i, v := range h.haveTags {\n\t\tif v.maxScript == n.maxScript &&\n\t\t\tv.maxRegion == n.maxRegion &&\n\t\t\tv.tag.VariantOrPrivateUseTags() == n.tag.VariantOrPrivateUseTags() {\n\t\t\tfor h.haveTags[i].nextMax != 0 {\n\t\t\t\ti = int(h.haveTags[i].nextMax)\n\t\t\t}\n\t\t\th.haveTags[i].nextMax = uint16(len(h.haveTags))\n\t\t\tbreak\n\t\t}\n\t}\n\th.haveTags = append(h.haveTags, &n)\n}\n\n// header returns the matchHeader for the given language. It creates one if\n// it doesn't already exist.\nfunc (m *matcher) header(l language.Language) *matchHeader {\n\tif h := m.index[l]; h != nil {\n\t\treturn h\n\t}\n\th := &matchHeader{}\n\tm.index[l] = h\n\treturn h\n}\n\nfunc toConf(d uint8) Confidence {\n\tif d <= 10 {\n\t\treturn High\n\t}\n\tif d < 30 {\n\t\treturn Low\n\t}\n\treturn No\n}\n\n// newMatcher builds an index for the given supported tags and returns it as\n// a matcher. It also expands the index by considering various equivalence classes\n// for a given tag.\nfunc newMatcher(supported []Tag, options []MatchOption) *matcher {\n\tm := &matcher{\n\t\tindex:            make(map[language.Language]*matchHeader),\n\t\tpreferSameScript: true,\n\t}\n\tfor _, o := range options {\n\t\to(m)\n\t}\n\tif len(supported) == 0 {\n\t\tm.default_ = &haveTag{}\n\t\treturn m\n\t}\n\t// Add supported languages to the index. Add exact matches first to give\n\t// them precedence.\n\tfor i, tag := range supported {\n\t\ttt := tag.tag()\n\t\tpair, _ := makeHaveTag(tt, i)\n\t\tm.header(tt.LangID).addIfNew(pair, true)\n\t\tm.supported = append(m.supported, &pair)\n\t}\n\tm.default_ = m.header(supported[0].lang()).haveTags[0]\n\t// Keep these in two different loops to support the case that two equivalent\n\t// languages are distinguished, such as iw and he.\n\tfor i, tag := range supported {\n\t\ttt := tag.tag()\n\t\tpair, max := makeHaveTag(tt, i)\n\t\tif max != tt.LangID {\n\t\t\tm.header(max).addIfNew(pair, true)\n\t\t}\n\t}\n\n\t// update is used to add indexes in the map for equivalent languages.\n\t// update will only add entries to original indexes, thus not computing any\n\t// transitive relations.\n\tupdate := func(want, have uint16, conf Confidence) {\n\t\tif hh := m.index[language.Language(have)]; hh != nil {\n\t\t\tif !hh.original {\n\t\t\t\treturn\n\t\t\t}\n\t\t\thw := m.header(language.Language(want))\n\t\t\tfor _, ht := range hh.haveTags {\n\t\t\t\tv := *ht\n\t\t\t\tif conf < v.conf {\n\t\t\t\t\tv.conf = conf\n\t\t\t\t}\n\t\t\t\tv.nextMax = 0 // this value needs to be recomputed\n\t\t\t\tif v.altScript != 0 {\n\t\t\t\t\tv.altScript = altScript(language.Language(want), v.maxScript)\n\t\t\t\t}\n\t\t\t\thw.addIfNew(v, conf == Exact && hh.original)\n\t\t\t}\n\t\t}\n\t}\n\n\t// Add entries for languages with mutual intelligibility as defined by CLDR's\n\t// languageMatch data.\n\tfor _, ml := range matchLang {\n\t\tupdate(ml.want, ml.have, toConf(ml.distance))\n\t\tif !ml.oneway {\n\t\t\tupdate(ml.have, ml.want, toConf(ml.distance))\n\t\t}\n\t}\n\n\t// Add entries for possible canonicalizations. This is an optimization to\n\t// ensure that only one map lookup needs to be done at runtime per desired tag.\n\t// First we match deprecated equivalents. If they are perfect equivalents\n\t// (their canonicalization simply substitutes a different language code, but\n\t// nothing else), the match confidence is Exact, otherwise it is High.\n\tfor i, lm := range language.AliasMap {\n\t\t// If deprecated codes match and there is no fiddling with the script or\n\t\t// or region, we consider it an exact match.\n\t\tconf := Exact\n\t\tif language.AliasTypes[i] != language.Macro {\n\t\t\tif !isExactEquivalent(language.Language(lm.From)) {\n\t\t\t\tconf = High\n\t\t\t}\n\t\t\tupdate(lm.To, lm.From, conf)\n\t\t}\n\t\tupdate(lm.From, lm.To, conf)\n\t}\n\treturn m\n}\n\n// getBest gets the best matching tag in m for any of the given tags, taking into\n// account the order of preference of the given tags.\nfunc (m *matcher) getBest(want ...Tag) (got *haveTag, orig language.Tag, c Confidence) {\n\tbest := bestMatch{}\n\tfor i, ww := range want {\n\t\tw := ww.tag()\n\t\tvar max language.Tag\n\t\t// Check for exact match first.\n\t\th := m.index[w.LangID]\n\t\tif w.LangID != 0 {\n\t\t\tif h == nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t// Base language is defined.\n\t\t\tmax, _ = canonicalize(Legacy|Deprecated|Macro, w)\n\t\t\t// A region that is added through canonicalization is stronger than\n\t\t\t// a maximized region: set it in the original (e.g. mo -> ro-MD).\n\t\t\tif w.RegionID != max.RegionID {\n\t\t\t\tw.RegionID = max.RegionID\n\t\t\t}\n\t\t\t// TODO: should we do the same for scripts?\n\t\t\t// See test case: en, sr, nl ; sh ; sr\n\t\t\tmax, _ = max.Maximize()\n\t\t} else {\n\t\t\t// Base language is not defined.\n\t\t\tif h != nil {\n\t\t\t\tfor i := range h.haveTags {\n\t\t\t\t\thave := h.haveTags[i]\n\t\t\t\t\tif equalsRest(have.tag, w) {\n\t\t\t\t\t\treturn have, w, Exact\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif w.ScriptID == 0 && w.RegionID == 0 {\n\t\t\t\t// We skip all tags matching und for approximate matching, including\n\t\t\t\t// private tags.\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tmax, _ = w.Maximize()\n\t\t\tif h = m.index[max.LangID]; h == nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\t\tpin := true\n\t\tfor _, t := range want[i+1:] {\n\t\t\tif w.LangID == t.lang() {\n\t\t\t\tpin = false\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\t// Check for match based on maximized tag.\n\t\tfor i := range h.haveTags {\n\t\t\thave := h.haveTags[i]\n\t\t\tbest.update(have, w, max.ScriptID, max.RegionID, pin)\n\t\t\tif best.conf == Exact {\n\t\t\t\tfor have.nextMax != 0 {\n\t\t\t\t\thave = h.haveTags[have.nextMax]\n\t\t\t\t\tbest.update(have, w, max.ScriptID, max.RegionID, pin)\n\t\t\t\t}\n\t\t\t\treturn best.have, best.want, best.conf\n\t\t\t}\n\t\t}\n\t}\n\tif best.conf <= No {\n\t\tif len(want) != 0 {\n\t\t\treturn nil, want[0].tag(), No\n\t\t}\n\t\treturn nil, language.Tag{}, No\n\t}\n\treturn best.have, best.want, best.conf\n}\n\n// bestMatch accumulates the best match so far.\ntype bestMatch struct {\n\thave            *haveTag\n\twant            language.Tag\n\tconf            Confidence\n\tpinnedRegion    language.Region\n\tpinLanguage     bool\n\tsameRegionGroup bool\n\t// Cached results from applying tie-breaking rules.\n\torigLang     bool\n\torigReg      bool\n\tparadigmReg  bool\n\tregGroupDist uint8\n\torigScript   bool\n}\n\n// update updates the existing best match if the new pair is considered to be a\n// better match. To determine if the given pair is a better match, it first\n// computes the rough confidence level. If this surpasses the current match, it\n// will replace it and update the tie-breaker rule cache. If there is a tie, it\n// proceeds with applying a series of tie-breaker rules. If there is no\n// conclusive winner after applying the tie-breaker rules, it leaves the current\n// match as the preferred match.\n//\n// If pin is true and have and tag are a strong match, it will henceforth only\n// consider matches for this language. This corresponds to the nothing that most\n// users have a strong preference for the first defined language. A user can\n// still prefer a second language over a dialect of the preferred language by\n// explicitly specifying dialects, e.g. \"en, nl, en-GB\". In this case pin should\n// be false.\nfunc (m *bestMatch) update(have *haveTag, tag language.Tag, maxScript language.Script, maxRegion language.Region, pin bool) {\n\t// Bail if the maximum attainable confidence is below that of the current best match.\n\tc := have.conf\n\tif c < m.conf {\n\t\treturn\n\t}\n\t// Don't change the language once we already have found an exact match.\n\tif m.pinLanguage && tag.LangID != m.want.LangID {\n\t\treturn\n\t}\n\t// Pin the region group if we are comparing tags for the same language.\n\tif tag.LangID == m.want.LangID && m.sameRegionGroup {\n\t\t_, sameGroup := regionGroupDist(m.pinnedRegion, have.maxRegion, have.maxScript, m.want.LangID)\n\t\tif !sameGroup {\n\t\t\treturn\n\t\t}\n\t}\n\tif c == Exact && have.maxScript == maxScript {\n\t\t// If there is another language and then another entry of this language,\n\t\t// don't pin anything, otherwise pin the language.\n\t\tm.pinLanguage = pin\n\t}\n\tif equalsRest(have.tag, tag) {\n\t} else if have.maxScript != maxScript {\n\t\t// There is usually very little comprehension between different scripts.\n\t\t// In a few cases there may still be Low comprehension. This possibility\n\t\t// is pre-computed and stored in have.altScript.\n\t\tif Low < m.conf || have.altScript != maxScript {\n\t\t\treturn\n\t\t}\n\t\tc = Low\n\t} else if have.maxRegion != maxRegion {\n\t\tif High < c {\n\t\t\t// There is usually a small difference between languages across regions.\n\t\t\tc = High\n\t\t}\n\t}\n\n\t// We store the results of the computations of the tie-breaker rules along\n\t// with the best match. There is no need to do the checks once we determine\n\t// we have a winner, but we do still need to do the tie-breaker computations.\n\t// We use \"beaten\" to keep track if we still need to do the checks.\n\tbeaten := false // true if the new pair defeats the current one.\n\tif c != m.conf {\n\t\tif c < m.conf {\n\t\t\treturn\n\t\t}\n\t\tbeaten = true\n\t}\n\n\t// Tie-breaker rules:\n\t// We prefer if the pre-maximized language was specified and identical.\n\torigLang := have.tag.LangID == tag.LangID && tag.LangID != 0\n\tif !beaten && m.origLang != origLang {\n\t\tif m.origLang {\n\t\t\treturn\n\t\t}\n\t\tbeaten = true\n\t}\n\n\t// We prefer if the pre-maximized region was specified and identical.\n\torigReg := have.tag.RegionID == tag.RegionID && tag.RegionID != 0\n\tif !beaten && m.origReg != origReg {\n\t\tif m.origReg {\n\t\t\treturn\n\t\t}\n\t\tbeaten = true\n\t}\n\n\tregGroupDist, sameGroup := regionGroupDist(have.maxRegion, maxRegion, maxScript, tag.LangID)\n\tif !beaten && m.regGroupDist != regGroupDist {\n\t\tif regGroupDist > m.regGroupDist {\n\t\t\treturn\n\t\t}\n\t\tbeaten = true\n\t}\n\n\tparadigmReg := isParadigmLocale(tag.LangID, have.maxRegion)\n\tif !beaten && m.paradigmReg != paradigmReg {\n\t\tif !paradigmReg {\n\t\t\treturn\n\t\t}\n\t\tbeaten = true\n\t}\n\n\t// Next we prefer if the pre-maximized script was specified and identical.\n\torigScript := have.tag.ScriptID == tag.ScriptID && tag.ScriptID != 0\n\tif !beaten && m.origScript != origScript {\n\t\tif m.origScript {\n\t\t\treturn\n\t\t}\n\t\tbeaten = true\n\t}\n\n\t// Update m to the newly found best match.\n\tif beaten {\n\t\tm.have = have\n\t\tm.want = tag\n\t\tm.conf = c\n\t\tm.pinnedRegion = maxRegion\n\t\tm.sameRegionGroup = sameGroup\n\t\tm.origLang = origLang\n\t\tm.origReg = origReg\n\t\tm.paradigmReg = paradigmReg\n\t\tm.origScript = origScript\n\t\tm.regGroupDist = regGroupDist\n\t}\n}\n\nfunc isParadigmLocale(lang language.Language, r language.Region) bool {\n\tfor _, e := range paradigmLocales {\n\t\tif language.Language(e[0]) == lang && (r == language.Region(e[1]) || r == language.Region(e[2])) {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// regionGroupDist computes the distance between two regions based on their\n// CLDR grouping.\nfunc regionGroupDist(a, b language.Region, script language.Script, lang language.Language) (dist uint8, same bool) {\n\tconst defaultDistance = 4\n\n\taGroup := uint(regionToGroups[a]) << 1\n\tbGroup := uint(regionToGroups[b]) << 1\n\tfor _, ri := range matchRegion {\n\t\tif language.Language(ri.lang) == lang && (ri.script == 0 || language.Script(ri.script) == script) {\n\t\t\tgroup := uint(1 << (ri.group &^ 0x80))\n\t\t\tif 0x80&ri.group == 0 {\n\t\t\t\tif aGroup&bGroup&group != 0 { // Both regions are in the group.\n\t\t\t\t\treturn ri.distance, ri.distance == defaultDistance\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (aGroup|bGroup)&group == 0 { // Both regions are not in the group.\n\t\t\t\t\treturn ri.distance, ri.distance == defaultDistance\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn defaultDistance, true\n}\n\n// equalsRest compares everything except the language.\nfunc equalsRest(a, b language.Tag) bool {\n\t// TODO: don't include extensions in this comparison. To do this efficiently,\n\t// though, we should handle private tags separately.\n\treturn a.ScriptID == b.ScriptID && a.RegionID == b.RegionID && a.VariantOrPrivateUseTags() == b.VariantOrPrivateUseTags()\n}\n\n// isExactEquivalent returns true if canonicalizing the language will not alter\n// the script or region of a tag.\nfunc isExactEquivalent(l language.Language) bool {\n\tfor _, o := range notEquivalent {\n\t\tif o == l {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nvar notEquivalent []language.Language\n\nfunc init() {\n\t// Create a list of all languages for which canonicalization may alter the\n\t// script or region.\n\tfor _, lm := range language.AliasMap {\n\t\ttag := language.Tag{LangID: language.Language(lm.From)}\n\t\tif tag, _ = canonicalize(All, tag); tag.ScriptID != 0 || tag.RegionID != 0 {\n\t\t\tnotEquivalent = append(notEquivalent, language.Language(lm.From))\n\t\t}\n\t}\n\t// Maximize undefined regions of paradigm locales.\n\tfor i, v := range paradigmLocales {\n\t\tt := language.Tag{LangID: language.Language(v[0])}\n\t\tmax, _ := t.Maximize()\n\t\tif v[1] == 0 {\n\t\t\tparadigmLocales[i][1] = uint16(max.RegionID)\n\t\t}\n\t\tif v[2] == 0 {\n\t\t\tparadigmLocales[i][2] = uint16(max.RegionID)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/language/parse.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\nimport (\n\t\"errors\"\n\t\"strconv\"\n\t\"strings\"\n\n\t\"golang.org/x/text/internal/language\"\n)\n\n// ValueError is returned by any of the parsing functions when the\n// input is well-formed but the respective subtag is not recognized\n// as a valid value.\ntype ValueError interface {\n\terror\n\n\t// Subtag returns the subtag for which the error occurred.\n\tSubtag() string\n}\n\n// Parse parses the given BCP 47 string and returns a valid Tag. If parsing\n// failed it returns an error and any part of the tag that could be parsed.\n// If parsing succeeded but an unknown value was found, it returns\n// ValueError. The Tag returned in this case is just stripped of the unknown\n// value. All other values are preserved. It accepts tags in the BCP 47 format\n// and extensions to this standard defined in\n// https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.\n// The resulting tag is canonicalized using the default canonicalization type.\nfunc Parse(s string) (t Tag, err error) {\n\treturn Default.Parse(s)\n}\n\n// Parse parses the given BCP 47 string and returns a valid Tag. If parsing\n// failed it returns an error and any part of the tag that could be parsed.\n// If parsing succeeded but an unknown value was found, it returns\n// ValueError. The Tag returned in this case is just stripped of the unknown\n// value. All other values are preserved. It accepts tags in the BCP 47 format\n// and extensions to this standard defined in\n// https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.\n// The resulting tag is canonicalized using the canonicalization type c.\nfunc (c CanonType) Parse(s string) (t Tag, err error) {\n\ttt, err := language.Parse(s)\n\tif err != nil {\n\t\treturn makeTag(tt), err\n\t}\n\ttt, changed := canonicalize(c, tt)\n\tif changed {\n\t\ttt.RemakeString()\n\t}\n\treturn makeTag(tt), err\n}\n\n// Compose creates a Tag from individual parts, which may be of type Tag, Base,\n// Script, Region, Variant, []Variant, Extension, []Extension or error. If a\n// Base, Script or Region or slice of type Variant or Extension is passed more\n// than once, the latter will overwrite the former. Variants and Extensions are\n// accumulated, but if two extensions of the same type are passed, the latter\n// will replace the former. For -u extensions, though, the key-type pairs are\n// added, where later values overwrite older ones. A Tag overwrites all former\n// values and typically only makes sense as the first argument. The resulting\n// tag is returned after canonicalizing using the Default CanonType. If one or\n// more errors are encountered, one of the errors is returned.\nfunc Compose(part ...interface{}) (t Tag, err error) {\n\treturn Default.Compose(part...)\n}\n\n// Compose creates a Tag from individual parts, which may be of type Tag, Base,\n// Script, Region, Variant, []Variant, Extension, []Extension or error. If a\n// Base, Script or Region or slice of type Variant or Extension is passed more\n// than once, the latter will overwrite the former. Variants and Extensions are\n// accumulated, but if two extensions of the same type are passed, the latter\n// will replace the former. For -u extensions, though, the key-type pairs are\n// added, where later values overwrite older ones. A Tag overwrites all former\n// values and typically only makes sense as the first argument. The resulting\n// tag is returned after canonicalizing using CanonType c. If one or more errors\n// are encountered, one of the errors is returned.\nfunc (c CanonType) Compose(part ...interface{}) (t Tag, err error) {\n\tvar b language.Builder\n\tif err = update(&b, part...); err != nil {\n\t\treturn und, err\n\t}\n\tb.Tag, _ = canonicalize(c, b.Tag)\n\treturn makeTag(b.Make()), err\n}\n\nvar errInvalidArgument = errors.New(\"invalid Extension or Variant\")\n\nfunc update(b *language.Builder, part ...interface{}) (err error) {\n\tfor _, x := range part {\n\t\tswitch v := x.(type) {\n\t\tcase Tag:\n\t\t\tb.SetTag(v.tag())\n\t\tcase Base:\n\t\t\tb.Tag.LangID = v.langID\n\t\tcase Script:\n\t\t\tb.Tag.ScriptID = v.scriptID\n\t\tcase Region:\n\t\t\tb.Tag.RegionID = v.regionID\n\t\tcase Variant:\n\t\t\tif v.variant == \"\" {\n\t\t\t\terr = errInvalidArgument\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tb.AddVariant(v.variant)\n\t\tcase Extension:\n\t\t\tif v.s == \"\" {\n\t\t\t\terr = errInvalidArgument\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tb.SetExt(v.s)\n\t\tcase []Variant:\n\t\t\tb.ClearVariants()\n\t\t\tfor _, v := range v {\n\t\t\t\tb.AddVariant(v.variant)\n\t\t\t}\n\t\tcase []Extension:\n\t\t\tb.ClearExtensions()\n\t\t\tfor _, e := range v {\n\t\t\t\tb.SetExt(e.s)\n\t\t\t}\n\t\t// TODO: support parsing of raw strings based on morphology or just extensions?\n\t\tcase error:\n\t\t\tif v != nil {\n\t\t\t\terr = v\n\t\t\t}\n\t\t}\n\t}\n\treturn\n}\n\nvar errInvalidWeight = errors.New(\"ParseAcceptLanguage: invalid weight\")\n\n// ParseAcceptLanguage parses the contents of an Accept-Language header as\n// defined in http://www.ietf.org/rfc/rfc2616.txt and returns a list of Tags and\n// a list of corresponding quality weights. It is more permissive than RFC 2616\n// and may return non-nil slices even if the input is not valid.\n// The Tags will be sorted by highest weight first and then by first occurrence.\n// Tags with a weight of zero will be dropped. An error will be returned if the\n// input could not be parsed.\nfunc ParseAcceptLanguage(s string) (tag []Tag, q []float32, err error) {\n\tvar entry string\n\tfor s != \"\" {\n\t\tif entry, s = split(s, ','); entry == \"\" {\n\t\t\tcontinue\n\t\t}\n\n\t\tentry, weight := split(entry, ';')\n\n\t\t// Scan the language.\n\t\tt, err := Parse(entry)\n\t\tif err != nil {\n\t\t\tid, ok := acceptFallback[entry]\n\t\t\tif !ok {\n\t\t\t\treturn nil, nil, err\n\t\t\t}\n\t\t\tt = makeTag(language.Tag{LangID: id})\n\t\t}\n\n\t\t// Scan the optional weight.\n\t\tw := 1.0\n\t\tif weight != \"\" {\n\t\t\tweight = consume(weight, 'q')\n\t\t\tweight = consume(weight, '=')\n\t\t\t// consume returns the empty string when a token could not be\n\t\t\t// consumed, resulting in an error for ParseFloat.\n\t\t\tif w, err = strconv.ParseFloat(weight, 32); err != nil {\n\t\t\t\treturn nil, nil, errInvalidWeight\n\t\t\t}\n\t\t\t// Drop tags with a quality weight of 0.\n\t\t\tif w <= 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\ttag = append(tag, t)\n\t\tq = append(q, float32(w))\n\t}\n\tsortStable(&tagSort{tag, q})\n\treturn tag, q, nil\n}\n\n// consume removes a leading token c from s and returns the result or the empty\n// string if there is no such token.\nfunc consume(s string, c byte) string {\n\tif s == \"\" || s[0] != c {\n\t\treturn \"\"\n\t}\n\treturn strings.TrimSpace(s[1:])\n}\n\nfunc split(s string, c byte) (head, tail string) {\n\tif i := strings.IndexByte(s, c); i >= 0 {\n\t\treturn strings.TrimSpace(s[:i]), strings.TrimSpace(s[i+1:])\n\t}\n\treturn strings.TrimSpace(s), \"\"\n}\n\n// Add hack mapping to deal with a small number of cases that occur\n// in Accept-Language (with reasonable frequency).\nvar acceptFallback = map[string]language.Language{\n\t\"english\": _en,\n\t\"deutsch\": _de,\n\t\"italian\": _it,\n\t\"french\":  _fr,\n\t\"*\":       _mul, // defined in the spec to match all languages.\n}\n\ntype tagSort struct {\n\ttag []Tag\n\tq   []float32\n}\n\nfunc (s *tagSort) Len() int {\n\treturn len(s.q)\n}\n\nfunc (s *tagSort) Less(i, j int) bool {\n\treturn s.q[i] > s.q[j]\n}\n\nfunc (s *tagSort) Swap(i, j int) {\n\ts.tag[i], s.tag[j] = s.tag[j], s.tag[i]\n\ts.q[i], s.q[j] = s.q[j], s.q[i]\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/language/tables.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\npackage language\n\n// CLDRVersion is the CLDR version from which the tables in this package are derived.\nconst CLDRVersion = \"32\"\n\nconst (\n\t_de  = 269\n\t_en  = 313\n\t_fr  = 350\n\t_it  = 505\n\t_mo  = 784\n\t_no  = 879\n\t_nb  = 839\n\t_pt  = 960\n\t_sh  = 1031\n\t_mul = 806\n\t_und = 0\n)\nconst (\n\t_001 = 1\n\t_419 = 31\n\t_BR  = 65\n\t_CA  = 73\n\t_ES  = 110\n\t_GB  = 123\n\t_MD  = 188\n\t_PT  = 238\n\t_UK  = 306\n\t_US  = 309\n\t_ZZ  = 357\n\t_XA  = 323\n\t_XC  = 325\n\t_XK  = 333\n)\nconst (\n\t_Latn = 87\n\t_Hani = 54\n\t_Hans = 56\n\t_Hant = 57\n\t_Qaaa = 139\n\t_Qaai = 147\n\t_Qabx = 188\n\t_Zinh = 236\n\t_Zyyy = 241\n\t_Zzzz = 242\n)\n\nvar regionToGroups = []uint8{ // 357 elements\n\t// Entry 0 - 3F\n\t0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x04,\n\t0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00,\n\t0x00, 0x04, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00,\n\t0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x04,\n\t// Entry 40 - 7F\n\t0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x04, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x04, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n\t0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x08,\n\t0x00, 0x04, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00,\n\t// Entry 80 - BF\n\t0x00, 0x00, 0x04, 0x00, 0x00, 0x04, 0x00, 0x00,\n\t0x00, 0x04, 0x01, 0x00, 0x04, 0x02, 0x00, 0x04,\n\t0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,\n\t0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x08, 0x08, 0x00, 0x00, 0x00, 0x04, 0x00,\n\t// Entry C0 - FF\n\t0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01,\n\t0x04, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x04,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00,\n\t0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t// Entry 100 - 13F\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,\n\t0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x00, 0x04,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x04, 0x00,\n\t0x00, 0x04, 0x00, 0x04, 0x04, 0x05, 0x00, 0x00,\n\t// Entry 140 - 17F\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n\t0x00, 0x00, 0x00, 0x00, 0x00,\n} // Size: 381 bytes\n\nvar paradigmLocales = [][3]uint16{ // 3 elements\n\t0: [3]uint16{0x139, 0x0, 0x7b},\n\t1: [3]uint16{0x13e, 0x0, 0x1f},\n\t2: [3]uint16{0x3c0, 0x41, 0xee},\n} // Size: 42 bytes\n\ntype mutualIntelligibility struct {\n\twant     uint16\n\thave     uint16\n\tdistance uint8\n\toneway   bool\n}\ntype scriptIntelligibility struct {\n\twantLang   uint16\n\thaveLang   uint16\n\twantScript uint8\n\thaveScript uint8\n\tdistance   uint8\n}\ntype regionIntelligibility struct {\n\tlang     uint16\n\tscript   uint8\n\tgroup    uint8\n\tdistance uint8\n}\n\n// matchLang holds pairs of langIDs of base languages that are typically\n// mutually intelligible. Each pair is associated with a confidence and\n// whether the intelligibility goes one or both ways.\nvar matchLang = []mutualIntelligibility{ // 113 elements\n\t0:   {want: 0x1d1, have: 0xb7, distance: 0x4, oneway: false},\n\t1:   {want: 0x407, have: 0xb7, distance: 0x4, oneway: false},\n\t2:   {want: 0x407, have: 0x1d1, distance: 0x4, oneway: false},\n\t3:   {want: 0x407, have: 0x432, distance: 0x4, oneway: false},\n\t4:   {want: 0x43a, have: 0x1, distance: 0x4, oneway: false},\n\t5:   {want: 0x1a3, have: 0x10d, distance: 0x4, oneway: true},\n\t6:   {want: 0x295, have: 0x10d, distance: 0x4, oneway: true},\n\t7:   {want: 0x101, have: 0x36f, distance: 0x8, oneway: false},\n\t8:   {want: 0x101, have: 0x347, distance: 0x8, oneway: false},\n\t9:   {want: 0x5, have: 0x3e2, distance: 0xa, oneway: true},\n\t10:  {want: 0xd, have: 0x139, distance: 0xa, oneway: true},\n\t11:  {want: 0x16, have: 0x367, distance: 0xa, oneway: true},\n\t12:  {want: 0x21, have: 0x139, distance: 0xa, oneway: true},\n\t13:  {want: 0x56, have: 0x13e, distance: 0xa, oneway: true},\n\t14:  {want: 0x58, have: 0x3e2, distance: 0xa, oneway: true},\n\t15:  {want: 0x71, have: 0x3e2, distance: 0xa, oneway: true},\n\t16:  {want: 0x75, have: 0x139, distance: 0xa, oneway: true},\n\t17:  {want: 0x82, have: 0x1be, distance: 0xa, oneway: true},\n\t18:  {want: 0xa5, have: 0x139, distance: 0xa, oneway: true},\n\t19:  {want: 0xb2, have: 0x15e, distance: 0xa, oneway: true},\n\t20:  {want: 0xdd, have: 0x153, distance: 0xa, oneway: true},\n\t21:  {want: 0xe5, have: 0x139, distance: 0xa, oneway: true},\n\t22:  {want: 0xe9, have: 0x3a, distance: 0xa, oneway: true},\n\t23:  {want: 0xf0, have: 0x15e, distance: 0xa, oneway: true},\n\t24:  {want: 0xf9, have: 0x15e, distance: 0xa, oneway: true},\n\t25:  {want: 0x100, have: 0x139, distance: 0xa, oneway: true},\n\t26:  {want: 0x130, have: 0x139, distance: 0xa, oneway: true},\n\t27:  {want: 0x13c, have: 0x139, distance: 0xa, oneway: true},\n\t28:  {want: 0x140, have: 0x151, distance: 0xa, oneway: true},\n\t29:  {want: 0x145, have: 0x13e, distance: 0xa, oneway: true},\n\t30:  {want: 0x158, have: 0x101, distance: 0xa, oneway: true},\n\t31:  {want: 0x16d, have: 0x367, distance: 0xa, oneway: true},\n\t32:  {want: 0x16e, have: 0x139, distance: 0xa, oneway: true},\n\t33:  {want: 0x16f, have: 0x139, distance: 0xa, oneway: true},\n\t34:  {want: 0x17e, have: 0x139, distance: 0xa, oneway: true},\n\t35:  {want: 0x190, have: 0x13e, distance: 0xa, oneway: true},\n\t36:  {want: 0x194, have: 0x13e, distance: 0xa, oneway: true},\n\t37:  {want: 0x1a4, have: 0x1be, distance: 0xa, oneway: true},\n\t38:  {want: 0x1b4, have: 0x139, distance: 0xa, oneway: true},\n\t39:  {want: 0x1b8, have: 0x139, distance: 0xa, oneway: true},\n\t40:  {want: 0x1d4, have: 0x15e, distance: 0xa, oneway: true},\n\t41:  {want: 0x1d7, have: 0x3e2, distance: 0xa, oneway: true},\n\t42:  {want: 0x1d9, have: 0x139, distance: 0xa, oneway: true},\n\t43:  {want: 0x1e7, have: 0x139, distance: 0xa, oneway: true},\n\t44:  {want: 0x1f8, have: 0x139, distance: 0xa, oneway: true},\n\t45:  {want: 0x20e, have: 0x1e1, distance: 0xa, oneway: true},\n\t46:  {want: 0x210, have: 0x139, distance: 0xa, oneway: true},\n\t47:  {want: 0x22d, have: 0x15e, distance: 0xa, oneway: true},\n\t48:  {want: 0x242, have: 0x3e2, distance: 0xa, oneway: true},\n\t49:  {want: 0x24a, have: 0x139, distance: 0xa, oneway: true},\n\t50:  {want: 0x251, have: 0x139, distance: 0xa, oneway: true},\n\t51:  {want: 0x265, have: 0x139, distance: 0xa, oneway: true},\n\t52:  {want: 0x274, have: 0x48a, distance: 0xa, oneway: true},\n\t53:  {want: 0x28a, have: 0x3e2, distance: 0xa, oneway: true},\n\t54:  {want: 0x28e, have: 0x1f9, distance: 0xa, oneway: true},\n\t55:  {want: 0x2a3, have: 0x139, distance: 0xa, oneway: true},\n\t56:  {want: 0x2b5, have: 0x15e, distance: 0xa, oneway: true},\n\t57:  {want: 0x2b8, have: 0x139, distance: 0xa, oneway: true},\n\t58:  {want: 0x2be, have: 0x139, distance: 0xa, oneway: true},\n\t59:  {want: 0x2c3, have: 0x15e, distance: 0xa, oneway: true},\n\t60:  {want: 0x2ed, have: 0x139, distance: 0xa, oneway: true},\n\t61:  {want: 0x2f1, have: 0x15e, distance: 0xa, oneway: true},\n\t62:  {want: 0x2fa, have: 0x139, distance: 0xa, oneway: true},\n\t63:  {want: 0x2ff, have: 0x7e, distance: 0xa, oneway: true},\n\t64:  {want: 0x304, have: 0x139, distance: 0xa, oneway: true},\n\t65:  {want: 0x30b, have: 0x3e2, distance: 0xa, oneway: true},\n\t66:  {want: 0x31b, have: 0x1be, distance: 0xa, oneway: true},\n\t67:  {want: 0x31f, have: 0x1e1, distance: 0xa, oneway: true},\n\t68:  {want: 0x320, have: 0x139, distance: 0xa, oneway: true},\n\t69:  {want: 0x331, have: 0x139, distance: 0xa, oneway: true},\n\t70:  {want: 0x351, have: 0x139, distance: 0xa, oneway: true},\n\t71:  {want: 0x36a, have: 0x347, distance: 0xa, oneway: false},\n\t72:  {want: 0x36a, have: 0x36f, distance: 0xa, oneway: true},\n\t73:  {want: 0x37a, have: 0x139, distance: 0xa, oneway: true},\n\t74:  {want: 0x387, have: 0x139, distance: 0xa, oneway: true},\n\t75:  {want: 0x389, have: 0x139, distance: 0xa, oneway: true},\n\t76:  {want: 0x38b, have: 0x15e, distance: 0xa, oneway: true},\n\t77:  {want: 0x390, have: 0x139, distance: 0xa, oneway: true},\n\t78:  {want: 0x395, have: 0x139, distance: 0xa, oneway: true},\n\t79:  {want: 0x39d, have: 0x139, distance: 0xa, oneway: true},\n\t80:  {want: 0x3a5, have: 0x139, distance: 0xa, oneway: true},\n\t81:  {want: 0x3be, have: 0x139, distance: 0xa, oneway: true},\n\t82:  {want: 0x3c4, have: 0x13e, distance: 0xa, oneway: true},\n\t83:  {want: 0x3d4, have: 0x10d, distance: 0xa, oneway: true},\n\t84:  {want: 0x3d9, have: 0x139, distance: 0xa, oneway: true},\n\t85:  {want: 0x3e5, have: 0x15e, distance: 0xa, oneway: true},\n\t86:  {want: 0x3e9, have: 0x1be, distance: 0xa, oneway: true},\n\t87:  {want: 0x3fa, have: 0x139, distance: 0xa, oneway: true},\n\t88:  {want: 0x40c, have: 0x139, distance: 0xa, oneway: true},\n\t89:  {want: 0x423, have: 0x139, distance: 0xa, oneway: true},\n\t90:  {want: 0x429, have: 0x139, distance: 0xa, oneway: true},\n\t91:  {want: 0x431, have: 0x139, distance: 0xa, oneway: true},\n\t92:  {want: 0x43b, have: 0x139, distance: 0xa, oneway: true},\n\t93:  {want: 0x43e, have: 0x1e1, distance: 0xa, oneway: true},\n\t94:  {want: 0x445, have: 0x139, distance: 0xa, oneway: true},\n\t95:  {want: 0x450, have: 0x139, distance: 0xa, oneway: true},\n\t96:  {want: 0x461, have: 0x139, distance: 0xa, oneway: true},\n\t97:  {want: 0x467, have: 0x3e2, distance: 0xa, oneway: true},\n\t98:  {want: 0x46f, have: 0x139, distance: 0xa, oneway: true},\n\t99:  {want: 0x476, have: 0x3e2, distance: 0xa, oneway: true},\n\t100: {want: 0x3883, have: 0x139, distance: 0xa, oneway: true},\n\t101: {want: 0x480, have: 0x139, distance: 0xa, oneway: true},\n\t102: {want: 0x482, have: 0x139, distance: 0xa, oneway: true},\n\t103: {want: 0x494, have: 0x3e2, distance: 0xa, oneway: true},\n\t104: {want: 0x49d, have: 0x139, distance: 0xa, oneway: true},\n\t105: {want: 0x4ac, have: 0x529, distance: 0xa, oneway: true},\n\t106: {want: 0x4b4, have: 0x139, distance: 0xa, oneway: true},\n\t107: {want: 0x4bc, have: 0x3e2, distance: 0xa, oneway: true},\n\t108: {want: 0x4e5, have: 0x15e, distance: 0xa, oneway: true},\n\t109: {want: 0x4f2, have: 0x139, distance: 0xa, oneway: true},\n\t110: {want: 0x512, have: 0x139, distance: 0xa, oneway: true},\n\t111: {want: 0x518, have: 0x139, distance: 0xa, oneway: true},\n\t112: {want: 0x52f, have: 0x139, distance: 0xa, oneway: true},\n} // Size: 702 bytes\n\n// matchScript holds pairs of scriptIDs where readers of one script\n// can typically also read the other. Each is associated with a confidence.\nvar matchScript = []scriptIntelligibility{ // 26 elements\n\t0:  {wantLang: 0x432, haveLang: 0x432, wantScript: 0x57, haveScript: 0x1f, distance: 0x5},\n\t1:  {wantLang: 0x432, haveLang: 0x432, wantScript: 0x1f, haveScript: 0x57, distance: 0x5},\n\t2:  {wantLang: 0x58, haveLang: 0x3e2, wantScript: 0x57, haveScript: 0x1f, distance: 0xa},\n\t3:  {wantLang: 0xa5, haveLang: 0x139, wantScript: 0xe, haveScript: 0x57, distance: 0xa},\n\t4:  {wantLang: 0x1d7, haveLang: 0x3e2, wantScript: 0x8, haveScript: 0x1f, distance: 0xa},\n\t5:  {wantLang: 0x210, haveLang: 0x139, wantScript: 0x2b, haveScript: 0x57, distance: 0xa},\n\t6:  {wantLang: 0x24a, haveLang: 0x139, wantScript: 0x4b, haveScript: 0x57, distance: 0xa},\n\t7:  {wantLang: 0x251, haveLang: 0x139, wantScript: 0x4f, haveScript: 0x57, distance: 0xa},\n\t8:  {wantLang: 0x2b8, haveLang: 0x139, wantScript: 0x54, haveScript: 0x57, distance: 0xa},\n\t9:  {wantLang: 0x304, haveLang: 0x139, wantScript: 0x6b, haveScript: 0x57, distance: 0xa},\n\t10: {wantLang: 0x331, haveLang: 0x139, wantScript: 0x72, haveScript: 0x57, distance: 0xa},\n\t11: {wantLang: 0x351, haveLang: 0x139, wantScript: 0x21, haveScript: 0x57, distance: 0xa},\n\t12: {wantLang: 0x395, haveLang: 0x139, wantScript: 0x7d, haveScript: 0x57, distance: 0xa},\n\t13: {wantLang: 0x39d, haveLang: 0x139, wantScript: 0x33, haveScript: 0x57, distance: 0xa},\n\t14: {wantLang: 0x3be, haveLang: 0x139, wantScript: 0x5, haveScript: 0x57, distance: 0xa},\n\t15: {wantLang: 0x3fa, haveLang: 0x139, wantScript: 0x5, haveScript: 0x57, distance: 0xa},\n\t16: {wantLang: 0x40c, haveLang: 0x139, wantScript: 0xca, haveScript: 0x57, distance: 0xa},\n\t17: {wantLang: 0x450, haveLang: 0x139, wantScript: 0xd7, haveScript: 0x57, distance: 0xa},\n\t18: {wantLang: 0x461, haveLang: 0x139, wantScript: 0xda, haveScript: 0x57, distance: 0xa},\n\t19: {wantLang: 0x46f, haveLang: 0x139, wantScript: 0x29, haveScript: 0x57, distance: 0xa},\n\t20: {wantLang: 0x476, haveLang: 0x3e2, wantScript: 0x57, haveScript: 0x1f, distance: 0xa},\n\t21: {wantLang: 0x4b4, haveLang: 0x139, wantScript: 0x5, haveScript: 0x57, distance: 0xa},\n\t22: {wantLang: 0x4bc, haveLang: 0x3e2, wantScript: 0x57, haveScript: 0x1f, distance: 0xa},\n\t23: {wantLang: 0x512, haveLang: 0x139, wantScript: 0x3b, haveScript: 0x57, distance: 0xa},\n\t24: {wantLang: 0x529, haveLang: 0x529, wantScript: 0x38, haveScript: 0x39, distance: 0xf},\n\t25: {wantLang: 0x529, haveLang: 0x529, wantScript: 0x39, haveScript: 0x38, distance: 0x13},\n} // Size: 232 bytes\n\nvar matchRegion = []regionIntelligibility{ // 15 elements\n\t0:  {lang: 0x3a, script: 0x0, group: 0x4, distance: 0x4},\n\t1:  {lang: 0x3a, script: 0x0, group: 0x84, distance: 0x4},\n\t2:  {lang: 0x139, script: 0x0, group: 0x1, distance: 0x4},\n\t3:  {lang: 0x139, script: 0x0, group: 0x81, distance: 0x4},\n\t4:  {lang: 0x13e, script: 0x0, group: 0x3, distance: 0x4},\n\t5:  {lang: 0x13e, script: 0x0, group: 0x83, distance: 0x4},\n\t6:  {lang: 0x3c0, script: 0x0, group: 0x3, distance: 0x4},\n\t7:  {lang: 0x3c0, script: 0x0, group: 0x83, distance: 0x4},\n\t8:  {lang: 0x529, script: 0x39, group: 0x2, distance: 0x4},\n\t9:  {lang: 0x529, script: 0x39, group: 0x82, distance: 0x4},\n\t10: {lang: 0x3a, script: 0x0, group: 0x80, distance: 0x5},\n\t11: {lang: 0x139, script: 0x0, group: 0x80, distance: 0x5},\n\t12: {lang: 0x13e, script: 0x0, group: 0x80, distance: 0x5},\n\t13: {lang: 0x3c0, script: 0x0, group: 0x80, distance: 0x5},\n\t14: {lang: 0x529, script: 0x39, group: 0x80, distance: 0x5},\n} // Size: 114 bytes\n\n// Total table size 1471 bytes (1KiB); checksum: 4CB1CD46\n"
  },
  {
    "path": "vendor/golang.org/x/text/language/tags.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage language\n\nimport \"golang.org/x/text/internal/language/compact\"\n\n// TODO: Various sets of commonly use tags and regions.\n\n// MustParse is like Parse, but panics if the given BCP 47 tag cannot be parsed.\n// It simplifies safe initialization of Tag values.\nfunc MustParse(s string) Tag {\n\tt, err := Parse(s)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn t\n}\n\n// MustParse is like Parse, but panics if the given BCP 47 tag cannot be parsed.\n// It simplifies safe initialization of Tag values.\nfunc (c CanonType) MustParse(s string) Tag {\n\tt, err := c.Parse(s)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn t\n}\n\n// MustParseBase is like ParseBase, but panics if the given base cannot be parsed.\n// It simplifies safe initialization of Base values.\nfunc MustParseBase(s string) Base {\n\tb, err := ParseBase(s)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn b\n}\n\n// MustParseScript is like ParseScript, but panics if the given script cannot be\n// parsed. It simplifies safe initialization of Script values.\nfunc MustParseScript(s string) Script {\n\tscr, err := ParseScript(s)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn scr\n}\n\n// MustParseRegion is like ParseRegion, but panics if the given region cannot be\n// parsed. It simplifies safe initialization of Region values.\nfunc MustParseRegion(s string) Region {\n\tr, err := ParseRegion(s)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn r\n}\n\nvar (\n\tund = Tag{}\n\n\tUnd Tag = Tag{}\n\n\tAfrikaans            Tag = Tag(compact.Afrikaans)\n\tAmharic              Tag = Tag(compact.Amharic)\n\tArabic               Tag = Tag(compact.Arabic)\n\tModernStandardArabic Tag = Tag(compact.ModernStandardArabic)\n\tAzerbaijani          Tag = Tag(compact.Azerbaijani)\n\tBulgarian            Tag = Tag(compact.Bulgarian)\n\tBengali              Tag = Tag(compact.Bengali)\n\tCatalan              Tag = Tag(compact.Catalan)\n\tCzech                Tag = Tag(compact.Czech)\n\tDanish               Tag = Tag(compact.Danish)\n\tGerman               Tag = Tag(compact.German)\n\tGreek                Tag = Tag(compact.Greek)\n\tEnglish              Tag = Tag(compact.English)\n\tAmericanEnglish      Tag = Tag(compact.AmericanEnglish)\n\tBritishEnglish       Tag = Tag(compact.BritishEnglish)\n\tSpanish              Tag = Tag(compact.Spanish)\n\tEuropeanSpanish      Tag = Tag(compact.EuropeanSpanish)\n\tLatinAmericanSpanish Tag = Tag(compact.LatinAmericanSpanish)\n\tEstonian             Tag = Tag(compact.Estonian)\n\tPersian              Tag = Tag(compact.Persian)\n\tFinnish              Tag = Tag(compact.Finnish)\n\tFilipino             Tag = Tag(compact.Filipino)\n\tFrench               Tag = Tag(compact.French)\n\tCanadianFrench       Tag = Tag(compact.CanadianFrench)\n\tGujarati             Tag = Tag(compact.Gujarati)\n\tHebrew               Tag = Tag(compact.Hebrew)\n\tHindi                Tag = Tag(compact.Hindi)\n\tCroatian             Tag = Tag(compact.Croatian)\n\tHungarian            Tag = Tag(compact.Hungarian)\n\tArmenian             Tag = Tag(compact.Armenian)\n\tIndonesian           Tag = Tag(compact.Indonesian)\n\tIcelandic            Tag = Tag(compact.Icelandic)\n\tItalian              Tag = Tag(compact.Italian)\n\tJapanese             Tag = Tag(compact.Japanese)\n\tGeorgian             Tag = Tag(compact.Georgian)\n\tKazakh               Tag = Tag(compact.Kazakh)\n\tKhmer                Tag = Tag(compact.Khmer)\n\tKannada              Tag = Tag(compact.Kannada)\n\tKorean               Tag = Tag(compact.Korean)\n\tKirghiz              Tag = Tag(compact.Kirghiz)\n\tLao                  Tag = Tag(compact.Lao)\n\tLithuanian           Tag = Tag(compact.Lithuanian)\n\tLatvian              Tag = Tag(compact.Latvian)\n\tMacedonian           Tag = Tag(compact.Macedonian)\n\tMalayalam            Tag = Tag(compact.Malayalam)\n\tMongolian            Tag = Tag(compact.Mongolian)\n\tMarathi              Tag = Tag(compact.Marathi)\n\tMalay                Tag = Tag(compact.Malay)\n\tBurmese              Tag = Tag(compact.Burmese)\n\tNepali               Tag = Tag(compact.Nepali)\n\tDutch                Tag = Tag(compact.Dutch)\n\tNorwegian            Tag = Tag(compact.Norwegian)\n\tPunjabi              Tag = Tag(compact.Punjabi)\n\tPolish               Tag = Tag(compact.Polish)\n\tPortuguese           Tag = Tag(compact.Portuguese)\n\tBrazilianPortuguese  Tag = Tag(compact.BrazilianPortuguese)\n\tEuropeanPortuguese   Tag = Tag(compact.EuropeanPortuguese)\n\tRomanian             Tag = Tag(compact.Romanian)\n\tRussian              Tag = Tag(compact.Russian)\n\tSinhala              Tag = Tag(compact.Sinhala)\n\tSlovak               Tag = Tag(compact.Slovak)\n\tSlovenian            Tag = Tag(compact.Slovenian)\n\tAlbanian             Tag = Tag(compact.Albanian)\n\tSerbian              Tag = Tag(compact.Serbian)\n\tSerbianLatin         Tag = Tag(compact.SerbianLatin)\n\tSwedish              Tag = Tag(compact.Swedish)\n\tSwahili              Tag = Tag(compact.Swahili)\n\tTamil                Tag = Tag(compact.Tamil)\n\tTelugu               Tag = Tag(compact.Telugu)\n\tThai                 Tag = Tag(compact.Thai)\n\tTurkish              Tag = Tag(compact.Turkish)\n\tUkrainian            Tag = Tag(compact.Ukrainian)\n\tUrdu                 Tag = Tag(compact.Urdu)\n\tUzbek                Tag = Tag(compact.Uzbek)\n\tVietnamese           Tag = Tag(compact.Vietnamese)\n\tChinese              Tag = Tag(compact.Chinese)\n\tSimplifiedChinese    Tag = Tag(compact.SimplifiedChinese)\n\tTraditionalChinese   Tag = Tag(compact.TraditionalChinese)\n\tZulu                 Tag = Tag(compact.Zulu)\n)\n"
  },
  {
    "path": "vendor/golang.org/x/text/runes/cond.go",
    "content": "// Copyright 2015 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage runes\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/transform\"\n)\n\n// Note: below we pass invalid UTF-8 to the tIn and tNotIn transformers as is.\n// This is done for various reasons:\n// - To retain the semantics of the Nop transformer: if input is passed to a Nop\n//   one would expect it to be unchanged.\n// - It would be very expensive to pass a converted RuneError to a transformer:\n//   a transformer might need more source bytes after RuneError, meaning that\n//   the only way to pass it safely is to create a new buffer and manage the\n//   intermingling of RuneErrors and normal input.\n// - Many transformers leave ill-formed UTF-8 as is, so this is not\n//   inconsistent. Generally ill-formed UTF-8 is only replaced if it is a\n//   logical consequence of the operation (as for Map) or if it otherwise would\n//   pose security concerns (as for Remove).\n// - An alternative would be to return an error on ill-formed UTF-8, but this\n//   would be inconsistent with other operations.\n\n// If returns a transformer that applies tIn to consecutive runes for which\n// s.Contains(r) and tNotIn to consecutive runes for which !s.Contains(r). Reset\n// is called on tIn and tNotIn at the start of each run. A Nop transformer will\n// substitute a nil value passed to tIn or tNotIn. Invalid UTF-8 is translated\n// to RuneError to determine which transformer to apply, but is passed as is to\n// the respective transformer.\nfunc If(s Set, tIn, tNotIn transform.Transformer) Transformer {\n\tif tIn == nil && tNotIn == nil {\n\t\treturn Transformer{transform.Nop}\n\t}\n\tif tIn == nil {\n\t\ttIn = transform.Nop\n\t}\n\tif tNotIn == nil {\n\t\ttNotIn = transform.Nop\n\t}\n\tsIn, ok := tIn.(transform.SpanningTransformer)\n\tif !ok {\n\t\tsIn = dummySpan{tIn}\n\t}\n\tsNotIn, ok := tNotIn.(transform.SpanningTransformer)\n\tif !ok {\n\t\tsNotIn = dummySpan{tNotIn}\n\t}\n\n\ta := &cond{\n\t\ttIn:    sIn,\n\t\ttNotIn: sNotIn,\n\t\tf:      s.Contains,\n\t}\n\ta.Reset()\n\treturn Transformer{a}\n}\n\ntype dummySpan struct{ transform.Transformer }\n\nfunc (d dummySpan) Span(src []byte, atEOF bool) (n int, err error) {\n\treturn 0, transform.ErrEndOfSpan\n}\n\ntype cond struct {\n\ttIn, tNotIn transform.SpanningTransformer\n\tf           func(rune) bool\n\tcheck       func(rune) bool               // current check to perform\n\tt           transform.SpanningTransformer // current transformer to use\n}\n\n// Reset implements transform.Transformer.\nfunc (t *cond) Reset() {\n\tt.check = t.is\n\tt.t = t.tIn\n\tt.t.Reset() // notIn will be reset on first usage.\n}\n\nfunc (t *cond) is(r rune) bool {\n\tif t.f(r) {\n\t\treturn true\n\t}\n\tt.check = t.isNot\n\tt.t = t.tNotIn\n\tt.tNotIn.Reset()\n\treturn false\n}\n\nfunc (t *cond) isNot(r rune) bool {\n\tif !t.f(r) {\n\t\treturn true\n\t}\n\tt.check = t.is\n\tt.t = t.tIn\n\tt.tIn.Reset()\n\treturn false\n}\n\n// This implementation of Span doesn't help all too much, but it needs to be\n// there to satisfy this package's Transformer interface.\n// TODO: there are certainly room for improvements, though. For example, if\n// t.t == transform.Nop (which will a common occurrence) it will save a bundle\n// to special-case that loop.\nfunc (t *cond) Span(src []byte, atEOF bool) (n int, err error) {\n\tp := 0\n\tfor n < len(src) && err == nil {\n\t\t// Don't process too much at a time as the Spanner that will be\n\t\t// called on this block may terminate early.\n\t\tconst maxChunk = 4096\n\t\tmax := len(src)\n\t\tif v := n + maxChunk; v < max {\n\t\t\tmax = v\n\t\t}\n\t\tatEnd := false\n\t\tsize := 0\n\t\tcurrent := t.t\n\t\tfor ; p < max; p += size {\n\t\t\tr := rune(src[p])\n\t\t\tif r < utf8.RuneSelf {\n\t\t\t\tsize = 1\n\t\t\t} else if r, size = utf8.DecodeRune(src[p:]); size == 1 {\n\t\t\t\tif !atEOF && !utf8.FullRune(src[p:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !t.check(r) {\n\t\t\t\t// The next rune will be the start of a new run.\n\t\t\t\tatEnd = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tn2, err2 := current.Span(src[n:p], atEnd || (atEOF && p == len(src)))\n\t\tn += n2\n\t\tif err2 != nil {\n\t\t\treturn n, err2\n\t\t}\n\t\t// At this point either err != nil or t.check will pass for the rune at p.\n\t\tp = n + size\n\t}\n\treturn n, err\n}\n\nfunc (t *cond) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tp := 0\n\tfor nSrc < len(src) && err == nil {\n\t\t// Don't process too much at a time, as the work might be wasted if the\n\t\t// destination buffer isn't large enough to hold the result or a\n\t\t// transform returns an error early.\n\t\tconst maxChunk = 4096\n\t\tmax := len(src)\n\t\tif n := nSrc + maxChunk; n < len(src) {\n\t\t\tmax = n\n\t\t}\n\t\tatEnd := false\n\t\tsize := 0\n\t\tcurrent := t.t\n\t\tfor ; p < max; p += size {\n\t\t\tr := rune(src[p])\n\t\t\tif r < utf8.RuneSelf {\n\t\t\t\tsize = 1\n\t\t\t} else if r, size = utf8.DecodeRune(src[p:]); size == 1 {\n\t\t\t\tif !atEOF && !utf8.FullRune(src[p:]) {\n\t\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !t.check(r) {\n\t\t\t\t// The next rune will be the start of a new run.\n\t\t\t\tatEnd = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tnDst2, nSrc2, err2 := current.Transform(dst[nDst:], src[nSrc:p], atEnd || (atEOF && p == len(src)))\n\t\tnDst += nDst2\n\t\tnSrc += nSrc2\n\t\tif err2 != nil {\n\t\t\treturn nDst, nSrc, err2\n\t\t}\n\t\t// At this point either err != nil or t.check will pass for the rune at p.\n\t\tp = nSrc + size\n\t}\n\treturn nDst, nSrc, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/runes/runes.go",
    "content": "// Copyright 2014 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package runes provide transforms for UTF-8 encoded text.\npackage runes // import \"golang.org/x/text/runes\"\n\nimport (\n\t\"unicode\"\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/transform\"\n)\n\n// A Set is a collection of runes.\ntype Set interface {\n\t// Contains returns true if r is contained in the set.\n\tContains(r rune) bool\n}\n\ntype setFunc func(rune) bool\n\nfunc (s setFunc) Contains(r rune) bool {\n\treturn s(r)\n}\n\n// Note: using funcs here instead of wrapping types result in cleaner\n// documentation and a smaller API.\n\n// In creates a Set with a Contains method that returns true for all runes in\n// the given RangeTable.\nfunc In(rt *unicode.RangeTable) Set {\n\treturn setFunc(func(r rune) bool { return unicode.Is(rt, r) })\n}\n\n// In creates a Set with a Contains method that returns true for all runes not\n// in the given RangeTable.\nfunc NotIn(rt *unicode.RangeTable) Set {\n\treturn setFunc(func(r rune) bool { return !unicode.Is(rt, r) })\n}\n\n// Predicate creates a Set with a Contains method that returns f(r).\nfunc Predicate(f func(rune) bool) Set {\n\treturn setFunc(f)\n}\n\n// Transformer implements the transform.Transformer interface.\ntype Transformer struct {\n\tt transform.SpanningTransformer\n}\n\nfunc (t Transformer) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\treturn t.t.Transform(dst, src, atEOF)\n}\n\nfunc (t Transformer) Span(b []byte, atEOF bool) (n int, err error) {\n\treturn t.t.Span(b, atEOF)\n}\n\nfunc (t Transformer) Reset() { t.t.Reset() }\n\n// Bytes returns a new byte slice with the result of converting b using t.  It\n// calls Reset on t. It returns nil if any error was found. This can only happen\n// if an error-producing Transformer is passed to If.\nfunc (t Transformer) Bytes(b []byte) []byte {\n\tb, _, err := transform.Bytes(t, b)\n\tif err != nil {\n\t\treturn nil\n\t}\n\treturn b\n}\n\n// String returns a string with the result of converting s using t. It calls\n// Reset on t. It returns the empty string if any error was found. This can only\n// happen if an error-producing Transformer is passed to If.\nfunc (t Transformer) String(s string) string {\n\ts, _, err := transform.String(t, s)\n\tif err != nil {\n\t\treturn \"\"\n\t}\n\treturn s\n}\n\n// TODO:\n// - Copy: copying strings and bytes in whole-rune units.\n// - Validation (maybe)\n// - Well-formed-ness (maybe)\n\nconst runeErrorString = string(utf8.RuneError)\n\n// Remove returns a Transformer that removes runes r for which s.Contains(r).\n// Illegal input bytes are replaced by RuneError before being passed to f.\nfunc Remove(s Set) Transformer {\n\tif f, ok := s.(setFunc); ok {\n\t\t// This little trick cuts the running time of BenchmarkRemove for sets\n\t\t// created by Predicate roughly in half.\n\t\t// TODO: special-case RangeTables as well.\n\t\treturn Transformer{remove(f)}\n\t}\n\treturn Transformer{remove(s.Contains)}\n}\n\n// TODO: remove transform.RemoveFunc.\n\ntype remove func(r rune) bool\n\nfunc (remove) Reset() {}\n\n// Span implements transform.Spanner.\nfunc (t remove) Span(src []byte, atEOF bool) (n int, err error) {\n\tfor r, size := rune(0), 0; n < len(src); {\n\t\tif r = rune(src[n]); r < utf8.RuneSelf {\n\t\t\tsize = 1\n\t\t} else if r, size = utf8.DecodeRune(src[n:]); size == 1 {\n\t\t\t// Invalid rune.\n\t\t\tif !atEOF && !utf8.FullRune(src[n:]) {\n\t\t\t\terr = transform.ErrShortSrc\n\t\t\t} else {\n\t\t\t\terr = transform.ErrEndOfSpan\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\tif t(r) {\n\t\t\terr = transform.ErrEndOfSpan\n\t\t\tbreak\n\t\t}\n\t\tn += size\n\t}\n\treturn\n}\n\n// Transform implements transform.Transformer.\nfunc (t remove) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tfor r, size := rune(0), 0; nSrc < len(src); {\n\t\tif r = rune(src[nSrc]); r < utf8.RuneSelf {\n\t\t\tsize = 1\n\t\t} else if r, size = utf8.DecodeRune(src[nSrc:]); size == 1 {\n\t\t\t// Invalid rune.\n\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// We replace illegal bytes with RuneError. Not doing so might\n\t\t\t// otherwise turn a sequence of invalid UTF-8 into valid UTF-8.\n\t\t\t// The resulting byte sequence may subsequently contain runes\n\t\t\t// for which t(r) is true that were passed unnoticed.\n\t\t\tif !t(utf8.RuneError) {\n\t\t\t\tif nDst+3 > len(dst) {\n\t\t\t\t\terr = transform.ErrShortDst\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdst[nDst+0] = runeErrorString[0]\n\t\t\t\tdst[nDst+1] = runeErrorString[1]\n\t\t\t\tdst[nDst+2] = runeErrorString[2]\n\t\t\t\tnDst += 3\n\t\t\t}\n\t\t\tnSrc++\n\t\t\tcontinue\n\t\t}\n\t\tif t(r) {\n\t\t\tnSrc += size\n\t\t\tcontinue\n\t\t}\n\t\tif nDst+size > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tfor i := 0; i < size; i++ {\n\t\t\tdst[nDst] = src[nSrc]\n\t\t\tnDst++\n\t\t\tnSrc++\n\t\t}\n\t}\n\treturn\n}\n\n// Map returns a Transformer that maps the runes in the input using the given\n// mapping. Illegal bytes in the input are converted to utf8.RuneError before\n// being passed to the mapping func.\nfunc Map(mapping func(rune) rune) Transformer {\n\treturn Transformer{mapper(mapping)}\n}\n\ntype mapper func(rune) rune\n\nfunc (mapper) Reset() {}\n\n// Span implements transform.Spanner.\nfunc (t mapper) Span(src []byte, atEOF bool) (n int, err error) {\n\tfor r, size := rune(0), 0; n < len(src); n += size {\n\t\tif r = rune(src[n]); r < utf8.RuneSelf {\n\t\t\tsize = 1\n\t\t} else if r, size = utf8.DecodeRune(src[n:]); size == 1 {\n\t\t\t// Invalid rune.\n\t\t\tif !atEOF && !utf8.FullRune(src[n:]) {\n\t\t\t\terr = transform.ErrShortSrc\n\t\t\t} else {\n\t\t\t\terr = transform.ErrEndOfSpan\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\tif t(r) != r {\n\t\t\terr = transform.ErrEndOfSpan\n\t\t\tbreak\n\t\t}\n\t}\n\treturn n, err\n}\n\n// Transform implements transform.Transformer.\nfunc (t mapper) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tvar replacement rune\n\tvar b [utf8.UTFMax]byte\n\n\tfor r, size := rune(0), 0; nSrc < len(src); {\n\t\tif r = rune(src[nSrc]); r < utf8.RuneSelf {\n\t\t\tif replacement = t(r); replacement < utf8.RuneSelf {\n\t\t\t\tif nDst == len(dst) {\n\t\t\t\t\terr = transform.ErrShortDst\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdst[nDst] = byte(replacement)\n\t\t\t\tnDst++\n\t\t\t\tnSrc++\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tsize = 1\n\t\t} else if r, size = utf8.DecodeRune(src[nSrc:]); size == 1 {\n\t\t\t// Invalid rune.\n\t\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\t\terr = transform.ErrShortSrc\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif replacement = t(utf8.RuneError); replacement == utf8.RuneError {\n\t\t\t\tif nDst+3 > len(dst) {\n\t\t\t\t\terr = transform.ErrShortDst\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdst[nDst+0] = runeErrorString[0]\n\t\t\t\tdst[nDst+1] = runeErrorString[1]\n\t\t\t\tdst[nDst+2] = runeErrorString[2]\n\t\t\t\tnDst += 3\n\t\t\t\tnSrc++\n\t\t\t\tcontinue\n\t\t\t}\n\t\t} else if replacement = t(r); replacement == r {\n\t\t\tif nDst+size > len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tfor i := 0; i < size; i++ {\n\t\t\t\tdst[nDst] = src[nSrc]\n\t\t\t\tnDst++\n\t\t\t\tnSrc++\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tn := utf8.EncodeRune(b[:], replacement)\n\n\t\tif nDst+n > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tfor i := 0; i < n; i++ {\n\t\t\tdst[nDst] = b[i]\n\t\t\tnDst++\n\t\t}\n\t\tnSrc += size\n\t}\n\treturn\n}\n\n// ReplaceIllFormed returns a transformer that replaces all input bytes that are\n// not part of a well-formed UTF-8 code sequence with utf8.RuneError.\nfunc ReplaceIllFormed() Transformer {\n\treturn Transformer{&replaceIllFormed{}}\n}\n\ntype replaceIllFormed struct{ transform.NopResetter }\n\nfunc (t replaceIllFormed) Span(src []byte, atEOF bool) (n int, err error) {\n\tfor n < len(src) {\n\t\t// ASCII fast path.\n\t\tif src[n] < utf8.RuneSelf {\n\t\t\tn++\n\t\t\tcontinue\n\t\t}\n\n\t\tr, size := utf8.DecodeRune(src[n:])\n\n\t\t// Look for a valid non-ASCII rune.\n\t\tif r != utf8.RuneError || size != 1 {\n\t\t\tn += size\n\t\t\tcontinue\n\t\t}\n\n\t\t// Look for short source data.\n\t\tif !atEOF && !utf8.FullRune(src[n:]) {\n\t\t\terr = transform.ErrShortSrc\n\t\t\tbreak\n\t\t}\n\n\t\t// We have an invalid rune.\n\t\terr = transform.ErrEndOfSpan\n\t\tbreak\n\t}\n\treturn n, err\n}\n\nfunc (t replaceIllFormed) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tfor nSrc < len(src) {\n\t\t// ASCII fast path.\n\t\tif r := src[nSrc]; r < utf8.RuneSelf {\n\t\t\tif nDst == len(dst) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdst[nDst] = r\n\t\t\tnDst++\n\t\t\tnSrc++\n\t\t\tcontinue\n\t\t}\n\n\t\t// Look for a valid non-ASCII rune.\n\t\tif _, size := utf8.DecodeRune(src[nSrc:]); size != 1 {\n\t\t\tif size != copy(dst[nDst:], src[nSrc:nSrc+size]) {\n\t\t\t\terr = transform.ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tnDst += size\n\t\t\tnSrc += size\n\t\t\tcontinue\n\t\t}\n\n\t\t// Look for short source data.\n\t\tif !atEOF && !utf8.FullRune(src[nSrc:]) {\n\t\t\terr = transform.ErrShortSrc\n\t\t\tbreak\n\t\t}\n\n\t\t// We have an invalid rune.\n\t\tif nDst+3 > len(dst) {\n\t\t\terr = transform.ErrShortDst\n\t\t\tbreak\n\t\t}\n\t\tdst[nDst+0] = runeErrorString[0]\n\t\tdst[nDst+1] = runeErrorString[1]\n\t\tdst[nDst+2] = runeErrorString[2]\n\t\tnDst += 3\n\t\tnSrc++\n\t}\n\treturn nDst, nSrc, err\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/transform/transform.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package transform provides reader and writer wrappers that transform the\n// bytes passing through as well as various transformations. Example\n// transformations provided by other packages include normalization and\n// conversion between character sets.\npackage transform // import \"golang.org/x/text/transform\"\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"io\"\n\t\"unicode/utf8\"\n)\n\nvar (\n\t// ErrShortDst means that the destination buffer was too short to\n\t// receive all of the transformed bytes.\n\tErrShortDst = errors.New(\"transform: short destination buffer\")\n\n\t// ErrShortSrc means that the source buffer has insufficient data to\n\t// complete the transformation.\n\tErrShortSrc = errors.New(\"transform: short source buffer\")\n\n\t// ErrEndOfSpan means that the input and output (the transformed input)\n\t// are not identical.\n\tErrEndOfSpan = errors.New(\"transform: input and output are not identical\")\n\n\t// errInconsistentByteCount means that Transform returned success (nil\n\t// error) but also returned nSrc inconsistent with the src argument.\n\terrInconsistentByteCount = errors.New(\"transform: inconsistent byte count returned\")\n\n\t// errShortInternal means that an internal buffer is not large enough\n\t// to make progress and the Transform operation must be aborted.\n\terrShortInternal = errors.New(\"transform: short internal buffer\")\n)\n\n// Transformer transforms bytes.\ntype Transformer interface {\n\t// Transform writes to dst the transformed bytes read from src, and\n\t// returns the number of dst bytes written and src bytes read. The\n\t// atEOF argument tells whether src represents the last bytes of the\n\t// input.\n\t//\n\t// Callers should always process the nDst bytes produced and account\n\t// for the nSrc bytes consumed before considering the error err.\n\t//\n\t// A nil error means that all of the transformed bytes (whether freshly\n\t// transformed from src or left over from previous Transform calls)\n\t// were written to dst. A nil error can be returned regardless of\n\t// whether atEOF is true. If err is nil then nSrc must equal len(src);\n\t// the converse is not necessarily true.\n\t//\n\t// ErrShortDst means that dst was too short to receive all of the\n\t// transformed bytes. ErrShortSrc means that src had insufficient data\n\t// to complete the transformation. If both conditions apply, then\n\t// either error may be returned. Other than the error conditions listed\n\t// here, implementations are free to report other errors that arise.\n\tTransform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error)\n\n\t// Reset resets the state and allows a Transformer to be reused.\n\tReset()\n}\n\n// SpanningTransformer extends the Transformer interface with a Span method\n// that determines how much of the input already conforms to the Transformer.\ntype SpanningTransformer interface {\n\tTransformer\n\n\t// Span returns a position in src such that transforming src[:n] results in\n\t// identical output src[:n] for these bytes. It does not necessarily return\n\t// the largest such n. The atEOF argument tells whether src represents the\n\t// last bytes of the input.\n\t//\n\t// Callers should always account for the n bytes consumed before\n\t// considering the error err.\n\t//\n\t// A nil error means that all input bytes are known to be identical to the\n\t// output produced by the Transformer. A nil error can be returned\n\t// regardless of whether atEOF is true. If err is nil, then n must\n\t// equal len(src); the converse is not necessarily true.\n\t//\n\t// ErrEndOfSpan means that the Transformer output may differ from the\n\t// input after n bytes. Note that n may be len(src), meaning that the output\n\t// would contain additional bytes after otherwise identical output.\n\t// ErrShortSrc means that src had insufficient data to determine whether the\n\t// remaining bytes would change. Other than the error conditions listed\n\t// here, implementations are free to report other errors that arise.\n\t//\n\t// Calling Span can modify the Transformer state as a side effect. In\n\t// effect, it does the transformation just as calling Transform would, only\n\t// without copying to a destination buffer and only up to a point it can\n\t// determine the input and output bytes are the same. This is obviously more\n\t// limited than calling Transform, but can be more efficient in terms of\n\t// copying and allocating buffers. Calls to Span and Transform may be\n\t// interleaved.\n\tSpan(src []byte, atEOF bool) (n int, err error)\n}\n\n// NopResetter can be embedded by implementations of Transformer to add a nop\n// Reset method.\ntype NopResetter struct{}\n\n// Reset implements the Reset method of the Transformer interface.\nfunc (NopResetter) Reset() {}\n\n// Reader wraps another io.Reader by transforming the bytes read.\ntype Reader struct {\n\tr   io.Reader\n\tt   Transformer\n\terr error\n\n\t// dst[dst0:dst1] contains bytes that have been transformed by t but\n\t// not yet copied out via Read.\n\tdst        []byte\n\tdst0, dst1 int\n\n\t// src[src0:src1] contains bytes that have been read from r but not\n\t// yet transformed through t.\n\tsrc        []byte\n\tsrc0, src1 int\n\n\t// transformComplete is whether the transformation is complete,\n\t// regardless of whether or not it was successful.\n\ttransformComplete bool\n}\n\nconst defaultBufSize = 4096\n\n// NewReader returns a new Reader that wraps r by transforming the bytes read\n// via t. It calls Reset on t.\nfunc NewReader(r io.Reader, t Transformer) *Reader {\n\tt.Reset()\n\treturn &Reader{\n\t\tr:   r,\n\t\tt:   t,\n\t\tdst: make([]byte, defaultBufSize),\n\t\tsrc: make([]byte, defaultBufSize),\n\t}\n}\n\n// Read implements the io.Reader interface.\nfunc (r *Reader) Read(p []byte) (int, error) {\n\tn, err := 0, error(nil)\n\tfor {\n\t\t// Copy out any transformed bytes and return the final error if we are done.\n\t\tif r.dst0 != r.dst1 {\n\t\t\tn = copy(p, r.dst[r.dst0:r.dst1])\n\t\t\tr.dst0 += n\n\t\t\tif r.dst0 == r.dst1 && r.transformComplete {\n\t\t\t\treturn n, r.err\n\t\t\t}\n\t\t\treturn n, nil\n\t\t} else if r.transformComplete {\n\t\t\treturn 0, r.err\n\t\t}\n\n\t\t// Try to transform some source bytes, or to flush the transformer if we\n\t\t// are out of source bytes. We do this even if r.r.Read returned an error.\n\t\t// As the io.Reader documentation says, \"process the n > 0 bytes returned\n\t\t// before considering the error\".\n\t\tif r.src0 != r.src1 || r.err != nil {\n\t\t\tr.dst0 = 0\n\t\t\tr.dst1, n, err = r.t.Transform(r.dst, r.src[r.src0:r.src1], r.err == io.EOF)\n\t\t\tr.src0 += n\n\n\t\t\tswitch {\n\t\t\tcase err == nil:\n\t\t\t\tif r.src0 != r.src1 {\n\t\t\t\t\tr.err = errInconsistentByteCount\n\t\t\t\t}\n\t\t\t\t// The Transform call was successful; we are complete if we\n\t\t\t\t// cannot read more bytes into src.\n\t\t\t\tr.transformComplete = r.err != nil\n\t\t\t\tcontinue\n\t\t\tcase err == ErrShortDst && (r.dst1 != 0 || n != 0):\n\t\t\t\t// Make room in dst by copying out, and try again.\n\t\t\t\tcontinue\n\t\t\tcase err == ErrShortSrc && r.src1-r.src0 != len(r.src) && r.err == nil:\n\t\t\t\t// Read more bytes into src via the code below, and try again.\n\t\t\tdefault:\n\t\t\t\tr.transformComplete = true\n\t\t\t\t// The reader error (r.err) takes precedence over the\n\t\t\t\t// transformer error (err) unless r.err is nil or io.EOF.\n\t\t\t\tif r.err == nil || r.err == io.EOF {\n\t\t\t\t\tr.err = err\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\t// Move any untransformed source bytes to the start of the buffer\n\t\t// and read more bytes.\n\t\tif r.src0 != 0 {\n\t\t\tr.src0, r.src1 = 0, copy(r.src, r.src[r.src0:r.src1])\n\t\t}\n\t\tn, r.err = r.r.Read(r.src[r.src1:])\n\t\tr.src1 += n\n\t}\n}\n\n// TODO: implement ReadByte (and ReadRune??).\n\n// Writer wraps another io.Writer by transforming the bytes read.\n// The user needs to call Close to flush unwritten bytes that may\n// be buffered.\ntype Writer struct {\n\tw   io.Writer\n\tt   Transformer\n\tdst []byte\n\n\t// src[:n] contains bytes that have not yet passed through t.\n\tsrc []byte\n\tn   int\n}\n\n// NewWriter returns a new Writer that wraps w by transforming the bytes written\n// via t. It calls Reset on t.\nfunc NewWriter(w io.Writer, t Transformer) *Writer {\n\tt.Reset()\n\treturn &Writer{\n\t\tw:   w,\n\t\tt:   t,\n\t\tdst: make([]byte, defaultBufSize),\n\t\tsrc: make([]byte, defaultBufSize),\n\t}\n}\n\n// Write implements the io.Writer interface. If there are not enough\n// bytes available to complete a Transform, the bytes will be buffered\n// for the next write. Call Close to convert the remaining bytes.\nfunc (w *Writer) Write(data []byte) (n int, err error) {\n\tsrc := data\n\tif w.n > 0 {\n\t\t// Append bytes from data to the last remainder.\n\t\t// TODO: limit the amount copied on first try.\n\t\tn = copy(w.src[w.n:], data)\n\t\tw.n += n\n\t\tsrc = w.src[:w.n]\n\t}\n\tfor {\n\t\tnDst, nSrc, err := w.t.Transform(w.dst, src, false)\n\t\tif _, werr := w.w.Write(w.dst[:nDst]); werr != nil {\n\t\t\treturn n, werr\n\t\t}\n\t\tsrc = src[nSrc:]\n\t\tif w.n == 0 {\n\t\t\tn += nSrc\n\t\t} else if len(src) <= n {\n\t\t\t// Enough bytes from w.src have been consumed. We make src point\n\t\t\t// to data instead to reduce the copying.\n\t\t\tw.n = 0\n\t\t\tn -= len(src)\n\t\t\tsrc = data[n:]\n\t\t\tif n < len(data) && (err == nil || err == ErrShortSrc) {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\t\tswitch err {\n\t\tcase ErrShortDst:\n\t\t\t// This error is okay as long as we are making progress.\n\t\t\tif nDst > 0 || nSrc > 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\tcase ErrShortSrc:\n\t\t\tif len(src) < len(w.src) {\n\t\t\t\tm := copy(w.src, src)\n\t\t\t\t// If w.n > 0, bytes from data were already copied to w.src and n\n\t\t\t\t// was already set to the number of bytes consumed.\n\t\t\t\tif w.n == 0 {\n\t\t\t\t\tn += m\n\t\t\t\t}\n\t\t\t\tw.n = m\n\t\t\t\terr = nil\n\t\t\t} else if nDst > 0 || nSrc > 0 {\n\t\t\t\t// Not enough buffer to store the remainder. Keep processing as\n\t\t\t\t// long as there is progress. Without this case, transforms that\n\t\t\t\t// require a lookahead larger than the buffer may result in an\n\t\t\t\t// error. This is not something one may expect to be common in\n\t\t\t\t// practice, but it may occur when buffers are set to small\n\t\t\t\t// sizes during testing.\n\t\t\t\tcontinue\n\t\t\t}\n\t\tcase nil:\n\t\t\tif w.n > 0 {\n\t\t\t\terr = errInconsistentByteCount\n\t\t\t}\n\t\t}\n\t\treturn n, err\n\t}\n}\n\n// Close implements the io.Closer interface.\nfunc (w *Writer) Close() error {\n\tsrc := w.src[:w.n]\n\tfor {\n\t\tnDst, nSrc, err := w.t.Transform(w.dst, src, true)\n\t\tif _, werr := w.w.Write(w.dst[:nDst]); werr != nil {\n\t\t\treturn werr\n\t\t}\n\t\tif err != ErrShortDst {\n\t\t\treturn err\n\t\t}\n\t\tsrc = src[nSrc:]\n\t}\n}\n\ntype nop struct{ NopResetter }\n\nfunc (nop) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tn := copy(dst, src)\n\tif n < len(src) {\n\t\terr = ErrShortDst\n\t}\n\treturn n, n, err\n}\n\nfunc (nop) Span(src []byte, atEOF bool) (n int, err error) {\n\treturn len(src), nil\n}\n\ntype discard struct{ NopResetter }\n\nfunc (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\treturn 0, len(src), nil\n}\n\nvar (\n\t// Discard is a Transformer for which all Transform calls succeed\n\t// by consuming all bytes and writing nothing.\n\tDiscard Transformer = discard{}\n\n\t// Nop is a SpanningTransformer that copies src to dst.\n\tNop SpanningTransformer = nop{}\n)\n\n// chain is a sequence of links. A chain with N Transformers has N+1 links and\n// N+1 buffers. Of those N+1 buffers, the first and last are the src and dst\n// buffers given to chain.Transform and the middle N-1 buffers are intermediate\n// buffers owned by the chain. The i'th link transforms bytes from the i'th\n// buffer chain.link[i].b at read offset chain.link[i].p to the i+1'th buffer\n// chain.link[i+1].b at write offset chain.link[i+1].n, for i in [0, N).\ntype chain struct {\n\tlink []link\n\terr  error\n\t// errStart is the index at which the error occurred plus 1. Processing\n\t// errStart at this level at the next call to Transform. As long as\n\t// errStart > 0, chain will not consume any more source bytes.\n\terrStart int\n}\n\nfunc (c *chain) fatalError(errIndex int, err error) {\n\tif i := errIndex + 1; i > c.errStart {\n\t\tc.errStart = i\n\t\tc.err = err\n\t}\n}\n\ntype link struct {\n\tt Transformer\n\t// b[p:n] holds the bytes to be transformed by t.\n\tb []byte\n\tp int\n\tn int\n}\n\nfunc (l *link) src() []byte {\n\treturn l.b[l.p:l.n]\n}\n\nfunc (l *link) dst() []byte {\n\treturn l.b[l.n:]\n}\n\n// Chain returns a Transformer that applies t in sequence.\nfunc Chain(t ...Transformer) Transformer {\n\tif len(t) == 0 {\n\t\treturn nop{}\n\t}\n\tc := &chain{link: make([]link, len(t)+1)}\n\tfor i, tt := range t {\n\t\tc.link[i].t = tt\n\t}\n\t// Allocate intermediate buffers.\n\tb := make([][defaultBufSize]byte, len(t)-1)\n\tfor i := range b {\n\t\tc.link[i+1].b = b[i][:]\n\t}\n\treturn c\n}\n\n// Reset resets the state of Chain. It calls Reset on all the Transformers.\nfunc (c *chain) Reset() {\n\tfor i, l := range c.link {\n\t\tif l.t != nil {\n\t\t\tl.t.Reset()\n\t\t}\n\t\tc.link[i].p, c.link[i].n = 0, 0\n\t}\n}\n\n// TODO: make chain use Span (is going to be fun to implement!)\n\n// Transform applies the transformers of c in sequence.\nfunc (c *chain) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\t// Set up src and dst in the chain.\n\tsrcL := &c.link[0]\n\tdstL := &c.link[len(c.link)-1]\n\tsrcL.b, srcL.p, srcL.n = src, 0, len(src)\n\tdstL.b, dstL.n = dst, 0\n\tvar lastFull, needProgress bool // for detecting progress\n\n\t// i is the index of the next Transformer to apply, for i in [low, high].\n\t// low is the lowest index for which c.link[low] may still produce bytes.\n\t// high is the highest index for which c.link[high] has a Transformer.\n\t// The error returned by Transform determines whether to increase or\n\t// decrease i. We try to completely fill a buffer before converting it.\n\tfor low, i, high := c.errStart, c.errStart, len(c.link)-2; low <= i && i <= high; {\n\t\tin, out := &c.link[i], &c.link[i+1]\n\t\tnDst, nSrc, err0 := in.t.Transform(out.dst(), in.src(), atEOF && low == i)\n\t\tout.n += nDst\n\t\tin.p += nSrc\n\t\tif i > 0 && in.p == in.n {\n\t\t\tin.p, in.n = 0, 0\n\t\t}\n\t\tneedProgress, lastFull = lastFull, false\n\t\tswitch err0 {\n\t\tcase ErrShortDst:\n\t\t\t// Process the destination buffer next. Return if we are already\n\t\t\t// at the high index.\n\t\t\tif i == high {\n\t\t\t\treturn dstL.n, srcL.p, ErrShortDst\n\t\t\t}\n\t\t\tif out.n != 0 {\n\t\t\t\ti++\n\t\t\t\t// If the Transformer at the next index is not able to process any\n\t\t\t\t// source bytes there is nothing that can be done to make progress\n\t\t\t\t// and the bytes will remain unprocessed. lastFull is used to\n\t\t\t\t// detect this and break out of the loop with a fatal error.\n\t\t\t\tlastFull = true\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t// The destination buffer was too small, but is completely empty.\n\t\t\t// Return a fatal error as this transformation can never complete.\n\t\t\tc.fatalError(i, errShortInternal)\n\t\tcase ErrShortSrc:\n\t\t\tif i == 0 {\n\t\t\t\t// Save ErrShortSrc in err. All other errors take precedence.\n\t\t\t\terr = ErrShortSrc\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Source bytes were depleted before filling up the destination buffer.\n\t\t\t// Verify we made some progress, move the remaining bytes to the errStart\n\t\t\t// and try to get more source bytes.\n\t\t\tif needProgress && nSrc == 0 || in.n-in.p == len(in.b) {\n\t\t\t\t// There were not enough source bytes to proceed while the source\n\t\t\t\t// buffer cannot hold any more bytes. Return a fatal error as this\n\t\t\t\t// transformation can never complete.\n\t\t\t\tc.fatalError(i, errShortInternal)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// in.b is an internal buffer and we can make progress.\n\t\t\tin.p, in.n = 0, copy(in.b, in.src())\n\t\t\tfallthrough\n\t\tcase nil:\n\t\t\t// if i == low, we have depleted the bytes at index i or any lower levels.\n\t\t\t// In that case we increase low and i. In all other cases we decrease i to\n\t\t\t// fetch more bytes before proceeding to the next index.\n\t\t\tif i > low {\n\t\t\t\ti--\n\t\t\t\tcontinue\n\t\t\t}\n\t\tdefault:\n\t\t\tc.fatalError(i, err0)\n\t\t}\n\t\t// Exhausted level low or fatal error: increase low and continue\n\t\t// to process the bytes accepted so far.\n\t\ti++\n\t\tlow = i\n\t}\n\n\t// If c.errStart > 0, this means we found a fatal error.  We will clear\n\t// all upstream buffers. At this point, no more progress can be made\n\t// downstream, as Transform would have bailed while handling ErrShortDst.\n\tif c.errStart > 0 {\n\t\tfor i := 1; i < c.errStart; i++ {\n\t\t\tc.link[i].p, c.link[i].n = 0, 0\n\t\t}\n\t\terr, c.errStart, c.err = c.err, 0, nil\n\t}\n\treturn dstL.n, srcL.p, err\n}\n\n// Deprecated: Use runes.Remove instead.\nfunc RemoveFunc(f func(r rune) bool) Transformer {\n\treturn removeF(f)\n}\n\ntype removeF func(r rune) bool\n\nfunc (removeF) Reset() {}\n\n// Transform implements the Transformer interface.\nfunc (t removeF) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\tfor r, sz := rune(0), 0; len(src) > 0; src = src[sz:] {\n\n\t\tif r = rune(src[0]); r < utf8.RuneSelf {\n\t\t\tsz = 1\n\t\t} else {\n\t\t\tr, sz = utf8.DecodeRune(src)\n\n\t\t\tif sz == 1 {\n\t\t\t\t// Invalid rune.\n\t\t\t\tif !atEOF && !utf8.FullRune(src) {\n\t\t\t\t\terr = ErrShortSrc\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\t// We replace illegal bytes with RuneError. Not doing so might\n\t\t\t\t// otherwise turn a sequence of invalid UTF-8 into valid UTF-8.\n\t\t\t\t// The resulting byte sequence may subsequently contain runes\n\t\t\t\t// for which t(r) is true that were passed unnoticed.\n\t\t\t\tif !t(r) {\n\t\t\t\t\tif nDst+3 > len(dst) {\n\t\t\t\t\t\terr = ErrShortDst\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\tnDst += copy(dst[nDst:], \"\\uFFFD\")\n\t\t\t\t}\n\t\t\t\tnSrc++\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\tif !t(r) {\n\t\t\tif nDst+sz > len(dst) {\n\t\t\t\terr = ErrShortDst\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tnDst += copy(dst[nDst:], src[:sz])\n\t\t}\n\t\tnSrc += sz\n\t}\n\treturn\n}\n\n// grow returns a new []byte that is longer than b, and copies the first n bytes\n// of b to the start of the new slice.\nfunc grow(b []byte, n int) []byte {\n\tm := len(b)\n\tif m <= 32 {\n\t\tm = 64\n\t} else if m <= 256 {\n\t\tm *= 2\n\t} else {\n\t\tm += m >> 1\n\t}\n\tbuf := make([]byte, m)\n\tcopy(buf, b[:n])\n\treturn buf\n}\n\nconst initialBufSize = 128\n\n// String returns a string with the result of converting s[:n] using t, where\n// n <= len(s). If err == nil, n will be len(s). It calls Reset on t.\nfunc String(t Transformer, s string) (result string, n int, err error) {\n\tt.Reset()\n\tif s == \"\" {\n\t\t// Fast path for the common case for empty input. Results in about a\n\t\t// 86% reduction of running time for BenchmarkStringLowerEmpty.\n\t\tif _, _, err := t.Transform(nil, nil, true); err == nil {\n\t\t\treturn \"\", 0, nil\n\t\t}\n\t}\n\n\t// Allocate only once. Note that both dst and src escape when passed to\n\t// Transform.\n\tbuf := [2 * initialBufSize]byte{}\n\tdst := buf[:initialBufSize:initialBufSize]\n\tsrc := buf[initialBufSize : 2*initialBufSize]\n\n\t// The input string s is transformed in multiple chunks (starting with a\n\t// chunk size of initialBufSize). nDst and nSrc are per-chunk (or\n\t// per-Transform-call) indexes, pDst and pSrc are overall indexes.\n\tnDst, nSrc := 0, 0\n\tpDst, pSrc := 0, 0\n\n\t// pPrefix is the length of a common prefix: the first pPrefix bytes of the\n\t// result will equal the first pPrefix bytes of s. It is not guaranteed to\n\t// be the largest such value, but if pPrefix, len(result) and len(s) are\n\t// all equal after the final transform (i.e. calling Transform with atEOF\n\t// being true returned nil error) then we don't need to allocate a new\n\t// result string.\n\tpPrefix := 0\n\tfor {\n\t\t// Invariant: pDst == pPrefix && pSrc == pPrefix.\n\n\t\tn := copy(src, s[pSrc:])\n\t\tnDst, nSrc, err = t.Transform(dst, src[:n], pSrc+n == len(s))\n\t\tpDst += nDst\n\t\tpSrc += nSrc\n\n\t\t// TODO:  let transformers implement an optional Spanner interface, akin\n\t\t// to norm's QuickSpan. This would even allow us to avoid any allocation.\n\t\tif !bytes.Equal(dst[:nDst], src[:nSrc]) {\n\t\t\tbreak\n\t\t}\n\t\tpPrefix = pSrc\n\t\tif err == ErrShortDst {\n\t\t\t// A buffer can only be short if a transformer modifies its input.\n\t\t\tbreak\n\t\t} else if err == ErrShortSrc {\n\t\t\tif nSrc == 0 {\n\t\t\t\t// No progress was made.\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Equal so far and !atEOF, so continue checking.\n\t\t} else if err != nil || pPrefix == len(s) {\n\t\t\treturn string(s[:pPrefix]), pPrefix, err\n\t\t}\n\t}\n\t// Post-condition: pDst == pPrefix + nDst && pSrc == pPrefix + nSrc.\n\n\t// We have transformed the first pSrc bytes of the input s to become pDst\n\t// transformed bytes. Those transformed bytes are discontiguous: the first\n\t// pPrefix of them equal s[:pPrefix] and the last nDst of them equal\n\t// dst[:nDst]. We copy them around, into a new dst buffer if necessary, so\n\t// that they become one contiguous slice: dst[:pDst].\n\tif pPrefix != 0 {\n\t\tnewDst := dst\n\t\tif pDst > len(newDst) {\n\t\t\tnewDst = make([]byte, len(s)+nDst-nSrc)\n\t\t}\n\t\tcopy(newDst[pPrefix:pDst], dst[:nDst])\n\t\tcopy(newDst[:pPrefix], s[:pPrefix])\n\t\tdst = newDst\n\t}\n\n\t// Prevent duplicate Transform calls with atEOF being true at the end of\n\t// the input. Also return if we have an unrecoverable error.\n\tif (err == nil && pSrc == len(s)) ||\n\t\t(err != nil && err != ErrShortDst && err != ErrShortSrc) {\n\t\treturn string(dst[:pDst]), pSrc, err\n\t}\n\n\t// Transform the remaining input, growing dst and src buffers as necessary.\n\tfor {\n\t\tn := copy(src, s[pSrc:])\n\t\tatEOF := pSrc+n == len(s)\n\t\tnDst, nSrc, err := t.Transform(dst[pDst:], src[:n], atEOF)\n\t\tpDst += nDst\n\t\tpSrc += nSrc\n\n\t\t// If we got ErrShortDst or ErrShortSrc, do not grow as long as we can\n\t\t// make progress. This may avoid excessive allocations.\n\t\tif err == ErrShortDst {\n\t\t\tif nDst == 0 {\n\t\t\t\tdst = grow(dst, pDst)\n\t\t\t}\n\t\t} else if err == ErrShortSrc {\n\t\t\tif atEOF {\n\t\t\t\treturn string(dst[:pDst]), pSrc, err\n\t\t\t}\n\t\t\tif nSrc == 0 {\n\t\t\t\tsrc = grow(src, 0)\n\t\t\t}\n\t\t} else if err != nil || pSrc == len(s) {\n\t\t\treturn string(dst[:pDst]), pSrc, err\n\t\t}\n\t}\n}\n\n// Bytes returns a new byte slice with the result of converting b[:n] using t,\n// where n <= len(b). If err == nil, n will be len(b). It calls Reset on t.\nfunc Bytes(t Transformer, b []byte) (result []byte, n int, err error) {\n\treturn doAppend(t, 0, make([]byte, len(b)), b)\n}\n\n// Append appends the result of converting src[:n] using t to dst, where\n// n <= len(src), If err == nil, n will be len(src). It calls Reset on t.\nfunc Append(t Transformer, dst, src []byte) (result []byte, n int, err error) {\n\tif len(dst) == cap(dst) {\n\t\tn := len(src) + len(dst) // It is okay for this to be 0.\n\t\tb := make([]byte, n)\n\t\tdst = b[:copy(b, dst)]\n\t}\n\treturn doAppend(t, len(dst), dst[:cap(dst)], src)\n}\n\nfunc doAppend(t Transformer, pDst int, dst, src []byte) (result []byte, n int, err error) {\n\tt.Reset()\n\tpSrc := 0\n\tfor {\n\t\tnDst, nSrc, err := t.Transform(dst[pDst:], src[pSrc:], true)\n\t\tpDst += nDst\n\t\tpSrc += nSrc\n\t\tif err != ErrShortDst {\n\t\t\treturn dst[:pDst], pSrc, err\n\t\t}\n\n\t\t// Grow the destination buffer, but do not grow as long as we can make\n\t\t// progress. This may avoid excessive allocations.\n\t\tif nDst == 0 {\n\t\t\tdst = grow(dst, pDst)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/composition.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage norm\n\nimport \"unicode/utf8\"\n\nconst (\n\tmaxNonStarters = 30\n\t// The maximum number of characters needed for a buffer is\n\t// maxNonStarters + 1 for the starter + 1 for the GCJ\n\tmaxBufferSize    = maxNonStarters + 2\n\tmaxNFCExpansion  = 3  // NFC(0x1D160)\n\tmaxNFKCExpansion = 18 // NFKC(0xFDFA)\n\n\tmaxByteBufferSize = utf8.UTFMax * maxBufferSize // 128\n)\n\n// ssState is used for reporting the segment state after inserting a rune.\n// It is returned by streamSafe.next.\ntype ssState int\n\nconst (\n\t// Indicates a rune was successfully added to the segment.\n\tssSuccess ssState = iota\n\t// Indicates a rune starts a new segment and should not be added.\n\tssStarter\n\t// Indicates a rune caused a segment overflow and a CGJ should be inserted.\n\tssOverflow\n)\n\n// streamSafe implements the policy of when a CGJ should be inserted.\ntype streamSafe uint8\n\n// first inserts the first rune of a segment. It is a faster version of next if\n// it is known p represents the first rune in a segment.\nfunc (ss *streamSafe) first(p Properties) {\n\t*ss = streamSafe(p.nTrailingNonStarters())\n}\n\n// insert returns a ssState value to indicate whether a rune represented by p\n// can be inserted.\nfunc (ss *streamSafe) next(p Properties) ssState {\n\tif *ss > maxNonStarters {\n\t\tpanic(\"streamSafe was not reset\")\n\t}\n\tn := p.nLeadingNonStarters()\n\tif *ss += streamSafe(n); *ss > maxNonStarters {\n\t\t*ss = 0\n\t\treturn ssOverflow\n\t}\n\t// The Stream-Safe Text Processing prescribes that the counting can stop\n\t// as soon as a starter is encountered. However, there are some starters,\n\t// like Jamo V and T, that can combine with other runes, leaving their\n\t// successive non-starters appended to the previous, possibly causing an\n\t// overflow. We will therefore consider any rune with a non-zero nLead to\n\t// be a non-starter. Note that it always hold that if nLead > 0 then\n\t// nLead == nTrail.\n\tif n == 0 {\n\t\t*ss = streamSafe(p.nTrailingNonStarters())\n\t\treturn ssStarter\n\t}\n\treturn ssSuccess\n}\n\n// backwards is used for checking for overflow and segment starts\n// when traversing a string backwards. Users do not need to call first\n// for the first rune. The state of the streamSafe retains the count of\n// the non-starters loaded.\nfunc (ss *streamSafe) backwards(p Properties) ssState {\n\tif *ss > maxNonStarters {\n\t\tpanic(\"streamSafe was not reset\")\n\t}\n\tc := *ss + streamSafe(p.nTrailingNonStarters())\n\tif c > maxNonStarters {\n\t\treturn ssOverflow\n\t}\n\t*ss = c\n\tif p.nLeadingNonStarters() == 0 {\n\t\treturn ssStarter\n\t}\n\treturn ssSuccess\n}\n\nfunc (ss streamSafe) isMax() bool {\n\treturn ss == maxNonStarters\n}\n\n// GraphemeJoiner is inserted after maxNonStarters non-starter runes.\nconst GraphemeJoiner = \"\\u034F\"\n\n// reorderBuffer is used to normalize a single segment.  Characters inserted with\n// insert are decomposed and reordered based on CCC. The compose method can\n// be used to recombine characters.  Note that the byte buffer does not hold\n// the UTF-8 characters in order.  Only the rune array is maintained in sorted\n// order. flush writes the resulting segment to a byte array.\ntype reorderBuffer struct {\n\trune  [maxBufferSize]Properties // Per character info.\n\tbyte  [maxByteBufferSize]byte   // UTF-8 buffer. Referenced by runeInfo.pos.\n\tnbyte uint8                     // Number or bytes.\n\tss    streamSafe                // For limiting length of non-starter sequence.\n\tnrune int                       // Number of runeInfos.\n\tf     formInfo\n\n\tsrc      input\n\tnsrc     int\n\ttmpBytes input\n\n\tout    []byte\n\tflushF func(*reorderBuffer) bool\n}\n\nfunc (rb *reorderBuffer) init(f Form, src []byte) {\n\trb.f = *formTable[f]\n\trb.src.setBytes(src)\n\trb.nsrc = len(src)\n\trb.ss = 0\n}\n\nfunc (rb *reorderBuffer) initString(f Form, src string) {\n\trb.f = *formTable[f]\n\trb.src.setString(src)\n\trb.nsrc = len(src)\n\trb.ss = 0\n}\n\nfunc (rb *reorderBuffer) setFlusher(out []byte, f func(*reorderBuffer) bool) {\n\trb.out = out\n\trb.flushF = f\n}\n\n// reset discards all characters from the buffer.\nfunc (rb *reorderBuffer) reset() {\n\trb.nrune = 0\n\trb.nbyte = 0\n}\n\nfunc (rb *reorderBuffer) doFlush() bool {\n\tif rb.f.composing {\n\t\trb.compose()\n\t}\n\tres := rb.flushF(rb)\n\trb.reset()\n\treturn res\n}\n\n// appendFlush appends the normalized segment to rb.out.\nfunc appendFlush(rb *reorderBuffer) bool {\n\tfor i := 0; i < rb.nrune; i++ {\n\t\tstart := rb.rune[i].pos\n\t\tend := start + rb.rune[i].size\n\t\trb.out = append(rb.out, rb.byte[start:end]...)\n\t}\n\treturn true\n}\n\n// flush appends the normalized segment to out and resets rb.\nfunc (rb *reorderBuffer) flush(out []byte) []byte {\n\tfor i := 0; i < rb.nrune; i++ {\n\t\tstart := rb.rune[i].pos\n\t\tend := start + rb.rune[i].size\n\t\tout = append(out, rb.byte[start:end]...)\n\t}\n\trb.reset()\n\treturn out\n}\n\n// flushCopy copies the normalized segment to buf and resets rb.\n// It returns the number of bytes written to buf.\nfunc (rb *reorderBuffer) flushCopy(buf []byte) int {\n\tp := 0\n\tfor i := 0; i < rb.nrune; i++ {\n\t\trunep := rb.rune[i]\n\t\tp += copy(buf[p:], rb.byte[runep.pos:runep.pos+runep.size])\n\t}\n\trb.reset()\n\treturn p\n}\n\n// insertOrdered inserts a rune in the buffer, ordered by Canonical Combining Class.\n// It returns false if the buffer is not large enough to hold the rune.\n// It is used internally by insert and insertString only.\nfunc (rb *reorderBuffer) insertOrdered(info Properties) {\n\tn := rb.nrune\n\tb := rb.rune[:]\n\tcc := info.ccc\n\tif cc > 0 {\n\t\t// Find insertion position + move elements to make room.\n\t\tfor ; n > 0; n-- {\n\t\t\tif b[n-1].ccc <= cc {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tb[n] = b[n-1]\n\t\t}\n\t}\n\trb.nrune += 1\n\tpos := uint8(rb.nbyte)\n\trb.nbyte += utf8.UTFMax\n\tinfo.pos = pos\n\tb[n] = info\n}\n\n// insertErr is an error code returned by insert. Using this type instead\n// of error improves performance up to 20% for many of the benchmarks.\ntype insertErr int\n\nconst (\n\tiSuccess insertErr = -iota\n\tiShortDst\n\tiShortSrc\n)\n\n// insertFlush inserts the given rune in the buffer ordered by CCC.\n// If a decomposition with multiple segments are encountered, they leading\n// ones are flushed.\n// It returns a non-zero error code if the rune was not inserted.\nfunc (rb *reorderBuffer) insertFlush(src input, i int, info Properties) insertErr {\n\tif rune := src.hangul(i); rune != 0 {\n\t\trb.decomposeHangul(rune)\n\t\treturn iSuccess\n\t}\n\tif info.hasDecomposition() {\n\t\treturn rb.insertDecomposed(info.Decomposition())\n\t}\n\trb.insertSingle(src, i, info)\n\treturn iSuccess\n}\n\n// insertUnsafe inserts the given rune in the buffer ordered by CCC.\n// It is assumed there is sufficient space to hold the runes. It is the\n// responsibility of the caller to ensure this. This can be done by checking\n// the state returned by the streamSafe type.\nfunc (rb *reorderBuffer) insertUnsafe(src input, i int, info Properties) {\n\tif rune := src.hangul(i); rune != 0 {\n\t\trb.decomposeHangul(rune)\n\t}\n\tif info.hasDecomposition() {\n\t\t// TODO: inline.\n\t\trb.insertDecomposed(info.Decomposition())\n\t} else {\n\t\trb.insertSingle(src, i, info)\n\t}\n}\n\n// insertDecomposed inserts an entry in to the reorderBuffer for each rune\n// in dcomp. dcomp must be a sequence of decomposed UTF-8-encoded runes.\n// It flushes the buffer on each new segment start.\nfunc (rb *reorderBuffer) insertDecomposed(dcomp []byte) insertErr {\n\trb.tmpBytes.setBytes(dcomp)\n\t// As the streamSafe accounting already handles the counting for modifiers,\n\t// we don't have to call next. However, we do need to keep the accounting\n\t// intact when flushing the buffer.\n\tfor i := 0; i < len(dcomp); {\n\t\tinfo := rb.f.info(rb.tmpBytes, i)\n\t\tif info.BoundaryBefore() && rb.nrune > 0 && !rb.doFlush() {\n\t\t\treturn iShortDst\n\t\t}\n\t\ti += copy(rb.byte[rb.nbyte:], dcomp[i:i+int(info.size)])\n\t\trb.insertOrdered(info)\n\t}\n\treturn iSuccess\n}\n\n// insertSingle inserts an entry in the reorderBuffer for the rune at\n// position i. info is the runeInfo for the rune at position i.\nfunc (rb *reorderBuffer) insertSingle(src input, i int, info Properties) {\n\tsrc.copySlice(rb.byte[rb.nbyte:], i, i+int(info.size))\n\trb.insertOrdered(info)\n}\n\n// insertCGJ inserts a Combining Grapheme Joiner (0x034f) into rb.\nfunc (rb *reorderBuffer) insertCGJ() {\n\trb.insertSingle(input{str: GraphemeJoiner}, 0, Properties{size: uint8(len(GraphemeJoiner))})\n}\n\n// appendRune inserts a rune at the end of the buffer. It is used for Hangul.\nfunc (rb *reorderBuffer) appendRune(r rune) {\n\tbn := rb.nbyte\n\tsz := utf8.EncodeRune(rb.byte[bn:], rune(r))\n\trb.nbyte += utf8.UTFMax\n\trb.rune[rb.nrune] = Properties{pos: bn, size: uint8(sz)}\n\trb.nrune++\n}\n\n// assignRune sets a rune at position pos. It is used for Hangul and recomposition.\nfunc (rb *reorderBuffer) assignRune(pos int, r rune) {\n\tbn := rb.rune[pos].pos\n\tsz := utf8.EncodeRune(rb.byte[bn:], rune(r))\n\trb.rune[pos] = Properties{pos: bn, size: uint8(sz)}\n}\n\n// runeAt returns the rune at position n. It is used for Hangul and recomposition.\nfunc (rb *reorderBuffer) runeAt(n int) rune {\n\tinf := rb.rune[n]\n\tr, _ := utf8.DecodeRune(rb.byte[inf.pos : inf.pos+inf.size])\n\treturn r\n}\n\n// bytesAt returns the UTF-8 encoding of the rune at position n.\n// It is used for Hangul and recomposition.\nfunc (rb *reorderBuffer) bytesAt(n int) []byte {\n\tinf := rb.rune[n]\n\treturn rb.byte[inf.pos : int(inf.pos)+int(inf.size)]\n}\n\n// For Hangul we combine algorithmically, instead of using tables.\nconst (\n\thangulBase  = 0xAC00 // UTF-8(hangulBase) -> EA B0 80\n\thangulBase0 = 0xEA\n\thangulBase1 = 0xB0\n\thangulBase2 = 0x80\n\n\thangulEnd  = hangulBase + jamoLVTCount // UTF-8(0xD7A4) -> ED 9E A4\n\thangulEnd0 = 0xED\n\thangulEnd1 = 0x9E\n\thangulEnd2 = 0xA4\n\n\tjamoLBase  = 0x1100 // UTF-8(jamoLBase) -> E1 84 00\n\tjamoLBase0 = 0xE1\n\tjamoLBase1 = 0x84\n\tjamoLEnd   = 0x1113\n\tjamoVBase  = 0x1161\n\tjamoVEnd   = 0x1176\n\tjamoTBase  = 0x11A7\n\tjamoTEnd   = 0x11C3\n\n\tjamoTCount   = 28\n\tjamoVCount   = 21\n\tjamoVTCount  = 21 * 28\n\tjamoLVTCount = 19 * 21 * 28\n)\n\nconst hangulUTF8Size = 3\n\nfunc isHangul(b []byte) bool {\n\tif len(b) < hangulUTF8Size {\n\t\treturn false\n\t}\n\tb0 := b[0]\n\tif b0 < hangulBase0 {\n\t\treturn false\n\t}\n\tb1 := b[1]\n\tswitch {\n\tcase b0 == hangulBase0:\n\t\treturn b1 >= hangulBase1\n\tcase b0 < hangulEnd0:\n\t\treturn true\n\tcase b0 > hangulEnd0:\n\t\treturn false\n\tcase b1 < hangulEnd1:\n\t\treturn true\n\t}\n\treturn b1 == hangulEnd1 && b[2] < hangulEnd2\n}\n\nfunc isHangulString(b string) bool {\n\tif len(b) < hangulUTF8Size {\n\t\treturn false\n\t}\n\tb0 := b[0]\n\tif b0 < hangulBase0 {\n\t\treturn false\n\t}\n\tb1 := b[1]\n\tswitch {\n\tcase b0 == hangulBase0:\n\t\treturn b1 >= hangulBase1\n\tcase b0 < hangulEnd0:\n\t\treturn true\n\tcase b0 > hangulEnd0:\n\t\treturn false\n\tcase b1 < hangulEnd1:\n\t\treturn true\n\t}\n\treturn b1 == hangulEnd1 && b[2] < hangulEnd2\n}\n\n// Caller must ensure len(b) >= 2.\nfunc isJamoVT(b []byte) bool {\n\t// True if (rune & 0xff00) == jamoLBase\n\treturn b[0] == jamoLBase0 && (b[1]&0xFC) == jamoLBase1\n}\n\nfunc isHangulWithoutJamoT(b []byte) bool {\n\tc, _ := utf8.DecodeRune(b)\n\tc -= hangulBase\n\treturn c < jamoLVTCount && c%jamoTCount == 0\n}\n\n// decomposeHangul writes the decomposed Hangul to buf and returns the number\n// of bytes written.  len(buf) should be at least 9.\nfunc decomposeHangul(buf []byte, r rune) int {\n\tconst JamoUTF8Len = 3\n\tr -= hangulBase\n\tx := r % jamoTCount\n\tr /= jamoTCount\n\tutf8.EncodeRune(buf, jamoLBase+r/jamoVCount)\n\tutf8.EncodeRune(buf[JamoUTF8Len:], jamoVBase+r%jamoVCount)\n\tif x != 0 {\n\t\tutf8.EncodeRune(buf[2*JamoUTF8Len:], jamoTBase+x)\n\t\treturn 3 * JamoUTF8Len\n\t}\n\treturn 2 * JamoUTF8Len\n}\n\n// decomposeHangul algorithmically decomposes a Hangul rune into\n// its Jamo components.\n// See https://unicode.org/reports/tr15/#Hangul for details on decomposing Hangul.\nfunc (rb *reorderBuffer) decomposeHangul(r rune) {\n\tr -= hangulBase\n\tx := r % jamoTCount\n\tr /= jamoTCount\n\trb.appendRune(jamoLBase + r/jamoVCount)\n\trb.appendRune(jamoVBase + r%jamoVCount)\n\tif x != 0 {\n\t\trb.appendRune(jamoTBase + x)\n\t}\n}\n\n// combineHangul algorithmically combines Jamo character components into Hangul.\n// See https://unicode.org/reports/tr15/#Hangul for details on combining Hangul.\nfunc (rb *reorderBuffer) combineHangul(s, i, k int) {\n\tb := rb.rune[:]\n\tbn := rb.nrune\n\tfor ; i < bn; i++ {\n\t\tcccB := b[k-1].ccc\n\t\tcccC := b[i].ccc\n\t\tif cccB == 0 {\n\t\t\ts = k - 1\n\t\t}\n\t\tif s != k-1 && cccB >= cccC {\n\t\t\t// b[i] is blocked by greater-equal cccX below it\n\t\t\tb[k] = b[i]\n\t\t\tk++\n\t\t} else {\n\t\t\tl := rb.runeAt(s) // also used to compare to hangulBase\n\t\t\tv := rb.runeAt(i) // also used to compare to jamoT\n\t\t\tswitch {\n\t\t\tcase jamoLBase <= l && l < jamoLEnd &&\n\t\t\t\tjamoVBase <= v && v < jamoVEnd:\n\t\t\t\t// 11xx plus 116x to LV\n\t\t\t\trb.assignRune(s, hangulBase+\n\t\t\t\t\t(l-jamoLBase)*jamoVTCount+(v-jamoVBase)*jamoTCount)\n\t\t\tcase hangulBase <= l && l < hangulEnd &&\n\t\t\t\tjamoTBase < v && v < jamoTEnd &&\n\t\t\t\t((l-hangulBase)%jamoTCount) == 0:\n\t\t\t\t// ACxx plus 11Ax to LVT\n\t\t\t\trb.assignRune(s, l+v-jamoTBase)\n\t\t\tdefault:\n\t\t\t\tb[k] = b[i]\n\t\t\t\tk++\n\t\t\t}\n\t\t}\n\t}\n\trb.nrune = k\n}\n\n// compose recombines the runes in the buffer.\n// It should only be used to recompose a single segment, as it will not\n// handle alternations between Hangul and non-Hangul characters correctly.\nfunc (rb *reorderBuffer) compose() {\n\t// Lazily load the map used by the combine func below, but do\n\t// it outside of the loop.\n\trecompMapOnce.Do(buildRecompMap)\n\n\t// UAX #15, section X5 , including Corrigendum #5\n\t// \"In any character sequence beginning with starter S, a character C is\n\t//  blocked from S if and only if there is some character B between S\n\t//  and C, and either B is a starter or it has the same or higher\n\t//  combining class as C.\"\n\tbn := rb.nrune\n\tif bn == 0 {\n\t\treturn\n\t}\n\tk := 1\n\tb := rb.rune[:]\n\tfor s, i := 0, 1; i < bn; i++ {\n\t\tif isJamoVT(rb.bytesAt(i)) {\n\t\t\t// Redo from start in Hangul mode. Necessary to support\n\t\t\t// U+320E..U+321E in NFKC mode.\n\t\t\trb.combineHangul(s, i, k)\n\t\t\treturn\n\t\t}\n\t\tii := b[i]\n\t\t// We can only use combineForward as a filter if we later\n\t\t// get the info for the combined character. This is more\n\t\t// expensive than using the filter. Using combinesBackward()\n\t\t// is safe.\n\t\tif ii.combinesBackward() {\n\t\t\tcccB := b[k-1].ccc\n\t\t\tcccC := ii.ccc\n\t\t\tblocked := false // b[i] blocked by starter or greater or equal CCC?\n\t\t\tif cccB == 0 {\n\t\t\t\ts = k - 1\n\t\t\t} else {\n\t\t\t\tblocked = s != k-1 && cccB >= cccC\n\t\t\t}\n\t\t\tif !blocked {\n\t\t\t\tcombined := combine(rb.runeAt(s), rb.runeAt(i))\n\t\t\t\tif combined != 0 {\n\t\t\t\t\trb.assignRune(s, combined)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tb[k] = b[i]\n\t\tk++\n\t}\n\trb.nrune = k\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/forminfo.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage norm\n\nimport \"encoding/binary\"\n\n// This file contains Form-specific logic and wrappers for data in tables.go.\n\n// Rune info is stored in a separate trie per composing form. A composing form\n// and its corresponding decomposing form share the same trie.  Each trie maps\n// a rune to a uint16. The values take two forms.  For v >= 0x8000:\n//   bits\n//   15:    1 (inverse of NFD_QC bit of qcInfo)\n//   13..7: qcInfo (see below). isYesD is always true (no decompostion).\n//    6..0: ccc (compressed CCC value).\n// For v < 0x8000, the respective rune has a decomposition and v is an index\n// into a byte array of UTF-8 decomposition sequences and additional info and\n// has the form:\n//    <header> <decomp_byte>* [<tccc> [<lccc>]]\n// The header contains the number of bytes in the decomposition (excluding this\n// length byte). The two most significant bits of this length byte correspond\n// to bit 5 and 4 of qcInfo (see below).  The byte sequence itself starts at v+1.\n// The byte sequence is followed by a trailing and leading CCC if the values\n// for these are not zero.  The value of v determines which ccc are appended\n// to the sequences.  For v < firstCCC, there are none, for v >= firstCCC,\n// the sequence is followed by a trailing ccc, and for v >= firstLeadingCC\n// there is an additional leading ccc. The value of tccc itself is the\n// trailing CCC shifted left 2 bits. The two least-significant bits of tccc\n// are the number of trailing non-starters.\n\nconst (\n\tqcInfoMask      = 0x3F // to clear all but the relevant bits in a qcInfo\n\theaderLenMask   = 0x3F // extract the length value from the header byte\n\theaderFlagsMask = 0xC0 // extract the qcInfo bits from the header byte\n)\n\n// Properties provides access to normalization properties of a rune.\ntype Properties struct {\n\tpos   uint8  // start position in reorderBuffer; used in composition.go\n\tsize  uint8  // length of UTF-8 encoding of this rune\n\tccc   uint8  // leading canonical combining class (ccc if not decomposition)\n\ttccc  uint8  // trailing canonical combining class (ccc if not decomposition)\n\tnLead uint8  // number of leading non-starters.\n\tflags qcInfo // quick check flags\n\tindex uint16\n}\n\n// functions dispatchable per form\ntype lookupFunc func(b input, i int) Properties\n\n// formInfo holds Form-specific functions and tables.\ntype formInfo struct {\n\tform                     Form\n\tcomposing, compatibility bool // form type\n\tinfo                     lookupFunc\n\tnextMain                 iterFunc\n}\n\nvar formTable = []*formInfo{{\n\tform:          NFC,\n\tcomposing:     true,\n\tcompatibility: false,\n\tinfo:          lookupInfoNFC,\n\tnextMain:      nextComposed,\n}, {\n\tform:          NFD,\n\tcomposing:     false,\n\tcompatibility: false,\n\tinfo:          lookupInfoNFC,\n\tnextMain:      nextDecomposed,\n}, {\n\tform:          NFKC,\n\tcomposing:     true,\n\tcompatibility: true,\n\tinfo:          lookupInfoNFKC,\n\tnextMain:      nextComposed,\n}, {\n\tform:          NFKD,\n\tcomposing:     false,\n\tcompatibility: true,\n\tinfo:          lookupInfoNFKC,\n\tnextMain:      nextDecomposed,\n}}\n\n// We do not distinguish between boundaries for NFC, NFD, etc. to avoid\n// unexpected behavior for the user.  For example, in NFD, there is a boundary\n// after 'a'.  However, 'a' might combine with modifiers, so from the application's\n// perspective it is not a good boundary. We will therefore always use the\n// boundaries for the combining variants.\n\n// BoundaryBefore returns true if this rune starts a new segment and\n// cannot combine with any rune on the left.\nfunc (p Properties) BoundaryBefore() bool {\n\tif p.ccc == 0 && !p.combinesBackward() {\n\t\treturn true\n\t}\n\t// We assume that the CCC of the first character in a decomposition\n\t// is always non-zero if different from info.ccc and that we can return\n\t// false at this point. This is verified by maketables.\n\treturn false\n}\n\n// BoundaryAfter returns true if runes cannot combine with or otherwise\n// interact with this or previous runes.\nfunc (p Properties) BoundaryAfter() bool {\n\t// TODO: loosen these conditions.\n\treturn p.isInert()\n}\n\n// We pack quick check data in 4 bits:\n//   5:    Combines forward  (0 == false, 1 == true)\n//   4..3: NFC_QC Yes(00), No (10), or Maybe (11)\n//   2:    NFD_QC Yes (0) or No (1). No also means there is a decomposition.\n//   1..0: Number of trailing non-starters.\n//\n// When all 4 bits are zero, the character is inert, meaning it is never\n// influenced by normalization.\ntype qcInfo uint8\n\nfunc (p Properties) isYesC() bool { return p.flags&0x10 == 0 }\nfunc (p Properties) isYesD() bool { return p.flags&0x4 == 0 }\n\nfunc (p Properties) combinesForward() bool  { return p.flags&0x20 != 0 }\nfunc (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } // == isMaybe\nfunc (p Properties) hasDecomposition() bool { return p.flags&0x4 != 0 } // == isNoD\n\nfunc (p Properties) isInert() bool {\n\treturn p.flags&qcInfoMask == 0 && p.ccc == 0\n}\n\nfunc (p Properties) multiSegment() bool {\n\treturn p.index >= firstMulti && p.index < endMulti\n}\n\nfunc (p Properties) nLeadingNonStarters() uint8 {\n\treturn p.nLead\n}\n\nfunc (p Properties) nTrailingNonStarters() uint8 {\n\treturn uint8(p.flags & 0x03)\n}\n\n// Decomposition returns the decomposition for the underlying rune\n// or nil if there is none.\nfunc (p Properties) Decomposition() []byte {\n\t// TODO: create the decomposition for Hangul?\n\tif p.index == 0 {\n\t\treturn nil\n\t}\n\ti := p.index\n\tn := decomps[i] & headerLenMask\n\ti++\n\treturn decomps[i : i+uint16(n)]\n}\n\n// Size returns the length of UTF-8 encoding of the rune.\nfunc (p Properties) Size() int {\n\treturn int(p.size)\n}\n\n// CCC returns the canonical combining class of the underlying rune.\nfunc (p Properties) CCC() uint8 {\n\tif p.index >= firstCCCZeroExcept {\n\t\treturn 0\n\t}\n\treturn ccc[p.ccc]\n}\n\n// LeadCCC returns the CCC of the first rune in the decomposition.\n// If there is no decomposition, LeadCCC equals CCC.\nfunc (p Properties) LeadCCC() uint8 {\n\treturn ccc[p.ccc]\n}\n\n// TrailCCC returns the CCC of the last rune in the decomposition.\n// If there is no decomposition, TrailCCC equals CCC.\nfunc (p Properties) TrailCCC() uint8 {\n\treturn ccc[p.tccc]\n}\n\nfunc buildRecompMap() {\n\trecompMap = make(map[uint32]rune, len(recompMapPacked)/8)\n\tvar buf [8]byte\n\tfor i := 0; i < len(recompMapPacked); i += 8 {\n\t\tcopy(buf[:], recompMapPacked[i:i+8])\n\t\tkey := binary.BigEndian.Uint32(buf[:4])\n\t\tval := binary.BigEndian.Uint32(buf[4:])\n\t\trecompMap[key] = rune(val)\n\t}\n}\n\n// Recomposition\n// We use 32-bit keys instead of 64-bit for the two codepoint keys.\n// This clips off the bits of three entries, but we know this will not\n// result in a collision. In the unlikely event that changes to\n// UnicodeData.txt introduce collisions, the compiler will catch it.\n// Note that the recomposition map for NFC and NFKC are identical.\n\n// combine returns the combined rune or 0 if it doesn't exist.\n//\n// The caller is responsible for calling\n// recompMapOnce.Do(buildRecompMap) sometime before this is called.\nfunc combine(a, b rune) rune {\n\tkey := uint32(uint16(a))<<16 + uint32(uint16(b))\n\tif recompMap == nil {\n\t\tpanic(\"caller error\") // see func comment\n\t}\n\treturn recompMap[key]\n}\n\nfunc lookupInfoNFC(b input, i int) Properties {\n\tv, sz := b.charinfoNFC(i)\n\treturn compInfo(v, sz)\n}\n\nfunc lookupInfoNFKC(b input, i int) Properties {\n\tv, sz := b.charinfoNFKC(i)\n\treturn compInfo(v, sz)\n}\n\n// Properties returns properties for the first rune in s.\nfunc (f Form) Properties(s []byte) Properties {\n\tif f == NFC || f == NFD {\n\t\treturn compInfo(nfcData.lookup(s))\n\t}\n\treturn compInfo(nfkcData.lookup(s))\n}\n\n// PropertiesString returns properties for the first rune in s.\nfunc (f Form) PropertiesString(s string) Properties {\n\tif f == NFC || f == NFD {\n\t\treturn compInfo(nfcData.lookupString(s))\n\t}\n\treturn compInfo(nfkcData.lookupString(s))\n}\n\n// compInfo converts the information contained in v and sz\n// to a Properties.  See the comment at the top of the file\n// for more information on the format.\nfunc compInfo(v uint16, sz int) Properties {\n\tif v == 0 {\n\t\treturn Properties{size: uint8(sz)}\n\t} else if v >= 0x8000 {\n\t\tp := Properties{\n\t\t\tsize:  uint8(sz),\n\t\t\tccc:   uint8(v),\n\t\t\ttccc:  uint8(v),\n\t\t\tflags: qcInfo(v >> 8),\n\t\t}\n\t\tif p.ccc > 0 || p.combinesBackward() {\n\t\t\tp.nLead = uint8(p.flags & 0x3)\n\t\t}\n\t\treturn p\n\t}\n\t// has decomposition\n\th := decomps[v]\n\tf := (qcInfo(h&headerFlagsMask) >> 2) | 0x4\n\tp := Properties{size: uint8(sz), flags: f, index: v}\n\tif v >= firstCCC {\n\t\tv += uint16(h&headerLenMask) + 1\n\t\tc := decomps[v]\n\t\tp.tccc = c >> 2\n\t\tp.flags |= qcInfo(c & 0x3)\n\t\tif v >= firstLeadingCCC {\n\t\t\tp.nLead = c & 0x3\n\t\t\tif v >= firstStarterWithNLead {\n\t\t\t\t// We were tricked. Remove the decomposition.\n\t\t\t\tp.flags &= 0x03\n\t\t\t\tp.index = 0\n\t\t\t\treturn p\n\t\t\t}\n\t\t\tp.ccc = decomps[v+1]\n\t\t}\n\t}\n\treturn p\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/input.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage norm\n\nimport \"unicode/utf8\"\n\ntype input struct {\n\tstr   string\n\tbytes []byte\n}\n\nfunc inputBytes(str []byte) input {\n\treturn input{bytes: str}\n}\n\nfunc inputString(str string) input {\n\treturn input{str: str}\n}\n\nfunc (in *input) setBytes(str []byte) {\n\tin.str = \"\"\n\tin.bytes = str\n}\n\nfunc (in *input) setString(str string) {\n\tin.str = str\n\tin.bytes = nil\n}\n\nfunc (in *input) _byte(p int) byte {\n\tif in.bytes == nil {\n\t\treturn in.str[p]\n\t}\n\treturn in.bytes[p]\n}\n\nfunc (in *input) skipASCII(p, max int) int {\n\tif in.bytes == nil {\n\t\tfor ; p < max && in.str[p] < utf8.RuneSelf; p++ {\n\t\t}\n\t} else {\n\t\tfor ; p < max && in.bytes[p] < utf8.RuneSelf; p++ {\n\t\t}\n\t}\n\treturn p\n}\n\nfunc (in *input) skipContinuationBytes(p int) int {\n\tif in.bytes == nil {\n\t\tfor ; p < len(in.str) && !utf8.RuneStart(in.str[p]); p++ {\n\t\t}\n\t} else {\n\t\tfor ; p < len(in.bytes) && !utf8.RuneStart(in.bytes[p]); p++ {\n\t\t}\n\t}\n\treturn p\n}\n\nfunc (in *input) appendSlice(buf []byte, b, e int) []byte {\n\tif in.bytes != nil {\n\t\treturn append(buf, in.bytes[b:e]...)\n\t}\n\tfor i := b; i < e; i++ {\n\t\tbuf = append(buf, in.str[i])\n\t}\n\treturn buf\n}\n\nfunc (in *input) copySlice(buf []byte, b, e int) int {\n\tif in.bytes == nil {\n\t\treturn copy(buf, in.str[b:e])\n\t}\n\treturn copy(buf, in.bytes[b:e])\n}\n\nfunc (in *input) charinfoNFC(p int) (uint16, int) {\n\tif in.bytes == nil {\n\t\treturn nfcData.lookupString(in.str[p:])\n\t}\n\treturn nfcData.lookup(in.bytes[p:])\n}\n\nfunc (in *input) charinfoNFKC(p int) (uint16, int) {\n\tif in.bytes == nil {\n\t\treturn nfkcData.lookupString(in.str[p:])\n\t}\n\treturn nfkcData.lookup(in.bytes[p:])\n}\n\nfunc (in *input) hangul(p int) (r rune) {\n\tvar size int\n\tif in.bytes == nil {\n\t\tif !isHangulString(in.str[p:]) {\n\t\t\treturn 0\n\t\t}\n\t\tr, size = utf8.DecodeRuneInString(in.str[p:])\n\t} else {\n\t\tif !isHangul(in.bytes[p:]) {\n\t\t\treturn 0\n\t\t}\n\t\tr, size = utf8.DecodeRune(in.bytes[p:])\n\t}\n\tif size != hangulUTF8Size {\n\t\treturn 0\n\t}\n\treturn r\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/iter.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage norm\n\nimport (\n\t\"fmt\"\n\t\"unicode/utf8\"\n)\n\n// MaxSegmentSize is the maximum size of a byte buffer needed to consider any\n// sequence of starter and non-starter runes for the purpose of normalization.\nconst MaxSegmentSize = maxByteBufferSize\n\n// An Iter iterates over a string or byte slice, while normalizing it\n// to a given Form.\ntype Iter struct {\n\trb     reorderBuffer\n\tbuf    [maxByteBufferSize]byte\n\tinfo   Properties // first character saved from previous iteration\n\tnext   iterFunc   // implementation of next depends on form\n\tasciiF iterFunc\n\n\tp        int    // current position in input source\n\tmultiSeg []byte // remainder of multi-segment decomposition\n}\n\ntype iterFunc func(*Iter) []byte\n\n// Init initializes i to iterate over src after normalizing it to Form f.\nfunc (i *Iter) Init(f Form, src []byte) {\n\ti.p = 0\n\tif len(src) == 0 {\n\t\ti.setDone()\n\t\ti.rb.nsrc = 0\n\t\treturn\n\t}\n\ti.multiSeg = nil\n\ti.rb.init(f, src)\n\ti.next = i.rb.f.nextMain\n\ti.asciiF = nextASCIIBytes\n\ti.info = i.rb.f.info(i.rb.src, i.p)\n\ti.rb.ss.first(i.info)\n}\n\n// InitString initializes i to iterate over src after normalizing it to Form f.\nfunc (i *Iter) InitString(f Form, src string) {\n\ti.p = 0\n\tif len(src) == 0 {\n\t\ti.setDone()\n\t\ti.rb.nsrc = 0\n\t\treturn\n\t}\n\ti.multiSeg = nil\n\ti.rb.initString(f, src)\n\ti.next = i.rb.f.nextMain\n\ti.asciiF = nextASCIIString\n\ti.info = i.rb.f.info(i.rb.src, i.p)\n\ti.rb.ss.first(i.info)\n}\n\n// Seek sets the segment to be returned by the next call to Next to start\n// at position p.  It is the responsibility of the caller to set p to the\n// start of a segment.\nfunc (i *Iter) Seek(offset int64, whence int) (int64, error) {\n\tvar abs int64\n\tswitch whence {\n\tcase 0:\n\t\tabs = offset\n\tcase 1:\n\t\tabs = int64(i.p) + offset\n\tcase 2:\n\t\tabs = int64(i.rb.nsrc) + offset\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"norm: invalid whence\")\n\t}\n\tif abs < 0 {\n\t\treturn 0, fmt.Errorf(\"norm: negative position\")\n\t}\n\tif int(abs) >= i.rb.nsrc {\n\t\ti.setDone()\n\t\treturn int64(i.p), nil\n\t}\n\ti.p = int(abs)\n\ti.multiSeg = nil\n\ti.next = i.rb.f.nextMain\n\ti.info = i.rb.f.info(i.rb.src, i.p)\n\ti.rb.ss.first(i.info)\n\treturn abs, nil\n}\n\n// returnSlice returns a slice of the underlying input type as a byte slice.\n// If the underlying is of type []byte, it will simply return a slice.\n// If the underlying is of type string, it will copy the slice to the buffer\n// and return that.\nfunc (i *Iter) returnSlice(a, b int) []byte {\n\tif i.rb.src.bytes == nil {\n\t\treturn i.buf[:copy(i.buf[:], i.rb.src.str[a:b])]\n\t}\n\treturn i.rb.src.bytes[a:b]\n}\n\n// Pos returns the byte position at which the next call to Next will commence processing.\nfunc (i *Iter) Pos() int {\n\treturn i.p\n}\n\nfunc (i *Iter) setDone() {\n\ti.next = nextDone\n\ti.p = i.rb.nsrc\n}\n\n// Done returns true if there is no more input to process.\nfunc (i *Iter) Done() bool {\n\treturn i.p >= i.rb.nsrc\n}\n\n// Next returns f(i.input[i.Pos():n]), where n is a boundary of i.input.\n// For any input a and b for which f(a) == f(b), subsequent calls\n// to Next will return the same segments.\n// Modifying runes are grouped together with the preceding starter, if such a starter exists.\n// Although not guaranteed, n will typically be the smallest possible n.\nfunc (i *Iter) Next() []byte {\n\treturn i.next(i)\n}\n\nfunc nextASCIIBytes(i *Iter) []byte {\n\tp := i.p + 1\n\tif p >= i.rb.nsrc {\n\t\tp0 := i.p\n\t\ti.setDone()\n\t\treturn i.rb.src.bytes[p0:p]\n\t}\n\tif i.rb.src.bytes[p] < utf8.RuneSelf {\n\t\tp0 := i.p\n\t\ti.p = p\n\t\treturn i.rb.src.bytes[p0:p]\n\t}\n\ti.info = i.rb.f.info(i.rb.src, i.p)\n\ti.next = i.rb.f.nextMain\n\treturn i.next(i)\n}\n\nfunc nextASCIIString(i *Iter) []byte {\n\tp := i.p + 1\n\tif p >= i.rb.nsrc {\n\t\ti.buf[0] = i.rb.src.str[i.p]\n\t\ti.setDone()\n\t\treturn i.buf[:1]\n\t}\n\tif i.rb.src.str[p] < utf8.RuneSelf {\n\t\ti.buf[0] = i.rb.src.str[i.p]\n\t\ti.p = p\n\t\treturn i.buf[:1]\n\t}\n\ti.info = i.rb.f.info(i.rb.src, i.p)\n\ti.next = i.rb.f.nextMain\n\treturn i.next(i)\n}\n\nfunc nextHangul(i *Iter) []byte {\n\tp := i.p\n\tnext := p + hangulUTF8Size\n\tif next >= i.rb.nsrc {\n\t\ti.setDone()\n\t} else if i.rb.src.hangul(next) == 0 {\n\t\ti.rb.ss.next(i.info)\n\t\ti.info = i.rb.f.info(i.rb.src, i.p)\n\t\ti.next = i.rb.f.nextMain\n\t\treturn i.next(i)\n\t}\n\ti.p = next\n\treturn i.buf[:decomposeHangul(i.buf[:], i.rb.src.hangul(p))]\n}\n\nfunc nextDone(i *Iter) []byte {\n\treturn nil\n}\n\n// nextMulti is used for iterating over multi-segment decompositions\n// for decomposing normal forms.\nfunc nextMulti(i *Iter) []byte {\n\tj := 0\n\td := i.multiSeg\n\t// skip first rune\n\tfor j = 1; j < len(d) && !utf8.RuneStart(d[j]); j++ {\n\t}\n\tfor j < len(d) {\n\t\tinfo := i.rb.f.info(input{bytes: d}, j)\n\t\tif info.BoundaryBefore() {\n\t\t\ti.multiSeg = d[j:]\n\t\t\treturn d[:j]\n\t\t}\n\t\tj += int(info.size)\n\t}\n\t// treat last segment as normal decomposition\n\ti.next = i.rb.f.nextMain\n\treturn i.next(i)\n}\n\n// nextMultiNorm is used for iterating over multi-segment decompositions\n// for composing normal forms.\nfunc nextMultiNorm(i *Iter) []byte {\n\tj := 0\n\td := i.multiSeg\n\tfor j < len(d) {\n\t\tinfo := i.rb.f.info(input{bytes: d}, j)\n\t\tif info.BoundaryBefore() {\n\t\t\ti.rb.compose()\n\t\t\tseg := i.buf[:i.rb.flushCopy(i.buf[:])]\n\t\t\ti.rb.insertUnsafe(input{bytes: d}, j, info)\n\t\t\ti.multiSeg = d[j+int(info.size):]\n\t\t\treturn seg\n\t\t}\n\t\ti.rb.insertUnsafe(input{bytes: d}, j, info)\n\t\tj += int(info.size)\n\t}\n\ti.multiSeg = nil\n\ti.next = nextComposed\n\treturn doNormComposed(i)\n}\n\n// nextDecomposed is the implementation of Next for forms NFD and NFKD.\nfunc nextDecomposed(i *Iter) (next []byte) {\n\toutp := 0\n\tinCopyStart, outCopyStart := i.p, 0\n\tfor {\n\t\tif sz := int(i.info.size); sz <= 1 {\n\t\t\ti.rb.ss = 0\n\t\t\tp := i.p\n\t\t\ti.p++ // ASCII or illegal byte.  Either way, advance by 1.\n\t\t\tif i.p >= i.rb.nsrc {\n\t\t\t\ti.setDone()\n\t\t\t\treturn i.returnSlice(p, i.p)\n\t\t\t} else if i.rb.src._byte(i.p) < utf8.RuneSelf {\n\t\t\t\ti.next = i.asciiF\n\t\t\t\treturn i.returnSlice(p, i.p)\n\t\t\t}\n\t\t\toutp++\n\t\t} else if d := i.info.Decomposition(); d != nil {\n\t\t\t// Note: If leading CCC != 0, then len(d) == 2 and last is also non-zero.\n\t\t\t// Case 1: there is a leftover to copy.  In this case the decomposition\n\t\t\t// must begin with a modifier and should always be appended.\n\t\t\t// Case 2: no leftover. Simply return d if followed by a ccc == 0 value.\n\t\t\tp := outp + len(d)\n\t\t\tif outp > 0 {\n\t\t\t\ti.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)\n\t\t\t\t// TODO: this condition should not be possible, but we leave it\n\t\t\t\t// in for defensive purposes.\n\t\t\t\tif p > len(i.buf) {\n\t\t\t\t\treturn i.buf[:outp]\n\t\t\t\t}\n\t\t\t} else if i.info.multiSegment() {\n\t\t\t\t// outp must be 0 as multi-segment decompositions always\n\t\t\t\t// start a new segment.\n\t\t\t\tif i.multiSeg == nil {\n\t\t\t\t\ti.multiSeg = d\n\t\t\t\t\ti.next = nextMulti\n\t\t\t\t\treturn nextMulti(i)\n\t\t\t\t}\n\t\t\t\t// We are in the last segment.  Treat as normal decomposition.\n\t\t\t\td = i.multiSeg\n\t\t\t\ti.multiSeg = nil\n\t\t\t\tp = len(d)\n\t\t\t}\n\t\t\tprevCC := i.info.tccc\n\t\t\tif i.p += sz; i.p >= i.rb.nsrc {\n\t\t\t\ti.setDone()\n\t\t\t\ti.info = Properties{} // Force BoundaryBefore to succeed.\n\t\t\t} else {\n\t\t\t\ti.info = i.rb.f.info(i.rb.src, i.p)\n\t\t\t}\n\t\t\tswitch i.rb.ss.next(i.info) {\n\t\t\tcase ssOverflow:\n\t\t\t\ti.next = nextCGJDecompose\n\t\t\t\tfallthrough\n\t\t\tcase ssStarter:\n\t\t\t\tif outp > 0 {\n\t\t\t\t\tcopy(i.buf[outp:], d)\n\t\t\t\t\treturn i.buf[:p]\n\t\t\t\t}\n\t\t\t\treturn d\n\t\t\t}\n\t\t\tcopy(i.buf[outp:], d)\n\t\t\toutp = p\n\t\t\tinCopyStart, outCopyStart = i.p, outp\n\t\t\tif i.info.ccc < prevCC {\n\t\t\t\tgoto doNorm\n\t\t\t}\n\t\t\tcontinue\n\t\t} else if r := i.rb.src.hangul(i.p); r != 0 {\n\t\t\toutp = decomposeHangul(i.buf[:], r)\n\t\t\ti.p += hangulUTF8Size\n\t\t\tinCopyStart, outCopyStart = i.p, outp\n\t\t\tif i.p >= i.rb.nsrc {\n\t\t\t\ti.setDone()\n\t\t\t\tbreak\n\t\t\t} else if i.rb.src.hangul(i.p) != 0 {\n\t\t\t\ti.next = nextHangul\n\t\t\t\treturn i.buf[:outp]\n\t\t\t}\n\t\t} else {\n\t\t\tp := outp + sz\n\t\t\tif p > len(i.buf) {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\toutp = p\n\t\t\ti.p += sz\n\t\t}\n\t\tif i.p >= i.rb.nsrc {\n\t\t\ti.setDone()\n\t\t\tbreak\n\t\t}\n\t\tprevCC := i.info.tccc\n\t\ti.info = i.rb.f.info(i.rb.src, i.p)\n\t\tif v := i.rb.ss.next(i.info); v == ssStarter {\n\t\t\tbreak\n\t\t} else if v == ssOverflow {\n\t\t\ti.next = nextCGJDecompose\n\t\t\tbreak\n\t\t}\n\t\tif i.info.ccc < prevCC {\n\t\t\tgoto doNorm\n\t\t}\n\t}\n\tif outCopyStart == 0 {\n\t\treturn i.returnSlice(inCopyStart, i.p)\n\t} else if inCopyStart < i.p {\n\t\ti.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)\n\t}\n\treturn i.buf[:outp]\ndoNorm:\n\t// Insert what we have decomposed so far in the reorderBuffer.\n\t// As we will only reorder, there will always be enough room.\n\ti.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)\n\ti.rb.insertDecomposed(i.buf[0:outp])\n\treturn doNormDecomposed(i)\n}\n\nfunc doNormDecomposed(i *Iter) []byte {\n\tfor {\n\t\ti.rb.insertUnsafe(i.rb.src, i.p, i.info)\n\t\tif i.p += int(i.info.size); i.p >= i.rb.nsrc {\n\t\t\ti.setDone()\n\t\t\tbreak\n\t\t}\n\t\ti.info = i.rb.f.info(i.rb.src, i.p)\n\t\tif i.info.ccc == 0 {\n\t\t\tbreak\n\t\t}\n\t\tif s := i.rb.ss.next(i.info); s == ssOverflow {\n\t\t\ti.next = nextCGJDecompose\n\t\t\tbreak\n\t\t}\n\t}\n\t// new segment or too many combining characters: exit normalization\n\treturn i.buf[:i.rb.flushCopy(i.buf[:])]\n}\n\nfunc nextCGJDecompose(i *Iter) []byte {\n\ti.rb.ss = 0\n\ti.rb.insertCGJ()\n\ti.next = nextDecomposed\n\ti.rb.ss.first(i.info)\n\tbuf := doNormDecomposed(i)\n\treturn buf\n}\n\n// nextComposed is the implementation of Next for forms NFC and NFKC.\nfunc nextComposed(i *Iter) []byte {\n\toutp, startp := 0, i.p\n\tvar prevCC uint8\n\tfor {\n\t\tif !i.info.isYesC() {\n\t\t\tgoto doNorm\n\t\t}\n\t\tprevCC = i.info.tccc\n\t\tsz := int(i.info.size)\n\t\tif sz == 0 {\n\t\t\tsz = 1 // illegal rune: copy byte-by-byte\n\t\t}\n\t\tp := outp + sz\n\t\tif p > len(i.buf) {\n\t\t\tbreak\n\t\t}\n\t\toutp = p\n\t\ti.p += sz\n\t\tif i.p >= i.rb.nsrc {\n\t\t\ti.setDone()\n\t\t\tbreak\n\t\t} else if i.rb.src._byte(i.p) < utf8.RuneSelf {\n\t\t\ti.rb.ss = 0\n\t\t\ti.next = i.asciiF\n\t\t\tbreak\n\t\t}\n\t\ti.info = i.rb.f.info(i.rb.src, i.p)\n\t\tif v := i.rb.ss.next(i.info); v == ssStarter {\n\t\t\tbreak\n\t\t} else if v == ssOverflow {\n\t\t\ti.next = nextCGJCompose\n\t\t\tbreak\n\t\t}\n\t\tif i.info.ccc < prevCC {\n\t\t\tgoto doNorm\n\t\t}\n\t}\n\treturn i.returnSlice(startp, i.p)\ndoNorm:\n\t// reset to start position\n\ti.p = startp\n\ti.info = i.rb.f.info(i.rb.src, i.p)\n\ti.rb.ss.first(i.info)\n\tif i.info.multiSegment() {\n\t\td := i.info.Decomposition()\n\t\tinfo := i.rb.f.info(input{bytes: d}, 0)\n\t\ti.rb.insertUnsafe(input{bytes: d}, 0, info)\n\t\ti.multiSeg = d[int(info.size):]\n\t\ti.next = nextMultiNorm\n\t\treturn nextMultiNorm(i)\n\t}\n\ti.rb.ss.first(i.info)\n\ti.rb.insertUnsafe(i.rb.src, i.p, i.info)\n\treturn doNormComposed(i)\n}\n\nfunc doNormComposed(i *Iter) []byte {\n\t// First rune should already be inserted.\n\tfor {\n\t\tif i.p += int(i.info.size); i.p >= i.rb.nsrc {\n\t\t\ti.setDone()\n\t\t\tbreak\n\t\t}\n\t\ti.info = i.rb.f.info(i.rb.src, i.p)\n\t\tif s := i.rb.ss.next(i.info); s == ssStarter {\n\t\t\tbreak\n\t\t} else if s == ssOverflow {\n\t\t\ti.next = nextCGJCompose\n\t\t\tbreak\n\t\t}\n\t\ti.rb.insertUnsafe(i.rb.src, i.p, i.info)\n\t}\n\ti.rb.compose()\n\tseg := i.buf[:i.rb.flushCopy(i.buf[:])]\n\treturn seg\n}\n\nfunc nextCGJCompose(i *Iter) []byte {\n\ti.rb.ss = 0 // instead of first\n\ti.rb.insertCGJ()\n\ti.next = nextComposed\n\t// Note that we treat any rune with nLeadingNonStarters > 0 as a non-starter,\n\t// even if they are not. This is particularly dubious for U+FF9E and UFF9A.\n\t// If we ever change that, insert a check here.\n\ti.rb.ss.first(i.info)\n\ti.rb.insertUnsafe(i.rb.src, i.p, i.info)\n\treturn doNormComposed(i)\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/normalize.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Note: the file data_test.go that is generated should not be checked in.\n//go:generate go run maketables.go triegen.go\n//go:generate go test -tags test\n\n// Package norm contains types and functions for normalizing Unicode strings.\npackage norm // import \"golang.org/x/text/unicode/norm\"\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/transform\"\n)\n\n// A Form denotes a canonical representation of Unicode code points.\n// The Unicode-defined normalization and equivalence forms are:\n//\n//   NFC   Unicode Normalization Form C\n//   NFD   Unicode Normalization Form D\n//   NFKC  Unicode Normalization Form KC\n//   NFKD  Unicode Normalization Form KD\n//\n// For a Form f, this documentation uses the notation f(x) to mean\n// the bytes or string x converted to the given form.\n// A position n in x is called a boundary if conversion to the form can\n// proceed independently on both sides:\n//   f(x) == append(f(x[0:n]), f(x[n:])...)\n//\n// References: https://unicode.org/reports/tr15/ and\n// https://unicode.org/notes/tn5/.\ntype Form int\n\nconst (\n\tNFC Form = iota\n\tNFD\n\tNFKC\n\tNFKD\n)\n\n// Bytes returns f(b). May return b if f(b) = b.\nfunc (f Form) Bytes(b []byte) []byte {\n\tsrc := inputBytes(b)\n\tft := formTable[f]\n\tn, ok := ft.quickSpan(src, 0, len(b), true)\n\tif ok {\n\t\treturn b\n\t}\n\tout := make([]byte, n, len(b))\n\tcopy(out, b[0:n])\n\trb := reorderBuffer{f: *ft, src: src, nsrc: len(b), out: out, flushF: appendFlush}\n\treturn doAppendInner(&rb, n)\n}\n\n// String returns f(s).\nfunc (f Form) String(s string) string {\n\tsrc := inputString(s)\n\tft := formTable[f]\n\tn, ok := ft.quickSpan(src, 0, len(s), true)\n\tif ok {\n\t\treturn s\n\t}\n\tout := make([]byte, n, len(s))\n\tcopy(out, s[0:n])\n\trb := reorderBuffer{f: *ft, src: src, nsrc: len(s), out: out, flushF: appendFlush}\n\treturn string(doAppendInner(&rb, n))\n}\n\n// IsNormal returns true if b == f(b).\nfunc (f Form) IsNormal(b []byte) bool {\n\tsrc := inputBytes(b)\n\tft := formTable[f]\n\tbp, ok := ft.quickSpan(src, 0, len(b), true)\n\tif ok {\n\t\treturn true\n\t}\n\trb := reorderBuffer{f: *ft, src: src, nsrc: len(b)}\n\trb.setFlusher(nil, cmpNormalBytes)\n\tfor bp < len(b) {\n\t\trb.out = b[bp:]\n\t\tif bp = decomposeSegment(&rb, bp, true); bp < 0 {\n\t\t\treturn false\n\t\t}\n\t\tbp, _ = rb.f.quickSpan(rb.src, bp, len(b), true)\n\t}\n\treturn true\n}\n\nfunc cmpNormalBytes(rb *reorderBuffer) bool {\n\tb := rb.out\n\tfor i := 0; i < rb.nrune; i++ {\n\t\tinfo := rb.rune[i]\n\t\tif int(info.size) > len(b) {\n\t\t\treturn false\n\t\t}\n\t\tp := info.pos\n\t\tpe := p + info.size\n\t\tfor ; p < pe; p++ {\n\t\t\tif b[0] != rb.byte[p] {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tb = b[1:]\n\t\t}\n\t}\n\treturn true\n}\n\n// IsNormalString returns true if s == f(s).\nfunc (f Form) IsNormalString(s string) bool {\n\tsrc := inputString(s)\n\tft := formTable[f]\n\tbp, ok := ft.quickSpan(src, 0, len(s), true)\n\tif ok {\n\t\treturn true\n\t}\n\trb := reorderBuffer{f: *ft, src: src, nsrc: len(s)}\n\trb.setFlusher(nil, func(rb *reorderBuffer) bool {\n\t\tfor i := 0; i < rb.nrune; i++ {\n\t\t\tinfo := rb.rune[i]\n\t\t\tif bp+int(info.size) > len(s) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tp := info.pos\n\t\t\tpe := p + info.size\n\t\t\tfor ; p < pe; p++ {\n\t\t\t\tif s[bp] != rb.byte[p] {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tbp++\n\t\t\t}\n\t\t}\n\t\treturn true\n\t})\n\tfor bp < len(s) {\n\t\tif bp = decomposeSegment(&rb, bp, true); bp < 0 {\n\t\t\treturn false\n\t\t}\n\t\tbp, _ = rb.f.quickSpan(rb.src, bp, len(s), true)\n\t}\n\treturn true\n}\n\n// patchTail fixes a case where a rune may be incorrectly normalized\n// if it is followed by illegal continuation bytes. It returns the\n// patched buffer and whether the decomposition is still in progress.\nfunc patchTail(rb *reorderBuffer) bool {\n\tinfo, p := lastRuneStart(&rb.f, rb.out)\n\tif p == -1 || info.size == 0 {\n\t\treturn true\n\t}\n\tend := p + int(info.size)\n\textra := len(rb.out) - end\n\tif extra > 0 {\n\t\t// Potentially allocating memory. However, this only\n\t\t// happens with ill-formed UTF-8.\n\t\tx := make([]byte, 0)\n\t\tx = append(x, rb.out[len(rb.out)-extra:]...)\n\t\trb.out = rb.out[:end]\n\t\tdecomposeToLastBoundary(rb)\n\t\trb.doFlush()\n\t\trb.out = append(rb.out, x...)\n\t\treturn false\n\t}\n\tbuf := rb.out[p:]\n\trb.out = rb.out[:p]\n\tdecomposeToLastBoundary(rb)\n\tif s := rb.ss.next(info); s == ssStarter {\n\t\trb.doFlush()\n\t\trb.ss.first(info)\n\t} else if s == ssOverflow {\n\t\trb.doFlush()\n\t\trb.insertCGJ()\n\t\trb.ss = 0\n\t}\n\trb.insertUnsafe(inputBytes(buf), 0, info)\n\treturn true\n}\n\nfunc appendQuick(rb *reorderBuffer, i int) int {\n\tif rb.nsrc == i {\n\t\treturn i\n\t}\n\tend, _ := rb.f.quickSpan(rb.src, i, rb.nsrc, true)\n\trb.out = rb.src.appendSlice(rb.out, i, end)\n\treturn end\n}\n\n// Append returns f(append(out, b...)).\n// The buffer out must be nil, empty, or equal to f(out).\nfunc (f Form) Append(out []byte, src ...byte) []byte {\n\treturn f.doAppend(out, inputBytes(src), len(src))\n}\n\nfunc (f Form) doAppend(out []byte, src input, n int) []byte {\n\tif n == 0 {\n\t\treturn out\n\t}\n\tft := formTable[f]\n\t// Attempt to do a quickSpan first so we can avoid initializing the reorderBuffer.\n\tif len(out) == 0 {\n\t\tp, _ := ft.quickSpan(src, 0, n, true)\n\t\tout = src.appendSlice(out, 0, p)\n\t\tif p == n {\n\t\t\treturn out\n\t\t}\n\t\trb := reorderBuffer{f: *ft, src: src, nsrc: n, out: out, flushF: appendFlush}\n\t\treturn doAppendInner(&rb, p)\n\t}\n\trb := reorderBuffer{f: *ft, src: src, nsrc: n}\n\treturn doAppend(&rb, out, 0)\n}\n\nfunc doAppend(rb *reorderBuffer, out []byte, p int) []byte {\n\trb.setFlusher(out, appendFlush)\n\tsrc, n := rb.src, rb.nsrc\n\tdoMerge := len(out) > 0\n\tif q := src.skipContinuationBytes(p); q > p {\n\t\t// Move leading non-starters to destination.\n\t\trb.out = src.appendSlice(rb.out, p, q)\n\t\tp = q\n\t\tdoMerge = patchTail(rb)\n\t}\n\tfd := &rb.f\n\tif doMerge {\n\t\tvar info Properties\n\t\tif p < n {\n\t\t\tinfo = fd.info(src, p)\n\t\t\tif !info.BoundaryBefore() || info.nLeadingNonStarters() > 0 {\n\t\t\t\tif p == 0 {\n\t\t\t\t\tdecomposeToLastBoundary(rb)\n\t\t\t\t}\n\t\t\t\tp = decomposeSegment(rb, p, true)\n\t\t\t}\n\t\t}\n\t\tif info.size == 0 {\n\t\t\trb.doFlush()\n\t\t\t// Append incomplete UTF-8 encoding.\n\t\t\treturn src.appendSlice(rb.out, p, n)\n\t\t}\n\t\tif rb.nrune > 0 {\n\t\t\treturn doAppendInner(rb, p)\n\t\t}\n\t}\n\tp = appendQuick(rb, p)\n\treturn doAppendInner(rb, p)\n}\n\nfunc doAppendInner(rb *reorderBuffer, p int) []byte {\n\tfor n := rb.nsrc; p < n; {\n\t\tp = decomposeSegment(rb, p, true)\n\t\tp = appendQuick(rb, p)\n\t}\n\treturn rb.out\n}\n\n// AppendString returns f(append(out, []byte(s))).\n// The buffer out must be nil, empty, or equal to f(out).\nfunc (f Form) AppendString(out []byte, src string) []byte {\n\treturn f.doAppend(out, inputString(src), len(src))\n}\n\n// QuickSpan returns a boundary n such that b[0:n] == f(b[0:n]).\n// It is not guaranteed to return the largest such n.\nfunc (f Form) QuickSpan(b []byte) int {\n\tn, _ := formTable[f].quickSpan(inputBytes(b), 0, len(b), true)\n\treturn n\n}\n\n// Span implements transform.SpanningTransformer. It returns a boundary n such\n// that b[0:n] == f(b[0:n]). It is not guaranteed to return the largest such n.\nfunc (f Form) Span(b []byte, atEOF bool) (n int, err error) {\n\tn, ok := formTable[f].quickSpan(inputBytes(b), 0, len(b), atEOF)\n\tif n < len(b) {\n\t\tif !ok {\n\t\t\terr = transform.ErrEndOfSpan\n\t\t} else {\n\t\t\terr = transform.ErrShortSrc\n\t\t}\n\t}\n\treturn n, err\n}\n\n// SpanString returns a boundary n such that s[0:n] == f(s[0:n]).\n// It is not guaranteed to return the largest such n.\nfunc (f Form) SpanString(s string, atEOF bool) (n int, err error) {\n\tn, ok := formTable[f].quickSpan(inputString(s), 0, len(s), atEOF)\n\tif n < len(s) {\n\t\tif !ok {\n\t\t\terr = transform.ErrEndOfSpan\n\t\t} else {\n\t\t\terr = transform.ErrShortSrc\n\t\t}\n\t}\n\treturn n, err\n}\n\n// quickSpan returns a boundary n such that src[0:n] == f(src[0:n]) and\n// whether any non-normalized parts were found. If atEOF is false, n will\n// not point past the last segment if this segment might be become\n// non-normalized by appending other runes.\nfunc (f *formInfo) quickSpan(src input, i, end int, atEOF bool) (n int, ok bool) {\n\tvar lastCC uint8\n\tss := streamSafe(0)\n\tlastSegStart := i\n\tfor n = end; i < n; {\n\t\tif j := src.skipASCII(i, n); i != j {\n\t\t\ti = j\n\t\t\tlastSegStart = i - 1\n\t\t\tlastCC = 0\n\t\t\tss = 0\n\t\t\tcontinue\n\t\t}\n\t\tinfo := f.info(src, i)\n\t\tif info.size == 0 {\n\t\t\tif atEOF {\n\t\t\t\t// include incomplete runes\n\t\t\t\treturn n, true\n\t\t\t}\n\t\t\treturn lastSegStart, true\n\t\t}\n\t\t// This block needs to be before the next, because it is possible to\n\t\t// have an overflow for runes that are starters (e.g. with U+FF9E).\n\t\tswitch ss.next(info) {\n\t\tcase ssStarter:\n\t\t\tlastSegStart = i\n\t\tcase ssOverflow:\n\t\t\treturn lastSegStart, false\n\t\tcase ssSuccess:\n\t\t\tif lastCC > info.ccc {\n\t\t\t\treturn lastSegStart, false\n\t\t\t}\n\t\t}\n\t\tif f.composing {\n\t\t\tif !info.isYesC() {\n\t\t\t\tbreak\n\t\t\t}\n\t\t} else {\n\t\t\tif !info.isYesD() {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tlastCC = info.ccc\n\t\ti += int(info.size)\n\t}\n\tif i == n {\n\t\tif !atEOF {\n\t\t\tn = lastSegStart\n\t\t}\n\t\treturn n, true\n\t}\n\treturn lastSegStart, false\n}\n\n// QuickSpanString returns a boundary n such that s[0:n] == f(s[0:n]).\n// It is not guaranteed to return the largest such n.\nfunc (f Form) QuickSpanString(s string) int {\n\tn, _ := formTable[f].quickSpan(inputString(s), 0, len(s), true)\n\treturn n\n}\n\n// FirstBoundary returns the position i of the first boundary in b\n// or -1 if b contains no boundary.\nfunc (f Form) FirstBoundary(b []byte) int {\n\treturn f.firstBoundary(inputBytes(b), len(b))\n}\n\nfunc (f Form) firstBoundary(src input, nsrc int) int {\n\ti := src.skipContinuationBytes(0)\n\tif i >= nsrc {\n\t\treturn -1\n\t}\n\tfd := formTable[f]\n\tss := streamSafe(0)\n\t// We should call ss.first here, but we can't as the first rune is\n\t// skipped already. This means FirstBoundary can't really determine\n\t// CGJ insertion points correctly. Luckily it doesn't have to.\n\tfor {\n\t\tinfo := fd.info(src, i)\n\t\tif info.size == 0 {\n\t\t\treturn -1\n\t\t}\n\t\tif s := ss.next(info); s != ssSuccess {\n\t\t\treturn i\n\t\t}\n\t\ti += int(info.size)\n\t\tif i >= nsrc {\n\t\t\tif !info.BoundaryAfter() && !ss.isMax() {\n\t\t\t\treturn -1\n\t\t\t}\n\t\t\treturn nsrc\n\t\t}\n\t}\n}\n\n// FirstBoundaryInString returns the position i of the first boundary in s\n// or -1 if s contains no boundary.\nfunc (f Form) FirstBoundaryInString(s string) int {\n\treturn f.firstBoundary(inputString(s), len(s))\n}\n\n// NextBoundary reports the index of the boundary between the first and next\n// segment in b or -1 if atEOF is false and there are not enough bytes to\n// determine this boundary.\nfunc (f Form) NextBoundary(b []byte, atEOF bool) int {\n\treturn f.nextBoundary(inputBytes(b), len(b), atEOF)\n}\n\n// NextBoundaryInString reports the index of the boundary between the first and\n// next segment in b or -1 if atEOF is false and there are not enough bytes to\n// determine this boundary.\nfunc (f Form) NextBoundaryInString(s string, atEOF bool) int {\n\treturn f.nextBoundary(inputString(s), len(s), atEOF)\n}\n\nfunc (f Form) nextBoundary(src input, nsrc int, atEOF bool) int {\n\tif nsrc == 0 {\n\t\tif atEOF {\n\t\t\treturn 0\n\t\t}\n\t\treturn -1\n\t}\n\tfd := formTable[f]\n\tinfo := fd.info(src, 0)\n\tif info.size == 0 {\n\t\tif atEOF {\n\t\t\treturn 1\n\t\t}\n\t\treturn -1\n\t}\n\tss := streamSafe(0)\n\tss.first(info)\n\n\tfor i := int(info.size); i < nsrc; i += int(info.size) {\n\t\tinfo = fd.info(src, i)\n\t\tif info.size == 0 {\n\t\t\tif atEOF {\n\t\t\t\treturn i\n\t\t\t}\n\t\t\treturn -1\n\t\t}\n\t\t// TODO: Using streamSafe to determine the boundary isn't the same as\n\t\t// using BoundaryBefore. Determine which should be used.\n\t\tif s := ss.next(info); s != ssSuccess {\n\t\t\treturn i\n\t\t}\n\t}\n\tif !atEOF && !info.BoundaryAfter() && !ss.isMax() {\n\t\treturn -1\n\t}\n\treturn nsrc\n}\n\n// LastBoundary returns the position i of the last boundary in b\n// or -1 if b contains no boundary.\nfunc (f Form) LastBoundary(b []byte) int {\n\treturn lastBoundary(formTable[f], b)\n}\n\nfunc lastBoundary(fd *formInfo, b []byte) int {\n\ti := len(b)\n\tinfo, p := lastRuneStart(fd, b)\n\tif p == -1 {\n\t\treturn -1\n\t}\n\tif info.size == 0 { // ends with incomplete rune\n\t\tif p == 0 { // starts with incomplete rune\n\t\t\treturn -1\n\t\t}\n\t\ti = p\n\t\tinfo, p = lastRuneStart(fd, b[:i])\n\t\tif p == -1 { // incomplete UTF-8 encoding or non-starter bytes without a starter\n\t\t\treturn i\n\t\t}\n\t}\n\tif p+int(info.size) != i { // trailing non-starter bytes: illegal UTF-8\n\t\treturn i\n\t}\n\tif info.BoundaryAfter() {\n\t\treturn i\n\t}\n\tss := streamSafe(0)\n\tv := ss.backwards(info)\n\tfor i = p; i >= 0 && v != ssStarter; i = p {\n\t\tinfo, p = lastRuneStart(fd, b[:i])\n\t\tif v = ss.backwards(info); v == ssOverflow {\n\t\t\tbreak\n\t\t}\n\t\tif p+int(info.size) != i {\n\t\t\tif p == -1 { // no boundary found\n\t\t\t\treturn -1\n\t\t\t}\n\t\t\treturn i // boundary after an illegal UTF-8 encoding\n\t\t}\n\t}\n\treturn i\n}\n\n// decomposeSegment scans the first segment in src into rb. It inserts 0x034f\n// (Grapheme Joiner) when it encounters a sequence of more than 30 non-starters\n// and returns the number of bytes consumed from src or iShortDst or iShortSrc.\nfunc decomposeSegment(rb *reorderBuffer, sp int, atEOF bool) int {\n\t// Force one character to be consumed.\n\tinfo := rb.f.info(rb.src, sp)\n\tif info.size == 0 {\n\t\treturn 0\n\t}\n\tif s := rb.ss.next(info); s == ssStarter {\n\t\t// TODO: this could be removed if we don't support merging.\n\t\tif rb.nrune > 0 {\n\t\t\tgoto end\n\t\t}\n\t} else if s == ssOverflow {\n\t\trb.insertCGJ()\n\t\tgoto end\n\t}\n\tif err := rb.insertFlush(rb.src, sp, info); err != iSuccess {\n\t\treturn int(err)\n\t}\n\tfor {\n\t\tsp += int(info.size)\n\t\tif sp >= rb.nsrc {\n\t\t\tif !atEOF && !info.BoundaryAfter() {\n\t\t\t\treturn int(iShortSrc)\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\tinfo = rb.f.info(rb.src, sp)\n\t\tif info.size == 0 {\n\t\t\tif !atEOF {\n\t\t\t\treturn int(iShortSrc)\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\tif s := rb.ss.next(info); s == ssStarter {\n\t\t\tbreak\n\t\t} else if s == ssOverflow {\n\t\t\trb.insertCGJ()\n\t\t\tbreak\n\t\t}\n\t\tif err := rb.insertFlush(rb.src, sp, info); err != iSuccess {\n\t\t\treturn int(err)\n\t\t}\n\t}\nend:\n\tif !rb.doFlush() {\n\t\treturn int(iShortDst)\n\t}\n\treturn sp\n}\n\n// lastRuneStart returns the runeInfo and position of the last\n// rune in buf or the zero runeInfo and -1 if no rune was found.\nfunc lastRuneStart(fd *formInfo, buf []byte) (Properties, int) {\n\tp := len(buf) - 1\n\tfor ; p >= 0 && !utf8.RuneStart(buf[p]); p-- {\n\t}\n\tif p < 0 {\n\t\treturn Properties{}, -1\n\t}\n\treturn fd.info(inputBytes(buf), p), p\n}\n\n// decomposeToLastBoundary finds an open segment at the end of the buffer\n// and scans it into rb. Returns the buffer minus the last segment.\nfunc decomposeToLastBoundary(rb *reorderBuffer) {\n\tfd := &rb.f\n\tinfo, i := lastRuneStart(fd, rb.out)\n\tif int(info.size) != len(rb.out)-i {\n\t\t// illegal trailing continuation bytes\n\t\treturn\n\t}\n\tif info.BoundaryAfter() {\n\t\treturn\n\t}\n\tvar add [maxNonStarters + 1]Properties // stores runeInfo in reverse order\n\tpadd := 0\n\tss := streamSafe(0)\n\tp := len(rb.out)\n\tfor {\n\t\tadd[padd] = info\n\t\tv := ss.backwards(info)\n\t\tif v == ssOverflow {\n\t\t\t// Note that if we have an overflow, it the string we are appending to\n\t\t\t// is not correctly normalized. In this case the behavior is undefined.\n\t\t\tbreak\n\t\t}\n\t\tpadd++\n\t\tp -= int(info.size)\n\t\tif v == ssStarter || p < 0 {\n\t\t\tbreak\n\t\t}\n\t\tinfo, i = lastRuneStart(fd, rb.out[:p])\n\t\tif int(info.size) != p-i {\n\t\t\tbreak\n\t\t}\n\t}\n\trb.ss = ss\n\t// Copy bytes for insertion as we may need to overwrite rb.out.\n\tvar buf [maxBufferSize * utf8.UTFMax]byte\n\tcp := buf[:copy(buf[:], rb.out[p:])]\n\trb.out = rb.out[:p]\n\tfor padd--; padd >= 0; padd-- {\n\t\tinfo = add[padd]\n\t\trb.insertUnsafe(inputBytes(cp), 0, info)\n\t\tcp = cp[info.size:]\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/readwriter.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage norm\n\nimport \"io\"\n\ntype normWriter struct {\n\trb  reorderBuffer\n\tw   io.Writer\n\tbuf []byte\n}\n\n// Write implements the standard write interface.  If the last characters are\n// not at a normalization boundary, the bytes will be buffered for the next\n// write. The remaining bytes will be written on close.\nfunc (w *normWriter) Write(data []byte) (n int, err error) {\n\t// Process data in pieces to keep w.buf size bounded.\n\tconst chunk = 4000\n\n\tfor len(data) > 0 {\n\t\t// Normalize into w.buf.\n\t\tm := len(data)\n\t\tif m > chunk {\n\t\t\tm = chunk\n\t\t}\n\t\tw.rb.src = inputBytes(data[:m])\n\t\tw.rb.nsrc = m\n\t\tw.buf = doAppend(&w.rb, w.buf, 0)\n\t\tdata = data[m:]\n\t\tn += m\n\n\t\t// Write out complete prefix, save remainder.\n\t\t// Note that lastBoundary looks back at most 31 runes.\n\t\ti := lastBoundary(&w.rb.f, w.buf)\n\t\tif i == -1 {\n\t\t\ti = 0\n\t\t}\n\t\tif i > 0 {\n\t\t\tif _, err = w.w.Write(w.buf[:i]); err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tbn := copy(w.buf, w.buf[i:])\n\t\t\tw.buf = w.buf[:bn]\n\t\t}\n\t}\n\treturn n, err\n}\n\n// Close forces data that remains in the buffer to be written.\nfunc (w *normWriter) Close() error {\n\tif len(w.buf) > 0 {\n\t\t_, err := w.w.Write(w.buf)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// Writer returns a new writer that implements Write(b)\n// by writing f(b) to w. The returned writer may use an\n// internal buffer to maintain state across Write calls.\n// Calling its Close method writes any buffered data to w.\nfunc (f Form) Writer(w io.Writer) io.WriteCloser {\n\twr := &normWriter{rb: reorderBuffer{}, w: w}\n\twr.rb.init(f, nil)\n\treturn wr\n}\n\ntype normReader struct {\n\trb           reorderBuffer\n\tr            io.Reader\n\tinbuf        []byte\n\toutbuf       []byte\n\tbufStart     int\n\tlastBoundary int\n\terr          error\n}\n\n// Read implements the standard read interface.\nfunc (r *normReader) Read(p []byte) (int, error) {\n\tfor {\n\t\tif r.lastBoundary-r.bufStart > 0 {\n\t\t\tn := copy(p, r.outbuf[r.bufStart:r.lastBoundary])\n\t\t\tr.bufStart += n\n\t\t\tif r.lastBoundary-r.bufStart > 0 {\n\t\t\t\treturn n, nil\n\t\t\t}\n\t\t\treturn n, r.err\n\t\t}\n\t\tif r.err != nil {\n\t\t\treturn 0, r.err\n\t\t}\n\t\toutn := copy(r.outbuf, r.outbuf[r.lastBoundary:])\n\t\tr.outbuf = r.outbuf[0:outn]\n\t\tr.bufStart = 0\n\n\t\tn, err := r.r.Read(r.inbuf)\n\t\tr.rb.src = inputBytes(r.inbuf[0:n])\n\t\tr.rb.nsrc, r.err = n, err\n\t\tif n > 0 {\n\t\t\tr.outbuf = doAppend(&r.rb, r.outbuf, 0)\n\t\t}\n\t\tif err == io.EOF {\n\t\t\tr.lastBoundary = len(r.outbuf)\n\t\t} else {\n\t\t\tr.lastBoundary = lastBoundary(&r.rb.f, r.outbuf)\n\t\t\tif r.lastBoundary == -1 {\n\t\t\t\tr.lastBoundary = 0\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Reader returns a new reader that implements Read\n// by reading data from r and returning f(data).\nfunc (f Form) Reader(r io.Reader) io.Reader {\n\tconst chunk = 4000\n\tbuf := make([]byte, chunk)\n\trr := &normReader{rb: reorderBuffer{}, r: r, inbuf: buf}\n\trr.rb.init(f, buf)\n\treturn rr\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/tables10.0.0.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\n// +build go1.10,!go1.13\n\npackage norm\n\nimport \"sync\"\n\nconst (\n\t// Version is the Unicode edition from which the tables are derived.\n\tVersion = \"10.0.0\"\n\n\t// MaxTransformChunkSize indicates the maximum number of bytes that Transform\n\t// may need to write atomically for any Form. Making a destination buffer at\n\t// least this size ensures that Transform can always make progress and that\n\t// the user does not need to grow the buffer on an ErrShortDst.\n\tMaxTransformChunkSize = 35 + maxNonStarters*4\n)\n\nvar ccc = [55]uint8{\n\t0, 1, 7, 8, 9, 10, 11, 12,\n\t13, 14, 15, 16, 17, 18, 19, 20,\n\t21, 22, 23, 24, 25, 26, 27, 28,\n\t29, 30, 31, 32, 33, 34, 35, 36,\n\t84, 91, 103, 107, 118, 122, 129, 130,\n\t132, 202, 214, 216, 218, 220, 222, 224,\n\t226, 228, 230, 232, 233, 234, 240,\n}\n\nconst (\n\tfirstMulti            = 0x186D\n\tfirstCCC              = 0x2C9E\n\tendMulti              = 0x2F60\n\tfirstLeadingCCC       = 0x49AE\n\tfirstCCCZeroExcept    = 0x4A78\n\tfirstStarterWithNLead = 0x4A9F\n\tlastDecomp            = 0x4AA1\n\tmaxDecomp             = 0x8000\n)\n\n// decomps: 19105 bytes\nvar decomps = [...]byte{\n\t// Bytes 0 - 3f\n\t0x00, 0x41, 0x20, 0x41, 0x21, 0x41, 0x22, 0x41,\n\t0x23, 0x41, 0x24, 0x41, 0x25, 0x41, 0x26, 0x41,\n\t0x27, 0x41, 0x28, 0x41, 0x29, 0x41, 0x2A, 0x41,\n\t0x2B, 0x41, 0x2C, 0x41, 0x2D, 0x41, 0x2E, 0x41,\n\t0x2F, 0x41, 0x30, 0x41, 0x31, 0x41, 0x32, 0x41,\n\t0x33, 0x41, 0x34, 0x41, 0x35, 0x41, 0x36, 0x41,\n\t0x37, 0x41, 0x38, 0x41, 0x39, 0x41, 0x3A, 0x41,\n\t0x3B, 0x41, 0x3C, 0x41, 0x3D, 0x41, 0x3E, 0x41,\n\t// Bytes 40 - 7f\n\t0x3F, 0x41, 0x40, 0x41, 0x41, 0x41, 0x42, 0x41,\n\t0x43, 0x41, 0x44, 0x41, 0x45, 0x41, 0x46, 0x41,\n\t0x47, 0x41, 0x48, 0x41, 0x49, 0x41, 0x4A, 0x41,\n\t0x4B, 0x41, 0x4C, 0x41, 0x4D, 0x41, 0x4E, 0x41,\n\t0x4F, 0x41, 0x50, 0x41, 0x51, 0x41, 0x52, 0x41,\n\t0x53, 0x41, 0x54, 0x41, 0x55, 0x41, 0x56, 0x41,\n\t0x57, 0x41, 0x58, 0x41, 0x59, 0x41, 0x5A, 0x41,\n\t0x5B, 0x41, 0x5C, 0x41, 0x5D, 0x41, 0x5E, 0x41,\n\t// Bytes 80 - bf\n\t0x5F, 0x41, 0x60, 0x41, 0x61, 0x41, 0x62, 0x41,\n\t0x63, 0x41, 0x64, 0x41, 0x65, 0x41, 0x66, 0x41,\n\t0x67, 0x41, 0x68, 0x41, 0x69, 0x41, 0x6A, 0x41,\n\t0x6B, 0x41, 0x6C, 0x41, 0x6D, 0x41, 0x6E, 0x41,\n\t0x6F, 0x41, 0x70, 0x41, 0x71, 0x41, 0x72, 0x41,\n\t0x73, 0x41, 0x74, 0x41, 0x75, 0x41, 0x76, 0x41,\n\t0x77, 0x41, 0x78, 0x41, 0x79, 0x41, 0x7A, 0x41,\n\t0x7B, 0x41, 0x7C, 0x41, 0x7D, 0x41, 0x7E, 0x42,\n\t// Bytes c0 - ff\n\t0xC2, 0xA2, 0x42, 0xC2, 0xA3, 0x42, 0xC2, 0xA5,\n\t0x42, 0xC2, 0xA6, 0x42, 0xC2, 0xAC, 0x42, 0xC2,\n\t0xB7, 0x42, 0xC3, 0x86, 0x42, 0xC3, 0xB0, 0x42,\n\t0xC4, 0xA6, 0x42, 0xC4, 0xA7, 0x42, 0xC4, 0xB1,\n\t0x42, 0xC5, 0x8B, 0x42, 0xC5, 0x93, 0x42, 0xC6,\n\t0x8E, 0x42, 0xC6, 0x90, 0x42, 0xC6, 0xAB, 0x42,\n\t0xC8, 0xA2, 0x42, 0xC8, 0xB7, 0x42, 0xC9, 0x90,\n\t0x42, 0xC9, 0x91, 0x42, 0xC9, 0x92, 0x42, 0xC9,\n\t// Bytes 100 - 13f\n\t0x94, 0x42, 0xC9, 0x95, 0x42, 0xC9, 0x99, 0x42,\n\t0xC9, 0x9B, 0x42, 0xC9, 0x9C, 0x42, 0xC9, 0x9F,\n\t0x42, 0xC9, 0xA1, 0x42, 0xC9, 0xA3, 0x42, 0xC9,\n\t0xA5, 0x42, 0xC9, 0xA6, 0x42, 0xC9, 0xA8, 0x42,\n\t0xC9, 0xA9, 0x42, 0xC9, 0xAA, 0x42, 0xC9, 0xAB,\n\t0x42, 0xC9, 0xAD, 0x42, 0xC9, 0xAF, 0x42, 0xC9,\n\t0xB0, 0x42, 0xC9, 0xB1, 0x42, 0xC9, 0xB2, 0x42,\n\t0xC9, 0xB3, 0x42, 0xC9, 0xB4, 0x42, 0xC9, 0xB5,\n\t// Bytes 140 - 17f\n\t0x42, 0xC9, 0xB8, 0x42, 0xC9, 0xB9, 0x42, 0xC9,\n\t0xBB, 0x42, 0xCA, 0x81, 0x42, 0xCA, 0x82, 0x42,\n\t0xCA, 0x83, 0x42, 0xCA, 0x89, 0x42, 0xCA, 0x8A,\n\t0x42, 0xCA, 0x8B, 0x42, 0xCA, 0x8C, 0x42, 0xCA,\n\t0x90, 0x42, 0xCA, 0x91, 0x42, 0xCA, 0x92, 0x42,\n\t0xCA, 0x95, 0x42, 0xCA, 0x9D, 0x42, 0xCA, 0x9F,\n\t0x42, 0xCA, 0xB9, 0x42, 0xCE, 0x91, 0x42, 0xCE,\n\t0x92, 0x42, 0xCE, 0x93, 0x42, 0xCE, 0x94, 0x42,\n\t// Bytes 180 - 1bf\n\t0xCE, 0x95, 0x42, 0xCE, 0x96, 0x42, 0xCE, 0x97,\n\t0x42, 0xCE, 0x98, 0x42, 0xCE, 0x99, 0x42, 0xCE,\n\t0x9A, 0x42, 0xCE, 0x9B, 0x42, 0xCE, 0x9C, 0x42,\n\t0xCE, 0x9D, 0x42, 0xCE, 0x9E, 0x42, 0xCE, 0x9F,\n\t0x42, 0xCE, 0xA0, 0x42, 0xCE, 0xA1, 0x42, 0xCE,\n\t0xA3, 0x42, 0xCE, 0xA4, 0x42, 0xCE, 0xA5, 0x42,\n\t0xCE, 0xA6, 0x42, 0xCE, 0xA7, 0x42, 0xCE, 0xA8,\n\t0x42, 0xCE, 0xA9, 0x42, 0xCE, 0xB1, 0x42, 0xCE,\n\t// Bytes 1c0 - 1ff\n\t0xB2, 0x42, 0xCE, 0xB3, 0x42, 0xCE, 0xB4, 0x42,\n\t0xCE, 0xB5, 0x42, 0xCE, 0xB6, 0x42, 0xCE, 0xB7,\n\t0x42, 0xCE, 0xB8, 0x42, 0xCE, 0xB9, 0x42, 0xCE,\n\t0xBA, 0x42, 0xCE, 0xBB, 0x42, 0xCE, 0xBC, 0x42,\n\t0xCE, 0xBD, 0x42, 0xCE, 0xBE, 0x42, 0xCE, 0xBF,\n\t0x42, 0xCF, 0x80, 0x42, 0xCF, 0x81, 0x42, 0xCF,\n\t0x82, 0x42, 0xCF, 0x83, 0x42, 0xCF, 0x84, 0x42,\n\t0xCF, 0x85, 0x42, 0xCF, 0x86, 0x42, 0xCF, 0x87,\n\t// Bytes 200 - 23f\n\t0x42, 0xCF, 0x88, 0x42, 0xCF, 0x89, 0x42, 0xCF,\n\t0x9C, 0x42, 0xCF, 0x9D, 0x42, 0xD0, 0xBD, 0x42,\n\t0xD1, 0x8A, 0x42, 0xD1, 0x8C, 0x42, 0xD7, 0x90,\n\t0x42, 0xD7, 0x91, 0x42, 0xD7, 0x92, 0x42, 0xD7,\n\t0x93, 0x42, 0xD7, 0x94, 0x42, 0xD7, 0x9B, 0x42,\n\t0xD7, 0x9C, 0x42, 0xD7, 0x9D, 0x42, 0xD7, 0xA2,\n\t0x42, 0xD7, 0xA8, 0x42, 0xD7, 0xAA, 0x42, 0xD8,\n\t0xA1, 0x42, 0xD8, 0xA7, 0x42, 0xD8, 0xA8, 0x42,\n\t// Bytes 240 - 27f\n\t0xD8, 0xA9, 0x42, 0xD8, 0xAA, 0x42, 0xD8, 0xAB,\n\t0x42, 0xD8, 0xAC, 0x42, 0xD8, 0xAD, 0x42, 0xD8,\n\t0xAE, 0x42, 0xD8, 0xAF, 0x42, 0xD8, 0xB0, 0x42,\n\t0xD8, 0xB1, 0x42, 0xD8, 0xB2, 0x42, 0xD8, 0xB3,\n\t0x42, 0xD8, 0xB4, 0x42, 0xD8, 0xB5, 0x42, 0xD8,\n\t0xB6, 0x42, 0xD8, 0xB7, 0x42, 0xD8, 0xB8, 0x42,\n\t0xD8, 0xB9, 0x42, 0xD8, 0xBA, 0x42, 0xD9, 0x81,\n\t0x42, 0xD9, 0x82, 0x42, 0xD9, 0x83, 0x42, 0xD9,\n\t// Bytes 280 - 2bf\n\t0x84, 0x42, 0xD9, 0x85, 0x42, 0xD9, 0x86, 0x42,\n\t0xD9, 0x87, 0x42, 0xD9, 0x88, 0x42, 0xD9, 0x89,\n\t0x42, 0xD9, 0x8A, 0x42, 0xD9, 0xAE, 0x42, 0xD9,\n\t0xAF, 0x42, 0xD9, 0xB1, 0x42, 0xD9, 0xB9, 0x42,\n\t0xD9, 0xBA, 0x42, 0xD9, 0xBB, 0x42, 0xD9, 0xBE,\n\t0x42, 0xD9, 0xBF, 0x42, 0xDA, 0x80, 0x42, 0xDA,\n\t0x83, 0x42, 0xDA, 0x84, 0x42, 0xDA, 0x86, 0x42,\n\t0xDA, 0x87, 0x42, 0xDA, 0x88, 0x42, 0xDA, 0x8C,\n\t// Bytes 2c0 - 2ff\n\t0x42, 0xDA, 0x8D, 0x42, 0xDA, 0x8E, 0x42, 0xDA,\n\t0x91, 0x42, 0xDA, 0x98, 0x42, 0xDA, 0xA1, 0x42,\n\t0xDA, 0xA4, 0x42, 0xDA, 0xA6, 0x42, 0xDA, 0xA9,\n\t0x42, 0xDA, 0xAD, 0x42, 0xDA, 0xAF, 0x42, 0xDA,\n\t0xB1, 0x42, 0xDA, 0xB3, 0x42, 0xDA, 0xBA, 0x42,\n\t0xDA, 0xBB, 0x42, 0xDA, 0xBE, 0x42, 0xDB, 0x81,\n\t0x42, 0xDB, 0x85, 0x42, 0xDB, 0x86, 0x42, 0xDB,\n\t0x87, 0x42, 0xDB, 0x88, 0x42, 0xDB, 0x89, 0x42,\n\t// Bytes 300 - 33f\n\t0xDB, 0x8B, 0x42, 0xDB, 0x8C, 0x42, 0xDB, 0x90,\n\t0x42, 0xDB, 0x92, 0x43, 0xE0, 0xBC, 0x8B, 0x43,\n\t0xE1, 0x83, 0x9C, 0x43, 0xE1, 0x84, 0x80, 0x43,\n\t0xE1, 0x84, 0x81, 0x43, 0xE1, 0x84, 0x82, 0x43,\n\t0xE1, 0x84, 0x83, 0x43, 0xE1, 0x84, 0x84, 0x43,\n\t0xE1, 0x84, 0x85, 0x43, 0xE1, 0x84, 0x86, 0x43,\n\t0xE1, 0x84, 0x87, 0x43, 0xE1, 0x84, 0x88, 0x43,\n\t0xE1, 0x84, 0x89, 0x43, 0xE1, 0x84, 0x8A, 0x43,\n\t// Bytes 340 - 37f\n\t0xE1, 0x84, 0x8B, 0x43, 0xE1, 0x84, 0x8C, 0x43,\n\t0xE1, 0x84, 0x8D, 0x43, 0xE1, 0x84, 0x8E, 0x43,\n\t0xE1, 0x84, 0x8F, 0x43, 0xE1, 0x84, 0x90, 0x43,\n\t0xE1, 0x84, 0x91, 0x43, 0xE1, 0x84, 0x92, 0x43,\n\t0xE1, 0x84, 0x94, 0x43, 0xE1, 0x84, 0x95, 0x43,\n\t0xE1, 0x84, 0x9A, 0x43, 0xE1, 0x84, 0x9C, 0x43,\n\t0xE1, 0x84, 0x9D, 0x43, 0xE1, 0x84, 0x9E, 0x43,\n\t0xE1, 0x84, 0xA0, 0x43, 0xE1, 0x84, 0xA1, 0x43,\n\t// Bytes 380 - 3bf\n\t0xE1, 0x84, 0xA2, 0x43, 0xE1, 0x84, 0xA3, 0x43,\n\t0xE1, 0x84, 0xA7, 0x43, 0xE1, 0x84, 0xA9, 0x43,\n\t0xE1, 0x84, 0xAB, 0x43, 0xE1, 0x84, 0xAC, 0x43,\n\t0xE1, 0x84, 0xAD, 0x43, 0xE1, 0x84, 0xAE, 0x43,\n\t0xE1, 0x84, 0xAF, 0x43, 0xE1, 0x84, 0xB2, 0x43,\n\t0xE1, 0x84, 0xB6, 0x43, 0xE1, 0x85, 0x80, 0x43,\n\t0xE1, 0x85, 0x87, 0x43, 0xE1, 0x85, 0x8C, 0x43,\n\t0xE1, 0x85, 0x97, 0x43, 0xE1, 0x85, 0x98, 0x43,\n\t// Bytes 3c0 - 3ff\n\t0xE1, 0x85, 0x99, 0x43, 0xE1, 0x85, 0xA0, 0x43,\n\t0xE1, 0x86, 0x84, 0x43, 0xE1, 0x86, 0x85, 0x43,\n\t0xE1, 0x86, 0x88, 0x43, 0xE1, 0x86, 0x91, 0x43,\n\t0xE1, 0x86, 0x92, 0x43, 0xE1, 0x86, 0x94, 0x43,\n\t0xE1, 0x86, 0x9E, 0x43, 0xE1, 0x86, 0xA1, 0x43,\n\t0xE1, 0x87, 0x87, 0x43, 0xE1, 0x87, 0x88, 0x43,\n\t0xE1, 0x87, 0x8C, 0x43, 0xE1, 0x87, 0x8E, 0x43,\n\t0xE1, 0x87, 0x93, 0x43, 0xE1, 0x87, 0x97, 0x43,\n\t// Bytes 400 - 43f\n\t0xE1, 0x87, 0x99, 0x43, 0xE1, 0x87, 0x9D, 0x43,\n\t0xE1, 0x87, 0x9F, 0x43, 0xE1, 0x87, 0xB1, 0x43,\n\t0xE1, 0x87, 0xB2, 0x43, 0xE1, 0xB4, 0x82, 0x43,\n\t0xE1, 0xB4, 0x96, 0x43, 0xE1, 0xB4, 0x97, 0x43,\n\t0xE1, 0xB4, 0x9C, 0x43, 0xE1, 0xB4, 0x9D, 0x43,\n\t0xE1, 0xB4, 0xA5, 0x43, 0xE1, 0xB5, 0xBB, 0x43,\n\t0xE1, 0xB6, 0x85, 0x43, 0xE2, 0x80, 0x82, 0x43,\n\t0xE2, 0x80, 0x83, 0x43, 0xE2, 0x80, 0x90, 0x43,\n\t// Bytes 440 - 47f\n\t0xE2, 0x80, 0x93, 0x43, 0xE2, 0x80, 0x94, 0x43,\n\t0xE2, 0x82, 0xA9, 0x43, 0xE2, 0x86, 0x90, 0x43,\n\t0xE2, 0x86, 0x91, 0x43, 0xE2, 0x86, 0x92, 0x43,\n\t0xE2, 0x86, 0x93, 0x43, 0xE2, 0x88, 0x82, 0x43,\n\t0xE2, 0x88, 0x87, 0x43, 0xE2, 0x88, 0x91, 0x43,\n\t0xE2, 0x88, 0x92, 0x43, 0xE2, 0x94, 0x82, 0x43,\n\t0xE2, 0x96, 0xA0, 0x43, 0xE2, 0x97, 0x8B, 0x43,\n\t0xE2, 0xA6, 0x85, 0x43, 0xE2, 0xA6, 0x86, 0x43,\n\t// Bytes 480 - 4bf\n\t0xE2, 0xB5, 0xA1, 0x43, 0xE3, 0x80, 0x81, 0x43,\n\t0xE3, 0x80, 0x82, 0x43, 0xE3, 0x80, 0x88, 0x43,\n\t0xE3, 0x80, 0x89, 0x43, 0xE3, 0x80, 0x8A, 0x43,\n\t0xE3, 0x80, 0x8B, 0x43, 0xE3, 0x80, 0x8C, 0x43,\n\t0xE3, 0x80, 0x8D, 0x43, 0xE3, 0x80, 0x8E, 0x43,\n\t0xE3, 0x80, 0x8F, 0x43, 0xE3, 0x80, 0x90, 0x43,\n\t0xE3, 0x80, 0x91, 0x43, 0xE3, 0x80, 0x92, 0x43,\n\t0xE3, 0x80, 0x94, 0x43, 0xE3, 0x80, 0x95, 0x43,\n\t// Bytes 4c0 - 4ff\n\t0xE3, 0x80, 0x96, 0x43, 0xE3, 0x80, 0x97, 0x43,\n\t0xE3, 0x82, 0xA1, 0x43, 0xE3, 0x82, 0xA2, 0x43,\n\t0xE3, 0x82, 0xA3, 0x43, 0xE3, 0x82, 0xA4, 0x43,\n\t0xE3, 0x82, 0xA5, 0x43, 0xE3, 0x82, 0xA6, 0x43,\n\t0xE3, 0x82, 0xA7, 0x43, 0xE3, 0x82, 0xA8, 0x43,\n\t0xE3, 0x82, 0xA9, 0x43, 0xE3, 0x82, 0xAA, 0x43,\n\t0xE3, 0x82, 0xAB, 0x43, 0xE3, 0x82, 0xAD, 0x43,\n\t0xE3, 0x82, 0xAF, 0x43, 0xE3, 0x82, 0xB1, 0x43,\n\t// Bytes 500 - 53f\n\t0xE3, 0x82, 0xB3, 0x43, 0xE3, 0x82, 0xB5, 0x43,\n\t0xE3, 0x82, 0xB7, 0x43, 0xE3, 0x82, 0xB9, 0x43,\n\t0xE3, 0x82, 0xBB, 0x43, 0xE3, 0x82, 0xBD, 0x43,\n\t0xE3, 0x82, 0xBF, 0x43, 0xE3, 0x83, 0x81, 0x43,\n\t0xE3, 0x83, 0x83, 0x43, 0xE3, 0x83, 0x84, 0x43,\n\t0xE3, 0x83, 0x86, 0x43, 0xE3, 0x83, 0x88, 0x43,\n\t0xE3, 0x83, 0x8A, 0x43, 0xE3, 0x83, 0x8B, 0x43,\n\t0xE3, 0x83, 0x8C, 0x43, 0xE3, 0x83, 0x8D, 0x43,\n\t// Bytes 540 - 57f\n\t0xE3, 0x83, 0x8E, 0x43, 0xE3, 0x83, 0x8F, 0x43,\n\t0xE3, 0x83, 0x92, 0x43, 0xE3, 0x83, 0x95, 0x43,\n\t0xE3, 0x83, 0x98, 0x43, 0xE3, 0x83, 0x9B, 0x43,\n\t0xE3, 0x83, 0x9E, 0x43, 0xE3, 0x83, 0x9F, 0x43,\n\t0xE3, 0x83, 0xA0, 0x43, 0xE3, 0x83, 0xA1, 0x43,\n\t0xE3, 0x83, 0xA2, 0x43, 0xE3, 0x83, 0xA3, 0x43,\n\t0xE3, 0x83, 0xA4, 0x43, 0xE3, 0x83, 0xA5, 0x43,\n\t0xE3, 0x83, 0xA6, 0x43, 0xE3, 0x83, 0xA7, 0x43,\n\t// Bytes 580 - 5bf\n\t0xE3, 0x83, 0xA8, 0x43, 0xE3, 0x83, 0xA9, 0x43,\n\t0xE3, 0x83, 0xAA, 0x43, 0xE3, 0x83, 0xAB, 0x43,\n\t0xE3, 0x83, 0xAC, 0x43, 0xE3, 0x83, 0xAD, 0x43,\n\t0xE3, 0x83, 0xAF, 0x43, 0xE3, 0x83, 0xB0, 0x43,\n\t0xE3, 0x83, 0xB1, 0x43, 0xE3, 0x83, 0xB2, 0x43,\n\t0xE3, 0x83, 0xB3, 0x43, 0xE3, 0x83, 0xBB, 0x43,\n\t0xE3, 0x83, 0xBC, 0x43, 0xE3, 0x92, 0x9E, 0x43,\n\t0xE3, 0x92, 0xB9, 0x43, 0xE3, 0x92, 0xBB, 0x43,\n\t// Bytes 5c0 - 5ff\n\t0xE3, 0x93, 0x9F, 0x43, 0xE3, 0x94, 0x95, 0x43,\n\t0xE3, 0x9B, 0xAE, 0x43, 0xE3, 0x9B, 0xBC, 0x43,\n\t0xE3, 0x9E, 0x81, 0x43, 0xE3, 0xA0, 0xAF, 0x43,\n\t0xE3, 0xA1, 0xA2, 0x43, 0xE3, 0xA1, 0xBC, 0x43,\n\t0xE3, 0xA3, 0x87, 0x43, 0xE3, 0xA3, 0xA3, 0x43,\n\t0xE3, 0xA4, 0x9C, 0x43, 0xE3, 0xA4, 0xBA, 0x43,\n\t0xE3, 0xA8, 0xAE, 0x43, 0xE3, 0xA9, 0xAC, 0x43,\n\t0xE3, 0xAB, 0xA4, 0x43, 0xE3, 0xAC, 0x88, 0x43,\n\t// Bytes 600 - 63f\n\t0xE3, 0xAC, 0x99, 0x43, 0xE3, 0xAD, 0x89, 0x43,\n\t0xE3, 0xAE, 0x9D, 0x43, 0xE3, 0xB0, 0x98, 0x43,\n\t0xE3, 0xB1, 0x8E, 0x43, 0xE3, 0xB4, 0xB3, 0x43,\n\t0xE3, 0xB6, 0x96, 0x43, 0xE3, 0xBA, 0xAC, 0x43,\n\t0xE3, 0xBA, 0xB8, 0x43, 0xE3, 0xBC, 0x9B, 0x43,\n\t0xE3, 0xBF, 0xBC, 0x43, 0xE4, 0x80, 0x88, 0x43,\n\t0xE4, 0x80, 0x98, 0x43, 0xE4, 0x80, 0xB9, 0x43,\n\t0xE4, 0x81, 0x86, 0x43, 0xE4, 0x82, 0x96, 0x43,\n\t// Bytes 640 - 67f\n\t0xE4, 0x83, 0xA3, 0x43, 0xE4, 0x84, 0xAF, 0x43,\n\t0xE4, 0x88, 0x82, 0x43, 0xE4, 0x88, 0xA7, 0x43,\n\t0xE4, 0x8A, 0xA0, 0x43, 0xE4, 0x8C, 0x81, 0x43,\n\t0xE4, 0x8C, 0xB4, 0x43, 0xE4, 0x8D, 0x99, 0x43,\n\t0xE4, 0x8F, 0x95, 0x43, 0xE4, 0x8F, 0x99, 0x43,\n\t0xE4, 0x90, 0x8B, 0x43, 0xE4, 0x91, 0xAB, 0x43,\n\t0xE4, 0x94, 0xAB, 0x43, 0xE4, 0x95, 0x9D, 0x43,\n\t0xE4, 0x95, 0xA1, 0x43, 0xE4, 0x95, 0xAB, 0x43,\n\t// Bytes 680 - 6bf\n\t0xE4, 0x97, 0x97, 0x43, 0xE4, 0x97, 0xB9, 0x43,\n\t0xE4, 0x98, 0xB5, 0x43, 0xE4, 0x9A, 0xBE, 0x43,\n\t0xE4, 0x9B, 0x87, 0x43, 0xE4, 0xA6, 0x95, 0x43,\n\t0xE4, 0xA7, 0xA6, 0x43, 0xE4, 0xA9, 0xAE, 0x43,\n\t0xE4, 0xA9, 0xB6, 0x43, 0xE4, 0xAA, 0xB2, 0x43,\n\t0xE4, 0xAC, 0xB3, 0x43, 0xE4, 0xAF, 0x8E, 0x43,\n\t0xE4, 0xB3, 0x8E, 0x43, 0xE4, 0xB3, 0xAD, 0x43,\n\t0xE4, 0xB3, 0xB8, 0x43, 0xE4, 0xB5, 0x96, 0x43,\n\t// Bytes 6c0 - 6ff\n\t0xE4, 0xB8, 0x80, 0x43, 0xE4, 0xB8, 0x81, 0x43,\n\t0xE4, 0xB8, 0x83, 0x43, 0xE4, 0xB8, 0x89, 0x43,\n\t0xE4, 0xB8, 0x8A, 0x43, 0xE4, 0xB8, 0x8B, 0x43,\n\t0xE4, 0xB8, 0x8D, 0x43, 0xE4, 0xB8, 0x99, 0x43,\n\t0xE4, 0xB8, 0xA6, 0x43, 0xE4, 0xB8, 0xA8, 0x43,\n\t0xE4, 0xB8, 0xAD, 0x43, 0xE4, 0xB8, 0xB2, 0x43,\n\t0xE4, 0xB8, 0xB6, 0x43, 0xE4, 0xB8, 0xB8, 0x43,\n\t0xE4, 0xB8, 0xB9, 0x43, 0xE4, 0xB8, 0xBD, 0x43,\n\t// Bytes 700 - 73f\n\t0xE4, 0xB8, 0xBF, 0x43, 0xE4, 0xB9, 0x81, 0x43,\n\t0xE4, 0xB9, 0x99, 0x43, 0xE4, 0xB9, 0x9D, 0x43,\n\t0xE4, 0xBA, 0x82, 0x43, 0xE4, 0xBA, 0x85, 0x43,\n\t0xE4, 0xBA, 0x86, 0x43, 0xE4, 0xBA, 0x8C, 0x43,\n\t0xE4, 0xBA, 0x94, 0x43, 0xE4, 0xBA, 0xA0, 0x43,\n\t0xE4, 0xBA, 0xA4, 0x43, 0xE4, 0xBA, 0xAE, 0x43,\n\t0xE4, 0xBA, 0xBA, 0x43, 0xE4, 0xBB, 0x80, 0x43,\n\t0xE4, 0xBB, 0x8C, 0x43, 0xE4, 0xBB, 0xA4, 0x43,\n\t// Bytes 740 - 77f\n\t0xE4, 0xBC, 0x81, 0x43, 0xE4, 0xBC, 0x91, 0x43,\n\t0xE4, 0xBD, 0xA0, 0x43, 0xE4, 0xBE, 0x80, 0x43,\n\t0xE4, 0xBE, 0x86, 0x43, 0xE4, 0xBE, 0x8B, 0x43,\n\t0xE4, 0xBE, 0xAE, 0x43, 0xE4, 0xBE, 0xBB, 0x43,\n\t0xE4, 0xBE, 0xBF, 0x43, 0xE5, 0x80, 0x82, 0x43,\n\t0xE5, 0x80, 0xAB, 0x43, 0xE5, 0x81, 0xBA, 0x43,\n\t0xE5, 0x82, 0x99, 0x43, 0xE5, 0x83, 0x8F, 0x43,\n\t0xE5, 0x83, 0x9A, 0x43, 0xE5, 0x83, 0xA7, 0x43,\n\t// Bytes 780 - 7bf\n\t0xE5, 0x84, 0xAA, 0x43, 0xE5, 0x84, 0xBF, 0x43,\n\t0xE5, 0x85, 0x80, 0x43, 0xE5, 0x85, 0x85, 0x43,\n\t0xE5, 0x85, 0x8D, 0x43, 0xE5, 0x85, 0x94, 0x43,\n\t0xE5, 0x85, 0xA4, 0x43, 0xE5, 0x85, 0xA5, 0x43,\n\t0xE5, 0x85, 0xA7, 0x43, 0xE5, 0x85, 0xA8, 0x43,\n\t0xE5, 0x85, 0xA9, 0x43, 0xE5, 0x85, 0xAB, 0x43,\n\t0xE5, 0x85, 0xAD, 0x43, 0xE5, 0x85, 0xB7, 0x43,\n\t0xE5, 0x86, 0x80, 0x43, 0xE5, 0x86, 0x82, 0x43,\n\t// Bytes 7c0 - 7ff\n\t0xE5, 0x86, 0x8D, 0x43, 0xE5, 0x86, 0x92, 0x43,\n\t0xE5, 0x86, 0x95, 0x43, 0xE5, 0x86, 0x96, 0x43,\n\t0xE5, 0x86, 0x97, 0x43, 0xE5, 0x86, 0x99, 0x43,\n\t0xE5, 0x86, 0xA4, 0x43, 0xE5, 0x86, 0xAB, 0x43,\n\t0xE5, 0x86, 0xAC, 0x43, 0xE5, 0x86, 0xB5, 0x43,\n\t0xE5, 0x86, 0xB7, 0x43, 0xE5, 0x87, 0x89, 0x43,\n\t0xE5, 0x87, 0x8C, 0x43, 0xE5, 0x87, 0x9C, 0x43,\n\t0xE5, 0x87, 0x9E, 0x43, 0xE5, 0x87, 0xA0, 0x43,\n\t// Bytes 800 - 83f\n\t0xE5, 0x87, 0xB5, 0x43, 0xE5, 0x88, 0x80, 0x43,\n\t0xE5, 0x88, 0x83, 0x43, 0xE5, 0x88, 0x87, 0x43,\n\t0xE5, 0x88, 0x97, 0x43, 0xE5, 0x88, 0x9D, 0x43,\n\t0xE5, 0x88, 0xA9, 0x43, 0xE5, 0x88, 0xBA, 0x43,\n\t0xE5, 0x88, 0xBB, 0x43, 0xE5, 0x89, 0x86, 0x43,\n\t0xE5, 0x89, 0x8D, 0x43, 0xE5, 0x89, 0xB2, 0x43,\n\t0xE5, 0x89, 0xB7, 0x43, 0xE5, 0x8A, 0x89, 0x43,\n\t0xE5, 0x8A, 0x9B, 0x43, 0xE5, 0x8A, 0xA3, 0x43,\n\t// Bytes 840 - 87f\n\t0xE5, 0x8A, 0xB3, 0x43, 0xE5, 0x8A, 0xB4, 0x43,\n\t0xE5, 0x8B, 0x87, 0x43, 0xE5, 0x8B, 0x89, 0x43,\n\t0xE5, 0x8B, 0x92, 0x43, 0xE5, 0x8B, 0x9E, 0x43,\n\t0xE5, 0x8B, 0xA4, 0x43, 0xE5, 0x8B, 0xB5, 0x43,\n\t0xE5, 0x8B, 0xB9, 0x43, 0xE5, 0x8B, 0xBA, 0x43,\n\t0xE5, 0x8C, 0x85, 0x43, 0xE5, 0x8C, 0x86, 0x43,\n\t0xE5, 0x8C, 0x95, 0x43, 0xE5, 0x8C, 0x97, 0x43,\n\t0xE5, 0x8C, 0x9A, 0x43, 0xE5, 0x8C, 0xB8, 0x43,\n\t// Bytes 880 - 8bf\n\t0xE5, 0x8C, 0xBB, 0x43, 0xE5, 0x8C, 0xBF, 0x43,\n\t0xE5, 0x8D, 0x81, 0x43, 0xE5, 0x8D, 0x84, 0x43,\n\t0xE5, 0x8D, 0x85, 0x43, 0xE5, 0x8D, 0x89, 0x43,\n\t0xE5, 0x8D, 0x91, 0x43, 0xE5, 0x8D, 0x94, 0x43,\n\t0xE5, 0x8D, 0x9A, 0x43, 0xE5, 0x8D, 0x9C, 0x43,\n\t0xE5, 0x8D, 0xA9, 0x43, 0xE5, 0x8D, 0xB0, 0x43,\n\t0xE5, 0x8D, 0xB3, 0x43, 0xE5, 0x8D, 0xB5, 0x43,\n\t0xE5, 0x8D, 0xBD, 0x43, 0xE5, 0x8D, 0xBF, 0x43,\n\t// Bytes 8c0 - 8ff\n\t0xE5, 0x8E, 0x82, 0x43, 0xE5, 0x8E, 0xB6, 0x43,\n\t0xE5, 0x8F, 0x83, 0x43, 0xE5, 0x8F, 0x88, 0x43,\n\t0xE5, 0x8F, 0x8A, 0x43, 0xE5, 0x8F, 0x8C, 0x43,\n\t0xE5, 0x8F, 0x9F, 0x43, 0xE5, 0x8F, 0xA3, 0x43,\n\t0xE5, 0x8F, 0xA5, 0x43, 0xE5, 0x8F, 0xAB, 0x43,\n\t0xE5, 0x8F, 0xAF, 0x43, 0xE5, 0x8F, 0xB1, 0x43,\n\t0xE5, 0x8F, 0xB3, 0x43, 0xE5, 0x90, 0x86, 0x43,\n\t0xE5, 0x90, 0x88, 0x43, 0xE5, 0x90, 0x8D, 0x43,\n\t// Bytes 900 - 93f\n\t0xE5, 0x90, 0x8F, 0x43, 0xE5, 0x90, 0x9D, 0x43,\n\t0xE5, 0x90, 0xB8, 0x43, 0xE5, 0x90, 0xB9, 0x43,\n\t0xE5, 0x91, 0x82, 0x43, 0xE5, 0x91, 0x88, 0x43,\n\t0xE5, 0x91, 0xA8, 0x43, 0xE5, 0x92, 0x9E, 0x43,\n\t0xE5, 0x92, 0xA2, 0x43, 0xE5, 0x92, 0xBD, 0x43,\n\t0xE5, 0x93, 0xB6, 0x43, 0xE5, 0x94, 0x90, 0x43,\n\t0xE5, 0x95, 0x8F, 0x43, 0xE5, 0x95, 0x93, 0x43,\n\t0xE5, 0x95, 0x95, 0x43, 0xE5, 0x95, 0xA3, 0x43,\n\t// Bytes 940 - 97f\n\t0xE5, 0x96, 0x84, 0x43, 0xE5, 0x96, 0x87, 0x43,\n\t0xE5, 0x96, 0x99, 0x43, 0xE5, 0x96, 0x9D, 0x43,\n\t0xE5, 0x96, 0xAB, 0x43, 0xE5, 0x96, 0xB3, 0x43,\n\t0xE5, 0x96, 0xB6, 0x43, 0xE5, 0x97, 0x80, 0x43,\n\t0xE5, 0x97, 0x82, 0x43, 0xE5, 0x97, 0xA2, 0x43,\n\t0xE5, 0x98, 0x86, 0x43, 0xE5, 0x99, 0x91, 0x43,\n\t0xE5, 0x99, 0xA8, 0x43, 0xE5, 0x99, 0xB4, 0x43,\n\t0xE5, 0x9B, 0x97, 0x43, 0xE5, 0x9B, 0x9B, 0x43,\n\t// Bytes 980 - 9bf\n\t0xE5, 0x9B, 0xB9, 0x43, 0xE5, 0x9C, 0x96, 0x43,\n\t0xE5, 0x9C, 0x97, 0x43, 0xE5, 0x9C, 0x9F, 0x43,\n\t0xE5, 0x9C, 0xB0, 0x43, 0xE5, 0x9E, 0x8B, 0x43,\n\t0xE5, 0x9F, 0x8E, 0x43, 0xE5, 0x9F, 0xB4, 0x43,\n\t0xE5, 0xA0, 0x8D, 0x43, 0xE5, 0xA0, 0xB1, 0x43,\n\t0xE5, 0xA0, 0xB2, 0x43, 0xE5, 0xA1, 0x80, 0x43,\n\t0xE5, 0xA1, 0x9A, 0x43, 0xE5, 0xA1, 0x9E, 0x43,\n\t0xE5, 0xA2, 0xA8, 0x43, 0xE5, 0xA2, 0xAC, 0x43,\n\t// Bytes 9c0 - 9ff\n\t0xE5, 0xA2, 0xB3, 0x43, 0xE5, 0xA3, 0x98, 0x43,\n\t0xE5, 0xA3, 0x9F, 0x43, 0xE5, 0xA3, 0xAB, 0x43,\n\t0xE5, 0xA3, 0xAE, 0x43, 0xE5, 0xA3, 0xB0, 0x43,\n\t0xE5, 0xA3, 0xB2, 0x43, 0xE5, 0xA3, 0xB7, 0x43,\n\t0xE5, 0xA4, 0x82, 0x43, 0xE5, 0xA4, 0x86, 0x43,\n\t0xE5, 0xA4, 0x8A, 0x43, 0xE5, 0xA4, 0x95, 0x43,\n\t0xE5, 0xA4, 0x9A, 0x43, 0xE5, 0xA4, 0x9C, 0x43,\n\t0xE5, 0xA4, 0xA2, 0x43, 0xE5, 0xA4, 0xA7, 0x43,\n\t// Bytes a00 - a3f\n\t0xE5, 0xA4, 0xA9, 0x43, 0xE5, 0xA5, 0x84, 0x43,\n\t0xE5, 0xA5, 0x88, 0x43, 0xE5, 0xA5, 0x91, 0x43,\n\t0xE5, 0xA5, 0x94, 0x43, 0xE5, 0xA5, 0xA2, 0x43,\n\t0xE5, 0xA5, 0xB3, 0x43, 0xE5, 0xA7, 0x98, 0x43,\n\t0xE5, 0xA7, 0xAC, 0x43, 0xE5, 0xA8, 0x9B, 0x43,\n\t0xE5, 0xA8, 0xA7, 0x43, 0xE5, 0xA9, 0xA2, 0x43,\n\t0xE5, 0xA9, 0xA6, 0x43, 0xE5, 0xAA, 0xB5, 0x43,\n\t0xE5, 0xAC, 0x88, 0x43, 0xE5, 0xAC, 0xA8, 0x43,\n\t// Bytes a40 - a7f\n\t0xE5, 0xAC, 0xBE, 0x43, 0xE5, 0xAD, 0x90, 0x43,\n\t0xE5, 0xAD, 0x97, 0x43, 0xE5, 0xAD, 0xA6, 0x43,\n\t0xE5, 0xAE, 0x80, 0x43, 0xE5, 0xAE, 0x85, 0x43,\n\t0xE5, 0xAE, 0x97, 0x43, 0xE5, 0xAF, 0x83, 0x43,\n\t0xE5, 0xAF, 0x98, 0x43, 0xE5, 0xAF, 0xA7, 0x43,\n\t0xE5, 0xAF, 0xAE, 0x43, 0xE5, 0xAF, 0xB3, 0x43,\n\t0xE5, 0xAF, 0xB8, 0x43, 0xE5, 0xAF, 0xBF, 0x43,\n\t0xE5, 0xB0, 0x86, 0x43, 0xE5, 0xB0, 0x8F, 0x43,\n\t// Bytes a80 - abf\n\t0xE5, 0xB0, 0xA2, 0x43, 0xE5, 0xB0, 0xB8, 0x43,\n\t0xE5, 0xB0, 0xBF, 0x43, 0xE5, 0xB1, 0xA0, 0x43,\n\t0xE5, 0xB1, 0xA2, 0x43, 0xE5, 0xB1, 0xA4, 0x43,\n\t0xE5, 0xB1, 0xA5, 0x43, 0xE5, 0xB1, 0xAE, 0x43,\n\t0xE5, 0xB1, 0xB1, 0x43, 0xE5, 0xB2, 0x8D, 0x43,\n\t0xE5, 0xB3, 0x80, 0x43, 0xE5, 0xB4, 0x99, 0x43,\n\t0xE5, 0xB5, 0x83, 0x43, 0xE5, 0xB5, 0x90, 0x43,\n\t0xE5, 0xB5, 0xAB, 0x43, 0xE5, 0xB5, 0xAE, 0x43,\n\t// Bytes ac0 - aff\n\t0xE5, 0xB5, 0xBC, 0x43, 0xE5, 0xB6, 0xB2, 0x43,\n\t0xE5, 0xB6, 0xBA, 0x43, 0xE5, 0xB7, 0x9B, 0x43,\n\t0xE5, 0xB7, 0xA1, 0x43, 0xE5, 0xB7, 0xA2, 0x43,\n\t0xE5, 0xB7, 0xA5, 0x43, 0xE5, 0xB7, 0xA6, 0x43,\n\t0xE5, 0xB7, 0xB1, 0x43, 0xE5, 0xB7, 0xBD, 0x43,\n\t0xE5, 0xB7, 0xBE, 0x43, 0xE5, 0xB8, 0xA8, 0x43,\n\t0xE5, 0xB8, 0xBD, 0x43, 0xE5, 0xB9, 0xA9, 0x43,\n\t0xE5, 0xB9, 0xB2, 0x43, 0xE5, 0xB9, 0xB4, 0x43,\n\t// Bytes b00 - b3f\n\t0xE5, 0xB9, 0xBA, 0x43, 0xE5, 0xB9, 0xBC, 0x43,\n\t0xE5, 0xB9, 0xBF, 0x43, 0xE5, 0xBA, 0xA6, 0x43,\n\t0xE5, 0xBA, 0xB0, 0x43, 0xE5, 0xBA, 0xB3, 0x43,\n\t0xE5, 0xBA, 0xB6, 0x43, 0xE5, 0xBB, 0x89, 0x43,\n\t0xE5, 0xBB, 0x8A, 0x43, 0xE5, 0xBB, 0x92, 0x43,\n\t0xE5, 0xBB, 0x93, 0x43, 0xE5, 0xBB, 0x99, 0x43,\n\t0xE5, 0xBB, 0xAC, 0x43, 0xE5, 0xBB, 0xB4, 0x43,\n\t0xE5, 0xBB, 0xBE, 0x43, 0xE5, 0xBC, 0x84, 0x43,\n\t// Bytes b40 - b7f\n\t0xE5, 0xBC, 0x8B, 0x43, 0xE5, 0xBC, 0x93, 0x43,\n\t0xE5, 0xBC, 0xA2, 0x43, 0xE5, 0xBD, 0x90, 0x43,\n\t0xE5, 0xBD, 0x93, 0x43, 0xE5, 0xBD, 0xA1, 0x43,\n\t0xE5, 0xBD, 0xA2, 0x43, 0xE5, 0xBD, 0xA9, 0x43,\n\t0xE5, 0xBD, 0xAB, 0x43, 0xE5, 0xBD, 0xB3, 0x43,\n\t0xE5, 0xBE, 0x8B, 0x43, 0xE5, 0xBE, 0x8C, 0x43,\n\t0xE5, 0xBE, 0x97, 0x43, 0xE5, 0xBE, 0x9A, 0x43,\n\t0xE5, 0xBE, 0xA9, 0x43, 0xE5, 0xBE, 0xAD, 0x43,\n\t// Bytes b80 - bbf\n\t0xE5, 0xBF, 0x83, 0x43, 0xE5, 0xBF, 0x8D, 0x43,\n\t0xE5, 0xBF, 0x97, 0x43, 0xE5, 0xBF, 0xB5, 0x43,\n\t0xE5, 0xBF, 0xB9, 0x43, 0xE6, 0x80, 0x92, 0x43,\n\t0xE6, 0x80, 0x9C, 0x43, 0xE6, 0x81, 0xB5, 0x43,\n\t0xE6, 0x82, 0x81, 0x43, 0xE6, 0x82, 0x94, 0x43,\n\t0xE6, 0x83, 0x87, 0x43, 0xE6, 0x83, 0x98, 0x43,\n\t0xE6, 0x83, 0xA1, 0x43, 0xE6, 0x84, 0x88, 0x43,\n\t0xE6, 0x85, 0x84, 0x43, 0xE6, 0x85, 0x88, 0x43,\n\t// Bytes bc0 - bff\n\t0xE6, 0x85, 0x8C, 0x43, 0xE6, 0x85, 0x8E, 0x43,\n\t0xE6, 0x85, 0xA0, 0x43, 0xE6, 0x85, 0xA8, 0x43,\n\t0xE6, 0x85, 0xBA, 0x43, 0xE6, 0x86, 0x8E, 0x43,\n\t0xE6, 0x86, 0x90, 0x43, 0xE6, 0x86, 0xA4, 0x43,\n\t0xE6, 0x86, 0xAF, 0x43, 0xE6, 0x86, 0xB2, 0x43,\n\t0xE6, 0x87, 0x9E, 0x43, 0xE6, 0x87, 0xB2, 0x43,\n\t0xE6, 0x87, 0xB6, 0x43, 0xE6, 0x88, 0x80, 0x43,\n\t0xE6, 0x88, 0x88, 0x43, 0xE6, 0x88, 0x90, 0x43,\n\t// Bytes c00 - c3f\n\t0xE6, 0x88, 0x9B, 0x43, 0xE6, 0x88, 0xAE, 0x43,\n\t0xE6, 0x88, 0xB4, 0x43, 0xE6, 0x88, 0xB6, 0x43,\n\t0xE6, 0x89, 0x8B, 0x43, 0xE6, 0x89, 0x93, 0x43,\n\t0xE6, 0x89, 0x9D, 0x43, 0xE6, 0x8A, 0x95, 0x43,\n\t0xE6, 0x8A, 0xB1, 0x43, 0xE6, 0x8B, 0x89, 0x43,\n\t0xE6, 0x8B, 0x8F, 0x43, 0xE6, 0x8B, 0x93, 0x43,\n\t0xE6, 0x8B, 0x94, 0x43, 0xE6, 0x8B, 0xBC, 0x43,\n\t0xE6, 0x8B, 0xBE, 0x43, 0xE6, 0x8C, 0x87, 0x43,\n\t// Bytes c40 - c7f\n\t0xE6, 0x8C, 0xBD, 0x43, 0xE6, 0x8D, 0x90, 0x43,\n\t0xE6, 0x8D, 0x95, 0x43, 0xE6, 0x8D, 0xA8, 0x43,\n\t0xE6, 0x8D, 0xBB, 0x43, 0xE6, 0x8E, 0x83, 0x43,\n\t0xE6, 0x8E, 0xA0, 0x43, 0xE6, 0x8E, 0xA9, 0x43,\n\t0xE6, 0x8F, 0x84, 0x43, 0xE6, 0x8F, 0x85, 0x43,\n\t0xE6, 0x8F, 0xA4, 0x43, 0xE6, 0x90, 0x9C, 0x43,\n\t0xE6, 0x90, 0xA2, 0x43, 0xE6, 0x91, 0x92, 0x43,\n\t0xE6, 0x91, 0xA9, 0x43, 0xE6, 0x91, 0xB7, 0x43,\n\t// Bytes c80 - cbf\n\t0xE6, 0x91, 0xBE, 0x43, 0xE6, 0x92, 0x9A, 0x43,\n\t0xE6, 0x92, 0x9D, 0x43, 0xE6, 0x93, 0x84, 0x43,\n\t0xE6, 0x94, 0xAF, 0x43, 0xE6, 0x94, 0xB4, 0x43,\n\t0xE6, 0x95, 0x8F, 0x43, 0xE6, 0x95, 0x96, 0x43,\n\t0xE6, 0x95, 0xAC, 0x43, 0xE6, 0x95, 0xB8, 0x43,\n\t0xE6, 0x96, 0x87, 0x43, 0xE6, 0x96, 0x97, 0x43,\n\t0xE6, 0x96, 0x99, 0x43, 0xE6, 0x96, 0xA4, 0x43,\n\t0xE6, 0x96, 0xB0, 0x43, 0xE6, 0x96, 0xB9, 0x43,\n\t// Bytes cc0 - cff\n\t0xE6, 0x97, 0x85, 0x43, 0xE6, 0x97, 0xA0, 0x43,\n\t0xE6, 0x97, 0xA2, 0x43, 0xE6, 0x97, 0xA3, 0x43,\n\t0xE6, 0x97, 0xA5, 0x43, 0xE6, 0x98, 0x93, 0x43,\n\t0xE6, 0x98, 0xA0, 0x43, 0xE6, 0x99, 0x89, 0x43,\n\t0xE6, 0x99, 0xB4, 0x43, 0xE6, 0x9A, 0x88, 0x43,\n\t0xE6, 0x9A, 0x91, 0x43, 0xE6, 0x9A, 0x9C, 0x43,\n\t0xE6, 0x9A, 0xB4, 0x43, 0xE6, 0x9B, 0x86, 0x43,\n\t0xE6, 0x9B, 0xB0, 0x43, 0xE6, 0x9B, 0xB4, 0x43,\n\t// Bytes d00 - d3f\n\t0xE6, 0x9B, 0xB8, 0x43, 0xE6, 0x9C, 0x80, 0x43,\n\t0xE6, 0x9C, 0x88, 0x43, 0xE6, 0x9C, 0x89, 0x43,\n\t0xE6, 0x9C, 0x97, 0x43, 0xE6, 0x9C, 0x9B, 0x43,\n\t0xE6, 0x9C, 0xA1, 0x43, 0xE6, 0x9C, 0xA8, 0x43,\n\t0xE6, 0x9D, 0x8E, 0x43, 0xE6, 0x9D, 0x93, 0x43,\n\t0xE6, 0x9D, 0x96, 0x43, 0xE6, 0x9D, 0x9E, 0x43,\n\t0xE6, 0x9D, 0xBB, 0x43, 0xE6, 0x9E, 0x85, 0x43,\n\t0xE6, 0x9E, 0x97, 0x43, 0xE6, 0x9F, 0xB3, 0x43,\n\t// Bytes d40 - d7f\n\t0xE6, 0x9F, 0xBA, 0x43, 0xE6, 0xA0, 0x97, 0x43,\n\t0xE6, 0xA0, 0x9F, 0x43, 0xE6, 0xA0, 0xAA, 0x43,\n\t0xE6, 0xA1, 0x92, 0x43, 0xE6, 0xA2, 0x81, 0x43,\n\t0xE6, 0xA2, 0x85, 0x43, 0xE6, 0xA2, 0x8E, 0x43,\n\t0xE6, 0xA2, 0xA8, 0x43, 0xE6, 0xA4, 0x94, 0x43,\n\t0xE6, 0xA5, 0x82, 0x43, 0xE6, 0xA6, 0xA3, 0x43,\n\t0xE6, 0xA7, 0xAA, 0x43, 0xE6, 0xA8, 0x82, 0x43,\n\t0xE6, 0xA8, 0x93, 0x43, 0xE6, 0xAA, 0xA8, 0x43,\n\t// Bytes d80 - dbf\n\t0xE6, 0xAB, 0x93, 0x43, 0xE6, 0xAB, 0x9B, 0x43,\n\t0xE6, 0xAC, 0x84, 0x43, 0xE6, 0xAC, 0xA0, 0x43,\n\t0xE6, 0xAC, 0xA1, 0x43, 0xE6, 0xAD, 0x94, 0x43,\n\t0xE6, 0xAD, 0xA2, 0x43, 0xE6, 0xAD, 0xA3, 0x43,\n\t0xE6, 0xAD, 0xB2, 0x43, 0xE6, 0xAD, 0xB7, 0x43,\n\t0xE6, 0xAD, 0xB9, 0x43, 0xE6, 0xAE, 0x9F, 0x43,\n\t0xE6, 0xAE, 0xAE, 0x43, 0xE6, 0xAE, 0xB3, 0x43,\n\t0xE6, 0xAE, 0xBA, 0x43, 0xE6, 0xAE, 0xBB, 0x43,\n\t// Bytes dc0 - dff\n\t0xE6, 0xAF, 0x8B, 0x43, 0xE6, 0xAF, 0x8D, 0x43,\n\t0xE6, 0xAF, 0x94, 0x43, 0xE6, 0xAF, 0x9B, 0x43,\n\t0xE6, 0xB0, 0x8F, 0x43, 0xE6, 0xB0, 0x94, 0x43,\n\t0xE6, 0xB0, 0xB4, 0x43, 0xE6, 0xB1, 0x8E, 0x43,\n\t0xE6, 0xB1, 0xA7, 0x43, 0xE6, 0xB2, 0x88, 0x43,\n\t0xE6, 0xB2, 0xBF, 0x43, 0xE6, 0xB3, 0x8C, 0x43,\n\t0xE6, 0xB3, 0x8D, 0x43, 0xE6, 0xB3, 0xA5, 0x43,\n\t0xE6, 0xB3, 0xA8, 0x43, 0xE6, 0xB4, 0x96, 0x43,\n\t// Bytes e00 - e3f\n\t0xE6, 0xB4, 0x9B, 0x43, 0xE6, 0xB4, 0x9E, 0x43,\n\t0xE6, 0xB4, 0xB4, 0x43, 0xE6, 0xB4, 0xBE, 0x43,\n\t0xE6, 0xB5, 0x81, 0x43, 0xE6, 0xB5, 0xA9, 0x43,\n\t0xE6, 0xB5, 0xAA, 0x43, 0xE6, 0xB5, 0xB7, 0x43,\n\t0xE6, 0xB5, 0xB8, 0x43, 0xE6, 0xB6, 0x85, 0x43,\n\t0xE6, 0xB7, 0x8B, 0x43, 0xE6, 0xB7, 0x9A, 0x43,\n\t0xE6, 0xB7, 0xAA, 0x43, 0xE6, 0xB7, 0xB9, 0x43,\n\t0xE6, 0xB8, 0x9A, 0x43, 0xE6, 0xB8, 0xAF, 0x43,\n\t// Bytes e40 - e7f\n\t0xE6, 0xB9, 0xAE, 0x43, 0xE6, 0xBA, 0x80, 0x43,\n\t0xE6, 0xBA, 0x9C, 0x43, 0xE6, 0xBA, 0xBA, 0x43,\n\t0xE6, 0xBB, 0x87, 0x43, 0xE6, 0xBB, 0x8B, 0x43,\n\t0xE6, 0xBB, 0x91, 0x43, 0xE6, 0xBB, 0x9B, 0x43,\n\t0xE6, 0xBC, 0x8F, 0x43, 0xE6, 0xBC, 0x94, 0x43,\n\t0xE6, 0xBC, 0xA2, 0x43, 0xE6, 0xBC, 0xA3, 0x43,\n\t0xE6, 0xBD, 0xAE, 0x43, 0xE6, 0xBF, 0x86, 0x43,\n\t0xE6, 0xBF, 0xAB, 0x43, 0xE6, 0xBF, 0xBE, 0x43,\n\t// Bytes e80 - ebf\n\t0xE7, 0x80, 0x9B, 0x43, 0xE7, 0x80, 0x9E, 0x43,\n\t0xE7, 0x80, 0xB9, 0x43, 0xE7, 0x81, 0x8A, 0x43,\n\t0xE7, 0x81, 0xAB, 0x43, 0xE7, 0x81, 0xB0, 0x43,\n\t0xE7, 0x81, 0xB7, 0x43, 0xE7, 0x81, 0xBD, 0x43,\n\t0xE7, 0x82, 0x99, 0x43, 0xE7, 0x82, 0xAD, 0x43,\n\t0xE7, 0x83, 0x88, 0x43, 0xE7, 0x83, 0x99, 0x43,\n\t0xE7, 0x84, 0xA1, 0x43, 0xE7, 0x85, 0x85, 0x43,\n\t0xE7, 0x85, 0x89, 0x43, 0xE7, 0x85, 0xAE, 0x43,\n\t// Bytes ec0 - eff\n\t0xE7, 0x86, 0x9C, 0x43, 0xE7, 0x87, 0x8E, 0x43,\n\t0xE7, 0x87, 0x90, 0x43, 0xE7, 0x88, 0x90, 0x43,\n\t0xE7, 0x88, 0x9B, 0x43, 0xE7, 0x88, 0xA8, 0x43,\n\t0xE7, 0x88, 0xAA, 0x43, 0xE7, 0x88, 0xAB, 0x43,\n\t0xE7, 0x88, 0xB5, 0x43, 0xE7, 0x88, 0xB6, 0x43,\n\t0xE7, 0x88, 0xBB, 0x43, 0xE7, 0x88, 0xBF, 0x43,\n\t0xE7, 0x89, 0x87, 0x43, 0xE7, 0x89, 0x90, 0x43,\n\t0xE7, 0x89, 0x99, 0x43, 0xE7, 0x89, 0x9B, 0x43,\n\t// Bytes f00 - f3f\n\t0xE7, 0x89, 0xA2, 0x43, 0xE7, 0x89, 0xB9, 0x43,\n\t0xE7, 0x8A, 0x80, 0x43, 0xE7, 0x8A, 0x95, 0x43,\n\t0xE7, 0x8A, 0xAC, 0x43, 0xE7, 0x8A, 0xAF, 0x43,\n\t0xE7, 0x8B, 0x80, 0x43, 0xE7, 0x8B, 0xBC, 0x43,\n\t0xE7, 0x8C, 0xAA, 0x43, 0xE7, 0x8D, 0xB5, 0x43,\n\t0xE7, 0x8D, 0xBA, 0x43, 0xE7, 0x8E, 0x84, 0x43,\n\t0xE7, 0x8E, 0x87, 0x43, 0xE7, 0x8E, 0x89, 0x43,\n\t0xE7, 0x8E, 0x8B, 0x43, 0xE7, 0x8E, 0xA5, 0x43,\n\t// Bytes f40 - f7f\n\t0xE7, 0x8E, 0xB2, 0x43, 0xE7, 0x8F, 0x9E, 0x43,\n\t0xE7, 0x90, 0x86, 0x43, 0xE7, 0x90, 0x89, 0x43,\n\t0xE7, 0x90, 0xA2, 0x43, 0xE7, 0x91, 0x87, 0x43,\n\t0xE7, 0x91, 0x9C, 0x43, 0xE7, 0x91, 0xA9, 0x43,\n\t0xE7, 0x91, 0xB1, 0x43, 0xE7, 0x92, 0x85, 0x43,\n\t0xE7, 0x92, 0x89, 0x43, 0xE7, 0x92, 0x98, 0x43,\n\t0xE7, 0x93, 0x8A, 0x43, 0xE7, 0x93, 0x9C, 0x43,\n\t0xE7, 0x93, 0xA6, 0x43, 0xE7, 0x94, 0x86, 0x43,\n\t// Bytes f80 - fbf\n\t0xE7, 0x94, 0x98, 0x43, 0xE7, 0x94, 0x9F, 0x43,\n\t0xE7, 0x94, 0xA4, 0x43, 0xE7, 0x94, 0xA8, 0x43,\n\t0xE7, 0x94, 0xB0, 0x43, 0xE7, 0x94, 0xB2, 0x43,\n\t0xE7, 0x94, 0xB3, 0x43, 0xE7, 0x94, 0xB7, 0x43,\n\t0xE7, 0x94, 0xBB, 0x43, 0xE7, 0x94, 0xBE, 0x43,\n\t0xE7, 0x95, 0x99, 0x43, 0xE7, 0x95, 0xA5, 0x43,\n\t0xE7, 0x95, 0xB0, 0x43, 0xE7, 0x96, 0x8B, 0x43,\n\t0xE7, 0x96, 0x92, 0x43, 0xE7, 0x97, 0xA2, 0x43,\n\t// Bytes fc0 - fff\n\t0xE7, 0x98, 0x90, 0x43, 0xE7, 0x98, 0x9D, 0x43,\n\t0xE7, 0x98, 0x9F, 0x43, 0xE7, 0x99, 0x82, 0x43,\n\t0xE7, 0x99, 0xA9, 0x43, 0xE7, 0x99, 0xB6, 0x43,\n\t0xE7, 0x99, 0xBD, 0x43, 0xE7, 0x9A, 0xAE, 0x43,\n\t0xE7, 0x9A, 0xBF, 0x43, 0xE7, 0x9B, 0x8A, 0x43,\n\t0xE7, 0x9B, 0x9B, 0x43, 0xE7, 0x9B, 0xA3, 0x43,\n\t0xE7, 0x9B, 0xA7, 0x43, 0xE7, 0x9B, 0xAE, 0x43,\n\t0xE7, 0x9B, 0xB4, 0x43, 0xE7, 0x9C, 0x81, 0x43,\n\t// Bytes 1000 - 103f\n\t0xE7, 0x9C, 0x9E, 0x43, 0xE7, 0x9C, 0x9F, 0x43,\n\t0xE7, 0x9D, 0x80, 0x43, 0xE7, 0x9D, 0x8A, 0x43,\n\t0xE7, 0x9E, 0x8B, 0x43, 0xE7, 0x9E, 0xA7, 0x43,\n\t0xE7, 0x9F, 0x9B, 0x43, 0xE7, 0x9F, 0xA2, 0x43,\n\t0xE7, 0x9F, 0xB3, 0x43, 0xE7, 0xA1, 0x8E, 0x43,\n\t0xE7, 0xA1, 0xAB, 0x43, 0xE7, 0xA2, 0x8C, 0x43,\n\t0xE7, 0xA2, 0x91, 0x43, 0xE7, 0xA3, 0x8A, 0x43,\n\t0xE7, 0xA3, 0x8C, 0x43, 0xE7, 0xA3, 0xBB, 0x43,\n\t// Bytes 1040 - 107f\n\t0xE7, 0xA4, 0xAA, 0x43, 0xE7, 0xA4, 0xBA, 0x43,\n\t0xE7, 0xA4, 0xBC, 0x43, 0xE7, 0xA4, 0xBE, 0x43,\n\t0xE7, 0xA5, 0x88, 0x43, 0xE7, 0xA5, 0x89, 0x43,\n\t0xE7, 0xA5, 0x90, 0x43, 0xE7, 0xA5, 0x96, 0x43,\n\t0xE7, 0xA5, 0x9D, 0x43, 0xE7, 0xA5, 0x9E, 0x43,\n\t0xE7, 0xA5, 0xA5, 0x43, 0xE7, 0xA5, 0xBF, 0x43,\n\t0xE7, 0xA6, 0x81, 0x43, 0xE7, 0xA6, 0x8D, 0x43,\n\t0xE7, 0xA6, 0x8E, 0x43, 0xE7, 0xA6, 0x8F, 0x43,\n\t// Bytes 1080 - 10bf\n\t0xE7, 0xA6, 0xAE, 0x43, 0xE7, 0xA6, 0xB8, 0x43,\n\t0xE7, 0xA6, 0xBE, 0x43, 0xE7, 0xA7, 0x8A, 0x43,\n\t0xE7, 0xA7, 0x98, 0x43, 0xE7, 0xA7, 0xAB, 0x43,\n\t0xE7, 0xA8, 0x9C, 0x43, 0xE7, 0xA9, 0x80, 0x43,\n\t0xE7, 0xA9, 0x8A, 0x43, 0xE7, 0xA9, 0x8F, 0x43,\n\t0xE7, 0xA9, 0xB4, 0x43, 0xE7, 0xA9, 0xBA, 0x43,\n\t0xE7, 0xAA, 0x81, 0x43, 0xE7, 0xAA, 0xB1, 0x43,\n\t0xE7, 0xAB, 0x8B, 0x43, 0xE7, 0xAB, 0xAE, 0x43,\n\t// Bytes 10c0 - 10ff\n\t0xE7, 0xAB, 0xB9, 0x43, 0xE7, 0xAC, 0xA0, 0x43,\n\t0xE7, 0xAE, 0x8F, 0x43, 0xE7, 0xAF, 0x80, 0x43,\n\t0xE7, 0xAF, 0x86, 0x43, 0xE7, 0xAF, 0x89, 0x43,\n\t0xE7, 0xB0, 0xBE, 0x43, 0xE7, 0xB1, 0xA0, 0x43,\n\t0xE7, 0xB1, 0xB3, 0x43, 0xE7, 0xB1, 0xBB, 0x43,\n\t0xE7, 0xB2, 0x92, 0x43, 0xE7, 0xB2, 0xBE, 0x43,\n\t0xE7, 0xB3, 0x92, 0x43, 0xE7, 0xB3, 0x96, 0x43,\n\t0xE7, 0xB3, 0xA3, 0x43, 0xE7, 0xB3, 0xA7, 0x43,\n\t// Bytes 1100 - 113f\n\t0xE7, 0xB3, 0xA8, 0x43, 0xE7, 0xB3, 0xB8, 0x43,\n\t0xE7, 0xB4, 0x80, 0x43, 0xE7, 0xB4, 0x90, 0x43,\n\t0xE7, 0xB4, 0xA2, 0x43, 0xE7, 0xB4, 0xAF, 0x43,\n\t0xE7, 0xB5, 0x82, 0x43, 0xE7, 0xB5, 0x9B, 0x43,\n\t0xE7, 0xB5, 0xA3, 0x43, 0xE7, 0xB6, 0xA0, 0x43,\n\t0xE7, 0xB6, 0xBE, 0x43, 0xE7, 0xB7, 0x87, 0x43,\n\t0xE7, 0xB7, 0xB4, 0x43, 0xE7, 0xB8, 0x82, 0x43,\n\t0xE7, 0xB8, 0x89, 0x43, 0xE7, 0xB8, 0xB7, 0x43,\n\t// Bytes 1140 - 117f\n\t0xE7, 0xB9, 0x81, 0x43, 0xE7, 0xB9, 0x85, 0x43,\n\t0xE7, 0xBC, 0xB6, 0x43, 0xE7, 0xBC, 0xBE, 0x43,\n\t0xE7, 0xBD, 0x91, 0x43, 0xE7, 0xBD, 0xB2, 0x43,\n\t0xE7, 0xBD, 0xB9, 0x43, 0xE7, 0xBD, 0xBA, 0x43,\n\t0xE7, 0xBE, 0x85, 0x43, 0xE7, 0xBE, 0x8A, 0x43,\n\t0xE7, 0xBE, 0x95, 0x43, 0xE7, 0xBE, 0x9A, 0x43,\n\t0xE7, 0xBE, 0xBD, 0x43, 0xE7, 0xBF, 0xBA, 0x43,\n\t0xE8, 0x80, 0x81, 0x43, 0xE8, 0x80, 0x85, 0x43,\n\t// Bytes 1180 - 11bf\n\t0xE8, 0x80, 0x8C, 0x43, 0xE8, 0x80, 0x92, 0x43,\n\t0xE8, 0x80, 0xB3, 0x43, 0xE8, 0x81, 0x86, 0x43,\n\t0xE8, 0x81, 0xA0, 0x43, 0xE8, 0x81, 0xAF, 0x43,\n\t0xE8, 0x81, 0xB0, 0x43, 0xE8, 0x81, 0xBE, 0x43,\n\t0xE8, 0x81, 0xBF, 0x43, 0xE8, 0x82, 0x89, 0x43,\n\t0xE8, 0x82, 0x8B, 0x43, 0xE8, 0x82, 0xAD, 0x43,\n\t0xE8, 0x82, 0xB2, 0x43, 0xE8, 0x84, 0x83, 0x43,\n\t0xE8, 0x84, 0xBE, 0x43, 0xE8, 0x87, 0x98, 0x43,\n\t// Bytes 11c0 - 11ff\n\t0xE8, 0x87, 0xA3, 0x43, 0xE8, 0x87, 0xA8, 0x43,\n\t0xE8, 0x87, 0xAA, 0x43, 0xE8, 0x87, 0xAD, 0x43,\n\t0xE8, 0x87, 0xB3, 0x43, 0xE8, 0x87, 0xBC, 0x43,\n\t0xE8, 0x88, 0x81, 0x43, 0xE8, 0x88, 0x84, 0x43,\n\t0xE8, 0x88, 0x8C, 0x43, 0xE8, 0x88, 0x98, 0x43,\n\t0xE8, 0x88, 0x9B, 0x43, 0xE8, 0x88, 0x9F, 0x43,\n\t0xE8, 0x89, 0xAE, 0x43, 0xE8, 0x89, 0xAF, 0x43,\n\t0xE8, 0x89, 0xB2, 0x43, 0xE8, 0x89, 0xB8, 0x43,\n\t// Bytes 1200 - 123f\n\t0xE8, 0x89, 0xB9, 0x43, 0xE8, 0x8A, 0x8B, 0x43,\n\t0xE8, 0x8A, 0x91, 0x43, 0xE8, 0x8A, 0x9D, 0x43,\n\t0xE8, 0x8A, 0xB1, 0x43, 0xE8, 0x8A, 0xB3, 0x43,\n\t0xE8, 0x8A, 0xBD, 0x43, 0xE8, 0x8B, 0xA5, 0x43,\n\t0xE8, 0x8B, 0xA6, 0x43, 0xE8, 0x8C, 0x9D, 0x43,\n\t0xE8, 0x8C, 0xA3, 0x43, 0xE8, 0x8C, 0xB6, 0x43,\n\t0xE8, 0x8D, 0x92, 0x43, 0xE8, 0x8D, 0x93, 0x43,\n\t0xE8, 0x8D, 0xA3, 0x43, 0xE8, 0x8E, 0xAD, 0x43,\n\t// Bytes 1240 - 127f\n\t0xE8, 0x8E, 0xBD, 0x43, 0xE8, 0x8F, 0x89, 0x43,\n\t0xE8, 0x8F, 0x8A, 0x43, 0xE8, 0x8F, 0x8C, 0x43,\n\t0xE8, 0x8F, 0x9C, 0x43, 0xE8, 0x8F, 0xA7, 0x43,\n\t0xE8, 0x8F, 0xAF, 0x43, 0xE8, 0x8F, 0xB1, 0x43,\n\t0xE8, 0x90, 0xBD, 0x43, 0xE8, 0x91, 0x89, 0x43,\n\t0xE8, 0x91, 0x97, 0x43, 0xE8, 0x93, 0xAE, 0x43,\n\t0xE8, 0x93, 0xB1, 0x43, 0xE8, 0x93, 0xB3, 0x43,\n\t0xE8, 0x93, 0xBC, 0x43, 0xE8, 0x94, 0x96, 0x43,\n\t// Bytes 1280 - 12bf\n\t0xE8, 0x95, 0xA4, 0x43, 0xE8, 0x97, 0x8D, 0x43,\n\t0xE8, 0x97, 0xBA, 0x43, 0xE8, 0x98, 0x86, 0x43,\n\t0xE8, 0x98, 0x92, 0x43, 0xE8, 0x98, 0xAD, 0x43,\n\t0xE8, 0x98, 0xBF, 0x43, 0xE8, 0x99, 0x8D, 0x43,\n\t0xE8, 0x99, 0x90, 0x43, 0xE8, 0x99, 0x9C, 0x43,\n\t0xE8, 0x99, 0xA7, 0x43, 0xE8, 0x99, 0xA9, 0x43,\n\t0xE8, 0x99, 0xAB, 0x43, 0xE8, 0x9A, 0x88, 0x43,\n\t0xE8, 0x9A, 0xA9, 0x43, 0xE8, 0x9B, 0xA2, 0x43,\n\t// Bytes 12c0 - 12ff\n\t0xE8, 0x9C, 0x8E, 0x43, 0xE8, 0x9C, 0xA8, 0x43,\n\t0xE8, 0x9D, 0xAB, 0x43, 0xE8, 0x9D, 0xB9, 0x43,\n\t0xE8, 0x9E, 0x86, 0x43, 0xE8, 0x9E, 0xBA, 0x43,\n\t0xE8, 0x9F, 0xA1, 0x43, 0xE8, 0xA0, 0x81, 0x43,\n\t0xE8, 0xA0, 0x9F, 0x43, 0xE8, 0xA1, 0x80, 0x43,\n\t0xE8, 0xA1, 0x8C, 0x43, 0xE8, 0xA1, 0xA0, 0x43,\n\t0xE8, 0xA1, 0xA3, 0x43, 0xE8, 0xA3, 0x82, 0x43,\n\t0xE8, 0xA3, 0x8F, 0x43, 0xE8, 0xA3, 0x97, 0x43,\n\t// Bytes 1300 - 133f\n\t0xE8, 0xA3, 0x9E, 0x43, 0xE8, 0xA3, 0xA1, 0x43,\n\t0xE8, 0xA3, 0xB8, 0x43, 0xE8, 0xA3, 0xBA, 0x43,\n\t0xE8, 0xA4, 0x90, 0x43, 0xE8, 0xA5, 0x81, 0x43,\n\t0xE8, 0xA5, 0xA4, 0x43, 0xE8, 0xA5, 0xBE, 0x43,\n\t0xE8, 0xA6, 0x86, 0x43, 0xE8, 0xA6, 0x8B, 0x43,\n\t0xE8, 0xA6, 0x96, 0x43, 0xE8, 0xA7, 0x92, 0x43,\n\t0xE8, 0xA7, 0xA3, 0x43, 0xE8, 0xA8, 0x80, 0x43,\n\t0xE8, 0xAA, 0xA0, 0x43, 0xE8, 0xAA, 0xAA, 0x43,\n\t// Bytes 1340 - 137f\n\t0xE8, 0xAA, 0xBF, 0x43, 0xE8, 0xAB, 0x8B, 0x43,\n\t0xE8, 0xAB, 0x92, 0x43, 0xE8, 0xAB, 0x96, 0x43,\n\t0xE8, 0xAB, 0xAD, 0x43, 0xE8, 0xAB, 0xB8, 0x43,\n\t0xE8, 0xAB, 0xBE, 0x43, 0xE8, 0xAC, 0x81, 0x43,\n\t0xE8, 0xAC, 0xB9, 0x43, 0xE8, 0xAD, 0x98, 0x43,\n\t0xE8, 0xAE, 0x80, 0x43, 0xE8, 0xAE, 0x8A, 0x43,\n\t0xE8, 0xB0, 0xB7, 0x43, 0xE8, 0xB1, 0x86, 0x43,\n\t0xE8, 0xB1, 0x88, 0x43, 0xE8, 0xB1, 0x95, 0x43,\n\t// Bytes 1380 - 13bf\n\t0xE8, 0xB1, 0xB8, 0x43, 0xE8, 0xB2, 0x9D, 0x43,\n\t0xE8, 0xB2, 0xA1, 0x43, 0xE8, 0xB2, 0xA9, 0x43,\n\t0xE8, 0xB2, 0xAB, 0x43, 0xE8, 0xB3, 0x81, 0x43,\n\t0xE8, 0xB3, 0x82, 0x43, 0xE8, 0xB3, 0x87, 0x43,\n\t0xE8, 0xB3, 0x88, 0x43, 0xE8, 0xB3, 0x93, 0x43,\n\t0xE8, 0xB4, 0x88, 0x43, 0xE8, 0xB4, 0x9B, 0x43,\n\t0xE8, 0xB5, 0xA4, 0x43, 0xE8, 0xB5, 0xB0, 0x43,\n\t0xE8, 0xB5, 0xB7, 0x43, 0xE8, 0xB6, 0xB3, 0x43,\n\t// Bytes 13c0 - 13ff\n\t0xE8, 0xB6, 0xBC, 0x43, 0xE8, 0xB7, 0x8B, 0x43,\n\t0xE8, 0xB7, 0xAF, 0x43, 0xE8, 0xB7, 0xB0, 0x43,\n\t0xE8, 0xBA, 0xAB, 0x43, 0xE8, 0xBB, 0x8A, 0x43,\n\t0xE8, 0xBB, 0x94, 0x43, 0xE8, 0xBC, 0xA6, 0x43,\n\t0xE8, 0xBC, 0xAA, 0x43, 0xE8, 0xBC, 0xB8, 0x43,\n\t0xE8, 0xBC, 0xBB, 0x43, 0xE8, 0xBD, 0xA2, 0x43,\n\t0xE8, 0xBE, 0x9B, 0x43, 0xE8, 0xBE, 0x9E, 0x43,\n\t0xE8, 0xBE, 0xB0, 0x43, 0xE8, 0xBE, 0xB5, 0x43,\n\t// Bytes 1400 - 143f\n\t0xE8, 0xBE, 0xB6, 0x43, 0xE9, 0x80, 0xA3, 0x43,\n\t0xE9, 0x80, 0xB8, 0x43, 0xE9, 0x81, 0x8A, 0x43,\n\t0xE9, 0x81, 0xA9, 0x43, 0xE9, 0x81, 0xB2, 0x43,\n\t0xE9, 0x81, 0xBC, 0x43, 0xE9, 0x82, 0x8F, 0x43,\n\t0xE9, 0x82, 0x91, 0x43, 0xE9, 0x82, 0x94, 0x43,\n\t0xE9, 0x83, 0x8E, 0x43, 0xE9, 0x83, 0x9E, 0x43,\n\t0xE9, 0x83, 0xB1, 0x43, 0xE9, 0x83, 0xBD, 0x43,\n\t0xE9, 0x84, 0x91, 0x43, 0xE9, 0x84, 0x9B, 0x43,\n\t// Bytes 1440 - 147f\n\t0xE9, 0x85, 0x89, 0x43, 0xE9, 0x85, 0x8D, 0x43,\n\t0xE9, 0x85, 0xAA, 0x43, 0xE9, 0x86, 0x99, 0x43,\n\t0xE9, 0x86, 0xB4, 0x43, 0xE9, 0x87, 0x86, 0x43,\n\t0xE9, 0x87, 0x8C, 0x43, 0xE9, 0x87, 0x8F, 0x43,\n\t0xE9, 0x87, 0x91, 0x43, 0xE9, 0x88, 0xB4, 0x43,\n\t0xE9, 0x88, 0xB8, 0x43, 0xE9, 0x89, 0xB6, 0x43,\n\t0xE9, 0x89, 0xBC, 0x43, 0xE9, 0x8B, 0x97, 0x43,\n\t0xE9, 0x8B, 0x98, 0x43, 0xE9, 0x8C, 0x84, 0x43,\n\t// Bytes 1480 - 14bf\n\t0xE9, 0x8D, 0x8A, 0x43, 0xE9, 0x8F, 0xB9, 0x43,\n\t0xE9, 0x90, 0x95, 0x43, 0xE9, 0x95, 0xB7, 0x43,\n\t0xE9, 0x96, 0x80, 0x43, 0xE9, 0x96, 0x8B, 0x43,\n\t0xE9, 0x96, 0xAD, 0x43, 0xE9, 0x96, 0xB7, 0x43,\n\t0xE9, 0x98, 0x9C, 0x43, 0xE9, 0x98, 0xAE, 0x43,\n\t0xE9, 0x99, 0x8B, 0x43, 0xE9, 0x99, 0x8D, 0x43,\n\t0xE9, 0x99, 0xB5, 0x43, 0xE9, 0x99, 0xB8, 0x43,\n\t0xE9, 0x99, 0xBC, 0x43, 0xE9, 0x9A, 0x86, 0x43,\n\t// Bytes 14c0 - 14ff\n\t0xE9, 0x9A, 0xA3, 0x43, 0xE9, 0x9A, 0xB6, 0x43,\n\t0xE9, 0x9A, 0xB7, 0x43, 0xE9, 0x9A, 0xB8, 0x43,\n\t0xE9, 0x9A, 0xB9, 0x43, 0xE9, 0x9B, 0x83, 0x43,\n\t0xE9, 0x9B, 0xA2, 0x43, 0xE9, 0x9B, 0xA3, 0x43,\n\t0xE9, 0x9B, 0xA8, 0x43, 0xE9, 0x9B, 0xB6, 0x43,\n\t0xE9, 0x9B, 0xB7, 0x43, 0xE9, 0x9C, 0xA3, 0x43,\n\t0xE9, 0x9C, 0xB2, 0x43, 0xE9, 0x9D, 0x88, 0x43,\n\t0xE9, 0x9D, 0x91, 0x43, 0xE9, 0x9D, 0x96, 0x43,\n\t// Bytes 1500 - 153f\n\t0xE9, 0x9D, 0x9E, 0x43, 0xE9, 0x9D, 0xA2, 0x43,\n\t0xE9, 0x9D, 0xA9, 0x43, 0xE9, 0x9F, 0x8B, 0x43,\n\t0xE9, 0x9F, 0x9B, 0x43, 0xE9, 0x9F, 0xA0, 0x43,\n\t0xE9, 0x9F, 0xAD, 0x43, 0xE9, 0x9F, 0xB3, 0x43,\n\t0xE9, 0x9F, 0xBF, 0x43, 0xE9, 0xA0, 0x81, 0x43,\n\t0xE9, 0xA0, 0x85, 0x43, 0xE9, 0xA0, 0x8B, 0x43,\n\t0xE9, 0xA0, 0x98, 0x43, 0xE9, 0xA0, 0xA9, 0x43,\n\t0xE9, 0xA0, 0xBB, 0x43, 0xE9, 0xA1, 0x9E, 0x43,\n\t// Bytes 1540 - 157f\n\t0xE9, 0xA2, 0xA8, 0x43, 0xE9, 0xA3, 0x9B, 0x43,\n\t0xE9, 0xA3, 0x9F, 0x43, 0xE9, 0xA3, 0xA2, 0x43,\n\t0xE9, 0xA3, 0xAF, 0x43, 0xE9, 0xA3, 0xBC, 0x43,\n\t0xE9, 0xA4, 0xA8, 0x43, 0xE9, 0xA4, 0xA9, 0x43,\n\t0xE9, 0xA6, 0x96, 0x43, 0xE9, 0xA6, 0x99, 0x43,\n\t0xE9, 0xA6, 0xA7, 0x43, 0xE9, 0xA6, 0xAC, 0x43,\n\t0xE9, 0xA7, 0x82, 0x43, 0xE9, 0xA7, 0xB1, 0x43,\n\t0xE9, 0xA7, 0xBE, 0x43, 0xE9, 0xA9, 0xAA, 0x43,\n\t// Bytes 1580 - 15bf\n\t0xE9, 0xAA, 0xA8, 0x43, 0xE9, 0xAB, 0x98, 0x43,\n\t0xE9, 0xAB, 0x9F, 0x43, 0xE9, 0xAC, 0x92, 0x43,\n\t0xE9, 0xAC, 0xA5, 0x43, 0xE9, 0xAC, 0xAF, 0x43,\n\t0xE9, 0xAC, 0xB2, 0x43, 0xE9, 0xAC, 0xBC, 0x43,\n\t0xE9, 0xAD, 0x9A, 0x43, 0xE9, 0xAD, 0xAF, 0x43,\n\t0xE9, 0xB1, 0x80, 0x43, 0xE9, 0xB1, 0x97, 0x43,\n\t0xE9, 0xB3, 0xA5, 0x43, 0xE9, 0xB3, 0xBD, 0x43,\n\t0xE9, 0xB5, 0xA7, 0x43, 0xE9, 0xB6, 0xB4, 0x43,\n\t// Bytes 15c0 - 15ff\n\t0xE9, 0xB7, 0xBA, 0x43, 0xE9, 0xB8, 0x9E, 0x43,\n\t0xE9, 0xB9, 0xB5, 0x43, 0xE9, 0xB9, 0xBF, 0x43,\n\t0xE9, 0xBA, 0x97, 0x43, 0xE9, 0xBA, 0x9F, 0x43,\n\t0xE9, 0xBA, 0xA5, 0x43, 0xE9, 0xBA, 0xBB, 0x43,\n\t0xE9, 0xBB, 0x83, 0x43, 0xE9, 0xBB, 0x8D, 0x43,\n\t0xE9, 0xBB, 0x8E, 0x43, 0xE9, 0xBB, 0x91, 0x43,\n\t0xE9, 0xBB, 0xB9, 0x43, 0xE9, 0xBB, 0xBD, 0x43,\n\t0xE9, 0xBB, 0xBE, 0x43, 0xE9, 0xBC, 0x85, 0x43,\n\t// Bytes 1600 - 163f\n\t0xE9, 0xBC, 0x8E, 0x43, 0xE9, 0xBC, 0x8F, 0x43,\n\t0xE9, 0xBC, 0x93, 0x43, 0xE9, 0xBC, 0x96, 0x43,\n\t0xE9, 0xBC, 0xA0, 0x43, 0xE9, 0xBC, 0xBB, 0x43,\n\t0xE9, 0xBD, 0x83, 0x43, 0xE9, 0xBD, 0x8A, 0x43,\n\t0xE9, 0xBD, 0x92, 0x43, 0xE9, 0xBE, 0x8D, 0x43,\n\t0xE9, 0xBE, 0x8E, 0x43, 0xE9, 0xBE, 0x9C, 0x43,\n\t0xE9, 0xBE, 0x9F, 0x43, 0xE9, 0xBE, 0xA0, 0x43,\n\t0xEA, 0x9C, 0xA7, 0x43, 0xEA, 0x9D, 0xAF, 0x43,\n\t// Bytes 1640 - 167f\n\t0xEA, 0xAC, 0xB7, 0x43, 0xEA, 0xAD, 0x92, 0x44,\n\t0xF0, 0xA0, 0x84, 0xA2, 0x44, 0xF0, 0xA0, 0x94,\n\t0x9C, 0x44, 0xF0, 0xA0, 0x94, 0xA5, 0x44, 0xF0,\n\t0xA0, 0x95, 0x8B, 0x44, 0xF0, 0xA0, 0x98, 0xBA,\n\t0x44, 0xF0, 0xA0, 0xA0, 0x84, 0x44, 0xF0, 0xA0,\n\t0xA3, 0x9E, 0x44, 0xF0, 0xA0, 0xA8, 0xAC, 0x44,\n\t0xF0, 0xA0, 0xAD, 0xA3, 0x44, 0xF0, 0xA1, 0x93,\n\t0xA4, 0x44, 0xF0, 0xA1, 0x9A, 0xA8, 0x44, 0xF0,\n\t// Bytes 1680 - 16bf\n\t0xA1, 0x9B, 0xAA, 0x44, 0xF0, 0xA1, 0xA7, 0x88,\n\t0x44, 0xF0, 0xA1, 0xAC, 0x98, 0x44, 0xF0, 0xA1,\n\t0xB4, 0x8B, 0x44, 0xF0, 0xA1, 0xB7, 0xA4, 0x44,\n\t0xF0, 0xA1, 0xB7, 0xA6, 0x44, 0xF0, 0xA2, 0x86,\n\t0x83, 0x44, 0xF0, 0xA2, 0x86, 0x9F, 0x44, 0xF0,\n\t0xA2, 0x8C, 0xB1, 0x44, 0xF0, 0xA2, 0x9B, 0x94,\n\t0x44, 0xF0, 0xA2, 0xA1, 0x84, 0x44, 0xF0, 0xA2,\n\t0xA1, 0x8A, 0x44, 0xF0, 0xA2, 0xAC, 0x8C, 0x44,\n\t// Bytes 16c0 - 16ff\n\t0xF0, 0xA2, 0xAF, 0xB1, 0x44, 0xF0, 0xA3, 0x80,\n\t0x8A, 0x44, 0xF0, 0xA3, 0x8A, 0xB8, 0x44, 0xF0,\n\t0xA3, 0x8D, 0x9F, 0x44, 0xF0, 0xA3, 0x8E, 0x93,\n\t0x44, 0xF0, 0xA3, 0x8E, 0x9C, 0x44, 0xF0, 0xA3,\n\t0x8F, 0x83, 0x44, 0xF0, 0xA3, 0x8F, 0x95, 0x44,\n\t0xF0, 0xA3, 0x91, 0xAD, 0x44, 0xF0, 0xA3, 0x9A,\n\t0xA3, 0x44, 0xF0, 0xA3, 0xA2, 0xA7, 0x44, 0xF0,\n\t0xA3, 0xAA, 0x8D, 0x44, 0xF0, 0xA3, 0xAB, 0xBA,\n\t// Bytes 1700 - 173f\n\t0x44, 0xF0, 0xA3, 0xB2, 0xBC, 0x44, 0xF0, 0xA3,\n\t0xB4, 0x9E, 0x44, 0xF0, 0xA3, 0xBB, 0x91, 0x44,\n\t0xF0, 0xA3, 0xBD, 0x9E, 0x44, 0xF0, 0xA3, 0xBE,\n\t0x8E, 0x44, 0xF0, 0xA4, 0x89, 0xA3, 0x44, 0xF0,\n\t0xA4, 0x8B, 0xAE, 0x44, 0xF0, 0xA4, 0x8E, 0xAB,\n\t0x44, 0xF0, 0xA4, 0x98, 0x88, 0x44, 0xF0, 0xA4,\n\t0x9C, 0xB5, 0x44, 0xF0, 0xA4, 0xA0, 0x94, 0x44,\n\t0xF0, 0xA4, 0xB0, 0xB6, 0x44, 0xF0, 0xA4, 0xB2,\n\t// Bytes 1740 - 177f\n\t0x92, 0x44, 0xF0, 0xA4, 0xBE, 0xA1, 0x44, 0xF0,\n\t0xA4, 0xBE, 0xB8, 0x44, 0xF0, 0xA5, 0x81, 0x84,\n\t0x44, 0xF0, 0xA5, 0x83, 0xB2, 0x44, 0xF0, 0xA5,\n\t0x83, 0xB3, 0x44, 0xF0, 0xA5, 0x84, 0x99, 0x44,\n\t0xF0, 0xA5, 0x84, 0xB3, 0x44, 0xF0, 0xA5, 0x89,\n\t0x89, 0x44, 0xF0, 0xA5, 0x90, 0x9D, 0x44, 0xF0,\n\t0xA5, 0x98, 0xA6, 0x44, 0xF0, 0xA5, 0x9A, 0x9A,\n\t0x44, 0xF0, 0xA5, 0x9B, 0x85, 0x44, 0xF0, 0xA5,\n\t// Bytes 1780 - 17bf\n\t0xA5, 0xBC, 0x44, 0xF0, 0xA5, 0xAA, 0xA7, 0x44,\n\t0xF0, 0xA5, 0xAE, 0xAB, 0x44, 0xF0, 0xA5, 0xB2,\n\t0x80, 0x44, 0xF0, 0xA5, 0xB3, 0x90, 0x44, 0xF0,\n\t0xA5, 0xBE, 0x86, 0x44, 0xF0, 0xA6, 0x87, 0x9A,\n\t0x44, 0xF0, 0xA6, 0x88, 0xA8, 0x44, 0xF0, 0xA6,\n\t0x89, 0x87, 0x44, 0xF0, 0xA6, 0x8B, 0x99, 0x44,\n\t0xF0, 0xA6, 0x8C, 0xBE, 0x44, 0xF0, 0xA6, 0x93,\n\t0x9A, 0x44, 0xF0, 0xA6, 0x94, 0xA3, 0x44, 0xF0,\n\t// Bytes 17c0 - 17ff\n\t0xA6, 0x96, 0xA8, 0x44, 0xF0, 0xA6, 0x9E, 0xA7,\n\t0x44, 0xF0, 0xA6, 0x9E, 0xB5, 0x44, 0xF0, 0xA6,\n\t0xAC, 0xBC, 0x44, 0xF0, 0xA6, 0xB0, 0xB6, 0x44,\n\t0xF0, 0xA6, 0xB3, 0x95, 0x44, 0xF0, 0xA6, 0xB5,\n\t0xAB, 0x44, 0xF0, 0xA6, 0xBC, 0xAC, 0x44, 0xF0,\n\t0xA6, 0xBE, 0xB1, 0x44, 0xF0, 0xA7, 0x83, 0x92,\n\t0x44, 0xF0, 0xA7, 0x8F, 0x8A, 0x44, 0xF0, 0xA7,\n\t0x99, 0xA7, 0x44, 0xF0, 0xA7, 0xA2, 0xAE, 0x44,\n\t// Bytes 1800 - 183f\n\t0xF0, 0xA7, 0xA5, 0xA6, 0x44, 0xF0, 0xA7, 0xB2,\n\t0xA8, 0x44, 0xF0, 0xA7, 0xBB, 0x93, 0x44, 0xF0,\n\t0xA7, 0xBC, 0xAF, 0x44, 0xF0, 0xA8, 0x97, 0x92,\n\t0x44, 0xF0, 0xA8, 0x97, 0xAD, 0x44, 0xF0, 0xA8,\n\t0x9C, 0xAE, 0x44, 0xF0, 0xA8, 0xAF, 0xBA, 0x44,\n\t0xF0, 0xA8, 0xB5, 0xB7, 0x44, 0xF0, 0xA9, 0x85,\n\t0x85, 0x44, 0xF0, 0xA9, 0x87, 0x9F, 0x44, 0xF0,\n\t0xA9, 0x88, 0x9A, 0x44, 0xF0, 0xA9, 0x90, 0x8A,\n\t// Bytes 1840 - 187f\n\t0x44, 0xF0, 0xA9, 0x92, 0x96, 0x44, 0xF0, 0xA9,\n\t0x96, 0xB6, 0x44, 0xF0, 0xA9, 0xAC, 0xB0, 0x44,\n\t0xF0, 0xAA, 0x83, 0x8E, 0x44, 0xF0, 0xAA, 0x84,\n\t0x85, 0x44, 0xF0, 0xAA, 0x88, 0x8E, 0x44, 0xF0,\n\t0xAA, 0x8A, 0x91, 0x44, 0xF0, 0xAA, 0x8E, 0x92,\n\t0x44, 0xF0, 0xAA, 0x98, 0x80, 0x42, 0x21, 0x21,\n\t0x42, 0x21, 0x3F, 0x42, 0x2E, 0x2E, 0x42, 0x30,\n\t0x2C, 0x42, 0x30, 0x2E, 0x42, 0x31, 0x2C, 0x42,\n\t// Bytes 1880 - 18bf\n\t0x31, 0x2E, 0x42, 0x31, 0x30, 0x42, 0x31, 0x31,\n\t0x42, 0x31, 0x32, 0x42, 0x31, 0x33, 0x42, 0x31,\n\t0x34, 0x42, 0x31, 0x35, 0x42, 0x31, 0x36, 0x42,\n\t0x31, 0x37, 0x42, 0x31, 0x38, 0x42, 0x31, 0x39,\n\t0x42, 0x32, 0x2C, 0x42, 0x32, 0x2E, 0x42, 0x32,\n\t0x30, 0x42, 0x32, 0x31, 0x42, 0x32, 0x32, 0x42,\n\t0x32, 0x33, 0x42, 0x32, 0x34, 0x42, 0x32, 0x35,\n\t0x42, 0x32, 0x36, 0x42, 0x32, 0x37, 0x42, 0x32,\n\t// Bytes 18c0 - 18ff\n\t0x38, 0x42, 0x32, 0x39, 0x42, 0x33, 0x2C, 0x42,\n\t0x33, 0x2E, 0x42, 0x33, 0x30, 0x42, 0x33, 0x31,\n\t0x42, 0x33, 0x32, 0x42, 0x33, 0x33, 0x42, 0x33,\n\t0x34, 0x42, 0x33, 0x35, 0x42, 0x33, 0x36, 0x42,\n\t0x33, 0x37, 0x42, 0x33, 0x38, 0x42, 0x33, 0x39,\n\t0x42, 0x34, 0x2C, 0x42, 0x34, 0x2E, 0x42, 0x34,\n\t0x30, 0x42, 0x34, 0x31, 0x42, 0x34, 0x32, 0x42,\n\t0x34, 0x33, 0x42, 0x34, 0x34, 0x42, 0x34, 0x35,\n\t// Bytes 1900 - 193f\n\t0x42, 0x34, 0x36, 0x42, 0x34, 0x37, 0x42, 0x34,\n\t0x38, 0x42, 0x34, 0x39, 0x42, 0x35, 0x2C, 0x42,\n\t0x35, 0x2E, 0x42, 0x35, 0x30, 0x42, 0x36, 0x2C,\n\t0x42, 0x36, 0x2E, 0x42, 0x37, 0x2C, 0x42, 0x37,\n\t0x2E, 0x42, 0x38, 0x2C, 0x42, 0x38, 0x2E, 0x42,\n\t0x39, 0x2C, 0x42, 0x39, 0x2E, 0x42, 0x3D, 0x3D,\n\t0x42, 0x3F, 0x21, 0x42, 0x3F, 0x3F, 0x42, 0x41,\n\t0x55, 0x42, 0x42, 0x71, 0x42, 0x43, 0x44, 0x42,\n\t// Bytes 1940 - 197f\n\t0x44, 0x4A, 0x42, 0x44, 0x5A, 0x42, 0x44, 0x7A,\n\t0x42, 0x47, 0x42, 0x42, 0x47, 0x79, 0x42, 0x48,\n\t0x50, 0x42, 0x48, 0x56, 0x42, 0x48, 0x67, 0x42,\n\t0x48, 0x7A, 0x42, 0x49, 0x49, 0x42, 0x49, 0x4A,\n\t0x42, 0x49, 0x55, 0x42, 0x49, 0x56, 0x42, 0x49,\n\t0x58, 0x42, 0x4B, 0x42, 0x42, 0x4B, 0x4B, 0x42,\n\t0x4B, 0x4D, 0x42, 0x4C, 0x4A, 0x42, 0x4C, 0x6A,\n\t0x42, 0x4D, 0x42, 0x42, 0x4D, 0x43, 0x42, 0x4D,\n\t// Bytes 1980 - 19bf\n\t0x44, 0x42, 0x4D, 0x56, 0x42, 0x4D, 0x57, 0x42,\n\t0x4E, 0x4A, 0x42, 0x4E, 0x6A, 0x42, 0x4E, 0x6F,\n\t0x42, 0x50, 0x48, 0x42, 0x50, 0x52, 0x42, 0x50,\n\t0x61, 0x42, 0x52, 0x73, 0x42, 0x53, 0x44, 0x42,\n\t0x53, 0x4D, 0x42, 0x53, 0x53, 0x42, 0x53, 0x76,\n\t0x42, 0x54, 0x4D, 0x42, 0x56, 0x49, 0x42, 0x57,\n\t0x43, 0x42, 0x57, 0x5A, 0x42, 0x57, 0x62, 0x42,\n\t0x58, 0x49, 0x42, 0x63, 0x63, 0x42, 0x63, 0x64,\n\t// Bytes 19c0 - 19ff\n\t0x42, 0x63, 0x6D, 0x42, 0x64, 0x42, 0x42, 0x64,\n\t0x61, 0x42, 0x64, 0x6C, 0x42, 0x64, 0x6D, 0x42,\n\t0x64, 0x7A, 0x42, 0x65, 0x56, 0x42, 0x66, 0x66,\n\t0x42, 0x66, 0x69, 0x42, 0x66, 0x6C, 0x42, 0x66,\n\t0x6D, 0x42, 0x68, 0x61, 0x42, 0x69, 0x69, 0x42,\n\t0x69, 0x6A, 0x42, 0x69, 0x6E, 0x42, 0x69, 0x76,\n\t0x42, 0x69, 0x78, 0x42, 0x6B, 0x41, 0x42, 0x6B,\n\t0x56, 0x42, 0x6B, 0x57, 0x42, 0x6B, 0x67, 0x42,\n\t// Bytes 1a00 - 1a3f\n\t0x6B, 0x6C, 0x42, 0x6B, 0x6D, 0x42, 0x6B, 0x74,\n\t0x42, 0x6C, 0x6A, 0x42, 0x6C, 0x6D, 0x42, 0x6C,\n\t0x6E, 0x42, 0x6C, 0x78, 0x42, 0x6D, 0x32, 0x42,\n\t0x6D, 0x33, 0x42, 0x6D, 0x41, 0x42, 0x6D, 0x56,\n\t0x42, 0x6D, 0x57, 0x42, 0x6D, 0x62, 0x42, 0x6D,\n\t0x67, 0x42, 0x6D, 0x6C, 0x42, 0x6D, 0x6D, 0x42,\n\t0x6D, 0x73, 0x42, 0x6E, 0x41, 0x42, 0x6E, 0x46,\n\t0x42, 0x6E, 0x56, 0x42, 0x6E, 0x57, 0x42, 0x6E,\n\t// Bytes 1a40 - 1a7f\n\t0x6A, 0x42, 0x6E, 0x6D, 0x42, 0x6E, 0x73, 0x42,\n\t0x6F, 0x56, 0x42, 0x70, 0x41, 0x42, 0x70, 0x46,\n\t0x42, 0x70, 0x56, 0x42, 0x70, 0x57, 0x42, 0x70,\n\t0x63, 0x42, 0x70, 0x73, 0x42, 0x73, 0x72, 0x42,\n\t0x73, 0x74, 0x42, 0x76, 0x69, 0x42, 0x78, 0x69,\n\t0x43, 0x28, 0x31, 0x29, 0x43, 0x28, 0x32, 0x29,\n\t0x43, 0x28, 0x33, 0x29, 0x43, 0x28, 0x34, 0x29,\n\t0x43, 0x28, 0x35, 0x29, 0x43, 0x28, 0x36, 0x29,\n\t// Bytes 1a80 - 1abf\n\t0x43, 0x28, 0x37, 0x29, 0x43, 0x28, 0x38, 0x29,\n\t0x43, 0x28, 0x39, 0x29, 0x43, 0x28, 0x41, 0x29,\n\t0x43, 0x28, 0x42, 0x29, 0x43, 0x28, 0x43, 0x29,\n\t0x43, 0x28, 0x44, 0x29, 0x43, 0x28, 0x45, 0x29,\n\t0x43, 0x28, 0x46, 0x29, 0x43, 0x28, 0x47, 0x29,\n\t0x43, 0x28, 0x48, 0x29, 0x43, 0x28, 0x49, 0x29,\n\t0x43, 0x28, 0x4A, 0x29, 0x43, 0x28, 0x4B, 0x29,\n\t0x43, 0x28, 0x4C, 0x29, 0x43, 0x28, 0x4D, 0x29,\n\t// Bytes 1ac0 - 1aff\n\t0x43, 0x28, 0x4E, 0x29, 0x43, 0x28, 0x4F, 0x29,\n\t0x43, 0x28, 0x50, 0x29, 0x43, 0x28, 0x51, 0x29,\n\t0x43, 0x28, 0x52, 0x29, 0x43, 0x28, 0x53, 0x29,\n\t0x43, 0x28, 0x54, 0x29, 0x43, 0x28, 0x55, 0x29,\n\t0x43, 0x28, 0x56, 0x29, 0x43, 0x28, 0x57, 0x29,\n\t0x43, 0x28, 0x58, 0x29, 0x43, 0x28, 0x59, 0x29,\n\t0x43, 0x28, 0x5A, 0x29, 0x43, 0x28, 0x61, 0x29,\n\t0x43, 0x28, 0x62, 0x29, 0x43, 0x28, 0x63, 0x29,\n\t// Bytes 1b00 - 1b3f\n\t0x43, 0x28, 0x64, 0x29, 0x43, 0x28, 0x65, 0x29,\n\t0x43, 0x28, 0x66, 0x29, 0x43, 0x28, 0x67, 0x29,\n\t0x43, 0x28, 0x68, 0x29, 0x43, 0x28, 0x69, 0x29,\n\t0x43, 0x28, 0x6A, 0x29, 0x43, 0x28, 0x6B, 0x29,\n\t0x43, 0x28, 0x6C, 0x29, 0x43, 0x28, 0x6D, 0x29,\n\t0x43, 0x28, 0x6E, 0x29, 0x43, 0x28, 0x6F, 0x29,\n\t0x43, 0x28, 0x70, 0x29, 0x43, 0x28, 0x71, 0x29,\n\t0x43, 0x28, 0x72, 0x29, 0x43, 0x28, 0x73, 0x29,\n\t// Bytes 1b40 - 1b7f\n\t0x43, 0x28, 0x74, 0x29, 0x43, 0x28, 0x75, 0x29,\n\t0x43, 0x28, 0x76, 0x29, 0x43, 0x28, 0x77, 0x29,\n\t0x43, 0x28, 0x78, 0x29, 0x43, 0x28, 0x79, 0x29,\n\t0x43, 0x28, 0x7A, 0x29, 0x43, 0x2E, 0x2E, 0x2E,\n\t0x43, 0x31, 0x30, 0x2E, 0x43, 0x31, 0x31, 0x2E,\n\t0x43, 0x31, 0x32, 0x2E, 0x43, 0x31, 0x33, 0x2E,\n\t0x43, 0x31, 0x34, 0x2E, 0x43, 0x31, 0x35, 0x2E,\n\t0x43, 0x31, 0x36, 0x2E, 0x43, 0x31, 0x37, 0x2E,\n\t// Bytes 1b80 - 1bbf\n\t0x43, 0x31, 0x38, 0x2E, 0x43, 0x31, 0x39, 0x2E,\n\t0x43, 0x32, 0x30, 0x2E, 0x43, 0x3A, 0x3A, 0x3D,\n\t0x43, 0x3D, 0x3D, 0x3D, 0x43, 0x43, 0x6F, 0x2E,\n\t0x43, 0x46, 0x41, 0x58, 0x43, 0x47, 0x48, 0x7A,\n\t0x43, 0x47, 0x50, 0x61, 0x43, 0x49, 0x49, 0x49,\n\t0x43, 0x4C, 0x54, 0x44, 0x43, 0x4C, 0xC2, 0xB7,\n\t0x43, 0x4D, 0x48, 0x7A, 0x43, 0x4D, 0x50, 0x61,\n\t0x43, 0x4D, 0xCE, 0xA9, 0x43, 0x50, 0x50, 0x4D,\n\t// Bytes 1bc0 - 1bff\n\t0x43, 0x50, 0x50, 0x56, 0x43, 0x50, 0x54, 0x45,\n\t0x43, 0x54, 0x45, 0x4C, 0x43, 0x54, 0x48, 0x7A,\n\t0x43, 0x56, 0x49, 0x49, 0x43, 0x58, 0x49, 0x49,\n\t0x43, 0x61, 0x2F, 0x63, 0x43, 0x61, 0x2F, 0x73,\n\t0x43, 0x61, 0xCA, 0xBE, 0x43, 0x62, 0x61, 0x72,\n\t0x43, 0x63, 0x2F, 0x6F, 0x43, 0x63, 0x2F, 0x75,\n\t0x43, 0x63, 0x61, 0x6C, 0x43, 0x63, 0x6D, 0x32,\n\t0x43, 0x63, 0x6D, 0x33, 0x43, 0x64, 0x6D, 0x32,\n\t// Bytes 1c00 - 1c3f\n\t0x43, 0x64, 0x6D, 0x33, 0x43, 0x65, 0x72, 0x67,\n\t0x43, 0x66, 0x66, 0x69, 0x43, 0x66, 0x66, 0x6C,\n\t0x43, 0x67, 0x61, 0x6C, 0x43, 0x68, 0x50, 0x61,\n\t0x43, 0x69, 0x69, 0x69, 0x43, 0x6B, 0x48, 0x7A,\n\t0x43, 0x6B, 0x50, 0x61, 0x43, 0x6B, 0x6D, 0x32,\n\t0x43, 0x6B, 0x6D, 0x33, 0x43, 0x6B, 0xCE, 0xA9,\n\t0x43, 0x6C, 0x6F, 0x67, 0x43, 0x6C, 0xC2, 0xB7,\n\t0x43, 0x6D, 0x69, 0x6C, 0x43, 0x6D, 0x6D, 0x32,\n\t// Bytes 1c40 - 1c7f\n\t0x43, 0x6D, 0x6D, 0x33, 0x43, 0x6D, 0x6F, 0x6C,\n\t0x43, 0x72, 0x61, 0x64, 0x43, 0x76, 0x69, 0x69,\n\t0x43, 0x78, 0x69, 0x69, 0x43, 0xC2, 0xB0, 0x43,\n\t0x43, 0xC2, 0xB0, 0x46, 0x43, 0xCA, 0xBC, 0x6E,\n\t0x43, 0xCE, 0xBC, 0x41, 0x43, 0xCE, 0xBC, 0x46,\n\t0x43, 0xCE, 0xBC, 0x56, 0x43, 0xCE, 0xBC, 0x57,\n\t0x43, 0xCE, 0xBC, 0x67, 0x43, 0xCE, 0xBC, 0x6C,\n\t0x43, 0xCE, 0xBC, 0x6D, 0x43, 0xCE, 0xBC, 0x73,\n\t// Bytes 1c80 - 1cbf\n\t0x44, 0x28, 0x31, 0x30, 0x29, 0x44, 0x28, 0x31,\n\t0x31, 0x29, 0x44, 0x28, 0x31, 0x32, 0x29, 0x44,\n\t0x28, 0x31, 0x33, 0x29, 0x44, 0x28, 0x31, 0x34,\n\t0x29, 0x44, 0x28, 0x31, 0x35, 0x29, 0x44, 0x28,\n\t0x31, 0x36, 0x29, 0x44, 0x28, 0x31, 0x37, 0x29,\n\t0x44, 0x28, 0x31, 0x38, 0x29, 0x44, 0x28, 0x31,\n\t0x39, 0x29, 0x44, 0x28, 0x32, 0x30, 0x29, 0x44,\n\t0x30, 0xE7, 0x82, 0xB9, 0x44, 0x31, 0xE2, 0x81,\n\t// Bytes 1cc0 - 1cff\n\t0x84, 0x44, 0x31, 0xE6, 0x97, 0xA5, 0x44, 0x31,\n\t0xE6, 0x9C, 0x88, 0x44, 0x31, 0xE7, 0x82, 0xB9,\n\t0x44, 0x32, 0xE6, 0x97, 0xA5, 0x44, 0x32, 0xE6,\n\t0x9C, 0x88, 0x44, 0x32, 0xE7, 0x82, 0xB9, 0x44,\n\t0x33, 0xE6, 0x97, 0xA5, 0x44, 0x33, 0xE6, 0x9C,\n\t0x88, 0x44, 0x33, 0xE7, 0x82, 0xB9, 0x44, 0x34,\n\t0xE6, 0x97, 0xA5, 0x44, 0x34, 0xE6, 0x9C, 0x88,\n\t0x44, 0x34, 0xE7, 0x82, 0xB9, 0x44, 0x35, 0xE6,\n\t// Bytes 1d00 - 1d3f\n\t0x97, 0xA5, 0x44, 0x35, 0xE6, 0x9C, 0x88, 0x44,\n\t0x35, 0xE7, 0x82, 0xB9, 0x44, 0x36, 0xE6, 0x97,\n\t0xA5, 0x44, 0x36, 0xE6, 0x9C, 0x88, 0x44, 0x36,\n\t0xE7, 0x82, 0xB9, 0x44, 0x37, 0xE6, 0x97, 0xA5,\n\t0x44, 0x37, 0xE6, 0x9C, 0x88, 0x44, 0x37, 0xE7,\n\t0x82, 0xB9, 0x44, 0x38, 0xE6, 0x97, 0xA5, 0x44,\n\t0x38, 0xE6, 0x9C, 0x88, 0x44, 0x38, 0xE7, 0x82,\n\t0xB9, 0x44, 0x39, 0xE6, 0x97, 0xA5, 0x44, 0x39,\n\t// Bytes 1d40 - 1d7f\n\t0xE6, 0x9C, 0x88, 0x44, 0x39, 0xE7, 0x82, 0xB9,\n\t0x44, 0x56, 0x49, 0x49, 0x49, 0x44, 0x61, 0x2E,\n\t0x6D, 0x2E, 0x44, 0x6B, 0x63, 0x61, 0x6C, 0x44,\n\t0x70, 0x2E, 0x6D, 0x2E, 0x44, 0x76, 0x69, 0x69,\n\t0x69, 0x44, 0xD5, 0xA5, 0xD6, 0x82, 0x44, 0xD5,\n\t0xB4, 0xD5, 0xA5, 0x44, 0xD5, 0xB4, 0xD5, 0xAB,\n\t0x44, 0xD5, 0xB4, 0xD5, 0xAD, 0x44, 0xD5, 0xB4,\n\t0xD5, 0xB6, 0x44, 0xD5, 0xBE, 0xD5, 0xB6, 0x44,\n\t// Bytes 1d80 - 1dbf\n\t0xD7, 0x90, 0xD7, 0x9C, 0x44, 0xD8, 0xA7, 0xD9,\n\t0xB4, 0x44, 0xD8, 0xA8, 0xD8, 0xAC, 0x44, 0xD8,\n\t0xA8, 0xD8, 0xAD, 0x44, 0xD8, 0xA8, 0xD8, 0xAE,\n\t0x44, 0xD8, 0xA8, 0xD8, 0xB1, 0x44, 0xD8, 0xA8,\n\t0xD8, 0xB2, 0x44, 0xD8, 0xA8, 0xD9, 0x85, 0x44,\n\t0xD8, 0xA8, 0xD9, 0x86, 0x44, 0xD8, 0xA8, 0xD9,\n\t0x87, 0x44, 0xD8, 0xA8, 0xD9, 0x89, 0x44, 0xD8,\n\t0xA8, 0xD9, 0x8A, 0x44, 0xD8, 0xAA, 0xD8, 0xAC,\n\t// Bytes 1dc0 - 1dff\n\t0x44, 0xD8, 0xAA, 0xD8, 0xAD, 0x44, 0xD8, 0xAA,\n\t0xD8, 0xAE, 0x44, 0xD8, 0xAA, 0xD8, 0xB1, 0x44,\n\t0xD8, 0xAA, 0xD8, 0xB2, 0x44, 0xD8, 0xAA, 0xD9,\n\t0x85, 0x44, 0xD8, 0xAA, 0xD9, 0x86, 0x44, 0xD8,\n\t0xAA, 0xD9, 0x87, 0x44, 0xD8, 0xAA, 0xD9, 0x89,\n\t0x44, 0xD8, 0xAA, 0xD9, 0x8A, 0x44, 0xD8, 0xAB,\n\t0xD8, 0xAC, 0x44, 0xD8, 0xAB, 0xD8, 0xB1, 0x44,\n\t0xD8, 0xAB, 0xD8, 0xB2, 0x44, 0xD8, 0xAB, 0xD9,\n\t// Bytes 1e00 - 1e3f\n\t0x85, 0x44, 0xD8, 0xAB, 0xD9, 0x86, 0x44, 0xD8,\n\t0xAB, 0xD9, 0x87, 0x44, 0xD8, 0xAB, 0xD9, 0x89,\n\t0x44, 0xD8, 0xAB, 0xD9, 0x8A, 0x44, 0xD8, 0xAC,\n\t0xD8, 0xAD, 0x44, 0xD8, 0xAC, 0xD9, 0x85, 0x44,\n\t0xD8, 0xAC, 0xD9, 0x89, 0x44, 0xD8, 0xAC, 0xD9,\n\t0x8A, 0x44, 0xD8, 0xAD, 0xD8, 0xAC, 0x44, 0xD8,\n\t0xAD, 0xD9, 0x85, 0x44, 0xD8, 0xAD, 0xD9, 0x89,\n\t0x44, 0xD8, 0xAD, 0xD9, 0x8A, 0x44, 0xD8, 0xAE,\n\t// Bytes 1e40 - 1e7f\n\t0xD8, 0xAC, 0x44, 0xD8, 0xAE, 0xD8, 0xAD, 0x44,\n\t0xD8, 0xAE, 0xD9, 0x85, 0x44, 0xD8, 0xAE, 0xD9,\n\t0x89, 0x44, 0xD8, 0xAE, 0xD9, 0x8A, 0x44, 0xD8,\n\t0xB3, 0xD8, 0xAC, 0x44, 0xD8, 0xB3, 0xD8, 0xAD,\n\t0x44, 0xD8, 0xB3, 0xD8, 0xAE, 0x44, 0xD8, 0xB3,\n\t0xD8, 0xB1, 0x44, 0xD8, 0xB3, 0xD9, 0x85, 0x44,\n\t0xD8, 0xB3, 0xD9, 0x87, 0x44, 0xD8, 0xB3, 0xD9,\n\t0x89, 0x44, 0xD8, 0xB3, 0xD9, 0x8A, 0x44, 0xD8,\n\t// Bytes 1e80 - 1ebf\n\t0xB4, 0xD8, 0xAC, 0x44, 0xD8, 0xB4, 0xD8, 0xAD,\n\t0x44, 0xD8, 0xB4, 0xD8, 0xAE, 0x44, 0xD8, 0xB4,\n\t0xD8, 0xB1, 0x44, 0xD8, 0xB4, 0xD9, 0x85, 0x44,\n\t0xD8, 0xB4, 0xD9, 0x87, 0x44, 0xD8, 0xB4, 0xD9,\n\t0x89, 0x44, 0xD8, 0xB4, 0xD9, 0x8A, 0x44, 0xD8,\n\t0xB5, 0xD8, 0xAD, 0x44, 0xD8, 0xB5, 0xD8, 0xAE,\n\t0x44, 0xD8, 0xB5, 0xD8, 0xB1, 0x44, 0xD8, 0xB5,\n\t0xD9, 0x85, 0x44, 0xD8, 0xB5, 0xD9, 0x89, 0x44,\n\t// Bytes 1ec0 - 1eff\n\t0xD8, 0xB5, 0xD9, 0x8A, 0x44, 0xD8, 0xB6, 0xD8,\n\t0xAC, 0x44, 0xD8, 0xB6, 0xD8, 0xAD, 0x44, 0xD8,\n\t0xB6, 0xD8, 0xAE, 0x44, 0xD8, 0xB6, 0xD8, 0xB1,\n\t0x44, 0xD8, 0xB6, 0xD9, 0x85, 0x44, 0xD8, 0xB6,\n\t0xD9, 0x89, 0x44, 0xD8, 0xB6, 0xD9, 0x8A, 0x44,\n\t0xD8, 0xB7, 0xD8, 0xAD, 0x44, 0xD8, 0xB7, 0xD9,\n\t0x85, 0x44, 0xD8, 0xB7, 0xD9, 0x89, 0x44, 0xD8,\n\t0xB7, 0xD9, 0x8A, 0x44, 0xD8, 0xB8, 0xD9, 0x85,\n\t// Bytes 1f00 - 1f3f\n\t0x44, 0xD8, 0xB9, 0xD8, 0xAC, 0x44, 0xD8, 0xB9,\n\t0xD9, 0x85, 0x44, 0xD8, 0xB9, 0xD9, 0x89, 0x44,\n\t0xD8, 0xB9, 0xD9, 0x8A, 0x44, 0xD8, 0xBA, 0xD8,\n\t0xAC, 0x44, 0xD8, 0xBA, 0xD9, 0x85, 0x44, 0xD8,\n\t0xBA, 0xD9, 0x89, 0x44, 0xD8, 0xBA, 0xD9, 0x8A,\n\t0x44, 0xD9, 0x81, 0xD8, 0xAC, 0x44, 0xD9, 0x81,\n\t0xD8, 0xAD, 0x44, 0xD9, 0x81, 0xD8, 0xAE, 0x44,\n\t0xD9, 0x81, 0xD9, 0x85, 0x44, 0xD9, 0x81, 0xD9,\n\t// Bytes 1f40 - 1f7f\n\t0x89, 0x44, 0xD9, 0x81, 0xD9, 0x8A, 0x44, 0xD9,\n\t0x82, 0xD8, 0xAD, 0x44, 0xD9, 0x82, 0xD9, 0x85,\n\t0x44, 0xD9, 0x82, 0xD9, 0x89, 0x44, 0xD9, 0x82,\n\t0xD9, 0x8A, 0x44, 0xD9, 0x83, 0xD8, 0xA7, 0x44,\n\t0xD9, 0x83, 0xD8, 0xAC, 0x44, 0xD9, 0x83, 0xD8,\n\t0xAD, 0x44, 0xD9, 0x83, 0xD8, 0xAE, 0x44, 0xD9,\n\t0x83, 0xD9, 0x84, 0x44, 0xD9, 0x83, 0xD9, 0x85,\n\t0x44, 0xD9, 0x83, 0xD9, 0x89, 0x44, 0xD9, 0x83,\n\t// Bytes 1f80 - 1fbf\n\t0xD9, 0x8A, 0x44, 0xD9, 0x84, 0xD8, 0xA7, 0x44,\n\t0xD9, 0x84, 0xD8, 0xAC, 0x44, 0xD9, 0x84, 0xD8,\n\t0xAD, 0x44, 0xD9, 0x84, 0xD8, 0xAE, 0x44, 0xD9,\n\t0x84, 0xD9, 0x85, 0x44, 0xD9, 0x84, 0xD9, 0x87,\n\t0x44, 0xD9, 0x84, 0xD9, 0x89, 0x44, 0xD9, 0x84,\n\t0xD9, 0x8A, 0x44, 0xD9, 0x85, 0xD8, 0xA7, 0x44,\n\t0xD9, 0x85, 0xD8, 0xAC, 0x44, 0xD9, 0x85, 0xD8,\n\t0xAD, 0x44, 0xD9, 0x85, 0xD8, 0xAE, 0x44, 0xD9,\n\t// Bytes 1fc0 - 1fff\n\t0x85, 0xD9, 0x85, 0x44, 0xD9, 0x85, 0xD9, 0x89,\n\t0x44, 0xD9, 0x85, 0xD9, 0x8A, 0x44, 0xD9, 0x86,\n\t0xD8, 0xAC, 0x44, 0xD9, 0x86, 0xD8, 0xAD, 0x44,\n\t0xD9, 0x86, 0xD8, 0xAE, 0x44, 0xD9, 0x86, 0xD8,\n\t0xB1, 0x44, 0xD9, 0x86, 0xD8, 0xB2, 0x44, 0xD9,\n\t0x86, 0xD9, 0x85, 0x44, 0xD9, 0x86, 0xD9, 0x86,\n\t0x44, 0xD9, 0x86, 0xD9, 0x87, 0x44, 0xD9, 0x86,\n\t0xD9, 0x89, 0x44, 0xD9, 0x86, 0xD9, 0x8A, 0x44,\n\t// Bytes 2000 - 203f\n\t0xD9, 0x87, 0xD8, 0xAC, 0x44, 0xD9, 0x87, 0xD9,\n\t0x85, 0x44, 0xD9, 0x87, 0xD9, 0x89, 0x44, 0xD9,\n\t0x87, 0xD9, 0x8A, 0x44, 0xD9, 0x88, 0xD9, 0xB4,\n\t0x44, 0xD9, 0x8A, 0xD8, 0xAC, 0x44, 0xD9, 0x8A,\n\t0xD8, 0xAD, 0x44, 0xD9, 0x8A, 0xD8, 0xAE, 0x44,\n\t0xD9, 0x8A, 0xD8, 0xB1, 0x44, 0xD9, 0x8A, 0xD8,\n\t0xB2, 0x44, 0xD9, 0x8A, 0xD9, 0x85, 0x44, 0xD9,\n\t0x8A, 0xD9, 0x86, 0x44, 0xD9, 0x8A, 0xD9, 0x87,\n\t// Bytes 2040 - 207f\n\t0x44, 0xD9, 0x8A, 0xD9, 0x89, 0x44, 0xD9, 0x8A,\n\t0xD9, 0x8A, 0x44, 0xD9, 0x8A, 0xD9, 0xB4, 0x44,\n\t0xDB, 0x87, 0xD9, 0xB4, 0x45, 0x28, 0xE1, 0x84,\n\t0x80, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x82, 0x29,\n\t0x45, 0x28, 0xE1, 0x84, 0x83, 0x29, 0x45, 0x28,\n\t0xE1, 0x84, 0x85, 0x29, 0x45, 0x28, 0xE1, 0x84,\n\t0x86, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x87, 0x29,\n\t0x45, 0x28, 0xE1, 0x84, 0x89, 0x29, 0x45, 0x28,\n\t// Bytes 2080 - 20bf\n\t0xE1, 0x84, 0x8B, 0x29, 0x45, 0x28, 0xE1, 0x84,\n\t0x8C, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x8E, 0x29,\n\t0x45, 0x28, 0xE1, 0x84, 0x8F, 0x29, 0x45, 0x28,\n\t0xE1, 0x84, 0x90, 0x29, 0x45, 0x28, 0xE1, 0x84,\n\t0x91, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x92, 0x29,\n\t0x45, 0x28, 0xE4, 0xB8, 0x80, 0x29, 0x45, 0x28,\n\t0xE4, 0xB8, 0x83, 0x29, 0x45, 0x28, 0xE4, 0xB8,\n\t0x89, 0x29, 0x45, 0x28, 0xE4, 0xB9, 0x9D, 0x29,\n\t// Bytes 20c0 - 20ff\n\t0x45, 0x28, 0xE4, 0xBA, 0x8C, 0x29, 0x45, 0x28,\n\t0xE4, 0xBA, 0x94, 0x29, 0x45, 0x28, 0xE4, 0xBB,\n\t0xA3, 0x29, 0x45, 0x28, 0xE4, 0xBC, 0x81, 0x29,\n\t0x45, 0x28, 0xE4, 0xBC, 0x91, 0x29, 0x45, 0x28,\n\t0xE5, 0x85, 0xAB, 0x29, 0x45, 0x28, 0xE5, 0x85,\n\t0xAD, 0x29, 0x45, 0x28, 0xE5, 0x8A, 0xB4, 0x29,\n\t0x45, 0x28, 0xE5, 0x8D, 0x81, 0x29, 0x45, 0x28,\n\t0xE5, 0x8D, 0x94, 0x29, 0x45, 0x28, 0xE5, 0x90,\n\t// Bytes 2100 - 213f\n\t0x8D, 0x29, 0x45, 0x28, 0xE5, 0x91, 0xBC, 0x29,\n\t0x45, 0x28, 0xE5, 0x9B, 0x9B, 0x29, 0x45, 0x28,\n\t0xE5, 0x9C, 0x9F, 0x29, 0x45, 0x28, 0xE5, 0xAD,\n\t0xA6, 0x29, 0x45, 0x28, 0xE6, 0x97, 0xA5, 0x29,\n\t0x45, 0x28, 0xE6, 0x9C, 0x88, 0x29, 0x45, 0x28,\n\t0xE6, 0x9C, 0x89, 0x29, 0x45, 0x28, 0xE6, 0x9C,\n\t0xA8, 0x29, 0x45, 0x28, 0xE6, 0xA0, 0xAA, 0x29,\n\t0x45, 0x28, 0xE6, 0xB0, 0xB4, 0x29, 0x45, 0x28,\n\t// Bytes 2140 - 217f\n\t0xE7, 0x81, 0xAB, 0x29, 0x45, 0x28, 0xE7, 0x89,\n\t0xB9, 0x29, 0x45, 0x28, 0xE7, 0x9B, 0xA3, 0x29,\n\t0x45, 0x28, 0xE7, 0xA4, 0xBE, 0x29, 0x45, 0x28,\n\t0xE7, 0xA5, 0x9D, 0x29, 0x45, 0x28, 0xE7, 0xA5,\n\t0xAD, 0x29, 0x45, 0x28, 0xE8, 0x87, 0xAA, 0x29,\n\t0x45, 0x28, 0xE8, 0x87, 0xB3, 0x29, 0x45, 0x28,\n\t0xE8, 0xB2, 0xA1, 0x29, 0x45, 0x28, 0xE8, 0xB3,\n\t0x87, 0x29, 0x45, 0x28, 0xE9, 0x87, 0x91, 0x29,\n\t// Bytes 2180 - 21bf\n\t0x45, 0x30, 0xE2, 0x81, 0x84, 0x33, 0x45, 0x31,\n\t0x30, 0xE6, 0x97, 0xA5, 0x45, 0x31, 0x30, 0xE6,\n\t0x9C, 0x88, 0x45, 0x31, 0x30, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x31, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t0x31, 0xE6, 0x9C, 0x88, 0x45, 0x31, 0x31, 0xE7,\n\t0x82, 0xB9, 0x45, 0x31, 0x32, 0xE6, 0x97, 0xA5,\n\t0x45, 0x31, 0x32, 0xE6, 0x9C, 0x88, 0x45, 0x31,\n\t0x32, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x33, 0xE6,\n\t// Bytes 21c0 - 21ff\n\t0x97, 0xA5, 0x45, 0x31, 0x33, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x34, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t0x34, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x35, 0xE6,\n\t0x97, 0xA5, 0x45, 0x31, 0x35, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x36, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t0x36, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x37, 0xE6,\n\t0x97, 0xA5, 0x45, 0x31, 0x37, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x38, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t// Bytes 2200 - 223f\n\t0x38, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x39, 0xE6,\n\t0x97, 0xA5, 0x45, 0x31, 0x39, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0xE2, 0x81, 0x84, 0x32, 0x45, 0x31,\n\t0xE2, 0x81, 0x84, 0x33, 0x45, 0x31, 0xE2, 0x81,\n\t0x84, 0x34, 0x45, 0x31, 0xE2, 0x81, 0x84, 0x35,\n\t0x45, 0x31, 0xE2, 0x81, 0x84, 0x36, 0x45, 0x31,\n\t0xE2, 0x81, 0x84, 0x37, 0x45, 0x31, 0xE2, 0x81,\n\t0x84, 0x38, 0x45, 0x31, 0xE2, 0x81, 0x84, 0x39,\n\t// Bytes 2240 - 227f\n\t0x45, 0x32, 0x30, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x30, 0xE7, 0x82, 0xB9, 0x45, 0x32, 0x31, 0xE6,\n\t0x97, 0xA5, 0x45, 0x32, 0x31, 0xE7, 0x82, 0xB9,\n\t0x45, 0x32, 0x32, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x32, 0xE7, 0x82, 0xB9, 0x45, 0x32, 0x33, 0xE6,\n\t0x97, 0xA5, 0x45, 0x32, 0x33, 0xE7, 0x82, 0xB9,\n\t0x45, 0x32, 0x34, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x34, 0xE7, 0x82, 0xB9, 0x45, 0x32, 0x35, 0xE6,\n\t// Bytes 2280 - 22bf\n\t0x97, 0xA5, 0x45, 0x32, 0x36, 0xE6, 0x97, 0xA5,\n\t0x45, 0x32, 0x37, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x38, 0xE6, 0x97, 0xA5, 0x45, 0x32, 0x39, 0xE6,\n\t0x97, 0xA5, 0x45, 0x32, 0xE2, 0x81, 0x84, 0x33,\n\t0x45, 0x32, 0xE2, 0x81, 0x84, 0x35, 0x45, 0x33,\n\t0x30, 0xE6, 0x97, 0xA5, 0x45, 0x33, 0x31, 0xE6,\n\t0x97, 0xA5, 0x45, 0x33, 0xE2, 0x81, 0x84, 0x34,\n\t0x45, 0x33, 0xE2, 0x81, 0x84, 0x35, 0x45, 0x33,\n\t// Bytes 22c0 - 22ff\n\t0xE2, 0x81, 0x84, 0x38, 0x45, 0x34, 0xE2, 0x81,\n\t0x84, 0x35, 0x45, 0x35, 0xE2, 0x81, 0x84, 0x36,\n\t0x45, 0x35, 0xE2, 0x81, 0x84, 0x38, 0x45, 0x37,\n\t0xE2, 0x81, 0x84, 0x38, 0x45, 0x41, 0xE2, 0x88,\n\t0x95, 0x6D, 0x45, 0x56, 0xE2, 0x88, 0x95, 0x6D,\n\t0x45, 0x6D, 0xE2, 0x88, 0x95, 0x73, 0x46, 0x31,\n\t0xE2, 0x81, 0x84, 0x31, 0x30, 0x46, 0x43, 0xE2,\n\t0x88, 0x95, 0x6B, 0x67, 0x46, 0x6D, 0xE2, 0x88,\n\t// Bytes 2300 - 233f\n\t0x95, 0x73, 0x32, 0x46, 0xD8, 0xA8, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD8, 0xA8, 0xD8, 0xAE, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xAA, 0xD8, 0xAC, 0xD9, 0x85,\n\t0x46, 0xD8, 0xAA, 0xD8, 0xAC, 0xD9, 0x89, 0x46,\n\t0xD8, 0xAA, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD8,\n\t0xAA, 0xD8, 0xAD, 0xD8, 0xAC, 0x46, 0xD8, 0xAA,\n\t0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD8, 0xAA, 0xD8,\n\t0xAE, 0xD9, 0x85, 0x46, 0xD8, 0xAA, 0xD8, 0xAE,\n\t// Bytes 2340 - 237f\n\t0xD9, 0x89, 0x46, 0xD8, 0xAA, 0xD8, 0xAE, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xAA, 0xD9, 0x85, 0xD8, 0xAC,\n\t0x46, 0xD8, 0xAA, 0xD9, 0x85, 0xD8, 0xAD, 0x46,\n\t0xD8, 0xAA, 0xD9, 0x85, 0xD8, 0xAE, 0x46, 0xD8,\n\t0xAA, 0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8, 0xAA,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xAC, 0xD8,\n\t0xAD, 0xD9, 0x89, 0x46, 0xD8, 0xAC, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD8, 0xAC, 0xD9, 0x85, 0xD8,\n\t// Bytes 2380 - 23bf\n\t0xAD, 0x46, 0xD8, 0xAC, 0xD9, 0x85, 0xD9, 0x89,\n\t0x46, 0xD8, 0xAC, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD8, 0xAD, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD8,\n\t0xAD, 0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8, 0xAD,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xB3, 0xD8,\n\t0xAC, 0xD8, 0xAD, 0x46, 0xD8, 0xB3, 0xD8, 0xAC,\n\t0xD9, 0x89, 0x46, 0xD8, 0xB3, 0xD8, 0xAD, 0xD8,\n\t0xAC, 0x46, 0xD8, 0xB3, 0xD8, 0xAE, 0xD9, 0x89,\n\t// Bytes 23c0 - 23ff\n\t0x46, 0xD8, 0xB3, 0xD8, 0xAE, 0xD9, 0x8A, 0x46,\n\t0xD8, 0xB3, 0xD9, 0x85, 0xD8, 0xAC, 0x46, 0xD8,\n\t0xB3, 0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD8, 0xB3,\n\t0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD8, 0xB4, 0xD8,\n\t0xAC, 0xD9, 0x8A, 0x46, 0xD8, 0xB4, 0xD8, 0xAD,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB4, 0xD8, 0xAD, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xB4, 0xD9, 0x85, 0xD8, 0xAE,\n\t0x46, 0xD8, 0xB4, 0xD9, 0x85, 0xD9, 0x85, 0x46,\n\t// Bytes 2400 - 243f\n\t0xD8, 0xB5, 0xD8, 0xAD, 0xD8, 0xAD, 0x46, 0xD8,\n\t0xB5, 0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD8, 0xB5,\n\t0xD9, 0x84, 0xD9, 0x89, 0x46, 0xD8, 0xB5, 0xD9,\n\t0x84, 0xDB, 0x92, 0x46, 0xD8, 0xB5, 0xD9, 0x85,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB6, 0xD8, 0xAD, 0xD9,\n\t0x89, 0x46, 0xD8, 0xB6, 0xD8, 0xAD, 0xD9, 0x8A,\n\t0x46, 0xD8, 0xB6, 0xD8, 0xAE, 0xD9, 0x85, 0x46,\n\t0xD8, 0xB7, 0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD8,\n\t// Bytes 2440 - 247f\n\t0xB7, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD8, 0xB7,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xB9, 0xD8,\n\t0xAC, 0xD9, 0x85, 0x46, 0xD8, 0xB9, 0xD9, 0x85,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB9, 0xD9, 0x85, 0xD9,\n\t0x89, 0x46, 0xD8, 0xB9, 0xD9, 0x85, 0xD9, 0x8A,\n\t0x46, 0xD8, 0xBA, 0xD9, 0x85, 0xD9, 0x85, 0x46,\n\t0xD8, 0xBA, 0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8,\n\t0xBA, 0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x81,\n\t// Bytes 2480 - 24bf\n\t0xD8, 0xAE, 0xD9, 0x85, 0x46, 0xD9, 0x81, 0xD9,\n\t0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x82, 0xD9, 0x84,\n\t0xDB, 0x92, 0x46, 0xD9, 0x82, 0xD9, 0x85, 0xD8,\n\t0xAD, 0x46, 0xD9, 0x82, 0xD9, 0x85, 0xD9, 0x85,\n\t0x46, 0xD9, 0x82, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD9, 0x83, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD9,\n\t0x83, 0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x84,\n\t0xD8, 0xAC, 0xD8, 0xAC, 0x46, 0xD9, 0x84, 0xD8,\n\t// Bytes 24c0 - 24ff\n\t0xAC, 0xD9, 0x85, 0x46, 0xD9, 0x84, 0xD8, 0xAC,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x84, 0xD8, 0xAD, 0xD9,\n\t0x85, 0x46, 0xD9, 0x84, 0xD8, 0xAD, 0xD9, 0x89,\n\t0x46, 0xD9, 0x84, 0xD8, 0xAD, 0xD9, 0x8A, 0x46,\n\t0xD9, 0x84, 0xD8, 0xAE, 0xD9, 0x85, 0x46, 0xD9,\n\t0x84, 0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD9, 0x84,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x85, 0xD8,\n\t0xAC, 0xD8, 0xAD, 0x46, 0xD9, 0x85, 0xD8, 0xAC,\n\t// Bytes 2500 - 253f\n\t0xD8, 0xAE, 0x46, 0xD9, 0x85, 0xD8, 0xAC, 0xD9,\n\t0x85, 0x46, 0xD9, 0x85, 0xD8, 0xAC, 0xD9, 0x8A,\n\t0x46, 0xD9, 0x85, 0xD8, 0xAD, 0xD8, 0xAC, 0x46,\n\t0xD9, 0x85, 0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD9,\n\t0x85, 0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD9, 0x85,\n\t0xD8, 0xAE, 0xD8, 0xAC, 0x46, 0xD9, 0x85, 0xD8,\n\t0xAE, 0xD9, 0x85, 0x46, 0xD9, 0x85, 0xD8, 0xAE,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x85, 0xD9, 0x85, 0xD9,\n\t// Bytes 2540 - 257f\n\t0x8A, 0x46, 0xD9, 0x86, 0xD8, 0xAC, 0xD8, 0xAD,\n\t0x46, 0xD9, 0x86, 0xD8, 0xAC, 0xD9, 0x85, 0x46,\n\t0xD9, 0x86, 0xD8, 0xAC, 0xD9, 0x89, 0x46, 0xD9,\n\t0x86, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD9, 0x86,\n\t0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD9, 0x86, 0xD8,\n\t0xAD, 0xD9, 0x89, 0x46, 0xD9, 0x86, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x86, 0xD9, 0x85, 0xD9,\n\t0x89, 0x46, 0xD9, 0x86, 0xD9, 0x85, 0xD9, 0x8A,\n\t// Bytes 2580 - 25bf\n\t0x46, 0xD9, 0x87, 0xD9, 0x85, 0xD8, 0xAC, 0x46,\n\t0xD9, 0x87, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD9,\n\t0x8A, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD9, 0x8A,\n\t0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x85, 0xD9, 0x85, 0x46, 0xD9, 0x8A, 0xD9, 0x85,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8,\n\t0xA7, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xAC,\n\t0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xAD, 0x46,\n\t// Bytes 25c0 - 25ff\n\t0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xAE, 0x46, 0xD9,\n\t0x8A, 0xD9, 0x94, 0xD8, 0xB1, 0x46, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xD8, 0xB2, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x94, 0xD9, 0x85, 0x46, 0xD9, 0x8A, 0xD9, 0x94,\n\t0xD9, 0x86, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9,\n\t0x87, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x88,\n\t0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x89, 0x46,\n\t0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x8A, 0x46, 0xD9,\n\t// Bytes 2600 - 263f\n\t0x8A, 0xD9, 0x94, 0xDB, 0x86, 0x46, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xDB, 0x87, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x94, 0xDB, 0x88, 0x46, 0xD9, 0x8A, 0xD9, 0x94,\n\t0xDB, 0x90, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xDB,\n\t0x95, 0x46, 0xE0, 0xB9, 0x8D, 0xE0, 0xB8, 0xB2,\n\t0x46, 0xE0, 0xBA, 0xAB, 0xE0, 0xBA, 0x99, 0x46,\n\t0xE0, 0xBA, 0xAB, 0xE0, 0xBA, 0xA1, 0x46, 0xE0,\n\t0xBB, 0x8D, 0xE0, 0xBA, 0xB2, 0x46, 0xE0, 0xBD,\n\t// Bytes 2640 - 267f\n\t0x80, 0xE0, 0xBE, 0xB5, 0x46, 0xE0, 0xBD, 0x82,\n\t0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBD, 0x8C, 0xE0,\n\t0xBE, 0xB7, 0x46, 0xE0, 0xBD, 0x91, 0xE0, 0xBE,\n\t0xB7, 0x46, 0xE0, 0xBD, 0x96, 0xE0, 0xBE, 0xB7,\n\t0x46, 0xE0, 0xBD, 0x9B, 0xE0, 0xBE, 0xB7, 0x46,\n\t0xE0, 0xBE, 0x90, 0xE0, 0xBE, 0xB5, 0x46, 0xE0,\n\t0xBE, 0x92, 0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE,\n\t0x9C, 0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0xA1,\n\t// Bytes 2680 - 26bf\n\t0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0xA6, 0xE0,\n\t0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0xAB, 0xE0, 0xBE,\n\t0xB7, 0x46, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0x46, 0xE2, 0x80, 0xB5, 0xE2, 0x80, 0xB5, 0x46,\n\t0xE2, 0x88, 0xAB, 0xE2, 0x88, 0xAB, 0x46, 0xE2,\n\t0x88, 0xAE, 0xE2, 0x88, 0xAE, 0x46, 0xE3, 0x81,\n\t0xBB, 0xE3, 0x81, 0x8B, 0x46, 0xE3, 0x82, 0x88,\n\t0xE3, 0x82, 0x8A, 0x46, 0xE3, 0x82, 0xAD, 0xE3,\n\t// Bytes 26c0 - 26ff\n\t0x83, 0xAD, 0x46, 0xE3, 0x82, 0xB3, 0xE3, 0x82,\n\t0xB3, 0x46, 0xE3, 0x82, 0xB3, 0xE3, 0x83, 0x88,\n\t0x46, 0xE3, 0x83, 0x88, 0xE3, 0x83, 0xB3, 0x46,\n\t0xE3, 0x83, 0x8A, 0xE3, 0x83, 0x8E, 0x46, 0xE3,\n\t0x83, 0x9B, 0xE3, 0x83, 0xB3, 0x46, 0xE3, 0x83,\n\t0x9F, 0xE3, 0x83, 0xAA, 0x46, 0xE3, 0x83, 0xAA,\n\t0xE3, 0x83, 0xA9, 0x46, 0xE3, 0x83, 0xAC, 0xE3,\n\t0x83, 0xA0, 0x46, 0xE5, 0xA4, 0xA7, 0xE6, 0xAD,\n\t// Bytes 2700 - 273f\n\t0xA3, 0x46, 0xE5, 0xB9, 0xB3, 0xE6, 0x88, 0x90,\n\t0x46, 0xE6, 0x98, 0x8E, 0xE6, 0xB2, 0xBB, 0x46,\n\t0xE6, 0x98, 0xAD, 0xE5, 0x92, 0x8C, 0x47, 0x72,\n\t0x61, 0x64, 0xE2, 0x88, 0x95, 0x73, 0x47, 0xE3,\n\t0x80, 0x94, 0x53, 0xE3, 0x80, 0x95, 0x48, 0x28,\n\t0xE1, 0x84, 0x80, 0xE1, 0x85, 0xA1, 0x29, 0x48,\n\t0x28, 0xE1, 0x84, 0x82, 0xE1, 0x85, 0xA1, 0x29,\n\t0x48, 0x28, 0xE1, 0x84, 0x83, 0xE1, 0x85, 0xA1,\n\t// Bytes 2740 - 277f\n\t0x29, 0x48, 0x28, 0xE1, 0x84, 0x85, 0xE1, 0x85,\n\t0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x86, 0xE1,\n\t0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x87,\n\t0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84,\n\t0x89, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1,\n\t0x84, 0x8B, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28,\n\t0xE1, 0x84, 0x8C, 0xE1, 0x85, 0xA1, 0x29, 0x48,\n\t0x28, 0xE1, 0x84, 0x8C, 0xE1, 0x85, 0xAE, 0x29,\n\t// Bytes 2780 - 27bf\n\t0x48, 0x28, 0xE1, 0x84, 0x8E, 0xE1, 0x85, 0xA1,\n\t0x29, 0x48, 0x28, 0xE1, 0x84, 0x8F, 0xE1, 0x85,\n\t0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x90, 0xE1,\n\t0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x91,\n\t0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84,\n\t0x92, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x72, 0x61,\n\t0x64, 0xE2, 0x88, 0x95, 0x73, 0x32, 0x48, 0xD8,\n\t0xA7, 0xD9, 0x83, 0xD8, 0xA8, 0xD8, 0xB1, 0x48,\n\t// Bytes 27c0 - 27ff\n\t0xD8, 0xA7, 0xD9, 0x84, 0xD9, 0x84, 0xD9, 0x87,\n\t0x48, 0xD8, 0xB1, 0xD8, 0xB3, 0xD9, 0x88, 0xD9,\n\t0x84, 0x48, 0xD8, 0xB1, 0xDB, 0x8C, 0xD8, 0xA7,\n\t0xD9, 0x84, 0x48, 0xD8, 0xB5, 0xD9, 0x84, 0xD8,\n\t0xB9, 0xD9, 0x85, 0x48, 0xD8, 0xB9, 0xD9, 0x84,\n\t0xD9, 0x8A, 0xD9, 0x87, 0x48, 0xD9, 0x85, 0xD8,\n\t0xAD, 0xD9, 0x85, 0xD8, 0xAF, 0x48, 0xD9, 0x88,\n\t0xD8, 0xB3, 0xD9, 0x84, 0xD9, 0x85, 0x49, 0xE2,\n\t// Bytes 2800 - 283f\n\t0x80, 0xB2, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0x49, 0xE2, 0x80, 0xB5, 0xE2, 0x80, 0xB5, 0xE2,\n\t0x80, 0xB5, 0x49, 0xE2, 0x88, 0xAB, 0xE2, 0x88,\n\t0xAB, 0xE2, 0x88, 0xAB, 0x49, 0xE2, 0x88, 0xAE,\n\t0xE2, 0x88, 0xAE, 0xE2, 0x88, 0xAE, 0x49, 0xE3,\n\t0x80, 0x94, 0xE4, 0xB8, 0x89, 0xE3, 0x80, 0x95,\n\t0x49, 0xE3, 0x80, 0x94, 0xE4, 0xBA, 0x8C, 0xE3,\n\t0x80, 0x95, 0x49, 0xE3, 0x80, 0x94, 0xE5, 0x8B,\n\t// Bytes 2840 - 287f\n\t0x9D, 0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80, 0x94,\n\t0xE5, 0xAE, 0x89, 0xE3, 0x80, 0x95, 0x49, 0xE3,\n\t0x80, 0x94, 0xE6, 0x89, 0x93, 0xE3, 0x80, 0x95,\n\t0x49, 0xE3, 0x80, 0x94, 0xE6, 0x95, 0x97, 0xE3,\n\t0x80, 0x95, 0x49, 0xE3, 0x80, 0x94, 0xE6, 0x9C,\n\t0xAC, 0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80, 0x94,\n\t0xE7, 0x82, 0xB9, 0xE3, 0x80, 0x95, 0x49, 0xE3,\n\t0x80, 0x94, 0xE7, 0x9B, 0x97, 0xE3, 0x80, 0x95,\n\t// Bytes 2880 - 28bf\n\t0x49, 0xE3, 0x82, 0xA2, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xAB, 0x49, 0xE3, 0x82, 0xA4, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x81, 0x49, 0xE3, 0x82, 0xA6,\n\t0xE3, 0x82, 0xA9, 0xE3, 0x83, 0xB3, 0x49, 0xE3,\n\t0x82, 0xAA, 0xE3, 0x83, 0xB3, 0xE3, 0x82, 0xB9,\n\t0x49, 0xE3, 0x82, 0xAA, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xA0, 0x49, 0xE3, 0x82, 0xAB, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0xAA, 0x49, 0xE3, 0x82, 0xB1,\n\t// Bytes 28c0 - 28ff\n\t0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xB9, 0x49, 0xE3,\n\t0x82, 0xB3, 0xE3, 0x83, 0xAB, 0xE3, 0x83, 0x8A,\n\t0x49, 0xE3, 0x82, 0xBB, 0xE3, 0x83, 0xB3, 0xE3,\n\t0x83, 0x81, 0x49, 0xE3, 0x82, 0xBB, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x88, 0x49, 0xE3, 0x83, 0x86,\n\t0xE3, 0x82, 0x99, 0xE3, 0x82, 0xB7, 0x49, 0xE3,\n\t0x83, 0x88, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB,\n\t0x49, 0xE3, 0x83, 0x8E, 0xE3, 0x83, 0x83, 0xE3,\n\t// Bytes 2900 - 293f\n\t0x83, 0x88, 0x49, 0xE3, 0x83, 0x8F, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0x84, 0x49, 0xE3, 0x83, 0x92,\n\t0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB, 0x49, 0xE3,\n\t0x83, 0x92, 0xE3, 0x82, 0x9A, 0xE3, 0x82, 0xB3,\n\t0x49, 0xE3, 0x83, 0x95, 0xE3, 0x83, 0xA9, 0xE3,\n\t0x83, 0xB3, 0x49, 0xE3, 0x83, 0x98, 0xE3, 0x82,\n\t0x9A, 0xE3, 0x82, 0xBD, 0x49, 0xE3, 0x83, 0x98,\n\t0xE3, 0x83, 0xAB, 0xE3, 0x83, 0x84, 0x49, 0xE3,\n\t// Bytes 2940 - 297f\n\t0x83, 0x9B, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0xAB,\n\t0x49, 0xE3, 0x83, 0x9B, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xB3, 0x49, 0xE3, 0x83, 0x9E, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0xAB, 0x49, 0xE3, 0x83, 0x9E,\n\t0xE3, 0x83, 0x83, 0xE3, 0x83, 0x8F, 0x49, 0xE3,\n\t0x83, 0x9E, 0xE3, 0x83, 0xAB, 0xE3, 0x82, 0xAF,\n\t0x49, 0xE3, 0x83, 0xA4, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xAB, 0x49, 0xE3, 0x83, 0xA6, 0xE3, 0x82,\n\t// Bytes 2980 - 29bf\n\t0xA2, 0xE3, 0x83, 0xB3, 0x49, 0xE3, 0x83, 0xAF,\n\t0xE3, 0x83, 0x83, 0xE3, 0x83, 0x88, 0x4C, 0xE2,\n\t0x80, 0xB2, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0xE2, 0x80, 0xB2, 0x4C, 0xE2, 0x88, 0xAB, 0xE2,\n\t0x88, 0xAB, 0xE2, 0x88, 0xAB, 0xE2, 0x88, 0xAB,\n\t0x4C, 0xE3, 0x82, 0xA2, 0xE3, 0x83, 0xAB, 0xE3,\n\t0x83, 0x95, 0xE3, 0x82, 0xA1, 0x4C, 0xE3, 0x82,\n\t0xA8, 0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xAB, 0xE3,\n\t// Bytes 29c0 - 29ff\n\t0x83, 0xBC, 0x4C, 0xE3, 0x82, 0xAB, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xB3, 0x4C,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x9E, 0x4C, 0xE3, 0x82, 0xAB,\n\t0xE3, 0x83, 0xA9, 0xE3, 0x83, 0x83, 0xE3, 0x83,\n\t0x88, 0x4C, 0xE3, 0x82, 0xAB, 0xE3, 0x83, 0xAD,\n\t0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xBC, 0x4C, 0xE3,\n\t0x82, 0xAD, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0x8B,\n\t// Bytes 2a00 - 2a3f\n\t0xE3, 0x83, 0xBC, 0x4C, 0xE3, 0x82, 0xAD, 0xE3,\n\t0x83, 0xA5, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xBC,\n\t0x4C, 0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0xE3,\n\t0x83, 0xA9, 0xE3, 0x83, 0xA0, 0x4C, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0x8D, 0x4C, 0xE3, 0x82, 0xB5, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAB, 0x4C,\n\t0xE3, 0x82, 0xBF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t// Bytes 2a40 - 2a7f\n\t0xBC, 0xE3, 0x82, 0xB9, 0x4C, 0xE3, 0x83, 0x8F,\n\t0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0x84, 0x4C, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAB, 0x4C, 0xE3,\n\t0x83, 0x95, 0xE3, 0x82, 0xA3, 0xE3, 0x83, 0xBC,\n\t0xE3, 0x83, 0x88, 0x4C, 0xE3, 0x83, 0x98, 0xE3,\n\t0x82, 0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xBF,\n\t0x4C, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x9A, 0xE3,\n\t// Bytes 2a80 - 2abf\n\t0x83, 0x8B, 0xE3, 0x83, 0x92, 0x4C, 0xE3, 0x83,\n\t0x98, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xB3, 0xE3,\n\t0x82, 0xB9, 0x4C, 0xE3, 0x83, 0x9B, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xAB, 0xE3, 0x83, 0x88, 0x4C,\n\t0xE3, 0x83, 0x9E, 0xE3, 0x82, 0xA4, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x83, 0xAD, 0x4C, 0xE3, 0x83, 0x9F,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAD, 0xE3, 0x83,\n\t0xB3, 0x4C, 0xE3, 0x83, 0xA1, 0xE3, 0x83, 0xBC,\n\t// Bytes 2ac0 - 2aff\n\t0xE3, 0x83, 0x88, 0xE3, 0x83, 0xAB, 0x4C, 0xE3,\n\t0x83, 0xAA, 0xE3, 0x83, 0x83, 0xE3, 0x83, 0x88,\n\t0xE3, 0x83, 0xAB, 0x4C, 0xE3, 0x83, 0xAB, 0xE3,\n\t0x83, 0x92, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC,\n\t0x4C, 0xE6, 0xA0, 0xAA, 0xE5, 0xBC, 0x8F, 0xE4,\n\t0xBC, 0x9A, 0xE7, 0xA4, 0xBE, 0x4E, 0x28, 0xE1,\n\t0x84, 0x8B, 0xE1, 0x85, 0xA9, 0xE1, 0x84, 0x92,\n\t0xE1, 0x85, 0xAE, 0x29, 0x4F, 0xD8, 0xAC, 0xD9,\n\t// Bytes 2b00 - 2b3f\n\t0x84, 0x20, 0xD8, 0xAC, 0xD9, 0x84, 0xD8, 0xA7,\n\t0xD9, 0x84, 0xD9, 0x87, 0x4F, 0xE3, 0x82, 0xA2,\n\t0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x9A, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0x88, 0x4F, 0xE3, 0x82, 0xA2,\n\t0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x98, 0xE3, 0x82,\n\t0x9A, 0xE3, 0x82, 0xA2, 0x4F, 0xE3, 0x82, 0xAD,\n\t0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xAF, 0xE3, 0x83,\n\t0x83, 0xE3, 0x83, 0x88, 0x4F, 0xE3, 0x82, 0xB5,\n\t// Bytes 2b40 - 2b7f\n\t0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x81, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0xA0, 0x4F, 0xE3, 0x83, 0x8F,\n\t0xE3, 0x82, 0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0xAC, 0xE3, 0x83, 0xAB, 0x4F, 0xE3, 0x83, 0x98,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x82, 0xBF, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0xAB, 0x4F, 0xE3, 0x83, 0x9B,\n\t0xE3, 0x82, 0x9A, 0xE3, 0x82, 0xA4, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x88, 0x4F, 0xE3, 0x83, 0x9E,\n\t// Bytes 2b80 - 2bbf\n\t0xE3, 0x83, 0xB3, 0xE3, 0x82, 0xB7, 0xE3, 0x83,\n\t0xA7, 0xE3, 0x83, 0xB3, 0x4F, 0xE3, 0x83, 0xA1,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0x88, 0xE3, 0x83, 0xB3, 0x4F, 0xE3, 0x83, 0xAB,\n\t0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x95, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xAB, 0x51, 0x28, 0xE1, 0x84,\n\t0x8B, 0xE1, 0x85, 0xA9, 0xE1, 0x84, 0x8C, 0xE1,\n\t0x85, 0xA5, 0xE1, 0x86, 0xAB, 0x29, 0x52, 0xE3,\n\t// Bytes 2bc0 - 2bff\n\t0x82, 0xAD, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB,\n\t0xE3, 0x82, 0xBF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xBC, 0x52, 0xE3, 0x82, 0xAD, 0xE3, 0x83, 0xAD,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xA9, 0xE3, 0x83, 0xA0, 0x52, 0xE3, 0x82, 0xAD,\n\t0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xA1, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0x88, 0xE3, 0x83, 0xAB, 0x52,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t// Bytes 2c00 - 2c3f\n\t0xA9, 0xE3, 0x83, 0xA0, 0xE3, 0x83, 0x88, 0xE3,\n\t0x83, 0xB3, 0x52, 0xE3, 0x82, 0xAF, 0xE3, 0x83,\n\t0xAB, 0xE3, 0x82, 0xBB, 0xE3, 0x82, 0x99, 0xE3,\n\t0x82, 0xA4, 0xE3, 0x83, 0xAD, 0x52, 0xE3, 0x83,\n\t0x8F, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x82, 0xBB, 0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x88,\n\t0x52, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A, 0xE3,\n\t0x82, 0xA2, 0xE3, 0x82, 0xB9, 0xE3, 0x83, 0x88,\n\t// Bytes 2c40 - 2c7f\n\t0xE3, 0x83, 0xAB, 0x52, 0xE3, 0x83, 0x95, 0xE3,\n\t0x82, 0x99, 0xE3, 0x83, 0x83, 0xE3, 0x82, 0xB7,\n\t0xE3, 0x82, 0xA7, 0xE3, 0x83, 0xAB, 0x52, 0xE3,\n\t0x83, 0x9F, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0x8F,\n\t0xE3, 0x82, 0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0xAB, 0x52, 0xE3, 0x83, 0xAC, 0xE3, 0x83, 0xB3,\n\t0xE3, 0x83, 0x88, 0xE3, 0x82, 0xB1, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xB3, 0x61, 0xD8, 0xB5, 0xD9,\n\t// Bytes 2c80 - 2cbf\n\t0x84, 0xD9, 0x89, 0x20, 0xD8, 0xA7, 0xD9, 0x84,\n\t0xD9, 0x84, 0xD9, 0x87, 0x20, 0xD8, 0xB9, 0xD9,\n\t0x84, 0xD9, 0x8A, 0xD9, 0x87, 0x20, 0xD9, 0x88,\n\t0xD8, 0xB3, 0xD9, 0x84, 0xD9, 0x85, 0x06, 0xE0,\n\t0xA7, 0x87, 0xE0, 0xA6, 0xBE, 0x01, 0x06, 0xE0,\n\t0xA7, 0x87, 0xE0, 0xA7, 0x97, 0x01, 0x06, 0xE0,\n\t0xAD, 0x87, 0xE0, 0xAC, 0xBE, 0x01, 0x06, 0xE0,\n\t0xAD, 0x87, 0xE0, 0xAD, 0x96, 0x01, 0x06, 0xE0,\n\t// Bytes 2cc0 - 2cff\n\t0xAD, 0x87, 0xE0, 0xAD, 0x97, 0x01, 0x06, 0xE0,\n\t0xAE, 0x92, 0xE0, 0xAF, 0x97, 0x01, 0x06, 0xE0,\n\t0xAF, 0x86, 0xE0, 0xAE, 0xBE, 0x01, 0x06, 0xE0,\n\t0xAF, 0x86, 0xE0, 0xAF, 0x97, 0x01, 0x06, 0xE0,\n\t0xAF, 0x87, 0xE0, 0xAE, 0xBE, 0x01, 0x06, 0xE0,\n\t0xB2, 0xBF, 0xE0, 0xB3, 0x95, 0x01, 0x06, 0xE0,\n\t0xB3, 0x86, 0xE0, 0xB3, 0x95, 0x01, 0x06, 0xE0,\n\t0xB3, 0x86, 0xE0, 0xB3, 0x96, 0x01, 0x06, 0xE0,\n\t// Bytes 2d00 - 2d3f\n\t0xB5, 0x86, 0xE0, 0xB4, 0xBE, 0x01, 0x06, 0xE0,\n\t0xB5, 0x86, 0xE0, 0xB5, 0x97, 0x01, 0x06, 0xE0,\n\t0xB5, 0x87, 0xE0, 0xB4, 0xBE, 0x01, 0x06, 0xE0,\n\t0xB7, 0x99, 0xE0, 0xB7, 0x9F, 0x01, 0x06, 0xE1,\n\t0x80, 0xA5, 0xE1, 0x80, 0xAE, 0x01, 0x06, 0xE1,\n\t0xAC, 0x85, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x87, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x89, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t// Bytes 2d40 - 2d7f\n\t0xAC, 0x8B, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x8D, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x91, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBA, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBC, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBE, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBF, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAD, 0x82, 0xE1, 0xAC, 0xB5, 0x01, 0x08, 0xF0,\n\t// Bytes 2d80 - 2dbf\n\t0x91, 0x84, 0xB1, 0xF0, 0x91, 0x84, 0xA7, 0x01,\n\t0x08, 0xF0, 0x91, 0x84, 0xB2, 0xF0, 0x91, 0x84,\n\t0xA7, 0x01, 0x08, 0xF0, 0x91, 0x8D, 0x87, 0xF0,\n\t0x91, 0x8C, 0xBE, 0x01, 0x08, 0xF0, 0x91, 0x8D,\n\t0x87, 0xF0, 0x91, 0x8D, 0x97, 0x01, 0x08, 0xF0,\n\t0x91, 0x92, 0xB9, 0xF0, 0x91, 0x92, 0xB0, 0x01,\n\t0x08, 0xF0, 0x91, 0x92, 0xB9, 0xF0, 0x91, 0x92,\n\t0xBA, 0x01, 0x08, 0xF0, 0x91, 0x92, 0xB9, 0xF0,\n\t// Bytes 2dc0 - 2dff\n\t0x91, 0x92, 0xBD, 0x01, 0x08, 0xF0, 0x91, 0x96,\n\t0xB8, 0xF0, 0x91, 0x96, 0xAF, 0x01, 0x08, 0xF0,\n\t0x91, 0x96, 0xB9, 0xF0, 0x91, 0x96, 0xAF, 0x01,\n\t0x09, 0xE0, 0xB3, 0x86, 0xE0, 0xB3, 0x82, 0xE0,\n\t0xB3, 0x95, 0x02, 0x09, 0xE0, 0xB7, 0x99, 0xE0,\n\t0xB7, 0x8F, 0xE0, 0xB7, 0x8A, 0x12, 0x44, 0x44,\n\t0x5A, 0xCC, 0x8C, 0xC9, 0x44, 0x44, 0x7A, 0xCC,\n\t0x8C, 0xC9, 0x44, 0x64, 0x7A, 0xCC, 0x8C, 0xC9,\n\t// Bytes 2e00 - 2e3f\n\t0x46, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x93, 0xC9,\n\t0x46, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x94, 0xC9,\n\t0x46, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x95, 0xB5,\n\t0x46, 0xE1, 0x84, 0x80, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x82, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x83, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x85, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x86, 0xE1, 0x85, 0xA1, 0x01,\n\t// Bytes 2e40 - 2e7f\n\t0x46, 0xE1, 0x84, 0x87, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x89, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xAE, 0x01,\n\t0x46, 0xE1, 0x84, 0x8C, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8E, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8F, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x90, 0xE1, 0x85, 0xA1, 0x01,\n\t// Bytes 2e80 - 2ebf\n\t0x46, 0xE1, 0x84, 0x91, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x92, 0xE1, 0x85, 0xA1, 0x01,\n\t0x49, 0xE3, 0x83, 0xA1, 0xE3, 0x82, 0xAB, 0xE3,\n\t0x82, 0x99, 0x0D, 0x4C, 0xE1, 0x84, 0x8C, 0xE1,\n\t0x85, 0xAE, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xB4,\n\t0x01, 0x4C, 0xE3, 0x82, 0xAD, 0xE3, 0x82, 0x99,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0x0D, 0x4C,\n\t0xE3, 0x82, 0xB3, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t// Bytes 2ec0 - 2eff\n\t0x9B, 0xE3, 0x82, 0x9A, 0x0D, 0x4C, 0xE3, 0x83,\n\t0xA4, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88, 0xE3,\n\t0x82, 0x99, 0x0D, 0x4F, 0xE1, 0x84, 0x8E, 0xE1,\n\t0x85, 0xA1, 0xE1, 0x86, 0xB7, 0xE1, 0x84, 0x80,\n\t0xE1, 0x85, 0xA9, 0x01, 0x4F, 0xE3, 0x82, 0xA4,\n\t0xE3, 0x83, 0x8B, 0xE3, 0x83, 0xB3, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x82, 0x99, 0x0D, 0x4F, 0xE3, 0x82,\n\t0xB7, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xB3, 0xE3,\n\t// Bytes 2f00 - 2f3f\n\t0x82, 0xAF, 0xE3, 0x82, 0x99, 0x0D, 0x4F, 0xE3,\n\t0x83, 0x98, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC,\n\t0xE3, 0x82, 0xB7, 0xE3, 0x82, 0x99, 0x0D, 0x4F,\n\t0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x9A, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D,\n\t0x52, 0xE3, 0x82, 0xA8, 0xE3, 0x82, 0xB9, 0xE3,\n\t0x82, 0xAF, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88,\n\t0xE3, 0x82, 0x99, 0x0D, 0x52, 0xE3, 0x83, 0x95,\n\t// Bytes 2f40 - 2f7f\n\t0xE3, 0x82, 0xA1, 0xE3, 0x83, 0xA9, 0xE3, 0x83,\n\t0x83, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D,\n\t0x86, 0xE0, 0xB3, 0x86, 0xE0, 0xB3, 0x82, 0x01,\n\t0x86, 0xE0, 0xB7, 0x99, 0xE0, 0xB7, 0x8F, 0x01,\n\t0x03, 0x3C, 0xCC, 0xB8, 0x05, 0x03, 0x3D, 0xCC,\n\t0xB8, 0x05, 0x03, 0x3E, 0xCC, 0xB8, 0x05, 0x03,\n\t0x41, 0xCC, 0x80, 0xC9, 0x03, 0x41, 0xCC, 0x81,\n\t0xC9, 0x03, 0x41, 0xCC, 0x83, 0xC9, 0x03, 0x41,\n\t// Bytes 2f80 - 2fbf\n\t0xCC, 0x84, 0xC9, 0x03, 0x41, 0xCC, 0x89, 0xC9,\n\t0x03, 0x41, 0xCC, 0x8C, 0xC9, 0x03, 0x41, 0xCC,\n\t0x8F, 0xC9, 0x03, 0x41, 0xCC, 0x91, 0xC9, 0x03,\n\t0x41, 0xCC, 0xA5, 0xB5, 0x03, 0x41, 0xCC, 0xA8,\n\t0xA5, 0x03, 0x42, 0xCC, 0x87, 0xC9, 0x03, 0x42,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x42, 0xCC, 0xB1, 0xB5,\n\t0x03, 0x43, 0xCC, 0x81, 0xC9, 0x03, 0x43, 0xCC,\n\t0x82, 0xC9, 0x03, 0x43, 0xCC, 0x87, 0xC9, 0x03,\n\t// Bytes 2fc0 - 2fff\n\t0x43, 0xCC, 0x8C, 0xC9, 0x03, 0x44, 0xCC, 0x87,\n\t0xC9, 0x03, 0x44, 0xCC, 0x8C, 0xC9, 0x03, 0x44,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x44, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x44, 0xCC, 0xAD, 0xB5, 0x03, 0x44, 0xCC,\n\t0xB1, 0xB5, 0x03, 0x45, 0xCC, 0x80, 0xC9, 0x03,\n\t0x45, 0xCC, 0x81, 0xC9, 0x03, 0x45, 0xCC, 0x83,\n\t0xC9, 0x03, 0x45, 0xCC, 0x86, 0xC9, 0x03, 0x45,\n\t0xCC, 0x87, 0xC9, 0x03, 0x45, 0xCC, 0x88, 0xC9,\n\t// Bytes 3000 - 303f\n\t0x03, 0x45, 0xCC, 0x89, 0xC9, 0x03, 0x45, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x45, 0xCC, 0x8F, 0xC9, 0x03,\n\t0x45, 0xCC, 0x91, 0xC9, 0x03, 0x45, 0xCC, 0xA8,\n\t0xA5, 0x03, 0x45, 0xCC, 0xAD, 0xB5, 0x03, 0x45,\n\t0xCC, 0xB0, 0xB5, 0x03, 0x46, 0xCC, 0x87, 0xC9,\n\t0x03, 0x47, 0xCC, 0x81, 0xC9, 0x03, 0x47, 0xCC,\n\t0x82, 0xC9, 0x03, 0x47, 0xCC, 0x84, 0xC9, 0x03,\n\t0x47, 0xCC, 0x86, 0xC9, 0x03, 0x47, 0xCC, 0x87,\n\t// Bytes 3040 - 307f\n\t0xC9, 0x03, 0x47, 0xCC, 0x8C, 0xC9, 0x03, 0x47,\n\t0xCC, 0xA7, 0xA5, 0x03, 0x48, 0xCC, 0x82, 0xC9,\n\t0x03, 0x48, 0xCC, 0x87, 0xC9, 0x03, 0x48, 0xCC,\n\t0x88, 0xC9, 0x03, 0x48, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x48, 0xCC, 0xA3, 0xB5, 0x03, 0x48, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x48, 0xCC, 0xAE, 0xB5, 0x03, 0x49,\n\t0xCC, 0x80, 0xC9, 0x03, 0x49, 0xCC, 0x81, 0xC9,\n\t0x03, 0x49, 0xCC, 0x82, 0xC9, 0x03, 0x49, 0xCC,\n\t// Bytes 3080 - 30bf\n\t0x83, 0xC9, 0x03, 0x49, 0xCC, 0x84, 0xC9, 0x03,\n\t0x49, 0xCC, 0x86, 0xC9, 0x03, 0x49, 0xCC, 0x87,\n\t0xC9, 0x03, 0x49, 0xCC, 0x89, 0xC9, 0x03, 0x49,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x49, 0xCC, 0x8F, 0xC9,\n\t0x03, 0x49, 0xCC, 0x91, 0xC9, 0x03, 0x49, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x49, 0xCC, 0xA8, 0xA5, 0x03,\n\t0x49, 0xCC, 0xB0, 0xB5, 0x03, 0x4A, 0xCC, 0x82,\n\t0xC9, 0x03, 0x4B, 0xCC, 0x81, 0xC9, 0x03, 0x4B,\n\t// Bytes 30c0 - 30ff\n\t0xCC, 0x8C, 0xC9, 0x03, 0x4B, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x4B, 0xCC, 0xA7, 0xA5, 0x03, 0x4B, 0xCC,\n\t0xB1, 0xB5, 0x03, 0x4C, 0xCC, 0x81, 0xC9, 0x03,\n\t0x4C, 0xCC, 0x8C, 0xC9, 0x03, 0x4C, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x4C, 0xCC, 0xAD, 0xB5, 0x03, 0x4C,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x4D, 0xCC, 0x81, 0xC9,\n\t0x03, 0x4D, 0xCC, 0x87, 0xC9, 0x03, 0x4D, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x4E, 0xCC, 0x80, 0xC9, 0x03,\n\t// Bytes 3100 - 313f\n\t0x4E, 0xCC, 0x81, 0xC9, 0x03, 0x4E, 0xCC, 0x83,\n\t0xC9, 0x03, 0x4E, 0xCC, 0x87, 0xC9, 0x03, 0x4E,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x4E, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x4E, 0xCC, 0xA7, 0xA5, 0x03, 0x4E, 0xCC,\n\t0xAD, 0xB5, 0x03, 0x4E, 0xCC, 0xB1, 0xB5, 0x03,\n\t0x4F, 0xCC, 0x80, 0xC9, 0x03, 0x4F, 0xCC, 0x81,\n\t0xC9, 0x03, 0x4F, 0xCC, 0x86, 0xC9, 0x03, 0x4F,\n\t0xCC, 0x89, 0xC9, 0x03, 0x4F, 0xCC, 0x8B, 0xC9,\n\t// Bytes 3140 - 317f\n\t0x03, 0x4F, 0xCC, 0x8C, 0xC9, 0x03, 0x4F, 0xCC,\n\t0x8F, 0xC9, 0x03, 0x4F, 0xCC, 0x91, 0xC9, 0x03,\n\t0x50, 0xCC, 0x81, 0xC9, 0x03, 0x50, 0xCC, 0x87,\n\t0xC9, 0x03, 0x52, 0xCC, 0x81, 0xC9, 0x03, 0x52,\n\t0xCC, 0x87, 0xC9, 0x03, 0x52, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x52, 0xCC, 0x8F, 0xC9, 0x03, 0x52, 0xCC,\n\t0x91, 0xC9, 0x03, 0x52, 0xCC, 0xA7, 0xA5, 0x03,\n\t0x52, 0xCC, 0xB1, 0xB5, 0x03, 0x53, 0xCC, 0x82,\n\t// Bytes 3180 - 31bf\n\t0xC9, 0x03, 0x53, 0xCC, 0x87, 0xC9, 0x03, 0x53,\n\t0xCC, 0xA6, 0xB5, 0x03, 0x53, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x54, 0xCC, 0x87, 0xC9, 0x03, 0x54, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x54, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x54, 0xCC, 0xA6, 0xB5, 0x03, 0x54, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x54, 0xCC, 0xAD, 0xB5, 0x03, 0x54,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x55, 0xCC, 0x80, 0xC9,\n\t0x03, 0x55, 0xCC, 0x81, 0xC9, 0x03, 0x55, 0xCC,\n\t// Bytes 31c0 - 31ff\n\t0x82, 0xC9, 0x03, 0x55, 0xCC, 0x86, 0xC9, 0x03,\n\t0x55, 0xCC, 0x89, 0xC9, 0x03, 0x55, 0xCC, 0x8A,\n\t0xC9, 0x03, 0x55, 0xCC, 0x8B, 0xC9, 0x03, 0x55,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x55, 0xCC, 0x8F, 0xC9,\n\t0x03, 0x55, 0xCC, 0x91, 0xC9, 0x03, 0x55, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x55, 0xCC, 0xA4, 0xB5, 0x03,\n\t0x55, 0xCC, 0xA8, 0xA5, 0x03, 0x55, 0xCC, 0xAD,\n\t0xB5, 0x03, 0x55, 0xCC, 0xB0, 0xB5, 0x03, 0x56,\n\t// Bytes 3200 - 323f\n\t0xCC, 0x83, 0xC9, 0x03, 0x56, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x57, 0xCC, 0x80, 0xC9, 0x03, 0x57, 0xCC,\n\t0x81, 0xC9, 0x03, 0x57, 0xCC, 0x82, 0xC9, 0x03,\n\t0x57, 0xCC, 0x87, 0xC9, 0x03, 0x57, 0xCC, 0x88,\n\t0xC9, 0x03, 0x57, 0xCC, 0xA3, 0xB5, 0x03, 0x58,\n\t0xCC, 0x87, 0xC9, 0x03, 0x58, 0xCC, 0x88, 0xC9,\n\t0x03, 0x59, 0xCC, 0x80, 0xC9, 0x03, 0x59, 0xCC,\n\t0x81, 0xC9, 0x03, 0x59, 0xCC, 0x82, 0xC9, 0x03,\n\t// Bytes 3240 - 327f\n\t0x59, 0xCC, 0x83, 0xC9, 0x03, 0x59, 0xCC, 0x84,\n\t0xC9, 0x03, 0x59, 0xCC, 0x87, 0xC9, 0x03, 0x59,\n\t0xCC, 0x88, 0xC9, 0x03, 0x59, 0xCC, 0x89, 0xC9,\n\t0x03, 0x59, 0xCC, 0xA3, 0xB5, 0x03, 0x5A, 0xCC,\n\t0x81, 0xC9, 0x03, 0x5A, 0xCC, 0x82, 0xC9, 0x03,\n\t0x5A, 0xCC, 0x87, 0xC9, 0x03, 0x5A, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x5A, 0xCC, 0xA3, 0xB5, 0x03, 0x5A,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x61, 0xCC, 0x80, 0xC9,\n\t// Bytes 3280 - 32bf\n\t0x03, 0x61, 0xCC, 0x81, 0xC9, 0x03, 0x61, 0xCC,\n\t0x83, 0xC9, 0x03, 0x61, 0xCC, 0x84, 0xC9, 0x03,\n\t0x61, 0xCC, 0x89, 0xC9, 0x03, 0x61, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x61, 0xCC, 0x8F, 0xC9, 0x03, 0x61,\n\t0xCC, 0x91, 0xC9, 0x03, 0x61, 0xCC, 0xA5, 0xB5,\n\t0x03, 0x61, 0xCC, 0xA8, 0xA5, 0x03, 0x62, 0xCC,\n\t0x87, 0xC9, 0x03, 0x62, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x62, 0xCC, 0xB1, 0xB5, 0x03, 0x63, 0xCC, 0x81,\n\t// Bytes 32c0 - 32ff\n\t0xC9, 0x03, 0x63, 0xCC, 0x82, 0xC9, 0x03, 0x63,\n\t0xCC, 0x87, 0xC9, 0x03, 0x63, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x64, 0xCC, 0x87, 0xC9, 0x03, 0x64, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x64, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x64, 0xCC, 0xA7, 0xA5, 0x03, 0x64, 0xCC, 0xAD,\n\t0xB5, 0x03, 0x64, 0xCC, 0xB1, 0xB5, 0x03, 0x65,\n\t0xCC, 0x80, 0xC9, 0x03, 0x65, 0xCC, 0x81, 0xC9,\n\t0x03, 0x65, 0xCC, 0x83, 0xC9, 0x03, 0x65, 0xCC,\n\t// Bytes 3300 - 333f\n\t0x86, 0xC9, 0x03, 0x65, 0xCC, 0x87, 0xC9, 0x03,\n\t0x65, 0xCC, 0x88, 0xC9, 0x03, 0x65, 0xCC, 0x89,\n\t0xC9, 0x03, 0x65, 0xCC, 0x8C, 0xC9, 0x03, 0x65,\n\t0xCC, 0x8F, 0xC9, 0x03, 0x65, 0xCC, 0x91, 0xC9,\n\t0x03, 0x65, 0xCC, 0xA8, 0xA5, 0x03, 0x65, 0xCC,\n\t0xAD, 0xB5, 0x03, 0x65, 0xCC, 0xB0, 0xB5, 0x03,\n\t0x66, 0xCC, 0x87, 0xC9, 0x03, 0x67, 0xCC, 0x81,\n\t0xC9, 0x03, 0x67, 0xCC, 0x82, 0xC9, 0x03, 0x67,\n\t// Bytes 3340 - 337f\n\t0xCC, 0x84, 0xC9, 0x03, 0x67, 0xCC, 0x86, 0xC9,\n\t0x03, 0x67, 0xCC, 0x87, 0xC9, 0x03, 0x67, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x67, 0xCC, 0xA7, 0xA5, 0x03,\n\t0x68, 0xCC, 0x82, 0xC9, 0x03, 0x68, 0xCC, 0x87,\n\t0xC9, 0x03, 0x68, 0xCC, 0x88, 0xC9, 0x03, 0x68,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x68, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x68, 0xCC, 0xA7, 0xA5, 0x03, 0x68, 0xCC,\n\t0xAE, 0xB5, 0x03, 0x68, 0xCC, 0xB1, 0xB5, 0x03,\n\t// Bytes 3380 - 33bf\n\t0x69, 0xCC, 0x80, 0xC9, 0x03, 0x69, 0xCC, 0x81,\n\t0xC9, 0x03, 0x69, 0xCC, 0x82, 0xC9, 0x03, 0x69,\n\t0xCC, 0x83, 0xC9, 0x03, 0x69, 0xCC, 0x84, 0xC9,\n\t0x03, 0x69, 0xCC, 0x86, 0xC9, 0x03, 0x69, 0xCC,\n\t0x89, 0xC9, 0x03, 0x69, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x69, 0xCC, 0x8F, 0xC9, 0x03, 0x69, 0xCC, 0x91,\n\t0xC9, 0x03, 0x69, 0xCC, 0xA3, 0xB5, 0x03, 0x69,\n\t0xCC, 0xA8, 0xA5, 0x03, 0x69, 0xCC, 0xB0, 0xB5,\n\t// Bytes 33c0 - 33ff\n\t0x03, 0x6A, 0xCC, 0x82, 0xC9, 0x03, 0x6A, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x6B, 0xCC, 0x81, 0xC9, 0x03,\n\t0x6B, 0xCC, 0x8C, 0xC9, 0x03, 0x6B, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x6B, 0xCC, 0xA7, 0xA5, 0x03, 0x6B,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x6C, 0xCC, 0x81, 0xC9,\n\t0x03, 0x6C, 0xCC, 0x8C, 0xC9, 0x03, 0x6C, 0xCC,\n\t0xA7, 0xA5, 0x03, 0x6C, 0xCC, 0xAD, 0xB5, 0x03,\n\t0x6C, 0xCC, 0xB1, 0xB5, 0x03, 0x6D, 0xCC, 0x81,\n\t// Bytes 3400 - 343f\n\t0xC9, 0x03, 0x6D, 0xCC, 0x87, 0xC9, 0x03, 0x6D,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x6E, 0xCC, 0x80, 0xC9,\n\t0x03, 0x6E, 0xCC, 0x81, 0xC9, 0x03, 0x6E, 0xCC,\n\t0x83, 0xC9, 0x03, 0x6E, 0xCC, 0x87, 0xC9, 0x03,\n\t0x6E, 0xCC, 0x8C, 0xC9, 0x03, 0x6E, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x6E, 0xCC, 0xA7, 0xA5, 0x03, 0x6E,\n\t0xCC, 0xAD, 0xB5, 0x03, 0x6E, 0xCC, 0xB1, 0xB5,\n\t0x03, 0x6F, 0xCC, 0x80, 0xC9, 0x03, 0x6F, 0xCC,\n\t// Bytes 3440 - 347f\n\t0x81, 0xC9, 0x03, 0x6F, 0xCC, 0x86, 0xC9, 0x03,\n\t0x6F, 0xCC, 0x89, 0xC9, 0x03, 0x6F, 0xCC, 0x8B,\n\t0xC9, 0x03, 0x6F, 0xCC, 0x8C, 0xC9, 0x03, 0x6F,\n\t0xCC, 0x8F, 0xC9, 0x03, 0x6F, 0xCC, 0x91, 0xC9,\n\t0x03, 0x70, 0xCC, 0x81, 0xC9, 0x03, 0x70, 0xCC,\n\t0x87, 0xC9, 0x03, 0x72, 0xCC, 0x81, 0xC9, 0x03,\n\t0x72, 0xCC, 0x87, 0xC9, 0x03, 0x72, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x72, 0xCC, 0x8F, 0xC9, 0x03, 0x72,\n\t// Bytes 3480 - 34bf\n\t0xCC, 0x91, 0xC9, 0x03, 0x72, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x72, 0xCC, 0xB1, 0xB5, 0x03, 0x73, 0xCC,\n\t0x82, 0xC9, 0x03, 0x73, 0xCC, 0x87, 0xC9, 0x03,\n\t0x73, 0xCC, 0xA6, 0xB5, 0x03, 0x73, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x74, 0xCC, 0x87, 0xC9, 0x03, 0x74,\n\t0xCC, 0x88, 0xC9, 0x03, 0x74, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x74, 0xCC, 0xA3, 0xB5, 0x03, 0x74, 0xCC,\n\t0xA6, 0xB5, 0x03, 0x74, 0xCC, 0xA7, 0xA5, 0x03,\n\t// Bytes 34c0 - 34ff\n\t0x74, 0xCC, 0xAD, 0xB5, 0x03, 0x74, 0xCC, 0xB1,\n\t0xB5, 0x03, 0x75, 0xCC, 0x80, 0xC9, 0x03, 0x75,\n\t0xCC, 0x81, 0xC9, 0x03, 0x75, 0xCC, 0x82, 0xC9,\n\t0x03, 0x75, 0xCC, 0x86, 0xC9, 0x03, 0x75, 0xCC,\n\t0x89, 0xC9, 0x03, 0x75, 0xCC, 0x8A, 0xC9, 0x03,\n\t0x75, 0xCC, 0x8B, 0xC9, 0x03, 0x75, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x75, 0xCC, 0x8F, 0xC9, 0x03, 0x75,\n\t0xCC, 0x91, 0xC9, 0x03, 0x75, 0xCC, 0xA3, 0xB5,\n\t// Bytes 3500 - 353f\n\t0x03, 0x75, 0xCC, 0xA4, 0xB5, 0x03, 0x75, 0xCC,\n\t0xA8, 0xA5, 0x03, 0x75, 0xCC, 0xAD, 0xB5, 0x03,\n\t0x75, 0xCC, 0xB0, 0xB5, 0x03, 0x76, 0xCC, 0x83,\n\t0xC9, 0x03, 0x76, 0xCC, 0xA3, 0xB5, 0x03, 0x77,\n\t0xCC, 0x80, 0xC9, 0x03, 0x77, 0xCC, 0x81, 0xC9,\n\t0x03, 0x77, 0xCC, 0x82, 0xC9, 0x03, 0x77, 0xCC,\n\t0x87, 0xC9, 0x03, 0x77, 0xCC, 0x88, 0xC9, 0x03,\n\t0x77, 0xCC, 0x8A, 0xC9, 0x03, 0x77, 0xCC, 0xA3,\n\t// Bytes 3540 - 357f\n\t0xB5, 0x03, 0x78, 0xCC, 0x87, 0xC9, 0x03, 0x78,\n\t0xCC, 0x88, 0xC9, 0x03, 0x79, 0xCC, 0x80, 0xC9,\n\t0x03, 0x79, 0xCC, 0x81, 0xC9, 0x03, 0x79, 0xCC,\n\t0x82, 0xC9, 0x03, 0x79, 0xCC, 0x83, 0xC9, 0x03,\n\t0x79, 0xCC, 0x84, 0xC9, 0x03, 0x79, 0xCC, 0x87,\n\t0xC9, 0x03, 0x79, 0xCC, 0x88, 0xC9, 0x03, 0x79,\n\t0xCC, 0x89, 0xC9, 0x03, 0x79, 0xCC, 0x8A, 0xC9,\n\t0x03, 0x79, 0xCC, 0xA3, 0xB5, 0x03, 0x7A, 0xCC,\n\t// Bytes 3580 - 35bf\n\t0x81, 0xC9, 0x03, 0x7A, 0xCC, 0x82, 0xC9, 0x03,\n\t0x7A, 0xCC, 0x87, 0xC9, 0x03, 0x7A, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x7A, 0xCC, 0xA3, 0xB5, 0x03, 0x7A,\n\t0xCC, 0xB1, 0xB5, 0x04, 0xC2, 0xA8, 0xCC, 0x80,\n\t0xCA, 0x04, 0xC2, 0xA8, 0xCC, 0x81, 0xCA, 0x04,\n\t0xC2, 0xA8, 0xCD, 0x82, 0xCA, 0x04, 0xC3, 0x86,\n\t0xCC, 0x81, 0xC9, 0x04, 0xC3, 0x86, 0xCC, 0x84,\n\t0xC9, 0x04, 0xC3, 0x98, 0xCC, 0x81, 0xC9, 0x04,\n\t// Bytes 35c0 - 35ff\n\t0xC3, 0xA6, 0xCC, 0x81, 0xC9, 0x04, 0xC3, 0xA6,\n\t0xCC, 0x84, 0xC9, 0x04, 0xC3, 0xB8, 0xCC, 0x81,\n\t0xC9, 0x04, 0xC5, 0xBF, 0xCC, 0x87, 0xC9, 0x04,\n\t0xC6, 0xB7, 0xCC, 0x8C, 0xC9, 0x04, 0xCA, 0x92,\n\t0xCC, 0x8C, 0xC9, 0x04, 0xCE, 0x91, 0xCC, 0x80,\n\t0xC9, 0x04, 0xCE, 0x91, 0xCC, 0x81, 0xC9, 0x04,\n\t0xCE, 0x91, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0x91,\n\t0xCC, 0x86, 0xC9, 0x04, 0xCE, 0x91, 0xCD, 0x85,\n\t// Bytes 3600 - 363f\n\t0xD9, 0x04, 0xCE, 0x95, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCE, 0x95, 0xCC, 0x81, 0xC9, 0x04, 0xCE, 0x97,\n\t0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x97, 0xCC, 0x81,\n\t0xC9, 0x04, 0xCE, 0x97, 0xCD, 0x85, 0xD9, 0x04,\n\t0xCE, 0x99, 0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x99,\n\t0xCC, 0x81, 0xC9, 0x04, 0xCE, 0x99, 0xCC, 0x84,\n\t0xC9, 0x04, 0xCE, 0x99, 0xCC, 0x86, 0xC9, 0x04,\n\t0xCE, 0x99, 0xCC, 0x88, 0xC9, 0x04, 0xCE, 0x9F,\n\t// Bytes 3640 - 367f\n\t0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x9F, 0xCC, 0x81,\n\t0xC9, 0x04, 0xCE, 0xA1, 0xCC, 0x94, 0xC9, 0x04,\n\t0xCE, 0xA5, 0xCC, 0x80, 0xC9, 0x04, 0xCE, 0xA5,\n\t0xCC, 0x81, 0xC9, 0x04, 0xCE, 0xA5, 0xCC, 0x84,\n\t0xC9, 0x04, 0xCE, 0xA5, 0xCC, 0x86, 0xC9, 0x04,\n\t0xCE, 0xA5, 0xCC, 0x88, 0xC9, 0x04, 0xCE, 0xA9,\n\t0xCC, 0x80, 0xC9, 0x04, 0xCE, 0xA9, 0xCC, 0x81,\n\t0xC9, 0x04, 0xCE, 0xA9, 0xCD, 0x85, 0xD9, 0x04,\n\t// Bytes 3680 - 36bf\n\t0xCE, 0xB1, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0xB1,\n\t0xCC, 0x86, 0xC9, 0x04, 0xCE, 0xB1, 0xCD, 0x85,\n\t0xD9, 0x04, 0xCE, 0xB5, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCE, 0xB5, 0xCC, 0x81, 0xC9, 0x04, 0xCE, 0xB7,\n\t0xCD, 0x85, 0xD9, 0x04, 0xCE, 0xB9, 0xCC, 0x80,\n\t0xC9, 0x04, 0xCE, 0xB9, 0xCC, 0x81, 0xC9, 0x04,\n\t0xCE, 0xB9, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0xB9,\n\t0xCC, 0x86, 0xC9, 0x04, 0xCE, 0xB9, 0xCD, 0x82,\n\t// Bytes 36c0 - 36ff\n\t0xC9, 0x04, 0xCE, 0xBF, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCE, 0xBF, 0xCC, 0x81, 0xC9, 0x04, 0xCF, 0x81,\n\t0xCC, 0x93, 0xC9, 0x04, 0xCF, 0x81, 0xCC, 0x94,\n\t0xC9, 0x04, 0xCF, 0x85, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCF, 0x85, 0xCC, 0x81, 0xC9, 0x04, 0xCF, 0x85,\n\t0xCC, 0x84, 0xC9, 0x04, 0xCF, 0x85, 0xCC, 0x86,\n\t0xC9, 0x04, 0xCF, 0x85, 0xCD, 0x82, 0xC9, 0x04,\n\t0xCF, 0x89, 0xCD, 0x85, 0xD9, 0x04, 0xCF, 0x92,\n\t// Bytes 3700 - 373f\n\t0xCC, 0x81, 0xC9, 0x04, 0xCF, 0x92, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0x86, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0x90, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0x90,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x93, 0xCC, 0x81,\n\t0xC9, 0x04, 0xD0, 0x95, 0xCC, 0x80, 0xC9, 0x04,\n\t0xD0, 0x95, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0x95,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x96, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD0, 0x96, 0xCC, 0x88, 0xC9, 0x04,\n\t// Bytes 3740 - 377f\n\t0xD0, 0x97, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x98,\n\t0xCC, 0x80, 0xC9, 0x04, 0xD0, 0x98, 0xCC, 0x84,\n\t0xC9, 0x04, 0xD0, 0x98, 0xCC, 0x86, 0xC9, 0x04,\n\t0xD0, 0x98, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x9A,\n\t0xCC, 0x81, 0xC9, 0x04, 0xD0, 0x9E, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0xA3, 0xCC, 0x84, 0xC9, 0x04,\n\t0xD0, 0xA3, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xA3,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xA3, 0xCC, 0x8B,\n\t// Bytes 3780 - 37bf\n\t0xC9, 0x04, 0xD0, 0xA7, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0xAB, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xAD,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xB0, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD0, 0xB0, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0xB3, 0xCC, 0x81, 0xC9, 0x04, 0xD0, 0xB5,\n\t0xCC, 0x80, 0xC9, 0x04, 0xD0, 0xB5, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD0, 0xB5, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0xB6, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xB6,\n\t// Bytes 37c0 - 37ff\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xB7, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0xB8, 0xCC, 0x80, 0xC9, 0x04,\n\t0xD0, 0xB8, 0xCC, 0x84, 0xC9, 0x04, 0xD0, 0xB8,\n\t0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xB8, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0xBA, 0xCC, 0x81, 0xC9, 0x04,\n\t0xD0, 0xBE, 0xCC, 0x88, 0xC9, 0x04, 0xD1, 0x83,\n\t0xCC, 0x84, 0xC9, 0x04, 0xD1, 0x83, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD1, 0x83, 0xCC, 0x88, 0xC9, 0x04,\n\t// Bytes 3800 - 383f\n\t0xD1, 0x83, 0xCC, 0x8B, 0xC9, 0x04, 0xD1, 0x87,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD1, 0x8B, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD1, 0x8D, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD1, 0x96, 0xCC, 0x88, 0xC9, 0x04, 0xD1, 0xB4,\n\t0xCC, 0x8F, 0xC9, 0x04, 0xD1, 0xB5, 0xCC, 0x8F,\n\t0xC9, 0x04, 0xD3, 0x98, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD3, 0x99, 0xCC, 0x88, 0xC9, 0x04, 0xD3, 0xA8,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD3, 0xA9, 0xCC, 0x88,\n\t// Bytes 3840 - 387f\n\t0xC9, 0x04, 0xD8, 0xA7, 0xD9, 0x93, 0xC9, 0x04,\n\t0xD8, 0xA7, 0xD9, 0x94, 0xC9, 0x04, 0xD8, 0xA7,\n\t0xD9, 0x95, 0xB5, 0x04, 0xD9, 0x88, 0xD9, 0x94,\n\t0xC9, 0x04, 0xD9, 0x8A, 0xD9, 0x94, 0xC9, 0x04,\n\t0xDB, 0x81, 0xD9, 0x94, 0xC9, 0x04, 0xDB, 0x92,\n\t0xD9, 0x94, 0xC9, 0x04, 0xDB, 0x95, 0xD9, 0x94,\n\t0xC9, 0x05, 0x41, 0xCC, 0x82, 0xCC, 0x80, 0xCA,\n\t0x05, 0x41, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05,\n\t// Bytes 3880 - 38bf\n\t0x41, 0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x41,\n\t0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05, 0x41, 0xCC,\n\t0x86, 0xCC, 0x80, 0xCA, 0x05, 0x41, 0xCC, 0x86,\n\t0xCC, 0x81, 0xCA, 0x05, 0x41, 0xCC, 0x86, 0xCC,\n\t0x83, 0xCA, 0x05, 0x41, 0xCC, 0x86, 0xCC, 0x89,\n\t0xCA, 0x05, 0x41, 0xCC, 0x87, 0xCC, 0x84, 0xCA,\n\t0x05, 0x41, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05,\n\t0x41, 0xCC, 0x8A, 0xCC, 0x81, 0xCA, 0x05, 0x41,\n\t// Bytes 38c0 - 38ff\n\t0xCC, 0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x41, 0xCC,\n\t0xA3, 0xCC, 0x86, 0xCA, 0x05, 0x43, 0xCC, 0xA7,\n\t0xCC, 0x81, 0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC,\n\t0x80, 0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC, 0x81,\n\t0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC, 0x83, 0xCA,\n\t0x05, 0x45, 0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05,\n\t0x45, 0xCC, 0x84, 0xCC, 0x80, 0xCA, 0x05, 0x45,\n\t0xCC, 0x84, 0xCC, 0x81, 0xCA, 0x05, 0x45, 0xCC,\n\t// Bytes 3900 - 393f\n\t0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x45, 0xCC, 0xA7,\n\t0xCC, 0x86, 0xCA, 0x05, 0x49, 0xCC, 0x88, 0xCC,\n\t0x81, 0xCA, 0x05, 0x4C, 0xCC, 0xA3, 0xCC, 0x84,\n\t0xCA, 0x05, 0x4F, 0xCC, 0x82, 0xCC, 0x80, 0xCA,\n\t0x05, 0x4F, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05,\n\t0x4F, 0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x4F,\n\t0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05, 0x4F, 0xCC,\n\t0x83, 0xCC, 0x81, 0xCA, 0x05, 0x4F, 0xCC, 0x83,\n\t// Bytes 3940 - 397f\n\t0xCC, 0x84, 0xCA, 0x05, 0x4F, 0xCC, 0x83, 0xCC,\n\t0x88, 0xCA, 0x05, 0x4F, 0xCC, 0x84, 0xCC, 0x80,\n\t0xCA, 0x05, 0x4F, 0xCC, 0x84, 0xCC, 0x81, 0xCA,\n\t0x05, 0x4F, 0xCC, 0x87, 0xCC, 0x84, 0xCA, 0x05,\n\t0x4F, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x4F,\n\t0xCC, 0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x4F, 0xCC,\n\t0x9B, 0xCC, 0x81, 0xCA, 0x05, 0x4F, 0xCC, 0x9B,\n\t0xCC, 0x83, 0xCA, 0x05, 0x4F, 0xCC, 0x9B, 0xCC,\n\t// Bytes 3980 - 39bf\n\t0x89, 0xCA, 0x05, 0x4F, 0xCC, 0x9B, 0xCC, 0xA3,\n\t0xB6, 0x05, 0x4F, 0xCC, 0xA3, 0xCC, 0x82, 0xCA,\n\t0x05, 0x4F, 0xCC, 0xA8, 0xCC, 0x84, 0xCA, 0x05,\n\t0x52, 0xCC, 0xA3, 0xCC, 0x84, 0xCA, 0x05, 0x53,\n\t0xCC, 0x81, 0xCC, 0x87, 0xCA, 0x05, 0x53, 0xCC,\n\t0x8C, 0xCC, 0x87, 0xCA, 0x05, 0x53, 0xCC, 0xA3,\n\t0xCC, 0x87, 0xCA, 0x05, 0x55, 0xCC, 0x83, 0xCC,\n\t0x81, 0xCA, 0x05, 0x55, 0xCC, 0x84, 0xCC, 0x88,\n\t// Bytes 39c0 - 39ff\n\t0xCA, 0x05, 0x55, 0xCC, 0x88, 0xCC, 0x80, 0xCA,\n\t0x05, 0x55, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x05,\n\t0x55, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x55,\n\t0xCC, 0x88, 0xCC, 0x8C, 0xCA, 0x05, 0x55, 0xCC,\n\t0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x55, 0xCC, 0x9B,\n\t0xCC, 0x81, 0xCA, 0x05, 0x55, 0xCC, 0x9B, 0xCC,\n\t0x83, 0xCA, 0x05, 0x55, 0xCC, 0x9B, 0xCC, 0x89,\n\t0xCA, 0x05, 0x55, 0xCC, 0x9B, 0xCC, 0xA3, 0xB6,\n\t// Bytes 3a00 - 3a3f\n\t0x05, 0x61, 0xCC, 0x82, 0xCC, 0x80, 0xCA, 0x05,\n\t0x61, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05, 0x61,\n\t0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x61, 0xCC,\n\t0x82, 0xCC, 0x89, 0xCA, 0x05, 0x61, 0xCC, 0x86,\n\t0xCC, 0x80, 0xCA, 0x05, 0x61, 0xCC, 0x86, 0xCC,\n\t0x81, 0xCA, 0x05, 0x61, 0xCC, 0x86, 0xCC, 0x83,\n\t0xCA, 0x05, 0x61, 0xCC, 0x86, 0xCC, 0x89, 0xCA,\n\t0x05, 0x61, 0xCC, 0x87, 0xCC, 0x84, 0xCA, 0x05,\n\t// Bytes 3a40 - 3a7f\n\t0x61, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x61,\n\t0xCC, 0x8A, 0xCC, 0x81, 0xCA, 0x05, 0x61, 0xCC,\n\t0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x61, 0xCC, 0xA3,\n\t0xCC, 0x86, 0xCA, 0x05, 0x63, 0xCC, 0xA7, 0xCC,\n\t0x81, 0xCA, 0x05, 0x65, 0xCC, 0x82, 0xCC, 0x80,\n\t0xCA, 0x05, 0x65, 0xCC, 0x82, 0xCC, 0x81, 0xCA,\n\t0x05, 0x65, 0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05,\n\t0x65, 0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05, 0x65,\n\t// Bytes 3a80 - 3abf\n\t0xCC, 0x84, 0xCC, 0x80, 0xCA, 0x05, 0x65, 0xCC,\n\t0x84, 0xCC, 0x81, 0xCA, 0x05, 0x65, 0xCC, 0xA3,\n\t0xCC, 0x82, 0xCA, 0x05, 0x65, 0xCC, 0xA7, 0xCC,\n\t0x86, 0xCA, 0x05, 0x69, 0xCC, 0x88, 0xCC, 0x81,\n\t0xCA, 0x05, 0x6C, 0xCC, 0xA3, 0xCC, 0x84, 0xCA,\n\t0x05, 0x6F, 0xCC, 0x82, 0xCC, 0x80, 0xCA, 0x05,\n\t0x6F, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05, 0x6F,\n\t0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x6F, 0xCC,\n\t// Bytes 3ac0 - 3aff\n\t0x82, 0xCC, 0x89, 0xCA, 0x05, 0x6F, 0xCC, 0x83,\n\t0xCC, 0x81, 0xCA, 0x05, 0x6F, 0xCC, 0x83, 0xCC,\n\t0x84, 0xCA, 0x05, 0x6F, 0xCC, 0x83, 0xCC, 0x88,\n\t0xCA, 0x05, 0x6F, 0xCC, 0x84, 0xCC, 0x80, 0xCA,\n\t0x05, 0x6F, 0xCC, 0x84, 0xCC, 0x81, 0xCA, 0x05,\n\t0x6F, 0xCC, 0x87, 0xCC, 0x84, 0xCA, 0x05, 0x6F,\n\t0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x6F, 0xCC,\n\t0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x6F, 0xCC, 0x9B,\n\t// Bytes 3b00 - 3b3f\n\t0xCC, 0x81, 0xCA, 0x05, 0x6F, 0xCC, 0x9B, 0xCC,\n\t0x83, 0xCA, 0x05, 0x6F, 0xCC, 0x9B, 0xCC, 0x89,\n\t0xCA, 0x05, 0x6F, 0xCC, 0x9B, 0xCC, 0xA3, 0xB6,\n\t0x05, 0x6F, 0xCC, 0xA3, 0xCC, 0x82, 0xCA, 0x05,\n\t0x6F, 0xCC, 0xA8, 0xCC, 0x84, 0xCA, 0x05, 0x72,\n\t0xCC, 0xA3, 0xCC, 0x84, 0xCA, 0x05, 0x73, 0xCC,\n\t0x81, 0xCC, 0x87, 0xCA, 0x05, 0x73, 0xCC, 0x8C,\n\t0xCC, 0x87, 0xCA, 0x05, 0x73, 0xCC, 0xA3, 0xCC,\n\t// Bytes 3b40 - 3b7f\n\t0x87, 0xCA, 0x05, 0x75, 0xCC, 0x83, 0xCC, 0x81,\n\t0xCA, 0x05, 0x75, 0xCC, 0x84, 0xCC, 0x88, 0xCA,\n\t0x05, 0x75, 0xCC, 0x88, 0xCC, 0x80, 0xCA, 0x05,\n\t0x75, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x05, 0x75,\n\t0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x75, 0xCC,\n\t0x88, 0xCC, 0x8C, 0xCA, 0x05, 0x75, 0xCC, 0x9B,\n\t0xCC, 0x80, 0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC,\n\t0x81, 0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC, 0x83,\n\t// Bytes 3b80 - 3bbf\n\t0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC, 0x89, 0xCA,\n\t0x05, 0x75, 0xCC, 0x9B, 0xCC, 0xA3, 0xB6, 0x05,\n\t0xE1, 0xBE, 0xBF, 0xCC, 0x80, 0xCA, 0x05, 0xE1,\n\t0xBE, 0xBF, 0xCC, 0x81, 0xCA, 0x05, 0xE1, 0xBE,\n\t0xBF, 0xCD, 0x82, 0xCA, 0x05, 0xE1, 0xBF, 0xBE,\n\t0xCC, 0x80, 0xCA, 0x05, 0xE1, 0xBF, 0xBE, 0xCC,\n\t0x81, 0xCA, 0x05, 0xE1, 0xBF, 0xBE, 0xCD, 0x82,\n\t0xCA, 0x05, 0xE2, 0x86, 0x90, 0xCC, 0xB8, 0x05,\n\t// Bytes 3bc0 - 3bff\n\t0x05, 0xE2, 0x86, 0x92, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x86, 0x94, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x87, 0x90, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x87,\n\t0x92, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x87, 0x94,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x88, 0x83, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x88, 0x88, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x88, 0x8B, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x88, 0xA3, 0xCC, 0xB8, 0x05, 0x05,\n\t// Bytes 3c00 - 3c3f\n\t0xE2, 0x88, 0xA5, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x88, 0xBC, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89,\n\t0x83, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0x85,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0x88, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x89, 0x8D, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x89, 0xA1, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x89, 0xA4, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x89, 0xA5, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t// Bytes 3c40 - 3c7f\n\t0x89, 0xB2, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89,\n\t0xB3, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xB6,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xB7, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x89, 0xBA, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x89, 0xBB, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x89, 0xBC, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x89, 0xBD, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x8A, 0x82, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A,\n\t// Bytes 3c80 - 3cbf\n\t0x83, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x86,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x87, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x91, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x8A, 0x92, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x8A, 0xA2, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x8A, 0xA8, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x8A, 0xA9, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A,\n\t0xAB, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB2,\n\t// Bytes 3cc0 - 3cff\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB3, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB4, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x8A, 0xB5, 0xCC, 0xB8, 0x05,\n\t0x06, 0xCE, 0x91, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x91, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x95, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x95, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x95, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t// Bytes 3d00 - 3d3f\n\t0x06, 0xCE, 0x95, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x97, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x97, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x93, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t// Bytes 3d40 - 3d7f\n\t0x06, 0xCE, 0x99, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xA5, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xA5, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xA5, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t// Bytes 3d80 - 3dbf\n\t0x06, 0xCE, 0xA9, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xA9, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x80, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x81, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCD, 0x82, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB5, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t// Bytes 3dc0 - 3dff\n\t0x06, 0xCE, 0xB5, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB5, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB5, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x80, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x81, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCD, 0x82, 0xCD, 0x85, 0xDA,\n\t// Bytes 3e00 - 3e3f\n\t0x06, 0xCE, 0xB9, 0xCC, 0x88, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x88, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x88, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x93, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t// Bytes 3e40 - 3e7f\n\t0x06, 0xCE, 0xB9, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x88, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x88, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x88, 0xCD, 0x82, 0xCA,\n\t// Bytes 3e80 - 3ebf\n\t0x06, 0xCF, 0x85, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x93, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCF, 0x89, 0xCC, 0x80, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCF, 0x89, 0xCC, 0x81, 0xCD, 0x85, 0xDA,\n\t// Bytes 3ec0 - 3eff\n\t0x06, 0xCF, 0x89, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCF, 0x89, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCF, 0x89, 0xCD, 0x82, 0xCD, 0x85, 0xDA,\n\t0x06, 0xE0, 0xA4, 0xA8, 0xE0, 0xA4, 0xBC, 0x09,\n\t0x06, 0xE0, 0xA4, 0xB0, 0xE0, 0xA4, 0xBC, 0x09,\n\t0x06, 0xE0, 0xA4, 0xB3, 0xE0, 0xA4, 0xBC, 0x09,\n\t0x06, 0xE0, 0xB1, 0x86, 0xE0, 0xB1, 0x96, 0x85,\n\t0x06, 0xE0, 0xB7, 0x99, 0xE0, 0xB7, 0x8A, 0x11,\n\t// Bytes 3f00 - 3f3f\n\t0x06, 0xE3, 0x81, 0x86, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x8B, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x8D, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x8F, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x91, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x93, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x95, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x97, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 3f40 - 3f7f\n\t0x06, 0xE3, 0x81, 0x99, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x9B, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x9D, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x9F, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA1, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA4, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA6, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA8, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 3f80 - 3fbf\n\t0x06, 0xE3, 0x81, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xAF, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB2, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB2, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB5, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB5, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB8, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB8, 0xE3, 0x82, 0x9A, 0x0D,\n\t// Bytes 3fc0 - 3fff\n\t0x06, 0xE3, 0x81, 0xBB, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xBB, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x82, 0x9D, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xA6, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xAD, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB1, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4000 - 403f\n\t0x06, 0xE3, 0x82, 0xB3, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB5, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB7, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB9, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xBB, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xBD, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xBF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x81, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4040 - 407f\n\t0x06, 0xE3, 0x83, 0x84, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x86, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x95, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4080 - 40bf\n\t0x06, 0xE3, 0x83, 0x95, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0xB0, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0xB1, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 40c0 - 40ff\n\t0x06, 0xE3, 0x83, 0xB2, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0xBD, 0xE3, 0x82, 0x99, 0x0D,\n\t0x08, 0xCE, 0x91, 0xCC, 0x93, 0xCC, 0x80, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC,\n\t0x93, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0x91, 0xCC, 0x94, 0xCC, 0x81, 0xCD,\n\t// Bytes 4100 - 413f\n\t0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC, 0x94, 0xCD,\n\t0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC,\n\t0x93, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0x97, 0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0x97, 0xCC, 0x93, 0xCD, 0x82, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC, 0x94, 0xCC,\n\t0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t// Bytes 4140 - 417f\n\t0x97, 0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xA9, 0xCC, 0x93, 0xCC, 0x80, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC,\n\t0x93, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xA9, 0xCC, 0x94, 0xCC, 0x81, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC, 0x94, 0xCD,\n\t// Bytes 4180 - 41bf\n\t0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC,\n\t0x93, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xB1, 0xCC, 0x93, 0xCD, 0x82, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC, 0x94, 0xCC,\n\t0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xB1, 0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB,\n\t// Bytes 41c0 - 41ff\n\t0x08, 0xCE, 0xB7, 0xCC, 0x93, 0xCC, 0x80, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC,\n\t0x93, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xB7, 0xCC, 0x94, 0xCC, 0x81, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC, 0x94, 0xCD,\n\t0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC,\n\t// Bytes 4200 - 423f\n\t0x93, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCF,\n\t0x89, 0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCF, 0x89, 0xCC, 0x93, 0xCD, 0x82, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC, 0x94, 0xCC,\n\t0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB,\n\t0x08, 0xF0, 0x91, 0x82, 0x99, 0xF0, 0x91, 0x82,\n\t// Bytes 4240 - 427f\n\t0xBA, 0x09, 0x08, 0xF0, 0x91, 0x82, 0x9B, 0xF0,\n\t0x91, 0x82, 0xBA, 0x09, 0x08, 0xF0, 0x91, 0x82,\n\t0xA5, 0xF0, 0x91, 0x82, 0xBA, 0x09, 0x42, 0xC2,\n\t0xB4, 0x01, 0x43, 0x20, 0xCC, 0x81, 0xC9, 0x43,\n\t0x20, 0xCC, 0x83, 0xC9, 0x43, 0x20, 0xCC, 0x84,\n\t0xC9, 0x43, 0x20, 0xCC, 0x85, 0xC9, 0x43, 0x20,\n\t0xCC, 0x86, 0xC9, 0x43, 0x20, 0xCC, 0x87, 0xC9,\n\t0x43, 0x20, 0xCC, 0x88, 0xC9, 0x43, 0x20, 0xCC,\n\t// Bytes 4280 - 42bf\n\t0x8A, 0xC9, 0x43, 0x20, 0xCC, 0x8B, 0xC9, 0x43,\n\t0x20, 0xCC, 0x93, 0xC9, 0x43, 0x20, 0xCC, 0x94,\n\t0xC9, 0x43, 0x20, 0xCC, 0xA7, 0xA5, 0x43, 0x20,\n\t0xCC, 0xA8, 0xA5, 0x43, 0x20, 0xCC, 0xB3, 0xB5,\n\t0x43, 0x20, 0xCD, 0x82, 0xC9, 0x43, 0x20, 0xCD,\n\t0x85, 0xD9, 0x43, 0x20, 0xD9, 0x8B, 0x59, 0x43,\n\t0x20, 0xD9, 0x8C, 0x5D, 0x43, 0x20, 0xD9, 0x8D,\n\t0x61, 0x43, 0x20, 0xD9, 0x8E, 0x65, 0x43, 0x20,\n\t// Bytes 42c0 - 42ff\n\t0xD9, 0x8F, 0x69, 0x43, 0x20, 0xD9, 0x90, 0x6D,\n\t0x43, 0x20, 0xD9, 0x91, 0x71, 0x43, 0x20, 0xD9,\n\t0x92, 0x75, 0x43, 0x41, 0xCC, 0x8A, 0xC9, 0x43,\n\t0x73, 0xCC, 0x87, 0xC9, 0x44, 0x20, 0xE3, 0x82,\n\t0x99, 0x0D, 0x44, 0x20, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x44, 0xC2, 0xA8, 0xCC, 0x81, 0xCA, 0x44, 0xCE,\n\t0x91, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0x95, 0xCC,\n\t0x81, 0xC9, 0x44, 0xCE, 0x97, 0xCC, 0x81, 0xC9,\n\t// Bytes 4300 - 433f\n\t0x44, 0xCE, 0x99, 0xCC, 0x81, 0xC9, 0x44, 0xCE,\n\t0x9F, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0xA5, 0xCC,\n\t0x81, 0xC9, 0x44, 0xCE, 0xA5, 0xCC, 0x88, 0xC9,\n\t0x44, 0xCE, 0xA9, 0xCC, 0x81, 0xC9, 0x44, 0xCE,\n\t0xB1, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0xB5, 0xCC,\n\t0x81, 0xC9, 0x44, 0xCE, 0xB7, 0xCC, 0x81, 0xC9,\n\t0x44, 0xCE, 0xB9, 0xCC, 0x81, 0xC9, 0x44, 0xCE,\n\t0xBF, 0xCC, 0x81, 0xC9, 0x44, 0xCF, 0x85, 0xCC,\n\t// Bytes 4340 - 437f\n\t0x81, 0xC9, 0x44, 0xCF, 0x89, 0xCC, 0x81, 0xC9,\n\t0x44, 0xD7, 0x90, 0xD6, 0xB7, 0x31, 0x44, 0xD7,\n\t0x90, 0xD6, 0xB8, 0x35, 0x44, 0xD7, 0x90, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x91, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x91, 0xD6, 0xBF, 0x49, 0x44, 0xD7,\n\t0x92, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x93, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x94, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x95, 0xD6, 0xB9, 0x39, 0x44, 0xD7,\n\t// Bytes 4380 - 43bf\n\t0x95, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x96, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x98, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x99, 0xD6, 0xB4, 0x25, 0x44, 0xD7,\n\t0x99, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x9A, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x9B, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x9B, 0xD6, 0xBF, 0x49, 0x44, 0xD7,\n\t0x9C, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x9E, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0xA0, 0xD6, 0xBC, 0x41,\n\t// Bytes 43c0 - 43ff\n\t0x44, 0xD7, 0xA1, 0xD6, 0xBC, 0x41, 0x44, 0xD7,\n\t0xA3, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA4, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0xA4, 0xD6, 0xBF, 0x49,\n\t0x44, 0xD7, 0xA6, 0xD6, 0xBC, 0x41, 0x44, 0xD7,\n\t0xA7, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA8, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0xA9, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0xA9, 0xD7, 0x81, 0x4D, 0x44, 0xD7,\n\t0xA9, 0xD7, 0x82, 0x51, 0x44, 0xD7, 0xAA, 0xD6,\n\t// Bytes 4400 - 443f\n\t0xBC, 0x41, 0x44, 0xD7, 0xB2, 0xD6, 0xB7, 0x31,\n\t0x44, 0xD8, 0xA7, 0xD9, 0x8B, 0x59, 0x44, 0xD8,\n\t0xA7, 0xD9, 0x93, 0xC9, 0x44, 0xD8, 0xA7, 0xD9,\n\t0x94, 0xC9, 0x44, 0xD8, 0xA7, 0xD9, 0x95, 0xB5,\n\t0x44, 0xD8, 0xB0, 0xD9, 0xB0, 0x79, 0x44, 0xD8,\n\t0xB1, 0xD9, 0xB0, 0x79, 0x44, 0xD9, 0x80, 0xD9,\n\t0x8B, 0x59, 0x44, 0xD9, 0x80, 0xD9, 0x8E, 0x65,\n\t0x44, 0xD9, 0x80, 0xD9, 0x8F, 0x69, 0x44, 0xD9,\n\t// Bytes 4440 - 447f\n\t0x80, 0xD9, 0x90, 0x6D, 0x44, 0xD9, 0x80, 0xD9,\n\t0x91, 0x71, 0x44, 0xD9, 0x80, 0xD9, 0x92, 0x75,\n\t0x44, 0xD9, 0x87, 0xD9, 0xB0, 0x79, 0x44, 0xD9,\n\t0x88, 0xD9, 0x94, 0xC9, 0x44, 0xD9, 0x89, 0xD9,\n\t0xB0, 0x79, 0x44, 0xD9, 0x8A, 0xD9, 0x94, 0xC9,\n\t0x44, 0xDB, 0x92, 0xD9, 0x94, 0xC9, 0x44, 0xDB,\n\t0x95, 0xD9, 0x94, 0xC9, 0x45, 0x20, 0xCC, 0x88,\n\t0xCC, 0x80, 0xCA, 0x45, 0x20, 0xCC, 0x88, 0xCC,\n\t// Bytes 4480 - 44bf\n\t0x81, 0xCA, 0x45, 0x20, 0xCC, 0x88, 0xCD, 0x82,\n\t0xCA, 0x45, 0x20, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x45, 0x20, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x45,\n\t0x20, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x45, 0x20,\n\t0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x45, 0x20, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCA, 0x45, 0x20, 0xCC, 0x94,\n\t0xCD, 0x82, 0xCA, 0x45, 0x20, 0xD9, 0x8C, 0xD9,\n\t0x91, 0x72, 0x45, 0x20, 0xD9, 0x8D, 0xD9, 0x91,\n\t// Bytes 44c0 - 44ff\n\t0x72, 0x45, 0x20, 0xD9, 0x8E, 0xD9, 0x91, 0x72,\n\t0x45, 0x20, 0xD9, 0x8F, 0xD9, 0x91, 0x72, 0x45,\n\t0x20, 0xD9, 0x90, 0xD9, 0x91, 0x72, 0x45, 0x20,\n\t0xD9, 0x91, 0xD9, 0xB0, 0x7A, 0x45, 0xE2, 0xAB,\n\t0x9D, 0xCC, 0xB8, 0x05, 0x46, 0xCE, 0xB9, 0xCC,\n\t0x88, 0xCC, 0x81, 0xCA, 0x46, 0xCF, 0x85, 0xCC,\n\t0x88, 0xCC, 0x81, 0xCA, 0x46, 0xD7, 0xA9, 0xD6,\n\t0xBC, 0xD7, 0x81, 0x4E, 0x46, 0xD7, 0xA9, 0xD6,\n\t// Bytes 4500 - 453f\n\t0xBC, 0xD7, 0x82, 0x52, 0x46, 0xD9, 0x80, 0xD9,\n\t0x8E, 0xD9, 0x91, 0x72, 0x46, 0xD9, 0x80, 0xD9,\n\t0x8F, 0xD9, 0x91, 0x72, 0x46, 0xD9, 0x80, 0xD9,\n\t0x90, 0xD9, 0x91, 0x72, 0x46, 0xE0, 0xA4, 0x95,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0x96,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0x97,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0x9C,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xA1,\n\t// Bytes 4540 - 457f\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xA2,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xAB,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xAF,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA6, 0xA1,\n\t0xE0, 0xA6, 0xBC, 0x09, 0x46, 0xE0, 0xA6, 0xA2,\n\t0xE0, 0xA6, 0xBC, 0x09, 0x46, 0xE0, 0xA6, 0xAF,\n\t0xE0, 0xA6, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0x96,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0x97,\n\t// Bytes 4580 - 45bf\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0x9C,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0xAB,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0xB2,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0xB8,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xAC, 0xA1,\n\t0xE0, 0xAC, 0xBC, 0x09, 0x46, 0xE0, 0xAC, 0xA2,\n\t0xE0, 0xAC, 0xBC, 0x09, 0x46, 0xE0, 0xBE, 0xB2,\n\t0xE0, 0xBE, 0x80, 0x9D, 0x46, 0xE0, 0xBE, 0xB3,\n\t// Bytes 45c0 - 45ff\n\t0xE0, 0xBE, 0x80, 0x9D, 0x46, 0xE3, 0x83, 0x86,\n\t0xE3, 0x82, 0x99, 0x0D, 0x48, 0xF0, 0x9D, 0x85,\n\t0x97, 0xF0, 0x9D, 0x85, 0xA5, 0xAD, 0x48, 0xF0,\n\t0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xAD,\n\t0x48, 0xF0, 0x9D, 0x86, 0xB9, 0xF0, 0x9D, 0x85,\n\t0xA5, 0xAD, 0x48, 0xF0, 0x9D, 0x86, 0xBA, 0xF0,\n\t0x9D, 0x85, 0xA5, 0xAD, 0x49, 0xE0, 0xBE, 0xB2,\n\t0xE0, 0xBD, 0xB1, 0xE0, 0xBE, 0x80, 0x9E, 0x49,\n\t// Bytes 4600 - 463f\n\t0xE0, 0xBE, 0xB3, 0xE0, 0xBD, 0xB1, 0xE0, 0xBE,\n\t0x80, 0x9E, 0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0,\n\t0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xAE, 0xAE,\n\t0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85,\n\t0xA5, 0xF0, 0x9D, 0x85, 0xAF, 0xAE, 0x4C, 0xF0,\n\t0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xF0,\n\t0x9D, 0x85, 0xB0, 0xAE, 0x4C, 0xF0, 0x9D, 0x85,\n\t0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85,\n\t// Bytes 4640 - 467f\n\t0xB1, 0xAE, 0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0,\n\t0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xB2, 0xAE,\n\t0x4C, 0xF0, 0x9D, 0x86, 0xB9, 0xF0, 0x9D, 0x85,\n\t0xA5, 0xF0, 0x9D, 0x85, 0xAE, 0xAE, 0x4C, 0xF0,\n\t0x9D, 0x86, 0xB9, 0xF0, 0x9D, 0x85, 0xA5, 0xF0,\n\t0x9D, 0x85, 0xAF, 0xAE, 0x4C, 0xF0, 0x9D, 0x86,\n\t0xBA, 0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85,\n\t0xAE, 0xAE, 0x4C, 0xF0, 0x9D, 0x86, 0xBA, 0xF0,\n\t// Bytes 4680 - 46bf\n\t0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xAF, 0xAE,\n\t0x83, 0x41, 0xCC, 0x82, 0xC9, 0x83, 0x41, 0xCC,\n\t0x86, 0xC9, 0x83, 0x41, 0xCC, 0x87, 0xC9, 0x83,\n\t0x41, 0xCC, 0x88, 0xC9, 0x83, 0x41, 0xCC, 0x8A,\n\t0xC9, 0x83, 0x41, 0xCC, 0xA3, 0xB5, 0x83, 0x43,\n\t0xCC, 0xA7, 0xA5, 0x83, 0x45, 0xCC, 0x82, 0xC9,\n\t0x83, 0x45, 0xCC, 0x84, 0xC9, 0x83, 0x45, 0xCC,\n\t0xA3, 0xB5, 0x83, 0x45, 0xCC, 0xA7, 0xA5, 0x83,\n\t// Bytes 46c0 - 46ff\n\t0x49, 0xCC, 0x88, 0xC9, 0x83, 0x4C, 0xCC, 0xA3,\n\t0xB5, 0x83, 0x4F, 0xCC, 0x82, 0xC9, 0x83, 0x4F,\n\t0xCC, 0x83, 0xC9, 0x83, 0x4F, 0xCC, 0x84, 0xC9,\n\t0x83, 0x4F, 0xCC, 0x87, 0xC9, 0x83, 0x4F, 0xCC,\n\t0x88, 0xC9, 0x83, 0x4F, 0xCC, 0x9B, 0xAD, 0x83,\n\t0x4F, 0xCC, 0xA3, 0xB5, 0x83, 0x4F, 0xCC, 0xA8,\n\t0xA5, 0x83, 0x52, 0xCC, 0xA3, 0xB5, 0x83, 0x53,\n\t0xCC, 0x81, 0xC9, 0x83, 0x53, 0xCC, 0x8C, 0xC9,\n\t// Bytes 4700 - 473f\n\t0x83, 0x53, 0xCC, 0xA3, 0xB5, 0x83, 0x55, 0xCC,\n\t0x83, 0xC9, 0x83, 0x55, 0xCC, 0x84, 0xC9, 0x83,\n\t0x55, 0xCC, 0x88, 0xC9, 0x83, 0x55, 0xCC, 0x9B,\n\t0xAD, 0x83, 0x61, 0xCC, 0x82, 0xC9, 0x83, 0x61,\n\t0xCC, 0x86, 0xC9, 0x83, 0x61, 0xCC, 0x87, 0xC9,\n\t0x83, 0x61, 0xCC, 0x88, 0xC9, 0x83, 0x61, 0xCC,\n\t0x8A, 0xC9, 0x83, 0x61, 0xCC, 0xA3, 0xB5, 0x83,\n\t0x63, 0xCC, 0xA7, 0xA5, 0x83, 0x65, 0xCC, 0x82,\n\t// Bytes 4740 - 477f\n\t0xC9, 0x83, 0x65, 0xCC, 0x84, 0xC9, 0x83, 0x65,\n\t0xCC, 0xA3, 0xB5, 0x83, 0x65, 0xCC, 0xA7, 0xA5,\n\t0x83, 0x69, 0xCC, 0x88, 0xC9, 0x83, 0x6C, 0xCC,\n\t0xA3, 0xB5, 0x83, 0x6F, 0xCC, 0x82, 0xC9, 0x83,\n\t0x6F, 0xCC, 0x83, 0xC9, 0x83, 0x6F, 0xCC, 0x84,\n\t0xC9, 0x83, 0x6F, 0xCC, 0x87, 0xC9, 0x83, 0x6F,\n\t0xCC, 0x88, 0xC9, 0x83, 0x6F, 0xCC, 0x9B, 0xAD,\n\t0x83, 0x6F, 0xCC, 0xA3, 0xB5, 0x83, 0x6F, 0xCC,\n\t// Bytes 4780 - 47bf\n\t0xA8, 0xA5, 0x83, 0x72, 0xCC, 0xA3, 0xB5, 0x83,\n\t0x73, 0xCC, 0x81, 0xC9, 0x83, 0x73, 0xCC, 0x8C,\n\t0xC9, 0x83, 0x73, 0xCC, 0xA3, 0xB5, 0x83, 0x75,\n\t0xCC, 0x83, 0xC9, 0x83, 0x75, 0xCC, 0x84, 0xC9,\n\t0x83, 0x75, 0xCC, 0x88, 0xC9, 0x83, 0x75, 0xCC,\n\t0x9B, 0xAD, 0x84, 0xCE, 0x91, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0x91, 0xCC, 0x94, 0xC9, 0x84, 0xCE,\n\t0x95, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0x95, 0xCC,\n\t// Bytes 47c0 - 47ff\n\t0x94, 0xC9, 0x84, 0xCE, 0x97, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0x97, 0xCC, 0x94, 0xC9, 0x84, 0xCE,\n\t0x99, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0x99, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0x9F, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0x9F, 0xCC, 0x94, 0xC9, 0x84, 0xCE,\n\t0xA5, 0xCC, 0x94, 0xC9, 0x84, 0xCE, 0xA9, 0xCC,\n\t0x93, 0xC9, 0x84, 0xCE, 0xA9, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCE, 0xB1, 0xCC, 0x80, 0xC9, 0x84, 0xCE,\n\t// Bytes 4800 - 483f\n\t0xB1, 0xCC, 0x81, 0xC9, 0x84, 0xCE, 0xB1, 0xCC,\n\t0x93, 0xC9, 0x84, 0xCE, 0xB1, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCE, 0xB1, 0xCD, 0x82, 0xC9, 0x84, 0xCE,\n\t0xB5, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB5, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0xB7, 0xCC, 0x80, 0xC9,\n\t0x84, 0xCE, 0xB7, 0xCC, 0x81, 0xC9, 0x84, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB7, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0xB7, 0xCD, 0x82, 0xC9,\n\t// Bytes 4840 - 487f\n\t0x84, 0xCE, 0xB9, 0xCC, 0x88, 0xC9, 0x84, 0xCE,\n\t0xB9, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB9, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0xBF, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0xBF, 0xCC, 0x94, 0xC9, 0x84, 0xCF,\n\t0x85, 0xCC, 0x88, 0xC9, 0x84, 0xCF, 0x85, 0xCC,\n\t0x93, 0xC9, 0x84, 0xCF, 0x85, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCF, 0x89, 0xCC, 0x80, 0xC9, 0x84, 0xCF,\n\t0x89, 0xCC, 0x81, 0xC9, 0x84, 0xCF, 0x89, 0xCC,\n\t// Bytes 4880 - 48bf\n\t0x93, 0xC9, 0x84, 0xCF, 0x89, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCF, 0x89, 0xCD, 0x82, 0xC9, 0x86, 0xCE,\n\t0x91, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t// Bytes 48c0 - 48ff\n\t0x97, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t// Bytes 4900 - 493f\n\t0xA9, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t// Bytes 4940 - 497f\n\t0xB1, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCF,\n\t// Bytes 4980 - 49bf\n\t0x89, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x42, 0xCC,\n\t0x80, 0xC9, 0x32, 0x42, 0xCC, 0x81, 0xC9, 0x32,\n\t0x42, 0xCC, 0x93, 0xC9, 0x32, 0x43, 0xE1, 0x85,\n\t// Bytes 49c0 - 49ff\n\t0xA1, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xA2, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xA3, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xA4, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xA5, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xA6, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xA7, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xA8, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xA9, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xAA, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xAB, 0x01, 0x00, 0x43,\n\t// Bytes 4a00 - 4a3f\n\t0xE1, 0x85, 0xAC, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xAD, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xAE, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xAF, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xB0, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xB1, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xB2, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xB3, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xB4, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xB5, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xAA, 0x01,\n\t// Bytes 4a40 - 4a7f\n\t0x00, 0x43, 0xE1, 0x86, 0xAC, 0x01, 0x00, 0x43,\n\t0xE1, 0x86, 0xAD, 0x01, 0x00, 0x43, 0xE1, 0x86,\n\t0xB0, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xB1, 0x01,\n\t0x00, 0x43, 0xE1, 0x86, 0xB2, 0x01, 0x00, 0x43,\n\t0xE1, 0x86, 0xB3, 0x01, 0x00, 0x43, 0xE1, 0x86,\n\t0xB4, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xB5, 0x01,\n\t0x00, 0x44, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x32,\n\t0x43, 0xE3, 0x82, 0x99, 0x0D, 0x03, 0x43, 0xE3,\n\t// Bytes 4a80 - 4abf\n\t0x82, 0x9A, 0x0D, 0x03, 0x46, 0xE0, 0xBD, 0xB1,\n\t0xE0, 0xBD, 0xB2, 0x9E, 0x26, 0x46, 0xE0, 0xBD,\n\t0xB1, 0xE0, 0xBD, 0xB4, 0xA2, 0x26, 0x46, 0xE0,\n\t0xBD, 0xB1, 0xE0, 0xBE, 0x80, 0x9E, 0x26, 0x00,\n\t0x01,\n}\n\n// lookup returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfcTrie) lookup(s []byte) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfcTrie) lookupUnsafe(s []byte) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfcValues[c0]\n\t}\n\ti := nfcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// lookupString returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfcTrie) lookupString(s string) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfcTrie) lookupStringUnsafe(s string) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfcValues[c0]\n\t}\n\ti := nfcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// nfcTrie. Total size: 10442 bytes (10.20 KiB). Checksum: 4ba400a9d8208e03.\ntype nfcTrie struct{}\n\nfunc newNfcTrie(i int) *nfcTrie {\n\treturn &nfcTrie{}\n}\n\n// lookupValue determines the type of block n and looks up the value for b.\nfunc (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {\n\tswitch {\n\tcase n < 45:\n\t\treturn uint16(nfcValues[n<<6+uint32(b)])\n\tdefault:\n\t\tn -= 45\n\t\treturn uint16(nfcSparse.lookup(n, b))\n\t}\n}\n\n// nfcValues: 47 blocks, 3008 entries, 6016 bytes\n// The third block is the zero block.\nvar nfcValues = [3008]uint16{\n\t// Block 0x0, offset 0x0\n\t0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,\n\t// Block 0x1, offset 0x40\n\t0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,\n\t0x46: 0xa000, 0x47: 0xa000, 0x48: 0xa000, 0x49: 0xa000, 0x4a: 0xa000, 0x4b: 0xa000,\n\t0x4c: 0xa000, 0x4d: 0xa000, 0x4e: 0xa000, 0x4f: 0xa000, 0x50: 0xa000,\n\t0x52: 0xa000, 0x53: 0xa000, 0x54: 0xa000, 0x55: 0xa000, 0x56: 0xa000, 0x57: 0xa000,\n\t0x58: 0xa000, 0x59: 0xa000, 0x5a: 0xa000,\n\t0x61: 0xa000, 0x62: 0xa000, 0x63: 0xa000,\n\t0x64: 0xa000, 0x65: 0xa000, 0x66: 0xa000, 0x67: 0xa000, 0x68: 0xa000, 0x69: 0xa000,\n\t0x6a: 0xa000, 0x6b: 0xa000, 0x6c: 0xa000, 0x6d: 0xa000, 0x6e: 0xa000, 0x6f: 0xa000,\n\t0x70: 0xa000, 0x72: 0xa000, 0x73: 0xa000, 0x74: 0xa000, 0x75: 0xa000,\n\t0x76: 0xa000, 0x77: 0xa000, 0x78: 0xa000, 0x79: 0xa000, 0x7a: 0xa000,\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc0: 0x2f6f, 0xc1: 0x2f74, 0xc2: 0x4688, 0xc3: 0x2f79, 0xc4: 0x4697, 0xc5: 0x469c,\n\t0xc6: 0xa000, 0xc7: 0x46a6, 0xc8: 0x2fe2, 0xc9: 0x2fe7, 0xca: 0x46ab, 0xcb: 0x2ffb,\n\t0xcc: 0x306e, 0xcd: 0x3073, 0xce: 0x3078, 0xcf: 0x46bf, 0xd1: 0x3104,\n\t0xd2: 0x3127, 0xd3: 0x312c, 0xd4: 0x46c9, 0xd5: 0x46ce, 0xd6: 0x46dd,\n\t0xd8: 0xa000, 0xd9: 0x31b3, 0xda: 0x31b8, 0xdb: 0x31bd, 0xdc: 0x470f, 0xdd: 0x3235,\n\t0xe0: 0x327b, 0xe1: 0x3280, 0xe2: 0x4719, 0xe3: 0x3285,\n\t0xe4: 0x4728, 0xe5: 0x472d, 0xe6: 0xa000, 0xe7: 0x4737, 0xe8: 0x32ee, 0xe9: 0x32f3,\n\t0xea: 0x473c, 0xeb: 0x3307, 0xec: 0x337f, 0xed: 0x3384, 0xee: 0x3389, 0xef: 0x4750,\n\t0xf1: 0x3415, 0xf2: 0x3438, 0xf3: 0x343d, 0xf4: 0x475a, 0xf5: 0x475f,\n\t0xf6: 0x476e, 0xf8: 0xa000, 0xf9: 0x34c9, 0xfa: 0x34ce, 0xfb: 0x34d3,\n\t0xfc: 0x47a0, 0xfd: 0x3550, 0xff: 0x3569,\n\t// Block 0x4, offset 0x100\n\t0x100: 0x2f7e, 0x101: 0x328a, 0x102: 0x468d, 0x103: 0x471e, 0x104: 0x2f9c, 0x105: 0x32a8,\n\t0x106: 0x2fb0, 0x107: 0x32bc, 0x108: 0x2fb5, 0x109: 0x32c1, 0x10a: 0x2fba, 0x10b: 0x32c6,\n\t0x10c: 0x2fbf, 0x10d: 0x32cb, 0x10e: 0x2fc9, 0x10f: 0x32d5,\n\t0x112: 0x46b0, 0x113: 0x4741, 0x114: 0x2ff1, 0x115: 0x32fd, 0x116: 0x2ff6, 0x117: 0x3302,\n\t0x118: 0x3014, 0x119: 0x3320, 0x11a: 0x3005, 0x11b: 0x3311, 0x11c: 0x302d, 0x11d: 0x3339,\n\t0x11e: 0x3037, 0x11f: 0x3343, 0x120: 0x303c, 0x121: 0x3348, 0x122: 0x3046, 0x123: 0x3352,\n\t0x124: 0x304b, 0x125: 0x3357, 0x128: 0x307d, 0x129: 0x338e,\n\t0x12a: 0x3082, 0x12b: 0x3393, 0x12c: 0x3087, 0x12d: 0x3398, 0x12e: 0x30aa, 0x12f: 0x33b6,\n\t0x130: 0x308c, 0x134: 0x30b4, 0x135: 0x33c0,\n\t0x136: 0x30c8, 0x137: 0x33d9, 0x139: 0x30d2, 0x13a: 0x33e3, 0x13b: 0x30dc,\n\t0x13c: 0x33ed, 0x13d: 0x30d7, 0x13e: 0x33e8,\n\t// Block 0x5, offset 0x140\n\t0x143: 0x30ff, 0x144: 0x3410, 0x145: 0x3118,\n\t0x146: 0x3429, 0x147: 0x310e, 0x148: 0x341f,\n\t0x14c: 0x46d3, 0x14d: 0x4764, 0x14e: 0x3131, 0x14f: 0x3442, 0x150: 0x313b, 0x151: 0x344c,\n\t0x154: 0x3159, 0x155: 0x346a, 0x156: 0x3172, 0x157: 0x3483,\n\t0x158: 0x3163, 0x159: 0x3474, 0x15a: 0x46f6, 0x15b: 0x4787, 0x15c: 0x317c, 0x15d: 0x348d,\n\t0x15e: 0x318b, 0x15f: 0x349c, 0x160: 0x46fb, 0x161: 0x478c, 0x162: 0x31a4, 0x163: 0x34ba,\n\t0x164: 0x3195, 0x165: 0x34ab, 0x168: 0x4705, 0x169: 0x4796,\n\t0x16a: 0x470a, 0x16b: 0x479b, 0x16c: 0x31c2, 0x16d: 0x34d8, 0x16e: 0x31cc, 0x16f: 0x34e2,\n\t0x170: 0x31d1, 0x171: 0x34e7, 0x172: 0x31ef, 0x173: 0x3505, 0x174: 0x3212, 0x175: 0x3528,\n\t0x176: 0x323a, 0x177: 0x3555, 0x178: 0x324e, 0x179: 0x325d, 0x17a: 0x357d, 0x17b: 0x3267,\n\t0x17c: 0x3587, 0x17d: 0x326c, 0x17e: 0x358c, 0x17f: 0xa000,\n\t// Block 0x6, offset 0x180\n\t0x184: 0x8100, 0x185: 0x8100,\n\t0x186: 0x8100,\n\t0x18d: 0x2f88, 0x18e: 0x3294, 0x18f: 0x3096, 0x190: 0x33a2, 0x191: 0x3140,\n\t0x192: 0x3451, 0x193: 0x31d6, 0x194: 0x34ec, 0x195: 0x39cf, 0x196: 0x3b5e, 0x197: 0x39c8,\n\t0x198: 0x3b57, 0x199: 0x39d6, 0x19a: 0x3b65, 0x19b: 0x39c1, 0x19c: 0x3b50,\n\t0x19e: 0x38b0, 0x19f: 0x3a3f, 0x1a0: 0x38a9, 0x1a1: 0x3a38, 0x1a2: 0x35b3, 0x1a3: 0x35c5,\n\t0x1a6: 0x3041, 0x1a7: 0x334d, 0x1a8: 0x30be, 0x1a9: 0x33cf,\n\t0x1aa: 0x46ec, 0x1ab: 0x477d, 0x1ac: 0x3990, 0x1ad: 0x3b1f, 0x1ae: 0x35d7, 0x1af: 0x35dd,\n\t0x1b0: 0x33c5, 0x1b4: 0x3028, 0x1b5: 0x3334,\n\t0x1b8: 0x30fa, 0x1b9: 0x340b, 0x1ba: 0x38b7, 0x1bb: 0x3a46,\n\t0x1bc: 0x35ad, 0x1bd: 0x35bf, 0x1be: 0x35b9, 0x1bf: 0x35cb,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x2f8d, 0x1c1: 0x3299, 0x1c2: 0x2f92, 0x1c3: 0x329e, 0x1c4: 0x300a, 0x1c5: 0x3316,\n\t0x1c6: 0x300f, 0x1c7: 0x331b, 0x1c8: 0x309b, 0x1c9: 0x33a7, 0x1ca: 0x30a0, 0x1cb: 0x33ac,\n\t0x1cc: 0x3145, 0x1cd: 0x3456, 0x1ce: 0x314a, 0x1cf: 0x345b, 0x1d0: 0x3168, 0x1d1: 0x3479,\n\t0x1d2: 0x316d, 0x1d3: 0x347e, 0x1d4: 0x31db, 0x1d5: 0x34f1, 0x1d6: 0x31e0, 0x1d7: 0x34f6,\n\t0x1d8: 0x3186, 0x1d9: 0x3497, 0x1da: 0x319f, 0x1db: 0x34b5,\n\t0x1de: 0x305a, 0x1df: 0x3366,\n\t0x1e6: 0x4692, 0x1e7: 0x4723, 0x1e8: 0x46ba, 0x1e9: 0x474b,\n\t0x1ea: 0x395f, 0x1eb: 0x3aee, 0x1ec: 0x393c, 0x1ed: 0x3acb, 0x1ee: 0x46d8, 0x1ef: 0x4769,\n\t0x1f0: 0x3958, 0x1f1: 0x3ae7, 0x1f2: 0x3244, 0x1f3: 0x355f,\n\t// Block 0x8, offset 0x200\n\t0x200: 0x9932, 0x201: 0x9932, 0x202: 0x9932, 0x203: 0x9932, 0x204: 0x9932, 0x205: 0x8132,\n\t0x206: 0x9932, 0x207: 0x9932, 0x208: 0x9932, 0x209: 0x9932, 0x20a: 0x9932, 0x20b: 0x9932,\n\t0x20c: 0x9932, 0x20d: 0x8132, 0x20e: 0x8132, 0x20f: 0x9932, 0x210: 0x8132, 0x211: 0x9932,\n\t0x212: 0x8132, 0x213: 0x9932, 0x214: 0x9932, 0x215: 0x8133, 0x216: 0x812d, 0x217: 0x812d,\n\t0x218: 0x812d, 0x219: 0x812d, 0x21a: 0x8133, 0x21b: 0x992b, 0x21c: 0x812d, 0x21d: 0x812d,\n\t0x21e: 0x812d, 0x21f: 0x812d, 0x220: 0x812d, 0x221: 0x8129, 0x222: 0x8129, 0x223: 0x992d,\n\t0x224: 0x992d, 0x225: 0x992d, 0x226: 0x992d, 0x227: 0x9929, 0x228: 0x9929, 0x229: 0x812d,\n\t0x22a: 0x812d, 0x22b: 0x812d, 0x22c: 0x812d, 0x22d: 0x992d, 0x22e: 0x992d, 0x22f: 0x812d,\n\t0x230: 0x992d, 0x231: 0x992d, 0x232: 0x812d, 0x233: 0x812d, 0x234: 0x8101, 0x235: 0x8101,\n\t0x236: 0x8101, 0x237: 0x8101, 0x238: 0x9901, 0x239: 0x812d, 0x23a: 0x812d, 0x23b: 0x812d,\n\t0x23c: 0x812d, 0x23d: 0x8132, 0x23e: 0x8132, 0x23f: 0x8132,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x49ae, 0x241: 0x49b3, 0x242: 0x9932, 0x243: 0x49b8, 0x244: 0x4a71, 0x245: 0x9936,\n\t0x246: 0x8132, 0x247: 0x812d, 0x248: 0x812d, 0x249: 0x812d, 0x24a: 0x8132, 0x24b: 0x8132,\n\t0x24c: 0x8132, 0x24d: 0x812d, 0x24e: 0x812d, 0x250: 0x8132, 0x251: 0x8132,\n\t0x252: 0x8132, 0x253: 0x812d, 0x254: 0x812d, 0x255: 0x812d, 0x256: 0x812d, 0x257: 0x8132,\n\t0x258: 0x8133, 0x259: 0x812d, 0x25a: 0x812d, 0x25b: 0x8132, 0x25c: 0x8134, 0x25d: 0x8135,\n\t0x25e: 0x8135, 0x25f: 0x8134, 0x260: 0x8135, 0x261: 0x8135, 0x262: 0x8134, 0x263: 0x8132,\n\t0x264: 0x8132, 0x265: 0x8132, 0x266: 0x8132, 0x267: 0x8132, 0x268: 0x8132, 0x269: 0x8132,\n\t0x26a: 0x8132, 0x26b: 0x8132, 0x26c: 0x8132, 0x26d: 0x8132, 0x26e: 0x8132, 0x26f: 0x8132,\n\t0x274: 0x0170,\n\t0x27a: 0x8100,\n\t0x27e: 0x0037,\n\t// Block 0xa, offset 0x280\n\t0x284: 0x8100, 0x285: 0x35a1,\n\t0x286: 0x35e9, 0x287: 0x00ce, 0x288: 0x3607, 0x289: 0x3613, 0x28a: 0x3625,\n\t0x28c: 0x3643, 0x28e: 0x3655, 0x28f: 0x3673, 0x290: 0x3e08, 0x291: 0xa000,\n\t0x295: 0xa000, 0x297: 0xa000,\n\t0x299: 0xa000,\n\t0x29f: 0xa000, 0x2a1: 0xa000,\n\t0x2a5: 0xa000, 0x2a9: 0xa000,\n\t0x2aa: 0x3637, 0x2ab: 0x3667, 0x2ac: 0x47fe, 0x2ad: 0x3697, 0x2ae: 0x4828, 0x2af: 0x36a9,\n\t0x2b0: 0x3e70, 0x2b1: 0xa000, 0x2b5: 0xa000,\n\t0x2b7: 0xa000, 0x2b9: 0xa000,\n\t0x2bf: 0xa000,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0x3721, 0x2c1: 0x372d, 0x2c3: 0x371b,\n\t0x2c6: 0xa000, 0x2c7: 0x3709,\n\t0x2cc: 0x375d, 0x2cd: 0x3745, 0x2ce: 0x376f, 0x2d0: 0xa000,\n\t0x2d3: 0xa000, 0x2d5: 0xa000, 0x2d6: 0xa000, 0x2d7: 0xa000,\n\t0x2d8: 0xa000, 0x2d9: 0x3751, 0x2da: 0xa000,\n\t0x2de: 0xa000, 0x2e3: 0xa000,\n\t0x2e7: 0xa000,\n\t0x2eb: 0xa000, 0x2ed: 0xa000,\n\t0x2f0: 0xa000, 0x2f3: 0xa000, 0x2f5: 0xa000,\n\t0x2f6: 0xa000, 0x2f7: 0xa000, 0x2f8: 0xa000, 0x2f9: 0x37d5, 0x2fa: 0xa000,\n\t0x2fe: 0xa000,\n\t// Block 0xc, offset 0x300\n\t0x301: 0x3733, 0x302: 0x37b7,\n\t0x310: 0x370f, 0x311: 0x3793,\n\t0x312: 0x3715, 0x313: 0x3799, 0x316: 0x3727, 0x317: 0x37ab,\n\t0x318: 0xa000, 0x319: 0xa000, 0x31a: 0x3829, 0x31b: 0x382f, 0x31c: 0x3739, 0x31d: 0x37bd,\n\t0x31e: 0x373f, 0x31f: 0x37c3, 0x322: 0x374b, 0x323: 0x37cf,\n\t0x324: 0x3757, 0x325: 0x37db, 0x326: 0x3763, 0x327: 0x37e7, 0x328: 0xa000, 0x329: 0xa000,\n\t0x32a: 0x3835, 0x32b: 0x383b, 0x32c: 0x378d, 0x32d: 0x3811, 0x32e: 0x3769, 0x32f: 0x37ed,\n\t0x330: 0x3775, 0x331: 0x37f9, 0x332: 0x377b, 0x333: 0x37ff, 0x334: 0x3781, 0x335: 0x3805,\n\t0x338: 0x3787, 0x339: 0x380b,\n\t// Block 0xd, offset 0x340\n\t0x351: 0x812d,\n\t0x352: 0x8132, 0x353: 0x8132, 0x354: 0x8132, 0x355: 0x8132, 0x356: 0x812d, 0x357: 0x8132,\n\t0x358: 0x8132, 0x359: 0x8132, 0x35a: 0x812e, 0x35b: 0x812d, 0x35c: 0x8132, 0x35d: 0x8132,\n\t0x35e: 0x8132, 0x35f: 0x8132, 0x360: 0x8132, 0x361: 0x8132, 0x362: 0x812d, 0x363: 0x812d,\n\t0x364: 0x812d, 0x365: 0x812d, 0x366: 0x812d, 0x367: 0x812d, 0x368: 0x8132, 0x369: 0x8132,\n\t0x36a: 0x812d, 0x36b: 0x8132, 0x36c: 0x8132, 0x36d: 0x812e, 0x36e: 0x8131, 0x36f: 0x8132,\n\t0x370: 0x8105, 0x371: 0x8106, 0x372: 0x8107, 0x373: 0x8108, 0x374: 0x8109, 0x375: 0x810a,\n\t0x376: 0x810b, 0x377: 0x810c, 0x378: 0x810d, 0x379: 0x810e, 0x37a: 0x810e, 0x37b: 0x810f,\n\t0x37c: 0x8110, 0x37d: 0x8111, 0x37f: 0x8112,\n\t// Block 0xe, offset 0x380\n\t0x388: 0xa000, 0x38a: 0xa000, 0x38b: 0x8116,\n\t0x38c: 0x8117, 0x38d: 0x8118, 0x38e: 0x8119, 0x38f: 0x811a, 0x390: 0x811b, 0x391: 0x811c,\n\t0x392: 0x811d, 0x393: 0x9932, 0x394: 0x9932, 0x395: 0x992d, 0x396: 0x812d, 0x397: 0x8132,\n\t0x398: 0x8132, 0x399: 0x8132, 0x39a: 0x8132, 0x39b: 0x8132, 0x39c: 0x812d, 0x39d: 0x8132,\n\t0x39e: 0x8132, 0x39f: 0x812d,\n\t0x3b0: 0x811e,\n\t// Block 0xf, offset 0x3c0\n\t0x3c5: 0xa000,\n\t0x3c6: 0x2d26, 0x3c7: 0xa000, 0x3c8: 0x2d2e, 0x3c9: 0xa000, 0x3ca: 0x2d36, 0x3cb: 0xa000,\n\t0x3cc: 0x2d3e, 0x3cd: 0xa000, 0x3ce: 0x2d46, 0x3d1: 0xa000,\n\t0x3d2: 0x2d4e,\n\t0x3f4: 0x8102, 0x3f5: 0x9900,\n\t0x3fa: 0xa000, 0x3fb: 0x2d56,\n\t0x3fc: 0xa000, 0x3fd: 0x2d5e, 0x3fe: 0xa000, 0x3ff: 0xa000,\n\t// Block 0x10, offset 0x400\n\t0x400: 0x8132, 0x401: 0x8132, 0x402: 0x812d, 0x403: 0x8132, 0x404: 0x8132, 0x405: 0x8132,\n\t0x406: 0x8132, 0x407: 0x8132, 0x408: 0x8132, 0x409: 0x8132, 0x40a: 0x812d, 0x40b: 0x8132,\n\t0x40c: 0x8132, 0x40d: 0x8135, 0x40e: 0x812a, 0x40f: 0x812d, 0x410: 0x8129, 0x411: 0x8132,\n\t0x412: 0x8132, 0x413: 0x8132, 0x414: 0x8132, 0x415: 0x8132, 0x416: 0x8132, 0x417: 0x8132,\n\t0x418: 0x8132, 0x419: 0x8132, 0x41a: 0x8132, 0x41b: 0x8132, 0x41c: 0x8132, 0x41d: 0x8132,\n\t0x41e: 0x8132, 0x41f: 0x8132, 0x420: 0x8132, 0x421: 0x8132, 0x422: 0x8132, 0x423: 0x8132,\n\t0x424: 0x8132, 0x425: 0x8132, 0x426: 0x8132, 0x427: 0x8132, 0x428: 0x8132, 0x429: 0x8132,\n\t0x42a: 0x8132, 0x42b: 0x8132, 0x42c: 0x8132, 0x42d: 0x8132, 0x42e: 0x8132, 0x42f: 0x8132,\n\t0x430: 0x8132, 0x431: 0x8132, 0x432: 0x8132, 0x433: 0x8132, 0x434: 0x8132, 0x435: 0x8132,\n\t0x436: 0x8133, 0x437: 0x8131, 0x438: 0x8131, 0x439: 0x812d, 0x43b: 0x8132,\n\t0x43c: 0x8134, 0x43d: 0x812d, 0x43e: 0x8132, 0x43f: 0x812d,\n\t// Block 0x11, offset 0x440\n\t0x440: 0x2f97, 0x441: 0x32a3, 0x442: 0x2fa1, 0x443: 0x32ad, 0x444: 0x2fa6, 0x445: 0x32b2,\n\t0x446: 0x2fab, 0x447: 0x32b7, 0x448: 0x38cc, 0x449: 0x3a5b, 0x44a: 0x2fc4, 0x44b: 0x32d0,\n\t0x44c: 0x2fce, 0x44d: 0x32da, 0x44e: 0x2fdd, 0x44f: 0x32e9, 0x450: 0x2fd3, 0x451: 0x32df,\n\t0x452: 0x2fd8, 0x453: 0x32e4, 0x454: 0x38ef, 0x455: 0x3a7e, 0x456: 0x38f6, 0x457: 0x3a85,\n\t0x458: 0x3019, 0x459: 0x3325, 0x45a: 0x301e, 0x45b: 0x332a, 0x45c: 0x3904, 0x45d: 0x3a93,\n\t0x45e: 0x3023, 0x45f: 0x332f, 0x460: 0x3032, 0x461: 0x333e, 0x462: 0x3050, 0x463: 0x335c,\n\t0x464: 0x305f, 0x465: 0x336b, 0x466: 0x3055, 0x467: 0x3361, 0x468: 0x3064, 0x469: 0x3370,\n\t0x46a: 0x3069, 0x46b: 0x3375, 0x46c: 0x30af, 0x46d: 0x33bb, 0x46e: 0x390b, 0x46f: 0x3a9a,\n\t0x470: 0x30b9, 0x471: 0x33ca, 0x472: 0x30c3, 0x473: 0x33d4, 0x474: 0x30cd, 0x475: 0x33de,\n\t0x476: 0x46c4, 0x477: 0x4755, 0x478: 0x3912, 0x479: 0x3aa1, 0x47a: 0x30e6, 0x47b: 0x33f7,\n\t0x47c: 0x30e1, 0x47d: 0x33f2, 0x47e: 0x30eb, 0x47f: 0x33fc,\n\t// Block 0x12, offset 0x480\n\t0x480: 0x30f0, 0x481: 0x3401, 0x482: 0x30f5, 0x483: 0x3406, 0x484: 0x3109, 0x485: 0x341a,\n\t0x486: 0x3113, 0x487: 0x3424, 0x488: 0x3122, 0x489: 0x3433, 0x48a: 0x311d, 0x48b: 0x342e,\n\t0x48c: 0x3935, 0x48d: 0x3ac4, 0x48e: 0x3943, 0x48f: 0x3ad2, 0x490: 0x394a, 0x491: 0x3ad9,\n\t0x492: 0x3951, 0x493: 0x3ae0, 0x494: 0x314f, 0x495: 0x3460, 0x496: 0x3154, 0x497: 0x3465,\n\t0x498: 0x315e, 0x499: 0x346f, 0x49a: 0x46f1, 0x49b: 0x4782, 0x49c: 0x3997, 0x49d: 0x3b26,\n\t0x49e: 0x3177, 0x49f: 0x3488, 0x4a0: 0x3181, 0x4a1: 0x3492, 0x4a2: 0x4700, 0x4a3: 0x4791,\n\t0x4a4: 0x399e, 0x4a5: 0x3b2d, 0x4a6: 0x39a5, 0x4a7: 0x3b34, 0x4a8: 0x39ac, 0x4a9: 0x3b3b,\n\t0x4aa: 0x3190, 0x4ab: 0x34a1, 0x4ac: 0x319a, 0x4ad: 0x34b0, 0x4ae: 0x31ae, 0x4af: 0x34c4,\n\t0x4b0: 0x31a9, 0x4b1: 0x34bf, 0x4b2: 0x31ea, 0x4b3: 0x3500, 0x4b4: 0x31f9, 0x4b5: 0x350f,\n\t0x4b6: 0x31f4, 0x4b7: 0x350a, 0x4b8: 0x39b3, 0x4b9: 0x3b42, 0x4ba: 0x39ba, 0x4bb: 0x3b49,\n\t0x4bc: 0x31fe, 0x4bd: 0x3514, 0x4be: 0x3203, 0x4bf: 0x3519,\n\t// Block 0x13, offset 0x4c0\n\t0x4c0: 0x3208, 0x4c1: 0x351e, 0x4c2: 0x320d, 0x4c3: 0x3523, 0x4c4: 0x321c, 0x4c5: 0x3532,\n\t0x4c6: 0x3217, 0x4c7: 0x352d, 0x4c8: 0x3221, 0x4c9: 0x353c, 0x4ca: 0x3226, 0x4cb: 0x3541,\n\t0x4cc: 0x322b, 0x4cd: 0x3546, 0x4ce: 0x3249, 0x4cf: 0x3564, 0x4d0: 0x3262, 0x4d1: 0x3582,\n\t0x4d2: 0x3271, 0x4d3: 0x3591, 0x4d4: 0x3276, 0x4d5: 0x3596, 0x4d6: 0x337a, 0x4d7: 0x34a6,\n\t0x4d8: 0x3537, 0x4d9: 0x3573, 0x4db: 0x35d1,\n\t0x4e0: 0x46a1, 0x4e1: 0x4732, 0x4e2: 0x2f83, 0x4e3: 0x328f,\n\t0x4e4: 0x3878, 0x4e5: 0x3a07, 0x4e6: 0x3871, 0x4e7: 0x3a00, 0x4e8: 0x3886, 0x4e9: 0x3a15,\n\t0x4ea: 0x387f, 0x4eb: 0x3a0e, 0x4ec: 0x38be, 0x4ed: 0x3a4d, 0x4ee: 0x3894, 0x4ef: 0x3a23,\n\t0x4f0: 0x388d, 0x4f1: 0x3a1c, 0x4f2: 0x38a2, 0x4f3: 0x3a31, 0x4f4: 0x389b, 0x4f5: 0x3a2a,\n\t0x4f6: 0x38c5, 0x4f7: 0x3a54, 0x4f8: 0x46b5, 0x4f9: 0x4746, 0x4fa: 0x3000, 0x4fb: 0x330c,\n\t0x4fc: 0x2fec, 0x4fd: 0x32f8, 0x4fe: 0x38da, 0x4ff: 0x3a69,\n\t// Block 0x14, offset 0x500\n\t0x500: 0x38d3, 0x501: 0x3a62, 0x502: 0x38e8, 0x503: 0x3a77, 0x504: 0x38e1, 0x505: 0x3a70,\n\t0x506: 0x38fd, 0x507: 0x3a8c, 0x508: 0x3091, 0x509: 0x339d, 0x50a: 0x30a5, 0x50b: 0x33b1,\n\t0x50c: 0x46e7, 0x50d: 0x4778, 0x50e: 0x3136, 0x50f: 0x3447, 0x510: 0x3920, 0x511: 0x3aaf,\n\t0x512: 0x3919, 0x513: 0x3aa8, 0x514: 0x392e, 0x515: 0x3abd, 0x516: 0x3927, 0x517: 0x3ab6,\n\t0x518: 0x3989, 0x519: 0x3b18, 0x51a: 0x396d, 0x51b: 0x3afc, 0x51c: 0x3966, 0x51d: 0x3af5,\n\t0x51e: 0x397b, 0x51f: 0x3b0a, 0x520: 0x3974, 0x521: 0x3b03, 0x522: 0x3982, 0x523: 0x3b11,\n\t0x524: 0x31e5, 0x525: 0x34fb, 0x526: 0x31c7, 0x527: 0x34dd, 0x528: 0x39e4, 0x529: 0x3b73,\n\t0x52a: 0x39dd, 0x52b: 0x3b6c, 0x52c: 0x39f2, 0x52d: 0x3b81, 0x52e: 0x39eb, 0x52f: 0x3b7a,\n\t0x530: 0x39f9, 0x531: 0x3b88, 0x532: 0x3230, 0x533: 0x354b, 0x534: 0x3258, 0x535: 0x3578,\n\t0x536: 0x3253, 0x537: 0x356e, 0x538: 0x323f, 0x539: 0x355a,\n\t// Block 0x15, offset 0x540\n\t0x540: 0x4804, 0x541: 0x480a, 0x542: 0x491e, 0x543: 0x4936, 0x544: 0x4926, 0x545: 0x493e,\n\t0x546: 0x492e, 0x547: 0x4946, 0x548: 0x47aa, 0x549: 0x47b0, 0x54a: 0x488e, 0x54b: 0x48a6,\n\t0x54c: 0x4896, 0x54d: 0x48ae, 0x54e: 0x489e, 0x54f: 0x48b6, 0x550: 0x4816, 0x551: 0x481c,\n\t0x552: 0x3db8, 0x553: 0x3dc8, 0x554: 0x3dc0, 0x555: 0x3dd0,\n\t0x558: 0x47b6, 0x559: 0x47bc, 0x55a: 0x3ce8, 0x55b: 0x3cf8, 0x55c: 0x3cf0, 0x55d: 0x3d00,\n\t0x560: 0x482e, 0x561: 0x4834, 0x562: 0x494e, 0x563: 0x4966,\n\t0x564: 0x4956, 0x565: 0x496e, 0x566: 0x495e, 0x567: 0x4976, 0x568: 0x47c2, 0x569: 0x47c8,\n\t0x56a: 0x48be, 0x56b: 0x48d6, 0x56c: 0x48c6, 0x56d: 0x48de, 0x56e: 0x48ce, 0x56f: 0x48e6,\n\t0x570: 0x4846, 0x571: 0x484c, 0x572: 0x3e18, 0x573: 0x3e30, 0x574: 0x3e20, 0x575: 0x3e38,\n\t0x576: 0x3e28, 0x577: 0x3e40, 0x578: 0x47ce, 0x579: 0x47d4, 0x57a: 0x3d18, 0x57b: 0x3d30,\n\t0x57c: 0x3d20, 0x57d: 0x3d38, 0x57e: 0x3d28, 0x57f: 0x3d40,\n\t// Block 0x16, offset 0x580\n\t0x580: 0x4852, 0x581: 0x4858, 0x582: 0x3e48, 0x583: 0x3e58, 0x584: 0x3e50, 0x585: 0x3e60,\n\t0x588: 0x47da, 0x589: 0x47e0, 0x58a: 0x3d48, 0x58b: 0x3d58,\n\t0x58c: 0x3d50, 0x58d: 0x3d60, 0x590: 0x4864, 0x591: 0x486a,\n\t0x592: 0x3e80, 0x593: 0x3e98, 0x594: 0x3e88, 0x595: 0x3ea0, 0x596: 0x3e90, 0x597: 0x3ea8,\n\t0x599: 0x47e6, 0x59b: 0x3d68, 0x59d: 0x3d70,\n\t0x59f: 0x3d78, 0x5a0: 0x487c, 0x5a1: 0x4882, 0x5a2: 0x497e, 0x5a3: 0x4996,\n\t0x5a4: 0x4986, 0x5a5: 0x499e, 0x5a6: 0x498e, 0x5a7: 0x49a6, 0x5a8: 0x47ec, 0x5a9: 0x47f2,\n\t0x5aa: 0x48ee, 0x5ab: 0x4906, 0x5ac: 0x48f6, 0x5ad: 0x490e, 0x5ae: 0x48fe, 0x5af: 0x4916,\n\t0x5b0: 0x47f8, 0x5b1: 0x431e, 0x5b2: 0x3691, 0x5b3: 0x4324, 0x5b4: 0x4822, 0x5b5: 0x432a,\n\t0x5b6: 0x36a3, 0x5b7: 0x4330, 0x5b8: 0x36c1, 0x5b9: 0x4336, 0x5ba: 0x36d9, 0x5bb: 0x433c,\n\t0x5bc: 0x4870, 0x5bd: 0x4342,\n\t// Block 0x17, offset 0x5c0\n\t0x5c0: 0x3da0, 0x5c1: 0x3da8, 0x5c2: 0x4184, 0x5c3: 0x41a2, 0x5c4: 0x418e, 0x5c5: 0x41ac,\n\t0x5c6: 0x4198, 0x5c7: 0x41b6, 0x5c8: 0x3cd8, 0x5c9: 0x3ce0, 0x5ca: 0x40d0, 0x5cb: 0x40ee,\n\t0x5cc: 0x40da, 0x5cd: 0x40f8, 0x5ce: 0x40e4, 0x5cf: 0x4102, 0x5d0: 0x3de8, 0x5d1: 0x3df0,\n\t0x5d2: 0x41c0, 0x5d3: 0x41de, 0x5d4: 0x41ca, 0x5d5: 0x41e8, 0x5d6: 0x41d4, 0x5d7: 0x41f2,\n\t0x5d8: 0x3d08, 0x5d9: 0x3d10, 0x5da: 0x410c, 0x5db: 0x412a, 0x5dc: 0x4116, 0x5dd: 0x4134,\n\t0x5de: 0x4120, 0x5df: 0x413e, 0x5e0: 0x3ec0, 0x5e1: 0x3ec8, 0x5e2: 0x41fc, 0x5e3: 0x421a,\n\t0x5e4: 0x4206, 0x5e5: 0x4224, 0x5e6: 0x4210, 0x5e7: 0x422e, 0x5e8: 0x3d80, 0x5e9: 0x3d88,\n\t0x5ea: 0x4148, 0x5eb: 0x4166, 0x5ec: 0x4152, 0x5ed: 0x4170, 0x5ee: 0x415c, 0x5ef: 0x417a,\n\t0x5f0: 0x3685, 0x5f1: 0x367f, 0x5f2: 0x3d90, 0x5f3: 0x368b, 0x5f4: 0x3d98,\n\t0x5f6: 0x4810, 0x5f7: 0x3db0, 0x5f8: 0x35f5, 0x5f9: 0x35ef, 0x5fa: 0x35e3, 0x5fb: 0x42ee,\n\t0x5fc: 0x35fb, 0x5fd: 0x8100, 0x5fe: 0x01d3, 0x5ff: 0xa100,\n\t// Block 0x18, offset 0x600\n\t0x600: 0x8100, 0x601: 0x35a7, 0x602: 0x3dd8, 0x603: 0x369d, 0x604: 0x3de0,\n\t0x606: 0x483a, 0x607: 0x3df8, 0x608: 0x3601, 0x609: 0x42f4, 0x60a: 0x360d, 0x60b: 0x42fa,\n\t0x60c: 0x3619, 0x60d: 0x3b8f, 0x60e: 0x3b96, 0x60f: 0x3b9d, 0x610: 0x36b5, 0x611: 0x36af,\n\t0x612: 0x3e00, 0x613: 0x44e4, 0x616: 0x36bb, 0x617: 0x3e10,\n\t0x618: 0x3631, 0x619: 0x362b, 0x61a: 0x361f, 0x61b: 0x4300, 0x61d: 0x3ba4,\n\t0x61e: 0x3bab, 0x61f: 0x3bb2, 0x620: 0x36eb, 0x621: 0x36e5, 0x622: 0x3e68, 0x623: 0x44ec,\n\t0x624: 0x36cd, 0x625: 0x36d3, 0x626: 0x36f1, 0x627: 0x3e78, 0x628: 0x3661, 0x629: 0x365b,\n\t0x62a: 0x364f, 0x62b: 0x430c, 0x62c: 0x3649, 0x62d: 0x359b, 0x62e: 0x42e8, 0x62f: 0x0081,\n\t0x632: 0x3eb0, 0x633: 0x36f7, 0x634: 0x3eb8,\n\t0x636: 0x4888, 0x637: 0x3ed0, 0x638: 0x363d, 0x639: 0x4306, 0x63a: 0x366d, 0x63b: 0x4318,\n\t0x63c: 0x3679, 0x63d: 0x4256, 0x63e: 0xa100,\n\t// Block 0x19, offset 0x640\n\t0x641: 0x3c06, 0x643: 0xa000, 0x644: 0x3c0d, 0x645: 0xa000,\n\t0x647: 0x3c14, 0x648: 0xa000, 0x649: 0x3c1b,\n\t0x64d: 0xa000,\n\t0x660: 0x2f65, 0x661: 0xa000, 0x662: 0x3c29,\n\t0x664: 0xa000, 0x665: 0xa000,\n\t0x66d: 0x3c22, 0x66e: 0x2f60, 0x66f: 0x2f6a,\n\t0x670: 0x3c30, 0x671: 0x3c37, 0x672: 0xa000, 0x673: 0xa000, 0x674: 0x3c3e, 0x675: 0x3c45,\n\t0x676: 0xa000, 0x677: 0xa000, 0x678: 0x3c4c, 0x679: 0x3c53, 0x67a: 0xa000, 0x67b: 0xa000,\n\t0x67c: 0xa000, 0x67d: 0xa000,\n\t// Block 0x1a, offset 0x680\n\t0x680: 0x3c5a, 0x681: 0x3c61, 0x682: 0xa000, 0x683: 0xa000, 0x684: 0x3c76, 0x685: 0x3c7d,\n\t0x686: 0xa000, 0x687: 0xa000, 0x688: 0x3c84, 0x689: 0x3c8b,\n\t0x691: 0xa000,\n\t0x692: 0xa000,\n\t0x6a2: 0xa000,\n\t0x6a8: 0xa000, 0x6a9: 0xa000,\n\t0x6ab: 0xa000, 0x6ac: 0x3ca0, 0x6ad: 0x3ca7, 0x6ae: 0x3cae, 0x6af: 0x3cb5,\n\t0x6b2: 0xa000, 0x6b3: 0xa000, 0x6b4: 0xa000, 0x6b5: 0xa000,\n\t// Block 0x1b, offset 0x6c0\n\t0x6c6: 0xa000, 0x6cb: 0xa000,\n\t0x6cc: 0x3f08, 0x6cd: 0xa000, 0x6ce: 0x3f10, 0x6cf: 0xa000, 0x6d0: 0x3f18, 0x6d1: 0xa000,\n\t0x6d2: 0x3f20, 0x6d3: 0xa000, 0x6d4: 0x3f28, 0x6d5: 0xa000, 0x6d6: 0x3f30, 0x6d7: 0xa000,\n\t0x6d8: 0x3f38, 0x6d9: 0xa000, 0x6da: 0x3f40, 0x6db: 0xa000, 0x6dc: 0x3f48, 0x6dd: 0xa000,\n\t0x6de: 0x3f50, 0x6df: 0xa000, 0x6e0: 0x3f58, 0x6e1: 0xa000, 0x6e2: 0x3f60,\n\t0x6e4: 0xa000, 0x6e5: 0x3f68, 0x6e6: 0xa000, 0x6e7: 0x3f70, 0x6e8: 0xa000, 0x6e9: 0x3f78,\n\t0x6ef: 0xa000,\n\t0x6f0: 0x3f80, 0x6f1: 0x3f88, 0x6f2: 0xa000, 0x6f3: 0x3f90, 0x6f4: 0x3f98, 0x6f5: 0xa000,\n\t0x6f6: 0x3fa0, 0x6f7: 0x3fa8, 0x6f8: 0xa000, 0x6f9: 0x3fb0, 0x6fa: 0x3fb8, 0x6fb: 0xa000,\n\t0x6fc: 0x3fc0, 0x6fd: 0x3fc8,\n\t// Block 0x1c, offset 0x700\n\t0x714: 0x3f00,\n\t0x719: 0x9903, 0x71a: 0x9903, 0x71b: 0x8100, 0x71c: 0x8100, 0x71d: 0xa000,\n\t0x71e: 0x3fd0,\n\t0x726: 0xa000,\n\t0x72b: 0xa000, 0x72c: 0x3fe0, 0x72d: 0xa000, 0x72e: 0x3fe8, 0x72f: 0xa000,\n\t0x730: 0x3ff0, 0x731: 0xa000, 0x732: 0x3ff8, 0x733: 0xa000, 0x734: 0x4000, 0x735: 0xa000,\n\t0x736: 0x4008, 0x737: 0xa000, 0x738: 0x4010, 0x739: 0xa000, 0x73a: 0x4018, 0x73b: 0xa000,\n\t0x73c: 0x4020, 0x73d: 0xa000, 0x73e: 0x4028, 0x73f: 0xa000,\n\t// Block 0x1d, offset 0x740\n\t0x740: 0x4030, 0x741: 0xa000, 0x742: 0x4038, 0x744: 0xa000, 0x745: 0x4040,\n\t0x746: 0xa000, 0x747: 0x4048, 0x748: 0xa000, 0x749: 0x4050,\n\t0x74f: 0xa000, 0x750: 0x4058, 0x751: 0x4060,\n\t0x752: 0xa000, 0x753: 0x4068, 0x754: 0x4070, 0x755: 0xa000, 0x756: 0x4078, 0x757: 0x4080,\n\t0x758: 0xa000, 0x759: 0x4088, 0x75a: 0x4090, 0x75b: 0xa000, 0x75c: 0x4098, 0x75d: 0x40a0,\n\t0x76f: 0xa000,\n\t0x770: 0xa000, 0x771: 0xa000, 0x772: 0xa000, 0x774: 0x3fd8,\n\t0x777: 0x40a8, 0x778: 0x40b0, 0x779: 0x40b8, 0x77a: 0x40c0,\n\t0x77d: 0xa000, 0x77e: 0x40c8,\n\t// Block 0x1e, offset 0x780\n\t0x780: 0x1377, 0x781: 0x0cfb, 0x782: 0x13d3, 0x783: 0x139f, 0x784: 0x0e57, 0x785: 0x06eb,\n\t0x786: 0x08df, 0x787: 0x162b, 0x788: 0x162b, 0x789: 0x0a0b, 0x78a: 0x145f, 0x78b: 0x0943,\n\t0x78c: 0x0a07, 0x78d: 0x0bef, 0x78e: 0x0fcf, 0x78f: 0x115f, 0x790: 0x1297, 0x791: 0x12d3,\n\t0x792: 0x1307, 0x793: 0x141b, 0x794: 0x0d73, 0x795: 0x0dff, 0x796: 0x0eab, 0x797: 0x0f43,\n\t0x798: 0x125f, 0x799: 0x1447, 0x79a: 0x1573, 0x79b: 0x070f, 0x79c: 0x08b3, 0x79d: 0x0d87,\n\t0x79e: 0x0ecf, 0x79f: 0x1293, 0x7a0: 0x15c3, 0x7a1: 0x0ab3, 0x7a2: 0x0e77, 0x7a3: 0x1283,\n\t0x7a4: 0x1317, 0x7a5: 0x0c23, 0x7a6: 0x11bb, 0x7a7: 0x12df, 0x7a8: 0x0b1f, 0x7a9: 0x0d0f,\n\t0x7aa: 0x0e17, 0x7ab: 0x0f1b, 0x7ac: 0x1427, 0x7ad: 0x074f, 0x7ae: 0x07e7, 0x7af: 0x0853,\n\t0x7b0: 0x0c8b, 0x7b1: 0x0d7f, 0x7b2: 0x0ecb, 0x7b3: 0x0fef, 0x7b4: 0x1177, 0x7b5: 0x128b,\n\t0x7b6: 0x12a3, 0x7b7: 0x13c7, 0x7b8: 0x14ef, 0x7b9: 0x15a3, 0x7ba: 0x15bf, 0x7bb: 0x102b,\n\t0x7bc: 0x106b, 0x7bd: 0x1123, 0x7be: 0x1243, 0x7bf: 0x147b,\n\t// Block 0x1f, offset 0x7c0\n\t0x7c0: 0x15cb, 0x7c1: 0x134b, 0x7c2: 0x09c7, 0x7c3: 0x0b3b, 0x7c4: 0x10db, 0x7c5: 0x119b,\n\t0x7c6: 0x0eff, 0x7c7: 0x1033, 0x7c8: 0x1397, 0x7c9: 0x14e7, 0x7ca: 0x09c3, 0x7cb: 0x0a8f,\n\t0x7cc: 0x0d77, 0x7cd: 0x0e2b, 0x7ce: 0x0e5f, 0x7cf: 0x1113, 0x7d0: 0x113b, 0x7d1: 0x14a7,\n\t0x7d2: 0x084f, 0x7d3: 0x11a7, 0x7d4: 0x07f3, 0x7d5: 0x07ef, 0x7d6: 0x1097, 0x7d7: 0x1127,\n\t0x7d8: 0x125b, 0x7d9: 0x14af, 0x7da: 0x1367, 0x7db: 0x0c27, 0x7dc: 0x0d73, 0x7dd: 0x1357,\n\t0x7de: 0x06f7, 0x7df: 0x0a63, 0x7e0: 0x0b93, 0x7e1: 0x0f2f, 0x7e2: 0x0faf, 0x7e3: 0x0873,\n\t0x7e4: 0x103b, 0x7e5: 0x075f, 0x7e6: 0x0b77, 0x7e7: 0x06d7, 0x7e8: 0x0deb, 0x7e9: 0x0ca3,\n\t0x7ea: 0x110f, 0x7eb: 0x08c7, 0x7ec: 0x09b3, 0x7ed: 0x0ffb, 0x7ee: 0x1263, 0x7ef: 0x133b,\n\t0x7f0: 0x0db7, 0x7f1: 0x13f7, 0x7f2: 0x0de3, 0x7f3: 0x0c37, 0x7f4: 0x121b, 0x7f5: 0x0c57,\n\t0x7f6: 0x0fab, 0x7f7: 0x072b, 0x7f8: 0x07a7, 0x7f9: 0x07eb, 0x7fa: 0x0d53, 0x7fb: 0x10fb,\n\t0x7fc: 0x11f3, 0x7fd: 0x1347, 0x7fe: 0x145b, 0x7ff: 0x085b,\n\t// Block 0x20, offset 0x800\n\t0x800: 0x090f, 0x801: 0x0a17, 0x802: 0x0b2f, 0x803: 0x0cbf, 0x804: 0x0e7b, 0x805: 0x103f,\n\t0x806: 0x1497, 0x807: 0x157b, 0x808: 0x15cf, 0x809: 0x15e7, 0x80a: 0x0837, 0x80b: 0x0cf3,\n\t0x80c: 0x0da3, 0x80d: 0x13eb, 0x80e: 0x0afb, 0x80f: 0x0bd7, 0x810: 0x0bf3, 0x811: 0x0c83,\n\t0x812: 0x0e6b, 0x813: 0x0eb7, 0x814: 0x0f67, 0x815: 0x108b, 0x816: 0x112f, 0x817: 0x1193,\n\t0x818: 0x13db, 0x819: 0x126b, 0x81a: 0x1403, 0x81b: 0x147f, 0x81c: 0x080f, 0x81d: 0x083b,\n\t0x81e: 0x0923, 0x81f: 0x0ea7, 0x820: 0x12f3, 0x821: 0x133b, 0x822: 0x0b1b, 0x823: 0x0b8b,\n\t0x824: 0x0c4f, 0x825: 0x0daf, 0x826: 0x10d7, 0x827: 0x0f23, 0x828: 0x073b, 0x829: 0x097f,\n\t0x82a: 0x0a63, 0x82b: 0x0ac7, 0x82c: 0x0b97, 0x82d: 0x0f3f, 0x82e: 0x0f5b, 0x82f: 0x116b,\n\t0x830: 0x118b, 0x831: 0x1463, 0x832: 0x14e3, 0x833: 0x14f3, 0x834: 0x152f, 0x835: 0x0753,\n\t0x836: 0x107f, 0x837: 0x144f, 0x838: 0x14cb, 0x839: 0x0baf, 0x83a: 0x0717, 0x83b: 0x0777,\n\t0x83c: 0x0a67, 0x83d: 0x0a87, 0x83e: 0x0caf, 0x83f: 0x0d73,\n\t// Block 0x21, offset 0x840\n\t0x840: 0x0ec3, 0x841: 0x0fcb, 0x842: 0x1277, 0x843: 0x1417, 0x844: 0x1623, 0x845: 0x0ce3,\n\t0x846: 0x14a3, 0x847: 0x0833, 0x848: 0x0d2f, 0x849: 0x0d3b, 0x84a: 0x0e0f, 0x84b: 0x0e47,\n\t0x84c: 0x0f4b, 0x84d: 0x0fa7, 0x84e: 0x1027, 0x84f: 0x110b, 0x850: 0x153b, 0x851: 0x07af,\n\t0x852: 0x0c03, 0x853: 0x14b3, 0x854: 0x0767, 0x855: 0x0aab, 0x856: 0x0e2f, 0x857: 0x13df,\n\t0x858: 0x0b67, 0x859: 0x0bb7, 0x85a: 0x0d43, 0x85b: 0x0f2f, 0x85c: 0x14bb, 0x85d: 0x0817,\n\t0x85e: 0x08ff, 0x85f: 0x0a97, 0x860: 0x0cd3, 0x861: 0x0d1f, 0x862: 0x0d5f, 0x863: 0x0df3,\n\t0x864: 0x0f47, 0x865: 0x0fbb, 0x866: 0x1157, 0x867: 0x12f7, 0x868: 0x1303, 0x869: 0x1457,\n\t0x86a: 0x14d7, 0x86b: 0x0883, 0x86c: 0x0e4b, 0x86d: 0x0903, 0x86e: 0x0ec7, 0x86f: 0x0f6b,\n\t0x870: 0x1287, 0x871: 0x14bf, 0x872: 0x15ab, 0x873: 0x15d3, 0x874: 0x0d37, 0x875: 0x0e27,\n\t0x876: 0x11c3, 0x877: 0x10b7, 0x878: 0x10c3, 0x879: 0x10e7, 0x87a: 0x0f17, 0x87b: 0x0e9f,\n\t0x87c: 0x1363, 0x87d: 0x0733, 0x87e: 0x122b, 0x87f: 0x081b,\n\t// Block 0x22, offset 0x880\n\t0x880: 0x080b, 0x881: 0x0b0b, 0x882: 0x0c2b, 0x883: 0x10f3, 0x884: 0x0a53, 0x885: 0x0e03,\n\t0x886: 0x0cef, 0x887: 0x13e7, 0x888: 0x12e7, 0x889: 0x14ab, 0x88a: 0x1323, 0x88b: 0x0b27,\n\t0x88c: 0x0787, 0x88d: 0x095b, 0x890: 0x09af,\n\t0x892: 0x0cdf, 0x895: 0x07f7, 0x896: 0x0f1f, 0x897: 0x0fe3,\n\t0x898: 0x1047, 0x899: 0x1063, 0x89a: 0x1067, 0x89b: 0x107b, 0x89c: 0x14fb, 0x89d: 0x10eb,\n\t0x89e: 0x116f, 0x8a0: 0x128f, 0x8a2: 0x1353,\n\t0x8a5: 0x1407, 0x8a6: 0x1433,\n\t0x8aa: 0x154f, 0x8ab: 0x1553, 0x8ac: 0x1557, 0x8ad: 0x15bb, 0x8ae: 0x142b, 0x8af: 0x14c7,\n\t0x8b0: 0x0757, 0x8b1: 0x077b, 0x8b2: 0x078f, 0x8b3: 0x084b, 0x8b4: 0x0857, 0x8b5: 0x0897,\n\t0x8b6: 0x094b, 0x8b7: 0x0967, 0x8b8: 0x096f, 0x8b9: 0x09ab, 0x8ba: 0x09b7, 0x8bb: 0x0a93,\n\t0x8bc: 0x0a9b, 0x8bd: 0x0ba3, 0x8be: 0x0bcb, 0x8bf: 0x0bd3,\n\t// Block 0x23, offset 0x8c0\n\t0x8c0: 0x0beb, 0x8c1: 0x0c97, 0x8c2: 0x0cc7, 0x8c3: 0x0ce7, 0x8c4: 0x0d57, 0x8c5: 0x0e1b,\n\t0x8c6: 0x0e37, 0x8c7: 0x0e67, 0x8c8: 0x0ebb, 0x8c9: 0x0edb, 0x8ca: 0x0f4f, 0x8cb: 0x102f,\n\t0x8cc: 0x104b, 0x8cd: 0x1053, 0x8ce: 0x104f, 0x8cf: 0x1057, 0x8d0: 0x105b, 0x8d1: 0x105f,\n\t0x8d2: 0x1073, 0x8d3: 0x1077, 0x8d4: 0x109b, 0x8d5: 0x10af, 0x8d6: 0x10cb, 0x8d7: 0x112f,\n\t0x8d8: 0x1137, 0x8d9: 0x113f, 0x8da: 0x1153, 0x8db: 0x117b, 0x8dc: 0x11cb, 0x8dd: 0x11ff,\n\t0x8de: 0x11ff, 0x8df: 0x1267, 0x8e0: 0x130f, 0x8e1: 0x1327, 0x8e2: 0x135b, 0x8e3: 0x135f,\n\t0x8e4: 0x13a3, 0x8e5: 0x13a7, 0x8e6: 0x13ff, 0x8e7: 0x1407, 0x8e8: 0x14db, 0x8e9: 0x151f,\n\t0x8ea: 0x1537, 0x8eb: 0x0b9b, 0x8ec: 0x171e, 0x8ed: 0x11e3,\n\t0x8f0: 0x06df, 0x8f1: 0x07e3, 0x8f2: 0x07a3, 0x8f3: 0x074b, 0x8f4: 0x078b, 0x8f5: 0x07b7,\n\t0x8f6: 0x0847, 0x8f7: 0x0863, 0x8f8: 0x094b, 0x8f9: 0x0937, 0x8fa: 0x0947, 0x8fb: 0x0963,\n\t0x8fc: 0x09af, 0x8fd: 0x09bf, 0x8fe: 0x0a03, 0x8ff: 0x0a0f,\n\t// Block 0x24, offset 0x900\n\t0x900: 0x0a2b, 0x901: 0x0a3b, 0x902: 0x0b23, 0x903: 0x0b2b, 0x904: 0x0b5b, 0x905: 0x0b7b,\n\t0x906: 0x0bab, 0x907: 0x0bc3, 0x908: 0x0bb3, 0x909: 0x0bd3, 0x90a: 0x0bc7, 0x90b: 0x0beb,\n\t0x90c: 0x0c07, 0x90d: 0x0c5f, 0x90e: 0x0c6b, 0x90f: 0x0c73, 0x910: 0x0c9b, 0x911: 0x0cdf,\n\t0x912: 0x0d0f, 0x913: 0x0d13, 0x914: 0x0d27, 0x915: 0x0da7, 0x916: 0x0db7, 0x917: 0x0e0f,\n\t0x918: 0x0e5b, 0x919: 0x0e53, 0x91a: 0x0e67, 0x91b: 0x0e83, 0x91c: 0x0ebb, 0x91d: 0x1013,\n\t0x91e: 0x0edf, 0x91f: 0x0f13, 0x920: 0x0f1f, 0x921: 0x0f5f, 0x922: 0x0f7b, 0x923: 0x0f9f,\n\t0x924: 0x0fc3, 0x925: 0x0fc7, 0x926: 0x0fe3, 0x927: 0x0fe7, 0x928: 0x0ff7, 0x929: 0x100b,\n\t0x92a: 0x1007, 0x92b: 0x1037, 0x92c: 0x10b3, 0x92d: 0x10cb, 0x92e: 0x10e3, 0x92f: 0x111b,\n\t0x930: 0x112f, 0x931: 0x114b, 0x932: 0x117b, 0x933: 0x122f, 0x934: 0x1257, 0x935: 0x12cb,\n\t0x936: 0x1313, 0x937: 0x131f, 0x938: 0x1327, 0x939: 0x133f, 0x93a: 0x1353, 0x93b: 0x1343,\n\t0x93c: 0x135b, 0x93d: 0x1357, 0x93e: 0x134f, 0x93f: 0x135f,\n\t// Block 0x25, offset 0x940\n\t0x940: 0x136b, 0x941: 0x13a7, 0x942: 0x13e3, 0x943: 0x1413, 0x944: 0x144b, 0x945: 0x146b,\n\t0x946: 0x14b7, 0x947: 0x14db, 0x948: 0x14fb, 0x949: 0x150f, 0x94a: 0x151f, 0x94b: 0x152b,\n\t0x94c: 0x1537, 0x94d: 0x158b, 0x94e: 0x162b, 0x94f: 0x16b5, 0x950: 0x16b0, 0x951: 0x16e2,\n\t0x952: 0x0607, 0x953: 0x062f, 0x954: 0x0633, 0x955: 0x1764, 0x956: 0x1791, 0x957: 0x1809,\n\t0x958: 0x1617, 0x959: 0x1627,\n\t// Block 0x26, offset 0x980\n\t0x980: 0x06fb, 0x981: 0x06f3, 0x982: 0x0703, 0x983: 0x1647, 0x984: 0x0747, 0x985: 0x0757,\n\t0x986: 0x075b, 0x987: 0x0763, 0x988: 0x076b, 0x989: 0x076f, 0x98a: 0x077b, 0x98b: 0x0773,\n\t0x98c: 0x05b3, 0x98d: 0x165b, 0x98e: 0x078f, 0x98f: 0x0793, 0x990: 0x0797, 0x991: 0x07b3,\n\t0x992: 0x164c, 0x993: 0x05b7, 0x994: 0x079f, 0x995: 0x07bf, 0x996: 0x1656, 0x997: 0x07cf,\n\t0x998: 0x07d7, 0x999: 0x0737, 0x99a: 0x07df, 0x99b: 0x07e3, 0x99c: 0x1831, 0x99d: 0x07ff,\n\t0x99e: 0x0807, 0x99f: 0x05bf, 0x9a0: 0x081f, 0x9a1: 0x0823, 0x9a2: 0x082b, 0x9a3: 0x082f,\n\t0x9a4: 0x05c3, 0x9a5: 0x0847, 0x9a6: 0x084b, 0x9a7: 0x0857, 0x9a8: 0x0863, 0x9a9: 0x0867,\n\t0x9aa: 0x086b, 0x9ab: 0x0873, 0x9ac: 0x0893, 0x9ad: 0x0897, 0x9ae: 0x089f, 0x9af: 0x08af,\n\t0x9b0: 0x08b7, 0x9b1: 0x08bb, 0x9b2: 0x08bb, 0x9b3: 0x08bb, 0x9b4: 0x166a, 0x9b5: 0x0e93,\n\t0x9b6: 0x08cf, 0x9b7: 0x08d7, 0x9b8: 0x166f, 0x9b9: 0x08e3, 0x9ba: 0x08eb, 0x9bb: 0x08f3,\n\t0x9bc: 0x091b, 0x9bd: 0x0907, 0x9be: 0x0913, 0x9bf: 0x0917,\n\t// Block 0x27, offset 0x9c0\n\t0x9c0: 0x091f, 0x9c1: 0x0927, 0x9c2: 0x092b, 0x9c3: 0x0933, 0x9c4: 0x093b, 0x9c5: 0x093f,\n\t0x9c6: 0x093f, 0x9c7: 0x0947, 0x9c8: 0x094f, 0x9c9: 0x0953, 0x9ca: 0x095f, 0x9cb: 0x0983,\n\t0x9cc: 0x0967, 0x9cd: 0x0987, 0x9ce: 0x096b, 0x9cf: 0x0973, 0x9d0: 0x080b, 0x9d1: 0x09cf,\n\t0x9d2: 0x0997, 0x9d3: 0x099b, 0x9d4: 0x099f, 0x9d5: 0x0993, 0x9d6: 0x09a7, 0x9d7: 0x09a3,\n\t0x9d8: 0x09bb, 0x9d9: 0x1674, 0x9da: 0x09d7, 0x9db: 0x09db, 0x9dc: 0x09e3, 0x9dd: 0x09ef,\n\t0x9de: 0x09f7, 0x9df: 0x0a13, 0x9e0: 0x1679, 0x9e1: 0x167e, 0x9e2: 0x0a1f, 0x9e3: 0x0a23,\n\t0x9e4: 0x0a27, 0x9e5: 0x0a1b, 0x9e6: 0x0a2f, 0x9e7: 0x05c7, 0x9e8: 0x05cb, 0x9e9: 0x0a37,\n\t0x9ea: 0x0a3f, 0x9eb: 0x0a3f, 0x9ec: 0x1683, 0x9ed: 0x0a5b, 0x9ee: 0x0a5f, 0x9ef: 0x0a63,\n\t0x9f0: 0x0a6b, 0x9f1: 0x1688, 0x9f2: 0x0a73, 0x9f3: 0x0a77, 0x9f4: 0x0b4f, 0x9f5: 0x0a7f,\n\t0x9f6: 0x05cf, 0x9f7: 0x0a8b, 0x9f8: 0x0a9b, 0x9f9: 0x0aa7, 0x9fa: 0x0aa3, 0x9fb: 0x1692,\n\t0x9fc: 0x0aaf, 0x9fd: 0x1697, 0x9fe: 0x0abb, 0x9ff: 0x0ab7,\n\t// Block 0x28, offset 0xa00\n\t0xa00: 0x0abf, 0xa01: 0x0acf, 0xa02: 0x0ad3, 0xa03: 0x05d3, 0xa04: 0x0ae3, 0xa05: 0x0aeb,\n\t0xa06: 0x0aef, 0xa07: 0x0af3, 0xa08: 0x05d7, 0xa09: 0x169c, 0xa0a: 0x05db, 0xa0b: 0x0b0f,\n\t0xa0c: 0x0b13, 0xa0d: 0x0b17, 0xa0e: 0x0b1f, 0xa0f: 0x1863, 0xa10: 0x0b37, 0xa11: 0x16a6,\n\t0xa12: 0x16a6, 0xa13: 0x11d7, 0xa14: 0x0b47, 0xa15: 0x0b47, 0xa16: 0x05df, 0xa17: 0x16c9,\n\t0xa18: 0x179b, 0xa19: 0x0b57, 0xa1a: 0x0b5f, 0xa1b: 0x05e3, 0xa1c: 0x0b73, 0xa1d: 0x0b83,\n\t0xa1e: 0x0b87, 0xa1f: 0x0b8f, 0xa20: 0x0b9f, 0xa21: 0x05eb, 0xa22: 0x05e7, 0xa23: 0x0ba3,\n\t0xa24: 0x16ab, 0xa25: 0x0ba7, 0xa26: 0x0bbb, 0xa27: 0x0bbf, 0xa28: 0x0bc3, 0xa29: 0x0bbf,\n\t0xa2a: 0x0bcf, 0xa2b: 0x0bd3, 0xa2c: 0x0be3, 0xa2d: 0x0bdb, 0xa2e: 0x0bdf, 0xa2f: 0x0be7,\n\t0xa30: 0x0beb, 0xa31: 0x0bef, 0xa32: 0x0bfb, 0xa33: 0x0bff, 0xa34: 0x0c17, 0xa35: 0x0c1f,\n\t0xa36: 0x0c2f, 0xa37: 0x0c43, 0xa38: 0x16ba, 0xa39: 0x0c3f, 0xa3a: 0x0c33, 0xa3b: 0x0c4b,\n\t0xa3c: 0x0c53, 0xa3d: 0x0c67, 0xa3e: 0x16bf, 0xa3f: 0x0c6f,\n\t// Block 0x29, offset 0xa40\n\t0xa40: 0x0c63, 0xa41: 0x0c5b, 0xa42: 0x05ef, 0xa43: 0x0c77, 0xa44: 0x0c7f, 0xa45: 0x0c87,\n\t0xa46: 0x0c7b, 0xa47: 0x05f3, 0xa48: 0x0c97, 0xa49: 0x0c9f, 0xa4a: 0x16c4, 0xa4b: 0x0ccb,\n\t0xa4c: 0x0cff, 0xa4d: 0x0cdb, 0xa4e: 0x05ff, 0xa4f: 0x0ce7, 0xa50: 0x05fb, 0xa51: 0x05f7,\n\t0xa52: 0x07c3, 0xa53: 0x07c7, 0xa54: 0x0d03, 0xa55: 0x0ceb, 0xa56: 0x11ab, 0xa57: 0x0663,\n\t0xa58: 0x0d0f, 0xa59: 0x0d13, 0xa5a: 0x0d17, 0xa5b: 0x0d2b, 0xa5c: 0x0d23, 0xa5d: 0x16dd,\n\t0xa5e: 0x0603, 0xa5f: 0x0d3f, 0xa60: 0x0d33, 0xa61: 0x0d4f, 0xa62: 0x0d57, 0xa63: 0x16e7,\n\t0xa64: 0x0d5b, 0xa65: 0x0d47, 0xa66: 0x0d63, 0xa67: 0x0607, 0xa68: 0x0d67, 0xa69: 0x0d6b,\n\t0xa6a: 0x0d6f, 0xa6b: 0x0d7b, 0xa6c: 0x16ec, 0xa6d: 0x0d83, 0xa6e: 0x060b, 0xa6f: 0x0d8f,\n\t0xa70: 0x16f1, 0xa71: 0x0d93, 0xa72: 0x060f, 0xa73: 0x0d9f, 0xa74: 0x0dab, 0xa75: 0x0db7,\n\t0xa76: 0x0dbb, 0xa77: 0x16f6, 0xa78: 0x168d, 0xa79: 0x16fb, 0xa7a: 0x0ddb, 0xa7b: 0x1700,\n\t0xa7c: 0x0de7, 0xa7d: 0x0def, 0xa7e: 0x0ddf, 0xa7f: 0x0dfb,\n\t// Block 0x2a, offset 0xa80\n\t0xa80: 0x0e0b, 0xa81: 0x0e1b, 0xa82: 0x0e0f, 0xa83: 0x0e13, 0xa84: 0x0e1f, 0xa85: 0x0e23,\n\t0xa86: 0x1705, 0xa87: 0x0e07, 0xa88: 0x0e3b, 0xa89: 0x0e3f, 0xa8a: 0x0613, 0xa8b: 0x0e53,\n\t0xa8c: 0x0e4f, 0xa8d: 0x170a, 0xa8e: 0x0e33, 0xa8f: 0x0e6f, 0xa90: 0x170f, 0xa91: 0x1714,\n\t0xa92: 0x0e73, 0xa93: 0x0e87, 0xa94: 0x0e83, 0xa95: 0x0e7f, 0xa96: 0x0617, 0xa97: 0x0e8b,\n\t0xa98: 0x0e9b, 0xa99: 0x0e97, 0xa9a: 0x0ea3, 0xa9b: 0x1651, 0xa9c: 0x0eb3, 0xa9d: 0x1719,\n\t0xa9e: 0x0ebf, 0xa9f: 0x1723, 0xaa0: 0x0ed3, 0xaa1: 0x0edf, 0xaa2: 0x0ef3, 0xaa3: 0x1728,\n\t0xaa4: 0x0f07, 0xaa5: 0x0f0b, 0xaa6: 0x172d, 0xaa7: 0x1732, 0xaa8: 0x0f27, 0xaa9: 0x0f37,\n\t0xaaa: 0x061b, 0xaab: 0x0f3b, 0xaac: 0x061f, 0xaad: 0x061f, 0xaae: 0x0f53, 0xaaf: 0x0f57,\n\t0xab0: 0x0f5f, 0xab1: 0x0f63, 0xab2: 0x0f6f, 0xab3: 0x0623, 0xab4: 0x0f87, 0xab5: 0x1737,\n\t0xab6: 0x0fa3, 0xab7: 0x173c, 0xab8: 0x0faf, 0xab9: 0x16a1, 0xaba: 0x0fbf, 0xabb: 0x1741,\n\t0xabc: 0x1746, 0xabd: 0x174b, 0xabe: 0x0627, 0xabf: 0x062b,\n\t// Block 0x2b, offset 0xac0\n\t0xac0: 0x0ff7, 0xac1: 0x1755, 0xac2: 0x1750, 0xac3: 0x175a, 0xac4: 0x175f, 0xac5: 0x0fff,\n\t0xac6: 0x1003, 0xac7: 0x1003, 0xac8: 0x100b, 0xac9: 0x0633, 0xaca: 0x100f, 0xacb: 0x0637,\n\t0xacc: 0x063b, 0xacd: 0x1769, 0xace: 0x1023, 0xacf: 0x102b, 0xad0: 0x1037, 0xad1: 0x063f,\n\t0xad2: 0x176e, 0xad3: 0x105b, 0xad4: 0x1773, 0xad5: 0x1778, 0xad6: 0x107b, 0xad7: 0x1093,\n\t0xad8: 0x0643, 0xad9: 0x109b, 0xada: 0x109f, 0xadb: 0x10a3, 0xadc: 0x177d, 0xadd: 0x1782,\n\t0xade: 0x1782, 0xadf: 0x10bb, 0xae0: 0x0647, 0xae1: 0x1787, 0xae2: 0x10cf, 0xae3: 0x10d3,\n\t0xae4: 0x064b, 0xae5: 0x178c, 0xae6: 0x10ef, 0xae7: 0x064f, 0xae8: 0x10ff, 0xae9: 0x10f7,\n\t0xaea: 0x1107, 0xaeb: 0x1796, 0xaec: 0x111f, 0xaed: 0x0653, 0xaee: 0x112b, 0xaef: 0x1133,\n\t0xaf0: 0x1143, 0xaf1: 0x0657, 0xaf2: 0x17a0, 0xaf3: 0x17a5, 0xaf4: 0x065b, 0xaf5: 0x17aa,\n\t0xaf6: 0x115b, 0xaf7: 0x17af, 0xaf8: 0x1167, 0xaf9: 0x1173, 0xafa: 0x117b, 0xafb: 0x17b4,\n\t0xafc: 0x17b9, 0xafd: 0x118f, 0xafe: 0x17be, 0xaff: 0x1197,\n\t// Block 0x2c, offset 0xb00\n\t0xb00: 0x16ce, 0xb01: 0x065f, 0xb02: 0x11af, 0xb03: 0x11b3, 0xb04: 0x0667, 0xb05: 0x11b7,\n\t0xb06: 0x0a33, 0xb07: 0x17c3, 0xb08: 0x17c8, 0xb09: 0x16d3, 0xb0a: 0x16d8, 0xb0b: 0x11d7,\n\t0xb0c: 0x11db, 0xb0d: 0x13f3, 0xb0e: 0x066b, 0xb0f: 0x1207, 0xb10: 0x1203, 0xb11: 0x120b,\n\t0xb12: 0x083f, 0xb13: 0x120f, 0xb14: 0x1213, 0xb15: 0x1217, 0xb16: 0x121f, 0xb17: 0x17cd,\n\t0xb18: 0x121b, 0xb19: 0x1223, 0xb1a: 0x1237, 0xb1b: 0x123b, 0xb1c: 0x1227, 0xb1d: 0x123f,\n\t0xb1e: 0x1253, 0xb1f: 0x1267, 0xb20: 0x1233, 0xb21: 0x1247, 0xb22: 0x124b, 0xb23: 0x124f,\n\t0xb24: 0x17d2, 0xb25: 0x17dc, 0xb26: 0x17d7, 0xb27: 0x066f, 0xb28: 0x126f, 0xb29: 0x1273,\n\t0xb2a: 0x127b, 0xb2b: 0x17f0, 0xb2c: 0x127f, 0xb2d: 0x17e1, 0xb2e: 0x0673, 0xb2f: 0x0677,\n\t0xb30: 0x17e6, 0xb31: 0x17eb, 0xb32: 0x067b, 0xb33: 0x129f, 0xb34: 0x12a3, 0xb35: 0x12a7,\n\t0xb36: 0x12ab, 0xb37: 0x12b7, 0xb38: 0x12b3, 0xb39: 0x12bf, 0xb3a: 0x12bb, 0xb3b: 0x12cb,\n\t0xb3c: 0x12c3, 0xb3d: 0x12c7, 0xb3e: 0x12cf, 0xb3f: 0x067f,\n\t// Block 0x2d, offset 0xb40\n\t0xb40: 0x12d7, 0xb41: 0x12db, 0xb42: 0x0683, 0xb43: 0x12eb, 0xb44: 0x12ef, 0xb45: 0x17f5,\n\t0xb46: 0x12fb, 0xb47: 0x12ff, 0xb48: 0x0687, 0xb49: 0x130b, 0xb4a: 0x05bb, 0xb4b: 0x17fa,\n\t0xb4c: 0x17ff, 0xb4d: 0x068b, 0xb4e: 0x068f, 0xb4f: 0x1337, 0xb50: 0x134f, 0xb51: 0x136b,\n\t0xb52: 0x137b, 0xb53: 0x1804, 0xb54: 0x138f, 0xb55: 0x1393, 0xb56: 0x13ab, 0xb57: 0x13b7,\n\t0xb58: 0x180e, 0xb59: 0x1660, 0xb5a: 0x13c3, 0xb5b: 0x13bf, 0xb5c: 0x13cb, 0xb5d: 0x1665,\n\t0xb5e: 0x13d7, 0xb5f: 0x13e3, 0xb60: 0x1813, 0xb61: 0x1818, 0xb62: 0x1423, 0xb63: 0x142f,\n\t0xb64: 0x1437, 0xb65: 0x181d, 0xb66: 0x143b, 0xb67: 0x1467, 0xb68: 0x1473, 0xb69: 0x1477,\n\t0xb6a: 0x146f, 0xb6b: 0x1483, 0xb6c: 0x1487, 0xb6d: 0x1822, 0xb6e: 0x1493, 0xb6f: 0x0693,\n\t0xb70: 0x149b, 0xb71: 0x1827, 0xb72: 0x0697, 0xb73: 0x14d3, 0xb74: 0x0ac3, 0xb75: 0x14eb,\n\t0xb76: 0x182c, 0xb77: 0x1836, 0xb78: 0x069b, 0xb79: 0x069f, 0xb7a: 0x1513, 0xb7b: 0x183b,\n\t0xb7c: 0x06a3, 0xb7d: 0x1840, 0xb7e: 0x152b, 0xb7f: 0x152b,\n\t// Block 0x2e, offset 0xb80\n\t0xb80: 0x1533, 0xb81: 0x1845, 0xb82: 0x154b, 0xb83: 0x06a7, 0xb84: 0x155b, 0xb85: 0x1567,\n\t0xb86: 0x156f, 0xb87: 0x1577, 0xb88: 0x06ab, 0xb89: 0x184a, 0xb8a: 0x158b, 0xb8b: 0x15a7,\n\t0xb8c: 0x15b3, 0xb8d: 0x06af, 0xb8e: 0x06b3, 0xb8f: 0x15b7, 0xb90: 0x184f, 0xb91: 0x06b7,\n\t0xb92: 0x1854, 0xb93: 0x1859, 0xb94: 0x185e, 0xb95: 0x15db, 0xb96: 0x06bb, 0xb97: 0x15ef,\n\t0xb98: 0x15f7, 0xb99: 0x15fb, 0xb9a: 0x1603, 0xb9b: 0x160b, 0xb9c: 0x1613, 0xb9d: 0x1868,\n}\n\n// nfcIndex: 22 blocks, 1408 entries, 1408 bytes\n// Block 0 is the zero block.\nvar nfcIndex = [1408]uint8{\n\t// Block 0x0, offset 0x0\n\t// Block 0x1, offset 0x40\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc2: 0x2d, 0xc3: 0x01, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x2e, 0xc7: 0x04,\n\t0xc8: 0x05, 0xca: 0x2f, 0xcb: 0x30, 0xcc: 0x06, 0xcd: 0x07, 0xce: 0x08, 0xcf: 0x31,\n\t0xd0: 0x09, 0xd1: 0x32, 0xd2: 0x33, 0xd3: 0x0a, 0xd6: 0x0b, 0xd7: 0x34,\n\t0xd8: 0x35, 0xd9: 0x0c, 0xdb: 0x36, 0xdc: 0x37, 0xdd: 0x38, 0xdf: 0x39,\n\t0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05,\n\t0xea: 0x06, 0xeb: 0x07, 0xec: 0x08, 0xed: 0x09, 0xef: 0x0a,\n\t0xf0: 0x13,\n\t// Block 0x4, offset 0x100\n\t0x120: 0x3a, 0x121: 0x3b, 0x123: 0x3c, 0x124: 0x3d, 0x125: 0x3e, 0x126: 0x3f, 0x127: 0x40,\n\t0x128: 0x41, 0x129: 0x42, 0x12a: 0x43, 0x12b: 0x44, 0x12c: 0x3f, 0x12d: 0x45, 0x12e: 0x46, 0x12f: 0x47,\n\t0x131: 0x48, 0x132: 0x49, 0x133: 0x4a, 0x134: 0x4b, 0x135: 0x4c, 0x137: 0x4d,\n\t0x138: 0x4e, 0x139: 0x4f, 0x13a: 0x50, 0x13b: 0x51, 0x13c: 0x52, 0x13d: 0x53, 0x13e: 0x54, 0x13f: 0x55,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x56, 0x142: 0x57, 0x144: 0x58, 0x145: 0x59, 0x146: 0x5a, 0x147: 0x5b,\n\t0x14d: 0x5c,\n\t0x15c: 0x5d, 0x15f: 0x5e,\n\t0x162: 0x5f, 0x164: 0x60,\n\t0x168: 0x61, 0x169: 0x62, 0x16a: 0x63, 0x16c: 0x0d, 0x16d: 0x64, 0x16e: 0x65, 0x16f: 0x66,\n\t0x170: 0x67, 0x173: 0x68, 0x177: 0x0e,\n\t0x178: 0x0f, 0x179: 0x10, 0x17a: 0x11, 0x17b: 0x12, 0x17c: 0x13, 0x17d: 0x14, 0x17e: 0x15, 0x17f: 0x16,\n\t// Block 0x6, offset 0x180\n\t0x180: 0x69, 0x183: 0x6a, 0x184: 0x6b, 0x186: 0x6c, 0x187: 0x6d,\n\t0x188: 0x6e, 0x189: 0x17, 0x18a: 0x18, 0x18b: 0x6f, 0x18c: 0x70,\n\t0x1ab: 0x71,\n\t0x1b3: 0x72, 0x1b5: 0x73, 0x1b7: 0x74,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x75, 0x1c1: 0x19, 0x1c2: 0x1a, 0x1c3: 0x1b, 0x1c4: 0x76, 0x1c5: 0x77,\n\t0x1c9: 0x78, 0x1cc: 0x79, 0x1cd: 0x7a,\n\t// Block 0x8, offset 0x200\n\t0x219: 0x7b, 0x21a: 0x7c, 0x21b: 0x7d,\n\t0x220: 0x7e, 0x223: 0x7f, 0x224: 0x80, 0x225: 0x81, 0x226: 0x82, 0x227: 0x83,\n\t0x22a: 0x84, 0x22b: 0x85, 0x22f: 0x86,\n\t0x230: 0x87, 0x231: 0x88, 0x232: 0x89, 0x233: 0x8a, 0x234: 0x8b, 0x235: 0x8c, 0x236: 0x8d, 0x237: 0x87,\n\t0x238: 0x88, 0x239: 0x89, 0x23a: 0x8a, 0x23b: 0x8b, 0x23c: 0x8c, 0x23d: 0x8d, 0x23e: 0x87, 0x23f: 0x88,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x89, 0x241: 0x8a, 0x242: 0x8b, 0x243: 0x8c, 0x244: 0x8d, 0x245: 0x87, 0x246: 0x88, 0x247: 0x89,\n\t0x248: 0x8a, 0x249: 0x8b, 0x24a: 0x8c, 0x24b: 0x8d, 0x24c: 0x87, 0x24d: 0x88, 0x24e: 0x89, 0x24f: 0x8a,\n\t0x250: 0x8b, 0x251: 0x8c, 0x252: 0x8d, 0x253: 0x87, 0x254: 0x88, 0x255: 0x89, 0x256: 0x8a, 0x257: 0x8b,\n\t0x258: 0x8c, 0x259: 0x8d, 0x25a: 0x87, 0x25b: 0x88, 0x25c: 0x89, 0x25d: 0x8a, 0x25e: 0x8b, 0x25f: 0x8c,\n\t0x260: 0x8d, 0x261: 0x87, 0x262: 0x88, 0x263: 0x89, 0x264: 0x8a, 0x265: 0x8b, 0x266: 0x8c, 0x267: 0x8d,\n\t0x268: 0x87, 0x269: 0x88, 0x26a: 0x89, 0x26b: 0x8a, 0x26c: 0x8b, 0x26d: 0x8c, 0x26e: 0x8d, 0x26f: 0x87,\n\t0x270: 0x88, 0x271: 0x89, 0x272: 0x8a, 0x273: 0x8b, 0x274: 0x8c, 0x275: 0x8d, 0x276: 0x87, 0x277: 0x88,\n\t0x278: 0x89, 0x279: 0x8a, 0x27a: 0x8b, 0x27b: 0x8c, 0x27c: 0x8d, 0x27d: 0x87, 0x27e: 0x88, 0x27f: 0x89,\n\t// Block 0xa, offset 0x280\n\t0x280: 0x8a, 0x281: 0x8b, 0x282: 0x8c, 0x283: 0x8d, 0x284: 0x87, 0x285: 0x88, 0x286: 0x89, 0x287: 0x8a,\n\t0x288: 0x8b, 0x289: 0x8c, 0x28a: 0x8d, 0x28b: 0x87, 0x28c: 0x88, 0x28d: 0x89, 0x28e: 0x8a, 0x28f: 0x8b,\n\t0x290: 0x8c, 0x291: 0x8d, 0x292: 0x87, 0x293: 0x88, 0x294: 0x89, 0x295: 0x8a, 0x296: 0x8b, 0x297: 0x8c,\n\t0x298: 0x8d, 0x299: 0x87, 0x29a: 0x88, 0x29b: 0x89, 0x29c: 0x8a, 0x29d: 0x8b, 0x29e: 0x8c, 0x29f: 0x8d,\n\t0x2a0: 0x87, 0x2a1: 0x88, 0x2a2: 0x89, 0x2a3: 0x8a, 0x2a4: 0x8b, 0x2a5: 0x8c, 0x2a6: 0x8d, 0x2a7: 0x87,\n\t0x2a8: 0x88, 0x2a9: 0x89, 0x2aa: 0x8a, 0x2ab: 0x8b, 0x2ac: 0x8c, 0x2ad: 0x8d, 0x2ae: 0x87, 0x2af: 0x88,\n\t0x2b0: 0x89, 0x2b1: 0x8a, 0x2b2: 0x8b, 0x2b3: 0x8c, 0x2b4: 0x8d, 0x2b5: 0x87, 0x2b6: 0x88, 0x2b7: 0x89,\n\t0x2b8: 0x8a, 0x2b9: 0x8b, 0x2ba: 0x8c, 0x2bb: 0x8d, 0x2bc: 0x87, 0x2bd: 0x88, 0x2be: 0x89, 0x2bf: 0x8a,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0x8b, 0x2c1: 0x8c, 0x2c2: 0x8d, 0x2c3: 0x87, 0x2c4: 0x88, 0x2c5: 0x89, 0x2c6: 0x8a, 0x2c7: 0x8b,\n\t0x2c8: 0x8c, 0x2c9: 0x8d, 0x2ca: 0x87, 0x2cb: 0x88, 0x2cc: 0x89, 0x2cd: 0x8a, 0x2ce: 0x8b, 0x2cf: 0x8c,\n\t0x2d0: 0x8d, 0x2d1: 0x87, 0x2d2: 0x88, 0x2d3: 0x89, 0x2d4: 0x8a, 0x2d5: 0x8b, 0x2d6: 0x8c, 0x2d7: 0x8d,\n\t0x2d8: 0x87, 0x2d9: 0x88, 0x2da: 0x89, 0x2db: 0x8a, 0x2dc: 0x8b, 0x2dd: 0x8c, 0x2de: 0x8e,\n\t// Block 0xc, offset 0x300\n\t0x324: 0x1c, 0x325: 0x1d, 0x326: 0x1e, 0x327: 0x1f,\n\t0x328: 0x20, 0x329: 0x21, 0x32a: 0x22, 0x32b: 0x23, 0x32c: 0x8f, 0x32d: 0x90, 0x32e: 0x91,\n\t0x331: 0x92, 0x332: 0x93, 0x333: 0x94, 0x334: 0x95,\n\t0x338: 0x96, 0x339: 0x97, 0x33a: 0x98, 0x33b: 0x99, 0x33e: 0x9a, 0x33f: 0x9b,\n\t// Block 0xd, offset 0x340\n\t0x347: 0x9c,\n\t0x34b: 0x9d, 0x34d: 0x9e,\n\t0x368: 0x9f, 0x36b: 0xa0,\n\t// Block 0xe, offset 0x380\n\t0x381: 0xa1, 0x382: 0xa2, 0x384: 0xa3, 0x385: 0x82, 0x387: 0xa4,\n\t0x388: 0xa5, 0x38b: 0xa6, 0x38c: 0x3f, 0x38d: 0xa7,\n\t0x391: 0xa8, 0x392: 0xa9, 0x393: 0xaa, 0x396: 0xab, 0x397: 0xac,\n\t0x398: 0x73, 0x39a: 0xad, 0x39c: 0xae,\n\t0x3a8: 0xaf, 0x3a9: 0xb0, 0x3aa: 0xb1,\n\t0x3b0: 0x73, 0x3b5: 0xb2,\n\t// Block 0xf, offset 0x3c0\n\t0x3eb: 0xb3, 0x3ec: 0xb4,\n\t// Block 0x10, offset 0x400\n\t0x432: 0xb5,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xb6, 0x446: 0xb7, 0x447: 0xb8,\n\t0x449: 0xb9,\n\t// Block 0x12, offset 0x480\n\t0x480: 0xba,\n\t0x4a3: 0xbb, 0x4a5: 0xbc,\n\t// Block 0x13, offset 0x4c0\n\t0x4c8: 0xbd,\n\t// Block 0x14, offset 0x500\n\t0x520: 0x24, 0x521: 0x25, 0x522: 0x26, 0x523: 0x27, 0x524: 0x28, 0x525: 0x29, 0x526: 0x2a, 0x527: 0x2b,\n\t0x528: 0x2c,\n\t// Block 0x15, offset 0x540\n\t0x550: 0x0b, 0x551: 0x0c, 0x556: 0x0d,\n\t0x55b: 0x0e, 0x55d: 0x0f, 0x55e: 0x10, 0x55f: 0x11,\n\t0x56f: 0x12,\n}\n\n// nfcSparseOffset: 145 entries, 290 bytes\nvar nfcSparseOffset = []uint16{0x0, 0x5, 0x9, 0xb, 0xd, 0x18, 0x28, 0x2a, 0x2f, 0x3a, 0x49, 0x56, 0x5e, 0x62, 0x67, 0x69, 0x7a, 0x82, 0x89, 0x8c, 0x93, 0x97, 0x9b, 0x9d, 0x9f, 0xa8, 0xac, 0xb3, 0xb8, 0xbb, 0xc5, 0xc8, 0xcf, 0xd7, 0xda, 0xdc, 0xde, 0xe0, 0xe5, 0xf6, 0x102, 0x104, 0x10a, 0x10c, 0x10e, 0x110, 0x112, 0x114, 0x116, 0x119, 0x11c, 0x11e, 0x121, 0x124, 0x128, 0x12d, 0x136, 0x138, 0x13b, 0x13d, 0x148, 0x14c, 0x15a, 0x15d, 0x163, 0x169, 0x174, 0x178, 0x17a, 0x17c, 0x17e, 0x180, 0x182, 0x188, 0x18c, 0x18e, 0x190, 0x198, 0x19c, 0x19f, 0x1a1, 0x1a3, 0x1a5, 0x1a8, 0x1aa, 0x1ac, 0x1ae, 0x1b0, 0x1b6, 0x1b9, 0x1bb, 0x1c2, 0x1c8, 0x1ce, 0x1d6, 0x1dc, 0x1e2, 0x1e8, 0x1ec, 0x1fa, 0x203, 0x206, 0x209, 0x20b, 0x20e, 0x210, 0x214, 0x219, 0x21b, 0x21d, 0x222, 0x228, 0x22a, 0x22c, 0x22e, 0x234, 0x237, 0x23a, 0x242, 0x249, 0x24c, 0x24f, 0x251, 0x259, 0x25c, 0x263, 0x266, 0x26c, 0x26e, 0x271, 0x273, 0x275, 0x277, 0x279, 0x27c, 0x27e, 0x280, 0x282, 0x28f, 0x299, 0x29b, 0x29d, 0x2a3, 0x2a5, 0x2a8}\n\n// nfcSparseValues: 682 entries, 2728 bytes\nvar nfcSparseValues = [682]valueRange{\n\t// Block 0x0, offset 0x0\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0xa100, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8100, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8100, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8100, lo: 0xb8, hi: 0xb8},\n\t// Block 0x1, offset 0x5\n\t{value: 0x0091, lo: 0x03},\n\t{value: 0x46e2, lo: 0xa0, hi: 0xa1},\n\t{value: 0x4714, lo: 0xaf, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb7, hi: 0xb7},\n\t// Block 0x2, offset 0x9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t// Block 0x3, offset 0xb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x98, hi: 0x9d},\n\t// Block 0x4, offset 0xd\n\t{value: 0x0006, lo: 0x0a},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x85, hi: 0x85},\n\t{value: 0xa000, lo: 0x89, hi: 0x89},\n\t{value: 0x4840, lo: 0x8a, hi: 0x8a},\n\t{value: 0x485e, lo: 0x8b, hi: 0x8b},\n\t{value: 0x36c7, lo: 0x8c, hi: 0x8c},\n\t{value: 0x36df, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4876, lo: 0x8e, hi: 0x8e},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x36fd, lo: 0x93, hi: 0x94},\n\t// Block 0x5, offset 0x18\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0xa000, lo: 0x8d, hi: 0x8d},\n\t{value: 0x37a5, lo: 0x90, hi: 0x90},\n\t{value: 0x37b1, lo: 0x91, hi: 0x91},\n\t{value: 0x379f, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x96, hi: 0x96},\n\t{value: 0x3817, lo: 0x97, hi: 0x97},\n\t{value: 0x37e1, lo: 0x9c, hi: 0x9c},\n\t{value: 0x37c9, lo: 0x9d, hi: 0x9d},\n\t{value: 0x37f3, lo: 0x9e, hi: 0x9e},\n\t{value: 0xa000, lo: 0xb4, hi: 0xb5},\n\t{value: 0x381d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x3823, lo: 0xb7, hi: 0xb7},\n\t// Block 0x6, offset 0x28\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x83, hi: 0x87},\n\t// Block 0x7, offset 0x2a\n\t{value: 0x0001, lo: 0x04},\n\t{value: 0x8113, lo: 0x81, hi: 0x82},\n\t{value: 0x8132, lo: 0x84, hi: 0x84},\n\t{value: 0x812d, lo: 0x85, hi: 0x85},\n\t{value: 0x810d, lo: 0x87, hi: 0x87},\n\t// Block 0x8, offset 0x2f\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x97},\n\t{value: 0x8119, lo: 0x98, hi: 0x98},\n\t{value: 0x811a, lo: 0x99, hi: 0x99},\n\t{value: 0x811b, lo: 0x9a, hi: 0x9a},\n\t{value: 0x3841, lo: 0xa2, hi: 0xa2},\n\t{value: 0x3847, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3853, lo: 0xa4, hi: 0xa4},\n\t{value: 0x384d, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3859, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xa7, hi: 0xa7},\n\t// Block 0x9, offset 0x3a\n\t{value: 0x0000, lo: 0x0e},\n\t{value: 0x386b, lo: 0x80, hi: 0x80},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0x385f, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x3865, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x95, hi: 0x95},\n\t{value: 0x8132, lo: 0x96, hi: 0x9c},\n\t{value: 0x8132, lo: 0x9f, hi: 0xa2},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8132, lo: 0xab, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t// Block 0xa, offset 0x49\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x811f, lo: 0x91, hi: 0x91},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x812d, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb5, hi: 0xb6},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb9},\n\t{value: 0x8132, lo: 0xba, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbc},\n\t{value: 0x8132, lo: 0xbd, hi: 0xbd},\n\t{value: 0x812d, lo: 0xbe, hi: 0xbe},\n\t{value: 0x8132, lo: 0xbf, hi: 0xbf},\n\t// Block 0xb, offset 0x56\n\t{value: 0x0005, lo: 0x07},\n\t{value: 0x8132, lo: 0x80, hi: 0x80},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x83},\n\t{value: 0x812d, lo: 0x84, hi: 0x85},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x812d, lo: 0x88, hi: 0x89},\n\t{value: 0x8132, lo: 0x8a, hi: 0x8a},\n\t// Block 0xc, offset 0x5e\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8132, lo: 0xab, hi: 0xb1},\n\t{value: 0x812d, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb3},\n\t// Block 0xd, offset 0x62\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0x96, hi: 0x99},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa7},\n\t{value: 0x8132, lo: 0xa9, hi: 0xad},\n\t// Block 0xe, offset 0x67\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x99, hi: 0x9b},\n\t// Block 0xf, offset 0x69\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x8132, lo: 0x94, hi: 0xa1},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8132, lo: 0xaa, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xaf},\n\t{value: 0x8116, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8117, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8118, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x812d, lo: 0xb9, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbf},\n\t// Block 0x10, offset 0x7a\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0xa8, hi: 0xa8},\n\t{value: 0x3ed8, lo: 0xa9, hi: 0xa9},\n\t{value: 0xa000, lo: 0xb0, hi: 0xb0},\n\t{value: 0x3ee0, lo: 0xb1, hi: 0xb1},\n\t{value: 0xa000, lo: 0xb3, hi: 0xb3},\n\t{value: 0x3ee8, lo: 0xb4, hi: 0xb4},\n\t{value: 0x9902, lo: 0xbc, hi: 0xbc},\n\t// Block 0x11, offset 0x82\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x91, hi: 0x91},\n\t{value: 0x812d, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x93, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x94},\n\t{value: 0x451c, lo: 0x98, hi: 0x9f},\n\t// Block 0x12, offset 0x89\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x13, offset 0x8c\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2c9e, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x455c, lo: 0x9c, hi: 0x9d},\n\t{value: 0x456c, lo: 0x9f, hi: 0x9f},\n\t// Block 0x14, offset 0x93\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4594, lo: 0xb3, hi: 0xb3},\n\t{value: 0x459c, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x15, offset 0x97\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4574, lo: 0x99, hi: 0x9b},\n\t{value: 0x458c, lo: 0x9e, hi: 0x9e},\n\t// Block 0x16, offset 0x9b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x17, offset 0x9d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t// Block 0x18, offset 0x9f\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2cb6, lo: 0x88, hi: 0x88},\n\t{value: 0x2cae, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cbe, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x96, hi: 0x97},\n\t{value: 0x45a4, lo: 0x9c, hi: 0x9c},\n\t{value: 0x45ac, lo: 0x9d, hi: 0x9d},\n\t// Block 0x19, offset 0xa8\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x2cc6, lo: 0x94, hi: 0x94},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1a, offset 0xac\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cce, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2cde, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cd6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1b, offset 0xb3\n\t{value: 0x1801, lo: 0x04},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x3ef0, lo: 0x88, hi: 0x88},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8120, lo: 0x95, hi: 0x96},\n\t// Block 0x1c, offset 0xb8\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0xa000, lo: 0xbf, hi: 0xbf},\n\t// Block 0x1d, offset 0xbb\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x2ce6, lo: 0x80, hi: 0x80},\n\t{value: 0x9900, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x2cee, lo: 0x87, hi: 0x87},\n\t{value: 0x2cf6, lo: 0x88, hi: 0x88},\n\t{value: 0x2f50, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2dd8, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x95, hi: 0x96},\n\t// Block 0x1e, offset 0xc5\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1f, offset 0xc8\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cfe, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2d0e, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d06, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x20, offset 0xcf\n\t{value: 0x6bea, lo: 0x07},\n\t{value: 0x9904, lo: 0x8a, hi: 0x8a},\n\t{value: 0x9900, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x3ef8, lo: 0x9a, hi: 0x9a},\n\t{value: 0x2f58, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2de3, lo: 0x9d, hi: 0x9d},\n\t{value: 0x2d16, lo: 0x9e, hi: 0x9f},\n\t// Block 0x21, offset 0xd7\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8122, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x22, offset 0xda\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8123, lo: 0x88, hi: 0x8b},\n\t// Block 0x23, offset 0xdc\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8124, lo: 0xb8, hi: 0xb9},\n\t// Block 0x24, offset 0xde\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8125, lo: 0x88, hi: 0x8b},\n\t// Block 0x25, offset 0xe0\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x812d, lo: 0x98, hi: 0x99},\n\t{value: 0x812d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb7},\n\t{value: 0x812b, lo: 0xb9, hi: 0xb9},\n\t// Block 0x26, offset 0xe5\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x2644, lo: 0x83, hi: 0x83},\n\t{value: 0x264b, lo: 0x8d, hi: 0x8d},\n\t{value: 0x2652, lo: 0x92, hi: 0x92},\n\t{value: 0x2659, lo: 0x97, hi: 0x97},\n\t{value: 0x2660, lo: 0x9c, hi: 0x9c},\n\t{value: 0x263d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8126, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8127, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a84, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8128, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a8d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x45b4, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8200, lo: 0xb7, hi: 0xb7},\n\t{value: 0x45bc, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8200, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8127, lo: 0xba, hi: 0xbd},\n\t// Block 0x27, offset 0xf6\n\t{value: 0x0000, lo: 0x0b},\n\t{value: 0x8127, lo: 0x80, hi: 0x80},\n\t{value: 0x4a96, lo: 0x81, hi: 0x81},\n\t{value: 0x8132, lo: 0x82, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0x86, hi: 0x87},\n\t{value: 0x266e, lo: 0x93, hi: 0x93},\n\t{value: 0x2675, lo: 0x9d, hi: 0x9d},\n\t{value: 0x267c, lo: 0xa2, hi: 0xa2},\n\t{value: 0x2683, lo: 0xa7, hi: 0xa7},\n\t{value: 0x268a, lo: 0xac, hi: 0xac},\n\t{value: 0x2667, lo: 0xb9, hi: 0xb9},\n\t// Block 0x28, offset 0x102\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x86, hi: 0x86},\n\t// Block 0x29, offset 0x104\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x2d1e, lo: 0xa6, hi: 0xa6},\n\t{value: 0x9900, lo: 0xae, hi: 0xae},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x2a, offset 0x10a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t// Block 0x2b, offset 0x10c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x80, hi: 0x92},\n\t// Block 0x2c, offset 0x10e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xb900, lo: 0xa1, hi: 0xb5},\n\t// Block 0x2d, offset 0x110\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xa8, hi: 0xbf},\n\t// Block 0x2e, offset 0x112\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0x80, hi: 0x82},\n\t// Block 0x2f, offset 0x114\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9f},\n\t// Block 0x30, offset 0x116\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x94, hi: 0x94},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x31, offset 0x119\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9d},\n\t// Block 0x32, offset 0x11c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8131, lo: 0xa9, hi: 0xa9},\n\t// Block 0x33, offset 0x11e\n\t{value: 0x0004, lo: 0x02},\n\t{value: 0x812e, lo: 0xb9, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbb},\n\t// Block 0x34, offset 0x121\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x97, hi: 0x97},\n\t{value: 0x812d, lo: 0x98, hi: 0x98},\n\t// Block 0x35, offset 0x124\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8132, lo: 0xb5, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x36, offset 0x128\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t{value: 0x812d, lo: 0xb5, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x37, offset 0x12d\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0x2d66, lo: 0x80, hi: 0x80},\n\t{value: 0x2d6e, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x82, hi: 0x82},\n\t{value: 0x2d76, lo: 0x83, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xab, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xac},\n\t{value: 0x8132, lo: 0xad, hi: 0xb3},\n\t// Block 0x38, offset 0x136\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xaa, hi: 0xab},\n\t// Block 0x39, offset 0x138\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8104, lo: 0xb2, hi: 0xb3},\n\t// Block 0x3a, offset 0x13b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x3b, offset 0x13d\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x92},\n\t{value: 0x8101, lo: 0x94, hi: 0x94},\n\t{value: 0x812d, lo: 0x95, hi: 0x99},\n\t{value: 0x8132, lo: 0x9a, hi: 0x9b},\n\t{value: 0x812d, lo: 0x9c, hi: 0x9f},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8101, lo: 0xa2, hi: 0xa8},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t{value: 0x8132, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb9},\n\t// Block 0x3c, offset 0x148\n\t{value: 0x0004, lo: 0x03},\n\t{value: 0x0433, lo: 0x80, hi: 0x81},\n\t{value: 0x8100, lo: 0x97, hi: 0x97},\n\t{value: 0x8100, lo: 0xbe, hi: 0xbe},\n\t// Block 0x3d, offset 0x14c\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x8132, lo: 0x90, hi: 0x91},\n\t{value: 0x8101, lo: 0x92, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x97},\n\t{value: 0x8101, lo: 0x98, hi: 0x9a},\n\t{value: 0x8132, lo: 0x9b, hi: 0x9c},\n\t{value: 0x8132, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8101, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa7},\n\t{value: 0x812d, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8132, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8101, lo: 0xaa, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t// Block 0x3e, offset 0x15a\n\t{value: 0x427b, lo: 0x02},\n\t{value: 0x01b8, lo: 0xa6, hi: 0xa6},\n\t{value: 0x0057, lo: 0xaa, hi: 0xab},\n\t// Block 0x3f, offset 0x15d\n\t{value: 0x0007, lo: 0x05},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t{value: 0x3bb9, lo: 0x9a, hi: 0x9b},\n\t{value: 0x3bc7, lo: 0xae, hi: 0xae},\n\t// Block 0x40, offset 0x163\n\t{value: 0x000e, lo: 0x05},\n\t{value: 0x3bce, lo: 0x8d, hi: 0x8e},\n\t{value: 0x3bd5, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t// Block 0x41, offset 0x169\n\t{value: 0x6408, lo: 0x0a},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0x3be3, lo: 0x84, hi: 0x84},\n\t{value: 0xa000, lo: 0x88, hi: 0x88},\n\t{value: 0x3bea, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0x3bf1, lo: 0x8c, hi: 0x8c},\n\t{value: 0xa000, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3bf8, lo: 0xa4, hi: 0xa5},\n\t{value: 0x3bff, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xbc, hi: 0xbc},\n\t// Block 0x42, offset 0x174\n\t{value: 0x0007, lo: 0x03},\n\t{value: 0x3c68, lo: 0xa0, hi: 0xa1},\n\t{value: 0x3c92, lo: 0xa2, hi: 0xa3},\n\t{value: 0x3cbc, lo: 0xaa, hi: 0xad},\n\t// Block 0x43, offset 0x178\n\t{value: 0x0004, lo: 0x01},\n\t{value: 0x048b, lo: 0xa9, hi: 0xaa},\n\t// Block 0x44, offset 0x17a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x44dd, lo: 0x9c, hi: 0x9c},\n\t// Block 0x45, offset 0x17c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xaf, hi: 0xb1},\n\t// Block 0x46, offset 0x17e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x47, offset 0x180\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa0, hi: 0xbf},\n\t// Block 0x48, offset 0x182\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x812c, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8131, lo: 0xab, hi: 0xab},\n\t{value: 0x8133, lo: 0xac, hi: 0xac},\n\t{value: 0x812e, lo: 0xad, hi: 0xad},\n\t{value: 0x812f, lo: 0xae, hi: 0xaf},\n\t// Block 0x49, offset 0x188\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4a9f, lo: 0xb3, hi: 0xb3},\n\t{value: 0x4a9f, lo: 0xb5, hi: 0xb6},\n\t{value: 0x4a9f, lo: 0xba, hi: 0xbf},\n\t// Block 0x4a, offset 0x18c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x4a9f, lo: 0x8f, hi: 0xa3},\n\t// Block 0x4b, offset 0x18e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xae, hi: 0xbe},\n\t// Block 0x4c, offset 0x190\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0x8100, lo: 0x84, hi: 0x84},\n\t{value: 0x8100, lo: 0x87, hi: 0x87},\n\t{value: 0x8100, lo: 0x90, hi: 0x90},\n\t{value: 0x8100, lo: 0x9e, hi: 0x9e},\n\t{value: 0x8100, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8100, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8100, lo: 0xbb, hi: 0xbb},\n\t// Block 0x4d, offset 0x198\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8100, lo: 0x80, hi: 0x80},\n\t{value: 0x8100, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8100, lo: 0x8e, hi: 0x8e},\n\t// Block 0x4e, offset 0x19c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb4, hi: 0xbd},\n\t// Block 0x4f, offset 0x19f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9f},\n\t// Block 0x50, offset 0x1a1\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb1},\n\t// Block 0x51, offset 0x1a3\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t// Block 0x52, offset 0x1a5\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xa0, hi: 0xb1},\n\t// Block 0x53, offset 0x1a8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xab, hi: 0xad},\n\t// Block 0x54, offset 0x1aa\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x93, hi: 0x93},\n\t// Block 0x55, offset 0x1ac\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb3, hi: 0xb3},\n\t// Block 0x56, offset 0x1ae\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t// Block 0x57, offset 0x1b0\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbf},\n\t// Block 0x58, offset 0x1b6\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t// Block 0x59, offset 0x1b9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xad, hi: 0xad},\n\t// Block 0x5a, offset 0x1bb\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xe500, lo: 0x80, hi: 0x80},\n\t{value: 0xc600, lo: 0x81, hi: 0x9b},\n\t{value: 0xe500, lo: 0x9c, hi: 0x9c},\n\t{value: 0xc600, lo: 0x9d, hi: 0xb7},\n\t{value: 0xe500, lo: 0xb8, hi: 0xb8},\n\t{value: 0xc600, lo: 0xb9, hi: 0xbf},\n\t// Block 0x5b, offset 0x1c2\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x93},\n\t{value: 0xe500, lo: 0x94, hi: 0x94},\n\t{value: 0xc600, lo: 0x95, hi: 0xaf},\n\t{value: 0xe500, lo: 0xb0, hi: 0xb0},\n\t{value: 0xc600, lo: 0xb1, hi: 0xbf},\n\t// Block 0x5c, offset 0x1c8\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8b},\n\t{value: 0xe500, lo: 0x8c, hi: 0x8c},\n\t{value: 0xc600, lo: 0x8d, hi: 0xa7},\n\t{value: 0xe500, lo: 0xa8, hi: 0xa8},\n\t{value: 0xc600, lo: 0xa9, hi: 0xbf},\n\t// Block 0x5d, offset 0x1ce\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xc600, lo: 0x80, hi: 0x83},\n\t{value: 0xe500, lo: 0x84, hi: 0x84},\n\t{value: 0xc600, lo: 0x85, hi: 0x9f},\n\t{value: 0xe500, lo: 0xa0, hi: 0xa0},\n\t{value: 0xc600, lo: 0xa1, hi: 0xbb},\n\t{value: 0xe500, lo: 0xbc, hi: 0xbc},\n\t{value: 0xc600, lo: 0xbd, hi: 0xbf},\n\t// Block 0x5e, offset 0x1d6\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x97},\n\t{value: 0xe500, lo: 0x98, hi: 0x98},\n\t{value: 0xc600, lo: 0x99, hi: 0xb3},\n\t{value: 0xe500, lo: 0xb4, hi: 0xb4},\n\t{value: 0xc600, lo: 0xb5, hi: 0xbf},\n\t// Block 0x5f, offset 0x1dc\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8f},\n\t{value: 0xe500, lo: 0x90, hi: 0x90},\n\t{value: 0xc600, lo: 0x91, hi: 0xab},\n\t{value: 0xe500, lo: 0xac, hi: 0xac},\n\t{value: 0xc600, lo: 0xad, hi: 0xbf},\n\t// Block 0x60, offset 0x1e2\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t{value: 0xe500, lo: 0xa4, hi: 0xa4},\n\t{value: 0xc600, lo: 0xa5, hi: 0xbf},\n\t// Block 0x61, offset 0x1e8\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t// Block 0x62, offset 0x1ec\n\t{value: 0x0006, lo: 0x0d},\n\t{value: 0x4390, lo: 0x9d, hi: 0x9d},\n\t{value: 0x8115, lo: 0x9e, hi: 0x9e},\n\t{value: 0x4402, lo: 0x9f, hi: 0x9f},\n\t{value: 0x43f0, lo: 0xaa, hi: 0xab},\n\t{value: 0x44f4, lo: 0xac, hi: 0xac},\n\t{value: 0x44fc, lo: 0xad, hi: 0xad},\n\t{value: 0x4348, lo: 0xae, hi: 0xb1},\n\t{value: 0x4366, lo: 0xb2, hi: 0xb4},\n\t{value: 0x437e, lo: 0xb5, hi: 0xb6},\n\t{value: 0x438a, lo: 0xb8, hi: 0xb8},\n\t{value: 0x4396, lo: 0xb9, hi: 0xbb},\n\t{value: 0x43ae, lo: 0xbc, hi: 0xbc},\n\t{value: 0x43b4, lo: 0xbe, hi: 0xbe},\n\t// Block 0x63, offset 0x1fa\n\t{value: 0x0006, lo: 0x08},\n\t{value: 0x43ba, lo: 0x80, hi: 0x81},\n\t{value: 0x43c6, lo: 0x83, hi: 0x84},\n\t{value: 0x43d8, lo: 0x86, hi: 0x89},\n\t{value: 0x43fc, lo: 0x8a, hi: 0x8a},\n\t{value: 0x4378, lo: 0x8b, hi: 0x8b},\n\t{value: 0x4360, lo: 0x8c, hi: 0x8c},\n\t{value: 0x43a8, lo: 0x8d, hi: 0x8d},\n\t{value: 0x43d2, lo: 0x8e, hi: 0x8e},\n\t// Block 0x64, offset 0x203\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0xa4, hi: 0xa5},\n\t{value: 0x8100, lo: 0xb0, hi: 0xb1},\n\t// Block 0x65, offset 0x206\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0x9b, hi: 0x9d},\n\t{value: 0x8200, lo: 0x9e, hi: 0xa3},\n\t// Block 0x66, offset 0x209\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x90, hi: 0x90},\n\t// Block 0x67, offset 0x20b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0x99, hi: 0x99},\n\t{value: 0x8200, lo: 0xb2, hi: 0xb4},\n\t// Block 0x68, offset 0x20e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xbc, hi: 0xbd},\n\t// Block 0x69, offset 0x210\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa6},\n\t{value: 0x812d, lo: 0xa7, hi: 0xad},\n\t{value: 0x8132, lo: 0xae, hi: 0xaf},\n\t// Block 0x6a, offset 0x214\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8100, lo: 0x89, hi: 0x8c},\n\t{value: 0x8100, lo: 0xb0, hi: 0xb2},\n\t{value: 0x8100, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8100, lo: 0xb6, hi: 0xbf},\n\t// Block 0x6b, offset 0x219\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x81, hi: 0x8c},\n\t// Block 0x6c, offset 0x21b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xb5, hi: 0xba},\n\t// Block 0x6d, offset 0x21d\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x4a9f, lo: 0x9e, hi: 0x9f},\n\t{value: 0x4a9f, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4a9f, lo: 0xa5, hi: 0xa6},\n\t{value: 0x4a9f, lo: 0xaa, hi: 0xaf},\n\t// Block 0x6e, offset 0x222\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x4a9f, lo: 0x82, hi: 0x87},\n\t{value: 0x4a9f, lo: 0x8a, hi: 0x8f},\n\t{value: 0x4a9f, lo: 0x92, hi: 0x97},\n\t{value: 0x4a9f, lo: 0x9a, hi: 0x9c},\n\t{value: 0x8100, lo: 0xa3, hi: 0xa3},\n\t// Block 0x6f, offset 0x228\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x70, offset 0x22a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xa0, hi: 0xa0},\n\t// Block 0x71, offset 0x22c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb6, hi: 0xba},\n\t// Block 0x72, offset 0x22e\n\t{value: 0x002c, lo: 0x05},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8101, lo: 0xb9, hi: 0xba},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x73, offset 0x234\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t// Block 0x74, offset 0x237\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x75, offset 0x23a\n\t{value: 0x17fe, lo: 0x07},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x4238, lo: 0x9a, hi: 0x9a},\n\t{value: 0xa000, lo: 0x9b, hi: 0x9b},\n\t{value: 0x4242, lo: 0x9c, hi: 0x9c},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x424c, lo: 0xab, hi: 0xab},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x76, offset 0x242\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0x8132, lo: 0x80, hi: 0x82},\n\t{value: 0x9900, lo: 0xa7, hi: 0xa7},\n\t{value: 0x2d7e, lo: 0xae, hi: 0xae},\n\t{value: 0x2d88, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb1, hi: 0xb2},\n\t{value: 0x8104, lo: 0xb3, hi: 0xb4},\n\t// Block 0x77, offset 0x249\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x78, offset 0x24c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb5, hi: 0xb5},\n\t{value: 0x8102, lo: 0xb6, hi: 0xb6},\n\t// Block 0x79, offset 0x24f\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x8102, lo: 0xa9, hi: 0xaa},\n\t// Block 0x7a, offset 0x251\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2d92, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d9c, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x8132, lo: 0xa6, hi: 0xac},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t// Block 0x7b, offset 0x259\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x86, hi: 0x86},\n\t// Block 0x7c, offset 0x25c\n\t{value: 0x6b5a, lo: 0x06},\n\t{value: 0x9900, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb9, hi: 0xb9},\n\t{value: 0x9900, lo: 0xba, hi: 0xba},\n\t{value: 0x2db0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x2da6, lo: 0xbc, hi: 0xbd},\n\t{value: 0x2dba, lo: 0xbe, hi: 0xbe},\n\t// Block 0x7d, offset 0x263\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x83, hi: 0x83},\n\t// Block 0x7e, offset 0x266\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x9900, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb8, hi: 0xb9},\n\t{value: 0x2dc4, lo: 0xba, hi: 0xba},\n\t{value: 0x2dce, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x7f, offset 0x26c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0x80, hi: 0x80},\n\t// Block 0x80, offset 0x26e\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x81, offset 0x271\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xab, hi: 0xab},\n\t// Block 0x82, offset 0x273\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x83, offset 0x275\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x87, hi: 0x87},\n\t// Block 0x84, offset 0x277\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x99, hi: 0x99},\n\t// Block 0x85, offset 0x279\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0x82, hi: 0x82},\n\t{value: 0x8104, lo: 0x84, hi: 0x85},\n\t// Block 0x86, offset 0x27c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0xb0, hi: 0xb4},\n\t// Block 0x87, offset 0x27e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb6},\n\t// Block 0x88, offset 0x280\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0x9e, hi: 0x9e},\n\t// Block 0x89, offset 0x282\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x45cc, lo: 0x9e, hi: 0x9e},\n\t{value: 0x45d6, lo: 0x9f, hi: 0x9f},\n\t{value: 0x460a, lo: 0xa0, hi: 0xa0},\n\t{value: 0x4618, lo: 0xa1, hi: 0xa1},\n\t{value: 0x4626, lo: 0xa2, hi: 0xa2},\n\t{value: 0x4634, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4642, lo: 0xa4, hi: 0xa4},\n\t{value: 0x812b, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8101, lo: 0xa7, hi: 0xa9},\n\t{value: 0x8130, lo: 0xad, hi: 0xad},\n\t{value: 0x812b, lo: 0xae, hi: 0xb2},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbf},\n\t// Block 0x8a, offset 0x28f\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x812d, lo: 0x80, hi: 0x82},\n\t{value: 0x8132, lo: 0x85, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8b},\n\t{value: 0x8132, lo: 0xaa, hi: 0xad},\n\t{value: 0x45e0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x45ea, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4650, lo: 0xbd, hi: 0xbd},\n\t{value: 0x466c, lo: 0xbe, hi: 0xbe},\n\t{value: 0x465e, lo: 0xbf, hi: 0xbf},\n\t// Block 0x8b, offset 0x299\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x467a, lo: 0x80, hi: 0x80},\n\t// Block 0x8c, offset 0x29b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x82, hi: 0x84},\n\t// Block 0x8d, offset 0x29d\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0x80, hi: 0x86},\n\t{value: 0x8132, lo: 0x88, hi: 0x98},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa1},\n\t{value: 0x8132, lo: 0xa3, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa6, hi: 0xaa},\n\t// Block 0x8e, offset 0x2a3\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x90, hi: 0x96},\n\t// Block 0x8f, offset 0x2a5\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x84, hi: 0x89},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x90, offset 0x2a8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x93, hi: 0x93},\n}\n\n// lookup returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfkcTrie) lookup(s []byte) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfkcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfkcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfkcTrie) lookupUnsafe(s []byte) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfkcValues[c0]\n\t}\n\ti := nfkcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// lookupString returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfkcTrie) lookupString(s string) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfkcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfkcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfkcTrie) lookupStringUnsafe(s string) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfkcValues[c0]\n\t}\n\ti := nfkcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// nfkcTrie. Total size: 17104 bytes (16.70 KiB). Checksum: d985061cf5307b35.\ntype nfkcTrie struct{}\n\nfunc newNfkcTrie(i int) *nfkcTrie {\n\treturn &nfkcTrie{}\n}\n\n// lookupValue determines the type of block n and looks up the value for b.\nfunc (t *nfkcTrie) lookupValue(n uint32, b byte) uint16 {\n\tswitch {\n\tcase n < 91:\n\t\treturn uint16(nfkcValues[n<<6+uint32(b)])\n\tdefault:\n\t\tn -= 91\n\t\treturn uint16(nfkcSparse.lookup(n, b))\n\t}\n}\n\n// nfkcValues: 93 blocks, 5952 entries, 11904 bytes\n// The third block is the zero block.\nvar nfkcValues = [5952]uint16{\n\t// Block 0x0, offset 0x0\n\t0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,\n\t// Block 0x1, offset 0x40\n\t0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,\n\t0x46: 0xa000, 0x47: 0xa000, 0x48: 0xa000, 0x49: 0xa000, 0x4a: 0xa000, 0x4b: 0xa000,\n\t0x4c: 0xa000, 0x4d: 0xa000, 0x4e: 0xa000, 0x4f: 0xa000, 0x50: 0xa000,\n\t0x52: 0xa000, 0x53: 0xa000, 0x54: 0xa000, 0x55: 0xa000, 0x56: 0xa000, 0x57: 0xa000,\n\t0x58: 0xa000, 0x59: 0xa000, 0x5a: 0xa000,\n\t0x61: 0xa000, 0x62: 0xa000, 0x63: 0xa000,\n\t0x64: 0xa000, 0x65: 0xa000, 0x66: 0xa000, 0x67: 0xa000, 0x68: 0xa000, 0x69: 0xa000,\n\t0x6a: 0xa000, 0x6b: 0xa000, 0x6c: 0xa000, 0x6d: 0xa000, 0x6e: 0xa000, 0x6f: 0xa000,\n\t0x70: 0xa000, 0x72: 0xa000, 0x73: 0xa000, 0x74: 0xa000, 0x75: 0xa000,\n\t0x76: 0xa000, 0x77: 0xa000, 0x78: 0xa000, 0x79: 0xa000, 0x7a: 0xa000,\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc0: 0x2f6f, 0xc1: 0x2f74, 0xc2: 0x4688, 0xc3: 0x2f79, 0xc4: 0x4697, 0xc5: 0x469c,\n\t0xc6: 0xa000, 0xc7: 0x46a6, 0xc8: 0x2fe2, 0xc9: 0x2fe7, 0xca: 0x46ab, 0xcb: 0x2ffb,\n\t0xcc: 0x306e, 0xcd: 0x3073, 0xce: 0x3078, 0xcf: 0x46bf, 0xd1: 0x3104,\n\t0xd2: 0x3127, 0xd3: 0x312c, 0xd4: 0x46c9, 0xd5: 0x46ce, 0xd6: 0x46dd,\n\t0xd8: 0xa000, 0xd9: 0x31b3, 0xda: 0x31b8, 0xdb: 0x31bd, 0xdc: 0x470f, 0xdd: 0x3235,\n\t0xe0: 0x327b, 0xe1: 0x3280, 0xe2: 0x4719, 0xe3: 0x3285,\n\t0xe4: 0x4728, 0xe5: 0x472d, 0xe6: 0xa000, 0xe7: 0x4737, 0xe8: 0x32ee, 0xe9: 0x32f3,\n\t0xea: 0x473c, 0xeb: 0x3307, 0xec: 0x337f, 0xed: 0x3384, 0xee: 0x3389, 0xef: 0x4750,\n\t0xf1: 0x3415, 0xf2: 0x3438, 0xf3: 0x343d, 0xf4: 0x475a, 0xf5: 0x475f,\n\t0xf6: 0x476e, 0xf8: 0xa000, 0xf9: 0x34c9, 0xfa: 0x34ce, 0xfb: 0x34d3,\n\t0xfc: 0x47a0, 0xfd: 0x3550, 0xff: 0x3569,\n\t// Block 0x4, offset 0x100\n\t0x100: 0x2f7e, 0x101: 0x328a, 0x102: 0x468d, 0x103: 0x471e, 0x104: 0x2f9c, 0x105: 0x32a8,\n\t0x106: 0x2fb0, 0x107: 0x32bc, 0x108: 0x2fb5, 0x109: 0x32c1, 0x10a: 0x2fba, 0x10b: 0x32c6,\n\t0x10c: 0x2fbf, 0x10d: 0x32cb, 0x10e: 0x2fc9, 0x10f: 0x32d5,\n\t0x112: 0x46b0, 0x113: 0x4741, 0x114: 0x2ff1, 0x115: 0x32fd, 0x116: 0x2ff6, 0x117: 0x3302,\n\t0x118: 0x3014, 0x119: 0x3320, 0x11a: 0x3005, 0x11b: 0x3311, 0x11c: 0x302d, 0x11d: 0x3339,\n\t0x11e: 0x3037, 0x11f: 0x3343, 0x120: 0x303c, 0x121: 0x3348, 0x122: 0x3046, 0x123: 0x3352,\n\t0x124: 0x304b, 0x125: 0x3357, 0x128: 0x307d, 0x129: 0x338e,\n\t0x12a: 0x3082, 0x12b: 0x3393, 0x12c: 0x3087, 0x12d: 0x3398, 0x12e: 0x30aa, 0x12f: 0x33b6,\n\t0x130: 0x308c, 0x132: 0x195d, 0x133: 0x19e7, 0x134: 0x30b4, 0x135: 0x33c0,\n\t0x136: 0x30c8, 0x137: 0x33d9, 0x139: 0x30d2, 0x13a: 0x33e3, 0x13b: 0x30dc,\n\t0x13c: 0x33ed, 0x13d: 0x30d7, 0x13e: 0x33e8, 0x13f: 0x1bac,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x1c34, 0x143: 0x30ff, 0x144: 0x3410, 0x145: 0x3118,\n\t0x146: 0x3429, 0x147: 0x310e, 0x148: 0x341f, 0x149: 0x1c5c,\n\t0x14c: 0x46d3, 0x14d: 0x4764, 0x14e: 0x3131, 0x14f: 0x3442, 0x150: 0x313b, 0x151: 0x344c,\n\t0x154: 0x3159, 0x155: 0x346a, 0x156: 0x3172, 0x157: 0x3483,\n\t0x158: 0x3163, 0x159: 0x3474, 0x15a: 0x46f6, 0x15b: 0x4787, 0x15c: 0x317c, 0x15d: 0x348d,\n\t0x15e: 0x318b, 0x15f: 0x349c, 0x160: 0x46fb, 0x161: 0x478c, 0x162: 0x31a4, 0x163: 0x34ba,\n\t0x164: 0x3195, 0x165: 0x34ab, 0x168: 0x4705, 0x169: 0x4796,\n\t0x16a: 0x470a, 0x16b: 0x479b, 0x16c: 0x31c2, 0x16d: 0x34d8, 0x16e: 0x31cc, 0x16f: 0x34e2,\n\t0x170: 0x31d1, 0x171: 0x34e7, 0x172: 0x31ef, 0x173: 0x3505, 0x174: 0x3212, 0x175: 0x3528,\n\t0x176: 0x323a, 0x177: 0x3555, 0x178: 0x324e, 0x179: 0x325d, 0x17a: 0x357d, 0x17b: 0x3267,\n\t0x17c: 0x3587, 0x17d: 0x326c, 0x17e: 0x358c, 0x17f: 0x00a7,\n\t// Block 0x6, offset 0x180\n\t0x184: 0x2dee, 0x185: 0x2df4,\n\t0x186: 0x2dfa, 0x187: 0x1972, 0x188: 0x1975, 0x189: 0x1a08, 0x18a: 0x1987, 0x18b: 0x198a,\n\t0x18c: 0x1a3e, 0x18d: 0x2f88, 0x18e: 0x3294, 0x18f: 0x3096, 0x190: 0x33a2, 0x191: 0x3140,\n\t0x192: 0x3451, 0x193: 0x31d6, 0x194: 0x34ec, 0x195: 0x39cf, 0x196: 0x3b5e, 0x197: 0x39c8,\n\t0x198: 0x3b57, 0x199: 0x39d6, 0x19a: 0x3b65, 0x19b: 0x39c1, 0x19c: 0x3b50,\n\t0x19e: 0x38b0, 0x19f: 0x3a3f, 0x1a0: 0x38a9, 0x1a1: 0x3a38, 0x1a2: 0x35b3, 0x1a3: 0x35c5,\n\t0x1a6: 0x3041, 0x1a7: 0x334d, 0x1a8: 0x30be, 0x1a9: 0x33cf,\n\t0x1aa: 0x46ec, 0x1ab: 0x477d, 0x1ac: 0x3990, 0x1ad: 0x3b1f, 0x1ae: 0x35d7, 0x1af: 0x35dd,\n\t0x1b0: 0x33c5, 0x1b1: 0x1942, 0x1b2: 0x1945, 0x1b3: 0x19cf, 0x1b4: 0x3028, 0x1b5: 0x3334,\n\t0x1b8: 0x30fa, 0x1b9: 0x340b, 0x1ba: 0x38b7, 0x1bb: 0x3a46,\n\t0x1bc: 0x35ad, 0x1bd: 0x35bf, 0x1be: 0x35b9, 0x1bf: 0x35cb,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x2f8d, 0x1c1: 0x3299, 0x1c2: 0x2f92, 0x1c3: 0x329e, 0x1c4: 0x300a, 0x1c5: 0x3316,\n\t0x1c6: 0x300f, 0x1c7: 0x331b, 0x1c8: 0x309b, 0x1c9: 0x33a7, 0x1ca: 0x30a0, 0x1cb: 0x33ac,\n\t0x1cc: 0x3145, 0x1cd: 0x3456, 0x1ce: 0x314a, 0x1cf: 0x345b, 0x1d0: 0x3168, 0x1d1: 0x3479,\n\t0x1d2: 0x316d, 0x1d3: 0x347e, 0x1d4: 0x31db, 0x1d5: 0x34f1, 0x1d6: 0x31e0, 0x1d7: 0x34f6,\n\t0x1d8: 0x3186, 0x1d9: 0x3497, 0x1da: 0x319f, 0x1db: 0x34b5,\n\t0x1de: 0x305a, 0x1df: 0x3366,\n\t0x1e6: 0x4692, 0x1e7: 0x4723, 0x1e8: 0x46ba, 0x1e9: 0x474b,\n\t0x1ea: 0x395f, 0x1eb: 0x3aee, 0x1ec: 0x393c, 0x1ed: 0x3acb, 0x1ee: 0x46d8, 0x1ef: 0x4769,\n\t0x1f0: 0x3958, 0x1f1: 0x3ae7, 0x1f2: 0x3244, 0x1f3: 0x355f,\n\t// Block 0x8, offset 0x200\n\t0x200: 0x9932, 0x201: 0x9932, 0x202: 0x9932, 0x203: 0x9932, 0x204: 0x9932, 0x205: 0x8132,\n\t0x206: 0x9932, 0x207: 0x9932, 0x208: 0x9932, 0x209: 0x9932, 0x20a: 0x9932, 0x20b: 0x9932,\n\t0x20c: 0x9932, 0x20d: 0x8132, 0x20e: 0x8132, 0x20f: 0x9932, 0x210: 0x8132, 0x211: 0x9932,\n\t0x212: 0x8132, 0x213: 0x9932, 0x214: 0x9932, 0x215: 0x8133, 0x216: 0x812d, 0x217: 0x812d,\n\t0x218: 0x812d, 0x219: 0x812d, 0x21a: 0x8133, 0x21b: 0x992b, 0x21c: 0x812d, 0x21d: 0x812d,\n\t0x21e: 0x812d, 0x21f: 0x812d, 0x220: 0x812d, 0x221: 0x8129, 0x222: 0x8129, 0x223: 0x992d,\n\t0x224: 0x992d, 0x225: 0x992d, 0x226: 0x992d, 0x227: 0x9929, 0x228: 0x9929, 0x229: 0x812d,\n\t0x22a: 0x812d, 0x22b: 0x812d, 0x22c: 0x812d, 0x22d: 0x992d, 0x22e: 0x992d, 0x22f: 0x812d,\n\t0x230: 0x992d, 0x231: 0x992d, 0x232: 0x812d, 0x233: 0x812d, 0x234: 0x8101, 0x235: 0x8101,\n\t0x236: 0x8101, 0x237: 0x8101, 0x238: 0x9901, 0x239: 0x812d, 0x23a: 0x812d, 0x23b: 0x812d,\n\t0x23c: 0x812d, 0x23d: 0x8132, 0x23e: 0x8132, 0x23f: 0x8132,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x49ae, 0x241: 0x49b3, 0x242: 0x9932, 0x243: 0x49b8, 0x244: 0x4a71, 0x245: 0x9936,\n\t0x246: 0x8132, 0x247: 0x812d, 0x248: 0x812d, 0x249: 0x812d, 0x24a: 0x8132, 0x24b: 0x8132,\n\t0x24c: 0x8132, 0x24d: 0x812d, 0x24e: 0x812d, 0x250: 0x8132, 0x251: 0x8132,\n\t0x252: 0x8132, 0x253: 0x812d, 0x254: 0x812d, 0x255: 0x812d, 0x256: 0x812d, 0x257: 0x8132,\n\t0x258: 0x8133, 0x259: 0x812d, 0x25a: 0x812d, 0x25b: 0x8132, 0x25c: 0x8134, 0x25d: 0x8135,\n\t0x25e: 0x8135, 0x25f: 0x8134, 0x260: 0x8135, 0x261: 0x8135, 0x262: 0x8134, 0x263: 0x8132,\n\t0x264: 0x8132, 0x265: 0x8132, 0x266: 0x8132, 0x267: 0x8132, 0x268: 0x8132, 0x269: 0x8132,\n\t0x26a: 0x8132, 0x26b: 0x8132, 0x26c: 0x8132, 0x26d: 0x8132, 0x26e: 0x8132, 0x26f: 0x8132,\n\t0x274: 0x0170,\n\t0x27a: 0x42a5,\n\t0x27e: 0x0037,\n\t// Block 0xa, offset 0x280\n\t0x284: 0x425a, 0x285: 0x447b,\n\t0x286: 0x35e9, 0x287: 0x00ce, 0x288: 0x3607, 0x289: 0x3613, 0x28a: 0x3625,\n\t0x28c: 0x3643, 0x28e: 0x3655, 0x28f: 0x3673, 0x290: 0x3e08, 0x291: 0xa000,\n\t0x295: 0xa000, 0x297: 0xa000,\n\t0x299: 0xa000,\n\t0x29f: 0xa000, 0x2a1: 0xa000,\n\t0x2a5: 0xa000, 0x2a9: 0xa000,\n\t0x2aa: 0x3637, 0x2ab: 0x3667, 0x2ac: 0x47fe, 0x2ad: 0x3697, 0x2ae: 0x4828, 0x2af: 0x36a9,\n\t0x2b0: 0x3e70, 0x2b1: 0xa000, 0x2b5: 0xa000,\n\t0x2b7: 0xa000, 0x2b9: 0xa000,\n\t0x2bf: 0xa000,\n\t// Block 0xb, offset 0x2c0\n\t0x2c1: 0xa000, 0x2c5: 0xa000,\n\t0x2c9: 0xa000, 0x2ca: 0x4840, 0x2cb: 0x485e,\n\t0x2cc: 0x36c7, 0x2cd: 0x36df, 0x2ce: 0x4876, 0x2d0: 0x01be, 0x2d1: 0x01d0,\n\t0x2d2: 0x01ac, 0x2d3: 0x430c, 0x2d4: 0x4312, 0x2d5: 0x01fa, 0x2d6: 0x01e8,\n\t0x2f0: 0x01d6, 0x2f1: 0x01eb, 0x2f2: 0x01ee, 0x2f4: 0x0188, 0x2f5: 0x01c7,\n\t0x2f9: 0x01a6,\n\t// Block 0xc, offset 0x300\n\t0x300: 0x3721, 0x301: 0x372d, 0x303: 0x371b,\n\t0x306: 0xa000, 0x307: 0x3709,\n\t0x30c: 0x375d, 0x30d: 0x3745, 0x30e: 0x376f, 0x310: 0xa000,\n\t0x313: 0xa000, 0x315: 0xa000, 0x316: 0xa000, 0x317: 0xa000,\n\t0x318: 0xa000, 0x319: 0x3751, 0x31a: 0xa000,\n\t0x31e: 0xa000, 0x323: 0xa000,\n\t0x327: 0xa000,\n\t0x32b: 0xa000, 0x32d: 0xa000,\n\t0x330: 0xa000, 0x333: 0xa000, 0x335: 0xa000,\n\t0x336: 0xa000, 0x337: 0xa000, 0x338: 0xa000, 0x339: 0x37d5, 0x33a: 0xa000,\n\t0x33e: 0xa000,\n\t// Block 0xd, offset 0x340\n\t0x341: 0x3733, 0x342: 0x37b7,\n\t0x350: 0x370f, 0x351: 0x3793,\n\t0x352: 0x3715, 0x353: 0x3799, 0x356: 0x3727, 0x357: 0x37ab,\n\t0x358: 0xa000, 0x359: 0xa000, 0x35a: 0x3829, 0x35b: 0x382f, 0x35c: 0x3739, 0x35d: 0x37bd,\n\t0x35e: 0x373f, 0x35f: 0x37c3, 0x362: 0x374b, 0x363: 0x37cf,\n\t0x364: 0x3757, 0x365: 0x37db, 0x366: 0x3763, 0x367: 0x37e7, 0x368: 0xa000, 0x369: 0xa000,\n\t0x36a: 0x3835, 0x36b: 0x383b, 0x36c: 0x378d, 0x36d: 0x3811, 0x36e: 0x3769, 0x36f: 0x37ed,\n\t0x370: 0x3775, 0x371: 0x37f9, 0x372: 0x377b, 0x373: 0x37ff, 0x374: 0x3781, 0x375: 0x3805,\n\t0x378: 0x3787, 0x379: 0x380b,\n\t// Block 0xe, offset 0x380\n\t0x387: 0x1d61,\n\t0x391: 0x812d,\n\t0x392: 0x8132, 0x393: 0x8132, 0x394: 0x8132, 0x395: 0x8132, 0x396: 0x812d, 0x397: 0x8132,\n\t0x398: 0x8132, 0x399: 0x8132, 0x39a: 0x812e, 0x39b: 0x812d, 0x39c: 0x8132, 0x39d: 0x8132,\n\t0x39e: 0x8132, 0x39f: 0x8132, 0x3a0: 0x8132, 0x3a1: 0x8132, 0x3a2: 0x812d, 0x3a3: 0x812d,\n\t0x3a4: 0x812d, 0x3a5: 0x812d, 0x3a6: 0x812d, 0x3a7: 0x812d, 0x3a8: 0x8132, 0x3a9: 0x8132,\n\t0x3aa: 0x812d, 0x3ab: 0x8132, 0x3ac: 0x8132, 0x3ad: 0x812e, 0x3ae: 0x8131, 0x3af: 0x8132,\n\t0x3b0: 0x8105, 0x3b1: 0x8106, 0x3b2: 0x8107, 0x3b3: 0x8108, 0x3b4: 0x8109, 0x3b5: 0x810a,\n\t0x3b6: 0x810b, 0x3b7: 0x810c, 0x3b8: 0x810d, 0x3b9: 0x810e, 0x3ba: 0x810e, 0x3bb: 0x810f,\n\t0x3bc: 0x8110, 0x3bd: 0x8111, 0x3bf: 0x8112,\n\t// Block 0xf, offset 0x3c0\n\t0x3c8: 0xa000, 0x3ca: 0xa000, 0x3cb: 0x8116,\n\t0x3cc: 0x8117, 0x3cd: 0x8118, 0x3ce: 0x8119, 0x3cf: 0x811a, 0x3d0: 0x811b, 0x3d1: 0x811c,\n\t0x3d2: 0x811d, 0x3d3: 0x9932, 0x3d4: 0x9932, 0x3d5: 0x992d, 0x3d6: 0x812d, 0x3d7: 0x8132,\n\t0x3d8: 0x8132, 0x3d9: 0x8132, 0x3da: 0x8132, 0x3db: 0x8132, 0x3dc: 0x812d, 0x3dd: 0x8132,\n\t0x3de: 0x8132, 0x3df: 0x812d,\n\t0x3f0: 0x811e, 0x3f5: 0x1d84,\n\t0x3f6: 0x2013, 0x3f7: 0x204f, 0x3f8: 0x204a,\n\t// Block 0x10, offset 0x400\n\t0x405: 0xa000,\n\t0x406: 0x2d26, 0x407: 0xa000, 0x408: 0x2d2e, 0x409: 0xa000, 0x40a: 0x2d36, 0x40b: 0xa000,\n\t0x40c: 0x2d3e, 0x40d: 0xa000, 0x40e: 0x2d46, 0x411: 0xa000,\n\t0x412: 0x2d4e,\n\t0x434: 0x8102, 0x435: 0x9900,\n\t0x43a: 0xa000, 0x43b: 0x2d56,\n\t0x43c: 0xa000, 0x43d: 0x2d5e, 0x43e: 0xa000, 0x43f: 0xa000,\n\t// Block 0x11, offset 0x440\n\t0x440: 0x0069, 0x441: 0x006b, 0x442: 0x006f, 0x443: 0x0083, 0x444: 0x00f5, 0x445: 0x00f8,\n\t0x446: 0x0413, 0x447: 0x0085, 0x448: 0x0089, 0x449: 0x008b, 0x44a: 0x0104, 0x44b: 0x0107,\n\t0x44c: 0x010a, 0x44d: 0x008f, 0x44f: 0x0097, 0x450: 0x009b, 0x451: 0x00e0,\n\t0x452: 0x009f, 0x453: 0x00fe, 0x454: 0x0417, 0x455: 0x041b, 0x456: 0x00a1, 0x457: 0x00a9,\n\t0x458: 0x00ab, 0x459: 0x0423, 0x45a: 0x012b, 0x45b: 0x00ad, 0x45c: 0x0427, 0x45d: 0x01be,\n\t0x45e: 0x01c1, 0x45f: 0x01c4, 0x460: 0x01fa, 0x461: 0x01fd, 0x462: 0x0093, 0x463: 0x00a5,\n\t0x464: 0x00ab, 0x465: 0x00ad, 0x466: 0x01be, 0x467: 0x01c1, 0x468: 0x01eb, 0x469: 0x01fa,\n\t0x46a: 0x01fd,\n\t0x478: 0x020c,\n\t// Block 0x12, offset 0x480\n\t0x49b: 0x00fb, 0x49c: 0x0087, 0x49d: 0x0101,\n\t0x49e: 0x00d4, 0x49f: 0x010a, 0x4a0: 0x008d, 0x4a1: 0x010d, 0x4a2: 0x0110, 0x4a3: 0x0116,\n\t0x4a4: 0x011c, 0x4a5: 0x011f, 0x4a6: 0x0122, 0x4a7: 0x042b, 0x4a8: 0x016a, 0x4a9: 0x0128,\n\t0x4aa: 0x042f, 0x4ab: 0x016d, 0x4ac: 0x0131, 0x4ad: 0x012e, 0x4ae: 0x0134, 0x4af: 0x0137,\n\t0x4b0: 0x013a, 0x4b1: 0x013d, 0x4b2: 0x0140, 0x4b3: 0x014c, 0x4b4: 0x014f, 0x4b5: 0x00ec,\n\t0x4b6: 0x0152, 0x4b7: 0x0155, 0x4b8: 0x041f, 0x4b9: 0x0158, 0x4ba: 0x015b, 0x4bb: 0x00b5,\n\t0x4bc: 0x015e, 0x4bd: 0x0161, 0x4be: 0x0164, 0x4bf: 0x01d0,\n\t// Block 0x13, offset 0x4c0\n\t0x4c0: 0x8132, 0x4c1: 0x8132, 0x4c2: 0x812d, 0x4c3: 0x8132, 0x4c4: 0x8132, 0x4c5: 0x8132,\n\t0x4c6: 0x8132, 0x4c7: 0x8132, 0x4c8: 0x8132, 0x4c9: 0x8132, 0x4ca: 0x812d, 0x4cb: 0x8132,\n\t0x4cc: 0x8132, 0x4cd: 0x8135, 0x4ce: 0x812a, 0x4cf: 0x812d, 0x4d0: 0x8129, 0x4d1: 0x8132,\n\t0x4d2: 0x8132, 0x4d3: 0x8132, 0x4d4: 0x8132, 0x4d5: 0x8132, 0x4d6: 0x8132, 0x4d7: 0x8132,\n\t0x4d8: 0x8132, 0x4d9: 0x8132, 0x4da: 0x8132, 0x4db: 0x8132, 0x4dc: 0x8132, 0x4dd: 0x8132,\n\t0x4de: 0x8132, 0x4df: 0x8132, 0x4e0: 0x8132, 0x4e1: 0x8132, 0x4e2: 0x8132, 0x4e3: 0x8132,\n\t0x4e4: 0x8132, 0x4e5: 0x8132, 0x4e6: 0x8132, 0x4e7: 0x8132, 0x4e8: 0x8132, 0x4e9: 0x8132,\n\t0x4ea: 0x8132, 0x4eb: 0x8132, 0x4ec: 0x8132, 0x4ed: 0x8132, 0x4ee: 0x8132, 0x4ef: 0x8132,\n\t0x4f0: 0x8132, 0x4f1: 0x8132, 0x4f2: 0x8132, 0x4f3: 0x8132, 0x4f4: 0x8132, 0x4f5: 0x8132,\n\t0x4f6: 0x8133, 0x4f7: 0x8131, 0x4f8: 0x8131, 0x4f9: 0x812d, 0x4fb: 0x8132,\n\t0x4fc: 0x8134, 0x4fd: 0x812d, 0x4fe: 0x8132, 0x4ff: 0x812d,\n\t// Block 0x14, offset 0x500\n\t0x500: 0x2f97, 0x501: 0x32a3, 0x502: 0x2fa1, 0x503: 0x32ad, 0x504: 0x2fa6, 0x505: 0x32b2,\n\t0x506: 0x2fab, 0x507: 0x32b7, 0x508: 0x38cc, 0x509: 0x3a5b, 0x50a: 0x2fc4, 0x50b: 0x32d0,\n\t0x50c: 0x2fce, 0x50d: 0x32da, 0x50e: 0x2fdd, 0x50f: 0x32e9, 0x510: 0x2fd3, 0x511: 0x32df,\n\t0x512: 0x2fd8, 0x513: 0x32e4, 0x514: 0x38ef, 0x515: 0x3a7e, 0x516: 0x38f6, 0x517: 0x3a85,\n\t0x518: 0x3019, 0x519: 0x3325, 0x51a: 0x301e, 0x51b: 0x332a, 0x51c: 0x3904, 0x51d: 0x3a93,\n\t0x51e: 0x3023, 0x51f: 0x332f, 0x520: 0x3032, 0x521: 0x333e, 0x522: 0x3050, 0x523: 0x335c,\n\t0x524: 0x305f, 0x525: 0x336b, 0x526: 0x3055, 0x527: 0x3361, 0x528: 0x3064, 0x529: 0x3370,\n\t0x52a: 0x3069, 0x52b: 0x3375, 0x52c: 0x30af, 0x52d: 0x33bb, 0x52e: 0x390b, 0x52f: 0x3a9a,\n\t0x530: 0x30b9, 0x531: 0x33ca, 0x532: 0x30c3, 0x533: 0x33d4, 0x534: 0x30cd, 0x535: 0x33de,\n\t0x536: 0x46c4, 0x537: 0x4755, 0x538: 0x3912, 0x539: 0x3aa1, 0x53a: 0x30e6, 0x53b: 0x33f7,\n\t0x53c: 0x30e1, 0x53d: 0x33f2, 0x53e: 0x30eb, 0x53f: 0x33fc,\n\t// Block 0x15, offset 0x540\n\t0x540: 0x30f0, 0x541: 0x3401, 0x542: 0x30f5, 0x543: 0x3406, 0x544: 0x3109, 0x545: 0x341a,\n\t0x546: 0x3113, 0x547: 0x3424, 0x548: 0x3122, 0x549: 0x3433, 0x54a: 0x311d, 0x54b: 0x342e,\n\t0x54c: 0x3935, 0x54d: 0x3ac4, 0x54e: 0x3943, 0x54f: 0x3ad2, 0x550: 0x394a, 0x551: 0x3ad9,\n\t0x552: 0x3951, 0x553: 0x3ae0, 0x554: 0x314f, 0x555: 0x3460, 0x556: 0x3154, 0x557: 0x3465,\n\t0x558: 0x315e, 0x559: 0x346f, 0x55a: 0x46f1, 0x55b: 0x4782, 0x55c: 0x3997, 0x55d: 0x3b26,\n\t0x55e: 0x3177, 0x55f: 0x3488, 0x560: 0x3181, 0x561: 0x3492, 0x562: 0x4700, 0x563: 0x4791,\n\t0x564: 0x399e, 0x565: 0x3b2d, 0x566: 0x39a5, 0x567: 0x3b34, 0x568: 0x39ac, 0x569: 0x3b3b,\n\t0x56a: 0x3190, 0x56b: 0x34a1, 0x56c: 0x319a, 0x56d: 0x34b0, 0x56e: 0x31ae, 0x56f: 0x34c4,\n\t0x570: 0x31a9, 0x571: 0x34bf, 0x572: 0x31ea, 0x573: 0x3500, 0x574: 0x31f9, 0x575: 0x350f,\n\t0x576: 0x31f4, 0x577: 0x350a, 0x578: 0x39b3, 0x579: 0x3b42, 0x57a: 0x39ba, 0x57b: 0x3b49,\n\t0x57c: 0x31fe, 0x57d: 0x3514, 0x57e: 0x3203, 0x57f: 0x3519,\n\t// Block 0x16, offset 0x580\n\t0x580: 0x3208, 0x581: 0x351e, 0x582: 0x320d, 0x583: 0x3523, 0x584: 0x321c, 0x585: 0x3532,\n\t0x586: 0x3217, 0x587: 0x352d, 0x588: 0x3221, 0x589: 0x353c, 0x58a: 0x3226, 0x58b: 0x3541,\n\t0x58c: 0x322b, 0x58d: 0x3546, 0x58e: 0x3249, 0x58f: 0x3564, 0x590: 0x3262, 0x591: 0x3582,\n\t0x592: 0x3271, 0x593: 0x3591, 0x594: 0x3276, 0x595: 0x3596, 0x596: 0x337a, 0x597: 0x34a6,\n\t0x598: 0x3537, 0x599: 0x3573, 0x59a: 0x1be0, 0x59b: 0x42d7,\n\t0x5a0: 0x46a1, 0x5a1: 0x4732, 0x5a2: 0x2f83, 0x5a3: 0x328f,\n\t0x5a4: 0x3878, 0x5a5: 0x3a07, 0x5a6: 0x3871, 0x5a7: 0x3a00, 0x5a8: 0x3886, 0x5a9: 0x3a15,\n\t0x5aa: 0x387f, 0x5ab: 0x3a0e, 0x5ac: 0x38be, 0x5ad: 0x3a4d, 0x5ae: 0x3894, 0x5af: 0x3a23,\n\t0x5b0: 0x388d, 0x5b1: 0x3a1c, 0x5b2: 0x38a2, 0x5b3: 0x3a31, 0x5b4: 0x389b, 0x5b5: 0x3a2a,\n\t0x5b6: 0x38c5, 0x5b7: 0x3a54, 0x5b8: 0x46b5, 0x5b9: 0x4746, 0x5ba: 0x3000, 0x5bb: 0x330c,\n\t0x5bc: 0x2fec, 0x5bd: 0x32f8, 0x5be: 0x38da, 0x5bf: 0x3a69,\n\t// Block 0x17, offset 0x5c0\n\t0x5c0: 0x38d3, 0x5c1: 0x3a62, 0x5c2: 0x38e8, 0x5c3: 0x3a77, 0x5c4: 0x38e1, 0x5c5: 0x3a70,\n\t0x5c6: 0x38fd, 0x5c7: 0x3a8c, 0x5c8: 0x3091, 0x5c9: 0x339d, 0x5ca: 0x30a5, 0x5cb: 0x33b1,\n\t0x5cc: 0x46e7, 0x5cd: 0x4778, 0x5ce: 0x3136, 0x5cf: 0x3447, 0x5d0: 0x3920, 0x5d1: 0x3aaf,\n\t0x5d2: 0x3919, 0x5d3: 0x3aa8, 0x5d4: 0x392e, 0x5d5: 0x3abd, 0x5d6: 0x3927, 0x5d7: 0x3ab6,\n\t0x5d8: 0x3989, 0x5d9: 0x3b18, 0x5da: 0x396d, 0x5db: 0x3afc, 0x5dc: 0x3966, 0x5dd: 0x3af5,\n\t0x5de: 0x397b, 0x5df: 0x3b0a, 0x5e0: 0x3974, 0x5e1: 0x3b03, 0x5e2: 0x3982, 0x5e3: 0x3b11,\n\t0x5e4: 0x31e5, 0x5e5: 0x34fb, 0x5e6: 0x31c7, 0x5e7: 0x34dd, 0x5e8: 0x39e4, 0x5e9: 0x3b73,\n\t0x5ea: 0x39dd, 0x5eb: 0x3b6c, 0x5ec: 0x39f2, 0x5ed: 0x3b81, 0x5ee: 0x39eb, 0x5ef: 0x3b7a,\n\t0x5f0: 0x39f9, 0x5f1: 0x3b88, 0x5f2: 0x3230, 0x5f3: 0x354b, 0x5f4: 0x3258, 0x5f5: 0x3578,\n\t0x5f6: 0x3253, 0x5f7: 0x356e, 0x5f8: 0x323f, 0x5f9: 0x355a,\n\t// Block 0x18, offset 0x600\n\t0x600: 0x4804, 0x601: 0x480a, 0x602: 0x491e, 0x603: 0x4936, 0x604: 0x4926, 0x605: 0x493e,\n\t0x606: 0x492e, 0x607: 0x4946, 0x608: 0x47aa, 0x609: 0x47b0, 0x60a: 0x488e, 0x60b: 0x48a6,\n\t0x60c: 0x4896, 0x60d: 0x48ae, 0x60e: 0x489e, 0x60f: 0x48b6, 0x610: 0x4816, 0x611: 0x481c,\n\t0x612: 0x3db8, 0x613: 0x3dc8, 0x614: 0x3dc0, 0x615: 0x3dd0,\n\t0x618: 0x47b6, 0x619: 0x47bc, 0x61a: 0x3ce8, 0x61b: 0x3cf8, 0x61c: 0x3cf0, 0x61d: 0x3d00,\n\t0x620: 0x482e, 0x621: 0x4834, 0x622: 0x494e, 0x623: 0x4966,\n\t0x624: 0x4956, 0x625: 0x496e, 0x626: 0x495e, 0x627: 0x4976, 0x628: 0x47c2, 0x629: 0x47c8,\n\t0x62a: 0x48be, 0x62b: 0x48d6, 0x62c: 0x48c6, 0x62d: 0x48de, 0x62e: 0x48ce, 0x62f: 0x48e6,\n\t0x630: 0x4846, 0x631: 0x484c, 0x632: 0x3e18, 0x633: 0x3e30, 0x634: 0x3e20, 0x635: 0x3e38,\n\t0x636: 0x3e28, 0x637: 0x3e40, 0x638: 0x47ce, 0x639: 0x47d4, 0x63a: 0x3d18, 0x63b: 0x3d30,\n\t0x63c: 0x3d20, 0x63d: 0x3d38, 0x63e: 0x3d28, 0x63f: 0x3d40,\n\t// Block 0x19, offset 0x640\n\t0x640: 0x4852, 0x641: 0x4858, 0x642: 0x3e48, 0x643: 0x3e58, 0x644: 0x3e50, 0x645: 0x3e60,\n\t0x648: 0x47da, 0x649: 0x47e0, 0x64a: 0x3d48, 0x64b: 0x3d58,\n\t0x64c: 0x3d50, 0x64d: 0x3d60, 0x650: 0x4864, 0x651: 0x486a,\n\t0x652: 0x3e80, 0x653: 0x3e98, 0x654: 0x3e88, 0x655: 0x3ea0, 0x656: 0x3e90, 0x657: 0x3ea8,\n\t0x659: 0x47e6, 0x65b: 0x3d68, 0x65d: 0x3d70,\n\t0x65f: 0x3d78, 0x660: 0x487c, 0x661: 0x4882, 0x662: 0x497e, 0x663: 0x4996,\n\t0x664: 0x4986, 0x665: 0x499e, 0x666: 0x498e, 0x667: 0x49a6, 0x668: 0x47ec, 0x669: 0x47f2,\n\t0x66a: 0x48ee, 0x66b: 0x4906, 0x66c: 0x48f6, 0x66d: 0x490e, 0x66e: 0x48fe, 0x66f: 0x4916,\n\t0x670: 0x47f8, 0x671: 0x431e, 0x672: 0x3691, 0x673: 0x4324, 0x674: 0x4822, 0x675: 0x432a,\n\t0x676: 0x36a3, 0x677: 0x4330, 0x678: 0x36c1, 0x679: 0x4336, 0x67a: 0x36d9, 0x67b: 0x433c,\n\t0x67c: 0x4870, 0x67d: 0x4342,\n\t// Block 0x1a, offset 0x680\n\t0x680: 0x3da0, 0x681: 0x3da8, 0x682: 0x4184, 0x683: 0x41a2, 0x684: 0x418e, 0x685: 0x41ac,\n\t0x686: 0x4198, 0x687: 0x41b6, 0x688: 0x3cd8, 0x689: 0x3ce0, 0x68a: 0x40d0, 0x68b: 0x40ee,\n\t0x68c: 0x40da, 0x68d: 0x40f8, 0x68e: 0x40e4, 0x68f: 0x4102, 0x690: 0x3de8, 0x691: 0x3df0,\n\t0x692: 0x41c0, 0x693: 0x41de, 0x694: 0x41ca, 0x695: 0x41e8, 0x696: 0x41d4, 0x697: 0x41f2,\n\t0x698: 0x3d08, 0x699: 0x3d10, 0x69a: 0x410c, 0x69b: 0x412a, 0x69c: 0x4116, 0x69d: 0x4134,\n\t0x69e: 0x4120, 0x69f: 0x413e, 0x6a0: 0x3ec0, 0x6a1: 0x3ec8, 0x6a2: 0x41fc, 0x6a3: 0x421a,\n\t0x6a4: 0x4206, 0x6a5: 0x4224, 0x6a6: 0x4210, 0x6a7: 0x422e, 0x6a8: 0x3d80, 0x6a9: 0x3d88,\n\t0x6aa: 0x4148, 0x6ab: 0x4166, 0x6ac: 0x4152, 0x6ad: 0x4170, 0x6ae: 0x415c, 0x6af: 0x417a,\n\t0x6b0: 0x3685, 0x6b1: 0x367f, 0x6b2: 0x3d90, 0x6b3: 0x368b, 0x6b4: 0x3d98,\n\t0x6b6: 0x4810, 0x6b7: 0x3db0, 0x6b8: 0x35f5, 0x6b9: 0x35ef, 0x6ba: 0x35e3, 0x6bb: 0x42ee,\n\t0x6bc: 0x35fb, 0x6bd: 0x4287, 0x6be: 0x01d3, 0x6bf: 0x4287,\n\t// Block 0x1b, offset 0x6c0\n\t0x6c0: 0x42a0, 0x6c1: 0x4482, 0x6c2: 0x3dd8, 0x6c3: 0x369d, 0x6c4: 0x3de0,\n\t0x6c6: 0x483a, 0x6c7: 0x3df8, 0x6c8: 0x3601, 0x6c9: 0x42f4, 0x6ca: 0x360d, 0x6cb: 0x42fa,\n\t0x6cc: 0x3619, 0x6cd: 0x4489, 0x6ce: 0x4490, 0x6cf: 0x4497, 0x6d0: 0x36b5, 0x6d1: 0x36af,\n\t0x6d2: 0x3e00, 0x6d3: 0x44e4, 0x6d6: 0x36bb, 0x6d7: 0x3e10,\n\t0x6d8: 0x3631, 0x6d9: 0x362b, 0x6da: 0x361f, 0x6db: 0x4300, 0x6dd: 0x449e,\n\t0x6de: 0x44a5, 0x6df: 0x44ac, 0x6e0: 0x36eb, 0x6e1: 0x36e5, 0x6e2: 0x3e68, 0x6e3: 0x44ec,\n\t0x6e4: 0x36cd, 0x6e5: 0x36d3, 0x6e6: 0x36f1, 0x6e7: 0x3e78, 0x6e8: 0x3661, 0x6e9: 0x365b,\n\t0x6ea: 0x364f, 0x6eb: 0x430c, 0x6ec: 0x3649, 0x6ed: 0x4474, 0x6ee: 0x447b, 0x6ef: 0x0081,\n\t0x6f2: 0x3eb0, 0x6f3: 0x36f7, 0x6f4: 0x3eb8,\n\t0x6f6: 0x4888, 0x6f7: 0x3ed0, 0x6f8: 0x363d, 0x6f9: 0x4306, 0x6fa: 0x366d, 0x6fb: 0x4318,\n\t0x6fc: 0x3679, 0x6fd: 0x425a, 0x6fe: 0x428c,\n\t// Block 0x1c, offset 0x700\n\t0x700: 0x1bd8, 0x701: 0x1bdc, 0x702: 0x0047, 0x703: 0x1c54, 0x705: 0x1be8,\n\t0x706: 0x1bec, 0x707: 0x00e9, 0x709: 0x1c58, 0x70a: 0x008f, 0x70b: 0x0051,\n\t0x70c: 0x0051, 0x70d: 0x0051, 0x70e: 0x0091, 0x70f: 0x00da, 0x710: 0x0053, 0x711: 0x0053,\n\t0x712: 0x0059, 0x713: 0x0099, 0x715: 0x005d, 0x716: 0x198d,\n\t0x719: 0x0061, 0x71a: 0x0063, 0x71b: 0x0065, 0x71c: 0x0065, 0x71d: 0x0065,\n\t0x720: 0x199f, 0x721: 0x1bc8, 0x722: 0x19a8,\n\t0x724: 0x0075, 0x726: 0x01b8, 0x728: 0x0075,\n\t0x72a: 0x0057, 0x72b: 0x42d2, 0x72c: 0x0045, 0x72d: 0x0047, 0x72f: 0x008b,\n\t0x730: 0x004b, 0x731: 0x004d, 0x733: 0x005b, 0x734: 0x009f, 0x735: 0x0215,\n\t0x736: 0x0218, 0x737: 0x021b, 0x738: 0x021e, 0x739: 0x0093, 0x73b: 0x1b98,\n\t0x73c: 0x01e8, 0x73d: 0x01c1, 0x73e: 0x0179, 0x73f: 0x01a0,\n\t// Block 0x1d, offset 0x740\n\t0x740: 0x0463, 0x745: 0x0049,\n\t0x746: 0x0089, 0x747: 0x008b, 0x748: 0x0093, 0x749: 0x0095,\n\t0x750: 0x222e, 0x751: 0x223a,\n\t0x752: 0x22ee, 0x753: 0x2216, 0x754: 0x229a, 0x755: 0x2222, 0x756: 0x22a0, 0x757: 0x22b8,\n\t0x758: 0x22c4, 0x759: 0x2228, 0x75a: 0x22ca, 0x75b: 0x2234, 0x75c: 0x22be, 0x75d: 0x22d0,\n\t0x75e: 0x22d6, 0x75f: 0x1cbc, 0x760: 0x0053, 0x761: 0x195a, 0x762: 0x1ba4, 0x763: 0x1963,\n\t0x764: 0x006d, 0x765: 0x19ab, 0x766: 0x1bd0, 0x767: 0x1d48, 0x768: 0x1966, 0x769: 0x0071,\n\t0x76a: 0x19b7, 0x76b: 0x1bd4, 0x76c: 0x0059, 0x76d: 0x0047, 0x76e: 0x0049, 0x76f: 0x005b,\n\t0x770: 0x0093, 0x771: 0x19e4, 0x772: 0x1c18, 0x773: 0x19ed, 0x774: 0x00ad, 0x775: 0x1a62,\n\t0x776: 0x1c4c, 0x777: 0x1d5c, 0x778: 0x19f0, 0x779: 0x00b1, 0x77a: 0x1a65, 0x77b: 0x1c50,\n\t0x77c: 0x0099, 0x77d: 0x0087, 0x77e: 0x0089, 0x77f: 0x009b,\n\t// Block 0x1e, offset 0x780\n\t0x781: 0x3c06, 0x783: 0xa000, 0x784: 0x3c0d, 0x785: 0xa000,\n\t0x787: 0x3c14, 0x788: 0xa000, 0x789: 0x3c1b,\n\t0x78d: 0xa000,\n\t0x7a0: 0x2f65, 0x7a1: 0xa000, 0x7a2: 0x3c29,\n\t0x7a4: 0xa000, 0x7a5: 0xa000,\n\t0x7ad: 0x3c22, 0x7ae: 0x2f60, 0x7af: 0x2f6a,\n\t0x7b0: 0x3c30, 0x7b1: 0x3c37, 0x7b2: 0xa000, 0x7b3: 0xa000, 0x7b4: 0x3c3e, 0x7b5: 0x3c45,\n\t0x7b6: 0xa000, 0x7b7: 0xa000, 0x7b8: 0x3c4c, 0x7b9: 0x3c53, 0x7ba: 0xa000, 0x7bb: 0xa000,\n\t0x7bc: 0xa000, 0x7bd: 0xa000,\n\t// Block 0x1f, offset 0x7c0\n\t0x7c0: 0x3c5a, 0x7c1: 0x3c61, 0x7c2: 0xa000, 0x7c3: 0xa000, 0x7c4: 0x3c76, 0x7c5: 0x3c7d,\n\t0x7c6: 0xa000, 0x7c7: 0xa000, 0x7c8: 0x3c84, 0x7c9: 0x3c8b,\n\t0x7d1: 0xa000,\n\t0x7d2: 0xa000,\n\t0x7e2: 0xa000,\n\t0x7e8: 0xa000, 0x7e9: 0xa000,\n\t0x7eb: 0xa000, 0x7ec: 0x3ca0, 0x7ed: 0x3ca7, 0x7ee: 0x3cae, 0x7ef: 0x3cb5,\n\t0x7f2: 0xa000, 0x7f3: 0xa000, 0x7f4: 0xa000, 0x7f5: 0xa000,\n\t// Block 0x20, offset 0x800\n\t0x820: 0x0023, 0x821: 0x0025, 0x822: 0x0027, 0x823: 0x0029,\n\t0x824: 0x002b, 0x825: 0x002d, 0x826: 0x002f, 0x827: 0x0031, 0x828: 0x0033, 0x829: 0x1882,\n\t0x82a: 0x1885, 0x82b: 0x1888, 0x82c: 0x188b, 0x82d: 0x188e, 0x82e: 0x1891, 0x82f: 0x1894,\n\t0x830: 0x1897, 0x831: 0x189a, 0x832: 0x189d, 0x833: 0x18a6, 0x834: 0x1a68, 0x835: 0x1a6c,\n\t0x836: 0x1a70, 0x837: 0x1a74, 0x838: 0x1a78, 0x839: 0x1a7c, 0x83a: 0x1a80, 0x83b: 0x1a84,\n\t0x83c: 0x1a88, 0x83d: 0x1c80, 0x83e: 0x1c85, 0x83f: 0x1c8a,\n\t// Block 0x21, offset 0x840\n\t0x840: 0x1c8f, 0x841: 0x1c94, 0x842: 0x1c99, 0x843: 0x1c9e, 0x844: 0x1ca3, 0x845: 0x1ca8,\n\t0x846: 0x1cad, 0x847: 0x1cb2, 0x848: 0x187f, 0x849: 0x18a3, 0x84a: 0x18c7, 0x84b: 0x18eb,\n\t0x84c: 0x190f, 0x84d: 0x1918, 0x84e: 0x191e, 0x84f: 0x1924, 0x850: 0x192a, 0x851: 0x1b60,\n\t0x852: 0x1b64, 0x853: 0x1b68, 0x854: 0x1b6c, 0x855: 0x1b70, 0x856: 0x1b74, 0x857: 0x1b78,\n\t0x858: 0x1b7c, 0x859: 0x1b80, 0x85a: 0x1b84, 0x85b: 0x1b88, 0x85c: 0x1af4, 0x85d: 0x1af8,\n\t0x85e: 0x1afc, 0x85f: 0x1b00, 0x860: 0x1b04, 0x861: 0x1b08, 0x862: 0x1b0c, 0x863: 0x1b10,\n\t0x864: 0x1b14, 0x865: 0x1b18, 0x866: 0x1b1c, 0x867: 0x1b20, 0x868: 0x1b24, 0x869: 0x1b28,\n\t0x86a: 0x1b2c, 0x86b: 0x1b30, 0x86c: 0x1b34, 0x86d: 0x1b38, 0x86e: 0x1b3c, 0x86f: 0x1b40,\n\t0x870: 0x1b44, 0x871: 0x1b48, 0x872: 0x1b4c, 0x873: 0x1b50, 0x874: 0x1b54, 0x875: 0x1b58,\n\t0x876: 0x0043, 0x877: 0x0045, 0x878: 0x0047, 0x879: 0x0049, 0x87a: 0x004b, 0x87b: 0x004d,\n\t0x87c: 0x004f, 0x87d: 0x0051, 0x87e: 0x0053, 0x87f: 0x0055,\n\t// Block 0x22, offset 0x880\n\t0x880: 0x06bf, 0x881: 0x06e3, 0x882: 0x06ef, 0x883: 0x06ff, 0x884: 0x0707, 0x885: 0x0713,\n\t0x886: 0x071b, 0x887: 0x0723, 0x888: 0x072f, 0x889: 0x0783, 0x88a: 0x079b, 0x88b: 0x07ab,\n\t0x88c: 0x07bb, 0x88d: 0x07cb, 0x88e: 0x07db, 0x88f: 0x07fb, 0x890: 0x07ff, 0x891: 0x0803,\n\t0x892: 0x0837, 0x893: 0x085f, 0x894: 0x086f, 0x895: 0x0877, 0x896: 0x087b, 0x897: 0x0887,\n\t0x898: 0x08a3, 0x899: 0x08a7, 0x89a: 0x08bf, 0x89b: 0x08c3, 0x89c: 0x08cb, 0x89d: 0x08db,\n\t0x89e: 0x0977, 0x89f: 0x098b, 0x8a0: 0x09cb, 0x8a1: 0x09df, 0x8a2: 0x09e7, 0x8a3: 0x09eb,\n\t0x8a4: 0x09fb, 0x8a5: 0x0a17, 0x8a6: 0x0a43, 0x8a7: 0x0a4f, 0x8a8: 0x0a6f, 0x8a9: 0x0a7b,\n\t0x8aa: 0x0a7f, 0x8ab: 0x0a83, 0x8ac: 0x0a9b, 0x8ad: 0x0a9f, 0x8ae: 0x0acb, 0x8af: 0x0ad7,\n\t0x8b0: 0x0adf, 0x8b1: 0x0ae7, 0x8b2: 0x0af7, 0x8b3: 0x0aff, 0x8b4: 0x0b07, 0x8b5: 0x0b33,\n\t0x8b6: 0x0b37, 0x8b7: 0x0b3f, 0x8b8: 0x0b43, 0x8b9: 0x0b4b, 0x8ba: 0x0b53, 0x8bb: 0x0b63,\n\t0x8bc: 0x0b7f, 0x8bd: 0x0bf7, 0x8be: 0x0c0b, 0x8bf: 0x0c0f,\n\t// Block 0x23, offset 0x8c0\n\t0x8c0: 0x0c8f, 0x8c1: 0x0c93, 0x8c2: 0x0ca7, 0x8c3: 0x0cab, 0x8c4: 0x0cb3, 0x8c5: 0x0cbb,\n\t0x8c6: 0x0cc3, 0x8c7: 0x0ccf, 0x8c8: 0x0cf7, 0x8c9: 0x0d07, 0x8ca: 0x0d1b, 0x8cb: 0x0d8b,\n\t0x8cc: 0x0d97, 0x8cd: 0x0da7, 0x8ce: 0x0db3, 0x8cf: 0x0dbf, 0x8d0: 0x0dc7, 0x8d1: 0x0dcb,\n\t0x8d2: 0x0dcf, 0x8d3: 0x0dd3, 0x8d4: 0x0dd7, 0x8d5: 0x0e8f, 0x8d6: 0x0ed7, 0x8d7: 0x0ee3,\n\t0x8d8: 0x0ee7, 0x8d9: 0x0eeb, 0x8da: 0x0eef, 0x8db: 0x0ef7, 0x8dc: 0x0efb, 0x8dd: 0x0f0f,\n\t0x8de: 0x0f2b, 0x8df: 0x0f33, 0x8e0: 0x0f73, 0x8e1: 0x0f77, 0x8e2: 0x0f7f, 0x8e3: 0x0f83,\n\t0x8e4: 0x0f8b, 0x8e5: 0x0f8f, 0x8e6: 0x0fb3, 0x8e7: 0x0fb7, 0x8e8: 0x0fd3, 0x8e9: 0x0fd7,\n\t0x8ea: 0x0fdb, 0x8eb: 0x0fdf, 0x8ec: 0x0ff3, 0x8ed: 0x1017, 0x8ee: 0x101b, 0x8ef: 0x101f,\n\t0x8f0: 0x1043, 0x8f1: 0x1083, 0x8f2: 0x1087, 0x8f3: 0x10a7, 0x8f4: 0x10b7, 0x8f5: 0x10bf,\n\t0x8f6: 0x10df, 0x8f7: 0x1103, 0x8f8: 0x1147, 0x8f9: 0x114f, 0x8fa: 0x1163, 0x8fb: 0x116f,\n\t0x8fc: 0x1177, 0x8fd: 0x117f, 0x8fe: 0x1183, 0x8ff: 0x1187,\n\t// Block 0x24, offset 0x900\n\t0x900: 0x119f, 0x901: 0x11a3, 0x902: 0x11bf, 0x903: 0x11c7, 0x904: 0x11cf, 0x905: 0x11d3,\n\t0x906: 0x11df, 0x907: 0x11e7, 0x908: 0x11eb, 0x909: 0x11ef, 0x90a: 0x11f7, 0x90b: 0x11fb,\n\t0x90c: 0x129b, 0x90d: 0x12af, 0x90e: 0x12e3, 0x90f: 0x12e7, 0x910: 0x12ef, 0x911: 0x131b,\n\t0x912: 0x1323, 0x913: 0x132b, 0x914: 0x1333, 0x915: 0x136f, 0x916: 0x1373, 0x917: 0x137b,\n\t0x918: 0x137f, 0x919: 0x1383, 0x91a: 0x13af, 0x91b: 0x13b3, 0x91c: 0x13bb, 0x91d: 0x13cf,\n\t0x91e: 0x13d3, 0x91f: 0x13ef, 0x920: 0x13f7, 0x921: 0x13fb, 0x922: 0x141f, 0x923: 0x143f,\n\t0x924: 0x1453, 0x925: 0x1457, 0x926: 0x145f, 0x927: 0x148b, 0x928: 0x148f, 0x929: 0x149f,\n\t0x92a: 0x14c3, 0x92b: 0x14cf, 0x92c: 0x14df, 0x92d: 0x14f7, 0x92e: 0x14ff, 0x92f: 0x1503,\n\t0x930: 0x1507, 0x931: 0x150b, 0x932: 0x1517, 0x933: 0x151b, 0x934: 0x1523, 0x935: 0x153f,\n\t0x936: 0x1543, 0x937: 0x1547, 0x938: 0x155f, 0x939: 0x1563, 0x93a: 0x156b, 0x93b: 0x157f,\n\t0x93c: 0x1583, 0x93d: 0x1587, 0x93e: 0x158f, 0x93f: 0x1593,\n\t// Block 0x25, offset 0x940\n\t0x946: 0xa000, 0x94b: 0xa000,\n\t0x94c: 0x3f08, 0x94d: 0xa000, 0x94e: 0x3f10, 0x94f: 0xa000, 0x950: 0x3f18, 0x951: 0xa000,\n\t0x952: 0x3f20, 0x953: 0xa000, 0x954: 0x3f28, 0x955: 0xa000, 0x956: 0x3f30, 0x957: 0xa000,\n\t0x958: 0x3f38, 0x959: 0xa000, 0x95a: 0x3f40, 0x95b: 0xa000, 0x95c: 0x3f48, 0x95d: 0xa000,\n\t0x95e: 0x3f50, 0x95f: 0xa000, 0x960: 0x3f58, 0x961: 0xa000, 0x962: 0x3f60,\n\t0x964: 0xa000, 0x965: 0x3f68, 0x966: 0xa000, 0x967: 0x3f70, 0x968: 0xa000, 0x969: 0x3f78,\n\t0x96f: 0xa000,\n\t0x970: 0x3f80, 0x971: 0x3f88, 0x972: 0xa000, 0x973: 0x3f90, 0x974: 0x3f98, 0x975: 0xa000,\n\t0x976: 0x3fa0, 0x977: 0x3fa8, 0x978: 0xa000, 0x979: 0x3fb0, 0x97a: 0x3fb8, 0x97b: 0xa000,\n\t0x97c: 0x3fc0, 0x97d: 0x3fc8,\n\t// Block 0x26, offset 0x980\n\t0x994: 0x3f00,\n\t0x999: 0x9903, 0x99a: 0x9903, 0x99b: 0x42dc, 0x99c: 0x42e2, 0x99d: 0xa000,\n\t0x99e: 0x3fd0, 0x99f: 0x26b4,\n\t0x9a6: 0xa000,\n\t0x9ab: 0xa000, 0x9ac: 0x3fe0, 0x9ad: 0xa000, 0x9ae: 0x3fe8, 0x9af: 0xa000,\n\t0x9b0: 0x3ff0, 0x9b1: 0xa000, 0x9b2: 0x3ff8, 0x9b3: 0xa000, 0x9b4: 0x4000, 0x9b5: 0xa000,\n\t0x9b6: 0x4008, 0x9b7: 0xa000, 0x9b8: 0x4010, 0x9b9: 0xa000, 0x9ba: 0x4018, 0x9bb: 0xa000,\n\t0x9bc: 0x4020, 0x9bd: 0xa000, 0x9be: 0x4028, 0x9bf: 0xa000,\n\t// Block 0x27, offset 0x9c0\n\t0x9c0: 0x4030, 0x9c1: 0xa000, 0x9c2: 0x4038, 0x9c4: 0xa000, 0x9c5: 0x4040,\n\t0x9c6: 0xa000, 0x9c7: 0x4048, 0x9c8: 0xa000, 0x9c9: 0x4050,\n\t0x9cf: 0xa000, 0x9d0: 0x4058, 0x9d1: 0x4060,\n\t0x9d2: 0xa000, 0x9d3: 0x4068, 0x9d4: 0x4070, 0x9d5: 0xa000, 0x9d6: 0x4078, 0x9d7: 0x4080,\n\t0x9d8: 0xa000, 0x9d9: 0x4088, 0x9da: 0x4090, 0x9db: 0xa000, 0x9dc: 0x4098, 0x9dd: 0x40a0,\n\t0x9ef: 0xa000,\n\t0x9f0: 0xa000, 0x9f1: 0xa000, 0x9f2: 0xa000, 0x9f4: 0x3fd8,\n\t0x9f7: 0x40a8, 0x9f8: 0x40b0, 0x9f9: 0x40b8, 0x9fa: 0x40c0,\n\t0x9fd: 0xa000, 0x9fe: 0x40c8, 0x9ff: 0x26c9,\n\t// Block 0x28, offset 0xa00\n\t0xa00: 0x0367, 0xa01: 0x032b, 0xa02: 0x032f, 0xa03: 0x0333, 0xa04: 0x037b, 0xa05: 0x0337,\n\t0xa06: 0x033b, 0xa07: 0x033f, 0xa08: 0x0343, 0xa09: 0x0347, 0xa0a: 0x034b, 0xa0b: 0x034f,\n\t0xa0c: 0x0353, 0xa0d: 0x0357, 0xa0e: 0x035b, 0xa0f: 0x49bd, 0xa10: 0x49c3, 0xa11: 0x49c9,\n\t0xa12: 0x49cf, 0xa13: 0x49d5, 0xa14: 0x49db, 0xa15: 0x49e1, 0xa16: 0x49e7, 0xa17: 0x49ed,\n\t0xa18: 0x49f3, 0xa19: 0x49f9, 0xa1a: 0x49ff, 0xa1b: 0x4a05, 0xa1c: 0x4a0b, 0xa1d: 0x4a11,\n\t0xa1e: 0x4a17, 0xa1f: 0x4a1d, 0xa20: 0x4a23, 0xa21: 0x4a29, 0xa22: 0x4a2f, 0xa23: 0x4a35,\n\t0xa24: 0x03c3, 0xa25: 0x035f, 0xa26: 0x0363, 0xa27: 0x03e7, 0xa28: 0x03eb, 0xa29: 0x03ef,\n\t0xa2a: 0x03f3, 0xa2b: 0x03f7, 0xa2c: 0x03fb, 0xa2d: 0x03ff, 0xa2e: 0x036b, 0xa2f: 0x0403,\n\t0xa30: 0x0407, 0xa31: 0x036f, 0xa32: 0x0373, 0xa33: 0x0377, 0xa34: 0x037f, 0xa35: 0x0383,\n\t0xa36: 0x0387, 0xa37: 0x038b, 0xa38: 0x038f, 0xa39: 0x0393, 0xa3a: 0x0397, 0xa3b: 0x039b,\n\t0xa3c: 0x039f, 0xa3d: 0x03a3, 0xa3e: 0x03a7, 0xa3f: 0x03ab,\n\t// Block 0x29, offset 0xa40\n\t0xa40: 0x03af, 0xa41: 0x03b3, 0xa42: 0x040b, 0xa43: 0x040f, 0xa44: 0x03b7, 0xa45: 0x03bb,\n\t0xa46: 0x03bf, 0xa47: 0x03c7, 0xa48: 0x03cb, 0xa49: 0x03cf, 0xa4a: 0x03d3, 0xa4b: 0x03d7,\n\t0xa4c: 0x03db, 0xa4d: 0x03df, 0xa4e: 0x03e3,\n\t0xa52: 0x06bf, 0xa53: 0x071b, 0xa54: 0x06cb, 0xa55: 0x097b, 0xa56: 0x06cf, 0xa57: 0x06e7,\n\t0xa58: 0x06d3, 0xa59: 0x0f93, 0xa5a: 0x0707, 0xa5b: 0x06db, 0xa5c: 0x06c3, 0xa5d: 0x09ff,\n\t0xa5e: 0x098f, 0xa5f: 0x072f,\n\t// Block 0x2a, offset 0xa80\n\t0xa80: 0x2054, 0xa81: 0x205a, 0xa82: 0x2060, 0xa83: 0x2066, 0xa84: 0x206c, 0xa85: 0x2072,\n\t0xa86: 0x2078, 0xa87: 0x207e, 0xa88: 0x2084, 0xa89: 0x208a, 0xa8a: 0x2090, 0xa8b: 0x2096,\n\t0xa8c: 0x209c, 0xa8d: 0x20a2, 0xa8e: 0x2726, 0xa8f: 0x272f, 0xa90: 0x2738, 0xa91: 0x2741,\n\t0xa92: 0x274a, 0xa93: 0x2753, 0xa94: 0x275c, 0xa95: 0x2765, 0xa96: 0x276e, 0xa97: 0x2780,\n\t0xa98: 0x2789, 0xa99: 0x2792, 0xa9a: 0x279b, 0xa9b: 0x27a4, 0xa9c: 0x2777, 0xa9d: 0x2bac,\n\t0xa9e: 0x2aed, 0xaa0: 0x20a8, 0xaa1: 0x20c0, 0xaa2: 0x20b4, 0xaa3: 0x2108,\n\t0xaa4: 0x20c6, 0xaa5: 0x20e4, 0xaa6: 0x20ae, 0xaa7: 0x20de, 0xaa8: 0x20ba, 0xaa9: 0x20f0,\n\t0xaaa: 0x2120, 0xaab: 0x213e, 0xaac: 0x2138, 0xaad: 0x212c, 0xaae: 0x217a, 0xaaf: 0x210e,\n\t0xab0: 0x211a, 0xab1: 0x2132, 0xab2: 0x2126, 0xab3: 0x2150, 0xab4: 0x20fc, 0xab5: 0x2144,\n\t0xab6: 0x216e, 0xab7: 0x2156, 0xab8: 0x20ea, 0xab9: 0x20cc, 0xaba: 0x2102, 0xabb: 0x2114,\n\t0xabc: 0x214a, 0xabd: 0x20d2, 0xabe: 0x2174, 0xabf: 0x20f6,\n\t// Block 0x2b, offset 0xac0\n\t0xac0: 0x215c, 0xac1: 0x20d8, 0xac2: 0x2162, 0xac3: 0x2168, 0xac4: 0x092f, 0xac5: 0x0b03,\n\t0xac6: 0x0ca7, 0xac7: 0x10c7,\n\t0xad0: 0x1bc4, 0xad1: 0x18a9,\n\t0xad2: 0x18ac, 0xad3: 0x18af, 0xad4: 0x18b2, 0xad5: 0x18b5, 0xad6: 0x18b8, 0xad7: 0x18bb,\n\t0xad8: 0x18be, 0xad9: 0x18c1, 0xada: 0x18ca, 0xadb: 0x18cd, 0xadc: 0x18d0, 0xadd: 0x18d3,\n\t0xade: 0x18d6, 0xadf: 0x18d9, 0xae0: 0x0313, 0xae1: 0x031b, 0xae2: 0x031f, 0xae3: 0x0327,\n\t0xae4: 0x032b, 0xae5: 0x032f, 0xae6: 0x0337, 0xae7: 0x033f, 0xae8: 0x0343, 0xae9: 0x034b,\n\t0xaea: 0x034f, 0xaeb: 0x0353, 0xaec: 0x0357, 0xaed: 0x035b, 0xaee: 0x2e18, 0xaef: 0x2e20,\n\t0xaf0: 0x2e28, 0xaf1: 0x2e30, 0xaf2: 0x2e38, 0xaf3: 0x2e40, 0xaf4: 0x2e48, 0xaf5: 0x2e50,\n\t0xaf6: 0x2e60, 0xaf7: 0x2e68, 0xaf8: 0x2e70, 0xaf9: 0x2e78, 0xafa: 0x2e80, 0xafb: 0x2e88,\n\t0xafc: 0x2ed3, 0xafd: 0x2e9b, 0xafe: 0x2e58,\n\t// Block 0x2c, offset 0xb00\n\t0xb00: 0x06bf, 0xb01: 0x071b, 0xb02: 0x06cb, 0xb03: 0x097b, 0xb04: 0x071f, 0xb05: 0x07af,\n\t0xb06: 0x06c7, 0xb07: 0x07ab, 0xb08: 0x070b, 0xb09: 0x0887, 0xb0a: 0x0d07, 0xb0b: 0x0e8f,\n\t0xb0c: 0x0dd7, 0xb0d: 0x0d1b, 0xb0e: 0x145f, 0xb0f: 0x098b, 0xb10: 0x0ccf, 0xb11: 0x0d4b,\n\t0xb12: 0x0d0b, 0xb13: 0x104b, 0xb14: 0x08fb, 0xb15: 0x0f03, 0xb16: 0x1387, 0xb17: 0x105f,\n\t0xb18: 0x0843, 0xb19: 0x108f, 0xb1a: 0x0f9b, 0xb1b: 0x0a17, 0xb1c: 0x140f, 0xb1d: 0x077f,\n\t0xb1e: 0x08ab, 0xb1f: 0x0df7, 0xb20: 0x1527, 0xb21: 0x0743, 0xb22: 0x07d3, 0xb23: 0x0d9b,\n\t0xb24: 0x06cf, 0xb25: 0x06e7, 0xb26: 0x06d3, 0xb27: 0x0adb, 0xb28: 0x08ef, 0xb29: 0x087f,\n\t0xb2a: 0x0a57, 0xb2b: 0x0a4b, 0xb2c: 0x0feb, 0xb2d: 0x073f, 0xb2e: 0x139b, 0xb2f: 0x089b,\n\t0xb30: 0x09f3, 0xb31: 0x18dc, 0xb32: 0x18df, 0xb33: 0x18e2, 0xb34: 0x18e5, 0xb35: 0x18ee,\n\t0xb36: 0x18f1, 0xb37: 0x18f4, 0xb38: 0x18f7, 0xb39: 0x18fa, 0xb3a: 0x18fd, 0xb3b: 0x1900,\n\t0xb3c: 0x1903, 0xb3d: 0x1906, 0xb3e: 0x1909, 0xb3f: 0x1912,\n\t// Block 0x2d, offset 0xb40\n\t0xb40: 0x1cc6, 0xb41: 0x1cd5, 0xb42: 0x1ce4, 0xb43: 0x1cf3, 0xb44: 0x1d02, 0xb45: 0x1d11,\n\t0xb46: 0x1d20, 0xb47: 0x1d2f, 0xb48: 0x1d3e, 0xb49: 0x218c, 0xb4a: 0x219e, 0xb4b: 0x21b0,\n\t0xb4c: 0x1954, 0xb4d: 0x1c04, 0xb4e: 0x19d2, 0xb4f: 0x1ba8, 0xb50: 0x04cb, 0xb51: 0x04d3,\n\t0xb52: 0x04db, 0xb53: 0x04e3, 0xb54: 0x04eb, 0xb55: 0x04ef, 0xb56: 0x04f3, 0xb57: 0x04f7,\n\t0xb58: 0x04fb, 0xb59: 0x04ff, 0xb5a: 0x0503, 0xb5b: 0x0507, 0xb5c: 0x050b, 0xb5d: 0x050f,\n\t0xb5e: 0x0513, 0xb5f: 0x0517, 0xb60: 0x051b, 0xb61: 0x0523, 0xb62: 0x0527, 0xb63: 0x052b,\n\t0xb64: 0x052f, 0xb65: 0x0533, 0xb66: 0x0537, 0xb67: 0x053b, 0xb68: 0x053f, 0xb69: 0x0543,\n\t0xb6a: 0x0547, 0xb6b: 0x054b, 0xb6c: 0x054f, 0xb6d: 0x0553, 0xb6e: 0x0557, 0xb6f: 0x055b,\n\t0xb70: 0x055f, 0xb71: 0x0563, 0xb72: 0x0567, 0xb73: 0x056f, 0xb74: 0x0577, 0xb75: 0x057f,\n\t0xb76: 0x0583, 0xb77: 0x0587, 0xb78: 0x058b, 0xb79: 0x058f, 0xb7a: 0x0593, 0xb7b: 0x0597,\n\t0xb7c: 0x059b, 0xb7d: 0x059f, 0xb7e: 0x05a3,\n\t// Block 0x2e, offset 0xb80\n\t0xb80: 0x2b0c, 0xb81: 0x29a8, 0xb82: 0x2b1c, 0xb83: 0x2880, 0xb84: 0x2ee4, 0xb85: 0x288a,\n\t0xb86: 0x2894, 0xb87: 0x2f28, 0xb88: 0x29b5, 0xb89: 0x289e, 0xb8a: 0x28a8, 0xb8b: 0x28b2,\n\t0xb8c: 0x29dc, 0xb8d: 0x29e9, 0xb8e: 0x29c2, 0xb8f: 0x29cf, 0xb90: 0x2ea9, 0xb91: 0x29f6,\n\t0xb92: 0x2a03, 0xb93: 0x2bbe, 0xb94: 0x26bb, 0xb95: 0x2bd1, 0xb96: 0x2be4, 0xb97: 0x2b2c,\n\t0xb98: 0x2a10, 0xb99: 0x2bf7, 0xb9a: 0x2c0a, 0xb9b: 0x2a1d, 0xb9c: 0x28bc, 0xb9d: 0x28c6,\n\t0xb9e: 0x2eb7, 0xb9f: 0x2a2a, 0xba0: 0x2b3c, 0xba1: 0x2ef5, 0xba2: 0x28d0, 0xba3: 0x28da,\n\t0xba4: 0x2a37, 0xba5: 0x28e4, 0xba6: 0x28ee, 0xba7: 0x26d0, 0xba8: 0x26d7, 0xba9: 0x28f8,\n\t0xbaa: 0x2902, 0xbab: 0x2c1d, 0xbac: 0x2a44, 0xbad: 0x2b4c, 0xbae: 0x2c30, 0xbaf: 0x2a51,\n\t0xbb0: 0x2916, 0xbb1: 0x290c, 0xbb2: 0x2f3c, 0xbb3: 0x2a5e, 0xbb4: 0x2c43, 0xbb5: 0x2920,\n\t0xbb6: 0x2b5c, 0xbb7: 0x292a, 0xbb8: 0x2a78, 0xbb9: 0x2934, 0xbba: 0x2a85, 0xbbb: 0x2f06,\n\t0xbbc: 0x2a6b, 0xbbd: 0x2b6c, 0xbbe: 0x2a92, 0xbbf: 0x26de,\n\t// Block 0x2f, offset 0xbc0\n\t0xbc0: 0x2f17, 0xbc1: 0x293e, 0xbc2: 0x2948, 0xbc3: 0x2a9f, 0xbc4: 0x2952, 0xbc5: 0x295c,\n\t0xbc6: 0x2966, 0xbc7: 0x2b7c, 0xbc8: 0x2aac, 0xbc9: 0x26e5, 0xbca: 0x2c56, 0xbcb: 0x2e90,\n\t0xbcc: 0x2b8c, 0xbcd: 0x2ab9, 0xbce: 0x2ec5, 0xbcf: 0x2970, 0xbd0: 0x297a, 0xbd1: 0x2ac6,\n\t0xbd2: 0x26ec, 0xbd3: 0x2ad3, 0xbd4: 0x2b9c, 0xbd5: 0x26f3, 0xbd6: 0x2c69, 0xbd7: 0x2984,\n\t0xbd8: 0x1cb7, 0xbd9: 0x1ccb, 0xbda: 0x1cda, 0xbdb: 0x1ce9, 0xbdc: 0x1cf8, 0xbdd: 0x1d07,\n\t0xbde: 0x1d16, 0xbdf: 0x1d25, 0xbe0: 0x1d34, 0xbe1: 0x1d43, 0xbe2: 0x2192, 0xbe3: 0x21a4,\n\t0xbe4: 0x21b6, 0xbe5: 0x21c2, 0xbe6: 0x21ce, 0xbe7: 0x21da, 0xbe8: 0x21e6, 0xbe9: 0x21f2,\n\t0xbea: 0x21fe, 0xbeb: 0x220a, 0xbec: 0x2246, 0xbed: 0x2252, 0xbee: 0x225e, 0xbef: 0x226a,\n\t0xbf0: 0x2276, 0xbf1: 0x1c14, 0xbf2: 0x19c6, 0xbf3: 0x1936, 0xbf4: 0x1be4, 0xbf5: 0x1a47,\n\t0xbf6: 0x1a56, 0xbf7: 0x19cc, 0xbf8: 0x1bfc, 0xbf9: 0x1c00, 0xbfa: 0x1960, 0xbfb: 0x2701,\n\t0xbfc: 0x270f, 0xbfd: 0x26fa, 0xbfe: 0x2708, 0xbff: 0x2ae0,\n\t// Block 0x30, offset 0xc00\n\t0xc00: 0x1a4a, 0xc01: 0x1a32, 0xc02: 0x1c60, 0xc03: 0x1a1a, 0xc04: 0x19f3, 0xc05: 0x1969,\n\t0xc06: 0x1978, 0xc07: 0x1948, 0xc08: 0x1bf0, 0xc09: 0x1d52, 0xc0a: 0x1a4d, 0xc0b: 0x1a35,\n\t0xc0c: 0x1c64, 0xc0d: 0x1c70, 0xc0e: 0x1a26, 0xc0f: 0x19fc, 0xc10: 0x1957, 0xc11: 0x1c1c,\n\t0xc12: 0x1bb0, 0xc13: 0x1b9c, 0xc14: 0x1bcc, 0xc15: 0x1c74, 0xc16: 0x1a29, 0xc17: 0x19c9,\n\t0xc18: 0x19ff, 0xc19: 0x19de, 0xc1a: 0x1a41, 0xc1b: 0x1c78, 0xc1c: 0x1a2c, 0xc1d: 0x19c0,\n\t0xc1e: 0x1a02, 0xc1f: 0x1c3c, 0xc20: 0x1bf4, 0xc21: 0x1a14, 0xc22: 0x1c24, 0xc23: 0x1c40,\n\t0xc24: 0x1bf8, 0xc25: 0x1a17, 0xc26: 0x1c28, 0xc27: 0x22e8, 0xc28: 0x22fc, 0xc29: 0x1996,\n\t0xc2a: 0x1c20, 0xc2b: 0x1bb4, 0xc2c: 0x1ba0, 0xc2d: 0x1c48, 0xc2e: 0x2716, 0xc2f: 0x27ad,\n\t0xc30: 0x1a59, 0xc31: 0x1a44, 0xc32: 0x1c7c, 0xc33: 0x1a2f, 0xc34: 0x1a50, 0xc35: 0x1a38,\n\t0xc36: 0x1c68, 0xc37: 0x1a1d, 0xc38: 0x19f6, 0xc39: 0x1981, 0xc3a: 0x1a53, 0xc3b: 0x1a3b,\n\t0xc3c: 0x1c6c, 0xc3d: 0x1a20, 0xc3e: 0x19f9, 0xc3f: 0x1984,\n\t// Block 0x31, offset 0xc40\n\t0xc40: 0x1c2c, 0xc41: 0x1bb8, 0xc42: 0x1d4d, 0xc43: 0x1939, 0xc44: 0x19ba, 0xc45: 0x19bd,\n\t0xc46: 0x22f5, 0xc47: 0x1b94, 0xc48: 0x19c3, 0xc49: 0x194b, 0xc4a: 0x19e1, 0xc4b: 0x194e,\n\t0xc4c: 0x19ea, 0xc4d: 0x196c, 0xc4e: 0x196f, 0xc4f: 0x1a05, 0xc50: 0x1a0b, 0xc51: 0x1a0e,\n\t0xc52: 0x1c30, 0xc53: 0x1a11, 0xc54: 0x1a23, 0xc55: 0x1c38, 0xc56: 0x1c44, 0xc57: 0x1990,\n\t0xc58: 0x1d57, 0xc59: 0x1bbc, 0xc5a: 0x1993, 0xc5b: 0x1a5c, 0xc5c: 0x19a5, 0xc5d: 0x19b4,\n\t0xc5e: 0x22e2, 0xc5f: 0x22dc, 0xc60: 0x1cc1, 0xc61: 0x1cd0, 0xc62: 0x1cdf, 0xc63: 0x1cee,\n\t0xc64: 0x1cfd, 0xc65: 0x1d0c, 0xc66: 0x1d1b, 0xc67: 0x1d2a, 0xc68: 0x1d39, 0xc69: 0x2186,\n\t0xc6a: 0x2198, 0xc6b: 0x21aa, 0xc6c: 0x21bc, 0xc6d: 0x21c8, 0xc6e: 0x21d4, 0xc6f: 0x21e0,\n\t0xc70: 0x21ec, 0xc71: 0x21f8, 0xc72: 0x2204, 0xc73: 0x2240, 0xc74: 0x224c, 0xc75: 0x2258,\n\t0xc76: 0x2264, 0xc77: 0x2270, 0xc78: 0x227c, 0xc79: 0x2282, 0xc7a: 0x2288, 0xc7b: 0x228e,\n\t0xc7c: 0x2294, 0xc7d: 0x22a6, 0xc7e: 0x22ac, 0xc7f: 0x1c10,\n\t// Block 0x32, offset 0xc80\n\t0xc80: 0x1377, 0xc81: 0x0cfb, 0xc82: 0x13d3, 0xc83: 0x139f, 0xc84: 0x0e57, 0xc85: 0x06eb,\n\t0xc86: 0x08df, 0xc87: 0x162b, 0xc88: 0x162b, 0xc89: 0x0a0b, 0xc8a: 0x145f, 0xc8b: 0x0943,\n\t0xc8c: 0x0a07, 0xc8d: 0x0bef, 0xc8e: 0x0fcf, 0xc8f: 0x115f, 0xc90: 0x1297, 0xc91: 0x12d3,\n\t0xc92: 0x1307, 0xc93: 0x141b, 0xc94: 0x0d73, 0xc95: 0x0dff, 0xc96: 0x0eab, 0xc97: 0x0f43,\n\t0xc98: 0x125f, 0xc99: 0x1447, 0xc9a: 0x1573, 0xc9b: 0x070f, 0xc9c: 0x08b3, 0xc9d: 0x0d87,\n\t0xc9e: 0x0ecf, 0xc9f: 0x1293, 0xca0: 0x15c3, 0xca1: 0x0ab3, 0xca2: 0x0e77, 0xca3: 0x1283,\n\t0xca4: 0x1317, 0xca5: 0x0c23, 0xca6: 0x11bb, 0xca7: 0x12df, 0xca8: 0x0b1f, 0xca9: 0x0d0f,\n\t0xcaa: 0x0e17, 0xcab: 0x0f1b, 0xcac: 0x1427, 0xcad: 0x074f, 0xcae: 0x07e7, 0xcaf: 0x0853,\n\t0xcb0: 0x0c8b, 0xcb1: 0x0d7f, 0xcb2: 0x0ecb, 0xcb3: 0x0fef, 0xcb4: 0x1177, 0xcb5: 0x128b,\n\t0xcb6: 0x12a3, 0xcb7: 0x13c7, 0xcb8: 0x14ef, 0xcb9: 0x15a3, 0xcba: 0x15bf, 0xcbb: 0x102b,\n\t0xcbc: 0x106b, 0xcbd: 0x1123, 0xcbe: 0x1243, 0xcbf: 0x147b,\n\t// Block 0x33, offset 0xcc0\n\t0xcc0: 0x15cb, 0xcc1: 0x134b, 0xcc2: 0x09c7, 0xcc3: 0x0b3b, 0xcc4: 0x10db, 0xcc5: 0x119b,\n\t0xcc6: 0x0eff, 0xcc7: 0x1033, 0xcc8: 0x1397, 0xcc9: 0x14e7, 0xcca: 0x09c3, 0xccb: 0x0a8f,\n\t0xccc: 0x0d77, 0xccd: 0x0e2b, 0xcce: 0x0e5f, 0xccf: 0x1113, 0xcd0: 0x113b, 0xcd1: 0x14a7,\n\t0xcd2: 0x084f, 0xcd3: 0x11a7, 0xcd4: 0x07f3, 0xcd5: 0x07ef, 0xcd6: 0x1097, 0xcd7: 0x1127,\n\t0xcd8: 0x125b, 0xcd9: 0x14af, 0xcda: 0x1367, 0xcdb: 0x0c27, 0xcdc: 0x0d73, 0xcdd: 0x1357,\n\t0xcde: 0x06f7, 0xcdf: 0x0a63, 0xce0: 0x0b93, 0xce1: 0x0f2f, 0xce2: 0x0faf, 0xce3: 0x0873,\n\t0xce4: 0x103b, 0xce5: 0x075f, 0xce6: 0x0b77, 0xce7: 0x06d7, 0xce8: 0x0deb, 0xce9: 0x0ca3,\n\t0xcea: 0x110f, 0xceb: 0x08c7, 0xcec: 0x09b3, 0xced: 0x0ffb, 0xcee: 0x1263, 0xcef: 0x133b,\n\t0xcf0: 0x0db7, 0xcf1: 0x13f7, 0xcf2: 0x0de3, 0xcf3: 0x0c37, 0xcf4: 0x121b, 0xcf5: 0x0c57,\n\t0xcf6: 0x0fab, 0xcf7: 0x072b, 0xcf8: 0x07a7, 0xcf9: 0x07eb, 0xcfa: 0x0d53, 0xcfb: 0x10fb,\n\t0xcfc: 0x11f3, 0xcfd: 0x1347, 0xcfe: 0x145b, 0xcff: 0x085b,\n\t// Block 0x34, offset 0xd00\n\t0xd00: 0x090f, 0xd01: 0x0a17, 0xd02: 0x0b2f, 0xd03: 0x0cbf, 0xd04: 0x0e7b, 0xd05: 0x103f,\n\t0xd06: 0x1497, 0xd07: 0x157b, 0xd08: 0x15cf, 0xd09: 0x15e7, 0xd0a: 0x0837, 0xd0b: 0x0cf3,\n\t0xd0c: 0x0da3, 0xd0d: 0x13eb, 0xd0e: 0x0afb, 0xd0f: 0x0bd7, 0xd10: 0x0bf3, 0xd11: 0x0c83,\n\t0xd12: 0x0e6b, 0xd13: 0x0eb7, 0xd14: 0x0f67, 0xd15: 0x108b, 0xd16: 0x112f, 0xd17: 0x1193,\n\t0xd18: 0x13db, 0xd19: 0x126b, 0xd1a: 0x1403, 0xd1b: 0x147f, 0xd1c: 0x080f, 0xd1d: 0x083b,\n\t0xd1e: 0x0923, 0xd1f: 0x0ea7, 0xd20: 0x12f3, 0xd21: 0x133b, 0xd22: 0x0b1b, 0xd23: 0x0b8b,\n\t0xd24: 0x0c4f, 0xd25: 0x0daf, 0xd26: 0x10d7, 0xd27: 0x0f23, 0xd28: 0x073b, 0xd29: 0x097f,\n\t0xd2a: 0x0a63, 0xd2b: 0x0ac7, 0xd2c: 0x0b97, 0xd2d: 0x0f3f, 0xd2e: 0x0f5b, 0xd2f: 0x116b,\n\t0xd30: 0x118b, 0xd31: 0x1463, 0xd32: 0x14e3, 0xd33: 0x14f3, 0xd34: 0x152f, 0xd35: 0x0753,\n\t0xd36: 0x107f, 0xd37: 0x144f, 0xd38: 0x14cb, 0xd39: 0x0baf, 0xd3a: 0x0717, 0xd3b: 0x0777,\n\t0xd3c: 0x0a67, 0xd3d: 0x0a87, 0xd3e: 0x0caf, 0xd3f: 0x0d73,\n\t// Block 0x35, offset 0xd40\n\t0xd40: 0x0ec3, 0xd41: 0x0fcb, 0xd42: 0x1277, 0xd43: 0x1417, 0xd44: 0x1623, 0xd45: 0x0ce3,\n\t0xd46: 0x14a3, 0xd47: 0x0833, 0xd48: 0x0d2f, 0xd49: 0x0d3b, 0xd4a: 0x0e0f, 0xd4b: 0x0e47,\n\t0xd4c: 0x0f4b, 0xd4d: 0x0fa7, 0xd4e: 0x1027, 0xd4f: 0x110b, 0xd50: 0x153b, 0xd51: 0x07af,\n\t0xd52: 0x0c03, 0xd53: 0x14b3, 0xd54: 0x0767, 0xd55: 0x0aab, 0xd56: 0x0e2f, 0xd57: 0x13df,\n\t0xd58: 0x0b67, 0xd59: 0x0bb7, 0xd5a: 0x0d43, 0xd5b: 0x0f2f, 0xd5c: 0x14bb, 0xd5d: 0x0817,\n\t0xd5e: 0x08ff, 0xd5f: 0x0a97, 0xd60: 0x0cd3, 0xd61: 0x0d1f, 0xd62: 0x0d5f, 0xd63: 0x0df3,\n\t0xd64: 0x0f47, 0xd65: 0x0fbb, 0xd66: 0x1157, 0xd67: 0x12f7, 0xd68: 0x1303, 0xd69: 0x1457,\n\t0xd6a: 0x14d7, 0xd6b: 0x0883, 0xd6c: 0x0e4b, 0xd6d: 0x0903, 0xd6e: 0x0ec7, 0xd6f: 0x0f6b,\n\t0xd70: 0x1287, 0xd71: 0x14bf, 0xd72: 0x15ab, 0xd73: 0x15d3, 0xd74: 0x0d37, 0xd75: 0x0e27,\n\t0xd76: 0x11c3, 0xd77: 0x10b7, 0xd78: 0x10c3, 0xd79: 0x10e7, 0xd7a: 0x0f17, 0xd7b: 0x0e9f,\n\t0xd7c: 0x1363, 0xd7d: 0x0733, 0xd7e: 0x122b, 0xd7f: 0x081b,\n\t// Block 0x36, offset 0xd80\n\t0xd80: 0x080b, 0xd81: 0x0b0b, 0xd82: 0x0c2b, 0xd83: 0x10f3, 0xd84: 0x0a53, 0xd85: 0x0e03,\n\t0xd86: 0x0cef, 0xd87: 0x13e7, 0xd88: 0x12e7, 0xd89: 0x14ab, 0xd8a: 0x1323, 0xd8b: 0x0b27,\n\t0xd8c: 0x0787, 0xd8d: 0x095b, 0xd90: 0x09af,\n\t0xd92: 0x0cdf, 0xd95: 0x07f7, 0xd96: 0x0f1f, 0xd97: 0x0fe3,\n\t0xd98: 0x1047, 0xd99: 0x1063, 0xd9a: 0x1067, 0xd9b: 0x107b, 0xd9c: 0x14fb, 0xd9d: 0x10eb,\n\t0xd9e: 0x116f, 0xda0: 0x128f, 0xda2: 0x1353,\n\t0xda5: 0x1407, 0xda6: 0x1433,\n\t0xdaa: 0x154f, 0xdab: 0x1553, 0xdac: 0x1557, 0xdad: 0x15bb, 0xdae: 0x142b, 0xdaf: 0x14c7,\n\t0xdb0: 0x0757, 0xdb1: 0x077b, 0xdb2: 0x078f, 0xdb3: 0x084b, 0xdb4: 0x0857, 0xdb5: 0x0897,\n\t0xdb6: 0x094b, 0xdb7: 0x0967, 0xdb8: 0x096f, 0xdb9: 0x09ab, 0xdba: 0x09b7, 0xdbb: 0x0a93,\n\t0xdbc: 0x0a9b, 0xdbd: 0x0ba3, 0xdbe: 0x0bcb, 0xdbf: 0x0bd3,\n\t// Block 0x37, offset 0xdc0\n\t0xdc0: 0x0beb, 0xdc1: 0x0c97, 0xdc2: 0x0cc7, 0xdc3: 0x0ce7, 0xdc4: 0x0d57, 0xdc5: 0x0e1b,\n\t0xdc6: 0x0e37, 0xdc7: 0x0e67, 0xdc8: 0x0ebb, 0xdc9: 0x0edb, 0xdca: 0x0f4f, 0xdcb: 0x102f,\n\t0xdcc: 0x104b, 0xdcd: 0x1053, 0xdce: 0x104f, 0xdcf: 0x1057, 0xdd0: 0x105b, 0xdd1: 0x105f,\n\t0xdd2: 0x1073, 0xdd3: 0x1077, 0xdd4: 0x109b, 0xdd5: 0x10af, 0xdd6: 0x10cb, 0xdd7: 0x112f,\n\t0xdd8: 0x1137, 0xdd9: 0x113f, 0xdda: 0x1153, 0xddb: 0x117b, 0xddc: 0x11cb, 0xddd: 0x11ff,\n\t0xdde: 0x11ff, 0xddf: 0x1267, 0xde0: 0x130f, 0xde1: 0x1327, 0xde2: 0x135b, 0xde3: 0x135f,\n\t0xde4: 0x13a3, 0xde5: 0x13a7, 0xde6: 0x13ff, 0xde7: 0x1407, 0xde8: 0x14db, 0xde9: 0x151f,\n\t0xdea: 0x1537, 0xdeb: 0x0b9b, 0xdec: 0x171e, 0xded: 0x11e3,\n\t0xdf0: 0x06df, 0xdf1: 0x07e3, 0xdf2: 0x07a3, 0xdf3: 0x074b, 0xdf4: 0x078b, 0xdf5: 0x07b7,\n\t0xdf6: 0x0847, 0xdf7: 0x0863, 0xdf8: 0x094b, 0xdf9: 0x0937, 0xdfa: 0x0947, 0xdfb: 0x0963,\n\t0xdfc: 0x09af, 0xdfd: 0x09bf, 0xdfe: 0x0a03, 0xdff: 0x0a0f,\n\t// Block 0x38, offset 0xe00\n\t0xe00: 0x0a2b, 0xe01: 0x0a3b, 0xe02: 0x0b23, 0xe03: 0x0b2b, 0xe04: 0x0b5b, 0xe05: 0x0b7b,\n\t0xe06: 0x0bab, 0xe07: 0x0bc3, 0xe08: 0x0bb3, 0xe09: 0x0bd3, 0xe0a: 0x0bc7, 0xe0b: 0x0beb,\n\t0xe0c: 0x0c07, 0xe0d: 0x0c5f, 0xe0e: 0x0c6b, 0xe0f: 0x0c73, 0xe10: 0x0c9b, 0xe11: 0x0cdf,\n\t0xe12: 0x0d0f, 0xe13: 0x0d13, 0xe14: 0x0d27, 0xe15: 0x0da7, 0xe16: 0x0db7, 0xe17: 0x0e0f,\n\t0xe18: 0x0e5b, 0xe19: 0x0e53, 0xe1a: 0x0e67, 0xe1b: 0x0e83, 0xe1c: 0x0ebb, 0xe1d: 0x1013,\n\t0xe1e: 0x0edf, 0xe1f: 0x0f13, 0xe20: 0x0f1f, 0xe21: 0x0f5f, 0xe22: 0x0f7b, 0xe23: 0x0f9f,\n\t0xe24: 0x0fc3, 0xe25: 0x0fc7, 0xe26: 0x0fe3, 0xe27: 0x0fe7, 0xe28: 0x0ff7, 0xe29: 0x100b,\n\t0xe2a: 0x1007, 0xe2b: 0x1037, 0xe2c: 0x10b3, 0xe2d: 0x10cb, 0xe2e: 0x10e3, 0xe2f: 0x111b,\n\t0xe30: 0x112f, 0xe31: 0x114b, 0xe32: 0x117b, 0xe33: 0x122f, 0xe34: 0x1257, 0xe35: 0x12cb,\n\t0xe36: 0x1313, 0xe37: 0x131f, 0xe38: 0x1327, 0xe39: 0x133f, 0xe3a: 0x1353, 0xe3b: 0x1343,\n\t0xe3c: 0x135b, 0xe3d: 0x1357, 0xe3e: 0x134f, 0xe3f: 0x135f,\n\t// Block 0x39, offset 0xe40\n\t0xe40: 0x136b, 0xe41: 0x13a7, 0xe42: 0x13e3, 0xe43: 0x1413, 0xe44: 0x144b, 0xe45: 0x146b,\n\t0xe46: 0x14b7, 0xe47: 0x14db, 0xe48: 0x14fb, 0xe49: 0x150f, 0xe4a: 0x151f, 0xe4b: 0x152b,\n\t0xe4c: 0x1537, 0xe4d: 0x158b, 0xe4e: 0x162b, 0xe4f: 0x16b5, 0xe50: 0x16b0, 0xe51: 0x16e2,\n\t0xe52: 0x0607, 0xe53: 0x062f, 0xe54: 0x0633, 0xe55: 0x1764, 0xe56: 0x1791, 0xe57: 0x1809,\n\t0xe58: 0x1617, 0xe59: 0x1627,\n\t// Block 0x3a, offset 0xe80\n\t0xe80: 0x19d5, 0xe81: 0x19d8, 0xe82: 0x19db, 0xe83: 0x1c08, 0xe84: 0x1c0c, 0xe85: 0x1a5f,\n\t0xe86: 0x1a5f,\n\t0xe93: 0x1d75, 0xe94: 0x1d66, 0xe95: 0x1d6b, 0xe96: 0x1d7a, 0xe97: 0x1d70,\n\t0xe9d: 0x4390,\n\t0xe9e: 0x8115, 0xe9f: 0x4402, 0xea0: 0x022d, 0xea1: 0x0215, 0xea2: 0x021e, 0xea3: 0x0221,\n\t0xea4: 0x0224, 0xea5: 0x0227, 0xea6: 0x022a, 0xea7: 0x0230, 0xea8: 0x0233, 0xea9: 0x0017,\n\t0xeaa: 0x43f0, 0xeab: 0x43f6, 0xeac: 0x44f4, 0xead: 0x44fc, 0xeae: 0x4348, 0xeaf: 0x434e,\n\t0xeb0: 0x4354, 0xeb1: 0x435a, 0xeb2: 0x4366, 0xeb3: 0x436c, 0xeb4: 0x4372, 0xeb5: 0x437e,\n\t0xeb6: 0x4384, 0xeb8: 0x438a, 0xeb9: 0x4396, 0xeba: 0x439c, 0xebb: 0x43a2,\n\t0xebc: 0x43ae, 0xebe: 0x43b4,\n\t// Block 0x3b, offset 0xec0\n\t0xec0: 0x43ba, 0xec1: 0x43c0, 0xec3: 0x43c6, 0xec4: 0x43cc,\n\t0xec6: 0x43d8, 0xec7: 0x43de, 0xec8: 0x43e4, 0xec9: 0x43ea, 0xeca: 0x43fc, 0xecb: 0x4378,\n\t0xecc: 0x4360, 0xecd: 0x43a8, 0xece: 0x43d2, 0xecf: 0x1d7f, 0xed0: 0x0299, 0xed1: 0x0299,\n\t0xed2: 0x02a2, 0xed3: 0x02a2, 0xed4: 0x02a2, 0xed5: 0x02a2, 0xed6: 0x02a5, 0xed7: 0x02a5,\n\t0xed8: 0x02a5, 0xed9: 0x02a5, 0xeda: 0x02ab, 0xedb: 0x02ab, 0xedc: 0x02ab, 0xedd: 0x02ab,\n\t0xede: 0x029f, 0xedf: 0x029f, 0xee0: 0x029f, 0xee1: 0x029f, 0xee2: 0x02a8, 0xee3: 0x02a8,\n\t0xee4: 0x02a8, 0xee5: 0x02a8, 0xee6: 0x029c, 0xee7: 0x029c, 0xee8: 0x029c, 0xee9: 0x029c,\n\t0xeea: 0x02cf, 0xeeb: 0x02cf, 0xeec: 0x02cf, 0xeed: 0x02cf, 0xeee: 0x02d2, 0xeef: 0x02d2,\n\t0xef0: 0x02d2, 0xef1: 0x02d2, 0xef2: 0x02b1, 0xef3: 0x02b1, 0xef4: 0x02b1, 0xef5: 0x02b1,\n\t0xef6: 0x02ae, 0xef7: 0x02ae, 0xef8: 0x02ae, 0xef9: 0x02ae, 0xefa: 0x02b4, 0xefb: 0x02b4,\n\t0xefc: 0x02b4, 0xefd: 0x02b4, 0xefe: 0x02b7, 0xeff: 0x02b7,\n\t// Block 0x3c, offset 0xf00\n\t0xf00: 0x02b7, 0xf01: 0x02b7, 0xf02: 0x02c0, 0xf03: 0x02c0, 0xf04: 0x02bd, 0xf05: 0x02bd,\n\t0xf06: 0x02c3, 0xf07: 0x02c3, 0xf08: 0x02ba, 0xf09: 0x02ba, 0xf0a: 0x02c9, 0xf0b: 0x02c9,\n\t0xf0c: 0x02c6, 0xf0d: 0x02c6, 0xf0e: 0x02d5, 0xf0f: 0x02d5, 0xf10: 0x02d5, 0xf11: 0x02d5,\n\t0xf12: 0x02db, 0xf13: 0x02db, 0xf14: 0x02db, 0xf15: 0x02db, 0xf16: 0x02e1, 0xf17: 0x02e1,\n\t0xf18: 0x02e1, 0xf19: 0x02e1, 0xf1a: 0x02de, 0xf1b: 0x02de, 0xf1c: 0x02de, 0xf1d: 0x02de,\n\t0xf1e: 0x02e4, 0xf1f: 0x02e4, 0xf20: 0x02e7, 0xf21: 0x02e7, 0xf22: 0x02e7, 0xf23: 0x02e7,\n\t0xf24: 0x446e, 0xf25: 0x446e, 0xf26: 0x02ed, 0xf27: 0x02ed, 0xf28: 0x02ed, 0xf29: 0x02ed,\n\t0xf2a: 0x02ea, 0xf2b: 0x02ea, 0xf2c: 0x02ea, 0xf2d: 0x02ea, 0xf2e: 0x0308, 0xf2f: 0x0308,\n\t0xf30: 0x4468, 0xf31: 0x4468,\n\t// Block 0x3d, offset 0xf40\n\t0xf53: 0x02d8, 0xf54: 0x02d8, 0xf55: 0x02d8, 0xf56: 0x02d8, 0xf57: 0x02f6,\n\t0xf58: 0x02f6, 0xf59: 0x02f3, 0xf5a: 0x02f3, 0xf5b: 0x02f9, 0xf5c: 0x02f9, 0xf5d: 0x204f,\n\t0xf5e: 0x02ff, 0xf5f: 0x02ff, 0xf60: 0x02f0, 0xf61: 0x02f0, 0xf62: 0x02fc, 0xf63: 0x02fc,\n\t0xf64: 0x0305, 0xf65: 0x0305, 0xf66: 0x0305, 0xf67: 0x0305, 0xf68: 0x028d, 0xf69: 0x028d,\n\t0xf6a: 0x25aa, 0xf6b: 0x25aa, 0xf6c: 0x261a, 0xf6d: 0x261a, 0xf6e: 0x25e9, 0xf6f: 0x25e9,\n\t0xf70: 0x2605, 0xf71: 0x2605, 0xf72: 0x25fe, 0xf73: 0x25fe, 0xf74: 0x260c, 0xf75: 0x260c,\n\t0xf76: 0x2613, 0xf77: 0x2613, 0xf78: 0x2613, 0xf79: 0x25f0, 0xf7a: 0x25f0, 0xf7b: 0x25f0,\n\t0xf7c: 0x0302, 0xf7d: 0x0302, 0xf7e: 0x0302, 0xf7f: 0x0302,\n\t// Block 0x3e, offset 0xf80\n\t0xf80: 0x25b1, 0xf81: 0x25b8, 0xf82: 0x25d4, 0xf83: 0x25f0, 0xf84: 0x25f7, 0xf85: 0x1d89,\n\t0xf86: 0x1d8e, 0xf87: 0x1d93, 0xf88: 0x1da2, 0xf89: 0x1db1, 0xf8a: 0x1db6, 0xf8b: 0x1dbb,\n\t0xf8c: 0x1dc0, 0xf8d: 0x1dc5, 0xf8e: 0x1dd4, 0xf8f: 0x1de3, 0xf90: 0x1de8, 0xf91: 0x1ded,\n\t0xf92: 0x1dfc, 0xf93: 0x1e0b, 0xf94: 0x1e10, 0xf95: 0x1e15, 0xf96: 0x1e1a, 0xf97: 0x1e29,\n\t0xf98: 0x1e2e, 0xf99: 0x1e3d, 0xf9a: 0x1e42, 0xf9b: 0x1e47, 0xf9c: 0x1e56, 0xf9d: 0x1e5b,\n\t0xf9e: 0x1e60, 0xf9f: 0x1e6a, 0xfa0: 0x1ea6, 0xfa1: 0x1eb5, 0xfa2: 0x1ec4, 0xfa3: 0x1ec9,\n\t0xfa4: 0x1ece, 0xfa5: 0x1ed8, 0xfa6: 0x1ee7, 0xfa7: 0x1eec, 0xfa8: 0x1efb, 0xfa9: 0x1f00,\n\t0xfaa: 0x1f05, 0xfab: 0x1f14, 0xfac: 0x1f19, 0xfad: 0x1f28, 0xfae: 0x1f2d, 0xfaf: 0x1f32,\n\t0xfb0: 0x1f37, 0xfb1: 0x1f3c, 0xfb2: 0x1f41, 0xfb3: 0x1f46, 0xfb4: 0x1f4b, 0xfb5: 0x1f50,\n\t0xfb6: 0x1f55, 0xfb7: 0x1f5a, 0xfb8: 0x1f5f, 0xfb9: 0x1f64, 0xfba: 0x1f69, 0xfbb: 0x1f6e,\n\t0xfbc: 0x1f73, 0xfbd: 0x1f78, 0xfbe: 0x1f7d, 0xfbf: 0x1f87,\n\t// Block 0x3f, offset 0xfc0\n\t0xfc0: 0x1f8c, 0xfc1: 0x1f91, 0xfc2: 0x1f96, 0xfc3: 0x1fa0, 0xfc4: 0x1fa5, 0xfc5: 0x1faf,\n\t0xfc6: 0x1fb4, 0xfc7: 0x1fb9, 0xfc8: 0x1fbe, 0xfc9: 0x1fc3, 0xfca: 0x1fc8, 0xfcb: 0x1fcd,\n\t0xfcc: 0x1fd2, 0xfcd: 0x1fd7, 0xfce: 0x1fe6, 0xfcf: 0x1ff5, 0xfd0: 0x1ffa, 0xfd1: 0x1fff,\n\t0xfd2: 0x2004, 0xfd3: 0x2009, 0xfd4: 0x200e, 0xfd5: 0x2018, 0xfd6: 0x201d, 0xfd7: 0x2022,\n\t0xfd8: 0x2031, 0xfd9: 0x2040, 0xfda: 0x2045, 0xfdb: 0x4420, 0xfdc: 0x4426, 0xfdd: 0x445c,\n\t0xfde: 0x44b3, 0xfdf: 0x44ba, 0xfe0: 0x44c1, 0xfe1: 0x44c8, 0xfe2: 0x44cf, 0xfe3: 0x44d6,\n\t0xfe4: 0x25c6, 0xfe5: 0x25cd, 0xfe6: 0x25d4, 0xfe7: 0x25db, 0xfe8: 0x25f0, 0xfe9: 0x25f7,\n\t0xfea: 0x1d98, 0xfeb: 0x1d9d, 0xfec: 0x1da2, 0xfed: 0x1da7, 0xfee: 0x1db1, 0xfef: 0x1db6,\n\t0xff0: 0x1dca, 0xff1: 0x1dcf, 0xff2: 0x1dd4, 0xff3: 0x1dd9, 0xff4: 0x1de3, 0xff5: 0x1de8,\n\t0xff6: 0x1df2, 0xff7: 0x1df7, 0xff8: 0x1dfc, 0xff9: 0x1e01, 0xffa: 0x1e0b, 0xffb: 0x1e10,\n\t0xffc: 0x1f3c, 0xffd: 0x1f41, 0xffe: 0x1f50, 0xfff: 0x1f55,\n\t// Block 0x40, offset 0x1000\n\t0x1000: 0x1f5a, 0x1001: 0x1f6e, 0x1002: 0x1f73, 0x1003: 0x1f78, 0x1004: 0x1f7d, 0x1005: 0x1f96,\n\t0x1006: 0x1fa0, 0x1007: 0x1fa5, 0x1008: 0x1faa, 0x1009: 0x1fbe, 0x100a: 0x1fdc, 0x100b: 0x1fe1,\n\t0x100c: 0x1fe6, 0x100d: 0x1feb, 0x100e: 0x1ff5, 0x100f: 0x1ffa, 0x1010: 0x445c, 0x1011: 0x2027,\n\t0x1012: 0x202c, 0x1013: 0x2031, 0x1014: 0x2036, 0x1015: 0x2040, 0x1016: 0x2045, 0x1017: 0x25b1,\n\t0x1018: 0x25b8, 0x1019: 0x25bf, 0x101a: 0x25d4, 0x101b: 0x25e2, 0x101c: 0x1d89, 0x101d: 0x1d8e,\n\t0x101e: 0x1d93, 0x101f: 0x1da2, 0x1020: 0x1dac, 0x1021: 0x1dbb, 0x1022: 0x1dc0, 0x1023: 0x1dc5,\n\t0x1024: 0x1dd4, 0x1025: 0x1dde, 0x1026: 0x1dfc, 0x1027: 0x1e15, 0x1028: 0x1e1a, 0x1029: 0x1e29,\n\t0x102a: 0x1e2e, 0x102b: 0x1e3d, 0x102c: 0x1e47, 0x102d: 0x1e56, 0x102e: 0x1e5b, 0x102f: 0x1e60,\n\t0x1030: 0x1e6a, 0x1031: 0x1ea6, 0x1032: 0x1eab, 0x1033: 0x1eb5, 0x1034: 0x1ec4, 0x1035: 0x1ec9,\n\t0x1036: 0x1ece, 0x1037: 0x1ed8, 0x1038: 0x1ee7, 0x1039: 0x1efb, 0x103a: 0x1f00, 0x103b: 0x1f05,\n\t0x103c: 0x1f14, 0x103d: 0x1f19, 0x103e: 0x1f28, 0x103f: 0x1f2d,\n\t// Block 0x41, offset 0x1040\n\t0x1040: 0x1f32, 0x1041: 0x1f37, 0x1042: 0x1f46, 0x1043: 0x1f4b, 0x1044: 0x1f5f, 0x1045: 0x1f64,\n\t0x1046: 0x1f69, 0x1047: 0x1f6e, 0x1048: 0x1f73, 0x1049: 0x1f87, 0x104a: 0x1f8c, 0x104b: 0x1f91,\n\t0x104c: 0x1f96, 0x104d: 0x1f9b, 0x104e: 0x1faf, 0x104f: 0x1fb4, 0x1050: 0x1fb9, 0x1051: 0x1fbe,\n\t0x1052: 0x1fcd, 0x1053: 0x1fd2, 0x1054: 0x1fd7, 0x1055: 0x1fe6, 0x1056: 0x1ff0, 0x1057: 0x1fff,\n\t0x1058: 0x2004, 0x1059: 0x4450, 0x105a: 0x2018, 0x105b: 0x201d, 0x105c: 0x2022, 0x105d: 0x2031,\n\t0x105e: 0x203b, 0x105f: 0x25d4, 0x1060: 0x25e2, 0x1061: 0x1da2, 0x1062: 0x1dac, 0x1063: 0x1dd4,\n\t0x1064: 0x1dde, 0x1065: 0x1dfc, 0x1066: 0x1e06, 0x1067: 0x1e6a, 0x1068: 0x1e6f, 0x1069: 0x1e92,\n\t0x106a: 0x1e97, 0x106b: 0x1f6e, 0x106c: 0x1f73, 0x106d: 0x1f96, 0x106e: 0x1fe6, 0x106f: 0x1ff0,\n\t0x1070: 0x2031, 0x1071: 0x203b, 0x1072: 0x4504, 0x1073: 0x450c, 0x1074: 0x4514, 0x1075: 0x1ef1,\n\t0x1076: 0x1ef6, 0x1077: 0x1f0a, 0x1078: 0x1f0f, 0x1079: 0x1f1e, 0x107a: 0x1f23, 0x107b: 0x1e74,\n\t0x107c: 0x1e79, 0x107d: 0x1e9c, 0x107e: 0x1ea1, 0x107f: 0x1e33,\n\t// Block 0x42, offset 0x1080\n\t0x1080: 0x1e38, 0x1081: 0x1e1f, 0x1082: 0x1e24, 0x1083: 0x1e4c, 0x1084: 0x1e51, 0x1085: 0x1eba,\n\t0x1086: 0x1ebf, 0x1087: 0x1edd, 0x1088: 0x1ee2, 0x1089: 0x1e7e, 0x108a: 0x1e83, 0x108b: 0x1e88,\n\t0x108c: 0x1e92, 0x108d: 0x1e8d, 0x108e: 0x1e65, 0x108f: 0x1eb0, 0x1090: 0x1ed3, 0x1091: 0x1ef1,\n\t0x1092: 0x1ef6, 0x1093: 0x1f0a, 0x1094: 0x1f0f, 0x1095: 0x1f1e, 0x1096: 0x1f23, 0x1097: 0x1e74,\n\t0x1098: 0x1e79, 0x1099: 0x1e9c, 0x109a: 0x1ea1, 0x109b: 0x1e33, 0x109c: 0x1e38, 0x109d: 0x1e1f,\n\t0x109e: 0x1e24, 0x109f: 0x1e4c, 0x10a0: 0x1e51, 0x10a1: 0x1eba, 0x10a2: 0x1ebf, 0x10a3: 0x1edd,\n\t0x10a4: 0x1ee2, 0x10a5: 0x1e7e, 0x10a6: 0x1e83, 0x10a7: 0x1e88, 0x10a8: 0x1e92, 0x10a9: 0x1e8d,\n\t0x10aa: 0x1e65, 0x10ab: 0x1eb0, 0x10ac: 0x1ed3, 0x10ad: 0x1e7e, 0x10ae: 0x1e83, 0x10af: 0x1e88,\n\t0x10b0: 0x1e92, 0x10b1: 0x1e6f, 0x10b2: 0x1e97, 0x10b3: 0x1eec, 0x10b4: 0x1e56, 0x10b5: 0x1e5b,\n\t0x10b6: 0x1e60, 0x10b7: 0x1e7e, 0x10b8: 0x1e83, 0x10b9: 0x1e88, 0x10ba: 0x1eec, 0x10bb: 0x1efb,\n\t0x10bc: 0x4408, 0x10bd: 0x4408,\n\t// Block 0x43, offset 0x10c0\n\t0x10d0: 0x2311, 0x10d1: 0x2326,\n\t0x10d2: 0x2326, 0x10d3: 0x232d, 0x10d4: 0x2334, 0x10d5: 0x2349, 0x10d6: 0x2350, 0x10d7: 0x2357,\n\t0x10d8: 0x237a, 0x10d9: 0x237a, 0x10da: 0x239d, 0x10db: 0x2396, 0x10dc: 0x23b2, 0x10dd: 0x23a4,\n\t0x10de: 0x23ab, 0x10df: 0x23ce, 0x10e0: 0x23ce, 0x10e1: 0x23c7, 0x10e2: 0x23d5, 0x10e3: 0x23d5,\n\t0x10e4: 0x23ff, 0x10e5: 0x23ff, 0x10e6: 0x241b, 0x10e7: 0x23e3, 0x10e8: 0x23e3, 0x10e9: 0x23dc,\n\t0x10ea: 0x23f1, 0x10eb: 0x23f1, 0x10ec: 0x23f8, 0x10ed: 0x23f8, 0x10ee: 0x2422, 0x10ef: 0x2430,\n\t0x10f0: 0x2430, 0x10f1: 0x2437, 0x10f2: 0x2437, 0x10f3: 0x243e, 0x10f4: 0x2445, 0x10f5: 0x244c,\n\t0x10f6: 0x2453, 0x10f7: 0x2453, 0x10f8: 0x245a, 0x10f9: 0x2468, 0x10fa: 0x2476, 0x10fb: 0x246f,\n\t0x10fc: 0x247d, 0x10fd: 0x247d, 0x10fe: 0x2492, 0x10ff: 0x2499,\n\t// Block 0x44, offset 0x1100\n\t0x1100: 0x24ca, 0x1101: 0x24d8, 0x1102: 0x24d1, 0x1103: 0x24b5, 0x1104: 0x24b5, 0x1105: 0x24df,\n\t0x1106: 0x24df, 0x1107: 0x24e6, 0x1108: 0x24e6, 0x1109: 0x2510, 0x110a: 0x2517, 0x110b: 0x251e,\n\t0x110c: 0x24f4, 0x110d: 0x2502, 0x110e: 0x2525, 0x110f: 0x252c,\n\t0x1112: 0x24fb, 0x1113: 0x2580, 0x1114: 0x2587, 0x1115: 0x255d, 0x1116: 0x2564, 0x1117: 0x2548,\n\t0x1118: 0x2548, 0x1119: 0x254f, 0x111a: 0x2579, 0x111b: 0x2572, 0x111c: 0x259c, 0x111d: 0x259c,\n\t0x111e: 0x230a, 0x111f: 0x231f, 0x1120: 0x2318, 0x1121: 0x2342, 0x1122: 0x233b, 0x1123: 0x2365,\n\t0x1124: 0x235e, 0x1125: 0x2388, 0x1126: 0x236c, 0x1127: 0x2381, 0x1128: 0x23b9, 0x1129: 0x2406,\n\t0x112a: 0x23ea, 0x112b: 0x2429, 0x112c: 0x24c3, 0x112d: 0x24ed, 0x112e: 0x2595, 0x112f: 0x258e,\n\t0x1130: 0x25a3, 0x1131: 0x253a, 0x1132: 0x24a0, 0x1133: 0x256b, 0x1134: 0x2492, 0x1135: 0x24ca,\n\t0x1136: 0x2461, 0x1137: 0x24ae, 0x1138: 0x2541, 0x1139: 0x2533, 0x113a: 0x24bc, 0x113b: 0x24a7,\n\t0x113c: 0x24bc, 0x113d: 0x2541, 0x113e: 0x2373, 0x113f: 0x238f,\n\t// Block 0x45, offset 0x1140\n\t0x1140: 0x2509, 0x1141: 0x2484, 0x1142: 0x2303, 0x1143: 0x24a7, 0x1144: 0x244c, 0x1145: 0x241b,\n\t0x1146: 0x23c0, 0x1147: 0x2556,\n\t0x1170: 0x2414, 0x1171: 0x248b, 0x1172: 0x27bf, 0x1173: 0x27b6, 0x1174: 0x27ec, 0x1175: 0x27da,\n\t0x1176: 0x27c8, 0x1177: 0x27e3, 0x1178: 0x27f5, 0x1179: 0x240d, 0x117a: 0x2c7c, 0x117b: 0x2afc,\n\t0x117c: 0x27d1,\n\t// Block 0x46, offset 0x1180\n\t0x1190: 0x0019, 0x1191: 0x0483,\n\t0x1192: 0x0487, 0x1193: 0x0035, 0x1194: 0x0037, 0x1195: 0x0003, 0x1196: 0x003f, 0x1197: 0x04bf,\n\t0x1198: 0x04c3, 0x1199: 0x1b5c,\n\t0x11a0: 0x8132, 0x11a1: 0x8132, 0x11a2: 0x8132, 0x11a3: 0x8132,\n\t0x11a4: 0x8132, 0x11a5: 0x8132, 0x11a6: 0x8132, 0x11a7: 0x812d, 0x11a8: 0x812d, 0x11a9: 0x812d,\n\t0x11aa: 0x812d, 0x11ab: 0x812d, 0x11ac: 0x812d, 0x11ad: 0x812d, 0x11ae: 0x8132, 0x11af: 0x8132,\n\t0x11b0: 0x1873, 0x11b1: 0x0443, 0x11b2: 0x043f, 0x11b3: 0x007f, 0x11b4: 0x007f, 0x11b5: 0x0011,\n\t0x11b6: 0x0013, 0x11b7: 0x00b7, 0x11b8: 0x00bb, 0x11b9: 0x04b7, 0x11ba: 0x04bb, 0x11bb: 0x04ab,\n\t0x11bc: 0x04af, 0x11bd: 0x0493, 0x11be: 0x0497, 0x11bf: 0x048b,\n\t// Block 0x47, offset 0x11c0\n\t0x11c0: 0x048f, 0x11c1: 0x049b, 0x11c2: 0x049f, 0x11c3: 0x04a3, 0x11c4: 0x04a7,\n\t0x11c7: 0x0077, 0x11c8: 0x007b, 0x11c9: 0x4269, 0x11ca: 0x4269, 0x11cb: 0x4269,\n\t0x11cc: 0x4269, 0x11cd: 0x007f, 0x11ce: 0x007f, 0x11cf: 0x007f, 0x11d0: 0x0019, 0x11d1: 0x0483,\n\t0x11d2: 0x001d, 0x11d4: 0x0037, 0x11d5: 0x0035, 0x11d6: 0x003f, 0x11d7: 0x0003,\n\t0x11d8: 0x0443, 0x11d9: 0x0011, 0x11da: 0x0013, 0x11db: 0x00b7, 0x11dc: 0x00bb, 0x11dd: 0x04b7,\n\t0x11de: 0x04bb, 0x11df: 0x0007, 0x11e0: 0x000d, 0x11e1: 0x0015, 0x11e2: 0x0017, 0x11e3: 0x001b,\n\t0x11e4: 0x0039, 0x11e5: 0x003d, 0x11e6: 0x003b, 0x11e8: 0x0079, 0x11e9: 0x0009,\n\t0x11ea: 0x000b, 0x11eb: 0x0041,\n\t0x11f0: 0x42aa, 0x11f1: 0x442c, 0x11f2: 0x42af, 0x11f4: 0x42b4,\n\t0x11f6: 0x42b9, 0x11f7: 0x4432, 0x11f8: 0x42be, 0x11f9: 0x4438, 0x11fa: 0x42c3, 0x11fb: 0x443e,\n\t0x11fc: 0x42c8, 0x11fd: 0x4444, 0x11fe: 0x42cd, 0x11ff: 0x444a,\n\t// Block 0x48, offset 0x1200\n\t0x1200: 0x0236, 0x1201: 0x440e, 0x1202: 0x440e, 0x1203: 0x4414, 0x1204: 0x4414, 0x1205: 0x4456,\n\t0x1206: 0x4456, 0x1207: 0x441a, 0x1208: 0x441a, 0x1209: 0x4462, 0x120a: 0x4462, 0x120b: 0x4462,\n\t0x120c: 0x4462, 0x120d: 0x0239, 0x120e: 0x0239, 0x120f: 0x023c, 0x1210: 0x023c, 0x1211: 0x023c,\n\t0x1212: 0x023c, 0x1213: 0x023f, 0x1214: 0x023f, 0x1215: 0x0242, 0x1216: 0x0242, 0x1217: 0x0242,\n\t0x1218: 0x0242, 0x1219: 0x0245, 0x121a: 0x0245, 0x121b: 0x0245, 0x121c: 0x0245, 0x121d: 0x0248,\n\t0x121e: 0x0248, 0x121f: 0x0248, 0x1220: 0x0248, 0x1221: 0x024b, 0x1222: 0x024b, 0x1223: 0x024b,\n\t0x1224: 0x024b, 0x1225: 0x024e, 0x1226: 0x024e, 0x1227: 0x024e, 0x1228: 0x024e, 0x1229: 0x0251,\n\t0x122a: 0x0251, 0x122b: 0x0254, 0x122c: 0x0254, 0x122d: 0x0257, 0x122e: 0x0257, 0x122f: 0x025a,\n\t0x1230: 0x025a, 0x1231: 0x025d, 0x1232: 0x025d, 0x1233: 0x025d, 0x1234: 0x025d, 0x1235: 0x0260,\n\t0x1236: 0x0260, 0x1237: 0x0260, 0x1238: 0x0260, 0x1239: 0x0263, 0x123a: 0x0263, 0x123b: 0x0263,\n\t0x123c: 0x0263, 0x123d: 0x0266, 0x123e: 0x0266, 0x123f: 0x0266,\n\t// Block 0x49, offset 0x1240\n\t0x1240: 0x0266, 0x1241: 0x0269, 0x1242: 0x0269, 0x1243: 0x0269, 0x1244: 0x0269, 0x1245: 0x026c,\n\t0x1246: 0x026c, 0x1247: 0x026c, 0x1248: 0x026c, 0x1249: 0x026f, 0x124a: 0x026f, 0x124b: 0x026f,\n\t0x124c: 0x026f, 0x124d: 0x0272, 0x124e: 0x0272, 0x124f: 0x0272, 0x1250: 0x0272, 0x1251: 0x0275,\n\t0x1252: 0x0275, 0x1253: 0x0275, 0x1254: 0x0275, 0x1255: 0x0278, 0x1256: 0x0278, 0x1257: 0x0278,\n\t0x1258: 0x0278, 0x1259: 0x027b, 0x125a: 0x027b, 0x125b: 0x027b, 0x125c: 0x027b, 0x125d: 0x027e,\n\t0x125e: 0x027e, 0x125f: 0x027e, 0x1260: 0x027e, 0x1261: 0x0281, 0x1262: 0x0281, 0x1263: 0x0281,\n\t0x1264: 0x0281, 0x1265: 0x0284, 0x1266: 0x0284, 0x1267: 0x0284, 0x1268: 0x0284, 0x1269: 0x0287,\n\t0x126a: 0x0287, 0x126b: 0x0287, 0x126c: 0x0287, 0x126d: 0x028a, 0x126e: 0x028a, 0x126f: 0x028d,\n\t0x1270: 0x028d, 0x1271: 0x0290, 0x1272: 0x0290, 0x1273: 0x0290, 0x1274: 0x0290, 0x1275: 0x2e00,\n\t0x1276: 0x2e00, 0x1277: 0x2e08, 0x1278: 0x2e08, 0x1279: 0x2e10, 0x127a: 0x2e10, 0x127b: 0x1f82,\n\t0x127c: 0x1f82,\n\t// Block 0x4a, offset 0x1280\n\t0x1280: 0x0081, 0x1281: 0x0083, 0x1282: 0x0085, 0x1283: 0x0087, 0x1284: 0x0089, 0x1285: 0x008b,\n\t0x1286: 0x008d, 0x1287: 0x008f, 0x1288: 0x0091, 0x1289: 0x0093, 0x128a: 0x0095, 0x128b: 0x0097,\n\t0x128c: 0x0099, 0x128d: 0x009b, 0x128e: 0x009d, 0x128f: 0x009f, 0x1290: 0x00a1, 0x1291: 0x00a3,\n\t0x1292: 0x00a5, 0x1293: 0x00a7, 0x1294: 0x00a9, 0x1295: 0x00ab, 0x1296: 0x00ad, 0x1297: 0x00af,\n\t0x1298: 0x00b1, 0x1299: 0x00b3, 0x129a: 0x00b5, 0x129b: 0x00b7, 0x129c: 0x00b9, 0x129d: 0x00bb,\n\t0x129e: 0x00bd, 0x129f: 0x0477, 0x12a0: 0x047b, 0x12a1: 0x0487, 0x12a2: 0x049b, 0x12a3: 0x049f,\n\t0x12a4: 0x0483, 0x12a5: 0x05ab, 0x12a6: 0x05a3, 0x12a7: 0x04c7, 0x12a8: 0x04cf, 0x12a9: 0x04d7,\n\t0x12aa: 0x04df, 0x12ab: 0x04e7, 0x12ac: 0x056b, 0x12ad: 0x0573, 0x12ae: 0x057b, 0x12af: 0x051f,\n\t0x12b0: 0x05af, 0x12b1: 0x04cb, 0x12b2: 0x04d3, 0x12b3: 0x04db, 0x12b4: 0x04e3, 0x12b5: 0x04eb,\n\t0x12b6: 0x04ef, 0x12b7: 0x04f3, 0x12b8: 0x04f7, 0x12b9: 0x04fb, 0x12ba: 0x04ff, 0x12bb: 0x0503,\n\t0x12bc: 0x0507, 0x12bd: 0x050b, 0x12be: 0x050f, 0x12bf: 0x0513,\n\t// Block 0x4b, offset 0x12c0\n\t0x12c0: 0x0517, 0x12c1: 0x051b, 0x12c2: 0x0523, 0x12c3: 0x0527, 0x12c4: 0x052b, 0x12c5: 0x052f,\n\t0x12c6: 0x0533, 0x12c7: 0x0537, 0x12c8: 0x053b, 0x12c9: 0x053f, 0x12ca: 0x0543, 0x12cb: 0x0547,\n\t0x12cc: 0x054b, 0x12cd: 0x054f, 0x12ce: 0x0553, 0x12cf: 0x0557, 0x12d0: 0x055b, 0x12d1: 0x055f,\n\t0x12d2: 0x0563, 0x12d3: 0x0567, 0x12d4: 0x056f, 0x12d5: 0x0577, 0x12d6: 0x057f, 0x12d7: 0x0583,\n\t0x12d8: 0x0587, 0x12d9: 0x058b, 0x12da: 0x058f, 0x12db: 0x0593, 0x12dc: 0x0597, 0x12dd: 0x05a7,\n\t0x12de: 0x4a78, 0x12df: 0x4a7e, 0x12e0: 0x03c3, 0x12e1: 0x0313, 0x12e2: 0x0317, 0x12e3: 0x4a3b,\n\t0x12e4: 0x031b, 0x12e5: 0x4a41, 0x12e6: 0x4a47, 0x12e7: 0x031f, 0x12e8: 0x0323, 0x12e9: 0x0327,\n\t0x12ea: 0x4a4d, 0x12eb: 0x4a53, 0x12ec: 0x4a59, 0x12ed: 0x4a5f, 0x12ee: 0x4a65, 0x12ef: 0x4a6b,\n\t0x12f0: 0x0367, 0x12f1: 0x032b, 0x12f2: 0x032f, 0x12f3: 0x0333, 0x12f4: 0x037b, 0x12f5: 0x0337,\n\t0x12f6: 0x033b, 0x12f7: 0x033f, 0x12f8: 0x0343, 0x12f9: 0x0347, 0x12fa: 0x034b, 0x12fb: 0x034f,\n\t0x12fc: 0x0353, 0x12fd: 0x0357, 0x12fe: 0x035b,\n\t// Block 0x4c, offset 0x1300\n\t0x1302: 0x49bd, 0x1303: 0x49c3, 0x1304: 0x49c9, 0x1305: 0x49cf,\n\t0x1306: 0x49d5, 0x1307: 0x49db, 0x130a: 0x49e1, 0x130b: 0x49e7,\n\t0x130c: 0x49ed, 0x130d: 0x49f3, 0x130e: 0x49f9, 0x130f: 0x49ff,\n\t0x1312: 0x4a05, 0x1313: 0x4a0b, 0x1314: 0x4a11, 0x1315: 0x4a17, 0x1316: 0x4a1d, 0x1317: 0x4a23,\n\t0x131a: 0x4a29, 0x131b: 0x4a2f, 0x131c: 0x4a35,\n\t0x1320: 0x00bf, 0x1321: 0x00c2, 0x1322: 0x00cb, 0x1323: 0x4264,\n\t0x1324: 0x00c8, 0x1325: 0x00c5, 0x1326: 0x0447, 0x1328: 0x046b, 0x1329: 0x044b,\n\t0x132a: 0x044f, 0x132b: 0x0453, 0x132c: 0x0457, 0x132d: 0x046f, 0x132e: 0x0473,\n\t// Block 0x4d, offset 0x1340\n\t0x1340: 0x0063, 0x1341: 0x0065, 0x1342: 0x0067, 0x1343: 0x0069, 0x1344: 0x006b, 0x1345: 0x006d,\n\t0x1346: 0x006f, 0x1347: 0x0071, 0x1348: 0x0073, 0x1349: 0x0075, 0x134a: 0x0083, 0x134b: 0x0085,\n\t0x134c: 0x0087, 0x134d: 0x0089, 0x134e: 0x008b, 0x134f: 0x008d, 0x1350: 0x008f, 0x1351: 0x0091,\n\t0x1352: 0x0093, 0x1353: 0x0095, 0x1354: 0x0097, 0x1355: 0x0099, 0x1356: 0x009b, 0x1357: 0x009d,\n\t0x1358: 0x009f, 0x1359: 0x00a1, 0x135a: 0x00a3, 0x135b: 0x00a5, 0x135c: 0x00a7, 0x135d: 0x00a9,\n\t0x135e: 0x00ab, 0x135f: 0x00ad, 0x1360: 0x00af, 0x1361: 0x00b1, 0x1362: 0x00b3, 0x1363: 0x00b5,\n\t0x1364: 0x00dd, 0x1365: 0x00f2, 0x1368: 0x0173, 0x1369: 0x0176,\n\t0x136a: 0x0179, 0x136b: 0x017c, 0x136c: 0x017f, 0x136d: 0x0182, 0x136e: 0x0185, 0x136f: 0x0188,\n\t0x1370: 0x018b, 0x1371: 0x018e, 0x1372: 0x0191, 0x1373: 0x0194, 0x1374: 0x0197, 0x1375: 0x019a,\n\t0x1376: 0x019d, 0x1377: 0x01a0, 0x1378: 0x01a3, 0x1379: 0x0188, 0x137a: 0x01a6, 0x137b: 0x01a9,\n\t0x137c: 0x01ac, 0x137d: 0x01af, 0x137e: 0x01b2, 0x137f: 0x01b5,\n\t// Block 0x4e, offset 0x1380\n\t0x1380: 0x01fd, 0x1381: 0x0200, 0x1382: 0x0203, 0x1383: 0x045b, 0x1384: 0x01c7, 0x1385: 0x01d0,\n\t0x1386: 0x01d6, 0x1387: 0x01fa, 0x1388: 0x01eb, 0x1389: 0x01e8, 0x138a: 0x0206, 0x138b: 0x0209,\n\t0x138e: 0x0021, 0x138f: 0x0023, 0x1390: 0x0025, 0x1391: 0x0027,\n\t0x1392: 0x0029, 0x1393: 0x002b, 0x1394: 0x002d, 0x1395: 0x002f, 0x1396: 0x0031, 0x1397: 0x0033,\n\t0x1398: 0x0021, 0x1399: 0x0023, 0x139a: 0x0025, 0x139b: 0x0027, 0x139c: 0x0029, 0x139d: 0x002b,\n\t0x139e: 0x002d, 0x139f: 0x002f, 0x13a0: 0x0031, 0x13a1: 0x0033, 0x13a2: 0x0021, 0x13a3: 0x0023,\n\t0x13a4: 0x0025, 0x13a5: 0x0027, 0x13a6: 0x0029, 0x13a7: 0x002b, 0x13a8: 0x002d, 0x13a9: 0x002f,\n\t0x13aa: 0x0031, 0x13ab: 0x0033, 0x13ac: 0x0021, 0x13ad: 0x0023, 0x13ae: 0x0025, 0x13af: 0x0027,\n\t0x13b0: 0x0029, 0x13b1: 0x002b, 0x13b2: 0x002d, 0x13b3: 0x002f, 0x13b4: 0x0031, 0x13b5: 0x0033,\n\t0x13b6: 0x0021, 0x13b7: 0x0023, 0x13b8: 0x0025, 0x13b9: 0x0027, 0x13ba: 0x0029, 0x13bb: 0x002b,\n\t0x13bc: 0x002d, 0x13bd: 0x002f, 0x13be: 0x0031, 0x13bf: 0x0033,\n\t// Block 0x4f, offset 0x13c0\n\t0x13c0: 0x0239, 0x13c1: 0x023c, 0x13c2: 0x0248, 0x13c3: 0x0251, 0x13c5: 0x028a,\n\t0x13c6: 0x025a, 0x13c7: 0x024b, 0x13c8: 0x0269, 0x13c9: 0x0290, 0x13ca: 0x027b, 0x13cb: 0x027e,\n\t0x13cc: 0x0281, 0x13cd: 0x0284, 0x13ce: 0x025d, 0x13cf: 0x026f, 0x13d0: 0x0275, 0x13d1: 0x0263,\n\t0x13d2: 0x0278, 0x13d3: 0x0257, 0x13d4: 0x0260, 0x13d5: 0x0242, 0x13d6: 0x0245, 0x13d7: 0x024e,\n\t0x13d8: 0x0254, 0x13d9: 0x0266, 0x13da: 0x026c, 0x13db: 0x0272, 0x13dc: 0x0293, 0x13dd: 0x02e4,\n\t0x13de: 0x02cc, 0x13df: 0x0296, 0x13e1: 0x023c, 0x13e2: 0x0248,\n\t0x13e4: 0x0287, 0x13e7: 0x024b, 0x13e9: 0x0290,\n\t0x13ea: 0x027b, 0x13eb: 0x027e, 0x13ec: 0x0281, 0x13ed: 0x0284, 0x13ee: 0x025d, 0x13ef: 0x026f,\n\t0x13f0: 0x0275, 0x13f1: 0x0263, 0x13f2: 0x0278, 0x13f4: 0x0260, 0x13f5: 0x0242,\n\t0x13f6: 0x0245, 0x13f7: 0x024e, 0x13f9: 0x0266, 0x13fb: 0x0272,\n\t// Block 0x50, offset 0x1400\n\t0x1402: 0x0248,\n\t0x1407: 0x024b, 0x1409: 0x0290, 0x140b: 0x027e,\n\t0x140d: 0x0284, 0x140e: 0x025d, 0x140f: 0x026f, 0x1411: 0x0263,\n\t0x1412: 0x0278, 0x1414: 0x0260, 0x1417: 0x024e,\n\t0x1419: 0x0266, 0x141b: 0x0272, 0x141d: 0x02e4,\n\t0x141f: 0x0296, 0x1421: 0x023c, 0x1422: 0x0248,\n\t0x1424: 0x0287, 0x1427: 0x024b, 0x1428: 0x0269, 0x1429: 0x0290,\n\t0x142a: 0x027b, 0x142c: 0x0281, 0x142d: 0x0284, 0x142e: 0x025d, 0x142f: 0x026f,\n\t0x1430: 0x0275, 0x1431: 0x0263, 0x1432: 0x0278, 0x1434: 0x0260, 0x1435: 0x0242,\n\t0x1436: 0x0245, 0x1437: 0x024e, 0x1439: 0x0266, 0x143a: 0x026c, 0x143b: 0x0272,\n\t0x143c: 0x0293, 0x143e: 0x02cc,\n\t// Block 0x51, offset 0x1440\n\t0x1440: 0x0239, 0x1441: 0x023c, 0x1442: 0x0248, 0x1443: 0x0251, 0x1444: 0x0287, 0x1445: 0x028a,\n\t0x1446: 0x025a, 0x1447: 0x024b, 0x1448: 0x0269, 0x1449: 0x0290, 0x144b: 0x027e,\n\t0x144c: 0x0281, 0x144d: 0x0284, 0x144e: 0x025d, 0x144f: 0x026f, 0x1450: 0x0275, 0x1451: 0x0263,\n\t0x1452: 0x0278, 0x1453: 0x0257, 0x1454: 0x0260, 0x1455: 0x0242, 0x1456: 0x0245, 0x1457: 0x024e,\n\t0x1458: 0x0254, 0x1459: 0x0266, 0x145a: 0x026c, 0x145b: 0x0272,\n\t0x1461: 0x023c, 0x1462: 0x0248, 0x1463: 0x0251,\n\t0x1465: 0x028a, 0x1466: 0x025a, 0x1467: 0x024b, 0x1468: 0x0269, 0x1469: 0x0290,\n\t0x146b: 0x027e, 0x146c: 0x0281, 0x146d: 0x0284, 0x146e: 0x025d, 0x146f: 0x026f,\n\t0x1470: 0x0275, 0x1471: 0x0263, 0x1472: 0x0278, 0x1473: 0x0257, 0x1474: 0x0260, 0x1475: 0x0242,\n\t0x1476: 0x0245, 0x1477: 0x024e, 0x1478: 0x0254, 0x1479: 0x0266, 0x147a: 0x026c, 0x147b: 0x0272,\n\t// Block 0x52, offset 0x1480\n\t0x1480: 0x1879, 0x1481: 0x1876, 0x1482: 0x187c, 0x1483: 0x18a0, 0x1484: 0x18c4, 0x1485: 0x18e8,\n\t0x1486: 0x190c, 0x1487: 0x1915, 0x1488: 0x191b, 0x1489: 0x1921, 0x148a: 0x1927,\n\t0x1490: 0x1a8c, 0x1491: 0x1a90,\n\t0x1492: 0x1a94, 0x1493: 0x1a98, 0x1494: 0x1a9c, 0x1495: 0x1aa0, 0x1496: 0x1aa4, 0x1497: 0x1aa8,\n\t0x1498: 0x1aac, 0x1499: 0x1ab0, 0x149a: 0x1ab4, 0x149b: 0x1ab8, 0x149c: 0x1abc, 0x149d: 0x1ac0,\n\t0x149e: 0x1ac4, 0x149f: 0x1ac8, 0x14a0: 0x1acc, 0x14a1: 0x1ad0, 0x14a2: 0x1ad4, 0x14a3: 0x1ad8,\n\t0x14a4: 0x1adc, 0x14a5: 0x1ae0, 0x14a6: 0x1ae4, 0x14a7: 0x1ae8, 0x14a8: 0x1aec, 0x14a9: 0x1af0,\n\t0x14aa: 0x271e, 0x14ab: 0x0047, 0x14ac: 0x0065, 0x14ad: 0x193c, 0x14ae: 0x19b1,\n\t0x14b0: 0x0043, 0x14b1: 0x0045, 0x14b2: 0x0047, 0x14b3: 0x0049, 0x14b4: 0x004b, 0x14b5: 0x004d,\n\t0x14b6: 0x004f, 0x14b7: 0x0051, 0x14b8: 0x0053, 0x14b9: 0x0055, 0x14ba: 0x0057, 0x14bb: 0x0059,\n\t0x14bc: 0x005b, 0x14bd: 0x005d, 0x14be: 0x005f, 0x14bf: 0x0061,\n\t// Block 0x53, offset 0x14c0\n\t0x14c0: 0x26ad, 0x14c1: 0x26c2, 0x14c2: 0x0503,\n\t0x14d0: 0x0c0f, 0x14d1: 0x0a47,\n\t0x14d2: 0x08d3, 0x14d3: 0x45c4, 0x14d4: 0x071b, 0x14d5: 0x09ef, 0x14d6: 0x132f, 0x14d7: 0x09ff,\n\t0x14d8: 0x0727, 0x14d9: 0x0cd7, 0x14da: 0x0eaf, 0x14db: 0x0caf, 0x14dc: 0x0827, 0x14dd: 0x0b6b,\n\t0x14de: 0x07bf, 0x14df: 0x0cb7, 0x14e0: 0x0813, 0x14e1: 0x1117, 0x14e2: 0x0f83, 0x14e3: 0x138b,\n\t0x14e4: 0x09d3, 0x14e5: 0x090b, 0x14e6: 0x0e63, 0x14e7: 0x0c1b, 0x14e8: 0x0c47, 0x14e9: 0x06bf,\n\t0x14ea: 0x06cb, 0x14eb: 0x140b, 0x14ec: 0x0adb, 0x14ed: 0x06e7, 0x14ee: 0x08ef, 0x14ef: 0x0c3b,\n\t0x14f0: 0x13b3, 0x14f1: 0x0c13, 0x14f2: 0x106f, 0x14f3: 0x10ab, 0x14f4: 0x08f7, 0x14f5: 0x0e43,\n\t0x14f6: 0x0d0b, 0x14f7: 0x0d07, 0x14f8: 0x0f97, 0x14f9: 0x082b, 0x14fa: 0x0957, 0x14fb: 0x1443,\n\t// Block 0x54, offset 0x1500\n\t0x1500: 0x06fb, 0x1501: 0x06f3, 0x1502: 0x0703, 0x1503: 0x1647, 0x1504: 0x0747, 0x1505: 0x0757,\n\t0x1506: 0x075b, 0x1507: 0x0763, 0x1508: 0x076b, 0x1509: 0x076f, 0x150a: 0x077b, 0x150b: 0x0773,\n\t0x150c: 0x05b3, 0x150d: 0x165b, 0x150e: 0x078f, 0x150f: 0x0793, 0x1510: 0x0797, 0x1511: 0x07b3,\n\t0x1512: 0x164c, 0x1513: 0x05b7, 0x1514: 0x079f, 0x1515: 0x07bf, 0x1516: 0x1656, 0x1517: 0x07cf,\n\t0x1518: 0x07d7, 0x1519: 0x0737, 0x151a: 0x07df, 0x151b: 0x07e3, 0x151c: 0x1831, 0x151d: 0x07ff,\n\t0x151e: 0x0807, 0x151f: 0x05bf, 0x1520: 0x081f, 0x1521: 0x0823, 0x1522: 0x082b, 0x1523: 0x082f,\n\t0x1524: 0x05c3, 0x1525: 0x0847, 0x1526: 0x084b, 0x1527: 0x0857, 0x1528: 0x0863, 0x1529: 0x0867,\n\t0x152a: 0x086b, 0x152b: 0x0873, 0x152c: 0x0893, 0x152d: 0x0897, 0x152e: 0x089f, 0x152f: 0x08af,\n\t0x1530: 0x08b7, 0x1531: 0x08bb, 0x1532: 0x08bb, 0x1533: 0x08bb, 0x1534: 0x166a, 0x1535: 0x0e93,\n\t0x1536: 0x08cf, 0x1537: 0x08d7, 0x1538: 0x166f, 0x1539: 0x08e3, 0x153a: 0x08eb, 0x153b: 0x08f3,\n\t0x153c: 0x091b, 0x153d: 0x0907, 0x153e: 0x0913, 0x153f: 0x0917,\n\t// Block 0x55, offset 0x1540\n\t0x1540: 0x091f, 0x1541: 0x0927, 0x1542: 0x092b, 0x1543: 0x0933, 0x1544: 0x093b, 0x1545: 0x093f,\n\t0x1546: 0x093f, 0x1547: 0x0947, 0x1548: 0x094f, 0x1549: 0x0953, 0x154a: 0x095f, 0x154b: 0x0983,\n\t0x154c: 0x0967, 0x154d: 0x0987, 0x154e: 0x096b, 0x154f: 0x0973, 0x1550: 0x080b, 0x1551: 0x09cf,\n\t0x1552: 0x0997, 0x1553: 0x099b, 0x1554: 0x099f, 0x1555: 0x0993, 0x1556: 0x09a7, 0x1557: 0x09a3,\n\t0x1558: 0x09bb, 0x1559: 0x1674, 0x155a: 0x09d7, 0x155b: 0x09db, 0x155c: 0x09e3, 0x155d: 0x09ef,\n\t0x155e: 0x09f7, 0x155f: 0x0a13, 0x1560: 0x1679, 0x1561: 0x167e, 0x1562: 0x0a1f, 0x1563: 0x0a23,\n\t0x1564: 0x0a27, 0x1565: 0x0a1b, 0x1566: 0x0a2f, 0x1567: 0x05c7, 0x1568: 0x05cb, 0x1569: 0x0a37,\n\t0x156a: 0x0a3f, 0x156b: 0x0a3f, 0x156c: 0x1683, 0x156d: 0x0a5b, 0x156e: 0x0a5f, 0x156f: 0x0a63,\n\t0x1570: 0x0a6b, 0x1571: 0x1688, 0x1572: 0x0a73, 0x1573: 0x0a77, 0x1574: 0x0b4f, 0x1575: 0x0a7f,\n\t0x1576: 0x05cf, 0x1577: 0x0a8b, 0x1578: 0x0a9b, 0x1579: 0x0aa7, 0x157a: 0x0aa3, 0x157b: 0x1692,\n\t0x157c: 0x0aaf, 0x157d: 0x1697, 0x157e: 0x0abb, 0x157f: 0x0ab7,\n\t// Block 0x56, offset 0x1580\n\t0x1580: 0x0abf, 0x1581: 0x0acf, 0x1582: 0x0ad3, 0x1583: 0x05d3, 0x1584: 0x0ae3, 0x1585: 0x0aeb,\n\t0x1586: 0x0aef, 0x1587: 0x0af3, 0x1588: 0x05d7, 0x1589: 0x169c, 0x158a: 0x05db, 0x158b: 0x0b0f,\n\t0x158c: 0x0b13, 0x158d: 0x0b17, 0x158e: 0x0b1f, 0x158f: 0x1863, 0x1590: 0x0b37, 0x1591: 0x16a6,\n\t0x1592: 0x16a6, 0x1593: 0x11d7, 0x1594: 0x0b47, 0x1595: 0x0b47, 0x1596: 0x05df, 0x1597: 0x16c9,\n\t0x1598: 0x179b, 0x1599: 0x0b57, 0x159a: 0x0b5f, 0x159b: 0x05e3, 0x159c: 0x0b73, 0x159d: 0x0b83,\n\t0x159e: 0x0b87, 0x159f: 0x0b8f, 0x15a0: 0x0b9f, 0x15a1: 0x05eb, 0x15a2: 0x05e7, 0x15a3: 0x0ba3,\n\t0x15a4: 0x16ab, 0x15a5: 0x0ba7, 0x15a6: 0x0bbb, 0x15a7: 0x0bbf, 0x15a8: 0x0bc3, 0x15a9: 0x0bbf,\n\t0x15aa: 0x0bcf, 0x15ab: 0x0bd3, 0x15ac: 0x0be3, 0x15ad: 0x0bdb, 0x15ae: 0x0bdf, 0x15af: 0x0be7,\n\t0x15b0: 0x0beb, 0x15b1: 0x0bef, 0x15b2: 0x0bfb, 0x15b3: 0x0bff, 0x15b4: 0x0c17, 0x15b5: 0x0c1f,\n\t0x15b6: 0x0c2f, 0x15b7: 0x0c43, 0x15b8: 0x16ba, 0x15b9: 0x0c3f, 0x15ba: 0x0c33, 0x15bb: 0x0c4b,\n\t0x15bc: 0x0c53, 0x15bd: 0x0c67, 0x15be: 0x16bf, 0x15bf: 0x0c6f,\n\t// Block 0x57, offset 0x15c0\n\t0x15c0: 0x0c63, 0x15c1: 0x0c5b, 0x15c2: 0x05ef, 0x15c3: 0x0c77, 0x15c4: 0x0c7f, 0x15c5: 0x0c87,\n\t0x15c6: 0x0c7b, 0x15c7: 0x05f3, 0x15c8: 0x0c97, 0x15c9: 0x0c9f, 0x15ca: 0x16c4, 0x15cb: 0x0ccb,\n\t0x15cc: 0x0cff, 0x15cd: 0x0cdb, 0x15ce: 0x05ff, 0x15cf: 0x0ce7, 0x15d0: 0x05fb, 0x15d1: 0x05f7,\n\t0x15d2: 0x07c3, 0x15d3: 0x07c7, 0x15d4: 0x0d03, 0x15d5: 0x0ceb, 0x15d6: 0x11ab, 0x15d7: 0x0663,\n\t0x15d8: 0x0d0f, 0x15d9: 0x0d13, 0x15da: 0x0d17, 0x15db: 0x0d2b, 0x15dc: 0x0d23, 0x15dd: 0x16dd,\n\t0x15de: 0x0603, 0x15df: 0x0d3f, 0x15e0: 0x0d33, 0x15e1: 0x0d4f, 0x15e2: 0x0d57, 0x15e3: 0x16e7,\n\t0x15e4: 0x0d5b, 0x15e5: 0x0d47, 0x15e6: 0x0d63, 0x15e7: 0x0607, 0x15e8: 0x0d67, 0x15e9: 0x0d6b,\n\t0x15ea: 0x0d6f, 0x15eb: 0x0d7b, 0x15ec: 0x16ec, 0x15ed: 0x0d83, 0x15ee: 0x060b, 0x15ef: 0x0d8f,\n\t0x15f0: 0x16f1, 0x15f1: 0x0d93, 0x15f2: 0x060f, 0x15f3: 0x0d9f, 0x15f4: 0x0dab, 0x15f5: 0x0db7,\n\t0x15f6: 0x0dbb, 0x15f7: 0x16f6, 0x15f8: 0x168d, 0x15f9: 0x16fb, 0x15fa: 0x0ddb, 0x15fb: 0x1700,\n\t0x15fc: 0x0de7, 0x15fd: 0x0def, 0x15fe: 0x0ddf, 0x15ff: 0x0dfb,\n\t// Block 0x58, offset 0x1600\n\t0x1600: 0x0e0b, 0x1601: 0x0e1b, 0x1602: 0x0e0f, 0x1603: 0x0e13, 0x1604: 0x0e1f, 0x1605: 0x0e23,\n\t0x1606: 0x1705, 0x1607: 0x0e07, 0x1608: 0x0e3b, 0x1609: 0x0e3f, 0x160a: 0x0613, 0x160b: 0x0e53,\n\t0x160c: 0x0e4f, 0x160d: 0x170a, 0x160e: 0x0e33, 0x160f: 0x0e6f, 0x1610: 0x170f, 0x1611: 0x1714,\n\t0x1612: 0x0e73, 0x1613: 0x0e87, 0x1614: 0x0e83, 0x1615: 0x0e7f, 0x1616: 0x0617, 0x1617: 0x0e8b,\n\t0x1618: 0x0e9b, 0x1619: 0x0e97, 0x161a: 0x0ea3, 0x161b: 0x1651, 0x161c: 0x0eb3, 0x161d: 0x1719,\n\t0x161e: 0x0ebf, 0x161f: 0x1723, 0x1620: 0x0ed3, 0x1621: 0x0edf, 0x1622: 0x0ef3, 0x1623: 0x1728,\n\t0x1624: 0x0f07, 0x1625: 0x0f0b, 0x1626: 0x172d, 0x1627: 0x1732, 0x1628: 0x0f27, 0x1629: 0x0f37,\n\t0x162a: 0x061b, 0x162b: 0x0f3b, 0x162c: 0x061f, 0x162d: 0x061f, 0x162e: 0x0f53, 0x162f: 0x0f57,\n\t0x1630: 0x0f5f, 0x1631: 0x0f63, 0x1632: 0x0f6f, 0x1633: 0x0623, 0x1634: 0x0f87, 0x1635: 0x1737,\n\t0x1636: 0x0fa3, 0x1637: 0x173c, 0x1638: 0x0faf, 0x1639: 0x16a1, 0x163a: 0x0fbf, 0x163b: 0x1741,\n\t0x163c: 0x1746, 0x163d: 0x174b, 0x163e: 0x0627, 0x163f: 0x062b,\n\t// Block 0x59, offset 0x1640\n\t0x1640: 0x0ff7, 0x1641: 0x1755, 0x1642: 0x1750, 0x1643: 0x175a, 0x1644: 0x175f, 0x1645: 0x0fff,\n\t0x1646: 0x1003, 0x1647: 0x1003, 0x1648: 0x100b, 0x1649: 0x0633, 0x164a: 0x100f, 0x164b: 0x0637,\n\t0x164c: 0x063b, 0x164d: 0x1769, 0x164e: 0x1023, 0x164f: 0x102b, 0x1650: 0x1037, 0x1651: 0x063f,\n\t0x1652: 0x176e, 0x1653: 0x105b, 0x1654: 0x1773, 0x1655: 0x1778, 0x1656: 0x107b, 0x1657: 0x1093,\n\t0x1658: 0x0643, 0x1659: 0x109b, 0x165a: 0x109f, 0x165b: 0x10a3, 0x165c: 0x177d, 0x165d: 0x1782,\n\t0x165e: 0x1782, 0x165f: 0x10bb, 0x1660: 0x0647, 0x1661: 0x1787, 0x1662: 0x10cf, 0x1663: 0x10d3,\n\t0x1664: 0x064b, 0x1665: 0x178c, 0x1666: 0x10ef, 0x1667: 0x064f, 0x1668: 0x10ff, 0x1669: 0x10f7,\n\t0x166a: 0x1107, 0x166b: 0x1796, 0x166c: 0x111f, 0x166d: 0x0653, 0x166e: 0x112b, 0x166f: 0x1133,\n\t0x1670: 0x1143, 0x1671: 0x0657, 0x1672: 0x17a0, 0x1673: 0x17a5, 0x1674: 0x065b, 0x1675: 0x17aa,\n\t0x1676: 0x115b, 0x1677: 0x17af, 0x1678: 0x1167, 0x1679: 0x1173, 0x167a: 0x117b, 0x167b: 0x17b4,\n\t0x167c: 0x17b9, 0x167d: 0x118f, 0x167e: 0x17be, 0x167f: 0x1197,\n\t// Block 0x5a, offset 0x1680\n\t0x1680: 0x16ce, 0x1681: 0x065f, 0x1682: 0x11af, 0x1683: 0x11b3, 0x1684: 0x0667, 0x1685: 0x11b7,\n\t0x1686: 0x0a33, 0x1687: 0x17c3, 0x1688: 0x17c8, 0x1689: 0x16d3, 0x168a: 0x16d8, 0x168b: 0x11d7,\n\t0x168c: 0x11db, 0x168d: 0x13f3, 0x168e: 0x066b, 0x168f: 0x1207, 0x1690: 0x1203, 0x1691: 0x120b,\n\t0x1692: 0x083f, 0x1693: 0x120f, 0x1694: 0x1213, 0x1695: 0x1217, 0x1696: 0x121f, 0x1697: 0x17cd,\n\t0x1698: 0x121b, 0x1699: 0x1223, 0x169a: 0x1237, 0x169b: 0x123b, 0x169c: 0x1227, 0x169d: 0x123f,\n\t0x169e: 0x1253, 0x169f: 0x1267, 0x16a0: 0x1233, 0x16a1: 0x1247, 0x16a2: 0x124b, 0x16a3: 0x124f,\n\t0x16a4: 0x17d2, 0x16a5: 0x17dc, 0x16a6: 0x17d7, 0x16a7: 0x066f, 0x16a8: 0x126f, 0x16a9: 0x1273,\n\t0x16aa: 0x127b, 0x16ab: 0x17f0, 0x16ac: 0x127f, 0x16ad: 0x17e1, 0x16ae: 0x0673, 0x16af: 0x0677,\n\t0x16b0: 0x17e6, 0x16b1: 0x17eb, 0x16b2: 0x067b, 0x16b3: 0x129f, 0x16b4: 0x12a3, 0x16b5: 0x12a7,\n\t0x16b6: 0x12ab, 0x16b7: 0x12b7, 0x16b8: 0x12b3, 0x16b9: 0x12bf, 0x16ba: 0x12bb, 0x16bb: 0x12cb,\n\t0x16bc: 0x12c3, 0x16bd: 0x12c7, 0x16be: 0x12cf, 0x16bf: 0x067f,\n\t// Block 0x5b, offset 0x16c0\n\t0x16c0: 0x12d7, 0x16c1: 0x12db, 0x16c2: 0x0683, 0x16c3: 0x12eb, 0x16c4: 0x12ef, 0x16c5: 0x17f5,\n\t0x16c6: 0x12fb, 0x16c7: 0x12ff, 0x16c8: 0x0687, 0x16c9: 0x130b, 0x16ca: 0x05bb, 0x16cb: 0x17fa,\n\t0x16cc: 0x17ff, 0x16cd: 0x068b, 0x16ce: 0x068f, 0x16cf: 0x1337, 0x16d0: 0x134f, 0x16d1: 0x136b,\n\t0x16d2: 0x137b, 0x16d3: 0x1804, 0x16d4: 0x138f, 0x16d5: 0x1393, 0x16d6: 0x13ab, 0x16d7: 0x13b7,\n\t0x16d8: 0x180e, 0x16d9: 0x1660, 0x16da: 0x13c3, 0x16db: 0x13bf, 0x16dc: 0x13cb, 0x16dd: 0x1665,\n\t0x16de: 0x13d7, 0x16df: 0x13e3, 0x16e0: 0x1813, 0x16e1: 0x1818, 0x16e2: 0x1423, 0x16e3: 0x142f,\n\t0x16e4: 0x1437, 0x16e5: 0x181d, 0x16e6: 0x143b, 0x16e7: 0x1467, 0x16e8: 0x1473, 0x16e9: 0x1477,\n\t0x16ea: 0x146f, 0x16eb: 0x1483, 0x16ec: 0x1487, 0x16ed: 0x1822, 0x16ee: 0x1493, 0x16ef: 0x0693,\n\t0x16f0: 0x149b, 0x16f1: 0x1827, 0x16f2: 0x0697, 0x16f3: 0x14d3, 0x16f4: 0x0ac3, 0x16f5: 0x14eb,\n\t0x16f6: 0x182c, 0x16f7: 0x1836, 0x16f8: 0x069b, 0x16f9: 0x069f, 0x16fa: 0x1513, 0x16fb: 0x183b,\n\t0x16fc: 0x06a3, 0x16fd: 0x1840, 0x16fe: 0x152b, 0x16ff: 0x152b,\n\t// Block 0x5c, offset 0x1700\n\t0x1700: 0x1533, 0x1701: 0x1845, 0x1702: 0x154b, 0x1703: 0x06a7, 0x1704: 0x155b, 0x1705: 0x1567,\n\t0x1706: 0x156f, 0x1707: 0x1577, 0x1708: 0x06ab, 0x1709: 0x184a, 0x170a: 0x158b, 0x170b: 0x15a7,\n\t0x170c: 0x15b3, 0x170d: 0x06af, 0x170e: 0x06b3, 0x170f: 0x15b7, 0x1710: 0x184f, 0x1711: 0x06b7,\n\t0x1712: 0x1854, 0x1713: 0x1859, 0x1714: 0x185e, 0x1715: 0x15db, 0x1716: 0x06bb, 0x1717: 0x15ef,\n\t0x1718: 0x15f7, 0x1719: 0x15fb, 0x171a: 0x1603, 0x171b: 0x160b, 0x171c: 0x1613, 0x171d: 0x1868,\n}\n\n// nfkcIndex: 22 blocks, 1408 entries, 1408 bytes\n// Block 0 is the zero block.\nvar nfkcIndex = [1408]uint8{\n\t// Block 0x0, offset 0x0\n\t// Block 0x1, offset 0x40\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc2: 0x5b, 0xc3: 0x01, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x5c, 0xc7: 0x04,\n\t0xc8: 0x05, 0xca: 0x5d, 0xcb: 0x5e, 0xcc: 0x06, 0xcd: 0x07, 0xce: 0x08, 0xcf: 0x09,\n\t0xd0: 0x0a, 0xd1: 0x5f, 0xd2: 0x60, 0xd3: 0x0b, 0xd6: 0x0c, 0xd7: 0x61,\n\t0xd8: 0x62, 0xd9: 0x0d, 0xdb: 0x63, 0xdc: 0x64, 0xdd: 0x65, 0xdf: 0x66,\n\t0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05,\n\t0xea: 0x06, 0xeb: 0x07, 0xec: 0x08, 0xed: 0x09, 0xef: 0x0a,\n\t0xf0: 0x13,\n\t// Block 0x4, offset 0x100\n\t0x120: 0x67, 0x121: 0x68, 0x123: 0x69, 0x124: 0x6a, 0x125: 0x6b, 0x126: 0x6c, 0x127: 0x6d,\n\t0x128: 0x6e, 0x129: 0x6f, 0x12a: 0x70, 0x12b: 0x71, 0x12c: 0x6c, 0x12d: 0x72, 0x12e: 0x73, 0x12f: 0x74,\n\t0x131: 0x75, 0x132: 0x76, 0x133: 0x77, 0x134: 0x78, 0x135: 0x79, 0x137: 0x7a,\n\t0x138: 0x7b, 0x139: 0x7c, 0x13a: 0x7d, 0x13b: 0x7e, 0x13c: 0x7f, 0x13d: 0x80, 0x13e: 0x81, 0x13f: 0x82,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x83, 0x142: 0x84, 0x143: 0x85, 0x144: 0x86, 0x145: 0x87, 0x146: 0x88, 0x147: 0x89,\n\t0x14d: 0x8a,\n\t0x15c: 0x8b, 0x15f: 0x8c,\n\t0x162: 0x8d, 0x164: 0x8e,\n\t0x168: 0x8f, 0x169: 0x90, 0x16a: 0x91, 0x16c: 0x0e, 0x16d: 0x92, 0x16e: 0x93, 0x16f: 0x94,\n\t0x170: 0x95, 0x173: 0x96, 0x174: 0x97, 0x175: 0x0f, 0x176: 0x10, 0x177: 0x11,\n\t0x178: 0x12, 0x179: 0x13, 0x17a: 0x14, 0x17b: 0x15, 0x17c: 0x16, 0x17d: 0x17, 0x17e: 0x18, 0x17f: 0x19,\n\t// Block 0x6, offset 0x180\n\t0x180: 0x98, 0x181: 0x99, 0x182: 0x9a, 0x183: 0x9b, 0x184: 0x1a, 0x185: 0x1b, 0x186: 0x9c, 0x187: 0x9d,\n\t0x188: 0x9e, 0x189: 0x1c, 0x18a: 0x1d, 0x18b: 0x9f, 0x18c: 0xa0,\n\t0x191: 0x1e, 0x192: 0x1f, 0x193: 0xa1,\n\t0x1a8: 0xa2, 0x1a9: 0xa3, 0x1ab: 0xa4,\n\t0x1b1: 0xa5, 0x1b3: 0xa6, 0x1b5: 0xa7, 0x1b7: 0xa8,\n\t0x1ba: 0xa9, 0x1bb: 0xaa, 0x1bc: 0x20, 0x1bd: 0x21, 0x1be: 0x22, 0x1bf: 0xab,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0xac, 0x1c1: 0x23, 0x1c2: 0x24, 0x1c3: 0x25, 0x1c4: 0xad, 0x1c5: 0x26, 0x1c6: 0x27,\n\t0x1c8: 0x28, 0x1c9: 0x29, 0x1ca: 0x2a, 0x1cb: 0x2b, 0x1cc: 0x2c, 0x1cd: 0x2d, 0x1ce: 0x2e, 0x1cf: 0x2f,\n\t// Block 0x8, offset 0x200\n\t0x219: 0xae, 0x21a: 0xaf, 0x21b: 0xb0, 0x21d: 0xb1, 0x21f: 0xb2,\n\t0x220: 0xb3, 0x223: 0xb4, 0x224: 0xb5, 0x225: 0xb6, 0x226: 0xb7, 0x227: 0xb8,\n\t0x22a: 0xb9, 0x22b: 0xba, 0x22d: 0xbb, 0x22f: 0xbc,\n\t0x230: 0xbd, 0x231: 0xbe, 0x232: 0xbf, 0x233: 0xc0, 0x234: 0xc1, 0x235: 0xc2, 0x236: 0xc3, 0x237: 0xbd,\n\t0x238: 0xbe, 0x239: 0xbf, 0x23a: 0xc0, 0x23b: 0xc1, 0x23c: 0xc2, 0x23d: 0xc3, 0x23e: 0xbd, 0x23f: 0xbe,\n\t// Block 0x9, offset 0x240\n\t0x240: 0xbf, 0x241: 0xc0, 0x242: 0xc1, 0x243: 0xc2, 0x244: 0xc3, 0x245: 0xbd, 0x246: 0xbe, 0x247: 0xbf,\n\t0x248: 0xc0, 0x249: 0xc1, 0x24a: 0xc2, 0x24b: 0xc3, 0x24c: 0xbd, 0x24d: 0xbe, 0x24e: 0xbf, 0x24f: 0xc0,\n\t0x250: 0xc1, 0x251: 0xc2, 0x252: 0xc3, 0x253: 0xbd, 0x254: 0xbe, 0x255: 0xbf, 0x256: 0xc0, 0x257: 0xc1,\n\t0x258: 0xc2, 0x259: 0xc3, 0x25a: 0xbd, 0x25b: 0xbe, 0x25c: 0xbf, 0x25d: 0xc0, 0x25e: 0xc1, 0x25f: 0xc2,\n\t0x260: 0xc3, 0x261: 0xbd, 0x262: 0xbe, 0x263: 0xbf, 0x264: 0xc0, 0x265: 0xc1, 0x266: 0xc2, 0x267: 0xc3,\n\t0x268: 0xbd, 0x269: 0xbe, 0x26a: 0xbf, 0x26b: 0xc0, 0x26c: 0xc1, 0x26d: 0xc2, 0x26e: 0xc3, 0x26f: 0xbd,\n\t0x270: 0xbe, 0x271: 0xbf, 0x272: 0xc0, 0x273: 0xc1, 0x274: 0xc2, 0x275: 0xc3, 0x276: 0xbd, 0x277: 0xbe,\n\t0x278: 0xbf, 0x279: 0xc0, 0x27a: 0xc1, 0x27b: 0xc2, 0x27c: 0xc3, 0x27d: 0xbd, 0x27e: 0xbe, 0x27f: 0xbf,\n\t// Block 0xa, offset 0x280\n\t0x280: 0xc0, 0x281: 0xc1, 0x282: 0xc2, 0x283: 0xc3, 0x284: 0xbd, 0x285: 0xbe, 0x286: 0xbf, 0x287: 0xc0,\n\t0x288: 0xc1, 0x289: 0xc2, 0x28a: 0xc3, 0x28b: 0xbd, 0x28c: 0xbe, 0x28d: 0xbf, 0x28e: 0xc0, 0x28f: 0xc1,\n\t0x290: 0xc2, 0x291: 0xc3, 0x292: 0xbd, 0x293: 0xbe, 0x294: 0xbf, 0x295: 0xc0, 0x296: 0xc1, 0x297: 0xc2,\n\t0x298: 0xc3, 0x299: 0xbd, 0x29a: 0xbe, 0x29b: 0xbf, 0x29c: 0xc0, 0x29d: 0xc1, 0x29e: 0xc2, 0x29f: 0xc3,\n\t0x2a0: 0xbd, 0x2a1: 0xbe, 0x2a2: 0xbf, 0x2a3: 0xc0, 0x2a4: 0xc1, 0x2a5: 0xc2, 0x2a6: 0xc3, 0x2a7: 0xbd,\n\t0x2a8: 0xbe, 0x2a9: 0xbf, 0x2aa: 0xc0, 0x2ab: 0xc1, 0x2ac: 0xc2, 0x2ad: 0xc3, 0x2ae: 0xbd, 0x2af: 0xbe,\n\t0x2b0: 0xbf, 0x2b1: 0xc0, 0x2b2: 0xc1, 0x2b3: 0xc2, 0x2b4: 0xc3, 0x2b5: 0xbd, 0x2b6: 0xbe, 0x2b7: 0xbf,\n\t0x2b8: 0xc0, 0x2b9: 0xc1, 0x2ba: 0xc2, 0x2bb: 0xc3, 0x2bc: 0xbd, 0x2bd: 0xbe, 0x2be: 0xbf, 0x2bf: 0xc0,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0xc1, 0x2c1: 0xc2, 0x2c2: 0xc3, 0x2c3: 0xbd, 0x2c4: 0xbe, 0x2c5: 0xbf, 0x2c6: 0xc0, 0x2c7: 0xc1,\n\t0x2c8: 0xc2, 0x2c9: 0xc3, 0x2ca: 0xbd, 0x2cb: 0xbe, 0x2cc: 0xbf, 0x2cd: 0xc0, 0x2ce: 0xc1, 0x2cf: 0xc2,\n\t0x2d0: 0xc3, 0x2d1: 0xbd, 0x2d2: 0xbe, 0x2d3: 0xbf, 0x2d4: 0xc0, 0x2d5: 0xc1, 0x2d6: 0xc2, 0x2d7: 0xc3,\n\t0x2d8: 0xbd, 0x2d9: 0xbe, 0x2da: 0xbf, 0x2db: 0xc0, 0x2dc: 0xc1, 0x2dd: 0xc2, 0x2de: 0xc4,\n\t// Block 0xc, offset 0x300\n\t0x324: 0x30, 0x325: 0x31, 0x326: 0x32, 0x327: 0x33,\n\t0x328: 0x34, 0x329: 0x35, 0x32a: 0x36, 0x32b: 0x37, 0x32c: 0x38, 0x32d: 0x39, 0x32e: 0x3a, 0x32f: 0x3b,\n\t0x330: 0x3c, 0x331: 0x3d, 0x332: 0x3e, 0x333: 0x3f, 0x334: 0x40, 0x335: 0x41, 0x336: 0x42, 0x337: 0x43,\n\t0x338: 0x44, 0x339: 0x45, 0x33a: 0x46, 0x33b: 0x47, 0x33c: 0xc5, 0x33d: 0x48, 0x33e: 0x49, 0x33f: 0x4a,\n\t// Block 0xd, offset 0x340\n\t0x347: 0xc6,\n\t0x34b: 0xc7, 0x34d: 0xc8,\n\t0x368: 0xc9, 0x36b: 0xca,\n\t// Block 0xe, offset 0x380\n\t0x381: 0xcb, 0x382: 0xcc, 0x384: 0xcd, 0x385: 0xb7, 0x387: 0xce,\n\t0x388: 0xcf, 0x38b: 0xd0, 0x38c: 0x6c, 0x38d: 0xd1,\n\t0x391: 0xd2, 0x392: 0xd3, 0x393: 0xd4, 0x396: 0xd5, 0x397: 0xd6,\n\t0x398: 0xd7, 0x39a: 0xd8, 0x39c: 0xd9,\n\t0x3a8: 0xda, 0x3a9: 0xdb, 0x3aa: 0xdc,\n\t0x3b0: 0xd7, 0x3b5: 0xdd,\n\t// Block 0xf, offset 0x3c0\n\t0x3eb: 0xde, 0x3ec: 0xdf,\n\t// Block 0x10, offset 0x400\n\t0x432: 0xe0,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xe1, 0x446: 0xe2, 0x447: 0xe3,\n\t0x449: 0xe4,\n\t0x450: 0xe5, 0x451: 0xe6, 0x452: 0xe7, 0x453: 0xe8, 0x454: 0xe9, 0x455: 0xea, 0x456: 0xeb, 0x457: 0xec,\n\t0x458: 0xed, 0x459: 0xee, 0x45a: 0x4b, 0x45b: 0xef, 0x45c: 0xf0, 0x45d: 0xf1, 0x45e: 0xf2, 0x45f: 0x4c,\n\t// Block 0x12, offset 0x480\n\t0x480: 0xf3,\n\t0x4a3: 0xf4, 0x4a5: 0xf5,\n\t0x4b8: 0x4d, 0x4b9: 0x4e, 0x4ba: 0x4f,\n\t// Block 0x13, offset 0x4c0\n\t0x4c4: 0x50, 0x4c5: 0xf6, 0x4c6: 0xf7,\n\t0x4c8: 0x51, 0x4c9: 0xf8,\n\t// Block 0x14, offset 0x500\n\t0x520: 0x52, 0x521: 0x53, 0x522: 0x54, 0x523: 0x55, 0x524: 0x56, 0x525: 0x57, 0x526: 0x58, 0x527: 0x59,\n\t0x528: 0x5a,\n\t// Block 0x15, offset 0x540\n\t0x550: 0x0b, 0x551: 0x0c, 0x556: 0x0d,\n\t0x55b: 0x0e, 0x55d: 0x0f, 0x55e: 0x10, 0x55f: 0x11,\n\t0x56f: 0x12,\n}\n\n// nfkcSparseOffset: 158 entries, 316 bytes\nvar nfkcSparseOffset = []uint16{0x0, 0xe, 0x12, 0x1b, 0x25, 0x35, 0x37, 0x3c, 0x47, 0x56, 0x63, 0x6b, 0x6f, 0x74, 0x76, 0x87, 0x8f, 0x96, 0x99, 0xa0, 0xa4, 0xa8, 0xaa, 0xac, 0xb5, 0xb9, 0xc0, 0xc5, 0xc8, 0xd2, 0xd5, 0xdc, 0xe4, 0xe8, 0xea, 0xed, 0xf1, 0xf7, 0x108, 0x114, 0x116, 0x11c, 0x11e, 0x120, 0x122, 0x124, 0x126, 0x128, 0x12a, 0x12d, 0x130, 0x132, 0x135, 0x138, 0x13c, 0x141, 0x14a, 0x14c, 0x14f, 0x151, 0x15c, 0x167, 0x175, 0x183, 0x193, 0x1a1, 0x1a8, 0x1ae, 0x1bd, 0x1c1, 0x1c3, 0x1c7, 0x1c9, 0x1cc, 0x1ce, 0x1d1, 0x1d3, 0x1d6, 0x1d8, 0x1da, 0x1dc, 0x1e8, 0x1f2, 0x1fc, 0x1ff, 0x203, 0x205, 0x207, 0x209, 0x20b, 0x20e, 0x210, 0x212, 0x214, 0x216, 0x21c, 0x21f, 0x223, 0x225, 0x22c, 0x232, 0x238, 0x240, 0x246, 0x24c, 0x252, 0x256, 0x258, 0x25a, 0x25c, 0x25e, 0x264, 0x267, 0x26a, 0x272, 0x279, 0x27c, 0x27f, 0x281, 0x289, 0x28c, 0x293, 0x296, 0x29c, 0x29e, 0x2a0, 0x2a3, 0x2a5, 0x2a7, 0x2a9, 0x2ab, 0x2ae, 0x2b0, 0x2b2, 0x2b4, 0x2c1, 0x2cb, 0x2cd, 0x2cf, 0x2d3, 0x2d8, 0x2e4, 0x2e9, 0x2f2, 0x2f8, 0x2fd, 0x301, 0x306, 0x30a, 0x31a, 0x328, 0x336, 0x344, 0x34a, 0x34c, 0x34f, 0x359, 0x35b}\n\n// nfkcSparseValues: 869 entries, 3476 bytes\nvar nfkcSparseValues = [869]valueRange{\n\t// Block 0x0, offset 0x0\n\t{value: 0x0002, lo: 0x0d},\n\t{value: 0x0001, lo: 0xa0, hi: 0xa0},\n\t{value: 0x4278, lo: 0xa8, hi: 0xa8},\n\t{value: 0x0083, lo: 0xaa, hi: 0xaa},\n\t{value: 0x4264, lo: 0xaf, hi: 0xaf},\n\t{value: 0x0025, lo: 0xb2, hi: 0xb3},\n\t{value: 0x425a, lo: 0xb4, hi: 0xb4},\n\t{value: 0x01dc, lo: 0xb5, hi: 0xb5},\n\t{value: 0x4291, lo: 0xb8, hi: 0xb8},\n\t{value: 0x0023, lo: 0xb9, hi: 0xb9},\n\t{value: 0x009f, lo: 0xba, hi: 0xba},\n\t{value: 0x221c, lo: 0xbc, hi: 0xbc},\n\t{value: 0x2210, lo: 0xbd, hi: 0xbd},\n\t{value: 0x22b2, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1, offset 0xe\n\t{value: 0x0091, lo: 0x03},\n\t{value: 0x46e2, lo: 0xa0, hi: 0xa1},\n\t{value: 0x4714, lo: 0xaf, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb7, hi: 0xb7},\n\t// Block 0x2, offset 0x12\n\t{value: 0x0003, lo: 0x08},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x0091, lo: 0xb0, hi: 0xb0},\n\t{value: 0x0119, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0095, lo: 0xb2, hi: 0xb2},\n\t{value: 0x00a5, lo: 0xb3, hi: 0xb3},\n\t{value: 0x0143, lo: 0xb4, hi: 0xb6},\n\t{value: 0x00af, lo: 0xb7, hi: 0xb7},\n\t{value: 0x00b3, lo: 0xb8, hi: 0xb8},\n\t// Block 0x3, offset 0x1b\n\t{value: 0x000a, lo: 0x09},\n\t{value: 0x426e, lo: 0x98, hi: 0x98},\n\t{value: 0x4273, lo: 0x99, hi: 0x9a},\n\t{value: 0x4296, lo: 0x9b, hi: 0x9b},\n\t{value: 0x425f, lo: 0x9c, hi: 0x9c},\n\t{value: 0x4282, lo: 0x9d, hi: 0x9d},\n\t{value: 0x0113, lo: 0xa0, hi: 0xa0},\n\t{value: 0x0099, lo: 0xa1, hi: 0xa1},\n\t{value: 0x00a7, lo: 0xa2, hi: 0xa3},\n\t{value: 0x0167, lo: 0xa4, hi: 0xa4},\n\t// Block 0x4, offset 0x25\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0xa000, lo: 0x8d, hi: 0x8d},\n\t{value: 0x37a5, lo: 0x90, hi: 0x90},\n\t{value: 0x37b1, lo: 0x91, hi: 0x91},\n\t{value: 0x379f, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x96, hi: 0x96},\n\t{value: 0x3817, lo: 0x97, hi: 0x97},\n\t{value: 0x37e1, lo: 0x9c, hi: 0x9c},\n\t{value: 0x37c9, lo: 0x9d, hi: 0x9d},\n\t{value: 0x37f3, lo: 0x9e, hi: 0x9e},\n\t{value: 0xa000, lo: 0xb4, hi: 0xb5},\n\t{value: 0x381d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x3823, lo: 0xb7, hi: 0xb7},\n\t// Block 0x5, offset 0x35\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x83, hi: 0x87},\n\t// Block 0x6, offset 0x37\n\t{value: 0x0001, lo: 0x04},\n\t{value: 0x8113, lo: 0x81, hi: 0x82},\n\t{value: 0x8132, lo: 0x84, hi: 0x84},\n\t{value: 0x812d, lo: 0x85, hi: 0x85},\n\t{value: 0x810d, lo: 0x87, hi: 0x87},\n\t// Block 0x7, offset 0x3c\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x97},\n\t{value: 0x8119, lo: 0x98, hi: 0x98},\n\t{value: 0x811a, lo: 0x99, hi: 0x99},\n\t{value: 0x811b, lo: 0x9a, hi: 0x9a},\n\t{value: 0x3841, lo: 0xa2, hi: 0xa2},\n\t{value: 0x3847, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3853, lo: 0xa4, hi: 0xa4},\n\t{value: 0x384d, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3859, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xa7, hi: 0xa7},\n\t// Block 0x8, offset 0x47\n\t{value: 0x0000, lo: 0x0e},\n\t{value: 0x386b, lo: 0x80, hi: 0x80},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0x385f, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x3865, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x95, hi: 0x95},\n\t{value: 0x8132, lo: 0x96, hi: 0x9c},\n\t{value: 0x8132, lo: 0x9f, hi: 0xa2},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8132, lo: 0xab, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t// Block 0x9, offset 0x56\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x811f, lo: 0x91, hi: 0x91},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x812d, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb5, hi: 0xb6},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb9},\n\t{value: 0x8132, lo: 0xba, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbc},\n\t{value: 0x8132, lo: 0xbd, hi: 0xbd},\n\t{value: 0x812d, lo: 0xbe, hi: 0xbe},\n\t{value: 0x8132, lo: 0xbf, hi: 0xbf},\n\t// Block 0xa, offset 0x63\n\t{value: 0x0005, lo: 0x07},\n\t{value: 0x8132, lo: 0x80, hi: 0x80},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x83},\n\t{value: 0x812d, lo: 0x84, hi: 0x85},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x812d, lo: 0x88, hi: 0x89},\n\t{value: 0x8132, lo: 0x8a, hi: 0x8a},\n\t// Block 0xb, offset 0x6b\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8132, lo: 0xab, hi: 0xb1},\n\t{value: 0x812d, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb3},\n\t// Block 0xc, offset 0x6f\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0x96, hi: 0x99},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa7},\n\t{value: 0x8132, lo: 0xa9, hi: 0xad},\n\t// Block 0xd, offset 0x74\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x99, hi: 0x9b},\n\t// Block 0xe, offset 0x76\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x8132, lo: 0x94, hi: 0xa1},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8132, lo: 0xaa, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xaf},\n\t{value: 0x8116, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8117, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8118, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x812d, lo: 0xb9, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbf},\n\t// Block 0xf, offset 0x87\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0xa8, hi: 0xa8},\n\t{value: 0x3ed8, lo: 0xa9, hi: 0xa9},\n\t{value: 0xa000, lo: 0xb0, hi: 0xb0},\n\t{value: 0x3ee0, lo: 0xb1, hi: 0xb1},\n\t{value: 0xa000, lo: 0xb3, hi: 0xb3},\n\t{value: 0x3ee8, lo: 0xb4, hi: 0xb4},\n\t{value: 0x9902, lo: 0xbc, hi: 0xbc},\n\t// Block 0x10, offset 0x8f\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x91, hi: 0x91},\n\t{value: 0x812d, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x93, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x94},\n\t{value: 0x451c, lo: 0x98, hi: 0x9f},\n\t// Block 0x11, offset 0x96\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x12, offset 0x99\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2c9e, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x455c, lo: 0x9c, hi: 0x9d},\n\t{value: 0x456c, lo: 0x9f, hi: 0x9f},\n\t// Block 0x13, offset 0xa0\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4594, lo: 0xb3, hi: 0xb3},\n\t{value: 0x459c, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x14, offset 0xa4\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4574, lo: 0x99, hi: 0x9b},\n\t{value: 0x458c, lo: 0x9e, hi: 0x9e},\n\t// Block 0x15, offset 0xa8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x16, offset 0xaa\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t// Block 0x17, offset 0xac\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2cb6, lo: 0x88, hi: 0x88},\n\t{value: 0x2cae, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cbe, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x96, hi: 0x97},\n\t{value: 0x45a4, lo: 0x9c, hi: 0x9c},\n\t{value: 0x45ac, lo: 0x9d, hi: 0x9d},\n\t// Block 0x18, offset 0xb5\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x2cc6, lo: 0x94, hi: 0x94},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x19, offset 0xb9\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cce, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2cde, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cd6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1a, offset 0xc0\n\t{value: 0x1801, lo: 0x04},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x3ef0, lo: 0x88, hi: 0x88},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8120, lo: 0x95, hi: 0x96},\n\t// Block 0x1b, offset 0xc5\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0xa000, lo: 0xbf, hi: 0xbf},\n\t// Block 0x1c, offset 0xc8\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x2ce6, lo: 0x80, hi: 0x80},\n\t{value: 0x9900, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x2cee, lo: 0x87, hi: 0x87},\n\t{value: 0x2cf6, lo: 0x88, hi: 0x88},\n\t{value: 0x2f50, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2dd8, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x95, hi: 0x96},\n\t// Block 0x1d, offset 0xd2\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1e, offset 0xd5\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cfe, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2d0e, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d06, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1f, offset 0xdc\n\t{value: 0x6bea, lo: 0x07},\n\t{value: 0x9904, lo: 0x8a, hi: 0x8a},\n\t{value: 0x9900, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x3ef8, lo: 0x9a, hi: 0x9a},\n\t{value: 0x2f58, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2de3, lo: 0x9d, hi: 0x9d},\n\t{value: 0x2d16, lo: 0x9e, hi: 0x9f},\n\t// Block 0x20, offset 0xe4\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x2621, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8122, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x21, offset 0xe8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8123, lo: 0x88, hi: 0x8b},\n\t// Block 0x22, offset 0xea\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x2636, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8124, lo: 0xb8, hi: 0xb9},\n\t// Block 0x23, offset 0xed\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8125, lo: 0x88, hi: 0x8b},\n\t{value: 0x2628, lo: 0x9c, hi: 0x9c},\n\t{value: 0x262f, lo: 0x9d, hi: 0x9d},\n\t// Block 0x24, offset 0xf1\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x030b, lo: 0x8c, hi: 0x8c},\n\t{value: 0x812d, lo: 0x98, hi: 0x99},\n\t{value: 0x812d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb7},\n\t{value: 0x812b, lo: 0xb9, hi: 0xb9},\n\t// Block 0x25, offset 0xf7\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x2644, lo: 0x83, hi: 0x83},\n\t{value: 0x264b, lo: 0x8d, hi: 0x8d},\n\t{value: 0x2652, lo: 0x92, hi: 0x92},\n\t{value: 0x2659, lo: 0x97, hi: 0x97},\n\t{value: 0x2660, lo: 0x9c, hi: 0x9c},\n\t{value: 0x263d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8126, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8127, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a84, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8128, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a8d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x45b4, lo: 0xb6, hi: 0xb6},\n\t{value: 0x45f4, lo: 0xb7, hi: 0xb7},\n\t{value: 0x45bc, lo: 0xb8, hi: 0xb8},\n\t{value: 0x45ff, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8127, lo: 0xba, hi: 0xbd},\n\t// Block 0x26, offset 0x108\n\t{value: 0x0000, lo: 0x0b},\n\t{value: 0x8127, lo: 0x80, hi: 0x80},\n\t{value: 0x4a96, lo: 0x81, hi: 0x81},\n\t{value: 0x8132, lo: 0x82, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0x86, hi: 0x87},\n\t{value: 0x266e, lo: 0x93, hi: 0x93},\n\t{value: 0x2675, lo: 0x9d, hi: 0x9d},\n\t{value: 0x267c, lo: 0xa2, hi: 0xa2},\n\t{value: 0x2683, lo: 0xa7, hi: 0xa7},\n\t{value: 0x268a, lo: 0xac, hi: 0xac},\n\t{value: 0x2667, lo: 0xb9, hi: 0xb9},\n\t// Block 0x27, offset 0x114\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x86, hi: 0x86},\n\t// Block 0x28, offset 0x116\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x2d1e, lo: 0xa6, hi: 0xa6},\n\t{value: 0x9900, lo: 0xae, hi: 0xae},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x29, offset 0x11c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t// Block 0x2a, offset 0x11e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x030f, lo: 0xbc, hi: 0xbc},\n\t// Block 0x2b, offset 0x120\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x80, hi: 0x92},\n\t// Block 0x2c, offset 0x122\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xb900, lo: 0xa1, hi: 0xb5},\n\t// Block 0x2d, offset 0x124\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xa8, hi: 0xbf},\n\t// Block 0x2e, offset 0x126\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0x80, hi: 0x82},\n\t// Block 0x2f, offset 0x128\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9f},\n\t// Block 0x30, offset 0x12a\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x94, hi: 0x94},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x31, offset 0x12d\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9d},\n\t// Block 0x32, offset 0x130\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8131, lo: 0xa9, hi: 0xa9},\n\t// Block 0x33, offset 0x132\n\t{value: 0x0004, lo: 0x02},\n\t{value: 0x812e, lo: 0xb9, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbb},\n\t// Block 0x34, offset 0x135\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x97, hi: 0x97},\n\t{value: 0x812d, lo: 0x98, hi: 0x98},\n\t// Block 0x35, offset 0x138\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8132, lo: 0xb5, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x36, offset 0x13c\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t{value: 0x812d, lo: 0xb5, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x37, offset 0x141\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0x2d66, lo: 0x80, hi: 0x80},\n\t{value: 0x2d6e, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x82, hi: 0x82},\n\t{value: 0x2d76, lo: 0x83, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xab, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xac},\n\t{value: 0x8132, lo: 0xad, hi: 0xb3},\n\t// Block 0x38, offset 0x14a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xaa, hi: 0xab},\n\t// Block 0x39, offset 0x14c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8104, lo: 0xb2, hi: 0xb3},\n\t// Block 0x3a, offset 0x14f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x3b, offset 0x151\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x92},\n\t{value: 0x8101, lo: 0x94, hi: 0x94},\n\t{value: 0x812d, lo: 0x95, hi: 0x99},\n\t{value: 0x8132, lo: 0x9a, hi: 0x9b},\n\t{value: 0x812d, lo: 0x9c, hi: 0x9f},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8101, lo: 0xa2, hi: 0xa8},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t{value: 0x8132, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb9},\n\t// Block 0x3c, offset 0x15c\n\t{value: 0x0002, lo: 0x0a},\n\t{value: 0x0043, lo: 0xac, hi: 0xac},\n\t{value: 0x00d1, lo: 0xad, hi: 0xad},\n\t{value: 0x0045, lo: 0xae, hi: 0xae},\n\t{value: 0x0049, lo: 0xb0, hi: 0xb1},\n\t{value: 0x00e6, lo: 0xb2, hi: 0xb2},\n\t{value: 0x004f, lo: 0xb3, hi: 0xba},\n\t{value: 0x005f, lo: 0xbc, hi: 0xbc},\n\t{value: 0x00ef, lo: 0xbd, hi: 0xbd},\n\t{value: 0x0061, lo: 0xbe, hi: 0xbe},\n\t{value: 0x0065, lo: 0xbf, hi: 0xbf},\n\t// Block 0x3d, offset 0x167\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x0001, lo: 0x80, hi: 0x8a},\n\t{value: 0x043b, lo: 0x91, hi: 0x91},\n\t{value: 0x429b, lo: 0x97, hi: 0x97},\n\t{value: 0x001d, lo: 0xa4, hi: 0xa4},\n\t{value: 0x1873, lo: 0xa5, hi: 0xa5},\n\t{value: 0x1b5c, lo: 0xa6, hi: 0xa6},\n\t{value: 0x0001, lo: 0xaf, hi: 0xaf},\n\t{value: 0x2691, lo: 0xb3, hi: 0xb3},\n\t{value: 0x27fe, lo: 0xb4, hi: 0xb4},\n\t{value: 0x2698, lo: 0xb6, hi: 0xb6},\n\t{value: 0x2808, lo: 0xb7, hi: 0xb7},\n\t{value: 0x186d, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4269, lo: 0xbe, hi: 0xbe},\n\t// Block 0x3e, offset 0x175\n\t{value: 0x0002, lo: 0x0d},\n\t{value: 0x1933, lo: 0x87, hi: 0x87},\n\t{value: 0x1930, lo: 0x88, hi: 0x88},\n\t{value: 0x1870, lo: 0x89, hi: 0x89},\n\t{value: 0x298e, lo: 0x97, hi: 0x97},\n\t{value: 0x0001, lo: 0x9f, hi: 0x9f},\n\t{value: 0x0021, lo: 0xb0, hi: 0xb0},\n\t{value: 0x0093, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0029, lo: 0xb4, hi: 0xb9},\n\t{value: 0x0017, lo: 0xba, hi: 0xba},\n\t{value: 0x0467, lo: 0xbb, hi: 0xbb},\n\t{value: 0x003b, lo: 0xbc, hi: 0xbc},\n\t{value: 0x0011, lo: 0xbd, hi: 0xbe},\n\t{value: 0x009d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x3f, offset 0x183\n\t{value: 0x0002, lo: 0x0f},\n\t{value: 0x0021, lo: 0x80, hi: 0x89},\n\t{value: 0x0017, lo: 0x8a, hi: 0x8a},\n\t{value: 0x0467, lo: 0x8b, hi: 0x8b},\n\t{value: 0x003b, lo: 0x8c, hi: 0x8c},\n\t{value: 0x0011, lo: 0x8d, hi: 0x8e},\n\t{value: 0x0083, lo: 0x90, hi: 0x90},\n\t{value: 0x008b, lo: 0x91, hi: 0x91},\n\t{value: 0x009f, lo: 0x92, hi: 0x92},\n\t{value: 0x00b1, lo: 0x93, hi: 0x93},\n\t{value: 0x0104, lo: 0x94, hi: 0x94},\n\t{value: 0x0091, lo: 0x95, hi: 0x95},\n\t{value: 0x0097, lo: 0x96, hi: 0x99},\n\t{value: 0x00a1, lo: 0x9a, hi: 0x9a},\n\t{value: 0x00a7, lo: 0x9b, hi: 0x9c},\n\t{value: 0x1999, lo: 0xa8, hi: 0xa8},\n\t// Block 0x40, offset 0x193\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x8132, lo: 0x90, hi: 0x91},\n\t{value: 0x8101, lo: 0x92, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x97},\n\t{value: 0x8101, lo: 0x98, hi: 0x9a},\n\t{value: 0x8132, lo: 0x9b, hi: 0x9c},\n\t{value: 0x8132, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8101, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa7},\n\t{value: 0x812d, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8132, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8101, lo: 0xaa, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t// Block 0x41, offset 0x1a1\n\t{value: 0x0007, lo: 0x06},\n\t{value: 0x2180, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t{value: 0x3bb9, lo: 0x9a, hi: 0x9b},\n\t{value: 0x3bc7, lo: 0xae, hi: 0xae},\n\t// Block 0x42, offset 0x1a8\n\t{value: 0x000e, lo: 0x05},\n\t{value: 0x3bce, lo: 0x8d, hi: 0x8e},\n\t{value: 0x3bd5, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t// Block 0x43, offset 0x1ae\n\t{value: 0x0173, lo: 0x0e},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0x3be3, lo: 0x84, hi: 0x84},\n\t{value: 0xa000, lo: 0x88, hi: 0x88},\n\t{value: 0x3bea, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0x3bf1, lo: 0x8c, hi: 0x8c},\n\t{value: 0xa000, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3bf8, lo: 0xa4, hi: 0xa4},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3bff, lo: 0xa6, hi: 0xa6},\n\t{value: 0x269f, lo: 0xac, hi: 0xad},\n\t{value: 0x26a6, lo: 0xaf, hi: 0xaf},\n\t{value: 0x281c, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xbc, hi: 0xbc},\n\t// Block 0x44, offset 0x1bd\n\t{value: 0x0007, lo: 0x03},\n\t{value: 0x3c68, lo: 0xa0, hi: 0xa1},\n\t{value: 0x3c92, lo: 0xa2, hi: 0xa3},\n\t{value: 0x3cbc, lo: 0xaa, hi: 0xad},\n\t// Block 0x45, offset 0x1c1\n\t{value: 0x0004, lo: 0x01},\n\t{value: 0x048b, lo: 0xa9, hi: 0xaa},\n\t// Block 0x46, offset 0x1c3\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x0057, lo: 0x80, hi: 0x8f},\n\t{value: 0x0083, lo: 0x90, hi: 0xa9},\n\t{value: 0x0021, lo: 0xaa, hi: 0xaa},\n\t// Block 0x47, offset 0x1c7\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x299b, lo: 0x8c, hi: 0x8c},\n\t// Block 0x48, offset 0x1c9\n\t{value: 0x0263, lo: 0x02},\n\t{value: 0x1b8c, lo: 0xb4, hi: 0xb4},\n\t{value: 0x192d, lo: 0xb5, hi: 0xb6},\n\t// Block 0x49, offset 0x1cc\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x44dd, lo: 0x9c, hi: 0x9c},\n\t// Block 0x4a, offset 0x1ce\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x0095, lo: 0xbc, hi: 0xbc},\n\t{value: 0x006d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x4b, offset 0x1d1\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xaf, hi: 0xb1},\n\t// Block 0x4c, offset 0x1d3\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x047f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x4d, offset 0x1d6\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa0, hi: 0xbf},\n\t// Block 0x4e, offset 0x1d8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x0dc3, lo: 0x9f, hi: 0x9f},\n\t// Block 0x4f, offset 0x1da\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x162f, lo: 0xb3, hi: 0xb3},\n\t// Block 0x50, offset 0x1dc\n\t{value: 0x0004, lo: 0x0b},\n\t{value: 0x1597, lo: 0x80, hi: 0x82},\n\t{value: 0x15af, lo: 0x83, hi: 0x83},\n\t{value: 0x15c7, lo: 0x84, hi: 0x85},\n\t{value: 0x15d7, lo: 0x86, hi: 0x89},\n\t{value: 0x15eb, lo: 0x8a, hi: 0x8c},\n\t{value: 0x15ff, lo: 0x8d, hi: 0x8d},\n\t{value: 0x1607, lo: 0x8e, hi: 0x8e},\n\t{value: 0x160f, lo: 0x8f, hi: 0x90},\n\t{value: 0x161b, lo: 0x91, hi: 0x93},\n\t{value: 0x162b, lo: 0x94, hi: 0x94},\n\t{value: 0x1633, lo: 0x95, hi: 0x95},\n\t// Block 0x51, offset 0x1e8\n\t{value: 0x0004, lo: 0x09},\n\t{value: 0x0001, lo: 0x80, hi: 0x80},\n\t{value: 0x812c, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8131, lo: 0xab, hi: 0xab},\n\t{value: 0x8133, lo: 0xac, hi: 0xac},\n\t{value: 0x812e, lo: 0xad, hi: 0xad},\n\t{value: 0x812f, lo: 0xae, hi: 0xae},\n\t{value: 0x812f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x04b3, lo: 0xb6, hi: 0xb6},\n\t{value: 0x0887, lo: 0xb8, hi: 0xba},\n\t// Block 0x52, offset 0x1f2\n\t{value: 0x0006, lo: 0x09},\n\t{value: 0x0313, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0317, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a3b, lo: 0xb3, hi: 0xb3},\n\t{value: 0x031b, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a41, lo: 0xb5, hi: 0xb6},\n\t{value: 0x031f, lo: 0xb7, hi: 0xb7},\n\t{value: 0x0323, lo: 0xb8, hi: 0xb8},\n\t{value: 0x0327, lo: 0xb9, hi: 0xb9},\n\t{value: 0x4a4d, lo: 0xba, hi: 0xbf},\n\t// Block 0x53, offset 0x1fc\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb4, hi: 0xbd},\n\t// Block 0x54, offset 0x1ff\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x020f, lo: 0x9c, hi: 0x9c},\n\t{value: 0x0212, lo: 0x9d, hi: 0x9d},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9f},\n\t// Block 0x55, offset 0x203\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb1},\n\t// Block 0x56, offset 0x205\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x163b, lo: 0xb0, hi: 0xb0},\n\t// Block 0x57, offset 0x207\n\t{value: 0x000c, lo: 0x01},\n\t{value: 0x00d7, lo: 0xb8, hi: 0xb9},\n\t// Block 0x58, offset 0x209\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t// Block 0x59, offset 0x20b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xa0, hi: 0xb1},\n\t// Block 0x5a, offset 0x20e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xab, hi: 0xad},\n\t// Block 0x5b, offset 0x210\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x93, hi: 0x93},\n\t// Block 0x5c, offset 0x212\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb3, hi: 0xb3},\n\t// Block 0x5d, offset 0x214\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t// Block 0x5e, offset 0x216\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbf},\n\t// Block 0x5f, offset 0x21c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t// Block 0x60, offset 0x21f\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x1637, lo: 0x9c, hi: 0x9d},\n\t{value: 0x0125, lo: 0x9e, hi: 0x9e},\n\t{value: 0x1643, lo: 0x9f, hi: 0x9f},\n\t// Block 0x61, offset 0x223\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xad, hi: 0xad},\n\t// Block 0x62, offset 0x225\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xe500, lo: 0x80, hi: 0x80},\n\t{value: 0xc600, lo: 0x81, hi: 0x9b},\n\t{value: 0xe500, lo: 0x9c, hi: 0x9c},\n\t{value: 0xc600, lo: 0x9d, hi: 0xb7},\n\t{value: 0xe500, lo: 0xb8, hi: 0xb8},\n\t{value: 0xc600, lo: 0xb9, hi: 0xbf},\n\t// Block 0x63, offset 0x22c\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x93},\n\t{value: 0xe500, lo: 0x94, hi: 0x94},\n\t{value: 0xc600, lo: 0x95, hi: 0xaf},\n\t{value: 0xe500, lo: 0xb0, hi: 0xb0},\n\t{value: 0xc600, lo: 0xb1, hi: 0xbf},\n\t// Block 0x64, offset 0x232\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8b},\n\t{value: 0xe500, lo: 0x8c, hi: 0x8c},\n\t{value: 0xc600, lo: 0x8d, hi: 0xa7},\n\t{value: 0xe500, lo: 0xa8, hi: 0xa8},\n\t{value: 0xc600, lo: 0xa9, hi: 0xbf},\n\t// Block 0x65, offset 0x238\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xc600, lo: 0x80, hi: 0x83},\n\t{value: 0xe500, lo: 0x84, hi: 0x84},\n\t{value: 0xc600, lo: 0x85, hi: 0x9f},\n\t{value: 0xe500, lo: 0xa0, hi: 0xa0},\n\t{value: 0xc600, lo: 0xa1, hi: 0xbb},\n\t{value: 0xe500, lo: 0xbc, hi: 0xbc},\n\t{value: 0xc600, lo: 0xbd, hi: 0xbf},\n\t// Block 0x66, offset 0x240\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x97},\n\t{value: 0xe500, lo: 0x98, hi: 0x98},\n\t{value: 0xc600, lo: 0x99, hi: 0xb3},\n\t{value: 0xe500, lo: 0xb4, hi: 0xb4},\n\t{value: 0xc600, lo: 0xb5, hi: 0xbf},\n\t// Block 0x67, offset 0x246\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8f},\n\t{value: 0xe500, lo: 0x90, hi: 0x90},\n\t{value: 0xc600, lo: 0x91, hi: 0xab},\n\t{value: 0xe500, lo: 0xac, hi: 0xac},\n\t{value: 0xc600, lo: 0xad, hi: 0xbf},\n\t// Block 0x68, offset 0x24c\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t{value: 0xe500, lo: 0xa4, hi: 0xa4},\n\t{value: 0xc600, lo: 0xa5, hi: 0xbf},\n\t// Block 0x69, offset 0x252\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t// Block 0x6a, offset 0x256\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x0003, lo: 0x81, hi: 0xbf},\n\t// Block 0x6b, offset 0x258\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x6c, offset 0x25a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xa0, hi: 0xa0},\n\t// Block 0x6d, offset 0x25c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb6, hi: 0xba},\n\t// Block 0x6e, offset 0x25e\n\t{value: 0x002c, lo: 0x05},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8101, lo: 0xb9, hi: 0xba},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x6f, offset 0x264\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t// Block 0x70, offset 0x267\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x71, offset 0x26a\n\t{value: 0x17fe, lo: 0x07},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x4238, lo: 0x9a, hi: 0x9a},\n\t{value: 0xa000, lo: 0x9b, hi: 0x9b},\n\t{value: 0x4242, lo: 0x9c, hi: 0x9c},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x424c, lo: 0xab, hi: 0xab},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x72, offset 0x272\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0x8132, lo: 0x80, hi: 0x82},\n\t{value: 0x9900, lo: 0xa7, hi: 0xa7},\n\t{value: 0x2d7e, lo: 0xae, hi: 0xae},\n\t{value: 0x2d88, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb1, hi: 0xb2},\n\t{value: 0x8104, lo: 0xb3, hi: 0xb4},\n\t// Block 0x73, offset 0x279\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x74, offset 0x27c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb5, hi: 0xb5},\n\t{value: 0x8102, lo: 0xb6, hi: 0xb6},\n\t// Block 0x75, offset 0x27f\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x8102, lo: 0xa9, hi: 0xaa},\n\t// Block 0x76, offset 0x281\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2d92, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d9c, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x8132, lo: 0xa6, hi: 0xac},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t// Block 0x77, offset 0x289\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x86, hi: 0x86},\n\t// Block 0x78, offset 0x28c\n\t{value: 0x6b5a, lo: 0x06},\n\t{value: 0x9900, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb9, hi: 0xb9},\n\t{value: 0x9900, lo: 0xba, hi: 0xba},\n\t{value: 0x2db0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x2da6, lo: 0xbc, hi: 0xbd},\n\t{value: 0x2dba, lo: 0xbe, hi: 0xbe},\n\t// Block 0x79, offset 0x293\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x83, hi: 0x83},\n\t// Block 0x7a, offset 0x296\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x9900, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb8, hi: 0xb9},\n\t{value: 0x2dc4, lo: 0xba, hi: 0xba},\n\t{value: 0x2dce, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x7b, offset 0x29c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0x80, hi: 0x80},\n\t// Block 0x7c, offset 0x29e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x7d, offset 0x2a0\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x7e, offset 0x2a3\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xab, hi: 0xab},\n\t// Block 0x7f, offset 0x2a5\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x80, offset 0x2a7\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x87, hi: 0x87},\n\t// Block 0x81, offset 0x2a9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x99, hi: 0x99},\n\t// Block 0x82, offset 0x2ab\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0x82, hi: 0x82},\n\t{value: 0x8104, lo: 0x84, hi: 0x85},\n\t// Block 0x83, offset 0x2ae\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0xb0, hi: 0xb4},\n\t// Block 0x84, offset 0x2b0\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb6},\n\t// Block 0x85, offset 0x2b2\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0x9e, hi: 0x9e},\n\t// Block 0x86, offset 0x2b4\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x45cc, lo: 0x9e, hi: 0x9e},\n\t{value: 0x45d6, lo: 0x9f, hi: 0x9f},\n\t{value: 0x460a, lo: 0xa0, hi: 0xa0},\n\t{value: 0x4618, lo: 0xa1, hi: 0xa1},\n\t{value: 0x4626, lo: 0xa2, hi: 0xa2},\n\t{value: 0x4634, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4642, lo: 0xa4, hi: 0xa4},\n\t{value: 0x812b, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8101, lo: 0xa7, hi: 0xa9},\n\t{value: 0x8130, lo: 0xad, hi: 0xad},\n\t{value: 0x812b, lo: 0xae, hi: 0xb2},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbf},\n\t// Block 0x87, offset 0x2c1\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x812d, lo: 0x80, hi: 0x82},\n\t{value: 0x8132, lo: 0x85, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8b},\n\t{value: 0x8132, lo: 0xaa, hi: 0xad},\n\t{value: 0x45e0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x45ea, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4650, lo: 0xbd, hi: 0xbd},\n\t{value: 0x466c, lo: 0xbe, hi: 0xbe},\n\t{value: 0x465e, lo: 0xbf, hi: 0xbf},\n\t// Block 0x88, offset 0x2cb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x467a, lo: 0x80, hi: 0x80},\n\t// Block 0x89, offset 0x2cd\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x82, hi: 0x84},\n\t// Block 0x8a, offset 0x2cf\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x0043, lo: 0x80, hi: 0x99},\n\t{value: 0x0083, lo: 0x9a, hi: 0xb3},\n\t{value: 0x0043, lo: 0xb4, hi: 0xbf},\n\t// Block 0x8b, offset 0x2d3\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x005b, lo: 0x80, hi: 0x8d},\n\t{value: 0x0083, lo: 0x8e, hi: 0x94},\n\t{value: 0x0093, lo: 0x96, hi: 0xa7},\n\t{value: 0x0043, lo: 0xa8, hi: 0xbf},\n\t// Block 0x8c, offset 0x2d8\n\t{value: 0x0002, lo: 0x0b},\n\t{value: 0x0073, lo: 0x80, hi: 0x81},\n\t{value: 0x0083, lo: 0x82, hi: 0x9b},\n\t{value: 0x0043, lo: 0x9c, hi: 0x9c},\n\t{value: 0x0047, lo: 0x9e, hi: 0x9f},\n\t{value: 0x004f, lo: 0xa2, hi: 0xa2},\n\t{value: 0x0055, lo: 0xa5, hi: 0xa6},\n\t{value: 0x005d, lo: 0xa9, hi: 0xac},\n\t{value: 0x0067, lo: 0xae, hi: 0xb5},\n\t{value: 0x0083, lo: 0xb6, hi: 0xb9},\n\t{value: 0x008d, lo: 0xbb, hi: 0xbb},\n\t{value: 0x0091, lo: 0xbd, hi: 0xbf},\n\t// Block 0x8d, offset 0x2e4\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x0097, lo: 0x80, hi: 0x83},\n\t{value: 0x00a1, lo: 0x85, hi: 0x8f},\n\t{value: 0x0043, lo: 0x90, hi: 0xa9},\n\t{value: 0x0083, lo: 0xaa, hi: 0xbf},\n\t// Block 0x8e, offset 0x2e9\n\t{value: 0x0002, lo: 0x08},\n\t{value: 0x00af, lo: 0x80, hi: 0x83},\n\t{value: 0x0043, lo: 0x84, hi: 0x85},\n\t{value: 0x0049, lo: 0x87, hi: 0x8a},\n\t{value: 0x0055, lo: 0x8d, hi: 0x94},\n\t{value: 0x0067, lo: 0x96, hi: 0x9c},\n\t{value: 0x0083, lo: 0x9e, hi: 0xb7},\n\t{value: 0x0043, lo: 0xb8, hi: 0xb9},\n\t{value: 0x0049, lo: 0xbb, hi: 0xbe},\n\t// Block 0x8f, offset 0x2f2\n\t{value: 0x0002, lo: 0x05},\n\t{value: 0x0053, lo: 0x80, hi: 0x84},\n\t{value: 0x005f, lo: 0x86, hi: 0x86},\n\t{value: 0x0067, lo: 0x8a, hi: 0x90},\n\t{value: 0x0083, lo: 0x92, hi: 0xab},\n\t{value: 0x0043, lo: 0xac, hi: 0xbf},\n\t// Block 0x90, offset 0x2f8\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x006b, lo: 0x80, hi: 0x85},\n\t{value: 0x0083, lo: 0x86, hi: 0x9f},\n\t{value: 0x0043, lo: 0xa0, hi: 0xb9},\n\t{value: 0x0083, lo: 0xba, hi: 0xbf},\n\t// Block 0x91, offset 0x2fd\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x008f, lo: 0x80, hi: 0x93},\n\t{value: 0x0043, lo: 0x94, hi: 0xad},\n\t{value: 0x0083, lo: 0xae, hi: 0xbf},\n\t// Block 0x92, offset 0x301\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x00a7, lo: 0x80, hi: 0x87},\n\t{value: 0x0043, lo: 0x88, hi: 0xa1},\n\t{value: 0x0083, lo: 0xa2, hi: 0xbb},\n\t{value: 0x0043, lo: 0xbc, hi: 0xbf},\n\t// Block 0x93, offset 0x306\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x004b, lo: 0x80, hi: 0x95},\n\t{value: 0x0083, lo: 0x96, hi: 0xaf},\n\t{value: 0x0043, lo: 0xb0, hi: 0xbf},\n\t// Block 0x94, offset 0x30a\n\t{value: 0x0003, lo: 0x0f},\n\t{value: 0x01b8, lo: 0x80, hi: 0x80},\n\t{value: 0x045f, lo: 0x81, hi: 0x81},\n\t{value: 0x01bb, lo: 0x82, hi: 0x9a},\n\t{value: 0x045b, lo: 0x9b, hi: 0x9b},\n\t{value: 0x01c7, lo: 0x9c, hi: 0x9c},\n\t{value: 0x01d0, lo: 0x9d, hi: 0x9d},\n\t{value: 0x01d6, lo: 0x9e, hi: 0x9e},\n\t{value: 0x01fa, lo: 0x9f, hi: 0x9f},\n\t{value: 0x01eb, lo: 0xa0, hi: 0xa0},\n\t{value: 0x01e8, lo: 0xa1, hi: 0xa1},\n\t{value: 0x0173, lo: 0xa2, hi: 0xb2},\n\t{value: 0x0188, lo: 0xb3, hi: 0xb3},\n\t{value: 0x01a6, lo: 0xb4, hi: 0xba},\n\t{value: 0x045f, lo: 0xbb, hi: 0xbb},\n\t{value: 0x01bb, lo: 0xbc, hi: 0xbf},\n\t// Block 0x95, offset 0x31a\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01c7, lo: 0x80, hi: 0x94},\n\t{value: 0x045b, lo: 0x95, hi: 0x95},\n\t{value: 0x01c7, lo: 0x96, hi: 0x96},\n\t{value: 0x01d0, lo: 0x97, hi: 0x97},\n\t{value: 0x01d6, lo: 0x98, hi: 0x98},\n\t{value: 0x01fa, lo: 0x99, hi: 0x99},\n\t{value: 0x01eb, lo: 0x9a, hi: 0x9a},\n\t{value: 0x01e8, lo: 0x9b, hi: 0x9b},\n\t{value: 0x0173, lo: 0x9c, hi: 0xac},\n\t{value: 0x0188, lo: 0xad, hi: 0xad},\n\t{value: 0x01a6, lo: 0xae, hi: 0xb4},\n\t{value: 0x045f, lo: 0xb5, hi: 0xb5},\n\t{value: 0x01bb, lo: 0xb6, hi: 0xbf},\n\t// Block 0x96, offset 0x328\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01d9, lo: 0x80, hi: 0x8e},\n\t{value: 0x045b, lo: 0x8f, hi: 0x8f},\n\t{value: 0x01c7, lo: 0x90, hi: 0x90},\n\t{value: 0x01d0, lo: 0x91, hi: 0x91},\n\t{value: 0x01d6, lo: 0x92, hi: 0x92},\n\t{value: 0x01fa, lo: 0x93, hi: 0x93},\n\t{value: 0x01eb, lo: 0x94, hi: 0x94},\n\t{value: 0x01e8, lo: 0x95, hi: 0x95},\n\t{value: 0x0173, lo: 0x96, hi: 0xa6},\n\t{value: 0x0188, lo: 0xa7, hi: 0xa7},\n\t{value: 0x01a6, lo: 0xa8, hi: 0xae},\n\t{value: 0x045f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x01bb, lo: 0xb0, hi: 0xbf},\n\t// Block 0x97, offset 0x336\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01eb, lo: 0x80, hi: 0x88},\n\t{value: 0x045b, lo: 0x89, hi: 0x89},\n\t{value: 0x01c7, lo: 0x8a, hi: 0x8a},\n\t{value: 0x01d0, lo: 0x8b, hi: 0x8b},\n\t{value: 0x01d6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x01fa, lo: 0x8d, hi: 0x8d},\n\t{value: 0x01eb, lo: 0x8e, hi: 0x8e},\n\t{value: 0x01e8, lo: 0x8f, hi: 0x8f},\n\t{value: 0x0173, lo: 0x90, hi: 0xa0},\n\t{value: 0x0188, lo: 0xa1, hi: 0xa1},\n\t{value: 0x01a6, lo: 0xa2, hi: 0xa8},\n\t{value: 0x045f, lo: 0xa9, hi: 0xa9},\n\t{value: 0x01bb, lo: 0xaa, hi: 0xbf},\n\t// Block 0x98, offset 0x344\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0x80, hi: 0x86},\n\t{value: 0x8132, lo: 0x88, hi: 0x98},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa1},\n\t{value: 0x8132, lo: 0xa3, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa6, hi: 0xaa},\n\t// Block 0x99, offset 0x34a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x90, hi: 0x96},\n\t// Block 0x9a, offset 0x34c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x84, hi: 0x89},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x9b, offset 0x34f\n\t{value: 0x0002, lo: 0x09},\n\t{value: 0x0063, lo: 0x80, hi: 0x89},\n\t{value: 0x1951, lo: 0x8a, hi: 0x8a},\n\t{value: 0x1981, lo: 0x8b, hi: 0x8b},\n\t{value: 0x199c, lo: 0x8c, hi: 0x8c},\n\t{value: 0x19a2, lo: 0x8d, hi: 0x8d},\n\t{value: 0x1bc0, lo: 0x8e, hi: 0x8e},\n\t{value: 0x19ae, lo: 0x8f, hi: 0x8f},\n\t{value: 0x197b, lo: 0xaa, hi: 0xaa},\n\t{value: 0x197e, lo: 0xab, hi: 0xab},\n\t// Block 0x9c, offset 0x359\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x193f, lo: 0x90, hi: 0x90},\n\t// Block 0x9d, offset 0x35b\n\t{value: 0x0028, lo: 0x09},\n\t{value: 0x2862, lo: 0x80, hi: 0x80},\n\t{value: 0x2826, lo: 0x81, hi: 0x81},\n\t{value: 0x2830, lo: 0x82, hi: 0x82},\n\t{value: 0x2844, lo: 0x83, hi: 0x84},\n\t{value: 0x284e, lo: 0x85, hi: 0x86},\n\t{value: 0x283a, lo: 0x87, hi: 0x87},\n\t{value: 0x2858, lo: 0x88, hi: 0x88},\n\t{value: 0x0b6f, lo: 0x90, hi: 0x90},\n\t{value: 0x08e7, lo: 0x91, hi: 0x91},\n}\n\n// recompMap: 7520 bytes (entries only)\nvar recompMap map[uint32]rune\nvar recompMapOnce sync.Once\n\nconst recompMapPacked = \"\" +\n\t\"\\x00A\\x03\\x00\\x00\\x00\\x00\\xc0\" + // 0x00410300: 0x000000C0\n\t\"\\x00A\\x03\\x01\\x00\\x00\\x00\\xc1\" + // 0x00410301: 0x000000C1\n\t\"\\x00A\\x03\\x02\\x00\\x00\\x00\\xc2\" + // 0x00410302: 0x000000C2\n\t\"\\x00A\\x03\\x03\\x00\\x00\\x00\\xc3\" + // 0x00410303: 0x000000C3\n\t\"\\x00A\\x03\\b\\x00\\x00\\x00\\xc4\" + // 0x00410308: 0x000000C4\n\t\"\\x00A\\x03\\n\\x00\\x00\\x00\\xc5\" + // 0x0041030A: 0x000000C5\n\t\"\\x00C\\x03'\\x00\\x00\\x00\\xc7\" + // 0x00430327: 0x000000C7\n\t\"\\x00E\\x03\\x00\\x00\\x00\\x00\\xc8\" + // 0x00450300: 0x000000C8\n\t\"\\x00E\\x03\\x01\\x00\\x00\\x00\\xc9\" + // 0x00450301: 0x000000C9\n\t\"\\x00E\\x03\\x02\\x00\\x00\\x00\\xca\" + // 0x00450302: 0x000000CA\n\t\"\\x00E\\x03\\b\\x00\\x00\\x00\\xcb\" + // 0x00450308: 0x000000CB\n\t\"\\x00I\\x03\\x00\\x00\\x00\\x00\\xcc\" + // 0x00490300: 0x000000CC\n\t\"\\x00I\\x03\\x01\\x00\\x00\\x00\\xcd\" + // 0x00490301: 0x000000CD\n\t\"\\x00I\\x03\\x02\\x00\\x00\\x00\\xce\" + // 0x00490302: 0x000000CE\n\t\"\\x00I\\x03\\b\\x00\\x00\\x00\\xcf\" + // 0x00490308: 0x000000CF\n\t\"\\x00N\\x03\\x03\\x00\\x00\\x00\\xd1\" + // 0x004E0303: 0x000000D1\n\t\"\\x00O\\x03\\x00\\x00\\x00\\x00\\xd2\" + // 0x004F0300: 0x000000D2\n\t\"\\x00O\\x03\\x01\\x00\\x00\\x00\\xd3\" + // 0x004F0301: 0x000000D3\n\t\"\\x00O\\x03\\x02\\x00\\x00\\x00\\xd4\" + // 0x004F0302: 0x000000D4\n\t\"\\x00O\\x03\\x03\\x00\\x00\\x00\\xd5\" + // 0x004F0303: 0x000000D5\n\t\"\\x00O\\x03\\b\\x00\\x00\\x00\\xd6\" + // 0x004F0308: 0x000000D6\n\t\"\\x00U\\x03\\x00\\x00\\x00\\x00\\xd9\" + // 0x00550300: 0x000000D9\n\t\"\\x00U\\x03\\x01\\x00\\x00\\x00\\xda\" + // 0x00550301: 0x000000DA\n\t\"\\x00U\\x03\\x02\\x00\\x00\\x00\\xdb\" + // 0x00550302: 0x000000DB\n\t\"\\x00U\\x03\\b\\x00\\x00\\x00\\xdc\" + // 0x00550308: 0x000000DC\n\t\"\\x00Y\\x03\\x01\\x00\\x00\\x00\\xdd\" + // 0x00590301: 0x000000DD\n\t\"\\x00a\\x03\\x00\\x00\\x00\\x00\\xe0\" + // 0x00610300: 0x000000E0\n\t\"\\x00a\\x03\\x01\\x00\\x00\\x00\\xe1\" + // 0x00610301: 0x000000E1\n\t\"\\x00a\\x03\\x02\\x00\\x00\\x00\\xe2\" + // 0x00610302: 0x000000E2\n\t\"\\x00a\\x03\\x03\\x00\\x00\\x00\\xe3\" + // 0x00610303: 0x000000E3\n\t\"\\x00a\\x03\\b\\x00\\x00\\x00\\xe4\" + // 0x00610308: 0x000000E4\n\t\"\\x00a\\x03\\n\\x00\\x00\\x00\\xe5\" + // 0x0061030A: 0x000000E5\n\t\"\\x00c\\x03'\\x00\\x00\\x00\\xe7\" + // 0x00630327: 0x000000E7\n\t\"\\x00e\\x03\\x00\\x00\\x00\\x00\\xe8\" + // 0x00650300: 0x000000E8\n\t\"\\x00e\\x03\\x01\\x00\\x00\\x00\\xe9\" + // 0x00650301: 0x000000E9\n\t\"\\x00e\\x03\\x02\\x00\\x00\\x00\\xea\" + // 0x00650302: 0x000000EA\n\t\"\\x00e\\x03\\b\\x00\\x00\\x00\\xeb\" + // 0x00650308: 0x000000EB\n\t\"\\x00i\\x03\\x00\\x00\\x00\\x00\\xec\" + // 0x00690300: 0x000000EC\n\t\"\\x00i\\x03\\x01\\x00\\x00\\x00\\xed\" + // 0x00690301: 0x000000ED\n\t\"\\x00i\\x03\\x02\\x00\\x00\\x00\\xee\" + // 0x00690302: 0x000000EE\n\t\"\\x00i\\x03\\b\\x00\\x00\\x00\\xef\" + // 0x00690308: 0x000000EF\n\t\"\\x00n\\x03\\x03\\x00\\x00\\x00\\xf1\" + // 0x006E0303: 0x000000F1\n\t\"\\x00o\\x03\\x00\\x00\\x00\\x00\\xf2\" + // 0x006F0300: 0x000000F2\n\t\"\\x00o\\x03\\x01\\x00\\x00\\x00\\xf3\" + // 0x006F0301: 0x000000F3\n\t\"\\x00o\\x03\\x02\\x00\\x00\\x00\\xf4\" + // 0x006F0302: 0x000000F4\n\t\"\\x00o\\x03\\x03\\x00\\x00\\x00\\xf5\" + // 0x006F0303: 0x000000F5\n\t\"\\x00o\\x03\\b\\x00\\x00\\x00\\xf6\" + // 0x006F0308: 0x000000F6\n\t\"\\x00u\\x03\\x00\\x00\\x00\\x00\\xf9\" + // 0x00750300: 0x000000F9\n\t\"\\x00u\\x03\\x01\\x00\\x00\\x00\\xfa\" + // 0x00750301: 0x000000FA\n\t\"\\x00u\\x03\\x02\\x00\\x00\\x00\\xfb\" + // 0x00750302: 0x000000FB\n\t\"\\x00u\\x03\\b\\x00\\x00\\x00\\xfc\" + // 0x00750308: 0x000000FC\n\t\"\\x00y\\x03\\x01\\x00\\x00\\x00\\xfd\" + // 0x00790301: 0x000000FD\n\t\"\\x00y\\x03\\b\\x00\\x00\\x00\\xff\" + // 0x00790308: 0x000000FF\n\t\"\\x00A\\x03\\x04\\x00\\x00\\x01\\x00\" + // 0x00410304: 0x00000100\n\t\"\\x00a\\x03\\x04\\x00\\x00\\x01\\x01\" + // 0x00610304: 0x00000101\n\t\"\\x00A\\x03\\x06\\x00\\x00\\x01\\x02\" + // 0x00410306: 0x00000102\n\t\"\\x00a\\x03\\x06\\x00\\x00\\x01\\x03\" + // 0x00610306: 0x00000103\n\t\"\\x00A\\x03(\\x00\\x00\\x01\\x04\" + // 0x00410328: 0x00000104\n\t\"\\x00a\\x03(\\x00\\x00\\x01\\x05\" + // 0x00610328: 0x00000105\n\t\"\\x00C\\x03\\x01\\x00\\x00\\x01\\x06\" + // 0x00430301: 0x00000106\n\t\"\\x00c\\x03\\x01\\x00\\x00\\x01\\a\" + // 0x00630301: 0x00000107\n\t\"\\x00C\\x03\\x02\\x00\\x00\\x01\\b\" + // 0x00430302: 0x00000108\n\t\"\\x00c\\x03\\x02\\x00\\x00\\x01\\t\" + // 0x00630302: 0x00000109\n\t\"\\x00C\\x03\\a\\x00\\x00\\x01\\n\" + // 0x00430307: 0x0000010A\n\t\"\\x00c\\x03\\a\\x00\\x00\\x01\\v\" + // 0x00630307: 0x0000010B\n\t\"\\x00C\\x03\\f\\x00\\x00\\x01\\f\" + // 0x0043030C: 0x0000010C\n\t\"\\x00c\\x03\\f\\x00\\x00\\x01\\r\" + // 0x0063030C: 0x0000010D\n\t\"\\x00D\\x03\\f\\x00\\x00\\x01\\x0e\" + // 0x0044030C: 0x0000010E\n\t\"\\x00d\\x03\\f\\x00\\x00\\x01\\x0f\" + // 0x0064030C: 0x0000010F\n\t\"\\x00E\\x03\\x04\\x00\\x00\\x01\\x12\" + // 0x00450304: 0x00000112\n\t\"\\x00e\\x03\\x04\\x00\\x00\\x01\\x13\" + // 0x00650304: 0x00000113\n\t\"\\x00E\\x03\\x06\\x00\\x00\\x01\\x14\" + // 0x00450306: 0x00000114\n\t\"\\x00e\\x03\\x06\\x00\\x00\\x01\\x15\" + // 0x00650306: 0x00000115\n\t\"\\x00E\\x03\\a\\x00\\x00\\x01\\x16\" + // 0x00450307: 0x00000116\n\t\"\\x00e\\x03\\a\\x00\\x00\\x01\\x17\" + // 0x00650307: 0x00000117\n\t\"\\x00E\\x03(\\x00\\x00\\x01\\x18\" + // 0x00450328: 0x00000118\n\t\"\\x00e\\x03(\\x00\\x00\\x01\\x19\" + // 0x00650328: 0x00000119\n\t\"\\x00E\\x03\\f\\x00\\x00\\x01\\x1a\" + // 0x0045030C: 0x0000011A\n\t\"\\x00e\\x03\\f\\x00\\x00\\x01\\x1b\" + // 0x0065030C: 0x0000011B\n\t\"\\x00G\\x03\\x02\\x00\\x00\\x01\\x1c\" + // 0x00470302: 0x0000011C\n\t\"\\x00g\\x03\\x02\\x00\\x00\\x01\\x1d\" + // 0x00670302: 0x0000011D\n\t\"\\x00G\\x03\\x06\\x00\\x00\\x01\\x1e\" + // 0x00470306: 0x0000011E\n\t\"\\x00g\\x03\\x06\\x00\\x00\\x01\\x1f\" + // 0x00670306: 0x0000011F\n\t\"\\x00G\\x03\\a\\x00\\x00\\x01 \" + // 0x00470307: 0x00000120\n\t\"\\x00g\\x03\\a\\x00\\x00\\x01!\" + // 0x00670307: 0x00000121\n\t\"\\x00G\\x03'\\x00\\x00\\x01\\\"\" + // 0x00470327: 0x00000122\n\t\"\\x00g\\x03'\\x00\\x00\\x01#\" + // 0x00670327: 0x00000123\n\t\"\\x00H\\x03\\x02\\x00\\x00\\x01$\" + // 0x00480302: 0x00000124\n\t\"\\x00h\\x03\\x02\\x00\\x00\\x01%\" + // 0x00680302: 0x00000125\n\t\"\\x00I\\x03\\x03\\x00\\x00\\x01(\" + // 0x00490303: 0x00000128\n\t\"\\x00i\\x03\\x03\\x00\\x00\\x01)\" + // 0x00690303: 0x00000129\n\t\"\\x00I\\x03\\x04\\x00\\x00\\x01*\" + // 0x00490304: 0x0000012A\n\t\"\\x00i\\x03\\x04\\x00\\x00\\x01+\" + // 0x00690304: 0x0000012B\n\t\"\\x00I\\x03\\x06\\x00\\x00\\x01,\" + // 0x00490306: 0x0000012C\n\t\"\\x00i\\x03\\x06\\x00\\x00\\x01-\" + // 0x00690306: 0x0000012D\n\t\"\\x00I\\x03(\\x00\\x00\\x01.\" + // 0x00490328: 0x0000012E\n\t\"\\x00i\\x03(\\x00\\x00\\x01/\" + // 0x00690328: 0x0000012F\n\t\"\\x00I\\x03\\a\\x00\\x00\\x010\" + // 0x00490307: 0x00000130\n\t\"\\x00J\\x03\\x02\\x00\\x00\\x014\" + // 0x004A0302: 0x00000134\n\t\"\\x00j\\x03\\x02\\x00\\x00\\x015\" + // 0x006A0302: 0x00000135\n\t\"\\x00K\\x03'\\x00\\x00\\x016\" + // 0x004B0327: 0x00000136\n\t\"\\x00k\\x03'\\x00\\x00\\x017\" + // 0x006B0327: 0x00000137\n\t\"\\x00L\\x03\\x01\\x00\\x00\\x019\" + // 0x004C0301: 0x00000139\n\t\"\\x00l\\x03\\x01\\x00\\x00\\x01:\" + // 0x006C0301: 0x0000013A\n\t\"\\x00L\\x03'\\x00\\x00\\x01;\" + // 0x004C0327: 0x0000013B\n\t\"\\x00l\\x03'\\x00\\x00\\x01<\" + // 0x006C0327: 0x0000013C\n\t\"\\x00L\\x03\\f\\x00\\x00\\x01=\" + // 0x004C030C: 0x0000013D\n\t\"\\x00l\\x03\\f\\x00\\x00\\x01>\" + // 0x006C030C: 0x0000013E\n\t\"\\x00N\\x03\\x01\\x00\\x00\\x01C\" + // 0x004E0301: 0x00000143\n\t\"\\x00n\\x03\\x01\\x00\\x00\\x01D\" + // 0x006E0301: 0x00000144\n\t\"\\x00N\\x03'\\x00\\x00\\x01E\" + // 0x004E0327: 0x00000145\n\t\"\\x00n\\x03'\\x00\\x00\\x01F\" + // 0x006E0327: 0x00000146\n\t\"\\x00N\\x03\\f\\x00\\x00\\x01G\" + // 0x004E030C: 0x00000147\n\t\"\\x00n\\x03\\f\\x00\\x00\\x01H\" + // 0x006E030C: 0x00000148\n\t\"\\x00O\\x03\\x04\\x00\\x00\\x01L\" + // 0x004F0304: 0x0000014C\n\t\"\\x00o\\x03\\x04\\x00\\x00\\x01M\" + // 0x006F0304: 0x0000014D\n\t\"\\x00O\\x03\\x06\\x00\\x00\\x01N\" + // 0x004F0306: 0x0000014E\n\t\"\\x00o\\x03\\x06\\x00\\x00\\x01O\" + // 0x006F0306: 0x0000014F\n\t\"\\x00O\\x03\\v\\x00\\x00\\x01P\" + // 0x004F030B: 0x00000150\n\t\"\\x00o\\x03\\v\\x00\\x00\\x01Q\" + // 0x006F030B: 0x00000151\n\t\"\\x00R\\x03\\x01\\x00\\x00\\x01T\" + // 0x00520301: 0x00000154\n\t\"\\x00r\\x03\\x01\\x00\\x00\\x01U\" + // 0x00720301: 0x00000155\n\t\"\\x00R\\x03'\\x00\\x00\\x01V\" + // 0x00520327: 0x00000156\n\t\"\\x00r\\x03'\\x00\\x00\\x01W\" + // 0x00720327: 0x00000157\n\t\"\\x00R\\x03\\f\\x00\\x00\\x01X\" + // 0x0052030C: 0x00000158\n\t\"\\x00r\\x03\\f\\x00\\x00\\x01Y\" + // 0x0072030C: 0x00000159\n\t\"\\x00S\\x03\\x01\\x00\\x00\\x01Z\" + // 0x00530301: 0x0000015A\n\t\"\\x00s\\x03\\x01\\x00\\x00\\x01[\" + // 0x00730301: 0x0000015B\n\t\"\\x00S\\x03\\x02\\x00\\x00\\x01\\\\\" + // 0x00530302: 0x0000015C\n\t\"\\x00s\\x03\\x02\\x00\\x00\\x01]\" + // 0x00730302: 0x0000015D\n\t\"\\x00S\\x03'\\x00\\x00\\x01^\" + // 0x00530327: 0x0000015E\n\t\"\\x00s\\x03'\\x00\\x00\\x01_\" + // 0x00730327: 0x0000015F\n\t\"\\x00S\\x03\\f\\x00\\x00\\x01`\" + // 0x0053030C: 0x00000160\n\t\"\\x00s\\x03\\f\\x00\\x00\\x01a\" + // 0x0073030C: 0x00000161\n\t\"\\x00T\\x03'\\x00\\x00\\x01b\" + // 0x00540327: 0x00000162\n\t\"\\x00t\\x03'\\x00\\x00\\x01c\" + // 0x00740327: 0x00000163\n\t\"\\x00T\\x03\\f\\x00\\x00\\x01d\" + // 0x0054030C: 0x00000164\n\t\"\\x00t\\x03\\f\\x00\\x00\\x01e\" + // 0x0074030C: 0x00000165\n\t\"\\x00U\\x03\\x03\\x00\\x00\\x01h\" + // 0x00550303: 0x00000168\n\t\"\\x00u\\x03\\x03\\x00\\x00\\x01i\" + // 0x00750303: 0x00000169\n\t\"\\x00U\\x03\\x04\\x00\\x00\\x01j\" + // 0x00550304: 0x0000016A\n\t\"\\x00u\\x03\\x04\\x00\\x00\\x01k\" + // 0x00750304: 0x0000016B\n\t\"\\x00U\\x03\\x06\\x00\\x00\\x01l\" + // 0x00550306: 0x0000016C\n\t\"\\x00u\\x03\\x06\\x00\\x00\\x01m\" + // 0x00750306: 0x0000016D\n\t\"\\x00U\\x03\\n\\x00\\x00\\x01n\" + // 0x0055030A: 0x0000016E\n\t\"\\x00u\\x03\\n\\x00\\x00\\x01o\" + // 0x0075030A: 0x0000016F\n\t\"\\x00U\\x03\\v\\x00\\x00\\x01p\" + // 0x0055030B: 0x00000170\n\t\"\\x00u\\x03\\v\\x00\\x00\\x01q\" + // 0x0075030B: 0x00000171\n\t\"\\x00U\\x03(\\x00\\x00\\x01r\" + // 0x00550328: 0x00000172\n\t\"\\x00u\\x03(\\x00\\x00\\x01s\" + // 0x00750328: 0x00000173\n\t\"\\x00W\\x03\\x02\\x00\\x00\\x01t\" + // 0x00570302: 0x00000174\n\t\"\\x00w\\x03\\x02\\x00\\x00\\x01u\" + // 0x00770302: 0x00000175\n\t\"\\x00Y\\x03\\x02\\x00\\x00\\x01v\" + // 0x00590302: 0x00000176\n\t\"\\x00y\\x03\\x02\\x00\\x00\\x01w\" + // 0x00790302: 0x00000177\n\t\"\\x00Y\\x03\\b\\x00\\x00\\x01x\" + // 0x00590308: 0x00000178\n\t\"\\x00Z\\x03\\x01\\x00\\x00\\x01y\" + // 0x005A0301: 0x00000179\n\t\"\\x00z\\x03\\x01\\x00\\x00\\x01z\" + // 0x007A0301: 0x0000017A\n\t\"\\x00Z\\x03\\a\\x00\\x00\\x01{\" + // 0x005A0307: 0x0000017B\n\t\"\\x00z\\x03\\a\\x00\\x00\\x01|\" + // 0x007A0307: 0x0000017C\n\t\"\\x00Z\\x03\\f\\x00\\x00\\x01}\" + // 0x005A030C: 0x0000017D\n\t\"\\x00z\\x03\\f\\x00\\x00\\x01~\" + // 0x007A030C: 0x0000017E\n\t\"\\x00O\\x03\\x1b\\x00\\x00\\x01\\xa0\" + // 0x004F031B: 0x000001A0\n\t\"\\x00o\\x03\\x1b\\x00\\x00\\x01\\xa1\" + // 0x006F031B: 0x000001A1\n\t\"\\x00U\\x03\\x1b\\x00\\x00\\x01\\xaf\" + // 0x0055031B: 0x000001AF\n\t\"\\x00u\\x03\\x1b\\x00\\x00\\x01\\xb0\" + // 0x0075031B: 0x000001B0\n\t\"\\x00A\\x03\\f\\x00\\x00\\x01\\xcd\" + // 0x0041030C: 0x000001CD\n\t\"\\x00a\\x03\\f\\x00\\x00\\x01\\xce\" + // 0x0061030C: 0x000001CE\n\t\"\\x00I\\x03\\f\\x00\\x00\\x01\\xcf\" + // 0x0049030C: 0x000001CF\n\t\"\\x00i\\x03\\f\\x00\\x00\\x01\\xd0\" + // 0x0069030C: 0x000001D0\n\t\"\\x00O\\x03\\f\\x00\\x00\\x01\\xd1\" + // 0x004F030C: 0x000001D1\n\t\"\\x00o\\x03\\f\\x00\\x00\\x01\\xd2\" + // 0x006F030C: 0x000001D2\n\t\"\\x00U\\x03\\f\\x00\\x00\\x01\\xd3\" + // 0x0055030C: 0x000001D3\n\t\"\\x00u\\x03\\f\\x00\\x00\\x01\\xd4\" + // 0x0075030C: 0x000001D4\n\t\"\\x00\\xdc\\x03\\x04\\x00\\x00\\x01\\xd5\" + // 0x00DC0304: 0x000001D5\n\t\"\\x00\\xfc\\x03\\x04\\x00\\x00\\x01\\xd6\" + // 0x00FC0304: 0x000001D6\n\t\"\\x00\\xdc\\x03\\x01\\x00\\x00\\x01\\xd7\" + // 0x00DC0301: 0x000001D7\n\t\"\\x00\\xfc\\x03\\x01\\x00\\x00\\x01\\xd8\" + // 0x00FC0301: 0x000001D8\n\t\"\\x00\\xdc\\x03\\f\\x00\\x00\\x01\\xd9\" + // 0x00DC030C: 0x000001D9\n\t\"\\x00\\xfc\\x03\\f\\x00\\x00\\x01\\xda\" + // 0x00FC030C: 0x000001DA\n\t\"\\x00\\xdc\\x03\\x00\\x00\\x00\\x01\\xdb\" + // 0x00DC0300: 0x000001DB\n\t\"\\x00\\xfc\\x03\\x00\\x00\\x00\\x01\\xdc\" + // 0x00FC0300: 0x000001DC\n\t\"\\x00\\xc4\\x03\\x04\\x00\\x00\\x01\\xde\" + // 0x00C40304: 0x000001DE\n\t\"\\x00\\xe4\\x03\\x04\\x00\\x00\\x01\\xdf\" + // 0x00E40304: 0x000001DF\n\t\"\\x02&\\x03\\x04\\x00\\x00\\x01\\xe0\" + // 0x02260304: 0x000001E0\n\t\"\\x02'\\x03\\x04\\x00\\x00\\x01\\xe1\" + // 0x02270304: 0x000001E1\n\t\"\\x00\\xc6\\x03\\x04\\x00\\x00\\x01\\xe2\" + // 0x00C60304: 0x000001E2\n\t\"\\x00\\xe6\\x03\\x04\\x00\\x00\\x01\\xe3\" + // 0x00E60304: 0x000001E3\n\t\"\\x00G\\x03\\f\\x00\\x00\\x01\\xe6\" + // 0x0047030C: 0x000001E6\n\t\"\\x00g\\x03\\f\\x00\\x00\\x01\\xe7\" + // 0x0067030C: 0x000001E7\n\t\"\\x00K\\x03\\f\\x00\\x00\\x01\\xe8\" + // 0x004B030C: 0x000001E8\n\t\"\\x00k\\x03\\f\\x00\\x00\\x01\\xe9\" + // 0x006B030C: 0x000001E9\n\t\"\\x00O\\x03(\\x00\\x00\\x01\\xea\" + // 0x004F0328: 0x000001EA\n\t\"\\x00o\\x03(\\x00\\x00\\x01\\xeb\" + // 0x006F0328: 0x000001EB\n\t\"\\x01\\xea\\x03\\x04\\x00\\x00\\x01\\xec\" + // 0x01EA0304: 0x000001EC\n\t\"\\x01\\xeb\\x03\\x04\\x00\\x00\\x01\\xed\" + // 0x01EB0304: 0x000001ED\n\t\"\\x01\\xb7\\x03\\f\\x00\\x00\\x01\\xee\" + // 0x01B7030C: 0x000001EE\n\t\"\\x02\\x92\\x03\\f\\x00\\x00\\x01\\xef\" + // 0x0292030C: 0x000001EF\n\t\"\\x00j\\x03\\f\\x00\\x00\\x01\\xf0\" + // 0x006A030C: 0x000001F0\n\t\"\\x00G\\x03\\x01\\x00\\x00\\x01\\xf4\" + // 0x00470301: 0x000001F4\n\t\"\\x00g\\x03\\x01\\x00\\x00\\x01\\xf5\" + // 0x00670301: 0x000001F5\n\t\"\\x00N\\x03\\x00\\x00\\x00\\x01\\xf8\" + // 0x004E0300: 0x000001F8\n\t\"\\x00n\\x03\\x00\\x00\\x00\\x01\\xf9\" + // 0x006E0300: 0x000001F9\n\t\"\\x00\\xc5\\x03\\x01\\x00\\x00\\x01\\xfa\" + // 0x00C50301: 0x000001FA\n\t\"\\x00\\xe5\\x03\\x01\\x00\\x00\\x01\\xfb\" + // 0x00E50301: 0x000001FB\n\t\"\\x00\\xc6\\x03\\x01\\x00\\x00\\x01\\xfc\" + // 0x00C60301: 0x000001FC\n\t\"\\x00\\xe6\\x03\\x01\\x00\\x00\\x01\\xfd\" + // 0x00E60301: 0x000001FD\n\t\"\\x00\\xd8\\x03\\x01\\x00\\x00\\x01\\xfe\" + // 0x00D80301: 0x000001FE\n\t\"\\x00\\xf8\\x03\\x01\\x00\\x00\\x01\\xff\" + // 0x00F80301: 0x000001FF\n\t\"\\x00A\\x03\\x0f\\x00\\x00\\x02\\x00\" + // 0x0041030F: 0x00000200\n\t\"\\x00a\\x03\\x0f\\x00\\x00\\x02\\x01\" + // 0x0061030F: 0x00000201\n\t\"\\x00A\\x03\\x11\\x00\\x00\\x02\\x02\" + // 0x00410311: 0x00000202\n\t\"\\x00a\\x03\\x11\\x00\\x00\\x02\\x03\" + // 0x00610311: 0x00000203\n\t\"\\x00E\\x03\\x0f\\x00\\x00\\x02\\x04\" + // 0x0045030F: 0x00000204\n\t\"\\x00e\\x03\\x0f\\x00\\x00\\x02\\x05\" + // 0x0065030F: 0x00000205\n\t\"\\x00E\\x03\\x11\\x00\\x00\\x02\\x06\" + // 0x00450311: 0x00000206\n\t\"\\x00e\\x03\\x11\\x00\\x00\\x02\\a\" + // 0x00650311: 0x00000207\n\t\"\\x00I\\x03\\x0f\\x00\\x00\\x02\\b\" + // 0x0049030F: 0x00000208\n\t\"\\x00i\\x03\\x0f\\x00\\x00\\x02\\t\" + // 0x0069030F: 0x00000209\n\t\"\\x00I\\x03\\x11\\x00\\x00\\x02\\n\" + // 0x00490311: 0x0000020A\n\t\"\\x00i\\x03\\x11\\x00\\x00\\x02\\v\" + // 0x00690311: 0x0000020B\n\t\"\\x00O\\x03\\x0f\\x00\\x00\\x02\\f\" + // 0x004F030F: 0x0000020C\n\t\"\\x00o\\x03\\x0f\\x00\\x00\\x02\\r\" + // 0x006F030F: 0x0000020D\n\t\"\\x00O\\x03\\x11\\x00\\x00\\x02\\x0e\" + // 0x004F0311: 0x0000020E\n\t\"\\x00o\\x03\\x11\\x00\\x00\\x02\\x0f\" + // 0x006F0311: 0x0000020F\n\t\"\\x00R\\x03\\x0f\\x00\\x00\\x02\\x10\" + // 0x0052030F: 0x00000210\n\t\"\\x00r\\x03\\x0f\\x00\\x00\\x02\\x11\" + // 0x0072030F: 0x00000211\n\t\"\\x00R\\x03\\x11\\x00\\x00\\x02\\x12\" + // 0x00520311: 0x00000212\n\t\"\\x00r\\x03\\x11\\x00\\x00\\x02\\x13\" + // 0x00720311: 0x00000213\n\t\"\\x00U\\x03\\x0f\\x00\\x00\\x02\\x14\" + // 0x0055030F: 0x00000214\n\t\"\\x00u\\x03\\x0f\\x00\\x00\\x02\\x15\" + // 0x0075030F: 0x00000215\n\t\"\\x00U\\x03\\x11\\x00\\x00\\x02\\x16\" + // 0x00550311: 0x00000216\n\t\"\\x00u\\x03\\x11\\x00\\x00\\x02\\x17\" + // 0x00750311: 0x00000217\n\t\"\\x00S\\x03&\\x00\\x00\\x02\\x18\" + // 0x00530326: 0x00000218\n\t\"\\x00s\\x03&\\x00\\x00\\x02\\x19\" + // 0x00730326: 0x00000219\n\t\"\\x00T\\x03&\\x00\\x00\\x02\\x1a\" + // 0x00540326: 0x0000021A\n\t\"\\x00t\\x03&\\x00\\x00\\x02\\x1b\" + // 0x00740326: 0x0000021B\n\t\"\\x00H\\x03\\f\\x00\\x00\\x02\\x1e\" + // 0x0048030C: 0x0000021E\n\t\"\\x00h\\x03\\f\\x00\\x00\\x02\\x1f\" + // 0x0068030C: 0x0000021F\n\t\"\\x00A\\x03\\a\\x00\\x00\\x02&\" + // 0x00410307: 0x00000226\n\t\"\\x00a\\x03\\a\\x00\\x00\\x02'\" + // 0x00610307: 0x00000227\n\t\"\\x00E\\x03'\\x00\\x00\\x02(\" + // 0x00450327: 0x00000228\n\t\"\\x00e\\x03'\\x00\\x00\\x02)\" + // 0x00650327: 0x00000229\n\t\"\\x00\\xd6\\x03\\x04\\x00\\x00\\x02*\" + // 0x00D60304: 0x0000022A\n\t\"\\x00\\xf6\\x03\\x04\\x00\\x00\\x02+\" + // 0x00F60304: 0x0000022B\n\t\"\\x00\\xd5\\x03\\x04\\x00\\x00\\x02,\" + // 0x00D50304: 0x0000022C\n\t\"\\x00\\xf5\\x03\\x04\\x00\\x00\\x02-\" + // 0x00F50304: 0x0000022D\n\t\"\\x00O\\x03\\a\\x00\\x00\\x02.\" + // 0x004F0307: 0x0000022E\n\t\"\\x00o\\x03\\a\\x00\\x00\\x02/\" + // 0x006F0307: 0x0000022F\n\t\"\\x02.\\x03\\x04\\x00\\x00\\x020\" + // 0x022E0304: 0x00000230\n\t\"\\x02/\\x03\\x04\\x00\\x00\\x021\" + // 0x022F0304: 0x00000231\n\t\"\\x00Y\\x03\\x04\\x00\\x00\\x022\" + // 0x00590304: 0x00000232\n\t\"\\x00y\\x03\\x04\\x00\\x00\\x023\" + // 0x00790304: 0x00000233\n\t\"\\x00\\xa8\\x03\\x01\\x00\\x00\\x03\\x85\" + // 0x00A80301: 0x00000385\n\t\"\\x03\\x91\\x03\\x01\\x00\\x00\\x03\\x86\" + // 0x03910301: 0x00000386\n\t\"\\x03\\x95\\x03\\x01\\x00\\x00\\x03\\x88\" + // 0x03950301: 0x00000388\n\t\"\\x03\\x97\\x03\\x01\\x00\\x00\\x03\\x89\" + // 0x03970301: 0x00000389\n\t\"\\x03\\x99\\x03\\x01\\x00\\x00\\x03\\x8a\" + // 0x03990301: 0x0000038A\n\t\"\\x03\\x9f\\x03\\x01\\x00\\x00\\x03\\x8c\" + // 0x039F0301: 0x0000038C\n\t\"\\x03\\xa5\\x03\\x01\\x00\\x00\\x03\\x8e\" + // 0x03A50301: 0x0000038E\n\t\"\\x03\\xa9\\x03\\x01\\x00\\x00\\x03\\x8f\" + // 0x03A90301: 0x0000038F\n\t\"\\x03\\xca\\x03\\x01\\x00\\x00\\x03\\x90\" + // 0x03CA0301: 0x00000390\n\t\"\\x03\\x99\\x03\\b\\x00\\x00\\x03\\xaa\" + // 0x03990308: 0x000003AA\n\t\"\\x03\\xa5\\x03\\b\\x00\\x00\\x03\\xab\" + // 0x03A50308: 0x000003AB\n\t\"\\x03\\xb1\\x03\\x01\\x00\\x00\\x03\\xac\" + // 0x03B10301: 0x000003AC\n\t\"\\x03\\xb5\\x03\\x01\\x00\\x00\\x03\\xad\" + // 0x03B50301: 0x000003AD\n\t\"\\x03\\xb7\\x03\\x01\\x00\\x00\\x03\\xae\" + // 0x03B70301: 0x000003AE\n\t\"\\x03\\xb9\\x03\\x01\\x00\\x00\\x03\\xaf\" + // 0x03B90301: 0x000003AF\n\t\"\\x03\\xcb\\x03\\x01\\x00\\x00\\x03\\xb0\" + // 0x03CB0301: 0x000003B0\n\t\"\\x03\\xb9\\x03\\b\\x00\\x00\\x03\\xca\" + // 0x03B90308: 0x000003CA\n\t\"\\x03\\xc5\\x03\\b\\x00\\x00\\x03\\xcb\" + // 0x03C50308: 0x000003CB\n\t\"\\x03\\xbf\\x03\\x01\\x00\\x00\\x03\\xcc\" + // 0x03BF0301: 0x000003CC\n\t\"\\x03\\xc5\\x03\\x01\\x00\\x00\\x03\\xcd\" + // 0x03C50301: 0x000003CD\n\t\"\\x03\\xc9\\x03\\x01\\x00\\x00\\x03\\xce\" + // 0x03C90301: 0x000003CE\n\t\"\\x03\\xd2\\x03\\x01\\x00\\x00\\x03\\xd3\" + // 0x03D20301: 0x000003D3\n\t\"\\x03\\xd2\\x03\\b\\x00\\x00\\x03\\xd4\" + // 0x03D20308: 0x000003D4\n\t\"\\x04\\x15\\x03\\x00\\x00\\x00\\x04\\x00\" + // 0x04150300: 0x00000400\n\t\"\\x04\\x15\\x03\\b\\x00\\x00\\x04\\x01\" + // 0x04150308: 0x00000401\n\t\"\\x04\\x13\\x03\\x01\\x00\\x00\\x04\\x03\" + // 0x04130301: 0x00000403\n\t\"\\x04\\x06\\x03\\b\\x00\\x00\\x04\\a\" + // 0x04060308: 0x00000407\n\t\"\\x04\\x1a\\x03\\x01\\x00\\x00\\x04\\f\" + // 0x041A0301: 0x0000040C\n\t\"\\x04\\x18\\x03\\x00\\x00\\x00\\x04\\r\" + // 0x04180300: 0x0000040D\n\t\"\\x04#\\x03\\x06\\x00\\x00\\x04\\x0e\" + // 0x04230306: 0x0000040E\n\t\"\\x04\\x18\\x03\\x06\\x00\\x00\\x04\\x19\" + // 0x04180306: 0x00000419\n\t\"\\x048\\x03\\x06\\x00\\x00\\x049\" + // 0x04380306: 0x00000439\n\t\"\\x045\\x03\\x00\\x00\\x00\\x04P\" + // 0x04350300: 0x00000450\n\t\"\\x045\\x03\\b\\x00\\x00\\x04Q\" + // 0x04350308: 0x00000451\n\t\"\\x043\\x03\\x01\\x00\\x00\\x04S\" + // 0x04330301: 0x00000453\n\t\"\\x04V\\x03\\b\\x00\\x00\\x04W\" + // 0x04560308: 0x00000457\n\t\"\\x04:\\x03\\x01\\x00\\x00\\x04\\\\\" + // 0x043A0301: 0x0000045C\n\t\"\\x048\\x03\\x00\\x00\\x00\\x04]\" + // 0x04380300: 0x0000045D\n\t\"\\x04C\\x03\\x06\\x00\\x00\\x04^\" + // 0x04430306: 0x0000045E\n\t\"\\x04t\\x03\\x0f\\x00\\x00\\x04v\" + // 0x0474030F: 0x00000476\n\t\"\\x04u\\x03\\x0f\\x00\\x00\\x04w\" + // 0x0475030F: 0x00000477\n\t\"\\x04\\x16\\x03\\x06\\x00\\x00\\x04\\xc1\" + // 0x04160306: 0x000004C1\n\t\"\\x046\\x03\\x06\\x00\\x00\\x04\\xc2\" + // 0x04360306: 0x000004C2\n\t\"\\x04\\x10\\x03\\x06\\x00\\x00\\x04\\xd0\" + // 0x04100306: 0x000004D0\n\t\"\\x040\\x03\\x06\\x00\\x00\\x04\\xd1\" + // 0x04300306: 0x000004D1\n\t\"\\x04\\x10\\x03\\b\\x00\\x00\\x04\\xd2\" + // 0x04100308: 0x000004D2\n\t\"\\x040\\x03\\b\\x00\\x00\\x04\\xd3\" + // 0x04300308: 0x000004D3\n\t\"\\x04\\x15\\x03\\x06\\x00\\x00\\x04\\xd6\" + // 0x04150306: 0x000004D6\n\t\"\\x045\\x03\\x06\\x00\\x00\\x04\\xd7\" + // 0x04350306: 0x000004D7\n\t\"\\x04\\xd8\\x03\\b\\x00\\x00\\x04\\xda\" + // 0x04D80308: 0x000004DA\n\t\"\\x04\\xd9\\x03\\b\\x00\\x00\\x04\\xdb\" + // 0x04D90308: 0x000004DB\n\t\"\\x04\\x16\\x03\\b\\x00\\x00\\x04\\xdc\" + // 0x04160308: 0x000004DC\n\t\"\\x046\\x03\\b\\x00\\x00\\x04\\xdd\" + // 0x04360308: 0x000004DD\n\t\"\\x04\\x17\\x03\\b\\x00\\x00\\x04\\xde\" + // 0x04170308: 0x000004DE\n\t\"\\x047\\x03\\b\\x00\\x00\\x04\\xdf\" + // 0x04370308: 0x000004DF\n\t\"\\x04\\x18\\x03\\x04\\x00\\x00\\x04\\xe2\" + // 0x04180304: 0x000004E2\n\t\"\\x048\\x03\\x04\\x00\\x00\\x04\\xe3\" + // 0x04380304: 0x000004E3\n\t\"\\x04\\x18\\x03\\b\\x00\\x00\\x04\\xe4\" + // 0x04180308: 0x000004E4\n\t\"\\x048\\x03\\b\\x00\\x00\\x04\\xe5\" + // 0x04380308: 0x000004E5\n\t\"\\x04\\x1e\\x03\\b\\x00\\x00\\x04\\xe6\" + // 0x041E0308: 0x000004E6\n\t\"\\x04>\\x03\\b\\x00\\x00\\x04\\xe7\" + // 0x043E0308: 0x000004E7\n\t\"\\x04\\xe8\\x03\\b\\x00\\x00\\x04\\xea\" + // 0x04E80308: 0x000004EA\n\t\"\\x04\\xe9\\x03\\b\\x00\\x00\\x04\\xeb\" + // 0x04E90308: 0x000004EB\n\t\"\\x04-\\x03\\b\\x00\\x00\\x04\\xec\" + // 0x042D0308: 0x000004EC\n\t\"\\x04M\\x03\\b\\x00\\x00\\x04\\xed\" + // 0x044D0308: 0x000004ED\n\t\"\\x04#\\x03\\x04\\x00\\x00\\x04\\xee\" + // 0x04230304: 0x000004EE\n\t\"\\x04C\\x03\\x04\\x00\\x00\\x04\\xef\" + // 0x04430304: 0x000004EF\n\t\"\\x04#\\x03\\b\\x00\\x00\\x04\\xf0\" + // 0x04230308: 0x000004F0\n\t\"\\x04C\\x03\\b\\x00\\x00\\x04\\xf1\" + // 0x04430308: 0x000004F1\n\t\"\\x04#\\x03\\v\\x00\\x00\\x04\\xf2\" + // 0x0423030B: 0x000004F2\n\t\"\\x04C\\x03\\v\\x00\\x00\\x04\\xf3\" + // 0x0443030B: 0x000004F3\n\t\"\\x04'\\x03\\b\\x00\\x00\\x04\\xf4\" + // 0x04270308: 0x000004F4\n\t\"\\x04G\\x03\\b\\x00\\x00\\x04\\xf5\" + // 0x04470308: 0x000004F5\n\t\"\\x04+\\x03\\b\\x00\\x00\\x04\\xf8\" + // 0x042B0308: 0x000004F8\n\t\"\\x04K\\x03\\b\\x00\\x00\\x04\\xf9\" + // 0x044B0308: 0x000004F9\n\t\"\\x06'\\x06S\\x00\\x00\\x06\\\"\" + // 0x06270653: 0x00000622\n\t\"\\x06'\\x06T\\x00\\x00\\x06#\" + // 0x06270654: 0x00000623\n\t\"\\x06H\\x06T\\x00\\x00\\x06$\" + // 0x06480654: 0x00000624\n\t\"\\x06'\\x06U\\x00\\x00\\x06%\" + // 0x06270655: 0x00000625\n\t\"\\x06J\\x06T\\x00\\x00\\x06&\" + // 0x064A0654: 0x00000626\n\t\"\\x06\\xd5\\x06T\\x00\\x00\\x06\\xc0\" + // 0x06D50654: 0x000006C0\n\t\"\\x06\\xc1\\x06T\\x00\\x00\\x06\\xc2\" + // 0x06C10654: 0x000006C2\n\t\"\\x06\\xd2\\x06T\\x00\\x00\\x06\\xd3\" + // 0x06D20654: 0x000006D3\n\t\"\\t(\\t<\\x00\\x00\\t)\" + // 0x0928093C: 0x00000929\n\t\"\\t0\\t<\\x00\\x00\\t1\" + // 0x0930093C: 0x00000931\n\t\"\\t3\\t<\\x00\\x00\\t4\" + // 0x0933093C: 0x00000934\n\t\"\\t\\xc7\\t\\xbe\\x00\\x00\\t\\xcb\" + // 0x09C709BE: 0x000009CB\n\t\"\\t\\xc7\\t\\xd7\\x00\\x00\\t\\xcc\" + // 0x09C709D7: 0x000009CC\n\t\"\\vG\\vV\\x00\\x00\\vH\" + // 0x0B470B56: 0x00000B48\n\t\"\\vG\\v>\\x00\\x00\\vK\" + // 0x0B470B3E: 0x00000B4B\n\t\"\\vG\\vW\\x00\\x00\\vL\" + // 0x0B470B57: 0x00000B4C\n\t\"\\v\\x92\\v\\xd7\\x00\\x00\\v\\x94\" + // 0x0B920BD7: 0x00000B94\n\t\"\\v\\xc6\\v\\xbe\\x00\\x00\\v\\xca\" + // 0x0BC60BBE: 0x00000BCA\n\t\"\\v\\xc7\\v\\xbe\\x00\\x00\\v\\xcb\" + // 0x0BC70BBE: 0x00000BCB\n\t\"\\v\\xc6\\v\\xd7\\x00\\x00\\v\\xcc\" + // 0x0BC60BD7: 0x00000BCC\n\t\"\\fF\\fV\\x00\\x00\\fH\" + // 0x0C460C56: 0x00000C48\n\t\"\\f\\xbf\\f\\xd5\\x00\\x00\\f\\xc0\" + // 0x0CBF0CD5: 0x00000CC0\n\t\"\\f\\xc6\\f\\xd5\\x00\\x00\\f\\xc7\" + // 0x0CC60CD5: 0x00000CC7\n\t\"\\f\\xc6\\f\\xd6\\x00\\x00\\f\\xc8\" + // 0x0CC60CD6: 0x00000CC8\n\t\"\\f\\xc6\\f\\xc2\\x00\\x00\\f\\xca\" + // 0x0CC60CC2: 0x00000CCA\n\t\"\\f\\xca\\f\\xd5\\x00\\x00\\f\\xcb\" + // 0x0CCA0CD5: 0x00000CCB\n\t\"\\rF\\r>\\x00\\x00\\rJ\" + // 0x0D460D3E: 0x00000D4A\n\t\"\\rG\\r>\\x00\\x00\\rK\" + // 0x0D470D3E: 0x00000D4B\n\t\"\\rF\\rW\\x00\\x00\\rL\" + // 0x0D460D57: 0x00000D4C\n\t\"\\r\\xd9\\r\\xca\\x00\\x00\\r\\xda\" + // 0x0DD90DCA: 0x00000DDA\n\t\"\\r\\xd9\\r\\xcf\\x00\\x00\\r\\xdc\" + // 0x0DD90DCF: 0x00000DDC\n\t\"\\r\\xdc\\r\\xca\\x00\\x00\\r\\xdd\" + // 0x0DDC0DCA: 0x00000DDD\n\t\"\\r\\xd9\\r\\xdf\\x00\\x00\\r\\xde\" + // 0x0DD90DDF: 0x00000DDE\n\t\"\\x10%\\x10.\\x00\\x00\\x10&\" + // 0x1025102E: 0x00001026\n\t\"\\x1b\\x05\\x1b5\\x00\\x00\\x1b\\x06\" + // 0x1B051B35: 0x00001B06\n\t\"\\x1b\\a\\x1b5\\x00\\x00\\x1b\\b\" + // 0x1B071B35: 0x00001B08\n\t\"\\x1b\\t\\x1b5\\x00\\x00\\x1b\\n\" + // 0x1B091B35: 0x00001B0A\n\t\"\\x1b\\v\\x1b5\\x00\\x00\\x1b\\f\" + // 0x1B0B1B35: 0x00001B0C\n\t\"\\x1b\\r\\x1b5\\x00\\x00\\x1b\\x0e\" + // 0x1B0D1B35: 0x00001B0E\n\t\"\\x1b\\x11\\x1b5\\x00\\x00\\x1b\\x12\" + // 0x1B111B35: 0x00001B12\n\t\"\\x1b:\\x1b5\\x00\\x00\\x1b;\" + // 0x1B3A1B35: 0x00001B3B\n\t\"\\x1b<\\x1b5\\x00\\x00\\x1b=\" + // 0x1B3C1B35: 0x00001B3D\n\t\"\\x1b>\\x1b5\\x00\\x00\\x1b@\" + // 0x1B3E1B35: 0x00001B40\n\t\"\\x1b?\\x1b5\\x00\\x00\\x1bA\" + // 0x1B3F1B35: 0x00001B41\n\t\"\\x1bB\\x1b5\\x00\\x00\\x1bC\" + // 0x1B421B35: 0x00001B43\n\t\"\\x00A\\x03%\\x00\\x00\\x1e\\x00\" + // 0x00410325: 0x00001E00\n\t\"\\x00a\\x03%\\x00\\x00\\x1e\\x01\" + // 0x00610325: 0x00001E01\n\t\"\\x00B\\x03\\a\\x00\\x00\\x1e\\x02\" + // 0x00420307: 0x00001E02\n\t\"\\x00b\\x03\\a\\x00\\x00\\x1e\\x03\" + // 0x00620307: 0x00001E03\n\t\"\\x00B\\x03#\\x00\\x00\\x1e\\x04\" + // 0x00420323: 0x00001E04\n\t\"\\x00b\\x03#\\x00\\x00\\x1e\\x05\" + // 0x00620323: 0x00001E05\n\t\"\\x00B\\x031\\x00\\x00\\x1e\\x06\" + // 0x00420331: 0x00001E06\n\t\"\\x00b\\x031\\x00\\x00\\x1e\\a\" + // 0x00620331: 0x00001E07\n\t\"\\x00\\xc7\\x03\\x01\\x00\\x00\\x1e\\b\" + // 0x00C70301: 0x00001E08\n\t\"\\x00\\xe7\\x03\\x01\\x00\\x00\\x1e\\t\" + // 0x00E70301: 0x00001E09\n\t\"\\x00D\\x03\\a\\x00\\x00\\x1e\\n\" + // 0x00440307: 0x00001E0A\n\t\"\\x00d\\x03\\a\\x00\\x00\\x1e\\v\" + // 0x00640307: 0x00001E0B\n\t\"\\x00D\\x03#\\x00\\x00\\x1e\\f\" + // 0x00440323: 0x00001E0C\n\t\"\\x00d\\x03#\\x00\\x00\\x1e\\r\" + // 0x00640323: 0x00001E0D\n\t\"\\x00D\\x031\\x00\\x00\\x1e\\x0e\" + // 0x00440331: 0x00001E0E\n\t\"\\x00d\\x031\\x00\\x00\\x1e\\x0f\" + // 0x00640331: 0x00001E0F\n\t\"\\x00D\\x03'\\x00\\x00\\x1e\\x10\" + // 0x00440327: 0x00001E10\n\t\"\\x00d\\x03'\\x00\\x00\\x1e\\x11\" + // 0x00640327: 0x00001E11\n\t\"\\x00D\\x03-\\x00\\x00\\x1e\\x12\" + // 0x0044032D: 0x00001E12\n\t\"\\x00d\\x03-\\x00\\x00\\x1e\\x13\" + // 0x0064032D: 0x00001E13\n\t\"\\x01\\x12\\x03\\x00\\x00\\x00\\x1e\\x14\" + // 0x01120300: 0x00001E14\n\t\"\\x01\\x13\\x03\\x00\\x00\\x00\\x1e\\x15\" + // 0x01130300: 0x00001E15\n\t\"\\x01\\x12\\x03\\x01\\x00\\x00\\x1e\\x16\" + // 0x01120301: 0x00001E16\n\t\"\\x01\\x13\\x03\\x01\\x00\\x00\\x1e\\x17\" + // 0x01130301: 0x00001E17\n\t\"\\x00E\\x03-\\x00\\x00\\x1e\\x18\" + // 0x0045032D: 0x00001E18\n\t\"\\x00e\\x03-\\x00\\x00\\x1e\\x19\" + // 0x0065032D: 0x00001E19\n\t\"\\x00E\\x030\\x00\\x00\\x1e\\x1a\" + // 0x00450330: 0x00001E1A\n\t\"\\x00e\\x030\\x00\\x00\\x1e\\x1b\" + // 0x00650330: 0x00001E1B\n\t\"\\x02(\\x03\\x06\\x00\\x00\\x1e\\x1c\" + // 0x02280306: 0x00001E1C\n\t\"\\x02)\\x03\\x06\\x00\\x00\\x1e\\x1d\" + // 0x02290306: 0x00001E1D\n\t\"\\x00F\\x03\\a\\x00\\x00\\x1e\\x1e\" + // 0x00460307: 0x00001E1E\n\t\"\\x00f\\x03\\a\\x00\\x00\\x1e\\x1f\" + // 0x00660307: 0x00001E1F\n\t\"\\x00G\\x03\\x04\\x00\\x00\\x1e \" + // 0x00470304: 0x00001E20\n\t\"\\x00g\\x03\\x04\\x00\\x00\\x1e!\" + // 0x00670304: 0x00001E21\n\t\"\\x00H\\x03\\a\\x00\\x00\\x1e\\\"\" + // 0x00480307: 0x00001E22\n\t\"\\x00h\\x03\\a\\x00\\x00\\x1e#\" + // 0x00680307: 0x00001E23\n\t\"\\x00H\\x03#\\x00\\x00\\x1e$\" + // 0x00480323: 0x00001E24\n\t\"\\x00h\\x03#\\x00\\x00\\x1e%\" + // 0x00680323: 0x00001E25\n\t\"\\x00H\\x03\\b\\x00\\x00\\x1e&\" + // 0x00480308: 0x00001E26\n\t\"\\x00h\\x03\\b\\x00\\x00\\x1e'\" + // 0x00680308: 0x00001E27\n\t\"\\x00H\\x03'\\x00\\x00\\x1e(\" + // 0x00480327: 0x00001E28\n\t\"\\x00h\\x03'\\x00\\x00\\x1e)\" + // 0x00680327: 0x00001E29\n\t\"\\x00H\\x03.\\x00\\x00\\x1e*\" + // 0x0048032E: 0x00001E2A\n\t\"\\x00h\\x03.\\x00\\x00\\x1e+\" + // 0x0068032E: 0x00001E2B\n\t\"\\x00I\\x030\\x00\\x00\\x1e,\" + // 0x00490330: 0x00001E2C\n\t\"\\x00i\\x030\\x00\\x00\\x1e-\" + // 0x00690330: 0x00001E2D\n\t\"\\x00\\xcf\\x03\\x01\\x00\\x00\\x1e.\" + // 0x00CF0301: 0x00001E2E\n\t\"\\x00\\xef\\x03\\x01\\x00\\x00\\x1e/\" + // 0x00EF0301: 0x00001E2F\n\t\"\\x00K\\x03\\x01\\x00\\x00\\x1e0\" + // 0x004B0301: 0x00001E30\n\t\"\\x00k\\x03\\x01\\x00\\x00\\x1e1\" + // 0x006B0301: 0x00001E31\n\t\"\\x00K\\x03#\\x00\\x00\\x1e2\" + // 0x004B0323: 0x00001E32\n\t\"\\x00k\\x03#\\x00\\x00\\x1e3\" + // 0x006B0323: 0x00001E33\n\t\"\\x00K\\x031\\x00\\x00\\x1e4\" + // 0x004B0331: 0x00001E34\n\t\"\\x00k\\x031\\x00\\x00\\x1e5\" + // 0x006B0331: 0x00001E35\n\t\"\\x00L\\x03#\\x00\\x00\\x1e6\" + // 0x004C0323: 0x00001E36\n\t\"\\x00l\\x03#\\x00\\x00\\x1e7\" + // 0x006C0323: 0x00001E37\n\t\"\\x1e6\\x03\\x04\\x00\\x00\\x1e8\" + // 0x1E360304: 0x00001E38\n\t\"\\x1e7\\x03\\x04\\x00\\x00\\x1e9\" + // 0x1E370304: 0x00001E39\n\t\"\\x00L\\x031\\x00\\x00\\x1e:\" + // 0x004C0331: 0x00001E3A\n\t\"\\x00l\\x031\\x00\\x00\\x1e;\" + // 0x006C0331: 0x00001E3B\n\t\"\\x00L\\x03-\\x00\\x00\\x1e<\" + // 0x004C032D: 0x00001E3C\n\t\"\\x00l\\x03-\\x00\\x00\\x1e=\" + // 0x006C032D: 0x00001E3D\n\t\"\\x00M\\x03\\x01\\x00\\x00\\x1e>\" + // 0x004D0301: 0x00001E3E\n\t\"\\x00m\\x03\\x01\\x00\\x00\\x1e?\" + // 0x006D0301: 0x00001E3F\n\t\"\\x00M\\x03\\a\\x00\\x00\\x1e@\" + // 0x004D0307: 0x00001E40\n\t\"\\x00m\\x03\\a\\x00\\x00\\x1eA\" + // 0x006D0307: 0x00001E41\n\t\"\\x00M\\x03#\\x00\\x00\\x1eB\" + // 0x004D0323: 0x00001E42\n\t\"\\x00m\\x03#\\x00\\x00\\x1eC\" + // 0x006D0323: 0x00001E43\n\t\"\\x00N\\x03\\a\\x00\\x00\\x1eD\" + // 0x004E0307: 0x00001E44\n\t\"\\x00n\\x03\\a\\x00\\x00\\x1eE\" + // 0x006E0307: 0x00001E45\n\t\"\\x00N\\x03#\\x00\\x00\\x1eF\" + // 0x004E0323: 0x00001E46\n\t\"\\x00n\\x03#\\x00\\x00\\x1eG\" + // 0x006E0323: 0x00001E47\n\t\"\\x00N\\x031\\x00\\x00\\x1eH\" + // 0x004E0331: 0x00001E48\n\t\"\\x00n\\x031\\x00\\x00\\x1eI\" + // 0x006E0331: 0x00001E49\n\t\"\\x00N\\x03-\\x00\\x00\\x1eJ\" + // 0x004E032D: 0x00001E4A\n\t\"\\x00n\\x03-\\x00\\x00\\x1eK\" + // 0x006E032D: 0x00001E4B\n\t\"\\x00\\xd5\\x03\\x01\\x00\\x00\\x1eL\" + // 0x00D50301: 0x00001E4C\n\t\"\\x00\\xf5\\x03\\x01\\x00\\x00\\x1eM\" + // 0x00F50301: 0x00001E4D\n\t\"\\x00\\xd5\\x03\\b\\x00\\x00\\x1eN\" + // 0x00D50308: 0x00001E4E\n\t\"\\x00\\xf5\\x03\\b\\x00\\x00\\x1eO\" + // 0x00F50308: 0x00001E4F\n\t\"\\x01L\\x03\\x00\\x00\\x00\\x1eP\" + // 0x014C0300: 0x00001E50\n\t\"\\x01M\\x03\\x00\\x00\\x00\\x1eQ\" + // 0x014D0300: 0x00001E51\n\t\"\\x01L\\x03\\x01\\x00\\x00\\x1eR\" + // 0x014C0301: 0x00001E52\n\t\"\\x01M\\x03\\x01\\x00\\x00\\x1eS\" + // 0x014D0301: 0x00001E53\n\t\"\\x00P\\x03\\x01\\x00\\x00\\x1eT\" + // 0x00500301: 0x00001E54\n\t\"\\x00p\\x03\\x01\\x00\\x00\\x1eU\" + // 0x00700301: 0x00001E55\n\t\"\\x00P\\x03\\a\\x00\\x00\\x1eV\" + // 0x00500307: 0x00001E56\n\t\"\\x00p\\x03\\a\\x00\\x00\\x1eW\" + // 0x00700307: 0x00001E57\n\t\"\\x00R\\x03\\a\\x00\\x00\\x1eX\" + // 0x00520307: 0x00001E58\n\t\"\\x00r\\x03\\a\\x00\\x00\\x1eY\" + // 0x00720307: 0x00001E59\n\t\"\\x00R\\x03#\\x00\\x00\\x1eZ\" + // 0x00520323: 0x00001E5A\n\t\"\\x00r\\x03#\\x00\\x00\\x1e[\" + // 0x00720323: 0x00001E5B\n\t\"\\x1eZ\\x03\\x04\\x00\\x00\\x1e\\\\\" + // 0x1E5A0304: 0x00001E5C\n\t\"\\x1e[\\x03\\x04\\x00\\x00\\x1e]\" + // 0x1E5B0304: 0x00001E5D\n\t\"\\x00R\\x031\\x00\\x00\\x1e^\" + // 0x00520331: 0x00001E5E\n\t\"\\x00r\\x031\\x00\\x00\\x1e_\" + // 0x00720331: 0x00001E5F\n\t\"\\x00S\\x03\\a\\x00\\x00\\x1e`\" + // 0x00530307: 0x00001E60\n\t\"\\x00s\\x03\\a\\x00\\x00\\x1ea\" + // 0x00730307: 0x00001E61\n\t\"\\x00S\\x03#\\x00\\x00\\x1eb\" + // 0x00530323: 0x00001E62\n\t\"\\x00s\\x03#\\x00\\x00\\x1ec\" + // 0x00730323: 0x00001E63\n\t\"\\x01Z\\x03\\a\\x00\\x00\\x1ed\" + // 0x015A0307: 0x00001E64\n\t\"\\x01[\\x03\\a\\x00\\x00\\x1ee\" + // 0x015B0307: 0x00001E65\n\t\"\\x01`\\x03\\a\\x00\\x00\\x1ef\" + // 0x01600307: 0x00001E66\n\t\"\\x01a\\x03\\a\\x00\\x00\\x1eg\" + // 0x01610307: 0x00001E67\n\t\"\\x1eb\\x03\\a\\x00\\x00\\x1eh\" + // 0x1E620307: 0x00001E68\n\t\"\\x1ec\\x03\\a\\x00\\x00\\x1ei\" + // 0x1E630307: 0x00001E69\n\t\"\\x00T\\x03\\a\\x00\\x00\\x1ej\" + // 0x00540307: 0x00001E6A\n\t\"\\x00t\\x03\\a\\x00\\x00\\x1ek\" + // 0x00740307: 0x00001E6B\n\t\"\\x00T\\x03#\\x00\\x00\\x1el\" + // 0x00540323: 0x00001E6C\n\t\"\\x00t\\x03#\\x00\\x00\\x1em\" + // 0x00740323: 0x00001E6D\n\t\"\\x00T\\x031\\x00\\x00\\x1en\" + // 0x00540331: 0x00001E6E\n\t\"\\x00t\\x031\\x00\\x00\\x1eo\" + // 0x00740331: 0x00001E6F\n\t\"\\x00T\\x03-\\x00\\x00\\x1ep\" + // 0x0054032D: 0x00001E70\n\t\"\\x00t\\x03-\\x00\\x00\\x1eq\" + // 0x0074032D: 0x00001E71\n\t\"\\x00U\\x03$\\x00\\x00\\x1er\" + // 0x00550324: 0x00001E72\n\t\"\\x00u\\x03$\\x00\\x00\\x1es\" + // 0x00750324: 0x00001E73\n\t\"\\x00U\\x030\\x00\\x00\\x1et\" + // 0x00550330: 0x00001E74\n\t\"\\x00u\\x030\\x00\\x00\\x1eu\" + // 0x00750330: 0x00001E75\n\t\"\\x00U\\x03-\\x00\\x00\\x1ev\" + // 0x0055032D: 0x00001E76\n\t\"\\x00u\\x03-\\x00\\x00\\x1ew\" + // 0x0075032D: 0x00001E77\n\t\"\\x01h\\x03\\x01\\x00\\x00\\x1ex\" + // 0x01680301: 0x00001E78\n\t\"\\x01i\\x03\\x01\\x00\\x00\\x1ey\" + // 0x01690301: 0x00001E79\n\t\"\\x01j\\x03\\b\\x00\\x00\\x1ez\" + // 0x016A0308: 0x00001E7A\n\t\"\\x01k\\x03\\b\\x00\\x00\\x1e{\" + // 0x016B0308: 0x00001E7B\n\t\"\\x00V\\x03\\x03\\x00\\x00\\x1e|\" + // 0x00560303: 0x00001E7C\n\t\"\\x00v\\x03\\x03\\x00\\x00\\x1e}\" + // 0x00760303: 0x00001E7D\n\t\"\\x00V\\x03#\\x00\\x00\\x1e~\" + // 0x00560323: 0x00001E7E\n\t\"\\x00v\\x03#\\x00\\x00\\x1e\\u007f\" + // 0x00760323: 0x00001E7F\n\t\"\\x00W\\x03\\x00\\x00\\x00\\x1e\\x80\" + // 0x00570300: 0x00001E80\n\t\"\\x00w\\x03\\x00\\x00\\x00\\x1e\\x81\" + // 0x00770300: 0x00001E81\n\t\"\\x00W\\x03\\x01\\x00\\x00\\x1e\\x82\" + // 0x00570301: 0x00001E82\n\t\"\\x00w\\x03\\x01\\x00\\x00\\x1e\\x83\" + // 0x00770301: 0x00001E83\n\t\"\\x00W\\x03\\b\\x00\\x00\\x1e\\x84\" + // 0x00570308: 0x00001E84\n\t\"\\x00w\\x03\\b\\x00\\x00\\x1e\\x85\" + // 0x00770308: 0x00001E85\n\t\"\\x00W\\x03\\a\\x00\\x00\\x1e\\x86\" + // 0x00570307: 0x00001E86\n\t\"\\x00w\\x03\\a\\x00\\x00\\x1e\\x87\" + // 0x00770307: 0x00001E87\n\t\"\\x00W\\x03#\\x00\\x00\\x1e\\x88\" + // 0x00570323: 0x00001E88\n\t\"\\x00w\\x03#\\x00\\x00\\x1e\\x89\" + // 0x00770323: 0x00001E89\n\t\"\\x00X\\x03\\a\\x00\\x00\\x1e\\x8a\" + // 0x00580307: 0x00001E8A\n\t\"\\x00x\\x03\\a\\x00\\x00\\x1e\\x8b\" + // 0x00780307: 0x00001E8B\n\t\"\\x00X\\x03\\b\\x00\\x00\\x1e\\x8c\" + // 0x00580308: 0x00001E8C\n\t\"\\x00x\\x03\\b\\x00\\x00\\x1e\\x8d\" + // 0x00780308: 0x00001E8D\n\t\"\\x00Y\\x03\\a\\x00\\x00\\x1e\\x8e\" + // 0x00590307: 0x00001E8E\n\t\"\\x00y\\x03\\a\\x00\\x00\\x1e\\x8f\" + // 0x00790307: 0x00001E8F\n\t\"\\x00Z\\x03\\x02\\x00\\x00\\x1e\\x90\" + // 0x005A0302: 0x00001E90\n\t\"\\x00z\\x03\\x02\\x00\\x00\\x1e\\x91\" + // 0x007A0302: 0x00001E91\n\t\"\\x00Z\\x03#\\x00\\x00\\x1e\\x92\" + // 0x005A0323: 0x00001E92\n\t\"\\x00z\\x03#\\x00\\x00\\x1e\\x93\" + // 0x007A0323: 0x00001E93\n\t\"\\x00Z\\x031\\x00\\x00\\x1e\\x94\" + // 0x005A0331: 0x00001E94\n\t\"\\x00z\\x031\\x00\\x00\\x1e\\x95\" + // 0x007A0331: 0x00001E95\n\t\"\\x00h\\x031\\x00\\x00\\x1e\\x96\" + // 0x00680331: 0x00001E96\n\t\"\\x00t\\x03\\b\\x00\\x00\\x1e\\x97\" + // 0x00740308: 0x00001E97\n\t\"\\x00w\\x03\\n\\x00\\x00\\x1e\\x98\" + // 0x0077030A: 0x00001E98\n\t\"\\x00y\\x03\\n\\x00\\x00\\x1e\\x99\" + // 0x0079030A: 0x00001E99\n\t\"\\x01\\u007f\\x03\\a\\x00\\x00\\x1e\\x9b\" + // 0x017F0307: 0x00001E9B\n\t\"\\x00A\\x03#\\x00\\x00\\x1e\\xa0\" + // 0x00410323: 0x00001EA0\n\t\"\\x00a\\x03#\\x00\\x00\\x1e\\xa1\" + // 0x00610323: 0x00001EA1\n\t\"\\x00A\\x03\\t\\x00\\x00\\x1e\\xa2\" + // 0x00410309: 0x00001EA2\n\t\"\\x00a\\x03\\t\\x00\\x00\\x1e\\xa3\" + // 0x00610309: 0x00001EA3\n\t\"\\x00\\xc2\\x03\\x01\\x00\\x00\\x1e\\xa4\" + // 0x00C20301: 0x00001EA4\n\t\"\\x00\\xe2\\x03\\x01\\x00\\x00\\x1e\\xa5\" + // 0x00E20301: 0x00001EA5\n\t\"\\x00\\xc2\\x03\\x00\\x00\\x00\\x1e\\xa6\" + // 0x00C20300: 0x00001EA6\n\t\"\\x00\\xe2\\x03\\x00\\x00\\x00\\x1e\\xa7\" + // 0x00E20300: 0x00001EA7\n\t\"\\x00\\xc2\\x03\\t\\x00\\x00\\x1e\\xa8\" + // 0x00C20309: 0x00001EA8\n\t\"\\x00\\xe2\\x03\\t\\x00\\x00\\x1e\\xa9\" + // 0x00E20309: 0x00001EA9\n\t\"\\x00\\xc2\\x03\\x03\\x00\\x00\\x1e\\xaa\" + // 0x00C20303: 0x00001EAA\n\t\"\\x00\\xe2\\x03\\x03\\x00\\x00\\x1e\\xab\" + // 0x00E20303: 0x00001EAB\n\t\"\\x1e\\xa0\\x03\\x02\\x00\\x00\\x1e\\xac\" + // 0x1EA00302: 0x00001EAC\n\t\"\\x1e\\xa1\\x03\\x02\\x00\\x00\\x1e\\xad\" + // 0x1EA10302: 0x00001EAD\n\t\"\\x01\\x02\\x03\\x01\\x00\\x00\\x1e\\xae\" + // 0x01020301: 0x00001EAE\n\t\"\\x01\\x03\\x03\\x01\\x00\\x00\\x1e\\xaf\" + // 0x01030301: 0x00001EAF\n\t\"\\x01\\x02\\x03\\x00\\x00\\x00\\x1e\\xb0\" + // 0x01020300: 0x00001EB0\n\t\"\\x01\\x03\\x03\\x00\\x00\\x00\\x1e\\xb1\" + // 0x01030300: 0x00001EB1\n\t\"\\x01\\x02\\x03\\t\\x00\\x00\\x1e\\xb2\" + // 0x01020309: 0x00001EB2\n\t\"\\x01\\x03\\x03\\t\\x00\\x00\\x1e\\xb3\" + // 0x01030309: 0x00001EB3\n\t\"\\x01\\x02\\x03\\x03\\x00\\x00\\x1e\\xb4\" + // 0x01020303: 0x00001EB4\n\t\"\\x01\\x03\\x03\\x03\\x00\\x00\\x1e\\xb5\" + // 0x01030303: 0x00001EB5\n\t\"\\x1e\\xa0\\x03\\x06\\x00\\x00\\x1e\\xb6\" + // 0x1EA00306: 0x00001EB6\n\t\"\\x1e\\xa1\\x03\\x06\\x00\\x00\\x1e\\xb7\" + // 0x1EA10306: 0x00001EB7\n\t\"\\x00E\\x03#\\x00\\x00\\x1e\\xb8\" + // 0x00450323: 0x00001EB8\n\t\"\\x00e\\x03#\\x00\\x00\\x1e\\xb9\" + // 0x00650323: 0x00001EB9\n\t\"\\x00E\\x03\\t\\x00\\x00\\x1e\\xba\" + // 0x00450309: 0x00001EBA\n\t\"\\x00e\\x03\\t\\x00\\x00\\x1e\\xbb\" + // 0x00650309: 0x00001EBB\n\t\"\\x00E\\x03\\x03\\x00\\x00\\x1e\\xbc\" + // 0x00450303: 0x00001EBC\n\t\"\\x00e\\x03\\x03\\x00\\x00\\x1e\\xbd\" + // 0x00650303: 0x00001EBD\n\t\"\\x00\\xca\\x03\\x01\\x00\\x00\\x1e\\xbe\" + // 0x00CA0301: 0x00001EBE\n\t\"\\x00\\xea\\x03\\x01\\x00\\x00\\x1e\\xbf\" + // 0x00EA0301: 0x00001EBF\n\t\"\\x00\\xca\\x03\\x00\\x00\\x00\\x1e\\xc0\" + // 0x00CA0300: 0x00001EC0\n\t\"\\x00\\xea\\x03\\x00\\x00\\x00\\x1e\\xc1\" + // 0x00EA0300: 0x00001EC1\n\t\"\\x00\\xca\\x03\\t\\x00\\x00\\x1e\\xc2\" + // 0x00CA0309: 0x00001EC2\n\t\"\\x00\\xea\\x03\\t\\x00\\x00\\x1e\\xc3\" + // 0x00EA0309: 0x00001EC3\n\t\"\\x00\\xca\\x03\\x03\\x00\\x00\\x1e\\xc4\" + // 0x00CA0303: 0x00001EC4\n\t\"\\x00\\xea\\x03\\x03\\x00\\x00\\x1e\\xc5\" + // 0x00EA0303: 0x00001EC5\n\t\"\\x1e\\xb8\\x03\\x02\\x00\\x00\\x1e\\xc6\" + // 0x1EB80302: 0x00001EC6\n\t\"\\x1e\\xb9\\x03\\x02\\x00\\x00\\x1e\\xc7\" + // 0x1EB90302: 0x00001EC7\n\t\"\\x00I\\x03\\t\\x00\\x00\\x1e\\xc8\" + // 0x00490309: 0x00001EC8\n\t\"\\x00i\\x03\\t\\x00\\x00\\x1e\\xc9\" + // 0x00690309: 0x00001EC9\n\t\"\\x00I\\x03#\\x00\\x00\\x1e\\xca\" + // 0x00490323: 0x00001ECA\n\t\"\\x00i\\x03#\\x00\\x00\\x1e\\xcb\" + // 0x00690323: 0x00001ECB\n\t\"\\x00O\\x03#\\x00\\x00\\x1e\\xcc\" + // 0x004F0323: 0x00001ECC\n\t\"\\x00o\\x03#\\x00\\x00\\x1e\\xcd\" + // 0x006F0323: 0x00001ECD\n\t\"\\x00O\\x03\\t\\x00\\x00\\x1e\\xce\" + // 0x004F0309: 0x00001ECE\n\t\"\\x00o\\x03\\t\\x00\\x00\\x1e\\xcf\" + // 0x006F0309: 0x00001ECF\n\t\"\\x00\\xd4\\x03\\x01\\x00\\x00\\x1e\\xd0\" + // 0x00D40301: 0x00001ED0\n\t\"\\x00\\xf4\\x03\\x01\\x00\\x00\\x1e\\xd1\" + // 0x00F40301: 0x00001ED1\n\t\"\\x00\\xd4\\x03\\x00\\x00\\x00\\x1e\\xd2\" + // 0x00D40300: 0x00001ED2\n\t\"\\x00\\xf4\\x03\\x00\\x00\\x00\\x1e\\xd3\" + // 0x00F40300: 0x00001ED3\n\t\"\\x00\\xd4\\x03\\t\\x00\\x00\\x1e\\xd4\" + // 0x00D40309: 0x00001ED4\n\t\"\\x00\\xf4\\x03\\t\\x00\\x00\\x1e\\xd5\" + // 0x00F40309: 0x00001ED5\n\t\"\\x00\\xd4\\x03\\x03\\x00\\x00\\x1e\\xd6\" + // 0x00D40303: 0x00001ED6\n\t\"\\x00\\xf4\\x03\\x03\\x00\\x00\\x1e\\xd7\" + // 0x00F40303: 0x00001ED7\n\t\"\\x1e\\xcc\\x03\\x02\\x00\\x00\\x1e\\xd8\" + // 0x1ECC0302: 0x00001ED8\n\t\"\\x1e\\xcd\\x03\\x02\\x00\\x00\\x1e\\xd9\" + // 0x1ECD0302: 0x00001ED9\n\t\"\\x01\\xa0\\x03\\x01\\x00\\x00\\x1e\\xda\" + // 0x01A00301: 0x00001EDA\n\t\"\\x01\\xa1\\x03\\x01\\x00\\x00\\x1e\\xdb\" + // 0x01A10301: 0x00001EDB\n\t\"\\x01\\xa0\\x03\\x00\\x00\\x00\\x1e\\xdc\" + // 0x01A00300: 0x00001EDC\n\t\"\\x01\\xa1\\x03\\x00\\x00\\x00\\x1e\\xdd\" + // 0x01A10300: 0x00001EDD\n\t\"\\x01\\xa0\\x03\\t\\x00\\x00\\x1e\\xde\" + // 0x01A00309: 0x00001EDE\n\t\"\\x01\\xa1\\x03\\t\\x00\\x00\\x1e\\xdf\" + // 0x01A10309: 0x00001EDF\n\t\"\\x01\\xa0\\x03\\x03\\x00\\x00\\x1e\\xe0\" + // 0x01A00303: 0x00001EE0\n\t\"\\x01\\xa1\\x03\\x03\\x00\\x00\\x1e\\xe1\" + // 0x01A10303: 0x00001EE1\n\t\"\\x01\\xa0\\x03#\\x00\\x00\\x1e\\xe2\" + // 0x01A00323: 0x00001EE2\n\t\"\\x01\\xa1\\x03#\\x00\\x00\\x1e\\xe3\" + // 0x01A10323: 0x00001EE3\n\t\"\\x00U\\x03#\\x00\\x00\\x1e\\xe4\" + // 0x00550323: 0x00001EE4\n\t\"\\x00u\\x03#\\x00\\x00\\x1e\\xe5\" + // 0x00750323: 0x00001EE5\n\t\"\\x00U\\x03\\t\\x00\\x00\\x1e\\xe6\" + // 0x00550309: 0x00001EE6\n\t\"\\x00u\\x03\\t\\x00\\x00\\x1e\\xe7\" + // 0x00750309: 0x00001EE7\n\t\"\\x01\\xaf\\x03\\x01\\x00\\x00\\x1e\\xe8\" + // 0x01AF0301: 0x00001EE8\n\t\"\\x01\\xb0\\x03\\x01\\x00\\x00\\x1e\\xe9\" + // 0x01B00301: 0x00001EE9\n\t\"\\x01\\xaf\\x03\\x00\\x00\\x00\\x1e\\xea\" + // 0x01AF0300: 0x00001EEA\n\t\"\\x01\\xb0\\x03\\x00\\x00\\x00\\x1e\\xeb\" + // 0x01B00300: 0x00001EEB\n\t\"\\x01\\xaf\\x03\\t\\x00\\x00\\x1e\\xec\" + // 0x01AF0309: 0x00001EEC\n\t\"\\x01\\xb0\\x03\\t\\x00\\x00\\x1e\\xed\" + // 0x01B00309: 0x00001EED\n\t\"\\x01\\xaf\\x03\\x03\\x00\\x00\\x1e\\xee\" + // 0x01AF0303: 0x00001EEE\n\t\"\\x01\\xb0\\x03\\x03\\x00\\x00\\x1e\\xef\" + // 0x01B00303: 0x00001EEF\n\t\"\\x01\\xaf\\x03#\\x00\\x00\\x1e\\xf0\" + // 0x01AF0323: 0x00001EF0\n\t\"\\x01\\xb0\\x03#\\x00\\x00\\x1e\\xf1\" + // 0x01B00323: 0x00001EF1\n\t\"\\x00Y\\x03\\x00\\x00\\x00\\x1e\\xf2\" + // 0x00590300: 0x00001EF2\n\t\"\\x00y\\x03\\x00\\x00\\x00\\x1e\\xf3\" + // 0x00790300: 0x00001EF3\n\t\"\\x00Y\\x03#\\x00\\x00\\x1e\\xf4\" + // 0x00590323: 0x00001EF4\n\t\"\\x00y\\x03#\\x00\\x00\\x1e\\xf5\" + // 0x00790323: 0x00001EF5\n\t\"\\x00Y\\x03\\t\\x00\\x00\\x1e\\xf6\" + // 0x00590309: 0x00001EF6\n\t\"\\x00y\\x03\\t\\x00\\x00\\x1e\\xf7\" + // 0x00790309: 0x00001EF7\n\t\"\\x00Y\\x03\\x03\\x00\\x00\\x1e\\xf8\" + // 0x00590303: 0x00001EF8\n\t\"\\x00y\\x03\\x03\\x00\\x00\\x1e\\xf9\" + // 0x00790303: 0x00001EF9\n\t\"\\x03\\xb1\\x03\\x13\\x00\\x00\\x1f\\x00\" + // 0x03B10313: 0x00001F00\n\t\"\\x03\\xb1\\x03\\x14\\x00\\x00\\x1f\\x01\" + // 0x03B10314: 0x00001F01\n\t\"\\x1f\\x00\\x03\\x00\\x00\\x00\\x1f\\x02\" + // 0x1F000300: 0x00001F02\n\t\"\\x1f\\x01\\x03\\x00\\x00\\x00\\x1f\\x03\" + // 0x1F010300: 0x00001F03\n\t\"\\x1f\\x00\\x03\\x01\\x00\\x00\\x1f\\x04\" + // 0x1F000301: 0x00001F04\n\t\"\\x1f\\x01\\x03\\x01\\x00\\x00\\x1f\\x05\" + // 0x1F010301: 0x00001F05\n\t\"\\x1f\\x00\\x03B\\x00\\x00\\x1f\\x06\" + // 0x1F000342: 0x00001F06\n\t\"\\x1f\\x01\\x03B\\x00\\x00\\x1f\\a\" + // 0x1F010342: 0x00001F07\n\t\"\\x03\\x91\\x03\\x13\\x00\\x00\\x1f\\b\" + // 0x03910313: 0x00001F08\n\t\"\\x03\\x91\\x03\\x14\\x00\\x00\\x1f\\t\" + // 0x03910314: 0x00001F09\n\t\"\\x1f\\b\\x03\\x00\\x00\\x00\\x1f\\n\" + // 0x1F080300: 0x00001F0A\n\t\"\\x1f\\t\\x03\\x00\\x00\\x00\\x1f\\v\" + // 0x1F090300: 0x00001F0B\n\t\"\\x1f\\b\\x03\\x01\\x00\\x00\\x1f\\f\" + // 0x1F080301: 0x00001F0C\n\t\"\\x1f\\t\\x03\\x01\\x00\\x00\\x1f\\r\" + // 0x1F090301: 0x00001F0D\n\t\"\\x1f\\b\\x03B\\x00\\x00\\x1f\\x0e\" + // 0x1F080342: 0x00001F0E\n\t\"\\x1f\\t\\x03B\\x00\\x00\\x1f\\x0f\" + // 0x1F090342: 0x00001F0F\n\t\"\\x03\\xb5\\x03\\x13\\x00\\x00\\x1f\\x10\" + // 0x03B50313: 0x00001F10\n\t\"\\x03\\xb5\\x03\\x14\\x00\\x00\\x1f\\x11\" + // 0x03B50314: 0x00001F11\n\t\"\\x1f\\x10\\x03\\x00\\x00\\x00\\x1f\\x12\" + // 0x1F100300: 0x00001F12\n\t\"\\x1f\\x11\\x03\\x00\\x00\\x00\\x1f\\x13\" + // 0x1F110300: 0x00001F13\n\t\"\\x1f\\x10\\x03\\x01\\x00\\x00\\x1f\\x14\" + // 0x1F100301: 0x00001F14\n\t\"\\x1f\\x11\\x03\\x01\\x00\\x00\\x1f\\x15\" + // 0x1F110301: 0x00001F15\n\t\"\\x03\\x95\\x03\\x13\\x00\\x00\\x1f\\x18\" + // 0x03950313: 0x00001F18\n\t\"\\x03\\x95\\x03\\x14\\x00\\x00\\x1f\\x19\" + // 0x03950314: 0x00001F19\n\t\"\\x1f\\x18\\x03\\x00\\x00\\x00\\x1f\\x1a\" + // 0x1F180300: 0x00001F1A\n\t\"\\x1f\\x19\\x03\\x00\\x00\\x00\\x1f\\x1b\" + // 0x1F190300: 0x00001F1B\n\t\"\\x1f\\x18\\x03\\x01\\x00\\x00\\x1f\\x1c\" + // 0x1F180301: 0x00001F1C\n\t\"\\x1f\\x19\\x03\\x01\\x00\\x00\\x1f\\x1d\" + // 0x1F190301: 0x00001F1D\n\t\"\\x03\\xb7\\x03\\x13\\x00\\x00\\x1f \" + // 0x03B70313: 0x00001F20\n\t\"\\x03\\xb7\\x03\\x14\\x00\\x00\\x1f!\" + // 0x03B70314: 0x00001F21\n\t\"\\x1f \\x03\\x00\\x00\\x00\\x1f\\\"\" + // 0x1F200300: 0x00001F22\n\t\"\\x1f!\\x03\\x00\\x00\\x00\\x1f#\" + // 0x1F210300: 0x00001F23\n\t\"\\x1f \\x03\\x01\\x00\\x00\\x1f$\" + // 0x1F200301: 0x00001F24\n\t\"\\x1f!\\x03\\x01\\x00\\x00\\x1f%\" + // 0x1F210301: 0x00001F25\n\t\"\\x1f \\x03B\\x00\\x00\\x1f&\" + // 0x1F200342: 0x00001F26\n\t\"\\x1f!\\x03B\\x00\\x00\\x1f'\" + // 0x1F210342: 0x00001F27\n\t\"\\x03\\x97\\x03\\x13\\x00\\x00\\x1f(\" + // 0x03970313: 0x00001F28\n\t\"\\x03\\x97\\x03\\x14\\x00\\x00\\x1f)\" + // 0x03970314: 0x00001F29\n\t\"\\x1f(\\x03\\x00\\x00\\x00\\x1f*\" + // 0x1F280300: 0x00001F2A\n\t\"\\x1f)\\x03\\x00\\x00\\x00\\x1f+\" + // 0x1F290300: 0x00001F2B\n\t\"\\x1f(\\x03\\x01\\x00\\x00\\x1f,\" + // 0x1F280301: 0x00001F2C\n\t\"\\x1f)\\x03\\x01\\x00\\x00\\x1f-\" + // 0x1F290301: 0x00001F2D\n\t\"\\x1f(\\x03B\\x00\\x00\\x1f.\" + // 0x1F280342: 0x00001F2E\n\t\"\\x1f)\\x03B\\x00\\x00\\x1f/\" + // 0x1F290342: 0x00001F2F\n\t\"\\x03\\xb9\\x03\\x13\\x00\\x00\\x1f0\" + // 0x03B90313: 0x00001F30\n\t\"\\x03\\xb9\\x03\\x14\\x00\\x00\\x1f1\" + // 0x03B90314: 0x00001F31\n\t\"\\x1f0\\x03\\x00\\x00\\x00\\x1f2\" + // 0x1F300300: 0x00001F32\n\t\"\\x1f1\\x03\\x00\\x00\\x00\\x1f3\" + // 0x1F310300: 0x00001F33\n\t\"\\x1f0\\x03\\x01\\x00\\x00\\x1f4\" + // 0x1F300301: 0x00001F34\n\t\"\\x1f1\\x03\\x01\\x00\\x00\\x1f5\" + // 0x1F310301: 0x00001F35\n\t\"\\x1f0\\x03B\\x00\\x00\\x1f6\" + // 0x1F300342: 0x00001F36\n\t\"\\x1f1\\x03B\\x00\\x00\\x1f7\" + // 0x1F310342: 0x00001F37\n\t\"\\x03\\x99\\x03\\x13\\x00\\x00\\x1f8\" + // 0x03990313: 0x00001F38\n\t\"\\x03\\x99\\x03\\x14\\x00\\x00\\x1f9\" + // 0x03990314: 0x00001F39\n\t\"\\x1f8\\x03\\x00\\x00\\x00\\x1f:\" + // 0x1F380300: 0x00001F3A\n\t\"\\x1f9\\x03\\x00\\x00\\x00\\x1f;\" + // 0x1F390300: 0x00001F3B\n\t\"\\x1f8\\x03\\x01\\x00\\x00\\x1f<\" + // 0x1F380301: 0x00001F3C\n\t\"\\x1f9\\x03\\x01\\x00\\x00\\x1f=\" + // 0x1F390301: 0x00001F3D\n\t\"\\x1f8\\x03B\\x00\\x00\\x1f>\" + // 0x1F380342: 0x00001F3E\n\t\"\\x1f9\\x03B\\x00\\x00\\x1f?\" + // 0x1F390342: 0x00001F3F\n\t\"\\x03\\xbf\\x03\\x13\\x00\\x00\\x1f@\" + // 0x03BF0313: 0x00001F40\n\t\"\\x03\\xbf\\x03\\x14\\x00\\x00\\x1fA\" + // 0x03BF0314: 0x00001F41\n\t\"\\x1f@\\x03\\x00\\x00\\x00\\x1fB\" + // 0x1F400300: 0x00001F42\n\t\"\\x1fA\\x03\\x00\\x00\\x00\\x1fC\" + // 0x1F410300: 0x00001F43\n\t\"\\x1f@\\x03\\x01\\x00\\x00\\x1fD\" + // 0x1F400301: 0x00001F44\n\t\"\\x1fA\\x03\\x01\\x00\\x00\\x1fE\" + // 0x1F410301: 0x00001F45\n\t\"\\x03\\x9f\\x03\\x13\\x00\\x00\\x1fH\" + // 0x039F0313: 0x00001F48\n\t\"\\x03\\x9f\\x03\\x14\\x00\\x00\\x1fI\" + // 0x039F0314: 0x00001F49\n\t\"\\x1fH\\x03\\x00\\x00\\x00\\x1fJ\" + // 0x1F480300: 0x00001F4A\n\t\"\\x1fI\\x03\\x00\\x00\\x00\\x1fK\" + // 0x1F490300: 0x00001F4B\n\t\"\\x1fH\\x03\\x01\\x00\\x00\\x1fL\" + // 0x1F480301: 0x00001F4C\n\t\"\\x1fI\\x03\\x01\\x00\\x00\\x1fM\" + // 0x1F490301: 0x00001F4D\n\t\"\\x03\\xc5\\x03\\x13\\x00\\x00\\x1fP\" + // 0x03C50313: 0x00001F50\n\t\"\\x03\\xc5\\x03\\x14\\x00\\x00\\x1fQ\" + // 0x03C50314: 0x00001F51\n\t\"\\x1fP\\x03\\x00\\x00\\x00\\x1fR\" + // 0x1F500300: 0x00001F52\n\t\"\\x1fQ\\x03\\x00\\x00\\x00\\x1fS\" + // 0x1F510300: 0x00001F53\n\t\"\\x1fP\\x03\\x01\\x00\\x00\\x1fT\" + // 0x1F500301: 0x00001F54\n\t\"\\x1fQ\\x03\\x01\\x00\\x00\\x1fU\" + // 0x1F510301: 0x00001F55\n\t\"\\x1fP\\x03B\\x00\\x00\\x1fV\" + // 0x1F500342: 0x00001F56\n\t\"\\x1fQ\\x03B\\x00\\x00\\x1fW\" + // 0x1F510342: 0x00001F57\n\t\"\\x03\\xa5\\x03\\x14\\x00\\x00\\x1fY\" + // 0x03A50314: 0x00001F59\n\t\"\\x1fY\\x03\\x00\\x00\\x00\\x1f[\" + // 0x1F590300: 0x00001F5B\n\t\"\\x1fY\\x03\\x01\\x00\\x00\\x1f]\" + // 0x1F590301: 0x00001F5D\n\t\"\\x1fY\\x03B\\x00\\x00\\x1f_\" + // 0x1F590342: 0x00001F5F\n\t\"\\x03\\xc9\\x03\\x13\\x00\\x00\\x1f`\" + // 0x03C90313: 0x00001F60\n\t\"\\x03\\xc9\\x03\\x14\\x00\\x00\\x1fa\" + // 0x03C90314: 0x00001F61\n\t\"\\x1f`\\x03\\x00\\x00\\x00\\x1fb\" + // 0x1F600300: 0x00001F62\n\t\"\\x1fa\\x03\\x00\\x00\\x00\\x1fc\" + // 0x1F610300: 0x00001F63\n\t\"\\x1f`\\x03\\x01\\x00\\x00\\x1fd\" + // 0x1F600301: 0x00001F64\n\t\"\\x1fa\\x03\\x01\\x00\\x00\\x1fe\" + // 0x1F610301: 0x00001F65\n\t\"\\x1f`\\x03B\\x00\\x00\\x1ff\" + // 0x1F600342: 0x00001F66\n\t\"\\x1fa\\x03B\\x00\\x00\\x1fg\" + // 0x1F610342: 0x00001F67\n\t\"\\x03\\xa9\\x03\\x13\\x00\\x00\\x1fh\" + // 0x03A90313: 0x00001F68\n\t\"\\x03\\xa9\\x03\\x14\\x00\\x00\\x1fi\" + // 0x03A90314: 0x00001F69\n\t\"\\x1fh\\x03\\x00\\x00\\x00\\x1fj\" + // 0x1F680300: 0x00001F6A\n\t\"\\x1fi\\x03\\x00\\x00\\x00\\x1fk\" + // 0x1F690300: 0x00001F6B\n\t\"\\x1fh\\x03\\x01\\x00\\x00\\x1fl\" + // 0x1F680301: 0x00001F6C\n\t\"\\x1fi\\x03\\x01\\x00\\x00\\x1fm\" + // 0x1F690301: 0x00001F6D\n\t\"\\x1fh\\x03B\\x00\\x00\\x1fn\" + // 0x1F680342: 0x00001F6E\n\t\"\\x1fi\\x03B\\x00\\x00\\x1fo\" + // 0x1F690342: 0x00001F6F\n\t\"\\x03\\xb1\\x03\\x00\\x00\\x00\\x1fp\" + // 0x03B10300: 0x00001F70\n\t\"\\x03\\xb5\\x03\\x00\\x00\\x00\\x1fr\" + // 0x03B50300: 0x00001F72\n\t\"\\x03\\xb7\\x03\\x00\\x00\\x00\\x1ft\" + // 0x03B70300: 0x00001F74\n\t\"\\x03\\xb9\\x03\\x00\\x00\\x00\\x1fv\" + // 0x03B90300: 0x00001F76\n\t\"\\x03\\xbf\\x03\\x00\\x00\\x00\\x1fx\" + // 0x03BF0300: 0x00001F78\n\t\"\\x03\\xc5\\x03\\x00\\x00\\x00\\x1fz\" + // 0x03C50300: 0x00001F7A\n\t\"\\x03\\xc9\\x03\\x00\\x00\\x00\\x1f|\" + // 0x03C90300: 0x00001F7C\n\t\"\\x1f\\x00\\x03E\\x00\\x00\\x1f\\x80\" + // 0x1F000345: 0x00001F80\n\t\"\\x1f\\x01\\x03E\\x00\\x00\\x1f\\x81\" + // 0x1F010345: 0x00001F81\n\t\"\\x1f\\x02\\x03E\\x00\\x00\\x1f\\x82\" + // 0x1F020345: 0x00001F82\n\t\"\\x1f\\x03\\x03E\\x00\\x00\\x1f\\x83\" + // 0x1F030345: 0x00001F83\n\t\"\\x1f\\x04\\x03E\\x00\\x00\\x1f\\x84\" + // 0x1F040345: 0x00001F84\n\t\"\\x1f\\x05\\x03E\\x00\\x00\\x1f\\x85\" + // 0x1F050345: 0x00001F85\n\t\"\\x1f\\x06\\x03E\\x00\\x00\\x1f\\x86\" + // 0x1F060345: 0x00001F86\n\t\"\\x1f\\a\\x03E\\x00\\x00\\x1f\\x87\" + // 0x1F070345: 0x00001F87\n\t\"\\x1f\\b\\x03E\\x00\\x00\\x1f\\x88\" + // 0x1F080345: 0x00001F88\n\t\"\\x1f\\t\\x03E\\x00\\x00\\x1f\\x89\" + // 0x1F090345: 0x00001F89\n\t\"\\x1f\\n\\x03E\\x00\\x00\\x1f\\x8a\" + // 0x1F0A0345: 0x00001F8A\n\t\"\\x1f\\v\\x03E\\x00\\x00\\x1f\\x8b\" + // 0x1F0B0345: 0x00001F8B\n\t\"\\x1f\\f\\x03E\\x00\\x00\\x1f\\x8c\" + // 0x1F0C0345: 0x00001F8C\n\t\"\\x1f\\r\\x03E\\x00\\x00\\x1f\\x8d\" + // 0x1F0D0345: 0x00001F8D\n\t\"\\x1f\\x0e\\x03E\\x00\\x00\\x1f\\x8e\" + // 0x1F0E0345: 0x00001F8E\n\t\"\\x1f\\x0f\\x03E\\x00\\x00\\x1f\\x8f\" + // 0x1F0F0345: 0x00001F8F\n\t\"\\x1f \\x03E\\x00\\x00\\x1f\\x90\" + // 0x1F200345: 0x00001F90\n\t\"\\x1f!\\x03E\\x00\\x00\\x1f\\x91\" + // 0x1F210345: 0x00001F91\n\t\"\\x1f\\\"\\x03E\\x00\\x00\\x1f\\x92\" + // 0x1F220345: 0x00001F92\n\t\"\\x1f#\\x03E\\x00\\x00\\x1f\\x93\" + // 0x1F230345: 0x00001F93\n\t\"\\x1f$\\x03E\\x00\\x00\\x1f\\x94\" + // 0x1F240345: 0x00001F94\n\t\"\\x1f%\\x03E\\x00\\x00\\x1f\\x95\" + // 0x1F250345: 0x00001F95\n\t\"\\x1f&\\x03E\\x00\\x00\\x1f\\x96\" + // 0x1F260345: 0x00001F96\n\t\"\\x1f'\\x03E\\x00\\x00\\x1f\\x97\" + // 0x1F270345: 0x00001F97\n\t\"\\x1f(\\x03E\\x00\\x00\\x1f\\x98\" + // 0x1F280345: 0x00001F98\n\t\"\\x1f)\\x03E\\x00\\x00\\x1f\\x99\" + // 0x1F290345: 0x00001F99\n\t\"\\x1f*\\x03E\\x00\\x00\\x1f\\x9a\" + // 0x1F2A0345: 0x00001F9A\n\t\"\\x1f+\\x03E\\x00\\x00\\x1f\\x9b\" + // 0x1F2B0345: 0x00001F9B\n\t\"\\x1f,\\x03E\\x00\\x00\\x1f\\x9c\" + // 0x1F2C0345: 0x00001F9C\n\t\"\\x1f-\\x03E\\x00\\x00\\x1f\\x9d\" + // 0x1F2D0345: 0x00001F9D\n\t\"\\x1f.\\x03E\\x00\\x00\\x1f\\x9e\" + // 0x1F2E0345: 0x00001F9E\n\t\"\\x1f/\\x03E\\x00\\x00\\x1f\\x9f\" + // 0x1F2F0345: 0x00001F9F\n\t\"\\x1f`\\x03E\\x00\\x00\\x1f\\xa0\" + // 0x1F600345: 0x00001FA0\n\t\"\\x1fa\\x03E\\x00\\x00\\x1f\\xa1\" + // 0x1F610345: 0x00001FA1\n\t\"\\x1fb\\x03E\\x00\\x00\\x1f\\xa2\" + // 0x1F620345: 0x00001FA2\n\t\"\\x1fc\\x03E\\x00\\x00\\x1f\\xa3\" + // 0x1F630345: 0x00001FA3\n\t\"\\x1fd\\x03E\\x00\\x00\\x1f\\xa4\" + // 0x1F640345: 0x00001FA4\n\t\"\\x1fe\\x03E\\x00\\x00\\x1f\\xa5\" + // 0x1F650345: 0x00001FA5\n\t\"\\x1ff\\x03E\\x00\\x00\\x1f\\xa6\" + // 0x1F660345: 0x00001FA6\n\t\"\\x1fg\\x03E\\x00\\x00\\x1f\\xa7\" + // 0x1F670345: 0x00001FA7\n\t\"\\x1fh\\x03E\\x00\\x00\\x1f\\xa8\" + // 0x1F680345: 0x00001FA8\n\t\"\\x1fi\\x03E\\x00\\x00\\x1f\\xa9\" + // 0x1F690345: 0x00001FA9\n\t\"\\x1fj\\x03E\\x00\\x00\\x1f\\xaa\" + // 0x1F6A0345: 0x00001FAA\n\t\"\\x1fk\\x03E\\x00\\x00\\x1f\\xab\" + // 0x1F6B0345: 0x00001FAB\n\t\"\\x1fl\\x03E\\x00\\x00\\x1f\\xac\" + // 0x1F6C0345: 0x00001FAC\n\t\"\\x1fm\\x03E\\x00\\x00\\x1f\\xad\" + // 0x1F6D0345: 0x00001FAD\n\t\"\\x1fn\\x03E\\x00\\x00\\x1f\\xae\" + // 0x1F6E0345: 0x00001FAE\n\t\"\\x1fo\\x03E\\x00\\x00\\x1f\\xaf\" + // 0x1F6F0345: 0x00001FAF\n\t\"\\x03\\xb1\\x03\\x06\\x00\\x00\\x1f\\xb0\" + // 0x03B10306: 0x00001FB0\n\t\"\\x03\\xb1\\x03\\x04\\x00\\x00\\x1f\\xb1\" + // 0x03B10304: 0x00001FB1\n\t\"\\x1fp\\x03E\\x00\\x00\\x1f\\xb2\" + // 0x1F700345: 0x00001FB2\n\t\"\\x03\\xb1\\x03E\\x00\\x00\\x1f\\xb3\" + // 0x03B10345: 0x00001FB3\n\t\"\\x03\\xac\\x03E\\x00\\x00\\x1f\\xb4\" + // 0x03AC0345: 0x00001FB4\n\t\"\\x03\\xb1\\x03B\\x00\\x00\\x1f\\xb6\" + // 0x03B10342: 0x00001FB6\n\t\"\\x1f\\xb6\\x03E\\x00\\x00\\x1f\\xb7\" + // 0x1FB60345: 0x00001FB7\n\t\"\\x03\\x91\\x03\\x06\\x00\\x00\\x1f\\xb8\" + // 0x03910306: 0x00001FB8\n\t\"\\x03\\x91\\x03\\x04\\x00\\x00\\x1f\\xb9\" + // 0x03910304: 0x00001FB9\n\t\"\\x03\\x91\\x03\\x00\\x00\\x00\\x1f\\xba\" + // 0x03910300: 0x00001FBA\n\t\"\\x03\\x91\\x03E\\x00\\x00\\x1f\\xbc\" + // 0x03910345: 0x00001FBC\n\t\"\\x00\\xa8\\x03B\\x00\\x00\\x1f\\xc1\" + // 0x00A80342: 0x00001FC1\n\t\"\\x1ft\\x03E\\x00\\x00\\x1f\\xc2\" + // 0x1F740345: 0x00001FC2\n\t\"\\x03\\xb7\\x03E\\x00\\x00\\x1f\\xc3\" + // 0x03B70345: 0x00001FC3\n\t\"\\x03\\xae\\x03E\\x00\\x00\\x1f\\xc4\" + // 0x03AE0345: 0x00001FC4\n\t\"\\x03\\xb7\\x03B\\x00\\x00\\x1f\\xc6\" + // 0x03B70342: 0x00001FC6\n\t\"\\x1f\\xc6\\x03E\\x00\\x00\\x1f\\xc7\" + // 0x1FC60345: 0x00001FC7\n\t\"\\x03\\x95\\x03\\x00\\x00\\x00\\x1f\\xc8\" + // 0x03950300: 0x00001FC8\n\t\"\\x03\\x97\\x03\\x00\\x00\\x00\\x1f\\xca\" + // 0x03970300: 0x00001FCA\n\t\"\\x03\\x97\\x03E\\x00\\x00\\x1f\\xcc\" + // 0x03970345: 0x00001FCC\n\t\"\\x1f\\xbf\\x03\\x00\\x00\\x00\\x1f\\xcd\" + // 0x1FBF0300: 0x00001FCD\n\t\"\\x1f\\xbf\\x03\\x01\\x00\\x00\\x1f\\xce\" + // 0x1FBF0301: 0x00001FCE\n\t\"\\x1f\\xbf\\x03B\\x00\\x00\\x1f\\xcf\" + // 0x1FBF0342: 0x00001FCF\n\t\"\\x03\\xb9\\x03\\x06\\x00\\x00\\x1f\\xd0\" + // 0x03B90306: 0x00001FD0\n\t\"\\x03\\xb9\\x03\\x04\\x00\\x00\\x1f\\xd1\" + // 0x03B90304: 0x00001FD1\n\t\"\\x03\\xca\\x03\\x00\\x00\\x00\\x1f\\xd2\" + // 0x03CA0300: 0x00001FD2\n\t\"\\x03\\xb9\\x03B\\x00\\x00\\x1f\\xd6\" + // 0x03B90342: 0x00001FD6\n\t\"\\x03\\xca\\x03B\\x00\\x00\\x1f\\xd7\" + // 0x03CA0342: 0x00001FD7\n\t\"\\x03\\x99\\x03\\x06\\x00\\x00\\x1f\\xd8\" + // 0x03990306: 0x00001FD8\n\t\"\\x03\\x99\\x03\\x04\\x00\\x00\\x1f\\xd9\" + // 0x03990304: 0x00001FD9\n\t\"\\x03\\x99\\x03\\x00\\x00\\x00\\x1f\\xda\" + // 0x03990300: 0x00001FDA\n\t\"\\x1f\\xfe\\x03\\x00\\x00\\x00\\x1f\\xdd\" + // 0x1FFE0300: 0x00001FDD\n\t\"\\x1f\\xfe\\x03\\x01\\x00\\x00\\x1f\\xde\" + // 0x1FFE0301: 0x00001FDE\n\t\"\\x1f\\xfe\\x03B\\x00\\x00\\x1f\\xdf\" + // 0x1FFE0342: 0x00001FDF\n\t\"\\x03\\xc5\\x03\\x06\\x00\\x00\\x1f\\xe0\" + // 0x03C50306: 0x00001FE0\n\t\"\\x03\\xc5\\x03\\x04\\x00\\x00\\x1f\\xe1\" + // 0x03C50304: 0x00001FE1\n\t\"\\x03\\xcb\\x03\\x00\\x00\\x00\\x1f\\xe2\" + // 0x03CB0300: 0x00001FE2\n\t\"\\x03\\xc1\\x03\\x13\\x00\\x00\\x1f\\xe4\" + // 0x03C10313: 0x00001FE4\n\t\"\\x03\\xc1\\x03\\x14\\x00\\x00\\x1f\\xe5\" + // 0x03C10314: 0x00001FE5\n\t\"\\x03\\xc5\\x03B\\x00\\x00\\x1f\\xe6\" + // 0x03C50342: 0x00001FE6\n\t\"\\x03\\xcb\\x03B\\x00\\x00\\x1f\\xe7\" + // 0x03CB0342: 0x00001FE7\n\t\"\\x03\\xa5\\x03\\x06\\x00\\x00\\x1f\\xe8\" + // 0x03A50306: 0x00001FE8\n\t\"\\x03\\xa5\\x03\\x04\\x00\\x00\\x1f\\xe9\" + // 0x03A50304: 0x00001FE9\n\t\"\\x03\\xa5\\x03\\x00\\x00\\x00\\x1f\\xea\" + // 0x03A50300: 0x00001FEA\n\t\"\\x03\\xa1\\x03\\x14\\x00\\x00\\x1f\\xec\" + // 0x03A10314: 0x00001FEC\n\t\"\\x00\\xa8\\x03\\x00\\x00\\x00\\x1f\\xed\" + // 0x00A80300: 0x00001FED\n\t\"\\x1f|\\x03E\\x00\\x00\\x1f\\xf2\" + // 0x1F7C0345: 0x00001FF2\n\t\"\\x03\\xc9\\x03E\\x00\\x00\\x1f\\xf3\" + // 0x03C90345: 0x00001FF3\n\t\"\\x03\\xce\\x03E\\x00\\x00\\x1f\\xf4\" + // 0x03CE0345: 0x00001FF4\n\t\"\\x03\\xc9\\x03B\\x00\\x00\\x1f\\xf6\" + // 0x03C90342: 0x00001FF6\n\t\"\\x1f\\xf6\\x03E\\x00\\x00\\x1f\\xf7\" + // 0x1FF60345: 0x00001FF7\n\t\"\\x03\\x9f\\x03\\x00\\x00\\x00\\x1f\\xf8\" + // 0x039F0300: 0x00001FF8\n\t\"\\x03\\xa9\\x03\\x00\\x00\\x00\\x1f\\xfa\" + // 0x03A90300: 0x00001FFA\n\t\"\\x03\\xa9\\x03E\\x00\\x00\\x1f\\xfc\" + // 0x03A90345: 0x00001FFC\n\t\"!\\x90\\x038\\x00\\x00!\\x9a\" + // 0x21900338: 0x0000219A\n\t\"!\\x92\\x038\\x00\\x00!\\x9b\" + // 0x21920338: 0x0000219B\n\t\"!\\x94\\x038\\x00\\x00!\\xae\" + // 0x21940338: 0x000021AE\n\t\"!\\xd0\\x038\\x00\\x00!\\xcd\" + // 0x21D00338: 0x000021CD\n\t\"!\\xd4\\x038\\x00\\x00!\\xce\" + // 0x21D40338: 0x000021CE\n\t\"!\\xd2\\x038\\x00\\x00!\\xcf\" + // 0x21D20338: 0x000021CF\n\t\"\\\"\\x03\\x038\\x00\\x00\\\"\\x04\" + // 0x22030338: 0x00002204\n\t\"\\\"\\b\\x038\\x00\\x00\\\"\\t\" + // 0x22080338: 0x00002209\n\t\"\\\"\\v\\x038\\x00\\x00\\\"\\f\" + // 0x220B0338: 0x0000220C\n\t\"\\\"#\\x038\\x00\\x00\\\"$\" + // 0x22230338: 0x00002224\n\t\"\\\"%\\x038\\x00\\x00\\\"&\" + // 0x22250338: 0x00002226\n\t\"\\\"<\\x038\\x00\\x00\\\"A\" + // 0x223C0338: 0x00002241\n\t\"\\\"C\\x038\\x00\\x00\\\"D\" + // 0x22430338: 0x00002244\n\t\"\\\"E\\x038\\x00\\x00\\\"G\" + // 0x22450338: 0x00002247\n\t\"\\\"H\\x038\\x00\\x00\\\"I\" + // 0x22480338: 0x00002249\n\t\"\\x00=\\x038\\x00\\x00\\\"`\" + // 0x003D0338: 0x00002260\n\t\"\\\"a\\x038\\x00\\x00\\\"b\" + // 0x22610338: 0x00002262\n\t\"\\\"M\\x038\\x00\\x00\\\"m\" + // 0x224D0338: 0x0000226D\n\t\"\\x00<\\x038\\x00\\x00\\\"n\" + // 0x003C0338: 0x0000226E\n\t\"\\x00>\\x038\\x00\\x00\\\"o\" + // 0x003E0338: 0x0000226F\n\t\"\\\"d\\x038\\x00\\x00\\\"p\" + // 0x22640338: 0x00002270\n\t\"\\\"e\\x038\\x00\\x00\\\"q\" + // 0x22650338: 0x00002271\n\t\"\\\"r\\x038\\x00\\x00\\\"t\" + // 0x22720338: 0x00002274\n\t\"\\\"s\\x038\\x00\\x00\\\"u\" + // 0x22730338: 0x00002275\n\t\"\\\"v\\x038\\x00\\x00\\\"x\" + // 0x22760338: 0x00002278\n\t\"\\\"w\\x038\\x00\\x00\\\"y\" + // 0x22770338: 0x00002279\n\t\"\\\"z\\x038\\x00\\x00\\\"\\x80\" + // 0x227A0338: 0x00002280\n\t\"\\\"{\\x038\\x00\\x00\\\"\\x81\" + // 0x227B0338: 0x00002281\n\t\"\\\"\\x82\\x038\\x00\\x00\\\"\\x84\" + // 0x22820338: 0x00002284\n\t\"\\\"\\x83\\x038\\x00\\x00\\\"\\x85\" + // 0x22830338: 0x00002285\n\t\"\\\"\\x86\\x038\\x00\\x00\\\"\\x88\" + // 0x22860338: 0x00002288\n\t\"\\\"\\x87\\x038\\x00\\x00\\\"\\x89\" + // 0x22870338: 0x00002289\n\t\"\\\"\\xa2\\x038\\x00\\x00\\\"\\xac\" + // 0x22A20338: 0x000022AC\n\t\"\\\"\\xa8\\x038\\x00\\x00\\\"\\xad\" + // 0x22A80338: 0x000022AD\n\t\"\\\"\\xa9\\x038\\x00\\x00\\\"\\xae\" + // 0x22A90338: 0x000022AE\n\t\"\\\"\\xab\\x038\\x00\\x00\\\"\\xaf\" + // 0x22AB0338: 0x000022AF\n\t\"\\\"|\\x038\\x00\\x00\\\"\\xe0\" + // 0x227C0338: 0x000022E0\n\t\"\\\"}\\x038\\x00\\x00\\\"\\xe1\" + // 0x227D0338: 0x000022E1\n\t\"\\\"\\x91\\x038\\x00\\x00\\\"\\xe2\" + // 0x22910338: 0x000022E2\n\t\"\\\"\\x92\\x038\\x00\\x00\\\"\\xe3\" + // 0x22920338: 0x000022E3\n\t\"\\\"\\xb2\\x038\\x00\\x00\\\"\\xea\" + // 0x22B20338: 0x000022EA\n\t\"\\\"\\xb3\\x038\\x00\\x00\\\"\\xeb\" + // 0x22B30338: 0x000022EB\n\t\"\\\"\\xb4\\x038\\x00\\x00\\\"\\xec\" + // 0x22B40338: 0x000022EC\n\t\"\\\"\\xb5\\x038\\x00\\x00\\\"\\xed\" + // 0x22B50338: 0x000022ED\n\t\"0K0\\x99\\x00\\x000L\" + // 0x304B3099: 0x0000304C\n\t\"0M0\\x99\\x00\\x000N\" + // 0x304D3099: 0x0000304E\n\t\"0O0\\x99\\x00\\x000P\" + // 0x304F3099: 0x00003050\n\t\"0Q0\\x99\\x00\\x000R\" + // 0x30513099: 0x00003052\n\t\"0S0\\x99\\x00\\x000T\" + // 0x30533099: 0x00003054\n\t\"0U0\\x99\\x00\\x000V\" + // 0x30553099: 0x00003056\n\t\"0W0\\x99\\x00\\x000X\" + // 0x30573099: 0x00003058\n\t\"0Y0\\x99\\x00\\x000Z\" + // 0x30593099: 0x0000305A\n\t\"0[0\\x99\\x00\\x000\\\\\" + // 0x305B3099: 0x0000305C\n\t\"0]0\\x99\\x00\\x000^\" + // 0x305D3099: 0x0000305E\n\t\"0_0\\x99\\x00\\x000`\" + // 0x305F3099: 0x00003060\n\t\"0a0\\x99\\x00\\x000b\" + // 0x30613099: 0x00003062\n\t\"0d0\\x99\\x00\\x000e\" + // 0x30643099: 0x00003065\n\t\"0f0\\x99\\x00\\x000g\" + // 0x30663099: 0x00003067\n\t\"0h0\\x99\\x00\\x000i\" + // 0x30683099: 0x00003069\n\t\"0o0\\x99\\x00\\x000p\" + // 0x306F3099: 0x00003070\n\t\"0o0\\x9a\\x00\\x000q\" + // 0x306F309A: 0x00003071\n\t\"0r0\\x99\\x00\\x000s\" + // 0x30723099: 0x00003073\n\t\"0r0\\x9a\\x00\\x000t\" + // 0x3072309A: 0x00003074\n\t\"0u0\\x99\\x00\\x000v\" + // 0x30753099: 0x00003076\n\t\"0u0\\x9a\\x00\\x000w\" + // 0x3075309A: 0x00003077\n\t\"0x0\\x99\\x00\\x000y\" + // 0x30783099: 0x00003079\n\t\"0x0\\x9a\\x00\\x000z\" + // 0x3078309A: 0x0000307A\n\t\"0{0\\x99\\x00\\x000|\" + // 0x307B3099: 0x0000307C\n\t\"0{0\\x9a\\x00\\x000}\" + // 0x307B309A: 0x0000307D\n\t\"0F0\\x99\\x00\\x000\\x94\" + // 0x30463099: 0x00003094\n\t\"0\\x9d0\\x99\\x00\\x000\\x9e\" + // 0x309D3099: 0x0000309E\n\t\"0\\xab0\\x99\\x00\\x000\\xac\" + // 0x30AB3099: 0x000030AC\n\t\"0\\xad0\\x99\\x00\\x000\\xae\" + // 0x30AD3099: 0x000030AE\n\t\"0\\xaf0\\x99\\x00\\x000\\xb0\" + // 0x30AF3099: 0x000030B0\n\t\"0\\xb10\\x99\\x00\\x000\\xb2\" + // 0x30B13099: 0x000030B2\n\t\"0\\xb30\\x99\\x00\\x000\\xb4\" + // 0x30B33099: 0x000030B4\n\t\"0\\xb50\\x99\\x00\\x000\\xb6\" + // 0x30B53099: 0x000030B6\n\t\"0\\xb70\\x99\\x00\\x000\\xb8\" + // 0x30B73099: 0x000030B8\n\t\"0\\xb90\\x99\\x00\\x000\\xba\" + // 0x30B93099: 0x000030BA\n\t\"0\\xbb0\\x99\\x00\\x000\\xbc\" + // 0x30BB3099: 0x000030BC\n\t\"0\\xbd0\\x99\\x00\\x000\\xbe\" + // 0x30BD3099: 0x000030BE\n\t\"0\\xbf0\\x99\\x00\\x000\\xc0\" + // 0x30BF3099: 0x000030C0\n\t\"0\\xc10\\x99\\x00\\x000\\xc2\" + // 0x30C13099: 0x000030C2\n\t\"0\\xc40\\x99\\x00\\x000\\xc5\" + // 0x30C43099: 0x000030C5\n\t\"0\\xc60\\x99\\x00\\x000\\xc7\" + // 0x30C63099: 0x000030C7\n\t\"0\\xc80\\x99\\x00\\x000\\xc9\" + // 0x30C83099: 0x000030C9\n\t\"0\\xcf0\\x99\\x00\\x000\\xd0\" + // 0x30CF3099: 0x000030D0\n\t\"0\\xcf0\\x9a\\x00\\x000\\xd1\" + // 0x30CF309A: 0x000030D1\n\t\"0\\xd20\\x99\\x00\\x000\\xd3\" + // 0x30D23099: 0x000030D3\n\t\"0\\xd20\\x9a\\x00\\x000\\xd4\" + // 0x30D2309A: 0x000030D4\n\t\"0\\xd50\\x99\\x00\\x000\\xd6\" + // 0x30D53099: 0x000030D6\n\t\"0\\xd50\\x9a\\x00\\x000\\xd7\" + // 0x30D5309A: 0x000030D7\n\t\"0\\xd80\\x99\\x00\\x000\\xd9\" + // 0x30D83099: 0x000030D9\n\t\"0\\xd80\\x9a\\x00\\x000\\xda\" + // 0x30D8309A: 0x000030DA\n\t\"0\\xdb0\\x99\\x00\\x000\\xdc\" + // 0x30DB3099: 0x000030DC\n\t\"0\\xdb0\\x9a\\x00\\x000\\xdd\" + // 0x30DB309A: 0x000030DD\n\t\"0\\xa60\\x99\\x00\\x000\\xf4\" + // 0x30A63099: 0x000030F4\n\t\"0\\xef0\\x99\\x00\\x000\\xf7\" + // 0x30EF3099: 0x000030F7\n\t\"0\\xf00\\x99\\x00\\x000\\xf8\" + // 0x30F03099: 0x000030F8\n\t\"0\\xf10\\x99\\x00\\x000\\xf9\" + // 0x30F13099: 0x000030F9\n\t\"0\\xf20\\x99\\x00\\x000\\xfa\" + // 0x30F23099: 0x000030FA\n\t\"0\\xfd0\\x99\\x00\\x000\\xfe\" + // 0x30FD3099: 0x000030FE\n\t\"\\x10\\x99\\x10\\xba\\x00\\x01\\x10\\x9a\" + // 0x109910BA: 0x0001109A\n\t\"\\x10\\x9b\\x10\\xba\\x00\\x01\\x10\\x9c\" + // 0x109B10BA: 0x0001109C\n\t\"\\x10\\xa5\\x10\\xba\\x00\\x01\\x10\\xab\" + // 0x10A510BA: 0x000110AB\n\t\"\\x111\\x11'\\x00\\x01\\x11.\" + // 0x11311127: 0x0001112E\n\t\"\\x112\\x11'\\x00\\x01\\x11/\" + // 0x11321127: 0x0001112F\n\t\"\\x13G\\x13>\\x00\\x01\\x13K\" + // 0x1347133E: 0x0001134B\n\t\"\\x13G\\x13W\\x00\\x01\\x13L\" + // 0x13471357: 0x0001134C\n\t\"\\x14\\xb9\\x14\\xba\\x00\\x01\\x14\\xbb\" + // 0x14B914BA: 0x000114BB\n\t\"\\x14\\xb9\\x14\\xb0\\x00\\x01\\x14\\xbc\" + // 0x14B914B0: 0x000114BC\n\t\"\\x14\\xb9\\x14\\xbd\\x00\\x01\\x14\\xbe\" + // 0x14B914BD: 0x000114BE\n\t\"\\x15\\xb8\\x15\\xaf\\x00\\x01\\x15\\xba\" + // 0x15B815AF: 0x000115BA\n\t\"\\x15\\xb9\\x15\\xaf\\x00\\x01\\x15\\xbb\" + // 0x15B915AF: 0x000115BB\n\t\"\"\n\t// Total size of tables: 53KB (54226 bytes)\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/tables11.0.0.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\n// +build go1.13,!go1.14\n\npackage norm\n\nimport \"sync\"\n\nconst (\n\t// Version is the Unicode edition from which the tables are derived.\n\tVersion = \"11.0.0\"\n\n\t// MaxTransformChunkSize indicates the maximum number of bytes that Transform\n\t// may need to write atomically for any Form. Making a destination buffer at\n\t// least this size ensures that Transform can always make progress and that\n\t// the user does not need to grow the buffer on an ErrShortDst.\n\tMaxTransformChunkSize = 35 + maxNonStarters*4\n)\n\nvar ccc = [55]uint8{\n\t0, 1, 7, 8, 9, 10, 11, 12,\n\t13, 14, 15, 16, 17, 18, 19, 20,\n\t21, 22, 23, 24, 25, 26, 27, 28,\n\t29, 30, 31, 32, 33, 34, 35, 36,\n\t84, 91, 103, 107, 118, 122, 129, 130,\n\t132, 202, 214, 216, 218, 220, 222, 224,\n\t226, 228, 230, 232, 233, 234, 240,\n}\n\nconst (\n\tfirstMulti            = 0x186D\n\tfirstCCC              = 0x2C9E\n\tendMulti              = 0x2F60\n\tfirstLeadingCCC       = 0x49AE\n\tfirstCCCZeroExcept    = 0x4A78\n\tfirstStarterWithNLead = 0x4A9F\n\tlastDecomp            = 0x4AA1\n\tmaxDecomp             = 0x8000\n)\n\n// decomps: 19105 bytes\nvar decomps = [...]byte{\n\t// Bytes 0 - 3f\n\t0x00, 0x41, 0x20, 0x41, 0x21, 0x41, 0x22, 0x41,\n\t0x23, 0x41, 0x24, 0x41, 0x25, 0x41, 0x26, 0x41,\n\t0x27, 0x41, 0x28, 0x41, 0x29, 0x41, 0x2A, 0x41,\n\t0x2B, 0x41, 0x2C, 0x41, 0x2D, 0x41, 0x2E, 0x41,\n\t0x2F, 0x41, 0x30, 0x41, 0x31, 0x41, 0x32, 0x41,\n\t0x33, 0x41, 0x34, 0x41, 0x35, 0x41, 0x36, 0x41,\n\t0x37, 0x41, 0x38, 0x41, 0x39, 0x41, 0x3A, 0x41,\n\t0x3B, 0x41, 0x3C, 0x41, 0x3D, 0x41, 0x3E, 0x41,\n\t// Bytes 40 - 7f\n\t0x3F, 0x41, 0x40, 0x41, 0x41, 0x41, 0x42, 0x41,\n\t0x43, 0x41, 0x44, 0x41, 0x45, 0x41, 0x46, 0x41,\n\t0x47, 0x41, 0x48, 0x41, 0x49, 0x41, 0x4A, 0x41,\n\t0x4B, 0x41, 0x4C, 0x41, 0x4D, 0x41, 0x4E, 0x41,\n\t0x4F, 0x41, 0x50, 0x41, 0x51, 0x41, 0x52, 0x41,\n\t0x53, 0x41, 0x54, 0x41, 0x55, 0x41, 0x56, 0x41,\n\t0x57, 0x41, 0x58, 0x41, 0x59, 0x41, 0x5A, 0x41,\n\t0x5B, 0x41, 0x5C, 0x41, 0x5D, 0x41, 0x5E, 0x41,\n\t// Bytes 80 - bf\n\t0x5F, 0x41, 0x60, 0x41, 0x61, 0x41, 0x62, 0x41,\n\t0x63, 0x41, 0x64, 0x41, 0x65, 0x41, 0x66, 0x41,\n\t0x67, 0x41, 0x68, 0x41, 0x69, 0x41, 0x6A, 0x41,\n\t0x6B, 0x41, 0x6C, 0x41, 0x6D, 0x41, 0x6E, 0x41,\n\t0x6F, 0x41, 0x70, 0x41, 0x71, 0x41, 0x72, 0x41,\n\t0x73, 0x41, 0x74, 0x41, 0x75, 0x41, 0x76, 0x41,\n\t0x77, 0x41, 0x78, 0x41, 0x79, 0x41, 0x7A, 0x41,\n\t0x7B, 0x41, 0x7C, 0x41, 0x7D, 0x41, 0x7E, 0x42,\n\t// Bytes c0 - ff\n\t0xC2, 0xA2, 0x42, 0xC2, 0xA3, 0x42, 0xC2, 0xA5,\n\t0x42, 0xC2, 0xA6, 0x42, 0xC2, 0xAC, 0x42, 0xC2,\n\t0xB7, 0x42, 0xC3, 0x86, 0x42, 0xC3, 0xB0, 0x42,\n\t0xC4, 0xA6, 0x42, 0xC4, 0xA7, 0x42, 0xC4, 0xB1,\n\t0x42, 0xC5, 0x8B, 0x42, 0xC5, 0x93, 0x42, 0xC6,\n\t0x8E, 0x42, 0xC6, 0x90, 0x42, 0xC6, 0xAB, 0x42,\n\t0xC8, 0xA2, 0x42, 0xC8, 0xB7, 0x42, 0xC9, 0x90,\n\t0x42, 0xC9, 0x91, 0x42, 0xC9, 0x92, 0x42, 0xC9,\n\t// Bytes 100 - 13f\n\t0x94, 0x42, 0xC9, 0x95, 0x42, 0xC9, 0x99, 0x42,\n\t0xC9, 0x9B, 0x42, 0xC9, 0x9C, 0x42, 0xC9, 0x9F,\n\t0x42, 0xC9, 0xA1, 0x42, 0xC9, 0xA3, 0x42, 0xC9,\n\t0xA5, 0x42, 0xC9, 0xA6, 0x42, 0xC9, 0xA8, 0x42,\n\t0xC9, 0xA9, 0x42, 0xC9, 0xAA, 0x42, 0xC9, 0xAB,\n\t0x42, 0xC9, 0xAD, 0x42, 0xC9, 0xAF, 0x42, 0xC9,\n\t0xB0, 0x42, 0xC9, 0xB1, 0x42, 0xC9, 0xB2, 0x42,\n\t0xC9, 0xB3, 0x42, 0xC9, 0xB4, 0x42, 0xC9, 0xB5,\n\t// Bytes 140 - 17f\n\t0x42, 0xC9, 0xB8, 0x42, 0xC9, 0xB9, 0x42, 0xC9,\n\t0xBB, 0x42, 0xCA, 0x81, 0x42, 0xCA, 0x82, 0x42,\n\t0xCA, 0x83, 0x42, 0xCA, 0x89, 0x42, 0xCA, 0x8A,\n\t0x42, 0xCA, 0x8B, 0x42, 0xCA, 0x8C, 0x42, 0xCA,\n\t0x90, 0x42, 0xCA, 0x91, 0x42, 0xCA, 0x92, 0x42,\n\t0xCA, 0x95, 0x42, 0xCA, 0x9D, 0x42, 0xCA, 0x9F,\n\t0x42, 0xCA, 0xB9, 0x42, 0xCE, 0x91, 0x42, 0xCE,\n\t0x92, 0x42, 0xCE, 0x93, 0x42, 0xCE, 0x94, 0x42,\n\t// Bytes 180 - 1bf\n\t0xCE, 0x95, 0x42, 0xCE, 0x96, 0x42, 0xCE, 0x97,\n\t0x42, 0xCE, 0x98, 0x42, 0xCE, 0x99, 0x42, 0xCE,\n\t0x9A, 0x42, 0xCE, 0x9B, 0x42, 0xCE, 0x9C, 0x42,\n\t0xCE, 0x9D, 0x42, 0xCE, 0x9E, 0x42, 0xCE, 0x9F,\n\t0x42, 0xCE, 0xA0, 0x42, 0xCE, 0xA1, 0x42, 0xCE,\n\t0xA3, 0x42, 0xCE, 0xA4, 0x42, 0xCE, 0xA5, 0x42,\n\t0xCE, 0xA6, 0x42, 0xCE, 0xA7, 0x42, 0xCE, 0xA8,\n\t0x42, 0xCE, 0xA9, 0x42, 0xCE, 0xB1, 0x42, 0xCE,\n\t// Bytes 1c0 - 1ff\n\t0xB2, 0x42, 0xCE, 0xB3, 0x42, 0xCE, 0xB4, 0x42,\n\t0xCE, 0xB5, 0x42, 0xCE, 0xB6, 0x42, 0xCE, 0xB7,\n\t0x42, 0xCE, 0xB8, 0x42, 0xCE, 0xB9, 0x42, 0xCE,\n\t0xBA, 0x42, 0xCE, 0xBB, 0x42, 0xCE, 0xBC, 0x42,\n\t0xCE, 0xBD, 0x42, 0xCE, 0xBE, 0x42, 0xCE, 0xBF,\n\t0x42, 0xCF, 0x80, 0x42, 0xCF, 0x81, 0x42, 0xCF,\n\t0x82, 0x42, 0xCF, 0x83, 0x42, 0xCF, 0x84, 0x42,\n\t0xCF, 0x85, 0x42, 0xCF, 0x86, 0x42, 0xCF, 0x87,\n\t// Bytes 200 - 23f\n\t0x42, 0xCF, 0x88, 0x42, 0xCF, 0x89, 0x42, 0xCF,\n\t0x9C, 0x42, 0xCF, 0x9D, 0x42, 0xD0, 0xBD, 0x42,\n\t0xD1, 0x8A, 0x42, 0xD1, 0x8C, 0x42, 0xD7, 0x90,\n\t0x42, 0xD7, 0x91, 0x42, 0xD7, 0x92, 0x42, 0xD7,\n\t0x93, 0x42, 0xD7, 0x94, 0x42, 0xD7, 0x9B, 0x42,\n\t0xD7, 0x9C, 0x42, 0xD7, 0x9D, 0x42, 0xD7, 0xA2,\n\t0x42, 0xD7, 0xA8, 0x42, 0xD7, 0xAA, 0x42, 0xD8,\n\t0xA1, 0x42, 0xD8, 0xA7, 0x42, 0xD8, 0xA8, 0x42,\n\t// Bytes 240 - 27f\n\t0xD8, 0xA9, 0x42, 0xD8, 0xAA, 0x42, 0xD8, 0xAB,\n\t0x42, 0xD8, 0xAC, 0x42, 0xD8, 0xAD, 0x42, 0xD8,\n\t0xAE, 0x42, 0xD8, 0xAF, 0x42, 0xD8, 0xB0, 0x42,\n\t0xD8, 0xB1, 0x42, 0xD8, 0xB2, 0x42, 0xD8, 0xB3,\n\t0x42, 0xD8, 0xB4, 0x42, 0xD8, 0xB5, 0x42, 0xD8,\n\t0xB6, 0x42, 0xD8, 0xB7, 0x42, 0xD8, 0xB8, 0x42,\n\t0xD8, 0xB9, 0x42, 0xD8, 0xBA, 0x42, 0xD9, 0x81,\n\t0x42, 0xD9, 0x82, 0x42, 0xD9, 0x83, 0x42, 0xD9,\n\t// Bytes 280 - 2bf\n\t0x84, 0x42, 0xD9, 0x85, 0x42, 0xD9, 0x86, 0x42,\n\t0xD9, 0x87, 0x42, 0xD9, 0x88, 0x42, 0xD9, 0x89,\n\t0x42, 0xD9, 0x8A, 0x42, 0xD9, 0xAE, 0x42, 0xD9,\n\t0xAF, 0x42, 0xD9, 0xB1, 0x42, 0xD9, 0xB9, 0x42,\n\t0xD9, 0xBA, 0x42, 0xD9, 0xBB, 0x42, 0xD9, 0xBE,\n\t0x42, 0xD9, 0xBF, 0x42, 0xDA, 0x80, 0x42, 0xDA,\n\t0x83, 0x42, 0xDA, 0x84, 0x42, 0xDA, 0x86, 0x42,\n\t0xDA, 0x87, 0x42, 0xDA, 0x88, 0x42, 0xDA, 0x8C,\n\t// Bytes 2c0 - 2ff\n\t0x42, 0xDA, 0x8D, 0x42, 0xDA, 0x8E, 0x42, 0xDA,\n\t0x91, 0x42, 0xDA, 0x98, 0x42, 0xDA, 0xA1, 0x42,\n\t0xDA, 0xA4, 0x42, 0xDA, 0xA6, 0x42, 0xDA, 0xA9,\n\t0x42, 0xDA, 0xAD, 0x42, 0xDA, 0xAF, 0x42, 0xDA,\n\t0xB1, 0x42, 0xDA, 0xB3, 0x42, 0xDA, 0xBA, 0x42,\n\t0xDA, 0xBB, 0x42, 0xDA, 0xBE, 0x42, 0xDB, 0x81,\n\t0x42, 0xDB, 0x85, 0x42, 0xDB, 0x86, 0x42, 0xDB,\n\t0x87, 0x42, 0xDB, 0x88, 0x42, 0xDB, 0x89, 0x42,\n\t// Bytes 300 - 33f\n\t0xDB, 0x8B, 0x42, 0xDB, 0x8C, 0x42, 0xDB, 0x90,\n\t0x42, 0xDB, 0x92, 0x43, 0xE0, 0xBC, 0x8B, 0x43,\n\t0xE1, 0x83, 0x9C, 0x43, 0xE1, 0x84, 0x80, 0x43,\n\t0xE1, 0x84, 0x81, 0x43, 0xE1, 0x84, 0x82, 0x43,\n\t0xE1, 0x84, 0x83, 0x43, 0xE1, 0x84, 0x84, 0x43,\n\t0xE1, 0x84, 0x85, 0x43, 0xE1, 0x84, 0x86, 0x43,\n\t0xE1, 0x84, 0x87, 0x43, 0xE1, 0x84, 0x88, 0x43,\n\t0xE1, 0x84, 0x89, 0x43, 0xE1, 0x84, 0x8A, 0x43,\n\t// Bytes 340 - 37f\n\t0xE1, 0x84, 0x8B, 0x43, 0xE1, 0x84, 0x8C, 0x43,\n\t0xE1, 0x84, 0x8D, 0x43, 0xE1, 0x84, 0x8E, 0x43,\n\t0xE1, 0x84, 0x8F, 0x43, 0xE1, 0x84, 0x90, 0x43,\n\t0xE1, 0x84, 0x91, 0x43, 0xE1, 0x84, 0x92, 0x43,\n\t0xE1, 0x84, 0x94, 0x43, 0xE1, 0x84, 0x95, 0x43,\n\t0xE1, 0x84, 0x9A, 0x43, 0xE1, 0x84, 0x9C, 0x43,\n\t0xE1, 0x84, 0x9D, 0x43, 0xE1, 0x84, 0x9E, 0x43,\n\t0xE1, 0x84, 0xA0, 0x43, 0xE1, 0x84, 0xA1, 0x43,\n\t// Bytes 380 - 3bf\n\t0xE1, 0x84, 0xA2, 0x43, 0xE1, 0x84, 0xA3, 0x43,\n\t0xE1, 0x84, 0xA7, 0x43, 0xE1, 0x84, 0xA9, 0x43,\n\t0xE1, 0x84, 0xAB, 0x43, 0xE1, 0x84, 0xAC, 0x43,\n\t0xE1, 0x84, 0xAD, 0x43, 0xE1, 0x84, 0xAE, 0x43,\n\t0xE1, 0x84, 0xAF, 0x43, 0xE1, 0x84, 0xB2, 0x43,\n\t0xE1, 0x84, 0xB6, 0x43, 0xE1, 0x85, 0x80, 0x43,\n\t0xE1, 0x85, 0x87, 0x43, 0xE1, 0x85, 0x8C, 0x43,\n\t0xE1, 0x85, 0x97, 0x43, 0xE1, 0x85, 0x98, 0x43,\n\t// Bytes 3c0 - 3ff\n\t0xE1, 0x85, 0x99, 0x43, 0xE1, 0x85, 0xA0, 0x43,\n\t0xE1, 0x86, 0x84, 0x43, 0xE1, 0x86, 0x85, 0x43,\n\t0xE1, 0x86, 0x88, 0x43, 0xE1, 0x86, 0x91, 0x43,\n\t0xE1, 0x86, 0x92, 0x43, 0xE1, 0x86, 0x94, 0x43,\n\t0xE1, 0x86, 0x9E, 0x43, 0xE1, 0x86, 0xA1, 0x43,\n\t0xE1, 0x87, 0x87, 0x43, 0xE1, 0x87, 0x88, 0x43,\n\t0xE1, 0x87, 0x8C, 0x43, 0xE1, 0x87, 0x8E, 0x43,\n\t0xE1, 0x87, 0x93, 0x43, 0xE1, 0x87, 0x97, 0x43,\n\t// Bytes 400 - 43f\n\t0xE1, 0x87, 0x99, 0x43, 0xE1, 0x87, 0x9D, 0x43,\n\t0xE1, 0x87, 0x9F, 0x43, 0xE1, 0x87, 0xB1, 0x43,\n\t0xE1, 0x87, 0xB2, 0x43, 0xE1, 0xB4, 0x82, 0x43,\n\t0xE1, 0xB4, 0x96, 0x43, 0xE1, 0xB4, 0x97, 0x43,\n\t0xE1, 0xB4, 0x9C, 0x43, 0xE1, 0xB4, 0x9D, 0x43,\n\t0xE1, 0xB4, 0xA5, 0x43, 0xE1, 0xB5, 0xBB, 0x43,\n\t0xE1, 0xB6, 0x85, 0x43, 0xE2, 0x80, 0x82, 0x43,\n\t0xE2, 0x80, 0x83, 0x43, 0xE2, 0x80, 0x90, 0x43,\n\t// Bytes 440 - 47f\n\t0xE2, 0x80, 0x93, 0x43, 0xE2, 0x80, 0x94, 0x43,\n\t0xE2, 0x82, 0xA9, 0x43, 0xE2, 0x86, 0x90, 0x43,\n\t0xE2, 0x86, 0x91, 0x43, 0xE2, 0x86, 0x92, 0x43,\n\t0xE2, 0x86, 0x93, 0x43, 0xE2, 0x88, 0x82, 0x43,\n\t0xE2, 0x88, 0x87, 0x43, 0xE2, 0x88, 0x91, 0x43,\n\t0xE2, 0x88, 0x92, 0x43, 0xE2, 0x94, 0x82, 0x43,\n\t0xE2, 0x96, 0xA0, 0x43, 0xE2, 0x97, 0x8B, 0x43,\n\t0xE2, 0xA6, 0x85, 0x43, 0xE2, 0xA6, 0x86, 0x43,\n\t// Bytes 480 - 4bf\n\t0xE2, 0xB5, 0xA1, 0x43, 0xE3, 0x80, 0x81, 0x43,\n\t0xE3, 0x80, 0x82, 0x43, 0xE3, 0x80, 0x88, 0x43,\n\t0xE3, 0x80, 0x89, 0x43, 0xE3, 0x80, 0x8A, 0x43,\n\t0xE3, 0x80, 0x8B, 0x43, 0xE3, 0x80, 0x8C, 0x43,\n\t0xE3, 0x80, 0x8D, 0x43, 0xE3, 0x80, 0x8E, 0x43,\n\t0xE3, 0x80, 0x8F, 0x43, 0xE3, 0x80, 0x90, 0x43,\n\t0xE3, 0x80, 0x91, 0x43, 0xE3, 0x80, 0x92, 0x43,\n\t0xE3, 0x80, 0x94, 0x43, 0xE3, 0x80, 0x95, 0x43,\n\t// Bytes 4c0 - 4ff\n\t0xE3, 0x80, 0x96, 0x43, 0xE3, 0x80, 0x97, 0x43,\n\t0xE3, 0x82, 0xA1, 0x43, 0xE3, 0x82, 0xA2, 0x43,\n\t0xE3, 0x82, 0xA3, 0x43, 0xE3, 0x82, 0xA4, 0x43,\n\t0xE3, 0x82, 0xA5, 0x43, 0xE3, 0x82, 0xA6, 0x43,\n\t0xE3, 0x82, 0xA7, 0x43, 0xE3, 0x82, 0xA8, 0x43,\n\t0xE3, 0x82, 0xA9, 0x43, 0xE3, 0x82, 0xAA, 0x43,\n\t0xE3, 0x82, 0xAB, 0x43, 0xE3, 0x82, 0xAD, 0x43,\n\t0xE3, 0x82, 0xAF, 0x43, 0xE3, 0x82, 0xB1, 0x43,\n\t// Bytes 500 - 53f\n\t0xE3, 0x82, 0xB3, 0x43, 0xE3, 0x82, 0xB5, 0x43,\n\t0xE3, 0x82, 0xB7, 0x43, 0xE3, 0x82, 0xB9, 0x43,\n\t0xE3, 0x82, 0xBB, 0x43, 0xE3, 0x82, 0xBD, 0x43,\n\t0xE3, 0x82, 0xBF, 0x43, 0xE3, 0x83, 0x81, 0x43,\n\t0xE3, 0x83, 0x83, 0x43, 0xE3, 0x83, 0x84, 0x43,\n\t0xE3, 0x83, 0x86, 0x43, 0xE3, 0x83, 0x88, 0x43,\n\t0xE3, 0x83, 0x8A, 0x43, 0xE3, 0x83, 0x8B, 0x43,\n\t0xE3, 0x83, 0x8C, 0x43, 0xE3, 0x83, 0x8D, 0x43,\n\t// Bytes 540 - 57f\n\t0xE3, 0x83, 0x8E, 0x43, 0xE3, 0x83, 0x8F, 0x43,\n\t0xE3, 0x83, 0x92, 0x43, 0xE3, 0x83, 0x95, 0x43,\n\t0xE3, 0x83, 0x98, 0x43, 0xE3, 0x83, 0x9B, 0x43,\n\t0xE3, 0x83, 0x9E, 0x43, 0xE3, 0x83, 0x9F, 0x43,\n\t0xE3, 0x83, 0xA0, 0x43, 0xE3, 0x83, 0xA1, 0x43,\n\t0xE3, 0x83, 0xA2, 0x43, 0xE3, 0x83, 0xA3, 0x43,\n\t0xE3, 0x83, 0xA4, 0x43, 0xE3, 0x83, 0xA5, 0x43,\n\t0xE3, 0x83, 0xA6, 0x43, 0xE3, 0x83, 0xA7, 0x43,\n\t// Bytes 580 - 5bf\n\t0xE3, 0x83, 0xA8, 0x43, 0xE3, 0x83, 0xA9, 0x43,\n\t0xE3, 0x83, 0xAA, 0x43, 0xE3, 0x83, 0xAB, 0x43,\n\t0xE3, 0x83, 0xAC, 0x43, 0xE3, 0x83, 0xAD, 0x43,\n\t0xE3, 0x83, 0xAF, 0x43, 0xE3, 0x83, 0xB0, 0x43,\n\t0xE3, 0x83, 0xB1, 0x43, 0xE3, 0x83, 0xB2, 0x43,\n\t0xE3, 0x83, 0xB3, 0x43, 0xE3, 0x83, 0xBB, 0x43,\n\t0xE3, 0x83, 0xBC, 0x43, 0xE3, 0x92, 0x9E, 0x43,\n\t0xE3, 0x92, 0xB9, 0x43, 0xE3, 0x92, 0xBB, 0x43,\n\t// Bytes 5c0 - 5ff\n\t0xE3, 0x93, 0x9F, 0x43, 0xE3, 0x94, 0x95, 0x43,\n\t0xE3, 0x9B, 0xAE, 0x43, 0xE3, 0x9B, 0xBC, 0x43,\n\t0xE3, 0x9E, 0x81, 0x43, 0xE3, 0xA0, 0xAF, 0x43,\n\t0xE3, 0xA1, 0xA2, 0x43, 0xE3, 0xA1, 0xBC, 0x43,\n\t0xE3, 0xA3, 0x87, 0x43, 0xE3, 0xA3, 0xA3, 0x43,\n\t0xE3, 0xA4, 0x9C, 0x43, 0xE3, 0xA4, 0xBA, 0x43,\n\t0xE3, 0xA8, 0xAE, 0x43, 0xE3, 0xA9, 0xAC, 0x43,\n\t0xE3, 0xAB, 0xA4, 0x43, 0xE3, 0xAC, 0x88, 0x43,\n\t// Bytes 600 - 63f\n\t0xE3, 0xAC, 0x99, 0x43, 0xE3, 0xAD, 0x89, 0x43,\n\t0xE3, 0xAE, 0x9D, 0x43, 0xE3, 0xB0, 0x98, 0x43,\n\t0xE3, 0xB1, 0x8E, 0x43, 0xE3, 0xB4, 0xB3, 0x43,\n\t0xE3, 0xB6, 0x96, 0x43, 0xE3, 0xBA, 0xAC, 0x43,\n\t0xE3, 0xBA, 0xB8, 0x43, 0xE3, 0xBC, 0x9B, 0x43,\n\t0xE3, 0xBF, 0xBC, 0x43, 0xE4, 0x80, 0x88, 0x43,\n\t0xE4, 0x80, 0x98, 0x43, 0xE4, 0x80, 0xB9, 0x43,\n\t0xE4, 0x81, 0x86, 0x43, 0xE4, 0x82, 0x96, 0x43,\n\t// Bytes 640 - 67f\n\t0xE4, 0x83, 0xA3, 0x43, 0xE4, 0x84, 0xAF, 0x43,\n\t0xE4, 0x88, 0x82, 0x43, 0xE4, 0x88, 0xA7, 0x43,\n\t0xE4, 0x8A, 0xA0, 0x43, 0xE4, 0x8C, 0x81, 0x43,\n\t0xE4, 0x8C, 0xB4, 0x43, 0xE4, 0x8D, 0x99, 0x43,\n\t0xE4, 0x8F, 0x95, 0x43, 0xE4, 0x8F, 0x99, 0x43,\n\t0xE4, 0x90, 0x8B, 0x43, 0xE4, 0x91, 0xAB, 0x43,\n\t0xE4, 0x94, 0xAB, 0x43, 0xE4, 0x95, 0x9D, 0x43,\n\t0xE4, 0x95, 0xA1, 0x43, 0xE4, 0x95, 0xAB, 0x43,\n\t// Bytes 680 - 6bf\n\t0xE4, 0x97, 0x97, 0x43, 0xE4, 0x97, 0xB9, 0x43,\n\t0xE4, 0x98, 0xB5, 0x43, 0xE4, 0x9A, 0xBE, 0x43,\n\t0xE4, 0x9B, 0x87, 0x43, 0xE4, 0xA6, 0x95, 0x43,\n\t0xE4, 0xA7, 0xA6, 0x43, 0xE4, 0xA9, 0xAE, 0x43,\n\t0xE4, 0xA9, 0xB6, 0x43, 0xE4, 0xAA, 0xB2, 0x43,\n\t0xE4, 0xAC, 0xB3, 0x43, 0xE4, 0xAF, 0x8E, 0x43,\n\t0xE4, 0xB3, 0x8E, 0x43, 0xE4, 0xB3, 0xAD, 0x43,\n\t0xE4, 0xB3, 0xB8, 0x43, 0xE4, 0xB5, 0x96, 0x43,\n\t// Bytes 6c0 - 6ff\n\t0xE4, 0xB8, 0x80, 0x43, 0xE4, 0xB8, 0x81, 0x43,\n\t0xE4, 0xB8, 0x83, 0x43, 0xE4, 0xB8, 0x89, 0x43,\n\t0xE4, 0xB8, 0x8A, 0x43, 0xE4, 0xB8, 0x8B, 0x43,\n\t0xE4, 0xB8, 0x8D, 0x43, 0xE4, 0xB8, 0x99, 0x43,\n\t0xE4, 0xB8, 0xA6, 0x43, 0xE4, 0xB8, 0xA8, 0x43,\n\t0xE4, 0xB8, 0xAD, 0x43, 0xE4, 0xB8, 0xB2, 0x43,\n\t0xE4, 0xB8, 0xB6, 0x43, 0xE4, 0xB8, 0xB8, 0x43,\n\t0xE4, 0xB8, 0xB9, 0x43, 0xE4, 0xB8, 0xBD, 0x43,\n\t// Bytes 700 - 73f\n\t0xE4, 0xB8, 0xBF, 0x43, 0xE4, 0xB9, 0x81, 0x43,\n\t0xE4, 0xB9, 0x99, 0x43, 0xE4, 0xB9, 0x9D, 0x43,\n\t0xE4, 0xBA, 0x82, 0x43, 0xE4, 0xBA, 0x85, 0x43,\n\t0xE4, 0xBA, 0x86, 0x43, 0xE4, 0xBA, 0x8C, 0x43,\n\t0xE4, 0xBA, 0x94, 0x43, 0xE4, 0xBA, 0xA0, 0x43,\n\t0xE4, 0xBA, 0xA4, 0x43, 0xE4, 0xBA, 0xAE, 0x43,\n\t0xE4, 0xBA, 0xBA, 0x43, 0xE4, 0xBB, 0x80, 0x43,\n\t0xE4, 0xBB, 0x8C, 0x43, 0xE4, 0xBB, 0xA4, 0x43,\n\t// Bytes 740 - 77f\n\t0xE4, 0xBC, 0x81, 0x43, 0xE4, 0xBC, 0x91, 0x43,\n\t0xE4, 0xBD, 0xA0, 0x43, 0xE4, 0xBE, 0x80, 0x43,\n\t0xE4, 0xBE, 0x86, 0x43, 0xE4, 0xBE, 0x8B, 0x43,\n\t0xE4, 0xBE, 0xAE, 0x43, 0xE4, 0xBE, 0xBB, 0x43,\n\t0xE4, 0xBE, 0xBF, 0x43, 0xE5, 0x80, 0x82, 0x43,\n\t0xE5, 0x80, 0xAB, 0x43, 0xE5, 0x81, 0xBA, 0x43,\n\t0xE5, 0x82, 0x99, 0x43, 0xE5, 0x83, 0x8F, 0x43,\n\t0xE5, 0x83, 0x9A, 0x43, 0xE5, 0x83, 0xA7, 0x43,\n\t// Bytes 780 - 7bf\n\t0xE5, 0x84, 0xAA, 0x43, 0xE5, 0x84, 0xBF, 0x43,\n\t0xE5, 0x85, 0x80, 0x43, 0xE5, 0x85, 0x85, 0x43,\n\t0xE5, 0x85, 0x8D, 0x43, 0xE5, 0x85, 0x94, 0x43,\n\t0xE5, 0x85, 0xA4, 0x43, 0xE5, 0x85, 0xA5, 0x43,\n\t0xE5, 0x85, 0xA7, 0x43, 0xE5, 0x85, 0xA8, 0x43,\n\t0xE5, 0x85, 0xA9, 0x43, 0xE5, 0x85, 0xAB, 0x43,\n\t0xE5, 0x85, 0xAD, 0x43, 0xE5, 0x85, 0xB7, 0x43,\n\t0xE5, 0x86, 0x80, 0x43, 0xE5, 0x86, 0x82, 0x43,\n\t// Bytes 7c0 - 7ff\n\t0xE5, 0x86, 0x8D, 0x43, 0xE5, 0x86, 0x92, 0x43,\n\t0xE5, 0x86, 0x95, 0x43, 0xE5, 0x86, 0x96, 0x43,\n\t0xE5, 0x86, 0x97, 0x43, 0xE5, 0x86, 0x99, 0x43,\n\t0xE5, 0x86, 0xA4, 0x43, 0xE5, 0x86, 0xAB, 0x43,\n\t0xE5, 0x86, 0xAC, 0x43, 0xE5, 0x86, 0xB5, 0x43,\n\t0xE5, 0x86, 0xB7, 0x43, 0xE5, 0x87, 0x89, 0x43,\n\t0xE5, 0x87, 0x8C, 0x43, 0xE5, 0x87, 0x9C, 0x43,\n\t0xE5, 0x87, 0x9E, 0x43, 0xE5, 0x87, 0xA0, 0x43,\n\t// Bytes 800 - 83f\n\t0xE5, 0x87, 0xB5, 0x43, 0xE5, 0x88, 0x80, 0x43,\n\t0xE5, 0x88, 0x83, 0x43, 0xE5, 0x88, 0x87, 0x43,\n\t0xE5, 0x88, 0x97, 0x43, 0xE5, 0x88, 0x9D, 0x43,\n\t0xE5, 0x88, 0xA9, 0x43, 0xE5, 0x88, 0xBA, 0x43,\n\t0xE5, 0x88, 0xBB, 0x43, 0xE5, 0x89, 0x86, 0x43,\n\t0xE5, 0x89, 0x8D, 0x43, 0xE5, 0x89, 0xB2, 0x43,\n\t0xE5, 0x89, 0xB7, 0x43, 0xE5, 0x8A, 0x89, 0x43,\n\t0xE5, 0x8A, 0x9B, 0x43, 0xE5, 0x8A, 0xA3, 0x43,\n\t// Bytes 840 - 87f\n\t0xE5, 0x8A, 0xB3, 0x43, 0xE5, 0x8A, 0xB4, 0x43,\n\t0xE5, 0x8B, 0x87, 0x43, 0xE5, 0x8B, 0x89, 0x43,\n\t0xE5, 0x8B, 0x92, 0x43, 0xE5, 0x8B, 0x9E, 0x43,\n\t0xE5, 0x8B, 0xA4, 0x43, 0xE5, 0x8B, 0xB5, 0x43,\n\t0xE5, 0x8B, 0xB9, 0x43, 0xE5, 0x8B, 0xBA, 0x43,\n\t0xE5, 0x8C, 0x85, 0x43, 0xE5, 0x8C, 0x86, 0x43,\n\t0xE5, 0x8C, 0x95, 0x43, 0xE5, 0x8C, 0x97, 0x43,\n\t0xE5, 0x8C, 0x9A, 0x43, 0xE5, 0x8C, 0xB8, 0x43,\n\t// Bytes 880 - 8bf\n\t0xE5, 0x8C, 0xBB, 0x43, 0xE5, 0x8C, 0xBF, 0x43,\n\t0xE5, 0x8D, 0x81, 0x43, 0xE5, 0x8D, 0x84, 0x43,\n\t0xE5, 0x8D, 0x85, 0x43, 0xE5, 0x8D, 0x89, 0x43,\n\t0xE5, 0x8D, 0x91, 0x43, 0xE5, 0x8D, 0x94, 0x43,\n\t0xE5, 0x8D, 0x9A, 0x43, 0xE5, 0x8D, 0x9C, 0x43,\n\t0xE5, 0x8D, 0xA9, 0x43, 0xE5, 0x8D, 0xB0, 0x43,\n\t0xE5, 0x8D, 0xB3, 0x43, 0xE5, 0x8D, 0xB5, 0x43,\n\t0xE5, 0x8D, 0xBD, 0x43, 0xE5, 0x8D, 0xBF, 0x43,\n\t// Bytes 8c0 - 8ff\n\t0xE5, 0x8E, 0x82, 0x43, 0xE5, 0x8E, 0xB6, 0x43,\n\t0xE5, 0x8F, 0x83, 0x43, 0xE5, 0x8F, 0x88, 0x43,\n\t0xE5, 0x8F, 0x8A, 0x43, 0xE5, 0x8F, 0x8C, 0x43,\n\t0xE5, 0x8F, 0x9F, 0x43, 0xE5, 0x8F, 0xA3, 0x43,\n\t0xE5, 0x8F, 0xA5, 0x43, 0xE5, 0x8F, 0xAB, 0x43,\n\t0xE5, 0x8F, 0xAF, 0x43, 0xE5, 0x8F, 0xB1, 0x43,\n\t0xE5, 0x8F, 0xB3, 0x43, 0xE5, 0x90, 0x86, 0x43,\n\t0xE5, 0x90, 0x88, 0x43, 0xE5, 0x90, 0x8D, 0x43,\n\t// Bytes 900 - 93f\n\t0xE5, 0x90, 0x8F, 0x43, 0xE5, 0x90, 0x9D, 0x43,\n\t0xE5, 0x90, 0xB8, 0x43, 0xE5, 0x90, 0xB9, 0x43,\n\t0xE5, 0x91, 0x82, 0x43, 0xE5, 0x91, 0x88, 0x43,\n\t0xE5, 0x91, 0xA8, 0x43, 0xE5, 0x92, 0x9E, 0x43,\n\t0xE5, 0x92, 0xA2, 0x43, 0xE5, 0x92, 0xBD, 0x43,\n\t0xE5, 0x93, 0xB6, 0x43, 0xE5, 0x94, 0x90, 0x43,\n\t0xE5, 0x95, 0x8F, 0x43, 0xE5, 0x95, 0x93, 0x43,\n\t0xE5, 0x95, 0x95, 0x43, 0xE5, 0x95, 0xA3, 0x43,\n\t// Bytes 940 - 97f\n\t0xE5, 0x96, 0x84, 0x43, 0xE5, 0x96, 0x87, 0x43,\n\t0xE5, 0x96, 0x99, 0x43, 0xE5, 0x96, 0x9D, 0x43,\n\t0xE5, 0x96, 0xAB, 0x43, 0xE5, 0x96, 0xB3, 0x43,\n\t0xE5, 0x96, 0xB6, 0x43, 0xE5, 0x97, 0x80, 0x43,\n\t0xE5, 0x97, 0x82, 0x43, 0xE5, 0x97, 0xA2, 0x43,\n\t0xE5, 0x98, 0x86, 0x43, 0xE5, 0x99, 0x91, 0x43,\n\t0xE5, 0x99, 0xA8, 0x43, 0xE5, 0x99, 0xB4, 0x43,\n\t0xE5, 0x9B, 0x97, 0x43, 0xE5, 0x9B, 0x9B, 0x43,\n\t// Bytes 980 - 9bf\n\t0xE5, 0x9B, 0xB9, 0x43, 0xE5, 0x9C, 0x96, 0x43,\n\t0xE5, 0x9C, 0x97, 0x43, 0xE5, 0x9C, 0x9F, 0x43,\n\t0xE5, 0x9C, 0xB0, 0x43, 0xE5, 0x9E, 0x8B, 0x43,\n\t0xE5, 0x9F, 0x8E, 0x43, 0xE5, 0x9F, 0xB4, 0x43,\n\t0xE5, 0xA0, 0x8D, 0x43, 0xE5, 0xA0, 0xB1, 0x43,\n\t0xE5, 0xA0, 0xB2, 0x43, 0xE5, 0xA1, 0x80, 0x43,\n\t0xE5, 0xA1, 0x9A, 0x43, 0xE5, 0xA1, 0x9E, 0x43,\n\t0xE5, 0xA2, 0xA8, 0x43, 0xE5, 0xA2, 0xAC, 0x43,\n\t// Bytes 9c0 - 9ff\n\t0xE5, 0xA2, 0xB3, 0x43, 0xE5, 0xA3, 0x98, 0x43,\n\t0xE5, 0xA3, 0x9F, 0x43, 0xE5, 0xA3, 0xAB, 0x43,\n\t0xE5, 0xA3, 0xAE, 0x43, 0xE5, 0xA3, 0xB0, 0x43,\n\t0xE5, 0xA3, 0xB2, 0x43, 0xE5, 0xA3, 0xB7, 0x43,\n\t0xE5, 0xA4, 0x82, 0x43, 0xE5, 0xA4, 0x86, 0x43,\n\t0xE5, 0xA4, 0x8A, 0x43, 0xE5, 0xA4, 0x95, 0x43,\n\t0xE5, 0xA4, 0x9A, 0x43, 0xE5, 0xA4, 0x9C, 0x43,\n\t0xE5, 0xA4, 0xA2, 0x43, 0xE5, 0xA4, 0xA7, 0x43,\n\t// Bytes a00 - a3f\n\t0xE5, 0xA4, 0xA9, 0x43, 0xE5, 0xA5, 0x84, 0x43,\n\t0xE5, 0xA5, 0x88, 0x43, 0xE5, 0xA5, 0x91, 0x43,\n\t0xE5, 0xA5, 0x94, 0x43, 0xE5, 0xA5, 0xA2, 0x43,\n\t0xE5, 0xA5, 0xB3, 0x43, 0xE5, 0xA7, 0x98, 0x43,\n\t0xE5, 0xA7, 0xAC, 0x43, 0xE5, 0xA8, 0x9B, 0x43,\n\t0xE5, 0xA8, 0xA7, 0x43, 0xE5, 0xA9, 0xA2, 0x43,\n\t0xE5, 0xA9, 0xA6, 0x43, 0xE5, 0xAA, 0xB5, 0x43,\n\t0xE5, 0xAC, 0x88, 0x43, 0xE5, 0xAC, 0xA8, 0x43,\n\t// Bytes a40 - a7f\n\t0xE5, 0xAC, 0xBE, 0x43, 0xE5, 0xAD, 0x90, 0x43,\n\t0xE5, 0xAD, 0x97, 0x43, 0xE5, 0xAD, 0xA6, 0x43,\n\t0xE5, 0xAE, 0x80, 0x43, 0xE5, 0xAE, 0x85, 0x43,\n\t0xE5, 0xAE, 0x97, 0x43, 0xE5, 0xAF, 0x83, 0x43,\n\t0xE5, 0xAF, 0x98, 0x43, 0xE5, 0xAF, 0xA7, 0x43,\n\t0xE5, 0xAF, 0xAE, 0x43, 0xE5, 0xAF, 0xB3, 0x43,\n\t0xE5, 0xAF, 0xB8, 0x43, 0xE5, 0xAF, 0xBF, 0x43,\n\t0xE5, 0xB0, 0x86, 0x43, 0xE5, 0xB0, 0x8F, 0x43,\n\t// Bytes a80 - abf\n\t0xE5, 0xB0, 0xA2, 0x43, 0xE5, 0xB0, 0xB8, 0x43,\n\t0xE5, 0xB0, 0xBF, 0x43, 0xE5, 0xB1, 0xA0, 0x43,\n\t0xE5, 0xB1, 0xA2, 0x43, 0xE5, 0xB1, 0xA4, 0x43,\n\t0xE5, 0xB1, 0xA5, 0x43, 0xE5, 0xB1, 0xAE, 0x43,\n\t0xE5, 0xB1, 0xB1, 0x43, 0xE5, 0xB2, 0x8D, 0x43,\n\t0xE5, 0xB3, 0x80, 0x43, 0xE5, 0xB4, 0x99, 0x43,\n\t0xE5, 0xB5, 0x83, 0x43, 0xE5, 0xB5, 0x90, 0x43,\n\t0xE5, 0xB5, 0xAB, 0x43, 0xE5, 0xB5, 0xAE, 0x43,\n\t// Bytes ac0 - aff\n\t0xE5, 0xB5, 0xBC, 0x43, 0xE5, 0xB6, 0xB2, 0x43,\n\t0xE5, 0xB6, 0xBA, 0x43, 0xE5, 0xB7, 0x9B, 0x43,\n\t0xE5, 0xB7, 0xA1, 0x43, 0xE5, 0xB7, 0xA2, 0x43,\n\t0xE5, 0xB7, 0xA5, 0x43, 0xE5, 0xB7, 0xA6, 0x43,\n\t0xE5, 0xB7, 0xB1, 0x43, 0xE5, 0xB7, 0xBD, 0x43,\n\t0xE5, 0xB7, 0xBE, 0x43, 0xE5, 0xB8, 0xA8, 0x43,\n\t0xE5, 0xB8, 0xBD, 0x43, 0xE5, 0xB9, 0xA9, 0x43,\n\t0xE5, 0xB9, 0xB2, 0x43, 0xE5, 0xB9, 0xB4, 0x43,\n\t// Bytes b00 - b3f\n\t0xE5, 0xB9, 0xBA, 0x43, 0xE5, 0xB9, 0xBC, 0x43,\n\t0xE5, 0xB9, 0xBF, 0x43, 0xE5, 0xBA, 0xA6, 0x43,\n\t0xE5, 0xBA, 0xB0, 0x43, 0xE5, 0xBA, 0xB3, 0x43,\n\t0xE5, 0xBA, 0xB6, 0x43, 0xE5, 0xBB, 0x89, 0x43,\n\t0xE5, 0xBB, 0x8A, 0x43, 0xE5, 0xBB, 0x92, 0x43,\n\t0xE5, 0xBB, 0x93, 0x43, 0xE5, 0xBB, 0x99, 0x43,\n\t0xE5, 0xBB, 0xAC, 0x43, 0xE5, 0xBB, 0xB4, 0x43,\n\t0xE5, 0xBB, 0xBE, 0x43, 0xE5, 0xBC, 0x84, 0x43,\n\t// Bytes b40 - b7f\n\t0xE5, 0xBC, 0x8B, 0x43, 0xE5, 0xBC, 0x93, 0x43,\n\t0xE5, 0xBC, 0xA2, 0x43, 0xE5, 0xBD, 0x90, 0x43,\n\t0xE5, 0xBD, 0x93, 0x43, 0xE5, 0xBD, 0xA1, 0x43,\n\t0xE5, 0xBD, 0xA2, 0x43, 0xE5, 0xBD, 0xA9, 0x43,\n\t0xE5, 0xBD, 0xAB, 0x43, 0xE5, 0xBD, 0xB3, 0x43,\n\t0xE5, 0xBE, 0x8B, 0x43, 0xE5, 0xBE, 0x8C, 0x43,\n\t0xE5, 0xBE, 0x97, 0x43, 0xE5, 0xBE, 0x9A, 0x43,\n\t0xE5, 0xBE, 0xA9, 0x43, 0xE5, 0xBE, 0xAD, 0x43,\n\t// Bytes b80 - bbf\n\t0xE5, 0xBF, 0x83, 0x43, 0xE5, 0xBF, 0x8D, 0x43,\n\t0xE5, 0xBF, 0x97, 0x43, 0xE5, 0xBF, 0xB5, 0x43,\n\t0xE5, 0xBF, 0xB9, 0x43, 0xE6, 0x80, 0x92, 0x43,\n\t0xE6, 0x80, 0x9C, 0x43, 0xE6, 0x81, 0xB5, 0x43,\n\t0xE6, 0x82, 0x81, 0x43, 0xE6, 0x82, 0x94, 0x43,\n\t0xE6, 0x83, 0x87, 0x43, 0xE6, 0x83, 0x98, 0x43,\n\t0xE6, 0x83, 0xA1, 0x43, 0xE6, 0x84, 0x88, 0x43,\n\t0xE6, 0x85, 0x84, 0x43, 0xE6, 0x85, 0x88, 0x43,\n\t// Bytes bc0 - bff\n\t0xE6, 0x85, 0x8C, 0x43, 0xE6, 0x85, 0x8E, 0x43,\n\t0xE6, 0x85, 0xA0, 0x43, 0xE6, 0x85, 0xA8, 0x43,\n\t0xE6, 0x85, 0xBA, 0x43, 0xE6, 0x86, 0x8E, 0x43,\n\t0xE6, 0x86, 0x90, 0x43, 0xE6, 0x86, 0xA4, 0x43,\n\t0xE6, 0x86, 0xAF, 0x43, 0xE6, 0x86, 0xB2, 0x43,\n\t0xE6, 0x87, 0x9E, 0x43, 0xE6, 0x87, 0xB2, 0x43,\n\t0xE6, 0x87, 0xB6, 0x43, 0xE6, 0x88, 0x80, 0x43,\n\t0xE6, 0x88, 0x88, 0x43, 0xE6, 0x88, 0x90, 0x43,\n\t// Bytes c00 - c3f\n\t0xE6, 0x88, 0x9B, 0x43, 0xE6, 0x88, 0xAE, 0x43,\n\t0xE6, 0x88, 0xB4, 0x43, 0xE6, 0x88, 0xB6, 0x43,\n\t0xE6, 0x89, 0x8B, 0x43, 0xE6, 0x89, 0x93, 0x43,\n\t0xE6, 0x89, 0x9D, 0x43, 0xE6, 0x8A, 0x95, 0x43,\n\t0xE6, 0x8A, 0xB1, 0x43, 0xE6, 0x8B, 0x89, 0x43,\n\t0xE6, 0x8B, 0x8F, 0x43, 0xE6, 0x8B, 0x93, 0x43,\n\t0xE6, 0x8B, 0x94, 0x43, 0xE6, 0x8B, 0xBC, 0x43,\n\t0xE6, 0x8B, 0xBE, 0x43, 0xE6, 0x8C, 0x87, 0x43,\n\t// Bytes c40 - c7f\n\t0xE6, 0x8C, 0xBD, 0x43, 0xE6, 0x8D, 0x90, 0x43,\n\t0xE6, 0x8D, 0x95, 0x43, 0xE6, 0x8D, 0xA8, 0x43,\n\t0xE6, 0x8D, 0xBB, 0x43, 0xE6, 0x8E, 0x83, 0x43,\n\t0xE6, 0x8E, 0xA0, 0x43, 0xE6, 0x8E, 0xA9, 0x43,\n\t0xE6, 0x8F, 0x84, 0x43, 0xE6, 0x8F, 0x85, 0x43,\n\t0xE6, 0x8F, 0xA4, 0x43, 0xE6, 0x90, 0x9C, 0x43,\n\t0xE6, 0x90, 0xA2, 0x43, 0xE6, 0x91, 0x92, 0x43,\n\t0xE6, 0x91, 0xA9, 0x43, 0xE6, 0x91, 0xB7, 0x43,\n\t// Bytes c80 - cbf\n\t0xE6, 0x91, 0xBE, 0x43, 0xE6, 0x92, 0x9A, 0x43,\n\t0xE6, 0x92, 0x9D, 0x43, 0xE6, 0x93, 0x84, 0x43,\n\t0xE6, 0x94, 0xAF, 0x43, 0xE6, 0x94, 0xB4, 0x43,\n\t0xE6, 0x95, 0x8F, 0x43, 0xE6, 0x95, 0x96, 0x43,\n\t0xE6, 0x95, 0xAC, 0x43, 0xE6, 0x95, 0xB8, 0x43,\n\t0xE6, 0x96, 0x87, 0x43, 0xE6, 0x96, 0x97, 0x43,\n\t0xE6, 0x96, 0x99, 0x43, 0xE6, 0x96, 0xA4, 0x43,\n\t0xE6, 0x96, 0xB0, 0x43, 0xE6, 0x96, 0xB9, 0x43,\n\t// Bytes cc0 - cff\n\t0xE6, 0x97, 0x85, 0x43, 0xE6, 0x97, 0xA0, 0x43,\n\t0xE6, 0x97, 0xA2, 0x43, 0xE6, 0x97, 0xA3, 0x43,\n\t0xE6, 0x97, 0xA5, 0x43, 0xE6, 0x98, 0x93, 0x43,\n\t0xE6, 0x98, 0xA0, 0x43, 0xE6, 0x99, 0x89, 0x43,\n\t0xE6, 0x99, 0xB4, 0x43, 0xE6, 0x9A, 0x88, 0x43,\n\t0xE6, 0x9A, 0x91, 0x43, 0xE6, 0x9A, 0x9C, 0x43,\n\t0xE6, 0x9A, 0xB4, 0x43, 0xE6, 0x9B, 0x86, 0x43,\n\t0xE6, 0x9B, 0xB0, 0x43, 0xE6, 0x9B, 0xB4, 0x43,\n\t// Bytes d00 - d3f\n\t0xE6, 0x9B, 0xB8, 0x43, 0xE6, 0x9C, 0x80, 0x43,\n\t0xE6, 0x9C, 0x88, 0x43, 0xE6, 0x9C, 0x89, 0x43,\n\t0xE6, 0x9C, 0x97, 0x43, 0xE6, 0x9C, 0x9B, 0x43,\n\t0xE6, 0x9C, 0xA1, 0x43, 0xE6, 0x9C, 0xA8, 0x43,\n\t0xE6, 0x9D, 0x8E, 0x43, 0xE6, 0x9D, 0x93, 0x43,\n\t0xE6, 0x9D, 0x96, 0x43, 0xE6, 0x9D, 0x9E, 0x43,\n\t0xE6, 0x9D, 0xBB, 0x43, 0xE6, 0x9E, 0x85, 0x43,\n\t0xE6, 0x9E, 0x97, 0x43, 0xE6, 0x9F, 0xB3, 0x43,\n\t// Bytes d40 - d7f\n\t0xE6, 0x9F, 0xBA, 0x43, 0xE6, 0xA0, 0x97, 0x43,\n\t0xE6, 0xA0, 0x9F, 0x43, 0xE6, 0xA0, 0xAA, 0x43,\n\t0xE6, 0xA1, 0x92, 0x43, 0xE6, 0xA2, 0x81, 0x43,\n\t0xE6, 0xA2, 0x85, 0x43, 0xE6, 0xA2, 0x8E, 0x43,\n\t0xE6, 0xA2, 0xA8, 0x43, 0xE6, 0xA4, 0x94, 0x43,\n\t0xE6, 0xA5, 0x82, 0x43, 0xE6, 0xA6, 0xA3, 0x43,\n\t0xE6, 0xA7, 0xAA, 0x43, 0xE6, 0xA8, 0x82, 0x43,\n\t0xE6, 0xA8, 0x93, 0x43, 0xE6, 0xAA, 0xA8, 0x43,\n\t// Bytes d80 - dbf\n\t0xE6, 0xAB, 0x93, 0x43, 0xE6, 0xAB, 0x9B, 0x43,\n\t0xE6, 0xAC, 0x84, 0x43, 0xE6, 0xAC, 0xA0, 0x43,\n\t0xE6, 0xAC, 0xA1, 0x43, 0xE6, 0xAD, 0x94, 0x43,\n\t0xE6, 0xAD, 0xA2, 0x43, 0xE6, 0xAD, 0xA3, 0x43,\n\t0xE6, 0xAD, 0xB2, 0x43, 0xE6, 0xAD, 0xB7, 0x43,\n\t0xE6, 0xAD, 0xB9, 0x43, 0xE6, 0xAE, 0x9F, 0x43,\n\t0xE6, 0xAE, 0xAE, 0x43, 0xE6, 0xAE, 0xB3, 0x43,\n\t0xE6, 0xAE, 0xBA, 0x43, 0xE6, 0xAE, 0xBB, 0x43,\n\t// Bytes dc0 - dff\n\t0xE6, 0xAF, 0x8B, 0x43, 0xE6, 0xAF, 0x8D, 0x43,\n\t0xE6, 0xAF, 0x94, 0x43, 0xE6, 0xAF, 0x9B, 0x43,\n\t0xE6, 0xB0, 0x8F, 0x43, 0xE6, 0xB0, 0x94, 0x43,\n\t0xE6, 0xB0, 0xB4, 0x43, 0xE6, 0xB1, 0x8E, 0x43,\n\t0xE6, 0xB1, 0xA7, 0x43, 0xE6, 0xB2, 0x88, 0x43,\n\t0xE6, 0xB2, 0xBF, 0x43, 0xE6, 0xB3, 0x8C, 0x43,\n\t0xE6, 0xB3, 0x8D, 0x43, 0xE6, 0xB3, 0xA5, 0x43,\n\t0xE6, 0xB3, 0xA8, 0x43, 0xE6, 0xB4, 0x96, 0x43,\n\t// Bytes e00 - e3f\n\t0xE6, 0xB4, 0x9B, 0x43, 0xE6, 0xB4, 0x9E, 0x43,\n\t0xE6, 0xB4, 0xB4, 0x43, 0xE6, 0xB4, 0xBE, 0x43,\n\t0xE6, 0xB5, 0x81, 0x43, 0xE6, 0xB5, 0xA9, 0x43,\n\t0xE6, 0xB5, 0xAA, 0x43, 0xE6, 0xB5, 0xB7, 0x43,\n\t0xE6, 0xB5, 0xB8, 0x43, 0xE6, 0xB6, 0x85, 0x43,\n\t0xE6, 0xB7, 0x8B, 0x43, 0xE6, 0xB7, 0x9A, 0x43,\n\t0xE6, 0xB7, 0xAA, 0x43, 0xE6, 0xB7, 0xB9, 0x43,\n\t0xE6, 0xB8, 0x9A, 0x43, 0xE6, 0xB8, 0xAF, 0x43,\n\t// Bytes e40 - e7f\n\t0xE6, 0xB9, 0xAE, 0x43, 0xE6, 0xBA, 0x80, 0x43,\n\t0xE6, 0xBA, 0x9C, 0x43, 0xE6, 0xBA, 0xBA, 0x43,\n\t0xE6, 0xBB, 0x87, 0x43, 0xE6, 0xBB, 0x8B, 0x43,\n\t0xE6, 0xBB, 0x91, 0x43, 0xE6, 0xBB, 0x9B, 0x43,\n\t0xE6, 0xBC, 0x8F, 0x43, 0xE6, 0xBC, 0x94, 0x43,\n\t0xE6, 0xBC, 0xA2, 0x43, 0xE6, 0xBC, 0xA3, 0x43,\n\t0xE6, 0xBD, 0xAE, 0x43, 0xE6, 0xBF, 0x86, 0x43,\n\t0xE6, 0xBF, 0xAB, 0x43, 0xE6, 0xBF, 0xBE, 0x43,\n\t// Bytes e80 - ebf\n\t0xE7, 0x80, 0x9B, 0x43, 0xE7, 0x80, 0x9E, 0x43,\n\t0xE7, 0x80, 0xB9, 0x43, 0xE7, 0x81, 0x8A, 0x43,\n\t0xE7, 0x81, 0xAB, 0x43, 0xE7, 0x81, 0xB0, 0x43,\n\t0xE7, 0x81, 0xB7, 0x43, 0xE7, 0x81, 0xBD, 0x43,\n\t0xE7, 0x82, 0x99, 0x43, 0xE7, 0x82, 0xAD, 0x43,\n\t0xE7, 0x83, 0x88, 0x43, 0xE7, 0x83, 0x99, 0x43,\n\t0xE7, 0x84, 0xA1, 0x43, 0xE7, 0x85, 0x85, 0x43,\n\t0xE7, 0x85, 0x89, 0x43, 0xE7, 0x85, 0xAE, 0x43,\n\t// Bytes ec0 - eff\n\t0xE7, 0x86, 0x9C, 0x43, 0xE7, 0x87, 0x8E, 0x43,\n\t0xE7, 0x87, 0x90, 0x43, 0xE7, 0x88, 0x90, 0x43,\n\t0xE7, 0x88, 0x9B, 0x43, 0xE7, 0x88, 0xA8, 0x43,\n\t0xE7, 0x88, 0xAA, 0x43, 0xE7, 0x88, 0xAB, 0x43,\n\t0xE7, 0x88, 0xB5, 0x43, 0xE7, 0x88, 0xB6, 0x43,\n\t0xE7, 0x88, 0xBB, 0x43, 0xE7, 0x88, 0xBF, 0x43,\n\t0xE7, 0x89, 0x87, 0x43, 0xE7, 0x89, 0x90, 0x43,\n\t0xE7, 0x89, 0x99, 0x43, 0xE7, 0x89, 0x9B, 0x43,\n\t// Bytes f00 - f3f\n\t0xE7, 0x89, 0xA2, 0x43, 0xE7, 0x89, 0xB9, 0x43,\n\t0xE7, 0x8A, 0x80, 0x43, 0xE7, 0x8A, 0x95, 0x43,\n\t0xE7, 0x8A, 0xAC, 0x43, 0xE7, 0x8A, 0xAF, 0x43,\n\t0xE7, 0x8B, 0x80, 0x43, 0xE7, 0x8B, 0xBC, 0x43,\n\t0xE7, 0x8C, 0xAA, 0x43, 0xE7, 0x8D, 0xB5, 0x43,\n\t0xE7, 0x8D, 0xBA, 0x43, 0xE7, 0x8E, 0x84, 0x43,\n\t0xE7, 0x8E, 0x87, 0x43, 0xE7, 0x8E, 0x89, 0x43,\n\t0xE7, 0x8E, 0x8B, 0x43, 0xE7, 0x8E, 0xA5, 0x43,\n\t// Bytes f40 - f7f\n\t0xE7, 0x8E, 0xB2, 0x43, 0xE7, 0x8F, 0x9E, 0x43,\n\t0xE7, 0x90, 0x86, 0x43, 0xE7, 0x90, 0x89, 0x43,\n\t0xE7, 0x90, 0xA2, 0x43, 0xE7, 0x91, 0x87, 0x43,\n\t0xE7, 0x91, 0x9C, 0x43, 0xE7, 0x91, 0xA9, 0x43,\n\t0xE7, 0x91, 0xB1, 0x43, 0xE7, 0x92, 0x85, 0x43,\n\t0xE7, 0x92, 0x89, 0x43, 0xE7, 0x92, 0x98, 0x43,\n\t0xE7, 0x93, 0x8A, 0x43, 0xE7, 0x93, 0x9C, 0x43,\n\t0xE7, 0x93, 0xA6, 0x43, 0xE7, 0x94, 0x86, 0x43,\n\t// Bytes f80 - fbf\n\t0xE7, 0x94, 0x98, 0x43, 0xE7, 0x94, 0x9F, 0x43,\n\t0xE7, 0x94, 0xA4, 0x43, 0xE7, 0x94, 0xA8, 0x43,\n\t0xE7, 0x94, 0xB0, 0x43, 0xE7, 0x94, 0xB2, 0x43,\n\t0xE7, 0x94, 0xB3, 0x43, 0xE7, 0x94, 0xB7, 0x43,\n\t0xE7, 0x94, 0xBB, 0x43, 0xE7, 0x94, 0xBE, 0x43,\n\t0xE7, 0x95, 0x99, 0x43, 0xE7, 0x95, 0xA5, 0x43,\n\t0xE7, 0x95, 0xB0, 0x43, 0xE7, 0x96, 0x8B, 0x43,\n\t0xE7, 0x96, 0x92, 0x43, 0xE7, 0x97, 0xA2, 0x43,\n\t// Bytes fc0 - fff\n\t0xE7, 0x98, 0x90, 0x43, 0xE7, 0x98, 0x9D, 0x43,\n\t0xE7, 0x98, 0x9F, 0x43, 0xE7, 0x99, 0x82, 0x43,\n\t0xE7, 0x99, 0xA9, 0x43, 0xE7, 0x99, 0xB6, 0x43,\n\t0xE7, 0x99, 0xBD, 0x43, 0xE7, 0x9A, 0xAE, 0x43,\n\t0xE7, 0x9A, 0xBF, 0x43, 0xE7, 0x9B, 0x8A, 0x43,\n\t0xE7, 0x9B, 0x9B, 0x43, 0xE7, 0x9B, 0xA3, 0x43,\n\t0xE7, 0x9B, 0xA7, 0x43, 0xE7, 0x9B, 0xAE, 0x43,\n\t0xE7, 0x9B, 0xB4, 0x43, 0xE7, 0x9C, 0x81, 0x43,\n\t// Bytes 1000 - 103f\n\t0xE7, 0x9C, 0x9E, 0x43, 0xE7, 0x9C, 0x9F, 0x43,\n\t0xE7, 0x9D, 0x80, 0x43, 0xE7, 0x9D, 0x8A, 0x43,\n\t0xE7, 0x9E, 0x8B, 0x43, 0xE7, 0x9E, 0xA7, 0x43,\n\t0xE7, 0x9F, 0x9B, 0x43, 0xE7, 0x9F, 0xA2, 0x43,\n\t0xE7, 0x9F, 0xB3, 0x43, 0xE7, 0xA1, 0x8E, 0x43,\n\t0xE7, 0xA1, 0xAB, 0x43, 0xE7, 0xA2, 0x8C, 0x43,\n\t0xE7, 0xA2, 0x91, 0x43, 0xE7, 0xA3, 0x8A, 0x43,\n\t0xE7, 0xA3, 0x8C, 0x43, 0xE7, 0xA3, 0xBB, 0x43,\n\t// Bytes 1040 - 107f\n\t0xE7, 0xA4, 0xAA, 0x43, 0xE7, 0xA4, 0xBA, 0x43,\n\t0xE7, 0xA4, 0xBC, 0x43, 0xE7, 0xA4, 0xBE, 0x43,\n\t0xE7, 0xA5, 0x88, 0x43, 0xE7, 0xA5, 0x89, 0x43,\n\t0xE7, 0xA5, 0x90, 0x43, 0xE7, 0xA5, 0x96, 0x43,\n\t0xE7, 0xA5, 0x9D, 0x43, 0xE7, 0xA5, 0x9E, 0x43,\n\t0xE7, 0xA5, 0xA5, 0x43, 0xE7, 0xA5, 0xBF, 0x43,\n\t0xE7, 0xA6, 0x81, 0x43, 0xE7, 0xA6, 0x8D, 0x43,\n\t0xE7, 0xA6, 0x8E, 0x43, 0xE7, 0xA6, 0x8F, 0x43,\n\t// Bytes 1080 - 10bf\n\t0xE7, 0xA6, 0xAE, 0x43, 0xE7, 0xA6, 0xB8, 0x43,\n\t0xE7, 0xA6, 0xBE, 0x43, 0xE7, 0xA7, 0x8A, 0x43,\n\t0xE7, 0xA7, 0x98, 0x43, 0xE7, 0xA7, 0xAB, 0x43,\n\t0xE7, 0xA8, 0x9C, 0x43, 0xE7, 0xA9, 0x80, 0x43,\n\t0xE7, 0xA9, 0x8A, 0x43, 0xE7, 0xA9, 0x8F, 0x43,\n\t0xE7, 0xA9, 0xB4, 0x43, 0xE7, 0xA9, 0xBA, 0x43,\n\t0xE7, 0xAA, 0x81, 0x43, 0xE7, 0xAA, 0xB1, 0x43,\n\t0xE7, 0xAB, 0x8B, 0x43, 0xE7, 0xAB, 0xAE, 0x43,\n\t// Bytes 10c0 - 10ff\n\t0xE7, 0xAB, 0xB9, 0x43, 0xE7, 0xAC, 0xA0, 0x43,\n\t0xE7, 0xAE, 0x8F, 0x43, 0xE7, 0xAF, 0x80, 0x43,\n\t0xE7, 0xAF, 0x86, 0x43, 0xE7, 0xAF, 0x89, 0x43,\n\t0xE7, 0xB0, 0xBE, 0x43, 0xE7, 0xB1, 0xA0, 0x43,\n\t0xE7, 0xB1, 0xB3, 0x43, 0xE7, 0xB1, 0xBB, 0x43,\n\t0xE7, 0xB2, 0x92, 0x43, 0xE7, 0xB2, 0xBE, 0x43,\n\t0xE7, 0xB3, 0x92, 0x43, 0xE7, 0xB3, 0x96, 0x43,\n\t0xE7, 0xB3, 0xA3, 0x43, 0xE7, 0xB3, 0xA7, 0x43,\n\t// Bytes 1100 - 113f\n\t0xE7, 0xB3, 0xA8, 0x43, 0xE7, 0xB3, 0xB8, 0x43,\n\t0xE7, 0xB4, 0x80, 0x43, 0xE7, 0xB4, 0x90, 0x43,\n\t0xE7, 0xB4, 0xA2, 0x43, 0xE7, 0xB4, 0xAF, 0x43,\n\t0xE7, 0xB5, 0x82, 0x43, 0xE7, 0xB5, 0x9B, 0x43,\n\t0xE7, 0xB5, 0xA3, 0x43, 0xE7, 0xB6, 0xA0, 0x43,\n\t0xE7, 0xB6, 0xBE, 0x43, 0xE7, 0xB7, 0x87, 0x43,\n\t0xE7, 0xB7, 0xB4, 0x43, 0xE7, 0xB8, 0x82, 0x43,\n\t0xE7, 0xB8, 0x89, 0x43, 0xE7, 0xB8, 0xB7, 0x43,\n\t// Bytes 1140 - 117f\n\t0xE7, 0xB9, 0x81, 0x43, 0xE7, 0xB9, 0x85, 0x43,\n\t0xE7, 0xBC, 0xB6, 0x43, 0xE7, 0xBC, 0xBE, 0x43,\n\t0xE7, 0xBD, 0x91, 0x43, 0xE7, 0xBD, 0xB2, 0x43,\n\t0xE7, 0xBD, 0xB9, 0x43, 0xE7, 0xBD, 0xBA, 0x43,\n\t0xE7, 0xBE, 0x85, 0x43, 0xE7, 0xBE, 0x8A, 0x43,\n\t0xE7, 0xBE, 0x95, 0x43, 0xE7, 0xBE, 0x9A, 0x43,\n\t0xE7, 0xBE, 0xBD, 0x43, 0xE7, 0xBF, 0xBA, 0x43,\n\t0xE8, 0x80, 0x81, 0x43, 0xE8, 0x80, 0x85, 0x43,\n\t// Bytes 1180 - 11bf\n\t0xE8, 0x80, 0x8C, 0x43, 0xE8, 0x80, 0x92, 0x43,\n\t0xE8, 0x80, 0xB3, 0x43, 0xE8, 0x81, 0x86, 0x43,\n\t0xE8, 0x81, 0xA0, 0x43, 0xE8, 0x81, 0xAF, 0x43,\n\t0xE8, 0x81, 0xB0, 0x43, 0xE8, 0x81, 0xBE, 0x43,\n\t0xE8, 0x81, 0xBF, 0x43, 0xE8, 0x82, 0x89, 0x43,\n\t0xE8, 0x82, 0x8B, 0x43, 0xE8, 0x82, 0xAD, 0x43,\n\t0xE8, 0x82, 0xB2, 0x43, 0xE8, 0x84, 0x83, 0x43,\n\t0xE8, 0x84, 0xBE, 0x43, 0xE8, 0x87, 0x98, 0x43,\n\t// Bytes 11c0 - 11ff\n\t0xE8, 0x87, 0xA3, 0x43, 0xE8, 0x87, 0xA8, 0x43,\n\t0xE8, 0x87, 0xAA, 0x43, 0xE8, 0x87, 0xAD, 0x43,\n\t0xE8, 0x87, 0xB3, 0x43, 0xE8, 0x87, 0xBC, 0x43,\n\t0xE8, 0x88, 0x81, 0x43, 0xE8, 0x88, 0x84, 0x43,\n\t0xE8, 0x88, 0x8C, 0x43, 0xE8, 0x88, 0x98, 0x43,\n\t0xE8, 0x88, 0x9B, 0x43, 0xE8, 0x88, 0x9F, 0x43,\n\t0xE8, 0x89, 0xAE, 0x43, 0xE8, 0x89, 0xAF, 0x43,\n\t0xE8, 0x89, 0xB2, 0x43, 0xE8, 0x89, 0xB8, 0x43,\n\t// Bytes 1200 - 123f\n\t0xE8, 0x89, 0xB9, 0x43, 0xE8, 0x8A, 0x8B, 0x43,\n\t0xE8, 0x8A, 0x91, 0x43, 0xE8, 0x8A, 0x9D, 0x43,\n\t0xE8, 0x8A, 0xB1, 0x43, 0xE8, 0x8A, 0xB3, 0x43,\n\t0xE8, 0x8A, 0xBD, 0x43, 0xE8, 0x8B, 0xA5, 0x43,\n\t0xE8, 0x8B, 0xA6, 0x43, 0xE8, 0x8C, 0x9D, 0x43,\n\t0xE8, 0x8C, 0xA3, 0x43, 0xE8, 0x8C, 0xB6, 0x43,\n\t0xE8, 0x8D, 0x92, 0x43, 0xE8, 0x8D, 0x93, 0x43,\n\t0xE8, 0x8D, 0xA3, 0x43, 0xE8, 0x8E, 0xAD, 0x43,\n\t// Bytes 1240 - 127f\n\t0xE8, 0x8E, 0xBD, 0x43, 0xE8, 0x8F, 0x89, 0x43,\n\t0xE8, 0x8F, 0x8A, 0x43, 0xE8, 0x8F, 0x8C, 0x43,\n\t0xE8, 0x8F, 0x9C, 0x43, 0xE8, 0x8F, 0xA7, 0x43,\n\t0xE8, 0x8F, 0xAF, 0x43, 0xE8, 0x8F, 0xB1, 0x43,\n\t0xE8, 0x90, 0xBD, 0x43, 0xE8, 0x91, 0x89, 0x43,\n\t0xE8, 0x91, 0x97, 0x43, 0xE8, 0x93, 0xAE, 0x43,\n\t0xE8, 0x93, 0xB1, 0x43, 0xE8, 0x93, 0xB3, 0x43,\n\t0xE8, 0x93, 0xBC, 0x43, 0xE8, 0x94, 0x96, 0x43,\n\t// Bytes 1280 - 12bf\n\t0xE8, 0x95, 0xA4, 0x43, 0xE8, 0x97, 0x8D, 0x43,\n\t0xE8, 0x97, 0xBA, 0x43, 0xE8, 0x98, 0x86, 0x43,\n\t0xE8, 0x98, 0x92, 0x43, 0xE8, 0x98, 0xAD, 0x43,\n\t0xE8, 0x98, 0xBF, 0x43, 0xE8, 0x99, 0x8D, 0x43,\n\t0xE8, 0x99, 0x90, 0x43, 0xE8, 0x99, 0x9C, 0x43,\n\t0xE8, 0x99, 0xA7, 0x43, 0xE8, 0x99, 0xA9, 0x43,\n\t0xE8, 0x99, 0xAB, 0x43, 0xE8, 0x9A, 0x88, 0x43,\n\t0xE8, 0x9A, 0xA9, 0x43, 0xE8, 0x9B, 0xA2, 0x43,\n\t// Bytes 12c0 - 12ff\n\t0xE8, 0x9C, 0x8E, 0x43, 0xE8, 0x9C, 0xA8, 0x43,\n\t0xE8, 0x9D, 0xAB, 0x43, 0xE8, 0x9D, 0xB9, 0x43,\n\t0xE8, 0x9E, 0x86, 0x43, 0xE8, 0x9E, 0xBA, 0x43,\n\t0xE8, 0x9F, 0xA1, 0x43, 0xE8, 0xA0, 0x81, 0x43,\n\t0xE8, 0xA0, 0x9F, 0x43, 0xE8, 0xA1, 0x80, 0x43,\n\t0xE8, 0xA1, 0x8C, 0x43, 0xE8, 0xA1, 0xA0, 0x43,\n\t0xE8, 0xA1, 0xA3, 0x43, 0xE8, 0xA3, 0x82, 0x43,\n\t0xE8, 0xA3, 0x8F, 0x43, 0xE8, 0xA3, 0x97, 0x43,\n\t// Bytes 1300 - 133f\n\t0xE8, 0xA3, 0x9E, 0x43, 0xE8, 0xA3, 0xA1, 0x43,\n\t0xE8, 0xA3, 0xB8, 0x43, 0xE8, 0xA3, 0xBA, 0x43,\n\t0xE8, 0xA4, 0x90, 0x43, 0xE8, 0xA5, 0x81, 0x43,\n\t0xE8, 0xA5, 0xA4, 0x43, 0xE8, 0xA5, 0xBE, 0x43,\n\t0xE8, 0xA6, 0x86, 0x43, 0xE8, 0xA6, 0x8B, 0x43,\n\t0xE8, 0xA6, 0x96, 0x43, 0xE8, 0xA7, 0x92, 0x43,\n\t0xE8, 0xA7, 0xA3, 0x43, 0xE8, 0xA8, 0x80, 0x43,\n\t0xE8, 0xAA, 0xA0, 0x43, 0xE8, 0xAA, 0xAA, 0x43,\n\t// Bytes 1340 - 137f\n\t0xE8, 0xAA, 0xBF, 0x43, 0xE8, 0xAB, 0x8B, 0x43,\n\t0xE8, 0xAB, 0x92, 0x43, 0xE8, 0xAB, 0x96, 0x43,\n\t0xE8, 0xAB, 0xAD, 0x43, 0xE8, 0xAB, 0xB8, 0x43,\n\t0xE8, 0xAB, 0xBE, 0x43, 0xE8, 0xAC, 0x81, 0x43,\n\t0xE8, 0xAC, 0xB9, 0x43, 0xE8, 0xAD, 0x98, 0x43,\n\t0xE8, 0xAE, 0x80, 0x43, 0xE8, 0xAE, 0x8A, 0x43,\n\t0xE8, 0xB0, 0xB7, 0x43, 0xE8, 0xB1, 0x86, 0x43,\n\t0xE8, 0xB1, 0x88, 0x43, 0xE8, 0xB1, 0x95, 0x43,\n\t// Bytes 1380 - 13bf\n\t0xE8, 0xB1, 0xB8, 0x43, 0xE8, 0xB2, 0x9D, 0x43,\n\t0xE8, 0xB2, 0xA1, 0x43, 0xE8, 0xB2, 0xA9, 0x43,\n\t0xE8, 0xB2, 0xAB, 0x43, 0xE8, 0xB3, 0x81, 0x43,\n\t0xE8, 0xB3, 0x82, 0x43, 0xE8, 0xB3, 0x87, 0x43,\n\t0xE8, 0xB3, 0x88, 0x43, 0xE8, 0xB3, 0x93, 0x43,\n\t0xE8, 0xB4, 0x88, 0x43, 0xE8, 0xB4, 0x9B, 0x43,\n\t0xE8, 0xB5, 0xA4, 0x43, 0xE8, 0xB5, 0xB0, 0x43,\n\t0xE8, 0xB5, 0xB7, 0x43, 0xE8, 0xB6, 0xB3, 0x43,\n\t// Bytes 13c0 - 13ff\n\t0xE8, 0xB6, 0xBC, 0x43, 0xE8, 0xB7, 0x8B, 0x43,\n\t0xE8, 0xB7, 0xAF, 0x43, 0xE8, 0xB7, 0xB0, 0x43,\n\t0xE8, 0xBA, 0xAB, 0x43, 0xE8, 0xBB, 0x8A, 0x43,\n\t0xE8, 0xBB, 0x94, 0x43, 0xE8, 0xBC, 0xA6, 0x43,\n\t0xE8, 0xBC, 0xAA, 0x43, 0xE8, 0xBC, 0xB8, 0x43,\n\t0xE8, 0xBC, 0xBB, 0x43, 0xE8, 0xBD, 0xA2, 0x43,\n\t0xE8, 0xBE, 0x9B, 0x43, 0xE8, 0xBE, 0x9E, 0x43,\n\t0xE8, 0xBE, 0xB0, 0x43, 0xE8, 0xBE, 0xB5, 0x43,\n\t// Bytes 1400 - 143f\n\t0xE8, 0xBE, 0xB6, 0x43, 0xE9, 0x80, 0xA3, 0x43,\n\t0xE9, 0x80, 0xB8, 0x43, 0xE9, 0x81, 0x8A, 0x43,\n\t0xE9, 0x81, 0xA9, 0x43, 0xE9, 0x81, 0xB2, 0x43,\n\t0xE9, 0x81, 0xBC, 0x43, 0xE9, 0x82, 0x8F, 0x43,\n\t0xE9, 0x82, 0x91, 0x43, 0xE9, 0x82, 0x94, 0x43,\n\t0xE9, 0x83, 0x8E, 0x43, 0xE9, 0x83, 0x9E, 0x43,\n\t0xE9, 0x83, 0xB1, 0x43, 0xE9, 0x83, 0xBD, 0x43,\n\t0xE9, 0x84, 0x91, 0x43, 0xE9, 0x84, 0x9B, 0x43,\n\t// Bytes 1440 - 147f\n\t0xE9, 0x85, 0x89, 0x43, 0xE9, 0x85, 0x8D, 0x43,\n\t0xE9, 0x85, 0xAA, 0x43, 0xE9, 0x86, 0x99, 0x43,\n\t0xE9, 0x86, 0xB4, 0x43, 0xE9, 0x87, 0x86, 0x43,\n\t0xE9, 0x87, 0x8C, 0x43, 0xE9, 0x87, 0x8F, 0x43,\n\t0xE9, 0x87, 0x91, 0x43, 0xE9, 0x88, 0xB4, 0x43,\n\t0xE9, 0x88, 0xB8, 0x43, 0xE9, 0x89, 0xB6, 0x43,\n\t0xE9, 0x89, 0xBC, 0x43, 0xE9, 0x8B, 0x97, 0x43,\n\t0xE9, 0x8B, 0x98, 0x43, 0xE9, 0x8C, 0x84, 0x43,\n\t// Bytes 1480 - 14bf\n\t0xE9, 0x8D, 0x8A, 0x43, 0xE9, 0x8F, 0xB9, 0x43,\n\t0xE9, 0x90, 0x95, 0x43, 0xE9, 0x95, 0xB7, 0x43,\n\t0xE9, 0x96, 0x80, 0x43, 0xE9, 0x96, 0x8B, 0x43,\n\t0xE9, 0x96, 0xAD, 0x43, 0xE9, 0x96, 0xB7, 0x43,\n\t0xE9, 0x98, 0x9C, 0x43, 0xE9, 0x98, 0xAE, 0x43,\n\t0xE9, 0x99, 0x8B, 0x43, 0xE9, 0x99, 0x8D, 0x43,\n\t0xE9, 0x99, 0xB5, 0x43, 0xE9, 0x99, 0xB8, 0x43,\n\t0xE9, 0x99, 0xBC, 0x43, 0xE9, 0x9A, 0x86, 0x43,\n\t// Bytes 14c0 - 14ff\n\t0xE9, 0x9A, 0xA3, 0x43, 0xE9, 0x9A, 0xB6, 0x43,\n\t0xE9, 0x9A, 0xB7, 0x43, 0xE9, 0x9A, 0xB8, 0x43,\n\t0xE9, 0x9A, 0xB9, 0x43, 0xE9, 0x9B, 0x83, 0x43,\n\t0xE9, 0x9B, 0xA2, 0x43, 0xE9, 0x9B, 0xA3, 0x43,\n\t0xE9, 0x9B, 0xA8, 0x43, 0xE9, 0x9B, 0xB6, 0x43,\n\t0xE9, 0x9B, 0xB7, 0x43, 0xE9, 0x9C, 0xA3, 0x43,\n\t0xE9, 0x9C, 0xB2, 0x43, 0xE9, 0x9D, 0x88, 0x43,\n\t0xE9, 0x9D, 0x91, 0x43, 0xE9, 0x9D, 0x96, 0x43,\n\t// Bytes 1500 - 153f\n\t0xE9, 0x9D, 0x9E, 0x43, 0xE9, 0x9D, 0xA2, 0x43,\n\t0xE9, 0x9D, 0xA9, 0x43, 0xE9, 0x9F, 0x8B, 0x43,\n\t0xE9, 0x9F, 0x9B, 0x43, 0xE9, 0x9F, 0xA0, 0x43,\n\t0xE9, 0x9F, 0xAD, 0x43, 0xE9, 0x9F, 0xB3, 0x43,\n\t0xE9, 0x9F, 0xBF, 0x43, 0xE9, 0xA0, 0x81, 0x43,\n\t0xE9, 0xA0, 0x85, 0x43, 0xE9, 0xA0, 0x8B, 0x43,\n\t0xE9, 0xA0, 0x98, 0x43, 0xE9, 0xA0, 0xA9, 0x43,\n\t0xE9, 0xA0, 0xBB, 0x43, 0xE9, 0xA1, 0x9E, 0x43,\n\t// Bytes 1540 - 157f\n\t0xE9, 0xA2, 0xA8, 0x43, 0xE9, 0xA3, 0x9B, 0x43,\n\t0xE9, 0xA3, 0x9F, 0x43, 0xE9, 0xA3, 0xA2, 0x43,\n\t0xE9, 0xA3, 0xAF, 0x43, 0xE9, 0xA3, 0xBC, 0x43,\n\t0xE9, 0xA4, 0xA8, 0x43, 0xE9, 0xA4, 0xA9, 0x43,\n\t0xE9, 0xA6, 0x96, 0x43, 0xE9, 0xA6, 0x99, 0x43,\n\t0xE9, 0xA6, 0xA7, 0x43, 0xE9, 0xA6, 0xAC, 0x43,\n\t0xE9, 0xA7, 0x82, 0x43, 0xE9, 0xA7, 0xB1, 0x43,\n\t0xE9, 0xA7, 0xBE, 0x43, 0xE9, 0xA9, 0xAA, 0x43,\n\t// Bytes 1580 - 15bf\n\t0xE9, 0xAA, 0xA8, 0x43, 0xE9, 0xAB, 0x98, 0x43,\n\t0xE9, 0xAB, 0x9F, 0x43, 0xE9, 0xAC, 0x92, 0x43,\n\t0xE9, 0xAC, 0xA5, 0x43, 0xE9, 0xAC, 0xAF, 0x43,\n\t0xE9, 0xAC, 0xB2, 0x43, 0xE9, 0xAC, 0xBC, 0x43,\n\t0xE9, 0xAD, 0x9A, 0x43, 0xE9, 0xAD, 0xAF, 0x43,\n\t0xE9, 0xB1, 0x80, 0x43, 0xE9, 0xB1, 0x97, 0x43,\n\t0xE9, 0xB3, 0xA5, 0x43, 0xE9, 0xB3, 0xBD, 0x43,\n\t0xE9, 0xB5, 0xA7, 0x43, 0xE9, 0xB6, 0xB4, 0x43,\n\t// Bytes 15c0 - 15ff\n\t0xE9, 0xB7, 0xBA, 0x43, 0xE9, 0xB8, 0x9E, 0x43,\n\t0xE9, 0xB9, 0xB5, 0x43, 0xE9, 0xB9, 0xBF, 0x43,\n\t0xE9, 0xBA, 0x97, 0x43, 0xE9, 0xBA, 0x9F, 0x43,\n\t0xE9, 0xBA, 0xA5, 0x43, 0xE9, 0xBA, 0xBB, 0x43,\n\t0xE9, 0xBB, 0x83, 0x43, 0xE9, 0xBB, 0x8D, 0x43,\n\t0xE9, 0xBB, 0x8E, 0x43, 0xE9, 0xBB, 0x91, 0x43,\n\t0xE9, 0xBB, 0xB9, 0x43, 0xE9, 0xBB, 0xBD, 0x43,\n\t0xE9, 0xBB, 0xBE, 0x43, 0xE9, 0xBC, 0x85, 0x43,\n\t// Bytes 1600 - 163f\n\t0xE9, 0xBC, 0x8E, 0x43, 0xE9, 0xBC, 0x8F, 0x43,\n\t0xE9, 0xBC, 0x93, 0x43, 0xE9, 0xBC, 0x96, 0x43,\n\t0xE9, 0xBC, 0xA0, 0x43, 0xE9, 0xBC, 0xBB, 0x43,\n\t0xE9, 0xBD, 0x83, 0x43, 0xE9, 0xBD, 0x8A, 0x43,\n\t0xE9, 0xBD, 0x92, 0x43, 0xE9, 0xBE, 0x8D, 0x43,\n\t0xE9, 0xBE, 0x8E, 0x43, 0xE9, 0xBE, 0x9C, 0x43,\n\t0xE9, 0xBE, 0x9F, 0x43, 0xE9, 0xBE, 0xA0, 0x43,\n\t0xEA, 0x9C, 0xA7, 0x43, 0xEA, 0x9D, 0xAF, 0x43,\n\t// Bytes 1640 - 167f\n\t0xEA, 0xAC, 0xB7, 0x43, 0xEA, 0xAD, 0x92, 0x44,\n\t0xF0, 0xA0, 0x84, 0xA2, 0x44, 0xF0, 0xA0, 0x94,\n\t0x9C, 0x44, 0xF0, 0xA0, 0x94, 0xA5, 0x44, 0xF0,\n\t0xA0, 0x95, 0x8B, 0x44, 0xF0, 0xA0, 0x98, 0xBA,\n\t0x44, 0xF0, 0xA0, 0xA0, 0x84, 0x44, 0xF0, 0xA0,\n\t0xA3, 0x9E, 0x44, 0xF0, 0xA0, 0xA8, 0xAC, 0x44,\n\t0xF0, 0xA0, 0xAD, 0xA3, 0x44, 0xF0, 0xA1, 0x93,\n\t0xA4, 0x44, 0xF0, 0xA1, 0x9A, 0xA8, 0x44, 0xF0,\n\t// Bytes 1680 - 16bf\n\t0xA1, 0x9B, 0xAA, 0x44, 0xF0, 0xA1, 0xA7, 0x88,\n\t0x44, 0xF0, 0xA1, 0xAC, 0x98, 0x44, 0xF0, 0xA1,\n\t0xB4, 0x8B, 0x44, 0xF0, 0xA1, 0xB7, 0xA4, 0x44,\n\t0xF0, 0xA1, 0xB7, 0xA6, 0x44, 0xF0, 0xA2, 0x86,\n\t0x83, 0x44, 0xF0, 0xA2, 0x86, 0x9F, 0x44, 0xF0,\n\t0xA2, 0x8C, 0xB1, 0x44, 0xF0, 0xA2, 0x9B, 0x94,\n\t0x44, 0xF0, 0xA2, 0xA1, 0x84, 0x44, 0xF0, 0xA2,\n\t0xA1, 0x8A, 0x44, 0xF0, 0xA2, 0xAC, 0x8C, 0x44,\n\t// Bytes 16c0 - 16ff\n\t0xF0, 0xA2, 0xAF, 0xB1, 0x44, 0xF0, 0xA3, 0x80,\n\t0x8A, 0x44, 0xF0, 0xA3, 0x8A, 0xB8, 0x44, 0xF0,\n\t0xA3, 0x8D, 0x9F, 0x44, 0xF0, 0xA3, 0x8E, 0x93,\n\t0x44, 0xF0, 0xA3, 0x8E, 0x9C, 0x44, 0xF0, 0xA3,\n\t0x8F, 0x83, 0x44, 0xF0, 0xA3, 0x8F, 0x95, 0x44,\n\t0xF0, 0xA3, 0x91, 0xAD, 0x44, 0xF0, 0xA3, 0x9A,\n\t0xA3, 0x44, 0xF0, 0xA3, 0xA2, 0xA7, 0x44, 0xF0,\n\t0xA3, 0xAA, 0x8D, 0x44, 0xF0, 0xA3, 0xAB, 0xBA,\n\t// Bytes 1700 - 173f\n\t0x44, 0xF0, 0xA3, 0xB2, 0xBC, 0x44, 0xF0, 0xA3,\n\t0xB4, 0x9E, 0x44, 0xF0, 0xA3, 0xBB, 0x91, 0x44,\n\t0xF0, 0xA3, 0xBD, 0x9E, 0x44, 0xF0, 0xA3, 0xBE,\n\t0x8E, 0x44, 0xF0, 0xA4, 0x89, 0xA3, 0x44, 0xF0,\n\t0xA4, 0x8B, 0xAE, 0x44, 0xF0, 0xA4, 0x8E, 0xAB,\n\t0x44, 0xF0, 0xA4, 0x98, 0x88, 0x44, 0xF0, 0xA4,\n\t0x9C, 0xB5, 0x44, 0xF0, 0xA4, 0xA0, 0x94, 0x44,\n\t0xF0, 0xA4, 0xB0, 0xB6, 0x44, 0xF0, 0xA4, 0xB2,\n\t// Bytes 1740 - 177f\n\t0x92, 0x44, 0xF0, 0xA4, 0xBE, 0xA1, 0x44, 0xF0,\n\t0xA4, 0xBE, 0xB8, 0x44, 0xF0, 0xA5, 0x81, 0x84,\n\t0x44, 0xF0, 0xA5, 0x83, 0xB2, 0x44, 0xF0, 0xA5,\n\t0x83, 0xB3, 0x44, 0xF0, 0xA5, 0x84, 0x99, 0x44,\n\t0xF0, 0xA5, 0x84, 0xB3, 0x44, 0xF0, 0xA5, 0x89,\n\t0x89, 0x44, 0xF0, 0xA5, 0x90, 0x9D, 0x44, 0xF0,\n\t0xA5, 0x98, 0xA6, 0x44, 0xF0, 0xA5, 0x9A, 0x9A,\n\t0x44, 0xF0, 0xA5, 0x9B, 0x85, 0x44, 0xF0, 0xA5,\n\t// Bytes 1780 - 17bf\n\t0xA5, 0xBC, 0x44, 0xF0, 0xA5, 0xAA, 0xA7, 0x44,\n\t0xF0, 0xA5, 0xAE, 0xAB, 0x44, 0xF0, 0xA5, 0xB2,\n\t0x80, 0x44, 0xF0, 0xA5, 0xB3, 0x90, 0x44, 0xF0,\n\t0xA5, 0xBE, 0x86, 0x44, 0xF0, 0xA6, 0x87, 0x9A,\n\t0x44, 0xF0, 0xA6, 0x88, 0xA8, 0x44, 0xF0, 0xA6,\n\t0x89, 0x87, 0x44, 0xF0, 0xA6, 0x8B, 0x99, 0x44,\n\t0xF0, 0xA6, 0x8C, 0xBE, 0x44, 0xF0, 0xA6, 0x93,\n\t0x9A, 0x44, 0xF0, 0xA6, 0x94, 0xA3, 0x44, 0xF0,\n\t// Bytes 17c0 - 17ff\n\t0xA6, 0x96, 0xA8, 0x44, 0xF0, 0xA6, 0x9E, 0xA7,\n\t0x44, 0xF0, 0xA6, 0x9E, 0xB5, 0x44, 0xF0, 0xA6,\n\t0xAC, 0xBC, 0x44, 0xF0, 0xA6, 0xB0, 0xB6, 0x44,\n\t0xF0, 0xA6, 0xB3, 0x95, 0x44, 0xF0, 0xA6, 0xB5,\n\t0xAB, 0x44, 0xF0, 0xA6, 0xBC, 0xAC, 0x44, 0xF0,\n\t0xA6, 0xBE, 0xB1, 0x44, 0xF0, 0xA7, 0x83, 0x92,\n\t0x44, 0xF0, 0xA7, 0x8F, 0x8A, 0x44, 0xF0, 0xA7,\n\t0x99, 0xA7, 0x44, 0xF0, 0xA7, 0xA2, 0xAE, 0x44,\n\t// Bytes 1800 - 183f\n\t0xF0, 0xA7, 0xA5, 0xA6, 0x44, 0xF0, 0xA7, 0xB2,\n\t0xA8, 0x44, 0xF0, 0xA7, 0xBB, 0x93, 0x44, 0xF0,\n\t0xA7, 0xBC, 0xAF, 0x44, 0xF0, 0xA8, 0x97, 0x92,\n\t0x44, 0xF0, 0xA8, 0x97, 0xAD, 0x44, 0xF0, 0xA8,\n\t0x9C, 0xAE, 0x44, 0xF0, 0xA8, 0xAF, 0xBA, 0x44,\n\t0xF0, 0xA8, 0xB5, 0xB7, 0x44, 0xF0, 0xA9, 0x85,\n\t0x85, 0x44, 0xF0, 0xA9, 0x87, 0x9F, 0x44, 0xF0,\n\t0xA9, 0x88, 0x9A, 0x44, 0xF0, 0xA9, 0x90, 0x8A,\n\t// Bytes 1840 - 187f\n\t0x44, 0xF0, 0xA9, 0x92, 0x96, 0x44, 0xF0, 0xA9,\n\t0x96, 0xB6, 0x44, 0xF0, 0xA9, 0xAC, 0xB0, 0x44,\n\t0xF0, 0xAA, 0x83, 0x8E, 0x44, 0xF0, 0xAA, 0x84,\n\t0x85, 0x44, 0xF0, 0xAA, 0x88, 0x8E, 0x44, 0xF0,\n\t0xAA, 0x8A, 0x91, 0x44, 0xF0, 0xAA, 0x8E, 0x92,\n\t0x44, 0xF0, 0xAA, 0x98, 0x80, 0x42, 0x21, 0x21,\n\t0x42, 0x21, 0x3F, 0x42, 0x2E, 0x2E, 0x42, 0x30,\n\t0x2C, 0x42, 0x30, 0x2E, 0x42, 0x31, 0x2C, 0x42,\n\t// Bytes 1880 - 18bf\n\t0x31, 0x2E, 0x42, 0x31, 0x30, 0x42, 0x31, 0x31,\n\t0x42, 0x31, 0x32, 0x42, 0x31, 0x33, 0x42, 0x31,\n\t0x34, 0x42, 0x31, 0x35, 0x42, 0x31, 0x36, 0x42,\n\t0x31, 0x37, 0x42, 0x31, 0x38, 0x42, 0x31, 0x39,\n\t0x42, 0x32, 0x2C, 0x42, 0x32, 0x2E, 0x42, 0x32,\n\t0x30, 0x42, 0x32, 0x31, 0x42, 0x32, 0x32, 0x42,\n\t0x32, 0x33, 0x42, 0x32, 0x34, 0x42, 0x32, 0x35,\n\t0x42, 0x32, 0x36, 0x42, 0x32, 0x37, 0x42, 0x32,\n\t// Bytes 18c0 - 18ff\n\t0x38, 0x42, 0x32, 0x39, 0x42, 0x33, 0x2C, 0x42,\n\t0x33, 0x2E, 0x42, 0x33, 0x30, 0x42, 0x33, 0x31,\n\t0x42, 0x33, 0x32, 0x42, 0x33, 0x33, 0x42, 0x33,\n\t0x34, 0x42, 0x33, 0x35, 0x42, 0x33, 0x36, 0x42,\n\t0x33, 0x37, 0x42, 0x33, 0x38, 0x42, 0x33, 0x39,\n\t0x42, 0x34, 0x2C, 0x42, 0x34, 0x2E, 0x42, 0x34,\n\t0x30, 0x42, 0x34, 0x31, 0x42, 0x34, 0x32, 0x42,\n\t0x34, 0x33, 0x42, 0x34, 0x34, 0x42, 0x34, 0x35,\n\t// Bytes 1900 - 193f\n\t0x42, 0x34, 0x36, 0x42, 0x34, 0x37, 0x42, 0x34,\n\t0x38, 0x42, 0x34, 0x39, 0x42, 0x35, 0x2C, 0x42,\n\t0x35, 0x2E, 0x42, 0x35, 0x30, 0x42, 0x36, 0x2C,\n\t0x42, 0x36, 0x2E, 0x42, 0x37, 0x2C, 0x42, 0x37,\n\t0x2E, 0x42, 0x38, 0x2C, 0x42, 0x38, 0x2E, 0x42,\n\t0x39, 0x2C, 0x42, 0x39, 0x2E, 0x42, 0x3D, 0x3D,\n\t0x42, 0x3F, 0x21, 0x42, 0x3F, 0x3F, 0x42, 0x41,\n\t0x55, 0x42, 0x42, 0x71, 0x42, 0x43, 0x44, 0x42,\n\t// Bytes 1940 - 197f\n\t0x44, 0x4A, 0x42, 0x44, 0x5A, 0x42, 0x44, 0x7A,\n\t0x42, 0x47, 0x42, 0x42, 0x47, 0x79, 0x42, 0x48,\n\t0x50, 0x42, 0x48, 0x56, 0x42, 0x48, 0x67, 0x42,\n\t0x48, 0x7A, 0x42, 0x49, 0x49, 0x42, 0x49, 0x4A,\n\t0x42, 0x49, 0x55, 0x42, 0x49, 0x56, 0x42, 0x49,\n\t0x58, 0x42, 0x4B, 0x42, 0x42, 0x4B, 0x4B, 0x42,\n\t0x4B, 0x4D, 0x42, 0x4C, 0x4A, 0x42, 0x4C, 0x6A,\n\t0x42, 0x4D, 0x42, 0x42, 0x4D, 0x43, 0x42, 0x4D,\n\t// Bytes 1980 - 19bf\n\t0x44, 0x42, 0x4D, 0x56, 0x42, 0x4D, 0x57, 0x42,\n\t0x4E, 0x4A, 0x42, 0x4E, 0x6A, 0x42, 0x4E, 0x6F,\n\t0x42, 0x50, 0x48, 0x42, 0x50, 0x52, 0x42, 0x50,\n\t0x61, 0x42, 0x52, 0x73, 0x42, 0x53, 0x44, 0x42,\n\t0x53, 0x4D, 0x42, 0x53, 0x53, 0x42, 0x53, 0x76,\n\t0x42, 0x54, 0x4D, 0x42, 0x56, 0x49, 0x42, 0x57,\n\t0x43, 0x42, 0x57, 0x5A, 0x42, 0x57, 0x62, 0x42,\n\t0x58, 0x49, 0x42, 0x63, 0x63, 0x42, 0x63, 0x64,\n\t// Bytes 19c0 - 19ff\n\t0x42, 0x63, 0x6D, 0x42, 0x64, 0x42, 0x42, 0x64,\n\t0x61, 0x42, 0x64, 0x6C, 0x42, 0x64, 0x6D, 0x42,\n\t0x64, 0x7A, 0x42, 0x65, 0x56, 0x42, 0x66, 0x66,\n\t0x42, 0x66, 0x69, 0x42, 0x66, 0x6C, 0x42, 0x66,\n\t0x6D, 0x42, 0x68, 0x61, 0x42, 0x69, 0x69, 0x42,\n\t0x69, 0x6A, 0x42, 0x69, 0x6E, 0x42, 0x69, 0x76,\n\t0x42, 0x69, 0x78, 0x42, 0x6B, 0x41, 0x42, 0x6B,\n\t0x56, 0x42, 0x6B, 0x57, 0x42, 0x6B, 0x67, 0x42,\n\t// Bytes 1a00 - 1a3f\n\t0x6B, 0x6C, 0x42, 0x6B, 0x6D, 0x42, 0x6B, 0x74,\n\t0x42, 0x6C, 0x6A, 0x42, 0x6C, 0x6D, 0x42, 0x6C,\n\t0x6E, 0x42, 0x6C, 0x78, 0x42, 0x6D, 0x32, 0x42,\n\t0x6D, 0x33, 0x42, 0x6D, 0x41, 0x42, 0x6D, 0x56,\n\t0x42, 0x6D, 0x57, 0x42, 0x6D, 0x62, 0x42, 0x6D,\n\t0x67, 0x42, 0x6D, 0x6C, 0x42, 0x6D, 0x6D, 0x42,\n\t0x6D, 0x73, 0x42, 0x6E, 0x41, 0x42, 0x6E, 0x46,\n\t0x42, 0x6E, 0x56, 0x42, 0x6E, 0x57, 0x42, 0x6E,\n\t// Bytes 1a40 - 1a7f\n\t0x6A, 0x42, 0x6E, 0x6D, 0x42, 0x6E, 0x73, 0x42,\n\t0x6F, 0x56, 0x42, 0x70, 0x41, 0x42, 0x70, 0x46,\n\t0x42, 0x70, 0x56, 0x42, 0x70, 0x57, 0x42, 0x70,\n\t0x63, 0x42, 0x70, 0x73, 0x42, 0x73, 0x72, 0x42,\n\t0x73, 0x74, 0x42, 0x76, 0x69, 0x42, 0x78, 0x69,\n\t0x43, 0x28, 0x31, 0x29, 0x43, 0x28, 0x32, 0x29,\n\t0x43, 0x28, 0x33, 0x29, 0x43, 0x28, 0x34, 0x29,\n\t0x43, 0x28, 0x35, 0x29, 0x43, 0x28, 0x36, 0x29,\n\t// Bytes 1a80 - 1abf\n\t0x43, 0x28, 0x37, 0x29, 0x43, 0x28, 0x38, 0x29,\n\t0x43, 0x28, 0x39, 0x29, 0x43, 0x28, 0x41, 0x29,\n\t0x43, 0x28, 0x42, 0x29, 0x43, 0x28, 0x43, 0x29,\n\t0x43, 0x28, 0x44, 0x29, 0x43, 0x28, 0x45, 0x29,\n\t0x43, 0x28, 0x46, 0x29, 0x43, 0x28, 0x47, 0x29,\n\t0x43, 0x28, 0x48, 0x29, 0x43, 0x28, 0x49, 0x29,\n\t0x43, 0x28, 0x4A, 0x29, 0x43, 0x28, 0x4B, 0x29,\n\t0x43, 0x28, 0x4C, 0x29, 0x43, 0x28, 0x4D, 0x29,\n\t// Bytes 1ac0 - 1aff\n\t0x43, 0x28, 0x4E, 0x29, 0x43, 0x28, 0x4F, 0x29,\n\t0x43, 0x28, 0x50, 0x29, 0x43, 0x28, 0x51, 0x29,\n\t0x43, 0x28, 0x52, 0x29, 0x43, 0x28, 0x53, 0x29,\n\t0x43, 0x28, 0x54, 0x29, 0x43, 0x28, 0x55, 0x29,\n\t0x43, 0x28, 0x56, 0x29, 0x43, 0x28, 0x57, 0x29,\n\t0x43, 0x28, 0x58, 0x29, 0x43, 0x28, 0x59, 0x29,\n\t0x43, 0x28, 0x5A, 0x29, 0x43, 0x28, 0x61, 0x29,\n\t0x43, 0x28, 0x62, 0x29, 0x43, 0x28, 0x63, 0x29,\n\t// Bytes 1b00 - 1b3f\n\t0x43, 0x28, 0x64, 0x29, 0x43, 0x28, 0x65, 0x29,\n\t0x43, 0x28, 0x66, 0x29, 0x43, 0x28, 0x67, 0x29,\n\t0x43, 0x28, 0x68, 0x29, 0x43, 0x28, 0x69, 0x29,\n\t0x43, 0x28, 0x6A, 0x29, 0x43, 0x28, 0x6B, 0x29,\n\t0x43, 0x28, 0x6C, 0x29, 0x43, 0x28, 0x6D, 0x29,\n\t0x43, 0x28, 0x6E, 0x29, 0x43, 0x28, 0x6F, 0x29,\n\t0x43, 0x28, 0x70, 0x29, 0x43, 0x28, 0x71, 0x29,\n\t0x43, 0x28, 0x72, 0x29, 0x43, 0x28, 0x73, 0x29,\n\t// Bytes 1b40 - 1b7f\n\t0x43, 0x28, 0x74, 0x29, 0x43, 0x28, 0x75, 0x29,\n\t0x43, 0x28, 0x76, 0x29, 0x43, 0x28, 0x77, 0x29,\n\t0x43, 0x28, 0x78, 0x29, 0x43, 0x28, 0x79, 0x29,\n\t0x43, 0x28, 0x7A, 0x29, 0x43, 0x2E, 0x2E, 0x2E,\n\t0x43, 0x31, 0x30, 0x2E, 0x43, 0x31, 0x31, 0x2E,\n\t0x43, 0x31, 0x32, 0x2E, 0x43, 0x31, 0x33, 0x2E,\n\t0x43, 0x31, 0x34, 0x2E, 0x43, 0x31, 0x35, 0x2E,\n\t0x43, 0x31, 0x36, 0x2E, 0x43, 0x31, 0x37, 0x2E,\n\t// Bytes 1b80 - 1bbf\n\t0x43, 0x31, 0x38, 0x2E, 0x43, 0x31, 0x39, 0x2E,\n\t0x43, 0x32, 0x30, 0x2E, 0x43, 0x3A, 0x3A, 0x3D,\n\t0x43, 0x3D, 0x3D, 0x3D, 0x43, 0x43, 0x6F, 0x2E,\n\t0x43, 0x46, 0x41, 0x58, 0x43, 0x47, 0x48, 0x7A,\n\t0x43, 0x47, 0x50, 0x61, 0x43, 0x49, 0x49, 0x49,\n\t0x43, 0x4C, 0x54, 0x44, 0x43, 0x4C, 0xC2, 0xB7,\n\t0x43, 0x4D, 0x48, 0x7A, 0x43, 0x4D, 0x50, 0x61,\n\t0x43, 0x4D, 0xCE, 0xA9, 0x43, 0x50, 0x50, 0x4D,\n\t// Bytes 1bc0 - 1bff\n\t0x43, 0x50, 0x50, 0x56, 0x43, 0x50, 0x54, 0x45,\n\t0x43, 0x54, 0x45, 0x4C, 0x43, 0x54, 0x48, 0x7A,\n\t0x43, 0x56, 0x49, 0x49, 0x43, 0x58, 0x49, 0x49,\n\t0x43, 0x61, 0x2F, 0x63, 0x43, 0x61, 0x2F, 0x73,\n\t0x43, 0x61, 0xCA, 0xBE, 0x43, 0x62, 0x61, 0x72,\n\t0x43, 0x63, 0x2F, 0x6F, 0x43, 0x63, 0x2F, 0x75,\n\t0x43, 0x63, 0x61, 0x6C, 0x43, 0x63, 0x6D, 0x32,\n\t0x43, 0x63, 0x6D, 0x33, 0x43, 0x64, 0x6D, 0x32,\n\t// Bytes 1c00 - 1c3f\n\t0x43, 0x64, 0x6D, 0x33, 0x43, 0x65, 0x72, 0x67,\n\t0x43, 0x66, 0x66, 0x69, 0x43, 0x66, 0x66, 0x6C,\n\t0x43, 0x67, 0x61, 0x6C, 0x43, 0x68, 0x50, 0x61,\n\t0x43, 0x69, 0x69, 0x69, 0x43, 0x6B, 0x48, 0x7A,\n\t0x43, 0x6B, 0x50, 0x61, 0x43, 0x6B, 0x6D, 0x32,\n\t0x43, 0x6B, 0x6D, 0x33, 0x43, 0x6B, 0xCE, 0xA9,\n\t0x43, 0x6C, 0x6F, 0x67, 0x43, 0x6C, 0xC2, 0xB7,\n\t0x43, 0x6D, 0x69, 0x6C, 0x43, 0x6D, 0x6D, 0x32,\n\t// Bytes 1c40 - 1c7f\n\t0x43, 0x6D, 0x6D, 0x33, 0x43, 0x6D, 0x6F, 0x6C,\n\t0x43, 0x72, 0x61, 0x64, 0x43, 0x76, 0x69, 0x69,\n\t0x43, 0x78, 0x69, 0x69, 0x43, 0xC2, 0xB0, 0x43,\n\t0x43, 0xC2, 0xB0, 0x46, 0x43, 0xCA, 0xBC, 0x6E,\n\t0x43, 0xCE, 0xBC, 0x41, 0x43, 0xCE, 0xBC, 0x46,\n\t0x43, 0xCE, 0xBC, 0x56, 0x43, 0xCE, 0xBC, 0x57,\n\t0x43, 0xCE, 0xBC, 0x67, 0x43, 0xCE, 0xBC, 0x6C,\n\t0x43, 0xCE, 0xBC, 0x6D, 0x43, 0xCE, 0xBC, 0x73,\n\t// Bytes 1c80 - 1cbf\n\t0x44, 0x28, 0x31, 0x30, 0x29, 0x44, 0x28, 0x31,\n\t0x31, 0x29, 0x44, 0x28, 0x31, 0x32, 0x29, 0x44,\n\t0x28, 0x31, 0x33, 0x29, 0x44, 0x28, 0x31, 0x34,\n\t0x29, 0x44, 0x28, 0x31, 0x35, 0x29, 0x44, 0x28,\n\t0x31, 0x36, 0x29, 0x44, 0x28, 0x31, 0x37, 0x29,\n\t0x44, 0x28, 0x31, 0x38, 0x29, 0x44, 0x28, 0x31,\n\t0x39, 0x29, 0x44, 0x28, 0x32, 0x30, 0x29, 0x44,\n\t0x30, 0xE7, 0x82, 0xB9, 0x44, 0x31, 0xE2, 0x81,\n\t// Bytes 1cc0 - 1cff\n\t0x84, 0x44, 0x31, 0xE6, 0x97, 0xA5, 0x44, 0x31,\n\t0xE6, 0x9C, 0x88, 0x44, 0x31, 0xE7, 0x82, 0xB9,\n\t0x44, 0x32, 0xE6, 0x97, 0xA5, 0x44, 0x32, 0xE6,\n\t0x9C, 0x88, 0x44, 0x32, 0xE7, 0x82, 0xB9, 0x44,\n\t0x33, 0xE6, 0x97, 0xA5, 0x44, 0x33, 0xE6, 0x9C,\n\t0x88, 0x44, 0x33, 0xE7, 0x82, 0xB9, 0x44, 0x34,\n\t0xE6, 0x97, 0xA5, 0x44, 0x34, 0xE6, 0x9C, 0x88,\n\t0x44, 0x34, 0xE7, 0x82, 0xB9, 0x44, 0x35, 0xE6,\n\t// Bytes 1d00 - 1d3f\n\t0x97, 0xA5, 0x44, 0x35, 0xE6, 0x9C, 0x88, 0x44,\n\t0x35, 0xE7, 0x82, 0xB9, 0x44, 0x36, 0xE6, 0x97,\n\t0xA5, 0x44, 0x36, 0xE6, 0x9C, 0x88, 0x44, 0x36,\n\t0xE7, 0x82, 0xB9, 0x44, 0x37, 0xE6, 0x97, 0xA5,\n\t0x44, 0x37, 0xE6, 0x9C, 0x88, 0x44, 0x37, 0xE7,\n\t0x82, 0xB9, 0x44, 0x38, 0xE6, 0x97, 0xA5, 0x44,\n\t0x38, 0xE6, 0x9C, 0x88, 0x44, 0x38, 0xE7, 0x82,\n\t0xB9, 0x44, 0x39, 0xE6, 0x97, 0xA5, 0x44, 0x39,\n\t// Bytes 1d40 - 1d7f\n\t0xE6, 0x9C, 0x88, 0x44, 0x39, 0xE7, 0x82, 0xB9,\n\t0x44, 0x56, 0x49, 0x49, 0x49, 0x44, 0x61, 0x2E,\n\t0x6D, 0x2E, 0x44, 0x6B, 0x63, 0x61, 0x6C, 0x44,\n\t0x70, 0x2E, 0x6D, 0x2E, 0x44, 0x76, 0x69, 0x69,\n\t0x69, 0x44, 0xD5, 0xA5, 0xD6, 0x82, 0x44, 0xD5,\n\t0xB4, 0xD5, 0xA5, 0x44, 0xD5, 0xB4, 0xD5, 0xAB,\n\t0x44, 0xD5, 0xB4, 0xD5, 0xAD, 0x44, 0xD5, 0xB4,\n\t0xD5, 0xB6, 0x44, 0xD5, 0xBE, 0xD5, 0xB6, 0x44,\n\t// Bytes 1d80 - 1dbf\n\t0xD7, 0x90, 0xD7, 0x9C, 0x44, 0xD8, 0xA7, 0xD9,\n\t0xB4, 0x44, 0xD8, 0xA8, 0xD8, 0xAC, 0x44, 0xD8,\n\t0xA8, 0xD8, 0xAD, 0x44, 0xD8, 0xA8, 0xD8, 0xAE,\n\t0x44, 0xD8, 0xA8, 0xD8, 0xB1, 0x44, 0xD8, 0xA8,\n\t0xD8, 0xB2, 0x44, 0xD8, 0xA8, 0xD9, 0x85, 0x44,\n\t0xD8, 0xA8, 0xD9, 0x86, 0x44, 0xD8, 0xA8, 0xD9,\n\t0x87, 0x44, 0xD8, 0xA8, 0xD9, 0x89, 0x44, 0xD8,\n\t0xA8, 0xD9, 0x8A, 0x44, 0xD8, 0xAA, 0xD8, 0xAC,\n\t// Bytes 1dc0 - 1dff\n\t0x44, 0xD8, 0xAA, 0xD8, 0xAD, 0x44, 0xD8, 0xAA,\n\t0xD8, 0xAE, 0x44, 0xD8, 0xAA, 0xD8, 0xB1, 0x44,\n\t0xD8, 0xAA, 0xD8, 0xB2, 0x44, 0xD8, 0xAA, 0xD9,\n\t0x85, 0x44, 0xD8, 0xAA, 0xD9, 0x86, 0x44, 0xD8,\n\t0xAA, 0xD9, 0x87, 0x44, 0xD8, 0xAA, 0xD9, 0x89,\n\t0x44, 0xD8, 0xAA, 0xD9, 0x8A, 0x44, 0xD8, 0xAB,\n\t0xD8, 0xAC, 0x44, 0xD8, 0xAB, 0xD8, 0xB1, 0x44,\n\t0xD8, 0xAB, 0xD8, 0xB2, 0x44, 0xD8, 0xAB, 0xD9,\n\t// Bytes 1e00 - 1e3f\n\t0x85, 0x44, 0xD8, 0xAB, 0xD9, 0x86, 0x44, 0xD8,\n\t0xAB, 0xD9, 0x87, 0x44, 0xD8, 0xAB, 0xD9, 0x89,\n\t0x44, 0xD8, 0xAB, 0xD9, 0x8A, 0x44, 0xD8, 0xAC,\n\t0xD8, 0xAD, 0x44, 0xD8, 0xAC, 0xD9, 0x85, 0x44,\n\t0xD8, 0xAC, 0xD9, 0x89, 0x44, 0xD8, 0xAC, 0xD9,\n\t0x8A, 0x44, 0xD8, 0xAD, 0xD8, 0xAC, 0x44, 0xD8,\n\t0xAD, 0xD9, 0x85, 0x44, 0xD8, 0xAD, 0xD9, 0x89,\n\t0x44, 0xD8, 0xAD, 0xD9, 0x8A, 0x44, 0xD8, 0xAE,\n\t// Bytes 1e40 - 1e7f\n\t0xD8, 0xAC, 0x44, 0xD8, 0xAE, 0xD8, 0xAD, 0x44,\n\t0xD8, 0xAE, 0xD9, 0x85, 0x44, 0xD8, 0xAE, 0xD9,\n\t0x89, 0x44, 0xD8, 0xAE, 0xD9, 0x8A, 0x44, 0xD8,\n\t0xB3, 0xD8, 0xAC, 0x44, 0xD8, 0xB3, 0xD8, 0xAD,\n\t0x44, 0xD8, 0xB3, 0xD8, 0xAE, 0x44, 0xD8, 0xB3,\n\t0xD8, 0xB1, 0x44, 0xD8, 0xB3, 0xD9, 0x85, 0x44,\n\t0xD8, 0xB3, 0xD9, 0x87, 0x44, 0xD8, 0xB3, 0xD9,\n\t0x89, 0x44, 0xD8, 0xB3, 0xD9, 0x8A, 0x44, 0xD8,\n\t// Bytes 1e80 - 1ebf\n\t0xB4, 0xD8, 0xAC, 0x44, 0xD8, 0xB4, 0xD8, 0xAD,\n\t0x44, 0xD8, 0xB4, 0xD8, 0xAE, 0x44, 0xD8, 0xB4,\n\t0xD8, 0xB1, 0x44, 0xD8, 0xB4, 0xD9, 0x85, 0x44,\n\t0xD8, 0xB4, 0xD9, 0x87, 0x44, 0xD8, 0xB4, 0xD9,\n\t0x89, 0x44, 0xD8, 0xB4, 0xD9, 0x8A, 0x44, 0xD8,\n\t0xB5, 0xD8, 0xAD, 0x44, 0xD8, 0xB5, 0xD8, 0xAE,\n\t0x44, 0xD8, 0xB5, 0xD8, 0xB1, 0x44, 0xD8, 0xB5,\n\t0xD9, 0x85, 0x44, 0xD8, 0xB5, 0xD9, 0x89, 0x44,\n\t// Bytes 1ec0 - 1eff\n\t0xD8, 0xB5, 0xD9, 0x8A, 0x44, 0xD8, 0xB6, 0xD8,\n\t0xAC, 0x44, 0xD8, 0xB6, 0xD8, 0xAD, 0x44, 0xD8,\n\t0xB6, 0xD8, 0xAE, 0x44, 0xD8, 0xB6, 0xD8, 0xB1,\n\t0x44, 0xD8, 0xB6, 0xD9, 0x85, 0x44, 0xD8, 0xB6,\n\t0xD9, 0x89, 0x44, 0xD8, 0xB6, 0xD9, 0x8A, 0x44,\n\t0xD8, 0xB7, 0xD8, 0xAD, 0x44, 0xD8, 0xB7, 0xD9,\n\t0x85, 0x44, 0xD8, 0xB7, 0xD9, 0x89, 0x44, 0xD8,\n\t0xB7, 0xD9, 0x8A, 0x44, 0xD8, 0xB8, 0xD9, 0x85,\n\t// Bytes 1f00 - 1f3f\n\t0x44, 0xD8, 0xB9, 0xD8, 0xAC, 0x44, 0xD8, 0xB9,\n\t0xD9, 0x85, 0x44, 0xD8, 0xB9, 0xD9, 0x89, 0x44,\n\t0xD8, 0xB9, 0xD9, 0x8A, 0x44, 0xD8, 0xBA, 0xD8,\n\t0xAC, 0x44, 0xD8, 0xBA, 0xD9, 0x85, 0x44, 0xD8,\n\t0xBA, 0xD9, 0x89, 0x44, 0xD8, 0xBA, 0xD9, 0x8A,\n\t0x44, 0xD9, 0x81, 0xD8, 0xAC, 0x44, 0xD9, 0x81,\n\t0xD8, 0xAD, 0x44, 0xD9, 0x81, 0xD8, 0xAE, 0x44,\n\t0xD9, 0x81, 0xD9, 0x85, 0x44, 0xD9, 0x81, 0xD9,\n\t// Bytes 1f40 - 1f7f\n\t0x89, 0x44, 0xD9, 0x81, 0xD9, 0x8A, 0x44, 0xD9,\n\t0x82, 0xD8, 0xAD, 0x44, 0xD9, 0x82, 0xD9, 0x85,\n\t0x44, 0xD9, 0x82, 0xD9, 0x89, 0x44, 0xD9, 0x82,\n\t0xD9, 0x8A, 0x44, 0xD9, 0x83, 0xD8, 0xA7, 0x44,\n\t0xD9, 0x83, 0xD8, 0xAC, 0x44, 0xD9, 0x83, 0xD8,\n\t0xAD, 0x44, 0xD9, 0x83, 0xD8, 0xAE, 0x44, 0xD9,\n\t0x83, 0xD9, 0x84, 0x44, 0xD9, 0x83, 0xD9, 0x85,\n\t0x44, 0xD9, 0x83, 0xD9, 0x89, 0x44, 0xD9, 0x83,\n\t// Bytes 1f80 - 1fbf\n\t0xD9, 0x8A, 0x44, 0xD9, 0x84, 0xD8, 0xA7, 0x44,\n\t0xD9, 0x84, 0xD8, 0xAC, 0x44, 0xD9, 0x84, 0xD8,\n\t0xAD, 0x44, 0xD9, 0x84, 0xD8, 0xAE, 0x44, 0xD9,\n\t0x84, 0xD9, 0x85, 0x44, 0xD9, 0x84, 0xD9, 0x87,\n\t0x44, 0xD9, 0x84, 0xD9, 0x89, 0x44, 0xD9, 0x84,\n\t0xD9, 0x8A, 0x44, 0xD9, 0x85, 0xD8, 0xA7, 0x44,\n\t0xD9, 0x85, 0xD8, 0xAC, 0x44, 0xD9, 0x85, 0xD8,\n\t0xAD, 0x44, 0xD9, 0x85, 0xD8, 0xAE, 0x44, 0xD9,\n\t// Bytes 1fc0 - 1fff\n\t0x85, 0xD9, 0x85, 0x44, 0xD9, 0x85, 0xD9, 0x89,\n\t0x44, 0xD9, 0x85, 0xD9, 0x8A, 0x44, 0xD9, 0x86,\n\t0xD8, 0xAC, 0x44, 0xD9, 0x86, 0xD8, 0xAD, 0x44,\n\t0xD9, 0x86, 0xD8, 0xAE, 0x44, 0xD9, 0x86, 0xD8,\n\t0xB1, 0x44, 0xD9, 0x86, 0xD8, 0xB2, 0x44, 0xD9,\n\t0x86, 0xD9, 0x85, 0x44, 0xD9, 0x86, 0xD9, 0x86,\n\t0x44, 0xD9, 0x86, 0xD9, 0x87, 0x44, 0xD9, 0x86,\n\t0xD9, 0x89, 0x44, 0xD9, 0x86, 0xD9, 0x8A, 0x44,\n\t// Bytes 2000 - 203f\n\t0xD9, 0x87, 0xD8, 0xAC, 0x44, 0xD9, 0x87, 0xD9,\n\t0x85, 0x44, 0xD9, 0x87, 0xD9, 0x89, 0x44, 0xD9,\n\t0x87, 0xD9, 0x8A, 0x44, 0xD9, 0x88, 0xD9, 0xB4,\n\t0x44, 0xD9, 0x8A, 0xD8, 0xAC, 0x44, 0xD9, 0x8A,\n\t0xD8, 0xAD, 0x44, 0xD9, 0x8A, 0xD8, 0xAE, 0x44,\n\t0xD9, 0x8A, 0xD8, 0xB1, 0x44, 0xD9, 0x8A, 0xD8,\n\t0xB2, 0x44, 0xD9, 0x8A, 0xD9, 0x85, 0x44, 0xD9,\n\t0x8A, 0xD9, 0x86, 0x44, 0xD9, 0x8A, 0xD9, 0x87,\n\t// Bytes 2040 - 207f\n\t0x44, 0xD9, 0x8A, 0xD9, 0x89, 0x44, 0xD9, 0x8A,\n\t0xD9, 0x8A, 0x44, 0xD9, 0x8A, 0xD9, 0xB4, 0x44,\n\t0xDB, 0x87, 0xD9, 0xB4, 0x45, 0x28, 0xE1, 0x84,\n\t0x80, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x82, 0x29,\n\t0x45, 0x28, 0xE1, 0x84, 0x83, 0x29, 0x45, 0x28,\n\t0xE1, 0x84, 0x85, 0x29, 0x45, 0x28, 0xE1, 0x84,\n\t0x86, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x87, 0x29,\n\t0x45, 0x28, 0xE1, 0x84, 0x89, 0x29, 0x45, 0x28,\n\t// Bytes 2080 - 20bf\n\t0xE1, 0x84, 0x8B, 0x29, 0x45, 0x28, 0xE1, 0x84,\n\t0x8C, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x8E, 0x29,\n\t0x45, 0x28, 0xE1, 0x84, 0x8F, 0x29, 0x45, 0x28,\n\t0xE1, 0x84, 0x90, 0x29, 0x45, 0x28, 0xE1, 0x84,\n\t0x91, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x92, 0x29,\n\t0x45, 0x28, 0xE4, 0xB8, 0x80, 0x29, 0x45, 0x28,\n\t0xE4, 0xB8, 0x83, 0x29, 0x45, 0x28, 0xE4, 0xB8,\n\t0x89, 0x29, 0x45, 0x28, 0xE4, 0xB9, 0x9D, 0x29,\n\t// Bytes 20c0 - 20ff\n\t0x45, 0x28, 0xE4, 0xBA, 0x8C, 0x29, 0x45, 0x28,\n\t0xE4, 0xBA, 0x94, 0x29, 0x45, 0x28, 0xE4, 0xBB,\n\t0xA3, 0x29, 0x45, 0x28, 0xE4, 0xBC, 0x81, 0x29,\n\t0x45, 0x28, 0xE4, 0xBC, 0x91, 0x29, 0x45, 0x28,\n\t0xE5, 0x85, 0xAB, 0x29, 0x45, 0x28, 0xE5, 0x85,\n\t0xAD, 0x29, 0x45, 0x28, 0xE5, 0x8A, 0xB4, 0x29,\n\t0x45, 0x28, 0xE5, 0x8D, 0x81, 0x29, 0x45, 0x28,\n\t0xE5, 0x8D, 0x94, 0x29, 0x45, 0x28, 0xE5, 0x90,\n\t// Bytes 2100 - 213f\n\t0x8D, 0x29, 0x45, 0x28, 0xE5, 0x91, 0xBC, 0x29,\n\t0x45, 0x28, 0xE5, 0x9B, 0x9B, 0x29, 0x45, 0x28,\n\t0xE5, 0x9C, 0x9F, 0x29, 0x45, 0x28, 0xE5, 0xAD,\n\t0xA6, 0x29, 0x45, 0x28, 0xE6, 0x97, 0xA5, 0x29,\n\t0x45, 0x28, 0xE6, 0x9C, 0x88, 0x29, 0x45, 0x28,\n\t0xE6, 0x9C, 0x89, 0x29, 0x45, 0x28, 0xE6, 0x9C,\n\t0xA8, 0x29, 0x45, 0x28, 0xE6, 0xA0, 0xAA, 0x29,\n\t0x45, 0x28, 0xE6, 0xB0, 0xB4, 0x29, 0x45, 0x28,\n\t// Bytes 2140 - 217f\n\t0xE7, 0x81, 0xAB, 0x29, 0x45, 0x28, 0xE7, 0x89,\n\t0xB9, 0x29, 0x45, 0x28, 0xE7, 0x9B, 0xA3, 0x29,\n\t0x45, 0x28, 0xE7, 0xA4, 0xBE, 0x29, 0x45, 0x28,\n\t0xE7, 0xA5, 0x9D, 0x29, 0x45, 0x28, 0xE7, 0xA5,\n\t0xAD, 0x29, 0x45, 0x28, 0xE8, 0x87, 0xAA, 0x29,\n\t0x45, 0x28, 0xE8, 0x87, 0xB3, 0x29, 0x45, 0x28,\n\t0xE8, 0xB2, 0xA1, 0x29, 0x45, 0x28, 0xE8, 0xB3,\n\t0x87, 0x29, 0x45, 0x28, 0xE9, 0x87, 0x91, 0x29,\n\t// Bytes 2180 - 21bf\n\t0x45, 0x30, 0xE2, 0x81, 0x84, 0x33, 0x45, 0x31,\n\t0x30, 0xE6, 0x97, 0xA5, 0x45, 0x31, 0x30, 0xE6,\n\t0x9C, 0x88, 0x45, 0x31, 0x30, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x31, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t0x31, 0xE6, 0x9C, 0x88, 0x45, 0x31, 0x31, 0xE7,\n\t0x82, 0xB9, 0x45, 0x31, 0x32, 0xE6, 0x97, 0xA5,\n\t0x45, 0x31, 0x32, 0xE6, 0x9C, 0x88, 0x45, 0x31,\n\t0x32, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x33, 0xE6,\n\t// Bytes 21c0 - 21ff\n\t0x97, 0xA5, 0x45, 0x31, 0x33, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x34, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t0x34, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x35, 0xE6,\n\t0x97, 0xA5, 0x45, 0x31, 0x35, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x36, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t0x36, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x37, 0xE6,\n\t0x97, 0xA5, 0x45, 0x31, 0x37, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x38, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t// Bytes 2200 - 223f\n\t0x38, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x39, 0xE6,\n\t0x97, 0xA5, 0x45, 0x31, 0x39, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0xE2, 0x81, 0x84, 0x32, 0x45, 0x31,\n\t0xE2, 0x81, 0x84, 0x33, 0x45, 0x31, 0xE2, 0x81,\n\t0x84, 0x34, 0x45, 0x31, 0xE2, 0x81, 0x84, 0x35,\n\t0x45, 0x31, 0xE2, 0x81, 0x84, 0x36, 0x45, 0x31,\n\t0xE2, 0x81, 0x84, 0x37, 0x45, 0x31, 0xE2, 0x81,\n\t0x84, 0x38, 0x45, 0x31, 0xE2, 0x81, 0x84, 0x39,\n\t// Bytes 2240 - 227f\n\t0x45, 0x32, 0x30, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x30, 0xE7, 0x82, 0xB9, 0x45, 0x32, 0x31, 0xE6,\n\t0x97, 0xA5, 0x45, 0x32, 0x31, 0xE7, 0x82, 0xB9,\n\t0x45, 0x32, 0x32, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x32, 0xE7, 0x82, 0xB9, 0x45, 0x32, 0x33, 0xE6,\n\t0x97, 0xA5, 0x45, 0x32, 0x33, 0xE7, 0x82, 0xB9,\n\t0x45, 0x32, 0x34, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x34, 0xE7, 0x82, 0xB9, 0x45, 0x32, 0x35, 0xE6,\n\t// Bytes 2280 - 22bf\n\t0x97, 0xA5, 0x45, 0x32, 0x36, 0xE6, 0x97, 0xA5,\n\t0x45, 0x32, 0x37, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x38, 0xE6, 0x97, 0xA5, 0x45, 0x32, 0x39, 0xE6,\n\t0x97, 0xA5, 0x45, 0x32, 0xE2, 0x81, 0x84, 0x33,\n\t0x45, 0x32, 0xE2, 0x81, 0x84, 0x35, 0x45, 0x33,\n\t0x30, 0xE6, 0x97, 0xA5, 0x45, 0x33, 0x31, 0xE6,\n\t0x97, 0xA5, 0x45, 0x33, 0xE2, 0x81, 0x84, 0x34,\n\t0x45, 0x33, 0xE2, 0x81, 0x84, 0x35, 0x45, 0x33,\n\t// Bytes 22c0 - 22ff\n\t0xE2, 0x81, 0x84, 0x38, 0x45, 0x34, 0xE2, 0x81,\n\t0x84, 0x35, 0x45, 0x35, 0xE2, 0x81, 0x84, 0x36,\n\t0x45, 0x35, 0xE2, 0x81, 0x84, 0x38, 0x45, 0x37,\n\t0xE2, 0x81, 0x84, 0x38, 0x45, 0x41, 0xE2, 0x88,\n\t0x95, 0x6D, 0x45, 0x56, 0xE2, 0x88, 0x95, 0x6D,\n\t0x45, 0x6D, 0xE2, 0x88, 0x95, 0x73, 0x46, 0x31,\n\t0xE2, 0x81, 0x84, 0x31, 0x30, 0x46, 0x43, 0xE2,\n\t0x88, 0x95, 0x6B, 0x67, 0x46, 0x6D, 0xE2, 0x88,\n\t// Bytes 2300 - 233f\n\t0x95, 0x73, 0x32, 0x46, 0xD8, 0xA8, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD8, 0xA8, 0xD8, 0xAE, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xAA, 0xD8, 0xAC, 0xD9, 0x85,\n\t0x46, 0xD8, 0xAA, 0xD8, 0xAC, 0xD9, 0x89, 0x46,\n\t0xD8, 0xAA, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD8,\n\t0xAA, 0xD8, 0xAD, 0xD8, 0xAC, 0x46, 0xD8, 0xAA,\n\t0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD8, 0xAA, 0xD8,\n\t0xAE, 0xD9, 0x85, 0x46, 0xD8, 0xAA, 0xD8, 0xAE,\n\t// Bytes 2340 - 237f\n\t0xD9, 0x89, 0x46, 0xD8, 0xAA, 0xD8, 0xAE, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xAA, 0xD9, 0x85, 0xD8, 0xAC,\n\t0x46, 0xD8, 0xAA, 0xD9, 0x85, 0xD8, 0xAD, 0x46,\n\t0xD8, 0xAA, 0xD9, 0x85, 0xD8, 0xAE, 0x46, 0xD8,\n\t0xAA, 0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8, 0xAA,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xAC, 0xD8,\n\t0xAD, 0xD9, 0x89, 0x46, 0xD8, 0xAC, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD8, 0xAC, 0xD9, 0x85, 0xD8,\n\t// Bytes 2380 - 23bf\n\t0xAD, 0x46, 0xD8, 0xAC, 0xD9, 0x85, 0xD9, 0x89,\n\t0x46, 0xD8, 0xAC, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD8, 0xAD, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD8,\n\t0xAD, 0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8, 0xAD,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xB3, 0xD8,\n\t0xAC, 0xD8, 0xAD, 0x46, 0xD8, 0xB3, 0xD8, 0xAC,\n\t0xD9, 0x89, 0x46, 0xD8, 0xB3, 0xD8, 0xAD, 0xD8,\n\t0xAC, 0x46, 0xD8, 0xB3, 0xD8, 0xAE, 0xD9, 0x89,\n\t// Bytes 23c0 - 23ff\n\t0x46, 0xD8, 0xB3, 0xD8, 0xAE, 0xD9, 0x8A, 0x46,\n\t0xD8, 0xB3, 0xD9, 0x85, 0xD8, 0xAC, 0x46, 0xD8,\n\t0xB3, 0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD8, 0xB3,\n\t0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD8, 0xB4, 0xD8,\n\t0xAC, 0xD9, 0x8A, 0x46, 0xD8, 0xB4, 0xD8, 0xAD,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB4, 0xD8, 0xAD, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xB4, 0xD9, 0x85, 0xD8, 0xAE,\n\t0x46, 0xD8, 0xB4, 0xD9, 0x85, 0xD9, 0x85, 0x46,\n\t// Bytes 2400 - 243f\n\t0xD8, 0xB5, 0xD8, 0xAD, 0xD8, 0xAD, 0x46, 0xD8,\n\t0xB5, 0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD8, 0xB5,\n\t0xD9, 0x84, 0xD9, 0x89, 0x46, 0xD8, 0xB5, 0xD9,\n\t0x84, 0xDB, 0x92, 0x46, 0xD8, 0xB5, 0xD9, 0x85,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB6, 0xD8, 0xAD, 0xD9,\n\t0x89, 0x46, 0xD8, 0xB6, 0xD8, 0xAD, 0xD9, 0x8A,\n\t0x46, 0xD8, 0xB6, 0xD8, 0xAE, 0xD9, 0x85, 0x46,\n\t0xD8, 0xB7, 0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD8,\n\t// Bytes 2440 - 247f\n\t0xB7, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD8, 0xB7,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xB9, 0xD8,\n\t0xAC, 0xD9, 0x85, 0x46, 0xD8, 0xB9, 0xD9, 0x85,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB9, 0xD9, 0x85, 0xD9,\n\t0x89, 0x46, 0xD8, 0xB9, 0xD9, 0x85, 0xD9, 0x8A,\n\t0x46, 0xD8, 0xBA, 0xD9, 0x85, 0xD9, 0x85, 0x46,\n\t0xD8, 0xBA, 0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8,\n\t0xBA, 0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x81,\n\t// Bytes 2480 - 24bf\n\t0xD8, 0xAE, 0xD9, 0x85, 0x46, 0xD9, 0x81, 0xD9,\n\t0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x82, 0xD9, 0x84,\n\t0xDB, 0x92, 0x46, 0xD9, 0x82, 0xD9, 0x85, 0xD8,\n\t0xAD, 0x46, 0xD9, 0x82, 0xD9, 0x85, 0xD9, 0x85,\n\t0x46, 0xD9, 0x82, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD9, 0x83, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD9,\n\t0x83, 0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x84,\n\t0xD8, 0xAC, 0xD8, 0xAC, 0x46, 0xD9, 0x84, 0xD8,\n\t// Bytes 24c0 - 24ff\n\t0xAC, 0xD9, 0x85, 0x46, 0xD9, 0x84, 0xD8, 0xAC,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x84, 0xD8, 0xAD, 0xD9,\n\t0x85, 0x46, 0xD9, 0x84, 0xD8, 0xAD, 0xD9, 0x89,\n\t0x46, 0xD9, 0x84, 0xD8, 0xAD, 0xD9, 0x8A, 0x46,\n\t0xD9, 0x84, 0xD8, 0xAE, 0xD9, 0x85, 0x46, 0xD9,\n\t0x84, 0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD9, 0x84,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x85, 0xD8,\n\t0xAC, 0xD8, 0xAD, 0x46, 0xD9, 0x85, 0xD8, 0xAC,\n\t// Bytes 2500 - 253f\n\t0xD8, 0xAE, 0x46, 0xD9, 0x85, 0xD8, 0xAC, 0xD9,\n\t0x85, 0x46, 0xD9, 0x85, 0xD8, 0xAC, 0xD9, 0x8A,\n\t0x46, 0xD9, 0x85, 0xD8, 0xAD, 0xD8, 0xAC, 0x46,\n\t0xD9, 0x85, 0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD9,\n\t0x85, 0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD9, 0x85,\n\t0xD8, 0xAE, 0xD8, 0xAC, 0x46, 0xD9, 0x85, 0xD8,\n\t0xAE, 0xD9, 0x85, 0x46, 0xD9, 0x85, 0xD8, 0xAE,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x85, 0xD9, 0x85, 0xD9,\n\t// Bytes 2540 - 257f\n\t0x8A, 0x46, 0xD9, 0x86, 0xD8, 0xAC, 0xD8, 0xAD,\n\t0x46, 0xD9, 0x86, 0xD8, 0xAC, 0xD9, 0x85, 0x46,\n\t0xD9, 0x86, 0xD8, 0xAC, 0xD9, 0x89, 0x46, 0xD9,\n\t0x86, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD9, 0x86,\n\t0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD9, 0x86, 0xD8,\n\t0xAD, 0xD9, 0x89, 0x46, 0xD9, 0x86, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x86, 0xD9, 0x85, 0xD9,\n\t0x89, 0x46, 0xD9, 0x86, 0xD9, 0x85, 0xD9, 0x8A,\n\t// Bytes 2580 - 25bf\n\t0x46, 0xD9, 0x87, 0xD9, 0x85, 0xD8, 0xAC, 0x46,\n\t0xD9, 0x87, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD9,\n\t0x8A, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD9, 0x8A,\n\t0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x85, 0xD9, 0x85, 0x46, 0xD9, 0x8A, 0xD9, 0x85,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8,\n\t0xA7, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xAC,\n\t0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xAD, 0x46,\n\t// Bytes 25c0 - 25ff\n\t0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xAE, 0x46, 0xD9,\n\t0x8A, 0xD9, 0x94, 0xD8, 0xB1, 0x46, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xD8, 0xB2, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x94, 0xD9, 0x85, 0x46, 0xD9, 0x8A, 0xD9, 0x94,\n\t0xD9, 0x86, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9,\n\t0x87, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x88,\n\t0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x89, 0x46,\n\t0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x8A, 0x46, 0xD9,\n\t// Bytes 2600 - 263f\n\t0x8A, 0xD9, 0x94, 0xDB, 0x86, 0x46, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xDB, 0x87, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x94, 0xDB, 0x88, 0x46, 0xD9, 0x8A, 0xD9, 0x94,\n\t0xDB, 0x90, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xDB,\n\t0x95, 0x46, 0xE0, 0xB9, 0x8D, 0xE0, 0xB8, 0xB2,\n\t0x46, 0xE0, 0xBA, 0xAB, 0xE0, 0xBA, 0x99, 0x46,\n\t0xE0, 0xBA, 0xAB, 0xE0, 0xBA, 0xA1, 0x46, 0xE0,\n\t0xBB, 0x8D, 0xE0, 0xBA, 0xB2, 0x46, 0xE0, 0xBD,\n\t// Bytes 2640 - 267f\n\t0x80, 0xE0, 0xBE, 0xB5, 0x46, 0xE0, 0xBD, 0x82,\n\t0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBD, 0x8C, 0xE0,\n\t0xBE, 0xB7, 0x46, 0xE0, 0xBD, 0x91, 0xE0, 0xBE,\n\t0xB7, 0x46, 0xE0, 0xBD, 0x96, 0xE0, 0xBE, 0xB7,\n\t0x46, 0xE0, 0xBD, 0x9B, 0xE0, 0xBE, 0xB7, 0x46,\n\t0xE0, 0xBE, 0x90, 0xE0, 0xBE, 0xB5, 0x46, 0xE0,\n\t0xBE, 0x92, 0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE,\n\t0x9C, 0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0xA1,\n\t// Bytes 2680 - 26bf\n\t0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0xA6, 0xE0,\n\t0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0xAB, 0xE0, 0xBE,\n\t0xB7, 0x46, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0x46, 0xE2, 0x80, 0xB5, 0xE2, 0x80, 0xB5, 0x46,\n\t0xE2, 0x88, 0xAB, 0xE2, 0x88, 0xAB, 0x46, 0xE2,\n\t0x88, 0xAE, 0xE2, 0x88, 0xAE, 0x46, 0xE3, 0x81,\n\t0xBB, 0xE3, 0x81, 0x8B, 0x46, 0xE3, 0x82, 0x88,\n\t0xE3, 0x82, 0x8A, 0x46, 0xE3, 0x82, 0xAD, 0xE3,\n\t// Bytes 26c0 - 26ff\n\t0x83, 0xAD, 0x46, 0xE3, 0x82, 0xB3, 0xE3, 0x82,\n\t0xB3, 0x46, 0xE3, 0x82, 0xB3, 0xE3, 0x83, 0x88,\n\t0x46, 0xE3, 0x83, 0x88, 0xE3, 0x83, 0xB3, 0x46,\n\t0xE3, 0x83, 0x8A, 0xE3, 0x83, 0x8E, 0x46, 0xE3,\n\t0x83, 0x9B, 0xE3, 0x83, 0xB3, 0x46, 0xE3, 0x83,\n\t0x9F, 0xE3, 0x83, 0xAA, 0x46, 0xE3, 0x83, 0xAA,\n\t0xE3, 0x83, 0xA9, 0x46, 0xE3, 0x83, 0xAC, 0xE3,\n\t0x83, 0xA0, 0x46, 0xE5, 0xA4, 0xA7, 0xE6, 0xAD,\n\t// Bytes 2700 - 273f\n\t0xA3, 0x46, 0xE5, 0xB9, 0xB3, 0xE6, 0x88, 0x90,\n\t0x46, 0xE6, 0x98, 0x8E, 0xE6, 0xB2, 0xBB, 0x46,\n\t0xE6, 0x98, 0xAD, 0xE5, 0x92, 0x8C, 0x47, 0x72,\n\t0x61, 0x64, 0xE2, 0x88, 0x95, 0x73, 0x47, 0xE3,\n\t0x80, 0x94, 0x53, 0xE3, 0x80, 0x95, 0x48, 0x28,\n\t0xE1, 0x84, 0x80, 0xE1, 0x85, 0xA1, 0x29, 0x48,\n\t0x28, 0xE1, 0x84, 0x82, 0xE1, 0x85, 0xA1, 0x29,\n\t0x48, 0x28, 0xE1, 0x84, 0x83, 0xE1, 0x85, 0xA1,\n\t// Bytes 2740 - 277f\n\t0x29, 0x48, 0x28, 0xE1, 0x84, 0x85, 0xE1, 0x85,\n\t0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x86, 0xE1,\n\t0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x87,\n\t0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84,\n\t0x89, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1,\n\t0x84, 0x8B, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28,\n\t0xE1, 0x84, 0x8C, 0xE1, 0x85, 0xA1, 0x29, 0x48,\n\t0x28, 0xE1, 0x84, 0x8C, 0xE1, 0x85, 0xAE, 0x29,\n\t// Bytes 2780 - 27bf\n\t0x48, 0x28, 0xE1, 0x84, 0x8E, 0xE1, 0x85, 0xA1,\n\t0x29, 0x48, 0x28, 0xE1, 0x84, 0x8F, 0xE1, 0x85,\n\t0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x90, 0xE1,\n\t0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x91,\n\t0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84,\n\t0x92, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x72, 0x61,\n\t0x64, 0xE2, 0x88, 0x95, 0x73, 0x32, 0x48, 0xD8,\n\t0xA7, 0xD9, 0x83, 0xD8, 0xA8, 0xD8, 0xB1, 0x48,\n\t// Bytes 27c0 - 27ff\n\t0xD8, 0xA7, 0xD9, 0x84, 0xD9, 0x84, 0xD9, 0x87,\n\t0x48, 0xD8, 0xB1, 0xD8, 0xB3, 0xD9, 0x88, 0xD9,\n\t0x84, 0x48, 0xD8, 0xB1, 0xDB, 0x8C, 0xD8, 0xA7,\n\t0xD9, 0x84, 0x48, 0xD8, 0xB5, 0xD9, 0x84, 0xD8,\n\t0xB9, 0xD9, 0x85, 0x48, 0xD8, 0xB9, 0xD9, 0x84,\n\t0xD9, 0x8A, 0xD9, 0x87, 0x48, 0xD9, 0x85, 0xD8,\n\t0xAD, 0xD9, 0x85, 0xD8, 0xAF, 0x48, 0xD9, 0x88,\n\t0xD8, 0xB3, 0xD9, 0x84, 0xD9, 0x85, 0x49, 0xE2,\n\t// Bytes 2800 - 283f\n\t0x80, 0xB2, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0x49, 0xE2, 0x80, 0xB5, 0xE2, 0x80, 0xB5, 0xE2,\n\t0x80, 0xB5, 0x49, 0xE2, 0x88, 0xAB, 0xE2, 0x88,\n\t0xAB, 0xE2, 0x88, 0xAB, 0x49, 0xE2, 0x88, 0xAE,\n\t0xE2, 0x88, 0xAE, 0xE2, 0x88, 0xAE, 0x49, 0xE3,\n\t0x80, 0x94, 0xE4, 0xB8, 0x89, 0xE3, 0x80, 0x95,\n\t0x49, 0xE3, 0x80, 0x94, 0xE4, 0xBA, 0x8C, 0xE3,\n\t0x80, 0x95, 0x49, 0xE3, 0x80, 0x94, 0xE5, 0x8B,\n\t// Bytes 2840 - 287f\n\t0x9D, 0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80, 0x94,\n\t0xE5, 0xAE, 0x89, 0xE3, 0x80, 0x95, 0x49, 0xE3,\n\t0x80, 0x94, 0xE6, 0x89, 0x93, 0xE3, 0x80, 0x95,\n\t0x49, 0xE3, 0x80, 0x94, 0xE6, 0x95, 0x97, 0xE3,\n\t0x80, 0x95, 0x49, 0xE3, 0x80, 0x94, 0xE6, 0x9C,\n\t0xAC, 0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80, 0x94,\n\t0xE7, 0x82, 0xB9, 0xE3, 0x80, 0x95, 0x49, 0xE3,\n\t0x80, 0x94, 0xE7, 0x9B, 0x97, 0xE3, 0x80, 0x95,\n\t// Bytes 2880 - 28bf\n\t0x49, 0xE3, 0x82, 0xA2, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xAB, 0x49, 0xE3, 0x82, 0xA4, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x81, 0x49, 0xE3, 0x82, 0xA6,\n\t0xE3, 0x82, 0xA9, 0xE3, 0x83, 0xB3, 0x49, 0xE3,\n\t0x82, 0xAA, 0xE3, 0x83, 0xB3, 0xE3, 0x82, 0xB9,\n\t0x49, 0xE3, 0x82, 0xAA, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xA0, 0x49, 0xE3, 0x82, 0xAB, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0xAA, 0x49, 0xE3, 0x82, 0xB1,\n\t// Bytes 28c0 - 28ff\n\t0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xB9, 0x49, 0xE3,\n\t0x82, 0xB3, 0xE3, 0x83, 0xAB, 0xE3, 0x83, 0x8A,\n\t0x49, 0xE3, 0x82, 0xBB, 0xE3, 0x83, 0xB3, 0xE3,\n\t0x83, 0x81, 0x49, 0xE3, 0x82, 0xBB, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x88, 0x49, 0xE3, 0x83, 0x86,\n\t0xE3, 0x82, 0x99, 0xE3, 0x82, 0xB7, 0x49, 0xE3,\n\t0x83, 0x88, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB,\n\t0x49, 0xE3, 0x83, 0x8E, 0xE3, 0x83, 0x83, 0xE3,\n\t// Bytes 2900 - 293f\n\t0x83, 0x88, 0x49, 0xE3, 0x83, 0x8F, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0x84, 0x49, 0xE3, 0x83, 0x92,\n\t0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB, 0x49, 0xE3,\n\t0x83, 0x92, 0xE3, 0x82, 0x9A, 0xE3, 0x82, 0xB3,\n\t0x49, 0xE3, 0x83, 0x95, 0xE3, 0x83, 0xA9, 0xE3,\n\t0x83, 0xB3, 0x49, 0xE3, 0x83, 0x98, 0xE3, 0x82,\n\t0x9A, 0xE3, 0x82, 0xBD, 0x49, 0xE3, 0x83, 0x98,\n\t0xE3, 0x83, 0xAB, 0xE3, 0x83, 0x84, 0x49, 0xE3,\n\t// Bytes 2940 - 297f\n\t0x83, 0x9B, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0xAB,\n\t0x49, 0xE3, 0x83, 0x9B, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xB3, 0x49, 0xE3, 0x83, 0x9E, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0xAB, 0x49, 0xE3, 0x83, 0x9E,\n\t0xE3, 0x83, 0x83, 0xE3, 0x83, 0x8F, 0x49, 0xE3,\n\t0x83, 0x9E, 0xE3, 0x83, 0xAB, 0xE3, 0x82, 0xAF,\n\t0x49, 0xE3, 0x83, 0xA4, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xAB, 0x49, 0xE3, 0x83, 0xA6, 0xE3, 0x82,\n\t// Bytes 2980 - 29bf\n\t0xA2, 0xE3, 0x83, 0xB3, 0x49, 0xE3, 0x83, 0xAF,\n\t0xE3, 0x83, 0x83, 0xE3, 0x83, 0x88, 0x4C, 0xE2,\n\t0x80, 0xB2, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0xE2, 0x80, 0xB2, 0x4C, 0xE2, 0x88, 0xAB, 0xE2,\n\t0x88, 0xAB, 0xE2, 0x88, 0xAB, 0xE2, 0x88, 0xAB,\n\t0x4C, 0xE3, 0x82, 0xA2, 0xE3, 0x83, 0xAB, 0xE3,\n\t0x83, 0x95, 0xE3, 0x82, 0xA1, 0x4C, 0xE3, 0x82,\n\t0xA8, 0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xAB, 0xE3,\n\t// Bytes 29c0 - 29ff\n\t0x83, 0xBC, 0x4C, 0xE3, 0x82, 0xAB, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xB3, 0x4C,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x9E, 0x4C, 0xE3, 0x82, 0xAB,\n\t0xE3, 0x83, 0xA9, 0xE3, 0x83, 0x83, 0xE3, 0x83,\n\t0x88, 0x4C, 0xE3, 0x82, 0xAB, 0xE3, 0x83, 0xAD,\n\t0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xBC, 0x4C, 0xE3,\n\t0x82, 0xAD, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0x8B,\n\t// Bytes 2a00 - 2a3f\n\t0xE3, 0x83, 0xBC, 0x4C, 0xE3, 0x82, 0xAD, 0xE3,\n\t0x83, 0xA5, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xBC,\n\t0x4C, 0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0xE3,\n\t0x83, 0xA9, 0xE3, 0x83, 0xA0, 0x4C, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0x8D, 0x4C, 0xE3, 0x82, 0xB5, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAB, 0x4C,\n\t0xE3, 0x82, 0xBF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t// Bytes 2a40 - 2a7f\n\t0xBC, 0xE3, 0x82, 0xB9, 0x4C, 0xE3, 0x83, 0x8F,\n\t0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0x84, 0x4C, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAB, 0x4C, 0xE3,\n\t0x83, 0x95, 0xE3, 0x82, 0xA3, 0xE3, 0x83, 0xBC,\n\t0xE3, 0x83, 0x88, 0x4C, 0xE3, 0x83, 0x98, 0xE3,\n\t0x82, 0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xBF,\n\t0x4C, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x9A, 0xE3,\n\t// Bytes 2a80 - 2abf\n\t0x83, 0x8B, 0xE3, 0x83, 0x92, 0x4C, 0xE3, 0x83,\n\t0x98, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xB3, 0xE3,\n\t0x82, 0xB9, 0x4C, 0xE3, 0x83, 0x9B, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xAB, 0xE3, 0x83, 0x88, 0x4C,\n\t0xE3, 0x83, 0x9E, 0xE3, 0x82, 0xA4, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x83, 0xAD, 0x4C, 0xE3, 0x83, 0x9F,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAD, 0xE3, 0x83,\n\t0xB3, 0x4C, 0xE3, 0x83, 0xA1, 0xE3, 0x83, 0xBC,\n\t// Bytes 2ac0 - 2aff\n\t0xE3, 0x83, 0x88, 0xE3, 0x83, 0xAB, 0x4C, 0xE3,\n\t0x83, 0xAA, 0xE3, 0x83, 0x83, 0xE3, 0x83, 0x88,\n\t0xE3, 0x83, 0xAB, 0x4C, 0xE3, 0x83, 0xAB, 0xE3,\n\t0x83, 0x92, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC,\n\t0x4C, 0xE6, 0xA0, 0xAA, 0xE5, 0xBC, 0x8F, 0xE4,\n\t0xBC, 0x9A, 0xE7, 0xA4, 0xBE, 0x4E, 0x28, 0xE1,\n\t0x84, 0x8B, 0xE1, 0x85, 0xA9, 0xE1, 0x84, 0x92,\n\t0xE1, 0x85, 0xAE, 0x29, 0x4F, 0xD8, 0xAC, 0xD9,\n\t// Bytes 2b00 - 2b3f\n\t0x84, 0x20, 0xD8, 0xAC, 0xD9, 0x84, 0xD8, 0xA7,\n\t0xD9, 0x84, 0xD9, 0x87, 0x4F, 0xE3, 0x82, 0xA2,\n\t0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x9A, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0x88, 0x4F, 0xE3, 0x82, 0xA2,\n\t0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x98, 0xE3, 0x82,\n\t0x9A, 0xE3, 0x82, 0xA2, 0x4F, 0xE3, 0x82, 0xAD,\n\t0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xAF, 0xE3, 0x83,\n\t0x83, 0xE3, 0x83, 0x88, 0x4F, 0xE3, 0x82, 0xB5,\n\t// Bytes 2b40 - 2b7f\n\t0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x81, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0xA0, 0x4F, 0xE3, 0x83, 0x8F,\n\t0xE3, 0x82, 0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0xAC, 0xE3, 0x83, 0xAB, 0x4F, 0xE3, 0x83, 0x98,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x82, 0xBF, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0xAB, 0x4F, 0xE3, 0x83, 0x9B,\n\t0xE3, 0x82, 0x9A, 0xE3, 0x82, 0xA4, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x88, 0x4F, 0xE3, 0x83, 0x9E,\n\t// Bytes 2b80 - 2bbf\n\t0xE3, 0x83, 0xB3, 0xE3, 0x82, 0xB7, 0xE3, 0x83,\n\t0xA7, 0xE3, 0x83, 0xB3, 0x4F, 0xE3, 0x83, 0xA1,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0x88, 0xE3, 0x83, 0xB3, 0x4F, 0xE3, 0x83, 0xAB,\n\t0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x95, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xAB, 0x51, 0x28, 0xE1, 0x84,\n\t0x8B, 0xE1, 0x85, 0xA9, 0xE1, 0x84, 0x8C, 0xE1,\n\t0x85, 0xA5, 0xE1, 0x86, 0xAB, 0x29, 0x52, 0xE3,\n\t// Bytes 2bc0 - 2bff\n\t0x82, 0xAD, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB,\n\t0xE3, 0x82, 0xBF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xBC, 0x52, 0xE3, 0x82, 0xAD, 0xE3, 0x83, 0xAD,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xA9, 0xE3, 0x83, 0xA0, 0x52, 0xE3, 0x82, 0xAD,\n\t0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xA1, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0x88, 0xE3, 0x83, 0xAB, 0x52,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t// Bytes 2c00 - 2c3f\n\t0xA9, 0xE3, 0x83, 0xA0, 0xE3, 0x83, 0x88, 0xE3,\n\t0x83, 0xB3, 0x52, 0xE3, 0x82, 0xAF, 0xE3, 0x83,\n\t0xAB, 0xE3, 0x82, 0xBB, 0xE3, 0x82, 0x99, 0xE3,\n\t0x82, 0xA4, 0xE3, 0x83, 0xAD, 0x52, 0xE3, 0x83,\n\t0x8F, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x82, 0xBB, 0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x88,\n\t0x52, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A, 0xE3,\n\t0x82, 0xA2, 0xE3, 0x82, 0xB9, 0xE3, 0x83, 0x88,\n\t// Bytes 2c40 - 2c7f\n\t0xE3, 0x83, 0xAB, 0x52, 0xE3, 0x83, 0x95, 0xE3,\n\t0x82, 0x99, 0xE3, 0x83, 0x83, 0xE3, 0x82, 0xB7,\n\t0xE3, 0x82, 0xA7, 0xE3, 0x83, 0xAB, 0x52, 0xE3,\n\t0x83, 0x9F, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0x8F,\n\t0xE3, 0x82, 0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0xAB, 0x52, 0xE3, 0x83, 0xAC, 0xE3, 0x83, 0xB3,\n\t0xE3, 0x83, 0x88, 0xE3, 0x82, 0xB1, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xB3, 0x61, 0xD8, 0xB5, 0xD9,\n\t// Bytes 2c80 - 2cbf\n\t0x84, 0xD9, 0x89, 0x20, 0xD8, 0xA7, 0xD9, 0x84,\n\t0xD9, 0x84, 0xD9, 0x87, 0x20, 0xD8, 0xB9, 0xD9,\n\t0x84, 0xD9, 0x8A, 0xD9, 0x87, 0x20, 0xD9, 0x88,\n\t0xD8, 0xB3, 0xD9, 0x84, 0xD9, 0x85, 0x06, 0xE0,\n\t0xA7, 0x87, 0xE0, 0xA6, 0xBE, 0x01, 0x06, 0xE0,\n\t0xA7, 0x87, 0xE0, 0xA7, 0x97, 0x01, 0x06, 0xE0,\n\t0xAD, 0x87, 0xE0, 0xAC, 0xBE, 0x01, 0x06, 0xE0,\n\t0xAD, 0x87, 0xE0, 0xAD, 0x96, 0x01, 0x06, 0xE0,\n\t// Bytes 2cc0 - 2cff\n\t0xAD, 0x87, 0xE0, 0xAD, 0x97, 0x01, 0x06, 0xE0,\n\t0xAE, 0x92, 0xE0, 0xAF, 0x97, 0x01, 0x06, 0xE0,\n\t0xAF, 0x86, 0xE0, 0xAE, 0xBE, 0x01, 0x06, 0xE0,\n\t0xAF, 0x86, 0xE0, 0xAF, 0x97, 0x01, 0x06, 0xE0,\n\t0xAF, 0x87, 0xE0, 0xAE, 0xBE, 0x01, 0x06, 0xE0,\n\t0xB2, 0xBF, 0xE0, 0xB3, 0x95, 0x01, 0x06, 0xE0,\n\t0xB3, 0x86, 0xE0, 0xB3, 0x95, 0x01, 0x06, 0xE0,\n\t0xB3, 0x86, 0xE0, 0xB3, 0x96, 0x01, 0x06, 0xE0,\n\t// Bytes 2d00 - 2d3f\n\t0xB5, 0x86, 0xE0, 0xB4, 0xBE, 0x01, 0x06, 0xE0,\n\t0xB5, 0x86, 0xE0, 0xB5, 0x97, 0x01, 0x06, 0xE0,\n\t0xB5, 0x87, 0xE0, 0xB4, 0xBE, 0x01, 0x06, 0xE0,\n\t0xB7, 0x99, 0xE0, 0xB7, 0x9F, 0x01, 0x06, 0xE1,\n\t0x80, 0xA5, 0xE1, 0x80, 0xAE, 0x01, 0x06, 0xE1,\n\t0xAC, 0x85, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x87, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x89, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t// Bytes 2d40 - 2d7f\n\t0xAC, 0x8B, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x8D, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x91, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBA, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBC, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBE, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBF, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAD, 0x82, 0xE1, 0xAC, 0xB5, 0x01, 0x08, 0xF0,\n\t// Bytes 2d80 - 2dbf\n\t0x91, 0x84, 0xB1, 0xF0, 0x91, 0x84, 0xA7, 0x01,\n\t0x08, 0xF0, 0x91, 0x84, 0xB2, 0xF0, 0x91, 0x84,\n\t0xA7, 0x01, 0x08, 0xF0, 0x91, 0x8D, 0x87, 0xF0,\n\t0x91, 0x8C, 0xBE, 0x01, 0x08, 0xF0, 0x91, 0x8D,\n\t0x87, 0xF0, 0x91, 0x8D, 0x97, 0x01, 0x08, 0xF0,\n\t0x91, 0x92, 0xB9, 0xF0, 0x91, 0x92, 0xB0, 0x01,\n\t0x08, 0xF0, 0x91, 0x92, 0xB9, 0xF0, 0x91, 0x92,\n\t0xBA, 0x01, 0x08, 0xF0, 0x91, 0x92, 0xB9, 0xF0,\n\t// Bytes 2dc0 - 2dff\n\t0x91, 0x92, 0xBD, 0x01, 0x08, 0xF0, 0x91, 0x96,\n\t0xB8, 0xF0, 0x91, 0x96, 0xAF, 0x01, 0x08, 0xF0,\n\t0x91, 0x96, 0xB9, 0xF0, 0x91, 0x96, 0xAF, 0x01,\n\t0x09, 0xE0, 0xB3, 0x86, 0xE0, 0xB3, 0x82, 0xE0,\n\t0xB3, 0x95, 0x02, 0x09, 0xE0, 0xB7, 0x99, 0xE0,\n\t0xB7, 0x8F, 0xE0, 0xB7, 0x8A, 0x12, 0x44, 0x44,\n\t0x5A, 0xCC, 0x8C, 0xC9, 0x44, 0x44, 0x7A, 0xCC,\n\t0x8C, 0xC9, 0x44, 0x64, 0x7A, 0xCC, 0x8C, 0xC9,\n\t// Bytes 2e00 - 2e3f\n\t0x46, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x93, 0xC9,\n\t0x46, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x94, 0xC9,\n\t0x46, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x95, 0xB5,\n\t0x46, 0xE1, 0x84, 0x80, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x82, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x83, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x85, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x86, 0xE1, 0x85, 0xA1, 0x01,\n\t// Bytes 2e40 - 2e7f\n\t0x46, 0xE1, 0x84, 0x87, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x89, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xAE, 0x01,\n\t0x46, 0xE1, 0x84, 0x8C, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8E, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8F, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x90, 0xE1, 0x85, 0xA1, 0x01,\n\t// Bytes 2e80 - 2ebf\n\t0x46, 0xE1, 0x84, 0x91, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x92, 0xE1, 0x85, 0xA1, 0x01,\n\t0x49, 0xE3, 0x83, 0xA1, 0xE3, 0x82, 0xAB, 0xE3,\n\t0x82, 0x99, 0x0D, 0x4C, 0xE1, 0x84, 0x8C, 0xE1,\n\t0x85, 0xAE, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xB4,\n\t0x01, 0x4C, 0xE3, 0x82, 0xAD, 0xE3, 0x82, 0x99,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0x0D, 0x4C,\n\t0xE3, 0x82, 0xB3, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t// Bytes 2ec0 - 2eff\n\t0x9B, 0xE3, 0x82, 0x9A, 0x0D, 0x4C, 0xE3, 0x83,\n\t0xA4, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88, 0xE3,\n\t0x82, 0x99, 0x0D, 0x4F, 0xE1, 0x84, 0x8E, 0xE1,\n\t0x85, 0xA1, 0xE1, 0x86, 0xB7, 0xE1, 0x84, 0x80,\n\t0xE1, 0x85, 0xA9, 0x01, 0x4F, 0xE3, 0x82, 0xA4,\n\t0xE3, 0x83, 0x8B, 0xE3, 0x83, 0xB3, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x82, 0x99, 0x0D, 0x4F, 0xE3, 0x82,\n\t0xB7, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xB3, 0xE3,\n\t// Bytes 2f00 - 2f3f\n\t0x82, 0xAF, 0xE3, 0x82, 0x99, 0x0D, 0x4F, 0xE3,\n\t0x83, 0x98, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC,\n\t0xE3, 0x82, 0xB7, 0xE3, 0x82, 0x99, 0x0D, 0x4F,\n\t0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x9A, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D,\n\t0x52, 0xE3, 0x82, 0xA8, 0xE3, 0x82, 0xB9, 0xE3,\n\t0x82, 0xAF, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88,\n\t0xE3, 0x82, 0x99, 0x0D, 0x52, 0xE3, 0x83, 0x95,\n\t// Bytes 2f40 - 2f7f\n\t0xE3, 0x82, 0xA1, 0xE3, 0x83, 0xA9, 0xE3, 0x83,\n\t0x83, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D,\n\t0x86, 0xE0, 0xB3, 0x86, 0xE0, 0xB3, 0x82, 0x01,\n\t0x86, 0xE0, 0xB7, 0x99, 0xE0, 0xB7, 0x8F, 0x01,\n\t0x03, 0x3C, 0xCC, 0xB8, 0x05, 0x03, 0x3D, 0xCC,\n\t0xB8, 0x05, 0x03, 0x3E, 0xCC, 0xB8, 0x05, 0x03,\n\t0x41, 0xCC, 0x80, 0xC9, 0x03, 0x41, 0xCC, 0x81,\n\t0xC9, 0x03, 0x41, 0xCC, 0x83, 0xC9, 0x03, 0x41,\n\t// Bytes 2f80 - 2fbf\n\t0xCC, 0x84, 0xC9, 0x03, 0x41, 0xCC, 0x89, 0xC9,\n\t0x03, 0x41, 0xCC, 0x8C, 0xC9, 0x03, 0x41, 0xCC,\n\t0x8F, 0xC9, 0x03, 0x41, 0xCC, 0x91, 0xC9, 0x03,\n\t0x41, 0xCC, 0xA5, 0xB5, 0x03, 0x41, 0xCC, 0xA8,\n\t0xA5, 0x03, 0x42, 0xCC, 0x87, 0xC9, 0x03, 0x42,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x42, 0xCC, 0xB1, 0xB5,\n\t0x03, 0x43, 0xCC, 0x81, 0xC9, 0x03, 0x43, 0xCC,\n\t0x82, 0xC9, 0x03, 0x43, 0xCC, 0x87, 0xC9, 0x03,\n\t// Bytes 2fc0 - 2fff\n\t0x43, 0xCC, 0x8C, 0xC9, 0x03, 0x44, 0xCC, 0x87,\n\t0xC9, 0x03, 0x44, 0xCC, 0x8C, 0xC9, 0x03, 0x44,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x44, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x44, 0xCC, 0xAD, 0xB5, 0x03, 0x44, 0xCC,\n\t0xB1, 0xB5, 0x03, 0x45, 0xCC, 0x80, 0xC9, 0x03,\n\t0x45, 0xCC, 0x81, 0xC9, 0x03, 0x45, 0xCC, 0x83,\n\t0xC9, 0x03, 0x45, 0xCC, 0x86, 0xC9, 0x03, 0x45,\n\t0xCC, 0x87, 0xC9, 0x03, 0x45, 0xCC, 0x88, 0xC9,\n\t// Bytes 3000 - 303f\n\t0x03, 0x45, 0xCC, 0x89, 0xC9, 0x03, 0x45, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x45, 0xCC, 0x8F, 0xC9, 0x03,\n\t0x45, 0xCC, 0x91, 0xC9, 0x03, 0x45, 0xCC, 0xA8,\n\t0xA5, 0x03, 0x45, 0xCC, 0xAD, 0xB5, 0x03, 0x45,\n\t0xCC, 0xB0, 0xB5, 0x03, 0x46, 0xCC, 0x87, 0xC9,\n\t0x03, 0x47, 0xCC, 0x81, 0xC9, 0x03, 0x47, 0xCC,\n\t0x82, 0xC9, 0x03, 0x47, 0xCC, 0x84, 0xC9, 0x03,\n\t0x47, 0xCC, 0x86, 0xC9, 0x03, 0x47, 0xCC, 0x87,\n\t// Bytes 3040 - 307f\n\t0xC9, 0x03, 0x47, 0xCC, 0x8C, 0xC9, 0x03, 0x47,\n\t0xCC, 0xA7, 0xA5, 0x03, 0x48, 0xCC, 0x82, 0xC9,\n\t0x03, 0x48, 0xCC, 0x87, 0xC9, 0x03, 0x48, 0xCC,\n\t0x88, 0xC9, 0x03, 0x48, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x48, 0xCC, 0xA3, 0xB5, 0x03, 0x48, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x48, 0xCC, 0xAE, 0xB5, 0x03, 0x49,\n\t0xCC, 0x80, 0xC9, 0x03, 0x49, 0xCC, 0x81, 0xC9,\n\t0x03, 0x49, 0xCC, 0x82, 0xC9, 0x03, 0x49, 0xCC,\n\t// Bytes 3080 - 30bf\n\t0x83, 0xC9, 0x03, 0x49, 0xCC, 0x84, 0xC9, 0x03,\n\t0x49, 0xCC, 0x86, 0xC9, 0x03, 0x49, 0xCC, 0x87,\n\t0xC9, 0x03, 0x49, 0xCC, 0x89, 0xC9, 0x03, 0x49,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x49, 0xCC, 0x8F, 0xC9,\n\t0x03, 0x49, 0xCC, 0x91, 0xC9, 0x03, 0x49, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x49, 0xCC, 0xA8, 0xA5, 0x03,\n\t0x49, 0xCC, 0xB0, 0xB5, 0x03, 0x4A, 0xCC, 0x82,\n\t0xC9, 0x03, 0x4B, 0xCC, 0x81, 0xC9, 0x03, 0x4B,\n\t// Bytes 30c0 - 30ff\n\t0xCC, 0x8C, 0xC9, 0x03, 0x4B, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x4B, 0xCC, 0xA7, 0xA5, 0x03, 0x4B, 0xCC,\n\t0xB1, 0xB5, 0x03, 0x4C, 0xCC, 0x81, 0xC9, 0x03,\n\t0x4C, 0xCC, 0x8C, 0xC9, 0x03, 0x4C, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x4C, 0xCC, 0xAD, 0xB5, 0x03, 0x4C,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x4D, 0xCC, 0x81, 0xC9,\n\t0x03, 0x4D, 0xCC, 0x87, 0xC9, 0x03, 0x4D, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x4E, 0xCC, 0x80, 0xC9, 0x03,\n\t// Bytes 3100 - 313f\n\t0x4E, 0xCC, 0x81, 0xC9, 0x03, 0x4E, 0xCC, 0x83,\n\t0xC9, 0x03, 0x4E, 0xCC, 0x87, 0xC9, 0x03, 0x4E,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x4E, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x4E, 0xCC, 0xA7, 0xA5, 0x03, 0x4E, 0xCC,\n\t0xAD, 0xB5, 0x03, 0x4E, 0xCC, 0xB1, 0xB5, 0x03,\n\t0x4F, 0xCC, 0x80, 0xC9, 0x03, 0x4F, 0xCC, 0x81,\n\t0xC9, 0x03, 0x4F, 0xCC, 0x86, 0xC9, 0x03, 0x4F,\n\t0xCC, 0x89, 0xC9, 0x03, 0x4F, 0xCC, 0x8B, 0xC9,\n\t// Bytes 3140 - 317f\n\t0x03, 0x4F, 0xCC, 0x8C, 0xC9, 0x03, 0x4F, 0xCC,\n\t0x8F, 0xC9, 0x03, 0x4F, 0xCC, 0x91, 0xC9, 0x03,\n\t0x50, 0xCC, 0x81, 0xC9, 0x03, 0x50, 0xCC, 0x87,\n\t0xC9, 0x03, 0x52, 0xCC, 0x81, 0xC9, 0x03, 0x52,\n\t0xCC, 0x87, 0xC9, 0x03, 0x52, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x52, 0xCC, 0x8F, 0xC9, 0x03, 0x52, 0xCC,\n\t0x91, 0xC9, 0x03, 0x52, 0xCC, 0xA7, 0xA5, 0x03,\n\t0x52, 0xCC, 0xB1, 0xB5, 0x03, 0x53, 0xCC, 0x82,\n\t// Bytes 3180 - 31bf\n\t0xC9, 0x03, 0x53, 0xCC, 0x87, 0xC9, 0x03, 0x53,\n\t0xCC, 0xA6, 0xB5, 0x03, 0x53, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x54, 0xCC, 0x87, 0xC9, 0x03, 0x54, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x54, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x54, 0xCC, 0xA6, 0xB5, 0x03, 0x54, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x54, 0xCC, 0xAD, 0xB5, 0x03, 0x54,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x55, 0xCC, 0x80, 0xC9,\n\t0x03, 0x55, 0xCC, 0x81, 0xC9, 0x03, 0x55, 0xCC,\n\t// Bytes 31c0 - 31ff\n\t0x82, 0xC9, 0x03, 0x55, 0xCC, 0x86, 0xC9, 0x03,\n\t0x55, 0xCC, 0x89, 0xC9, 0x03, 0x55, 0xCC, 0x8A,\n\t0xC9, 0x03, 0x55, 0xCC, 0x8B, 0xC9, 0x03, 0x55,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x55, 0xCC, 0x8F, 0xC9,\n\t0x03, 0x55, 0xCC, 0x91, 0xC9, 0x03, 0x55, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x55, 0xCC, 0xA4, 0xB5, 0x03,\n\t0x55, 0xCC, 0xA8, 0xA5, 0x03, 0x55, 0xCC, 0xAD,\n\t0xB5, 0x03, 0x55, 0xCC, 0xB0, 0xB5, 0x03, 0x56,\n\t// Bytes 3200 - 323f\n\t0xCC, 0x83, 0xC9, 0x03, 0x56, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x57, 0xCC, 0x80, 0xC9, 0x03, 0x57, 0xCC,\n\t0x81, 0xC9, 0x03, 0x57, 0xCC, 0x82, 0xC9, 0x03,\n\t0x57, 0xCC, 0x87, 0xC9, 0x03, 0x57, 0xCC, 0x88,\n\t0xC9, 0x03, 0x57, 0xCC, 0xA3, 0xB5, 0x03, 0x58,\n\t0xCC, 0x87, 0xC9, 0x03, 0x58, 0xCC, 0x88, 0xC9,\n\t0x03, 0x59, 0xCC, 0x80, 0xC9, 0x03, 0x59, 0xCC,\n\t0x81, 0xC9, 0x03, 0x59, 0xCC, 0x82, 0xC9, 0x03,\n\t// Bytes 3240 - 327f\n\t0x59, 0xCC, 0x83, 0xC9, 0x03, 0x59, 0xCC, 0x84,\n\t0xC9, 0x03, 0x59, 0xCC, 0x87, 0xC9, 0x03, 0x59,\n\t0xCC, 0x88, 0xC9, 0x03, 0x59, 0xCC, 0x89, 0xC9,\n\t0x03, 0x59, 0xCC, 0xA3, 0xB5, 0x03, 0x5A, 0xCC,\n\t0x81, 0xC9, 0x03, 0x5A, 0xCC, 0x82, 0xC9, 0x03,\n\t0x5A, 0xCC, 0x87, 0xC9, 0x03, 0x5A, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x5A, 0xCC, 0xA3, 0xB5, 0x03, 0x5A,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x61, 0xCC, 0x80, 0xC9,\n\t// Bytes 3280 - 32bf\n\t0x03, 0x61, 0xCC, 0x81, 0xC9, 0x03, 0x61, 0xCC,\n\t0x83, 0xC9, 0x03, 0x61, 0xCC, 0x84, 0xC9, 0x03,\n\t0x61, 0xCC, 0x89, 0xC9, 0x03, 0x61, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x61, 0xCC, 0x8F, 0xC9, 0x03, 0x61,\n\t0xCC, 0x91, 0xC9, 0x03, 0x61, 0xCC, 0xA5, 0xB5,\n\t0x03, 0x61, 0xCC, 0xA8, 0xA5, 0x03, 0x62, 0xCC,\n\t0x87, 0xC9, 0x03, 0x62, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x62, 0xCC, 0xB1, 0xB5, 0x03, 0x63, 0xCC, 0x81,\n\t// Bytes 32c0 - 32ff\n\t0xC9, 0x03, 0x63, 0xCC, 0x82, 0xC9, 0x03, 0x63,\n\t0xCC, 0x87, 0xC9, 0x03, 0x63, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x64, 0xCC, 0x87, 0xC9, 0x03, 0x64, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x64, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x64, 0xCC, 0xA7, 0xA5, 0x03, 0x64, 0xCC, 0xAD,\n\t0xB5, 0x03, 0x64, 0xCC, 0xB1, 0xB5, 0x03, 0x65,\n\t0xCC, 0x80, 0xC9, 0x03, 0x65, 0xCC, 0x81, 0xC9,\n\t0x03, 0x65, 0xCC, 0x83, 0xC9, 0x03, 0x65, 0xCC,\n\t// Bytes 3300 - 333f\n\t0x86, 0xC9, 0x03, 0x65, 0xCC, 0x87, 0xC9, 0x03,\n\t0x65, 0xCC, 0x88, 0xC9, 0x03, 0x65, 0xCC, 0x89,\n\t0xC9, 0x03, 0x65, 0xCC, 0x8C, 0xC9, 0x03, 0x65,\n\t0xCC, 0x8F, 0xC9, 0x03, 0x65, 0xCC, 0x91, 0xC9,\n\t0x03, 0x65, 0xCC, 0xA8, 0xA5, 0x03, 0x65, 0xCC,\n\t0xAD, 0xB5, 0x03, 0x65, 0xCC, 0xB0, 0xB5, 0x03,\n\t0x66, 0xCC, 0x87, 0xC9, 0x03, 0x67, 0xCC, 0x81,\n\t0xC9, 0x03, 0x67, 0xCC, 0x82, 0xC9, 0x03, 0x67,\n\t// Bytes 3340 - 337f\n\t0xCC, 0x84, 0xC9, 0x03, 0x67, 0xCC, 0x86, 0xC9,\n\t0x03, 0x67, 0xCC, 0x87, 0xC9, 0x03, 0x67, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x67, 0xCC, 0xA7, 0xA5, 0x03,\n\t0x68, 0xCC, 0x82, 0xC9, 0x03, 0x68, 0xCC, 0x87,\n\t0xC9, 0x03, 0x68, 0xCC, 0x88, 0xC9, 0x03, 0x68,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x68, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x68, 0xCC, 0xA7, 0xA5, 0x03, 0x68, 0xCC,\n\t0xAE, 0xB5, 0x03, 0x68, 0xCC, 0xB1, 0xB5, 0x03,\n\t// Bytes 3380 - 33bf\n\t0x69, 0xCC, 0x80, 0xC9, 0x03, 0x69, 0xCC, 0x81,\n\t0xC9, 0x03, 0x69, 0xCC, 0x82, 0xC9, 0x03, 0x69,\n\t0xCC, 0x83, 0xC9, 0x03, 0x69, 0xCC, 0x84, 0xC9,\n\t0x03, 0x69, 0xCC, 0x86, 0xC9, 0x03, 0x69, 0xCC,\n\t0x89, 0xC9, 0x03, 0x69, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x69, 0xCC, 0x8F, 0xC9, 0x03, 0x69, 0xCC, 0x91,\n\t0xC9, 0x03, 0x69, 0xCC, 0xA3, 0xB5, 0x03, 0x69,\n\t0xCC, 0xA8, 0xA5, 0x03, 0x69, 0xCC, 0xB0, 0xB5,\n\t// Bytes 33c0 - 33ff\n\t0x03, 0x6A, 0xCC, 0x82, 0xC9, 0x03, 0x6A, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x6B, 0xCC, 0x81, 0xC9, 0x03,\n\t0x6B, 0xCC, 0x8C, 0xC9, 0x03, 0x6B, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x6B, 0xCC, 0xA7, 0xA5, 0x03, 0x6B,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x6C, 0xCC, 0x81, 0xC9,\n\t0x03, 0x6C, 0xCC, 0x8C, 0xC9, 0x03, 0x6C, 0xCC,\n\t0xA7, 0xA5, 0x03, 0x6C, 0xCC, 0xAD, 0xB5, 0x03,\n\t0x6C, 0xCC, 0xB1, 0xB5, 0x03, 0x6D, 0xCC, 0x81,\n\t// Bytes 3400 - 343f\n\t0xC9, 0x03, 0x6D, 0xCC, 0x87, 0xC9, 0x03, 0x6D,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x6E, 0xCC, 0x80, 0xC9,\n\t0x03, 0x6E, 0xCC, 0x81, 0xC9, 0x03, 0x6E, 0xCC,\n\t0x83, 0xC9, 0x03, 0x6E, 0xCC, 0x87, 0xC9, 0x03,\n\t0x6E, 0xCC, 0x8C, 0xC9, 0x03, 0x6E, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x6E, 0xCC, 0xA7, 0xA5, 0x03, 0x6E,\n\t0xCC, 0xAD, 0xB5, 0x03, 0x6E, 0xCC, 0xB1, 0xB5,\n\t0x03, 0x6F, 0xCC, 0x80, 0xC9, 0x03, 0x6F, 0xCC,\n\t// Bytes 3440 - 347f\n\t0x81, 0xC9, 0x03, 0x6F, 0xCC, 0x86, 0xC9, 0x03,\n\t0x6F, 0xCC, 0x89, 0xC9, 0x03, 0x6F, 0xCC, 0x8B,\n\t0xC9, 0x03, 0x6F, 0xCC, 0x8C, 0xC9, 0x03, 0x6F,\n\t0xCC, 0x8F, 0xC9, 0x03, 0x6F, 0xCC, 0x91, 0xC9,\n\t0x03, 0x70, 0xCC, 0x81, 0xC9, 0x03, 0x70, 0xCC,\n\t0x87, 0xC9, 0x03, 0x72, 0xCC, 0x81, 0xC9, 0x03,\n\t0x72, 0xCC, 0x87, 0xC9, 0x03, 0x72, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x72, 0xCC, 0x8F, 0xC9, 0x03, 0x72,\n\t// Bytes 3480 - 34bf\n\t0xCC, 0x91, 0xC9, 0x03, 0x72, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x72, 0xCC, 0xB1, 0xB5, 0x03, 0x73, 0xCC,\n\t0x82, 0xC9, 0x03, 0x73, 0xCC, 0x87, 0xC9, 0x03,\n\t0x73, 0xCC, 0xA6, 0xB5, 0x03, 0x73, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x74, 0xCC, 0x87, 0xC9, 0x03, 0x74,\n\t0xCC, 0x88, 0xC9, 0x03, 0x74, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x74, 0xCC, 0xA3, 0xB5, 0x03, 0x74, 0xCC,\n\t0xA6, 0xB5, 0x03, 0x74, 0xCC, 0xA7, 0xA5, 0x03,\n\t// Bytes 34c0 - 34ff\n\t0x74, 0xCC, 0xAD, 0xB5, 0x03, 0x74, 0xCC, 0xB1,\n\t0xB5, 0x03, 0x75, 0xCC, 0x80, 0xC9, 0x03, 0x75,\n\t0xCC, 0x81, 0xC9, 0x03, 0x75, 0xCC, 0x82, 0xC9,\n\t0x03, 0x75, 0xCC, 0x86, 0xC9, 0x03, 0x75, 0xCC,\n\t0x89, 0xC9, 0x03, 0x75, 0xCC, 0x8A, 0xC9, 0x03,\n\t0x75, 0xCC, 0x8B, 0xC9, 0x03, 0x75, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x75, 0xCC, 0x8F, 0xC9, 0x03, 0x75,\n\t0xCC, 0x91, 0xC9, 0x03, 0x75, 0xCC, 0xA3, 0xB5,\n\t// Bytes 3500 - 353f\n\t0x03, 0x75, 0xCC, 0xA4, 0xB5, 0x03, 0x75, 0xCC,\n\t0xA8, 0xA5, 0x03, 0x75, 0xCC, 0xAD, 0xB5, 0x03,\n\t0x75, 0xCC, 0xB0, 0xB5, 0x03, 0x76, 0xCC, 0x83,\n\t0xC9, 0x03, 0x76, 0xCC, 0xA3, 0xB5, 0x03, 0x77,\n\t0xCC, 0x80, 0xC9, 0x03, 0x77, 0xCC, 0x81, 0xC9,\n\t0x03, 0x77, 0xCC, 0x82, 0xC9, 0x03, 0x77, 0xCC,\n\t0x87, 0xC9, 0x03, 0x77, 0xCC, 0x88, 0xC9, 0x03,\n\t0x77, 0xCC, 0x8A, 0xC9, 0x03, 0x77, 0xCC, 0xA3,\n\t// Bytes 3540 - 357f\n\t0xB5, 0x03, 0x78, 0xCC, 0x87, 0xC9, 0x03, 0x78,\n\t0xCC, 0x88, 0xC9, 0x03, 0x79, 0xCC, 0x80, 0xC9,\n\t0x03, 0x79, 0xCC, 0x81, 0xC9, 0x03, 0x79, 0xCC,\n\t0x82, 0xC9, 0x03, 0x79, 0xCC, 0x83, 0xC9, 0x03,\n\t0x79, 0xCC, 0x84, 0xC9, 0x03, 0x79, 0xCC, 0x87,\n\t0xC9, 0x03, 0x79, 0xCC, 0x88, 0xC9, 0x03, 0x79,\n\t0xCC, 0x89, 0xC9, 0x03, 0x79, 0xCC, 0x8A, 0xC9,\n\t0x03, 0x79, 0xCC, 0xA3, 0xB5, 0x03, 0x7A, 0xCC,\n\t// Bytes 3580 - 35bf\n\t0x81, 0xC9, 0x03, 0x7A, 0xCC, 0x82, 0xC9, 0x03,\n\t0x7A, 0xCC, 0x87, 0xC9, 0x03, 0x7A, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x7A, 0xCC, 0xA3, 0xB5, 0x03, 0x7A,\n\t0xCC, 0xB1, 0xB5, 0x04, 0xC2, 0xA8, 0xCC, 0x80,\n\t0xCA, 0x04, 0xC2, 0xA8, 0xCC, 0x81, 0xCA, 0x04,\n\t0xC2, 0xA8, 0xCD, 0x82, 0xCA, 0x04, 0xC3, 0x86,\n\t0xCC, 0x81, 0xC9, 0x04, 0xC3, 0x86, 0xCC, 0x84,\n\t0xC9, 0x04, 0xC3, 0x98, 0xCC, 0x81, 0xC9, 0x04,\n\t// Bytes 35c0 - 35ff\n\t0xC3, 0xA6, 0xCC, 0x81, 0xC9, 0x04, 0xC3, 0xA6,\n\t0xCC, 0x84, 0xC9, 0x04, 0xC3, 0xB8, 0xCC, 0x81,\n\t0xC9, 0x04, 0xC5, 0xBF, 0xCC, 0x87, 0xC9, 0x04,\n\t0xC6, 0xB7, 0xCC, 0x8C, 0xC9, 0x04, 0xCA, 0x92,\n\t0xCC, 0x8C, 0xC9, 0x04, 0xCE, 0x91, 0xCC, 0x80,\n\t0xC9, 0x04, 0xCE, 0x91, 0xCC, 0x81, 0xC9, 0x04,\n\t0xCE, 0x91, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0x91,\n\t0xCC, 0x86, 0xC9, 0x04, 0xCE, 0x91, 0xCD, 0x85,\n\t// Bytes 3600 - 363f\n\t0xD9, 0x04, 0xCE, 0x95, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCE, 0x95, 0xCC, 0x81, 0xC9, 0x04, 0xCE, 0x97,\n\t0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x97, 0xCC, 0x81,\n\t0xC9, 0x04, 0xCE, 0x97, 0xCD, 0x85, 0xD9, 0x04,\n\t0xCE, 0x99, 0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x99,\n\t0xCC, 0x81, 0xC9, 0x04, 0xCE, 0x99, 0xCC, 0x84,\n\t0xC9, 0x04, 0xCE, 0x99, 0xCC, 0x86, 0xC9, 0x04,\n\t0xCE, 0x99, 0xCC, 0x88, 0xC9, 0x04, 0xCE, 0x9F,\n\t// Bytes 3640 - 367f\n\t0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x9F, 0xCC, 0x81,\n\t0xC9, 0x04, 0xCE, 0xA1, 0xCC, 0x94, 0xC9, 0x04,\n\t0xCE, 0xA5, 0xCC, 0x80, 0xC9, 0x04, 0xCE, 0xA5,\n\t0xCC, 0x81, 0xC9, 0x04, 0xCE, 0xA5, 0xCC, 0x84,\n\t0xC9, 0x04, 0xCE, 0xA5, 0xCC, 0x86, 0xC9, 0x04,\n\t0xCE, 0xA5, 0xCC, 0x88, 0xC9, 0x04, 0xCE, 0xA9,\n\t0xCC, 0x80, 0xC9, 0x04, 0xCE, 0xA9, 0xCC, 0x81,\n\t0xC9, 0x04, 0xCE, 0xA9, 0xCD, 0x85, 0xD9, 0x04,\n\t// Bytes 3680 - 36bf\n\t0xCE, 0xB1, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0xB1,\n\t0xCC, 0x86, 0xC9, 0x04, 0xCE, 0xB1, 0xCD, 0x85,\n\t0xD9, 0x04, 0xCE, 0xB5, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCE, 0xB5, 0xCC, 0x81, 0xC9, 0x04, 0xCE, 0xB7,\n\t0xCD, 0x85, 0xD9, 0x04, 0xCE, 0xB9, 0xCC, 0x80,\n\t0xC9, 0x04, 0xCE, 0xB9, 0xCC, 0x81, 0xC9, 0x04,\n\t0xCE, 0xB9, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0xB9,\n\t0xCC, 0x86, 0xC9, 0x04, 0xCE, 0xB9, 0xCD, 0x82,\n\t// Bytes 36c0 - 36ff\n\t0xC9, 0x04, 0xCE, 0xBF, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCE, 0xBF, 0xCC, 0x81, 0xC9, 0x04, 0xCF, 0x81,\n\t0xCC, 0x93, 0xC9, 0x04, 0xCF, 0x81, 0xCC, 0x94,\n\t0xC9, 0x04, 0xCF, 0x85, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCF, 0x85, 0xCC, 0x81, 0xC9, 0x04, 0xCF, 0x85,\n\t0xCC, 0x84, 0xC9, 0x04, 0xCF, 0x85, 0xCC, 0x86,\n\t0xC9, 0x04, 0xCF, 0x85, 0xCD, 0x82, 0xC9, 0x04,\n\t0xCF, 0x89, 0xCD, 0x85, 0xD9, 0x04, 0xCF, 0x92,\n\t// Bytes 3700 - 373f\n\t0xCC, 0x81, 0xC9, 0x04, 0xCF, 0x92, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0x86, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0x90, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0x90,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x93, 0xCC, 0x81,\n\t0xC9, 0x04, 0xD0, 0x95, 0xCC, 0x80, 0xC9, 0x04,\n\t0xD0, 0x95, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0x95,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x96, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD0, 0x96, 0xCC, 0x88, 0xC9, 0x04,\n\t// Bytes 3740 - 377f\n\t0xD0, 0x97, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x98,\n\t0xCC, 0x80, 0xC9, 0x04, 0xD0, 0x98, 0xCC, 0x84,\n\t0xC9, 0x04, 0xD0, 0x98, 0xCC, 0x86, 0xC9, 0x04,\n\t0xD0, 0x98, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x9A,\n\t0xCC, 0x81, 0xC9, 0x04, 0xD0, 0x9E, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0xA3, 0xCC, 0x84, 0xC9, 0x04,\n\t0xD0, 0xA3, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xA3,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xA3, 0xCC, 0x8B,\n\t// Bytes 3780 - 37bf\n\t0xC9, 0x04, 0xD0, 0xA7, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0xAB, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xAD,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xB0, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD0, 0xB0, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0xB3, 0xCC, 0x81, 0xC9, 0x04, 0xD0, 0xB5,\n\t0xCC, 0x80, 0xC9, 0x04, 0xD0, 0xB5, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD0, 0xB5, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0xB6, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xB6,\n\t// Bytes 37c0 - 37ff\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xB7, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0xB8, 0xCC, 0x80, 0xC9, 0x04,\n\t0xD0, 0xB8, 0xCC, 0x84, 0xC9, 0x04, 0xD0, 0xB8,\n\t0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xB8, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0xBA, 0xCC, 0x81, 0xC9, 0x04,\n\t0xD0, 0xBE, 0xCC, 0x88, 0xC9, 0x04, 0xD1, 0x83,\n\t0xCC, 0x84, 0xC9, 0x04, 0xD1, 0x83, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD1, 0x83, 0xCC, 0x88, 0xC9, 0x04,\n\t// Bytes 3800 - 383f\n\t0xD1, 0x83, 0xCC, 0x8B, 0xC9, 0x04, 0xD1, 0x87,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD1, 0x8B, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD1, 0x8D, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD1, 0x96, 0xCC, 0x88, 0xC9, 0x04, 0xD1, 0xB4,\n\t0xCC, 0x8F, 0xC9, 0x04, 0xD1, 0xB5, 0xCC, 0x8F,\n\t0xC9, 0x04, 0xD3, 0x98, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD3, 0x99, 0xCC, 0x88, 0xC9, 0x04, 0xD3, 0xA8,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD3, 0xA9, 0xCC, 0x88,\n\t// Bytes 3840 - 387f\n\t0xC9, 0x04, 0xD8, 0xA7, 0xD9, 0x93, 0xC9, 0x04,\n\t0xD8, 0xA7, 0xD9, 0x94, 0xC9, 0x04, 0xD8, 0xA7,\n\t0xD9, 0x95, 0xB5, 0x04, 0xD9, 0x88, 0xD9, 0x94,\n\t0xC9, 0x04, 0xD9, 0x8A, 0xD9, 0x94, 0xC9, 0x04,\n\t0xDB, 0x81, 0xD9, 0x94, 0xC9, 0x04, 0xDB, 0x92,\n\t0xD9, 0x94, 0xC9, 0x04, 0xDB, 0x95, 0xD9, 0x94,\n\t0xC9, 0x05, 0x41, 0xCC, 0x82, 0xCC, 0x80, 0xCA,\n\t0x05, 0x41, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05,\n\t// Bytes 3880 - 38bf\n\t0x41, 0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x41,\n\t0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05, 0x41, 0xCC,\n\t0x86, 0xCC, 0x80, 0xCA, 0x05, 0x41, 0xCC, 0x86,\n\t0xCC, 0x81, 0xCA, 0x05, 0x41, 0xCC, 0x86, 0xCC,\n\t0x83, 0xCA, 0x05, 0x41, 0xCC, 0x86, 0xCC, 0x89,\n\t0xCA, 0x05, 0x41, 0xCC, 0x87, 0xCC, 0x84, 0xCA,\n\t0x05, 0x41, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05,\n\t0x41, 0xCC, 0x8A, 0xCC, 0x81, 0xCA, 0x05, 0x41,\n\t// Bytes 38c0 - 38ff\n\t0xCC, 0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x41, 0xCC,\n\t0xA3, 0xCC, 0x86, 0xCA, 0x05, 0x43, 0xCC, 0xA7,\n\t0xCC, 0x81, 0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC,\n\t0x80, 0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC, 0x81,\n\t0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC, 0x83, 0xCA,\n\t0x05, 0x45, 0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05,\n\t0x45, 0xCC, 0x84, 0xCC, 0x80, 0xCA, 0x05, 0x45,\n\t0xCC, 0x84, 0xCC, 0x81, 0xCA, 0x05, 0x45, 0xCC,\n\t// Bytes 3900 - 393f\n\t0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x45, 0xCC, 0xA7,\n\t0xCC, 0x86, 0xCA, 0x05, 0x49, 0xCC, 0x88, 0xCC,\n\t0x81, 0xCA, 0x05, 0x4C, 0xCC, 0xA3, 0xCC, 0x84,\n\t0xCA, 0x05, 0x4F, 0xCC, 0x82, 0xCC, 0x80, 0xCA,\n\t0x05, 0x4F, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05,\n\t0x4F, 0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x4F,\n\t0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05, 0x4F, 0xCC,\n\t0x83, 0xCC, 0x81, 0xCA, 0x05, 0x4F, 0xCC, 0x83,\n\t// Bytes 3940 - 397f\n\t0xCC, 0x84, 0xCA, 0x05, 0x4F, 0xCC, 0x83, 0xCC,\n\t0x88, 0xCA, 0x05, 0x4F, 0xCC, 0x84, 0xCC, 0x80,\n\t0xCA, 0x05, 0x4F, 0xCC, 0x84, 0xCC, 0x81, 0xCA,\n\t0x05, 0x4F, 0xCC, 0x87, 0xCC, 0x84, 0xCA, 0x05,\n\t0x4F, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x4F,\n\t0xCC, 0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x4F, 0xCC,\n\t0x9B, 0xCC, 0x81, 0xCA, 0x05, 0x4F, 0xCC, 0x9B,\n\t0xCC, 0x83, 0xCA, 0x05, 0x4F, 0xCC, 0x9B, 0xCC,\n\t// Bytes 3980 - 39bf\n\t0x89, 0xCA, 0x05, 0x4F, 0xCC, 0x9B, 0xCC, 0xA3,\n\t0xB6, 0x05, 0x4F, 0xCC, 0xA3, 0xCC, 0x82, 0xCA,\n\t0x05, 0x4F, 0xCC, 0xA8, 0xCC, 0x84, 0xCA, 0x05,\n\t0x52, 0xCC, 0xA3, 0xCC, 0x84, 0xCA, 0x05, 0x53,\n\t0xCC, 0x81, 0xCC, 0x87, 0xCA, 0x05, 0x53, 0xCC,\n\t0x8C, 0xCC, 0x87, 0xCA, 0x05, 0x53, 0xCC, 0xA3,\n\t0xCC, 0x87, 0xCA, 0x05, 0x55, 0xCC, 0x83, 0xCC,\n\t0x81, 0xCA, 0x05, 0x55, 0xCC, 0x84, 0xCC, 0x88,\n\t// Bytes 39c0 - 39ff\n\t0xCA, 0x05, 0x55, 0xCC, 0x88, 0xCC, 0x80, 0xCA,\n\t0x05, 0x55, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x05,\n\t0x55, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x55,\n\t0xCC, 0x88, 0xCC, 0x8C, 0xCA, 0x05, 0x55, 0xCC,\n\t0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x55, 0xCC, 0x9B,\n\t0xCC, 0x81, 0xCA, 0x05, 0x55, 0xCC, 0x9B, 0xCC,\n\t0x83, 0xCA, 0x05, 0x55, 0xCC, 0x9B, 0xCC, 0x89,\n\t0xCA, 0x05, 0x55, 0xCC, 0x9B, 0xCC, 0xA3, 0xB6,\n\t// Bytes 3a00 - 3a3f\n\t0x05, 0x61, 0xCC, 0x82, 0xCC, 0x80, 0xCA, 0x05,\n\t0x61, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05, 0x61,\n\t0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x61, 0xCC,\n\t0x82, 0xCC, 0x89, 0xCA, 0x05, 0x61, 0xCC, 0x86,\n\t0xCC, 0x80, 0xCA, 0x05, 0x61, 0xCC, 0x86, 0xCC,\n\t0x81, 0xCA, 0x05, 0x61, 0xCC, 0x86, 0xCC, 0x83,\n\t0xCA, 0x05, 0x61, 0xCC, 0x86, 0xCC, 0x89, 0xCA,\n\t0x05, 0x61, 0xCC, 0x87, 0xCC, 0x84, 0xCA, 0x05,\n\t// Bytes 3a40 - 3a7f\n\t0x61, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x61,\n\t0xCC, 0x8A, 0xCC, 0x81, 0xCA, 0x05, 0x61, 0xCC,\n\t0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x61, 0xCC, 0xA3,\n\t0xCC, 0x86, 0xCA, 0x05, 0x63, 0xCC, 0xA7, 0xCC,\n\t0x81, 0xCA, 0x05, 0x65, 0xCC, 0x82, 0xCC, 0x80,\n\t0xCA, 0x05, 0x65, 0xCC, 0x82, 0xCC, 0x81, 0xCA,\n\t0x05, 0x65, 0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05,\n\t0x65, 0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05, 0x65,\n\t// Bytes 3a80 - 3abf\n\t0xCC, 0x84, 0xCC, 0x80, 0xCA, 0x05, 0x65, 0xCC,\n\t0x84, 0xCC, 0x81, 0xCA, 0x05, 0x65, 0xCC, 0xA3,\n\t0xCC, 0x82, 0xCA, 0x05, 0x65, 0xCC, 0xA7, 0xCC,\n\t0x86, 0xCA, 0x05, 0x69, 0xCC, 0x88, 0xCC, 0x81,\n\t0xCA, 0x05, 0x6C, 0xCC, 0xA3, 0xCC, 0x84, 0xCA,\n\t0x05, 0x6F, 0xCC, 0x82, 0xCC, 0x80, 0xCA, 0x05,\n\t0x6F, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05, 0x6F,\n\t0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x6F, 0xCC,\n\t// Bytes 3ac0 - 3aff\n\t0x82, 0xCC, 0x89, 0xCA, 0x05, 0x6F, 0xCC, 0x83,\n\t0xCC, 0x81, 0xCA, 0x05, 0x6F, 0xCC, 0x83, 0xCC,\n\t0x84, 0xCA, 0x05, 0x6F, 0xCC, 0x83, 0xCC, 0x88,\n\t0xCA, 0x05, 0x6F, 0xCC, 0x84, 0xCC, 0x80, 0xCA,\n\t0x05, 0x6F, 0xCC, 0x84, 0xCC, 0x81, 0xCA, 0x05,\n\t0x6F, 0xCC, 0x87, 0xCC, 0x84, 0xCA, 0x05, 0x6F,\n\t0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x6F, 0xCC,\n\t0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x6F, 0xCC, 0x9B,\n\t// Bytes 3b00 - 3b3f\n\t0xCC, 0x81, 0xCA, 0x05, 0x6F, 0xCC, 0x9B, 0xCC,\n\t0x83, 0xCA, 0x05, 0x6F, 0xCC, 0x9B, 0xCC, 0x89,\n\t0xCA, 0x05, 0x6F, 0xCC, 0x9B, 0xCC, 0xA3, 0xB6,\n\t0x05, 0x6F, 0xCC, 0xA3, 0xCC, 0x82, 0xCA, 0x05,\n\t0x6F, 0xCC, 0xA8, 0xCC, 0x84, 0xCA, 0x05, 0x72,\n\t0xCC, 0xA3, 0xCC, 0x84, 0xCA, 0x05, 0x73, 0xCC,\n\t0x81, 0xCC, 0x87, 0xCA, 0x05, 0x73, 0xCC, 0x8C,\n\t0xCC, 0x87, 0xCA, 0x05, 0x73, 0xCC, 0xA3, 0xCC,\n\t// Bytes 3b40 - 3b7f\n\t0x87, 0xCA, 0x05, 0x75, 0xCC, 0x83, 0xCC, 0x81,\n\t0xCA, 0x05, 0x75, 0xCC, 0x84, 0xCC, 0x88, 0xCA,\n\t0x05, 0x75, 0xCC, 0x88, 0xCC, 0x80, 0xCA, 0x05,\n\t0x75, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x05, 0x75,\n\t0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x75, 0xCC,\n\t0x88, 0xCC, 0x8C, 0xCA, 0x05, 0x75, 0xCC, 0x9B,\n\t0xCC, 0x80, 0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC,\n\t0x81, 0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC, 0x83,\n\t// Bytes 3b80 - 3bbf\n\t0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC, 0x89, 0xCA,\n\t0x05, 0x75, 0xCC, 0x9B, 0xCC, 0xA3, 0xB6, 0x05,\n\t0xE1, 0xBE, 0xBF, 0xCC, 0x80, 0xCA, 0x05, 0xE1,\n\t0xBE, 0xBF, 0xCC, 0x81, 0xCA, 0x05, 0xE1, 0xBE,\n\t0xBF, 0xCD, 0x82, 0xCA, 0x05, 0xE1, 0xBF, 0xBE,\n\t0xCC, 0x80, 0xCA, 0x05, 0xE1, 0xBF, 0xBE, 0xCC,\n\t0x81, 0xCA, 0x05, 0xE1, 0xBF, 0xBE, 0xCD, 0x82,\n\t0xCA, 0x05, 0xE2, 0x86, 0x90, 0xCC, 0xB8, 0x05,\n\t// Bytes 3bc0 - 3bff\n\t0x05, 0xE2, 0x86, 0x92, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x86, 0x94, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x87, 0x90, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x87,\n\t0x92, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x87, 0x94,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x88, 0x83, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x88, 0x88, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x88, 0x8B, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x88, 0xA3, 0xCC, 0xB8, 0x05, 0x05,\n\t// Bytes 3c00 - 3c3f\n\t0xE2, 0x88, 0xA5, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x88, 0xBC, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89,\n\t0x83, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0x85,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0x88, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x89, 0x8D, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x89, 0xA1, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x89, 0xA4, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x89, 0xA5, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t// Bytes 3c40 - 3c7f\n\t0x89, 0xB2, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89,\n\t0xB3, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xB6,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xB7, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x89, 0xBA, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x89, 0xBB, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x89, 0xBC, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x89, 0xBD, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x8A, 0x82, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A,\n\t// Bytes 3c80 - 3cbf\n\t0x83, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x86,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x87, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x91, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x8A, 0x92, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x8A, 0xA2, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x8A, 0xA8, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x8A, 0xA9, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A,\n\t0xAB, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB2,\n\t// Bytes 3cc0 - 3cff\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB3, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB4, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x8A, 0xB5, 0xCC, 0xB8, 0x05,\n\t0x06, 0xCE, 0x91, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x91, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x95, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x95, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x95, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t// Bytes 3d00 - 3d3f\n\t0x06, 0xCE, 0x95, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x97, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x97, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x93, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t// Bytes 3d40 - 3d7f\n\t0x06, 0xCE, 0x99, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xA5, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xA5, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xA5, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t// Bytes 3d80 - 3dbf\n\t0x06, 0xCE, 0xA9, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xA9, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x80, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x81, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCD, 0x82, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB5, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t// Bytes 3dc0 - 3dff\n\t0x06, 0xCE, 0xB5, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB5, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB5, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x80, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x81, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCD, 0x82, 0xCD, 0x85, 0xDA,\n\t// Bytes 3e00 - 3e3f\n\t0x06, 0xCE, 0xB9, 0xCC, 0x88, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x88, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x88, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x93, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t// Bytes 3e40 - 3e7f\n\t0x06, 0xCE, 0xB9, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x88, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x88, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x88, 0xCD, 0x82, 0xCA,\n\t// Bytes 3e80 - 3ebf\n\t0x06, 0xCF, 0x85, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x93, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCF, 0x89, 0xCC, 0x80, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCF, 0x89, 0xCC, 0x81, 0xCD, 0x85, 0xDA,\n\t// Bytes 3ec0 - 3eff\n\t0x06, 0xCF, 0x89, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCF, 0x89, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCF, 0x89, 0xCD, 0x82, 0xCD, 0x85, 0xDA,\n\t0x06, 0xE0, 0xA4, 0xA8, 0xE0, 0xA4, 0xBC, 0x09,\n\t0x06, 0xE0, 0xA4, 0xB0, 0xE0, 0xA4, 0xBC, 0x09,\n\t0x06, 0xE0, 0xA4, 0xB3, 0xE0, 0xA4, 0xBC, 0x09,\n\t0x06, 0xE0, 0xB1, 0x86, 0xE0, 0xB1, 0x96, 0x85,\n\t0x06, 0xE0, 0xB7, 0x99, 0xE0, 0xB7, 0x8A, 0x11,\n\t// Bytes 3f00 - 3f3f\n\t0x06, 0xE3, 0x81, 0x86, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x8B, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x8D, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x8F, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x91, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x93, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x95, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x97, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 3f40 - 3f7f\n\t0x06, 0xE3, 0x81, 0x99, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x9B, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x9D, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x9F, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA1, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA4, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA6, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA8, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 3f80 - 3fbf\n\t0x06, 0xE3, 0x81, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xAF, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB2, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB2, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB5, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB5, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB8, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB8, 0xE3, 0x82, 0x9A, 0x0D,\n\t// Bytes 3fc0 - 3fff\n\t0x06, 0xE3, 0x81, 0xBB, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xBB, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x82, 0x9D, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xA6, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xAD, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB1, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4000 - 403f\n\t0x06, 0xE3, 0x82, 0xB3, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB5, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB7, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB9, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xBB, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xBD, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xBF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x81, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4040 - 407f\n\t0x06, 0xE3, 0x83, 0x84, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x86, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x95, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4080 - 40bf\n\t0x06, 0xE3, 0x83, 0x95, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0xB0, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0xB1, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 40c0 - 40ff\n\t0x06, 0xE3, 0x83, 0xB2, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0xBD, 0xE3, 0x82, 0x99, 0x0D,\n\t0x08, 0xCE, 0x91, 0xCC, 0x93, 0xCC, 0x80, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC,\n\t0x93, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0x91, 0xCC, 0x94, 0xCC, 0x81, 0xCD,\n\t// Bytes 4100 - 413f\n\t0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC, 0x94, 0xCD,\n\t0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC,\n\t0x93, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0x97, 0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0x97, 0xCC, 0x93, 0xCD, 0x82, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC, 0x94, 0xCC,\n\t0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t// Bytes 4140 - 417f\n\t0x97, 0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xA9, 0xCC, 0x93, 0xCC, 0x80, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC,\n\t0x93, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xA9, 0xCC, 0x94, 0xCC, 0x81, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC, 0x94, 0xCD,\n\t// Bytes 4180 - 41bf\n\t0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC,\n\t0x93, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xB1, 0xCC, 0x93, 0xCD, 0x82, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC, 0x94, 0xCC,\n\t0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xB1, 0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB,\n\t// Bytes 41c0 - 41ff\n\t0x08, 0xCE, 0xB7, 0xCC, 0x93, 0xCC, 0x80, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC,\n\t0x93, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xB7, 0xCC, 0x94, 0xCC, 0x81, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC, 0x94, 0xCD,\n\t0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC,\n\t// Bytes 4200 - 423f\n\t0x93, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCF,\n\t0x89, 0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCF, 0x89, 0xCC, 0x93, 0xCD, 0x82, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC, 0x94, 0xCC,\n\t0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB,\n\t0x08, 0xF0, 0x91, 0x82, 0x99, 0xF0, 0x91, 0x82,\n\t// Bytes 4240 - 427f\n\t0xBA, 0x09, 0x08, 0xF0, 0x91, 0x82, 0x9B, 0xF0,\n\t0x91, 0x82, 0xBA, 0x09, 0x08, 0xF0, 0x91, 0x82,\n\t0xA5, 0xF0, 0x91, 0x82, 0xBA, 0x09, 0x42, 0xC2,\n\t0xB4, 0x01, 0x43, 0x20, 0xCC, 0x81, 0xC9, 0x43,\n\t0x20, 0xCC, 0x83, 0xC9, 0x43, 0x20, 0xCC, 0x84,\n\t0xC9, 0x43, 0x20, 0xCC, 0x85, 0xC9, 0x43, 0x20,\n\t0xCC, 0x86, 0xC9, 0x43, 0x20, 0xCC, 0x87, 0xC9,\n\t0x43, 0x20, 0xCC, 0x88, 0xC9, 0x43, 0x20, 0xCC,\n\t// Bytes 4280 - 42bf\n\t0x8A, 0xC9, 0x43, 0x20, 0xCC, 0x8B, 0xC9, 0x43,\n\t0x20, 0xCC, 0x93, 0xC9, 0x43, 0x20, 0xCC, 0x94,\n\t0xC9, 0x43, 0x20, 0xCC, 0xA7, 0xA5, 0x43, 0x20,\n\t0xCC, 0xA8, 0xA5, 0x43, 0x20, 0xCC, 0xB3, 0xB5,\n\t0x43, 0x20, 0xCD, 0x82, 0xC9, 0x43, 0x20, 0xCD,\n\t0x85, 0xD9, 0x43, 0x20, 0xD9, 0x8B, 0x59, 0x43,\n\t0x20, 0xD9, 0x8C, 0x5D, 0x43, 0x20, 0xD9, 0x8D,\n\t0x61, 0x43, 0x20, 0xD9, 0x8E, 0x65, 0x43, 0x20,\n\t// Bytes 42c0 - 42ff\n\t0xD9, 0x8F, 0x69, 0x43, 0x20, 0xD9, 0x90, 0x6D,\n\t0x43, 0x20, 0xD9, 0x91, 0x71, 0x43, 0x20, 0xD9,\n\t0x92, 0x75, 0x43, 0x41, 0xCC, 0x8A, 0xC9, 0x43,\n\t0x73, 0xCC, 0x87, 0xC9, 0x44, 0x20, 0xE3, 0x82,\n\t0x99, 0x0D, 0x44, 0x20, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x44, 0xC2, 0xA8, 0xCC, 0x81, 0xCA, 0x44, 0xCE,\n\t0x91, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0x95, 0xCC,\n\t0x81, 0xC9, 0x44, 0xCE, 0x97, 0xCC, 0x81, 0xC9,\n\t// Bytes 4300 - 433f\n\t0x44, 0xCE, 0x99, 0xCC, 0x81, 0xC9, 0x44, 0xCE,\n\t0x9F, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0xA5, 0xCC,\n\t0x81, 0xC9, 0x44, 0xCE, 0xA5, 0xCC, 0x88, 0xC9,\n\t0x44, 0xCE, 0xA9, 0xCC, 0x81, 0xC9, 0x44, 0xCE,\n\t0xB1, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0xB5, 0xCC,\n\t0x81, 0xC9, 0x44, 0xCE, 0xB7, 0xCC, 0x81, 0xC9,\n\t0x44, 0xCE, 0xB9, 0xCC, 0x81, 0xC9, 0x44, 0xCE,\n\t0xBF, 0xCC, 0x81, 0xC9, 0x44, 0xCF, 0x85, 0xCC,\n\t// Bytes 4340 - 437f\n\t0x81, 0xC9, 0x44, 0xCF, 0x89, 0xCC, 0x81, 0xC9,\n\t0x44, 0xD7, 0x90, 0xD6, 0xB7, 0x31, 0x44, 0xD7,\n\t0x90, 0xD6, 0xB8, 0x35, 0x44, 0xD7, 0x90, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x91, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x91, 0xD6, 0xBF, 0x49, 0x44, 0xD7,\n\t0x92, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x93, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x94, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x95, 0xD6, 0xB9, 0x39, 0x44, 0xD7,\n\t// Bytes 4380 - 43bf\n\t0x95, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x96, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x98, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x99, 0xD6, 0xB4, 0x25, 0x44, 0xD7,\n\t0x99, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x9A, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x9B, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x9B, 0xD6, 0xBF, 0x49, 0x44, 0xD7,\n\t0x9C, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x9E, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0xA0, 0xD6, 0xBC, 0x41,\n\t// Bytes 43c0 - 43ff\n\t0x44, 0xD7, 0xA1, 0xD6, 0xBC, 0x41, 0x44, 0xD7,\n\t0xA3, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA4, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0xA4, 0xD6, 0xBF, 0x49,\n\t0x44, 0xD7, 0xA6, 0xD6, 0xBC, 0x41, 0x44, 0xD7,\n\t0xA7, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA8, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0xA9, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0xA9, 0xD7, 0x81, 0x4D, 0x44, 0xD7,\n\t0xA9, 0xD7, 0x82, 0x51, 0x44, 0xD7, 0xAA, 0xD6,\n\t// Bytes 4400 - 443f\n\t0xBC, 0x41, 0x44, 0xD7, 0xB2, 0xD6, 0xB7, 0x31,\n\t0x44, 0xD8, 0xA7, 0xD9, 0x8B, 0x59, 0x44, 0xD8,\n\t0xA7, 0xD9, 0x93, 0xC9, 0x44, 0xD8, 0xA7, 0xD9,\n\t0x94, 0xC9, 0x44, 0xD8, 0xA7, 0xD9, 0x95, 0xB5,\n\t0x44, 0xD8, 0xB0, 0xD9, 0xB0, 0x79, 0x44, 0xD8,\n\t0xB1, 0xD9, 0xB0, 0x79, 0x44, 0xD9, 0x80, 0xD9,\n\t0x8B, 0x59, 0x44, 0xD9, 0x80, 0xD9, 0x8E, 0x65,\n\t0x44, 0xD9, 0x80, 0xD9, 0x8F, 0x69, 0x44, 0xD9,\n\t// Bytes 4440 - 447f\n\t0x80, 0xD9, 0x90, 0x6D, 0x44, 0xD9, 0x80, 0xD9,\n\t0x91, 0x71, 0x44, 0xD9, 0x80, 0xD9, 0x92, 0x75,\n\t0x44, 0xD9, 0x87, 0xD9, 0xB0, 0x79, 0x44, 0xD9,\n\t0x88, 0xD9, 0x94, 0xC9, 0x44, 0xD9, 0x89, 0xD9,\n\t0xB0, 0x79, 0x44, 0xD9, 0x8A, 0xD9, 0x94, 0xC9,\n\t0x44, 0xDB, 0x92, 0xD9, 0x94, 0xC9, 0x44, 0xDB,\n\t0x95, 0xD9, 0x94, 0xC9, 0x45, 0x20, 0xCC, 0x88,\n\t0xCC, 0x80, 0xCA, 0x45, 0x20, 0xCC, 0x88, 0xCC,\n\t// Bytes 4480 - 44bf\n\t0x81, 0xCA, 0x45, 0x20, 0xCC, 0x88, 0xCD, 0x82,\n\t0xCA, 0x45, 0x20, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x45, 0x20, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x45,\n\t0x20, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x45, 0x20,\n\t0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x45, 0x20, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCA, 0x45, 0x20, 0xCC, 0x94,\n\t0xCD, 0x82, 0xCA, 0x45, 0x20, 0xD9, 0x8C, 0xD9,\n\t0x91, 0x72, 0x45, 0x20, 0xD9, 0x8D, 0xD9, 0x91,\n\t// Bytes 44c0 - 44ff\n\t0x72, 0x45, 0x20, 0xD9, 0x8E, 0xD9, 0x91, 0x72,\n\t0x45, 0x20, 0xD9, 0x8F, 0xD9, 0x91, 0x72, 0x45,\n\t0x20, 0xD9, 0x90, 0xD9, 0x91, 0x72, 0x45, 0x20,\n\t0xD9, 0x91, 0xD9, 0xB0, 0x7A, 0x45, 0xE2, 0xAB,\n\t0x9D, 0xCC, 0xB8, 0x05, 0x46, 0xCE, 0xB9, 0xCC,\n\t0x88, 0xCC, 0x81, 0xCA, 0x46, 0xCF, 0x85, 0xCC,\n\t0x88, 0xCC, 0x81, 0xCA, 0x46, 0xD7, 0xA9, 0xD6,\n\t0xBC, 0xD7, 0x81, 0x4E, 0x46, 0xD7, 0xA9, 0xD6,\n\t// Bytes 4500 - 453f\n\t0xBC, 0xD7, 0x82, 0x52, 0x46, 0xD9, 0x80, 0xD9,\n\t0x8E, 0xD9, 0x91, 0x72, 0x46, 0xD9, 0x80, 0xD9,\n\t0x8F, 0xD9, 0x91, 0x72, 0x46, 0xD9, 0x80, 0xD9,\n\t0x90, 0xD9, 0x91, 0x72, 0x46, 0xE0, 0xA4, 0x95,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0x96,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0x97,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0x9C,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xA1,\n\t// Bytes 4540 - 457f\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xA2,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xAB,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xAF,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA6, 0xA1,\n\t0xE0, 0xA6, 0xBC, 0x09, 0x46, 0xE0, 0xA6, 0xA2,\n\t0xE0, 0xA6, 0xBC, 0x09, 0x46, 0xE0, 0xA6, 0xAF,\n\t0xE0, 0xA6, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0x96,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0x97,\n\t// Bytes 4580 - 45bf\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0x9C,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0xAB,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0xB2,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0xB8,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xAC, 0xA1,\n\t0xE0, 0xAC, 0xBC, 0x09, 0x46, 0xE0, 0xAC, 0xA2,\n\t0xE0, 0xAC, 0xBC, 0x09, 0x46, 0xE0, 0xBE, 0xB2,\n\t0xE0, 0xBE, 0x80, 0x9D, 0x46, 0xE0, 0xBE, 0xB3,\n\t// Bytes 45c0 - 45ff\n\t0xE0, 0xBE, 0x80, 0x9D, 0x46, 0xE3, 0x83, 0x86,\n\t0xE3, 0x82, 0x99, 0x0D, 0x48, 0xF0, 0x9D, 0x85,\n\t0x97, 0xF0, 0x9D, 0x85, 0xA5, 0xAD, 0x48, 0xF0,\n\t0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xAD,\n\t0x48, 0xF0, 0x9D, 0x86, 0xB9, 0xF0, 0x9D, 0x85,\n\t0xA5, 0xAD, 0x48, 0xF0, 0x9D, 0x86, 0xBA, 0xF0,\n\t0x9D, 0x85, 0xA5, 0xAD, 0x49, 0xE0, 0xBE, 0xB2,\n\t0xE0, 0xBD, 0xB1, 0xE0, 0xBE, 0x80, 0x9E, 0x49,\n\t// Bytes 4600 - 463f\n\t0xE0, 0xBE, 0xB3, 0xE0, 0xBD, 0xB1, 0xE0, 0xBE,\n\t0x80, 0x9E, 0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0,\n\t0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xAE, 0xAE,\n\t0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85,\n\t0xA5, 0xF0, 0x9D, 0x85, 0xAF, 0xAE, 0x4C, 0xF0,\n\t0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xF0,\n\t0x9D, 0x85, 0xB0, 0xAE, 0x4C, 0xF0, 0x9D, 0x85,\n\t0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85,\n\t// Bytes 4640 - 467f\n\t0xB1, 0xAE, 0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0,\n\t0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xB2, 0xAE,\n\t0x4C, 0xF0, 0x9D, 0x86, 0xB9, 0xF0, 0x9D, 0x85,\n\t0xA5, 0xF0, 0x9D, 0x85, 0xAE, 0xAE, 0x4C, 0xF0,\n\t0x9D, 0x86, 0xB9, 0xF0, 0x9D, 0x85, 0xA5, 0xF0,\n\t0x9D, 0x85, 0xAF, 0xAE, 0x4C, 0xF0, 0x9D, 0x86,\n\t0xBA, 0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85,\n\t0xAE, 0xAE, 0x4C, 0xF0, 0x9D, 0x86, 0xBA, 0xF0,\n\t// Bytes 4680 - 46bf\n\t0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xAF, 0xAE,\n\t0x83, 0x41, 0xCC, 0x82, 0xC9, 0x83, 0x41, 0xCC,\n\t0x86, 0xC9, 0x83, 0x41, 0xCC, 0x87, 0xC9, 0x83,\n\t0x41, 0xCC, 0x88, 0xC9, 0x83, 0x41, 0xCC, 0x8A,\n\t0xC9, 0x83, 0x41, 0xCC, 0xA3, 0xB5, 0x83, 0x43,\n\t0xCC, 0xA7, 0xA5, 0x83, 0x45, 0xCC, 0x82, 0xC9,\n\t0x83, 0x45, 0xCC, 0x84, 0xC9, 0x83, 0x45, 0xCC,\n\t0xA3, 0xB5, 0x83, 0x45, 0xCC, 0xA7, 0xA5, 0x83,\n\t// Bytes 46c0 - 46ff\n\t0x49, 0xCC, 0x88, 0xC9, 0x83, 0x4C, 0xCC, 0xA3,\n\t0xB5, 0x83, 0x4F, 0xCC, 0x82, 0xC9, 0x83, 0x4F,\n\t0xCC, 0x83, 0xC9, 0x83, 0x4F, 0xCC, 0x84, 0xC9,\n\t0x83, 0x4F, 0xCC, 0x87, 0xC9, 0x83, 0x4F, 0xCC,\n\t0x88, 0xC9, 0x83, 0x4F, 0xCC, 0x9B, 0xAD, 0x83,\n\t0x4F, 0xCC, 0xA3, 0xB5, 0x83, 0x4F, 0xCC, 0xA8,\n\t0xA5, 0x83, 0x52, 0xCC, 0xA3, 0xB5, 0x83, 0x53,\n\t0xCC, 0x81, 0xC9, 0x83, 0x53, 0xCC, 0x8C, 0xC9,\n\t// Bytes 4700 - 473f\n\t0x83, 0x53, 0xCC, 0xA3, 0xB5, 0x83, 0x55, 0xCC,\n\t0x83, 0xC9, 0x83, 0x55, 0xCC, 0x84, 0xC9, 0x83,\n\t0x55, 0xCC, 0x88, 0xC9, 0x83, 0x55, 0xCC, 0x9B,\n\t0xAD, 0x83, 0x61, 0xCC, 0x82, 0xC9, 0x83, 0x61,\n\t0xCC, 0x86, 0xC9, 0x83, 0x61, 0xCC, 0x87, 0xC9,\n\t0x83, 0x61, 0xCC, 0x88, 0xC9, 0x83, 0x61, 0xCC,\n\t0x8A, 0xC9, 0x83, 0x61, 0xCC, 0xA3, 0xB5, 0x83,\n\t0x63, 0xCC, 0xA7, 0xA5, 0x83, 0x65, 0xCC, 0x82,\n\t// Bytes 4740 - 477f\n\t0xC9, 0x83, 0x65, 0xCC, 0x84, 0xC9, 0x83, 0x65,\n\t0xCC, 0xA3, 0xB5, 0x83, 0x65, 0xCC, 0xA7, 0xA5,\n\t0x83, 0x69, 0xCC, 0x88, 0xC9, 0x83, 0x6C, 0xCC,\n\t0xA3, 0xB5, 0x83, 0x6F, 0xCC, 0x82, 0xC9, 0x83,\n\t0x6F, 0xCC, 0x83, 0xC9, 0x83, 0x6F, 0xCC, 0x84,\n\t0xC9, 0x83, 0x6F, 0xCC, 0x87, 0xC9, 0x83, 0x6F,\n\t0xCC, 0x88, 0xC9, 0x83, 0x6F, 0xCC, 0x9B, 0xAD,\n\t0x83, 0x6F, 0xCC, 0xA3, 0xB5, 0x83, 0x6F, 0xCC,\n\t// Bytes 4780 - 47bf\n\t0xA8, 0xA5, 0x83, 0x72, 0xCC, 0xA3, 0xB5, 0x83,\n\t0x73, 0xCC, 0x81, 0xC9, 0x83, 0x73, 0xCC, 0x8C,\n\t0xC9, 0x83, 0x73, 0xCC, 0xA3, 0xB5, 0x83, 0x75,\n\t0xCC, 0x83, 0xC9, 0x83, 0x75, 0xCC, 0x84, 0xC9,\n\t0x83, 0x75, 0xCC, 0x88, 0xC9, 0x83, 0x75, 0xCC,\n\t0x9B, 0xAD, 0x84, 0xCE, 0x91, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0x91, 0xCC, 0x94, 0xC9, 0x84, 0xCE,\n\t0x95, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0x95, 0xCC,\n\t// Bytes 47c0 - 47ff\n\t0x94, 0xC9, 0x84, 0xCE, 0x97, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0x97, 0xCC, 0x94, 0xC9, 0x84, 0xCE,\n\t0x99, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0x99, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0x9F, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0x9F, 0xCC, 0x94, 0xC9, 0x84, 0xCE,\n\t0xA5, 0xCC, 0x94, 0xC9, 0x84, 0xCE, 0xA9, 0xCC,\n\t0x93, 0xC9, 0x84, 0xCE, 0xA9, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCE, 0xB1, 0xCC, 0x80, 0xC9, 0x84, 0xCE,\n\t// Bytes 4800 - 483f\n\t0xB1, 0xCC, 0x81, 0xC9, 0x84, 0xCE, 0xB1, 0xCC,\n\t0x93, 0xC9, 0x84, 0xCE, 0xB1, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCE, 0xB1, 0xCD, 0x82, 0xC9, 0x84, 0xCE,\n\t0xB5, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB5, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0xB7, 0xCC, 0x80, 0xC9,\n\t0x84, 0xCE, 0xB7, 0xCC, 0x81, 0xC9, 0x84, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB7, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0xB7, 0xCD, 0x82, 0xC9,\n\t// Bytes 4840 - 487f\n\t0x84, 0xCE, 0xB9, 0xCC, 0x88, 0xC9, 0x84, 0xCE,\n\t0xB9, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB9, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0xBF, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0xBF, 0xCC, 0x94, 0xC9, 0x84, 0xCF,\n\t0x85, 0xCC, 0x88, 0xC9, 0x84, 0xCF, 0x85, 0xCC,\n\t0x93, 0xC9, 0x84, 0xCF, 0x85, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCF, 0x89, 0xCC, 0x80, 0xC9, 0x84, 0xCF,\n\t0x89, 0xCC, 0x81, 0xC9, 0x84, 0xCF, 0x89, 0xCC,\n\t// Bytes 4880 - 48bf\n\t0x93, 0xC9, 0x84, 0xCF, 0x89, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCF, 0x89, 0xCD, 0x82, 0xC9, 0x86, 0xCE,\n\t0x91, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t// Bytes 48c0 - 48ff\n\t0x97, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t// Bytes 4900 - 493f\n\t0xA9, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t// Bytes 4940 - 497f\n\t0xB1, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCF,\n\t// Bytes 4980 - 49bf\n\t0x89, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x42, 0xCC,\n\t0x80, 0xC9, 0x32, 0x42, 0xCC, 0x81, 0xC9, 0x32,\n\t0x42, 0xCC, 0x93, 0xC9, 0x32, 0x43, 0xE1, 0x85,\n\t// Bytes 49c0 - 49ff\n\t0xA1, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xA2, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xA3, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xA4, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xA5, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xA6, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xA7, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xA8, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xA9, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xAA, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xAB, 0x01, 0x00, 0x43,\n\t// Bytes 4a00 - 4a3f\n\t0xE1, 0x85, 0xAC, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xAD, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xAE, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xAF, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xB0, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xB1, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xB2, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xB3, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xB4, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xB5, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xAA, 0x01,\n\t// Bytes 4a40 - 4a7f\n\t0x00, 0x43, 0xE1, 0x86, 0xAC, 0x01, 0x00, 0x43,\n\t0xE1, 0x86, 0xAD, 0x01, 0x00, 0x43, 0xE1, 0x86,\n\t0xB0, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xB1, 0x01,\n\t0x00, 0x43, 0xE1, 0x86, 0xB2, 0x01, 0x00, 0x43,\n\t0xE1, 0x86, 0xB3, 0x01, 0x00, 0x43, 0xE1, 0x86,\n\t0xB4, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xB5, 0x01,\n\t0x00, 0x44, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x32,\n\t0x43, 0xE3, 0x82, 0x99, 0x0D, 0x03, 0x43, 0xE3,\n\t// Bytes 4a80 - 4abf\n\t0x82, 0x9A, 0x0D, 0x03, 0x46, 0xE0, 0xBD, 0xB1,\n\t0xE0, 0xBD, 0xB2, 0x9E, 0x26, 0x46, 0xE0, 0xBD,\n\t0xB1, 0xE0, 0xBD, 0xB4, 0xA2, 0x26, 0x46, 0xE0,\n\t0xBD, 0xB1, 0xE0, 0xBE, 0x80, 0x9E, 0x26, 0x00,\n\t0x01,\n}\n\n// lookup returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfcTrie) lookup(s []byte) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfcTrie) lookupUnsafe(s []byte) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfcValues[c0]\n\t}\n\ti := nfcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// lookupString returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfcTrie) lookupString(s string) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfcTrie) lookupStringUnsafe(s string) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfcValues[c0]\n\t}\n\ti := nfcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// nfcTrie. Total size: 10586 bytes (10.34 KiB). Checksum: dd926e82067bee11.\ntype nfcTrie struct{}\n\nfunc newNfcTrie(i int) *nfcTrie {\n\treturn &nfcTrie{}\n}\n\n// lookupValue determines the type of block n and looks up the value for b.\nfunc (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {\n\tswitch {\n\tcase n < 46:\n\t\treturn uint16(nfcValues[n<<6+uint32(b)])\n\tdefault:\n\t\tn -= 46\n\t\treturn uint16(nfcSparse.lookup(n, b))\n\t}\n}\n\n// nfcValues: 48 blocks, 3072 entries, 6144 bytes\n// The third block is the zero block.\nvar nfcValues = [3072]uint16{\n\t// Block 0x0, offset 0x0\n\t0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,\n\t// Block 0x1, offset 0x40\n\t0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,\n\t0x46: 0xa000, 0x47: 0xa000, 0x48: 0xa000, 0x49: 0xa000, 0x4a: 0xa000, 0x4b: 0xa000,\n\t0x4c: 0xa000, 0x4d: 0xa000, 0x4e: 0xa000, 0x4f: 0xa000, 0x50: 0xa000,\n\t0x52: 0xa000, 0x53: 0xa000, 0x54: 0xa000, 0x55: 0xa000, 0x56: 0xa000, 0x57: 0xa000,\n\t0x58: 0xa000, 0x59: 0xa000, 0x5a: 0xa000,\n\t0x61: 0xa000, 0x62: 0xa000, 0x63: 0xa000,\n\t0x64: 0xa000, 0x65: 0xa000, 0x66: 0xa000, 0x67: 0xa000, 0x68: 0xa000, 0x69: 0xa000,\n\t0x6a: 0xa000, 0x6b: 0xa000, 0x6c: 0xa000, 0x6d: 0xa000, 0x6e: 0xa000, 0x6f: 0xa000,\n\t0x70: 0xa000, 0x72: 0xa000, 0x73: 0xa000, 0x74: 0xa000, 0x75: 0xa000,\n\t0x76: 0xa000, 0x77: 0xa000, 0x78: 0xa000, 0x79: 0xa000, 0x7a: 0xa000,\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc0: 0x2f6f, 0xc1: 0x2f74, 0xc2: 0x4688, 0xc3: 0x2f79, 0xc4: 0x4697, 0xc5: 0x469c,\n\t0xc6: 0xa000, 0xc7: 0x46a6, 0xc8: 0x2fe2, 0xc9: 0x2fe7, 0xca: 0x46ab, 0xcb: 0x2ffb,\n\t0xcc: 0x306e, 0xcd: 0x3073, 0xce: 0x3078, 0xcf: 0x46bf, 0xd1: 0x3104,\n\t0xd2: 0x3127, 0xd3: 0x312c, 0xd4: 0x46c9, 0xd5: 0x46ce, 0xd6: 0x46dd,\n\t0xd8: 0xa000, 0xd9: 0x31b3, 0xda: 0x31b8, 0xdb: 0x31bd, 0xdc: 0x470f, 0xdd: 0x3235,\n\t0xe0: 0x327b, 0xe1: 0x3280, 0xe2: 0x4719, 0xe3: 0x3285,\n\t0xe4: 0x4728, 0xe5: 0x472d, 0xe6: 0xa000, 0xe7: 0x4737, 0xe8: 0x32ee, 0xe9: 0x32f3,\n\t0xea: 0x473c, 0xeb: 0x3307, 0xec: 0x337f, 0xed: 0x3384, 0xee: 0x3389, 0xef: 0x4750,\n\t0xf1: 0x3415, 0xf2: 0x3438, 0xf3: 0x343d, 0xf4: 0x475a, 0xf5: 0x475f,\n\t0xf6: 0x476e, 0xf8: 0xa000, 0xf9: 0x34c9, 0xfa: 0x34ce, 0xfb: 0x34d3,\n\t0xfc: 0x47a0, 0xfd: 0x3550, 0xff: 0x3569,\n\t// Block 0x4, offset 0x100\n\t0x100: 0x2f7e, 0x101: 0x328a, 0x102: 0x468d, 0x103: 0x471e, 0x104: 0x2f9c, 0x105: 0x32a8,\n\t0x106: 0x2fb0, 0x107: 0x32bc, 0x108: 0x2fb5, 0x109: 0x32c1, 0x10a: 0x2fba, 0x10b: 0x32c6,\n\t0x10c: 0x2fbf, 0x10d: 0x32cb, 0x10e: 0x2fc9, 0x10f: 0x32d5,\n\t0x112: 0x46b0, 0x113: 0x4741, 0x114: 0x2ff1, 0x115: 0x32fd, 0x116: 0x2ff6, 0x117: 0x3302,\n\t0x118: 0x3014, 0x119: 0x3320, 0x11a: 0x3005, 0x11b: 0x3311, 0x11c: 0x302d, 0x11d: 0x3339,\n\t0x11e: 0x3037, 0x11f: 0x3343, 0x120: 0x303c, 0x121: 0x3348, 0x122: 0x3046, 0x123: 0x3352,\n\t0x124: 0x304b, 0x125: 0x3357, 0x128: 0x307d, 0x129: 0x338e,\n\t0x12a: 0x3082, 0x12b: 0x3393, 0x12c: 0x3087, 0x12d: 0x3398, 0x12e: 0x30aa, 0x12f: 0x33b6,\n\t0x130: 0x308c, 0x134: 0x30b4, 0x135: 0x33c0,\n\t0x136: 0x30c8, 0x137: 0x33d9, 0x139: 0x30d2, 0x13a: 0x33e3, 0x13b: 0x30dc,\n\t0x13c: 0x33ed, 0x13d: 0x30d7, 0x13e: 0x33e8,\n\t// Block 0x5, offset 0x140\n\t0x143: 0x30ff, 0x144: 0x3410, 0x145: 0x3118,\n\t0x146: 0x3429, 0x147: 0x310e, 0x148: 0x341f,\n\t0x14c: 0x46d3, 0x14d: 0x4764, 0x14e: 0x3131, 0x14f: 0x3442, 0x150: 0x313b, 0x151: 0x344c,\n\t0x154: 0x3159, 0x155: 0x346a, 0x156: 0x3172, 0x157: 0x3483,\n\t0x158: 0x3163, 0x159: 0x3474, 0x15a: 0x46f6, 0x15b: 0x4787, 0x15c: 0x317c, 0x15d: 0x348d,\n\t0x15e: 0x318b, 0x15f: 0x349c, 0x160: 0x46fb, 0x161: 0x478c, 0x162: 0x31a4, 0x163: 0x34ba,\n\t0x164: 0x3195, 0x165: 0x34ab, 0x168: 0x4705, 0x169: 0x4796,\n\t0x16a: 0x470a, 0x16b: 0x479b, 0x16c: 0x31c2, 0x16d: 0x34d8, 0x16e: 0x31cc, 0x16f: 0x34e2,\n\t0x170: 0x31d1, 0x171: 0x34e7, 0x172: 0x31ef, 0x173: 0x3505, 0x174: 0x3212, 0x175: 0x3528,\n\t0x176: 0x323a, 0x177: 0x3555, 0x178: 0x324e, 0x179: 0x325d, 0x17a: 0x357d, 0x17b: 0x3267,\n\t0x17c: 0x3587, 0x17d: 0x326c, 0x17e: 0x358c, 0x17f: 0xa000,\n\t// Block 0x6, offset 0x180\n\t0x184: 0x8100, 0x185: 0x8100,\n\t0x186: 0x8100,\n\t0x18d: 0x2f88, 0x18e: 0x3294, 0x18f: 0x3096, 0x190: 0x33a2, 0x191: 0x3140,\n\t0x192: 0x3451, 0x193: 0x31d6, 0x194: 0x34ec, 0x195: 0x39cf, 0x196: 0x3b5e, 0x197: 0x39c8,\n\t0x198: 0x3b57, 0x199: 0x39d6, 0x19a: 0x3b65, 0x19b: 0x39c1, 0x19c: 0x3b50,\n\t0x19e: 0x38b0, 0x19f: 0x3a3f, 0x1a0: 0x38a9, 0x1a1: 0x3a38, 0x1a2: 0x35b3, 0x1a3: 0x35c5,\n\t0x1a6: 0x3041, 0x1a7: 0x334d, 0x1a8: 0x30be, 0x1a9: 0x33cf,\n\t0x1aa: 0x46ec, 0x1ab: 0x477d, 0x1ac: 0x3990, 0x1ad: 0x3b1f, 0x1ae: 0x35d7, 0x1af: 0x35dd,\n\t0x1b0: 0x33c5, 0x1b4: 0x3028, 0x1b5: 0x3334,\n\t0x1b8: 0x30fa, 0x1b9: 0x340b, 0x1ba: 0x38b7, 0x1bb: 0x3a46,\n\t0x1bc: 0x35ad, 0x1bd: 0x35bf, 0x1be: 0x35b9, 0x1bf: 0x35cb,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x2f8d, 0x1c1: 0x3299, 0x1c2: 0x2f92, 0x1c3: 0x329e, 0x1c4: 0x300a, 0x1c5: 0x3316,\n\t0x1c6: 0x300f, 0x1c7: 0x331b, 0x1c8: 0x309b, 0x1c9: 0x33a7, 0x1ca: 0x30a0, 0x1cb: 0x33ac,\n\t0x1cc: 0x3145, 0x1cd: 0x3456, 0x1ce: 0x314a, 0x1cf: 0x345b, 0x1d0: 0x3168, 0x1d1: 0x3479,\n\t0x1d2: 0x316d, 0x1d3: 0x347e, 0x1d4: 0x31db, 0x1d5: 0x34f1, 0x1d6: 0x31e0, 0x1d7: 0x34f6,\n\t0x1d8: 0x3186, 0x1d9: 0x3497, 0x1da: 0x319f, 0x1db: 0x34b5,\n\t0x1de: 0x305a, 0x1df: 0x3366,\n\t0x1e6: 0x4692, 0x1e7: 0x4723, 0x1e8: 0x46ba, 0x1e9: 0x474b,\n\t0x1ea: 0x395f, 0x1eb: 0x3aee, 0x1ec: 0x393c, 0x1ed: 0x3acb, 0x1ee: 0x46d8, 0x1ef: 0x4769,\n\t0x1f0: 0x3958, 0x1f1: 0x3ae7, 0x1f2: 0x3244, 0x1f3: 0x355f,\n\t// Block 0x8, offset 0x200\n\t0x200: 0x9932, 0x201: 0x9932, 0x202: 0x9932, 0x203: 0x9932, 0x204: 0x9932, 0x205: 0x8132,\n\t0x206: 0x9932, 0x207: 0x9932, 0x208: 0x9932, 0x209: 0x9932, 0x20a: 0x9932, 0x20b: 0x9932,\n\t0x20c: 0x9932, 0x20d: 0x8132, 0x20e: 0x8132, 0x20f: 0x9932, 0x210: 0x8132, 0x211: 0x9932,\n\t0x212: 0x8132, 0x213: 0x9932, 0x214: 0x9932, 0x215: 0x8133, 0x216: 0x812d, 0x217: 0x812d,\n\t0x218: 0x812d, 0x219: 0x812d, 0x21a: 0x8133, 0x21b: 0x992b, 0x21c: 0x812d, 0x21d: 0x812d,\n\t0x21e: 0x812d, 0x21f: 0x812d, 0x220: 0x812d, 0x221: 0x8129, 0x222: 0x8129, 0x223: 0x992d,\n\t0x224: 0x992d, 0x225: 0x992d, 0x226: 0x992d, 0x227: 0x9929, 0x228: 0x9929, 0x229: 0x812d,\n\t0x22a: 0x812d, 0x22b: 0x812d, 0x22c: 0x812d, 0x22d: 0x992d, 0x22e: 0x992d, 0x22f: 0x812d,\n\t0x230: 0x992d, 0x231: 0x992d, 0x232: 0x812d, 0x233: 0x812d, 0x234: 0x8101, 0x235: 0x8101,\n\t0x236: 0x8101, 0x237: 0x8101, 0x238: 0x9901, 0x239: 0x812d, 0x23a: 0x812d, 0x23b: 0x812d,\n\t0x23c: 0x812d, 0x23d: 0x8132, 0x23e: 0x8132, 0x23f: 0x8132,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x49ae, 0x241: 0x49b3, 0x242: 0x9932, 0x243: 0x49b8, 0x244: 0x4a71, 0x245: 0x9936,\n\t0x246: 0x8132, 0x247: 0x812d, 0x248: 0x812d, 0x249: 0x812d, 0x24a: 0x8132, 0x24b: 0x8132,\n\t0x24c: 0x8132, 0x24d: 0x812d, 0x24e: 0x812d, 0x250: 0x8132, 0x251: 0x8132,\n\t0x252: 0x8132, 0x253: 0x812d, 0x254: 0x812d, 0x255: 0x812d, 0x256: 0x812d, 0x257: 0x8132,\n\t0x258: 0x8133, 0x259: 0x812d, 0x25a: 0x812d, 0x25b: 0x8132, 0x25c: 0x8134, 0x25d: 0x8135,\n\t0x25e: 0x8135, 0x25f: 0x8134, 0x260: 0x8135, 0x261: 0x8135, 0x262: 0x8134, 0x263: 0x8132,\n\t0x264: 0x8132, 0x265: 0x8132, 0x266: 0x8132, 0x267: 0x8132, 0x268: 0x8132, 0x269: 0x8132,\n\t0x26a: 0x8132, 0x26b: 0x8132, 0x26c: 0x8132, 0x26d: 0x8132, 0x26e: 0x8132, 0x26f: 0x8132,\n\t0x274: 0x0170,\n\t0x27a: 0x8100,\n\t0x27e: 0x0037,\n\t// Block 0xa, offset 0x280\n\t0x284: 0x8100, 0x285: 0x35a1,\n\t0x286: 0x35e9, 0x287: 0x00ce, 0x288: 0x3607, 0x289: 0x3613, 0x28a: 0x3625,\n\t0x28c: 0x3643, 0x28e: 0x3655, 0x28f: 0x3673, 0x290: 0x3e08, 0x291: 0xa000,\n\t0x295: 0xa000, 0x297: 0xa000,\n\t0x299: 0xa000,\n\t0x29f: 0xa000, 0x2a1: 0xa000,\n\t0x2a5: 0xa000, 0x2a9: 0xa000,\n\t0x2aa: 0x3637, 0x2ab: 0x3667, 0x2ac: 0x47fe, 0x2ad: 0x3697, 0x2ae: 0x4828, 0x2af: 0x36a9,\n\t0x2b0: 0x3e70, 0x2b1: 0xa000, 0x2b5: 0xa000,\n\t0x2b7: 0xa000, 0x2b9: 0xa000,\n\t0x2bf: 0xa000,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0x3721, 0x2c1: 0x372d, 0x2c3: 0x371b,\n\t0x2c6: 0xa000, 0x2c7: 0x3709,\n\t0x2cc: 0x375d, 0x2cd: 0x3745, 0x2ce: 0x376f, 0x2d0: 0xa000,\n\t0x2d3: 0xa000, 0x2d5: 0xa000, 0x2d6: 0xa000, 0x2d7: 0xa000,\n\t0x2d8: 0xa000, 0x2d9: 0x3751, 0x2da: 0xa000,\n\t0x2de: 0xa000, 0x2e3: 0xa000,\n\t0x2e7: 0xa000,\n\t0x2eb: 0xa000, 0x2ed: 0xa000,\n\t0x2f0: 0xa000, 0x2f3: 0xa000, 0x2f5: 0xa000,\n\t0x2f6: 0xa000, 0x2f7: 0xa000, 0x2f8: 0xa000, 0x2f9: 0x37d5, 0x2fa: 0xa000,\n\t0x2fe: 0xa000,\n\t// Block 0xc, offset 0x300\n\t0x301: 0x3733, 0x302: 0x37b7,\n\t0x310: 0x370f, 0x311: 0x3793,\n\t0x312: 0x3715, 0x313: 0x3799, 0x316: 0x3727, 0x317: 0x37ab,\n\t0x318: 0xa000, 0x319: 0xa000, 0x31a: 0x3829, 0x31b: 0x382f, 0x31c: 0x3739, 0x31d: 0x37bd,\n\t0x31e: 0x373f, 0x31f: 0x37c3, 0x322: 0x374b, 0x323: 0x37cf,\n\t0x324: 0x3757, 0x325: 0x37db, 0x326: 0x3763, 0x327: 0x37e7, 0x328: 0xa000, 0x329: 0xa000,\n\t0x32a: 0x3835, 0x32b: 0x383b, 0x32c: 0x378d, 0x32d: 0x3811, 0x32e: 0x3769, 0x32f: 0x37ed,\n\t0x330: 0x3775, 0x331: 0x37f9, 0x332: 0x377b, 0x333: 0x37ff, 0x334: 0x3781, 0x335: 0x3805,\n\t0x338: 0x3787, 0x339: 0x380b,\n\t// Block 0xd, offset 0x340\n\t0x351: 0x812d,\n\t0x352: 0x8132, 0x353: 0x8132, 0x354: 0x8132, 0x355: 0x8132, 0x356: 0x812d, 0x357: 0x8132,\n\t0x358: 0x8132, 0x359: 0x8132, 0x35a: 0x812e, 0x35b: 0x812d, 0x35c: 0x8132, 0x35d: 0x8132,\n\t0x35e: 0x8132, 0x35f: 0x8132, 0x360: 0x8132, 0x361: 0x8132, 0x362: 0x812d, 0x363: 0x812d,\n\t0x364: 0x812d, 0x365: 0x812d, 0x366: 0x812d, 0x367: 0x812d, 0x368: 0x8132, 0x369: 0x8132,\n\t0x36a: 0x812d, 0x36b: 0x8132, 0x36c: 0x8132, 0x36d: 0x812e, 0x36e: 0x8131, 0x36f: 0x8132,\n\t0x370: 0x8105, 0x371: 0x8106, 0x372: 0x8107, 0x373: 0x8108, 0x374: 0x8109, 0x375: 0x810a,\n\t0x376: 0x810b, 0x377: 0x810c, 0x378: 0x810d, 0x379: 0x810e, 0x37a: 0x810e, 0x37b: 0x810f,\n\t0x37c: 0x8110, 0x37d: 0x8111, 0x37f: 0x8112,\n\t// Block 0xe, offset 0x380\n\t0x388: 0xa000, 0x38a: 0xa000, 0x38b: 0x8116,\n\t0x38c: 0x8117, 0x38d: 0x8118, 0x38e: 0x8119, 0x38f: 0x811a, 0x390: 0x811b, 0x391: 0x811c,\n\t0x392: 0x811d, 0x393: 0x9932, 0x394: 0x9932, 0x395: 0x992d, 0x396: 0x812d, 0x397: 0x8132,\n\t0x398: 0x8132, 0x399: 0x8132, 0x39a: 0x8132, 0x39b: 0x8132, 0x39c: 0x812d, 0x39d: 0x8132,\n\t0x39e: 0x8132, 0x39f: 0x812d,\n\t0x3b0: 0x811e,\n\t// Block 0xf, offset 0x3c0\n\t0x3d3: 0x812d, 0x3d4: 0x8132, 0x3d5: 0x8132, 0x3d6: 0x8132, 0x3d7: 0x8132,\n\t0x3d8: 0x8132, 0x3d9: 0x8132, 0x3da: 0x8132, 0x3db: 0x8132, 0x3dc: 0x8132, 0x3dd: 0x8132,\n\t0x3de: 0x8132, 0x3df: 0x8132, 0x3e0: 0x8132, 0x3e1: 0x8132, 0x3e3: 0x812d,\n\t0x3e4: 0x8132, 0x3e5: 0x8132, 0x3e6: 0x812d, 0x3e7: 0x8132, 0x3e8: 0x8132, 0x3e9: 0x812d,\n\t0x3ea: 0x8132, 0x3eb: 0x8132, 0x3ec: 0x8132, 0x3ed: 0x812d, 0x3ee: 0x812d, 0x3ef: 0x812d,\n\t0x3f0: 0x8116, 0x3f1: 0x8117, 0x3f2: 0x8118, 0x3f3: 0x8132, 0x3f4: 0x8132, 0x3f5: 0x8132,\n\t0x3f6: 0x812d, 0x3f7: 0x8132, 0x3f8: 0x8132, 0x3f9: 0x812d, 0x3fa: 0x812d, 0x3fb: 0x8132,\n\t0x3fc: 0x8132, 0x3fd: 0x8132, 0x3fe: 0x8132, 0x3ff: 0x8132,\n\t// Block 0x10, offset 0x400\n\t0x405: 0xa000,\n\t0x406: 0x2d26, 0x407: 0xa000, 0x408: 0x2d2e, 0x409: 0xa000, 0x40a: 0x2d36, 0x40b: 0xa000,\n\t0x40c: 0x2d3e, 0x40d: 0xa000, 0x40e: 0x2d46, 0x411: 0xa000,\n\t0x412: 0x2d4e,\n\t0x434: 0x8102, 0x435: 0x9900,\n\t0x43a: 0xa000, 0x43b: 0x2d56,\n\t0x43c: 0xa000, 0x43d: 0x2d5e, 0x43e: 0xa000, 0x43f: 0xa000,\n\t// Block 0x11, offset 0x440\n\t0x440: 0x8132, 0x441: 0x8132, 0x442: 0x812d, 0x443: 0x8132, 0x444: 0x8132, 0x445: 0x8132,\n\t0x446: 0x8132, 0x447: 0x8132, 0x448: 0x8132, 0x449: 0x8132, 0x44a: 0x812d, 0x44b: 0x8132,\n\t0x44c: 0x8132, 0x44d: 0x8135, 0x44e: 0x812a, 0x44f: 0x812d, 0x450: 0x8129, 0x451: 0x8132,\n\t0x452: 0x8132, 0x453: 0x8132, 0x454: 0x8132, 0x455: 0x8132, 0x456: 0x8132, 0x457: 0x8132,\n\t0x458: 0x8132, 0x459: 0x8132, 0x45a: 0x8132, 0x45b: 0x8132, 0x45c: 0x8132, 0x45d: 0x8132,\n\t0x45e: 0x8132, 0x45f: 0x8132, 0x460: 0x8132, 0x461: 0x8132, 0x462: 0x8132, 0x463: 0x8132,\n\t0x464: 0x8132, 0x465: 0x8132, 0x466: 0x8132, 0x467: 0x8132, 0x468: 0x8132, 0x469: 0x8132,\n\t0x46a: 0x8132, 0x46b: 0x8132, 0x46c: 0x8132, 0x46d: 0x8132, 0x46e: 0x8132, 0x46f: 0x8132,\n\t0x470: 0x8132, 0x471: 0x8132, 0x472: 0x8132, 0x473: 0x8132, 0x474: 0x8132, 0x475: 0x8132,\n\t0x476: 0x8133, 0x477: 0x8131, 0x478: 0x8131, 0x479: 0x812d, 0x47b: 0x8132,\n\t0x47c: 0x8134, 0x47d: 0x812d, 0x47e: 0x8132, 0x47f: 0x812d,\n\t// Block 0x12, offset 0x480\n\t0x480: 0x2f97, 0x481: 0x32a3, 0x482: 0x2fa1, 0x483: 0x32ad, 0x484: 0x2fa6, 0x485: 0x32b2,\n\t0x486: 0x2fab, 0x487: 0x32b7, 0x488: 0x38cc, 0x489: 0x3a5b, 0x48a: 0x2fc4, 0x48b: 0x32d0,\n\t0x48c: 0x2fce, 0x48d: 0x32da, 0x48e: 0x2fdd, 0x48f: 0x32e9, 0x490: 0x2fd3, 0x491: 0x32df,\n\t0x492: 0x2fd8, 0x493: 0x32e4, 0x494: 0x38ef, 0x495: 0x3a7e, 0x496: 0x38f6, 0x497: 0x3a85,\n\t0x498: 0x3019, 0x499: 0x3325, 0x49a: 0x301e, 0x49b: 0x332a, 0x49c: 0x3904, 0x49d: 0x3a93,\n\t0x49e: 0x3023, 0x49f: 0x332f, 0x4a0: 0x3032, 0x4a1: 0x333e, 0x4a2: 0x3050, 0x4a3: 0x335c,\n\t0x4a4: 0x305f, 0x4a5: 0x336b, 0x4a6: 0x3055, 0x4a7: 0x3361, 0x4a8: 0x3064, 0x4a9: 0x3370,\n\t0x4aa: 0x3069, 0x4ab: 0x3375, 0x4ac: 0x30af, 0x4ad: 0x33bb, 0x4ae: 0x390b, 0x4af: 0x3a9a,\n\t0x4b0: 0x30b9, 0x4b1: 0x33ca, 0x4b2: 0x30c3, 0x4b3: 0x33d4, 0x4b4: 0x30cd, 0x4b5: 0x33de,\n\t0x4b6: 0x46c4, 0x4b7: 0x4755, 0x4b8: 0x3912, 0x4b9: 0x3aa1, 0x4ba: 0x30e6, 0x4bb: 0x33f7,\n\t0x4bc: 0x30e1, 0x4bd: 0x33f2, 0x4be: 0x30eb, 0x4bf: 0x33fc,\n\t// Block 0x13, offset 0x4c0\n\t0x4c0: 0x30f0, 0x4c1: 0x3401, 0x4c2: 0x30f5, 0x4c3: 0x3406, 0x4c4: 0x3109, 0x4c5: 0x341a,\n\t0x4c6: 0x3113, 0x4c7: 0x3424, 0x4c8: 0x3122, 0x4c9: 0x3433, 0x4ca: 0x311d, 0x4cb: 0x342e,\n\t0x4cc: 0x3935, 0x4cd: 0x3ac4, 0x4ce: 0x3943, 0x4cf: 0x3ad2, 0x4d0: 0x394a, 0x4d1: 0x3ad9,\n\t0x4d2: 0x3951, 0x4d3: 0x3ae0, 0x4d4: 0x314f, 0x4d5: 0x3460, 0x4d6: 0x3154, 0x4d7: 0x3465,\n\t0x4d8: 0x315e, 0x4d9: 0x346f, 0x4da: 0x46f1, 0x4db: 0x4782, 0x4dc: 0x3997, 0x4dd: 0x3b26,\n\t0x4de: 0x3177, 0x4df: 0x3488, 0x4e0: 0x3181, 0x4e1: 0x3492, 0x4e2: 0x4700, 0x4e3: 0x4791,\n\t0x4e4: 0x399e, 0x4e5: 0x3b2d, 0x4e6: 0x39a5, 0x4e7: 0x3b34, 0x4e8: 0x39ac, 0x4e9: 0x3b3b,\n\t0x4ea: 0x3190, 0x4eb: 0x34a1, 0x4ec: 0x319a, 0x4ed: 0x34b0, 0x4ee: 0x31ae, 0x4ef: 0x34c4,\n\t0x4f0: 0x31a9, 0x4f1: 0x34bf, 0x4f2: 0x31ea, 0x4f3: 0x3500, 0x4f4: 0x31f9, 0x4f5: 0x350f,\n\t0x4f6: 0x31f4, 0x4f7: 0x350a, 0x4f8: 0x39b3, 0x4f9: 0x3b42, 0x4fa: 0x39ba, 0x4fb: 0x3b49,\n\t0x4fc: 0x31fe, 0x4fd: 0x3514, 0x4fe: 0x3203, 0x4ff: 0x3519,\n\t// Block 0x14, offset 0x500\n\t0x500: 0x3208, 0x501: 0x351e, 0x502: 0x320d, 0x503: 0x3523, 0x504: 0x321c, 0x505: 0x3532,\n\t0x506: 0x3217, 0x507: 0x352d, 0x508: 0x3221, 0x509: 0x353c, 0x50a: 0x3226, 0x50b: 0x3541,\n\t0x50c: 0x322b, 0x50d: 0x3546, 0x50e: 0x3249, 0x50f: 0x3564, 0x510: 0x3262, 0x511: 0x3582,\n\t0x512: 0x3271, 0x513: 0x3591, 0x514: 0x3276, 0x515: 0x3596, 0x516: 0x337a, 0x517: 0x34a6,\n\t0x518: 0x3537, 0x519: 0x3573, 0x51b: 0x35d1,\n\t0x520: 0x46a1, 0x521: 0x4732, 0x522: 0x2f83, 0x523: 0x328f,\n\t0x524: 0x3878, 0x525: 0x3a07, 0x526: 0x3871, 0x527: 0x3a00, 0x528: 0x3886, 0x529: 0x3a15,\n\t0x52a: 0x387f, 0x52b: 0x3a0e, 0x52c: 0x38be, 0x52d: 0x3a4d, 0x52e: 0x3894, 0x52f: 0x3a23,\n\t0x530: 0x388d, 0x531: 0x3a1c, 0x532: 0x38a2, 0x533: 0x3a31, 0x534: 0x389b, 0x535: 0x3a2a,\n\t0x536: 0x38c5, 0x537: 0x3a54, 0x538: 0x46b5, 0x539: 0x4746, 0x53a: 0x3000, 0x53b: 0x330c,\n\t0x53c: 0x2fec, 0x53d: 0x32f8, 0x53e: 0x38da, 0x53f: 0x3a69,\n\t// Block 0x15, offset 0x540\n\t0x540: 0x38d3, 0x541: 0x3a62, 0x542: 0x38e8, 0x543: 0x3a77, 0x544: 0x38e1, 0x545: 0x3a70,\n\t0x546: 0x38fd, 0x547: 0x3a8c, 0x548: 0x3091, 0x549: 0x339d, 0x54a: 0x30a5, 0x54b: 0x33b1,\n\t0x54c: 0x46e7, 0x54d: 0x4778, 0x54e: 0x3136, 0x54f: 0x3447, 0x550: 0x3920, 0x551: 0x3aaf,\n\t0x552: 0x3919, 0x553: 0x3aa8, 0x554: 0x392e, 0x555: 0x3abd, 0x556: 0x3927, 0x557: 0x3ab6,\n\t0x558: 0x3989, 0x559: 0x3b18, 0x55a: 0x396d, 0x55b: 0x3afc, 0x55c: 0x3966, 0x55d: 0x3af5,\n\t0x55e: 0x397b, 0x55f: 0x3b0a, 0x560: 0x3974, 0x561: 0x3b03, 0x562: 0x3982, 0x563: 0x3b11,\n\t0x564: 0x31e5, 0x565: 0x34fb, 0x566: 0x31c7, 0x567: 0x34dd, 0x568: 0x39e4, 0x569: 0x3b73,\n\t0x56a: 0x39dd, 0x56b: 0x3b6c, 0x56c: 0x39f2, 0x56d: 0x3b81, 0x56e: 0x39eb, 0x56f: 0x3b7a,\n\t0x570: 0x39f9, 0x571: 0x3b88, 0x572: 0x3230, 0x573: 0x354b, 0x574: 0x3258, 0x575: 0x3578,\n\t0x576: 0x3253, 0x577: 0x356e, 0x578: 0x323f, 0x579: 0x355a,\n\t// Block 0x16, offset 0x580\n\t0x580: 0x4804, 0x581: 0x480a, 0x582: 0x491e, 0x583: 0x4936, 0x584: 0x4926, 0x585: 0x493e,\n\t0x586: 0x492e, 0x587: 0x4946, 0x588: 0x47aa, 0x589: 0x47b0, 0x58a: 0x488e, 0x58b: 0x48a6,\n\t0x58c: 0x4896, 0x58d: 0x48ae, 0x58e: 0x489e, 0x58f: 0x48b6, 0x590: 0x4816, 0x591: 0x481c,\n\t0x592: 0x3db8, 0x593: 0x3dc8, 0x594: 0x3dc0, 0x595: 0x3dd0,\n\t0x598: 0x47b6, 0x599: 0x47bc, 0x59a: 0x3ce8, 0x59b: 0x3cf8, 0x59c: 0x3cf0, 0x59d: 0x3d00,\n\t0x5a0: 0x482e, 0x5a1: 0x4834, 0x5a2: 0x494e, 0x5a3: 0x4966,\n\t0x5a4: 0x4956, 0x5a5: 0x496e, 0x5a6: 0x495e, 0x5a7: 0x4976, 0x5a8: 0x47c2, 0x5a9: 0x47c8,\n\t0x5aa: 0x48be, 0x5ab: 0x48d6, 0x5ac: 0x48c6, 0x5ad: 0x48de, 0x5ae: 0x48ce, 0x5af: 0x48e6,\n\t0x5b0: 0x4846, 0x5b1: 0x484c, 0x5b2: 0x3e18, 0x5b3: 0x3e30, 0x5b4: 0x3e20, 0x5b5: 0x3e38,\n\t0x5b6: 0x3e28, 0x5b7: 0x3e40, 0x5b8: 0x47ce, 0x5b9: 0x47d4, 0x5ba: 0x3d18, 0x5bb: 0x3d30,\n\t0x5bc: 0x3d20, 0x5bd: 0x3d38, 0x5be: 0x3d28, 0x5bf: 0x3d40,\n\t// Block 0x17, offset 0x5c0\n\t0x5c0: 0x4852, 0x5c1: 0x4858, 0x5c2: 0x3e48, 0x5c3: 0x3e58, 0x5c4: 0x3e50, 0x5c5: 0x3e60,\n\t0x5c8: 0x47da, 0x5c9: 0x47e0, 0x5ca: 0x3d48, 0x5cb: 0x3d58,\n\t0x5cc: 0x3d50, 0x5cd: 0x3d60, 0x5d0: 0x4864, 0x5d1: 0x486a,\n\t0x5d2: 0x3e80, 0x5d3: 0x3e98, 0x5d4: 0x3e88, 0x5d5: 0x3ea0, 0x5d6: 0x3e90, 0x5d7: 0x3ea8,\n\t0x5d9: 0x47e6, 0x5db: 0x3d68, 0x5dd: 0x3d70,\n\t0x5df: 0x3d78, 0x5e0: 0x487c, 0x5e1: 0x4882, 0x5e2: 0x497e, 0x5e3: 0x4996,\n\t0x5e4: 0x4986, 0x5e5: 0x499e, 0x5e6: 0x498e, 0x5e7: 0x49a6, 0x5e8: 0x47ec, 0x5e9: 0x47f2,\n\t0x5ea: 0x48ee, 0x5eb: 0x4906, 0x5ec: 0x48f6, 0x5ed: 0x490e, 0x5ee: 0x48fe, 0x5ef: 0x4916,\n\t0x5f0: 0x47f8, 0x5f1: 0x431e, 0x5f2: 0x3691, 0x5f3: 0x4324, 0x5f4: 0x4822, 0x5f5: 0x432a,\n\t0x5f6: 0x36a3, 0x5f7: 0x4330, 0x5f8: 0x36c1, 0x5f9: 0x4336, 0x5fa: 0x36d9, 0x5fb: 0x433c,\n\t0x5fc: 0x4870, 0x5fd: 0x4342,\n\t// Block 0x18, offset 0x600\n\t0x600: 0x3da0, 0x601: 0x3da8, 0x602: 0x4184, 0x603: 0x41a2, 0x604: 0x418e, 0x605: 0x41ac,\n\t0x606: 0x4198, 0x607: 0x41b6, 0x608: 0x3cd8, 0x609: 0x3ce0, 0x60a: 0x40d0, 0x60b: 0x40ee,\n\t0x60c: 0x40da, 0x60d: 0x40f8, 0x60e: 0x40e4, 0x60f: 0x4102, 0x610: 0x3de8, 0x611: 0x3df0,\n\t0x612: 0x41c0, 0x613: 0x41de, 0x614: 0x41ca, 0x615: 0x41e8, 0x616: 0x41d4, 0x617: 0x41f2,\n\t0x618: 0x3d08, 0x619: 0x3d10, 0x61a: 0x410c, 0x61b: 0x412a, 0x61c: 0x4116, 0x61d: 0x4134,\n\t0x61e: 0x4120, 0x61f: 0x413e, 0x620: 0x3ec0, 0x621: 0x3ec8, 0x622: 0x41fc, 0x623: 0x421a,\n\t0x624: 0x4206, 0x625: 0x4224, 0x626: 0x4210, 0x627: 0x422e, 0x628: 0x3d80, 0x629: 0x3d88,\n\t0x62a: 0x4148, 0x62b: 0x4166, 0x62c: 0x4152, 0x62d: 0x4170, 0x62e: 0x415c, 0x62f: 0x417a,\n\t0x630: 0x3685, 0x631: 0x367f, 0x632: 0x3d90, 0x633: 0x368b, 0x634: 0x3d98,\n\t0x636: 0x4810, 0x637: 0x3db0, 0x638: 0x35f5, 0x639: 0x35ef, 0x63a: 0x35e3, 0x63b: 0x42ee,\n\t0x63c: 0x35fb, 0x63d: 0x8100, 0x63e: 0x01d3, 0x63f: 0xa100,\n\t// Block 0x19, offset 0x640\n\t0x640: 0x8100, 0x641: 0x35a7, 0x642: 0x3dd8, 0x643: 0x369d, 0x644: 0x3de0,\n\t0x646: 0x483a, 0x647: 0x3df8, 0x648: 0x3601, 0x649: 0x42f4, 0x64a: 0x360d, 0x64b: 0x42fa,\n\t0x64c: 0x3619, 0x64d: 0x3b8f, 0x64e: 0x3b96, 0x64f: 0x3b9d, 0x650: 0x36b5, 0x651: 0x36af,\n\t0x652: 0x3e00, 0x653: 0x44e4, 0x656: 0x36bb, 0x657: 0x3e10,\n\t0x658: 0x3631, 0x659: 0x362b, 0x65a: 0x361f, 0x65b: 0x4300, 0x65d: 0x3ba4,\n\t0x65e: 0x3bab, 0x65f: 0x3bb2, 0x660: 0x36eb, 0x661: 0x36e5, 0x662: 0x3e68, 0x663: 0x44ec,\n\t0x664: 0x36cd, 0x665: 0x36d3, 0x666: 0x36f1, 0x667: 0x3e78, 0x668: 0x3661, 0x669: 0x365b,\n\t0x66a: 0x364f, 0x66b: 0x430c, 0x66c: 0x3649, 0x66d: 0x359b, 0x66e: 0x42e8, 0x66f: 0x0081,\n\t0x672: 0x3eb0, 0x673: 0x36f7, 0x674: 0x3eb8,\n\t0x676: 0x4888, 0x677: 0x3ed0, 0x678: 0x363d, 0x679: 0x4306, 0x67a: 0x366d, 0x67b: 0x4318,\n\t0x67c: 0x3679, 0x67d: 0x4256, 0x67e: 0xa100,\n\t// Block 0x1a, offset 0x680\n\t0x681: 0x3c06, 0x683: 0xa000, 0x684: 0x3c0d, 0x685: 0xa000,\n\t0x687: 0x3c14, 0x688: 0xa000, 0x689: 0x3c1b,\n\t0x68d: 0xa000,\n\t0x6a0: 0x2f65, 0x6a1: 0xa000, 0x6a2: 0x3c29,\n\t0x6a4: 0xa000, 0x6a5: 0xa000,\n\t0x6ad: 0x3c22, 0x6ae: 0x2f60, 0x6af: 0x2f6a,\n\t0x6b0: 0x3c30, 0x6b1: 0x3c37, 0x6b2: 0xa000, 0x6b3: 0xa000, 0x6b4: 0x3c3e, 0x6b5: 0x3c45,\n\t0x6b6: 0xa000, 0x6b7: 0xa000, 0x6b8: 0x3c4c, 0x6b9: 0x3c53, 0x6ba: 0xa000, 0x6bb: 0xa000,\n\t0x6bc: 0xa000, 0x6bd: 0xa000,\n\t// Block 0x1b, offset 0x6c0\n\t0x6c0: 0x3c5a, 0x6c1: 0x3c61, 0x6c2: 0xa000, 0x6c3: 0xa000, 0x6c4: 0x3c76, 0x6c5: 0x3c7d,\n\t0x6c6: 0xa000, 0x6c7: 0xa000, 0x6c8: 0x3c84, 0x6c9: 0x3c8b,\n\t0x6d1: 0xa000,\n\t0x6d2: 0xa000,\n\t0x6e2: 0xa000,\n\t0x6e8: 0xa000, 0x6e9: 0xa000,\n\t0x6eb: 0xa000, 0x6ec: 0x3ca0, 0x6ed: 0x3ca7, 0x6ee: 0x3cae, 0x6ef: 0x3cb5,\n\t0x6f2: 0xa000, 0x6f3: 0xa000, 0x6f4: 0xa000, 0x6f5: 0xa000,\n\t// Block 0x1c, offset 0x700\n\t0x706: 0xa000, 0x70b: 0xa000,\n\t0x70c: 0x3f08, 0x70d: 0xa000, 0x70e: 0x3f10, 0x70f: 0xa000, 0x710: 0x3f18, 0x711: 0xa000,\n\t0x712: 0x3f20, 0x713: 0xa000, 0x714: 0x3f28, 0x715: 0xa000, 0x716: 0x3f30, 0x717: 0xa000,\n\t0x718: 0x3f38, 0x719: 0xa000, 0x71a: 0x3f40, 0x71b: 0xa000, 0x71c: 0x3f48, 0x71d: 0xa000,\n\t0x71e: 0x3f50, 0x71f: 0xa000, 0x720: 0x3f58, 0x721: 0xa000, 0x722: 0x3f60,\n\t0x724: 0xa000, 0x725: 0x3f68, 0x726: 0xa000, 0x727: 0x3f70, 0x728: 0xa000, 0x729: 0x3f78,\n\t0x72f: 0xa000,\n\t0x730: 0x3f80, 0x731: 0x3f88, 0x732: 0xa000, 0x733: 0x3f90, 0x734: 0x3f98, 0x735: 0xa000,\n\t0x736: 0x3fa0, 0x737: 0x3fa8, 0x738: 0xa000, 0x739: 0x3fb0, 0x73a: 0x3fb8, 0x73b: 0xa000,\n\t0x73c: 0x3fc0, 0x73d: 0x3fc8,\n\t// Block 0x1d, offset 0x740\n\t0x754: 0x3f00,\n\t0x759: 0x9903, 0x75a: 0x9903, 0x75b: 0x8100, 0x75c: 0x8100, 0x75d: 0xa000,\n\t0x75e: 0x3fd0,\n\t0x766: 0xa000,\n\t0x76b: 0xa000, 0x76c: 0x3fe0, 0x76d: 0xa000, 0x76e: 0x3fe8, 0x76f: 0xa000,\n\t0x770: 0x3ff0, 0x771: 0xa000, 0x772: 0x3ff8, 0x773: 0xa000, 0x774: 0x4000, 0x775: 0xa000,\n\t0x776: 0x4008, 0x777: 0xa000, 0x778: 0x4010, 0x779: 0xa000, 0x77a: 0x4018, 0x77b: 0xa000,\n\t0x77c: 0x4020, 0x77d: 0xa000, 0x77e: 0x4028, 0x77f: 0xa000,\n\t// Block 0x1e, offset 0x780\n\t0x780: 0x4030, 0x781: 0xa000, 0x782: 0x4038, 0x784: 0xa000, 0x785: 0x4040,\n\t0x786: 0xa000, 0x787: 0x4048, 0x788: 0xa000, 0x789: 0x4050,\n\t0x78f: 0xa000, 0x790: 0x4058, 0x791: 0x4060,\n\t0x792: 0xa000, 0x793: 0x4068, 0x794: 0x4070, 0x795: 0xa000, 0x796: 0x4078, 0x797: 0x4080,\n\t0x798: 0xa000, 0x799: 0x4088, 0x79a: 0x4090, 0x79b: 0xa000, 0x79c: 0x4098, 0x79d: 0x40a0,\n\t0x7af: 0xa000,\n\t0x7b0: 0xa000, 0x7b1: 0xa000, 0x7b2: 0xa000, 0x7b4: 0x3fd8,\n\t0x7b7: 0x40a8, 0x7b8: 0x40b0, 0x7b9: 0x40b8, 0x7ba: 0x40c0,\n\t0x7bd: 0xa000, 0x7be: 0x40c8,\n\t// Block 0x1f, offset 0x7c0\n\t0x7c0: 0x1377, 0x7c1: 0x0cfb, 0x7c2: 0x13d3, 0x7c3: 0x139f, 0x7c4: 0x0e57, 0x7c5: 0x06eb,\n\t0x7c6: 0x08df, 0x7c7: 0x162b, 0x7c8: 0x162b, 0x7c9: 0x0a0b, 0x7ca: 0x145f, 0x7cb: 0x0943,\n\t0x7cc: 0x0a07, 0x7cd: 0x0bef, 0x7ce: 0x0fcf, 0x7cf: 0x115f, 0x7d0: 0x1297, 0x7d1: 0x12d3,\n\t0x7d2: 0x1307, 0x7d3: 0x141b, 0x7d4: 0x0d73, 0x7d5: 0x0dff, 0x7d6: 0x0eab, 0x7d7: 0x0f43,\n\t0x7d8: 0x125f, 0x7d9: 0x1447, 0x7da: 0x1573, 0x7db: 0x070f, 0x7dc: 0x08b3, 0x7dd: 0x0d87,\n\t0x7de: 0x0ecf, 0x7df: 0x1293, 0x7e0: 0x15c3, 0x7e1: 0x0ab3, 0x7e2: 0x0e77, 0x7e3: 0x1283,\n\t0x7e4: 0x1317, 0x7e5: 0x0c23, 0x7e6: 0x11bb, 0x7e7: 0x12df, 0x7e8: 0x0b1f, 0x7e9: 0x0d0f,\n\t0x7ea: 0x0e17, 0x7eb: 0x0f1b, 0x7ec: 0x1427, 0x7ed: 0x074f, 0x7ee: 0x07e7, 0x7ef: 0x0853,\n\t0x7f0: 0x0c8b, 0x7f1: 0x0d7f, 0x7f2: 0x0ecb, 0x7f3: 0x0fef, 0x7f4: 0x1177, 0x7f5: 0x128b,\n\t0x7f6: 0x12a3, 0x7f7: 0x13c7, 0x7f8: 0x14ef, 0x7f9: 0x15a3, 0x7fa: 0x15bf, 0x7fb: 0x102b,\n\t0x7fc: 0x106b, 0x7fd: 0x1123, 0x7fe: 0x1243, 0x7ff: 0x147b,\n\t// Block 0x20, offset 0x800\n\t0x800: 0x15cb, 0x801: 0x134b, 0x802: 0x09c7, 0x803: 0x0b3b, 0x804: 0x10db, 0x805: 0x119b,\n\t0x806: 0x0eff, 0x807: 0x1033, 0x808: 0x1397, 0x809: 0x14e7, 0x80a: 0x09c3, 0x80b: 0x0a8f,\n\t0x80c: 0x0d77, 0x80d: 0x0e2b, 0x80e: 0x0e5f, 0x80f: 0x1113, 0x810: 0x113b, 0x811: 0x14a7,\n\t0x812: 0x084f, 0x813: 0x11a7, 0x814: 0x07f3, 0x815: 0x07ef, 0x816: 0x1097, 0x817: 0x1127,\n\t0x818: 0x125b, 0x819: 0x14af, 0x81a: 0x1367, 0x81b: 0x0c27, 0x81c: 0x0d73, 0x81d: 0x1357,\n\t0x81e: 0x06f7, 0x81f: 0x0a63, 0x820: 0x0b93, 0x821: 0x0f2f, 0x822: 0x0faf, 0x823: 0x0873,\n\t0x824: 0x103b, 0x825: 0x075f, 0x826: 0x0b77, 0x827: 0x06d7, 0x828: 0x0deb, 0x829: 0x0ca3,\n\t0x82a: 0x110f, 0x82b: 0x08c7, 0x82c: 0x09b3, 0x82d: 0x0ffb, 0x82e: 0x1263, 0x82f: 0x133b,\n\t0x830: 0x0db7, 0x831: 0x13f7, 0x832: 0x0de3, 0x833: 0x0c37, 0x834: 0x121b, 0x835: 0x0c57,\n\t0x836: 0x0fab, 0x837: 0x072b, 0x838: 0x07a7, 0x839: 0x07eb, 0x83a: 0x0d53, 0x83b: 0x10fb,\n\t0x83c: 0x11f3, 0x83d: 0x1347, 0x83e: 0x145b, 0x83f: 0x085b,\n\t// Block 0x21, offset 0x840\n\t0x840: 0x090f, 0x841: 0x0a17, 0x842: 0x0b2f, 0x843: 0x0cbf, 0x844: 0x0e7b, 0x845: 0x103f,\n\t0x846: 0x1497, 0x847: 0x157b, 0x848: 0x15cf, 0x849: 0x15e7, 0x84a: 0x0837, 0x84b: 0x0cf3,\n\t0x84c: 0x0da3, 0x84d: 0x13eb, 0x84e: 0x0afb, 0x84f: 0x0bd7, 0x850: 0x0bf3, 0x851: 0x0c83,\n\t0x852: 0x0e6b, 0x853: 0x0eb7, 0x854: 0x0f67, 0x855: 0x108b, 0x856: 0x112f, 0x857: 0x1193,\n\t0x858: 0x13db, 0x859: 0x126b, 0x85a: 0x1403, 0x85b: 0x147f, 0x85c: 0x080f, 0x85d: 0x083b,\n\t0x85e: 0x0923, 0x85f: 0x0ea7, 0x860: 0x12f3, 0x861: 0x133b, 0x862: 0x0b1b, 0x863: 0x0b8b,\n\t0x864: 0x0c4f, 0x865: 0x0daf, 0x866: 0x10d7, 0x867: 0x0f23, 0x868: 0x073b, 0x869: 0x097f,\n\t0x86a: 0x0a63, 0x86b: 0x0ac7, 0x86c: 0x0b97, 0x86d: 0x0f3f, 0x86e: 0x0f5b, 0x86f: 0x116b,\n\t0x870: 0x118b, 0x871: 0x1463, 0x872: 0x14e3, 0x873: 0x14f3, 0x874: 0x152f, 0x875: 0x0753,\n\t0x876: 0x107f, 0x877: 0x144f, 0x878: 0x14cb, 0x879: 0x0baf, 0x87a: 0x0717, 0x87b: 0x0777,\n\t0x87c: 0x0a67, 0x87d: 0x0a87, 0x87e: 0x0caf, 0x87f: 0x0d73,\n\t// Block 0x22, offset 0x880\n\t0x880: 0x0ec3, 0x881: 0x0fcb, 0x882: 0x1277, 0x883: 0x1417, 0x884: 0x1623, 0x885: 0x0ce3,\n\t0x886: 0x14a3, 0x887: 0x0833, 0x888: 0x0d2f, 0x889: 0x0d3b, 0x88a: 0x0e0f, 0x88b: 0x0e47,\n\t0x88c: 0x0f4b, 0x88d: 0x0fa7, 0x88e: 0x1027, 0x88f: 0x110b, 0x890: 0x153b, 0x891: 0x07af,\n\t0x892: 0x0c03, 0x893: 0x14b3, 0x894: 0x0767, 0x895: 0x0aab, 0x896: 0x0e2f, 0x897: 0x13df,\n\t0x898: 0x0b67, 0x899: 0x0bb7, 0x89a: 0x0d43, 0x89b: 0x0f2f, 0x89c: 0x14bb, 0x89d: 0x0817,\n\t0x89e: 0x08ff, 0x89f: 0x0a97, 0x8a0: 0x0cd3, 0x8a1: 0x0d1f, 0x8a2: 0x0d5f, 0x8a3: 0x0df3,\n\t0x8a4: 0x0f47, 0x8a5: 0x0fbb, 0x8a6: 0x1157, 0x8a7: 0x12f7, 0x8a8: 0x1303, 0x8a9: 0x1457,\n\t0x8aa: 0x14d7, 0x8ab: 0x0883, 0x8ac: 0x0e4b, 0x8ad: 0x0903, 0x8ae: 0x0ec7, 0x8af: 0x0f6b,\n\t0x8b0: 0x1287, 0x8b1: 0x14bf, 0x8b2: 0x15ab, 0x8b3: 0x15d3, 0x8b4: 0x0d37, 0x8b5: 0x0e27,\n\t0x8b6: 0x11c3, 0x8b7: 0x10b7, 0x8b8: 0x10c3, 0x8b9: 0x10e7, 0x8ba: 0x0f17, 0x8bb: 0x0e9f,\n\t0x8bc: 0x1363, 0x8bd: 0x0733, 0x8be: 0x122b, 0x8bf: 0x081b,\n\t// Block 0x23, offset 0x8c0\n\t0x8c0: 0x080b, 0x8c1: 0x0b0b, 0x8c2: 0x0c2b, 0x8c3: 0x10f3, 0x8c4: 0x0a53, 0x8c5: 0x0e03,\n\t0x8c6: 0x0cef, 0x8c7: 0x13e7, 0x8c8: 0x12e7, 0x8c9: 0x14ab, 0x8ca: 0x1323, 0x8cb: 0x0b27,\n\t0x8cc: 0x0787, 0x8cd: 0x095b, 0x8d0: 0x09af,\n\t0x8d2: 0x0cdf, 0x8d5: 0x07f7, 0x8d6: 0x0f1f, 0x8d7: 0x0fe3,\n\t0x8d8: 0x1047, 0x8d9: 0x1063, 0x8da: 0x1067, 0x8db: 0x107b, 0x8dc: 0x14fb, 0x8dd: 0x10eb,\n\t0x8de: 0x116f, 0x8e0: 0x128f, 0x8e2: 0x1353,\n\t0x8e5: 0x1407, 0x8e6: 0x1433,\n\t0x8ea: 0x154f, 0x8eb: 0x1553, 0x8ec: 0x1557, 0x8ed: 0x15bb, 0x8ee: 0x142b, 0x8ef: 0x14c7,\n\t0x8f0: 0x0757, 0x8f1: 0x077b, 0x8f2: 0x078f, 0x8f3: 0x084b, 0x8f4: 0x0857, 0x8f5: 0x0897,\n\t0x8f6: 0x094b, 0x8f7: 0x0967, 0x8f8: 0x096f, 0x8f9: 0x09ab, 0x8fa: 0x09b7, 0x8fb: 0x0a93,\n\t0x8fc: 0x0a9b, 0x8fd: 0x0ba3, 0x8fe: 0x0bcb, 0x8ff: 0x0bd3,\n\t// Block 0x24, offset 0x900\n\t0x900: 0x0beb, 0x901: 0x0c97, 0x902: 0x0cc7, 0x903: 0x0ce7, 0x904: 0x0d57, 0x905: 0x0e1b,\n\t0x906: 0x0e37, 0x907: 0x0e67, 0x908: 0x0ebb, 0x909: 0x0edb, 0x90a: 0x0f4f, 0x90b: 0x102f,\n\t0x90c: 0x104b, 0x90d: 0x1053, 0x90e: 0x104f, 0x90f: 0x1057, 0x910: 0x105b, 0x911: 0x105f,\n\t0x912: 0x1073, 0x913: 0x1077, 0x914: 0x109b, 0x915: 0x10af, 0x916: 0x10cb, 0x917: 0x112f,\n\t0x918: 0x1137, 0x919: 0x113f, 0x91a: 0x1153, 0x91b: 0x117b, 0x91c: 0x11cb, 0x91d: 0x11ff,\n\t0x91e: 0x11ff, 0x91f: 0x1267, 0x920: 0x130f, 0x921: 0x1327, 0x922: 0x135b, 0x923: 0x135f,\n\t0x924: 0x13a3, 0x925: 0x13a7, 0x926: 0x13ff, 0x927: 0x1407, 0x928: 0x14db, 0x929: 0x151f,\n\t0x92a: 0x1537, 0x92b: 0x0b9b, 0x92c: 0x171e, 0x92d: 0x11e3,\n\t0x930: 0x06df, 0x931: 0x07e3, 0x932: 0x07a3, 0x933: 0x074b, 0x934: 0x078b, 0x935: 0x07b7,\n\t0x936: 0x0847, 0x937: 0x0863, 0x938: 0x094b, 0x939: 0x0937, 0x93a: 0x0947, 0x93b: 0x0963,\n\t0x93c: 0x09af, 0x93d: 0x09bf, 0x93e: 0x0a03, 0x93f: 0x0a0f,\n\t// Block 0x25, offset 0x940\n\t0x940: 0x0a2b, 0x941: 0x0a3b, 0x942: 0x0b23, 0x943: 0x0b2b, 0x944: 0x0b5b, 0x945: 0x0b7b,\n\t0x946: 0x0bab, 0x947: 0x0bc3, 0x948: 0x0bb3, 0x949: 0x0bd3, 0x94a: 0x0bc7, 0x94b: 0x0beb,\n\t0x94c: 0x0c07, 0x94d: 0x0c5f, 0x94e: 0x0c6b, 0x94f: 0x0c73, 0x950: 0x0c9b, 0x951: 0x0cdf,\n\t0x952: 0x0d0f, 0x953: 0x0d13, 0x954: 0x0d27, 0x955: 0x0da7, 0x956: 0x0db7, 0x957: 0x0e0f,\n\t0x958: 0x0e5b, 0x959: 0x0e53, 0x95a: 0x0e67, 0x95b: 0x0e83, 0x95c: 0x0ebb, 0x95d: 0x1013,\n\t0x95e: 0x0edf, 0x95f: 0x0f13, 0x960: 0x0f1f, 0x961: 0x0f5f, 0x962: 0x0f7b, 0x963: 0x0f9f,\n\t0x964: 0x0fc3, 0x965: 0x0fc7, 0x966: 0x0fe3, 0x967: 0x0fe7, 0x968: 0x0ff7, 0x969: 0x100b,\n\t0x96a: 0x1007, 0x96b: 0x1037, 0x96c: 0x10b3, 0x96d: 0x10cb, 0x96e: 0x10e3, 0x96f: 0x111b,\n\t0x970: 0x112f, 0x971: 0x114b, 0x972: 0x117b, 0x973: 0x122f, 0x974: 0x1257, 0x975: 0x12cb,\n\t0x976: 0x1313, 0x977: 0x131f, 0x978: 0x1327, 0x979: 0x133f, 0x97a: 0x1353, 0x97b: 0x1343,\n\t0x97c: 0x135b, 0x97d: 0x1357, 0x97e: 0x134f, 0x97f: 0x135f,\n\t// Block 0x26, offset 0x980\n\t0x980: 0x136b, 0x981: 0x13a7, 0x982: 0x13e3, 0x983: 0x1413, 0x984: 0x144b, 0x985: 0x146b,\n\t0x986: 0x14b7, 0x987: 0x14db, 0x988: 0x14fb, 0x989: 0x150f, 0x98a: 0x151f, 0x98b: 0x152b,\n\t0x98c: 0x1537, 0x98d: 0x158b, 0x98e: 0x162b, 0x98f: 0x16b5, 0x990: 0x16b0, 0x991: 0x16e2,\n\t0x992: 0x0607, 0x993: 0x062f, 0x994: 0x0633, 0x995: 0x1764, 0x996: 0x1791, 0x997: 0x1809,\n\t0x998: 0x1617, 0x999: 0x1627,\n\t// Block 0x27, offset 0x9c0\n\t0x9c0: 0x06fb, 0x9c1: 0x06f3, 0x9c2: 0x0703, 0x9c3: 0x1647, 0x9c4: 0x0747, 0x9c5: 0x0757,\n\t0x9c6: 0x075b, 0x9c7: 0x0763, 0x9c8: 0x076b, 0x9c9: 0x076f, 0x9ca: 0x077b, 0x9cb: 0x0773,\n\t0x9cc: 0x05b3, 0x9cd: 0x165b, 0x9ce: 0x078f, 0x9cf: 0x0793, 0x9d0: 0x0797, 0x9d1: 0x07b3,\n\t0x9d2: 0x164c, 0x9d3: 0x05b7, 0x9d4: 0x079f, 0x9d5: 0x07bf, 0x9d6: 0x1656, 0x9d7: 0x07cf,\n\t0x9d8: 0x07d7, 0x9d9: 0x0737, 0x9da: 0x07df, 0x9db: 0x07e3, 0x9dc: 0x1831, 0x9dd: 0x07ff,\n\t0x9de: 0x0807, 0x9df: 0x05bf, 0x9e0: 0x081f, 0x9e1: 0x0823, 0x9e2: 0x082b, 0x9e3: 0x082f,\n\t0x9e4: 0x05c3, 0x9e5: 0x0847, 0x9e6: 0x084b, 0x9e7: 0x0857, 0x9e8: 0x0863, 0x9e9: 0x0867,\n\t0x9ea: 0x086b, 0x9eb: 0x0873, 0x9ec: 0x0893, 0x9ed: 0x0897, 0x9ee: 0x089f, 0x9ef: 0x08af,\n\t0x9f0: 0x08b7, 0x9f1: 0x08bb, 0x9f2: 0x08bb, 0x9f3: 0x08bb, 0x9f4: 0x166a, 0x9f5: 0x0e93,\n\t0x9f6: 0x08cf, 0x9f7: 0x08d7, 0x9f8: 0x166f, 0x9f9: 0x08e3, 0x9fa: 0x08eb, 0x9fb: 0x08f3,\n\t0x9fc: 0x091b, 0x9fd: 0x0907, 0x9fe: 0x0913, 0x9ff: 0x0917,\n\t// Block 0x28, offset 0xa00\n\t0xa00: 0x091f, 0xa01: 0x0927, 0xa02: 0x092b, 0xa03: 0x0933, 0xa04: 0x093b, 0xa05: 0x093f,\n\t0xa06: 0x093f, 0xa07: 0x0947, 0xa08: 0x094f, 0xa09: 0x0953, 0xa0a: 0x095f, 0xa0b: 0x0983,\n\t0xa0c: 0x0967, 0xa0d: 0x0987, 0xa0e: 0x096b, 0xa0f: 0x0973, 0xa10: 0x080b, 0xa11: 0x09cf,\n\t0xa12: 0x0997, 0xa13: 0x099b, 0xa14: 0x099f, 0xa15: 0x0993, 0xa16: 0x09a7, 0xa17: 0x09a3,\n\t0xa18: 0x09bb, 0xa19: 0x1674, 0xa1a: 0x09d7, 0xa1b: 0x09db, 0xa1c: 0x09e3, 0xa1d: 0x09ef,\n\t0xa1e: 0x09f7, 0xa1f: 0x0a13, 0xa20: 0x1679, 0xa21: 0x167e, 0xa22: 0x0a1f, 0xa23: 0x0a23,\n\t0xa24: 0x0a27, 0xa25: 0x0a1b, 0xa26: 0x0a2f, 0xa27: 0x05c7, 0xa28: 0x05cb, 0xa29: 0x0a37,\n\t0xa2a: 0x0a3f, 0xa2b: 0x0a3f, 0xa2c: 0x1683, 0xa2d: 0x0a5b, 0xa2e: 0x0a5f, 0xa2f: 0x0a63,\n\t0xa30: 0x0a6b, 0xa31: 0x1688, 0xa32: 0x0a73, 0xa33: 0x0a77, 0xa34: 0x0b4f, 0xa35: 0x0a7f,\n\t0xa36: 0x05cf, 0xa37: 0x0a8b, 0xa38: 0x0a9b, 0xa39: 0x0aa7, 0xa3a: 0x0aa3, 0xa3b: 0x1692,\n\t0xa3c: 0x0aaf, 0xa3d: 0x1697, 0xa3e: 0x0abb, 0xa3f: 0x0ab7,\n\t// Block 0x29, offset 0xa40\n\t0xa40: 0x0abf, 0xa41: 0x0acf, 0xa42: 0x0ad3, 0xa43: 0x05d3, 0xa44: 0x0ae3, 0xa45: 0x0aeb,\n\t0xa46: 0x0aef, 0xa47: 0x0af3, 0xa48: 0x05d7, 0xa49: 0x169c, 0xa4a: 0x05db, 0xa4b: 0x0b0f,\n\t0xa4c: 0x0b13, 0xa4d: 0x0b17, 0xa4e: 0x0b1f, 0xa4f: 0x1863, 0xa50: 0x0b37, 0xa51: 0x16a6,\n\t0xa52: 0x16a6, 0xa53: 0x11d7, 0xa54: 0x0b47, 0xa55: 0x0b47, 0xa56: 0x05df, 0xa57: 0x16c9,\n\t0xa58: 0x179b, 0xa59: 0x0b57, 0xa5a: 0x0b5f, 0xa5b: 0x05e3, 0xa5c: 0x0b73, 0xa5d: 0x0b83,\n\t0xa5e: 0x0b87, 0xa5f: 0x0b8f, 0xa60: 0x0b9f, 0xa61: 0x05eb, 0xa62: 0x05e7, 0xa63: 0x0ba3,\n\t0xa64: 0x16ab, 0xa65: 0x0ba7, 0xa66: 0x0bbb, 0xa67: 0x0bbf, 0xa68: 0x0bc3, 0xa69: 0x0bbf,\n\t0xa6a: 0x0bcf, 0xa6b: 0x0bd3, 0xa6c: 0x0be3, 0xa6d: 0x0bdb, 0xa6e: 0x0bdf, 0xa6f: 0x0be7,\n\t0xa70: 0x0beb, 0xa71: 0x0bef, 0xa72: 0x0bfb, 0xa73: 0x0bff, 0xa74: 0x0c17, 0xa75: 0x0c1f,\n\t0xa76: 0x0c2f, 0xa77: 0x0c43, 0xa78: 0x16ba, 0xa79: 0x0c3f, 0xa7a: 0x0c33, 0xa7b: 0x0c4b,\n\t0xa7c: 0x0c53, 0xa7d: 0x0c67, 0xa7e: 0x16bf, 0xa7f: 0x0c6f,\n\t// Block 0x2a, offset 0xa80\n\t0xa80: 0x0c63, 0xa81: 0x0c5b, 0xa82: 0x05ef, 0xa83: 0x0c77, 0xa84: 0x0c7f, 0xa85: 0x0c87,\n\t0xa86: 0x0c7b, 0xa87: 0x05f3, 0xa88: 0x0c97, 0xa89: 0x0c9f, 0xa8a: 0x16c4, 0xa8b: 0x0ccb,\n\t0xa8c: 0x0cff, 0xa8d: 0x0cdb, 0xa8e: 0x05ff, 0xa8f: 0x0ce7, 0xa90: 0x05fb, 0xa91: 0x05f7,\n\t0xa92: 0x07c3, 0xa93: 0x07c7, 0xa94: 0x0d03, 0xa95: 0x0ceb, 0xa96: 0x11ab, 0xa97: 0x0663,\n\t0xa98: 0x0d0f, 0xa99: 0x0d13, 0xa9a: 0x0d17, 0xa9b: 0x0d2b, 0xa9c: 0x0d23, 0xa9d: 0x16dd,\n\t0xa9e: 0x0603, 0xa9f: 0x0d3f, 0xaa0: 0x0d33, 0xaa1: 0x0d4f, 0xaa2: 0x0d57, 0xaa3: 0x16e7,\n\t0xaa4: 0x0d5b, 0xaa5: 0x0d47, 0xaa6: 0x0d63, 0xaa7: 0x0607, 0xaa8: 0x0d67, 0xaa9: 0x0d6b,\n\t0xaaa: 0x0d6f, 0xaab: 0x0d7b, 0xaac: 0x16ec, 0xaad: 0x0d83, 0xaae: 0x060b, 0xaaf: 0x0d8f,\n\t0xab0: 0x16f1, 0xab1: 0x0d93, 0xab2: 0x060f, 0xab3: 0x0d9f, 0xab4: 0x0dab, 0xab5: 0x0db7,\n\t0xab6: 0x0dbb, 0xab7: 0x16f6, 0xab8: 0x168d, 0xab9: 0x16fb, 0xaba: 0x0ddb, 0xabb: 0x1700,\n\t0xabc: 0x0de7, 0xabd: 0x0def, 0xabe: 0x0ddf, 0xabf: 0x0dfb,\n\t// Block 0x2b, offset 0xac0\n\t0xac0: 0x0e0b, 0xac1: 0x0e1b, 0xac2: 0x0e0f, 0xac3: 0x0e13, 0xac4: 0x0e1f, 0xac5: 0x0e23,\n\t0xac6: 0x1705, 0xac7: 0x0e07, 0xac8: 0x0e3b, 0xac9: 0x0e3f, 0xaca: 0x0613, 0xacb: 0x0e53,\n\t0xacc: 0x0e4f, 0xacd: 0x170a, 0xace: 0x0e33, 0xacf: 0x0e6f, 0xad0: 0x170f, 0xad1: 0x1714,\n\t0xad2: 0x0e73, 0xad3: 0x0e87, 0xad4: 0x0e83, 0xad5: 0x0e7f, 0xad6: 0x0617, 0xad7: 0x0e8b,\n\t0xad8: 0x0e9b, 0xad9: 0x0e97, 0xada: 0x0ea3, 0xadb: 0x1651, 0xadc: 0x0eb3, 0xadd: 0x1719,\n\t0xade: 0x0ebf, 0xadf: 0x1723, 0xae0: 0x0ed3, 0xae1: 0x0edf, 0xae2: 0x0ef3, 0xae3: 0x1728,\n\t0xae4: 0x0f07, 0xae5: 0x0f0b, 0xae6: 0x172d, 0xae7: 0x1732, 0xae8: 0x0f27, 0xae9: 0x0f37,\n\t0xaea: 0x061b, 0xaeb: 0x0f3b, 0xaec: 0x061f, 0xaed: 0x061f, 0xaee: 0x0f53, 0xaef: 0x0f57,\n\t0xaf0: 0x0f5f, 0xaf1: 0x0f63, 0xaf2: 0x0f6f, 0xaf3: 0x0623, 0xaf4: 0x0f87, 0xaf5: 0x1737,\n\t0xaf6: 0x0fa3, 0xaf7: 0x173c, 0xaf8: 0x0faf, 0xaf9: 0x16a1, 0xafa: 0x0fbf, 0xafb: 0x1741,\n\t0xafc: 0x1746, 0xafd: 0x174b, 0xafe: 0x0627, 0xaff: 0x062b,\n\t// Block 0x2c, offset 0xb00\n\t0xb00: 0x0ff7, 0xb01: 0x1755, 0xb02: 0x1750, 0xb03: 0x175a, 0xb04: 0x175f, 0xb05: 0x0fff,\n\t0xb06: 0x1003, 0xb07: 0x1003, 0xb08: 0x100b, 0xb09: 0x0633, 0xb0a: 0x100f, 0xb0b: 0x0637,\n\t0xb0c: 0x063b, 0xb0d: 0x1769, 0xb0e: 0x1023, 0xb0f: 0x102b, 0xb10: 0x1037, 0xb11: 0x063f,\n\t0xb12: 0x176e, 0xb13: 0x105b, 0xb14: 0x1773, 0xb15: 0x1778, 0xb16: 0x107b, 0xb17: 0x1093,\n\t0xb18: 0x0643, 0xb19: 0x109b, 0xb1a: 0x109f, 0xb1b: 0x10a3, 0xb1c: 0x177d, 0xb1d: 0x1782,\n\t0xb1e: 0x1782, 0xb1f: 0x10bb, 0xb20: 0x0647, 0xb21: 0x1787, 0xb22: 0x10cf, 0xb23: 0x10d3,\n\t0xb24: 0x064b, 0xb25: 0x178c, 0xb26: 0x10ef, 0xb27: 0x064f, 0xb28: 0x10ff, 0xb29: 0x10f7,\n\t0xb2a: 0x1107, 0xb2b: 0x1796, 0xb2c: 0x111f, 0xb2d: 0x0653, 0xb2e: 0x112b, 0xb2f: 0x1133,\n\t0xb30: 0x1143, 0xb31: 0x0657, 0xb32: 0x17a0, 0xb33: 0x17a5, 0xb34: 0x065b, 0xb35: 0x17aa,\n\t0xb36: 0x115b, 0xb37: 0x17af, 0xb38: 0x1167, 0xb39: 0x1173, 0xb3a: 0x117b, 0xb3b: 0x17b4,\n\t0xb3c: 0x17b9, 0xb3d: 0x118f, 0xb3e: 0x17be, 0xb3f: 0x1197,\n\t// Block 0x2d, offset 0xb40\n\t0xb40: 0x16ce, 0xb41: 0x065f, 0xb42: 0x11af, 0xb43: 0x11b3, 0xb44: 0x0667, 0xb45: 0x11b7,\n\t0xb46: 0x0a33, 0xb47: 0x17c3, 0xb48: 0x17c8, 0xb49: 0x16d3, 0xb4a: 0x16d8, 0xb4b: 0x11d7,\n\t0xb4c: 0x11db, 0xb4d: 0x13f3, 0xb4e: 0x066b, 0xb4f: 0x1207, 0xb50: 0x1203, 0xb51: 0x120b,\n\t0xb52: 0x083f, 0xb53: 0x120f, 0xb54: 0x1213, 0xb55: 0x1217, 0xb56: 0x121f, 0xb57: 0x17cd,\n\t0xb58: 0x121b, 0xb59: 0x1223, 0xb5a: 0x1237, 0xb5b: 0x123b, 0xb5c: 0x1227, 0xb5d: 0x123f,\n\t0xb5e: 0x1253, 0xb5f: 0x1267, 0xb60: 0x1233, 0xb61: 0x1247, 0xb62: 0x124b, 0xb63: 0x124f,\n\t0xb64: 0x17d2, 0xb65: 0x17dc, 0xb66: 0x17d7, 0xb67: 0x066f, 0xb68: 0x126f, 0xb69: 0x1273,\n\t0xb6a: 0x127b, 0xb6b: 0x17f0, 0xb6c: 0x127f, 0xb6d: 0x17e1, 0xb6e: 0x0673, 0xb6f: 0x0677,\n\t0xb70: 0x17e6, 0xb71: 0x17eb, 0xb72: 0x067b, 0xb73: 0x129f, 0xb74: 0x12a3, 0xb75: 0x12a7,\n\t0xb76: 0x12ab, 0xb77: 0x12b7, 0xb78: 0x12b3, 0xb79: 0x12bf, 0xb7a: 0x12bb, 0xb7b: 0x12cb,\n\t0xb7c: 0x12c3, 0xb7d: 0x12c7, 0xb7e: 0x12cf, 0xb7f: 0x067f,\n\t// Block 0x2e, offset 0xb80\n\t0xb80: 0x12d7, 0xb81: 0x12db, 0xb82: 0x0683, 0xb83: 0x12eb, 0xb84: 0x12ef, 0xb85: 0x17f5,\n\t0xb86: 0x12fb, 0xb87: 0x12ff, 0xb88: 0x0687, 0xb89: 0x130b, 0xb8a: 0x05bb, 0xb8b: 0x17fa,\n\t0xb8c: 0x17ff, 0xb8d: 0x068b, 0xb8e: 0x068f, 0xb8f: 0x1337, 0xb90: 0x134f, 0xb91: 0x136b,\n\t0xb92: 0x137b, 0xb93: 0x1804, 0xb94: 0x138f, 0xb95: 0x1393, 0xb96: 0x13ab, 0xb97: 0x13b7,\n\t0xb98: 0x180e, 0xb99: 0x1660, 0xb9a: 0x13c3, 0xb9b: 0x13bf, 0xb9c: 0x13cb, 0xb9d: 0x1665,\n\t0xb9e: 0x13d7, 0xb9f: 0x13e3, 0xba0: 0x1813, 0xba1: 0x1818, 0xba2: 0x1423, 0xba3: 0x142f,\n\t0xba4: 0x1437, 0xba5: 0x181d, 0xba6: 0x143b, 0xba7: 0x1467, 0xba8: 0x1473, 0xba9: 0x1477,\n\t0xbaa: 0x146f, 0xbab: 0x1483, 0xbac: 0x1487, 0xbad: 0x1822, 0xbae: 0x1493, 0xbaf: 0x0693,\n\t0xbb0: 0x149b, 0xbb1: 0x1827, 0xbb2: 0x0697, 0xbb3: 0x14d3, 0xbb4: 0x0ac3, 0xbb5: 0x14eb,\n\t0xbb6: 0x182c, 0xbb7: 0x1836, 0xbb8: 0x069b, 0xbb9: 0x069f, 0xbba: 0x1513, 0xbbb: 0x183b,\n\t0xbbc: 0x06a3, 0xbbd: 0x1840, 0xbbe: 0x152b, 0xbbf: 0x152b,\n\t// Block 0x2f, offset 0xbc0\n\t0xbc0: 0x1533, 0xbc1: 0x1845, 0xbc2: 0x154b, 0xbc3: 0x06a7, 0xbc4: 0x155b, 0xbc5: 0x1567,\n\t0xbc6: 0x156f, 0xbc7: 0x1577, 0xbc8: 0x06ab, 0xbc9: 0x184a, 0xbca: 0x158b, 0xbcb: 0x15a7,\n\t0xbcc: 0x15b3, 0xbcd: 0x06af, 0xbce: 0x06b3, 0xbcf: 0x15b7, 0xbd0: 0x184f, 0xbd1: 0x06b7,\n\t0xbd2: 0x1854, 0xbd3: 0x1859, 0xbd4: 0x185e, 0xbd5: 0x15db, 0xbd6: 0x06bb, 0xbd7: 0x15ef,\n\t0xbd8: 0x15f7, 0xbd9: 0x15fb, 0xbda: 0x1603, 0xbdb: 0x160b, 0xbdc: 0x1613, 0xbdd: 0x1868,\n}\n\n// nfcIndex: 22 blocks, 1408 entries, 1408 bytes\n// Block 0 is the zero block.\nvar nfcIndex = [1408]uint8{\n\t// Block 0x0, offset 0x0\n\t// Block 0x1, offset 0x40\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc2: 0x2e, 0xc3: 0x01, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x2f, 0xc7: 0x04,\n\t0xc8: 0x05, 0xca: 0x30, 0xcb: 0x31, 0xcc: 0x06, 0xcd: 0x07, 0xce: 0x08, 0xcf: 0x32,\n\t0xd0: 0x09, 0xd1: 0x33, 0xd2: 0x34, 0xd3: 0x0a, 0xd6: 0x0b, 0xd7: 0x35,\n\t0xd8: 0x36, 0xd9: 0x0c, 0xdb: 0x37, 0xdc: 0x38, 0xdd: 0x39, 0xdf: 0x3a,\n\t0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05,\n\t0xea: 0x06, 0xeb: 0x07, 0xec: 0x08, 0xed: 0x09, 0xef: 0x0a,\n\t0xf0: 0x13,\n\t// Block 0x4, offset 0x100\n\t0x120: 0x3b, 0x121: 0x3c, 0x123: 0x0d, 0x124: 0x3d, 0x125: 0x3e, 0x126: 0x3f, 0x127: 0x40,\n\t0x128: 0x41, 0x129: 0x42, 0x12a: 0x43, 0x12b: 0x44, 0x12c: 0x3f, 0x12d: 0x45, 0x12e: 0x46, 0x12f: 0x47,\n\t0x131: 0x48, 0x132: 0x49, 0x133: 0x4a, 0x134: 0x4b, 0x135: 0x4c, 0x137: 0x4d,\n\t0x138: 0x4e, 0x139: 0x4f, 0x13a: 0x50, 0x13b: 0x51, 0x13c: 0x52, 0x13d: 0x53, 0x13e: 0x54, 0x13f: 0x55,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x56, 0x142: 0x57, 0x144: 0x58, 0x145: 0x59, 0x146: 0x5a, 0x147: 0x5b,\n\t0x14d: 0x5c,\n\t0x15c: 0x5d, 0x15f: 0x5e,\n\t0x162: 0x5f, 0x164: 0x60,\n\t0x168: 0x61, 0x169: 0x62, 0x16a: 0x63, 0x16c: 0x0e, 0x16d: 0x64, 0x16e: 0x65, 0x16f: 0x66,\n\t0x170: 0x67, 0x173: 0x68, 0x177: 0x0f,\n\t0x178: 0x10, 0x179: 0x11, 0x17a: 0x12, 0x17b: 0x13, 0x17c: 0x14, 0x17d: 0x15, 0x17e: 0x16, 0x17f: 0x17,\n\t// Block 0x6, offset 0x180\n\t0x180: 0x69, 0x183: 0x6a, 0x184: 0x6b, 0x186: 0x6c, 0x187: 0x6d,\n\t0x188: 0x6e, 0x189: 0x18, 0x18a: 0x19, 0x18b: 0x6f, 0x18c: 0x70,\n\t0x1ab: 0x71,\n\t0x1b3: 0x72, 0x1b5: 0x73, 0x1b7: 0x74,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x75, 0x1c1: 0x1a, 0x1c2: 0x1b, 0x1c3: 0x1c, 0x1c4: 0x76, 0x1c5: 0x77,\n\t0x1c9: 0x78, 0x1cc: 0x79, 0x1cd: 0x7a,\n\t// Block 0x8, offset 0x200\n\t0x219: 0x7b, 0x21a: 0x7c, 0x21b: 0x7d,\n\t0x220: 0x7e, 0x223: 0x7f, 0x224: 0x80, 0x225: 0x81, 0x226: 0x82, 0x227: 0x83,\n\t0x22a: 0x84, 0x22b: 0x85, 0x22f: 0x86,\n\t0x230: 0x87, 0x231: 0x88, 0x232: 0x89, 0x233: 0x8a, 0x234: 0x8b, 0x235: 0x8c, 0x236: 0x8d, 0x237: 0x87,\n\t0x238: 0x88, 0x239: 0x89, 0x23a: 0x8a, 0x23b: 0x8b, 0x23c: 0x8c, 0x23d: 0x8d, 0x23e: 0x87, 0x23f: 0x88,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x89, 0x241: 0x8a, 0x242: 0x8b, 0x243: 0x8c, 0x244: 0x8d, 0x245: 0x87, 0x246: 0x88, 0x247: 0x89,\n\t0x248: 0x8a, 0x249: 0x8b, 0x24a: 0x8c, 0x24b: 0x8d, 0x24c: 0x87, 0x24d: 0x88, 0x24e: 0x89, 0x24f: 0x8a,\n\t0x250: 0x8b, 0x251: 0x8c, 0x252: 0x8d, 0x253: 0x87, 0x254: 0x88, 0x255: 0x89, 0x256: 0x8a, 0x257: 0x8b,\n\t0x258: 0x8c, 0x259: 0x8d, 0x25a: 0x87, 0x25b: 0x88, 0x25c: 0x89, 0x25d: 0x8a, 0x25e: 0x8b, 0x25f: 0x8c,\n\t0x260: 0x8d, 0x261: 0x87, 0x262: 0x88, 0x263: 0x89, 0x264: 0x8a, 0x265: 0x8b, 0x266: 0x8c, 0x267: 0x8d,\n\t0x268: 0x87, 0x269: 0x88, 0x26a: 0x89, 0x26b: 0x8a, 0x26c: 0x8b, 0x26d: 0x8c, 0x26e: 0x8d, 0x26f: 0x87,\n\t0x270: 0x88, 0x271: 0x89, 0x272: 0x8a, 0x273: 0x8b, 0x274: 0x8c, 0x275: 0x8d, 0x276: 0x87, 0x277: 0x88,\n\t0x278: 0x89, 0x279: 0x8a, 0x27a: 0x8b, 0x27b: 0x8c, 0x27c: 0x8d, 0x27d: 0x87, 0x27e: 0x88, 0x27f: 0x89,\n\t// Block 0xa, offset 0x280\n\t0x280: 0x8a, 0x281: 0x8b, 0x282: 0x8c, 0x283: 0x8d, 0x284: 0x87, 0x285: 0x88, 0x286: 0x89, 0x287: 0x8a,\n\t0x288: 0x8b, 0x289: 0x8c, 0x28a: 0x8d, 0x28b: 0x87, 0x28c: 0x88, 0x28d: 0x89, 0x28e: 0x8a, 0x28f: 0x8b,\n\t0x290: 0x8c, 0x291: 0x8d, 0x292: 0x87, 0x293: 0x88, 0x294: 0x89, 0x295: 0x8a, 0x296: 0x8b, 0x297: 0x8c,\n\t0x298: 0x8d, 0x299: 0x87, 0x29a: 0x88, 0x29b: 0x89, 0x29c: 0x8a, 0x29d: 0x8b, 0x29e: 0x8c, 0x29f: 0x8d,\n\t0x2a0: 0x87, 0x2a1: 0x88, 0x2a2: 0x89, 0x2a3: 0x8a, 0x2a4: 0x8b, 0x2a5: 0x8c, 0x2a6: 0x8d, 0x2a7: 0x87,\n\t0x2a8: 0x88, 0x2a9: 0x89, 0x2aa: 0x8a, 0x2ab: 0x8b, 0x2ac: 0x8c, 0x2ad: 0x8d, 0x2ae: 0x87, 0x2af: 0x88,\n\t0x2b0: 0x89, 0x2b1: 0x8a, 0x2b2: 0x8b, 0x2b3: 0x8c, 0x2b4: 0x8d, 0x2b5: 0x87, 0x2b6: 0x88, 0x2b7: 0x89,\n\t0x2b8: 0x8a, 0x2b9: 0x8b, 0x2ba: 0x8c, 0x2bb: 0x8d, 0x2bc: 0x87, 0x2bd: 0x88, 0x2be: 0x89, 0x2bf: 0x8a,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0x8b, 0x2c1: 0x8c, 0x2c2: 0x8d, 0x2c3: 0x87, 0x2c4: 0x88, 0x2c5: 0x89, 0x2c6: 0x8a, 0x2c7: 0x8b,\n\t0x2c8: 0x8c, 0x2c9: 0x8d, 0x2ca: 0x87, 0x2cb: 0x88, 0x2cc: 0x89, 0x2cd: 0x8a, 0x2ce: 0x8b, 0x2cf: 0x8c,\n\t0x2d0: 0x8d, 0x2d1: 0x87, 0x2d2: 0x88, 0x2d3: 0x89, 0x2d4: 0x8a, 0x2d5: 0x8b, 0x2d6: 0x8c, 0x2d7: 0x8d,\n\t0x2d8: 0x87, 0x2d9: 0x88, 0x2da: 0x89, 0x2db: 0x8a, 0x2dc: 0x8b, 0x2dd: 0x8c, 0x2de: 0x8e,\n\t// Block 0xc, offset 0x300\n\t0x324: 0x1d, 0x325: 0x1e, 0x326: 0x1f, 0x327: 0x20,\n\t0x328: 0x21, 0x329: 0x22, 0x32a: 0x23, 0x32b: 0x24, 0x32c: 0x8f, 0x32d: 0x90, 0x32e: 0x91,\n\t0x331: 0x92, 0x332: 0x93, 0x333: 0x94, 0x334: 0x95,\n\t0x338: 0x96, 0x339: 0x97, 0x33a: 0x98, 0x33b: 0x99, 0x33e: 0x9a, 0x33f: 0x9b,\n\t// Block 0xd, offset 0x340\n\t0x347: 0x9c,\n\t0x34b: 0x9d, 0x34d: 0x9e,\n\t0x368: 0x9f, 0x36b: 0xa0,\n\t0x374: 0xa1,\n\t0x37d: 0xa2,\n\t// Block 0xe, offset 0x380\n\t0x381: 0xa3, 0x382: 0xa4, 0x384: 0xa5, 0x385: 0x82, 0x387: 0xa6,\n\t0x388: 0xa7, 0x38b: 0xa8, 0x38c: 0xa9, 0x38d: 0xaa,\n\t0x391: 0xab, 0x392: 0xac, 0x393: 0xad, 0x396: 0xae, 0x397: 0xaf,\n\t0x398: 0x73, 0x39a: 0xb0, 0x39c: 0xb1,\n\t0x3a0: 0xb2,\n\t0x3a8: 0xb3, 0x3a9: 0xb4, 0x3aa: 0xb5,\n\t0x3b0: 0x73, 0x3b5: 0xb6, 0x3b6: 0xb7,\n\t// Block 0xf, offset 0x3c0\n\t0x3eb: 0xb8, 0x3ec: 0xb9,\n\t// Block 0x10, offset 0x400\n\t0x432: 0xba,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xbb, 0x446: 0xbc, 0x447: 0xbd,\n\t0x449: 0xbe,\n\t// Block 0x12, offset 0x480\n\t0x480: 0xbf,\n\t0x4a3: 0xc0, 0x4a5: 0xc1,\n\t// Block 0x13, offset 0x4c0\n\t0x4c8: 0xc2,\n\t// Block 0x14, offset 0x500\n\t0x520: 0x25, 0x521: 0x26, 0x522: 0x27, 0x523: 0x28, 0x524: 0x29, 0x525: 0x2a, 0x526: 0x2b, 0x527: 0x2c,\n\t0x528: 0x2d,\n\t// Block 0x15, offset 0x540\n\t0x550: 0x0b, 0x551: 0x0c, 0x556: 0x0d,\n\t0x55b: 0x0e, 0x55d: 0x0f, 0x55e: 0x10, 0x55f: 0x11,\n\t0x56f: 0x12,\n}\n\n// nfcSparseOffset: 149 entries, 298 bytes\nvar nfcSparseOffset = []uint16{0x0, 0x5, 0x9, 0xb, 0xd, 0x18, 0x28, 0x2a, 0x2f, 0x3a, 0x49, 0x56, 0x5e, 0x63, 0x68, 0x6a, 0x72, 0x79, 0x7c, 0x84, 0x88, 0x8c, 0x8e, 0x90, 0x99, 0x9d, 0xa4, 0xa9, 0xac, 0xb6, 0xb9, 0xc0, 0xc8, 0xcb, 0xcd, 0xcf, 0xd1, 0xd6, 0xe7, 0xf3, 0xf5, 0xfb, 0xfd, 0xff, 0x101, 0x103, 0x105, 0x107, 0x10a, 0x10d, 0x10f, 0x112, 0x115, 0x119, 0x11e, 0x127, 0x129, 0x12c, 0x12e, 0x139, 0x13d, 0x14b, 0x14e, 0x154, 0x15a, 0x165, 0x169, 0x16b, 0x16d, 0x16f, 0x171, 0x173, 0x179, 0x17d, 0x17f, 0x181, 0x189, 0x18d, 0x190, 0x192, 0x194, 0x196, 0x199, 0x19b, 0x19d, 0x19f, 0x1a1, 0x1a7, 0x1aa, 0x1ac, 0x1b3, 0x1b9, 0x1bf, 0x1c7, 0x1cd, 0x1d3, 0x1d9, 0x1dd, 0x1eb, 0x1f4, 0x1f7, 0x1fa, 0x1fc, 0x1ff, 0x201, 0x205, 0x20a, 0x20c, 0x20e, 0x213, 0x219, 0x21b, 0x21d, 0x21f, 0x225, 0x228, 0x22a, 0x230, 0x233, 0x23b, 0x242, 0x245, 0x248, 0x24a, 0x24d, 0x255, 0x259, 0x260, 0x263, 0x269, 0x26b, 0x26e, 0x270, 0x273, 0x275, 0x277, 0x279, 0x27c, 0x27e, 0x280, 0x282, 0x284, 0x291, 0x29b, 0x29d, 0x29f, 0x2a5, 0x2a7, 0x2aa}\n\n// nfcSparseValues: 684 entries, 2736 bytes\nvar nfcSparseValues = [684]valueRange{\n\t// Block 0x0, offset 0x0\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0xa100, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8100, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8100, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8100, lo: 0xb8, hi: 0xb8},\n\t// Block 0x1, offset 0x5\n\t{value: 0x0091, lo: 0x03},\n\t{value: 0x46e2, lo: 0xa0, hi: 0xa1},\n\t{value: 0x4714, lo: 0xaf, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb7, hi: 0xb7},\n\t// Block 0x2, offset 0x9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t// Block 0x3, offset 0xb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x98, hi: 0x9d},\n\t// Block 0x4, offset 0xd\n\t{value: 0x0006, lo: 0x0a},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x85, hi: 0x85},\n\t{value: 0xa000, lo: 0x89, hi: 0x89},\n\t{value: 0x4840, lo: 0x8a, hi: 0x8a},\n\t{value: 0x485e, lo: 0x8b, hi: 0x8b},\n\t{value: 0x36c7, lo: 0x8c, hi: 0x8c},\n\t{value: 0x36df, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4876, lo: 0x8e, hi: 0x8e},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x36fd, lo: 0x93, hi: 0x94},\n\t// Block 0x5, offset 0x18\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0xa000, lo: 0x8d, hi: 0x8d},\n\t{value: 0x37a5, lo: 0x90, hi: 0x90},\n\t{value: 0x37b1, lo: 0x91, hi: 0x91},\n\t{value: 0x379f, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x96, hi: 0x96},\n\t{value: 0x3817, lo: 0x97, hi: 0x97},\n\t{value: 0x37e1, lo: 0x9c, hi: 0x9c},\n\t{value: 0x37c9, lo: 0x9d, hi: 0x9d},\n\t{value: 0x37f3, lo: 0x9e, hi: 0x9e},\n\t{value: 0xa000, lo: 0xb4, hi: 0xb5},\n\t{value: 0x381d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x3823, lo: 0xb7, hi: 0xb7},\n\t// Block 0x6, offset 0x28\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x83, hi: 0x87},\n\t// Block 0x7, offset 0x2a\n\t{value: 0x0001, lo: 0x04},\n\t{value: 0x8113, lo: 0x81, hi: 0x82},\n\t{value: 0x8132, lo: 0x84, hi: 0x84},\n\t{value: 0x812d, lo: 0x85, hi: 0x85},\n\t{value: 0x810d, lo: 0x87, hi: 0x87},\n\t// Block 0x8, offset 0x2f\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x97},\n\t{value: 0x8119, lo: 0x98, hi: 0x98},\n\t{value: 0x811a, lo: 0x99, hi: 0x99},\n\t{value: 0x811b, lo: 0x9a, hi: 0x9a},\n\t{value: 0x3841, lo: 0xa2, hi: 0xa2},\n\t{value: 0x3847, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3853, lo: 0xa4, hi: 0xa4},\n\t{value: 0x384d, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3859, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xa7, hi: 0xa7},\n\t// Block 0x9, offset 0x3a\n\t{value: 0x0000, lo: 0x0e},\n\t{value: 0x386b, lo: 0x80, hi: 0x80},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0x385f, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x3865, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x95, hi: 0x95},\n\t{value: 0x8132, lo: 0x96, hi: 0x9c},\n\t{value: 0x8132, lo: 0x9f, hi: 0xa2},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8132, lo: 0xab, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t// Block 0xa, offset 0x49\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x811f, lo: 0x91, hi: 0x91},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x812d, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb5, hi: 0xb6},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb9},\n\t{value: 0x8132, lo: 0xba, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbc},\n\t{value: 0x8132, lo: 0xbd, hi: 0xbd},\n\t{value: 0x812d, lo: 0xbe, hi: 0xbe},\n\t{value: 0x8132, lo: 0xbf, hi: 0xbf},\n\t// Block 0xb, offset 0x56\n\t{value: 0x0005, lo: 0x07},\n\t{value: 0x8132, lo: 0x80, hi: 0x80},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x83},\n\t{value: 0x812d, lo: 0x84, hi: 0x85},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x812d, lo: 0x88, hi: 0x89},\n\t{value: 0x8132, lo: 0x8a, hi: 0x8a},\n\t// Block 0xc, offset 0x5e\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xab, hi: 0xb1},\n\t{value: 0x812d, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb3},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0xd, offset 0x63\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0x96, hi: 0x99},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa7},\n\t{value: 0x8132, lo: 0xa9, hi: 0xad},\n\t// Block 0xe, offset 0x68\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x99, hi: 0x9b},\n\t// Block 0xf, offset 0x6a\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0xa8, hi: 0xa8},\n\t{value: 0x3ed8, lo: 0xa9, hi: 0xa9},\n\t{value: 0xa000, lo: 0xb0, hi: 0xb0},\n\t{value: 0x3ee0, lo: 0xb1, hi: 0xb1},\n\t{value: 0xa000, lo: 0xb3, hi: 0xb3},\n\t{value: 0x3ee8, lo: 0xb4, hi: 0xb4},\n\t{value: 0x9902, lo: 0xbc, hi: 0xbc},\n\t// Block 0x10, offset 0x72\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x91, hi: 0x91},\n\t{value: 0x812d, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x93, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x94},\n\t{value: 0x451c, lo: 0x98, hi: 0x9f},\n\t// Block 0x11, offset 0x79\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x12, offset 0x7c\n\t{value: 0x0008, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2c9e, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x455c, lo: 0x9c, hi: 0x9d},\n\t{value: 0x456c, lo: 0x9f, hi: 0x9f},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbe},\n\t// Block 0x13, offset 0x84\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4594, lo: 0xb3, hi: 0xb3},\n\t{value: 0x459c, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x14, offset 0x88\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4574, lo: 0x99, hi: 0x9b},\n\t{value: 0x458c, lo: 0x9e, hi: 0x9e},\n\t// Block 0x15, offset 0x8c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x16, offset 0x8e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t// Block 0x17, offset 0x90\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2cb6, lo: 0x88, hi: 0x88},\n\t{value: 0x2cae, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cbe, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x96, hi: 0x97},\n\t{value: 0x45a4, lo: 0x9c, hi: 0x9c},\n\t{value: 0x45ac, lo: 0x9d, hi: 0x9d},\n\t// Block 0x18, offset 0x99\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x2cc6, lo: 0x94, hi: 0x94},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x19, offset 0x9d\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cce, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2cde, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cd6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1a, offset 0xa4\n\t{value: 0x1801, lo: 0x04},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x3ef0, lo: 0x88, hi: 0x88},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8120, lo: 0x95, hi: 0x96},\n\t// Block 0x1b, offset 0xa9\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0xa000, lo: 0xbf, hi: 0xbf},\n\t// Block 0x1c, offset 0xac\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x2ce6, lo: 0x80, hi: 0x80},\n\t{value: 0x9900, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x2cee, lo: 0x87, hi: 0x87},\n\t{value: 0x2cf6, lo: 0x88, hi: 0x88},\n\t{value: 0x2f50, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2dd8, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x95, hi: 0x96},\n\t// Block 0x1d, offset 0xb6\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1e, offset 0xb9\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cfe, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2d0e, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d06, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1f, offset 0xc0\n\t{value: 0x6bea, lo: 0x07},\n\t{value: 0x9904, lo: 0x8a, hi: 0x8a},\n\t{value: 0x9900, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x3ef8, lo: 0x9a, hi: 0x9a},\n\t{value: 0x2f58, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2de3, lo: 0x9d, hi: 0x9d},\n\t{value: 0x2d16, lo: 0x9e, hi: 0x9f},\n\t// Block 0x20, offset 0xc8\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8122, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x21, offset 0xcb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8123, lo: 0x88, hi: 0x8b},\n\t// Block 0x22, offset 0xcd\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8124, lo: 0xb8, hi: 0xb9},\n\t// Block 0x23, offset 0xcf\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8125, lo: 0x88, hi: 0x8b},\n\t// Block 0x24, offset 0xd1\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x812d, lo: 0x98, hi: 0x99},\n\t{value: 0x812d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb7},\n\t{value: 0x812b, lo: 0xb9, hi: 0xb9},\n\t// Block 0x25, offset 0xd6\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x2644, lo: 0x83, hi: 0x83},\n\t{value: 0x264b, lo: 0x8d, hi: 0x8d},\n\t{value: 0x2652, lo: 0x92, hi: 0x92},\n\t{value: 0x2659, lo: 0x97, hi: 0x97},\n\t{value: 0x2660, lo: 0x9c, hi: 0x9c},\n\t{value: 0x263d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8126, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8127, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a84, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8128, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a8d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x45b4, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8200, lo: 0xb7, hi: 0xb7},\n\t{value: 0x45bc, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8200, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8127, lo: 0xba, hi: 0xbd},\n\t// Block 0x26, offset 0xe7\n\t{value: 0x0000, lo: 0x0b},\n\t{value: 0x8127, lo: 0x80, hi: 0x80},\n\t{value: 0x4a96, lo: 0x81, hi: 0x81},\n\t{value: 0x8132, lo: 0x82, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0x86, hi: 0x87},\n\t{value: 0x266e, lo: 0x93, hi: 0x93},\n\t{value: 0x2675, lo: 0x9d, hi: 0x9d},\n\t{value: 0x267c, lo: 0xa2, hi: 0xa2},\n\t{value: 0x2683, lo: 0xa7, hi: 0xa7},\n\t{value: 0x268a, lo: 0xac, hi: 0xac},\n\t{value: 0x2667, lo: 0xb9, hi: 0xb9},\n\t// Block 0x27, offset 0xf3\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x86, hi: 0x86},\n\t// Block 0x28, offset 0xf5\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x2d1e, lo: 0xa6, hi: 0xa6},\n\t{value: 0x9900, lo: 0xae, hi: 0xae},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x29, offset 0xfb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t// Block 0x2a, offset 0xfd\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x80, hi: 0x92},\n\t// Block 0x2b, offset 0xff\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xb900, lo: 0xa1, hi: 0xb5},\n\t// Block 0x2c, offset 0x101\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xa8, hi: 0xbf},\n\t// Block 0x2d, offset 0x103\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0x80, hi: 0x82},\n\t// Block 0x2e, offset 0x105\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9f},\n\t// Block 0x2f, offset 0x107\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x94, hi: 0x94},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x30, offset 0x10a\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9d},\n\t// Block 0x31, offset 0x10d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8131, lo: 0xa9, hi: 0xa9},\n\t// Block 0x32, offset 0x10f\n\t{value: 0x0004, lo: 0x02},\n\t{value: 0x812e, lo: 0xb9, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbb},\n\t// Block 0x33, offset 0x112\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x97, hi: 0x97},\n\t{value: 0x812d, lo: 0x98, hi: 0x98},\n\t// Block 0x34, offset 0x115\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8132, lo: 0xb5, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x35, offset 0x119\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t{value: 0x812d, lo: 0xb5, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x36, offset 0x11e\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0x2d66, lo: 0x80, hi: 0x80},\n\t{value: 0x2d6e, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x82, hi: 0x82},\n\t{value: 0x2d76, lo: 0x83, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xab, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xac},\n\t{value: 0x8132, lo: 0xad, hi: 0xb3},\n\t// Block 0x37, offset 0x127\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xaa, hi: 0xab},\n\t// Block 0x38, offset 0x129\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8104, lo: 0xb2, hi: 0xb3},\n\t// Block 0x39, offset 0x12c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x3a, offset 0x12e\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x92},\n\t{value: 0x8101, lo: 0x94, hi: 0x94},\n\t{value: 0x812d, lo: 0x95, hi: 0x99},\n\t{value: 0x8132, lo: 0x9a, hi: 0x9b},\n\t{value: 0x812d, lo: 0x9c, hi: 0x9f},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8101, lo: 0xa2, hi: 0xa8},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t{value: 0x8132, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb9},\n\t// Block 0x3b, offset 0x139\n\t{value: 0x0004, lo: 0x03},\n\t{value: 0x0433, lo: 0x80, hi: 0x81},\n\t{value: 0x8100, lo: 0x97, hi: 0x97},\n\t{value: 0x8100, lo: 0xbe, hi: 0xbe},\n\t// Block 0x3c, offset 0x13d\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x8132, lo: 0x90, hi: 0x91},\n\t{value: 0x8101, lo: 0x92, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x97},\n\t{value: 0x8101, lo: 0x98, hi: 0x9a},\n\t{value: 0x8132, lo: 0x9b, hi: 0x9c},\n\t{value: 0x8132, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8101, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa7},\n\t{value: 0x812d, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8132, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8101, lo: 0xaa, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t// Block 0x3d, offset 0x14b\n\t{value: 0x427b, lo: 0x02},\n\t{value: 0x01b8, lo: 0xa6, hi: 0xa6},\n\t{value: 0x0057, lo: 0xaa, hi: 0xab},\n\t// Block 0x3e, offset 0x14e\n\t{value: 0x0007, lo: 0x05},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t{value: 0x3bb9, lo: 0x9a, hi: 0x9b},\n\t{value: 0x3bc7, lo: 0xae, hi: 0xae},\n\t// Block 0x3f, offset 0x154\n\t{value: 0x000e, lo: 0x05},\n\t{value: 0x3bce, lo: 0x8d, hi: 0x8e},\n\t{value: 0x3bd5, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t// Block 0x40, offset 0x15a\n\t{value: 0x6408, lo: 0x0a},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0x3be3, lo: 0x84, hi: 0x84},\n\t{value: 0xa000, lo: 0x88, hi: 0x88},\n\t{value: 0x3bea, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0x3bf1, lo: 0x8c, hi: 0x8c},\n\t{value: 0xa000, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3bf8, lo: 0xa4, hi: 0xa5},\n\t{value: 0x3bff, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xbc, hi: 0xbc},\n\t// Block 0x41, offset 0x165\n\t{value: 0x0007, lo: 0x03},\n\t{value: 0x3c68, lo: 0xa0, hi: 0xa1},\n\t{value: 0x3c92, lo: 0xa2, hi: 0xa3},\n\t{value: 0x3cbc, lo: 0xaa, hi: 0xad},\n\t// Block 0x42, offset 0x169\n\t{value: 0x0004, lo: 0x01},\n\t{value: 0x048b, lo: 0xa9, hi: 0xaa},\n\t// Block 0x43, offset 0x16b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x44dd, lo: 0x9c, hi: 0x9c},\n\t// Block 0x44, offset 0x16d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xaf, hi: 0xb1},\n\t// Block 0x45, offset 0x16f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x46, offset 0x171\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa0, hi: 0xbf},\n\t// Block 0x47, offset 0x173\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x812c, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8131, lo: 0xab, hi: 0xab},\n\t{value: 0x8133, lo: 0xac, hi: 0xac},\n\t{value: 0x812e, lo: 0xad, hi: 0xad},\n\t{value: 0x812f, lo: 0xae, hi: 0xaf},\n\t// Block 0x48, offset 0x179\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4a9f, lo: 0xb3, hi: 0xb3},\n\t{value: 0x4a9f, lo: 0xb5, hi: 0xb6},\n\t{value: 0x4a9f, lo: 0xba, hi: 0xbf},\n\t// Block 0x49, offset 0x17d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x4a9f, lo: 0x8f, hi: 0xa3},\n\t// Block 0x4a, offset 0x17f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xae, hi: 0xbe},\n\t// Block 0x4b, offset 0x181\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0x8100, lo: 0x84, hi: 0x84},\n\t{value: 0x8100, lo: 0x87, hi: 0x87},\n\t{value: 0x8100, lo: 0x90, hi: 0x90},\n\t{value: 0x8100, lo: 0x9e, hi: 0x9e},\n\t{value: 0x8100, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8100, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8100, lo: 0xbb, hi: 0xbb},\n\t// Block 0x4c, offset 0x189\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8100, lo: 0x80, hi: 0x80},\n\t{value: 0x8100, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8100, lo: 0x8e, hi: 0x8e},\n\t// Block 0x4d, offset 0x18d\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb4, hi: 0xbd},\n\t// Block 0x4e, offset 0x190\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9f},\n\t// Block 0x4f, offset 0x192\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb1},\n\t// Block 0x50, offset 0x194\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t// Block 0x51, offset 0x196\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xa0, hi: 0xb1},\n\t// Block 0x52, offset 0x199\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xab, hi: 0xad},\n\t// Block 0x53, offset 0x19b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x93, hi: 0x93},\n\t// Block 0x54, offset 0x19d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb3, hi: 0xb3},\n\t// Block 0x55, offset 0x19f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t// Block 0x56, offset 0x1a1\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbf},\n\t// Block 0x57, offset 0x1a7\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t// Block 0x58, offset 0x1aa\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xad, hi: 0xad},\n\t// Block 0x59, offset 0x1ac\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xe500, lo: 0x80, hi: 0x80},\n\t{value: 0xc600, lo: 0x81, hi: 0x9b},\n\t{value: 0xe500, lo: 0x9c, hi: 0x9c},\n\t{value: 0xc600, lo: 0x9d, hi: 0xb7},\n\t{value: 0xe500, lo: 0xb8, hi: 0xb8},\n\t{value: 0xc600, lo: 0xb9, hi: 0xbf},\n\t// Block 0x5a, offset 0x1b3\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x93},\n\t{value: 0xe500, lo: 0x94, hi: 0x94},\n\t{value: 0xc600, lo: 0x95, hi: 0xaf},\n\t{value: 0xe500, lo: 0xb0, hi: 0xb0},\n\t{value: 0xc600, lo: 0xb1, hi: 0xbf},\n\t// Block 0x5b, offset 0x1b9\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8b},\n\t{value: 0xe500, lo: 0x8c, hi: 0x8c},\n\t{value: 0xc600, lo: 0x8d, hi: 0xa7},\n\t{value: 0xe500, lo: 0xa8, hi: 0xa8},\n\t{value: 0xc600, lo: 0xa9, hi: 0xbf},\n\t// Block 0x5c, offset 0x1bf\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xc600, lo: 0x80, hi: 0x83},\n\t{value: 0xe500, lo: 0x84, hi: 0x84},\n\t{value: 0xc600, lo: 0x85, hi: 0x9f},\n\t{value: 0xe500, lo: 0xa0, hi: 0xa0},\n\t{value: 0xc600, lo: 0xa1, hi: 0xbb},\n\t{value: 0xe500, lo: 0xbc, hi: 0xbc},\n\t{value: 0xc600, lo: 0xbd, hi: 0xbf},\n\t// Block 0x5d, offset 0x1c7\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x97},\n\t{value: 0xe500, lo: 0x98, hi: 0x98},\n\t{value: 0xc600, lo: 0x99, hi: 0xb3},\n\t{value: 0xe500, lo: 0xb4, hi: 0xb4},\n\t{value: 0xc600, lo: 0xb5, hi: 0xbf},\n\t// Block 0x5e, offset 0x1cd\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8f},\n\t{value: 0xe500, lo: 0x90, hi: 0x90},\n\t{value: 0xc600, lo: 0x91, hi: 0xab},\n\t{value: 0xe500, lo: 0xac, hi: 0xac},\n\t{value: 0xc600, lo: 0xad, hi: 0xbf},\n\t// Block 0x5f, offset 0x1d3\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t{value: 0xe500, lo: 0xa4, hi: 0xa4},\n\t{value: 0xc600, lo: 0xa5, hi: 0xbf},\n\t// Block 0x60, offset 0x1d9\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t// Block 0x61, offset 0x1dd\n\t{value: 0x0006, lo: 0x0d},\n\t{value: 0x4390, lo: 0x9d, hi: 0x9d},\n\t{value: 0x8115, lo: 0x9e, hi: 0x9e},\n\t{value: 0x4402, lo: 0x9f, hi: 0x9f},\n\t{value: 0x43f0, lo: 0xaa, hi: 0xab},\n\t{value: 0x44f4, lo: 0xac, hi: 0xac},\n\t{value: 0x44fc, lo: 0xad, hi: 0xad},\n\t{value: 0x4348, lo: 0xae, hi: 0xb1},\n\t{value: 0x4366, lo: 0xb2, hi: 0xb4},\n\t{value: 0x437e, lo: 0xb5, hi: 0xb6},\n\t{value: 0x438a, lo: 0xb8, hi: 0xb8},\n\t{value: 0x4396, lo: 0xb9, hi: 0xbb},\n\t{value: 0x43ae, lo: 0xbc, hi: 0xbc},\n\t{value: 0x43b4, lo: 0xbe, hi: 0xbe},\n\t// Block 0x62, offset 0x1eb\n\t{value: 0x0006, lo: 0x08},\n\t{value: 0x43ba, lo: 0x80, hi: 0x81},\n\t{value: 0x43c6, lo: 0x83, hi: 0x84},\n\t{value: 0x43d8, lo: 0x86, hi: 0x89},\n\t{value: 0x43fc, lo: 0x8a, hi: 0x8a},\n\t{value: 0x4378, lo: 0x8b, hi: 0x8b},\n\t{value: 0x4360, lo: 0x8c, hi: 0x8c},\n\t{value: 0x43a8, lo: 0x8d, hi: 0x8d},\n\t{value: 0x43d2, lo: 0x8e, hi: 0x8e},\n\t// Block 0x63, offset 0x1f4\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0xa4, hi: 0xa5},\n\t{value: 0x8100, lo: 0xb0, hi: 0xb1},\n\t// Block 0x64, offset 0x1f7\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0x9b, hi: 0x9d},\n\t{value: 0x8200, lo: 0x9e, hi: 0xa3},\n\t// Block 0x65, offset 0x1fa\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x90, hi: 0x90},\n\t// Block 0x66, offset 0x1fc\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0x99, hi: 0x99},\n\t{value: 0x8200, lo: 0xb2, hi: 0xb4},\n\t// Block 0x67, offset 0x1ff\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xbc, hi: 0xbd},\n\t// Block 0x68, offset 0x201\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa6},\n\t{value: 0x812d, lo: 0xa7, hi: 0xad},\n\t{value: 0x8132, lo: 0xae, hi: 0xaf},\n\t// Block 0x69, offset 0x205\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8100, lo: 0x89, hi: 0x8c},\n\t{value: 0x8100, lo: 0xb0, hi: 0xb2},\n\t{value: 0x8100, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8100, lo: 0xb6, hi: 0xbf},\n\t// Block 0x6a, offset 0x20a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x81, hi: 0x8c},\n\t// Block 0x6b, offset 0x20c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xb5, hi: 0xba},\n\t// Block 0x6c, offset 0x20e\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x4a9f, lo: 0x9e, hi: 0x9f},\n\t{value: 0x4a9f, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4a9f, lo: 0xa5, hi: 0xa6},\n\t{value: 0x4a9f, lo: 0xaa, hi: 0xaf},\n\t// Block 0x6d, offset 0x213\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x4a9f, lo: 0x82, hi: 0x87},\n\t{value: 0x4a9f, lo: 0x8a, hi: 0x8f},\n\t{value: 0x4a9f, lo: 0x92, hi: 0x97},\n\t{value: 0x4a9f, lo: 0x9a, hi: 0x9c},\n\t{value: 0x8100, lo: 0xa3, hi: 0xa3},\n\t// Block 0x6e, offset 0x219\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x6f, offset 0x21b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xa0, hi: 0xa0},\n\t// Block 0x70, offset 0x21d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb6, hi: 0xba},\n\t// Block 0x71, offset 0x21f\n\t{value: 0x002c, lo: 0x05},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8101, lo: 0xb9, hi: 0xba},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x72, offset 0x225\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t// Block 0x73, offset 0x228\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa7},\n\t// Block 0x74, offset 0x22a\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x8132, lo: 0x88, hi: 0x8a},\n\t{value: 0x812d, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8132, lo: 0x8c, hi: 0x8c},\n\t{value: 0x812d, lo: 0x8d, hi: 0x90},\n\t// Block 0x75, offset 0x230\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x76, offset 0x233\n\t{value: 0x17fe, lo: 0x07},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x4238, lo: 0x9a, hi: 0x9a},\n\t{value: 0xa000, lo: 0x9b, hi: 0x9b},\n\t{value: 0x4242, lo: 0x9c, hi: 0x9c},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x424c, lo: 0xab, hi: 0xab},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x77, offset 0x23b\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0x8132, lo: 0x80, hi: 0x82},\n\t{value: 0x9900, lo: 0xa7, hi: 0xa7},\n\t{value: 0x2d7e, lo: 0xae, hi: 0xae},\n\t{value: 0x2d88, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb1, hi: 0xb2},\n\t{value: 0x8104, lo: 0xb3, hi: 0xb4},\n\t// Block 0x78, offset 0x242\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x79, offset 0x245\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb5, hi: 0xb5},\n\t{value: 0x8102, lo: 0xb6, hi: 0xb6},\n\t// Block 0x7a, offset 0x248\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x8102, lo: 0xa9, hi: 0xaa},\n\t// Block 0x7b, offset 0x24a\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x7c, offset 0x24d\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2d92, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d9c, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x8132, lo: 0xa6, hi: 0xac},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t// Block 0x7d, offset 0x255\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x86, hi: 0x86},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9e},\n\t// Block 0x7e, offset 0x259\n\t{value: 0x6b5a, lo: 0x06},\n\t{value: 0x9900, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb9, hi: 0xb9},\n\t{value: 0x9900, lo: 0xba, hi: 0xba},\n\t{value: 0x2db0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x2da6, lo: 0xbc, hi: 0xbd},\n\t{value: 0x2dba, lo: 0xbe, hi: 0xbe},\n\t// Block 0x7f, offset 0x260\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x83, hi: 0x83},\n\t// Block 0x80, offset 0x263\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x9900, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb8, hi: 0xb9},\n\t{value: 0x2dc4, lo: 0xba, hi: 0xba},\n\t{value: 0x2dce, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x81, offset 0x269\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0x80, hi: 0x80},\n\t// Block 0x82, offset 0x26b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x83, offset 0x26e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xab, hi: 0xab},\n\t// Block 0x84, offset 0x270\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8102, lo: 0xba, hi: 0xba},\n\t// Block 0x85, offset 0x273\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x86, offset 0x275\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x87, hi: 0x87},\n\t// Block 0x87, offset 0x277\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x99, hi: 0x99},\n\t// Block 0x88, offset 0x279\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0x82, hi: 0x82},\n\t{value: 0x8104, lo: 0x84, hi: 0x85},\n\t// Block 0x89, offset 0x27c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x97, hi: 0x97},\n\t// Block 0x8a, offset 0x27e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0xb0, hi: 0xb4},\n\t// Block 0x8b, offset 0x280\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb6},\n\t// Block 0x8c, offset 0x282\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0x9e, hi: 0x9e},\n\t// Block 0x8d, offset 0x284\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x45cc, lo: 0x9e, hi: 0x9e},\n\t{value: 0x45d6, lo: 0x9f, hi: 0x9f},\n\t{value: 0x460a, lo: 0xa0, hi: 0xa0},\n\t{value: 0x4618, lo: 0xa1, hi: 0xa1},\n\t{value: 0x4626, lo: 0xa2, hi: 0xa2},\n\t{value: 0x4634, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4642, lo: 0xa4, hi: 0xa4},\n\t{value: 0x812b, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8101, lo: 0xa7, hi: 0xa9},\n\t{value: 0x8130, lo: 0xad, hi: 0xad},\n\t{value: 0x812b, lo: 0xae, hi: 0xb2},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbf},\n\t// Block 0x8e, offset 0x291\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x812d, lo: 0x80, hi: 0x82},\n\t{value: 0x8132, lo: 0x85, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8b},\n\t{value: 0x8132, lo: 0xaa, hi: 0xad},\n\t{value: 0x45e0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x45ea, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4650, lo: 0xbd, hi: 0xbd},\n\t{value: 0x466c, lo: 0xbe, hi: 0xbe},\n\t{value: 0x465e, lo: 0xbf, hi: 0xbf},\n\t// Block 0x8f, offset 0x29b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x467a, lo: 0x80, hi: 0x80},\n\t// Block 0x90, offset 0x29d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x82, hi: 0x84},\n\t// Block 0x91, offset 0x29f\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0x80, hi: 0x86},\n\t{value: 0x8132, lo: 0x88, hi: 0x98},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa1},\n\t{value: 0x8132, lo: 0xa3, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa6, hi: 0xaa},\n\t// Block 0x92, offset 0x2a5\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x90, hi: 0x96},\n\t// Block 0x93, offset 0x2a7\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x84, hi: 0x89},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x94, offset 0x2aa\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x93, hi: 0x93},\n}\n\n// lookup returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfkcTrie) lookup(s []byte) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfkcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfkcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfkcTrie) lookupUnsafe(s []byte) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfkcValues[c0]\n\t}\n\ti := nfkcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// lookupString returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfkcTrie) lookupString(s string) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfkcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfkcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfkcTrie) lookupStringUnsafe(s string) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfkcValues[c0]\n\t}\n\ti := nfkcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// nfkcTrie. Total size: 17248 bytes (16.84 KiB). Checksum: 4fb368372b6b1b27.\ntype nfkcTrie struct{}\n\nfunc newNfkcTrie(i int) *nfkcTrie {\n\treturn &nfkcTrie{}\n}\n\n// lookupValue determines the type of block n and looks up the value for b.\nfunc (t *nfkcTrie) lookupValue(n uint32, b byte) uint16 {\n\tswitch {\n\tcase n < 92:\n\t\treturn uint16(nfkcValues[n<<6+uint32(b)])\n\tdefault:\n\t\tn -= 92\n\t\treturn uint16(nfkcSparse.lookup(n, b))\n\t}\n}\n\n// nfkcValues: 94 blocks, 6016 entries, 12032 bytes\n// The third block is the zero block.\nvar nfkcValues = [6016]uint16{\n\t// Block 0x0, offset 0x0\n\t0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,\n\t// Block 0x1, offset 0x40\n\t0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,\n\t0x46: 0xa000, 0x47: 0xa000, 0x48: 0xa000, 0x49: 0xa000, 0x4a: 0xa000, 0x4b: 0xa000,\n\t0x4c: 0xa000, 0x4d: 0xa000, 0x4e: 0xa000, 0x4f: 0xa000, 0x50: 0xa000,\n\t0x52: 0xa000, 0x53: 0xa000, 0x54: 0xa000, 0x55: 0xa000, 0x56: 0xa000, 0x57: 0xa000,\n\t0x58: 0xa000, 0x59: 0xa000, 0x5a: 0xa000,\n\t0x61: 0xa000, 0x62: 0xa000, 0x63: 0xa000,\n\t0x64: 0xa000, 0x65: 0xa000, 0x66: 0xa000, 0x67: 0xa000, 0x68: 0xa000, 0x69: 0xa000,\n\t0x6a: 0xa000, 0x6b: 0xa000, 0x6c: 0xa000, 0x6d: 0xa000, 0x6e: 0xa000, 0x6f: 0xa000,\n\t0x70: 0xa000, 0x72: 0xa000, 0x73: 0xa000, 0x74: 0xa000, 0x75: 0xa000,\n\t0x76: 0xa000, 0x77: 0xa000, 0x78: 0xa000, 0x79: 0xa000, 0x7a: 0xa000,\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc0: 0x2f6f, 0xc1: 0x2f74, 0xc2: 0x4688, 0xc3: 0x2f79, 0xc4: 0x4697, 0xc5: 0x469c,\n\t0xc6: 0xa000, 0xc7: 0x46a6, 0xc8: 0x2fe2, 0xc9: 0x2fe7, 0xca: 0x46ab, 0xcb: 0x2ffb,\n\t0xcc: 0x306e, 0xcd: 0x3073, 0xce: 0x3078, 0xcf: 0x46bf, 0xd1: 0x3104,\n\t0xd2: 0x3127, 0xd3: 0x312c, 0xd4: 0x46c9, 0xd5: 0x46ce, 0xd6: 0x46dd,\n\t0xd8: 0xa000, 0xd9: 0x31b3, 0xda: 0x31b8, 0xdb: 0x31bd, 0xdc: 0x470f, 0xdd: 0x3235,\n\t0xe0: 0x327b, 0xe1: 0x3280, 0xe2: 0x4719, 0xe3: 0x3285,\n\t0xe4: 0x4728, 0xe5: 0x472d, 0xe6: 0xa000, 0xe7: 0x4737, 0xe8: 0x32ee, 0xe9: 0x32f3,\n\t0xea: 0x473c, 0xeb: 0x3307, 0xec: 0x337f, 0xed: 0x3384, 0xee: 0x3389, 0xef: 0x4750,\n\t0xf1: 0x3415, 0xf2: 0x3438, 0xf3: 0x343d, 0xf4: 0x475a, 0xf5: 0x475f,\n\t0xf6: 0x476e, 0xf8: 0xa000, 0xf9: 0x34c9, 0xfa: 0x34ce, 0xfb: 0x34d3,\n\t0xfc: 0x47a0, 0xfd: 0x3550, 0xff: 0x3569,\n\t// Block 0x4, offset 0x100\n\t0x100: 0x2f7e, 0x101: 0x328a, 0x102: 0x468d, 0x103: 0x471e, 0x104: 0x2f9c, 0x105: 0x32a8,\n\t0x106: 0x2fb0, 0x107: 0x32bc, 0x108: 0x2fb5, 0x109: 0x32c1, 0x10a: 0x2fba, 0x10b: 0x32c6,\n\t0x10c: 0x2fbf, 0x10d: 0x32cb, 0x10e: 0x2fc9, 0x10f: 0x32d5,\n\t0x112: 0x46b0, 0x113: 0x4741, 0x114: 0x2ff1, 0x115: 0x32fd, 0x116: 0x2ff6, 0x117: 0x3302,\n\t0x118: 0x3014, 0x119: 0x3320, 0x11a: 0x3005, 0x11b: 0x3311, 0x11c: 0x302d, 0x11d: 0x3339,\n\t0x11e: 0x3037, 0x11f: 0x3343, 0x120: 0x303c, 0x121: 0x3348, 0x122: 0x3046, 0x123: 0x3352,\n\t0x124: 0x304b, 0x125: 0x3357, 0x128: 0x307d, 0x129: 0x338e,\n\t0x12a: 0x3082, 0x12b: 0x3393, 0x12c: 0x3087, 0x12d: 0x3398, 0x12e: 0x30aa, 0x12f: 0x33b6,\n\t0x130: 0x308c, 0x132: 0x195d, 0x133: 0x19e7, 0x134: 0x30b4, 0x135: 0x33c0,\n\t0x136: 0x30c8, 0x137: 0x33d9, 0x139: 0x30d2, 0x13a: 0x33e3, 0x13b: 0x30dc,\n\t0x13c: 0x33ed, 0x13d: 0x30d7, 0x13e: 0x33e8, 0x13f: 0x1bac,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x1c34, 0x143: 0x30ff, 0x144: 0x3410, 0x145: 0x3118,\n\t0x146: 0x3429, 0x147: 0x310e, 0x148: 0x341f, 0x149: 0x1c5c,\n\t0x14c: 0x46d3, 0x14d: 0x4764, 0x14e: 0x3131, 0x14f: 0x3442, 0x150: 0x313b, 0x151: 0x344c,\n\t0x154: 0x3159, 0x155: 0x346a, 0x156: 0x3172, 0x157: 0x3483,\n\t0x158: 0x3163, 0x159: 0x3474, 0x15a: 0x46f6, 0x15b: 0x4787, 0x15c: 0x317c, 0x15d: 0x348d,\n\t0x15e: 0x318b, 0x15f: 0x349c, 0x160: 0x46fb, 0x161: 0x478c, 0x162: 0x31a4, 0x163: 0x34ba,\n\t0x164: 0x3195, 0x165: 0x34ab, 0x168: 0x4705, 0x169: 0x4796,\n\t0x16a: 0x470a, 0x16b: 0x479b, 0x16c: 0x31c2, 0x16d: 0x34d8, 0x16e: 0x31cc, 0x16f: 0x34e2,\n\t0x170: 0x31d1, 0x171: 0x34e7, 0x172: 0x31ef, 0x173: 0x3505, 0x174: 0x3212, 0x175: 0x3528,\n\t0x176: 0x323a, 0x177: 0x3555, 0x178: 0x324e, 0x179: 0x325d, 0x17a: 0x357d, 0x17b: 0x3267,\n\t0x17c: 0x3587, 0x17d: 0x326c, 0x17e: 0x358c, 0x17f: 0x00a7,\n\t// Block 0x6, offset 0x180\n\t0x184: 0x2dee, 0x185: 0x2df4,\n\t0x186: 0x2dfa, 0x187: 0x1972, 0x188: 0x1975, 0x189: 0x1a08, 0x18a: 0x1987, 0x18b: 0x198a,\n\t0x18c: 0x1a3e, 0x18d: 0x2f88, 0x18e: 0x3294, 0x18f: 0x3096, 0x190: 0x33a2, 0x191: 0x3140,\n\t0x192: 0x3451, 0x193: 0x31d6, 0x194: 0x34ec, 0x195: 0x39cf, 0x196: 0x3b5e, 0x197: 0x39c8,\n\t0x198: 0x3b57, 0x199: 0x39d6, 0x19a: 0x3b65, 0x19b: 0x39c1, 0x19c: 0x3b50,\n\t0x19e: 0x38b0, 0x19f: 0x3a3f, 0x1a0: 0x38a9, 0x1a1: 0x3a38, 0x1a2: 0x35b3, 0x1a3: 0x35c5,\n\t0x1a6: 0x3041, 0x1a7: 0x334d, 0x1a8: 0x30be, 0x1a9: 0x33cf,\n\t0x1aa: 0x46ec, 0x1ab: 0x477d, 0x1ac: 0x3990, 0x1ad: 0x3b1f, 0x1ae: 0x35d7, 0x1af: 0x35dd,\n\t0x1b0: 0x33c5, 0x1b1: 0x1942, 0x1b2: 0x1945, 0x1b3: 0x19cf, 0x1b4: 0x3028, 0x1b5: 0x3334,\n\t0x1b8: 0x30fa, 0x1b9: 0x340b, 0x1ba: 0x38b7, 0x1bb: 0x3a46,\n\t0x1bc: 0x35ad, 0x1bd: 0x35bf, 0x1be: 0x35b9, 0x1bf: 0x35cb,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x2f8d, 0x1c1: 0x3299, 0x1c2: 0x2f92, 0x1c3: 0x329e, 0x1c4: 0x300a, 0x1c5: 0x3316,\n\t0x1c6: 0x300f, 0x1c7: 0x331b, 0x1c8: 0x309b, 0x1c9: 0x33a7, 0x1ca: 0x30a0, 0x1cb: 0x33ac,\n\t0x1cc: 0x3145, 0x1cd: 0x3456, 0x1ce: 0x314a, 0x1cf: 0x345b, 0x1d0: 0x3168, 0x1d1: 0x3479,\n\t0x1d2: 0x316d, 0x1d3: 0x347e, 0x1d4: 0x31db, 0x1d5: 0x34f1, 0x1d6: 0x31e0, 0x1d7: 0x34f6,\n\t0x1d8: 0x3186, 0x1d9: 0x3497, 0x1da: 0x319f, 0x1db: 0x34b5,\n\t0x1de: 0x305a, 0x1df: 0x3366,\n\t0x1e6: 0x4692, 0x1e7: 0x4723, 0x1e8: 0x46ba, 0x1e9: 0x474b,\n\t0x1ea: 0x395f, 0x1eb: 0x3aee, 0x1ec: 0x393c, 0x1ed: 0x3acb, 0x1ee: 0x46d8, 0x1ef: 0x4769,\n\t0x1f0: 0x3958, 0x1f1: 0x3ae7, 0x1f2: 0x3244, 0x1f3: 0x355f,\n\t// Block 0x8, offset 0x200\n\t0x200: 0x9932, 0x201: 0x9932, 0x202: 0x9932, 0x203: 0x9932, 0x204: 0x9932, 0x205: 0x8132,\n\t0x206: 0x9932, 0x207: 0x9932, 0x208: 0x9932, 0x209: 0x9932, 0x20a: 0x9932, 0x20b: 0x9932,\n\t0x20c: 0x9932, 0x20d: 0x8132, 0x20e: 0x8132, 0x20f: 0x9932, 0x210: 0x8132, 0x211: 0x9932,\n\t0x212: 0x8132, 0x213: 0x9932, 0x214: 0x9932, 0x215: 0x8133, 0x216: 0x812d, 0x217: 0x812d,\n\t0x218: 0x812d, 0x219: 0x812d, 0x21a: 0x8133, 0x21b: 0x992b, 0x21c: 0x812d, 0x21d: 0x812d,\n\t0x21e: 0x812d, 0x21f: 0x812d, 0x220: 0x812d, 0x221: 0x8129, 0x222: 0x8129, 0x223: 0x992d,\n\t0x224: 0x992d, 0x225: 0x992d, 0x226: 0x992d, 0x227: 0x9929, 0x228: 0x9929, 0x229: 0x812d,\n\t0x22a: 0x812d, 0x22b: 0x812d, 0x22c: 0x812d, 0x22d: 0x992d, 0x22e: 0x992d, 0x22f: 0x812d,\n\t0x230: 0x992d, 0x231: 0x992d, 0x232: 0x812d, 0x233: 0x812d, 0x234: 0x8101, 0x235: 0x8101,\n\t0x236: 0x8101, 0x237: 0x8101, 0x238: 0x9901, 0x239: 0x812d, 0x23a: 0x812d, 0x23b: 0x812d,\n\t0x23c: 0x812d, 0x23d: 0x8132, 0x23e: 0x8132, 0x23f: 0x8132,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x49ae, 0x241: 0x49b3, 0x242: 0x9932, 0x243: 0x49b8, 0x244: 0x4a71, 0x245: 0x9936,\n\t0x246: 0x8132, 0x247: 0x812d, 0x248: 0x812d, 0x249: 0x812d, 0x24a: 0x8132, 0x24b: 0x8132,\n\t0x24c: 0x8132, 0x24d: 0x812d, 0x24e: 0x812d, 0x250: 0x8132, 0x251: 0x8132,\n\t0x252: 0x8132, 0x253: 0x812d, 0x254: 0x812d, 0x255: 0x812d, 0x256: 0x812d, 0x257: 0x8132,\n\t0x258: 0x8133, 0x259: 0x812d, 0x25a: 0x812d, 0x25b: 0x8132, 0x25c: 0x8134, 0x25d: 0x8135,\n\t0x25e: 0x8135, 0x25f: 0x8134, 0x260: 0x8135, 0x261: 0x8135, 0x262: 0x8134, 0x263: 0x8132,\n\t0x264: 0x8132, 0x265: 0x8132, 0x266: 0x8132, 0x267: 0x8132, 0x268: 0x8132, 0x269: 0x8132,\n\t0x26a: 0x8132, 0x26b: 0x8132, 0x26c: 0x8132, 0x26d: 0x8132, 0x26e: 0x8132, 0x26f: 0x8132,\n\t0x274: 0x0170,\n\t0x27a: 0x42a5,\n\t0x27e: 0x0037,\n\t// Block 0xa, offset 0x280\n\t0x284: 0x425a, 0x285: 0x447b,\n\t0x286: 0x35e9, 0x287: 0x00ce, 0x288: 0x3607, 0x289: 0x3613, 0x28a: 0x3625,\n\t0x28c: 0x3643, 0x28e: 0x3655, 0x28f: 0x3673, 0x290: 0x3e08, 0x291: 0xa000,\n\t0x295: 0xa000, 0x297: 0xa000,\n\t0x299: 0xa000,\n\t0x29f: 0xa000, 0x2a1: 0xa000,\n\t0x2a5: 0xa000, 0x2a9: 0xa000,\n\t0x2aa: 0x3637, 0x2ab: 0x3667, 0x2ac: 0x47fe, 0x2ad: 0x3697, 0x2ae: 0x4828, 0x2af: 0x36a9,\n\t0x2b0: 0x3e70, 0x2b1: 0xa000, 0x2b5: 0xa000,\n\t0x2b7: 0xa000, 0x2b9: 0xa000,\n\t0x2bf: 0xa000,\n\t// Block 0xb, offset 0x2c0\n\t0x2c1: 0xa000, 0x2c5: 0xa000,\n\t0x2c9: 0xa000, 0x2ca: 0x4840, 0x2cb: 0x485e,\n\t0x2cc: 0x36c7, 0x2cd: 0x36df, 0x2ce: 0x4876, 0x2d0: 0x01be, 0x2d1: 0x01d0,\n\t0x2d2: 0x01ac, 0x2d3: 0x430c, 0x2d4: 0x4312, 0x2d5: 0x01fa, 0x2d6: 0x01e8,\n\t0x2f0: 0x01d6, 0x2f1: 0x01eb, 0x2f2: 0x01ee, 0x2f4: 0x0188, 0x2f5: 0x01c7,\n\t0x2f9: 0x01a6,\n\t// Block 0xc, offset 0x300\n\t0x300: 0x3721, 0x301: 0x372d, 0x303: 0x371b,\n\t0x306: 0xa000, 0x307: 0x3709,\n\t0x30c: 0x375d, 0x30d: 0x3745, 0x30e: 0x376f, 0x310: 0xa000,\n\t0x313: 0xa000, 0x315: 0xa000, 0x316: 0xa000, 0x317: 0xa000,\n\t0x318: 0xa000, 0x319: 0x3751, 0x31a: 0xa000,\n\t0x31e: 0xa000, 0x323: 0xa000,\n\t0x327: 0xa000,\n\t0x32b: 0xa000, 0x32d: 0xa000,\n\t0x330: 0xa000, 0x333: 0xa000, 0x335: 0xa000,\n\t0x336: 0xa000, 0x337: 0xa000, 0x338: 0xa000, 0x339: 0x37d5, 0x33a: 0xa000,\n\t0x33e: 0xa000,\n\t// Block 0xd, offset 0x340\n\t0x341: 0x3733, 0x342: 0x37b7,\n\t0x350: 0x370f, 0x351: 0x3793,\n\t0x352: 0x3715, 0x353: 0x3799, 0x356: 0x3727, 0x357: 0x37ab,\n\t0x358: 0xa000, 0x359: 0xa000, 0x35a: 0x3829, 0x35b: 0x382f, 0x35c: 0x3739, 0x35d: 0x37bd,\n\t0x35e: 0x373f, 0x35f: 0x37c3, 0x362: 0x374b, 0x363: 0x37cf,\n\t0x364: 0x3757, 0x365: 0x37db, 0x366: 0x3763, 0x367: 0x37e7, 0x368: 0xa000, 0x369: 0xa000,\n\t0x36a: 0x3835, 0x36b: 0x383b, 0x36c: 0x378d, 0x36d: 0x3811, 0x36e: 0x3769, 0x36f: 0x37ed,\n\t0x370: 0x3775, 0x371: 0x37f9, 0x372: 0x377b, 0x373: 0x37ff, 0x374: 0x3781, 0x375: 0x3805,\n\t0x378: 0x3787, 0x379: 0x380b,\n\t// Block 0xe, offset 0x380\n\t0x387: 0x1d61,\n\t0x391: 0x812d,\n\t0x392: 0x8132, 0x393: 0x8132, 0x394: 0x8132, 0x395: 0x8132, 0x396: 0x812d, 0x397: 0x8132,\n\t0x398: 0x8132, 0x399: 0x8132, 0x39a: 0x812e, 0x39b: 0x812d, 0x39c: 0x8132, 0x39d: 0x8132,\n\t0x39e: 0x8132, 0x39f: 0x8132, 0x3a0: 0x8132, 0x3a1: 0x8132, 0x3a2: 0x812d, 0x3a3: 0x812d,\n\t0x3a4: 0x812d, 0x3a5: 0x812d, 0x3a6: 0x812d, 0x3a7: 0x812d, 0x3a8: 0x8132, 0x3a9: 0x8132,\n\t0x3aa: 0x812d, 0x3ab: 0x8132, 0x3ac: 0x8132, 0x3ad: 0x812e, 0x3ae: 0x8131, 0x3af: 0x8132,\n\t0x3b0: 0x8105, 0x3b1: 0x8106, 0x3b2: 0x8107, 0x3b3: 0x8108, 0x3b4: 0x8109, 0x3b5: 0x810a,\n\t0x3b6: 0x810b, 0x3b7: 0x810c, 0x3b8: 0x810d, 0x3b9: 0x810e, 0x3ba: 0x810e, 0x3bb: 0x810f,\n\t0x3bc: 0x8110, 0x3bd: 0x8111, 0x3bf: 0x8112,\n\t// Block 0xf, offset 0x3c0\n\t0x3c8: 0xa000, 0x3ca: 0xa000, 0x3cb: 0x8116,\n\t0x3cc: 0x8117, 0x3cd: 0x8118, 0x3ce: 0x8119, 0x3cf: 0x811a, 0x3d0: 0x811b, 0x3d1: 0x811c,\n\t0x3d2: 0x811d, 0x3d3: 0x9932, 0x3d4: 0x9932, 0x3d5: 0x992d, 0x3d6: 0x812d, 0x3d7: 0x8132,\n\t0x3d8: 0x8132, 0x3d9: 0x8132, 0x3da: 0x8132, 0x3db: 0x8132, 0x3dc: 0x812d, 0x3dd: 0x8132,\n\t0x3de: 0x8132, 0x3df: 0x812d,\n\t0x3f0: 0x811e, 0x3f5: 0x1d84,\n\t0x3f6: 0x2013, 0x3f7: 0x204f, 0x3f8: 0x204a,\n\t// Block 0x10, offset 0x400\n\t0x413: 0x812d, 0x414: 0x8132, 0x415: 0x8132, 0x416: 0x8132, 0x417: 0x8132,\n\t0x418: 0x8132, 0x419: 0x8132, 0x41a: 0x8132, 0x41b: 0x8132, 0x41c: 0x8132, 0x41d: 0x8132,\n\t0x41e: 0x8132, 0x41f: 0x8132, 0x420: 0x8132, 0x421: 0x8132, 0x423: 0x812d,\n\t0x424: 0x8132, 0x425: 0x8132, 0x426: 0x812d, 0x427: 0x8132, 0x428: 0x8132, 0x429: 0x812d,\n\t0x42a: 0x8132, 0x42b: 0x8132, 0x42c: 0x8132, 0x42d: 0x812d, 0x42e: 0x812d, 0x42f: 0x812d,\n\t0x430: 0x8116, 0x431: 0x8117, 0x432: 0x8118, 0x433: 0x8132, 0x434: 0x8132, 0x435: 0x8132,\n\t0x436: 0x812d, 0x437: 0x8132, 0x438: 0x8132, 0x439: 0x812d, 0x43a: 0x812d, 0x43b: 0x8132,\n\t0x43c: 0x8132, 0x43d: 0x8132, 0x43e: 0x8132, 0x43f: 0x8132,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xa000,\n\t0x446: 0x2d26, 0x447: 0xa000, 0x448: 0x2d2e, 0x449: 0xa000, 0x44a: 0x2d36, 0x44b: 0xa000,\n\t0x44c: 0x2d3e, 0x44d: 0xa000, 0x44e: 0x2d46, 0x451: 0xa000,\n\t0x452: 0x2d4e,\n\t0x474: 0x8102, 0x475: 0x9900,\n\t0x47a: 0xa000, 0x47b: 0x2d56,\n\t0x47c: 0xa000, 0x47d: 0x2d5e, 0x47e: 0xa000, 0x47f: 0xa000,\n\t// Block 0x12, offset 0x480\n\t0x480: 0x0069, 0x481: 0x006b, 0x482: 0x006f, 0x483: 0x0083, 0x484: 0x00f5, 0x485: 0x00f8,\n\t0x486: 0x0413, 0x487: 0x0085, 0x488: 0x0089, 0x489: 0x008b, 0x48a: 0x0104, 0x48b: 0x0107,\n\t0x48c: 0x010a, 0x48d: 0x008f, 0x48f: 0x0097, 0x490: 0x009b, 0x491: 0x00e0,\n\t0x492: 0x009f, 0x493: 0x00fe, 0x494: 0x0417, 0x495: 0x041b, 0x496: 0x00a1, 0x497: 0x00a9,\n\t0x498: 0x00ab, 0x499: 0x0423, 0x49a: 0x012b, 0x49b: 0x00ad, 0x49c: 0x0427, 0x49d: 0x01be,\n\t0x49e: 0x01c1, 0x49f: 0x01c4, 0x4a0: 0x01fa, 0x4a1: 0x01fd, 0x4a2: 0x0093, 0x4a3: 0x00a5,\n\t0x4a4: 0x00ab, 0x4a5: 0x00ad, 0x4a6: 0x01be, 0x4a7: 0x01c1, 0x4a8: 0x01eb, 0x4a9: 0x01fa,\n\t0x4aa: 0x01fd,\n\t0x4b8: 0x020c,\n\t// Block 0x13, offset 0x4c0\n\t0x4db: 0x00fb, 0x4dc: 0x0087, 0x4dd: 0x0101,\n\t0x4de: 0x00d4, 0x4df: 0x010a, 0x4e0: 0x008d, 0x4e1: 0x010d, 0x4e2: 0x0110, 0x4e3: 0x0116,\n\t0x4e4: 0x011c, 0x4e5: 0x011f, 0x4e6: 0x0122, 0x4e7: 0x042b, 0x4e8: 0x016a, 0x4e9: 0x0128,\n\t0x4ea: 0x042f, 0x4eb: 0x016d, 0x4ec: 0x0131, 0x4ed: 0x012e, 0x4ee: 0x0134, 0x4ef: 0x0137,\n\t0x4f0: 0x013a, 0x4f1: 0x013d, 0x4f2: 0x0140, 0x4f3: 0x014c, 0x4f4: 0x014f, 0x4f5: 0x00ec,\n\t0x4f6: 0x0152, 0x4f7: 0x0155, 0x4f8: 0x041f, 0x4f9: 0x0158, 0x4fa: 0x015b, 0x4fb: 0x00b5,\n\t0x4fc: 0x015e, 0x4fd: 0x0161, 0x4fe: 0x0164, 0x4ff: 0x01d0,\n\t// Block 0x14, offset 0x500\n\t0x500: 0x8132, 0x501: 0x8132, 0x502: 0x812d, 0x503: 0x8132, 0x504: 0x8132, 0x505: 0x8132,\n\t0x506: 0x8132, 0x507: 0x8132, 0x508: 0x8132, 0x509: 0x8132, 0x50a: 0x812d, 0x50b: 0x8132,\n\t0x50c: 0x8132, 0x50d: 0x8135, 0x50e: 0x812a, 0x50f: 0x812d, 0x510: 0x8129, 0x511: 0x8132,\n\t0x512: 0x8132, 0x513: 0x8132, 0x514: 0x8132, 0x515: 0x8132, 0x516: 0x8132, 0x517: 0x8132,\n\t0x518: 0x8132, 0x519: 0x8132, 0x51a: 0x8132, 0x51b: 0x8132, 0x51c: 0x8132, 0x51d: 0x8132,\n\t0x51e: 0x8132, 0x51f: 0x8132, 0x520: 0x8132, 0x521: 0x8132, 0x522: 0x8132, 0x523: 0x8132,\n\t0x524: 0x8132, 0x525: 0x8132, 0x526: 0x8132, 0x527: 0x8132, 0x528: 0x8132, 0x529: 0x8132,\n\t0x52a: 0x8132, 0x52b: 0x8132, 0x52c: 0x8132, 0x52d: 0x8132, 0x52e: 0x8132, 0x52f: 0x8132,\n\t0x530: 0x8132, 0x531: 0x8132, 0x532: 0x8132, 0x533: 0x8132, 0x534: 0x8132, 0x535: 0x8132,\n\t0x536: 0x8133, 0x537: 0x8131, 0x538: 0x8131, 0x539: 0x812d, 0x53b: 0x8132,\n\t0x53c: 0x8134, 0x53d: 0x812d, 0x53e: 0x8132, 0x53f: 0x812d,\n\t// Block 0x15, offset 0x540\n\t0x540: 0x2f97, 0x541: 0x32a3, 0x542: 0x2fa1, 0x543: 0x32ad, 0x544: 0x2fa6, 0x545: 0x32b2,\n\t0x546: 0x2fab, 0x547: 0x32b7, 0x548: 0x38cc, 0x549: 0x3a5b, 0x54a: 0x2fc4, 0x54b: 0x32d0,\n\t0x54c: 0x2fce, 0x54d: 0x32da, 0x54e: 0x2fdd, 0x54f: 0x32e9, 0x550: 0x2fd3, 0x551: 0x32df,\n\t0x552: 0x2fd8, 0x553: 0x32e4, 0x554: 0x38ef, 0x555: 0x3a7e, 0x556: 0x38f6, 0x557: 0x3a85,\n\t0x558: 0x3019, 0x559: 0x3325, 0x55a: 0x301e, 0x55b: 0x332a, 0x55c: 0x3904, 0x55d: 0x3a93,\n\t0x55e: 0x3023, 0x55f: 0x332f, 0x560: 0x3032, 0x561: 0x333e, 0x562: 0x3050, 0x563: 0x335c,\n\t0x564: 0x305f, 0x565: 0x336b, 0x566: 0x3055, 0x567: 0x3361, 0x568: 0x3064, 0x569: 0x3370,\n\t0x56a: 0x3069, 0x56b: 0x3375, 0x56c: 0x30af, 0x56d: 0x33bb, 0x56e: 0x390b, 0x56f: 0x3a9a,\n\t0x570: 0x30b9, 0x571: 0x33ca, 0x572: 0x30c3, 0x573: 0x33d4, 0x574: 0x30cd, 0x575: 0x33de,\n\t0x576: 0x46c4, 0x577: 0x4755, 0x578: 0x3912, 0x579: 0x3aa1, 0x57a: 0x30e6, 0x57b: 0x33f7,\n\t0x57c: 0x30e1, 0x57d: 0x33f2, 0x57e: 0x30eb, 0x57f: 0x33fc,\n\t// Block 0x16, offset 0x580\n\t0x580: 0x30f0, 0x581: 0x3401, 0x582: 0x30f5, 0x583: 0x3406, 0x584: 0x3109, 0x585: 0x341a,\n\t0x586: 0x3113, 0x587: 0x3424, 0x588: 0x3122, 0x589: 0x3433, 0x58a: 0x311d, 0x58b: 0x342e,\n\t0x58c: 0x3935, 0x58d: 0x3ac4, 0x58e: 0x3943, 0x58f: 0x3ad2, 0x590: 0x394a, 0x591: 0x3ad9,\n\t0x592: 0x3951, 0x593: 0x3ae0, 0x594: 0x314f, 0x595: 0x3460, 0x596: 0x3154, 0x597: 0x3465,\n\t0x598: 0x315e, 0x599: 0x346f, 0x59a: 0x46f1, 0x59b: 0x4782, 0x59c: 0x3997, 0x59d: 0x3b26,\n\t0x59e: 0x3177, 0x59f: 0x3488, 0x5a0: 0x3181, 0x5a1: 0x3492, 0x5a2: 0x4700, 0x5a3: 0x4791,\n\t0x5a4: 0x399e, 0x5a5: 0x3b2d, 0x5a6: 0x39a5, 0x5a7: 0x3b34, 0x5a8: 0x39ac, 0x5a9: 0x3b3b,\n\t0x5aa: 0x3190, 0x5ab: 0x34a1, 0x5ac: 0x319a, 0x5ad: 0x34b0, 0x5ae: 0x31ae, 0x5af: 0x34c4,\n\t0x5b0: 0x31a9, 0x5b1: 0x34bf, 0x5b2: 0x31ea, 0x5b3: 0x3500, 0x5b4: 0x31f9, 0x5b5: 0x350f,\n\t0x5b6: 0x31f4, 0x5b7: 0x350a, 0x5b8: 0x39b3, 0x5b9: 0x3b42, 0x5ba: 0x39ba, 0x5bb: 0x3b49,\n\t0x5bc: 0x31fe, 0x5bd: 0x3514, 0x5be: 0x3203, 0x5bf: 0x3519,\n\t// Block 0x17, offset 0x5c0\n\t0x5c0: 0x3208, 0x5c1: 0x351e, 0x5c2: 0x320d, 0x5c3: 0x3523, 0x5c4: 0x321c, 0x5c5: 0x3532,\n\t0x5c6: 0x3217, 0x5c7: 0x352d, 0x5c8: 0x3221, 0x5c9: 0x353c, 0x5ca: 0x3226, 0x5cb: 0x3541,\n\t0x5cc: 0x322b, 0x5cd: 0x3546, 0x5ce: 0x3249, 0x5cf: 0x3564, 0x5d0: 0x3262, 0x5d1: 0x3582,\n\t0x5d2: 0x3271, 0x5d3: 0x3591, 0x5d4: 0x3276, 0x5d5: 0x3596, 0x5d6: 0x337a, 0x5d7: 0x34a6,\n\t0x5d8: 0x3537, 0x5d9: 0x3573, 0x5da: 0x1be0, 0x5db: 0x42d7,\n\t0x5e0: 0x46a1, 0x5e1: 0x4732, 0x5e2: 0x2f83, 0x5e3: 0x328f,\n\t0x5e4: 0x3878, 0x5e5: 0x3a07, 0x5e6: 0x3871, 0x5e7: 0x3a00, 0x5e8: 0x3886, 0x5e9: 0x3a15,\n\t0x5ea: 0x387f, 0x5eb: 0x3a0e, 0x5ec: 0x38be, 0x5ed: 0x3a4d, 0x5ee: 0x3894, 0x5ef: 0x3a23,\n\t0x5f0: 0x388d, 0x5f1: 0x3a1c, 0x5f2: 0x38a2, 0x5f3: 0x3a31, 0x5f4: 0x389b, 0x5f5: 0x3a2a,\n\t0x5f6: 0x38c5, 0x5f7: 0x3a54, 0x5f8: 0x46b5, 0x5f9: 0x4746, 0x5fa: 0x3000, 0x5fb: 0x330c,\n\t0x5fc: 0x2fec, 0x5fd: 0x32f8, 0x5fe: 0x38da, 0x5ff: 0x3a69,\n\t// Block 0x18, offset 0x600\n\t0x600: 0x38d3, 0x601: 0x3a62, 0x602: 0x38e8, 0x603: 0x3a77, 0x604: 0x38e1, 0x605: 0x3a70,\n\t0x606: 0x38fd, 0x607: 0x3a8c, 0x608: 0x3091, 0x609: 0x339d, 0x60a: 0x30a5, 0x60b: 0x33b1,\n\t0x60c: 0x46e7, 0x60d: 0x4778, 0x60e: 0x3136, 0x60f: 0x3447, 0x610: 0x3920, 0x611: 0x3aaf,\n\t0x612: 0x3919, 0x613: 0x3aa8, 0x614: 0x392e, 0x615: 0x3abd, 0x616: 0x3927, 0x617: 0x3ab6,\n\t0x618: 0x3989, 0x619: 0x3b18, 0x61a: 0x396d, 0x61b: 0x3afc, 0x61c: 0x3966, 0x61d: 0x3af5,\n\t0x61e: 0x397b, 0x61f: 0x3b0a, 0x620: 0x3974, 0x621: 0x3b03, 0x622: 0x3982, 0x623: 0x3b11,\n\t0x624: 0x31e5, 0x625: 0x34fb, 0x626: 0x31c7, 0x627: 0x34dd, 0x628: 0x39e4, 0x629: 0x3b73,\n\t0x62a: 0x39dd, 0x62b: 0x3b6c, 0x62c: 0x39f2, 0x62d: 0x3b81, 0x62e: 0x39eb, 0x62f: 0x3b7a,\n\t0x630: 0x39f9, 0x631: 0x3b88, 0x632: 0x3230, 0x633: 0x354b, 0x634: 0x3258, 0x635: 0x3578,\n\t0x636: 0x3253, 0x637: 0x356e, 0x638: 0x323f, 0x639: 0x355a,\n\t// Block 0x19, offset 0x640\n\t0x640: 0x4804, 0x641: 0x480a, 0x642: 0x491e, 0x643: 0x4936, 0x644: 0x4926, 0x645: 0x493e,\n\t0x646: 0x492e, 0x647: 0x4946, 0x648: 0x47aa, 0x649: 0x47b0, 0x64a: 0x488e, 0x64b: 0x48a6,\n\t0x64c: 0x4896, 0x64d: 0x48ae, 0x64e: 0x489e, 0x64f: 0x48b6, 0x650: 0x4816, 0x651: 0x481c,\n\t0x652: 0x3db8, 0x653: 0x3dc8, 0x654: 0x3dc0, 0x655: 0x3dd0,\n\t0x658: 0x47b6, 0x659: 0x47bc, 0x65a: 0x3ce8, 0x65b: 0x3cf8, 0x65c: 0x3cf0, 0x65d: 0x3d00,\n\t0x660: 0x482e, 0x661: 0x4834, 0x662: 0x494e, 0x663: 0x4966,\n\t0x664: 0x4956, 0x665: 0x496e, 0x666: 0x495e, 0x667: 0x4976, 0x668: 0x47c2, 0x669: 0x47c8,\n\t0x66a: 0x48be, 0x66b: 0x48d6, 0x66c: 0x48c6, 0x66d: 0x48de, 0x66e: 0x48ce, 0x66f: 0x48e6,\n\t0x670: 0x4846, 0x671: 0x484c, 0x672: 0x3e18, 0x673: 0x3e30, 0x674: 0x3e20, 0x675: 0x3e38,\n\t0x676: 0x3e28, 0x677: 0x3e40, 0x678: 0x47ce, 0x679: 0x47d4, 0x67a: 0x3d18, 0x67b: 0x3d30,\n\t0x67c: 0x3d20, 0x67d: 0x3d38, 0x67e: 0x3d28, 0x67f: 0x3d40,\n\t// Block 0x1a, offset 0x680\n\t0x680: 0x4852, 0x681: 0x4858, 0x682: 0x3e48, 0x683: 0x3e58, 0x684: 0x3e50, 0x685: 0x3e60,\n\t0x688: 0x47da, 0x689: 0x47e0, 0x68a: 0x3d48, 0x68b: 0x3d58,\n\t0x68c: 0x3d50, 0x68d: 0x3d60, 0x690: 0x4864, 0x691: 0x486a,\n\t0x692: 0x3e80, 0x693: 0x3e98, 0x694: 0x3e88, 0x695: 0x3ea0, 0x696: 0x3e90, 0x697: 0x3ea8,\n\t0x699: 0x47e6, 0x69b: 0x3d68, 0x69d: 0x3d70,\n\t0x69f: 0x3d78, 0x6a0: 0x487c, 0x6a1: 0x4882, 0x6a2: 0x497e, 0x6a3: 0x4996,\n\t0x6a4: 0x4986, 0x6a5: 0x499e, 0x6a6: 0x498e, 0x6a7: 0x49a6, 0x6a8: 0x47ec, 0x6a9: 0x47f2,\n\t0x6aa: 0x48ee, 0x6ab: 0x4906, 0x6ac: 0x48f6, 0x6ad: 0x490e, 0x6ae: 0x48fe, 0x6af: 0x4916,\n\t0x6b0: 0x47f8, 0x6b1: 0x431e, 0x6b2: 0x3691, 0x6b3: 0x4324, 0x6b4: 0x4822, 0x6b5: 0x432a,\n\t0x6b6: 0x36a3, 0x6b7: 0x4330, 0x6b8: 0x36c1, 0x6b9: 0x4336, 0x6ba: 0x36d9, 0x6bb: 0x433c,\n\t0x6bc: 0x4870, 0x6bd: 0x4342,\n\t// Block 0x1b, offset 0x6c0\n\t0x6c0: 0x3da0, 0x6c1: 0x3da8, 0x6c2: 0x4184, 0x6c3: 0x41a2, 0x6c4: 0x418e, 0x6c5: 0x41ac,\n\t0x6c6: 0x4198, 0x6c7: 0x41b6, 0x6c8: 0x3cd8, 0x6c9: 0x3ce0, 0x6ca: 0x40d0, 0x6cb: 0x40ee,\n\t0x6cc: 0x40da, 0x6cd: 0x40f8, 0x6ce: 0x40e4, 0x6cf: 0x4102, 0x6d0: 0x3de8, 0x6d1: 0x3df0,\n\t0x6d2: 0x41c0, 0x6d3: 0x41de, 0x6d4: 0x41ca, 0x6d5: 0x41e8, 0x6d6: 0x41d4, 0x6d7: 0x41f2,\n\t0x6d8: 0x3d08, 0x6d9: 0x3d10, 0x6da: 0x410c, 0x6db: 0x412a, 0x6dc: 0x4116, 0x6dd: 0x4134,\n\t0x6de: 0x4120, 0x6df: 0x413e, 0x6e0: 0x3ec0, 0x6e1: 0x3ec8, 0x6e2: 0x41fc, 0x6e3: 0x421a,\n\t0x6e4: 0x4206, 0x6e5: 0x4224, 0x6e6: 0x4210, 0x6e7: 0x422e, 0x6e8: 0x3d80, 0x6e9: 0x3d88,\n\t0x6ea: 0x4148, 0x6eb: 0x4166, 0x6ec: 0x4152, 0x6ed: 0x4170, 0x6ee: 0x415c, 0x6ef: 0x417a,\n\t0x6f0: 0x3685, 0x6f1: 0x367f, 0x6f2: 0x3d90, 0x6f3: 0x368b, 0x6f4: 0x3d98,\n\t0x6f6: 0x4810, 0x6f7: 0x3db0, 0x6f8: 0x35f5, 0x6f9: 0x35ef, 0x6fa: 0x35e3, 0x6fb: 0x42ee,\n\t0x6fc: 0x35fb, 0x6fd: 0x4287, 0x6fe: 0x01d3, 0x6ff: 0x4287,\n\t// Block 0x1c, offset 0x700\n\t0x700: 0x42a0, 0x701: 0x4482, 0x702: 0x3dd8, 0x703: 0x369d, 0x704: 0x3de0,\n\t0x706: 0x483a, 0x707: 0x3df8, 0x708: 0x3601, 0x709: 0x42f4, 0x70a: 0x360d, 0x70b: 0x42fa,\n\t0x70c: 0x3619, 0x70d: 0x4489, 0x70e: 0x4490, 0x70f: 0x4497, 0x710: 0x36b5, 0x711: 0x36af,\n\t0x712: 0x3e00, 0x713: 0x44e4, 0x716: 0x36bb, 0x717: 0x3e10,\n\t0x718: 0x3631, 0x719: 0x362b, 0x71a: 0x361f, 0x71b: 0x4300, 0x71d: 0x449e,\n\t0x71e: 0x44a5, 0x71f: 0x44ac, 0x720: 0x36eb, 0x721: 0x36e5, 0x722: 0x3e68, 0x723: 0x44ec,\n\t0x724: 0x36cd, 0x725: 0x36d3, 0x726: 0x36f1, 0x727: 0x3e78, 0x728: 0x3661, 0x729: 0x365b,\n\t0x72a: 0x364f, 0x72b: 0x430c, 0x72c: 0x3649, 0x72d: 0x4474, 0x72e: 0x447b, 0x72f: 0x0081,\n\t0x732: 0x3eb0, 0x733: 0x36f7, 0x734: 0x3eb8,\n\t0x736: 0x4888, 0x737: 0x3ed0, 0x738: 0x363d, 0x739: 0x4306, 0x73a: 0x366d, 0x73b: 0x4318,\n\t0x73c: 0x3679, 0x73d: 0x425a, 0x73e: 0x428c,\n\t// Block 0x1d, offset 0x740\n\t0x740: 0x1bd8, 0x741: 0x1bdc, 0x742: 0x0047, 0x743: 0x1c54, 0x745: 0x1be8,\n\t0x746: 0x1bec, 0x747: 0x00e9, 0x749: 0x1c58, 0x74a: 0x008f, 0x74b: 0x0051,\n\t0x74c: 0x0051, 0x74d: 0x0051, 0x74e: 0x0091, 0x74f: 0x00da, 0x750: 0x0053, 0x751: 0x0053,\n\t0x752: 0x0059, 0x753: 0x0099, 0x755: 0x005d, 0x756: 0x198d,\n\t0x759: 0x0061, 0x75a: 0x0063, 0x75b: 0x0065, 0x75c: 0x0065, 0x75d: 0x0065,\n\t0x760: 0x199f, 0x761: 0x1bc8, 0x762: 0x19a8,\n\t0x764: 0x0075, 0x766: 0x01b8, 0x768: 0x0075,\n\t0x76a: 0x0057, 0x76b: 0x42d2, 0x76c: 0x0045, 0x76d: 0x0047, 0x76f: 0x008b,\n\t0x770: 0x004b, 0x771: 0x004d, 0x773: 0x005b, 0x774: 0x009f, 0x775: 0x0215,\n\t0x776: 0x0218, 0x777: 0x021b, 0x778: 0x021e, 0x779: 0x0093, 0x77b: 0x1b98,\n\t0x77c: 0x01e8, 0x77d: 0x01c1, 0x77e: 0x0179, 0x77f: 0x01a0,\n\t// Block 0x1e, offset 0x780\n\t0x780: 0x0463, 0x785: 0x0049,\n\t0x786: 0x0089, 0x787: 0x008b, 0x788: 0x0093, 0x789: 0x0095,\n\t0x790: 0x222e, 0x791: 0x223a,\n\t0x792: 0x22ee, 0x793: 0x2216, 0x794: 0x229a, 0x795: 0x2222, 0x796: 0x22a0, 0x797: 0x22b8,\n\t0x798: 0x22c4, 0x799: 0x2228, 0x79a: 0x22ca, 0x79b: 0x2234, 0x79c: 0x22be, 0x79d: 0x22d0,\n\t0x79e: 0x22d6, 0x79f: 0x1cbc, 0x7a0: 0x0053, 0x7a1: 0x195a, 0x7a2: 0x1ba4, 0x7a3: 0x1963,\n\t0x7a4: 0x006d, 0x7a5: 0x19ab, 0x7a6: 0x1bd0, 0x7a7: 0x1d48, 0x7a8: 0x1966, 0x7a9: 0x0071,\n\t0x7aa: 0x19b7, 0x7ab: 0x1bd4, 0x7ac: 0x0059, 0x7ad: 0x0047, 0x7ae: 0x0049, 0x7af: 0x005b,\n\t0x7b0: 0x0093, 0x7b1: 0x19e4, 0x7b2: 0x1c18, 0x7b3: 0x19ed, 0x7b4: 0x00ad, 0x7b5: 0x1a62,\n\t0x7b6: 0x1c4c, 0x7b7: 0x1d5c, 0x7b8: 0x19f0, 0x7b9: 0x00b1, 0x7ba: 0x1a65, 0x7bb: 0x1c50,\n\t0x7bc: 0x0099, 0x7bd: 0x0087, 0x7be: 0x0089, 0x7bf: 0x009b,\n\t// Block 0x1f, offset 0x7c0\n\t0x7c1: 0x3c06, 0x7c3: 0xa000, 0x7c4: 0x3c0d, 0x7c5: 0xa000,\n\t0x7c7: 0x3c14, 0x7c8: 0xa000, 0x7c9: 0x3c1b,\n\t0x7cd: 0xa000,\n\t0x7e0: 0x2f65, 0x7e1: 0xa000, 0x7e2: 0x3c29,\n\t0x7e4: 0xa000, 0x7e5: 0xa000,\n\t0x7ed: 0x3c22, 0x7ee: 0x2f60, 0x7ef: 0x2f6a,\n\t0x7f0: 0x3c30, 0x7f1: 0x3c37, 0x7f2: 0xa000, 0x7f3: 0xa000, 0x7f4: 0x3c3e, 0x7f5: 0x3c45,\n\t0x7f6: 0xa000, 0x7f7: 0xa000, 0x7f8: 0x3c4c, 0x7f9: 0x3c53, 0x7fa: 0xa000, 0x7fb: 0xa000,\n\t0x7fc: 0xa000, 0x7fd: 0xa000,\n\t// Block 0x20, offset 0x800\n\t0x800: 0x3c5a, 0x801: 0x3c61, 0x802: 0xa000, 0x803: 0xa000, 0x804: 0x3c76, 0x805: 0x3c7d,\n\t0x806: 0xa000, 0x807: 0xa000, 0x808: 0x3c84, 0x809: 0x3c8b,\n\t0x811: 0xa000,\n\t0x812: 0xa000,\n\t0x822: 0xa000,\n\t0x828: 0xa000, 0x829: 0xa000,\n\t0x82b: 0xa000, 0x82c: 0x3ca0, 0x82d: 0x3ca7, 0x82e: 0x3cae, 0x82f: 0x3cb5,\n\t0x832: 0xa000, 0x833: 0xa000, 0x834: 0xa000, 0x835: 0xa000,\n\t// Block 0x21, offset 0x840\n\t0x860: 0x0023, 0x861: 0x0025, 0x862: 0x0027, 0x863: 0x0029,\n\t0x864: 0x002b, 0x865: 0x002d, 0x866: 0x002f, 0x867: 0x0031, 0x868: 0x0033, 0x869: 0x1882,\n\t0x86a: 0x1885, 0x86b: 0x1888, 0x86c: 0x188b, 0x86d: 0x188e, 0x86e: 0x1891, 0x86f: 0x1894,\n\t0x870: 0x1897, 0x871: 0x189a, 0x872: 0x189d, 0x873: 0x18a6, 0x874: 0x1a68, 0x875: 0x1a6c,\n\t0x876: 0x1a70, 0x877: 0x1a74, 0x878: 0x1a78, 0x879: 0x1a7c, 0x87a: 0x1a80, 0x87b: 0x1a84,\n\t0x87c: 0x1a88, 0x87d: 0x1c80, 0x87e: 0x1c85, 0x87f: 0x1c8a,\n\t// Block 0x22, offset 0x880\n\t0x880: 0x1c8f, 0x881: 0x1c94, 0x882: 0x1c99, 0x883: 0x1c9e, 0x884: 0x1ca3, 0x885: 0x1ca8,\n\t0x886: 0x1cad, 0x887: 0x1cb2, 0x888: 0x187f, 0x889: 0x18a3, 0x88a: 0x18c7, 0x88b: 0x18eb,\n\t0x88c: 0x190f, 0x88d: 0x1918, 0x88e: 0x191e, 0x88f: 0x1924, 0x890: 0x192a, 0x891: 0x1b60,\n\t0x892: 0x1b64, 0x893: 0x1b68, 0x894: 0x1b6c, 0x895: 0x1b70, 0x896: 0x1b74, 0x897: 0x1b78,\n\t0x898: 0x1b7c, 0x899: 0x1b80, 0x89a: 0x1b84, 0x89b: 0x1b88, 0x89c: 0x1af4, 0x89d: 0x1af8,\n\t0x89e: 0x1afc, 0x89f: 0x1b00, 0x8a0: 0x1b04, 0x8a1: 0x1b08, 0x8a2: 0x1b0c, 0x8a3: 0x1b10,\n\t0x8a4: 0x1b14, 0x8a5: 0x1b18, 0x8a6: 0x1b1c, 0x8a7: 0x1b20, 0x8a8: 0x1b24, 0x8a9: 0x1b28,\n\t0x8aa: 0x1b2c, 0x8ab: 0x1b30, 0x8ac: 0x1b34, 0x8ad: 0x1b38, 0x8ae: 0x1b3c, 0x8af: 0x1b40,\n\t0x8b0: 0x1b44, 0x8b1: 0x1b48, 0x8b2: 0x1b4c, 0x8b3: 0x1b50, 0x8b4: 0x1b54, 0x8b5: 0x1b58,\n\t0x8b6: 0x0043, 0x8b7: 0x0045, 0x8b8: 0x0047, 0x8b9: 0x0049, 0x8ba: 0x004b, 0x8bb: 0x004d,\n\t0x8bc: 0x004f, 0x8bd: 0x0051, 0x8be: 0x0053, 0x8bf: 0x0055,\n\t// Block 0x23, offset 0x8c0\n\t0x8c0: 0x06bf, 0x8c1: 0x06e3, 0x8c2: 0x06ef, 0x8c3: 0x06ff, 0x8c4: 0x0707, 0x8c5: 0x0713,\n\t0x8c6: 0x071b, 0x8c7: 0x0723, 0x8c8: 0x072f, 0x8c9: 0x0783, 0x8ca: 0x079b, 0x8cb: 0x07ab,\n\t0x8cc: 0x07bb, 0x8cd: 0x07cb, 0x8ce: 0x07db, 0x8cf: 0x07fb, 0x8d0: 0x07ff, 0x8d1: 0x0803,\n\t0x8d2: 0x0837, 0x8d3: 0x085f, 0x8d4: 0x086f, 0x8d5: 0x0877, 0x8d6: 0x087b, 0x8d7: 0x0887,\n\t0x8d8: 0x08a3, 0x8d9: 0x08a7, 0x8da: 0x08bf, 0x8db: 0x08c3, 0x8dc: 0x08cb, 0x8dd: 0x08db,\n\t0x8de: 0x0977, 0x8df: 0x098b, 0x8e0: 0x09cb, 0x8e1: 0x09df, 0x8e2: 0x09e7, 0x8e3: 0x09eb,\n\t0x8e4: 0x09fb, 0x8e5: 0x0a17, 0x8e6: 0x0a43, 0x8e7: 0x0a4f, 0x8e8: 0x0a6f, 0x8e9: 0x0a7b,\n\t0x8ea: 0x0a7f, 0x8eb: 0x0a83, 0x8ec: 0x0a9b, 0x8ed: 0x0a9f, 0x8ee: 0x0acb, 0x8ef: 0x0ad7,\n\t0x8f0: 0x0adf, 0x8f1: 0x0ae7, 0x8f2: 0x0af7, 0x8f3: 0x0aff, 0x8f4: 0x0b07, 0x8f5: 0x0b33,\n\t0x8f6: 0x0b37, 0x8f7: 0x0b3f, 0x8f8: 0x0b43, 0x8f9: 0x0b4b, 0x8fa: 0x0b53, 0x8fb: 0x0b63,\n\t0x8fc: 0x0b7f, 0x8fd: 0x0bf7, 0x8fe: 0x0c0b, 0x8ff: 0x0c0f,\n\t// Block 0x24, offset 0x900\n\t0x900: 0x0c8f, 0x901: 0x0c93, 0x902: 0x0ca7, 0x903: 0x0cab, 0x904: 0x0cb3, 0x905: 0x0cbb,\n\t0x906: 0x0cc3, 0x907: 0x0ccf, 0x908: 0x0cf7, 0x909: 0x0d07, 0x90a: 0x0d1b, 0x90b: 0x0d8b,\n\t0x90c: 0x0d97, 0x90d: 0x0da7, 0x90e: 0x0db3, 0x90f: 0x0dbf, 0x910: 0x0dc7, 0x911: 0x0dcb,\n\t0x912: 0x0dcf, 0x913: 0x0dd3, 0x914: 0x0dd7, 0x915: 0x0e8f, 0x916: 0x0ed7, 0x917: 0x0ee3,\n\t0x918: 0x0ee7, 0x919: 0x0eeb, 0x91a: 0x0eef, 0x91b: 0x0ef7, 0x91c: 0x0efb, 0x91d: 0x0f0f,\n\t0x91e: 0x0f2b, 0x91f: 0x0f33, 0x920: 0x0f73, 0x921: 0x0f77, 0x922: 0x0f7f, 0x923: 0x0f83,\n\t0x924: 0x0f8b, 0x925: 0x0f8f, 0x926: 0x0fb3, 0x927: 0x0fb7, 0x928: 0x0fd3, 0x929: 0x0fd7,\n\t0x92a: 0x0fdb, 0x92b: 0x0fdf, 0x92c: 0x0ff3, 0x92d: 0x1017, 0x92e: 0x101b, 0x92f: 0x101f,\n\t0x930: 0x1043, 0x931: 0x1083, 0x932: 0x1087, 0x933: 0x10a7, 0x934: 0x10b7, 0x935: 0x10bf,\n\t0x936: 0x10df, 0x937: 0x1103, 0x938: 0x1147, 0x939: 0x114f, 0x93a: 0x1163, 0x93b: 0x116f,\n\t0x93c: 0x1177, 0x93d: 0x117f, 0x93e: 0x1183, 0x93f: 0x1187,\n\t// Block 0x25, offset 0x940\n\t0x940: 0x119f, 0x941: 0x11a3, 0x942: 0x11bf, 0x943: 0x11c7, 0x944: 0x11cf, 0x945: 0x11d3,\n\t0x946: 0x11df, 0x947: 0x11e7, 0x948: 0x11eb, 0x949: 0x11ef, 0x94a: 0x11f7, 0x94b: 0x11fb,\n\t0x94c: 0x129b, 0x94d: 0x12af, 0x94e: 0x12e3, 0x94f: 0x12e7, 0x950: 0x12ef, 0x951: 0x131b,\n\t0x952: 0x1323, 0x953: 0x132b, 0x954: 0x1333, 0x955: 0x136f, 0x956: 0x1373, 0x957: 0x137b,\n\t0x958: 0x137f, 0x959: 0x1383, 0x95a: 0x13af, 0x95b: 0x13b3, 0x95c: 0x13bb, 0x95d: 0x13cf,\n\t0x95e: 0x13d3, 0x95f: 0x13ef, 0x960: 0x13f7, 0x961: 0x13fb, 0x962: 0x141f, 0x963: 0x143f,\n\t0x964: 0x1453, 0x965: 0x1457, 0x966: 0x145f, 0x967: 0x148b, 0x968: 0x148f, 0x969: 0x149f,\n\t0x96a: 0x14c3, 0x96b: 0x14cf, 0x96c: 0x14df, 0x96d: 0x14f7, 0x96e: 0x14ff, 0x96f: 0x1503,\n\t0x970: 0x1507, 0x971: 0x150b, 0x972: 0x1517, 0x973: 0x151b, 0x974: 0x1523, 0x975: 0x153f,\n\t0x976: 0x1543, 0x977: 0x1547, 0x978: 0x155f, 0x979: 0x1563, 0x97a: 0x156b, 0x97b: 0x157f,\n\t0x97c: 0x1583, 0x97d: 0x1587, 0x97e: 0x158f, 0x97f: 0x1593,\n\t// Block 0x26, offset 0x980\n\t0x986: 0xa000, 0x98b: 0xa000,\n\t0x98c: 0x3f08, 0x98d: 0xa000, 0x98e: 0x3f10, 0x98f: 0xa000, 0x990: 0x3f18, 0x991: 0xa000,\n\t0x992: 0x3f20, 0x993: 0xa000, 0x994: 0x3f28, 0x995: 0xa000, 0x996: 0x3f30, 0x997: 0xa000,\n\t0x998: 0x3f38, 0x999: 0xa000, 0x99a: 0x3f40, 0x99b: 0xa000, 0x99c: 0x3f48, 0x99d: 0xa000,\n\t0x99e: 0x3f50, 0x99f: 0xa000, 0x9a0: 0x3f58, 0x9a1: 0xa000, 0x9a2: 0x3f60,\n\t0x9a4: 0xa000, 0x9a5: 0x3f68, 0x9a6: 0xa000, 0x9a7: 0x3f70, 0x9a8: 0xa000, 0x9a9: 0x3f78,\n\t0x9af: 0xa000,\n\t0x9b0: 0x3f80, 0x9b1: 0x3f88, 0x9b2: 0xa000, 0x9b3: 0x3f90, 0x9b4: 0x3f98, 0x9b5: 0xa000,\n\t0x9b6: 0x3fa0, 0x9b7: 0x3fa8, 0x9b8: 0xa000, 0x9b9: 0x3fb0, 0x9ba: 0x3fb8, 0x9bb: 0xa000,\n\t0x9bc: 0x3fc0, 0x9bd: 0x3fc8,\n\t// Block 0x27, offset 0x9c0\n\t0x9d4: 0x3f00,\n\t0x9d9: 0x9903, 0x9da: 0x9903, 0x9db: 0x42dc, 0x9dc: 0x42e2, 0x9dd: 0xa000,\n\t0x9de: 0x3fd0, 0x9df: 0x26b4,\n\t0x9e6: 0xa000,\n\t0x9eb: 0xa000, 0x9ec: 0x3fe0, 0x9ed: 0xa000, 0x9ee: 0x3fe8, 0x9ef: 0xa000,\n\t0x9f0: 0x3ff0, 0x9f1: 0xa000, 0x9f2: 0x3ff8, 0x9f3: 0xa000, 0x9f4: 0x4000, 0x9f5: 0xa000,\n\t0x9f6: 0x4008, 0x9f7: 0xa000, 0x9f8: 0x4010, 0x9f9: 0xa000, 0x9fa: 0x4018, 0x9fb: 0xa000,\n\t0x9fc: 0x4020, 0x9fd: 0xa000, 0x9fe: 0x4028, 0x9ff: 0xa000,\n\t// Block 0x28, offset 0xa00\n\t0xa00: 0x4030, 0xa01: 0xa000, 0xa02: 0x4038, 0xa04: 0xa000, 0xa05: 0x4040,\n\t0xa06: 0xa000, 0xa07: 0x4048, 0xa08: 0xa000, 0xa09: 0x4050,\n\t0xa0f: 0xa000, 0xa10: 0x4058, 0xa11: 0x4060,\n\t0xa12: 0xa000, 0xa13: 0x4068, 0xa14: 0x4070, 0xa15: 0xa000, 0xa16: 0x4078, 0xa17: 0x4080,\n\t0xa18: 0xa000, 0xa19: 0x4088, 0xa1a: 0x4090, 0xa1b: 0xa000, 0xa1c: 0x4098, 0xa1d: 0x40a0,\n\t0xa2f: 0xa000,\n\t0xa30: 0xa000, 0xa31: 0xa000, 0xa32: 0xa000, 0xa34: 0x3fd8,\n\t0xa37: 0x40a8, 0xa38: 0x40b0, 0xa39: 0x40b8, 0xa3a: 0x40c0,\n\t0xa3d: 0xa000, 0xa3e: 0x40c8, 0xa3f: 0x26c9,\n\t// Block 0x29, offset 0xa40\n\t0xa40: 0x0367, 0xa41: 0x032b, 0xa42: 0x032f, 0xa43: 0x0333, 0xa44: 0x037b, 0xa45: 0x0337,\n\t0xa46: 0x033b, 0xa47: 0x033f, 0xa48: 0x0343, 0xa49: 0x0347, 0xa4a: 0x034b, 0xa4b: 0x034f,\n\t0xa4c: 0x0353, 0xa4d: 0x0357, 0xa4e: 0x035b, 0xa4f: 0x49bd, 0xa50: 0x49c3, 0xa51: 0x49c9,\n\t0xa52: 0x49cf, 0xa53: 0x49d5, 0xa54: 0x49db, 0xa55: 0x49e1, 0xa56: 0x49e7, 0xa57: 0x49ed,\n\t0xa58: 0x49f3, 0xa59: 0x49f9, 0xa5a: 0x49ff, 0xa5b: 0x4a05, 0xa5c: 0x4a0b, 0xa5d: 0x4a11,\n\t0xa5e: 0x4a17, 0xa5f: 0x4a1d, 0xa60: 0x4a23, 0xa61: 0x4a29, 0xa62: 0x4a2f, 0xa63: 0x4a35,\n\t0xa64: 0x03c3, 0xa65: 0x035f, 0xa66: 0x0363, 0xa67: 0x03e7, 0xa68: 0x03eb, 0xa69: 0x03ef,\n\t0xa6a: 0x03f3, 0xa6b: 0x03f7, 0xa6c: 0x03fb, 0xa6d: 0x03ff, 0xa6e: 0x036b, 0xa6f: 0x0403,\n\t0xa70: 0x0407, 0xa71: 0x036f, 0xa72: 0x0373, 0xa73: 0x0377, 0xa74: 0x037f, 0xa75: 0x0383,\n\t0xa76: 0x0387, 0xa77: 0x038b, 0xa78: 0x038f, 0xa79: 0x0393, 0xa7a: 0x0397, 0xa7b: 0x039b,\n\t0xa7c: 0x039f, 0xa7d: 0x03a3, 0xa7e: 0x03a7, 0xa7f: 0x03ab,\n\t// Block 0x2a, offset 0xa80\n\t0xa80: 0x03af, 0xa81: 0x03b3, 0xa82: 0x040b, 0xa83: 0x040f, 0xa84: 0x03b7, 0xa85: 0x03bb,\n\t0xa86: 0x03bf, 0xa87: 0x03c7, 0xa88: 0x03cb, 0xa89: 0x03cf, 0xa8a: 0x03d3, 0xa8b: 0x03d7,\n\t0xa8c: 0x03db, 0xa8d: 0x03df, 0xa8e: 0x03e3,\n\t0xa92: 0x06bf, 0xa93: 0x071b, 0xa94: 0x06cb, 0xa95: 0x097b, 0xa96: 0x06cf, 0xa97: 0x06e7,\n\t0xa98: 0x06d3, 0xa99: 0x0f93, 0xa9a: 0x0707, 0xa9b: 0x06db, 0xa9c: 0x06c3, 0xa9d: 0x09ff,\n\t0xa9e: 0x098f, 0xa9f: 0x072f,\n\t// Block 0x2b, offset 0xac0\n\t0xac0: 0x2054, 0xac1: 0x205a, 0xac2: 0x2060, 0xac3: 0x2066, 0xac4: 0x206c, 0xac5: 0x2072,\n\t0xac6: 0x2078, 0xac7: 0x207e, 0xac8: 0x2084, 0xac9: 0x208a, 0xaca: 0x2090, 0xacb: 0x2096,\n\t0xacc: 0x209c, 0xacd: 0x20a2, 0xace: 0x2726, 0xacf: 0x272f, 0xad0: 0x2738, 0xad1: 0x2741,\n\t0xad2: 0x274a, 0xad3: 0x2753, 0xad4: 0x275c, 0xad5: 0x2765, 0xad6: 0x276e, 0xad7: 0x2780,\n\t0xad8: 0x2789, 0xad9: 0x2792, 0xada: 0x279b, 0xadb: 0x27a4, 0xadc: 0x2777, 0xadd: 0x2bac,\n\t0xade: 0x2aed, 0xae0: 0x20a8, 0xae1: 0x20c0, 0xae2: 0x20b4, 0xae3: 0x2108,\n\t0xae4: 0x20c6, 0xae5: 0x20e4, 0xae6: 0x20ae, 0xae7: 0x20de, 0xae8: 0x20ba, 0xae9: 0x20f0,\n\t0xaea: 0x2120, 0xaeb: 0x213e, 0xaec: 0x2138, 0xaed: 0x212c, 0xaee: 0x217a, 0xaef: 0x210e,\n\t0xaf0: 0x211a, 0xaf1: 0x2132, 0xaf2: 0x2126, 0xaf3: 0x2150, 0xaf4: 0x20fc, 0xaf5: 0x2144,\n\t0xaf6: 0x216e, 0xaf7: 0x2156, 0xaf8: 0x20ea, 0xaf9: 0x20cc, 0xafa: 0x2102, 0xafb: 0x2114,\n\t0xafc: 0x214a, 0xafd: 0x20d2, 0xafe: 0x2174, 0xaff: 0x20f6,\n\t// Block 0x2c, offset 0xb00\n\t0xb00: 0x215c, 0xb01: 0x20d8, 0xb02: 0x2162, 0xb03: 0x2168, 0xb04: 0x092f, 0xb05: 0x0b03,\n\t0xb06: 0x0ca7, 0xb07: 0x10c7,\n\t0xb10: 0x1bc4, 0xb11: 0x18a9,\n\t0xb12: 0x18ac, 0xb13: 0x18af, 0xb14: 0x18b2, 0xb15: 0x18b5, 0xb16: 0x18b8, 0xb17: 0x18bb,\n\t0xb18: 0x18be, 0xb19: 0x18c1, 0xb1a: 0x18ca, 0xb1b: 0x18cd, 0xb1c: 0x18d0, 0xb1d: 0x18d3,\n\t0xb1e: 0x18d6, 0xb1f: 0x18d9, 0xb20: 0x0313, 0xb21: 0x031b, 0xb22: 0x031f, 0xb23: 0x0327,\n\t0xb24: 0x032b, 0xb25: 0x032f, 0xb26: 0x0337, 0xb27: 0x033f, 0xb28: 0x0343, 0xb29: 0x034b,\n\t0xb2a: 0x034f, 0xb2b: 0x0353, 0xb2c: 0x0357, 0xb2d: 0x035b, 0xb2e: 0x2e18, 0xb2f: 0x2e20,\n\t0xb30: 0x2e28, 0xb31: 0x2e30, 0xb32: 0x2e38, 0xb33: 0x2e40, 0xb34: 0x2e48, 0xb35: 0x2e50,\n\t0xb36: 0x2e60, 0xb37: 0x2e68, 0xb38: 0x2e70, 0xb39: 0x2e78, 0xb3a: 0x2e80, 0xb3b: 0x2e88,\n\t0xb3c: 0x2ed3, 0xb3d: 0x2e9b, 0xb3e: 0x2e58,\n\t// Block 0x2d, offset 0xb40\n\t0xb40: 0x06bf, 0xb41: 0x071b, 0xb42: 0x06cb, 0xb43: 0x097b, 0xb44: 0x071f, 0xb45: 0x07af,\n\t0xb46: 0x06c7, 0xb47: 0x07ab, 0xb48: 0x070b, 0xb49: 0x0887, 0xb4a: 0x0d07, 0xb4b: 0x0e8f,\n\t0xb4c: 0x0dd7, 0xb4d: 0x0d1b, 0xb4e: 0x145f, 0xb4f: 0x098b, 0xb50: 0x0ccf, 0xb51: 0x0d4b,\n\t0xb52: 0x0d0b, 0xb53: 0x104b, 0xb54: 0x08fb, 0xb55: 0x0f03, 0xb56: 0x1387, 0xb57: 0x105f,\n\t0xb58: 0x0843, 0xb59: 0x108f, 0xb5a: 0x0f9b, 0xb5b: 0x0a17, 0xb5c: 0x140f, 0xb5d: 0x077f,\n\t0xb5e: 0x08ab, 0xb5f: 0x0df7, 0xb60: 0x1527, 0xb61: 0x0743, 0xb62: 0x07d3, 0xb63: 0x0d9b,\n\t0xb64: 0x06cf, 0xb65: 0x06e7, 0xb66: 0x06d3, 0xb67: 0x0adb, 0xb68: 0x08ef, 0xb69: 0x087f,\n\t0xb6a: 0x0a57, 0xb6b: 0x0a4b, 0xb6c: 0x0feb, 0xb6d: 0x073f, 0xb6e: 0x139b, 0xb6f: 0x089b,\n\t0xb70: 0x09f3, 0xb71: 0x18dc, 0xb72: 0x18df, 0xb73: 0x18e2, 0xb74: 0x18e5, 0xb75: 0x18ee,\n\t0xb76: 0x18f1, 0xb77: 0x18f4, 0xb78: 0x18f7, 0xb79: 0x18fa, 0xb7a: 0x18fd, 0xb7b: 0x1900,\n\t0xb7c: 0x1903, 0xb7d: 0x1906, 0xb7e: 0x1909, 0xb7f: 0x1912,\n\t// Block 0x2e, offset 0xb80\n\t0xb80: 0x1cc6, 0xb81: 0x1cd5, 0xb82: 0x1ce4, 0xb83: 0x1cf3, 0xb84: 0x1d02, 0xb85: 0x1d11,\n\t0xb86: 0x1d20, 0xb87: 0x1d2f, 0xb88: 0x1d3e, 0xb89: 0x218c, 0xb8a: 0x219e, 0xb8b: 0x21b0,\n\t0xb8c: 0x1954, 0xb8d: 0x1c04, 0xb8e: 0x19d2, 0xb8f: 0x1ba8, 0xb90: 0x04cb, 0xb91: 0x04d3,\n\t0xb92: 0x04db, 0xb93: 0x04e3, 0xb94: 0x04eb, 0xb95: 0x04ef, 0xb96: 0x04f3, 0xb97: 0x04f7,\n\t0xb98: 0x04fb, 0xb99: 0x04ff, 0xb9a: 0x0503, 0xb9b: 0x0507, 0xb9c: 0x050b, 0xb9d: 0x050f,\n\t0xb9e: 0x0513, 0xb9f: 0x0517, 0xba0: 0x051b, 0xba1: 0x0523, 0xba2: 0x0527, 0xba3: 0x052b,\n\t0xba4: 0x052f, 0xba5: 0x0533, 0xba6: 0x0537, 0xba7: 0x053b, 0xba8: 0x053f, 0xba9: 0x0543,\n\t0xbaa: 0x0547, 0xbab: 0x054b, 0xbac: 0x054f, 0xbad: 0x0553, 0xbae: 0x0557, 0xbaf: 0x055b,\n\t0xbb0: 0x055f, 0xbb1: 0x0563, 0xbb2: 0x0567, 0xbb3: 0x056f, 0xbb4: 0x0577, 0xbb5: 0x057f,\n\t0xbb6: 0x0583, 0xbb7: 0x0587, 0xbb8: 0x058b, 0xbb9: 0x058f, 0xbba: 0x0593, 0xbbb: 0x0597,\n\t0xbbc: 0x059b, 0xbbd: 0x059f, 0xbbe: 0x05a3,\n\t// Block 0x2f, offset 0xbc0\n\t0xbc0: 0x2b0c, 0xbc1: 0x29a8, 0xbc2: 0x2b1c, 0xbc3: 0x2880, 0xbc4: 0x2ee4, 0xbc5: 0x288a,\n\t0xbc6: 0x2894, 0xbc7: 0x2f28, 0xbc8: 0x29b5, 0xbc9: 0x289e, 0xbca: 0x28a8, 0xbcb: 0x28b2,\n\t0xbcc: 0x29dc, 0xbcd: 0x29e9, 0xbce: 0x29c2, 0xbcf: 0x29cf, 0xbd0: 0x2ea9, 0xbd1: 0x29f6,\n\t0xbd2: 0x2a03, 0xbd3: 0x2bbe, 0xbd4: 0x26bb, 0xbd5: 0x2bd1, 0xbd6: 0x2be4, 0xbd7: 0x2b2c,\n\t0xbd8: 0x2a10, 0xbd9: 0x2bf7, 0xbda: 0x2c0a, 0xbdb: 0x2a1d, 0xbdc: 0x28bc, 0xbdd: 0x28c6,\n\t0xbde: 0x2eb7, 0xbdf: 0x2a2a, 0xbe0: 0x2b3c, 0xbe1: 0x2ef5, 0xbe2: 0x28d0, 0xbe3: 0x28da,\n\t0xbe4: 0x2a37, 0xbe5: 0x28e4, 0xbe6: 0x28ee, 0xbe7: 0x26d0, 0xbe8: 0x26d7, 0xbe9: 0x28f8,\n\t0xbea: 0x2902, 0xbeb: 0x2c1d, 0xbec: 0x2a44, 0xbed: 0x2b4c, 0xbee: 0x2c30, 0xbef: 0x2a51,\n\t0xbf0: 0x2916, 0xbf1: 0x290c, 0xbf2: 0x2f3c, 0xbf3: 0x2a5e, 0xbf4: 0x2c43, 0xbf5: 0x2920,\n\t0xbf6: 0x2b5c, 0xbf7: 0x292a, 0xbf8: 0x2a78, 0xbf9: 0x2934, 0xbfa: 0x2a85, 0xbfb: 0x2f06,\n\t0xbfc: 0x2a6b, 0xbfd: 0x2b6c, 0xbfe: 0x2a92, 0xbff: 0x26de,\n\t// Block 0x30, offset 0xc00\n\t0xc00: 0x2f17, 0xc01: 0x293e, 0xc02: 0x2948, 0xc03: 0x2a9f, 0xc04: 0x2952, 0xc05: 0x295c,\n\t0xc06: 0x2966, 0xc07: 0x2b7c, 0xc08: 0x2aac, 0xc09: 0x26e5, 0xc0a: 0x2c56, 0xc0b: 0x2e90,\n\t0xc0c: 0x2b8c, 0xc0d: 0x2ab9, 0xc0e: 0x2ec5, 0xc0f: 0x2970, 0xc10: 0x297a, 0xc11: 0x2ac6,\n\t0xc12: 0x26ec, 0xc13: 0x2ad3, 0xc14: 0x2b9c, 0xc15: 0x26f3, 0xc16: 0x2c69, 0xc17: 0x2984,\n\t0xc18: 0x1cb7, 0xc19: 0x1ccb, 0xc1a: 0x1cda, 0xc1b: 0x1ce9, 0xc1c: 0x1cf8, 0xc1d: 0x1d07,\n\t0xc1e: 0x1d16, 0xc1f: 0x1d25, 0xc20: 0x1d34, 0xc21: 0x1d43, 0xc22: 0x2192, 0xc23: 0x21a4,\n\t0xc24: 0x21b6, 0xc25: 0x21c2, 0xc26: 0x21ce, 0xc27: 0x21da, 0xc28: 0x21e6, 0xc29: 0x21f2,\n\t0xc2a: 0x21fe, 0xc2b: 0x220a, 0xc2c: 0x2246, 0xc2d: 0x2252, 0xc2e: 0x225e, 0xc2f: 0x226a,\n\t0xc30: 0x2276, 0xc31: 0x1c14, 0xc32: 0x19c6, 0xc33: 0x1936, 0xc34: 0x1be4, 0xc35: 0x1a47,\n\t0xc36: 0x1a56, 0xc37: 0x19cc, 0xc38: 0x1bfc, 0xc39: 0x1c00, 0xc3a: 0x1960, 0xc3b: 0x2701,\n\t0xc3c: 0x270f, 0xc3d: 0x26fa, 0xc3e: 0x2708, 0xc3f: 0x2ae0,\n\t// Block 0x31, offset 0xc40\n\t0xc40: 0x1a4a, 0xc41: 0x1a32, 0xc42: 0x1c60, 0xc43: 0x1a1a, 0xc44: 0x19f3, 0xc45: 0x1969,\n\t0xc46: 0x1978, 0xc47: 0x1948, 0xc48: 0x1bf0, 0xc49: 0x1d52, 0xc4a: 0x1a4d, 0xc4b: 0x1a35,\n\t0xc4c: 0x1c64, 0xc4d: 0x1c70, 0xc4e: 0x1a26, 0xc4f: 0x19fc, 0xc50: 0x1957, 0xc51: 0x1c1c,\n\t0xc52: 0x1bb0, 0xc53: 0x1b9c, 0xc54: 0x1bcc, 0xc55: 0x1c74, 0xc56: 0x1a29, 0xc57: 0x19c9,\n\t0xc58: 0x19ff, 0xc59: 0x19de, 0xc5a: 0x1a41, 0xc5b: 0x1c78, 0xc5c: 0x1a2c, 0xc5d: 0x19c0,\n\t0xc5e: 0x1a02, 0xc5f: 0x1c3c, 0xc60: 0x1bf4, 0xc61: 0x1a14, 0xc62: 0x1c24, 0xc63: 0x1c40,\n\t0xc64: 0x1bf8, 0xc65: 0x1a17, 0xc66: 0x1c28, 0xc67: 0x22e8, 0xc68: 0x22fc, 0xc69: 0x1996,\n\t0xc6a: 0x1c20, 0xc6b: 0x1bb4, 0xc6c: 0x1ba0, 0xc6d: 0x1c48, 0xc6e: 0x2716, 0xc6f: 0x27ad,\n\t0xc70: 0x1a59, 0xc71: 0x1a44, 0xc72: 0x1c7c, 0xc73: 0x1a2f, 0xc74: 0x1a50, 0xc75: 0x1a38,\n\t0xc76: 0x1c68, 0xc77: 0x1a1d, 0xc78: 0x19f6, 0xc79: 0x1981, 0xc7a: 0x1a53, 0xc7b: 0x1a3b,\n\t0xc7c: 0x1c6c, 0xc7d: 0x1a20, 0xc7e: 0x19f9, 0xc7f: 0x1984,\n\t// Block 0x32, offset 0xc80\n\t0xc80: 0x1c2c, 0xc81: 0x1bb8, 0xc82: 0x1d4d, 0xc83: 0x1939, 0xc84: 0x19ba, 0xc85: 0x19bd,\n\t0xc86: 0x22f5, 0xc87: 0x1b94, 0xc88: 0x19c3, 0xc89: 0x194b, 0xc8a: 0x19e1, 0xc8b: 0x194e,\n\t0xc8c: 0x19ea, 0xc8d: 0x196c, 0xc8e: 0x196f, 0xc8f: 0x1a05, 0xc90: 0x1a0b, 0xc91: 0x1a0e,\n\t0xc92: 0x1c30, 0xc93: 0x1a11, 0xc94: 0x1a23, 0xc95: 0x1c38, 0xc96: 0x1c44, 0xc97: 0x1990,\n\t0xc98: 0x1d57, 0xc99: 0x1bbc, 0xc9a: 0x1993, 0xc9b: 0x1a5c, 0xc9c: 0x19a5, 0xc9d: 0x19b4,\n\t0xc9e: 0x22e2, 0xc9f: 0x22dc, 0xca0: 0x1cc1, 0xca1: 0x1cd0, 0xca2: 0x1cdf, 0xca3: 0x1cee,\n\t0xca4: 0x1cfd, 0xca5: 0x1d0c, 0xca6: 0x1d1b, 0xca7: 0x1d2a, 0xca8: 0x1d39, 0xca9: 0x2186,\n\t0xcaa: 0x2198, 0xcab: 0x21aa, 0xcac: 0x21bc, 0xcad: 0x21c8, 0xcae: 0x21d4, 0xcaf: 0x21e0,\n\t0xcb0: 0x21ec, 0xcb1: 0x21f8, 0xcb2: 0x2204, 0xcb3: 0x2240, 0xcb4: 0x224c, 0xcb5: 0x2258,\n\t0xcb6: 0x2264, 0xcb7: 0x2270, 0xcb8: 0x227c, 0xcb9: 0x2282, 0xcba: 0x2288, 0xcbb: 0x228e,\n\t0xcbc: 0x2294, 0xcbd: 0x22a6, 0xcbe: 0x22ac, 0xcbf: 0x1c10,\n\t// Block 0x33, offset 0xcc0\n\t0xcc0: 0x1377, 0xcc1: 0x0cfb, 0xcc2: 0x13d3, 0xcc3: 0x139f, 0xcc4: 0x0e57, 0xcc5: 0x06eb,\n\t0xcc6: 0x08df, 0xcc7: 0x162b, 0xcc8: 0x162b, 0xcc9: 0x0a0b, 0xcca: 0x145f, 0xccb: 0x0943,\n\t0xccc: 0x0a07, 0xccd: 0x0bef, 0xcce: 0x0fcf, 0xccf: 0x115f, 0xcd0: 0x1297, 0xcd1: 0x12d3,\n\t0xcd2: 0x1307, 0xcd3: 0x141b, 0xcd4: 0x0d73, 0xcd5: 0x0dff, 0xcd6: 0x0eab, 0xcd7: 0x0f43,\n\t0xcd8: 0x125f, 0xcd9: 0x1447, 0xcda: 0x1573, 0xcdb: 0x070f, 0xcdc: 0x08b3, 0xcdd: 0x0d87,\n\t0xcde: 0x0ecf, 0xcdf: 0x1293, 0xce0: 0x15c3, 0xce1: 0x0ab3, 0xce2: 0x0e77, 0xce3: 0x1283,\n\t0xce4: 0x1317, 0xce5: 0x0c23, 0xce6: 0x11bb, 0xce7: 0x12df, 0xce8: 0x0b1f, 0xce9: 0x0d0f,\n\t0xcea: 0x0e17, 0xceb: 0x0f1b, 0xcec: 0x1427, 0xced: 0x074f, 0xcee: 0x07e7, 0xcef: 0x0853,\n\t0xcf0: 0x0c8b, 0xcf1: 0x0d7f, 0xcf2: 0x0ecb, 0xcf3: 0x0fef, 0xcf4: 0x1177, 0xcf5: 0x128b,\n\t0xcf6: 0x12a3, 0xcf7: 0x13c7, 0xcf8: 0x14ef, 0xcf9: 0x15a3, 0xcfa: 0x15bf, 0xcfb: 0x102b,\n\t0xcfc: 0x106b, 0xcfd: 0x1123, 0xcfe: 0x1243, 0xcff: 0x147b,\n\t// Block 0x34, offset 0xd00\n\t0xd00: 0x15cb, 0xd01: 0x134b, 0xd02: 0x09c7, 0xd03: 0x0b3b, 0xd04: 0x10db, 0xd05: 0x119b,\n\t0xd06: 0x0eff, 0xd07: 0x1033, 0xd08: 0x1397, 0xd09: 0x14e7, 0xd0a: 0x09c3, 0xd0b: 0x0a8f,\n\t0xd0c: 0x0d77, 0xd0d: 0x0e2b, 0xd0e: 0x0e5f, 0xd0f: 0x1113, 0xd10: 0x113b, 0xd11: 0x14a7,\n\t0xd12: 0x084f, 0xd13: 0x11a7, 0xd14: 0x07f3, 0xd15: 0x07ef, 0xd16: 0x1097, 0xd17: 0x1127,\n\t0xd18: 0x125b, 0xd19: 0x14af, 0xd1a: 0x1367, 0xd1b: 0x0c27, 0xd1c: 0x0d73, 0xd1d: 0x1357,\n\t0xd1e: 0x06f7, 0xd1f: 0x0a63, 0xd20: 0x0b93, 0xd21: 0x0f2f, 0xd22: 0x0faf, 0xd23: 0x0873,\n\t0xd24: 0x103b, 0xd25: 0x075f, 0xd26: 0x0b77, 0xd27: 0x06d7, 0xd28: 0x0deb, 0xd29: 0x0ca3,\n\t0xd2a: 0x110f, 0xd2b: 0x08c7, 0xd2c: 0x09b3, 0xd2d: 0x0ffb, 0xd2e: 0x1263, 0xd2f: 0x133b,\n\t0xd30: 0x0db7, 0xd31: 0x13f7, 0xd32: 0x0de3, 0xd33: 0x0c37, 0xd34: 0x121b, 0xd35: 0x0c57,\n\t0xd36: 0x0fab, 0xd37: 0x072b, 0xd38: 0x07a7, 0xd39: 0x07eb, 0xd3a: 0x0d53, 0xd3b: 0x10fb,\n\t0xd3c: 0x11f3, 0xd3d: 0x1347, 0xd3e: 0x145b, 0xd3f: 0x085b,\n\t// Block 0x35, offset 0xd40\n\t0xd40: 0x090f, 0xd41: 0x0a17, 0xd42: 0x0b2f, 0xd43: 0x0cbf, 0xd44: 0x0e7b, 0xd45: 0x103f,\n\t0xd46: 0x1497, 0xd47: 0x157b, 0xd48: 0x15cf, 0xd49: 0x15e7, 0xd4a: 0x0837, 0xd4b: 0x0cf3,\n\t0xd4c: 0x0da3, 0xd4d: 0x13eb, 0xd4e: 0x0afb, 0xd4f: 0x0bd7, 0xd50: 0x0bf3, 0xd51: 0x0c83,\n\t0xd52: 0x0e6b, 0xd53: 0x0eb7, 0xd54: 0x0f67, 0xd55: 0x108b, 0xd56: 0x112f, 0xd57: 0x1193,\n\t0xd58: 0x13db, 0xd59: 0x126b, 0xd5a: 0x1403, 0xd5b: 0x147f, 0xd5c: 0x080f, 0xd5d: 0x083b,\n\t0xd5e: 0x0923, 0xd5f: 0x0ea7, 0xd60: 0x12f3, 0xd61: 0x133b, 0xd62: 0x0b1b, 0xd63: 0x0b8b,\n\t0xd64: 0x0c4f, 0xd65: 0x0daf, 0xd66: 0x10d7, 0xd67: 0x0f23, 0xd68: 0x073b, 0xd69: 0x097f,\n\t0xd6a: 0x0a63, 0xd6b: 0x0ac7, 0xd6c: 0x0b97, 0xd6d: 0x0f3f, 0xd6e: 0x0f5b, 0xd6f: 0x116b,\n\t0xd70: 0x118b, 0xd71: 0x1463, 0xd72: 0x14e3, 0xd73: 0x14f3, 0xd74: 0x152f, 0xd75: 0x0753,\n\t0xd76: 0x107f, 0xd77: 0x144f, 0xd78: 0x14cb, 0xd79: 0x0baf, 0xd7a: 0x0717, 0xd7b: 0x0777,\n\t0xd7c: 0x0a67, 0xd7d: 0x0a87, 0xd7e: 0x0caf, 0xd7f: 0x0d73,\n\t// Block 0x36, offset 0xd80\n\t0xd80: 0x0ec3, 0xd81: 0x0fcb, 0xd82: 0x1277, 0xd83: 0x1417, 0xd84: 0x1623, 0xd85: 0x0ce3,\n\t0xd86: 0x14a3, 0xd87: 0x0833, 0xd88: 0x0d2f, 0xd89: 0x0d3b, 0xd8a: 0x0e0f, 0xd8b: 0x0e47,\n\t0xd8c: 0x0f4b, 0xd8d: 0x0fa7, 0xd8e: 0x1027, 0xd8f: 0x110b, 0xd90: 0x153b, 0xd91: 0x07af,\n\t0xd92: 0x0c03, 0xd93: 0x14b3, 0xd94: 0x0767, 0xd95: 0x0aab, 0xd96: 0x0e2f, 0xd97: 0x13df,\n\t0xd98: 0x0b67, 0xd99: 0x0bb7, 0xd9a: 0x0d43, 0xd9b: 0x0f2f, 0xd9c: 0x14bb, 0xd9d: 0x0817,\n\t0xd9e: 0x08ff, 0xd9f: 0x0a97, 0xda0: 0x0cd3, 0xda1: 0x0d1f, 0xda2: 0x0d5f, 0xda3: 0x0df3,\n\t0xda4: 0x0f47, 0xda5: 0x0fbb, 0xda6: 0x1157, 0xda7: 0x12f7, 0xda8: 0x1303, 0xda9: 0x1457,\n\t0xdaa: 0x14d7, 0xdab: 0x0883, 0xdac: 0x0e4b, 0xdad: 0x0903, 0xdae: 0x0ec7, 0xdaf: 0x0f6b,\n\t0xdb0: 0x1287, 0xdb1: 0x14bf, 0xdb2: 0x15ab, 0xdb3: 0x15d3, 0xdb4: 0x0d37, 0xdb5: 0x0e27,\n\t0xdb6: 0x11c3, 0xdb7: 0x10b7, 0xdb8: 0x10c3, 0xdb9: 0x10e7, 0xdba: 0x0f17, 0xdbb: 0x0e9f,\n\t0xdbc: 0x1363, 0xdbd: 0x0733, 0xdbe: 0x122b, 0xdbf: 0x081b,\n\t// Block 0x37, offset 0xdc0\n\t0xdc0: 0x080b, 0xdc1: 0x0b0b, 0xdc2: 0x0c2b, 0xdc3: 0x10f3, 0xdc4: 0x0a53, 0xdc5: 0x0e03,\n\t0xdc6: 0x0cef, 0xdc7: 0x13e7, 0xdc8: 0x12e7, 0xdc9: 0x14ab, 0xdca: 0x1323, 0xdcb: 0x0b27,\n\t0xdcc: 0x0787, 0xdcd: 0x095b, 0xdd0: 0x09af,\n\t0xdd2: 0x0cdf, 0xdd5: 0x07f7, 0xdd6: 0x0f1f, 0xdd7: 0x0fe3,\n\t0xdd8: 0x1047, 0xdd9: 0x1063, 0xdda: 0x1067, 0xddb: 0x107b, 0xddc: 0x14fb, 0xddd: 0x10eb,\n\t0xdde: 0x116f, 0xde0: 0x128f, 0xde2: 0x1353,\n\t0xde5: 0x1407, 0xde6: 0x1433,\n\t0xdea: 0x154f, 0xdeb: 0x1553, 0xdec: 0x1557, 0xded: 0x15bb, 0xdee: 0x142b, 0xdef: 0x14c7,\n\t0xdf0: 0x0757, 0xdf1: 0x077b, 0xdf2: 0x078f, 0xdf3: 0x084b, 0xdf4: 0x0857, 0xdf5: 0x0897,\n\t0xdf6: 0x094b, 0xdf7: 0x0967, 0xdf8: 0x096f, 0xdf9: 0x09ab, 0xdfa: 0x09b7, 0xdfb: 0x0a93,\n\t0xdfc: 0x0a9b, 0xdfd: 0x0ba3, 0xdfe: 0x0bcb, 0xdff: 0x0bd3,\n\t// Block 0x38, offset 0xe00\n\t0xe00: 0x0beb, 0xe01: 0x0c97, 0xe02: 0x0cc7, 0xe03: 0x0ce7, 0xe04: 0x0d57, 0xe05: 0x0e1b,\n\t0xe06: 0x0e37, 0xe07: 0x0e67, 0xe08: 0x0ebb, 0xe09: 0x0edb, 0xe0a: 0x0f4f, 0xe0b: 0x102f,\n\t0xe0c: 0x104b, 0xe0d: 0x1053, 0xe0e: 0x104f, 0xe0f: 0x1057, 0xe10: 0x105b, 0xe11: 0x105f,\n\t0xe12: 0x1073, 0xe13: 0x1077, 0xe14: 0x109b, 0xe15: 0x10af, 0xe16: 0x10cb, 0xe17: 0x112f,\n\t0xe18: 0x1137, 0xe19: 0x113f, 0xe1a: 0x1153, 0xe1b: 0x117b, 0xe1c: 0x11cb, 0xe1d: 0x11ff,\n\t0xe1e: 0x11ff, 0xe1f: 0x1267, 0xe20: 0x130f, 0xe21: 0x1327, 0xe22: 0x135b, 0xe23: 0x135f,\n\t0xe24: 0x13a3, 0xe25: 0x13a7, 0xe26: 0x13ff, 0xe27: 0x1407, 0xe28: 0x14db, 0xe29: 0x151f,\n\t0xe2a: 0x1537, 0xe2b: 0x0b9b, 0xe2c: 0x171e, 0xe2d: 0x11e3,\n\t0xe30: 0x06df, 0xe31: 0x07e3, 0xe32: 0x07a3, 0xe33: 0x074b, 0xe34: 0x078b, 0xe35: 0x07b7,\n\t0xe36: 0x0847, 0xe37: 0x0863, 0xe38: 0x094b, 0xe39: 0x0937, 0xe3a: 0x0947, 0xe3b: 0x0963,\n\t0xe3c: 0x09af, 0xe3d: 0x09bf, 0xe3e: 0x0a03, 0xe3f: 0x0a0f,\n\t// Block 0x39, offset 0xe40\n\t0xe40: 0x0a2b, 0xe41: 0x0a3b, 0xe42: 0x0b23, 0xe43: 0x0b2b, 0xe44: 0x0b5b, 0xe45: 0x0b7b,\n\t0xe46: 0x0bab, 0xe47: 0x0bc3, 0xe48: 0x0bb3, 0xe49: 0x0bd3, 0xe4a: 0x0bc7, 0xe4b: 0x0beb,\n\t0xe4c: 0x0c07, 0xe4d: 0x0c5f, 0xe4e: 0x0c6b, 0xe4f: 0x0c73, 0xe50: 0x0c9b, 0xe51: 0x0cdf,\n\t0xe52: 0x0d0f, 0xe53: 0x0d13, 0xe54: 0x0d27, 0xe55: 0x0da7, 0xe56: 0x0db7, 0xe57: 0x0e0f,\n\t0xe58: 0x0e5b, 0xe59: 0x0e53, 0xe5a: 0x0e67, 0xe5b: 0x0e83, 0xe5c: 0x0ebb, 0xe5d: 0x1013,\n\t0xe5e: 0x0edf, 0xe5f: 0x0f13, 0xe60: 0x0f1f, 0xe61: 0x0f5f, 0xe62: 0x0f7b, 0xe63: 0x0f9f,\n\t0xe64: 0x0fc3, 0xe65: 0x0fc7, 0xe66: 0x0fe3, 0xe67: 0x0fe7, 0xe68: 0x0ff7, 0xe69: 0x100b,\n\t0xe6a: 0x1007, 0xe6b: 0x1037, 0xe6c: 0x10b3, 0xe6d: 0x10cb, 0xe6e: 0x10e3, 0xe6f: 0x111b,\n\t0xe70: 0x112f, 0xe71: 0x114b, 0xe72: 0x117b, 0xe73: 0x122f, 0xe74: 0x1257, 0xe75: 0x12cb,\n\t0xe76: 0x1313, 0xe77: 0x131f, 0xe78: 0x1327, 0xe79: 0x133f, 0xe7a: 0x1353, 0xe7b: 0x1343,\n\t0xe7c: 0x135b, 0xe7d: 0x1357, 0xe7e: 0x134f, 0xe7f: 0x135f,\n\t// Block 0x3a, offset 0xe80\n\t0xe80: 0x136b, 0xe81: 0x13a7, 0xe82: 0x13e3, 0xe83: 0x1413, 0xe84: 0x144b, 0xe85: 0x146b,\n\t0xe86: 0x14b7, 0xe87: 0x14db, 0xe88: 0x14fb, 0xe89: 0x150f, 0xe8a: 0x151f, 0xe8b: 0x152b,\n\t0xe8c: 0x1537, 0xe8d: 0x158b, 0xe8e: 0x162b, 0xe8f: 0x16b5, 0xe90: 0x16b0, 0xe91: 0x16e2,\n\t0xe92: 0x0607, 0xe93: 0x062f, 0xe94: 0x0633, 0xe95: 0x1764, 0xe96: 0x1791, 0xe97: 0x1809,\n\t0xe98: 0x1617, 0xe99: 0x1627,\n\t// Block 0x3b, offset 0xec0\n\t0xec0: 0x19d5, 0xec1: 0x19d8, 0xec2: 0x19db, 0xec3: 0x1c08, 0xec4: 0x1c0c, 0xec5: 0x1a5f,\n\t0xec6: 0x1a5f,\n\t0xed3: 0x1d75, 0xed4: 0x1d66, 0xed5: 0x1d6b, 0xed6: 0x1d7a, 0xed7: 0x1d70,\n\t0xedd: 0x4390,\n\t0xede: 0x8115, 0xedf: 0x4402, 0xee0: 0x022d, 0xee1: 0x0215, 0xee2: 0x021e, 0xee3: 0x0221,\n\t0xee4: 0x0224, 0xee5: 0x0227, 0xee6: 0x022a, 0xee7: 0x0230, 0xee8: 0x0233, 0xee9: 0x0017,\n\t0xeea: 0x43f0, 0xeeb: 0x43f6, 0xeec: 0x44f4, 0xeed: 0x44fc, 0xeee: 0x4348, 0xeef: 0x434e,\n\t0xef0: 0x4354, 0xef1: 0x435a, 0xef2: 0x4366, 0xef3: 0x436c, 0xef4: 0x4372, 0xef5: 0x437e,\n\t0xef6: 0x4384, 0xef8: 0x438a, 0xef9: 0x4396, 0xefa: 0x439c, 0xefb: 0x43a2,\n\t0xefc: 0x43ae, 0xefe: 0x43b4,\n\t// Block 0x3c, offset 0xf00\n\t0xf00: 0x43ba, 0xf01: 0x43c0, 0xf03: 0x43c6, 0xf04: 0x43cc,\n\t0xf06: 0x43d8, 0xf07: 0x43de, 0xf08: 0x43e4, 0xf09: 0x43ea, 0xf0a: 0x43fc, 0xf0b: 0x4378,\n\t0xf0c: 0x4360, 0xf0d: 0x43a8, 0xf0e: 0x43d2, 0xf0f: 0x1d7f, 0xf10: 0x0299, 0xf11: 0x0299,\n\t0xf12: 0x02a2, 0xf13: 0x02a2, 0xf14: 0x02a2, 0xf15: 0x02a2, 0xf16: 0x02a5, 0xf17: 0x02a5,\n\t0xf18: 0x02a5, 0xf19: 0x02a5, 0xf1a: 0x02ab, 0xf1b: 0x02ab, 0xf1c: 0x02ab, 0xf1d: 0x02ab,\n\t0xf1e: 0x029f, 0xf1f: 0x029f, 0xf20: 0x029f, 0xf21: 0x029f, 0xf22: 0x02a8, 0xf23: 0x02a8,\n\t0xf24: 0x02a8, 0xf25: 0x02a8, 0xf26: 0x029c, 0xf27: 0x029c, 0xf28: 0x029c, 0xf29: 0x029c,\n\t0xf2a: 0x02cf, 0xf2b: 0x02cf, 0xf2c: 0x02cf, 0xf2d: 0x02cf, 0xf2e: 0x02d2, 0xf2f: 0x02d2,\n\t0xf30: 0x02d2, 0xf31: 0x02d2, 0xf32: 0x02b1, 0xf33: 0x02b1, 0xf34: 0x02b1, 0xf35: 0x02b1,\n\t0xf36: 0x02ae, 0xf37: 0x02ae, 0xf38: 0x02ae, 0xf39: 0x02ae, 0xf3a: 0x02b4, 0xf3b: 0x02b4,\n\t0xf3c: 0x02b4, 0xf3d: 0x02b4, 0xf3e: 0x02b7, 0xf3f: 0x02b7,\n\t// Block 0x3d, offset 0xf40\n\t0xf40: 0x02b7, 0xf41: 0x02b7, 0xf42: 0x02c0, 0xf43: 0x02c0, 0xf44: 0x02bd, 0xf45: 0x02bd,\n\t0xf46: 0x02c3, 0xf47: 0x02c3, 0xf48: 0x02ba, 0xf49: 0x02ba, 0xf4a: 0x02c9, 0xf4b: 0x02c9,\n\t0xf4c: 0x02c6, 0xf4d: 0x02c6, 0xf4e: 0x02d5, 0xf4f: 0x02d5, 0xf50: 0x02d5, 0xf51: 0x02d5,\n\t0xf52: 0x02db, 0xf53: 0x02db, 0xf54: 0x02db, 0xf55: 0x02db, 0xf56: 0x02e1, 0xf57: 0x02e1,\n\t0xf58: 0x02e1, 0xf59: 0x02e1, 0xf5a: 0x02de, 0xf5b: 0x02de, 0xf5c: 0x02de, 0xf5d: 0x02de,\n\t0xf5e: 0x02e4, 0xf5f: 0x02e4, 0xf60: 0x02e7, 0xf61: 0x02e7, 0xf62: 0x02e7, 0xf63: 0x02e7,\n\t0xf64: 0x446e, 0xf65: 0x446e, 0xf66: 0x02ed, 0xf67: 0x02ed, 0xf68: 0x02ed, 0xf69: 0x02ed,\n\t0xf6a: 0x02ea, 0xf6b: 0x02ea, 0xf6c: 0x02ea, 0xf6d: 0x02ea, 0xf6e: 0x0308, 0xf6f: 0x0308,\n\t0xf70: 0x4468, 0xf71: 0x4468,\n\t// Block 0x3e, offset 0xf80\n\t0xf93: 0x02d8, 0xf94: 0x02d8, 0xf95: 0x02d8, 0xf96: 0x02d8, 0xf97: 0x02f6,\n\t0xf98: 0x02f6, 0xf99: 0x02f3, 0xf9a: 0x02f3, 0xf9b: 0x02f9, 0xf9c: 0x02f9, 0xf9d: 0x204f,\n\t0xf9e: 0x02ff, 0xf9f: 0x02ff, 0xfa0: 0x02f0, 0xfa1: 0x02f0, 0xfa2: 0x02fc, 0xfa3: 0x02fc,\n\t0xfa4: 0x0305, 0xfa5: 0x0305, 0xfa6: 0x0305, 0xfa7: 0x0305, 0xfa8: 0x028d, 0xfa9: 0x028d,\n\t0xfaa: 0x25aa, 0xfab: 0x25aa, 0xfac: 0x261a, 0xfad: 0x261a, 0xfae: 0x25e9, 0xfaf: 0x25e9,\n\t0xfb0: 0x2605, 0xfb1: 0x2605, 0xfb2: 0x25fe, 0xfb3: 0x25fe, 0xfb4: 0x260c, 0xfb5: 0x260c,\n\t0xfb6: 0x2613, 0xfb7: 0x2613, 0xfb8: 0x2613, 0xfb9: 0x25f0, 0xfba: 0x25f0, 0xfbb: 0x25f0,\n\t0xfbc: 0x0302, 0xfbd: 0x0302, 0xfbe: 0x0302, 0xfbf: 0x0302,\n\t// Block 0x3f, offset 0xfc0\n\t0xfc0: 0x25b1, 0xfc1: 0x25b8, 0xfc2: 0x25d4, 0xfc3: 0x25f0, 0xfc4: 0x25f7, 0xfc5: 0x1d89,\n\t0xfc6: 0x1d8e, 0xfc7: 0x1d93, 0xfc8: 0x1da2, 0xfc9: 0x1db1, 0xfca: 0x1db6, 0xfcb: 0x1dbb,\n\t0xfcc: 0x1dc0, 0xfcd: 0x1dc5, 0xfce: 0x1dd4, 0xfcf: 0x1de3, 0xfd0: 0x1de8, 0xfd1: 0x1ded,\n\t0xfd2: 0x1dfc, 0xfd3: 0x1e0b, 0xfd4: 0x1e10, 0xfd5: 0x1e15, 0xfd6: 0x1e1a, 0xfd7: 0x1e29,\n\t0xfd8: 0x1e2e, 0xfd9: 0x1e3d, 0xfda: 0x1e42, 0xfdb: 0x1e47, 0xfdc: 0x1e56, 0xfdd: 0x1e5b,\n\t0xfde: 0x1e60, 0xfdf: 0x1e6a, 0xfe0: 0x1ea6, 0xfe1: 0x1eb5, 0xfe2: 0x1ec4, 0xfe3: 0x1ec9,\n\t0xfe4: 0x1ece, 0xfe5: 0x1ed8, 0xfe6: 0x1ee7, 0xfe7: 0x1eec, 0xfe8: 0x1efb, 0xfe9: 0x1f00,\n\t0xfea: 0x1f05, 0xfeb: 0x1f14, 0xfec: 0x1f19, 0xfed: 0x1f28, 0xfee: 0x1f2d, 0xfef: 0x1f32,\n\t0xff0: 0x1f37, 0xff1: 0x1f3c, 0xff2: 0x1f41, 0xff3: 0x1f46, 0xff4: 0x1f4b, 0xff5: 0x1f50,\n\t0xff6: 0x1f55, 0xff7: 0x1f5a, 0xff8: 0x1f5f, 0xff9: 0x1f64, 0xffa: 0x1f69, 0xffb: 0x1f6e,\n\t0xffc: 0x1f73, 0xffd: 0x1f78, 0xffe: 0x1f7d, 0xfff: 0x1f87,\n\t// Block 0x40, offset 0x1000\n\t0x1000: 0x1f8c, 0x1001: 0x1f91, 0x1002: 0x1f96, 0x1003: 0x1fa0, 0x1004: 0x1fa5, 0x1005: 0x1faf,\n\t0x1006: 0x1fb4, 0x1007: 0x1fb9, 0x1008: 0x1fbe, 0x1009: 0x1fc3, 0x100a: 0x1fc8, 0x100b: 0x1fcd,\n\t0x100c: 0x1fd2, 0x100d: 0x1fd7, 0x100e: 0x1fe6, 0x100f: 0x1ff5, 0x1010: 0x1ffa, 0x1011: 0x1fff,\n\t0x1012: 0x2004, 0x1013: 0x2009, 0x1014: 0x200e, 0x1015: 0x2018, 0x1016: 0x201d, 0x1017: 0x2022,\n\t0x1018: 0x2031, 0x1019: 0x2040, 0x101a: 0x2045, 0x101b: 0x4420, 0x101c: 0x4426, 0x101d: 0x445c,\n\t0x101e: 0x44b3, 0x101f: 0x44ba, 0x1020: 0x44c1, 0x1021: 0x44c8, 0x1022: 0x44cf, 0x1023: 0x44d6,\n\t0x1024: 0x25c6, 0x1025: 0x25cd, 0x1026: 0x25d4, 0x1027: 0x25db, 0x1028: 0x25f0, 0x1029: 0x25f7,\n\t0x102a: 0x1d98, 0x102b: 0x1d9d, 0x102c: 0x1da2, 0x102d: 0x1da7, 0x102e: 0x1db1, 0x102f: 0x1db6,\n\t0x1030: 0x1dca, 0x1031: 0x1dcf, 0x1032: 0x1dd4, 0x1033: 0x1dd9, 0x1034: 0x1de3, 0x1035: 0x1de8,\n\t0x1036: 0x1df2, 0x1037: 0x1df7, 0x1038: 0x1dfc, 0x1039: 0x1e01, 0x103a: 0x1e0b, 0x103b: 0x1e10,\n\t0x103c: 0x1f3c, 0x103d: 0x1f41, 0x103e: 0x1f50, 0x103f: 0x1f55,\n\t// Block 0x41, offset 0x1040\n\t0x1040: 0x1f5a, 0x1041: 0x1f6e, 0x1042: 0x1f73, 0x1043: 0x1f78, 0x1044: 0x1f7d, 0x1045: 0x1f96,\n\t0x1046: 0x1fa0, 0x1047: 0x1fa5, 0x1048: 0x1faa, 0x1049: 0x1fbe, 0x104a: 0x1fdc, 0x104b: 0x1fe1,\n\t0x104c: 0x1fe6, 0x104d: 0x1feb, 0x104e: 0x1ff5, 0x104f: 0x1ffa, 0x1050: 0x445c, 0x1051: 0x2027,\n\t0x1052: 0x202c, 0x1053: 0x2031, 0x1054: 0x2036, 0x1055: 0x2040, 0x1056: 0x2045, 0x1057: 0x25b1,\n\t0x1058: 0x25b8, 0x1059: 0x25bf, 0x105a: 0x25d4, 0x105b: 0x25e2, 0x105c: 0x1d89, 0x105d: 0x1d8e,\n\t0x105e: 0x1d93, 0x105f: 0x1da2, 0x1060: 0x1dac, 0x1061: 0x1dbb, 0x1062: 0x1dc0, 0x1063: 0x1dc5,\n\t0x1064: 0x1dd4, 0x1065: 0x1dde, 0x1066: 0x1dfc, 0x1067: 0x1e15, 0x1068: 0x1e1a, 0x1069: 0x1e29,\n\t0x106a: 0x1e2e, 0x106b: 0x1e3d, 0x106c: 0x1e47, 0x106d: 0x1e56, 0x106e: 0x1e5b, 0x106f: 0x1e60,\n\t0x1070: 0x1e6a, 0x1071: 0x1ea6, 0x1072: 0x1eab, 0x1073: 0x1eb5, 0x1074: 0x1ec4, 0x1075: 0x1ec9,\n\t0x1076: 0x1ece, 0x1077: 0x1ed8, 0x1078: 0x1ee7, 0x1079: 0x1efb, 0x107a: 0x1f00, 0x107b: 0x1f05,\n\t0x107c: 0x1f14, 0x107d: 0x1f19, 0x107e: 0x1f28, 0x107f: 0x1f2d,\n\t// Block 0x42, offset 0x1080\n\t0x1080: 0x1f32, 0x1081: 0x1f37, 0x1082: 0x1f46, 0x1083: 0x1f4b, 0x1084: 0x1f5f, 0x1085: 0x1f64,\n\t0x1086: 0x1f69, 0x1087: 0x1f6e, 0x1088: 0x1f73, 0x1089: 0x1f87, 0x108a: 0x1f8c, 0x108b: 0x1f91,\n\t0x108c: 0x1f96, 0x108d: 0x1f9b, 0x108e: 0x1faf, 0x108f: 0x1fb4, 0x1090: 0x1fb9, 0x1091: 0x1fbe,\n\t0x1092: 0x1fcd, 0x1093: 0x1fd2, 0x1094: 0x1fd7, 0x1095: 0x1fe6, 0x1096: 0x1ff0, 0x1097: 0x1fff,\n\t0x1098: 0x2004, 0x1099: 0x4450, 0x109a: 0x2018, 0x109b: 0x201d, 0x109c: 0x2022, 0x109d: 0x2031,\n\t0x109e: 0x203b, 0x109f: 0x25d4, 0x10a0: 0x25e2, 0x10a1: 0x1da2, 0x10a2: 0x1dac, 0x10a3: 0x1dd4,\n\t0x10a4: 0x1dde, 0x10a5: 0x1dfc, 0x10a6: 0x1e06, 0x10a7: 0x1e6a, 0x10a8: 0x1e6f, 0x10a9: 0x1e92,\n\t0x10aa: 0x1e97, 0x10ab: 0x1f6e, 0x10ac: 0x1f73, 0x10ad: 0x1f96, 0x10ae: 0x1fe6, 0x10af: 0x1ff0,\n\t0x10b0: 0x2031, 0x10b1: 0x203b, 0x10b2: 0x4504, 0x10b3: 0x450c, 0x10b4: 0x4514, 0x10b5: 0x1ef1,\n\t0x10b6: 0x1ef6, 0x10b7: 0x1f0a, 0x10b8: 0x1f0f, 0x10b9: 0x1f1e, 0x10ba: 0x1f23, 0x10bb: 0x1e74,\n\t0x10bc: 0x1e79, 0x10bd: 0x1e9c, 0x10be: 0x1ea1, 0x10bf: 0x1e33,\n\t// Block 0x43, offset 0x10c0\n\t0x10c0: 0x1e38, 0x10c1: 0x1e1f, 0x10c2: 0x1e24, 0x10c3: 0x1e4c, 0x10c4: 0x1e51, 0x10c5: 0x1eba,\n\t0x10c6: 0x1ebf, 0x10c7: 0x1edd, 0x10c8: 0x1ee2, 0x10c9: 0x1e7e, 0x10ca: 0x1e83, 0x10cb: 0x1e88,\n\t0x10cc: 0x1e92, 0x10cd: 0x1e8d, 0x10ce: 0x1e65, 0x10cf: 0x1eb0, 0x10d0: 0x1ed3, 0x10d1: 0x1ef1,\n\t0x10d2: 0x1ef6, 0x10d3: 0x1f0a, 0x10d4: 0x1f0f, 0x10d5: 0x1f1e, 0x10d6: 0x1f23, 0x10d7: 0x1e74,\n\t0x10d8: 0x1e79, 0x10d9: 0x1e9c, 0x10da: 0x1ea1, 0x10db: 0x1e33, 0x10dc: 0x1e38, 0x10dd: 0x1e1f,\n\t0x10de: 0x1e24, 0x10df: 0x1e4c, 0x10e0: 0x1e51, 0x10e1: 0x1eba, 0x10e2: 0x1ebf, 0x10e3: 0x1edd,\n\t0x10e4: 0x1ee2, 0x10e5: 0x1e7e, 0x10e6: 0x1e83, 0x10e7: 0x1e88, 0x10e8: 0x1e92, 0x10e9: 0x1e8d,\n\t0x10ea: 0x1e65, 0x10eb: 0x1eb0, 0x10ec: 0x1ed3, 0x10ed: 0x1e7e, 0x10ee: 0x1e83, 0x10ef: 0x1e88,\n\t0x10f0: 0x1e92, 0x10f1: 0x1e6f, 0x10f2: 0x1e97, 0x10f3: 0x1eec, 0x10f4: 0x1e56, 0x10f5: 0x1e5b,\n\t0x10f6: 0x1e60, 0x10f7: 0x1e7e, 0x10f8: 0x1e83, 0x10f9: 0x1e88, 0x10fa: 0x1eec, 0x10fb: 0x1efb,\n\t0x10fc: 0x4408, 0x10fd: 0x4408,\n\t// Block 0x44, offset 0x1100\n\t0x1110: 0x2311, 0x1111: 0x2326,\n\t0x1112: 0x2326, 0x1113: 0x232d, 0x1114: 0x2334, 0x1115: 0x2349, 0x1116: 0x2350, 0x1117: 0x2357,\n\t0x1118: 0x237a, 0x1119: 0x237a, 0x111a: 0x239d, 0x111b: 0x2396, 0x111c: 0x23b2, 0x111d: 0x23a4,\n\t0x111e: 0x23ab, 0x111f: 0x23ce, 0x1120: 0x23ce, 0x1121: 0x23c7, 0x1122: 0x23d5, 0x1123: 0x23d5,\n\t0x1124: 0x23ff, 0x1125: 0x23ff, 0x1126: 0x241b, 0x1127: 0x23e3, 0x1128: 0x23e3, 0x1129: 0x23dc,\n\t0x112a: 0x23f1, 0x112b: 0x23f1, 0x112c: 0x23f8, 0x112d: 0x23f8, 0x112e: 0x2422, 0x112f: 0x2430,\n\t0x1130: 0x2430, 0x1131: 0x2437, 0x1132: 0x2437, 0x1133: 0x243e, 0x1134: 0x2445, 0x1135: 0x244c,\n\t0x1136: 0x2453, 0x1137: 0x2453, 0x1138: 0x245a, 0x1139: 0x2468, 0x113a: 0x2476, 0x113b: 0x246f,\n\t0x113c: 0x247d, 0x113d: 0x247d, 0x113e: 0x2492, 0x113f: 0x2499,\n\t// Block 0x45, offset 0x1140\n\t0x1140: 0x24ca, 0x1141: 0x24d8, 0x1142: 0x24d1, 0x1143: 0x24b5, 0x1144: 0x24b5, 0x1145: 0x24df,\n\t0x1146: 0x24df, 0x1147: 0x24e6, 0x1148: 0x24e6, 0x1149: 0x2510, 0x114a: 0x2517, 0x114b: 0x251e,\n\t0x114c: 0x24f4, 0x114d: 0x2502, 0x114e: 0x2525, 0x114f: 0x252c,\n\t0x1152: 0x24fb, 0x1153: 0x2580, 0x1154: 0x2587, 0x1155: 0x255d, 0x1156: 0x2564, 0x1157: 0x2548,\n\t0x1158: 0x2548, 0x1159: 0x254f, 0x115a: 0x2579, 0x115b: 0x2572, 0x115c: 0x259c, 0x115d: 0x259c,\n\t0x115e: 0x230a, 0x115f: 0x231f, 0x1160: 0x2318, 0x1161: 0x2342, 0x1162: 0x233b, 0x1163: 0x2365,\n\t0x1164: 0x235e, 0x1165: 0x2388, 0x1166: 0x236c, 0x1167: 0x2381, 0x1168: 0x23b9, 0x1169: 0x2406,\n\t0x116a: 0x23ea, 0x116b: 0x2429, 0x116c: 0x24c3, 0x116d: 0x24ed, 0x116e: 0x2595, 0x116f: 0x258e,\n\t0x1170: 0x25a3, 0x1171: 0x253a, 0x1172: 0x24a0, 0x1173: 0x256b, 0x1174: 0x2492, 0x1175: 0x24ca,\n\t0x1176: 0x2461, 0x1177: 0x24ae, 0x1178: 0x2541, 0x1179: 0x2533, 0x117a: 0x24bc, 0x117b: 0x24a7,\n\t0x117c: 0x24bc, 0x117d: 0x2541, 0x117e: 0x2373, 0x117f: 0x238f,\n\t// Block 0x46, offset 0x1180\n\t0x1180: 0x2509, 0x1181: 0x2484, 0x1182: 0x2303, 0x1183: 0x24a7, 0x1184: 0x244c, 0x1185: 0x241b,\n\t0x1186: 0x23c0, 0x1187: 0x2556,\n\t0x11b0: 0x2414, 0x11b1: 0x248b, 0x11b2: 0x27bf, 0x11b3: 0x27b6, 0x11b4: 0x27ec, 0x11b5: 0x27da,\n\t0x11b6: 0x27c8, 0x11b7: 0x27e3, 0x11b8: 0x27f5, 0x11b9: 0x240d, 0x11ba: 0x2c7c, 0x11bb: 0x2afc,\n\t0x11bc: 0x27d1,\n\t// Block 0x47, offset 0x11c0\n\t0x11d0: 0x0019, 0x11d1: 0x0483,\n\t0x11d2: 0x0487, 0x11d3: 0x0035, 0x11d4: 0x0037, 0x11d5: 0x0003, 0x11d6: 0x003f, 0x11d7: 0x04bf,\n\t0x11d8: 0x04c3, 0x11d9: 0x1b5c,\n\t0x11e0: 0x8132, 0x11e1: 0x8132, 0x11e2: 0x8132, 0x11e3: 0x8132,\n\t0x11e4: 0x8132, 0x11e5: 0x8132, 0x11e6: 0x8132, 0x11e7: 0x812d, 0x11e8: 0x812d, 0x11e9: 0x812d,\n\t0x11ea: 0x812d, 0x11eb: 0x812d, 0x11ec: 0x812d, 0x11ed: 0x812d, 0x11ee: 0x8132, 0x11ef: 0x8132,\n\t0x11f0: 0x1873, 0x11f1: 0x0443, 0x11f2: 0x043f, 0x11f3: 0x007f, 0x11f4: 0x007f, 0x11f5: 0x0011,\n\t0x11f6: 0x0013, 0x11f7: 0x00b7, 0x11f8: 0x00bb, 0x11f9: 0x04b7, 0x11fa: 0x04bb, 0x11fb: 0x04ab,\n\t0x11fc: 0x04af, 0x11fd: 0x0493, 0x11fe: 0x0497, 0x11ff: 0x048b,\n\t// Block 0x48, offset 0x1200\n\t0x1200: 0x048f, 0x1201: 0x049b, 0x1202: 0x049f, 0x1203: 0x04a3, 0x1204: 0x04a7,\n\t0x1207: 0x0077, 0x1208: 0x007b, 0x1209: 0x4269, 0x120a: 0x4269, 0x120b: 0x4269,\n\t0x120c: 0x4269, 0x120d: 0x007f, 0x120e: 0x007f, 0x120f: 0x007f, 0x1210: 0x0019, 0x1211: 0x0483,\n\t0x1212: 0x001d, 0x1214: 0x0037, 0x1215: 0x0035, 0x1216: 0x003f, 0x1217: 0x0003,\n\t0x1218: 0x0443, 0x1219: 0x0011, 0x121a: 0x0013, 0x121b: 0x00b7, 0x121c: 0x00bb, 0x121d: 0x04b7,\n\t0x121e: 0x04bb, 0x121f: 0x0007, 0x1220: 0x000d, 0x1221: 0x0015, 0x1222: 0x0017, 0x1223: 0x001b,\n\t0x1224: 0x0039, 0x1225: 0x003d, 0x1226: 0x003b, 0x1228: 0x0079, 0x1229: 0x0009,\n\t0x122a: 0x000b, 0x122b: 0x0041,\n\t0x1230: 0x42aa, 0x1231: 0x442c, 0x1232: 0x42af, 0x1234: 0x42b4,\n\t0x1236: 0x42b9, 0x1237: 0x4432, 0x1238: 0x42be, 0x1239: 0x4438, 0x123a: 0x42c3, 0x123b: 0x443e,\n\t0x123c: 0x42c8, 0x123d: 0x4444, 0x123e: 0x42cd, 0x123f: 0x444a,\n\t// Block 0x49, offset 0x1240\n\t0x1240: 0x0236, 0x1241: 0x440e, 0x1242: 0x440e, 0x1243: 0x4414, 0x1244: 0x4414, 0x1245: 0x4456,\n\t0x1246: 0x4456, 0x1247: 0x441a, 0x1248: 0x441a, 0x1249: 0x4462, 0x124a: 0x4462, 0x124b: 0x4462,\n\t0x124c: 0x4462, 0x124d: 0x0239, 0x124e: 0x0239, 0x124f: 0x023c, 0x1250: 0x023c, 0x1251: 0x023c,\n\t0x1252: 0x023c, 0x1253: 0x023f, 0x1254: 0x023f, 0x1255: 0x0242, 0x1256: 0x0242, 0x1257: 0x0242,\n\t0x1258: 0x0242, 0x1259: 0x0245, 0x125a: 0x0245, 0x125b: 0x0245, 0x125c: 0x0245, 0x125d: 0x0248,\n\t0x125e: 0x0248, 0x125f: 0x0248, 0x1260: 0x0248, 0x1261: 0x024b, 0x1262: 0x024b, 0x1263: 0x024b,\n\t0x1264: 0x024b, 0x1265: 0x024e, 0x1266: 0x024e, 0x1267: 0x024e, 0x1268: 0x024e, 0x1269: 0x0251,\n\t0x126a: 0x0251, 0x126b: 0x0254, 0x126c: 0x0254, 0x126d: 0x0257, 0x126e: 0x0257, 0x126f: 0x025a,\n\t0x1270: 0x025a, 0x1271: 0x025d, 0x1272: 0x025d, 0x1273: 0x025d, 0x1274: 0x025d, 0x1275: 0x0260,\n\t0x1276: 0x0260, 0x1277: 0x0260, 0x1278: 0x0260, 0x1279: 0x0263, 0x127a: 0x0263, 0x127b: 0x0263,\n\t0x127c: 0x0263, 0x127d: 0x0266, 0x127e: 0x0266, 0x127f: 0x0266,\n\t// Block 0x4a, offset 0x1280\n\t0x1280: 0x0266, 0x1281: 0x0269, 0x1282: 0x0269, 0x1283: 0x0269, 0x1284: 0x0269, 0x1285: 0x026c,\n\t0x1286: 0x026c, 0x1287: 0x026c, 0x1288: 0x026c, 0x1289: 0x026f, 0x128a: 0x026f, 0x128b: 0x026f,\n\t0x128c: 0x026f, 0x128d: 0x0272, 0x128e: 0x0272, 0x128f: 0x0272, 0x1290: 0x0272, 0x1291: 0x0275,\n\t0x1292: 0x0275, 0x1293: 0x0275, 0x1294: 0x0275, 0x1295: 0x0278, 0x1296: 0x0278, 0x1297: 0x0278,\n\t0x1298: 0x0278, 0x1299: 0x027b, 0x129a: 0x027b, 0x129b: 0x027b, 0x129c: 0x027b, 0x129d: 0x027e,\n\t0x129e: 0x027e, 0x129f: 0x027e, 0x12a0: 0x027e, 0x12a1: 0x0281, 0x12a2: 0x0281, 0x12a3: 0x0281,\n\t0x12a4: 0x0281, 0x12a5: 0x0284, 0x12a6: 0x0284, 0x12a7: 0x0284, 0x12a8: 0x0284, 0x12a9: 0x0287,\n\t0x12aa: 0x0287, 0x12ab: 0x0287, 0x12ac: 0x0287, 0x12ad: 0x028a, 0x12ae: 0x028a, 0x12af: 0x028d,\n\t0x12b0: 0x028d, 0x12b1: 0x0290, 0x12b2: 0x0290, 0x12b3: 0x0290, 0x12b4: 0x0290, 0x12b5: 0x2e00,\n\t0x12b6: 0x2e00, 0x12b7: 0x2e08, 0x12b8: 0x2e08, 0x12b9: 0x2e10, 0x12ba: 0x2e10, 0x12bb: 0x1f82,\n\t0x12bc: 0x1f82,\n\t// Block 0x4b, offset 0x12c0\n\t0x12c0: 0x0081, 0x12c1: 0x0083, 0x12c2: 0x0085, 0x12c3: 0x0087, 0x12c4: 0x0089, 0x12c5: 0x008b,\n\t0x12c6: 0x008d, 0x12c7: 0x008f, 0x12c8: 0x0091, 0x12c9: 0x0093, 0x12ca: 0x0095, 0x12cb: 0x0097,\n\t0x12cc: 0x0099, 0x12cd: 0x009b, 0x12ce: 0x009d, 0x12cf: 0x009f, 0x12d0: 0x00a1, 0x12d1: 0x00a3,\n\t0x12d2: 0x00a5, 0x12d3: 0x00a7, 0x12d4: 0x00a9, 0x12d5: 0x00ab, 0x12d6: 0x00ad, 0x12d7: 0x00af,\n\t0x12d8: 0x00b1, 0x12d9: 0x00b3, 0x12da: 0x00b5, 0x12db: 0x00b7, 0x12dc: 0x00b9, 0x12dd: 0x00bb,\n\t0x12de: 0x00bd, 0x12df: 0x0477, 0x12e0: 0x047b, 0x12e1: 0x0487, 0x12e2: 0x049b, 0x12e3: 0x049f,\n\t0x12e4: 0x0483, 0x12e5: 0x05ab, 0x12e6: 0x05a3, 0x12e7: 0x04c7, 0x12e8: 0x04cf, 0x12e9: 0x04d7,\n\t0x12ea: 0x04df, 0x12eb: 0x04e7, 0x12ec: 0x056b, 0x12ed: 0x0573, 0x12ee: 0x057b, 0x12ef: 0x051f,\n\t0x12f0: 0x05af, 0x12f1: 0x04cb, 0x12f2: 0x04d3, 0x12f3: 0x04db, 0x12f4: 0x04e3, 0x12f5: 0x04eb,\n\t0x12f6: 0x04ef, 0x12f7: 0x04f3, 0x12f8: 0x04f7, 0x12f9: 0x04fb, 0x12fa: 0x04ff, 0x12fb: 0x0503,\n\t0x12fc: 0x0507, 0x12fd: 0x050b, 0x12fe: 0x050f, 0x12ff: 0x0513,\n\t// Block 0x4c, offset 0x1300\n\t0x1300: 0x0517, 0x1301: 0x051b, 0x1302: 0x0523, 0x1303: 0x0527, 0x1304: 0x052b, 0x1305: 0x052f,\n\t0x1306: 0x0533, 0x1307: 0x0537, 0x1308: 0x053b, 0x1309: 0x053f, 0x130a: 0x0543, 0x130b: 0x0547,\n\t0x130c: 0x054b, 0x130d: 0x054f, 0x130e: 0x0553, 0x130f: 0x0557, 0x1310: 0x055b, 0x1311: 0x055f,\n\t0x1312: 0x0563, 0x1313: 0x0567, 0x1314: 0x056f, 0x1315: 0x0577, 0x1316: 0x057f, 0x1317: 0x0583,\n\t0x1318: 0x0587, 0x1319: 0x058b, 0x131a: 0x058f, 0x131b: 0x0593, 0x131c: 0x0597, 0x131d: 0x05a7,\n\t0x131e: 0x4a78, 0x131f: 0x4a7e, 0x1320: 0x03c3, 0x1321: 0x0313, 0x1322: 0x0317, 0x1323: 0x4a3b,\n\t0x1324: 0x031b, 0x1325: 0x4a41, 0x1326: 0x4a47, 0x1327: 0x031f, 0x1328: 0x0323, 0x1329: 0x0327,\n\t0x132a: 0x4a4d, 0x132b: 0x4a53, 0x132c: 0x4a59, 0x132d: 0x4a5f, 0x132e: 0x4a65, 0x132f: 0x4a6b,\n\t0x1330: 0x0367, 0x1331: 0x032b, 0x1332: 0x032f, 0x1333: 0x0333, 0x1334: 0x037b, 0x1335: 0x0337,\n\t0x1336: 0x033b, 0x1337: 0x033f, 0x1338: 0x0343, 0x1339: 0x0347, 0x133a: 0x034b, 0x133b: 0x034f,\n\t0x133c: 0x0353, 0x133d: 0x0357, 0x133e: 0x035b,\n\t// Block 0x4d, offset 0x1340\n\t0x1342: 0x49bd, 0x1343: 0x49c3, 0x1344: 0x49c9, 0x1345: 0x49cf,\n\t0x1346: 0x49d5, 0x1347: 0x49db, 0x134a: 0x49e1, 0x134b: 0x49e7,\n\t0x134c: 0x49ed, 0x134d: 0x49f3, 0x134e: 0x49f9, 0x134f: 0x49ff,\n\t0x1352: 0x4a05, 0x1353: 0x4a0b, 0x1354: 0x4a11, 0x1355: 0x4a17, 0x1356: 0x4a1d, 0x1357: 0x4a23,\n\t0x135a: 0x4a29, 0x135b: 0x4a2f, 0x135c: 0x4a35,\n\t0x1360: 0x00bf, 0x1361: 0x00c2, 0x1362: 0x00cb, 0x1363: 0x4264,\n\t0x1364: 0x00c8, 0x1365: 0x00c5, 0x1366: 0x0447, 0x1368: 0x046b, 0x1369: 0x044b,\n\t0x136a: 0x044f, 0x136b: 0x0453, 0x136c: 0x0457, 0x136d: 0x046f, 0x136e: 0x0473,\n\t// Block 0x4e, offset 0x1380\n\t0x1380: 0x0063, 0x1381: 0x0065, 0x1382: 0x0067, 0x1383: 0x0069, 0x1384: 0x006b, 0x1385: 0x006d,\n\t0x1386: 0x006f, 0x1387: 0x0071, 0x1388: 0x0073, 0x1389: 0x0075, 0x138a: 0x0083, 0x138b: 0x0085,\n\t0x138c: 0x0087, 0x138d: 0x0089, 0x138e: 0x008b, 0x138f: 0x008d, 0x1390: 0x008f, 0x1391: 0x0091,\n\t0x1392: 0x0093, 0x1393: 0x0095, 0x1394: 0x0097, 0x1395: 0x0099, 0x1396: 0x009b, 0x1397: 0x009d,\n\t0x1398: 0x009f, 0x1399: 0x00a1, 0x139a: 0x00a3, 0x139b: 0x00a5, 0x139c: 0x00a7, 0x139d: 0x00a9,\n\t0x139e: 0x00ab, 0x139f: 0x00ad, 0x13a0: 0x00af, 0x13a1: 0x00b1, 0x13a2: 0x00b3, 0x13a3: 0x00b5,\n\t0x13a4: 0x00dd, 0x13a5: 0x00f2, 0x13a8: 0x0173, 0x13a9: 0x0176,\n\t0x13aa: 0x0179, 0x13ab: 0x017c, 0x13ac: 0x017f, 0x13ad: 0x0182, 0x13ae: 0x0185, 0x13af: 0x0188,\n\t0x13b0: 0x018b, 0x13b1: 0x018e, 0x13b2: 0x0191, 0x13b3: 0x0194, 0x13b4: 0x0197, 0x13b5: 0x019a,\n\t0x13b6: 0x019d, 0x13b7: 0x01a0, 0x13b8: 0x01a3, 0x13b9: 0x0188, 0x13ba: 0x01a6, 0x13bb: 0x01a9,\n\t0x13bc: 0x01ac, 0x13bd: 0x01af, 0x13be: 0x01b2, 0x13bf: 0x01b5,\n\t// Block 0x4f, offset 0x13c0\n\t0x13c0: 0x01fd, 0x13c1: 0x0200, 0x13c2: 0x0203, 0x13c3: 0x045b, 0x13c4: 0x01c7, 0x13c5: 0x01d0,\n\t0x13c6: 0x01d6, 0x13c7: 0x01fa, 0x13c8: 0x01eb, 0x13c9: 0x01e8, 0x13ca: 0x0206, 0x13cb: 0x0209,\n\t0x13ce: 0x0021, 0x13cf: 0x0023, 0x13d0: 0x0025, 0x13d1: 0x0027,\n\t0x13d2: 0x0029, 0x13d3: 0x002b, 0x13d4: 0x002d, 0x13d5: 0x002f, 0x13d6: 0x0031, 0x13d7: 0x0033,\n\t0x13d8: 0x0021, 0x13d9: 0x0023, 0x13da: 0x0025, 0x13db: 0x0027, 0x13dc: 0x0029, 0x13dd: 0x002b,\n\t0x13de: 0x002d, 0x13df: 0x002f, 0x13e0: 0x0031, 0x13e1: 0x0033, 0x13e2: 0x0021, 0x13e3: 0x0023,\n\t0x13e4: 0x0025, 0x13e5: 0x0027, 0x13e6: 0x0029, 0x13e7: 0x002b, 0x13e8: 0x002d, 0x13e9: 0x002f,\n\t0x13ea: 0x0031, 0x13eb: 0x0033, 0x13ec: 0x0021, 0x13ed: 0x0023, 0x13ee: 0x0025, 0x13ef: 0x0027,\n\t0x13f0: 0x0029, 0x13f1: 0x002b, 0x13f2: 0x002d, 0x13f3: 0x002f, 0x13f4: 0x0031, 0x13f5: 0x0033,\n\t0x13f6: 0x0021, 0x13f7: 0x0023, 0x13f8: 0x0025, 0x13f9: 0x0027, 0x13fa: 0x0029, 0x13fb: 0x002b,\n\t0x13fc: 0x002d, 0x13fd: 0x002f, 0x13fe: 0x0031, 0x13ff: 0x0033,\n\t// Block 0x50, offset 0x1400\n\t0x1400: 0x0239, 0x1401: 0x023c, 0x1402: 0x0248, 0x1403: 0x0251, 0x1405: 0x028a,\n\t0x1406: 0x025a, 0x1407: 0x024b, 0x1408: 0x0269, 0x1409: 0x0290, 0x140a: 0x027b, 0x140b: 0x027e,\n\t0x140c: 0x0281, 0x140d: 0x0284, 0x140e: 0x025d, 0x140f: 0x026f, 0x1410: 0x0275, 0x1411: 0x0263,\n\t0x1412: 0x0278, 0x1413: 0x0257, 0x1414: 0x0260, 0x1415: 0x0242, 0x1416: 0x0245, 0x1417: 0x024e,\n\t0x1418: 0x0254, 0x1419: 0x0266, 0x141a: 0x026c, 0x141b: 0x0272, 0x141c: 0x0293, 0x141d: 0x02e4,\n\t0x141e: 0x02cc, 0x141f: 0x0296, 0x1421: 0x023c, 0x1422: 0x0248,\n\t0x1424: 0x0287, 0x1427: 0x024b, 0x1429: 0x0290,\n\t0x142a: 0x027b, 0x142b: 0x027e, 0x142c: 0x0281, 0x142d: 0x0284, 0x142e: 0x025d, 0x142f: 0x026f,\n\t0x1430: 0x0275, 0x1431: 0x0263, 0x1432: 0x0278, 0x1434: 0x0260, 0x1435: 0x0242,\n\t0x1436: 0x0245, 0x1437: 0x024e, 0x1439: 0x0266, 0x143b: 0x0272,\n\t// Block 0x51, offset 0x1440\n\t0x1442: 0x0248,\n\t0x1447: 0x024b, 0x1449: 0x0290, 0x144b: 0x027e,\n\t0x144d: 0x0284, 0x144e: 0x025d, 0x144f: 0x026f, 0x1451: 0x0263,\n\t0x1452: 0x0278, 0x1454: 0x0260, 0x1457: 0x024e,\n\t0x1459: 0x0266, 0x145b: 0x0272, 0x145d: 0x02e4,\n\t0x145f: 0x0296, 0x1461: 0x023c, 0x1462: 0x0248,\n\t0x1464: 0x0287, 0x1467: 0x024b, 0x1468: 0x0269, 0x1469: 0x0290,\n\t0x146a: 0x027b, 0x146c: 0x0281, 0x146d: 0x0284, 0x146e: 0x025d, 0x146f: 0x026f,\n\t0x1470: 0x0275, 0x1471: 0x0263, 0x1472: 0x0278, 0x1474: 0x0260, 0x1475: 0x0242,\n\t0x1476: 0x0245, 0x1477: 0x024e, 0x1479: 0x0266, 0x147a: 0x026c, 0x147b: 0x0272,\n\t0x147c: 0x0293, 0x147e: 0x02cc,\n\t// Block 0x52, offset 0x1480\n\t0x1480: 0x0239, 0x1481: 0x023c, 0x1482: 0x0248, 0x1483: 0x0251, 0x1484: 0x0287, 0x1485: 0x028a,\n\t0x1486: 0x025a, 0x1487: 0x024b, 0x1488: 0x0269, 0x1489: 0x0290, 0x148b: 0x027e,\n\t0x148c: 0x0281, 0x148d: 0x0284, 0x148e: 0x025d, 0x148f: 0x026f, 0x1490: 0x0275, 0x1491: 0x0263,\n\t0x1492: 0x0278, 0x1493: 0x0257, 0x1494: 0x0260, 0x1495: 0x0242, 0x1496: 0x0245, 0x1497: 0x024e,\n\t0x1498: 0x0254, 0x1499: 0x0266, 0x149a: 0x026c, 0x149b: 0x0272,\n\t0x14a1: 0x023c, 0x14a2: 0x0248, 0x14a3: 0x0251,\n\t0x14a5: 0x028a, 0x14a6: 0x025a, 0x14a7: 0x024b, 0x14a8: 0x0269, 0x14a9: 0x0290,\n\t0x14ab: 0x027e, 0x14ac: 0x0281, 0x14ad: 0x0284, 0x14ae: 0x025d, 0x14af: 0x026f,\n\t0x14b0: 0x0275, 0x14b1: 0x0263, 0x14b2: 0x0278, 0x14b3: 0x0257, 0x14b4: 0x0260, 0x14b5: 0x0242,\n\t0x14b6: 0x0245, 0x14b7: 0x024e, 0x14b8: 0x0254, 0x14b9: 0x0266, 0x14ba: 0x026c, 0x14bb: 0x0272,\n\t// Block 0x53, offset 0x14c0\n\t0x14c0: 0x1879, 0x14c1: 0x1876, 0x14c2: 0x187c, 0x14c3: 0x18a0, 0x14c4: 0x18c4, 0x14c5: 0x18e8,\n\t0x14c6: 0x190c, 0x14c7: 0x1915, 0x14c8: 0x191b, 0x14c9: 0x1921, 0x14ca: 0x1927,\n\t0x14d0: 0x1a8c, 0x14d1: 0x1a90,\n\t0x14d2: 0x1a94, 0x14d3: 0x1a98, 0x14d4: 0x1a9c, 0x14d5: 0x1aa0, 0x14d6: 0x1aa4, 0x14d7: 0x1aa8,\n\t0x14d8: 0x1aac, 0x14d9: 0x1ab0, 0x14da: 0x1ab4, 0x14db: 0x1ab8, 0x14dc: 0x1abc, 0x14dd: 0x1ac0,\n\t0x14de: 0x1ac4, 0x14df: 0x1ac8, 0x14e0: 0x1acc, 0x14e1: 0x1ad0, 0x14e2: 0x1ad4, 0x14e3: 0x1ad8,\n\t0x14e4: 0x1adc, 0x14e5: 0x1ae0, 0x14e6: 0x1ae4, 0x14e7: 0x1ae8, 0x14e8: 0x1aec, 0x14e9: 0x1af0,\n\t0x14ea: 0x271e, 0x14eb: 0x0047, 0x14ec: 0x0065, 0x14ed: 0x193c, 0x14ee: 0x19b1,\n\t0x14f0: 0x0043, 0x14f1: 0x0045, 0x14f2: 0x0047, 0x14f3: 0x0049, 0x14f4: 0x004b, 0x14f5: 0x004d,\n\t0x14f6: 0x004f, 0x14f7: 0x0051, 0x14f8: 0x0053, 0x14f9: 0x0055, 0x14fa: 0x0057, 0x14fb: 0x0059,\n\t0x14fc: 0x005b, 0x14fd: 0x005d, 0x14fe: 0x005f, 0x14ff: 0x0061,\n\t// Block 0x54, offset 0x1500\n\t0x1500: 0x26ad, 0x1501: 0x26c2, 0x1502: 0x0503,\n\t0x1510: 0x0c0f, 0x1511: 0x0a47,\n\t0x1512: 0x08d3, 0x1513: 0x45c4, 0x1514: 0x071b, 0x1515: 0x09ef, 0x1516: 0x132f, 0x1517: 0x09ff,\n\t0x1518: 0x0727, 0x1519: 0x0cd7, 0x151a: 0x0eaf, 0x151b: 0x0caf, 0x151c: 0x0827, 0x151d: 0x0b6b,\n\t0x151e: 0x07bf, 0x151f: 0x0cb7, 0x1520: 0x0813, 0x1521: 0x1117, 0x1522: 0x0f83, 0x1523: 0x138b,\n\t0x1524: 0x09d3, 0x1525: 0x090b, 0x1526: 0x0e63, 0x1527: 0x0c1b, 0x1528: 0x0c47, 0x1529: 0x06bf,\n\t0x152a: 0x06cb, 0x152b: 0x140b, 0x152c: 0x0adb, 0x152d: 0x06e7, 0x152e: 0x08ef, 0x152f: 0x0c3b,\n\t0x1530: 0x13b3, 0x1531: 0x0c13, 0x1532: 0x106f, 0x1533: 0x10ab, 0x1534: 0x08f7, 0x1535: 0x0e43,\n\t0x1536: 0x0d0b, 0x1537: 0x0d07, 0x1538: 0x0f97, 0x1539: 0x082b, 0x153a: 0x0957, 0x153b: 0x1443,\n\t// Block 0x55, offset 0x1540\n\t0x1540: 0x06fb, 0x1541: 0x06f3, 0x1542: 0x0703, 0x1543: 0x1647, 0x1544: 0x0747, 0x1545: 0x0757,\n\t0x1546: 0x075b, 0x1547: 0x0763, 0x1548: 0x076b, 0x1549: 0x076f, 0x154a: 0x077b, 0x154b: 0x0773,\n\t0x154c: 0x05b3, 0x154d: 0x165b, 0x154e: 0x078f, 0x154f: 0x0793, 0x1550: 0x0797, 0x1551: 0x07b3,\n\t0x1552: 0x164c, 0x1553: 0x05b7, 0x1554: 0x079f, 0x1555: 0x07bf, 0x1556: 0x1656, 0x1557: 0x07cf,\n\t0x1558: 0x07d7, 0x1559: 0x0737, 0x155a: 0x07df, 0x155b: 0x07e3, 0x155c: 0x1831, 0x155d: 0x07ff,\n\t0x155e: 0x0807, 0x155f: 0x05bf, 0x1560: 0x081f, 0x1561: 0x0823, 0x1562: 0x082b, 0x1563: 0x082f,\n\t0x1564: 0x05c3, 0x1565: 0x0847, 0x1566: 0x084b, 0x1567: 0x0857, 0x1568: 0x0863, 0x1569: 0x0867,\n\t0x156a: 0x086b, 0x156b: 0x0873, 0x156c: 0x0893, 0x156d: 0x0897, 0x156e: 0x089f, 0x156f: 0x08af,\n\t0x1570: 0x08b7, 0x1571: 0x08bb, 0x1572: 0x08bb, 0x1573: 0x08bb, 0x1574: 0x166a, 0x1575: 0x0e93,\n\t0x1576: 0x08cf, 0x1577: 0x08d7, 0x1578: 0x166f, 0x1579: 0x08e3, 0x157a: 0x08eb, 0x157b: 0x08f3,\n\t0x157c: 0x091b, 0x157d: 0x0907, 0x157e: 0x0913, 0x157f: 0x0917,\n\t// Block 0x56, offset 0x1580\n\t0x1580: 0x091f, 0x1581: 0x0927, 0x1582: 0x092b, 0x1583: 0x0933, 0x1584: 0x093b, 0x1585: 0x093f,\n\t0x1586: 0x093f, 0x1587: 0x0947, 0x1588: 0x094f, 0x1589: 0x0953, 0x158a: 0x095f, 0x158b: 0x0983,\n\t0x158c: 0x0967, 0x158d: 0x0987, 0x158e: 0x096b, 0x158f: 0x0973, 0x1590: 0x080b, 0x1591: 0x09cf,\n\t0x1592: 0x0997, 0x1593: 0x099b, 0x1594: 0x099f, 0x1595: 0x0993, 0x1596: 0x09a7, 0x1597: 0x09a3,\n\t0x1598: 0x09bb, 0x1599: 0x1674, 0x159a: 0x09d7, 0x159b: 0x09db, 0x159c: 0x09e3, 0x159d: 0x09ef,\n\t0x159e: 0x09f7, 0x159f: 0x0a13, 0x15a0: 0x1679, 0x15a1: 0x167e, 0x15a2: 0x0a1f, 0x15a3: 0x0a23,\n\t0x15a4: 0x0a27, 0x15a5: 0x0a1b, 0x15a6: 0x0a2f, 0x15a7: 0x05c7, 0x15a8: 0x05cb, 0x15a9: 0x0a37,\n\t0x15aa: 0x0a3f, 0x15ab: 0x0a3f, 0x15ac: 0x1683, 0x15ad: 0x0a5b, 0x15ae: 0x0a5f, 0x15af: 0x0a63,\n\t0x15b0: 0x0a6b, 0x15b1: 0x1688, 0x15b2: 0x0a73, 0x15b3: 0x0a77, 0x15b4: 0x0b4f, 0x15b5: 0x0a7f,\n\t0x15b6: 0x05cf, 0x15b7: 0x0a8b, 0x15b8: 0x0a9b, 0x15b9: 0x0aa7, 0x15ba: 0x0aa3, 0x15bb: 0x1692,\n\t0x15bc: 0x0aaf, 0x15bd: 0x1697, 0x15be: 0x0abb, 0x15bf: 0x0ab7,\n\t// Block 0x57, offset 0x15c0\n\t0x15c0: 0x0abf, 0x15c1: 0x0acf, 0x15c2: 0x0ad3, 0x15c3: 0x05d3, 0x15c4: 0x0ae3, 0x15c5: 0x0aeb,\n\t0x15c6: 0x0aef, 0x15c7: 0x0af3, 0x15c8: 0x05d7, 0x15c9: 0x169c, 0x15ca: 0x05db, 0x15cb: 0x0b0f,\n\t0x15cc: 0x0b13, 0x15cd: 0x0b17, 0x15ce: 0x0b1f, 0x15cf: 0x1863, 0x15d0: 0x0b37, 0x15d1: 0x16a6,\n\t0x15d2: 0x16a6, 0x15d3: 0x11d7, 0x15d4: 0x0b47, 0x15d5: 0x0b47, 0x15d6: 0x05df, 0x15d7: 0x16c9,\n\t0x15d8: 0x179b, 0x15d9: 0x0b57, 0x15da: 0x0b5f, 0x15db: 0x05e3, 0x15dc: 0x0b73, 0x15dd: 0x0b83,\n\t0x15de: 0x0b87, 0x15df: 0x0b8f, 0x15e0: 0x0b9f, 0x15e1: 0x05eb, 0x15e2: 0x05e7, 0x15e3: 0x0ba3,\n\t0x15e4: 0x16ab, 0x15e5: 0x0ba7, 0x15e6: 0x0bbb, 0x15e7: 0x0bbf, 0x15e8: 0x0bc3, 0x15e9: 0x0bbf,\n\t0x15ea: 0x0bcf, 0x15eb: 0x0bd3, 0x15ec: 0x0be3, 0x15ed: 0x0bdb, 0x15ee: 0x0bdf, 0x15ef: 0x0be7,\n\t0x15f0: 0x0beb, 0x15f1: 0x0bef, 0x15f2: 0x0bfb, 0x15f3: 0x0bff, 0x15f4: 0x0c17, 0x15f5: 0x0c1f,\n\t0x15f6: 0x0c2f, 0x15f7: 0x0c43, 0x15f8: 0x16ba, 0x15f9: 0x0c3f, 0x15fa: 0x0c33, 0x15fb: 0x0c4b,\n\t0x15fc: 0x0c53, 0x15fd: 0x0c67, 0x15fe: 0x16bf, 0x15ff: 0x0c6f,\n\t// Block 0x58, offset 0x1600\n\t0x1600: 0x0c63, 0x1601: 0x0c5b, 0x1602: 0x05ef, 0x1603: 0x0c77, 0x1604: 0x0c7f, 0x1605: 0x0c87,\n\t0x1606: 0x0c7b, 0x1607: 0x05f3, 0x1608: 0x0c97, 0x1609: 0x0c9f, 0x160a: 0x16c4, 0x160b: 0x0ccb,\n\t0x160c: 0x0cff, 0x160d: 0x0cdb, 0x160e: 0x05ff, 0x160f: 0x0ce7, 0x1610: 0x05fb, 0x1611: 0x05f7,\n\t0x1612: 0x07c3, 0x1613: 0x07c7, 0x1614: 0x0d03, 0x1615: 0x0ceb, 0x1616: 0x11ab, 0x1617: 0x0663,\n\t0x1618: 0x0d0f, 0x1619: 0x0d13, 0x161a: 0x0d17, 0x161b: 0x0d2b, 0x161c: 0x0d23, 0x161d: 0x16dd,\n\t0x161e: 0x0603, 0x161f: 0x0d3f, 0x1620: 0x0d33, 0x1621: 0x0d4f, 0x1622: 0x0d57, 0x1623: 0x16e7,\n\t0x1624: 0x0d5b, 0x1625: 0x0d47, 0x1626: 0x0d63, 0x1627: 0x0607, 0x1628: 0x0d67, 0x1629: 0x0d6b,\n\t0x162a: 0x0d6f, 0x162b: 0x0d7b, 0x162c: 0x16ec, 0x162d: 0x0d83, 0x162e: 0x060b, 0x162f: 0x0d8f,\n\t0x1630: 0x16f1, 0x1631: 0x0d93, 0x1632: 0x060f, 0x1633: 0x0d9f, 0x1634: 0x0dab, 0x1635: 0x0db7,\n\t0x1636: 0x0dbb, 0x1637: 0x16f6, 0x1638: 0x168d, 0x1639: 0x16fb, 0x163a: 0x0ddb, 0x163b: 0x1700,\n\t0x163c: 0x0de7, 0x163d: 0x0def, 0x163e: 0x0ddf, 0x163f: 0x0dfb,\n\t// Block 0x59, offset 0x1640\n\t0x1640: 0x0e0b, 0x1641: 0x0e1b, 0x1642: 0x0e0f, 0x1643: 0x0e13, 0x1644: 0x0e1f, 0x1645: 0x0e23,\n\t0x1646: 0x1705, 0x1647: 0x0e07, 0x1648: 0x0e3b, 0x1649: 0x0e3f, 0x164a: 0x0613, 0x164b: 0x0e53,\n\t0x164c: 0x0e4f, 0x164d: 0x170a, 0x164e: 0x0e33, 0x164f: 0x0e6f, 0x1650: 0x170f, 0x1651: 0x1714,\n\t0x1652: 0x0e73, 0x1653: 0x0e87, 0x1654: 0x0e83, 0x1655: 0x0e7f, 0x1656: 0x0617, 0x1657: 0x0e8b,\n\t0x1658: 0x0e9b, 0x1659: 0x0e97, 0x165a: 0x0ea3, 0x165b: 0x1651, 0x165c: 0x0eb3, 0x165d: 0x1719,\n\t0x165e: 0x0ebf, 0x165f: 0x1723, 0x1660: 0x0ed3, 0x1661: 0x0edf, 0x1662: 0x0ef3, 0x1663: 0x1728,\n\t0x1664: 0x0f07, 0x1665: 0x0f0b, 0x1666: 0x172d, 0x1667: 0x1732, 0x1668: 0x0f27, 0x1669: 0x0f37,\n\t0x166a: 0x061b, 0x166b: 0x0f3b, 0x166c: 0x061f, 0x166d: 0x061f, 0x166e: 0x0f53, 0x166f: 0x0f57,\n\t0x1670: 0x0f5f, 0x1671: 0x0f63, 0x1672: 0x0f6f, 0x1673: 0x0623, 0x1674: 0x0f87, 0x1675: 0x1737,\n\t0x1676: 0x0fa3, 0x1677: 0x173c, 0x1678: 0x0faf, 0x1679: 0x16a1, 0x167a: 0x0fbf, 0x167b: 0x1741,\n\t0x167c: 0x1746, 0x167d: 0x174b, 0x167e: 0x0627, 0x167f: 0x062b,\n\t// Block 0x5a, offset 0x1680\n\t0x1680: 0x0ff7, 0x1681: 0x1755, 0x1682: 0x1750, 0x1683: 0x175a, 0x1684: 0x175f, 0x1685: 0x0fff,\n\t0x1686: 0x1003, 0x1687: 0x1003, 0x1688: 0x100b, 0x1689: 0x0633, 0x168a: 0x100f, 0x168b: 0x0637,\n\t0x168c: 0x063b, 0x168d: 0x1769, 0x168e: 0x1023, 0x168f: 0x102b, 0x1690: 0x1037, 0x1691: 0x063f,\n\t0x1692: 0x176e, 0x1693: 0x105b, 0x1694: 0x1773, 0x1695: 0x1778, 0x1696: 0x107b, 0x1697: 0x1093,\n\t0x1698: 0x0643, 0x1699: 0x109b, 0x169a: 0x109f, 0x169b: 0x10a3, 0x169c: 0x177d, 0x169d: 0x1782,\n\t0x169e: 0x1782, 0x169f: 0x10bb, 0x16a0: 0x0647, 0x16a1: 0x1787, 0x16a2: 0x10cf, 0x16a3: 0x10d3,\n\t0x16a4: 0x064b, 0x16a5: 0x178c, 0x16a6: 0x10ef, 0x16a7: 0x064f, 0x16a8: 0x10ff, 0x16a9: 0x10f7,\n\t0x16aa: 0x1107, 0x16ab: 0x1796, 0x16ac: 0x111f, 0x16ad: 0x0653, 0x16ae: 0x112b, 0x16af: 0x1133,\n\t0x16b0: 0x1143, 0x16b1: 0x0657, 0x16b2: 0x17a0, 0x16b3: 0x17a5, 0x16b4: 0x065b, 0x16b5: 0x17aa,\n\t0x16b6: 0x115b, 0x16b7: 0x17af, 0x16b8: 0x1167, 0x16b9: 0x1173, 0x16ba: 0x117b, 0x16bb: 0x17b4,\n\t0x16bc: 0x17b9, 0x16bd: 0x118f, 0x16be: 0x17be, 0x16bf: 0x1197,\n\t// Block 0x5b, offset 0x16c0\n\t0x16c0: 0x16ce, 0x16c1: 0x065f, 0x16c2: 0x11af, 0x16c3: 0x11b3, 0x16c4: 0x0667, 0x16c5: 0x11b7,\n\t0x16c6: 0x0a33, 0x16c7: 0x17c3, 0x16c8: 0x17c8, 0x16c9: 0x16d3, 0x16ca: 0x16d8, 0x16cb: 0x11d7,\n\t0x16cc: 0x11db, 0x16cd: 0x13f3, 0x16ce: 0x066b, 0x16cf: 0x1207, 0x16d0: 0x1203, 0x16d1: 0x120b,\n\t0x16d2: 0x083f, 0x16d3: 0x120f, 0x16d4: 0x1213, 0x16d5: 0x1217, 0x16d6: 0x121f, 0x16d7: 0x17cd,\n\t0x16d8: 0x121b, 0x16d9: 0x1223, 0x16da: 0x1237, 0x16db: 0x123b, 0x16dc: 0x1227, 0x16dd: 0x123f,\n\t0x16de: 0x1253, 0x16df: 0x1267, 0x16e0: 0x1233, 0x16e1: 0x1247, 0x16e2: 0x124b, 0x16e3: 0x124f,\n\t0x16e4: 0x17d2, 0x16e5: 0x17dc, 0x16e6: 0x17d7, 0x16e7: 0x066f, 0x16e8: 0x126f, 0x16e9: 0x1273,\n\t0x16ea: 0x127b, 0x16eb: 0x17f0, 0x16ec: 0x127f, 0x16ed: 0x17e1, 0x16ee: 0x0673, 0x16ef: 0x0677,\n\t0x16f0: 0x17e6, 0x16f1: 0x17eb, 0x16f2: 0x067b, 0x16f3: 0x129f, 0x16f4: 0x12a3, 0x16f5: 0x12a7,\n\t0x16f6: 0x12ab, 0x16f7: 0x12b7, 0x16f8: 0x12b3, 0x16f9: 0x12bf, 0x16fa: 0x12bb, 0x16fb: 0x12cb,\n\t0x16fc: 0x12c3, 0x16fd: 0x12c7, 0x16fe: 0x12cf, 0x16ff: 0x067f,\n\t// Block 0x5c, offset 0x1700\n\t0x1700: 0x12d7, 0x1701: 0x12db, 0x1702: 0x0683, 0x1703: 0x12eb, 0x1704: 0x12ef, 0x1705: 0x17f5,\n\t0x1706: 0x12fb, 0x1707: 0x12ff, 0x1708: 0x0687, 0x1709: 0x130b, 0x170a: 0x05bb, 0x170b: 0x17fa,\n\t0x170c: 0x17ff, 0x170d: 0x068b, 0x170e: 0x068f, 0x170f: 0x1337, 0x1710: 0x134f, 0x1711: 0x136b,\n\t0x1712: 0x137b, 0x1713: 0x1804, 0x1714: 0x138f, 0x1715: 0x1393, 0x1716: 0x13ab, 0x1717: 0x13b7,\n\t0x1718: 0x180e, 0x1719: 0x1660, 0x171a: 0x13c3, 0x171b: 0x13bf, 0x171c: 0x13cb, 0x171d: 0x1665,\n\t0x171e: 0x13d7, 0x171f: 0x13e3, 0x1720: 0x1813, 0x1721: 0x1818, 0x1722: 0x1423, 0x1723: 0x142f,\n\t0x1724: 0x1437, 0x1725: 0x181d, 0x1726: 0x143b, 0x1727: 0x1467, 0x1728: 0x1473, 0x1729: 0x1477,\n\t0x172a: 0x146f, 0x172b: 0x1483, 0x172c: 0x1487, 0x172d: 0x1822, 0x172e: 0x1493, 0x172f: 0x0693,\n\t0x1730: 0x149b, 0x1731: 0x1827, 0x1732: 0x0697, 0x1733: 0x14d3, 0x1734: 0x0ac3, 0x1735: 0x14eb,\n\t0x1736: 0x182c, 0x1737: 0x1836, 0x1738: 0x069b, 0x1739: 0x069f, 0x173a: 0x1513, 0x173b: 0x183b,\n\t0x173c: 0x06a3, 0x173d: 0x1840, 0x173e: 0x152b, 0x173f: 0x152b,\n\t// Block 0x5d, offset 0x1740\n\t0x1740: 0x1533, 0x1741: 0x1845, 0x1742: 0x154b, 0x1743: 0x06a7, 0x1744: 0x155b, 0x1745: 0x1567,\n\t0x1746: 0x156f, 0x1747: 0x1577, 0x1748: 0x06ab, 0x1749: 0x184a, 0x174a: 0x158b, 0x174b: 0x15a7,\n\t0x174c: 0x15b3, 0x174d: 0x06af, 0x174e: 0x06b3, 0x174f: 0x15b7, 0x1750: 0x184f, 0x1751: 0x06b7,\n\t0x1752: 0x1854, 0x1753: 0x1859, 0x1754: 0x185e, 0x1755: 0x15db, 0x1756: 0x06bb, 0x1757: 0x15ef,\n\t0x1758: 0x15f7, 0x1759: 0x15fb, 0x175a: 0x1603, 0x175b: 0x160b, 0x175c: 0x1613, 0x175d: 0x1868,\n}\n\n// nfkcIndex: 22 blocks, 1408 entries, 1408 bytes\n// Block 0 is the zero block.\nvar nfkcIndex = [1408]uint8{\n\t// Block 0x0, offset 0x0\n\t// Block 0x1, offset 0x40\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc2: 0x5c, 0xc3: 0x01, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x5d, 0xc7: 0x04,\n\t0xc8: 0x05, 0xca: 0x5e, 0xcb: 0x5f, 0xcc: 0x06, 0xcd: 0x07, 0xce: 0x08, 0xcf: 0x09,\n\t0xd0: 0x0a, 0xd1: 0x60, 0xd2: 0x61, 0xd3: 0x0b, 0xd6: 0x0c, 0xd7: 0x62,\n\t0xd8: 0x63, 0xd9: 0x0d, 0xdb: 0x64, 0xdc: 0x65, 0xdd: 0x66, 0xdf: 0x67,\n\t0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05,\n\t0xea: 0x06, 0xeb: 0x07, 0xec: 0x08, 0xed: 0x09, 0xef: 0x0a,\n\t0xf0: 0x13,\n\t// Block 0x4, offset 0x100\n\t0x120: 0x68, 0x121: 0x69, 0x123: 0x0e, 0x124: 0x6a, 0x125: 0x6b, 0x126: 0x6c, 0x127: 0x6d,\n\t0x128: 0x6e, 0x129: 0x6f, 0x12a: 0x70, 0x12b: 0x71, 0x12c: 0x6c, 0x12d: 0x72, 0x12e: 0x73, 0x12f: 0x74,\n\t0x131: 0x75, 0x132: 0x76, 0x133: 0x77, 0x134: 0x78, 0x135: 0x79, 0x137: 0x7a,\n\t0x138: 0x7b, 0x139: 0x7c, 0x13a: 0x7d, 0x13b: 0x7e, 0x13c: 0x7f, 0x13d: 0x80, 0x13e: 0x81, 0x13f: 0x82,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x83, 0x142: 0x84, 0x143: 0x85, 0x144: 0x86, 0x145: 0x87, 0x146: 0x88, 0x147: 0x89,\n\t0x14d: 0x8a,\n\t0x15c: 0x8b, 0x15f: 0x8c,\n\t0x162: 0x8d, 0x164: 0x8e,\n\t0x168: 0x8f, 0x169: 0x90, 0x16a: 0x91, 0x16c: 0x0f, 0x16d: 0x92, 0x16e: 0x93, 0x16f: 0x94,\n\t0x170: 0x95, 0x173: 0x96, 0x174: 0x97, 0x175: 0x10, 0x176: 0x11, 0x177: 0x12,\n\t0x178: 0x13, 0x179: 0x14, 0x17a: 0x15, 0x17b: 0x16, 0x17c: 0x17, 0x17d: 0x18, 0x17e: 0x19, 0x17f: 0x1a,\n\t// Block 0x6, offset 0x180\n\t0x180: 0x98, 0x181: 0x99, 0x182: 0x9a, 0x183: 0x9b, 0x184: 0x1b, 0x185: 0x1c, 0x186: 0x9c, 0x187: 0x9d,\n\t0x188: 0x9e, 0x189: 0x1d, 0x18a: 0x1e, 0x18b: 0x9f, 0x18c: 0xa0,\n\t0x191: 0x1f, 0x192: 0x20, 0x193: 0xa1,\n\t0x1a8: 0xa2, 0x1a9: 0xa3, 0x1ab: 0xa4,\n\t0x1b1: 0xa5, 0x1b3: 0xa6, 0x1b5: 0xa7, 0x1b7: 0xa8,\n\t0x1ba: 0xa9, 0x1bb: 0xaa, 0x1bc: 0x21, 0x1bd: 0x22, 0x1be: 0x23, 0x1bf: 0xab,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0xac, 0x1c1: 0x24, 0x1c2: 0x25, 0x1c3: 0x26, 0x1c4: 0xad, 0x1c5: 0x27, 0x1c6: 0x28,\n\t0x1c8: 0x29, 0x1c9: 0x2a, 0x1ca: 0x2b, 0x1cb: 0x2c, 0x1cc: 0x2d, 0x1cd: 0x2e, 0x1ce: 0x2f, 0x1cf: 0x30,\n\t// Block 0x8, offset 0x200\n\t0x219: 0xae, 0x21a: 0xaf, 0x21b: 0xb0, 0x21d: 0xb1, 0x21f: 0xb2,\n\t0x220: 0xb3, 0x223: 0xb4, 0x224: 0xb5, 0x225: 0xb6, 0x226: 0xb7, 0x227: 0xb8,\n\t0x22a: 0xb9, 0x22b: 0xba, 0x22d: 0xbb, 0x22f: 0xbc,\n\t0x230: 0xbd, 0x231: 0xbe, 0x232: 0xbf, 0x233: 0xc0, 0x234: 0xc1, 0x235: 0xc2, 0x236: 0xc3, 0x237: 0xbd,\n\t0x238: 0xbe, 0x239: 0xbf, 0x23a: 0xc0, 0x23b: 0xc1, 0x23c: 0xc2, 0x23d: 0xc3, 0x23e: 0xbd, 0x23f: 0xbe,\n\t// Block 0x9, offset 0x240\n\t0x240: 0xbf, 0x241: 0xc0, 0x242: 0xc1, 0x243: 0xc2, 0x244: 0xc3, 0x245: 0xbd, 0x246: 0xbe, 0x247: 0xbf,\n\t0x248: 0xc0, 0x249: 0xc1, 0x24a: 0xc2, 0x24b: 0xc3, 0x24c: 0xbd, 0x24d: 0xbe, 0x24e: 0xbf, 0x24f: 0xc0,\n\t0x250: 0xc1, 0x251: 0xc2, 0x252: 0xc3, 0x253: 0xbd, 0x254: 0xbe, 0x255: 0xbf, 0x256: 0xc0, 0x257: 0xc1,\n\t0x258: 0xc2, 0x259: 0xc3, 0x25a: 0xbd, 0x25b: 0xbe, 0x25c: 0xbf, 0x25d: 0xc0, 0x25e: 0xc1, 0x25f: 0xc2,\n\t0x260: 0xc3, 0x261: 0xbd, 0x262: 0xbe, 0x263: 0xbf, 0x264: 0xc0, 0x265: 0xc1, 0x266: 0xc2, 0x267: 0xc3,\n\t0x268: 0xbd, 0x269: 0xbe, 0x26a: 0xbf, 0x26b: 0xc0, 0x26c: 0xc1, 0x26d: 0xc2, 0x26e: 0xc3, 0x26f: 0xbd,\n\t0x270: 0xbe, 0x271: 0xbf, 0x272: 0xc0, 0x273: 0xc1, 0x274: 0xc2, 0x275: 0xc3, 0x276: 0xbd, 0x277: 0xbe,\n\t0x278: 0xbf, 0x279: 0xc0, 0x27a: 0xc1, 0x27b: 0xc2, 0x27c: 0xc3, 0x27d: 0xbd, 0x27e: 0xbe, 0x27f: 0xbf,\n\t// Block 0xa, offset 0x280\n\t0x280: 0xc0, 0x281: 0xc1, 0x282: 0xc2, 0x283: 0xc3, 0x284: 0xbd, 0x285: 0xbe, 0x286: 0xbf, 0x287: 0xc0,\n\t0x288: 0xc1, 0x289: 0xc2, 0x28a: 0xc3, 0x28b: 0xbd, 0x28c: 0xbe, 0x28d: 0xbf, 0x28e: 0xc0, 0x28f: 0xc1,\n\t0x290: 0xc2, 0x291: 0xc3, 0x292: 0xbd, 0x293: 0xbe, 0x294: 0xbf, 0x295: 0xc0, 0x296: 0xc1, 0x297: 0xc2,\n\t0x298: 0xc3, 0x299: 0xbd, 0x29a: 0xbe, 0x29b: 0xbf, 0x29c: 0xc0, 0x29d: 0xc1, 0x29e: 0xc2, 0x29f: 0xc3,\n\t0x2a0: 0xbd, 0x2a1: 0xbe, 0x2a2: 0xbf, 0x2a3: 0xc0, 0x2a4: 0xc1, 0x2a5: 0xc2, 0x2a6: 0xc3, 0x2a7: 0xbd,\n\t0x2a8: 0xbe, 0x2a9: 0xbf, 0x2aa: 0xc0, 0x2ab: 0xc1, 0x2ac: 0xc2, 0x2ad: 0xc3, 0x2ae: 0xbd, 0x2af: 0xbe,\n\t0x2b0: 0xbf, 0x2b1: 0xc0, 0x2b2: 0xc1, 0x2b3: 0xc2, 0x2b4: 0xc3, 0x2b5: 0xbd, 0x2b6: 0xbe, 0x2b7: 0xbf,\n\t0x2b8: 0xc0, 0x2b9: 0xc1, 0x2ba: 0xc2, 0x2bb: 0xc3, 0x2bc: 0xbd, 0x2bd: 0xbe, 0x2be: 0xbf, 0x2bf: 0xc0,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0xc1, 0x2c1: 0xc2, 0x2c2: 0xc3, 0x2c3: 0xbd, 0x2c4: 0xbe, 0x2c5: 0xbf, 0x2c6: 0xc0, 0x2c7: 0xc1,\n\t0x2c8: 0xc2, 0x2c9: 0xc3, 0x2ca: 0xbd, 0x2cb: 0xbe, 0x2cc: 0xbf, 0x2cd: 0xc0, 0x2ce: 0xc1, 0x2cf: 0xc2,\n\t0x2d0: 0xc3, 0x2d1: 0xbd, 0x2d2: 0xbe, 0x2d3: 0xbf, 0x2d4: 0xc0, 0x2d5: 0xc1, 0x2d6: 0xc2, 0x2d7: 0xc3,\n\t0x2d8: 0xbd, 0x2d9: 0xbe, 0x2da: 0xbf, 0x2db: 0xc0, 0x2dc: 0xc1, 0x2dd: 0xc2, 0x2de: 0xc4,\n\t// Block 0xc, offset 0x300\n\t0x324: 0x31, 0x325: 0x32, 0x326: 0x33, 0x327: 0x34,\n\t0x328: 0x35, 0x329: 0x36, 0x32a: 0x37, 0x32b: 0x38, 0x32c: 0x39, 0x32d: 0x3a, 0x32e: 0x3b, 0x32f: 0x3c,\n\t0x330: 0x3d, 0x331: 0x3e, 0x332: 0x3f, 0x333: 0x40, 0x334: 0x41, 0x335: 0x42, 0x336: 0x43, 0x337: 0x44,\n\t0x338: 0x45, 0x339: 0x46, 0x33a: 0x47, 0x33b: 0x48, 0x33c: 0xc5, 0x33d: 0x49, 0x33e: 0x4a, 0x33f: 0x4b,\n\t// Block 0xd, offset 0x340\n\t0x347: 0xc6,\n\t0x34b: 0xc7, 0x34d: 0xc8,\n\t0x368: 0xc9, 0x36b: 0xca,\n\t0x374: 0xcb,\n\t0x37d: 0xcc,\n\t// Block 0xe, offset 0x380\n\t0x381: 0xcd, 0x382: 0xce, 0x384: 0xcf, 0x385: 0xb7, 0x387: 0xd0,\n\t0x388: 0xd1, 0x38b: 0xd2, 0x38c: 0xd3, 0x38d: 0xd4,\n\t0x391: 0xd5, 0x392: 0xd6, 0x393: 0xd7, 0x396: 0xd8, 0x397: 0xd9,\n\t0x398: 0xda, 0x39a: 0xdb, 0x39c: 0xdc,\n\t0x3a0: 0xdd,\n\t0x3a8: 0xde, 0x3a9: 0xdf, 0x3aa: 0xe0,\n\t0x3b0: 0xda, 0x3b5: 0xe1, 0x3b6: 0xe2,\n\t// Block 0xf, offset 0x3c0\n\t0x3eb: 0xe3, 0x3ec: 0xe4,\n\t// Block 0x10, offset 0x400\n\t0x432: 0xe5,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xe6, 0x446: 0xe7, 0x447: 0xe8,\n\t0x449: 0xe9,\n\t0x450: 0xea, 0x451: 0xeb, 0x452: 0xec, 0x453: 0xed, 0x454: 0xee, 0x455: 0xef, 0x456: 0xf0, 0x457: 0xf1,\n\t0x458: 0xf2, 0x459: 0xf3, 0x45a: 0x4c, 0x45b: 0xf4, 0x45c: 0xf5, 0x45d: 0xf6, 0x45e: 0xf7, 0x45f: 0x4d,\n\t// Block 0x12, offset 0x480\n\t0x480: 0xf8,\n\t0x4a3: 0xf9, 0x4a5: 0xfa,\n\t0x4b8: 0x4e, 0x4b9: 0x4f, 0x4ba: 0x50,\n\t// Block 0x13, offset 0x4c0\n\t0x4c4: 0x51, 0x4c5: 0xfb, 0x4c6: 0xfc,\n\t0x4c8: 0x52, 0x4c9: 0xfd,\n\t// Block 0x14, offset 0x500\n\t0x520: 0x53, 0x521: 0x54, 0x522: 0x55, 0x523: 0x56, 0x524: 0x57, 0x525: 0x58, 0x526: 0x59, 0x527: 0x5a,\n\t0x528: 0x5b,\n\t// Block 0x15, offset 0x540\n\t0x550: 0x0b, 0x551: 0x0c, 0x556: 0x0d,\n\t0x55b: 0x0e, 0x55d: 0x0f, 0x55e: 0x10, 0x55f: 0x11,\n\t0x56f: 0x12,\n}\n\n// nfkcSparseOffset: 162 entries, 324 bytes\nvar nfkcSparseOffset = []uint16{0x0, 0xe, 0x12, 0x1b, 0x25, 0x35, 0x37, 0x3c, 0x47, 0x56, 0x63, 0x6b, 0x70, 0x75, 0x77, 0x7f, 0x86, 0x89, 0x91, 0x95, 0x99, 0x9b, 0x9d, 0xa6, 0xaa, 0xb1, 0xb6, 0xb9, 0xc3, 0xc6, 0xcd, 0xd5, 0xd9, 0xdb, 0xde, 0xe2, 0xe8, 0xf9, 0x105, 0x107, 0x10d, 0x10f, 0x111, 0x113, 0x115, 0x117, 0x119, 0x11b, 0x11e, 0x121, 0x123, 0x126, 0x129, 0x12d, 0x132, 0x13b, 0x13d, 0x140, 0x142, 0x14d, 0x158, 0x166, 0x174, 0x184, 0x192, 0x199, 0x19f, 0x1ae, 0x1b2, 0x1b4, 0x1b8, 0x1ba, 0x1bd, 0x1bf, 0x1c2, 0x1c4, 0x1c7, 0x1c9, 0x1cb, 0x1cd, 0x1d9, 0x1e3, 0x1ed, 0x1f0, 0x1f4, 0x1f6, 0x1f8, 0x1fa, 0x1fc, 0x1ff, 0x201, 0x203, 0x205, 0x207, 0x20d, 0x210, 0x214, 0x216, 0x21d, 0x223, 0x229, 0x231, 0x237, 0x23d, 0x243, 0x247, 0x249, 0x24b, 0x24d, 0x24f, 0x255, 0x258, 0x25a, 0x260, 0x263, 0x26b, 0x272, 0x275, 0x278, 0x27a, 0x27d, 0x285, 0x289, 0x290, 0x293, 0x299, 0x29b, 0x29d, 0x2a0, 0x2a2, 0x2a5, 0x2a7, 0x2a9, 0x2ab, 0x2ae, 0x2b0, 0x2b2, 0x2b4, 0x2b6, 0x2c3, 0x2cd, 0x2cf, 0x2d1, 0x2d5, 0x2da, 0x2e6, 0x2eb, 0x2f4, 0x2fa, 0x2ff, 0x303, 0x308, 0x30c, 0x31c, 0x32a, 0x338, 0x346, 0x34c, 0x34e, 0x351, 0x35b, 0x35d}\n\n// nfkcSparseValues: 871 entries, 3484 bytes\nvar nfkcSparseValues = [871]valueRange{\n\t// Block 0x0, offset 0x0\n\t{value: 0x0002, lo: 0x0d},\n\t{value: 0x0001, lo: 0xa0, hi: 0xa0},\n\t{value: 0x4278, lo: 0xa8, hi: 0xa8},\n\t{value: 0x0083, lo: 0xaa, hi: 0xaa},\n\t{value: 0x4264, lo: 0xaf, hi: 0xaf},\n\t{value: 0x0025, lo: 0xb2, hi: 0xb3},\n\t{value: 0x425a, lo: 0xb4, hi: 0xb4},\n\t{value: 0x01dc, lo: 0xb5, hi: 0xb5},\n\t{value: 0x4291, lo: 0xb8, hi: 0xb8},\n\t{value: 0x0023, lo: 0xb9, hi: 0xb9},\n\t{value: 0x009f, lo: 0xba, hi: 0xba},\n\t{value: 0x221c, lo: 0xbc, hi: 0xbc},\n\t{value: 0x2210, lo: 0xbd, hi: 0xbd},\n\t{value: 0x22b2, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1, offset 0xe\n\t{value: 0x0091, lo: 0x03},\n\t{value: 0x46e2, lo: 0xa0, hi: 0xa1},\n\t{value: 0x4714, lo: 0xaf, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb7, hi: 0xb7},\n\t// Block 0x2, offset 0x12\n\t{value: 0x0003, lo: 0x08},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x0091, lo: 0xb0, hi: 0xb0},\n\t{value: 0x0119, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0095, lo: 0xb2, hi: 0xb2},\n\t{value: 0x00a5, lo: 0xb3, hi: 0xb3},\n\t{value: 0x0143, lo: 0xb4, hi: 0xb6},\n\t{value: 0x00af, lo: 0xb7, hi: 0xb7},\n\t{value: 0x00b3, lo: 0xb8, hi: 0xb8},\n\t// Block 0x3, offset 0x1b\n\t{value: 0x000a, lo: 0x09},\n\t{value: 0x426e, lo: 0x98, hi: 0x98},\n\t{value: 0x4273, lo: 0x99, hi: 0x9a},\n\t{value: 0x4296, lo: 0x9b, hi: 0x9b},\n\t{value: 0x425f, lo: 0x9c, hi: 0x9c},\n\t{value: 0x4282, lo: 0x9d, hi: 0x9d},\n\t{value: 0x0113, lo: 0xa0, hi: 0xa0},\n\t{value: 0x0099, lo: 0xa1, hi: 0xa1},\n\t{value: 0x00a7, lo: 0xa2, hi: 0xa3},\n\t{value: 0x0167, lo: 0xa4, hi: 0xa4},\n\t// Block 0x4, offset 0x25\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0xa000, lo: 0x8d, hi: 0x8d},\n\t{value: 0x37a5, lo: 0x90, hi: 0x90},\n\t{value: 0x37b1, lo: 0x91, hi: 0x91},\n\t{value: 0x379f, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x96, hi: 0x96},\n\t{value: 0x3817, lo: 0x97, hi: 0x97},\n\t{value: 0x37e1, lo: 0x9c, hi: 0x9c},\n\t{value: 0x37c9, lo: 0x9d, hi: 0x9d},\n\t{value: 0x37f3, lo: 0x9e, hi: 0x9e},\n\t{value: 0xa000, lo: 0xb4, hi: 0xb5},\n\t{value: 0x381d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x3823, lo: 0xb7, hi: 0xb7},\n\t// Block 0x5, offset 0x35\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x83, hi: 0x87},\n\t// Block 0x6, offset 0x37\n\t{value: 0x0001, lo: 0x04},\n\t{value: 0x8113, lo: 0x81, hi: 0x82},\n\t{value: 0x8132, lo: 0x84, hi: 0x84},\n\t{value: 0x812d, lo: 0x85, hi: 0x85},\n\t{value: 0x810d, lo: 0x87, hi: 0x87},\n\t// Block 0x7, offset 0x3c\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x97},\n\t{value: 0x8119, lo: 0x98, hi: 0x98},\n\t{value: 0x811a, lo: 0x99, hi: 0x99},\n\t{value: 0x811b, lo: 0x9a, hi: 0x9a},\n\t{value: 0x3841, lo: 0xa2, hi: 0xa2},\n\t{value: 0x3847, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3853, lo: 0xa4, hi: 0xa4},\n\t{value: 0x384d, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3859, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xa7, hi: 0xa7},\n\t// Block 0x8, offset 0x47\n\t{value: 0x0000, lo: 0x0e},\n\t{value: 0x386b, lo: 0x80, hi: 0x80},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0x385f, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x3865, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x95, hi: 0x95},\n\t{value: 0x8132, lo: 0x96, hi: 0x9c},\n\t{value: 0x8132, lo: 0x9f, hi: 0xa2},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8132, lo: 0xab, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t// Block 0x9, offset 0x56\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x811f, lo: 0x91, hi: 0x91},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x812d, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb5, hi: 0xb6},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb9},\n\t{value: 0x8132, lo: 0xba, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbc},\n\t{value: 0x8132, lo: 0xbd, hi: 0xbd},\n\t{value: 0x812d, lo: 0xbe, hi: 0xbe},\n\t{value: 0x8132, lo: 0xbf, hi: 0xbf},\n\t// Block 0xa, offset 0x63\n\t{value: 0x0005, lo: 0x07},\n\t{value: 0x8132, lo: 0x80, hi: 0x80},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x83},\n\t{value: 0x812d, lo: 0x84, hi: 0x85},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x812d, lo: 0x88, hi: 0x89},\n\t{value: 0x8132, lo: 0x8a, hi: 0x8a},\n\t// Block 0xb, offset 0x6b\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xab, hi: 0xb1},\n\t{value: 0x812d, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb3},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0xc, offset 0x70\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0x96, hi: 0x99},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa7},\n\t{value: 0x8132, lo: 0xa9, hi: 0xad},\n\t// Block 0xd, offset 0x75\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x99, hi: 0x9b},\n\t// Block 0xe, offset 0x77\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0xa8, hi: 0xa8},\n\t{value: 0x3ed8, lo: 0xa9, hi: 0xa9},\n\t{value: 0xa000, lo: 0xb0, hi: 0xb0},\n\t{value: 0x3ee0, lo: 0xb1, hi: 0xb1},\n\t{value: 0xa000, lo: 0xb3, hi: 0xb3},\n\t{value: 0x3ee8, lo: 0xb4, hi: 0xb4},\n\t{value: 0x9902, lo: 0xbc, hi: 0xbc},\n\t// Block 0xf, offset 0x7f\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x91, hi: 0x91},\n\t{value: 0x812d, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x93, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x94},\n\t{value: 0x451c, lo: 0x98, hi: 0x9f},\n\t// Block 0x10, offset 0x86\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x11, offset 0x89\n\t{value: 0x0008, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2c9e, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x455c, lo: 0x9c, hi: 0x9d},\n\t{value: 0x456c, lo: 0x9f, hi: 0x9f},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbe},\n\t// Block 0x12, offset 0x91\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4594, lo: 0xb3, hi: 0xb3},\n\t{value: 0x459c, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x13, offset 0x95\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4574, lo: 0x99, hi: 0x9b},\n\t{value: 0x458c, lo: 0x9e, hi: 0x9e},\n\t// Block 0x14, offset 0x99\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x15, offset 0x9b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t// Block 0x16, offset 0x9d\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2cb6, lo: 0x88, hi: 0x88},\n\t{value: 0x2cae, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cbe, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x96, hi: 0x97},\n\t{value: 0x45a4, lo: 0x9c, hi: 0x9c},\n\t{value: 0x45ac, lo: 0x9d, hi: 0x9d},\n\t// Block 0x17, offset 0xa6\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x2cc6, lo: 0x94, hi: 0x94},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x18, offset 0xaa\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cce, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2cde, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cd6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x19, offset 0xb1\n\t{value: 0x1801, lo: 0x04},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x3ef0, lo: 0x88, hi: 0x88},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8120, lo: 0x95, hi: 0x96},\n\t// Block 0x1a, offset 0xb6\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0xa000, lo: 0xbf, hi: 0xbf},\n\t// Block 0x1b, offset 0xb9\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x2ce6, lo: 0x80, hi: 0x80},\n\t{value: 0x9900, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x2cee, lo: 0x87, hi: 0x87},\n\t{value: 0x2cf6, lo: 0x88, hi: 0x88},\n\t{value: 0x2f50, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2dd8, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x95, hi: 0x96},\n\t// Block 0x1c, offset 0xc3\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1d, offset 0xc6\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cfe, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2d0e, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d06, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1e, offset 0xcd\n\t{value: 0x6bea, lo: 0x07},\n\t{value: 0x9904, lo: 0x8a, hi: 0x8a},\n\t{value: 0x9900, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x3ef8, lo: 0x9a, hi: 0x9a},\n\t{value: 0x2f58, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2de3, lo: 0x9d, hi: 0x9d},\n\t{value: 0x2d16, lo: 0x9e, hi: 0x9f},\n\t// Block 0x1f, offset 0xd5\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x2621, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8122, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x20, offset 0xd9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8123, lo: 0x88, hi: 0x8b},\n\t// Block 0x21, offset 0xdb\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x2636, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8124, lo: 0xb8, hi: 0xb9},\n\t// Block 0x22, offset 0xde\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8125, lo: 0x88, hi: 0x8b},\n\t{value: 0x2628, lo: 0x9c, hi: 0x9c},\n\t{value: 0x262f, lo: 0x9d, hi: 0x9d},\n\t// Block 0x23, offset 0xe2\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x030b, lo: 0x8c, hi: 0x8c},\n\t{value: 0x812d, lo: 0x98, hi: 0x99},\n\t{value: 0x812d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb7},\n\t{value: 0x812b, lo: 0xb9, hi: 0xb9},\n\t// Block 0x24, offset 0xe8\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x2644, lo: 0x83, hi: 0x83},\n\t{value: 0x264b, lo: 0x8d, hi: 0x8d},\n\t{value: 0x2652, lo: 0x92, hi: 0x92},\n\t{value: 0x2659, lo: 0x97, hi: 0x97},\n\t{value: 0x2660, lo: 0x9c, hi: 0x9c},\n\t{value: 0x263d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8126, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8127, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a84, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8128, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a8d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x45b4, lo: 0xb6, hi: 0xb6},\n\t{value: 0x45f4, lo: 0xb7, hi: 0xb7},\n\t{value: 0x45bc, lo: 0xb8, hi: 0xb8},\n\t{value: 0x45ff, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8127, lo: 0xba, hi: 0xbd},\n\t// Block 0x25, offset 0xf9\n\t{value: 0x0000, lo: 0x0b},\n\t{value: 0x8127, lo: 0x80, hi: 0x80},\n\t{value: 0x4a96, lo: 0x81, hi: 0x81},\n\t{value: 0x8132, lo: 0x82, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0x86, hi: 0x87},\n\t{value: 0x266e, lo: 0x93, hi: 0x93},\n\t{value: 0x2675, lo: 0x9d, hi: 0x9d},\n\t{value: 0x267c, lo: 0xa2, hi: 0xa2},\n\t{value: 0x2683, lo: 0xa7, hi: 0xa7},\n\t{value: 0x268a, lo: 0xac, hi: 0xac},\n\t{value: 0x2667, lo: 0xb9, hi: 0xb9},\n\t// Block 0x26, offset 0x105\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x86, hi: 0x86},\n\t// Block 0x27, offset 0x107\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x2d1e, lo: 0xa6, hi: 0xa6},\n\t{value: 0x9900, lo: 0xae, hi: 0xae},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x28, offset 0x10d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t// Block 0x29, offset 0x10f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x030f, lo: 0xbc, hi: 0xbc},\n\t// Block 0x2a, offset 0x111\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x80, hi: 0x92},\n\t// Block 0x2b, offset 0x113\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xb900, lo: 0xa1, hi: 0xb5},\n\t// Block 0x2c, offset 0x115\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xa8, hi: 0xbf},\n\t// Block 0x2d, offset 0x117\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0x80, hi: 0x82},\n\t// Block 0x2e, offset 0x119\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9f},\n\t// Block 0x2f, offset 0x11b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x94, hi: 0x94},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x30, offset 0x11e\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9d},\n\t// Block 0x31, offset 0x121\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8131, lo: 0xa9, hi: 0xa9},\n\t// Block 0x32, offset 0x123\n\t{value: 0x0004, lo: 0x02},\n\t{value: 0x812e, lo: 0xb9, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbb},\n\t// Block 0x33, offset 0x126\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x97, hi: 0x97},\n\t{value: 0x812d, lo: 0x98, hi: 0x98},\n\t// Block 0x34, offset 0x129\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8132, lo: 0xb5, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x35, offset 0x12d\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t{value: 0x812d, lo: 0xb5, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x36, offset 0x132\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0x2d66, lo: 0x80, hi: 0x80},\n\t{value: 0x2d6e, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x82, hi: 0x82},\n\t{value: 0x2d76, lo: 0x83, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xab, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xac},\n\t{value: 0x8132, lo: 0xad, hi: 0xb3},\n\t// Block 0x37, offset 0x13b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xaa, hi: 0xab},\n\t// Block 0x38, offset 0x13d\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8104, lo: 0xb2, hi: 0xb3},\n\t// Block 0x39, offset 0x140\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x3a, offset 0x142\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x92},\n\t{value: 0x8101, lo: 0x94, hi: 0x94},\n\t{value: 0x812d, lo: 0x95, hi: 0x99},\n\t{value: 0x8132, lo: 0x9a, hi: 0x9b},\n\t{value: 0x812d, lo: 0x9c, hi: 0x9f},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8101, lo: 0xa2, hi: 0xa8},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t{value: 0x8132, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb9},\n\t// Block 0x3b, offset 0x14d\n\t{value: 0x0002, lo: 0x0a},\n\t{value: 0x0043, lo: 0xac, hi: 0xac},\n\t{value: 0x00d1, lo: 0xad, hi: 0xad},\n\t{value: 0x0045, lo: 0xae, hi: 0xae},\n\t{value: 0x0049, lo: 0xb0, hi: 0xb1},\n\t{value: 0x00e6, lo: 0xb2, hi: 0xb2},\n\t{value: 0x004f, lo: 0xb3, hi: 0xba},\n\t{value: 0x005f, lo: 0xbc, hi: 0xbc},\n\t{value: 0x00ef, lo: 0xbd, hi: 0xbd},\n\t{value: 0x0061, lo: 0xbe, hi: 0xbe},\n\t{value: 0x0065, lo: 0xbf, hi: 0xbf},\n\t// Block 0x3c, offset 0x158\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x0001, lo: 0x80, hi: 0x8a},\n\t{value: 0x043b, lo: 0x91, hi: 0x91},\n\t{value: 0x429b, lo: 0x97, hi: 0x97},\n\t{value: 0x001d, lo: 0xa4, hi: 0xa4},\n\t{value: 0x1873, lo: 0xa5, hi: 0xa5},\n\t{value: 0x1b5c, lo: 0xa6, hi: 0xa6},\n\t{value: 0x0001, lo: 0xaf, hi: 0xaf},\n\t{value: 0x2691, lo: 0xb3, hi: 0xb3},\n\t{value: 0x27fe, lo: 0xb4, hi: 0xb4},\n\t{value: 0x2698, lo: 0xb6, hi: 0xb6},\n\t{value: 0x2808, lo: 0xb7, hi: 0xb7},\n\t{value: 0x186d, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4269, lo: 0xbe, hi: 0xbe},\n\t// Block 0x3d, offset 0x166\n\t{value: 0x0002, lo: 0x0d},\n\t{value: 0x1933, lo: 0x87, hi: 0x87},\n\t{value: 0x1930, lo: 0x88, hi: 0x88},\n\t{value: 0x1870, lo: 0x89, hi: 0x89},\n\t{value: 0x298e, lo: 0x97, hi: 0x97},\n\t{value: 0x0001, lo: 0x9f, hi: 0x9f},\n\t{value: 0x0021, lo: 0xb0, hi: 0xb0},\n\t{value: 0x0093, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0029, lo: 0xb4, hi: 0xb9},\n\t{value: 0x0017, lo: 0xba, hi: 0xba},\n\t{value: 0x0467, lo: 0xbb, hi: 0xbb},\n\t{value: 0x003b, lo: 0xbc, hi: 0xbc},\n\t{value: 0x0011, lo: 0xbd, hi: 0xbe},\n\t{value: 0x009d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x3e, offset 0x174\n\t{value: 0x0002, lo: 0x0f},\n\t{value: 0x0021, lo: 0x80, hi: 0x89},\n\t{value: 0x0017, lo: 0x8a, hi: 0x8a},\n\t{value: 0x0467, lo: 0x8b, hi: 0x8b},\n\t{value: 0x003b, lo: 0x8c, hi: 0x8c},\n\t{value: 0x0011, lo: 0x8d, hi: 0x8e},\n\t{value: 0x0083, lo: 0x90, hi: 0x90},\n\t{value: 0x008b, lo: 0x91, hi: 0x91},\n\t{value: 0x009f, lo: 0x92, hi: 0x92},\n\t{value: 0x00b1, lo: 0x93, hi: 0x93},\n\t{value: 0x0104, lo: 0x94, hi: 0x94},\n\t{value: 0x0091, lo: 0x95, hi: 0x95},\n\t{value: 0x0097, lo: 0x96, hi: 0x99},\n\t{value: 0x00a1, lo: 0x9a, hi: 0x9a},\n\t{value: 0x00a7, lo: 0x9b, hi: 0x9c},\n\t{value: 0x1999, lo: 0xa8, hi: 0xa8},\n\t// Block 0x3f, offset 0x184\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x8132, lo: 0x90, hi: 0x91},\n\t{value: 0x8101, lo: 0x92, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x97},\n\t{value: 0x8101, lo: 0x98, hi: 0x9a},\n\t{value: 0x8132, lo: 0x9b, hi: 0x9c},\n\t{value: 0x8132, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8101, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa7},\n\t{value: 0x812d, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8132, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8101, lo: 0xaa, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t// Block 0x40, offset 0x192\n\t{value: 0x0007, lo: 0x06},\n\t{value: 0x2180, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t{value: 0x3bb9, lo: 0x9a, hi: 0x9b},\n\t{value: 0x3bc7, lo: 0xae, hi: 0xae},\n\t// Block 0x41, offset 0x199\n\t{value: 0x000e, lo: 0x05},\n\t{value: 0x3bce, lo: 0x8d, hi: 0x8e},\n\t{value: 0x3bd5, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t// Block 0x42, offset 0x19f\n\t{value: 0x0173, lo: 0x0e},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0x3be3, lo: 0x84, hi: 0x84},\n\t{value: 0xa000, lo: 0x88, hi: 0x88},\n\t{value: 0x3bea, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0x3bf1, lo: 0x8c, hi: 0x8c},\n\t{value: 0xa000, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3bf8, lo: 0xa4, hi: 0xa4},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3bff, lo: 0xa6, hi: 0xa6},\n\t{value: 0x269f, lo: 0xac, hi: 0xad},\n\t{value: 0x26a6, lo: 0xaf, hi: 0xaf},\n\t{value: 0x281c, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xbc, hi: 0xbc},\n\t// Block 0x43, offset 0x1ae\n\t{value: 0x0007, lo: 0x03},\n\t{value: 0x3c68, lo: 0xa0, hi: 0xa1},\n\t{value: 0x3c92, lo: 0xa2, hi: 0xa3},\n\t{value: 0x3cbc, lo: 0xaa, hi: 0xad},\n\t// Block 0x44, offset 0x1b2\n\t{value: 0x0004, lo: 0x01},\n\t{value: 0x048b, lo: 0xa9, hi: 0xaa},\n\t// Block 0x45, offset 0x1b4\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x0057, lo: 0x80, hi: 0x8f},\n\t{value: 0x0083, lo: 0x90, hi: 0xa9},\n\t{value: 0x0021, lo: 0xaa, hi: 0xaa},\n\t// Block 0x46, offset 0x1b8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x299b, lo: 0x8c, hi: 0x8c},\n\t// Block 0x47, offset 0x1ba\n\t{value: 0x0263, lo: 0x02},\n\t{value: 0x1b8c, lo: 0xb4, hi: 0xb4},\n\t{value: 0x192d, lo: 0xb5, hi: 0xb6},\n\t// Block 0x48, offset 0x1bd\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x44dd, lo: 0x9c, hi: 0x9c},\n\t// Block 0x49, offset 0x1bf\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x0095, lo: 0xbc, hi: 0xbc},\n\t{value: 0x006d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x4a, offset 0x1c2\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xaf, hi: 0xb1},\n\t// Block 0x4b, offset 0x1c4\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x047f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x4c, offset 0x1c7\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa0, hi: 0xbf},\n\t// Block 0x4d, offset 0x1c9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x0dc3, lo: 0x9f, hi: 0x9f},\n\t// Block 0x4e, offset 0x1cb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x162f, lo: 0xb3, hi: 0xb3},\n\t// Block 0x4f, offset 0x1cd\n\t{value: 0x0004, lo: 0x0b},\n\t{value: 0x1597, lo: 0x80, hi: 0x82},\n\t{value: 0x15af, lo: 0x83, hi: 0x83},\n\t{value: 0x15c7, lo: 0x84, hi: 0x85},\n\t{value: 0x15d7, lo: 0x86, hi: 0x89},\n\t{value: 0x15eb, lo: 0x8a, hi: 0x8c},\n\t{value: 0x15ff, lo: 0x8d, hi: 0x8d},\n\t{value: 0x1607, lo: 0x8e, hi: 0x8e},\n\t{value: 0x160f, lo: 0x8f, hi: 0x90},\n\t{value: 0x161b, lo: 0x91, hi: 0x93},\n\t{value: 0x162b, lo: 0x94, hi: 0x94},\n\t{value: 0x1633, lo: 0x95, hi: 0x95},\n\t// Block 0x50, offset 0x1d9\n\t{value: 0x0004, lo: 0x09},\n\t{value: 0x0001, lo: 0x80, hi: 0x80},\n\t{value: 0x812c, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8131, lo: 0xab, hi: 0xab},\n\t{value: 0x8133, lo: 0xac, hi: 0xac},\n\t{value: 0x812e, lo: 0xad, hi: 0xad},\n\t{value: 0x812f, lo: 0xae, hi: 0xae},\n\t{value: 0x812f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x04b3, lo: 0xb6, hi: 0xb6},\n\t{value: 0x0887, lo: 0xb8, hi: 0xba},\n\t// Block 0x51, offset 0x1e3\n\t{value: 0x0006, lo: 0x09},\n\t{value: 0x0313, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0317, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a3b, lo: 0xb3, hi: 0xb3},\n\t{value: 0x031b, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a41, lo: 0xb5, hi: 0xb6},\n\t{value: 0x031f, lo: 0xb7, hi: 0xb7},\n\t{value: 0x0323, lo: 0xb8, hi: 0xb8},\n\t{value: 0x0327, lo: 0xb9, hi: 0xb9},\n\t{value: 0x4a4d, lo: 0xba, hi: 0xbf},\n\t// Block 0x52, offset 0x1ed\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb4, hi: 0xbd},\n\t// Block 0x53, offset 0x1f0\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x020f, lo: 0x9c, hi: 0x9c},\n\t{value: 0x0212, lo: 0x9d, hi: 0x9d},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9f},\n\t// Block 0x54, offset 0x1f4\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb1},\n\t// Block 0x55, offset 0x1f6\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x163b, lo: 0xb0, hi: 0xb0},\n\t// Block 0x56, offset 0x1f8\n\t{value: 0x000c, lo: 0x01},\n\t{value: 0x00d7, lo: 0xb8, hi: 0xb9},\n\t// Block 0x57, offset 0x1fa\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t// Block 0x58, offset 0x1fc\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xa0, hi: 0xb1},\n\t// Block 0x59, offset 0x1ff\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xab, hi: 0xad},\n\t// Block 0x5a, offset 0x201\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x93, hi: 0x93},\n\t// Block 0x5b, offset 0x203\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb3, hi: 0xb3},\n\t// Block 0x5c, offset 0x205\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t// Block 0x5d, offset 0x207\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbf},\n\t// Block 0x5e, offset 0x20d\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t// Block 0x5f, offset 0x210\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x1637, lo: 0x9c, hi: 0x9d},\n\t{value: 0x0125, lo: 0x9e, hi: 0x9e},\n\t{value: 0x1643, lo: 0x9f, hi: 0x9f},\n\t// Block 0x60, offset 0x214\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xad, hi: 0xad},\n\t// Block 0x61, offset 0x216\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xe500, lo: 0x80, hi: 0x80},\n\t{value: 0xc600, lo: 0x81, hi: 0x9b},\n\t{value: 0xe500, lo: 0x9c, hi: 0x9c},\n\t{value: 0xc600, lo: 0x9d, hi: 0xb7},\n\t{value: 0xe500, lo: 0xb8, hi: 0xb8},\n\t{value: 0xc600, lo: 0xb9, hi: 0xbf},\n\t// Block 0x62, offset 0x21d\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x93},\n\t{value: 0xe500, lo: 0x94, hi: 0x94},\n\t{value: 0xc600, lo: 0x95, hi: 0xaf},\n\t{value: 0xe500, lo: 0xb0, hi: 0xb0},\n\t{value: 0xc600, lo: 0xb1, hi: 0xbf},\n\t// Block 0x63, offset 0x223\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8b},\n\t{value: 0xe500, lo: 0x8c, hi: 0x8c},\n\t{value: 0xc600, lo: 0x8d, hi: 0xa7},\n\t{value: 0xe500, lo: 0xa8, hi: 0xa8},\n\t{value: 0xc600, lo: 0xa9, hi: 0xbf},\n\t// Block 0x64, offset 0x229\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xc600, lo: 0x80, hi: 0x83},\n\t{value: 0xe500, lo: 0x84, hi: 0x84},\n\t{value: 0xc600, lo: 0x85, hi: 0x9f},\n\t{value: 0xe500, lo: 0xa0, hi: 0xa0},\n\t{value: 0xc600, lo: 0xa1, hi: 0xbb},\n\t{value: 0xe500, lo: 0xbc, hi: 0xbc},\n\t{value: 0xc600, lo: 0xbd, hi: 0xbf},\n\t// Block 0x65, offset 0x231\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x97},\n\t{value: 0xe500, lo: 0x98, hi: 0x98},\n\t{value: 0xc600, lo: 0x99, hi: 0xb3},\n\t{value: 0xe500, lo: 0xb4, hi: 0xb4},\n\t{value: 0xc600, lo: 0xb5, hi: 0xbf},\n\t// Block 0x66, offset 0x237\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8f},\n\t{value: 0xe500, lo: 0x90, hi: 0x90},\n\t{value: 0xc600, lo: 0x91, hi: 0xab},\n\t{value: 0xe500, lo: 0xac, hi: 0xac},\n\t{value: 0xc600, lo: 0xad, hi: 0xbf},\n\t// Block 0x67, offset 0x23d\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t{value: 0xe500, lo: 0xa4, hi: 0xa4},\n\t{value: 0xc600, lo: 0xa5, hi: 0xbf},\n\t// Block 0x68, offset 0x243\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t// Block 0x69, offset 0x247\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x0003, lo: 0x81, hi: 0xbf},\n\t// Block 0x6a, offset 0x249\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x6b, offset 0x24b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xa0, hi: 0xa0},\n\t// Block 0x6c, offset 0x24d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb6, hi: 0xba},\n\t// Block 0x6d, offset 0x24f\n\t{value: 0x002c, lo: 0x05},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8101, lo: 0xb9, hi: 0xba},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x6e, offset 0x255\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t// Block 0x6f, offset 0x258\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa7},\n\t// Block 0x70, offset 0x25a\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x8132, lo: 0x88, hi: 0x8a},\n\t{value: 0x812d, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8132, lo: 0x8c, hi: 0x8c},\n\t{value: 0x812d, lo: 0x8d, hi: 0x90},\n\t// Block 0x71, offset 0x260\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x72, offset 0x263\n\t{value: 0x17fe, lo: 0x07},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x4238, lo: 0x9a, hi: 0x9a},\n\t{value: 0xa000, lo: 0x9b, hi: 0x9b},\n\t{value: 0x4242, lo: 0x9c, hi: 0x9c},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x424c, lo: 0xab, hi: 0xab},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x73, offset 0x26b\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0x8132, lo: 0x80, hi: 0x82},\n\t{value: 0x9900, lo: 0xa7, hi: 0xa7},\n\t{value: 0x2d7e, lo: 0xae, hi: 0xae},\n\t{value: 0x2d88, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb1, hi: 0xb2},\n\t{value: 0x8104, lo: 0xb3, hi: 0xb4},\n\t// Block 0x74, offset 0x272\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x75, offset 0x275\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb5, hi: 0xb5},\n\t{value: 0x8102, lo: 0xb6, hi: 0xb6},\n\t// Block 0x76, offset 0x278\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x8102, lo: 0xa9, hi: 0xaa},\n\t// Block 0x77, offset 0x27a\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x78, offset 0x27d\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2d92, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d9c, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x8132, lo: 0xa6, hi: 0xac},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t// Block 0x79, offset 0x285\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x86, hi: 0x86},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9e},\n\t// Block 0x7a, offset 0x289\n\t{value: 0x6b5a, lo: 0x06},\n\t{value: 0x9900, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb9, hi: 0xb9},\n\t{value: 0x9900, lo: 0xba, hi: 0xba},\n\t{value: 0x2db0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x2da6, lo: 0xbc, hi: 0xbd},\n\t{value: 0x2dba, lo: 0xbe, hi: 0xbe},\n\t// Block 0x7b, offset 0x290\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x83, hi: 0x83},\n\t// Block 0x7c, offset 0x293\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x9900, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb8, hi: 0xb9},\n\t{value: 0x2dc4, lo: 0xba, hi: 0xba},\n\t{value: 0x2dce, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x7d, offset 0x299\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0x80, hi: 0x80},\n\t// Block 0x7e, offset 0x29b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x7f, offset 0x29d\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x80, offset 0x2a0\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xab, hi: 0xab},\n\t// Block 0x81, offset 0x2a2\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8102, lo: 0xba, hi: 0xba},\n\t// Block 0x82, offset 0x2a5\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x83, offset 0x2a7\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x87, hi: 0x87},\n\t// Block 0x84, offset 0x2a9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x99, hi: 0x99},\n\t// Block 0x85, offset 0x2ab\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0x82, hi: 0x82},\n\t{value: 0x8104, lo: 0x84, hi: 0x85},\n\t// Block 0x86, offset 0x2ae\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x97, hi: 0x97},\n\t// Block 0x87, offset 0x2b0\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0xb0, hi: 0xb4},\n\t// Block 0x88, offset 0x2b2\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb6},\n\t// Block 0x89, offset 0x2b4\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0x9e, hi: 0x9e},\n\t// Block 0x8a, offset 0x2b6\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x45cc, lo: 0x9e, hi: 0x9e},\n\t{value: 0x45d6, lo: 0x9f, hi: 0x9f},\n\t{value: 0x460a, lo: 0xa0, hi: 0xa0},\n\t{value: 0x4618, lo: 0xa1, hi: 0xa1},\n\t{value: 0x4626, lo: 0xa2, hi: 0xa2},\n\t{value: 0x4634, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4642, lo: 0xa4, hi: 0xa4},\n\t{value: 0x812b, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8101, lo: 0xa7, hi: 0xa9},\n\t{value: 0x8130, lo: 0xad, hi: 0xad},\n\t{value: 0x812b, lo: 0xae, hi: 0xb2},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbf},\n\t// Block 0x8b, offset 0x2c3\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x812d, lo: 0x80, hi: 0x82},\n\t{value: 0x8132, lo: 0x85, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8b},\n\t{value: 0x8132, lo: 0xaa, hi: 0xad},\n\t{value: 0x45e0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x45ea, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4650, lo: 0xbd, hi: 0xbd},\n\t{value: 0x466c, lo: 0xbe, hi: 0xbe},\n\t{value: 0x465e, lo: 0xbf, hi: 0xbf},\n\t// Block 0x8c, offset 0x2cd\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x467a, lo: 0x80, hi: 0x80},\n\t// Block 0x8d, offset 0x2cf\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x82, hi: 0x84},\n\t// Block 0x8e, offset 0x2d1\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x0043, lo: 0x80, hi: 0x99},\n\t{value: 0x0083, lo: 0x9a, hi: 0xb3},\n\t{value: 0x0043, lo: 0xb4, hi: 0xbf},\n\t// Block 0x8f, offset 0x2d5\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x005b, lo: 0x80, hi: 0x8d},\n\t{value: 0x0083, lo: 0x8e, hi: 0x94},\n\t{value: 0x0093, lo: 0x96, hi: 0xa7},\n\t{value: 0x0043, lo: 0xa8, hi: 0xbf},\n\t// Block 0x90, offset 0x2da\n\t{value: 0x0002, lo: 0x0b},\n\t{value: 0x0073, lo: 0x80, hi: 0x81},\n\t{value: 0x0083, lo: 0x82, hi: 0x9b},\n\t{value: 0x0043, lo: 0x9c, hi: 0x9c},\n\t{value: 0x0047, lo: 0x9e, hi: 0x9f},\n\t{value: 0x004f, lo: 0xa2, hi: 0xa2},\n\t{value: 0x0055, lo: 0xa5, hi: 0xa6},\n\t{value: 0x005d, lo: 0xa9, hi: 0xac},\n\t{value: 0x0067, lo: 0xae, hi: 0xb5},\n\t{value: 0x0083, lo: 0xb6, hi: 0xb9},\n\t{value: 0x008d, lo: 0xbb, hi: 0xbb},\n\t{value: 0x0091, lo: 0xbd, hi: 0xbf},\n\t// Block 0x91, offset 0x2e6\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x0097, lo: 0x80, hi: 0x83},\n\t{value: 0x00a1, lo: 0x85, hi: 0x8f},\n\t{value: 0x0043, lo: 0x90, hi: 0xa9},\n\t{value: 0x0083, lo: 0xaa, hi: 0xbf},\n\t// Block 0x92, offset 0x2eb\n\t{value: 0x0002, lo: 0x08},\n\t{value: 0x00af, lo: 0x80, hi: 0x83},\n\t{value: 0x0043, lo: 0x84, hi: 0x85},\n\t{value: 0x0049, lo: 0x87, hi: 0x8a},\n\t{value: 0x0055, lo: 0x8d, hi: 0x94},\n\t{value: 0x0067, lo: 0x96, hi: 0x9c},\n\t{value: 0x0083, lo: 0x9e, hi: 0xb7},\n\t{value: 0x0043, lo: 0xb8, hi: 0xb9},\n\t{value: 0x0049, lo: 0xbb, hi: 0xbe},\n\t// Block 0x93, offset 0x2f4\n\t{value: 0x0002, lo: 0x05},\n\t{value: 0x0053, lo: 0x80, hi: 0x84},\n\t{value: 0x005f, lo: 0x86, hi: 0x86},\n\t{value: 0x0067, lo: 0x8a, hi: 0x90},\n\t{value: 0x0083, lo: 0x92, hi: 0xab},\n\t{value: 0x0043, lo: 0xac, hi: 0xbf},\n\t// Block 0x94, offset 0x2fa\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x006b, lo: 0x80, hi: 0x85},\n\t{value: 0x0083, lo: 0x86, hi: 0x9f},\n\t{value: 0x0043, lo: 0xa0, hi: 0xb9},\n\t{value: 0x0083, lo: 0xba, hi: 0xbf},\n\t// Block 0x95, offset 0x2ff\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x008f, lo: 0x80, hi: 0x93},\n\t{value: 0x0043, lo: 0x94, hi: 0xad},\n\t{value: 0x0083, lo: 0xae, hi: 0xbf},\n\t// Block 0x96, offset 0x303\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x00a7, lo: 0x80, hi: 0x87},\n\t{value: 0x0043, lo: 0x88, hi: 0xa1},\n\t{value: 0x0083, lo: 0xa2, hi: 0xbb},\n\t{value: 0x0043, lo: 0xbc, hi: 0xbf},\n\t// Block 0x97, offset 0x308\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x004b, lo: 0x80, hi: 0x95},\n\t{value: 0x0083, lo: 0x96, hi: 0xaf},\n\t{value: 0x0043, lo: 0xb0, hi: 0xbf},\n\t// Block 0x98, offset 0x30c\n\t{value: 0x0003, lo: 0x0f},\n\t{value: 0x01b8, lo: 0x80, hi: 0x80},\n\t{value: 0x045f, lo: 0x81, hi: 0x81},\n\t{value: 0x01bb, lo: 0x82, hi: 0x9a},\n\t{value: 0x045b, lo: 0x9b, hi: 0x9b},\n\t{value: 0x01c7, lo: 0x9c, hi: 0x9c},\n\t{value: 0x01d0, lo: 0x9d, hi: 0x9d},\n\t{value: 0x01d6, lo: 0x9e, hi: 0x9e},\n\t{value: 0x01fa, lo: 0x9f, hi: 0x9f},\n\t{value: 0x01eb, lo: 0xa0, hi: 0xa0},\n\t{value: 0x01e8, lo: 0xa1, hi: 0xa1},\n\t{value: 0x0173, lo: 0xa2, hi: 0xb2},\n\t{value: 0x0188, lo: 0xb3, hi: 0xb3},\n\t{value: 0x01a6, lo: 0xb4, hi: 0xba},\n\t{value: 0x045f, lo: 0xbb, hi: 0xbb},\n\t{value: 0x01bb, lo: 0xbc, hi: 0xbf},\n\t// Block 0x99, offset 0x31c\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01c7, lo: 0x80, hi: 0x94},\n\t{value: 0x045b, lo: 0x95, hi: 0x95},\n\t{value: 0x01c7, lo: 0x96, hi: 0x96},\n\t{value: 0x01d0, lo: 0x97, hi: 0x97},\n\t{value: 0x01d6, lo: 0x98, hi: 0x98},\n\t{value: 0x01fa, lo: 0x99, hi: 0x99},\n\t{value: 0x01eb, lo: 0x9a, hi: 0x9a},\n\t{value: 0x01e8, lo: 0x9b, hi: 0x9b},\n\t{value: 0x0173, lo: 0x9c, hi: 0xac},\n\t{value: 0x0188, lo: 0xad, hi: 0xad},\n\t{value: 0x01a6, lo: 0xae, hi: 0xb4},\n\t{value: 0x045f, lo: 0xb5, hi: 0xb5},\n\t{value: 0x01bb, lo: 0xb6, hi: 0xbf},\n\t// Block 0x9a, offset 0x32a\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01d9, lo: 0x80, hi: 0x8e},\n\t{value: 0x045b, lo: 0x8f, hi: 0x8f},\n\t{value: 0x01c7, lo: 0x90, hi: 0x90},\n\t{value: 0x01d0, lo: 0x91, hi: 0x91},\n\t{value: 0x01d6, lo: 0x92, hi: 0x92},\n\t{value: 0x01fa, lo: 0x93, hi: 0x93},\n\t{value: 0x01eb, lo: 0x94, hi: 0x94},\n\t{value: 0x01e8, lo: 0x95, hi: 0x95},\n\t{value: 0x0173, lo: 0x96, hi: 0xa6},\n\t{value: 0x0188, lo: 0xa7, hi: 0xa7},\n\t{value: 0x01a6, lo: 0xa8, hi: 0xae},\n\t{value: 0x045f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x01bb, lo: 0xb0, hi: 0xbf},\n\t// Block 0x9b, offset 0x338\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01eb, lo: 0x80, hi: 0x88},\n\t{value: 0x045b, lo: 0x89, hi: 0x89},\n\t{value: 0x01c7, lo: 0x8a, hi: 0x8a},\n\t{value: 0x01d0, lo: 0x8b, hi: 0x8b},\n\t{value: 0x01d6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x01fa, lo: 0x8d, hi: 0x8d},\n\t{value: 0x01eb, lo: 0x8e, hi: 0x8e},\n\t{value: 0x01e8, lo: 0x8f, hi: 0x8f},\n\t{value: 0x0173, lo: 0x90, hi: 0xa0},\n\t{value: 0x0188, lo: 0xa1, hi: 0xa1},\n\t{value: 0x01a6, lo: 0xa2, hi: 0xa8},\n\t{value: 0x045f, lo: 0xa9, hi: 0xa9},\n\t{value: 0x01bb, lo: 0xaa, hi: 0xbf},\n\t// Block 0x9c, offset 0x346\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0x80, hi: 0x86},\n\t{value: 0x8132, lo: 0x88, hi: 0x98},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa1},\n\t{value: 0x8132, lo: 0xa3, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa6, hi: 0xaa},\n\t// Block 0x9d, offset 0x34c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x90, hi: 0x96},\n\t// Block 0x9e, offset 0x34e\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x84, hi: 0x89},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x9f, offset 0x351\n\t{value: 0x0002, lo: 0x09},\n\t{value: 0x0063, lo: 0x80, hi: 0x89},\n\t{value: 0x1951, lo: 0x8a, hi: 0x8a},\n\t{value: 0x1981, lo: 0x8b, hi: 0x8b},\n\t{value: 0x199c, lo: 0x8c, hi: 0x8c},\n\t{value: 0x19a2, lo: 0x8d, hi: 0x8d},\n\t{value: 0x1bc0, lo: 0x8e, hi: 0x8e},\n\t{value: 0x19ae, lo: 0x8f, hi: 0x8f},\n\t{value: 0x197b, lo: 0xaa, hi: 0xaa},\n\t{value: 0x197e, lo: 0xab, hi: 0xab},\n\t// Block 0xa0, offset 0x35b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x193f, lo: 0x90, hi: 0x90},\n\t// Block 0xa1, offset 0x35d\n\t{value: 0x0028, lo: 0x09},\n\t{value: 0x2862, lo: 0x80, hi: 0x80},\n\t{value: 0x2826, lo: 0x81, hi: 0x81},\n\t{value: 0x2830, lo: 0x82, hi: 0x82},\n\t{value: 0x2844, lo: 0x83, hi: 0x84},\n\t{value: 0x284e, lo: 0x85, hi: 0x86},\n\t{value: 0x283a, lo: 0x87, hi: 0x87},\n\t{value: 0x2858, lo: 0x88, hi: 0x88},\n\t{value: 0x0b6f, lo: 0x90, hi: 0x90},\n\t{value: 0x08e7, lo: 0x91, hi: 0x91},\n}\n\n// recompMap: 7520 bytes (entries only)\nvar recompMap map[uint32]rune\nvar recompMapOnce sync.Once\n\nconst recompMapPacked = \"\" +\n\t\"\\x00A\\x03\\x00\\x00\\x00\\x00\\xc0\" + // 0x00410300: 0x000000C0\n\t\"\\x00A\\x03\\x01\\x00\\x00\\x00\\xc1\" + // 0x00410301: 0x000000C1\n\t\"\\x00A\\x03\\x02\\x00\\x00\\x00\\xc2\" + // 0x00410302: 0x000000C2\n\t\"\\x00A\\x03\\x03\\x00\\x00\\x00\\xc3\" + // 0x00410303: 0x000000C3\n\t\"\\x00A\\x03\\b\\x00\\x00\\x00\\xc4\" + // 0x00410308: 0x000000C4\n\t\"\\x00A\\x03\\n\\x00\\x00\\x00\\xc5\" + // 0x0041030A: 0x000000C5\n\t\"\\x00C\\x03'\\x00\\x00\\x00\\xc7\" + // 0x00430327: 0x000000C7\n\t\"\\x00E\\x03\\x00\\x00\\x00\\x00\\xc8\" + // 0x00450300: 0x000000C8\n\t\"\\x00E\\x03\\x01\\x00\\x00\\x00\\xc9\" + // 0x00450301: 0x000000C9\n\t\"\\x00E\\x03\\x02\\x00\\x00\\x00\\xca\" + // 0x00450302: 0x000000CA\n\t\"\\x00E\\x03\\b\\x00\\x00\\x00\\xcb\" + // 0x00450308: 0x000000CB\n\t\"\\x00I\\x03\\x00\\x00\\x00\\x00\\xcc\" + // 0x00490300: 0x000000CC\n\t\"\\x00I\\x03\\x01\\x00\\x00\\x00\\xcd\" + // 0x00490301: 0x000000CD\n\t\"\\x00I\\x03\\x02\\x00\\x00\\x00\\xce\" + // 0x00490302: 0x000000CE\n\t\"\\x00I\\x03\\b\\x00\\x00\\x00\\xcf\" + // 0x00490308: 0x000000CF\n\t\"\\x00N\\x03\\x03\\x00\\x00\\x00\\xd1\" + // 0x004E0303: 0x000000D1\n\t\"\\x00O\\x03\\x00\\x00\\x00\\x00\\xd2\" + // 0x004F0300: 0x000000D2\n\t\"\\x00O\\x03\\x01\\x00\\x00\\x00\\xd3\" + // 0x004F0301: 0x000000D3\n\t\"\\x00O\\x03\\x02\\x00\\x00\\x00\\xd4\" + // 0x004F0302: 0x000000D4\n\t\"\\x00O\\x03\\x03\\x00\\x00\\x00\\xd5\" + // 0x004F0303: 0x000000D5\n\t\"\\x00O\\x03\\b\\x00\\x00\\x00\\xd6\" + // 0x004F0308: 0x000000D6\n\t\"\\x00U\\x03\\x00\\x00\\x00\\x00\\xd9\" + // 0x00550300: 0x000000D9\n\t\"\\x00U\\x03\\x01\\x00\\x00\\x00\\xda\" + // 0x00550301: 0x000000DA\n\t\"\\x00U\\x03\\x02\\x00\\x00\\x00\\xdb\" + // 0x00550302: 0x000000DB\n\t\"\\x00U\\x03\\b\\x00\\x00\\x00\\xdc\" + // 0x00550308: 0x000000DC\n\t\"\\x00Y\\x03\\x01\\x00\\x00\\x00\\xdd\" + // 0x00590301: 0x000000DD\n\t\"\\x00a\\x03\\x00\\x00\\x00\\x00\\xe0\" + // 0x00610300: 0x000000E0\n\t\"\\x00a\\x03\\x01\\x00\\x00\\x00\\xe1\" + // 0x00610301: 0x000000E1\n\t\"\\x00a\\x03\\x02\\x00\\x00\\x00\\xe2\" + // 0x00610302: 0x000000E2\n\t\"\\x00a\\x03\\x03\\x00\\x00\\x00\\xe3\" + // 0x00610303: 0x000000E3\n\t\"\\x00a\\x03\\b\\x00\\x00\\x00\\xe4\" + // 0x00610308: 0x000000E4\n\t\"\\x00a\\x03\\n\\x00\\x00\\x00\\xe5\" + // 0x0061030A: 0x000000E5\n\t\"\\x00c\\x03'\\x00\\x00\\x00\\xe7\" + // 0x00630327: 0x000000E7\n\t\"\\x00e\\x03\\x00\\x00\\x00\\x00\\xe8\" + // 0x00650300: 0x000000E8\n\t\"\\x00e\\x03\\x01\\x00\\x00\\x00\\xe9\" + // 0x00650301: 0x000000E9\n\t\"\\x00e\\x03\\x02\\x00\\x00\\x00\\xea\" + // 0x00650302: 0x000000EA\n\t\"\\x00e\\x03\\b\\x00\\x00\\x00\\xeb\" + // 0x00650308: 0x000000EB\n\t\"\\x00i\\x03\\x00\\x00\\x00\\x00\\xec\" + // 0x00690300: 0x000000EC\n\t\"\\x00i\\x03\\x01\\x00\\x00\\x00\\xed\" + // 0x00690301: 0x000000ED\n\t\"\\x00i\\x03\\x02\\x00\\x00\\x00\\xee\" + // 0x00690302: 0x000000EE\n\t\"\\x00i\\x03\\b\\x00\\x00\\x00\\xef\" + // 0x00690308: 0x000000EF\n\t\"\\x00n\\x03\\x03\\x00\\x00\\x00\\xf1\" + // 0x006E0303: 0x000000F1\n\t\"\\x00o\\x03\\x00\\x00\\x00\\x00\\xf2\" + // 0x006F0300: 0x000000F2\n\t\"\\x00o\\x03\\x01\\x00\\x00\\x00\\xf3\" + // 0x006F0301: 0x000000F3\n\t\"\\x00o\\x03\\x02\\x00\\x00\\x00\\xf4\" + // 0x006F0302: 0x000000F4\n\t\"\\x00o\\x03\\x03\\x00\\x00\\x00\\xf5\" + // 0x006F0303: 0x000000F5\n\t\"\\x00o\\x03\\b\\x00\\x00\\x00\\xf6\" + // 0x006F0308: 0x000000F6\n\t\"\\x00u\\x03\\x00\\x00\\x00\\x00\\xf9\" + // 0x00750300: 0x000000F9\n\t\"\\x00u\\x03\\x01\\x00\\x00\\x00\\xfa\" + // 0x00750301: 0x000000FA\n\t\"\\x00u\\x03\\x02\\x00\\x00\\x00\\xfb\" + // 0x00750302: 0x000000FB\n\t\"\\x00u\\x03\\b\\x00\\x00\\x00\\xfc\" + // 0x00750308: 0x000000FC\n\t\"\\x00y\\x03\\x01\\x00\\x00\\x00\\xfd\" + // 0x00790301: 0x000000FD\n\t\"\\x00y\\x03\\b\\x00\\x00\\x00\\xff\" + // 0x00790308: 0x000000FF\n\t\"\\x00A\\x03\\x04\\x00\\x00\\x01\\x00\" + // 0x00410304: 0x00000100\n\t\"\\x00a\\x03\\x04\\x00\\x00\\x01\\x01\" + // 0x00610304: 0x00000101\n\t\"\\x00A\\x03\\x06\\x00\\x00\\x01\\x02\" + // 0x00410306: 0x00000102\n\t\"\\x00a\\x03\\x06\\x00\\x00\\x01\\x03\" + // 0x00610306: 0x00000103\n\t\"\\x00A\\x03(\\x00\\x00\\x01\\x04\" + // 0x00410328: 0x00000104\n\t\"\\x00a\\x03(\\x00\\x00\\x01\\x05\" + // 0x00610328: 0x00000105\n\t\"\\x00C\\x03\\x01\\x00\\x00\\x01\\x06\" + // 0x00430301: 0x00000106\n\t\"\\x00c\\x03\\x01\\x00\\x00\\x01\\a\" + // 0x00630301: 0x00000107\n\t\"\\x00C\\x03\\x02\\x00\\x00\\x01\\b\" + // 0x00430302: 0x00000108\n\t\"\\x00c\\x03\\x02\\x00\\x00\\x01\\t\" + // 0x00630302: 0x00000109\n\t\"\\x00C\\x03\\a\\x00\\x00\\x01\\n\" + // 0x00430307: 0x0000010A\n\t\"\\x00c\\x03\\a\\x00\\x00\\x01\\v\" + // 0x00630307: 0x0000010B\n\t\"\\x00C\\x03\\f\\x00\\x00\\x01\\f\" + // 0x0043030C: 0x0000010C\n\t\"\\x00c\\x03\\f\\x00\\x00\\x01\\r\" + // 0x0063030C: 0x0000010D\n\t\"\\x00D\\x03\\f\\x00\\x00\\x01\\x0e\" + // 0x0044030C: 0x0000010E\n\t\"\\x00d\\x03\\f\\x00\\x00\\x01\\x0f\" + // 0x0064030C: 0x0000010F\n\t\"\\x00E\\x03\\x04\\x00\\x00\\x01\\x12\" + // 0x00450304: 0x00000112\n\t\"\\x00e\\x03\\x04\\x00\\x00\\x01\\x13\" + // 0x00650304: 0x00000113\n\t\"\\x00E\\x03\\x06\\x00\\x00\\x01\\x14\" + // 0x00450306: 0x00000114\n\t\"\\x00e\\x03\\x06\\x00\\x00\\x01\\x15\" + // 0x00650306: 0x00000115\n\t\"\\x00E\\x03\\a\\x00\\x00\\x01\\x16\" + // 0x00450307: 0x00000116\n\t\"\\x00e\\x03\\a\\x00\\x00\\x01\\x17\" + // 0x00650307: 0x00000117\n\t\"\\x00E\\x03(\\x00\\x00\\x01\\x18\" + // 0x00450328: 0x00000118\n\t\"\\x00e\\x03(\\x00\\x00\\x01\\x19\" + // 0x00650328: 0x00000119\n\t\"\\x00E\\x03\\f\\x00\\x00\\x01\\x1a\" + // 0x0045030C: 0x0000011A\n\t\"\\x00e\\x03\\f\\x00\\x00\\x01\\x1b\" + // 0x0065030C: 0x0000011B\n\t\"\\x00G\\x03\\x02\\x00\\x00\\x01\\x1c\" + // 0x00470302: 0x0000011C\n\t\"\\x00g\\x03\\x02\\x00\\x00\\x01\\x1d\" + // 0x00670302: 0x0000011D\n\t\"\\x00G\\x03\\x06\\x00\\x00\\x01\\x1e\" + // 0x00470306: 0x0000011E\n\t\"\\x00g\\x03\\x06\\x00\\x00\\x01\\x1f\" + // 0x00670306: 0x0000011F\n\t\"\\x00G\\x03\\a\\x00\\x00\\x01 \" + // 0x00470307: 0x00000120\n\t\"\\x00g\\x03\\a\\x00\\x00\\x01!\" + // 0x00670307: 0x00000121\n\t\"\\x00G\\x03'\\x00\\x00\\x01\\\"\" + // 0x00470327: 0x00000122\n\t\"\\x00g\\x03'\\x00\\x00\\x01#\" + // 0x00670327: 0x00000123\n\t\"\\x00H\\x03\\x02\\x00\\x00\\x01$\" + // 0x00480302: 0x00000124\n\t\"\\x00h\\x03\\x02\\x00\\x00\\x01%\" + // 0x00680302: 0x00000125\n\t\"\\x00I\\x03\\x03\\x00\\x00\\x01(\" + // 0x00490303: 0x00000128\n\t\"\\x00i\\x03\\x03\\x00\\x00\\x01)\" + // 0x00690303: 0x00000129\n\t\"\\x00I\\x03\\x04\\x00\\x00\\x01*\" + // 0x00490304: 0x0000012A\n\t\"\\x00i\\x03\\x04\\x00\\x00\\x01+\" + // 0x00690304: 0x0000012B\n\t\"\\x00I\\x03\\x06\\x00\\x00\\x01,\" + // 0x00490306: 0x0000012C\n\t\"\\x00i\\x03\\x06\\x00\\x00\\x01-\" + // 0x00690306: 0x0000012D\n\t\"\\x00I\\x03(\\x00\\x00\\x01.\" + // 0x00490328: 0x0000012E\n\t\"\\x00i\\x03(\\x00\\x00\\x01/\" + // 0x00690328: 0x0000012F\n\t\"\\x00I\\x03\\a\\x00\\x00\\x010\" + // 0x00490307: 0x00000130\n\t\"\\x00J\\x03\\x02\\x00\\x00\\x014\" + // 0x004A0302: 0x00000134\n\t\"\\x00j\\x03\\x02\\x00\\x00\\x015\" + // 0x006A0302: 0x00000135\n\t\"\\x00K\\x03'\\x00\\x00\\x016\" + // 0x004B0327: 0x00000136\n\t\"\\x00k\\x03'\\x00\\x00\\x017\" + // 0x006B0327: 0x00000137\n\t\"\\x00L\\x03\\x01\\x00\\x00\\x019\" + // 0x004C0301: 0x00000139\n\t\"\\x00l\\x03\\x01\\x00\\x00\\x01:\" + // 0x006C0301: 0x0000013A\n\t\"\\x00L\\x03'\\x00\\x00\\x01;\" + // 0x004C0327: 0x0000013B\n\t\"\\x00l\\x03'\\x00\\x00\\x01<\" + // 0x006C0327: 0x0000013C\n\t\"\\x00L\\x03\\f\\x00\\x00\\x01=\" + // 0x004C030C: 0x0000013D\n\t\"\\x00l\\x03\\f\\x00\\x00\\x01>\" + // 0x006C030C: 0x0000013E\n\t\"\\x00N\\x03\\x01\\x00\\x00\\x01C\" + // 0x004E0301: 0x00000143\n\t\"\\x00n\\x03\\x01\\x00\\x00\\x01D\" + // 0x006E0301: 0x00000144\n\t\"\\x00N\\x03'\\x00\\x00\\x01E\" + // 0x004E0327: 0x00000145\n\t\"\\x00n\\x03'\\x00\\x00\\x01F\" + // 0x006E0327: 0x00000146\n\t\"\\x00N\\x03\\f\\x00\\x00\\x01G\" + // 0x004E030C: 0x00000147\n\t\"\\x00n\\x03\\f\\x00\\x00\\x01H\" + // 0x006E030C: 0x00000148\n\t\"\\x00O\\x03\\x04\\x00\\x00\\x01L\" + // 0x004F0304: 0x0000014C\n\t\"\\x00o\\x03\\x04\\x00\\x00\\x01M\" + // 0x006F0304: 0x0000014D\n\t\"\\x00O\\x03\\x06\\x00\\x00\\x01N\" + // 0x004F0306: 0x0000014E\n\t\"\\x00o\\x03\\x06\\x00\\x00\\x01O\" + // 0x006F0306: 0x0000014F\n\t\"\\x00O\\x03\\v\\x00\\x00\\x01P\" + // 0x004F030B: 0x00000150\n\t\"\\x00o\\x03\\v\\x00\\x00\\x01Q\" + // 0x006F030B: 0x00000151\n\t\"\\x00R\\x03\\x01\\x00\\x00\\x01T\" + // 0x00520301: 0x00000154\n\t\"\\x00r\\x03\\x01\\x00\\x00\\x01U\" + // 0x00720301: 0x00000155\n\t\"\\x00R\\x03'\\x00\\x00\\x01V\" + // 0x00520327: 0x00000156\n\t\"\\x00r\\x03'\\x00\\x00\\x01W\" + // 0x00720327: 0x00000157\n\t\"\\x00R\\x03\\f\\x00\\x00\\x01X\" + // 0x0052030C: 0x00000158\n\t\"\\x00r\\x03\\f\\x00\\x00\\x01Y\" + // 0x0072030C: 0x00000159\n\t\"\\x00S\\x03\\x01\\x00\\x00\\x01Z\" + // 0x00530301: 0x0000015A\n\t\"\\x00s\\x03\\x01\\x00\\x00\\x01[\" + // 0x00730301: 0x0000015B\n\t\"\\x00S\\x03\\x02\\x00\\x00\\x01\\\\\" + // 0x00530302: 0x0000015C\n\t\"\\x00s\\x03\\x02\\x00\\x00\\x01]\" + // 0x00730302: 0x0000015D\n\t\"\\x00S\\x03'\\x00\\x00\\x01^\" + // 0x00530327: 0x0000015E\n\t\"\\x00s\\x03'\\x00\\x00\\x01_\" + // 0x00730327: 0x0000015F\n\t\"\\x00S\\x03\\f\\x00\\x00\\x01`\" + // 0x0053030C: 0x00000160\n\t\"\\x00s\\x03\\f\\x00\\x00\\x01a\" + // 0x0073030C: 0x00000161\n\t\"\\x00T\\x03'\\x00\\x00\\x01b\" + // 0x00540327: 0x00000162\n\t\"\\x00t\\x03'\\x00\\x00\\x01c\" + // 0x00740327: 0x00000163\n\t\"\\x00T\\x03\\f\\x00\\x00\\x01d\" + // 0x0054030C: 0x00000164\n\t\"\\x00t\\x03\\f\\x00\\x00\\x01e\" + // 0x0074030C: 0x00000165\n\t\"\\x00U\\x03\\x03\\x00\\x00\\x01h\" + // 0x00550303: 0x00000168\n\t\"\\x00u\\x03\\x03\\x00\\x00\\x01i\" + // 0x00750303: 0x00000169\n\t\"\\x00U\\x03\\x04\\x00\\x00\\x01j\" + // 0x00550304: 0x0000016A\n\t\"\\x00u\\x03\\x04\\x00\\x00\\x01k\" + // 0x00750304: 0x0000016B\n\t\"\\x00U\\x03\\x06\\x00\\x00\\x01l\" + // 0x00550306: 0x0000016C\n\t\"\\x00u\\x03\\x06\\x00\\x00\\x01m\" + // 0x00750306: 0x0000016D\n\t\"\\x00U\\x03\\n\\x00\\x00\\x01n\" + // 0x0055030A: 0x0000016E\n\t\"\\x00u\\x03\\n\\x00\\x00\\x01o\" + // 0x0075030A: 0x0000016F\n\t\"\\x00U\\x03\\v\\x00\\x00\\x01p\" + // 0x0055030B: 0x00000170\n\t\"\\x00u\\x03\\v\\x00\\x00\\x01q\" + // 0x0075030B: 0x00000171\n\t\"\\x00U\\x03(\\x00\\x00\\x01r\" + // 0x00550328: 0x00000172\n\t\"\\x00u\\x03(\\x00\\x00\\x01s\" + // 0x00750328: 0x00000173\n\t\"\\x00W\\x03\\x02\\x00\\x00\\x01t\" + // 0x00570302: 0x00000174\n\t\"\\x00w\\x03\\x02\\x00\\x00\\x01u\" + // 0x00770302: 0x00000175\n\t\"\\x00Y\\x03\\x02\\x00\\x00\\x01v\" + // 0x00590302: 0x00000176\n\t\"\\x00y\\x03\\x02\\x00\\x00\\x01w\" + // 0x00790302: 0x00000177\n\t\"\\x00Y\\x03\\b\\x00\\x00\\x01x\" + // 0x00590308: 0x00000178\n\t\"\\x00Z\\x03\\x01\\x00\\x00\\x01y\" + // 0x005A0301: 0x00000179\n\t\"\\x00z\\x03\\x01\\x00\\x00\\x01z\" + // 0x007A0301: 0x0000017A\n\t\"\\x00Z\\x03\\a\\x00\\x00\\x01{\" + // 0x005A0307: 0x0000017B\n\t\"\\x00z\\x03\\a\\x00\\x00\\x01|\" + // 0x007A0307: 0x0000017C\n\t\"\\x00Z\\x03\\f\\x00\\x00\\x01}\" + // 0x005A030C: 0x0000017D\n\t\"\\x00z\\x03\\f\\x00\\x00\\x01~\" + // 0x007A030C: 0x0000017E\n\t\"\\x00O\\x03\\x1b\\x00\\x00\\x01\\xa0\" + // 0x004F031B: 0x000001A0\n\t\"\\x00o\\x03\\x1b\\x00\\x00\\x01\\xa1\" + // 0x006F031B: 0x000001A1\n\t\"\\x00U\\x03\\x1b\\x00\\x00\\x01\\xaf\" + // 0x0055031B: 0x000001AF\n\t\"\\x00u\\x03\\x1b\\x00\\x00\\x01\\xb0\" + // 0x0075031B: 0x000001B0\n\t\"\\x00A\\x03\\f\\x00\\x00\\x01\\xcd\" + // 0x0041030C: 0x000001CD\n\t\"\\x00a\\x03\\f\\x00\\x00\\x01\\xce\" + // 0x0061030C: 0x000001CE\n\t\"\\x00I\\x03\\f\\x00\\x00\\x01\\xcf\" + // 0x0049030C: 0x000001CF\n\t\"\\x00i\\x03\\f\\x00\\x00\\x01\\xd0\" + // 0x0069030C: 0x000001D0\n\t\"\\x00O\\x03\\f\\x00\\x00\\x01\\xd1\" + // 0x004F030C: 0x000001D1\n\t\"\\x00o\\x03\\f\\x00\\x00\\x01\\xd2\" + // 0x006F030C: 0x000001D2\n\t\"\\x00U\\x03\\f\\x00\\x00\\x01\\xd3\" + // 0x0055030C: 0x000001D3\n\t\"\\x00u\\x03\\f\\x00\\x00\\x01\\xd4\" + // 0x0075030C: 0x000001D4\n\t\"\\x00\\xdc\\x03\\x04\\x00\\x00\\x01\\xd5\" + // 0x00DC0304: 0x000001D5\n\t\"\\x00\\xfc\\x03\\x04\\x00\\x00\\x01\\xd6\" + // 0x00FC0304: 0x000001D6\n\t\"\\x00\\xdc\\x03\\x01\\x00\\x00\\x01\\xd7\" + // 0x00DC0301: 0x000001D7\n\t\"\\x00\\xfc\\x03\\x01\\x00\\x00\\x01\\xd8\" + // 0x00FC0301: 0x000001D8\n\t\"\\x00\\xdc\\x03\\f\\x00\\x00\\x01\\xd9\" + // 0x00DC030C: 0x000001D9\n\t\"\\x00\\xfc\\x03\\f\\x00\\x00\\x01\\xda\" + // 0x00FC030C: 0x000001DA\n\t\"\\x00\\xdc\\x03\\x00\\x00\\x00\\x01\\xdb\" + // 0x00DC0300: 0x000001DB\n\t\"\\x00\\xfc\\x03\\x00\\x00\\x00\\x01\\xdc\" + // 0x00FC0300: 0x000001DC\n\t\"\\x00\\xc4\\x03\\x04\\x00\\x00\\x01\\xde\" + // 0x00C40304: 0x000001DE\n\t\"\\x00\\xe4\\x03\\x04\\x00\\x00\\x01\\xdf\" + // 0x00E40304: 0x000001DF\n\t\"\\x02&\\x03\\x04\\x00\\x00\\x01\\xe0\" + // 0x02260304: 0x000001E0\n\t\"\\x02'\\x03\\x04\\x00\\x00\\x01\\xe1\" + // 0x02270304: 0x000001E1\n\t\"\\x00\\xc6\\x03\\x04\\x00\\x00\\x01\\xe2\" + // 0x00C60304: 0x000001E2\n\t\"\\x00\\xe6\\x03\\x04\\x00\\x00\\x01\\xe3\" + // 0x00E60304: 0x000001E3\n\t\"\\x00G\\x03\\f\\x00\\x00\\x01\\xe6\" + // 0x0047030C: 0x000001E6\n\t\"\\x00g\\x03\\f\\x00\\x00\\x01\\xe7\" + // 0x0067030C: 0x000001E7\n\t\"\\x00K\\x03\\f\\x00\\x00\\x01\\xe8\" + // 0x004B030C: 0x000001E8\n\t\"\\x00k\\x03\\f\\x00\\x00\\x01\\xe9\" + // 0x006B030C: 0x000001E9\n\t\"\\x00O\\x03(\\x00\\x00\\x01\\xea\" + // 0x004F0328: 0x000001EA\n\t\"\\x00o\\x03(\\x00\\x00\\x01\\xeb\" + // 0x006F0328: 0x000001EB\n\t\"\\x01\\xea\\x03\\x04\\x00\\x00\\x01\\xec\" + // 0x01EA0304: 0x000001EC\n\t\"\\x01\\xeb\\x03\\x04\\x00\\x00\\x01\\xed\" + // 0x01EB0304: 0x000001ED\n\t\"\\x01\\xb7\\x03\\f\\x00\\x00\\x01\\xee\" + // 0x01B7030C: 0x000001EE\n\t\"\\x02\\x92\\x03\\f\\x00\\x00\\x01\\xef\" + // 0x0292030C: 0x000001EF\n\t\"\\x00j\\x03\\f\\x00\\x00\\x01\\xf0\" + // 0x006A030C: 0x000001F0\n\t\"\\x00G\\x03\\x01\\x00\\x00\\x01\\xf4\" + // 0x00470301: 0x000001F4\n\t\"\\x00g\\x03\\x01\\x00\\x00\\x01\\xf5\" + // 0x00670301: 0x000001F5\n\t\"\\x00N\\x03\\x00\\x00\\x00\\x01\\xf8\" + // 0x004E0300: 0x000001F8\n\t\"\\x00n\\x03\\x00\\x00\\x00\\x01\\xf9\" + // 0x006E0300: 0x000001F9\n\t\"\\x00\\xc5\\x03\\x01\\x00\\x00\\x01\\xfa\" + // 0x00C50301: 0x000001FA\n\t\"\\x00\\xe5\\x03\\x01\\x00\\x00\\x01\\xfb\" + // 0x00E50301: 0x000001FB\n\t\"\\x00\\xc6\\x03\\x01\\x00\\x00\\x01\\xfc\" + // 0x00C60301: 0x000001FC\n\t\"\\x00\\xe6\\x03\\x01\\x00\\x00\\x01\\xfd\" + // 0x00E60301: 0x000001FD\n\t\"\\x00\\xd8\\x03\\x01\\x00\\x00\\x01\\xfe\" + // 0x00D80301: 0x000001FE\n\t\"\\x00\\xf8\\x03\\x01\\x00\\x00\\x01\\xff\" + // 0x00F80301: 0x000001FF\n\t\"\\x00A\\x03\\x0f\\x00\\x00\\x02\\x00\" + // 0x0041030F: 0x00000200\n\t\"\\x00a\\x03\\x0f\\x00\\x00\\x02\\x01\" + // 0x0061030F: 0x00000201\n\t\"\\x00A\\x03\\x11\\x00\\x00\\x02\\x02\" + // 0x00410311: 0x00000202\n\t\"\\x00a\\x03\\x11\\x00\\x00\\x02\\x03\" + // 0x00610311: 0x00000203\n\t\"\\x00E\\x03\\x0f\\x00\\x00\\x02\\x04\" + // 0x0045030F: 0x00000204\n\t\"\\x00e\\x03\\x0f\\x00\\x00\\x02\\x05\" + // 0x0065030F: 0x00000205\n\t\"\\x00E\\x03\\x11\\x00\\x00\\x02\\x06\" + // 0x00450311: 0x00000206\n\t\"\\x00e\\x03\\x11\\x00\\x00\\x02\\a\" + // 0x00650311: 0x00000207\n\t\"\\x00I\\x03\\x0f\\x00\\x00\\x02\\b\" + // 0x0049030F: 0x00000208\n\t\"\\x00i\\x03\\x0f\\x00\\x00\\x02\\t\" + // 0x0069030F: 0x00000209\n\t\"\\x00I\\x03\\x11\\x00\\x00\\x02\\n\" + // 0x00490311: 0x0000020A\n\t\"\\x00i\\x03\\x11\\x00\\x00\\x02\\v\" + // 0x00690311: 0x0000020B\n\t\"\\x00O\\x03\\x0f\\x00\\x00\\x02\\f\" + // 0x004F030F: 0x0000020C\n\t\"\\x00o\\x03\\x0f\\x00\\x00\\x02\\r\" + // 0x006F030F: 0x0000020D\n\t\"\\x00O\\x03\\x11\\x00\\x00\\x02\\x0e\" + // 0x004F0311: 0x0000020E\n\t\"\\x00o\\x03\\x11\\x00\\x00\\x02\\x0f\" + // 0x006F0311: 0x0000020F\n\t\"\\x00R\\x03\\x0f\\x00\\x00\\x02\\x10\" + // 0x0052030F: 0x00000210\n\t\"\\x00r\\x03\\x0f\\x00\\x00\\x02\\x11\" + // 0x0072030F: 0x00000211\n\t\"\\x00R\\x03\\x11\\x00\\x00\\x02\\x12\" + // 0x00520311: 0x00000212\n\t\"\\x00r\\x03\\x11\\x00\\x00\\x02\\x13\" + // 0x00720311: 0x00000213\n\t\"\\x00U\\x03\\x0f\\x00\\x00\\x02\\x14\" + // 0x0055030F: 0x00000214\n\t\"\\x00u\\x03\\x0f\\x00\\x00\\x02\\x15\" + // 0x0075030F: 0x00000215\n\t\"\\x00U\\x03\\x11\\x00\\x00\\x02\\x16\" + // 0x00550311: 0x00000216\n\t\"\\x00u\\x03\\x11\\x00\\x00\\x02\\x17\" + // 0x00750311: 0x00000217\n\t\"\\x00S\\x03&\\x00\\x00\\x02\\x18\" + // 0x00530326: 0x00000218\n\t\"\\x00s\\x03&\\x00\\x00\\x02\\x19\" + // 0x00730326: 0x00000219\n\t\"\\x00T\\x03&\\x00\\x00\\x02\\x1a\" + // 0x00540326: 0x0000021A\n\t\"\\x00t\\x03&\\x00\\x00\\x02\\x1b\" + // 0x00740326: 0x0000021B\n\t\"\\x00H\\x03\\f\\x00\\x00\\x02\\x1e\" + // 0x0048030C: 0x0000021E\n\t\"\\x00h\\x03\\f\\x00\\x00\\x02\\x1f\" + // 0x0068030C: 0x0000021F\n\t\"\\x00A\\x03\\a\\x00\\x00\\x02&\" + // 0x00410307: 0x00000226\n\t\"\\x00a\\x03\\a\\x00\\x00\\x02'\" + // 0x00610307: 0x00000227\n\t\"\\x00E\\x03'\\x00\\x00\\x02(\" + // 0x00450327: 0x00000228\n\t\"\\x00e\\x03'\\x00\\x00\\x02)\" + // 0x00650327: 0x00000229\n\t\"\\x00\\xd6\\x03\\x04\\x00\\x00\\x02*\" + // 0x00D60304: 0x0000022A\n\t\"\\x00\\xf6\\x03\\x04\\x00\\x00\\x02+\" + // 0x00F60304: 0x0000022B\n\t\"\\x00\\xd5\\x03\\x04\\x00\\x00\\x02,\" + // 0x00D50304: 0x0000022C\n\t\"\\x00\\xf5\\x03\\x04\\x00\\x00\\x02-\" + // 0x00F50304: 0x0000022D\n\t\"\\x00O\\x03\\a\\x00\\x00\\x02.\" + // 0x004F0307: 0x0000022E\n\t\"\\x00o\\x03\\a\\x00\\x00\\x02/\" + // 0x006F0307: 0x0000022F\n\t\"\\x02.\\x03\\x04\\x00\\x00\\x020\" + // 0x022E0304: 0x00000230\n\t\"\\x02/\\x03\\x04\\x00\\x00\\x021\" + // 0x022F0304: 0x00000231\n\t\"\\x00Y\\x03\\x04\\x00\\x00\\x022\" + // 0x00590304: 0x00000232\n\t\"\\x00y\\x03\\x04\\x00\\x00\\x023\" + // 0x00790304: 0x00000233\n\t\"\\x00\\xa8\\x03\\x01\\x00\\x00\\x03\\x85\" + // 0x00A80301: 0x00000385\n\t\"\\x03\\x91\\x03\\x01\\x00\\x00\\x03\\x86\" + // 0x03910301: 0x00000386\n\t\"\\x03\\x95\\x03\\x01\\x00\\x00\\x03\\x88\" + // 0x03950301: 0x00000388\n\t\"\\x03\\x97\\x03\\x01\\x00\\x00\\x03\\x89\" + // 0x03970301: 0x00000389\n\t\"\\x03\\x99\\x03\\x01\\x00\\x00\\x03\\x8a\" + // 0x03990301: 0x0000038A\n\t\"\\x03\\x9f\\x03\\x01\\x00\\x00\\x03\\x8c\" + // 0x039F0301: 0x0000038C\n\t\"\\x03\\xa5\\x03\\x01\\x00\\x00\\x03\\x8e\" + // 0x03A50301: 0x0000038E\n\t\"\\x03\\xa9\\x03\\x01\\x00\\x00\\x03\\x8f\" + // 0x03A90301: 0x0000038F\n\t\"\\x03\\xca\\x03\\x01\\x00\\x00\\x03\\x90\" + // 0x03CA0301: 0x00000390\n\t\"\\x03\\x99\\x03\\b\\x00\\x00\\x03\\xaa\" + // 0x03990308: 0x000003AA\n\t\"\\x03\\xa5\\x03\\b\\x00\\x00\\x03\\xab\" + // 0x03A50308: 0x000003AB\n\t\"\\x03\\xb1\\x03\\x01\\x00\\x00\\x03\\xac\" + // 0x03B10301: 0x000003AC\n\t\"\\x03\\xb5\\x03\\x01\\x00\\x00\\x03\\xad\" + // 0x03B50301: 0x000003AD\n\t\"\\x03\\xb7\\x03\\x01\\x00\\x00\\x03\\xae\" + // 0x03B70301: 0x000003AE\n\t\"\\x03\\xb9\\x03\\x01\\x00\\x00\\x03\\xaf\" + // 0x03B90301: 0x000003AF\n\t\"\\x03\\xcb\\x03\\x01\\x00\\x00\\x03\\xb0\" + // 0x03CB0301: 0x000003B0\n\t\"\\x03\\xb9\\x03\\b\\x00\\x00\\x03\\xca\" + // 0x03B90308: 0x000003CA\n\t\"\\x03\\xc5\\x03\\b\\x00\\x00\\x03\\xcb\" + // 0x03C50308: 0x000003CB\n\t\"\\x03\\xbf\\x03\\x01\\x00\\x00\\x03\\xcc\" + // 0x03BF0301: 0x000003CC\n\t\"\\x03\\xc5\\x03\\x01\\x00\\x00\\x03\\xcd\" + // 0x03C50301: 0x000003CD\n\t\"\\x03\\xc9\\x03\\x01\\x00\\x00\\x03\\xce\" + // 0x03C90301: 0x000003CE\n\t\"\\x03\\xd2\\x03\\x01\\x00\\x00\\x03\\xd3\" + // 0x03D20301: 0x000003D3\n\t\"\\x03\\xd2\\x03\\b\\x00\\x00\\x03\\xd4\" + // 0x03D20308: 0x000003D4\n\t\"\\x04\\x15\\x03\\x00\\x00\\x00\\x04\\x00\" + // 0x04150300: 0x00000400\n\t\"\\x04\\x15\\x03\\b\\x00\\x00\\x04\\x01\" + // 0x04150308: 0x00000401\n\t\"\\x04\\x13\\x03\\x01\\x00\\x00\\x04\\x03\" + // 0x04130301: 0x00000403\n\t\"\\x04\\x06\\x03\\b\\x00\\x00\\x04\\a\" + // 0x04060308: 0x00000407\n\t\"\\x04\\x1a\\x03\\x01\\x00\\x00\\x04\\f\" + // 0x041A0301: 0x0000040C\n\t\"\\x04\\x18\\x03\\x00\\x00\\x00\\x04\\r\" + // 0x04180300: 0x0000040D\n\t\"\\x04#\\x03\\x06\\x00\\x00\\x04\\x0e\" + // 0x04230306: 0x0000040E\n\t\"\\x04\\x18\\x03\\x06\\x00\\x00\\x04\\x19\" + // 0x04180306: 0x00000419\n\t\"\\x048\\x03\\x06\\x00\\x00\\x049\" + // 0x04380306: 0x00000439\n\t\"\\x045\\x03\\x00\\x00\\x00\\x04P\" + // 0x04350300: 0x00000450\n\t\"\\x045\\x03\\b\\x00\\x00\\x04Q\" + // 0x04350308: 0x00000451\n\t\"\\x043\\x03\\x01\\x00\\x00\\x04S\" + // 0x04330301: 0x00000453\n\t\"\\x04V\\x03\\b\\x00\\x00\\x04W\" + // 0x04560308: 0x00000457\n\t\"\\x04:\\x03\\x01\\x00\\x00\\x04\\\\\" + // 0x043A0301: 0x0000045C\n\t\"\\x048\\x03\\x00\\x00\\x00\\x04]\" + // 0x04380300: 0x0000045D\n\t\"\\x04C\\x03\\x06\\x00\\x00\\x04^\" + // 0x04430306: 0x0000045E\n\t\"\\x04t\\x03\\x0f\\x00\\x00\\x04v\" + // 0x0474030F: 0x00000476\n\t\"\\x04u\\x03\\x0f\\x00\\x00\\x04w\" + // 0x0475030F: 0x00000477\n\t\"\\x04\\x16\\x03\\x06\\x00\\x00\\x04\\xc1\" + // 0x04160306: 0x000004C1\n\t\"\\x046\\x03\\x06\\x00\\x00\\x04\\xc2\" + // 0x04360306: 0x000004C2\n\t\"\\x04\\x10\\x03\\x06\\x00\\x00\\x04\\xd0\" + // 0x04100306: 0x000004D0\n\t\"\\x040\\x03\\x06\\x00\\x00\\x04\\xd1\" + // 0x04300306: 0x000004D1\n\t\"\\x04\\x10\\x03\\b\\x00\\x00\\x04\\xd2\" + // 0x04100308: 0x000004D2\n\t\"\\x040\\x03\\b\\x00\\x00\\x04\\xd3\" + // 0x04300308: 0x000004D3\n\t\"\\x04\\x15\\x03\\x06\\x00\\x00\\x04\\xd6\" + // 0x04150306: 0x000004D6\n\t\"\\x045\\x03\\x06\\x00\\x00\\x04\\xd7\" + // 0x04350306: 0x000004D7\n\t\"\\x04\\xd8\\x03\\b\\x00\\x00\\x04\\xda\" + // 0x04D80308: 0x000004DA\n\t\"\\x04\\xd9\\x03\\b\\x00\\x00\\x04\\xdb\" + // 0x04D90308: 0x000004DB\n\t\"\\x04\\x16\\x03\\b\\x00\\x00\\x04\\xdc\" + // 0x04160308: 0x000004DC\n\t\"\\x046\\x03\\b\\x00\\x00\\x04\\xdd\" + // 0x04360308: 0x000004DD\n\t\"\\x04\\x17\\x03\\b\\x00\\x00\\x04\\xde\" + // 0x04170308: 0x000004DE\n\t\"\\x047\\x03\\b\\x00\\x00\\x04\\xdf\" + // 0x04370308: 0x000004DF\n\t\"\\x04\\x18\\x03\\x04\\x00\\x00\\x04\\xe2\" + // 0x04180304: 0x000004E2\n\t\"\\x048\\x03\\x04\\x00\\x00\\x04\\xe3\" + // 0x04380304: 0x000004E3\n\t\"\\x04\\x18\\x03\\b\\x00\\x00\\x04\\xe4\" + // 0x04180308: 0x000004E4\n\t\"\\x048\\x03\\b\\x00\\x00\\x04\\xe5\" + // 0x04380308: 0x000004E5\n\t\"\\x04\\x1e\\x03\\b\\x00\\x00\\x04\\xe6\" + // 0x041E0308: 0x000004E6\n\t\"\\x04>\\x03\\b\\x00\\x00\\x04\\xe7\" + // 0x043E0308: 0x000004E7\n\t\"\\x04\\xe8\\x03\\b\\x00\\x00\\x04\\xea\" + // 0x04E80308: 0x000004EA\n\t\"\\x04\\xe9\\x03\\b\\x00\\x00\\x04\\xeb\" + // 0x04E90308: 0x000004EB\n\t\"\\x04-\\x03\\b\\x00\\x00\\x04\\xec\" + // 0x042D0308: 0x000004EC\n\t\"\\x04M\\x03\\b\\x00\\x00\\x04\\xed\" + // 0x044D0308: 0x000004ED\n\t\"\\x04#\\x03\\x04\\x00\\x00\\x04\\xee\" + // 0x04230304: 0x000004EE\n\t\"\\x04C\\x03\\x04\\x00\\x00\\x04\\xef\" + // 0x04430304: 0x000004EF\n\t\"\\x04#\\x03\\b\\x00\\x00\\x04\\xf0\" + // 0x04230308: 0x000004F0\n\t\"\\x04C\\x03\\b\\x00\\x00\\x04\\xf1\" + // 0x04430308: 0x000004F1\n\t\"\\x04#\\x03\\v\\x00\\x00\\x04\\xf2\" + // 0x0423030B: 0x000004F2\n\t\"\\x04C\\x03\\v\\x00\\x00\\x04\\xf3\" + // 0x0443030B: 0x000004F3\n\t\"\\x04'\\x03\\b\\x00\\x00\\x04\\xf4\" + // 0x04270308: 0x000004F4\n\t\"\\x04G\\x03\\b\\x00\\x00\\x04\\xf5\" + // 0x04470308: 0x000004F5\n\t\"\\x04+\\x03\\b\\x00\\x00\\x04\\xf8\" + // 0x042B0308: 0x000004F8\n\t\"\\x04K\\x03\\b\\x00\\x00\\x04\\xf9\" + // 0x044B0308: 0x000004F9\n\t\"\\x06'\\x06S\\x00\\x00\\x06\\\"\" + // 0x06270653: 0x00000622\n\t\"\\x06'\\x06T\\x00\\x00\\x06#\" + // 0x06270654: 0x00000623\n\t\"\\x06H\\x06T\\x00\\x00\\x06$\" + // 0x06480654: 0x00000624\n\t\"\\x06'\\x06U\\x00\\x00\\x06%\" + // 0x06270655: 0x00000625\n\t\"\\x06J\\x06T\\x00\\x00\\x06&\" + // 0x064A0654: 0x00000626\n\t\"\\x06\\xd5\\x06T\\x00\\x00\\x06\\xc0\" + // 0x06D50654: 0x000006C0\n\t\"\\x06\\xc1\\x06T\\x00\\x00\\x06\\xc2\" + // 0x06C10654: 0x000006C2\n\t\"\\x06\\xd2\\x06T\\x00\\x00\\x06\\xd3\" + // 0x06D20654: 0x000006D3\n\t\"\\t(\\t<\\x00\\x00\\t)\" + // 0x0928093C: 0x00000929\n\t\"\\t0\\t<\\x00\\x00\\t1\" + // 0x0930093C: 0x00000931\n\t\"\\t3\\t<\\x00\\x00\\t4\" + // 0x0933093C: 0x00000934\n\t\"\\t\\xc7\\t\\xbe\\x00\\x00\\t\\xcb\" + // 0x09C709BE: 0x000009CB\n\t\"\\t\\xc7\\t\\xd7\\x00\\x00\\t\\xcc\" + // 0x09C709D7: 0x000009CC\n\t\"\\vG\\vV\\x00\\x00\\vH\" + // 0x0B470B56: 0x00000B48\n\t\"\\vG\\v>\\x00\\x00\\vK\" + // 0x0B470B3E: 0x00000B4B\n\t\"\\vG\\vW\\x00\\x00\\vL\" + // 0x0B470B57: 0x00000B4C\n\t\"\\v\\x92\\v\\xd7\\x00\\x00\\v\\x94\" + // 0x0B920BD7: 0x00000B94\n\t\"\\v\\xc6\\v\\xbe\\x00\\x00\\v\\xca\" + // 0x0BC60BBE: 0x00000BCA\n\t\"\\v\\xc7\\v\\xbe\\x00\\x00\\v\\xcb\" + // 0x0BC70BBE: 0x00000BCB\n\t\"\\v\\xc6\\v\\xd7\\x00\\x00\\v\\xcc\" + // 0x0BC60BD7: 0x00000BCC\n\t\"\\fF\\fV\\x00\\x00\\fH\" + // 0x0C460C56: 0x00000C48\n\t\"\\f\\xbf\\f\\xd5\\x00\\x00\\f\\xc0\" + // 0x0CBF0CD5: 0x00000CC0\n\t\"\\f\\xc6\\f\\xd5\\x00\\x00\\f\\xc7\" + // 0x0CC60CD5: 0x00000CC7\n\t\"\\f\\xc6\\f\\xd6\\x00\\x00\\f\\xc8\" + // 0x0CC60CD6: 0x00000CC8\n\t\"\\f\\xc6\\f\\xc2\\x00\\x00\\f\\xca\" + // 0x0CC60CC2: 0x00000CCA\n\t\"\\f\\xca\\f\\xd5\\x00\\x00\\f\\xcb\" + // 0x0CCA0CD5: 0x00000CCB\n\t\"\\rF\\r>\\x00\\x00\\rJ\" + // 0x0D460D3E: 0x00000D4A\n\t\"\\rG\\r>\\x00\\x00\\rK\" + // 0x0D470D3E: 0x00000D4B\n\t\"\\rF\\rW\\x00\\x00\\rL\" + // 0x0D460D57: 0x00000D4C\n\t\"\\r\\xd9\\r\\xca\\x00\\x00\\r\\xda\" + // 0x0DD90DCA: 0x00000DDA\n\t\"\\r\\xd9\\r\\xcf\\x00\\x00\\r\\xdc\" + // 0x0DD90DCF: 0x00000DDC\n\t\"\\r\\xdc\\r\\xca\\x00\\x00\\r\\xdd\" + // 0x0DDC0DCA: 0x00000DDD\n\t\"\\r\\xd9\\r\\xdf\\x00\\x00\\r\\xde\" + // 0x0DD90DDF: 0x00000DDE\n\t\"\\x10%\\x10.\\x00\\x00\\x10&\" + // 0x1025102E: 0x00001026\n\t\"\\x1b\\x05\\x1b5\\x00\\x00\\x1b\\x06\" + // 0x1B051B35: 0x00001B06\n\t\"\\x1b\\a\\x1b5\\x00\\x00\\x1b\\b\" + // 0x1B071B35: 0x00001B08\n\t\"\\x1b\\t\\x1b5\\x00\\x00\\x1b\\n\" + // 0x1B091B35: 0x00001B0A\n\t\"\\x1b\\v\\x1b5\\x00\\x00\\x1b\\f\" + // 0x1B0B1B35: 0x00001B0C\n\t\"\\x1b\\r\\x1b5\\x00\\x00\\x1b\\x0e\" + // 0x1B0D1B35: 0x00001B0E\n\t\"\\x1b\\x11\\x1b5\\x00\\x00\\x1b\\x12\" + // 0x1B111B35: 0x00001B12\n\t\"\\x1b:\\x1b5\\x00\\x00\\x1b;\" + // 0x1B3A1B35: 0x00001B3B\n\t\"\\x1b<\\x1b5\\x00\\x00\\x1b=\" + // 0x1B3C1B35: 0x00001B3D\n\t\"\\x1b>\\x1b5\\x00\\x00\\x1b@\" + // 0x1B3E1B35: 0x00001B40\n\t\"\\x1b?\\x1b5\\x00\\x00\\x1bA\" + // 0x1B3F1B35: 0x00001B41\n\t\"\\x1bB\\x1b5\\x00\\x00\\x1bC\" + // 0x1B421B35: 0x00001B43\n\t\"\\x00A\\x03%\\x00\\x00\\x1e\\x00\" + // 0x00410325: 0x00001E00\n\t\"\\x00a\\x03%\\x00\\x00\\x1e\\x01\" + // 0x00610325: 0x00001E01\n\t\"\\x00B\\x03\\a\\x00\\x00\\x1e\\x02\" + // 0x00420307: 0x00001E02\n\t\"\\x00b\\x03\\a\\x00\\x00\\x1e\\x03\" + // 0x00620307: 0x00001E03\n\t\"\\x00B\\x03#\\x00\\x00\\x1e\\x04\" + // 0x00420323: 0x00001E04\n\t\"\\x00b\\x03#\\x00\\x00\\x1e\\x05\" + // 0x00620323: 0x00001E05\n\t\"\\x00B\\x031\\x00\\x00\\x1e\\x06\" + // 0x00420331: 0x00001E06\n\t\"\\x00b\\x031\\x00\\x00\\x1e\\a\" + // 0x00620331: 0x00001E07\n\t\"\\x00\\xc7\\x03\\x01\\x00\\x00\\x1e\\b\" + // 0x00C70301: 0x00001E08\n\t\"\\x00\\xe7\\x03\\x01\\x00\\x00\\x1e\\t\" + // 0x00E70301: 0x00001E09\n\t\"\\x00D\\x03\\a\\x00\\x00\\x1e\\n\" + // 0x00440307: 0x00001E0A\n\t\"\\x00d\\x03\\a\\x00\\x00\\x1e\\v\" + // 0x00640307: 0x00001E0B\n\t\"\\x00D\\x03#\\x00\\x00\\x1e\\f\" + // 0x00440323: 0x00001E0C\n\t\"\\x00d\\x03#\\x00\\x00\\x1e\\r\" + // 0x00640323: 0x00001E0D\n\t\"\\x00D\\x031\\x00\\x00\\x1e\\x0e\" + // 0x00440331: 0x00001E0E\n\t\"\\x00d\\x031\\x00\\x00\\x1e\\x0f\" + // 0x00640331: 0x00001E0F\n\t\"\\x00D\\x03'\\x00\\x00\\x1e\\x10\" + // 0x00440327: 0x00001E10\n\t\"\\x00d\\x03'\\x00\\x00\\x1e\\x11\" + // 0x00640327: 0x00001E11\n\t\"\\x00D\\x03-\\x00\\x00\\x1e\\x12\" + // 0x0044032D: 0x00001E12\n\t\"\\x00d\\x03-\\x00\\x00\\x1e\\x13\" + // 0x0064032D: 0x00001E13\n\t\"\\x01\\x12\\x03\\x00\\x00\\x00\\x1e\\x14\" + // 0x01120300: 0x00001E14\n\t\"\\x01\\x13\\x03\\x00\\x00\\x00\\x1e\\x15\" + // 0x01130300: 0x00001E15\n\t\"\\x01\\x12\\x03\\x01\\x00\\x00\\x1e\\x16\" + // 0x01120301: 0x00001E16\n\t\"\\x01\\x13\\x03\\x01\\x00\\x00\\x1e\\x17\" + // 0x01130301: 0x00001E17\n\t\"\\x00E\\x03-\\x00\\x00\\x1e\\x18\" + // 0x0045032D: 0x00001E18\n\t\"\\x00e\\x03-\\x00\\x00\\x1e\\x19\" + // 0x0065032D: 0x00001E19\n\t\"\\x00E\\x030\\x00\\x00\\x1e\\x1a\" + // 0x00450330: 0x00001E1A\n\t\"\\x00e\\x030\\x00\\x00\\x1e\\x1b\" + // 0x00650330: 0x00001E1B\n\t\"\\x02(\\x03\\x06\\x00\\x00\\x1e\\x1c\" + // 0x02280306: 0x00001E1C\n\t\"\\x02)\\x03\\x06\\x00\\x00\\x1e\\x1d\" + // 0x02290306: 0x00001E1D\n\t\"\\x00F\\x03\\a\\x00\\x00\\x1e\\x1e\" + // 0x00460307: 0x00001E1E\n\t\"\\x00f\\x03\\a\\x00\\x00\\x1e\\x1f\" + // 0x00660307: 0x00001E1F\n\t\"\\x00G\\x03\\x04\\x00\\x00\\x1e \" + // 0x00470304: 0x00001E20\n\t\"\\x00g\\x03\\x04\\x00\\x00\\x1e!\" + // 0x00670304: 0x00001E21\n\t\"\\x00H\\x03\\a\\x00\\x00\\x1e\\\"\" + // 0x00480307: 0x00001E22\n\t\"\\x00h\\x03\\a\\x00\\x00\\x1e#\" + // 0x00680307: 0x00001E23\n\t\"\\x00H\\x03#\\x00\\x00\\x1e$\" + // 0x00480323: 0x00001E24\n\t\"\\x00h\\x03#\\x00\\x00\\x1e%\" + // 0x00680323: 0x00001E25\n\t\"\\x00H\\x03\\b\\x00\\x00\\x1e&\" + // 0x00480308: 0x00001E26\n\t\"\\x00h\\x03\\b\\x00\\x00\\x1e'\" + // 0x00680308: 0x00001E27\n\t\"\\x00H\\x03'\\x00\\x00\\x1e(\" + // 0x00480327: 0x00001E28\n\t\"\\x00h\\x03'\\x00\\x00\\x1e)\" + // 0x00680327: 0x00001E29\n\t\"\\x00H\\x03.\\x00\\x00\\x1e*\" + // 0x0048032E: 0x00001E2A\n\t\"\\x00h\\x03.\\x00\\x00\\x1e+\" + // 0x0068032E: 0x00001E2B\n\t\"\\x00I\\x030\\x00\\x00\\x1e,\" + // 0x00490330: 0x00001E2C\n\t\"\\x00i\\x030\\x00\\x00\\x1e-\" + // 0x00690330: 0x00001E2D\n\t\"\\x00\\xcf\\x03\\x01\\x00\\x00\\x1e.\" + // 0x00CF0301: 0x00001E2E\n\t\"\\x00\\xef\\x03\\x01\\x00\\x00\\x1e/\" + // 0x00EF0301: 0x00001E2F\n\t\"\\x00K\\x03\\x01\\x00\\x00\\x1e0\" + // 0x004B0301: 0x00001E30\n\t\"\\x00k\\x03\\x01\\x00\\x00\\x1e1\" + // 0x006B0301: 0x00001E31\n\t\"\\x00K\\x03#\\x00\\x00\\x1e2\" + // 0x004B0323: 0x00001E32\n\t\"\\x00k\\x03#\\x00\\x00\\x1e3\" + // 0x006B0323: 0x00001E33\n\t\"\\x00K\\x031\\x00\\x00\\x1e4\" + // 0x004B0331: 0x00001E34\n\t\"\\x00k\\x031\\x00\\x00\\x1e5\" + // 0x006B0331: 0x00001E35\n\t\"\\x00L\\x03#\\x00\\x00\\x1e6\" + // 0x004C0323: 0x00001E36\n\t\"\\x00l\\x03#\\x00\\x00\\x1e7\" + // 0x006C0323: 0x00001E37\n\t\"\\x1e6\\x03\\x04\\x00\\x00\\x1e8\" + // 0x1E360304: 0x00001E38\n\t\"\\x1e7\\x03\\x04\\x00\\x00\\x1e9\" + // 0x1E370304: 0x00001E39\n\t\"\\x00L\\x031\\x00\\x00\\x1e:\" + // 0x004C0331: 0x00001E3A\n\t\"\\x00l\\x031\\x00\\x00\\x1e;\" + // 0x006C0331: 0x00001E3B\n\t\"\\x00L\\x03-\\x00\\x00\\x1e<\" + // 0x004C032D: 0x00001E3C\n\t\"\\x00l\\x03-\\x00\\x00\\x1e=\" + // 0x006C032D: 0x00001E3D\n\t\"\\x00M\\x03\\x01\\x00\\x00\\x1e>\" + // 0x004D0301: 0x00001E3E\n\t\"\\x00m\\x03\\x01\\x00\\x00\\x1e?\" + // 0x006D0301: 0x00001E3F\n\t\"\\x00M\\x03\\a\\x00\\x00\\x1e@\" + // 0x004D0307: 0x00001E40\n\t\"\\x00m\\x03\\a\\x00\\x00\\x1eA\" + // 0x006D0307: 0x00001E41\n\t\"\\x00M\\x03#\\x00\\x00\\x1eB\" + // 0x004D0323: 0x00001E42\n\t\"\\x00m\\x03#\\x00\\x00\\x1eC\" + // 0x006D0323: 0x00001E43\n\t\"\\x00N\\x03\\a\\x00\\x00\\x1eD\" + // 0x004E0307: 0x00001E44\n\t\"\\x00n\\x03\\a\\x00\\x00\\x1eE\" + // 0x006E0307: 0x00001E45\n\t\"\\x00N\\x03#\\x00\\x00\\x1eF\" + // 0x004E0323: 0x00001E46\n\t\"\\x00n\\x03#\\x00\\x00\\x1eG\" + // 0x006E0323: 0x00001E47\n\t\"\\x00N\\x031\\x00\\x00\\x1eH\" + // 0x004E0331: 0x00001E48\n\t\"\\x00n\\x031\\x00\\x00\\x1eI\" + // 0x006E0331: 0x00001E49\n\t\"\\x00N\\x03-\\x00\\x00\\x1eJ\" + // 0x004E032D: 0x00001E4A\n\t\"\\x00n\\x03-\\x00\\x00\\x1eK\" + // 0x006E032D: 0x00001E4B\n\t\"\\x00\\xd5\\x03\\x01\\x00\\x00\\x1eL\" + // 0x00D50301: 0x00001E4C\n\t\"\\x00\\xf5\\x03\\x01\\x00\\x00\\x1eM\" + // 0x00F50301: 0x00001E4D\n\t\"\\x00\\xd5\\x03\\b\\x00\\x00\\x1eN\" + // 0x00D50308: 0x00001E4E\n\t\"\\x00\\xf5\\x03\\b\\x00\\x00\\x1eO\" + // 0x00F50308: 0x00001E4F\n\t\"\\x01L\\x03\\x00\\x00\\x00\\x1eP\" + // 0x014C0300: 0x00001E50\n\t\"\\x01M\\x03\\x00\\x00\\x00\\x1eQ\" + // 0x014D0300: 0x00001E51\n\t\"\\x01L\\x03\\x01\\x00\\x00\\x1eR\" + // 0x014C0301: 0x00001E52\n\t\"\\x01M\\x03\\x01\\x00\\x00\\x1eS\" + // 0x014D0301: 0x00001E53\n\t\"\\x00P\\x03\\x01\\x00\\x00\\x1eT\" + // 0x00500301: 0x00001E54\n\t\"\\x00p\\x03\\x01\\x00\\x00\\x1eU\" + // 0x00700301: 0x00001E55\n\t\"\\x00P\\x03\\a\\x00\\x00\\x1eV\" + // 0x00500307: 0x00001E56\n\t\"\\x00p\\x03\\a\\x00\\x00\\x1eW\" + // 0x00700307: 0x00001E57\n\t\"\\x00R\\x03\\a\\x00\\x00\\x1eX\" + // 0x00520307: 0x00001E58\n\t\"\\x00r\\x03\\a\\x00\\x00\\x1eY\" + // 0x00720307: 0x00001E59\n\t\"\\x00R\\x03#\\x00\\x00\\x1eZ\" + // 0x00520323: 0x00001E5A\n\t\"\\x00r\\x03#\\x00\\x00\\x1e[\" + // 0x00720323: 0x00001E5B\n\t\"\\x1eZ\\x03\\x04\\x00\\x00\\x1e\\\\\" + // 0x1E5A0304: 0x00001E5C\n\t\"\\x1e[\\x03\\x04\\x00\\x00\\x1e]\" + // 0x1E5B0304: 0x00001E5D\n\t\"\\x00R\\x031\\x00\\x00\\x1e^\" + // 0x00520331: 0x00001E5E\n\t\"\\x00r\\x031\\x00\\x00\\x1e_\" + // 0x00720331: 0x00001E5F\n\t\"\\x00S\\x03\\a\\x00\\x00\\x1e`\" + // 0x00530307: 0x00001E60\n\t\"\\x00s\\x03\\a\\x00\\x00\\x1ea\" + // 0x00730307: 0x00001E61\n\t\"\\x00S\\x03#\\x00\\x00\\x1eb\" + // 0x00530323: 0x00001E62\n\t\"\\x00s\\x03#\\x00\\x00\\x1ec\" + // 0x00730323: 0x00001E63\n\t\"\\x01Z\\x03\\a\\x00\\x00\\x1ed\" + // 0x015A0307: 0x00001E64\n\t\"\\x01[\\x03\\a\\x00\\x00\\x1ee\" + // 0x015B0307: 0x00001E65\n\t\"\\x01`\\x03\\a\\x00\\x00\\x1ef\" + // 0x01600307: 0x00001E66\n\t\"\\x01a\\x03\\a\\x00\\x00\\x1eg\" + // 0x01610307: 0x00001E67\n\t\"\\x1eb\\x03\\a\\x00\\x00\\x1eh\" + // 0x1E620307: 0x00001E68\n\t\"\\x1ec\\x03\\a\\x00\\x00\\x1ei\" + // 0x1E630307: 0x00001E69\n\t\"\\x00T\\x03\\a\\x00\\x00\\x1ej\" + // 0x00540307: 0x00001E6A\n\t\"\\x00t\\x03\\a\\x00\\x00\\x1ek\" + // 0x00740307: 0x00001E6B\n\t\"\\x00T\\x03#\\x00\\x00\\x1el\" + // 0x00540323: 0x00001E6C\n\t\"\\x00t\\x03#\\x00\\x00\\x1em\" + // 0x00740323: 0x00001E6D\n\t\"\\x00T\\x031\\x00\\x00\\x1en\" + // 0x00540331: 0x00001E6E\n\t\"\\x00t\\x031\\x00\\x00\\x1eo\" + // 0x00740331: 0x00001E6F\n\t\"\\x00T\\x03-\\x00\\x00\\x1ep\" + // 0x0054032D: 0x00001E70\n\t\"\\x00t\\x03-\\x00\\x00\\x1eq\" + // 0x0074032D: 0x00001E71\n\t\"\\x00U\\x03$\\x00\\x00\\x1er\" + // 0x00550324: 0x00001E72\n\t\"\\x00u\\x03$\\x00\\x00\\x1es\" + // 0x00750324: 0x00001E73\n\t\"\\x00U\\x030\\x00\\x00\\x1et\" + // 0x00550330: 0x00001E74\n\t\"\\x00u\\x030\\x00\\x00\\x1eu\" + // 0x00750330: 0x00001E75\n\t\"\\x00U\\x03-\\x00\\x00\\x1ev\" + // 0x0055032D: 0x00001E76\n\t\"\\x00u\\x03-\\x00\\x00\\x1ew\" + // 0x0075032D: 0x00001E77\n\t\"\\x01h\\x03\\x01\\x00\\x00\\x1ex\" + // 0x01680301: 0x00001E78\n\t\"\\x01i\\x03\\x01\\x00\\x00\\x1ey\" + // 0x01690301: 0x00001E79\n\t\"\\x01j\\x03\\b\\x00\\x00\\x1ez\" + // 0x016A0308: 0x00001E7A\n\t\"\\x01k\\x03\\b\\x00\\x00\\x1e{\" + // 0x016B0308: 0x00001E7B\n\t\"\\x00V\\x03\\x03\\x00\\x00\\x1e|\" + // 0x00560303: 0x00001E7C\n\t\"\\x00v\\x03\\x03\\x00\\x00\\x1e}\" + // 0x00760303: 0x00001E7D\n\t\"\\x00V\\x03#\\x00\\x00\\x1e~\" + // 0x00560323: 0x00001E7E\n\t\"\\x00v\\x03#\\x00\\x00\\x1e\\u007f\" + // 0x00760323: 0x00001E7F\n\t\"\\x00W\\x03\\x00\\x00\\x00\\x1e\\x80\" + // 0x00570300: 0x00001E80\n\t\"\\x00w\\x03\\x00\\x00\\x00\\x1e\\x81\" + // 0x00770300: 0x00001E81\n\t\"\\x00W\\x03\\x01\\x00\\x00\\x1e\\x82\" + // 0x00570301: 0x00001E82\n\t\"\\x00w\\x03\\x01\\x00\\x00\\x1e\\x83\" + // 0x00770301: 0x00001E83\n\t\"\\x00W\\x03\\b\\x00\\x00\\x1e\\x84\" + // 0x00570308: 0x00001E84\n\t\"\\x00w\\x03\\b\\x00\\x00\\x1e\\x85\" + // 0x00770308: 0x00001E85\n\t\"\\x00W\\x03\\a\\x00\\x00\\x1e\\x86\" + // 0x00570307: 0x00001E86\n\t\"\\x00w\\x03\\a\\x00\\x00\\x1e\\x87\" + // 0x00770307: 0x00001E87\n\t\"\\x00W\\x03#\\x00\\x00\\x1e\\x88\" + // 0x00570323: 0x00001E88\n\t\"\\x00w\\x03#\\x00\\x00\\x1e\\x89\" + // 0x00770323: 0x00001E89\n\t\"\\x00X\\x03\\a\\x00\\x00\\x1e\\x8a\" + // 0x00580307: 0x00001E8A\n\t\"\\x00x\\x03\\a\\x00\\x00\\x1e\\x8b\" + // 0x00780307: 0x00001E8B\n\t\"\\x00X\\x03\\b\\x00\\x00\\x1e\\x8c\" + // 0x00580308: 0x00001E8C\n\t\"\\x00x\\x03\\b\\x00\\x00\\x1e\\x8d\" + // 0x00780308: 0x00001E8D\n\t\"\\x00Y\\x03\\a\\x00\\x00\\x1e\\x8e\" + // 0x00590307: 0x00001E8E\n\t\"\\x00y\\x03\\a\\x00\\x00\\x1e\\x8f\" + // 0x00790307: 0x00001E8F\n\t\"\\x00Z\\x03\\x02\\x00\\x00\\x1e\\x90\" + // 0x005A0302: 0x00001E90\n\t\"\\x00z\\x03\\x02\\x00\\x00\\x1e\\x91\" + // 0x007A0302: 0x00001E91\n\t\"\\x00Z\\x03#\\x00\\x00\\x1e\\x92\" + // 0x005A0323: 0x00001E92\n\t\"\\x00z\\x03#\\x00\\x00\\x1e\\x93\" + // 0x007A0323: 0x00001E93\n\t\"\\x00Z\\x031\\x00\\x00\\x1e\\x94\" + // 0x005A0331: 0x00001E94\n\t\"\\x00z\\x031\\x00\\x00\\x1e\\x95\" + // 0x007A0331: 0x00001E95\n\t\"\\x00h\\x031\\x00\\x00\\x1e\\x96\" + // 0x00680331: 0x00001E96\n\t\"\\x00t\\x03\\b\\x00\\x00\\x1e\\x97\" + // 0x00740308: 0x00001E97\n\t\"\\x00w\\x03\\n\\x00\\x00\\x1e\\x98\" + // 0x0077030A: 0x00001E98\n\t\"\\x00y\\x03\\n\\x00\\x00\\x1e\\x99\" + // 0x0079030A: 0x00001E99\n\t\"\\x01\\u007f\\x03\\a\\x00\\x00\\x1e\\x9b\" + // 0x017F0307: 0x00001E9B\n\t\"\\x00A\\x03#\\x00\\x00\\x1e\\xa0\" + // 0x00410323: 0x00001EA0\n\t\"\\x00a\\x03#\\x00\\x00\\x1e\\xa1\" + // 0x00610323: 0x00001EA1\n\t\"\\x00A\\x03\\t\\x00\\x00\\x1e\\xa2\" + // 0x00410309: 0x00001EA2\n\t\"\\x00a\\x03\\t\\x00\\x00\\x1e\\xa3\" + // 0x00610309: 0x00001EA3\n\t\"\\x00\\xc2\\x03\\x01\\x00\\x00\\x1e\\xa4\" + // 0x00C20301: 0x00001EA4\n\t\"\\x00\\xe2\\x03\\x01\\x00\\x00\\x1e\\xa5\" + // 0x00E20301: 0x00001EA5\n\t\"\\x00\\xc2\\x03\\x00\\x00\\x00\\x1e\\xa6\" + // 0x00C20300: 0x00001EA6\n\t\"\\x00\\xe2\\x03\\x00\\x00\\x00\\x1e\\xa7\" + // 0x00E20300: 0x00001EA7\n\t\"\\x00\\xc2\\x03\\t\\x00\\x00\\x1e\\xa8\" + // 0x00C20309: 0x00001EA8\n\t\"\\x00\\xe2\\x03\\t\\x00\\x00\\x1e\\xa9\" + // 0x00E20309: 0x00001EA9\n\t\"\\x00\\xc2\\x03\\x03\\x00\\x00\\x1e\\xaa\" + // 0x00C20303: 0x00001EAA\n\t\"\\x00\\xe2\\x03\\x03\\x00\\x00\\x1e\\xab\" + // 0x00E20303: 0x00001EAB\n\t\"\\x1e\\xa0\\x03\\x02\\x00\\x00\\x1e\\xac\" + // 0x1EA00302: 0x00001EAC\n\t\"\\x1e\\xa1\\x03\\x02\\x00\\x00\\x1e\\xad\" + // 0x1EA10302: 0x00001EAD\n\t\"\\x01\\x02\\x03\\x01\\x00\\x00\\x1e\\xae\" + // 0x01020301: 0x00001EAE\n\t\"\\x01\\x03\\x03\\x01\\x00\\x00\\x1e\\xaf\" + // 0x01030301: 0x00001EAF\n\t\"\\x01\\x02\\x03\\x00\\x00\\x00\\x1e\\xb0\" + // 0x01020300: 0x00001EB0\n\t\"\\x01\\x03\\x03\\x00\\x00\\x00\\x1e\\xb1\" + // 0x01030300: 0x00001EB1\n\t\"\\x01\\x02\\x03\\t\\x00\\x00\\x1e\\xb2\" + // 0x01020309: 0x00001EB2\n\t\"\\x01\\x03\\x03\\t\\x00\\x00\\x1e\\xb3\" + // 0x01030309: 0x00001EB3\n\t\"\\x01\\x02\\x03\\x03\\x00\\x00\\x1e\\xb4\" + // 0x01020303: 0x00001EB4\n\t\"\\x01\\x03\\x03\\x03\\x00\\x00\\x1e\\xb5\" + // 0x01030303: 0x00001EB5\n\t\"\\x1e\\xa0\\x03\\x06\\x00\\x00\\x1e\\xb6\" + // 0x1EA00306: 0x00001EB6\n\t\"\\x1e\\xa1\\x03\\x06\\x00\\x00\\x1e\\xb7\" + // 0x1EA10306: 0x00001EB7\n\t\"\\x00E\\x03#\\x00\\x00\\x1e\\xb8\" + // 0x00450323: 0x00001EB8\n\t\"\\x00e\\x03#\\x00\\x00\\x1e\\xb9\" + // 0x00650323: 0x00001EB9\n\t\"\\x00E\\x03\\t\\x00\\x00\\x1e\\xba\" + // 0x00450309: 0x00001EBA\n\t\"\\x00e\\x03\\t\\x00\\x00\\x1e\\xbb\" + // 0x00650309: 0x00001EBB\n\t\"\\x00E\\x03\\x03\\x00\\x00\\x1e\\xbc\" + // 0x00450303: 0x00001EBC\n\t\"\\x00e\\x03\\x03\\x00\\x00\\x1e\\xbd\" + // 0x00650303: 0x00001EBD\n\t\"\\x00\\xca\\x03\\x01\\x00\\x00\\x1e\\xbe\" + // 0x00CA0301: 0x00001EBE\n\t\"\\x00\\xea\\x03\\x01\\x00\\x00\\x1e\\xbf\" + // 0x00EA0301: 0x00001EBF\n\t\"\\x00\\xca\\x03\\x00\\x00\\x00\\x1e\\xc0\" + // 0x00CA0300: 0x00001EC0\n\t\"\\x00\\xea\\x03\\x00\\x00\\x00\\x1e\\xc1\" + // 0x00EA0300: 0x00001EC1\n\t\"\\x00\\xca\\x03\\t\\x00\\x00\\x1e\\xc2\" + // 0x00CA0309: 0x00001EC2\n\t\"\\x00\\xea\\x03\\t\\x00\\x00\\x1e\\xc3\" + // 0x00EA0309: 0x00001EC3\n\t\"\\x00\\xca\\x03\\x03\\x00\\x00\\x1e\\xc4\" + // 0x00CA0303: 0x00001EC4\n\t\"\\x00\\xea\\x03\\x03\\x00\\x00\\x1e\\xc5\" + // 0x00EA0303: 0x00001EC5\n\t\"\\x1e\\xb8\\x03\\x02\\x00\\x00\\x1e\\xc6\" + // 0x1EB80302: 0x00001EC6\n\t\"\\x1e\\xb9\\x03\\x02\\x00\\x00\\x1e\\xc7\" + // 0x1EB90302: 0x00001EC7\n\t\"\\x00I\\x03\\t\\x00\\x00\\x1e\\xc8\" + // 0x00490309: 0x00001EC8\n\t\"\\x00i\\x03\\t\\x00\\x00\\x1e\\xc9\" + // 0x00690309: 0x00001EC9\n\t\"\\x00I\\x03#\\x00\\x00\\x1e\\xca\" + // 0x00490323: 0x00001ECA\n\t\"\\x00i\\x03#\\x00\\x00\\x1e\\xcb\" + // 0x00690323: 0x00001ECB\n\t\"\\x00O\\x03#\\x00\\x00\\x1e\\xcc\" + // 0x004F0323: 0x00001ECC\n\t\"\\x00o\\x03#\\x00\\x00\\x1e\\xcd\" + // 0x006F0323: 0x00001ECD\n\t\"\\x00O\\x03\\t\\x00\\x00\\x1e\\xce\" + // 0x004F0309: 0x00001ECE\n\t\"\\x00o\\x03\\t\\x00\\x00\\x1e\\xcf\" + // 0x006F0309: 0x00001ECF\n\t\"\\x00\\xd4\\x03\\x01\\x00\\x00\\x1e\\xd0\" + // 0x00D40301: 0x00001ED0\n\t\"\\x00\\xf4\\x03\\x01\\x00\\x00\\x1e\\xd1\" + // 0x00F40301: 0x00001ED1\n\t\"\\x00\\xd4\\x03\\x00\\x00\\x00\\x1e\\xd2\" + // 0x00D40300: 0x00001ED2\n\t\"\\x00\\xf4\\x03\\x00\\x00\\x00\\x1e\\xd3\" + // 0x00F40300: 0x00001ED3\n\t\"\\x00\\xd4\\x03\\t\\x00\\x00\\x1e\\xd4\" + // 0x00D40309: 0x00001ED4\n\t\"\\x00\\xf4\\x03\\t\\x00\\x00\\x1e\\xd5\" + // 0x00F40309: 0x00001ED5\n\t\"\\x00\\xd4\\x03\\x03\\x00\\x00\\x1e\\xd6\" + // 0x00D40303: 0x00001ED6\n\t\"\\x00\\xf4\\x03\\x03\\x00\\x00\\x1e\\xd7\" + // 0x00F40303: 0x00001ED7\n\t\"\\x1e\\xcc\\x03\\x02\\x00\\x00\\x1e\\xd8\" + // 0x1ECC0302: 0x00001ED8\n\t\"\\x1e\\xcd\\x03\\x02\\x00\\x00\\x1e\\xd9\" + // 0x1ECD0302: 0x00001ED9\n\t\"\\x01\\xa0\\x03\\x01\\x00\\x00\\x1e\\xda\" + // 0x01A00301: 0x00001EDA\n\t\"\\x01\\xa1\\x03\\x01\\x00\\x00\\x1e\\xdb\" + // 0x01A10301: 0x00001EDB\n\t\"\\x01\\xa0\\x03\\x00\\x00\\x00\\x1e\\xdc\" + // 0x01A00300: 0x00001EDC\n\t\"\\x01\\xa1\\x03\\x00\\x00\\x00\\x1e\\xdd\" + // 0x01A10300: 0x00001EDD\n\t\"\\x01\\xa0\\x03\\t\\x00\\x00\\x1e\\xde\" + // 0x01A00309: 0x00001EDE\n\t\"\\x01\\xa1\\x03\\t\\x00\\x00\\x1e\\xdf\" + // 0x01A10309: 0x00001EDF\n\t\"\\x01\\xa0\\x03\\x03\\x00\\x00\\x1e\\xe0\" + // 0x01A00303: 0x00001EE0\n\t\"\\x01\\xa1\\x03\\x03\\x00\\x00\\x1e\\xe1\" + // 0x01A10303: 0x00001EE1\n\t\"\\x01\\xa0\\x03#\\x00\\x00\\x1e\\xe2\" + // 0x01A00323: 0x00001EE2\n\t\"\\x01\\xa1\\x03#\\x00\\x00\\x1e\\xe3\" + // 0x01A10323: 0x00001EE3\n\t\"\\x00U\\x03#\\x00\\x00\\x1e\\xe4\" + // 0x00550323: 0x00001EE4\n\t\"\\x00u\\x03#\\x00\\x00\\x1e\\xe5\" + // 0x00750323: 0x00001EE5\n\t\"\\x00U\\x03\\t\\x00\\x00\\x1e\\xe6\" + // 0x00550309: 0x00001EE6\n\t\"\\x00u\\x03\\t\\x00\\x00\\x1e\\xe7\" + // 0x00750309: 0x00001EE7\n\t\"\\x01\\xaf\\x03\\x01\\x00\\x00\\x1e\\xe8\" + // 0x01AF0301: 0x00001EE8\n\t\"\\x01\\xb0\\x03\\x01\\x00\\x00\\x1e\\xe9\" + // 0x01B00301: 0x00001EE9\n\t\"\\x01\\xaf\\x03\\x00\\x00\\x00\\x1e\\xea\" + // 0x01AF0300: 0x00001EEA\n\t\"\\x01\\xb0\\x03\\x00\\x00\\x00\\x1e\\xeb\" + // 0x01B00300: 0x00001EEB\n\t\"\\x01\\xaf\\x03\\t\\x00\\x00\\x1e\\xec\" + // 0x01AF0309: 0x00001EEC\n\t\"\\x01\\xb0\\x03\\t\\x00\\x00\\x1e\\xed\" + // 0x01B00309: 0x00001EED\n\t\"\\x01\\xaf\\x03\\x03\\x00\\x00\\x1e\\xee\" + // 0x01AF0303: 0x00001EEE\n\t\"\\x01\\xb0\\x03\\x03\\x00\\x00\\x1e\\xef\" + // 0x01B00303: 0x00001EEF\n\t\"\\x01\\xaf\\x03#\\x00\\x00\\x1e\\xf0\" + // 0x01AF0323: 0x00001EF0\n\t\"\\x01\\xb0\\x03#\\x00\\x00\\x1e\\xf1\" + // 0x01B00323: 0x00001EF1\n\t\"\\x00Y\\x03\\x00\\x00\\x00\\x1e\\xf2\" + // 0x00590300: 0x00001EF2\n\t\"\\x00y\\x03\\x00\\x00\\x00\\x1e\\xf3\" + // 0x00790300: 0x00001EF3\n\t\"\\x00Y\\x03#\\x00\\x00\\x1e\\xf4\" + // 0x00590323: 0x00001EF4\n\t\"\\x00y\\x03#\\x00\\x00\\x1e\\xf5\" + // 0x00790323: 0x00001EF5\n\t\"\\x00Y\\x03\\t\\x00\\x00\\x1e\\xf6\" + // 0x00590309: 0x00001EF6\n\t\"\\x00y\\x03\\t\\x00\\x00\\x1e\\xf7\" + // 0x00790309: 0x00001EF7\n\t\"\\x00Y\\x03\\x03\\x00\\x00\\x1e\\xf8\" + // 0x00590303: 0x00001EF8\n\t\"\\x00y\\x03\\x03\\x00\\x00\\x1e\\xf9\" + // 0x00790303: 0x00001EF9\n\t\"\\x03\\xb1\\x03\\x13\\x00\\x00\\x1f\\x00\" + // 0x03B10313: 0x00001F00\n\t\"\\x03\\xb1\\x03\\x14\\x00\\x00\\x1f\\x01\" + // 0x03B10314: 0x00001F01\n\t\"\\x1f\\x00\\x03\\x00\\x00\\x00\\x1f\\x02\" + // 0x1F000300: 0x00001F02\n\t\"\\x1f\\x01\\x03\\x00\\x00\\x00\\x1f\\x03\" + // 0x1F010300: 0x00001F03\n\t\"\\x1f\\x00\\x03\\x01\\x00\\x00\\x1f\\x04\" + // 0x1F000301: 0x00001F04\n\t\"\\x1f\\x01\\x03\\x01\\x00\\x00\\x1f\\x05\" + // 0x1F010301: 0x00001F05\n\t\"\\x1f\\x00\\x03B\\x00\\x00\\x1f\\x06\" + // 0x1F000342: 0x00001F06\n\t\"\\x1f\\x01\\x03B\\x00\\x00\\x1f\\a\" + // 0x1F010342: 0x00001F07\n\t\"\\x03\\x91\\x03\\x13\\x00\\x00\\x1f\\b\" + // 0x03910313: 0x00001F08\n\t\"\\x03\\x91\\x03\\x14\\x00\\x00\\x1f\\t\" + // 0x03910314: 0x00001F09\n\t\"\\x1f\\b\\x03\\x00\\x00\\x00\\x1f\\n\" + // 0x1F080300: 0x00001F0A\n\t\"\\x1f\\t\\x03\\x00\\x00\\x00\\x1f\\v\" + // 0x1F090300: 0x00001F0B\n\t\"\\x1f\\b\\x03\\x01\\x00\\x00\\x1f\\f\" + // 0x1F080301: 0x00001F0C\n\t\"\\x1f\\t\\x03\\x01\\x00\\x00\\x1f\\r\" + // 0x1F090301: 0x00001F0D\n\t\"\\x1f\\b\\x03B\\x00\\x00\\x1f\\x0e\" + // 0x1F080342: 0x00001F0E\n\t\"\\x1f\\t\\x03B\\x00\\x00\\x1f\\x0f\" + // 0x1F090342: 0x00001F0F\n\t\"\\x03\\xb5\\x03\\x13\\x00\\x00\\x1f\\x10\" + // 0x03B50313: 0x00001F10\n\t\"\\x03\\xb5\\x03\\x14\\x00\\x00\\x1f\\x11\" + // 0x03B50314: 0x00001F11\n\t\"\\x1f\\x10\\x03\\x00\\x00\\x00\\x1f\\x12\" + // 0x1F100300: 0x00001F12\n\t\"\\x1f\\x11\\x03\\x00\\x00\\x00\\x1f\\x13\" + // 0x1F110300: 0x00001F13\n\t\"\\x1f\\x10\\x03\\x01\\x00\\x00\\x1f\\x14\" + // 0x1F100301: 0x00001F14\n\t\"\\x1f\\x11\\x03\\x01\\x00\\x00\\x1f\\x15\" + // 0x1F110301: 0x00001F15\n\t\"\\x03\\x95\\x03\\x13\\x00\\x00\\x1f\\x18\" + // 0x03950313: 0x00001F18\n\t\"\\x03\\x95\\x03\\x14\\x00\\x00\\x1f\\x19\" + // 0x03950314: 0x00001F19\n\t\"\\x1f\\x18\\x03\\x00\\x00\\x00\\x1f\\x1a\" + // 0x1F180300: 0x00001F1A\n\t\"\\x1f\\x19\\x03\\x00\\x00\\x00\\x1f\\x1b\" + // 0x1F190300: 0x00001F1B\n\t\"\\x1f\\x18\\x03\\x01\\x00\\x00\\x1f\\x1c\" + // 0x1F180301: 0x00001F1C\n\t\"\\x1f\\x19\\x03\\x01\\x00\\x00\\x1f\\x1d\" + // 0x1F190301: 0x00001F1D\n\t\"\\x03\\xb7\\x03\\x13\\x00\\x00\\x1f \" + // 0x03B70313: 0x00001F20\n\t\"\\x03\\xb7\\x03\\x14\\x00\\x00\\x1f!\" + // 0x03B70314: 0x00001F21\n\t\"\\x1f \\x03\\x00\\x00\\x00\\x1f\\\"\" + // 0x1F200300: 0x00001F22\n\t\"\\x1f!\\x03\\x00\\x00\\x00\\x1f#\" + // 0x1F210300: 0x00001F23\n\t\"\\x1f \\x03\\x01\\x00\\x00\\x1f$\" + // 0x1F200301: 0x00001F24\n\t\"\\x1f!\\x03\\x01\\x00\\x00\\x1f%\" + // 0x1F210301: 0x00001F25\n\t\"\\x1f \\x03B\\x00\\x00\\x1f&\" + // 0x1F200342: 0x00001F26\n\t\"\\x1f!\\x03B\\x00\\x00\\x1f'\" + // 0x1F210342: 0x00001F27\n\t\"\\x03\\x97\\x03\\x13\\x00\\x00\\x1f(\" + // 0x03970313: 0x00001F28\n\t\"\\x03\\x97\\x03\\x14\\x00\\x00\\x1f)\" + // 0x03970314: 0x00001F29\n\t\"\\x1f(\\x03\\x00\\x00\\x00\\x1f*\" + // 0x1F280300: 0x00001F2A\n\t\"\\x1f)\\x03\\x00\\x00\\x00\\x1f+\" + // 0x1F290300: 0x00001F2B\n\t\"\\x1f(\\x03\\x01\\x00\\x00\\x1f,\" + // 0x1F280301: 0x00001F2C\n\t\"\\x1f)\\x03\\x01\\x00\\x00\\x1f-\" + // 0x1F290301: 0x00001F2D\n\t\"\\x1f(\\x03B\\x00\\x00\\x1f.\" + // 0x1F280342: 0x00001F2E\n\t\"\\x1f)\\x03B\\x00\\x00\\x1f/\" + // 0x1F290342: 0x00001F2F\n\t\"\\x03\\xb9\\x03\\x13\\x00\\x00\\x1f0\" + // 0x03B90313: 0x00001F30\n\t\"\\x03\\xb9\\x03\\x14\\x00\\x00\\x1f1\" + // 0x03B90314: 0x00001F31\n\t\"\\x1f0\\x03\\x00\\x00\\x00\\x1f2\" + // 0x1F300300: 0x00001F32\n\t\"\\x1f1\\x03\\x00\\x00\\x00\\x1f3\" + // 0x1F310300: 0x00001F33\n\t\"\\x1f0\\x03\\x01\\x00\\x00\\x1f4\" + // 0x1F300301: 0x00001F34\n\t\"\\x1f1\\x03\\x01\\x00\\x00\\x1f5\" + // 0x1F310301: 0x00001F35\n\t\"\\x1f0\\x03B\\x00\\x00\\x1f6\" + // 0x1F300342: 0x00001F36\n\t\"\\x1f1\\x03B\\x00\\x00\\x1f7\" + // 0x1F310342: 0x00001F37\n\t\"\\x03\\x99\\x03\\x13\\x00\\x00\\x1f8\" + // 0x03990313: 0x00001F38\n\t\"\\x03\\x99\\x03\\x14\\x00\\x00\\x1f9\" + // 0x03990314: 0x00001F39\n\t\"\\x1f8\\x03\\x00\\x00\\x00\\x1f:\" + // 0x1F380300: 0x00001F3A\n\t\"\\x1f9\\x03\\x00\\x00\\x00\\x1f;\" + // 0x1F390300: 0x00001F3B\n\t\"\\x1f8\\x03\\x01\\x00\\x00\\x1f<\" + // 0x1F380301: 0x00001F3C\n\t\"\\x1f9\\x03\\x01\\x00\\x00\\x1f=\" + // 0x1F390301: 0x00001F3D\n\t\"\\x1f8\\x03B\\x00\\x00\\x1f>\" + // 0x1F380342: 0x00001F3E\n\t\"\\x1f9\\x03B\\x00\\x00\\x1f?\" + // 0x1F390342: 0x00001F3F\n\t\"\\x03\\xbf\\x03\\x13\\x00\\x00\\x1f@\" + // 0x03BF0313: 0x00001F40\n\t\"\\x03\\xbf\\x03\\x14\\x00\\x00\\x1fA\" + // 0x03BF0314: 0x00001F41\n\t\"\\x1f@\\x03\\x00\\x00\\x00\\x1fB\" + // 0x1F400300: 0x00001F42\n\t\"\\x1fA\\x03\\x00\\x00\\x00\\x1fC\" + // 0x1F410300: 0x00001F43\n\t\"\\x1f@\\x03\\x01\\x00\\x00\\x1fD\" + // 0x1F400301: 0x00001F44\n\t\"\\x1fA\\x03\\x01\\x00\\x00\\x1fE\" + // 0x1F410301: 0x00001F45\n\t\"\\x03\\x9f\\x03\\x13\\x00\\x00\\x1fH\" + // 0x039F0313: 0x00001F48\n\t\"\\x03\\x9f\\x03\\x14\\x00\\x00\\x1fI\" + // 0x039F0314: 0x00001F49\n\t\"\\x1fH\\x03\\x00\\x00\\x00\\x1fJ\" + // 0x1F480300: 0x00001F4A\n\t\"\\x1fI\\x03\\x00\\x00\\x00\\x1fK\" + // 0x1F490300: 0x00001F4B\n\t\"\\x1fH\\x03\\x01\\x00\\x00\\x1fL\" + // 0x1F480301: 0x00001F4C\n\t\"\\x1fI\\x03\\x01\\x00\\x00\\x1fM\" + // 0x1F490301: 0x00001F4D\n\t\"\\x03\\xc5\\x03\\x13\\x00\\x00\\x1fP\" + // 0x03C50313: 0x00001F50\n\t\"\\x03\\xc5\\x03\\x14\\x00\\x00\\x1fQ\" + // 0x03C50314: 0x00001F51\n\t\"\\x1fP\\x03\\x00\\x00\\x00\\x1fR\" + // 0x1F500300: 0x00001F52\n\t\"\\x1fQ\\x03\\x00\\x00\\x00\\x1fS\" + // 0x1F510300: 0x00001F53\n\t\"\\x1fP\\x03\\x01\\x00\\x00\\x1fT\" + // 0x1F500301: 0x00001F54\n\t\"\\x1fQ\\x03\\x01\\x00\\x00\\x1fU\" + // 0x1F510301: 0x00001F55\n\t\"\\x1fP\\x03B\\x00\\x00\\x1fV\" + // 0x1F500342: 0x00001F56\n\t\"\\x1fQ\\x03B\\x00\\x00\\x1fW\" + // 0x1F510342: 0x00001F57\n\t\"\\x03\\xa5\\x03\\x14\\x00\\x00\\x1fY\" + // 0x03A50314: 0x00001F59\n\t\"\\x1fY\\x03\\x00\\x00\\x00\\x1f[\" + // 0x1F590300: 0x00001F5B\n\t\"\\x1fY\\x03\\x01\\x00\\x00\\x1f]\" + // 0x1F590301: 0x00001F5D\n\t\"\\x1fY\\x03B\\x00\\x00\\x1f_\" + // 0x1F590342: 0x00001F5F\n\t\"\\x03\\xc9\\x03\\x13\\x00\\x00\\x1f`\" + // 0x03C90313: 0x00001F60\n\t\"\\x03\\xc9\\x03\\x14\\x00\\x00\\x1fa\" + // 0x03C90314: 0x00001F61\n\t\"\\x1f`\\x03\\x00\\x00\\x00\\x1fb\" + // 0x1F600300: 0x00001F62\n\t\"\\x1fa\\x03\\x00\\x00\\x00\\x1fc\" + // 0x1F610300: 0x00001F63\n\t\"\\x1f`\\x03\\x01\\x00\\x00\\x1fd\" + // 0x1F600301: 0x00001F64\n\t\"\\x1fa\\x03\\x01\\x00\\x00\\x1fe\" + // 0x1F610301: 0x00001F65\n\t\"\\x1f`\\x03B\\x00\\x00\\x1ff\" + // 0x1F600342: 0x00001F66\n\t\"\\x1fa\\x03B\\x00\\x00\\x1fg\" + // 0x1F610342: 0x00001F67\n\t\"\\x03\\xa9\\x03\\x13\\x00\\x00\\x1fh\" + // 0x03A90313: 0x00001F68\n\t\"\\x03\\xa9\\x03\\x14\\x00\\x00\\x1fi\" + // 0x03A90314: 0x00001F69\n\t\"\\x1fh\\x03\\x00\\x00\\x00\\x1fj\" + // 0x1F680300: 0x00001F6A\n\t\"\\x1fi\\x03\\x00\\x00\\x00\\x1fk\" + // 0x1F690300: 0x00001F6B\n\t\"\\x1fh\\x03\\x01\\x00\\x00\\x1fl\" + // 0x1F680301: 0x00001F6C\n\t\"\\x1fi\\x03\\x01\\x00\\x00\\x1fm\" + // 0x1F690301: 0x00001F6D\n\t\"\\x1fh\\x03B\\x00\\x00\\x1fn\" + // 0x1F680342: 0x00001F6E\n\t\"\\x1fi\\x03B\\x00\\x00\\x1fo\" + // 0x1F690342: 0x00001F6F\n\t\"\\x03\\xb1\\x03\\x00\\x00\\x00\\x1fp\" + // 0x03B10300: 0x00001F70\n\t\"\\x03\\xb5\\x03\\x00\\x00\\x00\\x1fr\" + // 0x03B50300: 0x00001F72\n\t\"\\x03\\xb7\\x03\\x00\\x00\\x00\\x1ft\" + // 0x03B70300: 0x00001F74\n\t\"\\x03\\xb9\\x03\\x00\\x00\\x00\\x1fv\" + // 0x03B90300: 0x00001F76\n\t\"\\x03\\xbf\\x03\\x00\\x00\\x00\\x1fx\" + // 0x03BF0300: 0x00001F78\n\t\"\\x03\\xc5\\x03\\x00\\x00\\x00\\x1fz\" + // 0x03C50300: 0x00001F7A\n\t\"\\x03\\xc9\\x03\\x00\\x00\\x00\\x1f|\" + // 0x03C90300: 0x00001F7C\n\t\"\\x1f\\x00\\x03E\\x00\\x00\\x1f\\x80\" + // 0x1F000345: 0x00001F80\n\t\"\\x1f\\x01\\x03E\\x00\\x00\\x1f\\x81\" + // 0x1F010345: 0x00001F81\n\t\"\\x1f\\x02\\x03E\\x00\\x00\\x1f\\x82\" + // 0x1F020345: 0x00001F82\n\t\"\\x1f\\x03\\x03E\\x00\\x00\\x1f\\x83\" + // 0x1F030345: 0x00001F83\n\t\"\\x1f\\x04\\x03E\\x00\\x00\\x1f\\x84\" + // 0x1F040345: 0x00001F84\n\t\"\\x1f\\x05\\x03E\\x00\\x00\\x1f\\x85\" + // 0x1F050345: 0x00001F85\n\t\"\\x1f\\x06\\x03E\\x00\\x00\\x1f\\x86\" + // 0x1F060345: 0x00001F86\n\t\"\\x1f\\a\\x03E\\x00\\x00\\x1f\\x87\" + // 0x1F070345: 0x00001F87\n\t\"\\x1f\\b\\x03E\\x00\\x00\\x1f\\x88\" + // 0x1F080345: 0x00001F88\n\t\"\\x1f\\t\\x03E\\x00\\x00\\x1f\\x89\" + // 0x1F090345: 0x00001F89\n\t\"\\x1f\\n\\x03E\\x00\\x00\\x1f\\x8a\" + // 0x1F0A0345: 0x00001F8A\n\t\"\\x1f\\v\\x03E\\x00\\x00\\x1f\\x8b\" + // 0x1F0B0345: 0x00001F8B\n\t\"\\x1f\\f\\x03E\\x00\\x00\\x1f\\x8c\" + // 0x1F0C0345: 0x00001F8C\n\t\"\\x1f\\r\\x03E\\x00\\x00\\x1f\\x8d\" + // 0x1F0D0345: 0x00001F8D\n\t\"\\x1f\\x0e\\x03E\\x00\\x00\\x1f\\x8e\" + // 0x1F0E0345: 0x00001F8E\n\t\"\\x1f\\x0f\\x03E\\x00\\x00\\x1f\\x8f\" + // 0x1F0F0345: 0x00001F8F\n\t\"\\x1f \\x03E\\x00\\x00\\x1f\\x90\" + // 0x1F200345: 0x00001F90\n\t\"\\x1f!\\x03E\\x00\\x00\\x1f\\x91\" + // 0x1F210345: 0x00001F91\n\t\"\\x1f\\\"\\x03E\\x00\\x00\\x1f\\x92\" + // 0x1F220345: 0x00001F92\n\t\"\\x1f#\\x03E\\x00\\x00\\x1f\\x93\" + // 0x1F230345: 0x00001F93\n\t\"\\x1f$\\x03E\\x00\\x00\\x1f\\x94\" + // 0x1F240345: 0x00001F94\n\t\"\\x1f%\\x03E\\x00\\x00\\x1f\\x95\" + // 0x1F250345: 0x00001F95\n\t\"\\x1f&\\x03E\\x00\\x00\\x1f\\x96\" + // 0x1F260345: 0x00001F96\n\t\"\\x1f'\\x03E\\x00\\x00\\x1f\\x97\" + // 0x1F270345: 0x00001F97\n\t\"\\x1f(\\x03E\\x00\\x00\\x1f\\x98\" + // 0x1F280345: 0x00001F98\n\t\"\\x1f)\\x03E\\x00\\x00\\x1f\\x99\" + // 0x1F290345: 0x00001F99\n\t\"\\x1f*\\x03E\\x00\\x00\\x1f\\x9a\" + // 0x1F2A0345: 0x00001F9A\n\t\"\\x1f+\\x03E\\x00\\x00\\x1f\\x9b\" + // 0x1F2B0345: 0x00001F9B\n\t\"\\x1f,\\x03E\\x00\\x00\\x1f\\x9c\" + // 0x1F2C0345: 0x00001F9C\n\t\"\\x1f-\\x03E\\x00\\x00\\x1f\\x9d\" + // 0x1F2D0345: 0x00001F9D\n\t\"\\x1f.\\x03E\\x00\\x00\\x1f\\x9e\" + // 0x1F2E0345: 0x00001F9E\n\t\"\\x1f/\\x03E\\x00\\x00\\x1f\\x9f\" + // 0x1F2F0345: 0x00001F9F\n\t\"\\x1f`\\x03E\\x00\\x00\\x1f\\xa0\" + // 0x1F600345: 0x00001FA0\n\t\"\\x1fa\\x03E\\x00\\x00\\x1f\\xa1\" + // 0x1F610345: 0x00001FA1\n\t\"\\x1fb\\x03E\\x00\\x00\\x1f\\xa2\" + // 0x1F620345: 0x00001FA2\n\t\"\\x1fc\\x03E\\x00\\x00\\x1f\\xa3\" + // 0x1F630345: 0x00001FA3\n\t\"\\x1fd\\x03E\\x00\\x00\\x1f\\xa4\" + // 0x1F640345: 0x00001FA4\n\t\"\\x1fe\\x03E\\x00\\x00\\x1f\\xa5\" + // 0x1F650345: 0x00001FA5\n\t\"\\x1ff\\x03E\\x00\\x00\\x1f\\xa6\" + // 0x1F660345: 0x00001FA6\n\t\"\\x1fg\\x03E\\x00\\x00\\x1f\\xa7\" + // 0x1F670345: 0x00001FA7\n\t\"\\x1fh\\x03E\\x00\\x00\\x1f\\xa8\" + // 0x1F680345: 0x00001FA8\n\t\"\\x1fi\\x03E\\x00\\x00\\x1f\\xa9\" + // 0x1F690345: 0x00001FA9\n\t\"\\x1fj\\x03E\\x00\\x00\\x1f\\xaa\" + // 0x1F6A0345: 0x00001FAA\n\t\"\\x1fk\\x03E\\x00\\x00\\x1f\\xab\" + // 0x1F6B0345: 0x00001FAB\n\t\"\\x1fl\\x03E\\x00\\x00\\x1f\\xac\" + // 0x1F6C0345: 0x00001FAC\n\t\"\\x1fm\\x03E\\x00\\x00\\x1f\\xad\" + // 0x1F6D0345: 0x00001FAD\n\t\"\\x1fn\\x03E\\x00\\x00\\x1f\\xae\" + // 0x1F6E0345: 0x00001FAE\n\t\"\\x1fo\\x03E\\x00\\x00\\x1f\\xaf\" + // 0x1F6F0345: 0x00001FAF\n\t\"\\x03\\xb1\\x03\\x06\\x00\\x00\\x1f\\xb0\" + // 0x03B10306: 0x00001FB0\n\t\"\\x03\\xb1\\x03\\x04\\x00\\x00\\x1f\\xb1\" + // 0x03B10304: 0x00001FB1\n\t\"\\x1fp\\x03E\\x00\\x00\\x1f\\xb2\" + // 0x1F700345: 0x00001FB2\n\t\"\\x03\\xb1\\x03E\\x00\\x00\\x1f\\xb3\" + // 0x03B10345: 0x00001FB3\n\t\"\\x03\\xac\\x03E\\x00\\x00\\x1f\\xb4\" + // 0x03AC0345: 0x00001FB4\n\t\"\\x03\\xb1\\x03B\\x00\\x00\\x1f\\xb6\" + // 0x03B10342: 0x00001FB6\n\t\"\\x1f\\xb6\\x03E\\x00\\x00\\x1f\\xb7\" + // 0x1FB60345: 0x00001FB7\n\t\"\\x03\\x91\\x03\\x06\\x00\\x00\\x1f\\xb8\" + // 0x03910306: 0x00001FB8\n\t\"\\x03\\x91\\x03\\x04\\x00\\x00\\x1f\\xb9\" + // 0x03910304: 0x00001FB9\n\t\"\\x03\\x91\\x03\\x00\\x00\\x00\\x1f\\xba\" + // 0x03910300: 0x00001FBA\n\t\"\\x03\\x91\\x03E\\x00\\x00\\x1f\\xbc\" + // 0x03910345: 0x00001FBC\n\t\"\\x00\\xa8\\x03B\\x00\\x00\\x1f\\xc1\" + // 0x00A80342: 0x00001FC1\n\t\"\\x1ft\\x03E\\x00\\x00\\x1f\\xc2\" + // 0x1F740345: 0x00001FC2\n\t\"\\x03\\xb7\\x03E\\x00\\x00\\x1f\\xc3\" + // 0x03B70345: 0x00001FC3\n\t\"\\x03\\xae\\x03E\\x00\\x00\\x1f\\xc4\" + // 0x03AE0345: 0x00001FC4\n\t\"\\x03\\xb7\\x03B\\x00\\x00\\x1f\\xc6\" + // 0x03B70342: 0x00001FC6\n\t\"\\x1f\\xc6\\x03E\\x00\\x00\\x1f\\xc7\" + // 0x1FC60345: 0x00001FC7\n\t\"\\x03\\x95\\x03\\x00\\x00\\x00\\x1f\\xc8\" + // 0x03950300: 0x00001FC8\n\t\"\\x03\\x97\\x03\\x00\\x00\\x00\\x1f\\xca\" + // 0x03970300: 0x00001FCA\n\t\"\\x03\\x97\\x03E\\x00\\x00\\x1f\\xcc\" + // 0x03970345: 0x00001FCC\n\t\"\\x1f\\xbf\\x03\\x00\\x00\\x00\\x1f\\xcd\" + // 0x1FBF0300: 0x00001FCD\n\t\"\\x1f\\xbf\\x03\\x01\\x00\\x00\\x1f\\xce\" + // 0x1FBF0301: 0x00001FCE\n\t\"\\x1f\\xbf\\x03B\\x00\\x00\\x1f\\xcf\" + // 0x1FBF0342: 0x00001FCF\n\t\"\\x03\\xb9\\x03\\x06\\x00\\x00\\x1f\\xd0\" + // 0x03B90306: 0x00001FD0\n\t\"\\x03\\xb9\\x03\\x04\\x00\\x00\\x1f\\xd1\" + // 0x03B90304: 0x00001FD1\n\t\"\\x03\\xca\\x03\\x00\\x00\\x00\\x1f\\xd2\" + // 0x03CA0300: 0x00001FD2\n\t\"\\x03\\xb9\\x03B\\x00\\x00\\x1f\\xd6\" + // 0x03B90342: 0x00001FD6\n\t\"\\x03\\xca\\x03B\\x00\\x00\\x1f\\xd7\" + // 0x03CA0342: 0x00001FD7\n\t\"\\x03\\x99\\x03\\x06\\x00\\x00\\x1f\\xd8\" + // 0x03990306: 0x00001FD8\n\t\"\\x03\\x99\\x03\\x04\\x00\\x00\\x1f\\xd9\" + // 0x03990304: 0x00001FD9\n\t\"\\x03\\x99\\x03\\x00\\x00\\x00\\x1f\\xda\" + // 0x03990300: 0x00001FDA\n\t\"\\x1f\\xfe\\x03\\x00\\x00\\x00\\x1f\\xdd\" + // 0x1FFE0300: 0x00001FDD\n\t\"\\x1f\\xfe\\x03\\x01\\x00\\x00\\x1f\\xde\" + // 0x1FFE0301: 0x00001FDE\n\t\"\\x1f\\xfe\\x03B\\x00\\x00\\x1f\\xdf\" + // 0x1FFE0342: 0x00001FDF\n\t\"\\x03\\xc5\\x03\\x06\\x00\\x00\\x1f\\xe0\" + // 0x03C50306: 0x00001FE0\n\t\"\\x03\\xc5\\x03\\x04\\x00\\x00\\x1f\\xe1\" + // 0x03C50304: 0x00001FE1\n\t\"\\x03\\xcb\\x03\\x00\\x00\\x00\\x1f\\xe2\" + // 0x03CB0300: 0x00001FE2\n\t\"\\x03\\xc1\\x03\\x13\\x00\\x00\\x1f\\xe4\" + // 0x03C10313: 0x00001FE4\n\t\"\\x03\\xc1\\x03\\x14\\x00\\x00\\x1f\\xe5\" + // 0x03C10314: 0x00001FE5\n\t\"\\x03\\xc5\\x03B\\x00\\x00\\x1f\\xe6\" + // 0x03C50342: 0x00001FE6\n\t\"\\x03\\xcb\\x03B\\x00\\x00\\x1f\\xe7\" + // 0x03CB0342: 0x00001FE7\n\t\"\\x03\\xa5\\x03\\x06\\x00\\x00\\x1f\\xe8\" + // 0x03A50306: 0x00001FE8\n\t\"\\x03\\xa5\\x03\\x04\\x00\\x00\\x1f\\xe9\" + // 0x03A50304: 0x00001FE9\n\t\"\\x03\\xa5\\x03\\x00\\x00\\x00\\x1f\\xea\" + // 0x03A50300: 0x00001FEA\n\t\"\\x03\\xa1\\x03\\x14\\x00\\x00\\x1f\\xec\" + // 0x03A10314: 0x00001FEC\n\t\"\\x00\\xa8\\x03\\x00\\x00\\x00\\x1f\\xed\" + // 0x00A80300: 0x00001FED\n\t\"\\x1f|\\x03E\\x00\\x00\\x1f\\xf2\" + // 0x1F7C0345: 0x00001FF2\n\t\"\\x03\\xc9\\x03E\\x00\\x00\\x1f\\xf3\" + // 0x03C90345: 0x00001FF3\n\t\"\\x03\\xce\\x03E\\x00\\x00\\x1f\\xf4\" + // 0x03CE0345: 0x00001FF4\n\t\"\\x03\\xc9\\x03B\\x00\\x00\\x1f\\xf6\" + // 0x03C90342: 0x00001FF6\n\t\"\\x1f\\xf6\\x03E\\x00\\x00\\x1f\\xf7\" + // 0x1FF60345: 0x00001FF7\n\t\"\\x03\\x9f\\x03\\x00\\x00\\x00\\x1f\\xf8\" + // 0x039F0300: 0x00001FF8\n\t\"\\x03\\xa9\\x03\\x00\\x00\\x00\\x1f\\xfa\" + // 0x03A90300: 0x00001FFA\n\t\"\\x03\\xa9\\x03E\\x00\\x00\\x1f\\xfc\" + // 0x03A90345: 0x00001FFC\n\t\"!\\x90\\x038\\x00\\x00!\\x9a\" + // 0x21900338: 0x0000219A\n\t\"!\\x92\\x038\\x00\\x00!\\x9b\" + // 0x21920338: 0x0000219B\n\t\"!\\x94\\x038\\x00\\x00!\\xae\" + // 0x21940338: 0x000021AE\n\t\"!\\xd0\\x038\\x00\\x00!\\xcd\" + // 0x21D00338: 0x000021CD\n\t\"!\\xd4\\x038\\x00\\x00!\\xce\" + // 0x21D40338: 0x000021CE\n\t\"!\\xd2\\x038\\x00\\x00!\\xcf\" + // 0x21D20338: 0x000021CF\n\t\"\\\"\\x03\\x038\\x00\\x00\\\"\\x04\" + // 0x22030338: 0x00002204\n\t\"\\\"\\b\\x038\\x00\\x00\\\"\\t\" + // 0x22080338: 0x00002209\n\t\"\\\"\\v\\x038\\x00\\x00\\\"\\f\" + // 0x220B0338: 0x0000220C\n\t\"\\\"#\\x038\\x00\\x00\\\"$\" + // 0x22230338: 0x00002224\n\t\"\\\"%\\x038\\x00\\x00\\\"&\" + // 0x22250338: 0x00002226\n\t\"\\\"<\\x038\\x00\\x00\\\"A\" + // 0x223C0338: 0x00002241\n\t\"\\\"C\\x038\\x00\\x00\\\"D\" + // 0x22430338: 0x00002244\n\t\"\\\"E\\x038\\x00\\x00\\\"G\" + // 0x22450338: 0x00002247\n\t\"\\\"H\\x038\\x00\\x00\\\"I\" + // 0x22480338: 0x00002249\n\t\"\\x00=\\x038\\x00\\x00\\\"`\" + // 0x003D0338: 0x00002260\n\t\"\\\"a\\x038\\x00\\x00\\\"b\" + // 0x22610338: 0x00002262\n\t\"\\\"M\\x038\\x00\\x00\\\"m\" + // 0x224D0338: 0x0000226D\n\t\"\\x00<\\x038\\x00\\x00\\\"n\" + // 0x003C0338: 0x0000226E\n\t\"\\x00>\\x038\\x00\\x00\\\"o\" + // 0x003E0338: 0x0000226F\n\t\"\\\"d\\x038\\x00\\x00\\\"p\" + // 0x22640338: 0x00002270\n\t\"\\\"e\\x038\\x00\\x00\\\"q\" + // 0x22650338: 0x00002271\n\t\"\\\"r\\x038\\x00\\x00\\\"t\" + // 0x22720338: 0x00002274\n\t\"\\\"s\\x038\\x00\\x00\\\"u\" + // 0x22730338: 0x00002275\n\t\"\\\"v\\x038\\x00\\x00\\\"x\" + // 0x22760338: 0x00002278\n\t\"\\\"w\\x038\\x00\\x00\\\"y\" + // 0x22770338: 0x00002279\n\t\"\\\"z\\x038\\x00\\x00\\\"\\x80\" + // 0x227A0338: 0x00002280\n\t\"\\\"{\\x038\\x00\\x00\\\"\\x81\" + // 0x227B0338: 0x00002281\n\t\"\\\"\\x82\\x038\\x00\\x00\\\"\\x84\" + // 0x22820338: 0x00002284\n\t\"\\\"\\x83\\x038\\x00\\x00\\\"\\x85\" + // 0x22830338: 0x00002285\n\t\"\\\"\\x86\\x038\\x00\\x00\\\"\\x88\" + // 0x22860338: 0x00002288\n\t\"\\\"\\x87\\x038\\x00\\x00\\\"\\x89\" + // 0x22870338: 0x00002289\n\t\"\\\"\\xa2\\x038\\x00\\x00\\\"\\xac\" + // 0x22A20338: 0x000022AC\n\t\"\\\"\\xa8\\x038\\x00\\x00\\\"\\xad\" + // 0x22A80338: 0x000022AD\n\t\"\\\"\\xa9\\x038\\x00\\x00\\\"\\xae\" + // 0x22A90338: 0x000022AE\n\t\"\\\"\\xab\\x038\\x00\\x00\\\"\\xaf\" + // 0x22AB0338: 0x000022AF\n\t\"\\\"|\\x038\\x00\\x00\\\"\\xe0\" + // 0x227C0338: 0x000022E0\n\t\"\\\"}\\x038\\x00\\x00\\\"\\xe1\" + // 0x227D0338: 0x000022E1\n\t\"\\\"\\x91\\x038\\x00\\x00\\\"\\xe2\" + // 0x22910338: 0x000022E2\n\t\"\\\"\\x92\\x038\\x00\\x00\\\"\\xe3\" + // 0x22920338: 0x000022E3\n\t\"\\\"\\xb2\\x038\\x00\\x00\\\"\\xea\" + // 0x22B20338: 0x000022EA\n\t\"\\\"\\xb3\\x038\\x00\\x00\\\"\\xeb\" + // 0x22B30338: 0x000022EB\n\t\"\\\"\\xb4\\x038\\x00\\x00\\\"\\xec\" + // 0x22B40338: 0x000022EC\n\t\"\\\"\\xb5\\x038\\x00\\x00\\\"\\xed\" + // 0x22B50338: 0x000022ED\n\t\"0K0\\x99\\x00\\x000L\" + // 0x304B3099: 0x0000304C\n\t\"0M0\\x99\\x00\\x000N\" + // 0x304D3099: 0x0000304E\n\t\"0O0\\x99\\x00\\x000P\" + // 0x304F3099: 0x00003050\n\t\"0Q0\\x99\\x00\\x000R\" + // 0x30513099: 0x00003052\n\t\"0S0\\x99\\x00\\x000T\" + // 0x30533099: 0x00003054\n\t\"0U0\\x99\\x00\\x000V\" + // 0x30553099: 0x00003056\n\t\"0W0\\x99\\x00\\x000X\" + // 0x30573099: 0x00003058\n\t\"0Y0\\x99\\x00\\x000Z\" + // 0x30593099: 0x0000305A\n\t\"0[0\\x99\\x00\\x000\\\\\" + // 0x305B3099: 0x0000305C\n\t\"0]0\\x99\\x00\\x000^\" + // 0x305D3099: 0x0000305E\n\t\"0_0\\x99\\x00\\x000`\" + // 0x305F3099: 0x00003060\n\t\"0a0\\x99\\x00\\x000b\" + // 0x30613099: 0x00003062\n\t\"0d0\\x99\\x00\\x000e\" + // 0x30643099: 0x00003065\n\t\"0f0\\x99\\x00\\x000g\" + // 0x30663099: 0x00003067\n\t\"0h0\\x99\\x00\\x000i\" + // 0x30683099: 0x00003069\n\t\"0o0\\x99\\x00\\x000p\" + // 0x306F3099: 0x00003070\n\t\"0o0\\x9a\\x00\\x000q\" + // 0x306F309A: 0x00003071\n\t\"0r0\\x99\\x00\\x000s\" + // 0x30723099: 0x00003073\n\t\"0r0\\x9a\\x00\\x000t\" + // 0x3072309A: 0x00003074\n\t\"0u0\\x99\\x00\\x000v\" + // 0x30753099: 0x00003076\n\t\"0u0\\x9a\\x00\\x000w\" + // 0x3075309A: 0x00003077\n\t\"0x0\\x99\\x00\\x000y\" + // 0x30783099: 0x00003079\n\t\"0x0\\x9a\\x00\\x000z\" + // 0x3078309A: 0x0000307A\n\t\"0{0\\x99\\x00\\x000|\" + // 0x307B3099: 0x0000307C\n\t\"0{0\\x9a\\x00\\x000}\" + // 0x307B309A: 0x0000307D\n\t\"0F0\\x99\\x00\\x000\\x94\" + // 0x30463099: 0x00003094\n\t\"0\\x9d0\\x99\\x00\\x000\\x9e\" + // 0x309D3099: 0x0000309E\n\t\"0\\xab0\\x99\\x00\\x000\\xac\" + // 0x30AB3099: 0x000030AC\n\t\"0\\xad0\\x99\\x00\\x000\\xae\" + // 0x30AD3099: 0x000030AE\n\t\"0\\xaf0\\x99\\x00\\x000\\xb0\" + // 0x30AF3099: 0x000030B0\n\t\"0\\xb10\\x99\\x00\\x000\\xb2\" + // 0x30B13099: 0x000030B2\n\t\"0\\xb30\\x99\\x00\\x000\\xb4\" + // 0x30B33099: 0x000030B4\n\t\"0\\xb50\\x99\\x00\\x000\\xb6\" + // 0x30B53099: 0x000030B6\n\t\"0\\xb70\\x99\\x00\\x000\\xb8\" + // 0x30B73099: 0x000030B8\n\t\"0\\xb90\\x99\\x00\\x000\\xba\" + // 0x30B93099: 0x000030BA\n\t\"0\\xbb0\\x99\\x00\\x000\\xbc\" + // 0x30BB3099: 0x000030BC\n\t\"0\\xbd0\\x99\\x00\\x000\\xbe\" + // 0x30BD3099: 0x000030BE\n\t\"0\\xbf0\\x99\\x00\\x000\\xc0\" + // 0x30BF3099: 0x000030C0\n\t\"0\\xc10\\x99\\x00\\x000\\xc2\" + // 0x30C13099: 0x000030C2\n\t\"0\\xc40\\x99\\x00\\x000\\xc5\" + // 0x30C43099: 0x000030C5\n\t\"0\\xc60\\x99\\x00\\x000\\xc7\" + // 0x30C63099: 0x000030C7\n\t\"0\\xc80\\x99\\x00\\x000\\xc9\" + // 0x30C83099: 0x000030C9\n\t\"0\\xcf0\\x99\\x00\\x000\\xd0\" + // 0x30CF3099: 0x000030D0\n\t\"0\\xcf0\\x9a\\x00\\x000\\xd1\" + // 0x30CF309A: 0x000030D1\n\t\"0\\xd20\\x99\\x00\\x000\\xd3\" + // 0x30D23099: 0x000030D3\n\t\"0\\xd20\\x9a\\x00\\x000\\xd4\" + // 0x30D2309A: 0x000030D4\n\t\"0\\xd50\\x99\\x00\\x000\\xd6\" + // 0x30D53099: 0x000030D6\n\t\"0\\xd50\\x9a\\x00\\x000\\xd7\" + // 0x30D5309A: 0x000030D7\n\t\"0\\xd80\\x99\\x00\\x000\\xd9\" + // 0x30D83099: 0x000030D9\n\t\"0\\xd80\\x9a\\x00\\x000\\xda\" + // 0x30D8309A: 0x000030DA\n\t\"0\\xdb0\\x99\\x00\\x000\\xdc\" + // 0x30DB3099: 0x000030DC\n\t\"0\\xdb0\\x9a\\x00\\x000\\xdd\" + // 0x30DB309A: 0x000030DD\n\t\"0\\xa60\\x99\\x00\\x000\\xf4\" + // 0x30A63099: 0x000030F4\n\t\"0\\xef0\\x99\\x00\\x000\\xf7\" + // 0x30EF3099: 0x000030F7\n\t\"0\\xf00\\x99\\x00\\x000\\xf8\" + // 0x30F03099: 0x000030F8\n\t\"0\\xf10\\x99\\x00\\x000\\xf9\" + // 0x30F13099: 0x000030F9\n\t\"0\\xf20\\x99\\x00\\x000\\xfa\" + // 0x30F23099: 0x000030FA\n\t\"0\\xfd0\\x99\\x00\\x000\\xfe\" + // 0x30FD3099: 0x000030FE\n\t\"\\x10\\x99\\x10\\xba\\x00\\x01\\x10\\x9a\" + // 0x109910BA: 0x0001109A\n\t\"\\x10\\x9b\\x10\\xba\\x00\\x01\\x10\\x9c\" + // 0x109B10BA: 0x0001109C\n\t\"\\x10\\xa5\\x10\\xba\\x00\\x01\\x10\\xab\" + // 0x10A510BA: 0x000110AB\n\t\"\\x111\\x11'\\x00\\x01\\x11.\" + // 0x11311127: 0x0001112E\n\t\"\\x112\\x11'\\x00\\x01\\x11/\" + // 0x11321127: 0x0001112F\n\t\"\\x13G\\x13>\\x00\\x01\\x13K\" + // 0x1347133E: 0x0001134B\n\t\"\\x13G\\x13W\\x00\\x01\\x13L\" + // 0x13471357: 0x0001134C\n\t\"\\x14\\xb9\\x14\\xba\\x00\\x01\\x14\\xbb\" + // 0x14B914BA: 0x000114BB\n\t\"\\x14\\xb9\\x14\\xb0\\x00\\x01\\x14\\xbc\" + // 0x14B914B0: 0x000114BC\n\t\"\\x14\\xb9\\x14\\xbd\\x00\\x01\\x14\\xbe\" + // 0x14B914BD: 0x000114BE\n\t\"\\x15\\xb8\\x15\\xaf\\x00\\x01\\x15\\xba\" + // 0x15B815AF: 0x000115BA\n\t\"\\x15\\xb9\\x15\\xaf\\x00\\x01\\x15\\xbb\" + // 0x15B915AF: 0x000115BB\n\t\"\"\n\t// Total size of tables: 53KB (54514 bytes)\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/tables12.0.0.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\n// +build go1.14\n\npackage norm\n\nimport \"sync\"\n\nconst (\n\t// Version is the Unicode edition from which the tables are derived.\n\tVersion = \"12.0.0\"\n\n\t// MaxTransformChunkSize indicates the maximum number of bytes that Transform\n\t// may need to write atomically for any Form. Making a destination buffer at\n\t// least this size ensures that Transform can always make progress and that\n\t// the user does not need to grow the buffer on an ErrShortDst.\n\tMaxTransformChunkSize = 35 + maxNonStarters*4\n)\n\nvar ccc = [55]uint8{\n\t0, 1, 7, 8, 9, 10, 11, 12,\n\t13, 14, 15, 16, 17, 18, 19, 20,\n\t21, 22, 23, 24, 25, 26, 27, 28,\n\t29, 30, 31, 32, 33, 34, 35, 36,\n\t84, 91, 103, 107, 118, 122, 129, 130,\n\t132, 202, 214, 216, 218, 220, 222, 224,\n\t226, 228, 230, 232, 233, 234, 240,\n}\n\nconst (\n\tfirstMulti            = 0x186D\n\tfirstCCC              = 0x2CA1\n\tendMulti              = 0x2F63\n\tfirstLeadingCCC       = 0x49B1\n\tfirstCCCZeroExcept    = 0x4A7B\n\tfirstStarterWithNLead = 0x4AA2\n\tlastDecomp            = 0x4AA4\n\tmaxDecomp             = 0x8000\n)\n\n// decomps: 19108 bytes\nvar decomps = [...]byte{\n\t// Bytes 0 - 3f\n\t0x00, 0x41, 0x20, 0x41, 0x21, 0x41, 0x22, 0x41,\n\t0x23, 0x41, 0x24, 0x41, 0x25, 0x41, 0x26, 0x41,\n\t0x27, 0x41, 0x28, 0x41, 0x29, 0x41, 0x2A, 0x41,\n\t0x2B, 0x41, 0x2C, 0x41, 0x2D, 0x41, 0x2E, 0x41,\n\t0x2F, 0x41, 0x30, 0x41, 0x31, 0x41, 0x32, 0x41,\n\t0x33, 0x41, 0x34, 0x41, 0x35, 0x41, 0x36, 0x41,\n\t0x37, 0x41, 0x38, 0x41, 0x39, 0x41, 0x3A, 0x41,\n\t0x3B, 0x41, 0x3C, 0x41, 0x3D, 0x41, 0x3E, 0x41,\n\t// Bytes 40 - 7f\n\t0x3F, 0x41, 0x40, 0x41, 0x41, 0x41, 0x42, 0x41,\n\t0x43, 0x41, 0x44, 0x41, 0x45, 0x41, 0x46, 0x41,\n\t0x47, 0x41, 0x48, 0x41, 0x49, 0x41, 0x4A, 0x41,\n\t0x4B, 0x41, 0x4C, 0x41, 0x4D, 0x41, 0x4E, 0x41,\n\t0x4F, 0x41, 0x50, 0x41, 0x51, 0x41, 0x52, 0x41,\n\t0x53, 0x41, 0x54, 0x41, 0x55, 0x41, 0x56, 0x41,\n\t0x57, 0x41, 0x58, 0x41, 0x59, 0x41, 0x5A, 0x41,\n\t0x5B, 0x41, 0x5C, 0x41, 0x5D, 0x41, 0x5E, 0x41,\n\t// Bytes 80 - bf\n\t0x5F, 0x41, 0x60, 0x41, 0x61, 0x41, 0x62, 0x41,\n\t0x63, 0x41, 0x64, 0x41, 0x65, 0x41, 0x66, 0x41,\n\t0x67, 0x41, 0x68, 0x41, 0x69, 0x41, 0x6A, 0x41,\n\t0x6B, 0x41, 0x6C, 0x41, 0x6D, 0x41, 0x6E, 0x41,\n\t0x6F, 0x41, 0x70, 0x41, 0x71, 0x41, 0x72, 0x41,\n\t0x73, 0x41, 0x74, 0x41, 0x75, 0x41, 0x76, 0x41,\n\t0x77, 0x41, 0x78, 0x41, 0x79, 0x41, 0x7A, 0x41,\n\t0x7B, 0x41, 0x7C, 0x41, 0x7D, 0x41, 0x7E, 0x42,\n\t// Bytes c0 - ff\n\t0xC2, 0xA2, 0x42, 0xC2, 0xA3, 0x42, 0xC2, 0xA5,\n\t0x42, 0xC2, 0xA6, 0x42, 0xC2, 0xAC, 0x42, 0xC2,\n\t0xB7, 0x42, 0xC3, 0x86, 0x42, 0xC3, 0xB0, 0x42,\n\t0xC4, 0xA6, 0x42, 0xC4, 0xA7, 0x42, 0xC4, 0xB1,\n\t0x42, 0xC5, 0x8B, 0x42, 0xC5, 0x93, 0x42, 0xC6,\n\t0x8E, 0x42, 0xC6, 0x90, 0x42, 0xC6, 0xAB, 0x42,\n\t0xC8, 0xA2, 0x42, 0xC8, 0xB7, 0x42, 0xC9, 0x90,\n\t0x42, 0xC9, 0x91, 0x42, 0xC9, 0x92, 0x42, 0xC9,\n\t// Bytes 100 - 13f\n\t0x94, 0x42, 0xC9, 0x95, 0x42, 0xC9, 0x99, 0x42,\n\t0xC9, 0x9B, 0x42, 0xC9, 0x9C, 0x42, 0xC9, 0x9F,\n\t0x42, 0xC9, 0xA1, 0x42, 0xC9, 0xA3, 0x42, 0xC9,\n\t0xA5, 0x42, 0xC9, 0xA6, 0x42, 0xC9, 0xA8, 0x42,\n\t0xC9, 0xA9, 0x42, 0xC9, 0xAA, 0x42, 0xC9, 0xAB,\n\t0x42, 0xC9, 0xAD, 0x42, 0xC9, 0xAF, 0x42, 0xC9,\n\t0xB0, 0x42, 0xC9, 0xB1, 0x42, 0xC9, 0xB2, 0x42,\n\t0xC9, 0xB3, 0x42, 0xC9, 0xB4, 0x42, 0xC9, 0xB5,\n\t// Bytes 140 - 17f\n\t0x42, 0xC9, 0xB8, 0x42, 0xC9, 0xB9, 0x42, 0xC9,\n\t0xBB, 0x42, 0xCA, 0x81, 0x42, 0xCA, 0x82, 0x42,\n\t0xCA, 0x83, 0x42, 0xCA, 0x89, 0x42, 0xCA, 0x8A,\n\t0x42, 0xCA, 0x8B, 0x42, 0xCA, 0x8C, 0x42, 0xCA,\n\t0x90, 0x42, 0xCA, 0x91, 0x42, 0xCA, 0x92, 0x42,\n\t0xCA, 0x95, 0x42, 0xCA, 0x9D, 0x42, 0xCA, 0x9F,\n\t0x42, 0xCA, 0xB9, 0x42, 0xCE, 0x91, 0x42, 0xCE,\n\t0x92, 0x42, 0xCE, 0x93, 0x42, 0xCE, 0x94, 0x42,\n\t// Bytes 180 - 1bf\n\t0xCE, 0x95, 0x42, 0xCE, 0x96, 0x42, 0xCE, 0x97,\n\t0x42, 0xCE, 0x98, 0x42, 0xCE, 0x99, 0x42, 0xCE,\n\t0x9A, 0x42, 0xCE, 0x9B, 0x42, 0xCE, 0x9C, 0x42,\n\t0xCE, 0x9D, 0x42, 0xCE, 0x9E, 0x42, 0xCE, 0x9F,\n\t0x42, 0xCE, 0xA0, 0x42, 0xCE, 0xA1, 0x42, 0xCE,\n\t0xA3, 0x42, 0xCE, 0xA4, 0x42, 0xCE, 0xA5, 0x42,\n\t0xCE, 0xA6, 0x42, 0xCE, 0xA7, 0x42, 0xCE, 0xA8,\n\t0x42, 0xCE, 0xA9, 0x42, 0xCE, 0xB1, 0x42, 0xCE,\n\t// Bytes 1c0 - 1ff\n\t0xB2, 0x42, 0xCE, 0xB3, 0x42, 0xCE, 0xB4, 0x42,\n\t0xCE, 0xB5, 0x42, 0xCE, 0xB6, 0x42, 0xCE, 0xB7,\n\t0x42, 0xCE, 0xB8, 0x42, 0xCE, 0xB9, 0x42, 0xCE,\n\t0xBA, 0x42, 0xCE, 0xBB, 0x42, 0xCE, 0xBC, 0x42,\n\t0xCE, 0xBD, 0x42, 0xCE, 0xBE, 0x42, 0xCE, 0xBF,\n\t0x42, 0xCF, 0x80, 0x42, 0xCF, 0x81, 0x42, 0xCF,\n\t0x82, 0x42, 0xCF, 0x83, 0x42, 0xCF, 0x84, 0x42,\n\t0xCF, 0x85, 0x42, 0xCF, 0x86, 0x42, 0xCF, 0x87,\n\t// Bytes 200 - 23f\n\t0x42, 0xCF, 0x88, 0x42, 0xCF, 0x89, 0x42, 0xCF,\n\t0x9C, 0x42, 0xCF, 0x9D, 0x42, 0xD0, 0xBD, 0x42,\n\t0xD1, 0x8A, 0x42, 0xD1, 0x8C, 0x42, 0xD7, 0x90,\n\t0x42, 0xD7, 0x91, 0x42, 0xD7, 0x92, 0x42, 0xD7,\n\t0x93, 0x42, 0xD7, 0x94, 0x42, 0xD7, 0x9B, 0x42,\n\t0xD7, 0x9C, 0x42, 0xD7, 0x9D, 0x42, 0xD7, 0xA2,\n\t0x42, 0xD7, 0xA8, 0x42, 0xD7, 0xAA, 0x42, 0xD8,\n\t0xA1, 0x42, 0xD8, 0xA7, 0x42, 0xD8, 0xA8, 0x42,\n\t// Bytes 240 - 27f\n\t0xD8, 0xA9, 0x42, 0xD8, 0xAA, 0x42, 0xD8, 0xAB,\n\t0x42, 0xD8, 0xAC, 0x42, 0xD8, 0xAD, 0x42, 0xD8,\n\t0xAE, 0x42, 0xD8, 0xAF, 0x42, 0xD8, 0xB0, 0x42,\n\t0xD8, 0xB1, 0x42, 0xD8, 0xB2, 0x42, 0xD8, 0xB3,\n\t0x42, 0xD8, 0xB4, 0x42, 0xD8, 0xB5, 0x42, 0xD8,\n\t0xB6, 0x42, 0xD8, 0xB7, 0x42, 0xD8, 0xB8, 0x42,\n\t0xD8, 0xB9, 0x42, 0xD8, 0xBA, 0x42, 0xD9, 0x81,\n\t0x42, 0xD9, 0x82, 0x42, 0xD9, 0x83, 0x42, 0xD9,\n\t// Bytes 280 - 2bf\n\t0x84, 0x42, 0xD9, 0x85, 0x42, 0xD9, 0x86, 0x42,\n\t0xD9, 0x87, 0x42, 0xD9, 0x88, 0x42, 0xD9, 0x89,\n\t0x42, 0xD9, 0x8A, 0x42, 0xD9, 0xAE, 0x42, 0xD9,\n\t0xAF, 0x42, 0xD9, 0xB1, 0x42, 0xD9, 0xB9, 0x42,\n\t0xD9, 0xBA, 0x42, 0xD9, 0xBB, 0x42, 0xD9, 0xBE,\n\t0x42, 0xD9, 0xBF, 0x42, 0xDA, 0x80, 0x42, 0xDA,\n\t0x83, 0x42, 0xDA, 0x84, 0x42, 0xDA, 0x86, 0x42,\n\t0xDA, 0x87, 0x42, 0xDA, 0x88, 0x42, 0xDA, 0x8C,\n\t// Bytes 2c0 - 2ff\n\t0x42, 0xDA, 0x8D, 0x42, 0xDA, 0x8E, 0x42, 0xDA,\n\t0x91, 0x42, 0xDA, 0x98, 0x42, 0xDA, 0xA1, 0x42,\n\t0xDA, 0xA4, 0x42, 0xDA, 0xA6, 0x42, 0xDA, 0xA9,\n\t0x42, 0xDA, 0xAD, 0x42, 0xDA, 0xAF, 0x42, 0xDA,\n\t0xB1, 0x42, 0xDA, 0xB3, 0x42, 0xDA, 0xBA, 0x42,\n\t0xDA, 0xBB, 0x42, 0xDA, 0xBE, 0x42, 0xDB, 0x81,\n\t0x42, 0xDB, 0x85, 0x42, 0xDB, 0x86, 0x42, 0xDB,\n\t0x87, 0x42, 0xDB, 0x88, 0x42, 0xDB, 0x89, 0x42,\n\t// Bytes 300 - 33f\n\t0xDB, 0x8B, 0x42, 0xDB, 0x8C, 0x42, 0xDB, 0x90,\n\t0x42, 0xDB, 0x92, 0x43, 0xE0, 0xBC, 0x8B, 0x43,\n\t0xE1, 0x83, 0x9C, 0x43, 0xE1, 0x84, 0x80, 0x43,\n\t0xE1, 0x84, 0x81, 0x43, 0xE1, 0x84, 0x82, 0x43,\n\t0xE1, 0x84, 0x83, 0x43, 0xE1, 0x84, 0x84, 0x43,\n\t0xE1, 0x84, 0x85, 0x43, 0xE1, 0x84, 0x86, 0x43,\n\t0xE1, 0x84, 0x87, 0x43, 0xE1, 0x84, 0x88, 0x43,\n\t0xE1, 0x84, 0x89, 0x43, 0xE1, 0x84, 0x8A, 0x43,\n\t// Bytes 340 - 37f\n\t0xE1, 0x84, 0x8B, 0x43, 0xE1, 0x84, 0x8C, 0x43,\n\t0xE1, 0x84, 0x8D, 0x43, 0xE1, 0x84, 0x8E, 0x43,\n\t0xE1, 0x84, 0x8F, 0x43, 0xE1, 0x84, 0x90, 0x43,\n\t0xE1, 0x84, 0x91, 0x43, 0xE1, 0x84, 0x92, 0x43,\n\t0xE1, 0x84, 0x94, 0x43, 0xE1, 0x84, 0x95, 0x43,\n\t0xE1, 0x84, 0x9A, 0x43, 0xE1, 0x84, 0x9C, 0x43,\n\t0xE1, 0x84, 0x9D, 0x43, 0xE1, 0x84, 0x9E, 0x43,\n\t0xE1, 0x84, 0xA0, 0x43, 0xE1, 0x84, 0xA1, 0x43,\n\t// Bytes 380 - 3bf\n\t0xE1, 0x84, 0xA2, 0x43, 0xE1, 0x84, 0xA3, 0x43,\n\t0xE1, 0x84, 0xA7, 0x43, 0xE1, 0x84, 0xA9, 0x43,\n\t0xE1, 0x84, 0xAB, 0x43, 0xE1, 0x84, 0xAC, 0x43,\n\t0xE1, 0x84, 0xAD, 0x43, 0xE1, 0x84, 0xAE, 0x43,\n\t0xE1, 0x84, 0xAF, 0x43, 0xE1, 0x84, 0xB2, 0x43,\n\t0xE1, 0x84, 0xB6, 0x43, 0xE1, 0x85, 0x80, 0x43,\n\t0xE1, 0x85, 0x87, 0x43, 0xE1, 0x85, 0x8C, 0x43,\n\t0xE1, 0x85, 0x97, 0x43, 0xE1, 0x85, 0x98, 0x43,\n\t// Bytes 3c0 - 3ff\n\t0xE1, 0x85, 0x99, 0x43, 0xE1, 0x85, 0xA0, 0x43,\n\t0xE1, 0x86, 0x84, 0x43, 0xE1, 0x86, 0x85, 0x43,\n\t0xE1, 0x86, 0x88, 0x43, 0xE1, 0x86, 0x91, 0x43,\n\t0xE1, 0x86, 0x92, 0x43, 0xE1, 0x86, 0x94, 0x43,\n\t0xE1, 0x86, 0x9E, 0x43, 0xE1, 0x86, 0xA1, 0x43,\n\t0xE1, 0x87, 0x87, 0x43, 0xE1, 0x87, 0x88, 0x43,\n\t0xE1, 0x87, 0x8C, 0x43, 0xE1, 0x87, 0x8E, 0x43,\n\t0xE1, 0x87, 0x93, 0x43, 0xE1, 0x87, 0x97, 0x43,\n\t// Bytes 400 - 43f\n\t0xE1, 0x87, 0x99, 0x43, 0xE1, 0x87, 0x9D, 0x43,\n\t0xE1, 0x87, 0x9F, 0x43, 0xE1, 0x87, 0xB1, 0x43,\n\t0xE1, 0x87, 0xB2, 0x43, 0xE1, 0xB4, 0x82, 0x43,\n\t0xE1, 0xB4, 0x96, 0x43, 0xE1, 0xB4, 0x97, 0x43,\n\t0xE1, 0xB4, 0x9C, 0x43, 0xE1, 0xB4, 0x9D, 0x43,\n\t0xE1, 0xB4, 0xA5, 0x43, 0xE1, 0xB5, 0xBB, 0x43,\n\t0xE1, 0xB6, 0x85, 0x43, 0xE2, 0x80, 0x82, 0x43,\n\t0xE2, 0x80, 0x83, 0x43, 0xE2, 0x80, 0x90, 0x43,\n\t// Bytes 440 - 47f\n\t0xE2, 0x80, 0x93, 0x43, 0xE2, 0x80, 0x94, 0x43,\n\t0xE2, 0x82, 0xA9, 0x43, 0xE2, 0x86, 0x90, 0x43,\n\t0xE2, 0x86, 0x91, 0x43, 0xE2, 0x86, 0x92, 0x43,\n\t0xE2, 0x86, 0x93, 0x43, 0xE2, 0x88, 0x82, 0x43,\n\t0xE2, 0x88, 0x87, 0x43, 0xE2, 0x88, 0x91, 0x43,\n\t0xE2, 0x88, 0x92, 0x43, 0xE2, 0x94, 0x82, 0x43,\n\t0xE2, 0x96, 0xA0, 0x43, 0xE2, 0x97, 0x8B, 0x43,\n\t0xE2, 0xA6, 0x85, 0x43, 0xE2, 0xA6, 0x86, 0x43,\n\t// Bytes 480 - 4bf\n\t0xE2, 0xB5, 0xA1, 0x43, 0xE3, 0x80, 0x81, 0x43,\n\t0xE3, 0x80, 0x82, 0x43, 0xE3, 0x80, 0x88, 0x43,\n\t0xE3, 0x80, 0x89, 0x43, 0xE3, 0x80, 0x8A, 0x43,\n\t0xE3, 0x80, 0x8B, 0x43, 0xE3, 0x80, 0x8C, 0x43,\n\t0xE3, 0x80, 0x8D, 0x43, 0xE3, 0x80, 0x8E, 0x43,\n\t0xE3, 0x80, 0x8F, 0x43, 0xE3, 0x80, 0x90, 0x43,\n\t0xE3, 0x80, 0x91, 0x43, 0xE3, 0x80, 0x92, 0x43,\n\t0xE3, 0x80, 0x94, 0x43, 0xE3, 0x80, 0x95, 0x43,\n\t// Bytes 4c0 - 4ff\n\t0xE3, 0x80, 0x96, 0x43, 0xE3, 0x80, 0x97, 0x43,\n\t0xE3, 0x82, 0xA1, 0x43, 0xE3, 0x82, 0xA2, 0x43,\n\t0xE3, 0x82, 0xA3, 0x43, 0xE3, 0x82, 0xA4, 0x43,\n\t0xE3, 0x82, 0xA5, 0x43, 0xE3, 0x82, 0xA6, 0x43,\n\t0xE3, 0x82, 0xA7, 0x43, 0xE3, 0x82, 0xA8, 0x43,\n\t0xE3, 0x82, 0xA9, 0x43, 0xE3, 0x82, 0xAA, 0x43,\n\t0xE3, 0x82, 0xAB, 0x43, 0xE3, 0x82, 0xAD, 0x43,\n\t0xE3, 0x82, 0xAF, 0x43, 0xE3, 0x82, 0xB1, 0x43,\n\t// Bytes 500 - 53f\n\t0xE3, 0x82, 0xB3, 0x43, 0xE3, 0x82, 0xB5, 0x43,\n\t0xE3, 0x82, 0xB7, 0x43, 0xE3, 0x82, 0xB9, 0x43,\n\t0xE3, 0x82, 0xBB, 0x43, 0xE3, 0x82, 0xBD, 0x43,\n\t0xE3, 0x82, 0xBF, 0x43, 0xE3, 0x83, 0x81, 0x43,\n\t0xE3, 0x83, 0x83, 0x43, 0xE3, 0x83, 0x84, 0x43,\n\t0xE3, 0x83, 0x86, 0x43, 0xE3, 0x83, 0x88, 0x43,\n\t0xE3, 0x83, 0x8A, 0x43, 0xE3, 0x83, 0x8B, 0x43,\n\t0xE3, 0x83, 0x8C, 0x43, 0xE3, 0x83, 0x8D, 0x43,\n\t// Bytes 540 - 57f\n\t0xE3, 0x83, 0x8E, 0x43, 0xE3, 0x83, 0x8F, 0x43,\n\t0xE3, 0x83, 0x92, 0x43, 0xE3, 0x83, 0x95, 0x43,\n\t0xE3, 0x83, 0x98, 0x43, 0xE3, 0x83, 0x9B, 0x43,\n\t0xE3, 0x83, 0x9E, 0x43, 0xE3, 0x83, 0x9F, 0x43,\n\t0xE3, 0x83, 0xA0, 0x43, 0xE3, 0x83, 0xA1, 0x43,\n\t0xE3, 0x83, 0xA2, 0x43, 0xE3, 0x83, 0xA3, 0x43,\n\t0xE3, 0x83, 0xA4, 0x43, 0xE3, 0x83, 0xA5, 0x43,\n\t0xE3, 0x83, 0xA6, 0x43, 0xE3, 0x83, 0xA7, 0x43,\n\t// Bytes 580 - 5bf\n\t0xE3, 0x83, 0xA8, 0x43, 0xE3, 0x83, 0xA9, 0x43,\n\t0xE3, 0x83, 0xAA, 0x43, 0xE3, 0x83, 0xAB, 0x43,\n\t0xE3, 0x83, 0xAC, 0x43, 0xE3, 0x83, 0xAD, 0x43,\n\t0xE3, 0x83, 0xAF, 0x43, 0xE3, 0x83, 0xB0, 0x43,\n\t0xE3, 0x83, 0xB1, 0x43, 0xE3, 0x83, 0xB2, 0x43,\n\t0xE3, 0x83, 0xB3, 0x43, 0xE3, 0x83, 0xBB, 0x43,\n\t0xE3, 0x83, 0xBC, 0x43, 0xE3, 0x92, 0x9E, 0x43,\n\t0xE3, 0x92, 0xB9, 0x43, 0xE3, 0x92, 0xBB, 0x43,\n\t// Bytes 5c0 - 5ff\n\t0xE3, 0x93, 0x9F, 0x43, 0xE3, 0x94, 0x95, 0x43,\n\t0xE3, 0x9B, 0xAE, 0x43, 0xE3, 0x9B, 0xBC, 0x43,\n\t0xE3, 0x9E, 0x81, 0x43, 0xE3, 0xA0, 0xAF, 0x43,\n\t0xE3, 0xA1, 0xA2, 0x43, 0xE3, 0xA1, 0xBC, 0x43,\n\t0xE3, 0xA3, 0x87, 0x43, 0xE3, 0xA3, 0xA3, 0x43,\n\t0xE3, 0xA4, 0x9C, 0x43, 0xE3, 0xA4, 0xBA, 0x43,\n\t0xE3, 0xA8, 0xAE, 0x43, 0xE3, 0xA9, 0xAC, 0x43,\n\t0xE3, 0xAB, 0xA4, 0x43, 0xE3, 0xAC, 0x88, 0x43,\n\t// Bytes 600 - 63f\n\t0xE3, 0xAC, 0x99, 0x43, 0xE3, 0xAD, 0x89, 0x43,\n\t0xE3, 0xAE, 0x9D, 0x43, 0xE3, 0xB0, 0x98, 0x43,\n\t0xE3, 0xB1, 0x8E, 0x43, 0xE3, 0xB4, 0xB3, 0x43,\n\t0xE3, 0xB6, 0x96, 0x43, 0xE3, 0xBA, 0xAC, 0x43,\n\t0xE3, 0xBA, 0xB8, 0x43, 0xE3, 0xBC, 0x9B, 0x43,\n\t0xE3, 0xBF, 0xBC, 0x43, 0xE4, 0x80, 0x88, 0x43,\n\t0xE4, 0x80, 0x98, 0x43, 0xE4, 0x80, 0xB9, 0x43,\n\t0xE4, 0x81, 0x86, 0x43, 0xE4, 0x82, 0x96, 0x43,\n\t// Bytes 640 - 67f\n\t0xE4, 0x83, 0xA3, 0x43, 0xE4, 0x84, 0xAF, 0x43,\n\t0xE4, 0x88, 0x82, 0x43, 0xE4, 0x88, 0xA7, 0x43,\n\t0xE4, 0x8A, 0xA0, 0x43, 0xE4, 0x8C, 0x81, 0x43,\n\t0xE4, 0x8C, 0xB4, 0x43, 0xE4, 0x8D, 0x99, 0x43,\n\t0xE4, 0x8F, 0x95, 0x43, 0xE4, 0x8F, 0x99, 0x43,\n\t0xE4, 0x90, 0x8B, 0x43, 0xE4, 0x91, 0xAB, 0x43,\n\t0xE4, 0x94, 0xAB, 0x43, 0xE4, 0x95, 0x9D, 0x43,\n\t0xE4, 0x95, 0xA1, 0x43, 0xE4, 0x95, 0xAB, 0x43,\n\t// Bytes 680 - 6bf\n\t0xE4, 0x97, 0x97, 0x43, 0xE4, 0x97, 0xB9, 0x43,\n\t0xE4, 0x98, 0xB5, 0x43, 0xE4, 0x9A, 0xBE, 0x43,\n\t0xE4, 0x9B, 0x87, 0x43, 0xE4, 0xA6, 0x95, 0x43,\n\t0xE4, 0xA7, 0xA6, 0x43, 0xE4, 0xA9, 0xAE, 0x43,\n\t0xE4, 0xA9, 0xB6, 0x43, 0xE4, 0xAA, 0xB2, 0x43,\n\t0xE4, 0xAC, 0xB3, 0x43, 0xE4, 0xAF, 0x8E, 0x43,\n\t0xE4, 0xB3, 0x8E, 0x43, 0xE4, 0xB3, 0xAD, 0x43,\n\t0xE4, 0xB3, 0xB8, 0x43, 0xE4, 0xB5, 0x96, 0x43,\n\t// Bytes 6c0 - 6ff\n\t0xE4, 0xB8, 0x80, 0x43, 0xE4, 0xB8, 0x81, 0x43,\n\t0xE4, 0xB8, 0x83, 0x43, 0xE4, 0xB8, 0x89, 0x43,\n\t0xE4, 0xB8, 0x8A, 0x43, 0xE4, 0xB8, 0x8B, 0x43,\n\t0xE4, 0xB8, 0x8D, 0x43, 0xE4, 0xB8, 0x99, 0x43,\n\t0xE4, 0xB8, 0xA6, 0x43, 0xE4, 0xB8, 0xA8, 0x43,\n\t0xE4, 0xB8, 0xAD, 0x43, 0xE4, 0xB8, 0xB2, 0x43,\n\t0xE4, 0xB8, 0xB6, 0x43, 0xE4, 0xB8, 0xB8, 0x43,\n\t0xE4, 0xB8, 0xB9, 0x43, 0xE4, 0xB8, 0xBD, 0x43,\n\t// Bytes 700 - 73f\n\t0xE4, 0xB8, 0xBF, 0x43, 0xE4, 0xB9, 0x81, 0x43,\n\t0xE4, 0xB9, 0x99, 0x43, 0xE4, 0xB9, 0x9D, 0x43,\n\t0xE4, 0xBA, 0x82, 0x43, 0xE4, 0xBA, 0x85, 0x43,\n\t0xE4, 0xBA, 0x86, 0x43, 0xE4, 0xBA, 0x8C, 0x43,\n\t0xE4, 0xBA, 0x94, 0x43, 0xE4, 0xBA, 0xA0, 0x43,\n\t0xE4, 0xBA, 0xA4, 0x43, 0xE4, 0xBA, 0xAE, 0x43,\n\t0xE4, 0xBA, 0xBA, 0x43, 0xE4, 0xBB, 0x80, 0x43,\n\t0xE4, 0xBB, 0x8C, 0x43, 0xE4, 0xBB, 0xA4, 0x43,\n\t// Bytes 740 - 77f\n\t0xE4, 0xBC, 0x81, 0x43, 0xE4, 0xBC, 0x91, 0x43,\n\t0xE4, 0xBD, 0xA0, 0x43, 0xE4, 0xBE, 0x80, 0x43,\n\t0xE4, 0xBE, 0x86, 0x43, 0xE4, 0xBE, 0x8B, 0x43,\n\t0xE4, 0xBE, 0xAE, 0x43, 0xE4, 0xBE, 0xBB, 0x43,\n\t0xE4, 0xBE, 0xBF, 0x43, 0xE5, 0x80, 0x82, 0x43,\n\t0xE5, 0x80, 0xAB, 0x43, 0xE5, 0x81, 0xBA, 0x43,\n\t0xE5, 0x82, 0x99, 0x43, 0xE5, 0x83, 0x8F, 0x43,\n\t0xE5, 0x83, 0x9A, 0x43, 0xE5, 0x83, 0xA7, 0x43,\n\t// Bytes 780 - 7bf\n\t0xE5, 0x84, 0xAA, 0x43, 0xE5, 0x84, 0xBF, 0x43,\n\t0xE5, 0x85, 0x80, 0x43, 0xE5, 0x85, 0x85, 0x43,\n\t0xE5, 0x85, 0x8D, 0x43, 0xE5, 0x85, 0x94, 0x43,\n\t0xE5, 0x85, 0xA4, 0x43, 0xE5, 0x85, 0xA5, 0x43,\n\t0xE5, 0x85, 0xA7, 0x43, 0xE5, 0x85, 0xA8, 0x43,\n\t0xE5, 0x85, 0xA9, 0x43, 0xE5, 0x85, 0xAB, 0x43,\n\t0xE5, 0x85, 0xAD, 0x43, 0xE5, 0x85, 0xB7, 0x43,\n\t0xE5, 0x86, 0x80, 0x43, 0xE5, 0x86, 0x82, 0x43,\n\t// Bytes 7c0 - 7ff\n\t0xE5, 0x86, 0x8D, 0x43, 0xE5, 0x86, 0x92, 0x43,\n\t0xE5, 0x86, 0x95, 0x43, 0xE5, 0x86, 0x96, 0x43,\n\t0xE5, 0x86, 0x97, 0x43, 0xE5, 0x86, 0x99, 0x43,\n\t0xE5, 0x86, 0xA4, 0x43, 0xE5, 0x86, 0xAB, 0x43,\n\t0xE5, 0x86, 0xAC, 0x43, 0xE5, 0x86, 0xB5, 0x43,\n\t0xE5, 0x86, 0xB7, 0x43, 0xE5, 0x87, 0x89, 0x43,\n\t0xE5, 0x87, 0x8C, 0x43, 0xE5, 0x87, 0x9C, 0x43,\n\t0xE5, 0x87, 0x9E, 0x43, 0xE5, 0x87, 0xA0, 0x43,\n\t// Bytes 800 - 83f\n\t0xE5, 0x87, 0xB5, 0x43, 0xE5, 0x88, 0x80, 0x43,\n\t0xE5, 0x88, 0x83, 0x43, 0xE5, 0x88, 0x87, 0x43,\n\t0xE5, 0x88, 0x97, 0x43, 0xE5, 0x88, 0x9D, 0x43,\n\t0xE5, 0x88, 0xA9, 0x43, 0xE5, 0x88, 0xBA, 0x43,\n\t0xE5, 0x88, 0xBB, 0x43, 0xE5, 0x89, 0x86, 0x43,\n\t0xE5, 0x89, 0x8D, 0x43, 0xE5, 0x89, 0xB2, 0x43,\n\t0xE5, 0x89, 0xB7, 0x43, 0xE5, 0x8A, 0x89, 0x43,\n\t0xE5, 0x8A, 0x9B, 0x43, 0xE5, 0x8A, 0xA3, 0x43,\n\t// Bytes 840 - 87f\n\t0xE5, 0x8A, 0xB3, 0x43, 0xE5, 0x8A, 0xB4, 0x43,\n\t0xE5, 0x8B, 0x87, 0x43, 0xE5, 0x8B, 0x89, 0x43,\n\t0xE5, 0x8B, 0x92, 0x43, 0xE5, 0x8B, 0x9E, 0x43,\n\t0xE5, 0x8B, 0xA4, 0x43, 0xE5, 0x8B, 0xB5, 0x43,\n\t0xE5, 0x8B, 0xB9, 0x43, 0xE5, 0x8B, 0xBA, 0x43,\n\t0xE5, 0x8C, 0x85, 0x43, 0xE5, 0x8C, 0x86, 0x43,\n\t0xE5, 0x8C, 0x95, 0x43, 0xE5, 0x8C, 0x97, 0x43,\n\t0xE5, 0x8C, 0x9A, 0x43, 0xE5, 0x8C, 0xB8, 0x43,\n\t// Bytes 880 - 8bf\n\t0xE5, 0x8C, 0xBB, 0x43, 0xE5, 0x8C, 0xBF, 0x43,\n\t0xE5, 0x8D, 0x81, 0x43, 0xE5, 0x8D, 0x84, 0x43,\n\t0xE5, 0x8D, 0x85, 0x43, 0xE5, 0x8D, 0x89, 0x43,\n\t0xE5, 0x8D, 0x91, 0x43, 0xE5, 0x8D, 0x94, 0x43,\n\t0xE5, 0x8D, 0x9A, 0x43, 0xE5, 0x8D, 0x9C, 0x43,\n\t0xE5, 0x8D, 0xA9, 0x43, 0xE5, 0x8D, 0xB0, 0x43,\n\t0xE5, 0x8D, 0xB3, 0x43, 0xE5, 0x8D, 0xB5, 0x43,\n\t0xE5, 0x8D, 0xBD, 0x43, 0xE5, 0x8D, 0xBF, 0x43,\n\t// Bytes 8c0 - 8ff\n\t0xE5, 0x8E, 0x82, 0x43, 0xE5, 0x8E, 0xB6, 0x43,\n\t0xE5, 0x8F, 0x83, 0x43, 0xE5, 0x8F, 0x88, 0x43,\n\t0xE5, 0x8F, 0x8A, 0x43, 0xE5, 0x8F, 0x8C, 0x43,\n\t0xE5, 0x8F, 0x9F, 0x43, 0xE5, 0x8F, 0xA3, 0x43,\n\t0xE5, 0x8F, 0xA5, 0x43, 0xE5, 0x8F, 0xAB, 0x43,\n\t0xE5, 0x8F, 0xAF, 0x43, 0xE5, 0x8F, 0xB1, 0x43,\n\t0xE5, 0x8F, 0xB3, 0x43, 0xE5, 0x90, 0x86, 0x43,\n\t0xE5, 0x90, 0x88, 0x43, 0xE5, 0x90, 0x8D, 0x43,\n\t// Bytes 900 - 93f\n\t0xE5, 0x90, 0x8F, 0x43, 0xE5, 0x90, 0x9D, 0x43,\n\t0xE5, 0x90, 0xB8, 0x43, 0xE5, 0x90, 0xB9, 0x43,\n\t0xE5, 0x91, 0x82, 0x43, 0xE5, 0x91, 0x88, 0x43,\n\t0xE5, 0x91, 0xA8, 0x43, 0xE5, 0x92, 0x9E, 0x43,\n\t0xE5, 0x92, 0xA2, 0x43, 0xE5, 0x92, 0xBD, 0x43,\n\t0xE5, 0x93, 0xB6, 0x43, 0xE5, 0x94, 0x90, 0x43,\n\t0xE5, 0x95, 0x8F, 0x43, 0xE5, 0x95, 0x93, 0x43,\n\t0xE5, 0x95, 0x95, 0x43, 0xE5, 0x95, 0xA3, 0x43,\n\t// Bytes 940 - 97f\n\t0xE5, 0x96, 0x84, 0x43, 0xE5, 0x96, 0x87, 0x43,\n\t0xE5, 0x96, 0x99, 0x43, 0xE5, 0x96, 0x9D, 0x43,\n\t0xE5, 0x96, 0xAB, 0x43, 0xE5, 0x96, 0xB3, 0x43,\n\t0xE5, 0x96, 0xB6, 0x43, 0xE5, 0x97, 0x80, 0x43,\n\t0xE5, 0x97, 0x82, 0x43, 0xE5, 0x97, 0xA2, 0x43,\n\t0xE5, 0x98, 0x86, 0x43, 0xE5, 0x99, 0x91, 0x43,\n\t0xE5, 0x99, 0xA8, 0x43, 0xE5, 0x99, 0xB4, 0x43,\n\t0xE5, 0x9B, 0x97, 0x43, 0xE5, 0x9B, 0x9B, 0x43,\n\t// Bytes 980 - 9bf\n\t0xE5, 0x9B, 0xB9, 0x43, 0xE5, 0x9C, 0x96, 0x43,\n\t0xE5, 0x9C, 0x97, 0x43, 0xE5, 0x9C, 0x9F, 0x43,\n\t0xE5, 0x9C, 0xB0, 0x43, 0xE5, 0x9E, 0x8B, 0x43,\n\t0xE5, 0x9F, 0x8E, 0x43, 0xE5, 0x9F, 0xB4, 0x43,\n\t0xE5, 0xA0, 0x8D, 0x43, 0xE5, 0xA0, 0xB1, 0x43,\n\t0xE5, 0xA0, 0xB2, 0x43, 0xE5, 0xA1, 0x80, 0x43,\n\t0xE5, 0xA1, 0x9A, 0x43, 0xE5, 0xA1, 0x9E, 0x43,\n\t0xE5, 0xA2, 0xA8, 0x43, 0xE5, 0xA2, 0xAC, 0x43,\n\t// Bytes 9c0 - 9ff\n\t0xE5, 0xA2, 0xB3, 0x43, 0xE5, 0xA3, 0x98, 0x43,\n\t0xE5, 0xA3, 0x9F, 0x43, 0xE5, 0xA3, 0xAB, 0x43,\n\t0xE5, 0xA3, 0xAE, 0x43, 0xE5, 0xA3, 0xB0, 0x43,\n\t0xE5, 0xA3, 0xB2, 0x43, 0xE5, 0xA3, 0xB7, 0x43,\n\t0xE5, 0xA4, 0x82, 0x43, 0xE5, 0xA4, 0x86, 0x43,\n\t0xE5, 0xA4, 0x8A, 0x43, 0xE5, 0xA4, 0x95, 0x43,\n\t0xE5, 0xA4, 0x9A, 0x43, 0xE5, 0xA4, 0x9C, 0x43,\n\t0xE5, 0xA4, 0xA2, 0x43, 0xE5, 0xA4, 0xA7, 0x43,\n\t// Bytes a00 - a3f\n\t0xE5, 0xA4, 0xA9, 0x43, 0xE5, 0xA5, 0x84, 0x43,\n\t0xE5, 0xA5, 0x88, 0x43, 0xE5, 0xA5, 0x91, 0x43,\n\t0xE5, 0xA5, 0x94, 0x43, 0xE5, 0xA5, 0xA2, 0x43,\n\t0xE5, 0xA5, 0xB3, 0x43, 0xE5, 0xA7, 0x98, 0x43,\n\t0xE5, 0xA7, 0xAC, 0x43, 0xE5, 0xA8, 0x9B, 0x43,\n\t0xE5, 0xA8, 0xA7, 0x43, 0xE5, 0xA9, 0xA2, 0x43,\n\t0xE5, 0xA9, 0xA6, 0x43, 0xE5, 0xAA, 0xB5, 0x43,\n\t0xE5, 0xAC, 0x88, 0x43, 0xE5, 0xAC, 0xA8, 0x43,\n\t// Bytes a40 - a7f\n\t0xE5, 0xAC, 0xBE, 0x43, 0xE5, 0xAD, 0x90, 0x43,\n\t0xE5, 0xAD, 0x97, 0x43, 0xE5, 0xAD, 0xA6, 0x43,\n\t0xE5, 0xAE, 0x80, 0x43, 0xE5, 0xAE, 0x85, 0x43,\n\t0xE5, 0xAE, 0x97, 0x43, 0xE5, 0xAF, 0x83, 0x43,\n\t0xE5, 0xAF, 0x98, 0x43, 0xE5, 0xAF, 0xA7, 0x43,\n\t0xE5, 0xAF, 0xAE, 0x43, 0xE5, 0xAF, 0xB3, 0x43,\n\t0xE5, 0xAF, 0xB8, 0x43, 0xE5, 0xAF, 0xBF, 0x43,\n\t0xE5, 0xB0, 0x86, 0x43, 0xE5, 0xB0, 0x8F, 0x43,\n\t// Bytes a80 - abf\n\t0xE5, 0xB0, 0xA2, 0x43, 0xE5, 0xB0, 0xB8, 0x43,\n\t0xE5, 0xB0, 0xBF, 0x43, 0xE5, 0xB1, 0xA0, 0x43,\n\t0xE5, 0xB1, 0xA2, 0x43, 0xE5, 0xB1, 0xA4, 0x43,\n\t0xE5, 0xB1, 0xA5, 0x43, 0xE5, 0xB1, 0xAE, 0x43,\n\t0xE5, 0xB1, 0xB1, 0x43, 0xE5, 0xB2, 0x8D, 0x43,\n\t0xE5, 0xB3, 0x80, 0x43, 0xE5, 0xB4, 0x99, 0x43,\n\t0xE5, 0xB5, 0x83, 0x43, 0xE5, 0xB5, 0x90, 0x43,\n\t0xE5, 0xB5, 0xAB, 0x43, 0xE5, 0xB5, 0xAE, 0x43,\n\t// Bytes ac0 - aff\n\t0xE5, 0xB5, 0xBC, 0x43, 0xE5, 0xB6, 0xB2, 0x43,\n\t0xE5, 0xB6, 0xBA, 0x43, 0xE5, 0xB7, 0x9B, 0x43,\n\t0xE5, 0xB7, 0xA1, 0x43, 0xE5, 0xB7, 0xA2, 0x43,\n\t0xE5, 0xB7, 0xA5, 0x43, 0xE5, 0xB7, 0xA6, 0x43,\n\t0xE5, 0xB7, 0xB1, 0x43, 0xE5, 0xB7, 0xBD, 0x43,\n\t0xE5, 0xB7, 0xBE, 0x43, 0xE5, 0xB8, 0xA8, 0x43,\n\t0xE5, 0xB8, 0xBD, 0x43, 0xE5, 0xB9, 0xA9, 0x43,\n\t0xE5, 0xB9, 0xB2, 0x43, 0xE5, 0xB9, 0xB4, 0x43,\n\t// Bytes b00 - b3f\n\t0xE5, 0xB9, 0xBA, 0x43, 0xE5, 0xB9, 0xBC, 0x43,\n\t0xE5, 0xB9, 0xBF, 0x43, 0xE5, 0xBA, 0xA6, 0x43,\n\t0xE5, 0xBA, 0xB0, 0x43, 0xE5, 0xBA, 0xB3, 0x43,\n\t0xE5, 0xBA, 0xB6, 0x43, 0xE5, 0xBB, 0x89, 0x43,\n\t0xE5, 0xBB, 0x8A, 0x43, 0xE5, 0xBB, 0x92, 0x43,\n\t0xE5, 0xBB, 0x93, 0x43, 0xE5, 0xBB, 0x99, 0x43,\n\t0xE5, 0xBB, 0xAC, 0x43, 0xE5, 0xBB, 0xB4, 0x43,\n\t0xE5, 0xBB, 0xBE, 0x43, 0xE5, 0xBC, 0x84, 0x43,\n\t// Bytes b40 - b7f\n\t0xE5, 0xBC, 0x8B, 0x43, 0xE5, 0xBC, 0x93, 0x43,\n\t0xE5, 0xBC, 0xA2, 0x43, 0xE5, 0xBD, 0x90, 0x43,\n\t0xE5, 0xBD, 0x93, 0x43, 0xE5, 0xBD, 0xA1, 0x43,\n\t0xE5, 0xBD, 0xA2, 0x43, 0xE5, 0xBD, 0xA9, 0x43,\n\t0xE5, 0xBD, 0xAB, 0x43, 0xE5, 0xBD, 0xB3, 0x43,\n\t0xE5, 0xBE, 0x8B, 0x43, 0xE5, 0xBE, 0x8C, 0x43,\n\t0xE5, 0xBE, 0x97, 0x43, 0xE5, 0xBE, 0x9A, 0x43,\n\t0xE5, 0xBE, 0xA9, 0x43, 0xE5, 0xBE, 0xAD, 0x43,\n\t// Bytes b80 - bbf\n\t0xE5, 0xBF, 0x83, 0x43, 0xE5, 0xBF, 0x8D, 0x43,\n\t0xE5, 0xBF, 0x97, 0x43, 0xE5, 0xBF, 0xB5, 0x43,\n\t0xE5, 0xBF, 0xB9, 0x43, 0xE6, 0x80, 0x92, 0x43,\n\t0xE6, 0x80, 0x9C, 0x43, 0xE6, 0x81, 0xB5, 0x43,\n\t0xE6, 0x82, 0x81, 0x43, 0xE6, 0x82, 0x94, 0x43,\n\t0xE6, 0x83, 0x87, 0x43, 0xE6, 0x83, 0x98, 0x43,\n\t0xE6, 0x83, 0xA1, 0x43, 0xE6, 0x84, 0x88, 0x43,\n\t0xE6, 0x85, 0x84, 0x43, 0xE6, 0x85, 0x88, 0x43,\n\t// Bytes bc0 - bff\n\t0xE6, 0x85, 0x8C, 0x43, 0xE6, 0x85, 0x8E, 0x43,\n\t0xE6, 0x85, 0xA0, 0x43, 0xE6, 0x85, 0xA8, 0x43,\n\t0xE6, 0x85, 0xBA, 0x43, 0xE6, 0x86, 0x8E, 0x43,\n\t0xE6, 0x86, 0x90, 0x43, 0xE6, 0x86, 0xA4, 0x43,\n\t0xE6, 0x86, 0xAF, 0x43, 0xE6, 0x86, 0xB2, 0x43,\n\t0xE6, 0x87, 0x9E, 0x43, 0xE6, 0x87, 0xB2, 0x43,\n\t0xE6, 0x87, 0xB6, 0x43, 0xE6, 0x88, 0x80, 0x43,\n\t0xE6, 0x88, 0x88, 0x43, 0xE6, 0x88, 0x90, 0x43,\n\t// Bytes c00 - c3f\n\t0xE6, 0x88, 0x9B, 0x43, 0xE6, 0x88, 0xAE, 0x43,\n\t0xE6, 0x88, 0xB4, 0x43, 0xE6, 0x88, 0xB6, 0x43,\n\t0xE6, 0x89, 0x8B, 0x43, 0xE6, 0x89, 0x93, 0x43,\n\t0xE6, 0x89, 0x9D, 0x43, 0xE6, 0x8A, 0x95, 0x43,\n\t0xE6, 0x8A, 0xB1, 0x43, 0xE6, 0x8B, 0x89, 0x43,\n\t0xE6, 0x8B, 0x8F, 0x43, 0xE6, 0x8B, 0x93, 0x43,\n\t0xE6, 0x8B, 0x94, 0x43, 0xE6, 0x8B, 0xBC, 0x43,\n\t0xE6, 0x8B, 0xBE, 0x43, 0xE6, 0x8C, 0x87, 0x43,\n\t// Bytes c40 - c7f\n\t0xE6, 0x8C, 0xBD, 0x43, 0xE6, 0x8D, 0x90, 0x43,\n\t0xE6, 0x8D, 0x95, 0x43, 0xE6, 0x8D, 0xA8, 0x43,\n\t0xE6, 0x8D, 0xBB, 0x43, 0xE6, 0x8E, 0x83, 0x43,\n\t0xE6, 0x8E, 0xA0, 0x43, 0xE6, 0x8E, 0xA9, 0x43,\n\t0xE6, 0x8F, 0x84, 0x43, 0xE6, 0x8F, 0x85, 0x43,\n\t0xE6, 0x8F, 0xA4, 0x43, 0xE6, 0x90, 0x9C, 0x43,\n\t0xE6, 0x90, 0xA2, 0x43, 0xE6, 0x91, 0x92, 0x43,\n\t0xE6, 0x91, 0xA9, 0x43, 0xE6, 0x91, 0xB7, 0x43,\n\t// Bytes c80 - cbf\n\t0xE6, 0x91, 0xBE, 0x43, 0xE6, 0x92, 0x9A, 0x43,\n\t0xE6, 0x92, 0x9D, 0x43, 0xE6, 0x93, 0x84, 0x43,\n\t0xE6, 0x94, 0xAF, 0x43, 0xE6, 0x94, 0xB4, 0x43,\n\t0xE6, 0x95, 0x8F, 0x43, 0xE6, 0x95, 0x96, 0x43,\n\t0xE6, 0x95, 0xAC, 0x43, 0xE6, 0x95, 0xB8, 0x43,\n\t0xE6, 0x96, 0x87, 0x43, 0xE6, 0x96, 0x97, 0x43,\n\t0xE6, 0x96, 0x99, 0x43, 0xE6, 0x96, 0xA4, 0x43,\n\t0xE6, 0x96, 0xB0, 0x43, 0xE6, 0x96, 0xB9, 0x43,\n\t// Bytes cc0 - cff\n\t0xE6, 0x97, 0x85, 0x43, 0xE6, 0x97, 0xA0, 0x43,\n\t0xE6, 0x97, 0xA2, 0x43, 0xE6, 0x97, 0xA3, 0x43,\n\t0xE6, 0x97, 0xA5, 0x43, 0xE6, 0x98, 0x93, 0x43,\n\t0xE6, 0x98, 0xA0, 0x43, 0xE6, 0x99, 0x89, 0x43,\n\t0xE6, 0x99, 0xB4, 0x43, 0xE6, 0x9A, 0x88, 0x43,\n\t0xE6, 0x9A, 0x91, 0x43, 0xE6, 0x9A, 0x9C, 0x43,\n\t0xE6, 0x9A, 0xB4, 0x43, 0xE6, 0x9B, 0x86, 0x43,\n\t0xE6, 0x9B, 0xB0, 0x43, 0xE6, 0x9B, 0xB4, 0x43,\n\t// Bytes d00 - d3f\n\t0xE6, 0x9B, 0xB8, 0x43, 0xE6, 0x9C, 0x80, 0x43,\n\t0xE6, 0x9C, 0x88, 0x43, 0xE6, 0x9C, 0x89, 0x43,\n\t0xE6, 0x9C, 0x97, 0x43, 0xE6, 0x9C, 0x9B, 0x43,\n\t0xE6, 0x9C, 0xA1, 0x43, 0xE6, 0x9C, 0xA8, 0x43,\n\t0xE6, 0x9D, 0x8E, 0x43, 0xE6, 0x9D, 0x93, 0x43,\n\t0xE6, 0x9D, 0x96, 0x43, 0xE6, 0x9D, 0x9E, 0x43,\n\t0xE6, 0x9D, 0xBB, 0x43, 0xE6, 0x9E, 0x85, 0x43,\n\t0xE6, 0x9E, 0x97, 0x43, 0xE6, 0x9F, 0xB3, 0x43,\n\t// Bytes d40 - d7f\n\t0xE6, 0x9F, 0xBA, 0x43, 0xE6, 0xA0, 0x97, 0x43,\n\t0xE6, 0xA0, 0x9F, 0x43, 0xE6, 0xA0, 0xAA, 0x43,\n\t0xE6, 0xA1, 0x92, 0x43, 0xE6, 0xA2, 0x81, 0x43,\n\t0xE6, 0xA2, 0x85, 0x43, 0xE6, 0xA2, 0x8E, 0x43,\n\t0xE6, 0xA2, 0xA8, 0x43, 0xE6, 0xA4, 0x94, 0x43,\n\t0xE6, 0xA5, 0x82, 0x43, 0xE6, 0xA6, 0xA3, 0x43,\n\t0xE6, 0xA7, 0xAA, 0x43, 0xE6, 0xA8, 0x82, 0x43,\n\t0xE6, 0xA8, 0x93, 0x43, 0xE6, 0xAA, 0xA8, 0x43,\n\t// Bytes d80 - dbf\n\t0xE6, 0xAB, 0x93, 0x43, 0xE6, 0xAB, 0x9B, 0x43,\n\t0xE6, 0xAC, 0x84, 0x43, 0xE6, 0xAC, 0xA0, 0x43,\n\t0xE6, 0xAC, 0xA1, 0x43, 0xE6, 0xAD, 0x94, 0x43,\n\t0xE6, 0xAD, 0xA2, 0x43, 0xE6, 0xAD, 0xA3, 0x43,\n\t0xE6, 0xAD, 0xB2, 0x43, 0xE6, 0xAD, 0xB7, 0x43,\n\t0xE6, 0xAD, 0xB9, 0x43, 0xE6, 0xAE, 0x9F, 0x43,\n\t0xE6, 0xAE, 0xAE, 0x43, 0xE6, 0xAE, 0xB3, 0x43,\n\t0xE6, 0xAE, 0xBA, 0x43, 0xE6, 0xAE, 0xBB, 0x43,\n\t// Bytes dc0 - dff\n\t0xE6, 0xAF, 0x8B, 0x43, 0xE6, 0xAF, 0x8D, 0x43,\n\t0xE6, 0xAF, 0x94, 0x43, 0xE6, 0xAF, 0x9B, 0x43,\n\t0xE6, 0xB0, 0x8F, 0x43, 0xE6, 0xB0, 0x94, 0x43,\n\t0xE6, 0xB0, 0xB4, 0x43, 0xE6, 0xB1, 0x8E, 0x43,\n\t0xE6, 0xB1, 0xA7, 0x43, 0xE6, 0xB2, 0x88, 0x43,\n\t0xE6, 0xB2, 0xBF, 0x43, 0xE6, 0xB3, 0x8C, 0x43,\n\t0xE6, 0xB3, 0x8D, 0x43, 0xE6, 0xB3, 0xA5, 0x43,\n\t0xE6, 0xB3, 0xA8, 0x43, 0xE6, 0xB4, 0x96, 0x43,\n\t// Bytes e00 - e3f\n\t0xE6, 0xB4, 0x9B, 0x43, 0xE6, 0xB4, 0x9E, 0x43,\n\t0xE6, 0xB4, 0xB4, 0x43, 0xE6, 0xB4, 0xBE, 0x43,\n\t0xE6, 0xB5, 0x81, 0x43, 0xE6, 0xB5, 0xA9, 0x43,\n\t0xE6, 0xB5, 0xAA, 0x43, 0xE6, 0xB5, 0xB7, 0x43,\n\t0xE6, 0xB5, 0xB8, 0x43, 0xE6, 0xB6, 0x85, 0x43,\n\t0xE6, 0xB7, 0x8B, 0x43, 0xE6, 0xB7, 0x9A, 0x43,\n\t0xE6, 0xB7, 0xAA, 0x43, 0xE6, 0xB7, 0xB9, 0x43,\n\t0xE6, 0xB8, 0x9A, 0x43, 0xE6, 0xB8, 0xAF, 0x43,\n\t// Bytes e40 - e7f\n\t0xE6, 0xB9, 0xAE, 0x43, 0xE6, 0xBA, 0x80, 0x43,\n\t0xE6, 0xBA, 0x9C, 0x43, 0xE6, 0xBA, 0xBA, 0x43,\n\t0xE6, 0xBB, 0x87, 0x43, 0xE6, 0xBB, 0x8B, 0x43,\n\t0xE6, 0xBB, 0x91, 0x43, 0xE6, 0xBB, 0x9B, 0x43,\n\t0xE6, 0xBC, 0x8F, 0x43, 0xE6, 0xBC, 0x94, 0x43,\n\t0xE6, 0xBC, 0xA2, 0x43, 0xE6, 0xBC, 0xA3, 0x43,\n\t0xE6, 0xBD, 0xAE, 0x43, 0xE6, 0xBF, 0x86, 0x43,\n\t0xE6, 0xBF, 0xAB, 0x43, 0xE6, 0xBF, 0xBE, 0x43,\n\t// Bytes e80 - ebf\n\t0xE7, 0x80, 0x9B, 0x43, 0xE7, 0x80, 0x9E, 0x43,\n\t0xE7, 0x80, 0xB9, 0x43, 0xE7, 0x81, 0x8A, 0x43,\n\t0xE7, 0x81, 0xAB, 0x43, 0xE7, 0x81, 0xB0, 0x43,\n\t0xE7, 0x81, 0xB7, 0x43, 0xE7, 0x81, 0xBD, 0x43,\n\t0xE7, 0x82, 0x99, 0x43, 0xE7, 0x82, 0xAD, 0x43,\n\t0xE7, 0x83, 0x88, 0x43, 0xE7, 0x83, 0x99, 0x43,\n\t0xE7, 0x84, 0xA1, 0x43, 0xE7, 0x85, 0x85, 0x43,\n\t0xE7, 0x85, 0x89, 0x43, 0xE7, 0x85, 0xAE, 0x43,\n\t// Bytes ec0 - eff\n\t0xE7, 0x86, 0x9C, 0x43, 0xE7, 0x87, 0x8E, 0x43,\n\t0xE7, 0x87, 0x90, 0x43, 0xE7, 0x88, 0x90, 0x43,\n\t0xE7, 0x88, 0x9B, 0x43, 0xE7, 0x88, 0xA8, 0x43,\n\t0xE7, 0x88, 0xAA, 0x43, 0xE7, 0x88, 0xAB, 0x43,\n\t0xE7, 0x88, 0xB5, 0x43, 0xE7, 0x88, 0xB6, 0x43,\n\t0xE7, 0x88, 0xBB, 0x43, 0xE7, 0x88, 0xBF, 0x43,\n\t0xE7, 0x89, 0x87, 0x43, 0xE7, 0x89, 0x90, 0x43,\n\t0xE7, 0x89, 0x99, 0x43, 0xE7, 0x89, 0x9B, 0x43,\n\t// Bytes f00 - f3f\n\t0xE7, 0x89, 0xA2, 0x43, 0xE7, 0x89, 0xB9, 0x43,\n\t0xE7, 0x8A, 0x80, 0x43, 0xE7, 0x8A, 0x95, 0x43,\n\t0xE7, 0x8A, 0xAC, 0x43, 0xE7, 0x8A, 0xAF, 0x43,\n\t0xE7, 0x8B, 0x80, 0x43, 0xE7, 0x8B, 0xBC, 0x43,\n\t0xE7, 0x8C, 0xAA, 0x43, 0xE7, 0x8D, 0xB5, 0x43,\n\t0xE7, 0x8D, 0xBA, 0x43, 0xE7, 0x8E, 0x84, 0x43,\n\t0xE7, 0x8E, 0x87, 0x43, 0xE7, 0x8E, 0x89, 0x43,\n\t0xE7, 0x8E, 0x8B, 0x43, 0xE7, 0x8E, 0xA5, 0x43,\n\t// Bytes f40 - f7f\n\t0xE7, 0x8E, 0xB2, 0x43, 0xE7, 0x8F, 0x9E, 0x43,\n\t0xE7, 0x90, 0x86, 0x43, 0xE7, 0x90, 0x89, 0x43,\n\t0xE7, 0x90, 0xA2, 0x43, 0xE7, 0x91, 0x87, 0x43,\n\t0xE7, 0x91, 0x9C, 0x43, 0xE7, 0x91, 0xA9, 0x43,\n\t0xE7, 0x91, 0xB1, 0x43, 0xE7, 0x92, 0x85, 0x43,\n\t0xE7, 0x92, 0x89, 0x43, 0xE7, 0x92, 0x98, 0x43,\n\t0xE7, 0x93, 0x8A, 0x43, 0xE7, 0x93, 0x9C, 0x43,\n\t0xE7, 0x93, 0xA6, 0x43, 0xE7, 0x94, 0x86, 0x43,\n\t// Bytes f80 - fbf\n\t0xE7, 0x94, 0x98, 0x43, 0xE7, 0x94, 0x9F, 0x43,\n\t0xE7, 0x94, 0xA4, 0x43, 0xE7, 0x94, 0xA8, 0x43,\n\t0xE7, 0x94, 0xB0, 0x43, 0xE7, 0x94, 0xB2, 0x43,\n\t0xE7, 0x94, 0xB3, 0x43, 0xE7, 0x94, 0xB7, 0x43,\n\t0xE7, 0x94, 0xBB, 0x43, 0xE7, 0x94, 0xBE, 0x43,\n\t0xE7, 0x95, 0x99, 0x43, 0xE7, 0x95, 0xA5, 0x43,\n\t0xE7, 0x95, 0xB0, 0x43, 0xE7, 0x96, 0x8B, 0x43,\n\t0xE7, 0x96, 0x92, 0x43, 0xE7, 0x97, 0xA2, 0x43,\n\t// Bytes fc0 - fff\n\t0xE7, 0x98, 0x90, 0x43, 0xE7, 0x98, 0x9D, 0x43,\n\t0xE7, 0x98, 0x9F, 0x43, 0xE7, 0x99, 0x82, 0x43,\n\t0xE7, 0x99, 0xA9, 0x43, 0xE7, 0x99, 0xB6, 0x43,\n\t0xE7, 0x99, 0xBD, 0x43, 0xE7, 0x9A, 0xAE, 0x43,\n\t0xE7, 0x9A, 0xBF, 0x43, 0xE7, 0x9B, 0x8A, 0x43,\n\t0xE7, 0x9B, 0x9B, 0x43, 0xE7, 0x9B, 0xA3, 0x43,\n\t0xE7, 0x9B, 0xA7, 0x43, 0xE7, 0x9B, 0xAE, 0x43,\n\t0xE7, 0x9B, 0xB4, 0x43, 0xE7, 0x9C, 0x81, 0x43,\n\t// Bytes 1000 - 103f\n\t0xE7, 0x9C, 0x9E, 0x43, 0xE7, 0x9C, 0x9F, 0x43,\n\t0xE7, 0x9D, 0x80, 0x43, 0xE7, 0x9D, 0x8A, 0x43,\n\t0xE7, 0x9E, 0x8B, 0x43, 0xE7, 0x9E, 0xA7, 0x43,\n\t0xE7, 0x9F, 0x9B, 0x43, 0xE7, 0x9F, 0xA2, 0x43,\n\t0xE7, 0x9F, 0xB3, 0x43, 0xE7, 0xA1, 0x8E, 0x43,\n\t0xE7, 0xA1, 0xAB, 0x43, 0xE7, 0xA2, 0x8C, 0x43,\n\t0xE7, 0xA2, 0x91, 0x43, 0xE7, 0xA3, 0x8A, 0x43,\n\t0xE7, 0xA3, 0x8C, 0x43, 0xE7, 0xA3, 0xBB, 0x43,\n\t// Bytes 1040 - 107f\n\t0xE7, 0xA4, 0xAA, 0x43, 0xE7, 0xA4, 0xBA, 0x43,\n\t0xE7, 0xA4, 0xBC, 0x43, 0xE7, 0xA4, 0xBE, 0x43,\n\t0xE7, 0xA5, 0x88, 0x43, 0xE7, 0xA5, 0x89, 0x43,\n\t0xE7, 0xA5, 0x90, 0x43, 0xE7, 0xA5, 0x96, 0x43,\n\t0xE7, 0xA5, 0x9D, 0x43, 0xE7, 0xA5, 0x9E, 0x43,\n\t0xE7, 0xA5, 0xA5, 0x43, 0xE7, 0xA5, 0xBF, 0x43,\n\t0xE7, 0xA6, 0x81, 0x43, 0xE7, 0xA6, 0x8D, 0x43,\n\t0xE7, 0xA6, 0x8E, 0x43, 0xE7, 0xA6, 0x8F, 0x43,\n\t// Bytes 1080 - 10bf\n\t0xE7, 0xA6, 0xAE, 0x43, 0xE7, 0xA6, 0xB8, 0x43,\n\t0xE7, 0xA6, 0xBE, 0x43, 0xE7, 0xA7, 0x8A, 0x43,\n\t0xE7, 0xA7, 0x98, 0x43, 0xE7, 0xA7, 0xAB, 0x43,\n\t0xE7, 0xA8, 0x9C, 0x43, 0xE7, 0xA9, 0x80, 0x43,\n\t0xE7, 0xA9, 0x8A, 0x43, 0xE7, 0xA9, 0x8F, 0x43,\n\t0xE7, 0xA9, 0xB4, 0x43, 0xE7, 0xA9, 0xBA, 0x43,\n\t0xE7, 0xAA, 0x81, 0x43, 0xE7, 0xAA, 0xB1, 0x43,\n\t0xE7, 0xAB, 0x8B, 0x43, 0xE7, 0xAB, 0xAE, 0x43,\n\t// Bytes 10c0 - 10ff\n\t0xE7, 0xAB, 0xB9, 0x43, 0xE7, 0xAC, 0xA0, 0x43,\n\t0xE7, 0xAE, 0x8F, 0x43, 0xE7, 0xAF, 0x80, 0x43,\n\t0xE7, 0xAF, 0x86, 0x43, 0xE7, 0xAF, 0x89, 0x43,\n\t0xE7, 0xB0, 0xBE, 0x43, 0xE7, 0xB1, 0xA0, 0x43,\n\t0xE7, 0xB1, 0xB3, 0x43, 0xE7, 0xB1, 0xBB, 0x43,\n\t0xE7, 0xB2, 0x92, 0x43, 0xE7, 0xB2, 0xBE, 0x43,\n\t0xE7, 0xB3, 0x92, 0x43, 0xE7, 0xB3, 0x96, 0x43,\n\t0xE7, 0xB3, 0xA3, 0x43, 0xE7, 0xB3, 0xA7, 0x43,\n\t// Bytes 1100 - 113f\n\t0xE7, 0xB3, 0xA8, 0x43, 0xE7, 0xB3, 0xB8, 0x43,\n\t0xE7, 0xB4, 0x80, 0x43, 0xE7, 0xB4, 0x90, 0x43,\n\t0xE7, 0xB4, 0xA2, 0x43, 0xE7, 0xB4, 0xAF, 0x43,\n\t0xE7, 0xB5, 0x82, 0x43, 0xE7, 0xB5, 0x9B, 0x43,\n\t0xE7, 0xB5, 0xA3, 0x43, 0xE7, 0xB6, 0xA0, 0x43,\n\t0xE7, 0xB6, 0xBE, 0x43, 0xE7, 0xB7, 0x87, 0x43,\n\t0xE7, 0xB7, 0xB4, 0x43, 0xE7, 0xB8, 0x82, 0x43,\n\t0xE7, 0xB8, 0x89, 0x43, 0xE7, 0xB8, 0xB7, 0x43,\n\t// Bytes 1140 - 117f\n\t0xE7, 0xB9, 0x81, 0x43, 0xE7, 0xB9, 0x85, 0x43,\n\t0xE7, 0xBC, 0xB6, 0x43, 0xE7, 0xBC, 0xBE, 0x43,\n\t0xE7, 0xBD, 0x91, 0x43, 0xE7, 0xBD, 0xB2, 0x43,\n\t0xE7, 0xBD, 0xB9, 0x43, 0xE7, 0xBD, 0xBA, 0x43,\n\t0xE7, 0xBE, 0x85, 0x43, 0xE7, 0xBE, 0x8A, 0x43,\n\t0xE7, 0xBE, 0x95, 0x43, 0xE7, 0xBE, 0x9A, 0x43,\n\t0xE7, 0xBE, 0xBD, 0x43, 0xE7, 0xBF, 0xBA, 0x43,\n\t0xE8, 0x80, 0x81, 0x43, 0xE8, 0x80, 0x85, 0x43,\n\t// Bytes 1180 - 11bf\n\t0xE8, 0x80, 0x8C, 0x43, 0xE8, 0x80, 0x92, 0x43,\n\t0xE8, 0x80, 0xB3, 0x43, 0xE8, 0x81, 0x86, 0x43,\n\t0xE8, 0x81, 0xA0, 0x43, 0xE8, 0x81, 0xAF, 0x43,\n\t0xE8, 0x81, 0xB0, 0x43, 0xE8, 0x81, 0xBE, 0x43,\n\t0xE8, 0x81, 0xBF, 0x43, 0xE8, 0x82, 0x89, 0x43,\n\t0xE8, 0x82, 0x8B, 0x43, 0xE8, 0x82, 0xAD, 0x43,\n\t0xE8, 0x82, 0xB2, 0x43, 0xE8, 0x84, 0x83, 0x43,\n\t0xE8, 0x84, 0xBE, 0x43, 0xE8, 0x87, 0x98, 0x43,\n\t// Bytes 11c0 - 11ff\n\t0xE8, 0x87, 0xA3, 0x43, 0xE8, 0x87, 0xA8, 0x43,\n\t0xE8, 0x87, 0xAA, 0x43, 0xE8, 0x87, 0xAD, 0x43,\n\t0xE8, 0x87, 0xB3, 0x43, 0xE8, 0x87, 0xBC, 0x43,\n\t0xE8, 0x88, 0x81, 0x43, 0xE8, 0x88, 0x84, 0x43,\n\t0xE8, 0x88, 0x8C, 0x43, 0xE8, 0x88, 0x98, 0x43,\n\t0xE8, 0x88, 0x9B, 0x43, 0xE8, 0x88, 0x9F, 0x43,\n\t0xE8, 0x89, 0xAE, 0x43, 0xE8, 0x89, 0xAF, 0x43,\n\t0xE8, 0x89, 0xB2, 0x43, 0xE8, 0x89, 0xB8, 0x43,\n\t// Bytes 1200 - 123f\n\t0xE8, 0x89, 0xB9, 0x43, 0xE8, 0x8A, 0x8B, 0x43,\n\t0xE8, 0x8A, 0x91, 0x43, 0xE8, 0x8A, 0x9D, 0x43,\n\t0xE8, 0x8A, 0xB1, 0x43, 0xE8, 0x8A, 0xB3, 0x43,\n\t0xE8, 0x8A, 0xBD, 0x43, 0xE8, 0x8B, 0xA5, 0x43,\n\t0xE8, 0x8B, 0xA6, 0x43, 0xE8, 0x8C, 0x9D, 0x43,\n\t0xE8, 0x8C, 0xA3, 0x43, 0xE8, 0x8C, 0xB6, 0x43,\n\t0xE8, 0x8D, 0x92, 0x43, 0xE8, 0x8D, 0x93, 0x43,\n\t0xE8, 0x8D, 0xA3, 0x43, 0xE8, 0x8E, 0xAD, 0x43,\n\t// Bytes 1240 - 127f\n\t0xE8, 0x8E, 0xBD, 0x43, 0xE8, 0x8F, 0x89, 0x43,\n\t0xE8, 0x8F, 0x8A, 0x43, 0xE8, 0x8F, 0x8C, 0x43,\n\t0xE8, 0x8F, 0x9C, 0x43, 0xE8, 0x8F, 0xA7, 0x43,\n\t0xE8, 0x8F, 0xAF, 0x43, 0xE8, 0x8F, 0xB1, 0x43,\n\t0xE8, 0x90, 0xBD, 0x43, 0xE8, 0x91, 0x89, 0x43,\n\t0xE8, 0x91, 0x97, 0x43, 0xE8, 0x93, 0xAE, 0x43,\n\t0xE8, 0x93, 0xB1, 0x43, 0xE8, 0x93, 0xB3, 0x43,\n\t0xE8, 0x93, 0xBC, 0x43, 0xE8, 0x94, 0x96, 0x43,\n\t// Bytes 1280 - 12bf\n\t0xE8, 0x95, 0xA4, 0x43, 0xE8, 0x97, 0x8D, 0x43,\n\t0xE8, 0x97, 0xBA, 0x43, 0xE8, 0x98, 0x86, 0x43,\n\t0xE8, 0x98, 0x92, 0x43, 0xE8, 0x98, 0xAD, 0x43,\n\t0xE8, 0x98, 0xBF, 0x43, 0xE8, 0x99, 0x8D, 0x43,\n\t0xE8, 0x99, 0x90, 0x43, 0xE8, 0x99, 0x9C, 0x43,\n\t0xE8, 0x99, 0xA7, 0x43, 0xE8, 0x99, 0xA9, 0x43,\n\t0xE8, 0x99, 0xAB, 0x43, 0xE8, 0x9A, 0x88, 0x43,\n\t0xE8, 0x9A, 0xA9, 0x43, 0xE8, 0x9B, 0xA2, 0x43,\n\t// Bytes 12c0 - 12ff\n\t0xE8, 0x9C, 0x8E, 0x43, 0xE8, 0x9C, 0xA8, 0x43,\n\t0xE8, 0x9D, 0xAB, 0x43, 0xE8, 0x9D, 0xB9, 0x43,\n\t0xE8, 0x9E, 0x86, 0x43, 0xE8, 0x9E, 0xBA, 0x43,\n\t0xE8, 0x9F, 0xA1, 0x43, 0xE8, 0xA0, 0x81, 0x43,\n\t0xE8, 0xA0, 0x9F, 0x43, 0xE8, 0xA1, 0x80, 0x43,\n\t0xE8, 0xA1, 0x8C, 0x43, 0xE8, 0xA1, 0xA0, 0x43,\n\t0xE8, 0xA1, 0xA3, 0x43, 0xE8, 0xA3, 0x82, 0x43,\n\t0xE8, 0xA3, 0x8F, 0x43, 0xE8, 0xA3, 0x97, 0x43,\n\t// Bytes 1300 - 133f\n\t0xE8, 0xA3, 0x9E, 0x43, 0xE8, 0xA3, 0xA1, 0x43,\n\t0xE8, 0xA3, 0xB8, 0x43, 0xE8, 0xA3, 0xBA, 0x43,\n\t0xE8, 0xA4, 0x90, 0x43, 0xE8, 0xA5, 0x81, 0x43,\n\t0xE8, 0xA5, 0xA4, 0x43, 0xE8, 0xA5, 0xBE, 0x43,\n\t0xE8, 0xA6, 0x86, 0x43, 0xE8, 0xA6, 0x8B, 0x43,\n\t0xE8, 0xA6, 0x96, 0x43, 0xE8, 0xA7, 0x92, 0x43,\n\t0xE8, 0xA7, 0xA3, 0x43, 0xE8, 0xA8, 0x80, 0x43,\n\t0xE8, 0xAA, 0xA0, 0x43, 0xE8, 0xAA, 0xAA, 0x43,\n\t// Bytes 1340 - 137f\n\t0xE8, 0xAA, 0xBF, 0x43, 0xE8, 0xAB, 0x8B, 0x43,\n\t0xE8, 0xAB, 0x92, 0x43, 0xE8, 0xAB, 0x96, 0x43,\n\t0xE8, 0xAB, 0xAD, 0x43, 0xE8, 0xAB, 0xB8, 0x43,\n\t0xE8, 0xAB, 0xBE, 0x43, 0xE8, 0xAC, 0x81, 0x43,\n\t0xE8, 0xAC, 0xB9, 0x43, 0xE8, 0xAD, 0x98, 0x43,\n\t0xE8, 0xAE, 0x80, 0x43, 0xE8, 0xAE, 0x8A, 0x43,\n\t0xE8, 0xB0, 0xB7, 0x43, 0xE8, 0xB1, 0x86, 0x43,\n\t0xE8, 0xB1, 0x88, 0x43, 0xE8, 0xB1, 0x95, 0x43,\n\t// Bytes 1380 - 13bf\n\t0xE8, 0xB1, 0xB8, 0x43, 0xE8, 0xB2, 0x9D, 0x43,\n\t0xE8, 0xB2, 0xA1, 0x43, 0xE8, 0xB2, 0xA9, 0x43,\n\t0xE8, 0xB2, 0xAB, 0x43, 0xE8, 0xB3, 0x81, 0x43,\n\t0xE8, 0xB3, 0x82, 0x43, 0xE8, 0xB3, 0x87, 0x43,\n\t0xE8, 0xB3, 0x88, 0x43, 0xE8, 0xB3, 0x93, 0x43,\n\t0xE8, 0xB4, 0x88, 0x43, 0xE8, 0xB4, 0x9B, 0x43,\n\t0xE8, 0xB5, 0xA4, 0x43, 0xE8, 0xB5, 0xB0, 0x43,\n\t0xE8, 0xB5, 0xB7, 0x43, 0xE8, 0xB6, 0xB3, 0x43,\n\t// Bytes 13c0 - 13ff\n\t0xE8, 0xB6, 0xBC, 0x43, 0xE8, 0xB7, 0x8B, 0x43,\n\t0xE8, 0xB7, 0xAF, 0x43, 0xE8, 0xB7, 0xB0, 0x43,\n\t0xE8, 0xBA, 0xAB, 0x43, 0xE8, 0xBB, 0x8A, 0x43,\n\t0xE8, 0xBB, 0x94, 0x43, 0xE8, 0xBC, 0xA6, 0x43,\n\t0xE8, 0xBC, 0xAA, 0x43, 0xE8, 0xBC, 0xB8, 0x43,\n\t0xE8, 0xBC, 0xBB, 0x43, 0xE8, 0xBD, 0xA2, 0x43,\n\t0xE8, 0xBE, 0x9B, 0x43, 0xE8, 0xBE, 0x9E, 0x43,\n\t0xE8, 0xBE, 0xB0, 0x43, 0xE8, 0xBE, 0xB5, 0x43,\n\t// Bytes 1400 - 143f\n\t0xE8, 0xBE, 0xB6, 0x43, 0xE9, 0x80, 0xA3, 0x43,\n\t0xE9, 0x80, 0xB8, 0x43, 0xE9, 0x81, 0x8A, 0x43,\n\t0xE9, 0x81, 0xA9, 0x43, 0xE9, 0x81, 0xB2, 0x43,\n\t0xE9, 0x81, 0xBC, 0x43, 0xE9, 0x82, 0x8F, 0x43,\n\t0xE9, 0x82, 0x91, 0x43, 0xE9, 0x82, 0x94, 0x43,\n\t0xE9, 0x83, 0x8E, 0x43, 0xE9, 0x83, 0x9E, 0x43,\n\t0xE9, 0x83, 0xB1, 0x43, 0xE9, 0x83, 0xBD, 0x43,\n\t0xE9, 0x84, 0x91, 0x43, 0xE9, 0x84, 0x9B, 0x43,\n\t// Bytes 1440 - 147f\n\t0xE9, 0x85, 0x89, 0x43, 0xE9, 0x85, 0x8D, 0x43,\n\t0xE9, 0x85, 0xAA, 0x43, 0xE9, 0x86, 0x99, 0x43,\n\t0xE9, 0x86, 0xB4, 0x43, 0xE9, 0x87, 0x86, 0x43,\n\t0xE9, 0x87, 0x8C, 0x43, 0xE9, 0x87, 0x8F, 0x43,\n\t0xE9, 0x87, 0x91, 0x43, 0xE9, 0x88, 0xB4, 0x43,\n\t0xE9, 0x88, 0xB8, 0x43, 0xE9, 0x89, 0xB6, 0x43,\n\t0xE9, 0x89, 0xBC, 0x43, 0xE9, 0x8B, 0x97, 0x43,\n\t0xE9, 0x8B, 0x98, 0x43, 0xE9, 0x8C, 0x84, 0x43,\n\t// Bytes 1480 - 14bf\n\t0xE9, 0x8D, 0x8A, 0x43, 0xE9, 0x8F, 0xB9, 0x43,\n\t0xE9, 0x90, 0x95, 0x43, 0xE9, 0x95, 0xB7, 0x43,\n\t0xE9, 0x96, 0x80, 0x43, 0xE9, 0x96, 0x8B, 0x43,\n\t0xE9, 0x96, 0xAD, 0x43, 0xE9, 0x96, 0xB7, 0x43,\n\t0xE9, 0x98, 0x9C, 0x43, 0xE9, 0x98, 0xAE, 0x43,\n\t0xE9, 0x99, 0x8B, 0x43, 0xE9, 0x99, 0x8D, 0x43,\n\t0xE9, 0x99, 0xB5, 0x43, 0xE9, 0x99, 0xB8, 0x43,\n\t0xE9, 0x99, 0xBC, 0x43, 0xE9, 0x9A, 0x86, 0x43,\n\t// Bytes 14c0 - 14ff\n\t0xE9, 0x9A, 0xA3, 0x43, 0xE9, 0x9A, 0xB6, 0x43,\n\t0xE9, 0x9A, 0xB7, 0x43, 0xE9, 0x9A, 0xB8, 0x43,\n\t0xE9, 0x9A, 0xB9, 0x43, 0xE9, 0x9B, 0x83, 0x43,\n\t0xE9, 0x9B, 0xA2, 0x43, 0xE9, 0x9B, 0xA3, 0x43,\n\t0xE9, 0x9B, 0xA8, 0x43, 0xE9, 0x9B, 0xB6, 0x43,\n\t0xE9, 0x9B, 0xB7, 0x43, 0xE9, 0x9C, 0xA3, 0x43,\n\t0xE9, 0x9C, 0xB2, 0x43, 0xE9, 0x9D, 0x88, 0x43,\n\t0xE9, 0x9D, 0x91, 0x43, 0xE9, 0x9D, 0x96, 0x43,\n\t// Bytes 1500 - 153f\n\t0xE9, 0x9D, 0x9E, 0x43, 0xE9, 0x9D, 0xA2, 0x43,\n\t0xE9, 0x9D, 0xA9, 0x43, 0xE9, 0x9F, 0x8B, 0x43,\n\t0xE9, 0x9F, 0x9B, 0x43, 0xE9, 0x9F, 0xA0, 0x43,\n\t0xE9, 0x9F, 0xAD, 0x43, 0xE9, 0x9F, 0xB3, 0x43,\n\t0xE9, 0x9F, 0xBF, 0x43, 0xE9, 0xA0, 0x81, 0x43,\n\t0xE9, 0xA0, 0x85, 0x43, 0xE9, 0xA0, 0x8B, 0x43,\n\t0xE9, 0xA0, 0x98, 0x43, 0xE9, 0xA0, 0xA9, 0x43,\n\t0xE9, 0xA0, 0xBB, 0x43, 0xE9, 0xA1, 0x9E, 0x43,\n\t// Bytes 1540 - 157f\n\t0xE9, 0xA2, 0xA8, 0x43, 0xE9, 0xA3, 0x9B, 0x43,\n\t0xE9, 0xA3, 0x9F, 0x43, 0xE9, 0xA3, 0xA2, 0x43,\n\t0xE9, 0xA3, 0xAF, 0x43, 0xE9, 0xA3, 0xBC, 0x43,\n\t0xE9, 0xA4, 0xA8, 0x43, 0xE9, 0xA4, 0xA9, 0x43,\n\t0xE9, 0xA6, 0x96, 0x43, 0xE9, 0xA6, 0x99, 0x43,\n\t0xE9, 0xA6, 0xA7, 0x43, 0xE9, 0xA6, 0xAC, 0x43,\n\t0xE9, 0xA7, 0x82, 0x43, 0xE9, 0xA7, 0xB1, 0x43,\n\t0xE9, 0xA7, 0xBE, 0x43, 0xE9, 0xA9, 0xAA, 0x43,\n\t// Bytes 1580 - 15bf\n\t0xE9, 0xAA, 0xA8, 0x43, 0xE9, 0xAB, 0x98, 0x43,\n\t0xE9, 0xAB, 0x9F, 0x43, 0xE9, 0xAC, 0x92, 0x43,\n\t0xE9, 0xAC, 0xA5, 0x43, 0xE9, 0xAC, 0xAF, 0x43,\n\t0xE9, 0xAC, 0xB2, 0x43, 0xE9, 0xAC, 0xBC, 0x43,\n\t0xE9, 0xAD, 0x9A, 0x43, 0xE9, 0xAD, 0xAF, 0x43,\n\t0xE9, 0xB1, 0x80, 0x43, 0xE9, 0xB1, 0x97, 0x43,\n\t0xE9, 0xB3, 0xA5, 0x43, 0xE9, 0xB3, 0xBD, 0x43,\n\t0xE9, 0xB5, 0xA7, 0x43, 0xE9, 0xB6, 0xB4, 0x43,\n\t// Bytes 15c0 - 15ff\n\t0xE9, 0xB7, 0xBA, 0x43, 0xE9, 0xB8, 0x9E, 0x43,\n\t0xE9, 0xB9, 0xB5, 0x43, 0xE9, 0xB9, 0xBF, 0x43,\n\t0xE9, 0xBA, 0x97, 0x43, 0xE9, 0xBA, 0x9F, 0x43,\n\t0xE9, 0xBA, 0xA5, 0x43, 0xE9, 0xBA, 0xBB, 0x43,\n\t0xE9, 0xBB, 0x83, 0x43, 0xE9, 0xBB, 0x8D, 0x43,\n\t0xE9, 0xBB, 0x8E, 0x43, 0xE9, 0xBB, 0x91, 0x43,\n\t0xE9, 0xBB, 0xB9, 0x43, 0xE9, 0xBB, 0xBD, 0x43,\n\t0xE9, 0xBB, 0xBE, 0x43, 0xE9, 0xBC, 0x85, 0x43,\n\t// Bytes 1600 - 163f\n\t0xE9, 0xBC, 0x8E, 0x43, 0xE9, 0xBC, 0x8F, 0x43,\n\t0xE9, 0xBC, 0x93, 0x43, 0xE9, 0xBC, 0x96, 0x43,\n\t0xE9, 0xBC, 0xA0, 0x43, 0xE9, 0xBC, 0xBB, 0x43,\n\t0xE9, 0xBD, 0x83, 0x43, 0xE9, 0xBD, 0x8A, 0x43,\n\t0xE9, 0xBD, 0x92, 0x43, 0xE9, 0xBE, 0x8D, 0x43,\n\t0xE9, 0xBE, 0x8E, 0x43, 0xE9, 0xBE, 0x9C, 0x43,\n\t0xE9, 0xBE, 0x9F, 0x43, 0xE9, 0xBE, 0xA0, 0x43,\n\t0xEA, 0x9C, 0xA7, 0x43, 0xEA, 0x9D, 0xAF, 0x43,\n\t// Bytes 1640 - 167f\n\t0xEA, 0xAC, 0xB7, 0x43, 0xEA, 0xAD, 0x92, 0x44,\n\t0xF0, 0xA0, 0x84, 0xA2, 0x44, 0xF0, 0xA0, 0x94,\n\t0x9C, 0x44, 0xF0, 0xA0, 0x94, 0xA5, 0x44, 0xF0,\n\t0xA0, 0x95, 0x8B, 0x44, 0xF0, 0xA0, 0x98, 0xBA,\n\t0x44, 0xF0, 0xA0, 0xA0, 0x84, 0x44, 0xF0, 0xA0,\n\t0xA3, 0x9E, 0x44, 0xF0, 0xA0, 0xA8, 0xAC, 0x44,\n\t0xF0, 0xA0, 0xAD, 0xA3, 0x44, 0xF0, 0xA1, 0x93,\n\t0xA4, 0x44, 0xF0, 0xA1, 0x9A, 0xA8, 0x44, 0xF0,\n\t// Bytes 1680 - 16bf\n\t0xA1, 0x9B, 0xAA, 0x44, 0xF0, 0xA1, 0xA7, 0x88,\n\t0x44, 0xF0, 0xA1, 0xAC, 0x98, 0x44, 0xF0, 0xA1,\n\t0xB4, 0x8B, 0x44, 0xF0, 0xA1, 0xB7, 0xA4, 0x44,\n\t0xF0, 0xA1, 0xB7, 0xA6, 0x44, 0xF0, 0xA2, 0x86,\n\t0x83, 0x44, 0xF0, 0xA2, 0x86, 0x9F, 0x44, 0xF0,\n\t0xA2, 0x8C, 0xB1, 0x44, 0xF0, 0xA2, 0x9B, 0x94,\n\t0x44, 0xF0, 0xA2, 0xA1, 0x84, 0x44, 0xF0, 0xA2,\n\t0xA1, 0x8A, 0x44, 0xF0, 0xA2, 0xAC, 0x8C, 0x44,\n\t// Bytes 16c0 - 16ff\n\t0xF0, 0xA2, 0xAF, 0xB1, 0x44, 0xF0, 0xA3, 0x80,\n\t0x8A, 0x44, 0xF0, 0xA3, 0x8A, 0xB8, 0x44, 0xF0,\n\t0xA3, 0x8D, 0x9F, 0x44, 0xF0, 0xA3, 0x8E, 0x93,\n\t0x44, 0xF0, 0xA3, 0x8E, 0x9C, 0x44, 0xF0, 0xA3,\n\t0x8F, 0x83, 0x44, 0xF0, 0xA3, 0x8F, 0x95, 0x44,\n\t0xF0, 0xA3, 0x91, 0xAD, 0x44, 0xF0, 0xA3, 0x9A,\n\t0xA3, 0x44, 0xF0, 0xA3, 0xA2, 0xA7, 0x44, 0xF0,\n\t0xA3, 0xAA, 0x8D, 0x44, 0xF0, 0xA3, 0xAB, 0xBA,\n\t// Bytes 1700 - 173f\n\t0x44, 0xF0, 0xA3, 0xB2, 0xBC, 0x44, 0xF0, 0xA3,\n\t0xB4, 0x9E, 0x44, 0xF0, 0xA3, 0xBB, 0x91, 0x44,\n\t0xF0, 0xA3, 0xBD, 0x9E, 0x44, 0xF0, 0xA3, 0xBE,\n\t0x8E, 0x44, 0xF0, 0xA4, 0x89, 0xA3, 0x44, 0xF0,\n\t0xA4, 0x8B, 0xAE, 0x44, 0xF0, 0xA4, 0x8E, 0xAB,\n\t0x44, 0xF0, 0xA4, 0x98, 0x88, 0x44, 0xF0, 0xA4,\n\t0x9C, 0xB5, 0x44, 0xF0, 0xA4, 0xA0, 0x94, 0x44,\n\t0xF0, 0xA4, 0xB0, 0xB6, 0x44, 0xF0, 0xA4, 0xB2,\n\t// Bytes 1740 - 177f\n\t0x92, 0x44, 0xF0, 0xA4, 0xBE, 0xA1, 0x44, 0xF0,\n\t0xA4, 0xBE, 0xB8, 0x44, 0xF0, 0xA5, 0x81, 0x84,\n\t0x44, 0xF0, 0xA5, 0x83, 0xB2, 0x44, 0xF0, 0xA5,\n\t0x83, 0xB3, 0x44, 0xF0, 0xA5, 0x84, 0x99, 0x44,\n\t0xF0, 0xA5, 0x84, 0xB3, 0x44, 0xF0, 0xA5, 0x89,\n\t0x89, 0x44, 0xF0, 0xA5, 0x90, 0x9D, 0x44, 0xF0,\n\t0xA5, 0x98, 0xA6, 0x44, 0xF0, 0xA5, 0x9A, 0x9A,\n\t0x44, 0xF0, 0xA5, 0x9B, 0x85, 0x44, 0xF0, 0xA5,\n\t// Bytes 1780 - 17bf\n\t0xA5, 0xBC, 0x44, 0xF0, 0xA5, 0xAA, 0xA7, 0x44,\n\t0xF0, 0xA5, 0xAE, 0xAB, 0x44, 0xF0, 0xA5, 0xB2,\n\t0x80, 0x44, 0xF0, 0xA5, 0xB3, 0x90, 0x44, 0xF0,\n\t0xA5, 0xBE, 0x86, 0x44, 0xF0, 0xA6, 0x87, 0x9A,\n\t0x44, 0xF0, 0xA6, 0x88, 0xA8, 0x44, 0xF0, 0xA6,\n\t0x89, 0x87, 0x44, 0xF0, 0xA6, 0x8B, 0x99, 0x44,\n\t0xF0, 0xA6, 0x8C, 0xBE, 0x44, 0xF0, 0xA6, 0x93,\n\t0x9A, 0x44, 0xF0, 0xA6, 0x94, 0xA3, 0x44, 0xF0,\n\t// Bytes 17c0 - 17ff\n\t0xA6, 0x96, 0xA8, 0x44, 0xF0, 0xA6, 0x9E, 0xA7,\n\t0x44, 0xF0, 0xA6, 0x9E, 0xB5, 0x44, 0xF0, 0xA6,\n\t0xAC, 0xBC, 0x44, 0xF0, 0xA6, 0xB0, 0xB6, 0x44,\n\t0xF0, 0xA6, 0xB3, 0x95, 0x44, 0xF0, 0xA6, 0xB5,\n\t0xAB, 0x44, 0xF0, 0xA6, 0xBC, 0xAC, 0x44, 0xF0,\n\t0xA6, 0xBE, 0xB1, 0x44, 0xF0, 0xA7, 0x83, 0x92,\n\t0x44, 0xF0, 0xA7, 0x8F, 0x8A, 0x44, 0xF0, 0xA7,\n\t0x99, 0xA7, 0x44, 0xF0, 0xA7, 0xA2, 0xAE, 0x44,\n\t// Bytes 1800 - 183f\n\t0xF0, 0xA7, 0xA5, 0xA6, 0x44, 0xF0, 0xA7, 0xB2,\n\t0xA8, 0x44, 0xF0, 0xA7, 0xBB, 0x93, 0x44, 0xF0,\n\t0xA7, 0xBC, 0xAF, 0x44, 0xF0, 0xA8, 0x97, 0x92,\n\t0x44, 0xF0, 0xA8, 0x97, 0xAD, 0x44, 0xF0, 0xA8,\n\t0x9C, 0xAE, 0x44, 0xF0, 0xA8, 0xAF, 0xBA, 0x44,\n\t0xF0, 0xA8, 0xB5, 0xB7, 0x44, 0xF0, 0xA9, 0x85,\n\t0x85, 0x44, 0xF0, 0xA9, 0x87, 0x9F, 0x44, 0xF0,\n\t0xA9, 0x88, 0x9A, 0x44, 0xF0, 0xA9, 0x90, 0x8A,\n\t// Bytes 1840 - 187f\n\t0x44, 0xF0, 0xA9, 0x92, 0x96, 0x44, 0xF0, 0xA9,\n\t0x96, 0xB6, 0x44, 0xF0, 0xA9, 0xAC, 0xB0, 0x44,\n\t0xF0, 0xAA, 0x83, 0x8E, 0x44, 0xF0, 0xAA, 0x84,\n\t0x85, 0x44, 0xF0, 0xAA, 0x88, 0x8E, 0x44, 0xF0,\n\t0xAA, 0x8A, 0x91, 0x44, 0xF0, 0xAA, 0x8E, 0x92,\n\t0x44, 0xF0, 0xAA, 0x98, 0x80, 0x42, 0x21, 0x21,\n\t0x42, 0x21, 0x3F, 0x42, 0x2E, 0x2E, 0x42, 0x30,\n\t0x2C, 0x42, 0x30, 0x2E, 0x42, 0x31, 0x2C, 0x42,\n\t// Bytes 1880 - 18bf\n\t0x31, 0x2E, 0x42, 0x31, 0x30, 0x42, 0x31, 0x31,\n\t0x42, 0x31, 0x32, 0x42, 0x31, 0x33, 0x42, 0x31,\n\t0x34, 0x42, 0x31, 0x35, 0x42, 0x31, 0x36, 0x42,\n\t0x31, 0x37, 0x42, 0x31, 0x38, 0x42, 0x31, 0x39,\n\t0x42, 0x32, 0x2C, 0x42, 0x32, 0x2E, 0x42, 0x32,\n\t0x30, 0x42, 0x32, 0x31, 0x42, 0x32, 0x32, 0x42,\n\t0x32, 0x33, 0x42, 0x32, 0x34, 0x42, 0x32, 0x35,\n\t0x42, 0x32, 0x36, 0x42, 0x32, 0x37, 0x42, 0x32,\n\t// Bytes 18c0 - 18ff\n\t0x38, 0x42, 0x32, 0x39, 0x42, 0x33, 0x2C, 0x42,\n\t0x33, 0x2E, 0x42, 0x33, 0x30, 0x42, 0x33, 0x31,\n\t0x42, 0x33, 0x32, 0x42, 0x33, 0x33, 0x42, 0x33,\n\t0x34, 0x42, 0x33, 0x35, 0x42, 0x33, 0x36, 0x42,\n\t0x33, 0x37, 0x42, 0x33, 0x38, 0x42, 0x33, 0x39,\n\t0x42, 0x34, 0x2C, 0x42, 0x34, 0x2E, 0x42, 0x34,\n\t0x30, 0x42, 0x34, 0x31, 0x42, 0x34, 0x32, 0x42,\n\t0x34, 0x33, 0x42, 0x34, 0x34, 0x42, 0x34, 0x35,\n\t// Bytes 1900 - 193f\n\t0x42, 0x34, 0x36, 0x42, 0x34, 0x37, 0x42, 0x34,\n\t0x38, 0x42, 0x34, 0x39, 0x42, 0x35, 0x2C, 0x42,\n\t0x35, 0x2E, 0x42, 0x35, 0x30, 0x42, 0x36, 0x2C,\n\t0x42, 0x36, 0x2E, 0x42, 0x37, 0x2C, 0x42, 0x37,\n\t0x2E, 0x42, 0x38, 0x2C, 0x42, 0x38, 0x2E, 0x42,\n\t0x39, 0x2C, 0x42, 0x39, 0x2E, 0x42, 0x3D, 0x3D,\n\t0x42, 0x3F, 0x21, 0x42, 0x3F, 0x3F, 0x42, 0x41,\n\t0x55, 0x42, 0x42, 0x71, 0x42, 0x43, 0x44, 0x42,\n\t// Bytes 1940 - 197f\n\t0x44, 0x4A, 0x42, 0x44, 0x5A, 0x42, 0x44, 0x7A,\n\t0x42, 0x47, 0x42, 0x42, 0x47, 0x79, 0x42, 0x48,\n\t0x50, 0x42, 0x48, 0x56, 0x42, 0x48, 0x67, 0x42,\n\t0x48, 0x7A, 0x42, 0x49, 0x49, 0x42, 0x49, 0x4A,\n\t0x42, 0x49, 0x55, 0x42, 0x49, 0x56, 0x42, 0x49,\n\t0x58, 0x42, 0x4B, 0x42, 0x42, 0x4B, 0x4B, 0x42,\n\t0x4B, 0x4D, 0x42, 0x4C, 0x4A, 0x42, 0x4C, 0x6A,\n\t0x42, 0x4D, 0x42, 0x42, 0x4D, 0x43, 0x42, 0x4D,\n\t// Bytes 1980 - 19bf\n\t0x44, 0x42, 0x4D, 0x52, 0x42, 0x4D, 0x56, 0x42,\n\t0x4D, 0x57, 0x42, 0x4E, 0x4A, 0x42, 0x4E, 0x6A,\n\t0x42, 0x4E, 0x6F, 0x42, 0x50, 0x48, 0x42, 0x50,\n\t0x52, 0x42, 0x50, 0x61, 0x42, 0x52, 0x73, 0x42,\n\t0x53, 0x44, 0x42, 0x53, 0x4D, 0x42, 0x53, 0x53,\n\t0x42, 0x53, 0x76, 0x42, 0x54, 0x4D, 0x42, 0x56,\n\t0x49, 0x42, 0x57, 0x43, 0x42, 0x57, 0x5A, 0x42,\n\t0x57, 0x62, 0x42, 0x58, 0x49, 0x42, 0x63, 0x63,\n\t// Bytes 19c0 - 19ff\n\t0x42, 0x63, 0x64, 0x42, 0x63, 0x6D, 0x42, 0x64,\n\t0x42, 0x42, 0x64, 0x61, 0x42, 0x64, 0x6C, 0x42,\n\t0x64, 0x6D, 0x42, 0x64, 0x7A, 0x42, 0x65, 0x56,\n\t0x42, 0x66, 0x66, 0x42, 0x66, 0x69, 0x42, 0x66,\n\t0x6C, 0x42, 0x66, 0x6D, 0x42, 0x68, 0x61, 0x42,\n\t0x69, 0x69, 0x42, 0x69, 0x6A, 0x42, 0x69, 0x6E,\n\t0x42, 0x69, 0x76, 0x42, 0x69, 0x78, 0x42, 0x6B,\n\t0x41, 0x42, 0x6B, 0x56, 0x42, 0x6B, 0x57, 0x42,\n\t// Bytes 1a00 - 1a3f\n\t0x6B, 0x67, 0x42, 0x6B, 0x6C, 0x42, 0x6B, 0x6D,\n\t0x42, 0x6B, 0x74, 0x42, 0x6C, 0x6A, 0x42, 0x6C,\n\t0x6D, 0x42, 0x6C, 0x6E, 0x42, 0x6C, 0x78, 0x42,\n\t0x6D, 0x32, 0x42, 0x6D, 0x33, 0x42, 0x6D, 0x41,\n\t0x42, 0x6D, 0x56, 0x42, 0x6D, 0x57, 0x42, 0x6D,\n\t0x62, 0x42, 0x6D, 0x67, 0x42, 0x6D, 0x6C, 0x42,\n\t0x6D, 0x6D, 0x42, 0x6D, 0x73, 0x42, 0x6E, 0x41,\n\t0x42, 0x6E, 0x46, 0x42, 0x6E, 0x56, 0x42, 0x6E,\n\t// Bytes 1a40 - 1a7f\n\t0x57, 0x42, 0x6E, 0x6A, 0x42, 0x6E, 0x6D, 0x42,\n\t0x6E, 0x73, 0x42, 0x6F, 0x56, 0x42, 0x70, 0x41,\n\t0x42, 0x70, 0x46, 0x42, 0x70, 0x56, 0x42, 0x70,\n\t0x57, 0x42, 0x70, 0x63, 0x42, 0x70, 0x73, 0x42,\n\t0x73, 0x72, 0x42, 0x73, 0x74, 0x42, 0x76, 0x69,\n\t0x42, 0x78, 0x69, 0x43, 0x28, 0x31, 0x29, 0x43,\n\t0x28, 0x32, 0x29, 0x43, 0x28, 0x33, 0x29, 0x43,\n\t0x28, 0x34, 0x29, 0x43, 0x28, 0x35, 0x29, 0x43,\n\t// Bytes 1a80 - 1abf\n\t0x28, 0x36, 0x29, 0x43, 0x28, 0x37, 0x29, 0x43,\n\t0x28, 0x38, 0x29, 0x43, 0x28, 0x39, 0x29, 0x43,\n\t0x28, 0x41, 0x29, 0x43, 0x28, 0x42, 0x29, 0x43,\n\t0x28, 0x43, 0x29, 0x43, 0x28, 0x44, 0x29, 0x43,\n\t0x28, 0x45, 0x29, 0x43, 0x28, 0x46, 0x29, 0x43,\n\t0x28, 0x47, 0x29, 0x43, 0x28, 0x48, 0x29, 0x43,\n\t0x28, 0x49, 0x29, 0x43, 0x28, 0x4A, 0x29, 0x43,\n\t0x28, 0x4B, 0x29, 0x43, 0x28, 0x4C, 0x29, 0x43,\n\t// Bytes 1ac0 - 1aff\n\t0x28, 0x4D, 0x29, 0x43, 0x28, 0x4E, 0x29, 0x43,\n\t0x28, 0x4F, 0x29, 0x43, 0x28, 0x50, 0x29, 0x43,\n\t0x28, 0x51, 0x29, 0x43, 0x28, 0x52, 0x29, 0x43,\n\t0x28, 0x53, 0x29, 0x43, 0x28, 0x54, 0x29, 0x43,\n\t0x28, 0x55, 0x29, 0x43, 0x28, 0x56, 0x29, 0x43,\n\t0x28, 0x57, 0x29, 0x43, 0x28, 0x58, 0x29, 0x43,\n\t0x28, 0x59, 0x29, 0x43, 0x28, 0x5A, 0x29, 0x43,\n\t0x28, 0x61, 0x29, 0x43, 0x28, 0x62, 0x29, 0x43,\n\t// Bytes 1b00 - 1b3f\n\t0x28, 0x63, 0x29, 0x43, 0x28, 0x64, 0x29, 0x43,\n\t0x28, 0x65, 0x29, 0x43, 0x28, 0x66, 0x29, 0x43,\n\t0x28, 0x67, 0x29, 0x43, 0x28, 0x68, 0x29, 0x43,\n\t0x28, 0x69, 0x29, 0x43, 0x28, 0x6A, 0x29, 0x43,\n\t0x28, 0x6B, 0x29, 0x43, 0x28, 0x6C, 0x29, 0x43,\n\t0x28, 0x6D, 0x29, 0x43, 0x28, 0x6E, 0x29, 0x43,\n\t0x28, 0x6F, 0x29, 0x43, 0x28, 0x70, 0x29, 0x43,\n\t0x28, 0x71, 0x29, 0x43, 0x28, 0x72, 0x29, 0x43,\n\t// Bytes 1b40 - 1b7f\n\t0x28, 0x73, 0x29, 0x43, 0x28, 0x74, 0x29, 0x43,\n\t0x28, 0x75, 0x29, 0x43, 0x28, 0x76, 0x29, 0x43,\n\t0x28, 0x77, 0x29, 0x43, 0x28, 0x78, 0x29, 0x43,\n\t0x28, 0x79, 0x29, 0x43, 0x28, 0x7A, 0x29, 0x43,\n\t0x2E, 0x2E, 0x2E, 0x43, 0x31, 0x30, 0x2E, 0x43,\n\t0x31, 0x31, 0x2E, 0x43, 0x31, 0x32, 0x2E, 0x43,\n\t0x31, 0x33, 0x2E, 0x43, 0x31, 0x34, 0x2E, 0x43,\n\t0x31, 0x35, 0x2E, 0x43, 0x31, 0x36, 0x2E, 0x43,\n\t// Bytes 1b80 - 1bbf\n\t0x31, 0x37, 0x2E, 0x43, 0x31, 0x38, 0x2E, 0x43,\n\t0x31, 0x39, 0x2E, 0x43, 0x32, 0x30, 0x2E, 0x43,\n\t0x3A, 0x3A, 0x3D, 0x43, 0x3D, 0x3D, 0x3D, 0x43,\n\t0x43, 0x6F, 0x2E, 0x43, 0x46, 0x41, 0x58, 0x43,\n\t0x47, 0x48, 0x7A, 0x43, 0x47, 0x50, 0x61, 0x43,\n\t0x49, 0x49, 0x49, 0x43, 0x4C, 0x54, 0x44, 0x43,\n\t0x4C, 0xC2, 0xB7, 0x43, 0x4D, 0x48, 0x7A, 0x43,\n\t0x4D, 0x50, 0x61, 0x43, 0x4D, 0xCE, 0xA9, 0x43,\n\t// Bytes 1bc0 - 1bff\n\t0x50, 0x50, 0x4D, 0x43, 0x50, 0x50, 0x56, 0x43,\n\t0x50, 0x54, 0x45, 0x43, 0x54, 0x45, 0x4C, 0x43,\n\t0x54, 0x48, 0x7A, 0x43, 0x56, 0x49, 0x49, 0x43,\n\t0x58, 0x49, 0x49, 0x43, 0x61, 0x2F, 0x63, 0x43,\n\t0x61, 0x2F, 0x73, 0x43, 0x61, 0xCA, 0xBE, 0x43,\n\t0x62, 0x61, 0x72, 0x43, 0x63, 0x2F, 0x6F, 0x43,\n\t0x63, 0x2F, 0x75, 0x43, 0x63, 0x61, 0x6C, 0x43,\n\t0x63, 0x6D, 0x32, 0x43, 0x63, 0x6D, 0x33, 0x43,\n\t// Bytes 1c00 - 1c3f\n\t0x64, 0x6D, 0x32, 0x43, 0x64, 0x6D, 0x33, 0x43,\n\t0x65, 0x72, 0x67, 0x43, 0x66, 0x66, 0x69, 0x43,\n\t0x66, 0x66, 0x6C, 0x43, 0x67, 0x61, 0x6C, 0x43,\n\t0x68, 0x50, 0x61, 0x43, 0x69, 0x69, 0x69, 0x43,\n\t0x6B, 0x48, 0x7A, 0x43, 0x6B, 0x50, 0x61, 0x43,\n\t0x6B, 0x6D, 0x32, 0x43, 0x6B, 0x6D, 0x33, 0x43,\n\t0x6B, 0xCE, 0xA9, 0x43, 0x6C, 0x6F, 0x67, 0x43,\n\t0x6C, 0xC2, 0xB7, 0x43, 0x6D, 0x69, 0x6C, 0x43,\n\t// Bytes 1c40 - 1c7f\n\t0x6D, 0x6D, 0x32, 0x43, 0x6D, 0x6D, 0x33, 0x43,\n\t0x6D, 0x6F, 0x6C, 0x43, 0x72, 0x61, 0x64, 0x43,\n\t0x76, 0x69, 0x69, 0x43, 0x78, 0x69, 0x69, 0x43,\n\t0xC2, 0xB0, 0x43, 0x43, 0xC2, 0xB0, 0x46, 0x43,\n\t0xCA, 0xBC, 0x6E, 0x43, 0xCE, 0xBC, 0x41, 0x43,\n\t0xCE, 0xBC, 0x46, 0x43, 0xCE, 0xBC, 0x56, 0x43,\n\t0xCE, 0xBC, 0x57, 0x43, 0xCE, 0xBC, 0x67, 0x43,\n\t0xCE, 0xBC, 0x6C, 0x43, 0xCE, 0xBC, 0x6D, 0x43,\n\t// Bytes 1c80 - 1cbf\n\t0xCE, 0xBC, 0x73, 0x44, 0x28, 0x31, 0x30, 0x29,\n\t0x44, 0x28, 0x31, 0x31, 0x29, 0x44, 0x28, 0x31,\n\t0x32, 0x29, 0x44, 0x28, 0x31, 0x33, 0x29, 0x44,\n\t0x28, 0x31, 0x34, 0x29, 0x44, 0x28, 0x31, 0x35,\n\t0x29, 0x44, 0x28, 0x31, 0x36, 0x29, 0x44, 0x28,\n\t0x31, 0x37, 0x29, 0x44, 0x28, 0x31, 0x38, 0x29,\n\t0x44, 0x28, 0x31, 0x39, 0x29, 0x44, 0x28, 0x32,\n\t0x30, 0x29, 0x44, 0x30, 0xE7, 0x82, 0xB9, 0x44,\n\t// Bytes 1cc0 - 1cff\n\t0x31, 0xE2, 0x81, 0x84, 0x44, 0x31, 0xE6, 0x97,\n\t0xA5, 0x44, 0x31, 0xE6, 0x9C, 0x88, 0x44, 0x31,\n\t0xE7, 0x82, 0xB9, 0x44, 0x32, 0xE6, 0x97, 0xA5,\n\t0x44, 0x32, 0xE6, 0x9C, 0x88, 0x44, 0x32, 0xE7,\n\t0x82, 0xB9, 0x44, 0x33, 0xE6, 0x97, 0xA5, 0x44,\n\t0x33, 0xE6, 0x9C, 0x88, 0x44, 0x33, 0xE7, 0x82,\n\t0xB9, 0x44, 0x34, 0xE6, 0x97, 0xA5, 0x44, 0x34,\n\t0xE6, 0x9C, 0x88, 0x44, 0x34, 0xE7, 0x82, 0xB9,\n\t// Bytes 1d00 - 1d3f\n\t0x44, 0x35, 0xE6, 0x97, 0xA5, 0x44, 0x35, 0xE6,\n\t0x9C, 0x88, 0x44, 0x35, 0xE7, 0x82, 0xB9, 0x44,\n\t0x36, 0xE6, 0x97, 0xA5, 0x44, 0x36, 0xE6, 0x9C,\n\t0x88, 0x44, 0x36, 0xE7, 0x82, 0xB9, 0x44, 0x37,\n\t0xE6, 0x97, 0xA5, 0x44, 0x37, 0xE6, 0x9C, 0x88,\n\t0x44, 0x37, 0xE7, 0x82, 0xB9, 0x44, 0x38, 0xE6,\n\t0x97, 0xA5, 0x44, 0x38, 0xE6, 0x9C, 0x88, 0x44,\n\t0x38, 0xE7, 0x82, 0xB9, 0x44, 0x39, 0xE6, 0x97,\n\t// Bytes 1d40 - 1d7f\n\t0xA5, 0x44, 0x39, 0xE6, 0x9C, 0x88, 0x44, 0x39,\n\t0xE7, 0x82, 0xB9, 0x44, 0x56, 0x49, 0x49, 0x49,\n\t0x44, 0x61, 0x2E, 0x6D, 0x2E, 0x44, 0x6B, 0x63,\n\t0x61, 0x6C, 0x44, 0x70, 0x2E, 0x6D, 0x2E, 0x44,\n\t0x76, 0x69, 0x69, 0x69, 0x44, 0xD5, 0xA5, 0xD6,\n\t0x82, 0x44, 0xD5, 0xB4, 0xD5, 0xA5, 0x44, 0xD5,\n\t0xB4, 0xD5, 0xAB, 0x44, 0xD5, 0xB4, 0xD5, 0xAD,\n\t0x44, 0xD5, 0xB4, 0xD5, 0xB6, 0x44, 0xD5, 0xBE,\n\t// Bytes 1d80 - 1dbf\n\t0xD5, 0xB6, 0x44, 0xD7, 0x90, 0xD7, 0x9C, 0x44,\n\t0xD8, 0xA7, 0xD9, 0xB4, 0x44, 0xD8, 0xA8, 0xD8,\n\t0xAC, 0x44, 0xD8, 0xA8, 0xD8, 0xAD, 0x44, 0xD8,\n\t0xA8, 0xD8, 0xAE, 0x44, 0xD8, 0xA8, 0xD8, 0xB1,\n\t0x44, 0xD8, 0xA8, 0xD8, 0xB2, 0x44, 0xD8, 0xA8,\n\t0xD9, 0x85, 0x44, 0xD8, 0xA8, 0xD9, 0x86, 0x44,\n\t0xD8, 0xA8, 0xD9, 0x87, 0x44, 0xD8, 0xA8, 0xD9,\n\t0x89, 0x44, 0xD8, 0xA8, 0xD9, 0x8A, 0x44, 0xD8,\n\t// Bytes 1dc0 - 1dff\n\t0xAA, 0xD8, 0xAC, 0x44, 0xD8, 0xAA, 0xD8, 0xAD,\n\t0x44, 0xD8, 0xAA, 0xD8, 0xAE, 0x44, 0xD8, 0xAA,\n\t0xD8, 0xB1, 0x44, 0xD8, 0xAA, 0xD8, 0xB2, 0x44,\n\t0xD8, 0xAA, 0xD9, 0x85, 0x44, 0xD8, 0xAA, 0xD9,\n\t0x86, 0x44, 0xD8, 0xAA, 0xD9, 0x87, 0x44, 0xD8,\n\t0xAA, 0xD9, 0x89, 0x44, 0xD8, 0xAA, 0xD9, 0x8A,\n\t0x44, 0xD8, 0xAB, 0xD8, 0xAC, 0x44, 0xD8, 0xAB,\n\t0xD8, 0xB1, 0x44, 0xD8, 0xAB, 0xD8, 0xB2, 0x44,\n\t// Bytes 1e00 - 1e3f\n\t0xD8, 0xAB, 0xD9, 0x85, 0x44, 0xD8, 0xAB, 0xD9,\n\t0x86, 0x44, 0xD8, 0xAB, 0xD9, 0x87, 0x44, 0xD8,\n\t0xAB, 0xD9, 0x89, 0x44, 0xD8, 0xAB, 0xD9, 0x8A,\n\t0x44, 0xD8, 0xAC, 0xD8, 0xAD, 0x44, 0xD8, 0xAC,\n\t0xD9, 0x85, 0x44, 0xD8, 0xAC, 0xD9, 0x89, 0x44,\n\t0xD8, 0xAC, 0xD9, 0x8A, 0x44, 0xD8, 0xAD, 0xD8,\n\t0xAC, 0x44, 0xD8, 0xAD, 0xD9, 0x85, 0x44, 0xD8,\n\t0xAD, 0xD9, 0x89, 0x44, 0xD8, 0xAD, 0xD9, 0x8A,\n\t// Bytes 1e40 - 1e7f\n\t0x44, 0xD8, 0xAE, 0xD8, 0xAC, 0x44, 0xD8, 0xAE,\n\t0xD8, 0xAD, 0x44, 0xD8, 0xAE, 0xD9, 0x85, 0x44,\n\t0xD8, 0xAE, 0xD9, 0x89, 0x44, 0xD8, 0xAE, 0xD9,\n\t0x8A, 0x44, 0xD8, 0xB3, 0xD8, 0xAC, 0x44, 0xD8,\n\t0xB3, 0xD8, 0xAD, 0x44, 0xD8, 0xB3, 0xD8, 0xAE,\n\t0x44, 0xD8, 0xB3, 0xD8, 0xB1, 0x44, 0xD8, 0xB3,\n\t0xD9, 0x85, 0x44, 0xD8, 0xB3, 0xD9, 0x87, 0x44,\n\t0xD8, 0xB3, 0xD9, 0x89, 0x44, 0xD8, 0xB3, 0xD9,\n\t// Bytes 1e80 - 1ebf\n\t0x8A, 0x44, 0xD8, 0xB4, 0xD8, 0xAC, 0x44, 0xD8,\n\t0xB4, 0xD8, 0xAD, 0x44, 0xD8, 0xB4, 0xD8, 0xAE,\n\t0x44, 0xD8, 0xB4, 0xD8, 0xB1, 0x44, 0xD8, 0xB4,\n\t0xD9, 0x85, 0x44, 0xD8, 0xB4, 0xD9, 0x87, 0x44,\n\t0xD8, 0xB4, 0xD9, 0x89, 0x44, 0xD8, 0xB4, 0xD9,\n\t0x8A, 0x44, 0xD8, 0xB5, 0xD8, 0xAD, 0x44, 0xD8,\n\t0xB5, 0xD8, 0xAE, 0x44, 0xD8, 0xB5, 0xD8, 0xB1,\n\t0x44, 0xD8, 0xB5, 0xD9, 0x85, 0x44, 0xD8, 0xB5,\n\t// Bytes 1ec0 - 1eff\n\t0xD9, 0x89, 0x44, 0xD8, 0xB5, 0xD9, 0x8A, 0x44,\n\t0xD8, 0xB6, 0xD8, 0xAC, 0x44, 0xD8, 0xB6, 0xD8,\n\t0xAD, 0x44, 0xD8, 0xB6, 0xD8, 0xAE, 0x44, 0xD8,\n\t0xB6, 0xD8, 0xB1, 0x44, 0xD8, 0xB6, 0xD9, 0x85,\n\t0x44, 0xD8, 0xB6, 0xD9, 0x89, 0x44, 0xD8, 0xB6,\n\t0xD9, 0x8A, 0x44, 0xD8, 0xB7, 0xD8, 0xAD, 0x44,\n\t0xD8, 0xB7, 0xD9, 0x85, 0x44, 0xD8, 0xB7, 0xD9,\n\t0x89, 0x44, 0xD8, 0xB7, 0xD9, 0x8A, 0x44, 0xD8,\n\t// Bytes 1f00 - 1f3f\n\t0xB8, 0xD9, 0x85, 0x44, 0xD8, 0xB9, 0xD8, 0xAC,\n\t0x44, 0xD8, 0xB9, 0xD9, 0x85, 0x44, 0xD8, 0xB9,\n\t0xD9, 0x89, 0x44, 0xD8, 0xB9, 0xD9, 0x8A, 0x44,\n\t0xD8, 0xBA, 0xD8, 0xAC, 0x44, 0xD8, 0xBA, 0xD9,\n\t0x85, 0x44, 0xD8, 0xBA, 0xD9, 0x89, 0x44, 0xD8,\n\t0xBA, 0xD9, 0x8A, 0x44, 0xD9, 0x81, 0xD8, 0xAC,\n\t0x44, 0xD9, 0x81, 0xD8, 0xAD, 0x44, 0xD9, 0x81,\n\t0xD8, 0xAE, 0x44, 0xD9, 0x81, 0xD9, 0x85, 0x44,\n\t// Bytes 1f40 - 1f7f\n\t0xD9, 0x81, 0xD9, 0x89, 0x44, 0xD9, 0x81, 0xD9,\n\t0x8A, 0x44, 0xD9, 0x82, 0xD8, 0xAD, 0x44, 0xD9,\n\t0x82, 0xD9, 0x85, 0x44, 0xD9, 0x82, 0xD9, 0x89,\n\t0x44, 0xD9, 0x82, 0xD9, 0x8A, 0x44, 0xD9, 0x83,\n\t0xD8, 0xA7, 0x44, 0xD9, 0x83, 0xD8, 0xAC, 0x44,\n\t0xD9, 0x83, 0xD8, 0xAD, 0x44, 0xD9, 0x83, 0xD8,\n\t0xAE, 0x44, 0xD9, 0x83, 0xD9, 0x84, 0x44, 0xD9,\n\t0x83, 0xD9, 0x85, 0x44, 0xD9, 0x83, 0xD9, 0x89,\n\t// Bytes 1f80 - 1fbf\n\t0x44, 0xD9, 0x83, 0xD9, 0x8A, 0x44, 0xD9, 0x84,\n\t0xD8, 0xA7, 0x44, 0xD9, 0x84, 0xD8, 0xAC, 0x44,\n\t0xD9, 0x84, 0xD8, 0xAD, 0x44, 0xD9, 0x84, 0xD8,\n\t0xAE, 0x44, 0xD9, 0x84, 0xD9, 0x85, 0x44, 0xD9,\n\t0x84, 0xD9, 0x87, 0x44, 0xD9, 0x84, 0xD9, 0x89,\n\t0x44, 0xD9, 0x84, 0xD9, 0x8A, 0x44, 0xD9, 0x85,\n\t0xD8, 0xA7, 0x44, 0xD9, 0x85, 0xD8, 0xAC, 0x44,\n\t0xD9, 0x85, 0xD8, 0xAD, 0x44, 0xD9, 0x85, 0xD8,\n\t// Bytes 1fc0 - 1fff\n\t0xAE, 0x44, 0xD9, 0x85, 0xD9, 0x85, 0x44, 0xD9,\n\t0x85, 0xD9, 0x89, 0x44, 0xD9, 0x85, 0xD9, 0x8A,\n\t0x44, 0xD9, 0x86, 0xD8, 0xAC, 0x44, 0xD9, 0x86,\n\t0xD8, 0xAD, 0x44, 0xD9, 0x86, 0xD8, 0xAE, 0x44,\n\t0xD9, 0x86, 0xD8, 0xB1, 0x44, 0xD9, 0x86, 0xD8,\n\t0xB2, 0x44, 0xD9, 0x86, 0xD9, 0x85, 0x44, 0xD9,\n\t0x86, 0xD9, 0x86, 0x44, 0xD9, 0x86, 0xD9, 0x87,\n\t0x44, 0xD9, 0x86, 0xD9, 0x89, 0x44, 0xD9, 0x86,\n\t// Bytes 2000 - 203f\n\t0xD9, 0x8A, 0x44, 0xD9, 0x87, 0xD8, 0xAC, 0x44,\n\t0xD9, 0x87, 0xD9, 0x85, 0x44, 0xD9, 0x87, 0xD9,\n\t0x89, 0x44, 0xD9, 0x87, 0xD9, 0x8A, 0x44, 0xD9,\n\t0x88, 0xD9, 0xB4, 0x44, 0xD9, 0x8A, 0xD8, 0xAC,\n\t0x44, 0xD9, 0x8A, 0xD8, 0xAD, 0x44, 0xD9, 0x8A,\n\t0xD8, 0xAE, 0x44, 0xD9, 0x8A, 0xD8, 0xB1, 0x44,\n\t0xD9, 0x8A, 0xD8, 0xB2, 0x44, 0xD9, 0x8A, 0xD9,\n\t0x85, 0x44, 0xD9, 0x8A, 0xD9, 0x86, 0x44, 0xD9,\n\t// Bytes 2040 - 207f\n\t0x8A, 0xD9, 0x87, 0x44, 0xD9, 0x8A, 0xD9, 0x89,\n\t0x44, 0xD9, 0x8A, 0xD9, 0x8A, 0x44, 0xD9, 0x8A,\n\t0xD9, 0xB4, 0x44, 0xDB, 0x87, 0xD9, 0xB4, 0x45,\n\t0x28, 0xE1, 0x84, 0x80, 0x29, 0x45, 0x28, 0xE1,\n\t0x84, 0x82, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x83,\n\t0x29, 0x45, 0x28, 0xE1, 0x84, 0x85, 0x29, 0x45,\n\t0x28, 0xE1, 0x84, 0x86, 0x29, 0x45, 0x28, 0xE1,\n\t0x84, 0x87, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x89,\n\t// Bytes 2080 - 20bf\n\t0x29, 0x45, 0x28, 0xE1, 0x84, 0x8B, 0x29, 0x45,\n\t0x28, 0xE1, 0x84, 0x8C, 0x29, 0x45, 0x28, 0xE1,\n\t0x84, 0x8E, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x8F,\n\t0x29, 0x45, 0x28, 0xE1, 0x84, 0x90, 0x29, 0x45,\n\t0x28, 0xE1, 0x84, 0x91, 0x29, 0x45, 0x28, 0xE1,\n\t0x84, 0x92, 0x29, 0x45, 0x28, 0xE4, 0xB8, 0x80,\n\t0x29, 0x45, 0x28, 0xE4, 0xB8, 0x83, 0x29, 0x45,\n\t0x28, 0xE4, 0xB8, 0x89, 0x29, 0x45, 0x28, 0xE4,\n\t// Bytes 20c0 - 20ff\n\t0xB9, 0x9D, 0x29, 0x45, 0x28, 0xE4, 0xBA, 0x8C,\n\t0x29, 0x45, 0x28, 0xE4, 0xBA, 0x94, 0x29, 0x45,\n\t0x28, 0xE4, 0xBB, 0xA3, 0x29, 0x45, 0x28, 0xE4,\n\t0xBC, 0x81, 0x29, 0x45, 0x28, 0xE4, 0xBC, 0x91,\n\t0x29, 0x45, 0x28, 0xE5, 0x85, 0xAB, 0x29, 0x45,\n\t0x28, 0xE5, 0x85, 0xAD, 0x29, 0x45, 0x28, 0xE5,\n\t0x8A, 0xB4, 0x29, 0x45, 0x28, 0xE5, 0x8D, 0x81,\n\t0x29, 0x45, 0x28, 0xE5, 0x8D, 0x94, 0x29, 0x45,\n\t// Bytes 2100 - 213f\n\t0x28, 0xE5, 0x90, 0x8D, 0x29, 0x45, 0x28, 0xE5,\n\t0x91, 0xBC, 0x29, 0x45, 0x28, 0xE5, 0x9B, 0x9B,\n\t0x29, 0x45, 0x28, 0xE5, 0x9C, 0x9F, 0x29, 0x45,\n\t0x28, 0xE5, 0xAD, 0xA6, 0x29, 0x45, 0x28, 0xE6,\n\t0x97, 0xA5, 0x29, 0x45, 0x28, 0xE6, 0x9C, 0x88,\n\t0x29, 0x45, 0x28, 0xE6, 0x9C, 0x89, 0x29, 0x45,\n\t0x28, 0xE6, 0x9C, 0xA8, 0x29, 0x45, 0x28, 0xE6,\n\t0xA0, 0xAA, 0x29, 0x45, 0x28, 0xE6, 0xB0, 0xB4,\n\t// Bytes 2140 - 217f\n\t0x29, 0x45, 0x28, 0xE7, 0x81, 0xAB, 0x29, 0x45,\n\t0x28, 0xE7, 0x89, 0xB9, 0x29, 0x45, 0x28, 0xE7,\n\t0x9B, 0xA3, 0x29, 0x45, 0x28, 0xE7, 0xA4, 0xBE,\n\t0x29, 0x45, 0x28, 0xE7, 0xA5, 0x9D, 0x29, 0x45,\n\t0x28, 0xE7, 0xA5, 0xAD, 0x29, 0x45, 0x28, 0xE8,\n\t0x87, 0xAA, 0x29, 0x45, 0x28, 0xE8, 0x87, 0xB3,\n\t0x29, 0x45, 0x28, 0xE8, 0xB2, 0xA1, 0x29, 0x45,\n\t0x28, 0xE8, 0xB3, 0x87, 0x29, 0x45, 0x28, 0xE9,\n\t// Bytes 2180 - 21bf\n\t0x87, 0x91, 0x29, 0x45, 0x30, 0xE2, 0x81, 0x84,\n\t0x33, 0x45, 0x31, 0x30, 0xE6, 0x97, 0xA5, 0x45,\n\t0x31, 0x30, 0xE6, 0x9C, 0x88, 0x45, 0x31, 0x30,\n\t0xE7, 0x82, 0xB9, 0x45, 0x31, 0x31, 0xE6, 0x97,\n\t0xA5, 0x45, 0x31, 0x31, 0xE6, 0x9C, 0x88, 0x45,\n\t0x31, 0x31, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x32,\n\t0xE6, 0x97, 0xA5, 0x45, 0x31, 0x32, 0xE6, 0x9C,\n\t0x88, 0x45, 0x31, 0x32, 0xE7, 0x82, 0xB9, 0x45,\n\t// Bytes 21c0 - 21ff\n\t0x31, 0x33, 0xE6, 0x97, 0xA5, 0x45, 0x31, 0x33,\n\t0xE7, 0x82, 0xB9, 0x45, 0x31, 0x34, 0xE6, 0x97,\n\t0xA5, 0x45, 0x31, 0x34, 0xE7, 0x82, 0xB9, 0x45,\n\t0x31, 0x35, 0xE6, 0x97, 0xA5, 0x45, 0x31, 0x35,\n\t0xE7, 0x82, 0xB9, 0x45, 0x31, 0x36, 0xE6, 0x97,\n\t0xA5, 0x45, 0x31, 0x36, 0xE7, 0x82, 0xB9, 0x45,\n\t0x31, 0x37, 0xE6, 0x97, 0xA5, 0x45, 0x31, 0x37,\n\t0xE7, 0x82, 0xB9, 0x45, 0x31, 0x38, 0xE6, 0x97,\n\t// Bytes 2200 - 223f\n\t0xA5, 0x45, 0x31, 0x38, 0xE7, 0x82, 0xB9, 0x45,\n\t0x31, 0x39, 0xE6, 0x97, 0xA5, 0x45, 0x31, 0x39,\n\t0xE7, 0x82, 0xB9, 0x45, 0x31, 0xE2, 0x81, 0x84,\n\t0x32, 0x45, 0x31, 0xE2, 0x81, 0x84, 0x33, 0x45,\n\t0x31, 0xE2, 0x81, 0x84, 0x34, 0x45, 0x31, 0xE2,\n\t0x81, 0x84, 0x35, 0x45, 0x31, 0xE2, 0x81, 0x84,\n\t0x36, 0x45, 0x31, 0xE2, 0x81, 0x84, 0x37, 0x45,\n\t0x31, 0xE2, 0x81, 0x84, 0x38, 0x45, 0x31, 0xE2,\n\t// Bytes 2240 - 227f\n\t0x81, 0x84, 0x39, 0x45, 0x32, 0x30, 0xE6, 0x97,\n\t0xA5, 0x45, 0x32, 0x30, 0xE7, 0x82, 0xB9, 0x45,\n\t0x32, 0x31, 0xE6, 0x97, 0xA5, 0x45, 0x32, 0x31,\n\t0xE7, 0x82, 0xB9, 0x45, 0x32, 0x32, 0xE6, 0x97,\n\t0xA5, 0x45, 0x32, 0x32, 0xE7, 0x82, 0xB9, 0x45,\n\t0x32, 0x33, 0xE6, 0x97, 0xA5, 0x45, 0x32, 0x33,\n\t0xE7, 0x82, 0xB9, 0x45, 0x32, 0x34, 0xE6, 0x97,\n\t0xA5, 0x45, 0x32, 0x34, 0xE7, 0x82, 0xB9, 0x45,\n\t// Bytes 2280 - 22bf\n\t0x32, 0x35, 0xE6, 0x97, 0xA5, 0x45, 0x32, 0x36,\n\t0xE6, 0x97, 0xA5, 0x45, 0x32, 0x37, 0xE6, 0x97,\n\t0xA5, 0x45, 0x32, 0x38, 0xE6, 0x97, 0xA5, 0x45,\n\t0x32, 0x39, 0xE6, 0x97, 0xA5, 0x45, 0x32, 0xE2,\n\t0x81, 0x84, 0x33, 0x45, 0x32, 0xE2, 0x81, 0x84,\n\t0x35, 0x45, 0x33, 0x30, 0xE6, 0x97, 0xA5, 0x45,\n\t0x33, 0x31, 0xE6, 0x97, 0xA5, 0x45, 0x33, 0xE2,\n\t0x81, 0x84, 0x34, 0x45, 0x33, 0xE2, 0x81, 0x84,\n\t// Bytes 22c0 - 22ff\n\t0x35, 0x45, 0x33, 0xE2, 0x81, 0x84, 0x38, 0x45,\n\t0x34, 0xE2, 0x81, 0x84, 0x35, 0x45, 0x35, 0xE2,\n\t0x81, 0x84, 0x36, 0x45, 0x35, 0xE2, 0x81, 0x84,\n\t0x38, 0x45, 0x37, 0xE2, 0x81, 0x84, 0x38, 0x45,\n\t0x41, 0xE2, 0x88, 0x95, 0x6D, 0x45, 0x56, 0xE2,\n\t0x88, 0x95, 0x6D, 0x45, 0x6D, 0xE2, 0x88, 0x95,\n\t0x73, 0x46, 0x31, 0xE2, 0x81, 0x84, 0x31, 0x30,\n\t0x46, 0x43, 0xE2, 0x88, 0x95, 0x6B, 0x67, 0x46,\n\t// Bytes 2300 - 233f\n\t0x6D, 0xE2, 0x88, 0x95, 0x73, 0x32, 0x46, 0xD8,\n\t0xA8, 0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD8, 0xA8,\n\t0xD8, 0xAE, 0xD9, 0x8A, 0x46, 0xD8, 0xAA, 0xD8,\n\t0xAC, 0xD9, 0x85, 0x46, 0xD8, 0xAA, 0xD8, 0xAC,\n\t0xD9, 0x89, 0x46, 0xD8, 0xAA, 0xD8, 0xAC, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xAA, 0xD8, 0xAD, 0xD8, 0xAC,\n\t0x46, 0xD8, 0xAA, 0xD8, 0xAD, 0xD9, 0x85, 0x46,\n\t0xD8, 0xAA, 0xD8, 0xAE, 0xD9, 0x85, 0x46, 0xD8,\n\t// Bytes 2340 - 237f\n\t0xAA, 0xD8, 0xAE, 0xD9, 0x89, 0x46, 0xD8, 0xAA,\n\t0xD8, 0xAE, 0xD9, 0x8A, 0x46, 0xD8, 0xAA, 0xD9,\n\t0x85, 0xD8, 0xAC, 0x46, 0xD8, 0xAA, 0xD9, 0x85,\n\t0xD8, 0xAD, 0x46, 0xD8, 0xAA, 0xD9, 0x85, 0xD8,\n\t0xAE, 0x46, 0xD8, 0xAA, 0xD9, 0x85, 0xD9, 0x89,\n\t0x46, 0xD8, 0xAA, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD8, 0xAC, 0xD8, 0xAD, 0xD9, 0x89, 0x46, 0xD8,\n\t0xAC, 0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD8, 0xAC,\n\t// Bytes 2380 - 23bf\n\t0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD8, 0xAC, 0xD9,\n\t0x85, 0xD9, 0x89, 0x46, 0xD8, 0xAC, 0xD9, 0x85,\n\t0xD9, 0x8A, 0x46, 0xD8, 0xAD, 0xD8, 0xAC, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xAD, 0xD9, 0x85, 0xD9, 0x89,\n\t0x46, 0xD8, 0xAD, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD8, 0xB3, 0xD8, 0xAC, 0xD8, 0xAD, 0x46, 0xD8,\n\t0xB3, 0xD8, 0xAC, 0xD9, 0x89, 0x46, 0xD8, 0xB3,\n\t0xD8, 0xAD, 0xD8, 0xAC, 0x46, 0xD8, 0xB3, 0xD8,\n\t// Bytes 23c0 - 23ff\n\t0xAE, 0xD9, 0x89, 0x46, 0xD8, 0xB3, 0xD8, 0xAE,\n\t0xD9, 0x8A, 0x46, 0xD8, 0xB3, 0xD9, 0x85, 0xD8,\n\t0xAC, 0x46, 0xD8, 0xB3, 0xD9, 0x85, 0xD8, 0xAD,\n\t0x46, 0xD8, 0xB3, 0xD9, 0x85, 0xD9, 0x85, 0x46,\n\t0xD8, 0xB4, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD8,\n\t0xB4, 0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD8, 0xB4,\n\t0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD8, 0xB4, 0xD9,\n\t0x85, 0xD8, 0xAE, 0x46, 0xD8, 0xB4, 0xD9, 0x85,\n\t// Bytes 2400 - 243f\n\t0xD9, 0x85, 0x46, 0xD8, 0xB5, 0xD8, 0xAD, 0xD8,\n\t0xAD, 0x46, 0xD8, 0xB5, 0xD8, 0xAD, 0xD9, 0x8A,\n\t0x46, 0xD8, 0xB5, 0xD9, 0x84, 0xD9, 0x89, 0x46,\n\t0xD8, 0xB5, 0xD9, 0x84, 0xDB, 0x92, 0x46, 0xD8,\n\t0xB5, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD8, 0xB6,\n\t0xD8, 0xAD, 0xD9, 0x89, 0x46, 0xD8, 0xB6, 0xD8,\n\t0xAD, 0xD9, 0x8A, 0x46, 0xD8, 0xB6, 0xD8, 0xAE,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB7, 0xD9, 0x85, 0xD8,\n\t// Bytes 2440 - 247f\n\t0xAD, 0x46, 0xD8, 0xB7, 0xD9, 0x85, 0xD9, 0x85,\n\t0x46, 0xD8, 0xB7, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD8, 0xB9, 0xD8, 0xAC, 0xD9, 0x85, 0x46, 0xD8,\n\t0xB9, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD8, 0xB9,\n\t0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8, 0xB9, 0xD9,\n\t0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xBA, 0xD9, 0x85,\n\t0xD9, 0x85, 0x46, 0xD8, 0xBA, 0xD9, 0x85, 0xD9,\n\t0x89, 0x46, 0xD8, 0xBA, 0xD9, 0x85, 0xD9, 0x8A,\n\t// Bytes 2480 - 24bf\n\t0x46, 0xD9, 0x81, 0xD8, 0xAE, 0xD9, 0x85, 0x46,\n\t0xD9, 0x81, 0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9,\n\t0x82, 0xD9, 0x84, 0xDB, 0x92, 0x46, 0xD9, 0x82,\n\t0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD9, 0x82, 0xD9,\n\t0x85, 0xD9, 0x85, 0x46, 0xD9, 0x82, 0xD9, 0x85,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x83, 0xD9, 0x85, 0xD9,\n\t0x85, 0x46, 0xD9, 0x83, 0xD9, 0x85, 0xD9, 0x8A,\n\t0x46, 0xD9, 0x84, 0xD8, 0xAC, 0xD8, 0xAC, 0x46,\n\t// Bytes 24c0 - 24ff\n\t0xD9, 0x84, 0xD8, 0xAC, 0xD9, 0x85, 0x46, 0xD9,\n\t0x84, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD9, 0x84,\n\t0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD9, 0x84, 0xD8,\n\t0xAD, 0xD9, 0x89, 0x46, 0xD9, 0x84, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x84, 0xD8, 0xAE, 0xD9,\n\t0x85, 0x46, 0xD9, 0x84, 0xD9, 0x85, 0xD8, 0xAD,\n\t0x46, 0xD9, 0x84, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD9, 0x85, 0xD8, 0xAC, 0xD8, 0xAD, 0x46, 0xD9,\n\t// Bytes 2500 - 253f\n\t0x85, 0xD8, 0xAC, 0xD8, 0xAE, 0x46, 0xD9, 0x85,\n\t0xD8, 0xAC, 0xD9, 0x85, 0x46, 0xD9, 0x85, 0xD8,\n\t0xAC, 0xD9, 0x8A, 0x46, 0xD9, 0x85, 0xD8, 0xAD,\n\t0xD8, 0xAC, 0x46, 0xD9, 0x85, 0xD8, 0xAD, 0xD9,\n\t0x85, 0x46, 0xD9, 0x85, 0xD8, 0xAD, 0xD9, 0x8A,\n\t0x46, 0xD9, 0x85, 0xD8, 0xAE, 0xD8, 0xAC, 0x46,\n\t0xD9, 0x85, 0xD8, 0xAE, 0xD9, 0x85, 0x46, 0xD9,\n\t0x85, 0xD8, 0xAE, 0xD9, 0x8A, 0x46, 0xD9, 0x85,\n\t// Bytes 2540 - 257f\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x86, 0xD8,\n\t0xAC, 0xD8, 0xAD, 0x46, 0xD9, 0x86, 0xD8, 0xAC,\n\t0xD9, 0x85, 0x46, 0xD9, 0x86, 0xD8, 0xAC, 0xD9,\n\t0x89, 0x46, 0xD9, 0x86, 0xD8, 0xAC, 0xD9, 0x8A,\n\t0x46, 0xD9, 0x86, 0xD8, 0xAD, 0xD9, 0x85, 0x46,\n\t0xD9, 0x86, 0xD8, 0xAD, 0xD9, 0x89, 0x46, 0xD9,\n\t0x86, 0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD9, 0x86,\n\t0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD9, 0x86, 0xD9,\n\t// Bytes 2580 - 25bf\n\t0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x87, 0xD9, 0x85,\n\t0xD8, 0xAC, 0x46, 0xD9, 0x87, 0xD9, 0x85, 0xD9,\n\t0x85, 0x46, 0xD9, 0x8A, 0xD8, 0xAC, 0xD9, 0x8A,\n\t0x46, 0xD9, 0x8A, 0xD8, 0xAD, 0xD9, 0x8A, 0x46,\n\t0xD9, 0x8A, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD9,\n\t0x8A, 0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xD8, 0xA7, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x94, 0xD8, 0xAC, 0x46, 0xD9, 0x8A, 0xD9, 0x94,\n\t// Bytes 25c0 - 25ff\n\t0xD8, 0xAD, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8,\n\t0xAE, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xB1,\n\t0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xB2, 0x46,\n\t0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x85, 0x46, 0xD9,\n\t0x8A, 0xD9, 0x94, 0xD9, 0x86, 0x46, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xD9, 0x87, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x94, 0xD9, 0x88, 0x46, 0xD9, 0x8A, 0xD9, 0x94,\n\t0xD9, 0x89, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9,\n\t// Bytes 2600 - 263f\n\t0x8A, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xDB, 0x86,\n\t0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xDB, 0x87, 0x46,\n\t0xD9, 0x8A, 0xD9, 0x94, 0xDB, 0x88, 0x46, 0xD9,\n\t0x8A, 0xD9, 0x94, 0xDB, 0x90, 0x46, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xDB, 0x95, 0x46, 0xE0, 0xB9, 0x8D,\n\t0xE0, 0xB8, 0xB2, 0x46, 0xE0, 0xBA, 0xAB, 0xE0,\n\t0xBA, 0x99, 0x46, 0xE0, 0xBA, 0xAB, 0xE0, 0xBA,\n\t0xA1, 0x46, 0xE0, 0xBB, 0x8D, 0xE0, 0xBA, 0xB2,\n\t// Bytes 2640 - 267f\n\t0x46, 0xE0, 0xBD, 0x80, 0xE0, 0xBE, 0xB5, 0x46,\n\t0xE0, 0xBD, 0x82, 0xE0, 0xBE, 0xB7, 0x46, 0xE0,\n\t0xBD, 0x8C, 0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBD,\n\t0x91, 0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBD, 0x96,\n\t0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBD, 0x9B, 0xE0,\n\t0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0x90, 0xE0, 0xBE,\n\t0xB5, 0x46, 0xE0, 0xBE, 0x92, 0xE0, 0xBE, 0xB7,\n\t0x46, 0xE0, 0xBE, 0x9C, 0xE0, 0xBE, 0xB7, 0x46,\n\t// Bytes 2680 - 26bf\n\t0xE0, 0xBE, 0xA1, 0xE0, 0xBE, 0xB7, 0x46, 0xE0,\n\t0xBE, 0xA6, 0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE,\n\t0xAB, 0xE0, 0xBE, 0xB7, 0x46, 0xE2, 0x80, 0xB2,\n\t0xE2, 0x80, 0xB2, 0x46, 0xE2, 0x80, 0xB5, 0xE2,\n\t0x80, 0xB5, 0x46, 0xE2, 0x88, 0xAB, 0xE2, 0x88,\n\t0xAB, 0x46, 0xE2, 0x88, 0xAE, 0xE2, 0x88, 0xAE,\n\t0x46, 0xE3, 0x81, 0xBB, 0xE3, 0x81, 0x8B, 0x46,\n\t0xE3, 0x82, 0x88, 0xE3, 0x82, 0x8A, 0x46, 0xE3,\n\t// Bytes 26c0 - 26ff\n\t0x82, 0xAD, 0xE3, 0x83, 0xAD, 0x46, 0xE3, 0x82,\n\t0xB3, 0xE3, 0x82, 0xB3, 0x46, 0xE3, 0x82, 0xB3,\n\t0xE3, 0x83, 0x88, 0x46, 0xE3, 0x83, 0x88, 0xE3,\n\t0x83, 0xB3, 0x46, 0xE3, 0x83, 0x8A, 0xE3, 0x83,\n\t0x8E, 0x46, 0xE3, 0x83, 0x9B, 0xE3, 0x83, 0xB3,\n\t0x46, 0xE3, 0x83, 0x9F, 0xE3, 0x83, 0xAA, 0x46,\n\t0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xA9, 0x46, 0xE3,\n\t0x83, 0xAC, 0xE3, 0x83, 0xA0, 0x46, 0xE5, 0xA4,\n\t// Bytes 2700 - 273f\n\t0xA7, 0xE6, 0xAD, 0xA3, 0x46, 0xE5, 0xB9, 0xB3,\n\t0xE6, 0x88, 0x90, 0x46, 0xE6, 0x98, 0x8E, 0xE6,\n\t0xB2, 0xBB, 0x46, 0xE6, 0x98, 0xAD, 0xE5, 0x92,\n\t0x8C, 0x47, 0x72, 0x61, 0x64, 0xE2, 0x88, 0x95,\n\t0x73, 0x47, 0xE3, 0x80, 0x94, 0x53, 0xE3, 0x80,\n\t0x95, 0x48, 0x28, 0xE1, 0x84, 0x80, 0xE1, 0x85,\n\t0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x82, 0xE1,\n\t0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x83,\n\t// Bytes 2740 - 277f\n\t0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84,\n\t0x85, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1,\n\t0x84, 0x86, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28,\n\t0xE1, 0x84, 0x87, 0xE1, 0x85, 0xA1, 0x29, 0x48,\n\t0x28, 0xE1, 0x84, 0x89, 0xE1, 0x85, 0xA1, 0x29,\n\t0x48, 0x28, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xA1,\n\t0x29, 0x48, 0x28, 0xE1, 0x84, 0x8C, 0xE1, 0x85,\n\t0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x8C, 0xE1,\n\t// Bytes 2780 - 27bf\n\t0x85, 0xAE, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x8E,\n\t0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84,\n\t0x8F, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1,\n\t0x84, 0x90, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28,\n\t0xE1, 0x84, 0x91, 0xE1, 0x85, 0xA1, 0x29, 0x48,\n\t0x28, 0xE1, 0x84, 0x92, 0xE1, 0x85, 0xA1, 0x29,\n\t0x48, 0x72, 0x61, 0x64, 0xE2, 0x88, 0x95, 0x73,\n\t0x32, 0x48, 0xD8, 0xA7, 0xD9, 0x83, 0xD8, 0xA8,\n\t// Bytes 27c0 - 27ff\n\t0xD8, 0xB1, 0x48, 0xD8, 0xA7, 0xD9, 0x84, 0xD9,\n\t0x84, 0xD9, 0x87, 0x48, 0xD8, 0xB1, 0xD8, 0xB3,\n\t0xD9, 0x88, 0xD9, 0x84, 0x48, 0xD8, 0xB1, 0xDB,\n\t0x8C, 0xD8, 0xA7, 0xD9, 0x84, 0x48, 0xD8, 0xB5,\n\t0xD9, 0x84, 0xD8, 0xB9, 0xD9, 0x85, 0x48, 0xD8,\n\t0xB9, 0xD9, 0x84, 0xD9, 0x8A, 0xD9, 0x87, 0x48,\n\t0xD9, 0x85, 0xD8, 0xAD, 0xD9, 0x85, 0xD8, 0xAF,\n\t0x48, 0xD9, 0x88, 0xD8, 0xB3, 0xD9, 0x84, 0xD9,\n\t// Bytes 2800 - 283f\n\t0x85, 0x49, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0xE2, 0x80, 0xB2, 0x49, 0xE2, 0x80, 0xB5, 0xE2,\n\t0x80, 0xB5, 0xE2, 0x80, 0xB5, 0x49, 0xE2, 0x88,\n\t0xAB, 0xE2, 0x88, 0xAB, 0xE2, 0x88, 0xAB, 0x49,\n\t0xE2, 0x88, 0xAE, 0xE2, 0x88, 0xAE, 0xE2, 0x88,\n\t0xAE, 0x49, 0xE3, 0x80, 0x94, 0xE4, 0xB8, 0x89,\n\t0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80, 0x94, 0xE4,\n\t0xBA, 0x8C, 0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80,\n\t// Bytes 2840 - 287f\n\t0x94, 0xE5, 0x8B, 0x9D, 0xE3, 0x80, 0x95, 0x49,\n\t0xE3, 0x80, 0x94, 0xE5, 0xAE, 0x89, 0xE3, 0x80,\n\t0x95, 0x49, 0xE3, 0x80, 0x94, 0xE6, 0x89, 0x93,\n\t0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80, 0x94, 0xE6,\n\t0x95, 0x97, 0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80,\n\t0x94, 0xE6, 0x9C, 0xAC, 0xE3, 0x80, 0x95, 0x49,\n\t0xE3, 0x80, 0x94, 0xE7, 0x82, 0xB9, 0xE3, 0x80,\n\t0x95, 0x49, 0xE3, 0x80, 0x94, 0xE7, 0x9B, 0x97,\n\t// Bytes 2880 - 28bf\n\t0xE3, 0x80, 0x95, 0x49, 0xE3, 0x82, 0xA2, 0xE3,\n\t0x83, 0xBC, 0xE3, 0x83, 0xAB, 0x49, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x81, 0x49,\n\t0xE3, 0x82, 0xA6, 0xE3, 0x82, 0xA9, 0xE3, 0x83,\n\t0xB3, 0x49, 0xE3, 0x82, 0xAA, 0xE3, 0x83, 0xB3,\n\t0xE3, 0x82, 0xB9, 0x49, 0xE3, 0x82, 0xAA, 0xE3,\n\t0x83, 0xBC, 0xE3, 0x83, 0xA0, 0x49, 0xE3, 0x82,\n\t0xAB, 0xE3, 0x82, 0xA4, 0xE3, 0x83, 0xAA, 0x49,\n\t// Bytes 28c0 - 28ff\n\t0xE3, 0x82, 0xB1, 0xE3, 0x83, 0xBC, 0xE3, 0x82,\n\t0xB9, 0x49, 0xE3, 0x82, 0xB3, 0xE3, 0x83, 0xAB,\n\t0xE3, 0x83, 0x8A, 0x49, 0xE3, 0x82, 0xBB, 0xE3,\n\t0x83, 0xB3, 0xE3, 0x83, 0x81, 0x49, 0xE3, 0x82,\n\t0xBB, 0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x88, 0x49,\n\t0xE3, 0x83, 0x86, 0xE3, 0x82, 0x99, 0xE3, 0x82,\n\t0xB7, 0x49, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99,\n\t0xE3, 0x83, 0xAB, 0x49, 0xE3, 0x83, 0x8E, 0xE3,\n\t// Bytes 2900 - 293f\n\t0x83, 0x83, 0xE3, 0x83, 0x88, 0x49, 0xE3, 0x83,\n\t0x8F, 0xE3, 0x82, 0xA4, 0xE3, 0x83, 0x84, 0x49,\n\t0xE3, 0x83, 0x92, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xAB, 0x49, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A,\n\t0xE3, 0x82, 0xB3, 0x49, 0xE3, 0x83, 0x95, 0xE3,\n\t0x83, 0xA9, 0xE3, 0x83, 0xB3, 0x49, 0xE3, 0x83,\n\t0x98, 0xE3, 0x82, 0x9A, 0xE3, 0x82, 0xBD, 0x49,\n\t0xE3, 0x83, 0x98, 0xE3, 0x83, 0xAB, 0xE3, 0x83,\n\t// Bytes 2940 - 297f\n\t0x84, 0x49, 0xE3, 0x83, 0x9B, 0xE3, 0x83, 0xBC,\n\t0xE3, 0x83, 0xAB, 0x49, 0xE3, 0x83, 0x9B, 0xE3,\n\t0x83, 0xBC, 0xE3, 0x83, 0xB3, 0x49, 0xE3, 0x83,\n\t0x9E, 0xE3, 0x82, 0xA4, 0xE3, 0x83, 0xAB, 0x49,\n\t0xE3, 0x83, 0x9E, 0xE3, 0x83, 0x83, 0xE3, 0x83,\n\t0x8F, 0x49, 0xE3, 0x83, 0x9E, 0xE3, 0x83, 0xAB,\n\t0xE3, 0x82, 0xAF, 0x49, 0xE3, 0x83, 0xA4, 0xE3,\n\t0x83, 0xBC, 0xE3, 0x83, 0xAB, 0x49, 0xE3, 0x83,\n\t// Bytes 2980 - 29bf\n\t0xA6, 0xE3, 0x82, 0xA2, 0xE3, 0x83, 0xB3, 0x49,\n\t0xE3, 0x83, 0xAF, 0xE3, 0x83, 0x83, 0xE3, 0x83,\n\t0x88, 0x4C, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2, 0x4C, 0xE2,\n\t0x88, 0xAB, 0xE2, 0x88, 0xAB, 0xE2, 0x88, 0xAB,\n\t0xE2, 0x88, 0xAB, 0x4C, 0xE3, 0x82, 0xA2, 0xE3,\n\t0x83, 0xAB, 0xE3, 0x83, 0x95, 0xE3, 0x82, 0xA1,\n\t0x4C, 0xE3, 0x82, 0xA8, 0xE3, 0x83, 0xBC, 0xE3,\n\t// Bytes 29c0 - 29ff\n\t0x82, 0xAB, 0xE3, 0x83, 0xBC, 0x4C, 0xE3, 0x82,\n\t0xAB, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAD, 0xE3,\n\t0x83, 0xB3, 0x4C, 0xE3, 0x82, 0xAB, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x9E, 0x4C,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x83, 0xA9, 0xE3, 0x83,\n\t0x83, 0xE3, 0x83, 0x88, 0x4C, 0xE3, 0x82, 0xAB,\n\t0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xAA, 0xE3, 0x83,\n\t0xBC, 0x4C, 0xE3, 0x82, 0xAD, 0xE3, 0x82, 0x99,\n\t// Bytes 2a00 - 2a3f\n\t0xE3, 0x83, 0x8B, 0xE3, 0x83, 0xBC, 0x4C, 0xE3,\n\t0x82, 0xAD, 0xE3, 0x83, 0xA5, 0xE3, 0x83, 0xAA,\n\t0xE3, 0x83, 0xBC, 0x4C, 0xE3, 0x82, 0xAF, 0xE3,\n\t0x82, 0x99, 0xE3, 0x83, 0xA9, 0xE3, 0x83, 0xA0,\n\t0x4C, 0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAD, 0xE3,\n\t0x83, 0xBC, 0xE3, 0x83, 0x8D, 0x4C, 0xE3, 0x82,\n\t0xB5, 0xE3, 0x82, 0xA4, 0xE3, 0x82, 0xAF, 0xE3,\n\t0x83, 0xAB, 0x4C, 0xE3, 0x82, 0xBF, 0xE3, 0x82,\n\t// Bytes 2a40 - 2a7f\n\t0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xB9, 0x4C,\n\t0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x9A, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0x84, 0x4C, 0xE3, 0x83, 0x92,\n\t0xE3, 0x82, 0x9A, 0xE3, 0x82, 0xAF, 0xE3, 0x83,\n\t0xAB, 0x4C, 0xE3, 0x83, 0x95, 0xE3, 0x82, 0xA3,\n\t0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88, 0x4C, 0xE3,\n\t0x83, 0x98, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xBC,\n\t0xE3, 0x82, 0xBF, 0x4C, 0xE3, 0x83, 0x98, 0xE3,\n\t// Bytes 2a80 - 2abf\n\t0x82, 0x9A, 0xE3, 0x83, 0x8B, 0xE3, 0x83, 0x92,\n\t0x4C, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x9A, 0xE3,\n\t0x83, 0xB3, 0xE3, 0x82, 0xB9, 0x4C, 0xE3, 0x83,\n\t0x9B, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB, 0xE3,\n\t0x83, 0x88, 0x4C, 0xE3, 0x83, 0x9E, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAD, 0x4C,\n\t0xE3, 0x83, 0x9F, 0xE3, 0x82, 0xAF, 0xE3, 0x83,\n\t0xAD, 0xE3, 0x83, 0xB3, 0x4C, 0xE3, 0x83, 0xA1,\n\t// Bytes 2ac0 - 2aff\n\t0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88, 0xE3, 0x83,\n\t0xAB, 0x4C, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0x83,\n\t0xE3, 0x83, 0x88, 0xE3, 0x83, 0xAB, 0x4C, 0xE3,\n\t0x83, 0xAB, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A,\n\t0xE3, 0x83, 0xBC, 0x4C, 0xE6, 0xA0, 0xAA, 0xE5,\n\t0xBC, 0x8F, 0xE4, 0xBC, 0x9A, 0xE7, 0xA4, 0xBE,\n\t0x4E, 0x28, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xA9,\n\t0xE1, 0x84, 0x92, 0xE1, 0x85, 0xAE, 0x29, 0x4F,\n\t// Bytes 2b00 - 2b3f\n\t0xD8, 0xAC, 0xD9, 0x84, 0x20, 0xD8, 0xAC, 0xD9,\n\t0x84, 0xD8, 0xA7, 0xD9, 0x84, 0xD9, 0x87, 0x4F,\n\t0xE3, 0x82, 0xA2, 0xE3, 0x83, 0x8F, 0xE3, 0x82,\n\t0x9A, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88, 0x4F,\n\t0xE3, 0x82, 0xA2, 0xE3, 0x83, 0xB3, 0xE3, 0x83,\n\t0x98, 0xE3, 0x82, 0x9A, 0xE3, 0x82, 0xA2, 0x4F,\n\t0xE3, 0x82, 0xAD, 0xE3, 0x83, 0xAD, 0xE3, 0x83,\n\t0xAF, 0xE3, 0x83, 0x83, 0xE3, 0x83, 0x88, 0x4F,\n\t// Bytes 2b40 - 2b7f\n\t0xE3, 0x82, 0xB5, 0xE3, 0x83, 0xB3, 0xE3, 0x83,\n\t0x81, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0xA0, 0x4F,\n\t0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0xAC, 0xE3, 0x83, 0xAB, 0x4F,\n\t0xE3, 0x83, 0x98, 0xE3, 0x82, 0xAF, 0xE3, 0x82,\n\t0xBF, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0xAB, 0x4F,\n\t0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x9A, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x88, 0x4F,\n\t// Bytes 2b80 - 2bbf\n\t0xE3, 0x83, 0x9E, 0xE3, 0x83, 0xB3, 0xE3, 0x82,\n\t0xB7, 0xE3, 0x83, 0xA7, 0xE3, 0x83, 0xB3, 0x4F,\n\t0xE3, 0x83, 0xA1, 0xE3, 0x82, 0xAB, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0x88, 0xE3, 0x83, 0xB3, 0x4F,\n\t0xE3, 0x83, 0xAB, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0x95, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB, 0x51,\n\t0x28, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xA9, 0xE1,\n\t0x84, 0x8C, 0xE1, 0x85, 0xA5, 0xE1, 0x86, 0xAB,\n\t// Bytes 2bc0 - 2bff\n\t0x29, 0x52, 0xE3, 0x82, 0xAD, 0xE3, 0x82, 0x99,\n\t0xE3, 0x83, 0xAB, 0xE3, 0x82, 0xBF, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xBC, 0x52, 0xE3, 0x82, 0xAD,\n\t0xE3, 0x83, 0xAD, 0xE3, 0x82, 0xAF, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xA9, 0xE3, 0x83, 0xA0, 0x52,\n\t0xE3, 0x82, 0xAD, 0xE3, 0x83, 0xAD, 0xE3, 0x83,\n\t0xA1, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88, 0xE3,\n\t0x83, 0xAB, 0x52, 0xE3, 0x82, 0xAF, 0xE3, 0x82,\n\t// Bytes 2c00 - 2c3f\n\t0x99, 0xE3, 0x83, 0xA9, 0xE3, 0x83, 0xA0, 0xE3,\n\t0x83, 0x88, 0xE3, 0x83, 0xB3, 0x52, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x83, 0xAB, 0xE3, 0x82, 0xBB, 0xE3,\n\t0x82, 0x99, 0xE3, 0x82, 0xA4, 0xE3, 0x83, 0xAD,\n\t0x52, 0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x9A, 0xE3,\n\t0x83, 0xBC, 0xE3, 0x82, 0xBB, 0xE3, 0x83, 0xB3,\n\t0xE3, 0x83, 0x88, 0x52, 0xE3, 0x83, 0x92, 0xE3,\n\t0x82, 0x9A, 0xE3, 0x82, 0xA2, 0xE3, 0x82, 0xB9,\n\t// Bytes 2c40 - 2c7f\n\t0xE3, 0x83, 0x88, 0xE3, 0x83, 0xAB, 0x52, 0xE3,\n\t0x83, 0x95, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0x83,\n\t0xE3, 0x82, 0xB7, 0xE3, 0x82, 0xA7, 0xE3, 0x83,\n\t0xAB, 0x52, 0xE3, 0x83, 0x9F, 0xE3, 0x83, 0xAA,\n\t0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0xAB, 0x52, 0xE3, 0x83, 0xAC,\n\t0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x88, 0xE3, 0x82,\n\t0xB1, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xB3, 0x61,\n\t// Bytes 2c80 - 2cbf\n\t0xD8, 0xB5, 0xD9, 0x84, 0xD9, 0x89, 0x20, 0xD8,\n\t0xA7, 0xD9, 0x84, 0xD9, 0x84, 0xD9, 0x87, 0x20,\n\t0xD8, 0xB9, 0xD9, 0x84, 0xD9, 0x8A, 0xD9, 0x87,\n\t0x20, 0xD9, 0x88, 0xD8, 0xB3, 0xD9, 0x84, 0xD9,\n\t0x85, 0x06, 0xE0, 0xA7, 0x87, 0xE0, 0xA6, 0xBE,\n\t0x01, 0x06, 0xE0, 0xA7, 0x87, 0xE0, 0xA7, 0x97,\n\t0x01, 0x06, 0xE0, 0xAD, 0x87, 0xE0, 0xAC, 0xBE,\n\t0x01, 0x06, 0xE0, 0xAD, 0x87, 0xE0, 0xAD, 0x96,\n\t// Bytes 2cc0 - 2cff\n\t0x01, 0x06, 0xE0, 0xAD, 0x87, 0xE0, 0xAD, 0x97,\n\t0x01, 0x06, 0xE0, 0xAE, 0x92, 0xE0, 0xAF, 0x97,\n\t0x01, 0x06, 0xE0, 0xAF, 0x86, 0xE0, 0xAE, 0xBE,\n\t0x01, 0x06, 0xE0, 0xAF, 0x86, 0xE0, 0xAF, 0x97,\n\t0x01, 0x06, 0xE0, 0xAF, 0x87, 0xE0, 0xAE, 0xBE,\n\t0x01, 0x06, 0xE0, 0xB2, 0xBF, 0xE0, 0xB3, 0x95,\n\t0x01, 0x06, 0xE0, 0xB3, 0x86, 0xE0, 0xB3, 0x95,\n\t0x01, 0x06, 0xE0, 0xB3, 0x86, 0xE0, 0xB3, 0x96,\n\t// Bytes 2d00 - 2d3f\n\t0x01, 0x06, 0xE0, 0xB5, 0x86, 0xE0, 0xB4, 0xBE,\n\t0x01, 0x06, 0xE0, 0xB5, 0x86, 0xE0, 0xB5, 0x97,\n\t0x01, 0x06, 0xE0, 0xB5, 0x87, 0xE0, 0xB4, 0xBE,\n\t0x01, 0x06, 0xE0, 0xB7, 0x99, 0xE0, 0xB7, 0x9F,\n\t0x01, 0x06, 0xE1, 0x80, 0xA5, 0xE1, 0x80, 0xAE,\n\t0x01, 0x06, 0xE1, 0xAC, 0x85, 0xE1, 0xAC, 0xB5,\n\t0x01, 0x06, 0xE1, 0xAC, 0x87, 0xE1, 0xAC, 0xB5,\n\t0x01, 0x06, 0xE1, 0xAC, 0x89, 0xE1, 0xAC, 0xB5,\n\t// Bytes 2d40 - 2d7f\n\t0x01, 0x06, 0xE1, 0xAC, 0x8B, 0xE1, 0xAC, 0xB5,\n\t0x01, 0x06, 0xE1, 0xAC, 0x8D, 0xE1, 0xAC, 0xB5,\n\t0x01, 0x06, 0xE1, 0xAC, 0x91, 0xE1, 0xAC, 0xB5,\n\t0x01, 0x06, 0xE1, 0xAC, 0xBA, 0xE1, 0xAC, 0xB5,\n\t0x01, 0x06, 0xE1, 0xAC, 0xBC, 0xE1, 0xAC, 0xB5,\n\t0x01, 0x06, 0xE1, 0xAC, 0xBE, 0xE1, 0xAC, 0xB5,\n\t0x01, 0x06, 0xE1, 0xAC, 0xBF, 0xE1, 0xAC, 0xB5,\n\t0x01, 0x06, 0xE1, 0xAD, 0x82, 0xE1, 0xAC, 0xB5,\n\t// Bytes 2d80 - 2dbf\n\t0x01, 0x08, 0xF0, 0x91, 0x84, 0xB1, 0xF0, 0x91,\n\t0x84, 0xA7, 0x01, 0x08, 0xF0, 0x91, 0x84, 0xB2,\n\t0xF0, 0x91, 0x84, 0xA7, 0x01, 0x08, 0xF0, 0x91,\n\t0x8D, 0x87, 0xF0, 0x91, 0x8C, 0xBE, 0x01, 0x08,\n\t0xF0, 0x91, 0x8D, 0x87, 0xF0, 0x91, 0x8D, 0x97,\n\t0x01, 0x08, 0xF0, 0x91, 0x92, 0xB9, 0xF0, 0x91,\n\t0x92, 0xB0, 0x01, 0x08, 0xF0, 0x91, 0x92, 0xB9,\n\t0xF0, 0x91, 0x92, 0xBA, 0x01, 0x08, 0xF0, 0x91,\n\t// Bytes 2dc0 - 2dff\n\t0x92, 0xB9, 0xF0, 0x91, 0x92, 0xBD, 0x01, 0x08,\n\t0xF0, 0x91, 0x96, 0xB8, 0xF0, 0x91, 0x96, 0xAF,\n\t0x01, 0x08, 0xF0, 0x91, 0x96, 0xB9, 0xF0, 0x91,\n\t0x96, 0xAF, 0x01, 0x09, 0xE0, 0xB3, 0x86, 0xE0,\n\t0xB3, 0x82, 0xE0, 0xB3, 0x95, 0x02, 0x09, 0xE0,\n\t0xB7, 0x99, 0xE0, 0xB7, 0x8F, 0xE0, 0xB7, 0x8A,\n\t0x12, 0x44, 0x44, 0x5A, 0xCC, 0x8C, 0xC9, 0x44,\n\t0x44, 0x7A, 0xCC, 0x8C, 0xC9, 0x44, 0x64, 0x7A,\n\t// Bytes 2e00 - 2e3f\n\t0xCC, 0x8C, 0xC9, 0x46, 0xD9, 0x84, 0xD8, 0xA7,\n\t0xD9, 0x93, 0xC9, 0x46, 0xD9, 0x84, 0xD8, 0xA7,\n\t0xD9, 0x94, 0xC9, 0x46, 0xD9, 0x84, 0xD8, 0xA7,\n\t0xD9, 0x95, 0xB5, 0x46, 0xE1, 0x84, 0x80, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x82, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x83, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x85, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x86, 0xE1,\n\t// Bytes 2e40 - 2e7f\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x87, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x89, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x8B, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x8B, 0xE1,\n\t0x85, 0xAE, 0x01, 0x46, 0xE1, 0x84, 0x8C, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x8E, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x8F, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x90, 0xE1,\n\t// Bytes 2e80 - 2ebf\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x91, 0xE1,\n\t0x85, 0xA1, 0x01, 0x46, 0xE1, 0x84, 0x92, 0xE1,\n\t0x85, 0xA1, 0x01, 0x49, 0xE3, 0x83, 0xA1, 0xE3,\n\t0x82, 0xAB, 0xE3, 0x82, 0x99, 0x0D, 0x4C, 0xE1,\n\t0x84, 0x8C, 0xE1, 0x85, 0xAE, 0xE1, 0x84, 0x8B,\n\t0xE1, 0x85, 0xB4, 0x01, 0x4C, 0xE3, 0x82, 0xAD,\n\t0xE3, 0x82, 0x99, 0xE3, 0x82, 0xAB, 0xE3, 0x82,\n\t0x99, 0x0D, 0x4C, 0xE3, 0x82, 0xB3, 0xE3, 0x83,\n\t// Bytes 2ec0 - 2eff\n\t0xBC, 0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x4C, 0xE3, 0x83, 0xA4, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D, 0x4F, 0xE1,\n\t0x84, 0x8E, 0xE1, 0x85, 0xA1, 0xE1, 0x86, 0xB7,\n\t0xE1, 0x84, 0x80, 0xE1, 0x85, 0xA9, 0x01, 0x4F,\n\t0xE3, 0x82, 0xA4, 0xE3, 0x83, 0x8B, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x4F, 0xE3, 0x82, 0xB7, 0xE3, 0x83, 0xAA, 0xE3,\n\t// Bytes 2f00 - 2f3f\n\t0x83, 0xB3, 0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99,\n\t0x0D, 0x4F, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x9A,\n\t0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xB7, 0xE3, 0x82,\n\t0x99, 0x0D, 0x4F, 0xE3, 0x83, 0x9B, 0xE3, 0x82,\n\t0x9A, 0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x88, 0xE3,\n\t0x82, 0x99, 0x0D, 0x52, 0xE3, 0x82, 0xA8, 0xE3,\n\t0x82, 0xB9, 0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xBC,\n\t0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D, 0x52,\n\t// Bytes 2f40 - 2f7f\n\t0xE3, 0x83, 0x95, 0xE3, 0x82, 0xA1, 0xE3, 0x83,\n\t0xA9, 0xE3, 0x83, 0x83, 0xE3, 0x83, 0x88, 0xE3,\n\t0x82, 0x99, 0x0D, 0x86, 0xE0, 0xB3, 0x86, 0xE0,\n\t0xB3, 0x82, 0x01, 0x86, 0xE0, 0xB7, 0x99, 0xE0,\n\t0xB7, 0x8F, 0x01, 0x03, 0x3C, 0xCC, 0xB8, 0x05,\n\t0x03, 0x3D, 0xCC, 0xB8, 0x05, 0x03, 0x3E, 0xCC,\n\t0xB8, 0x05, 0x03, 0x41, 0xCC, 0x80, 0xC9, 0x03,\n\t0x41, 0xCC, 0x81, 0xC9, 0x03, 0x41, 0xCC, 0x83,\n\t// Bytes 2f80 - 2fbf\n\t0xC9, 0x03, 0x41, 0xCC, 0x84, 0xC9, 0x03, 0x41,\n\t0xCC, 0x89, 0xC9, 0x03, 0x41, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x41, 0xCC, 0x8F, 0xC9, 0x03, 0x41, 0xCC,\n\t0x91, 0xC9, 0x03, 0x41, 0xCC, 0xA5, 0xB5, 0x03,\n\t0x41, 0xCC, 0xA8, 0xA5, 0x03, 0x42, 0xCC, 0x87,\n\t0xC9, 0x03, 0x42, 0xCC, 0xA3, 0xB5, 0x03, 0x42,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x43, 0xCC, 0x81, 0xC9,\n\t0x03, 0x43, 0xCC, 0x82, 0xC9, 0x03, 0x43, 0xCC,\n\t// Bytes 2fc0 - 2fff\n\t0x87, 0xC9, 0x03, 0x43, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x44, 0xCC, 0x87, 0xC9, 0x03, 0x44, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x44, 0xCC, 0xA3, 0xB5, 0x03, 0x44,\n\t0xCC, 0xA7, 0xA5, 0x03, 0x44, 0xCC, 0xAD, 0xB5,\n\t0x03, 0x44, 0xCC, 0xB1, 0xB5, 0x03, 0x45, 0xCC,\n\t0x80, 0xC9, 0x03, 0x45, 0xCC, 0x81, 0xC9, 0x03,\n\t0x45, 0xCC, 0x83, 0xC9, 0x03, 0x45, 0xCC, 0x86,\n\t0xC9, 0x03, 0x45, 0xCC, 0x87, 0xC9, 0x03, 0x45,\n\t// Bytes 3000 - 303f\n\t0xCC, 0x88, 0xC9, 0x03, 0x45, 0xCC, 0x89, 0xC9,\n\t0x03, 0x45, 0xCC, 0x8C, 0xC9, 0x03, 0x45, 0xCC,\n\t0x8F, 0xC9, 0x03, 0x45, 0xCC, 0x91, 0xC9, 0x03,\n\t0x45, 0xCC, 0xA8, 0xA5, 0x03, 0x45, 0xCC, 0xAD,\n\t0xB5, 0x03, 0x45, 0xCC, 0xB0, 0xB5, 0x03, 0x46,\n\t0xCC, 0x87, 0xC9, 0x03, 0x47, 0xCC, 0x81, 0xC9,\n\t0x03, 0x47, 0xCC, 0x82, 0xC9, 0x03, 0x47, 0xCC,\n\t0x84, 0xC9, 0x03, 0x47, 0xCC, 0x86, 0xC9, 0x03,\n\t// Bytes 3040 - 307f\n\t0x47, 0xCC, 0x87, 0xC9, 0x03, 0x47, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x47, 0xCC, 0xA7, 0xA5, 0x03, 0x48,\n\t0xCC, 0x82, 0xC9, 0x03, 0x48, 0xCC, 0x87, 0xC9,\n\t0x03, 0x48, 0xCC, 0x88, 0xC9, 0x03, 0x48, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x48, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x48, 0xCC, 0xA7, 0xA5, 0x03, 0x48, 0xCC, 0xAE,\n\t0xB5, 0x03, 0x49, 0xCC, 0x80, 0xC9, 0x03, 0x49,\n\t0xCC, 0x81, 0xC9, 0x03, 0x49, 0xCC, 0x82, 0xC9,\n\t// Bytes 3080 - 30bf\n\t0x03, 0x49, 0xCC, 0x83, 0xC9, 0x03, 0x49, 0xCC,\n\t0x84, 0xC9, 0x03, 0x49, 0xCC, 0x86, 0xC9, 0x03,\n\t0x49, 0xCC, 0x87, 0xC9, 0x03, 0x49, 0xCC, 0x89,\n\t0xC9, 0x03, 0x49, 0xCC, 0x8C, 0xC9, 0x03, 0x49,\n\t0xCC, 0x8F, 0xC9, 0x03, 0x49, 0xCC, 0x91, 0xC9,\n\t0x03, 0x49, 0xCC, 0xA3, 0xB5, 0x03, 0x49, 0xCC,\n\t0xA8, 0xA5, 0x03, 0x49, 0xCC, 0xB0, 0xB5, 0x03,\n\t0x4A, 0xCC, 0x82, 0xC9, 0x03, 0x4B, 0xCC, 0x81,\n\t// Bytes 30c0 - 30ff\n\t0xC9, 0x03, 0x4B, 0xCC, 0x8C, 0xC9, 0x03, 0x4B,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x4B, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x4B, 0xCC, 0xB1, 0xB5, 0x03, 0x4C, 0xCC,\n\t0x81, 0xC9, 0x03, 0x4C, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x4C, 0xCC, 0xA7, 0xA5, 0x03, 0x4C, 0xCC, 0xAD,\n\t0xB5, 0x03, 0x4C, 0xCC, 0xB1, 0xB5, 0x03, 0x4D,\n\t0xCC, 0x81, 0xC9, 0x03, 0x4D, 0xCC, 0x87, 0xC9,\n\t0x03, 0x4D, 0xCC, 0xA3, 0xB5, 0x03, 0x4E, 0xCC,\n\t// Bytes 3100 - 313f\n\t0x80, 0xC9, 0x03, 0x4E, 0xCC, 0x81, 0xC9, 0x03,\n\t0x4E, 0xCC, 0x83, 0xC9, 0x03, 0x4E, 0xCC, 0x87,\n\t0xC9, 0x03, 0x4E, 0xCC, 0x8C, 0xC9, 0x03, 0x4E,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x4E, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x4E, 0xCC, 0xAD, 0xB5, 0x03, 0x4E, 0xCC,\n\t0xB1, 0xB5, 0x03, 0x4F, 0xCC, 0x80, 0xC9, 0x03,\n\t0x4F, 0xCC, 0x81, 0xC9, 0x03, 0x4F, 0xCC, 0x86,\n\t0xC9, 0x03, 0x4F, 0xCC, 0x89, 0xC9, 0x03, 0x4F,\n\t// Bytes 3140 - 317f\n\t0xCC, 0x8B, 0xC9, 0x03, 0x4F, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x4F, 0xCC, 0x8F, 0xC9, 0x03, 0x4F, 0xCC,\n\t0x91, 0xC9, 0x03, 0x50, 0xCC, 0x81, 0xC9, 0x03,\n\t0x50, 0xCC, 0x87, 0xC9, 0x03, 0x52, 0xCC, 0x81,\n\t0xC9, 0x03, 0x52, 0xCC, 0x87, 0xC9, 0x03, 0x52,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x52, 0xCC, 0x8F, 0xC9,\n\t0x03, 0x52, 0xCC, 0x91, 0xC9, 0x03, 0x52, 0xCC,\n\t0xA7, 0xA5, 0x03, 0x52, 0xCC, 0xB1, 0xB5, 0x03,\n\t// Bytes 3180 - 31bf\n\t0x53, 0xCC, 0x82, 0xC9, 0x03, 0x53, 0xCC, 0x87,\n\t0xC9, 0x03, 0x53, 0xCC, 0xA6, 0xB5, 0x03, 0x53,\n\t0xCC, 0xA7, 0xA5, 0x03, 0x54, 0xCC, 0x87, 0xC9,\n\t0x03, 0x54, 0xCC, 0x8C, 0xC9, 0x03, 0x54, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x54, 0xCC, 0xA6, 0xB5, 0x03,\n\t0x54, 0xCC, 0xA7, 0xA5, 0x03, 0x54, 0xCC, 0xAD,\n\t0xB5, 0x03, 0x54, 0xCC, 0xB1, 0xB5, 0x03, 0x55,\n\t0xCC, 0x80, 0xC9, 0x03, 0x55, 0xCC, 0x81, 0xC9,\n\t// Bytes 31c0 - 31ff\n\t0x03, 0x55, 0xCC, 0x82, 0xC9, 0x03, 0x55, 0xCC,\n\t0x86, 0xC9, 0x03, 0x55, 0xCC, 0x89, 0xC9, 0x03,\n\t0x55, 0xCC, 0x8A, 0xC9, 0x03, 0x55, 0xCC, 0x8B,\n\t0xC9, 0x03, 0x55, 0xCC, 0x8C, 0xC9, 0x03, 0x55,\n\t0xCC, 0x8F, 0xC9, 0x03, 0x55, 0xCC, 0x91, 0xC9,\n\t0x03, 0x55, 0xCC, 0xA3, 0xB5, 0x03, 0x55, 0xCC,\n\t0xA4, 0xB5, 0x03, 0x55, 0xCC, 0xA8, 0xA5, 0x03,\n\t0x55, 0xCC, 0xAD, 0xB5, 0x03, 0x55, 0xCC, 0xB0,\n\t// Bytes 3200 - 323f\n\t0xB5, 0x03, 0x56, 0xCC, 0x83, 0xC9, 0x03, 0x56,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x57, 0xCC, 0x80, 0xC9,\n\t0x03, 0x57, 0xCC, 0x81, 0xC9, 0x03, 0x57, 0xCC,\n\t0x82, 0xC9, 0x03, 0x57, 0xCC, 0x87, 0xC9, 0x03,\n\t0x57, 0xCC, 0x88, 0xC9, 0x03, 0x57, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x58, 0xCC, 0x87, 0xC9, 0x03, 0x58,\n\t0xCC, 0x88, 0xC9, 0x03, 0x59, 0xCC, 0x80, 0xC9,\n\t0x03, 0x59, 0xCC, 0x81, 0xC9, 0x03, 0x59, 0xCC,\n\t// Bytes 3240 - 327f\n\t0x82, 0xC9, 0x03, 0x59, 0xCC, 0x83, 0xC9, 0x03,\n\t0x59, 0xCC, 0x84, 0xC9, 0x03, 0x59, 0xCC, 0x87,\n\t0xC9, 0x03, 0x59, 0xCC, 0x88, 0xC9, 0x03, 0x59,\n\t0xCC, 0x89, 0xC9, 0x03, 0x59, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x5A, 0xCC, 0x81, 0xC9, 0x03, 0x5A, 0xCC,\n\t0x82, 0xC9, 0x03, 0x5A, 0xCC, 0x87, 0xC9, 0x03,\n\t0x5A, 0xCC, 0x8C, 0xC9, 0x03, 0x5A, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x5A, 0xCC, 0xB1, 0xB5, 0x03, 0x61,\n\t// Bytes 3280 - 32bf\n\t0xCC, 0x80, 0xC9, 0x03, 0x61, 0xCC, 0x81, 0xC9,\n\t0x03, 0x61, 0xCC, 0x83, 0xC9, 0x03, 0x61, 0xCC,\n\t0x84, 0xC9, 0x03, 0x61, 0xCC, 0x89, 0xC9, 0x03,\n\t0x61, 0xCC, 0x8C, 0xC9, 0x03, 0x61, 0xCC, 0x8F,\n\t0xC9, 0x03, 0x61, 0xCC, 0x91, 0xC9, 0x03, 0x61,\n\t0xCC, 0xA5, 0xB5, 0x03, 0x61, 0xCC, 0xA8, 0xA5,\n\t0x03, 0x62, 0xCC, 0x87, 0xC9, 0x03, 0x62, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x62, 0xCC, 0xB1, 0xB5, 0x03,\n\t// Bytes 32c0 - 32ff\n\t0x63, 0xCC, 0x81, 0xC9, 0x03, 0x63, 0xCC, 0x82,\n\t0xC9, 0x03, 0x63, 0xCC, 0x87, 0xC9, 0x03, 0x63,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x64, 0xCC, 0x87, 0xC9,\n\t0x03, 0x64, 0xCC, 0x8C, 0xC9, 0x03, 0x64, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x64, 0xCC, 0xA7, 0xA5, 0x03,\n\t0x64, 0xCC, 0xAD, 0xB5, 0x03, 0x64, 0xCC, 0xB1,\n\t0xB5, 0x03, 0x65, 0xCC, 0x80, 0xC9, 0x03, 0x65,\n\t0xCC, 0x81, 0xC9, 0x03, 0x65, 0xCC, 0x83, 0xC9,\n\t// Bytes 3300 - 333f\n\t0x03, 0x65, 0xCC, 0x86, 0xC9, 0x03, 0x65, 0xCC,\n\t0x87, 0xC9, 0x03, 0x65, 0xCC, 0x88, 0xC9, 0x03,\n\t0x65, 0xCC, 0x89, 0xC9, 0x03, 0x65, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x65, 0xCC, 0x8F, 0xC9, 0x03, 0x65,\n\t0xCC, 0x91, 0xC9, 0x03, 0x65, 0xCC, 0xA8, 0xA5,\n\t0x03, 0x65, 0xCC, 0xAD, 0xB5, 0x03, 0x65, 0xCC,\n\t0xB0, 0xB5, 0x03, 0x66, 0xCC, 0x87, 0xC9, 0x03,\n\t0x67, 0xCC, 0x81, 0xC9, 0x03, 0x67, 0xCC, 0x82,\n\t// Bytes 3340 - 337f\n\t0xC9, 0x03, 0x67, 0xCC, 0x84, 0xC9, 0x03, 0x67,\n\t0xCC, 0x86, 0xC9, 0x03, 0x67, 0xCC, 0x87, 0xC9,\n\t0x03, 0x67, 0xCC, 0x8C, 0xC9, 0x03, 0x67, 0xCC,\n\t0xA7, 0xA5, 0x03, 0x68, 0xCC, 0x82, 0xC9, 0x03,\n\t0x68, 0xCC, 0x87, 0xC9, 0x03, 0x68, 0xCC, 0x88,\n\t0xC9, 0x03, 0x68, 0xCC, 0x8C, 0xC9, 0x03, 0x68,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x68, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x68, 0xCC, 0xAE, 0xB5, 0x03, 0x68, 0xCC,\n\t// Bytes 3380 - 33bf\n\t0xB1, 0xB5, 0x03, 0x69, 0xCC, 0x80, 0xC9, 0x03,\n\t0x69, 0xCC, 0x81, 0xC9, 0x03, 0x69, 0xCC, 0x82,\n\t0xC9, 0x03, 0x69, 0xCC, 0x83, 0xC9, 0x03, 0x69,\n\t0xCC, 0x84, 0xC9, 0x03, 0x69, 0xCC, 0x86, 0xC9,\n\t0x03, 0x69, 0xCC, 0x89, 0xC9, 0x03, 0x69, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x69, 0xCC, 0x8F, 0xC9, 0x03,\n\t0x69, 0xCC, 0x91, 0xC9, 0x03, 0x69, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x69, 0xCC, 0xA8, 0xA5, 0x03, 0x69,\n\t// Bytes 33c0 - 33ff\n\t0xCC, 0xB0, 0xB5, 0x03, 0x6A, 0xCC, 0x82, 0xC9,\n\t0x03, 0x6A, 0xCC, 0x8C, 0xC9, 0x03, 0x6B, 0xCC,\n\t0x81, 0xC9, 0x03, 0x6B, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x6B, 0xCC, 0xA3, 0xB5, 0x03, 0x6B, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x6B, 0xCC, 0xB1, 0xB5, 0x03, 0x6C,\n\t0xCC, 0x81, 0xC9, 0x03, 0x6C, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x6C, 0xCC, 0xA7, 0xA5, 0x03, 0x6C, 0xCC,\n\t0xAD, 0xB5, 0x03, 0x6C, 0xCC, 0xB1, 0xB5, 0x03,\n\t// Bytes 3400 - 343f\n\t0x6D, 0xCC, 0x81, 0xC9, 0x03, 0x6D, 0xCC, 0x87,\n\t0xC9, 0x03, 0x6D, 0xCC, 0xA3, 0xB5, 0x03, 0x6E,\n\t0xCC, 0x80, 0xC9, 0x03, 0x6E, 0xCC, 0x81, 0xC9,\n\t0x03, 0x6E, 0xCC, 0x83, 0xC9, 0x03, 0x6E, 0xCC,\n\t0x87, 0xC9, 0x03, 0x6E, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x6E, 0xCC, 0xA3, 0xB5, 0x03, 0x6E, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x6E, 0xCC, 0xAD, 0xB5, 0x03, 0x6E,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x6F, 0xCC, 0x80, 0xC9,\n\t// Bytes 3440 - 347f\n\t0x03, 0x6F, 0xCC, 0x81, 0xC9, 0x03, 0x6F, 0xCC,\n\t0x86, 0xC9, 0x03, 0x6F, 0xCC, 0x89, 0xC9, 0x03,\n\t0x6F, 0xCC, 0x8B, 0xC9, 0x03, 0x6F, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x6F, 0xCC, 0x8F, 0xC9, 0x03, 0x6F,\n\t0xCC, 0x91, 0xC9, 0x03, 0x70, 0xCC, 0x81, 0xC9,\n\t0x03, 0x70, 0xCC, 0x87, 0xC9, 0x03, 0x72, 0xCC,\n\t0x81, 0xC9, 0x03, 0x72, 0xCC, 0x87, 0xC9, 0x03,\n\t0x72, 0xCC, 0x8C, 0xC9, 0x03, 0x72, 0xCC, 0x8F,\n\t// Bytes 3480 - 34bf\n\t0xC9, 0x03, 0x72, 0xCC, 0x91, 0xC9, 0x03, 0x72,\n\t0xCC, 0xA7, 0xA5, 0x03, 0x72, 0xCC, 0xB1, 0xB5,\n\t0x03, 0x73, 0xCC, 0x82, 0xC9, 0x03, 0x73, 0xCC,\n\t0x87, 0xC9, 0x03, 0x73, 0xCC, 0xA6, 0xB5, 0x03,\n\t0x73, 0xCC, 0xA7, 0xA5, 0x03, 0x74, 0xCC, 0x87,\n\t0xC9, 0x03, 0x74, 0xCC, 0x88, 0xC9, 0x03, 0x74,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x74, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x74, 0xCC, 0xA6, 0xB5, 0x03, 0x74, 0xCC,\n\t// Bytes 34c0 - 34ff\n\t0xA7, 0xA5, 0x03, 0x74, 0xCC, 0xAD, 0xB5, 0x03,\n\t0x74, 0xCC, 0xB1, 0xB5, 0x03, 0x75, 0xCC, 0x80,\n\t0xC9, 0x03, 0x75, 0xCC, 0x81, 0xC9, 0x03, 0x75,\n\t0xCC, 0x82, 0xC9, 0x03, 0x75, 0xCC, 0x86, 0xC9,\n\t0x03, 0x75, 0xCC, 0x89, 0xC9, 0x03, 0x75, 0xCC,\n\t0x8A, 0xC9, 0x03, 0x75, 0xCC, 0x8B, 0xC9, 0x03,\n\t0x75, 0xCC, 0x8C, 0xC9, 0x03, 0x75, 0xCC, 0x8F,\n\t0xC9, 0x03, 0x75, 0xCC, 0x91, 0xC9, 0x03, 0x75,\n\t// Bytes 3500 - 353f\n\t0xCC, 0xA3, 0xB5, 0x03, 0x75, 0xCC, 0xA4, 0xB5,\n\t0x03, 0x75, 0xCC, 0xA8, 0xA5, 0x03, 0x75, 0xCC,\n\t0xAD, 0xB5, 0x03, 0x75, 0xCC, 0xB0, 0xB5, 0x03,\n\t0x76, 0xCC, 0x83, 0xC9, 0x03, 0x76, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x77, 0xCC, 0x80, 0xC9, 0x03, 0x77,\n\t0xCC, 0x81, 0xC9, 0x03, 0x77, 0xCC, 0x82, 0xC9,\n\t0x03, 0x77, 0xCC, 0x87, 0xC9, 0x03, 0x77, 0xCC,\n\t0x88, 0xC9, 0x03, 0x77, 0xCC, 0x8A, 0xC9, 0x03,\n\t// Bytes 3540 - 357f\n\t0x77, 0xCC, 0xA3, 0xB5, 0x03, 0x78, 0xCC, 0x87,\n\t0xC9, 0x03, 0x78, 0xCC, 0x88, 0xC9, 0x03, 0x79,\n\t0xCC, 0x80, 0xC9, 0x03, 0x79, 0xCC, 0x81, 0xC9,\n\t0x03, 0x79, 0xCC, 0x82, 0xC9, 0x03, 0x79, 0xCC,\n\t0x83, 0xC9, 0x03, 0x79, 0xCC, 0x84, 0xC9, 0x03,\n\t0x79, 0xCC, 0x87, 0xC9, 0x03, 0x79, 0xCC, 0x88,\n\t0xC9, 0x03, 0x79, 0xCC, 0x89, 0xC9, 0x03, 0x79,\n\t0xCC, 0x8A, 0xC9, 0x03, 0x79, 0xCC, 0xA3, 0xB5,\n\t// Bytes 3580 - 35bf\n\t0x03, 0x7A, 0xCC, 0x81, 0xC9, 0x03, 0x7A, 0xCC,\n\t0x82, 0xC9, 0x03, 0x7A, 0xCC, 0x87, 0xC9, 0x03,\n\t0x7A, 0xCC, 0x8C, 0xC9, 0x03, 0x7A, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x7A, 0xCC, 0xB1, 0xB5, 0x04, 0xC2,\n\t0xA8, 0xCC, 0x80, 0xCA, 0x04, 0xC2, 0xA8, 0xCC,\n\t0x81, 0xCA, 0x04, 0xC2, 0xA8, 0xCD, 0x82, 0xCA,\n\t0x04, 0xC3, 0x86, 0xCC, 0x81, 0xC9, 0x04, 0xC3,\n\t0x86, 0xCC, 0x84, 0xC9, 0x04, 0xC3, 0x98, 0xCC,\n\t// Bytes 35c0 - 35ff\n\t0x81, 0xC9, 0x04, 0xC3, 0xA6, 0xCC, 0x81, 0xC9,\n\t0x04, 0xC3, 0xA6, 0xCC, 0x84, 0xC9, 0x04, 0xC3,\n\t0xB8, 0xCC, 0x81, 0xC9, 0x04, 0xC5, 0xBF, 0xCC,\n\t0x87, 0xC9, 0x04, 0xC6, 0xB7, 0xCC, 0x8C, 0xC9,\n\t0x04, 0xCA, 0x92, 0xCC, 0x8C, 0xC9, 0x04, 0xCE,\n\t0x91, 0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x91, 0xCC,\n\t0x81, 0xC9, 0x04, 0xCE, 0x91, 0xCC, 0x84, 0xC9,\n\t0x04, 0xCE, 0x91, 0xCC, 0x86, 0xC9, 0x04, 0xCE,\n\t// Bytes 3600 - 363f\n\t0x91, 0xCD, 0x85, 0xD9, 0x04, 0xCE, 0x95, 0xCC,\n\t0x80, 0xC9, 0x04, 0xCE, 0x95, 0xCC, 0x81, 0xC9,\n\t0x04, 0xCE, 0x97, 0xCC, 0x80, 0xC9, 0x04, 0xCE,\n\t0x97, 0xCC, 0x81, 0xC9, 0x04, 0xCE, 0x97, 0xCD,\n\t0x85, 0xD9, 0x04, 0xCE, 0x99, 0xCC, 0x80, 0xC9,\n\t0x04, 0xCE, 0x99, 0xCC, 0x81, 0xC9, 0x04, 0xCE,\n\t0x99, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0x99, 0xCC,\n\t0x86, 0xC9, 0x04, 0xCE, 0x99, 0xCC, 0x88, 0xC9,\n\t// Bytes 3640 - 367f\n\t0x04, 0xCE, 0x9F, 0xCC, 0x80, 0xC9, 0x04, 0xCE,\n\t0x9F, 0xCC, 0x81, 0xC9, 0x04, 0xCE, 0xA1, 0xCC,\n\t0x94, 0xC9, 0x04, 0xCE, 0xA5, 0xCC, 0x80, 0xC9,\n\t0x04, 0xCE, 0xA5, 0xCC, 0x81, 0xC9, 0x04, 0xCE,\n\t0xA5, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0xA5, 0xCC,\n\t0x86, 0xC9, 0x04, 0xCE, 0xA5, 0xCC, 0x88, 0xC9,\n\t0x04, 0xCE, 0xA9, 0xCC, 0x80, 0xC9, 0x04, 0xCE,\n\t0xA9, 0xCC, 0x81, 0xC9, 0x04, 0xCE, 0xA9, 0xCD,\n\t// Bytes 3680 - 36bf\n\t0x85, 0xD9, 0x04, 0xCE, 0xB1, 0xCC, 0x84, 0xC9,\n\t0x04, 0xCE, 0xB1, 0xCC, 0x86, 0xC9, 0x04, 0xCE,\n\t0xB1, 0xCD, 0x85, 0xD9, 0x04, 0xCE, 0xB5, 0xCC,\n\t0x80, 0xC9, 0x04, 0xCE, 0xB5, 0xCC, 0x81, 0xC9,\n\t0x04, 0xCE, 0xB7, 0xCD, 0x85, 0xD9, 0x04, 0xCE,\n\t0xB9, 0xCC, 0x80, 0xC9, 0x04, 0xCE, 0xB9, 0xCC,\n\t0x81, 0xC9, 0x04, 0xCE, 0xB9, 0xCC, 0x84, 0xC9,\n\t0x04, 0xCE, 0xB9, 0xCC, 0x86, 0xC9, 0x04, 0xCE,\n\t// Bytes 36c0 - 36ff\n\t0xB9, 0xCD, 0x82, 0xC9, 0x04, 0xCE, 0xBF, 0xCC,\n\t0x80, 0xC9, 0x04, 0xCE, 0xBF, 0xCC, 0x81, 0xC9,\n\t0x04, 0xCF, 0x81, 0xCC, 0x93, 0xC9, 0x04, 0xCF,\n\t0x81, 0xCC, 0x94, 0xC9, 0x04, 0xCF, 0x85, 0xCC,\n\t0x80, 0xC9, 0x04, 0xCF, 0x85, 0xCC, 0x81, 0xC9,\n\t0x04, 0xCF, 0x85, 0xCC, 0x84, 0xC9, 0x04, 0xCF,\n\t0x85, 0xCC, 0x86, 0xC9, 0x04, 0xCF, 0x85, 0xCD,\n\t0x82, 0xC9, 0x04, 0xCF, 0x89, 0xCD, 0x85, 0xD9,\n\t// Bytes 3700 - 373f\n\t0x04, 0xCF, 0x92, 0xCC, 0x81, 0xC9, 0x04, 0xCF,\n\t0x92, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x86, 0xCC,\n\t0x88, 0xC9, 0x04, 0xD0, 0x90, 0xCC, 0x86, 0xC9,\n\t0x04, 0xD0, 0x90, 0xCC, 0x88, 0xC9, 0x04, 0xD0,\n\t0x93, 0xCC, 0x81, 0xC9, 0x04, 0xD0, 0x95, 0xCC,\n\t0x80, 0xC9, 0x04, 0xD0, 0x95, 0xCC, 0x86, 0xC9,\n\t0x04, 0xD0, 0x95, 0xCC, 0x88, 0xC9, 0x04, 0xD0,\n\t0x96, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0x96, 0xCC,\n\t// Bytes 3740 - 377f\n\t0x88, 0xC9, 0x04, 0xD0, 0x97, 0xCC, 0x88, 0xC9,\n\t0x04, 0xD0, 0x98, 0xCC, 0x80, 0xC9, 0x04, 0xD0,\n\t0x98, 0xCC, 0x84, 0xC9, 0x04, 0xD0, 0x98, 0xCC,\n\t0x86, 0xC9, 0x04, 0xD0, 0x98, 0xCC, 0x88, 0xC9,\n\t0x04, 0xD0, 0x9A, 0xCC, 0x81, 0xC9, 0x04, 0xD0,\n\t0x9E, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xA3, 0xCC,\n\t0x84, 0xC9, 0x04, 0xD0, 0xA3, 0xCC, 0x86, 0xC9,\n\t0x04, 0xD0, 0xA3, 0xCC, 0x88, 0xC9, 0x04, 0xD0,\n\t// Bytes 3780 - 37bf\n\t0xA3, 0xCC, 0x8B, 0xC9, 0x04, 0xD0, 0xA7, 0xCC,\n\t0x88, 0xC9, 0x04, 0xD0, 0xAB, 0xCC, 0x88, 0xC9,\n\t0x04, 0xD0, 0xAD, 0xCC, 0x88, 0xC9, 0x04, 0xD0,\n\t0xB0, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xB0, 0xCC,\n\t0x88, 0xC9, 0x04, 0xD0, 0xB3, 0xCC, 0x81, 0xC9,\n\t0x04, 0xD0, 0xB5, 0xCC, 0x80, 0xC9, 0x04, 0xD0,\n\t0xB5, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xB5, 0xCC,\n\t0x88, 0xC9, 0x04, 0xD0, 0xB6, 0xCC, 0x86, 0xC9,\n\t// Bytes 37c0 - 37ff\n\t0x04, 0xD0, 0xB6, 0xCC, 0x88, 0xC9, 0x04, 0xD0,\n\t0xB7, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xB8, 0xCC,\n\t0x80, 0xC9, 0x04, 0xD0, 0xB8, 0xCC, 0x84, 0xC9,\n\t0x04, 0xD0, 0xB8, 0xCC, 0x86, 0xC9, 0x04, 0xD0,\n\t0xB8, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xBA, 0xCC,\n\t0x81, 0xC9, 0x04, 0xD0, 0xBE, 0xCC, 0x88, 0xC9,\n\t0x04, 0xD1, 0x83, 0xCC, 0x84, 0xC9, 0x04, 0xD1,\n\t0x83, 0xCC, 0x86, 0xC9, 0x04, 0xD1, 0x83, 0xCC,\n\t// Bytes 3800 - 383f\n\t0x88, 0xC9, 0x04, 0xD1, 0x83, 0xCC, 0x8B, 0xC9,\n\t0x04, 0xD1, 0x87, 0xCC, 0x88, 0xC9, 0x04, 0xD1,\n\t0x8B, 0xCC, 0x88, 0xC9, 0x04, 0xD1, 0x8D, 0xCC,\n\t0x88, 0xC9, 0x04, 0xD1, 0x96, 0xCC, 0x88, 0xC9,\n\t0x04, 0xD1, 0xB4, 0xCC, 0x8F, 0xC9, 0x04, 0xD1,\n\t0xB5, 0xCC, 0x8F, 0xC9, 0x04, 0xD3, 0x98, 0xCC,\n\t0x88, 0xC9, 0x04, 0xD3, 0x99, 0xCC, 0x88, 0xC9,\n\t0x04, 0xD3, 0xA8, 0xCC, 0x88, 0xC9, 0x04, 0xD3,\n\t// Bytes 3840 - 387f\n\t0xA9, 0xCC, 0x88, 0xC9, 0x04, 0xD8, 0xA7, 0xD9,\n\t0x93, 0xC9, 0x04, 0xD8, 0xA7, 0xD9, 0x94, 0xC9,\n\t0x04, 0xD8, 0xA7, 0xD9, 0x95, 0xB5, 0x04, 0xD9,\n\t0x88, 0xD9, 0x94, 0xC9, 0x04, 0xD9, 0x8A, 0xD9,\n\t0x94, 0xC9, 0x04, 0xDB, 0x81, 0xD9, 0x94, 0xC9,\n\t0x04, 0xDB, 0x92, 0xD9, 0x94, 0xC9, 0x04, 0xDB,\n\t0x95, 0xD9, 0x94, 0xC9, 0x05, 0x41, 0xCC, 0x82,\n\t0xCC, 0x80, 0xCA, 0x05, 0x41, 0xCC, 0x82, 0xCC,\n\t// Bytes 3880 - 38bf\n\t0x81, 0xCA, 0x05, 0x41, 0xCC, 0x82, 0xCC, 0x83,\n\t0xCA, 0x05, 0x41, 0xCC, 0x82, 0xCC, 0x89, 0xCA,\n\t0x05, 0x41, 0xCC, 0x86, 0xCC, 0x80, 0xCA, 0x05,\n\t0x41, 0xCC, 0x86, 0xCC, 0x81, 0xCA, 0x05, 0x41,\n\t0xCC, 0x86, 0xCC, 0x83, 0xCA, 0x05, 0x41, 0xCC,\n\t0x86, 0xCC, 0x89, 0xCA, 0x05, 0x41, 0xCC, 0x87,\n\t0xCC, 0x84, 0xCA, 0x05, 0x41, 0xCC, 0x88, 0xCC,\n\t0x84, 0xCA, 0x05, 0x41, 0xCC, 0x8A, 0xCC, 0x81,\n\t// Bytes 38c0 - 38ff\n\t0xCA, 0x05, 0x41, 0xCC, 0xA3, 0xCC, 0x82, 0xCA,\n\t0x05, 0x41, 0xCC, 0xA3, 0xCC, 0x86, 0xCA, 0x05,\n\t0x43, 0xCC, 0xA7, 0xCC, 0x81, 0xCA, 0x05, 0x45,\n\t0xCC, 0x82, 0xCC, 0x80, 0xCA, 0x05, 0x45, 0xCC,\n\t0x82, 0xCC, 0x81, 0xCA, 0x05, 0x45, 0xCC, 0x82,\n\t0xCC, 0x83, 0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC,\n\t0x89, 0xCA, 0x05, 0x45, 0xCC, 0x84, 0xCC, 0x80,\n\t0xCA, 0x05, 0x45, 0xCC, 0x84, 0xCC, 0x81, 0xCA,\n\t// Bytes 3900 - 393f\n\t0x05, 0x45, 0xCC, 0xA3, 0xCC, 0x82, 0xCA, 0x05,\n\t0x45, 0xCC, 0xA7, 0xCC, 0x86, 0xCA, 0x05, 0x49,\n\t0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x05, 0x4C, 0xCC,\n\t0xA3, 0xCC, 0x84, 0xCA, 0x05, 0x4F, 0xCC, 0x82,\n\t0xCC, 0x80, 0xCA, 0x05, 0x4F, 0xCC, 0x82, 0xCC,\n\t0x81, 0xCA, 0x05, 0x4F, 0xCC, 0x82, 0xCC, 0x83,\n\t0xCA, 0x05, 0x4F, 0xCC, 0x82, 0xCC, 0x89, 0xCA,\n\t0x05, 0x4F, 0xCC, 0x83, 0xCC, 0x81, 0xCA, 0x05,\n\t// Bytes 3940 - 397f\n\t0x4F, 0xCC, 0x83, 0xCC, 0x84, 0xCA, 0x05, 0x4F,\n\t0xCC, 0x83, 0xCC, 0x88, 0xCA, 0x05, 0x4F, 0xCC,\n\t0x84, 0xCC, 0x80, 0xCA, 0x05, 0x4F, 0xCC, 0x84,\n\t0xCC, 0x81, 0xCA, 0x05, 0x4F, 0xCC, 0x87, 0xCC,\n\t0x84, 0xCA, 0x05, 0x4F, 0xCC, 0x88, 0xCC, 0x84,\n\t0xCA, 0x05, 0x4F, 0xCC, 0x9B, 0xCC, 0x80, 0xCA,\n\t0x05, 0x4F, 0xCC, 0x9B, 0xCC, 0x81, 0xCA, 0x05,\n\t0x4F, 0xCC, 0x9B, 0xCC, 0x83, 0xCA, 0x05, 0x4F,\n\t// Bytes 3980 - 39bf\n\t0xCC, 0x9B, 0xCC, 0x89, 0xCA, 0x05, 0x4F, 0xCC,\n\t0x9B, 0xCC, 0xA3, 0xB6, 0x05, 0x4F, 0xCC, 0xA3,\n\t0xCC, 0x82, 0xCA, 0x05, 0x4F, 0xCC, 0xA8, 0xCC,\n\t0x84, 0xCA, 0x05, 0x52, 0xCC, 0xA3, 0xCC, 0x84,\n\t0xCA, 0x05, 0x53, 0xCC, 0x81, 0xCC, 0x87, 0xCA,\n\t0x05, 0x53, 0xCC, 0x8C, 0xCC, 0x87, 0xCA, 0x05,\n\t0x53, 0xCC, 0xA3, 0xCC, 0x87, 0xCA, 0x05, 0x55,\n\t0xCC, 0x83, 0xCC, 0x81, 0xCA, 0x05, 0x55, 0xCC,\n\t// Bytes 39c0 - 39ff\n\t0x84, 0xCC, 0x88, 0xCA, 0x05, 0x55, 0xCC, 0x88,\n\t0xCC, 0x80, 0xCA, 0x05, 0x55, 0xCC, 0x88, 0xCC,\n\t0x81, 0xCA, 0x05, 0x55, 0xCC, 0x88, 0xCC, 0x84,\n\t0xCA, 0x05, 0x55, 0xCC, 0x88, 0xCC, 0x8C, 0xCA,\n\t0x05, 0x55, 0xCC, 0x9B, 0xCC, 0x80, 0xCA, 0x05,\n\t0x55, 0xCC, 0x9B, 0xCC, 0x81, 0xCA, 0x05, 0x55,\n\t0xCC, 0x9B, 0xCC, 0x83, 0xCA, 0x05, 0x55, 0xCC,\n\t0x9B, 0xCC, 0x89, 0xCA, 0x05, 0x55, 0xCC, 0x9B,\n\t// Bytes 3a00 - 3a3f\n\t0xCC, 0xA3, 0xB6, 0x05, 0x61, 0xCC, 0x82, 0xCC,\n\t0x80, 0xCA, 0x05, 0x61, 0xCC, 0x82, 0xCC, 0x81,\n\t0xCA, 0x05, 0x61, 0xCC, 0x82, 0xCC, 0x83, 0xCA,\n\t0x05, 0x61, 0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05,\n\t0x61, 0xCC, 0x86, 0xCC, 0x80, 0xCA, 0x05, 0x61,\n\t0xCC, 0x86, 0xCC, 0x81, 0xCA, 0x05, 0x61, 0xCC,\n\t0x86, 0xCC, 0x83, 0xCA, 0x05, 0x61, 0xCC, 0x86,\n\t0xCC, 0x89, 0xCA, 0x05, 0x61, 0xCC, 0x87, 0xCC,\n\t// Bytes 3a40 - 3a7f\n\t0x84, 0xCA, 0x05, 0x61, 0xCC, 0x88, 0xCC, 0x84,\n\t0xCA, 0x05, 0x61, 0xCC, 0x8A, 0xCC, 0x81, 0xCA,\n\t0x05, 0x61, 0xCC, 0xA3, 0xCC, 0x82, 0xCA, 0x05,\n\t0x61, 0xCC, 0xA3, 0xCC, 0x86, 0xCA, 0x05, 0x63,\n\t0xCC, 0xA7, 0xCC, 0x81, 0xCA, 0x05, 0x65, 0xCC,\n\t0x82, 0xCC, 0x80, 0xCA, 0x05, 0x65, 0xCC, 0x82,\n\t0xCC, 0x81, 0xCA, 0x05, 0x65, 0xCC, 0x82, 0xCC,\n\t0x83, 0xCA, 0x05, 0x65, 0xCC, 0x82, 0xCC, 0x89,\n\t// Bytes 3a80 - 3abf\n\t0xCA, 0x05, 0x65, 0xCC, 0x84, 0xCC, 0x80, 0xCA,\n\t0x05, 0x65, 0xCC, 0x84, 0xCC, 0x81, 0xCA, 0x05,\n\t0x65, 0xCC, 0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x65,\n\t0xCC, 0xA7, 0xCC, 0x86, 0xCA, 0x05, 0x69, 0xCC,\n\t0x88, 0xCC, 0x81, 0xCA, 0x05, 0x6C, 0xCC, 0xA3,\n\t0xCC, 0x84, 0xCA, 0x05, 0x6F, 0xCC, 0x82, 0xCC,\n\t0x80, 0xCA, 0x05, 0x6F, 0xCC, 0x82, 0xCC, 0x81,\n\t0xCA, 0x05, 0x6F, 0xCC, 0x82, 0xCC, 0x83, 0xCA,\n\t// Bytes 3ac0 - 3aff\n\t0x05, 0x6F, 0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05,\n\t0x6F, 0xCC, 0x83, 0xCC, 0x81, 0xCA, 0x05, 0x6F,\n\t0xCC, 0x83, 0xCC, 0x84, 0xCA, 0x05, 0x6F, 0xCC,\n\t0x83, 0xCC, 0x88, 0xCA, 0x05, 0x6F, 0xCC, 0x84,\n\t0xCC, 0x80, 0xCA, 0x05, 0x6F, 0xCC, 0x84, 0xCC,\n\t0x81, 0xCA, 0x05, 0x6F, 0xCC, 0x87, 0xCC, 0x84,\n\t0xCA, 0x05, 0x6F, 0xCC, 0x88, 0xCC, 0x84, 0xCA,\n\t0x05, 0x6F, 0xCC, 0x9B, 0xCC, 0x80, 0xCA, 0x05,\n\t// Bytes 3b00 - 3b3f\n\t0x6F, 0xCC, 0x9B, 0xCC, 0x81, 0xCA, 0x05, 0x6F,\n\t0xCC, 0x9B, 0xCC, 0x83, 0xCA, 0x05, 0x6F, 0xCC,\n\t0x9B, 0xCC, 0x89, 0xCA, 0x05, 0x6F, 0xCC, 0x9B,\n\t0xCC, 0xA3, 0xB6, 0x05, 0x6F, 0xCC, 0xA3, 0xCC,\n\t0x82, 0xCA, 0x05, 0x6F, 0xCC, 0xA8, 0xCC, 0x84,\n\t0xCA, 0x05, 0x72, 0xCC, 0xA3, 0xCC, 0x84, 0xCA,\n\t0x05, 0x73, 0xCC, 0x81, 0xCC, 0x87, 0xCA, 0x05,\n\t0x73, 0xCC, 0x8C, 0xCC, 0x87, 0xCA, 0x05, 0x73,\n\t// Bytes 3b40 - 3b7f\n\t0xCC, 0xA3, 0xCC, 0x87, 0xCA, 0x05, 0x75, 0xCC,\n\t0x83, 0xCC, 0x81, 0xCA, 0x05, 0x75, 0xCC, 0x84,\n\t0xCC, 0x88, 0xCA, 0x05, 0x75, 0xCC, 0x88, 0xCC,\n\t0x80, 0xCA, 0x05, 0x75, 0xCC, 0x88, 0xCC, 0x81,\n\t0xCA, 0x05, 0x75, 0xCC, 0x88, 0xCC, 0x84, 0xCA,\n\t0x05, 0x75, 0xCC, 0x88, 0xCC, 0x8C, 0xCA, 0x05,\n\t0x75, 0xCC, 0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x75,\n\t0xCC, 0x9B, 0xCC, 0x81, 0xCA, 0x05, 0x75, 0xCC,\n\t// Bytes 3b80 - 3bbf\n\t0x9B, 0xCC, 0x83, 0xCA, 0x05, 0x75, 0xCC, 0x9B,\n\t0xCC, 0x89, 0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC,\n\t0xA3, 0xB6, 0x05, 0xE1, 0xBE, 0xBF, 0xCC, 0x80,\n\t0xCA, 0x05, 0xE1, 0xBE, 0xBF, 0xCC, 0x81, 0xCA,\n\t0x05, 0xE1, 0xBE, 0xBF, 0xCD, 0x82, 0xCA, 0x05,\n\t0xE1, 0xBF, 0xBE, 0xCC, 0x80, 0xCA, 0x05, 0xE1,\n\t0xBF, 0xBE, 0xCC, 0x81, 0xCA, 0x05, 0xE1, 0xBF,\n\t0xBE, 0xCD, 0x82, 0xCA, 0x05, 0xE2, 0x86, 0x90,\n\t// Bytes 3bc0 - 3bff\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x86, 0x92, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x86, 0x94, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x87, 0x90, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x87, 0x92, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x87, 0x94, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x88, 0x83, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x88,\n\t0x88, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x88, 0x8B,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x88, 0xA3, 0xCC,\n\t// Bytes 3c00 - 3c3f\n\t0xB8, 0x05, 0x05, 0xE2, 0x88, 0xA5, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x88, 0xBC, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x89, 0x83, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x89, 0x85, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x89, 0x88, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89,\n\t0x8D, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xA1,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xA4, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x89, 0xA5, 0xCC, 0xB8,\n\t// Bytes 3c40 - 3c7f\n\t0x05, 0x05, 0xE2, 0x89, 0xB2, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x89, 0xB3, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x89, 0xB6, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x89, 0xB7, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89,\n\t0xBA, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xBB,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xBC, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x89, 0xBD, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x8A, 0x82, 0xCC, 0xB8, 0x05,\n\t// Bytes 3c80 - 3cbf\n\t0x05, 0xE2, 0x8A, 0x83, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x8A, 0x86, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x8A, 0x87, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A,\n\t0x91, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x92,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xA2, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xA8, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x8A, 0xA9, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x8A, 0xAB, 0xCC, 0xB8, 0x05, 0x05,\n\t// Bytes 3cc0 - 3cff\n\t0xE2, 0x8A, 0xB2, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x8A, 0xB3, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A,\n\t0xB4, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB5,\n\t0xCC, 0xB8, 0x05, 0x06, 0xCE, 0x91, 0xCC, 0x93,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0x91, 0xCC, 0x94,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0x95, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0x95, 0xCC, 0x93,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0x95, 0xCC, 0x94,\n\t// Bytes 3d00 - 3d3f\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0x95, 0xCC, 0x94,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0x97, 0xCC, 0x93,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0x97, 0xCC, 0x94,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0x99, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0x99, 0xCC, 0x93,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0x99, 0xCC, 0x93,\n\t0xCD, 0x82, 0xCA, 0x06, 0xCE, 0x99, 0xCC, 0x94,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0x99, 0xCC, 0x94,\n\t// Bytes 3d40 - 3d7f\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0x99, 0xCC, 0x94,\n\t0xCD, 0x82, 0xCA, 0x06, 0xCE, 0x9F, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0x9F, 0xCC, 0x93,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0x9F, 0xCC, 0x94,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0x9F, 0xCC, 0x94,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0xA5, 0xCC, 0x94,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0xA5, 0xCC, 0x94,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0xA5, 0xCC, 0x94,\n\t// Bytes 3d80 - 3dbf\n\t0xCD, 0x82, 0xCA, 0x06, 0xCE, 0xA9, 0xCC, 0x93,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xA9, 0xCC, 0x94,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB1, 0xCC, 0x80,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB1, 0xCC, 0x81,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB1, 0xCC, 0x93,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB1, 0xCC, 0x94,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB1, 0xCD, 0x82,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB5, 0xCC, 0x93,\n\t// Bytes 3dc0 - 3dff\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0xB5, 0xCC, 0x93,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0xB5, 0xCC, 0x94,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0xB5, 0xCC, 0x94,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0xB7, 0xCC, 0x80,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB7, 0xCC, 0x81,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB7, 0xCC, 0x93,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB7, 0xCC, 0x94,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB7, 0xCD, 0x82,\n\t// Bytes 3e00 - 3e3f\n\t0xCD, 0x85, 0xDA, 0x06, 0xCE, 0xB9, 0xCC, 0x88,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0xB9, 0xCC, 0x88,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0xB9, 0xCC, 0x88,\n\t0xCD, 0x82, 0xCA, 0x06, 0xCE, 0xB9, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0xB9, 0xCC, 0x93,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0xB9, 0xCC, 0x93,\n\t0xCD, 0x82, 0xCA, 0x06, 0xCE, 0xB9, 0xCC, 0x94,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0xB9, 0xCC, 0x94,\n\t// Bytes 3e40 - 3e7f\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0xB9, 0xCC, 0x94,\n\t0xCD, 0x82, 0xCA, 0x06, 0xCE, 0xBF, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0xBF, 0xCC, 0x93,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCE, 0xBF, 0xCC, 0x94,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCE, 0xBF, 0xCC, 0x94,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCF, 0x85, 0xCC, 0x88,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCF, 0x85, 0xCC, 0x88,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCF, 0x85, 0xCC, 0x88,\n\t// Bytes 3e80 - 3ebf\n\t0xCD, 0x82, 0xCA, 0x06, 0xCF, 0x85, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCF, 0x85, 0xCC, 0x93,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCF, 0x85, 0xCC, 0x93,\n\t0xCD, 0x82, 0xCA, 0x06, 0xCF, 0x85, 0xCC, 0x94,\n\t0xCC, 0x80, 0xCA, 0x06, 0xCF, 0x85, 0xCC, 0x94,\n\t0xCC, 0x81, 0xCA, 0x06, 0xCF, 0x85, 0xCC, 0x94,\n\t0xCD, 0x82, 0xCA, 0x06, 0xCF, 0x89, 0xCC, 0x80,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCF, 0x89, 0xCC, 0x81,\n\t// Bytes 3ec0 - 3eff\n\t0xCD, 0x85, 0xDA, 0x06, 0xCF, 0x89, 0xCC, 0x93,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCF, 0x89, 0xCC, 0x94,\n\t0xCD, 0x85, 0xDA, 0x06, 0xCF, 0x89, 0xCD, 0x82,\n\t0xCD, 0x85, 0xDA, 0x06, 0xE0, 0xA4, 0xA8, 0xE0,\n\t0xA4, 0xBC, 0x09, 0x06, 0xE0, 0xA4, 0xB0, 0xE0,\n\t0xA4, 0xBC, 0x09, 0x06, 0xE0, 0xA4, 0xB3, 0xE0,\n\t0xA4, 0xBC, 0x09, 0x06, 0xE0, 0xB1, 0x86, 0xE0,\n\t0xB1, 0x96, 0x85, 0x06, 0xE0, 0xB7, 0x99, 0xE0,\n\t// Bytes 3f00 - 3f3f\n\t0xB7, 0x8A, 0x11, 0x06, 0xE3, 0x81, 0x86, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x8B, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x8D, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x8F, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x91, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x93, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x95, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x97, 0xE3,\n\t// Bytes 3f40 - 3f7f\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x99, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x9B, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x9D, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0x9F, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xA1, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xA4, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xA6, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xA8, 0xE3,\n\t// Bytes 3f80 - 3fbf\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xAF, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xAF, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x81, 0xB2, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xB2, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x81, 0xB5, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xB5, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x81, 0xB8, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xB8, 0xE3,\n\t// Bytes 3fc0 - 3fff\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x81, 0xBB, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x81, 0xBB, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x82, 0x9D, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xA6, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xAB, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xAD, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xAF, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xB1, 0xE3,\n\t// Bytes 4000 - 403f\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xB3, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xB5, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xB7, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xB9, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xBB, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xBD, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x82, 0xBF, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x81, 0xE3,\n\t// Bytes 4040 - 407f\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x84, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x86, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x88, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x8F, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x8F, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x83, 0x92, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x92, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x83, 0x95, 0xE3,\n\t// Bytes 4080 - 40bf\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x95, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x83, 0x98, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x98, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x83, 0x9B, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0x9B, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x06, 0xE3, 0x83, 0xAF, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0xB0, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0xB1, 0xE3,\n\t// Bytes 40c0 - 40ff\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0xB2, 0xE3,\n\t0x82, 0x99, 0x0D, 0x06, 0xE3, 0x83, 0xBD, 0xE3,\n\t0x82, 0x99, 0x0D, 0x08, 0xCE, 0x91, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x91,\n\t0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08,\n\t0xCE, 0x91, 0xCC, 0x93, 0xCD, 0x82, 0xCD, 0x85,\n\t0xDB, 0x08, 0xCE, 0x91, 0xCC, 0x94, 0xCC, 0x80,\n\t0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC, 0x94,\n\t// Bytes 4100 - 413f\n\t0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x91,\n\t0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08,\n\t0xCE, 0x97, 0xCC, 0x93, 0xCC, 0x80, 0xCD, 0x85,\n\t0xDB, 0x08, 0xCE, 0x97, 0xCC, 0x93, 0xCC, 0x81,\n\t0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC, 0x93,\n\t0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x97,\n\t0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08,\n\t0xCE, 0x97, 0xCC, 0x94, 0xCC, 0x81, 0xCD, 0x85,\n\t// Bytes 4140 - 417f\n\t0xDB, 0x08, 0xCE, 0x97, 0xCC, 0x94, 0xCD, 0x82,\n\t0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xA9,\n\t0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08,\n\t0xCE, 0xA9, 0xCC, 0x93, 0xCD, 0x82, 0xCD, 0x85,\n\t0xDB, 0x08, 0xCE, 0xA9, 0xCC, 0x94, 0xCC, 0x80,\n\t0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC, 0x94,\n\t0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xA9,\n\t// Bytes 4180 - 41bf\n\t0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08,\n\t0xCE, 0xB1, 0xCC, 0x93, 0xCC, 0x80, 0xCD, 0x85,\n\t0xDB, 0x08, 0xCE, 0xB1, 0xCC, 0x93, 0xCC, 0x81,\n\t0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC, 0x93,\n\t0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB1,\n\t0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08,\n\t0xCE, 0xB1, 0xCC, 0x94, 0xCC, 0x81, 0xCD, 0x85,\n\t0xDB, 0x08, 0xCE, 0xB1, 0xCC, 0x94, 0xCD, 0x82,\n\t// Bytes 41c0 - 41ff\n\t0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB7,\n\t0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08,\n\t0xCE, 0xB7, 0xCC, 0x93, 0xCD, 0x82, 0xCD, 0x85,\n\t0xDB, 0x08, 0xCE, 0xB7, 0xCC, 0x94, 0xCC, 0x80,\n\t0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC, 0x94,\n\t0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB7,\n\t0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08,\n\t// Bytes 4200 - 423f\n\t0xCF, 0x89, 0xCC, 0x93, 0xCC, 0x80, 0xCD, 0x85,\n\t0xDB, 0x08, 0xCF, 0x89, 0xCC, 0x93, 0xCC, 0x81,\n\t0xCD, 0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC, 0x93,\n\t0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCF, 0x89,\n\t0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08,\n\t0xCF, 0x89, 0xCC, 0x94, 0xCC, 0x81, 0xCD, 0x85,\n\t0xDB, 0x08, 0xCF, 0x89, 0xCC, 0x94, 0xCD, 0x82,\n\t0xCD, 0x85, 0xDB, 0x08, 0xF0, 0x91, 0x82, 0x99,\n\t// Bytes 4240 - 427f\n\t0xF0, 0x91, 0x82, 0xBA, 0x09, 0x08, 0xF0, 0x91,\n\t0x82, 0x9B, 0xF0, 0x91, 0x82, 0xBA, 0x09, 0x08,\n\t0xF0, 0x91, 0x82, 0xA5, 0xF0, 0x91, 0x82, 0xBA,\n\t0x09, 0x42, 0xC2, 0xB4, 0x01, 0x43, 0x20, 0xCC,\n\t0x81, 0xC9, 0x43, 0x20, 0xCC, 0x83, 0xC9, 0x43,\n\t0x20, 0xCC, 0x84, 0xC9, 0x43, 0x20, 0xCC, 0x85,\n\t0xC9, 0x43, 0x20, 0xCC, 0x86, 0xC9, 0x43, 0x20,\n\t0xCC, 0x87, 0xC9, 0x43, 0x20, 0xCC, 0x88, 0xC9,\n\t// Bytes 4280 - 42bf\n\t0x43, 0x20, 0xCC, 0x8A, 0xC9, 0x43, 0x20, 0xCC,\n\t0x8B, 0xC9, 0x43, 0x20, 0xCC, 0x93, 0xC9, 0x43,\n\t0x20, 0xCC, 0x94, 0xC9, 0x43, 0x20, 0xCC, 0xA7,\n\t0xA5, 0x43, 0x20, 0xCC, 0xA8, 0xA5, 0x43, 0x20,\n\t0xCC, 0xB3, 0xB5, 0x43, 0x20, 0xCD, 0x82, 0xC9,\n\t0x43, 0x20, 0xCD, 0x85, 0xD9, 0x43, 0x20, 0xD9,\n\t0x8B, 0x59, 0x43, 0x20, 0xD9, 0x8C, 0x5D, 0x43,\n\t0x20, 0xD9, 0x8D, 0x61, 0x43, 0x20, 0xD9, 0x8E,\n\t// Bytes 42c0 - 42ff\n\t0x65, 0x43, 0x20, 0xD9, 0x8F, 0x69, 0x43, 0x20,\n\t0xD9, 0x90, 0x6D, 0x43, 0x20, 0xD9, 0x91, 0x71,\n\t0x43, 0x20, 0xD9, 0x92, 0x75, 0x43, 0x41, 0xCC,\n\t0x8A, 0xC9, 0x43, 0x73, 0xCC, 0x87, 0xC9, 0x44,\n\t0x20, 0xE3, 0x82, 0x99, 0x0D, 0x44, 0x20, 0xE3,\n\t0x82, 0x9A, 0x0D, 0x44, 0xC2, 0xA8, 0xCC, 0x81,\n\t0xCA, 0x44, 0xCE, 0x91, 0xCC, 0x81, 0xC9, 0x44,\n\t0xCE, 0x95, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0x97,\n\t// Bytes 4300 - 433f\n\t0xCC, 0x81, 0xC9, 0x44, 0xCE, 0x99, 0xCC, 0x81,\n\t0xC9, 0x44, 0xCE, 0x9F, 0xCC, 0x81, 0xC9, 0x44,\n\t0xCE, 0xA5, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0xA5,\n\t0xCC, 0x88, 0xC9, 0x44, 0xCE, 0xA9, 0xCC, 0x81,\n\t0xC9, 0x44, 0xCE, 0xB1, 0xCC, 0x81, 0xC9, 0x44,\n\t0xCE, 0xB5, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0xB7,\n\t0xCC, 0x81, 0xC9, 0x44, 0xCE, 0xB9, 0xCC, 0x81,\n\t0xC9, 0x44, 0xCE, 0xBF, 0xCC, 0x81, 0xC9, 0x44,\n\t// Bytes 4340 - 437f\n\t0xCF, 0x85, 0xCC, 0x81, 0xC9, 0x44, 0xCF, 0x89,\n\t0xCC, 0x81, 0xC9, 0x44, 0xD7, 0x90, 0xD6, 0xB7,\n\t0x31, 0x44, 0xD7, 0x90, 0xD6, 0xB8, 0x35, 0x44,\n\t0xD7, 0x90, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x91,\n\t0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x91, 0xD6, 0xBF,\n\t0x49, 0x44, 0xD7, 0x92, 0xD6, 0xBC, 0x41, 0x44,\n\t0xD7, 0x93, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x94,\n\t0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x95, 0xD6, 0xB9,\n\t// Bytes 4380 - 43bf\n\t0x39, 0x44, 0xD7, 0x95, 0xD6, 0xBC, 0x41, 0x44,\n\t0xD7, 0x96, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x98,\n\t0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x99, 0xD6, 0xB4,\n\t0x25, 0x44, 0xD7, 0x99, 0xD6, 0xBC, 0x41, 0x44,\n\t0xD7, 0x9A, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x9B,\n\t0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x9B, 0xD6, 0xBF,\n\t0x49, 0x44, 0xD7, 0x9C, 0xD6, 0xBC, 0x41, 0x44,\n\t0xD7, 0x9E, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA0,\n\t// Bytes 43c0 - 43ff\n\t0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA1, 0xD6, 0xBC,\n\t0x41, 0x44, 0xD7, 0xA3, 0xD6, 0xBC, 0x41, 0x44,\n\t0xD7, 0xA4, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA4,\n\t0xD6, 0xBF, 0x49, 0x44, 0xD7, 0xA6, 0xD6, 0xBC,\n\t0x41, 0x44, 0xD7, 0xA7, 0xD6, 0xBC, 0x41, 0x44,\n\t0xD7, 0xA8, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA9,\n\t0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA9, 0xD7, 0x81,\n\t0x4D, 0x44, 0xD7, 0xA9, 0xD7, 0x82, 0x51, 0x44,\n\t// Bytes 4400 - 443f\n\t0xD7, 0xAA, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xB2,\n\t0xD6, 0xB7, 0x31, 0x44, 0xD8, 0xA7, 0xD9, 0x8B,\n\t0x59, 0x44, 0xD8, 0xA7, 0xD9, 0x93, 0xC9, 0x44,\n\t0xD8, 0xA7, 0xD9, 0x94, 0xC9, 0x44, 0xD8, 0xA7,\n\t0xD9, 0x95, 0xB5, 0x44, 0xD8, 0xB0, 0xD9, 0xB0,\n\t0x79, 0x44, 0xD8, 0xB1, 0xD9, 0xB0, 0x79, 0x44,\n\t0xD9, 0x80, 0xD9, 0x8B, 0x59, 0x44, 0xD9, 0x80,\n\t0xD9, 0x8E, 0x65, 0x44, 0xD9, 0x80, 0xD9, 0x8F,\n\t// Bytes 4440 - 447f\n\t0x69, 0x44, 0xD9, 0x80, 0xD9, 0x90, 0x6D, 0x44,\n\t0xD9, 0x80, 0xD9, 0x91, 0x71, 0x44, 0xD9, 0x80,\n\t0xD9, 0x92, 0x75, 0x44, 0xD9, 0x87, 0xD9, 0xB0,\n\t0x79, 0x44, 0xD9, 0x88, 0xD9, 0x94, 0xC9, 0x44,\n\t0xD9, 0x89, 0xD9, 0xB0, 0x79, 0x44, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xC9, 0x44, 0xDB, 0x92, 0xD9, 0x94,\n\t0xC9, 0x44, 0xDB, 0x95, 0xD9, 0x94, 0xC9, 0x45,\n\t0x20, 0xCC, 0x88, 0xCC, 0x80, 0xCA, 0x45, 0x20,\n\t// Bytes 4480 - 44bf\n\t0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x45, 0x20, 0xCC,\n\t0x88, 0xCD, 0x82, 0xCA, 0x45, 0x20, 0xCC, 0x93,\n\t0xCC, 0x80, 0xCA, 0x45, 0x20, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCA, 0x45, 0x20, 0xCC, 0x93, 0xCD, 0x82,\n\t0xCA, 0x45, 0x20, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x45, 0x20, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x45,\n\t0x20, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x45, 0x20,\n\t0xD9, 0x8C, 0xD9, 0x91, 0x72, 0x45, 0x20, 0xD9,\n\t// Bytes 44c0 - 44ff\n\t0x8D, 0xD9, 0x91, 0x72, 0x45, 0x20, 0xD9, 0x8E,\n\t0xD9, 0x91, 0x72, 0x45, 0x20, 0xD9, 0x8F, 0xD9,\n\t0x91, 0x72, 0x45, 0x20, 0xD9, 0x90, 0xD9, 0x91,\n\t0x72, 0x45, 0x20, 0xD9, 0x91, 0xD9, 0xB0, 0x7A,\n\t0x45, 0xE2, 0xAB, 0x9D, 0xCC, 0xB8, 0x05, 0x46,\n\t0xCE, 0xB9, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x46,\n\t0xCF, 0x85, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x46,\n\t0xD7, 0xA9, 0xD6, 0xBC, 0xD7, 0x81, 0x4E, 0x46,\n\t// Bytes 4500 - 453f\n\t0xD7, 0xA9, 0xD6, 0xBC, 0xD7, 0x82, 0x52, 0x46,\n\t0xD9, 0x80, 0xD9, 0x8E, 0xD9, 0x91, 0x72, 0x46,\n\t0xD9, 0x80, 0xD9, 0x8F, 0xD9, 0x91, 0x72, 0x46,\n\t0xD9, 0x80, 0xD9, 0x90, 0xD9, 0x91, 0x72, 0x46,\n\t0xE0, 0xA4, 0x95, 0xE0, 0xA4, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA4, 0x96, 0xE0, 0xA4, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA4, 0x97, 0xE0, 0xA4, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA4, 0x9C, 0xE0, 0xA4, 0xBC, 0x09, 0x46,\n\t// Bytes 4540 - 457f\n\t0xE0, 0xA4, 0xA1, 0xE0, 0xA4, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA4, 0xA2, 0xE0, 0xA4, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA4, 0xAB, 0xE0, 0xA4, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA4, 0xAF, 0xE0, 0xA4, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA6, 0xA1, 0xE0, 0xA6, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA6, 0xA2, 0xE0, 0xA6, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA6, 0xAF, 0xE0, 0xA6, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA8, 0x96, 0xE0, 0xA8, 0xBC, 0x09, 0x46,\n\t// Bytes 4580 - 45bf\n\t0xE0, 0xA8, 0x97, 0xE0, 0xA8, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA8, 0x9C, 0xE0, 0xA8, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA8, 0xAB, 0xE0, 0xA8, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA8, 0xB2, 0xE0, 0xA8, 0xBC, 0x09, 0x46,\n\t0xE0, 0xA8, 0xB8, 0xE0, 0xA8, 0xBC, 0x09, 0x46,\n\t0xE0, 0xAC, 0xA1, 0xE0, 0xAC, 0xBC, 0x09, 0x46,\n\t0xE0, 0xAC, 0xA2, 0xE0, 0xAC, 0xBC, 0x09, 0x46,\n\t0xE0, 0xBE, 0xB2, 0xE0, 0xBE, 0x80, 0x9D, 0x46,\n\t// Bytes 45c0 - 45ff\n\t0xE0, 0xBE, 0xB3, 0xE0, 0xBE, 0x80, 0x9D, 0x46,\n\t0xE3, 0x83, 0x86, 0xE3, 0x82, 0x99, 0x0D, 0x48,\n\t0xF0, 0x9D, 0x85, 0x97, 0xF0, 0x9D, 0x85, 0xA5,\n\t0xAD, 0x48, 0xF0, 0x9D, 0x85, 0x98, 0xF0, 0x9D,\n\t0x85, 0xA5, 0xAD, 0x48, 0xF0, 0x9D, 0x86, 0xB9,\n\t0xF0, 0x9D, 0x85, 0xA5, 0xAD, 0x48, 0xF0, 0x9D,\n\t0x86, 0xBA, 0xF0, 0x9D, 0x85, 0xA5, 0xAD, 0x49,\n\t0xE0, 0xBE, 0xB2, 0xE0, 0xBD, 0xB1, 0xE0, 0xBE,\n\t// Bytes 4600 - 463f\n\t0x80, 0x9E, 0x49, 0xE0, 0xBE, 0xB3, 0xE0, 0xBD,\n\t0xB1, 0xE0, 0xBE, 0x80, 0x9E, 0x4C, 0xF0, 0x9D,\n\t0x85, 0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D,\n\t0x85, 0xAE, 0xAE, 0x4C, 0xF0, 0x9D, 0x85, 0x98,\n\t0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xAF,\n\t0xAE, 0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0, 0x9D,\n\t0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xB0, 0xAE, 0x4C,\n\t0xF0, 0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85, 0xA5,\n\t// Bytes 4640 - 467f\n\t0xF0, 0x9D, 0x85, 0xB1, 0xAE, 0x4C, 0xF0, 0x9D,\n\t0x85, 0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D,\n\t0x85, 0xB2, 0xAE, 0x4C, 0xF0, 0x9D, 0x86, 0xB9,\n\t0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xAE,\n\t0xAE, 0x4C, 0xF0, 0x9D, 0x86, 0xB9, 0xF0, 0x9D,\n\t0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xAF, 0xAE, 0x4C,\n\t0xF0, 0x9D, 0x86, 0xBA, 0xF0, 0x9D, 0x85, 0xA5,\n\t0xF0, 0x9D, 0x85, 0xAE, 0xAE, 0x4C, 0xF0, 0x9D,\n\t// Bytes 4680 - 46bf\n\t0x86, 0xBA, 0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D,\n\t0x85, 0xAF, 0xAE, 0x83, 0x41, 0xCC, 0x82, 0xC9,\n\t0x83, 0x41, 0xCC, 0x86, 0xC9, 0x83, 0x41, 0xCC,\n\t0x87, 0xC9, 0x83, 0x41, 0xCC, 0x88, 0xC9, 0x83,\n\t0x41, 0xCC, 0x8A, 0xC9, 0x83, 0x41, 0xCC, 0xA3,\n\t0xB5, 0x83, 0x43, 0xCC, 0xA7, 0xA5, 0x83, 0x45,\n\t0xCC, 0x82, 0xC9, 0x83, 0x45, 0xCC, 0x84, 0xC9,\n\t0x83, 0x45, 0xCC, 0xA3, 0xB5, 0x83, 0x45, 0xCC,\n\t// Bytes 46c0 - 46ff\n\t0xA7, 0xA5, 0x83, 0x49, 0xCC, 0x88, 0xC9, 0x83,\n\t0x4C, 0xCC, 0xA3, 0xB5, 0x83, 0x4F, 0xCC, 0x82,\n\t0xC9, 0x83, 0x4F, 0xCC, 0x83, 0xC9, 0x83, 0x4F,\n\t0xCC, 0x84, 0xC9, 0x83, 0x4F, 0xCC, 0x87, 0xC9,\n\t0x83, 0x4F, 0xCC, 0x88, 0xC9, 0x83, 0x4F, 0xCC,\n\t0x9B, 0xAD, 0x83, 0x4F, 0xCC, 0xA3, 0xB5, 0x83,\n\t0x4F, 0xCC, 0xA8, 0xA5, 0x83, 0x52, 0xCC, 0xA3,\n\t0xB5, 0x83, 0x53, 0xCC, 0x81, 0xC9, 0x83, 0x53,\n\t// Bytes 4700 - 473f\n\t0xCC, 0x8C, 0xC9, 0x83, 0x53, 0xCC, 0xA3, 0xB5,\n\t0x83, 0x55, 0xCC, 0x83, 0xC9, 0x83, 0x55, 0xCC,\n\t0x84, 0xC9, 0x83, 0x55, 0xCC, 0x88, 0xC9, 0x83,\n\t0x55, 0xCC, 0x9B, 0xAD, 0x83, 0x61, 0xCC, 0x82,\n\t0xC9, 0x83, 0x61, 0xCC, 0x86, 0xC9, 0x83, 0x61,\n\t0xCC, 0x87, 0xC9, 0x83, 0x61, 0xCC, 0x88, 0xC9,\n\t0x83, 0x61, 0xCC, 0x8A, 0xC9, 0x83, 0x61, 0xCC,\n\t0xA3, 0xB5, 0x83, 0x63, 0xCC, 0xA7, 0xA5, 0x83,\n\t// Bytes 4740 - 477f\n\t0x65, 0xCC, 0x82, 0xC9, 0x83, 0x65, 0xCC, 0x84,\n\t0xC9, 0x83, 0x65, 0xCC, 0xA3, 0xB5, 0x83, 0x65,\n\t0xCC, 0xA7, 0xA5, 0x83, 0x69, 0xCC, 0x88, 0xC9,\n\t0x83, 0x6C, 0xCC, 0xA3, 0xB5, 0x83, 0x6F, 0xCC,\n\t0x82, 0xC9, 0x83, 0x6F, 0xCC, 0x83, 0xC9, 0x83,\n\t0x6F, 0xCC, 0x84, 0xC9, 0x83, 0x6F, 0xCC, 0x87,\n\t0xC9, 0x83, 0x6F, 0xCC, 0x88, 0xC9, 0x83, 0x6F,\n\t0xCC, 0x9B, 0xAD, 0x83, 0x6F, 0xCC, 0xA3, 0xB5,\n\t// Bytes 4780 - 47bf\n\t0x83, 0x6F, 0xCC, 0xA8, 0xA5, 0x83, 0x72, 0xCC,\n\t0xA3, 0xB5, 0x83, 0x73, 0xCC, 0x81, 0xC9, 0x83,\n\t0x73, 0xCC, 0x8C, 0xC9, 0x83, 0x73, 0xCC, 0xA3,\n\t0xB5, 0x83, 0x75, 0xCC, 0x83, 0xC9, 0x83, 0x75,\n\t0xCC, 0x84, 0xC9, 0x83, 0x75, 0xCC, 0x88, 0xC9,\n\t0x83, 0x75, 0xCC, 0x9B, 0xAD, 0x84, 0xCE, 0x91,\n\t0xCC, 0x93, 0xC9, 0x84, 0xCE, 0x91, 0xCC, 0x94,\n\t0xC9, 0x84, 0xCE, 0x95, 0xCC, 0x93, 0xC9, 0x84,\n\t// Bytes 47c0 - 47ff\n\t0xCE, 0x95, 0xCC, 0x94, 0xC9, 0x84, 0xCE, 0x97,\n\t0xCC, 0x93, 0xC9, 0x84, 0xCE, 0x97, 0xCC, 0x94,\n\t0xC9, 0x84, 0xCE, 0x99, 0xCC, 0x93, 0xC9, 0x84,\n\t0xCE, 0x99, 0xCC, 0x94, 0xC9, 0x84, 0xCE, 0x9F,\n\t0xCC, 0x93, 0xC9, 0x84, 0xCE, 0x9F, 0xCC, 0x94,\n\t0xC9, 0x84, 0xCE, 0xA5, 0xCC, 0x94, 0xC9, 0x84,\n\t0xCE, 0xA9, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xA9,\n\t0xCC, 0x94, 0xC9, 0x84, 0xCE, 0xB1, 0xCC, 0x80,\n\t// Bytes 4800 - 483f\n\t0xC9, 0x84, 0xCE, 0xB1, 0xCC, 0x81, 0xC9, 0x84,\n\t0xCE, 0xB1, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB1,\n\t0xCC, 0x94, 0xC9, 0x84, 0xCE, 0xB1, 0xCD, 0x82,\n\t0xC9, 0x84, 0xCE, 0xB5, 0xCC, 0x93, 0xC9, 0x84,\n\t0xCE, 0xB5, 0xCC, 0x94, 0xC9, 0x84, 0xCE, 0xB7,\n\t0xCC, 0x80, 0xC9, 0x84, 0xCE, 0xB7, 0xCC, 0x81,\n\t0xC9, 0x84, 0xCE, 0xB7, 0xCC, 0x93, 0xC9, 0x84,\n\t0xCE, 0xB7, 0xCC, 0x94, 0xC9, 0x84, 0xCE, 0xB7,\n\t// Bytes 4840 - 487f\n\t0xCD, 0x82, 0xC9, 0x84, 0xCE, 0xB9, 0xCC, 0x88,\n\t0xC9, 0x84, 0xCE, 0xB9, 0xCC, 0x93, 0xC9, 0x84,\n\t0xCE, 0xB9, 0xCC, 0x94, 0xC9, 0x84, 0xCE, 0xBF,\n\t0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xBF, 0xCC, 0x94,\n\t0xC9, 0x84, 0xCF, 0x85, 0xCC, 0x88, 0xC9, 0x84,\n\t0xCF, 0x85, 0xCC, 0x93, 0xC9, 0x84, 0xCF, 0x85,\n\t0xCC, 0x94, 0xC9, 0x84, 0xCF, 0x89, 0xCC, 0x80,\n\t0xC9, 0x84, 0xCF, 0x89, 0xCC, 0x81, 0xC9, 0x84,\n\t// Bytes 4880 - 48bf\n\t0xCF, 0x89, 0xCC, 0x93, 0xC9, 0x84, 0xCF, 0x89,\n\t0xCC, 0x94, 0xC9, 0x84, 0xCF, 0x89, 0xCD, 0x82,\n\t0xC9, 0x86, 0xCE, 0x91, 0xCC, 0x93, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCE, 0x91, 0xCC, 0x93, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCE, 0x91, 0xCC, 0x93, 0xCD, 0x82,\n\t0xCA, 0x86, 0xCE, 0x91, 0xCC, 0x94, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCE, 0x91, 0xCC, 0x94, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCE, 0x91, 0xCC, 0x94, 0xCD, 0x82,\n\t// Bytes 48c0 - 48ff\n\t0xCA, 0x86, 0xCE, 0x97, 0xCC, 0x93, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCE, 0x97, 0xCC, 0x93, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCE, 0x97, 0xCC, 0x93, 0xCD, 0x82,\n\t0xCA, 0x86, 0xCE, 0x97, 0xCC, 0x94, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCE, 0x97, 0xCC, 0x94, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCE, 0x97, 0xCC, 0x94, 0xCD, 0x82,\n\t0xCA, 0x86, 0xCE, 0xA9, 0xCC, 0x93, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCE, 0xA9, 0xCC, 0x93, 0xCC, 0x81,\n\t// Bytes 4900 - 493f\n\t0xCA, 0x86, 0xCE, 0xA9, 0xCC, 0x93, 0xCD, 0x82,\n\t0xCA, 0x86, 0xCE, 0xA9, 0xCC, 0x94, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCE, 0xA9, 0xCC, 0x94, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCE, 0xA9, 0xCC, 0x94, 0xCD, 0x82,\n\t0xCA, 0x86, 0xCE, 0xB1, 0xCC, 0x93, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCE, 0xB1, 0xCC, 0x93, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCE, 0xB1, 0xCC, 0x93, 0xCD, 0x82,\n\t0xCA, 0x86, 0xCE, 0xB1, 0xCC, 0x94, 0xCC, 0x80,\n\t// Bytes 4940 - 497f\n\t0xCA, 0x86, 0xCE, 0xB1, 0xCC, 0x94, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCE, 0xB1, 0xCC, 0x94, 0xCD, 0x82,\n\t0xCA, 0x86, 0xCE, 0xB7, 0xCC, 0x93, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCE, 0xB7, 0xCC, 0x93, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCE, 0xB7, 0xCC, 0x93, 0xCD, 0x82,\n\t0xCA, 0x86, 0xCE, 0xB7, 0xCC, 0x94, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCE, 0xB7, 0xCC, 0x94, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCE, 0xB7, 0xCC, 0x94, 0xCD, 0x82,\n\t// Bytes 4980 - 49bf\n\t0xCA, 0x86, 0xCF, 0x89, 0xCC, 0x93, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCF, 0x89, 0xCC, 0x93, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCF, 0x89, 0xCC, 0x93, 0xCD, 0x82,\n\t0xCA, 0x86, 0xCF, 0x89, 0xCC, 0x94, 0xCC, 0x80,\n\t0xCA, 0x86, 0xCF, 0x89, 0xCC, 0x94, 0xCC, 0x81,\n\t0xCA, 0x86, 0xCF, 0x89, 0xCC, 0x94, 0xCD, 0x82,\n\t0xCA, 0x42, 0xCC, 0x80, 0xC9, 0x32, 0x42, 0xCC,\n\t0x81, 0xC9, 0x32, 0x42, 0xCC, 0x93, 0xC9, 0x32,\n\t// Bytes 49c0 - 49ff\n\t0x43, 0xE1, 0x85, 0xA1, 0x01, 0x00, 0x43, 0xE1,\n\t0x85, 0xA2, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xA3,\n\t0x01, 0x00, 0x43, 0xE1, 0x85, 0xA4, 0x01, 0x00,\n\t0x43, 0xE1, 0x85, 0xA5, 0x01, 0x00, 0x43, 0xE1,\n\t0x85, 0xA6, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xA7,\n\t0x01, 0x00, 0x43, 0xE1, 0x85, 0xA8, 0x01, 0x00,\n\t0x43, 0xE1, 0x85, 0xA9, 0x01, 0x00, 0x43, 0xE1,\n\t0x85, 0xAA, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xAB,\n\t// Bytes 4a00 - 4a3f\n\t0x01, 0x00, 0x43, 0xE1, 0x85, 0xAC, 0x01, 0x00,\n\t0x43, 0xE1, 0x85, 0xAD, 0x01, 0x00, 0x43, 0xE1,\n\t0x85, 0xAE, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xAF,\n\t0x01, 0x00, 0x43, 0xE1, 0x85, 0xB0, 0x01, 0x00,\n\t0x43, 0xE1, 0x85, 0xB1, 0x01, 0x00, 0x43, 0xE1,\n\t0x85, 0xB2, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xB3,\n\t0x01, 0x00, 0x43, 0xE1, 0x85, 0xB4, 0x01, 0x00,\n\t0x43, 0xE1, 0x85, 0xB5, 0x01, 0x00, 0x43, 0xE1,\n\t// Bytes 4a40 - 4a7f\n\t0x86, 0xAA, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xAC,\n\t0x01, 0x00, 0x43, 0xE1, 0x86, 0xAD, 0x01, 0x00,\n\t0x43, 0xE1, 0x86, 0xB0, 0x01, 0x00, 0x43, 0xE1,\n\t0x86, 0xB1, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xB2,\n\t0x01, 0x00, 0x43, 0xE1, 0x86, 0xB3, 0x01, 0x00,\n\t0x43, 0xE1, 0x86, 0xB4, 0x01, 0x00, 0x43, 0xE1,\n\t0x86, 0xB5, 0x01, 0x00, 0x44, 0xCC, 0x88, 0xCC,\n\t0x81, 0xCA, 0x32, 0x43, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4a80 - 4abf\n\t0x03, 0x43, 0xE3, 0x82, 0x9A, 0x0D, 0x03, 0x46,\n\t0xE0, 0xBD, 0xB1, 0xE0, 0xBD, 0xB2, 0x9E, 0x26,\n\t0x46, 0xE0, 0xBD, 0xB1, 0xE0, 0xBD, 0xB4, 0xA2,\n\t0x26, 0x46, 0xE0, 0xBD, 0xB1, 0xE0, 0xBE, 0x80,\n\t0x9E, 0x26, 0x00, 0x01,\n}\n\n// lookup returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfcTrie) lookup(s []byte) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfcTrie) lookupUnsafe(s []byte) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfcValues[c0]\n\t}\n\ti := nfcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// lookupString returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfcTrie) lookupString(s string) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfcTrie) lookupStringUnsafe(s string) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfcValues[c0]\n\t}\n\ti := nfcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// nfcTrie. Total size: 10610 bytes (10.36 KiB). Checksum: 95e8869a9f81e5e6.\ntype nfcTrie struct{}\n\nfunc newNfcTrie(i int) *nfcTrie {\n\treturn &nfcTrie{}\n}\n\n// lookupValue determines the type of block n and looks up the value for b.\nfunc (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {\n\tswitch {\n\tcase n < 46:\n\t\treturn uint16(nfcValues[n<<6+uint32(b)])\n\tdefault:\n\t\tn -= 46\n\t\treturn uint16(nfcSparse.lookup(n, b))\n\t}\n}\n\n// nfcValues: 48 blocks, 3072 entries, 6144 bytes\n// The third block is the zero block.\nvar nfcValues = [3072]uint16{\n\t// Block 0x0, offset 0x0\n\t0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,\n\t// Block 0x1, offset 0x40\n\t0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,\n\t0x46: 0xa000, 0x47: 0xa000, 0x48: 0xa000, 0x49: 0xa000, 0x4a: 0xa000, 0x4b: 0xa000,\n\t0x4c: 0xa000, 0x4d: 0xa000, 0x4e: 0xa000, 0x4f: 0xa000, 0x50: 0xa000,\n\t0x52: 0xa000, 0x53: 0xa000, 0x54: 0xa000, 0x55: 0xa000, 0x56: 0xa000, 0x57: 0xa000,\n\t0x58: 0xa000, 0x59: 0xa000, 0x5a: 0xa000,\n\t0x61: 0xa000, 0x62: 0xa000, 0x63: 0xa000,\n\t0x64: 0xa000, 0x65: 0xa000, 0x66: 0xa000, 0x67: 0xa000, 0x68: 0xa000, 0x69: 0xa000,\n\t0x6a: 0xa000, 0x6b: 0xa000, 0x6c: 0xa000, 0x6d: 0xa000, 0x6e: 0xa000, 0x6f: 0xa000,\n\t0x70: 0xa000, 0x72: 0xa000, 0x73: 0xa000, 0x74: 0xa000, 0x75: 0xa000,\n\t0x76: 0xa000, 0x77: 0xa000, 0x78: 0xa000, 0x79: 0xa000, 0x7a: 0xa000,\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc0: 0x2f72, 0xc1: 0x2f77, 0xc2: 0x468b, 0xc3: 0x2f7c, 0xc4: 0x469a, 0xc5: 0x469f,\n\t0xc6: 0xa000, 0xc7: 0x46a9, 0xc8: 0x2fe5, 0xc9: 0x2fea, 0xca: 0x46ae, 0xcb: 0x2ffe,\n\t0xcc: 0x3071, 0xcd: 0x3076, 0xce: 0x307b, 0xcf: 0x46c2, 0xd1: 0x3107,\n\t0xd2: 0x312a, 0xd3: 0x312f, 0xd4: 0x46cc, 0xd5: 0x46d1, 0xd6: 0x46e0,\n\t0xd8: 0xa000, 0xd9: 0x31b6, 0xda: 0x31bb, 0xdb: 0x31c0, 0xdc: 0x4712, 0xdd: 0x3238,\n\t0xe0: 0x327e, 0xe1: 0x3283, 0xe2: 0x471c, 0xe3: 0x3288,\n\t0xe4: 0x472b, 0xe5: 0x4730, 0xe6: 0xa000, 0xe7: 0x473a, 0xe8: 0x32f1, 0xe9: 0x32f6,\n\t0xea: 0x473f, 0xeb: 0x330a, 0xec: 0x3382, 0xed: 0x3387, 0xee: 0x338c, 0xef: 0x4753,\n\t0xf1: 0x3418, 0xf2: 0x343b, 0xf3: 0x3440, 0xf4: 0x475d, 0xf5: 0x4762,\n\t0xf6: 0x4771, 0xf8: 0xa000, 0xf9: 0x34cc, 0xfa: 0x34d1, 0xfb: 0x34d6,\n\t0xfc: 0x47a3, 0xfd: 0x3553, 0xff: 0x356c,\n\t// Block 0x4, offset 0x100\n\t0x100: 0x2f81, 0x101: 0x328d, 0x102: 0x4690, 0x103: 0x4721, 0x104: 0x2f9f, 0x105: 0x32ab,\n\t0x106: 0x2fb3, 0x107: 0x32bf, 0x108: 0x2fb8, 0x109: 0x32c4, 0x10a: 0x2fbd, 0x10b: 0x32c9,\n\t0x10c: 0x2fc2, 0x10d: 0x32ce, 0x10e: 0x2fcc, 0x10f: 0x32d8,\n\t0x112: 0x46b3, 0x113: 0x4744, 0x114: 0x2ff4, 0x115: 0x3300, 0x116: 0x2ff9, 0x117: 0x3305,\n\t0x118: 0x3017, 0x119: 0x3323, 0x11a: 0x3008, 0x11b: 0x3314, 0x11c: 0x3030, 0x11d: 0x333c,\n\t0x11e: 0x303a, 0x11f: 0x3346, 0x120: 0x303f, 0x121: 0x334b, 0x122: 0x3049, 0x123: 0x3355,\n\t0x124: 0x304e, 0x125: 0x335a, 0x128: 0x3080, 0x129: 0x3391,\n\t0x12a: 0x3085, 0x12b: 0x3396, 0x12c: 0x308a, 0x12d: 0x339b, 0x12e: 0x30ad, 0x12f: 0x33b9,\n\t0x130: 0x308f, 0x134: 0x30b7, 0x135: 0x33c3,\n\t0x136: 0x30cb, 0x137: 0x33dc, 0x139: 0x30d5, 0x13a: 0x33e6, 0x13b: 0x30df,\n\t0x13c: 0x33f0, 0x13d: 0x30da, 0x13e: 0x33eb,\n\t// Block 0x5, offset 0x140\n\t0x143: 0x3102, 0x144: 0x3413, 0x145: 0x311b,\n\t0x146: 0x342c, 0x147: 0x3111, 0x148: 0x3422,\n\t0x14c: 0x46d6, 0x14d: 0x4767, 0x14e: 0x3134, 0x14f: 0x3445, 0x150: 0x313e, 0x151: 0x344f,\n\t0x154: 0x315c, 0x155: 0x346d, 0x156: 0x3175, 0x157: 0x3486,\n\t0x158: 0x3166, 0x159: 0x3477, 0x15a: 0x46f9, 0x15b: 0x478a, 0x15c: 0x317f, 0x15d: 0x3490,\n\t0x15e: 0x318e, 0x15f: 0x349f, 0x160: 0x46fe, 0x161: 0x478f, 0x162: 0x31a7, 0x163: 0x34bd,\n\t0x164: 0x3198, 0x165: 0x34ae, 0x168: 0x4708, 0x169: 0x4799,\n\t0x16a: 0x470d, 0x16b: 0x479e, 0x16c: 0x31c5, 0x16d: 0x34db, 0x16e: 0x31cf, 0x16f: 0x34e5,\n\t0x170: 0x31d4, 0x171: 0x34ea, 0x172: 0x31f2, 0x173: 0x3508, 0x174: 0x3215, 0x175: 0x352b,\n\t0x176: 0x323d, 0x177: 0x3558, 0x178: 0x3251, 0x179: 0x3260, 0x17a: 0x3580, 0x17b: 0x326a,\n\t0x17c: 0x358a, 0x17d: 0x326f, 0x17e: 0x358f, 0x17f: 0xa000,\n\t// Block 0x6, offset 0x180\n\t0x184: 0x8100, 0x185: 0x8100,\n\t0x186: 0x8100,\n\t0x18d: 0x2f8b, 0x18e: 0x3297, 0x18f: 0x3099, 0x190: 0x33a5, 0x191: 0x3143,\n\t0x192: 0x3454, 0x193: 0x31d9, 0x194: 0x34ef, 0x195: 0x39d2, 0x196: 0x3b61, 0x197: 0x39cb,\n\t0x198: 0x3b5a, 0x199: 0x39d9, 0x19a: 0x3b68, 0x19b: 0x39c4, 0x19c: 0x3b53,\n\t0x19e: 0x38b3, 0x19f: 0x3a42, 0x1a0: 0x38ac, 0x1a1: 0x3a3b, 0x1a2: 0x35b6, 0x1a3: 0x35c8,\n\t0x1a6: 0x3044, 0x1a7: 0x3350, 0x1a8: 0x30c1, 0x1a9: 0x33d2,\n\t0x1aa: 0x46ef, 0x1ab: 0x4780, 0x1ac: 0x3993, 0x1ad: 0x3b22, 0x1ae: 0x35da, 0x1af: 0x35e0,\n\t0x1b0: 0x33c8, 0x1b4: 0x302b, 0x1b5: 0x3337,\n\t0x1b8: 0x30fd, 0x1b9: 0x340e, 0x1ba: 0x38ba, 0x1bb: 0x3a49,\n\t0x1bc: 0x35b0, 0x1bd: 0x35c2, 0x1be: 0x35bc, 0x1bf: 0x35ce,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x2f90, 0x1c1: 0x329c, 0x1c2: 0x2f95, 0x1c3: 0x32a1, 0x1c4: 0x300d, 0x1c5: 0x3319,\n\t0x1c6: 0x3012, 0x1c7: 0x331e, 0x1c8: 0x309e, 0x1c9: 0x33aa, 0x1ca: 0x30a3, 0x1cb: 0x33af,\n\t0x1cc: 0x3148, 0x1cd: 0x3459, 0x1ce: 0x314d, 0x1cf: 0x345e, 0x1d0: 0x316b, 0x1d1: 0x347c,\n\t0x1d2: 0x3170, 0x1d3: 0x3481, 0x1d4: 0x31de, 0x1d5: 0x34f4, 0x1d6: 0x31e3, 0x1d7: 0x34f9,\n\t0x1d8: 0x3189, 0x1d9: 0x349a, 0x1da: 0x31a2, 0x1db: 0x34b8,\n\t0x1de: 0x305d, 0x1df: 0x3369,\n\t0x1e6: 0x4695, 0x1e7: 0x4726, 0x1e8: 0x46bd, 0x1e9: 0x474e,\n\t0x1ea: 0x3962, 0x1eb: 0x3af1, 0x1ec: 0x393f, 0x1ed: 0x3ace, 0x1ee: 0x46db, 0x1ef: 0x476c,\n\t0x1f0: 0x395b, 0x1f1: 0x3aea, 0x1f2: 0x3247, 0x1f3: 0x3562,\n\t// Block 0x8, offset 0x200\n\t0x200: 0x9932, 0x201: 0x9932, 0x202: 0x9932, 0x203: 0x9932, 0x204: 0x9932, 0x205: 0x8132,\n\t0x206: 0x9932, 0x207: 0x9932, 0x208: 0x9932, 0x209: 0x9932, 0x20a: 0x9932, 0x20b: 0x9932,\n\t0x20c: 0x9932, 0x20d: 0x8132, 0x20e: 0x8132, 0x20f: 0x9932, 0x210: 0x8132, 0x211: 0x9932,\n\t0x212: 0x8132, 0x213: 0x9932, 0x214: 0x9932, 0x215: 0x8133, 0x216: 0x812d, 0x217: 0x812d,\n\t0x218: 0x812d, 0x219: 0x812d, 0x21a: 0x8133, 0x21b: 0x992b, 0x21c: 0x812d, 0x21d: 0x812d,\n\t0x21e: 0x812d, 0x21f: 0x812d, 0x220: 0x812d, 0x221: 0x8129, 0x222: 0x8129, 0x223: 0x992d,\n\t0x224: 0x992d, 0x225: 0x992d, 0x226: 0x992d, 0x227: 0x9929, 0x228: 0x9929, 0x229: 0x812d,\n\t0x22a: 0x812d, 0x22b: 0x812d, 0x22c: 0x812d, 0x22d: 0x992d, 0x22e: 0x992d, 0x22f: 0x812d,\n\t0x230: 0x992d, 0x231: 0x992d, 0x232: 0x812d, 0x233: 0x812d, 0x234: 0x8101, 0x235: 0x8101,\n\t0x236: 0x8101, 0x237: 0x8101, 0x238: 0x9901, 0x239: 0x812d, 0x23a: 0x812d, 0x23b: 0x812d,\n\t0x23c: 0x812d, 0x23d: 0x8132, 0x23e: 0x8132, 0x23f: 0x8132,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x49b1, 0x241: 0x49b6, 0x242: 0x9932, 0x243: 0x49bb, 0x244: 0x4a74, 0x245: 0x9936,\n\t0x246: 0x8132, 0x247: 0x812d, 0x248: 0x812d, 0x249: 0x812d, 0x24a: 0x8132, 0x24b: 0x8132,\n\t0x24c: 0x8132, 0x24d: 0x812d, 0x24e: 0x812d, 0x250: 0x8132, 0x251: 0x8132,\n\t0x252: 0x8132, 0x253: 0x812d, 0x254: 0x812d, 0x255: 0x812d, 0x256: 0x812d, 0x257: 0x8132,\n\t0x258: 0x8133, 0x259: 0x812d, 0x25a: 0x812d, 0x25b: 0x8132, 0x25c: 0x8134, 0x25d: 0x8135,\n\t0x25e: 0x8135, 0x25f: 0x8134, 0x260: 0x8135, 0x261: 0x8135, 0x262: 0x8134, 0x263: 0x8132,\n\t0x264: 0x8132, 0x265: 0x8132, 0x266: 0x8132, 0x267: 0x8132, 0x268: 0x8132, 0x269: 0x8132,\n\t0x26a: 0x8132, 0x26b: 0x8132, 0x26c: 0x8132, 0x26d: 0x8132, 0x26e: 0x8132, 0x26f: 0x8132,\n\t0x274: 0x0170,\n\t0x27a: 0x8100,\n\t0x27e: 0x0037,\n\t// Block 0xa, offset 0x280\n\t0x284: 0x8100, 0x285: 0x35a4,\n\t0x286: 0x35ec, 0x287: 0x00ce, 0x288: 0x360a, 0x289: 0x3616, 0x28a: 0x3628,\n\t0x28c: 0x3646, 0x28e: 0x3658, 0x28f: 0x3676, 0x290: 0x3e0b, 0x291: 0xa000,\n\t0x295: 0xa000, 0x297: 0xa000,\n\t0x299: 0xa000,\n\t0x29f: 0xa000, 0x2a1: 0xa000,\n\t0x2a5: 0xa000, 0x2a9: 0xa000,\n\t0x2aa: 0x363a, 0x2ab: 0x366a, 0x2ac: 0x4801, 0x2ad: 0x369a, 0x2ae: 0x482b, 0x2af: 0x36ac,\n\t0x2b0: 0x3e73, 0x2b1: 0xa000, 0x2b5: 0xa000,\n\t0x2b7: 0xa000, 0x2b9: 0xa000,\n\t0x2bf: 0xa000,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0x3724, 0x2c1: 0x3730, 0x2c3: 0x371e,\n\t0x2c6: 0xa000, 0x2c7: 0x370c,\n\t0x2cc: 0x3760, 0x2cd: 0x3748, 0x2ce: 0x3772, 0x2d0: 0xa000,\n\t0x2d3: 0xa000, 0x2d5: 0xa000, 0x2d6: 0xa000, 0x2d7: 0xa000,\n\t0x2d8: 0xa000, 0x2d9: 0x3754, 0x2da: 0xa000,\n\t0x2de: 0xa000, 0x2e3: 0xa000,\n\t0x2e7: 0xa000,\n\t0x2eb: 0xa000, 0x2ed: 0xa000,\n\t0x2f0: 0xa000, 0x2f3: 0xa000, 0x2f5: 0xa000,\n\t0x2f6: 0xa000, 0x2f7: 0xa000, 0x2f8: 0xa000, 0x2f9: 0x37d8, 0x2fa: 0xa000,\n\t0x2fe: 0xa000,\n\t// Block 0xc, offset 0x300\n\t0x301: 0x3736, 0x302: 0x37ba,\n\t0x310: 0x3712, 0x311: 0x3796,\n\t0x312: 0x3718, 0x313: 0x379c, 0x316: 0x372a, 0x317: 0x37ae,\n\t0x318: 0xa000, 0x319: 0xa000, 0x31a: 0x382c, 0x31b: 0x3832, 0x31c: 0x373c, 0x31d: 0x37c0,\n\t0x31e: 0x3742, 0x31f: 0x37c6, 0x322: 0x374e, 0x323: 0x37d2,\n\t0x324: 0x375a, 0x325: 0x37de, 0x326: 0x3766, 0x327: 0x37ea, 0x328: 0xa000, 0x329: 0xa000,\n\t0x32a: 0x3838, 0x32b: 0x383e, 0x32c: 0x3790, 0x32d: 0x3814, 0x32e: 0x376c, 0x32f: 0x37f0,\n\t0x330: 0x3778, 0x331: 0x37fc, 0x332: 0x377e, 0x333: 0x3802, 0x334: 0x3784, 0x335: 0x3808,\n\t0x338: 0x378a, 0x339: 0x380e,\n\t// Block 0xd, offset 0x340\n\t0x351: 0x812d,\n\t0x352: 0x8132, 0x353: 0x8132, 0x354: 0x8132, 0x355: 0x8132, 0x356: 0x812d, 0x357: 0x8132,\n\t0x358: 0x8132, 0x359: 0x8132, 0x35a: 0x812e, 0x35b: 0x812d, 0x35c: 0x8132, 0x35d: 0x8132,\n\t0x35e: 0x8132, 0x35f: 0x8132, 0x360: 0x8132, 0x361: 0x8132, 0x362: 0x812d, 0x363: 0x812d,\n\t0x364: 0x812d, 0x365: 0x812d, 0x366: 0x812d, 0x367: 0x812d, 0x368: 0x8132, 0x369: 0x8132,\n\t0x36a: 0x812d, 0x36b: 0x8132, 0x36c: 0x8132, 0x36d: 0x812e, 0x36e: 0x8131, 0x36f: 0x8132,\n\t0x370: 0x8105, 0x371: 0x8106, 0x372: 0x8107, 0x373: 0x8108, 0x374: 0x8109, 0x375: 0x810a,\n\t0x376: 0x810b, 0x377: 0x810c, 0x378: 0x810d, 0x379: 0x810e, 0x37a: 0x810e, 0x37b: 0x810f,\n\t0x37c: 0x8110, 0x37d: 0x8111, 0x37f: 0x8112,\n\t// Block 0xe, offset 0x380\n\t0x388: 0xa000, 0x38a: 0xa000, 0x38b: 0x8116,\n\t0x38c: 0x8117, 0x38d: 0x8118, 0x38e: 0x8119, 0x38f: 0x811a, 0x390: 0x811b, 0x391: 0x811c,\n\t0x392: 0x811d, 0x393: 0x9932, 0x394: 0x9932, 0x395: 0x992d, 0x396: 0x812d, 0x397: 0x8132,\n\t0x398: 0x8132, 0x399: 0x8132, 0x39a: 0x8132, 0x39b: 0x8132, 0x39c: 0x812d, 0x39d: 0x8132,\n\t0x39e: 0x8132, 0x39f: 0x812d,\n\t0x3b0: 0x811e,\n\t// Block 0xf, offset 0x3c0\n\t0x3d3: 0x812d, 0x3d4: 0x8132, 0x3d5: 0x8132, 0x3d6: 0x8132, 0x3d7: 0x8132,\n\t0x3d8: 0x8132, 0x3d9: 0x8132, 0x3da: 0x8132, 0x3db: 0x8132, 0x3dc: 0x8132, 0x3dd: 0x8132,\n\t0x3de: 0x8132, 0x3df: 0x8132, 0x3e0: 0x8132, 0x3e1: 0x8132, 0x3e3: 0x812d,\n\t0x3e4: 0x8132, 0x3e5: 0x8132, 0x3e6: 0x812d, 0x3e7: 0x8132, 0x3e8: 0x8132, 0x3e9: 0x812d,\n\t0x3ea: 0x8132, 0x3eb: 0x8132, 0x3ec: 0x8132, 0x3ed: 0x812d, 0x3ee: 0x812d, 0x3ef: 0x812d,\n\t0x3f0: 0x8116, 0x3f1: 0x8117, 0x3f2: 0x8118, 0x3f3: 0x8132, 0x3f4: 0x8132, 0x3f5: 0x8132,\n\t0x3f6: 0x812d, 0x3f7: 0x8132, 0x3f8: 0x8132, 0x3f9: 0x812d, 0x3fa: 0x812d, 0x3fb: 0x8132,\n\t0x3fc: 0x8132, 0x3fd: 0x8132, 0x3fe: 0x8132, 0x3ff: 0x8132,\n\t// Block 0x10, offset 0x400\n\t0x405: 0xa000,\n\t0x406: 0x2d29, 0x407: 0xa000, 0x408: 0x2d31, 0x409: 0xa000, 0x40a: 0x2d39, 0x40b: 0xa000,\n\t0x40c: 0x2d41, 0x40d: 0xa000, 0x40e: 0x2d49, 0x411: 0xa000,\n\t0x412: 0x2d51,\n\t0x434: 0x8102, 0x435: 0x9900,\n\t0x43a: 0xa000, 0x43b: 0x2d59,\n\t0x43c: 0xa000, 0x43d: 0x2d61, 0x43e: 0xa000, 0x43f: 0xa000,\n\t// Block 0x11, offset 0x440\n\t0x440: 0x8132, 0x441: 0x8132, 0x442: 0x812d, 0x443: 0x8132, 0x444: 0x8132, 0x445: 0x8132,\n\t0x446: 0x8132, 0x447: 0x8132, 0x448: 0x8132, 0x449: 0x8132, 0x44a: 0x812d, 0x44b: 0x8132,\n\t0x44c: 0x8132, 0x44d: 0x8135, 0x44e: 0x812a, 0x44f: 0x812d, 0x450: 0x8129, 0x451: 0x8132,\n\t0x452: 0x8132, 0x453: 0x8132, 0x454: 0x8132, 0x455: 0x8132, 0x456: 0x8132, 0x457: 0x8132,\n\t0x458: 0x8132, 0x459: 0x8132, 0x45a: 0x8132, 0x45b: 0x8132, 0x45c: 0x8132, 0x45d: 0x8132,\n\t0x45e: 0x8132, 0x45f: 0x8132, 0x460: 0x8132, 0x461: 0x8132, 0x462: 0x8132, 0x463: 0x8132,\n\t0x464: 0x8132, 0x465: 0x8132, 0x466: 0x8132, 0x467: 0x8132, 0x468: 0x8132, 0x469: 0x8132,\n\t0x46a: 0x8132, 0x46b: 0x8132, 0x46c: 0x8132, 0x46d: 0x8132, 0x46e: 0x8132, 0x46f: 0x8132,\n\t0x470: 0x8132, 0x471: 0x8132, 0x472: 0x8132, 0x473: 0x8132, 0x474: 0x8132, 0x475: 0x8132,\n\t0x476: 0x8133, 0x477: 0x8131, 0x478: 0x8131, 0x479: 0x812d, 0x47b: 0x8132,\n\t0x47c: 0x8134, 0x47d: 0x812d, 0x47e: 0x8132, 0x47f: 0x812d,\n\t// Block 0x12, offset 0x480\n\t0x480: 0x2f9a, 0x481: 0x32a6, 0x482: 0x2fa4, 0x483: 0x32b0, 0x484: 0x2fa9, 0x485: 0x32b5,\n\t0x486: 0x2fae, 0x487: 0x32ba, 0x488: 0x38cf, 0x489: 0x3a5e, 0x48a: 0x2fc7, 0x48b: 0x32d3,\n\t0x48c: 0x2fd1, 0x48d: 0x32dd, 0x48e: 0x2fe0, 0x48f: 0x32ec, 0x490: 0x2fd6, 0x491: 0x32e2,\n\t0x492: 0x2fdb, 0x493: 0x32e7, 0x494: 0x38f2, 0x495: 0x3a81, 0x496: 0x38f9, 0x497: 0x3a88,\n\t0x498: 0x301c, 0x499: 0x3328, 0x49a: 0x3021, 0x49b: 0x332d, 0x49c: 0x3907, 0x49d: 0x3a96,\n\t0x49e: 0x3026, 0x49f: 0x3332, 0x4a0: 0x3035, 0x4a1: 0x3341, 0x4a2: 0x3053, 0x4a3: 0x335f,\n\t0x4a4: 0x3062, 0x4a5: 0x336e, 0x4a6: 0x3058, 0x4a7: 0x3364, 0x4a8: 0x3067, 0x4a9: 0x3373,\n\t0x4aa: 0x306c, 0x4ab: 0x3378, 0x4ac: 0x30b2, 0x4ad: 0x33be, 0x4ae: 0x390e, 0x4af: 0x3a9d,\n\t0x4b0: 0x30bc, 0x4b1: 0x33cd, 0x4b2: 0x30c6, 0x4b3: 0x33d7, 0x4b4: 0x30d0, 0x4b5: 0x33e1,\n\t0x4b6: 0x46c7, 0x4b7: 0x4758, 0x4b8: 0x3915, 0x4b9: 0x3aa4, 0x4ba: 0x30e9, 0x4bb: 0x33fa,\n\t0x4bc: 0x30e4, 0x4bd: 0x33f5, 0x4be: 0x30ee, 0x4bf: 0x33ff,\n\t// Block 0x13, offset 0x4c0\n\t0x4c0: 0x30f3, 0x4c1: 0x3404, 0x4c2: 0x30f8, 0x4c3: 0x3409, 0x4c4: 0x310c, 0x4c5: 0x341d,\n\t0x4c6: 0x3116, 0x4c7: 0x3427, 0x4c8: 0x3125, 0x4c9: 0x3436, 0x4ca: 0x3120, 0x4cb: 0x3431,\n\t0x4cc: 0x3938, 0x4cd: 0x3ac7, 0x4ce: 0x3946, 0x4cf: 0x3ad5, 0x4d0: 0x394d, 0x4d1: 0x3adc,\n\t0x4d2: 0x3954, 0x4d3: 0x3ae3, 0x4d4: 0x3152, 0x4d5: 0x3463, 0x4d6: 0x3157, 0x4d7: 0x3468,\n\t0x4d8: 0x3161, 0x4d9: 0x3472, 0x4da: 0x46f4, 0x4db: 0x4785, 0x4dc: 0x399a, 0x4dd: 0x3b29,\n\t0x4de: 0x317a, 0x4df: 0x348b, 0x4e0: 0x3184, 0x4e1: 0x3495, 0x4e2: 0x4703, 0x4e3: 0x4794,\n\t0x4e4: 0x39a1, 0x4e5: 0x3b30, 0x4e6: 0x39a8, 0x4e7: 0x3b37, 0x4e8: 0x39af, 0x4e9: 0x3b3e,\n\t0x4ea: 0x3193, 0x4eb: 0x34a4, 0x4ec: 0x319d, 0x4ed: 0x34b3, 0x4ee: 0x31b1, 0x4ef: 0x34c7,\n\t0x4f0: 0x31ac, 0x4f1: 0x34c2, 0x4f2: 0x31ed, 0x4f3: 0x3503, 0x4f4: 0x31fc, 0x4f5: 0x3512,\n\t0x4f6: 0x31f7, 0x4f7: 0x350d, 0x4f8: 0x39b6, 0x4f9: 0x3b45, 0x4fa: 0x39bd, 0x4fb: 0x3b4c,\n\t0x4fc: 0x3201, 0x4fd: 0x3517, 0x4fe: 0x3206, 0x4ff: 0x351c,\n\t// Block 0x14, offset 0x500\n\t0x500: 0x320b, 0x501: 0x3521, 0x502: 0x3210, 0x503: 0x3526, 0x504: 0x321f, 0x505: 0x3535,\n\t0x506: 0x321a, 0x507: 0x3530, 0x508: 0x3224, 0x509: 0x353f, 0x50a: 0x3229, 0x50b: 0x3544,\n\t0x50c: 0x322e, 0x50d: 0x3549, 0x50e: 0x324c, 0x50f: 0x3567, 0x510: 0x3265, 0x511: 0x3585,\n\t0x512: 0x3274, 0x513: 0x3594, 0x514: 0x3279, 0x515: 0x3599, 0x516: 0x337d, 0x517: 0x34a9,\n\t0x518: 0x353a, 0x519: 0x3576, 0x51b: 0x35d4,\n\t0x520: 0x46a4, 0x521: 0x4735, 0x522: 0x2f86, 0x523: 0x3292,\n\t0x524: 0x387b, 0x525: 0x3a0a, 0x526: 0x3874, 0x527: 0x3a03, 0x528: 0x3889, 0x529: 0x3a18,\n\t0x52a: 0x3882, 0x52b: 0x3a11, 0x52c: 0x38c1, 0x52d: 0x3a50, 0x52e: 0x3897, 0x52f: 0x3a26,\n\t0x530: 0x3890, 0x531: 0x3a1f, 0x532: 0x38a5, 0x533: 0x3a34, 0x534: 0x389e, 0x535: 0x3a2d,\n\t0x536: 0x38c8, 0x537: 0x3a57, 0x538: 0x46b8, 0x539: 0x4749, 0x53a: 0x3003, 0x53b: 0x330f,\n\t0x53c: 0x2fef, 0x53d: 0x32fb, 0x53e: 0x38dd, 0x53f: 0x3a6c,\n\t// Block 0x15, offset 0x540\n\t0x540: 0x38d6, 0x541: 0x3a65, 0x542: 0x38eb, 0x543: 0x3a7a, 0x544: 0x38e4, 0x545: 0x3a73,\n\t0x546: 0x3900, 0x547: 0x3a8f, 0x548: 0x3094, 0x549: 0x33a0, 0x54a: 0x30a8, 0x54b: 0x33b4,\n\t0x54c: 0x46ea, 0x54d: 0x477b, 0x54e: 0x3139, 0x54f: 0x344a, 0x550: 0x3923, 0x551: 0x3ab2,\n\t0x552: 0x391c, 0x553: 0x3aab, 0x554: 0x3931, 0x555: 0x3ac0, 0x556: 0x392a, 0x557: 0x3ab9,\n\t0x558: 0x398c, 0x559: 0x3b1b, 0x55a: 0x3970, 0x55b: 0x3aff, 0x55c: 0x3969, 0x55d: 0x3af8,\n\t0x55e: 0x397e, 0x55f: 0x3b0d, 0x560: 0x3977, 0x561: 0x3b06, 0x562: 0x3985, 0x563: 0x3b14,\n\t0x564: 0x31e8, 0x565: 0x34fe, 0x566: 0x31ca, 0x567: 0x34e0, 0x568: 0x39e7, 0x569: 0x3b76,\n\t0x56a: 0x39e0, 0x56b: 0x3b6f, 0x56c: 0x39f5, 0x56d: 0x3b84, 0x56e: 0x39ee, 0x56f: 0x3b7d,\n\t0x570: 0x39fc, 0x571: 0x3b8b, 0x572: 0x3233, 0x573: 0x354e, 0x574: 0x325b, 0x575: 0x357b,\n\t0x576: 0x3256, 0x577: 0x3571, 0x578: 0x3242, 0x579: 0x355d,\n\t// Block 0x16, offset 0x580\n\t0x580: 0x4807, 0x581: 0x480d, 0x582: 0x4921, 0x583: 0x4939, 0x584: 0x4929, 0x585: 0x4941,\n\t0x586: 0x4931, 0x587: 0x4949, 0x588: 0x47ad, 0x589: 0x47b3, 0x58a: 0x4891, 0x58b: 0x48a9,\n\t0x58c: 0x4899, 0x58d: 0x48b1, 0x58e: 0x48a1, 0x58f: 0x48b9, 0x590: 0x4819, 0x591: 0x481f,\n\t0x592: 0x3dbb, 0x593: 0x3dcb, 0x594: 0x3dc3, 0x595: 0x3dd3,\n\t0x598: 0x47b9, 0x599: 0x47bf, 0x59a: 0x3ceb, 0x59b: 0x3cfb, 0x59c: 0x3cf3, 0x59d: 0x3d03,\n\t0x5a0: 0x4831, 0x5a1: 0x4837, 0x5a2: 0x4951, 0x5a3: 0x4969,\n\t0x5a4: 0x4959, 0x5a5: 0x4971, 0x5a6: 0x4961, 0x5a7: 0x4979, 0x5a8: 0x47c5, 0x5a9: 0x47cb,\n\t0x5aa: 0x48c1, 0x5ab: 0x48d9, 0x5ac: 0x48c9, 0x5ad: 0x48e1, 0x5ae: 0x48d1, 0x5af: 0x48e9,\n\t0x5b0: 0x4849, 0x5b1: 0x484f, 0x5b2: 0x3e1b, 0x5b3: 0x3e33, 0x5b4: 0x3e23, 0x5b5: 0x3e3b,\n\t0x5b6: 0x3e2b, 0x5b7: 0x3e43, 0x5b8: 0x47d1, 0x5b9: 0x47d7, 0x5ba: 0x3d1b, 0x5bb: 0x3d33,\n\t0x5bc: 0x3d23, 0x5bd: 0x3d3b, 0x5be: 0x3d2b, 0x5bf: 0x3d43,\n\t// Block 0x17, offset 0x5c0\n\t0x5c0: 0x4855, 0x5c1: 0x485b, 0x5c2: 0x3e4b, 0x5c3: 0x3e5b, 0x5c4: 0x3e53, 0x5c5: 0x3e63,\n\t0x5c8: 0x47dd, 0x5c9: 0x47e3, 0x5ca: 0x3d4b, 0x5cb: 0x3d5b,\n\t0x5cc: 0x3d53, 0x5cd: 0x3d63, 0x5d0: 0x4867, 0x5d1: 0x486d,\n\t0x5d2: 0x3e83, 0x5d3: 0x3e9b, 0x5d4: 0x3e8b, 0x5d5: 0x3ea3, 0x5d6: 0x3e93, 0x5d7: 0x3eab,\n\t0x5d9: 0x47e9, 0x5db: 0x3d6b, 0x5dd: 0x3d73,\n\t0x5df: 0x3d7b, 0x5e0: 0x487f, 0x5e1: 0x4885, 0x5e2: 0x4981, 0x5e3: 0x4999,\n\t0x5e4: 0x4989, 0x5e5: 0x49a1, 0x5e6: 0x4991, 0x5e7: 0x49a9, 0x5e8: 0x47ef, 0x5e9: 0x47f5,\n\t0x5ea: 0x48f1, 0x5eb: 0x4909, 0x5ec: 0x48f9, 0x5ed: 0x4911, 0x5ee: 0x4901, 0x5ef: 0x4919,\n\t0x5f0: 0x47fb, 0x5f1: 0x4321, 0x5f2: 0x3694, 0x5f3: 0x4327, 0x5f4: 0x4825, 0x5f5: 0x432d,\n\t0x5f6: 0x36a6, 0x5f7: 0x4333, 0x5f8: 0x36c4, 0x5f9: 0x4339, 0x5fa: 0x36dc, 0x5fb: 0x433f,\n\t0x5fc: 0x4873, 0x5fd: 0x4345,\n\t// Block 0x18, offset 0x600\n\t0x600: 0x3da3, 0x601: 0x3dab, 0x602: 0x4187, 0x603: 0x41a5, 0x604: 0x4191, 0x605: 0x41af,\n\t0x606: 0x419b, 0x607: 0x41b9, 0x608: 0x3cdb, 0x609: 0x3ce3, 0x60a: 0x40d3, 0x60b: 0x40f1,\n\t0x60c: 0x40dd, 0x60d: 0x40fb, 0x60e: 0x40e7, 0x60f: 0x4105, 0x610: 0x3deb, 0x611: 0x3df3,\n\t0x612: 0x41c3, 0x613: 0x41e1, 0x614: 0x41cd, 0x615: 0x41eb, 0x616: 0x41d7, 0x617: 0x41f5,\n\t0x618: 0x3d0b, 0x619: 0x3d13, 0x61a: 0x410f, 0x61b: 0x412d, 0x61c: 0x4119, 0x61d: 0x4137,\n\t0x61e: 0x4123, 0x61f: 0x4141, 0x620: 0x3ec3, 0x621: 0x3ecb, 0x622: 0x41ff, 0x623: 0x421d,\n\t0x624: 0x4209, 0x625: 0x4227, 0x626: 0x4213, 0x627: 0x4231, 0x628: 0x3d83, 0x629: 0x3d8b,\n\t0x62a: 0x414b, 0x62b: 0x4169, 0x62c: 0x4155, 0x62d: 0x4173, 0x62e: 0x415f, 0x62f: 0x417d,\n\t0x630: 0x3688, 0x631: 0x3682, 0x632: 0x3d93, 0x633: 0x368e, 0x634: 0x3d9b,\n\t0x636: 0x4813, 0x637: 0x3db3, 0x638: 0x35f8, 0x639: 0x35f2, 0x63a: 0x35e6, 0x63b: 0x42f1,\n\t0x63c: 0x35fe, 0x63d: 0x8100, 0x63e: 0x01d3, 0x63f: 0xa100,\n\t// Block 0x19, offset 0x640\n\t0x640: 0x8100, 0x641: 0x35aa, 0x642: 0x3ddb, 0x643: 0x36a0, 0x644: 0x3de3,\n\t0x646: 0x483d, 0x647: 0x3dfb, 0x648: 0x3604, 0x649: 0x42f7, 0x64a: 0x3610, 0x64b: 0x42fd,\n\t0x64c: 0x361c, 0x64d: 0x3b92, 0x64e: 0x3b99, 0x64f: 0x3ba0, 0x650: 0x36b8, 0x651: 0x36b2,\n\t0x652: 0x3e03, 0x653: 0x44e7, 0x656: 0x36be, 0x657: 0x3e13,\n\t0x658: 0x3634, 0x659: 0x362e, 0x65a: 0x3622, 0x65b: 0x4303, 0x65d: 0x3ba7,\n\t0x65e: 0x3bae, 0x65f: 0x3bb5, 0x660: 0x36ee, 0x661: 0x36e8, 0x662: 0x3e6b, 0x663: 0x44ef,\n\t0x664: 0x36d0, 0x665: 0x36d6, 0x666: 0x36f4, 0x667: 0x3e7b, 0x668: 0x3664, 0x669: 0x365e,\n\t0x66a: 0x3652, 0x66b: 0x430f, 0x66c: 0x364c, 0x66d: 0x359e, 0x66e: 0x42eb, 0x66f: 0x0081,\n\t0x672: 0x3eb3, 0x673: 0x36fa, 0x674: 0x3ebb,\n\t0x676: 0x488b, 0x677: 0x3ed3, 0x678: 0x3640, 0x679: 0x4309, 0x67a: 0x3670, 0x67b: 0x431b,\n\t0x67c: 0x367c, 0x67d: 0x4259, 0x67e: 0xa100,\n\t// Block 0x1a, offset 0x680\n\t0x681: 0x3c09, 0x683: 0xa000, 0x684: 0x3c10, 0x685: 0xa000,\n\t0x687: 0x3c17, 0x688: 0xa000, 0x689: 0x3c1e,\n\t0x68d: 0xa000,\n\t0x6a0: 0x2f68, 0x6a1: 0xa000, 0x6a2: 0x3c2c,\n\t0x6a4: 0xa000, 0x6a5: 0xa000,\n\t0x6ad: 0x3c25, 0x6ae: 0x2f63, 0x6af: 0x2f6d,\n\t0x6b0: 0x3c33, 0x6b1: 0x3c3a, 0x6b2: 0xa000, 0x6b3: 0xa000, 0x6b4: 0x3c41, 0x6b5: 0x3c48,\n\t0x6b6: 0xa000, 0x6b7: 0xa000, 0x6b8: 0x3c4f, 0x6b9: 0x3c56, 0x6ba: 0xa000, 0x6bb: 0xa000,\n\t0x6bc: 0xa000, 0x6bd: 0xa000,\n\t// Block 0x1b, offset 0x6c0\n\t0x6c0: 0x3c5d, 0x6c1: 0x3c64, 0x6c2: 0xa000, 0x6c3: 0xa000, 0x6c4: 0x3c79, 0x6c5: 0x3c80,\n\t0x6c6: 0xa000, 0x6c7: 0xa000, 0x6c8: 0x3c87, 0x6c9: 0x3c8e,\n\t0x6d1: 0xa000,\n\t0x6d2: 0xa000,\n\t0x6e2: 0xa000,\n\t0x6e8: 0xa000, 0x6e9: 0xa000,\n\t0x6eb: 0xa000, 0x6ec: 0x3ca3, 0x6ed: 0x3caa, 0x6ee: 0x3cb1, 0x6ef: 0x3cb8,\n\t0x6f2: 0xa000, 0x6f3: 0xa000, 0x6f4: 0xa000, 0x6f5: 0xa000,\n\t// Block 0x1c, offset 0x700\n\t0x706: 0xa000, 0x70b: 0xa000,\n\t0x70c: 0x3f0b, 0x70d: 0xa000, 0x70e: 0x3f13, 0x70f: 0xa000, 0x710: 0x3f1b, 0x711: 0xa000,\n\t0x712: 0x3f23, 0x713: 0xa000, 0x714: 0x3f2b, 0x715: 0xa000, 0x716: 0x3f33, 0x717: 0xa000,\n\t0x718: 0x3f3b, 0x719: 0xa000, 0x71a: 0x3f43, 0x71b: 0xa000, 0x71c: 0x3f4b, 0x71d: 0xa000,\n\t0x71e: 0x3f53, 0x71f: 0xa000, 0x720: 0x3f5b, 0x721: 0xa000, 0x722: 0x3f63,\n\t0x724: 0xa000, 0x725: 0x3f6b, 0x726: 0xa000, 0x727: 0x3f73, 0x728: 0xa000, 0x729: 0x3f7b,\n\t0x72f: 0xa000,\n\t0x730: 0x3f83, 0x731: 0x3f8b, 0x732: 0xa000, 0x733: 0x3f93, 0x734: 0x3f9b, 0x735: 0xa000,\n\t0x736: 0x3fa3, 0x737: 0x3fab, 0x738: 0xa000, 0x739: 0x3fb3, 0x73a: 0x3fbb, 0x73b: 0xa000,\n\t0x73c: 0x3fc3, 0x73d: 0x3fcb,\n\t// Block 0x1d, offset 0x740\n\t0x754: 0x3f03,\n\t0x759: 0x9903, 0x75a: 0x9903, 0x75b: 0x8100, 0x75c: 0x8100, 0x75d: 0xa000,\n\t0x75e: 0x3fd3,\n\t0x766: 0xa000,\n\t0x76b: 0xa000, 0x76c: 0x3fe3, 0x76d: 0xa000, 0x76e: 0x3feb, 0x76f: 0xa000,\n\t0x770: 0x3ff3, 0x771: 0xa000, 0x772: 0x3ffb, 0x773: 0xa000, 0x774: 0x4003, 0x775: 0xa000,\n\t0x776: 0x400b, 0x777: 0xa000, 0x778: 0x4013, 0x779: 0xa000, 0x77a: 0x401b, 0x77b: 0xa000,\n\t0x77c: 0x4023, 0x77d: 0xa000, 0x77e: 0x402b, 0x77f: 0xa000,\n\t// Block 0x1e, offset 0x780\n\t0x780: 0x4033, 0x781: 0xa000, 0x782: 0x403b, 0x784: 0xa000, 0x785: 0x4043,\n\t0x786: 0xa000, 0x787: 0x404b, 0x788: 0xa000, 0x789: 0x4053,\n\t0x78f: 0xa000, 0x790: 0x405b, 0x791: 0x4063,\n\t0x792: 0xa000, 0x793: 0x406b, 0x794: 0x4073, 0x795: 0xa000, 0x796: 0x407b, 0x797: 0x4083,\n\t0x798: 0xa000, 0x799: 0x408b, 0x79a: 0x4093, 0x79b: 0xa000, 0x79c: 0x409b, 0x79d: 0x40a3,\n\t0x7af: 0xa000,\n\t0x7b0: 0xa000, 0x7b1: 0xa000, 0x7b2: 0xa000, 0x7b4: 0x3fdb,\n\t0x7b7: 0x40ab, 0x7b8: 0x40b3, 0x7b9: 0x40bb, 0x7ba: 0x40c3,\n\t0x7bd: 0xa000, 0x7be: 0x40cb,\n\t// Block 0x1f, offset 0x7c0\n\t0x7c0: 0x1377, 0x7c1: 0x0cfb, 0x7c2: 0x13d3, 0x7c3: 0x139f, 0x7c4: 0x0e57, 0x7c5: 0x06eb,\n\t0x7c6: 0x08df, 0x7c7: 0x162b, 0x7c8: 0x162b, 0x7c9: 0x0a0b, 0x7ca: 0x145f, 0x7cb: 0x0943,\n\t0x7cc: 0x0a07, 0x7cd: 0x0bef, 0x7ce: 0x0fcf, 0x7cf: 0x115f, 0x7d0: 0x1297, 0x7d1: 0x12d3,\n\t0x7d2: 0x1307, 0x7d3: 0x141b, 0x7d4: 0x0d73, 0x7d5: 0x0dff, 0x7d6: 0x0eab, 0x7d7: 0x0f43,\n\t0x7d8: 0x125f, 0x7d9: 0x1447, 0x7da: 0x1573, 0x7db: 0x070f, 0x7dc: 0x08b3, 0x7dd: 0x0d87,\n\t0x7de: 0x0ecf, 0x7df: 0x1293, 0x7e0: 0x15c3, 0x7e1: 0x0ab3, 0x7e2: 0x0e77, 0x7e3: 0x1283,\n\t0x7e4: 0x1317, 0x7e5: 0x0c23, 0x7e6: 0x11bb, 0x7e7: 0x12df, 0x7e8: 0x0b1f, 0x7e9: 0x0d0f,\n\t0x7ea: 0x0e17, 0x7eb: 0x0f1b, 0x7ec: 0x1427, 0x7ed: 0x074f, 0x7ee: 0x07e7, 0x7ef: 0x0853,\n\t0x7f0: 0x0c8b, 0x7f1: 0x0d7f, 0x7f2: 0x0ecb, 0x7f3: 0x0fef, 0x7f4: 0x1177, 0x7f5: 0x128b,\n\t0x7f6: 0x12a3, 0x7f7: 0x13c7, 0x7f8: 0x14ef, 0x7f9: 0x15a3, 0x7fa: 0x15bf, 0x7fb: 0x102b,\n\t0x7fc: 0x106b, 0x7fd: 0x1123, 0x7fe: 0x1243, 0x7ff: 0x147b,\n\t// Block 0x20, offset 0x800\n\t0x800: 0x15cb, 0x801: 0x134b, 0x802: 0x09c7, 0x803: 0x0b3b, 0x804: 0x10db, 0x805: 0x119b,\n\t0x806: 0x0eff, 0x807: 0x1033, 0x808: 0x1397, 0x809: 0x14e7, 0x80a: 0x09c3, 0x80b: 0x0a8f,\n\t0x80c: 0x0d77, 0x80d: 0x0e2b, 0x80e: 0x0e5f, 0x80f: 0x1113, 0x810: 0x113b, 0x811: 0x14a7,\n\t0x812: 0x084f, 0x813: 0x11a7, 0x814: 0x07f3, 0x815: 0x07ef, 0x816: 0x1097, 0x817: 0x1127,\n\t0x818: 0x125b, 0x819: 0x14af, 0x81a: 0x1367, 0x81b: 0x0c27, 0x81c: 0x0d73, 0x81d: 0x1357,\n\t0x81e: 0x06f7, 0x81f: 0x0a63, 0x820: 0x0b93, 0x821: 0x0f2f, 0x822: 0x0faf, 0x823: 0x0873,\n\t0x824: 0x103b, 0x825: 0x075f, 0x826: 0x0b77, 0x827: 0x06d7, 0x828: 0x0deb, 0x829: 0x0ca3,\n\t0x82a: 0x110f, 0x82b: 0x08c7, 0x82c: 0x09b3, 0x82d: 0x0ffb, 0x82e: 0x1263, 0x82f: 0x133b,\n\t0x830: 0x0db7, 0x831: 0x13f7, 0x832: 0x0de3, 0x833: 0x0c37, 0x834: 0x121b, 0x835: 0x0c57,\n\t0x836: 0x0fab, 0x837: 0x072b, 0x838: 0x07a7, 0x839: 0x07eb, 0x83a: 0x0d53, 0x83b: 0x10fb,\n\t0x83c: 0x11f3, 0x83d: 0x1347, 0x83e: 0x145b, 0x83f: 0x085b,\n\t// Block 0x21, offset 0x840\n\t0x840: 0x090f, 0x841: 0x0a17, 0x842: 0x0b2f, 0x843: 0x0cbf, 0x844: 0x0e7b, 0x845: 0x103f,\n\t0x846: 0x1497, 0x847: 0x157b, 0x848: 0x15cf, 0x849: 0x15e7, 0x84a: 0x0837, 0x84b: 0x0cf3,\n\t0x84c: 0x0da3, 0x84d: 0x13eb, 0x84e: 0x0afb, 0x84f: 0x0bd7, 0x850: 0x0bf3, 0x851: 0x0c83,\n\t0x852: 0x0e6b, 0x853: 0x0eb7, 0x854: 0x0f67, 0x855: 0x108b, 0x856: 0x112f, 0x857: 0x1193,\n\t0x858: 0x13db, 0x859: 0x126b, 0x85a: 0x1403, 0x85b: 0x147f, 0x85c: 0x080f, 0x85d: 0x083b,\n\t0x85e: 0x0923, 0x85f: 0x0ea7, 0x860: 0x12f3, 0x861: 0x133b, 0x862: 0x0b1b, 0x863: 0x0b8b,\n\t0x864: 0x0c4f, 0x865: 0x0daf, 0x866: 0x10d7, 0x867: 0x0f23, 0x868: 0x073b, 0x869: 0x097f,\n\t0x86a: 0x0a63, 0x86b: 0x0ac7, 0x86c: 0x0b97, 0x86d: 0x0f3f, 0x86e: 0x0f5b, 0x86f: 0x116b,\n\t0x870: 0x118b, 0x871: 0x1463, 0x872: 0x14e3, 0x873: 0x14f3, 0x874: 0x152f, 0x875: 0x0753,\n\t0x876: 0x107f, 0x877: 0x144f, 0x878: 0x14cb, 0x879: 0x0baf, 0x87a: 0x0717, 0x87b: 0x0777,\n\t0x87c: 0x0a67, 0x87d: 0x0a87, 0x87e: 0x0caf, 0x87f: 0x0d73,\n\t// Block 0x22, offset 0x880\n\t0x880: 0x0ec3, 0x881: 0x0fcb, 0x882: 0x1277, 0x883: 0x1417, 0x884: 0x1623, 0x885: 0x0ce3,\n\t0x886: 0x14a3, 0x887: 0x0833, 0x888: 0x0d2f, 0x889: 0x0d3b, 0x88a: 0x0e0f, 0x88b: 0x0e47,\n\t0x88c: 0x0f4b, 0x88d: 0x0fa7, 0x88e: 0x1027, 0x88f: 0x110b, 0x890: 0x153b, 0x891: 0x07af,\n\t0x892: 0x0c03, 0x893: 0x14b3, 0x894: 0x0767, 0x895: 0x0aab, 0x896: 0x0e2f, 0x897: 0x13df,\n\t0x898: 0x0b67, 0x899: 0x0bb7, 0x89a: 0x0d43, 0x89b: 0x0f2f, 0x89c: 0x14bb, 0x89d: 0x0817,\n\t0x89e: 0x08ff, 0x89f: 0x0a97, 0x8a0: 0x0cd3, 0x8a1: 0x0d1f, 0x8a2: 0x0d5f, 0x8a3: 0x0df3,\n\t0x8a4: 0x0f47, 0x8a5: 0x0fbb, 0x8a6: 0x1157, 0x8a7: 0x12f7, 0x8a8: 0x1303, 0x8a9: 0x1457,\n\t0x8aa: 0x14d7, 0x8ab: 0x0883, 0x8ac: 0x0e4b, 0x8ad: 0x0903, 0x8ae: 0x0ec7, 0x8af: 0x0f6b,\n\t0x8b0: 0x1287, 0x8b1: 0x14bf, 0x8b2: 0x15ab, 0x8b3: 0x15d3, 0x8b4: 0x0d37, 0x8b5: 0x0e27,\n\t0x8b6: 0x11c3, 0x8b7: 0x10b7, 0x8b8: 0x10c3, 0x8b9: 0x10e7, 0x8ba: 0x0f17, 0x8bb: 0x0e9f,\n\t0x8bc: 0x1363, 0x8bd: 0x0733, 0x8be: 0x122b, 0x8bf: 0x081b,\n\t// Block 0x23, offset 0x8c0\n\t0x8c0: 0x080b, 0x8c1: 0x0b0b, 0x8c2: 0x0c2b, 0x8c3: 0x10f3, 0x8c4: 0x0a53, 0x8c5: 0x0e03,\n\t0x8c6: 0x0cef, 0x8c7: 0x13e7, 0x8c8: 0x12e7, 0x8c9: 0x14ab, 0x8ca: 0x1323, 0x8cb: 0x0b27,\n\t0x8cc: 0x0787, 0x8cd: 0x095b, 0x8d0: 0x09af,\n\t0x8d2: 0x0cdf, 0x8d5: 0x07f7, 0x8d6: 0x0f1f, 0x8d7: 0x0fe3,\n\t0x8d8: 0x1047, 0x8d9: 0x1063, 0x8da: 0x1067, 0x8db: 0x107b, 0x8dc: 0x14fb, 0x8dd: 0x10eb,\n\t0x8de: 0x116f, 0x8e0: 0x128f, 0x8e2: 0x1353,\n\t0x8e5: 0x1407, 0x8e6: 0x1433,\n\t0x8ea: 0x154f, 0x8eb: 0x1553, 0x8ec: 0x1557, 0x8ed: 0x15bb, 0x8ee: 0x142b, 0x8ef: 0x14c7,\n\t0x8f0: 0x0757, 0x8f1: 0x077b, 0x8f2: 0x078f, 0x8f3: 0x084b, 0x8f4: 0x0857, 0x8f5: 0x0897,\n\t0x8f6: 0x094b, 0x8f7: 0x0967, 0x8f8: 0x096f, 0x8f9: 0x09ab, 0x8fa: 0x09b7, 0x8fb: 0x0a93,\n\t0x8fc: 0x0a9b, 0x8fd: 0x0ba3, 0x8fe: 0x0bcb, 0x8ff: 0x0bd3,\n\t// Block 0x24, offset 0x900\n\t0x900: 0x0beb, 0x901: 0x0c97, 0x902: 0x0cc7, 0x903: 0x0ce7, 0x904: 0x0d57, 0x905: 0x0e1b,\n\t0x906: 0x0e37, 0x907: 0x0e67, 0x908: 0x0ebb, 0x909: 0x0edb, 0x90a: 0x0f4f, 0x90b: 0x102f,\n\t0x90c: 0x104b, 0x90d: 0x1053, 0x90e: 0x104f, 0x90f: 0x1057, 0x910: 0x105b, 0x911: 0x105f,\n\t0x912: 0x1073, 0x913: 0x1077, 0x914: 0x109b, 0x915: 0x10af, 0x916: 0x10cb, 0x917: 0x112f,\n\t0x918: 0x1137, 0x919: 0x113f, 0x91a: 0x1153, 0x91b: 0x117b, 0x91c: 0x11cb, 0x91d: 0x11ff,\n\t0x91e: 0x11ff, 0x91f: 0x1267, 0x920: 0x130f, 0x921: 0x1327, 0x922: 0x135b, 0x923: 0x135f,\n\t0x924: 0x13a3, 0x925: 0x13a7, 0x926: 0x13ff, 0x927: 0x1407, 0x928: 0x14db, 0x929: 0x151f,\n\t0x92a: 0x1537, 0x92b: 0x0b9b, 0x92c: 0x171e, 0x92d: 0x11e3,\n\t0x930: 0x06df, 0x931: 0x07e3, 0x932: 0x07a3, 0x933: 0x074b, 0x934: 0x078b, 0x935: 0x07b7,\n\t0x936: 0x0847, 0x937: 0x0863, 0x938: 0x094b, 0x939: 0x0937, 0x93a: 0x0947, 0x93b: 0x0963,\n\t0x93c: 0x09af, 0x93d: 0x09bf, 0x93e: 0x0a03, 0x93f: 0x0a0f,\n\t// Block 0x25, offset 0x940\n\t0x940: 0x0a2b, 0x941: 0x0a3b, 0x942: 0x0b23, 0x943: 0x0b2b, 0x944: 0x0b5b, 0x945: 0x0b7b,\n\t0x946: 0x0bab, 0x947: 0x0bc3, 0x948: 0x0bb3, 0x949: 0x0bd3, 0x94a: 0x0bc7, 0x94b: 0x0beb,\n\t0x94c: 0x0c07, 0x94d: 0x0c5f, 0x94e: 0x0c6b, 0x94f: 0x0c73, 0x950: 0x0c9b, 0x951: 0x0cdf,\n\t0x952: 0x0d0f, 0x953: 0x0d13, 0x954: 0x0d27, 0x955: 0x0da7, 0x956: 0x0db7, 0x957: 0x0e0f,\n\t0x958: 0x0e5b, 0x959: 0x0e53, 0x95a: 0x0e67, 0x95b: 0x0e83, 0x95c: 0x0ebb, 0x95d: 0x1013,\n\t0x95e: 0x0edf, 0x95f: 0x0f13, 0x960: 0x0f1f, 0x961: 0x0f5f, 0x962: 0x0f7b, 0x963: 0x0f9f,\n\t0x964: 0x0fc3, 0x965: 0x0fc7, 0x966: 0x0fe3, 0x967: 0x0fe7, 0x968: 0x0ff7, 0x969: 0x100b,\n\t0x96a: 0x1007, 0x96b: 0x1037, 0x96c: 0x10b3, 0x96d: 0x10cb, 0x96e: 0x10e3, 0x96f: 0x111b,\n\t0x970: 0x112f, 0x971: 0x114b, 0x972: 0x117b, 0x973: 0x122f, 0x974: 0x1257, 0x975: 0x12cb,\n\t0x976: 0x1313, 0x977: 0x131f, 0x978: 0x1327, 0x979: 0x133f, 0x97a: 0x1353, 0x97b: 0x1343,\n\t0x97c: 0x135b, 0x97d: 0x1357, 0x97e: 0x134f, 0x97f: 0x135f,\n\t// Block 0x26, offset 0x980\n\t0x980: 0x136b, 0x981: 0x13a7, 0x982: 0x13e3, 0x983: 0x1413, 0x984: 0x144b, 0x985: 0x146b,\n\t0x986: 0x14b7, 0x987: 0x14db, 0x988: 0x14fb, 0x989: 0x150f, 0x98a: 0x151f, 0x98b: 0x152b,\n\t0x98c: 0x1537, 0x98d: 0x158b, 0x98e: 0x162b, 0x98f: 0x16b5, 0x990: 0x16b0, 0x991: 0x16e2,\n\t0x992: 0x0607, 0x993: 0x062f, 0x994: 0x0633, 0x995: 0x1764, 0x996: 0x1791, 0x997: 0x1809,\n\t0x998: 0x1617, 0x999: 0x1627,\n\t// Block 0x27, offset 0x9c0\n\t0x9c0: 0x06fb, 0x9c1: 0x06f3, 0x9c2: 0x0703, 0x9c3: 0x1647, 0x9c4: 0x0747, 0x9c5: 0x0757,\n\t0x9c6: 0x075b, 0x9c7: 0x0763, 0x9c8: 0x076b, 0x9c9: 0x076f, 0x9ca: 0x077b, 0x9cb: 0x0773,\n\t0x9cc: 0x05b3, 0x9cd: 0x165b, 0x9ce: 0x078f, 0x9cf: 0x0793, 0x9d0: 0x0797, 0x9d1: 0x07b3,\n\t0x9d2: 0x164c, 0x9d3: 0x05b7, 0x9d4: 0x079f, 0x9d5: 0x07bf, 0x9d6: 0x1656, 0x9d7: 0x07cf,\n\t0x9d8: 0x07d7, 0x9d9: 0x0737, 0x9da: 0x07df, 0x9db: 0x07e3, 0x9dc: 0x1831, 0x9dd: 0x07ff,\n\t0x9de: 0x0807, 0x9df: 0x05bf, 0x9e0: 0x081f, 0x9e1: 0x0823, 0x9e2: 0x082b, 0x9e3: 0x082f,\n\t0x9e4: 0x05c3, 0x9e5: 0x0847, 0x9e6: 0x084b, 0x9e7: 0x0857, 0x9e8: 0x0863, 0x9e9: 0x0867,\n\t0x9ea: 0x086b, 0x9eb: 0x0873, 0x9ec: 0x0893, 0x9ed: 0x0897, 0x9ee: 0x089f, 0x9ef: 0x08af,\n\t0x9f0: 0x08b7, 0x9f1: 0x08bb, 0x9f2: 0x08bb, 0x9f3: 0x08bb, 0x9f4: 0x166a, 0x9f5: 0x0e93,\n\t0x9f6: 0x08cf, 0x9f7: 0x08d7, 0x9f8: 0x166f, 0x9f9: 0x08e3, 0x9fa: 0x08eb, 0x9fb: 0x08f3,\n\t0x9fc: 0x091b, 0x9fd: 0x0907, 0x9fe: 0x0913, 0x9ff: 0x0917,\n\t// Block 0x28, offset 0xa00\n\t0xa00: 0x091f, 0xa01: 0x0927, 0xa02: 0x092b, 0xa03: 0x0933, 0xa04: 0x093b, 0xa05: 0x093f,\n\t0xa06: 0x093f, 0xa07: 0x0947, 0xa08: 0x094f, 0xa09: 0x0953, 0xa0a: 0x095f, 0xa0b: 0x0983,\n\t0xa0c: 0x0967, 0xa0d: 0x0987, 0xa0e: 0x096b, 0xa0f: 0x0973, 0xa10: 0x080b, 0xa11: 0x09cf,\n\t0xa12: 0x0997, 0xa13: 0x099b, 0xa14: 0x099f, 0xa15: 0x0993, 0xa16: 0x09a7, 0xa17: 0x09a3,\n\t0xa18: 0x09bb, 0xa19: 0x1674, 0xa1a: 0x09d7, 0xa1b: 0x09db, 0xa1c: 0x09e3, 0xa1d: 0x09ef,\n\t0xa1e: 0x09f7, 0xa1f: 0x0a13, 0xa20: 0x1679, 0xa21: 0x167e, 0xa22: 0x0a1f, 0xa23: 0x0a23,\n\t0xa24: 0x0a27, 0xa25: 0x0a1b, 0xa26: 0x0a2f, 0xa27: 0x05c7, 0xa28: 0x05cb, 0xa29: 0x0a37,\n\t0xa2a: 0x0a3f, 0xa2b: 0x0a3f, 0xa2c: 0x1683, 0xa2d: 0x0a5b, 0xa2e: 0x0a5f, 0xa2f: 0x0a63,\n\t0xa30: 0x0a6b, 0xa31: 0x1688, 0xa32: 0x0a73, 0xa33: 0x0a77, 0xa34: 0x0b4f, 0xa35: 0x0a7f,\n\t0xa36: 0x05cf, 0xa37: 0x0a8b, 0xa38: 0x0a9b, 0xa39: 0x0aa7, 0xa3a: 0x0aa3, 0xa3b: 0x1692,\n\t0xa3c: 0x0aaf, 0xa3d: 0x1697, 0xa3e: 0x0abb, 0xa3f: 0x0ab7,\n\t// Block 0x29, offset 0xa40\n\t0xa40: 0x0abf, 0xa41: 0x0acf, 0xa42: 0x0ad3, 0xa43: 0x05d3, 0xa44: 0x0ae3, 0xa45: 0x0aeb,\n\t0xa46: 0x0aef, 0xa47: 0x0af3, 0xa48: 0x05d7, 0xa49: 0x169c, 0xa4a: 0x05db, 0xa4b: 0x0b0f,\n\t0xa4c: 0x0b13, 0xa4d: 0x0b17, 0xa4e: 0x0b1f, 0xa4f: 0x1863, 0xa50: 0x0b37, 0xa51: 0x16a6,\n\t0xa52: 0x16a6, 0xa53: 0x11d7, 0xa54: 0x0b47, 0xa55: 0x0b47, 0xa56: 0x05df, 0xa57: 0x16c9,\n\t0xa58: 0x179b, 0xa59: 0x0b57, 0xa5a: 0x0b5f, 0xa5b: 0x05e3, 0xa5c: 0x0b73, 0xa5d: 0x0b83,\n\t0xa5e: 0x0b87, 0xa5f: 0x0b8f, 0xa60: 0x0b9f, 0xa61: 0x05eb, 0xa62: 0x05e7, 0xa63: 0x0ba3,\n\t0xa64: 0x16ab, 0xa65: 0x0ba7, 0xa66: 0x0bbb, 0xa67: 0x0bbf, 0xa68: 0x0bc3, 0xa69: 0x0bbf,\n\t0xa6a: 0x0bcf, 0xa6b: 0x0bd3, 0xa6c: 0x0be3, 0xa6d: 0x0bdb, 0xa6e: 0x0bdf, 0xa6f: 0x0be7,\n\t0xa70: 0x0beb, 0xa71: 0x0bef, 0xa72: 0x0bfb, 0xa73: 0x0bff, 0xa74: 0x0c17, 0xa75: 0x0c1f,\n\t0xa76: 0x0c2f, 0xa77: 0x0c43, 0xa78: 0x16ba, 0xa79: 0x0c3f, 0xa7a: 0x0c33, 0xa7b: 0x0c4b,\n\t0xa7c: 0x0c53, 0xa7d: 0x0c67, 0xa7e: 0x16bf, 0xa7f: 0x0c6f,\n\t// Block 0x2a, offset 0xa80\n\t0xa80: 0x0c63, 0xa81: 0x0c5b, 0xa82: 0x05ef, 0xa83: 0x0c77, 0xa84: 0x0c7f, 0xa85: 0x0c87,\n\t0xa86: 0x0c7b, 0xa87: 0x05f3, 0xa88: 0x0c97, 0xa89: 0x0c9f, 0xa8a: 0x16c4, 0xa8b: 0x0ccb,\n\t0xa8c: 0x0cff, 0xa8d: 0x0cdb, 0xa8e: 0x05ff, 0xa8f: 0x0ce7, 0xa90: 0x05fb, 0xa91: 0x05f7,\n\t0xa92: 0x07c3, 0xa93: 0x07c7, 0xa94: 0x0d03, 0xa95: 0x0ceb, 0xa96: 0x11ab, 0xa97: 0x0663,\n\t0xa98: 0x0d0f, 0xa99: 0x0d13, 0xa9a: 0x0d17, 0xa9b: 0x0d2b, 0xa9c: 0x0d23, 0xa9d: 0x16dd,\n\t0xa9e: 0x0603, 0xa9f: 0x0d3f, 0xaa0: 0x0d33, 0xaa1: 0x0d4f, 0xaa2: 0x0d57, 0xaa3: 0x16e7,\n\t0xaa4: 0x0d5b, 0xaa5: 0x0d47, 0xaa6: 0x0d63, 0xaa7: 0x0607, 0xaa8: 0x0d67, 0xaa9: 0x0d6b,\n\t0xaaa: 0x0d6f, 0xaab: 0x0d7b, 0xaac: 0x16ec, 0xaad: 0x0d83, 0xaae: 0x060b, 0xaaf: 0x0d8f,\n\t0xab0: 0x16f1, 0xab1: 0x0d93, 0xab2: 0x060f, 0xab3: 0x0d9f, 0xab4: 0x0dab, 0xab5: 0x0db7,\n\t0xab6: 0x0dbb, 0xab7: 0x16f6, 0xab8: 0x168d, 0xab9: 0x16fb, 0xaba: 0x0ddb, 0xabb: 0x1700,\n\t0xabc: 0x0de7, 0xabd: 0x0def, 0xabe: 0x0ddf, 0xabf: 0x0dfb,\n\t// Block 0x2b, offset 0xac0\n\t0xac0: 0x0e0b, 0xac1: 0x0e1b, 0xac2: 0x0e0f, 0xac3: 0x0e13, 0xac4: 0x0e1f, 0xac5: 0x0e23,\n\t0xac6: 0x1705, 0xac7: 0x0e07, 0xac8: 0x0e3b, 0xac9: 0x0e3f, 0xaca: 0x0613, 0xacb: 0x0e53,\n\t0xacc: 0x0e4f, 0xacd: 0x170a, 0xace: 0x0e33, 0xacf: 0x0e6f, 0xad0: 0x170f, 0xad1: 0x1714,\n\t0xad2: 0x0e73, 0xad3: 0x0e87, 0xad4: 0x0e83, 0xad5: 0x0e7f, 0xad6: 0x0617, 0xad7: 0x0e8b,\n\t0xad8: 0x0e9b, 0xad9: 0x0e97, 0xada: 0x0ea3, 0xadb: 0x1651, 0xadc: 0x0eb3, 0xadd: 0x1719,\n\t0xade: 0x0ebf, 0xadf: 0x1723, 0xae0: 0x0ed3, 0xae1: 0x0edf, 0xae2: 0x0ef3, 0xae3: 0x1728,\n\t0xae4: 0x0f07, 0xae5: 0x0f0b, 0xae6: 0x172d, 0xae7: 0x1732, 0xae8: 0x0f27, 0xae9: 0x0f37,\n\t0xaea: 0x061b, 0xaeb: 0x0f3b, 0xaec: 0x061f, 0xaed: 0x061f, 0xaee: 0x0f53, 0xaef: 0x0f57,\n\t0xaf0: 0x0f5f, 0xaf1: 0x0f63, 0xaf2: 0x0f6f, 0xaf3: 0x0623, 0xaf4: 0x0f87, 0xaf5: 0x1737,\n\t0xaf6: 0x0fa3, 0xaf7: 0x173c, 0xaf8: 0x0faf, 0xaf9: 0x16a1, 0xafa: 0x0fbf, 0xafb: 0x1741,\n\t0xafc: 0x1746, 0xafd: 0x174b, 0xafe: 0x0627, 0xaff: 0x062b,\n\t// Block 0x2c, offset 0xb00\n\t0xb00: 0x0ff7, 0xb01: 0x1755, 0xb02: 0x1750, 0xb03: 0x175a, 0xb04: 0x175f, 0xb05: 0x0fff,\n\t0xb06: 0x1003, 0xb07: 0x1003, 0xb08: 0x100b, 0xb09: 0x0633, 0xb0a: 0x100f, 0xb0b: 0x0637,\n\t0xb0c: 0x063b, 0xb0d: 0x1769, 0xb0e: 0x1023, 0xb0f: 0x102b, 0xb10: 0x1037, 0xb11: 0x063f,\n\t0xb12: 0x176e, 0xb13: 0x105b, 0xb14: 0x1773, 0xb15: 0x1778, 0xb16: 0x107b, 0xb17: 0x1093,\n\t0xb18: 0x0643, 0xb19: 0x109b, 0xb1a: 0x109f, 0xb1b: 0x10a3, 0xb1c: 0x177d, 0xb1d: 0x1782,\n\t0xb1e: 0x1782, 0xb1f: 0x10bb, 0xb20: 0x0647, 0xb21: 0x1787, 0xb22: 0x10cf, 0xb23: 0x10d3,\n\t0xb24: 0x064b, 0xb25: 0x178c, 0xb26: 0x10ef, 0xb27: 0x064f, 0xb28: 0x10ff, 0xb29: 0x10f7,\n\t0xb2a: 0x1107, 0xb2b: 0x1796, 0xb2c: 0x111f, 0xb2d: 0x0653, 0xb2e: 0x112b, 0xb2f: 0x1133,\n\t0xb30: 0x1143, 0xb31: 0x0657, 0xb32: 0x17a0, 0xb33: 0x17a5, 0xb34: 0x065b, 0xb35: 0x17aa,\n\t0xb36: 0x115b, 0xb37: 0x17af, 0xb38: 0x1167, 0xb39: 0x1173, 0xb3a: 0x117b, 0xb3b: 0x17b4,\n\t0xb3c: 0x17b9, 0xb3d: 0x118f, 0xb3e: 0x17be, 0xb3f: 0x1197,\n\t// Block 0x2d, offset 0xb40\n\t0xb40: 0x16ce, 0xb41: 0x065f, 0xb42: 0x11af, 0xb43: 0x11b3, 0xb44: 0x0667, 0xb45: 0x11b7,\n\t0xb46: 0x0a33, 0xb47: 0x17c3, 0xb48: 0x17c8, 0xb49: 0x16d3, 0xb4a: 0x16d8, 0xb4b: 0x11d7,\n\t0xb4c: 0x11db, 0xb4d: 0x13f3, 0xb4e: 0x066b, 0xb4f: 0x1207, 0xb50: 0x1203, 0xb51: 0x120b,\n\t0xb52: 0x083f, 0xb53: 0x120f, 0xb54: 0x1213, 0xb55: 0x1217, 0xb56: 0x121f, 0xb57: 0x17cd,\n\t0xb58: 0x121b, 0xb59: 0x1223, 0xb5a: 0x1237, 0xb5b: 0x123b, 0xb5c: 0x1227, 0xb5d: 0x123f,\n\t0xb5e: 0x1253, 0xb5f: 0x1267, 0xb60: 0x1233, 0xb61: 0x1247, 0xb62: 0x124b, 0xb63: 0x124f,\n\t0xb64: 0x17d2, 0xb65: 0x17dc, 0xb66: 0x17d7, 0xb67: 0x066f, 0xb68: 0x126f, 0xb69: 0x1273,\n\t0xb6a: 0x127b, 0xb6b: 0x17f0, 0xb6c: 0x127f, 0xb6d: 0x17e1, 0xb6e: 0x0673, 0xb6f: 0x0677,\n\t0xb70: 0x17e6, 0xb71: 0x17eb, 0xb72: 0x067b, 0xb73: 0x129f, 0xb74: 0x12a3, 0xb75: 0x12a7,\n\t0xb76: 0x12ab, 0xb77: 0x12b7, 0xb78: 0x12b3, 0xb79: 0x12bf, 0xb7a: 0x12bb, 0xb7b: 0x12cb,\n\t0xb7c: 0x12c3, 0xb7d: 0x12c7, 0xb7e: 0x12cf, 0xb7f: 0x067f,\n\t// Block 0x2e, offset 0xb80\n\t0xb80: 0x12d7, 0xb81: 0x12db, 0xb82: 0x0683, 0xb83: 0x12eb, 0xb84: 0x12ef, 0xb85: 0x17f5,\n\t0xb86: 0x12fb, 0xb87: 0x12ff, 0xb88: 0x0687, 0xb89: 0x130b, 0xb8a: 0x05bb, 0xb8b: 0x17fa,\n\t0xb8c: 0x17ff, 0xb8d: 0x068b, 0xb8e: 0x068f, 0xb8f: 0x1337, 0xb90: 0x134f, 0xb91: 0x136b,\n\t0xb92: 0x137b, 0xb93: 0x1804, 0xb94: 0x138f, 0xb95: 0x1393, 0xb96: 0x13ab, 0xb97: 0x13b7,\n\t0xb98: 0x180e, 0xb99: 0x1660, 0xb9a: 0x13c3, 0xb9b: 0x13bf, 0xb9c: 0x13cb, 0xb9d: 0x1665,\n\t0xb9e: 0x13d7, 0xb9f: 0x13e3, 0xba0: 0x1813, 0xba1: 0x1818, 0xba2: 0x1423, 0xba3: 0x142f,\n\t0xba4: 0x1437, 0xba5: 0x181d, 0xba6: 0x143b, 0xba7: 0x1467, 0xba8: 0x1473, 0xba9: 0x1477,\n\t0xbaa: 0x146f, 0xbab: 0x1483, 0xbac: 0x1487, 0xbad: 0x1822, 0xbae: 0x1493, 0xbaf: 0x0693,\n\t0xbb0: 0x149b, 0xbb1: 0x1827, 0xbb2: 0x0697, 0xbb3: 0x14d3, 0xbb4: 0x0ac3, 0xbb5: 0x14eb,\n\t0xbb6: 0x182c, 0xbb7: 0x1836, 0xbb8: 0x069b, 0xbb9: 0x069f, 0xbba: 0x1513, 0xbbb: 0x183b,\n\t0xbbc: 0x06a3, 0xbbd: 0x1840, 0xbbe: 0x152b, 0xbbf: 0x152b,\n\t// Block 0x2f, offset 0xbc0\n\t0xbc0: 0x1533, 0xbc1: 0x1845, 0xbc2: 0x154b, 0xbc3: 0x06a7, 0xbc4: 0x155b, 0xbc5: 0x1567,\n\t0xbc6: 0x156f, 0xbc7: 0x1577, 0xbc8: 0x06ab, 0xbc9: 0x184a, 0xbca: 0x158b, 0xbcb: 0x15a7,\n\t0xbcc: 0x15b3, 0xbcd: 0x06af, 0xbce: 0x06b3, 0xbcf: 0x15b7, 0xbd0: 0x184f, 0xbd1: 0x06b7,\n\t0xbd2: 0x1854, 0xbd3: 0x1859, 0xbd4: 0x185e, 0xbd5: 0x15db, 0xbd6: 0x06bb, 0xbd7: 0x15ef,\n\t0xbd8: 0x15f7, 0xbd9: 0x15fb, 0xbda: 0x1603, 0xbdb: 0x160b, 0xbdc: 0x1613, 0xbdd: 0x1868,\n}\n\n// nfcIndex: 22 blocks, 1408 entries, 1408 bytes\n// Block 0 is the zero block.\nvar nfcIndex = [1408]uint8{\n\t// Block 0x0, offset 0x0\n\t// Block 0x1, offset 0x40\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc2: 0x2e, 0xc3: 0x01, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x2f, 0xc7: 0x04,\n\t0xc8: 0x05, 0xca: 0x30, 0xcb: 0x31, 0xcc: 0x06, 0xcd: 0x07, 0xce: 0x08, 0xcf: 0x32,\n\t0xd0: 0x09, 0xd1: 0x33, 0xd2: 0x34, 0xd3: 0x0a, 0xd6: 0x0b, 0xd7: 0x35,\n\t0xd8: 0x36, 0xd9: 0x0c, 0xdb: 0x37, 0xdc: 0x38, 0xdd: 0x39, 0xdf: 0x3a,\n\t0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05,\n\t0xea: 0x06, 0xeb: 0x07, 0xec: 0x08, 0xed: 0x09, 0xef: 0x0a,\n\t0xf0: 0x13,\n\t// Block 0x4, offset 0x100\n\t0x120: 0x3b, 0x121: 0x3c, 0x123: 0x0d, 0x124: 0x3d, 0x125: 0x3e, 0x126: 0x3f, 0x127: 0x40,\n\t0x128: 0x41, 0x129: 0x42, 0x12a: 0x43, 0x12b: 0x44, 0x12c: 0x3f, 0x12d: 0x45, 0x12e: 0x46, 0x12f: 0x47,\n\t0x131: 0x48, 0x132: 0x49, 0x133: 0x4a, 0x134: 0x4b, 0x135: 0x4c, 0x137: 0x4d,\n\t0x138: 0x4e, 0x139: 0x4f, 0x13a: 0x50, 0x13b: 0x51, 0x13c: 0x52, 0x13d: 0x53, 0x13e: 0x54, 0x13f: 0x55,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x56, 0x142: 0x57, 0x144: 0x58, 0x145: 0x59, 0x146: 0x5a, 0x147: 0x5b,\n\t0x14d: 0x5c,\n\t0x15c: 0x5d, 0x15f: 0x5e,\n\t0x162: 0x5f, 0x164: 0x60,\n\t0x168: 0x61, 0x169: 0x62, 0x16a: 0x63, 0x16c: 0x0e, 0x16d: 0x64, 0x16e: 0x65, 0x16f: 0x66,\n\t0x170: 0x67, 0x173: 0x68, 0x177: 0x0f,\n\t0x178: 0x10, 0x179: 0x11, 0x17a: 0x12, 0x17b: 0x13, 0x17c: 0x14, 0x17d: 0x15, 0x17e: 0x16, 0x17f: 0x17,\n\t// Block 0x6, offset 0x180\n\t0x180: 0x69, 0x183: 0x6a, 0x184: 0x6b, 0x186: 0x6c, 0x187: 0x6d,\n\t0x188: 0x6e, 0x189: 0x18, 0x18a: 0x19, 0x18b: 0x6f, 0x18c: 0x70,\n\t0x1ab: 0x71,\n\t0x1b3: 0x72, 0x1b5: 0x73, 0x1b7: 0x74,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x75, 0x1c1: 0x1a, 0x1c2: 0x1b, 0x1c3: 0x1c, 0x1c4: 0x76, 0x1c5: 0x77,\n\t0x1c9: 0x78, 0x1cc: 0x79, 0x1cd: 0x7a,\n\t// Block 0x8, offset 0x200\n\t0x219: 0x7b, 0x21a: 0x7c, 0x21b: 0x7d,\n\t0x220: 0x7e, 0x223: 0x7f, 0x224: 0x80, 0x225: 0x81, 0x226: 0x82, 0x227: 0x83,\n\t0x22a: 0x84, 0x22b: 0x85, 0x22f: 0x86,\n\t0x230: 0x87, 0x231: 0x88, 0x232: 0x89, 0x233: 0x8a, 0x234: 0x8b, 0x235: 0x8c, 0x236: 0x8d, 0x237: 0x87,\n\t0x238: 0x88, 0x239: 0x89, 0x23a: 0x8a, 0x23b: 0x8b, 0x23c: 0x8c, 0x23d: 0x8d, 0x23e: 0x87, 0x23f: 0x88,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x89, 0x241: 0x8a, 0x242: 0x8b, 0x243: 0x8c, 0x244: 0x8d, 0x245: 0x87, 0x246: 0x88, 0x247: 0x89,\n\t0x248: 0x8a, 0x249: 0x8b, 0x24a: 0x8c, 0x24b: 0x8d, 0x24c: 0x87, 0x24d: 0x88, 0x24e: 0x89, 0x24f: 0x8a,\n\t0x250: 0x8b, 0x251: 0x8c, 0x252: 0x8d, 0x253: 0x87, 0x254: 0x88, 0x255: 0x89, 0x256: 0x8a, 0x257: 0x8b,\n\t0x258: 0x8c, 0x259: 0x8d, 0x25a: 0x87, 0x25b: 0x88, 0x25c: 0x89, 0x25d: 0x8a, 0x25e: 0x8b, 0x25f: 0x8c,\n\t0x260: 0x8d, 0x261: 0x87, 0x262: 0x88, 0x263: 0x89, 0x264: 0x8a, 0x265: 0x8b, 0x266: 0x8c, 0x267: 0x8d,\n\t0x268: 0x87, 0x269: 0x88, 0x26a: 0x89, 0x26b: 0x8a, 0x26c: 0x8b, 0x26d: 0x8c, 0x26e: 0x8d, 0x26f: 0x87,\n\t0x270: 0x88, 0x271: 0x89, 0x272: 0x8a, 0x273: 0x8b, 0x274: 0x8c, 0x275: 0x8d, 0x276: 0x87, 0x277: 0x88,\n\t0x278: 0x89, 0x279: 0x8a, 0x27a: 0x8b, 0x27b: 0x8c, 0x27c: 0x8d, 0x27d: 0x87, 0x27e: 0x88, 0x27f: 0x89,\n\t// Block 0xa, offset 0x280\n\t0x280: 0x8a, 0x281: 0x8b, 0x282: 0x8c, 0x283: 0x8d, 0x284: 0x87, 0x285: 0x88, 0x286: 0x89, 0x287: 0x8a,\n\t0x288: 0x8b, 0x289: 0x8c, 0x28a: 0x8d, 0x28b: 0x87, 0x28c: 0x88, 0x28d: 0x89, 0x28e: 0x8a, 0x28f: 0x8b,\n\t0x290: 0x8c, 0x291: 0x8d, 0x292: 0x87, 0x293: 0x88, 0x294: 0x89, 0x295: 0x8a, 0x296: 0x8b, 0x297: 0x8c,\n\t0x298: 0x8d, 0x299: 0x87, 0x29a: 0x88, 0x29b: 0x89, 0x29c: 0x8a, 0x29d: 0x8b, 0x29e: 0x8c, 0x29f: 0x8d,\n\t0x2a0: 0x87, 0x2a1: 0x88, 0x2a2: 0x89, 0x2a3: 0x8a, 0x2a4: 0x8b, 0x2a5: 0x8c, 0x2a6: 0x8d, 0x2a7: 0x87,\n\t0x2a8: 0x88, 0x2a9: 0x89, 0x2aa: 0x8a, 0x2ab: 0x8b, 0x2ac: 0x8c, 0x2ad: 0x8d, 0x2ae: 0x87, 0x2af: 0x88,\n\t0x2b0: 0x89, 0x2b1: 0x8a, 0x2b2: 0x8b, 0x2b3: 0x8c, 0x2b4: 0x8d, 0x2b5: 0x87, 0x2b6: 0x88, 0x2b7: 0x89,\n\t0x2b8: 0x8a, 0x2b9: 0x8b, 0x2ba: 0x8c, 0x2bb: 0x8d, 0x2bc: 0x87, 0x2bd: 0x88, 0x2be: 0x89, 0x2bf: 0x8a,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0x8b, 0x2c1: 0x8c, 0x2c2: 0x8d, 0x2c3: 0x87, 0x2c4: 0x88, 0x2c5: 0x89, 0x2c6: 0x8a, 0x2c7: 0x8b,\n\t0x2c8: 0x8c, 0x2c9: 0x8d, 0x2ca: 0x87, 0x2cb: 0x88, 0x2cc: 0x89, 0x2cd: 0x8a, 0x2ce: 0x8b, 0x2cf: 0x8c,\n\t0x2d0: 0x8d, 0x2d1: 0x87, 0x2d2: 0x88, 0x2d3: 0x89, 0x2d4: 0x8a, 0x2d5: 0x8b, 0x2d6: 0x8c, 0x2d7: 0x8d,\n\t0x2d8: 0x87, 0x2d9: 0x88, 0x2da: 0x89, 0x2db: 0x8a, 0x2dc: 0x8b, 0x2dd: 0x8c, 0x2de: 0x8e,\n\t// Block 0xc, offset 0x300\n\t0x324: 0x1d, 0x325: 0x1e, 0x326: 0x1f, 0x327: 0x20,\n\t0x328: 0x21, 0x329: 0x22, 0x32a: 0x23, 0x32b: 0x24, 0x32c: 0x8f, 0x32d: 0x90, 0x32e: 0x91,\n\t0x331: 0x92, 0x332: 0x93, 0x333: 0x94, 0x334: 0x95,\n\t0x338: 0x96, 0x339: 0x97, 0x33a: 0x98, 0x33b: 0x99, 0x33e: 0x9a, 0x33f: 0x9b,\n\t// Block 0xd, offset 0x340\n\t0x347: 0x9c,\n\t0x34b: 0x9d, 0x34d: 0x9e,\n\t0x368: 0x9f, 0x36b: 0xa0,\n\t0x374: 0xa1,\n\t0x37d: 0xa2,\n\t// Block 0xe, offset 0x380\n\t0x381: 0xa3, 0x382: 0xa4, 0x384: 0xa5, 0x385: 0x82, 0x387: 0xa6,\n\t0x388: 0xa7, 0x38b: 0xa8, 0x38c: 0xa9, 0x38d: 0xaa,\n\t0x391: 0xab, 0x392: 0xac, 0x393: 0xad, 0x396: 0xae, 0x397: 0xaf,\n\t0x398: 0x73, 0x39a: 0xb0, 0x39c: 0xb1,\n\t0x3a0: 0xb2, 0x3a7: 0xb3,\n\t0x3a8: 0xb4, 0x3a9: 0xb5, 0x3aa: 0xb6,\n\t0x3b0: 0x73, 0x3b5: 0xb7, 0x3b6: 0xb8,\n\t// Block 0xf, offset 0x3c0\n\t0x3eb: 0xb9, 0x3ec: 0xba,\n\t// Block 0x10, offset 0x400\n\t0x432: 0xbb,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xbc, 0x446: 0xbd, 0x447: 0xbe,\n\t0x449: 0xbf,\n\t// Block 0x12, offset 0x480\n\t0x480: 0xc0, 0x484: 0xba,\n\t0x48b: 0xc1,\n\t0x4a3: 0xc2, 0x4a5: 0xc3,\n\t// Block 0x13, offset 0x4c0\n\t0x4c8: 0xc4,\n\t// Block 0x14, offset 0x500\n\t0x520: 0x25, 0x521: 0x26, 0x522: 0x27, 0x523: 0x28, 0x524: 0x29, 0x525: 0x2a, 0x526: 0x2b, 0x527: 0x2c,\n\t0x528: 0x2d,\n\t// Block 0x15, offset 0x540\n\t0x550: 0x0b, 0x551: 0x0c, 0x556: 0x0d,\n\t0x55b: 0x0e, 0x55d: 0x0f, 0x55e: 0x10, 0x55f: 0x11,\n\t0x56f: 0x12,\n}\n\n// nfcSparseOffset: 151 entries, 302 bytes\nvar nfcSparseOffset = []uint16{0x0, 0x5, 0x9, 0xb, 0xd, 0x18, 0x28, 0x2a, 0x2f, 0x3a, 0x49, 0x56, 0x5e, 0x63, 0x68, 0x6a, 0x72, 0x79, 0x7c, 0x84, 0x88, 0x8c, 0x8e, 0x90, 0x99, 0x9d, 0xa4, 0xa9, 0xac, 0xb6, 0xb9, 0xc0, 0xc8, 0xcb, 0xcd, 0xd0, 0xd2, 0xd7, 0xe8, 0xf4, 0xf6, 0xfc, 0xfe, 0x100, 0x102, 0x104, 0x106, 0x108, 0x10b, 0x10e, 0x110, 0x113, 0x116, 0x11a, 0x11f, 0x128, 0x12a, 0x12d, 0x12f, 0x13a, 0x13e, 0x14c, 0x14f, 0x155, 0x15b, 0x166, 0x16a, 0x16c, 0x16e, 0x170, 0x172, 0x174, 0x17a, 0x17e, 0x180, 0x182, 0x18a, 0x18e, 0x191, 0x193, 0x195, 0x197, 0x19a, 0x19c, 0x19e, 0x1a0, 0x1a2, 0x1a8, 0x1ab, 0x1ad, 0x1b4, 0x1ba, 0x1c0, 0x1c8, 0x1ce, 0x1d4, 0x1da, 0x1de, 0x1ec, 0x1f5, 0x1f8, 0x1fb, 0x1fd, 0x200, 0x202, 0x206, 0x20b, 0x20d, 0x20f, 0x214, 0x21a, 0x21c, 0x21e, 0x220, 0x226, 0x229, 0x22b, 0x231, 0x234, 0x23c, 0x243, 0x246, 0x249, 0x24b, 0x24e, 0x256, 0x25a, 0x261, 0x264, 0x26a, 0x26c, 0x26f, 0x271, 0x274, 0x276, 0x278, 0x27a, 0x27c, 0x27f, 0x281, 0x283, 0x285, 0x287, 0x294, 0x29e, 0x2a0, 0x2a2, 0x2a8, 0x2aa, 0x2ac, 0x2af}\n\n// nfcSparseValues: 689 entries, 2756 bytes\nvar nfcSparseValues = [689]valueRange{\n\t// Block 0x0, offset 0x0\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0xa100, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8100, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8100, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8100, lo: 0xb8, hi: 0xb8},\n\t// Block 0x1, offset 0x5\n\t{value: 0x0091, lo: 0x03},\n\t{value: 0x46e5, lo: 0xa0, hi: 0xa1},\n\t{value: 0x4717, lo: 0xaf, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb7, hi: 0xb7},\n\t// Block 0x2, offset 0x9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t// Block 0x3, offset 0xb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x98, hi: 0x9d},\n\t// Block 0x4, offset 0xd\n\t{value: 0x0006, lo: 0x0a},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x85, hi: 0x85},\n\t{value: 0xa000, lo: 0x89, hi: 0x89},\n\t{value: 0x4843, lo: 0x8a, hi: 0x8a},\n\t{value: 0x4861, lo: 0x8b, hi: 0x8b},\n\t{value: 0x36ca, lo: 0x8c, hi: 0x8c},\n\t{value: 0x36e2, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4879, lo: 0x8e, hi: 0x8e},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x3700, lo: 0x93, hi: 0x94},\n\t// Block 0x5, offset 0x18\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0xa000, lo: 0x8d, hi: 0x8d},\n\t{value: 0x37a8, lo: 0x90, hi: 0x90},\n\t{value: 0x37b4, lo: 0x91, hi: 0x91},\n\t{value: 0x37a2, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x96, hi: 0x96},\n\t{value: 0x381a, lo: 0x97, hi: 0x97},\n\t{value: 0x37e4, lo: 0x9c, hi: 0x9c},\n\t{value: 0x37cc, lo: 0x9d, hi: 0x9d},\n\t{value: 0x37f6, lo: 0x9e, hi: 0x9e},\n\t{value: 0xa000, lo: 0xb4, hi: 0xb5},\n\t{value: 0x3820, lo: 0xb6, hi: 0xb6},\n\t{value: 0x3826, lo: 0xb7, hi: 0xb7},\n\t// Block 0x6, offset 0x28\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x83, hi: 0x87},\n\t// Block 0x7, offset 0x2a\n\t{value: 0x0001, lo: 0x04},\n\t{value: 0x8113, lo: 0x81, hi: 0x82},\n\t{value: 0x8132, lo: 0x84, hi: 0x84},\n\t{value: 0x812d, lo: 0x85, hi: 0x85},\n\t{value: 0x810d, lo: 0x87, hi: 0x87},\n\t// Block 0x8, offset 0x2f\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x97},\n\t{value: 0x8119, lo: 0x98, hi: 0x98},\n\t{value: 0x811a, lo: 0x99, hi: 0x99},\n\t{value: 0x811b, lo: 0x9a, hi: 0x9a},\n\t{value: 0x3844, lo: 0xa2, hi: 0xa2},\n\t{value: 0x384a, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3856, lo: 0xa4, hi: 0xa4},\n\t{value: 0x3850, lo: 0xa5, hi: 0xa5},\n\t{value: 0x385c, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xa7, hi: 0xa7},\n\t// Block 0x9, offset 0x3a\n\t{value: 0x0000, lo: 0x0e},\n\t{value: 0x386e, lo: 0x80, hi: 0x80},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0x3862, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x3868, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x95, hi: 0x95},\n\t{value: 0x8132, lo: 0x96, hi: 0x9c},\n\t{value: 0x8132, lo: 0x9f, hi: 0xa2},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8132, lo: 0xab, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t// Block 0xa, offset 0x49\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x811f, lo: 0x91, hi: 0x91},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x812d, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb5, hi: 0xb6},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb9},\n\t{value: 0x8132, lo: 0xba, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbc},\n\t{value: 0x8132, lo: 0xbd, hi: 0xbd},\n\t{value: 0x812d, lo: 0xbe, hi: 0xbe},\n\t{value: 0x8132, lo: 0xbf, hi: 0xbf},\n\t// Block 0xb, offset 0x56\n\t{value: 0x0005, lo: 0x07},\n\t{value: 0x8132, lo: 0x80, hi: 0x80},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x83},\n\t{value: 0x812d, lo: 0x84, hi: 0x85},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x812d, lo: 0x88, hi: 0x89},\n\t{value: 0x8132, lo: 0x8a, hi: 0x8a},\n\t// Block 0xc, offset 0x5e\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xab, hi: 0xb1},\n\t{value: 0x812d, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb3},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0xd, offset 0x63\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0x96, hi: 0x99},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa7},\n\t{value: 0x8132, lo: 0xa9, hi: 0xad},\n\t// Block 0xe, offset 0x68\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x99, hi: 0x9b},\n\t// Block 0xf, offset 0x6a\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0xa8, hi: 0xa8},\n\t{value: 0x3edb, lo: 0xa9, hi: 0xa9},\n\t{value: 0xa000, lo: 0xb0, hi: 0xb0},\n\t{value: 0x3ee3, lo: 0xb1, hi: 0xb1},\n\t{value: 0xa000, lo: 0xb3, hi: 0xb3},\n\t{value: 0x3eeb, lo: 0xb4, hi: 0xb4},\n\t{value: 0x9902, lo: 0xbc, hi: 0xbc},\n\t// Block 0x10, offset 0x72\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x91, hi: 0x91},\n\t{value: 0x812d, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x93, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x94},\n\t{value: 0x451f, lo: 0x98, hi: 0x9f},\n\t// Block 0x11, offset 0x79\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x12, offset 0x7c\n\t{value: 0x0008, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2ca1, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x455f, lo: 0x9c, hi: 0x9d},\n\t{value: 0x456f, lo: 0x9f, hi: 0x9f},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbe},\n\t// Block 0x13, offset 0x84\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4597, lo: 0xb3, hi: 0xb3},\n\t{value: 0x459f, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x14, offset 0x88\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4577, lo: 0x99, hi: 0x9b},\n\t{value: 0x458f, lo: 0x9e, hi: 0x9e},\n\t// Block 0x15, offset 0x8c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x16, offset 0x8e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t// Block 0x17, offset 0x90\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2cb9, lo: 0x88, hi: 0x88},\n\t{value: 0x2cb1, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cc1, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x96, hi: 0x97},\n\t{value: 0x45a7, lo: 0x9c, hi: 0x9c},\n\t{value: 0x45af, lo: 0x9d, hi: 0x9d},\n\t// Block 0x18, offset 0x99\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x2cc9, lo: 0x94, hi: 0x94},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x19, offset 0x9d\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cd1, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2ce1, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cd9, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1a, offset 0xa4\n\t{value: 0x1801, lo: 0x04},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x3ef3, lo: 0x88, hi: 0x88},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8120, lo: 0x95, hi: 0x96},\n\t// Block 0x1b, offset 0xa9\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0xa000, lo: 0xbf, hi: 0xbf},\n\t// Block 0x1c, offset 0xac\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x2ce9, lo: 0x80, hi: 0x80},\n\t{value: 0x9900, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x2cf1, lo: 0x87, hi: 0x87},\n\t{value: 0x2cf9, lo: 0x88, hi: 0x88},\n\t{value: 0x2f53, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2ddb, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x95, hi: 0x96},\n\t// Block 0x1d, offset 0xb6\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1e, offset 0xb9\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2d01, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2d11, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d09, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1f, offset 0xc0\n\t{value: 0x6be7, lo: 0x07},\n\t{value: 0x9904, lo: 0x8a, hi: 0x8a},\n\t{value: 0x9900, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x3efb, lo: 0x9a, hi: 0x9a},\n\t{value: 0x2f5b, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2de6, lo: 0x9d, hi: 0x9d},\n\t{value: 0x2d19, lo: 0x9e, hi: 0x9f},\n\t// Block 0x20, offset 0xc8\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8122, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x21, offset 0xcb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8123, lo: 0x88, hi: 0x8b},\n\t// Block 0x22, offset 0xcd\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8124, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x23, offset 0xd0\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8125, lo: 0x88, hi: 0x8b},\n\t// Block 0x24, offset 0xd2\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x812d, lo: 0x98, hi: 0x99},\n\t{value: 0x812d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb7},\n\t{value: 0x812b, lo: 0xb9, hi: 0xb9},\n\t// Block 0x25, offset 0xd7\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x2647, lo: 0x83, hi: 0x83},\n\t{value: 0x264e, lo: 0x8d, hi: 0x8d},\n\t{value: 0x2655, lo: 0x92, hi: 0x92},\n\t{value: 0x265c, lo: 0x97, hi: 0x97},\n\t{value: 0x2663, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2640, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8126, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8127, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a87, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8128, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a90, lo: 0xb5, hi: 0xb5},\n\t{value: 0x45b7, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8200, lo: 0xb7, hi: 0xb7},\n\t{value: 0x45bf, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8200, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8127, lo: 0xba, hi: 0xbd},\n\t// Block 0x26, offset 0xe8\n\t{value: 0x0000, lo: 0x0b},\n\t{value: 0x8127, lo: 0x80, hi: 0x80},\n\t{value: 0x4a99, lo: 0x81, hi: 0x81},\n\t{value: 0x8132, lo: 0x82, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0x86, hi: 0x87},\n\t{value: 0x2671, lo: 0x93, hi: 0x93},\n\t{value: 0x2678, lo: 0x9d, hi: 0x9d},\n\t{value: 0x267f, lo: 0xa2, hi: 0xa2},\n\t{value: 0x2686, lo: 0xa7, hi: 0xa7},\n\t{value: 0x268d, lo: 0xac, hi: 0xac},\n\t{value: 0x266a, lo: 0xb9, hi: 0xb9},\n\t// Block 0x27, offset 0xf4\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x86, hi: 0x86},\n\t// Block 0x28, offset 0xf6\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x2d21, lo: 0xa6, hi: 0xa6},\n\t{value: 0x9900, lo: 0xae, hi: 0xae},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x29, offset 0xfc\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t// Block 0x2a, offset 0xfe\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x80, hi: 0x92},\n\t// Block 0x2b, offset 0x100\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xb900, lo: 0xa1, hi: 0xb5},\n\t// Block 0x2c, offset 0x102\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xa8, hi: 0xbf},\n\t// Block 0x2d, offset 0x104\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0x80, hi: 0x82},\n\t// Block 0x2e, offset 0x106\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9f},\n\t// Block 0x2f, offset 0x108\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x94, hi: 0x94},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x30, offset 0x10b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9d},\n\t// Block 0x31, offset 0x10e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8131, lo: 0xa9, hi: 0xa9},\n\t// Block 0x32, offset 0x110\n\t{value: 0x0004, lo: 0x02},\n\t{value: 0x812e, lo: 0xb9, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbb},\n\t// Block 0x33, offset 0x113\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x97, hi: 0x97},\n\t{value: 0x812d, lo: 0x98, hi: 0x98},\n\t// Block 0x34, offset 0x116\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8132, lo: 0xb5, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x35, offset 0x11a\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t{value: 0x812d, lo: 0xb5, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x36, offset 0x11f\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0x2d69, lo: 0x80, hi: 0x80},\n\t{value: 0x2d71, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x82, hi: 0x82},\n\t{value: 0x2d79, lo: 0x83, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xab, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xac},\n\t{value: 0x8132, lo: 0xad, hi: 0xb3},\n\t// Block 0x37, offset 0x128\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xaa, hi: 0xab},\n\t// Block 0x38, offset 0x12a\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8104, lo: 0xb2, hi: 0xb3},\n\t// Block 0x39, offset 0x12d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x3a, offset 0x12f\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x92},\n\t{value: 0x8101, lo: 0x94, hi: 0x94},\n\t{value: 0x812d, lo: 0x95, hi: 0x99},\n\t{value: 0x8132, lo: 0x9a, hi: 0x9b},\n\t{value: 0x812d, lo: 0x9c, hi: 0x9f},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8101, lo: 0xa2, hi: 0xa8},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t{value: 0x8132, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb9},\n\t// Block 0x3b, offset 0x13a\n\t{value: 0x0004, lo: 0x03},\n\t{value: 0x0433, lo: 0x80, hi: 0x81},\n\t{value: 0x8100, lo: 0x97, hi: 0x97},\n\t{value: 0x8100, lo: 0xbe, hi: 0xbe},\n\t// Block 0x3c, offset 0x13e\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x8132, lo: 0x90, hi: 0x91},\n\t{value: 0x8101, lo: 0x92, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x97},\n\t{value: 0x8101, lo: 0x98, hi: 0x9a},\n\t{value: 0x8132, lo: 0x9b, hi: 0x9c},\n\t{value: 0x8132, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8101, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa7},\n\t{value: 0x812d, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8132, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8101, lo: 0xaa, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t// Block 0x3d, offset 0x14c\n\t{value: 0x427e, lo: 0x02},\n\t{value: 0x01b8, lo: 0xa6, hi: 0xa6},\n\t{value: 0x0057, lo: 0xaa, hi: 0xab},\n\t// Block 0x3e, offset 0x14f\n\t{value: 0x0007, lo: 0x05},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t{value: 0x3bbc, lo: 0x9a, hi: 0x9b},\n\t{value: 0x3bca, lo: 0xae, hi: 0xae},\n\t// Block 0x3f, offset 0x155\n\t{value: 0x000e, lo: 0x05},\n\t{value: 0x3bd1, lo: 0x8d, hi: 0x8e},\n\t{value: 0x3bd8, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t// Block 0x40, offset 0x15b\n\t{value: 0x6405, lo: 0x0a},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0x3be6, lo: 0x84, hi: 0x84},\n\t{value: 0xa000, lo: 0x88, hi: 0x88},\n\t{value: 0x3bed, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0x3bf4, lo: 0x8c, hi: 0x8c},\n\t{value: 0xa000, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3bfb, lo: 0xa4, hi: 0xa5},\n\t{value: 0x3c02, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xbc, hi: 0xbc},\n\t// Block 0x41, offset 0x166\n\t{value: 0x0007, lo: 0x03},\n\t{value: 0x3c6b, lo: 0xa0, hi: 0xa1},\n\t{value: 0x3c95, lo: 0xa2, hi: 0xa3},\n\t{value: 0x3cbf, lo: 0xaa, hi: 0xad},\n\t// Block 0x42, offset 0x16a\n\t{value: 0x0004, lo: 0x01},\n\t{value: 0x048b, lo: 0xa9, hi: 0xaa},\n\t// Block 0x43, offset 0x16c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x44e0, lo: 0x9c, hi: 0x9c},\n\t// Block 0x44, offset 0x16e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xaf, hi: 0xb1},\n\t// Block 0x45, offset 0x170\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x46, offset 0x172\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa0, hi: 0xbf},\n\t// Block 0x47, offset 0x174\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x812c, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8131, lo: 0xab, hi: 0xab},\n\t{value: 0x8133, lo: 0xac, hi: 0xac},\n\t{value: 0x812e, lo: 0xad, hi: 0xad},\n\t{value: 0x812f, lo: 0xae, hi: 0xaf},\n\t// Block 0x48, offset 0x17a\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4aa2, lo: 0xb3, hi: 0xb3},\n\t{value: 0x4aa2, lo: 0xb5, hi: 0xb6},\n\t{value: 0x4aa2, lo: 0xba, hi: 0xbf},\n\t// Block 0x49, offset 0x17e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x4aa2, lo: 0x8f, hi: 0xa3},\n\t// Block 0x4a, offset 0x180\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xae, hi: 0xbe},\n\t// Block 0x4b, offset 0x182\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0x8100, lo: 0x84, hi: 0x84},\n\t{value: 0x8100, lo: 0x87, hi: 0x87},\n\t{value: 0x8100, lo: 0x90, hi: 0x90},\n\t{value: 0x8100, lo: 0x9e, hi: 0x9e},\n\t{value: 0x8100, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8100, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8100, lo: 0xbb, hi: 0xbb},\n\t// Block 0x4c, offset 0x18a\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8100, lo: 0x80, hi: 0x80},\n\t{value: 0x8100, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8100, lo: 0x8e, hi: 0x8e},\n\t// Block 0x4d, offset 0x18e\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb4, hi: 0xbd},\n\t// Block 0x4e, offset 0x191\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9f},\n\t// Block 0x4f, offset 0x193\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb1},\n\t// Block 0x50, offset 0x195\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t// Block 0x51, offset 0x197\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xa0, hi: 0xb1},\n\t// Block 0x52, offset 0x19a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xab, hi: 0xad},\n\t// Block 0x53, offset 0x19c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x93, hi: 0x93},\n\t// Block 0x54, offset 0x19e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb3, hi: 0xb3},\n\t// Block 0x55, offset 0x1a0\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t// Block 0x56, offset 0x1a2\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbf},\n\t// Block 0x57, offset 0x1a8\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t// Block 0x58, offset 0x1ab\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xad, hi: 0xad},\n\t// Block 0x59, offset 0x1ad\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xe500, lo: 0x80, hi: 0x80},\n\t{value: 0xc600, lo: 0x81, hi: 0x9b},\n\t{value: 0xe500, lo: 0x9c, hi: 0x9c},\n\t{value: 0xc600, lo: 0x9d, hi: 0xb7},\n\t{value: 0xe500, lo: 0xb8, hi: 0xb8},\n\t{value: 0xc600, lo: 0xb9, hi: 0xbf},\n\t// Block 0x5a, offset 0x1b4\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x93},\n\t{value: 0xe500, lo: 0x94, hi: 0x94},\n\t{value: 0xc600, lo: 0x95, hi: 0xaf},\n\t{value: 0xe500, lo: 0xb0, hi: 0xb0},\n\t{value: 0xc600, lo: 0xb1, hi: 0xbf},\n\t// Block 0x5b, offset 0x1ba\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8b},\n\t{value: 0xe500, lo: 0x8c, hi: 0x8c},\n\t{value: 0xc600, lo: 0x8d, hi: 0xa7},\n\t{value: 0xe500, lo: 0xa8, hi: 0xa8},\n\t{value: 0xc600, lo: 0xa9, hi: 0xbf},\n\t// Block 0x5c, offset 0x1c0\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xc600, lo: 0x80, hi: 0x83},\n\t{value: 0xe500, lo: 0x84, hi: 0x84},\n\t{value: 0xc600, lo: 0x85, hi: 0x9f},\n\t{value: 0xe500, lo: 0xa0, hi: 0xa0},\n\t{value: 0xc600, lo: 0xa1, hi: 0xbb},\n\t{value: 0xe500, lo: 0xbc, hi: 0xbc},\n\t{value: 0xc600, lo: 0xbd, hi: 0xbf},\n\t// Block 0x5d, offset 0x1c8\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x97},\n\t{value: 0xe500, lo: 0x98, hi: 0x98},\n\t{value: 0xc600, lo: 0x99, hi: 0xb3},\n\t{value: 0xe500, lo: 0xb4, hi: 0xb4},\n\t{value: 0xc600, lo: 0xb5, hi: 0xbf},\n\t// Block 0x5e, offset 0x1ce\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8f},\n\t{value: 0xe500, lo: 0x90, hi: 0x90},\n\t{value: 0xc600, lo: 0x91, hi: 0xab},\n\t{value: 0xe500, lo: 0xac, hi: 0xac},\n\t{value: 0xc600, lo: 0xad, hi: 0xbf},\n\t// Block 0x5f, offset 0x1d4\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t{value: 0xe500, lo: 0xa4, hi: 0xa4},\n\t{value: 0xc600, lo: 0xa5, hi: 0xbf},\n\t// Block 0x60, offset 0x1da\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t// Block 0x61, offset 0x1de\n\t{value: 0x0006, lo: 0x0d},\n\t{value: 0x4393, lo: 0x9d, hi: 0x9d},\n\t{value: 0x8115, lo: 0x9e, hi: 0x9e},\n\t{value: 0x4405, lo: 0x9f, hi: 0x9f},\n\t{value: 0x43f3, lo: 0xaa, hi: 0xab},\n\t{value: 0x44f7, lo: 0xac, hi: 0xac},\n\t{value: 0x44ff, lo: 0xad, hi: 0xad},\n\t{value: 0x434b, lo: 0xae, hi: 0xb1},\n\t{value: 0x4369, lo: 0xb2, hi: 0xb4},\n\t{value: 0x4381, lo: 0xb5, hi: 0xb6},\n\t{value: 0x438d, lo: 0xb8, hi: 0xb8},\n\t{value: 0x4399, lo: 0xb9, hi: 0xbb},\n\t{value: 0x43b1, lo: 0xbc, hi: 0xbc},\n\t{value: 0x43b7, lo: 0xbe, hi: 0xbe},\n\t// Block 0x62, offset 0x1ec\n\t{value: 0x0006, lo: 0x08},\n\t{value: 0x43bd, lo: 0x80, hi: 0x81},\n\t{value: 0x43c9, lo: 0x83, hi: 0x84},\n\t{value: 0x43db, lo: 0x86, hi: 0x89},\n\t{value: 0x43ff, lo: 0x8a, hi: 0x8a},\n\t{value: 0x437b, lo: 0x8b, hi: 0x8b},\n\t{value: 0x4363, lo: 0x8c, hi: 0x8c},\n\t{value: 0x43ab, lo: 0x8d, hi: 0x8d},\n\t{value: 0x43d5, lo: 0x8e, hi: 0x8e},\n\t// Block 0x63, offset 0x1f5\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0xa4, hi: 0xa5},\n\t{value: 0x8100, lo: 0xb0, hi: 0xb1},\n\t// Block 0x64, offset 0x1f8\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0x9b, hi: 0x9d},\n\t{value: 0x8200, lo: 0x9e, hi: 0xa3},\n\t// Block 0x65, offset 0x1fb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x90, hi: 0x90},\n\t// Block 0x66, offset 0x1fd\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0x99, hi: 0x99},\n\t{value: 0x8200, lo: 0xb2, hi: 0xb4},\n\t// Block 0x67, offset 0x200\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xbc, hi: 0xbd},\n\t// Block 0x68, offset 0x202\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa6},\n\t{value: 0x812d, lo: 0xa7, hi: 0xad},\n\t{value: 0x8132, lo: 0xae, hi: 0xaf},\n\t// Block 0x69, offset 0x206\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8100, lo: 0x89, hi: 0x8c},\n\t{value: 0x8100, lo: 0xb0, hi: 0xb2},\n\t{value: 0x8100, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8100, lo: 0xb6, hi: 0xbf},\n\t// Block 0x6a, offset 0x20b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x81, hi: 0x8c},\n\t// Block 0x6b, offset 0x20d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xb5, hi: 0xba},\n\t// Block 0x6c, offset 0x20f\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x4aa2, lo: 0x9e, hi: 0x9f},\n\t{value: 0x4aa2, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4aa2, lo: 0xa5, hi: 0xa6},\n\t{value: 0x4aa2, lo: 0xaa, hi: 0xaf},\n\t// Block 0x6d, offset 0x214\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x4aa2, lo: 0x82, hi: 0x87},\n\t{value: 0x4aa2, lo: 0x8a, hi: 0x8f},\n\t{value: 0x4aa2, lo: 0x92, hi: 0x97},\n\t{value: 0x4aa2, lo: 0x9a, hi: 0x9c},\n\t{value: 0x8100, lo: 0xa3, hi: 0xa3},\n\t// Block 0x6e, offset 0x21a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x6f, offset 0x21c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xa0, hi: 0xa0},\n\t// Block 0x70, offset 0x21e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb6, hi: 0xba},\n\t// Block 0x71, offset 0x220\n\t{value: 0x002c, lo: 0x05},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8101, lo: 0xb9, hi: 0xba},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x72, offset 0x226\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t// Block 0x73, offset 0x229\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa7},\n\t// Block 0x74, offset 0x22b\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x8132, lo: 0x88, hi: 0x8a},\n\t{value: 0x812d, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8132, lo: 0x8c, hi: 0x8c},\n\t{value: 0x812d, lo: 0x8d, hi: 0x90},\n\t// Block 0x75, offset 0x231\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x76, offset 0x234\n\t{value: 0x17fe, lo: 0x07},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x423b, lo: 0x9a, hi: 0x9a},\n\t{value: 0xa000, lo: 0x9b, hi: 0x9b},\n\t{value: 0x4245, lo: 0x9c, hi: 0x9c},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x424f, lo: 0xab, hi: 0xab},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x77, offset 0x23c\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0x8132, lo: 0x80, hi: 0x82},\n\t{value: 0x9900, lo: 0xa7, hi: 0xa7},\n\t{value: 0x2d81, lo: 0xae, hi: 0xae},\n\t{value: 0x2d8b, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb1, hi: 0xb2},\n\t{value: 0x8104, lo: 0xb3, hi: 0xb4},\n\t// Block 0x78, offset 0x243\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x79, offset 0x246\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb5, hi: 0xb5},\n\t{value: 0x8102, lo: 0xb6, hi: 0xb6},\n\t// Block 0x7a, offset 0x249\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x8102, lo: 0xa9, hi: 0xaa},\n\t// Block 0x7b, offset 0x24b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x7c, offset 0x24e\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2d95, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d9f, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x8132, lo: 0xa6, hi: 0xac},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t// Block 0x7d, offset 0x256\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x86, hi: 0x86},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9e},\n\t// Block 0x7e, offset 0x25a\n\t{value: 0x6b57, lo: 0x06},\n\t{value: 0x9900, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb9, hi: 0xb9},\n\t{value: 0x9900, lo: 0xba, hi: 0xba},\n\t{value: 0x2db3, lo: 0xbb, hi: 0xbb},\n\t{value: 0x2da9, lo: 0xbc, hi: 0xbd},\n\t{value: 0x2dbd, lo: 0xbe, hi: 0xbe},\n\t// Block 0x7f, offset 0x261\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x83, hi: 0x83},\n\t// Block 0x80, offset 0x264\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x9900, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb8, hi: 0xb9},\n\t{value: 0x2dc7, lo: 0xba, hi: 0xba},\n\t{value: 0x2dd1, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x81, offset 0x26a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0x80, hi: 0x80},\n\t// Block 0x82, offset 0x26c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x83, offset 0x26f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xab, hi: 0xab},\n\t// Block 0x84, offset 0x271\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8102, lo: 0xba, hi: 0xba},\n\t// Block 0x85, offset 0x274\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t// Block 0x86, offset 0x276\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x87, offset 0x278\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x87, hi: 0x87},\n\t// Block 0x88, offset 0x27a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x99, hi: 0x99},\n\t// Block 0x89, offset 0x27c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0x82, hi: 0x82},\n\t{value: 0x8104, lo: 0x84, hi: 0x85},\n\t// Block 0x8a, offset 0x27f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x97, hi: 0x97},\n\t// Block 0x8b, offset 0x281\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0xb0, hi: 0xb4},\n\t// Block 0x8c, offset 0x283\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb6},\n\t// Block 0x8d, offset 0x285\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0x9e, hi: 0x9e},\n\t// Block 0x8e, offset 0x287\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x45cf, lo: 0x9e, hi: 0x9e},\n\t{value: 0x45d9, lo: 0x9f, hi: 0x9f},\n\t{value: 0x460d, lo: 0xa0, hi: 0xa0},\n\t{value: 0x461b, lo: 0xa1, hi: 0xa1},\n\t{value: 0x4629, lo: 0xa2, hi: 0xa2},\n\t{value: 0x4637, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4645, lo: 0xa4, hi: 0xa4},\n\t{value: 0x812b, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8101, lo: 0xa7, hi: 0xa9},\n\t{value: 0x8130, lo: 0xad, hi: 0xad},\n\t{value: 0x812b, lo: 0xae, hi: 0xb2},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbf},\n\t// Block 0x8f, offset 0x294\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x812d, lo: 0x80, hi: 0x82},\n\t{value: 0x8132, lo: 0x85, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8b},\n\t{value: 0x8132, lo: 0xaa, hi: 0xad},\n\t{value: 0x45e3, lo: 0xbb, hi: 0xbb},\n\t{value: 0x45ed, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4653, lo: 0xbd, hi: 0xbd},\n\t{value: 0x466f, lo: 0xbe, hi: 0xbe},\n\t{value: 0x4661, lo: 0xbf, hi: 0xbf},\n\t// Block 0x90, offset 0x29e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x467d, lo: 0x80, hi: 0x80},\n\t// Block 0x91, offset 0x2a0\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x82, hi: 0x84},\n\t// Block 0x92, offset 0x2a2\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0x80, hi: 0x86},\n\t{value: 0x8132, lo: 0x88, hi: 0x98},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa1},\n\t{value: 0x8132, lo: 0xa3, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa6, hi: 0xaa},\n\t// Block 0x93, offset 0x2a8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xac, hi: 0xaf},\n\t// Block 0x94, offset 0x2aa\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x90, hi: 0x96},\n\t// Block 0x95, offset 0x2ac\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x84, hi: 0x89},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x96, offset 0x2af\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x93, hi: 0x93},\n}\n\n// lookup returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfkcTrie) lookup(s []byte) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfkcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfkcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfkcTrie) lookupUnsafe(s []byte) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfkcValues[c0]\n\t}\n\ti := nfkcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// lookupString returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfkcTrie) lookupString(s string) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfkcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfkcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfkcTrie) lookupStringUnsafe(s string) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfkcValues[c0]\n\t}\n\ti := nfkcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// nfkcTrie. Total size: 18684 bytes (18.25 KiB). Checksum: 113e23c477adfabd.\ntype nfkcTrie struct{}\n\nfunc newNfkcTrie(i int) *nfkcTrie {\n\treturn &nfkcTrie{}\n}\n\n// lookupValue determines the type of block n and looks up the value for b.\nfunc (t *nfkcTrie) lookupValue(n uint32, b byte) uint16 {\n\tswitch {\n\tcase n < 92:\n\t\treturn uint16(nfkcValues[n<<6+uint32(b)])\n\tdefault:\n\t\tn -= 92\n\t\treturn uint16(nfkcSparse.lookup(n, b))\n\t}\n}\n\n// nfkcValues: 94 blocks, 6016 entries, 12032 bytes\n// The third block is the zero block.\nvar nfkcValues = [6016]uint16{\n\t// Block 0x0, offset 0x0\n\t0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,\n\t// Block 0x1, offset 0x40\n\t0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,\n\t0x46: 0xa000, 0x47: 0xa000, 0x48: 0xa000, 0x49: 0xa000, 0x4a: 0xa000, 0x4b: 0xa000,\n\t0x4c: 0xa000, 0x4d: 0xa000, 0x4e: 0xa000, 0x4f: 0xa000, 0x50: 0xa000,\n\t0x52: 0xa000, 0x53: 0xa000, 0x54: 0xa000, 0x55: 0xa000, 0x56: 0xa000, 0x57: 0xa000,\n\t0x58: 0xa000, 0x59: 0xa000, 0x5a: 0xa000,\n\t0x61: 0xa000, 0x62: 0xa000, 0x63: 0xa000,\n\t0x64: 0xa000, 0x65: 0xa000, 0x66: 0xa000, 0x67: 0xa000, 0x68: 0xa000, 0x69: 0xa000,\n\t0x6a: 0xa000, 0x6b: 0xa000, 0x6c: 0xa000, 0x6d: 0xa000, 0x6e: 0xa000, 0x6f: 0xa000,\n\t0x70: 0xa000, 0x72: 0xa000, 0x73: 0xa000, 0x74: 0xa000, 0x75: 0xa000,\n\t0x76: 0xa000, 0x77: 0xa000, 0x78: 0xa000, 0x79: 0xa000, 0x7a: 0xa000,\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc0: 0x2f72, 0xc1: 0x2f77, 0xc2: 0x468b, 0xc3: 0x2f7c, 0xc4: 0x469a, 0xc5: 0x469f,\n\t0xc6: 0xa000, 0xc7: 0x46a9, 0xc8: 0x2fe5, 0xc9: 0x2fea, 0xca: 0x46ae, 0xcb: 0x2ffe,\n\t0xcc: 0x3071, 0xcd: 0x3076, 0xce: 0x307b, 0xcf: 0x46c2, 0xd1: 0x3107,\n\t0xd2: 0x312a, 0xd3: 0x312f, 0xd4: 0x46cc, 0xd5: 0x46d1, 0xd6: 0x46e0,\n\t0xd8: 0xa000, 0xd9: 0x31b6, 0xda: 0x31bb, 0xdb: 0x31c0, 0xdc: 0x4712, 0xdd: 0x3238,\n\t0xe0: 0x327e, 0xe1: 0x3283, 0xe2: 0x471c, 0xe3: 0x3288,\n\t0xe4: 0x472b, 0xe5: 0x4730, 0xe6: 0xa000, 0xe7: 0x473a, 0xe8: 0x32f1, 0xe9: 0x32f6,\n\t0xea: 0x473f, 0xeb: 0x330a, 0xec: 0x3382, 0xed: 0x3387, 0xee: 0x338c, 0xef: 0x4753,\n\t0xf1: 0x3418, 0xf2: 0x343b, 0xf3: 0x3440, 0xf4: 0x475d, 0xf5: 0x4762,\n\t0xf6: 0x4771, 0xf8: 0xa000, 0xf9: 0x34cc, 0xfa: 0x34d1, 0xfb: 0x34d6,\n\t0xfc: 0x47a3, 0xfd: 0x3553, 0xff: 0x356c,\n\t// Block 0x4, offset 0x100\n\t0x100: 0x2f81, 0x101: 0x328d, 0x102: 0x4690, 0x103: 0x4721, 0x104: 0x2f9f, 0x105: 0x32ab,\n\t0x106: 0x2fb3, 0x107: 0x32bf, 0x108: 0x2fb8, 0x109: 0x32c4, 0x10a: 0x2fbd, 0x10b: 0x32c9,\n\t0x10c: 0x2fc2, 0x10d: 0x32ce, 0x10e: 0x2fcc, 0x10f: 0x32d8,\n\t0x112: 0x46b3, 0x113: 0x4744, 0x114: 0x2ff4, 0x115: 0x3300, 0x116: 0x2ff9, 0x117: 0x3305,\n\t0x118: 0x3017, 0x119: 0x3323, 0x11a: 0x3008, 0x11b: 0x3314, 0x11c: 0x3030, 0x11d: 0x333c,\n\t0x11e: 0x303a, 0x11f: 0x3346, 0x120: 0x303f, 0x121: 0x334b, 0x122: 0x3049, 0x123: 0x3355,\n\t0x124: 0x304e, 0x125: 0x335a, 0x128: 0x3080, 0x129: 0x3391,\n\t0x12a: 0x3085, 0x12b: 0x3396, 0x12c: 0x308a, 0x12d: 0x339b, 0x12e: 0x30ad, 0x12f: 0x33b9,\n\t0x130: 0x308f, 0x132: 0x195d, 0x133: 0x19ea, 0x134: 0x30b7, 0x135: 0x33c3,\n\t0x136: 0x30cb, 0x137: 0x33dc, 0x139: 0x30d5, 0x13a: 0x33e6, 0x13b: 0x30df,\n\t0x13c: 0x33f0, 0x13d: 0x30da, 0x13e: 0x33eb, 0x13f: 0x1baf,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x1c37, 0x143: 0x3102, 0x144: 0x3413, 0x145: 0x311b,\n\t0x146: 0x342c, 0x147: 0x3111, 0x148: 0x3422, 0x149: 0x1c5f,\n\t0x14c: 0x46d6, 0x14d: 0x4767, 0x14e: 0x3134, 0x14f: 0x3445, 0x150: 0x313e, 0x151: 0x344f,\n\t0x154: 0x315c, 0x155: 0x346d, 0x156: 0x3175, 0x157: 0x3486,\n\t0x158: 0x3166, 0x159: 0x3477, 0x15a: 0x46f9, 0x15b: 0x478a, 0x15c: 0x317f, 0x15d: 0x3490,\n\t0x15e: 0x318e, 0x15f: 0x349f, 0x160: 0x46fe, 0x161: 0x478f, 0x162: 0x31a7, 0x163: 0x34bd,\n\t0x164: 0x3198, 0x165: 0x34ae, 0x168: 0x4708, 0x169: 0x4799,\n\t0x16a: 0x470d, 0x16b: 0x479e, 0x16c: 0x31c5, 0x16d: 0x34db, 0x16e: 0x31cf, 0x16f: 0x34e5,\n\t0x170: 0x31d4, 0x171: 0x34ea, 0x172: 0x31f2, 0x173: 0x3508, 0x174: 0x3215, 0x175: 0x352b,\n\t0x176: 0x323d, 0x177: 0x3558, 0x178: 0x3251, 0x179: 0x3260, 0x17a: 0x3580, 0x17b: 0x326a,\n\t0x17c: 0x358a, 0x17d: 0x326f, 0x17e: 0x358f, 0x17f: 0x00a7,\n\t// Block 0x6, offset 0x180\n\t0x184: 0x2df1, 0x185: 0x2df7,\n\t0x186: 0x2dfd, 0x187: 0x1972, 0x188: 0x1975, 0x189: 0x1a0b, 0x18a: 0x198a, 0x18b: 0x198d,\n\t0x18c: 0x1a41, 0x18d: 0x2f8b, 0x18e: 0x3297, 0x18f: 0x3099, 0x190: 0x33a5, 0x191: 0x3143,\n\t0x192: 0x3454, 0x193: 0x31d9, 0x194: 0x34ef, 0x195: 0x39d2, 0x196: 0x3b61, 0x197: 0x39cb,\n\t0x198: 0x3b5a, 0x199: 0x39d9, 0x19a: 0x3b68, 0x19b: 0x39c4, 0x19c: 0x3b53,\n\t0x19e: 0x38b3, 0x19f: 0x3a42, 0x1a0: 0x38ac, 0x1a1: 0x3a3b, 0x1a2: 0x35b6, 0x1a3: 0x35c8,\n\t0x1a6: 0x3044, 0x1a7: 0x3350, 0x1a8: 0x30c1, 0x1a9: 0x33d2,\n\t0x1aa: 0x46ef, 0x1ab: 0x4780, 0x1ac: 0x3993, 0x1ad: 0x3b22, 0x1ae: 0x35da, 0x1af: 0x35e0,\n\t0x1b0: 0x33c8, 0x1b1: 0x1942, 0x1b2: 0x1945, 0x1b3: 0x19d2, 0x1b4: 0x302b, 0x1b5: 0x3337,\n\t0x1b8: 0x30fd, 0x1b9: 0x340e, 0x1ba: 0x38ba, 0x1bb: 0x3a49,\n\t0x1bc: 0x35b0, 0x1bd: 0x35c2, 0x1be: 0x35bc, 0x1bf: 0x35ce,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x2f90, 0x1c1: 0x329c, 0x1c2: 0x2f95, 0x1c3: 0x32a1, 0x1c4: 0x300d, 0x1c5: 0x3319,\n\t0x1c6: 0x3012, 0x1c7: 0x331e, 0x1c8: 0x309e, 0x1c9: 0x33aa, 0x1ca: 0x30a3, 0x1cb: 0x33af,\n\t0x1cc: 0x3148, 0x1cd: 0x3459, 0x1ce: 0x314d, 0x1cf: 0x345e, 0x1d0: 0x316b, 0x1d1: 0x347c,\n\t0x1d2: 0x3170, 0x1d3: 0x3481, 0x1d4: 0x31de, 0x1d5: 0x34f4, 0x1d6: 0x31e3, 0x1d7: 0x34f9,\n\t0x1d8: 0x3189, 0x1d9: 0x349a, 0x1da: 0x31a2, 0x1db: 0x34b8,\n\t0x1de: 0x305d, 0x1df: 0x3369,\n\t0x1e6: 0x4695, 0x1e7: 0x4726, 0x1e8: 0x46bd, 0x1e9: 0x474e,\n\t0x1ea: 0x3962, 0x1eb: 0x3af1, 0x1ec: 0x393f, 0x1ed: 0x3ace, 0x1ee: 0x46db, 0x1ef: 0x476c,\n\t0x1f0: 0x395b, 0x1f1: 0x3aea, 0x1f2: 0x3247, 0x1f3: 0x3562,\n\t// Block 0x8, offset 0x200\n\t0x200: 0x9932, 0x201: 0x9932, 0x202: 0x9932, 0x203: 0x9932, 0x204: 0x9932, 0x205: 0x8132,\n\t0x206: 0x9932, 0x207: 0x9932, 0x208: 0x9932, 0x209: 0x9932, 0x20a: 0x9932, 0x20b: 0x9932,\n\t0x20c: 0x9932, 0x20d: 0x8132, 0x20e: 0x8132, 0x20f: 0x9932, 0x210: 0x8132, 0x211: 0x9932,\n\t0x212: 0x8132, 0x213: 0x9932, 0x214: 0x9932, 0x215: 0x8133, 0x216: 0x812d, 0x217: 0x812d,\n\t0x218: 0x812d, 0x219: 0x812d, 0x21a: 0x8133, 0x21b: 0x992b, 0x21c: 0x812d, 0x21d: 0x812d,\n\t0x21e: 0x812d, 0x21f: 0x812d, 0x220: 0x812d, 0x221: 0x8129, 0x222: 0x8129, 0x223: 0x992d,\n\t0x224: 0x992d, 0x225: 0x992d, 0x226: 0x992d, 0x227: 0x9929, 0x228: 0x9929, 0x229: 0x812d,\n\t0x22a: 0x812d, 0x22b: 0x812d, 0x22c: 0x812d, 0x22d: 0x992d, 0x22e: 0x992d, 0x22f: 0x812d,\n\t0x230: 0x992d, 0x231: 0x992d, 0x232: 0x812d, 0x233: 0x812d, 0x234: 0x8101, 0x235: 0x8101,\n\t0x236: 0x8101, 0x237: 0x8101, 0x238: 0x9901, 0x239: 0x812d, 0x23a: 0x812d, 0x23b: 0x812d,\n\t0x23c: 0x812d, 0x23d: 0x8132, 0x23e: 0x8132, 0x23f: 0x8132,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x49b1, 0x241: 0x49b6, 0x242: 0x9932, 0x243: 0x49bb, 0x244: 0x4a74, 0x245: 0x9936,\n\t0x246: 0x8132, 0x247: 0x812d, 0x248: 0x812d, 0x249: 0x812d, 0x24a: 0x8132, 0x24b: 0x8132,\n\t0x24c: 0x8132, 0x24d: 0x812d, 0x24e: 0x812d, 0x250: 0x8132, 0x251: 0x8132,\n\t0x252: 0x8132, 0x253: 0x812d, 0x254: 0x812d, 0x255: 0x812d, 0x256: 0x812d, 0x257: 0x8132,\n\t0x258: 0x8133, 0x259: 0x812d, 0x25a: 0x812d, 0x25b: 0x8132, 0x25c: 0x8134, 0x25d: 0x8135,\n\t0x25e: 0x8135, 0x25f: 0x8134, 0x260: 0x8135, 0x261: 0x8135, 0x262: 0x8134, 0x263: 0x8132,\n\t0x264: 0x8132, 0x265: 0x8132, 0x266: 0x8132, 0x267: 0x8132, 0x268: 0x8132, 0x269: 0x8132,\n\t0x26a: 0x8132, 0x26b: 0x8132, 0x26c: 0x8132, 0x26d: 0x8132, 0x26e: 0x8132, 0x26f: 0x8132,\n\t0x274: 0x0170,\n\t0x27a: 0x42a8,\n\t0x27e: 0x0037,\n\t// Block 0xa, offset 0x280\n\t0x284: 0x425d, 0x285: 0x447e,\n\t0x286: 0x35ec, 0x287: 0x00ce, 0x288: 0x360a, 0x289: 0x3616, 0x28a: 0x3628,\n\t0x28c: 0x3646, 0x28e: 0x3658, 0x28f: 0x3676, 0x290: 0x3e0b, 0x291: 0xa000,\n\t0x295: 0xa000, 0x297: 0xa000,\n\t0x299: 0xa000,\n\t0x29f: 0xa000, 0x2a1: 0xa000,\n\t0x2a5: 0xa000, 0x2a9: 0xa000,\n\t0x2aa: 0x363a, 0x2ab: 0x366a, 0x2ac: 0x4801, 0x2ad: 0x369a, 0x2ae: 0x482b, 0x2af: 0x36ac,\n\t0x2b0: 0x3e73, 0x2b1: 0xa000, 0x2b5: 0xa000,\n\t0x2b7: 0xa000, 0x2b9: 0xa000,\n\t0x2bf: 0xa000,\n\t// Block 0xb, offset 0x2c0\n\t0x2c1: 0xa000, 0x2c5: 0xa000,\n\t0x2c9: 0xa000, 0x2ca: 0x4843, 0x2cb: 0x4861,\n\t0x2cc: 0x36ca, 0x2cd: 0x36e2, 0x2ce: 0x4879, 0x2d0: 0x01be, 0x2d1: 0x01d0,\n\t0x2d2: 0x01ac, 0x2d3: 0x430f, 0x2d4: 0x4315, 0x2d5: 0x01fa, 0x2d6: 0x01e8,\n\t0x2f0: 0x01d6, 0x2f1: 0x01eb, 0x2f2: 0x01ee, 0x2f4: 0x0188, 0x2f5: 0x01c7,\n\t0x2f9: 0x01a6,\n\t// Block 0xc, offset 0x300\n\t0x300: 0x3724, 0x301: 0x3730, 0x303: 0x371e,\n\t0x306: 0xa000, 0x307: 0x370c,\n\t0x30c: 0x3760, 0x30d: 0x3748, 0x30e: 0x3772, 0x310: 0xa000,\n\t0x313: 0xa000, 0x315: 0xa000, 0x316: 0xa000, 0x317: 0xa000,\n\t0x318: 0xa000, 0x319: 0x3754, 0x31a: 0xa000,\n\t0x31e: 0xa000, 0x323: 0xa000,\n\t0x327: 0xa000,\n\t0x32b: 0xa000, 0x32d: 0xa000,\n\t0x330: 0xa000, 0x333: 0xa000, 0x335: 0xa000,\n\t0x336: 0xa000, 0x337: 0xa000, 0x338: 0xa000, 0x339: 0x37d8, 0x33a: 0xa000,\n\t0x33e: 0xa000,\n\t// Block 0xd, offset 0x340\n\t0x341: 0x3736, 0x342: 0x37ba,\n\t0x350: 0x3712, 0x351: 0x3796,\n\t0x352: 0x3718, 0x353: 0x379c, 0x356: 0x372a, 0x357: 0x37ae,\n\t0x358: 0xa000, 0x359: 0xa000, 0x35a: 0x382c, 0x35b: 0x3832, 0x35c: 0x373c, 0x35d: 0x37c0,\n\t0x35e: 0x3742, 0x35f: 0x37c6, 0x362: 0x374e, 0x363: 0x37d2,\n\t0x364: 0x375a, 0x365: 0x37de, 0x366: 0x3766, 0x367: 0x37ea, 0x368: 0xa000, 0x369: 0xa000,\n\t0x36a: 0x3838, 0x36b: 0x383e, 0x36c: 0x3790, 0x36d: 0x3814, 0x36e: 0x376c, 0x36f: 0x37f0,\n\t0x370: 0x3778, 0x371: 0x37fc, 0x372: 0x377e, 0x373: 0x3802, 0x374: 0x3784, 0x375: 0x3808,\n\t0x378: 0x378a, 0x379: 0x380e,\n\t// Block 0xe, offset 0x380\n\t0x387: 0x1d64,\n\t0x391: 0x812d,\n\t0x392: 0x8132, 0x393: 0x8132, 0x394: 0x8132, 0x395: 0x8132, 0x396: 0x812d, 0x397: 0x8132,\n\t0x398: 0x8132, 0x399: 0x8132, 0x39a: 0x812e, 0x39b: 0x812d, 0x39c: 0x8132, 0x39d: 0x8132,\n\t0x39e: 0x8132, 0x39f: 0x8132, 0x3a0: 0x8132, 0x3a1: 0x8132, 0x3a2: 0x812d, 0x3a3: 0x812d,\n\t0x3a4: 0x812d, 0x3a5: 0x812d, 0x3a6: 0x812d, 0x3a7: 0x812d, 0x3a8: 0x8132, 0x3a9: 0x8132,\n\t0x3aa: 0x812d, 0x3ab: 0x8132, 0x3ac: 0x8132, 0x3ad: 0x812e, 0x3ae: 0x8131, 0x3af: 0x8132,\n\t0x3b0: 0x8105, 0x3b1: 0x8106, 0x3b2: 0x8107, 0x3b3: 0x8108, 0x3b4: 0x8109, 0x3b5: 0x810a,\n\t0x3b6: 0x810b, 0x3b7: 0x810c, 0x3b8: 0x810d, 0x3b9: 0x810e, 0x3ba: 0x810e, 0x3bb: 0x810f,\n\t0x3bc: 0x8110, 0x3bd: 0x8111, 0x3bf: 0x8112,\n\t// Block 0xf, offset 0x3c0\n\t0x3c8: 0xa000, 0x3ca: 0xa000, 0x3cb: 0x8116,\n\t0x3cc: 0x8117, 0x3cd: 0x8118, 0x3ce: 0x8119, 0x3cf: 0x811a, 0x3d0: 0x811b, 0x3d1: 0x811c,\n\t0x3d2: 0x811d, 0x3d3: 0x9932, 0x3d4: 0x9932, 0x3d5: 0x992d, 0x3d6: 0x812d, 0x3d7: 0x8132,\n\t0x3d8: 0x8132, 0x3d9: 0x8132, 0x3da: 0x8132, 0x3db: 0x8132, 0x3dc: 0x812d, 0x3dd: 0x8132,\n\t0x3de: 0x8132, 0x3df: 0x812d,\n\t0x3f0: 0x811e, 0x3f5: 0x1d87,\n\t0x3f6: 0x2016, 0x3f7: 0x2052, 0x3f8: 0x204d,\n\t// Block 0x10, offset 0x400\n\t0x413: 0x812d, 0x414: 0x8132, 0x415: 0x8132, 0x416: 0x8132, 0x417: 0x8132,\n\t0x418: 0x8132, 0x419: 0x8132, 0x41a: 0x8132, 0x41b: 0x8132, 0x41c: 0x8132, 0x41d: 0x8132,\n\t0x41e: 0x8132, 0x41f: 0x8132, 0x420: 0x8132, 0x421: 0x8132, 0x423: 0x812d,\n\t0x424: 0x8132, 0x425: 0x8132, 0x426: 0x812d, 0x427: 0x8132, 0x428: 0x8132, 0x429: 0x812d,\n\t0x42a: 0x8132, 0x42b: 0x8132, 0x42c: 0x8132, 0x42d: 0x812d, 0x42e: 0x812d, 0x42f: 0x812d,\n\t0x430: 0x8116, 0x431: 0x8117, 0x432: 0x8118, 0x433: 0x8132, 0x434: 0x8132, 0x435: 0x8132,\n\t0x436: 0x812d, 0x437: 0x8132, 0x438: 0x8132, 0x439: 0x812d, 0x43a: 0x812d, 0x43b: 0x8132,\n\t0x43c: 0x8132, 0x43d: 0x8132, 0x43e: 0x8132, 0x43f: 0x8132,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xa000,\n\t0x446: 0x2d29, 0x447: 0xa000, 0x448: 0x2d31, 0x449: 0xa000, 0x44a: 0x2d39, 0x44b: 0xa000,\n\t0x44c: 0x2d41, 0x44d: 0xa000, 0x44e: 0x2d49, 0x451: 0xa000,\n\t0x452: 0x2d51,\n\t0x474: 0x8102, 0x475: 0x9900,\n\t0x47a: 0xa000, 0x47b: 0x2d59,\n\t0x47c: 0xa000, 0x47d: 0x2d61, 0x47e: 0xa000, 0x47f: 0xa000,\n\t// Block 0x12, offset 0x480\n\t0x480: 0x0069, 0x481: 0x006b, 0x482: 0x006f, 0x483: 0x0083, 0x484: 0x00f5, 0x485: 0x00f8,\n\t0x486: 0x0413, 0x487: 0x0085, 0x488: 0x0089, 0x489: 0x008b, 0x48a: 0x0104, 0x48b: 0x0107,\n\t0x48c: 0x010a, 0x48d: 0x008f, 0x48f: 0x0097, 0x490: 0x009b, 0x491: 0x00e0,\n\t0x492: 0x009f, 0x493: 0x00fe, 0x494: 0x0417, 0x495: 0x041b, 0x496: 0x00a1, 0x497: 0x00a9,\n\t0x498: 0x00ab, 0x499: 0x0423, 0x49a: 0x012b, 0x49b: 0x00ad, 0x49c: 0x0427, 0x49d: 0x01be,\n\t0x49e: 0x01c1, 0x49f: 0x01c4, 0x4a0: 0x01fa, 0x4a1: 0x01fd, 0x4a2: 0x0093, 0x4a3: 0x00a5,\n\t0x4a4: 0x00ab, 0x4a5: 0x00ad, 0x4a6: 0x01be, 0x4a7: 0x01c1, 0x4a8: 0x01eb, 0x4a9: 0x01fa,\n\t0x4aa: 0x01fd,\n\t0x4b8: 0x020c,\n\t// Block 0x13, offset 0x4c0\n\t0x4db: 0x00fb, 0x4dc: 0x0087, 0x4dd: 0x0101,\n\t0x4de: 0x00d4, 0x4df: 0x010a, 0x4e0: 0x008d, 0x4e1: 0x010d, 0x4e2: 0x0110, 0x4e3: 0x0116,\n\t0x4e4: 0x011c, 0x4e5: 0x011f, 0x4e6: 0x0122, 0x4e7: 0x042b, 0x4e8: 0x016a, 0x4e9: 0x0128,\n\t0x4ea: 0x042f, 0x4eb: 0x016d, 0x4ec: 0x0131, 0x4ed: 0x012e, 0x4ee: 0x0134, 0x4ef: 0x0137,\n\t0x4f0: 0x013a, 0x4f1: 0x013d, 0x4f2: 0x0140, 0x4f3: 0x014c, 0x4f4: 0x014f, 0x4f5: 0x00ec,\n\t0x4f6: 0x0152, 0x4f7: 0x0155, 0x4f8: 0x041f, 0x4f9: 0x0158, 0x4fa: 0x015b, 0x4fb: 0x00b5,\n\t0x4fc: 0x015e, 0x4fd: 0x0161, 0x4fe: 0x0164, 0x4ff: 0x01d0,\n\t// Block 0x14, offset 0x500\n\t0x500: 0x8132, 0x501: 0x8132, 0x502: 0x812d, 0x503: 0x8132, 0x504: 0x8132, 0x505: 0x8132,\n\t0x506: 0x8132, 0x507: 0x8132, 0x508: 0x8132, 0x509: 0x8132, 0x50a: 0x812d, 0x50b: 0x8132,\n\t0x50c: 0x8132, 0x50d: 0x8135, 0x50e: 0x812a, 0x50f: 0x812d, 0x510: 0x8129, 0x511: 0x8132,\n\t0x512: 0x8132, 0x513: 0x8132, 0x514: 0x8132, 0x515: 0x8132, 0x516: 0x8132, 0x517: 0x8132,\n\t0x518: 0x8132, 0x519: 0x8132, 0x51a: 0x8132, 0x51b: 0x8132, 0x51c: 0x8132, 0x51d: 0x8132,\n\t0x51e: 0x8132, 0x51f: 0x8132, 0x520: 0x8132, 0x521: 0x8132, 0x522: 0x8132, 0x523: 0x8132,\n\t0x524: 0x8132, 0x525: 0x8132, 0x526: 0x8132, 0x527: 0x8132, 0x528: 0x8132, 0x529: 0x8132,\n\t0x52a: 0x8132, 0x52b: 0x8132, 0x52c: 0x8132, 0x52d: 0x8132, 0x52e: 0x8132, 0x52f: 0x8132,\n\t0x530: 0x8132, 0x531: 0x8132, 0x532: 0x8132, 0x533: 0x8132, 0x534: 0x8132, 0x535: 0x8132,\n\t0x536: 0x8133, 0x537: 0x8131, 0x538: 0x8131, 0x539: 0x812d, 0x53b: 0x8132,\n\t0x53c: 0x8134, 0x53d: 0x812d, 0x53e: 0x8132, 0x53f: 0x812d,\n\t// Block 0x15, offset 0x540\n\t0x540: 0x2f9a, 0x541: 0x32a6, 0x542: 0x2fa4, 0x543: 0x32b0, 0x544: 0x2fa9, 0x545: 0x32b5,\n\t0x546: 0x2fae, 0x547: 0x32ba, 0x548: 0x38cf, 0x549: 0x3a5e, 0x54a: 0x2fc7, 0x54b: 0x32d3,\n\t0x54c: 0x2fd1, 0x54d: 0x32dd, 0x54e: 0x2fe0, 0x54f: 0x32ec, 0x550: 0x2fd6, 0x551: 0x32e2,\n\t0x552: 0x2fdb, 0x553: 0x32e7, 0x554: 0x38f2, 0x555: 0x3a81, 0x556: 0x38f9, 0x557: 0x3a88,\n\t0x558: 0x301c, 0x559: 0x3328, 0x55a: 0x3021, 0x55b: 0x332d, 0x55c: 0x3907, 0x55d: 0x3a96,\n\t0x55e: 0x3026, 0x55f: 0x3332, 0x560: 0x3035, 0x561: 0x3341, 0x562: 0x3053, 0x563: 0x335f,\n\t0x564: 0x3062, 0x565: 0x336e, 0x566: 0x3058, 0x567: 0x3364, 0x568: 0x3067, 0x569: 0x3373,\n\t0x56a: 0x306c, 0x56b: 0x3378, 0x56c: 0x30b2, 0x56d: 0x33be, 0x56e: 0x390e, 0x56f: 0x3a9d,\n\t0x570: 0x30bc, 0x571: 0x33cd, 0x572: 0x30c6, 0x573: 0x33d7, 0x574: 0x30d0, 0x575: 0x33e1,\n\t0x576: 0x46c7, 0x577: 0x4758, 0x578: 0x3915, 0x579: 0x3aa4, 0x57a: 0x30e9, 0x57b: 0x33fa,\n\t0x57c: 0x30e4, 0x57d: 0x33f5, 0x57e: 0x30ee, 0x57f: 0x33ff,\n\t// Block 0x16, offset 0x580\n\t0x580: 0x30f3, 0x581: 0x3404, 0x582: 0x30f8, 0x583: 0x3409, 0x584: 0x310c, 0x585: 0x341d,\n\t0x586: 0x3116, 0x587: 0x3427, 0x588: 0x3125, 0x589: 0x3436, 0x58a: 0x3120, 0x58b: 0x3431,\n\t0x58c: 0x3938, 0x58d: 0x3ac7, 0x58e: 0x3946, 0x58f: 0x3ad5, 0x590: 0x394d, 0x591: 0x3adc,\n\t0x592: 0x3954, 0x593: 0x3ae3, 0x594: 0x3152, 0x595: 0x3463, 0x596: 0x3157, 0x597: 0x3468,\n\t0x598: 0x3161, 0x599: 0x3472, 0x59a: 0x46f4, 0x59b: 0x4785, 0x59c: 0x399a, 0x59d: 0x3b29,\n\t0x59e: 0x317a, 0x59f: 0x348b, 0x5a0: 0x3184, 0x5a1: 0x3495, 0x5a2: 0x4703, 0x5a3: 0x4794,\n\t0x5a4: 0x39a1, 0x5a5: 0x3b30, 0x5a6: 0x39a8, 0x5a7: 0x3b37, 0x5a8: 0x39af, 0x5a9: 0x3b3e,\n\t0x5aa: 0x3193, 0x5ab: 0x34a4, 0x5ac: 0x319d, 0x5ad: 0x34b3, 0x5ae: 0x31b1, 0x5af: 0x34c7,\n\t0x5b0: 0x31ac, 0x5b1: 0x34c2, 0x5b2: 0x31ed, 0x5b3: 0x3503, 0x5b4: 0x31fc, 0x5b5: 0x3512,\n\t0x5b6: 0x31f7, 0x5b7: 0x350d, 0x5b8: 0x39b6, 0x5b9: 0x3b45, 0x5ba: 0x39bd, 0x5bb: 0x3b4c,\n\t0x5bc: 0x3201, 0x5bd: 0x3517, 0x5be: 0x3206, 0x5bf: 0x351c,\n\t// Block 0x17, offset 0x5c0\n\t0x5c0: 0x320b, 0x5c1: 0x3521, 0x5c2: 0x3210, 0x5c3: 0x3526, 0x5c4: 0x321f, 0x5c5: 0x3535,\n\t0x5c6: 0x321a, 0x5c7: 0x3530, 0x5c8: 0x3224, 0x5c9: 0x353f, 0x5ca: 0x3229, 0x5cb: 0x3544,\n\t0x5cc: 0x322e, 0x5cd: 0x3549, 0x5ce: 0x324c, 0x5cf: 0x3567, 0x5d0: 0x3265, 0x5d1: 0x3585,\n\t0x5d2: 0x3274, 0x5d3: 0x3594, 0x5d4: 0x3279, 0x5d5: 0x3599, 0x5d6: 0x337d, 0x5d7: 0x34a9,\n\t0x5d8: 0x353a, 0x5d9: 0x3576, 0x5da: 0x1be3, 0x5db: 0x42da,\n\t0x5e0: 0x46a4, 0x5e1: 0x4735, 0x5e2: 0x2f86, 0x5e3: 0x3292,\n\t0x5e4: 0x387b, 0x5e5: 0x3a0a, 0x5e6: 0x3874, 0x5e7: 0x3a03, 0x5e8: 0x3889, 0x5e9: 0x3a18,\n\t0x5ea: 0x3882, 0x5eb: 0x3a11, 0x5ec: 0x38c1, 0x5ed: 0x3a50, 0x5ee: 0x3897, 0x5ef: 0x3a26,\n\t0x5f0: 0x3890, 0x5f1: 0x3a1f, 0x5f2: 0x38a5, 0x5f3: 0x3a34, 0x5f4: 0x389e, 0x5f5: 0x3a2d,\n\t0x5f6: 0x38c8, 0x5f7: 0x3a57, 0x5f8: 0x46b8, 0x5f9: 0x4749, 0x5fa: 0x3003, 0x5fb: 0x330f,\n\t0x5fc: 0x2fef, 0x5fd: 0x32fb, 0x5fe: 0x38dd, 0x5ff: 0x3a6c,\n\t// Block 0x18, offset 0x600\n\t0x600: 0x38d6, 0x601: 0x3a65, 0x602: 0x38eb, 0x603: 0x3a7a, 0x604: 0x38e4, 0x605: 0x3a73,\n\t0x606: 0x3900, 0x607: 0x3a8f, 0x608: 0x3094, 0x609: 0x33a0, 0x60a: 0x30a8, 0x60b: 0x33b4,\n\t0x60c: 0x46ea, 0x60d: 0x477b, 0x60e: 0x3139, 0x60f: 0x344a, 0x610: 0x3923, 0x611: 0x3ab2,\n\t0x612: 0x391c, 0x613: 0x3aab, 0x614: 0x3931, 0x615: 0x3ac0, 0x616: 0x392a, 0x617: 0x3ab9,\n\t0x618: 0x398c, 0x619: 0x3b1b, 0x61a: 0x3970, 0x61b: 0x3aff, 0x61c: 0x3969, 0x61d: 0x3af8,\n\t0x61e: 0x397e, 0x61f: 0x3b0d, 0x620: 0x3977, 0x621: 0x3b06, 0x622: 0x3985, 0x623: 0x3b14,\n\t0x624: 0x31e8, 0x625: 0x34fe, 0x626: 0x31ca, 0x627: 0x34e0, 0x628: 0x39e7, 0x629: 0x3b76,\n\t0x62a: 0x39e0, 0x62b: 0x3b6f, 0x62c: 0x39f5, 0x62d: 0x3b84, 0x62e: 0x39ee, 0x62f: 0x3b7d,\n\t0x630: 0x39fc, 0x631: 0x3b8b, 0x632: 0x3233, 0x633: 0x354e, 0x634: 0x325b, 0x635: 0x357b,\n\t0x636: 0x3256, 0x637: 0x3571, 0x638: 0x3242, 0x639: 0x355d,\n\t// Block 0x19, offset 0x640\n\t0x640: 0x4807, 0x641: 0x480d, 0x642: 0x4921, 0x643: 0x4939, 0x644: 0x4929, 0x645: 0x4941,\n\t0x646: 0x4931, 0x647: 0x4949, 0x648: 0x47ad, 0x649: 0x47b3, 0x64a: 0x4891, 0x64b: 0x48a9,\n\t0x64c: 0x4899, 0x64d: 0x48b1, 0x64e: 0x48a1, 0x64f: 0x48b9, 0x650: 0x4819, 0x651: 0x481f,\n\t0x652: 0x3dbb, 0x653: 0x3dcb, 0x654: 0x3dc3, 0x655: 0x3dd3,\n\t0x658: 0x47b9, 0x659: 0x47bf, 0x65a: 0x3ceb, 0x65b: 0x3cfb, 0x65c: 0x3cf3, 0x65d: 0x3d03,\n\t0x660: 0x4831, 0x661: 0x4837, 0x662: 0x4951, 0x663: 0x4969,\n\t0x664: 0x4959, 0x665: 0x4971, 0x666: 0x4961, 0x667: 0x4979, 0x668: 0x47c5, 0x669: 0x47cb,\n\t0x66a: 0x48c1, 0x66b: 0x48d9, 0x66c: 0x48c9, 0x66d: 0x48e1, 0x66e: 0x48d1, 0x66f: 0x48e9,\n\t0x670: 0x4849, 0x671: 0x484f, 0x672: 0x3e1b, 0x673: 0x3e33, 0x674: 0x3e23, 0x675: 0x3e3b,\n\t0x676: 0x3e2b, 0x677: 0x3e43, 0x678: 0x47d1, 0x679: 0x47d7, 0x67a: 0x3d1b, 0x67b: 0x3d33,\n\t0x67c: 0x3d23, 0x67d: 0x3d3b, 0x67e: 0x3d2b, 0x67f: 0x3d43,\n\t// Block 0x1a, offset 0x680\n\t0x680: 0x4855, 0x681: 0x485b, 0x682: 0x3e4b, 0x683: 0x3e5b, 0x684: 0x3e53, 0x685: 0x3e63,\n\t0x688: 0x47dd, 0x689: 0x47e3, 0x68a: 0x3d4b, 0x68b: 0x3d5b,\n\t0x68c: 0x3d53, 0x68d: 0x3d63, 0x690: 0x4867, 0x691: 0x486d,\n\t0x692: 0x3e83, 0x693: 0x3e9b, 0x694: 0x3e8b, 0x695: 0x3ea3, 0x696: 0x3e93, 0x697: 0x3eab,\n\t0x699: 0x47e9, 0x69b: 0x3d6b, 0x69d: 0x3d73,\n\t0x69f: 0x3d7b, 0x6a0: 0x487f, 0x6a1: 0x4885, 0x6a2: 0x4981, 0x6a3: 0x4999,\n\t0x6a4: 0x4989, 0x6a5: 0x49a1, 0x6a6: 0x4991, 0x6a7: 0x49a9, 0x6a8: 0x47ef, 0x6a9: 0x47f5,\n\t0x6aa: 0x48f1, 0x6ab: 0x4909, 0x6ac: 0x48f9, 0x6ad: 0x4911, 0x6ae: 0x4901, 0x6af: 0x4919,\n\t0x6b0: 0x47fb, 0x6b1: 0x4321, 0x6b2: 0x3694, 0x6b3: 0x4327, 0x6b4: 0x4825, 0x6b5: 0x432d,\n\t0x6b6: 0x36a6, 0x6b7: 0x4333, 0x6b8: 0x36c4, 0x6b9: 0x4339, 0x6ba: 0x36dc, 0x6bb: 0x433f,\n\t0x6bc: 0x4873, 0x6bd: 0x4345,\n\t// Block 0x1b, offset 0x6c0\n\t0x6c0: 0x3da3, 0x6c1: 0x3dab, 0x6c2: 0x4187, 0x6c3: 0x41a5, 0x6c4: 0x4191, 0x6c5: 0x41af,\n\t0x6c6: 0x419b, 0x6c7: 0x41b9, 0x6c8: 0x3cdb, 0x6c9: 0x3ce3, 0x6ca: 0x40d3, 0x6cb: 0x40f1,\n\t0x6cc: 0x40dd, 0x6cd: 0x40fb, 0x6ce: 0x40e7, 0x6cf: 0x4105, 0x6d0: 0x3deb, 0x6d1: 0x3df3,\n\t0x6d2: 0x41c3, 0x6d3: 0x41e1, 0x6d4: 0x41cd, 0x6d5: 0x41eb, 0x6d6: 0x41d7, 0x6d7: 0x41f5,\n\t0x6d8: 0x3d0b, 0x6d9: 0x3d13, 0x6da: 0x410f, 0x6db: 0x412d, 0x6dc: 0x4119, 0x6dd: 0x4137,\n\t0x6de: 0x4123, 0x6df: 0x4141, 0x6e0: 0x3ec3, 0x6e1: 0x3ecb, 0x6e2: 0x41ff, 0x6e3: 0x421d,\n\t0x6e4: 0x4209, 0x6e5: 0x4227, 0x6e6: 0x4213, 0x6e7: 0x4231, 0x6e8: 0x3d83, 0x6e9: 0x3d8b,\n\t0x6ea: 0x414b, 0x6eb: 0x4169, 0x6ec: 0x4155, 0x6ed: 0x4173, 0x6ee: 0x415f, 0x6ef: 0x417d,\n\t0x6f0: 0x3688, 0x6f1: 0x3682, 0x6f2: 0x3d93, 0x6f3: 0x368e, 0x6f4: 0x3d9b,\n\t0x6f6: 0x4813, 0x6f7: 0x3db3, 0x6f8: 0x35f8, 0x6f9: 0x35f2, 0x6fa: 0x35e6, 0x6fb: 0x42f1,\n\t0x6fc: 0x35fe, 0x6fd: 0x428a, 0x6fe: 0x01d3, 0x6ff: 0x428a,\n\t// Block 0x1c, offset 0x700\n\t0x700: 0x42a3, 0x701: 0x4485, 0x702: 0x3ddb, 0x703: 0x36a0, 0x704: 0x3de3,\n\t0x706: 0x483d, 0x707: 0x3dfb, 0x708: 0x3604, 0x709: 0x42f7, 0x70a: 0x3610, 0x70b: 0x42fd,\n\t0x70c: 0x361c, 0x70d: 0x448c, 0x70e: 0x4493, 0x70f: 0x449a, 0x710: 0x36b8, 0x711: 0x36b2,\n\t0x712: 0x3e03, 0x713: 0x44e7, 0x716: 0x36be, 0x717: 0x3e13,\n\t0x718: 0x3634, 0x719: 0x362e, 0x71a: 0x3622, 0x71b: 0x4303, 0x71d: 0x44a1,\n\t0x71e: 0x44a8, 0x71f: 0x44af, 0x720: 0x36ee, 0x721: 0x36e8, 0x722: 0x3e6b, 0x723: 0x44ef,\n\t0x724: 0x36d0, 0x725: 0x36d6, 0x726: 0x36f4, 0x727: 0x3e7b, 0x728: 0x3664, 0x729: 0x365e,\n\t0x72a: 0x3652, 0x72b: 0x430f, 0x72c: 0x364c, 0x72d: 0x4477, 0x72e: 0x447e, 0x72f: 0x0081,\n\t0x732: 0x3eb3, 0x733: 0x36fa, 0x734: 0x3ebb,\n\t0x736: 0x488b, 0x737: 0x3ed3, 0x738: 0x3640, 0x739: 0x4309, 0x73a: 0x3670, 0x73b: 0x431b,\n\t0x73c: 0x367c, 0x73d: 0x425d, 0x73e: 0x428f,\n\t// Block 0x1d, offset 0x740\n\t0x740: 0x1bdb, 0x741: 0x1bdf, 0x742: 0x0047, 0x743: 0x1c57, 0x745: 0x1beb,\n\t0x746: 0x1bef, 0x747: 0x00e9, 0x749: 0x1c5b, 0x74a: 0x008f, 0x74b: 0x0051,\n\t0x74c: 0x0051, 0x74d: 0x0051, 0x74e: 0x0091, 0x74f: 0x00da, 0x750: 0x0053, 0x751: 0x0053,\n\t0x752: 0x0059, 0x753: 0x0099, 0x755: 0x005d, 0x756: 0x1990,\n\t0x759: 0x0061, 0x75a: 0x0063, 0x75b: 0x0065, 0x75c: 0x0065, 0x75d: 0x0065,\n\t0x760: 0x19a2, 0x761: 0x1bcb, 0x762: 0x19ab,\n\t0x764: 0x0075, 0x766: 0x01b8, 0x768: 0x0075,\n\t0x76a: 0x0057, 0x76b: 0x42d5, 0x76c: 0x0045, 0x76d: 0x0047, 0x76f: 0x008b,\n\t0x770: 0x004b, 0x771: 0x004d, 0x773: 0x005b, 0x774: 0x009f, 0x775: 0x0215,\n\t0x776: 0x0218, 0x777: 0x021b, 0x778: 0x021e, 0x779: 0x0093, 0x77b: 0x1b9b,\n\t0x77c: 0x01e8, 0x77d: 0x01c1, 0x77e: 0x0179, 0x77f: 0x01a0,\n\t// Block 0x1e, offset 0x780\n\t0x780: 0x0463, 0x785: 0x0049,\n\t0x786: 0x0089, 0x787: 0x008b, 0x788: 0x0093, 0x789: 0x0095,\n\t0x790: 0x2231, 0x791: 0x223d,\n\t0x792: 0x22f1, 0x793: 0x2219, 0x794: 0x229d, 0x795: 0x2225, 0x796: 0x22a3, 0x797: 0x22bb,\n\t0x798: 0x22c7, 0x799: 0x222b, 0x79a: 0x22cd, 0x79b: 0x2237, 0x79c: 0x22c1, 0x79d: 0x22d3,\n\t0x79e: 0x22d9, 0x79f: 0x1cbf, 0x7a0: 0x0053, 0x7a1: 0x195a, 0x7a2: 0x1ba7, 0x7a3: 0x1963,\n\t0x7a4: 0x006d, 0x7a5: 0x19ae, 0x7a6: 0x1bd3, 0x7a7: 0x1d4b, 0x7a8: 0x1966, 0x7a9: 0x0071,\n\t0x7aa: 0x19ba, 0x7ab: 0x1bd7, 0x7ac: 0x0059, 0x7ad: 0x0047, 0x7ae: 0x0049, 0x7af: 0x005b,\n\t0x7b0: 0x0093, 0x7b1: 0x19e7, 0x7b2: 0x1c1b, 0x7b3: 0x19f0, 0x7b4: 0x00ad, 0x7b5: 0x1a65,\n\t0x7b6: 0x1c4f, 0x7b7: 0x1d5f, 0x7b8: 0x19f3, 0x7b9: 0x00b1, 0x7ba: 0x1a68, 0x7bb: 0x1c53,\n\t0x7bc: 0x0099, 0x7bd: 0x0087, 0x7be: 0x0089, 0x7bf: 0x009b,\n\t// Block 0x1f, offset 0x7c0\n\t0x7c1: 0x3c09, 0x7c3: 0xa000, 0x7c4: 0x3c10, 0x7c5: 0xa000,\n\t0x7c7: 0x3c17, 0x7c8: 0xa000, 0x7c9: 0x3c1e,\n\t0x7cd: 0xa000,\n\t0x7e0: 0x2f68, 0x7e1: 0xa000, 0x7e2: 0x3c2c,\n\t0x7e4: 0xa000, 0x7e5: 0xa000,\n\t0x7ed: 0x3c25, 0x7ee: 0x2f63, 0x7ef: 0x2f6d,\n\t0x7f0: 0x3c33, 0x7f1: 0x3c3a, 0x7f2: 0xa000, 0x7f3: 0xa000, 0x7f4: 0x3c41, 0x7f5: 0x3c48,\n\t0x7f6: 0xa000, 0x7f7: 0xa000, 0x7f8: 0x3c4f, 0x7f9: 0x3c56, 0x7fa: 0xa000, 0x7fb: 0xa000,\n\t0x7fc: 0xa000, 0x7fd: 0xa000,\n\t// Block 0x20, offset 0x800\n\t0x800: 0x3c5d, 0x801: 0x3c64, 0x802: 0xa000, 0x803: 0xa000, 0x804: 0x3c79, 0x805: 0x3c80,\n\t0x806: 0xa000, 0x807: 0xa000, 0x808: 0x3c87, 0x809: 0x3c8e,\n\t0x811: 0xa000,\n\t0x812: 0xa000,\n\t0x822: 0xa000,\n\t0x828: 0xa000, 0x829: 0xa000,\n\t0x82b: 0xa000, 0x82c: 0x3ca3, 0x82d: 0x3caa, 0x82e: 0x3cb1, 0x82f: 0x3cb8,\n\t0x832: 0xa000, 0x833: 0xa000, 0x834: 0xa000, 0x835: 0xa000,\n\t// Block 0x21, offset 0x840\n\t0x860: 0x0023, 0x861: 0x0025, 0x862: 0x0027, 0x863: 0x0029,\n\t0x864: 0x002b, 0x865: 0x002d, 0x866: 0x002f, 0x867: 0x0031, 0x868: 0x0033, 0x869: 0x1882,\n\t0x86a: 0x1885, 0x86b: 0x1888, 0x86c: 0x188b, 0x86d: 0x188e, 0x86e: 0x1891, 0x86f: 0x1894,\n\t0x870: 0x1897, 0x871: 0x189a, 0x872: 0x189d, 0x873: 0x18a6, 0x874: 0x1a6b, 0x875: 0x1a6f,\n\t0x876: 0x1a73, 0x877: 0x1a77, 0x878: 0x1a7b, 0x879: 0x1a7f, 0x87a: 0x1a83, 0x87b: 0x1a87,\n\t0x87c: 0x1a8b, 0x87d: 0x1c83, 0x87e: 0x1c88, 0x87f: 0x1c8d,\n\t// Block 0x22, offset 0x880\n\t0x880: 0x1c92, 0x881: 0x1c97, 0x882: 0x1c9c, 0x883: 0x1ca1, 0x884: 0x1ca6, 0x885: 0x1cab,\n\t0x886: 0x1cb0, 0x887: 0x1cb5, 0x888: 0x187f, 0x889: 0x18a3, 0x88a: 0x18c7, 0x88b: 0x18eb,\n\t0x88c: 0x190f, 0x88d: 0x1918, 0x88e: 0x191e, 0x88f: 0x1924, 0x890: 0x192a, 0x891: 0x1b63,\n\t0x892: 0x1b67, 0x893: 0x1b6b, 0x894: 0x1b6f, 0x895: 0x1b73, 0x896: 0x1b77, 0x897: 0x1b7b,\n\t0x898: 0x1b7f, 0x899: 0x1b83, 0x89a: 0x1b87, 0x89b: 0x1b8b, 0x89c: 0x1af7, 0x89d: 0x1afb,\n\t0x89e: 0x1aff, 0x89f: 0x1b03, 0x8a0: 0x1b07, 0x8a1: 0x1b0b, 0x8a2: 0x1b0f, 0x8a3: 0x1b13,\n\t0x8a4: 0x1b17, 0x8a5: 0x1b1b, 0x8a6: 0x1b1f, 0x8a7: 0x1b23, 0x8a8: 0x1b27, 0x8a9: 0x1b2b,\n\t0x8aa: 0x1b2f, 0x8ab: 0x1b33, 0x8ac: 0x1b37, 0x8ad: 0x1b3b, 0x8ae: 0x1b3f, 0x8af: 0x1b43,\n\t0x8b0: 0x1b47, 0x8b1: 0x1b4b, 0x8b2: 0x1b4f, 0x8b3: 0x1b53, 0x8b4: 0x1b57, 0x8b5: 0x1b5b,\n\t0x8b6: 0x0043, 0x8b7: 0x0045, 0x8b8: 0x0047, 0x8b9: 0x0049, 0x8ba: 0x004b, 0x8bb: 0x004d,\n\t0x8bc: 0x004f, 0x8bd: 0x0051, 0x8be: 0x0053, 0x8bf: 0x0055,\n\t// Block 0x23, offset 0x8c0\n\t0x8c0: 0x06bf, 0x8c1: 0x06e3, 0x8c2: 0x06ef, 0x8c3: 0x06ff, 0x8c4: 0x0707, 0x8c5: 0x0713,\n\t0x8c6: 0x071b, 0x8c7: 0x0723, 0x8c8: 0x072f, 0x8c9: 0x0783, 0x8ca: 0x079b, 0x8cb: 0x07ab,\n\t0x8cc: 0x07bb, 0x8cd: 0x07cb, 0x8ce: 0x07db, 0x8cf: 0x07fb, 0x8d0: 0x07ff, 0x8d1: 0x0803,\n\t0x8d2: 0x0837, 0x8d3: 0x085f, 0x8d4: 0x086f, 0x8d5: 0x0877, 0x8d6: 0x087b, 0x8d7: 0x0887,\n\t0x8d8: 0x08a3, 0x8d9: 0x08a7, 0x8da: 0x08bf, 0x8db: 0x08c3, 0x8dc: 0x08cb, 0x8dd: 0x08db,\n\t0x8de: 0x0977, 0x8df: 0x098b, 0x8e0: 0x09cb, 0x8e1: 0x09df, 0x8e2: 0x09e7, 0x8e3: 0x09eb,\n\t0x8e4: 0x09fb, 0x8e5: 0x0a17, 0x8e6: 0x0a43, 0x8e7: 0x0a4f, 0x8e8: 0x0a6f, 0x8e9: 0x0a7b,\n\t0x8ea: 0x0a7f, 0x8eb: 0x0a83, 0x8ec: 0x0a9b, 0x8ed: 0x0a9f, 0x8ee: 0x0acb, 0x8ef: 0x0ad7,\n\t0x8f0: 0x0adf, 0x8f1: 0x0ae7, 0x8f2: 0x0af7, 0x8f3: 0x0aff, 0x8f4: 0x0b07, 0x8f5: 0x0b33,\n\t0x8f6: 0x0b37, 0x8f7: 0x0b3f, 0x8f8: 0x0b43, 0x8f9: 0x0b4b, 0x8fa: 0x0b53, 0x8fb: 0x0b63,\n\t0x8fc: 0x0b7f, 0x8fd: 0x0bf7, 0x8fe: 0x0c0b, 0x8ff: 0x0c0f,\n\t// Block 0x24, offset 0x900\n\t0x900: 0x0c8f, 0x901: 0x0c93, 0x902: 0x0ca7, 0x903: 0x0cab, 0x904: 0x0cb3, 0x905: 0x0cbb,\n\t0x906: 0x0cc3, 0x907: 0x0ccf, 0x908: 0x0cf7, 0x909: 0x0d07, 0x90a: 0x0d1b, 0x90b: 0x0d8b,\n\t0x90c: 0x0d97, 0x90d: 0x0da7, 0x90e: 0x0db3, 0x90f: 0x0dbf, 0x910: 0x0dc7, 0x911: 0x0dcb,\n\t0x912: 0x0dcf, 0x913: 0x0dd3, 0x914: 0x0dd7, 0x915: 0x0e8f, 0x916: 0x0ed7, 0x917: 0x0ee3,\n\t0x918: 0x0ee7, 0x919: 0x0eeb, 0x91a: 0x0eef, 0x91b: 0x0ef7, 0x91c: 0x0efb, 0x91d: 0x0f0f,\n\t0x91e: 0x0f2b, 0x91f: 0x0f33, 0x920: 0x0f73, 0x921: 0x0f77, 0x922: 0x0f7f, 0x923: 0x0f83,\n\t0x924: 0x0f8b, 0x925: 0x0f8f, 0x926: 0x0fb3, 0x927: 0x0fb7, 0x928: 0x0fd3, 0x929: 0x0fd7,\n\t0x92a: 0x0fdb, 0x92b: 0x0fdf, 0x92c: 0x0ff3, 0x92d: 0x1017, 0x92e: 0x101b, 0x92f: 0x101f,\n\t0x930: 0x1043, 0x931: 0x1083, 0x932: 0x1087, 0x933: 0x10a7, 0x934: 0x10b7, 0x935: 0x10bf,\n\t0x936: 0x10df, 0x937: 0x1103, 0x938: 0x1147, 0x939: 0x114f, 0x93a: 0x1163, 0x93b: 0x116f,\n\t0x93c: 0x1177, 0x93d: 0x117f, 0x93e: 0x1183, 0x93f: 0x1187,\n\t// Block 0x25, offset 0x940\n\t0x940: 0x119f, 0x941: 0x11a3, 0x942: 0x11bf, 0x943: 0x11c7, 0x944: 0x11cf, 0x945: 0x11d3,\n\t0x946: 0x11df, 0x947: 0x11e7, 0x948: 0x11eb, 0x949: 0x11ef, 0x94a: 0x11f7, 0x94b: 0x11fb,\n\t0x94c: 0x129b, 0x94d: 0x12af, 0x94e: 0x12e3, 0x94f: 0x12e7, 0x950: 0x12ef, 0x951: 0x131b,\n\t0x952: 0x1323, 0x953: 0x132b, 0x954: 0x1333, 0x955: 0x136f, 0x956: 0x1373, 0x957: 0x137b,\n\t0x958: 0x137f, 0x959: 0x1383, 0x95a: 0x13af, 0x95b: 0x13b3, 0x95c: 0x13bb, 0x95d: 0x13cf,\n\t0x95e: 0x13d3, 0x95f: 0x13ef, 0x960: 0x13f7, 0x961: 0x13fb, 0x962: 0x141f, 0x963: 0x143f,\n\t0x964: 0x1453, 0x965: 0x1457, 0x966: 0x145f, 0x967: 0x148b, 0x968: 0x148f, 0x969: 0x149f,\n\t0x96a: 0x14c3, 0x96b: 0x14cf, 0x96c: 0x14df, 0x96d: 0x14f7, 0x96e: 0x14ff, 0x96f: 0x1503,\n\t0x970: 0x1507, 0x971: 0x150b, 0x972: 0x1517, 0x973: 0x151b, 0x974: 0x1523, 0x975: 0x153f,\n\t0x976: 0x1543, 0x977: 0x1547, 0x978: 0x155f, 0x979: 0x1563, 0x97a: 0x156b, 0x97b: 0x157f,\n\t0x97c: 0x1583, 0x97d: 0x1587, 0x97e: 0x158f, 0x97f: 0x1593,\n\t// Block 0x26, offset 0x980\n\t0x986: 0xa000, 0x98b: 0xa000,\n\t0x98c: 0x3f0b, 0x98d: 0xa000, 0x98e: 0x3f13, 0x98f: 0xa000, 0x990: 0x3f1b, 0x991: 0xa000,\n\t0x992: 0x3f23, 0x993: 0xa000, 0x994: 0x3f2b, 0x995: 0xa000, 0x996: 0x3f33, 0x997: 0xa000,\n\t0x998: 0x3f3b, 0x999: 0xa000, 0x99a: 0x3f43, 0x99b: 0xa000, 0x99c: 0x3f4b, 0x99d: 0xa000,\n\t0x99e: 0x3f53, 0x99f: 0xa000, 0x9a0: 0x3f5b, 0x9a1: 0xa000, 0x9a2: 0x3f63,\n\t0x9a4: 0xa000, 0x9a5: 0x3f6b, 0x9a6: 0xa000, 0x9a7: 0x3f73, 0x9a8: 0xa000, 0x9a9: 0x3f7b,\n\t0x9af: 0xa000,\n\t0x9b0: 0x3f83, 0x9b1: 0x3f8b, 0x9b2: 0xa000, 0x9b3: 0x3f93, 0x9b4: 0x3f9b, 0x9b5: 0xa000,\n\t0x9b6: 0x3fa3, 0x9b7: 0x3fab, 0x9b8: 0xa000, 0x9b9: 0x3fb3, 0x9ba: 0x3fbb, 0x9bb: 0xa000,\n\t0x9bc: 0x3fc3, 0x9bd: 0x3fcb,\n\t// Block 0x27, offset 0x9c0\n\t0x9d4: 0x3f03,\n\t0x9d9: 0x9903, 0x9da: 0x9903, 0x9db: 0x42df, 0x9dc: 0x42e5, 0x9dd: 0xa000,\n\t0x9de: 0x3fd3, 0x9df: 0x26b7,\n\t0x9e6: 0xa000,\n\t0x9eb: 0xa000, 0x9ec: 0x3fe3, 0x9ed: 0xa000, 0x9ee: 0x3feb, 0x9ef: 0xa000,\n\t0x9f0: 0x3ff3, 0x9f1: 0xa000, 0x9f2: 0x3ffb, 0x9f3: 0xa000, 0x9f4: 0x4003, 0x9f5: 0xa000,\n\t0x9f6: 0x400b, 0x9f7: 0xa000, 0x9f8: 0x4013, 0x9f9: 0xa000, 0x9fa: 0x401b, 0x9fb: 0xa000,\n\t0x9fc: 0x4023, 0x9fd: 0xa000, 0x9fe: 0x402b, 0x9ff: 0xa000,\n\t// Block 0x28, offset 0xa00\n\t0xa00: 0x4033, 0xa01: 0xa000, 0xa02: 0x403b, 0xa04: 0xa000, 0xa05: 0x4043,\n\t0xa06: 0xa000, 0xa07: 0x404b, 0xa08: 0xa000, 0xa09: 0x4053,\n\t0xa0f: 0xa000, 0xa10: 0x405b, 0xa11: 0x4063,\n\t0xa12: 0xa000, 0xa13: 0x406b, 0xa14: 0x4073, 0xa15: 0xa000, 0xa16: 0x407b, 0xa17: 0x4083,\n\t0xa18: 0xa000, 0xa19: 0x408b, 0xa1a: 0x4093, 0xa1b: 0xa000, 0xa1c: 0x409b, 0xa1d: 0x40a3,\n\t0xa2f: 0xa000,\n\t0xa30: 0xa000, 0xa31: 0xa000, 0xa32: 0xa000, 0xa34: 0x3fdb,\n\t0xa37: 0x40ab, 0xa38: 0x40b3, 0xa39: 0x40bb, 0xa3a: 0x40c3,\n\t0xa3d: 0xa000, 0xa3e: 0x40cb, 0xa3f: 0x26cc,\n\t// Block 0x29, offset 0xa40\n\t0xa40: 0x0367, 0xa41: 0x032b, 0xa42: 0x032f, 0xa43: 0x0333, 0xa44: 0x037b, 0xa45: 0x0337,\n\t0xa46: 0x033b, 0xa47: 0x033f, 0xa48: 0x0343, 0xa49: 0x0347, 0xa4a: 0x034b, 0xa4b: 0x034f,\n\t0xa4c: 0x0353, 0xa4d: 0x0357, 0xa4e: 0x035b, 0xa4f: 0x49c0, 0xa50: 0x49c6, 0xa51: 0x49cc,\n\t0xa52: 0x49d2, 0xa53: 0x49d8, 0xa54: 0x49de, 0xa55: 0x49e4, 0xa56: 0x49ea, 0xa57: 0x49f0,\n\t0xa58: 0x49f6, 0xa59: 0x49fc, 0xa5a: 0x4a02, 0xa5b: 0x4a08, 0xa5c: 0x4a0e, 0xa5d: 0x4a14,\n\t0xa5e: 0x4a1a, 0xa5f: 0x4a20, 0xa60: 0x4a26, 0xa61: 0x4a2c, 0xa62: 0x4a32, 0xa63: 0x4a38,\n\t0xa64: 0x03c3, 0xa65: 0x035f, 0xa66: 0x0363, 0xa67: 0x03e7, 0xa68: 0x03eb, 0xa69: 0x03ef,\n\t0xa6a: 0x03f3, 0xa6b: 0x03f7, 0xa6c: 0x03fb, 0xa6d: 0x03ff, 0xa6e: 0x036b, 0xa6f: 0x0403,\n\t0xa70: 0x0407, 0xa71: 0x036f, 0xa72: 0x0373, 0xa73: 0x0377, 0xa74: 0x037f, 0xa75: 0x0383,\n\t0xa76: 0x0387, 0xa77: 0x038b, 0xa78: 0x038f, 0xa79: 0x0393, 0xa7a: 0x0397, 0xa7b: 0x039b,\n\t0xa7c: 0x039f, 0xa7d: 0x03a3, 0xa7e: 0x03a7, 0xa7f: 0x03ab,\n\t// Block 0x2a, offset 0xa80\n\t0xa80: 0x03af, 0xa81: 0x03b3, 0xa82: 0x040b, 0xa83: 0x040f, 0xa84: 0x03b7, 0xa85: 0x03bb,\n\t0xa86: 0x03bf, 0xa87: 0x03c7, 0xa88: 0x03cb, 0xa89: 0x03cf, 0xa8a: 0x03d3, 0xa8b: 0x03d7,\n\t0xa8c: 0x03db, 0xa8d: 0x03df, 0xa8e: 0x03e3,\n\t0xa92: 0x06bf, 0xa93: 0x071b, 0xa94: 0x06cb, 0xa95: 0x097b, 0xa96: 0x06cf, 0xa97: 0x06e7,\n\t0xa98: 0x06d3, 0xa99: 0x0f93, 0xa9a: 0x0707, 0xa9b: 0x06db, 0xa9c: 0x06c3, 0xa9d: 0x09ff,\n\t0xa9e: 0x098f, 0xa9f: 0x072f,\n\t// Block 0x2b, offset 0xac0\n\t0xac0: 0x2057, 0xac1: 0x205d, 0xac2: 0x2063, 0xac3: 0x2069, 0xac4: 0x206f, 0xac5: 0x2075,\n\t0xac6: 0x207b, 0xac7: 0x2081, 0xac8: 0x2087, 0xac9: 0x208d, 0xaca: 0x2093, 0xacb: 0x2099,\n\t0xacc: 0x209f, 0xacd: 0x20a5, 0xace: 0x2729, 0xacf: 0x2732, 0xad0: 0x273b, 0xad1: 0x2744,\n\t0xad2: 0x274d, 0xad3: 0x2756, 0xad4: 0x275f, 0xad5: 0x2768, 0xad6: 0x2771, 0xad7: 0x2783,\n\t0xad8: 0x278c, 0xad9: 0x2795, 0xada: 0x279e, 0xadb: 0x27a7, 0xadc: 0x277a, 0xadd: 0x2baf,\n\t0xade: 0x2af0, 0xae0: 0x20ab, 0xae1: 0x20c3, 0xae2: 0x20b7, 0xae3: 0x210b,\n\t0xae4: 0x20c9, 0xae5: 0x20e7, 0xae6: 0x20b1, 0xae7: 0x20e1, 0xae8: 0x20bd, 0xae9: 0x20f3,\n\t0xaea: 0x2123, 0xaeb: 0x2141, 0xaec: 0x213b, 0xaed: 0x212f, 0xaee: 0x217d, 0xaef: 0x2111,\n\t0xaf0: 0x211d, 0xaf1: 0x2135, 0xaf2: 0x2129, 0xaf3: 0x2153, 0xaf4: 0x20ff, 0xaf5: 0x2147,\n\t0xaf6: 0x2171, 0xaf7: 0x2159, 0xaf8: 0x20ed, 0xaf9: 0x20cf, 0xafa: 0x2105, 0xafb: 0x2117,\n\t0xafc: 0x214d, 0xafd: 0x20d5, 0xafe: 0x2177, 0xaff: 0x20f9,\n\t// Block 0x2c, offset 0xb00\n\t0xb00: 0x215f, 0xb01: 0x20db, 0xb02: 0x2165, 0xb03: 0x216b, 0xb04: 0x092f, 0xb05: 0x0b03,\n\t0xb06: 0x0ca7, 0xb07: 0x10c7,\n\t0xb10: 0x1bc7, 0xb11: 0x18a9,\n\t0xb12: 0x18ac, 0xb13: 0x18af, 0xb14: 0x18b2, 0xb15: 0x18b5, 0xb16: 0x18b8, 0xb17: 0x18bb,\n\t0xb18: 0x18be, 0xb19: 0x18c1, 0xb1a: 0x18ca, 0xb1b: 0x18cd, 0xb1c: 0x18d0, 0xb1d: 0x18d3,\n\t0xb1e: 0x18d6, 0xb1f: 0x18d9, 0xb20: 0x0313, 0xb21: 0x031b, 0xb22: 0x031f, 0xb23: 0x0327,\n\t0xb24: 0x032b, 0xb25: 0x032f, 0xb26: 0x0337, 0xb27: 0x033f, 0xb28: 0x0343, 0xb29: 0x034b,\n\t0xb2a: 0x034f, 0xb2b: 0x0353, 0xb2c: 0x0357, 0xb2d: 0x035b, 0xb2e: 0x2e1b, 0xb2f: 0x2e23,\n\t0xb30: 0x2e2b, 0xb31: 0x2e33, 0xb32: 0x2e3b, 0xb33: 0x2e43, 0xb34: 0x2e4b, 0xb35: 0x2e53,\n\t0xb36: 0x2e63, 0xb37: 0x2e6b, 0xb38: 0x2e73, 0xb39: 0x2e7b, 0xb3a: 0x2e83, 0xb3b: 0x2e8b,\n\t0xb3c: 0x2ed6, 0xb3d: 0x2e9e, 0xb3e: 0x2e5b,\n\t// Block 0x2d, offset 0xb40\n\t0xb40: 0x06bf, 0xb41: 0x071b, 0xb42: 0x06cb, 0xb43: 0x097b, 0xb44: 0x071f, 0xb45: 0x07af,\n\t0xb46: 0x06c7, 0xb47: 0x07ab, 0xb48: 0x070b, 0xb49: 0x0887, 0xb4a: 0x0d07, 0xb4b: 0x0e8f,\n\t0xb4c: 0x0dd7, 0xb4d: 0x0d1b, 0xb4e: 0x145f, 0xb4f: 0x098b, 0xb50: 0x0ccf, 0xb51: 0x0d4b,\n\t0xb52: 0x0d0b, 0xb53: 0x104b, 0xb54: 0x08fb, 0xb55: 0x0f03, 0xb56: 0x1387, 0xb57: 0x105f,\n\t0xb58: 0x0843, 0xb59: 0x108f, 0xb5a: 0x0f9b, 0xb5b: 0x0a17, 0xb5c: 0x140f, 0xb5d: 0x077f,\n\t0xb5e: 0x08ab, 0xb5f: 0x0df7, 0xb60: 0x1527, 0xb61: 0x0743, 0xb62: 0x07d3, 0xb63: 0x0d9b,\n\t0xb64: 0x06cf, 0xb65: 0x06e7, 0xb66: 0x06d3, 0xb67: 0x0adb, 0xb68: 0x08ef, 0xb69: 0x087f,\n\t0xb6a: 0x0a57, 0xb6b: 0x0a4b, 0xb6c: 0x0feb, 0xb6d: 0x073f, 0xb6e: 0x139b, 0xb6f: 0x089b,\n\t0xb70: 0x09f3, 0xb71: 0x18dc, 0xb72: 0x18df, 0xb73: 0x18e2, 0xb74: 0x18e5, 0xb75: 0x18ee,\n\t0xb76: 0x18f1, 0xb77: 0x18f4, 0xb78: 0x18f7, 0xb79: 0x18fa, 0xb7a: 0x18fd, 0xb7b: 0x1900,\n\t0xb7c: 0x1903, 0xb7d: 0x1906, 0xb7e: 0x1909, 0xb7f: 0x1912,\n\t// Block 0x2e, offset 0xb80\n\t0xb80: 0x1cc9, 0xb81: 0x1cd8, 0xb82: 0x1ce7, 0xb83: 0x1cf6, 0xb84: 0x1d05, 0xb85: 0x1d14,\n\t0xb86: 0x1d23, 0xb87: 0x1d32, 0xb88: 0x1d41, 0xb89: 0x218f, 0xb8a: 0x21a1, 0xb8b: 0x21b3,\n\t0xb8c: 0x1954, 0xb8d: 0x1c07, 0xb8e: 0x19d5, 0xb8f: 0x1bab, 0xb90: 0x04cb, 0xb91: 0x04d3,\n\t0xb92: 0x04db, 0xb93: 0x04e3, 0xb94: 0x04eb, 0xb95: 0x04ef, 0xb96: 0x04f3, 0xb97: 0x04f7,\n\t0xb98: 0x04fb, 0xb99: 0x04ff, 0xb9a: 0x0503, 0xb9b: 0x0507, 0xb9c: 0x050b, 0xb9d: 0x050f,\n\t0xb9e: 0x0513, 0xb9f: 0x0517, 0xba0: 0x051b, 0xba1: 0x0523, 0xba2: 0x0527, 0xba3: 0x052b,\n\t0xba4: 0x052f, 0xba5: 0x0533, 0xba6: 0x0537, 0xba7: 0x053b, 0xba8: 0x053f, 0xba9: 0x0543,\n\t0xbaa: 0x0547, 0xbab: 0x054b, 0xbac: 0x054f, 0xbad: 0x0553, 0xbae: 0x0557, 0xbaf: 0x055b,\n\t0xbb0: 0x055f, 0xbb1: 0x0563, 0xbb2: 0x0567, 0xbb3: 0x056f, 0xbb4: 0x0577, 0xbb5: 0x057f,\n\t0xbb6: 0x0583, 0xbb7: 0x0587, 0xbb8: 0x058b, 0xbb9: 0x058f, 0xbba: 0x0593, 0xbbb: 0x0597,\n\t0xbbc: 0x059b, 0xbbd: 0x059f, 0xbbe: 0x05a3,\n\t// Block 0x2f, offset 0xbc0\n\t0xbc0: 0x2b0f, 0xbc1: 0x29ab, 0xbc2: 0x2b1f, 0xbc3: 0x2883, 0xbc4: 0x2ee7, 0xbc5: 0x288d,\n\t0xbc6: 0x2897, 0xbc7: 0x2f2b, 0xbc8: 0x29b8, 0xbc9: 0x28a1, 0xbca: 0x28ab, 0xbcb: 0x28b5,\n\t0xbcc: 0x29df, 0xbcd: 0x29ec, 0xbce: 0x29c5, 0xbcf: 0x29d2, 0xbd0: 0x2eac, 0xbd1: 0x29f9,\n\t0xbd2: 0x2a06, 0xbd3: 0x2bc1, 0xbd4: 0x26be, 0xbd5: 0x2bd4, 0xbd6: 0x2be7, 0xbd7: 0x2b2f,\n\t0xbd8: 0x2a13, 0xbd9: 0x2bfa, 0xbda: 0x2c0d, 0xbdb: 0x2a20, 0xbdc: 0x28bf, 0xbdd: 0x28c9,\n\t0xbde: 0x2eba, 0xbdf: 0x2a2d, 0xbe0: 0x2b3f, 0xbe1: 0x2ef8, 0xbe2: 0x28d3, 0xbe3: 0x28dd,\n\t0xbe4: 0x2a3a, 0xbe5: 0x28e7, 0xbe6: 0x28f1, 0xbe7: 0x26d3, 0xbe8: 0x26da, 0xbe9: 0x28fb,\n\t0xbea: 0x2905, 0xbeb: 0x2c20, 0xbec: 0x2a47, 0xbed: 0x2b4f, 0xbee: 0x2c33, 0xbef: 0x2a54,\n\t0xbf0: 0x2919, 0xbf1: 0x290f, 0xbf2: 0x2f3f, 0xbf3: 0x2a61, 0xbf4: 0x2c46, 0xbf5: 0x2923,\n\t0xbf6: 0x2b5f, 0xbf7: 0x292d, 0xbf8: 0x2a7b, 0xbf9: 0x2937, 0xbfa: 0x2a88, 0xbfb: 0x2f09,\n\t0xbfc: 0x2a6e, 0xbfd: 0x2b6f, 0xbfe: 0x2a95, 0xbff: 0x26e1,\n\t// Block 0x30, offset 0xc00\n\t0xc00: 0x2f1a, 0xc01: 0x2941, 0xc02: 0x294b, 0xc03: 0x2aa2, 0xc04: 0x2955, 0xc05: 0x295f,\n\t0xc06: 0x2969, 0xc07: 0x2b7f, 0xc08: 0x2aaf, 0xc09: 0x26e8, 0xc0a: 0x2c59, 0xc0b: 0x2e93,\n\t0xc0c: 0x2b8f, 0xc0d: 0x2abc, 0xc0e: 0x2ec8, 0xc0f: 0x2973, 0xc10: 0x297d, 0xc11: 0x2ac9,\n\t0xc12: 0x26ef, 0xc13: 0x2ad6, 0xc14: 0x2b9f, 0xc15: 0x26f6, 0xc16: 0x2c6c, 0xc17: 0x2987,\n\t0xc18: 0x1cba, 0xc19: 0x1cce, 0xc1a: 0x1cdd, 0xc1b: 0x1cec, 0xc1c: 0x1cfb, 0xc1d: 0x1d0a,\n\t0xc1e: 0x1d19, 0xc1f: 0x1d28, 0xc20: 0x1d37, 0xc21: 0x1d46, 0xc22: 0x2195, 0xc23: 0x21a7,\n\t0xc24: 0x21b9, 0xc25: 0x21c5, 0xc26: 0x21d1, 0xc27: 0x21dd, 0xc28: 0x21e9, 0xc29: 0x21f5,\n\t0xc2a: 0x2201, 0xc2b: 0x220d, 0xc2c: 0x2249, 0xc2d: 0x2255, 0xc2e: 0x2261, 0xc2f: 0x226d,\n\t0xc30: 0x2279, 0xc31: 0x1c17, 0xc32: 0x19c9, 0xc33: 0x1936, 0xc34: 0x1be7, 0xc35: 0x1a4a,\n\t0xc36: 0x1a59, 0xc37: 0x19cf, 0xc38: 0x1bff, 0xc39: 0x1c03, 0xc3a: 0x1960, 0xc3b: 0x2704,\n\t0xc3c: 0x2712, 0xc3d: 0x26fd, 0xc3e: 0x270b, 0xc3f: 0x2ae3,\n\t// Block 0x31, offset 0xc40\n\t0xc40: 0x1a4d, 0xc41: 0x1a35, 0xc42: 0x1c63, 0xc43: 0x1a1d, 0xc44: 0x19f6, 0xc45: 0x1969,\n\t0xc46: 0x1978, 0xc47: 0x1948, 0xc48: 0x1bf3, 0xc49: 0x1d55, 0xc4a: 0x1a50, 0xc4b: 0x1a38,\n\t0xc4c: 0x1c67, 0xc4d: 0x1c73, 0xc4e: 0x1a29, 0xc4f: 0x19ff, 0xc50: 0x1957, 0xc51: 0x1c1f,\n\t0xc52: 0x1bb3, 0xc53: 0x1b9f, 0xc54: 0x1bcf, 0xc55: 0x1c77, 0xc56: 0x1a2c, 0xc57: 0x19cc,\n\t0xc58: 0x1a02, 0xc59: 0x19e1, 0xc5a: 0x1a44, 0xc5b: 0x1c7b, 0xc5c: 0x1a2f, 0xc5d: 0x19c3,\n\t0xc5e: 0x1a05, 0xc5f: 0x1c3f, 0xc60: 0x1bf7, 0xc61: 0x1a17, 0xc62: 0x1c27, 0xc63: 0x1c43,\n\t0xc64: 0x1bfb, 0xc65: 0x1a1a, 0xc66: 0x1c2b, 0xc67: 0x22eb, 0xc68: 0x22ff, 0xc69: 0x1999,\n\t0xc6a: 0x1c23, 0xc6b: 0x1bb7, 0xc6c: 0x1ba3, 0xc6d: 0x1c4b, 0xc6e: 0x2719, 0xc6f: 0x27b0,\n\t0xc70: 0x1a5c, 0xc71: 0x1a47, 0xc72: 0x1c7f, 0xc73: 0x1a32, 0xc74: 0x1a53, 0xc75: 0x1a3b,\n\t0xc76: 0x1c6b, 0xc77: 0x1a20, 0xc78: 0x19f9, 0xc79: 0x1984, 0xc7a: 0x1a56, 0xc7b: 0x1a3e,\n\t0xc7c: 0x1c6f, 0xc7d: 0x1a23, 0xc7e: 0x19fc, 0xc7f: 0x1987,\n\t// Block 0x32, offset 0xc80\n\t0xc80: 0x1c2f, 0xc81: 0x1bbb, 0xc82: 0x1d50, 0xc83: 0x1939, 0xc84: 0x19bd, 0xc85: 0x19c0,\n\t0xc86: 0x22f8, 0xc87: 0x1b97, 0xc88: 0x19c6, 0xc89: 0x194b, 0xc8a: 0x19e4, 0xc8b: 0x194e,\n\t0xc8c: 0x19ed, 0xc8d: 0x196c, 0xc8e: 0x196f, 0xc8f: 0x1a08, 0xc90: 0x1a0e, 0xc91: 0x1a11,\n\t0xc92: 0x1c33, 0xc93: 0x1a14, 0xc94: 0x1a26, 0xc95: 0x1c3b, 0xc96: 0x1c47, 0xc97: 0x1993,\n\t0xc98: 0x1d5a, 0xc99: 0x1bbf, 0xc9a: 0x1996, 0xc9b: 0x1a5f, 0xc9c: 0x19a8, 0xc9d: 0x19b7,\n\t0xc9e: 0x22e5, 0xc9f: 0x22df, 0xca0: 0x1cc4, 0xca1: 0x1cd3, 0xca2: 0x1ce2, 0xca3: 0x1cf1,\n\t0xca4: 0x1d00, 0xca5: 0x1d0f, 0xca6: 0x1d1e, 0xca7: 0x1d2d, 0xca8: 0x1d3c, 0xca9: 0x2189,\n\t0xcaa: 0x219b, 0xcab: 0x21ad, 0xcac: 0x21bf, 0xcad: 0x21cb, 0xcae: 0x21d7, 0xcaf: 0x21e3,\n\t0xcb0: 0x21ef, 0xcb1: 0x21fb, 0xcb2: 0x2207, 0xcb3: 0x2243, 0xcb4: 0x224f, 0xcb5: 0x225b,\n\t0xcb6: 0x2267, 0xcb7: 0x2273, 0xcb8: 0x227f, 0xcb9: 0x2285, 0xcba: 0x228b, 0xcbb: 0x2291,\n\t0xcbc: 0x2297, 0xcbd: 0x22a9, 0xcbe: 0x22af, 0xcbf: 0x1c13,\n\t// Block 0x33, offset 0xcc0\n\t0xcc0: 0x1377, 0xcc1: 0x0cfb, 0xcc2: 0x13d3, 0xcc3: 0x139f, 0xcc4: 0x0e57, 0xcc5: 0x06eb,\n\t0xcc6: 0x08df, 0xcc7: 0x162b, 0xcc8: 0x162b, 0xcc9: 0x0a0b, 0xcca: 0x145f, 0xccb: 0x0943,\n\t0xccc: 0x0a07, 0xccd: 0x0bef, 0xcce: 0x0fcf, 0xccf: 0x115f, 0xcd0: 0x1297, 0xcd1: 0x12d3,\n\t0xcd2: 0x1307, 0xcd3: 0x141b, 0xcd4: 0x0d73, 0xcd5: 0x0dff, 0xcd6: 0x0eab, 0xcd7: 0x0f43,\n\t0xcd8: 0x125f, 0xcd9: 0x1447, 0xcda: 0x1573, 0xcdb: 0x070f, 0xcdc: 0x08b3, 0xcdd: 0x0d87,\n\t0xcde: 0x0ecf, 0xcdf: 0x1293, 0xce0: 0x15c3, 0xce1: 0x0ab3, 0xce2: 0x0e77, 0xce3: 0x1283,\n\t0xce4: 0x1317, 0xce5: 0x0c23, 0xce6: 0x11bb, 0xce7: 0x12df, 0xce8: 0x0b1f, 0xce9: 0x0d0f,\n\t0xcea: 0x0e17, 0xceb: 0x0f1b, 0xcec: 0x1427, 0xced: 0x074f, 0xcee: 0x07e7, 0xcef: 0x0853,\n\t0xcf0: 0x0c8b, 0xcf1: 0x0d7f, 0xcf2: 0x0ecb, 0xcf3: 0x0fef, 0xcf4: 0x1177, 0xcf5: 0x128b,\n\t0xcf6: 0x12a3, 0xcf7: 0x13c7, 0xcf8: 0x14ef, 0xcf9: 0x15a3, 0xcfa: 0x15bf, 0xcfb: 0x102b,\n\t0xcfc: 0x106b, 0xcfd: 0x1123, 0xcfe: 0x1243, 0xcff: 0x147b,\n\t// Block 0x34, offset 0xd00\n\t0xd00: 0x15cb, 0xd01: 0x134b, 0xd02: 0x09c7, 0xd03: 0x0b3b, 0xd04: 0x10db, 0xd05: 0x119b,\n\t0xd06: 0x0eff, 0xd07: 0x1033, 0xd08: 0x1397, 0xd09: 0x14e7, 0xd0a: 0x09c3, 0xd0b: 0x0a8f,\n\t0xd0c: 0x0d77, 0xd0d: 0x0e2b, 0xd0e: 0x0e5f, 0xd0f: 0x1113, 0xd10: 0x113b, 0xd11: 0x14a7,\n\t0xd12: 0x084f, 0xd13: 0x11a7, 0xd14: 0x07f3, 0xd15: 0x07ef, 0xd16: 0x1097, 0xd17: 0x1127,\n\t0xd18: 0x125b, 0xd19: 0x14af, 0xd1a: 0x1367, 0xd1b: 0x0c27, 0xd1c: 0x0d73, 0xd1d: 0x1357,\n\t0xd1e: 0x06f7, 0xd1f: 0x0a63, 0xd20: 0x0b93, 0xd21: 0x0f2f, 0xd22: 0x0faf, 0xd23: 0x0873,\n\t0xd24: 0x103b, 0xd25: 0x075f, 0xd26: 0x0b77, 0xd27: 0x06d7, 0xd28: 0x0deb, 0xd29: 0x0ca3,\n\t0xd2a: 0x110f, 0xd2b: 0x08c7, 0xd2c: 0x09b3, 0xd2d: 0x0ffb, 0xd2e: 0x1263, 0xd2f: 0x133b,\n\t0xd30: 0x0db7, 0xd31: 0x13f7, 0xd32: 0x0de3, 0xd33: 0x0c37, 0xd34: 0x121b, 0xd35: 0x0c57,\n\t0xd36: 0x0fab, 0xd37: 0x072b, 0xd38: 0x07a7, 0xd39: 0x07eb, 0xd3a: 0x0d53, 0xd3b: 0x10fb,\n\t0xd3c: 0x11f3, 0xd3d: 0x1347, 0xd3e: 0x145b, 0xd3f: 0x085b,\n\t// Block 0x35, offset 0xd40\n\t0xd40: 0x090f, 0xd41: 0x0a17, 0xd42: 0x0b2f, 0xd43: 0x0cbf, 0xd44: 0x0e7b, 0xd45: 0x103f,\n\t0xd46: 0x1497, 0xd47: 0x157b, 0xd48: 0x15cf, 0xd49: 0x15e7, 0xd4a: 0x0837, 0xd4b: 0x0cf3,\n\t0xd4c: 0x0da3, 0xd4d: 0x13eb, 0xd4e: 0x0afb, 0xd4f: 0x0bd7, 0xd50: 0x0bf3, 0xd51: 0x0c83,\n\t0xd52: 0x0e6b, 0xd53: 0x0eb7, 0xd54: 0x0f67, 0xd55: 0x108b, 0xd56: 0x112f, 0xd57: 0x1193,\n\t0xd58: 0x13db, 0xd59: 0x126b, 0xd5a: 0x1403, 0xd5b: 0x147f, 0xd5c: 0x080f, 0xd5d: 0x083b,\n\t0xd5e: 0x0923, 0xd5f: 0x0ea7, 0xd60: 0x12f3, 0xd61: 0x133b, 0xd62: 0x0b1b, 0xd63: 0x0b8b,\n\t0xd64: 0x0c4f, 0xd65: 0x0daf, 0xd66: 0x10d7, 0xd67: 0x0f23, 0xd68: 0x073b, 0xd69: 0x097f,\n\t0xd6a: 0x0a63, 0xd6b: 0x0ac7, 0xd6c: 0x0b97, 0xd6d: 0x0f3f, 0xd6e: 0x0f5b, 0xd6f: 0x116b,\n\t0xd70: 0x118b, 0xd71: 0x1463, 0xd72: 0x14e3, 0xd73: 0x14f3, 0xd74: 0x152f, 0xd75: 0x0753,\n\t0xd76: 0x107f, 0xd77: 0x144f, 0xd78: 0x14cb, 0xd79: 0x0baf, 0xd7a: 0x0717, 0xd7b: 0x0777,\n\t0xd7c: 0x0a67, 0xd7d: 0x0a87, 0xd7e: 0x0caf, 0xd7f: 0x0d73,\n\t// Block 0x36, offset 0xd80\n\t0xd80: 0x0ec3, 0xd81: 0x0fcb, 0xd82: 0x1277, 0xd83: 0x1417, 0xd84: 0x1623, 0xd85: 0x0ce3,\n\t0xd86: 0x14a3, 0xd87: 0x0833, 0xd88: 0x0d2f, 0xd89: 0x0d3b, 0xd8a: 0x0e0f, 0xd8b: 0x0e47,\n\t0xd8c: 0x0f4b, 0xd8d: 0x0fa7, 0xd8e: 0x1027, 0xd8f: 0x110b, 0xd90: 0x153b, 0xd91: 0x07af,\n\t0xd92: 0x0c03, 0xd93: 0x14b3, 0xd94: 0x0767, 0xd95: 0x0aab, 0xd96: 0x0e2f, 0xd97: 0x13df,\n\t0xd98: 0x0b67, 0xd99: 0x0bb7, 0xd9a: 0x0d43, 0xd9b: 0x0f2f, 0xd9c: 0x14bb, 0xd9d: 0x0817,\n\t0xd9e: 0x08ff, 0xd9f: 0x0a97, 0xda0: 0x0cd3, 0xda1: 0x0d1f, 0xda2: 0x0d5f, 0xda3: 0x0df3,\n\t0xda4: 0x0f47, 0xda5: 0x0fbb, 0xda6: 0x1157, 0xda7: 0x12f7, 0xda8: 0x1303, 0xda9: 0x1457,\n\t0xdaa: 0x14d7, 0xdab: 0x0883, 0xdac: 0x0e4b, 0xdad: 0x0903, 0xdae: 0x0ec7, 0xdaf: 0x0f6b,\n\t0xdb0: 0x1287, 0xdb1: 0x14bf, 0xdb2: 0x15ab, 0xdb3: 0x15d3, 0xdb4: 0x0d37, 0xdb5: 0x0e27,\n\t0xdb6: 0x11c3, 0xdb7: 0x10b7, 0xdb8: 0x10c3, 0xdb9: 0x10e7, 0xdba: 0x0f17, 0xdbb: 0x0e9f,\n\t0xdbc: 0x1363, 0xdbd: 0x0733, 0xdbe: 0x122b, 0xdbf: 0x081b,\n\t// Block 0x37, offset 0xdc0\n\t0xdc0: 0x080b, 0xdc1: 0x0b0b, 0xdc2: 0x0c2b, 0xdc3: 0x10f3, 0xdc4: 0x0a53, 0xdc5: 0x0e03,\n\t0xdc6: 0x0cef, 0xdc7: 0x13e7, 0xdc8: 0x12e7, 0xdc9: 0x14ab, 0xdca: 0x1323, 0xdcb: 0x0b27,\n\t0xdcc: 0x0787, 0xdcd: 0x095b, 0xdd0: 0x09af,\n\t0xdd2: 0x0cdf, 0xdd5: 0x07f7, 0xdd6: 0x0f1f, 0xdd7: 0x0fe3,\n\t0xdd8: 0x1047, 0xdd9: 0x1063, 0xdda: 0x1067, 0xddb: 0x107b, 0xddc: 0x14fb, 0xddd: 0x10eb,\n\t0xdde: 0x116f, 0xde0: 0x128f, 0xde2: 0x1353,\n\t0xde5: 0x1407, 0xde6: 0x1433,\n\t0xdea: 0x154f, 0xdeb: 0x1553, 0xdec: 0x1557, 0xded: 0x15bb, 0xdee: 0x142b, 0xdef: 0x14c7,\n\t0xdf0: 0x0757, 0xdf1: 0x077b, 0xdf2: 0x078f, 0xdf3: 0x084b, 0xdf4: 0x0857, 0xdf5: 0x0897,\n\t0xdf6: 0x094b, 0xdf7: 0x0967, 0xdf8: 0x096f, 0xdf9: 0x09ab, 0xdfa: 0x09b7, 0xdfb: 0x0a93,\n\t0xdfc: 0x0a9b, 0xdfd: 0x0ba3, 0xdfe: 0x0bcb, 0xdff: 0x0bd3,\n\t// Block 0x38, offset 0xe00\n\t0xe00: 0x0beb, 0xe01: 0x0c97, 0xe02: 0x0cc7, 0xe03: 0x0ce7, 0xe04: 0x0d57, 0xe05: 0x0e1b,\n\t0xe06: 0x0e37, 0xe07: 0x0e67, 0xe08: 0x0ebb, 0xe09: 0x0edb, 0xe0a: 0x0f4f, 0xe0b: 0x102f,\n\t0xe0c: 0x104b, 0xe0d: 0x1053, 0xe0e: 0x104f, 0xe0f: 0x1057, 0xe10: 0x105b, 0xe11: 0x105f,\n\t0xe12: 0x1073, 0xe13: 0x1077, 0xe14: 0x109b, 0xe15: 0x10af, 0xe16: 0x10cb, 0xe17: 0x112f,\n\t0xe18: 0x1137, 0xe19: 0x113f, 0xe1a: 0x1153, 0xe1b: 0x117b, 0xe1c: 0x11cb, 0xe1d: 0x11ff,\n\t0xe1e: 0x11ff, 0xe1f: 0x1267, 0xe20: 0x130f, 0xe21: 0x1327, 0xe22: 0x135b, 0xe23: 0x135f,\n\t0xe24: 0x13a3, 0xe25: 0x13a7, 0xe26: 0x13ff, 0xe27: 0x1407, 0xe28: 0x14db, 0xe29: 0x151f,\n\t0xe2a: 0x1537, 0xe2b: 0x0b9b, 0xe2c: 0x171e, 0xe2d: 0x11e3,\n\t0xe30: 0x06df, 0xe31: 0x07e3, 0xe32: 0x07a3, 0xe33: 0x074b, 0xe34: 0x078b, 0xe35: 0x07b7,\n\t0xe36: 0x0847, 0xe37: 0x0863, 0xe38: 0x094b, 0xe39: 0x0937, 0xe3a: 0x0947, 0xe3b: 0x0963,\n\t0xe3c: 0x09af, 0xe3d: 0x09bf, 0xe3e: 0x0a03, 0xe3f: 0x0a0f,\n\t// Block 0x39, offset 0xe40\n\t0xe40: 0x0a2b, 0xe41: 0x0a3b, 0xe42: 0x0b23, 0xe43: 0x0b2b, 0xe44: 0x0b5b, 0xe45: 0x0b7b,\n\t0xe46: 0x0bab, 0xe47: 0x0bc3, 0xe48: 0x0bb3, 0xe49: 0x0bd3, 0xe4a: 0x0bc7, 0xe4b: 0x0beb,\n\t0xe4c: 0x0c07, 0xe4d: 0x0c5f, 0xe4e: 0x0c6b, 0xe4f: 0x0c73, 0xe50: 0x0c9b, 0xe51: 0x0cdf,\n\t0xe52: 0x0d0f, 0xe53: 0x0d13, 0xe54: 0x0d27, 0xe55: 0x0da7, 0xe56: 0x0db7, 0xe57: 0x0e0f,\n\t0xe58: 0x0e5b, 0xe59: 0x0e53, 0xe5a: 0x0e67, 0xe5b: 0x0e83, 0xe5c: 0x0ebb, 0xe5d: 0x1013,\n\t0xe5e: 0x0edf, 0xe5f: 0x0f13, 0xe60: 0x0f1f, 0xe61: 0x0f5f, 0xe62: 0x0f7b, 0xe63: 0x0f9f,\n\t0xe64: 0x0fc3, 0xe65: 0x0fc7, 0xe66: 0x0fe3, 0xe67: 0x0fe7, 0xe68: 0x0ff7, 0xe69: 0x100b,\n\t0xe6a: 0x1007, 0xe6b: 0x1037, 0xe6c: 0x10b3, 0xe6d: 0x10cb, 0xe6e: 0x10e3, 0xe6f: 0x111b,\n\t0xe70: 0x112f, 0xe71: 0x114b, 0xe72: 0x117b, 0xe73: 0x122f, 0xe74: 0x1257, 0xe75: 0x12cb,\n\t0xe76: 0x1313, 0xe77: 0x131f, 0xe78: 0x1327, 0xe79: 0x133f, 0xe7a: 0x1353, 0xe7b: 0x1343,\n\t0xe7c: 0x135b, 0xe7d: 0x1357, 0xe7e: 0x134f, 0xe7f: 0x135f,\n\t// Block 0x3a, offset 0xe80\n\t0xe80: 0x136b, 0xe81: 0x13a7, 0xe82: 0x13e3, 0xe83: 0x1413, 0xe84: 0x144b, 0xe85: 0x146b,\n\t0xe86: 0x14b7, 0xe87: 0x14db, 0xe88: 0x14fb, 0xe89: 0x150f, 0xe8a: 0x151f, 0xe8b: 0x152b,\n\t0xe8c: 0x1537, 0xe8d: 0x158b, 0xe8e: 0x162b, 0xe8f: 0x16b5, 0xe90: 0x16b0, 0xe91: 0x16e2,\n\t0xe92: 0x0607, 0xe93: 0x062f, 0xe94: 0x0633, 0xe95: 0x1764, 0xe96: 0x1791, 0xe97: 0x1809,\n\t0xe98: 0x1617, 0xe99: 0x1627,\n\t// Block 0x3b, offset 0xec0\n\t0xec0: 0x19d8, 0xec1: 0x19db, 0xec2: 0x19de, 0xec3: 0x1c0b, 0xec4: 0x1c0f, 0xec5: 0x1a62,\n\t0xec6: 0x1a62,\n\t0xed3: 0x1d78, 0xed4: 0x1d69, 0xed5: 0x1d6e, 0xed6: 0x1d7d, 0xed7: 0x1d73,\n\t0xedd: 0x4393,\n\t0xede: 0x8115, 0xedf: 0x4405, 0xee0: 0x022d, 0xee1: 0x0215, 0xee2: 0x021e, 0xee3: 0x0221,\n\t0xee4: 0x0224, 0xee5: 0x0227, 0xee6: 0x022a, 0xee7: 0x0230, 0xee8: 0x0233, 0xee9: 0x0017,\n\t0xeea: 0x43f3, 0xeeb: 0x43f9, 0xeec: 0x44f7, 0xeed: 0x44ff, 0xeee: 0x434b, 0xeef: 0x4351,\n\t0xef0: 0x4357, 0xef1: 0x435d, 0xef2: 0x4369, 0xef3: 0x436f, 0xef4: 0x4375, 0xef5: 0x4381,\n\t0xef6: 0x4387, 0xef8: 0x438d, 0xef9: 0x4399, 0xefa: 0x439f, 0xefb: 0x43a5,\n\t0xefc: 0x43b1, 0xefe: 0x43b7,\n\t// Block 0x3c, offset 0xf00\n\t0xf00: 0x43bd, 0xf01: 0x43c3, 0xf03: 0x43c9, 0xf04: 0x43cf,\n\t0xf06: 0x43db, 0xf07: 0x43e1, 0xf08: 0x43e7, 0xf09: 0x43ed, 0xf0a: 0x43ff, 0xf0b: 0x437b,\n\t0xf0c: 0x4363, 0xf0d: 0x43ab, 0xf0e: 0x43d5, 0xf0f: 0x1d82, 0xf10: 0x0299, 0xf11: 0x0299,\n\t0xf12: 0x02a2, 0xf13: 0x02a2, 0xf14: 0x02a2, 0xf15: 0x02a2, 0xf16: 0x02a5, 0xf17: 0x02a5,\n\t0xf18: 0x02a5, 0xf19: 0x02a5, 0xf1a: 0x02ab, 0xf1b: 0x02ab, 0xf1c: 0x02ab, 0xf1d: 0x02ab,\n\t0xf1e: 0x029f, 0xf1f: 0x029f, 0xf20: 0x029f, 0xf21: 0x029f, 0xf22: 0x02a8, 0xf23: 0x02a8,\n\t0xf24: 0x02a8, 0xf25: 0x02a8, 0xf26: 0x029c, 0xf27: 0x029c, 0xf28: 0x029c, 0xf29: 0x029c,\n\t0xf2a: 0x02cf, 0xf2b: 0x02cf, 0xf2c: 0x02cf, 0xf2d: 0x02cf, 0xf2e: 0x02d2, 0xf2f: 0x02d2,\n\t0xf30: 0x02d2, 0xf31: 0x02d2, 0xf32: 0x02b1, 0xf33: 0x02b1, 0xf34: 0x02b1, 0xf35: 0x02b1,\n\t0xf36: 0x02ae, 0xf37: 0x02ae, 0xf38: 0x02ae, 0xf39: 0x02ae, 0xf3a: 0x02b4, 0xf3b: 0x02b4,\n\t0xf3c: 0x02b4, 0xf3d: 0x02b4, 0xf3e: 0x02b7, 0xf3f: 0x02b7,\n\t// Block 0x3d, offset 0xf40\n\t0xf40: 0x02b7, 0xf41: 0x02b7, 0xf42: 0x02c0, 0xf43: 0x02c0, 0xf44: 0x02bd, 0xf45: 0x02bd,\n\t0xf46: 0x02c3, 0xf47: 0x02c3, 0xf48: 0x02ba, 0xf49: 0x02ba, 0xf4a: 0x02c9, 0xf4b: 0x02c9,\n\t0xf4c: 0x02c6, 0xf4d: 0x02c6, 0xf4e: 0x02d5, 0xf4f: 0x02d5, 0xf50: 0x02d5, 0xf51: 0x02d5,\n\t0xf52: 0x02db, 0xf53: 0x02db, 0xf54: 0x02db, 0xf55: 0x02db, 0xf56: 0x02e1, 0xf57: 0x02e1,\n\t0xf58: 0x02e1, 0xf59: 0x02e1, 0xf5a: 0x02de, 0xf5b: 0x02de, 0xf5c: 0x02de, 0xf5d: 0x02de,\n\t0xf5e: 0x02e4, 0xf5f: 0x02e4, 0xf60: 0x02e7, 0xf61: 0x02e7, 0xf62: 0x02e7, 0xf63: 0x02e7,\n\t0xf64: 0x4471, 0xf65: 0x4471, 0xf66: 0x02ed, 0xf67: 0x02ed, 0xf68: 0x02ed, 0xf69: 0x02ed,\n\t0xf6a: 0x02ea, 0xf6b: 0x02ea, 0xf6c: 0x02ea, 0xf6d: 0x02ea, 0xf6e: 0x0308, 0xf6f: 0x0308,\n\t0xf70: 0x446b, 0xf71: 0x446b,\n\t// Block 0x3e, offset 0xf80\n\t0xf93: 0x02d8, 0xf94: 0x02d8, 0xf95: 0x02d8, 0xf96: 0x02d8, 0xf97: 0x02f6,\n\t0xf98: 0x02f6, 0xf99: 0x02f3, 0xf9a: 0x02f3, 0xf9b: 0x02f9, 0xf9c: 0x02f9, 0xf9d: 0x2052,\n\t0xf9e: 0x02ff, 0xf9f: 0x02ff, 0xfa0: 0x02f0, 0xfa1: 0x02f0, 0xfa2: 0x02fc, 0xfa3: 0x02fc,\n\t0xfa4: 0x0305, 0xfa5: 0x0305, 0xfa6: 0x0305, 0xfa7: 0x0305, 0xfa8: 0x028d, 0xfa9: 0x028d,\n\t0xfaa: 0x25ad, 0xfab: 0x25ad, 0xfac: 0x261d, 0xfad: 0x261d, 0xfae: 0x25ec, 0xfaf: 0x25ec,\n\t0xfb0: 0x2608, 0xfb1: 0x2608, 0xfb2: 0x2601, 0xfb3: 0x2601, 0xfb4: 0x260f, 0xfb5: 0x260f,\n\t0xfb6: 0x2616, 0xfb7: 0x2616, 0xfb8: 0x2616, 0xfb9: 0x25f3, 0xfba: 0x25f3, 0xfbb: 0x25f3,\n\t0xfbc: 0x0302, 0xfbd: 0x0302, 0xfbe: 0x0302, 0xfbf: 0x0302,\n\t// Block 0x3f, offset 0xfc0\n\t0xfc0: 0x25b4, 0xfc1: 0x25bb, 0xfc2: 0x25d7, 0xfc3: 0x25f3, 0xfc4: 0x25fa, 0xfc5: 0x1d8c,\n\t0xfc6: 0x1d91, 0xfc7: 0x1d96, 0xfc8: 0x1da5, 0xfc9: 0x1db4, 0xfca: 0x1db9, 0xfcb: 0x1dbe,\n\t0xfcc: 0x1dc3, 0xfcd: 0x1dc8, 0xfce: 0x1dd7, 0xfcf: 0x1de6, 0xfd0: 0x1deb, 0xfd1: 0x1df0,\n\t0xfd2: 0x1dff, 0xfd3: 0x1e0e, 0xfd4: 0x1e13, 0xfd5: 0x1e18, 0xfd6: 0x1e1d, 0xfd7: 0x1e2c,\n\t0xfd8: 0x1e31, 0xfd9: 0x1e40, 0xfda: 0x1e45, 0xfdb: 0x1e4a, 0xfdc: 0x1e59, 0xfdd: 0x1e5e,\n\t0xfde: 0x1e63, 0xfdf: 0x1e6d, 0xfe0: 0x1ea9, 0xfe1: 0x1eb8, 0xfe2: 0x1ec7, 0xfe3: 0x1ecc,\n\t0xfe4: 0x1ed1, 0xfe5: 0x1edb, 0xfe6: 0x1eea, 0xfe7: 0x1eef, 0xfe8: 0x1efe, 0xfe9: 0x1f03,\n\t0xfea: 0x1f08, 0xfeb: 0x1f17, 0xfec: 0x1f1c, 0xfed: 0x1f2b, 0xfee: 0x1f30, 0xfef: 0x1f35,\n\t0xff0: 0x1f3a, 0xff1: 0x1f3f, 0xff2: 0x1f44, 0xff3: 0x1f49, 0xff4: 0x1f4e, 0xff5: 0x1f53,\n\t0xff6: 0x1f58, 0xff7: 0x1f5d, 0xff8: 0x1f62, 0xff9: 0x1f67, 0xffa: 0x1f6c, 0xffb: 0x1f71,\n\t0xffc: 0x1f76, 0xffd: 0x1f7b, 0xffe: 0x1f80, 0xfff: 0x1f8a,\n\t// Block 0x40, offset 0x1000\n\t0x1000: 0x1f8f, 0x1001: 0x1f94, 0x1002: 0x1f99, 0x1003: 0x1fa3, 0x1004: 0x1fa8, 0x1005: 0x1fb2,\n\t0x1006: 0x1fb7, 0x1007: 0x1fbc, 0x1008: 0x1fc1, 0x1009: 0x1fc6, 0x100a: 0x1fcb, 0x100b: 0x1fd0,\n\t0x100c: 0x1fd5, 0x100d: 0x1fda, 0x100e: 0x1fe9, 0x100f: 0x1ff8, 0x1010: 0x1ffd, 0x1011: 0x2002,\n\t0x1012: 0x2007, 0x1013: 0x200c, 0x1014: 0x2011, 0x1015: 0x201b, 0x1016: 0x2020, 0x1017: 0x2025,\n\t0x1018: 0x2034, 0x1019: 0x2043, 0x101a: 0x2048, 0x101b: 0x4423, 0x101c: 0x4429, 0x101d: 0x445f,\n\t0x101e: 0x44b6, 0x101f: 0x44bd, 0x1020: 0x44c4, 0x1021: 0x44cb, 0x1022: 0x44d2, 0x1023: 0x44d9,\n\t0x1024: 0x25c9, 0x1025: 0x25d0, 0x1026: 0x25d7, 0x1027: 0x25de, 0x1028: 0x25f3, 0x1029: 0x25fa,\n\t0x102a: 0x1d9b, 0x102b: 0x1da0, 0x102c: 0x1da5, 0x102d: 0x1daa, 0x102e: 0x1db4, 0x102f: 0x1db9,\n\t0x1030: 0x1dcd, 0x1031: 0x1dd2, 0x1032: 0x1dd7, 0x1033: 0x1ddc, 0x1034: 0x1de6, 0x1035: 0x1deb,\n\t0x1036: 0x1df5, 0x1037: 0x1dfa, 0x1038: 0x1dff, 0x1039: 0x1e04, 0x103a: 0x1e0e, 0x103b: 0x1e13,\n\t0x103c: 0x1f3f, 0x103d: 0x1f44, 0x103e: 0x1f53, 0x103f: 0x1f58,\n\t// Block 0x41, offset 0x1040\n\t0x1040: 0x1f5d, 0x1041: 0x1f71, 0x1042: 0x1f76, 0x1043: 0x1f7b, 0x1044: 0x1f80, 0x1045: 0x1f99,\n\t0x1046: 0x1fa3, 0x1047: 0x1fa8, 0x1048: 0x1fad, 0x1049: 0x1fc1, 0x104a: 0x1fdf, 0x104b: 0x1fe4,\n\t0x104c: 0x1fe9, 0x104d: 0x1fee, 0x104e: 0x1ff8, 0x104f: 0x1ffd, 0x1050: 0x445f, 0x1051: 0x202a,\n\t0x1052: 0x202f, 0x1053: 0x2034, 0x1054: 0x2039, 0x1055: 0x2043, 0x1056: 0x2048, 0x1057: 0x25b4,\n\t0x1058: 0x25bb, 0x1059: 0x25c2, 0x105a: 0x25d7, 0x105b: 0x25e5, 0x105c: 0x1d8c, 0x105d: 0x1d91,\n\t0x105e: 0x1d96, 0x105f: 0x1da5, 0x1060: 0x1daf, 0x1061: 0x1dbe, 0x1062: 0x1dc3, 0x1063: 0x1dc8,\n\t0x1064: 0x1dd7, 0x1065: 0x1de1, 0x1066: 0x1dff, 0x1067: 0x1e18, 0x1068: 0x1e1d, 0x1069: 0x1e2c,\n\t0x106a: 0x1e31, 0x106b: 0x1e40, 0x106c: 0x1e4a, 0x106d: 0x1e59, 0x106e: 0x1e5e, 0x106f: 0x1e63,\n\t0x1070: 0x1e6d, 0x1071: 0x1ea9, 0x1072: 0x1eae, 0x1073: 0x1eb8, 0x1074: 0x1ec7, 0x1075: 0x1ecc,\n\t0x1076: 0x1ed1, 0x1077: 0x1edb, 0x1078: 0x1eea, 0x1079: 0x1efe, 0x107a: 0x1f03, 0x107b: 0x1f08,\n\t0x107c: 0x1f17, 0x107d: 0x1f1c, 0x107e: 0x1f2b, 0x107f: 0x1f30,\n\t// Block 0x42, offset 0x1080\n\t0x1080: 0x1f35, 0x1081: 0x1f3a, 0x1082: 0x1f49, 0x1083: 0x1f4e, 0x1084: 0x1f62, 0x1085: 0x1f67,\n\t0x1086: 0x1f6c, 0x1087: 0x1f71, 0x1088: 0x1f76, 0x1089: 0x1f8a, 0x108a: 0x1f8f, 0x108b: 0x1f94,\n\t0x108c: 0x1f99, 0x108d: 0x1f9e, 0x108e: 0x1fb2, 0x108f: 0x1fb7, 0x1090: 0x1fbc, 0x1091: 0x1fc1,\n\t0x1092: 0x1fd0, 0x1093: 0x1fd5, 0x1094: 0x1fda, 0x1095: 0x1fe9, 0x1096: 0x1ff3, 0x1097: 0x2002,\n\t0x1098: 0x2007, 0x1099: 0x4453, 0x109a: 0x201b, 0x109b: 0x2020, 0x109c: 0x2025, 0x109d: 0x2034,\n\t0x109e: 0x203e, 0x109f: 0x25d7, 0x10a0: 0x25e5, 0x10a1: 0x1da5, 0x10a2: 0x1daf, 0x10a3: 0x1dd7,\n\t0x10a4: 0x1de1, 0x10a5: 0x1dff, 0x10a6: 0x1e09, 0x10a7: 0x1e6d, 0x10a8: 0x1e72, 0x10a9: 0x1e95,\n\t0x10aa: 0x1e9a, 0x10ab: 0x1f71, 0x10ac: 0x1f76, 0x10ad: 0x1f99, 0x10ae: 0x1fe9, 0x10af: 0x1ff3,\n\t0x10b0: 0x2034, 0x10b1: 0x203e, 0x10b2: 0x4507, 0x10b3: 0x450f, 0x10b4: 0x4517, 0x10b5: 0x1ef4,\n\t0x10b6: 0x1ef9, 0x10b7: 0x1f0d, 0x10b8: 0x1f12, 0x10b9: 0x1f21, 0x10ba: 0x1f26, 0x10bb: 0x1e77,\n\t0x10bc: 0x1e7c, 0x10bd: 0x1e9f, 0x10be: 0x1ea4, 0x10bf: 0x1e36,\n\t// Block 0x43, offset 0x10c0\n\t0x10c0: 0x1e3b, 0x10c1: 0x1e22, 0x10c2: 0x1e27, 0x10c3: 0x1e4f, 0x10c4: 0x1e54, 0x10c5: 0x1ebd,\n\t0x10c6: 0x1ec2, 0x10c7: 0x1ee0, 0x10c8: 0x1ee5, 0x10c9: 0x1e81, 0x10ca: 0x1e86, 0x10cb: 0x1e8b,\n\t0x10cc: 0x1e95, 0x10cd: 0x1e90, 0x10ce: 0x1e68, 0x10cf: 0x1eb3, 0x10d0: 0x1ed6, 0x10d1: 0x1ef4,\n\t0x10d2: 0x1ef9, 0x10d3: 0x1f0d, 0x10d4: 0x1f12, 0x10d5: 0x1f21, 0x10d6: 0x1f26, 0x10d7: 0x1e77,\n\t0x10d8: 0x1e7c, 0x10d9: 0x1e9f, 0x10da: 0x1ea4, 0x10db: 0x1e36, 0x10dc: 0x1e3b, 0x10dd: 0x1e22,\n\t0x10de: 0x1e27, 0x10df: 0x1e4f, 0x10e0: 0x1e54, 0x10e1: 0x1ebd, 0x10e2: 0x1ec2, 0x10e3: 0x1ee0,\n\t0x10e4: 0x1ee5, 0x10e5: 0x1e81, 0x10e6: 0x1e86, 0x10e7: 0x1e8b, 0x10e8: 0x1e95, 0x10e9: 0x1e90,\n\t0x10ea: 0x1e68, 0x10eb: 0x1eb3, 0x10ec: 0x1ed6, 0x10ed: 0x1e81, 0x10ee: 0x1e86, 0x10ef: 0x1e8b,\n\t0x10f0: 0x1e95, 0x10f1: 0x1e72, 0x10f2: 0x1e9a, 0x10f3: 0x1eef, 0x10f4: 0x1e59, 0x10f5: 0x1e5e,\n\t0x10f6: 0x1e63, 0x10f7: 0x1e81, 0x10f8: 0x1e86, 0x10f9: 0x1e8b, 0x10fa: 0x1eef, 0x10fb: 0x1efe,\n\t0x10fc: 0x440b, 0x10fd: 0x440b,\n\t// Block 0x44, offset 0x1100\n\t0x1110: 0x2314, 0x1111: 0x2329,\n\t0x1112: 0x2329, 0x1113: 0x2330, 0x1114: 0x2337, 0x1115: 0x234c, 0x1116: 0x2353, 0x1117: 0x235a,\n\t0x1118: 0x237d, 0x1119: 0x237d, 0x111a: 0x23a0, 0x111b: 0x2399, 0x111c: 0x23b5, 0x111d: 0x23a7,\n\t0x111e: 0x23ae, 0x111f: 0x23d1, 0x1120: 0x23d1, 0x1121: 0x23ca, 0x1122: 0x23d8, 0x1123: 0x23d8,\n\t0x1124: 0x2402, 0x1125: 0x2402, 0x1126: 0x241e, 0x1127: 0x23e6, 0x1128: 0x23e6, 0x1129: 0x23df,\n\t0x112a: 0x23f4, 0x112b: 0x23f4, 0x112c: 0x23fb, 0x112d: 0x23fb, 0x112e: 0x2425, 0x112f: 0x2433,\n\t0x1130: 0x2433, 0x1131: 0x243a, 0x1132: 0x243a, 0x1133: 0x2441, 0x1134: 0x2448, 0x1135: 0x244f,\n\t0x1136: 0x2456, 0x1137: 0x2456, 0x1138: 0x245d, 0x1139: 0x246b, 0x113a: 0x2479, 0x113b: 0x2472,\n\t0x113c: 0x2480, 0x113d: 0x2480, 0x113e: 0x2495, 0x113f: 0x249c,\n\t// Block 0x45, offset 0x1140\n\t0x1140: 0x24cd, 0x1141: 0x24db, 0x1142: 0x24d4, 0x1143: 0x24b8, 0x1144: 0x24b8, 0x1145: 0x24e2,\n\t0x1146: 0x24e2, 0x1147: 0x24e9, 0x1148: 0x24e9, 0x1149: 0x2513, 0x114a: 0x251a, 0x114b: 0x2521,\n\t0x114c: 0x24f7, 0x114d: 0x2505, 0x114e: 0x2528, 0x114f: 0x252f,\n\t0x1152: 0x24fe, 0x1153: 0x2583, 0x1154: 0x258a, 0x1155: 0x2560, 0x1156: 0x2567, 0x1157: 0x254b,\n\t0x1158: 0x254b, 0x1159: 0x2552, 0x115a: 0x257c, 0x115b: 0x2575, 0x115c: 0x259f, 0x115d: 0x259f,\n\t0x115e: 0x230d, 0x115f: 0x2322, 0x1160: 0x231b, 0x1161: 0x2345, 0x1162: 0x233e, 0x1163: 0x2368,\n\t0x1164: 0x2361, 0x1165: 0x238b, 0x1166: 0x236f, 0x1167: 0x2384, 0x1168: 0x23bc, 0x1169: 0x2409,\n\t0x116a: 0x23ed, 0x116b: 0x242c, 0x116c: 0x24c6, 0x116d: 0x24f0, 0x116e: 0x2598, 0x116f: 0x2591,\n\t0x1170: 0x25a6, 0x1171: 0x253d, 0x1172: 0x24a3, 0x1173: 0x256e, 0x1174: 0x2495, 0x1175: 0x24cd,\n\t0x1176: 0x2464, 0x1177: 0x24b1, 0x1178: 0x2544, 0x1179: 0x2536, 0x117a: 0x24bf, 0x117b: 0x24aa,\n\t0x117c: 0x24bf, 0x117d: 0x2544, 0x117e: 0x2376, 0x117f: 0x2392,\n\t// Block 0x46, offset 0x1180\n\t0x1180: 0x250c, 0x1181: 0x2487, 0x1182: 0x2306, 0x1183: 0x24aa, 0x1184: 0x244f, 0x1185: 0x241e,\n\t0x1186: 0x23c3, 0x1187: 0x2559,\n\t0x11b0: 0x2417, 0x11b1: 0x248e, 0x11b2: 0x27c2, 0x11b3: 0x27b9, 0x11b4: 0x27ef, 0x11b5: 0x27dd,\n\t0x11b6: 0x27cb, 0x11b7: 0x27e6, 0x11b8: 0x27f8, 0x11b9: 0x2410, 0x11ba: 0x2c7f, 0x11bb: 0x2aff,\n\t0x11bc: 0x27d4,\n\t// Block 0x47, offset 0x11c0\n\t0x11d0: 0x0019, 0x11d1: 0x0483,\n\t0x11d2: 0x0487, 0x11d3: 0x0035, 0x11d4: 0x0037, 0x11d5: 0x0003, 0x11d6: 0x003f, 0x11d7: 0x04bf,\n\t0x11d8: 0x04c3, 0x11d9: 0x1b5f,\n\t0x11e0: 0x8132, 0x11e1: 0x8132, 0x11e2: 0x8132, 0x11e3: 0x8132,\n\t0x11e4: 0x8132, 0x11e5: 0x8132, 0x11e6: 0x8132, 0x11e7: 0x812d, 0x11e8: 0x812d, 0x11e9: 0x812d,\n\t0x11ea: 0x812d, 0x11eb: 0x812d, 0x11ec: 0x812d, 0x11ed: 0x812d, 0x11ee: 0x8132, 0x11ef: 0x8132,\n\t0x11f0: 0x1873, 0x11f1: 0x0443, 0x11f2: 0x043f, 0x11f3: 0x007f, 0x11f4: 0x007f, 0x11f5: 0x0011,\n\t0x11f6: 0x0013, 0x11f7: 0x00b7, 0x11f8: 0x00bb, 0x11f9: 0x04b7, 0x11fa: 0x04bb, 0x11fb: 0x04ab,\n\t0x11fc: 0x04af, 0x11fd: 0x0493, 0x11fe: 0x0497, 0x11ff: 0x048b,\n\t// Block 0x48, offset 0x1200\n\t0x1200: 0x048f, 0x1201: 0x049b, 0x1202: 0x049f, 0x1203: 0x04a3, 0x1204: 0x04a7,\n\t0x1207: 0x0077, 0x1208: 0x007b, 0x1209: 0x426c, 0x120a: 0x426c, 0x120b: 0x426c,\n\t0x120c: 0x426c, 0x120d: 0x007f, 0x120e: 0x007f, 0x120f: 0x007f, 0x1210: 0x0019, 0x1211: 0x0483,\n\t0x1212: 0x001d, 0x1214: 0x0037, 0x1215: 0x0035, 0x1216: 0x003f, 0x1217: 0x0003,\n\t0x1218: 0x0443, 0x1219: 0x0011, 0x121a: 0x0013, 0x121b: 0x00b7, 0x121c: 0x00bb, 0x121d: 0x04b7,\n\t0x121e: 0x04bb, 0x121f: 0x0007, 0x1220: 0x000d, 0x1221: 0x0015, 0x1222: 0x0017, 0x1223: 0x001b,\n\t0x1224: 0x0039, 0x1225: 0x003d, 0x1226: 0x003b, 0x1228: 0x0079, 0x1229: 0x0009,\n\t0x122a: 0x000b, 0x122b: 0x0041,\n\t0x1230: 0x42ad, 0x1231: 0x442f, 0x1232: 0x42b2, 0x1234: 0x42b7,\n\t0x1236: 0x42bc, 0x1237: 0x4435, 0x1238: 0x42c1, 0x1239: 0x443b, 0x123a: 0x42c6, 0x123b: 0x4441,\n\t0x123c: 0x42cb, 0x123d: 0x4447, 0x123e: 0x42d0, 0x123f: 0x444d,\n\t// Block 0x49, offset 0x1240\n\t0x1240: 0x0236, 0x1241: 0x4411, 0x1242: 0x4411, 0x1243: 0x4417, 0x1244: 0x4417, 0x1245: 0x4459,\n\t0x1246: 0x4459, 0x1247: 0x441d, 0x1248: 0x441d, 0x1249: 0x4465, 0x124a: 0x4465, 0x124b: 0x4465,\n\t0x124c: 0x4465, 0x124d: 0x0239, 0x124e: 0x0239, 0x124f: 0x023c, 0x1250: 0x023c, 0x1251: 0x023c,\n\t0x1252: 0x023c, 0x1253: 0x023f, 0x1254: 0x023f, 0x1255: 0x0242, 0x1256: 0x0242, 0x1257: 0x0242,\n\t0x1258: 0x0242, 0x1259: 0x0245, 0x125a: 0x0245, 0x125b: 0x0245, 0x125c: 0x0245, 0x125d: 0x0248,\n\t0x125e: 0x0248, 0x125f: 0x0248, 0x1260: 0x0248, 0x1261: 0x024b, 0x1262: 0x024b, 0x1263: 0x024b,\n\t0x1264: 0x024b, 0x1265: 0x024e, 0x1266: 0x024e, 0x1267: 0x024e, 0x1268: 0x024e, 0x1269: 0x0251,\n\t0x126a: 0x0251, 0x126b: 0x0254, 0x126c: 0x0254, 0x126d: 0x0257, 0x126e: 0x0257, 0x126f: 0x025a,\n\t0x1270: 0x025a, 0x1271: 0x025d, 0x1272: 0x025d, 0x1273: 0x025d, 0x1274: 0x025d, 0x1275: 0x0260,\n\t0x1276: 0x0260, 0x1277: 0x0260, 0x1278: 0x0260, 0x1279: 0x0263, 0x127a: 0x0263, 0x127b: 0x0263,\n\t0x127c: 0x0263, 0x127d: 0x0266, 0x127e: 0x0266, 0x127f: 0x0266,\n\t// Block 0x4a, offset 0x1280\n\t0x1280: 0x0266, 0x1281: 0x0269, 0x1282: 0x0269, 0x1283: 0x0269, 0x1284: 0x0269, 0x1285: 0x026c,\n\t0x1286: 0x026c, 0x1287: 0x026c, 0x1288: 0x026c, 0x1289: 0x026f, 0x128a: 0x026f, 0x128b: 0x026f,\n\t0x128c: 0x026f, 0x128d: 0x0272, 0x128e: 0x0272, 0x128f: 0x0272, 0x1290: 0x0272, 0x1291: 0x0275,\n\t0x1292: 0x0275, 0x1293: 0x0275, 0x1294: 0x0275, 0x1295: 0x0278, 0x1296: 0x0278, 0x1297: 0x0278,\n\t0x1298: 0x0278, 0x1299: 0x027b, 0x129a: 0x027b, 0x129b: 0x027b, 0x129c: 0x027b, 0x129d: 0x027e,\n\t0x129e: 0x027e, 0x129f: 0x027e, 0x12a0: 0x027e, 0x12a1: 0x0281, 0x12a2: 0x0281, 0x12a3: 0x0281,\n\t0x12a4: 0x0281, 0x12a5: 0x0284, 0x12a6: 0x0284, 0x12a7: 0x0284, 0x12a8: 0x0284, 0x12a9: 0x0287,\n\t0x12aa: 0x0287, 0x12ab: 0x0287, 0x12ac: 0x0287, 0x12ad: 0x028a, 0x12ae: 0x028a, 0x12af: 0x028d,\n\t0x12b0: 0x028d, 0x12b1: 0x0290, 0x12b2: 0x0290, 0x12b3: 0x0290, 0x12b4: 0x0290, 0x12b5: 0x2e03,\n\t0x12b6: 0x2e03, 0x12b7: 0x2e0b, 0x12b8: 0x2e0b, 0x12b9: 0x2e13, 0x12ba: 0x2e13, 0x12bb: 0x1f85,\n\t0x12bc: 0x1f85,\n\t// Block 0x4b, offset 0x12c0\n\t0x12c0: 0x0081, 0x12c1: 0x0083, 0x12c2: 0x0085, 0x12c3: 0x0087, 0x12c4: 0x0089, 0x12c5: 0x008b,\n\t0x12c6: 0x008d, 0x12c7: 0x008f, 0x12c8: 0x0091, 0x12c9: 0x0093, 0x12ca: 0x0095, 0x12cb: 0x0097,\n\t0x12cc: 0x0099, 0x12cd: 0x009b, 0x12ce: 0x009d, 0x12cf: 0x009f, 0x12d0: 0x00a1, 0x12d1: 0x00a3,\n\t0x12d2: 0x00a5, 0x12d3: 0x00a7, 0x12d4: 0x00a9, 0x12d5: 0x00ab, 0x12d6: 0x00ad, 0x12d7: 0x00af,\n\t0x12d8: 0x00b1, 0x12d9: 0x00b3, 0x12da: 0x00b5, 0x12db: 0x00b7, 0x12dc: 0x00b9, 0x12dd: 0x00bb,\n\t0x12de: 0x00bd, 0x12df: 0x0477, 0x12e0: 0x047b, 0x12e1: 0x0487, 0x12e2: 0x049b, 0x12e3: 0x049f,\n\t0x12e4: 0x0483, 0x12e5: 0x05ab, 0x12e6: 0x05a3, 0x12e7: 0x04c7, 0x12e8: 0x04cf, 0x12e9: 0x04d7,\n\t0x12ea: 0x04df, 0x12eb: 0x04e7, 0x12ec: 0x056b, 0x12ed: 0x0573, 0x12ee: 0x057b, 0x12ef: 0x051f,\n\t0x12f0: 0x05af, 0x12f1: 0x04cb, 0x12f2: 0x04d3, 0x12f3: 0x04db, 0x12f4: 0x04e3, 0x12f5: 0x04eb,\n\t0x12f6: 0x04ef, 0x12f7: 0x04f3, 0x12f8: 0x04f7, 0x12f9: 0x04fb, 0x12fa: 0x04ff, 0x12fb: 0x0503,\n\t0x12fc: 0x0507, 0x12fd: 0x050b, 0x12fe: 0x050f, 0x12ff: 0x0513,\n\t// Block 0x4c, offset 0x1300\n\t0x1300: 0x0517, 0x1301: 0x051b, 0x1302: 0x0523, 0x1303: 0x0527, 0x1304: 0x052b, 0x1305: 0x052f,\n\t0x1306: 0x0533, 0x1307: 0x0537, 0x1308: 0x053b, 0x1309: 0x053f, 0x130a: 0x0543, 0x130b: 0x0547,\n\t0x130c: 0x054b, 0x130d: 0x054f, 0x130e: 0x0553, 0x130f: 0x0557, 0x1310: 0x055b, 0x1311: 0x055f,\n\t0x1312: 0x0563, 0x1313: 0x0567, 0x1314: 0x056f, 0x1315: 0x0577, 0x1316: 0x057f, 0x1317: 0x0583,\n\t0x1318: 0x0587, 0x1319: 0x058b, 0x131a: 0x058f, 0x131b: 0x0593, 0x131c: 0x0597, 0x131d: 0x05a7,\n\t0x131e: 0x4a7b, 0x131f: 0x4a81, 0x1320: 0x03c3, 0x1321: 0x0313, 0x1322: 0x0317, 0x1323: 0x4a3e,\n\t0x1324: 0x031b, 0x1325: 0x4a44, 0x1326: 0x4a4a, 0x1327: 0x031f, 0x1328: 0x0323, 0x1329: 0x0327,\n\t0x132a: 0x4a50, 0x132b: 0x4a56, 0x132c: 0x4a5c, 0x132d: 0x4a62, 0x132e: 0x4a68, 0x132f: 0x4a6e,\n\t0x1330: 0x0367, 0x1331: 0x032b, 0x1332: 0x032f, 0x1333: 0x0333, 0x1334: 0x037b, 0x1335: 0x0337,\n\t0x1336: 0x033b, 0x1337: 0x033f, 0x1338: 0x0343, 0x1339: 0x0347, 0x133a: 0x034b, 0x133b: 0x034f,\n\t0x133c: 0x0353, 0x133d: 0x0357, 0x133e: 0x035b,\n\t// Block 0x4d, offset 0x1340\n\t0x1342: 0x49c0, 0x1343: 0x49c6, 0x1344: 0x49cc, 0x1345: 0x49d2,\n\t0x1346: 0x49d8, 0x1347: 0x49de, 0x134a: 0x49e4, 0x134b: 0x49ea,\n\t0x134c: 0x49f0, 0x134d: 0x49f6, 0x134e: 0x49fc, 0x134f: 0x4a02,\n\t0x1352: 0x4a08, 0x1353: 0x4a0e, 0x1354: 0x4a14, 0x1355: 0x4a1a, 0x1356: 0x4a20, 0x1357: 0x4a26,\n\t0x135a: 0x4a2c, 0x135b: 0x4a32, 0x135c: 0x4a38,\n\t0x1360: 0x00bf, 0x1361: 0x00c2, 0x1362: 0x00cb, 0x1363: 0x4267,\n\t0x1364: 0x00c8, 0x1365: 0x00c5, 0x1366: 0x0447, 0x1368: 0x046b, 0x1369: 0x044b,\n\t0x136a: 0x044f, 0x136b: 0x0453, 0x136c: 0x0457, 0x136d: 0x046f, 0x136e: 0x0473,\n\t// Block 0x4e, offset 0x1380\n\t0x1380: 0x0063, 0x1381: 0x0065, 0x1382: 0x0067, 0x1383: 0x0069, 0x1384: 0x006b, 0x1385: 0x006d,\n\t0x1386: 0x006f, 0x1387: 0x0071, 0x1388: 0x0073, 0x1389: 0x0075, 0x138a: 0x0083, 0x138b: 0x0085,\n\t0x138c: 0x0087, 0x138d: 0x0089, 0x138e: 0x008b, 0x138f: 0x008d, 0x1390: 0x008f, 0x1391: 0x0091,\n\t0x1392: 0x0093, 0x1393: 0x0095, 0x1394: 0x0097, 0x1395: 0x0099, 0x1396: 0x009b, 0x1397: 0x009d,\n\t0x1398: 0x009f, 0x1399: 0x00a1, 0x139a: 0x00a3, 0x139b: 0x00a5, 0x139c: 0x00a7, 0x139d: 0x00a9,\n\t0x139e: 0x00ab, 0x139f: 0x00ad, 0x13a0: 0x00af, 0x13a1: 0x00b1, 0x13a2: 0x00b3, 0x13a3: 0x00b5,\n\t0x13a4: 0x00dd, 0x13a5: 0x00f2, 0x13a8: 0x0173, 0x13a9: 0x0176,\n\t0x13aa: 0x0179, 0x13ab: 0x017c, 0x13ac: 0x017f, 0x13ad: 0x0182, 0x13ae: 0x0185, 0x13af: 0x0188,\n\t0x13b0: 0x018b, 0x13b1: 0x018e, 0x13b2: 0x0191, 0x13b3: 0x0194, 0x13b4: 0x0197, 0x13b5: 0x019a,\n\t0x13b6: 0x019d, 0x13b7: 0x01a0, 0x13b8: 0x01a3, 0x13b9: 0x0188, 0x13ba: 0x01a6, 0x13bb: 0x01a9,\n\t0x13bc: 0x01ac, 0x13bd: 0x01af, 0x13be: 0x01b2, 0x13bf: 0x01b5,\n\t// Block 0x4f, offset 0x13c0\n\t0x13c0: 0x01fd, 0x13c1: 0x0200, 0x13c2: 0x0203, 0x13c3: 0x045b, 0x13c4: 0x01c7, 0x13c5: 0x01d0,\n\t0x13c6: 0x01d6, 0x13c7: 0x01fa, 0x13c8: 0x01eb, 0x13c9: 0x01e8, 0x13ca: 0x0206, 0x13cb: 0x0209,\n\t0x13ce: 0x0021, 0x13cf: 0x0023, 0x13d0: 0x0025, 0x13d1: 0x0027,\n\t0x13d2: 0x0029, 0x13d3: 0x002b, 0x13d4: 0x002d, 0x13d5: 0x002f, 0x13d6: 0x0031, 0x13d7: 0x0033,\n\t0x13d8: 0x0021, 0x13d9: 0x0023, 0x13da: 0x0025, 0x13db: 0x0027, 0x13dc: 0x0029, 0x13dd: 0x002b,\n\t0x13de: 0x002d, 0x13df: 0x002f, 0x13e0: 0x0031, 0x13e1: 0x0033, 0x13e2: 0x0021, 0x13e3: 0x0023,\n\t0x13e4: 0x0025, 0x13e5: 0x0027, 0x13e6: 0x0029, 0x13e7: 0x002b, 0x13e8: 0x002d, 0x13e9: 0x002f,\n\t0x13ea: 0x0031, 0x13eb: 0x0033, 0x13ec: 0x0021, 0x13ed: 0x0023, 0x13ee: 0x0025, 0x13ef: 0x0027,\n\t0x13f0: 0x0029, 0x13f1: 0x002b, 0x13f2: 0x002d, 0x13f3: 0x002f, 0x13f4: 0x0031, 0x13f5: 0x0033,\n\t0x13f6: 0x0021, 0x13f7: 0x0023, 0x13f8: 0x0025, 0x13f9: 0x0027, 0x13fa: 0x0029, 0x13fb: 0x002b,\n\t0x13fc: 0x002d, 0x13fd: 0x002f, 0x13fe: 0x0031, 0x13ff: 0x0033,\n\t// Block 0x50, offset 0x1400\n\t0x1400: 0x0239, 0x1401: 0x023c, 0x1402: 0x0248, 0x1403: 0x0251, 0x1405: 0x028a,\n\t0x1406: 0x025a, 0x1407: 0x024b, 0x1408: 0x0269, 0x1409: 0x0290, 0x140a: 0x027b, 0x140b: 0x027e,\n\t0x140c: 0x0281, 0x140d: 0x0284, 0x140e: 0x025d, 0x140f: 0x026f, 0x1410: 0x0275, 0x1411: 0x0263,\n\t0x1412: 0x0278, 0x1413: 0x0257, 0x1414: 0x0260, 0x1415: 0x0242, 0x1416: 0x0245, 0x1417: 0x024e,\n\t0x1418: 0x0254, 0x1419: 0x0266, 0x141a: 0x026c, 0x141b: 0x0272, 0x141c: 0x0293, 0x141d: 0x02e4,\n\t0x141e: 0x02cc, 0x141f: 0x0296, 0x1421: 0x023c, 0x1422: 0x0248,\n\t0x1424: 0x0287, 0x1427: 0x024b, 0x1429: 0x0290,\n\t0x142a: 0x027b, 0x142b: 0x027e, 0x142c: 0x0281, 0x142d: 0x0284, 0x142e: 0x025d, 0x142f: 0x026f,\n\t0x1430: 0x0275, 0x1431: 0x0263, 0x1432: 0x0278, 0x1434: 0x0260, 0x1435: 0x0242,\n\t0x1436: 0x0245, 0x1437: 0x024e, 0x1439: 0x0266, 0x143b: 0x0272,\n\t// Block 0x51, offset 0x1440\n\t0x1442: 0x0248,\n\t0x1447: 0x024b, 0x1449: 0x0290, 0x144b: 0x027e,\n\t0x144d: 0x0284, 0x144e: 0x025d, 0x144f: 0x026f, 0x1451: 0x0263,\n\t0x1452: 0x0278, 0x1454: 0x0260, 0x1457: 0x024e,\n\t0x1459: 0x0266, 0x145b: 0x0272, 0x145d: 0x02e4,\n\t0x145f: 0x0296, 0x1461: 0x023c, 0x1462: 0x0248,\n\t0x1464: 0x0287, 0x1467: 0x024b, 0x1468: 0x0269, 0x1469: 0x0290,\n\t0x146a: 0x027b, 0x146c: 0x0281, 0x146d: 0x0284, 0x146e: 0x025d, 0x146f: 0x026f,\n\t0x1470: 0x0275, 0x1471: 0x0263, 0x1472: 0x0278, 0x1474: 0x0260, 0x1475: 0x0242,\n\t0x1476: 0x0245, 0x1477: 0x024e, 0x1479: 0x0266, 0x147a: 0x026c, 0x147b: 0x0272,\n\t0x147c: 0x0293, 0x147e: 0x02cc,\n\t// Block 0x52, offset 0x1480\n\t0x1480: 0x0239, 0x1481: 0x023c, 0x1482: 0x0248, 0x1483: 0x0251, 0x1484: 0x0287, 0x1485: 0x028a,\n\t0x1486: 0x025a, 0x1487: 0x024b, 0x1488: 0x0269, 0x1489: 0x0290, 0x148b: 0x027e,\n\t0x148c: 0x0281, 0x148d: 0x0284, 0x148e: 0x025d, 0x148f: 0x026f, 0x1490: 0x0275, 0x1491: 0x0263,\n\t0x1492: 0x0278, 0x1493: 0x0257, 0x1494: 0x0260, 0x1495: 0x0242, 0x1496: 0x0245, 0x1497: 0x024e,\n\t0x1498: 0x0254, 0x1499: 0x0266, 0x149a: 0x026c, 0x149b: 0x0272,\n\t0x14a1: 0x023c, 0x14a2: 0x0248, 0x14a3: 0x0251,\n\t0x14a5: 0x028a, 0x14a6: 0x025a, 0x14a7: 0x024b, 0x14a8: 0x0269, 0x14a9: 0x0290,\n\t0x14ab: 0x027e, 0x14ac: 0x0281, 0x14ad: 0x0284, 0x14ae: 0x025d, 0x14af: 0x026f,\n\t0x14b0: 0x0275, 0x14b1: 0x0263, 0x14b2: 0x0278, 0x14b3: 0x0257, 0x14b4: 0x0260, 0x14b5: 0x0242,\n\t0x14b6: 0x0245, 0x14b7: 0x024e, 0x14b8: 0x0254, 0x14b9: 0x0266, 0x14ba: 0x026c, 0x14bb: 0x0272,\n\t// Block 0x53, offset 0x14c0\n\t0x14c0: 0x1879, 0x14c1: 0x1876, 0x14c2: 0x187c, 0x14c3: 0x18a0, 0x14c4: 0x18c4, 0x14c5: 0x18e8,\n\t0x14c6: 0x190c, 0x14c7: 0x1915, 0x14c8: 0x191b, 0x14c9: 0x1921, 0x14ca: 0x1927,\n\t0x14d0: 0x1a8f, 0x14d1: 0x1a93,\n\t0x14d2: 0x1a97, 0x14d3: 0x1a9b, 0x14d4: 0x1a9f, 0x14d5: 0x1aa3, 0x14d6: 0x1aa7, 0x14d7: 0x1aab,\n\t0x14d8: 0x1aaf, 0x14d9: 0x1ab3, 0x14da: 0x1ab7, 0x14db: 0x1abb, 0x14dc: 0x1abf, 0x14dd: 0x1ac3,\n\t0x14de: 0x1ac7, 0x14df: 0x1acb, 0x14e0: 0x1acf, 0x14e1: 0x1ad3, 0x14e2: 0x1ad7, 0x14e3: 0x1adb,\n\t0x14e4: 0x1adf, 0x14e5: 0x1ae3, 0x14e6: 0x1ae7, 0x14e7: 0x1aeb, 0x14e8: 0x1aef, 0x14e9: 0x1af3,\n\t0x14ea: 0x2721, 0x14eb: 0x0047, 0x14ec: 0x0065, 0x14ed: 0x193c, 0x14ee: 0x19b4,\n\t0x14f0: 0x0043, 0x14f1: 0x0045, 0x14f2: 0x0047, 0x14f3: 0x0049, 0x14f4: 0x004b, 0x14f5: 0x004d,\n\t0x14f6: 0x004f, 0x14f7: 0x0051, 0x14f8: 0x0053, 0x14f9: 0x0055, 0x14fa: 0x0057, 0x14fb: 0x0059,\n\t0x14fc: 0x005b, 0x14fd: 0x005d, 0x14fe: 0x005f, 0x14ff: 0x0061,\n\t// Block 0x54, offset 0x1500\n\t0x1500: 0x26b0, 0x1501: 0x26c5, 0x1502: 0x0503,\n\t0x1510: 0x0c0f, 0x1511: 0x0a47,\n\t0x1512: 0x08d3, 0x1513: 0x45c7, 0x1514: 0x071b, 0x1515: 0x09ef, 0x1516: 0x132f, 0x1517: 0x09ff,\n\t0x1518: 0x0727, 0x1519: 0x0cd7, 0x151a: 0x0eaf, 0x151b: 0x0caf, 0x151c: 0x0827, 0x151d: 0x0b6b,\n\t0x151e: 0x07bf, 0x151f: 0x0cb7, 0x1520: 0x0813, 0x1521: 0x1117, 0x1522: 0x0f83, 0x1523: 0x138b,\n\t0x1524: 0x09d3, 0x1525: 0x090b, 0x1526: 0x0e63, 0x1527: 0x0c1b, 0x1528: 0x0c47, 0x1529: 0x06bf,\n\t0x152a: 0x06cb, 0x152b: 0x140b, 0x152c: 0x0adb, 0x152d: 0x06e7, 0x152e: 0x08ef, 0x152f: 0x0c3b,\n\t0x1530: 0x13b3, 0x1531: 0x0c13, 0x1532: 0x106f, 0x1533: 0x10ab, 0x1534: 0x08f7, 0x1535: 0x0e43,\n\t0x1536: 0x0d0b, 0x1537: 0x0d07, 0x1538: 0x0f97, 0x1539: 0x082b, 0x153a: 0x0957, 0x153b: 0x1443,\n\t// Block 0x55, offset 0x1540\n\t0x1540: 0x06fb, 0x1541: 0x06f3, 0x1542: 0x0703, 0x1543: 0x1647, 0x1544: 0x0747, 0x1545: 0x0757,\n\t0x1546: 0x075b, 0x1547: 0x0763, 0x1548: 0x076b, 0x1549: 0x076f, 0x154a: 0x077b, 0x154b: 0x0773,\n\t0x154c: 0x05b3, 0x154d: 0x165b, 0x154e: 0x078f, 0x154f: 0x0793, 0x1550: 0x0797, 0x1551: 0x07b3,\n\t0x1552: 0x164c, 0x1553: 0x05b7, 0x1554: 0x079f, 0x1555: 0x07bf, 0x1556: 0x1656, 0x1557: 0x07cf,\n\t0x1558: 0x07d7, 0x1559: 0x0737, 0x155a: 0x07df, 0x155b: 0x07e3, 0x155c: 0x1831, 0x155d: 0x07ff,\n\t0x155e: 0x0807, 0x155f: 0x05bf, 0x1560: 0x081f, 0x1561: 0x0823, 0x1562: 0x082b, 0x1563: 0x082f,\n\t0x1564: 0x05c3, 0x1565: 0x0847, 0x1566: 0x084b, 0x1567: 0x0857, 0x1568: 0x0863, 0x1569: 0x0867,\n\t0x156a: 0x086b, 0x156b: 0x0873, 0x156c: 0x0893, 0x156d: 0x0897, 0x156e: 0x089f, 0x156f: 0x08af,\n\t0x1570: 0x08b7, 0x1571: 0x08bb, 0x1572: 0x08bb, 0x1573: 0x08bb, 0x1574: 0x166a, 0x1575: 0x0e93,\n\t0x1576: 0x08cf, 0x1577: 0x08d7, 0x1578: 0x166f, 0x1579: 0x08e3, 0x157a: 0x08eb, 0x157b: 0x08f3,\n\t0x157c: 0x091b, 0x157d: 0x0907, 0x157e: 0x0913, 0x157f: 0x0917,\n\t// Block 0x56, offset 0x1580\n\t0x1580: 0x091f, 0x1581: 0x0927, 0x1582: 0x092b, 0x1583: 0x0933, 0x1584: 0x093b, 0x1585: 0x093f,\n\t0x1586: 0x093f, 0x1587: 0x0947, 0x1588: 0x094f, 0x1589: 0x0953, 0x158a: 0x095f, 0x158b: 0x0983,\n\t0x158c: 0x0967, 0x158d: 0x0987, 0x158e: 0x096b, 0x158f: 0x0973, 0x1590: 0x080b, 0x1591: 0x09cf,\n\t0x1592: 0x0997, 0x1593: 0x099b, 0x1594: 0x099f, 0x1595: 0x0993, 0x1596: 0x09a7, 0x1597: 0x09a3,\n\t0x1598: 0x09bb, 0x1599: 0x1674, 0x159a: 0x09d7, 0x159b: 0x09db, 0x159c: 0x09e3, 0x159d: 0x09ef,\n\t0x159e: 0x09f7, 0x159f: 0x0a13, 0x15a0: 0x1679, 0x15a1: 0x167e, 0x15a2: 0x0a1f, 0x15a3: 0x0a23,\n\t0x15a4: 0x0a27, 0x15a5: 0x0a1b, 0x15a6: 0x0a2f, 0x15a7: 0x05c7, 0x15a8: 0x05cb, 0x15a9: 0x0a37,\n\t0x15aa: 0x0a3f, 0x15ab: 0x0a3f, 0x15ac: 0x1683, 0x15ad: 0x0a5b, 0x15ae: 0x0a5f, 0x15af: 0x0a63,\n\t0x15b0: 0x0a6b, 0x15b1: 0x1688, 0x15b2: 0x0a73, 0x15b3: 0x0a77, 0x15b4: 0x0b4f, 0x15b5: 0x0a7f,\n\t0x15b6: 0x05cf, 0x15b7: 0x0a8b, 0x15b8: 0x0a9b, 0x15b9: 0x0aa7, 0x15ba: 0x0aa3, 0x15bb: 0x1692,\n\t0x15bc: 0x0aaf, 0x15bd: 0x1697, 0x15be: 0x0abb, 0x15bf: 0x0ab7,\n\t// Block 0x57, offset 0x15c0\n\t0x15c0: 0x0abf, 0x15c1: 0x0acf, 0x15c2: 0x0ad3, 0x15c3: 0x05d3, 0x15c4: 0x0ae3, 0x15c5: 0x0aeb,\n\t0x15c6: 0x0aef, 0x15c7: 0x0af3, 0x15c8: 0x05d7, 0x15c9: 0x169c, 0x15ca: 0x05db, 0x15cb: 0x0b0f,\n\t0x15cc: 0x0b13, 0x15cd: 0x0b17, 0x15ce: 0x0b1f, 0x15cf: 0x1863, 0x15d0: 0x0b37, 0x15d1: 0x16a6,\n\t0x15d2: 0x16a6, 0x15d3: 0x11d7, 0x15d4: 0x0b47, 0x15d5: 0x0b47, 0x15d6: 0x05df, 0x15d7: 0x16c9,\n\t0x15d8: 0x179b, 0x15d9: 0x0b57, 0x15da: 0x0b5f, 0x15db: 0x05e3, 0x15dc: 0x0b73, 0x15dd: 0x0b83,\n\t0x15de: 0x0b87, 0x15df: 0x0b8f, 0x15e0: 0x0b9f, 0x15e1: 0x05eb, 0x15e2: 0x05e7, 0x15e3: 0x0ba3,\n\t0x15e4: 0x16ab, 0x15e5: 0x0ba7, 0x15e6: 0x0bbb, 0x15e7: 0x0bbf, 0x15e8: 0x0bc3, 0x15e9: 0x0bbf,\n\t0x15ea: 0x0bcf, 0x15eb: 0x0bd3, 0x15ec: 0x0be3, 0x15ed: 0x0bdb, 0x15ee: 0x0bdf, 0x15ef: 0x0be7,\n\t0x15f0: 0x0beb, 0x15f1: 0x0bef, 0x15f2: 0x0bfb, 0x15f3: 0x0bff, 0x15f4: 0x0c17, 0x15f5: 0x0c1f,\n\t0x15f6: 0x0c2f, 0x15f7: 0x0c43, 0x15f8: 0x16ba, 0x15f9: 0x0c3f, 0x15fa: 0x0c33, 0x15fb: 0x0c4b,\n\t0x15fc: 0x0c53, 0x15fd: 0x0c67, 0x15fe: 0x16bf, 0x15ff: 0x0c6f,\n\t// Block 0x58, offset 0x1600\n\t0x1600: 0x0c63, 0x1601: 0x0c5b, 0x1602: 0x05ef, 0x1603: 0x0c77, 0x1604: 0x0c7f, 0x1605: 0x0c87,\n\t0x1606: 0x0c7b, 0x1607: 0x05f3, 0x1608: 0x0c97, 0x1609: 0x0c9f, 0x160a: 0x16c4, 0x160b: 0x0ccb,\n\t0x160c: 0x0cff, 0x160d: 0x0cdb, 0x160e: 0x05ff, 0x160f: 0x0ce7, 0x1610: 0x05fb, 0x1611: 0x05f7,\n\t0x1612: 0x07c3, 0x1613: 0x07c7, 0x1614: 0x0d03, 0x1615: 0x0ceb, 0x1616: 0x11ab, 0x1617: 0x0663,\n\t0x1618: 0x0d0f, 0x1619: 0x0d13, 0x161a: 0x0d17, 0x161b: 0x0d2b, 0x161c: 0x0d23, 0x161d: 0x16dd,\n\t0x161e: 0x0603, 0x161f: 0x0d3f, 0x1620: 0x0d33, 0x1621: 0x0d4f, 0x1622: 0x0d57, 0x1623: 0x16e7,\n\t0x1624: 0x0d5b, 0x1625: 0x0d47, 0x1626: 0x0d63, 0x1627: 0x0607, 0x1628: 0x0d67, 0x1629: 0x0d6b,\n\t0x162a: 0x0d6f, 0x162b: 0x0d7b, 0x162c: 0x16ec, 0x162d: 0x0d83, 0x162e: 0x060b, 0x162f: 0x0d8f,\n\t0x1630: 0x16f1, 0x1631: 0x0d93, 0x1632: 0x060f, 0x1633: 0x0d9f, 0x1634: 0x0dab, 0x1635: 0x0db7,\n\t0x1636: 0x0dbb, 0x1637: 0x16f6, 0x1638: 0x168d, 0x1639: 0x16fb, 0x163a: 0x0ddb, 0x163b: 0x1700,\n\t0x163c: 0x0de7, 0x163d: 0x0def, 0x163e: 0x0ddf, 0x163f: 0x0dfb,\n\t// Block 0x59, offset 0x1640\n\t0x1640: 0x0e0b, 0x1641: 0x0e1b, 0x1642: 0x0e0f, 0x1643: 0x0e13, 0x1644: 0x0e1f, 0x1645: 0x0e23,\n\t0x1646: 0x1705, 0x1647: 0x0e07, 0x1648: 0x0e3b, 0x1649: 0x0e3f, 0x164a: 0x0613, 0x164b: 0x0e53,\n\t0x164c: 0x0e4f, 0x164d: 0x170a, 0x164e: 0x0e33, 0x164f: 0x0e6f, 0x1650: 0x170f, 0x1651: 0x1714,\n\t0x1652: 0x0e73, 0x1653: 0x0e87, 0x1654: 0x0e83, 0x1655: 0x0e7f, 0x1656: 0x0617, 0x1657: 0x0e8b,\n\t0x1658: 0x0e9b, 0x1659: 0x0e97, 0x165a: 0x0ea3, 0x165b: 0x1651, 0x165c: 0x0eb3, 0x165d: 0x1719,\n\t0x165e: 0x0ebf, 0x165f: 0x1723, 0x1660: 0x0ed3, 0x1661: 0x0edf, 0x1662: 0x0ef3, 0x1663: 0x1728,\n\t0x1664: 0x0f07, 0x1665: 0x0f0b, 0x1666: 0x172d, 0x1667: 0x1732, 0x1668: 0x0f27, 0x1669: 0x0f37,\n\t0x166a: 0x061b, 0x166b: 0x0f3b, 0x166c: 0x061f, 0x166d: 0x061f, 0x166e: 0x0f53, 0x166f: 0x0f57,\n\t0x1670: 0x0f5f, 0x1671: 0x0f63, 0x1672: 0x0f6f, 0x1673: 0x0623, 0x1674: 0x0f87, 0x1675: 0x1737,\n\t0x1676: 0x0fa3, 0x1677: 0x173c, 0x1678: 0x0faf, 0x1679: 0x16a1, 0x167a: 0x0fbf, 0x167b: 0x1741,\n\t0x167c: 0x1746, 0x167d: 0x174b, 0x167e: 0x0627, 0x167f: 0x062b,\n\t// Block 0x5a, offset 0x1680\n\t0x1680: 0x0ff7, 0x1681: 0x1755, 0x1682: 0x1750, 0x1683: 0x175a, 0x1684: 0x175f, 0x1685: 0x0fff,\n\t0x1686: 0x1003, 0x1687: 0x1003, 0x1688: 0x100b, 0x1689: 0x0633, 0x168a: 0x100f, 0x168b: 0x0637,\n\t0x168c: 0x063b, 0x168d: 0x1769, 0x168e: 0x1023, 0x168f: 0x102b, 0x1690: 0x1037, 0x1691: 0x063f,\n\t0x1692: 0x176e, 0x1693: 0x105b, 0x1694: 0x1773, 0x1695: 0x1778, 0x1696: 0x107b, 0x1697: 0x1093,\n\t0x1698: 0x0643, 0x1699: 0x109b, 0x169a: 0x109f, 0x169b: 0x10a3, 0x169c: 0x177d, 0x169d: 0x1782,\n\t0x169e: 0x1782, 0x169f: 0x10bb, 0x16a0: 0x0647, 0x16a1: 0x1787, 0x16a2: 0x10cf, 0x16a3: 0x10d3,\n\t0x16a4: 0x064b, 0x16a5: 0x178c, 0x16a6: 0x10ef, 0x16a7: 0x064f, 0x16a8: 0x10ff, 0x16a9: 0x10f7,\n\t0x16aa: 0x1107, 0x16ab: 0x1796, 0x16ac: 0x111f, 0x16ad: 0x0653, 0x16ae: 0x112b, 0x16af: 0x1133,\n\t0x16b0: 0x1143, 0x16b1: 0x0657, 0x16b2: 0x17a0, 0x16b3: 0x17a5, 0x16b4: 0x065b, 0x16b5: 0x17aa,\n\t0x16b6: 0x115b, 0x16b7: 0x17af, 0x16b8: 0x1167, 0x16b9: 0x1173, 0x16ba: 0x117b, 0x16bb: 0x17b4,\n\t0x16bc: 0x17b9, 0x16bd: 0x118f, 0x16be: 0x17be, 0x16bf: 0x1197,\n\t// Block 0x5b, offset 0x16c0\n\t0x16c0: 0x16ce, 0x16c1: 0x065f, 0x16c2: 0x11af, 0x16c3: 0x11b3, 0x16c4: 0x0667, 0x16c5: 0x11b7,\n\t0x16c6: 0x0a33, 0x16c7: 0x17c3, 0x16c8: 0x17c8, 0x16c9: 0x16d3, 0x16ca: 0x16d8, 0x16cb: 0x11d7,\n\t0x16cc: 0x11db, 0x16cd: 0x13f3, 0x16ce: 0x066b, 0x16cf: 0x1207, 0x16d0: 0x1203, 0x16d1: 0x120b,\n\t0x16d2: 0x083f, 0x16d3: 0x120f, 0x16d4: 0x1213, 0x16d5: 0x1217, 0x16d6: 0x121f, 0x16d7: 0x17cd,\n\t0x16d8: 0x121b, 0x16d9: 0x1223, 0x16da: 0x1237, 0x16db: 0x123b, 0x16dc: 0x1227, 0x16dd: 0x123f,\n\t0x16de: 0x1253, 0x16df: 0x1267, 0x16e0: 0x1233, 0x16e1: 0x1247, 0x16e2: 0x124b, 0x16e3: 0x124f,\n\t0x16e4: 0x17d2, 0x16e5: 0x17dc, 0x16e6: 0x17d7, 0x16e7: 0x066f, 0x16e8: 0x126f, 0x16e9: 0x1273,\n\t0x16ea: 0x127b, 0x16eb: 0x17f0, 0x16ec: 0x127f, 0x16ed: 0x17e1, 0x16ee: 0x0673, 0x16ef: 0x0677,\n\t0x16f0: 0x17e6, 0x16f1: 0x17eb, 0x16f2: 0x067b, 0x16f3: 0x129f, 0x16f4: 0x12a3, 0x16f5: 0x12a7,\n\t0x16f6: 0x12ab, 0x16f7: 0x12b7, 0x16f8: 0x12b3, 0x16f9: 0x12bf, 0x16fa: 0x12bb, 0x16fb: 0x12cb,\n\t0x16fc: 0x12c3, 0x16fd: 0x12c7, 0x16fe: 0x12cf, 0x16ff: 0x067f,\n\t// Block 0x5c, offset 0x1700\n\t0x1700: 0x12d7, 0x1701: 0x12db, 0x1702: 0x0683, 0x1703: 0x12eb, 0x1704: 0x12ef, 0x1705: 0x17f5,\n\t0x1706: 0x12fb, 0x1707: 0x12ff, 0x1708: 0x0687, 0x1709: 0x130b, 0x170a: 0x05bb, 0x170b: 0x17fa,\n\t0x170c: 0x17ff, 0x170d: 0x068b, 0x170e: 0x068f, 0x170f: 0x1337, 0x1710: 0x134f, 0x1711: 0x136b,\n\t0x1712: 0x137b, 0x1713: 0x1804, 0x1714: 0x138f, 0x1715: 0x1393, 0x1716: 0x13ab, 0x1717: 0x13b7,\n\t0x1718: 0x180e, 0x1719: 0x1660, 0x171a: 0x13c3, 0x171b: 0x13bf, 0x171c: 0x13cb, 0x171d: 0x1665,\n\t0x171e: 0x13d7, 0x171f: 0x13e3, 0x1720: 0x1813, 0x1721: 0x1818, 0x1722: 0x1423, 0x1723: 0x142f,\n\t0x1724: 0x1437, 0x1725: 0x181d, 0x1726: 0x143b, 0x1727: 0x1467, 0x1728: 0x1473, 0x1729: 0x1477,\n\t0x172a: 0x146f, 0x172b: 0x1483, 0x172c: 0x1487, 0x172d: 0x1822, 0x172e: 0x1493, 0x172f: 0x0693,\n\t0x1730: 0x149b, 0x1731: 0x1827, 0x1732: 0x0697, 0x1733: 0x14d3, 0x1734: 0x0ac3, 0x1735: 0x14eb,\n\t0x1736: 0x182c, 0x1737: 0x1836, 0x1738: 0x069b, 0x1739: 0x069f, 0x173a: 0x1513, 0x173b: 0x183b,\n\t0x173c: 0x06a3, 0x173d: 0x1840, 0x173e: 0x152b, 0x173f: 0x152b,\n\t// Block 0x5d, offset 0x1740\n\t0x1740: 0x1533, 0x1741: 0x1845, 0x1742: 0x154b, 0x1743: 0x06a7, 0x1744: 0x155b, 0x1745: 0x1567,\n\t0x1746: 0x156f, 0x1747: 0x1577, 0x1748: 0x06ab, 0x1749: 0x184a, 0x174a: 0x158b, 0x174b: 0x15a7,\n\t0x174c: 0x15b3, 0x174d: 0x06af, 0x174e: 0x06b3, 0x174f: 0x15b7, 0x1750: 0x184f, 0x1751: 0x06b7,\n\t0x1752: 0x1854, 0x1753: 0x1859, 0x1754: 0x185e, 0x1755: 0x15db, 0x1756: 0x06bb, 0x1757: 0x15ef,\n\t0x1758: 0x15f7, 0x1759: 0x15fb, 0x175a: 0x1603, 0x175b: 0x160b, 0x175c: 0x1613, 0x175d: 0x1868,\n}\n\n// nfkcIndex: 22 blocks, 1408 entries, 2816 bytes\n// Block 0 is the zero block.\nvar nfkcIndex = [1408]uint16{\n\t// Block 0x0, offset 0x0\n\t// Block 0x1, offset 0x40\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc2: 0x5c, 0xc3: 0x01, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x5d, 0xc7: 0x04,\n\t0xc8: 0x05, 0xca: 0x5e, 0xcb: 0x5f, 0xcc: 0x06, 0xcd: 0x07, 0xce: 0x08, 0xcf: 0x09,\n\t0xd0: 0x0a, 0xd1: 0x60, 0xd2: 0x61, 0xd3: 0x0b, 0xd6: 0x0c, 0xd7: 0x62,\n\t0xd8: 0x63, 0xd9: 0x0d, 0xdb: 0x64, 0xdc: 0x65, 0xdd: 0x66, 0xdf: 0x67,\n\t0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05,\n\t0xea: 0x06, 0xeb: 0x07, 0xec: 0x08, 0xed: 0x09, 0xef: 0x0a,\n\t0xf0: 0x13,\n\t// Block 0x4, offset 0x100\n\t0x120: 0x68, 0x121: 0x69, 0x123: 0x0e, 0x124: 0x6a, 0x125: 0x6b, 0x126: 0x6c, 0x127: 0x6d,\n\t0x128: 0x6e, 0x129: 0x6f, 0x12a: 0x70, 0x12b: 0x71, 0x12c: 0x6c, 0x12d: 0x72, 0x12e: 0x73, 0x12f: 0x74,\n\t0x131: 0x75, 0x132: 0x76, 0x133: 0x77, 0x134: 0x78, 0x135: 0x79, 0x137: 0x7a,\n\t0x138: 0x7b, 0x139: 0x7c, 0x13a: 0x7d, 0x13b: 0x7e, 0x13c: 0x7f, 0x13d: 0x80, 0x13e: 0x81, 0x13f: 0x82,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x83, 0x142: 0x84, 0x143: 0x85, 0x144: 0x86, 0x145: 0x87, 0x146: 0x88, 0x147: 0x89,\n\t0x14d: 0x8a,\n\t0x15c: 0x8b, 0x15f: 0x8c,\n\t0x162: 0x8d, 0x164: 0x8e,\n\t0x168: 0x8f, 0x169: 0x90, 0x16a: 0x91, 0x16c: 0x0f, 0x16d: 0x92, 0x16e: 0x93, 0x16f: 0x94,\n\t0x170: 0x95, 0x173: 0x96, 0x174: 0x97, 0x175: 0x10, 0x176: 0x11, 0x177: 0x12,\n\t0x178: 0x13, 0x179: 0x14, 0x17a: 0x15, 0x17b: 0x16, 0x17c: 0x17, 0x17d: 0x18, 0x17e: 0x19, 0x17f: 0x1a,\n\t// Block 0x6, offset 0x180\n\t0x180: 0x98, 0x181: 0x99, 0x182: 0x9a, 0x183: 0x9b, 0x184: 0x1b, 0x185: 0x1c, 0x186: 0x9c, 0x187: 0x9d,\n\t0x188: 0x9e, 0x189: 0x1d, 0x18a: 0x1e, 0x18b: 0x9f, 0x18c: 0xa0,\n\t0x191: 0x1f, 0x192: 0x20, 0x193: 0xa1,\n\t0x1a8: 0xa2, 0x1a9: 0xa3, 0x1ab: 0xa4,\n\t0x1b1: 0xa5, 0x1b3: 0xa6, 0x1b5: 0xa7, 0x1b7: 0xa8,\n\t0x1ba: 0xa9, 0x1bb: 0xaa, 0x1bc: 0x21, 0x1bd: 0x22, 0x1be: 0x23, 0x1bf: 0xab,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0xac, 0x1c1: 0x24, 0x1c2: 0x25, 0x1c3: 0x26, 0x1c4: 0xad, 0x1c5: 0x27, 0x1c6: 0x28,\n\t0x1c8: 0x29, 0x1c9: 0x2a, 0x1ca: 0x2b, 0x1cb: 0x2c, 0x1cc: 0x2d, 0x1cd: 0x2e, 0x1ce: 0x2f, 0x1cf: 0x30,\n\t// Block 0x8, offset 0x200\n\t0x219: 0xae, 0x21a: 0xaf, 0x21b: 0xb0, 0x21d: 0xb1, 0x21f: 0xb2,\n\t0x220: 0xb3, 0x223: 0xb4, 0x224: 0xb5, 0x225: 0xb6, 0x226: 0xb7, 0x227: 0xb8,\n\t0x22a: 0xb9, 0x22b: 0xba, 0x22d: 0xbb, 0x22f: 0xbc,\n\t0x230: 0xbd, 0x231: 0xbe, 0x232: 0xbf, 0x233: 0xc0, 0x234: 0xc1, 0x235: 0xc2, 0x236: 0xc3, 0x237: 0xbd,\n\t0x238: 0xbe, 0x239: 0xbf, 0x23a: 0xc0, 0x23b: 0xc1, 0x23c: 0xc2, 0x23d: 0xc3, 0x23e: 0xbd, 0x23f: 0xbe,\n\t// Block 0x9, offset 0x240\n\t0x240: 0xbf, 0x241: 0xc0, 0x242: 0xc1, 0x243: 0xc2, 0x244: 0xc3, 0x245: 0xbd, 0x246: 0xbe, 0x247: 0xbf,\n\t0x248: 0xc0, 0x249: 0xc1, 0x24a: 0xc2, 0x24b: 0xc3, 0x24c: 0xbd, 0x24d: 0xbe, 0x24e: 0xbf, 0x24f: 0xc0,\n\t0x250: 0xc1, 0x251: 0xc2, 0x252: 0xc3, 0x253: 0xbd, 0x254: 0xbe, 0x255: 0xbf, 0x256: 0xc0, 0x257: 0xc1,\n\t0x258: 0xc2, 0x259: 0xc3, 0x25a: 0xbd, 0x25b: 0xbe, 0x25c: 0xbf, 0x25d: 0xc0, 0x25e: 0xc1, 0x25f: 0xc2,\n\t0x260: 0xc3, 0x261: 0xbd, 0x262: 0xbe, 0x263: 0xbf, 0x264: 0xc0, 0x265: 0xc1, 0x266: 0xc2, 0x267: 0xc3,\n\t0x268: 0xbd, 0x269: 0xbe, 0x26a: 0xbf, 0x26b: 0xc0, 0x26c: 0xc1, 0x26d: 0xc2, 0x26e: 0xc3, 0x26f: 0xbd,\n\t0x270: 0xbe, 0x271: 0xbf, 0x272: 0xc0, 0x273: 0xc1, 0x274: 0xc2, 0x275: 0xc3, 0x276: 0xbd, 0x277: 0xbe,\n\t0x278: 0xbf, 0x279: 0xc0, 0x27a: 0xc1, 0x27b: 0xc2, 0x27c: 0xc3, 0x27d: 0xbd, 0x27e: 0xbe, 0x27f: 0xbf,\n\t// Block 0xa, offset 0x280\n\t0x280: 0xc0, 0x281: 0xc1, 0x282: 0xc2, 0x283: 0xc3, 0x284: 0xbd, 0x285: 0xbe, 0x286: 0xbf, 0x287: 0xc0,\n\t0x288: 0xc1, 0x289: 0xc2, 0x28a: 0xc3, 0x28b: 0xbd, 0x28c: 0xbe, 0x28d: 0xbf, 0x28e: 0xc0, 0x28f: 0xc1,\n\t0x290: 0xc2, 0x291: 0xc3, 0x292: 0xbd, 0x293: 0xbe, 0x294: 0xbf, 0x295: 0xc0, 0x296: 0xc1, 0x297: 0xc2,\n\t0x298: 0xc3, 0x299: 0xbd, 0x29a: 0xbe, 0x29b: 0xbf, 0x29c: 0xc0, 0x29d: 0xc1, 0x29e: 0xc2, 0x29f: 0xc3,\n\t0x2a0: 0xbd, 0x2a1: 0xbe, 0x2a2: 0xbf, 0x2a3: 0xc0, 0x2a4: 0xc1, 0x2a5: 0xc2, 0x2a6: 0xc3, 0x2a7: 0xbd,\n\t0x2a8: 0xbe, 0x2a9: 0xbf, 0x2aa: 0xc0, 0x2ab: 0xc1, 0x2ac: 0xc2, 0x2ad: 0xc3, 0x2ae: 0xbd, 0x2af: 0xbe,\n\t0x2b0: 0xbf, 0x2b1: 0xc0, 0x2b2: 0xc1, 0x2b3: 0xc2, 0x2b4: 0xc3, 0x2b5: 0xbd, 0x2b6: 0xbe, 0x2b7: 0xbf,\n\t0x2b8: 0xc0, 0x2b9: 0xc1, 0x2ba: 0xc2, 0x2bb: 0xc3, 0x2bc: 0xbd, 0x2bd: 0xbe, 0x2be: 0xbf, 0x2bf: 0xc0,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0xc1, 0x2c1: 0xc2, 0x2c2: 0xc3, 0x2c3: 0xbd, 0x2c4: 0xbe, 0x2c5: 0xbf, 0x2c6: 0xc0, 0x2c7: 0xc1,\n\t0x2c8: 0xc2, 0x2c9: 0xc3, 0x2ca: 0xbd, 0x2cb: 0xbe, 0x2cc: 0xbf, 0x2cd: 0xc0, 0x2ce: 0xc1, 0x2cf: 0xc2,\n\t0x2d0: 0xc3, 0x2d1: 0xbd, 0x2d2: 0xbe, 0x2d3: 0xbf, 0x2d4: 0xc0, 0x2d5: 0xc1, 0x2d6: 0xc2, 0x2d7: 0xc3,\n\t0x2d8: 0xbd, 0x2d9: 0xbe, 0x2da: 0xbf, 0x2db: 0xc0, 0x2dc: 0xc1, 0x2dd: 0xc2, 0x2de: 0xc4,\n\t// Block 0xc, offset 0x300\n\t0x324: 0x31, 0x325: 0x32, 0x326: 0x33, 0x327: 0x34,\n\t0x328: 0x35, 0x329: 0x36, 0x32a: 0x37, 0x32b: 0x38, 0x32c: 0x39, 0x32d: 0x3a, 0x32e: 0x3b, 0x32f: 0x3c,\n\t0x330: 0x3d, 0x331: 0x3e, 0x332: 0x3f, 0x333: 0x40, 0x334: 0x41, 0x335: 0x42, 0x336: 0x43, 0x337: 0x44,\n\t0x338: 0x45, 0x339: 0x46, 0x33a: 0x47, 0x33b: 0x48, 0x33c: 0xc5, 0x33d: 0x49, 0x33e: 0x4a, 0x33f: 0x4b,\n\t// Block 0xd, offset 0x340\n\t0x347: 0xc6,\n\t0x34b: 0xc7, 0x34d: 0xc8,\n\t0x368: 0xc9, 0x36b: 0xca,\n\t0x374: 0xcb,\n\t0x37d: 0xcc,\n\t// Block 0xe, offset 0x380\n\t0x381: 0xcd, 0x382: 0xce, 0x384: 0xcf, 0x385: 0xb7, 0x387: 0xd0,\n\t0x388: 0xd1, 0x38b: 0xd2, 0x38c: 0xd3, 0x38d: 0xd4,\n\t0x391: 0xd5, 0x392: 0xd6, 0x393: 0xd7, 0x396: 0xd8, 0x397: 0xd9,\n\t0x398: 0xda, 0x39a: 0xdb, 0x39c: 0xdc,\n\t0x3a0: 0xdd, 0x3a7: 0xde,\n\t0x3a8: 0xdf, 0x3a9: 0xe0, 0x3aa: 0xe1,\n\t0x3b0: 0xda, 0x3b5: 0xe2, 0x3b6: 0xe3,\n\t// Block 0xf, offset 0x3c0\n\t0x3eb: 0xe4, 0x3ec: 0xe5,\n\t// Block 0x10, offset 0x400\n\t0x432: 0xe6,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xe7, 0x446: 0xe8, 0x447: 0xe9,\n\t0x449: 0xea,\n\t0x450: 0xeb, 0x451: 0xec, 0x452: 0xed, 0x453: 0xee, 0x454: 0xef, 0x455: 0xf0, 0x456: 0xf1, 0x457: 0xf2,\n\t0x458: 0xf3, 0x459: 0xf4, 0x45a: 0x4c, 0x45b: 0xf5, 0x45c: 0xf6, 0x45d: 0xf7, 0x45e: 0xf8, 0x45f: 0x4d,\n\t// Block 0x12, offset 0x480\n\t0x480: 0xf9, 0x484: 0xe5,\n\t0x48b: 0xfa,\n\t0x4a3: 0xfb, 0x4a5: 0xfc,\n\t0x4b8: 0x4e, 0x4b9: 0x4f, 0x4ba: 0x50,\n\t// Block 0x13, offset 0x4c0\n\t0x4c4: 0x51, 0x4c5: 0xfd, 0x4c6: 0xfe,\n\t0x4c8: 0x52, 0x4c9: 0xff,\n\t// Block 0x14, offset 0x500\n\t0x520: 0x53, 0x521: 0x54, 0x522: 0x55, 0x523: 0x56, 0x524: 0x57, 0x525: 0x58, 0x526: 0x59, 0x527: 0x5a,\n\t0x528: 0x5b,\n\t// Block 0x15, offset 0x540\n\t0x550: 0x0b, 0x551: 0x0c, 0x556: 0x0d,\n\t0x55b: 0x0e, 0x55d: 0x0f, 0x55e: 0x10, 0x55f: 0x11,\n\t0x56f: 0x12,\n}\n\n// nfkcSparseOffset: 164 entries, 328 bytes\nvar nfkcSparseOffset = []uint16{0x0, 0xe, 0x12, 0x1b, 0x25, 0x35, 0x37, 0x3c, 0x47, 0x56, 0x63, 0x6b, 0x70, 0x75, 0x77, 0x7f, 0x86, 0x89, 0x91, 0x95, 0x99, 0x9b, 0x9d, 0xa6, 0xaa, 0xb1, 0xb6, 0xb9, 0xc3, 0xc6, 0xcd, 0xd5, 0xd9, 0xdb, 0xdf, 0xe3, 0xe9, 0xfa, 0x106, 0x108, 0x10e, 0x110, 0x112, 0x114, 0x116, 0x118, 0x11a, 0x11c, 0x11f, 0x122, 0x124, 0x127, 0x12a, 0x12e, 0x133, 0x13c, 0x13e, 0x141, 0x143, 0x14e, 0x159, 0x167, 0x175, 0x185, 0x193, 0x19a, 0x1a0, 0x1af, 0x1b3, 0x1b5, 0x1b9, 0x1bb, 0x1be, 0x1c0, 0x1c3, 0x1c5, 0x1c8, 0x1ca, 0x1cc, 0x1ce, 0x1da, 0x1e4, 0x1ee, 0x1f1, 0x1f5, 0x1f7, 0x1f9, 0x1fb, 0x1fd, 0x200, 0x202, 0x204, 0x206, 0x208, 0x20e, 0x211, 0x215, 0x217, 0x21e, 0x224, 0x22a, 0x232, 0x238, 0x23e, 0x244, 0x248, 0x24a, 0x24c, 0x24e, 0x250, 0x256, 0x259, 0x25b, 0x261, 0x264, 0x26c, 0x273, 0x276, 0x279, 0x27b, 0x27e, 0x286, 0x28a, 0x291, 0x294, 0x29a, 0x29c, 0x29e, 0x2a1, 0x2a3, 0x2a6, 0x2a8, 0x2aa, 0x2ac, 0x2ae, 0x2b1, 0x2b3, 0x2b5, 0x2b7, 0x2b9, 0x2c6, 0x2d0, 0x2d2, 0x2d4, 0x2d8, 0x2dd, 0x2e9, 0x2ee, 0x2f7, 0x2fd, 0x302, 0x306, 0x30b, 0x30f, 0x31f, 0x32d, 0x33b, 0x349, 0x34f, 0x351, 0x353, 0x356, 0x361, 0x363}\n\n// nfkcSparseValues: 877 entries, 3508 bytes\nvar nfkcSparseValues = [877]valueRange{\n\t// Block 0x0, offset 0x0\n\t{value: 0x0002, lo: 0x0d},\n\t{value: 0x0001, lo: 0xa0, hi: 0xa0},\n\t{value: 0x427b, lo: 0xa8, hi: 0xa8},\n\t{value: 0x0083, lo: 0xaa, hi: 0xaa},\n\t{value: 0x4267, lo: 0xaf, hi: 0xaf},\n\t{value: 0x0025, lo: 0xb2, hi: 0xb3},\n\t{value: 0x425d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x01dc, lo: 0xb5, hi: 0xb5},\n\t{value: 0x4294, lo: 0xb8, hi: 0xb8},\n\t{value: 0x0023, lo: 0xb9, hi: 0xb9},\n\t{value: 0x009f, lo: 0xba, hi: 0xba},\n\t{value: 0x221f, lo: 0xbc, hi: 0xbc},\n\t{value: 0x2213, lo: 0xbd, hi: 0xbd},\n\t{value: 0x22b5, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1, offset 0xe\n\t{value: 0x0091, lo: 0x03},\n\t{value: 0x46e5, lo: 0xa0, hi: 0xa1},\n\t{value: 0x4717, lo: 0xaf, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb7, hi: 0xb7},\n\t// Block 0x2, offset 0x12\n\t{value: 0x0003, lo: 0x08},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x0091, lo: 0xb0, hi: 0xb0},\n\t{value: 0x0119, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0095, lo: 0xb2, hi: 0xb2},\n\t{value: 0x00a5, lo: 0xb3, hi: 0xb3},\n\t{value: 0x0143, lo: 0xb4, hi: 0xb6},\n\t{value: 0x00af, lo: 0xb7, hi: 0xb7},\n\t{value: 0x00b3, lo: 0xb8, hi: 0xb8},\n\t// Block 0x3, offset 0x1b\n\t{value: 0x000a, lo: 0x09},\n\t{value: 0x4271, lo: 0x98, hi: 0x98},\n\t{value: 0x4276, lo: 0x99, hi: 0x9a},\n\t{value: 0x4299, lo: 0x9b, hi: 0x9b},\n\t{value: 0x4262, lo: 0x9c, hi: 0x9c},\n\t{value: 0x4285, lo: 0x9d, hi: 0x9d},\n\t{value: 0x0113, lo: 0xa0, hi: 0xa0},\n\t{value: 0x0099, lo: 0xa1, hi: 0xa1},\n\t{value: 0x00a7, lo: 0xa2, hi: 0xa3},\n\t{value: 0x0167, lo: 0xa4, hi: 0xa4},\n\t// Block 0x4, offset 0x25\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0xa000, lo: 0x8d, hi: 0x8d},\n\t{value: 0x37a8, lo: 0x90, hi: 0x90},\n\t{value: 0x37b4, lo: 0x91, hi: 0x91},\n\t{value: 0x37a2, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x96, hi: 0x96},\n\t{value: 0x381a, lo: 0x97, hi: 0x97},\n\t{value: 0x37e4, lo: 0x9c, hi: 0x9c},\n\t{value: 0x37cc, lo: 0x9d, hi: 0x9d},\n\t{value: 0x37f6, lo: 0x9e, hi: 0x9e},\n\t{value: 0xa000, lo: 0xb4, hi: 0xb5},\n\t{value: 0x3820, lo: 0xb6, hi: 0xb6},\n\t{value: 0x3826, lo: 0xb7, hi: 0xb7},\n\t// Block 0x5, offset 0x35\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x83, hi: 0x87},\n\t// Block 0x6, offset 0x37\n\t{value: 0x0001, lo: 0x04},\n\t{value: 0x8113, lo: 0x81, hi: 0x82},\n\t{value: 0x8132, lo: 0x84, hi: 0x84},\n\t{value: 0x812d, lo: 0x85, hi: 0x85},\n\t{value: 0x810d, lo: 0x87, hi: 0x87},\n\t// Block 0x7, offset 0x3c\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x97},\n\t{value: 0x8119, lo: 0x98, hi: 0x98},\n\t{value: 0x811a, lo: 0x99, hi: 0x99},\n\t{value: 0x811b, lo: 0x9a, hi: 0x9a},\n\t{value: 0x3844, lo: 0xa2, hi: 0xa2},\n\t{value: 0x384a, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3856, lo: 0xa4, hi: 0xa4},\n\t{value: 0x3850, lo: 0xa5, hi: 0xa5},\n\t{value: 0x385c, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xa7, hi: 0xa7},\n\t// Block 0x8, offset 0x47\n\t{value: 0x0000, lo: 0x0e},\n\t{value: 0x386e, lo: 0x80, hi: 0x80},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0x3862, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x3868, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x95, hi: 0x95},\n\t{value: 0x8132, lo: 0x96, hi: 0x9c},\n\t{value: 0x8132, lo: 0x9f, hi: 0xa2},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8132, lo: 0xab, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t// Block 0x9, offset 0x56\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x811f, lo: 0x91, hi: 0x91},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x812d, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb5, hi: 0xb6},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb9},\n\t{value: 0x8132, lo: 0xba, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbc},\n\t{value: 0x8132, lo: 0xbd, hi: 0xbd},\n\t{value: 0x812d, lo: 0xbe, hi: 0xbe},\n\t{value: 0x8132, lo: 0xbf, hi: 0xbf},\n\t// Block 0xa, offset 0x63\n\t{value: 0x0005, lo: 0x07},\n\t{value: 0x8132, lo: 0x80, hi: 0x80},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x83},\n\t{value: 0x812d, lo: 0x84, hi: 0x85},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x812d, lo: 0x88, hi: 0x89},\n\t{value: 0x8132, lo: 0x8a, hi: 0x8a},\n\t// Block 0xb, offset 0x6b\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xab, hi: 0xb1},\n\t{value: 0x812d, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb3},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0xc, offset 0x70\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0x96, hi: 0x99},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa7},\n\t{value: 0x8132, lo: 0xa9, hi: 0xad},\n\t// Block 0xd, offset 0x75\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x99, hi: 0x9b},\n\t// Block 0xe, offset 0x77\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0xa8, hi: 0xa8},\n\t{value: 0x3edb, lo: 0xa9, hi: 0xa9},\n\t{value: 0xa000, lo: 0xb0, hi: 0xb0},\n\t{value: 0x3ee3, lo: 0xb1, hi: 0xb1},\n\t{value: 0xa000, lo: 0xb3, hi: 0xb3},\n\t{value: 0x3eeb, lo: 0xb4, hi: 0xb4},\n\t{value: 0x9902, lo: 0xbc, hi: 0xbc},\n\t// Block 0xf, offset 0x7f\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x91, hi: 0x91},\n\t{value: 0x812d, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x93, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x94},\n\t{value: 0x451f, lo: 0x98, hi: 0x9f},\n\t// Block 0x10, offset 0x86\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x11, offset 0x89\n\t{value: 0x0008, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2ca1, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x455f, lo: 0x9c, hi: 0x9d},\n\t{value: 0x456f, lo: 0x9f, hi: 0x9f},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbe},\n\t// Block 0x12, offset 0x91\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4597, lo: 0xb3, hi: 0xb3},\n\t{value: 0x459f, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x13, offset 0x95\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4577, lo: 0x99, hi: 0x9b},\n\t{value: 0x458f, lo: 0x9e, hi: 0x9e},\n\t// Block 0x14, offset 0x99\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x15, offset 0x9b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t// Block 0x16, offset 0x9d\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2cb9, lo: 0x88, hi: 0x88},\n\t{value: 0x2cb1, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cc1, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x96, hi: 0x97},\n\t{value: 0x45a7, lo: 0x9c, hi: 0x9c},\n\t{value: 0x45af, lo: 0x9d, hi: 0x9d},\n\t// Block 0x17, offset 0xa6\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x2cc9, lo: 0x94, hi: 0x94},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x18, offset 0xaa\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cd1, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2ce1, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cd9, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x19, offset 0xb1\n\t{value: 0x1801, lo: 0x04},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x3ef3, lo: 0x88, hi: 0x88},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8120, lo: 0x95, hi: 0x96},\n\t// Block 0x1a, offset 0xb6\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0xa000, lo: 0xbf, hi: 0xbf},\n\t// Block 0x1b, offset 0xb9\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x2ce9, lo: 0x80, hi: 0x80},\n\t{value: 0x9900, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x2cf1, lo: 0x87, hi: 0x87},\n\t{value: 0x2cf9, lo: 0x88, hi: 0x88},\n\t{value: 0x2f53, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2ddb, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x95, hi: 0x96},\n\t// Block 0x1c, offset 0xc3\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1d, offset 0xc6\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2d01, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2d11, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d09, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1e, offset 0xcd\n\t{value: 0x6be7, lo: 0x07},\n\t{value: 0x9904, lo: 0x8a, hi: 0x8a},\n\t{value: 0x9900, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x3efb, lo: 0x9a, hi: 0x9a},\n\t{value: 0x2f5b, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2de6, lo: 0x9d, hi: 0x9d},\n\t{value: 0x2d19, lo: 0x9e, hi: 0x9f},\n\t// Block 0x1f, offset 0xd5\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x2624, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8122, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x20, offset 0xd9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8123, lo: 0x88, hi: 0x8b},\n\t// Block 0x21, offset 0xdb\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x2639, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8124, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x22, offset 0xdf\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8125, lo: 0x88, hi: 0x8b},\n\t{value: 0x262b, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2632, lo: 0x9d, hi: 0x9d},\n\t// Block 0x23, offset 0xe3\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x030b, lo: 0x8c, hi: 0x8c},\n\t{value: 0x812d, lo: 0x98, hi: 0x99},\n\t{value: 0x812d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb7},\n\t{value: 0x812b, lo: 0xb9, hi: 0xb9},\n\t// Block 0x24, offset 0xe9\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x2647, lo: 0x83, hi: 0x83},\n\t{value: 0x264e, lo: 0x8d, hi: 0x8d},\n\t{value: 0x2655, lo: 0x92, hi: 0x92},\n\t{value: 0x265c, lo: 0x97, hi: 0x97},\n\t{value: 0x2663, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2640, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8126, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8127, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a87, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8128, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a90, lo: 0xb5, hi: 0xb5},\n\t{value: 0x45b7, lo: 0xb6, hi: 0xb6},\n\t{value: 0x45f7, lo: 0xb7, hi: 0xb7},\n\t{value: 0x45bf, lo: 0xb8, hi: 0xb8},\n\t{value: 0x4602, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8127, lo: 0xba, hi: 0xbd},\n\t// Block 0x25, offset 0xfa\n\t{value: 0x0000, lo: 0x0b},\n\t{value: 0x8127, lo: 0x80, hi: 0x80},\n\t{value: 0x4a99, lo: 0x81, hi: 0x81},\n\t{value: 0x8132, lo: 0x82, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0x86, hi: 0x87},\n\t{value: 0x2671, lo: 0x93, hi: 0x93},\n\t{value: 0x2678, lo: 0x9d, hi: 0x9d},\n\t{value: 0x267f, lo: 0xa2, hi: 0xa2},\n\t{value: 0x2686, lo: 0xa7, hi: 0xa7},\n\t{value: 0x268d, lo: 0xac, hi: 0xac},\n\t{value: 0x266a, lo: 0xb9, hi: 0xb9},\n\t// Block 0x26, offset 0x106\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x86, hi: 0x86},\n\t// Block 0x27, offset 0x108\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x2d21, lo: 0xa6, hi: 0xa6},\n\t{value: 0x9900, lo: 0xae, hi: 0xae},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x28, offset 0x10e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t// Block 0x29, offset 0x110\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x030f, lo: 0xbc, hi: 0xbc},\n\t// Block 0x2a, offset 0x112\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x80, hi: 0x92},\n\t// Block 0x2b, offset 0x114\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xb900, lo: 0xa1, hi: 0xb5},\n\t// Block 0x2c, offset 0x116\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xa8, hi: 0xbf},\n\t// Block 0x2d, offset 0x118\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0x80, hi: 0x82},\n\t// Block 0x2e, offset 0x11a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9f},\n\t// Block 0x2f, offset 0x11c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x94, hi: 0x94},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x30, offset 0x11f\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9d},\n\t// Block 0x31, offset 0x122\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8131, lo: 0xa9, hi: 0xa9},\n\t// Block 0x32, offset 0x124\n\t{value: 0x0004, lo: 0x02},\n\t{value: 0x812e, lo: 0xb9, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbb},\n\t// Block 0x33, offset 0x127\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x97, hi: 0x97},\n\t{value: 0x812d, lo: 0x98, hi: 0x98},\n\t// Block 0x34, offset 0x12a\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8132, lo: 0xb5, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x35, offset 0x12e\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t{value: 0x812d, lo: 0xb5, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x36, offset 0x133\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0x2d69, lo: 0x80, hi: 0x80},\n\t{value: 0x2d71, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x82, hi: 0x82},\n\t{value: 0x2d79, lo: 0x83, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xab, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xac},\n\t{value: 0x8132, lo: 0xad, hi: 0xb3},\n\t// Block 0x37, offset 0x13c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xaa, hi: 0xab},\n\t// Block 0x38, offset 0x13e\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8104, lo: 0xb2, hi: 0xb3},\n\t// Block 0x39, offset 0x141\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x3a, offset 0x143\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x92},\n\t{value: 0x8101, lo: 0x94, hi: 0x94},\n\t{value: 0x812d, lo: 0x95, hi: 0x99},\n\t{value: 0x8132, lo: 0x9a, hi: 0x9b},\n\t{value: 0x812d, lo: 0x9c, hi: 0x9f},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8101, lo: 0xa2, hi: 0xa8},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t{value: 0x8132, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb9},\n\t// Block 0x3b, offset 0x14e\n\t{value: 0x0002, lo: 0x0a},\n\t{value: 0x0043, lo: 0xac, hi: 0xac},\n\t{value: 0x00d1, lo: 0xad, hi: 0xad},\n\t{value: 0x0045, lo: 0xae, hi: 0xae},\n\t{value: 0x0049, lo: 0xb0, hi: 0xb1},\n\t{value: 0x00e6, lo: 0xb2, hi: 0xb2},\n\t{value: 0x004f, lo: 0xb3, hi: 0xba},\n\t{value: 0x005f, lo: 0xbc, hi: 0xbc},\n\t{value: 0x00ef, lo: 0xbd, hi: 0xbd},\n\t{value: 0x0061, lo: 0xbe, hi: 0xbe},\n\t{value: 0x0065, lo: 0xbf, hi: 0xbf},\n\t// Block 0x3c, offset 0x159\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x0001, lo: 0x80, hi: 0x8a},\n\t{value: 0x043b, lo: 0x91, hi: 0x91},\n\t{value: 0x429e, lo: 0x97, hi: 0x97},\n\t{value: 0x001d, lo: 0xa4, hi: 0xa4},\n\t{value: 0x1873, lo: 0xa5, hi: 0xa5},\n\t{value: 0x1b5f, lo: 0xa6, hi: 0xa6},\n\t{value: 0x0001, lo: 0xaf, hi: 0xaf},\n\t{value: 0x2694, lo: 0xb3, hi: 0xb3},\n\t{value: 0x2801, lo: 0xb4, hi: 0xb4},\n\t{value: 0x269b, lo: 0xb6, hi: 0xb6},\n\t{value: 0x280b, lo: 0xb7, hi: 0xb7},\n\t{value: 0x186d, lo: 0xbc, hi: 0xbc},\n\t{value: 0x426c, lo: 0xbe, hi: 0xbe},\n\t// Block 0x3d, offset 0x167\n\t{value: 0x0002, lo: 0x0d},\n\t{value: 0x1933, lo: 0x87, hi: 0x87},\n\t{value: 0x1930, lo: 0x88, hi: 0x88},\n\t{value: 0x1870, lo: 0x89, hi: 0x89},\n\t{value: 0x2991, lo: 0x97, hi: 0x97},\n\t{value: 0x0001, lo: 0x9f, hi: 0x9f},\n\t{value: 0x0021, lo: 0xb0, hi: 0xb0},\n\t{value: 0x0093, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0029, lo: 0xb4, hi: 0xb9},\n\t{value: 0x0017, lo: 0xba, hi: 0xba},\n\t{value: 0x0467, lo: 0xbb, hi: 0xbb},\n\t{value: 0x003b, lo: 0xbc, hi: 0xbc},\n\t{value: 0x0011, lo: 0xbd, hi: 0xbe},\n\t{value: 0x009d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x3e, offset 0x175\n\t{value: 0x0002, lo: 0x0f},\n\t{value: 0x0021, lo: 0x80, hi: 0x89},\n\t{value: 0x0017, lo: 0x8a, hi: 0x8a},\n\t{value: 0x0467, lo: 0x8b, hi: 0x8b},\n\t{value: 0x003b, lo: 0x8c, hi: 0x8c},\n\t{value: 0x0011, lo: 0x8d, hi: 0x8e},\n\t{value: 0x0083, lo: 0x90, hi: 0x90},\n\t{value: 0x008b, lo: 0x91, hi: 0x91},\n\t{value: 0x009f, lo: 0x92, hi: 0x92},\n\t{value: 0x00b1, lo: 0x93, hi: 0x93},\n\t{value: 0x0104, lo: 0x94, hi: 0x94},\n\t{value: 0x0091, lo: 0x95, hi: 0x95},\n\t{value: 0x0097, lo: 0x96, hi: 0x99},\n\t{value: 0x00a1, lo: 0x9a, hi: 0x9a},\n\t{value: 0x00a7, lo: 0x9b, hi: 0x9c},\n\t{value: 0x199c, lo: 0xa8, hi: 0xa8},\n\t// Block 0x3f, offset 0x185\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x8132, lo: 0x90, hi: 0x91},\n\t{value: 0x8101, lo: 0x92, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x97},\n\t{value: 0x8101, lo: 0x98, hi: 0x9a},\n\t{value: 0x8132, lo: 0x9b, hi: 0x9c},\n\t{value: 0x8132, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8101, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa7},\n\t{value: 0x812d, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8132, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8101, lo: 0xaa, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t// Block 0x40, offset 0x193\n\t{value: 0x0007, lo: 0x06},\n\t{value: 0x2183, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t{value: 0x3bbc, lo: 0x9a, hi: 0x9b},\n\t{value: 0x3bca, lo: 0xae, hi: 0xae},\n\t// Block 0x41, offset 0x19a\n\t{value: 0x000e, lo: 0x05},\n\t{value: 0x3bd1, lo: 0x8d, hi: 0x8e},\n\t{value: 0x3bd8, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t// Block 0x42, offset 0x1a0\n\t{value: 0x0173, lo: 0x0e},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0x3be6, lo: 0x84, hi: 0x84},\n\t{value: 0xa000, lo: 0x88, hi: 0x88},\n\t{value: 0x3bed, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0x3bf4, lo: 0x8c, hi: 0x8c},\n\t{value: 0xa000, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3bfb, lo: 0xa4, hi: 0xa4},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3c02, lo: 0xa6, hi: 0xa6},\n\t{value: 0x26a2, lo: 0xac, hi: 0xad},\n\t{value: 0x26a9, lo: 0xaf, hi: 0xaf},\n\t{value: 0x281f, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xbc, hi: 0xbc},\n\t// Block 0x43, offset 0x1af\n\t{value: 0x0007, lo: 0x03},\n\t{value: 0x3c6b, lo: 0xa0, hi: 0xa1},\n\t{value: 0x3c95, lo: 0xa2, hi: 0xa3},\n\t{value: 0x3cbf, lo: 0xaa, hi: 0xad},\n\t// Block 0x44, offset 0x1b3\n\t{value: 0x0004, lo: 0x01},\n\t{value: 0x048b, lo: 0xa9, hi: 0xaa},\n\t// Block 0x45, offset 0x1b5\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x0057, lo: 0x80, hi: 0x8f},\n\t{value: 0x0083, lo: 0x90, hi: 0xa9},\n\t{value: 0x0021, lo: 0xaa, hi: 0xaa},\n\t// Block 0x46, offset 0x1b9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x299e, lo: 0x8c, hi: 0x8c},\n\t// Block 0x47, offset 0x1bb\n\t{value: 0x0266, lo: 0x02},\n\t{value: 0x1b8f, lo: 0xb4, hi: 0xb4},\n\t{value: 0x192d, lo: 0xb5, hi: 0xb6},\n\t// Block 0x48, offset 0x1be\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x44e0, lo: 0x9c, hi: 0x9c},\n\t// Block 0x49, offset 0x1c0\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x0095, lo: 0xbc, hi: 0xbc},\n\t{value: 0x006d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x4a, offset 0x1c3\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xaf, hi: 0xb1},\n\t// Block 0x4b, offset 0x1c5\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x047f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x4c, offset 0x1c8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa0, hi: 0xbf},\n\t// Block 0x4d, offset 0x1ca\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x0dc3, lo: 0x9f, hi: 0x9f},\n\t// Block 0x4e, offset 0x1cc\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x162f, lo: 0xb3, hi: 0xb3},\n\t// Block 0x4f, offset 0x1ce\n\t{value: 0x0004, lo: 0x0b},\n\t{value: 0x1597, lo: 0x80, hi: 0x82},\n\t{value: 0x15af, lo: 0x83, hi: 0x83},\n\t{value: 0x15c7, lo: 0x84, hi: 0x85},\n\t{value: 0x15d7, lo: 0x86, hi: 0x89},\n\t{value: 0x15eb, lo: 0x8a, hi: 0x8c},\n\t{value: 0x15ff, lo: 0x8d, hi: 0x8d},\n\t{value: 0x1607, lo: 0x8e, hi: 0x8e},\n\t{value: 0x160f, lo: 0x8f, hi: 0x90},\n\t{value: 0x161b, lo: 0x91, hi: 0x93},\n\t{value: 0x162b, lo: 0x94, hi: 0x94},\n\t{value: 0x1633, lo: 0x95, hi: 0x95},\n\t// Block 0x50, offset 0x1da\n\t{value: 0x0004, lo: 0x09},\n\t{value: 0x0001, lo: 0x80, hi: 0x80},\n\t{value: 0x812c, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8131, lo: 0xab, hi: 0xab},\n\t{value: 0x8133, lo: 0xac, hi: 0xac},\n\t{value: 0x812e, lo: 0xad, hi: 0xad},\n\t{value: 0x812f, lo: 0xae, hi: 0xae},\n\t{value: 0x812f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x04b3, lo: 0xb6, hi: 0xb6},\n\t{value: 0x0887, lo: 0xb8, hi: 0xba},\n\t// Block 0x51, offset 0x1e4\n\t{value: 0x0006, lo: 0x09},\n\t{value: 0x0313, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0317, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a3e, lo: 0xb3, hi: 0xb3},\n\t{value: 0x031b, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a44, lo: 0xb5, hi: 0xb6},\n\t{value: 0x031f, lo: 0xb7, hi: 0xb7},\n\t{value: 0x0323, lo: 0xb8, hi: 0xb8},\n\t{value: 0x0327, lo: 0xb9, hi: 0xb9},\n\t{value: 0x4a50, lo: 0xba, hi: 0xbf},\n\t// Block 0x52, offset 0x1ee\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb4, hi: 0xbd},\n\t// Block 0x53, offset 0x1f1\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x020f, lo: 0x9c, hi: 0x9c},\n\t{value: 0x0212, lo: 0x9d, hi: 0x9d},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9f},\n\t// Block 0x54, offset 0x1f5\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb1},\n\t// Block 0x55, offset 0x1f7\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x163b, lo: 0xb0, hi: 0xb0},\n\t// Block 0x56, offset 0x1f9\n\t{value: 0x000c, lo: 0x01},\n\t{value: 0x00d7, lo: 0xb8, hi: 0xb9},\n\t// Block 0x57, offset 0x1fb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t// Block 0x58, offset 0x1fd\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xa0, hi: 0xb1},\n\t// Block 0x59, offset 0x200\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xab, hi: 0xad},\n\t// Block 0x5a, offset 0x202\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x93, hi: 0x93},\n\t// Block 0x5b, offset 0x204\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb3, hi: 0xb3},\n\t// Block 0x5c, offset 0x206\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t// Block 0x5d, offset 0x208\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbf},\n\t// Block 0x5e, offset 0x20e\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t// Block 0x5f, offset 0x211\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x1637, lo: 0x9c, hi: 0x9d},\n\t{value: 0x0125, lo: 0x9e, hi: 0x9e},\n\t{value: 0x1643, lo: 0x9f, hi: 0x9f},\n\t// Block 0x60, offset 0x215\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xad, hi: 0xad},\n\t// Block 0x61, offset 0x217\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xe500, lo: 0x80, hi: 0x80},\n\t{value: 0xc600, lo: 0x81, hi: 0x9b},\n\t{value: 0xe500, lo: 0x9c, hi: 0x9c},\n\t{value: 0xc600, lo: 0x9d, hi: 0xb7},\n\t{value: 0xe500, lo: 0xb8, hi: 0xb8},\n\t{value: 0xc600, lo: 0xb9, hi: 0xbf},\n\t// Block 0x62, offset 0x21e\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x93},\n\t{value: 0xe500, lo: 0x94, hi: 0x94},\n\t{value: 0xc600, lo: 0x95, hi: 0xaf},\n\t{value: 0xe500, lo: 0xb0, hi: 0xb0},\n\t{value: 0xc600, lo: 0xb1, hi: 0xbf},\n\t// Block 0x63, offset 0x224\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8b},\n\t{value: 0xe500, lo: 0x8c, hi: 0x8c},\n\t{value: 0xc600, lo: 0x8d, hi: 0xa7},\n\t{value: 0xe500, lo: 0xa8, hi: 0xa8},\n\t{value: 0xc600, lo: 0xa9, hi: 0xbf},\n\t// Block 0x64, offset 0x22a\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xc600, lo: 0x80, hi: 0x83},\n\t{value: 0xe500, lo: 0x84, hi: 0x84},\n\t{value: 0xc600, lo: 0x85, hi: 0x9f},\n\t{value: 0xe500, lo: 0xa0, hi: 0xa0},\n\t{value: 0xc600, lo: 0xa1, hi: 0xbb},\n\t{value: 0xe500, lo: 0xbc, hi: 0xbc},\n\t{value: 0xc600, lo: 0xbd, hi: 0xbf},\n\t// Block 0x65, offset 0x232\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x97},\n\t{value: 0xe500, lo: 0x98, hi: 0x98},\n\t{value: 0xc600, lo: 0x99, hi: 0xb3},\n\t{value: 0xe500, lo: 0xb4, hi: 0xb4},\n\t{value: 0xc600, lo: 0xb5, hi: 0xbf},\n\t// Block 0x66, offset 0x238\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8f},\n\t{value: 0xe500, lo: 0x90, hi: 0x90},\n\t{value: 0xc600, lo: 0x91, hi: 0xab},\n\t{value: 0xe500, lo: 0xac, hi: 0xac},\n\t{value: 0xc600, lo: 0xad, hi: 0xbf},\n\t// Block 0x67, offset 0x23e\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t{value: 0xe500, lo: 0xa4, hi: 0xa4},\n\t{value: 0xc600, lo: 0xa5, hi: 0xbf},\n\t// Block 0x68, offset 0x244\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t// Block 0x69, offset 0x248\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x0003, lo: 0x81, hi: 0xbf},\n\t// Block 0x6a, offset 0x24a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x6b, offset 0x24c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xa0, hi: 0xa0},\n\t// Block 0x6c, offset 0x24e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb6, hi: 0xba},\n\t// Block 0x6d, offset 0x250\n\t{value: 0x002c, lo: 0x05},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8101, lo: 0xb9, hi: 0xba},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x6e, offset 0x256\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t// Block 0x6f, offset 0x259\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa7},\n\t// Block 0x70, offset 0x25b\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x8132, lo: 0x88, hi: 0x8a},\n\t{value: 0x812d, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8132, lo: 0x8c, hi: 0x8c},\n\t{value: 0x812d, lo: 0x8d, hi: 0x90},\n\t// Block 0x71, offset 0x261\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x72, offset 0x264\n\t{value: 0x17fe, lo: 0x07},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x423b, lo: 0x9a, hi: 0x9a},\n\t{value: 0xa000, lo: 0x9b, hi: 0x9b},\n\t{value: 0x4245, lo: 0x9c, hi: 0x9c},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x424f, lo: 0xab, hi: 0xab},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x73, offset 0x26c\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0x8132, lo: 0x80, hi: 0x82},\n\t{value: 0x9900, lo: 0xa7, hi: 0xa7},\n\t{value: 0x2d81, lo: 0xae, hi: 0xae},\n\t{value: 0x2d8b, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb1, hi: 0xb2},\n\t{value: 0x8104, lo: 0xb3, hi: 0xb4},\n\t// Block 0x74, offset 0x273\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x75, offset 0x276\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb5, hi: 0xb5},\n\t{value: 0x8102, lo: 0xb6, hi: 0xb6},\n\t// Block 0x76, offset 0x279\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x8102, lo: 0xa9, hi: 0xaa},\n\t// Block 0x77, offset 0x27b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbb, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x78, offset 0x27e\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2d95, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d9f, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x8132, lo: 0xa6, hi: 0xac},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t// Block 0x79, offset 0x286\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x86, hi: 0x86},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9e},\n\t// Block 0x7a, offset 0x28a\n\t{value: 0x6b57, lo: 0x06},\n\t{value: 0x9900, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb9, hi: 0xb9},\n\t{value: 0x9900, lo: 0xba, hi: 0xba},\n\t{value: 0x2db3, lo: 0xbb, hi: 0xbb},\n\t{value: 0x2da9, lo: 0xbc, hi: 0xbd},\n\t{value: 0x2dbd, lo: 0xbe, hi: 0xbe},\n\t// Block 0x7b, offset 0x291\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x83, hi: 0x83},\n\t// Block 0x7c, offset 0x294\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x9900, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb8, hi: 0xb9},\n\t{value: 0x2dc7, lo: 0xba, hi: 0xba},\n\t{value: 0x2dd1, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x7d, offset 0x29a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0x80, hi: 0x80},\n\t// Block 0x7e, offset 0x29c\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x7f, offset 0x29e\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x80, offset 0x2a1\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xab, hi: 0xab},\n\t// Block 0x81, offset 0x2a3\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8102, lo: 0xba, hi: 0xba},\n\t// Block 0x82, offset 0x2a6\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t// Block 0x83, offset 0x2a8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x84, offset 0x2aa\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x87, hi: 0x87},\n\t// Block 0x85, offset 0x2ac\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x99, hi: 0x99},\n\t// Block 0x86, offset 0x2ae\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0x82, hi: 0x82},\n\t{value: 0x8104, lo: 0x84, hi: 0x85},\n\t// Block 0x87, offset 0x2b1\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x97, hi: 0x97},\n\t// Block 0x88, offset 0x2b3\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0xb0, hi: 0xb4},\n\t// Block 0x89, offset 0x2b5\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb6},\n\t// Block 0x8a, offset 0x2b7\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0x9e, hi: 0x9e},\n\t// Block 0x8b, offset 0x2b9\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x45cf, lo: 0x9e, hi: 0x9e},\n\t{value: 0x45d9, lo: 0x9f, hi: 0x9f},\n\t{value: 0x460d, lo: 0xa0, hi: 0xa0},\n\t{value: 0x461b, lo: 0xa1, hi: 0xa1},\n\t{value: 0x4629, lo: 0xa2, hi: 0xa2},\n\t{value: 0x4637, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4645, lo: 0xa4, hi: 0xa4},\n\t{value: 0x812b, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8101, lo: 0xa7, hi: 0xa9},\n\t{value: 0x8130, lo: 0xad, hi: 0xad},\n\t{value: 0x812b, lo: 0xae, hi: 0xb2},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbf},\n\t// Block 0x8c, offset 0x2c6\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x812d, lo: 0x80, hi: 0x82},\n\t{value: 0x8132, lo: 0x85, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8b},\n\t{value: 0x8132, lo: 0xaa, hi: 0xad},\n\t{value: 0x45e3, lo: 0xbb, hi: 0xbb},\n\t{value: 0x45ed, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4653, lo: 0xbd, hi: 0xbd},\n\t{value: 0x466f, lo: 0xbe, hi: 0xbe},\n\t{value: 0x4661, lo: 0xbf, hi: 0xbf},\n\t// Block 0x8d, offset 0x2d0\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x467d, lo: 0x80, hi: 0x80},\n\t// Block 0x8e, offset 0x2d2\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x82, hi: 0x84},\n\t// Block 0x8f, offset 0x2d4\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x0043, lo: 0x80, hi: 0x99},\n\t{value: 0x0083, lo: 0x9a, hi: 0xb3},\n\t{value: 0x0043, lo: 0xb4, hi: 0xbf},\n\t// Block 0x90, offset 0x2d8\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x005b, lo: 0x80, hi: 0x8d},\n\t{value: 0x0083, lo: 0x8e, hi: 0x94},\n\t{value: 0x0093, lo: 0x96, hi: 0xa7},\n\t{value: 0x0043, lo: 0xa8, hi: 0xbf},\n\t// Block 0x91, offset 0x2dd\n\t{value: 0x0002, lo: 0x0b},\n\t{value: 0x0073, lo: 0x80, hi: 0x81},\n\t{value: 0x0083, lo: 0x82, hi: 0x9b},\n\t{value: 0x0043, lo: 0x9c, hi: 0x9c},\n\t{value: 0x0047, lo: 0x9e, hi: 0x9f},\n\t{value: 0x004f, lo: 0xa2, hi: 0xa2},\n\t{value: 0x0055, lo: 0xa5, hi: 0xa6},\n\t{value: 0x005d, lo: 0xa9, hi: 0xac},\n\t{value: 0x0067, lo: 0xae, hi: 0xb5},\n\t{value: 0x0083, lo: 0xb6, hi: 0xb9},\n\t{value: 0x008d, lo: 0xbb, hi: 0xbb},\n\t{value: 0x0091, lo: 0xbd, hi: 0xbf},\n\t// Block 0x92, offset 0x2e9\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x0097, lo: 0x80, hi: 0x83},\n\t{value: 0x00a1, lo: 0x85, hi: 0x8f},\n\t{value: 0x0043, lo: 0x90, hi: 0xa9},\n\t{value: 0x0083, lo: 0xaa, hi: 0xbf},\n\t// Block 0x93, offset 0x2ee\n\t{value: 0x0002, lo: 0x08},\n\t{value: 0x00af, lo: 0x80, hi: 0x83},\n\t{value: 0x0043, lo: 0x84, hi: 0x85},\n\t{value: 0x0049, lo: 0x87, hi: 0x8a},\n\t{value: 0x0055, lo: 0x8d, hi: 0x94},\n\t{value: 0x0067, lo: 0x96, hi: 0x9c},\n\t{value: 0x0083, lo: 0x9e, hi: 0xb7},\n\t{value: 0x0043, lo: 0xb8, hi: 0xb9},\n\t{value: 0x0049, lo: 0xbb, hi: 0xbe},\n\t// Block 0x94, offset 0x2f7\n\t{value: 0x0002, lo: 0x05},\n\t{value: 0x0053, lo: 0x80, hi: 0x84},\n\t{value: 0x005f, lo: 0x86, hi: 0x86},\n\t{value: 0x0067, lo: 0x8a, hi: 0x90},\n\t{value: 0x0083, lo: 0x92, hi: 0xab},\n\t{value: 0x0043, lo: 0xac, hi: 0xbf},\n\t// Block 0x95, offset 0x2fd\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x006b, lo: 0x80, hi: 0x85},\n\t{value: 0x0083, lo: 0x86, hi: 0x9f},\n\t{value: 0x0043, lo: 0xa0, hi: 0xb9},\n\t{value: 0x0083, lo: 0xba, hi: 0xbf},\n\t// Block 0x96, offset 0x302\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x008f, lo: 0x80, hi: 0x93},\n\t{value: 0x0043, lo: 0x94, hi: 0xad},\n\t{value: 0x0083, lo: 0xae, hi: 0xbf},\n\t// Block 0x97, offset 0x306\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x00a7, lo: 0x80, hi: 0x87},\n\t{value: 0x0043, lo: 0x88, hi: 0xa1},\n\t{value: 0x0083, lo: 0xa2, hi: 0xbb},\n\t{value: 0x0043, lo: 0xbc, hi: 0xbf},\n\t// Block 0x98, offset 0x30b\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x004b, lo: 0x80, hi: 0x95},\n\t{value: 0x0083, lo: 0x96, hi: 0xaf},\n\t{value: 0x0043, lo: 0xb0, hi: 0xbf},\n\t// Block 0x99, offset 0x30f\n\t{value: 0x0003, lo: 0x0f},\n\t{value: 0x01b8, lo: 0x80, hi: 0x80},\n\t{value: 0x045f, lo: 0x81, hi: 0x81},\n\t{value: 0x01bb, lo: 0x82, hi: 0x9a},\n\t{value: 0x045b, lo: 0x9b, hi: 0x9b},\n\t{value: 0x01c7, lo: 0x9c, hi: 0x9c},\n\t{value: 0x01d0, lo: 0x9d, hi: 0x9d},\n\t{value: 0x01d6, lo: 0x9e, hi: 0x9e},\n\t{value: 0x01fa, lo: 0x9f, hi: 0x9f},\n\t{value: 0x01eb, lo: 0xa0, hi: 0xa0},\n\t{value: 0x01e8, lo: 0xa1, hi: 0xa1},\n\t{value: 0x0173, lo: 0xa2, hi: 0xb2},\n\t{value: 0x0188, lo: 0xb3, hi: 0xb3},\n\t{value: 0x01a6, lo: 0xb4, hi: 0xba},\n\t{value: 0x045f, lo: 0xbb, hi: 0xbb},\n\t{value: 0x01bb, lo: 0xbc, hi: 0xbf},\n\t// Block 0x9a, offset 0x31f\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01c7, lo: 0x80, hi: 0x94},\n\t{value: 0x045b, lo: 0x95, hi: 0x95},\n\t{value: 0x01c7, lo: 0x96, hi: 0x96},\n\t{value: 0x01d0, lo: 0x97, hi: 0x97},\n\t{value: 0x01d6, lo: 0x98, hi: 0x98},\n\t{value: 0x01fa, lo: 0x99, hi: 0x99},\n\t{value: 0x01eb, lo: 0x9a, hi: 0x9a},\n\t{value: 0x01e8, lo: 0x9b, hi: 0x9b},\n\t{value: 0x0173, lo: 0x9c, hi: 0xac},\n\t{value: 0x0188, lo: 0xad, hi: 0xad},\n\t{value: 0x01a6, lo: 0xae, hi: 0xb4},\n\t{value: 0x045f, lo: 0xb5, hi: 0xb5},\n\t{value: 0x01bb, lo: 0xb6, hi: 0xbf},\n\t// Block 0x9b, offset 0x32d\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01d9, lo: 0x80, hi: 0x8e},\n\t{value: 0x045b, lo: 0x8f, hi: 0x8f},\n\t{value: 0x01c7, lo: 0x90, hi: 0x90},\n\t{value: 0x01d0, lo: 0x91, hi: 0x91},\n\t{value: 0x01d6, lo: 0x92, hi: 0x92},\n\t{value: 0x01fa, lo: 0x93, hi: 0x93},\n\t{value: 0x01eb, lo: 0x94, hi: 0x94},\n\t{value: 0x01e8, lo: 0x95, hi: 0x95},\n\t{value: 0x0173, lo: 0x96, hi: 0xa6},\n\t{value: 0x0188, lo: 0xa7, hi: 0xa7},\n\t{value: 0x01a6, lo: 0xa8, hi: 0xae},\n\t{value: 0x045f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x01bb, lo: 0xb0, hi: 0xbf},\n\t// Block 0x9c, offset 0x33b\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01eb, lo: 0x80, hi: 0x88},\n\t{value: 0x045b, lo: 0x89, hi: 0x89},\n\t{value: 0x01c7, lo: 0x8a, hi: 0x8a},\n\t{value: 0x01d0, lo: 0x8b, hi: 0x8b},\n\t{value: 0x01d6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x01fa, lo: 0x8d, hi: 0x8d},\n\t{value: 0x01eb, lo: 0x8e, hi: 0x8e},\n\t{value: 0x01e8, lo: 0x8f, hi: 0x8f},\n\t{value: 0x0173, lo: 0x90, hi: 0xa0},\n\t{value: 0x0188, lo: 0xa1, hi: 0xa1},\n\t{value: 0x01a6, lo: 0xa2, hi: 0xa8},\n\t{value: 0x045f, lo: 0xa9, hi: 0xa9},\n\t{value: 0x01bb, lo: 0xaa, hi: 0xbf},\n\t// Block 0x9d, offset 0x349\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0x80, hi: 0x86},\n\t{value: 0x8132, lo: 0x88, hi: 0x98},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa1},\n\t{value: 0x8132, lo: 0xa3, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa6, hi: 0xaa},\n\t// Block 0x9e, offset 0x34f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xac, hi: 0xaf},\n\t// Block 0x9f, offset 0x351\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x90, hi: 0x96},\n\t// Block 0xa0, offset 0x353\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x84, hi: 0x89},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0xa1, offset 0x356\n\t{value: 0x0002, lo: 0x0a},\n\t{value: 0x0063, lo: 0x80, hi: 0x89},\n\t{value: 0x1951, lo: 0x8a, hi: 0x8a},\n\t{value: 0x1984, lo: 0x8b, hi: 0x8b},\n\t{value: 0x199f, lo: 0x8c, hi: 0x8c},\n\t{value: 0x19a5, lo: 0x8d, hi: 0x8d},\n\t{value: 0x1bc3, lo: 0x8e, hi: 0x8e},\n\t{value: 0x19b1, lo: 0x8f, hi: 0x8f},\n\t{value: 0x197b, lo: 0xaa, hi: 0xaa},\n\t{value: 0x197e, lo: 0xab, hi: 0xab},\n\t{value: 0x1981, lo: 0xac, hi: 0xac},\n\t// Block 0xa2, offset 0x361\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x193f, lo: 0x90, hi: 0x90},\n\t// Block 0xa3, offset 0x363\n\t{value: 0x0028, lo: 0x09},\n\t{value: 0x2865, lo: 0x80, hi: 0x80},\n\t{value: 0x2829, lo: 0x81, hi: 0x81},\n\t{value: 0x2833, lo: 0x82, hi: 0x82},\n\t{value: 0x2847, lo: 0x83, hi: 0x84},\n\t{value: 0x2851, lo: 0x85, hi: 0x86},\n\t{value: 0x283d, lo: 0x87, hi: 0x87},\n\t{value: 0x285b, lo: 0x88, hi: 0x88},\n\t{value: 0x0b6f, lo: 0x90, hi: 0x90},\n\t{value: 0x08e7, lo: 0x91, hi: 0x91},\n}\n\n// recompMap: 7520 bytes (entries only)\nvar recompMap map[uint32]rune\nvar recompMapOnce sync.Once\n\nconst recompMapPacked = \"\" +\n\t\"\\x00A\\x03\\x00\\x00\\x00\\x00\\xc0\" + // 0x00410300: 0x000000C0\n\t\"\\x00A\\x03\\x01\\x00\\x00\\x00\\xc1\" + // 0x00410301: 0x000000C1\n\t\"\\x00A\\x03\\x02\\x00\\x00\\x00\\xc2\" + // 0x00410302: 0x000000C2\n\t\"\\x00A\\x03\\x03\\x00\\x00\\x00\\xc3\" + // 0x00410303: 0x000000C3\n\t\"\\x00A\\x03\\b\\x00\\x00\\x00\\xc4\" + // 0x00410308: 0x000000C4\n\t\"\\x00A\\x03\\n\\x00\\x00\\x00\\xc5\" + // 0x0041030A: 0x000000C5\n\t\"\\x00C\\x03'\\x00\\x00\\x00\\xc7\" + // 0x00430327: 0x000000C7\n\t\"\\x00E\\x03\\x00\\x00\\x00\\x00\\xc8\" + // 0x00450300: 0x000000C8\n\t\"\\x00E\\x03\\x01\\x00\\x00\\x00\\xc9\" + // 0x00450301: 0x000000C9\n\t\"\\x00E\\x03\\x02\\x00\\x00\\x00\\xca\" + // 0x00450302: 0x000000CA\n\t\"\\x00E\\x03\\b\\x00\\x00\\x00\\xcb\" + // 0x00450308: 0x000000CB\n\t\"\\x00I\\x03\\x00\\x00\\x00\\x00\\xcc\" + // 0x00490300: 0x000000CC\n\t\"\\x00I\\x03\\x01\\x00\\x00\\x00\\xcd\" + // 0x00490301: 0x000000CD\n\t\"\\x00I\\x03\\x02\\x00\\x00\\x00\\xce\" + // 0x00490302: 0x000000CE\n\t\"\\x00I\\x03\\b\\x00\\x00\\x00\\xcf\" + // 0x00490308: 0x000000CF\n\t\"\\x00N\\x03\\x03\\x00\\x00\\x00\\xd1\" + // 0x004E0303: 0x000000D1\n\t\"\\x00O\\x03\\x00\\x00\\x00\\x00\\xd2\" + // 0x004F0300: 0x000000D2\n\t\"\\x00O\\x03\\x01\\x00\\x00\\x00\\xd3\" + // 0x004F0301: 0x000000D3\n\t\"\\x00O\\x03\\x02\\x00\\x00\\x00\\xd4\" + // 0x004F0302: 0x000000D4\n\t\"\\x00O\\x03\\x03\\x00\\x00\\x00\\xd5\" + // 0x004F0303: 0x000000D5\n\t\"\\x00O\\x03\\b\\x00\\x00\\x00\\xd6\" + // 0x004F0308: 0x000000D6\n\t\"\\x00U\\x03\\x00\\x00\\x00\\x00\\xd9\" + // 0x00550300: 0x000000D9\n\t\"\\x00U\\x03\\x01\\x00\\x00\\x00\\xda\" + // 0x00550301: 0x000000DA\n\t\"\\x00U\\x03\\x02\\x00\\x00\\x00\\xdb\" + // 0x00550302: 0x000000DB\n\t\"\\x00U\\x03\\b\\x00\\x00\\x00\\xdc\" + // 0x00550308: 0x000000DC\n\t\"\\x00Y\\x03\\x01\\x00\\x00\\x00\\xdd\" + // 0x00590301: 0x000000DD\n\t\"\\x00a\\x03\\x00\\x00\\x00\\x00\\xe0\" + // 0x00610300: 0x000000E0\n\t\"\\x00a\\x03\\x01\\x00\\x00\\x00\\xe1\" + // 0x00610301: 0x000000E1\n\t\"\\x00a\\x03\\x02\\x00\\x00\\x00\\xe2\" + // 0x00610302: 0x000000E2\n\t\"\\x00a\\x03\\x03\\x00\\x00\\x00\\xe3\" + // 0x00610303: 0x000000E3\n\t\"\\x00a\\x03\\b\\x00\\x00\\x00\\xe4\" + // 0x00610308: 0x000000E4\n\t\"\\x00a\\x03\\n\\x00\\x00\\x00\\xe5\" + // 0x0061030A: 0x000000E5\n\t\"\\x00c\\x03'\\x00\\x00\\x00\\xe7\" + // 0x00630327: 0x000000E7\n\t\"\\x00e\\x03\\x00\\x00\\x00\\x00\\xe8\" + // 0x00650300: 0x000000E8\n\t\"\\x00e\\x03\\x01\\x00\\x00\\x00\\xe9\" + // 0x00650301: 0x000000E9\n\t\"\\x00e\\x03\\x02\\x00\\x00\\x00\\xea\" + // 0x00650302: 0x000000EA\n\t\"\\x00e\\x03\\b\\x00\\x00\\x00\\xeb\" + // 0x00650308: 0x000000EB\n\t\"\\x00i\\x03\\x00\\x00\\x00\\x00\\xec\" + // 0x00690300: 0x000000EC\n\t\"\\x00i\\x03\\x01\\x00\\x00\\x00\\xed\" + // 0x00690301: 0x000000ED\n\t\"\\x00i\\x03\\x02\\x00\\x00\\x00\\xee\" + // 0x00690302: 0x000000EE\n\t\"\\x00i\\x03\\b\\x00\\x00\\x00\\xef\" + // 0x00690308: 0x000000EF\n\t\"\\x00n\\x03\\x03\\x00\\x00\\x00\\xf1\" + // 0x006E0303: 0x000000F1\n\t\"\\x00o\\x03\\x00\\x00\\x00\\x00\\xf2\" + // 0x006F0300: 0x000000F2\n\t\"\\x00o\\x03\\x01\\x00\\x00\\x00\\xf3\" + // 0x006F0301: 0x000000F3\n\t\"\\x00o\\x03\\x02\\x00\\x00\\x00\\xf4\" + // 0x006F0302: 0x000000F4\n\t\"\\x00o\\x03\\x03\\x00\\x00\\x00\\xf5\" + // 0x006F0303: 0x000000F5\n\t\"\\x00o\\x03\\b\\x00\\x00\\x00\\xf6\" + // 0x006F0308: 0x000000F6\n\t\"\\x00u\\x03\\x00\\x00\\x00\\x00\\xf9\" + // 0x00750300: 0x000000F9\n\t\"\\x00u\\x03\\x01\\x00\\x00\\x00\\xfa\" + // 0x00750301: 0x000000FA\n\t\"\\x00u\\x03\\x02\\x00\\x00\\x00\\xfb\" + // 0x00750302: 0x000000FB\n\t\"\\x00u\\x03\\b\\x00\\x00\\x00\\xfc\" + // 0x00750308: 0x000000FC\n\t\"\\x00y\\x03\\x01\\x00\\x00\\x00\\xfd\" + // 0x00790301: 0x000000FD\n\t\"\\x00y\\x03\\b\\x00\\x00\\x00\\xff\" + // 0x00790308: 0x000000FF\n\t\"\\x00A\\x03\\x04\\x00\\x00\\x01\\x00\" + // 0x00410304: 0x00000100\n\t\"\\x00a\\x03\\x04\\x00\\x00\\x01\\x01\" + // 0x00610304: 0x00000101\n\t\"\\x00A\\x03\\x06\\x00\\x00\\x01\\x02\" + // 0x00410306: 0x00000102\n\t\"\\x00a\\x03\\x06\\x00\\x00\\x01\\x03\" + // 0x00610306: 0x00000103\n\t\"\\x00A\\x03(\\x00\\x00\\x01\\x04\" + // 0x00410328: 0x00000104\n\t\"\\x00a\\x03(\\x00\\x00\\x01\\x05\" + // 0x00610328: 0x00000105\n\t\"\\x00C\\x03\\x01\\x00\\x00\\x01\\x06\" + // 0x00430301: 0x00000106\n\t\"\\x00c\\x03\\x01\\x00\\x00\\x01\\a\" + // 0x00630301: 0x00000107\n\t\"\\x00C\\x03\\x02\\x00\\x00\\x01\\b\" + // 0x00430302: 0x00000108\n\t\"\\x00c\\x03\\x02\\x00\\x00\\x01\\t\" + // 0x00630302: 0x00000109\n\t\"\\x00C\\x03\\a\\x00\\x00\\x01\\n\" + // 0x00430307: 0x0000010A\n\t\"\\x00c\\x03\\a\\x00\\x00\\x01\\v\" + // 0x00630307: 0x0000010B\n\t\"\\x00C\\x03\\f\\x00\\x00\\x01\\f\" + // 0x0043030C: 0x0000010C\n\t\"\\x00c\\x03\\f\\x00\\x00\\x01\\r\" + // 0x0063030C: 0x0000010D\n\t\"\\x00D\\x03\\f\\x00\\x00\\x01\\x0e\" + // 0x0044030C: 0x0000010E\n\t\"\\x00d\\x03\\f\\x00\\x00\\x01\\x0f\" + // 0x0064030C: 0x0000010F\n\t\"\\x00E\\x03\\x04\\x00\\x00\\x01\\x12\" + // 0x00450304: 0x00000112\n\t\"\\x00e\\x03\\x04\\x00\\x00\\x01\\x13\" + // 0x00650304: 0x00000113\n\t\"\\x00E\\x03\\x06\\x00\\x00\\x01\\x14\" + // 0x00450306: 0x00000114\n\t\"\\x00e\\x03\\x06\\x00\\x00\\x01\\x15\" + // 0x00650306: 0x00000115\n\t\"\\x00E\\x03\\a\\x00\\x00\\x01\\x16\" + // 0x00450307: 0x00000116\n\t\"\\x00e\\x03\\a\\x00\\x00\\x01\\x17\" + // 0x00650307: 0x00000117\n\t\"\\x00E\\x03(\\x00\\x00\\x01\\x18\" + // 0x00450328: 0x00000118\n\t\"\\x00e\\x03(\\x00\\x00\\x01\\x19\" + // 0x00650328: 0x00000119\n\t\"\\x00E\\x03\\f\\x00\\x00\\x01\\x1a\" + // 0x0045030C: 0x0000011A\n\t\"\\x00e\\x03\\f\\x00\\x00\\x01\\x1b\" + // 0x0065030C: 0x0000011B\n\t\"\\x00G\\x03\\x02\\x00\\x00\\x01\\x1c\" + // 0x00470302: 0x0000011C\n\t\"\\x00g\\x03\\x02\\x00\\x00\\x01\\x1d\" + // 0x00670302: 0x0000011D\n\t\"\\x00G\\x03\\x06\\x00\\x00\\x01\\x1e\" + // 0x00470306: 0x0000011E\n\t\"\\x00g\\x03\\x06\\x00\\x00\\x01\\x1f\" + // 0x00670306: 0x0000011F\n\t\"\\x00G\\x03\\a\\x00\\x00\\x01 \" + // 0x00470307: 0x00000120\n\t\"\\x00g\\x03\\a\\x00\\x00\\x01!\" + // 0x00670307: 0x00000121\n\t\"\\x00G\\x03'\\x00\\x00\\x01\\\"\" + // 0x00470327: 0x00000122\n\t\"\\x00g\\x03'\\x00\\x00\\x01#\" + // 0x00670327: 0x00000123\n\t\"\\x00H\\x03\\x02\\x00\\x00\\x01$\" + // 0x00480302: 0x00000124\n\t\"\\x00h\\x03\\x02\\x00\\x00\\x01%\" + // 0x00680302: 0x00000125\n\t\"\\x00I\\x03\\x03\\x00\\x00\\x01(\" + // 0x00490303: 0x00000128\n\t\"\\x00i\\x03\\x03\\x00\\x00\\x01)\" + // 0x00690303: 0x00000129\n\t\"\\x00I\\x03\\x04\\x00\\x00\\x01*\" + // 0x00490304: 0x0000012A\n\t\"\\x00i\\x03\\x04\\x00\\x00\\x01+\" + // 0x00690304: 0x0000012B\n\t\"\\x00I\\x03\\x06\\x00\\x00\\x01,\" + // 0x00490306: 0x0000012C\n\t\"\\x00i\\x03\\x06\\x00\\x00\\x01-\" + // 0x00690306: 0x0000012D\n\t\"\\x00I\\x03(\\x00\\x00\\x01.\" + // 0x00490328: 0x0000012E\n\t\"\\x00i\\x03(\\x00\\x00\\x01/\" + // 0x00690328: 0x0000012F\n\t\"\\x00I\\x03\\a\\x00\\x00\\x010\" + // 0x00490307: 0x00000130\n\t\"\\x00J\\x03\\x02\\x00\\x00\\x014\" + // 0x004A0302: 0x00000134\n\t\"\\x00j\\x03\\x02\\x00\\x00\\x015\" + // 0x006A0302: 0x00000135\n\t\"\\x00K\\x03'\\x00\\x00\\x016\" + // 0x004B0327: 0x00000136\n\t\"\\x00k\\x03'\\x00\\x00\\x017\" + // 0x006B0327: 0x00000137\n\t\"\\x00L\\x03\\x01\\x00\\x00\\x019\" + // 0x004C0301: 0x00000139\n\t\"\\x00l\\x03\\x01\\x00\\x00\\x01:\" + // 0x006C0301: 0x0000013A\n\t\"\\x00L\\x03'\\x00\\x00\\x01;\" + // 0x004C0327: 0x0000013B\n\t\"\\x00l\\x03'\\x00\\x00\\x01<\" + // 0x006C0327: 0x0000013C\n\t\"\\x00L\\x03\\f\\x00\\x00\\x01=\" + // 0x004C030C: 0x0000013D\n\t\"\\x00l\\x03\\f\\x00\\x00\\x01>\" + // 0x006C030C: 0x0000013E\n\t\"\\x00N\\x03\\x01\\x00\\x00\\x01C\" + // 0x004E0301: 0x00000143\n\t\"\\x00n\\x03\\x01\\x00\\x00\\x01D\" + // 0x006E0301: 0x00000144\n\t\"\\x00N\\x03'\\x00\\x00\\x01E\" + // 0x004E0327: 0x00000145\n\t\"\\x00n\\x03'\\x00\\x00\\x01F\" + // 0x006E0327: 0x00000146\n\t\"\\x00N\\x03\\f\\x00\\x00\\x01G\" + // 0x004E030C: 0x00000147\n\t\"\\x00n\\x03\\f\\x00\\x00\\x01H\" + // 0x006E030C: 0x00000148\n\t\"\\x00O\\x03\\x04\\x00\\x00\\x01L\" + // 0x004F0304: 0x0000014C\n\t\"\\x00o\\x03\\x04\\x00\\x00\\x01M\" + // 0x006F0304: 0x0000014D\n\t\"\\x00O\\x03\\x06\\x00\\x00\\x01N\" + // 0x004F0306: 0x0000014E\n\t\"\\x00o\\x03\\x06\\x00\\x00\\x01O\" + // 0x006F0306: 0x0000014F\n\t\"\\x00O\\x03\\v\\x00\\x00\\x01P\" + // 0x004F030B: 0x00000150\n\t\"\\x00o\\x03\\v\\x00\\x00\\x01Q\" + // 0x006F030B: 0x00000151\n\t\"\\x00R\\x03\\x01\\x00\\x00\\x01T\" + // 0x00520301: 0x00000154\n\t\"\\x00r\\x03\\x01\\x00\\x00\\x01U\" + // 0x00720301: 0x00000155\n\t\"\\x00R\\x03'\\x00\\x00\\x01V\" + // 0x00520327: 0x00000156\n\t\"\\x00r\\x03'\\x00\\x00\\x01W\" + // 0x00720327: 0x00000157\n\t\"\\x00R\\x03\\f\\x00\\x00\\x01X\" + // 0x0052030C: 0x00000158\n\t\"\\x00r\\x03\\f\\x00\\x00\\x01Y\" + // 0x0072030C: 0x00000159\n\t\"\\x00S\\x03\\x01\\x00\\x00\\x01Z\" + // 0x00530301: 0x0000015A\n\t\"\\x00s\\x03\\x01\\x00\\x00\\x01[\" + // 0x00730301: 0x0000015B\n\t\"\\x00S\\x03\\x02\\x00\\x00\\x01\\\\\" + // 0x00530302: 0x0000015C\n\t\"\\x00s\\x03\\x02\\x00\\x00\\x01]\" + // 0x00730302: 0x0000015D\n\t\"\\x00S\\x03'\\x00\\x00\\x01^\" + // 0x00530327: 0x0000015E\n\t\"\\x00s\\x03'\\x00\\x00\\x01_\" + // 0x00730327: 0x0000015F\n\t\"\\x00S\\x03\\f\\x00\\x00\\x01`\" + // 0x0053030C: 0x00000160\n\t\"\\x00s\\x03\\f\\x00\\x00\\x01a\" + // 0x0073030C: 0x00000161\n\t\"\\x00T\\x03'\\x00\\x00\\x01b\" + // 0x00540327: 0x00000162\n\t\"\\x00t\\x03'\\x00\\x00\\x01c\" + // 0x00740327: 0x00000163\n\t\"\\x00T\\x03\\f\\x00\\x00\\x01d\" + // 0x0054030C: 0x00000164\n\t\"\\x00t\\x03\\f\\x00\\x00\\x01e\" + // 0x0074030C: 0x00000165\n\t\"\\x00U\\x03\\x03\\x00\\x00\\x01h\" + // 0x00550303: 0x00000168\n\t\"\\x00u\\x03\\x03\\x00\\x00\\x01i\" + // 0x00750303: 0x00000169\n\t\"\\x00U\\x03\\x04\\x00\\x00\\x01j\" + // 0x00550304: 0x0000016A\n\t\"\\x00u\\x03\\x04\\x00\\x00\\x01k\" + // 0x00750304: 0x0000016B\n\t\"\\x00U\\x03\\x06\\x00\\x00\\x01l\" + // 0x00550306: 0x0000016C\n\t\"\\x00u\\x03\\x06\\x00\\x00\\x01m\" + // 0x00750306: 0x0000016D\n\t\"\\x00U\\x03\\n\\x00\\x00\\x01n\" + // 0x0055030A: 0x0000016E\n\t\"\\x00u\\x03\\n\\x00\\x00\\x01o\" + // 0x0075030A: 0x0000016F\n\t\"\\x00U\\x03\\v\\x00\\x00\\x01p\" + // 0x0055030B: 0x00000170\n\t\"\\x00u\\x03\\v\\x00\\x00\\x01q\" + // 0x0075030B: 0x00000171\n\t\"\\x00U\\x03(\\x00\\x00\\x01r\" + // 0x00550328: 0x00000172\n\t\"\\x00u\\x03(\\x00\\x00\\x01s\" + // 0x00750328: 0x00000173\n\t\"\\x00W\\x03\\x02\\x00\\x00\\x01t\" + // 0x00570302: 0x00000174\n\t\"\\x00w\\x03\\x02\\x00\\x00\\x01u\" + // 0x00770302: 0x00000175\n\t\"\\x00Y\\x03\\x02\\x00\\x00\\x01v\" + // 0x00590302: 0x00000176\n\t\"\\x00y\\x03\\x02\\x00\\x00\\x01w\" + // 0x00790302: 0x00000177\n\t\"\\x00Y\\x03\\b\\x00\\x00\\x01x\" + // 0x00590308: 0x00000178\n\t\"\\x00Z\\x03\\x01\\x00\\x00\\x01y\" + // 0x005A0301: 0x00000179\n\t\"\\x00z\\x03\\x01\\x00\\x00\\x01z\" + // 0x007A0301: 0x0000017A\n\t\"\\x00Z\\x03\\a\\x00\\x00\\x01{\" + // 0x005A0307: 0x0000017B\n\t\"\\x00z\\x03\\a\\x00\\x00\\x01|\" + // 0x007A0307: 0x0000017C\n\t\"\\x00Z\\x03\\f\\x00\\x00\\x01}\" + // 0x005A030C: 0x0000017D\n\t\"\\x00z\\x03\\f\\x00\\x00\\x01~\" + // 0x007A030C: 0x0000017E\n\t\"\\x00O\\x03\\x1b\\x00\\x00\\x01\\xa0\" + // 0x004F031B: 0x000001A0\n\t\"\\x00o\\x03\\x1b\\x00\\x00\\x01\\xa1\" + // 0x006F031B: 0x000001A1\n\t\"\\x00U\\x03\\x1b\\x00\\x00\\x01\\xaf\" + // 0x0055031B: 0x000001AF\n\t\"\\x00u\\x03\\x1b\\x00\\x00\\x01\\xb0\" + // 0x0075031B: 0x000001B0\n\t\"\\x00A\\x03\\f\\x00\\x00\\x01\\xcd\" + // 0x0041030C: 0x000001CD\n\t\"\\x00a\\x03\\f\\x00\\x00\\x01\\xce\" + // 0x0061030C: 0x000001CE\n\t\"\\x00I\\x03\\f\\x00\\x00\\x01\\xcf\" + // 0x0049030C: 0x000001CF\n\t\"\\x00i\\x03\\f\\x00\\x00\\x01\\xd0\" + // 0x0069030C: 0x000001D0\n\t\"\\x00O\\x03\\f\\x00\\x00\\x01\\xd1\" + // 0x004F030C: 0x000001D1\n\t\"\\x00o\\x03\\f\\x00\\x00\\x01\\xd2\" + // 0x006F030C: 0x000001D2\n\t\"\\x00U\\x03\\f\\x00\\x00\\x01\\xd3\" + // 0x0055030C: 0x000001D3\n\t\"\\x00u\\x03\\f\\x00\\x00\\x01\\xd4\" + // 0x0075030C: 0x000001D4\n\t\"\\x00\\xdc\\x03\\x04\\x00\\x00\\x01\\xd5\" + // 0x00DC0304: 0x000001D5\n\t\"\\x00\\xfc\\x03\\x04\\x00\\x00\\x01\\xd6\" + // 0x00FC0304: 0x000001D6\n\t\"\\x00\\xdc\\x03\\x01\\x00\\x00\\x01\\xd7\" + // 0x00DC0301: 0x000001D7\n\t\"\\x00\\xfc\\x03\\x01\\x00\\x00\\x01\\xd8\" + // 0x00FC0301: 0x000001D8\n\t\"\\x00\\xdc\\x03\\f\\x00\\x00\\x01\\xd9\" + // 0x00DC030C: 0x000001D9\n\t\"\\x00\\xfc\\x03\\f\\x00\\x00\\x01\\xda\" + // 0x00FC030C: 0x000001DA\n\t\"\\x00\\xdc\\x03\\x00\\x00\\x00\\x01\\xdb\" + // 0x00DC0300: 0x000001DB\n\t\"\\x00\\xfc\\x03\\x00\\x00\\x00\\x01\\xdc\" + // 0x00FC0300: 0x000001DC\n\t\"\\x00\\xc4\\x03\\x04\\x00\\x00\\x01\\xde\" + // 0x00C40304: 0x000001DE\n\t\"\\x00\\xe4\\x03\\x04\\x00\\x00\\x01\\xdf\" + // 0x00E40304: 0x000001DF\n\t\"\\x02&\\x03\\x04\\x00\\x00\\x01\\xe0\" + // 0x02260304: 0x000001E0\n\t\"\\x02'\\x03\\x04\\x00\\x00\\x01\\xe1\" + // 0x02270304: 0x000001E1\n\t\"\\x00\\xc6\\x03\\x04\\x00\\x00\\x01\\xe2\" + // 0x00C60304: 0x000001E2\n\t\"\\x00\\xe6\\x03\\x04\\x00\\x00\\x01\\xe3\" + // 0x00E60304: 0x000001E3\n\t\"\\x00G\\x03\\f\\x00\\x00\\x01\\xe6\" + // 0x0047030C: 0x000001E6\n\t\"\\x00g\\x03\\f\\x00\\x00\\x01\\xe7\" + // 0x0067030C: 0x000001E7\n\t\"\\x00K\\x03\\f\\x00\\x00\\x01\\xe8\" + // 0x004B030C: 0x000001E8\n\t\"\\x00k\\x03\\f\\x00\\x00\\x01\\xe9\" + // 0x006B030C: 0x000001E9\n\t\"\\x00O\\x03(\\x00\\x00\\x01\\xea\" + // 0x004F0328: 0x000001EA\n\t\"\\x00o\\x03(\\x00\\x00\\x01\\xeb\" + // 0x006F0328: 0x000001EB\n\t\"\\x01\\xea\\x03\\x04\\x00\\x00\\x01\\xec\" + // 0x01EA0304: 0x000001EC\n\t\"\\x01\\xeb\\x03\\x04\\x00\\x00\\x01\\xed\" + // 0x01EB0304: 0x000001ED\n\t\"\\x01\\xb7\\x03\\f\\x00\\x00\\x01\\xee\" + // 0x01B7030C: 0x000001EE\n\t\"\\x02\\x92\\x03\\f\\x00\\x00\\x01\\xef\" + // 0x0292030C: 0x000001EF\n\t\"\\x00j\\x03\\f\\x00\\x00\\x01\\xf0\" + // 0x006A030C: 0x000001F0\n\t\"\\x00G\\x03\\x01\\x00\\x00\\x01\\xf4\" + // 0x00470301: 0x000001F4\n\t\"\\x00g\\x03\\x01\\x00\\x00\\x01\\xf5\" + // 0x00670301: 0x000001F5\n\t\"\\x00N\\x03\\x00\\x00\\x00\\x01\\xf8\" + // 0x004E0300: 0x000001F8\n\t\"\\x00n\\x03\\x00\\x00\\x00\\x01\\xf9\" + // 0x006E0300: 0x000001F9\n\t\"\\x00\\xc5\\x03\\x01\\x00\\x00\\x01\\xfa\" + // 0x00C50301: 0x000001FA\n\t\"\\x00\\xe5\\x03\\x01\\x00\\x00\\x01\\xfb\" + // 0x00E50301: 0x000001FB\n\t\"\\x00\\xc6\\x03\\x01\\x00\\x00\\x01\\xfc\" + // 0x00C60301: 0x000001FC\n\t\"\\x00\\xe6\\x03\\x01\\x00\\x00\\x01\\xfd\" + // 0x00E60301: 0x000001FD\n\t\"\\x00\\xd8\\x03\\x01\\x00\\x00\\x01\\xfe\" + // 0x00D80301: 0x000001FE\n\t\"\\x00\\xf8\\x03\\x01\\x00\\x00\\x01\\xff\" + // 0x00F80301: 0x000001FF\n\t\"\\x00A\\x03\\x0f\\x00\\x00\\x02\\x00\" + // 0x0041030F: 0x00000200\n\t\"\\x00a\\x03\\x0f\\x00\\x00\\x02\\x01\" + // 0x0061030F: 0x00000201\n\t\"\\x00A\\x03\\x11\\x00\\x00\\x02\\x02\" + // 0x00410311: 0x00000202\n\t\"\\x00a\\x03\\x11\\x00\\x00\\x02\\x03\" + // 0x00610311: 0x00000203\n\t\"\\x00E\\x03\\x0f\\x00\\x00\\x02\\x04\" + // 0x0045030F: 0x00000204\n\t\"\\x00e\\x03\\x0f\\x00\\x00\\x02\\x05\" + // 0x0065030F: 0x00000205\n\t\"\\x00E\\x03\\x11\\x00\\x00\\x02\\x06\" + // 0x00450311: 0x00000206\n\t\"\\x00e\\x03\\x11\\x00\\x00\\x02\\a\" + // 0x00650311: 0x00000207\n\t\"\\x00I\\x03\\x0f\\x00\\x00\\x02\\b\" + // 0x0049030F: 0x00000208\n\t\"\\x00i\\x03\\x0f\\x00\\x00\\x02\\t\" + // 0x0069030F: 0x00000209\n\t\"\\x00I\\x03\\x11\\x00\\x00\\x02\\n\" + // 0x00490311: 0x0000020A\n\t\"\\x00i\\x03\\x11\\x00\\x00\\x02\\v\" + // 0x00690311: 0x0000020B\n\t\"\\x00O\\x03\\x0f\\x00\\x00\\x02\\f\" + // 0x004F030F: 0x0000020C\n\t\"\\x00o\\x03\\x0f\\x00\\x00\\x02\\r\" + // 0x006F030F: 0x0000020D\n\t\"\\x00O\\x03\\x11\\x00\\x00\\x02\\x0e\" + // 0x004F0311: 0x0000020E\n\t\"\\x00o\\x03\\x11\\x00\\x00\\x02\\x0f\" + // 0x006F0311: 0x0000020F\n\t\"\\x00R\\x03\\x0f\\x00\\x00\\x02\\x10\" + // 0x0052030F: 0x00000210\n\t\"\\x00r\\x03\\x0f\\x00\\x00\\x02\\x11\" + // 0x0072030F: 0x00000211\n\t\"\\x00R\\x03\\x11\\x00\\x00\\x02\\x12\" + // 0x00520311: 0x00000212\n\t\"\\x00r\\x03\\x11\\x00\\x00\\x02\\x13\" + // 0x00720311: 0x00000213\n\t\"\\x00U\\x03\\x0f\\x00\\x00\\x02\\x14\" + // 0x0055030F: 0x00000214\n\t\"\\x00u\\x03\\x0f\\x00\\x00\\x02\\x15\" + // 0x0075030F: 0x00000215\n\t\"\\x00U\\x03\\x11\\x00\\x00\\x02\\x16\" + // 0x00550311: 0x00000216\n\t\"\\x00u\\x03\\x11\\x00\\x00\\x02\\x17\" + // 0x00750311: 0x00000217\n\t\"\\x00S\\x03&\\x00\\x00\\x02\\x18\" + // 0x00530326: 0x00000218\n\t\"\\x00s\\x03&\\x00\\x00\\x02\\x19\" + // 0x00730326: 0x00000219\n\t\"\\x00T\\x03&\\x00\\x00\\x02\\x1a\" + // 0x00540326: 0x0000021A\n\t\"\\x00t\\x03&\\x00\\x00\\x02\\x1b\" + // 0x00740326: 0x0000021B\n\t\"\\x00H\\x03\\f\\x00\\x00\\x02\\x1e\" + // 0x0048030C: 0x0000021E\n\t\"\\x00h\\x03\\f\\x00\\x00\\x02\\x1f\" + // 0x0068030C: 0x0000021F\n\t\"\\x00A\\x03\\a\\x00\\x00\\x02&\" + // 0x00410307: 0x00000226\n\t\"\\x00a\\x03\\a\\x00\\x00\\x02'\" + // 0x00610307: 0x00000227\n\t\"\\x00E\\x03'\\x00\\x00\\x02(\" + // 0x00450327: 0x00000228\n\t\"\\x00e\\x03'\\x00\\x00\\x02)\" + // 0x00650327: 0x00000229\n\t\"\\x00\\xd6\\x03\\x04\\x00\\x00\\x02*\" + // 0x00D60304: 0x0000022A\n\t\"\\x00\\xf6\\x03\\x04\\x00\\x00\\x02+\" + // 0x00F60304: 0x0000022B\n\t\"\\x00\\xd5\\x03\\x04\\x00\\x00\\x02,\" + // 0x00D50304: 0x0000022C\n\t\"\\x00\\xf5\\x03\\x04\\x00\\x00\\x02-\" + // 0x00F50304: 0x0000022D\n\t\"\\x00O\\x03\\a\\x00\\x00\\x02.\" + // 0x004F0307: 0x0000022E\n\t\"\\x00o\\x03\\a\\x00\\x00\\x02/\" + // 0x006F0307: 0x0000022F\n\t\"\\x02.\\x03\\x04\\x00\\x00\\x020\" + // 0x022E0304: 0x00000230\n\t\"\\x02/\\x03\\x04\\x00\\x00\\x021\" + // 0x022F0304: 0x00000231\n\t\"\\x00Y\\x03\\x04\\x00\\x00\\x022\" + // 0x00590304: 0x00000232\n\t\"\\x00y\\x03\\x04\\x00\\x00\\x023\" + // 0x00790304: 0x00000233\n\t\"\\x00\\xa8\\x03\\x01\\x00\\x00\\x03\\x85\" + // 0x00A80301: 0x00000385\n\t\"\\x03\\x91\\x03\\x01\\x00\\x00\\x03\\x86\" + // 0x03910301: 0x00000386\n\t\"\\x03\\x95\\x03\\x01\\x00\\x00\\x03\\x88\" + // 0x03950301: 0x00000388\n\t\"\\x03\\x97\\x03\\x01\\x00\\x00\\x03\\x89\" + // 0x03970301: 0x00000389\n\t\"\\x03\\x99\\x03\\x01\\x00\\x00\\x03\\x8a\" + // 0x03990301: 0x0000038A\n\t\"\\x03\\x9f\\x03\\x01\\x00\\x00\\x03\\x8c\" + // 0x039F0301: 0x0000038C\n\t\"\\x03\\xa5\\x03\\x01\\x00\\x00\\x03\\x8e\" + // 0x03A50301: 0x0000038E\n\t\"\\x03\\xa9\\x03\\x01\\x00\\x00\\x03\\x8f\" + // 0x03A90301: 0x0000038F\n\t\"\\x03\\xca\\x03\\x01\\x00\\x00\\x03\\x90\" + // 0x03CA0301: 0x00000390\n\t\"\\x03\\x99\\x03\\b\\x00\\x00\\x03\\xaa\" + // 0x03990308: 0x000003AA\n\t\"\\x03\\xa5\\x03\\b\\x00\\x00\\x03\\xab\" + // 0x03A50308: 0x000003AB\n\t\"\\x03\\xb1\\x03\\x01\\x00\\x00\\x03\\xac\" + // 0x03B10301: 0x000003AC\n\t\"\\x03\\xb5\\x03\\x01\\x00\\x00\\x03\\xad\" + // 0x03B50301: 0x000003AD\n\t\"\\x03\\xb7\\x03\\x01\\x00\\x00\\x03\\xae\" + // 0x03B70301: 0x000003AE\n\t\"\\x03\\xb9\\x03\\x01\\x00\\x00\\x03\\xaf\" + // 0x03B90301: 0x000003AF\n\t\"\\x03\\xcb\\x03\\x01\\x00\\x00\\x03\\xb0\" + // 0x03CB0301: 0x000003B0\n\t\"\\x03\\xb9\\x03\\b\\x00\\x00\\x03\\xca\" + // 0x03B90308: 0x000003CA\n\t\"\\x03\\xc5\\x03\\b\\x00\\x00\\x03\\xcb\" + // 0x03C50308: 0x000003CB\n\t\"\\x03\\xbf\\x03\\x01\\x00\\x00\\x03\\xcc\" + // 0x03BF0301: 0x000003CC\n\t\"\\x03\\xc5\\x03\\x01\\x00\\x00\\x03\\xcd\" + // 0x03C50301: 0x000003CD\n\t\"\\x03\\xc9\\x03\\x01\\x00\\x00\\x03\\xce\" + // 0x03C90301: 0x000003CE\n\t\"\\x03\\xd2\\x03\\x01\\x00\\x00\\x03\\xd3\" + // 0x03D20301: 0x000003D3\n\t\"\\x03\\xd2\\x03\\b\\x00\\x00\\x03\\xd4\" + // 0x03D20308: 0x000003D4\n\t\"\\x04\\x15\\x03\\x00\\x00\\x00\\x04\\x00\" + // 0x04150300: 0x00000400\n\t\"\\x04\\x15\\x03\\b\\x00\\x00\\x04\\x01\" + // 0x04150308: 0x00000401\n\t\"\\x04\\x13\\x03\\x01\\x00\\x00\\x04\\x03\" + // 0x04130301: 0x00000403\n\t\"\\x04\\x06\\x03\\b\\x00\\x00\\x04\\a\" + // 0x04060308: 0x00000407\n\t\"\\x04\\x1a\\x03\\x01\\x00\\x00\\x04\\f\" + // 0x041A0301: 0x0000040C\n\t\"\\x04\\x18\\x03\\x00\\x00\\x00\\x04\\r\" + // 0x04180300: 0x0000040D\n\t\"\\x04#\\x03\\x06\\x00\\x00\\x04\\x0e\" + // 0x04230306: 0x0000040E\n\t\"\\x04\\x18\\x03\\x06\\x00\\x00\\x04\\x19\" + // 0x04180306: 0x00000419\n\t\"\\x048\\x03\\x06\\x00\\x00\\x049\" + // 0x04380306: 0x00000439\n\t\"\\x045\\x03\\x00\\x00\\x00\\x04P\" + // 0x04350300: 0x00000450\n\t\"\\x045\\x03\\b\\x00\\x00\\x04Q\" + // 0x04350308: 0x00000451\n\t\"\\x043\\x03\\x01\\x00\\x00\\x04S\" + // 0x04330301: 0x00000453\n\t\"\\x04V\\x03\\b\\x00\\x00\\x04W\" + // 0x04560308: 0x00000457\n\t\"\\x04:\\x03\\x01\\x00\\x00\\x04\\\\\" + // 0x043A0301: 0x0000045C\n\t\"\\x048\\x03\\x00\\x00\\x00\\x04]\" + // 0x04380300: 0x0000045D\n\t\"\\x04C\\x03\\x06\\x00\\x00\\x04^\" + // 0x04430306: 0x0000045E\n\t\"\\x04t\\x03\\x0f\\x00\\x00\\x04v\" + // 0x0474030F: 0x00000476\n\t\"\\x04u\\x03\\x0f\\x00\\x00\\x04w\" + // 0x0475030F: 0x00000477\n\t\"\\x04\\x16\\x03\\x06\\x00\\x00\\x04\\xc1\" + // 0x04160306: 0x000004C1\n\t\"\\x046\\x03\\x06\\x00\\x00\\x04\\xc2\" + // 0x04360306: 0x000004C2\n\t\"\\x04\\x10\\x03\\x06\\x00\\x00\\x04\\xd0\" + // 0x04100306: 0x000004D0\n\t\"\\x040\\x03\\x06\\x00\\x00\\x04\\xd1\" + // 0x04300306: 0x000004D1\n\t\"\\x04\\x10\\x03\\b\\x00\\x00\\x04\\xd2\" + // 0x04100308: 0x000004D2\n\t\"\\x040\\x03\\b\\x00\\x00\\x04\\xd3\" + // 0x04300308: 0x000004D3\n\t\"\\x04\\x15\\x03\\x06\\x00\\x00\\x04\\xd6\" + // 0x04150306: 0x000004D6\n\t\"\\x045\\x03\\x06\\x00\\x00\\x04\\xd7\" + // 0x04350306: 0x000004D7\n\t\"\\x04\\xd8\\x03\\b\\x00\\x00\\x04\\xda\" + // 0x04D80308: 0x000004DA\n\t\"\\x04\\xd9\\x03\\b\\x00\\x00\\x04\\xdb\" + // 0x04D90308: 0x000004DB\n\t\"\\x04\\x16\\x03\\b\\x00\\x00\\x04\\xdc\" + // 0x04160308: 0x000004DC\n\t\"\\x046\\x03\\b\\x00\\x00\\x04\\xdd\" + // 0x04360308: 0x000004DD\n\t\"\\x04\\x17\\x03\\b\\x00\\x00\\x04\\xde\" + // 0x04170308: 0x000004DE\n\t\"\\x047\\x03\\b\\x00\\x00\\x04\\xdf\" + // 0x04370308: 0x000004DF\n\t\"\\x04\\x18\\x03\\x04\\x00\\x00\\x04\\xe2\" + // 0x04180304: 0x000004E2\n\t\"\\x048\\x03\\x04\\x00\\x00\\x04\\xe3\" + // 0x04380304: 0x000004E3\n\t\"\\x04\\x18\\x03\\b\\x00\\x00\\x04\\xe4\" + // 0x04180308: 0x000004E4\n\t\"\\x048\\x03\\b\\x00\\x00\\x04\\xe5\" + // 0x04380308: 0x000004E5\n\t\"\\x04\\x1e\\x03\\b\\x00\\x00\\x04\\xe6\" + // 0x041E0308: 0x000004E6\n\t\"\\x04>\\x03\\b\\x00\\x00\\x04\\xe7\" + // 0x043E0308: 0x000004E7\n\t\"\\x04\\xe8\\x03\\b\\x00\\x00\\x04\\xea\" + // 0x04E80308: 0x000004EA\n\t\"\\x04\\xe9\\x03\\b\\x00\\x00\\x04\\xeb\" + // 0x04E90308: 0x000004EB\n\t\"\\x04-\\x03\\b\\x00\\x00\\x04\\xec\" + // 0x042D0308: 0x000004EC\n\t\"\\x04M\\x03\\b\\x00\\x00\\x04\\xed\" + // 0x044D0308: 0x000004ED\n\t\"\\x04#\\x03\\x04\\x00\\x00\\x04\\xee\" + // 0x04230304: 0x000004EE\n\t\"\\x04C\\x03\\x04\\x00\\x00\\x04\\xef\" + // 0x04430304: 0x000004EF\n\t\"\\x04#\\x03\\b\\x00\\x00\\x04\\xf0\" + // 0x04230308: 0x000004F0\n\t\"\\x04C\\x03\\b\\x00\\x00\\x04\\xf1\" + // 0x04430308: 0x000004F1\n\t\"\\x04#\\x03\\v\\x00\\x00\\x04\\xf2\" + // 0x0423030B: 0x000004F2\n\t\"\\x04C\\x03\\v\\x00\\x00\\x04\\xf3\" + // 0x0443030B: 0x000004F3\n\t\"\\x04'\\x03\\b\\x00\\x00\\x04\\xf4\" + // 0x04270308: 0x000004F4\n\t\"\\x04G\\x03\\b\\x00\\x00\\x04\\xf5\" + // 0x04470308: 0x000004F5\n\t\"\\x04+\\x03\\b\\x00\\x00\\x04\\xf8\" + // 0x042B0308: 0x000004F8\n\t\"\\x04K\\x03\\b\\x00\\x00\\x04\\xf9\" + // 0x044B0308: 0x000004F9\n\t\"\\x06'\\x06S\\x00\\x00\\x06\\\"\" + // 0x06270653: 0x00000622\n\t\"\\x06'\\x06T\\x00\\x00\\x06#\" + // 0x06270654: 0x00000623\n\t\"\\x06H\\x06T\\x00\\x00\\x06$\" + // 0x06480654: 0x00000624\n\t\"\\x06'\\x06U\\x00\\x00\\x06%\" + // 0x06270655: 0x00000625\n\t\"\\x06J\\x06T\\x00\\x00\\x06&\" + // 0x064A0654: 0x00000626\n\t\"\\x06\\xd5\\x06T\\x00\\x00\\x06\\xc0\" + // 0x06D50654: 0x000006C0\n\t\"\\x06\\xc1\\x06T\\x00\\x00\\x06\\xc2\" + // 0x06C10654: 0x000006C2\n\t\"\\x06\\xd2\\x06T\\x00\\x00\\x06\\xd3\" + // 0x06D20654: 0x000006D3\n\t\"\\t(\\t<\\x00\\x00\\t)\" + // 0x0928093C: 0x00000929\n\t\"\\t0\\t<\\x00\\x00\\t1\" + // 0x0930093C: 0x00000931\n\t\"\\t3\\t<\\x00\\x00\\t4\" + // 0x0933093C: 0x00000934\n\t\"\\t\\xc7\\t\\xbe\\x00\\x00\\t\\xcb\" + // 0x09C709BE: 0x000009CB\n\t\"\\t\\xc7\\t\\xd7\\x00\\x00\\t\\xcc\" + // 0x09C709D7: 0x000009CC\n\t\"\\vG\\vV\\x00\\x00\\vH\" + // 0x0B470B56: 0x00000B48\n\t\"\\vG\\v>\\x00\\x00\\vK\" + // 0x0B470B3E: 0x00000B4B\n\t\"\\vG\\vW\\x00\\x00\\vL\" + // 0x0B470B57: 0x00000B4C\n\t\"\\v\\x92\\v\\xd7\\x00\\x00\\v\\x94\" + // 0x0B920BD7: 0x00000B94\n\t\"\\v\\xc6\\v\\xbe\\x00\\x00\\v\\xca\" + // 0x0BC60BBE: 0x00000BCA\n\t\"\\v\\xc7\\v\\xbe\\x00\\x00\\v\\xcb\" + // 0x0BC70BBE: 0x00000BCB\n\t\"\\v\\xc6\\v\\xd7\\x00\\x00\\v\\xcc\" + // 0x0BC60BD7: 0x00000BCC\n\t\"\\fF\\fV\\x00\\x00\\fH\" + // 0x0C460C56: 0x00000C48\n\t\"\\f\\xbf\\f\\xd5\\x00\\x00\\f\\xc0\" + // 0x0CBF0CD5: 0x00000CC0\n\t\"\\f\\xc6\\f\\xd5\\x00\\x00\\f\\xc7\" + // 0x0CC60CD5: 0x00000CC7\n\t\"\\f\\xc6\\f\\xd6\\x00\\x00\\f\\xc8\" + // 0x0CC60CD6: 0x00000CC8\n\t\"\\f\\xc6\\f\\xc2\\x00\\x00\\f\\xca\" + // 0x0CC60CC2: 0x00000CCA\n\t\"\\f\\xca\\f\\xd5\\x00\\x00\\f\\xcb\" + // 0x0CCA0CD5: 0x00000CCB\n\t\"\\rF\\r>\\x00\\x00\\rJ\" + // 0x0D460D3E: 0x00000D4A\n\t\"\\rG\\r>\\x00\\x00\\rK\" + // 0x0D470D3E: 0x00000D4B\n\t\"\\rF\\rW\\x00\\x00\\rL\" + // 0x0D460D57: 0x00000D4C\n\t\"\\r\\xd9\\r\\xca\\x00\\x00\\r\\xda\" + // 0x0DD90DCA: 0x00000DDA\n\t\"\\r\\xd9\\r\\xcf\\x00\\x00\\r\\xdc\" + // 0x0DD90DCF: 0x00000DDC\n\t\"\\r\\xdc\\r\\xca\\x00\\x00\\r\\xdd\" + // 0x0DDC0DCA: 0x00000DDD\n\t\"\\r\\xd9\\r\\xdf\\x00\\x00\\r\\xde\" + // 0x0DD90DDF: 0x00000DDE\n\t\"\\x10%\\x10.\\x00\\x00\\x10&\" + // 0x1025102E: 0x00001026\n\t\"\\x1b\\x05\\x1b5\\x00\\x00\\x1b\\x06\" + // 0x1B051B35: 0x00001B06\n\t\"\\x1b\\a\\x1b5\\x00\\x00\\x1b\\b\" + // 0x1B071B35: 0x00001B08\n\t\"\\x1b\\t\\x1b5\\x00\\x00\\x1b\\n\" + // 0x1B091B35: 0x00001B0A\n\t\"\\x1b\\v\\x1b5\\x00\\x00\\x1b\\f\" + // 0x1B0B1B35: 0x00001B0C\n\t\"\\x1b\\r\\x1b5\\x00\\x00\\x1b\\x0e\" + // 0x1B0D1B35: 0x00001B0E\n\t\"\\x1b\\x11\\x1b5\\x00\\x00\\x1b\\x12\" + // 0x1B111B35: 0x00001B12\n\t\"\\x1b:\\x1b5\\x00\\x00\\x1b;\" + // 0x1B3A1B35: 0x00001B3B\n\t\"\\x1b<\\x1b5\\x00\\x00\\x1b=\" + // 0x1B3C1B35: 0x00001B3D\n\t\"\\x1b>\\x1b5\\x00\\x00\\x1b@\" + // 0x1B3E1B35: 0x00001B40\n\t\"\\x1b?\\x1b5\\x00\\x00\\x1bA\" + // 0x1B3F1B35: 0x00001B41\n\t\"\\x1bB\\x1b5\\x00\\x00\\x1bC\" + // 0x1B421B35: 0x00001B43\n\t\"\\x00A\\x03%\\x00\\x00\\x1e\\x00\" + // 0x00410325: 0x00001E00\n\t\"\\x00a\\x03%\\x00\\x00\\x1e\\x01\" + // 0x00610325: 0x00001E01\n\t\"\\x00B\\x03\\a\\x00\\x00\\x1e\\x02\" + // 0x00420307: 0x00001E02\n\t\"\\x00b\\x03\\a\\x00\\x00\\x1e\\x03\" + // 0x00620307: 0x00001E03\n\t\"\\x00B\\x03#\\x00\\x00\\x1e\\x04\" + // 0x00420323: 0x00001E04\n\t\"\\x00b\\x03#\\x00\\x00\\x1e\\x05\" + // 0x00620323: 0x00001E05\n\t\"\\x00B\\x031\\x00\\x00\\x1e\\x06\" + // 0x00420331: 0x00001E06\n\t\"\\x00b\\x031\\x00\\x00\\x1e\\a\" + // 0x00620331: 0x00001E07\n\t\"\\x00\\xc7\\x03\\x01\\x00\\x00\\x1e\\b\" + // 0x00C70301: 0x00001E08\n\t\"\\x00\\xe7\\x03\\x01\\x00\\x00\\x1e\\t\" + // 0x00E70301: 0x00001E09\n\t\"\\x00D\\x03\\a\\x00\\x00\\x1e\\n\" + // 0x00440307: 0x00001E0A\n\t\"\\x00d\\x03\\a\\x00\\x00\\x1e\\v\" + // 0x00640307: 0x00001E0B\n\t\"\\x00D\\x03#\\x00\\x00\\x1e\\f\" + // 0x00440323: 0x00001E0C\n\t\"\\x00d\\x03#\\x00\\x00\\x1e\\r\" + // 0x00640323: 0x00001E0D\n\t\"\\x00D\\x031\\x00\\x00\\x1e\\x0e\" + // 0x00440331: 0x00001E0E\n\t\"\\x00d\\x031\\x00\\x00\\x1e\\x0f\" + // 0x00640331: 0x00001E0F\n\t\"\\x00D\\x03'\\x00\\x00\\x1e\\x10\" + // 0x00440327: 0x00001E10\n\t\"\\x00d\\x03'\\x00\\x00\\x1e\\x11\" + // 0x00640327: 0x00001E11\n\t\"\\x00D\\x03-\\x00\\x00\\x1e\\x12\" + // 0x0044032D: 0x00001E12\n\t\"\\x00d\\x03-\\x00\\x00\\x1e\\x13\" + // 0x0064032D: 0x00001E13\n\t\"\\x01\\x12\\x03\\x00\\x00\\x00\\x1e\\x14\" + // 0x01120300: 0x00001E14\n\t\"\\x01\\x13\\x03\\x00\\x00\\x00\\x1e\\x15\" + // 0x01130300: 0x00001E15\n\t\"\\x01\\x12\\x03\\x01\\x00\\x00\\x1e\\x16\" + // 0x01120301: 0x00001E16\n\t\"\\x01\\x13\\x03\\x01\\x00\\x00\\x1e\\x17\" + // 0x01130301: 0x00001E17\n\t\"\\x00E\\x03-\\x00\\x00\\x1e\\x18\" + // 0x0045032D: 0x00001E18\n\t\"\\x00e\\x03-\\x00\\x00\\x1e\\x19\" + // 0x0065032D: 0x00001E19\n\t\"\\x00E\\x030\\x00\\x00\\x1e\\x1a\" + // 0x00450330: 0x00001E1A\n\t\"\\x00e\\x030\\x00\\x00\\x1e\\x1b\" + // 0x00650330: 0x00001E1B\n\t\"\\x02(\\x03\\x06\\x00\\x00\\x1e\\x1c\" + // 0x02280306: 0x00001E1C\n\t\"\\x02)\\x03\\x06\\x00\\x00\\x1e\\x1d\" + // 0x02290306: 0x00001E1D\n\t\"\\x00F\\x03\\a\\x00\\x00\\x1e\\x1e\" + // 0x00460307: 0x00001E1E\n\t\"\\x00f\\x03\\a\\x00\\x00\\x1e\\x1f\" + // 0x00660307: 0x00001E1F\n\t\"\\x00G\\x03\\x04\\x00\\x00\\x1e \" + // 0x00470304: 0x00001E20\n\t\"\\x00g\\x03\\x04\\x00\\x00\\x1e!\" + // 0x00670304: 0x00001E21\n\t\"\\x00H\\x03\\a\\x00\\x00\\x1e\\\"\" + // 0x00480307: 0x00001E22\n\t\"\\x00h\\x03\\a\\x00\\x00\\x1e#\" + // 0x00680307: 0x00001E23\n\t\"\\x00H\\x03#\\x00\\x00\\x1e$\" + // 0x00480323: 0x00001E24\n\t\"\\x00h\\x03#\\x00\\x00\\x1e%\" + // 0x00680323: 0x00001E25\n\t\"\\x00H\\x03\\b\\x00\\x00\\x1e&\" + // 0x00480308: 0x00001E26\n\t\"\\x00h\\x03\\b\\x00\\x00\\x1e'\" + // 0x00680308: 0x00001E27\n\t\"\\x00H\\x03'\\x00\\x00\\x1e(\" + // 0x00480327: 0x00001E28\n\t\"\\x00h\\x03'\\x00\\x00\\x1e)\" + // 0x00680327: 0x00001E29\n\t\"\\x00H\\x03.\\x00\\x00\\x1e*\" + // 0x0048032E: 0x00001E2A\n\t\"\\x00h\\x03.\\x00\\x00\\x1e+\" + // 0x0068032E: 0x00001E2B\n\t\"\\x00I\\x030\\x00\\x00\\x1e,\" + // 0x00490330: 0x00001E2C\n\t\"\\x00i\\x030\\x00\\x00\\x1e-\" + // 0x00690330: 0x00001E2D\n\t\"\\x00\\xcf\\x03\\x01\\x00\\x00\\x1e.\" + // 0x00CF0301: 0x00001E2E\n\t\"\\x00\\xef\\x03\\x01\\x00\\x00\\x1e/\" + // 0x00EF0301: 0x00001E2F\n\t\"\\x00K\\x03\\x01\\x00\\x00\\x1e0\" + // 0x004B0301: 0x00001E30\n\t\"\\x00k\\x03\\x01\\x00\\x00\\x1e1\" + // 0x006B0301: 0x00001E31\n\t\"\\x00K\\x03#\\x00\\x00\\x1e2\" + // 0x004B0323: 0x00001E32\n\t\"\\x00k\\x03#\\x00\\x00\\x1e3\" + // 0x006B0323: 0x00001E33\n\t\"\\x00K\\x031\\x00\\x00\\x1e4\" + // 0x004B0331: 0x00001E34\n\t\"\\x00k\\x031\\x00\\x00\\x1e5\" + // 0x006B0331: 0x00001E35\n\t\"\\x00L\\x03#\\x00\\x00\\x1e6\" + // 0x004C0323: 0x00001E36\n\t\"\\x00l\\x03#\\x00\\x00\\x1e7\" + // 0x006C0323: 0x00001E37\n\t\"\\x1e6\\x03\\x04\\x00\\x00\\x1e8\" + // 0x1E360304: 0x00001E38\n\t\"\\x1e7\\x03\\x04\\x00\\x00\\x1e9\" + // 0x1E370304: 0x00001E39\n\t\"\\x00L\\x031\\x00\\x00\\x1e:\" + // 0x004C0331: 0x00001E3A\n\t\"\\x00l\\x031\\x00\\x00\\x1e;\" + // 0x006C0331: 0x00001E3B\n\t\"\\x00L\\x03-\\x00\\x00\\x1e<\" + // 0x004C032D: 0x00001E3C\n\t\"\\x00l\\x03-\\x00\\x00\\x1e=\" + // 0x006C032D: 0x00001E3D\n\t\"\\x00M\\x03\\x01\\x00\\x00\\x1e>\" + // 0x004D0301: 0x00001E3E\n\t\"\\x00m\\x03\\x01\\x00\\x00\\x1e?\" + // 0x006D0301: 0x00001E3F\n\t\"\\x00M\\x03\\a\\x00\\x00\\x1e@\" + // 0x004D0307: 0x00001E40\n\t\"\\x00m\\x03\\a\\x00\\x00\\x1eA\" + // 0x006D0307: 0x00001E41\n\t\"\\x00M\\x03#\\x00\\x00\\x1eB\" + // 0x004D0323: 0x00001E42\n\t\"\\x00m\\x03#\\x00\\x00\\x1eC\" + // 0x006D0323: 0x00001E43\n\t\"\\x00N\\x03\\a\\x00\\x00\\x1eD\" + // 0x004E0307: 0x00001E44\n\t\"\\x00n\\x03\\a\\x00\\x00\\x1eE\" + // 0x006E0307: 0x00001E45\n\t\"\\x00N\\x03#\\x00\\x00\\x1eF\" + // 0x004E0323: 0x00001E46\n\t\"\\x00n\\x03#\\x00\\x00\\x1eG\" + // 0x006E0323: 0x00001E47\n\t\"\\x00N\\x031\\x00\\x00\\x1eH\" + // 0x004E0331: 0x00001E48\n\t\"\\x00n\\x031\\x00\\x00\\x1eI\" + // 0x006E0331: 0x00001E49\n\t\"\\x00N\\x03-\\x00\\x00\\x1eJ\" + // 0x004E032D: 0x00001E4A\n\t\"\\x00n\\x03-\\x00\\x00\\x1eK\" + // 0x006E032D: 0x00001E4B\n\t\"\\x00\\xd5\\x03\\x01\\x00\\x00\\x1eL\" + // 0x00D50301: 0x00001E4C\n\t\"\\x00\\xf5\\x03\\x01\\x00\\x00\\x1eM\" + // 0x00F50301: 0x00001E4D\n\t\"\\x00\\xd5\\x03\\b\\x00\\x00\\x1eN\" + // 0x00D50308: 0x00001E4E\n\t\"\\x00\\xf5\\x03\\b\\x00\\x00\\x1eO\" + // 0x00F50308: 0x00001E4F\n\t\"\\x01L\\x03\\x00\\x00\\x00\\x1eP\" + // 0x014C0300: 0x00001E50\n\t\"\\x01M\\x03\\x00\\x00\\x00\\x1eQ\" + // 0x014D0300: 0x00001E51\n\t\"\\x01L\\x03\\x01\\x00\\x00\\x1eR\" + // 0x014C0301: 0x00001E52\n\t\"\\x01M\\x03\\x01\\x00\\x00\\x1eS\" + // 0x014D0301: 0x00001E53\n\t\"\\x00P\\x03\\x01\\x00\\x00\\x1eT\" + // 0x00500301: 0x00001E54\n\t\"\\x00p\\x03\\x01\\x00\\x00\\x1eU\" + // 0x00700301: 0x00001E55\n\t\"\\x00P\\x03\\a\\x00\\x00\\x1eV\" + // 0x00500307: 0x00001E56\n\t\"\\x00p\\x03\\a\\x00\\x00\\x1eW\" + // 0x00700307: 0x00001E57\n\t\"\\x00R\\x03\\a\\x00\\x00\\x1eX\" + // 0x00520307: 0x00001E58\n\t\"\\x00r\\x03\\a\\x00\\x00\\x1eY\" + // 0x00720307: 0x00001E59\n\t\"\\x00R\\x03#\\x00\\x00\\x1eZ\" + // 0x00520323: 0x00001E5A\n\t\"\\x00r\\x03#\\x00\\x00\\x1e[\" + // 0x00720323: 0x00001E5B\n\t\"\\x1eZ\\x03\\x04\\x00\\x00\\x1e\\\\\" + // 0x1E5A0304: 0x00001E5C\n\t\"\\x1e[\\x03\\x04\\x00\\x00\\x1e]\" + // 0x1E5B0304: 0x00001E5D\n\t\"\\x00R\\x031\\x00\\x00\\x1e^\" + // 0x00520331: 0x00001E5E\n\t\"\\x00r\\x031\\x00\\x00\\x1e_\" + // 0x00720331: 0x00001E5F\n\t\"\\x00S\\x03\\a\\x00\\x00\\x1e`\" + // 0x00530307: 0x00001E60\n\t\"\\x00s\\x03\\a\\x00\\x00\\x1ea\" + // 0x00730307: 0x00001E61\n\t\"\\x00S\\x03#\\x00\\x00\\x1eb\" + // 0x00530323: 0x00001E62\n\t\"\\x00s\\x03#\\x00\\x00\\x1ec\" + // 0x00730323: 0x00001E63\n\t\"\\x01Z\\x03\\a\\x00\\x00\\x1ed\" + // 0x015A0307: 0x00001E64\n\t\"\\x01[\\x03\\a\\x00\\x00\\x1ee\" + // 0x015B0307: 0x00001E65\n\t\"\\x01`\\x03\\a\\x00\\x00\\x1ef\" + // 0x01600307: 0x00001E66\n\t\"\\x01a\\x03\\a\\x00\\x00\\x1eg\" + // 0x01610307: 0x00001E67\n\t\"\\x1eb\\x03\\a\\x00\\x00\\x1eh\" + // 0x1E620307: 0x00001E68\n\t\"\\x1ec\\x03\\a\\x00\\x00\\x1ei\" + // 0x1E630307: 0x00001E69\n\t\"\\x00T\\x03\\a\\x00\\x00\\x1ej\" + // 0x00540307: 0x00001E6A\n\t\"\\x00t\\x03\\a\\x00\\x00\\x1ek\" + // 0x00740307: 0x00001E6B\n\t\"\\x00T\\x03#\\x00\\x00\\x1el\" + // 0x00540323: 0x00001E6C\n\t\"\\x00t\\x03#\\x00\\x00\\x1em\" + // 0x00740323: 0x00001E6D\n\t\"\\x00T\\x031\\x00\\x00\\x1en\" + // 0x00540331: 0x00001E6E\n\t\"\\x00t\\x031\\x00\\x00\\x1eo\" + // 0x00740331: 0x00001E6F\n\t\"\\x00T\\x03-\\x00\\x00\\x1ep\" + // 0x0054032D: 0x00001E70\n\t\"\\x00t\\x03-\\x00\\x00\\x1eq\" + // 0x0074032D: 0x00001E71\n\t\"\\x00U\\x03$\\x00\\x00\\x1er\" + // 0x00550324: 0x00001E72\n\t\"\\x00u\\x03$\\x00\\x00\\x1es\" + // 0x00750324: 0x00001E73\n\t\"\\x00U\\x030\\x00\\x00\\x1et\" + // 0x00550330: 0x00001E74\n\t\"\\x00u\\x030\\x00\\x00\\x1eu\" + // 0x00750330: 0x00001E75\n\t\"\\x00U\\x03-\\x00\\x00\\x1ev\" + // 0x0055032D: 0x00001E76\n\t\"\\x00u\\x03-\\x00\\x00\\x1ew\" + // 0x0075032D: 0x00001E77\n\t\"\\x01h\\x03\\x01\\x00\\x00\\x1ex\" + // 0x01680301: 0x00001E78\n\t\"\\x01i\\x03\\x01\\x00\\x00\\x1ey\" + // 0x01690301: 0x00001E79\n\t\"\\x01j\\x03\\b\\x00\\x00\\x1ez\" + // 0x016A0308: 0x00001E7A\n\t\"\\x01k\\x03\\b\\x00\\x00\\x1e{\" + // 0x016B0308: 0x00001E7B\n\t\"\\x00V\\x03\\x03\\x00\\x00\\x1e|\" + // 0x00560303: 0x00001E7C\n\t\"\\x00v\\x03\\x03\\x00\\x00\\x1e}\" + // 0x00760303: 0x00001E7D\n\t\"\\x00V\\x03#\\x00\\x00\\x1e~\" + // 0x00560323: 0x00001E7E\n\t\"\\x00v\\x03#\\x00\\x00\\x1e\\u007f\" + // 0x00760323: 0x00001E7F\n\t\"\\x00W\\x03\\x00\\x00\\x00\\x1e\\x80\" + // 0x00570300: 0x00001E80\n\t\"\\x00w\\x03\\x00\\x00\\x00\\x1e\\x81\" + // 0x00770300: 0x00001E81\n\t\"\\x00W\\x03\\x01\\x00\\x00\\x1e\\x82\" + // 0x00570301: 0x00001E82\n\t\"\\x00w\\x03\\x01\\x00\\x00\\x1e\\x83\" + // 0x00770301: 0x00001E83\n\t\"\\x00W\\x03\\b\\x00\\x00\\x1e\\x84\" + // 0x00570308: 0x00001E84\n\t\"\\x00w\\x03\\b\\x00\\x00\\x1e\\x85\" + // 0x00770308: 0x00001E85\n\t\"\\x00W\\x03\\a\\x00\\x00\\x1e\\x86\" + // 0x00570307: 0x00001E86\n\t\"\\x00w\\x03\\a\\x00\\x00\\x1e\\x87\" + // 0x00770307: 0x00001E87\n\t\"\\x00W\\x03#\\x00\\x00\\x1e\\x88\" + // 0x00570323: 0x00001E88\n\t\"\\x00w\\x03#\\x00\\x00\\x1e\\x89\" + // 0x00770323: 0x00001E89\n\t\"\\x00X\\x03\\a\\x00\\x00\\x1e\\x8a\" + // 0x00580307: 0x00001E8A\n\t\"\\x00x\\x03\\a\\x00\\x00\\x1e\\x8b\" + // 0x00780307: 0x00001E8B\n\t\"\\x00X\\x03\\b\\x00\\x00\\x1e\\x8c\" + // 0x00580308: 0x00001E8C\n\t\"\\x00x\\x03\\b\\x00\\x00\\x1e\\x8d\" + // 0x00780308: 0x00001E8D\n\t\"\\x00Y\\x03\\a\\x00\\x00\\x1e\\x8e\" + // 0x00590307: 0x00001E8E\n\t\"\\x00y\\x03\\a\\x00\\x00\\x1e\\x8f\" + // 0x00790307: 0x00001E8F\n\t\"\\x00Z\\x03\\x02\\x00\\x00\\x1e\\x90\" + // 0x005A0302: 0x00001E90\n\t\"\\x00z\\x03\\x02\\x00\\x00\\x1e\\x91\" + // 0x007A0302: 0x00001E91\n\t\"\\x00Z\\x03#\\x00\\x00\\x1e\\x92\" + // 0x005A0323: 0x00001E92\n\t\"\\x00z\\x03#\\x00\\x00\\x1e\\x93\" + // 0x007A0323: 0x00001E93\n\t\"\\x00Z\\x031\\x00\\x00\\x1e\\x94\" + // 0x005A0331: 0x00001E94\n\t\"\\x00z\\x031\\x00\\x00\\x1e\\x95\" + // 0x007A0331: 0x00001E95\n\t\"\\x00h\\x031\\x00\\x00\\x1e\\x96\" + // 0x00680331: 0x00001E96\n\t\"\\x00t\\x03\\b\\x00\\x00\\x1e\\x97\" + // 0x00740308: 0x00001E97\n\t\"\\x00w\\x03\\n\\x00\\x00\\x1e\\x98\" + // 0x0077030A: 0x00001E98\n\t\"\\x00y\\x03\\n\\x00\\x00\\x1e\\x99\" + // 0x0079030A: 0x00001E99\n\t\"\\x01\\u007f\\x03\\a\\x00\\x00\\x1e\\x9b\" + // 0x017F0307: 0x00001E9B\n\t\"\\x00A\\x03#\\x00\\x00\\x1e\\xa0\" + // 0x00410323: 0x00001EA0\n\t\"\\x00a\\x03#\\x00\\x00\\x1e\\xa1\" + // 0x00610323: 0x00001EA1\n\t\"\\x00A\\x03\\t\\x00\\x00\\x1e\\xa2\" + // 0x00410309: 0x00001EA2\n\t\"\\x00a\\x03\\t\\x00\\x00\\x1e\\xa3\" + // 0x00610309: 0x00001EA3\n\t\"\\x00\\xc2\\x03\\x01\\x00\\x00\\x1e\\xa4\" + // 0x00C20301: 0x00001EA4\n\t\"\\x00\\xe2\\x03\\x01\\x00\\x00\\x1e\\xa5\" + // 0x00E20301: 0x00001EA5\n\t\"\\x00\\xc2\\x03\\x00\\x00\\x00\\x1e\\xa6\" + // 0x00C20300: 0x00001EA6\n\t\"\\x00\\xe2\\x03\\x00\\x00\\x00\\x1e\\xa7\" + // 0x00E20300: 0x00001EA7\n\t\"\\x00\\xc2\\x03\\t\\x00\\x00\\x1e\\xa8\" + // 0x00C20309: 0x00001EA8\n\t\"\\x00\\xe2\\x03\\t\\x00\\x00\\x1e\\xa9\" + // 0x00E20309: 0x00001EA9\n\t\"\\x00\\xc2\\x03\\x03\\x00\\x00\\x1e\\xaa\" + // 0x00C20303: 0x00001EAA\n\t\"\\x00\\xe2\\x03\\x03\\x00\\x00\\x1e\\xab\" + // 0x00E20303: 0x00001EAB\n\t\"\\x1e\\xa0\\x03\\x02\\x00\\x00\\x1e\\xac\" + // 0x1EA00302: 0x00001EAC\n\t\"\\x1e\\xa1\\x03\\x02\\x00\\x00\\x1e\\xad\" + // 0x1EA10302: 0x00001EAD\n\t\"\\x01\\x02\\x03\\x01\\x00\\x00\\x1e\\xae\" + // 0x01020301: 0x00001EAE\n\t\"\\x01\\x03\\x03\\x01\\x00\\x00\\x1e\\xaf\" + // 0x01030301: 0x00001EAF\n\t\"\\x01\\x02\\x03\\x00\\x00\\x00\\x1e\\xb0\" + // 0x01020300: 0x00001EB0\n\t\"\\x01\\x03\\x03\\x00\\x00\\x00\\x1e\\xb1\" + // 0x01030300: 0x00001EB1\n\t\"\\x01\\x02\\x03\\t\\x00\\x00\\x1e\\xb2\" + // 0x01020309: 0x00001EB2\n\t\"\\x01\\x03\\x03\\t\\x00\\x00\\x1e\\xb3\" + // 0x01030309: 0x00001EB3\n\t\"\\x01\\x02\\x03\\x03\\x00\\x00\\x1e\\xb4\" + // 0x01020303: 0x00001EB4\n\t\"\\x01\\x03\\x03\\x03\\x00\\x00\\x1e\\xb5\" + // 0x01030303: 0x00001EB5\n\t\"\\x1e\\xa0\\x03\\x06\\x00\\x00\\x1e\\xb6\" + // 0x1EA00306: 0x00001EB6\n\t\"\\x1e\\xa1\\x03\\x06\\x00\\x00\\x1e\\xb7\" + // 0x1EA10306: 0x00001EB7\n\t\"\\x00E\\x03#\\x00\\x00\\x1e\\xb8\" + // 0x00450323: 0x00001EB8\n\t\"\\x00e\\x03#\\x00\\x00\\x1e\\xb9\" + // 0x00650323: 0x00001EB9\n\t\"\\x00E\\x03\\t\\x00\\x00\\x1e\\xba\" + // 0x00450309: 0x00001EBA\n\t\"\\x00e\\x03\\t\\x00\\x00\\x1e\\xbb\" + // 0x00650309: 0x00001EBB\n\t\"\\x00E\\x03\\x03\\x00\\x00\\x1e\\xbc\" + // 0x00450303: 0x00001EBC\n\t\"\\x00e\\x03\\x03\\x00\\x00\\x1e\\xbd\" + // 0x00650303: 0x00001EBD\n\t\"\\x00\\xca\\x03\\x01\\x00\\x00\\x1e\\xbe\" + // 0x00CA0301: 0x00001EBE\n\t\"\\x00\\xea\\x03\\x01\\x00\\x00\\x1e\\xbf\" + // 0x00EA0301: 0x00001EBF\n\t\"\\x00\\xca\\x03\\x00\\x00\\x00\\x1e\\xc0\" + // 0x00CA0300: 0x00001EC0\n\t\"\\x00\\xea\\x03\\x00\\x00\\x00\\x1e\\xc1\" + // 0x00EA0300: 0x00001EC1\n\t\"\\x00\\xca\\x03\\t\\x00\\x00\\x1e\\xc2\" + // 0x00CA0309: 0x00001EC2\n\t\"\\x00\\xea\\x03\\t\\x00\\x00\\x1e\\xc3\" + // 0x00EA0309: 0x00001EC3\n\t\"\\x00\\xca\\x03\\x03\\x00\\x00\\x1e\\xc4\" + // 0x00CA0303: 0x00001EC4\n\t\"\\x00\\xea\\x03\\x03\\x00\\x00\\x1e\\xc5\" + // 0x00EA0303: 0x00001EC5\n\t\"\\x1e\\xb8\\x03\\x02\\x00\\x00\\x1e\\xc6\" + // 0x1EB80302: 0x00001EC6\n\t\"\\x1e\\xb9\\x03\\x02\\x00\\x00\\x1e\\xc7\" + // 0x1EB90302: 0x00001EC7\n\t\"\\x00I\\x03\\t\\x00\\x00\\x1e\\xc8\" + // 0x00490309: 0x00001EC8\n\t\"\\x00i\\x03\\t\\x00\\x00\\x1e\\xc9\" + // 0x00690309: 0x00001EC9\n\t\"\\x00I\\x03#\\x00\\x00\\x1e\\xca\" + // 0x00490323: 0x00001ECA\n\t\"\\x00i\\x03#\\x00\\x00\\x1e\\xcb\" + // 0x00690323: 0x00001ECB\n\t\"\\x00O\\x03#\\x00\\x00\\x1e\\xcc\" + // 0x004F0323: 0x00001ECC\n\t\"\\x00o\\x03#\\x00\\x00\\x1e\\xcd\" + // 0x006F0323: 0x00001ECD\n\t\"\\x00O\\x03\\t\\x00\\x00\\x1e\\xce\" + // 0x004F0309: 0x00001ECE\n\t\"\\x00o\\x03\\t\\x00\\x00\\x1e\\xcf\" + // 0x006F0309: 0x00001ECF\n\t\"\\x00\\xd4\\x03\\x01\\x00\\x00\\x1e\\xd0\" + // 0x00D40301: 0x00001ED0\n\t\"\\x00\\xf4\\x03\\x01\\x00\\x00\\x1e\\xd1\" + // 0x00F40301: 0x00001ED1\n\t\"\\x00\\xd4\\x03\\x00\\x00\\x00\\x1e\\xd2\" + // 0x00D40300: 0x00001ED2\n\t\"\\x00\\xf4\\x03\\x00\\x00\\x00\\x1e\\xd3\" + // 0x00F40300: 0x00001ED3\n\t\"\\x00\\xd4\\x03\\t\\x00\\x00\\x1e\\xd4\" + // 0x00D40309: 0x00001ED4\n\t\"\\x00\\xf4\\x03\\t\\x00\\x00\\x1e\\xd5\" + // 0x00F40309: 0x00001ED5\n\t\"\\x00\\xd4\\x03\\x03\\x00\\x00\\x1e\\xd6\" + // 0x00D40303: 0x00001ED6\n\t\"\\x00\\xf4\\x03\\x03\\x00\\x00\\x1e\\xd7\" + // 0x00F40303: 0x00001ED7\n\t\"\\x1e\\xcc\\x03\\x02\\x00\\x00\\x1e\\xd8\" + // 0x1ECC0302: 0x00001ED8\n\t\"\\x1e\\xcd\\x03\\x02\\x00\\x00\\x1e\\xd9\" + // 0x1ECD0302: 0x00001ED9\n\t\"\\x01\\xa0\\x03\\x01\\x00\\x00\\x1e\\xda\" + // 0x01A00301: 0x00001EDA\n\t\"\\x01\\xa1\\x03\\x01\\x00\\x00\\x1e\\xdb\" + // 0x01A10301: 0x00001EDB\n\t\"\\x01\\xa0\\x03\\x00\\x00\\x00\\x1e\\xdc\" + // 0x01A00300: 0x00001EDC\n\t\"\\x01\\xa1\\x03\\x00\\x00\\x00\\x1e\\xdd\" + // 0x01A10300: 0x00001EDD\n\t\"\\x01\\xa0\\x03\\t\\x00\\x00\\x1e\\xde\" + // 0x01A00309: 0x00001EDE\n\t\"\\x01\\xa1\\x03\\t\\x00\\x00\\x1e\\xdf\" + // 0x01A10309: 0x00001EDF\n\t\"\\x01\\xa0\\x03\\x03\\x00\\x00\\x1e\\xe0\" + // 0x01A00303: 0x00001EE0\n\t\"\\x01\\xa1\\x03\\x03\\x00\\x00\\x1e\\xe1\" + // 0x01A10303: 0x00001EE1\n\t\"\\x01\\xa0\\x03#\\x00\\x00\\x1e\\xe2\" + // 0x01A00323: 0x00001EE2\n\t\"\\x01\\xa1\\x03#\\x00\\x00\\x1e\\xe3\" + // 0x01A10323: 0x00001EE3\n\t\"\\x00U\\x03#\\x00\\x00\\x1e\\xe4\" + // 0x00550323: 0x00001EE4\n\t\"\\x00u\\x03#\\x00\\x00\\x1e\\xe5\" + // 0x00750323: 0x00001EE5\n\t\"\\x00U\\x03\\t\\x00\\x00\\x1e\\xe6\" + // 0x00550309: 0x00001EE6\n\t\"\\x00u\\x03\\t\\x00\\x00\\x1e\\xe7\" + // 0x00750309: 0x00001EE7\n\t\"\\x01\\xaf\\x03\\x01\\x00\\x00\\x1e\\xe8\" + // 0x01AF0301: 0x00001EE8\n\t\"\\x01\\xb0\\x03\\x01\\x00\\x00\\x1e\\xe9\" + // 0x01B00301: 0x00001EE9\n\t\"\\x01\\xaf\\x03\\x00\\x00\\x00\\x1e\\xea\" + // 0x01AF0300: 0x00001EEA\n\t\"\\x01\\xb0\\x03\\x00\\x00\\x00\\x1e\\xeb\" + // 0x01B00300: 0x00001EEB\n\t\"\\x01\\xaf\\x03\\t\\x00\\x00\\x1e\\xec\" + // 0x01AF0309: 0x00001EEC\n\t\"\\x01\\xb0\\x03\\t\\x00\\x00\\x1e\\xed\" + // 0x01B00309: 0x00001EED\n\t\"\\x01\\xaf\\x03\\x03\\x00\\x00\\x1e\\xee\" + // 0x01AF0303: 0x00001EEE\n\t\"\\x01\\xb0\\x03\\x03\\x00\\x00\\x1e\\xef\" + // 0x01B00303: 0x00001EEF\n\t\"\\x01\\xaf\\x03#\\x00\\x00\\x1e\\xf0\" + // 0x01AF0323: 0x00001EF0\n\t\"\\x01\\xb0\\x03#\\x00\\x00\\x1e\\xf1\" + // 0x01B00323: 0x00001EF1\n\t\"\\x00Y\\x03\\x00\\x00\\x00\\x1e\\xf2\" + // 0x00590300: 0x00001EF2\n\t\"\\x00y\\x03\\x00\\x00\\x00\\x1e\\xf3\" + // 0x00790300: 0x00001EF3\n\t\"\\x00Y\\x03#\\x00\\x00\\x1e\\xf4\" + // 0x00590323: 0x00001EF4\n\t\"\\x00y\\x03#\\x00\\x00\\x1e\\xf5\" + // 0x00790323: 0x00001EF5\n\t\"\\x00Y\\x03\\t\\x00\\x00\\x1e\\xf6\" + // 0x00590309: 0x00001EF6\n\t\"\\x00y\\x03\\t\\x00\\x00\\x1e\\xf7\" + // 0x00790309: 0x00001EF7\n\t\"\\x00Y\\x03\\x03\\x00\\x00\\x1e\\xf8\" + // 0x00590303: 0x00001EF8\n\t\"\\x00y\\x03\\x03\\x00\\x00\\x1e\\xf9\" + // 0x00790303: 0x00001EF9\n\t\"\\x03\\xb1\\x03\\x13\\x00\\x00\\x1f\\x00\" + // 0x03B10313: 0x00001F00\n\t\"\\x03\\xb1\\x03\\x14\\x00\\x00\\x1f\\x01\" + // 0x03B10314: 0x00001F01\n\t\"\\x1f\\x00\\x03\\x00\\x00\\x00\\x1f\\x02\" + // 0x1F000300: 0x00001F02\n\t\"\\x1f\\x01\\x03\\x00\\x00\\x00\\x1f\\x03\" + // 0x1F010300: 0x00001F03\n\t\"\\x1f\\x00\\x03\\x01\\x00\\x00\\x1f\\x04\" + // 0x1F000301: 0x00001F04\n\t\"\\x1f\\x01\\x03\\x01\\x00\\x00\\x1f\\x05\" + // 0x1F010301: 0x00001F05\n\t\"\\x1f\\x00\\x03B\\x00\\x00\\x1f\\x06\" + // 0x1F000342: 0x00001F06\n\t\"\\x1f\\x01\\x03B\\x00\\x00\\x1f\\a\" + // 0x1F010342: 0x00001F07\n\t\"\\x03\\x91\\x03\\x13\\x00\\x00\\x1f\\b\" + // 0x03910313: 0x00001F08\n\t\"\\x03\\x91\\x03\\x14\\x00\\x00\\x1f\\t\" + // 0x03910314: 0x00001F09\n\t\"\\x1f\\b\\x03\\x00\\x00\\x00\\x1f\\n\" + // 0x1F080300: 0x00001F0A\n\t\"\\x1f\\t\\x03\\x00\\x00\\x00\\x1f\\v\" + // 0x1F090300: 0x00001F0B\n\t\"\\x1f\\b\\x03\\x01\\x00\\x00\\x1f\\f\" + // 0x1F080301: 0x00001F0C\n\t\"\\x1f\\t\\x03\\x01\\x00\\x00\\x1f\\r\" + // 0x1F090301: 0x00001F0D\n\t\"\\x1f\\b\\x03B\\x00\\x00\\x1f\\x0e\" + // 0x1F080342: 0x00001F0E\n\t\"\\x1f\\t\\x03B\\x00\\x00\\x1f\\x0f\" + // 0x1F090342: 0x00001F0F\n\t\"\\x03\\xb5\\x03\\x13\\x00\\x00\\x1f\\x10\" + // 0x03B50313: 0x00001F10\n\t\"\\x03\\xb5\\x03\\x14\\x00\\x00\\x1f\\x11\" + // 0x03B50314: 0x00001F11\n\t\"\\x1f\\x10\\x03\\x00\\x00\\x00\\x1f\\x12\" + // 0x1F100300: 0x00001F12\n\t\"\\x1f\\x11\\x03\\x00\\x00\\x00\\x1f\\x13\" + // 0x1F110300: 0x00001F13\n\t\"\\x1f\\x10\\x03\\x01\\x00\\x00\\x1f\\x14\" + // 0x1F100301: 0x00001F14\n\t\"\\x1f\\x11\\x03\\x01\\x00\\x00\\x1f\\x15\" + // 0x1F110301: 0x00001F15\n\t\"\\x03\\x95\\x03\\x13\\x00\\x00\\x1f\\x18\" + // 0x03950313: 0x00001F18\n\t\"\\x03\\x95\\x03\\x14\\x00\\x00\\x1f\\x19\" + // 0x03950314: 0x00001F19\n\t\"\\x1f\\x18\\x03\\x00\\x00\\x00\\x1f\\x1a\" + // 0x1F180300: 0x00001F1A\n\t\"\\x1f\\x19\\x03\\x00\\x00\\x00\\x1f\\x1b\" + // 0x1F190300: 0x00001F1B\n\t\"\\x1f\\x18\\x03\\x01\\x00\\x00\\x1f\\x1c\" + // 0x1F180301: 0x00001F1C\n\t\"\\x1f\\x19\\x03\\x01\\x00\\x00\\x1f\\x1d\" + // 0x1F190301: 0x00001F1D\n\t\"\\x03\\xb7\\x03\\x13\\x00\\x00\\x1f \" + // 0x03B70313: 0x00001F20\n\t\"\\x03\\xb7\\x03\\x14\\x00\\x00\\x1f!\" + // 0x03B70314: 0x00001F21\n\t\"\\x1f \\x03\\x00\\x00\\x00\\x1f\\\"\" + // 0x1F200300: 0x00001F22\n\t\"\\x1f!\\x03\\x00\\x00\\x00\\x1f#\" + // 0x1F210300: 0x00001F23\n\t\"\\x1f \\x03\\x01\\x00\\x00\\x1f$\" + // 0x1F200301: 0x00001F24\n\t\"\\x1f!\\x03\\x01\\x00\\x00\\x1f%\" + // 0x1F210301: 0x00001F25\n\t\"\\x1f \\x03B\\x00\\x00\\x1f&\" + // 0x1F200342: 0x00001F26\n\t\"\\x1f!\\x03B\\x00\\x00\\x1f'\" + // 0x1F210342: 0x00001F27\n\t\"\\x03\\x97\\x03\\x13\\x00\\x00\\x1f(\" + // 0x03970313: 0x00001F28\n\t\"\\x03\\x97\\x03\\x14\\x00\\x00\\x1f)\" + // 0x03970314: 0x00001F29\n\t\"\\x1f(\\x03\\x00\\x00\\x00\\x1f*\" + // 0x1F280300: 0x00001F2A\n\t\"\\x1f)\\x03\\x00\\x00\\x00\\x1f+\" + // 0x1F290300: 0x00001F2B\n\t\"\\x1f(\\x03\\x01\\x00\\x00\\x1f,\" + // 0x1F280301: 0x00001F2C\n\t\"\\x1f)\\x03\\x01\\x00\\x00\\x1f-\" + // 0x1F290301: 0x00001F2D\n\t\"\\x1f(\\x03B\\x00\\x00\\x1f.\" + // 0x1F280342: 0x00001F2E\n\t\"\\x1f)\\x03B\\x00\\x00\\x1f/\" + // 0x1F290342: 0x00001F2F\n\t\"\\x03\\xb9\\x03\\x13\\x00\\x00\\x1f0\" + // 0x03B90313: 0x00001F30\n\t\"\\x03\\xb9\\x03\\x14\\x00\\x00\\x1f1\" + // 0x03B90314: 0x00001F31\n\t\"\\x1f0\\x03\\x00\\x00\\x00\\x1f2\" + // 0x1F300300: 0x00001F32\n\t\"\\x1f1\\x03\\x00\\x00\\x00\\x1f3\" + // 0x1F310300: 0x00001F33\n\t\"\\x1f0\\x03\\x01\\x00\\x00\\x1f4\" + // 0x1F300301: 0x00001F34\n\t\"\\x1f1\\x03\\x01\\x00\\x00\\x1f5\" + // 0x1F310301: 0x00001F35\n\t\"\\x1f0\\x03B\\x00\\x00\\x1f6\" + // 0x1F300342: 0x00001F36\n\t\"\\x1f1\\x03B\\x00\\x00\\x1f7\" + // 0x1F310342: 0x00001F37\n\t\"\\x03\\x99\\x03\\x13\\x00\\x00\\x1f8\" + // 0x03990313: 0x00001F38\n\t\"\\x03\\x99\\x03\\x14\\x00\\x00\\x1f9\" + // 0x03990314: 0x00001F39\n\t\"\\x1f8\\x03\\x00\\x00\\x00\\x1f:\" + // 0x1F380300: 0x00001F3A\n\t\"\\x1f9\\x03\\x00\\x00\\x00\\x1f;\" + // 0x1F390300: 0x00001F3B\n\t\"\\x1f8\\x03\\x01\\x00\\x00\\x1f<\" + // 0x1F380301: 0x00001F3C\n\t\"\\x1f9\\x03\\x01\\x00\\x00\\x1f=\" + // 0x1F390301: 0x00001F3D\n\t\"\\x1f8\\x03B\\x00\\x00\\x1f>\" + // 0x1F380342: 0x00001F3E\n\t\"\\x1f9\\x03B\\x00\\x00\\x1f?\" + // 0x1F390342: 0x00001F3F\n\t\"\\x03\\xbf\\x03\\x13\\x00\\x00\\x1f@\" + // 0x03BF0313: 0x00001F40\n\t\"\\x03\\xbf\\x03\\x14\\x00\\x00\\x1fA\" + // 0x03BF0314: 0x00001F41\n\t\"\\x1f@\\x03\\x00\\x00\\x00\\x1fB\" + // 0x1F400300: 0x00001F42\n\t\"\\x1fA\\x03\\x00\\x00\\x00\\x1fC\" + // 0x1F410300: 0x00001F43\n\t\"\\x1f@\\x03\\x01\\x00\\x00\\x1fD\" + // 0x1F400301: 0x00001F44\n\t\"\\x1fA\\x03\\x01\\x00\\x00\\x1fE\" + // 0x1F410301: 0x00001F45\n\t\"\\x03\\x9f\\x03\\x13\\x00\\x00\\x1fH\" + // 0x039F0313: 0x00001F48\n\t\"\\x03\\x9f\\x03\\x14\\x00\\x00\\x1fI\" + // 0x039F0314: 0x00001F49\n\t\"\\x1fH\\x03\\x00\\x00\\x00\\x1fJ\" + // 0x1F480300: 0x00001F4A\n\t\"\\x1fI\\x03\\x00\\x00\\x00\\x1fK\" + // 0x1F490300: 0x00001F4B\n\t\"\\x1fH\\x03\\x01\\x00\\x00\\x1fL\" + // 0x1F480301: 0x00001F4C\n\t\"\\x1fI\\x03\\x01\\x00\\x00\\x1fM\" + // 0x1F490301: 0x00001F4D\n\t\"\\x03\\xc5\\x03\\x13\\x00\\x00\\x1fP\" + // 0x03C50313: 0x00001F50\n\t\"\\x03\\xc5\\x03\\x14\\x00\\x00\\x1fQ\" + // 0x03C50314: 0x00001F51\n\t\"\\x1fP\\x03\\x00\\x00\\x00\\x1fR\" + // 0x1F500300: 0x00001F52\n\t\"\\x1fQ\\x03\\x00\\x00\\x00\\x1fS\" + // 0x1F510300: 0x00001F53\n\t\"\\x1fP\\x03\\x01\\x00\\x00\\x1fT\" + // 0x1F500301: 0x00001F54\n\t\"\\x1fQ\\x03\\x01\\x00\\x00\\x1fU\" + // 0x1F510301: 0x00001F55\n\t\"\\x1fP\\x03B\\x00\\x00\\x1fV\" + // 0x1F500342: 0x00001F56\n\t\"\\x1fQ\\x03B\\x00\\x00\\x1fW\" + // 0x1F510342: 0x00001F57\n\t\"\\x03\\xa5\\x03\\x14\\x00\\x00\\x1fY\" + // 0x03A50314: 0x00001F59\n\t\"\\x1fY\\x03\\x00\\x00\\x00\\x1f[\" + // 0x1F590300: 0x00001F5B\n\t\"\\x1fY\\x03\\x01\\x00\\x00\\x1f]\" + // 0x1F590301: 0x00001F5D\n\t\"\\x1fY\\x03B\\x00\\x00\\x1f_\" + // 0x1F590342: 0x00001F5F\n\t\"\\x03\\xc9\\x03\\x13\\x00\\x00\\x1f`\" + // 0x03C90313: 0x00001F60\n\t\"\\x03\\xc9\\x03\\x14\\x00\\x00\\x1fa\" + // 0x03C90314: 0x00001F61\n\t\"\\x1f`\\x03\\x00\\x00\\x00\\x1fb\" + // 0x1F600300: 0x00001F62\n\t\"\\x1fa\\x03\\x00\\x00\\x00\\x1fc\" + // 0x1F610300: 0x00001F63\n\t\"\\x1f`\\x03\\x01\\x00\\x00\\x1fd\" + // 0x1F600301: 0x00001F64\n\t\"\\x1fa\\x03\\x01\\x00\\x00\\x1fe\" + // 0x1F610301: 0x00001F65\n\t\"\\x1f`\\x03B\\x00\\x00\\x1ff\" + // 0x1F600342: 0x00001F66\n\t\"\\x1fa\\x03B\\x00\\x00\\x1fg\" + // 0x1F610342: 0x00001F67\n\t\"\\x03\\xa9\\x03\\x13\\x00\\x00\\x1fh\" + // 0x03A90313: 0x00001F68\n\t\"\\x03\\xa9\\x03\\x14\\x00\\x00\\x1fi\" + // 0x03A90314: 0x00001F69\n\t\"\\x1fh\\x03\\x00\\x00\\x00\\x1fj\" + // 0x1F680300: 0x00001F6A\n\t\"\\x1fi\\x03\\x00\\x00\\x00\\x1fk\" + // 0x1F690300: 0x00001F6B\n\t\"\\x1fh\\x03\\x01\\x00\\x00\\x1fl\" + // 0x1F680301: 0x00001F6C\n\t\"\\x1fi\\x03\\x01\\x00\\x00\\x1fm\" + // 0x1F690301: 0x00001F6D\n\t\"\\x1fh\\x03B\\x00\\x00\\x1fn\" + // 0x1F680342: 0x00001F6E\n\t\"\\x1fi\\x03B\\x00\\x00\\x1fo\" + // 0x1F690342: 0x00001F6F\n\t\"\\x03\\xb1\\x03\\x00\\x00\\x00\\x1fp\" + // 0x03B10300: 0x00001F70\n\t\"\\x03\\xb5\\x03\\x00\\x00\\x00\\x1fr\" + // 0x03B50300: 0x00001F72\n\t\"\\x03\\xb7\\x03\\x00\\x00\\x00\\x1ft\" + // 0x03B70300: 0x00001F74\n\t\"\\x03\\xb9\\x03\\x00\\x00\\x00\\x1fv\" + // 0x03B90300: 0x00001F76\n\t\"\\x03\\xbf\\x03\\x00\\x00\\x00\\x1fx\" + // 0x03BF0300: 0x00001F78\n\t\"\\x03\\xc5\\x03\\x00\\x00\\x00\\x1fz\" + // 0x03C50300: 0x00001F7A\n\t\"\\x03\\xc9\\x03\\x00\\x00\\x00\\x1f|\" + // 0x03C90300: 0x00001F7C\n\t\"\\x1f\\x00\\x03E\\x00\\x00\\x1f\\x80\" + // 0x1F000345: 0x00001F80\n\t\"\\x1f\\x01\\x03E\\x00\\x00\\x1f\\x81\" + // 0x1F010345: 0x00001F81\n\t\"\\x1f\\x02\\x03E\\x00\\x00\\x1f\\x82\" + // 0x1F020345: 0x00001F82\n\t\"\\x1f\\x03\\x03E\\x00\\x00\\x1f\\x83\" + // 0x1F030345: 0x00001F83\n\t\"\\x1f\\x04\\x03E\\x00\\x00\\x1f\\x84\" + // 0x1F040345: 0x00001F84\n\t\"\\x1f\\x05\\x03E\\x00\\x00\\x1f\\x85\" + // 0x1F050345: 0x00001F85\n\t\"\\x1f\\x06\\x03E\\x00\\x00\\x1f\\x86\" + // 0x1F060345: 0x00001F86\n\t\"\\x1f\\a\\x03E\\x00\\x00\\x1f\\x87\" + // 0x1F070345: 0x00001F87\n\t\"\\x1f\\b\\x03E\\x00\\x00\\x1f\\x88\" + // 0x1F080345: 0x00001F88\n\t\"\\x1f\\t\\x03E\\x00\\x00\\x1f\\x89\" + // 0x1F090345: 0x00001F89\n\t\"\\x1f\\n\\x03E\\x00\\x00\\x1f\\x8a\" + // 0x1F0A0345: 0x00001F8A\n\t\"\\x1f\\v\\x03E\\x00\\x00\\x1f\\x8b\" + // 0x1F0B0345: 0x00001F8B\n\t\"\\x1f\\f\\x03E\\x00\\x00\\x1f\\x8c\" + // 0x1F0C0345: 0x00001F8C\n\t\"\\x1f\\r\\x03E\\x00\\x00\\x1f\\x8d\" + // 0x1F0D0345: 0x00001F8D\n\t\"\\x1f\\x0e\\x03E\\x00\\x00\\x1f\\x8e\" + // 0x1F0E0345: 0x00001F8E\n\t\"\\x1f\\x0f\\x03E\\x00\\x00\\x1f\\x8f\" + // 0x1F0F0345: 0x00001F8F\n\t\"\\x1f \\x03E\\x00\\x00\\x1f\\x90\" + // 0x1F200345: 0x00001F90\n\t\"\\x1f!\\x03E\\x00\\x00\\x1f\\x91\" + // 0x1F210345: 0x00001F91\n\t\"\\x1f\\\"\\x03E\\x00\\x00\\x1f\\x92\" + // 0x1F220345: 0x00001F92\n\t\"\\x1f#\\x03E\\x00\\x00\\x1f\\x93\" + // 0x1F230345: 0x00001F93\n\t\"\\x1f$\\x03E\\x00\\x00\\x1f\\x94\" + // 0x1F240345: 0x00001F94\n\t\"\\x1f%\\x03E\\x00\\x00\\x1f\\x95\" + // 0x1F250345: 0x00001F95\n\t\"\\x1f&\\x03E\\x00\\x00\\x1f\\x96\" + // 0x1F260345: 0x00001F96\n\t\"\\x1f'\\x03E\\x00\\x00\\x1f\\x97\" + // 0x1F270345: 0x00001F97\n\t\"\\x1f(\\x03E\\x00\\x00\\x1f\\x98\" + // 0x1F280345: 0x00001F98\n\t\"\\x1f)\\x03E\\x00\\x00\\x1f\\x99\" + // 0x1F290345: 0x00001F99\n\t\"\\x1f*\\x03E\\x00\\x00\\x1f\\x9a\" + // 0x1F2A0345: 0x00001F9A\n\t\"\\x1f+\\x03E\\x00\\x00\\x1f\\x9b\" + // 0x1F2B0345: 0x00001F9B\n\t\"\\x1f,\\x03E\\x00\\x00\\x1f\\x9c\" + // 0x1F2C0345: 0x00001F9C\n\t\"\\x1f-\\x03E\\x00\\x00\\x1f\\x9d\" + // 0x1F2D0345: 0x00001F9D\n\t\"\\x1f.\\x03E\\x00\\x00\\x1f\\x9e\" + // 0x1F2E0345: 0x00001F9E\n\t\"\\x1f/\\x03E\\x00\\x00\\x1f\\x9f\" + // 0x1F2F0345: 0x00001F9F\n\t\"\\x1f`\\x03E\\x00\\x00\\x1f\\xa0\" + // 0x1F600345: 0x00001FA0\n\t\"\\x1fa\\x03E\\x00\\x00\\x1f\\xa1\" + // 0x1F610345: 0x00001FA1\n\t\"\\x1fb\\x03E\\x00\\x00\\x1f\\xa2\" + // 0x1F620345: 0x00001FA2\n\t\"\\x1fc\\x03E\\x00\\x00\\x1f\\xa3\" + // 0x1F630345: 0x00001FA3\n\t\"\\x1fd\\x03E\\x00\\x00\\x1f\\xa4\" + // 0x1F640345: 0x00001FA4\n\t\"\\x1fe\\x03E\\x00\\x00\\x1f\\xa5\" + // 0x1F650345: 0x00001FA5\n\t\"\\x1ff\\x03E\\x00\\x00\\x1f\\xa6\" + // 0x1F660345: 0x00001FA6\n\t\"\\x1fg\\x03E\\x00\\x00\\x1f\\xa7\" + // 0x1F670345: 0x00001FA7\n\t\"\\x1fh\\x03E\\x00\\x00\\x1f\\xa8\" + // 0x1F680345: 0x00001FA8\n\t\"\\x1fi\\x03E\\x00\\x00\\x1f\\xa9\" + // 0x1F690345: 0x00001FA9\n\t\"\\x1fj\\x03E\\x00\\x00\\x1f\\xaa\" + // 0x1F6A0345: 0x00001FAA\n\t\"\\x1fk\\x03E\\x00\\x00\\x1f\\xab\" + // 0x1F6B0345: 0x00001FAB\n\t\"\\x1fl\\x03E\\x00\\x00\\x1f\\xac\" + // 0x1F6C0345: 0x00001FAC\n\t\"\\x1fm\\x03E\\x00\\x00\\x1f\\xad\" + // 0x1F6D0345: 0x00001FAD\n\t\"\\x1fn\\x03E\\x00\\x00\\x1f\\xae\" + // 0x1F6E0345: 0x00001FAE\n\t\"\\x1fo\\x03E\\x00\\x00\\x1f\\xaf\" + // 0x1F6F0345: 0x00001FAF\n\t\"\\x03\\xb1\\x03\\x06\\x00\\x00\\x1f\\xb0\" + // 0x03B10306: 0x00001FB0\n\t\"\\x03\\xb1\\x03\\x04\\x00\\x00\\x1f\\xb1\" + // 0x03B10304: 0x00001FB1\n\t\"\\x1fp\\x03E\\x00\\x00\\x1f\\xb2\" + // 0x1F700345: 0x00001FB2\n\t\"\\x03\\xb1\\x03E\\x00\\x00\\x1f\\xb3\" + // 0x03B10345: 0x00001FB3\n\t\"\\x03\\xac\\x03E\\x00\\x00\\x1f\\xb4\" + // 0x03AC0345: 0x00001FB4\n\t\"\\x03\\xb1\\x03B\\x00\\x00\\x1f\\xb6\" + // 0x03B10342: 0x00001FB6\n\t\"\\x1f\\xb6\\x03E\\x00\\x00\\x1f\\xb7\" + // 0x1FB60345: 0x00001FB7\n\t\"\\x03\\x91\\x03\\x06\\x00\\x00\\x1f\\xb8\" + // 0x03910306: 0x00001FB8\n\t\"\\x03\\x91\\x03\\x04\\x00\\x00\\x1f\\xb9\" + // 0x03910304: 0x00001FB9\n\t\"\\x03\\x91\\x03\\x00\\x00\\x00\\x1f\\xba\" + // 0x03910300: 0x00001FBA\n\t\"\\x03\\x91\\x03E\\x00\\x00\\x1f\\xbc\" + // 0x03910345: 0x00001FBC\n\t\"\\x00\\xa8\\x03B\\x00\\x00\\x1f\\xc1\" + // 0x00A80342: 0x00001FC1\n\t\"\\x1ft\\x03E\\x00\\x00\\x1f\\xc2\" + // 0x1F740345: 0x00001FC2\n\t\"\\x03\\xb7\\x03E\\x00\\x00\\x1f\\xc3\" + // 0x03B70345: 0x00001FC3\n\t\"\\x03\\xae\\x03E\\x00\\x00\\x1f\\xc4\" + // 0x03AE0345: 0x00001FC4\n\t\"\\x03\\xb7\\x03B\\x00\\x00\\x1f\\xc6\" + // 0x03B70342: 0x00001FC6\n\t\"\\x1f\\xc6\\x03E\\x00\\x00\\x1f\\xc7\" + // 0x1FC60345: 0x00001FC7\n\t\"\\x03\\x95\\x03\\x00\\x00\\x00\\x1f\\xc8\" + // 0x03950300: 0x00001FC8\n\t\"\\x03\\x97\\x03\\x00\\x00\\x00\\x1f\\xca\" + // 0x03970300: 0x00001FCA\n\t\"\\x03\\x97\\x03E\\x00\\x00\\x1f\\xcc\" + // 0x03970345: 0x00001FCC\n\t\"\\x1f\\xbf\\x03\\x00\\x00\\x00\\x1f\\xcd\" + // 0x1FBF0300: 0x00001FCD\n\t\"\\x1f\\xbf\\x03\\x01\\x00\\x00\\x1f\\xce\" + // 0x1FBF0301: 0x00001FCE\n\t\"\\x1f\\xbf\\x03B\\x00\\x00\\x1f\\xcf\" + // 0x1FBF0342: 0x00001FCF\n\t\"\\x03\\xb9\\x03\\x06\\x00\\x00\\x1f\\xd0\" + // 0x03B90306: 0x00001FD0\n\t\"\\x03\\xb9\\x03\\x04\\x00\\x00\\x1f\\xd1\" + // 0x03B90304: 0x00001FD1\n\t\"\\x03\\xca\\x03\\x00\\x00\\x00\\x1f\\xd2\" + // 0x03CA0300: 0x00001FD2\n\t\"\\x03\\xb9\\x03B\\x00\\x00\\x1f\\xd6\" + // 0x03B90342: 0x00001FD6\n\t\"\\x03\\xca\\x03B\\x00\\x00\\x1f\\xd7\" + // 0x03CA0342: 0x00001FD7\n\t\"\\x03\\x99\\x03\\x06\\x00\\x00\\x1f\\xd8\" + // 0x03990306: 0x00001FD8\n\t\"\\x03\\x99\\x03\\x04\\x00\\x00\\x1f\\xd9\" + // 0x03990304: 0x00001FD9\n\t\"\\x03\\x99\\x03\\x00\\x00\\x00\\x1f\\xda\" + // 0x03990300: 0x00001FDA\n\t\"\\x1f\\xfe\\x03\\x00\\x00\\x00\\x1f\\xdd\" + // 0x1FFE0300: 0x00001FDD\n\t\"\\x1f\\xfe\\x03\\x01\\x00\\x00\\x1f\\xde\" + // 0x1FFE0301: 0x00001FDE\n\t\"\\x1f\\xfe\\x03B\\x00\\x00\\x1f\\xdf\" + // 0x1FFE0342: 0x00001FDF\n\t\"\\x03\\xc5\\x03\\x06\\x00\\x00\\x1f\\xe0\" + // 0x03C50306: 0x00001FE0\n\t\"\\x03\\xc5\\x03\\x04\\x00\\x00\\x1f\\xe1\" + // 0x03C50304: 0x00001FE1\n\t\"\\x03\\xcb\\x03\\x00\\x00\\x00\\x1f\\xe2\" + // 0x03CB0300: 0x00001FE2\n\t\"\\x03\\xc1\\x03\\x13\\x00\\x00\\x1f\\xe4\" + // 0x03C10313: 0x00001FE4\n\t\"\\x03\\xc1\\x03\\x14\\x00\\x00\\x1f\\xe5\" + // 0x03C10314: 0x00001FE5\n\t\"\\x03\\xc5\\x03B\\x00\\x00\\x1f\\xe6\" + // 0x03C50342: 0x00001FE6\n\t\"\\x03\\xcb\\x03B\\x00\\x00\\x1f\\xe7\" + // 0x03CB0342: 0x00001FE7\n\t\"\\x03\\xa5\\x03\\x06\\x00\\x00\\x1f\\xe8\" + // 0x03A50306: 0x00001FE8\n\t\"\\x03\\xa5\\x03\\x04\\x00\\x00\\x1f\\xe9\" + // 0x03A50304: 0x00001FE9\n\t\"\\x03\\xa5\\x03\\x00\\x00\\x00\\x1f\\xea\" + // 0x03A50300: 0x00001FEA\n\t\"\\x03\\xa1\\x03\\x14\\x00\\x00\\x1f\\xec\" + // 0x03A10314: 0x00001FEC\n\t\"\\x00\\xa8\\x03\\x00\\x00\\x00\\x1f\\xed\" + // 0x00A80300: 0x00001FED\n\t\"\\x1f|\\x03E\\x00\\x00\\x1f\\xf2\" + // 0x1F7C0345: 0x00001FF2\n\t\"\\x03\\xc9\\x03E\\x00\\x00\\x1f\\xf3\" + // 0x03C90345: 0x00001FF3\n\t\"\\x03\\xce\\x03E\\x00\\x00\\x1f\\xf4\" + // 0x03CE0345: 0x00001FF4\n\t\"\\x03\\xc9\\x03B\\x00\\x00\\x1f\\xf6\" + // 0x03C90342: 0x00001FF6\n\t\"\\x1f\\xf6\\x03E\\x00\\x00\\x1f\\xf7\" + // 0x1FF60345: 0x00001FF7\n\t\"\\x03\\x9f\\x03\\x00\\x00\\x00\\x1f\\xf8\" + // 0x039F0300: 0x00001FF8\n\t\"\\x03\\xa9\\x03\\x00\\x00\\x00\\x1f\\xfa\" + // 0x03A90300: 0x00001FFA\n\t\"\\x03\\xa9\\x03E\\x00\\x00\\x1f\\xfc\" + // 0x03A90345: 0x00001FFC\n\t\"!\\x90\\x038\\x00\\x00!\\x9a\" + // 0x21900338: 0x0000219A\n\t\"!\\x92\\x038\\x00\\x00!\\x9b\" + // 0x21920338: 0x0000219B\n\t\"!\\x94\\x038\\x00\\x00!\\xae\" + // 0x21940338: 0x000021AE\n\t\"!\\xd0\\x038\\x00\\x00!\\xcd\" + // 0x21D00338: 0x000021CD\n\t\"!\\xd4\\x038\\x00\\x00!\\xce\" + // 0x21D40338: 0x000021CE\n\t\"!\\xd2\\x038\\x00\\x00!\\xcf\" + // 0x21D20338: 0x000021CF\n\t\"\\\"\\x03\\x038\\x00\\x00\\\"\\x04\" + // 0x22030338: 0x00002204\n\t\"\\\"\\b\\x038\\x00\\x00\\\"\\t\" + // 0x22080338: 0x00002209\n\t\"\\\"\\v\\x038\\x00\\x00\\\"\\f\" + // 0x220B0338: 0x0000220C\n\t\"\\\"#\\x038\\x00\\x00\\\"$\" + // 0x22230338: 0x00002224\n\t\"\\\"%\\x038\\x00\\x00\\\"&\" + // 0x22250338: 0x00002226\n\t\"\\\"<\\x038\\x00\\x00\\\"A\" + // 0x223C0338: 0x00002241\n\t\"\\\"C\\x038\\x00\\x00\\\"D\" + // 0x22430338: 0x00002244\n\t\"\\\"E\\x038\\x00\\x00\\\"G\" + // 0x22450338: 0x00002247\n\t\"\\\"H\\x038\\x00\\x00\\\"I\" + // 0x22480338: 0x00002249\n\t\"\\x00=\\x038\\x00\\x00\\\"`\" + // 0x003D0338: 0x00002260\n\t\"\\\"a\\x038\\x00\\x00\\\"b\" + // 0x22610338: 0x00002262\n\t\"\\\"M\\x038\\x00\\x00\\\"m\" + // 0x224D0338: 0x0000226D\n\t\"\\x00<\\x038\\x00\\x00\\\"n\" + // 0x003C0338: 0x0000226E\n\t\"\\x00>\\x038\\x00\\x00\\\"o\" + // 0x003E0338: 0x0000226F\n\t\"\\\"d\\x038\\x00\\x00\\\"p\" + // 0x22640338: 0x00002270\n\t\"\\\"e\\x038\\x00\\x00\\\"q\" + // 0x22650338: 0x00002271\n\t\"\\\"r\\x038\\x00\\x00\\\"t\" + // 0x22720338: 0x00002274\n\t\"\\\"s\\x038\\x00\\x00\\\"u\" + // 0x22730338: 0x00002275\n\t\"\\\"v\\x038\\x00\\x00\\\"x\" + // 0x22760338: 0x00002278\n\t\"\\\"w\\x038\\x00\\x00\\\"y\" + // 0x22770338: 0x00002279\n\t\"\\\"z\\x038\\x00\\x00\\\"\\x80\" + // 0x227A0338: 0x00002280\n\t\"\\\"{\\x038\\x00\\x00\\\"\\x81\" + // 0x227B0338: 0x00002281\n\t\"\\\"\\x82\\x038\\x00\\x00\\\"\\x84\" + // 0x22820338: 0x00002284\n\t\"\\\"\\x83\\x038\\x00\\x00\\\"\\x85\" + // 0x22830338: 0x00002285\n\t\"\\\"\\x86\\x038\\x00\\x00\\\"\\x88\" + // 0x22860338: 0x00002288\n\t\"\\\"\\x87\\x038\\x00\\x00\\\"\\x89\" + // 0x22870338: 0x00002289\n\t\"\\\"\\xa2\\x038\\x00\\x00\\\"\\xac\" + // 0x22A20338: 0x000022AC\n\t\"\\\"\\xa8\\x038\\x00\\x00\\\"\\xad\" + // 0x22A80338: 0x000022AD\n\t\"\\\"\\xa9\\x038\\x00\\x00\\\"\\xae\" + // 0x22A90338: 0x000022AE\n\t\"\\\"\\xab\\x038\\x00\\x00\\\"\\xaf\" + // 0x22AB0338: 0x000022AF\n\t\"\\\"|\\x038\\x00\\x00\\\"\\xe0\" + // 0x227C0338: 0x000022E0\n\t\"\\\"}\\x038\\x00\\x00\\\"\\xe1\" + // 0x227D0338: 0x000022E1\n\t\"\\\"\\x91\\x038\\x00\\x00\\\"\\xe2\" + // 0x22910338: 0x000022E2\n\t\"\\\"\\x92\\x038\\x00\\x00\\\"\\xe3\" + // 0x22920338: 0x000022E3\n\t\"\\\"\\xb2\\x038\\x00\\x00\\\"\\xea\" + // 0x22B20338: 0x000022EA\n\t\"\\\"\\xb3\\x038\\x00\\x00\\\"\\xeb\" + // 0x22B30338: 0x000022EB\n\t\"\\\"\\xb4\\x038\\x00\\x00\\\"\\xec\" + // 0x22B40338: 0x000022EC\n\t\"\\\"\\xb5\\x038\\x00\\x00\\\"\\xed\" + // 0x22B50338: 0x000022ED\n\t\"0K0\\x99\\x00\\x000L\" + // 0x304B3099: 0x0000304C\n\t\"0M0\\x99\\x00\\x000N\" + // 0x304D3099: 0x0000304E\n\t\"0O0\\x99\\x00\\x000P\" + // 0x304F3099: 0x00003050\n\t\"0Q0\\x99\\x00\\x000R\" + // 0x30513099: 0x00003052\n\t\"0S0\\x99\\x00\\x000T\" + // 0x30533099: 0x00003054\n\t\"0U0\\x99\\x00\\x000V\" + // 0x30553099: 0x00003056\n\t\"0W0\\x99\\x00\\x000X\" + // 0x30573099: 0x00003058\n\t\"0Y0\\x99\\x00\\x000Z\" + // 0x30593099: 0x0000305A\n\t\"0[0\\x99\\x00\\x000\\\\\" + // 0x305B3099: 0x0000305C\n\t\"0]0\\x99\\x00\\x000^\" + // 0x305D3099: 0x0000305E\n\t\"0_0\\x99\\x00\\x000`\" + // 0x305F3099: 0x00003060\n\t\"0a0\\x99\\x00\\x000b\" + // 0x30613099: 0x00003062\n\t\"0d0\\x99\\x00\\x000e\" + // 0x30643099: 0x00003065\n\t\"0f0\\x99\\x00\\x000g\" + // 0x30663099: 0x00003067\n\t\"0h0\\x99\\x00\\x000i\" + // 0x30683099: 0x00003069\n\t\"0o0\\x99\\x00\\x000p\" + // 0x306F3099: 0x00003070\n\t\"0o0\\x9a\\x00\\x000q\" + // 0x306F309A: 0x00003071\n\t\"0r0\\x99\\x00\\x000s\" + // 0x30723099: 0x00003073\n\t\"0r0\\x9a\\x00\\x000t\" + // 0x3072309A: 0x00003074\n\t\"0u0\\x99\\x00\\x000v\" + // 0x30753099: 0x00003076\n\t\"0u0\\x9a\\x00\\x000w\" + // 0x3075309A: 0x00003077\n\t\"0x0\\x99\\x00\\x000y\" + // 0x30783099: 0x00003079\n\t\"0x0\\x9a\\x00\\x000z\" + // 0x3078309A: 0x0000307A\n\t\"0{0\\x99\\x00\\x000|\" + // 0x307B3099: 0x0000307C\n\t\"0{0\\x9a\\x00\\x000}\" + // 0x307B309A: 0x0000307D\n\t\"0F0\\x99\\x00\\x000\\x94\" + // 0x30463099: 0x00003094\n\t\"0\\x9d0\\x99\\x00\\x000\\x9e\" + // 0x309D3099: 0x0000309E\n\t\"0\\xab0\\x99\\x00\\x000\\xac\" + // 0x30AB3099: 0x000030AC\n\t\"0\\xad0\\x99\\x00\\x000\\xae\" + // 0x30AD3099: 0x000030AE\n\t\"0\\xaf0\\x99\\x00\\x000\\xb0\" + // 0x30AF3099: 0x000030B0\n\t\"0\\xb10\\x99\\x00\\x000\\xb2\" + // 0x30B13099: 0x000030B2\n\t\"0\\xb30\\x99\\x00\\x000\\xb4\" + // 0x30B33099: 0x000030B4\n\t\"0\\xb50\\x99\\x00\\x000\\xb6\" + // 0x30B53099: 0x000030B6\n\t\"0\\xb70\\x99\\x00\\x000\\xb8\" + // 0x30B73099: 0x000030B8\n\t\"0\\xb90\\x99\\x00\\x000\\xba\" + // 0x30B93099: 0x000030BA\n\t\"0\\xbb0\\x99\\x00\\x000\\xbc\" + // 0x30BB3099: 0x000030BC\n\t\"0\\xbd0\\x99\\x00\\x000\\xbe\" + // 0x30BD3099: 0x000030BE\n\t\"0\\xbf0\\x99\\x00\\x000\\xc0\" + // 0x30BF3099: 0x000030C0\n\t\"0\\xc10\\x99\\x00\\x000\\xc2\" + // 0x30C13099: 0x000030C2\n\t\"0\\xc40\\x99\\x00\\x000\\xc5\" + // 0x30C43099: 0x000030C5\n\t\"0\\xc60\\x99\\x00\\x000\\xc7\" + // 0x30C63099: 0x000030C7\n\t\"0\\xc80\\x99\\x00\\x000\\xc9\" + // 0x30C83099: 0x000030C9\n\t\"0\\xcf0\\x99\\x00\\x000\\xd0\" + // 0x30CF3099: 0x000030D0\n\t\"0\\xcf0\\x9a\\x00\\x000\\xd1\" + // 0x30CF309A: 0x000030D1\n\t\"0\\xd20\\x99\\x00\\x000\\xd3\" + // 0x30D23099: 0x000030D3\n\t\"0\\xd20\\x9a\\x00\\x000\\xd4\" + // 0x30D2309A: 0x000030D4\n\t\"0\\xd50\\x99\\x00\\x000\\xd6\" + // 0x30D53099: 0x000030D6\n\t\"0\\xd50\\x9a\\x00\\x000\\xd7\" + // 0x30D5309A: 0x000030D7\n\t\"0\\xd80\\x99\\x00\\x000\\xd9\" + // 0x30D83099: 0x000030D9\n\t\"0\\xd80\\x9a\\x00\\x000\\xda\" + // 0x30D8309A: 0x000030DA\n\t\"0\\xdb0\\x99\\x00\\x000\\xdc\" + // 0x30DB3099: 0x000030DC\n\t\"0\\xdb0\\x9a\\x00\\x000\\xdd\" + // 0x30DB309A: 0x000030DD\n\t\"0\\xa60\\x99\\x00\\x000\\xf4\" + // 0x30A63099: 0x000030F4\n\t\"0\\xef0\\x99\\x00\\x000\\xf7\" + // 0x30EF3099: 0x000030F7\n\t\"0\\xf00\\x99\\x00\\x000\\xf8\" + // 0x30F03099: 0x000030F8\n\t\"0\\xf10\\x99\\x00\\x000\\xf9\" + // 0x30F13099: 0x000030F9\n\t\"0\\xf20\\x99\\x00\\x000\\xfa\" + // 0x30F23099: 0x000030FA\n\t\"0\\xfd0\\x99\\x00\\x000\\xfe\" + // 0x30FD3099: 0x000030FE\n\t\"\\x10\\x99\\x10\\xba\\x00\\x01\\x10\\x9a\" + // 0x109910BA: 0x0001109A\n\t\"\\x10\\x9b\\x10\\xba\\x00\\x01\\x10\\x9c\" + // 0x109B10BA: 0x0001109C\n\t\"\\x10\\xa5\\x10\\xba\\x00\\x01\\x10\\xab\" + // 0x10A510BA: 0x000110AB\n\t\"\\x111\\x11'\\x00\\x01\\x11.\" + // 0x11311127: 0x0001112E\n\t\"\\x112\\x11'\\x00\\x01\\x11/\" + // 0x11321127: 0x0001112F\n\t\"\\x13G\\x13>\\x00\\x01\\x13K\" + // 0x1347133E: 0x0001134B\n\t\"\\x13G\\x13W\\x00\\x01\\x13L\" + // 0x13471357: 0x0001134C\n\t\"\\x14\\xb9\\x14\\xba\\x00\\x01\\x14\\xbb\" + // 0x14B914BA: 0x000114BB\n\t\"\\x14\\xb9\\x14\\xb0\\x00\\x01\\x14\\xbc\" + // 0x14B914B0: 0x000114BC\n\t\"\\x14\\xb9\\x14\\xbd\\x00\\x01\\x14\\xbe\" + // 0x14B914BD: 0x000114BE\n\t\"\\x15\\xb8\\x15\\xaf\\x00\\x01\\x15\\xba\" + // 0x15B815AF: 0x000115BA\n\t\"\\x15\\xb9\\x15\\xaf\\x00\\x01\\x15\\xbb\" + // 0x15B915AF: 0x000115BB\n\t\"\"\n\t// Total size of tables: 55KB (55977 bytes)\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/tables9.0.0.go",
    "content": "// Code generated by running \"go generate\" in golang.org/x/text. DO NOT EDIT.\n\n// +build !go1.10\n\npackage norm\n\nimport \"sync\"\n\nconst (\n\t// Version is the Unicode edition from which the tables are derived.\n\tVersion = \"9.0.0\"\n\n\t// MaxTransformChunkSize indicates the maximum number of bytes that Transform\n\t// may need to write atomically for any Form. Making a destination buffer at\n\t// least this size ensures that Transform can always make progress and that\n\t// the user does not need to grow the buffer on an ErrShortDst.\n\tMaxTransformChunkSize = 35 + maxNonStarters*4\n)\n\nvar ccc = [55]uint8{\n\t0, 1, 7, 8, 9, 10, 11, 12,\n\t13, 14, 15, 16, 17, 18, 19, 20,\n\t21, 22, 23, 24, 25, 26, 27, 28,\n\t29, 30, 31, 32, 33, 34, 35, 36,\n\t84, 91, 103, 107, 118, 122, 129, 130,\n\t132, 202, 214, 216, 218, 220, 222, 224,\n\t226, 228, 230, 232, 233, 234, 240,\n}\n\nconst (\n\tfirstMulti            = 0x186D\n\tfirstCCC              = 0x2C9E\n\tendMulti              = 0x2F60\n\tfirstLeadingCCC       = 0x49AE\n\tfirstCCCZeroExcept    = 0x4A78\n\tfirstStarterWithNLead = 0x4A9F\n\tlastDecomp            = 0x4AA1\n\tmaxDecomp             = 0x8000\n)\n\n// decomps: 19105 bytes\nvar decomps = [...]byte{\n\t// Bytes 0 - 3f\n\t0x00, 0x41, 0x20, 0x41, 0x21, 0x41, 0x22, 0x41,\n\t0x23, 0x41, 0x24, 0x41, 0x25, 0x41, 0x26, 0x41,\n\t0x27, 0x41, 0x28, 0x41, 0x29, 0x41, 0x2A, 0x41,\n\t0x2B, 0x41, 0x2C, 0x41, 0x2D, 0x41, 0x2E, 0x41,\n\t0x2F, 0x41, 0x30, 0x41, 0x31, 0x41, 0x32, 0x41,\n\t0x33, 0x41, 0x34, 0x41, 0x35, 0x41, 0x36, 0x41,\n\t0x37, 0x41, 0x38, 0x41, 0x39, 0x41, 0x3A, 0x41,\n\t0x3B, 0x41, 0x3C, 0x41, 0x3D, 0x41, 0x3E, 0x41,\n\t// Bytes 40 - 7f\n\t0x3F, 0x41, 0x40, 0x41, 0x41, 0x41, 0x42, 0x41,\n\t0x43, 0x41, 0x44, 0x41, 0x45, 0x41, 0x46, 0x41,\n\t0x47, 0x41, 0x48, 0x41, 0x49, 0x41, 0x4A, 0x41,\n\t0x4B, 0x41, 0x4C, 0x41, 0x4D, 0x41, 0x4E, 0x41,\n\t0x4F, 0x41, 0x50, 0x41, 0x51, 0x41, 0x52, 0x41,\n\t0x53, 0x41, 0x54, 0x41, 0x55, 0x41, 0x56, 0x41,\n\t0x57, 0x41, 0x58, 0x41, 0x59, 0x41, 0x5A, 0x41,\n\t0x5B, 0x41, 0x5C, 0x41, 0x5D, 0x41, 0x5E, 0x41,\n\t// Bytes 80 - bf\n\t0x5F, 0x41, 0x60, 0x41, 0x61, 0x41, 0x62, 0x41,\n\t0x63, 0x41, 0x64, 0x41, 0x65, 0x41, 0x66, 0x41,\n\t0x67, 0x41, 0x68, 0x41, 0x69, 0x41, 0x6A, 0x41,\n\t0x6B, 0x41, 0x6C, 0x41, 0x6D, 0x41, 0x6E, 0x41,\n\t0x6F, 0x41, 0x70, 0x41, 0x71, 0x41, 0x72, 0x41,\n\t0x73, 0x41, 0x74, 0x41, 0x75, 0x41, 0x76, 0x41,\n\t0x77, 0x41, 0x78, 0x41, 0x79, 0x41, 0x7A, 0x41,\n\t0x7B, 0x41, 0x7C, 0x41, 0x7D, 0x41, 0x7E, 0x42,\n\t// Bytes c0 - ff\n\t0xC2, 0xA2, 0x42, 0xC2, 0xA3, 0x42, 0xC2, 0xA5,\n\t0x42, 0xC2, 0xA6, 0x42, 0xC2, 0xAC, 0x42, 0xC2,\n\t0xB7, 0x42, 0xC3, 0x86, 0x42, 0xC3, 0xB0, 0x42,\n\t0xC4, 0xA6, 0x42, 0xC4, 0xA7, 0x42, 0xC4, 0xB1,\n\t0x42, 0xC5, 0x8B, 0x42, 0xC5, 0x93, 0x42, 0xC6,\n\t0x8E, 0x42, 0xC6, 0x90, 0x42, 0xC6, 0xAB, 0x42,\n\t0xC8, 0xA2, 0x42, 0xC8, 0xB7, 0x42, 0xC9, 0x90,\n\t0x42, 0xC9, 0x91, 0x42, 0xC9, 0x92, 0x42, 0xC9,\n\t// Bytes 100 - 13f\n\t0x94, 0x42, 0xC9, 0x95, 0x42, 0xC9, 0x99, 0x42,\n\t0xC9, 0x9B, 0x42, 0xC9, 0x9C, 0x42, 0xC9, 0x9F,\n\t0x42, 0xC9, 0xA1, 0x42, 0xC9, 0xA3, 0x42, 0xC9,\n\t0xA5, 0x42, 0xC9, 0xA6, 0x42, 0xC9, 0xA8, 0x42,\n\t0xC9, 0xA9, 0x42, 0xC9, 0xAA, 0x42, 0xC9, 0xAB,\n\t0x42, 0xC9, 0xAD, 0x42, 0xC9, 0xAF, 0x42, 0xC9,\n\t0xB0, 0x42, 0xC9, 0xB1, 0x42, 0xC9, 0xB2, 0x42,\n\t0xC9, 0xB3, 0x42, 0xC9, 0xB4, 0x42, 0xC9, 0xB5,\n\t// Bytes 140 - 17f\n\t0x42, 0xC9, 0xB8, 0x42, 0xC9, 0xB9, 0x42, 0xC9,\n\t0xBB, 0x42, 0xCA, 0x81, 0x42, 0xCA, 0x82, 0x42,\n\t0xCA, 0x83, 0x42, 0xCA, 0x89, 0x42, 0xCA, 0x8A,\n\t0x42, 0xCA, 0x8B, 0x42, 0xCA, 0x8C, 0x42, 0xCA,\n\t0x90, 0x42, 0xCA, 0x91, 0x42, 0xCA, 0x92, 0x42,\n\t0xCA, 0x95, 0x42, 0xCA, 0x9D, 0x42, 0xCA, 0x9F,\n\t0x42, 0xCA, 0xB9, 0x42, 0xCE, 0x91, 0x42, 0xCE,\n\t0x92, 0x42, 0xCE, 0x93, 0x42, 0xCE, 0x94, 0x42,\n\t// Bytes 180 - 1bf\n\t0xCE, 0x95, 0x42, 0xCE, 0x96, 0x42, 0xCE, 0x97,\n\t0x42, 0xCE, 0x98, 0x42, 0xCE, 0x99, 0x42, 0xCE,\n\t0x9A, 0x42, 0xCE, 0x9B, 0x42, 0xCE, 0x9C, 0x42,\n\t0xCE, 0x9D, 0x42, 0xCE, 0x9E, 0x42, 0xCE, 0x9F,\n\t0x42, 0xCE, 0xA0, 0x42, 0xCE, 0xA1, 0x42, 0xCE,\n\t0xA3, 0x42, 0xCE, 0xA4, 0x42, 0xCE, 0xA5, 0x42,\n\t0xCE, 0xA6, 0x42, 0xCE, 0xA7, 0x42, 0xCE, 0xA8,\n\t0x42, 0xCE, 0xA9, 0x42, 0xCE, 0xB1, 0x42, 0xCE,\n\t// Bytes 1c0 - 1ff\n\t0xB2, 0x42, 0xCE, 0xB3, 0x42, 0xCE, 0xB4, 0x42,\n\t0xCE, 0xB5, 0x42, 0xCE, 0xB6, 0x42, 0xCE, 0xB7,\n\t0x42, 0xCE, 0xB8, 0x42, 0xCE, 0xB9, 0x42, 0xCE,\n\t0xBA, 0x42, 0xCE, 0xBB, 0x42, 0xCE, 0xBC, 0x42,\n\t0xCE, 0xBD, 0x42, 0xCE, 0xBE, 0x42, 0xCE, 0xBF,\n\t0x42, 0xCF, 0x80, 0x42, 0xCF, 0x81, 0x42, 0xCF,\n\t0x82, 0x42, 0xCF, 0x83, 0x42, 0xCF, 0x84, 0x42,\n\t0xCF, 0x85, 0x42, 0xCF, 0x86, 0x42, 0xCF, 0x87,\n\t// Bytes 200 - 23f\n\t0x42, 0xCF, 0x88, 0x42, 0xCF, 0x89, 0x42, 0xCF,\n\t0x9C, 0x42, 0xCF, 0x9D, 0x42, 0xD0, 0xBD, 0x42,\n\t0xD1, 0x8A, 0x42, 0xD1, 0x8C, 0x42, 0xD7, 0x90,\n\t0x42, 0xD7, 0x91, 0x42, 0xD7, 0x92, 0x42, 0xD7,\n\t0x93, 0x42, 0xD7, 0x94, 0x42, 0xD7, 0x9B, 0x42,\n\t0xD7, 0x9C, 0x42, 0xD7, 0x9D, 0x42, 0xD7, 0xA2,\n\t0x42, 0xD7, 0xA8, 0x42, 0xD7, 0xAA, 0x42, 0xD8,\n\t0xA1, 0x42, 0xD8, 0xA7, 0x42, 0xD8, 0xA8, 0x42,\n\t// Bytes 240 - 27f\n\t0xD8, 0xA9, 0x42, 0xD8, 0xAA, 0x42, 0xD8, 0xAB,\n\t0x42, 0xD8, 0xAC, 0x42, 0xD8, 0xAD, 0x42, 0xD8,\n\t0xAE, 0x42, 0xD8, 0xAF, 0x42, 0xD8, 0xB0, 0x42,\n\t0xD8, 0xB1, 0x42, 0xD8, 0xB2, 0x42, 0xD8, 0xB3,\n\t0x42, 0xD8, 0xB4, 0x42, 0xD8, 0xB5, 0x42, 0xD8,\n\t0xB6, 0x42, 0xD8, 0xB7, 0x42, 0xD8, 0xB8, 0x42,\n\t0xD8, 0xB9, 0x42, 0xD8, 0xBA, 0x42, 0xD9, 0x81,\n\t0x42, 0xD9, 0x82, 0x42, 0xD9, 0x83, 0x42, 0xD9,\n\t// Bytes 280 - 2bf\n\t0x84, 0x42, 0xD9, 0x85, 0x42, 0xD9, 0x86, 0x42,\n\t0xD9, 0x87, 0x42, 0xD9, 0x88, 0x42, 0xD9, 0x89,\n\t0x42, 0xD9, 0x8A, 0x42, 0xD9, 0xAE, 0x42, 0xD9,\n\t0xAF, 0x42, 0xD9, 0xB1, 0x42, 0xD9, 0xB9, 0x42,\n\t0xD9, 0xBA, 0x42, 0xD9, 0xBB, 0x42, 0xD9, 0xBE,\n\t0x42, 0xD9, 0xBF, 0x42, 0xDA, 0x80, 0x42, 0xDA,\n\t0x83, 0x42, 0xDA, 0x84, 0x42, 0xDA, 0x86, 0x42,\n\t0xDA, 0x87, 0x42, 0xDA, 0x88, 0x42, 0xDA, 0x8C,\n\t// Bytes 2c0 - 2ff\n\t0x42, 0xDA, 0x8D, 0x42, 0xDA, 0x8E, 0x42, 0xDA,\n\t0x91, 0x42, 0xDA, 0x98, 0x42, 0xDA, 0xA1, 0x42,\n\t0xDA, 0xA4, 0x42, 0xDA, 0xA6, 0x42, 0xDA, 0xA9,\n\t0x42, 0xDA, 0xAD, 0x42, 0xDA, 0xAF, 0x42, 0xDA,\n\t0xB1, 0x42, 0xDA, 0xB3, 0x42, 0xDA, 0xBA, 0x42,\n\t0xDA, 0xBB, 0x42, 0xDA, 0xBE, 0x42, 0xDB, 0x81,\n\t0x42, 0xDB, 0x85, 0x42, 0xDB, 0x86, 0x42, 0xDB,\n\t0x87, 0x42, 0xDB, 0x88, 0x42, 0xDB, 0x89, 0x42,\n\t// Bytes 300 - 33f\n\t0xDB, 0x8B, 0x42, 0xDB, 0x8C, 0x42, 0xDB, 0x90,\n\t0x42, 0xDB, 0x92, 0x43, 0xE0, 0xBC, 0x8B, 0x43,\n\t0xE1, 0x83, 0x9C, 0x43, 0xE1, 0x84, 0x80, 0x43,\n\t0xE1, 0x84, 0x81, 0x43, 0xE1, 0x84, 0x82, 0x43,\n\t0xE1, 0x84, 0x83, 0x43, 0xE1, 0x84, 0x84, 0x43,\n\t0xE1, 0x84, 0x85, 0x43, 0xE1, 0x84, 0x86, 0x43,\n\t0xE1, 0x84, 0x87, 0x43, 0xE1, 0x84, 0x88, 0x43,\n\t0xE1, 0x84, 0x89, 0x43, 0xE1, 0x84, 0x8A, 0x43,\n\t// Bytes 340 - 37f\n\t0xE1, 0x84, 0x8B, 0x43, 0xE1, 0x84, 0x8C, 0x43,\n\t0xE1, 0x84, 0x8D, 0x43, 0xE1, 0x84, 0x8E, 0x43,\n\t0xE1, 0x84, 0x8F, 0x43, 0xE1, 0x84, 0x90, 0x43,\n\t0xE1, 0x84, 0x91, 0x43, 0xE1, 0x84, 0x92, 0x43,\n\t0xE1, 0x84, 0x94, 0x43, 0xE1, 0x84, 0x95, 0x43,\n\t0xE1, 0x84, 0x9A, 0x43, 0xE1, 0x84, 0x9C, 0x43,\n\t0xE1, 0x84, 0x9D, 0x43, 0xE1, 0x84, 0x9E, 0x43,\n\t0xE1, 0x84, 0xA0, 0x43, 0xE1, 0x84, 0xA1, 0x43,\n\t// Bytes 380 - 3bf\n\t0xE1, 0x84, 0xA2, 0x43, 0xE1, 0x84, 0xA3, 0x43,\n\t0xE1, 0x84, 0xA7, 0x43, 0xE1, 0x84, 0xA9, 0x43,\n\t0xE1, 0x84, 0xAB, 0x43, 0xE1, 0x84, 0xAC, 0x43,\n\t0xE1, 0x84, 0xAD, 0x43, 0xE1, 0x84, 0xAE, 0x43,\n\t0xE1, 0x84, 0xAF, 0x43, 0xE1, 0x84, 0xB2, 0x43,\n\t0xE1, 0x84, 0xB6, 0x43, 0xE1, 0x85, 0x80, 0x43,\n\t0xE1, 0x85, 0x87, 0x43, 0xE1, 0x85, 0x8C, 0x43,\n\t0xE1, 0x85, 0x97, 0x43, 0xE1, 0x85, 0x98, 0x43,\n\t// Bytes 3c0 - 3ff\n\t0xE1, 0x85, 0x99, 0x43, 0xE1, 0x85, 0xA0, 0x43,\n\t0xE1, 0x86, 0x84, 0x43, 0xE1, 0x86, 0x85, 0x43,\n\t0xE1, 0x86, 0x88, 0x43, 0xE1, 0x86, 0x91, 0x43,\n\t0xE1, 0x86, 0x92, 0x43, 0xE1, 0x86, 0x94, 0x43,\n\t0xE1, 0x86, 0x9E, 0x43, 0xE1, 0x86, 0xA1, 0x43,\n\t0xE1, 0x87, 0x87, 0x43, 0xE1, 0x87, 0x88, 0x43,\n\t0xE1, 0x87, 0x8C, 0x43, 0xE1, 0x87, 0x8E, 0x43,\n\t0xE1, 0x87, 0x93, 0x43, 0xE1, 0x87, 0x97, 0x43,\n\t// Bytes 400 - 43f\n\t0xE1, 0x87, 0x99, 0x43, 0xE1, 0x87, 0x9D, 0x43,\n\t0xE1, 0x87, 0x9F, 0x43, 0xE1, 0x87, 0xB1, 0x43,\n\t0xE1, 0x87, 0xB2, 0x43, 0xE1, 0xB4, 0x82, 0x43,\n\t0xE1, 0xB4, 0x96, 0x43, 0xE1, 0xB4, 0x97, 0x43,\n\t0xE1, 0xB4, 0x9C, 0x43, 0xE1, 0xB4, 0x9D, 0x43,\n\t0xE1, 0xB4, 0xA5, 0x43, 0xE1, 0xB5, 0xBB, 0x43,\n\t0xE1, 0xB6, 0x85, 0x43, 0xE2, 0x80, 0x82, 0x43,\n\t0xE2, 0x80, 0x83, 0x43, 0xE2, 0x80, 0x90, 0x43,\n\t// Bytes 440 - 47f\n\t0xE2, 0x80, 0x93, 0x43, 0xE2, 0x80, 0x94, 0x43,\n\t0xE2, 0x82, 0xA9, 0x43, 0xE2, 0x86, 0x90, 0x43,\n\t0xE2, 0x86, 0x91, 0x43, 0xE2, 0x86, 0x92, 0x43,\n\t0xE2, 0x86, 0x93, 0x43, 0xE2, 0x88, 0x82, 0x43,\n\t0xE2, 0x88, 0x87, 0x43, 0xE2, 0x88, 0x91, 0x43,\n\t0xE2, 0x88, 0x92, 0x43, 0xE2, 0x94, 0x82, 0x43,\n\t0xE2, 0x96, 0xA0, 0x43, 0xE2, 0x97, 0x8B, 0x43,\n\t0xE2, 0xA6, 0x85, 0x43, 0xE2, 0xA6, 0x86, 0x43,\n\t// Bytes 480 - 4bf\n\t0xE2, 0xB5, 0xA1, 0x43, 0xE3, 0x80, 0x81, 0x43,\n\t0xE3, 0x80, 0x82, 0x43, 0xE3, 0x80, 0x88, 0x43,\n\t0xE3, 0x80, 0x89, 0x43, 0xE3, 0x80, 0x8A, 0x43,\n\t0xE3, 0x80, 0x8B, 0x43, 0xE3, 0x80, 0x8C, 0x43,\n\t0xE3, 0x80, 0x8D, 0x43, 0xE3, 0x80, 0x8E, 0x43,\n\t0xE3, 0x80, 0x8F, 0x43, 0xE3, 0x80, 0x90, 0x43,\n\t0xE3, 0x80, 0x91, 0x43, 0xE3, 0x80, 0x92, 0x43,\n\t0xE3, 0x80, 0x94, 0x43, 0xE3, 0x80, 0x95, 0x43,\n\t// Bytes 4c0 - 4ff\n\t0xE3, 0x80, 0x96, 0x43, 0xE3, 0x80, 0x97, 0x43,\n\t0xE3, 0x82, 0xA1, 0x43, 0xE3, 0x82, 0xA2, 0x43,\n\t0xE3, 0x82, 0xA3, 0x43, 0xE3, 0x82, 0xA4, 0x43,\n\t0xE3, 0x82, 0xA5, 0x43, 0xE3, 0x82, 0xA6, 0x43,\n\t0xE3, 0x82, 0xA7, 0x43, 0xE3, 0x82, 0xA8, 0x43,\n\t0xE3, 0x82, 0xA9, 0x43, 0xE3, 0x82, 0xAA, 0x43,\n\t0xE3, 0x82, 0xAB, 0x43, 0xE3, 0x82, 0xAD, 0x43,\n\t0xE3, 0x82, 0xAF, 0x43, 0xE3, 0x82, 0xB1, 0x43,\n\t// Bytes 500 - 53f\n\t0xE3, 0x82, 0xB3, 0x43, 0xE3, 0x82, 0xB5, 0x43,\n\t0xE3, 0x82, 0xB7, 0x43, 0xE3, 0x82, 0xB9, 0x43,\n\t0xE3, 0x82, 0xBB, 0x43, 0xE3, 0x82, 0xBD, 0x43,\n\t0xE3, 0x82, 0xBF, 0x43, 0xE3, 0x83, 0x81, 0x43,\n\t0xE3, 0x83, 0x83, 0x43, 0xE3, 0x83, 0x84, 0x43,\n\t0xE3, 0x83, 0x86, 0x43, 0xE3, 0x83, 0x88, 0x43,\n\t0xE3, 0x83, 0x8A, 0x43, 0xE3, 0x83, 0x8B, 0x43,\n\t0xE3, 0x83, 0x8C, 0x43, 0xE3, 0x83, 0x8D, 0x43,\n\t// Bytes 540 - 57f\n\t0xE3, 0x83, 0x8E, 0x43, 0xE3, 0x83, 0x8F, 0x43,\n\t0xE3, 0x83, 0x92, 0x43, 0xE3, 0x83, 0x95, 0x43,\n\t0xE3, 0x83, 0x98, 0x43, 0xE3, 0x83, 0x9B, 0x43,\n\t0xE3, 0x83, 0x9E, 0x43, 0xE3, 0x83, 0x9F, 0x43,\n\t0xE3, 0x83, 0xA0, 0x43, 0xE3, 0x83, 0xA1, 0x43,\n\t0xE3, 0x83, 0xA2, 0x43, 0xE3, 0x83, 0xA3, 0x43,\n\t0xE3, 0x83, 0xA4, 0x43, 0xE3, 0x83, 0xA5, 0x43,\n\t0xE3, 0x83, 0xA6, 0x43, 0xE3, 0x83, 0xA7, 0x43,\n\t// Bytes 580 - 5bf\n\t0xE3, 0x83, 0xA8, 0x43, 0xE3, 0x83, 0xA9, 0x43,\n\t0xE3, 0x83, 0xAA, 0x43, 0xE3, 0x83, 0xAB, 0x43,\n\t0xE3, 0x83, 0xAC, 0x43, 0xE3, 0x83, 0xAD, 0x43,\n\t0xE3, 0x83, 0xAF, 0x43, 0xE3, 0x83, 0xB0, 0x43,\n\t0xE3, 0x83, 0xB1, 0x43, 0xE3, 0x83, 0xB2, 0x43,\n\t0xE3, 0x83, 0xB3, 0x43, 0xE3, 0x83, 0xBB, 0x43,\n\t0xE3, 0x83, 0xBC, 0x43, 0xE3, 0x92, 0x9E, 0x43,\n\t0xE3, 0x92, 0xB9, 0x43, 0xE3, 0x92, 0xBB, 0x43,\n\t// Bytes 5c0 - 5ff\n\t0xE3, 0x93, 0x9F, 0x43, 0xE3, 0x94, 0x95, 0x43,\n\t0xE3, 0x9B, 0xAE, 0x43, 0xE3, 0x9B, 0xBC, 0x43,\n\t0xE3, 0x9E, 0x81, 0x43, 0xE3, 0xA0, 0xAF, 0x43,\n\t0xE3, 0xA1, 0xA2, 0x43, 0xE3, 0xA1, 0xBC, 0x43,\n\t0xE3, 0xA3, 0x87, 0x43, 0xE3, 0xA3, 0xA3, 0x43,\n\t0xE3, 0xA4, 0x9C, 0x43, 0xE3, 0xA4, 0xBA, 0x43,\n\t0xE3, 0xA8, 0xAE, 0x43, 0xE3, 0xA9, 0xAC, 0x43,\n\t0xE3, 0xAB, 0xA4, 0x43, 0xE3, 0xAC, 0x88, 0x43,\n\t// Bytes 600 - 63f\n\t0xE3, 0xAC, 0x99, 0x43, 0xE3, 0xAD, 0x89, 0x43,\n\t0xE3, 0xAE, 0x9D, 0x43, 0xE3, 0xB0, 0x98, 0x43,\n\t0xE3, 0xB1, 0x8E, 0x43, 0xE3, 0xB4, 0xB3, 0x43,\n\t0xE3, 0xB6, 0x96, 0x43, 0xE3, 0xBA, 0xAC, 0x43,\n\t0xE3, 0xBA, 0xB8, 0x43, 0xE3, 0xBC, 0x9B, 0x43,\n\t0xE3, 0xBF, 0xBC, 0x43, 0xE4, 0x80, 0x88, 0x43,\n\t0xE4, 0x80, 0x98, 0x43, 0xE4, 0x80, 0xB9, 0x43,\n\t0xE4, 0x81, 0x86, 0x43, 0xE4, 0x82, 0x96, 0x43,\n\t// Bytes 640 - 67f\n\t0xE4, 0x83, 0xA3, 0x43, 0xE4, 0x84, 0xAF, 0x43,\n\t0xE4, 0x88, 0x82, 0x43, 0xE4, 0x88, 0xA7, 0x43,\n\t0xE4, 0x8A, 0xA0, 0x43, 0xE4, 0x8C, 0x81, 0x43,\n\t0xE4, 0x8C, 0xB4, 0x43, 0xE4, 0x8D, 0x99, 0x43,\n\t0xE4, 0x8F, 0x95, 0x43, 0xE4, 0x8F, 0x99, 0x43,\n\t0xE4, 0x90, 0x8B, 0x43, 0xE4, 0x91, 0xAB, 0x43,\n\t0xE4, 0x94, 0xAB, 0x43, 0xE4, 0x95, 0x9D, 0x43,\n\t0xE4, 0x95, 0xA1, 0x43, 0xE4, 0x95, 0xAB, 0x43,\n\t// Bytes 680 - 6bf\n\t0xE4, 0x97, 0x97, 0x43, 0xE4, 0x97, 0xB9, 0x43,\n\t0xE4, 0x98, 0xB5, 0x43, 0xE4, 0x9A, 0xBE, 0x43,\n\t0xE4, 0x9B, 0x87, 0x43, 0xE4, 0xA6, 0x95, 0x43,\n\t0xE4, 0xA7, 0xA6, 0x43, 0xE4, 0xA9, 0xAE, 0x43,\n\t0xE4, 0xA9, 0xB6, 0x43, 0xE4, 0xAA, 0xB2, 0x43,\n\t0xE4, 0xAC, 0xB3, 0x43, 0xE4, 0xAF, 0x8E, 0x43,\n\t0xE4, 0xB3, 0x8E, 0x43, 0xE4, 0xB3, 0xAD, 0x43,\n\t0xE4, 0xB3, 0xB8, 0x43, 0xE4, 0xB5, 0x96, 0x43,\n\t// Bytes 6c0 - 6ff\n\t0xE4, 0xB8, 0x80, 0x43, 0xE4, 0xB8, 0x81, 0x43,\n\t0xE4, 0xB8, 0x83, 0x43, 0xE4, 0xB8, 0x89, 0x43,\n\t0xE4, 0xB8, 0x8A, 0x43, 0xE4, 0xB8, 0x8B, 0x43,\n\t0xE4, 0xB8, 0x8D, 0x43, 0xE4, 0xB8, 0x99, 0x43,\n\t0xE4, 0xB8, 0xA6, 0x43, 0xE4, 0xB8, 0xA8, 0x43,\n\t0xE4, 0xB8, 0xAD, 0x43, 0xE4, 0xB8, 0xB2, 0x43,\n\t0xE4, 0xB8, 0xB6, 0x43, 0xE4, 0xB8, 0xB8, 0x43,\n\t0xE4, 0xB8, 0xB9, 0x43, 0xE4, 0xB8, 0xBD, 0x43,\n\t// Bytes 700 - 73f\n\t0xE4, 0xB8, 0xBF, 0x43, 0xE4, 0xB9, 0x81, 0x43,\n\t0xE4, 0xB9, 0x99, 0x43, 0xE4, 0xB9, 0x9D, 0x43,\n\t0xE4, 0xBA, 0x82, 0x43, 0xE4, 0xBA, 0x85, 0x43,\n\t0xE4, 0xBA, 0x86, 0x43, 0xE4, 0xBA, 0x8C, 0x43,\n\t0xE4, 0xBA, 0x94, 0x43, 0xE4, 0xBA, 0xA0, 0x43,\n\t0xE4, 0xBA, 0xA4, 0x43, 0xE4, 0xBA, 0xAE, 0x43,\n\t0xE4, 0xBA, 0xBA, 0x43, 0xE4, 0xBB, 0x80, 0x43,\n\t0xE4, 0xBB, 0x8C, 0x43, 0xE4, 0xBB, 0xA4, 0x43,\n\t// Bytes 740 - 77f\n\t0xE4, 0xBC, 0x81, 0x43, 0xE4, 0xBC, 0x91, 0x43,\n\t0xE4, 0xBD, 0xA0, 0x43, 0xE4, 0xBE, 0x80, 0x43,\n\t0xE4, 0xBE, 0x86, 0x43, 0xE4, 0xBE, 0x8B, 0x43,\n\t0xE4, 0xBE, 0xAE, 0x43, 0xE4, 0xBE, 0xBB, 0x43,\n\t0xE4, 0xBE, 0xBF, 0x43, 0xE5, 0x80, 0x82, 0x43,\n\t0xE5, 0x80, 0xAB, 0x43, 0xE5, 0x81, 0xBA, 0x43,\n\t0xE5, 0x82, 0x99, 0x43, 0xE5, 0x83, 0x8F, 0x43,\n\t0xE5, 0x83, 0x9A, 0x43, 0xE5, 0x83, 0xA7, 0x43,\n\t// Bytes 780 - 7bf\n\t0xE5, 0x84, 0xAA, 0x43, 0xE5, 0x84, 0xBF, 0x43,\n\t0xE5, 0x85, 0x80, 0x43, 0xE5, 0x85, 0x85, 0x43,\n\t0xE5, 0x85, 0x8D, 0x43, 0xE5, 0x85, 0x94, 0x43,\n\t0xE5, 0x85, 0xA4, 0x43, 0xE5, 0x85, 0xA5, 0x43,\n\t0xE5, 0x85, 0xA7, 0x43, 0xE5, 0x85, 0xA8, 0x43,\n\t0xE5, 0x85, 0xA9, 0x43, 0xE5, 0x85, 0xAB, 0x43,\n\t0xE5, 0x85, 0xAD, 0x43, 0xE5, 0x85, 0xB7, 0x43,\n\t0xE5, 0x86, 0x80, 0x43, 0xE5, 0x86, 0x82, 0x43,\n\t// Bytes 7c0 - 7ff\n\t0xE5, 0x86, 0x8D, 0x43, 0xE5, 0x86, 0x92, 0x43,\n\t0xE5, 0x86, 0x95, 0x43, 0xE5, 0x86, 0x96, 0x43,\n\t0xE5, 0x86, 0x97, 0x43, 0xE5, 0x86, 0x99, 0x43,\n\t0xE5, 0x86, 0xA4, 0x43, 0xE5, 0x86, 0xAB, 0x43,\n\t0xE5, 0x86, 0xAC, 0x43, 0xE5, 0x86, 0xB5, 0x43,\n\t0xE5, 0x86, 0xB7, 0x43, 0xE5, 0x87, 0x89, 0x43,\n\t0xE5, 0x87, 0x8C, 0x43, 0xE5, 0x87, 0x9C, 0x43,\n\t0xE5, 0x87, 0x9E, 0x43, 0xE5, 0x87, 0xA0, 0x43,\n\t// Bytes 800 - 83f\n\t0xE5, 0x87, 0xB5, 0x43, 0xE5, 0x88, 0x80, 0x43,\n\t0xE5, 0x88, 0x83, 0x43, 0xE5, 0x88, 0x87, 0x43,\n\t0xE5, 0x88, 0x97, 0x43, 0xE5, 0x88, 0x9D, 0x43,\n\t0xE5, 0x88, 0xA9, 0x43, 0xE5, 0x88, 0xBA, 0x43,\n\t0xE5, 0x88, 0xBB, 0x43, 0xE5, 0x89, 0x86, 0x43,\n\t0xE5, 0x89, 0x8D, 0x43, 0xE5, 0x89, 0xB2, 0x43,\n\t0xE5, 0x89, 0xB7, 0x43, 0xE5, 0x8A, 0x89, 0x43,\n\t0xE5, 0x8A, 0x9B, 0x43, 0xE5, 0x8A, 0xA3, 0x43,\n\t// Bytes 840 - 87f\n\t0xE5, 0x8A, 0xB3, 0x43, 0xE5, 0x8A, 0xB4, 0x43,\n\t0xE5, 0x8B, 0x87, 0x43, 0xE5, 0x8B, 0x89, 0x43,\n\t0xE5, 0x8B, 0x92, 0x43, 0xE5, 0x8B, 0x9E, 0x43,\n\t0xE5, 0x8B, 0xA4, 0x43, 0xE5, 0x8B, 0xB5, 0x43,\n\t0xE5, 0x8B, 0xB9, 0x43, 0xE5, 0x8B, 0xBA, 0x43,\n\t0xE5, 0x8C, 0x85, 0x43, 0xE5, 0x8C, 0x86, 0x43,\n\t0xE5, 0x8C, 0x95, 0x43, 0xE5, 0x8C, 0x97, 0x43,\n\t0xE5, 0x8C, 0x9A, 0x43, 0xE5, 0x8C, 0xB8, 0x43,\n\t// Bytes 880 - 8bf\n\t0xE5, 0x8C, 0xBB, 0x43, 0xE5, 0x8C, 0xBF, 0x43,\n\t0xE5, 0x8D, 0x81, 0x43, 0xE5, 0x8D, 0x84, 0x43,\n\t0xE5, 0x8D, 0x85, 0x43, 0xE5, 0x8D, 0x89, 0x43,\n\t0xE5, 0x8D, 0x91, 0x43, 0xE5, 0x8D, 0x94, 0x43,\n\t0xE5, 0x8D, 0x9A, 0x43, 0xE5, 0x8D, 0x9C, 0x43,\n\t0xE5, 0x8D, 0xA9, 0x43, 0xE5, 0x8D, 0xB0, 0x43,\n\t0xE5, 0x8D, 0xB3, 0x43, 0xE5, 0x8D, 0xB5, 0x43,\n\t0xE5, 0x8D, 0xBD, 0x43, 0xE5, 0x8D, 0xBF, 0x43,\n\t// Bytes 8c0 - 8ff\n\t0xE5, 0x8E, 0x82, 0x43, 0xE5, 0x8E, 0xB6, 0x43,\n\t0xE5, 0x8F, 0x83, 0x43, 0xE5, 0x8F, 0x88, 0x43,\n\t0xE5, 0x8F, 0x8A, 0x43, 0xE5, 0x8F, 0x8C, 0x43,\n\t0xE5, 0x8F, 0x9F, 0x43, 0xE5, 0x8F, 0xA3, 0x43,\n\t0xE5, 0x8F, 0xA5, 0x43, 0xE5, 0x8F, 0xAB, 0x43,\n\t0xE5, 0x8F, 0xAF, 0x43, 0xE5, 0x8F, 0xB1, 0x43,\n\t0xE5, 0x8F, 0xB3, 0x43, 0xE5, 0x90, 0x86, 0x43,\n\t0xE5, 0x90, 0x88, 0x43, 0xE5, 0x90, 0x8D, 0x43,\n\t// Bytes 900 - 93f\n\t0xE5, 0x90, 0x8F, 0x43, 0xE5, 0x90, 0x9D, 0x43,\n\t0xE5, 0x90, 0xB8, 0x43, 0xE5, 0x90, 0xB9, 0x43,\n\t0xE5, 0x91, 0x82, 0x43, 0xE5, 0x91, 0x88, 0x43,\n\t0xE5, 0x91, 0xA8, 0x43, 0xE5, 0x92, 0x9E, 0x43,\n\t0xE5, 0x92, 0xA2, 0x43, 0xE5, 0x92, 0xBD, 0x43,\n\t0xE5, 0x93, 0xB6, 0x43, 0xE5, 0x94, 0x90, 0x43,\n\t0xE5, 0x95, 0x8F, 0x43, 0xE5, 0x95, 0x93, 0x43,\n\t0xE5, 0x95, 0x95, 0x43, 0xE5, 0x95, 0xA3, 0x43,\n\t// Bytes 940 - 97f\n\t0xE5, 0x96, 0x84, 0x43, 0xE5, 0x96, 0x87, 0x43,\n\t0xE5, 0x96, 0x99, 0x43, 0xE5, 0x96, 0x9D, 0x43,\n\t0xE5, 0x96, 0xAB, 0x43, 0xE5, 0x96, 0xB3, 0x43,\n\t0xE5, 0x96, 0xB6, 0x43, 0xE5, 0x97, 0x80, 0x43,\n\t0xE5, 0x97, 0x82, 0x43, 0xE5, 0x97, 0xA2, 0x43,\n\t0xE5, 0x98, 0x86, 0x43, 0xE5, 0x99, 0x91, 0x43,\n\t0xE5, 0x99, 0xA8, 0x43, 0xE5, 0x99, 0xB4, 0x43,\n\t0xE5, 0x9B, 0x97, 0x43, 0xE5, 0x9B, 0x9B, 0x43,\n\t// Bytes 980 - 9bf\n\t0xE5, 0x9B, 0xB9, 0x43, 0xE5, 0x9C, 0x96, 0x43,\n\t0xE5, 0x9C, 0x97, 0x43, 0xE5, 0x9C, 0x9F, 0x43,\n\t0xE5, 0x9C, 0xB0, 0x43, 0xE5, 0x9E, 0x8B, 0x43,\n\t0xE5, 0x9F, 0x8E, 0x43, 0xE5, 0x9F, 0xB4, 0x43,\n\t0xE5, 0xA0, 0x8D, 0x43, 0xE5, 0xA0, 0xB1, 0x43,\n\t0xE5, 0xA0, 0xB2, 0x43, 0xE5, 0xA1, 0x80, 0x43,\n\t0xE5, 0xA1, 0x9A, 0x43, 0xE5, 0xA1, 0x9E, 0x43,\n\t0xE5, 0xA2, 0xA8, 0x43, 0xE5, 0xA2, 0xAC, 0x43,\n\t// Bytes 9c0 - 9ff\n\t0xE5, 0xA2, 0xB3, 0x43, 0xE5, 0xA3, 0x98, 0x43,\n\t0xE5, 0xA3, 0x9F, 0x43, 0xE5, 0xA3, 0xAB, 0x43,\n\t0xE5, 0xA3, 0xAE, 0x43, 0xE5, 0xA3, 0xB0, 0x43,\n\t0xE5, 0xA3, 0xB2, 0x43, 0xE5, 0xA3, 0xB7, 0x43,\n\t0xE5, 0xA4, 0x82, 0x43, 0xE5, 0xA4, 0x86, 0x43,\n\t0xE5, 0xA4, 0x8A, 0x43, 0xE5, 0xA4, 0x95, 0x43,\n\t0xE5, 0xA4, 0x9A, 0x43, 0xE5, 0xA4, 0x9C, 0x43,\n\t0xE5, 0xA4, 0xA2, 0x43, 0xE5, 0xA4, 0xA7, 0x43,\n\t// Bytes a00 - a3f\n\t0xE5, 0xA4, 0xA9, 0x43, 0xE5, 0xA5, 0x84, 0x43,\n\t0xE5, 0xA5, 0x88, 0x43, 0xE5, 0xA5, 0x91, 0x43,\n\t0xE5, 0xA5, 0x94, 0x43, 0xE5, 0xA5, 0xA2, 0x43,\n\t0xE5, 0xA5, 0xB3, 0x43, 0xE5, 0xA7, 0x98, 0x43,\n\t0xE5, 0xA7, 0xAC, 0x43, 0xE5, 0xA8, 0x9B, 0x43,\n\t0xE5, 0xA8, 0xA7, 0x43, 0xE5, 0xA9, 0xA2, 0x43,\n\t0xE5, 0xA9, 0xA6, 0x43, 0xE5, 0xAA, 0xB5, 0x43,\n\t0xE5, 0xAC, 0x88, 0x43, 0xE5, 0xAC, 0xA8, 0x43,\n\t// Bytes a40 - a7f\n\t0xE5, 0xAC, 0xBE, 0x43, 0xE5, 0xAD, 0x90, 0x43,\n\t0xE5, 0xAD, 0x97, 0x43, 0xE5, 0xAD, 0xA6, 0x43,\n\t0xE5, 0xAE, 0x80, 0x43, 0xE5, 0xAE, 0x85, 0x43,\n\t0xE5, 0xAE, 0x97, 0x43, 0xE5, 0xAF, 0x83, 0x43,\n\t0xE5, 0xAF, 0x98, 0x43, 0xE5, 0xAF, 0xA7, 0x43,\n\t0xE5, 0xAF, 0xAE, 0x43, 0xE5, 0xAF, 0xB3, 0x43,\n\t0xE5, 0xAF, 0xB8, 0x43, 0xE5, 0xAF, 0xBF, 0x43,\n\t0xE5, 0xB0, 0x86, 0x43, 0xE5, 0xB0, 0x8F, 0x43,\n\t// Bytes a80 - abf\n\t0xE5, 0xB0, 0xA2, 0x43, 0xE5, 0xB0, 0xB8, 0x43,\n\t0xE5, 0xB0, 0xBF, 0x43, 0xE5, 0xB1, 0xA0, 0x43,\n\t0xE5, 0xB1, 0xA2, 0x43, 0xE5, 0xB1, 0xA4, 0x43,\n\t0xE5, 0xB1, 0xA5, 0x43, 0xE5, 0xB1, 0xAE, 0x43,\n\t0xE5, 0xB1, 0xB1, 0x43, 0xE5, 0xB2, 0x8D, 0x43,\n\t0xE5, 0xB3, 0x80, 0x43, 0xE5, 0xB4, 0x99, 0x43,\n\t0xE5, 0xB5, 0x83, 0x43, 0xE5, 0xB5, 0x90, 0x43,\n\t0xE5, 0xB5, 0xAB, 0x43, 0xE5, 0xB5, 0xAE, 0x43,\n\t// Bytes ac0 - aff\n\t0xE5, 0xB5, 0xBC, 0x43, 0xE5, 0xB6, 0xB2, 0x43,\n\t0xE5, 0xB6, 0xBA, 0x43, 0xE5, 0xB7, 0x9B, 0x43,\n\t0xE5, 0xB7, 0xA1, 0x43, 0xE5, 0xB7, 0xA2, 0x43,\n\t0xE5, 0xB7, 0xA5, 0x43, 0xE5, 0xB7, 0xA6, 0x43,\n\t0xE5, 0xB7, 0xB1, 0x43, 0xE5, 0xB7, 0xBD, 0x43,\n\t0xE5, 0xB7, 0xBE, 0x43, 0xE5, 0xB8, 0xA8, 0x43,\n\t0xE5, 0xB8, 0xBD, 0x43, 0xE5, 0xB9, 0xA9, 0x43,\n\t0xE5, 0xB9, 0xB2, 0x43, 0xE5, 0xB9, 0xB4, 0x43,\n\t// Bytes b00 - b3f\n\t0xE5, 0xB9, 0xBA, 0x43, 0xE5, 0xB9, 0xBC, 0x43,\n\t0xE5, 0xB9, 0xBF, 0x43, 0xE5, 0xBA, 0xA6, 0x43,\n\t0xE5, 0xBA, 0xB0, 0x43, 0xE5, 0xBA, 0xB3, 0x43,\n\t0xE5, 0xBA, 0xB6, 0x43, 0xE5, 0xBB, 0x89, 0x43,\n\t0xE5, 0xBB, 0x8A, 0x43, 0xE5, 0xBB, 0x92, 0x43,\n\t0xE5, 0xBB, 0x93, 0x43, 0xE5, 0xBB, 0x99, 0x43,\n\t0xE5, 0xBB, 0xAC, 0x43, 0xE5, 0xBB, 0xB4, 0x43,\n\t0xE5, 0xBB, 0xBE, 0x43, 0xE5, 0xBC, 0x84, 0x43,\n\t// Bytes b40 - b7f\n\t0xE5, 0xBC, 0x8B, 0x43, 0xE5, 0xBC, 0x93, 0x43,\n\t0xE5, 0xBC, 0xA2, 0x43, 0xE5, 0xBD, 0x90, 0x43,\n\t0xE5, 0xBD, 0x93, 0x43, 0xE5, 0xBD, 0xA1, 0x43,\n\t0xE5, 0xBD, 0xA2, 0x43, 0xE5, 0xBD, 0xA9, 0x43,\n\t0xE5, 0xBD, 0xAB, 0x43, 0xE5, 0xBD, 0xB3, 0x43,\n\t0xE5, 0xBE, 0x8B, 0x43, 0xE5, 0xBE, 0x8C, 0x43,\n\t0xE5, 0xBE, 0x97, 0x43, 0xE5, 0xBE, 0x9A, 0x43,\n\t0xE5, 0xBE, 0xA9, 0x43, 0xE5, 0xBE, 0xAD, 0x43,\n\t// Bytes b80 - bbf\n\t0xE5, 0xBF, 0x83, 0x43, 0xE5, 0xBF, 0x8D, 0x43,\n\t0xE5, 0xBF, 0x97, 0x43, 0xE5, 0xBF, 0xB5, 0x43,\n\t0xE5, 0xBF, 0xB9, 0x43, 0xE6, 0x80, 0x92, 0x43,\n\t0xE6, 0x80, 0x9C, 0x43, 0xE6, 0x81, 0xB5, 0x43,\n\t0xE6, 0x82, 0x81, 0x43, 0xE6, 0x82, 0x94, 0x43,\n\t0xE6, 0x83, 0x87, 0x43, 0xE6, 0x83, 0x98, 0x43,\n\t0xE6, 0x83, 0xA1, 0x43, 0xE6, 0x84, 0x88, 0x43,\n\t0xE6, 0x85, 0x84, 0x43, 0xE6, 0x85, 0x88, 0x43,\n\t// Bytes bc0 - bff\n\t0xE6, 0x85, 0x8C, 0x43, 0xE6, 0x85, 0x8E, 0x43,\n\t0xE6, 0x85, 0xA0, 0x43, 0xE6, 0x85, 0xA8, 0x43,\n\t0xE6, 0x85, 0xBA, 0x43, 0xE6, 0x86, 0x8E, 0x43,\n\t0xE6, 0x86, 0x90, 0x43, 0xE6, 0x86, 0xA4, 0x43,\n\t0xE6, 0x86, 0xAF, 0x43, 0xE6, 0x86, 0xB2, 0x43,\n\t0xE6, 0x87, 0x9E, 0x43, 0xE6, 0x87, 0xB2, 0x43,\n\t0xE6, 0x87, 0xB6, 0x43, 0xE6, 0x88, 0x80, 0x43,\n\t0xE6, 0x88, 0x88, 0x43, 0xE6, 0x88, 0x90, 0x43,\n\t// Bytes c00 - c3f\n\t0xE6, 0x88, 0x9B, 0x43, 0xE6, 0x88, 0xAE, 0x43,\n\t0xE6, 0x88, 0xB4, 0x43, 0xE6, 0x88, 0xB6, 0x43,\n\t0xE6, 0x89, 0x8B, 0x43, 0xE6, 0x89, 0x93, 0x43,\n\t0xE6, 0x89, 0x9D, 0x43, 0xE6, 0x8A, 0x95, 0x43,\n\t0xE6, 0x8A, 0xB1, 0x43, 0xE6, 0x8B, 0x89, 0x43,\n\t0xE6, 0x8B, 0x8F, 0x43, 0xE6, 0x8B, 0x93, 0x43,\n\t0xE6, 0x8B, 0x94, 0x43, 0xE6, 0x8B, 0xBC, 0x43,\n\t0xE6, 0x8B, 0xBE, 0x43, 0xE6, 0x8C, 0x87, 0x43,\n\t// Bytes c40 - c7f\n\t0xE6, 0x8C, 0xBD, 0x43, 0xE6, 0x8D, 0x90, 0x43,\n\t0xE6, 0x8D, 0x95, 0x43, 0xE6, 0x8D, 0xA8, 0x43,\n\t0xE6, 0x8D, 0xBB, 0x43, 0xE6, 0x8E, 0x83, 0x43,\n\t0xE6, 0x8E, 0xA0, 0x43, 0xE6, 0x8E, 0xA9, 0x43,\n\t0xE6, 0x8F, 0x84, 0x43, 0xE6, 0x8F, 0x85, 0x43,\n\t0xE6, 0x8F, 0xA4, 0x43, 0xE6, 0x90, 0x9C, 0x43,\n\t0xE6, 0x90, 0xA2, 0x43, 0xE6, 0x91, 0x92, 0x43,\n\t0xE6, 0x91, 0xA9, 0x43, 0xE6, 0x91, 0xB7, 0x43,\n\t// Bytes c80 - cbf\n\t0xE6, 0x91, 0xBE, 0x43, 0xE6, 0x92, 0x9A, 0x43,\n\t0xE6, 0x92, 0x9D, 0x43, 0xE6, 0x93, 0x84, 0x43,\n\t0xE6, 0x94, 0xAF, 0x43, 0xE6, 0x94, 0xB4, 0x43,\n\t0xE6, 0x95, 0x8F, 0x43, 0xE6, 0x95, 0x96, 0x43,\n\t0xE6, 0x95, 0xAC, 0x43, 0xE6, 0x95, 0xB8, 0x43,\n\t0xE6, 0x96, 0x87, 0x43, 0xE6, 0x96, 0x97, 0x43,\n\t0xE6, 0x96, 0x99, 0x43, 0xE6, 0x96, 0xA4, 0x43,\n\t0xE6, 0x96, 0xB0, 0x43, 0xE6, 0x96, 0xB9, 0x43,\n\t// Bytes cc0 - cff\n\t0xE6, 0x97, 0x85, 0x43, 0xE6, 0x97, 0xA0, 0x43,\n\t0xE6, 0x97, 0xA2, 0x43, 0xE6, 0x97, 0xA3, 0x43,\n\t0xE6, 0x97, 0xA5, 0x43, 0xE6, 0x98, 0x93, 0x43,\n\t0xE6, 0x98, 0xA0, 0x43, 0xE6, 0x99, 0x89, 0x43,\n\t0xE6, 0x99, 0xB4, 0x43, 0xE6, 0x9A, 0x88, 0x43,\n\t0xE6, 0x9A, 0x91, 0x43, 0xE6, 0x9A, 0x9C, 0x43,\n\t0xE6, 0x9A, 0xB4, 0x43, 0xE6, 0x9B, 0x86, 0x43,\n\t0xE6, 0x9B, 0xB0, 0x43, 0xE6, 0x9B, 0xB4, 0x43,\n\t// Bytes d00 - d3f\n\t0xE6, 0x9B, 0xB8, 0x43, 0xE6, 0x9C, 0x80, 0x43,\n\t0xE6, 0x9C, 0x88, 0x43, 0xE6, 0x9C, 0x89, 0x43,\n\t0xE6, 0x9C, 0x97, 0x43, 0xE6, 0x9C, 0x9B, 0x43,\n\t0xE6, 0x9C, 0xA1, 0x43, 0xE6, 0x9C, 0xA8, 0x43,\n\t0xE6, 0x9D, 0x8E, 0x43, 0xE6, 0x9D, 0x93, 0x43,\n\t0xE6, 0x9D, 0x96, 0x43, 0xE6, 0x9D, 0x9E, 0x43,\n\t0xE6, 0x9D, 0xBB, 0x43, 0xE6, 0x9E, 0x85, 0x43,\n\t0xE6, 0x9E, 0x97, 0x43, 0xE6, 0x9F, 0xB3, 0x43,\n\t// Bytes d40 - d7f\n\t0xE6, 0x9F, 0xBA, 0x43, 0xE6, 0xA0, 0x97, 0x43,\n\t0xE6, 0xA0, 0x9F, 0x43, 0xE6, 0xA0, 0xAA, 0x43,\n\t0xE6, 0xA1, 0x92, 0x43, 0xE6, 0xA2, 0x81, 0x43,\n\t0xE6, 0xA2, 0x85, 0x43, 0xE6, 0xA2, 0x8E, 0x43,\n\t0xE6, 0xA2, 0xA8, 0x43, 0xE6, 0xA4, 0x94, 0x43,\n\t0xE6, 0xA5, 0x82, 0x43, 0xE6, 0xA6, 0xA3, 0x43,\n\t0xE6, 0xA7, 0xAA, 0x43, 0xE6, 0xA8, 0x82, 0x43,\n\t0xE6, 0xA8, 0x93, 0x43, 0xE6, 0xAA, 0xA8, 0x43,\n\t// Bytes d80 - dbf\n\t0xE6, 0xAB, 0x93, 0x43, 0xE6, 0xAB, 0x9B, 0x43,\n\t0xE6, 0xAC, 0x84, 0x43, 0xE6, 0xAC, 0xA0, 0x43,\n\t0xE6, 0xAC, 0xA1, 0x43, 0xE6, 0xAD, 0x94, 0x43,\n\t0xE6, 0xAD, 0xA2, 0x43, 0xE6, 0xAD, 0xA3, 0x43,\n\t0xE6, 0xAD, 0xB2, 0x43, 0xE6, 0xAD, 0xB7, 0x43,\n\t0xE6, 0xAD, 0xB9, 0x43, 0xE6, 0xAE, 0x9F, 0x43,\n\t0xE6, 0xAE, 0xAE, 0x43, 0xE6, 0xAE, 0xB3, 0x43,\n\t0xE6, 0xAE, 0xBA, 0x43, 0xE6, 0xAE, 0xBB, 0x43,\n\t// Bytes dc0 - dff\n\t0xE6, 0xAF, 0x8B, 0x43, 0xE6, 0xAF, 0x8D, 0x43,\n\t0xE6, 0xAF, 0x94, 0x43, 0xE6, 0xAF, 0x9B, 0x43,\n\t0xE6, 0xB0, 0x8F, 0x43, 0xE6, 0xB0, 0x94, 0x43,\n\t0xE6, 0xB0, 0xB4, 0x43, 0xE6, 0xB1, 0x8E, 0x43,\n\t0xE6, 0xB1, 0xA7, 0x43, 0xE6, 0xB2, 0x88, 0x43,\n\t0xE6, 0xB2, 0xBF, 0x43, 0xE6, 0xB3, 0x8C, 0x43,\n\t0xE6, 0xB3, 0x8D, 0x43, 0xE6, 0xB3, 0xA5, 0x43,\n\t0xE6, 0xB3, 0xA8, 0x43, 0xE6, 0xB4, 0x96, 0x43,\n\t// Bytes e00 - e3f\n\t0xE6, 0xB4, 0x9B, 0x43, 0xE6, 0xB4, 0x9E, 0x43,\n\t0xE6, 0xB4, 0xB4, 0x43, 0xE6, 0xB4, 0xBE, 0x43,\n\t0xE6, 0xB5, 0x81, 0x43, 0xE6, 0xB5, 0xA9, 0x43,\n\t0xE6, 0xB5, 0xAA, 0x43, 0xE6, 0xB5, 0xB7, 0x43,\n\t0xE6, 0xB5, 0xB8, 0x43, 0xE6, 0xB6, 0x85, 0x43,\n\t0xE6, 0xB7, 0x8B, 0x43, 0xE6, 0xB7, 0x9A, 0x43,\n\t0xE6, 0xB7, 0xAA, 0x43, 0xE6, 0xB7, 0xB9, 0x43,\n\t0xE6, 0xB8, 0x9A, 0x43, 0xE6, 0xB8, 0xAF, 0x43,\n\t// Bytes e40 - e7f\n\t0xE6, 0xB9, 0xAE, 0x43, 0xE6, 0xBA, 0x80, 0x43,\n\t0xE6, 0xBA, 0x9C, 0x43, 0xE6, 0xBA, 0xBA, 0x43,\n\t0xE6, 0xBB, 0x87, 0x43, 0xE6, 0xBB, 0x8B, 0x43,\n\t0xE6, 0xBB, 0x91, 0x43, 0xE6, 0xBB, 0x9B, 0x43,\n\t0xE6, 0xBC, 0x8F, 0x43, 0xE6, 0xBC, 0x94, 0x43,\n\t0xE6, 0xBC, 0xA2, 0x43, 0xE6, 0xBC, 0xA3, 0x43,\n\t0xE6, 0xBD, 0xAE, 0x43, 0xE6, 0xBF, 0x86, 0x43,\n\t0xE6, 0xBF, 0xAB, 0x43, 0xE6, 0xBF, 0xBE, 0x43,\n\t// Bytes e80 - ebf\n\t0xE7, 0x80, 0x9B, 0x43, 0xE7, 0x80, 0x9E, 0x43,\n\t0xE7, 0x80, 0xB9, 0x43, 0xE7, 0x81, 0x8A, 0x43,\n\t0xE7, 0x81, 0xAB, 0x43, 0xE7, 0x81, 0xB0, 0x43,\n\t0xE7, 0x81, 0xB7, 0x43, 0xE7, 0x81, 0xBD, 0x43,\n\t0xE7, 0x82, 0x99, 0x43, 0xE7, 0x82, 0xAD, 0x43,\n\t0xE7, 0x83, 0x88, 0x43, 0xE7, 0x83, 0x99, 0x43,\n\t0xE7, 0x84, 0xA1, 0x43, 0xE7, 0x85, 0x85, 0x43,\n\t0xE7, 0x85, 0x89, 0x43, 0xE7, 0x85, 0xAE, 0x43,\n\t// Bytes ec0 - eff\n\t0xE7, 0x86, 0x9C, 0x43, 0xE7, 0x87, 0x8E, 0x43,\n\t0xE7, 0x87, 0x90, 0x43, 0xE7, 0x88, 0x90, 0x43,\n\t0xE7, 0x88, 0x9B, 0x43, 0xE7, 0x88, 0xA8, 0x43,\n\t0xE7, 0x88, 0xAA, 0x43, 0xE7, 0x88, 0xAB, 0x43,\n\t0xE7, 0x88, 0xB5, 0x43, 0xE7, 0x88, 0xB6, 0x43,\n\t0xE7, 0x88, 0xBB, 0x43, 0xE7, 0x88, 0xBF, 0x43,\n\t0xE7, 0x89, 0x87, 0x43, 0xE7, 0x89, 0x90, 0x43,\n\t0xE7, 0x89, 0x99, 0x43, 0xE7, 0x89, 0x9B, 0x43,\n\t// Bytes f00 - f3f\n\t0xE7, 0x89, 0xA2, 0x43, 0xE7, 0x89, 0xB9, 0x43,\n\t0xE7, 0x8A, 0x80, 0x43, 0xE7, 0x8A, 0x95, 0x43,\n\t0xE7, 0x8A, 0xAC, 0x43, 0xE7, 0x8A, 0xAF, 0x43,\n\t0xE7, 0x8B, 0x80, 0x43, 0xE7, 0x8B, 0xBC, 0x43,\n\t0xE7, 0x8C, 0xAA, 0x43, 0xE7, 0x8D, 0xB5, 0x43,\n\t0xE7, 0x8D, 0xBA, 0x43, 0xE7, 0x8E, 0x84, 0x43,\n\t0xE7, 0x8E, 0x87, 0x43, 0xE7, 0x8E, 0x89, 0x43,\n\t0xE7, 0x8E, 0x8B, 0x43, 0xE7, 0x8E, 0xA5, 0x43,\n\t// Bytes f40 - f7f\n\t0xE7, 0x8E, 0xB2, 0x43, 0xE7, 0x8F, 0x9E, 0x43,\n\t0xE7, 0x90, 0x86, 0x43, 0xE7, 0x90, 0x89, 0x43,\n\t0xE7, 0x90, 0xA2, 0x43, 0xE7, 0x91, 0x87, 0x43,\n\t0xE7, 0x91, 0x9C, 0x43, 0xE7, 0x91, 0xA9, 0x43,\n\t0xE7, 0x91, 0xB1, 0x43, 0xE7, 0x92, 0x85, 0x43,\n\t0xE7, 0x92, 0x89, 0x43, 0xE7, 0x92, 0x98, 0x43,\n\t0xE7, 0x93, 0x8A, 0x43, 0xE7, 0x93, 0x9C, 0x43,\n\t0xE7, 0x93, 0xA6, 0x43, 0xE7, 0x94, 0x86, 0x43,\n\t// Bytes f80 - fbf\n\t0xE7, 0x94, 0x98, 0x43, 0xE7, 0x94, 0x9F, 0x43,\n\t0xE7, 0x94, 0xA4, 0x43, 0xE7, 0x94, 0xA8, 0x43,\n\t0xE7, 0x94, 0xB0, 0x43, 0xE7, 0x94, 0xB2, 0x43,\n\t0xE7, 0x94, 0xB3, 0x43, 0xE7, 0x94, 0xB7, 0x43,\n\t0xE7, 0x94, 0xBB, 0x43, 0xE7, 0x94, 0xBE, 0x43,\n\t0xE7, 0x95, 0x99, 0x43, 0xE7, 0x95, 0xA5, 0x43,\n\t0xE7, 0x95, 0xB0, 0x43, 0xE7, 0x96, 0x8B, 0x43,\n\t0xE7, 0x96, 0x92, 0x43, 0xE7, 0x97, 0xA2, 0x43,\n\t// Bytes fc0 - fff\n\t0xE7, 0x98, 0x90, 0x43, 0xE7, 0x98, 0x9D, 0x43,\n\t0xE7, 0x98, 0x9F, 0x43, 0xE7, 0x99, 0x82, 0x43,\n\t0xE7, 0x99, 0xA9, 0x43, 0xE7, 0x99, 0xB6, 0x43,\n\t0xE7, 0x99, 0xBD, 0x43, 0xE7, 0x9A, 0xAE, 0x43,\n\t0xE7, 0x9A, 0xBF, 0x43, 0xE7, 0x9B, 0x8A, 0x43,\n\t0xE7, 0x9B, 0x9B, 0x43, 0xE7, 0x9B, 0xA3, 0x43,\n\t0xE7, 0x9B, 0xA7, 0x43, 0xE7, 0x9B, 0xAE, 0x43,\n\t0xE7, 0x9B, 0xB4, 0x43, 0xE7, 0x9C, 0x81, 0x43,\n\t// Bytes 1000 - 103f\n\t0xE7, 0x9C, 0x9E, 0x43, 0xE7, 0x9C, 0x9F, 0x43,\n\t0xE7, 0x9D, 0x80, 0x43, 0xE7, 0x9D, 0x8A, 0x43,\n\t0xE7, 0x9E, 0x8B, 0x43, 0xE7, 0x9E, 0xA7, 0x43,\n\t0xE7, 0x9F, 0x9B, 0x43, 0xE7, 0x9F, 0xA2, 0x43,\n\t0xE7, 0x9F, 0xB3, 0x43, 0xE7, 0xA1, 0x8E, 0x43,\n\t0xE7, 0xA1, 0xAB, 0x43, 0xE7, 0xA2, 0x8C, 0x43,\n\t0xE7, 0xA2, 0x91, 0x43, 0xE7, 0xA3, 0x8A, 0x43,\n\t0xE7, 0xA3, 0x8C, 0x43, 0xE7, 0xA3, 0xBB, 0x43,\n\t// Bytes 1040 - 107f\n\t0xE7, 0xA4, 0xAA, 0x43, 0xE7, 0xA4, 0xBA, 0x43,\n\t0xE7, 0xA4, 0xBC, 0x43, 0xE7, 0xA4, 0xBE, 0x43,\n\t0xE7, 0xA5, 0x88, 0x43, 0xE7, 0xA5, 0x89, 0x43,\n\t0xE7, 0xA5, 0x90, 0x43, 0xE7, 0xA5, 0x96, 0x43,\n\t0xE7, 0xA5, 0x9D, 0x43, 0xE7, 0xA5, 0x9E, 0x43,\n\t0xE7, 0xA5, 0xA5, 0x43, 0xE7, 0xA5, 0xBF, 0x43,\n\t0xE7, 0xA6, 0x81, 0x43, 0xE7, 0xA6, 0x8D, 0x43,\n\t0xE7, 0xA6, 0x8E, 0x43, 0xE7, 0xA6, 0x8F, 0x43,\n\t// Bytes 1080 - 10bf\n\t0xE7, 0xA6, 0xAE, 0x43, 0xE7, 0xA6, 0xB8, 0x43,\n\t0xE7, 0xA6, 0xBE, 0x43, 0xE7, 0xA7, 0x8A, 0x43,\n\t0xE7, 0xA7, 0x98, 0x43, 0xE7, 0xA7, 0xAB, 0x43,\n\t0xE7, 0xA8, 0x9C, 0x43, 0xE7, 0xA9, 0x80, 0x43,\n\t0xE7, 0xA9, 0x8A, 0x43, 0xE7, 0xA9, 0x8F, 0x43,\n\t0xE7, 0xA9, 0xB4, 0x43, 0xE7, 0xA9, 0xBA, 0x43,\n\t0xE7, 0xAA, 0x81, 0x43, 0xE7, 0xAA, 0xB1, 0x43,\n\t0xE7, 0xAB, 0x8B, 0x43, 0xE7, 0xAB, 0xAE, 0x43,\n\t// Bytes 10c0 - 10ff\n\t0xE7, 0xAB, 0xB9, 0x43, 0xE7, 0xAC, 0xA0, 0x43,\n\t0xE7, 0xAE, 0x8F, 0x43, 0xE7, 0xAF, 0x80, 0x43,\n\t0xE7, 0xAF, 0x86, 0x43, 0xE7, 0xAF, 0x89, 0x43,\n\t0xE7, 0xB0, 0xBE, 0x43, 0xE7, 0xB1, 0xA0, 0x43,\n\t0xE7, 0xB1, 0xB3, 0x43, 0xE7, 0xB1, 0xBB, 0x43,\n\t0xE7, 0xB2, 0x92, 0x43, 0xE7, 0xB2, 0xBE, 0x43,\n\t0xE7, 0xB3, 0x92, 0x43, 0xE7, 0xB3, 0x96, 0x43,\n\t0xE7, 0xB3, 0xA3, 0x43, 0xE7, 0xB3, 0xA7, 0x43,\n\t// Bytes 1100 - 113f\n\t0xE7, 0xB3, 0xA8, 0x43, 0xE7, 0xB3, 0xB8, 0x43,\n\t0xE7, 0xB4, 0x80, 0x43, 0xE7, 0xB4, 0x90, 0x43,\n\t0xE7, 0xB4, 0xA2, 0x43, 0xE7, 0xB4, 0xAF, 0x43,\n\t0xE7, 0xB5, 0x82, 0x43, 0xE7, 0xB5, 0x9B, 0x43,\n\t0xE7, 0xB5, 0xA3, 0x43, 0xE7, 0xB6, 0xA0, 0x43,\n\t0xE7, 0xB6, 0xBE, 0x43, 0xE7, 0xB7, 0x87, 0x43,\n\t0xE7, 0xB7, 0xB4, 0x43, 0xE7, 0xB8, 0x82, 0x43,\n\t0xE7, 0xB8, 0x89, 0x43, 0xE7, 0xB8, 0xB7, 0x43,\n\t// Bytes 1140 - 117f\n\t0xE7, 0xB9, 0x81, 0x43, 0xE7, 0xB9, 0x85, 0x43,\n\t0xE7, 0xBC, 0xB6, 0x43, 0xE7, 0xBC, 0xBE, 0x43,\n\t0xE7, 0xBD, 0x91, 0x43, 0xE7, 0xBD, 0xB2, 0x43,\n\t0xE7, 0xBD, 0xB9, 0x43, 0xE7, 0xBD, 0xBA, 0x43,\n\t0xE7, 0xBE, 0x85, 0x43, 0xE7, 0xBE, 0x8A, 0x43,\n\t0xE7, 0xBE, 0x95, 0x43, 0xE7, 0xBE, 0x9A, 0x43,\n\t0xE7, 0xBE, 0xBD, 0x43, 0xE7, 0xBF, 0xBA, 0x43,\n\t0xE8, 0x80, 0x81, 0x43, 0xE8, 0x80, 0x85, 0x43,\n\t// Bytes 1180 - 11bf\n\t0xE8, 0x80, 0x8C, 0x43, 0xE8, 0x80, 0x92, 0x43,\n\t0xE8, 0x80, 0xB3, 0x43, 0xE8, 0x81, 0x86, 0x43,\n\t0xE8, 0x81, 0xA0, 0x43, 0xE8, 0x81, 0xAF, 0x43,\n\t0xE8, 0x81, 0xB0, 0x43, 0xE8, 0x81, 0xBE, 0x43,\n\t0xE8, 0x81, 0xBF, 0x43, 0xE8, 0x82, 0x89, 0x43,\n\t0xE8, 0x82, 0x8B, 0x43, 0xE8, 0x82, 0xAD, 0x43,\n\t0xE8, 0x82, 0xB2, 0x43, 0xE8, 0x84, 0x83, 0x43,\n\t0xE8, 0x84, 0xBE, 0x43, 0xE8, 0x87, 0x98, 0x43,\n\t// Bytes 11c0 - 11ff\n\t0xE8, 0x87, 0xA3, 0x43, 0xE8, 0x87, 0xA8, 0x43,\n\t0xE8, 0x87, 0xAA, 0x43, 0xE8, 0x87, 0xAD, 0x43,\n\t0xE8, 0x87, 0xB3, 0x43, 0xE8, 0x87, 0xBC, 0x43,\n\t0xE8, 0x88, 0x81, 0x43, 0xE8, 0x88, 0x84, 0x43,\n\t0xE8, 0x88, 0x8C, 0x43, 0xE8, 0x88, 0x98, 0x43,\n\t0xE8, 0x88, 0x9B, 0x43, 0xE8, 0x88, 0x9F, 0x43,\n\t0xE8, 0x89, 0xAE, 0x43, 0xE8, 0x89, 0xAF, 0x43,\n\t0xE8, 0x89, 0xB2, 0x43, 0xE8, 0x89, 0xB8, 0x43,\n\t// Bytes 1200 - 123f\n\t0xE8, 0x89, 0xB9, 0x43, 0xE8, 0x8A, 0x8B, 0x43,\n\t0xE8, 0x8A, 0x91, 0x43, 0xE8, 0x8A, 0x9D, 0x43,\n\t0xE8, 0x8A, 0xB1, 0x43, 0xE8, 0x8A, 0xB3, 0x43,\n\t0xE8, 0x8A, 0xBD, 0x43, 0xE8, 0x8B, 0xA5, 0x43,\n\t0xE8, 0x8B, 0xA6, 0x43, 0xE8, 0x8C, 0x9D, 0x43,\n\t0xE8, 0x8C, 0xA3, 0x43, 0xE8, 0x8C, 0xB6, 0x43,\n\t0xE8, 0x8D, 0x92, 0x43, 0xE8, 0x8D, 0x93, 0x43,\n\t0xE8, 0x8D, 0xA3, 0x43, 0xE8, 0x8E, 0xAD, 0x43,\n\t// Bytes 1240 - 127f\n\t0xE8, 0x8E, 0xBD, 0x43, 0xE8, 0x8F, 0x89, 0x43,\n\t0xE8, 0x8F, 0x8A, 0x43, 0xE8, 0x8F, 0x8C, 0x43,\n\t0xE8, 0x8F, 0x9C, 0x43, 0xE8, 0x8F, 0xA7, 0x43,\n\t0xE8, 0x8F, 0xAF, 0x43, 0xE8, 0x8F, 0xB1, 0x43,\n\t0xE8, 0x90, 0xBD, 0x43, 0xE8, 0x91, 0x89, 0x43,\n\t0xE8, 0x91, 0x97, 0x43, 0xE8, 0x93, 0xAE, 0x43,\n\t0xE8, 0x93, 0xB1, 0x43, 0xE8, 0x93, 0xB3, 0x43,\n\t0xE8, 0x93, 0xBC, 0x43, 0xE8, 0x94, 0x96, 0x43,\n\t// Bytes 1280 - 12bf\n\t0xE8, 0x95, 0xA4, 0x43, 0xE8, 0x97, 0x8D, 0x43,\n\t0xE8, 0x97, 0xBA, 0x43, 0xE8, 0x98, 0x86, 0x43,\n\t0xE8, 0x98, 0x92, 0x43, 0xE8, 0x98, 0xAD, 0x43,\n\t0xE8, 0x98, 0xBF, 0x43, 0xE8, 0x99, 0x8D, 0x43,\n\t0xE8, 0x99, 0x90, 0x43, 0xE8, 0x99, 0x9C, 0x43,\n\t0xE8, 0x99, 0xA7, 0x43, 0xE8, 0x99, 0xA9, 0x43,\n\t0xE8, 0x99, 0xAB, 0x43, 0xE8, 0x9A, 0x88, 0x43,\n\t0xE8, 0x9A, 0xA9, 0x43, 0xE8, 0x9B, 0xA2, 0x43,\n\t// Bytes 12c0 - 12ff\n\t0xE8, 0x9C, 0x8E, 0x43, 0xE8, 0x9C, 0xA8, 0x43,\n\t0xE8, 0x9D, 0xAB, 0x43, 0xE8, 0x9D, 0xB9, 0x43,\n\t0xE8, 0x9E, 0x86, 0x43, 0xE8, 0x9E, 0xBA, 0x43,\n\t0xE8, 0x9F, 0xA1, 0x43, 0xE8, 0xA0, 0x81, 0x43,\n\t0xE8, 0xA0, 0x9F, 0x43, 0xE8, 0xA1, 0x80, 0x43,\n\t0xE8, 0xA1, 0x8C, 0x43, 0xE8, 0xA1, 0xA0, 0x43,\n\t0xE8, 0xA1, 0xA3, 0x43, 0xE8, 0xA3, 0x82, 0x43,\n\t0xE8, 0xA3, 0x8F, 0x43, 0xE8, 0xA3, 0x97, 0x43,\n\t// Bytes 1300 - 133f\n\t0xE8, 0xA3, 0x9E, 0x43, 0xE8, 0xA3, 0xA1, 0x43,\n\t0xE8, 0xA3, 0xB8, 0x43, 0xE8, 0xA3, 0xBA, 0x43,\n\t0xE8, 0xA4, 0x90, 0x43, 0xE8, 0xA5, 0x81, 0x43,\n\t0xE8, 0xA5, 0xA4, 0x43, 0xE8, 0xA5, 0xBE, 0x43,\n\t0xE8, 0xA6, 0x86, 0x43, 0xE8, 0xA6, 0x8B, 0x43,\n\t0xE8, 0xA6, 0x96, 0x43, 0xE8, 0xA7, 0x92, 0x43,\n\t0xE8, 0xA7, 0xA3, 0x43, 0xE8, 0xA8, 0x80, 0x43,\n\t0xE8, 0xAA, 0xA0, 0x43, 0xE8, 0xAA, 0xAA, 0x43,\n\t// Bytes 1340 - 137f\n\t0xE8, 0xAA, 0xBF, 0x43, 0xE8, 0xAB, 0x8B, 0x43,\n\t0xE8, 0xAB, 0x92, 0x43, 0xE8, 0xAB, 0x96, 0x43,\n\t0xE8, 0xAB, 0xAD, 0x43, 0xE8, 0xAB, 0xB8, 0x43,\n\t0xE8, 0xAB, 0xBE, 0x43, 0xE8, 0xAC, 0x81, 0x43,\n\t0xE8, 0xAC, 0xB9, 0x43, 0xE8, 0xAD, 0x98, 0x43,\n\t0xE8, 0xAE, 0x80, 0x43, 0xE8, 0xAE, 0x8A, 0x43,\n\t0xE8, 0xB0, 0xB7, 0x43, 0xE8, 0xB1, 0x86, 0x43,\n\t0xE8, 0xB1, 0x88, 0x43, 0xE8, 0xB1, 0x95, 0x43,\n\t// Bytes 1380 - 13bf\n\t0xE8, 0xB1, 0xB8, 0x43, 0xE8, 0xB2, 0x9D, 0x43,\n\t0xE8, 0xB2, 0xA1, 0x43, 0xE8, 0xB2, 0xA9, 0x43,\n\t0xE8, 0xB2, 0xAB, 0x43, 0xE8, 0xB3, 0x81, 0x43,\n\t0xE8, 0xB3, 0x82, 0x43, 0xE8, 0xB3, 0x87, 0x43,\n\t0xE8, 0xB3, 0x88, 0x43, 0xE8, 0xB3, 0x93, 0x43,\n\t0xE8, 0xB4, 0x88, 0x43, 0xE8, 0xB4, 0x9B, 0x43,\n\t0xE8, 0xB5, 0xA4, 0x43, 0xE8, 0xB5, 0xB0, 0x43,\n\t0xE8, 0xB5, 0xB7, 0x43, 0xE8, 0xB6, 0xB3, 0x43,\n\t// Bytes 13c0 - 13ff\n\t0xE8, 0xB6, 0xBC, 0x43, 0xE8, 0xB7, 0x8B, 0x43,\n\t0xE8, 0xB7, 0xAF, 0x43, 0xE8, 0xB7, 0xB0, 0x43,\n\t0xE8, 0xBA, 0xAB, 0x43, 0xE8, 0xBB, 0x8A, 0x43,\n\t0xE8, 0xBB, 0x94, 0x43, 0xE8, 0xBC, 0xA6, 0x43,\n\t0xE8, 0xBC, 0xAA, 0x43, 0xE8, 0xBC, 0xB8, 0x43,\n\t0xE8, 0xBC, 0xBB, 0x43, 0xE8, 0xBD, 0xA2, 0x43,\n\t0xE8, 0xBE, 0x9B, 0x43, 0xE8, 0xBE, 0x9E, 0x43,\n\t0xE8, 0xBE, 0xB0, 0x43, 0xE8, 0xBE, 0xB5, 0x43,\n\t// Bytes 1400 - 143f\n\t0xE8, 0xBE, 0xB6, 0x43, 0xE9, 0x80, 0xA3, 0x43,\n\t0xE9, 0x80, 0xB8, 0x43, 0xE9, 0x81, 0x8A, 0x43,\n\t0xE9, 0x81, 0xA9, 0x43, 0xE9, 0x81, 0xB2, 0x43,\n\t0xE9, 0x81, 0xBC, 0x43, 0xE9, 0x82, 0x8F, 0x43,\n\t0xE9, 0x82, 0x91, 0x43, 0xE9, 0x82, 0x94, 0x43,\n\t0xE9, 0x83, 0x8E, 0x43, 0xE9, 0x83, 0x9E, 0x43,\n\t0xE9, 0x83, 0xB1, 0x43, 0xE9, 0x83, 0xBD, 0x43,\n\t0xE9, 0x84, 0x91, 0x43, 0xE9, 0x84, 0x9B, 0x43,\n\t// Bytes 1440 - 147f\n\t0xE9, 0x85, 0x89, 0x43, 0xE9, 0x85, 0x8D, 0x43,\n\t0xE9, 0x85, 0xAA, 0x43, 0xE9, 0x86, 0x99, 0x43,\n\t0xE9, 0x86, 0xB4, 0x43, 0xE9, 0x87, 0x86, 0x43,\n\t0xE9, 0x87, 0x8C, 0x43, 0xE9, 0x87, 0x8F, 0x43,\n\t0xE9, 0x87, 0x91, 0x43, 0xE9, 0x88, 0xB4, 0x43,\n\t0xE9, 0x88, 0xB8, 0x43, 0xE9, 0x89, 0xB6, 0x43,\n\t0xE9, 0x89, 0xBC, 0x43, 0xE9, 0x8B, 0x97, 0x43,\n\t0xE9, 0x8B, 0x98, 0x43, 0xE9, 0x8C, 0x84, 0x43,\n\t// Bytes 1480 - 14bf\n\t0xE9, 0x8D, 0x8A, 0x43, 0xE9, 0x8F, 0xB9, 0x43,\n\t0xE9, 0x90, 0x95, 0x43, 0xE9, 0x95, 0xB7, 0x43,\n\t0xE9, 0x96, 0x80, 0x43, 0xE9, 0x96, 0x8B, 0x43,\n\t0xE9, 0x96, 0xAD, 0x43, 0xE9, 0x96, 0xB7, 0x43,\n\t0xE9, 0x98, 0x9C, 0x43, 0xE9, 0x98, 0xAE, 0x43,\n\t0xE9, 0x99, 0x8B, 0x43, 0xE9, 0x99, 0x8D, 0x43,\n\t0xE9, 0x99, 0xB5, 0x43, 0xE9, 0x99, 0xB8, 0x43,\n\t0xE9, 0x99, 0xBC, 0x43, 0xE9, 0x9A, 0x86, 0x43,\n\t// Bytes 14c0 - 14ff\n\t0xE9, 0x9A, 0xA3, 0x43, 0xE9, 0x9A, 0xB6, 0x43,\n\t0xE9, 0x9A, 0xB7, 0x43, 0xE9, 0x9A, 0xB8, 0x43,\n\t0xE9, 0x9A, 0xB9, 0x43, 0xE9, 0x9B, 0x83, 0x43,\n\t0xE9, 0x9B, 0xA2, 0x43, 0xE9, 0x9B, 0xA3, 0x43,\n\t0xE9, 0x9B, 0xA8, 0x43, 0xE9, 0x9B, 0xB6, 0x43,\n\t0xE9, 0x9B, 0xB7, 0x43, 0xE9, 0x9C, 0xA3, 0x43,\n\t0xE9, 0x9C, 0xB2, 0x43, 0xE9, 0x9D, 0x88, 0x43,\n\t0xE9, 0x9D, 0x91, 0x43, 0xE9, 0x9D, 0x96, 0x43,\n\t// Bytes 1500 - 153f\n\t0xE9, 0x9D, 0x9E, 0x43, 0xE9, 0x9D, 0xA2, 0x43,\n\t0xE9, 0x9D, 0xA9, 0x43, 0xE9, 0x9F, 0x8B, 0x43,\n\t0xE9, 0x9F, 0x9B, 0x43, 0xE9, 0x9F, 0xA0, 0x43,\n\t0xE9, 0x9F, 0xAD, 0x43, 0xE9, 0x9F, 0xB3, 0x43,\n\t0xE9, 0x9F, 0xBF, 0x43, 0xE9, 0xA0, 0x81, 0x43,\n\t0xE9, 0xA0, 0x85, 0x43, 0xE9, 0xA0, 0x8B, 0x43,\n\t0xE9, 0xA0, 0x98, 0x43, 0xE9, 0xA0, 0xA9, 0x43,\n\t0xE9, 0xA0, 0xBB, 0x43, 0xE9, 0xA1, 0x9E, 0x43,\n\t// Bytes 1540 - 157f\n\t0xE9, 0xA2, 0xA8, 0x43, 0xE9, 0xA3, 0x9B, 0x43,\n\t0xE9, 0xA3, 0x9F, 0x43, 0xE9, 0xA3, 0xA2, 0x43,\n\t0xE9, 0xA3, 0xAF, 0x43, 0xE9, 0xA3, 0xBC, 0x43,\n\t0xE9, 0xA4, 0xA8, 0x43, 0xE9, 0xA4, 0xA9, 0x43,\n\t0xE9, 0xA6, 0x96, 0x43, 0xE9, 0xA6, 0x99, 0x43,\n\t0xE9, 0xA6, 0xA7, 0x43, 0xE9, 0xA6, 0xAC, 0x43,\n\t0xE9, 0xA7, 0x82, 0x43, 0xE9, 0xA7, 0xB1, 0x43,\n\t0xE9, 0xA7, 0xBE, 0x43, 0xE9, 0xA9, 0xAA, 0x43,\n\t// Bytes 1580 - 15bf\n\t0xE9, 0xAA, 0xA8, 0x43, 0xE9, 0xAB, 0x98, 0x43,\n\t0xE9, 0xAB, 0x9F, 0x43, 0xE9, 0xAC, 0x92, 0x43,\n\t0xE9, 0xAC, 0xA5, 0x43, 0xE9, 0xAC, 0xAF, 0x43,\n\t0xE9, 0xAC, 0xB2, 0x43, 0xE9, 0xAC, 0xBC, 0x43,\n\t0xE9, 0xAD, 0x9A, 0x43, 0xE9, 0xAD, 0xAF, 0x43,\n\t0xE9, 0xB1, 0x80, 0x43, 0xE9, 0xB1, 0x97, 0x43,\n\t0xE9, 0xB3, 0xA5, 0x43, 0xE9, 0xB3, 0xBD, 0x43,\n\t0xE9, 0xB5, 0xA7, 0x43, 0xE9, 0xB6, 0xB4, 0x43,\n\t// Bytes 15c0 - 15ff\n\t0xE9, 0xB7, 0xBA, 0x43, 0xE9, 0xB8, 0x9E, 0x43,\n\t0xE9, 0xB9, 0xB5, 0x43, 0xE9, 0xB9, 0xBF, 0x43,\n\t0xE9, 0xBA, 0x97, 0x43, 0xE9, 0xBA, 0x9F, 0x43,\n\t0xE9, 0xBA, 0xA5, 0x43, 0xE9, 0xBA, 0xBB, 0x43,\n\t0xE9, 0xBB, 0x83, 0x43, 0xE9, 0xBB, 0x8D, 0x43,\n\t0xE9, 0xBB, 0x8E, 0x43, 0xE9, 0xBB, 0x91, 0x43,\n\t0xE9, 0xBB, 0xB9, 0x43, 0xE9, 0xBB, 0xBD, 0x43,\n\t0xE9, 0xBB, 0xBE, 0x43, 0xE9, 0xBC, 0x85, 0x43,\n\t// Bytes 1600 - 163f\n\t0xE9, 0xBC, 0x8E, 0x43, 0xE9, 0xBC, 0x8F, 0x43,\n\t0xE9, 0xBC, 0x93, 0x43, 0xE9, 0xBC, 0x96, 0x43,\n\t0xE9, 0xBC, 0xA0, 0x43, 0xE9, 0xBC, 0xBB, 0x43,\n\t0xE9, 0xBD, 0x83, 0x43, 0xE9, 0xBD, 0x8A, 0x43,\n\t0xE9, 0xBD, 0x92, 0x43, 0xE9, 0xBE, 0x8D, 0x43,\n\t0xE9, 0xBE, 0x8E, 0x43, 0xE9, 0xBE, 0x9C, 0x43,\n\t0xE9, 0xBE, 0x9F, 0x43, 0xE9, 0xBE, 0xA0, 0x43,\n\t0xEA, 0x9C, 0xA7, 0x43, 0xEA, 0x9D, 0xAF, 0x43,\n\t// Bytes 1640 - 167f\n\t0xEA, 0xAC, 0xB7, 0x43, 0xEA, 0xAD, 0x92, 0x44,\n\t0xF0, 0xA0, 0x84, 0xA2, 0x44, 0xF0, 0xA0, 0x94,\n\t0x9C, 0x44, 0xF0, 0xA0, 0x94, 0xA5, 0x44, 0xF0,\n\t0xA0, 0x95, 0x8B, 0x44, 0xF0, 0xA0, 0x98, 0xBA,\n\t0x44, 0xF0, 0xA0, 0xA0, 0x84, 0x44, 0xF0, 0xA0,\n\t0xA3, 0x9E, 0x44, 0xF0, 0xA0, 0xA8, 0xAC, 0x44,\n\t0xF0, 0xA0, 0xAD, 0xA3, 0x44, 0xF0, 0xA1, 0x93,\n\t0xA4, 0x44, 0xF0, 0xA1, 0x9A, 0xA8, 0x44, 0xF0,\n\t// Bytes 1680 - 16bf\n\t0xA1, 0x9B, 0xAA, 0x44, 0xF0, 0xA1, 0xA7, 0x88,\n\t0x44, 0xF0, 0xA1, 0xAC, 0x98, 0x44, 0xF0, 0xA1,\n\t0xB4, 0x8B, 0x44, 0xF0, 0xA1, 0xB7, 0xA4, 0x44,\n\t0xF0, 0xA1, 0xB7, 0xA6, 0x44, 0xF0, 0xA2, 0x86,\n\t0x83, 0x44, 0xF0, 0xA2, 0x86, 0x9F, 0x44, 0xF0,\n\t0xA2, 0x8C, 0xB1, 0x44, 0xF0, 0xA2, 0x9B, 0x94,\n\t0x44, 0xF0, 0xA2, 0xA1, 0x84, 0x44, 0xF0, 0xA2,\n\t0xA1, 0x8A, 0x44, 0xF0, 0xA2, 0xAC, 0x8C, 0x44,\n\t// Bytes 16c0 - 16ff\n\t0xF0, 0xA2, 0xAF, 0xB1, 0x44, 0xF0, 0xA3, 0x80,\n\t0x8A, 0x44, 0xF0, 0xA3, 0x8A, 0xB8, 0x44, 0xF0,\n\t0xA3, 0x8D, 0x9F, 0x44, 0xF0, 0xA3, 0x8E, 0x93,\n\t0x44, 0xF0, 0xA3, 0x8E, 0x9C, 0x44, 0xF0, 0xA3,\n\t0x8F, 0x83, 0x44, 0xF0, 0xA3, 0x8F, 0x95, 0x44,\n\t0xF0, 0xA3, 0x91, 0xAD, 0x44, 0xF0, 0xA3, 0x9A,\n\t0xA3, 0x44, 0xF0, 0xA3, 0xA2, 0xA7, 0x44, 0xF0,\n\t0xA3, 0xAA, 0x8D, 0x44, 0xF0, 0xA3, 0xAB, 0xBA,\n\t// Bytes 1700 - 173f\n\t0x44, 0xF0, 0xA3, 0xB2, 0xBC, 0x44, 0xF0, 0xA3,\n\t0xB4, 0x9E, 0x44, 0xF0, 0xA3, 0xBB, 0x91, 0x44,\n\t0xF0, 0xA3, 0xBD, 0x9E, 0x44, 0xF0, 0xA3, 0xBE,\n\t0x8E, 0x44, 0xF0, 0xA4, 0x89, 0xA3, 0x44, 0xF0,\n\t0xA4, 0x8B, 0xAE, 0x44, 0xF0, 0xA4, 0x8E, 0xAB,\n\t0x44, 0xF0, 0xA4, 0x98, 0x88, 0x44, 0xF0, 0xA4,\n\t0x9C, 0xB5, 0x44, 0xF0, 0xA4, 0xA0, 0x94, 0x44,\n\t0xF0, 0xA4, 0xB0, 0xB6, 0x44, 0xF0, 0xA4, 0xB2,\n\t// Bytes 1740 - 177f\n\t0x92, 0x44, 0xF0, 0xA4, 0xBE, 0xA1, 0x44, 0xF0,\n\t0xA4, 0xBE, 0xB8, 0x44, 0xF0, 0xA5, 0x81, 0x84,\n\t0x44, 0xF0, 0xA5, 0x83, 0xB2, 0x44, 0xF0, 0xA5,\n\t0x83, 0xB3, 0x44, 0xF0, 0xA5, 0x84, 0x99, 0x44,\n\t0xF0, 0xA5, 0x84, 0xB3, 0x44, 0xF0, 0xA5, 0x89,\n\t0x89, 0x44, 0xF0, 0xA5, 0x90, 0x9D, 0x44, 0xF0,\n\t0xA5, 0x98, 0xA6, 0x44, 0xF0, 0xA5, 0x9A, 0x9A,\n\t0x44, 0xF0, 0xA5, 0x9B, 0x85, 0x44, 0xF0, 0xA5,\n\t// Bytes 1780 - 17bf\n\t0xA5, 0xBC, 0x44, 0xF0, 0xA5, 0xAA, 0xA7, 0x44,\n\t0xF0, 0xA5, 0xAE, 0xAB, 0x44, 0xF0, 0xA5, 0xB2,\n\t0x80, 0x44, 0xF0, 0xA5, 0xB3, 0x90, 0x44, 0xF0,\n\t0xA5, 0xBE, 0x86, 0x44, 0xF0, 0xA6, 0x87, 0x9A,\n\t0x44, 0xF0, 0xA6, 0x88, 0xA8, 0x44, 0xF0, 0xA6,\n\t0x89, 0x87, 0x44, 0xF0, 0xA6, 0x8B, 0x99, 0x44,\n\t0xF0, 0xA6, 0x8C, 0xBE, 0x44, 0xF0, 0xA6, 0x93,\n\t0x9A, 0x44, 0xF0, 0xA6, 0x94, 0xA3, 0x44, 0xF0,\n\t// Bytes 17c0 - 17ff\n\t0xA6, 0x96, 0xA8, 0x44, 0xF0, 0xA6, 0x9E, 0xA7,\n\t0x44, 0xF0, 0xA6, 0x9E, 0xB5, 0x44, 0xF0, 0xA6,\n\t0xAC, 0xBC, 0x44, 0xF0, 0xA6, 0xB0, 0xB6, 0x44,\n\t0xF0, 0xA6, 0xB3, 0x95, 0x44, 0xF0, 0xA6, 0xB5,\n\t0xAB, 0x44, 0xF0, 0xA6, 0xBC, 0xAC, 0x44, 0xF0,\n\t0xA6, 0xBE, 0xB1, 0x44, 0xF0, 0xA7, 0x83, 0x92,\n\t0x44, 0xF0, 0xA7, 0x8F, 0x8A, 0x44, 0xF0, 0xA7,\n\t0x99, 0xA7, 0x44, 0xF0, 0xA7, 0xA2, 0xAE, 0x44,\n\t// Bytes 1800 - 183f\n\t0xF0, 0xA7, 0xA5, 0xA6, 0x44, 0xF0, 0xA7, 0xB2,\n\t0xA8, 0x44, 0xF0, 0xA7, 0xBB, 0x93, 0x44, 0xF0,\n\t0xA7, 0xBC, 0xAF, 0x44, 0xF0, 0xA8, 0x97, 0x92,\n\t0x44, 0xF0, 0xA8, 0x97, 0xAD, 0x44, 0xF0, 0xA8,\n\t0x9C, 0xAE, 0x44, 0xF0, 0xA8, 0xAF, 0xBA, 0x44,\n\t0xF0, 0xA8, 0xB5, 0xB7, 0x44, 0xF0, 0xA9, 0x85,\n\t0x85, 0x44, 0xF0, 0xA9, 0x87, 0x9F, 0x44, 0xF0,\n\t0xA9, 0x88, 0x9A, 0x44, 0xF0, 0xA9, 0x90, 0x8A,\n\t// Bytes 1840 - 187f\n\t0x44, 0xF0, 0xA9, 0x92, 0x96, 0x44, 0xF0, 0xA9,\n\t0x96, 0xB6, 0x44, 0xF0, 0xA9, 0xAC, 0xB0, 0x44,\n\t0xF0, 0xAA, 0x83, 0x8E, 0x44, 0xF0, 0xAA, 0x84,\n\t0x85, 0x44, 0xF0, 0xAA, 0x88, 0x8E, 0x44, 0xF0,\n\t0xAA, 0x8A, 0x91, 0x44, 0xF0, 0xAA, 0x8E, 0x92,\n\t0x44, 0xF0, 0xAA, 0x98, 0x80, 0x42, 0x21, 0x21,\n\t0x42, 0x21, 0x3F, 0x42, 0x2E, 0x2E, 0x42, 0x30,\n\t0x2C, 0x42, 0x30, 0x2E, 0x42, 0x31, 0x2C, 0x42,\n\t// Bytes 1880 - 18bf\n\t0x31, 0x2E, 0x42, 0x31, 0x30, 0x42, 0x31, 0x31,\n\t0x42, 0x31, 0x32, 0x42, 0x31, 0x33, 0x42, 0x31,\n\t0x34, 0x42, 0x31, 0x35, 0x42, 0x31, 0x36, 0x42,\n\t0x31, 0x37, 0x42, 0x31, 0x38, 0x42, 0x31, 0x39,\n\t0x42, 0x32, 0x2C, 0x42, 0x32, 0x2E, 0x42, 0x32,\n\t0x30, 0x42, 0x32, 0x31, 0x42, 0x32, 0x32, 0x42,\n\t0x32, 0x33, 0x42, 0x32, 0x34, 0x42, 0x32, 0x35,\n\t0x42, 0x32, 0x36, 0x42, 0x32, 0x37, 0x42, 0x32,\n\t// Bytes 18c0 - 18ff\n\t0x38, 0x42, 0x32, 0x39, 0x42, 0x33, 0x2C, 0x42,\n\t0x33, 0x2E, 0x42, 0x33, 0x30, 0x42, 0x33, 0x31,\n\t0x42, 0x33, 0x32, 0x42, 0x33, 0x33, 0x42, 0x33,\n\t0x34, 0x42, 0x33, 0x35, 0x42, 0x33, 0x36, 0x42,\n\t0x33, 0x37, 0x42, 0x33, 0x38, 0x42, 0x33, 0x39,\n\t0x42, 0x34, 0x2C, 0x42, 0x34, 0x2E, 0x42, 0x34,\n\t0x30, 0x42, 0x34, 0x31, 0x42, 0x34, 0x32, 0x42,\n\t0x34, 0x33, 0x42, 0x34, 0x34, 0x42, 0x34, 0x35,\n\t// Bytes 1900 - 193f\n\t0x42, 0x34, 0x36, 0x42, 0x34, 0x37, 0x42, 0x34,\n\t0x38, 0x42, 0x34, 0x39, 0x42, 0x35, 0x2C, 0x42,\n\t0x35, 0x2E, 0x42, 0x35, 0x30, 0x42, 0x36, 0x2C,\n\t0x42, 0x36, 0x2E, 0x42, 0x37, 0x2C, 0x42, 0x37,\n\t0x2E, 0x42, 0x38, 0x2C, 0x42, 0x38, 0x2E, 0x42,\n\t0x39, 0x2C, 0x42, 0x39, 0x2E, 0x42, 0x3D, 0x3D,\n\t0x42, 0x3F, 0x21, 0x42, 0x3F, 0x3F, 0x42, 0x41,\n\t0x55, 0x42, 0x42, 0x71, 0x42, 0x43, 0x44, 0x42,\n\t// Bytes 1940 - 197f\n\t0x44, 0x4A, 0x42, 0x44, 0x5A, 0x42, 0x44, 0x7A,\n\t0x42, 0x47, 0x42, 0x42, 0x47, 0x79, 0x42, 0x48,\n\t0x50, 0x42, 0x48, 0x56, 0x42, 0x48, 0x67, 0x42,\n\t0x48, 0x7A, 0x42, 0x49, 0x49, 0x42, 0x49, 0x4A,\n\t0x42, 0x49, 0x55, 0x42, 0x49, 0x56, 0x42, 0x49,\n\t0x58, 0x42, 0x4B, 0x42, 0x42, 0x4B, 0x4B, 0x42,\n\t0x4B, 0x4D, 0x42, 0x4C, 0x4A, 0x42, 0x4C, 0x6A,\n\t0x42, 0x4D, 0x42, 0x42, 0x4D, 0x43, 0x42, 0x4D,\n\t// Bytes 1980 - 19bf\n\t0x44, 0x42, 0x4D, 0x56, 0x42, 0x4D, 0x57, 0x42,\n\t0x4E, 0x4A, 0x42, 0x4E, 0x6A, 0x42, 0x4E, 0x6F,\n\t0x42, 0x50, 0x48, 0x42, 0x50, 0x52, 0x42, 0x50,\n\t0x61, 0x42, 0x52, 0x73, 0x42, 0x53, 0x44, 0x42,\n\t0x53, 0x4D, 0x42, 0x53, 0x53, 0x42, 0x53, 0x76,\n\t0x42, 0x54, 0x4D, 0x42, 0x56, 0x49, 0x42, 0x57,\n\t0x43, 0x42, 0x57, 0x5A, 0x42, 0x57, 0x62, 0x42,\n\t0x58, 0x49, 0x42, 0x63, 0x63, 0x42, 0x63, 0x64,\n\t// Bytes 19c0 - 19ff\n\t0x42, 0x63, 0x6D, 0x42, 0x64, 0x42, 0x42, 0x64,\n\t0x61, 0x42, 0x64, 0x6C, 0x42, 0x64, 0x6D, 0x42,\n\t0x64, 0x7A, 0x42, 0x65, 0x56, 0x42, 0x66, 0x66,\n\t0x42, 0x66, 0x69, 0x42, 0x66, 0x6C, 0x42, 0x66,\n\t0x6D, 0x42, 0x68, 0x61, 0x42, 0x69, 0x69, 0x42,\n\t0x69, 0x6A, 0x42, 0x69, 0x6E, 0x42, 0x69, 0x76,\n\t0x42, 0x69, 0x78, 0x42, 0x6B, 0x41, 0x42, 0x6B,\n\t0x56, 0x42, 0x6B, 0x57, 0x42, 0x6B, 0x67, 0x42,\n\t// Bytes 1a00 - 1a3f\n\t0x6B, 0x6C, 0x42, 0x6B, 0x6D, 0x42, 0x6B, 0x74,\n\t0x42, 0x6C, 0x6A, 0x42, 0x6C, 0x6D, 0x42, 0x6C,\n\t0x6E, 0x42, 0x6C, 0x78, 0x42, 0x6D, 0x32, 0x42,\n\t0x6D, 0x33, 0x42, 0x6D, 0x41, 0x42, 0x6D, 0x56,\n\t0x42, 0x6D, 0x57, 0x42, 0x6D, 0x62, 0x42, 0x6D,\n\t0x67, 0x42, 0x6D, 0x6C, 0x42, 0x6D, 0x6D, 0x42,\n\t0x6D, 0x73, 0x42, 0x6E, 0x41, 0x42, 0x6E, 0x46,\n\t0x42, 0x6E, 0x56, 0x42, 0x6E, 0x57, 0x42, 0x6E,\n\t// Bytes 1a40 - 1a7f\n\t0x6A, 0x42, 0x6E, 0x6D, 0x42, 0x6E, 0x73, 0x42,\n\t0x6F, 0x56, 0x42, 0x70, 0x41, 0x42, 0x70, 0x46,\n\t0x42, 0x70, 0x56, 0x42, 0x70, 0x57, 0x42, 0x70,\n\t0x63, 0x42, 0x70, 0x73, 0x42, 0x73, 0x72, 0x42,\n\t0x73, 0x74, 0x42, 0x76, 0x69, 0x42, 0x78, 0x69,\n\t0x43, 0x28, 0x31, 0x29, 0x43, 0x28, 0x32, 0x29,\n\t0x43, 0x28, 0x33, 0x29, 0x43, 0x28, 0x34, 0x29,\n\t0x43, 0x28, 0x35, 0x29, 0x43, 0x28, 0x36, 0x29,\n\t// Bytes 1a80 - 1abf\n\t0x43, 0x28, 0x37, 0x29, 0x43, 0x28, 0x38, 0x29,\n\t0x43, 0x28, 0x39, 0x29, 0x43, 0x28, 0x41, 0x29,\n\t0x43, 0x28, 0x42, 0x29, 0x43, 0x28, 0x43, 0x29,\n\t0x43, 0x28, 0x44, 0x29, 0x43, 0x28, 0x45, 0x29,\n\t0x43, 0x28, 0x46, 0x29, 0x43, 0x28, 0x47, 0x29,\n\t0x43, 0x28, 0x48, 0x29, 0x43, 0x28, 0x49, 0x29,\n\t0x43, 0x28, 0x4A, 0x29, 0x43, 0x28, 0x4B, 0x29,\n\t0x43, 0x28, 0x4C, 0x29, 0x43, 0x28, 0x4D, 0x29,\n\t// Bytes 1ac0 - 1aff\n\t0x43, 0x28, 0x4E, 0x29, 0x43, 0x28, 0x4F, 0x29,\n\t0x43, 0x28, 0x50, 0x29, 0x43, 0x28, 0x51, 0x29,\n\t0x43, 0x28, 0x52, 0x29, 0x43, 0x28, 0x53, 0x29,\n\t0x43, 0x28, 0x54, 0x29, 0x43, 0x28, 0x55, 0x29,\n\t0x43, 0x28, 0x56, 0x29, 0x43, 0x28, 0x57, 0x29,\n\t0x43, 0x28, 0x58, 0x29, 0x43, 0x28, 0x59, 0x29,\n\t0x43, 0x28, 0x5A, 0x29, 0x43, 0x28, 0x61, 0x29,\n\t0x43, 0x28, 0x62, 0x29, 0x43, 0x28, 0x63, 0x29,\n\t// Bytes 1b00 - 1b3f\n\t0x43, 0x28, 0x64, 0x29, 0x43, 0x28, 0x65, 0x29,\n\t0x43, 0x28, 0x66, 0x29, 0x43, 0x28, 0x67, 0x29,\n\t0x43, 0x28, 0x68, 0x29, 0x43, 0x28, 0x69, 0x29,\n\t0x43, 0x28, 0x6A, 0x29, 0x43, 0x28, 0x6B, 0x29,\n\t0x43, 0x28, 0x6C, 0x29, 0x43, 0x28, 0x6D, 0x29,\n\t0x43, 0x28, 0x6E, 0x29, 0x43, 0x28, 0x6F, 0x29,\n\t0x43, 0x28, 0x70, 0x29, 0x43, 0x28, 0x71, 0x29,\n\t0x43, 0x28, 0x72, 0x29, 0x43, 0x28, 0x73, 0x29,\n\t// Bytes 1b40 - 1b7f\n\t0x43, 0x28, 0x74, 0x29, 0x43, 0x28, 0x75, 0x29,\n\t0x43, 0x28, 0x76, 0x29, 0x43, 0x28, 0x77, 0x29,\n\t0x43, 0x28, 0x78, 0x29, 0x43, 0x28, 0x79, 0x29,\n\t0x43, 0x28, 0x7A, 0x29, 0x43, 0x2E, 0x2E, 0x2E,\n\t0x43, 0x31, 0x30, 0x2E, 0x43, 0x31, 0x31, 0x2E,\n\t0x43, 0x31, 0x32, 0x2E, 0x43, 0x31, 0x33, 0x2E,\n\t0x43, 0x31, 0x34, 0x2E, 0x43, 0x31, 0x35, 0x2E,\n\t0x43, 0x31, 0x36, 0x2E, 0x43, 0x31, 0x37, 0x2E,\n\t// Bytes 1b80 - 1bbf\n\t0x43, 0x31, 0x38, 0x2E, 0x43, 0x31, 0x39, 0x2E,\n\t0x43, 0x32, 0x30, 0x2E, 0x43, 0x3A, 0x3A, 0x3D,\n\t0x43, 0x3D, 0x3D, 0x3D, 0x43, 0x43, 0x6F, 0x2E,\n\t0x43, 0x46, 0x41, 0x58, 0x43, 0x47, 0x48, 0x7A,\n\t0x43, 0x47, 0x50, 0x61, 0x43, 0x49, 0x49, 0x49,\n\t0x43, 0x4C, 0x54, 0x44, 0x43, 0x4C, 0xC2, 0xB7,\n\t0x43, 0x4D, 0x48, 0x7A, 0x43, 0x4D, 0x50, 0x61,\n\t0x43, 0x4D, 0xCE, 0xA9, 0x43, 0x50, 0x50, 0x4D,\n\t// Bytes 1bc0 - 1bff\n\t0x43, 0x50, 0x50, 0x56, 0x43, 0x50, 0x54, 0x45,\n\t0x43, 0x54, 0x45, 0x4C, 0x43, 0x54, 0x48, 0x7A,\n\t0x43, 0x56, 0x49, 0x49, 0x43, 0x58, 0x49, 0x49,\n\t0x43, 0x61, 0x2F, 0x63, 0x43, 0x61, 0x2F, 0x73,\n\t0x43, 0x61, 0xCA, 0xBE, 0x43, 0x62, 0x61, 0x72,\n\t0x43, 0x63, 0x2F, 0x6F, 0x43, 0x63, 0x2F, 0x75,\n\t0x43, 0x63, 0x61, 0x6C, 0x43, 0x63, 0x6D, 0x32,\n\t0x43, 0x63, 0x6D, 0x33, 0x43, 0x64, 0x6D, 0x32,\n\t// Bytes 1c00 - 1c3f\n\t0x43, 0x64, 0x6D, 0x33, 0x43, 0x65, 0x72, 0x67,\n\t0x43, 0x66, 0x66, 0x69, 0x43, 0x66, 0x66, 0x6C,\n\t0x43, 0x67, 0x61, 0x6C, 0x43, 0x68, 0x50, 0x61,\n\t0x43, 0x69, 0x69, 0x69, 0x43, 0x6B, 0x48, 0x7A,\n\t0x43, 0x6B, 0x50, 0x61, 0x43, 0x6B, 0x6D, 0x32,\n\t0x43, 0x6B, 0x6D, 0x33, 0x43, 0x6B, 0xCE, 0xA9,\n\t0x43, 0x6C, 0x6F, 0x67, 0x43, 0x6C, 0xC2, 0xB7,\n\t0x43, 0x6D, 0x69, 0x6C, 0x43, 0x6D, 0x6D, 0x32,\n\t// Bytes 1c40 - 1c7f\n\t0x43, 0x6D, 0x6D, 0x33, 0x43, 0x6D, 0x6F, 0x6C,\n\t0x43, 0x72, 0x61, 0x64, 0x43, 0x76, 0x69, 0x69,\n\t0x43, 0x78, 0x69, 0x69, 0x43, 0xC2, 0xB0, 0x43,\n\t0x43, 0xC2, 0xB0, 0x46, 0x43, 0xCA, 0xBC, 0x6E,\n\t0x43, 0xCE, 0xBC, 0x41, 0x43, 0xCE, 0xBC, 0x46,\n\t0x43, 0xCE, 0xBC, 0x56, 0x43, 0xCE, 0xBC, 0x57,\n\t0x43, 0xCE, 0xBC, 0x67, 0x43, 0xCE, 0xBC, 0x6C,\n\t0x43, 0xCE, 0xBC, 0x6D, 0x43, 0xCE, 0xBC, 0x73,\n\t// Bytes 1c80 - 1cbf\n\t0x44, 0x28, 0x31, 0x30, 0x29, 0x44, 0x28, 0x31,\n\t0x31, 0x29, 0x44, 0x28, 0x31, 0x32, 0x29, 0x44,\n\t0x28, 0x31, 0x33, 0x29, 0x44, 0x28, 0x31, 0x34,\n\t0x29, 0x44, 0x28, 0x31, 0x35, 0x29, 0x44, 0x28,\n\t0x31, 0x36, 0x29, 0x44, 0x28, 0x31, 0x37, 0x29,\n\t0x44, 0x28, 0x31, 0x38, 0x29, 0x44, 0x28, 0x31,\n\t0x39, 0x29, 0x44, 0x28, 0x32, 0x30, 0x29, 0x44,\n\t0x30, 0xE7, 0x82, 0xB9, 0x44, 0x31, 0xE2, 0x81,\n\t// Bytes 1cc0 - 1cff\n\t0x84, 0x44, 0x31, 0xE6, 0x97, 0xA5, 0x44, 0x31,\n\t0xE6, 0x9C, 0x88, 0x44, 0x31, 0xE7, 0x82, 0xB9,\n\t0x44, 0x32, 0xE6, 0x97, 0xA5, 0x44, 0x32, 0xE6,\n\t0x9C, 0x88, 0x44, 0x32, 0xE7, 0x82, 0xB9, 0x44,\n\t0x33, 0xE6, 0x97, 0xA5, 0x44, 0x33, 0xE6, 0x9C,\n\t0x88, 0x44, 0x33, 0xE7, 0x82, 0xB9, 0x44, 0x34,\n\t0xE6, 0x97, 0xA5, 0x44, 0x34, 0xE6, 0x9C, 0x88,\n\t0x44, 0x34, 0xE7, 0x82, 0xB9, 0x44, 0x35, 0xE6,\n\t// Bytes 1d00 - 1d3f\n\t0x97, 0xA5, 0x44, 0x35, 0xE6, 0x9C, 0x88, 0x44,\n\t0x35, 0xE7, 0x82, 0xB9, 0x44, 0x36, 0xE6, 0x97,\n\t0xA5, 0x44, 0x36, 0xE6, 0x9C, 0x88, 0x44, 0x36,\n\t0xE7, 0x82, 0xB9, 0x44, 0x37, 0xE6, 0x97, 0xA5,\n\t0x44, 0x37, 0xE6, 0x9C, 0x88, 0x44, 0x37, 0xE7,\n\t0x82, 0xB9, 0x44, 0x38, 0xE6, 0x97, 0xA5, 0x44,\n\t0x38, 0xE6, 0x9C, 0x88, 0x44, 0x38, 0xE7, 0x82,\n\t0xB9, 0x44, 0x39, 0xE6, 0x97, 0xA5, 0x44, 0x39,\n\t// Bytes 1d40 - 1d7f\n\t0xE6, 0x9C, 0x88, 0x44, 0x39, 0xE7, 0x82, 0xB9,\n\t0x44, 0x56, 0x49, 0x49, 0x49, 0x44, 0x61, 0x2E,\n\t0x6D, 0x2E, 0x44, 0x6B, 0x63, 0x61, 0x6C, 0x44,\n\t0x70, 0x2E, 0x6D, 0x2E, 0x44, 0x76, 0x69, 0x69,\n\t0x69, 0x44, 0xD5, 0xA5, 0xD6, 0x82, 0x44, 0xD5,\n\t0xB4, 0xD5, 0xA5, 0x44, 0xD5, 0xB4, 0xD5, 0xAB,\n\t0x44, 0xD5, 0xB4, 0xD5, 0xAD, 0x44, 0xD5, 0xB4,\n\t0xD5, 0xB6, 0x44, 0xD5, 0xBE, 0xD5, 0xB6, 0x44,\n\t// Bytes 1d80 - 1dbf\n\t0xD7, 0x90, 0xD7, 0x9C, 0x44, 0xD8, 0xA7, 0xD9,\n\t0xB4, 0x44, 0xD8, 0xA8, 0xD8, 0xAC, 0x44, 0xD8,\n\t0xA8, 0xD8, 0xAD, 0x44, 0xD8, 0xA8, 0xD8, 0xAE,\n\t0x44, 0xD8, 0xA8, 0xD8, 0xB1, 0x44, 0xD8, 0xA8,\n\t0xD8, 0xB2, 0x44, 0xD8, 0xA8, 0xD9, 0x85, 0x44,\n\t0xD8, 0xA8, 0xD9, 0x86, 0x44, 0xD8, 0xA8, 0xD9,\n\t0x87, 0x44, 0xD8, 0xA8, 0xD9, 0x89, 0x44, 0xD8,\n\t0xA8, 0xD9, 0x8A, 0x44, 0xD8, 0xAA, 0xD8, 0xAC,\n\t// Bytes 1dc0 - 1dff\n\t0x44, 0xD8, 0xAA, 0xD8, 0xAD, 0x44, 0xD8, 0xAA,\n\t0xD8, 0xAE, 0x44, 0xD8, 0xAA, 0xD8, 0xB1, 0x44,\n\t0xD8, 0xAA, 0xD8, 0xB2, 0x44, 0xD8, 0xAA, 0xD9,\n\t0x85, 0x44, 0xD8, 0xAA, 0xD9, 0x86, 0x44, 0xD8,\n\t0xAA, 0xD9, 0x87, 0x44, 0xD8, 0xAA, 0xD9, 0x89,\n\t0x44, 0xD8, 0xAA, 0xD9, 0x8A, 0x44, 0xD8, 0xAB,\n\t0xD8, 0xAC, 0x44, 0xD8, 0xAB, 0xD8, 0xB1, 0x44,\n\t0xD8, 0xAB, 0xD8, 0xB2, 0x44, 0xD8, 0xAB, 0xD9,\n\t// Bytes 1e00 - 1e3f\n\t0x85, 0x44, 0xD8, 0xAB, 0xD9, 0x86, 0x44, 0xD8,\n\t0xAB, 0xD9, 0x87, 0x44, 0xD8, 0xAB, 0xD9, 0x89,\n\t0x44, 0xD8, 0xAB, 0xD9, 0x8A, 0x44, 0xD8, 0xAC,\n\t0xD8, 0xAD, 0x44, 0xD8, 0xAC, 0xD9, 0x85, 0x44,\n\t0xD8, 0xAC, 0xD9, 0x89, 0x44, 0xD8, 0xAC, 0xD9,\n\t0x8A, 0x44, 0xD8, 0xAD, 0xD8, 0xAC, 0x44, 0xD8,\n\t0xAD, 0xD9, 0x85, 0x44, 0xD8, 0xAD, 0xD9, 0x89,\n\t0x44, 0xD8, 0xAD, 0xD9, 0x8A, 0x44, 0xD8, 0xAE,\n\t// Bytes 1e40 - 1e7f\n\t0xD8, 0xAC, 0x44, 0xD8, 0xAE, 0xD8, 0xAD, 0x44,\n\t0xD8, 0xAE, 0xD9, 0x85, 0x44, 0xD8, 0xAE, 0xD9,\n\t0x89, 0x44, 0xD8, 0xAE, 0xD9, 0x8A, 0x44, 0xD8,\n\t0xB3, 0xD8, 0xAC, 0x44, 0xD8, 0xB3, 0xD8, 0xAD,\n\t0x44, 0xD8, 0xB3, 0xD8, 0xAE, 0x44, 0xD8, 0xB3,\n\t0xD8, 0xB1, 0x44, 0xD8, 0xB3, 0xD9, 0x85, 0x44,\n\t0xD8, 0xB3, 0xD9, 0x87, 0x44, 0xD8, 0xB3, 0xD9,\n\t0x89, 0x44, 0xD8, 0xB3, 0xD9, 0x8A, 0x44, 0xD8,\n\t// Bytes 1e80 - 1ebf\n\t0xB4, 0xD8, 0xAC, 0x44, 0xD8, 0xB4, 0xD8, 0xAD,\n\t0x44, 0xD8, 0xB4, 0xD8, 0xAE, 0x44, 0xD8, 0xB4,\n\t0xD8, 0xB1, 0x44, 0xD8, 0xB4, 0xD9, 0x85, 0x44,\n\t0xD8, 0xB4, 0xD9, 0x87, 0x44, 0xD8, 0xB4, 0xD9,\n\t0x89, 0x44, 0xD8, 0xB4, 0xD9, 0x8A, 0x44, 0xD8,\n\t0xB5, 0xD8, 0xAD, 0x44, 0xD8, 0xB5, 0xD8, 0xAE,\n\t0x44, 0xD8, 0xB5, 0xD8, 0xB1, 0x44, 0xD8, 0xB5,\n\t0xD9, 0x85, 0x44, 0xD8, 0xB5, 0xD9, 0x89, 0x44,\n\t// Bytes 1ec0 - 1eff\n\t0xD8, 0xB5, 0xD9, 0x8A, 0x44, 0xD8, 0xB6, 0xD8,\n\t0xAC, 0x44, 0xD8, 0xB6, 0xD8, 0xAD, 0x44, 0xD8,\n\t0xB6, 0xD8, 0xAE, 0x44, 0xD8, 0xB6, 0xD8, 0xB1,\n\t0x44, 0xD8, 0xB6, 0xD9, 0x85, 0x44, 0xD8, 0xB6,\n\t0xD9, 0x89, 0x44, 0xD8, 0xB6, 0xD9, 0x8A, 0x44,\n\t0xD8, 0xB7, 0xD8, 0xAD, 0x44, 0xD8, 0xB7, 0xD9,\n\t0x85, 0x44, 0xD8, 0xB7, 0xD9, 0x89, 0x44, 0xD8,\n\t0xB7, 0xD9, 0x8A, 0x44, 0xD8, 0xB8, 0xD9, 0x85,\n\t// Bytes 1f00 - 1f3f\n\t0x44, 0xD8, 0xB9, 0xD8, 0xAC, 0x44, 0xD8, 0xB9,\n\t0xD9, 0x85, 0x44, 0xD8, 0xB9, 0xD9, 0x89, 0x44,\n\t0xD8, 0xB9, 0xD9, 0x8A, 0x44, 0xD8, 0xBA, 0xD8,\n\t0xAC, 0x44, 0xD8, 0xBA, 0xD9, 0x85, 0x44, 0xD8,\n\t0xBA, 0xD9, 0x89, 0x44, 0xD8, 0xBA, 0xD9, 0x8A,\n\t0x44, 0xD9, 0x81, 0xD8, 0xAC, 0x44, 0xD9, 0x81,\n\t0xD8, 0xAD, 0x44, 0xD9, 0x81, 0xD8, 0xAE, 0x44,\n\t0xD9, 0x81, 0xD9, 0x85, 0x44, 0xD9, 0x81, 0xD9,\n\t// Bytes 1f40 - 1f7f\n\t0x89, 0x44, 0xD9, 0x81, 0xD9, 0x8A, 0x44, 0xD9,\n\t0x82, 0xD8, 0xAD, 0x44, 0xD9, 0x82, 0xD9, 0x85,\n\t0x44, 0xD9, 0x82, 0xD9, 0x89, 0x44, 0xD9, 0x82,\n\t0xD9, 0x8A, 0x44, 0xD9, 0x83, 0xD8, 0xA7, 0x44,\n\t0xD9, 0x83, 0xD8, 0xAC, 0x44, 0xD9, 0x83, 0xD8,\n\t0xAD, 0x44, 0xD9, 0x83, 0xD8, 0xAE, 0x44, 0xD9,\n\t0x83, 0xD9, 0x84, 0x44, 0xD9, 0x83, 0xD9, 0x85,\n\t0x44, 0xD9, 0x83, 0xD9, 0x89, 0x44, 0xD9, 0x83,\n\t// Bytes 1f80 - 1fbf\n\t0xD9, 0x8A, 0x44, 0xD9, 0x84, 0xD8, 0xA7, 0x44,\n\t0xD9, 0x84, 0xD8, 0xAC, 0x44, 0xD9, 0x84, 0xD8,\n\t0xAD, 0x44, 0xD9, 0x84, 0xD8, 0xAE, 0x44, 0xD9,\n\t0x84, 0xD9, 0x85, 0x44, 0xD9, 0x84, 0xD9, 0x87,\n\t0x44, 0xD9, 0x84, 0xD9, 0x89, 0x44, 0xD9, 0x84,\n\t0xD9, 0x8A, 0x44, 0xD9, 0x85, 0xD8, 0xA7, 0x44,\n\t0xD9, 0x85, 0xD8, 0xAC, 0x44, 0xD9, 0x85, 0xD8,\n\t0xAD, 0x44, 0xD9, 0x85, 0xD8, 0xAE, 0x44, 0xD9,\n\t// Bytes 1fc0 - 1fff\n\t0x85, 0xD9, 0x85, 0x44, 0xD9, 0x85, 0xD9, 0x89,\n\t0x44, 0xD9, 0x85, 0xD9, 0x8A, 0x44, 0xD9, 0x86,\n\t0xD8, 0xAC, 0x44, 0xD9, 0x86, 0xD8, 0xAD, 0x44,\n\t0xD9, 0x86, 0xD8, 0xAE, 0x44, 0xD9, 0x86, 0xD8,\n\t0xB1, 0x44, 0xD9, 0x86, 0xD8, 0xB2, 0x44, 0xD9,\n\t0x86, 0xD9, 0x85, 0x44, 0xD9, 0x86, 0xD9, 0x86,\n\t0x44, 0xD9, 0x86, 0xD9, 0x87, 0x44, 0xD9, 0x86,\n\t0xD9, 0x89, 0x44, 0xD9, 0x86, 0xD9, 0x8A, 0x44,\n\t// Bytes 2000 - 203f\n\t0xD9, 0x87, 0xD8, 0xAC, 0x44, 0xD9, 0x87, 0xD9,\n\t0x85, 0x44, 0xD9, 0x87, 0xD9, 0x89, 0x44, 0xD9,\n\t0x87, 0xD9, 0x8A, 0x44, 0xD9, 0x88, 0xD9, 0xB4,\n\t0x44, 0xD9, 0x8A, 0xD8, 0xAC, 0x44, 0xD9, 0x8A,\n\t0xD8, 0xAD, 0x44, 0xD9, 0x8A, 0xD8, 0xAE, 0x44,\n\t0xD9, 0x8A, 0xD8, 0xB1, 0x44, 0xD9, 0x8A, 0xD8,\n\t0xB2, 0x44, 0xD9, 0x8A, 0xD9, 0x85, 0x44, 0xD9,\n\t0x8A, 0xD9, 0x86, 0x44, 0xD9, 0x8A, 0xD9, 0x87,\n\t// Bytes 2040 - 207f\n\t0x44, 0xD9, 0x8A, 0xD9, 0x89, 0x44, 0xD9, 0x8A,\n\t0xD9, 0x8A, 0x44, 0xD9, 0x8A, 0xD9, 0xB4, 0x44,\n\t0xDB, 0x87, 0xD9, 0xB4, 0x45, 0x28, 0xE1, 0x84,\n\t0x80, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x82, 0x29,\n\t0x45, 0x28, 0xE1, 0x84, 0x83, 0x29, 0x45, 0x28,\n\t0xE1, 0x84, 0x85, 0x29, 0x45, 0x28, 0xE1, 0x84,\n\t0x86, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x87, 0x29,\n\t0x45, 0x28, 0xE1, 0x84, 0x89, 0x29, 0x45, 0x28,\n\t// Bytes 2080 - 20bf\n\t0xE1, 0x84, 0x8B, 0x29, 0x45, 0x28, 0xE1, 0x84,\n\t0x8C, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x8E, 0x29,\n\t0x45, 0x28, 0xE1, 0x84, 0x8F, 0x29, 0x45, 0x28,\n\t0xE1, 0x84, 0x90, 0x29, 0x45, 0x28, 0xE1, 0x84,\n\t0x91, 0x29, 0x45, 0x28, 0xE1, 0x84, 0x92, 0x29,\n\t0x45, 0x28, 0xE4, 0xB8, 0x80, 0x29, 0x45, 0x28,\n\t0xE4, 0xB8, 0x83, 0x29, 0x45, 0x28, 0xE4, 0xB8,\n\t0x89, 0x29, 0x45, 0x28, 0xE4, 0xB9, 0x9D, 0x29,\n\t// Bytes 20c0 - 20ff\n\t0x45, 0x28, 0xE4, 0xBA, 0x8C, 0x29, 0x45, 0x28,\n\t0xE4, 0xBA, 0x94, 0x29, 0x45, 0x28, 0xE4, 0xBB,\n\t0xA3, 0x29, 0x45, 0x28, 0xE4, 0xBC, 0x81, 0x29,\n\t0x45, 0x28, 0xE4, 0xBC, 0x91, 0x29, 0x45, 0x28,\n\t0xE5, 0x85, 0xAB, 0x29, 0x45, 0x28, 0xE5, 0x85,\n\t0xAD, 0x29, 0x45, 0x28, 0xE5, 0x8A, 0xB4, 0x29,\n\t0x45, 0x28, 0xE5, 0x8D, 0x81, 0x29, 0x45, 0x28,\n\t0xE5, 0x8D, 0x94, 0x29, 0x45, 0x28, 0xE5, 0x90,\n\t// Bytes 2100 - 213f\n\t0x8D, 0x29, 0x45, 0x28, 0xE5, 0x91, 0xBC, 0x29,\n\t0x45, 0x28, 0xE5, 0x9B, 0x9B, 0x29, 0x45, 0x28,\n\t0xE5, 0x9C, 0x9F, 0x29, 0x45, 0x28, 0xE5, 0xAD,\n\t0xA6, 0x29, 0x45, 0x28, 0xE6, 0x97, 0xA5, 0x29,\n\t0x45, 0x28, 0xE6, 0x9C, 0x88, 0x29, 0x45, 0x28,\n\t0xE6, 0x9C, 0x89, 0x29, 0x45, 0x28, 0xE6, 0x9C,\n\t0xA8, 0x29, 0x45, 0x28, 0xE6, 0xA0, 0xAA, 0x29,\n\t0x45, 0x28, 0xE6, 0xB0, 0xB4, 0x29, 0x45, 0x28,\n\t// Bytes 2140 - 217f\n\t0xE7, 0x81, 0xAB, 0x29, 0x45, 0x28, 0xE7, 0x89,\n\t0xB9, 0x29, 0x45, 0x28, 0xE7, 0x9B, 0xA3, 0x29,\n\t0x45, 0x28, 0xE7, 0xA4, 0xBE, 0x29, 0x45, 0x28,\n\t0xE7, 0xA5, 0x9D, 0x29, 0x45, 0x28, 0xE7, 0xA5,\n\t0xAD, 0x29, 0x45, 0x28, 0xE8, 0x87, 0xAA, 0x29,\n\t0x45, 0x28, 0xE8, 0x87, 0xB3, 0x29, 0x45, 0x28,\n\t0xE8, 0xB2, 0xA1, 0x29, 0x45, 0x28, 0xE8, 0xB3,\n\t0x87, 0x29, 0x45, 0x28, 0xE9, 0x87, 0x91, 0x29,\n\t// Bytes 2180 - 21bf\n\t0x45, 0x30, 0xE2, 0x81, 0x84, 0x33, 0x45, 0x31,\n\t0x30, 0xE6, 0x97, 0xA5, 0x45, 0x31, 0x30, 0xE6,\n\t0x9C, 0x88, 0x45, 0x31, 0x30, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x31, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t0x31, 0xE6, 0x9C, 0x88, 0x45, 0x31, 0x31, 0xE7,\n\t0x82, 0xB9, 0x45, 0x31, 0x32, 0xE6, 0x97, 0xA5,\n\t0x45, 0x31, 0x32, 0xE6, 0x9C, 0x88, 0x45, 0x31,\n\t0x32, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x33, 0xE6,\n\t// Bytes 21c0 - 21ff\n\t0x97, 0xA5, 0x45, 0x31, 0x33, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x34, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t0x34, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x35, 0xE6,\n\t0x97, 0xA5, 0x45, 0x31, 0x35, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x36, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t0x36, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x37, 0xE6,\n\t0x97, 0xA5, 0x45, 0x31, 0x37, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0x38, 0xE6, 0x97, 0xA5, 0x45, 0x31,\n\t// Bytes 2200 - 223f\n\t0x38, 0xE7, 0x82, 0xB9, 0x45, 0x31, 0x39, 0xE6,\n\t0x97, 0xA5, 0x45, 0x31, 0x39, 0xE7, 0x82, 0xB9,\n\t0x45, 0x31, 0xE2, 0x81, 0x84, 0x32, 0x45, 0x31,\n\t0xE2, 0x81, 0x84, 0x33, 0x45, 0x31, 0xE2, 0x81,\n\t0x84, 0x34, 0x45, 0x31, 0xE2, 0x81, 0x84, 0x35,\n\t0x45, 0x31, 0xE2, 0x81, 0x84, 0x36, 0x45, 0x31,\n\t0xE2, 0x81, 0x84, 0x37, 0x45, 0x31, 0xE2, 0x81,\n\t0x84, 0x38, 0x45, 0x31, 0xE2, 0x81, 0x84, 0x39,\n\t// Bytes 2240 - 227f\n\t0x45, 0x32, 0x30, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x30, 0xE7, 0x82, 0xB9, 0x45, 0x32, 0x31, 0xE6,\n\t0x97, 0xA5, 0x45, 0x32, 0x31, 0xE7, 0x82, 0xB9,\n\t0x45, 0x32, 0x32, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x32, 0xE7, 0x82, 0xB9, 0x45, 0x32, 0x33, 0xE6,\n\t0x97, 0xA5, 0x45, 0x32, 0x33, 0xE7, 0x82, 0xB9,\n\t0x45, 0x32, 0x34, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x34, 0xE7, 0x82, 0xB9, 0x45, 0x32, 0x35, 0xE6,\n\t// Bytes 2280 - 22bf\n\t0x97, 0xA5, 0x45, 0x32, 0x36, 0xE6, 0x97, 0xA5,\n\t0x45, 0x32, 0x37, 0xE6, 0x97, 0xA5, 0x45, 0x32,\n\t0x38, 0xE6, 0x97, 0xA5, 0x45, 0x32, 0x39, 0xE6,\n\t0x97, 0xA5, 0x45, 0x32, 0xE2, 0x81, 0x84, 0x33,\n\t0x45, 0x32, 0xE2, 0x81, 0x84, 0x35, 0x45, 0x33,\n\t0x30, 0xE6, 0x97, 0xA5, 0x45, 0x33, 0x31, 0xE6,\n\t0x97, 0xA5, 0x45, 0x33, 0xE2, 0x81, 0x84, 0x34,\n\t0x45, 0x33, 0xE2, 0x81, 0x84, 0x35, 0x45, 0x33,\n\t// Bytes 22c0 - 22ff\n\t0xE2, 0x81, 0x84, 0x38, 0x45, 0x34, 0xE2, 0x81,\n\t0x84, 0x35, 0x45, 0x35, 0xE2, 0x81, 0x84, 0x36,\n\t0x45, 0x35, 0xE2, 0x81, 0x84, 0x38, 0x45, 0x37,\n\t0xE2, 0x81, 0x84, 0x38, 0x45, 0x41, 0xE2, 0x88,\n\t0x95, 0x6D, 0x45, 0x56, 0xE2, 0x88, 0x95, 0x6D,\n\t0x45, 0x6D, 0xE2, 0x88, 0x95, 0x73, 0x46, 0x31,\n\t0xE2, 0x81, 0x84, 0x31, 0x30, 0x46, 0x43, 0xE2,\n\t0x88, 0x95, 0x6B, 0x67, 0x46, 0x6D, 0xE2, 0x88,\n\t// Bytes 2300 - 233f\n\t0x95, 0x73, 0x32, 0x46, 0xD8, 0xA8, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD8, 0xA8, 0xD8, 0xAE, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xAA, 0xD8, 0xAC, 0xD9, 0x85,\n\t0x46, 0xD8, 0xAA, 0xD8, 0xAC, 0xD9, 0x89, 0x46,\n\t0xD8, 0xAA, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD8,\n\t0xAA, 0xD8, 0xAD, 0xD8, 0xAC, 0x46, 0xD8, 0xAA,\n\t0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD8, 0xAA, 0xD8,\n\t0xAE, 0xD9, 0x85, 0x46, 0xD8, 0xAA, 0xD8, 0xAE,\n\t// Bytes 2340 - 237f\n\t0xD9, 0x89, 0x46, 0xD8, 0xAA, 0xD8, 0xAE, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xAA, 0xD9, 0x85, 0xD8, 0xAC,\n\t0x46, 0xD8, 0xAA, 0xD9, 0x85, 0xD8, 0xAD, 0x46,\n\t0xD8, 0xAA, 0xD9, 0x85, 0xD8, 0xAE, 0x46, 0xD8,\n\t0xAA, 0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8, 0xAA,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xAC, 0xD8,\n\t0xAD, 0xD9, 0x89, 0x46, 0xD8, 0xAC, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD8, 0xAC, 0xD9, 0x85, 0xD8,\n\t// Bytes 2380 - 23bf\n\t0xAD, 0x46, 0xD8, 0xAC, 0xD9, 0x85, 0xD9, 0x89,\n\t0x46, 0xD8, 0xAC, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD8, 0xAD, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD8,\n\t0xAD, 0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8, 0xAD,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xB3, 0xD8,\n\t0xAC, 0xD8, 0xAD, 0x46, 0xD8, 0xB3, 0xD8, 0xAC,\n\t0xD9, 0x89, 0x46, 0xD8, 0xB3, 0xD8, 0xAD, 0xD8,\n\t0xAC, 0x46, 0xD8, 0xB3, 0xD8, 0xAE, 0xD9, 0x89,\n\t// Bytes 23c0 - 23ff\n\t0x46, 0xD8, 0xB3, 0xD8, 0xAE, 0xD9, 0x8A, 0x46,\n\t0xD8, 0xB3, 0xD9, 0x85, 0xD8, 0xAC, 0x46, 0xD8,\n\t0xB3, 0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD8, 0xB3,\n\t0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD8, 0xB4, 0xD8,\n\t0xAC, 0xD9, 0x8A, 0x46, 0xD8, 0xB4, 0xD8, 0xAD,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB4, 0xD8, 0xAD, 0xD9,\n\t0x8A, 0x46, 0xD8, 0xB4, 0xD9, 0x85, 0xD8, 0xAE,\n\t0x46, 0xD8, 0xB4, 0xD9, 0x85, 0xD9, 0x85, 0x46,\n\t// Bytes 2400 - 243f\n\t0xD8, 0xB5, 0xD8, 0xAD, 0xD8, 0xAD, 0x46, 0xD8,\n\t0xB5, 0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD8, 0xB5,\n\t0xD9, 0x84, 0xD9, 0x89, 0x46, 0xD8, 0xB5, 0xD9,\n\t0x84, 0xDB, 0x92, 0x46, 0xD8, 0xB5, 0xD9, 0x85,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB6, 0xD8, 0xAD, 0xD9,\n\t0x89, 0x46, 0xD8, 0xB6, 0xD8, 0xAD, 0xD9, 0x8A,\n\t0x46, 0xD8, 0xB6, 0xD8, 0xAE, 0xD9, 0x85, 0x46,\n\t0xD8, 0xB7, 0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD8,\n\t// Bytes 2440 - 247f\n\t0xB7, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD8, 0xB7,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD8, 0xB9, 0xD8,\n\t0xAC, 0xD9, 0x85, 0x46, 0xD8, 0xB9, 0xD9, 0x85,\n\t0xD9, 0x85, 0x46, 0xD8, 0xB9, 0xD9, 0x85, 0xD9,\n\t0x89, 0x46, 0xD8, 0xB9, 0xD9, 0x85, 0xD9, 0x8A,\n\t0x46, 0xD8, 0xBA, 0xD9, 0x85, 0xD9, 0x85, 0x46,\n\t0xD8, 0xBA, 0xD9, 0x85, 0xD9, 0x89, 0x46, 0xD8,\n\t0xBA, 0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x81,\n\t// Bytes 2480 - 24bf\n\t0xD8, 0xAE, 0xD9, 0x85, 0x46, 0xD9, 0x81, 0xD9,\n\t0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x82, 0xD9, 0x84,\n\t0xDB, 0x92, 0x46, 0xD9, 0x82, 0xD9, 0x85, 0xD8,\n\t0xAD, 0x46, 0xD9, 0x82, 0xD9, 0x85, 0xD9, 0x85,\n\t0x46, 0xD9, 0x82, 0xD9, 0x85, 0xD9, 0x8A, 0x46,\n\t0xD9, 0x83, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD9,\n\t0x83, 0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x84,\n\t0xD8, 0xAC, 0xD8, 0xAC, 0x46, 0xD9, 0x84, 0xD8,\n\t// Bytes 24c0 - 24ff\n\t0xAC, 0xD9, 0x85, 0x46, 0xD9, 0x84, 0xD8, 0xAC,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x84, 0xD8, 0xAD, 0xD9,\n\t0x85, 0x46, 0xD9, 0x84, 0xD8, 0xAD, 0xD9, 0x89,\n\t0x46, 0xD9, 0x84, 0xD8, 0xAD, 0xD9, 0x8A, 0x46,\n\t0xD9, 0x84, 0xD8, 0xAE, 0xD9, 0x85, 0x46, 0xD9,\n\t0x84, 0xD9, 0x85, 0xD8, 0xAD, 0x46, 0xD9, 0x84,\n\t0xD9, 0x85, 0xD9, 0x8A, 0x46, 0xD9, 0x85, 0xD8,\n\t0xAC, 0xD8, 0xAD, 0x46, 0xD9, 0x85, 0xD8, 0xAC,\n\t// Bytes 2500 - 253f\n\t0xD8, 0xAE, 0x46, 0xD9, 0x85, 0xD8, 0xAC, 0xD9,\n\t0x85, 0x46, 0xD9, 0x85, 0xD8, 0xAC, 0xD9, 0x8A,\n\t0x46, 0xD9, 0x85, 0xD8, 0xAD, 0xD8, 0xAC, 0x46,\n\t0xD9, 0x85, 0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD9,\n\t0x85, 0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD9, 0x85,\n\t0xD8, 0xAE, 0xD8, 0xAC, 0x46, 0xD9, 0x85, 0xD8,\n\t0xAE, 0xD9, 0x85, 0x46, 0xD9, 0x85, 0xD8, 0xAE,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x85, 0xD9, 0x85, 0xD9,\n\t// Bytes 2540 - 257f\n\t0x8A, 0x46, 0xD9, 0x86, 0xD8, 0xAC, 0xD8, 0xAD,\n\t0x46, 0xD9, 0x86, 0xD8, 0xAC, 0xD9, 0x85, 0x46,\n\t0xD9, 0x86, 0xD8, 0xAC, 0xD9, 0x89, 0x46, 0xD9,\n\t0x86, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD9, 0x86,\n\t0xD8, 0xAD, 0xD9, 0x85, 0x46, 0xD9, 0x86, 0xD8,\n\t0xAD, 0xD9, 0x89, 0x46, 0xD9, 0x86, 0xD8, 0xAD,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x86, 0xD9, 0x85, 0xD9,\n\t0x89, 0x46, 0xD9, 0x86, 0xD9, 0x85, 0xD9, 0x8A,\n\t// Bytes 2580 - 25bf\n\t0x46, 0xD9, 0x87, 0xD9, 0x85, 0xD8, 0xAC, 0x46,\n\t0xD9, 0x87, 0xD9, 0x85, 0xD9, 0x85, 0x46, 0xD9,\n\t0x8A, 0xD8, 0xAC, 0xD9, 0x8A, 0x46, 0xD9, 0x8A,\n\t0xD8, 0xAD, 0xD9, 0x8A, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x85, 0xD9, 0x85, 0x46, 0xD9, 0x8A, 0xD9, 0x85,\n\t0xD9, 0x8A, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8,\n\t0xA7, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xAC,\n\t0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xAD, 0x46,\n\t// Bytes 25c0 - 25ff\n\t0xD9, 0x8A, 0xD9, 0x94, 0xD8, 0xAE, 0x46, 0xD9,\n\t0x8A, 0xD9, 0x94, 0xD8, 0xB1, 0x46, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xD8, 0xB2, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x94, 0xD9, 0x85, 0x46, 0xD9, 0x8A, 0xD9, 0x94,\n\t0xD9, 0x86, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9,\n\t0x87, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x88,\n\t0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x89, 0x46,\n\t0xD9, 0x8A, 0xD9, 0x94, 0xD9, 0x8A, 0x46, 0xD9,\n\t// Bytes 2600 - 263f\n\t0x8A, 0xD9, 0x94, 0xDB, 0x86, 0x46, 0xD9, 0x8A,\n\t0xD9, 0x94, 0xDB, 0x87, 0x46, 0xD9, 0x8A, 0xD9,\n\t0x94, 0xDB, 0x88, 0x46, 0xD9, 0x8A, 0xD9, 0x94,\n\t0xDB, 0x90, 0x46, 0xD9, 0x8A, 0xD9, 0x94, 0xDB,\n\t0x95, 0x46, 0xE0, 0xB9, 0x8D, 0xE0, 0xB8, 0xB2,\n\t0x46, 0xE0, 0xBA, 0xAB, 0xE0, 0xBA, 0x99, 0x46,\n\t0xE0, 0xBA, 0xAB, 0xE0, 0xBA, 0xA1, 0x46, 0xE0,\n\t0xBB, 0x8D, 0xE0, 0xBA, 0xB2, 0x46, 0xE0, 0xBD,\n\t// Bytes 2640 - 267f\n\t0x80, 0xE0, 0xBE, 0xB5, 0x46, 0xE0, 0xBD, 0x82,\n\t0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBD, 0x8C, 0xE0,\n\t0xBE, 0xB7, 0x46, 0xE0, 0xBD, 0x91, 0xE0, 0xBE,\n\t0xB7, 0x46, 0xE0, 0xBD, 0x96, 0xE0, 0xBE, 0xB7,\n\t0x46, 0xE0, 0xBD, 0x9B, 0xE0, 0xBE, 0xB7, 0x46,\n\t0xE0, 0xBE, 0x90, 0xE0, 0xBE, 0xB5, 0x46, 0xE0,\n\t0xBE, 0x92, 0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE,\n\t0x9C, 0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0xA1,\n\t// Bytes 2680 - 26bf\n\t0xE0, 0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0xA6, 0xE0,\n\t0xBE, 0xB7, 0x46, 0xE0, 0xBE, 0xAB, 0xE0, 0xBE,\n\t0xB7, 0x46, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0x46, 0xE2, 0x80, 0xB5, 0xE2, 0x80, 0xB5, 0x46,\n\t0xE2, 0x88, 0xAB, 0xE2, 0x88, 0xAB, 0x46, 0xE2,\n\t0x88, 0xAE, 0xE2, 0x88, 0xAE, 0x46, 0xE3, 0x81,\n\t0xBB, 0xE3, 0x81, 0x8B, 0x46, 0xE3, 0x82, 0x88,\n\t0xE3, 0x82, 0x8A, 0x46, 0xE3, 0x82, 0xAD, 0xE3,\n\t// Bytes 26c0 - 26ff\n\t0x83, 0xAD, 0x46, 0xE3, 0x82, 0xB3, 0xE3, 0x82,\n\t0xB3, 0x46, 0xE3, 0x82, 0xB3, 0xE3, 0x83, 0x88,\n\t0x46, 0xE3, 0x83, 0x88, 0xE3, 0x83, 0xB3, 0x46,\n\t0xE3, 0x83, 0x8A, 0xE3, 0x83, 0x8E, 0x46, 0xE3,\n\t0x83, 0x9B, 0xE3, 0x83, 0xB3, 0x46, 0xE3, 0x83,\n\t0x9F, 0xE3, 0x83, 0xAA, 0x46, 0xE3, 0x83, 0xAA,\n\t0xE3, 0x83, 0xA9, 0x46, 0xE3, 0x83, 0xAC, 0xE3,\n\t0x83, 0xA0, 0x46, 0xE5, 0xA4, 0xA7, 0xE6, 0xAD,\n\t// Bytes 2700 - 273f\n\t0xA3, 0x46, 0xE5, 0xB9, 0xB3, 0xE6, 0x88, 0x90,\n\t0x46, 0xE6, 0x98, 0x8E, 0xE6, 0xB2, 0xBB, 0x46,\n\t0xE6, 0x98, 0xAD, 0xE5, 0x92, 0x8C, 0x47, 0x72,\n\t0x61, 0x64, 0xE2, 0x88, 0x95, 0x73, 0x47, 0xE3,\n\t0x80, 0x94, 0x53, 0xE3, 0x80, 0x95, 0x48, 0x28,\n\t0xE1, 0x84, 0x80, 0xE1, 0x85, 0xA1, 0x29, 0x48,\n\t0x28, 0xE1, 0x84, 0x82, 0xE1, 0x85, 0xA1, 0x29,\n\t0x48, 0x28, 0xE1, 0x84, 0x83, 0xE1, 0x85, 0xA1,\n\t// Bytes 2740 - 277f\n\t0x29, 0x48, 0x28, 0xE1, 0x84, 0x85, 0xE1, 0x85,\n\t0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x86, 0xE1,\n\t0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x87,\n\t0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84,\n\t0x89, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1,\n\t0x84, 0x8B, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28,\n\t0xE1, 0x84, 0x8C, 0xE1, 0x85, 0xA1, 0x29, 0x48,\n\t0x28, 0xE1, 0x84, 0x8C, 0xE1, 0x85, 0xAE, 0x29,\n\t// Bytes 2780 - 27bf\n\t0x48, 0x28, 0xE1, 0x84, 0x8E, 0xE1, 0x85, 0xA1,\n\t0x29, 0x48, 0x28, 0xE1, 0x84, 0x8F, 0xE1, 0x85,\n\t0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x90, 0xE1,\n\t0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84, 0x91,\n\t0xE1, 0x85, 0xA1, 0x29, 0x48, 0x28, 0xE1, 0x84,\n\t0x92, 0xE1, 0x85, 0xA1, 0x29, 0x48, 0x72, 0x61,\n\t0x64, 0xE2, 0x88, 0x95, 0x73, 0x32, 0x48, 0xD8,\n\t0xA7, 0xD9, 0x83, 0xD8, 0xA8, 0xD8, 0xB1, 0x48,\n\t// Bytes 27c0 - 27ff\n\t0xD8, 0xA7, 0xD9, 0x84, 0xD9, 0x84, 0xD9, 0x87,\n\t0x48, 0xD8, 0xB1, 0xD8, 0xB3, 0xD9, 0x88, 0xD9,\n\t0x84, 0x48, 0xD8, 0xB1, 0xDB, 0x8C, 0xD8, 0xA7,\n\t0xD9, 0x84, 0x48, 0xD8, 0xB5, 0xD9, 0x84, 0xD8,\n\t0xB9, 0xD9, 0x85, 0x48, 0xD8, 0xB9, 0xD9, 0x84,\n\t0xD9, 0x8A, 0xD9, 0x87, 0x48, 0xD9, 0x85, 0xD8,\n\t0xAD, 0xD9, 0x85, 0xD8, 0xAF, 0x48, 0xD9, 0x88,\n\t0xD8, 0xB3, 0xD9, 0x84, 0xD9, 0x85, 0x49, 0xE2,\n\t// Bytes 2800 - 283f\n\t0x80, 0xB2, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0x49, 0xE2, 0x80, 0xB5, 0xE2, 0x80, 0xB5, 0xE2,\n\t0x80, 0xB5, 0x49, 0xE2, 0x88, 0xAB, 0xE2, 0x88,\n\t0xAB, 0xE2, 0x88, 0xAB, 0x49, 0xE2, 0x88, 0xAE,\n\t0xE2, 0x88, 0xAE, 0xE2, 0x88, 0xAE, 0x49, 0xE3,\n\t0x80, 0x94, 0xE4, 0xB8, 0x89, 0xE3, 0x80, 0x95,\n\t0x49, 0xE3, 0x80, 0x94, 0xE4, 0xBA, 0x8C, 0xE3,\n\t0x80, 0x95, 0x49, 0xE3, 0x80, 0x94, 0xE5, 0x8B,\n\t// Bytes 2840 - 287f\n\t0x9D, 0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80, 0x94,\n\t0xE5, 0xAE, 0x89, 0xE3, 0x80, 0x95, 0x49, 0xE3,\n\t0x80, 0x94, 0xE6, 0x89, 0x93, 0xE3, 0x80, 0x95,\n\t0x49, 0xE3, 0x80, 0x94, 0xE6, 0x95, 0x97, 0xE3,\n\t0x80, 0x95, 0x49, 0xE3, 0x80, 0x94, 0xE6, 0x9C,\n\t0xAC, 0xE3, 0x80, 0x95, 0x49, 0xE3, 0x80, 0x94,\n\t0xE7, 0x82, 0xB9, 0xE3, 0x80, 0x95, 0x49, 0xE3,\n\t0x80, 0x94, 0xE7, 0x9B, 0x97, 0xE3, 0x80, 0x95,\n\t// Bytes 2880 - 28bf\n\t0x49, 0xE3, 0x82, 0xA2, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xAB, 0x49, 0xE3, 0x82, 0xA4, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x81, 0x49, 0xE3, 0x82, 0xA6,\n\t0xE3, 0x82, 0xA9, 0xE3, 0x83, 0xB3, 0x49, 0xE3,\n\t0x82, 0xAA, 0xE3, 0x83, 0xB3, 0xE3, 0x82, 0xB9,\n\t0x49, 0xE3, 0x82, 0xAA, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xA0, 0x49, 0xE3, 0x82, 0xAB, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0xAA, 0x49, 0xE3, 0x82, 0xB1,\n\t// Bytes 28c0 - 28ff\n\t0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xB9, 0x49, 0xE3,\n\t0x82, 0xB3, 0xE3, 0x83, 0xAB, 0xE3, 0x83, 0x8A,\n\t0x49, 0xE3, 0x82, 0xBB, 0xE3, 0x83, 0xB3, 0xE3,\n\t0x83, 0x81, 0x49, 0xE3, 0x82, 0xBB, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x88, 0x49, 0xE3, 0x83, 0x86,\n\t0xE3, 0x82, 0x99, 0xE3, 0x82, 0xB7, 0x49, 0xE3,\n\t0x83, 0x88, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB,\n\t0x49, 0xE3, 0x83, 0x8E, 0xE3, 0x83, 0x83, 0xE3,\n\t// Bytes 2900 - 293f\n\t0x83, 0x88, 0x49, 0xE3, 0x83, 0x8F, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0x84, 0x49, 0xE3, 0x83, 0x92,\n\t0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB, 0x49, 0xE3,\n\t0x83, 0x92, 0xE3, 0x82, 0x9A, 0xE3, 0x82, 0xB3,\n\t0x49, 0xE3, 0x83, 0x95, 0xE3, 0x83, 0xA9, 0xE3,\n\t0x83, 0xB3, 0x49, 0xE3, 0x83, 0x98, 0xE3, 0x82,\n\t0x9A, 0xE3, 0x82, 0xBD, 0x49, 0xE3, 0x83, 0x98,\n\t0xE3, 0x83, 0xAB, 0xE3, 0x83, 0x84, 0x49, 0xE3,\n\t// Bytes 2940 - 297f\n\t0x83, 0x9B, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0xAB,\n\t0x49, 0xE3, 0x83, 0x9B, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xB3, 0x49, 0xE3, 0x83, 0x9E, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x83, 0xAB, 0x49, 0xE3, 0x83, 0x9E,\n\t0xE3, 0x83, 0x83, 0xE3, 0x83, 0x8F, 0x49, 0xE3,\n\t0x83, 0x9E, 0xE3, 0x83, 0xAB, 0xE3, 0x82, 0xAF,\n\t0x49, 0xE3, 0x83, 0xA4, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0xAB, 0x49, 0xE3, 0x83, 0xA6, 0xE3, 0x82,\n\t// Bytes 2980 - 29bf\n\t0xA2, 0xE3, 0x83, 0xB3, 0x49, 0xE3, 0x83, 0xAF,\n\t0xE3, 0x83, 0x83, 0xE3, 0x83, 0x88, 0x4C, 0xE2,\n\t0x80, 0xB2, 0xE2, 0x80, 0xB2, 0xE2, 0x80, 0xB2,\n\t0xE2, 0x80, 0xB2, 0x4C, 0xE2, 0x88, 0xAB, 0xE2,\n\t0x88, 0xAB, 0xE2, 0x88, 0xAB, 0xE2, 0x88, 0xAB,\n\t0x4C, 0xE3, 0x82, 0xA2, 0xE3, 0x83, 0xAB, 0xE3,\n\t0x83, 0x95, 0xE3, 0x82, 0xA1, 0x4C, 0xE3, 0x82,\n\t0xA8, 0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xAB, 0xE3,\n\t// Bytes 29c0 - 29ff\n\t0x83, 0xBC, 0x4C, 0xE3, 0x82, 0xAB, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xB3, 0x4C,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x9E, 0x4C, 0xE3, 0x82, 0xAB,\n\t0xE3, 0x83, 0xA9, 0xE3, 0x83, 0x83, 0xE3, 0x83,\n\t0x88, 0x4C, 0xE3, 0x82, 0xAB, 0xE3, 0x83, 0xAD,\n\t0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xBC, 0x4C, 0xE3,\n\t0x82, 0xAD, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0x8B,\n\t// Bytes 2a00 - 2a3f\n\t0xE3, 0x83, 0xBC, 0x4C, 0xE3, 0x82, 0xAD, 0xE3,\n\t0x83, 0xA5, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xBC,\n\t0x4C, 0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0xE3,\n\t0x83, 0xA9, 0xE3, 0x83, 0xA0, 0x4C, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x83, 0x8D, 0x4C, 0xE3, 0x82, 0xB5, 0xE3, 0x82,\n\t0xA4, 0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAB, 0x4C,\n\t0xE3, 0x82, 0xBF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t// Bytes 2a40 - 2a7f\n\t0xBC, 0xE3, 0x82, 0xB9, 0x4C, 0xE3, 0x83, 0x8F,\n\t0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0x84, 0x4C, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAB, 0x4C, 0xE3,\n\t0x83, 0x95, 0xE3, 0x82, 0xA3, 0xE3, 0x83, 0xBC,\n\t0xE3, 0x83, 0x88, 0x4C, 0xE3, 0x83, 0x98, 0xE3,\n\t0x82, 0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x82, 0xBF,\n\t0x4C, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x9A, 0xE3,\n\t// Bytes 2a80 - 2abf\n\t0x83, 0x8B, 0xE3, 0x83, 0x92, 0x4C, 0xE3, 0x83,\n\t0x98, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xB3, 0xE3,\n\t0x82, 0xB9, 0x4C, 0xE3, 0x83, 0x9B, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xAB, 0xE3, 0x83, 0x88, 0x4C,\n\t0xE3, 0x83, 0x9E, 0xE3, 0x82, 0xA4, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x83, 0xAD, 0x4C, 0xE3, 0x83, 0x9F,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x83, 0xAD, 0xE3, 0x83,\n\t0xB3, 0x4C, 0xE3, 0x83, 0xA1, 0xE3, 0x83, 0xBC,\n\t// Bytes 2ac0 - 2aff\n\t0xE3, 0x83, 0x88, 0xE3, 0x83, 0xAB, 0x4C, 0xE3,\n\t0x83, 0xAA, 0xE3, 0x83, 0x83, 0xE3, 0x83, 0x88,\n\t0xE3, 0x83, 0xAB, 0x4C, 0xE3, 0x83, 0xAB, 0xE3,\n\t0x83, 0x92, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC,\n\t0x4C, 0xE6, 0xA0, 0xAA, 0xE5, 0xBC, 0x8F, 0xE4,\n\t0xBC, 0x9A, 0xE7, 0xA4, 0xBE, 0x4E, 0x28, 0xE1,\n\t0x84, 0x8B, 0xE1, 0x85, 0xA9, 0xE1, 0x84, 0x92,\n\t0xE1, 0x85, 0xAE, 0x29, 0x4F, 0xD8, 0xAC, 0xD9,\n\t// Bytes 2b00 - 2b3f\n\t0x84, 0x20, 0xD8, 0xAC, 0xD9, 0x84, 0xD8, 0xA7,\n\t0xD9, 0x84, 0xD9, 0x87, 0x4F, 0xE3, 0x82, 0xA2,\n\t0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x9A, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0x88, 0x4F, 0xE3, 0x82, 0xA2,\n\t0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x98, 0xE3, 0x82,\n\t0x9A, 0xE3, 0x82, 0xA2, 0x4F, 0xE3, 0x82, 0xAD,\n\t0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xAF, 0xE3, 0x83,\n\t0x83, 0xE3, 0x83, 0x88, 0x4F, 0xE3, 0x82, 0xB5,\n\t// Bytes 2b40 - 2b7f\n\t0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x81, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0xA0, 0x4F, 0xE3, 0x83, 0x8F,\n\t0xE3, 0x82, 0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0xAC, 0xE3, 0x83, 0xAB, 0x4F, 0xE3, 0x83, 0x98,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x82, 0xBF, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0xAB, 0x4F, 0xE3, 0x83, 0x9B,\n\t0xE3, 0x82, 0x9A, 0xE3, 0x82, 0xA4, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x88, 0x4F, 0xE3, 0x83, 0x9E,\n\t// Bytes 2b80 - 2bbf\n\t0xE3, 0x83, 0xB3, 0xE3, 0x82, 0xB7, 0xE3, 0x83,\n\t0xA7, 0xE3, 0x83, 0xB3, 0x4F, 0xE3, 0x83, 0xA1,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0x88, 0xE3, 0x83, 0xB3, 0x4F, 0xE3, 0x83, 0xAB,\n\t0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x95, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xAB, 0x51, 0x28, 0xE1, 0x84,\n\t0x8B, 0xE1, 0x85, 0xA9, 0xE1, 0x84, 0x8C, 0xE1,\n\t0x85, 0xA5, 0xE1, 0x86, 0xAB, 0x29, 0x52, 0xE3,\n\t// Bytes 2bc0 - 2bff\n\t0x82, 0xAD, 0xE3, 0x82, 0x99, 0xE3, 0x83, 0xAB,\n\t0xE3, 0x82, 0xBF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xBC, 0x52, 0xE3, 0x82, 0xAD, 0xE3, 0x83, 0xAD,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t0xA9, 0xE3, 0x83, 0xA0, 0x52, 0xE3, 0x82, 0xAD,\n\t0xE3, 0x83, 0xAD, 0xE3, 0x83, 0xA1, 0xE3, 0x83,\n\t0xBC, 0xE3, 0x83, 0x88, 0xE3, 0x83, 0xAB, 0x52,\n\t0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0xE3, 0x83,\n\t// Bytes 2c00 - 2c3f\n\t0xA9, 0xE3, 0x83, 0xA0, 0xE3, 0x83, 0x88, 0xE3,\n\t0x83, 0xB3, 0x52, 0xE3, 0x82, 0xAF, 0xE3, 0x83,\n\t0xAB, 0xE3, 0x82, 0xBB, 0xE3, 0x82, 0x99, 0xE3,\n\t0x82, 0xA4, 0xE3, 0x83, 0xAD, 0x52, 0xE3, 0x83,\n\t0x8F, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC, 0xE3,\n\t0x82, 0xBB, 0xE3, 0x83, 0xB3, 0xE3, 0x83, 0x88,\n\t0x52, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A, 0xE3,\n\t0x82, 0xA2, 0xE3, 0x82, 0xB9, 0xE3, 0x83, 0x88,\n\t// Bytes 2c40 - 2c7f\n\t0xE3, 0x83, 0xAB, 0x52, 0xE3, 0x83, 0x95, 0xE3,\n\t0x82, 0x99, 0xE3, 0x83, 0x83, 0xE3, 0x82, 0xB7,\n\t0xE3, 0x82, 0xA7, 0xE3, 0x83, 0xAB, 0x52, 0xE3,\n\t0x83, 0x9F, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0x8F,\n\t0xE3, 0x82, 0x99, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t0xAB, 0x52, 0xE3, 0x83, 0xAC, 0xE3, 0x83, 0xB3,\n\t0xE3, 0x83, 0x88, 0xE3, 0x82, 0xB1, 0xE3, 0x82,\n\t0x99, 0xE3, 0x83, 0xB3, 0x61, 0xD8, 0xB5, 0xD9,\n\t// Bytes 2c80 - 2cbf\n\t0x84, 0xD9, 0x89, 0x20, 0xD8, 0xA7, 0xD9, 0x84,\n\t0xD9, 0x84, 0xD9, 0x87, 0x20, 0xD8, 0xB9, 0xD9,\n\t0x84, 0xD9, 0x8A, 0xD9, 0x87, 0x20, 0xD9, 0x88,\n\t0xD8, 0xB3, 0xD9, 0x84, 0xD9, 0x85, 0x06, 0xE0,\n\t0xA7, 0x87, 0xE0, 0xA6, 0xBE, 0x01, 0x06, 0xE0,\n\t0xA7, 0x87, 0xE0, 0xA7, 0x97, 0x01, 0x06, 0xE0,\n\t0xAD, 0x87, 0xE0, 0xAC, 0xBE, 0x01, 0x06, 0xE0,\n\t0xAD, 0x87, 0xE0, 0xAD, 0x96, 0x01, 0x06, 0xE0,\n\t// Bytes 2cc0 - 2cff\n\t0xAD, 0x87, 0xE0, 0xAD, 0x97, 0x01, 0x06, 0xE0,\n\t0xAE, 0x92, 0xE0, 0xAF, 0x97, 0x01, 0x06, 0xE0,\n\t0xAF, 0x86, 0xE0, 0xAE, 0xBE, 0x01, 0x06, 0xE0,\n\t0xAF, 0x86, 0xE0, 0xAF, 0x97, 0x01, 0x06, 0xE0,\n\t0xAF, 0x87, 0xE0, 0xAE, 0xBE, 0x01, 0x06, 0xE0,\n\t0xB2, 0xBF, 0xE0, 0xB3, 0x95, 0x01, 0x06, 0xE0,\n\t0xB3, 0x86, 0xE0, 0xB3, 0x95, 0x01, 0x06, 0xE0,\n\t0xB3, 0x86, 0xE0, 0xB3, 0x96, 0x01, 0x06, 0xE0,\n\t// Bytes 2d00 - 2d3f\n\t0xB5, 0x86, 0xE0, 0xB4, 0xBE, 0x01, 0x06, 0xE0,\n\t0xB5, 0x86, 0xE0, 0xB5, 0x97, 0x01, 0x06, 0xE0,\n\t0xB5, 0x87, 0xE0, 0xB4, 0xBE, 0x01, 0x06, 0xE0,\n\t0xB7, 0x99, 0xE0, 0xB7, 0x9F, 0x01, 0x06, 0xE1,\n\t0x80, 0xA5, 0xE1, 0x80, 0xAE, 0x01, 0x06, 0xE1,\n\t0xAC, 0x85, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x87, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x89, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t// Bytes 2d40 - 2d7f\n\t0xAC, 0x8B, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x8D, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0x91, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBA, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBC, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBE, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAC, 0xBF, 0xE1, 0xAC, 0xB5, 0x01, 0x06, 0xE1,\n\t0xAD, 0x82, 0xE1, 0xAC, 0xB5, 0x01, 0x08, 0xF0,\n\t// Bytes 2d80 - 2dbf\n\t0x91, 0x84, 0xB1, 0xF0, 0x91, 0x84, 0xA7, 0x01,\n\t0x08, 0xF0, 0x91, 0x84, 0xB2, 0xF0, 0x91, 0x84,\n\t0xA7, 0x01, 0x08, 0xF0, 0x91, 0x8D, 0x87, 0xF0,\n\t0x91, 0x8C, 0xBE, 0x01, 0x08, 0xF0, 0x91, 0x8D,\n\t0x87, 0xF0, 0x91, 0x8D, 0x97, 0x01, 0x08, 0xF0,\n\t0x91, 0x92, 0xB9, 0xF0, 0x91, 0x92, 0xB0, 0x01,\n\t0x08, 0xF0, 0x91, 0x92, 0xB9, 0xF0, 0x91, 0x92,\n\t0xBA, 0x01, 0x08, 0xF0, 0x91, 0x92, 0xB9, 0xF0,\n\t// Bytes 2dc0 - 2dff\n\t0x91, 0x92, 0xBD, 0x01, 0x08, 0xF0, 0x91, 0x96,\n\t0xB8, 0xF0, 0x91, 0x96, 0xAF, 0x01, 0x08, 0xF0,\n\t0x91, 0x96, 0xB9, 0xF0, 0x91, 0x96, 0xAF, 0x01,\n\t0x09, 0xE0, 0xB3, 0x86, 0xE0, 0xB3, 0x82, 0xE0,\n\t0xB3, 0x95, 0x02, 0x09, 0xE0, 0xB7, 0x99, 0xE0,\n\t0xB7, 0x8F, 0xE0, 0xB7, 0x8A, 0x12, 0x44, 0x44,\n\t0x5A, 0xCC, 0x8C, 0xC9, 0x44, 0x44, 0x7A, 0xCC,\n\t0x8C, 0xC9, 0x44, 0x64, 0x7A, 0xCC, 0x8C, 0xC9,\n\t// Bytes 2e00 - 2e3f\n\t0x46, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x93, 0xC9,\n\t0x46, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x94, 0xC9,\n\t0x46, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x95, 0xB5,\n\t0x46, 0xE1, 0x84, 0x80, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x82, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x83, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x85, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x86, 0xE1, 0x85, 0xA1, 0x01,\n\t// Bytes 2e40 - 2e7f\n\t0x46, 0xE1, 0x84, 0x87, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x89, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xAE, 0x01,\n\t0x46, 0xE1, 0x84, 0x8C, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8E, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x8F, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x90, 0xE1, 0x85, 0xA1, 0x01,\n\t// Bytes 2e80 - 2ebf\n\t0x46, 0xE1, 0x84, 0x91, 0xE1, 0x85, 0xA1, 0x01,\n\t0x46, 0xE1, 0x84, 0x92, 0xE1, 0x85, 0xA1, 0x01,\n\t0x49, 0xE3, 0x83, 0xA1, 0xE3, 0x82, 0xAB, 0xE3,\n\t0x82, 0x99, 0x0D, 0x4C, 0xE1, 0x84, 0x8C, 0xE1,\n\t0x85, 0xAE, 0xE1, 0x84, 0x8B, 0xE1, 0x85, 0xB4,\n\t0x01, 0x4C, 0xE3, 0x82, 0xAD, 0xE3, 0x82, 0x99,\n\t0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0x0D, 0x4C,\n\t0xE3, 0x82, 0xB3, 0xE3, 0x83, 0xBC, 0xE3, 0x83,\n\t// Bytes 2ec0 - 2eff\n\t0x9B, 0xE3, 0x82, 0x9A, 0x0D, 0x4C, 0xE3, 0x83,\n\t0xA4, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88, 0xE3,\n\t0x82, 0x99, 0x0D, 0x4F, 0xE1, 0x84, 0x8E, 0xE1,\n\t0x85, 0xA1, 0xE1, 0x86, 0xB7, 0xE1, 0x84, 0x80,\n\t0xE1, 0x85, 0xA9, 0x01, 0x4F, 0xE3, 0x82, 0xA4,\n\t0xE3, 0x83, 0x8B, 0xE3, 0x83, 0xB3, 0xE3, 0x82,\n\t0xAF, 0xE3, 0x82, 0x99, 0x0D, 0x4F, 0xE3, 0x82,\n\t0xB7, 0xE3, 0x83, 0xAA, 0xE3, 0x83, 0xB3, 0xE3,\n\t// Bytes 2f00 - 2f3f\n\t0x82, 0xAF, 0xE3, 0x82, 0x99, 0x0D, 0x4F, 0xE3,\n\t0x83, 0x98, 0xE3, 0x82, 0x9A, 0xE3, 0x83, 0xBC,\n\t0xE3, 0x82, 0xB7, 0xE3, 0x82, 0x99, 0x0D, 0x4F,\n\t0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x9A, 0xE3, 0x83,\n\t0xB3, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D,\n\t0x52, 0xE3, 0x82, 0xA8, 0xE3, 0x82, 0xB9, 0xE3,\n\t0x82, 0xAF, 0xE3, 0x83, 0xBC, 0xE3, 0x83, 0x88,\n\t0xE3, 0x82, 0x99, 0x0D, 0x52, 0xE3, 0x83, 0x95,\n\t// Bytes 2f40 - 2f7f\n\t0xE3, 0x82, 0xA1, 0xE3, 0x83, 0xA9, 0xE3, 0x83,\n\t0x83, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D,\n\t0x86, 0xE0, 0xB3, 0x86, 0xE0, 0xB3, 0x82, 0x01,\n\t0x86, 0xE0, 0xB7, 0x99, 0xE0, 0xB7, 0x8F, 0x01,\n\t0x03, 0x3C, 0xCC, 0xB8, 0x05, 0x03, 0x3D, 0xCC,\n\t0xB8, 0x05, 0x03, 0x3E, 0xCC, 0xB8, 0x05, 0x03,\n\t0x41, 0xCC, 0x80, 0xC9, 0x03, 0x41, 0xCC, 0x81,\n\t0xC9, 0x03, 0x41, 0xCC, 0x83, 0xC9, 0x03, 0x41,\n\t// Bytes 2f80 - 2fbf\n\t0xCC, 0x84, 0xC9, 0x03, 0x41, 0xCC, 0x89, 0xC9,\n\t0x03, 0x41, 0xCC, 0x8C, 0xC9, 0x03, 0x41, 0xCC,\n\t0x8F, 0xC9, 0x03, 0x41, 0xCC, 0x91, 0xC9, 0x03,\n\t0x41, 0xCC, 0xA5, 0xB5, 0x03, 0x41, 0xCC, 0xA8,\n\t0xA5, 0x03, 0x42, 0xCC, 0x87, 0xC9, 0x03, 0x42,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x42, 0xCC, 0xB1, 0xB5,\n\t0x03, 0x43, 0xCC, 0x81, 0xC9, 0x03, 0x43, 0xCC,\n\t0x82, 0xC9, 0x03, 0x43, 0xCC, 0x87, 0xC9, 0x03,\n\t// Bytes 2fc0 - 2fff\n\t0x43, 0xCC, 0x8C, 0xC9, 0x03, 0x44, 0xCC, 0x87,\n\t0xC9, 0x03, 0x44, 0xCC, 0x8C, 0xC9, 0x03, 0x44,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x44, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x44, 0xCC, 0xAD, 0xB5, 0x03, 0x44, 0xCC,\n\t0xB1, 0xB5, 0x03, 0x45, 0xCC, 0x80, 0xC9, 0x03,\n\t0x45, 0xCC, 0x81, 0xC9, 0x03, 0x45, 0xCC, 0x83,\n\t0xC9, 0x03, 0x45, 0xCC, 0x86, 0xC9, 0x03, 0x45,\n\t0xCC, 0x87, 0xC9, 0x03, 0x45, 0xCC, 0x88, 0xC9,\n\t// Bytes 3000 - 303f\n\t0x03, 0x45, 0xCC, 0x89, 0xC9, 0x03, 0x45, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x45, 0xCC, 0x8F, 0xC9, 0x03,\n\t0x45, 0xCC, 0x91, 0xC9, 0x03, 0x45, 0xCC, 0xA8,\n\t0xA5, 0x03, 0x45, 0xCC, 0xAD, 0xB5, 0x03, 0x45,\n\t0xCC, 0xB0, 0xB5, 0x03, 0x46, 0xCC, 0x87, 0xC9,\n\t0x03, 0x47, 0xCC, 0x81, 0xC9, 0x03, 0x47, 0xCC,\n\t0x82, 0xC9, 0x03, 0x47, 0xCC, 0x84, 0xC9, 0x03,\n\t0x47, 0xCC, 0x86, 0xC9, 0x03, 0x47, 0xCC, 0x87,\n\t// Bytes 3040 - 307f\n\t0xC9, 0x03, 0x47, 0xCC, 0x8C, 0xC9, 0x03, 0x47,\n\t0xCC, 0xA7, 0xA5, 0x03, 0x48, 0xCC, 0x82, 0xC9,\n\t0x03, 0x48, 0xCC, 0x87, 0xC9, 0x03, 0x48, 0xCC,\n\t0x88, 0xC9, 0x03, 0x48, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x48, 0xCC, 0xA3, 0xB5, 0x03, 0x48, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x48, 0xCC, 0xAE, 0xB5, 0x03, 0x49,\n\t0xCC, 0x80, 0xC9, 0x03, 0x49, 0xCC, 0x81, 0xC9,\n\t0x03, 0x49, 0xCC, 0x82, 0xC9, 0x03, 0x49, 0xCC,\n\t// Bytes 3080 - 30bf\n\t0x83, 0xC9, 0x03, 0x49, 0xCC, 0x84, 0xC9, 0x03,\n\t0x49, 0xCC, 0x86, 0xC9, 0x03, 0x49, 0xCC, 0x87,\n\t0xC9, 0x03, 0x49, 0xCC, 0x89, 0xC9, 0x03, 0x49,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x49, 0xCC, 0x8F, 0xC9,\n\t0x03, 0x49, 0xCC, 0x91, 0xC9, 0x03, 0x49, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x49, 0xCC, 0xA8, 0xA5, 0x03,\n\t0x49, 0xCC, 0xB0, 0xB5, 0x03, 0x4A, 0xCC, 0x82,\n\t0xC9, 0x03, 0x4B, 0xCC, 0x81, 0xC9, 0x03, 0x4B,\n\t// Bytes 30c0 - 30ff\n\t0xCC, 0x8C, 0xC9, 0x03, 0x4B, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x4B, 0xCC, 0xA7, 0xA5, 0x03, 0x4B, 0xCC,\n\t0xB1, 0xB5, 0x03, 0x4C, 0xCC, 0x81, 0xC9, 0x03,\n\t0x4C, 0xCC, 0x8C, 0xC9, 0x03, 0x4C, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x4C, 0xCC, 0xAD, 0xB5, 0x03, 0x4C,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x4D, 0xCC, 0x81, 0xC9,\n\t0x03, 0x4D, 0xCC, 0x87, 0xC9, 0x03, 0x4D, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x4E, 0xCC, 0x80, 0xC9, 0x03,\n\t// Bytes 3100 - 313f\n\t0x4E, 0xCC, 0x81, 0xC9, 0x03, 0x4E, 0xCC, 0x83,\n\t0xC9, 0x03, 0x4E, 0xCC, 0x87, 0xC9, 0x03, 0x4E,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x4E, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x4E, 0xCC, 0xA7, 0xA5, 0x03, 0x4E, 0xCC,\n\t0xAD, 0xB5, 0x03, 0x4E, 0xCC, 0xB1, 0xB5, 0x03,\n\t0x4F, 0xCC, 0x80, 0xC9, 0x03, 0x4F, 0xCC, 0x81,\n\t0xC9, 0x03, 0x4F, 0xCC, 0x86, 0xC9, 0x03, 0x4F,\n\t0xCC, 0x89, 0xC9, 0x03, 0x4F, 0xCC, 0x8B, 0xC9,\n\t// Bytes 3140 - 317f\n\t0x03, 0x4F, 0xCC, 0x8C, 0xC9, 0x03, 0x4F, 0xCC,\n\t0x8F, 0xC9, 0x03, 0x4F, 0xCC, 0x91, 0xC9, 0x03,\n\t0x50, 0xCC, 0x81, 0xC9, 0x03, 0x50, 0xCC, 0x87,\n\t0xC9, 0x03, 0x52, 0xCC, 0x81, 0xC9, 0x03, 0x52,\n\t0xCC, 0x87, 0xC9, 0x03, 0x52, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x52, 0xCC, 0x8F, 0xC9, 0x03, 0x52, 0xCC,\n\t0x91, 0xC9, 0x03, 0x52, 0xCC, 0xA7, 0xA5, 0x03,\n\t0x52, 0xCC, 0xB1, 0xB5, 0x03, 0x53, 0xCC, 0x82,\n\t// Bytes 3180 - 31bf\n\t0xC9, 0x03, 0x53, 0xCC, 0x87, 0xC9, 0x03, 0x53,\n\t0xCC, 0xA6, 0xB5, 0x03, 0x53, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x54, 0xCC, 0x87, 0xC9, 0x03, 0x54, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x54, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x54, 0xCC, 0xA6, 0xB5, 0x03, 0x54, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x54, 0xCC, 0xAD, 0xB5, 0x03, 0x54,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x55, 0xCC, 0x80, 0xC9,\n\t0x03, 0x55, 0xCC, 0x81, 0xC9, 0x03, 0x55, 0xCC,\n\t// Bytes 31c0 - 31ff\n\t0x82, 0xC9, 0x03, 0x55, 0xCC, 0x86, 0xC9, 0x03,\n\t0x55, 0xCC, 0x89, 0xC9, 0x03, 0x55, 0xCC, 0x8A,\n\t0xC9, 0x03, 0x55, 0xCC, 0x8B, 0xC9, 0x03, 0x55,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x55, 0xCC, 0x8F, 0xC9,\n\t0x03, 0x55, 0xCC, 0x91, 0xC9, 0x03, 0x55, 0xCC,\n\t0xA3, 0xB5, 0x03, 0x55, 0xCC, 0xA4, 0xB5, 0x03,\n\t0x55, 0xCC, 0xA8, 0xA5, 0x03, 0x55, 0xCC, 0xAD,\n\t0xB5, 0x03, 0x55, 0xCC, 0xB0, 0xB5, 0x03, 0x56,\n\t// Bytes 3200 - 323f\n\t0xCC, 0x83, 0xC9, 0x03, 0x56, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x57, 0xCC, 0x80, 0xC9, 0x03, 0x57, 0xCC,\n\t0x81, 0xC9, 0x03, 0x57, 0xCC, 0x82, 0xC9, 0x03,\n\t0x57, 0xCC, 0x87, 0xC9, 0x03, 0x57, 0xCC, 0x88,\n\t0xC9, 0x03, 0x57, 0xCC, 0xA3, 0xB5, 0x03, 0x58,\n\t0xCC, 0x87, 0xC9, 0x03, 0x58, 0xCC, 0x88, 0xC9,\n\t0x03, 0x59, 0xCC, 0x80, 0xC9, 0x03, 0x59, 0xCC,\n\t0x81, 0xC9, 0x03, 0x59, 0xCC, 0x82, 0xC9, 0x03,\n\t// Bytes 3240 - 327f\n\t0x59, 0xCC, 0x83, 0xC9, 0x03, 0x59, 0xCC, 0x84,\n\t0xC9, 0x03, 0x59, 0xCC, 0x87, 0xC9, 0x03, 0x59,\n\t0xCC, 0x88, 0xC9, 0x03, 0x59, 0xCC, 0x89, 0xC9,\n\t0x03, 0x59, 0xCC, 0xA3, 0xB5, 0x03, 0x5A, 0xCC,\n\t0x81, 0xC9, 0x03, 0x5A, 0xCC, 0x82, 0xC9, 0x03,\n\t0x5A, 0xCC, 0x87, 0xC9, 0x03, 0x5A, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x5A, 0xCC, 0xA3, 0xB5, 0x03, 0x5A,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x61, 0xCC, 0x80, 0xC9,\n\t// Bytes 3280 - 32bf\n\t0x03, 0x61, 0xCC, 0x81, 0xC9, 0x03, 0x61, 0xCC,\n\t0x83, 0xC9, 0x03, 0x61, 0xCC, 0x84, 0xC9, 0x03,\n\t0x61, 0xCC, 0x89, 0xC9, 0x03, 0x61, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x61, 0xCC, 0x8F, 0xC9, 0x03, 0x61,\n\t0xCC, 0x91, 0xC9, 0x03, 0x61, 0xCC, 0xA5, 0xB5,\n\t0x03, 0x61, 0xCC, 0xA8, 0xA5, 0x03, 0x62, 0xCC,\n\t0x87, 0xC9, 0x03, 0x62, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x62, 0xCC, 0xB1, 0xB5, 0x03, 0x63, 0xCC, 0x81,\n\t// Bytes 32c0 - 32ff\n\t0xC9, 0x03, 0x63, 0xCC, 0x82, 0xC9, 0x03, 0x63,\n\t0xCC, 0x87, 0xC9, 0x03, 0x63, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x64, 0xCC, 0x87, 0xC9, 0x03, 0x64, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x64, 0xCC, 0xA3, 0xB5, 0x03,\n\t0x64, 0xCC, 0xA7, 0xA5, 0x03, 0x64, 0xCC, 0xAD,\n\t0xB5, 0x03, 0x64, 0xCC, 0xB1, 0xB5, 0x03, 0x65,\n\t0xCC, 0x80, 0xC9, 0x03, 0x65, 0xCC, 0x81, 0xC9,\n\t0x03, 0x65, 0xCC, 0x83, 0xC9, 0x03, 0x65, 0xCC,\n\t// Bytes 3300 - 333f\n\t0x86, 0xC9, 0x03, 0x65, 0xCC, 0x87, 0xC9, 0x03,\n\t0x65, 0xCC, 0x88, 0xC9, 0x03, 0x65, 0xCC, 0x89,\n\t0xC9, 0x03, 0x65, 0xCC, 0x8C, 0xC9, 0x03, 0x65,\n\t0xCC, 0x8F, 0xC9, 0x03, 0x65, 0xCC, 0x91, 0xC9,\n\t0x03, 0x65, 0xCC, 0xA8, 0xA5, 0x03, 0x65, 0xCC,\n\t0xAD, 0xB5, 0x03, 0x65, 0xCC, 0xB0, 0xB5, 0x03,\n\t0x66, 0xCC, 0x87, 0xC9, 0x03, 0x67, 0xCC, 0x81,\n\t0xC9, 0x03, 0x67, 0xCC, 0x82, 0xC9, 0x03, 0x67,\n\t// Bytes 3340 - 337f\n\t0xCC, 0x84, 0xC9, 0x03, 0x67, 0xCC, 0x86, 0xC9,\n\t0x03, 0x67, 0xCC, 0x87, 0xC9, 0x03, 0x67, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x67, 0xCC, 0xA7, 0xA5, 0x03,\n\t0x68, 0xCC, 0x82, 0xC9, 0x03, 0x68, 0xCC, 0x87,\n\t0xC9, 0x03, 0x68, 0xCC, 0x88, 0xC9, 0x03, 0x68,\n\t0xCC, 0x8C, 0xC9, 0x03, 0x68, 0xCC, 0xA3, 0xB5,\n\t0x03, 0x68, 0xCC, 0xA7, 0xA5, 0x03, 0x68, 0xCC,\n\t0xAE, 0xB5, 0x03, 0x68, 0xCC, 0xB1, 0xB5, 0x03,\n\t// Bytes 3380 - 33bf\n\t0x69, 0xCC, 0x80, 0xC9, 0x03, 0x69, 0xCC, 0x81,\n\t0xC9, 0x03, 0x69, 0xCC, 0x82, 0xC9, 0x03, 0x69,\n\t0xCC, 0x83, 0xC9, 0x03, 0x69, 0xCC, 0x84, 0xC9,\n\t0x03, 0x69, 0xCC, 0x86, 0xC9, 0x03, 0x69, 0xCC,\n\t0x89, 0xC9, 0x03, 0x69, 0xCC, 0x8C, 0xC9, 0x03,\n\t0x69, 0xCC, 0x8F, 0xC9, 0x03, 0x69, 0xCC, 0x91,\n\t0xC9, 0x03, 0x69, 0xCC, 0xA3, 0xB5, 0x03, 0x69,\n\t0xCC, 0xA8, 0xA5, 0x03, 0x69, 0xCC, 0xB0, 0xB5,\n\t// Bytes 33c0 - 33ff\n\t0x03, 0x6A, 0xCC, 0x82, 0xC9, 0x03, 0x6A, 0xCC,\n\t0x8C, 0xC9, 0x03, 0x6B, 0xCC, 0x81, 0xC9, 0x03,\n\t0x6B, 0xCC, 0x8C, 0xC9, 0x03, 0x6B, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x6B, 0xCC, 0xA7, 0xA5, 0x03, 0x6B,\n\t0xCC, 0xB1, 0xB5, 0x03, 0x6C, 0xCC, 0x81, 0xC9,\n\t0x03, 0x6C, 0xCC, 0x8C, 0xC9, 0x03, 0x6C, 0xCC,\n\t0xA7, 0xA5, 0x03, 0x6C, 0xCC, 0xAD, 0xB5, 0x03,\n\t0x6C, 0xCC, 0xB1, 0xB5, 0x03, 0x6D, 0xCC, 0x81,\n\t// Bytes 3400 - 343f\n\t0xC9, 0x03, 0x6D, 0xCC, 0x87, 0xC9, 0x03, 0x6D,\n\t0xCC, 0xA3, 0xB5, 0x03, 0x6E, 0xCC, 0x80, 0xC9,\n\t0x03, 0x6E, 0xCC, 0x81, 0xC9, 0x03, 0x6E, 0xCC,\n\t0x83, 0xC9, 0x03, 0x6E, 0xCC, 0x87, 0xC9, 0x03,\n\t0x6E, 0xCC, 0x8C, 0xC9, 0x03, 0x6E, 0xCC, 0xA3,\n\t0xB5, 0x03, 0x6E, 0xCC, 0xA7, 0xA5, 0x03, 0x6E,\n\t0xCC, 0xAD, 0xB5, 0x03, 0x6E, 0xCC, 0xB1, 0xB5,\n\t0x03, 0x6F, 0xCC, 0x80, 0xC9, 0x03, 0x6F, 0xCC,\n\t// Bytes 3440 - 347f\n\t0x81, 0xC9, 0x03, 0x6F, 0xCC, 0x86, 0xC9, 0x03,\n\t0x6F, 0xCC, 0x89, 0xC9, 0x03, 0x6F, 0xCC, 0x8B,\n\t0xC9, 0x03, 0x6F, 0xCC, 0x8C, 0xC9, 0x03, 0x6F,\n\t0xCC, 0x8F, 0xC9, 0x03, 0x6F, 0xCC, 0x91, 0xC9,\n\t0x03, 0x70, 0xCC, 0x81, 0xC9, 0x03, 0x70, 0xCC,\n\t0x87, 0xC9, 0x03, 0x72, 0xCC, 0x81, 0xC9, 0x03,\n\t0x72, 0xCC, 0x87, 0xC9, 0x03, 0x72, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x72, 0xCC, 0x8F, 0xC9, 0x03, 0x72,\n\t// Bytes 3480 - 34bf\n\t0xCC, 0x91, 0xC9, 0x03, 0x72, 0xCC, 0xA7, 0xA5,\n\t0x03, 0x72, 0xCC, 0xB1, 0xB5, 0x03, 0x73, 0xCC,\n\t0x82, 0xC9, 0x03, 0x73, 0xCC, 0x87, 0xC9, 0x03,\n\t0x73, 0xCC, 0xA6, 0xB5, 0x03, 0x73, 0xCC, 0xA7,\n\t0xA5, 0x03, 0x74, 0xCC, 0x87, 0xC9, 0x03, 0x74,\n\t0xCC, 0x88, 0xC9, 0x03, 0x74, 0xCC, 0x8C, 0xC9,\n\t0x03, 0x74, 0xCC, 0xA3, 0xB5, 0x03, 0x74, 0xCC,\n\t0xA6, 0xB5, 0x03, 0x74, 0xCC, 0xA7, 0xA5, 0x03,\n\t// Bytes 34c0 - 34ff\n\t0x74, 0xCC, 0xAD, 0xB5, 0x03, 0x74, 0xCC, 0xB1,\n\t0xB5, 0x03, 0x75, 0xCC, 0x80, 0xC9, 0x03, 0x75,\n\t0xCC, 0x81, 0xC9, 0x03, 0x75, 0xCC, 0x82, 0xC9,\n\t0x03, 0x75, 0xCC, 0x86, 0xC9, 0x03, 0x75, 0xCC,\n\t0x89, 0xC9, 0x03, 0x75, 0xCC, 0x8A, 0xC9, 0x03,\n\t0x75, 0xCC, 0x8B, 0xC9, 0x03, 0x75, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x75, 0xCC, 0x8F, 0xC9, 0x03, 0x75,\n\t0xCC, 0x91, 0xC9, 0x03, 0x75, 0xCC, 0xA3, 0xB5,\n\t// Bytes 3500 - 353f\n\t0x03, 0x75, 0xCC, 0xA4, 0xB5, 0x03, 0x75, 0xCC,\n\t0xA8, 0xA5, 0x03, 0x75, 0xCC, 0xAD, 0xB5, 0x03,\n\t0x75, 0xCC, 0xB0, 0xB5, 0x03, 0x76, 0xCC, 0x83,\n\t0xC9, 0x03, 0x76, 0xCC, 0xA3, 0xB5, 0x03, 0x77,\n\t0xCC, 0x80, 0xC9, 0x03, 0x77, 0xCC, 0x81, 0xC9,\n\t0x03, 0x77, 0xCC, 0x82, 0xC9, 0x03, 0x77, 0xCC,\n\t0x87, 0xC9, 0x03, 0x77, 0xCC, 0x88, 0xC9, 0x03,\n\t0x77, 0xCC, 0x8A, 0xC9, 0x03, 0x77, 0xCC, 0xA3,\n\t// Bytes 3540 - 357f\n\t0xB5, 0x03, 0x78, 0xCC, 0x87, 0xC9, 0x03, 0x78,\n\t0xCC, 0x88, 0xC9, 0x03, 0x79, 0xCC, 0x80, 0xC9,\n\t0x03, 0x79, 0xCC, 0x81, 0xC9, 0x03, 0x79, 0xCC,\n\t0x82, 0xC9, 0x03, 0x79, 0xCC, 0x83, 0xC9, 0x03,\n\t0x79, 0xCC, 0x84, 0xC9, 0x03, 0x79, 0xCC, 0x87,\n\t0xC9, 0x03, 0x79, 0xCC, 0x88, 0xC9, 0x03, 0x79,\n\t0xCC, 0x89, 0xC9, 0x03, 0x79, 0xCC, 0x8A, 0xC9,\n\t0x03, 0x79, 0xCC, 0xA3, 0xB5, 0x03, 0x7A, 0xCC,\n\t// Bytes 3580 - 35bf\n\t0x81, 0xC9, 0x03, 0x7A, 0xCC, 0x82, 0xC9, 0x03,\n\t0x7A, 0xCC, 0x87, 0xC9, 0x03, 0x7A, 0xCC, 0x8C,\n\t0xC9, 0x03, 0x7A, 0xCC, 0xA3, 0xB5, 0x03, 0x7A,\n\t0xCC, 0xB1, 0xB5, 0x04, 0xC2, 0xA8, 0xCC, 0x80,\n\t0xCA, 0x04, 0xC2, 0xA8, 0xCC, 0x81, 0xCA, 0x04,\n\t0xC2, 0xA8, 0xCD, 0x82, 0xCA, 0x04, 0xC3, 0x86,\n\t0xCC, 0x81, 0xC9, 0x04, 0xC3, 0x86, 0xCC, 0x84,\n\t0xC9, 0x04, 0xC3, 0x98, 0xCC, 0x81, 0xC9, 0x04,\n\t// Bytes 35c0 - 35ff\n\t0xC3, 0xA6, 0xCC, 0x81, 0xC9, 0x04, 0xC3, 0xA6,\n\t0xCC, 0x84, 0xC9, 0x04, 0xC3, 0xB8, 0xCC, 0x81,\n\t0xC9, 0x04, 0xC5, 0xBF, 0xCC, 0x87, 0xC9, 0x04,\n\t0xC6, 0xB7, 0xCC, 0x8C, 0xC9, 0x04, 0xCA, 0x92,\n\t0xCC, 0x8C, 0xC9, 0x04, 0xCE, 0x91, 0xCC, 0x80,\n\t0xC9, 0x04, 0xCE, 0x91, 0xCC, 0x81, 0xC9, 0x04,\n\t0xCE, 0x91, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0x91,\n\t0xCC, 0x86, 0xC9, 0x04, 0xCE, 0x91, 0xCD, 0x85,\n\t// Bytes 3600 - 363f\n\t0xD9, 0x04, 0xCE, 0x95, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCE, 0x95, 0xCC, 0x81, 0xC9, 0x04, 0xCE, 0x97,\n\t0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x97, 0xCC, 0x81,\n\t0xC9, 0x04, 0xCE, 0x97, 0xCD, 0x85, 0xD9, 0x04,\n\t0xCE, 0x99, 0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x99,\n\t0xCC, 0x81, 0xC9, 0x04, 0xCE, 0x99, 0xCC, 0x84,\n\t0xC9, 0x04, 0xCE, 0x99, 0xCC, 0x86, 0xC9, 0x04,\n\t0xCE, 0x99, 0xCC, 0x88, 0xC9, 0x04, 0xCE, 0x9F,\n\t// Bytes 3640 - 367f\n\t0xCC, 0x80, 0xC9, 0x04, 0xCE, 0x9F, 0xCC, 0x81,\n\t0xC9, 0x04, 0xCE, 0xA1, 0xCC, 0x94, 0xC9, 0x04,\n\t0xCE, 0xA5, 0xCC, 0x80, 0xC9, 0x04, 0xCE, 0xA5,\n\t0xCC, 0x81, 0xC9, 0x04, 0xCE, 0xA5, 0xCC, 0x84,\n\t0xC9, 0x04, 0xCE, 0xA5, 0xCC, 0x86, 0xC9, 0x04,\n\t0xCE, 0xA5, 0xCC, 0x88, 0xC9, 0x04, 0xCE, 0xA9,\n\t0xCC, 0x80, 0xC9, 0x04, 0xCE, 0xA9, 0xCC, 0x81,\n\t0xC9, 0x04, 0xCE, 0xA9, 0xCD, 0x85, 0xD9, 0x04,\n\t// Bytes 3680 - 36bf\n\t0xCE, 0xB1, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0xB1,\n\t0xCC, 0x86, 0xC9, 0x04, 0xCE, 0xB1, 0xCD, 0x85,\n\t0xD9, 0x04, 0xCE, 0xB5, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCE, 0xB5, 0xCC, 0x81, 0xC9, 0x04, 0xCE, 0xB7,\n\t0xCD, 0x85, 0xD9, 0x04, 0xCE, 0xB9, 0xCC, 0x80,\n\t0xC9, 0x04, 0xCE, 0xB9, 0xCC, 0x81, 0xC9, 0x04,\n\t0xCE, 0xB9, 0xCC, 0x84, 0xC9, 0x04, 0xCE, 0xB9,\n\t0xCC, 0x86, 0xC9, 0x04, 0xCE, 0xB9, 0xCD, 0x82,\n\t// Bytes 36c0 - 36ff\n\t0xC9, 0x04, 0xCE, 0xBF, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCE, 0xBF, 0xCC, 0x81, 0xC9, 0x04, 0xCF, 0x81,\n\t0xCC, 0x93, 0xC9, 0x04, 0xCF, 0x81, 0xCC, 0x94,\n\t0xC9, 0x04, 0xCF, 0x85, 0xCC, 0x80, 0xC9, 0x04,\n\t0xCF, 0x85, 0xCC, 0x81, 0xC9, 0x04, 0xCF, 0x85,\n\t0xCC, 0x84, 0xC9, 0x04, 0xCF, 0x85, 0xCC, 0x86,\n\t0xC9, 0x04, 0xCF, 0x85, 0xCD, 0x82, 0xC9, 0x04,\n\t0xCF, 0x89, 0xCD, 0x85, 0xD9, 0x04, 0xCF, 0x92,\n\t// Bytes 3700 - 373f\n\t0xCC, 0x81, 0xC9, 0x04, 0xCF, 0x92, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0x86, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0x90, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0x90,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x93, 0xCC, 0x81,\n\t0xC9, 0x04, 0xD0, 0x95, 0xCC, 0x80, 0xC9, 0x04,\n\t0xD0, 0x95, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0x95,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x96, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD0, 0x96, 0xCC, 0x88, 0xC9, 0x04,\n\t// Bytes 3740 - 377f\n\t0xD0, 0x97, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x98,\n\t0xCC, 0x80, 0xC9, 0x04, 0xD0, 0x98, 0xCC, 0x84,\n\t0xC9, 0x04, 0xD0, 0x98, 0xCC, 0x86, 0xC9, 0x04,\n\t0xD0, 0x98, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0x9A,\n\t0xCC, 0x81, 0xC9, 0x04, 0xD0, 0x9E, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0xA3, 0xCC, 0x84, 0xC9, 0x04,\n\t0xD0, 0xA3, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xA3,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xA3, 0xCC, 0x8B,\n\t// Bytes 3780 - 37bf\n\t0xC9, 0x04, 0xD0, 0xA7, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0xAB, 0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xAD,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xB0, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD0, 0xB0, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0xB3, 0xCC, 0x81, 0xC9, 0x04, 0xD0, 0xB5,\n\t0xCC, 0x80, 0xC9, 0x04, 0xD0, 0xB5, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD0, 0xB5, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD0, 0xB6, 0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xB6,\n\t// Bytes 37c0 - 37ff\n\t0xCC, 0x88, 0xC9, 0x04, 0xD0, 0xB7, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0xB8, 0xCC, 0x80, 0xC9, 0x04,\n\t0xD0, 0xB8, 0xCC, 0x84, 0xC9, 0x04, 0xD0, 0xB8,\n\t0xCC, 0x86, 0xC9, 0x04, 0xD0, 0xB8, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD0, 0xBA, 0xCC, 0x81, 0xC9, 0x04,\n\t0xD0, 0xBE, 0xCC, 0x88, 0xC9, 0x04, 0xD1, 0x83,\n\t0xCC, 0x84, 0xC9, 0x04, 0xD1, 0x83, 0xCC, 0x86,\n\t0xC9, 0x04, 0xD1, 0x83, 0xCC, 0x88, 0xC9, 0x04,\n\t// Bytes 3800 - 383f\n\t0xD1, 0x83, 0xCC, 0x8B, 0xC9, 0x04, 0xD1, 0x87,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD1, 0x8B, 0xCC, 0x88,\n\t0xC9, 0x04, 0xD1, 0x8D, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD1, 0x96, 0xCC, 0x88, 0xC9, 0x04, 0xD1, 0xB4,\n\t0xCC, 0x8F, 0xC9, 0x04, 0xD1, 0xB5, 0xCC, 0x8F,\n\t0xC9, 0x04, 0xD3, 0x98, 0xCC, 0x88, 0xC9, 0x04,\n\t0xD3, 0x99, 0xCC, 0x88, 0xC9, 0x04, 0xD3, 0xA8,\n\t0xCC, 0x88, 0xC9, 0x04, 0xD3, 0xA9, 0xCC, 0x88,\n\t// Bytes 3840 - 387f\n\t0xC9, 0x04, 0xD8, 0xA7, 0xD9, 0x93, 0xC9, 0x04,\n\t0xD8, 0xA7, 0xD9, 0x94, 0xC9, 0x04, 0xD8, 0xA7,\n\t0xD9, 0x95, 0xB5, 0x04, 0xD9, 0x88, 0xD9, 0x94,\n\t0xC9, 0x04, 0xD9, 0x8A, 0xD9, 0x94, 0xC9, 0x04,\n\t0xDB, 0x81, 0xD9, 0x94, 0xC9, 0x04, 0xDB, 0x92,\n\t0xD9, 0x94, 0xC9, 0x04, 0xDB, 0x95, 0xD9, 0x94,\n\t0xC9, 0x05, 0x41, 0xCC, 0x82, 0xCC, 0x80, 0xCA,\n\t0x05, 0x41, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05,\n\t// Bytes 3880 - 38bf\n\t0x41, 0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x41,\n\t0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05, 0x41, 0xCC,\n\t0x86, 0xCC, 0x80, 0xCA, 0x05, 0x41, 0xCC, 0x86,\n\t0xCC, 0x81, 0xCA, 0x05, 0x41, 0xCC, 0x86, 0xCC,\n\t0x83, 0xCA, 0x05, 0x41, 0xCC, 0x86, 0xCC, 0x89,\n\t0xCA, 0x05, 0x41, 0xCC, 0x87, 0xCC, 0x84, 0xCA,\n\t0x05, 0x41, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05,\n\t0x41, 0xCC, 0x8A, 0xCC, 0x81, 0xCA, 0x05, 0x41,\n\t// Bytes 38c0 - 38ff\n\t0xCC, 0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x41, 0xCC,\n\t0xA3, 0xCC, 0x86, 0xCA, 0x05, 0x43, 0xCC, 0xA7,\n\t0xCC, 0x81, 0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC,\n\t0x80, 0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC, 0x81,\n\t0xCA, 0x05, 0x45, 0xCC, 0x82, 0xCC, 0x83, 0xCA,\n\t0x05, 0x45, 0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05,\n\t0x45, 0xCC, 0x84, 0xCC, 0x80, 0xCA, 0x05, 0x45,\n\t0xCC, 0x84, 0xCC, 0x81, 0xCA, 0x05, 0x45, 0xCC,\n\t// Bytes 3900 - 393f\n\t0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x45, 0xCC, 0xA7,\n\t0xCC, 0x86, 0xCA, 0x05, 0x49, 0xCC, 0x88, 0xCC,\n\t0x81, 0xCA, 0x05, 0x4C, 0xCC, 0xA3, 0xCC, 0x84,\n\t0xCA, 0x05, 0x4F, 0xCC, 0x82, 0xCC, 0x80, 0xCA,\n\t0x05, 0x4F, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05,\n\t0x4F, 0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x4F,\n\t0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05, 0x4F, 0xCC,\n\t0x83, 0xCC, 0x81, 0xCA, 0x05, 0x4F, 0xCC, 0x83,\n\t// Bytes 3940 - 397f\n\t0xCC, 0x84, 0xCA, 0x05, 0x4F, 0xCC, 0x83, 0xCC,\n\t0x88, 0xCA, 0x05, 0x4F, 0xCC, 0x84, 0xCC, 0x80,\n\t0xCA, 0x05, 0x4F, 0xCC, 0x84, 0xCC, 0x81, 0xCA,\n\t0x05, 0x4F, 0xCC, 0x87, 0xCC, 0x84, 0xCA, 0x05,\n\t0x4F, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x4F,\n\t0xCC, 0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x4F, 0xCC,\n\t0x9B, 0xCC, 0x81, 0xCA, 0x05, 0x4F, 0xCC, 0x9B,\n\t0xCC, 0x83, 0xCA, 0x05, 0x4F, 0xCC, 0x9B, 0xCC,\n\t// Bytes 3980 - 39bf\n\t0x89, 0xCA, 0x05, 0x4F, 0xCC, 0x9B, 0xCC, 0xA3,\n\t0xB6, 0x05, 0x4F, 0xCC, 0xA3, 0xCC, 0x82, 0xCA,\n\t0x05, 0x4F, 0xCC, 0xA8, 0xCC, 0x84, 0xCA, 0x05,\n\t0x52, 0xCC, 0xA3, 0xCC, 0x84, 0xCA, 0x05, 0x53,\n\t0xCC, 0x81, 0xCC, 0x87, 0xCA, 0x05, 0x53, 0xCC,\n\t0x8C, 0xCC, 0x87, 0xCA, 0x05, 0x53, 0xCC, 0xA3,\n\t0xCC, 0x87, 0xCA, 0x05, 0x55, 0xCC, 0x83, 0xCC,\n\t0x81, 0xCA, 0x05, 0x55, 0xCC, 0x84, 0xCC, 0x88,\n\t// Bytes 39c0 - 39ff\n\t0xCA, 0x05, 0x55, 0xCC, 0x88, 0xCC, 0x80, 0xCA,\n\t0x05, 0x55, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x05,\n\t0x55, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x55,\n\t0xCC, 0x88, 0xCC, 0x8C, 0xCA, 0x05, 0x55, 0xCC,\n\t0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x55, 0xCC, 0x9B,\n\t0xCC, 0x81, 0xCA, 0x05, 0x55, 0xCC, 0x9B, 0xCC,\n\t0x83, 0xCA, 0x05, 0x55, 0xCC, 0x9B, 0xCC, 0x89,\n\t0xCA, 0x05, 0x55, 0xCC, 0x9B, 0xCC, 0xA3, 0xB6,\n\t// Bytes 3a00 - 3a3f\n\t0x05, 0x61, 0xCC, 0x82, 0xCC, 0x80, 0xCA, 0x05,\n\t0x61, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05, 0x61,\n\t0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x61, 0xCC,\n\t0x82, 0xCC, 0x89, 0xCA, 0x05, 0x61, 0xCC, 0x86,\n\t0xCC, 0x80, 0xCA, 0x05, 0x61, 0xCC, 0x86, 0xCC,\n\t0x81, 0xCA, 0x05, 0x61, 0xCC, 0x86, 0xCC, 0x83,\n\t0xCA, 0x05, 0x61, 0xCC, 0x86, 0xCC, 0x89, 0xCA,\n\t0x05, 0x61, 0xCC, 0x87, 0xCC, 0x84, 0xCA, 0x05,\n\t// Bytes 3a40 - 3a7f\n\t0x61, 0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x61,\n\t0xCC, 0x8A, 0xCC, 0x81, 0xCA, 0x05, 0x61, 0xCC,\n\t0xA3, 0xCC, 0x82, 0xCA, 0x05, 0x61, 0xCC, 0xA3,\n\t0xCC, 0x86, 0xCA, 0x05, 0x63, 0xCC, 0xA7, 0xCC,\n\t0x81, 0xCA, 0x05, 0x65, 0xCC, 0x82, 0xCC, 0x80,\n\t0xCA, 0x05, 0x65, 0xCC, 0x82, 0xCC, 0x81, 0xCA,\n\t0x05, 0x65, 0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05,\n\t0x65, 0xCC, 0x82, 0xCC, 0x89, 0xCA, 0x05, 0x65,\n\t// Bytes 3a80 - 3abf\n\t0xCC, 0x84, 0xCC, 0x80, 0xCA, 0x05, 0x65, 0xCC,\n\t0x84, 0xCC, 0x81, 0xCA, 0x05, 0x65, 0xCC, 0xA3,\n\t0xCC, 0x82, 0xCA, 0x05, 0x65, 0xCC, 0xA7, 0xCC,\n\t0x86, 0xCA, 0x05, 0x69, 0xCC, 0x88, 0xCC, 0x81,\n\t0xCA, 0x05, 0x6C, 0xCC, 0xA3, 0xCC, 0x84, 0xCA,\n\t0x05, 0x6F, 0xCC, 0x82, 0xCC, 0x80, 0xCA, 0x05,\n\t0x6F, 0xCC, 0x82, 0xCC, 0x81, 0xCA, 0x05, 0x6F,\n\t0xCC, 0x82, 0xCC, 0x83, 0xCA, 0x05, 0x6F, 0xCC,\n\t// Bytes 3ac0 - 3aff\n\t0x82, 0xCC, 0x89, 0xCA, 0x05, 0x6F, 0xCC, 0x83,\n\t0xCC, 0x81, 0xCA, 0x05, 0x6F, 0xCC, 0x83, 0xCC,\n\t0x84, 0xCA, 0x05, 0x6F, 0xCC, 0x83, 0xCC, 0x88,\n\t0xCA, 0x05, 0x6F, 0xCC, 0x84, 0xCC, 0x80, 0xCA,\n\t0x05, 0x6F, 0xCC, 0x84, 0xCC, 0x81, 0xCA, 0x05,\n\t0x6F, 0xCC, 0x87, 0xCC, 0x84, 0xCA, 0x05, 0x6F,\n\t0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x6F, 0xCC,\n\t0x9B, 0xCC, 0x80, 0xCA, 0x05, 0x6F, 0xCC, 0x9B,\n\t// Bytes 3b00 - 3b3f\n\t0xCC, 0x81, 0xCA, 0x05, 0x6F, 0xCC, 0x9B, 0xCC,\n\t0x83, 0xCA, 0x05, 0x6F, 0xCC, 0x9B, 0xCC, 0x89,\n\t0xCA, 0x05, 0x6F, 0xCC, 0x9B, 0xCC, 0xA3, 0xB6,\n\t0x05, 0x6F, 0xCC, 0xA3, 0xCC, 0x82, 0xCA, 0x05,\n\t0x6F, 0xCC, 0xA8, 0xCC, 0x84, 0xCA, 0x05, 0x72,\n\t0xCC, 0xA3, 0xCC, 0x84, 0xCA, 0x05, 0x73, 0xCC,\n\t0x81, 0xCC, 0x87, 0xCA, 0x05, 0x73, 0xCC, 0x8C,\n\t0xCC, 0x87, 0xCA, 0x05, 0x73, 0xCC, 0xA3, 0xCC,\n\t// Bytes 3b40 - 3b7f\n\t0x87, 0xCA, 0x05, 0x75, 0xCC, 0x83, 0xCC, 0x81,\n\t0xCA, 0x05, 0x75, 0xCC, 0x84, 0xCC, 0x88, 0xCA,\n\t0x05, 0x75, 0xCC, 0x88, 0xCC, 0x80, 0xCA, 0x05,\n\t0x75, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x05, 0x75,\n\t0xCC, 0x88, 0xCC, 0x84, 0xCA, 0x05, 0x75, 0xCC,\n\t0x88, 0xCC, 0x8C, 0xCA, 0x05, 0x75, 0xCC, 0x9B,\n\t0xCC, 0x80, 0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC,\n\t0x81, 0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC, 0x83,\n\t// Bytes 3b80 - 3bbf\n\t0xCA, 0x05, 0x75, 0xCC, 0x9B, 0xCC, 0x89, 0xCA,\n\t0x05, 0x75, 0xCC, 0x9B, 0xCC, 0xA3, 0xB6, 0x05,\n\t0xE1, 0xBE, 0xBF, 0xCC, 0x80, 0xCA, 0x05, 0xE1,\n\t0xBE, 0xBF, 0xCC, 0x81, 0xCA, 0x05, 0xE1, 0xBE,\n\t0xBF, 0xCD, 0x82, 0xCA, 0x05, 0xE1, 0xBF, 0xBE,\n\t0xCC, 0x80, 0xCA, 0x05, 0xE1, 0xBF, 0xBE, 0xCC,\n\t0x81, 0xCA, 0x05, 0xE1, 0xBF, 0xBE, 0xCD, 0x82,\n\t0xCA, 0x05, 0xE2, 0x86, 0x90, 0xCC, 0xB8, 0x05,\n\t// Bytes 3bc0 - 3bff\n\t0x05, 0xE2, 0x86, 0x92, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x86, 0x94, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x87, 0x90, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x87,\n\t0x92, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x87, 0x94,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x88, 0x83, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x88, 0x88, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x88, 0x8B, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x88, 0xA3, 0xCC, 0xB8, 0x05, 0x05,\n\t// Bytes 3c00 - 3c3f\n\t0xE2, 0x88, 0xA5, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x88, 0xBC, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89,\n\t0x83, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0x85,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0x88, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x89, 0x8D, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x89, 0xA1, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x89, 0xA4, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x89, 0xA5, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t// Bytes 3c40 - 3c7f\n\t0x89, 0xB2, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89,\n\t0xB3, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xB6,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x89, 0xB7, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x89, 0xBA, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x89, 0xBB, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x89, 0xBC, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x89, 0xBD, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x8A, 0x82, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A,\n\t// Bytes 3c80 - 3cbf\n\t0x83, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x86,\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x87, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x8A, 0x91, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x8A, 0x92, 0xCC, 0xB8, 0x05,\n\t0x05, 0xE2, 0x8A, 0xA2, 0xCC, 0xB8, 0x05, 0x05,\n\t0xE2, 0x8A, 0xA8, 0xCC, 0xB8, 0x05, 0x05, 0xE2,\n\t0x8A, 0xA9, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A,\n\t0xAB, 0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB2,\n\t// Bytes 3cc0 - 3cff\n\t0xCC, 0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB3, 0xCC,\n\t0xB8, 0x05, 0x05, 0xE2, 0x8A, 0xB4, 0xCC, 0xB8,\n\t0x05, 0x05, 0xE2, 0x8A, 0xB5, 0xCC, 0xB8, 0x05,\n\t0x06, 0xCE, 0x91, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x91, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x95, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x95, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x95, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t// Bytes 3d00 - 3d3f\n\t0x06, 0xCE, 0x95, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x97, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x97, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x93, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x99, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t// Bytes 3d40 - 3d7f\n\t0x06, 0xCE, 0x99, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0x9F, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xA5, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xA5, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xA5, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t// Bytes 3d80 - 3dbf\n\t0x06, 0xCE, 0xA9, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xA9, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x80, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x81, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB1, 0xCD, 0x82, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB5, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t// Bytes 3dc0 - 3dff\n\t0x06, 0xCE, 0xB5, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB5, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB5, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x80, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x81, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCE, 0xB7, 0xCD, 0x82, 0xCD, 0x85, 0xDA,\n\t// Bytes 3e00 - 3e3f\n\t0x06, 0xCE, 0xB9, 0xCC, 0x88, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x88, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x88, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x93, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xB9, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t// Bytes 3e40 - 3e7f\n\t0x06, 0xCE, 0xB9, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCE, 0xBF, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x88, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x88, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x88, 0xCD, 0x82, 0xCA,\n\t// Bytes 3e80 - 3ebf\n\t0x06, 0xCF, 0x85, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x93, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x93, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x94, 0xCC, 0x80, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x94, 0xCC, 0x81, 0xCA,\n\t0x06, 0xCF, 0x85, 0xCC, 0x94, 0xCD, 0x82, 0xCA,\n\t0x06, 0xCF, 0x89, 0xCC, 0x80, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCF, 0x89, 0xCC, 0x81, 0xCD, 0x85, 0xDA,\n\t// Bytes 3ec0 - 3eff\n\t0x06, 0xCF, 0x89, 0xCC, 0x93, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCF, 0x89, 0xCC, 0x94, 0xCD, 0x85, 0xDA,\n\t0x06, 0xCF, 0x89, 0xCD, 0x82, 0xCD, 0x85, 0xDA,\n\t0x06, 0xE0, 0xA4, 0xA8, 0xE0, 0xA4, 0xBC, 0x09,\n\t0x06, 0xE0, 0xA4, 0xB0, 0xE0, 0xA4, 0xBC, 0x09,\n\t0x06, 0xE0, 0xA4, 0xB3, 0xE0, 0xA4, 0xBC, 0x09,\n\t0x06, 0xE0, 0xB1, 0x86, 0xE0, 0xB1, 0x96, 0x85,\n\t0x06, 0xE0, 0xB7, 0x99, 0xE0, 0xB7, 0x8A, 0x11,\n\t// Bytes 3f00 - 3f3f\n\t0x06, 0xE3, 0x81, 0x86, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x8B, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x8D, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x8F, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x91, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x93, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x95, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x97, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 3f40 - 3f7f\n\t0x06, 0xE3, 0x81, 0x99, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x9B, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x9D, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0x9F, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA1, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA4, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA6, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xA8, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 3f80 - 3fbf\n\t0x06, 0xE3, 0x81, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xAF, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB2, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB2, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB5, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB5, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB8, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xB8, 0xE3, 0x82, 0x9A, 0x0D,\n\t// Bytes 3fc0 - 3fff\n\t0x06, 0xE3, 0x81, 0xBB, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x81, 0xBB, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x82, 0x9D, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xA6, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xAB, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xAD, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB1, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4000 - 403f\n\t0x06, 0xE3, 0x82, 0xB3, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB5, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB7, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xB9, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xBB, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xBD, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x82, 0xBF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x81, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4040 - 407f\n\t0x06, 0xE3, 0x83, 0x84, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x86, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x88, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x8F, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x92, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x95, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 4080 - 40bf\n\t0x06, 0xE3, 0x83, 0x95, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x98, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0x9B, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x06, 0xE3, 0x83, 0xAF, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0xB0, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0xB1, 0xE3, 0x82, 0x99, 0x0D,\n\t// Bytes 40c0 - 40ff\n\t0x06, 0xE3, 0x83, 0xB2, 0xE3, 0x82, 0x99, 0x0D,\n\t0x06, 0xE3, 0x83, 0xBD, 0xE3, 0x82, 0x99, 0x0D,\n\t0x08, 0xCE, 0x91, 0xCC, 0x93, 0xCC, 0x80, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC,\n\t0x93, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0x91, 0xCC, 0x94, 0xCC, 0x81, 0xCD,\n\t// Bytes 4100 - 413f\n\t0x85, 0xDB, 0x08, 0xCE, 0x91, 0xCC, 0x94, 0xCD,\n\t0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC,\n\t0x93, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0x97, 0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0x97, 0xCC, 0x93, 0xCD, 0x82, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC, 0x94, 0xCC,\n\t0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0x97, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t// Bytes 4140 - 417f\n\t0x97, 0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xA9, 0xCC, 0x93, 0xCC, 0x80, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC,\n\t0x93, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xA9, 0xCC, 0x94, 0xCC, 0x81, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xA9, 0xCC, 0x94, 0xCD,\n\t// Bytes 4180 - 41bf\n\t0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC,\n\t0x93, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xB1, 0xCC, 0x93, 0xCD, 0x82, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC, 0x94, 0xCC,\n\t0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB1, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xB1, 0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB,\n\t// Bytes 41c0 - 41ff\n\t0x08, 0xCE, 0xB7, 0xCC, 0x93, 0xCC, 0x80, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC, 0x93, 0xCC,\n\t0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC,\n\t0x93, 0xCD, 0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCC, 0x80, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCE, 0xB7, 0xCC, 0x94, 0xCC, 0x81, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCE, 0xB7, 0xCC, 0x94, 0xCD,\n\t0x82, 0xCD, 0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC,\n\t// Bytes 4200 - 423f\n\t0x93, 0xCC, 0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCF,\n\t0x89, 0xCC, 0x93, 0xCC, 0x81, 0xCD, 0x85, 0xDB,\n\t0x08, 0xCF, 0x89, 0xCC, 0x93, 0xCD, 0x82, 0xCD,\n\t0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC, 0x94, 0xCC,\n\t0x80, 0xCD, 0x85, 0xDB, 0x08, 0xCF, 0x89, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCD, 0x85, 0xDB, 0x08, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCD, 0x82, 0xCD, 0x85, 0xDB,\n\t0x08, 0xF0, 0x91, 0x82, 0x99, 0xF0, 0x91, 0x82,\n\t// Bytes 4240 - 427f\n\t0xBA, 0x09, 0x08, 0xF0, 0x91, 0x82, 0x9B, 0xF0,\n\t0x91, 0x82, 0xBA, 0x09, 0x08, 0xF0, 0x91, 0x82,\n\t0xA5, 0xF0, 0x91, 0x82, 0xBA, 0x09, 0x42, 0xC2,\n\t0xB4, 0x01, 0x43, 0x20, 0xCC, 0x81, 0xC9, 0x43,\n\t0x20, 0xCC, 0x83, 0xC9, 0x43, 0x20, 0xCC, 0x84,\n\t0xC9, 0x43, 0x20, 0xCC, 0x85, 0xC9, 0x43, 0x20,\n\t0xCC, 0x86, 0xC9, 0x43, 0x20, 0xCC, 0x87, 0xC9,\n\t0x43, 0x20, 0xCC, 0x88, 0xC9, 0x43, 0x20, 0xCC,\n\t// Bytes 4280 - 42bf\n\t0x8A, 0xC9, 0x43, 0x20, 0xCC, 0x8B, 0xC9, 0x43,\n\t0x20, 0xCC, 0x93, 0xC9, 0x43, 0x20, 0xCC, 0x94,\n\t0xC9, 0x43, 0x20, 0xCC, 0xA7, 0xA5, 0x43, 0x20,\n\t0xCC, 0xA8, 0xA5, 0x43, 0x20, 0xCC, 0xB3, 0xB5,\n\t0x43, 0x20, 0xCD, 0x82, 0xC9, 0x43, 0x20, 0xCD,\n\t0x85, 0xD9, 0x43, 0x20, 0xD9, 0x8B, 0x59, 0x43,\n\t0x20, 0xD9, 0x8C, 0x5D, 0x43, 0x20, 0xD9, 0x8D,\n\t0x61, 0x43, 0x20, 0xD9, 0x8E, 0x65, 0x43, 0x20,\n\t// Bytes 42c0 - 42ff\n\t0xD9, 0x8F, 0x69, 0x43, 0x20, 0xD9, 0x90, 0x6D,\n\t0x43, 0x20, 0xD9, 0x91, 0x71, 0x43, 0x20, 0xD9,\n\t0x92, 0x75, 0x43, 0x41, 0xCC, 0x8A, 0xC9, 0x43,\n\t0x73, 0xCC, 0x87, 0xC9, 0x44, 0x20, 0xE3, 0x82,\n\t0x99, 0x0D, 0x44, 0x20, 0xE3, 0x82, 0x9A, 0x0D,\n\t0x44, 0xC2, 0xA8, 0xCC, 0x81, 0xCA, 0x44, 0xCE,\n\t0x91, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0x95, 0xCC,\n\t0x81, 0xC9, 0x44, 0xCE, 0x97, 0xCC, 0x81, 0xC9,\n\t// Bytes 4300 - 433f\n\t0x44, 0xCE, 0x99, 0xCC, 0x81, 0xC9, 0x44, 0xCE,\n\t0x9F, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0xA5, 0xCC,\n\t0x81, 0xC9, 0x44, 0xCE, 0xA5, 0xCC, 0x88, 0xC9,\n\t0x44, 0xCE, 0xA9, 0xCC, 0x81, 0xC9, 0x44, 0xCE,\n\t0xB1, 0xCC, 0x81, 0xC9, 0x44, 0xCE, 0xB5, 0xCC,\n\t0x81, 0xC9, 0x44, 0xCE, 0xB7, 0xCC, 0x81, 0xC9,\n\t0x44, 0xCE, 0xB9, 0xCC, 0x81, 0xC9, 0x44, 0xCE,\n\t0xBF, 0xCC, 0x81, 0xC9, 0x44, 0xCF, 0x85, 0xCC,\n\t// Bytes 4340 - 437f\n\t0x81, 0xC9, 0x44, 0xCF, 0x89, 0xCC, 0x81, 0xC9,\n\t0x44, 0xD7, 0x90, 0xD6, 0xB7, 0x31, 0x44, 0xD7,\n\t0x90, 0xD6, 0xB8, 0x35, 0x44, 0xD7, 0x90, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x91, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x91, 0xD6, 0xBF, 0x49, 0x44, 0xD7,\n\t0x92, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x93, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x94, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x95, 0xD6, 0xB9, 0x39, 0x44, 0xD7,\n\t// Bytes 4380 - 43bf\n\t0x95, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x96, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x98, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x99, 0xD6, 0xB4, 0x25, 0x44, 0xD7,\n\t0x99, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x9A, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0x9B, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0x9B, 0xD6, 0xBF, 0x49, 0x44, 0xD7,\n\t0x9C, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0x9E, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0xA0, 0xD6, 0xBC, 0x41,\n\t// Bytes 43c0 - 43ff\n\t0x44, 0xD7, 0xA1, 0xD6, 0xBC, 0x41, 0x44, 0xD7,\n\t0xA3, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA4, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0xA4, 0xD6, 0xBF, 0x49,\n\t0x44, 0xD7, 0xA6, 0xD6, 0xBC, 0x41, 0x44, 0xD7,\n\t0xA7, 0xD6, 0xBC, 0x41, 0x44, 0xD7, 0xA8, 0xD6,\n\t0xBC, 0x41, 0x44, 0xD7, 0xA9, 0xD6, 0xBC, 0x41,\n\t0x44, 0xD7, 0xA9, 0xD7, 0x81, 0x4D, 0x44, 0xD7,\n\t0xA9, 0xD7, 0x82, 0x51, 0x44, 0xD7, 0xAA, 0xD6,\n\t// Bytes 4400 - 443f\n\t0xBC, 0x41, 0x44, 0xD7, 0xB2, 0xD6, 0xB7, 0x31,\n\t0x44, 0xD8, 0xA7, 0xD9, 0x8B, 0x59, 0x44, 0xD8,\n\t0xA7, 0xD9, 0x93, 0xC9, 0x44, 0xD8, 0xA7, 0xD9,\n\t0x94, 0xC9, 0x44, 0xD8, 0xA7, 0xD9, 0x95, 0xB5,\n\t0x44, 0xD8, 0xB0, 0xD9, 0xB0, 0x79, 0x44, 0xD8,\n\t0xB1, 0xD9, 0xB0, 0x79, 0x44, 0xD9, 0x80, 0xD9,\n\t0x8B, 0x59, 0x44, 0xD9, 0x80, 0xD9, 0x8E, 0x65,\n\t0x44, 0xD9, 0x80, 0xD9, 0x8F, 0x69, 0x44, 0xD9,\n\t// Bytes 4440 - 447f\n\t0x80, 0xD9, 0x90, 0x6D, 0x44, 0xD9, 0x80, 0xD9,\n\t0x91, 0x71, 0x44, 0xD9, 0x80, 0xD9, 0x92, 0x75,\n\t0x44, 0xD9, 0x87, 0xD9, 0xB0, 0x79, 0x44, 0xD9,\n\t0x88, 0xD9, 0x94, 0xC9, 0x44, 0xD9, 0x89, 0xD9,\n\t0xB0, 0x79, 0x44, 0xD9, 0x8A, 0xD9, 0x94, 0xC9,\n\t0x44, 0xDB, 0x92, 0xD9, 0x94, 0xC9, 0x44, 0xDB,\n\t0x95, 0xD9, 0x94, 0xC9, 0x45, 0x20, 0xCC, 0x88,\n\t0xCC, 0x80, 0xCA, 0x45, 0x20, 0xCC, 0x88, 0xCC,\n\t// Bytes 4480 - 44bf\n\t0x81, 0xCA, 0x45, 0x20, 0xCC, 0x88, 0xCD, 0x82,\n\t0xCA, 0x45, 0x20, 0xCC, 0x93, 0xCC, 0x80, 0xCA,\n\t0x45, 0x20, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x45,\n\t0x20, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x45, 0x20,\n\t0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x45, 0x20, 0xCC,\n\t0x94, 0xCC, 0x81, 0xCA, 0x45, 0x20, 0xCC, 0x94,\n\t0xCD, 0x82, 0xCA, 0x45, 0x20, 0xD9, 0x8C, 0xD9,\n\t0x91, 0x72, 0x45, 0x20, 0xD9, 0x8D, 0xD9, 0x91,\n\t// Bytes 44c0 - 44ff\n\t0x72, 0x45, 0x20, 0xD9, 0x8E, 0xD9, 0x91, 0x72,\n\t0x45, 0x20, 0xD9, 0x8F, 0xD9, 0x91, 0x72, 0x45,\n\t0x20, 0xD9, 0x90, 0xD9, 0x91, 0x72, 0x45, 0x20,\n\t0xD9, 0x91, 0xD9, 0xB0, 0x7A, 0x45, 0xE2, 0xAB,\n\t0x9D, 0xCC, 0xB8, 0x05, 0x46, 0xCE, 0xB9, 0xCC,\n\t0x88, 0xCC, 0x81, 0xCA, 0x46, 0xCF, 0x85, 0xCC,\n\t0x88, 0xCC, 0x81, 0xCA, 0x46, 0xD7, 0xA9, 0xD6,\n\t0xBC, 0xD7, 0x81, 0x4E, 0x46, 0xD7, 0xA9, 0xD6,\n\t// Bytes 4500 - 453f\n\t0xBC, 0xD7, 0x82, 0x52, 0x46, 0xD9, 0x80, 0xD9,\n\t0x8E, 0xD9, 0x91, 0x72, 0x46, 0xD9, 0x80, 0xD9,\n\t0x8F, 0xD9, 0x91, 0x72, 0x46, 0xD9, 0x80, 0xD9,\n\t0x90, 0xD9, 0x91, 0x72, 0x46, 0xE0, 0xA4, 0x95,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0x96,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0x97,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0x9C,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xA1,\n\t// Bytes 4540 - 457f\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xA2,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xAB,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA4, 0xAF,\n\t0xE0, 0xA4, 0xBC, 0x09, 0x46, 0xE0, 0xA6, 0xA1,\n\t0xE0, 0xA6, 0xBC, 0x09, 0x46, 0xE0, 0xA6, 0xA2,\n\t0xE0, 0xA6, 0xBC, 0x09, 0x46, 0xE0, 0xA6, 0xAF,\n\t0xE0, 0xA6, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0x96,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0x97,\n\t// Bytes 4580 - 45bf\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0x9C,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0xAB,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0xB2,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xA8, 0xB8,\n\t0xE0, 0xA8, 0xBC, 0x09, 0x46, 0xE0, 0xAC, 0xA1,\n\t0xE0, 0xAC, 0xBC, 0x09, 0x46, 0xE0, 0xAC, 0xA2,\n\t0xE0, 0xAC, 0xBC, 0x09, 0x46, 0xE0, 0xBE, 0xB2,\n\t0xE0, 0xBE, 0x80, 0x9D, 0x46, 0xE0, 0xBE, 0xB3,\n\t// Bytes 45c0 - 45ff\n\t0xE0, 0xBE, 0x80, 0x9D, 0x46, 0xE3, 0x83, 0x86,\n\t0xE3, 0x82, 0x99, 0x0D, 0x48, 0xF0, 0x9D, 0x85,\n\t0x97, 0xF0, 0x9D, 0x85, 0xA5, 0xAD, 0x48, 0xF0,\n\t0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xAD,\n\t0x48, 0xF0, 0x9D, 0x86, 0xB9, 0xF0, 0x9D, 0x85,\n\t0xA5, 0xAD, 0x48, 0xF0, 0x9D, 0x86, 0xBA, 0xF0,\n\t0x9D, 0x85, 0xA5, 0xAD, 0x49, 0xE0, 0xBE, 0xB2,\n\t0xE0, 0xBD, 0xB1, 0xE0, 0xBE, 0x80, 0x9E, 0x49,\n\t// Bytes 4600 - 463f\n\t0xE0, 0xBE, 0xB3, 0xE0, 0xBD, 0xB1, 0xE0, 0xBE,\n\t0x80, 0x9E, 0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0,\n\t0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xAE, 0xAE,\n\t0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85,\n\t0xA5, 0xF0, 0x9D, 0x85, 0xAF, 0xAE, 0x4C, 0xF0,\n\t0x9D, 0x85, 0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xF0,\n\t0x9D, 0x85, 0xB0, 0xAE, 0x4C, 0xF0, 0x9D, 0x85,\n\t0x98, 0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85,\n\t// Bytes 4640 - 467f\n\t0xB1, 0xAE, 0x4C, 0xF0, 0x9D, 0x85, 0x98, 0xF0,\n\t0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xB2, 0xAE,\n\t0x4C, 0xF0, 0x9D, 0x86, 0xB9, 0xF0, 0x9D, 0x85,\n\t0xA5, 0xF0, 0x9D, 0x85, 0xAE, 0xAE, 0x4C, 0xF0,\n\t0x9D, 0x86, 0xB9, 0xF0, 0x9D, 0x85, 0xA5, 0xF0,\n\t0x9D, 0x85, 0xAF, 0xAE, 0x4C, 0xF0, 0x9D, 0x86,\n\t0xBA, 0xF0, 0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85,\n\t0xAE, 0xAE, 0x4C, 0xF0, 0x9D, 0x86, 0xBA, 0xF0,\n\t// Bytes 4680 - 46bf\n\t0x9D, 0x85, 0xA5, 0xF0, 0x9D, 0x85, 0xAF, 0xAE,\n\t0x83, 0x41, 0xCC, 0x82, 0xC9, 0x83, 0x41, 0xCC,\n\t0x86, 0xC9, 0x83, 0x41, 0xCC, 0x87, 0xC9, 0x83,\n\t0x41, 0xCC, 0x88, 0xC9, 0x83, 0x41, 0xCC, 0x8A,\n\t0xC9, 0x83, 0x41, 0xCC, 0xA3, 0xB5, 0x83, 0x43,\n\t0xCC, 0xA7, 0xA5, 0x83, 0x45, 0xCC, 0x82, 0xC9,\n\t0x83, 0x45, 0xCC, 0x84, 0xC9, 0x83, 0x45, 0xCC,\n\t0xA3, 0xB5, 0x83, 0x45, 0xCC, 0xA7, 0xA5, 0x83,\n\t// Bytes 46c0 - 46ff\n\t0x49, 0xCC, 0x88, 0xC9, 0x83, 0x4C, 0xCC, 0xA3,\n\t0xB5, 0x83, 0x4F, 0xCC, 0x82, 0xC9, 0x83, 0x4F,\n\t0xCC, 0x83, 0xC9, 0x83, 0x4F, 0xCC, 0x84, 0xC9,\n\t0x83, 0x4F, 0xCC, 0x87, 0xC9, 0x83, 0x4F, 0xCC,\n\t0x88, 0xC9, 0x83, 0x4F, 0xCC, 0x9B, 0xAD, 0x83,\n\t0x4F, 0xCC, 0xA3, 0xB5, 0x83, 0x4F, 0xCC, 0xA8,\n\t0xA5, 0x83, 0x52, 0xCC, 0xA3, 0xB5, 0x83, 0x53,\n\t0xCC, 0x81, 0xC9, 0x83, 0x53, 0xCC, 0x8C, 0xC9,\n\t// Bytes 4700 - 473f\n\t0x83, 0x53, 0xCC, 0xA3, 0xB5, 0x83, 0x55, 0xCC,\n\t0x83, 0xC9, 0x83, 0x55, 0xCC, 0x84, 0xC9, 0x83,\n\t0x55, 0xCC, 0x88, 0xC9, 0x83, 0x55, 0xCC, 0x9B,\n\t0xAD, 0x83, 0x61, 0xCC, 0x82, 0xC9, 0x83, 0x61,\n\t0xCC, 0x86, 0xC9, 0x83, 0x61, 0xCC, 0x87, 0xC9,\n\t0x83, 0x61, 0xCC, 0x88, 0xC9, 0x83, 0x61, 0xCC,\n\t0x8A, 0xC9, 0x83, 0x61, 0xCC, 0xA3, 0xB5, 0x83,\n\t0x63, 0xCC, 0xA7, 0xA5, 0x83, 0x65, 0xCC, 0x82,\n\t// Bytes 4740 - 477f\n\t0xC9, 0x83, 0x65, 0xCC, 0x84, 0xC9, 0x83, 0x65,\n\t0xCC, 0xA3, 0xB5, 0x83, 0x65, 0xCC, 0xA7, 0xA5,\n\t0x83, 0x69, 0xCC, 0x88, 0xC9, 0x83, 0x6C, 0xCC,\n\t0xA3, 0xB5, 0x83, 0x6F, 0xCC, 0x82, 0xC9, 0x83,\n\t0x6F, 0xCC, 0x83, 0xC9, 0x83, 0x6F, 0xCC, 0x84,\n\t0xC9, 0x83, 0x6F, 0xCC, 0x87, 0xC9, 0x83, 0x6F,\n\t0xCC, 0x88, 0xC9, 0x83, 0x6F, 0xCC, 0x9B, 0xAD,\n\t0x83, 0x6F, 0xCC, 0xA3, 0xB5, 0x83, 0x6F, 0xCC,\n\t// Bytes 4780 - 47bf\n\t0xA8, 0xA5, 0x83, 0x72, 0xCC, 0xA3, 0xB5, 0x83,\n\t0x73, 0xCC, 0x81, 0xC9, 0x83, 0x73, 0xCC, 0x8C,\n\t0xC9, 0x83, 0x73, 0xCC, 0xA3, 0xB5, 0x83, 0x75,\n\t0xCC, 0x83, 0xC9, 0x83, 0x75, 0xCC, 0x84, 0xC9,\n\t0x83, 0x75, 0xCC, 0x88, 0xC9, 0x83, 0x75, 0xCC,\n\t0x9B, 0xAD, 0x84, 0xCE, 0x91, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0x91, 0xCC, 0x94, 0xC9, 0x84, 0xCE,\n\t0x95, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0x95, 0xCC,\n\t// Bytes 47c0 - 47ff\n\t0x94, 0xC9, 0x84, 0xCE, 0x97, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0x97, 0xCC, 0x94, 0xC9, 0x84, 0xCE,\n\t0x99, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0x99, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0x9F, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0x9F, 0xCC, 0x94, 0xC9, 0x84, 0xCE,\n\t0xA5, 0xCC, 0x94, 0xC9, 0x84, 0xCE, 0xA9, 0xCC,\n\t0x93, 0xC9, 0x84, 0xCE, 0xA9, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCE, 0xB1, 0xCC, 0x80, 0xC9, 0x84, 0xCE,\n\t// Bytes 4800 - 483f\n\t0xB1, 0xCC, 0x81, 0xC9, 0x84, 0xCE, 0xB1, 0xCC,\n\t0x93, 0xC9, 0x84, 0xCE, 0xB1, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCE, 0xB1, 0xCD, 0x82, 0xC9, 0x84, 0xCE,\n\t0xB5, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB5, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0xB7, 0xCC, 0x80, 0xC9,\n\t0x84, 0xCE, 0xB7, 0xCC, 0x81, 0xC9, 0x84, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB7, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0xB7, 0xCD, 0x82, 0xC9,\n\t// Bytes 4840 - 487f\n\t0x84, 0xCE, 0xB9, 0xCC, 0x88, 0xC9, 0x84, 0xCE,\n\t0xB9, 0xCC, 0x93, 0xC9, 0x84, 0xCE, 0xB9, 0xCC,\n\t0x94, 0xC9, 0x84, 0xCE, 0xBF, 0xCC, 0x93, 0xC9,\n\t0x84, 0xCE, 0xBF, 0xCC, 0x94, 0xC9, 0x84, 0xCF,\n\t0x85, 0xCC, 0x88, 0xC9, 0x84, 0xCF, 0x85, 0xCC,\n\t0x93, 0xC9, 0x84, 0xCF, 0x85, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCF, 0x89, 0xCC, 0x80, 0xC9, 0x84, 0xCF,\n\t0x89, 0xCC, 0x81, 0xC9, 0x84, 0xCF, 0x89, 0xCC,\n\t// Bytes 4880 - 48bf\n\t0x93, 0xC9, 0x84, 0xCF, 0x89, 0xCC, 0x94, 0xC9,\n\t0x84, 0xCF, 0x89, 0xCD, 0x82, 0xC9, 0x86, 0xCE,\n\t0x91, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x91, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t// Bytes 48c0 - 48ff\n\t0x97, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0x97, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t// Bytes 4900 - 493f\n\t0xA9, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xA9, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t// Bytes 4940 - 497f\n\t0xB1, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB1, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCE,\n\t0xB7, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x86, 0xCF,\n\t// Bytes 4980 - 49bf\n\t0x89, 0xCC, 0x93, 0xCC, 0x80, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x93, 0xCC, 0x81, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x93, 0xCD, 0x82, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCC, 0x80, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCC, 0x81, 0xCA, 0x86, 0xCF,\n\t0x89, 0xCC, 0x94, 0xCD, 0x82, 0xCA, 0x42, 0xCC,\n\t0x80, 0xC9, 0x32, 0x42, 0xCC, 0x81, 0xC9, 0x32,\n\t0x42, 0xCC, 0x93, 0xC9, 0x32, 0x43, 0xE1, 0x85,\n\t// Bytes 49c0 - 49ff\n\t0xA1, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xA2, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xA3, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xA4, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xA5, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xA6, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xA7, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xA8, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xA9, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xAA, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xAB, 0x01, 0x00, 0x43,\n\t// Bytes 4a00 - 4a3f\n\t0xE1, 0x85, 0xAC, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xAD, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xAE, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xAF, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xB0, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xB1, 0x01, 0x00, 0x43, 0xE1, 0x85, 0xB2, 0x01,\n\t0x00, 0x43, 0xE1, 0x85, 0xB3, 0x01, 0x00, 0x43,\n\t0xE1, 0x85, 0xB4, 0x01, 0x00, 0x43, 0xE1, 0x85,\n\t0xB5, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xAA, 0x01,\n\t// Bytes 4a40 - 4a7f\n\t0x00, 0x43, 0xE1, 0x86, 0xAC, 0x01, 0x00, 0x43,\n\t0xE1, 0x86, 0xAD, 0x01, 0x00, 0x43, 0xE1, 0x86,\n\t0xB0, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xB1, 0x01,\n\t0x00, 0x43, 0xE1, 0x86, 0xB2, 0x01, 0x00, 0x43,\n\t0xE1, 0x86, 0xB3, 0x01, 0x00, 0x43, 0xE1, 0x86,\n\t0xB4, 0x01, 0x00, 0x43, 0xE1, 0x86, 0xB5, 0x01,\n\t0x00, 0x44, 0xCC, 0x88, 0xCC, 0x81, 0xCA, 0x32,\n\t0x43, 0xE3, 0x82, 0x99, 0x0D, 0x03, 0x43, 0xE3,\n\t// Bytes 4a80 - 4abf\n\t0x82, 0x9A, 0x0D, 0x03, 0x46, 0xE0, 0xBD, 0xB1,\n\t0xE0, 0xBD, 0xB2, 0x9E, 0x26, 0x46, 0xE0, 0xBD,\n\t0xB1, 0xE0, 0xBD, 0xB4, 0xA2, 0x26, 0x46, 0xE0,\n\t0xBD, 0xB1, 0xE0, 0xBE, 0x80, 0x9E, 0x26, 0x00,\n\t0x01,\n}\n\n// lookup returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfcTrie) lookup(s []byte) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfcTrie) lookupUnsafe(s []byte) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfcValues[c0]\n\t}\n\ti := nfcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// lookupString returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfcTrie) lookupString(s string) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfcTrie) lookupStringUnsafe(s string) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfcValues[c0]\n\t}\n\ti := nfcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// nfcTrie. Total size: 10332 bytes (10.09 KiB). Checksum: 51cc525b297fc970.\ntype nfcTrie struct{}\n\nfunc newNfcTrie(i int) *nfcTrie {\n\treturn &nfcTrie{}\n}\n\n// lookupValue determines the type of block n and looks up the value for b.\nfunc (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {\n\tswitch {\n\tcase n < 44:\n\t\treturn uint16(nfcValues[n<<6+uint32(b)])\n\tdefault:\n\t\tn -= 44\n\t\treturn uint16(nfcSparse.lookup(n, b))\n\t}\n}\n\n// nfcValues: 46 blocks, 2944 entries, 5888 bytes\n// The third block is the zero block.\nvar nfcValues = [2944]uint16{\n\t// Block 0x0, offset 0x0\n\t0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,\n\t// Block 0x1, offset 0x40\n\t0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,\n\t0x46: 0xa000, 0x47: 0xa000, 0x48: 0xa000, 0x49: 0xa000, 0x4a: 0xa000, 0x4b: 0xa000,\n\t0x4c: 0xa000, 0x4d: 0xa000, 0x4e: 0xa000, 0x4f: 0xa000, 0x50: 0xa000,\n\t0x52: 0xa000, 0x53: 0xa000, 0x54: 0xa000, 0x55: 0xa000, 0x56: 0xa000, 0x57: 0xa000,\n\t0x58: 0xa000, 0x59: 0xa000, 0x5a: 0xa000,\n\t0x61: 0xa000, 0x62: 0xa000, 0x63: 0xa000,\n\t0x64: 0xa000, 0x65: 0xa000, 0x66: 0xa000, 0x67: 0xa000, 0x68: 0xa000, 0x69: 0xa000,\n\t0x6a: 0xa000, 0x6b: 0xa000, 0x6c: 0xa000, 0x6d: 0xa000, 0x6e: 0xa000, 0x6f: 0xa000,\n\t0x70: 0xa000, 0x72: 0xa000, 0x73: 0xa000, 0x74: 0xa000, 0x75: 0xa000,\n\t0x76: 0xa000, 0x77: 0xa000, 0x78: 0xa000, 0x79: 0xa000, 0x7a: 0xa000,\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc0: 0x2f6f, 0xc1: 0x2f74, 0xc2: 0x4688, 0xc3: 0x2f79, 0xc4: 0x4697, 0xc5: 0x469c,\n\t0xc6: 0xa000, 0xc7: 0x46a6, 0xc8: 0x2fe2, 0xc9: 0x2fe7, 0xca: 0x46ab, 0xcb: 0x2ffb,\n\t0xcc: 0x306e, 0xcd: 0x3073, 0xce: 0x3078, 0xcf: 0x46bf, 0xd1: 0x3104,\n\t0xd2: 0x3127, 0xd3: 0x312c, 0xd4: 0x46c9, 0xd5: 0x46ce, 0xd6: 0x46dd,\n\t0xd8: 0xa000, 0xd9: 0x31b3, 0xda: 0x31b8, 0xdb: 0x31bd, 0xdc: 0x470f, 0xdd: 0x3235,\n\t0xe0: 0x327b, 0xe1: 0x3280, 0xe2: 0x4719, 0xe3: 0x3285,\n\t0xe4: 0x4728, 0xe5: 0x472d, 0xe6: 0xa000, 0xe7: 0x4737, 0xe8: 0x32ee, 0xe9: 0x32f3,\n\t0xea: 0x473c, 0xeb: 0x3307, 0xec: 0x337f, 0xed: 0x3384, 0xee: 0x3389, 0xef: 0x4750,\n\t0xf1: 0x3415, 0xf2: 0x3438, 0xf3: 0x343d, 0xf4: 0x475a, 0xf5: 0x475f,\n\t0xf6: 0x476e, 0xf8: 0xa000, 0xf9: 0x34c9, 0xfa: 0x34ce, 0xfb: 0x34d3,\n\t0xfc: 0x47a0, 0xfd: 0x3550, 0xff: 0x3569,\n\t// Block 0x4, offset 0x100\n\t0x100: 0x2f7e, 0x101: 0x328a, 0x102: 0x468d, 0x103: 0x471e, 0x104: 0x2f9c, 0x105: 0x32a8,\n\t0x106: 0x2fb0, 0x107: 0x32bc, 0x108: 0x2fb5, 0x109: 0x32c1, 0x10a: 0x2fba, 0x10b: 0x32c6,\n\t0x10c: 0x2fbf, 0x10d: 0x32cb, 0x10e: 0x2fc9, 0x10f: 0x32d5,\n\t0x112: 0x46b0, 0x113: 0x4741, 0x114: 0x2ff1, 0x115: 0x32fd, 0x116: 0x2ff6, 0x117: 0x3302,\n\t0x118: 0x3014, 0x119: 0x3320, 0x11a: 0x3005, 0x11b: 0x3311, 0x11c: 0x302d, 0x11d: 0x3339,\n\t0x11e: 0x3037, 0x11f: 0x3343, 0x120: 0x303c, 0x121: 0x3348, 0x122: 0x3046, 0x123: 0x3352,\n\t0x124: 0x304b, 0x125: 0x3357, 0x128: 0x307d, 0x129: 0x338e,\n\t0x12a: 0x3082, 0x12b: 0x3393, 0x12c: 0x3087, 0x12d: 0x3398, 0x12e: 0x30aa, 0x12f: 0x33b6,\n\t0x130: 0x308c, 0x134: 0x30b4, 0x135: 0x33c0,\n\t0x136: 0x30c8, 0x137: 0x33d9, 0x139: 0x30d2, 0x13a: 0x33e3, 0x13b: 0x30dc,\n\t0x13c: 0x33ed, 0x13d: 0x30d7, 0x13e: 0x33e8,\n\t// Block 0x5, offset 0x140\n\t0x143: 0x30ff, 0x144: 0x3410, 0x145: 0x3118,\n\t0x146: 0x3429, 0x147: 0x310e, 0x148: 0x341f,\n\t0x14c: 0x46d3, 0x14d: 0x4764, 0x14e: 0x3131, 0x14f: 0x3442, 0x150: 0x313b, 0x151: 0x344c,\n\t0x154: 0x3159, 0x155: 0x346a, 0x156: 0x3172, 0x157: 0x3483,\n\t0x158: 0x3163, 0x159: 0x3474, 0x15a: 0x46f6, 0x15b: 0x4787, 0x15c: 0x317c, 0x15d: 0x348d,\n\t0x15e: 0x318b, 0x15f: 0x349c, 0x160: 0x46fb, 0x161: 0x478c, 0x162: 0x31a4, 0x163: 0x34ba,\n\t0x164: 0x3195, 0x165: 0x34ab, 0x168: 0x4705, 0x169: 0x4796,\n\t0x16a: 0x470a, 0x16b: 0x479b, 0x16c: 0x31c2, 0x16d: 0x34d8, 0x16e: 0x31cc, 0x16f: 0x34e2,\n\t0x170: 0x31d1, 0x171: 0x34e7, 0x172: 0x31ef, 0x173: 0x3505, 0x174: 0x3212, 0x175: 0x3528,\n\t0x176: 0x323a, 0x177: 0x3555, 0x178: 0x324e, 0x179: 0x325d, 0x17a: 0x357d, 0x17b: 0x3267,\n\t0x17c: 0x3587, 0x17d: 0x326c, 0x17e: 0x358c, 0x17f: 0xa000,\n\t// Block 0x6, offset 0x180\n\t0x184: 0x8100, 0x185: 0x8100,\n\t0x186: 0x8100,\n\t0x18d: 0x2f88, 0x18e: 0x3294, 0x18f: 0x3096, 0x190: 0x33a2, 0x191: 0x3140,\n\t0x192: 0x3451, 0x193: 0x31d6, 0x194: 0x34ec, 0x195: 0x39cf, 0x196: 0x3b5e, 0x197: 0x39c8,\n\t0x198: 0x3b57, 0x199: 0x39d6, 0x19a: 0x3b65, 0x19b: 0x39c1, 0x19c: 0x3b50,\n\t0x19e: 0x38b0, 0x19f: 0x3a3f, 0x1a0: 0x38a9, 0x1a1: 0x3a38, 0x1a2: 0x35b3, 0x1a3: 0x35c5,\n\t0x1a6: 0x3041, 0x1a7: 0x334d, 0x1a8: 0x30be, 0x1a9: 0x33cf,\n\t0x1aa: 0x46ec, 0x1ab: 0x477d, 0x1ac: 0x3990, 0x1ad: 0x3b1f, 0x1ae: 0x35d7, 0x1af: 0x35dd,\n\t0x1b0: 0x33c5, 0x1b4: 0x3028, 0x1b5: 0x3334,\n\t0x1b8: 0x30fa, 0x1b9: 0x340b, 0x1ba: 0x38b7, 0x1bb: 0x3a46,\n\t0x1bc: 0x35ad, 0x1bd: 0x35bf, 0x1be: 0x35b9, 0x1bf: 0x35cb,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x2f8d, 0x1c1: 0x3299, 0x1c2: 0x2f92, 0x1c3: 0x329e, 0x1c4: 0x300a, 0x1c5: 0x3316,\n\t0x1c6: 0x300f, 0x1c7: 0x331b, 0x1c8: 0x309b, 0x1c9: 0x33a7, 0x1ca: 0x30a0, 0x1cb: 0x33ac,\n\t0x1cc: 0x3145, 0x1cd: 0x3456, 0x1ce: 0x314a, 0x1cf: 0x345b, 0x1d0: 0x3168, 0x1d1: 0x3479,\n\t0x1d2: 0x316d, 0x1d3: 0x347e, 0x1d4: 0x31db, 0x1d5: 0x34f1, 0x1d6: 0x31e0, 0x1d7: 0x34f6,\n\t0x1d8: 0x3186, 0x1d9: 0x3497, 0x1da: 0x319f, 0x1db: 0x34b5,\n\t0x1de: 0x305a, 0x1df: 0x3366,\n\t0x1e6: 0x4692, 0x1e7: 0x4723, 0x1e8: 0x46ba, 0x1e9: 0x474b,\n\t0x1ea: 0x395f, 0x1eb: 0x3aee, 0x1ec: 0x393c, 0x1ed: 0x3acb, 0x1ee: 0x46d8, 0x1ef: 0x4769,\n\t0x1f0: 0x3958, 0x1f1: 0x3ae7, 0x1f2: 0x3244, 0x1f3: 0x355f,\n\t// Block 0x8, offset 0x200\n\t0x200: 0x9932, 0x201: 0x9932, 0x202: 0x9932, 0x203: 0x9932, 0x204: 0x9932, 0x205: 0x8132,\n\t0x206: 0x9932, 0x207: 0x9932, 0x208: 0x9932, 0x209: 0x9932, 0x20a: 0x9932, 0x20b: 0x9932,\n\t0x20c: 0x9932, 0x20d: 0x8132, 0x20e: 0x8132, 0x20f: 0x9932, 0x210: 0x8132, 0x211: 0x9932,\n\t0x212: 0x8132, 0x213: 0x9932, 0x214: 0x9932, 0x215: 0x8133, 0x216: 0x812d, 0x217: 0x812d,\n\t0x218: 0x812d, 0x219: 0x812d, 0x21a: 0x8133, 0x21b: 0x992b, 0x21c: 0x812d, 0x21d: 0x812d,\n\t0x21e: 0x812d, 0x21f: 0x812d, 0x220: 0x812d, 0x221: 0x8129, 0x222: 0x8129, 0x223: 0x992d,\n\t0x224: 0x992d, 0x225: 0x992d, 0x226: 0x992d, 0x227: 0x9929, 0x228: 0x9929, 0x229: 0x812d,\n\t0x22a: 0x812d, 0x22b: 0x812d, 0x22c: 0x812d, 0x22d: 0x992d, 0x22e: 0x992d, 0x22f: 0x812d,\n\t0x230: 0x992d, 0x231: 0x992d, 0x232: 0x812d, 0x233: 0x812d, 0x234: 0x8101, 0x235: 0x8101,\n\t0x236: 0x8101, 0x237: 0x8101, 0x238: 0x9901, 0x239: 0x812d, 0x23a: 0x812d, 0x23b: 0x812d,\n\t0x23c: 0x812d, 0x23d: 0x8132, 0x23e: 0x8132, 0x23f: 0x8132,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x49ae, 0x241: 0x49b3, 0x242: 0x9932, 0x243: 0x49b8, 0x244: 0x4a71, 0x245: 0x9936,\n\t0x246: 0x8132, 0x247: 0x812d, 0x248: 0x812d, 0x249: 0x812d, 0x24a: 0x8132, 0x24b: 0x8132,\n\t0x24c: 0x8132, 0x24d: 0x812d, 0x24e: 0x812d, 0x250: 0x8132, 0x251: 0x8132,\n\t0x252: 0x8132, 0x253: 0x812d, 0x254: 0x812d, 0x255: 0x812d, 0x256: 0x812d, 0x257: 0x8132,\n\t0x258: 0x8133, 0x259: 0x812d, 0x25a: 0x812d, 0x25b: 0x8132, 0x25c: 0x8134, 0x25d: 0x8135,\n\t0x25e: 0x8135, 0x25f: 0x8134, 0x260: 0x8135, 0x261: 0x8135, 0x262: 0x8134, 0x263: 0x8132,\n\t0x264: 0x8132, 0x265: 0x8132, 0x266: 0x8132, 0x267: 0x8132, 0x268: 0x8132, 0x269: 0x8132,\n\t0x26a: 0x8132, 0x26b: 0x8132, 0x26c: 0x8132, 0x26d: 0x8132, 0x26e: 0x8132, 0x26f: 0x8132,\n\t0x274: 0x0170,\n\t0x27a: 0x8100,\n\t0x27e: 0x0037,\n\t// Block 0xa, offset 0x280\n\t0x284: 0x8100, 0x285: 0x35a1,\n\t0x286: 0x35e9, 0x287: 0x00ce, 0x288: 0x3607, 0x289: 0x3613, 0x28a: 0x3625,\n\t0x28c: 0x3643, 0x28e: 0x3655, 0x28f: 0x3673, 0x290: 0x3e08, 0x291: 0xa000,\n\t0x295: 0xa000, 0x297: 0xa000,\n\t0x299: 0xa000,\n\t0x29f: 0xa000, 0x2a1: 0xa000,\n\t0x2a5: 0xa000, 0x2a9: 0xa000,\n\t0x2aa: 0x3637, 0x2ab: 0x3667, 0x2ac: 0x47fe, 0x2ad: 0x3697, 0x2ae: 0x4828, 0x2af: 0x36a9,\n\t0x2b0: 0x3e70, 0x2b1: 0xa000, 0x2b5: 0xa000,\n\t0x2b7: 0xa000, 0x2b9: 0xa000,\n\t0x2bf: 0xa000,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0x3721, 0x2c1: 0x372d, 0x2c3: 0x371b,\n\t0x2c6: 0xa000, 0x2c7: 0x3709,\n\t0x2cc: 0x375d, 0x2cd: 0x3745, 0x2ce: 0x376f, 0x2d0: 0xa000,\n\t0x2d3: 0xa000, 0x2d5: 0xa000, 0x2d6: 0xa000, 0x2d7: 0xa000,\n\t0x2d8: 0xa000, 0x2d9: 0x3751, 0x2da: 0xa000,\n\t0x2de: 0xa000, 0x2e3: 0xa000,\n\t0x2e7: 0xa000,\n\t0x2eb: 0xa000, 0x2ed: 0xa000,\n\t0x2f0: 0xa000, 0x2f3: 0xa000, 0x2f5: 0xa000,\n\t0x2f6: 0xa000, 0x2f7: 0xa000, 0x2f8: 0xa000, 0x2f9: 0x37d5, 0x2fa: 0xa000,\n\t0x2fe: 0xa000,\n\t// Block 0xc, offset 0x300\n\t0x301: 0x3733, 0x302: 0x37b7,\n\t0x310: 0x370f, 0x311: 0x3793,\n\t0x312: 0x3715, 0x313: 0x3799, 0x316: 0x3727, 0x317: 0x37ab,\n\t0x318: 0xa000, 0x319: 0xa000, 0x31a: 0x3829, 0x31b: 0x382f, 0x31c: 0x3739, 0x31d: 0x37bd,\n\t0x31e: 0x373f, 0x31f: 0x37c3, 0x322: 0x374b, 0x323: 0x37cf,\n\t0x324: 0x3757, 0x325: 0x37db, 0x326: 0x3763, 0x327: 0x37e7, 0x328: 0xa000, 0x329: 0xa000,\n\t0x32a: 0x3835, 0x32b: 0x383b, 0x32c: 0x378d, 0x32d: 0x3811, 0x32e: 0x3769, 0x32f: 0x37ed,\n\t0x330: 0x3775, 0x331: 0x37f9, 0x332: 0x377b, 0x333: 0x37ff, 0x334: 0x3781, 0x335: 0x3805,\n\t0x338: 0x3787, 0x339: 0x380b,\n\t// Block 0xd, offset 0x340\n\t0x351: 0x812d,\n\t0x352: 0x8132, 0x353: 0x8132, 0x354: 0x8132, 0x355: 0x8132, 0x356: 0x812d, 0x357: 0x8132,\n\t0x358: 0x8132, 0x359: 0x8132, 0x35a: 0x812e, 0x35b: 0x812d, 0x35c: 0x8132, 0x35d: 0x8132,\n\t0x35e: 0x8132, 0x35f: 0x8132, 0x360: 0x8132, 0x361: 0x8132, 0x362: 0x812d, 0x363: 0x812d,\n\t0x364: 0x812d, 0x365: 0x812d, 0x366: 0x812d, 0x367: 0x812d, 0x368: 0x8132, 0x369: 0x8132,\n\t0x36a: 0x812d, 0x36b: 0x8132, 0x36c: 0x8132, 0x36d: 0x812e, 0x36e: 0x8131, 0x36f: 0x8132,\n\t0x370: 0x8105, 0x371: 0x8106, 0x372: 0x8107, 0x373: 0x8108, 0x374: 0x8109, 0x375: 0x810a,\n\t0x376: 0x810b, 0x377: 0x810c, 0x378: 0x810d, 0x379: 0x810e, 0x37a: 0x810e, 0x37b: 0x810f,\n\t0x37c: 0x8110, 0x37d: 0x8111, 0x37f: 0x8112,\n\t// Block 0xe, offset 0x380\n\t0x388: 0xa000, 0x38a: 0xa000, 0x38b: 0x8116,\n\t0x38c: 0x8117, 0x38d: 0x8118, 0x38e: 0x8119, 0x38f: 0x811a, 0x390: 0x811b, 0x391: 0x811c,\n\t0x392: 0x811d, 0x393: 0x9932, 0x394: 0x9932, 0x395: 0x992d, 0x396: 0x812d, 0x397: 0x8132,\n\t0x398: 0x8132, 0x399: 0x8132, 0x39a: 0x8132, 0x39b: 0x8132, 0x39c: 0x812d, 0x39d: 0x8132,\n\t0x39e: 0x8132, 0x39f: 0x812d,\n\t0x3b0: 0x811e,\n\t// Block 0xf, offset 0x3c0\n\t0x3c5: 0xa000,\n\t0x3c6: 0x2d26, 0x3c7: 0xa000, 0x3c8: 0x2d2e, 0x3c9: 0xa000, 0x3ca: 0x2d36, 0x3cb: 0xa000,\n\t0x3cc: 0x2d3e, 0x3cd: 0xa000, 0x3ce: 0x2d46, 0x3d1: 0xa000,\n\t0x3d2: 0x2d4e,\n\t0x3f4: 0x8102, 0x3f5: 0x9900,\n\t0x3fa: 0xa000, 0x3fb: 0x2d56,\n\t0x3fc: 0xa000, 0x3fd: 0x2d5e, 0x3fe: 0xa000, 0x3ff: 0xa000,\n\t// Block 0x10, offset 0x400\n\t0x400: 0x2f97, 0x401: 0x32a3, 0x402: 0x2fa1, 0x403: 0x32ad, 0x404: 0x2fa6, 0x405: 0x32b2,\n\t0x406: 0x2fab, 0x407: 0x32b7, 0x408: 0x38cc, 0x409: 0x3a5b, 0x40a: 0x2fc4, 0x40b: 0x32d0,\n\t0x40c: 0x2fce, 0x40d: 0x32da, 0x40e: 0x2fdd, 0x40f: 0x32e9, 0x410: 0x2fd3, 0x411: 0x32df,\n\t0x412: 0x2fd8, 0x413: 0x32e4, 0x414: 0x38ef, 0x415: 0x3a7e, 0x416: 0x38f6, 0x417: 0x3a85,\n\t0x418: 0x3019, 0x419: 0x3325, 0x41a: 0x301e, 0x41b: 0x332a, 0x41c: 0x3904, 0x41d: 0x3a93,\n\t0x41e: 0x3023, 0x41f: 0x332f, 0x420: 0x3032, 0x421: 0x333e, 0x422: 0x3050, 0x423: 0x335c,\n\t0x424: 0x305f, 0x425: 0x336b, 0x426: 0x3055, 0x427: 0x3361, 0x428: 0x3064, 0x429: 0x3370,\n\t0x42a: 0x3069, 0x42b: 0x3375, 0x42c: 0x30af, 0x42d: 0x33bb, 0x42e: 0x390b, 0x42f: 0x3a9a,\n\t0x430: 0x30b9, 0x431: 0x33ca, 0x432: 0x30c3, 0x433: 0x33d4, 0x434: 0x30cd, 0x435: 0x33de,\n\t0x436: 0x46c4, 0x437: 0x4755, 0x438: 0x3912, 0x439: 0x3aa1, 0x43a: 0x30e6, 0x43b: 0x33f7,\n\t0x43c: 0x30e1, 0x43d: 0x33f2, 0x43e: 0x30eb, 0x43f: 0x33fc,\n\t// Block 0x11, offset 0x440\n\t0x440: 0x30f0, 0x441: 0x3401, 0x442: 0x30f5, 0x443: 0x3406, 0x444: 0x3109, 0x445: 0x341a,\n\t0x446: 0x3113, 0x447: 0x3424, 0x448: 0x3122, 0x449: 0x3433, 0x44a: 0x311d, 0x44b: 0x342e,\n\t0x44c: 0x3935, 0x44d: 0x3ac4, 0x44e: 0x3943, 0x44f: 0x3ad2, 0x450: 0x394a, 0x451: 0x3ad9,\n\t0x452: 0x3951, 0x453: 0x3ae0, 0x454: 0x314f, 0x455: 0x3460, 0x456: 0x3154, 0x457: 0x3465,\n\t0x458: 0x315e, 0x459: 0x346f, 0x45a: 0x46f1, 0x45b: 0x4782, 0x45c: 0x3997, 0x45d: 0x3b26,\n\t0x45e: 0x3177, 0x45f: 0x3488, 0x460: 0x3181, 0x461: 0x3492, 0x462: 0x4700, 0x463: 0x4791,\n\t0x464: 0x399e, 0x465: 0x3b2d, 0x466: 0x39a5, 0x467: 0x3b34, 0x468: 0x39ac, 0x469: 0x3b3b,\n\t0x46a: 0x3190, 0x46b: 0x34a1, 0x46c: 0x319a, 0x46d: 0x34b0, 0x46e: 0x31ae, 0x46f: 0x34c4,\n\t0x470: 0x31a9, 0x471: 0x34bf, 0x472: 0x31ea, 0x473: 0x3500, 0x474: 0x31f9, 0x475: 0x350f,\n\t0x476: 0x31f4, 0x477: 0x350a, 0x478: 0x39b3, 0x479: 0x3b42, 0x47a: 0x39ba, 0x47b: 0x3b49,\n\t0x47c: 0x31fe, 0x47d: 0x3514, 0x47e: 0x3203, 0x47f: 0x3519,\n\t// Block 0x12, offset 0x480\n\t0x480: 0x3208, 0x481: 0x351e, 0x482: 0x320d, 0x483: 0x3523, 0x484: 0x321c, 0x485: 0x3532,\n\t0x486: 0x3217, 0x487: 0x352d, 0x488: 0x3221, 0x489: 0x353c, 0x48a: 0x3226, 0x48b: 0x3541,\n\t0x48c: 0x322b, 0x48d: 0x3546, 0x48e: 0x3249, 0x48f: 0x3564, 0x490: 0x3262, 0x491: 0x3582,\n\t0x492: 0x3271, 0x493: 0x3591, 0x494: 0x3276, 0x495: 0x3596, 0x496: 0x337a, 0x497: 0x34a6,\n\t0x498: 0x3537, 0x499: 0x3573, 0x49b: 0x35d1,\n\t0x4a0: 0x46a1, 0x4a1: 0x4732, 0x4a2: 0x2f83, 0x4a3: 0x328f,\n\t0x4a4: 0x3878, 0x4a5: 0x3a07, 0x4a6: 0x3871, 0x4a7: 0x3a00, 0x4a8: 0x3886, 0x4a9: 0x3a15,\n\t0x4aa: 0x387f, 0x4ab: 0x3a0e, 0x4ac: 0x38be, 0x4ad: 0x3a4d, 0x4ae: 0x3894, 0x4af: 0x3a23,\n\t0x4b0: 0x388d, 0x4b1: 0x3a1c, 0x4b2: 0x38a2, 0x4b3: 0x3a31, 0x4b4: 0x389b, 0x4b5: 0x3a2a,\n\t0x4b6: 0x38c5, 0x4b7: 0x3a54, 0x4b8: 0x46b5, 0x4b9: 0x4746, 0x4ba: 0x3000, 0x4bb: 0x330c,\n\t0x4bc: 0x2fec, 0x4bd: 0x32f8, 0x4be: 0x38da, 0x4bf: 0x3a69,\n\t// Block 0x13, offset 0x4c0\n\t0x4c0: 0x38d3, 0x4c1: 0x3a62, 0x4c2: 0x38e8, 0x4c3: 0x3a77, 0x4c4: 0x38e1, 0x4c5: 0x3a70,\n\t0x4c6: 0x38fd, 0x4c7: 0x3a8c, 0x4c8: 0x3091, 0x4c9: 0x339d, 0x4ca: 0x30a5, 0x4cb: 0x33b1,\n\t0x4cc: 0x46e7, 0x4cd: 0x4778, 0x4ce: 0x3136, 0x4cf: 0x3447, 0x4d0: 0x3920, 0x4d1: 0x3aaf,\n\t0x4d2: 0x3919, 0x4d3: 0x3aa8, 0x4d4: 0x392e, 0x4d5: 0x3abd, 0x4d6: 0x3927, 0x4d7: 0x3ab6,\n\t0x4d8: 0x3989, 0x4d9: 0x3b18, 0x4da: 0x396d, 0x4db: 0x3afc, 0x4dc: 0x3966, 0x4dd: 0x3af5,\n\t0x4de: 0x397b, 0x4df: 0x3b0a, 0x4e0: 0x3974, 0x4e1: 0x3b03, 0x4e2: 0x3982, 0x4e3: 0x3b11,\n\t0x4e4: 0x31e5, 0x4e5: 0x34fb, 0x4e6: 0x31c7, 0x4e7: 0x34dd, 0x4e8: 0x39e4, 0x4e9: 0x3b73,\n\t0x4ea: 0x39dd, 0x4eb: 0x3b6c, 0x4ec: 0x39f2, 0x4ed: 0x3b81, 0x4ee: 0x39eb, 0x4ef: 0x3b7a,\n\t0x4f0: 0x39f9, 0x4f1: 0x3b88, 0x4f2: 0x3230, 0x4f3: 0x354b, 0x4f4: 0x3258, 0x4f5: 0x3578,\n\t0x4f6: 0x3253, 0x4f7: 0x356e, 0x4f8: 0x323f, 0x4f9: 0x355a,\n\t// Block 0x14, offset 0x500\n\t0x500: 0x4804, 0x501: 0x480a, 0x502: 0x491e, 0x503: 0x4936, 0x504: 0x4926, 0x505: 0x493e,\n\t0x506: 0x492e, 0x507: 0x4946, 0x508: 0x47aa, 0x509: 0x47b0, 0x50a: 0x488e, 0x50b: 0x48a6,\n\t0x50c: 0x4896, 0x50d: 0x48ae, 0x50e: 0x489e, 0x50f: 0x48b6, 0x510: 0x4816, 0x511: 0x481c,\n\t0x512: 0x3db8, 0x513: 0x3dc8, 0x514: 0x3dc0, 0x515: 0x3dd0,\n\t0x518: 0x47b6, 0x519: 0x47bc, 0x51a: 0x3ce8, 0x51b: 0x3cf8, 0x51c: 0x3cf0, 0x51d: 0x3d00,\n\t0x520: 0x482e, 0x521: 0x4834, 0x522: 0x494e, 0x523: 0x4966,\n\t0x524: 0x4956, 0x525: 0x496e, 0x526: 0x495e, 0x527: 0x4976, 0x528: 0x47c2, 0x529: 0x47c8,\n\t0x52a: 0x48be, 0x52b: 0x48d6, 0x52c: 0x48c6, 0x52d: 0x48de, 0x52e: 0x48ce, 0x52f: 0x48e6,\n\t0x530: 0x4846, 0x531: 0x484c, 0x532: 0x3e18, 0x533: 0x3e30, 0x534: 0x3e20, 0x535: 0x3e38,\n\t0x536: 0x3e28, 0x537: 0x3e40, 0x538: 0x47ce, 0x539: 0x47d4, 0x53a: 0x3d18, 0x53b: 0x3d30,\n\t0x53c: 0x3d20, 0x53d: 0x3d38, 0x53e: 0x3d28, 0x53f: 0x3d40,\n\t// Block 0x15, offset 0x540\n\t0x540: 0x4852, 0x541: 0x4858, 0x542: 0x3e48, 0x543: 0x3e58, 0x544: 0x3e50, 0x545: 0x3e60,\n\t0x548: 0x47da, 0x549: 0x47e0, 0x54a: 0x3d48, 0x54b: 0x3d58,\n\t0x54c: 0x3d50, 0x54d: 0x3d60, 0x550: 0x4864, 0x551: 0x486a,\n\t0x552: 0x3e80, 0x553: 0x3e98, 0x554: 0x3e88, 0x555: 0x3ea0, 0x556: 0x3e90, 0x557: 0x3ea8,\n\t0x559: 0x47e6, 0x55b: 0x3d68, 0x55d: 0x3d70,\n\t0x55f: 0x3d78, 0x560: 0x487c, 0x561: 0x4882, 0x562: 0x497e, 0x563: 0x4996,\n\t0x564: 0x4986, 0x565: 0x499e, 0x566: 0x498e, 0x567: 0x49a6, 0x568: 0x47ec, 0x569: 0x47f2,\n\t0x56a: 0x48ee, 0x56b: 0x4906, 0x56c: 0x48f6, 0x56d: 0x490e, 0x56e: 0x48fe, 0x56f: 0x4916,\n\t0x570: 0x47f8, 0x571: 0x431e, 0x572: 0x3691, 0x573: 0x4324, 0x574: 0x4822, 0x575: 0x432a,\n\t0x576: 0x36a3, 0x577: 0x4330, 0x578: 0x36c1, 0x579: 0x4336, 0x57a: 0x36d9, 0x57b: 0x433c,\n\t0x57c: 0x4870, 0x57d: 0x4342,\n\t// Block 0x16, offset 0x580\n\t0x580: 0x3da0, 0x581: 0x3da8, 0x582: 0x4184, 0x583: 0x41a2, 0x584: 0x418e, 0x585: 0x41ac,\n\t0x586: 0x4198, 0x587: 0x41b6, 0x588: 0x3cd8, 0x589: 0x3ce0, 0x58a: 0x40d0, 0x58b: 0x40ee,\n\t0x58c: 0x40da, 0x58d: 0x40f8, 0x58e: 0x40e4, 0x58f: 0x4102, 0x590: 0x3de8, 0x591: 0x3df0,\n\t0x592: 0x41c0, 0x593: 0x41de, 0x594: 0x41ca, 0x595: 0x41e8, 0x596: 0x41d4, 0x597: 0x41f2,\n\t0x598: 0x3d08, 0x599: 0x3d10, 0x59a: 0x410c, 0x59b: 0x412a, 0x59c: 0x4116, 0x59d: 0x4134,\n\t0x59e: 0x4120, 0x59f: 0x413e, 0x5a0: 0x3ec0, 0x5a1: 0x3ec8, 0x5a2: 0x41fc, 0x5a3: 0x421a,\n\t0x5a4: 0x4206, 0x5a5: 0x4224, 0x5a6: 0x4210, 0x5a7: 0x422e, 0x5a8: 0x3d80, 0x5a9: 0x3d88,\n\t0x5aa: 0x4148, 0x5ab: 0x4166, 0x5ac: 0x4152, 0x5ad: 0x4170, 0x5ae: 0x415c, 0x5af: 0x417a,\n\t0x5b0: 0x3685, 0x5b1: 0x367f, 0x5b2: 0x3d90, 0x5b3: 0x368b, 0x5b4: 0x3d98,\n\t0x5b6: 0x4810, 0x5b7: 0x3db0, 0x5b8: 0x35f5, 0x5b9: 0x35ef, 0x5ba: 0x35e3, 0x5bb: 0x42ee,\n\t0x5bc: 0x35fb, 0x5bd: 0x8100, 0x5be: 0x01d3, 0x5bf: 0xa100,\n\t// Block 0x17, offset 0x5c0\n\t0x5c0: 0x8100, 0x5c1: 0x35a7, 0x5c2: 0x3dd8, 0x5c3: 0x369d, 0x5c4: 0x3de0,\n\t0x5c6: 0x483a, 0x5c7: 0x3df8, 0x5c8: 0x3601, 0x5c9: 0x42f4, 0x5ca: 0x360d, 0x5cb: 0x42fa,\n\t0x5cc: 0x3619, 0x5cd: 0x3b8f, 0x5ce: 0x3b96, 0x5cf: 0x3b9d, 0x5d0: 0x36b5, 0x5d1: 0x36af,\n\t0x5d2: 0x3e00, 0x5d3: 0x44e4, 0x5d6: 0x36bb, 0x5d7: 0x3e10,\n\t0x5d8: 0x3631, 0x5d9: 0x362b, 0x5da: 0x361f, 0x5db: 0x4300, 0x5dd: 0x3ba4,\n\t0x5de: 0x3bab, 0x5df: 0x3bb2, 0x5e0: 0x36eb, 0x5e1: 0x36e5, 0x5e2: 0x3e68, 0x5e3: 0x44ec,\n\t0x5e4: 0x36cd, 0x5e5: 0x36d3, 0x5e6: 0x36f1, 0x5e7: 0x3e78, 0x5e8: 0x3661, 0x5e9: 0x365b,\n\t0x5ea: 0x364f, 0x5eb: 0x430c, 0x5ec: 0x3649, 0x5ed: 0x359b, 0x5ee: 0x42e8, 0x5ef: 0x0081,\n\t0x5f2: 0x3eb0, 0x5f3: 0x36f7, 0x5f4: 0x3eb8,\n\t0x5f6: 0x4888, 0x5f7: 0x3ed0, 0x5f8: 0x363d, 0x5f9: 0x4306, 0x5fa: 0x366d, 0x5fb: 0x4318,\n\t0x5fc: 0x3679, 0x5fd: 0x4256, 0x5fe: 0xa100,\n\t// Block 0x18, offset 0x600\n\t0x601: 0x3c06, 0x603: 0xa000, 0x604: 0x3c0d, 0x605: 0xa000,\n\t0x607: 0x3c14, 0x608: 0xa000, 0x609: 0x3c1b,\n\t0x60d: 0xa000,\n\t0x620: 0x2f65, 0x621: 0xa000, 0x622: 0x3c29,\n\t0x624: 0xa000, 0x625: 0xa000,\n\t0x62d: 0x3c22, 0x62e: 0x2f60, 0x62f: 0x2f6a,\n\t0x630: 0x3c30, 0x631: 0x3c37, 0x632: 0xa000, 0x633: 0xa000, 0x634: 0x3c3e, 0x635: 0x3c45,\n\t0x636: 0xa000, 0x637: 0xa000, 0x638: 0x3c4c, 0x639: 0x3c53, 0x63a: 0xa000, 0x63b: 0xa000,\n\t0x63c: 0xa000, 0x63d: 0xa000,\n\t// Block 0x19, offset 0x640\n\t0x640: 0x3c5a, 0x641: 0x3c61, 0x642: 0xa000, 0x643: 0xa000, 0x644: 0x3c76, 0x645: 0x3c7d,\n\t0x646: 0xa000, 0x647: 0xa000, 0x648: 0x3c84, 0x649: 0x3c8b,\n\t0x651: 0xa000,\n\t0x652: 0xa000,\n\t0x662: 0xa000,\n\t0x668: 0xa000, 0x669: 0xa000,\n\t0x66b: 0xa000, 0x66c: 0x3ca0, 0x66d: 0x3ca7, 0x66e: 0x3cae, 0x66f: 0x3cb5,\n\t0x672: 0xa000, 0x673: 0xa000, 0x674: 0xa000, 0x675: 0xa000,\n\t// Block 0x1a, offset 0x680\n\t0x686: 0xa000, 0x68b: 0xa000,\n\t0x68c: 0x3f08, 0x68d: 0xa000, 0x68e: 0x3f10, 0x68f: 0xa000, 0x690: 0x3f18, 0x691: 0xa000,\n\t0x692: 0x3f20, 0x693: 0xa000, 0x694: 0x3f28, 0x695: 0xa000, 0x696: 0x3f30, 0x697: 0xa000,\n\t0x698: 0x3f38, 0x699: 0xa000, 0x69a: 0x3f40, 0x69b: 0xa000, 0x69c: 0x3f48, 0x69d: 0xa000,\n\t0x69e: 0x3f50, 0x69f: 0xa000, 0x6a0: 0x3f58, 0x6a1: 0xa000, 0x6a2: 0x3f60,\n\t0x6a4: 0xa000, 0x6a5: 0x3f68, 0x6a6: 0xa000, 0x6a7: 0x3f70, 0x6a8: 0xa000, 0x6a9: 0x3f78,\n\t0x6af: 0xa000,\n\t0x6b0: 0x3f80, 0x6b1: 0x3f88, 0x6b2: 0xa000, 0x6b3: 0x3f90, 0x6b4: 0x3f98, 0x6b5: 0xa000,\n\t0x6b6: 0x3fa0, 0x6b7: 0x3fa8, 0x6b8: 0xa000, 0x6b9: 0x3fb0, 0x6ba: 0x3fb8, 0x6bb: 0xa000,\n\t0x6bc: 0x3fc0, 0x6bd: 0x3fc8,\n\t// Block 0x1b, offset 0x6c0\n\t0x6d4: 0x3f00,\n\t0x6d9: 0x9903, 0x6da: 0x9903, 0x6db: 0x8100, 0x6dc: 0x8100, 0x6dd: 0xa000,\n\t0x6de: 0x3fd0,\n\t0x6e6: 0xa000,\n\t0x6eb: 0xa000, 0x6ec: 0x3fe0, 0x6ed: 0xa000, 0x6ee: 0x3fe8, 0x6ef: 0xa000,\n\t0x6f0: 0x3ff0, 0x6f1: 0xa000, 0x6f2: 0x3ff8, 0x6f3: 0xa000, 0x6f4: 0x4000, 0x6f5: 0xa000,\n\t0x6f6: 0x4008, 0x6f7: 0xa000, 0x6f8: 0x4010, 0x6f9: 0xa000, 0x6fa: 0x4018, 0x6fb: 0xa000,\n\t0x6fc: 0x4020, 0x6fd: 0xa000, 0x6fe: 0x4028, 0x6ff: 0xa000,\n\t// Block 0x1c, offset 0x700\n\t0x700: 0x4030, 0x701: 0xa000, 0x702: 0x4038, 0x704: 0xa000, 0x705: 0x4040,\n\t0x706: 0xa000, 0x707: 0x4048, 0x708: 0xa000, 0x709: 0x4050,\n\t0x70f: 0xa000, 0x710: 0x4058, 0x711: 0x4060,\n\t0x712: 0xa000, 0x713: 0x4068, 0x714: 0x4070, 0x715: 0xa000, 0x716: 0x4078, 0x717: 0x4080,\n\t0x718: 0xa000, 0x719: 0x4088, 0x71a: 0x4090, 0x71b: 0xa000, 0x71c: 0x4098, 0x71d: 0x40a0,\n\t0x72f: 0xa000,\n\t0x730: 0xa000, 0x731: 0xa000, 0x732: 0xa000, 0x734: 0x3fd8,\n\t0x737: 0x40a8, 0x738: 0x40b0, 0x739: 0x40b8, 0x73a: 0x40c0,\n\t0x73d: 0xa000, 0x73e: 0x40c8,\n\t// Block 0x1d, offset 0x740\n\t0x740: 0x1377, 0x741: 0x0cfb, 0x742: 0x13d3, 0x743: 0x139f, 0x744: 0x0e57, 0x745: 0x06eb,\n\t0x746: 0x08df, 0x747: 0x162b, 0x748: 0x162b, 0x749: 0x0a0b, 0x74a: 0x145f, 0x74b: 0x0943,\n\t0x74c: 0x0a07, 0x74d: 0x0bef, 0x74e: 0x0fcf, 0x74f: 0x115f, 0x750: 0x1297, 0x751: 0x12d3,\n\t0x752: 0x1307, 0x753: 0x141b, 0x754: 0x0d73, 0x755: 0x0dff, 0x756: 0x0eab, 0x757: 0x0f43,\n\t0x758: 0x125f, 0x759: 0x1447, 0x75a: 0x1573, 0x75b: 0x070f, 0x75c: 0x08b3, 0x75d: 0x0d87,\n\t0x75e: 0x0ecf, 0x75f: 0x1293, 0x760: 0x15c3, 0x761: 0x0ab3, 0x762: 0x0e77, 0x763: 0x1283,\n\t0x764: 0x1317, 0x765: 0x0c23, 0x766: 0x11bb, 0x767: 0x12df, 0x768: 0x0b1f, 0x769: 0x0d0f,\n\t0x76a: 0x0e17, 0x76b: 0x0f1b, 0x76c: 0x1427, 0x76d: 0x074f, 0x76e: 0x07e7, 0x76f: 0x0853,\n\t0x770: 0x0c8b, 0x771: 0x0d7f, 0x772: 0x0ecb, 0x773: 0x0fef, 0x774: 0x1177, 0x775: 0x128b,\n\t0x776: 0x12a3, 0x777: 0x13c7, 0x778: 0x14ef, 0x779: 0x15a3, 0x77a: 0x15bf, 0x77b: 0x102b,\n\t0x77c: 0x106b, 0x77d: 0x1123, 0x77e: 0x1243, 0x77f: 0x147b,\n\t// Block 0x1e, offset 0x780\n\t0x780: 0x15cb, 0x781: 0x134b, 0x782: 0x09c7, 0x783: 0x0b3b, 0x784: 0x10db, 0x785: 0x119b,\n\t0x786: 0x0eff, 0x787: 0x1033, 0x788: 0x1397, 0x789: 0x14e7, 0x78a: 0x09c3, 0x78b: 0x0a8f,\n\t0x78c: 0x0d77, 0x78d: 0x0e2b, 0x78e: 0x0e5f, 0x78f: 0x1113, 0x790: 0x113b, 0x791: 0x14a7,\n\t0x792: 0x084f, 0x793: 0x11a7, 0x794: 0x07f3, 0x795: 0x07ef, 0x796: 0x1097, 0x797: 0x1127,\n\t0x798: 0x125b, 0x799: 0x14af, 0x79a: 0x1367, 0x79b: 0x0c27, 0x79c: 0x0d73, 0x79d: 0x1357,\n\t0x79e: 0x06f7, 0x79f: 0x0a63, 0x7a0: 0x0b93, 0x7a1: 0x0f2f, 0x7a2: 0x0faf, 0x7a3: 0x0873,\n\t0x7a4: 0x103b, 0x7a5: 0x075f, 0x7a6: 0x0b77, 0x7a7: 0x06d7, 0x7a8: 0x0deb, 0x7a9: 0x0ca3,\n\t0x7aa: 0x110f, 0x7ab: 0x08c7, 0x7ac: 0x09b3, 0x7ad: 0x0ffb, 0x7ae: 0x1263, 0x7af: 0x133b,\n\t0x7b0: 0x0db7, 0x7b1: 0x13f7, 0x7b2: 0x0de3, 0x7b3: 0x0c37, 0x7b4: 0x121b, 0x7b5: 0x0c57,\n\t0x7b6: 0x0fab, 0x7b7: 0x072b, 0x7b8: 0x07a7, 0x7b9: 0x07eb, 0x7ba: 0x0d53, 0x7bb: 0x10fb,\n\t0x7bc: 0x11f3, 0x7bd: 0x1347, 0x7be: 0x145b, 0x7bf: 0x085b,\n\t// Block 0x1f, offset 0x7c0\n\t0x7c0: 0x090f, 0x7c1: 0x0a17, 0x7c2: 0x0b2f, 0x7c3: 0x0cbf, 0x7c4: 0x0e7b, 0x7c5: 0x103f,\n\t0x7c6: 0x1497, 0x7c7: 0x157b, 0x7c8: 0x15cf, 0x7c9: 0x15e7, 0x7ca: 0x0837, 0x7cb: 0x0cf3,\n\t0x7cc: 0x0da3, 0x7cd: 0x13eb, 0x7ce: 0x0afb, 0x7cf: 0x0bd7, 0x7d0: 0x0bf3, 0x7d1: 0x0c83,\n\t0x7d2: 0x0e6b, 0x7d3: 0x0eb7, 0x7d4: 0x0f67, 0x7d5: 0x108b, 0x7d6: 0x112f, 0x7d7: 0x1193,\n\t0x7d8: 0x13db, 0x7d9: 0x126b, 0x7da: 0x1403, 0x7db: 0x147f, 0x7dc: 0x080f, 0x7dd: 0x083b,\n\t0x7de: 0x0923, 0x7df: 0x0ea7, 0x7e0: 0x12f3, 0x7e1: 0x133b, 0x7e2: 0x0b1b, 0x7e3: 0x0b8b,\n\t0x7e4: 0x0c4f, 0x7e5: 0x0daf, 0x7e6: 0x10d7, 0x7e7: 0x0f23, 0x7e8: 0x073b, 0x7e9: 0x097f,\n\t0x7ea: 0x0a63, 0x7eb: 0x0ac7, 0x7ec: 0x0b97, 0x7ed: 0x0f3f, 0x7ee: 0x0f5b, 0x7ef: 0x116b,\n\t0x7f0: 0x118b, 0x7f1: 0x1463, 0x7f2: 0x14e3, 0x7f3: 0x14f3, 0x7f4: 0x152f, 0x7f5: 0x0753,\n\t0x7f6: 0x107f, 0x7f7: 0x144f, 0x7f8: 0x14cb, 0x7f9: 0x0baf, 0x7fa: 0x0717, 0x7fb: 0x0777,\n\t0x7fc: 0x0a67, 0x7fd: 0x0a87, 0x7fe: 0x0caf, 0x7ff: 0x0d73,\n\t// Block 0x20, offset 0x800\n\t0x800: 0x0ec3, 0x801: 0x0fcb, 0x802: 0x1277, 0x803: 0x1417, 0x804: 0x1623, 0x805: 0x0ce3,\n\t0x806: 0x14a3, 0x807: 0x0833, 0x808: 0x0d2f, 0x809: 0x0d3b, 0x80a: 0x0e0f, 0x80b: 0x0e47,\n\t0x80c: 0x0f4b, 0x80d: 0x0fa7, 0x80e: 0x1027, 0x80f: 0x110b, 0x810: 0x153b, 0x811: 0x07af,\n\t0x812: 0x0c03, 0x813: 0x14b3, 0x814: 0x0767, 0x815: 0x0aab, 0x816: 0x0e2f, 0x817: 0x13df,\n\t0x818: 0x0b67, 0x819: 0x0bb7, 0x81a: 0x0d43, 0x81b: 0x0f2f, 0x81c: 0x14bb, 0x81d: 0x0817,\n\t0x81e: 0x08ff, 0x81f: 0x0a97, 0x820: 0x0cd3, 0x821: 0x0d1f, 0x822: 0x0d5f, 0x823: 0x0df3,\n\t0x824: 0x0f47, 0x825: 0x0fbb, 0x826: 0x1157, 0x827: 0x12f7, 0x828: 0x1303, 0x829: 0x1457,\n\t0x82a: 0x14d7, 0x82b: 0x0883, 0x82c: 0x0e4b, 0x82d: 0x0903, 0x82e: 0x0ec7, 0x82f: 0x0f6b,\n\t0x830: 0x1287, 0x831: 0x14bf, 0x832: 0x15ab, 0x833: 0x15d3, 0x834: 0x0d37, 0x835: 0x0e27,\n\t0x836: 0x11c3, 0x837: 0x10b7, 0x838: 0x10c3, 0x839: 0x10e7, 0x83a: 0x0f17, 0x83b: 0x0e9f,\n\t0x83c: 0x1363, 0x83d: 0x0733, 0x83e: 0x122b, 0x83f: 0x081b,\n\t// Block 0x21, offset 0x840\n\t0x840: 0x080b, 0x841: 0x0b0b, 0x842: 0x0c2b, 0x843: 0x10f3, 0x844: 0x0a53, 0x845: 0x0e03,\n\t0x846: 0x0cef, 0x847: 0x13e7, 0x848: 0x12e7, 0x849: 0x14ab, 0x84a: 0x1323, 0x84b: 0x0b27,\n\t0x84c: 0x0787, 0x84d: 0x095b, 0x850: 0x09af,\n\t0x852: 0x0cdf, 0x855: 0x07f7, 0x856: 0x0f1f, 0x857: 0x0fe3,\n\t0x858: 0x1047, 0x859: 0x1063, 0x85a: 0x1067, 0x85b: 0x107b, 0x85c: 0x14fb, 0x85d: 0x10eb,\n\t0x85e: 0x116f, 0x860: 0x128f, 0x862: 0x1353,\n\t0x865: 0x1407, 0x866: 0x1433,\n\t0x86a: 0x154f, 0x86b: 0x1553, 0x86c: 0x1557, 0x86d: 0x15bb, 0x86e: 0x142b, 0x86f: 0x14c7,\n\t0x870: 0x0757, 0x871: 0x077b, 0x872: 0x078f, 0x873: 0x084b, 0x874: 0x0857, 0x875: 0x0897,\n\t0x876: 0x094b, 0x877: 0x0967, 0x878: 0x096f, 0x879: 0x09ab, 0x87a: 0x09b7, 0x87b: 0x0a93,\n\t0x87c: 0x0a9b, 0x87d: 0x0ba3, 0x87e: 0x0bcb, 0x87f: 0x0bd3,\n\t// Block 0x22, offset 0x880\n\t0x880: 0x0beb, 0x881: 0x0c97, 0x882: 0x0cc7, 0x883: 0x0ce7, 0x884: 0x0d57, 0x885: 0x0e1b,\n\t0x886: 0x0e37, 0x887: 0x0e67, 0x888: 0x0ebb, 0x889: 0x0edb, 0x88a: 0x0f4f, 0x88b: 0x102f,\n\t0x88c: 0x104b, 0x88d: 0x1053, 0x88e: 0x104f, 0x88f: 0x1057, 0x890: 0x105b, 0x891: 0x105f,\n\t0x892: 0x1073, 0x893: 0x1077, 0x894: 0x109b, 0x895: 0x10af, 0x896: 0x10cb, 0x897: 0x112f,\n\t0x898: 0x1137, 0x899: 0x113f, 0x89a: 0x1153, 0x89b: 0x117b, 0x89c: 0x11cb, 0x89d: 0x11ff,\n\t0x89e: 0x11ff, 0x89f: 0x1267, 0x8a0: 0x130f, 0x8a1: 0x1327, 0x8a2: 0x135b, 0x8a3: 0x135f,\n\t0x8a4: 0x13a3, 0x8a5: 0x13a7, 0x8a6: 0x13ff, 0x8a7: 0x1407, 0x8a8: 0x14db, 0x8a9: 0x151f,\n\t0x8aa: 0x1537, 0x8ab: 0x0b9b, 0x8ac: 0x171e, 0x8ad: 0x11e3,\n\t0x8b0: 0x06df, 0x8b1: 0x07e3, 0x8b2: 0x07a3, 0x8b3: 0x074b, 0x8b4: 0x078b, 0x8b5: 0x07b7,\n\t0x8b6: 0x0847, 0x8b7: 0x0863, 0x8b8: 0x094b, 0x8b9: 0x0937, 0x8ba: 0x0947, 0x8bb: 0x0963,\n\t0x8bc: 0x09af, 0x8bd: 0x09bf, 0x8be: 0x0a03, 0x8bf: 0x0a0f,\n\t// Block 0x23, offset 0x8c0\n\t0x8c0: 0x0a2b, 0x8c1: 0x0a3b, 0x8c2: 0x0b23, 0x8c3: 0x0b2b, 0x8c4: 0x0b5b, 0x8c5: 0x0b7b,\n\t0x8c6: 0x0bab, 0x8c7: 0x0bc3, 0x8c8: 0x0bb3, 0x8c9: 0x0bd3, 0x8ca: 0x0bc7, 0x8cb: 0x0beb,\n\t0x8cc: 0x0c07, 0x8cd: 0x0c5f, 0x8ce: 0x0c6b, 0x8cf: 0x0c73, 0x8d0: 0x0c9b, 0x8d1: 0x0cdf,\n\t0x8d2: 0x0d0f, 0x8d3: 0x0d13, 0x8d4: 0x0d27, 0x8d5: 0x0da7, 0x8d6: 0x0db7, 0x8d7: 0x0e0f,\n\t0x8d8: 0x0e5b, 0x8d9: 0x0e53, 0x8da: 0x0e67, 0x8db: 0x0e83, 0x8dc: 0x0ebb, 0x8dd: 0x1013,\n\t0x8de: 0x0edf, 0x8df: 0x0f13, 0x8e0: 0x0f1f, 0x8e1: 0x0f5f, 0x8e2: 0x0f7b, 0x8e3: 0x0f9f,\n\t0x8e4: 0x0fc3, 0x8e5: 0x0fc7, 0x8e6: 0x0fe3, 0x8e7: 0x0fe7, 0x8e8: 0x0ff7, 0x8e9: 0x100b,\n\t0x8ea: 0x1007, 0x8eb: 0x1037, 0x8ec: 0x10b3, 0x8ed: 0x10cb, 0x8ee: 0x10e3, 0x8ef: 0x111b,\n\t0x8f0: 0x112f, 0x8f1: 0x114b, 0x8f2: 0x117b, 0x8f3: 0x122f, 0x8f4: 0x1257, 0x8f5: 0x12cb,\n\t0x8f6: 0x1313, 0x8f7: 0x131f, 0x8f8: 0x1327, 0x8f9: 0x133f, 0x8fa: 0x1353, 0x8fb: 0x1343,\n\t0x8fc: 0x135b, 0x8fd: 0x1357, 0x8fe: 0x134f, 0x8ff: 0x135f,\n\t// Block 0x24, offset 0x900\n\t0x900: 0x136b, 0x901: 0x13a7, 0x902: 0x13e3, 0x903: 0x1413, 0x904: 0x144b, 0x905: 0x146b,\n\t0x906: 0x14b7, 0x907: 0x14db, 0x908: 0x14fb, 0x909: 0x150f, 0x90a: 0x151f, 0x90b: 0x152b,\n\t0x90c: 0x1537, 0x90d: 0x158b, 0x90e: 0x162b, 0x90f: 0x16b5, 0x910: 0x16b0, 0x911: 0x16e2,\n\t0x912: 0x0607, 0x913: 0x062f, 0x914: 0x0633, 0x915: 0x1764, 0x916: 0x1791, 0x917: 0x1809,\n\t0x918: 0x1617, 0x919: 0x1627,\n\t// Block 0x25, offset 0x940\n\t0x940: 0x06fb, 0x941: 0x06f3, 0x942: 0x0703, 0x943: 0x1647, 0x944: 0x0747, 0x945: 0x0757,\n\t0x946: 0x075b, 0x947: 0x0763, 0x948: 0x076b, 0x949: 0x076f, 0x94a: 0x077b, 0x94b: 0x0773,\n\t0x94c: 0x05b3, 0x94d: 0x165b, 0x94e: 0x078f, 0x94f: 0x0793, 0x950: 0x0797, 0x951: 0x07b3,\n\t0x952: 0x164c, 0x953: 0x05b7, 0x954: 0x079f, 0x955: 0x07bf, 0x956: 0x1656, 0x957: 0x07cf,\n\t0x958: 0x07d7, 0x959: 0x0737, 0x95a: 0x07df, 0x95b: 0x07e3, 0x95c: 0x1831, 0x95d: 0x07ff,\n\t0x95e: 0x0807, 0x95f: 0x05bf, 0x960: 0x081f, 0x961: 0x0823, 0x962: 0x082b, 0x963: 0x082f,\n\t0x964: 0x05c3, 0x965: 0x0847, 0x966: 0x084b, 0x967: 0x0857, 0x968: 0x0863, 0x969: 0x0867,\n\t0x96a: 0x086b, 0x96b: 0x0873, 0x96c: 0x0893, 0x96d: 0x0897, 0x96e: 0x089f, 0x96f: 0x08af,\n\t0x970: 0x08b7, 0x971: 0x08bb, 0x972: 0x08bb, 0x973: 0x08bb, 0x974: 0x166a, 0x975: 0x0e93,\n\t0x976: 0x08cf, 0x977: 0x08d7, 0x978: 0x166f, 0x979: 0x08e3, 0x97a: 0x08eb, 0x97b: 0x08f3,\n\t0x97c: 0x091b, 0x97d: 0x0907, 0x97e: 0x0913, 0x97f: 0x0917,\n\t// Block 0x26, offset 0x980\n\t0x980: 0x091f, 0x981: 0x0927, 0x982: 0x092b, 0x983: 0x0933, 0x984: 0x093b, 0x985: 0x093f,\n\t0x986: 0x093f, 0x987: 0x0947, 0x988: 0x094f, 0x989: 0x0953, 0x98a: 0x095f, 0x98b: 0x0983,\n\t0x98c: 0x0967, 0x98d: 0x0987, 0x98e: 0x096b, 0x98f: 0x0973, 0x990: 0x080b, 0x991: 0x09cf,\n\t0x992: 0x0997, 0x993: 0x099b, 0x994: 0x099f, 0x995: 0x0993, 0x996: 0x09a7, 0x997: 0x09a3,\n\t0x998: 0x09bb, 0x999: 0x1674, 0x99a: 0x09d7, 0x99b: 0x09db, 0x99c: 0x09e3, 0x99d: 0x09ef,\n\t0x99e: 0x09f7, 0x99f: 0x0a13, 0x9a0: 0x1679, 0x9a1: 0x167e, 0x9a2: 0x0a1f, 0x9a3: 0x0a23,\n\t0x9a4: 0x0a27, 0x9a5: 0x0a1b, 0x9a6: 0x0a2f, 0x9a7: 0x05c7, 0x9a8: 0x05cb, 0x9a9: 0x0a37,\n\t0x9aa: 0x0a3f, 0x9ab: 0x0a3f, 0x9ac: 0x1683, 0x9ad: 0x0a5b, 0x9ae: 0x0a5f, 0x9af: 0x0a63,\n\t0x9b0: 0x0a6b, 0x9b1: 0x1688, 0x9b2: 0x0a73, 0x9b3: 0x0a77, 0x9b4: 0x0b4f, 0x9b5: 0x0a7f,\n\t0x9b6: 0x05cf, 0x9b7: 0x0a8b, 0x9b8: 0x0a9b, 0x9b9: 0x0aa7, 0x9ba: 0x0aa3, 0x9bb: 0x1692,\n\t0x9bc: 0x0aaf, 0x9bd: 0x1697, 0x9be: 0x0abb, 0x9bf: 0x0ab7,\n\t// Block 0x27, offset 0x9c0\n\t0x9c0: 0x0abf, 0x9c1: 0x0acf, 0x9c2: 0x0ad3, 0x9c3: 0x05d3, 0x9c4: 0x0ae3, 0x9c5: 0x0aeb,\n\t0x9c6: 0x0aef, 0x9c7: 0x0af3, 0x9c8: 0x05d7, 0x9c9: 0x169c, 0x9ca: 0x05db, 0x9cb: 0x0b0f,\n\t0x9cc: 0x0b13, 0x9cd: 0x0b17, 0x9ce: 0x0b1f, 0x9cf: 0x1863, 0x9d0: 0x0b37, 0x9d1: 0x16a6,\n\t0x9d2: 0x16a6, 0x9d3: 0x11d7, 0x9d4: 0x0b47, 0x9d5: 0x0b47, 0x9d6: 0x05df, 0x9d7: 0x16c9,\n\t0x9d8: 0x179b, 0x9d9: 0x0b57, 0x9da: 0x0b5f, 0x9db: 0x05e3, 0x9dc: 0x0b73, 0x9dd: 0x0b83,\n\t0x9de: 0x0b87, 0x9df: 0x0b8f, 0x9e0: 0x0b9f, 0x9e1: 0x05eb, 0x9e2: 0x05e7, 0x9e3: 0x0ba3,\n\t0x9e4: 0x16ab, 0x9e5: 0x0ba7, 0x9e6: 0x0bbb, 0x9e7: 0x0bbf, 0x9e8: 0x0bc3, 0x9e9: 0x0bbf,\n\t0x9ea: 0x0bcf, 0x9eb: 0x0bd3, 0x9ec: 0x0be3, 0x9ed: 0x0bdb, 0x9ee: 0x0bdf, 0x9ef: 0x0be7,\n\t0x9f0: 0x0beb, 0x9f1: 0x0bef, 0x9f2: 0x0bfb, 0x9f3: 0x0bff, 0x9f4: 0x0c17, 0x9f5: 0x0c1f,\n\t0x9f6: 0x0c2f, 0x9f7: 0x0c43, 0x9f8: 0x16ba, 0x9f9: 0x0c3f, 0x9fa: 0x0c33, 0x9fb: 0x0c4b,\n\t0x9fc: 0x0c53, 0x9fd: 0x0c67, 0x9fe: 0x16bf, 0x9ff: 0x0c6f,\n\t// Block 0x28, offset 0xa00\n\t0xa00: 0x0c63, 0xa01: 0x0c5b, 0xa02: 0x05ef, 0xa03: 0x0c77, 0xa04: 0x0c7f, 0xa05: 0x0c87,\n\t0xa06: 0x0c7b, 0xa07: 0x05f3, 0xa08: 0x0c97, 0xa09: 0x0c9f, 0xa0a: 0x16c4, 0xa0b: 0x0ccb,\n\t0xa0c: 0x0cff, 0xa0d: 0x0cdb, 0xa0e: 0x05ff, 0xa0f: 0x0ce7, 0xa10: 0x05fb, 0xa11: 0x05f7,\n\t0xa12: 0x07c3, 0xa13: 0x07c7, 0xa14: 0x0d03, 0xa15: 0x0ceb, 0xa16: 0x11ab, 0xa17: 0x0663,\n\t0xa18: 0x0d0f, 0xa19: 0x0d13, 0xa1a: 0x0d17, 0xa1b: 0x0d2b, 0xa1c: 0x0d23, 0xa1d: 0x16dd,\n\t0xa1e: 0x0603, 0xa1f: 0x0d3f, 0xa20: 0x0d33, 0xa21: 0x0d4f, 0xa22: 0x0d57, 0xa23: 0x16e7,\n\t0xa24: 0x0d5b, 0xa25: 0x0d47, 0xa26: 0x0d63, 0xa27: 0x0607, 0xa28: 0x0d67, 0xa29: 0x0d6b,\n\t0xa2a: 0x0d6f, 0xa2b: 0x0d7b, 0xa2c: 0x16ec, 0xa2d: 0x0d83, 0xa2e: 0x060b, 0xa2f: 0x0d8f,\n\t0xa30: 0x16f1, 0xa31: 0x0d93, 0xa32: 0x060f, 0xa33: 0x0d9f, 0xa34: 0x0dab, 0xa35: 0x0db7,\n\t0xa36: 0x0dbb, 0xa37: 0x16f6, 0xa38: 0x168d, 0xa39: 0x16fb, 0xa3a: 0x0ddb, 0xa3b: 0x1700,\n\t0xa3c: 0x0de7, 0xa3d: 0x0def, 0xa3e: 0x0ddf, 0xa3f: 0x0dfb,\n\t// Block 0x29, offset 0xa40\n\t0xa40: 0x0e0b, 0xa41: 0x0e1b, 0xa42: 0x0e0f, 0xa43: 0x0e13, 0xa44: 0x0e1f, 0xa45: 0x0e23,\n\t0xa46: 0x1705, 0xa47: 0x0e07, 0xa48: 0x0e3b, 0xa49: 0x0e3f, 0xa4a: 0x0613, 0xa4b: 0x0e53,\n\t0xa4c: 0x0e4f, 0xa4d: 0x170a, 0xa4e: 0x0e33, 0xa4f: 0x0e6f, 0xa50: 0x170f, 0xa51: 0x1714,\n\t0xa52: 0x0e73, 0xa53: 0x0e87, 0xa54: 0x0e83, 0xa55: 0x0e7f, 0xa56: 0x0617, 0xa57: 0x0e8b,\n\t0xa58: 0x0e9b, 0xa59: 0x0e97, 0xa5a: 0x0ea3, 0xa5b: 0x1651, 0xa5c: 0x0eb3, 0xa5d: 0x1719,\n\t0xa5e: 0x0ebf, 0xa5f: 0x1723, 0xa60: 0x0ed3, 0xa61: 0x0edf, 0xa62: 0x0ef3, 0xa63: 0x1728,\n\t0xa64: 0x0f07, 0xa65: 0x0f0b, 0xa66: 0x172d, 0xa67: 0x1732, 0xa68: 0x0f27, 0xa69: 0x0f37,\n\t0xa6a: 0x061b, 0xa6b: 0x0f3b, 0xa6c: 0x061f, 0xa6d: 0x061f, 0xa6e: 0x0f53, 0xa6f: 0x0f57,\n\t0xa70: 0x0f5f, 0xa71: 0x0f63, 0xa72: 0x0f6f, 0xa73: 0x0623, 0xa74: 0x0f87, 0xa75: 0x1737,\n\t0xa76: 0x0fa3, 0xa77: 0x173c, 0xa78: 0x0faf, 0xa79: 0x16a1, 0xa7a: 0x0fbf, 0xa7b: 0x1741,\n\t0xa7c: 0x1746, 0xa7d: 0x174b, 0xa7e: 0x0627, 0xa7f: 0x062b,\n\t// Block 0x2a, offset 0xa80\n\t0xa80: 0x0ff7, 0xa81: 0x1755, 0xa82: 0x1750, 0xa83: 0x175a, 0xa84: 0x175f, 0xa85: 0x0fff,\n\t0xa86: 0x1003, 0xa87: 0x1003, 0xa88: 0x100b, 0xa89: 0x0633, 0xa8a: 0x100f, 0xa8b: 0x0637,\n\t0xa8c: 0x063b, 0xa8d: 0x1769, 0xa8e: 0x1023, 0xa8f: 0x102b, 0xa90: 0x1037, 0xa91: 0x063f,\n\t0xa92: 0x176e, 0xa93: 0x105b, 0xa94: 0x1773, 0xa95: 0x1778, 0xa96: 0x107b, 0xa97: 0x1093,\n\t0xa98: 0x0643, 0xa99: 0x109b, 0xa9a: 0x109f, 0xa9b: 0x10a3, 0xa9c: 0x177d, 0xa9d: 0x1782,\n\t0xa9e: 0x1782, 0xa9f: 0x10bb, 0xaa0: 0x0647, 0xaa1: 0x1787, 0xaa2: 0x10cf, 0xaa3: 0x10d3,\n\t0xaa4: 0x064b, 0xaa5: 0x178c, 0xaa6: 0x10ef, 0xaa7: 0x064f, 0xaa8: 0x10ff, 0xaa9: 0x10f7,\n\t0xaaa: 0x1107, 0xaab: 0x1796, 0xaac: 0x111f, 0xaad: 0x0653, 0xaae: 0x112b, 0xaaf: 0x1133,\n\t0xab0: 0x1143, 0xab1: 0x0657, 0xab2: 0x17a0, 0xab3: 0x17a5, 0xab4: 0x065b, 0xab5: 0x17aa,\n\t0xab6: 0x115b, 0xab7: 0x17af, 0xab8: 0x1167, 0xab9: 0x1173, 0xaba: 0x117b, 0xabb: 0x17b4,\n\t0xabc: 0x17b9, 0xabd: 0x118f, 0xabe: 0x17be, 0xabf: 0x1197,\n\t// Block 0x2b, offset 0xac0\n\t0xac0: 0x16ce, 0xac1: 0x065f, 0xac2: 0x11af, 0xac3: 0x11b3, 0xac4: 0x0667, 0xac5: 0x11b7,\n\t0xac6: 0x0a33, 0xac7: 0x17c3, 0xac8: 0x17c8, 0xac9: 0x16d3, 0xaca: 0x16d8, 0xacb: 0x11d7,\n\t0xacc: 0x11db, 0xacd: 0x13f3, 0xace: 0x066b, 0xacf: 0x1207, 0xad0: 0x1203, 0xad1: 0x120b,\n\t0xad2: 0x083f, 0xad3: 0x120f, 0xad4: 0x1213, 0xad5: 0x1217, 0xad6: 0x121f, 0xad7: 0x17cd,\n\t0xad8: 0x121b, 0xad9: 0x1223, 0xada: 0x1237, 0xadb: 0x123b, 0xadc: 0x1227, 0xadd: 0x123f,\n\t0xade: 0x1253, 0xadf: 0x1267, 0xae0: 0x1233, 0xae1: 0x1247, 0xae2: 0x124b, 0xae3: 0x124f,\n\t0xae4: 0x17d2, 0xae5: 0x17dc, 0xae6: 0x17d7, 0xae7: 0x066f, 0xae8: 0x126f, 0xae9: 0x1273,\n\t0xaea: 0x127b, 0xaeb: 0x17f0, 0xaec: 0x127f, 0xaed: 0x17e1, 0xaee: 0x0673, 0xaef: 0x0677,\n\t0xaf0: 0x17e6, 0xaf1: 0x17eb, 0xaf2: 0x067b, 0xaf3: 0x129f, 0xaf4: 0x12a3, 0xaf5: 0x12a7,\n\t0xaf6: 0x12ab, 0xaf7: 0x12b7, 0xaf8: 0x12b3, 0xaf9: 0x12bf, 0xafa: 0x12bb, 0xafb: 0x12cb,\n\t0xafc: 0x12c3, 0xafd: 0x12c7, 0xafe: 0x12cf, 0xaff: 0x067f,\n\t// Block 0x2c, offset 0xb00\n\t0xb00: 0x12d7, 0xb01: 0x12db, 0xb02: 0x0683, 0xb03: 0x12eb, 0xb04: 0x12ef, 0xb05: 0x17f5,\n\t0xb06: 0x12fb, 0xb07: 0x12ff, 0xb08: 0x0687, 0xb09: 0x130b, 0xb0a: 0x05bb, 0xb0b: 0x17fa,\n\t0xb0c: 0x17ff, 0xb0d: 0x068b, 0xb0e: 0x068f, 0xb0f: 0x1337, 0xb10: 0x134f, 0xb11: 0x136b,\n\t0xb12: 0x137b, 0xb13: 0x1804, 0xb14: 0x138f, 0xb15: 0x1393, 0xb16: 0x13ab, 0xb17: 0x13b7,\n\t0xb18: 0x180e, 0xb19: 0x1660, 0xb1a: 0x13c3, 0xb1b: 0x13bf, 0xb1c: 0x13cb, 0xb1d: 0x1665,\n\t0xb1e: 0x13d7, 0xb1f: 0x13e3, 0xb20: 0x1813, 0xb21: 0x1818, 0xb22: 0x1423, 0xb23: 0x142f,\n\t0xb24: 0x1437, 0xb25: 0x181d, 0xb26: 0x143b, 0xb27: 0x1467, 0xb28: 0x1473, 0xb29: 0x1477,\n\t0xb2a: 0x146f, 0xb2b: 0x1483, 0xb2c: 0x1487, 0xb2d: 0x1822, 0xb2e: 0x1493, 0xb2f: 0x0693,\n\t0xb30: 0x149b, 0xb31: 0x1827, 0xb32: 0x0697, 0xb33: 0x14d3, 0xb34: 0x0ac3, 0xb35: 0x14eb,\n\t0xb36: 0x182c, 0xb37: 0x1836, 0xb38: 0x069b, 0xb39: 0x069f, 0xb3a: 0x1513, 0xb3b: 0x183b,\n\t0xb3c: 0x06a3, 0xb3d: 0x1840, 0xb3e: 0x152b, 0xb3f: 0x152b,\n\t// Block 0x2d, offset 0xb40\n\t0xb40: 0x1533, 0xb41: 0x1845, 0xb42: 0x154b, 0xb43: 0x06a7, 0xb44: 0x155b, 0xb45: 0x1567,\n\t0xb46: 0x156f, 0xb47: 0x1577, 0xb48: 0x06ab, 0xb49: 0x184a, 0xb4a: 0x158b, 0xb4b: 0x15a7,\n\t0xb4c: 0x15b3, 0xb4d: 0x06af, 0xb4e: 0x06b3, 0xb4f: 0x15b7, 0xb50: 0x184f, 0xb51: 0x06b7,\n\t0xb52: 0x1854, 0xb53: 0x1859, 0xb54: 0x185e, 0xb55: 0x15db, 0xb56: 0x06bb, 0xb57: 0x15ef,\n\t0xb58: 0x15f7, 0xb59: 0x15fb, 0xb5a: 0x1603, 0xb5b: 0x160b, 0xb5c: 0x1613, 0xb5d: 0x1868,\n}\n\n// nfcIndex: 22 blocks, 1408 entries, 1408 bytes\n// Block 0 is the zero block.\nvar nfcIndex = [1408]uint8{\n\t// Block 0x0, offset 0x0\n\t// Block 0x1, offset 0x40\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc2: 0x2c, 0xc3: 0x01, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x2d, 0xc7: 0x04,\n\t0xc8: 0x05, 0xca: 0x2e, 0xcb: 0x2f, 0xcc: 0x06, 0xcd: 0x07, 0xce: 0x08, 0xcf: 0x30,\n\t0xd0: 0x09, 0xd1: 0x31, 0xd2: 0x32, 0xd3: 0x0a, 0xd6: 0x0b, 0xd7: 0x33,\n\t0xd8: 0x34, 0xd9: 0x0c, 0xdb: 0x35, 0xdc: 0x36, 0xdd: 0x37, 0xdf: 0x38,\n\t0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05,\n\t0xea: 0x06, 0xeb: 0x07, 0xec: 0x08, 0xed: 0x09, 0xef: 0x0a,\n\t0xf0: 0x13,\n\t// Block 0x4, offset 0x100\n\t0x120: 0x39, 0x121: 0x3a, 0x123: 0x3b, 0x124: 0x3c, 0x125: 0x3d, 0x126: 0x3e, 0x127: 0x3f,\n\t0x128: 0x40, 0x129: 0x41, 0x12a: 0x42, 0x12b: 0x43, 0x12c: 0x3e, 0x12d: 0x44, 0x12e: 0x45, 0x12f: 0x46,\n\t0x131: 0x47, 0x132: 0x48, 0x133: 0x49, 0x134: 0x4a, 0x135: 0x4b, 0x137: 0x4c,\n\t0x138: 0x4d, 0x139: 0x4e, 0x13a: 0x4f, 0x13b: 0x50, 0x13c: 0x51, 0x13d: 0x52, 0x13e: 0x53, 0x13f: 0x54,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x55, 0x142: 0x56, 0x144: 0x57, 0x145: 0x58, 0x146: 0x59, 0x147: 0x5a,\n\t0x14d: 0x5b,\n\t0x15c: 0x5c, 0x15f: 0x5d,\n\t0x162: 0x5e, 0x164: 0x5f,\n\t0x168: 0x60, 0x169: 0x61, 0x16a: 0x62, 0x16c: 0x0d, 0x16d: 0x63, 0x16e: 0x64, 0x16f: 0x65,\n\t0x170: 0x66, 0x173: 0x67, 0x177: 0x68,\n\t0x178: 0x0e, 0x179: 0x0f, 0x17a: 0x10, 0x17b: 0x11, 0x17c: 0x12, 0x17d: 0x13, 0x17e: 0x14, 0x17f: 0x15,\n\t// Block 0x6, offset 0x180\n\t0x180: 0x69, 0x183: 0x6a, 0x184: 0x6b, 0x186: 0x6c, 0x187: 0x6d,\n\t0x188: 0x6e, 0x189: 0x16, 0x18a: 0x17, 0x18b: 0x6f, 0x18c: 0x70,\n\t0x1ab: 0x71,\n\t0x1b3: 0x72, 0x1b5: 0x73, 0x1b7: 0x74,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x75, 0x1c1: 0x18, 0x1c2: 0x19, 0x1c3: 0x1a, 0x1c4: 0x76, 0x1c5: 0x77,\n\t0x1c9: 0x78, 0x1cc: 0x79, 0x1cd: 0x7a,\n\t// Block 0x8, offset 0x200\n\t0x219: 0x7b, 0x21a: 0x7c, 0x21b: 0x7d,\n\t0x220: 0x7e, 0x223: 0x7f, 0x224: 0x80, 0x225: 0x81, 0x226: 0x82, 0x227: 0x83,\n\t0x22a: 0x84, 0x22b: 0x85, 0x22f: 0x86,\n\t0x230: 0x87, 0x231: 0x88, 0x232: 0x89, 0x233: 0x8a, 0x234: 0x8b, 0x235: 0x8c, 0x236: 0x8d, 0x237: 0x87,\n\t0x238: 0x88, 0x239: 0x89, 0x23a: 0x8a, 0x23b: 0x8b, 0x23c: 0x8c, 0x23d: 0x8d, 0x23e: 0x87, 0x23f: 0x88,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x89, 0x241: 0x8a, 0x242: 0x8b, 0x243: 0x8c, 0x244: 0x8d, 0x245: 0x87, 0x246: 0x88, 0x247: 0x89,\n\t0x248: 0x8a, 0x249: 0x8b, 0x24a: 0x8c, 0x24b: 0x8d, 0x24c: 0x87, 0x24d: 0x88, 0x24e: 0x89, 0x24f: 0x8a,\n\t0x250: 0x8b, 0x251: 0x8c, 0x252: 0x8d, 0x253: 0x87, 0x254: 0x88, 0x255: 0x89, 0x256: 0x8a, 0x257: 0x8b,\n\t0x258: 0x8c, 0x259: 0x8d, 0x25a: 0x87, 0x25b: 0x88, 0x25c: 0x89, 0x25d: 0x8a, 0x25e: 0x8b, 0x25f: 0x8c,\n\t0x260: 0x8d, 0x261: 0x87, 0x262: 0x88, 0x263: 0x89, 0x264: 0x8a, 0x265: 0x8b, 0x266: 0x8c, 0x267: 0x8d,\n\t0x268: 0x87, 0x269: 0x88, 0x26a: 0x89, 0x26b: 0x8a, 0x26c: 0x8b, 0x26d: 0x8c, 0x26e: 0x8d, 0x26f: 0x87,\n\t0x270: 0x88, 0x271: 0x89, 0x272: 0x8a, 0x273: 0x8b, 0x274: 0x8c, 0x275: 0x8d, 0x276: 0x87, 0x277: 0x88,\n\t0x278: 0x89, 0x279: 0x8a, 0x27a: 0x8b, 0x27b: 0x8c, 0x27c: 0x8d, 0x27d: 0x87, 0x27e: 0x88, 0x27f: 0x89,\n\t// Block 0xa, offset 0x280\n\t0x280: 0x8a, 0x281: 0x8b, 0x282: 0x8c, 0x283: 0x8d, 0x284: 0x87, 0x285: 0x88, 0x286: 0x89, 0x287: 0x8a,\n\t0x288: 0x8b, 0x289: 0x8c, 0x28a: 0x8d, 0x28b: 0x87, 0x28c: 0x88, 0x28d: 0x89, 0x28e: 0x8a, 0x28f: 0x8b,\n\t0x290: 0x8c, 0x291: 0x8d, 0x292: 0x87, 0x293: 0x88, 0x294: 0x89, 0x295: 0x8a, 0x296: 0x8b, 0x297: 0x8c,\n\t0x298: 0x8d, 0x299: 0x87, 0x29a: 0x88, 0x29b: 0x89, 0x29c: 0x8a, 0x29d: 0x8b, 0x29e: 0x8c, 0x29f: 0x8d,\n\t0x2a0: 0x87, 0x2a1: 0x88, 0x2a2: 0x89, 0x2a3: 0x8a, 0x2a4: 0x8b, 0x2a5: 0x8c, 0x2a6: 0x8d, 0x2a7: 0x87,\n\t0x2a8: 0x88, 0x2a9: 0x89, 0x2aa: 0x8a, 0x2ab: 0x8b, 0x2ac: 0x8c, 0x2ad: 0x8d, 0x2ae: 0x87, 0x2af: 0x88,\n\t0x2b0: 0x89, 0x2b1: 0x8a, 0x2b2: 0x8b, 0x2b3: 0x8c, 0x2b4: 0x8d, 0x2b5: 0x87, 0x2b6: 0x88, 0x2b7: 0x89,\n\t0x2b8: 0x8a, 0x2b9: 0x8b, 0x2ba: 0x8c, 0x2bb: 0x8d, 0x2bc: 0x87, 0x2bd: 0x88, 0x2be: 0x89, 0x2bf: 0x8a,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0x8b, 0x2c1: 0x8c, 0x2c2: 0x8d, 0x2c3: 0x87, 0x2c4: 0x88, 0x2c5: 0x89, 0x2c6: 0x8a, 0x2c7: 0x8b,\n\t0x2c8: 0x8c, 0x2c9: 0x8d, 0x2ca: 0x87, 0x2cb: 0x88, 0x2cc: 0x89, 0x2cd: 0x8a, 0x2ce: 0x8b, 0x2cf: 0x8c,\n\t0x2d0: 0x8d, 0x2d1: 0x87, 0x2d2: 0x88, 0x2d3: 0x89, 0x2d4: 0x8a, 0x2d5: 0x8b, 0x2d6: 0x8c, 0x2d7: 0x8d,\n\t0x2d8: 0x87, 0x2d9: 0x88, 0x2da: 0x89, 0x2db: 0x8a, 0x2dc: 0x8b, 0x2dd: 0x8c, 0x2de: 0x8e,\n\t// Block 0xc, offset 0x300\n\t0x324: 0x1b, 0x325: 0x1c, 0x326: 0x1d, 0x327: 0x1e,\n\t0x328: 0x1f, 0x329: 0x20, 0x32a: 0x21, 0x32b: 0x22, 0x32c: 0x8f, 0x32d: 0x90, 0x32e: 0x91,\n\t0x331: 0x92, 0x332: 0x93, 0x333: 0x94, 0x334: 0x95,\n\t0x338: 0x96, 0x339: 0x97, 0x33a: 0x98, 0x33b: 0x99, 0x33e: 0x9a, 0x33f: 0x9b,\n\t// Block 0xd, offset 0x340\n\t0x347: 0x9c,\n\t0x34b: 0x9d, 0x34d: 0x9e,\n\t0x368: 0x9f, 0x36b: 0xa0,\n\t// Block 0xe, offset 0x380\n\t0x381: 0xa1, 0x382: 0xa2, 0x384: 0xa3, 0x385: 0x82, 0x387: 0xa4,\n\t0x388: 0xa5, 0x38b: 0xa6, 0x38c: 0x3e, 0x38d: 0xa7,\n\t0x391: 0xa8, 0x392: 0xa9, 0x393: 0xaa, 0x396: 0xab, 0x397: 0xac,\n\t0x398: 0x73, 0x39a: 0xad, 0x39c: 0xae,\n\t0x3b0: 0x73,\n\t// Block 0xf, offset 0x3c0\n\t0x3eb: 0xaf, 0x3ec: 0xb0,\n\t// Block 0x10, offset 0x400\n\t0x432: 0xb1,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xb2, 0x446: 0xb3, 0x447: 0xb4,\n\t0x449: 0xb5,\n\t// Block 0x12, offset 0x480\n\t0x480: 0xb6,\n\t0x4a3: 0xb7, 0x4a5: 0xb8,\n\t// Block 0x13, offset 0x4c0\n\t0x4c8: 0xb9,\n\t// Block 0x14, offset 0x500\n\t0x520: 0x23, 0x521: 0x24, 0x522: 0x25, 0x523: 0x26, 0x524: 0x27, 0x525: 0x28, 0x526: 0x29, 0x527: 0x2a,\n\t0x528: 0x2b,\n\t// Block 0x15, offset 0x540\n\t0x550: 0x0b, 0x551: 0x0c, 0x556: 0x0d,\n\t0x55b: 0x0e, 0x55d: 0x0f, 0x55e: 0x10, 0x55f: 0x11,\n\t0x56f: 0x12,\n}\n\n// nfcSparseOffset: 142 entries, 284 bytes\nvar nfcSparseOffset = []uint16{0x0, 0x5, 0x9, 0xb, 0xd, 0x18, 0x28, 0x2a, 0x2f, 0x3a, 0x49, 0x56, 0x5e, 0x62, 0x67, 0x69, 0x7a, 0x82, 0x89, 0x8c, 0x93, 0x97, 0x9b, 0x9d, 0x9f, 0xa8, 0xac, 0xb3, 0xb8, 0xbb, 0xc5, 0xc7, 0xce, 0xd6, 0xd9, 0xdb, 0xdd, 0xdf, 0xe4, 0xf5, 0x101, 0x103, 0x109, 0x10b, 0x10d, 0x10f, 0x111, 0x113, 0x115, 0x118, 0x11b, 0x11d, 0x120, 0x123, 0x127, 0x12c, 0x135, 0x137, 0x13a, 0x13c, 0x147, 0x157, 0x15b, 0x169, 0x16c, 0x172, 0x178, 0x183, 0x187, 0x189, 0x18b, 0x18d, 0x18f, 0x191, 0x197, 0x19b, 0x19d, 0x19f, 0x1a7, 0x1ab, 0x1ae, 0x1b0, 0x1b2, 0x1b4, 0x1b7, 0x1b9, 0x1bb, 0x1bd, 0x1bf, 0x1c5, 0x1c8, 0x1ca, 0x1d1, 0x1d7, 0x1dd, 0x1e5, 0x1eb, 0x1f1, 0x1f7, 0x1fb, 0x209, 0x212, 0x215, 0x218, 0x21a, 0x21d, 0x21f, 0x223, 0x228, 0x22a, 0x22c, 0x231, 0x237, 0x239, 0x23b, 0x23d, 0x243, 0x246, 0x249, 0x251, 0x258, 0x25b, 0x25e, 0x260, 0x268, 0x26b, 0x272, 0x275, 0x27b, 0x27d, 0x280, 0x282, 0x284, 0x286, 0x288, 0x295, 0x29f, 0x2a1, 0x2a3, 0x2a9, 0x2ab, 0x2ae}\n\n// nfcSparseValues: 688 entries, 2752 bytes\nvar nfcSparseValues = [688]valueRange{\n\t// Block 0x0, offset 0x0\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0xa100, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8100, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8100, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8100, lo: 0xb8, hi: 0xb8},\n\t// Block 0x1, offset 0x5\n\t{value: 0x0091, lo: 0x03},\n\t{value: 0x46e2, lo: 0xa0, hi: 0xa1},\n\t{value: 0x4714, lo: 0xaf, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb7, hi: 0xb7},\n\t// Block 0x2, offset 0x9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t// Block 0x3, offset 0xb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x98, hi: 0x9d},\n\t// Block 0x4, offset 0xd\n\t{value: 0x0006, lo: 0x0a},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x85, hi: 0x85},\n\t{value: 0xa000, lo: 0x89, hi: 0x89},\n\t{value: 0x4840, lo: 0x8a, hi: 0x8a},\n\t{value: 0x485e, lo: 0x8b, hi: 0x8b},\n\t{value: 0x36c7, lo: 0x8c, hi: 0x8c},\n\t{value: 0x36df, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4876, lo: 0x8e, hi: 0x8e},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x36fd, lo: 0x93, hi: 0x94},\n\t// Block 0x5, offset 0x18\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0xa000, lo: 0x8d, hi: 0x8d},\n\t{value: 0x37a5, lo: 0x90, hi: 0x90},\n\t{value: 0x37b1, lo: 0x91, hi: 0x91},\n\t{value: 0x379f, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x96, hi: 0x96},\n\t{value: 0x3817, lo: 0x97, hi: 0x97},\n\t{value: 0x37e1, lo: 0x9c, hi: 0x9c},\n\t{value: 0x37c9, lo: 0x9d, hi: 0x9d},\n\t{value: 0x37f3, lo: 0x9e, hi: 0x9e},\n\t{value: 0xa000, lo: 0xb4, hi: 0xb5},\n\t{value: 0x381d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x3823, lo: 0xb7, hi: 0xb7},\n\t// Block 0x6, offset 0x28\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x83, hi: 0x87},\n\t// Block 0x7, offset 0x2a\n\t{value: 0x0001, lo: 0x04},\n\t{value: 0x8113, lo: 0x81, hi: 0x82},\n\t{value: 0x8132, lo: 0x84, hi: 0x84},\n\t{value: 0x812d, lo: 0x85, hi: 0x85},\n\t{value: 0x810d, lo: 0x87, hi: 0x87},\n\t// Block 0x8, offset 0x2f\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x97},\n\t{value: 0x8119, lo: 0x98, hi: 0x98},\n\t{value: 0x811a, lo: 0x99, hi: 0x99},\n\t{value: 0x811b, lo: 0x9a, hi: 0x9a},\n\t{value: 0x3841, lo: 0xa2, hi: 0xa2},\n\t{value: 0x3847, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3853, lo: 0xa4, hi: 0xa4},\n\t{value: 0x384d, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3859, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xa7, hi: 0xa7},\n\t// Block 0x9, offset 0x3a\n\t{value: 0x0000, lo: 0x0e},\n\t{value: 0x386b, lo: 0x80, hi: 0x80},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0x385f, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x3865, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x95, hi: 0x95},\n\t{value: 0x8132, lo: 0x96, hi: 0x9c},\n\t{value: 0x8132, lo: 0x9f, hi: 0xa2},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8132, lo: 0xab, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t// Block 0xa, offset 0x49\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x811f, lo: 0x91, hi: 0x91},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x812d, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb5, hi: 0xb6},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb9},\n\t{value: 0x8132, lo: 0xba, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbc},\n\t{value: 0x8132, lo: 0xbd, hi: 0xbd},\n\t{value: 0x812d, lo: 0xbe, hi: 0xbe},\n\t{value: 0x8132, lo: 0xbf, hi: 0xbf},\n\t// Block 0xb, offset 0x56\n\t{value: 0x0005, lo: 0x07},\n\t{value: 0x8132, lo: 0x80, hi: 0x80},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x83},\n\t{value: 0x812d, lo: 0x84, hi: 0x85},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x812d, lo: 0x88, hi: 0x89},\n\t{value: 0x8132, lo: 0x8a, hi: 0x8a},\n\t// Block 0xc, offset 0x5e\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8132, lo: 0xab, hi: 0xb1},\n\t{value: 0x812d, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb3},\n\t// Block 0xd, offset 0x62\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0x96, hi: 0x99},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa7},\n\t{value: 0x8132, lo: 0xa9, hi: 0xad},\n\t// Block 0xe, offset 0x67\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x99, hi: 0x9b},\n\t// Block 0xf, offset 0x69\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x8132, lo: 0x94, hi: 0xa1},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8132, lo: 0xaa, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xaf},\n\t{value: 0x8116, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8117, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8118, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x812d, lo: 0xb9, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbf},\n\t// Block 0x10, offset 0x7a\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0xa8, hi: 0xa8},\n\t{value: 0x3ed8, lo: 0xa9, hi: 0xa9},\n\t{value: 0xa000, lo: 0xb0, hi: 0xb0},\n\t{value: 0x3ee0, lo: 0xb1, hi: 0xb1},\n\t{value: 0xa000, lo: 0xb3, hi: 0xb3},\n\t{value: 0x3ee8, lo: 0xb4, hi: 0xb4},\n\t{value: 0x9902, lo: 0xbc, hi: 0xbc},\n\t// Block 0x11, offset 0x82\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x91, hi: 0x91},\n\t{value: 0x812d, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x93, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x94},\n\t{value: 0x451c, lo: 0x98, hi: 0x9f},\n\t// Block 0x12, offset 0x89\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x13, offset 0x8c\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2c9e, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x455c, lo: 0x9c, hi: 0x9d},\n\t{value: 0x456c, lo: 0x9f, hi: 0x9f},\n\t// Block 0x14, offset 0x93\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4594, lo: 0xb3, hi: 0xb3},\n\t{value: 0x459c, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x15, offset 0x97\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4574, lo: 0x99, hi: 0x9b},\n\t{value: 0x458c, lo: 0x9e, hi: 0x9e},\n\t// Block 0x16, offset 0x9b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x17, offset 0x9d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t// Block 0x18, offset 0x9f\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2cb6, lo: 0x88, hi: 0x88},\n\t{value: 0x2cae, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cbe, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x96, hi: 0x97},\n\t{value: 0x45a4, lo: 0x9c, hi: 0x9c},\n\t{value: 0x45ac, lo: 0x9d, hi: 0x9d},\n\t// Block 0x19, offset 0xa8\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x2cc6, lo: 0x94, hi: 0x94},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1a, offset 0xac\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cce, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2cde, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cd6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1b, offset 0xb3\n\t{value: 0x1801, lo: 0x04},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x3ef0, lo: 0x88, hi: 0x88},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8120, lo: 0x95, hi: 0x96},\n\t// Block 0x1c, offset 0xb8\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0xa000, lo: 0xbf, hi: 0xbf},\n\t// Block 0x1d, offset 0xbb\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x2ce6, lo: 0x80, hi: 0x80},\n\t{value: 0x9900, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x2cee, lo: 0x87, hi: 0x87},\n\t{value: 0x2cf6, lo: 0x88, hi: 0x88},\n\t{value: 0x2f50, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2dd8, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x95, hi: 0x96},\n\t// Block 0x1e, offset 0xc5\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1f, offset 0xc7\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cfe, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2d0e, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d06, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x20, offset 0xce\n\t{value: 0x6bea, lo: 0x07},\n\t{value: 0x9904, lo: 0x8a, hi: 0x8a},\n\t{value: 0x9900, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x3ef8, lo: 0x9a, hi: 0x9a},\n\t{value: 0x2f58, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2de3, lo: 0x9d, hi: 0x9d},\n\t{value: 0x2d16, lo: 0x9e, hi: 0x9f},\n\t// Block 0x21, offset 0xd6\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8122, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x22, offset 0xd9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8123, lo: 0x88, hi: 0x8b},\n\t// Block 0x23, offset 0xdb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8124, lo: 0xb8, hi: 0xb9},\n\t// Block 0x24, offset 0xdd\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8125, lo: 0x88, hi: 0x8b},\n\t// Block 0x25, offset 0xdf\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x812d, lo: 0x98, hi: 0x99},\n\t{value: 0x812d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb7},\n\t{value: 0x812b, lo: 0xb9, hi: 0xb9},\n\t// Block 0x26, offset 0xe4\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x2644, lo: 0x83, hi: 0x83},\n\t{value: 0x264b, lo: 0x8d, hi: 0x8d},\n\t{value: 0x2652, lo: 0x92, hi: 0x92},\n\t{value: 0x2659, lo: 0x97, hi: 0x97},\n\t{value: 0x2660, lo: 0x9c, hi: 0x9c},\n\t{value: 0x263d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8126, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8127, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a84, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8128, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a8d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x45b4, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8200, lo: 0xb7, hi: 0xb7},\n\t{value: 0x45bc, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8200, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8127, lo: 0xba, hi: 0xbd},\n\t// Block 0x27, offset 0xf5\n\t{value: 0x0000, lo: 0x0b},\n\t{value: 0x8127, lo: 0x80, hi: 0x80},\n\t{value: 0x4a96, lo: 0x81, hi: 0x81},\n\t{value: 0x8132, lo: 0x82, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0x86, hi: 0x87},\n\t{value: 0x266e, lo: 0x93, hi: 0x93},\n\t{value: 0x2675, lo: 0x9d, hi: 0x9d},\n\t{value: 0x267c, lo: 0xa2, hi: 0xa2},\n\t{value: 0x2683, lo: 0xa7, hi: 0xa7},\n\t{value: 0x268a, lo: 0xac, hi: 0xac},\n\t{value: 0x2667, lo: 0xb9, hi: 0xb9},\n\t// Block 0x28, offset 0x101\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x86, hi: 0x86},\n\t// Block 0x29, offset 0x103\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x2d1e, lo: 0xa6, hi: 0xa6},\n\t{value: 0x9900, lo: 0xae, hi: 0xae},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x2a, offset 0x109\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t// Block 0x2b, offset 0x10b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x80, hi: 0x92},\n\t// Block 0x2c, offset 0x10d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xb900, lo: 0xa1, hi: 0xb5},\n\t// Block 0x2d, offset 0x10f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xa8, hi: 0xbf},\n\t// Block 0x2e, offset 0x111\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0x80, hi: 0x82},\n\t// Block 0x2f, offset 0x113\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9f},\n\t// Block 0x30, offset 0x115\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x94, hi: 0x94},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x31, offset 0x118\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9d},\n\t// Block 0x32, offset 0x11b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8131, lo: 0xa9, hi: 0xa9},\n\t// Block 0x33, offset 0x11d\n\t{value: 0x0004, lo: 0x02},\n\t{value: 0x812e, lo: 0xb9, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbb},\n\t// Block 0x34, offset 0x120\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x97, hi: 0x97},\n\t{value: 0x812d, lo: 0x98, hi: 0x98},\n\t// Block 0x35, offset 0x123\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8132, lo: 0xb5, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x36, offset 0x127\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t{value: 0x812d, lo: 0xb5, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x37, offset 0x12c\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0x2d66, lo: 0x80, hi: 0x80},\n\t{value: 0x2d6e, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x82, hi: 0x82},\n\t{value: 0x2d76, lo: 0x83, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xab, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xac},\n\t{value: 0x8132, lo: 0xad, hi: 0xb3},\n\t// Block 0x38, offset 0x135\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xaa, hi: 0xab},\n\t// Block 0x39, offset 0x137\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8104, lo: 0xb2, hi: 0xb3},\n\t// Block 0x3a, offset 0x13a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x3b, offset 0x13c\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x92},\n\t{value: 0x8101, lo: 0x94, hi: 0x94},\n\t{value: 0x812d, lo: 0x95, hi: 0x99},\n\t{value: 0x8132, lo: 0x9a, hi: 0x9b},\n\t{value: 0x812d, lo: 0x9c, hi: 0x9f},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8101, lo: 0xa2, hi: 0xa8},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t{value: 0x8132, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb9},\n\t// Block 0x3c, offset 0x147\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0x8132, lo: 0x80, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x82},\n\t{value: 0x8132, lo: 0x83, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8a},\n\t{value: 0x8132, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8135, lo: 0x8d, hi: 0x8d},\n\t{value: 0x812a, lo: 0x8e, hi: 0x8e},\n\t{value: 0x812d, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8129, lo: 0x90, hi: 0x90},\n\t{value: 0x8132, lo: 0x91, hi: 0xb5},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8134, lo: 0xbc, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbe},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x3d, offset 0x157\n\t{value: 0x0004, lo: 0x03},\n\t{value: 0x0433, lo: 0x80, hi: 0x81},\n\t{value: 0x8100, lo: 0x97, hi: 0x97},\n\t{value: 0x8100, lo: 0xbe, hi: 0xbe},\n\t// Block 0x3e, offset 0x15b\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x8132, lo: 0x90, hi: 0x91},\n\t{value: 0x8101, lo: 0x92, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x97},\n\t{value: 0x8101, lo: 0x98, hi: 0x9a},\n\t{value: 0x8132, lo: 0x9b, hi: 0x9c},\n\t{value: 0x8132, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8101, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa7},\n\t{value: 0x812d, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8132, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8101, lo: 0xaa, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t// Block 0x3f, offset 0x169\n\t{value: 0x427b, lo: 0x02},\n\t{value: 0x01b8, lo: 0xa6, hi: 0xa6},\n\t{value: 0x0057, lo: 0xaa, hi: 0xab},\n\t// Block 0x40, offset 0x16c\n\t{value: 0x0007, lo: 0x05},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t{value: 0x3bb9, lo: 0x9a, hi: 0x9b},\n\t{value: 0x3bc7, lo: 0xae, hi: 0xae},\n\t// Block 0x41, offset 0x172\n\t{value: 0x000e, lo: 0x05},\n\t{value: 0x3bce, lo: 0x8d, hi: 0x8e},\n\t{value: 0x3bd5, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t// Block 0x42, offset 0x178\n\t{value: 0x6408, lo: 0x0a},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0x3be3, lo: 0x84, hi: 0x84},\n\t{value: 0xa000, lo: 0x88, hi: 0x88},\n\t{value: 0x3bea, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0x3bf1, lo: 0x8c, hi: 0x8c},\n\t{value: 0xa000, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3bf8, lo: 0xa4, hi: 0xa5},\n\t{value: 0x3bff, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xbc, hi: 0xbc},\n\t// Block 0x43, offset 0x183\n\t{value: 0x0007, lo: 0x03},\n\t{value: 0x3c68, lo: 0xa0, hi: 0xa1},\n\t{value: 0x3c92, lo: 0xa2, hi: 0xa3},\n\t{value: 0x3cbc, lo: 0xaa, hi: 0xad},\n\t// Block 0x44, offset 0x187\n\t{value: 0x0004, lo: 0x01},\n\t{value: 0x048b, lo: 0xa9, hi: 0xaa},\n\t// Block 0x45, offset 0x189\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x44dd, lo: 0x9c, hi: 0x9c},\n\t// Block 0x46, offset 0x18b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xaf, hi: 0xb1},\n\t// Block 0x47, offset 0x18d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x48, offset 0x18f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa0, hi: 0xbf},\n\t// Block 0x49, offset 0x191\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x812c, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8131, lo: 0xab, hi: 0xab},\n\t{value: 0x8133, lo: 0xac, hi: 0xac},\n\t{value: 0x812e, lo: 0xad, hi: 0xad},\n\t{value: 0x812f, lo: 0xae, hi: 0xaf},\n\t// Block 0x4a, offset 0x197\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4a9f, lo: 0xb3, hi: 0xb3},\n\t{value: 0x4a9f, lo: 0xb5, hi: 0xb6},\n\t{value: 0x4a9f, lo: 0xba, hi: 0xbf},\n\t// Block 0x4b, offset 0x19b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x4a9f, lo: 0x8f, hi: 0xa3},\n\t// Block 0x4c, offset 0x19d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xae, hi: 0xbe},\n\t// Block 0x4d, offset 0x19f\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0x8100, lo: 0x84, hi: 0x84},\n\t{value: 0x8100, lo: 0x87, hi: 0x87},\n\t{value: 0x8100, lo: 0x90, hi: 0x90},\n\t{value: 0x8100, lo: 0x9e, hi: 0x9e},\n\t{value: 0x8100, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8100, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8100, lo: 0xbb, hi: 0xbb},\n\t// Block 0x4e, offset 0x1a7\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8100, lo: 0x80, hi: 0x80},\n\t{value: 0x8100, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8100, lo: 0x8e, hi: 0x8e},\n\t// Block 0x4f, offset 0x1ab\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb4, hi: 0xbd},\n\t// Block 0x50, offset 0x1ae\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9f},\n\t// Block 0x51, offset 0x1b0\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb1},\n\t// Block 0x52, offset 0x1b2\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t// Block 0x53, offset 0x1b4\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xa0, hi: 0xb1},\n\t// Block 0x54, offset 0x1b7\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xab, hi: 0xad},\n\t// Block 0x55, offset 0x1b9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x93, hi: 0x93},\n\t// Block 0x56, offset 0x1bb\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb3, hi: 0xb3},\n\t// Block 0x57, offset 0x1bd\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t// Block 0x58, offset 0x1bf\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbf},\n\t// Block 0x59, offset 0x1c5\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t// Block 0x5a, offset 0x1c8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xad, hi: 0xad},\n\t// Block 0x5b, offset 0x1ca\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xe500, lo: 0x80, hi: 0x80},\n\t{value: 0xc600, lo: 0x81, hi: 0x9b},\n\t{value: 0xe500, lo: 0x9c, hi: 0x9c},\n\t{value: 0xc600, lo: 0x9d, hi: 0xb7},\n\t{value: 0xe500, lo: 0xb8, hi: 0xb8},\n\t{value: 0xc600, lo: 0xb9, hi: 0xbf},\n\t// Block 0x5c, offset 0x1d1\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x93},\n\t{value: 0xe500, lo: 0x94, hi: 0x94},\n\t{value: 0xc600, lo: 0x95, hi: 0xaf},\n\t{value: 0xe500, lo: 0xb0, hi: 0xb0},\n\t{value: 0xc600, lo: 0xb1, hi: 0xbf},\n\t// Block 0x5d, offset 0x1d7\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8b},\n\t{value: 0xe500, lo: 0x8c, hi: 0x8c},\n\t{value: 0xc600, lo: 0x8d, hi: 0xa7},\n\t{value: 0xe500, lo: 0xa8, hi: 0xa8},\n\t{value: 0xc600, lo: 0xa9, hi: 0xbf},\n\t// Block 0x5e, offset 0x1dd\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xc600, lo: 0x80, hi: 0x83},\n\t{value: 0xe500, lo: 0x84, hi: 0x84},\n\t{value: 0xc600, lo: 0x85, hi: 0x9f},\n\t{value: 0xe500, lo: 0xa0, hi: 0xa0},\n\t{value: 0xc600, lo: 0xa1, hi: 0xbb},\n\t{value: 0xe500, lo: 0xbc, hi: 0xbc},\n\t{value: 0xc600, lo: 0xbd, hi: 0xbf},\n\t// Block 0x5f, offset 0x1e5\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x97},\n\t{value: 0xe500, lo: 0x98, hi: 0x98},\n\t{value: 0xc600, lo: 0x99, hi: 0xb3},\n\t{value: 0xe500, lo: 0xb4, hi: 0xb4},\n\t{value: 0xc600, lo: 0xb5, hi: 0xbf},\n\t// Block 0x60, offset 0x1eb\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8f},\n\t{value: 0xe500, lo: 0x90, hi: 0x90},\n\t{value: 0xc600, lo: 0x91, hi: 0xab},\n\t{value: 0xe500, lo: 0xac, hi: 0xac},\n\t{value: 0xc600, lo: 0xad, hi: 0xbf},\n\t// Block 0x61, offset 0x1f1\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t{value: 0xe500, lo: 0xa4, hi: 0xa4},\n\t{value: 0xc600, lo: 0xa5, hi: 0xbf},\n\t// Block 0x62, offset 0x1f7\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t// Block 0x63, offset 0x1fb\n\t{value: 0x0006, lo: 0x0d},\n\t{value: 0x4390, lo: 0x9d, hi: 0x9d},\n\t{value: 0x8115, lo: 0x9e, hi: 0x9e},\n\t{value: 0x4402, lo: 0x9f, hi: 0x9f},\n\t{value: 0x43f0, lo: 0xaa, hi: 0xab},\n\t{value: 0x44f4, lo: 0xac, hi: 0xac},\n\t{value: 0x44fc, lo: 0xad, hi: 0xad},\n\t{value: 0x4348, lo: 0xae, hi: 0xb1},\n\t{value: 0x4366, lo: 0xb2, hi: 0xb4},\n\t{value: 0x437e, lo: 0xb5, hi: 0xb6},\n\t{value: 0x438a, lo: 0xb8, hi: 0xb8},\n\t{value: 0x4396, lo: 0xb9, hi: 0xbb},\n\t{value: 0x43ae, lo: 0xbc, hi: 0xbc},\n\t{value: 0x43b4, lo: 0xbe, hi: 0xbe},\n\t// Block 0x64, offset 0x209\n\t{value: 0x0006, lo: 0x08},\n\t{value: 0x43ba, lo: 0x80, hi: 0x81},\n\t{value: 0x43c6, lo: 0x83, hi: 0x84},\n\t{value: 0x43d8, lo: 0x86, hi: 0x89},\n\t{value: 0x43fc, lo: 0x8a, hi: 0x8a},\n\t{value: 0x4378, lo: 0x8b, hi: 0x8b},\n\t{value: 0x4360, lo: 0x8c, hi: 0x8c},\n\t{value: 0x43a8, lo: 0x8d, hi: 0x8d},\n\t{value: 0x43d2, lo: 0x8e, hi: 0x8e},\n\t// Block 0x65, offset 0x212\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0xa4, hi: 0xa5},\n\t{value: 0x8100, lo: 0xb0, hi: 0xb1},\n\t// Block 0x66, offset 0x215\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0x9b, hi: 0x9d},\n\t{value: 0x8200, lo: 0x9e, hi: 0xa3},\n\t// Block 0x67, offset 0x218\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x90, hi: 0x90},\n\t// Block 0x68, offset 0x21a\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8100, lo: 0x99, hi: 0x99},\n\t{value: 0x8200, lo: 0xb2, hi: 0xb4},\n\t// Block 0x69, offset 0x21d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xbc, hi: 0xbd},\n\t// Block 0x6a, offset 0x21f\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa6},\n\t{value: 0x812d, lo: 0xa7, hi: 0xad},\n\t{value: 0x8132, lo: 0xae, hi: 0xaf},\n\t// Block 0x6b, offset 0x223\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8100, lo: 0x89, hi: 0x8c},\n\t{value: 0x8100, lo: 0xb0, hi: 0xb2},\n\t{value: 0x8100, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8100, lo: 0xb6, hi: 0xbf},\n\t// Block 0x6c, offset 0x228\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x81, hi: 0x8c},\n\t// Block 0x6d, offset 0x22a\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0xb5, hi: 0xba},\n\t// Block 0x6e, offset 0x22c\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x4a9f, lo: 0x9e, hi: 0x9f},\n\t{value: 0x4a9f, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4a9f, lo: 0xa5, hi: 0xa6},\n\t{value: 0x4a9f, lo: 0xaa, hi: 0xaf},\n\t// Block 0x6f, offset 0x231\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x4a9f, lo: 0x82, hi: 0x87},\n\t{value: 0x4a9f, lo: 0x8a, hi: 0x8f},\n\t{value: 0x4a9f, lo: 0x92, hi: 0x97},\n\t{value: 0x4a9f, lo: 0x9a, hi: 0x9c},\n\t{value: 0x8100, lo: 0xa3, hi: 0xa3},\n\t// Block 0x70, offset 0x237\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x71, offset 0x239\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xa0, hi: 0xa0},\n\t// Block 0x72, offset 0x23b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb6, hi: 0xba},\n\t// Block 0x73, offset 0x23d\n\t{value: 0x002c, lo: 0x05},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8101, lo: 0xb9, hi: 0xba},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x74, offset 0x243\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t// Block 0x75, offset 0x246\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x76, offset 0x249\n\t{value: 0x17fe, lo: 0x07},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x4238, lo: 0x9a, hi: 0x9a},\n\t{value: 0xa000, lo: 0x9b, hi: 0x9b},\n\t{value: 0x4242, lo: 0x9c, hi: 0x9c},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x424c, lo: 0xab, hi: 0xab},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x77, offset 0x251\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0x8132, lo: 0x80, hi: 0x82},\n\t{value: 0x9900, lo: 0xa7, hi: 0xa7},\n\t{value: 0x2d7e, lo: 0xae, hi: 0xae},\n\t{value: 0x2d88, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb1, hi: 0xb2},\n\t{value: 0x8104, lo: 0xb3, hi: 0xb4},\n\t// Block 0x78, offset 0x258\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x79, offset 0x25b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb5, hi: 0xb5},\n\t{value: 0x8102, lo: 0xb6, hi: 0xb6},\n\t// Block 0x7a, offset 0x25e\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x8102, lo: 0xa9, hi: 0xaa},\n\t// Block 0x7b, offset 0x260\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2d92, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d9c, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x8132, lo: 0xa6, hi: 0xac},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t// Block 0x7c, offset 0x268\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x86, hi: 0x86},\n\t// Block 0x7d, offset 0x26b\n\t{value: 0x6b5a, lo: 0x06},\n\t{value: 0x9900, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb9, hi: 0xb9},\n\t{value: 0x9900, lo: 0xba, hi: 0xba},\n\t{value: 0x2db0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x2da6, lo: 0xbc, hi: 0xbd},\n\t{value: 0x2dba, lo: 0xbe, hi: 0xbe},\n\t// Block 0x7e, offset 0x272\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x83, hi: 0x83},\n\t// Block 0x7f, offset 0x275\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x9900, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb8, hi: 0xb9},\n\t{value: 0x2dc4, lo: 0xba, hi: 0xba},\n\t{value: 0x2dce, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x80, offset 0x27b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0x80, hi: 0x80},\n\t// Block 0x81, offset 0x27d\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x82, offset 0x280\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xab, hi: 0xab},\n\t// Block 0x83, offset 0x282\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0xb0, hi: 0xb4},\n\t// Block 0x84, offset 0x284\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb6},\n\t// Block 0x85, offset 0x286\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0x9e, hi: 0x9e},\n\t// Block 0x86, offset 0x288\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x45cc, lo: 0x9e, hi: 0x9e},\n\t{value: 0x45d6, lo: 0x9f, hi: 0x9f},\n\t{value: 0x460a, lo: 0xa0, hi: 0xa0},\n\t{value: 0x4618, lo: 0xa1, hi: 0xa1},\n\t{value: 0x4626, lo: 0xa2, hi: 0xa2},\n\t{value: 0x4634, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4642, lo: 0xa4, hi: 0xa4},\n\t{value: 0x812b, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8101, lo: 0xa7, hi: 0xa9},\n\t{value: 0x8130, lo: 0xad, hi: 0xad},\n\t{value: 0x812b, lo: 0xae, hi: 0xb2},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbf},\n\t// Block 0x87, offset 0x295\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x812d, lo: 0x80, hi: 0x82},\n\t{value: 0x8132, lo: 0x85, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8b},\n\t{value: 0x8132, lo: 0xaa, hi: 0xad},\n\t{value: 0x45e0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x45ea, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4650, lo: 0xbd, hi: 0xbd},\n\t{value: 0x466c, lo: 0xbe, hi: 0xbe},\n\t{value: 0x465e, lo: 0xbf, hi: 0xbf},\n\t// Block 0x88, offset 0x29f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x467a, lo: 0x80, hi: 0x80},\n\t// Block 0x89, offset 0x2a1\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x82, hi: 0x84},\n\t// Block 0x8a, offset 0x2a3\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0x80, hi: 0x86},\n\t{value: 0x8132, lo: 0x88, hi: 0x98},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa1},\n\t{value: 0x8132, lo: 0xa3, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa6, hi: 0xaa},\n\t// Block 0x8b, offset 0x2a9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x90, hi: 0x96},\n\t// Block 0x8c, offset 0x2ab\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x84, hi: 0x89},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x8d, offset 0x2ae\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8100, lo: 0x93, hi: 0x93},\n}\n\n// lookup returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfkcTrie) lookup(s []byte) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfkcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfkcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfkcTrie) lookupUnsafe(s []byte) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfkcValues[c0]\n\t}\n\ti := nfkcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// lookupString returns the trie value for the first UTF-8 encoding in s and\n// the width in bytes of this encoding. The size will be 0 if s does not\n// hold enough bytes to complete the encoding. len(s) must be greater than 0.\nfunc (t *nfkcTrie) lookupString(s string) (v uint16, sz int) {\n\tc0 := s[0]\n\tswitch {\n\tcase c0 < 0x80: // is ASCII\n\t\treturn nfkcValues[c0], 1\n\tcase c0 < 0xC2:\n\t\treturn 0, 1 // Illegal UTF-8: not a starter, not ASCII.\n\tcase c0 < 0xE0: // 2-byte UTF-8\n\t\tif len(s) < 2 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c1), 2\n\tcase c0 < 0xF0: // 3-byte UTF-8\n\t\tif len(s) < 3 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c2), 3\n\tcase c0 < 0xF8: // 4-byte UTF-8\n\t\tif len(s) < 4 {\n\t\t\treturn 0, 0\n\t\t}\n\t\ti := nfkcIndex[c0]\n\t\tc1 := s[1]\n\t\tif c1 < 0x80 || 0xC0 <= c1 {\n\t\t\treturn 0, 1 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to := uint32(i)<<6 + uint32(c1)\n\t\ti = nfkcIndex[o]\n\t\tc2 := s[2]\n\t\tif c2 < 0x80 || 0xC0 <= c2 {\n\t\t\treturn 0, 2 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\to = uint32(i)<<6 + uint32(c2)\n\t\ti = nfkcIndex[o]\n\t\tc3 := s[3]\n\t\tif c3 < 0x80 || 0xC0 <= c3 {\n\t\t\treturn 0, 3 // Illegal UTF-8: not a continuation byte.\n\t\t}\n\t\treturn t.lookupValue(uint32(i), c3), 4\n\t}\n\t// Illegal rune\n\treturn 0, 1\n}\n\n// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.\n// s must start with a full and valid UTF-8 encoded rune.\nfunc (t *nfkcTrie) lookupStringUnsafe(s string) uint16 {\n\tc0 := s[0]\n\tif c0 < 0x80 { // is ASCII\n\t\treturn nfkcValues[c0]\n\t}\n\ti := nfkcIndex[c0]\n\tif c0 < 0xE0 { // 2-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[1])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[1])]\n\tif c0 < 0xF0 { // 3-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[2])\n\t}\n\ti = nfkcIndex[uint32(i)<<6+uint32(s[2])]\n\tif c0 < 0xF8 { // 4-byte UTF-8\n\t\treturn t.lookupValue(uint32(i), s[3])\n\t}\n\treturn 0\n}\n\n// nfkcTrie. Total size: 16994 bytes (16.60 KiB). Checksum: c3ed54ee046f3c46.\ntype nfkcTrie struct{}\n\nfunc newNfkcTrie(i int) *nfkcTrie {\n\treturn &nfkcTrie{}\n}\n\n// lookupValue determines the type of block n and looks up the value for b.\nfunc (t *nfkcTrie) lookupValue(n uint32, b byte) uint16 {\n\tswitch {\n\tcase n < 90:\n\t\treturn uint16(nfkcValues[n<<6+uint32(b)])\n\tdefault:\n\t\tn -= 90\n\t\treturn uint16(nfkcSparse.lookup(n, b))\n\t}\n}\n\n// nfkcValues: 92 blocks, 5888 entries, 11776 bytes\n// The third block is the zero block.\nvar nfkcValues = [5888]uint16{\n\t// Block 0x0, offset 0x0\n\t0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,\n\t// Block 0x1, offset 0x40\n\t0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,\n\t0x46: 0xa000, 0x47: 0xa000, 0x48: 0xa000, 0x49: 0xa000, 0x4a: 0xa000, 0x4b: 0xa000,\n\t0x4c: 0xa000, 0x4d: 0xa000, 0x4e: 0xa000, 0x4f: 0xa000, 0x50: 0xa000,\n\t0x52: 0xa000, 0x53: 0xa000, 0x54: 0xa000, 0x55: 0xa000, 0x56: 0xa000, 0x57: 0xa000,\n\t0x58: 0xa000, 0x59: 0xa000, 0x5a: 0xa000,\n\t0x61: 0xa000, 0x62: 0xa000, 0x63: 0xa000,\n\t0x64: 0xa000, 0x65: 0xa000, 0x66: 0xa000, 0x67: 0xa000, 0x68: 0xa000, 0x69: 0xa000,\n\t0x6a: 0xa000, 0x6b: 0xa000, 0x6c: 0xa000, 0x6d: 0xa000, 0x6e: 0xa000, 0x6f: 0xa000,\n\t0x70: 0xa000, 0x72: 0xa000, 0x73: 0xa000, 0x74: 0xa000, 0x75: 0xa000,\n\t0x76: 0xa000, 0x77: 0xa000, 0x78: 0xa000, 0x79: 0xa000, 0x7a: 0xa000,\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc0: 0x2f6f, 0xc1: 0x2f74, 0xc2: 0x4688, 0xc3: 0x2f79, 0xc4: 0x4697, 0xc5: 0x469c,\n\t0xc6: 0xa000, 0xc7: 0x46a6, 0xc8: 0x2fe2, 0xc9: 0x2fe7, 0xca: 0x46ab, 0xcb: 0x2ffb,\n\t0xcc: 0x306e, 0xcd: 0x3073, 0xce: 0x3078, 0xcf: 0x46bf, 0xd1: 0x3104,\n\t0xd2: 0x3127, 0xd3: 0x312c, 0xd4: 0x46c9, 0xd5: 0x46ce, 0xd6: 0x46dd,\n\t0xd8: 0xa000, 0xd9: 0x31b3, 0xda: 0x31b8, 0xdb: 0x31bd, 0xdc: 0x470f, 0xdd: 0x3235,\n\t0xe0: 0x327b, 0xe1: 0x3280, 0xe2: 0x4719, 0xe3: 0x3285,\n\t0xe4: 0x4728, 0xe5: 0x472d, 0xe6: 0xa000, 0xe7: 0x4737, 0xe8: 0x32ee, 0xe9: 0x32f3,\n\t0xea: 0x473c, 0xeb: 0x3307, 0xec: 0x337f, 0xed: 0x3384, 0xee: 0x3389, 0xef: 0x4750,\n\t0xf1: 0x3415, 0xf2: 0x3438, 0xf3: 0x343d, 0xf4: 0x475a, 0xf5: 0x475f,\n\t0xf6: 0x476e, 0xf8: 0xa000, 0xf9: 0x34c9, 0xfa: 0x34ce, 0xfb: 0x34d3,\n\t0xfc: 0x47a0, 0xfd: 0x3550, 0xff: 0x3569,\n\t// Block 0x4, offset 0x100\n\t0x100: 0x2f7e, 0x101: 0x328a, 0x102: 0x468d, 0x103: 0x471e, 0x104: 0x2f9c, 0x105: 0x32a8,\n\t0x106: 0x2fb0, 0x107: 0x32bc, 0x108: 0x2fb5, 0x109: 0x32c1, 0x10a: 0x2fba, 0x10b: 0x32c6,\n\t0x10c: 0x2fbf, 0x10d: 0x32cb, 0x10e: 0x2fc9, 0x10f: 0x32d5,\n\t0x112: 0x46b0, 0x113: 0x4741, 0x114: 0x2ff1, 0x115: 0x32fd, 0x116: 0x2ff6, 0x117: 0x3302,\n\t0x118: 0x3014, 0x119: 0x3320, 0x11a: 0x3005, 0x11b: 0x3311, 0x11c: 0x302d, 0x11d: 0x3339,\n\t0x11e: 0x3037, 0x11f: 0x3343, 0x120: 0x303c, 0x121: 0x3348, 0x122: 0x3046, 0x123: 0x3352,\n\t0x124: 0x304b, 0x125: 0x3357, 0x128: 0x307d, 0x129: 0x338e,\n\t0x12a: 0x3082, 0x12b: 0x3393, 0x12c: 0x3087, 0x12d: 0x3398, 0x12e: 0x30aa, 0x12f: 0x33b6,\n\t0x130: 0x308c, 0x132: 0x195d, 0x133: 0x19e7, 0x134: 0x30b4, 0x135: 0x33c0,\n\t0x136: 0x30c8, 0x137: 0x33d9, 0x139: 0x30d2, 0x13a: 0x33e3, 0x13b: 0x30dc,\n\t0x13c: 0x33ed, 0x13d: 0x30d7, 0x13e: 0x33e8, 0x13f: 0x1bac,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x1c34, 0x143: 0x30ff, 0x144: 0x3410, 0x145: 0x3118,\n\t0x146: 0x3429, 0x147: 0x310e, 0x148: 0x341f, 0x149: 0x1c5c,\n\t0x14c: 0x46d3, 0x14d: 0x4764, 0x14e: 0x3131, 0x14f: 0x3442, 0x150: 0x313b, 0x151: 0x344c,\n\t0x154: 0x3159, 0x155: 0x346a, 0x156: 0x3172, 0x157: 0x3483,\n\t0x158: 0x3163, 0x159: 0x3474, 0x15a: 0x46f6, 0x15b: 0x4787, 0x15c: 0x317c, 0x15d: 0x348d,\n\t0x15e: 0x318b, 0x15f: 0x349c, 0x160: 0x46fb, 0x161: 0x478c, 0x162: 0x31a4, 0x163: 0x34ba,\n\t0x164: 0x3195, 0x165: 0x34ab, 0x168: 0x4705, 0x169: 0x4796,\n\t0x16a: 0x470a, 0x16b: 0x479b, 0x16c: 0x31c2, 0x16d: 0x34d8, 0x16e: 0x31cc, 0x16f: 0x34e2,\n\t0x170: 0x31d1, 0x171: 0x34e7, 0x172: 0x31ef, 0x173: 0x3505, 0x174: 0x3212, 0x175: 0x3528,\n\t0x176: 0x323a, 0x177: 0x3555, 0x178: 0x324e, 0x179: 0x325d, 0x17a: 0x357d, 0x17b: 0x3267,\n\t0x17c: 0x3587, 0x17d: 0x326c, 0x17e: 0x358c, 0x17f: 0x00a7,\n\t// Block 0x6, offset 0x180\n\t0x184: 0x2dee, 0x185: 0x2df4,\n\t0x186: 0x2dfa, 0x187: 0x1972, 0x188: 0x1975, 0x189: 0x1a08, 0x18a: 0x1987, 0x18b: 0x198a,\n\t0x18c: 0x1a3e, 0x18d: 0x2f88, 0x18e: 0x3294, 0x18f: 0x3096, 0x190: 0x33a2, 0x191: 0x3140,\n\t0x192: 0x3451, 0x193: 0x31d6, 0x194: 0x34ec, 0x195: 0x39cf, 0x196: 0x3b5e, 0x197: 0x39c8,\n\t0x198: 0x3b57, 0x199: 0x39d6, 0x19a: 0x3b65, 0x19b: 0x39c1, 0x19c: 0x3b50,\n\t0x19e: 0x38b0, 0x19f: 0x3a3f, 0x1a0: 0x38a9, 0x1a1: 0x3a38, 0x1a2: 0x35b3, 0x1a3: 0x35c5,\n\t0x1a6: 0x3041, 0x1a7: 0x334d, 0x1a8: 0x30be, 0x1a9: 0x33cf,\n\t0x1aa: 0x46ec, 0x1ab: 0x477d, 0x1ac: 0x3990, 0x1ad: 0x3b1f, 0x1ae: 0x35d7, 0x1af: 0x35dd,\n\t0x1b0: 0x33c5, 0x1b1: 0x1942, 0x1b2: 0x1945, 0x1b3: 0x19cf, 0x1b4: 0x3028, 0x1b5: 0x3334,\n\t0x1b8: 0x30fa, 0x1b9: 0x340b, 0x1ba: 0x38b7, 0x1bb: 0x3a46,\n\t0x1bc: 0x35ad, 0x1bd: 0x35bf, 0x1be: 0x35b9, 0x1bf: 0x35cb,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0x2f8d, 0x1c1: 0x3299, 0x1c2: 0x2f92, 0x1c3: 0x329e, 0x1c4: 0x300a, 0x1c5: 0x3316,\n\t0x1c6: 0x300f, 0x1c7: 0x331b, 0x1c8: 0x309b, 0x1c9: 0x33a7, 0x1ca: 0x30a0, 0x1cb: 0x33ac,\n\t0x1cc: 0x3145, 0x1cd: 0x3456, 0x1ce: 0x314a, 0x1cf: 0x345b, 0x1d0: 0x3168, 0x1d1: 0x3479,\n\t0x1d2: 0x316d, 0x1d3: 0x347e, 0x1d4: 0x31db, 0x1d5: 0x34f1, 0x1d6: 0x31e0, 0x1d7: 0x34f6,\n\t0x1d8: 0x3186, 0x1d9: 0x3497, 0x1da: 0x319f, 0x1db: 0x34b5,\n\t0x1de: 0x305a, 0x1df: 0x3366,\n\t0x1e6: 0x4692, 0x1e7: 0x4723, 0x1e8: 0x46ba, 0x1e9: 0x474b,\n\t0x1ea: 0x395f, 0x1eb: 0x3aee, 0x1ec: 0x393c, 0x1ed: 0x3acb, 0x1ee: 0x46d8, 0x1ef: 0x4769,\n\t0x1f0: 0x3958, 0x1f1: 0x3ae7, 0x1f2: 0x3244, 0x1f3: 0x355f,\n\t// Block 0x8, offset 0x200\n\t0x200: 0x9932, 0x201: 0x9932, 0x202: 0x9932, 0x203: 0x9932, 0x204: 0x9932, 0x205: 0x8132,\n\t0x206: 0x9932, 0x207: 0x9932, 0x208: 0x9932, 0x209: 0x9932, 0x20a: 0x9932, 0x20b: 0x9932,\n\t0x20c: 0x9932, 0x20d: 0x8132, 0x20e: 0x8132, 0x20f: 0x9932, 0x210: 0x8132, 0x211: 0x9932,\n\t0x212: 0x8132, 0x213: 0x9932, 0x214: 0x9932, 0x215: 0x8133, 0x216: 0x812d, 0x217: 0x812d,\n\t0x218: 0x812d, 0x219: 0x812d, 0x21a: 0x8133, 0x21b: 0x992b, 0x21c: 0x812d, 0x21d: 0x812d,\n\t0x21e: 0x812d, 0x21f: 0x812d, 0x220: 0x812d, 0x221: 0x8129, 0x222: 0x8129, 0x223: 0x992d,\n\t0x224: 0x992d, 0x225: 0x992d, 0x226: 0x992d, 0x227: 0x9929, 0x228: 0x9929, 0x229: 0x812d,\n\t0x22a: 0x812d, 0x22b: 0x812d, 0x22c: 0x812d, 0x22d: 0x992d, 0x22e: 0x992d, 0x22f: 0x812d,\n\t0x230: 0x992d, 0x231: 0x992d, 0x232: 0x812d, 0x233: 0x812d, 0x234: 0x8101, 0x235: 0x8101,\n\t0x236: 0x8101, 0x237: 0x8101, 0x238: 0x9901, 0x239: 0x812d, 0x23a: 0x812d, 0x23b: 0x812d,\n\t0x23c: 0x812d, 0x23d: 0x8132, 0x23e: 0x8132, 0x23f: 0x8132,\n\t// Block 0x9, offset 0x240\n\t0x240: 0x49ae, 0x241: 0x49b3, 0x242: 0x9932, 0x243: 0x49b8, 0x244: 0x4a71, 0x245: 0x9936,\n\t0x246: 0x8132, 0x247: 0x812d, 0x248: 0x812d, 0x249: 0x812d, 0x24a: 0x8132, 0x24b: 0x8132,\n\t0x24c: 0x8132, 0x24d: 0x812d, 0x24e: 0x812d, 0x250: 0x8132, 0x251: 0x8132,\n\t0x252: 0x8132, 0x253: 0x812d, 0x254: 0x812d, 0x255: 0x812d, 0x256: 0x812d, 0x257: 0x8132,\n\t0x258: 0x8133, 0x259: 0x812d, 0x25a: 0x812d, 0x25b: 0x8132, 0x25c: 0x8134, 0x25d: 0x8135,\n\t0x25e: 0x8135, 0x25f: 0x8134, 0x260: 0x8135, 0x261: 0x8135, 0x262: 0x8134, 0x263: 0x8132,\n\t0x264: 0x8132, 0x265: 0x8132, 0x266: 0x8132, 0x267: 0x8132, 0x268: 0x8132, 0x269: 0x8132,\n\t0x26a: 0x8132, 0x26b: 0x8132, 0x26c: 0x8132, 0x26d: 0x8132, 0x26e: 0x8132, 0x26f: 0x8132,\n\t0x274: 0x0170,\n\t0x27a: 0x42a5,\n\t0x27e: 0x0037,\n\t// Block 0xa, offset 0x280\n\t0x284: 0x425a, 0x285: 0x447b,\n\t0x286: 0x35e9, 0x287: 0x00ce, 0x288: 0x3607, 0x289: 0x3613, 0x28a: 0x3625,\n\t0x28c: 0x3643, 0x28e: 0x3655, 0x28f: 0x3673, 0x290: 0x3e08, 0x291: 0xa000,\n\t0x295: 0xa000, 0x297: 0xa000,\n\t0x299: 0xa000,\n\t0x29f: 0xa000, 0x2a1: 0xa000,\n\t0x2a5: 0xa000, 0x2a9: 0xa000,\n\t0x2aa: 0x3637, 0x2ab: 0x3667, 0x2ac: 0x47fe, 0x2ad: 0x3697, 0x2ae: 0x4828, 0x2af: 0x36a9,\n\t0x2b0: 0x3e70, 0x2b1: 0xa000, 0x2b5: 0xa000,\n\t0x2b7: 0xa000, 0x2b9: 0xa000,\n\t0x2bf: 0xa000,\n\t// Block 0xb, offset 0x2c0\n\t0x2c1: 0xa000, 0x2c5: 0xa000,\n\t0x2c9: 0xa000, 0x2ca: 0x4840, 0x2cb: 0x485e,\n\t0x2cc: 0x36c7, 0x2cd: 0x36df, 0x2ce: 0x4876, 0x2d0: 0x01be, 0x2d1: 0x01d0,\n\t0x2d2: 0x01ac, 0x2d3: 0x430c, 0x2d4: 0x4312, 0x2d5: 0x01fa, 0x2d6: 0x01e8,\n\t0x2f0: 0x01d6, 0x2f1: 0x01eb, 0x2f2: 0x01ee, 0x2f4: 0x0188, 0x2f5: 0x01c7,\n\t0x2f9: 0x01a6,\n\t// Block 0xc, offset 0x300\n\t0x300: 0x3721, 0x301: 0x372d, 0x303: 0x371b,\n\t0x306: 0xa000, 0x307: 0x3709,\n\t0x30c: 0x375d, 0x30d: 0x3745, 0x30e: 0x376f, 0x310: 0xa000,\n\t0x313: 0xa000, 0x315: 0xa000, 0x316: 0xa000, 0x317: 0xa000,\n\t0x318: 0xa000, 0x319: 0x3751, 0x31a: 0xa000,\n\t0x31e: 0xa000, 0x323: 0xa000,\n\t0x327: 0xa000,\n\t0x32b: 0xa000, 0x32d: 0xa000,\n\t0x330: 0xa000, 0x333: 0xa000, 0x335: 0xa000,\n\t0x336: 0xa000, 0x337: 0xa000, 0x338: 0xa000, 0x339: 0x37d5, 0x33a: 0xa000,\n\t0x33e: 0xa000,\n\t// Block 0xd, offset 0x340\n\t0x341: 0x3733, 0x342: 0x37b7,\n\t0x350: 0x370f, 0x351: 0x3793,\n\t0x352: 0x3715, 0x353: 0x3799, 0x356: 0x3727, 0x357: 0x37ab,\n\t0x358: 0xa000, 0x359: 0xa000, 0x35a: 0x3829, 0x35b: 0x382f, 0x35c: 0x3739, 0x35d: 0x37bd,\n\t0x35e: 0x373f, 0x35f: 0x37c3, 0x362: 0x374b, 0x363: 0x37cf,\n\t0x364: 0x3757, 0x365: 0x37db, 0x366: 0x3763, 0x367: 0x37e7, 0x368: 0xa000, 0x369: 0xa000,\n\t0x36a: 0x3835, 0x36b: 0x383b, 0x36c: 0x378d, 0x36d: 0x3811, 0x36e: 0x3769, 0x36f: 0x37ed,\n\t0x370: 0x3775, 0x371: 0x37f9, 0x372: 0x377b, 0x373: 0x37ff, 0x374: 0x3781, 0x375: 0x3805,\n\t0x378: 0x3787, 0x379: 0x380b,\n\t// Block 0xe, offset 0x380\n\t0x387: 0x1d61,\n\t0x391: 0x812d,\n\t0x392: 0x8132, 0x393: 0x8132, 0x394: 0x8132, 0x395: 0x8132, 0x396: 0x812d, 0x397: 0x8132,\n\t0x398: 0x8132, 0x399: 0x8132, 0x39a: 0x812e, 0x39b: 0x812d, 0x39c: 0x8132, 0x39d: 0x8132,\n\t0x39e: 0x8132, 0x39f: 0x8132, 0x3a0: 0x8132, 0x3a1: 0x8132, 0x3a2: 0x812d, 0x3a3: 0x812d,\n\t0x3a4: 0x812d, 0x3a5: 0x812d, 0x3a6: 0x812d, 0x3a7: 0x812d, 0x3a8: 0x8132, 0x3a9: 0x8132,\n\t0x3aa: 0x812d, 0x3ab: 0x8132, 0x3ac: 0x8132, 0x3ad: 0x812e, 0x3ae: 0x8131, 0x3af: 0x8132,\n\t0x3b0: 0x8105, 0x3b1: 0x8106, 0x3b2: 0x8107, 0x3b3: 0x8108, 0x3b4: 0x8109, 0x3b5: 0x810a,\n\t0x3b6: 0x810b, 0x3b7: 0x810c, 0x3b8: 0x810d, 0x3b9: 0x810e, 0x3ba: 0x810e, 0x3bb: 0x810f,\n\t0x3bc: 0x8110, 0x3bd: 0x8111, 0x3bf: 0x8112,\n\t// Block 0xf, offset 0x3c0\n\t0x3c8: 0xa000, 0x3ca: 0xa000, 0x3cb: 0x8116,\n\t0x3cc: 0x8117, 0x3cd: 0x8118, 0x3ce: 0x8119, 0x3cf: 0x811a, 0x3d0: 0x811b, 0x3d1: 0x811c,\n\t0x3d2: 0x811d, 0x3d3: 0x9932, 0x3d4: 0x9932, 0x3d5: 0x992d, 0x3d6: 0x812d, 0x3d7: 0x8132,\n\t0x3d8: 0x8132, 0x3d9: 0x8132, 0x3da: 0x8132, 0x3db: 0x8132, 0x3dc: 0x812d, 0x3dd: 0x8132,\n\t0x3de: 0x8132, 0x3df: 0x812d,\n\t0x3f0: 0x811e, 0x3f5: 0x1d84,\n\t0x3f6: 0x2013, 0x3f7: 0x204f, 0x3f8: 0x204a,\n\t// Block 0x10, offset 0x400\n\t0x405: 0xa000,\n\t0x406: 0x2d26, 0x407: 0xa000, 0x408: 0x2d2e, 0x409: 0xa000, 0x40a: 0x2d36, 0x40b: 0xa000,\n\t0x40c: 0x2d3e, 0x40d: 0xa000, 0x40e: 0x2d46, 0x411: 0xa000,\n\t0x412: 0x2d4e,\n\t0x434: 0x8102, 0x435: 0x9900,\n\t0x43a: 0xa000, 0x43b: 0x2d56,\n\t0x43c: 0xa000, 0x43d: 0x2d5e, 0x43e: 0xa000, 0x43f: 0xa000,\n\t// Block 0x11, offset 0x440\n\t0x440: 0x0069, 0x441: 0x006b, 0x442: 0x006f, 0x443: 0x0083, 0x444: 0x00f5, 0x445: 0x00f8,\n\t0x446: 0x0413, 0x447: 0x0085, 0x448: 0x0089, 0x449: 0x008b, 0x44a: 0x0104, 0x44b: 0x0107,\n\t0x44c: 0x010a, 0x44d: 0x008f, 0x44f: 0x0097, 0x450: 0x009b, 0x451: 0x00e0,\n\t0x452: 0x009f, 0x453: 0x00fe, 0x454: 0x0417, 0x455: 0x041b, 0x456: 0x00a1, 0x457: 0x00a9,\n\t0x458: 0x00ab, 0x459: 0x0423, 0x45a: 0x012b, 0x45b: 0x00ad, 0x45c: 0x0427, 0x45d: 0x01be,\n\t0x45e: 0x01c1, 0x45f: 0x01c4, 0x460: 0x01fa, 0x461: 0x01fd, 0x462: 0x0093, 0x463: 0x00a5,\n\t0x464: 0x00ab, 0x465: 0x00ad, 0x466: 0x01be, 0x467: 0x01c1, 0x468: 0x01eb, 0x469: 0x01fa,\n\t0x46a: 0x01fd,\n\t0x478: 0x020c,\n\t// Block 0x12, offset 0x480\n\t0x49b: 0x00fb, 0x49c: 0x0087, 0x49d: 0x0101,\n\t0x49e: 0x00d4, 0x49f: 0x010a, 0x4a0: 0x008d, 0x4a1: 0x010d, 0x4a2: 0x0110, 0x4a3: 0x0116,\n\t0x4a4: 0x011c, 0x4a5: 0x011f, 0x4a6: 0x0122, 0x4a7: 0x042b, 0x4a8: 0x016a, 0x4a9: 0x0128,\n\t0x4aa: 0x042f, 0x4ab: 0x016d, 0x4ac: 0x0131, 0x4ad: 0x012e, 0x4ae: 0x0134, 0x4af: 0x0137,\n\t0x4b0: 0x013a, 0x4b1: 0x013d, 0x4b2: 0x0140, 0x4b3: 0x014c, 0x4b4: 0x014f, 0x4b5: 0x00ec,\n\t0x4b6: 0x0152, 0x4b7: 0x0155, 0x4b8: 0x041f, 0x4b9: 0x0158, 0x4ba: 0x015b, 0x4bb: 0x00b5,\n\t0x4bc: 0x015e, 0x4bd: 0x0161, 0x4be: 0x0164, 0x4bf: 0x01d0,\n\t// Block 0x13, offset 0x4c0\n\t0x4c0: 0x2f97, 0x4c1: 0x32a3, 0x4c2: 0x2fa1, 0x4c3: 0x32ad, 0x4c4: 0x2fa6, 0x4c5: 0x32b2,\n\t0x4c6: 0x2fab, 0x4c7: 0x32b7, 0x4c8: 0x38cc, 0x4c9: 0x3a5b, 0x4ca: 0x2fc4, 0x4cb: 0x32d0,\n\t0x4cc: 0x2fce, 0x4cd: 0x32da, 0x4ce: 0x2fdd, 0x4cf: 0x32e9, 0x4d0: 0x2fd3, 0x4d1: 0x32df,\n\t0x4d2: 0x2fd8, 0x4d3: 0x32e4, 0x4d4: 0x38ef, 0x4d5: 0x3a7e, 0x4d6: 0x38f6, 0x4d7: 0x3a85,\n\t0x4d8: 0x3019, 0x4d9: 0x3325, 0x4da: 0x301e, 0x4db: 0x332a, 0x4dc: 0x3904, 0x4dd: 0x3a93,\n\t0x4de: 0x3023, 0x4df: 0x332f, 0x4e0: 0x3032, 0x4e1: 0x333e, 0x4e2: 0x3050, 0x4e3: 0x335c,\n\t0x4e4: 0x305f, 0x4e5: 0x336b, 0x4e6: 0x3055, 0x4e7: 0x3361, 0x4e8: 0x3064, 0x4e9: 0x3370,\n\t0x4ea: 0x3069, 0x4eb: 0x3375, 0x4ec: 0x30af, 0x4ed: 0x33bb, 0x4ee: 0x390b, 0x4ef: 0x3a9a,\n\t0x4f0: 0x30b9, 0x4f1: 0x33ca, 0x4f2: 0x30c3, 0x4f3: 0x33d4, 0x4f4: 0x30cd, 0x4f5: 0x33de,\n\t0x4f6: 0x46c4, 0x4f7: 0x4755, 0x4f8: 0x3912, 0x4f9: 0x3aa1, 0x4fa: 0x30e6, 0x4fb: 0x33f7,\n\t0x4fc: 0x30e1, 0x4fd: 0x33f2, 0x4fe: 0x30eb, 0x4ff: 0x33fc,\n\t// Block 0x14, offset 0x500\n\t0x500: 0x30f0, 0x501: 0x3401, 0x502: 0x30f5, 0x503: 0x3406, 0x504: 0x3109, 0x505: 0x341a,\n\t0x506: 0x3113, 0x507: 0x3424, 0x508: 0x3122, 0x509: 0x3433, 0x50a: 0x311d, 0x50b: 0x342e,\n\t0x50c: 0x3935, 0x50d: 0x3ac4, 0x50e: 0x3943, 0x50f: 0x3ad2, 0x510: 0x394a, 0x511: 0x3ad9,\n\t0x512: 0x3951, 0x513: 0x3ae0, 0x514: 0x314f, 0x515: 0x3460, 0x516: 0x3154, 0x517: 0x3465,\n\t0x518: 0x315e, 0x519: 0x346f, 0x51a: 0x46f1, 0x51b: 0x4782, 0x51c: 0x3997, 0x51d: 0x3b26,\n\t0x51e: 0x3177, 0x51f: 0x3488, 0x520: 0x3181, 0x521: 0x3492, 0x522: 0x4700, 0x523: 0x4791,\n\t0x524: 0x399e, 0x525: 0x3b2d, 0x526: 0x39a5, 0x527: 0x3b34, 0x528: 0x39ac, 0x529: 0x3b3b,\n\t0x52a: 0x3190, 0x52b: 0x34a1, 0x52c: 0x319a, 0x52d: 0x34b0, 0x52e: 0x31ae, 0x52f: 0x34c4,\n\t0x530: 0x31a9, 0x531: 0x34bf, 0x532: 0x31ea, 0x533: 0x3500, 0x534: 0x31f9, 0x535: 0x350f,\n\t0x536: 0x31f4, 0x537: 0x350a, 0x538: 0x39b3, 0x539: 0x3b42, 0x53a: 0x39ba, 0x53b: 0x3b49,\n\t0x53c: 0x31fe, 0x53d: 0x3514, 0x53e: 0x3203, 0x53f: 0x3519,\n\t// Block 0x15, offset 0x540\n\t0x540: 0x3208, 0x541: 0x351e, 0x542: 0x320d, 0x543: 0x3523, 0x544: 0x321c, 0x545: 0x3532,\n\t0x546: 0x3217, 0x547: 0x352d, 0x548: 0x3221, 0x549: 0x353c, 0x54a: 0x3226, 0x54b: 0x3541,\n\t0x54c: 0x322b, 0x54d: 0x3546, 0x54e: 0x3249, 0x54f: 0x3564, 0x550: 0x3262, 0x551: 0x3582,\n\t0x552: 0x3271, 0x553: 0x3591, 0x554: 0x3276, 0x555: 0x3596, 0x556: 0x337a, 0x557: 0x34a6,\n\t0x558: 0x3537, 0x559: 0x3573, 0x55a: 0x1be0, 0x55b: 0x42d7,\n\t0x560: 0x46a1, 0x561: 0x4732, 0x562: 0x2f83, 0x563: 0x328f,\n\t0x564: 0x3878, 0x565: 0x3a07, 0x566: 0x3871, 0x567: 0x3a00, 0x568: 0x3886, 0x569: 0x3a15,\n\t0x56a: 0x387f, 0x56b: 0x3a0e, 0x56c: 0x38be, 0x56d: 0x3a4d, 0x56e: 0x3894, 0x56f: 0x3a23,\n\t0x570: 0x388d, 0x571: 0x3a1c, 0x572: 0x38a2, 0x573: 0x3a31, 0x574: 0x389b, 0x575: 0x3a2a,\n\t0x576: 0x38c5, 0x577: 0x3a54, 0x578: 0x46b5, 0x579: 0x4746, 0x57a: 0x3000, 0x57b: 0x330c,\n\t0x57c: 0x2fec, 0x57d: 0x32f8, 0x57e: 0x38da, 0x57f: 0x3a69,\n\t// Block 0x16, offset 0x580\n\t0x580: 0x38d3, 0x581: 0x3a62, 0x582: 0x38e8, 0x583: 0x3a77, 0x584: 0x38e1, 0x585: 0x3a70,\n\t0x586: 0x38fd, 0x587: 0x3a8c, 0x588: 0x3091, 0x589: 0x339d, 0x58a: 0x30a5, 0x58b: 0x33b1,\n\t0x58c: 0x46e7, 0x58d: 0x4778, 0x58e: 0x3136, 0x58f: 0x3447, 0x590: 0x3920, 0x591: 0x3aaf,\n\t0x592: 0x3919, 0x593: 0x3aa8, 0x594: 0x392e, 0x595: 0x3abd, 0x596: 0x3927, 0x597: 0x3ab6,\n\t0x598: 0x3989, 0x599: 0x3b18, 0x59a: 0x396d, 0x59b: 0x3afc, 0x59c: 0x3966, 0x59d: 0x3af5,\n\t0x59e: 0x397b, 0x59f: 0x3b0a, 0x5a0: 0x3974, 0x5a1: 0x3b03, 0x5a2: 0x3982, 0x5a3: 0x3b11,\n\t0x5a4: 0x31e5, 0x5a5: 0x34fb, 0x5a6: 0x31c7, 0x5a7: 0x34dd, 0x5a8: 0x39e4, 0x5a9: 0x3b73,\n\t0x5aa: 0x39dd, 0x5ab: 0x3b6c, 0x5ac: 0x39f2, 0x5ad: 0x3b81, 0x5ae: 0x39eb, 0x5af: 0x3b7a,\n\t0x5b0: 0x39f9, 0x5b1: 0x3b88, 0x5b2: 0x3230, 0x5b3: 0x354b, 0x5b4: 0x3258, 0x5b5: 0x3578,\n\t0x5b6: 0x3253, 0x5b7: 0x356e, 0x5b8: 0x323f, 0x5b9: 0x355a,\n\t// Block 0x17, offset 0x5c0\n\t0x5c0: 0x4804, 0x5c1: 0x480a, 0x5c2: 0x491e, 0x5c3: 0x4936, 0x5c4: 0x4926, 0x5c5: 0x493e,\n\t0x5c6: 0x492e, 0x5c7: 0x4946, 0x5c8: 0x47aa, 0x5c9: 0x47b0, 0x5ca: 0x488e, 0x5cb: 0x48a6,\n\t0x5cc: 0x4896, 0x5cd: 0x48ae, 0x5ce: 0x489e, 0x5cf: 0x48b6, 0x5d0: 0x4816, 0x5d1: 0x481c,\n\t0x5d2: 0x3db8, 0x5d3: 0x3dc8, 0x5d4: 0x3dc0, 0x5d5: 0x3dd0,\n\t0x5d8: 0x47b6, 0x5d9: 0x47bc, 0x5da: 0x3ce8, 0x5db: 0x3cf8, 0x5dc: 0x3cf0, 0x5dd: 0x3d00,\n\t0x5e0: 0x482e, 0x5e1: 0x4834, 0x5e2: 0x494e, 0x5e3: 0x4966,\n\t0x5e4: 0x4956, 0x5e5: 0x496e, 0x5e6: 0x495e, 0x5e7: 0x4976, 0x5e8: 0x47c2, 0x5e9: 0x47c8,\n\t0x5ea: 0x48be, 0x5eb: 0x48d6, 0x5ec: 0x48c6, 0x5ed: 0x48de, 0x5ee: 0x48ce, 0x5ef: 0x48e6,\n\t0x5f0: 0x4846, 0x5f1: 0x484c, 0x5f2: 0x3e18, 0x5f3: 0x3e30, 0x5f4: 0x3e20, 0x5f5: 0x3e38,\n\t0x5f6: 0x3e28, 0x5f7: 0x3e40, 0x5f8: 0x47ce, 0x5f9: 0x47d4, 0x5fa: 0x3d18, 0x5fb: 0x3d30,\n\t0x5fc: 0x3d20, 0x5fd: 0x3d38, 0x5fe: 0x3d28, 0x5ff: 0x3d40,\n\t// Block 0x18, offset 0x600\n\t0x600: 0x4852, 0x601: 0x4858, 0x602: 0x3e48, 0x603: 0x3e58, 0x604: 0x3e50, 0x605: 0x3e60,\n\t0x608: 0x47da, 0x609: 0x47e0, 0x60a: 0x3d48, 0x60b: 0x3d58,\n\t0x60c: 0x3d50, 0x60d: 0x3d60, 0x610: 0x4864, 0x611: 0x486a,\n\t0x612: 0x3e80, 0x613: 0x3e98, 0x614: 0x3e88, 0x615: 0x3ea0, 0x616: 0x3e90, 0x617: 0x3ea8,\n\t0x619: 0x47e6, 0x61b: 0x3d68, 0x61d: 0x3d70,\n\t0x61f: 0x3d78, 0x620: 0x487c, 0x621: 0x4882, 0x622: 0x497e, 0x623: 0x4996,\n\t0x624: 0x4986, 0x625: 0x499e, 0x626: 0x498e, 0x627: 0x49a6, 0x628: 0x47ec, 0x629: 0x47f2,\n\t0x62a: 0x48ee, 0x62b: 0x4906, 0x62c: 0x48f6, 0x62d: 0x490e, 0x62e: 0x48fe, 0x62f: 0x4916,\n\t0x630: 0x47f8, 0x631: 0x431e, 0x632: 0x3691, 0x633: 0x4324, 0x634: 0x4822, 0x635: 0x432a,\n\t0x636: 0x36a3, 0x637: 0x4330, 0x638: 0x36c1, 0x639: 0x4336, 0x63a: 0x36d9, 0x63b: 0x433c,\n\t0x63c: 0x4870, 0x63d: 0x4342,\n\t// Block 0x19, offset 0x640\n\t0x640: 0x3da0, 0x641: 0x3da8, 0x642: 0x4184, 0x643: 0x41a2, 0x644: 0x418e, 0x645: 0x41ac,\n\t0x646: 0x4198, 0x647: 0x41b6, 0x648: 0x3cd8, 0x649: 0x3ce0, 0x64a: 0x40d0, 0x64b: 0x40ee,\n\t0x64c: 0x40da, 0x64d: 0x40f8, 0x64e: 0x40e4, 0x64f: 0x4102, 0x650: 0x3de8, 0x651: 0x3df0,\n\t0x652: 0x41c0, 0x653: 0x41de, 0x654: 0x41ca, 0x655: 0x41e8, 0x656: 0x41d4, 0x657: 0x41f2,\n\t0x658: 0x3d08, 0x659: 0x3d10, 0x65a: 0x410c, 0x65b: 0x412a, 0x65c: 0x4116, 0x65d: 0x4134,\n\t0x65e: 0x4120, 0x65f: 0x413e, 0x660: 0x3ec0, 0x661: 0x3ec8, 0x662: 0x41fc, 0x663: 0x421a,\n\t0x664: 0x4206, 0x665: 0x4224, 0x666: 0x4210, 0x667: 0x422e, 0x668: 0x3d80, 0x669: 0x3d88,\n\t0x66a: 0x4148, 0x66b: 0x4166, 0x66c: 0x4152, 0x66d: 0x4170, 0x66e: 0x415c, 0x66f: 0x417a,\n\t0x670: 0x3685, 0x671: 0x367f, 0x672: 0x3d90, 0x673: 0x368b, 0x674: 0x3d98,\n\t0x676: 0x4810, 0x677: 0x3db0, 0x678: 0x35f5, 0x679: 0x35ef, 0x67a: 0x35e3, 0x67b: 0x42ee,\n\t0x67c: 0x35fb, 0x67d: 0x4287, 0x67e: 0x01d3, 0x67f: 0x4287,\n\t// Block 0x1a, offset 0x680\n\t0x680: 0x42a0, 0x681: 0x4482, 0x682: 0x3dd8, 0x683: 0x369d, 0x684: 0x3de0,\n\t0x686: 0x483a, 0x687: 0x3df8, 0x688: 0x3601, 0x689: 0x42f4, 0x68a: 0x360d, 0x68b: 0x42fa,\n\t0x68c: 0x3619, 0x68d: 0x4489, 0x68e: 0x4490, 0x68f: 0x4497, 0x690: 0x36b5, 0x691: 0x36af,\n\t0x692: 0x3e00, 0x693: 0x44e4, 0x696: 0x36bb, 0x697: 0x3e10,\n\t0x698: 0x3631, 0x699: 0x362b, 0x69a: 0x361f, 0x69b: 0x4300, 0x69d: 0x449e,\n\t0x69e: 0x44a5, 0x69f: 0x44ac, 0x6a0: 0x36eb, 0x6a1: 0x36e5, 0x6a2: 0x3e68, 0x6a3: 0x44ec,\n\t0x6a4: 0x36cd, 0x6a5: 0x36d3, 0x6a6: 0x36f1, 0x6a7: 0x3e78, 0x6a8: 0x3661, 0x6a9: 0x365b,\n\t0x6aa: 0x364f, 0x6ab: 0x430c, 0x6ac: 0x3649, 0x6ad: 0x4474, 0x6ae: 0x447b, 0x6af: 0x0081,\n\t0x6b2: 0x3eb0, 0x6b3: 0x36f7, 0x6b4: 0x3eb8,\n\t0x6b6: 0x4888, 0x6b7: 0x3ed0, 0x6b8: 0x363d, 0x6b9: 0x4306, 0x6ba: 0x366d, 0x6bb: 0x4318,\n\t0x6bc: 0x3679, 0x6bd: 0x425a, 0x6be: 0x428c,\n\t// Block 0x1b, offset 0x6c0\n\t0x6c0: 0x1bd8, 0x6c1: 0x1bdc, 0x6c2: 0x0047, 0x6c3: 0x1c54, 0x6c5: 0x1be8,\n\t0x6c6: 0x1bec, 0x6c7: 0x00e9, 0x6c9: 0x1c58, 0x6ca: 0x008f, 0x6cb: 0x0051,\n\t0x6cc: 0x0051, 0x6cd: 0x0051, 0x6ce: 0x0091, 0x6cf: 0x00da, 0x6d0: 0x0053, 0x6d1: 0x0053,\n\t0x6d2: 0x0059, 0x6d3: 0x0099, 0x6d5: 0x005d, 0x6d6: 0x198d,\n\t0x6d9: 0x0061, 0x6da: 0x0063, 0x6db: 0x0065, 0x6dc: 0x0065, 0x6dd: 0x0065,\n\t0x6e0: 0x199f, 0x6e1: 0x1bc8, 0x6e2: 0x19a8,\n\t0x6e4: 0x0075, 0x6e6: 0x01b8, 0x6e8: 0x0075,\n\t0x6ea: 0x0057, 0x6eb: 0x42d2, 0x6ec: 0x0045, 0x6ed: 0x0047, 0x6ef: 0x008b,\n\t0x6f0: 0x004b, 0x6f1: 0x004d, 0x6f3: 0x005b, 0x6f4: 0x009f, 0x6f5: 0x0215,\n\t0x6f6: 0x0218, 0x6f7: 0x021b, 0x6f8: 0x021e, 0x6f9: 0x0093, 0x6fb: 0x1b98,\n\t0x6fc: 0x01e8, 0x6fd: 0x01c1, 0x6fe: 0x0179, 0x6ff: 0x01a0,\n\t// Block 0x1c, offset 0x700\n\t0x700: 0x0463, 0x705: 0x0049,\n\t0x706: 0x0089, 0x707: 0x008b, 0x708: 0x0093, 0x709: 0x0095,\n\t0x710: 0x222e, 0x711: 0x223a,\n\t0x712: 0x22ee, 0x713: 0x2216, 0x714: 0x229a, 0x715: 0x2222, 0x716: 0x22a0, 0x717: 0x22b8,\n\t0x718: 0x22c4, 0x719: 0x2228, 0x71a: 0x22ca, 0x71b: 0x2234, 0x71c: 0x22be, 0x71d: 0x22d0,\n\t0x71e: 0x22d6, 0x71f: 0x1cbc, 0x720: 0x0053, 0x721: 0x195a, 0x722: 0x1ba4, 0x723: 0x1963,\n\t0x724: 0x006d, 0x725: 0x19ab, 0x726: 0x1bd0, 0x727: 0x1d48, 0x728: 0x1966, 0x729: 0x0071,\n\t0x72a: 0x19b7, 0x72b: 0x1bd4, 0x72c: 0x0059, 0x72d: 0x0047, 0x72e: 0x0049, 0x72f: 0x005b,\n\t0x730: 0x0093, 0x731: 0x19e4, 0x732: 0x1c18, 0x733: 0x19ed, 0x734: 0x00ad, 0x735: 0x1a62,\n\t0x736: 0x1c4c, 0x737: 0x1d5c, 0x738: 0x19f0, 0x739: 0x00b1, 0x73a: 0x1a65, 0x73b: 0x1c50,\n\t0x73c: 0x0099, 0x73d: 0x0087, 0x73e: 0x0089, 0x73f: 0x009b,\n\t// Block 0x1d, offset 0x740\n\t0x741: 0x3c06, 0x743: 0xa000, 0x744: 0x3c0d, 0x745: 0xa000,\n\t0x747: 0x3c14, 0x748: 0xa000, 0x749: 0x3c1b,\n\t0x74d: 0xa000,\n\t0x760: 0x2f65, 0x761: 0xa000, 0x762: 0x3c29,\n\t0x764: 0xa000, 0x765: 0xa000,\n\t0x76d: 0x3c22, 0x76e: 0x2f60, 0x76f: 0x2f6a,\n\t0x770: 0x3c30, 0x771: 0x3c37, 0x772: 0xa000, 0x773: 0xa000, 0x774: 0x3c3e, 0x775: 0x3c45,\n\t0x776: 0xa000, 0x777: 0xa000, 0x778: 0x3c4c, 0x779: 0x3c53, 0x77a: 0xa000, 0x77b: 0xa000,\n\t0x77c: 0xa000, 0x77d: 0xa000,\n\t// Block 0x1e, offset 0x780\n\t0x780: 0x3c5a, 0x781: 0x3c61, 0x782: 0xa000, 0x783: 0xa000, 0x784: 0x3c76, 0x785: 0x3c7d,\n\t0x786: 0xa000, 0x787: 0xa000, 0x788: 0x3c84, 0x789: 0x3c8b,\n\t0x791: 0xa000,\n\t0x792: 0xa000,\n\t0x7a2: 0xa000,\n\t0x7a8: 0xa000, 0x7a9: 0xa000,\n\t0x7ab: 0xa000, 0x7ac: 0x3ca0, 0x7ad: 0x3ca7, 0x7ae: 0x3cae, 0x7af: 0x3cb5,\n\t0x7b2: 0xa000, 0x7b3: 0xa000, 0x7b4: 0xa000, 0x7b5: 0xa000,\n\t// Block 0x1f, offset 0x7c0\n\t0x7e0: 0x0023, 0x7e1: 0x0025, 0x7e2: 0x0027, 0x7e3: 0x0029,\n\t0x7e4: 0x002b, 0x7e5: 0x002d, 0x7e6: 0x002f, 0x7e7: 0x0031, 0x7e8: 0x0033, 0x7e9: 0x1882,\n\t0x7ea: 0x1885, 0x7eb: 0x1888, 0x7ec: 0x188b, 0x7ed: 0x188e, 0x7ee: 0x1891, 0x7ef: 0x1894,\n\t0x7f0: 0x1897, 0x7f1: 0x189a, 0x7f2: 0x189d, 0x7f3: 0x18a6, 0x7f4: 0x1a68, 0x7f5: 0x1a6c,\n\t0x7f6: 0x1a70, 0x7f7: 0x1a74, 0x7f8: 0x1a78, 0x7f9: 0x1a7c, 0x7fa: 0x1a80, 0x7fb: 0x1a84,\n\t0x7fc: 0x1a88, 0x7fd: 0x1c80, 0x7fe: 0x1c85, 0x7ff: 0x1c8a,\n\t// Block 0x20, offset 0x800\n\t0x800: 0x1c8f, 0x801: 0x1c94, 0x802: 0x1c99, 0x803: 0x1c9e, 0x804: 0x1ca3, 0x805: 0x1ca8,\n\t0x806: 0x1cad, 0x807: 0x1cb2, 0x808: 0x187f, 0x809: 0x18a3, 0x80a: 0x18c7, 0x80b: 0x18eb,\n\t0x80c: 0x190f, 0x80d: 0x1918, 0x80e: 0x191e, 0x80f: 0x1924, 0x810: 0x192a, 0x811: 0x1b60,\n\t0x812: 0x1b64, 0x813: 0x1b68, 0x814: 0x1b6c, 0x815: 0x1b70, 0x816: 0x1b74, 0x817: 0x1b78,\n\t0x818: 0x1b7c, 0x819: 0x1b80, 0x81a: 0x1b84, 0x81b: 0x1b88, 0x81c: 0x1af4, 0x81d: 0x1af8,\n\t0x81e: 0x1afc, 0x81f: 0x1b00, 0x820: 0x1b04, 0x821: 0x1b08, 0x822: 0x1b0c, 0x823: 0x1b10,\n\t0x824: 0x1b14, 0x825: 0x1b18, 0x826: 0x1b1c, 0x827: 0x1b20, 0x828: 0x1b24, 0x829: 0x1b28,\n\t0x82a: 0x1b2c, 0x82b: 0x1b30, 0x82c: 0x1b34, 0x82d: 0x1b38, 0x82e: 0x1b3c, 0x82f: 0x1b40,\n\t0x830: 0x1b44, 0x831: 0x1b48, 0x832: 0x1b4c, 0x833: 0x1b50, 0x834: 0x1b54, 0x835: 0x1b58,\n\t0x836: 0x0043, 0x837: 0x0045, 0x838: 0x0047, 0x839: 0x0049, 0x83a: 0x004b, 0x83b: 0x004d,\n\t0x83c: 0x004f, 0x83d: 0x0051, 0x83e: 0x0053, 0x83f: 0x0055,\n\t// Block 0x21, offset 0x840\n\t0x840: 0x06bf, 0x841: 0x06e3, 0x842: 0x06ef, 0x843: 0x06ff, 0x844: 0x0707, 0x845: 0x0713,\n\t0x846: 0x071b, 0x847: 0x0723, 0x848: 0x072f, 0x849: 0x0783, 0x84a: 0x079b, 0x84b: 0x07ab,\n\t0x84c: 0x07bb, 0x84d: 0x07cb, 0x84e: 0x07db, 0x84f: 0x07fb, 0x850: 0x07ff, 0x851: 0x0803,\n\t0x852: 0x0837, 0x853: 0x085f, 0x854: 0x086f, 0x855: 0x0877, 0x856: 0x087b, 0x857: 0x0887,\n\t0x858: 0x08a3, 0x859: 0x08a7, 0x85a: 0x08bf, 0x85b: 0x08c3, 0x85c: 0x08cb, 0x85d: 0x08db,\n\t0x85e: 0x0977, 0x85f: 0x098b, 0x860: 0x09cb, 0x861: 0x09df, 0x862: 0x09e7, 0x863: 0x09eb,\n\t0x864: 0x09fb, 0x865: 0x0a17, 0x866: 0x0a43, 0x867: 0x0a4f, 0x868: 0x0a6f, 0x869: 0x0a7b,\n\t0x86a: 0x0a7f, 0x86b: 0x0a83, 0x86c: 0x0a9b, 0x86d: 0x0a9f, 0x86e: 0x0acb, 0x86f: 0x0ad7,\n\t0x870: 0x0adf, 0x871: 0x0ae7, 0x872: 0x0af7, 0x873: 0x0aff, 0x874: 0x0b07, 0x875: 0x0b33,\n\t0x876: 0x0b37, 0x877: 0x0b3f, 0x878: 0x0b43, 0x879: 0x0b4b, 0x87a: 0x0b53, 0x87b: 0x0b63,\n\t0x87c: 0x0b7f, 0x87d: 0x0bf7, 0x87e: 0x0c0b, 0x87f: 0x0c0f,\n\t// Block 0x22, offset 0x880\n\t0x880: 0x0c8f, 0x881: 0x0c93, 0x882: 0x0ca7, 0x883: 0x0cab, 0x884: 0x0cb3, 0x885: 0x0cbb,\n\t0x886: 0x0cc3, 0x887: 0x0ccf, 0x888: 0x0cf7, 0x889: 0x0d07, 0x88a: 0x0d1b, 0x88b: 0x0d8b,\n\t0x88c: 0x0d97, 0x88d: 0x0da7, 0x88e: 0x0db3, 0x88f: 0x0dbf, 0x890: 0x0dc7, 0x891: 0x0dcb,\n\t0x892: 0x0dcf, 0x893: 0x0dd3, 0x894: 0x0dd7, 0x895: 0x0e8f, 0x896: 0x0ed7, 0x897: 0x0ee3,\n\t0x898: 0x0ee7, 0x899: 0x0eeb, 0x89a: 0x0eef, 0x89b: 0x0ef7, 0x89c: 0x0efb, 0x89d: 0x0f0f,\n\t0x89e: 0x0f2b, 0x89f: 0x0f33, 0x8a0: 0x0f73, 0x8a1: 0x0f77, 0x8a2: 0x0f7f, 0x8a3: 0x0f83,\n\t0x8a4: 0x0f8b, 0x8a5: 0x0f8f, 0x8a6: 0x0fb3, 0x8a7: 0x0fb7, 0x8a8: 0x0fd3, 0x8a9: 0x0fd7,\n\t0x8aa: 0x0fdb, 0x8ab: 0x0fdf, 0x8ac: 0x0ff3, 0x8ad: 0x1017, 0x8ae: 0x101b, 0x8af: 0x101f,\n\t0x8b0: 0x1043, 0x8b1: 0x1083, 0x8b2: 0x1087, 0x8b3: 0x10a7, 0x8b4: 0x10b7, 0x8b5: 0x10bf,\n\t0x8b6: 0x10df, 0x8b7: 0x1103, 0x8b8: 0x1147, 0x8b9: 0x114f, 0x8ba: 0x1163, 0x8bb: 0x116f,\n\t0x8bc: 0x1177, 0x8bd: 0x117f, 0x8be: 0x1183, 0x8bf: 0x1187,\n\t// Block 0x23, offset 0x8c0\n\t0x8c0: 0x119f, 0x8c1: 0x11a3, 0x8c2: 0x11bf, 0x8c3: 0x11c7, 0x8c4: 0x11cf, 0x8c5: 0x11d3,\n\t0x8c6: 0x11df, 0x8c7: 0x11e7, 0x8c8: 0x11eb, 0x8c9: 0x11ef, 0x8ca: 0x11f7, 0x8cb: 0x11fb,\n\t0x8cc: 0x129b, 0x8cd: 0x12af, 0x8ce: 0x12e3, 0x8cf: 0x12e7, 0x8d0: 0x12ef, 0x8d1: 0x131b,\n\t0x8d2: 0x1323, 0x8d3: 0x132b, 0x8d4: 0x1333, 0x8d5: 0x136f, 0x8d6: 0x1373, 0x8d7: 0x137b,\n\t0x8d8: 0x137f, 0x8d9: 0x1383, 0x8da: 0x13af, 0x8db: 0x13b3, 0x8dc: 0x13bb, 0x8dd: 0x13cf,\n\t0x8de: 0x13d3, 0x8df: 0x13ef, 0x8e0: 0x13f7, 0x8e1: 0x13fb, 0x8e2: 0x141f, 0x8e3: 0x143f,\n\t0x8e4: 0x1453, 0x8e5: 0x1457, 0x8e6: 0x145f, 0x8e7: 0x148b, 0x8e8: 0x148f, 0x8e9: 0x149f,\n\t0x8ea: 0x14c3, 0x8eb: 0x14cf, 0x8ec: 0x14df, 0x8ed: 0x14f7, 0x8ee: 0x14ff, 0x8ef: 0x1503,\n\t0x8f0: 0x1507, 0x8f1: 0x150b, 0x8f2: 0x1517, 0x8f3: 0x151b, 0x8f4: 0x1523, 0x8f5: 0x153f,\n\t0x8f6: 0x1543, 0x8f7: 0x1547, 0x8f8: 0x155f, 0x8f9: 0x1563, 0x8fa: 0x156b, 0x8fb: 0x157f,\n\t0x8fc: 0x1583, 0x8fd: 0x1587, 0x8fe: 0x158f, 0x8ff: 0x1593,\n\t// Block 0x24, offset 0x900\n\t0x906: 0xa000, 0x90b: 0xa000,\n\t0x90c: 0x3f08, 0x90d: 0xa000, 0x90e: 0x3f10, 0x90f: 0xa000, 0x910: 0x3f18, 0x911: 0xa000,\n\t0x912: 0x3f20, 0x913: 0xa000, 0x914: 0x3f28, 0x915: 0xa000, 0x916: 0x3f30, 0x917: 0xa000,\n\t0x918: 0x3f38, 0x919: 0xa000, 0x91a: 0x3f40, 0x91b: 0xa000, 0x91c: 0x3f48, 0x91d: 0xa000,\n\t0x91e: 0x3f50, 0x91f: 0xa000, 0x920: 0x3f58, 0x921: 0xa000, 0x922: 0x3f60,\n\t0x924: 0xa000, 0x925: 0x3f68, 0x926: 0xa000, 0x927: 0x3f70, 0x928: 0xa000, 0x929: 0x3f78,\n\t0x92f: 0xa000,\n\t0x930: 0x3f80, 0x931: 0x3f88, 0x932: 0xa000, 0x933: 0x3f90, 0x934: 0x3f98, 0x935: 0xa000,\n\t0x936: 0x3fa0, 0x937: 0x3fa8, 0x938: 0xa000, 0x939: 0x3fb0, 0x93a: 0x3fb8, 0x93b: 0xa000,\n\t0x93c: 0x3fc0, 0x93d: 0x3fc8,\n\t// Block 0x25, offset 0x940\n\t0x954: 0x3f00,\n\t0x959: 0x9903, 0x95a: 0x9903, 0x95b: 0x42dc, 0x95c: 0x42e2, 0x95d: 0xa000,\n\t0x95e: 0x3fd0, 0x95f: 0x26b4,\n\t0x966: 0xa000,\n\t0x96b: 0xa000, 0x96c: 0x3fe0, 0x96d: 0xa000, 0x96e: 0x3fe8, 0x96f: 0xa000,\n\t0x970: 0x3ff0, 0x971: 0xa000, 0x972: 0x3ff8, 0x973: 0xa000, 0x974: 0x4000, 0x975: 0xa000,\n\t0x976: 0x4008, 0x977: 0xa000, 0x978: 0x4010, 0x979: 0xa000, 0x97a: 0x4018, 0x97b: 0xa000,\n\t0x97c: 0x4020, 0x97d: 0xa000, 0x97e: 0x4028, 0x97f: 0xa000,\n\t// Block 0x26, offset 0x980\n\t0x980: 0x4030, 0x981: 0xa000, 0x982: 0x4038, 0x984: 0xa000, 0x985: 0x4040,\n\t0x986: 0xa000, 0x987: 0x4048, 0x988: 0xa000, 0x989: 0x4050,\n\t0x98f: 0xa000, 0x990: 0x4058, 0x991: 0x4060,\n\t0x992: 0xa000, 0x993: 0x4068, 0x994: 0x4070, 0x995: 0xa000, 0x996: 0x4078, 0x997: 0x4080,\n\t0x998: 0xa000, 0x999: 0x4088, 0x99a: 0x4090, 0x99b: 0xa000, 0x99c: 0x4098, 0x99d: 0x40a0,\n\t0x9af: 0xa000,\n\t0x9b0: 0xa000, 0x9b1: 0xa000, 0x9b2: 0xa000, 0x9b4: 0x3fd8,\n\t0x9b7: 0x40a8, 0x9b8: 0x40b0, 0x9b9: 0x40b8, 0x9ba: 0x40c0,\n\t0x9bd: 0xa000, 0x9be: 0x40c8, 0x9bf: 0x26c9,\n\t// Block 0x27, offset 0x9c0\n\t0x9c0: 0x0367, 0x9c1: 0x032b, 0x9c2: 0x032f, 0x9c3: 0x0333, 0x9c4: 0x037b, 0x9c5: 0x0337,\n\t0x9c6: 0x033b, 0x9c7: 0x033f, 0x9c8: 0x0343, 0x9c9: 0x0347, 0x9ca: 0x034b, 0x9cb: 0x034f,\n\t0x9cc: 0x0353, 0x9cd: 0x0357, 0x9ce: 0x035b, 0x9cf: 0x49bd, 0x9d0: 0x49c3, 0x9d1: 0x49c9,\n\t0x9d2: 0x49cf, 0x9d3: 0x49d5, 0x9d4: 0x49db, 0x9d5: 0x49e1, 0x9d6: 0x49e7, 0x9d7: 0x49ed,\n\t0x9d8: 0x49f3, 0x9d9: 0x49f9, 0x9da: 0x49ff, 0x9db: 0x4a05, 0x9dc: 0x4a0b, 0x9dd: 0x4a11,\n\t0x9de: 0x4a17, 0x9df: 0x4a1d, 0x9e0: 0x4a23, 0x9e1: 0x4a29, 0x9e2: 0x4a2f, 0x9e3: 0x4a35,\n\t0x9e4: 0x03c3, 0x9e5: 0x035f, 0x9e6: 0x0363, 0x9e7: 0x03e7, 0x9e8: 0x03eb, 0x9e9: 0x03ef,\n\t0x9ea: 0x03f3, 0x9eb: 0x03f7, 0x9ec: 0x03fb, 0x9ed: 0x03ff, 0x9ee: 0x036b, 0x9ef: 0x0403,\n\t0x9f0: 0x0407, 0x9f1: 0x036f, 0x9f2: 0x0373, 0x9f3: 0x0377, 0x9f4: 0x037f, 0x9f5: 0x0383,\n\t0x9f6: 0x0387, 0x9f7: 0x038b, 0x9f8: 0x038f, 0x9f9: 0x0393, 0x9fa: 0x0397, 0x9fb: 0x039b,\n\t0x9fc: 0x039f, 0x9fd: 0x03a3, 0x9fe: 0x03a7, 0x9ff: 0x03ab,\n\t// Block 0x28, offset 0xa00\n\t0xa00: 0x03af, 0xa01: 0x03b3, 0xa02: 0x040b, 0xa03: 0x040f, 0xa04: 0x03b7, 0xa05: 0x03bb,\n\t0xa06: 0x03bf, 0xa07: 0x03c7, 0xa08: 0x03cb, 0xa09: 0x03cf, 0xa0a: 0x03d3, 0xa0b: 0x03d7,\n\t0xa0c: 0x03db, 0xa0d: 0x03df, 0xa0e: 0x03e3,\n\t0xa12: 0x06bf, 0xa13: 0x071b, 0xa14: 0x06cb, 0xa15: 0x097b, 0xa16: 0x06cf, 0xa17: 0x06e7,\n\t0xa18: 0x06d3, 0xa19: 0x0f93, 0xa1a: 0x0707, 0xa1b: 0x06db, 0xa1c: 0x06c3, 0xa1d: 0x09ff,\n\t0xa1e: 0x098f, 0xa1f: 0x072f,\n\t// Block 0x29, offset 0xa40\n\t0xa40: 0x2054, 0xa41: 0x205a, 0xa42: 0x2060, 0xa43: 0x2066, 0xa44: 0x206c, 0xa45: 0x2072,\n\t0xa46: 0x2078, 0xa47: 0x207e, 0xa48: 0x2084, 0xa49: 0x208a, 0xa4a: 0x2090, 0xa4b: 0x2096,\n\t0xa4c: 0x209c, 0xa4d: 0x20a2, 0xa4e: 0x2726, 0xa4f: 0x272f, 0xa50: 0x2738, 0xa51: 0x2741,\n\t0xa52: 0x274a, 0xa53: 0x2753, 0xa54: 0x275c, 0xa55: 0x2765, 0xa56: 0x276e, 0xa57: 0x2780,\n\t0xa58: 0x2789, 0xa59: 0x2792, 0xa5a: 0x279b, 0xa5b: 0x27a4, 0xa5c: 0x2777, 0xa5d: 0x2bac,\n\t0xa5e: 0x2aed, 0xa60: 0x20a8, 0xa61: 0x20c0, 0xa62: 0x20b4, 0xa63: 0x2108,\n\t0xa64: 0x20c6, 0xa65: 0x20e4, 0xa66: 0x20ae, 0xa67: 0x20de, 0xa68: 0x20ba, 0xa69: 0x20f0,\n\t0xa6a: 0x2120, 0xa6b: 0x213e, 0xa6c: 0x2138, 0xa6d: 0x212c, 0xa6e: 0x217a, 0xa6f: 0x210e,\n\t0xa70: 0x211a, 0xa71: 0x2132, 0xa72: 0x2126, 0xa73: 0x2150, 0xa74: 0x20fc, 0xa75: 0x2144,\n\t0xa76: 0x216e, 0xa77: 0x2156, 0xa78: 0x20ea, 0xa79: 0x20cc, 0xa7a: 0x2102, 0xa7b: 0x2114,\n\t0xa7c: 0x214a, 0xa7d: 0x20d2, 0xa7e: 0x2174, 0xa7f: 0x20f6,\n\t// Block 0x2a, offset 0xa80\n\t0xa80: 0x215c, 0xa81: 0x20d8, 0xa82: 0x2162, 0xa83: 0x2168, 0xa84: 0x092f, 0xa85: 0x0b03,\n\t0xa86: 0x0ca7, 0xa87: 0x10c7,\n\t0xa90: 0x1bc4, 0xa91: 0x18a9,\n\t0xa92: 0x18ac, 0xa93: 0x18af, 0xa94: 0x18b2, 0xa95: 0x18b5, 0xa96: 0x18b8, 0xa97: 0x18bb,\n\t0xa98: 0x18be, 0xa99: 0x18c1, 0xa9a: 0x18ca, 0xa9b: 0x18cd, 0xa9c: 0x18d0, 0xa9d: 0x18d3,\n\t0xa9e: 0x18d6, 0xa9f: 0x18d9, 0xaa0: 0x0313, 0xaa1: 0x031b, 0xaa2: 0x031f, 0xaa3: 0x0327,\n\t0xaa4: 0x032b, 0xaa5: 0x032f, 0xaa6: 0x0337, 0xaa7: 0x033f, 0xaa8: 0x0343, 0xaa9: 0x034b,\n\t0xaaa: 0x034f, 0xaab: 0x0353, 0xaac: 0x0357, 0xaad: 0x035b, 0xaae: 0x2e18, 0xaaf: 0x2e20,\n\t0xab0: 0x2e28, 0xab1: 0x2e30, 0xab2: 0x2e38, 0xab3: 0x2e40, 0xab4: 0x2e48, 0xab5: 0x2e50,\n\t0xab6: 0x2e60, 0xab7: 0x2e68, 0xab8: 0x2e70, 0xab9: 0x2e78, 0xaba: 0x2e80, 0xabb: 0x2e88,\n\t0xabc: 0x2ed3, 0xabd: 0x2e9b, 0xabe: 0x2e58,\n\t// Block 0x2b, offset 0xac0\n\t0xac0: 0x06bf, 0xac1: 0x071b, 0xac2: 0x06cb, 0xac3: 0x097b, 0xac4: 0x071f, 0xac5: 0x07af,\n\t0xac6: 0x06c7, 0xac7: 0x07ab, 0xac8: 0x070b, 0xac9: 0x0887, 0xaca: 0x0d07, 0xacb: 0x0e8f,\n\t0xacc: 0x0dd7, 0xacd: 0x0d1b, 0xace: 0x145f, 0xacf: 0x098b, 0xad0: 0x0ccf, 0xad1: 0x0d4b,\n\t0xad2: 0x0d0b, 0xad3: 0x104b, 0xad4: 0x08fb, 0xad5: 0x0f03, 0xad6: 0x1387, 0xad7: 0x105f,\n\t0xad8: 0x0843, 0xad9: 0x108f, 0xada: 0x0f9b, 0xadb: 0x0a17, 0xadc: 0x140f, 0xadd: 0x077f,\n\t0xade: 0x08ab, 0xadf: 0x0df7, 0xae0: 0x1527, 0xae1: 0x0743, 0xae2: 0x07d3, 0xae3: 0x0d9b,\n\t0xae4: 0x06cf, 0xae5: 0x06e7, 0xae6: 0x06d3, 0xae7: 0x0adb, 0xae8: 0x08ef, 0xae9: 0x087f,\n\t0xaea: 0x0a57, 0xaeb: 0x0a4b, 0xaec: 0x0feb, 0xaed: 0x073f, 0xaee: 0x139b, 0xaef: 0x089b,\n\t0xaf0: 0x09f3, 0xaf1: 0x18dc, 0xaf2: 0x18df, 0xaf3: 0x18e2, 0xaf4: 0x18e5, 0xaf5: 0x18ee,\n\t0xaf6: 0x18f1, 0xaf7: 0x18f4, 0xaf8: 0x18f7, 0xaf9: 0x18fa, 0xafa: 0x18fd, 0xafb: 0x1900,\n\t0xafc: 0x1903, 0xafd: 0x1906, 0xafe: 0x1909, 0xaff: 0x1912,\n\t// Block 0x2c, offset 0xb00\n\t0xb00: 0x1cc6, 0xb01: 0x1cd5, 0xb02: 0x1ce4, 0xb03: 0x1cf3, 0xb04: 0x1d02, 0xb05: 0x1d11,\n\t0xb06: 0x1d20, 0xb07: 0x1d2f, 0xb08: 0x1d3e, 0xb09: 0x218c, 0xb0a: 0x219e, 0xb0b: 0x21b0,\n\t0xb0c: 0x1954, 0xb0d: 0x1c04, 0xb0e: 0x19d2, 0xb0f: 0x1ba8, 0xb10: 0x04cb, 0xb11: 0x04d3,\n\t0xb12: 0x04db, 0xb13: 0x04e3, 0xb14: 0x04eb, 0xb15: 0x04ef, 0xb16: 0x04f3, 0xb17: 0x04f7,\n\t0xb18: 0x04fb, 0xb19: 0x04ff, 0xb1a: 0x0503, 0xb1b: 0x0507, 0xb1c: 0x050b, 0xb1d: 0x050f,\n\t0xb1e: 0x0513, 0xb1f: 0x0517, 0xb20: 0x051b, 0xb21: 0x0523, 0xb22: 0x0527, 0xb23: 0x052b,\n\t0xb24: 0x052f, 0xb25: 0x0533, 0xb26: 0x0537, 0xb27: 0x053b, 0xb28: 0x053f, 0xb29: 0x0543,\n\t0xb2a: 0x0547, 0xb2b: 0x054b, 0xb2c: 0x054f, 0xb2d: 0x0553, 0xb2e: 0x0557, 0xb2f: 0x055b,\n\t0xb30: 0x055f, 0xb31: 0x0563, 0xb32: 0x0567, 0xb33: 0x056f, 0xb34: 0x0577, 0xb35: 0x057f,\n\t0xb36: 0x0583, 0xb37: 0x0587, 0xb38: 0x058b, 0xb39: 0x058f, 0xb3a: 0x0593, 0xb3b: 0x0597,\n\t0xb3c: 0x059b, 0xb3d: 0x059f, 0xb3e: 0x05a3,\n\t// Block 0x2d, offset 0xb40\n\t0xb40: 0x2b0c, 0xb41: 0x29a8, 0xb42: 0x2b1c, 0xb43: 0x2880, 0xb44: 0x2ee4, 0xb45: 0x288a,\n\t0xb46: 0x2894, 0xb47: 0x2f28, 0xb48: 0x29b5, 0xb49: 0x289e, 0xb4a: 0x28a8, 0xb4b: 0x28b2,\n\t0xb4c: 0x29dc, 0xb4d: 0x29e9, 0xb4e: 0x29c2, 0xb4f: 0x29cf, 0xb50: 0x2ea9, 0xb51: 0x29f6,\n\t0xb52: 0x2a03, 0xb53: 0x2bbe, 0xb54: 0x26bb, 0xb55: 0x2bd1, 0xb56: 0x2be4, 0xb57: 0x2b2c,\n\t0xb58: 0x2a10, 0xb59: 0x2bf7, 0xb5a: 0x2c0a, 0xb5b: 0x2a1d, 0xb5c: 0x28bc, 0xb5d: 0x28c6,\n\t0xb5e: 0x2eb7, 0xb5f: 0x2a2a, 0xb60: 0x2b3c, 0xb61: 0x2ef5, 0xb62: 0x28d0, 0xb63: 0x28da,\n\t0xb64: 0x2a37, 0xb65: 0x28e4, 0xb66: 0x28ee, 0xb67: 0x26d0, 0xb68: 0x26d7, 0xb69: 0x28f8,\n\t0xb6a: 0x2902, 0xb6b: 0x2c1d, 0xb6c: 0x2a44, 0xb6d: 0x2b4c, 0xb6e: 0x2c30, 0xb6f: 0x2a51,\n\t0xb70: 0x2916, 0xb71: 0x290c, 0xb72: 0x2f3c, 0xb73: 0x2a5e, 0xb74: 0x2c43, 0xb75: 0x2920,\n\t0xb76: 0x2b5c, 0xb77: 0x292a, 0xb78: 0x2a78, 0xb79: 0x2934, 0xb7a: 0x2a85, 0xb7b: 0x2f06,\n\t0xb7c: 0x2a6b, 0xb7d: 0x2b6c, 0xb7e: 0x2a92, 0xb7f: 0x26de,\n\t// Block 0x2e, offset 0xb80\n\t0xb80: 0x2f17, 0xb81: 0x293e, 0xb82: 0x2948, 0xb83: 0x2a9f, 0xb84: 0x2952, 0xb85: 0x295c,\n\t0xb86: 0x2966, 0xb87: 0x2b7c, 0xb88: 0x2aac, 0xb89: 0x26e5, 0xb8a: 0x2c56, 0xb8b: 0x2e90,\n\t0xb8c: 0x2b8c, 0xb8d: 0x2ab9, 0xb8e: 0x2ec5, 0xb8f: 0x2970, 0xb90: 0x297a, 0xb91: 0x2ac6,\n\t0xb92: 0x26ec, 0xb93: 0x2ad3, 0xb94: 0x2b9c, 0xb95: 0x26f3, 0xb96: 0x2c69, 0xb97: 0x2984,\n\t0xb98: 0x1cb7, 0xb99: 0x1ccb, 0xb9a: 0x1cda, 0xb9b: 0x1ce9, 0xb9c: 0x1cf8, 0xb9d: 0x1d07,\n\t0xb9e: 0x1d16, 0xb9f: 0x1d25, 0xba0: 0x1d34, 0xba1: 0x1d43, 0xba2: 0x2192, 0xba3: 0x21a4,\n\t0xba4: 0x21b6, 0xba5: 0x21c2, 0xba6: 0x21ce, 0xba7: 0x21da, 0xba8: 0x21e6, 0xba9: 0x21f2,\n\t0xbaa: 0x21fe, 0xbab: 0x220a, 0xbac: 0x2246, 0xbad: 0x2252, 0xbae: 0x225e, 0xbaf: 0x226a,\n\t0xbb0: 0x2276, 0xbb1: 0x1c14, 0xbb2: 0x19c6, 0xbb3: 0x1936, 0xbb4: 0x1be4, 0xbb5: 0x1a47,\n\t0xbb6: 0x1a56, 0xbb7: 0x19cc, 0xbb8: 0x1bfc, 0xbb9: 0x1c00, 0xbba: 0x1960, 0xbbb: 0x2701,\n\t0xbbc: 0x270f, 0xbbd: 0x26fa, 0xbbe: 0x2708, 0xbbf: 0x2ae0,\n\t// Block 0x2f, offset 0xbc0\n\t0xbc0: 0x1a4a, 0xbc1: 0x1a32, 0xbc2: 0x1c60, 0xbc3: 0x1a1a, 0xbc4: 0x19f3, 0xbc5: 0x1969,\n\t0xbc6: 0x1978, 0xbc7: 0x1948, 0xbc8: 0x1bf0, 0xbc9: 0x1d52, 0xbca: 0x1a4d, 0xbcb: 0x1a35,\n\t0xbcc: 0x1c64, 0xbcd: 0x1c70, 0xbce: 0x1a26, 0xbcf: 0x19fc, 0xbd0: 0x1957, 0xbd1: 0x1c1c,\n\t0xbd2: 0x1bb0, 0xbd3: 0x1b9c, 0xbd4: 0x1bcc, 0xbd5: 0x1c74, 0xbd6: 0x1a29, 0xbd7: 0x19c9,\n\t0xbd8: 0x19ff, 0xbd9: 0x19de, 0xbda: 0x1a41, 0xbdb: 0x1c78, 0xbdc: 0x1a2c, 0xbdd: 0x19c0,\n\t0xbde: 0x1a02, 0xbdf: 0x1c3c, 0xbe0: 0x1bf4, 0xbe1: 0x1a14, 0xbe2: 0x1c24, 0xbe3: 0x1c40,\n\t0xbe4: 0x1bf8, 0xbe5: 0x1a17, 0xbe6: 0x1c28, 0xbe7: 0x22e8, 0xbe8: 0x22fc, 0xbe9: 0x1996,\n\t0xbea: 0x1c20, 0xbeb: 0x1bb4, 0xbec: 0x1ba0, 0xbed: 0x1c48, 0xbee: 0x2716, 0xbef: 0x27ad,\n\t0xbf0: 0x1a59, 0xbf1: 0x1a44, 0xbf2: 0x1c7c, 0xbf3: 0x1a2f, 0xbf4: 0x1a50, 0xbf5: 0x1a38,\n\t0xbf6: 0x1c68, 0xbf7: 0x1a1d, 0xbf8: 0x19f6, 0xbf9: 0x1981, 0xbfa: 0x1a53, 0xbfb: 0x1a3b,\n\t0xbfc: 0x1c6c, 0xbfd: 0x1a20, 0xbfe: 0x19f9, 0xbff: 0x1984,\n\t// Block 0x30, offset 0xc00\n\t0xc00: 0x1c2c, 0xc01: 0x1bb8, 0xc02: 0x1d4d, 0xc03: 0x1939, 0xc04: 0x19ba, 0xc05: 0x19bd,\n\t0xc06: 0x22f5, 0xc07: 0x1b94, 0xc08: 0x19c3, 0xc09: 0x194b, 0xc0a: 0x19e1, 0xc0b: 0x194e,\n\t0xc0c: 0x19ea, 0xc0d: 0x196c, 0xc0e: 0x196f, 0xc0f: 0x1a05, 0xc10: 0x1a0b, 0xc11: 0x1a0e,\n\t0xc12: 0x1c30, 0xc13: 0x1a11, 0xc14: 0x1a23, 0xc15: 0x1c38, 0xc16: 0x1c44, 0xc17: 0x1990,\n\t0xc18: 0x1d57, 0xc19: 0x1bbc, 0xc1a: 0x1993, 0xc1b: 0x1a5c, 0xc1c: 0x19a5, 0xc1d: 0x19b4,\n\t0xc1e: 0x22e2, 0xc1f: 0x22dc, 0xc20: 0x1cc1, 0xc21: 0x1cd0, 0xc22: 0x1cdf, 0xc23: 0x1cee,\n\t0xc24: 0x1cfd, 0xc25: 0x1d0c, 0xc26: 0x1d1b, 0xc27: 0x1d2a, 0xc28: 0x1d39, 0xc29: 0x2186,\n\t0xc2a: 0x2198, 0xc2b: 0x21aa, 0xc2c: 0x21bc, 0xc2d: 0x21c8, 0xc2e: 0x21d4, 0xc2f: 0x21e0,\n\t0xc30: 0x21ec, 0xc31: 0x21f8, 0xc32: 0x2204, 0xc33: 0x2240, 0xc34: 0x224c, 0xc35: 0x2258,\n\t0xc36: 0x2264, 0xc37: 0x2270, 0xc38: 0x227c, 0xc39: 0x2282, 0xc3a: 0x2288, 0xc3b: 0x228e,\n\t0xc3c: 0x2294, 0xc3d: 0x22a6, 0xc3e: 0x22ac, 0xc3f: 0x1c10,\n\t// Block 0x31, offset 0xc40\n\t0xc40: 0x1377, 0xc41: 0x0cfb, 0xc42: 0x13d3, 0xc43: 0x139f, 0xc44: 0x0e57, 0xc45: 0x06eb,\n\t0xc46: 0x08df, 0xc47: 0x162b, 0xc48: 0x162b, 0xc49: 0x0a0b, 0xc4a: 0x145f, 0xc4b: 0x0943,\n\t0xc4c: 0x0a07, 0xc4d: 0x0bef, 0xc4e: 0x0fcf, 0xc4f: 0x115f, 0xc50: 0x1297, 0xc51: 0x12d3,\n\t0xc52: 0x1307, 0xc53: 0x141b, 0xc54: 0x0d73, 0xc55: 0x0dff, 0xc56: 0x0eab, 0xc57: 0x0f43,\n\t0xc58: 0x125f, 0xc59: 0x1447, 0xc5a: 0x1573, 0xc5b: 0x070f, 0xc5c: 0x08b3, 0xc5d: 0x0d87,\n\t0xc5e: 0x0ecf, 0xc5f: 0x1293, 0xc60: 0x15c3, 0xc61: 0x0ab3, 0xc62: 0x0e77, 0xc63: 0x1283,\n\t0xc64: 0x1317, 0xc65: 0x0c23, 0xc66: 0x11bb, 0xc67: 0x12df, 0xc68: 0x0b1f, 0xc69: 0x0d0f,\n\t0xc6a: 0x0e17, 0xc6b: 0x0f1b, 0xc6c: 0x1427, 0xc6d: 0x074f, 0xc6e: 0x07e7, 0xc6f: 0x0853,\n\t0xc70: 0x0c8b, 0xc71: 0x0d7f, 0xc72: 0x0ecb, 0xc73: 0x0fef, 0xc74: 0x1177, 0xc75: 0x128b,\n\t0xc76: 0x12a3, 0xc77: 0x13c7, 0xc78: 0x14ef, 0xc79: 0x15a3, 0xc7a: 0x15bf, 0xc7b: 0x102b,\n\t0xc7c: 0x106b, 0xc7d: 0x1123, 0xc7e: 0x1243, 0xc7f: 0x147b,\n\t// Block 0x32, offset 0xc80\n\t0xc80: 0x15cb, 0xc81: 0x134b, 0xc82: 0x09c7, 0xc83: 0x0b3b, 0xc84: 0x10db, 0xc85: 0x119b,\n\t0xc86: 0x0eff, 0xc87: 0x1033, 0xc88: 0x1397, 0xc89: 0x14e7, 0xc8a: 0x09c3, 0xc8b: 0x0a8f,\n\t0xc8c: 0x0d77, 0xc8d: 0x0e2b, 0xc8e: 0x0e5f, 0xc8f: 0x1113, 0xc90: 0x113b, 0xc91: 0x14a7,\n\t0xc92: 0x084f, 0xc93: 0x11a7, 0xc94: 0x07f3, 0xc95: 0x07ef, 0xc96: 0x1097, 0xc97: 0x1127,\n\t0xc98: 0x125b, 0xc99: 0x14af, 0xc9a: 0x1367, 0xc9b: 0x0c27, 0xc9c: 0x0d73, 0xc9d: 0x1357,\n\t0xc9e: 0x06f7, 0xc9f: 0x0a63, 0xca0: 0x0b93, 0xca1: 0x0f2f, 0xca2: 0x0faf, 0xca3: 0x0873,\n\t0xca4: 0x103b, 0xca5: 0x075f, 0xca6: 0x0b77, 0xca7: 0x06d7, 0xca8: 0x0deb, 0xca9: 0x0ca3,\n\t0xcaa: 0x110f, 0xcab: 0x08c7, 0xcac: 0x09b3, 0xcad: 0x0ffb, 0xcae: 0x1263, 0xcaf: 0x133b,\n\t0xcb0: 0x0db7, 0xcb1: 0x13f7, 0xcb2: 0x0de3, 0xcb3: 0x0c37, 0xcb4: 0x121b, 0xcb5: 0x0c57,\n\t0xcb6: 0x0fab, 0xcb7: 0x072b, 0xcb8: 0x07a7, 0xcb9: 0x07eb, 0xcba: 0x0d53, 0xcbb: 0x10fb,\n\t0xcbc: 0x11f3, 0xcbd: 0x1347, 0xcbe: 0x145b, 0xcbf: 0x085b,\n\t// Block 0x33, offset 0xcc0\n\t0xcc0: 0x090f, 0xcc1: 0x0a17, 0xcc2: 0x0b2f, 0xcc3: 0x0cbf, 0xcc4: 0x0e7b, 0xcc5: 0x103f,\n\t0xcc6: 0x1497, 0xcc7: 0x157b, 0xcc8: 0x15cf, 0xcc9: 0x15e7, 0xcca: 0x0837, 0xccb: 0x0cf3,\n\t0xccc: 0x0da3, 0xccd: 0x13eb, 0xcce: 0x0afb, 0xccf: 0x0bd7, 0xcd0: 0x0bf3, 0xcd1: 0x0c83,\n\t0xcd2: 0x0e6b, 0xcd3: 0x0eb7, 0xcd4: 0x0f67, 0xcd5: 0x108b, 0xcd6: 0x112f, 0xcd7: 0x1193,\n\t0xcd8: 0x13db, 0xcd9: 0x126b, 0xcda: 0x1403, 0xcdb: 0x147f, 0xcdc: 0x080f, 0xcdd: 0x083b,\n\t0xcde: 0x0923, 0xcdf: 0x0ea7, 0xce0: 0x12f3, 0xce1: 0x133b, 0xce2: 0x0b1b, 0xce3: 0x0b8b,\n\t0xce4: 0x0c4f, 0xce5: 0x0daf, 0xce6: 0x10d7, 0xce7: 0x0f23, 0xce8: 0x073b, 0xce9: 0x097f,\n\t0xcea: 0x0a63, 0xceb: 0x0ac7, 0xcec: 0x0b97, 0xced: 0x0f3f, 0xcee: 0x0f5b, 0xcef: 0x116b,\n\t0xcf0: 0x118b, 0xcf1: 0x1463, 0xcf2: 0x14e3, 0xcf3: 0x14f3, 0xcf4: 0x152f, 0xcf5: 0x0753,\n\t0xcf6: 0x107f, 0xcf7: 0x144f, 0xcf8: 0x14cb, 0xcf9: 0x0baf, 0xcfa: 0x0717, 0xcfb: 0x0777,\n\t0xcfc: 0x0a67, 0xcfd: 0x0a87, 0xcfe: 0x0caf, 0xcff: 0x0d73,\n\t// Block 0x34, offset 0xd00\n\t0xd00: 0x0ec3, 0xd01: 0x0fcb, 0xd02: 0x1277, 0xd03: 0x1417, 0xd04: 0x1623, 0xd05: 0x0ce3,\n\t0xd06: 0x14a3, 0xd07: 0x0833, 0xd08: 0x0d2f, 0xd09: 0x0d3b, 0xd0a: 0x0e0f, 0xd0b: 0x0e47,\n\t0xd0c: 0x0f4b, 0xd0d: 0x0fa7, 0xd0e: 0x1027, 0xd0f: 0x110b, 0xd10: 0x153b, 0xd11: 0x07af,\n\t0xd12: 0x0c03, 0xd13: 0x14b3, 0xd14: 0x0767, 0xd15: 0x0aab, 0xd16: 0x0e2f, 0xd17: 0x13df,\n\t0xd18: 0x0b67, 0xd19: 0x0bb7, 0xd1a: 0x0d43, 0xd1b: 0x0f2f, 0xd1c: 0x14bb, 0xd1d: 0x0817,\n\t0xd1e: 0x08ff, 0xd1f: 0x0a97, 0xd20: 0x0cd3, 0xd21: 0x0d1f, 0xd22: 0x0d5f, 0xd23: 0x0df3,\n\t0xd24: 0x0f47, 0xd25: 0x0fbb, 0xd26: 0x1157, 0xd27: 0x12f7, 0xd28: 0x1303, 0xd29: 0x1457,\n\t0xd2a: 0x14d7, 0xd2b: 0x0883, 0xd2c: 0x0e4b, 0xd2d: 0x0903, 0xd2e: 0x0ec7, 0xd2f: 0x0f6b,\n\t0xd30: 0x1287, 0xd31: 0x14bf, 0xd32: 0x15ab, 0xd33: 0x15d3, 0xd34: 0x0d37, 0xd35: 0x0e27,\n\t0xd36: 0x11c3, 0xd37: 0x10b7, 0xd38: 0x10c3, 0xd39: 0x10e7, 0xd3a: 0x0f17, 0xd3b: 0x0e9f,\n\t0xd3c: 0x1363, 0xd3d: 0x0733, 0xd3e: 0x122b, 0xd3f: 0x081b,\n\t// Block 0x35, offset 0xd40\n\t0xd40: 0x080b, 0xd41: 0x0b0b, 0xd42: 0x0c2b, 0xd43: 0x10f3, 0xd44: 0x0a53, 0xd45: 0x0e03,\n\t0xd46: 0x0cef, 0xd47: 0x13e7, 0xd48: 0x12e7, 0xd49: 0x14ab, 0xd4a: 0x1323, 0xd4b: 0x0b27,\n\t0xd4c: 0x0787, 0xd4d: 0x095b, 0xd50: 0x09af,\n\t0xd52: 0x0cdf, 0xd55: 0x07f7, 0xd56: 0x0f1f, 0xd57: 0x0fe3,\n\t0xd58: 0x1047, 0xd59: 0x1063, 0xd5a: 0x1067, 0xd5b: 0x107b, 0xd5c: 0x14fb, 0xd5d: 0x10eb,\n\t0xd5e: 0x116f, 0xd60: 0x128f, 0xd62: 0x1353,\n\t0xd65: 0x1407, 0xd66: 0x1433,\n\t0xd6a: 0x154f, 0xd6b: 0x1553, 0xd6c: 0x1557, 0xd6d: 0x15bb, 0xd6e: 0x142b, 0xd6f: 0x14c7,\n\t0xd70: 0x0757, 0xd71: 0x077b, 0xd72: 0x078f, 0xd73: 0x084b, 0xd74: 0x0857, 0xd75: 0x0897,\n\t0xd76: 0x094b, 0xd77: 0x0967, 0xd78: 0x096f, 0xd79: 0x09ab, 0xd7a: 0x09b7, 0xd7b: 0x0a93,\n\t0xd7c: 0x0a9b, 0xd7d: 0x0ba3, 0xd7e: 0x0bcb, 0xd7f: 0x0bd3,\n\t// Block 0x36, offset 0xd80\n\t0xd80: 0x0beb, 0xd81: 0x0c97, 0xd82: 0x0cc7, 0xd83: 0x0ce7, 0xd84: 0x0d57, 0xd85: 0x0e1b,\n\t0xd86: 0x0e37, 0xd87: 0x0e67, 0xd88: 0x0ebb, 0xd89: 0x0edb, 0xd8a: 0x0f4f, 0xd8b: 0x102f,\n\t0xd8c: 0x104b, 0xd8d: 0x1053, 0xd8e: 0x104f, 0xd8f: 0x1057, 0xd90: 0x105b, 0xd91: 0x105f,\n\t0xd92: 0x1073, 0xd93: 0x1077, 0xd94: 0x109b, 0xd95: 0x10af, 0xd96: 0x10cb, 0xd97: 0x112f,\n\t0xd98: 0x1137, 0xd99: 0x113f, 0xd9a: 0x1153, 0xd9b: 0x117b, 0xd9c: 0x11cb, 0xd9d: 0x11ff,\n\t0xd9e: 0x11ff, 0xd9f: 0x1267, 0xda0: 0x130f, 0xda1: 0x1327, 0xda2: 0x135b, 0xda3: 0x135f,\n\t0xda4: 0x13a3, 0xda5: 0x13a7, 0xda6: 0x13ff, 0xda7: 0x1407, 0xda8: 0x14db, 0xda9: 0x151f,\n\t0xdaa: 0x1537, 0xdab: 0x0b9b, 0xdac: 0x171e, 0xdad: 0x11e3,\n\t0xdb0: 0x06df, 0xdb1: 0x07e3, 0xdb2: 0x07a3, 0xdb3: 0x074b, 0xdb4: 0x078b, 0xdb5: 0x07b7,\n\t0xdb6: 0x0847, 0xdb7: 0x0863, 0xdb8: 0x094b, 0xdb9: 0x0937, 0xdba: 0x0947, 0xdbb: 0x0963,\n\t0xdbc: 0x09af, 0xdbd: 0x09bf, 0xdbe: 0x0a03, 0xdbf: 0x0a0f,\n\t// Block 0x37, offset 0xdc0\n\t0xdc0: 0x0a2b, 0xdc1: 0x0a3b, 0xdc2: 0x0b23, 0xdc3: 0x0b2b, 0xdc4: 0x0b5b, 0xdc5: 0x0b7b,\n\t0xdc6: 0x0bab, 0xdc7: 0x0bc3, 0xdc8: 0x0bb3, 0xdc9: 0x0bd3, 0xdca: 0x0bc7, 0xdcb: 0x0beb,\n\t0xdcc: 0x0c07, 0xdcd: 0x0c5f, 0xdce: 0x0c6b, 0xdcf: 0x0c73, 0xdd0: 0x0c9b, 0xdd1: 0x0cdf,\n\t0xdd2: 0x0d0f, 0xdd3: 0x0d13, 0xdd4: 0x0d27, 0xdd5: 0x0da7, 0xdd6: 0x0db7, 0xdd7: 0x0e0f,\n\t0xdd8: 0x0e5b, 0xdd9: 0x0e53, 0xdda: 0x0e67, 0xddb: 0x0e83, 0xddc: 0x0ebb, 0xddd: 0x1013,\n\t0xdde: 0x0edf, 0xddf: 0x0f13, 0xde0: 0x0f1f, 0xde1: 0x0f5f, 0xde2: 0x0f7b, 0xde3: 0x0f9f,\n\t0xde4: 0x0fc3, 0xde5: 0x0fc7, 0xde6: 0x0fe3, 0xde7: 0x0fe7, 0xde8: 0x0ff7, 0xde9: 0x100b,\n\t0xdea: 0x1007, 0xdeb: 0x1037, 0xdec: 0x10b3, 0xded: 0x10cb, 0xdee: 0x10e3, 0xdef: 0x111b,\n\t0xdf0: 0x112f, 0xdf1: 0x114b, 0xdf2: 0x117b, 0xdf3: 0x122f, 0xdf4: 0x1257, 0xdf5: 0x12cb,\n\t0xdf6: 0x1313, 0xdf7: 0x131f, 0xdf8: 0x1327, 0xdf9: 0x133f, 0xdfa: 0x1353, 0xdfb: 0x1343,\n\t0xdfc: 0x135b, 0xdfd: 0x1357, 0xdfe: 0x134f, 0xdff: 0x135f,\n\t// Block 0x38, offset 0xe00\n\t0xe00: 0x136b, 0xe01: 0x13a7, 0xe02: 0x13e3, 0xe03: 0x1413, 0xe04: 0x144b, 0xe05: 0x146b,\n\t0xe06: 0x14b7, 0xe07: 0x14db, 0xe08: 0x14fb, 0xe09: 0x150f, 0xe0a: 0x151f, 0xe0b: 0x152b,\n\t0xe0c: 0x1537, 0xe0d: 0x158b, 0xe0e: 0x162b, 0xe0f: 0x16b5, 0xe10: 0x16b0, 0xe11: 0x16e2,\n\t0xe12: 0x0607, 0xe13: 0x062f, 0xe14: 0x0633, 0xe15: 0x1764, 0xe16: 0x1791, 0xe17: 0x1809,\n\t0xe18: 0x1617, 0xe19: 0x1627,\n\t// Block 0x39, offset 0xe40\n\t0xe40: 0x19d5, 0xe41: 0x19d8, 0xe42: 0x19db, 0xe43: 0x1c08, 0xe44: 0x1c0c, 0xe45: 0x1a5f,\n\t0xe46: 0x1a5f,\n\t0xe53: 0x1d75, 0xe54: 0x1d66, 0xe55: 0x1d6b, 0xe56: 0x1d7a, 0xe57: 0x1d70,\n\t0xe5d: 0x4390,\n\t0xe5e: 0x8115, 0xe5f: 0x4402, 0xe60: 0x022d, 0xe61: 0x0215, 0xe62: 0x021e, 0xe63: 0x0221,\n\t0xe64: 0x0224, 0xe65: 0x0227, 0xe66: 0x022a, 0xe67: 0x0230, 0xe68: 0x0233, 0xe69: 0x0017,\n\t0xe6a: 0x43f0, 0xe6b: 0x43f6, 0xe6c: 0x44f4, 0xe6d: 0x44fc, 0xe6e: 0x4348, 0xe6f: 0x434e,\n\t0xe70: 0x4354, 0xe71: 0x435a, 0xe72: 0x4366, 0xe73: 0x436c, 0xe74: 0x4372, 0xe75: 0x437e,\n\t0xe76: 0x4384, 0xe78: 0x438a, 0xe79: 0x4396, 0xe7a: 0x439c, 0xe7b: 0x43a2,\n\t0xe7c: 0x43ae, 0xe7e: 0x43b4,\n\t// Block 0x3a, offset 0xe80\n\t0xe80: 0x43ba, 0xe81: 0x43c0, 0xe83: 0x43c6, 0xe84: 0x43cc,\n\t0xe86: 0x43d8, 0xe87: 0x43de, 0xe88: 0x43e4, 0xe89: 0x43ea, 0xe8a: 0x43fc, 0xe8b: 0x4378,\n\t0xe8c: 0x4360, 0xe8d: 0x43a8, 0xe8e: 0x43d2, 0xe8f: 0x1d7f, 0xe90: 0x0299, 0xe91: 0x0299,\n\t0xe92: 0x02a2, 0xe93: 0x02a2, 0xe94: 0x02a2, 0xe95: 0x02a2, 0xe96: 0x02a5, 0xe97: 0x02a5,\n\t0xe98: 0x02a5, 0xe99: 0x02a5, 0xe9a: 0x02ab, 0xe9b: 0x02ab, 0xe9c: 0x02ab, 0xe9d: 0x02ab,\n\t0xe9e: 0x029f, 0xe9f: 0x029f, 0xea0: 0x029f, 0xea1: 0x029f, 0xea2: 0x02a8, 0xea3: 0x02a8,\n\t0xea4: 0x02a8, 0xea5: 0x02a8, 0xea6: 0x029c, 0xea7: 0x029c, 0xea8: 0x029c, 0xea9: 0x029c,\n\t0xeaa: 0x02cf, 0xeab: 0x02cf, 0xeac: 0x02cf, 0xead: 0x02cf, 0xeae: 0x02d2, 0xeaf: 0x02d2,\n\t0xeb0: 0x02d2, 0xeb1: 0x02d2, 0xeb2: 0x02b1, 0xeb3: 0x02b1, 0xeb4: 0x02b1, 0xeb5: 0x02b1,\n\t0xeb6: 0x02ae, 0xeb7: 0x02ae, 0xeb8: 0x02ae, 0xeb9: 0x02ae, 0xeba: 0x02b4, 0xebb: 0x02b4,\n\t0xebc: 0x02b4, 0xebd: 0x02b4, 0xebe: 0x02b7, 0xebf: 0x02b7,\n\t// Block 0x3b, offset 0xec0\n\t0xec0: 0x02b7, 0xec1: 0x02b7, 0xec2: 0x02c0, 0xec3: 0x02c0, 0xec4: 0x02bd, 0xec5: 0x02bd,\n\t0xec6: 0x02c3, 0xec7: 0x02c3, 0xec8: 0x02ba, 0xec9: 0x02ba, 0xeca: 0x02c9, 0xecb: 0x02c9,\n\t0xecc: 0x02c6, 0xecd: 0x02c6, 0xece: 0x02d5, 0xecf: 0x02d5, 0xed0: 0x02d5, 0xed1: 0x02d5,\n\t0xed2: 0x02db, 0xed3: 0x02db, 0xed4: 0x02db, 0xed5: 0x02db, 0xed6: 0x02e1, 0xed7: 0x02e1,\n\t0xed8: 0x02e1, 0xed9: 0x02e1, 0xeda: 0x02de, 0xedb: 0x02de, 0xedc: 0x02de, 0xedd: 0x02de,\n\t0xede: 0x02e4, 0xedf: 0x02e4, 0xee0: 0x02e7, 0xee1: 0x02e7, 0xee2: 0x02e7, 0xee3: 0x02e7,\n\t0xee4: 0x446e, 0xee5: 0x446e, 0xee6: 0x02ed, 0xee7: 0x02ed, 0xee8: 0x02ed, 0xee9: 0x02ed,\n\t0xeea: 0x02ea, 0xeeb: 0x02ea, 0xeec: 0x02ea, 0xeed: 0x02ea, 0xeee: 0x0308, 0xeef: 0x0308,\n\t0xef0: 0x4468, 0xef1: 0x4468,\n\t// Block 0x3c, offset 0xf00\n\t0xf13: 0x02d8, 0xf14: 0x02d8, 0xf15: 0x02d8, 0xf16: 0x02d8, 0xf17: 0x02f6,\n\t0xf18: 0x02f6, 0xf19: 0x02f3, 0xf1a: 0x02f3, 0xf1b: 0x02f9, 0xf1c: 0x02f9, 0xf1d: 0x204f,\n\t0xf1e: 0x02ff, 0xf1f: 0x02ff, 0xf20: 0x02f0, 0xf21: 0x02f0, 0xf22: 0x02fc, 0xf23: 0x02fc,\n\t0xf24: 0x0305, 0xf25: 0x0305, 0xf26: 0x0305, 0xf27: 0x0305, 0xf28: 0x028d, 0xf29: 0x028d,\n\t0xf2a: 0x25aa, 0xf2b: 0x25aa, 0xf2c: 0x261a, 0xf2d: 0x261a, 0xf2e: 0x25e9, 0xf2f: 0x25e9,\n\t0xf30: 0x2605, 0xf31: 0x2605, 0xf32: 0x25fe, 0xf33: 0x25fe, 0xf34: 0x260c, 0xf35: 0x260c,\n\t0xf36: 0x2613, 0xf37: 0x2613, 0xf38: 0x2613, 0xf39: 0x25f0, 0xf3a: 0x25f0, 0xf3b: 0x25f0,\n\t0xf3c: 0x0302, 0xf3d: 0x0302, 0xf3e: 0x0302, 0xf3f: 0x0302,\n\t// Block 0x3d, offset 0xf40\n\t0xf40: 0x25b1, 0xf41: 0x25b8, 0xf42: 0x25d4, 0xf43: 0x25f0, 0xf44: 0x25f7, 0xf45: 0x1d89,\n\t0xf46: 0x1d8e, 0xf47: 0x1d93, 0xf48: 0x1da2, 0xf49: 0x1db1, 0xf4a: 0x1db6, 0xf4b: 0x1dbb,\n\t0xf4c: 0x1dc0, 0xf4d: 0x1dc5, 0xf4e: 0x1dd4, 0xf4f: 0x1de3, 0xf50: 0x1de8, 0xf51: 0x1ded,\n\t0xf52: 0x1dfc, 0xf53: 0x1e0b, 0xf54: 0x1e10, 0xf55: 0x1e15, 0xf56: 0x1e1a, 0xf57: 0x1e29,\n\t0xf58: 0x1e2e, 0xf59: 0x1e3d, 0xf5a: 0x1e42, 0xf5b: 0x1e47, 0xf5c: 0x1e56, 0xf5d: 0x1e5b,\n\t0xf5e: 0x1e60, 0xf5f: 0x1e6a, 0xf60: 0x1ea6, 0xf61: 0x1eb5, 0xf62: 0x1ec4, 0xf63: 0x1ec9,\n\t0xf64: 0x1ece, 0xf65: 0x1ed8, 0xf66: 0x1ee7, 0xf67: 0x1eec, 0xf68: 0x1efb, 0xf69: 0x1f00,\n\t0xf6a: 0x1f05, 0xf6b: 0x1f14, 0xf6c: 0x1f19, 0xf6d: 0x1f28, 0xf6e: 0x1f2d, 0xf6f: 0x1f32,\n\t0xf70: 0x1f37, 0xf71: 0x1f3c, 0xf72: 0x1f41, 0xf73: 0x1f46, 0xf74: 0x1f4b, 0xf75: 0x1f50,\n\t0xf76: 0x1f55, 0xf77: 0x1f5a, 0xf78: 0x1f5f, 0xf79: 0x1f64, 0xf7a: 0x1f69, 0xf7b: 0x1f6e,\n\t0xf7c: 0x1f73, 0xf7d: 0x1f78, 0xf7e: 0x1f7d, 0xf7f: 0x1f87,\n\t// Block 0x3e, offset 0xf80\n\t0xf80: 0x1f8c, 0xf81: 0x1f91, 0xf82: 0x1f96, 0xf83: 0x1fa0, 0xf84: 0x1fa5, 0xf85: 0x1faf,\n\t0xf86: 0x1fb4, 0xf87: 0x1fb9, 0xf88: 0x1fbe, 0xf89: 0x1fc3, 0xf8a: 0x1fc8, 0xf8b: 0x1fcd,\n\t0xf8c: 0x1fd2, 0xf8d: 0x1fd7, 0xf8e: 0x1fe6, 0xf8f: 0x1ff5, 0xf90: 0x1ffa, 0xf91: 0x1fff,\n\t0xf92: 0x2004, 0xf93: 0x2009, 0xf94: 0x200e, 0xf95: 0x2018, 0xf96: 0x201d, 0xf97: 0x2022,\n\t0xf98: 0x2031, 0xf99: 0x2040, 0xf9a: 0x2045, 0xf9b: 0x4420, 0xf9c: 0x4426, 0xf9d: 0x445c,\n\t0xf9e: 0x44b3, 0xf9f: 0x44ba, 0xfa0: 0x44c1, 0xfa1: 0x44c8, 0xfa2: 0x44cf, 0xfa3: 0x44d6,\n\t0xfa4: 0x25c6, 0xfa5: 0x25cd, 0xfa6: 0x25d4, 0xfa7: 0x25db, 0xfa8: 0x25f0, 0xfa9: 0x25f7,\n\t0xfaa: 0x1d98, 0xfab: 0x1d9d, 0xfac: 0x1da2, 0xfad: 0x1da7, 0xfae: 0x1db1, 0xfaf: 0x1db6,\n\t0xfb0: 0x1dca, 0xfb1: 0x1dcf, 0xfb2: 0x1dd4, 0xfb3: 0x1dd9, 0xfb4: 0x1de3, 0xfb5: 0x1de8,\n\t0xfb6: 0x1df2, 0xfb7: 0x1df7, 0xfb8: 0x1dfc, 0xfb9: 0x1e01, 0xfba: 0x1e0b, 0xfbb: 0x1e10,\n\t0xfbc: 0x1f3c, 0xfbd: 0x1f41, 0xfbe: 0x1f50, 0xfbf: 0x1f55,\n\t// Block 0x3f, offset 0xfc0\n\t0xfc0: 0x1f5a, 0xfc1: 0x1f6e, 0xfc2: 0x1f73, 0xfc3: 0x1f78, 0xfc4: 0x1f7d, 0xfc5: 0x1f96,\n\t0xfc6: 0x1fa0, 0xfc7: 0x1fa5, 0xfc8: 0x1faa, 0xfc9: 0x1fbe, 0xfca: 0x1fdc, 0xfcb: 0x1fe1,\n\t0xfcc: 0x1fe6, 0xfcd: 0x1feb, 0xfce: 0x1ff5, 0xfcf: 0x1ffa, 0xfd0: 0x445c, 0xfd1: 0x2027,\n\t0xfd2: 0x202c, 0xfd3: 0x2031, 0xfd4: 0x2036, 0xfd5: 0x2040, 0xfd6: 0x2045, 0xfd7: 0x25b1,\n\t0xfd8: 0x25b8, 0xfd9: 0x25bf, 0xfda: 0x25d4, 0xfdb: 0x25e2, 0xfdc: 0x1d89, 0xfdd: 0x1d8e,\n\t0xfde: 0x1d93, 0xfdf: 0x1da2, 0xfe0: 0x1dac, 0xfe1: 0x1dbb, 0xfe2: 0x1dc0, 0xfe3: 0x1dc5,\n\t0xfe4: 0x1dd4, 0xfe5: 0x1dde, 0xfe6: 0x1dfc, 0xfe7: 0x1e15, 0xfe8: 0x1e1a, 0xfe9: 0x1e29,\n\t0xfea: 0x1e2e, 0xfeb: 0x1e3d, 0xfec: 0x1e47, 0xfed: 0x1e56, 0xfee: 0x1e5b, 0xfef: 0x1e60,\n\t0xff0: 0x1e6a, 0xff1: 0x1ea6, 0xff2: 0x1eab, 0xff3: 0x1eb5, 0xff4: 0x1ec4, 0xff5: 0x1ec9,\n\t0xff6: 0x1ece, 0xff7: 0x1ed8, 0xff8: 0x1ee7, 0xff9: 0x1efb, 0xffa: 0x1f00, 0xffb: 0x1f05,\n\t0xffc: 0x1f14, 0xffd: 0x1f19, 0xffe: 0x1f28, 0xfff: 0x1f2d,\n\t// Block 0x40, offset 0x1000\n\t0x1000: 0x1f32, 0x1001: 0x1f37, 0x1002: 0x1f46, 0x1003: 0x1f4b, 0x1004: 0x1f5f, 0x1005: 0x1f64,\n\t0x1006: 0x1f69, 0x1007: 0x1f6e, 0x1008: 0x1f73, 0x1009: 0x1f87, 0x100a: 0x1f8c, 0x100b: 0x1f91,\n\t0x100c: 0x1f96, 0x100d: 0x1f9b, 0x100e: 0x1faf, 0x100f: 0x1fb4, 0x1010: 0x1fb9, 0x1011: 0x1fbe,\n\t0x1012: 0x1fcd, 0x1013: 0x1fd2, 0x1014: 0x1fd7, 0x1015: 0x1fe6, 0x1016: 0x1ff0, 0x1017: 0x1fff,\n\t0x1018: 0x2004, 0x1019: 0x4450, 0x101a: 0x2018, 0x101b: 0x201d, 0x101c: 0x2022, 0x101d: 0x2031,\n\t0x101e: 0x203b, 0x101f: 0x25d4, 0x1020: 0x25e2, 0x1021: 0x1da2, 0x1022: 0x1dac, 0x1023: 0x1dd4,\n\t0x1024: 0x1dde, 0x1025: 0x1dfc, 0x1026: 0x1e06, 0x1027: 0x1e6a, 0x1028: 0x1e6f, 0x1029: 0x1e92,\n\t0x102a: 0x1e97, 0x102b: 0x1f6e, 0x102c: 0x1f73, 0x102d: 0x1f96, 0x102e: 0x1fe6, 0x102f: 0x1ff0,\n\t0x1030: 0x2031, 0x1031: 0x203b, 0x1032: 0x4504, 0x1033: 0x450c, 0x1034: 0x4514, 0x1035: 0x1ef1,\n\t0x1036: 0x1ef6, 0x1037: 0x1f0a, 0x1038: 0x1f0f, 0x1039: 0x1f1e, 0x103a: 0x1f23, 0x103b: 0x1e74,\n\t0x103c: 0x1e79, 0x103d: 0x1e9c, 0x103e: 0x1ea1, 0x103f: 0x1e33,\n\t// Block 0x41, offset 0x1040\n\t0x1040: 0x1e38, 0x1041: 0x1e1f, 0x1042: 0x1e24, 0x1043: 0x1e4c, 0x1044: 0x1e51, 0x1045: 0x1eba,\n\t0x1046: 0x1ebf, 0x1047: 0x1edd, 0x1048: 0x1ee2, 0x1049: 0x1e7e, 0x104a: 0x1e83, 0x104b: 0x1e88,\n\t0x104c: 0x1e92, 0x104d: 0x1e8d, 0x104e: 0x1e65, 0x104f: 0x1eb0, 0x1050: 0x1ed3, 0x1051: 0x1ef1,\n\t0x1052: 0x1ef6, 0x1053: 0x1f0a, 0x1054: 0x1f0f, 0x1055: 0x1f1e, 0x1056: 0x1f23, 0x1057: 0x1e74,\n\t0x1058: 0x1e79, 0x1059: 0x1e9c, 0x105a: 0x1ea1, 0x105b: 0x1e33, 0x105c: 0x1e38, 0x105d: 0x1e1f,\n\t0x105e: 0x1e24, 0x105f: 0x1e4c, 0x1060: 0x1e51, 0x1061: 0x1eba, 0x1062: 0x1ebf, 0x1063: 0x1edd,\n\t0x1064: 0x1ee2, 0x1065: 0x1e7e, 0x1066: 0x1e83, 0x1067: 0x1e88, 0x1068: 0x1e92, 0x1069: 0x1e8d,\n\t0x106a: 0x1e65, 0x106b: 0x1eb0, 0x106c: 0x1ed3, 0x106d: 0x1e7e, 0x106e: 0x1e83, 0x106f: 0x1e88,\n\t0x1070: 0x1e92, 0x1071: 0x1e6f, 0x1072: 0x1e97, 0x1073: 0x1eec, 0x1074: 0x1e56, 0x1075: 0x1e5b,\n\t0x1076: 0x1e60, 0x1077: 0x1e7e, 0x1078: 0x1e83, 0x1079: 0x1e88, 0x107a: 0x1eec, 0x107b: 0x1efb,\n\t0x107c: 0x4408, 0x107d: 0x4408,\n\t// Block 0x42, offset 0x1080\n\t0x1090: 0x2311, 0x1091: 0x2326,\n\t0x1092: 0x2326, 0x1093: 0x232d, 0x1094: 0x2334, 0x1095: 0x2349, 0x1096: 0x2350, 0x1097: 0x2357,\n\t0x1098: 0x237a, 0x1099: 0x237a, 0x109a: 0x239d, 0x109b: 0x2396, 0x109c: 0x23b2, 0x109d: 0x23a4,\n\t0x109e: 0x23ab, 0x109f: 0x23ce, 0x10a0: 0x23ce, 0x10a1: 0x23c7, 0x10a2: 0x23d5, 0x10a3: 0x23d5,\n\t0x10a4: 0x23ff, 0x10a5: 0x23ff, 0x10a6: 0x241b, 0x10a7: 0x23e3, 0x10a8: 0x23e3, 0x10a9: 0x23dc,\n\t0x10aa: 0x23f1, 0x10ab: 0x23f1, 0x10ac: 0x23f8, 0x10ad: 0x23f8, 0x10ae: 0x2422, 0x10af: 0x2430,\n\t0x10b0: 0x2430, 0x10b1: 0x2437, 0x10b2: 0x2437, 0x10b3: 0x243e, 0x10b4: 0x2445, 0x10b5: 0x244c,\n\t0x10b6: 0x2453, 0x10b7: 0x2453, 0x10b8: 0x245a, 0x10b9: 0x2468, 0x10ba: 0x2476, 0x10bb: 0x246f,\n\t0x10bc: 0x247d, 0x10bd: 0x247d, 0x10be: 0x2492, 0x10bf: 0x2499,\n\t// Block 0x43, offset 0x10c0\n\t0x10c0: 0x24ca, 0x10c1: 0x24d8, 0x10c2: 0x24d1, 0x10c3: 0x24b5, 0x10c4: 0x24b5, 0x10c5: 0x24df,\n\t0x10c6: 0x24df, 0x10c7: 0x24e6, 0x10c8: 0x24e6, 0x10c9: 0x2510, 0x10ca: 0x2517, 0x10cb: 0x251e,\n\t0x10cc: 0x24f4, 0x10cd: 0x2502, 0x10ce: 0x2525, 0x10cf: 0x252c,\n\t0x10d2: 0x24fb, 0x10d3: 0x2580, 0x10d4: 0x2587, 0x10d5: 0x255d, 0x10d6: 0x2564, 0x10d7: 0x2548,\n\t0x10d8: 0x2548, 0x10d9: 0x254f, 0x10da: 0x2579, 0x10db: 0x2572, 0x10dc: 0x259c, 0x10dd: 0x259c,\n\t0x10de: 0x230a, 0x10df: 0x231f, 0x10e0: 0x2318, 0x10e1: 0x2342, 0x10e2: 0x233b, 0x10e3: 0x2365,\n\t0x10e4: 0x235e, 0x10e5: 0x2388, 0x10e6: 0x236c, 0x10e7: 0x2381, 0x10e8: 0x23b9, 0x10e9: 0x2406,\n\t0x10ea: 0x23ea, 0x10eb: 0x2429, 0x10ec: 0x24c3, 0x10ed: 0x24ed, 0x10ee: 0x2595, 0x10ef: 0x258e,\n\t0x10f0: 0x25a3, 0x10f1: 0x253a, 0x10f2: 0x24a0, 0x10f3: 0x256b, 0x10f4: 0x2492, 0x10f5: 0x24ca,\n\t0x10f6: 0x2461, 0x10f7: 0x24ae, 0x10f8: 0x2541, 0x10f9: 0x2533, 0x10fa: 0x24bc, 0x10fb: 0x24a7,\n\t0x10fc: 0x24bc, 0x10fd: 0x2541, 0x10fe: 0x2373, 0x10ff: 0x238f,\n\t// Block 0x44, offset 0x1100\n\t0x1100: 0x2509, 0x1101: 0x2484, 0x1102: 0x2303, 0x1103: 0x24a7, 0x1104: 0x244c, 0x1105: 0x241b,\n\t0x1106: 0x23c0, 0x1107: 0x2556,\n\t0x1130: 0x2414, 0x1131: 0x248b, 0x1132: 0x27bf, 0x1133: 0x27b6, 0x1134: 0x27ec, 0x1135: 0x27da,\n\t0x1136: 0x27c8, 0x1137: 0x27e3, 0x1138: 0x27f5, 0x1139: 0x240d, 0x113a: 0x2c7c, 0x113b: 0x2afc,\n\t0x113c: 0x27d1,\n\t// Block 0x45, offset 0x1140\n\t0x1150: 0x0019, 0x1151: 0x0483,\n\t0x1152: 0x0487, 0x1153: 0x0035, 0x1154: 0x0037, 0x1155: 0x0003, 0x1156: 0x003f, 0x1157: 0x04bf,\n\t0x1158: 0x04c3, 0x1159: 0x1b5c,\n\t0x1160: 0x8132, 0x1161: 0x8132, 0x1162: 0x8132, 0x1163: 0x8132,\n\t0x1164: 0x8132, 0x1165: 0x8132, 0x1166: 0x8132, 0x1167: 0x812d, 0x1168: 0x812d, 0x1169: 0x812d,\n\t0x116a: 0x812d, 0x116b: 0x812d, 0x116c: 0x812d, 0x116d: 0x812d, 0x116e: 0x8132, 0x116f: 0x8132,\n\t0x1170: 0x1873, 0x1171: 0x0443, 0x1172: 0x043f, 0x1173: 0x007f, 0x1174: 0x007f, 0x1175: 0x0011,\n\t0x1176: 0x0013, 0x1177: 0x00b7, 0x1178: 0x00bb, 0x1179: 0x04b7, 0x117a: 0x04bb, 0x117b: 0x04ab,\n\t0x117c: 0x04af, 0x117d: 0x0493, 0x117e: 0x0497, 0x117f: 0x048b,\n\t// Block 0x46, offset 0x1180\n\t0x1180: 0x048f, 0x1181: 0x049b, 0x1182: 0x049f, 0x1183: 0x04a3, 0x1184: 0x04a7,\n\t0x1187: 0x0077, 0x1188: 0x007b, 0x1189: 0x4269, 0x118a: 0x4269, 0x118b: 0x4269,\n\t0x118c: 0x4269, 0x118d: 0x007f, 0x118e: 0x007f, 0x118f: 0x007f, 0x1190: 0x0019, 0x1191: 0x0483,\n\t0x1192: 0x001d, 0x1194: 0x0037, 0x1195: 0x0035, 0x1196: 0x003f, 0x1197: 0x0003,\n\t0x1198: 0x0443, 0x1199: 0x0011, 0x119a: 0x0013, 0x119b: 0x00b7, 0x119c: 0x00bb, 0x119d: 0x04b7,\n\t0x119e: 0x04bb, 0x119f: 0x0007, 0x11a0: 0x000d, 0x11a1: 0x0015, 0x11a2: 0x0017, 0x11a3: 0x001b,\n\t0x11a4: 0x0039, 0x11a5: 0x003d, 0x11a6: 0x003b, 0x11a8: 0x0079, 0x11a9: 0x0009,\n\t0x11aa: 0x000b, 0x11ab: 0x0041,\n\t0x11b0: 0x42aa, 0x11b1: 0x442c, 0x11b2: 0x42af, 0x11b4: 0x42b4,\n\t0x11b6: 0x42b9, 0x11b7: 0x4432, 0x11b8: 0x42be, 0x11b9: 0x4438, 0x11ba: 0x42c3, 0x11bb: 0x443e,\n\t0x11bc: 0x42c8, 0x11bd: 0x4444, 0x11be: 0x42cd, 0x11bf: 0x444a,\n\t// Block 0x47, offset 0x11c0\n\t0x11c0: 0x0236, 0x11c1: 0x440e, 0x11c2: 0x440e, 0x11c3: 0x4414, 0x11c4: 0x4414, 0x11c5: 0x4456,\n\t0x11c6: 0x4456, 0x11c7: 0x441a, 0x11c8: 0x441a, 0x11c9: 0x4462, 0x11ca: 0x4462, 0x11cb: 0x4462,\n\t0x11cc: 0x4462, 0x11cd: 0x0239, 0x11ce: 0x0239, 0x11cf: 0x023c, 0x11d0: 0x023c, 0x11d1: 0x023c,\n\t0x11d2: 0x023c, 0x11d3: 0x023f, 0x11d4: 0x023f, 0x11d5: 0x0242, 0x11d6: 0x0242, 0x11d7: 0x0242,\n\t0x11d8: 0x0242, 0x11d9: 0x0245, 0x11da: 0x0245, 0x11db: 0x0245, 0x11dc: 0x0245, 0x11dd: 0x0248,\n\t0x11de: 0x0248, 0x11df: 0x0248, 0x11e0: 0x0248, 0x11e1: 0x024b, 0x11e2: 0x024b, 0x11e3: 0x024b,\n\t0x11e4: 0x024b, 0x11e5: 0x024e, 0x11e6: 0x024e, 0x11e7: 0x024e, 0x11e8: 0x024e, 0x11e9: 0x0251,\n\t0x11ea: 0x0251, 0x11eb: 0x0254, 0x11ec: 0x0254, 0x11ed: 0x0257, 0x11ee: 0x0257, 0x11ef: 0x025a,\n\t0x11f0: 0x025a, 0x11f1: 0x025d, 0x11f2: 0x025d, 0x11f3: 0x025d, 0x11f4: 0x025d, 0x11f5: 0x0260,\n\t0x11f6: 0x0260, 0x11f7: 0x0260, 0x11f8: 0x0260, 0x11f9: 0x0263, 0x11fa: 0x0263, 0x11fb: 0x0263,\n\t0x11fc: 0x0263, 0x11fd: 0x0266, 0x11fe: 0x0266, 0x11ff: 0x0266,\n\t// Block 0x48, offset 0x1200\n\t0x1200: 0x0266, 0x1201: 0x0269, 0x1202: 0x0269, 0x1203: 0x0269, 0x1204: 0x0269, 0x1205: 0x026c,\n\t0x1206: 0x026c, 0x1207: 0x026c, 0x1208: 0x026c, 0x1209: 0x026f, 0x120a: 0x026f, 0x120b: 0x026f,\n\t0x120c: 0x026f, 0x120d: 0x0272, 0x120e: 0x0272, 0x120f: 0x0272, 0x1210: 0x0272, 0x1211: 0x0275,\n\t0x1212: 0x0275, 0x1213: 0x0275, 0x1214: 0x0275, 0x1215: 0x0278, 0x1216: 0x0278, 0x1217: 0x0278,\n\t0x1218: 0x0278, 0x1219: 0x027b, 0x121a: 0x027b, 0x121b: 0x027b, 0x121c: 0x027b, 0x121d: 0x027e,\n\t0x121e: 0x027e, 0x121f: 0x027e, 0x1220: 0x027e, 0x1221: 0x0281, 0x1222: 0x0281, 0x1223: 0x0281,\n\t0x1224: 0x0281, 0x1225: 0x0284, 0x1226: 0x0284, 0x1227: 0x0284, 0x1228: 0x0284, 0x1229: 0x0287,\n\t0x122a: 0x0287, 0x122b: 0x0287, 0x122c: 0x0287, 0x122d: 0x028a, 0x122e: 0x028a, 0x122f: 0x028d,\n\t0x1230: 0x028d, 0x1231: 0x0290, 0x1232: 0x0290, 0x1233: 0x0290, 0x1234: 0x0290, 0x1235: 0x2e00,\n\t0x1236: 0x2e00, 0x1237: 0x2e08, 0x1238: 0x2e08, 0x1239: 0x2e10, 0x123a: 0x2e10, 0x123b: 0x1f82,\n\t0x123c: 0x1f82,\n\t// Block 0x49, offset 0x1240\n\t0x1240: 0x0081, 0x1241: 0x0083, 0x1242: 0x0085, 0x1243: 0x0087, 0x1244: 0x0089, 0x1245: 0x008b,\n\t0x1246: 0x008d, 0x1247: 0x008f, 0x1248: 0x0091, 0x1249: 0x0093, 0x124a: 0x0095, 0x124b: 0x0097,\n\t0x124c: 0x0099, 0x124d: 0x009b, 0x124e: 0x009d, 0x124f: 0x009f, 0x1250: 0x00a1, 0x1251: 0x00a3,\n\t0x1252: 0x00a5, 0x1253: 0x00a7, 0x1254: 0x00a9, 0x1255: 0x00ab, 0x1256: 0x00ad, 0x1257: 0x00af,\n\t0x1258: 0x00b1, 0x1259: 0x00b3, 0x125a: 0x00b5, 0x125b: 0x00b7, 0x125c: 0x00b9, 0x125d: 0x00bb,\n\t0x125e: 0x00bd, 0x125f: 0x0477, 0x1260: 0x047b, 0x1261: 0x0487, 0x1262: 0x049b, 0x1263: 0x049f,\n\t0x1264: 0x0483, 0x1265: 0x05ab, 0x1266: 0x05a3, 0x1267: 0x04c7, 0x1268: 0x04cf, 0x1269: 0x04d7,\n\t0x126a: 0x04df, 0x126b: 0x04e7, 0x126c: 0x056b, 0x126d: 0x0573, 0x126e: 0x057b, 0x126f: 0x051f,\n\t0x1270: 0x05af, 0x1271: 0x04cb, 0x1272: 0x04d3, 0x1273: 0x04db, 0x1274: 0x04e3, 0x1275: 0x04eb,\n\t0x1276: 0x04ef, 0x1277: 0x04f3, 0x1278: 0x04f7, 0x1279: 0x04fb, 0x127a: 0x04ff, 0x127b: 0x0503,\n\t0x127c: 0x0507, 0x127d: 0x050b, 0x127e: 0x050f, 0x127f: 0x0513,\n\t// Block 0x4a, offset 0x1280\n\t0x1280: 0x0517, 0x1281: 0x051b, 0x1282: 0x0523, 0x1283: 0x0527, 0x1284: 0x052b, 0x1285: 0x052f,\n\t0x1286: 0x0533, 0x1287: 0x0537, 0x1288: 0x053b, 0x1289: 0x053f, 0x128a: 0x0543, 0x128b: 0x0547,\n\t0x128c: 0x054b, 0x128d: 0x054f, 0x128e: 0x0553, 0x128f: 0x0557, 0x1290: 0x055b, 0x1291: 0x055f,\n\t0x1292: 0x0563, 0x1293: 0x0567, 0x1294: 0x056f, 0x1295: 0x0577, 0x1296: 0x057f, 0x1297: 0x0583,\n\t0x1298: 0x0587, 0x1299: 0x058b, 0x129a: 0x058f, 0x129b: 0x0593, 0x129c: 0x0597, 0x129d: 0x05a7,\n\t0x129e: 0x4a78, 0x129f: 0x4a7e, 0x12a0: 0x03c3, 0x12a1: 0x0313, 0x12a2: 0x0317, 0x12a3: 0x4a3b,\n\t0x12a4: 0x031b, 0x12a5: 0x4a41, 0x12a6: 0x4a47, 0x12a7: 0x031f, 0x12a8: 0x0323, 0x12a9: 0x0327,\n\t0x12aa: 0x4a4d, 0x12ab: 0x4a53, 0x12ac: 0x4a59, 0x12ad: 0x4a5f, 0x12ae: 0x4a65, 0x12af: 0x4a6b,\n\t0x12b0: 0x0367, 0x12b1: 0x032b, 0x12b2: 0x032f, 0x12b3: 0x0333, 0x12b4: 0x037b, 0x12b5: 0x0337,\n\t0x12b6: 0x033b, 0x12b7: 0x033f, 0x12b8: 0x0343, 0x12b9: 0x0347, 0x12ba: 0x034b, 0x12bb: 0x034f,\n\t0x12bc: 0x0353, 0x12bd: 0x0357, 0x12be: 0x035b,\n\t// Block 0x4b, offset 0x12c0\n\t0x12c2: 0x49bd, 0x12c3: 0x49c3, 0x12c4: 0x49c9, 0x12c5: 0x49cf,\n\t0x12c6: 0x49d5, 0x12c7: 0x49db, 0x12ca: 0x49e1, 0x12cb: 0x49e7,\n\t0x12cc: 0x49ed, 0x12cd: 0x49f3, 0x12ce: 0x49f9, 0x12cf: 0x49ff,\n\t0x12d2: 0x4a05, 0x12d3: 0x4a0b, 0x12d4: 0x4a11, 0x12d5: 0x4a17, 0x12d6: 0x4a1d, 0x12d7: 0x4a23,\n\t0x12da: 0x4a29, 0x12db: 0x4a2f, 0x12dc: 0x4a35,\n\t0x12e0: 0x00bf, 0x12e1: 0x00c2, 0x12e2: 0x00cb, 0x12e3: 0x4264,\n\t0x12e4: 0x00c8, 0x12e5: 0x00c5, 0x12e6: 0x0447, 0x12e8: 0x046b, 0x12e9: 0x044b,\n\t0x12ea: 0x044f, 0x12eb: 0x0453, 0x12ec: 0x0457, 0x12ed: 0x046f, 0x12ee: 0x0473,\n\t// Block 0x4c, offset 0x1300\n\t0x1300: 0x0063, 0x1301: 0x0065, 0x1302: 0x0067, 0x1303: 0x0069, 0x1304: 0x006b, 0x1305: 0x006d,\n\t0x1306: 0x006f, 0x1307: 0x0071, 0x1308: 0x0073, 0x1309: 0x0075, 0x130a: 0x0083, 0x130b: 0x0085,\n\t0x130c: 0x0087, 0x130d: 0x0089, 0x130e: 0x008b, 0x130f: 0x008d, 0x1310: 0x008f, 0x1311: 0x0091,\n\t0x1312: 0x0093, 0x1313: 0x0095, 0x1314: 0x0097, 0x1315: 0x0099, 0x1316: 0x009b, 0x1317: 0x009d,\n\t0x1318: 0x009f, 0x1319: 0x00a1, 0x131a: 0x00a3, 0x131b: 0x00a5, 0x131c: 0x00a7, 0x131d: 0x00a9,\n\t0x131e: 0x00ab, 0x131f: 0x00ad, 0x1320: 0x00af, 0x1321: 0x00b1, 0x1322: 0x00b3, 0x1323: 0x00b5,\n\t0x1324: 0x00dd, 0x1325: 0x00f2, 0x1328: 0x0173, 0x1329: 0x0176,\n\t0x132a: 0x0179, 0x132b: 0x017c, 0x132c: 0x017f, 0x132d: 0x0182, 0x132e: 0x0185, 0x132f: 0x0188,\n\t0x1330: 0x018b, 0x1331: 0x018e, 0x1332: 0x0191, 0x1333: 0x0194, 0x1334: 0x0197, 0x1335: 0x019a,\n\t0x1336: 0x019d, 0x1337: 0x01a0, 0x1338: 0x01a3, 0x1339: 0x0188, 0x133a: 0x01a6, 0x133b: 0x01a9,\n\t0x133c: 0x01ac, 0x133d: 0x01af, 0x133e: 0x01b2, 0x133f: 0x01b5,\n\t// Block 0x4d, offset 0x1340\n\t0x1340: 0x01fd, 0x1341: 0x0200, 0x1342: 0x0203, 0x1343: 0x045b, 0x1344: 0x01c7, 0x1345: 0x01d0,\n\t0x1346: 0x01d6, 0x1347: 0x01fa, 0x1348: 0x01eb, 0x1349: 0x01e8, 0x134a: 0x0206, 0x134b: 0x0209,\n\t0x134e: 0x0021, 0x134f: 0x0023, 0x1350: 0x0025, 0x1351: 0x0027,\n\t0x1352: 0x0029, 0x1353: 0x002b, 0x1354: 0x002d, 0x1355: 0x002f, 0x1356: 0x0031, 0x1357: 0x0033,\n\t0x1358: 0x0021, 0x1359: 0x0023, 0x135a: 0x0025, 0x135b: 0x0027, 0x135c: 0x0029, 0x135d: 0x002b,\n\t0x135e: 0x002d, 0x135f: 0x002f, 0x1360: 0x0031, 0x1361: 0x0033, 0x1362: 0x0021, 0x1363: 0x0023,\n\t0x1364: 0x0025, 0x1365: 0x0027, 0x1366: 0x0029, 0x1367: 0x002b, 0x1368: 0x002d, 0x1369: 0x002f,\n\t0x136a: 0x0031, 0x136b: 0x0033, 0x136c: 0x0021, 0x136d: 0x0023, 0x136e: 0x0025, 0x136f: 0x0027,\n\t0x1370: 0x0029, 0x1371: 0x002b, 0x1372: 0x002d, 0x1373: 0x002f, 0x1374: 0x0031, 0x1375: 0x0033,\n\t0x1376: 0x0021, 0x1377: 0x0023, 0x1378: 0x0025, 0x1379: 0x0027, 0x137a: 0x0029, 0x137b: 0x002b,\n\t0x137c: 0x002d, 0x137d: 0x002f, 0x137e: 0x0031, 0x137f: 0x0033,\n\t// Block 0x4e, offset 0x1380\n\t0x1380: 0x0239, 0x1381: 0x023c, 0x1382: 0x0248, 0x1383: 0x0251, 0x1385: 0x028a,\n\t0x1386: 0x025a, 0x1387: 0x024b, 0x1388: 0x0269, 0x1389: 0x0290, 0x138a: 0x027b, 0x138b: 0x027e,\n\t0x138c: 0x0281, 0x138d: 0x0284, 0x138e: 0x025d, 0x138f: 0x026f, 0x1390: 0x0275, 0x1391: 0x0263,\n\t0x1392: 0x0278, 0x1393: 0x0257, 0x1394: 0x0260, 0x1395: 0x0242, 0x1396: 0x0245, 0x1397: 0x024e,\n\t0x1398: 0x0254, 0x1399: 0x0266, 0x139a: 0x026c, 0x139b: 0x0272, 0x139c: 0x0293, 0x139d: 0x02e4,\n\t0x139e: 0x02cc, 0x139f: 0x0296, 0x13a1: 0x023c, 0x13a2: 0x0248,\n\t0x13a4: 0x0287, 0x13a7: 0x024b, 0x13a9: 0x0290,\n\t0x13aa: 0x027b, 0x13ab: 0x027e, 0x13ac: 0x0281, 0x13ad: 0x0284, 0x13ae: 0x025d, 0x13af: 0x026f,\n\t0x13b0: 0x0275, 0x13b1: 0x0263, 0x13b2: 0x0278, 0x13b4: 0x0260, 0x13b5: 0x0242,\n\t0x13b6: 0x0245, 0x13b7: 0x024e, 0x13b9: 0x0266, 0x13bb: 0x0272,\n\t// Block 0x4f, offset 0x13c0\n\t0x13c2: 0x0248,\n\t0x13c7: 0x024b, 0x13c9: 0x0290, 0x13cb: 0x027e,\n\t0x13cd: 0x0284, 0x13ce: 0x025d, 0x13cf: 0x026f, 0x13d1: 0x0263,\n\t0x13d2: 0x0278, 0x13d4: 0x0260, 0x13d7: 0x024e,\n\t0x13d9: 0x0266, 0x13db: 0x0272, 0x13dd: 0x02e4,\n\t0x13df: 0x0296, 0x13e1: 0x023c, 0x13e2: 0x0248,\n\t0x13e4: 0x0287, 0x13e7: 0x024b, 0x13e8: 0x0269, 0x13e9: 0x0290,\n\t0x13ea: 0x027b, 0x13ec: 0x0281, 0x13ed: 0x0284, 0x13ee: 0x025d, 0x13ef: 0x026f,\n\t0x13f0: 0x0275, 0x13f1: 0x0263, 0x13f2: 0x0278, 0x13f4: 0x0260, 0x13f5: 0x0242,\n\t0x13f6: 0x0245, 0x13f7: 0x024e, 0x13f9: 0x0266, 0x13fa: 0x026c, 0x13fb: 0x0272,\n\t0x13fc: 0x0293, 0x13fe: 0x02cc,\n\t// Block 0x50, offset 0x1400\n\t0x1400: 0x0239, 0x1401: 0x023c, 0x1402: 0x0248, 0x1403: 0x0251, 0x1404: 0x0287, 0x1405: 0x028a,\n\t0x1406: 0x025a, 0x1407: 0x024b, 0x1408: 0x0269, 0x1409: 0x0290, 0x140b: 0x027e,\n\t0x140c: 0x0281, 0x140d: 0x0284, 0x140e: 0x025d, 0x140f: 0x026f, 0x1410: 0x0275, 0x1411: 0x0263,\n\t0x1412: 0x0278, 0x1413: 0x0257, 0x1414: 0x0260, 0x1415: 0x0242, 0x1416: 0x0245, 0x1417: 0x024e,\n\t0x1418: 0x0254, 0x1419: 0x0266, 0x141a: 0x026c, 0x141b: 0x0272,\n\t0x1421: 0x023c, 0x1422: 0x0248, 0x1423: 0x0251,\n\t0x1425: 0x028a, 0x1426: 0x025a, 0x1427: 0x024b, 0x1428: 0x0269, 0x1429: 0x0290,\n\t0x142b: 0x027e, 0x142c: 0x0281, 0x142d: 0x0284, 0x142e: 0x025d, 0x142f: 0x026f,\n\t0x1430: 0x0275, 0x1431: 0x0263, 0x1432: 0x0278, 0x1433: 0x0257, 0x1434: 0x0260, 0x1435: 0x0242,\n\t0x1436: 0x0245, 0x1437: 0x024e, 0x1438: 0x0254, 0x1439: 0x0266, 0x143a: 0x026c, 0x143b: 0x0272,\n\t// Block 0x51, offset 0x1440\n\t0x1440: 0x1879, 0x1441: 0x1876, 0x1442: 0x187c, 0x1443: 0x18a0, 0x1444: 0x18c4, 0x1445: 0x18e8,\n\t0x1446: 0x190c, 0x1447: 0x1915, 0x1448: 0x191b, 0x1449: 0x1921, 0x144a: 0x1927,\n\t0x1450: 0x1a8c, 0x1451: 0x1a90,\n\t0x1452: 0x1a94, 0x1453: 0x1a98, 0x1454: 0x1a9c, 0x1455: 0x1aa0, 0x1456: 0x1aa4, 0x1457: 0x1aa8,\n\t0x1458: 0x1aac, 0x1459: 0x1ab0, 0x145a: 0x1ab4, 0x145b: 0x1ab8, 0x145c: 0x1abc, 0x145d: 0x1ac0,\n\t0x145e: 0x1ac4, 0x145f: 0x1ac8, 0x1460: 0x1acc, 0x1461: 0x1ad0, 0x1462: 0x1ad4, 0x1463: 0x1ad8,\n\t0x1464: 0x1adc, 0x1465: 0x1ae0, 0x1466: 0x1ae4, 0x1467: 0x1ae8, 0x1468: 0x1aec, 0x1469: 0x1af0,\n\t0x146a: 0x271e, 0x146b: 0x0047, 0x146c: 0x0065, 0x146d: 0x193c, 0x146e: 0x19b1,\n\t0x1470: 0x0043, 0x1471: 0x0045, 0x1472: 0x0047, 0x1473: 0x0049, 0x1474: 0x004b, 0x1475: 0x004d,\n\t0x1476: 0x004f, 0x1477: 0x0051, 0x1478: 0x0053, 0x1479: 0x0055, 0x147a: 0x0057, 0x147b: 0x0059,\n\t0x147c: 0x005b, 0x147d: 0x005d, 0x147e: 0x005f, 0x147f: 0x0061,\n\t// Block 0x52, offset 0x1480\n\t0x1480: 0x26ad, 0x1481: 0x26c2, 0x1482: 0x0503,\n\t0x1490: 0x0c0f, 0x1491: 0x0a47,\n\t0x1492: 0x08d3, 0x1493: 0x45c4, 0x1494: 0x071b, 0x1495: 0x09ef, 0x1496: 0x132f, 0x1497: 0x09ff,\n\t0x1498: 0x0727, 0x1499: 0x0cd7, 0x149a: 0x0eaf, 0x149b: 0x0caf, 0x149c: 0x0827, 0x149d: 0x0b6b,\n\t0x149e: 0x07bf, 0x149f: 0x0cb7, 0x14a0: 0x0813, 0x14a1: 0x1117, 0x14a2: 0x0f83, 0x14a3: 0x138b,\n\t0x14a4: 0x09d3, 0x14a5: 0x090b, 0x14a6: 0x0e63, 0x14a7: 0x0c1b, 0x14a8: 0x0c47, 0x14a9: 0x06bf,\n\t0x14aa: 0x06cb, 0x14ab: 0x140b, 0x14ac: 0x0adb, 0x14ad: 0x06e7, 0x14ae: 0x08ef, 0x14af: 0x0c3b,\n\t0x14b0: 0x13b3, 0x14b1: 0x0c13, 0x14b2: 0x106f, 0x14b3: 0x10ab, 0x14b4: 0x08f7, 0x14b5: 0x0e43,\n\t0x14b6: 0x0d0b, 0x14b7: 0x0d07, 0x14b8: 0x0f97, 0x14b9: 0x082b, 0x14ba: 0x0957, 0x14bb: 0x1443,\n\t// Block 0x53, offset 0x14c0\n\t0x14c0: 0x06fb, 0x14c1: 0x06f3, 0x14c2: 0x0703, 0x14c3: 0x1647, 0x14c4: 0x0747, 0x14c5: 0x0757,\n\t0x14c6: 0x075b, 0x14c7: 0x0763, 0x14c8: 0x076b, 0x14c9: 0x076f, 0x14ca: 0x077b, 0x14cb: 0x0773,\n\t0x14cc: 0x05b3, 0x14cd: 0x165b, 0x14ce: 0x078f, 0x14cf: 0x0793, 0x14d0: 0x0797, 0x14d1: 0x07b3,\n\t0x14d2: 0x164c, 0x14d3: 0x05b7, 0x14d4: 0x079f, 0x14d5: 0x07bf, 0x14d6: 0x1656, 0x14d7: 0x07cf,\n\t0x14d8: 0x07d7, 0x14d9: 0x0737, 0x14da: 0x07df, 0x14db: 0x07e3, 0x14dc: 0x1831, 0x14dd: 0x07ff,\n\t0x14de: 0x0807, 0x14df: 0x05bf, 0x14e0: 0x081f, 0x14e1: 0x0823, 0x14e2: 0x082b, 0x14e3: 0x082f,\n\t0x14e4: 0x05c3, 0x14e5: 0x0847, 0x14e6: 0x084b, 0x14e7: 0x0857, 0x14e8: 0x0863, 0x14e9: 0x0867,\n\t0x14ea: 0x086b, 0x14eb: 0x0873, 0x14ec: 0x0893, 0x14ed: 0x0897, 0x14ee: 0x089f, 0x14ef: 0x08af,\n\t0x14f0: 0x08b7, 0x14f1: 0x08bb, 0x14f2: 0x08bb, 0x14f3: 0x08bb, 0x14f4: 0x166a, 0x14f5: 0x0e93,\n\t0x14f6: 0x08cf, 0x14f7: 0x08d7, 0x14f8: 0x166f, 0x14f9: 0x08e3, 0x14fa: 0x08eb, 0x14fb: 0x08f3,\n\t0x14fc: 0x091b, 0x14fd: 0x0907, 0x14fe: 0x0913, 0x14ff: 0x0917,\n\t// Block 0x54, offset 0x1500\n\t0x1500: 0x091f, 0x1501: 0x0927, 0x1502: 0x092b, 0x1503: 0x0933, 0x1504: 0x093b, 0x1505: 0x093f,\n\t0x1506: 0x093f, 0x1507: 0x0947, 0x1508: 0x094f, 0x1509: 0x0953, 0x150a: 0x095f, 0x150b: 0x0983,\n\t0x150c: 0x0967, 0x150d: 0x0987, 0x150e: 0x096b, 0x150f: 0x0973, 0x1510: 0x080b, 0x1511: 0x09cf,\n\t0x1512: 0x0997, 0x1513: 0x099b, 0x1514: 0x099f, 0x1515: 0x0993, 0x1516: 0x09a7, 0x1517: 0x09a3,\n\t0x1518: 0x09bb, 0x1519: 0x1674, 0x151a: 0x09d7, 0x151b: 0x09db, 0x151c: 0x09e3, 0x151d: 0x09ef,\n\t0x151e: 0x09f7, 0x151f: 0x0a13, 0x1520: 0x1679, 0x1521: 0x167e, 0x1522: 0x0a1f, 0x1523: 0x0a23,\n\t0x1524: 0x0a27, 0x1525: 0x0a1b, 0x1526: 0x0a2f, 0x1527: 0x05c7, 0x1528: 0x05cb, 0x1529: 0x0a37,\n\t0x152a: 0x0a3f, 0x152b: 0x0a3f, 0x152c: 0x1683, 0x152d: 0x0a5b, 0x152e: 0x0a5f, 0x152f: 0x0a63,\n\t0x1530: 0x0a6b, 0x1531: 0x1688, 0x1532: 0x0a73, 0x1533: 0x0a77, 0x1534: 0x0b4f, 0x1535: 0x0a7f,\n\t0x1536: 0x05cf, 0x1537: 0x0a8b, 0x1538: 0x0a9b, 0x1539: 0x0aa7, 0x153a: 0x0aa3, 0x153b: 0x1692,\n\t0x153c: 0x0aaf, 0x153d: 0x1697, 0x153e: 0x0abb, 0x153f: 0x0ab7,\n\t// Block 0x55, offset 0x1540\n\t0x1540: 0x0abf, 0x1541: 0x0acf, 0x1542: 0x0ad3, 0x1543: 0x05d3, 0x1544: 0x0ae3, 0x1545: 0x0aeb,\n\t0x1546: 0x0aef, 0x1547: 0x0af3, 0x1548: 0x05d7, 0x1549: 0x169c, 0x154a: 0x05db, 0x154b: 0x0b0f,\n\t0x154c: 0x0b13, 0x154d: 0x0b17, 0x154e: 0x0b1f, 0x154f: 0x1863, 0x1550: 0x0b37, 0x1551: 0x16a6,\n\t0x1552: 0x16a6, 0x1553: 0x11d7, 0x1554: 0x0b47, 0x1555: 0x0b47, 0x1556: 0x05df, 0x1557: 0x16c9,\n\t0x1558: 0x179b, 0x1559: 0x0b57, 0x155a: 0x0b5f, 0x155b: 0x05e3, 0x155c: 0x0b73, 0x155d: 0x0b83,\n\t0x155e: 0x0b87, 0x155f: 0x0b8f, 0x1560: 0x0b9f, 0x1561: 0x05eb, 0x1562: 0x05e7, 0x1563: 0x0ba3,\n\t0x1564: 0x16ab, 0x1565: 0x0ba7, 0x1566: 0x0bbb, 0x1567: 0x0bbf, 0x1568: 0x0bc3, 0x1569: 0x0bbf,\n\t0x156a: 0x0bcf, 0x156b: 0x0bd3, 0x156c: 0x0be3, 0x156d: 0x0bdb, 0x156e: 0x0bdf, 0x156f: 0x0be7,\n\t0x1570: 0x0beb, 0x1571: 0x0bef, 0x1572: 0x0bfb, 0x1573: 0x0bff, 0x1574: 0x0c17, 0x1575: 0x0c1f,\n\t0x1576: 0x0c2f, 0x1577: 0x0c43, 0x1578: 0x16ba, 0x1579: 0x0c3f, 0x157a: 0x0c33, 0x157b: 0x0c4b,\n\t0x157c: 0x0c53, 0x157d: 0x0c67, 0x157e: 0x16bf, 0x157f: 0x0c6f,\n\t// Block 0x56, offset 0x1580\n\t0x1580: 0x0c63, 0x1581: 0x0c5b, 0x1582: 0x05ef, 0x1583: 0x0c77, 0x1584: 0x0c7f, 0x1585: 0x0c87,\n\t0x1586: 0x0c7b, 0x1587: 0x05f3, 0x1588: 0x0c97, 0x1589: 0x0c9f, 0x158a: 0x16c4, 0x158b: 0x0ccb,\n\t0x158c: 0x0cff, 0x158d: 0x0cdb, 0x158e: 0x05ff, 0x158f: 0x0ce7, 0x1590: 0x05fb, 0x1591: 0x05f7,\n\t0x1592: 0x07c3, 0x1593: 0x07c7, 0x1594: 0x0d03, 0x1595: 0x0ceb, 0x1596: 0x11ab, 0x1597: 0x0663,\n\t0x1598: 0x0d0f, 0x1599: 0x0d13, 0x159a: 0x0d17, 0x159b: 0x0d2b, 0x159c: 0x0d23, 0x159d: 0x16dd,\n\t0x159e: 0x0603, 0x159f: 0x0d3f, 0x15a0: 0x0d33, 0x15a1: 0x0d4f, 0x15a2: 0x0d57, 0x15a3: 0x16e7,\n\t0x15a4: 0x0d5b, 0x15a5: 0x0d47, 0x15a6: 0x0d63, 0x15a7: 0x0607, 0x15a8: 0x0d67, 0x15a9: 0x0d6b,\n\t0x15aa: 0x0d6f, 0x15ab: 0x0d7b, 0x15ac: 0x16ec, 0x15ad: 0x0d83, 0x15ae: 0x060b, 0x15af: 0x0d8f,\n\t0x15b0: 0x16f1, 0x15b1: 0x0d93, 0x15b2: 0x060f, 0x15b3: 0x0d9f, 0x15b4: 0x0dab, 0x15b5: 0x0db7,\n\t0x15b6: 0x0dbb, 0x15b7: 0x16f6, 0x15b8: 0x168d, 0x15b9: 0x16fb, 0x15ba: 0x0ddb, 0x15bb: 0x1700,\n\t0x15bc: 0x0de7, 0x15bd: 0x0def, 0x15be: 0x0ddf, 0x15bf: 0x0dfb,\n\t// Block 0x57, offset 0x15c0\n\t0x15c0: 0x0e0b, 0x15c1: 0x0e1b, 0x15c2: 0x0e0f, 0x15c3: 0x0e13, 0x15c4: 0x0e1f, 0x15c5: 0x0e23,\n\t0x15c6: 0x1705, 0x15c7: 0x0e07, 0x15c8: 0x0e3b, 0x15c9: 0x0e3f, 0x15ca: 0x0613, 0x15cb: 0x0e53,\n\t0x15cc: 0x0e4f, 0x15cd: 0x170a, 0x15ce: 0x0e33, 0x15cf: 0x0e6f, 0x15d0: 0x170f, 0x15d1: 0x1714,\n\t0x15d2: 0x0e73, 0x15d3: 0x0e87, 0x15d4: 0x0e83, 0x15d5: 0x0e7f, 0x15d6: 0x0617, 0x15d7: 0x0e8b,\n\t0x15d8: 0x0e9b, 0x15d9: 0x0e97, 0x15da: 0x0ea3, 0x15db: 0x1651, 0x15dc: 0x0eb3, 0x15dd: 0x1719,\n\t0x15de: 0x0ebf, 0x15df: 0x1723, 0x15e0: 0x0ed3, 0x15e1: 0x0edf, 0x15e2: 0x0ef3, 0x15e3: 0x1728,\n\t0x15e4: 0x0f07, 0x15e5: 0x0f0b, 0x15e6: 0x172d, 0x15e7: 0x1732, 0x15e8: 0x0f27, 0x15e9: 0x0f37,\n\t0x15ea: 0x061b, 0x15eb: 0x0f3b, 0x15ec: 0x061f, 0x15ed: 0x061f, 0x15ee: 0x0f53, 0x15ef: 0x0f57,\n\t0x15f0: 0x0f5f, 0x15f1: 0x0f63, 0x15f2: 0x0f6f, 0x15f3: 0x0623, 0x15f4: 0x0f87, 0x15f5: 0x1737,\n\t0x15f6: 0x0fa3, 0x15f7: 0x173c, 0x15f8: 0x0faf, 0x15f9: 0x16a1, 0x15fa: 0x0fbf, 0x15fb: 0x1741,\n\t0x15fc: 0x1746, 0x15fd: 0x174b, 0x15fe: 0x0627, 0x15ff: 0x062b,\n\t// Block 0x58, offset 0x1600\n\t0x1600: 0x0ff7, 0x1601: 0x1755, 0x1602: 0x1750, 0x1603: 0x175a, 0x1604: 0x175f, 0x1605: 0x0fff,\n\t0x1606: 0x1003, 0x1607: 0x1003, 0x1608: 0x100b, 0x1609: 0x0633, 0x160a: 0x100f, 0x160b: 0x0637,\n\t0x160c: 0x063b, 0x160d: 0x1769, 0x160e: 0x1023, 0x160f: 0x102b, 0x1610: 0x1037, 0x1611: 0x063f,\n\t0x1612: 0x176e, 0x1613: 0x105b, 0x1614: 0x1773, 0x1615: 0x1778, 0x1616: 0x107b, 0x1617: 0x1093,\n\t0x1618: 0x0643, 0x1619: 0x109b, 0x161a: 0x109f, 0x161b: 0x10a3, 0x161c: 0x177d, 0x161d: 0x1782,\n\t0x161e: 0x1782, 0x161f: 0x10bb, 0x1620: 0x0647, 0x1621: 0x1787, 0x1622: 0x10cf, 0x1623: 0x10d3,\n\t0x1624: 0x064b, 0x1625: 0x178c, 0x1626: 0x10ef, 0x1627: 0x064f, 0x1628: 0x10ff, 0x1629: 0x10f7,\n\t0x162a: 0x1107, 0x162b: 0x1796, 0x162c: 0x111f, 0x162d: 0x0653, 0x162e: 0x112b, 0x162f: 0x1133,\n\t0x1630: 0x1143, 0x1631: 0x0657, 0x1632: 0x17a0, 0x1633: 0x17a5, 0x1634: 0x065b, 0x1635: 0x17aa,\n\t0x1636: 0x115b, 0x1637: 0x17af, 0x1638: 0x1167, 0x1639: 0x1173, 0x163a: 0x117b, 0x163b: 0x17b4,\n\t0x163c: 0x17b9, 0x163d: 0x118f, 0x163e: 0x17be, 0x163f: 0x1197,\n\t// Block 0x59, offset 0x1640\n\t0x1640: 0x16ce, 0x1641: 0x065f, 0x1642: 0x11af, 0x1643: 0x11b3, 0x1644: 0x0667, 0x1645: 0x11b7,\n\t0x1646: 0x0a33, 0x1647: 0x17c3, 0x1648: 0x17c8, 0x1649: 0x16d3, 0x164a: 0x16d8, 0x164b: 0x11d7,\n\t0x164c: 0x11db, 0x164d: 0x13f3, 0x164e: 0x066b, 0x164f: 0x1207, 0x1650: 0x1203, 0x1651: 0x120b,\n\t0x1652: 0x083f, 0x1653: 0x120f, 0x1654: 0x1213, 0x1655: 0x1217, 0x1656: 0x121f, 0x1657: 0x17cd,\n\t0x1658: 0x121b, 0x1659: 0x1223, 0x165a: 0x1237, 0x165b: 0x123b, 0x165c: 0x1227, 0x165d: 0x123f,\n\t0x165e: 0x1253, 0x165f: 0x1267, 0x1660: 0x1233, 0x1661: 0x1247, 0x1662: 0x124b, 0x1663: 0x124f,\n\t0x1664: 0x17d2, 0x1665: 0x17dc, 0x1666: 0x17d7, 0x1667: 0x066f, 0x1668: 0x126f, 0x1669: 0x1273,\n\t0x166a: 0x127b, 0x166b: 0x17f0, 0x166c: 0x127f, 0x166d: 0x17e1, 0x166e: 0x0673, 0x166f: 0x0677,\n\t0x1670: 0x17e6, 0x1671: 0x17eb, 0x1672: 0x067b, 0x1673: 0x129f, 0x1674: 0x12a3, 0x1675: 0x12a7,\n\t0x1676: 0x12ab, 0x1677: 0x12b7, 0x1678: 0x12b3, 0x1679: 0x12bf, 0x167a: 0x12bb, 0x167b: 0x12cb,\n\t0x167c: 0x12c3, 0x167d: 0x12c7, 0x167e: 0x12cf, 0x167f: 0x067f,\n\t// Block 0x5a, offset 0x1680\n\t0x1680: 0x12d7, 0x1681: 0x12db, 0x1682: 0x0683, 0x1683: 0x12eb, 0x1684: 0x12ef, 0x1685: 0x17f5,\n\t0x1686: 0x12fb, 0x1687: 0x12ff, 0x1688: 0x0687, 0x1689: 0x130b, 0x168a: 0x05bb, 0x168b: 0x17fa,\n\t0x168c: 0x17ff, 0x168d: 0x068b, 0x168e: 0x068f, 0x168f: 0x1337, 0x1690: 0x134f, 0x1691: 0x136b,\n\t0x1692: 0x137b, 0x1693: 0x1804, 0x1694: 0x138f, 0x1695: 0x1393, 0x1696: 0x13ab, 0x1697: 0x13b7,\n\t0x1698: 0x180e, 0x1699: 0x1660, 0x169a: 0x13c3, 0x169b: 0x13bf, 0x169c: 0x13cb, 0x169d: 0x1665,\n\t0x169e: 0x13d7, 0x169f: 0x13e3, 0x16a0: 0x1813, 0x16a1: 0x1818, 0x16a2: 0x1423, 0x16a3: 0x142f,\n\t0x16a4: 0x1437, 0x16a5: 0x181d, 0x16a6: 0x143b, 0x16a7: 0x1467, 0x16a8: 0x1473, 0x16a9: 0x1477,\n\t0x16aa: 0x146f, 0x16ab: 0x1483, 0x16ac: 0x1487, 0x16ad: 0x1822, 0x16ae: 0x1493, 0x16af: 0x0693,\n\t0x16b0: 0x149b, 0x16b1: 0x1827, 0x16b2: 0x0697, 0x16b3: 0x14d3, 0x16b4: 0x0ac3, 0x16b5: 0x14eb,\n\t0x16b6: 0x182c, 0x16b7: 0x1836, 0x16b8: 0x069b, 0x16b9: 0x069f, 0x16ba: 0x1513, 0x16bb: 0x183b,\n\t0x16bc: 0x06a3, 0x16bd: 0x1840, 0x16be: 0x152b, 0x16bf: 0x152b,\n\t// Block 0x5b, offset 0x16c0\n\t0x16c0: 0x1533, 0x16c1: 0x1845, 0x16c2: 0x154b, 0x16c3: 0x06a7, 0x16c4: 0x155b, 0x16c5: 0x1567,\n\t0x16c6: 0x156f, 0x16c7: 0x1577, 0x16c8: 0x06ab, 0x16c9: 0x184a, 0x16ca: 0x158b, 0x16cb: 0x15a7,\n\t0x16cc: 0x15b3, 0x16cd: 0x06af, 0x16ce: 0x06b3, 0x16cf: 0x15b7, 0x16d0: 0x184f, 0x16d1: 0x06b7,\n\t0x16d2: 0x1854, 0x16d3: 0x1859, 0x16d4: 0x185e, 0x16d5: 0x15db, 0x16d6: 0x06bb, 0x16d7: 0x15ef,\n\t0x16d8: 0x15f7, 0x16d9: 0x15fb, 0x16da: 0x1603, 0x16db: 0x160b, 0x16dc: 0x1613, 0x16dd: 0x1868,\n}\n\n// nfkcIndex: 22 blocks, 1408 entries, 1408 bytes\n// Block 0 is the zero block.\nvar nfkcIndex = [1408]uint8{\n\t// Block 0x0, offset 0x0\n\t// Block 0x1, offset 0x40\n\t// Block 0x2, offset 0x80\n\t// Block 0x3, offset 0xc0\n\t0xc2: 0x5a, 0xc3: 0x01, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x5b, 0xc7: 0x04,\n\t0xc8: 0x05, 0xca: 0x5c, 0xcb: 0x5d, 0xcc: 0x06, 0xcd: 0x07, 0xce: 0x08, 0xcf: 0x09,\n\t0xd0: 0x0a, 0xd1: 0x5e, 0xd2: 0x5f, 0xd3: 0x0b, 0xd6: 0x0c, 0xd7: 0x60,\n\t0xd8: 0x61, 0xd9: 0x0d, 0xdb: 0x62, 0xdc: 0x63, 0xdd: 0x64, 0xdf: 0x65,\n\t0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05,\n\t0xea: 0x06, 0xeb: 0x07, 0xec: 0x08, 0xed: 0x09, 0xef: 0x0a,\n\t0xf0: 0x13,\n\t// Block 0x4, offset 0x100\n\t0x120: 0x66, 0x121: 0x67, 0x123: 0x68, 0x124: 0x69, 0x125: 0x6a, 0x126: 0x6b, 0x127: 0x6c,\n\t0x128: 0x6d, 0x129: 0x6e, 0x12a: 0x6f, 0x12b: 0x70, 0x12c: 0x6b, 0x12d: 0x71, 0x12e: 0x72, 0x12f: 0x73,\n\t0x131: 0x74, 0x132: 0x75, 0x133: 0x76, 0x134: 0x77, 0x135: 0x78, 0x137: 0x79,\n\t0x138: 0x7a, 0x139: 0x7b, 0x13a: 0x7c, 0x13b: 0x7d, 0x13c: 0x7e, 0x13d: 0x7f, 0x13e: 0x80, 0x13f: 0x81,\n\t// Block 0x5, offset 0x140\n\t0x140: 0x82, 0x142: 0x83, 0x143: 0x84, 0x144: 0x85, 0x145: 0x86, 0x146: 0x87, 0x147: 0x88,\n\t0x14d: 0x89,\n\t0x15c: 0x8a, 0x15f: 0x8b,\n\t0x162: 0x8c, 0x164: 0x8d,\n\t0x168: 0x8e, 0x169: 0x8f, 0x16a: 0x90, 0x16c: 0x0e, 0x16d: 0x91, 0x16e: 0x92, 0x16f: 0x93,\n\t0x170: 0x94, 0x173: 0x95, 0x174: 0x96, 0x175: 0x0f, 0x176: 0x10, 0x177: 0x97,\n\t0x178: 0x11, 0x179: 0x12, 0x17a: 0x13, 0x17b: 0x14, 0x17c: 0x15, 0x17d: 0x16, 0x17e: 0x17, 0x17f: 0x18,\n\t// Block 0x6, offset 0x180\n\t0x180: 0x98, 0x181: 0x99, 0x182: 0x9a, 0x183: 0x9b, 0x184: 0x19, 0x185: 0x1a, 0x186: 0x9c, 0x187: 0x9d,\n\t0x188: 0x9e, 0x189: 0x1b, 0x18a: 0x1c, 0x18b: 0x9f, 0x18c: 0xa0,\n\t0x191: 0x1d, 0x192: 0x1e, 0x193: 0xa1,\n\t0x1a8: 0xa2, 0x1a9: 0xa3, 0x1ab: 0xa4,\n\t0x1b1: 0xa5, 0x1b3: 0xa6, 0x1b5: 0xa7, 0x1b7: 0xa8,\n\t0x1ba: 0xa9, 0x1bb: 0xaa, 0x1bc: 0x1f, 0x1bd: 0x20, 0x1be: 0x21, 0x1bf: 0xab,\n\t// Block 0x7, offset 0x1c0\n\t0x1c0: 0xac, 0x1c1: 0x22, 0x1c2: 0x23, 0x1c3: 0x24, 0x1c4: 0xad, 0x1c5: 0x25, 0x1c6: 0x26,\n\t0x1c8: 0x27, 0x1c9: 0x28, 0x1ca: 0x29, 0x1cb: 0x2a, 0x1cc: 0x2b, 0x1cd: 0x2c, 0x1ce: 0x2d, 0x1cf: 0x2e,\n\t// Block 0x8, offset 0x200\n\t0x219: 0xae, 0x21a: 0xaf, 0x21b: 0xb0, 0x21d: 0xb1, 0x21f: 0xb2,\n\t0x220: 0xb3, 0x223: 0xb4, 0x224: 0xb5, 0x225: 0xb6, 0x226: 0xb7, 0x227: 0xb8,\n\t0x22a: 0xb9, 0x22b: 0xba, 0x22d: 0xbb, 0x22f: 0xbc,\n\t0x230: 0xbd, 0x231: 0xbe, 0x232: 0xbf, 0x233: 0xc0, 0x234: 0xc1, 0x235: 0xc2, 0x236: 0xc3, 0x237: 0xbd,\n\t0x238: 0xbe, 0x239: 0xbf, 0x23a: 0xc0, 0x23b: 0xc1, 0x23c: 0xc2, 0x23d: 0xc3, 0x23e: 0xbd, 0x23f: 0xbe,\n\t// Block 0x9, offset 0x240\n\t0x240: 0xbf, 0x241: 0xc0, 0x242: 0xc1, 0x243: 0xc2, 0x244: 0xc3, 0x245: 0xbd, 0x246: 0xbe, 0x247: 0xbf,\n\t0x248: 0xc0, 0x249: 0xc1, 0x24a: 0xc2, 0x24b: 0xc3, 0x24c: 0xbd, 0x24d: 0xbe, 0x24e: 0xbf, 0x24f: 0xc0,\n\t0x250: 0xc1, 0x251: 0xc2, 0x252: 0xc3, 0x253: 0xbd, 0x254: 0xbe, 0x255: 0xbf, 0x256: 0xc0, 0x257: 0xc1,\n\t0x258: 0xc2, 0x259: 0xc3, 0x25a: 0xbd, 0x25b: 0xbe, 0x25c: 0xbf, 0x25d: 0xc0, 0x25e: 0xc1, 0x25f: 0xc2,\n\t0x260: 0xc3, 0x261: 0xbd, 0x262: 0xbe, 0x263: 0xbf, 0x264: 0xc0, 0x265: 0xc1, 0x266: 0xc2, 0x267: 0xc3,\n\t0x268: 0xbd, 0x269: 0xbe, 0x26a: 0xbf, 0x26b: 0xc0, 0x26c: 0xc1, 0x26d: 0xc2, 0x26e: 0xc3, 0x26f: 0xbd,\n\t0x270: 0xbe, 0x271: 0xbf, 0x272: 0xc0, 0x273: 0xc1, 0x274: 0xc2, 0x275: 0xc3, 0x276: 0xbd, 0x277: 0xbe,\n\t0x278: 0xbf, 0x279: 0xc0, 0x27a: 0xc1, 0x27b: 0xc2, 0x27c: 0xc3, 0x27d: 0xbd, 0x27e: 0xbe, 0x27f: 0xbf,\n\t// Block 0xa, offset 0x280\n\t0x280: 0xc0, 0x281: 0xc1, 0x282: 0xc2, 0x283: 0xc3, 0x284: 0xbd, 0x285: 0xbe, 0x286: 0xbf, 0x287: 0xc0,\n\t0x288: 0xc1, 0x289: 0xc2, 0x28a: 0xc3, 0x28b: 0xbd, 0x28c: 0xbe, 0x28d: 0xbf, 0x28e: 0xc0, 0x28f: 0xc1,\n\t0x290: 0xc2, 0x291: 0xc3, 0x292: 0xbd, 0x293: 0xbe, 0x294: 0xbf, 0x295: 0xc0, 0x296: 0xc1, 0x297: 0xc2,\n\t0x298: 0xc3, 0x299: 0xbd, 0x29a: 0xbe, 0x29b: 0xbf, 0x29c: 0xc0, 0x29d: 0xc1, 0x29e: 0xc2, 0x29f: 0xc3,\n\t0x2a0: 0xbd, 0x2a1: 0xbe, 0x2a2: 0xbf, 0x2a3: 0xc0, 0x2a4: 0xc1, 0x2a5: 0xc2, 0x2a6: 0xc3, 0x2a7: 0xbd,\n\t0x2a8: 0xbe, 0x2a9: 0xbf, 0x2aa: 0xc0, 0x2ab: 0xc1, 0x2ac: 0xc2, 0x2ad: 0xc3, 0x2ae: 0xbd, 0x2af: 0xbe,\n\t0x2b0: 0xbf, 0x2b1: 0xc0, 0x2b2: 0xc1, 0x2b3: 0xc2, 0x2b4: 0xc3, 0x2b5: 0xbd, 0x2b6: 0xbe, 0x2b7: 0xbf,\n\t0x2b8: 0xc0, 0x2b9: 0xc1, 0x2ba: 0xc2, 0x2bb: 0xc3, 0x2bc: 0xbd, 0x2bd: 0xbe, 0x2be: 0xbf, 0x2bf: 0xc0,\n\t// Block 0xb, offset 0x2c0\n\t0x2c0: 0xc1, 0x2c1: 0xc2, 0x2c2: 0xc3, 0x2c3: 0xbd, 0x2c4: 0xbe, 0x2c5: 0xbf, 0x2c6: 0xc0, 0x2c7: 0xc1,\n\t0x2c8: 0xc2, 0x2c9: 0xc3, 0x2ca: 0xbd, 0x2cb: 0xbe, 0x2cc: 0xbf, 0x2cd: 0xc0, 0x2ce: 0xc1, 0x2cf: 0xc2,\n\t0x2d0: 0xc3, 0x2d1: 0xbd, 0x2d2: 0xbe, 0x2d3: 0xbf, 0x2d4: 0xc0, 0x2d5: 0xc1, 0x2d6: 0xc2, 0x2d7: 0xc3,\n\t0x2d8: 0xbd, 0x2d9: 0xbe, 0x2da: 0xbf, 0x2db: 0xc0, 0x2dc: 0xc1, 0x2dd: 0xc2, 0x2de: 0xc4,\n\t// Block 0xc, offset 0x300\n\t0x324: 0x2f, 0x325: 0x30, 0x326: 0x31, 0x327: 0x32,\n\t0x328: 0x33, 0x329: 0x34, 0x32a: 0x35, 0x32b: 0x36, 0x32c: 0x37, 0x32d: 0x38, 0x32e: 0x39, 0x32f: 0x3a,\n\t0x330: 0x3b, 0x331: 0x3c, 0x332: 0x3d, 0x333: 0x3e, 0x334: 0x3f, 0x335: 0x40, 0x336: 0x41, 0x337: 0x42,\n\t0x338: 0x43, 0x339: 0x44, 0x33a: 0x45, 0x33b: 0x46, 0x33c: 0xc5, 0x33d: 0x47, 0x33e: 0x48, 0x33f: 0x49,\n\t// Block 0xd, offset 0x340\n\t0x347: 0xc6,\n\t0x34b: 0xc7, 0x34d: 0xc8,\n\t0x368: 0xc9, 0x36b: 0xca,\n\t// Block 0xe, offset 0x380\n\t0x381: 0xcb, 0x382: 0xcc, 0x384: 0xcd, 0x385: 0xb7, 0x387: 0xce,\n\t0x388: 0xcf, 0x38b: 0xd0, 0x38c: 0x6b, 0x38d: 0xd1,\n\t0x391: 0xd2, 0x392: 0xd3, 0x393: 0xd4, 0x396: 0xd5, 0x397: 0xd6,\n\t0x398: 0xd7, 0x39a: 0xd8, 0x39c: 0xd9,\n\t0x3b0: 0xd7,\n\t// Block 0xf, offset 0x3c0\n\t0x3eb: 0xda, 0x3ec: 0xdb,\n\t// Block 0x10, offset 0x400\n\t0x432: 0xdc,\n\t// Block 0x11, offset 0x440\n\t0x445: 0xdd, 0x446: 0xde, 0x447: 0xdf,\n\t0x449: 0xe0,\n\t0x450: 0xe1, 0x451: 0xe2, 0x452: 0xe3, 0x453: 0xe4, 0x454: 0xe5, 0x455: 0xe6, 0x456: 0xe7, 0x457: 0xe8,\n\t0x458: 0xe9, 0x459: 0xea, 0x45a: 0x4a, 0x45b: 0xeb, 0x45c: 0xec, 0x45d: 0xed, 0x45e: 0xee, 0x45f: 0x4b,\n\t// Block 0x12, offset 0x480\n\t0x480: 0xef,\n\t0x4a3: 0xf0, 0x4a5: 0xf1,\n\t0x4b8: 0x4c, 0x4b9: 0x4d, 0x4ba: 0x4e,\n\t// Block 0x13, offset 0x4c0\n\t0x4c4: 0x4f, 0x4c5: 0xf2, 0x4c6: 0xf3,\n\t0x4c8: 0x50, 0x4c9: 0xf4,\n\t// Block 0x14, offset 0x500\n\t0x520: 0x51, 0x521: 0x52, 0x522: 0x53, 0x523: 0x54, 0x524: 0x55, 0x525: 0x56, 0x526: 0x57, 0x527: 0x58,\n\t0x528: 0x59,\n\t// Block 0x15, offset 0x540\n\t0x550: 0x0b, 0x551: 0x0c, 0x556: 0x0d,\n\t0x55b: 0x0e, 0x55d: 0x0f, 0x55e: 0x10, 0x55f: 0x11,\n\t0x56f: 0x12,\n}\n\n// nfkcSparseOffset: 155 entries, 310 bytes\nvar nfkcSparseOffset = []uint16{0x0, 0xe, 0x12, 0x1b, 0x25, 0x35, 0x37, 0x3c, 0x47, 0x56, 0x63, 0x6b, 0x6f, 0x74, 0x76, 0x87, 0x8f, 0x96, 0x99, 0xa0, 0xa4, 0xa8, 0xaa, 0xac, 0xb5, 0xb9, 0xc0, 0xc5, 0xc8, 0xd2, 0xd4, 0xdb, 0xe3, 0xe7, 0xe9, 0xec, 0xf0, 0xf6, 0x107, 0x113, 0x115, 0x11b, 0x11d, 0x11f, 0x121, 0x123, 0x125, 0x127, 0x129, 0x12c, 0x12f, 0x131, 0x134, 0x137, 0x13b, 0x140, 0x149, 0x14b, 0x14e, 0x150, 0x15b, 0x166, 0x176, 0x184, 0x192, 0x1a2, 0x1b0, 0x1b7, 0x1bd, 0x1cc, 0x1d0, 0x1d2, 0x1d6, 0x1d8, 0x1db, 0x1dd, 0x1e0, 0x1e2, 0x1e5, 0x1e7, 0x1e9, 0x1eb, 0x1f7, 0x201, 0x20b, 0x20e, 0x212, 0x214, 0x216, 0x218, 0x21a, 0x21d, 0x21f, 0x221, 0x223, 0x225, 0x22b, 0x22e, 0x232, 0x234, 0x23b, 0x241, 0x247, 0x24f, 0x255, 0x25b, 0x261, 0x265, 0x267, 0x269, 0x26b, 0x26d, 0x273, 0x276, 0x279, 0x281, 0x288, 0x28b, 0x28e, 0x290, 0x298, 0x29b, 0x2a2, 0x2a5, 0x2ab, 0x2ad, 0x2af, 0x2b2, 0x2b4, 0x2b6, 0x2b8, 0x2ba, 0x2c7, 0x2d1, 0x2d3, 0x2d5, 0x2d9, 0x2de, 0x2ea, 0x2ef, 0x2f8, 0x2fe, 0x303, 0x307, 0x30c, 0x310, 0x320, 0x32e, 0x33c, 0x34a, 0x350, 0x352, 0x355, 0x35f, 0x361}\n\n// nfkcSparseValues: 875 entries, 3500 bytes\nvar nfkcSparseValues = [875]valueRange{\n\t// Block 0x0, offset 0x0\n\t{value: 0x0002, lo: 0x0d},\n\t{value: 0x0001, lo: 0xa0, hi: 0xa0},\n\t{value: 0x4278, lo: 0xa8, hi: 0xa8},\n\t{value: 0x0083, lo: 0xaa, hi: 0xaa},\n\t{value: 0x4264, lo: 0xaf, hi: 0xaf},\n\t{value: 0x0025, lo: 0xb2, hi: 0xb3},\n\t{value: 0x425a, lo: 0xb4, hi: 0xb4},\n\t{value: 0x01dc, lo: 0xb5, hi: 0xb5},\n\t{value: 0x4291, lo: 0xb8, hi: 0xb8},\n\t{value: 0x0023, lo: 0xb9, hi: 0xb9},\n\t{value: 0x009f, lo: 0xba, hi: 0xba},\n\t{value: 0x221c, lo: 0xbc, hi: 0xbc},\n\t{value: 0x2210, lo: 0xbd, hi: 0xbd},\n\t{value: 0x22b2, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1, offset 0xe\n\t{value: 0x0091, lo: 0x03},\n\t{value: 0x46e2, lo: 0xa0, hi: 0xa1},\n\t{value: 0x4714, lo: 0xaf, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb7, hi: 0xb7},\n\t// Block 0x2, offset 0x12\n\t{value: 0x0003, lo: 0x08},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x0091, lo: 0xb0, hi: 0xb0},\n\t{value: 0x0119, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0095, lo: 0xb2, hi: 0xb2},\n\t{value: 0x00a5, lo: 0xb3, hi: 0xb3},\n\t{value: 0x0143, lo: 0xb4, hi: 0xb6},\n\t{value: 0x00af, lo: 0xb7, hi: 0xb7},\n\t{value: 0x00b3, lo: 0xb8, hi: 0xb8},\n\t// Block 0x3, offset 0x1b\n\t{value: 0x000a, lo: 0x09},\n\t{value: 0x426e, lo: 0x98, hi: 0x98},\n\t{value: 0x4273, lo: 0x99, hi: 0x9a},\n\t{value: 0x4296, lo: 0x9b, hi: 0x9b},\n\t{value: 0x425f, lo: 0x9c, hi: 0x9c},\n\t{value: 0x4282, lo: 0x9d, hi: 0x9d},\n\t{value: 0x0113, lo: 0xa0, hi: 0xa0},\n\t{value: 0x0099, lo: 0xa1, hi: 0xa1},\n\t{value: 0x00a7, lo: 0xa2, hi: 0xa3},\n\t{value: 0x0167, lo: 0xa4, hi: 0xa4},\n\t// Block 0x4, offset 0x25\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0xa000, lo: 0x8d, hi: 0x8d},\n\t{value: 0x37a5, lo: 0x90, hi: 0x90},\n\t{value: 0x37b1, lo: 0x91, hi: 0x91},\n\t{value: 0x379f, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x96, hi: 0x96},\n\t{value: 0x3817, lo: 0x97, hi: 0x97},\n\t{value: 0x37e1, lo: 0x9c, hi: 0x9c},\n\t{value: 0x37c9, lo: 0x9d, hi: 0x9d},\n\t{value: 0x37f3, lo: 0x9e, hi: 0x9e},\n\t{value: 0xa000, lo: 0xb4, hi: 0xb5},\n\t{value: 0x381d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x3823, lo: 0xb7, hi: 0xb7},\n\t// Block 0x5, offset 0x35\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x83, hi: 0x87},\n\t// Block 0x6, offset 0x37\n\t{value: 0x0001, lo: 0x04},\n\t{value: 0x8113, lo: 0x81, hi: 0x82},\n\t{value: 0x8132, lo: 0x84, hi: 0x84},\n\t{value: 0x812d, lo: 0x85, hi: 0x85},\n\t{value: 0x810d, lo: 0x87, hi: 0x87},\n\t// Block 0x7, offset 0x3c\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x97},\n\t{value: 0x8119, lo: 0x98, hi: 0x98},\n\t{value: 0x811a, lo: 0x99, hi: 0x99},\n\t{value: 0x811b, lo: 0x9a, hi: 0x9a},\n\t{value: 0x3841, lo: 0xa2, hi: 0xa2},\n\t{value: 0x3847, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3853, lo: 0xa4, hi: 0xa4},\n\t{value: 0x384d, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3859, lo: 0xa6, hi: 0xa6},\n\t{value: 0xa000, lo: 0xa7, hi: 0xa7},\n\t// Block 0x8, offset 0x47\n\t{value: 0x0000, lo: 0x0e},\n\t{value: 0x386b, lo: 0x80, hi: 0x80},\n\t{value: 0xa000, lo: 0x81, hi: 0x81},\n\t{value: 0x385f, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x3865, lo: 0x93, hi: 0x93},\n\t{value: 0xa000, lo: 0x95, hi: 0x95},\n\t{value: 0x8132, lo: 0x96, hi: 0x9c},\n\t{value: 0x8132, lo: 0x9f, hi: 0xa2},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8132, lo: 0xab, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t// Block 0x9, offset 0x56\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x811f, lo: 0x91, hi: 0x91},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x812d, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb5, hi: 0xb6},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb9},\n\t{value: 0x8132, lo: 0xba, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbc},\n\t{value: 0x8132, lo: 0xbd, hi: 0xbd},\n\t{value: 0x812d, lo: 0xbe, hi: 0xbe},\n\t{value: 0x8132, lo: 0xbf, hi: 0xbf},\n\t// Block 0xa, offset 0x63\n\t{value: 0x0005, lo: 0x07},\n\t{value: 0x8132, lo: 0x80, hi: 0x80},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x83},\n\t{value: 0x812d, lo: 0x84, hi: 0x85},\n\t{value: 0x812d, lo: 0x86, hi: 0x87},\n\t{value: 0x812d, lo: 0x88, hi: 0x89},\n\t{value: 0x8132, lo: 0x8a, hi: 0x8a},\n\t// Block 0xb, offset 0x6b\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8132, lo: 0xab, hi: 0xb1},\n\t{value: 0x812d, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb3},\n\t// Block 0xc, offset 0x6f\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0x96, hi: 0x99},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa7},\n\t{value: 0x8132, lo: 0xa9, hi: 0xad},\n\t// Block 0xd, offset 0x74\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x99, hi: 0x9b},\n\t// Block 0xe, offset 0x76\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x8132, lo: 0x94, hi: 0xa1},\n\t{value: 0x812d, lo: 0xa3, hi: 0xa3},\n\t{value: 0x8132, lo: 0xa4, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa8},\n\t{value: 0x812d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8132, lo: 0xaa, hi: 0xac},\n\t{value: 0x812d, lo: 0xad, hi: 0xaf},\n\t{value: 0x8116, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8117, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8118, lo: 0xb2, hi: 0xb2},\n\t{value: 0x8132, lo: 0xb3, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x812d, lo: 0xb9, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbf},\n\t// Block 0xf, offset 0x87\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0xa8, hi: 0xa8},\n\t{value: 0x3ed8, lo: 0xa9, hi: 0xa9},\n\t{value: 0xa000, lo: 0xb0, hi: 0xb0},\n\t{value: 0x3ee0, lo: 0xb1, hi: 0xb1},\n\t{value: 0xa000, lo: 0xb3, hi: 0xb3},\n\t{value: 0x3ee8, lo: 0xb4, hi: 0xb4},\n\t{value: 0x9902, lo: 0xbc, hi: 0xbc},\n\t// Block 0x10, offset 0x8f\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x91, hi: 0x91},\n\t{value: 0x812d, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x93, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x94},\n\t{value: 0x451c, lo: 0x98, hi: 0x9f},\n\t// Block 0x11, offset 0x96\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x12, offset 0x99\n\t{value: 0x0008, lo: 0x06},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2c9e, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x455c, lo: 0x9c, hi: 0x9d},\n\t{value: 0x456c, lo: 0x9f, hi: 0x9f},\n\t// Block 0x13, offset 0xa0\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x4594, lo: 0xb3, hi: 0xb3},\n\t{value: 0x459c, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x14, offset 0xa4\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x4574, lo: 0x99, hi: 0x9b},\n\t{value: 0x458c, lo: 0x9e, hi: 0x9e},\n\t// Block 0x15, offset 0xa8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t// Block 0x16, offset 0xaa\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t// Block 0x17, offset 0xac\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2cb6, lo: 0x88, hi: 0x88},\n\t{value: 0x2cae, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cbe, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x96, hi: 0x97},\n\t{value: 0x45a4, lo: 0x9c, hi: 0x9c},\n\t{value: 0x45ac, lo: 0x9d, hi: 0x9d},\n\t// Block 0x18, offset 0xb5\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0x2cc6, lo: 0x94, hi: 0x94},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x19, offset 0xb9\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cce, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2cde, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2cd6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1a, offset 0xc0\n\t{value: 0x1801, lo: 0x04},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x3ef0, lo: 0x88, hi: 0x88},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8120, lo: 0x95, hi: 0x96},\n\t// Block 0x1b, offset 0xc5\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xbc, hi: 0xbc},\n\t{value: 0xa000, lo: 0xbf, hi: 0xbf},\n\t// Block 0x1c, offset 0xc8\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x2ce6, lo: 0x80, hi: 0x80},\n\t{value: 0x9900, lo: 0x82, hi: 0x82},\n\t{value: 0xa000, lo: 0x86, hi: 0x86},\n\t{value: 0x2cee, lo: 0x87, hi: 0x87},\n\t{value: 0x2cf6, lo: 0x88, hi: 0x88},\n\t{value: 0x2f50, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2dd8, lo: 0x8b, hi: 0x8b},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x95, hi: 0x96},\n\t// Block 0x1d, offset 0xd2\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xbe, hi: 0xbe},\n\t// Block 0x1e, offset 0xd4\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xa000, lo: 0x86, hi: 0x87},\n\t{value: 0x2cfe, lo: 0x8a, hi: 0x8a},\n\t{value: 0x2d0e, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d06, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t// Block 0x1f, offset 0xdb\n\t{value: 0x6bea, lo: 0x07},\n\t{value: 0x9904, lo: 0x8a, hi: 0x8a},\n\t{value: 0x9900, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x3ef8, lo: 0x9a, hi: 0x9a},\n\t{value: 0x2f58, lo: 0x9c, hi: 0x9c},\n\t{value: 0x2de3, lo: 0x9d, hi: 0x9d},\n\t{value: 0x2d16, lo: 0x9e, hi: 0x9f},\n\t// Block 0x20, offset 0xe3\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x2621, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8122, lo: 0xb8, hi: 0xb9},\n\t{value: 0x8104, lo: 0xba, hi: 0xba},\n\t// Block 0x21, offset 0xe7\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8123, lo: 0x88, hi: 0x8b},\n\t// Block 0x22, offset 0xe9\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x2636, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8124, lo: 0xb8, hi: 0xb9},\n\t// Block 0x23, offset 0xec\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8125, lo: 0x88, hi: 0x8b},\n\t{value: 0x2628, lo: 0x9c, hi: 0x9c},\n\t{value: 0x262f, lo: 0x9d, hi: 0x9d},\n\t// Block 0x24, offset 0xf0\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x030b, lo: 0x8c, hi: 0x8c},\n\t{value: 0x812d, lo: 0x98, hi: 0x99},\n\t{value: 0x812d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x812d, lo: 0xb7, hi: 0xb7},\n\t{value: 0x812b, lo: 0xb9, hi: 0xb9},\n\t// Block 0x25, offset 0xf6\n\t{value: 0x0000, lo: 0x10},\n\t{value: 0x2644, lo: 0x83, hi: 0x83},\n\t{value: 0x264b, lo: 0x8d, hi: 0x8d},\n\t{value: 0x2652, lo: 0x92, hi: 0x92},\n\t{value: 0x2659, lo: 0x97, hi: 0x97},\n\t{value: 0x2660, lo: 0x9c, hi: 0x9c},\n\t{value: 0x263d, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8126, lo: 0xb1, hi: 0xb1},\n\t{value: 0x8127, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a84, lo: 0xb3, hi: 0xb3},\n\t{value: 0x8128, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a8d, lo: 0xb5, hi: 0xb5},\n\t{value: 0x45b4, lo: 0xb6, hi: 0xb6},\n\t{value: 0x45f4, lo: 0xb7, hi: 0xb7},\n\t{value: 0x45bc, lo: 0xb8, hi: 0xb8},\n\t{value: 0x45ff, lo: 0xb9, hi: 0xb9},\n\t{value: 0x8127, lo: 0xba, hi: 0xbd},\n\t// Block 0x26, offset 0x107\n\t{value: 0x0000, lo: 0x0b},\n\t{value: 0x8127, lo: 0x80, hi: 0x80},\n\t{value: 0x4a96, lo: 0x81, hi: 0x81},\n\t{value: 0x8132, lo: 0x82, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0x86, hi: 0x87},\n\t{value: 0x266e, lo: 0x93, hi: 0x93},\n\t{value: 0x2675, lo: 0x9d, hi: 0x9d},\n\t{value: 0x267c, lo: 0xa2, hi: 0xa2},\n\t{value: 0x2683, lo: 0xa7, hi: 0xa7},\n\t{value: 0x268a, lo: 0xac, hi: 0xac},\n\t{value: 0x2667, lo: 0xb9, hi: 0xb9},\n\t// Block 0x27, offset 0x113\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x86, hi: 0x86},\n\t// Block 0x28, offset 0x115\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x2d1e, lo: 0xa6, hi: 0xa6},\n\t{value: 0x9900, lo: 0xae, hi: 0xae},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x29, offset 0x11b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t// Block 0x2a, offset 0x11d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x030f, lo: 0xbc, hi: 0xbc},\n\t// Block 0x2b, offset 0x11f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xa000, lo: 0x80, hi: 0x92},\n\t// Block 0x2c, offset 0x121\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0xb900, lo: 0xa1, hi: 0xb5},\n\t// Block 0x2d, offset 0x123\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0xa8, hi: 0xbf},\n\t// Block 0x2e, offset 0x125\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x9900, lo: 0x80, hi: 0x82},\n\t// Block 0x2f, offset 0x127\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9f},\n\t// Block 0x30, offset 0x129\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x94, hi: 0x94},\n\t{value: 0x8104, lo: 0xb4, hi: 0xb4},\n\t// Block 0x31, offset 0x12c\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x92, hi: 0x92},\n\t{value: 0x8132, lo: 0x9d, hi: 0x9d},\n\t// Block 0x32, offset 0x12f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8131, lo: 0xa9, hi: 0xa9},\n\t// Block 0x33, offset 0x131\n\t{value: 0x0004, lo: 0x02},\n\t{value: 0x812e, lo: 0xb9, hi: 0xba},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbb},\n\t// Block 0x34, offset 0x134\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x97, hi: 0x97},\n\t{value: 0x812d, lo: 0x98, hi: 0x98},\n\t// Block 0x35, offset 0x137\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x8104, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8132, lo: 0xb5, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x36, offset 0x13b\n\t{value: 0x0000, lo: 0x04},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t{value: 0x812d, lo: 0xb5, hi: 0xba},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x37, offset 0x140\n\t{value: 0x0000, lo: 0x08},\n\t{value: 0x2d66, lo: 0x80, hi: 0x80},\n\t{value: 0x2d6e, lo: 0x81, hi: 0x81},\n\t{value: 0xa000, lo: 0x82, hi: 0x82},\n\t{value: 0x2d76, lo: 0x83, hi: 0x83},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xab, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xac},\n\t{value: 0x8132, lo: 0xad, hi: 0xb3},\n\t// Block 0x38, offset 0x149\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xaa, hi: 0xab},\n\t// Block 0x39, offset 0x14b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8102, lo: 0xa6, hi: 0xa6},\n\t{value: 0x8104, lo: 0xb2, hi: 0xb3},\n\t// Block 0x3a, offset 0x14e\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x3b, offset 0x150\n\t{value: 0x0000, lo: 0x0a},\n\t{value: 0x8132, lo: 0x90, hi: 0x92},\n\t{value: 0x8101, lo: 0x94, hi: 0x94},\n\t{value: 0x812d, lo: 0x95, hi: 0x99},\n\t{value: 0x8132, lo: 0x9a, hi: 0x9b},\n\t{value: 0x812d, lo: 0x9c, hi: 0x9f},\n\t{value: 0x8132, lo: 0xa0, hi: 0xa0},\n\t{value: 0x8101, lo: 0xa2, hi: 0xa8},\n\t{value: 0x812d, lo: 0xad, hi: 0xad},\n\t{value: 0x8132, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb9},\n\t// Block 0x3c, offset 0x15b\n\t{value: 0x0002, lo: 0x0a},\n\t{value: 0x0043, lo: 0xac, hi: 0xac},\n\t{value: 0x00d1, lo: 0xad, hi: 0xad},\n\t{value: 0x0045, lo: 0xae, hi: 0xae},\n\t{value: 0x0049, lo: 0xb0, hi: 0xb1},\n\t{value: 0x00e6, lo: 0xb2, hi: 0xb2},\n\t{value: 0x004f, lo: 0xb3, hi: 0xba},\n\t{value: 0x005f, lo: 0xbc, hi: 0xbc},\n\t{value: 0x00ef, lo: 0xbd, hi: 0xbd},\n\t{value: 0x0061, lo: 0xbe, hi: 0xbe},\n\t{value: 0x0065, lo: 0xbf, hi: 0xbf},\n\t// Block 0x3d, offset 0x166\n\t{value: 0x0000, lo: 0x0f},\n\t{value: 0x8132, lo: 0x80, hi: 0x81},\n\t{value: 0x812d, lo: 0x82, hi: 0x82},\n\t{value: 0x8132, lo: 0x83, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8a},\n\t{value: 0x8132, lo: 0x8b, hi: 0x8c},\n\t{value: 0x8135, lo: 0x8d, hi: 0x8d},\n\t{value: 0x812a, lo: 0x8e, hi: 0x8e},\n\t{value: 0x812d, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8129, lo: 0x90, hi: 0x90},\n\t{value: 0x8132, lo: 0x91, hi: 0xb5},\n\t{value: 0x8132, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8134, lo: 0xbc, hi: 0xbc},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbe},\n\t{value: 0x812d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x3e, offset 0x176\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x0001, lo: 0x80, hi: 0x8a},\n\t{value: 0x043b, lo: 0x91, hi: 0x91},\n\t{value: 0x429b, lo: 0x97, hi: 0x97},\n\t{value: 0x001d, lo: 0xa4, hi: 0xa4},\n\t{value: 0x1873, lo: 0xa5, hi: 0xa5},\n\t{value: 0x1b5c, lo: 0xa6, hi: 0xa6},\n\t{value: 0x0001, lo: 0xaf, hi: 0xaf},\n\t{value: 0x2691, lo: 0xb3, hi: 0xb3},\n\t{value: 0x27fe, lo: 0xb4, hi: 0xb4},\n\t{value: 0x2698, lo: 0xb6, hi: 0xb6},\n\t{value: 0x2808, lo: 0xb7, hi: 0xb7},\n\t{value: 0x186d, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4269, lo: 0xbe, hi: 0xbe},\n\t// Block 0x3f, offset 0x184\n\t{value: 0x0002, lo: 0x0d},\n\t{value: 0x1933, lo: 0x87, hi: 0x87},\n\t{value: 0x1930, lo: 0x88, hi: 0x88},\n\t{value: 0x1870, lo: 0x89, hi: 0x89},\n\t{value: 0x298e, lo: 0x97, hi: 0x97},\n\t{value: 0x0001, lo: 0x9f, hi: 0x9f},\n\t{value: 0x0021, lo: 0xb0, hi: 0xb0},\n\t{value: 0x0093, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0029, lo: 0xb4, hi: 0xb9},\n\t{value: 0x0017, lo: 0xba, hi: 0xba},\n\t{value: 0x0467, lo: 0xbb, hi: 0xbb},\n\t{value: 0x003b, lo: 0xbc, hi: 0xbc},\n\t{value: 0x0011, lo: 0xbd, hi: 0xbe},\n\t{value: 0x009d, lo: 0xbf, hi: 0xbf},\n\t// Block 0x40, offset 0x192\n\t{value: 0x0002, lo: 0x0f},\n\t{value: 0x0021, lo: 0x80, hi: 0x89},\n\t{value: 0x0017, lo: 0x8a, hi: 0x8a},\n\t{value: 0x0467, lo: 0x8b, hi: 0x8b},\n\t{value: 0x003b, lo: 0x8c, hi: 0x8c},\n\t{value: 0x0011, lo: 0x8d, hi: 0x8e},\n\t{value: 0x0083, lo: 0x90, hi: 0x90},\n\t{value: 0x008b, lo: 0x91, hi: 0x91},\n\t{value: 0x009f, lo: 0x92, hi: 0x92},\n\t{value: 0x00b1, lo: 0x93, hi: 0x93},\n\t{value: 0x0104, lo: 0x94, hi: 0x94},\n\t{value: 0x0091, lo: 0x95, hi: 0x95},\n\t{value: 0x0097, lo: 0x96, hi: 0x99},\n\t{value: 0x00a1, lo: 0x9a, hi: 0x9a},\n\t{value: 0x00a7, lo: 0x9b, hi: 0x9c},\n\t{value: 0x1999, lo: 0xa8, hi: 0xa8},\n\t// Block 0x41, offset 0x1a2\n\t{value: 0x0000, lo: 0x0d},\n\t{value: 0x8132, lo: 0x90, hi: 0x91},\n\t{value: 0x8101, lo: 0x92, hi: 0x93},\n\t{value: 0x8132, lo: 0x94, hi: 0x97},\n\t{value: 0x8101, lo: 0x98, hi: 0x9a},\n\t{value: 0x8132, lo: 0x9b, hi: 0x9c},\n\t{value: 0x8132, lo: 0xa1, hi: 0xa1},\n\t{value: 0x8101, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8132, lo: 0xa7, hi: 0xa7},\n\t{value: 0x812d, lo: 0xa8, hi: 0xa8},\n\t{value: 0x8132, lo: 0xa9, hi: 0xa9},\n\t{value: 0x8101, lo: 0xaa, hi: 0xab},\n\t{value: 0x812d, lo: 0xac, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t// Block 0x42, offset 0x1b0\n\t{value: 0x0007, lo: 0x06},\n\t{value: 0x2180, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t{value: 0x3bb9, lo: 0x9a, hi: 0x9b},\n\t{value: 0x3bc7, lo: 0xae, hi: 0xae},\n\t// Block 0x43, offset 0x1b7\n\t{value: 0x000e, lo: 0x05},\n\t{value: 0x3bce, lo: 0x8d, hi: 0x8e},\n\t{value: 0x3bd5, lo: 0x8f, hi: 0x8f},\n\t{value: 0xa000, lo: 0x90, hi: 0x90},\n\t{value: 0xa000, lo: 0x92, hi: 0x92},\n\t{value: 0xa000, lo: 0x94, hi: 0x94},\n\t// Block 0x44, offset 0x1bd\n\t{value: 0x0173, lo: 0x0e},\n\t{value: 0xa000, lo: 0x83, hi: 0x83},\n\t{value: 0x3be3, lo: 0x84, hi: 0x84},\n\t{value: 0xa000, lo: 0x88, hi: 0x88},\n\t{value: 0x3bea, lo: 0x89, hi: 0x89},\n\t{value: 0xa000, lo: 0x8b, hi: 0x8b},\n\t{value: 0x3bf1, lo: 0x8c, hi: 0x8c},\n\t{value: 0xa000, lo: 0xa3, hi: 0xa3},\n\t{value: 0x3bf8, lo: 0xa4, hi: 0xa4},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x3bff, lo: 0xa6, hi: 0xa6},\n\t{value: 0x269f, lo: 0xac, hi: 0xad},\n\t{value: 0x26a6, lo: 0xaf, hi: 0xaf},\n\t{value: 0x281c, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xbc, hi: 0xbc},\n\t// Block 0x45, offset 0x1cc\n\t{value: 0x0007, lo: 0x03},\n\t{value: 0x3c68, lo: 0xa0, hi: 0xa1},\n\t{value: 0x3c92, lo: 0xa2, hi: 0xa3},\n\t{value: 0x3cbc, lo: 0xaa, hi: 0xad},\n\t// Block 0x46, offset 0x1d0\n\t{value: 0x0004, lo: 0x01},\n\t{value: 0x048b, lo: 0xa9, hi: 0xaa},\n\t// Block 0x47, offset 0x1d2\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x0057, lo: 0x80, hi: 0x8f},\n\t{value: 0x0083, lo: 0x90, hi: 0xa9},\n\t{value: 0x0021, lo: 0xaa, hi: 0xaa},\n\t// Block 0x48, offset 0x1d6\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x299b, lo: 0x8c, hi: 0x8c},\n\t// Block 0x49, offset 0x1d8\n\t{value: 0x0263, lo: 0x02},\n\t{value: 0x1b8c, lo: 0xb4, hi: 0xb4},\n\t{value: 0x192d, lo: 0xb5, hi: 0xb6},\n\t// Block 0x4a, offset 0x1db\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x44dd, lo: 0x9c, hi: 0x9c},\n\t// Block 0x4b, offset 0x1dd\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x0095, lo: 0xbc, hi: 0xbc},\n\t{value: 0x006d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x4c, offset 0x1e0\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xaf, hi: 0xb1},\n\t// Block 0x4d, offset 0x1e2\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x047f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x4e, offset 0x1e5\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xa0, hi: 0xbf},\n\t// Block 0x4f, offset 0x1e7\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x0dc3, lo: 0x9f, hi: 0x9f},\n\t// Block 0x50, offset 0x1e9\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x162f, lo: 0xb3, hi: 0xb3},\n\t// Block 0x51, offset 0x1eb\n\t{value: 0x0004, lo: 0x0b},\n\t{value: 0x1597, lo: 0x80, hi: 0x82},\n\t{value: 0x15af, lo: 0x83, hi: 0x83},\n\t{value: 0x15c7, lo: 0x84, hi: 0x85},\n\t{value: 0x15d7, lo: 0x86, hi: 0x89},\n\t{value: 0x15eb, lo: 0x8a, hi: 0x8c},\n\t{value: 0x15ff, lo: 0x8d, hi: 0x8d},\n\t{value: 0x1607, lo: 0x8e, hi: 0x8e},\n\t{value: 0x160f, lo: 0x8f, hi: 0x90},\n\t{value: 0x161b, lo: 0x91, hi: 0x93},\n\t{value: 0x162b, lo: 0x94, hi: 0x94},\n\t{value: 0x1633, lo: 0x95, hi: 0x95},\n\t// Block 0x52, offset 0x1f7\n\t{value: 0x0004, lo: 0x09},\n\t{value: 0x0001, lo: 0x80, hi: 0x80},\n\t{value: 0x812c, lo: 0xaa, hi: 0xaa},\n\t{value: 0x8131, lo: 0xab, hi: 0xab},\n\t{value: 0x8133, lo: 0xac, hi: 0xac},\n\t{value: 0x812e, lo: 0xad, hi: 0xad},\n\t{value: 0x812f, lo: 0xae, hi: 0xae},\n\t{value: 0x812f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x04b3, lo: 0xb6, hi: 0xb6},\n\t{value: 0x0887, lo: 0xb8, hi: 0xba},\n\t// Block 0x53, offset 0x201\n\t{value: 0x0006, lo: 0x09},\n\t{value: 0x0313, lo: 0xb1, hi: 0xb1},\n\t{value: 0x0317, lo: 0xb2, hi: 0xb2},\n\t{value: 0x4a3b, lo: 0xb3, hi: 0xb3},\n\t{value: 0x031b, lo: 0xb4, hi: 0xb4},\n\t{value: 0x4a41, lo: 0xb5, hi: 0xb6},\n\t{value: 0x031f, lo: 0xb7, hi: 0xb7},\n\t{value: 0x0323, lo: 0xb8, hi: 0xb8},\n\t{value: 0x0327, lo: 0xb9, hi: 0xb9},\n\t{value: 0x4a4d, lo: 0xba, hi: 0xbf},\n\t// Block 0x54, offset 0x20b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xaf, hi: 0xaf},\n\t{value: 0x8132, lo: 0xb4, hi: 0xbd},\n\t// Block 0x55, offset 0x20e\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0x020f, lo: 0x9c, hi: 0x9c},\n\t{value: 0x0212, lo: 0x9d, hi: 0x9d},\n\t{value: 0x8132, lo: 0x9e, hi: 0x9f},\n\t// Block 0x56, offset 0x212\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb1},\n\t// Block 0x57, offset 0x214\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x163b, lo: 0xb0, hi: 0xb0},\n\t// Block 0x58, offset 0x216\n\t{value: 0x000c, lo: 0x01},\n\t{value: 0x00d7, lo: 0xb8, hi: 0xb9},\n\t// Block 0x59, offset 0x218\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t// Block 0x5a, offset 0x21a\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x84, hi: 0x84},\n\t{value: 0x8132, lo: 0xa0, hi: 0xb1},\n\t// Block 0x5b, offset 0x21d\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xab, hi: 0xad},\n\t// Block 0x5c, offset 0x21f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x93, hi: 0x93},\n\t// Block 0x5d, offset 0x221\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0xb3, hi: 0xb3},\n\t// Block 0x5e, offset 0x223\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t// Block 0x5f, offset 0x225\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb0},\n\t{value: 0x8132, lo: 0xb2, hi: 0xb3},\n\t{value: 0x812d, lo: 0xb4, hi: 0xb4},\n\t{value: 0x8132, lo: 0xb7, hi: 0xb8},\n\t{value: 0x8132, lo: 0xbe, hi: 0xbf},\n\t// Block 0x60, offset 0x22b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x81, hi: 0x81},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t// Block 0x61, offset 0x22e\n\t{value: 0x0008, lo: 0x03},\n\t{value: 0x1637, lo: 0x9c, hi: 0x9d},\n\t{value: 0x0125, lo: 0x9e, hi: 0x9e},\n\t{value: 0x1643, lo: 0x9f, hi: 0x9f},\n\t// Block 0x62, offset 0x232\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xad, hi: 0xad},\n\t// Block 0x63, offset 0x234\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0xe500, lo: 0x80, hi: 0x80},\n\t{value: 0xc600, lo: 0x81, hi: 0x9b},\n\t{value: 0xe500, lo: 0x9c, hi: 0x9c},\n\t{value: 0xc600, lo: 0x9d, hi: 0xb7},\n\t{value: 0xe500, lo: 0xb8, hi: 0xb8},\n\t{value: 0xc600, lo: 0xb9, hi: 0xbf},\n\t// Block 0x64, offset 0x23b\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x93},\n\t{value: 0xe500, lo: 0x94, hi: 0x94},\n\t{value: 0xc600, lo: 0x95, hi: 0xaf},\n\t{value: 0xe500, lo: 0xb0, hi: 0xb0},\n\t{value: 0xc600, lo: 0xb1, hi: 0xbf},\n\t// Block 0x65, offset 0x241\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8b},\n\t{value: 0xe500, lo: 0x8c, hi: 0x8c},\n\t{value: 0xc600, lo: 0x8d, hi: 0xa7},\n\t{value: 0xe500, lo: 0xa8, hi: 0xa8},\n\t{value: 0xc600, lo: 0xa9, hi: 0xbf},\n\t// Block 0x66, offset 0x247\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xc600, lo: 0x80, hi: 0x83},\n\t{value: 0xe500, lo: 0x84, hi: 0x84},\n\t{value: 0xc600, lo: 0x85, hi: 0x9f},\n\t{value: 0xe500, lo: 0xa0, hi: 0xa0},\n\t{value: 0xc600, lo: 0xa1, hi: 0xbb},\n\t{value: 0xe500, lo: 0xbc, hi: 0xbc},\n\t{value: 0xc600, lo: 0xbd, hi: 0xbf},\n\t// Block 0x67, offset 0x24f\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x97},\n\t{value: 0xe500, lo: 0x98, hi: 0x98},\n\t{value: 0xc600, lo: 0x99, hi: 0xb3},\n\t{value: 0xe500, lo: 0xb4, hi: 0xb4},\n\t{value: 0xc600, lo: 0xb5, hi: 0xbf},\n\t// Block 0x68, offset 0x255\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x8f},\n\t{value: 0xe500, lo: 0x90, hi: 0x90},\n\t{value: 0xc600, lo: 0x91, hi: 0xab},\n\t{value: 0xe500, lo: 0xac, hi: 0xac},\n\t{value: 0xc600, lo: 0xad, hi: 0xbf},\n\t// Block 0x69, offset 0x25b\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t{value: 0xe500, lo: 0xa4, hi: 0xa4},\n\t{value: 0xc600, lo: 0xa5, hi: 0xbf},\n\t// Block 0x6a, offset 0x261\n\t{value: 0x0000, lo: 0x03},\n\t{value: 0xc600, lo: 0x80, hi: 0x87},\n\t{value: 0xe500, lo: 0x88, hi: 0x88},\n\t{value: 0xc600, lo: 0x89, hi: 0xa3},\n\t// Block 0x6b, offset 0x265\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x0003, lo: 0x81, hi: 0xbf},\n\t// Block 0x6c, offset 0x267\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xbd, hi: 0xbd},\n\t// Block 0x6d, offset 0x269\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0xa0, hi: 0xa0},\n\t// Block 0x6e, offset 0x26b\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb6, hi: 0xba},\n\t// Block 0x6f, offset 0x26d\n\t{value: 0x002c, lo: 0x05},\n\t{value: 0x812d, lo: 0x8d, hi: 0x8d},\n\t{value: 0x8132, lo: 0x8f, hi: 0x8f},\n\t{value: 0x8132, lo: 0xb8, hi: 0xb8},\n\t{value: 0x8101, lo: 0xb9, hi: 0xba},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x70, offset 0x273\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0xa5, hi: 0xa5},\n\t{value: 0x812d, lo: 0xa6, hi: 0xa6},\n\t// Block 0x71, offset 0x276\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x86, hi: 0x86},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x72, offset 0x279\n\t{value: 0x17fe, lo: 0x07},\n\t{value: 0xa000, lo: 0x99, hi: 0x99},\n\t{value: 0x4238, lo: 0x9a, hi: 0x9a},\n\t{value: 0xa000, lo: 0x9b, hi: 0x9b},\n\t{value: 0x4242, lo: 0x9c, hi: 0x9c},\n\t{value: 0xa000, lo: 0xa5, hi: 0xa5},\n\t{value: 0x424c, lo: 0xab, hi: 0xab},\n\t{value: 0x8104, lo: 0xb9, hi: 0xba},\n\t// Block 0x73, offset 0x281\n\t{value: 0x0000, lo: 0x06},\n\t{value: 0x8132, lo: 0x80, hi: 0x82},\n\t{value: 0x9900, lo: 0xa7, hi: 0xa7},\n\t{value: 0x2d7e, lo: 0xae, hi: 0xae},\n\t{value: 0x2d88, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb1, hi: 0xb2},\n\t{value: 0x8104, lo: 0xb3, hi: 0xb4},\n\t// Block 0x74, offset 0x288\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x80, hi: 0x80},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x75, offset 0x28b\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb5, hi: 0xb5},\n\t{value: 0x8102, lo: 0xb6, hi: 0xb6},\n\t// Block 0x76, offset 0x28e\n\t{value: 0x0002, lo: 0x01},\n\t{value: 0x8102, lo: 0xa9, hi: 0xaa},\n\t// Block 0x77, offset 0x290\n\t{value: 0x0000, lo: 0x07},\n\t{value: 0xa000, lo: 0x87, hi: 0x87},\n\t{value: 0x2d92, lo: 0x8b, hi: 0x8b},\n\t{value: 0x2d9c, lo: 0x8c, hi: 0x8c},\n\t{value: 0x8104, lo: 0x8d, hi: 0x8d},\n\t{value: 0x9900, lo: 0x97, hi: 0x97},\n\t{value: 0x8132, lo: 0xa6, hi: 0xac},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb4},\n\t// Block 0x78, offset 0x298\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x86, hi: 0x86},\n\t// Block 0x79, offset 0x29b\n\t{value: 0x6b5a, lo: 0x06},\n\t{value: 0x9900, lo: 0xb0, hi: 0xb0},\n\t{value: 0xa000, lo: 0xb9, hi: 0xb9},\n\t{value: 0x9900, lo: 0xba, hi: 0xba},\n\t{value: 0x2db0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x2da6, lo: 0xbc, hi: 0xbd},\n\t{value: 0x2dba, lo: 0xbe, hi: 0xbe},\n\t// Block 0x7a, offset 0x2a2\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0x82, hi: 0x82},\n\t{value: 0x8102, lo: 0x83, hi: 0x83},\n\t// Block 0x7b, offset 0x2a5\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x9900, lo: 0xaf, hi: 0xaf},\n\t{value: 0xa000, lo: 0xb8, hi: 0xb9},\n\t{value: 0x2dc4, lo: 0xba, hi: 0xba},\n\t{value: 0x2dce, lo: 0xbb, hi: 0xbb},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x7c, offset 0x2ab\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8102, lo: 0x80, hi: 0x80},\n\t// Block 0x7d, offset 0x2ad\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xbf, hi: 0xbf},\n\t// Block 0x7e, offset 0x2af\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8104, lo: 0xb6, hi: 0xb6},\n\t{value: 0x8102, lo: 0xb7, hi: 0xb7},\n\t// Block 0x7f, offset 0x2b2\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8104, lo: 0xab, hi: 0xab},\n\t// Block 0x80, offset 0x2b4\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0xb0, hi: 0xb4},\n\t// Block 0x81, offset 0x2b6\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0xb0, hi: 0xb6},\n\t// Block 0x82, offset 0x2b8\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8101, lo: 0x9e, hi: 0x9e},\n\t// Block 0x83, offset 0x2ba\n\t{value: 0x0000, lo: 0x0c},\n\t{value: 0x45cc, lo: 0x9e, hi: 0x9e},\n\t{value: 0x45d6, lo: 0x9f, hi: 0x9f},\n\t{value: 0x460a, lo: 0xa0, hi: 0xa0},\n\t{value: 0x4618, lo: 0xa1, hi: 0xa1},\n\t{value: 0x4626, lo: 0xa2, hi: 0xa2},\n\t{value: 0x4634, lo: 0xa3, hi: 0xa3},\n\t{value: 0x4642, lo: 0xa4, hi: 0xa4},\n\t{value: 0x812b, lo: 0xa5, hi: 0xa6},\n\t{value: 0x8101, lo: 0xa7, hi: 0xa9},\n\t{value: 0x8130, lo: 0xad, hi: 0xad},\n\t{value: 0x812b, lo: 0xae, hi: 0xb2},\n\t{value: 0x812d, lo: 0xbb, hi: 0xbf},\n\t// Block 0x84, offset 0x2c7\n\t{value: 0x0000, lo: 0x09},\n\t{value: 0x812d, lo: 0x80, hi: 0x82},\n\t{value: 0x8132, lo: 0x85, hi: 0x89},\n\t{value: 0x812d, lo: 0x8a, hi: 0x8b},\n\t{value: 0x8132, lo: 0xaa, hi: 0xad},\n\t{value: 0x45e0, lo: 0xbb, hi: 0xbb},\n\t{value: 0x45ea, lo: 0xbc, hi: 0xbc},\n\t{value: 0x4650, lo: 0xbd, hi: 0xbd},\n\t{value: 0x466c, lo: 0xbe, hi: 0xbe},\n\t{value: 0x465e, lo: 0xbf, hi: 0xbf},\n\t// Block 0x85, offset 0x2d1\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x467a, lo: 0x80, hi: 0x80},\n\t// Block 0x86, offset 0x2d3\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x8132, lo: 0x82, hi: 0x84},\n\t// Block 0x87, offset 0x2d5\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x0043, lo: 0x80, hi: 0x99},\n\t{value: 0x0083, lo: 0x9a, hi: 0xb3},\n\t{value: 0x0043, lo: 0xb4, hi: 0xbf},\n\t// Block 0x88, offset 0x2d9\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x005b, lo: 0x80, hi: 0x8d},\n\t{value: 0x0083, lo: 0x8e, hi: 0x94},\n\t{value: 0x0093, lo: 0x96, hi: 0xa7},\n\t{value: 0x0043, lo: 0xa8, hi: 0xbf},\n\t// Block 0x89, offset 0x2de\n\t{value: 0x0002, lo: 0x0b},\n\t{value: 0x0073, lo: 0x80, hi: 0x81},\n\t{value: 0x0083, lo: 0x82, hi: 0x9b},\n\t{value: 0x0043, lo: 0x9c, hi: 0x9c},\n\t{value: 0x0047, lo: 0x9e, hi: 0x9f},\n\t{value: 0x004f, lo: 0xa2, hi: 0xa2},\n\t{value: 0x0055, lo: 0xa5, hi: 0xa6},\n\t{value: 0x005d, lo: 0xa9, hi: 0xac},\n\t{value: 0x0067, lo: 0xae, hi: 0xb5},\n\t{value: 0x0083, lo: 0xb6, hi: 0xb9},\n\t{value: 0x008d, lo: 0xbb, hi: 0xbb},\n\t{value: 0x0091, lo: 0xbd, hi: 0xbf},\n\t// Block 0x8a, offset 0x2ea\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x0097, lo: 0x80, hi: 0x83},\n\t{value: 0x00a1, lo: 0x85, hi: 0x8f},\n\t{value: 0x0043, lo: 0x90, hi: 0xa9},\n\t{value: 0x0083, lo: 0xaa, hi: 0xbf},\n\t// Block 0x8b, offset 0x2ef\n\t{value: 0x0002, lo: 0x08},\n\t{value: 0x00af, lo: 0x80, hi: 0x83},\n\t{value: 0x0043, lo: 0x84, hi: 0x85},\n\t{value: 0x0049, lo: 0x87, hi: 0x8a},\n\t{value: 0x0055, lo: 0x8d, hi: 0x94},\n\t{value: 0x0067, lo: 0x96, hi: 0x9c},\n\t{value: 0x0083, lo: 0x9e, hi: 0xb7},\n\t{value: 0x0043, lo: 0xb8, hi: 0xb9},\n\t{value: 0x0049, lo: 0xbb, hi: 0xbe},\n\t// Block 0x8c, offset 0x2f8\n\t{value: 0x0002, lo: 0x05},\n\t{value: 0x0053, lo: 0x80, hi: 0x84},\n\t{value: 0x005f, lo: 0x86, hi: 0x86},\n\t{value: 0x0067, lo: 0x8a, hi: 0x90},\n\t{value: 0x0083, lo: 0x92, hi: 0xab},\n\t{value: 0x0043, lo: 0xac, hi: 0xbf},\n\t// Block 0x8d, offset 0x2fe\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x006b, lo: 0x80, hi: 0x85},\n\t{value: 0x0083, lo: 0x86, hi: 0x9f},\n\t{value: 0x0043, lo: 0xa0, hi: 0xb9},\n\t{value: 0x0083, lo: 0xba, hi: 0xbf},\n\t// Block 0x8e, offset 0x303\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x008f, lo: 0x80, hi: 0x93},\n\t{value: 0x0043, lo: 0x94, hi: 0xad},\n\t{value: 0x0083, lo: 0xae, hi: 0xbf},\n\t// Block 0x8f, offset 0x307\n\t{value: 0x0002, lo: 0x04},\n\t{value: 0x00a7, lo: 0x80, hi: 0x87},\n\t{value: 0x0043, lo: 0x88, hi: 0xa1},\n\t{value: 0x0083, lo: 0xa2, hi: 0xbb},\n\t{value: 0x0043, lo: 0xbc, hi: 0xbf},\n\t// Block 0x90, offset 0x30c\n\t{value: 0x0002, lo: 0x03},\n\t{value: 0x004b, lo: 0x80, hi: 0x95},\n\t{value: 0x0083, lo: 0x96, hi: 0xaf},\n\t{value: 0x0043, lo: 0xb0, hi: 0xbf},\n\t// Block 0x91, offset 0x310\n\t{value: 0x0003, lo: 0x0f},\n\t{value: 0x01b8, lo: 0x80, hi: 0x80},\n\t{value: 0x045f, lo: 0x81, hi: 0x81},\n\t{value: 0x01bb, lo: 0x82, hi: 0x9a},\n\t{value: 0x045b, lo: 0x9b, hi: 0x9b},\n\t{value: 0x01c7, lo: 0x9c, hi: 0x9c},\n\t{value: 0x01d0, lo: 0x9d, hi: 0x9d},\n\t{value: 0x01d6, lo: 0x9e, hi: 0x9e},\n\t{value: 0x01fa, lo: 0x9f, hi: 0x9f},\n\t{value: 0x01eb, lo: 0xa0, hi: 0xa0},\n\t{value: 0x01e8, lo: 0xa1, hi: 0xa1},\n\t{value: 0x0173, lo: 0xa2, hi: 0xb2},\n\t{value: 0x0188, lo: 0xb3, hi: 0xb3},\n\t{value: 0x01a6, lo: 0xb4, hi: 0xba},\n\t{value: 0x045f, lo: 0xbb, hi: 0xbb},\n\t{value: 0x01bb, lo: 0xbc, hi: 0xbf},\n\t// Block 0x92, offset 0x320\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01c7, lo: 0x80, hi: 0x94},\n\t{value: 0x045b, lo: 0x95, hi: 0x95},\n\t{value: 0x01c7, lo: 0x96, hi: 0x96},\n\t{value: 0x01d0, lo: 0x97, hi: 0x97},\n\t{value: 0x01d6, lo: 0x98, hi: 0x98},\n\t{value: 0x01fa, lo: 0x99, hi: 0x99},\n\t{value: 0x01eb, lo: 0x9a, hi: 0x9a},\n\t{value: 0x01e8, lo: 0x9b, hi: 0x9b},\n\t{value: 0x0173, lo: 0x9c, hi: 0xac},\n\t{value: 0x0188, lo: 0xad, hi: 0xad},\n\t{value: 0x01a6, lo: 0xae, hi: 0xb4},\n\t{value: 0x045f, lo: 0xb5, hi: 0xb5},\n\t{value: 0x01bb, lo: 0xb6, hi: 0xbf},\n\t// Block 0x93, offset 0x32e\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01d9, lo: 0x80, hi: 0x8e},\n\t{value: 0x045b, lo: 0x8f, hi: 0x8f},\n\t{value: 0x01c7, lo: 0x90, hi: 0x90},\n\t{value: 0x01d0, lo: 0x91, hi: 0x91},\n\t{value: 0x01d6, lo: 0x92, hi: 0x92},\n\t{value: 0x01fa, lo: 0x93, hi: 0x93},\n\t{value: 0x01eb, lo: 0x94, hi: 0x94},\n\t{value: 0x01e8, lo: 0x95, hi: 0x95},\n\t{value: 0x0173, lo: 0x96, hi: 0xa6},\n\t{value: 0x0188, lo: 0xa7, hi: 0xa7},\n\t{value: 0x01a6, lo: 0xa8, hi: 0xae},\n\t{value: 0x045f, lo: 0xaf, hi: 0xaf},\n\t{value: 0x01bb, lo: 0xb0, hi: 0xbf},\n\t// Block 0x94, offset 0x33c\n\t{value: 0x0003, lo: 0x0d},\n\t{value: 0x01eb, lo: 0x80, hi: 0x88},\n\t{value: 0x045b, lo: 0x89, hi: 0x89},\n\t{value: 0x01c7, lo: 0x8a, hi: 0x8a},\n\t{value: 0x01d0, lo: 0x8b, hi: 0x8b},\n\t{value: 0x01d6, lo: 0x8c, hi: 0x8c},\n\t{value: 0x01fa, lo: 0x8d, hi: 0x8d},\n\t{value: 0x01eb, lo: 0x8e, hi: 0x8e},\n\t{value: 0x01e8, lo: 0x8f, hi: 0x8f},\n\t{value: 0x0173, lo: 0x90, hi: 0xa0},\n\t{value: 0x0188, lo: 0xa1, hi: 0xa1},\n\t{value: 0x01a6, lo: 0xa2, hi: 0xa8},\n\t{value: 0x045f, lo: 0xa9, hi: 0xa9},\n\t{value: 0x01bb, lo: 0xaa, hi: 0xbf},\n\t// Block 0x95, offset 0x34a\n\t{value: 0x0000, lo: 0x05},\n\t{value: 0x8132, lo: 0x80, hi: 0x86},\n\t{value: 0x8132, lo: 0x88, hi: 0x98},\n\t{value: 0x8132, lo: 0x9b, hi: 0xa1},\n\t{value: 0x8132, lo: 0xa3, hi: 0xa4},\n\t{value: 0x8132, lo: 0xa6, hi: 0xaa},\n\t// Block 0x96, offset 0x350\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x812d, lo: 0x90, hi: 0x96},\n\t// Block 0x97, offset 0x352\n\t{value: 0x0000, lo: 0x02},\n\t{value: 0x8132, lo: 0x84, hi: 0x89},\n\t{value: 0x8102, lo: 0x8a, hi: 0x8a},\n\t// Block 0x98, offset 0x355\n\t{value: 0x0002, lo: 0x09},\n\t{value: 0x0063, lo: 0x80, hi: 0x89},\n\t{value: 0x1951, lo: 0x8a, hi: 0x8a},\n\t{value: 0x1981, lo: 0x8b, hi: 0x8b},\n\t{value: 0x199c, lo: 0x8c, hi: 0x8c},\n\t{value: 0x19a2, lo: 0x8d, hi: 0x8d},\n\t{value: 0x1bc0, lo: 0x8e, hi: 0x8e},\n\t{value: 0x19ae, lo: 0x8f, hi: 0x8f},\n\t{value: 0x197b, lo: 0xaa, hi: 0xaa},\n\t{value: 0x197e, lo: 0xab, hi: 0xab},\n\t// Block 0x99, offset 0x35f\n\t{value: 0x0000, lo: 0x01},\n\t{value: 0x193f, lo: 0x90, hi: 0x90},\n\t// Block 0x9a, offset 0x361\n\t{value: 0x0028, lo: 0x09},\n\t{value: 0x2862, lo: 0x80, hi: 0x80},\n\t{value: 0x2826, lo: 0x81, hi: 0x81},\n\t{value: 0x2830, lo: 0x82, hi: 0x82},\n\t{value: 0x2844, lo: 0x83, hi: 0x84},\n\t{value: 0x284e, lo: 0x85, hi: 0x86},\n\t{value: 0x283a, lo: 0x87, hi: 0x87},\n\t{value: 0x2858, lo: 0x88, hi: 0x88},\n\t{value: 0x0b6f, lo: 0x90, hi: 0x90},\n\t{value: 0x08e7, lo: 0x91, hi: 0x91},\n}\n\n// recompMap: 7520 bytes (entries only)\nvar recompMap map[uint32]rune\nvar recompMapOnce sync.Once\n\nconst recompMapPacked = \"\" +\n\t\"\\x00A\\x03\\x00\\x00\\x00\\x00\\xc0\" + // 0x00410300: 0x000000C0\n\t\"\\x00A\\x03\\x01\\x00\\x00\\x00\\xc1\" + // 0x00410301: 0x000000C1\n\t\"\\x00A\\x03\\x02\\x00\\x00\\x00\\xc2\" + // 0x00410302: 0x000000C2\n\t\"\\x00A\\x03\\x03\\x00\\x00\\x00\\xc3\" + // 0x00410303: 0x000000C3\n\t\"\\x00A\\x03\\b\\x00\\x00\\x00\\xc4\" + // 0x00410308: 0x000000C4\n\t\"\\x00A\\x03\\n\\x00\\x00\\x00\\xc5\" + // 0x0041030A: 0x000000C5\n\t\"\\x00C\\x03'\\x00\\x00\\x00\\xc7\" + // 0x00430327: 0x000000C7\n\t\"\\x00E\\x03\\x00\\x00\\x00\\x00\\xc8\" + // 0x00450300: 0x000000C8\n\t\"\\x00E\\x03\\x01\\x00\\x00\\x00\\xc9\" + // 0x00450301: 0x000000C9\n\t\"\\x00E\\x03\\x02\\x00\\x00\\x00\\xca\" + // 0x00450302: 0x000000CA\n\t\"\\x00E\\x03\\b\\x00\\x00\\x00\\xcb\" + // 0x00450308: 0x000000CB\n\t\"\\x00I\\x03\\x00\\x00\\x00\\x00\\xcc\" + // 0x00490300: 0x000000CC\n\t\"\\x00I\\x03\\x01\\x00\\x00\\x00\\xcd\" + // 0x00490301: 0x000000CD\n\t\"\\x00I\\x03\\x02\\x00\\x00\\x00\\xce\" + // 0x00490302: 0x000000CE\n\t\"\\x00I\\x03\\b\\x00\\x00\\x00\\xcf\" + // 0x00490308: 0x000000CF\n\t\"\\x00N\\x03\\x03\\x00\\x00\\x00\\xd1\" + // 0x004E0303: 0x000000D1\n\t\"\\x00O\\x03\\x00\\x00\\x00\\x00\\xd2\" + // 0x004F0300: 0x000000D2\n\t\"\\x00O\\x03\\x01\\x00\\x00\\x00\\xd3\" + // 0x004F0301: 0x000000D3\n\t\"\\x00O\\x03\\x02\\x00\\x00\\x00\\xd4\" + // 0x004F0302: 0x000000D4\n\t\"\\x00O\\x03\\x03\\x00\\x00\\x00\\xd5\" + // 0x004F0303: 0x000000D5\n\t\"\\x00O\\x03\\b\\x00\\x00\\x00\\xd6\" + // 0x004F0308: 0x000000D6\n\t\"\\x00U\\x03\\x00\\x00\\x00\\x00\\xd9\" + // 0x00550300: 0x000000D9\n\t\"\\x00U\\x03\\x01\\x00\\x00\\x00\\xda\" + // 0x00550301: 0x000000DA\n\t\"\\x00U\\x03\\x02\\x00\\x00\\x00\\xdb\" + // 0x00550302: 0x000000DB\n\t\"\\x00U\\x03\\b\\x00\\x00\\x00\\xdc\" + // 0x00550308: 0x000000DC\n\t\"\\x00Y\\x03\\x01\\x00\\x00\\x00\\xdd\" + // 0x00590301: 0x000000DD\n\t\"\\x00a\\x03\\x00\\x00\\x00\\x00\\xe0\" + // 0x00610300: 0x000000E0\n\t\"\\x00a\\x03\\x01\\x00\\x00\\x00\\xe1\" + // 0x00610301: 0x000000E1\n\t\"\\x00a\\x03\\x02\\x00\\x00\\x00\\xe2\" + // 0x00610302: 0x000000E2\n\t\"\\x00a\\x03\\x03\\x00\\x00\\x00\\xe3\" + // 0x00610303: 0x000000E3\n\t\"\\x00a\\x03\\b\\x00\\x00\\x00\\xe4\" + // 0x00610308: 0x000000E4\n\t\"\\x00a\\x03\\n\\x00\\x00\\x00\\xe5\" + // 0x0061030A: 0x000000E5\n\t\"\\x00c\\x03'\\x00\\x00\\x00\\xe7\" + // 0x00630327: 0x000000E7\n\t\"\\x00e\\x03\\x00\\x00\\x00\\x00\\xe8\" + // 0x00650300: 0x000000E8\n\t\"\\x00e\\x03\\x01\\x00\\x00\\x00\\xe9\" + // 0x00650301: 0x000000E9\n\t\"\\x00e\\x03\\x02\\x00\\x00\\x00\\xea\" + // 0x00650302: 0x000000EA\n\t\"\\x00e\\x03\\b\\x00\\x00\\x00\\xeb\" + // 0x00650308: 0x000000EB\n\t\"\\x00i\\x03\\x00\\x00\\x00\\x00\\xec\" + // 0x00690300: 0x000000EC\n\t\"\\x00i\\x03\\x01\\x00\\x00\\x00\\xed\" + // 0x00690301: 0x000000ED\n\t\"\\x00i\\x03\\x02\\x00\\x00\\x00\\xee\" + // 0x00690302: 0x000000EE\n\t\"\\x00i\\x03\\b\\x00\\x00\\x00\\xef\" + // 0x00690308: 0x000000EF\n\t\"\\x00n\\x03\\x03\\x00\\x00\\x00\\xf1\" + // 0x006E0303: 0x000000F1\n\t\"\\x00o\\x03\\x00\\x00\\x00\\x00\\xf2\" + // 0x006F0300: 0x000000F2\n\t\"\\x00o\\x03\\x01\\x00\\x00\\x00\\xf3\" + // 0x006F0301: 0x000000F3\n\t\"\\x00o\\x03\\x02\\x00\\x00\\x00\\xf4\" + // 0x006F0302: 0x000000F4\n\t\"\\x00o\\x03\\x03\\x00\\x00\\x00\\xf5\" + // 0x006F0303: 0x000000F5\n\t\"\\x00o\\x03\\b\\x00\\x00\\x00\\xf6\" + // 0x006F0308: 0x000000F6\n\t\"\\x00u\\x03\\x00\\x00\\x00\\x00\\xf9\" + // 0x00750300: 0x000000F9\n\t\"\\x00u\\x03\\x01\\x00\\x00\\x00\\xfa\" + // 0x00750301: 0x000000FA\n\t\"\\x00u\\x03\\x02\\x00\\x00\\x00\\xfb\" + // 0x00750302: 0x000000FB\n\t\"\\x00u\\x03\\b\\x00\\x00\\x00\\xfc\" + // 0x00750308: 0x000000FC\n\t\"\\x00y\\x03\\x01\\x00\\x00\\x00\\xfd\" + // 0x00790301: 0x000000FD\n\t\"\\x00y\\x03\\b\\x00\\x00\\x00\\xff\" + // 0x00790308: 0x000000FF\n\t\"\\x00A\\x03\\x04\\x00\\x00\\x01\\x00\" + // 0x00410304: 0x00000100\n\t\"\\x00a\\x03\\x04\\x00\\x00\\x01\\x01\" + // 0x00610304: 0x00000101\n\t\"\\x00A\\x03\\x06\\x00\\x00\\x01\\x02\" + // 0x00410306: 0x00000102\n\t\"\\x00a\\x03\\x06\\x00\\x00\\x01\\x03\" + // 0x00610306: 0x00000103\n\t\"\\x00A\\x03(\\x00\\x00\\x01\\x04\" + // 0x00410328: 0x00000104\n\t\"\\x00a\\x03(\\x00\\x00\\x01\\x05\" + // 0x00610328: 0x00000105\n\t\"\\x00C\\x03\\x01\\x00\\x00\\x01\\x06\" + // 0x00430301: 0x00000106\n\t\"\\x00c\\x03\\x01\\x00\\x00\\x01\\a\" + // 0x00630301: 0x00000107\n\t\"\\x00C\\x03\\x02\\x00\\x00\\x01\\b\" + // 0x00430302: 0x00000108\n\t\"\\x00c\\x03\\x02\\x00\\x00\\x01\\t\" + // 0x00630302: 0x00000109\n\t\"\\x00C\\x03\\a\\x00\\x00\\x01\\n\" + // 0x00430307: 0x0000010A\n\t\"\\x00c\\x03\\a\\x00\\x00\\x01\\v\" + // 0x00630307: 0x0000010B\n\t\"\\x00C\\x03\\f\\x00\\x00\\x01\\f\" + // 0x0043030C: 0x0000010C\n\t\"\\x00c\\x03\\f\\x00\\x00\\x01\\r\" + // 0x0063030C: 0x0000010D\n\t\"\\x00D\\x03\\f\\x00\\x00\\x01\\x0e\" + // 0x0044030C: 0x0000010E\n\t\"\\x00d\\x03\\f\\x00\\x00\\x01\\x0f\" + // 0x0064030C: 0x0000010F\n\t\"\\x00E\\x03\\x04\\x00\\x00\\x01\\x12\" + // 0x00450304: 0x00000112\n\t\"\\x00e\\x03\\x04\\x00\\x00\\x01\\x13\" + // 0x00650304: 0x00000113\n\t\"\\x00E\\x03\\x06\\x00\\x00\\x01\\x14\" + // 0x00450306: 0x00000114\n\t\"\\x00e\\x03\\x06\\x00\\x00\\x01\\x15\" + // 0x00650306: 0x00000115\n\t\"\\x00E\\x03\\a\\x00\\x00\\x01\\x16\" + // 0x00450307: 0x00000116\n\t\"\\x00e\\x03\\a\\x00\\x00\\x01\\x17\" + // 0x00650307: 0x00000117\n\t\"\\x00E\\x03(\\x00\\x00\\x01\\x18\" + // 0x00450328: 0x00000118\n\t\"\\x00e\\x03(\\x00\\x00\\x01\\x19\" + // 0x00650328: 0x00000119\n\t\"\\x00E\\x03\\f\\x00\\x00\\x01\\x1a\" + // 0x0045030C: 0x0000011A\n\t\"\\x00e\\x03\\f\\x00\\x00\\x01\\x1b\" + // 0x0065030C: 0x0000011B\n\t\"\\x00G\\x03\\x02\\x00\\x00\\x01\\x1c\" + // 0x00470302: 0x0000011C\n\t\"\\x00g\\x03\\x02\\x00\\x00\\x01\\x1d\" + // 0x00670302: 0x0000011D\n\t\"\\x00G\\x03\\x06\\x00\\x00\\x01\\x1e\" + // 0x00470306: 0x0000011E\n\t\"\\x00g\\x03\\x06\\x00\\x00\\x01\\x1f\" + // 0x00670306: 0x0000011F\n\t\"\\x00G\\x03\\a\\x00\\x00\\x01 \" + // 0x00470307: 0x00000120\n\t\"\\x00g\\x03\\a\\x00\\x00\\x01!\" + // 0x00670307: 0x00000121\n\t\"\\x00G\\x03'\\x00\\x00\\x01\\\"\" + // 0x00470327: 0x00000122\n\t\"\\x00g\\x03'\\x00\\x00\\x01#\" + // 0x00670327: 0x00000123\n\t\"\\x00H\\x03\\x02\\x00\\x00\\x01$\" + // 0x00480302: 0x00000124\n\t\"\\x00h\\x03\\x02\\x00\\x00\\x01%\" + // 0x00680302: 0x00000125\n\t\"\\x00I\\x03\\x03\\x00\\x00\\x01(\" + // 0x00490303: 0x00000128\n\t\"\\x00i\\x03\\x03\\x00\\x00\\x01)\" + // 0x00690303: 0x00000129\n\t\"\\x00I\\x03\\x04\\x00\\x00\\x01*\" + // 0x00490304: 0x0000012A\n\t\"\\x00i\\x03\\x04\\x00\\x00\\x01+\" + // 0x00690304: 0x0000012B\n\t\"\\x00I\\x03\\x06\\x00\\x00\\x01,\" + // 0x00490306: 0x0000012C\n\t\"\\x00i\\x03\\x06\\x00\\x00\\x01-\" + // 0x00690306: 0x0000012D\n\t\"\\x00I\\x03(\\x00\\x00\\x01.\" + // 0x00490328: 0x0000012E\n\t\"\\x00i\\x03(\\x00\\x00\\x01/\" + // 0x00690328: 0x0000012F\n\t\"\\x00I\\x03\\a\\x00\\x00\\x010\" + // 0x00490307: 0x00000130\n\t\"\\x00J\\x03\\x02\\x00\\x00\\x014\" + // 0x004A0302: 0x00000134\n\t\"\\x00j\\x03\\x02\\x00\\x00\\x015\" + // 0x006A0302: 0x00000135\n\t\"\\x00K\\x03'\\x00\\x00\\x016\" + // 0x004B0327: 0x00000136\n\t\"\\x00k\\x03'\\x00\\x00\\x017\" + // 0x006B0327: 0x00000137\n\t\"\\x00L\\x03\\x01\\x00\\x00\\x019\" + // 0x004C0301: 0x00000139\n\t\"\\x00l\\x03\\x01\\x00\\x00\\x01:\" + // 0x006C0301: 0x0000013A\n\t\"\\x00L\\x03'\\x00\\x00\\x01;\" + // 0x004C0327: 0x0000013B\n\t\"\\x00l\\x03'\\x00\\x00\\x01<\" + // 0x006C0327: 0x0000013C\n\t\"\\x00L\\x03\\f\\x00\\x00\\x01=\" + // 0x004C030C: 0x0000013D\n\t\"\\x00l\\x03\\f\\x00\\x00\\x01>\" + // 0x006C030C: 0x0000013E\n\t\"\\x00N\\x03\\x01\\x00\\x00\\x01C\" + // 0x004E0301: 0x00000143\n\t\"\\x00n\\x03\\x01\\x00\\x00\\x01D\" + // 0x006E0301: 0x00000144\n\t\"\\x00N\\x03'\\x00\\x00\\x01E\" + // 0x004E0327: 0x00000145\n\t\"\\x00n\\x03'\\x00\\x00\\x01F\" + // 0x006E0327: 0x00000146\n\t\"\\x00N\\x03\\f\\x00\\x00\\x01G\" + // 0x004E030C: 0x00000147\n\t\"\\x00n\\x03\\f\\x00\\x00\\x01H\" + // 0x006E030C: 0x00000148\n\t\"\\x00O\\x03\\x04\\x00\\x00\\x01L\" + // 0x004F0304: 0x0000014C\n\t\"\\x00o\\x03\\x04\\x00\\x00\\x01M\" + // 0x006F0304: 0x0000014D\n\t\"\\x00O\\x03\\x06\\x00\\x00\\x01N\" + // 0x004F0306: 0x0000014E\n\t\"\\x00o\\x03\\x06\\x00\\x00\\x01O\" + // 0x006F0306: 0x0000014F\n\t\"\\x00O\\x03\\v\\x00\\x00\\x01P\" + // 0x004F030B: 0x00000150\n\t\"\\x00o\\x03\\v\\x00\\x00\\x01Q\" + // 0x006F030B: 0x00000151\n\t\"\\x00R\\x03\\x01\\x00\\x00\\x01T\" + // 0x00520301: 0x00000154\n\t\"\\x00r\\x03\\x01\\x00\\x00\\x01U\" + // 0x00720301: 0x00000155\n\t\"\\x00R\\x03'\\x00\\x00\\x01V\" + // 0x00520327: 0x00000156\n\t\"\\x00r\\x03'\\x00\\x00\\x01W\" + // 0x00720327: 0x00000157\n\t\"\\x00R\\x03\\f\\x00\\x00\\x01X\" + // 0x0052030C: 0x00000158\n\t\"\\x00r\\x03\\f\\x00\\x00\\x01Y\" + // 0x0072030C: 0x00000159\n\t\"\\x00S\\x03\\x01\\x00\\x00\\x01Z\" + // 0x00530301: 0x0000015A\n\t\"\\x00s\\x03\\x01\\x00\\x00\\x01[\" + // 0x00730301: 0x0000015B\n\t\"\\x00S\\x03\\x02\\x00\\x00\\x01\\\\\" + // 0x00530302: 0x0000015C\n\t\"\\x00s\\x03\\x02\\x00\\x00\\x01]\" + // 0x00730302: 0x0000015D\n\t\"\\x00S\\x03'\\x00\\x00\\x01^\" + // 0x00530327: 0x0000015E\n\t\"\\x00s\\x03'\\x00\\x00\\x01_\" + // 0x00730327: 0x0000015F\n\t\"\\x00S\\x03\\f\\x00\\x00\\x01`\" + // 0x0053030C: 0x00000160\n\t\"\\x00s\\x03\\f\\x00\\x00\\x01a\" + // 0x0073030C: 0x00000161\n\t\"\\x00T\\x03'\\x00\\x00\\x01b\" + // 0x00540327: 0x00000162\n\t\"\\x00t\\x03'\\x00\\x00\\x01c\" + // 0x00740327: 0x00000163\n\t\"\\x00T\\x03\\f\\x00\\x00\\x01d\" + // 0x0054030C: 0x00000164\n\t\"\\x00t\\x03\\f\\x00\\x00\\x01e\" + // 0x0074030C: 0x00000165\n\t\"\\x00U\\x03\\x03\\x00\\x00\\x01h\" + // 0x00550303: 0x00000168\n\t\"\\x00u\\x03\\x03\\x00\\x00\\x01i\" + // 0x00750303: 0x00000169\n\t\"\\x00U\\x03\\x04\\x00\\x00\\x01j\" + // 0x00550304: 0x0000016A\n\t\"\\x00u\\x03\\x04\\x00\\x00\\x01k\" + // 0x00750304: 0x0000016B\n\t\"\\x00U\\x03\\x06\\x00\\x00\\x01l\" + // 0x00550306: 0x0000016C\n\t\"\\x00u\\x03\\x06\\x00\\x00\\x01m\" + // 0x00750306: 0x0000016D\n\t\"\\x00U\\x03\\n\\x00\\x00\\x01n\" + // 0x0055030A: 0x0000016E\n\t\"\\x00u\\x03\\n\\x00\\x00\\x01o\" + // 0x0075030A: 0x0000016F\n\t\"\\x00U\\x03\\v\\x00\\x00\\x01p\" + // 0x0055030B: 0x00000170\n\t\"\\x00u\\x03\\v\\x00\\x00\\x01q\" + // 0x0075030B: 0x00000171\n\t\"\\x00U\\x03(\\x00\\x00\\x01r\" + // 0x00550328: 0x00000172\n\t\"\\x00u\\x03(\\x00\\x00\\x01s\" + // 0x00750328: 0x00000173\n\t\"\\x00W\\x03\\x02\\x00\\x00\\x01t\" + // 0x00570302: 0x00000174\n\t\"\\x00w\\x03\\x02\\x00\\x00\\x01u\" + // 0x00770302: 0x00000175\n\t\"\\x00Y\\x03\\x02\\x00\\x00\\x01v\" + // 0x00590302: 0x00000176\n\t\"\\x00y\\x03\\x02\\x00\\x00\\x01w\" + // 0x00790302: 0x00000177\n\t\"\\x00Y\\x03\\b\\x00\\x00\\x01x\" + // 0x00590308: 0x00000178\n\t\"\\x00Z\\x03\\x01\\x00\\x00\\x01y\" + // 0x005A0301: 0x00000179\n\t\"\\x00z\\x03\\x01\\x00\\x00\\x01z\" + // 0x007A0301: 0x0000017A\n\t\"\\x00Z\\x03\\a\\x00\\x00\\x01{\" + // 0x005A0307: 0x0000017B\n\t\"\\x00z\\x03\\a\\x00\\x00\\x01|\" + // 0x007A0307: 0x0000017C\n\t\"\\x00Z\\x03\\f\\x00\\x00\\x01}\" + // 0x005A030C: 0x0000017D\n\t\"\\x00z\\x03\\f\\x00\\x00\\x01~\" + // 0x007A030C: 0x0000017E\n\t\"\\x00O\\x03\\x1b\\x00\\x00\\x01\\xa0\" + // 0x004F031B: 0x000001A0\n\t\"\\x00o\\x03\\x1b\\x00\\x00\\x01\\xa1\" + // 0x006F031B: 0x000001A1\n\t\"\\x00U\\x03\\x1b\\x00\\x00\\x01\\xaf\" + // 0x0055031B: 0x000001AF\n\t\"\\x00u\\x03\\x1b\\x00\\x00\\x01\\xb0\" + // 0x0075031B: 0x000001B0\n\t\"\\x00A\\x03\\f\\x00\\x00\\x01\\xcd\" + // 0x0041030C: 0x000001CD\n\t\"\\x00a\\x03\\f\\x00\\x00\\x01\\xce\" + // 0x0061030C: 0x000001CE\n\t\"\\x00I\\x03\\f\\x00\\x00\\x01\\xcf\" + // 0x0049030C: 0x000001CF\n\t\"\\x00i\\x03\\f\\x00\\x00\\x01\\xd0\" + // 0x0069030C: 0x000001D0\n\t\"\\x00O\\x03\\f\\x00\\x00\\x01\\xd1\" + // 0x004F030C: 0x000001D1\n\t\"\\x00o\\x03\\f\\x00\\x00\\x01\\xd2\" + // 0x006F030C: 0x000001D2\n\t\"\\x00U\\x03\\f\\x00\\x00\\x01\\xd3\" + // 0x0055030C: 0x000001D3\n\t\"\\x00u\\x03\\f\\x00\\x00\\x01\\xd4\" + // 0x0075030C: 0x000001D4\n\t\"\\x00\\xdc\\x03\\x04\\x00\\x00\\x01\\xd5\" + // 0x00DC0304: 0x000001D5\n\t\"\\x00\\xfc\\x03\\x04\\x00\\x00\\x01\\xd6\" + // 0x00FC0304: 0x000001D6\n\t\"\\x00\\xdc\\x03\\x01\\x00\\x00\\x01\\xd7\" + // 0x00DC0301: 0x000001D7\n\t\"\\x00\\xfc\\x03\\x01\\x00\\x00\\x01\\xd8\" + // 0x00FC0301: 0x000001D8\n\t\"\\x00\\xdc\\x03\\f\\x00\\x00\\x01\\xd9\" + // 0x00DC030C: 0x000001D9\n\t\"\\x00\\xfc\\x03\\f\\x00\\x00\\x01\\xda\" + // 0x00FC030C: 0x000001DA\n\t\"\\x00\\xdc\\x03\\x00\\x00\\x00\\x01\\xdb\" + // 0x00DC0300: 0x000001DB\n\t\"\\x00\\xfc\\x03\\x00\\x00\\x00\\x01\\xdc\" + // 0x00FC0300: 0x000001DC\n\t\"\\x00\\xc4\\x03\\x04\\x00\\x00\\x01\\xde\" + // 0x00C40304: 0x000001DE\n\t\"\\x00\\xe4\\x03\\x04\\x00\\x00\\x01\\xdf\" + // 0x00E40304: 0x000001DF\n\t\"\\x02&\\x03\\x04\\x00\\x00\\x01\\xe0\" + // 0x02260304: 0x000001E0\n\t\"\\x02'\\x03\\x04\\x00\\x00\\x01\\xe1\" + // 0x02270304: 0x000001E1\n\t\"\\x00\\xc6\\x03\\x04\\x00\\x00\\x01\\xe2\" + // 0x00C60304: 0x000001E2\n\t\"\\x00\\xe6\\x03\\x04\\x00\\x00\\x01\\xe3\" + // 0x00E60304: 0x000001E3\n\t\"\\x00G\\x03\\f\\x00\\x00\\x01\\xe6\" + // 0x0047030C: 0x000001E6\n\t\"\\x00g\\x03\\f\\x00\\x00\\x01\\xe7\" + // 0x0067030C: 0x000001E7\n\t\"\\x00K\\x03\\f\\x00\\x00\\x01\\xe8\" + // 0x004B030C: 0x000001E8\n\t\"\\x00k\\x03\\f\\x00\\x00\\x01\\xe9\" + // 0x006B030C: 0x000001E9\n\t\"\\x00O\\x03(\\x00\\x00\\x01\\xea\" + // 0x004F0328: 0x000001EA\n\t\"\\x00o\\x03(\\x00\\x00\\x01\\xeb\" + // 0x006F0328: 0x000001EB\n\t\"\\x01\\xea\\x03\\x04\\x00\\x00\\x01\\xec\" + // 0x01EA0304: 0x000001EC\n\t\"\\x01\\xeb\\x03\\x04\\x00\\x00\\x01\\xed\" + // 0x01EB0304: 0x000001ED\n\t\"\\x01\\xb7\\x03\\f\\x00\\x00\\x01\\xee\" + // 0x01B7030C: 0x000001EE\n\t\"\\x02\\x92\\x03\\f\\x00\\x00\\x01\\xef\" + // 0x0292030C: 0x000001EF\n\t\"\\x00j\\x03\\f\\x00\\x00\\x01\\xf0\" + // 0x006A030C: 0x000001F0\n\t\"\\x00G\\x03\\x01\\x00\\x00\\x01\\xf4\" + // 0x00470301: 0x000001F4\n\t\"\\x00g\\x03\\x01\\x00\\x00\\x01\\xf5\" + // 0x00670301: 0x000001F5\n\t\"\\x00N\\x03\\x00\\x00\\x00\\x01\\xf8\" + // 0x004E0300: 0x000001F8\n\t\"\\x00n\\x03\\x00\\x00\\x00\\x01\\xf9\" + // 0x006E0300: 0x000001F9\n\t\"\\x00\\xc5\\x03\\x01\\x00\\x00\\x01\\xfa\" + // 0x00C50301: 0x000001FA\n\t\"\\x00\\xe5\\x03\\x01\\x00\\x00\\x01\\xfb\" + // 0x00E50301: 0x000001FB\n\t\"\\x00\\xc6\\x03\\x01\\x00\\x00\\x01\\xfc\" + // 0x00C60301: 0x000001FC\n\t\"\\x00\\xe6\\x03\\x01\\x00\\x00\\x01\\xfd\" + // 0x00E60301: 0x000001FD\n\t\"\\x00\\xd8\\x03\\x01\\x00\\x00\\x01\\xfe\" + // 0x00D80301: 0x000001FE\n\t\"\\x00\\xf8\\x03\\x01\\x00\\x00\\x01\\xff\" + // 0x00F80301: 0x000001FF\n\t\"\\x00A\\x03\\x0f\\x00\\x00\\x02\\x00\" + // 0x0041030F: 0x00000200\n\t\"\\x00a\\x03\\x0f\\x00\\x00\\x02\\x01\" + // 0x0061030F: 0x00000201\n\t\"\\x00A\\x03\\x11\\x00\\x00\\x02\\x02\" + // 0x00410311: 0x00000202\n\t\"\\x00a\\x03\\x11\\x00\\x00\\x02\\x03\" + // 0x00610311: 0x00000203\n\t\"\\x00E\\x03\\x0f\\x00\\x00\\x02\\x04\" + // 0x0045030F: 0x00000204\n\t\"\\x00e\\x03\\x0f\\x00\\x00\\x02\\x05\" + // 0x0065030F: 0x00000205\n\t\"\\x00E\\x03\\x11\\x00\\x00\\x02\\x06\" + // 0x00450311: 0x00000206\n\t\"\\x00e\\x03\\x11\\x00\\x00\\x02\\a\" + // 0x00650311: 0x00000207\n\t\"\\x00I\\x03\\x0f\\x00\\x00\\x02\\b\" + // 0x0049030F: 0x00000208\n\t\"\\x00i\\x03\\x0f\\x00\\x00\\x02\\t\" + // 0x0069030F: 0x00000209\n\t\"\\x00I\\x03\\x11\\x00\\x00\\x02\\n\" + // 0x00490311: 0x0000020A\n\t\"\\x00i\\x03\\x11\\x00\\x00\\x02\\v\" + // 0x00690311: 0x0000020B\n\t\"\\x00O\\x03\\x0f\\x00\\x00\\x02\\f\" + // 0x004F030F: 0x0000020C\n\t\"\\x00o\\x03\\x0f\\x00\\x00\\x02\\r\" + // 0x006F030F: 0x0000020D\n\t\"\\x00O\\x03\\x11\\x00\\x00\\x02\\x0e\" + // 0x004F0311: 0x0000020E\n\t\"\\x00o\\x03\\x11\\x00\\x00\\x02\\x0f\" + // 0x006F0311: 0x0000020F\n\t\"\\x00R\\x03\\x0f\\x00\\x00\\x02\\x10\" + // 0x0052030F: 0x00000210\n\t\"\\x00r\\x03\\x0f\\x00\\x00\\x02\\x11\" + // 0x0072030F: 0x00000211\n\t\"\\x00R\\x03\\x11\\x00\\x00\\x02\\x12\" + // 0x00520311: 0x00000212\n\t\"\\x00r\\x03\\x11\\x00\\x00\\x02\\x13\" + // 0x00720311: 0x00000213\n\t\"\\x00U\\x03\\x0f\\x00\\x00\\x02\\x14\" + // 0x0055030F: 0x00000214\n\t\"\\x00u\\x03\\x0f\\x00\\x00\\x02\\x15\" + // 0x0075030F: 0x00000215\n\t\"\\x00U\\x03\\x11\\x00\\x00\\x02\\x16\" + // 0x00550311: 0x00000216\n\t\"\\x00u\\x03\\x11\\x00\\x00\\x02\\x17\" + // 0x00750311: 0x00000217\n\t\"\\x00S\\x03&\\x00\\x00\\x02\\x18\" + // 0x00530326: 0x00000218\n\t\"\\x00s\\x03&\\x00\\x00\\x02\\x19\" + // 0x00730326: 0x00000219\n\t\"\\x00T\\x03&\\x00\\x00\\x02\\x1a\" + // 0x00540326: 0x0000021A\n\t\"\\x00t\\x03&\\x00\\x00\\x02\\x1b\" + // 0x00740326: 0x0000021B\n\t\"\\x00H\\x03\\f\\x00\\x00\\x02\\x1e\" + // 0x0048030C: 0x0000021E\n\t\"\\x00h\\x03\\f\\x00\\x00\\x02\\x1f\" + // 0x0068030C: 0x0000021F\n\t\"\\x00A\\x03\\a\\x00\\x00\\x02&\" + // 0x00410307: 0x00000226\n\t\"\\x00a\\x03\\a\\x00\\x00\\x02'\" + // 0x00610307: 0x00000227\n\t\"\\x00E\\x03'\\x00\\x00\\x02(\" + // 0x00450327: 0x00000228\n\t\"\\x00e\\x03'\\x00\\x00\\x02)\" + // 0x00650327: 0x00000229\n\t\"\\x00\\xd6\\x03\\x04\\x00\\x00\\x02*\" + // 0x00D60304: 0x0000022A\n\t\"\\x00\\xf6\\x03\\x04\\x00\\x00\\x02+\" + // 0x00F60304: 0x0000022B\n\t\"\\x00\\xd5\\x03\\x04\\x00\\x00\\x02,\" + // 0x00D50304: 0x0000022C\n\t\"\\x00\\xf5\\x03\\x04\\x00\\x00\\x02-\" + // 0x00F50304: 0x0000022D\n\t\"\\x00O\\x03\\a\\x00\\x00\\x02.\" + // 0x004F0307: 0x0000022E\n\t\"\\x00o\\x03\\a\\x00\\x00\\x02/\" + // 0x006F0307: 0x0000022F\n\t\"\\x02.\\x03\\x04\\x00\\x00\\x020\" + // 0x022E0304: 0x00000230\n\t\"\\x02/\\x03\\x04\\x00\\x00\\x021\" + // 0x022F0304: 0x00000231\n\t\"\\x00Y\\x03\\x04\\x00\\x00\\x022\" + // 0x00590304: 0x00000232\n\t\"\\x00y\\x03\\x04\\x00\\x00\\x023\" + // 0x00790304: 0x00000233\n\t\"\\x00\\xa8\\x03\\x01\\x00\\x00\\x03\\x85\" + // 0x00A80301: 0x00000385\n\t\"\\x03\\x91\\x03\\x01\\x00\\x00\\x03\\x86\" + // 0x03910301: 0x00000386\n\t\"\\x03\\x95\\x03\\x01\\x00\\x00\\x03\\x88\" + // 0x03950301: 0x00000388\n\t\"\\x03\\x97\\x03\\x01\\x00\\x00\\x03\\x89\" + // 0x03970301: 0x00000389\n\t\"\\x03\\x99\\x03\\x01\\x00\\x00\\x03\\x8a\" + // 0x03990301: 0x0000038A\n\t\"\\x03\\x9f\\x03\\x01\\x00\\x00\\x03\\x8c\" + // 0x039F0301: 0x0000038C\n\t\"\\x03\\xa5\\x03\\x01\\x00\\x00\\x03\\x8e\" + // 0x03A50301: 0x0000038E\n\t\"\\x03\\xa9\\x03\\x01\\x00\\x00\\x03\\x8f\" + // 0x03A90301: 0x0000038F\n\t\"\\x03\\xca\\x03\\x01\\x00\\x00\\x03\\x90\" + // 0x03CA0301: 0x00000390\n\t\"\\x03\\x99\\x03\\b\\x00\\x00\\x03\\xaa\" + // 0x03990308: 0x000003AA\n\t\"\\x03\\xa5\\x03\\b\\x00\\x00\\x03\\xab\" + // 0x03A50308: 0x000003AB\n\t\"\\x03\\xb1\\x03\\x01\\x00\\x00\\x03\\xac\" + // 0x03B10301: 0x000003AC\n\t\"\\x03\\xb5\\x03\\x01\\x00\\x00\\x03\\xad\" + // 0x03B50301: 0x000003AD\n\t\"\\x03\\xb7\\x03\\x01\\x00\\x00\\x03\\xae\" + // 0x03B70301: 0x000003AE\n\t\"\\x03\\xb9\\x03\\x01\\x00\\x00\\x03\\xaf\" + // 0x03B90301: 0x000003AF\n\t\"\\x03\\xcb\\x03\\x01\\x00\\x00\\x03\\xb0\" + // 0x03CB0301: 0x000003B0\n\t\"\\x03\\xb9\\x03\\b\\x00\\x00\\x03\\xca\" + // 0x03B90308: 0x000003CA\n\t\"\\x03\\xc5\\x03\\b\\x00\\x00\\x03\\xcb\" + // 0x03C50308: 0x000003CB\n\t\"\\x03\\xbf\\x03\\x01\\x00\\x00\\x03\\xcc\" + // 0x03BF0301: 0x000003CC\n\t\"\\x03\\xc5\\x03\\x01\\x00\\x00\\x03\\xcd\" + // 0x03C50301: 0x000003CD\n\t\"\\x03\\xc9\\x03\\x01\\x00\\x00\\x03\\xce\" + // 0x03C90301: 0x000003CE\n\t\"\\x03\\xd2\\x03\\x01\\x00\\x00\\x03\\xd3\" + // 0x03D20301: 0x000003D3\n\t\"\\x03\\xd2\\x03\\b\\x00\\x00\\x03\\xd4\" + // 0x03D20308: 0x000003D4\n\t\"\\x04\\x15\\x03\\x00\\x00\\x00\\x04\\x00\" + // 0x04150300: 0x00000400\n\t\"\\x04\\x15\\x03\\b\\x00\\x00\\x04\\x01\" + // 0x04150308: 0x00000401\n\t\"\\x04\\x13\\x03\\x01\\x00\\x00\\x04\\x03\" + // 0x04130301: 0x00000403\n\t\"\\x04\\x06\\x03\\b\\x00\\x00\\x04\\a\" + // 0x04060308: 0x00000407\n\t\"\\x04\\x1a\\x03\\x01\\x00\\x00\\x04\\f\" + // 0x041A0301: 0x0000040C\n\t\"\\x04\\x18\\x03\\x00\\x00\\x00\\x04\\r\" + // 0x04180300: 0x0000040D\n\t\"\\x04#\\x03\\x06\\x00\\x00\\x04\\x0e\" + // 0x04230306: 0x0000040E\n\t\"\\x04\\x18\\x03\\x06\\x00\\x00\\x04\\x19\" + // 0x04180306: 0x00000419\n\t\"\\x048\\x03\\x06\\x00\\x00\\x049\" + // 0x04380306: 0x00000439\n\t\"\\x045\\x03\\x00\\x00\\x00\\x04P\" + // 0x04350300: 0x00000450\n\t\"\\x045\\x03\\b\\x00\\x00\\x04Q\" + // 0x04350308: 0x00000451\n\t\"\\x043\\x03\\x01\\x00\\x00\\x04S\" + // 0x04330301: 0x00000453\n\t\"\\x04V\\x03\\b\\x00\\x00\\x04W\" + // 0x04560308: 0x00000457\n\t\"\\x04:\\x03\\x01\\x00\\x00\\x04\\\\\" + // 0x043A0301: 0x0000045C\n\t\"\\x048\\x03\\x00\\x00\\x00\\x04]\" + // 0x04380300: 0x0000045D\n\t\"\\x04C\\x03\\x06\\x00\\x00\\x04^\" + // 0x04430306: 0x0000045E\n\t\"\\x04t\\x03\\x0f\\x00\\x00\\x04v\" + // 0x0474030F: 0x00000476\n\t\"\\x04u\\x03\\x0f\\x00\\x00\\x04w\" + // 0x0475030F: 0x00000477\n\t\"\\x04\\x16\\x03\\x06\\x00\\x00\\x04\\xc1\" + // 0x04160306: 0x000004C1\n\t\"\\x046\\x03\\x06\\x00\\x00\\x04\\xc2\" + // 0x04360306: 0x000004C2\n\t\"\\x04\\x10\\x03\\x06\\x00\\x00\\x04\\xd0\" + // 0x04100306: 0x000004D0\n\t\"\\x040\\x03\\x06\\x00\\x00\\x04\\xd1\" + // 0x04300306: 0x000004D1\n\t\"\\x04\\x10\\x03\\b\\x00\\x00\\x04\\xd2\" + // 0x04100308: 0x000004D2\n\t\"\\x040\\x03\\b\\x00\\x00\\x04\\xd3\" + // 0x04300308: 0x000004D3\n\t\"\\x04\\x15\\x03\\x06\\x00\\x00\\x04\\xd6\" + // 0x04150306: 0x000004D6\n\t\"\\x045\\x03\\x06\\x00\\x00\\x04\\xd7\" + // 0x04350306: 0x000004D7\n\t\"\\x04\\xd8\\x03\\b\\x00\\x00\\x04\\xda\" + // 0x04D80308: 0x000004DA\n\t\"\\x04\\xd9\\x03\\b\\x00\\x00\\x04\\xdb\" + // 0x04D90308: 0x000004DB\n\t\"\\x04\\x16\\x03\\b\\x00\\x00\\x04\\xdc\" + // 0x04160308: 0x000004DC\n\t\"\\x046\\x03\\b\\x00\\x00\\x04\\xdd\" + // 0x04360308: 0x000004DD\n\t\"\\x04\\x17\\x03\\b\\x00\\x00\\x04\\xde\" + // 0x04170308: 0x000004DE\n\t\"\\x047\\x03\\b\\x00\\x00\\x04\\xdf\" + // 0x04370308: 0x000004DF\n\t\"\\x04\\x18\\x03\\x04\\x00\\x00\\x04\\xe2\" + // 0x04180304: 0x000004E2\n\t\"\\x048\\x03\\x04\\x00\\x00\\x04\\xe3\" + // 0x04380304: 0x000004E3\n\t\"\\x04\\x18\\x03\\b\\x00\\x00\\x04\\xe4\" + // 0x04180308: 0x000004E4\n\t\"\\x048\\x03\\b\\x00\\x00\\x04\\xe5\" + // 0x04380308: 0x000004E5\n\t\"\\x04\\x1e\\x03\\b\\x00\\x00\\x04\\xe6\" + // 0x041E0308: 0x000004E6\n\t\"\\x04>\\x03\\b\\x00\\x00\\x04\\xe7\" + // 0x043E0308: 0x000004E7\n\t\"\\x04\\xe8\\x03\\b\\x00\\x00\\x04\\xea\" + // 0x04E80308: 0x000004EA\n\t\"\\x04\\xe9\\x03\\b\\x00\\x00\\x04\\xeb\" + // 0x04E90308: 0x000004EB\n\t\"\\x04-\\x03\\b\\x00\\x00\\x04\\xec\" + // 0x042D0308: 0x000004EC\n\t\"\\x04M\\x03\\b\\x00\\x00\\x04\\xed\" + // 0x044D0308: 0x000004ED\n\t\"\\x04#\\x03\\x04\\x00\\x00\\x04\\xee\" + // 0x04230304: 0x000004EE\n\t\"\\x04C\\x03\\x04\\x00\\x00\\x04\\xef\" + // 0x04430304: 0x000004EF\n\t\"\\x04#\\x03\\b\\x00\\x00\\x04\\xf0\" + // 0x04230308: 0x000004F0\n\t\"\\x04C\\x03\\b\\x00\\x00\\x04\\xf1\" + // 0x04430308: 0x000004F1\n\t\"\\x04#\\x03\\v\\x00\\x00\\x04\\xf2\" + // 0x0423030B: 0x000004F2\n\t\"\\x04C\\x03\\v\\x00\\x00\\x04\\xf3\" + // 0x0443030B: 0x000004F3\n\t\"\\x04'\\x03\\b\\x00\\x00\\x04\\xf4\" + // 0x04270308: 0x000004F4\n\t\"\\x04G\\x03\\b\\x00\\x00\\x04\\xf5\" + // 0x04470308: 0x000004F5\n\t\"\\x04+\\x03\\b\\x00\\x00\\x04\\xf8\" + // 0x042B0308: 0x000004F8\n\t\"\\x04K\\x03\\b\\x00\\x00\\x04\\xf9\" + // 0x044B0308: 0x000004F9\n\t\"\\x06'\\x06S\\x00\\x00\\x06\\\"\" + // 0x06270653: 0x00000622\n\t\"\\x06'\\x06T\\x00\\x00\\x06#\" + // 0x06270654: 0x00000623\n\t\"\\x06H\\x06T\\x00\\x00\\x06$\" + // 0x06480654: 0x00000624\n\t\"\\x06'\\x06U\\x00\\x00\\x06%\" + // 0x06270655: 0x00000625\n\t\"\\x06J\\x06T\\x00\\x00\\x06&\" + // 0x064A0654: 0x00000626\n\t\"\\x06\\xd5\\x06T\\x00\\x00\\x06\\xc0\" + // 0x06D50654: 0x000006C0\n\t\"\\x06\\xc1\\x06T\\x00\\x00\\x06\\xc2\" + // 0x06C10654: 0x000006C2\n\t\"\\x06\\xd2\\x06T\\x00\\x00\\x06\\xd3\" + // 0x06D20654: 0x000006D3\n\t\"\\t(\\t<\\x00\\x00\\t)\" + // 0x0928093C: 0x00000929\n\t\"\\t0\\t<\\x00\\x00\\t1\" + // 0x0930093C: 0x00000931\n\t\"\\t3\\t<\\x00\\x00\\t4\" + // 0x0933093C: 0x00000934\n\t\"\\t\\xc7\\t\\xbe\\x00\\x00\\t\\xcb\" + // 0x09C709BE: 0x000009CB\n\t\"\\t\\xc7\\t\\xd7\\x00\\x00\\t\\xcc\" + // 0x09C709D7: 0x000009CC\n\t\"\\vG\\vV\\x00\\x00\\vH\" + // 0x0B470B56: 0x00000B48\n\t\"\\vG\\v>\\x00\\x00\\vK\" + // 0x0B470B3E: 0x00000B4B\n\t\"\\vG\\vW\\x00\\x00\\vL\" + // 0x0B470B57: 0x00000B4C\n\t\"\\v\\x92\\v\\xd7\\x00\\x00\\v\\x94\" + // 0x0B920BD7: 0x00000B94\n\t\"\\v\\xc6\\v\\xbe\\x00\\x00\\v\\xca\" + // 0x0BC60BBE: 0x00000BCA\n\t\"\\v\\xc7\\v\\xbe\\x00\\x00\\v\\xcb\" + // 0x0BC70BBE: 0x00000BCB\n\t\"\\v\\xc6\\v\\xd7\\x00\\x00\\v\\xcc\" + // 0x0BC60BD7: 0x00000BCC\n\t\"\\fF\\fV\\x00\\x00\\fH\" + // 0x0C460C56: 0x00000C48\n\t\"\\f\\xbf\\f\\xd5\\x00\\x00\\f\\xc0\" + // 0x0CBF0CD5: 0x00000CC0\n\t\"\\f\\xc6\\f\\xd5\\x00\\x00\\f\\xc7\" + // 0x0CC60CD5: 0x00000CC7\n\t\"\\f\\xc6\\f\\xd6\\x00\\x00\\f\\xc8\" + // 0x0CC60CD6: 0x00000CC8\n\t\"\\f\\xc6\\f\\xc2\\x00\\x00\\f\\xca\" + // 0x0CC60CC2: 0x00000CCA\n\t\"\\f\\xca\\f\\xd5\\x00\\x00\\f\\xcb\" + // 0x0CCA0CD5: 0x00000CCB\n\t\"\\rF\\r>\\x00\\x00\\rJ\" + // 0x0D460D3E: 0x00000D4A\n\t\"\\rG\\r>\\x00\\x00\\rK\" + // 0x0D470D3E: 0x00000D4B\n\t\"\\rF\\rW\\x00\\x00\\rL\" + // 0x0D460D57: 0x00000D4C\n\t\"\\r\\xd9\\r\\xca\\x00\\x00\\r\\xda\" + // 0x0DD90DCA: 0x00000DDA\n\t\"\\r\\xd9\\r\\xcf\\x00\\x00\\r\\xdc\" + // 0x0DD90DCF: 0x00000DDC\n\t\"\\r\\xdc\\r\\xca\\x00\\x00\\r\\xdd\" + // 0x0DDC0DCA: 0x00000DDD\n\t\"\\r\\xd9\\r\\xdf\\x00\\x00\\r\\xde\" + // 0x0DD90DDF: 0x00000DDE\n\t\"\\x10%\\x10.\\x00\\x00\\x10&\" + // 0x1025102E: 0x00001026\n\t\"\\x1b\\x05\\x1b5\\x00\\x00\\x1b\\x06\" + // 0x1B051B35: 0x00001B06\n\t\"\\x1b\\a\\x1b5\\x00\\x00\\x1b\\b\" + // 0x1B071B35: 0x00001B08\n\t\"\\x1b\\t\\x1b5\\x00\\x00\\x1b\\n\" + // 0x1B091B35: 0x00001B0A\n\t\"\\x1b\\v\\x1b5\\x00\\x00\\x1b\\f\" + // 0x1B0B1B35: 0x00001B0C\n\t\"\\x1b\\r\\x1b5\\x00\\x00\\x1b\\x0e\" + // 0x1B0D1B35: 0x00001B0E\n\t\"\\x1b\\x11\\x1b5\\x00\\x00\\x1b\\x12\" + // 0x1B111B35: 0x00001B12\n\t\"\\x1b:\\x1b5\\x00\\x00\\x1b;\" + // 0x1B3A1B35: 0x00001B3B\n\t\"\\x1b<\\x1b5\\x00\\x00\\x1b=\" + // 0x1B3C1B35: 0x00001B3D\n\t\"\\x1b>\\x1b5\\x00\\x00\\x1b@\" + // 0x1B3E1B35: 0x00001B40\n\t\"\\x1b?\\x1b5\\x00\\x00\\x1bA\" + // 0x1B3F1B35: 0x00001B41\n\t\"\\x1bB\\x1b5\\x00\\x00\\x1bC\" + // 0x1B421B35: 0x00001B43\n\t\"\\x00A\\x03%\\x00\\x00\\x1e\\x00\" + // 0x00410325: 0x00001E00\n\t\"\\x00a\\x03%\\x00\\x00\\x1e\\x01\" + // 0x00610325: 0x00001E01\n\t\"\\x00B\\x03\\a\\x00\\x00\\x1e\\x02\" + // 0x00420307: 0x00001E02\n\t\"\\x00b\\x03\\a\\x00\\x00\\x1e\\x03\" + // 0x00620307: 0x00001E03\n\t\"\\x00B\\x03#\\x00\\x00\\x1e\\x04\" + // 0x00420323: 0x00001E04\n\t\"\\x00b\\x03#\\x00\\x00\\x1e\\x05\" + // 0x00620323: 0x00001E05\n\t\"\\x00B\\x031\\x00\\x00\\x1e\\x06\" + // 0x00420331: 0x00001E06\n\t\"\\x00b\\x031\\x00\\x00\\x1e\\a\" + // 0x00620331: 0x00001E07\n\t\"\\x00\\xc7\\x03\\x01\\x00\\x00\\x1e\\b\" + // 0x00C70301: 0x00001E08\n\t\"\\x00\\xe7\\x03\\x01\\x00\\x00\\x1e\\t\" + // 0x00E70301: 0x00001E09\n\t\"\\x00D\\x03\\a\\x00\\x00\\x1e\\n\" + // 0x00440307: 0x00001E0A\n\t\"\\x00d\\x03\\a\\x00\\x00\\x1e\\v\" + // 0x00640307: 0x00001E0B\n\t\"\\x00D\\x03#\\x00\\x00\\x1e\\f\" + // 0x00440323: 0x00001E0C\n\t\"\\x00d\\x03#\\x00\\x00\\x1e\\r\" + // 0x00640323: 0x00001E0D\n\t\"\\x00D\\x031\\x00\\x00\\x1e\\x0e\" + // 0x00440331: 0x00001E0E\n\t\"\\x00d\\x031\\x00\\x00\\x1e\\x0f\" + // 0x00640331: 0x00001E0F\n\t\"\\x00D\\x03'\\x00\\x00\\x1e\\x10\" + // 0x00440327: 0x00001E10\n\t\"\\x00d\\x03'\\x00\\x00\\x1e\\x11\" + // 0x00640327: 0x00001E11\n\t\"\\x00D\\x03-\\x00\\x00\\x1e\\x12\" + // 0x0044032D: 0x00001E12\n\t\"\\x00d\\x03-\\x00\\x00\\x1e\\x13\" + // 0x0064032D: 0x00001E13\n\t\"\\x01\\x12\\x03\\x00\\x00\\x00\\x1e\\x14\" + // 0x01120300: 0x00001E14\n\t\"\\x01\\x13\\x03\\x00\\x00\\x00\\x1e\\x15\" + // 0x01130300: 0x00001E15\n\t\"\\x01\\x12\\x03\\x01\\x00\\x00\\x1e\\x16\" + // 0x01120301: 0x00001E16\n\t\"\\x01\\x13\\x03\\x01\\x00\\x00\\x1e\\x17\" + // 0x01130301: 0x00001E17\n\t\"\\x00E\\x03-\\x00\\x00\\x1e\\x18\" + // 0x0045032D: 0x00001E18\n\t\"\\x00e\\x03-\\x00\\x00\\x1e\\x19\" + // 0x0065032D: 0x00001E19\n\t\"\\x00E\\x030\\x00\\x00\\x1e\\x1a\" + // 0x00450330: 0x00001E1A\n\t\"\\x00e\\x030\\x00\\x00\\x1e\\x1b\" + // 0x00650330: 0x00001E1B\n\t\"\\x02(\\x03\\x06\\x00\\x00\\x1e\\x1c\" + // 0x02280306: 0x00001E1C\n\t\"\\x02)\\x03\\x06\\x00\\x00\\x1e\\x1d\" + // 0x02290306: 0x00001E1D\n\t\"\\x00F\\x03\\a\\x00\\x00\\x1e\\x1e\" + // 0x00460307: 0x00001E1E\n\t\"\\x00f\\x03\\a\\x00\\x00\\x1e\\x1f\" + // 0x00660307: 0x00001E1F\n\t\"\\x00G\\x03\\x04\\x00\\x00\\x1e \" + // 0x00470304: 0x00001E20\n\t\"\\x00g\\x03\\x04\\x00\\x00\\x1e!\" + // 0x00670304: 0x00001E21\n\t\"\\x00H\\x03\\a\\x00\\x00\\x1e\\\"\" + // 0x00480307: 0x00001E22\n\t\"\\x00h\\x03\\a\\x00\\x00\\x1e#\" + // 0x00680307: 0x00001E23\n\t\"\\x00H\\x03#\\x00\\x00\\x1e$\" + // 0x00480323: 0x00001E24\n\t\"\\x00h\\x03#\\x00\\x00\\x1e%\" + // 0x00680323: 0x00001E25\n\t\"\\x00H\\x03\\b\\x00\\x00\\x1e&\" + // 0x00480308: 0x00001E26\n\t\"\\x00h\\x03\\b\\x00\\x00\\x1e'\" + // 0x00680308: 0x00001E27\n\t\"\\x00H\\x03'\\x00\\x00\\x1e(\" + // 0x00480327: 0x00001E28\n\t\"\\x00h\\x03'\\x00\\x00\\x1e)\" + // 0x00680327: 0x00001E29\n\t\"\\x00H\\x03.\\x00\\x00\\x1e*\" + // 0x0048032E: 0x00001E2A\n\t\"\\x00h\\x03.\\x00\\x00\\x1e+\" + // 0x0068032E: 0x00001E2B\n\t\"\\x00I\\x030\\x00\\x00\\x1e,\" + // 0x00490330: 0x00001E2C\n\t\"\\x00i\\x030\\x00\\x00\\x1e-\" + // 0x00690330: 0x00001E2D\n\t\"\\x00\\xcf\\x03\\x01\\x00\\x00\\x1e.\" + // 0x00CF0301: 0x00001E2E\n\t\"\\x00\\xef\\x03\\x01\\x00\\x00\\x1e/\" + // 0x00EF0301: 0x00001E2F\n\t\"\\x00K\\x03\\x01\\x00\\x00\\x1e0\" + // 0x004B0301: 0x00001E30\n\t\"\\x00k\\x03\\x01\\x00\\x00\\x1e1\" + // 0x006B0301: 0x00001E31\n\t\"\\x00K\\x03#\\x00\\x00\\x1e2\" + // 0x004B0323: 0x00001E32\n\t\"\\x00k\\x03#\\x00\\x00\\x1e3\" + // 0x006B0323: 0x00001E33\n\t\"\\x00K\\x031\\x00\\x00\\x1e4\" + // 0x004B0331: 0x00001E34\n\t\"\\x00k\\x031\\x00\\x00\\x1e5\" + // 0x006B0331: 0x00001E35\n\t\"\\x00L\\x03#\\x00\\x00\\x1e6\" + // 0x004C0323: 0x00001E36\n\t\"\\x00l\\x03#\\x00\\x00\\x1e7\" + // 0x006C0323: 0x00001E37\n\t\"\\x1e6\\x03\\x04\\x00\\x00\\x1e8\" + // 0x1E360304: 0x00001E38\n\t\"\\x1e7\\x03\\x04\\x00\\x00\\x1e9\" + // 0x1E370304: 0x00001E39\n\t\"\\x00L\\x031\\x00\\x00\\x1e:\" + // 0x004C0331: 0x00001E3A\n\t\"\\x00l\\x031\\x00\\x00\\x1e;\" + // 0x006C0331: 0x00001E3B\n\t\"\\x00L\\x03-\\x00\\x00\\x1e<\" + // 0x004C032D: 0x00001E3C\n\t\"\\x00l\\x03-\\x00\\x00\\x1e=\" + // 0x006C032D: 0x00001E3D\n\t\"\\x00M\\x03\\x01\\x00\\x00\\x1e>\" + // 0x004D0301: 0x00001E3E\n\t\"\\x00m\\x03\\x01\\x00\\x00\\x1e?\" + // 0x006D0301: 0x00001E3F\n\t\"\\x00M\\x03\\a\\x00\\x00\\x1e@\" + // 0x004D0307: 0x00001E40\n\t\"\\x00m\\x03\\a\\x00\\x00\\x1eA\" + // 0x006D0307: 0x00001E41\n\t\"\\x00M\\x03#\\x00\\x00\\x1eB\" + // 0x004D0323: 0x00001E42\n\t\"\\x00m\\x03#\\x00\\x00\\x1eC\" + // 0x006D0323: 0x00001E43\n\t\"\\x00N\\x03\\a\\x00\\x00\\x1eD\" + // 0x004E0307: 0x00001E44\n\t\"\\x00n\\x03\\a\\x00\\x00\\x1eE\" + // 0x006E0307: 0x00001E45\n\t\"\\x00N\\x03#\\x00\\x00\\x1eF\" + // 0x004E0323: 0x00001E46\n\t\"\\x00n\\x03#\\x00\\x00\\x1eG\" + // 0x006E0323: 0x00001E47\n\t\"\\x00N\\x031\\x00\\x00\\x1eH\" + // 0x004E0331: 0x00001E48\n\t\"\\x00n\\x031\\x00\\x00\\x1eI\" + // 0x006E0331: 0x00001E49\n\t\"\\x00N\\x03-\\x00\\x00\\x1eJ\" + // 0x004E032D: 0x00001E4A\n\t\"\\x00n\\x03-\\x00\\x00\\x1eK\" + // 0x006E032D: 0x00001E4B\n\t\"\\x00\\xd5\\x03\\x01\\x00\\x00\\x1eL\" + // 0x00D50301: 0x00001E4C\n\t\"\\x00\\xf5\\x03\\x01\\x00\\x00\\x1eM\" + // 0x00F50301: 0x00001E4D\n\t\"\\x00\\xd5\\x03\\b\\x00\\x00\\x1eN\" + // 0x00D50308: 0x00001E4E\n\t\"\\x00\\xf5\\x03\\b\\x00\\x00\\x1eO\" + // 0x00F50308: 0x00001E4F\n\t\"\\x01L\\x03\\x00\\x00\\x00\\x1eP\" + // 0x014C0300: 0x00001E50\n\t\"\\x01M\\x03\\x00\\x00\\x00\\x1eQ\" + // 0x014D0300: 0x00001E51\n\t\"\\x01L\\x03\\x01\\x00\\x00\\x1eR\" + // 0x014C0301: 0x00001E52\n\t\"\\x01M\\x03\\x01\\x00\\x00\\x1eS\" + // 0x014D0301: 0x00001E53\n\t\"\\x00P\\x03\\x01\\x00\\x00\\x1eT\" + // 0x00500301: 0x00001E54\n\t\"\\x00p\\x03\\x01\\x00\\x00\\x1eU\" + // 0x00700301: 0x00001E55\n\t\"\\x00P\\x03\\a\\x00\\x00\\x1eV\" + // 0x00500307: 0x00001E56\n\t\"\\x00p\\x03\\a\\x00\\x00\\x1eW\" + // 0x00700307: 0x00001E57\n\t\"\\x00R\\x03\\a\\x00\\x00\\x1eX\" + // 0x00520307: 0x00001E58\n\t\"\\x00r\\x03\\a\\x00\\x00\\x1eY\" + // 0x00720307: 0x00001E59\n\t\"\\x00R\\x03#\\x00\\x00\\x1eZ\" + // 0x00520323: 0x00001E5A\n\t\"\\x00r\\x03#\\x00\\x00\\x1e[\" + // 0x00720323: 0x00001E5B\n\t\"\\x1eZ\\x03\\x04\\x00\\x00\\x1e\\\\\" + // 0x1E5A0304: 0x00001E5C\n\t\"\\x1e[\\x03\\x04\\x00\\x00\\x1e]\" + // 0x1E5B0304: 0x00001E5D\n\t\"\\x00R\\x031\\x00\\x00\\x1e^\" + // 0x00520331: 0x00001E5E\n\t\"\\x00r\\x031\\x00\\x00\\x1e_\" + // 0x00720331: 0x00001E5F\n\t\"\\x00S\\x03\\a\\x00\\x00\\x1e`\" + // 0x00530307: 0x00001E60\n\t\"\\x00s\\x03\\a\\x00\\x00\\x1ea\" + // 0x00730307: 0x00001E61\n\t\"\\x00S\\x03#\\x00\\x00\\x1eb\" + // 0x00530323: 0x00001E62\n\t\"\\x00s\\x03#\\x00\\x00\\x1ec\" + // 0x00730323: 0x00001E63\n\t\"\\x01Z\\x03\\a\\x00\\x00\\x1ed\" + // 0x015A0307: 0x00001E64\n\t\"\\x01[\\x03\\a\\x00\\x00\\x1ee\" + // 0x015B0307: 0x00001E65\n\t\"\\x01`\\x03\\a\\x00\\x00\\x1ef\" + // 0x01600307: 0x00001E66\n\t\"\\x01a\\x03\\a\\x00\\x00\\x1eg\" + // 0x01610307: 0x00001E67\n\t\"\\x1eb\\x03\\a\\x00\\x00\\x1eh\" + // 0x1E620307: 0x00001E68\n\t\"\\x1ec\\x03\\a\\x00\\x00\\x1ei\" + // 0x1E630307: 0x00001E69\n\t\"\\x00T\\x03\\a\\x00\\x00\\x1ej\" + // 0x00540307: 0x00001E6A\n\t\"\\x00t\\x03\\a\\x00\\x00\\x1ek\" + // 0x00740307: 0x00001E6B\n\t\"\\x00T\\x03#\\x00\\x00\\x1el\" + // 0x00540323: 0x00001E6C\n\t\"\\x00t\\x03#\\x00\\x00\\x1em\" + // 0x00740323: 0x00001E6D\n\t\"\\x00T\\x031\\x00\\x00\\x1en\" + // 0x00540331: 0x00001E6E\n\t\"\\x00t\\x031\\x00\\x00\\x1eo\" + // 0x00740331: 0x00001E6F\n\t\"\\x00T\\x03-\\x00\\x00\\x1ep\" + // 0x0054032D: 0x00001E70\n\t\"\\x00t\\x03-\\x00\\x00\\x1eq\" + // 0x0074032D: 0x00001E71\n\t\"\\x00U\\x03$\\x00\\x00\\x1er\" + // 0x00550324: 0x00001E72\n\t\"\\x00u\\x03$\\x00\\x00\\x1es\" + // 0x00750324: 0x00001E73\n\t\"\\x00U\\x030\\x00\\x00\\x1et\" + // 0x00550330: 0x00001E74\n\t\"\\x00u\\x030\\x00\\x00\\x1eu\" + // 0x00750330: 0x00001E75\n\t\"\\x00U\\x03-\\x00\\x00\\x1ev\" + // 0x0055032D: 0x00001E76\n\t\"\\x00u\\x03-\\x00\\x00\\x1ew\" + // 0x0075032D: 0x00001E77\n\t\"\\x01h\\x03\\x01\\x00\\x00\\x1ex\" + // 0x01680301: 0x00001E78\n\t\"\\x01i\\x03\\x01\\x00\\x00\\x1ey\" + // 0x01690301: 0x00001E79\n\t\"\\x01j\\x03\\b\\x00\\x00\\x1ez\" + // 0x016A0308: 0x00001E7A\n\t\"\\x01k\\x03\\b\\x00\\x00\\x1e{\" + // 0x016B0308: 0x00001E7B\n\t\"\\x00V\\x03\\x03\\x00\\x00\\x1e|\" + // 0x00560303: 0x00001E7C\n\t\"\\x00v\\x03\\x03\\x00\\x00\\x1e}\" + // 0x00760303: 0x00001E7D\n\t\"\\x00V\\x03#\\x00\\x00\\x1e~\" + // 0x00560323: 0x00001E7E\n\t\"\\x00v\\x03#\\x00\\x00\\x1e\\u007f\" + // 0x00760323: 0x00001E7F\n\t\"\\x00W\\x03\\x00\\x00\\x00\\x1e\\x80\" + // 0x00570300: 0x00001E80\n\t\"\\x00w\\x03\\x00\\x00\\x00\\x1e\\x81\" + // 0x00770300: 0x00001E81\n\t\"\\x00W\\x03\\x01\\x00\\x00\\x1e\\x82\" + // 0x00570301: 0x00001E82\n\t\"\\x00w\\x03\\x01\\x00\\x00\\x1e\\x83\" + // 0x00770301: 0x00001E83\n\t\"\\x00W\\x03\\b\\x00\\x00\\x1e\\x84\" + // 0x00570308: 0x00001E84\n\t\"\\x00w\\x03\\b\\x00\\x00\\x1e\\x85\" + // 0x00770308: 0x00001E85\n\t\"\\x00W\\x03\\a\\x00\\x00\\x1e\\x86\" + // 0x00570307: 0x00001E86\n\t\"\\x00w\\x03\\a\\x00\\x00\\x1e\\x87\" + // 0x00770307: 0x00001E87\n\t\"\\x00W\\x03#\\x00\\x00\\x1e\\x88\" + // 0x00570323: 0x00001E88\n\t\"\\x00w\\x03#\\x00\\x00\\x1e\\x89\" + // 0x00770323: 0x00001E89\n\t\"\\x00X\\x03\\a\\x00\\x00\\x1e\\x8a\" + // 0x00580307: 0x00001E8A\n\t\"\\x00x\\x03\\a\\x00\\x00\\x1e\\x8b\" + // 0x00780307: 0x00001E8B\n\t\"\\x00X\\x03\\b\\x00\\x00\\x1e\\x8c\" + // 0x00580308: 0x00001E8C\n\t\"\\x00x\\x03\\b\\x00\\x00\\x1e\\x8d\" + // 0x00780308: 0x00001E8D\n\t\"\\x00Y\\x03\\a\\x00\\x00\\x1e\\x8e\" + // 0x00590307: 0x00001E8E\n\t\"\\x00y\\x03\\a\\x00\\x00\\x1e\\x8f\" + // 0x00790307: 0x00001E8F\n\t\"\\x00Z\\x03\\x02\\x00\\x00\\x1e\\x90\" + // 0x005A0302: 0x00001E90\n\t\"\\x00z\\x03\\x02\\x00\\x00\\x1e\\x91\" + // 0x007A0302: 0x00001E91\n\t\"\\x00Z\\x03#\\x00\\x00\\x1e\\x92\" + // 0x005A0323: 0x00001E92\n\t\"\\x00z\\x03#\\x00\\x00\\x1e\\x93\" + // 0x007A0323: 0x00001E93\n\t\"\\x00Z\\x031\\x00\\x00\\x1e\\x94\" + // 0x005A0331: 0x00001E94\n\t\"\\x00z\\x031\\x00\\x00\\x1e\\x95\" + // 0x007A0331: 0x00001E95\n\t\"\\x00h\\x031\\x00\\x00\\x1e\\x96\" + // 0x00680331: 0x00001E96\n\t\"\\x00t\\x03\\b\\x00\\x00\\x1e\\x97\" + // 0x00740308: 0x00001E97\n\t\"\\x00w\\x03\\n\\x00\\x00\\x1e\\x98\" + // 0x0077030A: 0x00001E98\n\t\"\\x00y\\x03\\n\\x00\\x00\\x1e\\x99\" + // 0x0079030A: 0x00001E99\n\t\"\\x01\\u007f\\x03\\a\\x00\\x00\\x1e\\x9b\" + // 0x017F0307: 0x00001E9B\n\t\"\\x00A\\x03#\\x00\\x00\\x1e\\xa0\" + // 0x00410323: 0x00001EA0\n\t\"\\x00a\\x03#\\x00\\x00\\x1e\\xa1\" + // 0x00610323: 0x00001EA1\n\t\"\\x00A\\x03\\t\\x00\\x00\\x1e\\xa2\" + // 0x00410309: 0x00001EA2\n\t\"\\x00a\\x03\\t\\x00\\x00\\x1e\\xa3\" + // 0x00610309: 0x00001EA3\n\t\"\\x00\\xc2\\x03\\x01\\x00\\x00\\x1e\\xa4\" + // 0x00C20301: 0x00001EA4\n\t\"\\x00\\xe2\\x03\\x01\\x00\\x00\\x1e\\xa5\" + // 0x00E20301: 0x00001EA5\n\t\"\\x00\\xc2\\x03\\x00\\x00\\x00\\x1e\\xa6\" + // 0x00C20300: 0x00001EA6\n\t\"\\x00\\xe2\\x03\\x00\\x00\\x00\\x1e\\xa7\" + // 0x00E20300: 0x00001EA7\n\t\"\\x00\\xc2\\x03\\t\\x00\\x00\\x1e\\xa8\" + // 0x00C20309: 0x00001EA8\n\t\"\\x00\\xe2\\x03\\t\\x00\\x00\\x1e\\xa9\" + // 0x00E20309: 0x00001EA9\n\t\"\\x00\\xc2\\x03\\x03\\x00\\x00\\x1e\\xaa\" + // 0x00C20303: 0x00001EAA\n\t\"\\x00\\xe2\\x03\\x03\\x00\\x00\\x1e\\xab\" + // 0x00E20303: 0x00001EAB\n\t\"\\x1e\\xa0\\x03\\x02\\x00\\x00\\x1e\\xac\" + // 0x1EA00302: 0x00001EAC\n\t\"\\x1e\\xa1\\x03\\x02\\x00\\x00\\x1e\\xad\" + // 0x1EA10302: 0x00001EAD\n\t\"\\x01\\x02\\x03\\x01\\x00\\x00\\x1e\\xae\" + // 0x01020301: 0x00001EAE\n\t\"\\x01\\x03\\x03\\x01\\x00\\x00\\x1e\\xaf\" + // 0x01030301: 0x00001EAF\n\t\"\\x01\\x02\\x03\\x00\\x00\\x00\\x1e\\xb0\" + // 0x01020300: 0x00001EB0\n\t\"\\x01\\x03\\x03\\x00\\x00\\x00\\x1e\\xb1\" + // 0x01030300: 0x00001EB1\n\t\"\\x01\\x02\\x03\\t\\x00\\x00\\x1e\\xb2\" + // 0x01020309: 0x00001EB2\n\t\"\\x01\\x03\\x03\\t\\x00\\x00\\x1e\\xb3\" + // 0x01030309: 0x00001EB3\n\t\"\\x01\\x02\\x03\\x03\\x00\\x00\\x1e\\xb4\" + // 0x01020303: 0x00001EB4\n\t\"\\x01\\x03\\x03\\x03\\x00\\x00\\x1e\\xb5\" + // 0x01030303: 0x00001EB5\n\t\"\\x1e\\xa0\\x03\\x06\\x00\\x00\\x1e\\xb6\" + // 0x1EA00306: 0x00001EB6\n\t\"\\x1e\\xa1\\x03\\x06\\x00\\x00\\x1e\\xb7\" + // 0x1EA10306: 0x00001EB7\n\t\"\\x00E\\x03#\\x00\\x00\\x1e\\xb8\" + // 0x00450323: 0x00001EB8\n\t\"\\x00e\\x03#\\x00\\x00\\x1e\\xb9\" + // 0x00650323: 0x00001EB9\n\t\"\\x00E\\x03\\t\\x00\\x00\\x1e\\xba\" + // 0x00450309: 0x00001EBA\n\t\"\\x00e\\x03\\t\\x00\\x00\\x1e\\xbb\" + // 0x00650309: 0x00001EBB\n\t\"\\x00E\\x03\\x03\\x00\\x00\\x1e\\xbc\" + // 0x00450303: 0x00001EBC\n\t\"\\x00e\\x03\\x03\\x00\\x00\\x1e\\xbd\" + // 0x00650303: 0x00001EBD\n\t\"\\x00\\xca\\x03\\x01\\x00\\x00\\x1e\\xbe\" + // 0x00CA0301: 0x00001EBE\n\t\"\\x00\\xea\\x03\\x01\\x00\\x00\\x1e\\xbf\" + // 0x00EA0301: 0x00001EBF\n\t\"\\x00\\xca\\x03\\x00\\x00\\x00\\x1e\\xc0\" + // 0x00CA0300: 0x00001EC0\n\t\"\\x00\\xea\\x03\\x00\\x00\\x00\\x1e\\xc1\" + // 0x00EA0300: 0x00001EC1\n\t\"\\x00\\xca\\x03\\t\\x00\\x00\\x1e\\xc2\" + // 0x00CA0309: 0x00001EC2\n\t\"\\x00\\xea\\x03\\t\\x00\\x00\\x1e\\xc3\" + // 0x00EA0309: 0x00001EC3\n\t\"\\x00\\xca\\x03\\x03\\x00\\x00\\x1e\\xc4\" + // 0x00CA0303: 0x00001EC4\n\t\"\\x00\\xea\\x03\\x03\\x00\\x00\\x1e\\xc5\" + // 0x00EA0303: 0x00001EC5\n\t\"\\x1e\\xb8\\x03\\x02\\x00\\x00\\x1e\\xc6\" + // 0x1EB80302: 0x00001EC6\n\t\"\\x1e\\xb9\\x03\\x02\\x00\\x00\\x1e\\xc7\" + // 0x1EB90302: 0x00001EC7\n\t\"\\x00I\\x03\\t\\x00\\x00\\x1e\\xc8\" + // 0x00490309: 0x00001EC8\n\t\"\\x00i\\x03\\t\\x00\\x00\\x1e\\xc9\" + // 0x00690309: 0x00001EC9\n\t\"\\x00I\\x03#\\x00\\x00\\x1e\\xca\" + // 0x00490323: 0x00001ECA\n\t\"\\x00i\\x03#\\x00\\x00\\x1e\\xcb\" + // 0x00690323: 0x00001ECB\n\t\"\\x00O\\x03#\\x00\\x00\\x1e\\xcc\" + // 0x004F0323: 0x00001ECC\n\t\"\\x00o\\x03#\\x00\\x00\\x1e\\xcd\" + // 0x006F0323: 0x00001ECD\n\t\"\\x00O\\x03\\t\\x00\\x00\\x1e\\xce\" + // 0x004F0309: 0x00001ECE\n\t\"\\x00o\\x03\\t\\x00\\x00\\x1e\\xcf\" + // 0x006F0309: 0x00001ECF\n\t\"\\x00\\xd4\\x03\\x01\\x00\\x00\\x1e\\xd0\" + // 0x00D40301: 0x00001ED0\n\t\"\\x00\\xf4\\x03\\x01\\x00\\x00\\x1e\\xd1\" + // 0x00F40301: 0x00001ED1\n\t\"\\x00\\xd4\\x03\\x00\\x00\\x00\\x1e\\xd2\" + // 0x00D40300: 0x00001ED2\n\t\"\\x00\\xf4\\x03\\x00\\x00\\x00\\x1e\\xd3\" + // 0x00F40300: 0x00001ED3\n\t\"\\x00\\xd4\\x03\\t\\x00\\x00\\x1e\\xd4\" + // 0x00D40309: 0x00001ED4\n\t\"\\x00\\xf4\\x03\\t\\x00\\x00\\x1e\\xd5\" + // 0x00F40309: 0x00001ED5\n\t\"\\x00\\xd4\\x03\\x03\\x00\\x00\\x1e\\xd6\" + // 0x00D40303: 0x00001ED6\n\t\"\\x00\\xf4\\x03\\x03\\x00\\x00\\x1e\\xd7\" + // 0x00F40303: 0x00001ED7\n\t\"\\x1e\\xcc\\x03\\x02\\x00\\x00\\x1e\\xd8\" + // 0x1ECC0302: 0x00001ED8\n\t\"\\x1e\\xcd\\x03\\x02\\x00\\x00\\x1e\\xd9\" + // 0x1ECD0302: 0x00001ED9\n\t\"\\x01\\xa0\\x03\\x01\\x00\\x00\\x1e\\xda\" + // 0x01A00301: 0x00001EDA\n\t\"\\x01\\xa1\\x03\\x01\\x00\\x00\\x1e\\xdb\" + // 0x01A10301: 0x00001EDB\n\t\"\\x01\\xa0\\x03\\x00\\x00\\x00\\x1e\\xdc\" + // 0x01A00300: 0x00001EDC\n\t\"\\x01\\xa1\\x03\\x00\\x00\\x00\\x1e\\xdd\" + // 0x01A10300: 0x00001EDD\n\t\"\\x01\\xa0\\x03\\t\\x00\\x00\\x1e\\xde\" + // 0x01A00309: 0x00001EDE\n\t\"\\x01\\xa1\\x03\\t\\x00\\x00\\x1e\\xdf\" + // 0x01A10309: 0x00001EDF\n\t\"\\x01\\xa0\\x03\\x03\\x00\\x00\\x1e\\xe0\" + // 0x01A00303: 0x00001EE0\n\t\"\\x01\\xa1\\x03\\x03\\x00\\x00\\x1e\\xe1\" + // 0x01A10303: 0x00001EE1\n\t\"\\x01\\xa0\\x03#\\x00\\x00\\x1e\\xe2\" + // 0x01A00323: 0x00001EE2\n\t\"\\x01\\xa1\\x03#\\x00\\x00\\x1e\\xe3\" + // 0x01A10323: 0x00001EE3\n\t\"\\x00U\\x03#\\x00\\x00\\x1e\\xe4\" + // 0x00550323: 0x00001EE4\n\t\"\\x00u\\x03#\\x00\\x00\\x1e\\xe5\" + // 0x00750323: 0x00001EE5\n\t\"\\x00U\\x03\\t\\x00\\x00\\x1e\\xe6\" + // 0x00550309: 0x00001EE6\n\t\"\\x00u\\x03\\t\\x00\\x00\\x1e\\xe7\" + // 0x00750309: 0x00001EE7\n\t\"\\x01\\xaf\\x03\\x01\\x00\\x00\\x1e\\xe8\" + // 0x01AF0301: 0x00001EE8\n\t\"\\x01\\xb0\\x03\\x01\\x00\\x00\\x1e\\xe9\" + // 0x01B00301: 0x00001EE9\n\t\"\\x01\\xaf\\x03\\x00\\x00\\x00\\x1e\\xea\" + // 0x01AF0300: 0x00001EEA\n\t\"\\x01\\xb0\\x03\\x00\\x00\\x00\\x1e\\xeb\" + // 0x01B00300: 0x00001EEB\n\t\"\\x01\\xaf\\x03\\t\\x00\\x00\\x1e\\xec\" + // 0x01AF0309: 0x00001EEC\n\t\"\\x01\\xb0\\x03\\t\\x00\\x00\\x1e\\xed\" + // 0x01B00309: 0x00001EED\n\t\"\\x01\\xaf\\x03\\x03\\x00\\x00\\x1e\\xee\" + // 0x01AF0303: 0x00001EEE\n\t\"\\x01\\xb0\\x03\\x03\\x00\\x00\\x1e\\xef\" + // 0x01B00303: 0x00001EEF\n\t\"\\x01\\xaf\\x03#\\x00\\x00\\x1e\\xf0\" + // 0x01AF0323: 0x00001EF0\n\t\"\\x01\\xb0\\x03#\\x00\\x00\\x1e\\xf1\" + // 0x01B00323: 0x00001EF1\n\t\"\\x00Y\\x03\\x00\\x00\\x00\\x1e\\xf2\" + // 0x00590300: 0x00001EF2\n\t\"\\x00y\\x03\\x00\\x00\\x00\\x1e\\xf3\" + // 0x00790300: 0x00001EF3\n\t\"\\x00Y\\x03#\\x00\\x00\\x1e\\xf4\" + // 0x00590323: 0x00001EF4\n\t\"\\x00y\\x03#\\x00\\x00\\x1e\\xf5\" + // 0x00790323: 0x00001EF5\n\t\"\\x00Y\\x03\\t\\x00\\x00\\x1e\\xf6\" + // 0x00590309: 0x00001EF6\n\t\"\\x00y\\x03\\t\\x00\\x00\\x1e\\xf7\" + // 0x00790309: 0x00001EF7\n\t\"\\x00Y\\x03\\x03\\x00\\x00\\x1e\\xf8\" + // 0x00590303: 0x00001EF8\n\t\"\\x00y\\x03\\x03\\x00\\x00\\x1e\\xf9\" + // 0x00790303: 0x00001EF9\n\t\"\\x03\\xb1\\x03\\x13\\x00\\x00\\x1f\\x00\" + // 0x03B10313: 0x00001F00\n\t\"\\x03\\xb1\\x03\\x14\\x00\\x00\\x1f\\x01\" + // 0x03B10314: 0x00001F01\n\t\"\\x1f\\x00\\x03\\x00\\x00\\x00\\x1f\\x02\" + // 0x1F000300: 0x00001F02\n\t\"\\x1f\\x01\\x03\\x00\\x00\\x00\\x1f\\x03\" + // 0x1F010300: 0x00001F03\n\t\"\\x1f\\x00\\x03\\x01\\x00\\x00\\x1f\\x04\" + // 0x1F000301: 0x00001F04\n\t\"\\x1f\\x01\\x03\\x01\\x00\\x00\\x1f\\x05\" + // 0x1F010301: 0x00001F05\n\t\"\\x1f\\x00\\x03B\\x00\\x00\\x1f\\x06\" + // 0x1F000342: 0x00001F06\n\t\"\\x1f\\x01\\x03B\\x00\\x00\\x1f\\a\" + // 0x1F010342: 0x00001F07\n\t\"\\x03\\x91\\x03\\x13\\x00\\x00\\x1f\\b\" + // 0x03910313: 0x00001F08\n\t\"\\x03\\x91\\x03\\x14\\x00\\x00\\x1f\\t\" + // 0x03910314: 0x00001F09\n\t\"\\x1f\\b\\x03\\x00\\x00\\x00\\x1f\\n\" + // 0x1F080300: 0x00001F0A\n\t\"\\x1f\\t\\x03\\x00\\x00\\x00\\x1f\\v\" + // 0x1F090300: 0x00001F0B\n\t\"\\x1f\\b\\x03\\x01\\x00\\x00\\x1f\\f\" + // 0x1F080301: 0x00001F0C\n\t\"\\x1f\\t\\x03\\x01\\x00\\x00\\x1f\\r\" + // 0x1F090301: 0x00001F0D\n\t\"\\x1f\\b\\x03B\\x00\\x00\\x1f\\x0e\" + // 0x1F080342: 0x00001F0E\n\t\"\\x1f\\t\\x03B\\x00\\x00\\x1f\\x0f\" + // 0x1F090342: 0x00001F0F\n\t\"\\x03\\xb5\\x03\\x13\\x00\\x00\\x1f\\x10\" + // 0x03B50313: 0x00001F10\n\t\"\\x03\\xb5\\x03\\x14\\x00\\x00\\x1f\\x11\" + // 0x03B50314: 0x00001F11\n\t\"\\x1f\\x10\\x03\\x00\\x00\\x00\\x1f\\x12\" + // 0x1F100300: 0x00001F12\n\t\"\\x1f\\x11\\x03\\x00\\x00\\x00\\x1f\\x13\" + // 0x1F110300: 0x00001F13\n\t\"\\x1f\\x10\\x03\\x01\\x00\\x00\\x1f\\x14\" + // 0x1F100301: 0x00001F14\n\t\"\\x1f\\x11\\x03\\x01\\x00\\x00\\x1f\\x15\" + // 0x1F110301: 0x00001F15\n\t\"\\x03\\x95\\x03\\x13\\x00\\x00\\x1f\\x18\" + // 0x03950313: 0x00001F18\n\t\"\\x03\\x95\\x03\\x14\\x00\\x00\\x1f\\x19\" + // 0x03950314: 0x00001F19\n\t\"\\x1f\\x18\\x03\\x00\\x00\\x00\\x1f\\x1a\" + // 0x1F180300: 0x00001F1A\n\t\"\\x1f\\x19\\x03\\x00\\x00\\x00\\x1f\\x1b\" + // 0x1F190300: 0x00001F1B\n\t\"\\x1f\\x18\\x03\\x01\\x00\\x00\\x1f\\x1c\" + // 0x1F180301: 0x00001F1C\n\t\"\\x1f\\x19\\x03\\x01\\x00\\x00\\x1f\\x1d\" + // 0x1F190301: 0x00001F1D\n\t\"\\x03\\xb7\\x03\\x13\\x00\\x00\\x1f \" + // 0x03B70313: 0x00001F20\n\t\"\\x03\\xb7\\x03\\x14\\x00\\x00\\x1f!\" + // 0x03B70314: 0x00001F21\n\t\"\\x1f \\x03\\x00\\x00\\x00\\x1f\\\"\" + // 0x1F200300: 0x00001F22\n\t\"\\x1f!\\x03\\x00\\x00\\x00\\x1f#\" + // 0x1F210300: 0x00001F23\n\t\"\\x1f \\x03\\x01\\x00\\x00\\x1f$\" + // 0x1F200301: 0x00001F24\n\t\"\\x1f!\\x03\\x01\\x00\\x00\\x1f%\" + // 0x1F210301: 0x00001F25\n\t\"\\x1f \\x03B\\x00\\x00\\x1f&\" + // 0x1F200342: 0x00001F26\n\t\"\\x1f!\\x03B\\x00\\x00\\x1f'\" + // 0x1F210342: 0x00001F27\n\t\"\\x03\\x97\\x03\\x13\\x00\\x00\\x1f(\" + // 0x03970313: 0x00001F28\n\t\"\\x03\\x97\\x03\\x14\\x00\\x00\\x1f)\" + // 0x03970314: 0x00001F29\n\t\"\\x1f(\\x03\\x00\\x00\\x00\\x1f*\" + // 0x1F280300: 0x00001F2A\n\t\"\\x1f)\\x03\\x00\\x00\\x00\\x1f+\" + // 0x1F290300: 0x00001F2B\n\t\"\\x1f(\\x03\\x01\\x00\\x00\\x1f,\" + // 0x1F280301: 0x00001F2C\n\t\"\\x1f)\\x03\\x01\\x00\\x00\\x1f-\" + // 0x1F290301: 0x00001F2D\n\t\"\\x1f(\\x03B\\x00\\x00\\x1f.\" + // 0x1F280342: 0x00001F2E\n\t\"\\x1f)\\x03B\\x00\\x00\\x1f/\" + // 0x1F290342: 0x00001F2F\n\t\"\\x03\\xb9\\x03\\x13\\x00\\x00\\x1f0\" + // 0x03B90313: 0x00001F30\n\t\"\\x03\\xb9\\x03\\x14\\x00\\x00\\x1f1\" + // 0x03B90314: 0x00001F31\n\t\"\\x1f0\\x03\\x00\\x00\\x00\\x1f2\" + // 0x1F300300: 0x00001F32\n\t\"\\x1f1\\x03\\x00\\x00\\x00\\x1f3\" + // 0x1F310300: 0x00001F33\n\t\"\\x1f0\\x03\\x01\\x00\\x00\\x1f4\" + // 0x1F300301: 0x00001F34\n\t\"\\x1f1\\x03\\x01\\x00\\x00\\x1f5\" + // 0x1F310301: 0x00001F35\n\t\"\\x1f0\\x03B\\x00\\x00\\x1f6\" + // 0x1F300342: 0x00001F36\n\t\"\\x1f1\\x03B\\x00\\x00\\x1f7\" + // 0x1F310342: 0x00001F37\n\t\"\\x03\\x99\\x03\\x13\\x00\\x00\\x1f8\" + // 0x03990313: 0x00001F38\n\t\"\\x03\\x99\\x03\\x14\\x00\\x00\\x1f9\" + // 0x03990314: 0x00001F39\n\t\"\\x1f8\\x03\\x00\\x00\\x00\\x1f:\" + // 0x1F380300: 0x00001F3A\n\t\"\\x1f9\\x03\\x00\\x00\\x00\\x1f;\" + // 0x1F390300: 0x00001F3B\n\t\"\\x1f8\\x03\\x01\\x00\\x00\\x1f<\" + // 0x1F380301: 0x00001F3C\n\t\"\\x1f9\\x03\\x01\\x00\\x00\\x1f=\" + // 0x1F390301: 0x00001F3D\n\t\"\\x1f8\\x03B\\x00\\x00\\x1f>\" + // 0x1F380342: 0x00001F3E\n\t\"\\x1f9\\x03B\\x00\\x00\\x1f?\" + // 0x1F390342: 0x00001F3F\n\t\"\\x03\\xbf\\x03\\x13\\x00\\x00\\x1f@\" + // 0x03BF0313: 0x00001F40\n\t\"\\x03\\xbf\\x03\\x14\\x00\\x00\\x1fA\" + // 0x03BF0314: 0x00001F41\n\t\"\\x1f@\\x03\\x00\\x00\\x00\\x1fB\" + // 0x1F400300: 0x00001F42\n\t\"\\x1fA\\x03\\x00\\x00\\x00\\x1fC\" + // 0x1F410300: 0x00001F43\n\t\"\\x1f@\\x03\\x01\\x00\\x00\\x1fD\" + // 0x1F400301: 0x00001F44\n\t\"\\x1fA\\x03\\x01\\x00\\x00\\x1fE\" + // 0x1F410301: 0x00001F45\n\t\"\\x03\\x9f\\x03\\x13\\x00\\x00\\x1fH\" + // 0x039F0313: 0x00001F48\n\t\"\\x03\\x9f\\x03\\x14\\x00\\x00\\x1fI\" + // 0x039F0314: 0x00001F49\n\t\"\\x1fH\\x03\\x00\\x00\\x00\\x1fJ\" + // 0x1F480300: 0x00001F4A\n\t\"\\x1fI\\x03\\x00\\x00\\x00\\x1fK\" + // 0x1F490300: 0x00001F4B\n\t\"\\x1fH\\x03\\x01\\x00\\x00\\x1fL\" + // 0x1F480301: 0x00001F4C\n\t\"\\x1fI\\x03\\x01\\x00\\x00\\x1fM\" + // 0x1F490301: 0x00001F4D\n\t\"\\x03\\xc5\\x03\\x13\\x00\\x00\\x1fP\" + // 0x03C50313: 0x00001F50\n\t\"\\x03\\xc5\\x03\\x14\\x00\\x00\\x1fQ\" + // 0x03C50314: 0x00001F51\n\t\"\\x1fP\\x03\\x00\\x00\\x00\\x1fR\" + // 0x1F500300: 0x00001F52\n\t\"\\x1fQ\\x03\\x00\\x00\\x00\\x1fS\" + // 0x1F510300: 0x00001F53\n\t\"\\x1fP\\x03\\x01\\x00\\x00\\x1fT\" + // 0x1F500301: 0x00001F54\n\t\"\\x1fQ\\x03\\x01\\x00\\x00\\x1fU\" + // 0x1F510301: 0x00001F55\n\t\"\\x1fP\\x03B\\x00\\x00\\x1fV\" + // 0x1F500342: 0x00001F56\n\t\"\\x1fQ\\x03B\\x00\\x00\\x1fW\" + // 0x1F510342: 0x00001F57\n\t\"\\x03\\xa5\\x03\\x14\\x00\\x00\\x1fY\" + // 0x03A50314: 0x00001F59\n\t\"\\x1fY\\x03\\x00\\x00\\x00\\x1f[\" + // 0x1F590300: 0x00001F5B\n\t\"\\x1fY\\x03\\x01\\x00\\x00\\x1f]\" + // 0x1F590301: 0x00001F5D\n\t\"\\x1fY\\x03B\\x00\\x00\\x1f_\" + // 0x1F590342: 0x00001F5F\n\t\"\\x03\\xc9\\x03\\x13\\x00\\x00\\x1f`\" + // 0x03C90313: 0x00001F60\n\t\"\\x03\\xc9\\x03\\x14\\x00\\x00\\x1fa\" + // 0x03C90314: 0x00001F61\n\t\"\\x1f`\\x03\\x00\\x00\\x00\\x1fb\" + // 0x1F600300: 0x00001F62\n\t\"\\x1fa\\x03\\x00\\x00\\x00\\x1fc\" + // 0x1F610300: 0x00001F63\n\t\"\\x1f`\\x03\\x01\\x00\\x00\\x1fd\" + // 0x1F600301: 0x00001F64\n\t\"\\x1fa\\x03\\x01\\x00\\x00\\x1fe\" + // 0x1F610301: 0x00001F65\n\t\"\\x1f`\\x03B\\x00\\x00\\x1ff\" + // 0x1F600342: 0x00001F66\n\t\"\\x1fa\\x03B\\x00\\x00\\x1fg\" + // 0x1F610342: 0x00001F67\n\t\"\\x03\\xa9\\x03\\x13\\x00\\x00\\x1fh\" + // 0x03A90313: 0x00001F68\n\t\"\\x03\\xa9\\x03\\x14\\x00\\x00\\x1fi\" + // 0x03A90314: 0x00001F69\n\t\"\\x1fh\\x03\\x00\\x00\\x00\\x1fj\" + // 0x1F680300: 0x00001F6A\n\t\"\\x1fi\\x03\\x00\\x00\\x00\\x1fk\" + // 0x1F690300: 0x00001F6B\n\t\"\\x1fh\\x03\\x01\\x00\\x00\\x1fl\" + // 0x1F680301: 0x00001F6C\n\t\"\\x1fi\\x03\\x01\\x00\\x00\\x1fm\" + // 0x1F690301: 0x00001F6D\n\t\"\\x1fh\\x03B\\x00\\x00\\x1fn\" + // 0x1F680342: 0x00001F6E\n\t\"\\x1fi\\x03B\\x00\\x00\\x1fo\" + // 0x1F690342: 0x00001F6F\n\t\"\\x03\\xb1\\x03\\x00\\x00\\x00\\x1fp\" + // 0x03B10300: 0x00001F70\n\t\"\\x03\\xb5\\x03\\x00\\x00\\x00\\x1fr\" + // 0x03B50300: 0x00001F72\n\t\"\\x03\\xb7\\x03\\x00\\x00\\x00\\x1ft\" + // 0x03B70300: 0x00001F74\n\t\"\\x03\\xb9\\x03\\x00\\x00\\x00\\x1fv\" + // 0x03B90300: 0x00001F76\n\t\"\\x03\\xbf\\x03\\x00\\x00\\x00\\x1fx\" + // 0x03BF0300: 0x00001F78\n\t\"\\x03\\xc5\\x03\\x00\\x00\\x00\\x1fz\" + // 0x03C50300: 0x00001F7A\n\t\"\\x03\\xc9\\x03\\x00\\x00\\x00\\x1f|\" + // 0x03C90300: 0x00001F7C\n\t\"\\x1f\\x00\\x03E\\x00\\x00\\x1f\\x80\" + // 0x1F000345: 0x00001F80\n\t\"\\x1f\\x01\\x03E\\x00\\x00\\x1f\\x81\" + // 0x1F010345: 0x00001F81\n\t\"\\x1f\\x02\\x03E\\x00\\x00\\x1f\\x82\" + // 0x1F020345: 0x00001F82\n\t\"\\x1f\\x03\\x03E\\x00\\x00\\x1f\\x83\" + // 0x1F030345: 0x00001F83\n\t\"\\x1f\\x04\\x03E\\x00\\x00\\x1f\\x84\" + // 0x1F040345: 0x00001F84\n\t\"\\x1f\\x05\\x03E\\x00\\x00\\x1f\\x85\" + // 0x1F050345: 0x00001F85\n\t\"\\x1f\\x06\\x03E\\x00\\x00\\x1f\\x86\" + // 0x1F060345: 0x00001F86\n\t\"\\x1f\\a\\x03E\\x00\\x00\\x1f\\x87\" + // 0x1F070345: 0x00001F87\n\t\"\\x1f\\b\\x03E\\x00\\x00\\x1f\\x88\" + // 0x1F080345: 0x00001F88\n\t\"\\x1f\\t\\x03E\\x00\\x00\\x1f\\x89\" + // 0x1F090345: 0x00001F89\n\t\"\\x1f\\n\\x03E\\x00\\x00\\x1f\\x8a\" + // 0x1F0A0345: 0x00001F8A\n\t\"\\x1f\\v\\x03E\\x00\\x00\\x1f\\x8b\" + // 0x1F0B0345: 0x00001F8B\n\t\"\\x1f\\f\\x03E\\x00\\x00\\x1f\\x8c\" + // 0x1F0C0345: 0x00001F8C\n\t\"\\x1f\\r\\x03E\\x00\\x00\\x1f\\x8d\" + // 0x1F0D0345: 0x00001F8D\n\t\"\\x1f\\x0e\\x03E\\x00\\x00\\x1f\\x8e\" + // 0x1F0E0345: 0x00001F8E\n\t\"\\x1f\\x0f\\x03E\\x00\\x00\\x1f\\x8f\" + // 0x1F0F0345: 0x00001F8F\n\t\"\\x1f \\x03E\\x00\\x00\\x1f\\x90\" + // 0x1F200345: 0x00001F90\n\t\"\\x1f!\\x03E\\x00\\x00\\x1f\\x91\" + // 0x1F210345: 0x00001F91\n\t\"\\x1f\\\"\\x03E\\x00\\x00\\x1f\\x92\" + // 0x1F220345: 0x00001F92\n\t\"\\x1f#\\x03E\\x00\\x00\\x1f\\x93\" + // 0x1F230345: 0x00001F93\n\t\"\\x1f$\\x03E\\x00\\x00\\x1f\\x94\" + // 0x1F240345: 0x00001F94\n\t\"\\x1f%\\x03E\\x00\\x00\\x1f\\x95\" + // 0x1F250345: 0x00001F95\n\t\"\\x1f&\\x03E\\x00\\x00\\x1f\\x96\" + // 0x1F260345: 0x00001F96\n\t\"\\x1f'\\x03E\\x00\\x00\\x1f\\x97\" + // 0x1F270345: 0x00001F97\n\t\"\\x1f(\\x03E\\x00\\x00\\x1f\\x98\" + // 0x1F280345: 0x00001F98\n\t\"\\x1f)\\x03E\\x00\\x00\\x1f\\x99\" + // 0x1F290345: 0x00001F99\n\t\"\\x1f*\\x03E\\x00\\x00\\x1f\\x9a\" + // 0x1F2A0345: 0x00001F9A\n\t\"\\x1f+\\x03E\\x00\\x00\\x1f\\x9b\" + // 0x1F2B0345: 0x00001F9B\n\t\"\\x1f,\\x03E\\x00\\x00\\x1f\\x9c\" + // 0x1F2C0345: 0x00001F9C\n\t\"\\x1f-\\x03E\\x00\\x00\\x1f\\x9d\" + // 0x1F2D0345: 0x00001F9D\n\t\"\\x1f.\\x03E\\x00\\x00\\x1f\\x9e\" + // 0x1F2E0345: 0x00001F9E\n\t\"\\x1f/\\x03E\\x00\\x00\\x1f\\x9f\" + // 0x1F2F0345: 0x00001F9F\n\t\"\\x1f`\\x03E\\x00\\x00\\x1f\\xa0\" + // 0x1F600345: 0x00001FA0\n\t\"\\x1fa\\x03E\\x00\\x00\\x1f\\xa1\" + // 0x1F610345: 0x00001FA1\n\t\"\\x1fb\\x03E\\x00\\x00\\x1f\\xa2\" + // 0x1F620345: 0x00001FA2\n\t\"\\x1fc\\x03E\\x00\\x00\\x1f\\xa3\" + // 0x1F630345: 0x00001FA3\n\t\"\\x1fd\\x03E\\x00\\x00\\x1f\\xa4\" + // 0x1F640345: 0x00001FA4\n\t\"\\x1fe\\x03E\\x00\\x00\\x1f\\xa5\" + // 0x1F650345: 0x00001FA5\n\t\"\\x1ff\\x03E\\x00\\x00\\x1f\\xa6\" + // 0x1F660345: 0x00001FA6\n\t\"\\x1fg\\x03E\\x00\\x00\\x1f\\xa7\" + // 0x1F670345: 0x00001FA7\n\t\"\\x1fh\\x03E\\x00\\x00\\x1f\\xa8\" + // 0x1F680345: 0x00001FA8\n\t\"\\x1fi\\x03E\\x00\\x00\\x1f\\xa9\" + // 0x1F690345: 0x00001FA9\n\t\"\\x1fj\\x03E\\x00\\x00\\x1f\\xaa\" + // 0x1F6A0345: 0x00001FAA\n\t\"\\x1fk\\x03E\\x00\\x00\\x1f\\xab\" + // 0x1F6B0345: 0x00001FAB\n\t\"\\x1fl\\x03E\\x00\\x00\\x1f\\xac\" + // 0x1F6C0345: 0x00001FAC\n\t\"\\x1fm\\x03E\\x00\\x00\\x1f\\xad\" + // 0x1F6D0345: 0x00001FAD\n\t\"\\x1fn\\x03E\\x00\\x00\\x1f\\xae\" + // 0x1F6E0345: 0x00001FAE\n\t\"\\x1fo\\x03E\\x00\\x00\\x1f\\xaf\" + // 0x1F6F0345: 0x00001FAF\n\t\"\\x03\\xb1\\x03\\x06\\x00\\x00\\x1f\\xb0\" + // 0x03B10306: 0x00001FB0\n\t\"\\x03\\xb1\\x03\\x04\\x00\\x00\\x1f\\xb1\" + // 0x03B10304: 0x00001FB1\n\t\"\\x1fp\\x03E\\x00\\x00\\x1f\\xb2\" + // 0x1F700345: 0x00001FB2\n\t\"\\x03\\xb1\\x03E\\x00\\x00\\x1f\\xb3\" + // 0x03B10345: 0x00001FB3\n\t\"\\x03\\xac\\x03E\\x00\\x00\\x1f\\xb4\" + // 0x03AC0345: 0x00001FB4\n\t\"\\x03\\xb1\\x03B\\x00\\x00\\x1f\\xb6\" + // 0x03B10342: 0x00001FB6\n\t\"\\x1f\\xb6\\x03E\\x00\\x00\\x1f\\xb7\" + // 0x1FB60345: 0x00001FB7\n\t\"\\x03\\x91\\x03\\x06\\x00\\x00\\x1f\\xb8\" + // 0x03910306: 0x00001FB8\n\t\"\\x03\\x91\\x03\\x04\\x00\\x00\\x1f\\xb9\" + // 0x03910304: 0x00001FB9\n\t\"\\x03\\x91\\x03\\x00\\x00\\x00\\x1f\\xba\" + // 0x03910300: 0x00001FBA\n\t\"\\x03\\x91\\x03E\\x00\\x00\\x1f\\xbc\" + // 0x03910345: 0x00001FBC\n\t\"\\x00\\xa8\\x03B\\x00\\x00\\x1f\\xc1\" + // 0x00A80342: 0x00001FC1\n\t\"\\x1ft\\x03E\\x00\\x00\\x1f\\xc2\" + // 0x1F740345: 0x00001FC2\n\t\"\\x03\\xb7\\x03E\\x00\\x00\\x1f\\xc3\" + // 0x03B70345: 0x00001FC3\n\t\"\\x03\\xae\\x03E\\x00\\x00\\x1f\\xc4\" + // 0x03AE0345: 0x00001FC4\n\t\"\\x03\\xb7\\x03B\\x00\\x00\\x1f\\xc6\" + // 0x03B70342: 0x00001FC6\n\t\"\\x1f\\xc6\\x03E\\x00\\x00\\x1f\\xc7\" + // 0x1FC60345: 0x00001FC7\n\t\"\\x03\\x95\\x03\\x00\\x00\\x00\\x1f\\xc8\" + // 0x03950300: 0x00001FC8\n\t\"\\x03\\x97\\x03\\x00\\x00\\x00\\x1f\\xca\" + // 0x03970300: 0x00001FCA\n\t\"\\x03\\x97\\x03E\\x00\\x00\\x1f\\xcc\" + // 0x03970345: 0x00001FCC\n\t\"\\x1f\\xbf\\x03\\x00\\x00\\x00\\x1f\\xcd\" + // 0x1FBF0300: 0x00001FCD\n\t\"\\x1f\\xbf\\x03\\x01\\x00\\x00\\x1f\\xce\" + // 0x1FBF0301: 0x00001FCE\n\t\"\\x1f\\xbf\\x03B\\x00\\x00\\x1f\\xcf\" + // 0x1FBF0342: 0x00001FCF\n\t\"\\x03\\xb9\\x03\\x06\\x00\\x00\\x1f\\xd0\" + // 0x03B90306: 0x00001FD0\n\t\"\\x03\\xb9\\x03\\x04\\x00\\x00\\x1f\\xd1\" + // 0x03B90304: 0x00001FD1\n\t\"\\x03\\xca\\x03\\x00\\x00\\x00\\x1f\\xd2\" + // 0x03CA0300: 0x00001FD2\n\t\"\\x03\\xb9\\x03B\\x00\\x00\\x1f\\xd6\" + // 0x03B90342: 0x00001FD6\n\t\"\\x03\\xca\\x03B\\x00\\x00\\x1f\\xd7\" + // 0x03CA0342: 0x00001FD7\n\t\"\\x03\\x99\\x03\\x06\\x00\\x00\\x1f\\xd8\" + // 0x03990306: 0x00001FD8\n\t\"\\x03\\x99\\x03\\x04\\x00\\x00\\x1f\\xd9\" + // 0x03990304: 0x00001FD9\n\t\"\\x03\\x99\\x03\\x00\\x00\\x00\\x1f\\xda\" + // 0x03990300: 0x00001FDA\n\t\"\\x1f\\xfe\\x03\\x00\\x00\\x00\\x1f\\xdd\" + // 0x1FFE0300: 0x00001FDD\n\t\"\\x1f\\xfe\\x03\\x01\\x00\\x00\\x1f\\xde\" + // 0x1FFE0301: 0x00001FDE\n\t\"\\x1f\\xfe\\x03B\\x00\\x00\\x1f\\xdf\" + // 0x1FFE0342: 0x00001FDF\n\t\"\\x03\\xc5\\x03\\x06\\x00\\x00\\x1f\\xe0\" + // 0x03C50306: 0x00001FE0\n\t\"\\x03\\xc5\\x03\\x04\\x00\\x00\\x1f\\xe1\" + // 0x03C50304: 0x00001FE1\n\t\"\\x03\\xcb\\x03\\x00\\x00\\x00\\x1f\\xe2\" + // 0x03CB0300: 0x00001FE2\n\t\"\\x03\\xc1\\x03\\x13\\x00\\x00\\x1f\\xe4\" + // 0x03C10313: 0x00001FE4\n\t\"\\x03\\xc1\\x03\\x14\\x00\\x00\\x1f\\xe5\" + // 0x03C10314: 0x00001FE5\n\t\"\\x03\\xc5\\x03B\\x00\\x00\\x1f\\xe6\" + // 0x03C50342: 0x00001FE6\n\t\"\\x03\\xcb\\x03B\\x00\\x00\\x1f\\xe7\" + // 0x03CB0342: 0x00001FE7\n\t\"\\x03\\xa5\\x03\\x06\\x00\\x00\\x1f\\xe8\" + // 0x03A50306: 0x00001FE8\n\t\"\\x03\\xa5\\x03\\x04\\x00\\x00\\x1f\\xe9\" + // 0x03A50304: 0x00001FE9\n\t\"\\x03\\xa5\\x03\\x00\\x00\\x00\\x1f\\xea\" + // 0x03A50300: 0x00001FEA\n\t\"\\x03\\xa1\\x03\\x14\\x00\\x00\\x1f\\xec\" + // 0x03A10314: 0x00001FEC\n\t\"\\x00\\xa8\\x03\\x00\\x00\\x00\\x1f\\xed\" + // 0x00A80300: 0x00001FED\n\t\"\\x1f|\\x03E\\x00\\x00\\x1f\\xf2\" + // 0x1F7C0345: 0x00001FF2\n\t\"\\x03\\xc9\\x03E\\x00\\x00\\x1f\\xf3\" + // 0x03C90345: 0x00001FF3\n\t\"\\x03\\xce\\x03E\\x00\\x00\\x1f\\xf4\" + // 0x03CE0345: 0x00001FF4\n\t\"\\x03\\xc9\\x03B\\x00\\x00\\x1f\\xf6\" + // 0x03C90342: 0x00001FF6\n\t\"\\x1f\\xf6\\x03E\\x00\\x00\\x1f\\xf7\" + // 0x1FF60345: 0x00001FF7\n\t\"\\x03\\x9f\\x03\\x00\\x00\\x00\\x1f\\xf8\" + // 0x039F0300: 0x00001FF8\n\t\"\\x03\\xa9\\x03\\x00\\x00\\x00\\x1f\\xfa\" + // 0x03A90300: 0x00001FFA\n\t\"\\x03\\xa9\\x03E\\x00\\x00\\x1f\\xfc\" + // 0x03A90345: 0x00001FFC\n\t\"!\\x90\\x038\\x00\\x00!\\x9a\" + // 0x21900338: 0x0000219A\n\t\"!\\x92\\x038\\x00\\x00!\\x9b\" + // 0x21920338: 0x0000219B\n\t\"!\\x94\\x038\\x00\\x00!\\xae\" + // 0x21940338: 0x000021AE\n\t\"!\\xd0\\x038\\x00\\x00!\\xcd\" + // 0x21D00338: 0x000021CD\n\t\"!\\xd4\\x038\\x00\\x00!\\xce\" + // 0x21D40338: 0x000021CE\n\t\"!\\xd2\\x038\\x00\\x00!\\xcf\" + // 0x21D20338: 0x000021CF\n\t\"\\\"\\x03\\x038\\x00\\x00\\\"\\x04\" + // 0x22030338: 0x00002204\n\t\"\\\"\\b\\x038\\x00\\x00\\\"\\t\" + // 0x22080338: 0x00002209\n\t\"\\\"\\v\\x038\\x00\\x00\\\"\\f\" + // 0x220B0338: 0x0000220C\n\t\"\\\"#\\x038\\x00\\x00\\\"$\" + // 0x22230338: 0x00002224\n\t\"\\\"%\\x038\\x00\\x00\\\"&\" + // 0x22250338: 0x00002226\n\t\"\\\"<\\x038\\x00\\x00\\\"A\" + // 0x223C0338: 0x00002241\n\t\"\\\"C\\x038\\x00\\x00\\\"D\" + // 0x22430338: 0x00002244\n\t\"\\\"E\\x038\\x00\\x00\\\"G\" + // 0x22450338: 0x00002247\n\t\"\\\"H\\x038\\x00\\x00\\\"I\" + // 0x22480338: 0x00002249\n\t\"\\x00=\\x038\\x00\\x00\\\"`\" + // 0x003D0338: 0x00002260\n\t\"\\\"a\\x038\\x00\\x00\\\"b\" + // 0x22610338: 0x00002262\n\t\"\\\"M\\x038\\x00\\x00\\\"m\" + // 0x224D0338: 0x0000226D\n\t\"\\x00<\\x038\\x00\\x00\\\"n\" + // 0x003C0338: 0x0000226E\n\t\"\\x00>\\x038\\x00\\x00\\\"o\" + // 0x003E0338: 0x0000226F\n\t\"\\\"d\\x038\\x00\\x00\\\"p\" + // 0x22640338: 0x00002270\n\t\"\\\"e\\x038\\x00\\x00\\\"q\" + // 0x22650338: 0x00002271\n\t\"\\\"r\\x038\\x00\\x00\\\"t\" + // 0x22720338: 0x00002274\n\t\"\\\"s\\x038\\x00\\x00\\\"u\" + // 0x22730338: 0x00002275\n\t\"\\\"v\\x038\\x00\\x00\\\"x\" + // 0x22760338: 0x00002278\n\t\"\\\"w\\x038\\x00\\x00\\\"y\" + // 0x22770338: 0x00002279\n\t\"\\\"z\\x038\\x00\\x00\\\"\\x80\" + // 0x227A0338: 0x00002280\n\t\"\\\"{\\x038\\x00\\x00\\\"\\x81\" + // 0x227B0338: 0x00002281\n\t\"\\\"\\x82\\x038\\x00\\x00\\\"\\x84\" + // 0x22820338: 0x00002284\n\t\"\\\"\\x83\\x038\\x00\\x00\\\"\\x85\" + // 0x22830338: 0x00002285\n\t\"\\\"\\x86\\x038\\x00\\x00\\\"\\x88\" + // 0x22860338: 0x00002288\n\t\"\\\"\\x87\\x038\\x00\\x00\\\"\\x89\" + // 0x22870338: 0x00002289\n\t\"\\\"\\xa2\\x038\\x00\\x00\\\"\\xac\" + // 0x22A20338: 0x000022AC\n\t\"\\\"\\xa8\\x038\\x00\\x00\\\"\\xad\" + // 0x22A80338: 0x000022AD\n\t\"\\\"\\xa9\\x038\\x00\\x00\\\"\\xae\" + // 0x22A90338: 0x000022AE\n\t\"\\\"\\xab\\x038\\x00\\x00\\\"\\xaf\" + // 0x22AB0338: 0x000022AF\n\t\"\\\"|\\x038\\x00\\x00\\\"\\xe0\" + // 0x227C0338: 0x000022E0\n\t\"\\\"}\\x038\\x00\\x00\\\"\\xe1\" + // 0x227D0338: 0x000022E1\n\t\"\\\"\\x91\\x038\\x00\\x00\\\"\\xe2\" + // 0x22910338: 0x000022E2\n\t\"\\\"\\x92\\x038\\x00\\x00\\\"\\xe3\" + // 0x22920338: 0x000022E3\n\t\"\\\"\\xb2\\x038\\x00\\x00\\\"\\xea\" + // 0x22B20338: 0x000022EA\n\t\"\\\"\\xb3\\x038\\x00\\x00\\\"\\xeb\" + // 0x22B30338: 0x000022EB\n\t\"\\\"\\xb4\\x038\\x00\\x00\\\"\\xec\" + // 0x22B40338: 0x000022EC\n\t\"\\\"\\xb5\\x038\\x00\\x00\\\"\\xed\" + // 0x22B50338: 0x000022ED\n\t\"0K0\\x99\\x00\\x000L\" + // 0x304B3099: 0x0000304C\n\t\"0M0\\x99\\x00\\x000N\" + // 0x304D3099: 0x0000304E\n\t\"0O0\\x99\\x00\\x000P\" + // 0x304F3099: 0x00003050\n\t\"0Q0\\x99\\x00\\x000R\" + // 0x30513099: 0x00003052\n\t\"0S0\\x99\\x00\\x000T\" + // 0x30533099: 0x00003054\n\t\"0U0\\x99\\x00\\x000V\" + // 0x30553099: 0x00003056\n\t\"0W0\\x99\\x00\\x000X\" + // 0x30573099: 0x00003058\n\t\"0Y0\\x99\\x00\\x000Z\" + // 0x30593099: 0x0000305A\n\t\"0[0\\x99\\x00\\x000\\\\\" + // 0x305B3099: 0x0000305C\n\t\"0]0\\x99\\x00\\x000^\" + // 0x305D3099: 0x0000305E\n\t\"0_0\\x99\\x00\\x000`\" + // 0x305F3099: 0x00003060\n\t\"0a0\\x99\\x00\\x000b\" + // 0x30613099: 0x00003062\n\t\"0d0\\x99\\x00\\x000e\" + // 0x30643099: 0x00003065\n\t\"0f0\\x99\\x00\\x000g\" + // 0x30663099: 0x00003067\n\t\"0h0\\x99\\x00\\x000i\" + // 0x30683099: 0x00003069\n\t\"0o0\\x99\\x00\\x000p\" + // 0x306F3099: 0x00003070\n\t\"0o0\\x9a\\x00\\x000q\" + // 0x306F309A: 0x00003071\n\t\"0r0\\x99\\x00\\x000s\" + // 0x30723099: 0x00003073\n\t\"0r0\\x9a\\x00\\x000t\" + // 0x3072309A: 0x00003074\n\t\"0u0\\x99\\x00\\x000v\" + // 0x30753099: 0x00003076\n\t\"0u0\\x9a\\x00\\x000w\" + // 0x3075309A: 0x00003077\n\t\"0x0\\x99\\x00\\x000y\" + // 0x30783099: 0x00003079\n\t\"0x0\\x9a\\x00\\x000z\" + // 0x3078309A: 0x0000307A\n\t\"0{0\\x99\\x00\\x000|\" + // 0x307B3099: 0x0000307C\n\t\"0{0\\x9a\\x00\\x000}\" + // 0x307B309A: 0x0000307D\n\t\"0F0\\x99\\x00\\x000\\x94\" + // 0x30463099: 0x00003094\n\t\"0\\x9d0\\x99\\x00\\x000\\x9e\" + // 0x309D3099: 0x0000309E\n\t\"0\\xab0\\x99\\x00\\x000\\xac\" + // 0x30AB3099: 0x000030AC\n\t\"0\\xad0\\x99\\x00\\x000\\xae\" + // 0x30AD3099: 0x000030AE\n\t\"0\\xaf0\\x99\\x00\\x000\\xb0\" + // 0x30AF3099: 0x000030B0\n\t\"0\\xb10\\x99\\x00\\x000\\xb2\" + // 0x30B13099: 0x000030B2\n\t\"0\\xb30\\x99\\x00\\x000\\xb4\" + // 0x30B33099: 0x000030B4\n\t\"0\\xb50\\x99\\x00\\x000\\xb6\" + // 0x30B53099: 0x000030B6\n\t\"0\\xb70\\x99\\x00\\x000\\xb8\" + // 0x30B73099: 0x000030B8\n\t\"0\\xb90\\x99\\x00\\x000\\xba\" + // 0x30B93099: 0x000030BA\n\t\"0\\xbb0\\x99\\x00\\x000\\xbc\" + // 0x30BB3099: 0x000030BC\n\t\"0\\xbd0\\x99\\x00\\x000\\xbe\" + // 0x30BD3099: 0x000030BE\n\t\"0\\xbf0\\x99\\x00\\x000\\xc0\" + // 0x30BF3099: 0x000030C0\n\t\"0\\xc10\\x99\\x00\\x000\\xc2\" + // 0x30C13099: 0x000030C2\n\t\"0\\xc40\\x99\\x00\\x000\\xc5\" + // 0x30C43099: 0x000030C5\n\t\"0\\xc60\\x99\\x00\\x000\\xc7\" + // 0x30C63099: 0x000030C7\n\t\"0\\xc80\\x99\\x00\\x000\\xc9\" + // 0x30C83099: 0x000030C9\n\t\"0\\xcf0\\x99\\x00\\x000\\xd0\" + // 0x30CF3099: 0x000030D0\n\t\"0\\xcf0\\x9a\\x00\\x000\\xd1\" + // 0x30CF309A: 0x000030D1\n\t\"0\\xd20\\x99\\x00\\x000\\xd3\" + // 0x30D23099: 0x000030D3\n\t\"0\\xd20\\x9a\\x00\\x000\\xd4\" + // 0x30D2309A: 0x000030D4\n\t\"0\\xd50\\x99\\x00\\x000\\xd6\" + // 0x30D53099: 0x000030D6\n\t\"0\\xd50\\x9a\\x00\\x000\\xd7\" + // 0x30D5309A: 0x000030D7\n\t\"0\\xd80\\x99\\x00\\x000\\xd9\" + // 0x30D83099: 0x000030D9\n\t\"0\\xd80\\x9a\\x00\\x000\\xda\" + // 0x30D8309A: 0x000030DA\n\t\"0\\xdb0\\x99\\x00\\x000\\xdc\" + // 0x30DB3099: 0x000030DC\n\t\"0\\xdb0\\x9a\\x00\\x000\\xdd\" + // 0x30DB309A: 0x000030DD\n\t\"0\\xa60\\x99\\x00\\x000\\xf4\" + // 0x30A63099: 0x000030F4\n\t\"0\\xef0\\x99\\x00\\x000\\xf7\" + // 0x30EF3099: 0x000030F7\n\t\"0\\xf00\\x99\\x00\\x000\\xf8\" + // 0x30F03099: 0x000030F8\n\t\"0\\xf10\\x99\\x00\\x000\\xf9\" + // 0x30F13099: 0x000030F9\n\t\"0\\xf20\\x99\\x00\\x000\\xfa\" + // 0x30F23099: 0x000030FA\n\t\"0\\xfd0\\x99\\x00\\x000\\xfe\" + // 0x30FD3099: 0x000030FE\n\t\"\\x10\\x99\\x10\\xba\\x00\\x01\\x10\\x9a\" + // 0x109910BA: 0x0001109A\n\t\"\\x10\\x9b\\x10\\xba\\x00\\x01\\x10\\x9c\" + // 0x109B10BA: 0x0001109C\n\t\"\\x10\\xa5\\x10\\xba\\x00\\x01\\x10\\xab\" + // 0x10A510BA: 0x000110AB\n\t\"\\x111\\x11'\\x00\\x01\\x11.\" + // 0x11311127: 0x0001112E\n\t\"\\x112\\x11'\\x00\\x01\\x11/\" + // 0x11321127: 0x0001112F\n\t\"\\x13G\\x13>\\x00\\x01\\x13K\" + // 0x1347133E: 0x0001134B\n\t\"\\x13G\\x13W\\x00\\x01\\x13L\" + // 0x13471357: 0x0001134C\n\t\"\\x14\\xb9\\x14\\xba\\x00\\x01\\x14\\xbb\" + // 0x14B914BA: 0x000114BB\n\t\"\\x14\\xb9\\x14\\xb0\\x00\\x01\\x14\\xbc\" + // 0x14B914B0: 0x000114BC\n\t\"\\x14\\xb9\\x14\\xbd\\x00\\x01\\x14\\xbe\" + // 0x14B914BD: 0x000114BE\n\t\"\\x15\\xb8\\x15\\xaf\\x00\\x01\\x15\\xba\" + // 0x15B815AF: 0x000115BA\n\t\"\\x15\\xb9\\x15\\xaf\\x00\\x01\\x15\\xbb\" + // 0x15B915AF: 0x000115BB\n\t\"\"\n\t// Total size of tables: 53KB (54006 bytes)\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/transform.go",
    "content": "// Copyright 2013 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage norm\n\nimport (\n\t\"unicode/utf8\"\n\n\t\"golang.org/x/text/transform\"\n)\n\n// Reset implements the Reset method of the transform.Transformer interface.\nfunc (Form) Reset() {}\n\n// Transform implements the Transform method of the transform.Transformer\n// interface. It may need to write segments of up to MaxSegmentSize at once.\n// Users should either catch ErrShortDst and allow dst to grow or have dst be at\n// least of size MaxTransformChunkSize to be guaranteed of progress.\nfunc (f Form) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\t// Cap the maximum number of src bytes to check.\n\tb := src\n\teof := atEOF\n\tif ns := len(dst); ns < len(b) {\n\t\terr = transform.ErrShortDst\n\t\teof = false\n\t\tb = b[:ns]\n\t}\n\ti, ok := formTable[f].quickSpan(inputBytes(b), 0, len(b), eof)\n\tn := copy(dst, b[:i])\n\tif !ok {\n\t\tnDst, nSrc, err = f.transform(dst[n:], src[n:], atEOF)\n\t\treturn nDst + n, nSrc + n, err\n\t}\n\n\tif err == nil && n < len(src) && !atEOF {\n\t\terr = transform.ErrShortSrc\n\t}\n\treturn n, n, err\n}\n\nfunc flushTransform(rb *reorderBuffer) bool {\n\t// Write out (must fully fit in dst, or else it is an ErrShortDst).\n\tif len(rb.out) < rb.nrune*utf8.UTFMax {\n\t\treturn false\n\t}\n\trb.out = rb.out[rb.flushCopy(rb.out):]\n\treturn true\n}\n\nvar errs = []error{nil, transform.ErrShortDst, transform.ErrShortSrc}\n\n// transform implements the transform.Transformer interface. It is only called\n// when quickSpan does not pass for a given string.\nfunc (f Form) transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {\n\t// TODO: get rid of reorderBuffer. See CL 23460044.\n\trb := reorderBuffer{}\n\trb.init(f, src)\n\tfor {\n\t\t// Load segment into reorder buffer.\n\t\trb.setFlusher(dst[nDst:], flushTransform)\n\t\tend := decomposeSegment(&rb, nSrc, atEOF)\n\t\tif end < 0 {\n\t\t\treturn nDst, nSrc, errs[-end]\n\t\t}\n\t\tnDst = len(dst) - len(rb.out)\n\t\tnSrc = end\n\n\t\t// Next quickSpan.\n\t\tend = rb.nsrc\n\t\teof := atEOF\n\t\tif n := nSrc + len(dst) - nDst; n < end {\n\t\t\terr = transform.ErrShortDst\n\t\t\tend = n\n\t\t\teof = false\n\t\t}\n\t\tend, ok := rb.f.quickSpan(rb.src, nSrc, end, eof)\n\t\tn := copy(dst[nDst:], rb.src.bytes[nSrc:end])\n\t\tnSrc += n\n\t\tnDst += n\n\t\tif ok {\n\t\t\tif err == nil && n < rb.nsrc && !atEOF {\n\t\t\t\terr = transform.ErrShortSrc\n\t\t\t}\n\t\t\treturn nDst, nSrc, err\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "vendor/golang.org/x/text/unicode/norm/trie.go",
    "content": "// Copyright 2011 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage norm\n\ntype valueRange struct {\n\tvalue  uint16 // header: value:stride\n\tlo, hi byte   // header: lo:n\n}\n\ntype sparseBlocks struct {\n\tvalues []valueRange\n\toffset []uint16\n}\n\nvar nfcSparse = sparseBlocks{\n\tvalues: nfcSparseValues[:],\n\toffset: nfcSparseOffset[:],\n}\n\nvar nfkcSparse = sparseBlocks{\n\tvalues: nfkcSparseValues[:],\n\toffset: nfkcSparseOffset[:],\n}\n\nvar (\n\tnfcData  = newNfcTrie(0)\n\tnfkcData = newNfkcTrie(0)\n)\n\n// lookupValue determines the type of block n and looks up the value for b.\n// For n < t.cutoff, the block is a simple lookup table. Otherwise, the block\n// is a list of ranges with an accompanying value. Given a matching range r,\n// the value for b is by r.value + (b - r.lo) * stride.\nfunc (t *sparseBlocks) lookup(n uint32, b byte) uint16 {\n\toffset := t.offset[n]\n\theader := t.values[offset]\n\tlo := offset + 1\n\thi := lo + uint16(header.lo)\n\tfor lo < hi {\n\t\tm := lo + (hi-lo)/2\n\t\tr := t.values[m]\n\t\tif r.lo <= b && b <= r.hi {\n\t\t\treturn r.value + uint16(b-r.lo)*header.value\n\t\t}\n\t\tif b < r.lo {\n\t\t\thi = m\n\t\t} else {\n\t\t\tlo = m + 1\n\t\t}\n\t}\n\treturn 0\n}\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/.gitignore",
    "content": "testdata/conf_out.ini\nini.sublime-project\nini.sublime-workspace\ntestdata/conf_reflect.ini\n.idea\n/.vscode\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/.travis.yml",
    "content": "sudo: false\nlanguage: go\ngo:\n  - 1.6.x\n  - 1.7.x\n  - 1.8.x\n  - 1.9.x\n  - 1.10.x\n  - 1.11.x\n  - 1.12.x\n  - 1.13.x\n\ninstall: skip\nscript:\n  - go get golang.org/x/tools/cmd/cover\n  - go get github.com/smartystreets/goconvey\n  - mkdir -p $HOME/gopath/src/gopkg.in\n  - ln -s $HOME/gopath/src/github.com/go-ini/ini $HOME/gopath/src/gopkg.in/ini.v1\n  - cd $HOME/gopath/src/gopkg.in/ini.v1\n  - go test -v -cover -race\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/LICENSE",
    "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"[]\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n   Copyright 2014 Unknwon\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/Makefile",
    "content": ".PHONY: build test bench vet coverage\n\nbuild: vet bench\n\ntest:\n\tgo test -v -cover -race\n\nbench:\n\tgo test -v -cover -race -test.bench=. -test.benchmem\n\nvet:\n\tgo vet\n\ncoverage:\n\tgo test -coverprofile=c.out && go tool cover -html=c.out && rm c.out\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/README.md",
    "content": "# INI\n\n[![Build Status](https://img.shields.io/travis/go-ini/ini/master.svg?style=for-the-badge&logo=travis)](https://travis-ci.org/go-ini/ini) [![Sourcegraph](https://img.shields.io/badge/view%20on-Sourcegraph-brightgreen.svg?style=for-the-badge&logo=sourcegraph)](https://sourcegraph.com/github.com/go-ini/ini)\n\n![](https://avatars0.githubusercontent.com/u/10216035?v=3&s=200)\n\nPackage ini provides INI file read and write functionality in Go.\n\n## Features\n\n- Load from multiple data sources(`[]byte`, file and `io.ReadCloser`) with overwrites.\n- Read with recursion values.\n- Read with parent-child sections.\n- Read with auto-increment key names.\n- Read with multiple-line values.\n- Read with tons of helper methods.\n- Read and convert values to Go types.\n- Read and **WRITE** comments of sections and keys.\n- Manipulate sections, keys and comments with ease.\n- Keep sections and keys in order as you parse and save.\n\n## Installation\n\nThe minimum requirement of Go is **1.6**.\n\n```sh\n$ go get gopkg.in/ini.v1\n```\n\nPlease add `-u` flag to update in the future.\n\n## Getting Help\n\n- [Getting Started](https://ini.unknwon.io/docs/intro/getting_started)\n- [API Documentation](https://gowalker.org/gopkg.in/ini.v1)\n\n## License\n\nThis project is under Apache v2 License. See the [LICENSE](LICENSE) file for the full license text.\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/data_source.go",
    "content": "// Copyright 2019 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\npackage ini\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n)\n\nvar (\n\t_ dataSource = (*sourceFile)(nil)\n\t_ dataSource = (*sourceData)(nil)\n\t_ dataSource = (*sourceReadCloser)(nil)\n)\n\n// dataSource is an interface that returns object which can be read and closed.\ntype dataSource interface {\n\tReadCloser() (io.ReadCloser, error)\n}\n\n// sourceFile represents an object that contains content on the local file system.\ntype sourceFile struct {\n\tname string\n}\n\nfunc (s sourceFile) ReadCloser() (_ io.ReadCloser, err error) {\n\treturn os.Open(s.name)\n}\n\n// sourceData represents an object that contains content in memory.\ntype sourceData struct {\n\tdata []byte\n}\n\nfunc (s *sourceData) ReadCloser() (io.ReadCloser, error) {\n\treturn ioutil.NopCloser(bytes.NewReader(s.data)), nil\n}\n\n// sourceReadCloser represents an input stream with Close method.\ntype sourceReadCloser struct {\n\treader io.ReadCloser\n}\n\nfunc (s *sourceReadCloser) ReadCloser() (io.ReadCloser, error) {\n\treturn s.reader, nil\n}\n\nfunc parseDataSource(source interface{}) (dataSource, error) {\n\tswitch s := source.(type) {\n\tcase string:\n\t\treturn sourceFile{s}, nil\n\tcase []byte:\n\t\treturn &sourceData{s}, nil\n\tcase io.ReadCloser:\n\t\treturn &sourceReadCloser{s}, nil\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"error parsing data source: unknown type %q\", s)\n\t}\n}\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/deprecated.go",
    "content": "// Copyright 2019 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\npackage ini\n\nconst (\n\t// Deprecated: Use \"DefaultSection\" instead.\n\tDEFAULT_SECTION = DefaultSection\n)\n\nvar (\n\t// Deprecated: AllCapsUnderscore converts to format ALL_CAPS_UNDERSCORE.\n\tAllCapsUnderscore = SnackCase\n)\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/error.go",
    "content": "// Copyright 2016 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\npackage ini\n\nimport (\n\t\"fmt\"\n)\n\n// ErrDelimiterNotFound indicates the error type of no delimiter is found which there should be one.\ntype ErrDelimiterNotFound struct {\n\tLine string\n}\n\n// IsErrDelimiterNotFound returns true if the given error is an instance of ErrDelimiterNotFound.\nfunc IsErrDelimiterNotFound(err error) bool {\n\t_, ok := err.(ErrDelimiterNotFound)\n\treturn ok\n}\n\nfunc (err ErrDelimiterNotFound) Error() string {\n\treturn fmt.Sprintf(\"key-value delimiter not found: %s\", err.Line)\n}\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/file.go",
    "content": "// Copyright 2017 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\npackage ini\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"os\"\n\t\"strings\"\n\t\"sync\"\n)\n\n// File represents a combination of a or more INI file(s) in memory.\ntype File struct {\n\toptions     LoadOptions\n\tdataSources []dataSource\n\n\t// Should make things safe, but sometimes doesn't matter.\n\tBlockMode bool\n\tlock      sync.RWMutex\n\n\t// To keep data in order.\n\tsectionList []string\n\t// Actual data is stored here.\n\tsections map[string]*Section\n\n\tNameMapper\n\tValueMapper\n}\n\n// newFile initializes File object with given data sources.\nfunc newFile(dataSources []dataSource, opts LoadOptions) *File {\n\tif len(opts.KeyValueDelimiters) == 0 {\n\t\topts.KeyValueDelimiters = \"=:\"\n\t}\n\treturn &File{\n\t\tBlockMode:   true,\n\t\tdataSources: dataSources,\n\t\tsections:    make(map[string]*Section),\n\t\tsectionList: make([]string, 0, 10),\n\t\toptions:     opts,\n\t}\n}\n\n// Empty returns an empty file object.\nfunc Empty() *File {\n\t// Ignore error here, we sure our data is good.\n\tf, _ := Load([]byte(\"\"))\n\treturn f\n}\n\n// NewSection creates a new section.\nfunc (f *File) NewSection(name string) (*Section, error) {\n\tif len(name) == 0 {\n\t\treturn nil, errors.New(\"error creating new section: empty section name\")\n\t} else if f.options.Insensitive && name != DefaultSection {\n\t\tname = strings.ToLower(name)\n\t}\n\n\tif f.BlockMode {\n\t\tf.lock.Lock()\n\t\tdefer f.lock.Unlock()\n\t}\n\n\tif inSlice(name, f.sectionList) {\n\t\treturn f.sections[name], nil\n\t}\n\n\tf.sectionList = append(f.sectionList, name)\n\tf.sections[name] = newSection(f, name)\n\treturn f.sections[name], nil\n}\n\n// NewRawSection creates a new section with an unparseable body.\nfunc (f *File) NewRawSection(name, body string) (*Section, error) {\n\tsection, err := f.NewSection(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tsection.isRawSection = true\n\tsection.rawBody = body\n\treturn section, nil\n}\n\n// NewSections creates a list of sections.\nfunc (f *File) NewSections(names ...string) (err error) {\n\tfor _, name := range names {\n\t\tif _, err = f.NewSection(name); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// GetSection returns section by given name.\nfunc (f *File) GetSection(name string) (*Section, error) {\n\tif len(name) == 0 {\n\t\tname = DefaultSection\n\t}\n\tif f.options.Insensitive {\n\t\tname = strings.ToLower(name)\n\t}\n\n\tif f.BlockMode {\n\t\tf.lock.RLock()\n\t\tdefer f.lock.RUnlock()\n\t}\n\n\tsec := f.sections[name]\n\tif sec == nil {\n\t\treturn nil, fmt.Errorf(\"section '%s' does not exist\", name)\n\t}\n\treturn sec, nil\n}\n\n// Section assumes named section exists and returns a zero-value when not.\nfunc (f *File) Section(name string) *Section {\n\tsec, err := f.GetSection(name)\n\tif err != nil {\n\t\t// Note: It's OK here because the only possible error is empty section name,\n\t\t// but if it's empty, this piece of code won't be executed.\n\t\tsec, _ = f.NewSection(name)\n\t\treturn sec\n\t}\n\treturn sec\n}\n\n// Sections returns a list of Section stored in the current instance.\nfunc (f *File) Sections() []*Section {\n\tif f.BlockMode {\n\t\tf.lock.RLock()\n\t\tdefer f.lock.RUnlock()\n\t}\n\n\tsections := make([]*Section, len(f.sectionList))\n\tfor i, name := range f.sectionList {\n\t\tsections[i] = f.sections[name]\n\t}\n\treturn sections\n}\n\n// ChildSections returns a list of child sections of given section name.\nfunc (f *File) ChildSections(name string) []*Section {\n\treturn f.Section(name).ChildSections()\n}\n\n// SectionStrings returns list of section names.\nfunc (f *File) SectionStrings() []string {\n\tlist := make([]string, len(f.sectionList))\n\tcopy(list, f.sectionList)\n\treturn list\n}\n\n// DeleteSection deletes a section.\nfunc (f *File) DeleteSection(name string) {\n\tif f.BlockMode {\n\t\tf.lock.Lock()\n\t\tdefer f.lock.Unlock()\n\t}\n\n\tif len(name) == 0 {\n\t\tname = DefaultSection\n\t}\n\n\tfor i, s := range f.sectionList {\n\t\tif s == name {\n\t\t\tf.sectionList = append(f.sectionList[:i], f.sectionList[i+1:]...)\n\t\t\tdelete(f.sections, name)\n\t\t\treturn\n\t\t}\n\t}\n}\n\nfunc (f *File) reload(s dataSource) error {\n\tr, err := s.ReadCloser()\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer r.Close()\n\n\treturn f.parse(r)\n}\n\n// Reload reloads and parses all data sources.\nfunc (f *File) Reload() (err error) {\n\tfor _, s := range f.dataSources {\n\t\tif err = f.reload(s); err != nil {\n\t\t\t// In loose mode, we create an empty default section for nonexistent files.\n\t\t\tif os.IsNotExist(err) && f.options.Loose {\n\t\t\t\tf.parse(bytes.NewBuffer(nil))\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// Append appends one or more data sources and reloads automatically.\nfunc (f *File) Append(source interface{}, others ...interface{}) error {\n\tds, err := parseDataSource(source)\n\tif err != nil {\n\t\treturn err\n\t}\n\tf.dataSources = append(f.dataSources, ds)\n\tfor _, s := range others {\n\t\tds, err = parseDataSource(s)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tf.dataSources = append(f.dataSources, ds)\n\t}\n\treturn f.Reload()\n}\n\nfunc (f *File) writeToBuffer(indent string) (*bytes.Buffer, error) {\n\tequalSign := DefaultFormatLeft + \"=\" + DefaultFormatRight\n\n\tif PrettyFormat || PrettyEqual {\n\t\tequalSign = \" = \"\n\t}\n\n\t// Use buffer to make sure target is safe until finish encoding.\n\tbuf := bytes.NewBuffer(nil)\n\tfor i, sname := range f.sectionList {\n\t\tsec := f.Section(sname)\n\t\tif len(sec.Comment) > 0 {\n\t\t\t// Support multiline comments\n\t\t\tlines := strings.Split(sec.Comment, LineBreak)\n\t\t\tfor i := range lines {\n\t\t\t\tif lines[i][0] != '#' && lines[i][0] != ';' {\n\t\t\t\t\tlines[i] = \"; \" + lines[i]\n\t\t\t\t} else {\n\t\t\t\t\tlines[i] = lines[i][:1] + \" \" + strings.TrimSpace(lines[i][1:])\n\t\t\t\t}\n\n\t\t\t\tif _, err := buf.WriteString(lines[i] + LineBreak); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif i > 0 || DefaultHeader {\n\t\t\tif _, err := buf.WriteString(\"[\" + sname + \"]\" + LineBreak); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t} else {\n\t\t\t// Write nothing if default section is empty\n\t\t\tif len(sec.keyList) == 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\tif sec.isRawSection {\n\t\t\tif _, err := buf.WriteString(sec.rawBody); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\n\t\t\tif PrettySection {\n\t\t\t\t// Put a line between sections\n\t\t\t\tif _, err := buf.WriteString(LineBreak); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\t// Count and generate alignment length and buffer spaces using the\n\t\t// longest key. Keys may be modifed if they contain certain characters so\n\t\t// we need to take that into account in our calculation.\n\t\talignLength := 0\n\t\tif PrettyFormat {\n\t\t\tfor _, kname := range sec.keyList {\n\t\t\t\tkeyLength := len(kname)\n\t\t\t\t// First case will surround key by ` and second by \"\"\"\n\t\t\t\tif strings.Contains(kname, \"\\\"\") || strings.ContainsAny(kname, f.options.KeyValueDelimiters) {\n\t\t\t\t\tkeyLength += 2\n\t\t\t\t} else if strings.Contains(kname, \"`\") {\n\t\t\t\t\tkeyLength += 6\n\t\t\t\t}\n\n\t\t\t\tif keyLength > alignLength {\n\t\t\t\t\talignLength = keyLength\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\talignSpaces := bytes.Repeat([]byte(\" \"), alignLength)\n\n\tKeyList:\n\t\tfor _, kname := range sec.keyList {\n\t\t\tkey := sec.Key(kname)\n\t\t\tif len(key.Comment) > 0 {\n\t\t\t\tif len(indent) > 0 && sname != DefaultSection {\n\t\t\t\t\tbuf.WriteString(indent)\n\t\t\t\t}\n\n\t\t\t\t// Support multiline comments\n\t\t\t\tlines := strings.Split(key.Comment, LineBreak)\n\t\t\t\tfor i := range lines {\n\t\t\t\t\tif lines[i][0] != '#' && lines[i][0] != ';' {\n\t\t\t\t\t\tlines[i] = \"; \" + strings.TrimSpace(lines[i])\n\t\t\t\t\t} else {\n\t\t\t\t\t\tlines[i] = lines[i][:1] + \" \" + strings.TrimSpace(lines[i][1:])\n\t\t\t\t\t}\n\n\t\t\t\t\tif _, err := buf.WriteString(lines[i] + LineBreak); err != nil {\n\t\t\t\t\t\treturn nil, err\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif len(indent) > 0 && sname != DefaultSection {\n\t\t\t\tbuf.WriteString(indent)\n\t\t\t}\n\n\t\t\tswitch {\n\t\t\tcase key.isAutoIncrement:\n\t\t\t\tkname = \"-\"\n\t\t\tcase strings.Contains(kname, \"\\\"\") || strings.ContainsAny(kname, f.options.KeyValueDelimiters):\n\t\t\t\tkname = \"`\" + kname + \"`\"\n\t\t\tcase strings.Contains(kname, \"`\"):\n\t\t\t\tkname = `\"\"\"` + kname + `\"\"\"`\n\t\t\t}\n\n\t\t\tfor _, val := range key.ValueWithShadows() {\n\t\t\t\tif _, err := buf.WriteString(kname); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\n\t\t\t\tif key.isBooleanType {\n\t\t\t\t\tif kname != sec.keyList[len(sec.keyList)-1] {\n\t\t\t\t\t\tbuf.WriteString(LineBreak)\n\t\t\t\t\t}\n\t\t\t\t\tcontinue KeyList\n\t\t\t\t}\n\n\t\t\t\t// Write out alignment spaces before \"=\" sign\n\t\t\t\tif PrettyFormat {\n\t\t\t\t\tbuf.Write(alignSpaces[:alignLength-len(kname)])\n\t\t\t\t}\n\n\t\t\t\t// In case key value contains \"\\n\", \"`\", \"\\\"\", \"#\" or \";\"\n\t\t\t\tif strings.ContainsAny(val, \"\\n`\") {\n\t\t\t\t\tval = `\"\"\"` + val + `\"\"\"`\n\t\t\t\t} else if !f.options.IgnoreInlineComment && strings.ContainsAny(val, \"#;\") {\n\t\t\t\t\tval = \"`\" + val + \"`\"\n\t\t\t\t}\n\t\t\t\tif _, err := buf.WriteString(equalSign + val + LineBreak); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor _, val := range key.nestedValues {\n\t\t\t\tif _, err := buf.WriteString(indent + \"  \" + val + LineBreak); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif PrettySection {\n\t\t\t// Put a line between sections\n\t\t\tif _, err := buf.WriteString(LineBreak); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\t}\n\n\treturn buf, nil\n}\n\n// WriteToIndent writes content into io.Writer with given indention.\n// If PrettyFormat has been set to be true,\n// it will align \"=\" sign with spaces under each section.\nfunc (f *File) WriteToIndent(w io.Writer, indent string) (int64, error) {\n\tbuf, err := f.writeToBuffer(indent)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn buf.WriteTo(w)\n}\n\n// WriteTo writes file content into io.Writer.\nfunc (f *File) WriteTo(w io.Writer) (int64, error) {\n\treturn f.WriteToIndent(w, \"\")\n}\n\n// SaveToIndent writes content to file system with given value indention.\nfunc (f *File) SaveToIndent(filename, indent string) error {\n\t// Note: Because we are truncating with os.Create,\n\t// \tso it's safer to save to a temporary file location and rename afte done.\n\tbuf, err := f.writeToBuffer(indent)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn ioutil.WriteFile(filename, buf.Bytes(), 0666)\n}\n\n// SaveTo writes content to file system.\nfunc (f *File) SaveTo(filename string) error {\n\treturn f.SaveToIndent(filename, \"\")\n}\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/helper.go",
    "content": "// Copyright 2019 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\npackage ini\n\nfunc inSlice(str string, s []string) bool {\n\tfor _, v := range s {\n\t\tif str == v {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/ini.go",
    "content": "// +build go1.6\n\n// Copyright 2014 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\n// Package ini provides INI file read and write functionality in Go.\npackage ini\n\nimport (\n\t\"regexp\"\n\t\"runtime\"\n)\n\nconst (\n\t// DefaultSection is the name of default section. You can use this constant or the string literal.\n\t// In most of cases, an empty string is all you need to access the section.\n\tDefaultSection = \"DEFAULT\"\n\n\t// Maximum allowed depth when recursively substituing variable names.\n\tdepthValues = 99\n\tversion     = \"1.51.0\"\n)\n\n// Version returns current package version literal.\nfunc Version() string {\n\treturn version\n}\n\nvar (\n\t// LineBreak is the delimiter to determine or compose a new line.\n\t// This variable will be changed to \"\\r\\n\" automatically on Windows at package init time.\n\tLineBreak = \"\\n\"\n\n\t// Variable regexp pattern: %(variable)s\n\tvarPattern = regexp.MustCompile(`%\\(([^)]+)\\)s`)\n\n\t// DefaultHeader explicitly writes default section header.\n\tDefaultHeader = false\n\n\t// PrettySection indicates whether to put a line between sections.\n\tPrettySection = true\n\t// PrettyFormat indicates whether to align \"=\" sign with spaces to produce pretty output\n\t// or reduce all possible spaces for compact format.\n\tPrettyFormat = true\n\t// PrettyEqual places spaces around \"=\" sign even when PrettyFormat is false.\n\tPrettyEqual = false\n\t// DefaultFormatLeft places custom spaces on the left when PrettyFormat and PrettyEqual are both disabled.\n\tDefaultFormatLeft = \"\"\n\t// DefaultFormatRight places custom spaces on the right when PrettyFormat and PrettyEqual are both disabled.\n\tDefaultFormatRight = \"\"\n)\n\nfunc init() {\n\tif runtime.GOOS == \"windows\" {\n\t\tLineBreak = \"\\r\\n\"\n\t}\n}\n\n// LoadOptions contains all customized options used for load data source(s).\ntype LoadOptions struct {\n\t// Loose indicates whether the parser should ignore nonexistent files or return error.\n\tLoose bool\n\t// Insensitive indicates whether the parser forces all section and key names to lowercase.\n\tInsensitive bool\n\t// IgnoreContinuation indicates whether to ignore continuation lines while parsing.\n\tIgnoreContinuation bool\n\t// IgnoreInlineComment indicates whether to ignore comments at the end of value and treat it as part of value.\n\tIgnoreInlineComment bool\n\t// SkipUnrecognizableLines indicates whether to skip unrecognizable lines that do not conform to key/value pairs.\n\tSkipUnrecognizableLines bool\n\t// AllowBooleanKeys indicates whether to allow boolean type keys or treat as value is missing.\n\t// This type of keys are mostly used in my.cnf.\n\tAllowBooleanKeys bool\n\t// AllowShadows indicates whether to keep track of keys with same name under same section.\n\tAllowShadows bool\n\t// AllowNestedValues indicates whether to allow AWS-like nested values.\n\t// Docs: http://docs.aws.amazon.com/cli/latest/topic/config-vars.html#nested-values\n\tAllowNestedValues bool\n\t// AllowPythonMultilineValues indicates whether to allow Python-like multi-line values.\n\t// Docs: https://docs.python.org/3/library/configparser.html#supported-ini-file-structure\n\t// Relevant quote:  Values can also span multiple lines, as long as they are indented deeper\n\t// than the first line of the value.\n\tAllowPythonMultilineValues bool\n\t// SpaceBeforeInlineComment indicates whether to allow comment symbols (\\# and \\;) inside value.\n\t// Docs: https://docs.python.org/2/library/configparser.html\n\t// Quote: Comments may appear on their own in an otherwise empty line, or may be entered in lines holding values or section names.\n\t// In the latter case, they need to be preceded by a whitespace character to be recognized as a comment.\n\tSpaceBeforeInlineComment bool\n\t// UnescapeValueDoubleQuotes indicates whether to unescape double quotes inside value to regular format\n\t// when value is surrounded by double quotes, e.g. key=\"a \\\"value\\\"\" => key=a \"value\"\n\tUnescapeValueDoubleQuotes bool\n\t// UnescapeValueCommentSymbols indicates to unescape comment symbols (\\# and \\;) inside value to regular format\n\t// when value is NOT surrounded by any quotes.\n\t// Note: UNSTABLE, behavior might change to only unescape inside double quotes but may noy necessary at all.\n\tUnescapeValueCommentSymbols bool\n\t// UnparseableSections stores a list of blocks that are allowed with raw content which do not otherwise\n\t// conform to key/value pairs. Specify the names of those blocks here.\n\tUnparseableSections []string\n\t// KeyValueDelimiters is the sequence of delimiters that are used to separate key and value. By default, it is \"=:\".\n\tKeyValueDelimiters string\n\t// PreserveSurroundedQuote indicates whether to preserve surrounded quote (single and double quotes).\n\tPreserveSurroundedQuote bool\n\t// DebugFunc is called to collect debug information (currently only useful to debug parsing Python-style multiline values).\n\tDebugFunc DebugFunc\n\t// ReaderBufferSize is the buffer size of the reader in bytes.\n\tReaderBufferSize int\n}\n\n// DebugFunc is the type of function called to log parse events.\ntype DebugFunc func(message string)\n\n// LoadSources allows caller to apply customized options for loading from data source(s).\nfunc LoadSources(opts LoadOptions, source interface{}, others ...interface{}) (_ *File, err error) {\n\tsources := make([]dataSource, len(others)+1)\n\tsources[0], err = parseDataSource(source)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfor i := range others {\n\t\tsources[i+1], err = parseDataSource(others[i])\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tf := newFile(sources, opts)\n\tif err = f.Reload(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn f, nil\n}\n\n// Load loads and parses from INI data sources.\n// Arguments can be mixed of file name with string type, or raw data in []byte.\n// It will return error if list contains nonexistent files.\nfunc Load(source interface{}, others ...interface{}) (*File, error) {\n\treturn LoadSources(LoadOptions{}, source, others...)\n}\n\n// LooseLoad has exactly same functionality as Load function\n// except it ignores nonexistent files instead of returning error.\nfunc LooseLoad(source interface{}, others ...interface{}) (*File, error) {\n\treturn LoadSources(LoadOptions{Loose: true}, source, others...)\n}\n\n// InsensitiveLoad has exactly same functionality as Load function\n// except it forces all section and key names to be lowercased.\nfunc InsensitiveLoad(source interface{}, others ...interface{}) (*File, error) {\n\treturn LoadSources(LoadOptions{Insensitive: true}, source, others...)\n}\n\n// ShadowLoad has exactly same functionality as Load function\n// except it allows have shadow keys.\nfunc ShadowLoad(source interface{}, others ...interface{}) (*File, error) {\n\treturn LoadSources(LoadOptions{AllowShadows: true}, source, others...)\n}\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/key.go",
    "content": "// Copyright 2014 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\npackage ini\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n)\n\n// Key represents a key under a section.\ntype Key struct {\n\ts               *Section\n\tComment         string\n\tname            string\n\tvalue           string\n\tisAutoIncrement bool\n\tisBooleanType   bool\n\n\tisShadow bool\n\tshadows  []*Key\n\n\tnestedValues []string\n}\n\n// newKey simply return a key object with given values.\nfunc newKey(s *Section, name, val string) *Key {\n\treturn &Key{\n\t\ts:     s,\n\t\tname:  name,\n\t\tvalue: val,\n\t}\n}\n\nfunc (k *Key) addShadow(val string) error {\n\tif k.isShadow {\n\t\treturn errors.New(\"cannot add shadow to another shadow key\")\n\t} else if k.isAutoIncrement || k.isBooleanType {\n\t\treturn errors.New(\"cannot add shadow to auto-increment or boolean key\")\n\t}\n\n\t// Deduplicate shadows based on their values.\n\tif k.value == val {\n\t\treturn nil\n\t}\n\tfor i := range k.shadows {\n\t\tif k.shadows[i].value == val {\n\t\t\treturn nil\n\t\t}\n\t}\n\n\tshadow := newKey(k.s, k.name, val)\n\tshadow.isShadow = true\n\tk.shadows = append(k.shadows, shadow)\n\treturn nil\n}\n\n// AddShadow adds a new shadow key to itself.\nfunc (k *Key) AddShadow(val string) error {\n\tif !k.s.f.options.AllowShadows {\n\t\treturn errors.New(\"shadow key is not allowed\")\n\t}\n\treturn k.addShadow(val)\n}\n\nfunc (k *Key) addNestedValue(val string) error {\n\tif k.isAutoIncrement || k.isBooleanType {\n\t\treturn errors.New(\"cannot add nested value to auto-increment or boolean key\")\n\t}\n\n\tk.nestedValues = append(k.nestedValues, val)\n\treturn nil\n}\n\n// AddNestedValue adds a nested value to the key.\nfunc (k *Key) AddNestedValue(val string) error {\n\tif !k.s.f.options.AllowNestedValues {\n\t\treturn errors.New(\"nested value is not allowed\")\n\t}\n\treturn k.addNestedValue(val)\n}\n\n// ValueMapper represents a mapping function for values, e.g. os.ExpandEnv\ntype ValueMapper func(string) string\n\n// Name returns name of key.\nfunc (k *Key) Name() string {\n\treturn k.name\n}\n\n// Value returns raw value of key for performance purpose.\nfunc (k *Key) Value() string {\n\treturn k.value\n}\n\n// ValueWithShadows returns raw values of key and its shadows if any.\nfunc (k *Key) ValueWithShadows() []string {\n\tif len(k.shadows) == 0 {\n\t\treturn []string{k.value}\n\t}\n\tvals := make([]string, len(k.shadows)+1)\n\tvals[0] = k.value\n\tfor i := range k.shadows {\n\t\tvals[i+1] = k.shadows[i].value\n\t}\n\treturn vals\n}\n\n// NestedValues returns nested values stored in the key.\n// It is possible returned value is nil if no nested values stored in the key.\nfunc (k *Key) NestedValues() []string {\n\treturn k.nestedValues\n}\n\n// transformValue takes a raw value and transforms to its final string.\nfunc (k *Key) transformValue(val string) string {\n\tif k.s.f.ValueMapper != nil {\n\t\tval = k.s.f.ValueMapper(val)\n\t}\n\n\t// Fail-fast if no indicate char found for recursive value\n\tif !strings.Contains(val, \"%\") {\n\t\treturn val\n\t}\n\tfor i := 0; i < depthValues; i++ {\n\t\tvr := varPattern.FindString(val)\n\t\tif len(vr) == 0 {\n\t\t\tbreak\n\t\t}\n\n\t\t// Take off leading '%(' and trailing ')s'.\n\t\tnoption := vr[2 : len(vr)-2]\n\n\t\t// Search in the same section.\n\t\t// If not found or found the key itself, then search again in default section.\n\t\tnk, err := k.s.GetKey(noption)\n\t\tif err != nil || k == nk {\n\t\t\tnk, _ = k.s.f.Section(\"\").GetKey(noption)\n\t\t\tif nk == nil {\n\t\t\t\t// Stop when no results found in the default section,\n\t\t\t\t// and returns the value as-is.\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\t// Substitute by new value and take off leading '%(' and trailing ')s'.\n\t\tval = strings.Replace(val, vr, nk.value, -1)\n\t}\n\treturn val\n}\n\n// String returns string representation of value.\nfunc (k *Key) String() string {\n\treturn k.transformValue(k.value)\n}\n\n// Validate accepts a validate function which can\n// return modifed result as key value.\nfunc (k *Key) Validate(fn func(string) string) string {\n\treturn fn(k.String())\n}\n\n// parseBool returns the boolean value represented by the string.\n//\n// It accepts 1, t, T, TRUE, true, True, YES, yes, Yes, y, ON, on, On,\n// 0, f, F, FALSE, false, False, NO, no, No, n, OFF, off, Off.\n// Any other value returns an error.\nfunc parseBool(str string) (value bool, err error) {\n\tswitch str {\n\tcase \"1\", \"t\", \"T\", \"true\", \"TRUE\", \"True\", \"YES\", \"yes\", \"Yes\", \"y\", \"ON\", \"on\", \"On\":\n\t\treturn true, nil\n\tcase \"0\", \"f\", \"F\", \"false\", \"FALSE\", \"False\", \"NO\", \"no\", \"No\", \"n\", \"OFF\", \"off\", \"Off\":\n\t\treturn false, nil\n\t}\n\treturn false, fmt.Errorf(\"parsing \\\"%s\\\": invalid syntax\", str)\n}\n\n// Bool returns bool type value.\nfunc (k *Key) Bool() (bool, error) {\n\treturn parseBool(k.String())\n}\n\n// Float64 returns float64 type value.\nfunc (k *Key) Float64() (float64, error) {\n\treturn strconv.ParseFloat(k.String(), 64)\n}\n\n// Int returns int type value.\nfunc (k *Key) Int() (int, error) {\n\tv, err := strconv.ParseInt(k.String(), 0, 64)\n\treturn int(v), err\n}\n\n// Int64 returns int64 type value.\nfunc (k *Key) Int64() (int64, error) {\n\treturn strconv.ParseInt(k.String(), 0, 64)\n}\n\n// Uint returns uint type valued.\nfunc (k *Key) Uint() (uint, error) {\n\tu, e := strconv.ParseUint(k.String(), 0, 64)\n\treturn uint(u), e\n}\n\n// Uint64 returns uint64 type value.\nfunc (k *Key) Uint64() (uint64, error) {\n\treturn strconv.ParseUint(k.String(), 0, 64)\n}\n\n// Duration returns time.Duration type value.\nfunc (k *Key) Duration() (time.Duration, error) {\n\treturn time.ParseDuration(k.String())\n}\n\n// TimeFormat parses with given format and returns time.Time type value.\nfunc (k *Key) TimeFormat(format string) (time.Time, error) {\n\treturn time.Parse(format, k.String())\n}\n\n// Time parses with RFC3339 format and returns time.Time type value.\nfunc (k *Key) Time() (time.Time, error) {\n\treturn k.TimeFormat(time.RFC3339)\n}\n\n// MustString returns default value if key value is empty.\nfunc (k *Key) MustString(defaultVal string) string {\n\tval := k.String()\n\tif len(val) == 0 {\n\t\tk.value = defaultVal\n\t\treturn defaultVal\n\t}\n\treturn val\n}\n\n// MustBool always returns value without error,\n// it returns false if error occurs.\nfunc (k *Key) MustBool(defaultVal ...bool) bool {\n\tval, err := k.Bool()\n\tif len(defaultVal) > 0 && err != nil {\n\t\tk.value = strconv.FormatBool(defaultVal[0])\n\t\treturn defaultVal[0]\n\t}\n\treturn val\n}\n\n// MustFloat64 always returns value without error,\n// it returns 0.0 if error occurs.\nfunc (k *Key) MustFloat64(defaultVal ...float64) float64 {\n\tval, err := k.Float64()\n\tif len(defaultVal) > 0 && err != nil {\n\t\tk.value = strconv.FormatFloat(defaultVal[0], 'f', -1, 64)\n\t\treturn defaultVal[0]\n\t}\n\treturn val\n}\n\n// MustInt always returns value without error,\n// it returns 0 if error occurs.\nfunc (k *Key) MustInt(defaultVal ...int) int {\n\tval, err := k.Int()\n\tif len(defaultVal) > 0 && err != nil {\n\t\tk.value = strconv.FormatInt(int64(defaultVal[0]), 10)\n\t\treturn defaultVal[0]\n\t}\n\treturn val\n}\n\n// MustInt64 always returns value without error,\n// it returns 0 if error occurs.\nfunc (k *Key) MustInt64(defaultVal ...int64) int64 {\n\tval, err := k.Int64()\n\tif len(defaultVal) > 0 && err != nil {\n\t\tk.value = strconv.FormatInt(defaultVal[0], 10)\n\t\treturn defaultVal[0]\n\t}\n\treturn val\n}\n\n// MustUint always returns value without error,\n// it returns 0 if error occurs.\nfunc (k *Key) MustUint(defaultVal ...uint) uint {\n\tval, err := k.Uint()\n\tif len(defaultVal) > 0 && err != nil {\n\t\tk.value = strconv.FormatUint(uint64(defaultVal[0]), 10)\n\t\treturn defaultVal[0]\n\t}\n\treturn val\n}\n\n// MustUint64 always returns value without error,\n// it returns 0 if error occurs.\nfunc (k *Key) MustUint64(defaultVal ...uint64) uint64 {\n\tval, err := k.Uint64()\n\tif len(defaultVal) > 0 && err != nil {\n\t\tk.value = strconv.FormatUint(defaultVal[0], 10)\n\t\treturn defaultVal[0]\n\t}\n\treturn val\n}\n\n// MustDuration always returns value without error,\n// it returns zero value if error occurs.\nfunc (k *Key) MustDuration(defaultVal ...time.Duration) time.Duration {\n\tval, err := k.Duration()\n\tif len(defaultVal) > 0 && err != nil {\n\t\tk.value = defaultVal[0].String()\n\t\treturn defaultVal[0]\n\t}\n\treturn val\n}\n\n// MustTimeFormat always parses with given format and returns value without error,\n// it returns zero value if error occurs.\nfunc (k *Key) MustTimeFormat(format string, defaultVal ...time.Time) time.Time {\n\tval, err := k.TimeFormat(format)\n\tif len(defaultVal) > 0 && err != nil {\n\t\tk.value = defaultVal[0].Format(format)\n\t\treturn defaultVal[0]\n\t}\n\treturn val\n}\n\n// MustTime always parses with RFC3339 format and returns value without error,\n// it returns zero value if error occurs.\nfunc (k *Key) MustTime(defaultVal ...time.Time) time.Time {\n\treturn k.MustTimeFormat(time.RFC3339, defaultVal...)\n}\n\n// In always returns value without error,\n// it returns default value if error occurs or doesn't fit into candidates.\nfunc (k *Key) In(defaultVal string, candidates []string) string {\n\tval := k.String()\n\tfor _, cand := range candidates {\n\t\tif val == cand {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn defaultVal\n}\n\n// InFloat64 always returns value without error,\n// it returns default value if error occurs or doesn't fit into candidates.\nfunc (k *Key) InFloat64(defaultVal float64, candidates []float64) float64 {\n\tval := k.MustFloat64()\n\tfor _, cand := range candidates {\n\t\tif val == cand {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn defaultVal\n}\n\n// InInt always returns value without error,\n// it returns default value if error occurs or doesn't fit into candidates.\nfunc (k *Key) InInt(defaultVal int, candidates []int) int {\n\tval := k.MustInt()\n\tfor _, cand := range candidates {\n\t\tif val == cand {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn defaultVal\n}\n\n// InInt64 always returns value without error,\n// it returns default value if error occurs or doesn't fit into candidates.\nfunc (k *Key) InInt64(defaultVal int64, candidates []int64) int64 {\n\tval := k.MustInt64()\n\tfor _, cand := range candidates {\n\t\tif val == cand {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn defaultVal\n}\n\n// InUint always returns value without error,\n// it returns default value if error occurs or doesn't fit into candidates.\nfunc (k *Key) InUint(defaultVal uint, candidates []uint) uint {\n\tval := k.MustUint()\n\tfor _, cand := range candidates {\n\t\tif val == cand {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn defaultVal\n}\n\n// InUint64 always returns value without error,\n// it returns default value if error occurs or doesn't fit into candidates.\nfunc (k *Key) InUint64(defaultVal uint64, candidates []uint64) uint64 {\n\tval := k.MustUint64()\n\tfor _, cand := range candidates {\n\t\tif val == cand {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn defaultVal\n}\n\n// InTimeFormat always parses with given format and returns value without error,\n// it returns default value if error occurs or doesn't fit into candidates.\nfunc (k *Key) InTimeFormat(format string, defaultVal time.Time, candidates []time.Time) time.Time {\n\tval := k.MustTimeFormat(format)\n\tfor _, cand := range candidates {\n\t\tif val == cand {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn defaultVal\n}\n\n// InTime always parses with RFC3339 format and returns value without error,\n// it returns default value if error occurs or doesn't fit into candidates.\nfunc (k *Key) InTime(defaultVal time.Time, candidates []time.Time) time.Time {\n\treturn k.InTimeFormat(time.RFC3339, defaultVal, candidates)\n}\n\n// RangeFloat64 checks if value is in given range inclusively,\n// and returns default value if it's not.\nfunc (k *Key) RangeFloat64(defaultVal, min, max float64) float64 {\n\tval := k.MustFloat64()\n\tif val < min || val > max {\n\t\treturn defaultVal\n\t}\n\treturn val\n}\n\n// RangeInt checks if value is in given range inclusively,\n// and returns default value if it's not.\nfunc (k *Key) RangeInt(defaultVal, min, max int) int {\n\tval := k.MustInt()\n\tif val < min || val > max {\n\t\treturn defaultVal\n\t}\n\treturn val\n}\n\n// RangeInt64 checks if value is in given range inclusively,\n// and returns default value if it's not.\nfunc (k *Key) RangeInt64(defaultVal, min, max int64) int64 {\n\tval := k.MustInt64()\n\tif val < min || val > max {\n\t\treturn defaultVal\n\t}\n\treturn val\n}\n\n// RangeTimeFormat checks if value with given format is in given range inclusively,\n// and returns default value if it's not.\nfunc (k *Key) RangeTimeFormat(format string, defaultVal, min, max time.Time) time.Time {\n\tval := k.MustTimeFormat(format)\n\tif val.Unix() < min.Unix() || val.Unix() > max.Unix() {\n\t\treturn defaultVal\n\t}\n\treturn val\n}\n\n// RangeTime checks if value with RFC3339 format is in given range inclusively,\n// and returns default value if it's not.\nfunc (k *Key) RangeTime(defaultVal, min, max time.Time) time.Time {\n\treturn k.RangeTimeFormat(time.RFC3339, defaultVal, min, max)\n}\n\n// Strings returns list of string divided by given delimiter.\nfunc (k *Key) Strings(delim string) []string {\n\tstr := k.String()\n\tif len(str) == 0 {\n\t\treturn []string{}\n\t}\n\n\trunes := []rune(str)\n\tvals := make([]string, 0, 2)\n\tvar buf bytes.Buffer\n\tescape := false\n\tidx := 0\n\tfor {\n\t\tif escape {\n\t\t\tescape = false\n\t\t\tif runes[idx] != '\\\\' && !strings.HasPrefix(string(runes[idx:]), delim) {\n\t\t\t\tbuf.WriteRune('\\\\')\n\t\t\t}\n\t\t\tbuf.WriteRune(runes[idx])\n\t\t} else {\n\t\t\tif runes[idx] == '\\\\' {\n\t\t\t\tescape = true\n\t\t\t} else if strings.HasPrefix(string(runes[idx:]), delim) {\n\t\t\t\tidx += len(delim) - 1\n\t\t\t\tvals = append(vals, strings.TrimSpace(buf.String()))\n\t\t\t\tbuf.Reset()\n\t\t\t} else {\n\t\t\t\tbuf.WriteRune(runes[idx])\n\t\t\t}\n\t\t}\n\t\tidx++\n\t\tif idx == len(runes) {\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif buf.Len() > 0 {\n\t\tvals = append(vals, strings.TrimSpace(buf.String()))\n\t}\n\n\treturn vals\n}\n\n// StringsWithShadows returns list of string divided by given delimiter.\n// Shadows will also be appended if any.\nfunc (k *Key) StringsWithShadows(delim string) []string {\n\tvals := k.ValueWithShadows()\n\tresults := make([]string, 0, len(vals)*2)\n\tfor i := range vals {\n\t\tif len(vals) == 0 {\n\t\t\tcontinue\n\t\t}\n\n\t\tresults = append(results, strings.Split(vals[i], delim)...)\n\t}\n\n\tfor i := range results {\n\t\tresults[i] = k.transformValue(strings.TrimSpace(results[i]))\n\t}\n\treturn results\n}\n\n// Float64s returns list of float64 divided by given delimiter. Any invalid input will be treated as zero value.\nfunc (k *Key) Float64s(delim string) []float64 {\n\tvals, _ := k.parseFloat64s(k.Strings(delim), true, false)\n\treturn vals\n}\n\n// Ints returns list of int divided by given delimiter. Any invalid input will be treated as zero value.\nfunc (k *Key) Ints(delim string) []int {\n\tvals, _ := k.parseInts(k.Strings(delim), true, false)\n\treturn vals\n}\n\n// Int64s returns list of int64 divided by given delimiter. Any invalid input will be treated as zero value.\nfunc (k *Key) Int64s(delim string) []int64 {\n\tvals, _ := k.parseInt64s(k.Strings(delim), true, false)\n\treturn vals\n}\n\n// Uints returns list of uint divided by given delimiter. Any invalid input will be treated as zero value.\nfunc (k *Key) Uints(delim string) []uint {\n\tvals, _ := k.parseUints(k.Strings(delim), true, false)\n\treturn vals\n}\n\n// Uint64s returns list of uint64 divided by given delimiter. Any invalid input will be treated as zero value.\nfunc (k *Key) Uint64s(delim string) []uint64 {\n\tvals, _ := k.parseUint64s(k.Strings(delim), true, false)\n\treturn vals\n}\n\n// Bools returns list of bool divided by given delimiter. Any invalid input will be treated as zero value.\nfunc (k *Key) Bools(delim string) []bool {\n\tvals, _ := k.parseBools(k.Strings(delim), true, false)\n\treturn vals\n}\n\n// TimesFormat parses with given format and returns list of time.Time divided by given delimiter.\n// Any invalid input will be treated as zero value (0001-01-01 00:00:00 +0000 UTC).\nfunc (k *Key) TimesFormat(format, delim string) []time.Time {\n\tvals, _ := k.parseTimesFormat(format, k.Strings(delim), true, false)\n\treturn vals\n}\n\n// Times parses with RFC3339 format and returns list of time.Time divided by given delimiter.\n// Any invalid input will be treated as zero value (0001-01-01 00:00:00 +0000 UTC).\nfunc (k *Key) Times(delim string) []time.Time {\n\treturn k.TimesFormat(time.RFC3339, delim)\n}\n\n// ValidFloat64s returns list of float64 divided by given delimiter. If some value is not float, then\n// it will not be included to result list.\nfunc (k *Key) ValidFloat64s(delim string) []float64 {\n\tvals, _ := k.parseFloat64s(k.Strings(delim), false, false)\n\treturn vals\n}\n\n// ValidInts returns list of int divided by given delimiter. If some value is not integer, then it will\n// not be included to result list.\nfunc (k *Key) ValidInts(delim string) []int {\n\tvals, _ := k.parseInts(k.Strings(delim), false, false)\n\treturn vals\n}\n\n// ValidInt64s returns list of int64 divided by given delimiter. If some value is not 64-bit integer,\n// then it will not be included to result list.\nfunc (k *Key) ValidInt64s(delim string) []int64 {\n\tvals, _ := k.parseInt64s(k.Strings(delim), false, false)\n\treturn vals\n}\n\n// ValidUints returns list of uint divided by given delimiter. If some value is not unsigned integer,\n// then it will not be included to result list.\nfunc (k *Key) ValidUints(delim string) []uint {\n\tvals, _ := k.parseUints(k.Strings(delim), false, false)\n\treturn vals\n}\n\n// ValidUint64s returns list of uint64 divided by given delimiter. If some value is not 64-bit unsigned\n// integer, then it will not be included to result list.\nfunc (k *Key) ValidUint64s(delim string) []uint64 {\n\tvals, _ := k.parseUint64s(k.Strings(delim), false, false)\n\treturn vals\n}\n\n// ValidBools returns list of bool divided by given delimiter. If some value is not 64-bit unsigned\n// integer, then it will not be included to result list.\nfunc (k *Key) ValidBools(delim string) []bool {\n\tvals, _ := k.parseBools(k.Strings(delim), false, false)\n\treturn vals\n}\n\n// ValidTimesFormat parses with given format and returns list of time.Time divided by given delimiter.\nfunc (k *Key) ValidTimesFormat(format, delim string) []time.Time {\n\tvals, _ := k.parseTimesFormat(format, k.Strings(delim), false, false)\n\treturn vals\n}\n\n// ValidTimes parses with RFC3339 format and returns list of time.Time divided by given delimiter.\nfunc (k *Key) ValidTimes(delim string) []time.Time {\n\treturn k.ValidTimesFormat(time.RFC3339, delim)\n}\n\n// StrictFloat64s returns list of float64 divided by given delimiter or error on first invalid input.\nfunc (k *Key) StrictFloat64s(delim string) ([]float64, error) {\n\treturn k.parseFloat64s(k.Strings(delim), false, true)\n}\n\n// StrictInts returns list of int divided by given delimiter or error on first invalid input.\nfunc (k *Key) StrictInts(delim string) ([]int, error) {\n\treturn k.parseInts(k.Strings(delim), false, true)\n}\n\n// StrictInt64s returns list of int64 divided by given delimiter or error on first invalid input.\nfunc (k *Key) StrictInt64s(delim string) ([]int64, error) {\n\treturn k.parseInt64s(k.Strings(delim), false, true)\n}\n\n// StrictUints returns list of uint divided by given delimiter or error on first invalid input.\nfunc (k *Key) StrictUints(delim string) ([]uint, error) {\n\treturn k.parseUints(k.Strings(delim), false, true)\n}\n\n// StrictUint64s returns list of uint64 divided by given delimiter or error on first invalid input.\nfunc (k *Key) StrictUint64s(delim string) ([]uint64, error) {\n\treturn k.parseUint64s(k.Strings(delim), false, true)\n}\n\n// StrictBools returns list of bool divided by given delimiter or error on first invalid input.\nfunc (k *Key) StrictBools(delim string) ([]bool, error) {\n\treturn k.parseBools(k.Strings(delim), false, true)\n}\n\n// StrictTimesFormat parses with given format and returns list of time.Time divided by given delimiter\n// or error on first invalid input.\nfunc (k *Key) StrictTimesFormat(format, delim string) ([]time.Time, error) {\n\treturn k.parseTimesFormat(format, k.Strings(delim), false, true)\n}\n\n// StrictTimes parses with RFC3339 format and returns list of time.Time divided by given delimiter\n// or error on first invalid input.\nfunc (k *Key) StrictTimes(delim string) ([]time.Time, error) {\n\treturn k.StrictTimesFormat(time.RFC3339, delim)\n}\n\n// parseBools transforms strings to bools.\nfunc (k *Key) parseBools(strs []string, addInvalid, returnOnInvalid bool) ([]bool, error) {\n\tvals := make([]bool, 0, len(strs))\n\tfor _, str := range strs {\n\t\tval, err := parseBool(str)\n\t\tif err != nil && returnOnInvalid {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err == nil || addInvalid {\n\t\t\tvals = append(vals, val)\n\t\t}\n\t}\n\treturn vals, nil\n}\n\n// parseFloat64s transforms strings to float64s.\nfunc (k *Key) parseFloat64s(strs []string, addInvalid, returnOnInvalid bool) ([]float64, error) {\n\tvals := make([]float64, 0, len(strs))\n\tfor _, str := range strs {\n\t\tval, err := strconv.ParseFloat(str, 64)\n\t\tif err != nil && returnOnInvalid {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err == nil || addInvalid {\n\t\t\tvals = append(vals, val)\n\t\t}\n\t}\n\treturn vals, nil\n}\n\n// parseInts transforms strings to ints.\nfunc (k *Key) parseInts(strs []string, addInvalid, returnOnInvalid bool) ([]int, error) {\n\tvals := make([]int, 0, len(strs))\n\tfor _, str := range strs {\n\t\tvalInt64, err := strconv.ParseInt(str, 0, 64)\n\t\tval := int(valInt64)\n\t\tif err != nil && returnOnInvalid {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err == nil || addInvalid {\n\t\t\tvals = append(vals, val)\n\t\t}\n\t}\n\treturn vals, nil\n}\n\n// parseInt64s transforms strings to int64s.\nfunc (k *Key) parseInt64s(strs []string, addInvalid, returnOnInvalid bool) ([]int64, error) {\n\tvals := make([]int64, 0, len(strs))\n\tfor _, str := range strs {\n\t\tval, err := strconv.ParseInt(str, 0, 64)\n\t\tif err != nil && returnOnInvalid {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err == nil || addInvalid {\n\t\t\tvals = append(vals, val)\n\t\t}\n\t}\n\treturn vals, nil\n}\n\n// parseUints transforms strings to uints.\nfunc (k *Key) parseUints(strs []string, addInvalid, returnOnInvalid bool) ([]uint, error) {\n\tvals := make([]uint, 0, len(strs))\n\tfor _, str := range strs {\n\t\tval, err := strconv.ParseUint(str, 0, 0)\n\t\tif err != nil && returnOnInvalid {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err == nil || addInvalid {\n\t\t\tvals = append(vals, uint(val))\n\t\t}\n\t}\n\treturn vals, nil\n}\n\n// parseUint64s transforms strings to uint64s.\nfunc (k *Key) parseUint64s(strs []string, addInvalid, returnOnInvalid bool) ([]uint64, error) {\n\tvals := make([]uint64, 0, len(strs))\n\tfor _, str := range strs {\n\t\tval, err := strconv.ParseUint(str, 0, 64)\n\t\tif err != nil && returnOnInvalid {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err == nil || addInvalid {\n\t\t\tvals = append(vals, val)\n\t\t}\n\t}\n\treturn vals, nil\n}\n\n// parseTimesFormat transforms strings to times in given format.\nfunc (k *Key) parseTimesFormat(format string, strs []string, addInvalid, returnOnInvalid bool) ([]time.Time, error) {\n\tvals := make([]time.Time, 0, len(strs))\n\tfor _, str := range strs {\n\t\tval, err := time.Parse(format, str)\n\t\tif err != nil && returnOnInvalid {\n\t\t\treturn nil, err\n\t\t}\n\t\tif err == nil || addInvalid {\n\t\t\tvals = append(vals, val)\n\t\t}\n\t}\n\treturn vals, nil\n}\n\n// SetValue changes key value.\nfunc (k *Key) SetValue(v string) {\n\tif k.s.f.BlockMode {\n\t\tk.s.f.lock.Lock()\n\t\tdefer k.s.f.lock.Unlock()\n\t}\n\n\tk.value = v\n\tk.s.keysHash[k.name] = v\n}\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/parser.go",
    "content": "// Copyright 2015 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\npackage ini\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"regexp\"\n\t\"strconv\"\n\t\"strings\"\n\t\"unicode\"\n)\n\nconst minReaderBufferSize = 4096\n\nvar pythonMultiline = regexp.MustCompile(`^([\\t\\f ]+)(.*)`)\n\ntype parserOptions struct {\n\tIgnoreContinuation          bool\n\tIgnoreInlineComment         bool\n\tAllowPythonMultilineValues  bool\n\tSpaceBeforeInlineComment    bool\n\tUnescapeValueDoubleQuotes   bool\n\tUnescapeValueCommentSymbols bool\n\tPreserveSurroundedQuote     bool\n\tDebugFunc                   DebugFunc\n\tReaderBufferSize            int\n}\n\ntype parser struct {\n\tbuf     *bufio.Reader\n\toptions parserOptions\n\n\tisEOF   bool\n\tcount   int\n\tcomment *bytes.Buffer\n}\n\nfunc (p *parser) debug(format string, args ...interface{}) {\n\tif p.options.DebugFunc != nil {\n\t\tp.options.DebugFunc(fmt.Sprintf(format, args...))\n\t}\n}\n\nfunc newParser(r io.Reader, opts parserOptions) *parser {\n\tsize := opts.ReaderBufferSize\n\tif size < minReaderBufferSize {\n\t\tsize = minReaderBufferSize\n\t}\n\n\treturn &parser{\n\t\tbuf:     bufio.NewReaderSize(r, size),\n\t\toptions: opts,\n\t\tcount:   1,\n\t\tcomment: &bytes.Buffer{},\n\t}\n}\n\n// BOM handles header of UTF-8, UTF-16 LE and UTF-16 BE's BOM format.\n// http://en.wikipedia.org/wiki/Byte_order_mark#Representations_of_byte_order_marks_by_encoding\nfunc (p *parser) BOM() error {\n\tmask, err := p.buf.Peek(2)\n\tif err != nil && err != io.EOF {\n\t\treturn err\n\t} else if len(mask) < 2 {\n\t\treturn nil\n\t}\n\n\tswitch {\n\tcase mask[0] == 254 && mask[1] == 255:\n\t\tfallthrough\n\tcase mask[0] == 255 && mask[1] == 254:\n\t\tp.buf.Read(mask)\n\tcase mask[0] == 239 && mask[1] == 187:\n\t\tmask, err := p.buf.Peek(3)\n\t\tif err != nil && err != io.EOF {\n\t\t\treturn err\n\t\t} else if len(mask) < 3 {\n\t\t\treturn nil\n\t\t}\n\t\tif mask[2] == 191 {\n\t\t\tp.buf.Read(mask)\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (p *parser) readUntil(delim byte) ([]byte, error) {\n\tdata, err := p.buf.ReadBytes(delim)\n\tif err != nil {\n\t\tif err == io.EOF {\n\t\t\tp.isEOF = true\n\t\t} else {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn data, nil\n}\n\nfunc cleanComment(in []byte) ([]byte, bool) {\n\ti := bytes.IndexAny(in, \"#;\")\n\tif i == -1 {\n\t\treturn nil, false\n\t}\n\treturn in[i:], true\n}\n\nfunc readKeyName(delimiters string, in []byte) (string, int, error) {\n\tline := string(in)\n\n\t// Check if key name surrounded by quotes.\n\tvar keyQuote string\n\tif line[0] == '\"' {\n\t\tif len(line) > 6 && string(line[0:3]) == `\"\"\"` {\n\t\t\tkeyQuote = `\"\"\"`\n\t\t} else {\n\t\t\tkeyQuote = `\"`\n\t\t}\n\t} else if line[0] == '`' {\n\t\tkeyQuote = \"`\"\n\t}\n\n\t// Get out key name\n\tendIdx := -1\n\tif len(keyQuote) > 0 {\n\t\tstartIdx := len(keyQuote)\n\t\t// FIXME: fail case -> \"\"\"\"\"\"name\"\"\"=value\n\t\tpos := strings.Index(line[startIdx:], keyQuote)\n\t\tif pos == -1 {\n\t\t\treturn \"\", -1, fmt.Errorf(\"missing closing key quote: %s\", line)\n\t\t}\n\t\tpos += startIdx\n\n\t\t// Find key-value delimiter\n\t\ti := strings.IndexAny(line[pos+startIdx:], delimiters)\n\t\tif i < 0 {\n\t\t\treturn \"\", -1, ErrDelimiterNotFound{line}\n\t\t}\n\t\tendIdx = pos + i\n\t\treturn strings.TrimSpace(line[startIdx:pos]), endIdx + startIdx + 1, nil\n\t}\n\n\tendIdx = strings.IndexAny(line, delimiters)\n\tif endIdx < 0 {\n\t\treturn \"\", -1, ErrDelimiterNotFound{line}\n\t}\n\treturn strings.TrimSpace(line[0:endIdx]), endIdx + 1, nil\n}\n\nfunc (p *parser) readMultilines(line, val, valQuote string) (string, error) {\n\tfor {\n\t\tdata, err := p.readUntil('\\n')\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tnext := string(data)\n\n\t\tpos := strings.LastIndex(next, valQuote)\n\t\tif pos > -1 {\n\t\t\tval += next[:pos]\n\n\t\t\tcomment, has := cleanComment([]byte(next[pos:]))\n\t\t\tif has {\n\t\t\t\tp.comment.Write(bytes.TrimSpace(comment))\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\tval += next\n\t\tif p.isEOF {\n\t\t\treturn \"\", fmt.Errorf(\"missing closing key quote from '%s' to '%s'\", line, next)\n\t\t}\n\t}\n\treturn val, nil\n}\n\nfunc (p *parser) readContinuationLines(val string) (string, error) {\n\tfor {\n\t\tdata, err := p.readUntil('\\n')\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tnext := strings.TrimSpace(string(data))\n\n\t\tif len(next) == 0 {\n\t\t\tbreak\n\t\t}\n\t\tval += next\n\t\tif val[len(val)-1] != '\\\\' {\n\t\t\tbreak\n\t\t}\n\t\tval = val[:len(val)-1]\n\t}\n\treturn val, nil\n}\n\n// hasSurroundedQuote check if and only if the first and last characters\n// are quotes \\\" or \\'.\n// It returns false if any other parts also contain same kind of quotes.\nfunc hasSurroundedQuote(in string, quote byte) bool {\n\treturn len(in) >= 2 && in[0] == quote && in[len(in)-1] == quote &&\n\t\tstrings.IndexByte(in[1:], quote) == len(in)-2\n}\n\nfunc (p *parser) readValue(in []byte, bufferSize int) (string, error) {\n\n\tline := strings.TrimLeftFunc(string(in), unicode.IsSpace)\n\tif len(line) == 0 {\n\t\tif p.options.AllowPythonMultilineValues && len(in) > 0 && in[len(in)-1] == '\\n' {\n\t\t\treturn p.readPythonMultilines(line, bufferSize)\n\t\t}\n\t\treturn \"\", nil\n\t}\n\n\tvar valQuote string\n\tif len(line) > 3 && string(line[0:3]) == `\"\"\"` {\n\t\tvalQuote = `\"\"\"`\n\t} else if line[0] == '`' {\n\t\tvalQuote = \"`\"\n\t} else if p.options.UnescapeValueDoubleQuotes && line[0] == '\"' {\n\t\tvalQuote = `\"`\n\t}\n\n\tif len(valQuote) > 0 {\n\t\tstartIdx := len(valQuote)\n\t\tpos := strings.LastIndex(line[startIdx:], valQuote)\n\t\t// Check for multi-line value\n\t\tif pos == -1 {\n\t\t\treturn p.readMultilines(line, line[startIdx:], valQuote)\n\t\t}\n\n\t\tif p.options.UnescapeValueDoubleQuotes && valQuote == `\"` {\n\t\t\treturn strings.Replace(line[startIdx:pos+startIdx], `\\\"`, `\"`, -1), nil\n\t\t}\n\t\treturn line[startIdx : pos+startIdx], nil\n\t}\n\n\tlastChar := line[len(line)-1]\n\t// Won't be able to reach here if value only contains whitespace\n\tline = strings.TrimSpace(line)\n\ttrimmedLastChar := line[len(line)-1]\n\n\t// Check continuation lines when desired\n\tif !p.options.IgnoreContinuation && trimmedLastChar == '\\\\' {\n\t\treturn p.readContinuationLines(line[:len(line)-1])\n\t}\n\n\t// Check if ignore inline comment\n\tif !p.options.IgnoreInlineComment {\n\t\tvar i int\n\t\tif p.options.SpaceBeforeInlineComment {\n\t\t\ti = strings.Index(line, \" #\")\n\t\t\tif i == -1 {\n\t\t\t\ti = strings.Index(line, \" ;\")\n\t\t\t}\n\n\t\t} else {\n\t\t\ti = strings.IndexAny(line, \"#;\")\n\t\t}\n\n\t\tif i > -1 {\n\t\t\tp.comment.WriteString(line[i:])\n\t\t\tline = strings.TrimSpace(line[:i])\n\t\t}\n\n\t}\n\n\t// Trim single and double quotes\n\tif (hasSurroundedQuote(line, '\\'') ||\n\t\thasSurroundedQuote(line, '\"')) && !p.options.PreserveSurroundedQuote {\n\t\tline = line[1 : len(line)-1]\n\t} else if len(valQuote) == 0 && p.options.UnescapeValueCommentSymbols {\n\t\tif strings.Contains(line, `\\;`) {\n\t\t\tline = strings.Replace(line, `\\;`, \";\", -1)\n\t\t}\n\t\tif strings.Contains(line, `\\#`) {\n\t\t\tline = strings.Replace(line, `\\#`, \"#\", -1)\n\t\t}\n\t} else if p.options.AllowPythonMultilineValues && lastChar == '\\n' {\n\t\treturn p.readPythonMultilines(line, bufferSize)\n\t}\n\n\treturn line, nil\n}\n\nfunc (p *parser) readPythonMultilines(line string, bufferSize int) (string, error) {\n\tparserBufferPeekResult, _ := p.buf.Peek(bufferSize)\n\tpeekBuffer := bytes.NewBuffer(parserBufferPeekResult)\n\n\tindentSize := 0\n\tfor {\n\t\tpeekData, peekErr := peekBuffer.ReadBytes('\\n')\n\t\tif peekErr != nil {\n\t\t\tif peekErr == io.EOF {\n\t\t\t\tp.debug(\"readPythonMultilines: io.EOF, peekData: %q, line: %q\", string(peekData), line)\n\t\t\t\treturn line, nil\n\t\t\t}\n\n\t\t\tp.debug(\"readPythonMultilines: failed to peek with error: %v\", peekErr)\n\t\t\treturn \"\", peekErr\n\t\t}\n\n\t\tp.debug(\"readPythonMultilines: parsing %q\", string(peekData))\n\n\t\tpeekMatches := pythonMultiline.FindStringSubmatch(string(peekData))\n\t\tp.debug(\"readPythonMultilines: matched %d parts\", len(peekMatches))\n\t\tfor n, v := range peekMatches {\n\t\t\tp.debug(\"   %d: %q\", n, v)\n\t\t}\n\n\t\t// Return if not a Python multiline value.\n\t\tif len(peekMatches) != 3 {\n\t\t\tp.debug(\"readPythonMultilines: end of value, got: %q\", line)\n\t\t\treturn line, nil\n\t\t}\n\n\t\t// Determine indent size and line prefix.\n\t\tcurrentIndentSize := len(peekMatches[1])\n\t\tif indentSize < 1 {\n\t\t\tindentSize = currentIndentSize\n\t\t\tp.debug(\"readPythonMultilines: indent size is %d\", indentSize)\n\t\t}\n\n\t\t// Make sure each line is indented at least as far as first line.\n\t\tif currentIndentSize < indentSize {\n\t\t\tp.debug(\"readPythonMultilines: end of value, current indent: %d, expected indent: %d, line: %q\", currentIndentSize, indentSize, line)\n\t\t\treturn line, nil\n\t\t}\n\n\t\t// Advance the parser reader (buffer) in-sync with the peek buffer.\n\t\t_, err := p.buf.Discard(len(peekData))\n\t\tif err != nil {\n\t\t\tp.debug(\"readPythonMultilines: failed to skip to the end, returning error\")\n\t\t\treturn \"\", err\n\t\t}\n\n\t\t// Handle indented empty line.\n\t\tline += \"\\n\" + peekMatches[1][indentSize:] + peekMatches[2]\n\t}\n}\n\n// parse parses data through an io.Reader.\nfunc (f *File) parse(reader io.Reader) (err error) {\n\tp := newParser(reader, parserOptions{\n\t\tIgnoreContinuation:          f.options.IgnoreContinuation,\n\t\tIgnoreInlineComment:         f.options.IgnoreInlineComment,\n\t\tAllowPythonMultilineValues:  f.options.AllowPythonMultilineValues,\n\t\tSpaceBeforeInlineComment:    f.options.SpaceBeforeInlineComment,\n\t\tUnescapeValueDoubleQuotes:   f.options.UnescapeValueDoubleQuotes,\n\t\tUnescapeValueCommentSymbols: f.options.UnescapeValueCommentSymbols,\n\t\tPreserveSurroundedQuote:     f.options.PreserveSurroundedQuote,\n\t\tDebugFunc:                   f.options.DebugFunc,\n\t\tReaderBufferSize:            f.options.ReaderBufferSize,\n\t})\n\tif err = p.BOM(); err != nil {\n\t\treturn fmt.Errorf(\"BOM: %v\", err)\n\t}\n\n\t// Ignore error because default section name is never empty string.\n\tname := DefaultSection\n\tif f.options.Insensitive {\n\t\tname = strings.ToLower(DefaultSection)\n\t}\n\tsection, _ := f.NewSection(name)\n\n\t// This \"last\" is not strictly equivalent to \"previous one\" if current key is not the first nested key\n\tvar isLastValueEmpty bool\n\tvar lastRegularKey *Key\n\n\tvar line []byte\n\tvar inUnparseableSection bool\n\n\t// NOTE: Iterate and increase `currentPeekSize` until\n\t// the size of the parser buffer is found.\n\t// TODO(unknwon): When Golang 1.10 is the lowest version supported, replace with `parserBufferSize := p.buf.Size()`.\n\tparserBufferSize := 0\n\t// NOTE: Peek 4kb at a time.\n\tcurrentPeekSize := minReaderBufferSize\n\n\tif f.options.AllowPythonMultilineValues {\n\t\tfor {\n\t\t\tpeekBytes, _ := p.buf.Peek(currentPeekSize)\n\t\t\tpeekBytesLength := len(peekBytes)\n\n\t\t\tif parserBufferSize >= peekBytesLength {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tcurrentPeekSize *= 2\n\t\t\tparserBufferSize = peekBytesLength\n\t\t}\n\t}\n\n\tfor !p.isEOF {\n\t\tline, err = p.readUntil('\\n')\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tif f.options.AllowNestedValues &&\n\t\t\tisLastValueEmpty && len(line) > 0 {\n\t\t\tif line[0] == ' ' || line[0] == '\\t' {\n\t\t\t\tlastRegularKey.addNestedValue(string(bytes.TrimSpace(line)))\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\tline = bytes.TrimLeftFunc(line, unicode.IsSpace)\n\t\tif len(line) == 0 {\n\t\t\tcontinue\n\t\t}\n\n\t\t// Comments\n\t\tif line[0] == '#' || line[0] == ';' {\n\t\t\t// Note: we do not care ending line break,\n\t\t\t// it is needed for adding second line,\n\t\t\t// so just clean it once at the end when set to value.\n\t\t\tp.comment.Write(line)\n\t\t\tcontinue\n\t\t}\n\n\t\t// Section\n\t\tif line[0] == '[' {\n\t\t\t// Read to the next ']' (TODO: support quoted strings)\n\t\t\tcloseIdx := bytes.LastIndexByte(line, ']')\n\t\t\tif closeIdx == -1 {\n\t\t\t\treturn fmt.Errorf(\"unclosed section: %s\", line)\n\t\t\t}\n\n\t\t\tname := string(line[1:closeIdx])\n\t\t\tsection, err = f.NewSection(name)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tcomment, has := cleanComment(line[closeIdx+1:])\n\t\t\tif has {\n\t\t\t\tp.comment.Write(comment)\n\t\t\t}\n\n\t\t\tsection.Comment = strings.TrimSpace(p.comment.String())\n\n\t\t\t// Reset aotu-counter and comments\n\t\t\tp.comment.Reset()\n\t\t\tp.count = 1\n\n\t\t\tinUnparseableSection = false\n\t\t\tfor i := range f.options.UnparseableSections {\n\t\t\t\tif f.options.UnparseableSections[i] == name ||\n\t\t\t\t\t(f.options.Insensitive && strings.ToLower(f.options.UnparseableSections[i]) == strings.ToLower(name)) {\n\t\t\t\t\tinUnparseableSection = true\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tif inUnparseableSection {\n\t\t\tsection.isRawSection = true\n\t\t\tsection.rawBody += string(line)\n\t\t\tcontinue\n\t\t}\n\n\t\tkname, offset, err := readKeyName(f.options.KeyValueDelimiters, line)\n\t\tif err != nil {\n\t\t\t// Treat as boolean key when desired, and whole line is key name.\n\t\t\tif IsErrDelimiterNotFound(err) {\n\t\t\t\tswitch {\n\t\t\t\tcase f.options.AllowBooleanKeys:\n\t\t\t\t\tkname, err := p.readValue(line, parserBufferSize)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn err\n\t\t\t\t\t}\n\t\t\t\t\tkey, err := section.NewBooleanKey(kname)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn err\n\t\t\t\t\t}\n\t\t\t\t\tkey.Comment = strings.TrimSpace(p.comment.String())\n\t\t\t\t\tp.comment.Reset()\n\t\t\t\t\tcontinue\n\n\t\t\t\tcase f.options.SkipUnrecognizableLines:\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn err\n\t\t}\n\n\t\t// Auto increment.\n\t\tisAutoIncr := false\n\t\tif kname == \"-\" {\n\t\t\tisAutoIncr = true\n\t\t\tkname = \"#\" + strconv.Itoa(p.count)\n\t\t\tp.count++\n\t\t}\n\n\t\tvalue, err := p.readValue(line[offset:], parserBufferSize)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tisLastValueEmpty = len(value) == 0\n\n\t\tkey, err := section.NewKey(kname, value)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tkey.isAutoIncrement = isAutoIncr\n\t\tkey.Comment = strings.TrimSpace(p.comment.String())\n\t\tp.comment.Reset()\n\t\tlastRegularKey = key\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/section.go",
    "content": "// Copyright 2014 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\npackage ini\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"strings\"\n)\n\n// Section represents a config section.\ntype Section struct {\n\tf        *File\n\tComment  string\n\tname     string\n\tkeys     map[string]*Key\n\tkeyList  []string\n\tkeysHash map[string]string\n\n\tisRawSection bool\n\trawBody      string\n}\n\nfunc newSection(f *File, name string) *Section {\n\treturn &Section{\n\t\tf:        f,\n\t\tname:     name,\n\t\tkeys:     make(map[string]*Key),\n\t\tkeyList:  make([]string, 0, 10),\n\t\tkeysHash: make(map[string]string),\n\t}\n}\n\n// Name returns name of Section.\nfunc (s *Section) Name() string {\n\treturn s.name\n}\n\n// Body returns rawBody of Section if the section was marked as unparseable.\n// It still follows the other rules of the INI format surrounding leading/trailing whitespace.\nfunc (s *Section) Body() string {\n\treturn strings.TrimSpace(s.rawBody)\n}\n\n// SetBody updates body content only if section is raw.\nfunc (s *Section) SetBody(body string) {\n\tif !s.isRawSection {\n\t\treturn\n\t}\n\ts.rawBody = body\n}\n\n// NewKey creates a new key to given section.\nfunc (s *Section) NewKey(name, val string) (*Key, error) {\n\tif len(name) == 0 {\n\t\treturn nil, errors.New(\"error creating new key: empty key name\")\n\t} else if s.f.options.Insensitive {\n\t\tname = strings.ToLower(name)\n\t}\n\n\tif s.f.BlockMode {\n\t\ts.f.lock.Lock()\n\t\tdefer s.f.lock.Unlock()\n\t}\n\n\tif inSlice(name, s.keyList) {\n\t\tif s.f.options.AllowShadows {\n\t\t\tif err := s.keys[name].addShadow(val); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t} else {\n\t\t\ts.keys[name].value = val\n\t\t\ts.keysHash[name] = val\n\t\t}\n\t\treturn s.keys[name], nil\n\t}\n\n\ts.keyList = append(s.keyList, name)\n\ts.keys[name] = newKey(s, name, val)\n\ts.keysHash[name] = val\n\treturn s.keys[name], nil\n}\n\n// NewBooleanKey creates a new boolean type key to given section.\nfunc (s *Section) NewBooleanKey(name string) (*Key, error) {\n\tkey, err := s.NewKey(name, \"true\")\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tkey.isBooleanType = true\n\treturn key, nil\n}\n\n// GetKey returns key in section by given name.\nfunc (s *Section) GetKey(name string) (*Key, error) {\n\tif s.f.BlockMode {\n\t\ts.f.lock.RLock()\n\t}\n\tif s.f.options.Insensitive {\n\t\tname = strings.ToLower(name)\n\t}\n\tkey := s.keys[name]\n\tif s.f.BlockMode {\n\t\ts.f.lock.RUnlock()\n\t}\n\n\tif key == nil {\n\t\t// Check if it is a child-section.\n\t\tsname := s.name\n\t\tfor {\n\t\t\tif i := strings.LastIndex(sname, \".\"); i > -1 {\n\t\t\t\tsname = sname[:i]\n\t\t\t\tsec, err := s.f.GetSection(sname)\n\t\t\t\tif err != nil {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\treturn sec.GetKey(name)\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\treturn nil, fmt.Errorf(\"error when getting key of section '%s': key '%s' not exists\", s.name, name)\n\t}\n\treturn key, nil\n}\n\n// HasKey returns true if section contains a key with given name.\nfunc (s *Section) HasKey(name string) bool {\n\tkey, _ := s.GetKey(name)\n\treturn key != nil\n}\n\n// Deprecated: Use \"HasKey\" instead.\nfunc (s *Section) Haskey(name string) bool {\n\treturn s.HasKey(name)\n}\n\n// HasValue returns true if section contains given raw value.\nfunc (s *Section) HasValue(value string) bool {\n\tif s.f.BlockMode {\n\t\ts.f.lock.RLock()\n\t\tdefer s.f.lock.RUnlock()\n\t}\n\n\tfor _, k := range s.keys {\n\t\tif value == k.value {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// Key assumes named Key exists in section and returns a zero-value when not.\nfunc (s *Section) Key(name string) *Key {\n\tkey, err := s.GetKey(name)\n\tif err != nil {\n\t\t// It's OK here because the only possible error is empty key name,\n\t\t// but if it's empty, this piece of code won't be executed.\n\t\tkey, _ = s.NewKey(name, \"\")\n\t\treturn key\n\t}\n\treturn key\n}\n\n// Keys returns list of keys of section.\nfunc (s *Section) Keys() []*Key {\n\tkeys := make([]*Key, len(s.keyList))\n\tfor i := range s.keyList {\n\t\tkeys[i] = s.Key(s.keyList[i])\n\t}\n\treturn keys\n}\n\n// ParentKeys returns list of keys of parent section.\nfunc (s *Section) ParentKeys() []*Key {\n\tvar parentKeys []*Key\n\tsname := s.name\n\tfor {\n\t\tif i := strings.LastIndex(sname, \".\"); i > -1 {\n\t\t\tsname = sname[:i]\n\t\t\tsec, err := s.f.GetSection(sname)\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tparentKeys = append(parentKeys, sec.Keys()...)\n\t\t} else {\n\t\t\tbreak\n\t\t}\n\n\t}\n\treturn parentKeys\n}\n\n// KeyStrings returns list of key names of section.\nfunc (s *Section) KeyStrings() []string {\n\tlist := make([]string, len(s.keyList))\n\tcopy(list, s.keyList)\n\treturn list\n}\n\n// KeysHash returns keys hash consisting of names and values.\nfunc (s *Section) KeysHash() map[string]string {\n\tif s.f.BlockMode {\n\t\ts.f.lock.RLock()\n\t\tdefer s.f.lock.RUnlock()\n\t}\n\n\thash := map[string]string{}\n\tfor key, value := range s.keysHash {\n\t\thash[key] = value\n\t}\n\treturn hash\n}\n\n// DeleteKey deletes a key from section.\nfunc (s *Section) DeleteKey(name string) {\n\tif s.f.BlockMode {\n\t\ts.f.lock.Lock()\n\t\tdefer s.f.lock.Unlock()\n\t}\n\n\tfor i, k := range s.keyList {\n\t\tif k == name {\n\t\t\ts.keyList = append(s.keyList[:i], s.keyList[i+1:]...)\n\t\t\tdelete(s.keys, name)\n\t\t\tdelete(s.keysHash, name)\n\t\t\treturn\n\t\t}\n\t}\n}\n\n// ChildSections returns a list of child sections of current section.\n// For example, \"[parent.child1]\" and \"[parent.child12]\" are child sections\n// of section \"[parent]\".\nfunc (s *Section) ChildSections() []*Section {\n\tprefix := s.name + \".\"\n\tchildren := make([]*Section, 0, 3)\n\tfor _, name := range s.f.sectionList {\n\t\tif strings.HasPrefix(name, prefix) {\n\t\t\tchildren = append(children, s.f.sections[name])\n\t\t}\n\t}\n\treturn children\n}\n"
  },
  {
    "path": "vendor/gopkg.in/ini.v1/struct.go",
    "content": "// Copyright 2014 Unknwon\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\"): you may\n// not use this file except in compliance with the License. You may obtain\n// a copy of the License at\n//\n//     http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n// License for the specific language governing permissions and limitations\n// under the License.\n\npackage ini\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"reflect\"\n\t\"strings\"\n\t\"time\"\n\t\"unicode\"\n)\n\n// NameMapper represents a ini tag name mapper.\ntype NameMapper func(string) string\n\n// Built-in name getters.\nvar (\n\t// SnackCase converts to format SNACK_CASE.\n\tSnackCase NameMapper = func(raw string) string {\n\t\tnewstr := make([]rune, 0, len(raw))\n\t\tfor i, chr := range raw {\n\t\t\tif isUpper := 'A' <= chr && chr <= 'Z'; isUpper {\n\t\t\t\tif i > 0 {\n\t\t\t\t\tnewstr = append(newstr, '_')\n\t\t\t\t}\n\t\t\t}\n\t\t\tnewstr = append(newstr, unicode.ToUpper(chr))\n\t\t}\n\t\treturn string(newstr)\n\t}\n\t// TitleUnderscore converts to format title_underscore.\n\tTitleUnderscore NameMapper = func(raw string) string {\n\t\tnewstr := make([]rune, 0, len(raw))\n\t\tfor i, chr := range raw {\n\t\t\tif isUpper := 'A' <= chr && chr <= 'Z'; isUpper {\n\t\t\t\tif i > 0 {\n\t\t\t\t\tnewstr = append(newstr, '_')\n\t\t\t\t}\n\t\t\t\tchr -= 'A' - 'a'\n\t\t\t}\n\t\t\tnewstr = append(newstr, chr)\n\t\t}\n\t\treturn string(newstr)\n\t}\n)\n\nfunc (s *Section) parseFieldName(raw, actual string) string {\n\tif len(actual) > 0 {\n\t\treturn actual\n\t}\n\tif s.f.NameMapper != nil {\n\t\treturn s.f.NameMapper(raw)\n\t}\n\treturn raw\n}\n\nfunc parseDelim(actual string) string {\n\tif len(actual) > 0 {\n\t\treturn actual\n\t}\n\treturn \",\"\n}\n\nvar reflectTime = reflect.TypeOf(time.Now()).Kind()\n\n// setSliceWithProperType sets proper values to slice based on its type.\nfunc setSliceWithProperType(key *Key, field reflect.Value, delim string, allowShadow, isStrict bool) error {\n\tvar strs []string\n\tif allowShadow {\n\t\tstrs = key.StringsWithShadows(delim)\n\t} else {\n\t\tstrs = key.Strings(delim)\n\t}\n\n\tnumVals := len(strs)\n\tif numVals == 0 {\n\t\treturn nil\n\t}\n\n\tvar vals interface{}\n\tvar err error\n\n\tsliceOf := field.Type().Elem().Kind()\n\tswitch sliceOf {\n\tcase reflect.String:\n\t\tvals = strs\n\tcase reflect.Int:\n\t\tvals, err = key.parseInts(strs, true, false)\n\tcase reflect.Int64:\n\t\tvals, err = key.parseInt64s(strs, true, false)\n\tcase reflect.Uint:\n\t\tvals, err = key.parseUints(strs, true, false)\n\tcase reflect.Uint64:\n\t\tvals, err = key.parseUint64s(strs, true, false)\n\tcase reflect.Float64:\n\t\tvals, err = key.parseFloat64s(strs, true, false)\n\tcase reflect.Bool:\n\t\tvals, err = key.parseBools(strs, true, false)\n\tcase reflectTime:\n\t\tvals, err = key.parseTimesFormat(time.RFC3339, strs, true, false)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported type '[]%s'\", sliceOf)\n\t}\n\tif err != nil && isStrict {\n\t\treturn err\n\t}\n\n\tslice := reflect.MakeSlice(field.Type(), numVals, numVals)\n\tfor i := 0; i < numVals; i++ {\n\t\tswitch sliceOf {\n\t\tcase reflect.String:\n\t\t\tslice.Index(i).Set(reflect.ValueOf(vals.([]string)[i]))\n\t\tcase reflect.Int:\n\t\t\tslice.Index(i).Set(reflect.ValueOf(vals.([]int)[i]))\n\t\tcase reflect.Int64:\n\t\t\tslice.Index(i).Set(reflect.ValueOf(vals.([]int64)[i]))\n\t\tcase reflect.Uint:\n\t\t\tslice.Index(i).Set(reflect.ValueOf(vals.([]uint)[i]))\n\t\tcase reflect.Uint64:\n\t\t\tslice.Index(i).Set(reflect.ValueOf(vals.([]uint64)[i]))\n\t\tcase reflect.Float64:\n\t\t\tslice.Index(i).Set(reflect.ValueOf(vals.([]float64)[i]))\n\t\tcase reflect.Bool:\n\t\t\tslice.Index(i).Set(reflect.ValueOf(vals.([]bool)[i]))\n\t\tcase reflectTime:\n\t\t\tslice.Index(i).Set(reflect.ValueOf(vals.([]time.Time)[i]))\n\t\t}\n\t}\n\tfield.Set(slice)\n\treturn nil\n}\n\nfunc wrapStrictError(err error, isStrict bool) error {\n\tif isStrict {\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// setWithProperType sets proper value to field based on its type,\n// but it does not return error for failing parsing,\n// because we want to use default value that is already assigned to struct.\nfunc setWithProperType(t reflect.Type, key *Key, field reflect.Value, delim string, allowShadow, isStrict bool) error {\n\tvt := t\n\tisPtr := t.Kind() == reflect.Ptr\n\tif isPtr {\n\t\tvt = t.Elem()\n\t}\n\tswitch vt.Kind() {\n\tcase reflect.String:\n\t\tstringVal := key.String()\n\t\tif isPtr {\n\t\t\tfield.Set(reflect.ValueOf(&stringVal))\n\t\t} else if len(stringVal) > 0 {\n\t\t\tfield.SetString(key.String())\n\t\t}\n\tcase reflect.Bool:\n\t\tboolVal, err := key.Bool()\n\t\tif err != nil {\n\t\t\treturn wrapStrictError(err, isStrict)\n\t\t}\n\t\tif isPtr {\n\t\t\tfield.Set(reflect.ValueOf(&boolVal))\n\t\t} else {\n\t\t\tfield.SetBool(boolVal)\n\t\t}\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t// ParseDuration will not return err for `0`, so check the type name\n\t\tif vt.Name() == \"Duration\" {\n\t\t\tdurationVal, err := key.Duration()\n\t\t\tif err != nil {\n\t\t\t\treturn wrapStrictError(err, isStrict)\n\t\t\t}\n\t\t\tif isPtr {\n\t\t\t\tfield.Set(reflect.ValueOf(&durationVal))\n\t\t\t} else if int64(durationVal) > 0 {\n\t\t\t\tfield.Set(reflect.ValueOf(durationVal))\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\n\t\tintVal, err := key.Int64()\n\t\tif err != nil {\n\t\t\treturn wrapStrictError(err, isStrict)\n\t\t}\n\t\tif isPtr {\n\t\t\tpv := reflect.New(t.Elem())\n\t\t\tpv.Elem().SetInt(intVal)\n\t\t\tfield.Set(pv)\n\t\t} else {\n\t\t\tfield.SetInt(intVal)\n\t\t}\n\t//\tbyte is an alias for uint8, so supporting uint8 breaks support for byte\n\tcase reflect.Uint, reflect.Uint16, reflect.Uint32, reflect.Uint64:\n\t\tdurationVal, err := key.Duration()\n\t\t// Skip zero value\n\t\tif err == nil && uint64(durationVal) > 0 {\n\t\t\tif isPtr {\n\t\t\t\tfield.Set(reflect.ValueOf(&durationVal))\n\t\t\t} else {\n\t\t\t\tfield.Set(reflect.ValueOf(durationVal))\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\n\t\tuintVal, err := key.Uint64()\n\t\tif err != nil {\n\t\t\treturn wrapStrictError(err, isStrict)\n\t\t}\n\t\tif isPtr {\n\t\t\tpv := reflect.New(t.Elem())\n\t\t\tpv.Elem().SetUint(uintVal)\n\t\t\tfield.Set(pv)\n\t\t} else {\n\t\t\tfield.SetUint(uintVal)\n\t\t}\n\n\tcase reflect.Float32, reflect.Float64:\n\t\tfloatVal, err := key.Float64()\n\t\tif err != nil {\n\t\t\treturn wrapStrictError(err, isStrict)\n\t\t}\n\t\tif isPtr {\n\t\t\tpv := reflect.New(t.Elem())\n\t\t\tpv.Elem().SetFloat(floatVal)\n\t\t\tfield.Set(pv)\n\t\t} else {\n\t\t\tfield.SetFloat(floatVal)\n\t\t}\n\tcase reflectTime:\n\t\ttimeVal, err := key.Time()\n\t\tif err != nil {\n\t\t\treturn wrapStrictError(err, isStrict)\n\t\t}\n\t\tif isPtr {\n\t\t\tfield.Set(reflect.ValueOf(&timeVal))\n\t\t} else {\n\t\t\tfield.Set(reflect.ValueOf(timeVal))\n\t\t}\n\tcase reflect.Slice:\n\t\treturn setSliceWithProperType(key, field, delim, allowShadow, isStrict)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported type '%s'\", t)\n\t}\n\treturn nil\n}\n\nfunc parseTagOptions(tag string) (rawName string, omitEmpty bool, allowShadow bool) {\n\topts := strings.SplitN(tag, \",\", 3)\n\trawName = opts[0]\n\tif len(opts) > 1 {\n\t\tomitEmpty = opts[1] == \"omitempty\"\n\t}\n\tif len(opts) > 2 {\n\t\tallowShadow = opts[2] == \"allowshadow\"\n\t}\n\treturn rawName, omitEmpty, allowShadow\n}\n\nfunc (s *Section) mapTo(val reflect.Value, isStrict bool) error {\n\tif val.Kind() == reflect.Ptr {\n\t\tval = val.Elem()\n\t}\n\ttyp := val.Type()\n\n\tfor i := 0; i < typ.NumField(); i++ {\n\t\tfield := val.Field(i)\n\t\ttpField := typ.Field(i)\n\n\t\ttag := tpField.Tag.Get(\"ini\")\n\t\tif tag == \"-\" {\n\t\t\tcontinue\n\t\t}\n\n\t\trawName, _, allowShadow := parseTagOptions(tag)\n\t\tfieldName := s.parseFieldName(tpField.Name, rawName)\n\t\tif len(fieldName) == 0 || !field.CanSet() {\n\t\t\tcontinue\n\t\t}\n\n\t\tisStruct := tpField.Type.Kind() == reflect.Struct\n\t\tisStructPtr := tpField.Type.Kind() == reflect.Ptr && tpField.Type.Elem().Kind() == reflect.Struct\n\t\tisAnonymous := tpField.Type.Kind() == reflect.Ptr && tpField.Anonymous\n\t\tif isAnonymous {\n\t\t\tfield.Set(reflect.New(tpField.Type.Elem()))\n\t\t}\n\n\t\tif isAnonymous || isStruct || isStructPtr {\n\t\t\tif sec, err := s.f.GetSection(fieldName); err == nil {\n\t\t\t\t// Only set the field to non-nil struct value if we have\n\t\t\t\t// a section for it. Otherwise, we end up with a non-nil\n\t\t\t\t// struct ptr even though there is no data.\n\t\t\t\tif isStructPtr && field.IsNil() {\n\t\t\t\t\tfield.Set(reflect.New(tpField.Type.Elem()))\n\t\t\t\t}\n\t\t\t\tif err = sec.mapTo(field, isStrict); err != nil {\n\t\t\t\t\treturn fmt.Errorf(\"error mapping field(%s): %v\", fieldName, err)\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\t\tif key, err := s.GetKey(fieldName); err == nil {\n\t\t\tdelim := parseDelim(tpField.Tag.Get(\"delim\"))\n\t\t\tif err = setWithProperType(tpField.Type, key, field, delim, allowShadow, isStrict); err != nil {\n\t\t\t\treturn fmt.Errorf(\"error mapping field(%s): %v\", fieldName, err)\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\n// MapTo maps section to given struct.\nfunc (s *Section) MapTo(v interface{}) error {\n\ttyp := reflect.TypeOf(v)\n\tval := reflect.ValueOf(v)\n\tif typ.Kind() == reflect.Ptr {\n\t\ttyp = typ.Elem()\n\t\tval = val.Elem()\n\t} else {\n\t\treturn errors.New(\"cannot map to non-pointer struct\")\n\t}\n\n\treturn s.mapTo(val, false)\n}\n\n// StrictMapTo maps section to given struct in strict mode,\n// which returns all possible error including value parsing error.\nfunc (s *Section) StrictMapTo(v interface{}) error {\n\ttyp := reflect.TypeOf(v)\n\tval := reflect.ValueOf(v)\n\tif typ.Kind() == reflect.Ptr {\n\t\ttyp = typ.Elem()\n\t\tval = val.Elem()\n\t} else {\n\t\treturn errors.New(\"cannot map to non-pointer struct\")\n\t}\n\n\treturn s.mapTo(val, true)\n}\n\n// MapTo maps file to given struct.\nfunc (f *File) MapTo(v interface{}) error {\n\treturn f.Section(\"\").MapTo(v)\n}\n\n// StrictMapTo maps file to given struct in strict mode,\n// which returns all possible error including value parsing error.\nfunc (f *File) StrictMapTo(v interface{}) error {\n\treturn f.Section(\"\").StrictMapTo(v)\n}\n\n// MapToWithMapper maps data sources to given struct with name mapper.\nfunc MapToWithMapper(v interface{}, mapper NameMapper, source interface{}, others ...interface{}) error {\n\tcfg, err := Load(source, others...)\n\tif err != nil {\n\t\treturn err\n\t}\n\tcfg.NameMapper = mapper\n\treturn cfg.MapTo(v)\n}\n\n// StrictMapToWithMapper maps data sources to given struct with name mapper in strict mode,\n// which returns all possible error including value parsing error.\nfunc StrictMapToWithMapper(v interface{}, mapper NameMapper, source interface{}, others ...interface{}) error {\n\tcfg, err := Load(source, others...)\n\tif err != nil {\n\t\treturn err\n\t}\n\tcfg.NameMapper = mapper\n\treturn cfg.StrictMapTo(v)\n}\n\n// MapTo maps data sources to given struct.\nfunc MapTo(v, source interface{}, others ...interface{}) error {\n\treturn MapToWithMapper(v, nil, source, others...)\n}\n\n// StrictMapTo maps data sources to given struct in strict mode,\n// which returns all possible error including value parsing error.\nfunc StrictMapTo(v, source interface{}, others ...interface{}) error {\n\treturn StrictMapToWithMapper(v, nil, source, others...)\n}\n\n// reflectSliceWithProperType does the opposite thing as setSliceWithProperType.\nfunc reflectSliceWithProperType(key *Key, field reflect.Value, delim string, allowShadow bool) error {\n\tslice := field.Slice(0, field.Len())\n\tif field.Len() == 0 {\n\t\treturn nil\n\t}\n\tsliceOf := field.Type().Elem().Kind()\n\n\tif allowShadow {\n\t\tvar keyWithShadows *Key\n\t\tfor i := 0; i < field.Len(); i++ {\n\t\t\tvar val string\n\t\t\tswitch sliceOf {\n\t\t\tcase reflect.String:\n\t\t\t\tval = slice.Index(i).String()\n\t\t\tcase reflect.Int, reflect.Int64:\n\t\t\t\tval = fmt.Sprint(slice.Index(i).Int())\n\t\t\tcase reflect.Uint, reflect.Uint64:\n\t\t\t\tval = fmt.Sprint(slice.Index(i).Uint())\n\t\t\tcase reflect.Float64:\n\t\t\t\tval = fmt.Sprint(slice.Index(i).Float())\n\t\t\tcase reflect.Bool:\n\t\t\t\tval = fmt.Sprint(slice.Index(i).Bool())\n\t\t\tcase reflectTime:\n\t\t\t\tval = slice.Index(i).Interface().(time.Time).Format(time.RFC3339)\n\t\t\tdefault:\n\t\t\t\treturn fmt.Errorf(\"unsupported type '[]%s'\", sliceOf)\n\t\t\t}\n\n\t\t\tif i == 0 {\n\t\t\t\tkeyWithShadows = newKey(key.s, key.name, val)\n\t\t\t} else {\n\t\t\t\tkeyWithShadows.AddShadow(val)\n\t\t\t}\n\t\t}\n\t\tkey = keyWithShadows\n\t\treturn nil\n\t}\n\n\tvar buf bytes.Buffer\n\tfor i := 0; i < field.Len(); i++ {\n\t\tswitch sliceOf {\n\t\tcase reflect.String:\n\t\t\tbuf.WriteString(slice.Index(i).String())\n\t\tcase reflect.Int, reflect.Int64:\n\t\t\tbuf.WriteString(fmt.Sprint(slice.Index(i).Int()))\n\t\tcase reflect.Uint, reflect.Uint64:\n\t\t\tbuf.WriteString(fmt.Sprint(slice.Index(i).Uint()))\n\t\tcase reflect.Float64:\n\t\t\tbuf.WriteString(fmt.Sprint(slice.Index(i).Float()))\n\t\tcase reflect.Bool:\n\t\t\tbuf.WriteString(fmt.Sprint(slice.Index(i).Bool()))\n\t\tcase reflectTime:\n\t\t\tbuf.WriteString(slice.Index(i).Interface().(time.Time).Format(time.RFC3339))\n\t\tdefault:\n\t\t\treturn fmt.Errorf(\"unsupported type '[]%s'\", sliceOf)\n\t\t}\n\t\tbuf.WriteString(delim)\n\t}\n\tkey.SetValue(buf.String()[:buf.Len()-len(delim)])\n\treturn nil\n}\n\n// reflectWithProperType does the opposite thing as setWithProperType.\nfunc reflectWithProperType(t reflect.Type, key *Key, field reflect.Value, delim string, allowShadow bool) error {\n\tswitch t.Kind() {\n\tcase reflect.String:\n\t\tkey.SetValue(field.String())\n\tcase reflect.Bool:\n\t\tkey.SetValue(fmt.Sprint(field.Bool()))\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tkey.SetValue(fmt.Sprint(field.Int()))\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:\n\t\tkey.SetValue(fmt.Sprint(field.Uint()))\n\tcase reflect.Float32, reflect.Float64:\n\t\tkey.SetValue(fmt.Sprint(field.Float()))\n\tcase reflectTime:\n\t\tkey.SetValue(fmt.Sprint(field.Interface().(time.Time).Format(time.RFC3339)))\n\tcase reflect.Slice:\n\t\treturn reflectSliceWithProperType(key, field, delim, allowShadow)\n\tcase reflect.Ptr:\n\t\tif !field.IsNil() {\n\t\t\treturn reflectWithProperType(t.Elem(), key, field.Elem(), delim, allowShadow)\n\t\t}\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported type '%s'\", t)\n\t}\n\treturn nil\n}\n\n// CR: copied from encoding/json/encode.go with modifications of time.Time support.\n// TODO: add more test coverage.\nfunc isEmptyValue(v reflect.Value) bool {\n\tswitch v.Kind() {\n\tcase reflect.Array, reflect.Map, reflect.Slice, reflect.String:\n\t\treturn v.Len() == 0\n\tcase reflect.Bool:\n\t\treturn !v.Bool()\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn v.Int() == 0\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn v.Uint() == 0\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn v.Float() == 0\n\tcase reflect.Interface, reflect.Ptr:\n\t\treturn v.IsNil()\n\tcase reflectTime:\n\t\tt, ok := v.Interface().(time.Time)\n\t\treturn ok && t.IsZero()\n\t}\n\treturn false\n}\n\nfunc (s *Section) reflectFrom(val reflect.Value) error {\n\tif val.Kind() == reflect.Ptr {\n\t\tval = val.Elem()\n\t}\n\ttyp := val.Type()\n\n\tfor i := 0; i < typ.NumField(); i++ {\n\t\tfield := val.Field(i)\n\t\ttpField := typ.Field(i)\n\n\t\ttag := tpField.Tag.Get(\"ini\")\n\t\tif tag == \"-\" {\n\t\t\tcontinue\n\t\t}\n\n\t\trawName, omitEmpty, allowShadow := parseTagOptions(tag)\n\t\tif omitEmpty && isEmptyValue(field) {\n\t\t\tcontinue\n\t\t}\n\n\t\tfieldName := s.parseFieldName(tpField.Name, rawName)\n\t\tif len(fieldName) == 0 || !field.CanSet() {\n\t\t\tcontinue\n\t\t}\n\n\t\tif (tpField.Type.Kind() == reflect.Ptr && tpField.Anonymous) ||\n\t\t\t(tpField.Type.Kind() == reflect.Struct && tpField.Type.Name() != \"Time\") {\n\t\t\t// Note: The only error here is section doesn't exist.\n\t\t\tsec, err := s.f.GetSection(fieldName)\n\t\t\tif err != nil {\n\t\t\t\t// Note: fieldName can never be empty here, ignore error.\n\t\t\t\tsec, _ = s.f.NewSection(fieldName)\n\t\t\t}\n\n\t\t\t// Add comment from comment tag\n\t\t\tif len(sec.Comment) == 0 {\n\t\t\t\tsec.Comment = tpField.Tag.Get(\"comment\")\n\t\t\t}\n\n\t\t\tif err = sec.reflectFrom(field); err != nil {\n\t\t\t\treturn fmt.Errorf(\"error reflecting field (%s): %v\", fieldName, err)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\t// Note: Same reason as secion.\n\t\tkey, err := s.GetKey(fieldName)\n\t\tif err != nil {\n\t\t\tkey, _ = s.NewKey(fieldName, \"\")\n\t\t}\n\n\t\t// Add comment from comment tag\n\t\tif len(key.Comment) == 0 {\n\t\t\tkey.Comment = tpField.Tag.Get(\"comment\")\n\t\t}\n\n\t\tif err = reflectWithProperType(tpField.Type, key, field, parseDelim(tpField.Tag.Get(\"delim\")), allowShadow); err != nil {\n\t\t\treturn fmt.Errorf(\"error reflecting field (%s): %v\", fieldName, err)\n\t\t}\n\n\t}\n\treturn nil\n}\n\n// ReflectFrom reflects secion from given struct.\nfunc (s *Section) ReflectFrom(v interface{}) error {\n\ttyp := reflect.TypeOf(v)\n\tval := reflect.ValueOf(v)\n\tif typ.Kind() == reflect.Ptr {\n\t\ttyp = typ.Elem()\n\t\tval = val.Elem()\n\t} else {\n\t\treturn errors.New(\"cannot reflect from non-pointer struct\")\n\t}\n\n\treturn s.reflectFrom(val)\n}\n\n// ReflectFrom reflects file from given struct.\nfunc (f *File) ReflectFrom(v interface{}) error {\n\treturn f.Section(\"\").ReflectFrom(v)\n}\n\n// ReflectFromWithMapper reflects data sources from given struct with name mapper.\nfunc ReflectFromWithMapper(cfg *File, v interface{}, mapper NameMapper) error {\n\tcfg.NameMapper = mapper\n\treturn cfg.ReflectFrom(v)\n}\n\n// ReflectFrom reflects data sources from given struct.\nfunc ReflectFrom(cfg *File, v interface{}) error {\n\treturn ReflectFromWithMapper(cfg, v, nil)\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/.travis.yml",
    "content": "language: go\n\ngo:\n    - \"1.4.x\"\n    - \"1.5.x\"\n    - \"1.6.x\"\n    - \"1.7.x\"\n    - \"1.8.x\"\n    - \"1.9.x\"\n    - \"1.10.x\"\n    - \"1.11.x\"\n    - \"1.12.x\"\n    - \"1.13.x\"\n    - \"tip\"\n\ngo_import_path: gopkg.in/yaml.v2\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/LICENSE",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"{}\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright {yyyy} {name of copyright owner}\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/LICENSE.libyaml",
    "content": "The following files were ported to Go from C files of libyaml, and thus\nare still covered by their original copyright and license:\n\n    apic.go\n    emitterc.go\n    parserc.go\n    readerc.go\n    scannerc.go\n    writerc.go\n    yamlh.go\n    yamlprivateh.go\n\nCopyright (c) 2006 Kirill Simonov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/NOTICE",
    "content": "Copyright 2011-2016 Canonical Ltd.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/README.md",
    "content": "# YAML support for the Go language\n\nIntroduction\n------------\n\nThe yaml package enables Go programs to comfortably encode and decode YAML\nvalues. It was developed within [Canonical](https://www.canonical.com) as\npart of the [juju](https://juju.ubuntu.com) project, and is based on a\npure Go port of the well-known [libyaml](http://pyyaml.org/wiki/LibYAML)\nC library to parse and generate YAML data quickly and reliably.\n\nCompatibility\n-------------\n\nThe yaml package supports most of YAML 1.1 and 1.2, including support for\nanchors, tags, map merging, etc. Multi-document unmarshalling is not yet\nimplemented, and base-60 floats from YAML 1.1 are purposefully not\nsupported since they're a poor design and are gone in YAML 1.2.\n\nInstallation and usage\n----------------------\n\nThe import path for the package is *gopkg.in/yaml.v2*.\n\nTo install it, run:\n\n    go get gopkg.in/yaml.v2\n\nAPI documentation\n-----------------\n\nIf opened in a browser, the import path itself leads to the API documentation:\n\n  * [https://gopkg.in/yaml.v2](https://gopkg.in/yaml.v2)\n\nAPI stability\n-------------\n\nThe package API for yaml v2 will remain stable as described in [gopkg.in](https://gopkg.in).\n\n\nLicense\n-------\n\nThe yaml package is licensed under the Apache License 2.0. Please see the LICENSE file for details.\n\n\nExample\n-------\n\n```Go\npackage main\n\nimport (\n        \"fmt\"\n        \"log\"\n\n        \"gopkg.in/yaml.v2\"\n)\n\nvar data = `\na: Easy!\nb:\n  c: 2\n  d: [3, 4]\n`\n\n// Note: struct fields must be public in order for unmarshal to\n// correctly populate the data.\ntype T struct {\n        A string\n        B struct {\n                RenamedC int   `yaml:\"c\"`\n                D        []int `yaml:\",flow\"`\n        }\n}\n\nfunc main() {\n        t := T{}\n    \n        err := yaml.Unmarshal([]byte(data), &t)\n        if err != nil {\n                log.Fatalf(\"error: %v\", err)\n        }\n        fmt.Printf(\"--- t:\\n%v\\n\\n\", t)\n    \n        d, err := yaml.Marshal(&t)\n        if err != nil {\n                log.Fatalf(\"error: %v\", err)\n        }\n        fmt.Printf(\"--- t dump:\\n%s\\n\\n\", string(d))\n    \n        m := make(map[interface{}]interface{})\n    \n        err = yaml.Unmarshal([]byte(data), &m)\n        if err != nil {\n                log.Fatalf(\"error: %v\", err)\n        }\n        fmt.Printf(\"--- m:\\n%v\\n\\n\", m)\n    \n        d, err = yaml.Marshal(&m)\n        if err != nil {\n                log.Fatalf(\"error: %v\", err)\n        }\n        fmt.Printf(\"--- m dump:\\n%s\\n\\n\", string(d))\n}\n```\n\nThis example will generate the following output:\n\n```\n--- t:\n{Easy! {2 [3 4]}}\n\n--- t dump:\na: Easy!\nb:\n  c: 2\n  d: [3, 4]\n\n\n--- m:\nmap[a:Easy! b:map[c:2 d:[3 4]]]\n\n--- m dump:\na: Easy!\nb:\n  c: 2\n  d:\n  - 3\n  - 4\n```\n\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/apic.go",
    "content": "package yaml\n\nimport (\n\t\"io\"\n)\n\nfunc yaml_insert_token(parser *yaml_parser_t, pos int, token *yaml_token_t) {\n\t//fmt.Println(\"yaml_insert_token\", \"pos:\", pos, \"typ:\", token.typ, \"head:\", parser.tokens_head, \"len:\", len(parser.tokens))\n\n\t// Check if we can move the queue at the beginning of the buffer.\n\tif parser.tokens_head > 0 && len(parser.tokens) == cap(parser.tokens) {\n\t\tif parser.tokens_head != len(parser.tokens) {\n\t\t\tcopy(parser.tokens, parser.tokens[parser.tokens_head:])\n\t\t}\n\t\tparser.tokens = parser.tokens[:len(parser.tokens)-parser.tokens_head]\n\t\tparser.tokens_head = 0\n\t}\n\tparser.tokens = append(parser.tokens, *token)\n\tif pos < 0 {\n\t\treturn\n\t}\n\tcopy(parser.tokens[parser.tokens_head+pos+1:], parser.tokens[parser.tokens_head+pos:])\n\tparser.tokens[parser.tokens_head+pos] = *token\n}\n\n// Create a new parser object.\nfunc yaml_parser_initialize(parser *yaml_parser_t) bool {\n\t*parser = yaml_parser_t{\n\t\traw_buffer: make([]byte, 0, input_raw_buffer_size),\n\t\tbuffer:     make([]byte, 0, input_buffer_size),\n\t}\n\treturn true\n}\n\n// Destroy a parser object.\nfunc yaml_parser_delete(parser *yaml_parser_t) {\n\t*parser = yaml_parser_t{}\n}\n\n// String read handler.\nfunc yaml_string_read_handler(parser *yaml_parser_t, buffer []byte) (n int, err error) {\n\tif parser.input_pos == len(parser.input) {\n\t\treturn 0, io.EOF\n\t}\n\tn = copy(buffer, parser.input[parser.input_pos:])\n\tparser.input_pos += n\n\treturn n, nil\n}\n\n// Reader read handler.\nfunc yaml_reader_read_handler(parser *yaml_parser_t, buffer []byte) (n int, err error) {\n\treturn parser.input_reader.Read(buffer)\n}\n\n// Set a string input.\nfunc yaml_parser_set_input_string(parser *yaml_parser_t, input []byte) {\n\tif parser.read_handler != nil {\n\t\tpanic(\"must set the input source only once\")\n\t}\n\tparser.read_handler = yaml_string_read_handler\n\tparser.input = input\n\tparser.input_pos = 0\n}\n\n// Set a file input.\nfunc yaml_parser_set_input_reader(parser *yaml_parser_t, r io.Reader) {\n\tif parser.read_handler != nil {\n\t\tpanic(\"must set the input source only once\")\n\t}\n\tparser.read_handler = yaml_reader_read_handler\n\tparser.input_reader = r\n}\n\n// Set the source encoding.\nfunc yaml_parser_set_encoding(parser *yaml_parser_t, encoding yaml_encoding_t) {\n\tif parser.encoding != yaml_ANY_ENCODING {\n\t\tpanic(\"must set the encoding only once\")\n\t}\n\tparser.encoding = encoding\n}\n\n// Create a new emitter object.\nfunc yaml_emitter_initialize(emitter *yaml_emitter_t) {\n\t*emitter = yaml_emitter_t{\n\t\tbuffer:     make([]byte, output_buffer_size),\n\t\traw_buffer: make([]byte, 0, output_raw_buffer_size),\n\t\tstates:     make([]yaml_emitter_state_t, 0, initial_stack_size),\n\t\tevents:     make([]yaml_event_t, 0, initial_queue_size),\n\t\tbest_width: -1,\n\t}\n}\n\n// Destroy an emitter object.\nfunc yaml_emitter_delete(emitter *yaml_emitter_t) {\n\t*emitter = yaml_emitter_t{}\n}\n\n// String write handler.\nfunc yaml_string_write_handler(emitter *yaml_emitter_t, buffer []byte) error {\n\t*emitter.output_buffer = append(*emitter.output_buffer, buffer...)\n\treturn nil\n}\n\n// yaml_writer_write_handler uses emitter.output_writer to write the\n// emitted text.\nfunc yaml_writer_write_handler(emitter *yaml_emitter_t, buffer []byte) error {\n\t_, err := emitter.output_writer.Write(buffer)\n\treturn err\n}\n\n// Set a string output.\nfunc yaml_emitter_set_output_string(emitter *yaml_emitter_t, output_buffer *[]byte) {\n\tif emitter.write_handler != nil {\n\t\tpanic(\"must set the output target only once\")\n\t}\n\temitter.write_handler = yaml_string_write_handler\n\temitter.output_buffer = output_buffer\n}\n\n// Set a file output.\nfunc yaml_emitter_set_output_writer(emitter *yaml_emitter_t, w io.Writer) {\n\tif emitter.write_handler != nil {\n\t\tpanic(\"must set the output target only once\")\n\t}\n\temitter.write_handler = yaml_writer_write_handler\n\temitter.output_writer = w\n}\n\n// Set the output encoding.\nfunc yaml_emitter_set_encoding(emitter *yaml_emitter_t, encoding yaml_encoding_t) {\n\tif emitter.encoding != yaml_ANY_ENCODING {\n\t\tpanic(\"must set the output encoding only once\")\n\t}\n\temitter.encoding = encoding\n}\n\n// Set the canonical output style.\nfunc yaml_emitter_set_canonical(emitter *yaml_emitter_t, canonical bool) {\n\temitter.canonical = canonical\n}\n\n//// Set the indentation increment.\nfunc yaml_emitter_set_indent(emitter *yaml_emitter_t, indent int) {\n\tif indent < 2 || indent > 9 {\n\t\tindent = 2\n\t}\n\temitter.best_indent = indent\n}\n\n// Set the preferred line width.\nfunc yaml_emitter_set_width(emitter *yaml_emitter_t, width int) {\n\tif width < 0 {\n\t\twidth = -1\n\t}\n\temitter.best_width = width\n}\n\n// Set if unescaped non-ASCII characters are allowed.\nfunc yaml_emitter_set_unicode(emitter *yaml_emitter_t, unicode bool) {\n\temitter.unicode = unicode\n}\n\n// Set the preferred line break character.\nfunc yaml_emitter_set_break(emitter *yaml_emitter_t, line_break yaml_break_t) {\n\temitter.line_break = line_break\n}\n\n///*\n// * Destroy a token object.\n// */\n//\n//YAML_DECLARE(void)\n//yaml_token_delete(yaml_token_t *token)\n//{\n//    assert(token);  // Non-NULL token object expected.\n//\n//    switch (token.type)\n//    {\n//        case YAML_TAG_DIRECTIVE_TOKEN:\n//            yaml_free(token.data.tag_directive.handle);\n//            yaml_free(token.data.tag_directive.prefix);\n//            break;\n//\n//        case YAML_ALIAS_TOKEN:\n//            yaml_free(token.data.alias.value);\n//            break;\n//\n//        case YAML_ANCHOR_TOKEN:\n//            yaml_free(token.data.anchor.value);\n//            break;\n//\n//        case YAML_TAG_TOKEN:\n//            yaml_free(token.data.tag.handle);\n//            yaml_free(token.data.tag.suffix);\n//            break;\n//\n//        case YAML_SCALAR_TOKEN:\n//            yaml_free(token.data.scalar.value);\n//            break;\n//\n//        default:\n//            break;\n//    }\n//\n//    memset(token, 0, sizeof(yaml_token_t));\n//}\n//\n///*\n// * Check if a string is a valid UTF-8 sequence.\n// *\n// * Check 'reader.c' for more details on UTF-8 encoding.\n// */\n//\n//static int\n//yaml_check_utf8(yaml_char_t *start, size_t length)\n//{\n//    yaml_char_t *end = start+length;\n//    yaml_char_t *pointer = start;\n//\n//    while (pointer < end) {\n//        unsigned char octet;\n//        unsigned int width;\n//        unsigned int value;\n//        size_t k;\n//\n//        octet = pointer[0];\n//        width = (octet & 0x80) == 0x00 ? 1 :\n//                (octet & 0xE0) == 0xC0 ? 2 :\n//                (octet & 0xF0) == 0xE0 ? 3 :\n//                (octet & 0xF8) == 0xF0 ? 4 : 0;\n//        value = (octet & 0x80) == 0x00 ? octet & 0x7F :\n//                (octet & 0xE0) == 0xC0 ? octet & 0x1F :\n//                (octet & 0xF0) == 0xE0 ? octet & 0x0F :\n//                (octet & 0xF8) == 0xF0 ? octet & 0x07 : 0;\n//        if (!width) return 0;\n//        if (pointer+width > end) return 0;\n//        for (k = 1; k < width; k ++) {\n//            octet = pointer[k];\n//            if ((octet & 0xC0) != 0x80) return 0;\n//            value = (value << 6) + (octet & 0x3F);\n//        }\n//        if (!((width == 1) ||\n//            (width == 2 && value >= 0x80) ||\n//            (width == 3 && value >= 0x800) ||\n//            (width == 4 && value >= 0x10000))) return 0;\n//\n//        pointer += width;\n//    }\n//\n//    return 1;\n//}\n//\n\n// Create STREAM-START.\nfunc yaml_stream_start_event_initialize(event *yaml_event_t, encoding yaml_encoding_t) {\n\t*event = yaml_event_t{\n\t\ttyp:      yaml_STREAM_START_EVENT,\n\t\tencoding: encoding,\n\t}\n}\n\n// Create STREAM-END.\nfunc yaml_stream_end_event_initialize(event *yaml_event_t) {\n\t*event = yaml_event_t{\n\t\ttyp: yaml_STREAM_END_EVENT,\n\t}\n}\n\n// Create DOCUMENT-START.\nfunc yaml_document_start_event_initialize(\n\tevent *yaml_event_t,\n\tversion_directive *yaml_version_directive_t,\n\ttag_directives []yaml_tag_directive_t,\n\timplicit bool,\n) {\n\t*event = yaml_event_t{\n\t\ttyp:               yaml_DOCUMENT_START_EVENT,\n\t\tversion_directive: version_directive,\n\t\ttag_directives:    tag_directives,\n\t\timplicit:          implicit,\n\t}\n}\n\n// Create DOCUMENT-END.\nfunc yaml_document_end_event_initialize(event *yaml_event_t, implicit bool) {\n\t*event = yaml_event_t{\n\t\ttyp:      yaml_DOCUMENT_END_EVENT,\n\t\timplicit: implicit,\n\t}\n}\n\n///*\n// * Create ALIAS.\n// */\n//\n//YAML_DECLARE(int)\n//yaml_alias_event_initialize(event *yaml_event_t, anchor *yaml_char_t)\n//{\n//    mark yaml_mark_t = { 0, 0, 0 }\n//    anchor_copy *yaml_char_t = NULL\n//\n//    assert(event) // Non-NULL event object is expected.\n//    assert(anchor) // Non-NULL anchor is expected.\n//\n//    if (!yaml_check_utf8(anchor, strlen((char *)anchor))) return 0\n//\n//    anchor_copy = yaml_strdup(anchor)\n//    if (!anchor_copy)\n//        return 0\n//\n//    ALIAS_EVENT_INIT(*event, anchor_copy, mark, mark)\n//\n//    return 1\n//}\n\n// Create SCALAR.\nfunc yaml_scalar_event_initialize(event *yaml_event_t, anchor, tag, value []byte, plain_implicit, quoted_implicit bool, style yaml_scalar_style_t) bool {\n\t*event = yaml_event_t{\n\t\ttyp:             yaml_SCALAR_EVENT,\n\t\tanchor:          anchor,\n\t\ttag:             tag,\n\t\tvalue:           value,\n\t\timplicit:        plain_implicit,\n\t\tquoted_implicit: quoted_implicit,\n\t\tstyle:           yaml_style_t(style),\n\t}\n\treturn true\n}\n\n// Create SEQUENCE-START.\nfunc yaml_sequence_start_event_initialize(event *yaml_event_t, anchor, tag []byte, implicit bool, style yaml_sequence_style_t) bool {\n\t*event = yaml_event_t{\n\t\ttyp:      yaml_SEQUENCE_START_EVENT,\n\t\tanchor:   anchor,\n\t\ttag:      tag,\n\t\timplicit: implicit,\n\t\tstyle:    yaml_style_t(style),\n\t}\n\treturn true\n}\n\n// Create SEQUENCE-END.\nfunc yaml_sequence_end_event_initialize(event *yaml_event_t) bool {\n\t*event = yaml_event_t{\n\t\ttyp: yaml_SEQUENCE_END_EVENT,\n\t}\n\treturn true\n}\n\n// Create MAPPING-START.\nfunc yaml_mapping_start_event_initialize(event *yaml_event_t, anchor, tag []byte, implicit bool, style yaml_mapping_style_t) {\n\t*event = yaml_event_t{\n\t\ttyp:      yaml_MAPPING_START_EVENT,\n\t\tanchor:   anchor,\n\t\ttag:      tag,\n\t\timplicit: implicit,\n\t\tstyle:    yaml_style_t(style),\n\t}\n}\n\n// Create MAPPING-END.\nfunc yaml_mapping_end_event_initialize(event *yaml_event_t) {\n\t*event = yaml_event_t{\n\t\ttyp: yaml_MAPPING_END_EVENT,\n\t}\n}\n\n// Destroy an event object.\nfunc yaml_event_delete(event *yaml_event_t) {\n\t*event = yaml_event_t{}\n}\n\n///*\n// * Create a document object.\n// */\n//\n//YAML_DECLARE(int)\n//yaml_document_initialize(document *yaml_document_t,\n//        version_directive *yaml_version_directive_t,\n//        tag_directives_start *yaml_tag_directive_t,\n//        tag_directives_end *yaml_tag_directive_t,\n//        start_implicit int, end_implicit int)\n//{\n//    struct {\n//        error yaml_error_type_t\n//    } context\n//    struct {\n//        start *yaml_node_t\n//        end *yaml_node_t\n//        top *yaml_node_t\n//    } nodes = { NULL, NULL, NULL }\n//    version_directive_copy *yaml_version_directive_t = NULL\n//    struct {\n//        start *yaml_tag_directive_t\n//        end *yaml_tag_directive_t\n//        top *yaml_tag_directive_t\n//    } tag_directives_copy = { NULL, NULL, NULL }\n//    value yaml_tag_directive_t = { NULL, NULL }\n//    mark yaml_mark_t = { 0, 0, 0 }\n//\n//    assert(document) // Non-NULL document object is expected.\n//    assert((tag_directives_start && tag_directives_end) ||\n//            (tag_directives_start == tag_directives_end))\n//                            // Valid tag directives are expected.\n//\n//    if (!STACK_INIT(&context, nodes, INITIAL_STACK_SIZE)) goto error\n//\n//    if (version_directive) {\n//        version_directive_copy = yaml_malloc(sizeof(yaml_version_directive_t))\n//        if (!version_directive_copy) goto error\n//        version_directive_copy.major = version_directive.major\n//        version_directive_copy.minor = version_directive.minor\n//    }\n//\n//    if (tag_directives_start != tag_directives_end) {\n//        tag_directive *yaml_tag_directive_t\n//        if (!STACK_INIT(&context, tag_directives_copy, INITIAL_STACK_SIZE))\n//            goto error\n//        for (tag_directive = tag_directives_start\n//                tag_directive != tag_directives_end; tag_directive ++) {\n//            assert(tag_directive.handle)\n//            assert(tag_directive.prefix)\n//            if (!yaml_check_utf8(tag_directive.handle,\n//                        strlen((char *)tag_directive.handle)))\n//                goto error\n//            if (!yaml_check_utf8(tag_directive.prefix,\n//                        strlen((char *)tag_directive.prefix)))\n//                goto error\n//            value.handle = yaml_strdup(tag_directive.handle)\n//            value.prefix = yaml_strdup(tag_directive.prefix)\n//            if (!value.handle || !value.prefix) goto error\n//            if (!PUSH(&context, tag_directives_copy, value))\n//                goto error\n//            value.handle = NULL\n//            value.prefix = NULL\n//        }\n//    }\n//\n//    DOCUMENT_INIT(*document, nodes.start, nodes.end, version_directive_copy,\n//            tag_directives_copy.start, tag_directives_copy.top,\n//            start_implicit, end_implicit, mark, mark)\n//\n//    return 1\n//\n//error:\n//    STACK_DEL(&context, nodes)\n//    yaml_free(version_directive_copy)\n//    while (!STACK_EMPTY(&context, tag_directives_copy)) {\n//        value yaml_tag_directive_t = POP(&context, tag_directives_copy)\n//        yaml_free(value.handle)\n//        yaml_free(value.prefix)\n//    }\n//    STACK_DEL(&context, tag_directives_copy)\n//    yaml_free(value.handle)\n//    yaml_free(value.prefix)\n//\n//    return 0\n//}\n//\n///*\n// * Destroy a document object.\n// */\n//\n//YAML_DECLARE(void)\n//yaml_document_delete(document *yaml_document_t)\n//{\n//    struct {\n//        error yaml_error_type_t\n//    } context\n//    tag_directive *yaml_tag_directive_t\n//\n//    context.error = YAML_NO_ERROR // Eliminate a compiler warning.\n//\n//    assert(document) // Non-NULL document object is expected.\n//\n//    while (!STACK_EMPTY(&context, document.nodes)) {\n//        node yaml_node_t = POP(&context, document.nodes)\n//        yaml_free(node.tag)\n//        switch (node.type) {\n//            case YAML_SCALAR_NODE:\n//                yaml_free(node.data.scalar.value)\n//                break\n//            case YAML_SEQUENCE_NODE:\n//                STACK_DEL(&context, node.data.sequence.items)\n//                break\n//            case YAML_MAPPING_NODE:\n//                STACK_DEL(&context, node.data.mapping.pairs)\n//                break\n//            default:\n//                assert(0) // Should not happen.\n//        }\n//    }\n//    STACK_DEL(&context, document.nodes)\n//\n//    yaml_free(document.version_directive)\n//    for (tag_directive = document.tag_directives.start\n//            tag_directive != document.tag_directives.end\n//            tag_directive++) {\n//        yaml_free(tag_directive.handle)\n//        yaml_free(tag_directive.prefix)\n//    }\n//    yaml_free(document.tag_directives.start)\n//\n//    memset(document, 0, sizeof(yaml_document_t))\n//}\n//\n///**\n// * Get a document node.\n// */\n//\n//YAML_DECLARE(yaml_node_t *)\n//yaml_document_get_node(document *yaml_document_t, index int)\n//{\n//    assert(document) // Non-NULL document object is expected.\n//\n//    if (index > 0 && document.nodes.start + index <= document.nodes.top) {\n//        return document.nodes.start + index - 1\n//    }\n//    return NULL\n//}\n//\n///**\n// * Get the root object.\n// */\n//\n//YAML_DECLARE(yaml_node_t *)\n//yaml_document_get_root_node(document *yaml_document_t)\n//{\n//    assert(document) // Non-NULL document object is expected.\n//\n//    if (document.nodes.top != document.nodes.start) {\n//        return document.nodes.start\n//    }\n//    return NULL\n//}\n//\n///*\n// * Add a scalar node to a document.\n// */\n//\n//YAML_DECLARE(int)\n//yaml_document_add_scalar(document *yaml_document_t,\n//        tag *yaml_char_t, value *yaml_char_t, length int,\n//        style yaml_scalar_style_t)\n//{\n//    struct {\n//        error yaml_error_type_t\n//    } context\n//    mark yaml_mark_t = { 0, 0, 0 }\n//    tag_copy *yaml_char_t = NULL\n//    value_copy *yaml_char_t = NULL\n//    node yaml_node_t\n//\n//    assert(document) // Non-NULL document object is expected.\n//    assert(value) // Non-NULL value is expected.\n//\n//    if (!tag) {\n//        tag = (yaml_char_t *)YAML_DEFAULT_SCALAR_TAG\n//    }\n//\n//    if (!yaml_check_utf8(tag, strlen((char *)tag))) goto error\n//    tag_copy = yaml_strdup(tag)\n//    if (!tag_copy) goto error\n//\n//    if (length < 0) {\n//        length = strlen((char *)value)\n//    }\n//\n//    if (!yaml_check_utf8(value, length)) goto error\n//    value_copy = yaml_malloc(length+1)\n//    if (!value_copy) goto error\n//    memcpy(value_copy, value, length)\n//    value_copy[length] = '\\0'\n//\n//    SCALAR_NODE_INIT(node, tag_copy, value_copy, length, style, mark, mark)\n//    if (!PUSH(&context, document.nodes, node)) goto error\n//\n//    return document.nodes.top - document.nodes.start\n//\n//error:\n//    yaml_free(tag_copy)\n//    yaml_free(value_copy)\n//\n//    return 0\n//}\n//\n///*\n// * Add a sequence node to a document.\n// */\n//\n//YAML_DECLARE(int)\n//yaml_document_add_sequence(document *yaml_document_t,\n//        tag *yaml_char_t, style yaml_sequence_style_t)\n//{\n//    struct {\n//        error yaml_error_type_t\n//    } context\n//    mark yaml_mark_t = { 0, 0, 0 }\n//    tag_copy *yaml_char_t = NULL\n//    struct {\n//        start *yaml_node_item_t\n//        end *yaml_node_item_t\n//        top *yaml_node_item_t\n//    } items = { NULL, NULL, NULL }\n//    node yaml_node_t\n//\n//    assert(document) // Non-NULL document object is expected.\n//\n//    if (!tag) {\n//        tag = (yaml_char_t *)YAML_DEFAULT_SEQUENCE_TAG\n//    }\n//\n//    if (!yaml_check_utf8(tag, strlen((char *)tag))) goto error\n//    tag_copy = yaml_strdup(tag)\n//    if (!tag_copy) goto error\n//\n//    if (!STACK_INIT(&context, items, INITIAL_STACK_SIZE)) goto error\n//\n//    SEQUENCE_NODE_INIT(node, tag_copy, items.start, items.end,\n//            style, mark, mark)\n//    if (!PUSH(&context, document.nodes, node)) goto error\n//\n//    return document.nodes.top - document.nodes.start\n//\n//error:\n//    STACK_DEL(&context, items)\n//    yaml_free(tag_copy)\n//\n//    return 0\n//}\n//\n///*\n// * Add a mapping node to a document.\n// */\n//\n//YAML_DECLARE(int)\n//yaml_document_add_mapping(document *yaml_document_t,\n//        tag *yaml_char_t, style yaml_mapping_style_t)\n//{\n//    struct {\n//        error yaml_error_type_t\n//    } context\n//    mark yaml_mark_t = { 0, 0, 0 }\n//    tag_copy *yaml_char_t = NULL\n//    struct {\n//        start *yaml_node_pair_t\n//        end *yaml_node_pair_t\n//        top *yaml_node_pair_t\n//    } pairs = { NULL, NULL, NULL }\n//    node yaml_node_t\n//\n//    assert(document) // Non-NULL document object is expected.\n//\n//    if (!tag) {\n//        tag = (yaml_char_t *)YAML_DEFAULT_MAPPING_TAG\n//    }\n//\n//    if (!yaml_check_utf8(tag, strlen((char *)tag))) goto error\n//    tag_copy = yaml_strdup(tag)\n//    if (!tag_copy) goto error\n//\n//    if (!STACK_INIT(&context, pairs, INITIAL_STACK_SIZE)) goto error\n//\n//    MAPPING_NODE_INIT(node, tag_copy, pairs.start, pairs.end,\n//            style, mark, mark)\n//    if (!PUSH(&context, document.nodes, node)) goto error\n//\n//    return document.nodes.top - document.nodes.start\n//\n//error:\n//    STACK_DEL(&context, pairs)\n//    yaml_free(tag_copy)\n//\n//    return 0\n//}\n//\n///*\n// * Append an item to a sequence node.\n// */\n//\n//YAML_DECLARE(int)\n//yaml_document_append_sequence_item(document *yaml_document_t,\n//        sequence int, item int)\n//{\n//    struct {\n//        error yaml_error_type_t\n//    } context\n//\n//    assert(document) // Non-NULL document is required.\n//    assert(sequence > 0\n//            && document.nodes.start + sequence <= document.nodes.top)\n//                            // Valid sequence id is required.\n//    assert(document.nodes.start[sequence-1].type == YAML_SEQUENCE_NODE)\n//                            // A sequence node is required.\n//    assert(item > 0 && document.nodes.start + item <= document.nodes.top)\n//                            // Valid item id is required.\n//\n//    if (!PUSH(&context,\n//                document.nodes.start[sequence-1].data.sequence.items, item))\n//        return 0\n//\n//    return 1\n//}\n//\n///*\n// * Append a pair of a key and a value to a mapping node.\n// */\n//\n//YAML_DECLARE(int)\n//yaml_document_append_mapping_pair(document *yaml_document_t,\n//        mapping int, key int, value int)\n//{\n//    struct {\n//        error yaml_error_type_t\n//    } context\n//\n//    pair yaml_node_pair_t\n//\n//    assert(document) // Non-NULL document is required.\n//    assert(mapping > 0\n//            && document.nodes.start + mapping <= document.nodes.top)\n//                            // Valid mapping id is required.\n//    assert(document.nodes.start[mapping-1].type == YAML_MAPPING_NODE)\n//                            // A mapping node is required.\n//    assert(key > 0 && document.nodes.start + key <= document.nodes.top)\n//                            // Valid key id is required.\n//    assert(value > 0 && document.nodes.start + value <= document.nodes.top)\n//                            // Valid value id is required.\n//\n//    pair.key = key\n//    pair.value = value\n//\n//    if (!PUSH(&context,\n//                document.nodes.start[mapping-1].data.mapping.pairs, pair))\n//        return 0\n//\n//    return 1\n//}\n//\n//\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/decode.go",
    "content": "package yaml\n\nimport (\n\t\"encoding\"\n\t\"encoding/base64\"\n\t\"fmt\"\n\t\"io\"\n\t\"math\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"time\"\n)\n\nconst (\n\tdocumentNode = 1 << iota\n\tmappingNode\n\tsequenceNode\n\tscalarNode\n\taliasNode\n)\n\ntype node struct {\n\tkind         int\n\tline, column int\n\ttag          string\n\t// For an alias node, alias holds the resolved alias.\n\talias    *node\n\tvalue    string\n\timplicit bool\n\tchildren []*node\n\tanchors  map[string]*node\n}\n\n// ----------------------------------------------------------------------------\n// Parser, produces a node tree out of a libyaml event stream.\n\ntype parser struct {\n\tparser   yaml_parser_t\n\tevent    yaml_event_t\n\tdoc      *node\n\tdoneInit bool\n}\n\nfunc newParser(b []byte) *parser {\n\tp := parser{}\n\tif !yaml_parser_initialize(&p.parser) {\n\t\tpanic(\"failed to initialize YAML emitter\")\n\t}\n\tif len(b) == 0 {\n\t\tb = []byte{'\\n'}\n\t}\n\tyaml_parser_set_input_string(&p.parser, b)\n\treturn &p\n}\n\nfunc newParserFromReader(r io.Reader) *parser {\n\tp := parser{}\n\tif !yaml_parser_initialize(&p.parser) {\n\t\tpanic(\"failed to initialize YAML emitter\")\n\t}\n\tyaml_parser_set_input_reader(&p.parser, r)\n\treturn &p\n}\n\nfunc (p *parser) init() {\n\tif p.doneInit {\n\t\treturn\n\t}\n\tp.expect(yaml_STREAM_START_EVENT)\n\tp.doneInit = true\n}\n\nfunc (p *parser) destroy() {\n\tif p.event.typ != yaml_NO_EVENT {\n\t\tyaml_event_delete(&p.event)\n\t}\n\tyaml_parser_delete(&p.parser)\n}\n\n// expect consumes an event from the event stream and\n// checks that it's of the expected type.\nfunc (p *parser) expect(e yaml_event_type_t) {\n\tif p.event.typ == yaml_NO_EVENT {\n\t\tif !yaml_parser_parse(&p.parser, &p.event) {\n\t\t\tp.fail()\n\t\t}\n\t}\n\tif p.event.typ == yaml_STREAM_END_EVENT {\n\t\tfailf(\"attempted to go past the end of stream; corrupted value?\")\n\t}\n\tif p.event.typ != e {\n\t\tp.parser.problem = fmt.Sprintf(\"expected %s event but got %s\", e, p.event.typ)\n\t\tp.fail()\n\t}\n\tyaml_event_delete(&p.event)\n\tp.event.typ = yaml_NO_EVENT\n}\n\n// peek peeks at the next event in the event stream,\n// puts the results into p.event and returns the event type.\nfunc (p *parser) peek() yaml_event_type_t {\n\tif p.event.typ != yaml_NO_EVENT {\n\t\treturn p.event.typ\n\t}\n\tif !yaml_parser_parse(&p.parser, &p.event) {\n\t\tp.fail()\n\t}\n\treturn p.event.typ\n}\n\nfunc (p *parser) fail() {\n\tvar where string\n\tvar line int\n\tif p.parser.problem_mark.line != 0 {\n\t\tline = p.parser.problem_mark.line\n\t\t// Scanner errors don't iterate line before returning error\n\t\tif p.parser.error == yaml_SCANNER_ERROR {\n\t\t\tline++\n\t\t}\n\t} else if p.parser.context_mark.line != 0 {\n\t\tline = p.parser.context_mark.line\n\t}\n\tif line != 0 {\n\t\twhere = \"line \" + strconv.Itoa(line) + \": \"\n\t}\n\tvar msg string\n\tif len(p.parser.problem) > 0 {\n\t\tmsg = p.parser.problem\n\t} else {\n\t\tmsg = \"unknown problem parsing YAML content\"\n\t}\n\tfailf(\"%s%s\", where, msg)\n}\n\nfunc (p *parser) anchor(n *node, anchor []byte) {\n\tif anchor != nil {\n\t\tp.doc.anchors[string(anchor)] = n\n\t}\n}\n\nfunc (p *parser) parse() *node {\n\tp.init()\n\tswitch p.peek() {\n\tcase yaml_SCALAR_EVENT:\n\t\treturn p.scalar()\n\tcase yaml_ALIAS_EVENT:\n\t\treturn p.alias()\n\tcase yaml_MAPPING_START_EVENT:\n\t\treturn p.mapping()\n\tcase yaml_SEQUENCE_START_EVENT:\n\t\treturn p.sequence()\n\tcase yaml_DOCUMENT_START_EVENT:\n\t\treturn p.document()\n\tcase yaml_STREAM_END_EVENT:\n\t\t// Happens when attempting to decode an empty buffer.\n\t\treturn nil\n\tdefault:\n\t\tpanic(\"attempted to parse unknown event: \" + p.event.typ.String())\n\t}\n}\n\nfunc (p *parser) node(kind int) *node {\n\treturn &node{\n\t\tkind:   kind,\n\t\tline:   p.event.start_mark.line,\n\t\tcolumn: p.event.start_mark.column,\n\t}\n}\n\nfunc (p *parser) document() *node {\n\tn := p.node(documentNode)\n\tn.anchors = make(map[string]*node)\n\tp.doc = n\n\tp.expect(yaml_DOCUMENT_START_EVENT)\n\tn.children = append(n.children, p.parse())\n\tp.expect(yaml_DOCUMENT_END_EVENT)\n\treturn n\n}\n\nfunc (p *parser) alias() *node {\n\tn := p.node(aliasNode)\n\tn.value = string(p.event.anchor)\n\tn.alias = p.doc.anchors[n.value]\n\tif n.alias == nil {\n\t\tfailf(\"unknown anchor '%s' referenced\", n.value)\n\t}\n\tp.expect(yaml_ALIAS_EVENT)\n\treturn n\n}\n\nfunc (p *parser) scalar() *node {\n\tn := p.node(scalarNode)\n\tn.value = string(p.event.value)\n\tn.tag = string(p.event.tag)\n\tn.implicit = p.event.implicit\n\tp.anchor(n, p.event.anchor)\n\tp.expect(yaml_SCALAR_EVENT)\n\treturn n\n}\n\nfunc (p *parser) sequence() *node {\n\tn := p.node(sequenceNode)\n\tp.anchor(n, p.event.anchor)\n\tp.expect(yaml_SEQUENCE_START_EVENT)\n\tfor p.peek() != yaml_SEQUENCE_END_EVENT {\n\t\tn.children = append(n.children, p.parse())\n\t}\n\tp.expect(yaml_SEQUENCE_END_EVENT)\n\treturn n\n}\n\nfunc (p *parser) mapping() *node {\n\tn := p.node(mappingNode)\n\tp.anchor(n, p.event.anchor)\n\tp.expect(yaml_MAPPING_START_EVENT)\n\tfor p.peek() != yaml_MAPPING_END_EVENT {\n\t\tn.children = append(n.children, p.parse(), p.parse())\n\t}\n\tp.expect(yaml_MAPPING_END_EVENT)\n\treturn n\n}\n\n// ----------------------------------------------------------------------------\n// Decoder, unmarshals a node into a provided value.\n\ntype decoder struct {\n\tdoc     *node\n\taliases map[*node]bool\n\tmapType reflect.Type\n\tterrors []string\n\tstrict  bool\n\n\tdecodeCount int\n\taliasCount  int\n\taliasDepth  int\n}\n\nvar (\n\tmapItemType    = reflect.TypeOf(MapItem{})\n\tdurationType   = reflect.TypeOf(time.Duration(0))\n\tdefaultMapType = reflect.TypeOf(map[interface{}]interface{}{})\n\tifaceType      = defaultMapType.Elem()\n\ttimeType       = reflect.TypeOf(time.Time{})\n\tptrTimeType    = reflect.TypeOf(&time.Time{})\n)\n\nfunc newDecoder(strict bool) *decoder {\n\td := &decoder{mapType: defaultMapType, strict: strict}\n\td.aliases = make(map[*node]bool)\n\treturn d\n}\n\nfunc (d *decoder) terror(n *node, tag string, out reflect.Value) {\n\tif n.tag != \"\" {\n\t\ttag = n.tag\n\t}\n\tvalue := n.value\n\tif tag != yaml_SEQ_TAG && tag != yaml_MAP_TAG {\n\t\tif len(value) > 10 {\n\t\t\tvalue = \" `\" + value[:7] + \"...`\"\n\t\t} else {\n\t\t\tvalue = \" `\" + value + \"`\"\n\t\t}\n\t}\n\td.terrors = append(d.terrors, fmt.Sprintf(\"line %d: cannot unmarshal %s%s into %s\", n.line+1, shortTag(tag), value, out.Type()))\n}\n\nfunc (d *decoder) callUnmarshaler(n *node, u Unmarshaler) (good bool) {\n\tterrlen := len(d.terrors)\n\terr := u.UnmarshalYAML(func(v interface{}) (err error) {\n\t\tdefer handleErr(&err)\n\t\td.unmarshal(n, reflect.ValueOf(v))\n\t\tif len(d.terrors) > terrlen {\n\t\t\tissues := d.terrors[terrlen:]\n\t\t\td.terrors = d.terrors[:terrlen]\n\t\t\treturn &TypeError{issues}\n\t\t}\n\t\treturn nil\n\t})\n\tif e, ok := err.(*TypeError); ok {\n\t\td.terrors = append(d.terrors, e.Errors...)\n\t\treturn false\n\t}\n\tif err != nil {\n\t\tfail(err)\n\t}\n\treturn true\n}\n\n// d.prepare initializes and dereferences pointers and calls UnmarshalYAML\n// if a value is found to implement it.\n// It returns the initialized and dereferenced out value, whether\n// unmarshalling was already done by UnmarshalYAML, and if so whether\n// its types unmarshalled appropriately.\n//\n// If n holds a null value, prepare returns before doing anything.\nfunc (d *decoder) prepare(n *node, out reflect.Value) (newout reflect.Value, unmarshaled, good bool) {\n\tif n.tag == yaml_NULL_TAG || n.kind == scalarNode && n.tag == \"\" && (n.value == \"null\" || n.value == \"~\" || n.value == \"\" && n.implicit) {\n\t\treturn out, false, false\n\t}\n\tagain := true\n\tfor again {\n\t\tagain = false\n\t\tif out.Kind() == reflect.Ptr {\n\t\t\tif out.IsNil() {\n\t\t\t\tout.Set(reflect.New(out.Type().Elem()))\n\t\t\t}\n\t\t\tout = out.Elem()\n\t\t\tagain = true\n\t\t}\n\t\tif out.CanAddr() {\n\t\t\tif u, ok := out.Addr().Interface().(Unmarshaler); ok {\n\t\t\t\tgood = d.callUnmarshaler(n, u)\n\t\t\t\treturn out, true, good\n\t\t\t}\n\t\t}\n\t}\n\treturn out, false, false\n}\n\nconst (\n\t// 400,000 decode operations is ~500kb of dense object declarations, or\n\t// ~5kb of dense object declarations with 10000% alias expansion\n\talias_ratio_range_low = 400000\n\n\t// 4,000,000 decode operations is ~5MB of dense object declarations, or\n\t// ~4.5MB of dense object declarations with 10% alias expansion\n\talias_ratio_range_high = 4000000\n\n\t// alias_ratio_range is the range over which we scale allowed alias ratios\n\talias_ratio_range = float64(alias_ratio_range_high - alias_ratio_range_low)\n)\n\nfunc allowedAliasRatio(decodeCount int) float64 {\n\tswitch {\n\tcase decodeCount <= alias_ratio_range_low:\n\t\t// allow 99% to come from alias expansion for small-to-medium documents\n\t\treturn 0.99\n\tcase decodeCount >= alias_ratio_range_high:\n\t\t// allow 10% to come from alias expansion for very large documents\n\t\treturn 0.10\n\tdefault:\n\t\t// scale smoothly from 99% down to 10% over the range.\n\t\t// this maps to 396,000 - 400,000 allowed alias-driven decodes over the range.\n\t\t// 400,000 decode operations is ~100MB of allocations in worst-case scenarios (single-item maps).\n\t\treturn 0.99 - 0.89*(float64(decodeCount-alias_ratio_range_low)/alias_ratio_range)\n\t}\n}\n\nfunc (d *decoder) unmarshal(n *node, out reflect.Value) (good bool) {\n\td.decodeCount++\n\tif d.aliasDepth > 0 {\n\t\td.aliasCount++\n\t}\n\tif d.aliasCount > 100 && d.decodeCount > 1000 && float64(d.aliasCount)/float64(d.decodeCount) > allowedAliasRatio(d.decodeCount) {\n\t\tfailf(\"document contains excessive aliasing\")\n\t}\n\tswitch n.kind {\n\tcase documentNode:\n\t\treturn d.document(n, out)\n\tcase aliasNode:\n\t\treturn d.alias(n, out)\n\t}\n\tout, unmarshaled, good := d.prepare(n, out)\n\tif unmarshaled {\n\t\treturn good\n\t}\n\tswitch n.kind {\n\tcase scalarNode:\n\t\tgood = d.scalar(n, out)\n\tcase mappingNode:\n\t\tgood = d.mapping(n, out)\n\tcase sequenceNode:\n\t\tgood = d.sequence(n, out)\n\tdefault:\n\t\tpanic(\"internal error: unknown node kind: \" + strconv.Itoa(n.kind))\n\t}\n\treturn good\n}\n\nfunc (d *decoder) document(n *node, out reflect.Value) (good bool) {\n\tif len(n.children) == 1 {\n\t\td.doc = n\n\t\td.unmarshal(n.children[0], out)\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc (d *decoder) alias(n *node, out reflect.Value) (good bool) {\n\tif d.aliases[n] {\n\t\t// TODO this could actually be allowed in some circumstances.\n\t\tfailf(\"anchor '%s' value contains itself\", n.value)\n\t}\n\td.aliases[n] = true\n\td.aliasDepth++\n\tgood = d.unmarshal(n.alias, out)\n\td.aliasDepth--\n\tdelete(d.aliases, n)\n\treturn good\n}\n\nvar zeroValue reflect.Value\n\nfunc resetMap(out reflect.Value) {\n\tfor _, k := range out.MapKeys() {\n\t\tout.SetMapIndex(k, zeroValue)\n\t}\n}\n\nfunc (d *decoder) scalar(n *node, out reflect.Value) bool {\n\tvar tag string\n\tvar resolved interface{}\n\tif n.tag == \"\" && !n.implicit {\n\t\ttag = yaml_STR_TAG\n\t\tresolved = n.value\n\t} else {\n\t\ttag, resolved = resolve(n.tag, n.value)\n\t\tif tag == yaml_BINARY_TAG {\n\t\t\tdata, err := base64.StdEncoding.DecodeString(resolved.(string))\n\t\t\tif err != nil {\n\t\t\t\tfailf(\"!!binary value contains invalid base64 data\")\n\t\t\t}\n\t\t\tresolved = string(data)\n\t\t}\n\t}\n\tif resolved == nil {\n\t\tif out.Kind() == reflect.Map && !out.CanAddr() {\n\t\t\tresetMap(out)\n\t\t} else {\n\t\t\tout.Set(reflect.Zero(out.Type()))\n\t\t}\n\t\treturn true\n\t}\n\tif resolvedv := reflect.ValueOf(resolved); out.Type() == resolvedv.Type() {\n\t\t// We've resolved to exactly the type we want, so use that.\n\t\tout.Set(resolvedv)\n\t\treturn true\n\t}\n\t// Perhaps we can use the value as a TextUnmarshaler to\n\t// set its value.\n\tif out.CanAddr() {\n\t\tu, ok := out.Addr().Interface().(encoding.TextUnmarshaler)\n\t\tif ok {\n\t\t\tvar text []byte\n\t\t\tif tag == yaml_BINARY_TAG {\n\t\t\t\ttext = []byte(resolved.(string))\n\t\t\t} else {\n\t\t\t\t// We let any value be unmarshaled into TextUnmarshaler.\n\t\t\t\t// That might be more lax than we'd like, but the\n\t\t\t\t// TextUnmarshaler itself should bowl out any dubious values.\n\t\t\t\ttext = []byte(n.value)\n\t\t\t}\n\t\t\terr := u.UnmarshalText(text)\n\t\t\tif err != nil {\n\t\t\t\tfail(err)\n\t\t\t}\n\t\t\treturn true\n\t\t}\n\t}\n\tswitch out.Kind() {\n\tcase reflect.String:\n\t\tif tag == yaml_BINARY_TAG {\n\t\t\tout.SetString(resolved.(string))\n\t\t\treturn true\n\t\t}\n\t\tif resolved != nil {\n\t\t\tout.SetString(n.value)\n\t\t\treturn true\n\t\t}\n\tcase reflect.Interface:\n\t\tif resolved == nil {\n\t\t\tout.Set(reflect.Zero(out.Type()))\n\t\t} else if tag == yaml_TIMESTAMP_TAG {\n\t\t\t// It looks like a timestamp but for backward compatibility\n\t\t\t// reasons we set it as a string, so that code that unmarshals\n\t\t\t// timestamp-like values into interface{} will continue to\n\t\t\t// see a string and not a time.Time.\n\t\t\t// TODO(v3) Drop this.\n\t\t\tout.Set(reflect.ValueOf(n.value))\n\t\t} else {\n\t\t\tout.Set(reflect.ValueOf(resolved))\n\t\t}\n\t\treturn true\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch resolved := resolved.(type) {\n\t\tcase int:\n\t\t\tif !out.OverflowInt(int64(resolved)) {\n\t\t\t\tout.SetInt(int64(resolved))\n\t\t\t\treturn true\n\t\t\t}\n\t\tcase int64:\n\t\t\tif !out.OverflowInt(resolved) {\n\t\t\t\tout.SetInt(resolved)\n\t\t\t\treturn true\n\t\t\t}\n\t\tcase uint64:\n\t\t\tif resolved <= math.MaxInt64 && !out.OverflowInt(int64(resolved)) {\n\t\t\t\tout.SetInt(int64(resolved))\n\t\t\t\treturn true\n\t\t\t}\n\t\tcase float64:\n\t\t\tif resolved <= math.MaxInt64 && !out.OverflowInt(int64(resolved)) {\n\t\t\t\tout.SetInt(int64(resolved))\n\t\t\t\treturn true\n\t\t\t}\n\t\tcase string:\n\t\t\tif out.Type() == durationType {\n\t\t\t\td, err := time.ParseDuration(resolved)\n\t\t\t\tif err == nil {\n\t\t\t\t\tout.SetInt(int64(d))\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch resolved := resolved.(type) {\n\t\tcase int:\n\t\t\tif resolved >= 0 && !out.OverflowUint(uint64(resolved)) {\n\t\t\t\tout.SetUint(uint64(resolved))\n\t\t\t\treturn true\n\t\t\t}\n\t\tcase int64:\n\t\t\tif resolved >= 0 && !out.OverflowUint(uint64(resolved)) {\n\t\t\t\tout.SetUint(uint64(resolved))\n\t\t\t\treturn true\n\t\t\t}\n\t\tcase uint64:\n\t\t\tif !out.OverflowUint(uint64(resolved)) {\n\t\t\t\tout.SetUint(uint64(resolved))\n\t\t\t\treturn true\n\t\t\t}\n\t\tcase float64:\n\t\t\tif resolved <= math.MaxUint64 && !out.OverflowUint(uint64(resolved)) {\n\t\t\t\tout.SetUint(uint64(resolved))\n\t\t\t\treturn true\n\t\t\t}\n\t\t}\n\tcase reflect.Bool:\n\t\tswitch resolved := resolved.(type) {\n\t\tcase bool:\n\t\t\tout.SetBool(resolved)\n\t\t\treturn true\n\t\t}\n\tcase reflect.Float32, reflect.Float64:\n\t\tswitch resolved := resolved.(type) {\n\t\tcase int:\n\t\t\tout.SetFloat(float64(resolved))\n\t\t\treturn true\n\t\tcase int64:\n\t\t\tout.SetFloat(float64(resolved))\n\t\t\treturn true\n\t\tcase uint64:\n\t\t\tout.SetFloat(float64(resolved))\n\t\t\treturn true\n\t\tcase float64:\n\t\t\tout.SetFloat(resolved)\n\t\t\treturn true\n\t\t}\n\tcase reflect.Struct:\n\t\tif resolvedv := reflect.ValueOf(resolved); out.Type() == resolvedv.Type() {\n\t\t\tout.Set(resolvedv)\n\t\t\treturn true\n\t\t}\n\tcase reflect.Ptr:\n\t\tif out.Type().Elem() == reflect.TypeOf(resolved) {\n\t\t\t// TODO DOes this make sense? When is out a Ptr except when decoding a nil value?\n\t\t\telem := reflect.New(out.Type().Elem())\n\t\t\telem.Elem().Set(reflect.ValueOf(resolved))\n\t\t\tout.Set(elem)\n\t\t\treturn true\n\t\t}\n\t}\n\td.terror(n, tag, out)\n\treturn false\n}\n\nfunc settableValueOf(i interface{}) reflect.Value {\n\tv := reflect.ValueOf(i)\n\tsv := reflect.New(v.Type()).Elem()\n\tsv.Set(v)\n\treturn sv\n}\n\nfunc (d *decoder) sequence(n *node, out reflect.Value) (good bool) {\n\tl := len(n.children)\n\n\tvar iface reflect.Value\n\tswitch out.Kind() {\n\tcase reflect.Slice:\n\t\tout.Set(reflect.MakeSlice(out.Type(), l, l))\n\tcase reflect.Array:\n\t\tif l != out.Len() {\n\t\t\tfailf(\"invalid array: want %d elements but got %d\", out.Len(), l)\n\t\t}\n\tcase reflect.Interface:\n\t\t// No type hints. Will have to use a generic sequence.\n\t\tiface = out\n\t\tout = settableValueOf(make([]interface{}, l))\n\tdefault:\n\t\td.terror(n, yaml_SEQ_TAG, out)\n\t\treturn false\n\t}\n\tet := out.Type().Elem()\n\n\tj := 0\n\tfor i := 0; i < l; i++ {\n\t\te := reflect.New(et).Elem()\n\t\tif ok := d.unmarshal(n.children[i], e); ok {\n\t\t\tout.Index(j).Set(e)\n\t\t\tj++\n\t\t}\n\t}\n\tif out.Kind() != reflect.Array {\n\t\tout.Set(out.Slice(0, j))\n\t}\n\tif iface.IsValid() {\n\t\tiface.Set(out)\n\t}\n\treturn true\n}\n\nfunc (d *decoder) mapping(n *node, out reflect.Value) (good bool) {\n\tswitch out.Kind() {\n\tcase reflect.Struct:\n\t\treturn d.mappingStruct(n, out)\n\tcase reflect.Slice:\n\t\treturn d.mappingSlice(n, out)\n\tcase reflect.Map:\n\t\t// okay\n\tcase reflect.Interface:\n\t\tif d.mapType.Kind() == reflect.Map {\n\t\t\tiface := out\n\t\t\tout = reflect.MakeMap(d.mapType)\n\t\t\tiface.Set(out)\n\t\t} else {\n\t\t\tslicev := reflect.New(d.mapType).Elem()\n\t\t\tif !d.mappingSlice(n, slicev) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tout.Set(slicev)\n\t\t\treturn true\n\t\t}\n\tdefault:\n\t\td.terror(n, yaml_MAP_TAG, out)\n\t\treturn false\n\t}\n\toutt := out.Type()\n\tkt := outt.Key()\n\tet := outt.Elem()\n\n\tmapType := d.mapType\n\tif outt.Key() == ifaceType && outt.Elem() == ifaceType {\n\t\td.mapType = outt\n\t}\n\n\tif out.IsNil() {\n\t\tout.Set(reflect.MakeMap(outt))\n\t}\n\tl := len(n.children)\n\tfor i := 0; i < l; i += 2 {\n\t\tif isMerge(n.children[i]) {\n\t\t\td.merge(n.children[i+1], out)\n\t\t\tcontinue\n\t\t}\n\t\tk := reflect.New(kt).Elem()\n\t\tif d.unmarshal(n.children[i], k) {\n\t\t\tkkind := k.Kind()\n\t\t\tif kkind == reflect.Interface {\n\t\t\t\tkkind = k.Elem().Kind()\n\t\t\t}\n\t\t\tif kkind == reflect.Map || kkind == reflect.Slice {\n\t\t\t\tfailf(\"invalid map key: %#v\", k.Interface())\n\t\t\t}\n\t\t\te := reflect.New(et).Elem()\n\t\t\tif d.unmarshal(n.children[i+1], e) {\n\t\t\t\td.setMapIndex(n.children[i+1], out, k, e)\n\t\t\t}\n\t\t}\n\t}\n\td.mapType = mapType\n\treturn true\n}\n\nfunc (d *decoder) setMapIndex(n *node, out, k, v reflect.Value) {\n\tif d.strict && out.MapIndex(k) != zeroValue {\n\t\td.terrors = append(d.terrors, fmt.Sprintf(\"line %d: key %#v already set in map\", n.line+1, k.Interface()))\n\t\treturn\n\t}\n\tout.SetMapIndex(k, v)\n}\n\nfunc (d *decoder) mappingSlice(n *node, out reflect.Value) (good bool) {\n\toutt := out.Type()\n\tif outt.Elem() != mapItemType {\n\t\td.terror(n, yaml_MAP_TAG, out)\n\t\treturn false\n\t}\n\n\tmapType := d.mapType\n\td.mapType = outt\n\n\tvar slice []MapItem\n\tvar l = len(n.children)\n\tfor i := 0; i < l; i += 2 {\n\t\tif isMerge(n.children[i]) {\n\t\t\td.merge(n.children[i+1], out)\n\t\t\tcontinue\n\t\t}\n\t\titem := MapItem{}\n\t\tk := reflect.ValueOf(&item.Key).Elem()\n\t\tif d.unmarshal(n.children[i], k) {\n\t\t\tv := reflect.ValueOf(&item.Value).Elem()\n\t\t\tif d.unmarshal(n.children[i+1], v) {\n\t\t\t\tslice = append(slice, item)\n\t\t\t}\n\t\t}\n\t}\n\tout.Set(reflect.ValueOf(slice))\n\td.mapType = mapType\n\treturn true\n}\n\nfunc (d *decoder) mappingStruct(n *node, out reflect.Value) (good bool) {\n\tsinfo, err := getStructInfo(out.Type())\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tname := settableValueOf(\"\")\n\tl := len(n.children)\n\n\tvar inlineMap reflect.Value\n\tvar elemType reflect.Type\n\tif sinfo.InlineMap != -1 {\n\t\tinlineMap = out.Field(sinfo.InlineMap)\n\t\tinlineMap.Set(reflect.New(inlineMap.Type()).Elem())\n\t\telemType = inlineMap.Type().Elem()\n\t}\n\n\tvar doneFields []bool\n\tif d.strict {\n\t\tdoneFields = make([]bool, len(sinfo.FieldsList))\n\t}\n\tfor i := 0; i < l; i += 2 {\n\t\tni := n.children[i]\n\t\tif isMerge(ni) {\n\t\t\td.merge(n.children[i+1], out)\n\t\t\tcontinue\n\t\t}\n\t\tif !d.unmarshal(ni, name) {\n\t\t\tcontinue\n\t\t}\n\t\tif info, ok := sinfo.FieldsMap[name.String()]; ok {\n\t\t\tif d.strict {\n\t\t\t\tif doneFields[info.Id] {\n\t\t\t\t\td.terrors = append(d.terrors, fmt.Sprintf(\"line %d: field %s already set in type %s\", ni.line+1, name.String(), out.Type()))\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tdoneFields[info.Id] = true\n\t\t\t}\n\t\t\tvar field reflect.Value\n\t\t\tif info.Inline == nil {\n\t\t\t\tfield = out.Field(info.Num)\n\t\t\t} else {\n\t\t\t\tfield = out.FieldByIndex(info.Inline)\n\t\t\t}\n\t\t\td.unmarshal(n.children[i+1], field)\n\t\t} else if sinfo.InlineMap != -1 {\n\t\t\tif inlineMap.IsNil() {\n\t\t\t\tinlineMap.Set(reflect.MakeMap(inlineMap.Type()))\n\t\t\t}\n\t\t\tvalue := reflect.New(elemType).Elem()\n\t\t\td.unmarshal(n.children[i+1], value)\n\t\t\td.setMapIndex(n.children[i+1], inlineMap, name, value)\n\t\t} else if d.strict {\n\t\t\td.terrors = append(d.terrors, fmt.Sprintf(\"line %d: field %s not found in type %s\", ni.line+1, name.String(), out.Type()))\n\t\t}\n\t}\n\treturn true\n}\n\nfunc failWantMap() {\n\tfailf(\"map merge requires map or sequence of maps as the value\")\n}\n\nfunc (d *decoder) merge(n *node, out reflect.Value) {\n\tswitch n.kind {\n\tcase mappingNode:\n\t\td.unmarshal(n, out)\n\tcase aliasNode:\n\t\tif n.alias != nil && n.alias.kind != mappingNode {\n\t\t\tfailWantMap()\n\t\t}\n\t\td.unmarshal(n, out)\n\tcase sequenceNode:\n\t\t// Step backwards as earlier nodes take precedence.\n\t\tfor i := len(n.children) - 1; i >= 0; i-- {\n\t\t\tni := n.children[i]\n\t\t\tif ni.kind == aliasNode {\n\t\t\t\tif ni.alias != nil && ni.alias.kind != mappingNode {\n\t\t\t\t\tfailWantMap()\n\t\t\t\t}\n\t\t\t} else if ni.kind != mappingNode {\n\t\t\t\tfailWantMap()\n\t\t\t}\n\t\t\td.unmarshal(ni, out)\n\t\t}\n\tdefault:\n\t\tfailWantMap()\n\t}\n}\n\nfunc isMerge(n *node) bool {\n\treturn n.kind == scalarNode && n.value == \"<<\" && (n.implicit == true || n.tag == yaml_MERGE_TAG)\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/emitterc.go",
    "content": "package yaml\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n)\n\n// Flush the buffer if needed.\nfunc flush(emitter *yaml_emitter_t) bool {\n\tif emitter.buffer_pos+5 >= len(emitter.buffer) {\n\t\treturn yaml_emitter_flush(emitter)\n\t}\n\treturn true\n}\n\n// Put a character to the output buffer.\nfunc put(emitter *yaml_emitter_t, value byte) bool {\n\tif emitter.buffer_pos+5 >= len(emitter.buffer) && !yaml_emitter_flush(emitter) {\n\t\treturn false\n\t}\n\temitter.buffer[emitter.buffer_pos] = value\n\temitter.buffer_pos++\n\temitter.column++\n\treturn true\n}\n\n// Put a line break to the output buffer.\nfunc put_break(emitter *yaml_emitter_t) bool {\n\tif emitter.buffer_pos+5 >= len(emitter.buffer) && !yaml_emitter_flush(emitter) {\n\t\treturn false\n\t}\n\tswitch emitter.line_break {\n\tcase yaml_CR_BREAK:\n\t\temitter.buffer[emitter.buffer_pos] = '\\r'\n\t\temitter.buffer_pos += 1\n\tcase yaml_LN_BREAK:\n\t\temitter.buffer[emitter.buffer_pos] = '\\n'\n\t\temitter.buffer_pos += 1\n\tcase yaml_CRLN_BREAK:\n\t\temitter.buffer[emitter.buffer_pos+0] = '\\r'\n\t\temitter.buffer[emitter.buffer_pos+1] = '\\n'\n\t\temitter.buffer_pos += 2\n\tdefault:\n\t\tpanic(\"unknown line break setting\")\n\t}\n\temitter.column = 0\n\temitter.line++\n\treturn true\n}\n\n// Copy a character from a string into buffer.\nfunc write(emitter *yaml_emitter_t, s []byte, i *int) bool {\n\tif emitter.buffer_pos+5 >= len(emitter.buffer) && !yaml_emitter_flush(emitter) {\n\t\treturn false\n\t}\n\tp := emitter.buffer_pos\n\tw := width(s[*i])\n\tswitch w {\n\tcase 4:\n\t\temitter.buffer[p+3] = s[*i+3]\n\t\tfallthrough\n\tcase 3:\n\t\temitter.buffer[p+2] = s[*i+2]\n\t\tfallthrough\n\tcase 2:\n\t\temitter.buffer[p+1] = s[*i+1]\n\t\tfallthrough\n\tcase 1:\n\t\temitter.buffer[p+0] = s[*i+0]\n\tdefault:\n\t\tpanic(\"unknown character width\")\n\t}\n\temitter.column++\n\temitter.buffer_pos += w\n\t*i += w\n\treturn true\n}\n\n// Write a whole string into buffer.\nfunc write_all(emitter *yaml_emitter_t, s []byte) bool {\n\tfor i := 0; i < len(s); {\n\t\tif !write(emitter, s, &i) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// Copy a line break character from a string into buffer.\nfunc write_break(emitter *yaml_emitter_t, s []byte, i *int) bool {\n\tif s[*i] == '\\n' {\n\t\tif !put_break(emitter) {\n\t\t\treturn false\n\t\t}\n\t\t*i++\n\t} else {\n\t\tif !write(emitter, s, i) {\n\t\t\treturn false\n\t\t}\n\t\temitter.column = 0\n\t\temitter.line++\n\t}\n\treturn true\n}\n\n// Set an emitter error and return false.\nfunc yaml_emitter_set_emitter_error(emitter *yaml_emitter_t, problem string) bool {\n\temitter.error = yaml_EMITTER_ERROR\n\temitter.problem = problem\n\treturn false\n}\n\n// Emit an event.\nfunc yaml_emitter_emit(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\temitter.events = append(emitter.events, *event)\n\tfor !yaml_emitter_need_more_events(emitter) {\n\t\tevent := &emitter.events[emitter.events_head]\n\t\tif !yaml_emitter_analyze_event(emitter, event) {\n\t\t\treturn false\n\t\t}\n\t\tif !yaml_emitter_state_machine(emitter, event) {\n\t\t\treturn false\n\t\t}\n\t\tyaml_event_delete(event)\n\t\temitter.events_head++\n\t}\n\treturn true\n}\n\n// Check if we need to accumulate more events before emitting.\n//\n// We accumulate extra\n//  - 1 event for DOCUMENT-START\n//  - 2 events for SEQUENCE-START\n//  - 3 events for MAPPING-START\n//\nfunc yaml_emitter_need_more_events(emitter *yaml_emitter_t) bool {\n\tif emitter.events_head == len(emitter.events) {\n\t\treturn true\n\t}\n\tvar accumulate int\n\tswitch emitter.events[emitter.events_head].typ {\n\tcase yaml_DOCUMENT_START_EVENT:\n\t\taccumulate = 1\n\t\tbreak\n\tcase yaml_SEQUENCE_START_EVENT:\n\t\taccumulate = 2\n\t\tbreak\n\tcase yaml_MAPPING_START_EVENT:\n\t\taccumulate = 3\n\t\tbreak\n\tdefault:\n\t\treturn false\n\t}\n\tif len(emitter.events)-emitter.events_head > accumulate {\n\t\treturn false\n\t}\n\tvar level int\n\tfor i := emitter.events_head; i < len(emitter.events); i++ {\n\t\tswitch emitter.events[i].typ {\n\t\tcase yaml_STREAM_START_EVENT, yaml_DOCUMENT_START_EVENT, yaml_SEQUENCE_START_EVENT, yaml_MAPPING_START_EVENT:\n\t\t\tlevel++\n\t\tcase yaml_STREAM_END_EVENT, yaml_DOCUMENT_END_EVENT, yaml_SEQUENCE_END_EVENT, yaml_MAPPING_END_EVENT:\n\t\t\tlevel--\n\t\t}\n\t\tif level == 0 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// Append a directive to the directives stack.\nfunc yaml_emitter_append_tag_directive(emitter *yaml_emitter_t, value *yaml_tag_directive_t, allow_duplicates bool) bool {\n\tfor i := 0; i < len(emitter.tag_directives); i++ {\n\t\tif bytes.Equal(value.handle, emitter.tag_directives[i].handle) {\n\t\t\tif allow_duplicates {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\treturn yaml_emitter_set_emitter_error(emitter, \"duplicate %TAG directive\")\n\t\t}\n\t}\n\n\t// [Go] Do we actually need to copy this given garbage collection\n\t// and the lack of deallocating destructors?\n\ttag_copy := yaml_tag_directive_t{\n\t\thandle: make([]byte, len(value.handle)),\n\t\tprefix: make([]byte, len(value.prefix)),\n\t}\n\tcopy(tag_copy.handle, value.handle)\n\tcopy(tag_copy.prefix, value.prefix)\n\temitter.tag_directives = append(emitter.tag_directives, tag_copy)\n\treturn true\n}\n\n// Increase the indentation level.\nfunc yaml_emitter_increase_indent(emitter *yaml_emitter_t, flow, indentless bool) bool {\n\temitter.indents = append(emitter.indents, emitter.indent)\n\tif emitter.indent < 0 {\n\t\tif flow {\n\t\t\temitter.indent = emitter.best_indent\n\t\t} else {\n\t\t\temitter.indent = 0\n\t\t}\n\t} else if !indentless {\n\t\temitter.indent += emitter.best_indent\n\t}\n\treturn true\n}\n\n// State dispatcher.\nfunc yaml_emitter_state_machine(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\tswitch emitter.state {\n\tdefault:\n\tcase yaml_EMIT_STREAM_START_STATE:\n\t\treturn yaml_emitter_emit_stream_start(emitter, event)\n\n\tcase yaml_EMIT_FIRST_DOCUMENT_START_STATE:\n\t\treturn yaml_emitter_emit_document_start(emitter, event, true)\n\n\tcase yaml_EMIT_DOCUMENT_START_STATE:\n\t\treturn yaml_emitter_emit_document_start(emitter, event, false)\n\n\tcase yaml_EMIT_DOCUMENT_CONTENT_STATE:\n\t\treturn yaml_emitter_emit_document_content(emitter, event)\n\n\tcase yaml_EMIT_DOCUMENT_END_STATE:\n\t\treturn yaml_emitter_emit_document_end(emitter, event)\n\n\tcase yaml_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE:\n\t\treturn yaml_emitter_emit_flow_sequence_item(emitter, event, true)\n\n\tcase yaml_EMIT_FLOW_SEQUENCE_ITEM_STATE:\n\t\treturn yaml_emitter_emit_flow_sequence_item(emitter, event, false)\n\n\tcase yaml_EMIT_FLOW_MAPPING_FIRST_KEY_STATE:\n\t\treturn yaml_emitter_emit_flow_mapping_key(emitter, event, true)\n\n\tcase yaml_EMIT_FLOW_MAPPING_KEY_STATE:\n\t\treturn yaml_emitter_emit_flow_mapping_key(emitter, event, false)\n\n\tcase yaml_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE:\n\t\treturn yaml_emitter_emit_flow_mapping_value(emitter, event, true)\n\n\tcase yaml_EMIT_FLOW_MAPPING_VALUE_STATE:\n\t\treturn yaml_emitter_emit_flow_mapping_value(emitter, event, false)\n\n\tcase yaml_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE:\n\t\treturn yaml_emitter_emit_block_sequence_item(emitter, event, true)\n\n\tcase yaml_EMIT_BLOCK_SEQUENCE_ITEM_STATE:\n\t\treturn yaml_emitter_emit_block_sequence_item(emitter, event, false)\n\n\tcase yaml_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE:\n\t\treturn yaml_emitter_emit_block_mapping_key(emitter, event, true)\n\n\tcase yaml_EMIT_BLOCK_MAPPING_KEY_STATE:\n\t\treturn yaml_emitter_emit_block_mapping_key(emitter, event, false)\n\n\tcase yaml_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE:\n\t\treturn yaml_emitter_emit_block_mapping_value(emitter, event, true)\n\n\tcase yaml_EMIT_BLOCK_MAPPING_VALUE_STATE:\n\t\treturn yaml_emitter_emit_block_mapping_value(emitter, event, false)\n\n\tcase yaml_EMIT_END_STATE:\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"expected nothing after STREAM-END\")\n\t}\n\tpanic(\"invalid emitter state\")\n}\n\n// Expect STREAM-START.\nfunc yaml_emitter_emit_stream_start(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\tif event.typ != yaml_STREAM_START_EVENT {\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"expected STREAM-START\")\n\t}\n\tif emitter.encoding == yaml_ANY_ENCODING {\n\t\temitter.encoding = event.encoding\n\t\tif emitter.encoding == yaml_ANY_ENCODING {\n\t\t\temitter.encoding = yaml_UTF8_ENCODING\n\t\t}\n\t}\n\tif emitter.best_indent < 2 || emitter.best_indent > 9 {\n\t\temitter.best_indent = 2\n\t}\n\tif emitter.best_width >= 0 && emitter.best_width <= emitter.best_indent*2 {\n\t\temitter.best_width = 80\n\t}\n\tif emitter.best_width < 0 {\n\t\temitter.best_width = 1<<31 - 1\n\t}\n\tif emitter.line_break == yaml_ANY_BREAK {\n\t\temitter.line_break = yaml_LN_BREAK\n\t}\n\n\temitter.indent = -1\n\temitter.line = 0\n\temitter.column = 0\n\temitter.whitespace = true\n\temitter.indention = true\n\n\tif emitter.encoding != yaml_UTF8_ENCODING {\n\t\tif !yaml_emitter_write_bom(emitter) {\n\t\t\treturn false\n\t\t}\n\t}\n\temitter.state = yaml_EMIT_FIRST_DOCUMENT_START_STATE\n\treturn true\n}\n\n// Expect DOCUMENT-START or STREAM-END.\nfunc yaml_emitter_emit_document_start(emitter *yaml_emitter_t, event *yaml_event_t, first bool) bool {\n\n\tif event.typ == yaml_DOCUMENT_START_EVENT {\n\n\t\tif event.version_directive != nil {\n\t\t\tif !yaml_emitter_analyze_version_directive(emitter, event.version_directive) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\tfor i := 0; i < len(event.tag_directives); i++ {\n\t\t\ttag_directive := &event.tag_directives[i]\n\t\t\tif !yaml_emitter_analyze_tag_directive(emitter, tag_directive) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yaml_emitter_append_tag_directive(emitter, tag_directive, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\tfor i := 0; i < len(default_tag_directives); i++ {\n\t\t\ttag_directive := &default_tag_directives[i]\n\t\t\tif !yaml_emitter_append_tag_directive(emitter, tag_directive, true) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\timplicit := event.implicit\n\t\tif !first || emitter.canonical {\n\t\t\timplicit = false\n\t\t}\n\n\t\tif emitter.open_ended && (event.version_directive != nil || len(event.tag_directives) > 0) {\n\t\t\tif !yaml_emitter_write_indicator(emitter, []byte(\"...\"), true, false, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\tif event.version_directive != nil {\n\t\t\timplicit = false\n\t\t\tif !yaml_emitter_write_indicator(emitter, []byte(\"%YAML\"), true, false, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yaml_emitter_write_indicator(emitter, []byte(\"1.1\"), true, false, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\tif len(event.tag_directives) > 0 {\n\t\t\timplicit = false\n\t\t\tfor i := 0; i < len(event.tag_directives); i++ {\n\t\t\t\ttag_directive := &event.tag_directives[i]\n\t\t\t\tif !yaml_emitter_write_indicator(emitter, []byte(\"%TAG\"), true, false, false) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif !yaml_emitter_write_tag_handle(emitter, tag_directive.handle) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif !yaml_emitter_write_tag_content(emitter, tag_directive.prefix, true) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif yaml_emitter_check_empty_document(emitter) {\n\t\t\timplicit = false\n\t\t}\n\t\tif !implicit {\n\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yaml_emitter_write_indicator(emitter, []byte(\"---\"), true, false, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif emitter.canonical {\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\temitter.state = yaml_EMIT_DOCUMENT_CONTENT_STATE\n\t\treturn true\n\t}\n\n\tif event.typ == yaml_STREAM_END_EVENT {\n\t\tif emitter.open_ended {\n\t\t\tif !yaml_emitter_write_indicator(emitter, []byte(\"...\"), true, false, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif !yaml_emitter_flush(emitter) {\n\t\t\treturn false\n\t\t}\n\t\temitter.state = yaml_EMIT_END_STATE\n\t\treturn true\n\t}\n\n\treturn yaml_emitter_set_emitter_error(emitter, \"expected DOCUMENT-START or STREAM-END\")\n}\n\n// Expect the root node.\nfunc yaml_emitter_emit_document_content(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\temitter.states = append(emitter.states, yaml_EMIT_DOCUMENT_END_STATE)\n\treturn yaml_emitter_emit_node(emitter, event, true, false, false, false)\n}\n\n// Expect DOCUMENT-END.\nfunc yaml_emitter_emit_document_end(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\tif event.typ != yaml_DOCUMENT_END_EVENT {\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"expected DOCUMENT-END\")\n\t}\n\tif !yaml_emitter_write_indent(emitter) {\n\t\treturn false\n\t}\n\tif !event.implicit {\n\t\t// [Go] Allocate the slice elsewhere.\n\t\tif !yaml_emitter_write_indicator(emitter, []byte(\"...\"), true, false, false) {\n\t\t\treturn false\n\t\t}\n\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\treturn false\n\t\t}\n\t}\n\tif !yaml_emitter_flush(emitter) {\n\t\treturn false\n\t}\n\temitter.state = yaml_EMIT_DOCUMENT_START_STATE\n\temitter.tag_directives = emitter.tag_directives[:0]\n\treturn true\n}\n\n// Expect a flow item node.\nfunc yaml_emitter_emit_flow_sequence_item(emitter *yaml_emitter_t, event *yaml_event_t, first bool) bool {\n\tif first {\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{'['}, true, true, false) {\n\t\t\treturn false\n\t\t}\n\t\tif !yaml_emitter_increase_indent(emitter, true, false) {\n\t\t\treturn false\n\t\t}\n\t\temitter.flow_level++\n\t}\n\n\tif event.typ == yaml_SEQUENCE_END_EVENT {\n\t\temitter.flow_level--\n\t\temitter.indent = emitter.indents[len(emitter.indents)-1]\n\t\temitter.indents = emitter.indents[:len(emitter.indents)-1]\n\t\tif emitter.canonical && !first {\n\t\t\tif !yaml_emitter_write_indicator(emitter, []byte{','}, false, false, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{']'}, false, false, false) {\n\t\t\treturn false\n\t\t}\n\t\temitter.state = emitter.states[len(emitter.states)-1]\n\t\temitter.states = emitter.states[:len(emitter.states)-1]\n\n\t\treturn true\n\t}\n\n\tif !first {\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{','}, false, false, false) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tif emitter.canonical || emitter.column > emitter.best_width {\n\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\treturn false\n\t\t}\n\t}\n\temitter.states = append(emitter.states, yaml_EMIT_FLOW_SEQUENCE_ITEM_STATE)\n\treturn yaml_emitter_emit_node(emitter, event, false, true, false, false)\n}\n\n// Expect a flow key node.\nfunc yaml_emitter_emit_flow_mapping_key(emitter *yaml_emitter_t, event *yaml_event_t, first bool) bool {\n\tif first {\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{'{'}, true, true, false) {\n\t\t\treturn false\n\t\t}\n\t\tif !yaml_emitter_increase_indent(emitter, true, false) {\n\t\t\treturn false\n\t\t}\n\t\temitter.flow_level++\n\t}\n\n\tif event.typ == yaml_MAPPING_END_EVENT {\n\t\temitter.flow_level--\n\t\temitter.indent = emitter.indents[len(emitter.indents)-1]\n\t\temitter.indents = emitter.indents[:len(emitter.indents)-1]\n\t\tif emitter.canonical && !first {\n\t\t\tif !yaml_emitter_write_indicator(emitter, []byte{','}, false, false, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{'}'}, false, false, false) {\n\t\t\treturn false\n\t\t}\n\t\temitter.state = emitter.states[len(emitter.states)-1]\n\t\temitter.states = emitter.states[:len(emitter.states)-1]\n\t\treturn true\n\t}\n\n\tif !first {\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{','}, false, false, false) {\n\t\t\treturn false\n\t\t}\n\t}\n\tif emitter.canonical || emitter.column > emitter.best_width {\n\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tif !emitter.canonical && yaml_emitter_check_simple_key(emitter) {\n\t\temitter.states = append(emitter.states, yaml_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE)\n\t\treturn yaml_emitter_emit_node(emitter, event, false, false, true, true)\n\t}\n\tif !yaml_emitter_write_indicator(emitter, []byte{'?'}, true, false, false) {\n\t\treturn false\n\t}\n\temitter.states = append(emitter.states, yaml_EMIT_FLOW_MAPPING_VALUE_STATE)\n\treturn yaml_emitter_emit_node(emitter, event, false, false, true, false)\n}\n\n// Expect a flow value node.\nfunc yaml_emitter_emit_flow_mapping_value(emitter *yaml_emitter_t, event *yaml_event_t, simple bool) bool {\n\tif simple {\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{':'}, false, false, false) {\n\t\t\treturn false\n\t\t}\n\t} else {\n\t\tif emitter.canonical || emitter.column > emitter.best_width {\n\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{':'}, true, false, false) {\n\t\t\treturn false\n\t\t}\n\t}\n\temitter.states = append(emitter.states, yaml_EMIT_FLOW_MAPPING_KEY_STATE)\n\treturn yaml_emitter_emit_node(emitter, event, false, false, true, false)\n}\n\n// Expect a block item node.\nfunc yaml_emitter_emit_block_sequence_item(emitter *yaml_emitter_t, event *yaml_event_t, first bool) bool {\n\tif first {\n\t\tif !yaml_emitter_increase_indent(emitter, false, emitter.mapping_context && !emitter.indention) {\n\t\t\treturn false\n\t\t}\n\t}\n\tif event.typ == yaml_SEQUENCE_END_EVENT {\n\t\temitter.indent = emitter.indents[len(emitter.indents)-1]\n\t\temitter.indents = emitter.indents[:len(emitter.indents)-1]\n\t\temitter.state = emitter.states[len(emitter.states)-1]\n\t\temitter.states = emitter.states[:len(emitter.states)-1]\n\t\treturn true\n\t}\n\tif !yaml_emitter_write_indent(emitter) {\n\t\treturn false\n\t}\n\tif !yaml_emitter_write_indicator(emitter, []byte{'-'}, true, false, true) {\n\t\treturn false\n\t}\n\temitter.states = append(emitter.states, yaml_EMIT_BLOCK_SEQUENCE_ITEM_STATE)\n\treturn yaml_emitter_emit_node(emitter, event, false, true, false, false)\n}\n\n// Expect a block key node.\nfunc yaml_emitter_emit_block_mapping_key(emitter *yaml_emitter_t, event *yaml_event_t, first bool) bool {\n\tif first {\n\t\tif !yaml_emitter_increase_indent(emitter, false, false) {\n\t\t\treturn false\n\t\t}\n\t}\n\tif event.typ == yaml_MAPPING_END_EVENT {\n\t\temitter.indent = emitter.indents[len(emitter.indents)-1]\n\t\temitter.indents = emitter.indents[:len(emitter.indents)-1]\n\t\temitter.state = emitter.states[len(emitter.states)-1]\n\t\temitter.states = emitter.states[:len(emitter.states)-1]\n\t\treturn true\n\t}\n\tif !yaml_emitter_write_indent(emitter) {\n\t\treturn false\n\t}\n\tif yaml_emitter_check_simple_key(emitter) {\n\t\temitter.states = append(emitter.states, yaml_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE)\n\t\treturn yaml_emitter_emit_node(emitter, event, false, false, true, true)\n\t}\n\tif !yaml_emitter_write_indicator(emitter, []byte{'?'}, true, false, true) {\n\t\treturn false\n\t}\n\temitter.states = append(emitter.states, yaml_EMIT_BLOCK_MAPPING_VALUE_STATE)\n\treturn yaml_emitter_emit_node(emitter, event, false, false, true, false)\n}\n\n// Expect a block value node.\nfunc yaml_emitter_emit_block_mapping_value(emitter *yaml_emitter_t, event *yaml_event_t, simple bool) bool {\n\tif simple {\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{':'}, false, false, false) {\n\t\t\treturn false\n\t\t}\n\t} else {\n\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\treturn false\n\t\t}\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{':'}, true, false, true) {\n\t\t\treturn false\n\t\t}\n\t}\n\temitter.states = append(emitter.states, yaml_EMIT_BLOCK_MAPPING_KEY_STATE)\n\treturn yaml_emitter_emit_node(emitter, event, false, false, true, false)\n}\n\n// Expect a node.\nfunc yaml_emitter_emit_node(emitter *yaml_emitter_t, event *yaml_event_t,\n\troot bool, sequence bool, mapping bool, simple_key bool) bool {\n\n\temitter.root_context = root\n\temitter.sequence_context = sequence\n\temitter.mapping_context = mapping\n\temitter.simple_key_context = simple_key\n\n\tswitch event.typ {\n\tcase yaml_ALIAS_EVENT:\n\t\treturn yaml_emitter_emit_alias(emitter, event)\n\tcase yaml_SCALAR_EVENT:\n\t\treturn yaml_emitter_emit_scalar(emitter, event)\n\tcase yaml_SEQUENCE_START_EVENT:\n\t\treturn yaml_emitter_emit_sequence_start(emitter, event)\n\tcase yaml_MAPPING_START_EVENT:\n\t\treturn yaml_emitter_emit_mapping_start(emitter, event)\n\tdefault:\n\t\treturn yaml_emitter_set_emitter_error(emitter,\n\t\t\tfmt.Sprintf(\"expected SCALAR, SEQUENCE-START, MAPPING-START, or ALIAS, but got %v\", event.typ))\n\t}\n}\n\n// Expect ALIAS.\nfunc yaml_emitter_emit_alias(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\tif !yaml_emitter_process_anchor(emitter) {\n\t\treturn false\n\t}\n\temitter.state = emitter.states[len(emitter.states)-1]\n\temitter.states = emitter.states[:len(emitter.states)-1]\n\treturn true\n}\n\n// Expect SCALAR.\nfunc yaml_emitter_emit_scalar(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\tif !yaml_emitter_select_scalar_style(emitter, event) {\n\t\treturn false\n\t}\n\tif !yaml_emitter_process_anchor(emitter) {\n\t\treturn false\n\t}\n\tif !yaml_emitter_process_tag(emitter) {\n\t\treturn false\n\t}\n\tif !yaml_emitter_increase_indent(emitter, true, false) {\n\t\treturn false\n\t}\n\tif !yaml_emitter_process_scalar(emitter) {\n\t\treturn false\n\t}\n\temitter.indent = emitter.indents[len(emitter.indents)-1]\n\temitter.indents = emitter.indents[:len(emitter.indents)-1]\n\temitter.state = emitter.states[len(emitter.states)-1]\n\temitter.states = emitter.states[:len(emitter.states)-1]\n\treturn true\n}\n\n// Expect SEQUENCE-START.\nfunc yaml_emitter_emit_sequence_start(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\tif !yaml_emitter_process_anchor(emitter) {\n\t\treturn false\n\t}\n\tif !yaml_emitter_process_tag(emitter) {\n\t\treturn false\n\t}\n\tif emitter.flow_level > 0 || emitter.canonical || event.sequence_style() == yaml_FLOW_SEQUENCE_STYLE ||\n\t\tyaml_emitter_check_empty_sequence(emitter) {\n\t\temitter.state = yaml_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE\n\t} else {\n\t\temitter.state = yaml_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE\n\t}\n\treturn true\n}\n\n// Expect MAPPING-START.\nfunc yaml_emitter_emit_mapping_start(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\tif !yaml_emitter_process_anchor(emitter) {\n\t\treturn false\n\t}\n\tif !yaml_emitter_process_tag(emitter) {\n\t\treturn false\n\t}\n\tif emitter.flow_level > 0 || emitter.canonical || event.mapping_style() == yaml_FLOW_MAPPING_STYLE ||\n\t\tyaml_emitter_check_empty_mapping(emitter) {\n\t\temitter.state = yaml_EMIT_FLOW_MAPPING_FIRST_KEY_STATE\n\t} else {\n\t\temitter.state = yaml_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE\n\t}\n\treturn true\n}\n\n// Check if the document content is an empty scalar.\nfunc yaml_emitter_check_empty_document(emitter *yaml_emitter_t) bool {\n\treturn false // [Go] Huh?\n}\n\n// Check if the next events represent an empty sequence.\nfunc yaml_emitter_check_empty_sequence(emitter *yaml_emitter_t) bool {\n\tif len(emitter.events)-emitter.events_head < 2 {\n\t\treturn false\n\t}\n\treturn emitter.events[emitter.events_head].typ == yaml_SEQUENCE_START_EVENT &&\n\t\temitter.events[emitter.events_head+1].typ == yaml_SEQUENCE_END_EVENT\n}\n\n// Check if the next events represent an empty mapping.\nfunc yaml_emitter_check_empty_mapping(emitter *yaml_emitter_t) bool {\n\tif len(emitter.events)-emitter.events_head < 2 {\n\t\treturn false\n\t}\n\treturn emitter.events[emitter.events_head].typ == yaml_MAPPING_START_EVENT &&\n\t\temitter.events[emitter.events_head+1].typ == yaml_MAPPING_END_EVENT\n}\n\n// Check if the next node can be expressed as a simple key.\nfunc yaml_emitter_check_simple_key(emitter *yaml_emitter_t) bool {\n\tlength := 0\n\tswitch emitter.events[emitter.events_head].typ {\n\tcase yaml_ALIAS_EVENT:\n\t\tlength += len(emitter.anchor_data.anchor)\n\tcase yaml_SCALAR_EVENT:\n\t\tif emitter.scalar_data.multiline {\n\t\t\treturn false\n\t\t}\n\t\tlength += len(emitter.anchor_data.anchor) +\n\t\t\tlen(emitter.tag_data.handle) +\n\t\t\tlen(emitter.tag_data.suffix) +\n\t\t\tlen(emitter.scalar_data.value)\n\tcase yaml_SEQUENCE_START_EVENT:\n\t\tif !yaml_emitter_check_empty_sequence(emitter) {\n\t\t\treturn false\n\t\t}\n\t\tlength += len(emitter.anchor_data.anchor) +\n\t\t\tlen(emitter.tag_data.handle) +\n\t\t\tlen(emitter.tag_data.suffix)\n\tcase yaml_MAPPING_START_EVENT:\n\t\tif !yaml_emitter_check_empty_mapping(emitter) {\n\t\t\treturn false\n\t\t}\n\t\tlength += len(emitter.anchor_data.anchor) +\n\t\t\tlen(emitter.tag_data.handle) +\n\t\t\tlen(emitter.tag_data.suffix)\n\tdefault:\n\t\treturn false\n\t}\n\treturn length <= 128\n}\n\n// Determine an acceptable scalar style.\nfunc yaml_emitter_select_scalar_style(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\n\tno_tag := len(emitter.tag_data.handle) == 0 && len(emitter.tag_data.suffix) == 0\n\tif no_tag && !event.implicit && !event.quoted_implicit {\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"neither tag nor implicit flags are specified\")\n\t}\n\n\tstyle := event.scalar_style()\n\tif style == yaml_ANY_SCALAR_STYLE {\n\t\tstyle = yaml_PLAIN_SCALAR_STYLE\n\t}\n\tif emitter.canonical {\n\t\tstyle = yaml_DOUBLE_QUOTED_SCALAR_STYLE\n\t}\n\tif emitter.simple_key_context && emitter.scalar_data.multiline {\n\t\tstyle = yaml_DOUBLE_QUOTED_SCALAR_STYLE\n\t}\n\n\tif style == yaml_PLAIN_SCALAR_STYLE {\n\t\tif emitter.flow_level > 0 && !emitter.scalar_data.flow_plain_allowed ||\n\t\t\temitter.flow_level == 0 && !emitter.scalar_data.block_plain_allowed {\n\t\t\tstyle = yaml_SINGLE_QUOTED_SCALAR_STYLE\n\t\t}\n\t\tif len(emitter.scalar_data.value) == 0 && (emitter.flow_level > 0 || emitter.simple_key_context) {\n\t\t\tstyle = yaml_SINGLE_QUOTED_SCALAR_STYLE\n\t\t}\n\t\tif no_tag && !event.implicit {\n\t\t\tstyle = yaml_SINGLE_QUOTED_SCALAR_STYLE\n\t\t}\n\t}\n\tif style == yaml_SINGLE_QUOTED_SCALAR_STYLE {\n\t\tif !emitter.scalar_data.single_quoted_allowed {\n\t\t\tstyle = yaml_DOUBLE_QUOTED_SCALAR_STYLE\n\t\t}\n\t}\n\tif style == yaml_LITERAL_SCALAR_STYLE || style == yaml_FOLDED_SCALAR_STYLE {\n\t\tif !emitter.scalar_data.block_allowed || emitter.flow_level > 0 || emitter.simple_key_context {\n\t\t\tstyle = yaml_DOUBLE_QUOTED_SCALAR_STYLE\n\t\t}\n\t}\n\n\tif no_tag && !event.quoted_implicit && style != yaml_PLAIN_SCALAR_STYLE {\n\t\temitter.tag_data.handle = []byte{'!'}\n\t}\n\temitter.scalar_data.style = style\n\treturn true\n}\n\n// Write an anchor.\nfunc yaml_emitter_process_anchor(emitter *yaml_emitter_t) bool {\n\tif emitter.anchor_data.anchor == nil {\n\t\treturn true\n\t}\n\tc := []byte{'&'}\n\tif emitter.anchor_data.alias {\n\t\tc[0] = '*'\n\t}\n\tif !yaml_emitter_write_indicator(emitter, c, true, false, false) {\n\t\treturn false\n\t}\n\treturn yaml_emitter_write_anchor(emitter, emitter.anchor_data.anchor)\n}\n\n// Write a tag.\nfunc yaml_emitter_process_tag(emitter *yaml_emitter_t) bool {\n\tif len(emitter.tag_data.handle) == 0 && len(emitter.tag_data.suffix) == 0 {\n\t\treturn true\n\t}\n\tif len(emitter.tag_data.handle) > 0 {\n\t\tif !yaml_emitter_write_tag_handle(emitter, emitter.tag_data.handle) {\n\t\t\treturn false\n\t\t}\n\t\tif len(emitter.tag_data.suffix) > 0 {\n\t\t\tif !yaml_emitter_write_tag_content(emitter, emitter.tag_data.suffix, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// [Go] Allocate these slices elsewhere.\n\t\tif !yaml_emitter_write_indicator(emitter, []byte(\"!<\"), true, false, false) {\n\t\t\treturn false\n\t\t}\n\t\tif !yaml_emitter_write_tag_content(emitter, emitter.tag_data.suffix, false) {\n\t\t\treturn false\n\t\t}\n\t\tif !yaml_emitter_write_indicator(emitter, []byte{'>'}, false, false, false) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// Write a scalar.\nfunc yaml_emitter_process_scalar(emitter *yaml_emitter_t) bool {\n\tswitch emitter.scalar_data.style {\n\tcase yaml_PLAIN_SCALAR_STYLE:\n\t\treturn yaml_emitter_write_plain_scalar(emitter, emitter.scalar_data.value, !emitter.simple_key_context)\n\n\tcase yaml_SINGLE_QUOTED_SCALAR_STYLE:\n\t\treturn yaml_emitter_write_single_quoted_scalar(emitter, emitter.scalar_data.value, !emitter.simple_key_context)\n\n\tcase yaml_DOUBLE_QUOTED_SCALAR_STYLE:\n\t\treturn yaml_emitter_write_double_quoted_scalar(emitter, emitter.scalar_data.value, !emitter.simple_key_context)\n\n\tcase yaml_LITERAL_SCALAR_STYLE:\n\t\treturn yaml_emitter_write_literal_scalar(emitter, emitter.scalar_data.value)\n\n\tcase yaml_FOLDED_SCALAR_STYLE:\n\t\treturn yaml_emitter_write_folded_scalar(emitter, emitter.scalar_data.value)\n\t}\n\tpanic(\"unknown scalar style\")\n}\n\n// Check if a %YAML directive is valid.\nfunc yaml_emitter_analyze_version_directive(emitter *yaml_emitter_t, version_directive *yaml_version_directive_t) bool {\n\tif version_directive.major != 1 || version_directive.minor != 1 {\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"incompatible %YAML directive\")\n\t}\n\treturn true\n}\n\n// Check if a %TAG directive is valid.\nfunc yaml_emitter_analyze_tag_directive(emitter *yaml_emitter_t, tag_directive *yaml_tag_directive_t) bool {\n\thandle := tag_directive.handle\n\tprefix := tag_directive.prefix\n\tif len(handle) == 0 {\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"tag handle must not be empty\")\n\t}\n\tif handle[0] != '!' {\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"tag handle must start with '!'\")\n\t}\n\tif handle[len(handle)-1] != '!' {\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"tag handle must end with '!'\")\n\t}\n\tfor i := 1; i < len(handle)-1; i += width(handle[i]) {\n\t\tif !is_alpha(handle, i) {\n\t\t\treturn yaml_emitter_set_emitter_error(emitter, \"tag handle must contain alphanumerical characters only\")\n\t\t}\n\t}\n\tif len(prefix) == 0 {\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"tag prefix must not be empty\")\n\t}\n\treturn true\n}\n\n// Check if an anchor is valid.\nfunc yaml_emitter_analyze_anchor(emitter *yaml_emitter_t, anchor []byte, alias bool) bool {\n\tif len(anchor) == 0 {\n\t\tproblem := \"anchor value must not be empty\"\n\t\tif alias {\n\t\t\tproblem = \"alias value must not be empty\"\n\t\t}\n\t\treturn yaml_emitter_set_emitter_error(emitter, problem)\n\t}\n\tfor i := 0; i < len(anchor); i += width(anchor[i]) {\n\t\tif !is_alpha(anchor, i) {\n\t\t\tproblem := \"anchor value must contain alphanumerical characters only\"\n\t\t\tif alias {\n\t\t\t\tproblem = \"alias value must contain alphanumerical characters only\"\n\t\t\t}\n\t\t\treturn yaml_emitter_set_emitter_error(emitter, problem)\n\t\t}\n\t}\n\temitter.anchor_data.anchor = anchor\n\temitter.anchor_data.alias = alias\n\treturn true\n}\n\n// Check if a tag is valid.\nfunc yaml_emitter_analyze_tag(emitter *yaml_emitter_t, tag []byte) bool {\n\tif len(tag) == 0 {\n\t\treturn yaml_emitter_set_emitter_error(emitter, \"tag value must not be empty\")\n\t}\n\tfor i := 0; i < len(emitter.tag_directives); i++ {\n\t\ttag_directive := &emitter.tag_directives[i]\n\t\tif bytes.HasPrefix(tag, tag_directive.prefix) {\n\t\t\temitter.tag_data.handle = tag_directive.handle\n\t\t\temitter.tag_data.suffix = tag[len(tag_directive.prefix):]\n\t\t\treturn true\n\t\t}\n\t}\n\temitter.tag_data.suffix = tag\n\treturn true\n}\n\n// Check if a scalar is valid.\nfunc yaml_emitter_analyze_scalar(emitter *yaml_emitter_t, value []byte) bool {\n\tvar (\n\t\tblock_indicators   = false\n\t\tflow_indicators    = false\n\t\tline_breaks        = false\n\t\tspecial_characters = false\n\n\t\tleading_space  = false\n\t\tleading_break  = false\n\t\ttrailing_space = false\n\t\ttrailing_break = false\n\t\tbreak_space    = false\n\t\tspace_break    = false\n\n\t\tpreceded_by_whitespace = false\n\t\tfollowed_by_whitespace = false\n\t\tprevious_space         = false\n\t\tprevious_break         = false\n\t)\n\n\temitter.scalar_data.value = value\n\n\tif len(value) == 0 {\n\t\temitter.scalar_data.multiline = false\n\t\temitter.scalar_data.flow_plain_allowed = false\n\t\temitter.scalar_data.block_plain_allowed = true\n\t\temitter.scalar_data.single_quoted_allowed = true\n\t\temitter.scalar_data.block_allowed = false\n\t\treturn true\n\t}\n\n\tif len(value) >= 3 && ((value[0] == '-' && value[1] == '-' && value[2] == '-') || (value[0] == '.' && value[1] == '.' && value[2] == '.')) {\n\t\tblock_indicators = true\n\t\tflow_indicators = true\n\t}\n\n\tpreceded_by_whitespace = true\n\tfor i, w := 0, 0; i < len(value); i += w {\n\t\tw = width(value[i])\n\t\tfollowed_by_whitespace = i+w >= len(value) || is_blank(value, i+w)\n\n\t\tif i == 0 {\n\t\t\tswitch value[i] {\n\t\t\tcase '#', ',', '[', ']', '{', '}', '&', '*', '!', '|', '>', '\\'', '\"', '%', '@', '`':\n\t\t\t\tflow_indicators = true\n\t\t\t\tblock_indicators = true\n\t\t\tcase '?', ':':\n\t\t\t\tflow_indicators = true\n\t\t\t\tif followed_by_whitespace {\n\t\t\t\t\tblock_indicators = true\n\t\t\t\t}\n\t\t\tcase '-':\n\t\t\t\tif followed_by_whitespace {\n\t\t\t\t\tflow_indicators = true\n\t\t\t\t\tblock_indicators = true\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tswitch value[i] {\n\t\t\tcase ',', '?', '[', ']', '{', '}':\n\t\t\t\tflow_indicators = true\n\t\t\tcase ':':\n\t\t\t\tflow_indicators = true\n\t\t\t\tif followed_by_whitespace {\n\t\t\t\t\tblock_indicators = true\n\t\t\t\t}\n\t\t\tcase '#':\n\t\t\t\tif preceded_by_whitespace {\n\t\t\t\t\tflow_indicators = true\n\t\t\t\t\tblock_indicators = true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif !is_printable(value, i) || !is_ascii(value, i) && !emitter.unicode {\n\t\t\tspecial_characters = true\n\t\t}\n\t\tif is_space(value, i) {\n\t\t\tif i == 0 {\n\t\t\t\tleading_space = true\n\t\t\t}\n\t\t\tif i+width(value[i]) == len(value) {\n\t\t\t\ttrailing_space = true\n\t\t\t}\n\t\t\tif previous_break {\n\t\t\t\tbreak_space = true\n\t\t\t}\n\t\t\tprevious_space = true\n\t\t\tprevious_break = false\n\t\t} else if is_break(value, i) {\n\t\t\tline_breaks = true\n\t\t\tif i == 0 {\n\t\t\t\tleading_break = true\n\t\t\t}\n\t\t\tif i+width(value[i]) == len(value) {\n\t\t\t\ttrailing_break = true\n\t\t\t}\n\t\t\tif previous_space {\n\t\t\t\tspace_break = true\n\t\t\t}\n\t\t\tprevious_space = false\n\t\t\tprevious_break = true\n\t\t} else {\n\t\t\tprevious_space = false\n\t\t\tprevious_break = false\n\t\t}\n\n\t\t// [Go]: Why 'z'? Couldn't be the end of the string as that's the loop condition.\n\t\tpreceded_by_whitespace = is_blankz(value, i)\n\t}\n\n\temitter.scalar_data.multiline = line_breaks\n\temitter.scalar_data.flow_plain_allowed = true\n\temitter.scalar_data.block_plain_allowed = true\n\temitter.scalar_data.single_quoted_allowed = true\n\temitter.scalar_data.block_allowed = true\n\n\tif leading_space || leading_break || trailing_space || trailing_break {\n\t\temitter.scalar_data.flow_plain_allowed = false\n\t\temitter.scalar_data.block_plain_allowed = false\n\t}\n\tif trailing_space {\n\t\temitter.scalar_data.block_allowed = false\n\t}\n\tif break_space {\n\t\temitter.scalar_data.flow_plain_allowed = false\n\t\temitter.scalar_data.block_plain_allowed = false\n\t\temitter.scalar_data.single_quoted_allowed = false\n\t}\n\tif space_break || special_characters {\n\t\temitter.scalar_data.flow_plain_allowed = false\n\t\temitter.scalar_data.block_plain_allowed = false\n\t\temitter.scalar_data.single_quoted_allowed = false\n\t\temitter.scalar_data.block_allowed = false\n\t}\n\tif line_breaks {\n\t\temitter.scalar_data.flow_plain_allowed = false\n\t\temitter.scalar_data.block_plain_allowed = false\n\t}\n\tif flow_indicators {\n\t\temitter.scalar_data.flow_plain_allowed = false\n\t}\n\tif block_indicators {\n\t\temitter.scalar_data.block_plain_allowed = false\n\t}\n\treturn true\n}\n\n// Check if the event data is valid.\nfunc yaml_emitter_analyze_event(emitter *yaml_emitter_t, event *yaml_event_t) bool {\n\n\temitter.anchor_data.anchor = nil\n\temitter.tag_data.handle = nil\n\temitter.tag_data.suffix = nil\n\temitter.scalar_data.value = nil\n\n\tswitch event.typ {\n\tcase yaml_ALIAS_EVENT:\n\t\tif !yaml_emitter_analyze_anchor(emitter, event.anchor, true) {\n\t\t\treturn false\n\t\t}\n\n\tcase yaml_SCALAR_EVENT:\n\t\tif len(event.anchor) > 0 {\n\t\t\tif !yaml_emitter_analyze_anchor(emitter, event.anchor, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif len(event.tag) > 0 && (emitter.canonical || (!event.implicit && !event.quoted_implicit)) {\n\t\t\tif !yaml_emitter_analyze_tag(emitter, event.tag) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif !yaml_emitter_analyze_scalar(emitter, event.value) {\n\t\t\treturn false\n\t\t}\n\n\tcase yaml_SEQUENCE_START_EVENT:\n\t\tif len(event.anchor) > 0 {\n\t\t\tif !yaml_emitter_analyze_anchor(emitter, event.anchor, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif len(event.tag) > 0 && (emitter.canonical || !event.implicit) {\n\t\t\tif !yaml_emitter_analyze_tag(emitter, event.tag) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\tcase yaml_MAPPING_START_EVENT:\n\t\tif len(event.anchor) > 0 {\n\t\t\tif !yaml_emitter_analyze_anchor(emitter, event.anchor, false) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif len(event.tag) > 0 && (emitter.canonical || !event.implicit) {\n\t\t\tif !yaml_emitter_analyze_tag(emitter, event.tag) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\treturn true\n}\n\n// Write the BOM character.\nfunc yaml_emitter_write_bom(emitter *yaml_emitter_t) bool {\n\tif !flush(emitter) {\n\t\treturn false\n\t}\n\tpos := emitter.buffer_pos\n\temitter.buffer[pos+0] = '\\xEF'\n\temitter.buffer[pos+1] = '\\xBB'\n\temitter.buffer[pos+2] = '\\xBF'\n\temitter.buffer_pos += 3\n\treturn true\n}\n\nfunc yaml_emitter_write_indent(emitter *yaml_emitter_t) bool {\n\tindent := emitter.indent\n\tif indent < 0 {\n\t\tindent = 0\n\t}\n\tif !emitter.indention || emitter.column > indent || (emitter.column == indent && !emitter.whitespace) {\n\t\tif !put_break(emitter) {\n\t\t\treturn false\n\t\t}\n\t}\n\tfor emitter.column < indent {\n\t\tif !put(emitter, ' ') {\n\t\t\treturn false\n\t\t}\n\t}\n\temitter.whitespace = true\n\temitter.indention = true\n\treturn true\n}\n\nfunc yaml_emitter_write_indicator(emitter *yaml_emitter_t, indicator []byte, need_whitespace, is_whitespace, is_indention bool) bool {\n\tif need_whitespace && !emitter.whitespace {\n\t\tif !put(emitter, ' ') {\n\t\t\treturn false\n\t\t}\n\t}\n\tif !write_all(emitter, indicator) {\n\t\treturn false\n\t}\n\temitter.whitespace = is_whitespace\n\temitter.indention = (emitter.indention && is_indention)\n\temitter.open_ended = false\n\treturn true\n}\n\nfunc yaml_emitter_write_anchor(emitter *yaml_emitter_t, value []byte) bool {\n\tif !write_all(emitter, value) {\n\t\treturn false\n\t}\n\temitter.whitespace = false\n\temitter.indention = false\n\treturn true\n}\n\nfunc yaml_emitter_write_tag_handle(emitter *yaml_emitter_t, value []byte) bool {\n\tif !emitter.whitespace {\n\t\tif !put(emitter, ' ') {\n\t\t\treturn false\n\t\t}\n\t}\n\tif !write_all(emitter, value) {\n\t\treturn false\n\t}\n\temitter.whitespace = false\n\temitter.indention = false\n\treturn true\n}\n\nfunc yaml_emitter_write_tag_content(emitter *yaml_emitter_t, value []byte, need_whitespace bool) bool {\n\tif need_whitespace && !emitter.whitespace {\n\t\tif !put(emitter, ' ') {\n\t\t\treturn false\n\t\t}\n\t}\n\tfor i := 0; i < len(value); {\n\t\tvar must_write bool\n\t\tswitch value[i] {\n\t\tcase ';', '/', '?', ':', '@', '&', '=', '+', '$', ',', '_', '.', '~', '*', '\\'', '(', ')', '[', ']':\n\t\t\tmust_write = true\n\t\tdefault:\n\t\t\tmust_write = is_alpha(value, i)\n\t\t}\n\t\tif must_write {\n\t\t\tif !write(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t} else {\n\t\t\tw := width(value[i])\n\t\t\tfor k := 0; k < w; k++ {\n\t\t\t\toctet := value[i]\n\t\t\t\ti++\n\t\t\t\tif !put(emitter, '%') {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\n\t\t\t\tc := octet >> 4\n\t\t\t\tif c < 10 {\n\t\t\t\t\tc += '0'\n\t\t\t\t} else {\n\t\t\t\t\tc += 'A' - 10\n\t\t\t\t}\n\t\t\t\tif !put(emitter, c) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\n\t\t\t\tc = octet & 0x0f\n\t\t\t\tif c < 10 {\n\t\t\t\t\tc += '0'\n\t\t\t\t} else {\n\t\t\t\t\tc += 'A' - 10\n\t\t\t\t}\n\t\t\t\tif !put(emitter, c) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\temitter.whitespace = false\n\temitter.indention = false\n\treturn true\n}\n\nfunc yaml_emitter_write_plain_scalar(emitter *yaml_emitter_t, value []byte, allow_breaks bool) bool {\n\tif !emitter.whitespace {\n\t\tif !put(emitter, ' ') {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tspaces := false\n\tbreaks := false\n\tfor i := 0; i < len(value); {\n\t\tif is_space(value, i) {\n\t\t\tif allow_breaks && !spaces && emitter.column > emitter.best_width && !is_space(value, i+1) {\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\ti += width(value[i])\n\t\t\t} else {\n\t\t\t\tif !write(emitter, value, &i) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\tspaces = true\n\t\t} else if is_break(value, i) {\n\t\t\tif !breaks && value[i] == '\\n' {\n\t\t\t\tif !put_break(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !write_break(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\temitter.indention = true\n\t\t\tbreaks = true\n\t\t} else {\n\t\t\tif breaks {\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !write(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\temitter.indention = false\n\t\t\tspaces = false\n\t\t\tbreaks = false\n\t\t}\n\t}\n\n\temitter.whitespace = false\n\temitter.indention = false\n\tif emitter.root_context {\n\t\temitter.open_ended = true\n\t}\n\n\treturn true\n}\n\nfunc yaml_emitter_write_single_quoted_scalar(emitter *yaml_emitter_t, value []byte, allow_breaks bool) bool {\n\n\tif !yaml_emitter_write_indicator(emitter, []byte{'\\''}, true, false, false) {\n\t\treturn false\n\t}\n\n\tspaces := false\n\tbreaks := false\n\tfor i := 0; i < len(value); {\n\t\tif is_space(value, i) {\n\t\t\tif allow_breaks && !spaces && emitter.column > emitter.best_width && i > 0 && i < len(value)-1 && !is_space(value, i+1) {\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\ti += width(value[i])\n\t\t\t} else {\n\t\t\t\tif !write(emitter, value, &i) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\tspaces = true\n\t\t} else if is_break(value, i) {\n\t\t\tif !breaks && value[i] == '\\n' {\n\t\t\t\tif !put_break(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !write_break(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\temitter.indention = true\n\t\t\tbreaks = true\n\t\t} else {\n\t\t\tif breaks {\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\tif value[i] == '\\'' {\n\t\t\t\tif !put(emitter, '\\'') {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !write(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\temitter.indention = false\n\t\t\tspaces = false\n\t\t\tbreaks = false\n\t\t}\n\t}\n\tif !yaml_emitter_write_indicator(emitter, []byte{'\\''}, false, false, false) {\n\t\treturn false\n\t}\n\temitter.whitespace = false\n\temitter.indention = false\n\treturn true\n}\n\nfunc yaml_emitter_write_double_quoted_scalar(emitter *yaml_emitter_t, value []byte, allow_breaks bool) bool {\n\tspaces := false\n\tif !yaml_emitter_write_indicator(emitter, []byte{'\"'}, true, false, false) {\n\t\treturn false\n\t}\n\n\tfor i := 0; i < len(value); {\n\t\tif !is_printable(value, i) || (!emitter.unicode && !is_ascii(value, i)) ||\n\t\t\tis_bom(value, i) || is_break(value, i) ||\n\t\t\tvalue[i] == '\"' || value[i] == '\\\\' {\n\n\t\t\toctet := value[i]\n\n\t\t\tvar w int\n\t\t\tvar v rune\n\t\t\tswitch {\n\t\t\tcase octet&0x80 == 0x00:\n\t\t\t\tw, v = 1, rune(octet&0x7F)\n\t\t\tcase octet&0xE0 == 0xC0:\n\t\t\t\tw, v = 2, rune(octet&0x1F)\n\t\t\tcase octet&0xF0 == 0xE0:\n\t\t\t\tw, v = 3, rune(octet&0x0F)\n\t\t\tcase octet&0xF8 == 0xF0:\n\t\t\t\tw, v = 4, rune(octet&0x07)\n\t\t\t}\n\t\t\tfor k := 1; k < w; k++ {\n\t\t\t\toctet = value[i+k]\n\t\t\t\tv = (v << 6) + (rune(octet) & 0x3F)\n\t\t\t}\n\t\t\ti += w\n\n\t\t\tif !put(emitter, '\\\\') {\n\t\t\t\treturn false\n\t\t\t}\n\n\t\t\tvar ok bool\n\t\t\tswitch v {\n\t\t\tcase 0x00:\n\t\t\t\tok = put(emitter, '0')\n\t\t\tcase 0x07:\n\t\t\t\tok = put(emitter, 'a')\n\t\t\tcase 0x08:\n\t\t\t\tok = put(emitter, 'b')\n\t\t\tcase 0x09:\n\t\t\t\tok = put(emitter, 't')\n\t\t\tcase 0x0A:\n\t\t\t\tok = put(emitter, 'n')\n\t\t\tcase 0x0b:\n\t\t\t\tok = put(emitter, 'v')\n\t\t\tcase 0x0c:\n\t\t\t\tok = put(emitter, 'f')\n\t\t\tcase 0x0d:\n\t\t\t\tok = put(emitter, 'r')\n\t\t\tcase 0x1b:\n\t\t\t\tok = put(emitter, 'e')\n\t\t\tcase 0x22:\n\t\t\t\tok = put(emitter, '\"')\n\t\t\tcase 0x5c:\n\t\t\t\tok = put(emitter, '\\\\')\n\t\t\tcase 0x85:\n\t\t\t\tok = put(emitter, 'N')\n\t\t\tcase 0xA0:\n\t\t\t\tok = put(emitter, '_')\n\t\t\tcase 0x2028:\n\t\t\t\tok = put(emitter, 'L')\n\t\t\tcase 0x2029:\n\t\t\t\tok = put(emitter, 'P')\n\t\t\tdefault:\n\t\t\t\tif v <= 0xFF {\n\t\t\t\t\tok = put(emitter, 'x')\n\t\t\t\t\tw = 2\n\t\t\t\t} else if v <= 0xFFFF {\n\t\t\t\t\tok = put(emitter, 'u')\n\t\t\t\t\tw = 4\n\t\t\t\t} else {\n\t\t\t\t\tok = put(emitter, 'U')\n\t\t\t\t\tw = 8\n\t\t\t\t}\n\t\t\t\tfor k := (w - 1) * 4; ok && k >= 0; k -= 4 {\n\t\t\t\t\tdigit := byte((v >> uint(k)) & 0x0F)\n\t\t\t\t\tif digit < 10 {\n\t\t\t\t\t\tok = put(emitter, digit+'0')\n\t\t\t\t\t} else {\n\t\t\t\t\t\tok = put(emitter, digit+'A'-10)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !ok {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tspaces = false\n\t\t} else if is_space(value, i) {\n\t\t\tif allow_breaks && !spaces && emitter.column > emitter.best_width && i > 0 && i < len(value)-1 {\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif is_space(value, i+1) {\n\t\t\t\t\tif !put(emitter, '\\\\') {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ti += width(value[i])\n\t\t\t} else if !write(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tspaces = true\n\t\t} else {\n\t\t\tif !write(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tspaces = false\n\t\t}\n\t}\n\tif !yaml_emitter_write_indicator(emitter, []byte{'\"'}, false, false, false) {\n\t\treturn false\n\t}\n\temitter.whitespace = false\n\temitter.indention = false\n\treturn true\n}\n\nfunc yaml_emitter_write_block_scalar_hints(emitter *yaml_emitter_t, value []byte) bool {\n\tif is_space(value, 0) || is_break(value, 0) {\n\t\tindent_hint := []byte{'0' + byte(emitter.best_indent)}\n\t\tif !yaml_emitter_write_indicator(emitter, indent_hint, false, false, false) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\temitter.open_ended = false\n\n\tvar chomp_hint [1]byte\n\tif len(value) == 0 {\n\t\tchomp_hint[0] = '-'\n\t} else {\n\t\ti := len(value) - 1\n\t\tfor value[i]&0xC0 == 0x80 {\n\t\t\ti--\n\t\t}\n\t\tif !is_break(value, i) {\n\t\t\tchomp_hint[0] = '-'\n\t\t} else if i == 0 {\n\t\t\tchomp_hint[0] = '+'\n\t\t\temitter.open_ended = true\n\t\t} else {\n\t\t\ti--\n\t\t\tfor value[i]&0xC0 == 0x80 {\n\t\t\t\ti--\n\t\t\t}\n\t\t\tif is_break(value, i) {\n\t\t\t\tchomp_hint[0] = '+'\n\t\t\t\temitter.open_ended = true\n\t\t\t}\n\t\t}\n\t}\n\tif chomp_hint[0] != 0 {\n\t\tif !yaml_emitter_write_indicator(emitter, chomp_hint[:], false, false, false) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc yaml_emitter_write_literal_scalar(emitter *yaml_emitter_t, value []byte) bool {\n\tif !yaml_emitter_write_indicator(emitter, []byte{'|'}, true, false, false) {\n\t\treturn false\n\t}\n\tif !yaml_emitter_write_block_scalar_hints(emitter, value) {\n\t\treturn false\n\t}\n\tif !put_break(emitter) {\n\t\treturn false\n\t}\n\temitter.indention = true\n\temitter.whitespace = true\n\tbreaks := true\n\tfor i := 0; i < len(value); {\n\t\tif is_break(value, i) {\n\t\t\tif !write_break(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\temitter.indention = true\n\t\t\tbreaks = true\n\t\t} else {\n\t\t\tif breaks {\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !write(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\temitter.indention = false\n\t\t\tbreaks = false\n\t\t}\n\t}\n\n\treturn true\n}\n\nfunc yaml_emitter_write_folded_scalar(emitter *yaml_emitter_t, value []byte) bool {\n\tif !yaml_emitter_write_indicator(emitter, []byte{'>'}, true, false, false) {\n\t\treturn false\n\t}\n\tif !yaml_emitter_write_block_scalar_hints(emitter, value) {\n\t\treturn false\n\t}\n\n\tif !put_break(emitter) {\n\t\treturn false\n\t}\n\temitter.indention = true\n\temitter.whitespace = true\n\n\tbreaks := true\n\tleading_spaces := true\n\tfor i := 0; i < len(value); {\n\t\tif is_break(value, i) {\n\t\t\tif !breaks && !leading_spaces && value[i] == '\\n' {\n\t\t\t\tk := 0\n\t\t\t\tfor is_break(value, k) {\n\t\t\t\t\tk += width(value[k])\n\t\t\t\t}\n\t\t\t\tif !is_blankz(value, k) {\n\t\t\t\t\tif !put_break(emitter) {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !write_break(emitter, value, &i) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\temitter.indention = true\n\t\t\tbreaks = true\n\t\t} else {\n\t\t\tif breaks {\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tleading_spaces = is_blank(value, i)\n\t\t\t}\n\t\t\tif !breaks && is_space(value, i) && !is_space(value, i+1) && emitter.column > emitter.best_width {\n\t\t\t\tif !yaml_emitter_write_indent(emitter) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\ti += width(value[i])\n\t\t\t} else {\n\t\t\t\tif !write(emitter, value, &i) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\temitter.indention = false\n\t\t\tbreaks = false\n\t\t}\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/encode.go",
    "content": "package yaml\n\nimport (\n\t\"encoding\"\n\t\"fmt\"\n\t\"io\"\n\t\"reflect\"\n\t\"regexp\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n\t\"unicode/utf8\"\n)\n\n// jsonNumber is the interface of the encoding/json.Number datatype.\n// Repeating the interface here avoids a dependency on encoding/json, and also\n// supports other libraries like jsoniter, which use a similar datatype with\n// the same interface. Detecting this interface is useful when dealing with\n// structures containing json.Number, which is a string under the hood. The\n// encoder should prefer the use of Int64(), Float64() and string(), in that\n// order, when encoding this type.\ntype jsonNumber interface {\n\tFloat64() (float64, error)\n\tInt64() (int64, error)\n\tString() string\n}\n\ntype encoder struct {\n\temitter yaml_emitter_t\n\tevent   yaml_event_t\n\tout     []byte\n\tflow    bool\n\t// doneInit holds whether the initial stream_start_event has been\n\t// emitted.\n\tdoneInit bool\n}\n\nfunc newEncoder() *encoder {\n\te := &encoder{}\n\tyaml_emitter_initialize(&e.emitter)\n\tyaml_emitter_set_output_string(&e.emitter, &e.out)\n\tyaml_emitter_set_unicode(&e.emitter, true)\n\treturn e\n}\n\nfunc newEncoderWithWriter(w io.Writer) *encoder {\n\te := &encoder{}\n\tyaml_emitter_initialize(&e.emitter)\n\tyaml_emitter_set_output_writer(&e.emitter, w)\n\tyaml_emitter_set_unicode(&e.emitter, true)\n\treturn e\n}\n\nfunc (e *encoder) init() {\n\tif e.doneInit {\n\t\treturn\n\t}\n\tyaml_stream_start_event_initialize(&e.event, yaml_UTF8_ENCODING)\n\te.emit()\n\te.doneInit = true\n}\n\nfunc (e *encoder) finish() {\n\te.emitter.open_ended = false\n\tyaml_stream_end_event_initialize(&e.event)\n\te.emit()\n}\n\nfunc (e *encoder) destroy() {\n\tyaml_emitter_delete(&e.emitter)\n}\n\nfunc (e *encoder) emit() {\n\t// This will internally delete the e.event value.\n\te.must(yaml_emitter_emit(&e.emitter, &e.event))\n}\n\nfunc (e *encoder) must(ok bool) {\n\tif !ok {\n\t\tmsg := e.emitter.problem\n\t\tif msg == \"\" {\n\t\t\tmsg = \"unknown problem generating YAML content\"\n\t\t}\n\t\tfailf(\"%s\", msg)\n\t}\n}\n\nfunc (e *encoder) marshalDoc(tag string, in reflect.Value) {\n\te.init()\n\tyaml_document_start_event_initialize(&e.event, nil, nil, true)\n\te.emit()\n\te.marshal(tag, in)\n\tyaml_document_end_event_initialize(&e.event, true)\n\te.emit()\n}\n\nfunc (e *encoder) marshal(tag string, in reflect.Value) {\n\tif !in.IsValid() || in.Kind() == reflect.Ptr && in.IsNil() {\n\t\te.nilv()\n\t\treturn\n\t}\n\tiface := in.Interface()\n\tswitch m := iface.(type) {\n\tcase jsonNumber:\n\t\tinteger, err := m.Int64()\n\t\tif err == nil {\n\t\t\t// In this case the json.Number is a valid int64\n\t\t\tin = reflect.ValueOf(integer)\n\t\t\tbreak\n\t\t}\n\t\tfloat, err := m.Float64()\n\t\tif err == nil {\n\t\t\t// In this case the json.Number is a valid float64\n\t\t\tin = reflect.ValueOf(float)\n\t\t\tbreak\n\t\t}\n\t\t// fallback case - no number could be obtained\n\t\tin = reflect.ValueOf(m.String())\n\tcase time.Time, *time.Time:\n\t\t// Although time.Time implements TextMarshaler,\n\t\t// we don't want to treat it as a string for YAML\n\t\t// purposes because YAML has special support for\n\t\t// timestamps.\n\tcase Marshaler:\n\t\tv, err := m.MarshalYAML()\n\t\tif err != nil {\n\t\t\tfail(err)\n\t\t}\n\t\tif v == nil {\n\t\t\te.nilv()\n\t\t\treturn\n\t\t}\n\t\tin = reflect.ValueOf(v)\n\tcase encoding.TextMarshaler:\n\t\ttext, err := m.MarshalText()\n\t\tif err != nil {\n\t\t\tfail(err)\n\t\t}\n\t\tin = reflect.ValueOf(string(text))\n\tcase nil:\n\t\te.nilv()\n\t\treturn\n\t}\n\tswitch in.Kind() {\n\tcase reflect.Interface:\n\t\te.marshal(tag, in.Elem())\n\tcase reflect.Map:\n\t\te.mapv(tag, in)\n\tcase reflect.Ptr:\n\t\tif in.Type() == ptrTimeType {\n\t\t\te.timev(tag, in.Elem())\n\t\t} else {\n\t\t\te.marshal(tag, in.Elem())\n\t\t}\n\tcase reflect.Struct:\n\t\tif in.Type() == timeType {\n\t\t\te.timev(tag, in)\n\t\t} else {\n\t\t\te.structv(tag, in)\n\t\t}\n\tcase reflect.Slice, reflect.Array:\n\t\tif in.Type().Elem() == mapItemType {\n\t\t\te.itemsv(tag, in)\n\t\t} else {\n\t\t\te.slicev(tag, in)\n\t\t}\n\tcase reflect.String:\n\t\te.stringv(tag, in)\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tif in.Type() == durationType {\n\t\t\te.stringv(tag, reflect.ValueOf(iface.(time.Duration).String()))\n\t\t} else {\n\t\t\te.intv(tag, in)\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\te.uintv(tag, in)\n\tcase reflect.Float32, reflect.Float64:\n\t\te.floatv(tag, in)\n\tcase reflect.Bool:\n\t\te.boolv(tag, in)\n\tdefault:\n\t\tpanic(\"cannot marshal type: \" + in.Type().String())\n\t}\n}\n\nfunc (e *encoder) mapv(tag string, in reflect.Value) {\n\te.mappingv(tag, func() {\n\t\tkeys := keyList(in.MapKeys())\n\t\tsort.Sort(keys)\n\t\tfor _, k := range keys {\n\t\t\te.marshal(\"\", k)\n\t\t\te.marshal(\"\", in.MapIndex(k))\n\t\t}\n\t})\n}\n\nfunc (e *encoder) itemsv(tag string, in reflect.Value) {\n\te.mappingv(tag, func() {\n\t\tslice := in.Convert(reflect.TypeOf([]MapItem{})).Interface().([]MapItem)\n\t\tfor _, item := range slice {\n\t\t\te.marshal(\"\", reflect.ValueOf(item.Key))\n\t\t\te.marshal(\"\", reflect.ValueOf(item.Value))\n\t\t}\n\t})\n}\n\nfunc (e *encoder) structv(tag string, in reflect.Value) {\n\tsinfo, err := getStructInfo(in.Type())\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\te.mappingv(tag, func() {\n\t\tfor _, info := range sinfo.FieldsList {\n\t\t\tvar value reflect.Value\n\t\t\tif info.Inline == nil {\n\t\t\t\tvalue = in.Field(info.Num)\n\t\t\t} else {\n\t\t\t\tvalue = in.FieldByIndex(info.Inline)\n\t\t\t}\n\t\t\tif info.OmitEmpty && isZero(value) {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\te.marshal(\"\", reflect.ValueOf(info.Key))\n\t\t\te.flow = info.Flow\n\t\t\te.marshal(\"\", value)\n\t\t}\n\t\tif sinfo.InlineMap >= 0 {\n\t\t\tm := in.Field(sinfo.InlineMap)\n\t\t\tif m.Len() > 0 {\n\t\t\t\te.flow = false\n\t\t\t\tkeys := keyList(m.MapKeys())\n\t\t\t\tsort.Sort(keys)\n\t\t\t\tfor _, k := range keys {\n\t\t\t\t\tif _, found := sinfo.FieldsMap[k.String()]; found {\n\t\t\t\t\t\tpanic(fmt.Sprintf(\"Can't have key %q in inlined map; conflicts with struct field\", k.String()))\n\t\t\t\t\t}\n\t\t\t\t\te.marshal(\"\", k)\n\t\t\t\t\te.flow = false\n\t\t\t\t\te.marshal(\"\", m.MapIndex(k))\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t})\n}\n\nfunc (e *encoder) mappingv(tag string, f func()) {\n\timplicit := tag == \"\"\n\tstyle := yaml_BLOCK_MAPPING_STYLE\n\tif e.flow {\n\t\te.flow = false\n\t\tstyle = yaml_FLOW_MAPPING_STYLE\n\t}\n\tyaml_mapping_start_event_initialize(&e.event, nil, []byte(tag), implicit, style)\n\te.emit()\n\tf()\n\tyaml_mapping_end_event_initialize(&e.event)\n\te.emit()\n}\n\nfunc (e *encoder) slicev(tag string, in reflect.Value) {\n\timplicit := tag == \"\"\n\tstyle := yaml_BLOCK_SEQUENCE_STYLE\n\tif e.flow {\n\t\te.flow = false\n\t\tstyle = yaml_FLOW_SEQUENCE_STYLE\n\t}\n\te.must(yaml_sequence_start_event_initialize(&e.event, nil, []byte(tag), implicit, style))\n\te.emit()\n\tn := in.Len()\n\tfor i := 0; i < n; i++ {\n\t\te.marshal(\"\", in.Index(i))\n\t}\n\te.must(yaml_sequence_end_event_initialize(&e.event))\n\te.emit()\n}\n\n// isBase60 returns whether s is in base 60 notation as defined in YAML 1.1.\n//\n// The base 60 float notation in YAML 1.1 is a terrible idea and is unsupported\n// in YAML 1.2 and by this package, but these should be marshalled quoted for\n// the time being for compatibility with other parsers.\nfunc isBase60Float(s string) (result bool) {\n\t// Fast path.\n\tif s == \"\" {\n\t\treturn false\n\t}\n\tc := s[0]\n\tif !(c == '+' || c == '-' || c >= '0' && c <= '9') || strings.IndexByte(s, ':') < 0 {\n\t\treturn false\n\t}\n\t// Do the full match.\n\treturn base60float.MatchString(s)\n}\n\n// From http://yaml.org/type/float.html, except the regular expression there\n// is bogus. In practice parsers do not enforce the \"\\.[0-9_]*\" suffix.\nvar base60float = regexp.MustCompile(`^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+(?:\\.[0-9_]*)?$`)\n\nfunc (e *encoder) stringv(tag string, in reflect.Value) {\n\tvar style yaml_scalar_style_t\n\ts := in.String()\n\tcanUsePlain := true\n\tswitch {\n\tcase !utf8.ValidString(s):\n\t\tif tag == yaml_BINARY_TAG {\n\t\t\tfailf(\"explicitly tagged !!binary data must be base64-encoded\")\n\t\t}\n\t\tif tag != \"\" {\n\t\t\tfailf(\"cannot marshal invalid UTF-8 data as %s\", shortTag(tag))\n\t\t}\n\t\t// It can't be encoded directly as YAML so use a binary tag\n\t\t// and encode it as base64.\n\t\ttag = yaml_BINARY_TAG\n\t\ts = encodeBase64(s)\n\tcase tag == \"\":\n\t\t// Check to see if it would resolve to a specific\n\t\t// tag when encoded unquoted. If it doesn't,\n\t\t// there's no need to quote it.\n\t\trtag, _ := resolve(\"\", s)\n\t\tcanUsePlain = rtag == yaml_STR_TAG && !isBase60Float(s)\n\t}\n\t// Note: it's possible for user code to emit invalid YAML\n\t// if they explicitly specify a tag and a string containing\n\t// text that's incompatible with that tag.\n\tswitch {\n\tcase strings.Contains(s, \"\\n\"):\n\t\tstyle = yaml_LITERAL_SCALAR_STYLE\n\tcase canUsePlain:\n\t\tstyle = yaml_PLAIN_SCALAR_STYLE\n\tdefault:\n\t\tstyle = yaml_DOUBLE_QUOTED_SCALAR_STYLE\n\t}\n\te.emitScalar(s, \"\", tag, style)\n}\n\nfunc (e *encoder) boolv(tag string, in reflect.Value) {\n\tvar s string\n\tif in.Bool() {\n\t\ts = \"true\"\n\t} else {\n\t\ts = \"false\"\n\t}\n\te.emitScalar(s, \"\", tag, yaml_PLAIN_SCALAR_STYLE)\n}\n\nfunc (e *encoder) intv(tag string, in reflect.Value) {\n\ts := strconv.FormatInt(in.Int(), 10)\n\te.emitScalar(s, \"\", tag, yaml_PLAIN_SCALAR_STYLE)\n}\n\nfunc (e *encoder) uintv(tag string, in reflect.Value) {\n\ts := strconv.FormatUint(in.Uint(), 10)\n\te.emitScalar(s, \"\", tag, yaml_PLAIN_SCALAR_STYLE)\n}\n\nfunc (e *encoder) timev(tag string, in reflect.Value) {\n\tt := in.Interface().(time.Time)\n\ts := t.Format(time.RFC3339Nano)\n\te.emitScalar(s, \"\", tag, yaml_PLAIN_SCALAR_STYLE)\n}\n\nfunc (e *encoder) floatv(tag string, in reflect.Value) {\n\t// Issue #352: When formatting, use the precision of the underlying value\n\tprecision := 64\n\tif in.Kind() == reflect.Float32 {\n\t\tprecision = 32\n\t}\n\n\ts := strconv.FormatFloat(in.Float(), 'g', -1, precision)\n\tswitch s {\n\tcase \"+Inf\":\n\t\ts = \".inf\"\n\tcase \"-Inf\":\n\t\ts = \"-.inf\"\n\tcase \"NaN\":\n\t\ts = \".nan\"\n\t}\n\te.emitScalar(s, \"\", tag, yaml_PLAIN_SCALAR_STYLE)\n}\n\nfunc (e *encoder) nilv() {\n\te.emitScalar(\"null\", \"\", \"\", yaml_PLAIN_SCALAR_STYLE)\n}\n\nfunc (e *encoder) emitScalar(value, anchor, tag string, style yaml_scalar_style_t) {\n\timplicit := tag == \"\"\n\te.must(yaml_scalar_event_initialize(&e.event, []byte(anchor), []byte(tag), []byte(value), implicit, implicit, style))\n\te.emit()\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/go.mod",
    "content": "module \"gopkg.in/yaml.v2\"\n\nrequire (\n\t\"gopkg.in/check.v1\" v0.0.0-20161208181325-20d25e280405\n)\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/parserc.go",
    "content": "package yaml\n\nimport (\n\t\"bytes\"\n)\n\n// The parser implements the following grammar:\n//\n// stream               ::= STREAM-START implicit_document? explicit_document* STREAM-END\n// implicit_document    ::= block_node DOCUMENT-END*\n// explicit_document    ::= DIRECTIVE* DOCUMENT-START block_node? DOCUMENT-END*\n// block_node_or_indentless_sequence    ::=\n//                          ALIAS\n//                          | properties (block_content | indentless_block_sequence)?\n//                          | block_content\n//                          | indentless_block_sequence\n// block_node           ::= ALIAS\n//                          | properties block_content?\n//                          | block_content\n// flow_node            ::= ALIAS\n//                          | properties flow_content?\n//                          | flow_content\n// properties           ::= TAG ANCHOR? | ANCHOR TAG?\n// block_content        ::= block_collection | flow_collection | SCALAR\n// flow_content         ::= flow_collection | SCALAR\n// block_collection     ::= block_sequence | block_mapping\n// flow_collection      ::= flow_sequence | flow_mapping\n// block_sequence       ::= BLOCK-SEQUENCE-START (BLOCK-ENTRY block_node?)* BLOCK-END\n// indentless_sequence  ::= (BLOCK-ENTRY block_node?)+\n// block_mapping        ::= BLOCK-MAPPING_START\n//                          ((KEY block_node_or_indentless_sequence?)?\n//                          (VALUE block_node_or_indentless_sequence?)?)*\n//                          BLOCK-END\n// flow_sequence        ::= FLOW-SEQUENCE-START\n//                          (flow_sequence_entry FLOW-ENTRY)*\n//                          flow_sequence_entry?\n//                          FLOW-SEQUENCE-END\n// flow_sequence_entry  ::= flow_node | KEY flow_node? (VALUE flow_node?)?\n// flow_mapping         ::= FLOW-MAPPING-START\n//                          (flow_mapping_entry FLOW-ENTRY)*\n//                          flow_mapping_entry?\n//                          FLOW-MAPPING-END\n// flow_mapping_entry   ::= flow_node | KEY flow_node? (VALUE flow_node?)?\n\n// Peek the next token in the token queue.\nfunc peek_token(parser *yaml_parser_t) *yaml_token_t {\n\tif parser.token_available || yaml_parser_fetch_more_tokens(parser) {\n\t\treturn &parser.tokens[parser.tokens_head]\n\t}\n\treturn nil\n}\n\n// Remove the next token from the queue (must be called after peek_token).\nfunc skip_token(parser *yaml_parser_t) {\n\tparser.token_available = false\n\tparser.tokens_parsed++\n\tparser.stream_end_produced = parser.tokens[parser.tokens_head].typ == yaml_STREAM_END_TOKEN\n\tparser.tokens_head++\n}\n\n// Get the next event.\nfunc yaml_parser_parse(parser *yaml_parser_t, event *yaml_event_t) bool {\n\t// Erase the event object.\n\t*event = yaml_event_t{}\n\n\t// No events after the end of the stream or error.\n\tif parser.stream_end_produced || parser.error != yaml_NO_ERROR || parser.state == yaml_PARSE_END_STATE {\n\t\treturn true\n\t}\n\n\t// Generate the next event.\n\treturn yaml_parser_state_machine(parser, event)\n}\n\n// Set parser error.\nfunc yaml_parser_set_parser_error(parser *yaml_parser_t, problem string, problem_mark yaml_mark_t) bool {\n\tparser.error = yaml_PARSER_ERROR\n\tparser.problem = problem\n\tparser.problem_mark = problem_mark\n\treturn false\n}\n\nfunc yaml_parser_set_parser_error_context(parser *yaml_parser_t, context string, context_mark yaml_mark_t, problem string, problem_mark yaml_mark_t) bool {\n\tparser.error = yaml_PARSER_ERROR\n\tparser.context = context\n\tparser.context_mark = context_mark\n\tparser.problem = problem\n\tparser.problem_mark = problem_mark\n\treturn false\n}\n\n// State dispatcher.\nfunc yaml_parser_state_machine(parser *yaml_parser_t, event *yaml_event_t) bool {\n\t//trace(\"yaml_parser_state_machine\", \"state:\", parser.state.String())\n\n\tswitch parser.state {\n\tcase yaml_PARSE_STREAM_START_STATE:\n\t\treturn yaml_parser_parse_stream_start(parser, event)\n\n\tcase yaml_PARSE_IMPLICIT_DOCUMENT_START_STATE:\n\t\treturn yaml_parser_parse_document_start(parser, event, true)\n\n\tcase yaml_PARSE_DOCUMENT_START_STATE:\n\t\treturn yaml_parser_parse_document_start(parser, event, false)\n\n\tcase yaml_PARSE_DOCUMENT_CONTENT_STATE:\n\t\treturn yaml_parser_parse_document_content(parser, event)\n\n\tcase yaml_PARSE_DOCUMENT_END_STATE:\n\t\treturn yaml_parser_parse_document_end(parser, event)\n\n\tcase yaml_PARSE_BLOCK_NODE_STATE:\n\t\treturn yaml_parser_parse_node(parser, event, true, false)\n\n\tcase yaml_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE:\n\t\treturn yaml_parser_parse_node(parser, event, true, true)\n\n\tcase yaml_PARSE_FLOW_NODE_STATE:\n\t\treturn yaml_parser_parse_node(parser, event, false, false)\n\n\tcase yaml_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE:\n\t\treturn yaml_parser_parse_block_sequence_entry(parser, event, true)\n\n\tcase yaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE:\n\t\treturn yaml_parser_parse_block_sequence_entry(parser, event, false)\n\n\tcase yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE:\n\t\treturn yaml_parser_parse_indentless_sequence_entry(parser, event)\n\n\tcase yaml_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE:\n\t\treturn yaml_parser_parse_block_mapping_key(parser, event, true)\n\n\tcase yaml_PARSE_BLOCK_MAPPING_KEY_STATE:\n\t\treturn yaml_parser_parse_block_mapping_key(parser, event, false)\n\n\tcase yaml_PARSE_BLOCK_MAPPING_VALUE_STATE:\n\t\treturn yaml_parser_parse_block_mapping_value(parser, event)\n\n\tcase yaml_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE:\n\t\treturn yaml_parser_parse_flow_sequence_entry(parser, event, true)\n\n\tcase yaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE:\n\t\treturn yaml_parser_parse_flow_sequence_entry(parser, event, false)\n\n\tcase yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE:\n\t\treturn yaml_parser_parse_flow_sequence_entry_mapping_key(parser, event)\n\n\tcase yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE:\n\t\treturn yaml_parser_parse_flow_sequence_entry_mapping_value(parser, event)\n\n\tcase yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE:\n\t\treturn yaml_parser_parse_flow_sequence_entry_mapping_end(parser, event)\n\n\tcase yaml_PARSE_FLOW_MAPPING_FIRST_KEY_STATE:\n\t\treturn yaml_parser_parse_flow_mapping_key(parser, event, true)\n\n\tcase yaml_PARSE_FLOW_MAPPING_KEY_STATE:\n\t\treturn yaml_parser_parse_flow_mapping_key(parser, event, false)\n\n\tcase yaml_PARSE_FLOW_MAPPING_VALUE_STATE:\n\t\treturn yaml_parser_parse_flow_mapping_value(parser, event, false)\n\n\tcase yaml_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE:\n\t\treturn yaml_parser_parse_flow_mapping_value(parser, event, true)\n\n\tdefault:\n\t\tpanic(\"invalid parser state\")\n\t}\n}\n\n// Parse the production:\n// stream   ::= STREAM-START implicit_document? explicit_document* STREAM-END\n//              ************\nfunc yaml_parser_parse_stream_start(parser *yaml_parser_t, event *yaml_event_t) bool {\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\tif token.typ != yaml_STREAM_START_TOKEN {\n\t\treturn yaml_parser_set_parser_error(parser, \"did not find expected <stream-start>\", token.start_mark)\n\t}\n\tparser.state = yaml_PARSE_IMPLICIT_DOCUMENT_START_STATE\n\t*event = yaml_event_t{\n\t\ttyp:        yaml_STREAM_START_EVENT,\n\t\tstart_mark: token.start_mark,\n\t\tend_mark:   token.end_mark,\n\t\tencoding:   token.encoding,\n\t}\n\tskip_token(parser)\n\treturn true\n}\n\n// Parse the productions:\n// implicit_document    ::= block_node DOCUMENT-END*\n//                          *\n// explicit_document    ::= DIRECTIVE* DOCUMENT-START block_node? DOCUMENT-END*\n//                          *************************\nfunc yaml_parser_parse_document_start(parser *yaml_parser_t, event *yaml_event_t, implicit bool) bool {\n\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\n\t// Parse extra document end indicators.\n\tif !implicit {\n\t\tfor token.typ == yaml_DOCUMENT_END_TOKEN {\n\t\t\tskip_token(parser)\n\t\t\ttoken = peek_token(parser)\n\t\t\tif token == nil {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\n\tif implicit && token.typ != yaml_VERSION_DIRECTIVE_TOKEN &&\n\t\ttoken.typ != yaml_TAG_DIRECTIVE_TOKEN &&\n\t\ttoken.typ != yaml_DOCUMENT_START_TOKEN &&\n\t\ttoken.typ != yaml_STREAM_END_TOKEN {\n\t\t// Parse an implicit document.\n\t\tif !yaml_parser_process_directives(parser, nil, nil) {\n\t\t\treturn false\n\t\t}\n\t\tparser.states = append(parser.states, yaml_PARSE_DOCUMENT_END_STATE)\n\t\tparser.state = yaml_PARSE_BLOCK_NODE_STATE\n\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_DOCUMENT_START_EVENT,\n\t\t\tstart_mark: token.start_mark,\n\t\t\tend_mark:   token.end_mark,\n\t\t}\n\n\t} else if token.typ != yaml_STREAM_END_TOKEN {\n\t\t// Parse an explicit document.\n\t\tvar version_directive *yaml_version_directive_t\n\t\tvar tag_directives []yaml_tag_directive_t\n\t\tstart_mark := token.start_mark\n\t\tif !yaml_parser_process_directives(parser, &version_directive, &tag_directives) {\n\t\t\treturn false\n\t\t}\n\t\ttoken = peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t\tif token.typ != yaml_DOCUMENT_START_TOKEN {\n\t\t\tyaml_parser_set_parser_error(parser,\n\t\t\t\t\"did not find expected <document start>\", token.start_mark)\n\t\t\treturn false\n\t\t}\n\t\tparser.states = append(parser.states, yaml_PARSE_DOCUMENT_END_STATE)\n\t\tparser.state = yaml_PARSE_DOCUMENT_CONTENT_STATE\n\t\tend_mark := token.end_mark\n\n\t\t*event = yaml_event_t{\n\t\t\ttyp:               yaml_DOCUMENT_START_EVENT,\n\t\t\tstart_mark:        start_mark,\n\t\t\tend_mark:          end_mark,\n\t\t\tversion_directive: version_directive,\n\t\t\ttag_directives:    tag_directives,\n\t\t\timplicit:          false,\n\t\t}\n\t\tskip_token(parser)\n\n\t} else {\n\t\t// Parse the stream end.\n\t\tparser.state = yaml_PARSE_END_STATE\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_STREAM_END_EVENT,\n\t\t\tstart_mark: token.start_mark,\n\t\t\tend_mark:   token.end_mark,\n\t\t}\n\t\tskip_token(parser)\n\t}\n\n\treturn true\n}\n\n// Parse the productions:\n// explicit_document    ::= DIRECTIVE* DOCUMENT-START block_node? DOCUMENT-END*\n//                                                    ***********\n//\nfunc yaml_parser_parse_document_content(parser *yaml_parser_t, event *yaml_event_t) bool {\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\tif token.typ == yaml_VERSION_DIRECTIVE_TOKEN ||\n\t\ttoken.typ == yaml_TAG_DIRECTIVE_TOKEN ||\n\t\ttoken.typ == yaml_DOCUMENT_START_TOKEN ||\n\t\ttoken.typ == yaml_DOCUMENT_END_TOKEN ||\n\t\ttoken.typ == yaml_STREAM_END_TOKEN {\n\t\tparser.state = parser.states[len(parser.states)-1]\n\t\tparser.states = parser.states[:len(parser.states)-1]\n\t\treturn yaml_parser_process_empty_scalar(parser, event,\n\t\t\ttoken.start_mark)\n\t}\n\treturn yaml_parser_parse_node(parser, event, true, false)\n}\n\n// Parse the productions:\n// implicit_document    ::= block_node DOCUMENT-END*\n//                                     *************\n// explicit_document    ::= DIRECTIVE* DOCUMENT-START block_node? DOCUMENT-END*\n//\nfunc yaml_parser_parse_document_end(parser *yaml_parser_t, event *yaml_event_t) bool {\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\n\tstart_mark := token.start_mark\n\tend_mark := token.start_mark\n\n\timplicit := true\n\tif token.typ == yaml_DOCUMENT_END_TOKEN {\n\t\tend_mark = token.end_mark\n\t\tskip_token(parser)\n\t\timplicit = false\n\t}\n\n\tparser.tag_directives = parser.tag_directives[:0]\n\n\tparser.state = yaml_PARSE_DOCUMENT_START_STATE\n\t*event = yaml_event_t{\n\t\ttyp:        yaml_DOCUMENT_END_EVENT,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t\timplicit:   implicit,\n\t}\n\treturn true\n}\n\n// Parse the productions:\n// block_node_or_indentless_sequence    ::=\n//                          ALIAS\n//                          *****\n//                          | properties (block_content | indentless_block_sequence)?\n//                            **********  *\n//                          | block_content | indentless_block_sequence\n//                            *\n// block_node           ::= ALIAS\n//                          *****\n//                          | properties block_content?\n//                            ********** *\n//                          | block_content\n//                            *\n// flow_node            ::= ALIAS\n//                          *****\n//                          | properties flow_content?\n//                            ********** *\n//                          | flow_content\n//                            *\n// properties           ::= TAG ANCHOR? | ANCHOR TAG?\n//                          *************************\n// block_content        ::= block_collection | flow_collection | SCALAR\n//                                                               ******\n// flow_content         ::= flow_collection | SCALAR\n//                                            ******\nfunc yaml_parser_parse_node(parser *yaml_parser_t, event *yaml_event_t, block, indentless_sequence bool) bool {\n\t//defer trace(\"yaml_parser_parse_node\", \"block:\", block, \"indentless_sequence:\", indentless_sequence)()\n\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\n\tif token.typ == yaml_ALIAS_TOKEN {\n\t\tparser.state = parser.states[len(parser.states)-1]\n\t\tparser.states = parser.states[:len(parser.states)-1]\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_ALIAS_EVENT,\n\t\t\tstart_mark: token.start_mark,\n\t\t\tend_mark:   token.end_mark,\n\t\t\tanchor:     token.value,\n\t\t}\n\t\tskip_token(parser)\n\t\treturn true\n\t}\n\n\tstart_mark := token.start_mark\n\tend_mark := token.start_mark\n\n\tvar tag_token bool\n\tvar tag_handle, tag_suffix, anchor []byte\n\tvar tag_mark yaml_mark_t\n\tif token.typ == yaml_ANCHOR_TOKEN {\n\t\tanchor = token.value\n\t\tstart_mark = token.start_mark\n\t\tend_mark = token.end_mark\n\t\tskip_token(parser)\n\t\ttoken = peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t\tif token.typ == yaml_TAG_TOKEN {\n\t\t\ttag_token = true\n\t\t\ttag_handle = token.value\n\t\t\ttag_suffix = token.suffix\n\t\t\ttag_mark = token.start_mark\n\t\t\tend_mark = token.end_mark\n\t\t\tskip_token(parser)\n\t\t\ttoken = peek_token(parser)\n\t\t\tif token == nil {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t} else if token.typ == yaml_TAG_TOKEN {\n\t\ttag_token = true\n\t\ttag_handle = token.value\n\t\ttag_suffix = token.suffix\n\t\tstart_mark = token.start_mark\n\t\ttag_mark = token.start_mark\n\t\tend_mark = token.end_mark\n\t\tskip_token(parser)\n\t\ttoken = peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t\tif token.typ == yaml_ANCHOR_TOKEN {\n\t\t\tanchor = token.value\n\t\t\tend_mark = token.end_mark\n\t\t\tskip_token(parser)\n\t\t\ttoken = peek_token(parser)\n\t\t\tif token == nil {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\n\tvar tag []byte\n\tif tag_token {\n\t\tif len(tag_handle) == 0 {\n\t\t\ttag = tag_suffix\n\t\t\ttag_suffix = nil\n\t\t} else {\n\t\t\tfor i := range parser.tag_directives {\n\t\t\t\tif bytes.Equal(parser.tag_directives[i].handle, tag_handle) {\n\t\t\t\t\ttag = append([]byte(nil), parser.tag_directives[i].prefix...)\n\t\t\t\t\ttag = append(tag, tag_suffix...)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif len(tag) == 0 {\n\t\t\t\tyaml_parser_set_parser_error_context(parser,\n\t\t\t\t\t\"while parsing a node\", start_mark,\n\t\t\t\t\t\"found undefined tag handle\", tag_mark)\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\n\timplicit := len(tag) == 0\n\tif indentless_sequence && token.typ == yaml_BLOCK_ENTRY_TOKEN {\n\t\tend_mark = token.end_mark\n\t\tparser.state = yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_SEQUENCE_START_EVENT,\n\t\t\tstart_mark: start_mark,\n\t\t\tend_mark:   end_mark,\n\t\t\tanchor:     anchor,\n\t\t\ttag:        tag,\n\t\t\timplicit:   implicit,\n\t\t\tstyle:      yaml_style_t(yaml_BLOCK_SEQUENCE_STYLE),\n\t\t}\n\t\treturn true\n\t}\n\tif token.typ == yaml_SCALAR_TOKEN {\n\t\tvar plain_implicit, quoted_implicit bool\n\t\tend_mark = token.end_mark\n\t\tif (len(tag) == 0 && token.style == yaml_PLAIN_SCALAR_STYLE) || (len(tag) == 1 && tag[0] == '!') {\n\t\t\tplain_implicit = true\n\t\t} else if len(tag) == 0 {\n\t\t\tquoted_implicit = true\n\t\t}\n\t\tparser.state = parser.states[len(parser.states)-1]\n\t\tparser.states = parser.states[:len(parser.states)-1]\n\n\t\t*event = yaml_event_t{\n\t\t\ttyp:             yaml_SCALAR_EVENT,\n\t\t\tstart_mark:      start_mark,\n\t\t\tend_mark:        end_mark,\n\t\t\tanchor:          anchor,\n\t\t\ttag:             tag,\n\t\t\tvalue:           token.value,\n\t\t\timplicit:        plain_implicit,\n\t\t\tquoted_implicit: quoted_implicit,\n\t\t\tstyle:           yaml_style_t(token.style),\n\t\t}\n\t\tskip_token(parser)\n\t\treturn true\n\t}\n\tif token.typ == yaml_FLOW_SEQUENCE_START_TOKEN {\n\t\t// [Go] Some of the events below can be merged as they differ only on style.\n\t\tend_mark = token.end_mark\n\t\tparser.state = yaml_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_SEQUENCE_START_EVENT,\n\t\t\tstart_mark: start_mark,\n\t\t\tend_mark:   end_mark,\n\t\t\tanchor:     anchor,\n\t\t\ttag:        tag,\n\t\t\timplicit:   implicit,\n\t\t\tstyle:      yaml_style_t(yaml_FLOW_SEQUENCE_STYLE),\n\t\t}\n\t\treturn true\n\t}\n\tif token.typ == yaml_FLOW_MAPPING_START_TOKEN {\n\t\tend_mark = token.end_mark\n\t\tparser.state = yaml_PARSE_FLOW_MAPPING_FIRST_KEY_STATE\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_MAPPING_START_EVENT,\n\t\t\tstart_mark: start_mark,\n\t\t\tend_mark:   end_mark,\n\t\t\tanchor:     anchor,\n\t\t\ttag:        tag,\n\t\t\timplicit:   implicit,\n\t\t\tstyle:      yaml_style_t(yaml_FLOW_MAPPING_STYLE),\n\t\t}\n\t\treturn true\n\t}\n\tif block && token.typ == yaml_BLOCK_SEQUENCE_START_TOKEN {\n\t\tend_mark = token.end_mark\n\t\tparser.state = yaml_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_SEQUENCE_START_EVENT,\n\t\t\tstart_mark: start_mark,\n\t\t\tend_mark:   end_mark,\n\t\t\tanchor:     anchor,\n\t\t\ttag:        tag,\n\t\t\timplicit:   implicit,\n\t\t\tstyle:      yaml_style_t(yaml_BLOCK_SEQUENCE_STYLE),\n\t\t}\n\t\treturn true\n\t}\n\tif block && token.typ == yaml_BLOCK_MAPPING_START_TOKEN {\n\t\tend_mark = token.end_mark\n\t\tparser.state = yaml_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_MAPPING_START_EVENT,\n\t\t\tstart_mark: start_mark,\n\t\t\tend_mark:   end_mark,\n\t\t\tanchor:     anchor,\n\t\t\ttag:        tag,\n\t\t\timplicit:   implicit,\n\t\t\tstyle:      yaml_style_t(yaml_BLOCK_MAPPING_STYLE),\n\t\t}\n\t\treturn true\n\t}\n\tif len(anchor) > 0 || len(tag) > 0 {\n\t\tparser.state = parser.states[len(parser.states)-1]\n\t\tparser.states = parser.states[:len(parser.states)-1]\n\n\t\t*event = yaml_event_t{\n\t\t\ttyp:             yaml_SCALAR_EVENT,\n\t\t\tstart_mark:      start_mark,\n\t\t\tend_mark:        end_mark,\n\t\t\tanchor:          anchor,\n\t\t\ttag:             tag,\n\t\t\timplicit:        implicit,\n\t\t\tquoted_implicit: false,\n\t\t\tstyle:           yaml_style_t(yaml_PLAIN_SCALAR_STYLE),\n\t\t}\n\t\treturn true\n\t}\n\n\tcontext := \"while parsing a flow node\"\n\tif block {\n\t\tcontext = \"while parsing a block node\"\n\t}\n\tyaml_parser_set_parser_error_context(parser, context, start_mark,\n\t\t\"did not find expected node content\", token.start_mark)\n\treturn false\n}\n\n// Parse the productions:\n// block_sequence ::= BLOCK-SEQUENCE-START (BLOCK-ENTRY block_node?)* BLOCK-END\n//                    ********************  *********** *             *********\n//\nfunc yaml_parser_parse_block_sequence_entry(parser *yaml_parser_t, event *yaml_event_t, first bool) bool {\n\tif first {\n\t\ttoken := peek_token(parser)\n\t\tparser.marks = append(parser.marks, token.start_mark)\n\t\tskip_token(parser)\n\t}\n\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\n\tif token.typ == yaml_BLOCK_ENTRY_TOKEN {\n\t\tmark := token.end_mark\n\t\tskip_token(parser)\n\t\ttoken = peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t\tif token.typ != yaml_BLOCK_ENTRY_TOKEN && token.typ != yaml_BLOCK_END_TOKEN {\n\t\t\tparser.states = append(parser.states, yaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE)\n\t\t\treturn yaml_parser_parse_node(parser, event, true, false)\n\t\t} else {\n\t\t\tparser.state = yaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE\n\t\t\treturn yaml_parser_process_empty_scalar(parser, event, mark)\n\t\t}\n\t}\n\tif token.typ == yaml_BLOCK_END_TOKEN {\n\t\tparser.state = parser.states[len(parser.states)-1]\n\t\tparser.states = parser.states[:len(parser.states)-1]\n\t\tparser.marks = parser.marks[:len(parser.marks)-1]\n\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_SEQUENCE_END_EVENT,\n\t\t\tstart_mark: token.start_mark,\n\t\t\tend_mark:   token.end_mark,\n\t\t}\n\n\t\tskip_token(parser)\n\t\treturn true\n\t}\n\n\tcontext_mark := parser.marks[len(parser.marks)-1]\n\tparser.marks = parser.marks[:len(parser.marks)-1]\n\treturn yaml_parser_set_parser_error_context(parser,\n\t\t\"while parsing a block collection\", context_mark,\n\t\t\"did not find expected '-' indicator\", token.start_mark)\n}\n\n// Parse the productions:\n// indentless_sequence  ::= (BLOCK-ENTRY block_node?)+\n//                           *********** *\nfunc yaml_parser_parse_indentless_sequence_entry(parser *yaml_parser_t, event *yaml_event_t) bool {\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\n\tif token.typ == yaml_BLOCK_ENTRY_TOKEN {\n\t\tmark := token.end_mark\n\t\tskip_token(parser)\n\t\ttoken = peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t\tif token.typ != yaml_BLOCK_ENTRY_TOKEN &&\n\t\t\ttoken.typ != yaml_KEY_TOKEN &&\n\t\t\ttoken.typ != yaml_VALUE_TOKEN &&\n\t\t\ttoken.typ != yaml_BLOCK_END_TOKEN {\n\t\t\tparser.states = append(parser.states, yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE)\n\t\t\treturn yaml_parser_parse_node(parser, event, true, false)\n\t\t}\n\t\tparser.state = yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE\n\t\treturn yaml_parser_process_empty_scalar(parser, event, mark)\n\t}\n\tparser.state = parser.states[len(parser.states)-1]\n\tparser.states = parser.states[:len(parser.states)-1]\n\n\t*event = yaml_event_t{\n\t\ttyp:        yaml_SEQUENCE_END_EVENT,\n\t\tstart_mark: token.start_mark,\n\t\tend_mark:   token.start_mark, // [Go] Shouldn't this be token.end_mark?\n\t}\n\treturn true\n}\n\n// Parse the productions:\n// block_mapping        ::= BLOCK-MAPPING_START\n//                          *******************\n//                          ((KEY block_node_or_indentless_sequence?)?\n//                            *** *\n//                          (VALUE block_node_or_indentless_sequence?)?)*\n//\n//                          BLOCK-END\n//                          *********\n//\nfunc yaml_parser_parse_block_mapping_key(parser *yaml_parser_t, event *yaml_event_t, first bool) bool {\n\tif first {\n\t\ttoken := peek_token(parser)\n\t\tparser.marks = append(parser.marks, token.start_mark)\n\t\tskip_token(parser)\n\t}\n\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\n\tif token.typ == yaml_KEY_TOKEN {\n\t\tmark := token.end_mark\n\t\tskip_token(parser)\n\t\ttoken = peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t\tif token.typ != yaml_KEY_TOKEN &&\n\t\t\ttoken.typ != yaml_VALUE_TOKEN &&\n\t\t\ttoken.typ != yaml_BLOCK_END_TOKEN {\n\t\t\tparser.states = append(parser.states, yaml_PARSE_BLOCK_MAPPING_VALUE_STATE)\n\t\t\treturn yaml_parser_parse_node(parser, event, true, true)\n\t\t} else {\n\t\t\tparser.state = yaml_PARSE_BLOCK_MAPPING_VALUE_STATE\n\t\t\treturn yaml_parser_process_empty_scalar(parser, event, mark)\n\t\t}\n\t} else if token.typ == yaml_BLOCK_END_TOKEN {\n\t\tparser.state = parser.states[len(parser.states)-1]\n\t\tparser.states = parser.states[:len(parser.states)-1]\n\t\tparser.marks = parser.marks[:len(parser.marks)-1]\n\t\t*event = yaml_event_t{\n\t\t\ttyp:        yaml_MAPPING_END_EVENT,\n\t\t\tstart_mark: token.start_mark,\n\t\t\tend_mark:   token.end_mark,\n\t\t}\n\t\tskip_token(parser)\n\t\treturn true\n\t}\n\n\tcontext_mark := parser.marks[len(parser.marks)-1]\n\tparser.marks = parser.marks[:len(parser.marks)-1]\n\treturn yaml_parser_set_parser_error_context(parser,\n\t\t\"while parsing a block mapping\", context_mark,\n\t\t\"did not find expected key\", token.start_mark)\n}\n\n// Parse the productions:\n// block_mapping        ::= BLOCK-MAPPING_START\n//\n//                          ((KEY block_node_or_indentless_sequence?)?\n//\n//                          (VALUE block_node_or_indentless_sequence?)?)*\n//                           ***** *\n//                          BLOCK-END\n//\n//\nfunc yaml_parser_parse_block_mapping_value(parser *yaml_parser_t, event *yaml_event_t) bool {\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\tif token.typ == yaml_VALUE_TOKEN {\n\t\tmark := token.end_mark\n\t\tskip_token(parser)\n\t\ttoken = peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t\tif token.typ != yaml_KEY_TOKEN &&\n\t\t\ttoken.typ != yaml_VALUE_TOKEN &&\n\t\t\ttoken.typ != yaml_BLOCK_END_TOKEN {\n\t\t\tparser.states = append(parser.states, yaml_PARSE_BLOCK_MAPPING_KEY_STATE)\n\t\t\treturn yaml_parser_parse_node(parser, event, true, true)\n\t\t}\n\t\tparser.state = yaml_PARSE_BLOCK_MAPPING_KEY_STATE\n\t\treturn yaml_parser_process_empty_scalar(parser, event, mark)\n\t}\n\tparser.state = yaml_PARSE_BLOCK_MAPPING_KEY_STATE\n\treturn yaml_parser_process_empty_scalar(parser, event, token.start_mark)\n}\n\n// Parse the productions:\n// flow_sequence        ::= FLOW-SEQUENCE-START\n//                          *******************\n//                          (flow_sequence_entry FLOW-ENTRY)*\n//                           *                   **********\n//                          flow_sequence_entry?\n//                          *\n//                          FLOW-SEQUENCE-END\n//                          *****************\n// flow_sequence_entry  ::= flow_node | KEY flow_node? (VALUE flow_node?)?\n//                          *\n//\nfunc yaml_parser_parse_flow_sequence_entry(parser *yaml_parser_t, event *yaml_event_t, first bool) bool {\n\tif first {\n\t\ttoken := peek_token(parser)\n\t\tparser.marks = append(parser.marks, token.start_mark)\n\t\tskip_token(parser)\n\t}\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\tif token.typ != yaml_FLOW_SEQUENCE_END_TOKEN {\n\t\tif !first {\n\t\t\tif token.typ == yaml_FLOW_ENTRY_TOKEN {\n\t\t\t\tskip_token(parser)\n\t\t\t\ttoken = peek_token(parser)\n\t\t\t\tif token == nil {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcontext_mark := parser.marks[len(parser.marks)-1]\n\t\t\t\tparser.marks = parser.marks[:len(parser.marks)-1]\n\t\t\t\treturn yaml_parser_set_parser_error_context(parser,\n\t\t\t\t\t\"while parsing a flow sequence\", context_mark,\n\t\t\t\t\t\"did not find expected ',' or ']'\", token.start_mark)\n\t\t\t}\n\t\t}\n\n\t\tif token.typ == yaml_KEY_TOKEN {\n\t\t\tparser.state = yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE\n\t\t\t*event = yaml_event_t{\n\t\t\t\ttyp:        yaml_MAPPING_START_EVENT,\n\t\t\t\tstart_mark: token.start_mark,\n\t\t\t\tend_mark:   token.end_mark,\n\t\t\t\timplicit:   true,\n\t\t\t\tstyle:      yaml_style_t(yaml_FLOW_MAPPING_STYLE),\n\t\t\t}\n\t\t\tskip_token(parser)\n\t\t\treturn true\n\t\t} else if token.typ != yaml_FLOW_SEQUENCE_END_TOKEN {\n\t\t\tparser.states = append(parser.states, yaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE)\n\t\t\treturn yaml_parser_parse_node(parser, event, false, false)\n\t\t}\n\t}\n\n\tparser.state = parser.states[len(parser.states)-1]\n\tparser.states = parser.states[:len(parser.states)-1]\n\tparser.marks = parser.marks[:len(parser.marks)-1]\n\n\t*event = yaml_event_t{\n\t\ttyp:        yaml_SEQUENCE_END_EVENT,\n\t\tstart_mark: token.start_mark,\n\t\tend_mark:   token.end_mark,\n\t}\n\n\tskip_token(parser)\n\treturn true\n}\n\n//\n// Parse the productions:\n// flow_sequence_entry  ::= flow_node | KEY flow_node? (VALUE flow_node?)?\n//                                      *** *\n//\nfunc yaml_parser_parse_flow_sequence_entry_mapping_key(parser *yaml_parser_t, event *yaml_event_t) bool {\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\tif token.typ != yaml_VALUE_TOKEN &&\n\t\ttoken.typ != yaml_FLOW_ENTRY_TOKEN &&\n\t\ttoken.typ != yaml_FLOW_SEQUENCE_END_TOKEN {\n\t\tparser.states = append(parser.states, yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE)\n\t\treturn yaml_parser_parse_node(parser, event, false, false)\n\t}\n\tmark := token.end_mark\n\tskip_token(parser)\n\tparser.state = yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE\n\treturn yaml_parser_process_empty_scalar(parser, event, mark)\n}\n\n// Parse the productions:\n// flow_sequence_entry  ::= flow_node | KEY flow_node? (VALUE flow_node?)?\n//                                                      ***** *\n//\nfunc yaml_parser_parse_flow_sequence_entry_mapping_value(parser *yaml_parser_t, event *yaml_event_t) bool {\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\tif token.typ == yaml_VALUE_TOKEN {\n\t\tskip_token(parser)\n\t\ttoken := peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t\tif token.typ != yaml_FLOW_ENTRY_TOKEN && token.typ != yaml_FLOW_SEQUENCE_END_TOKEN {\n\t\t\tparser.states = append(parser.states, yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE)\n\t\t\treturn yaml_parser_parse_node(parser, event, false, false)\n\t\t}\n\t}\n\tparser.state = yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE\n\treturn yaml_parser_process_empty_scalar(parser, event, token.start_mark)\n}\n\n// Parse the productions:\n// flow_sequence_entry  ::= flow_node | KEY flow_node? (VALUE flow_node?)?\n//                                                                      *\n//\nfunc yaml_parser_parse_flow_sequence_entry_mapping_end(parser *yaml_parser_t, event *yaml_event_t) bool {\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\tparser.state = yaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE\n\t*event = yaml_event_t{\n\t\ttyp:        yaml_MAPPING_END_EVENT,\n\t\tstart_mark: token.start_mark,\n\t\tend_mark:   token.start_mark, // [Go] Shouldn't this be end_mark?\n\t}\n\treturn true\n}\n\n// Parse the productions:\n// flow_mapping         ::= FLOW-MAPPING-START\n//                          ******************\n//                          (flow_mapping_entry FLOW-ENTRY)*\n//                           *                  **********\n//                          flow_mapping_entry?\n//                          ******************\n//                          FLOW-MAPPING-END\n//                          ****************\n// flow_mapping_entry   ::= flow_node | KEY flow_node? (VALUE flow_node?)?\n//                          *           *** *\n//\nfunc yaml_parser_parse_flow_mapping_key(parser *yaml_parser_t, event *yaml_event_t, first bool) bool {\n\tif first {\n\t\ttoken := peek_token(parser)\n\t\tparser.marks = append(parser.marks, token.start_mark)\n\t\tskip_token(parser)\n\t}\n\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\n\tif token.typ != yaml_FLOW_MAPPING_END_TOKEN {\n\t\tif !first {\n\t\t\tif token.typ == yaml_FLOW_ENTRY_TOKEN {\n\t\t\t\tskip_token(parser)\n\t\t\t\ttoken = peek_token(parser)\n\t\t\t\tif token == nil {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcontext_mark := parser.marks[len(parser.marks)-1]\n\t\t\t\tparser.marks = parser.marks[:len(parser.marks)-1]\n\t\t\t\treturn yaml_parser_set_parser_error_context(parser,\n\t\t\t\t\t\"while parsing a flow mapping\", context_mark,\n\t\t\t\t\t\"did not find expected ',' or '}'\", token.start_mark)\n\t\t\t}\n\t\t}\n\n\t\tif token.typ == yaml_KEY_TOKEN {\n\t\t\tskip_token(parser)\n\t\t\ttoken = peek_token(parser)\n\t\t\tif token == nil {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif token.typ != yaml_VALUE_TOKEN &&\n\t\t\t\ttoken.typ != yaml_FLOW_ENTRY_TOKEN &&\n\t\t\t\ttoken.typ != yaml_FLOW_MAPPING_END_TOKEN {\n\t\t\t\tparser.states = append(parser.states, yaml_PARSE_FLOW_MAPPING_VALUE_STATE)\n\t\t\t\treturn yaml_parser_parse_node(parser, event, false, false)\n\t\t\t} else {\n\t\t\t\tparser.state = yaml_PARSE_FLOW_MAPPING_VALUE_STATE\n\t\t\t\treturn yaml_parser_process_empty_scalar(parser, event, token.start_mark)\n\t\t\t}\n\t\t} else if token.typ != yaml_FLOW_MAPPING_END_TOKEN {\n\t\t\tparser.states = append(parser.states, yaml_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE)\n\t\t\treturn yaml_parser_parse_node(parser, event, false, false)\n\t\t}\n\t}\n\n\tparser.state = parser.states[len(parser.states)-1]\n\tparser.states = parser.states[:len(parser.states)-1]\n\tparser.marks = parser.marks[:len(parser.marks)-1]\n\t*event = yaml_event_t{\n\t\ttyp:        yaml_MAPPING_END_EVENT,\n\t\tstart_mark: token.start_mark,\n\t\tend_mark:   token.end_mark,\n\t}\n\tskip_token(parser)\n\treturn true\n}\n\n// Parse the productions:\n// flow_mapping_entry   ::= flow_node | KEY flow_node? (VALUE flow_node?)?\n//                                   *                  ***** *\n//\nfunc yaml_parser_parse_flow_mapping_value(parser *yaml_parser_t, event *yaml_event_t, empty bool) bool {\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\tif empty {\n\t\tparser.state = yaml_PARSE_FLOW_MAPPING_KEY_STATE\n\t\treturn yaml_parser_process_empty_scalar(parser, event, token.start_mark)\n\t}\n\tif token.typ == yaml_VALUE_TOKEN {\n\t\tskip_token(parser)\n\t\ttoken = peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t\tif token.typ != yaml_FLOW_ENTRY_TOKEN && token.typ != yaml_FLOW_MAPPING_END_TOKEN {\n\t\t\tparser.states = append(parser.states, yaml_PARSE_FLOW_MAPPING_KEY_STATE)\n\t\t\treturn yaml_parser_parse_node(parser, event, false, false)\n\t\t}\n\t}\n\tparser.state = yaml_PARSE_FLOW_MAPPING_KEY_STATE\n\treturn yaml_parser_process_empty_scalar(parser, event, token.start_mark)\n}\n\n// Generate an empty scalar event.\nfunc yaml_parser_process_empty_scalar(parser *yaml_parser_t, event *yaml_event_t, mark yaml_mark_t) bool {\n\t*event = yaml_event_t{\n\t\ttyp:        yaml_SCALAR_EVENT,\n\t\tstart_mark: mark,\n\t\tend_mark:   mark,\n\t\tvalue:      nil, // Empty\n\t\timplicit:   true,\n\t\tstyle:      yaml_style_t(yaml_PLAIN_SCALAR_STYLE),\n\t}\n\treturn true\n}\n\nvar default_tag_directives = []yaml_tag_directive_t{\n\t{[]byte(\"!\"), []byte(\"!\")},\n\t{[]byte(\"!!\"), []byte(\"tag:yaml.org,2002:\")},\n}\n\n// Parse directives.\nfunc yaml_parser_process_directives(parser *yaml_parser_t,\n\tversion_directive_ref **yaml_version_directive_t,\n\ttag_directives_ref *[]yaml_tag_directive_t) bool {\n\n\tvar version_directive *yaml_version_directive_t\n\tvar tag_directives []yaml_tag_directive_t\n\n\ttoken := peek_token(parser)\n\tif token == nil {\n\t\treturn false\n\t}\n\n\tfor token.typ == yaml_VERSION_DIRECTIVE_TOKEN || token.typ == yaml_TAG_DIRECTIVE_TOKEN {\n\t\tif token.typ == yaml_VERSION_DIRECTIVE_TOKEN {\n\t\t\tif version_directive != nil {\n\t\t\t\tyaml_parser_set_parser_error(parser,\n\t\t\t\t\t\"found duplicate %YAML directive\", token.start_mark)\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif token.major != 1 || token.minor != 1 {\n\t\t\t\tyaml_parser_set_parser_error(parser,\n\t\t\t\t\t\"found incompatible YAML document\", token.start_mark)\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tversion_directive = &yaml_version_directive_t{\n\t\t\t\tmajor: token.major,\n\t\t\t\tminor: token.minor,\n\t\t\t}\n\t\t} else if token.typ == yaml_TAG_DIRECTIVE_TOKEN {\n\t\t\tvalue := yaml_tag_directive_t{\n\t\t\t\thandle: token.value,\n\t\t\t\tprefix: token.prefix,\n\t\t\t}\n\t\t\tif !yaml_parser_append_tag_directive(parser, value, false, token.start_mark) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\ttag_directives = append(tag_directives, value)\n\t\t}\n\n\t\tskip_token(parser)\n\t\ttoken = peek_token(parser)\n\t\tif token == nil {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tfor i := range default_tag_directives {\n\t\tif !yaml_parser_append_tag_directive(parser, default_tag_directives[i], true, token.start_mark) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tif version_directive_ref != nil {\n\t\t*version_directive_ref = version_directive\n\t}\n\tif tag_directives_ref != nil {\n\t\t*tag_directives_ref = tag_directives\n\t}\n\treturn true\n}\n\n// Append a tag directive to the directives stack.\nfunc yaml_parser_append_tag_directive(parser *yaml_parser_t, value yaml_tag_directive_t, allow_duplicates bool, mark yaml_mark_t) bool {\n\tfor i := range parser.tag_directives {\n\t\tif bytes.Equal(value.handle, parser.tag_directives[i].handle) {\n\t\t\tif allow_duplicates {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\treturn yaml_parser_set_parser_error(parser, \"found duplicate %TAG directive\", mark)\n\t\t}\n\t}\n\n\t// [Go] I suspect the copy is unnecessary. This was likely done\n\t// because there was no way to track ownership of the data.\n\tvalue_copy := yaml_tag_directive_t{\n\t\thandle: make([]byte, len(value.handle)),\n\t\tprefix: make([]byte, len(value.prefix)),\n\t}\n\tcopy(value_copy.handle, value.handle)\n\tcopy(value_copy.prefix, value.prefix)\n\tparser.tag_directives = append(parser.tag_directives, value_copy)\n\treturn true\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/readerc.go",
    "content": "package yaml\n\nimport (\n\t\"io\"\n)\n\n// Set the reader error and return 0.\nfunc yaml_parser_set_reader_error(parser *yaml_parser_t, problem string, offset int, value int) bool {\n\tparser.error = yaml_READER_ERROR\n\tparser.problem = problem\n\tparser.problem_offset = offset\n\tparser.problem_value = value\n\treturn false\n}\n\n// Byte order marks.\nconst (\n\tbom_UTF8    = \"\\xef\\xbb\\xbf\"\n\tbom_UTF16LE = \"\\xff\\xfe\"\n\tbom_UTF16BE = \"\\xfe\\xff\"\n)\n\n// Determine the input stream encoding by checking the BOM symbol. If no BOM is\n// found, the UTF-8 encoding is assumed. Return 1 on success, 0 on failure.\nfunc yaml_parser_determine_encoding(parser *yaml_parser_t) bool {\n\t// Ensure that we had enough bytes in the raw buffer.\n\tfor !parser.eof && len(parser.raw_buffer)-parser.raw_buffer_pos < 3 {\n\t\tif !yaml_parser_update_raw_buffer(parser) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Determine the encoding.\n\tbuf := parser.raw_buffer\n\tpos := parser.raw_buffer_pos\n\tavail := len(buf) - pos\n\tif avail >= 2 && buf[pos] == bom_UTF16LE[0] && buf[pos+1] == bom_UTF16LE[1] {\n\t\tparser.encoding = yaml_UTF16LE_ENCODING\n\t\tparser.raw_buffer_pos += 2\n\t\tparser.offset += 2\n\t} else if avail >= 2 && buf[pos] == bom_UTF16BE[0] && buf[pos+1] == bom_UTF16BE[1] {\n\t\tparser.encoding = yaml_UTF16BE_ENCODING\n\t\tparser.raw_buffer_pos += 2\n\t\tparser.offset += 2\n\t} else if avail >= 3 && buf[pos] == bom_UTF8[0] && buf[pos+1] == bom_UTF8[1] && buf[pos+2] == bom_UTF8[2] {\n\t\tparser.encoding = yaml_UTF8_ENCODING\n\t\tparser.raw_buffer_pos += 3\n\t\tparser.offset += 3\n\t} else {\n\t\tparser.encoding = yaml_UTF8_ENCODING\n\t}\n\treturn true\n}\n\n// Update the raw buffer.\nfunc yaml_parser_update_raw_buffer(parser *yaml_parser_t) bool {\n\tsize_read := 0\n\n\t// Return if the raw buffer is full.\n\tif parser.raw_buffer_pos == 0 && len(parser.raw_buffer) == cap(parser.raw_buffer) {\n\t\treturn true\n\t}\n\n\t// Return on EOF.\n\tif parser.eof {\n\t\treturn true\n\t}\n\n\t// Move the remaining bytes in the raw buffer to the beginning.\n\tif parser.raw_buffer_pos > 0 && parser.raw_buffer_pos < len(parser.raw_buffer) {\n\t\tcopy(parser.raw_buffer, parser.raw_buffer[parser.raw_buffer_pos:])\n\t}\n\tparser.raw_buffer = parser.raw_buffer[:len(parser.raw_buffer)-parser.raw_buffer_pos]\n\tparser.raw_buffer_pos = 0\n\n\t// Call the read handler to fill the buffer.\n\tsize_read, err := parser.read_handler(parser, parser.raw_buffer[len(parser.raw_buffer):cap(parser.raw_buffer)])\n\tparser.raw_buffer = parser.raw_buffer[:len(parser.raw_buffer)+size_read]\n\tif err == io.EOF {\n\t\tparser.eof = true\n\t} else if err != nil {\n\t\treturn yaml_parser_set_reader_error(parser, \"input error: \"+err.Error(), parser.offset, -1)\n\t}\n\treturn true\n}\n\n// Ensure that the buffer contains at least `length` characters.\n// Return true on success, false on failure.\n//\n// The length is supposed to be significantly less that the buffer size.\nfunc yaml_parser_update_buffer(parser *yaml_parser_t, length int) bool {\n\tif parser.read_handler == nil {\n\t\tpanic(\"read handler must be set\")\n\t}\n\n\t// [Go] This function was changed to guarantee the requested length size at EOF.\n\t// The fact we need to do this is pretty awful, but the description above implies\n\t// for that to be the case, and there are tests \n\n\t// If the EOF flag is set and the raw buffer is empty, do nothing.\n\tif parser.eof && parser.raw_buffer_pos == len(parser.raw_buffer) {\n\t\t// [Go] ACTUALLY! Read the documentation of this function above.\n\t\t// This is just broken. To return true, we need to have the\n\t\t// given length in the buffer. Not doing that means every single\n\t\t// check that calls this function to make sure the buffer has a\n\t\t// given length is Go) panicking; or C) accessing invalid memory.\n\t\t//return true\n\t}\n\n\t// Return if the buffer contains enough characters.\n\tif parser.unread >= length {\n\t\treturn true\n\t}\n\n\t// Determine the input encoding if it is not known yet.\n\tif parser.encoding == yaml_ANY_ENCODING {\n\t\tif !yaml_parser_determine_encoding(parser) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Move the unread characters to the beginning of the buffer.\n\tbuffer_len := len(parser.buffer)\n\tif parser.buffer_pos > 0 && parser.buffer_pos < buffer_len {\n\t\tcopy(parser.buffer, parser.buffer[parser.buffer_pos:])\n\t\tbuffer_len -= parser.buffer_pos\n\t\tparser.buffer_pos = 0\n\t} else if parser.buffer_pos == buffer_len {\n\t\tbuffer_len = 0\n\t\tparser.buffer_pos = 0\n\t}\n\n\t// Open the whole buffer for writing, and cut it before returning.\n\tparser.buffer = parser.buffer[:cap(parser.buffer)]\n\n\t// Fill the buffer until it has enough characters.\n\tfirst := true\n\tfor parser.unread < length {\n\n\t\t// Fill the raw buffer if necessary.\n\t\tif !first || parser.raw_buffer_pos == len(parser.raw_buffer) {\n\t\t\tif !yaml_parser_update_raw_buffer(parser) {\n\t\t\t\tparser.buffer = parser.buffer[:buffer_len]\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tfirst = false\n\n\t\t// Decode the raw buffer.\n\tinner:\n\t\tfor parser.raw_buffer_pos != len(parser.raw_buffer) {\n\t\t\tvar value rune\n\t\t\tvar width int\n\n\t\t\traw_unread := len(parser.raw_buffer) - parser.raw_buffer_pos\n\n\t\t\t// Decode the next character.\n\t\t\tswitch parser.encoding {\n\t\t\tcase yaml_UTF8_ENCODING:\n\t\t\t\t// Decode a UTF-8 character.  Check RFC 3629\n\t\t\t\t// (http://www.ietf.org/rfc/rfc3629.txt) for more details.\n\t\t\t\t//\n\t\t\t\t// The following table (taken from the RFC) is used for\n\t\t\t\t// decoding.\n\t\t\t\t//\n\t\t\t\t//    Char. number range |        UTF-8 octet sequence\n\t\t\t\t//      (hexadecimal)    |              (binary)\n\t\t\t\t//   --------------------+------------------------------------\n\t\t\t\t//   0000 0000-0000 007F | 0xxxxxxx\n\t\t\t\t//   0000 0080-0000 07FF | 110xxxxx 10xxxxxx\n\t\t\t\t//   0000 0800-0000 FFFF | 1110xxxx 10xxxxxx 10xxxxxx\n\t\t\t\t//   0001 0000-0010 FFFF | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx\n\t\t\t\t//\n\t\t\t\t// Additionally, the characters in the range 0xD800-0xDFFF\n\t\t\t\t// are prohibited as they are reserved for use with UTF-16\n\t\t\t\t// surrogate pairs.\n\n\t\t\t\t// Determine the length of the UTF-8 sequence.\n\t\t\t\toctet := parser.raw_buffer[parser.raw_buffer_pos]\n\t\t\t\tswitch {\n\t\t\t\tcase octet&0x80 == 0x00:\n\t\t\t\t\twidth = 1\n\t\t\t\tcase octet&0xE0 == 0xC0:\n\t\t\t\t\twidth = 2\n\t\t\t\tcase octet&0xF0 == 0xE0:\n\t\t\t\t\twidth = 3\n\t\t\t\tcase octet&0xF8 == 0xF0:\n\t\t\t\t\twidth = 4\n\t\t\t\tdefault:\n\t\t\t\t\t// The leading octet is invalid.\n\t\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\t\"invalid leading UTF-8 octet\",\n\t\t\t\t\t\tparser.offset, int(octet))\n\t\t\t\t}\n\n\t\t\t\t// Check if the raw buffer contains an incomplete character.\n\t\t\t\tif width > raw_unread {\n\t\t\t\t\tif parser.eof {\n\t\t\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\t\t\"incomplete UTF-8 octet sequence\",\n\t\t\t\t\t\t\tparser.offset, -1)\n\t\t\t\t\t}\n\t\t\t\t\tbreak inner\n\t\t\t\t}\n\n\t\t\t\t// Decode the leading octet.\n\t\t\t\tswitch {\n\t\t\t\tcase octet&0x80 == 0x00:\n\t\t\t\t\tvalue = rune(octet & 0x7F)\n\t\t\t\tcase octet&0xE0 == 0xC0:\n\t\t\t\t\tvalue = rune(octet & 0x1F)\n\t\t\t\tcase octet&0xF0 == 0xE0:\n\t\t\t\t\tvalue = rune(octet & 0x0F)\n\t\t\t\tcase octet&0xF8 == 0xF0:\n\t\t\t\t\tvalue = rune(octet & 0x07)\n\t\t\t\tdefault:\n\t\t\t\t\tvalue = 0\n\t\t\t\t}\n\n\t\t\t\t// Check and decode the trailing octets.\n\t\t\t\tfor k := 1; k < width; k++ {\n\t\t\t\t\toctet = parser.raw_buffer[parser.raw_buffer_pos+k]\n\n\t\t\t\t\t// Check if the octet is valid.\n\t\t\t\t\tif (octet & 0xC0) != 0x80 {\n\t\t\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\t\t\"invalid trailing UTF-8 octet\",\n\t\t\t\t\t\t\tparser.offset+k, int(octet))\n\t\t\t\t\t}\n\n\t\t\t\t\t// Decode the octet.\n\t\t\t\t\tvalue = (value << 6) + rune(octet&0x3F)\n\t\t\t\t}\n\n\t\t\t\t// Check the length of the sequence against the value.\n\t\t\t\tswitch {\n\t\t\t\tcase width == 1:\n\t\t\t\tcase width == 2 && value >= 0x80:\n\t\t\t\tcase width == 3 && value >= 0x800:\n\t\t\t\tcase width == 4 && value >= 0x10000:\n\t\t\t\tdefault:\n\t\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\t\"invalid length of a UTF-8 sequence\",\n\t\t\t\t\t\tparser.offset, -1)\n\t\t\t\t}\n\n\t\t\t\t// Check the range of the value.\n\t\t\t\tif value >= 0xD800 && value <= 0xDFFF || value > 0x10FFFF {\n\t\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\t\"invalid Unicode character\",\n\t\t\t\t\t\tparser.offset, int(value))\n\t\t\t\t}\n\n\t\t\tcase yaml_UTF16LE_ENCODING, yaml_UTF16BE_ENCODING:\n\t\t\t\tvar low, high int\n\t\t\t\tif parser.encoding == yaml_UTF16LE_ENCODING {\n\t\t\t\t\tlow, high = 0, 1\n\t\t\t\t} else {\n\t\t\t\t\tlow, high = 1, 0\n\t\t\t\t}\n\n\t\t\t\t// The UTF-16 encoding is not as simple as one might\n\t\t\t\t// naively think.  Check RFC 2781\n\t\t\t\t// (http://www.ietf.org/rfc/rfc2781.txt).\n\t\t\t\t//\n\t\t\t\t// Normally, two subsequent bytes describe a Unicode\n\t\t\t\t// character.  However a special technique (called a\n\t\t\t\t// surrogate pair) is used for specifying character\n\t\t\t\t// values larger than 0xFFFF.\n\t\t\t\t//\n\t\t\t\t// A surrogate pair consists of two pseudo-characters:\n\t\t\t\t//      high surrogate area (0xD800-0xDBFF)\n\t\t\t\t//      low surrogate area (0xDC00-0xDFFF)\n\t\t\t\t//\n\t\t\t\t// The following formulas are used for decoding\n\t\t\t\t// and encoding characters using surrogate pairs:\n\t\t\t\t//\n\t\t\t\t//  U  = U' + 0x10000   (0x01 00 00 <= U <= 0x10 FF FF)\n\t\t\t\t//  U' = yyyyyyyyyyxxxxxxxxxx   (0 <= U' <= 0x0F FF FF)\n\t\t\t\t//  W1 = 110110yyyyyyyyyy\n\t\t\t\t//  W2 = 110111xxxxxxxxxx\n\t\t\t\t//\n\t\t\t\t// where U is the character value, W1 is the high surrogate\n\t\t\t\t// area, W2 is the low surrogate area.\n\n\t\t\t\t// Check for incomplete UTF-16 character.\n\t\t\t\tif raw_unread < 2 {\n\t\t\t\t\tif parser.eof {\n\t\t\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\t\t\"incomplete UTF-16 character\",\n\t\t\t\t\t\t\tparser.offset, -1)\n\t\t\t\t\t}\n\t\t\t\t\tbreak inner\n\t\t\t\t}\n\n\t\t\t\t// Get the character.\n\t\t\t\tvalue = rune(parser.raw_buffer[parser.raw_buffer_pos+low]) +\n\t\t\t\t\t(rune(parser.raw_buffer[parser.raw_buffer_pos+high]) << 8)\n\n\t\t\t\t// Check for unexpected low surrogate area.\n\t\t\t\tif value&0xFC00 == 0xDC00 {\n\t\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\t\"unexpected low surrogate area\",\n\t\t\t\t\t\tparser.offset, int(value))\n\t\t\t\t}\n\n\t\t\t\t// Check for a high surrogate area.\n\t\t\t\tif value&0xFC00 == 0xD800 {\n\t\t\t\t\twidth = 4\n\n\t\t\t\t\t// Check for incomplete surrogate pair.\n\t\t\t\t\tif raw_unread < 4 {\n\t\t\t\t\t\tif parser.eof {\n\t\t\t\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\t\t\t\"incomplete UTF-16 surrogate pair\",\n\t\t\t\t\t\t\t\tparser.offset, -1)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak inner\n\t\t\t\t\t}\n\n\t\t\t\t\t// Get the next character.\n\t\t\t\t\tvalue2 := rune(parser.raw_buffer[parser.raw_buffer_pos+low+2]) +\n\t\t\t\t\t\t(rune(parser.raw_buffer[parser.raw_buffer_pos+high+2]) << 8)\n\n\t\t\t\t\t// Check for a low surrogate area.\n\t\t\t\t\tif value2&0xFC00 != 0xDC00 {\n\t\t\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\t\t\"expected low surrogate area\",\n\t\t\t\t\t\t\tparser.offset+2, int(value2))\n\t\t\t\t\t}\n\n\t\t\t\t\t// Generate the value of the surrogate pair.\n\t\t\t\t\tvalue = 0x10000 + ((value & 0x3FF) << 10) + (value2 & 0x3FF)\n\t\t\t\t} else {\n\t\t\t\t\twidth = 2\n\t\t\t\t}\n\n\t\t\tdefault:\n\t\t\t\tpanic(\"impossible\")\n\t\t\t}\n\n\t\t\t// Check if the character is in the allowed range:\n\t\t\t//      #x9 | #xA | #xD | [#x20-#x7E]               (8 bit)\n\t\t\t//      | #x85 | [#xA0-#xD7FF] | [#xE000-#xFFFD]    (16 bit)\n\t\t\t//      | [#x10000-#x10FFFF]                        (32 bit)\n\t\t\tswitch {\n\t\t\tcase value == 0x09:\n\t\t\tcase value == 0x0A:\n\t\t\tcase value == 0x0D:\n\t\t\tcase value >= 0x20 && value <= 0x7E:\n\t\t\tcase value == 0x85:\n\t\t\tcase value >= 0xA0 && value <= 0xD7FF:\n\t\t\tcase value >= 0xE000 && value <= 0xFFFD:\n\t\t\tcase value >= 0x10000 && value <= 0x10FFFF:\n\t\t\tdefault:\n\t\t\t\treturn yaml_parser_set_reader_error(parser,\n\t\t\t\t\t\"control characters are not allowed\",\n\t\t\t\t\tparser.offset, int(value))\n\t\t\t}\n\n\t\t\t// Move the raw pointers.\n\t\t\tparser.raw_buffer_pos += width\n\t\t\tparser.offset += width\n\n\t\t\t// Finally put the character into the buffer.\n\t\t\tif value <= 0x7F {\n\t\t\t\t// 0000 0000-0000 007F . 0xxxxxxx\n\t\t\t\tparser.buffer[buffer_len+0] = byte(value)\n\t\t\t\tbuffer_len += 1\n\t\t\t} else if value <= 0x7FF {\n\t\t\t\t// 0000 0080-0000 07FF . 110xxxxx 10xxxxxx\n\t\t\t\tparser.buffer[buffer_len+0] = byte(0xC0 + (value >> 6))\n\t\t\t\tparser.buffer[buffer_len+1] = byte(0x80 + (value & 0x3F))\n\t\t\t\tbuffer_len += 2\n\t\t\t} else if value <= 0xFFFF {\n\t\t\t\t// 0000 0800-0000 FFFF . 1110xxxx 10xxxxxx 10xxxxxx\n\t\t\t\tparser.buffer[buffer_len+0] = byte(0xE0 + (value >> 12))\n\t\t\t\tparser.buffer[buffer_len+1] = byte(0x80 + ((value >> 6) & 0x3F))\n\t\t\t\tparser.buffer[buffer_len+2] = byte(0x80 + (value & 0x3F))\n\t\t\t\tbuffer_len += 3\n\t\t\t} else {\n\t\t\t\t// 0001 0000-0010 FFFF . 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx\n\t\t\t\tparser.buffer[buffer_len+0] = byte(0xF0 + (value >> 18))\n\t\t\t\tparser.buffer[buffer_len+1] = byte(0x80 + ((value >> 12) & 0x3F))\n\t\t\t\tparser.buffer[buffer_len+2] = byte(0x80 + ((value >> 6) & 0x3F))\n\t\t\t\tparser.buffer[buffer_len+3] = byte(0x80 + (value & 0x3F))\n\t\t\t\tbuffer_len += 4\n\t\t\t}\n\n\t\t\tparser.unread++\n\t\t}\n\n\t\t// On EOF, put NUL into the buffer and return.\n\t\tif parser.eof {\n\t\t\tparser.buffer[buffer_len] = 0\n\t\t\tbuffer_len++\n\t\t\tparser.unread++\n\t\t\tbreak\n\t\t}\n\t}\n\t// [Go] Read the documentation of this function above. To return true,\n\t// we need to have the given length in the buffer. Not doing that means\n\t// every single check that calls this function to make sure the buffer\n\t// has a given length is Go) panicking; or C) accessing invalid memory.\n\t// This happens here due to the EOF above breaking early.\n\tfor buffer_len < length {\n\t\tparser.buffer[buffer_len] = 0\n\t\tbuffer_len++\n\t}\n\tparser.buffer = parser.buffer[:buffer_len]\n\treturn true\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/resolve.go",
    "content": "package yaml\n\nimport (\n\t\"encoding/base64\"\n\t\"math\"\n\t\"regexp\"\n\t\"strconv\"\n\t\"strings\"\n\t\"time\"\n)\n\ntype resolveMapItem struct {\n\tvalue interface{}\n\ttag   string\n}\n\nvar resolveTable = make([]byte, 256)\nvar resolveMap = make(map[string]resolveMapItem)\n\nfunc init() {\n\tt := resolveTable\n\tt[int('+')] = 'S' // Sign\n\tt[int('-')] = 'S'\n\tfor _, c := range \"0123456789\" {\n\t\tt[int(c)] = 'D' // Digit\n\t}\n\tfor _, c := range \"yYnNtTfFoO~\" {\n\t\tt[int(c)] = 'M' // In map\n\t}\n\tt[int('.')] = '.' // Float (potentially in map)\n\n\tvar resolveMapList = []struct {\n\t\tv   interface{}\n\t\ttag string\n\t\tl   []string\n\t}{\n\t\t{true, yaml_BOOL_TAG, []string{\"y\", \"Y\", \"yes\", \"Yes\", \"YES\"}},\n\t\t{true, yaml_BOOL_TAG, []string{\"true\", \"True\", \"TRUE\"}},\n\t\t{true, yaml_BOOL_TAG, []string{\"on\", \"On\", \"ON\"}},\n\t\t{false, yaml_BOOL_TAG, []string{\"n\", \"N\", \"no\", \"No\", \"NO\"}},\n\t\t{false, yaml_BOOL_TAG, []string{\"false\", \"False\", \"FALSE\"}},\n\t\t{false, yaml_BOOL_TAG, []string{\"off\", \"Off\", \"OFF\"}},\n\t\t{nil, yaml_NULL_TAG, []string{\"\", \"~\", \"null\", \"Null\", \"NULL\"}},\n\t\t{math.NaN(), yaml_FLOAT_TAG, []string{\".nan\", \".NaN\", \".NAN\"}},\n\t\t{math.Inf(+1), yaml_FLOAT_TAG, []string{\".inf\", \".Inf\", \".INF\"}},\n\t\t{math.Inf(+1), yaml_FLOAT_TAG, []string{\"+.inf\", \"+.Inf\", \"+.INF\"}},\n\t\t{math.Inf(-1), yaml_FLOAT_TAG, []string{\"-.inf\", \"-.Inf\", \"-.INF\"}},\n\t\t{\"<<\", yaml_MERGE_TAG, []string{\"<<\"}},\n\t}\n\n\tm := resolveMap\n\tfor _, item := range resolveMapList {\n\t\tfor _, s := range item.l {\n\t\t\tm[s] = resolveMapItem{item.v, item.tag}\n\t\t}\n\t}\n}\n\nconst longTagPrefix = \"tag:yaml.org,2002:\"\n\nfunc shortTag(tag string) string {\n\t// TODO This can easily be made faster and produce less garbage.\n\tif strings.HasPrefix(tag, longTagPrefix) {\n\t\treturn \"!!\" + tag[len(longTagPrefix):]\n\t}\n\treturn tag\n}\n\nfunc longTag(tag string) string {\n\tif strings.HasPrefix(tag, \"!!\") {\n\t\treturn longTagPrefix + tag[2:]\n\t}\n\treturn tag\n}\n\nfunc resolvableTag(tag string) bool {\n\tswitch tag {\n\tcase \"\", yaml_STR_TAG, yaml_BOOL_TAG, yaml_INT_TAG, yaml_FLOAT_TAG, yaml_NULL_TAG, yaml_TIMESTAMP_TAG:\n\t\treturn true\n\t}\n\treturn false\n}\n\nvar yamlStyleFloat = regexp.MustCompile(`^[-+]?(\\.[0-9]+|[0-9]+(\\.[0-9]*)?)([eE][-+]?[0-9]+)?$`)\n\nfunc resolve(tag string, in string) (rtag string, out interface{}) {\n\tif !resolvableTag(tag) {\n\t\treturn tag, in\n\t}\n\n\tdefer func() {\n\t\tswitch tag {\n\t\tcase \"\", rtag, yaml_STR_TAG, yaml_BINARY_TAG:\n\t\t\treturn\n\t\tcase yaml_FLOAT_TAG:\n\t\t\tif rtag == yaml_INT_TAG {\n\t\t\t\tswitch v := out.(type) {\n\t\t\t\tcase int64:\n\t\t\t\t\trtag = yaml_FLOAT_TAG\n\t\t\t\t\tout = float64(v)\n\t\t\t\t\treturn\n\t\t\t\tcase int:\n\t\t\t\t\trtag = yaml_FLOAT_TAG\n\t\t\t\t\tout = float64(v)\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tfailf(\"cannot decode %s `%s` as a %s\", shortTag(rtag), in, shortTag(tag))\n\t}()\n\n\t// Any data is accepted as a !!str or !!binary.\n\t// Otherwise, the prefix is enough of a hint about what it might be.\n\thint := byte('N')\n\tif in != \"\" {\n\t\thint = resolveTable[in[0]]\n\t}\n\tif hint != 0 && tag != yaml_STR_TAG && tag != yaml_BINARY_TAG {\n\t\t// Handle things we can lookup in a map.\n\t\tif item, ok := resolveMap[in]; ok {\n\t\t\treturn item.tag, item.value\n\t\t}\n\n\t\t// Base 60 floats are a bad idea, were dropped in YAML 1.2, and\n\t\t// are purposefully unsupported here. They're still quoted on\n\t\t// the way out for compatibility with other parser, though.\n\n\t\tswitch hint {\n\t\tcase 'M':\n\t\t\t// We've already checked the map above.\n\n\t\tcase '.':\n\t\t\t// Not in the map, so maybe a normal float.\n\t\t\tfloatv, err := strconv.ParseFloat(in, 64)\n\t\t\tif err == nil {\n\t\t\t\treturn yaml_FLOAT_TAG, floatv\n\t\t\t}\n\n\t\tcase 'D', 'S':\n\t\t\t// Int, float, or timestamp.\n\t\t\t// Only try values as a timestamp if the value is unquoted or there's an explicit\n\t\t\t// !!timestamp tag.\n\t\t\tif tag == \"\" || tag == yaml_TIMESTAMP_TAG {\n\t\t\t\tt, ok := parseTimestamp(in)\n\t\t\t\tif ok {\n\t\t\t\t\treturn yaml_TIMESTAMP_TAG, t\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tplain := strings.Replace(in, \"_\", \"\", -1)\n\t\t\tintv, err := strconv.ParseInt(plain, 0, 64)\n\t\t\tif err == nil {\n\t\t\t\tif intv == int64(int(intv)) {\n\t\t\t\t\treturn yaml_INT_TAG, int(intv)\n\t\t\t\t} else {\n\t\t\t\t\treturn yaml_INT_TAG, intv\n\t\t\t\t}\n\t\t\t}\n\t\t\tuintv, err := strconv.ParseUint(plain, 0, 64)\n\t\t\tif err == nil {\n\t\t\t\treturn yaml_INT_TAG, uintv\n\t\t\t}\n\t\t\tif yamlStyleFloat.MatchString(plain) {\n\t\t\t\tfloatv, err := strconv.ParseFloat(plain, 64)\n\t\t\t\tif err == nil {\n\t\t\t\t\treturn yaml_FLOAT_TAG, floatv\n\t\t\t\t}\n\t\t\t}\n\t\t\tif strings.HasPrefix(plain, \"0b\") {\n\t\t\t\tintv, err := strconv.ParseInt(plain[2:], 2, 64)\n\t\t\t\tif err == nil {\n\t\t\t\t\tif intv == int64(int(intv)) {\n\t\t\t\t\t\treturn yaml_INT_TAG, int(intv)\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn yaml_INT_TAG, intv\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tuintv, err := strconv.ParseUint(plain[2:], 2, 64)\n\t\t\t\tif err == nil {\n\t\t\t\t\treturn yaml_INT_TAG, uintv\n\t\t\t\t}\n\t\t\t} else if strings.HasPrefix(plain, \"-0b\") {\n\t\t\t\tintv, err := strconv.ParseInt(\"-\" + plain[3:], 2, 64)\n\t\t\t\tif err == nil {\n\t\t\t\t\tif true || intv == int64(int(intv)) {\n\t\t\t\t\t\treturn yaml_INT_TAG, int(intv)\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn yaml_INT_TAG, intv\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tpanic(\"resolveTable item not yet handled: \" + string(rune(hint)) + \" (with \" + in + \")\")\n\t\t}\n\t}\n\treturn yaml_STR_TAG, in\n}\n\n// encodeBase64 encodes s as base64 that is broken up into multiple lines\n// as appropriate for the resulting length.\nfunc encodeBase64(s string) string {\n\tconst lineLen = 70\n\tencLen := base64.StdEncoding.EncodedLen(len(s))\n\tlines := encLen/lineLen + 1\n\tbuf := make([]byte, encLen*2+lines)\n\tin := buf[0:encLen]\n\tout := buf[encLen:]\n\tbase64.StdEncoding.Encode(in, []byte(s))\n\tk := 0\n\tfor i := 0; i < len(in); i += lineLen {\n\t\tj := i + lineLen\n\t\tif j > len(in) {\n\t\t\tj = len(in)\n\t\t}\n\t\tk += copy(out[k:], in[i:j])\n\t\tif lines > 1 {\n\t\t\tout[k] = '\\n'\n\t\t\tk++\n\t\t}\n\t}\n\treturn string(out[:k])\n}\n\n// This is a subset of the formats allowed by the regular expression\n// defined at http://yaml.org/type/timestamp.html.\nvar allowedTimestampFormats = []string{\n\t\"2006-1-2T15:4:5.999999999Z07:00\", // RCF3339Nano with short date fields.\n\t\"2006-1-2t15:4:5.999999999Z07:00\", // RFC3339Nano with short date fields and lower-case \"t\".\n\t\"2006-1-2 15:4:5.999999999\",       // space separated with no time zone\n\t\"2006-1-2\",                        // date only\n\t// Notable exception: time.Parse cannot handle: \"2001-12-14 21:59:43.10 -5\"\n\t// from the set of examples.\n}\n\n// parseTimestamp parses s as a timestamp string and\n// returns the timestamp and reports whether it succeeded.\n// Timestamp formats are defined at http://yaml.org/type/timestamp.html\nfunc parseTimestamp(s string) (time.Time, bool) {\n\t// TODO write code to check all the formats supported by\n\t// http://yaml.org/type/timestamp.html instead of using time.Parse.\n\n\t// Quick check: all date formats start with YYYY-.\n\ti := 0\n\tfor ; i < len(s); i++ {\n\t\tif c := s[i]; c < '0' || c > '9' {\n\t\t\tbreak\n\t\t}\n\t}\n\tif i != 4 || i == len(s) || s[i] != '-' {\n\t\treturn time.Time{}, false\n\t}\n\tfor _, format := range allowedTimestampFormats {\n\t\tif t, err := time.Parse(format, s); err == nil {\n\t\t\treturn t, true\n\t\t}\n\t}\n\treturn time.Time{}, false\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/scannerc.go",
    "content": "package yaml\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n)\n\n// Introduction\n// ************\n//\n// The following notes assume that you are familiar with the YAML specification\n// (http://yaml.org/spec/1.2/spec.html).  We mostly follow it, although in\n// some cases we are less restrictive that it requires.\n//\n// The process of transforming a YAML stream into a sequence of events is\n// divided on two steps: Scanning and Parsing.\n//\n// The Scanner transforms the input stream into a sequence of tokens, while the\n// parser transform the sequence of tokens produced by the Scanner into a\n// sequence of parsing events.\n//\n// The Scanner is rather clever and complicated. The Parser, on the contrary,\n// is a straightforward implementation of a recursive-descendant parser (or,\n// LL(1) parser, as it is usually called).\n//\n// Actually there are two issues of Scanning that might be called \"clever\", the\n// rest is quite straightforward.  The issues are \"block collection start\" and\n// \"simple keys\".  Both issues are explained below in details.\n//\n// Here the Scanning step is explained and implemented.  We start with the list\n// of all the tokens produced by the Scanner together with short descriptions.\n//\n// Now, tokens:\n//\n//      STREAM-START(encoding)          # The stream start.\n//      STREAM-END                      # The stream end.\n//      VERSION-DIRECTIVE(major,minor)  # The '%YAML' directive.\n//      TAG-DIRECTIVE(handle,prefix)    # The '%TAG' directive.\n//      DOCUMENT-START                  # '---'\n//      DOCUMENT-END                    # '...'\n//      BLOCK-SEQUENCE-START            # Indentation increase denoting a block\n//      BLOCK-MAPPING-START             # sequence or a block mapping.\n//      BLOCK-END                       # Indentation decrease.\n//      FLOW-SEQUENCE-START             # '['\n//      FLOW-SEQUENCE-END               # ']'\n//      BLOCK-SEQUENCE-START            # '{'\n//      BLOCK-SEQUENCE-END              # '}'\n//      BLOCK-ENTRY                     # '-'\n//      FLOW-ENTRY                      # ','\n//      KEY                             # '?' or nothing (simple keys).\n//      VALUE                           # ':'\n//      ALIAS(anchor)                   # '*anchor'\n//      ANCHOR(anchor)                  # '&anchor'\n//      TAG(handle,suffix)              # '!handle!suffix'\n//      SCALAR(value,style)             # A scalar.\n//\n// The following two tokens are \"virtual\" tokens denoting the beginning and the\n// end of the stream:\n//\n//      STREAM-START(encoding)\n//      STREAM-END\n//\n// We pass the information about the input stream encoding with the\n// STREAM-START token.\n//\n// The next two tokens are responsible for tags:\n//\n//      VERSION-DIRECTIVE(major,minor)\n//      TAG-DIRECTIVE(handle,prefix)\n//\n// Example:\n//\n//      %YAML   1.1\n//      %TAG    !   !foo\n//      %TAG    !yaml!  tag:yaml.org,2002:\n//      ---\n//\n// The correspoding sequence of tokens:\n//\n//      STREAM-START(utf-8)\n//      VERSION-DIRECTIVE(1,1)\n//      TAG-DIRECTIVE(\"!\",\"!foo\")\n//      TAG-DIRECTIVE(\"!yaml\",\"tag:yaml.org,2002:\")\n//      DOCUMENT-START\n//      STREAM-END\n//\n// Note that the VERSION-DIRECTIVE and TAG-DIRECTIVE tokens occupy a whole\n// line.\n//\n// The document start and end indicators are represented by:\n//\n//      DOCUMENT-START\n//      DOCUMENT-END\n//\n// Note that if a YAML stream contains an implicit document (without '---'\n// and '...' indicators), no DOCUMENT-START and DOCUMENT-END tokens will be\n// produced.\n//\n// In the following examples, we present whole documents together with the\n// produced tokens.\n//\n//      1. An implicit document:\n//\n//          'a scalar'\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          SCALAR(\"a scalar\",single-quoted)\n//          STREAM-END\n//\n//      2. An explicit document:\n//\n//          ---\n//          'a scalar'\n//          ...\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          DOCUMENT-START\n//          SCALAR(\"a scalar\",single-quoted)\n//          DOCUMENT-END\n//          STREAM-END\n//\n//      3. Several documents in a stream:\n//\n//          'a scalar'\n//          ---\n//          'another scalar'\n//          ---\n//          'yet another scalar'\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          SCALAR(\"a scalar\",single-quoted)\n//          DOCUMENT-START\n//          SCALAR(\"another scalar\",single-quoted)\n//          DOCUMENT-START\n//          SCALAR(\"yet another scalar\",single-quoted)\n//          STREAM-END\n//\n// We have already introduced the SCALAR token above.  The following tokens are\n// used to describe aliases, anchors, tag, and scalars:\n//\n//      ALIAS(anchor)\n//      ANCHOR(anchor)\n//      TAG(handle,suffix)\n//      SCALAR(value,style)\n//\n// The following series of examples illustrate the usage of these tokens:\n//\n//      1. A recursive sequence:\n//\n//          &A [ *A ]\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          ANCHOR(\"A\")\n//          FLOW-SEQUENCE-START\n//          ALIAS(\"A\")\n//          FLOW-SEQUENCE-END\n//          STREAM-END\n//\n//      2. A tagged scalar:\n//\n//          !!float \"3.14\"  # A good approximation.\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          TAG(\"!!\",\"float\")\n//          SCALAR(\"3.14\",double-quoted)\n//          STREAM-END\n//\n//      3. Various scalar styles:\n//\n//          --- # Implicit empty plain scalars do not produce tokens.\n//          --- a plain scalar\n//          --- 'a single-quoted scalar'\n//          --- \"a double-quoted scalar\"\n//          --- |-\n//            a literal scalar\n//          --- >-\n//            a folded\n//            scalar\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          DOCUMENT-START\n//          DOCUMENT-START\n//          SCALAR(\"a plain scalar\",plain)\n//          DOCUMENT-START\n//          SCALAR(\"a single-quoted scalar\",single-quoted)\n//          DOCUMENT-START\n//          SCALAR(\"a double-quoted scalar\",double-quoted)\n//          DOCUMENT-START\n//          SCALAR(\"a literal scalar\",literal)\n//          DOCUMENT-START\n//          SCALAR(\"a folded scalar\",folded)\n//          STREAM-END\n//\n// Now it's time to review collection-related tokens. We will start with\n// flow collections:\n//\n//      FLOW-SEQUENCE-START\n//      FLOW-SEQUENCE-END\n//      FLOW-MAPPING-START\n//      FLOW-MAPPING-END\n//      FLOW-ENTRY\n//      KEY\n//      VALUE\n//\n// The tokens FLOW-SEQUENCE-START, FLOW-SEQUENCE-END, FLOW-MAPPING-START, and\n// FLOW-MAPPING-END represent the indicators '[', ']', '{', and '}'\n// correspondingly.  FLOW-ENTRY represent the ',' indicator.  Finally the\n// indicators '?' and ':', which are used for denoting mapping keys and values,\n// are represented by the KEY and VALUE tokens.\n//\n// The following examples show flow collections:\n//\n//      1. A flow sequence:\n//\n//          [item 1, item 2, item 3]\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          FLOW-SEQUENCE-START\n//          SCALAR(\"item 1\",plain)\n//          FLOW-ENTRY\n//          SCALAR(\"item 2\",plain)\n//          FLOW-ENTRY\n//          SCALAR(\"item 3\",plain)\n//          FLOW-SEQUENCE-END\n//          STREAM-END\n//\n//      2. A flow mapping:\n//\n//          {\n//              a simple key: a value,  # Note that the KEY token is produced.\n//              ? a complex key: another value,\n//          }\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          FLOW-MAPPING-START\n//          KEY\n//          SCALAR(\"a simple key\",plain)\n//          VALUE\n//          SCALAR(\"a value\",plain)\n//          FLOW-ENTRY\n//          KEY\n//          SCALAR(\"a complex key\",plain)\n//          VALUE\n//          SCALAR(\"another value\",plain)\n//          FLOW-ENTRY\n//          FLOW-MAPPING-END\n//          STREAM-END\n//\n// A simple key is a key which is not denoted by the '?' indicator.  Note that\n// the Scanner still produce the KEY token whenever it encounters a simple key.\n//\n// For scanning block collections, the following tokens are used (note that we\n// repeat KEY and VALUE here):\n//\n//      BLOCK-SEQUENCE-START\n//      BLOCK-MAPPING-START\n//      BLOCK-END\n//      BLOCK-ENTRY\n//      KEY\n//      VALUE\n//\n// The tokens BLOCK-SEQUENCE-START and BLOCK-MAPPING-START denote indentation\n// increase that precedes a block collection (cf. the INDENT token in Python).\n// The token BLOCK-END denote indentation decrease that ends a block collection\n// (cf. the DEDENT token in Python).  However YAML has some syntax pecularities\n// that makes detections of these tokens more complex.\n//\n// The tokens BLOCK-ENTRY, KEY, and VALUE are used to represent the indicators\n// '-', '?', and ':' correspondingly.\n//\n// The following examples show how the tokens BLOCK-SEQUENCE-START,\n// BLOCK-MAPPING-START, and BLOCK-END are emitted by the Scanner:\n//\n//      1. Block sequences:\n//\n//          - item 1\n//          - item 2\n//          -\n//            - item 3.1\n//            - item 3.2\n//          -\n//            key 1: value 1\n//            key 2: value 2\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          BLOCK-SEQUENCE-START\n//          BLOCK-ENTRY\n//          SCALAR(\"item 1\",plain)\n//          BLOCK-ENTRY\n//          SCALAR(\"item 2\",plain)\n//          BLOCK-ENTRY\n//          BLOCK-SEQUENCE-START\n//          BLOCK-ENTRY\n//          SCALAR(\"item 3.1\",plain)\n//          BLOCK-ENTRY\n//          SCALAR(\"item 3.2\",plain)\n//          BLOCK-END\n//          BLOCK-ENTRY\n//          BLOCK-MAPPING-START\n//          KEY\n//          SCALAR(\"key 1\",plain)\n//          VALUE\n//          SCALAR(\"value 1\",plain)\n//          KEY\n//          SCALAR(\"key 2\",plain)\n//          VALUE\n//          SCALAR(\"value 2\",plain)\n//          BLOCK-END\n//          BLOCK-END\n//          STREAM-END\n//\n//      2. Block mappings:\n//\n//          a simple key: a value   # The KEY token is produced here.\n//          ? a complex key\n//          : another value\n//          a mapping:\n//            key 1: value 1\n//            key 2: value 2\n//          a sequence:\n//            - item 1\n//            - item 2\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          BLOCK-MAPPING-START\n//          KEY\n//          SCALAR(\"a simple key\",plain)\n//          VALUE\n//          SCALAR(\"a value\",plain)\n//          KEY\n//          SCALAR(\"a complex key\",plain)\n//          VALUE\n//          SCALAR(\"another value\",plain)\n//          KEY\n//          SCALAR(\"a mapping\",plain)\n//          BLOCK-MAPPING-START\n//          KEY\n//          SCALAR(\"key 1\",plain)\n//          VALUE\n//          SCALAR(\"value 1\",plain)\n//          KEY\n//          SCALAR(\"key 2\",plain)\n//          VALUE\n//          SCALAR(\"value 2\",plain)\n//          BLOCK-END\n//          KEY\n//          SCALAR(\"a sequence\",plain)\n//          VALUE\n//          BLOCK-SEQUENCE-START\n//          BLOCK-ENTRY\n//          SCALAR(\"item 1\",plain)\n//          BLOCK-ENTRY\n//          SCALAR(\"item 2\",plain)\n//          BLOCK-END\n//          BLOCK-END\n//          STREAM-END\n//\n// YAML does not always require to start a new block collection from a new\n// line.  If the current line contains only '-', '?', and ':' indicators, a new\n// block collection may start at the current line.  The following examples\n// illustrate this case:\n//\n//      1. Collections in a sequence:\n//\n//          - - item 1\n//            - item 2\n//          - key 1: value 1\n//            key 2: value 2\n//          - ? complex key\n//            : complex value\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          BLOCK-SEQUENCE-START\n//          BLOCK-ENTRY\n//          BLOCK-SEQUENCE-START\n//          BLOCK-ENTRY\n//          SCALAR(\"item 1\",plain)\n//          BLOCK-ENTRY\n//          SCALAR(\"item 2\",plain)\n//          BLOCK-END\n//          BLOCK-ENTRY\n//          BLOCK-MAPPING-START\n//          KEY\n//          SCALAR(\"key 1\",plain)\n//          VALUE\n//          SCALAR(\"value 1\",plain)\n//          KEY\n//          SCALAR(\"key 2\",plain)\n//          VALUE\n//          SCALAR(\"value 2\",plain)\n//          BLOCK-END\n//          BLOCK-ENTRY\n//          BLOCK-MAPPING-START\n//          KEY\n//          SCALAR(\"complex key\")\n//          VALUE\n//          SCALAR(\"complex value\")\n//          BLOCK-END\n//          BLOCK-END\n//          STREAM-END\n//\n//      2. Collections in a mapping:\n//\n//          ? a sequence\n//          : - item 1\n//            - item 2\n//          ? a mapping\n//          : key 1: value 1\n//            key 2: value 2\n//\n//      Tokens:\n//\n//          STREAM-START(utf-8)\n//          BLOCK-MAPPING-START\n//          KEY\n//          SCALAR(\"a sequence\",plain)\n//          VALUE\n//          BLOCK-SEQUENCE-START\n//          BLOCK-ENTRY\n//          SCALAR(\"item 1\",plain)\n//          BLOCK-ENTRY\n//          SCALAR(\"item 2\",plain)\n//          BLOCK-END\n//          KEY\n//          SCALAR(\"a mapping\",plain)\n//          VALUE\n//          BLOCK-MAPPING-START\n//          KEY\n//          SCALAR(\"key 1\",plain)\n//          VALUE\n//          SCALAR(\"value 1\",plain)\n//          KEY\n//          SCALAR(\"key 2\",plain)\n//          VALUE\n//          SCALAR(\"value 2\",plain)\n//          BLOCK-END\n//          BLOCK-END\n//          STREAM-END\n//\n// YAML also permits non-indented sequences if they are included into a block\n// mapping.  In this case, the token BLOCK-SEQUENCE-START is not produced:\n//\n//      key:\n//      - item 1    # BLOCK-SEQUENCE-START is NOT produced here.\n//      - item 2\n//\n// Tokens:\n//\n//      STREAM-START(utf-8)\n//      BLOCK-MAPPING-START\n//      KEY\n//      SCALAR(\"key\",plain)\n//      VALUE\n//      BLOCK-ENTRY\n//      SCALAR(\"item 1\",plain)\n//      BLOCK-ENTRY\n//      SCALAR(\"item 2\",plain)\n//      BLOCK-END\n//\n\n// Ensure that the buffer contains the required number of characters.\n// Return true on success, false on failure (reader error or memory error).\nfunc cache(parser *yaml_parser_t, length int) bool {\n\t// [Go] This was inlined: !cache(A, B) -> unread < B && !update(A, B)\n\treturn parser.unread >= length || yaml_parser_update_buffer(parser, length)\n}\n\n// Advance the buffer pointer.\nfunc skip(parser *yaml_parser_t) {\n\tparser.mark.index++\n\tparser.mark.column++\n\tparser.unread--\n\tparser.buffer_pos += width(parser.buffer[parser.buffer_pos])\n}\n\nfunc skip_line(parser *yaml_parser_t) {\n\tif is_crlf(parser.buffer, parser.buffer_pos) {\n\t\tparser.mark.index += 2\n\t\tparser.mark.column = 0\n\t\tparser.mark.line++\n\t\tparser.unread -= 2\n\t\tparser.buffer_pos += 2\n\t} else if is_break(parser.buffer, parser.buffer_pos) {\n\t\tparser.mark.index++\n\t\tparser.mark.column = 0\n\t\tparser.mark.line++\n\t\tparser.unread--\n\t\tparser.buffer_pos += width(parser.buffer[parser.buffer_pos])\n\t}\n}\n\n// Copy a character to a string buffer and advance pointers.\nfunc read(parser *yaml_parser_t, s []byte) []byte {\n\tw := width(parser.buffer[parser.buffer_pos])\n\tif w == 0 {\n\t\tpanic(\"invalid character sequence\")\n\t}\n\tif len(s) == 0 {\n\t\ts = make([]byte, 0, 32)\n\t}\n\tif w == 1 && len(s)+w <= cap(s) {\n\t\ts = s[:len(s)+1]\n\t\ts[len(s)-1] = parser.buffer[parser.buffer_pos]\n\t\tparser.buffer_pos++\n\t} else {\n\t\ts = append(s, parser.buffer[parser.buffer_pos:parser.buffer_pos+w]...)\n\t\tparser.buffer_pos += w\n\t}\n\tparser.mark.index++\n\tparser.mark.column++\n\tparser.unread--\n\treturn s\n}\n\n// Copy a line break character to a string buffer and advance pointers.\nfunc read_line(parser *yaml_parser_t, s []byte) []byte {\n\tbuf := parser.buffer\n\tpos := parser.buffer_pos\n\tswitch {\n\tcase buf[pos] == '\\r' && buf[pos+1] == '\\n':\n\t\t// CR LF . LF\n\t\ts = append(s, '\\n')\n\t\tparser.buffer_pos += 2\n\t\tparser.mark.index++\n\t\tparser.unread--\n\tcase buf[pos] == '\\r' || buf[pos] == '\\n':\n\t\t// CR|LF . LF\n\t\ts = append(s, '\\n')\n\t\tparser.buffer_pos += 1\n\tcase buf[pos] == '\\xC2' && buf[pos+1] == '\\x85':\n\t\t// NEL . LF\n\t\ts = append(s, '\\n')\n\t\tparser.buffer_pos += 2\n\tcase buf[pos] == '\\xE2' && buf[pos+1] == '\\x80' && (buf[pos+2] == '\\xA8' || buf[pos+2] == '\\xA9'):\n\t\t// LS|PS . LS|PS\n\t\ts = append(s, buf[parser.buffer_pos:pos+3]...)\n\t\tparser.buffer_pos += 3\n\tdefault:\n\t\treturn s\n\t}\n\tparser.mark.index++\n\tparser.mark.column = 0\n\tparser.mark.line++\n\tparser.unread--\n\treturn s\n}\n\n// Get the next token.\nfunc yaml_parser_scan(parser *yaml_parser_t, token *yaml_token_t) bool {\n\t// Erase the token object.\n\t*token = yaml_token_t{} // [Go] Is this necessary?\n\n\t// No tokens after STREAM-END or error.\n\tif parser.stream_end_produced || parser.error != yaml_NO_ERROR {\n\t\treturn true\n\t}\n\n\t// Ensure that the tokens queue contains enough tokens.\n\tif !parser.token_available {\n\t\tif !yaml_parser_fetch_more_tokens(parser) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Fetch the next token from the queue.\n\t*token = parser.tokens[parser.tokens_head]\n\tparser.tokens_head++\n\tparser.tokens_parsed++\n\tparser.token_available = false\n\n\tif token.typ == yaml_STREAM_END_TOKEN {\n\t\tparser.stream_end_produced = true\n\t}\n\treturn true\n}\n\n// Set the scanner error and return false.\nfunc yaml_parser_set_scanner_error(parser *yaml_parser_t, context string, context_mark yaml_mark_t, problem string) bool {\n\tparser.error = yaml_SCANNER_ERROR\n\tparser.context = context\n\tparser.context_mark = context_mark\n\tparser.problem = problem\n\tparser.problem_mark = parser.mark\n\treturn false\n}\n\nfunc yaml_parser_set_scanner_tag_error(parser *yaml_parser_t, directive bool, context_mark yaml_mark_t, problem string) bool {\n\tcontext := \"while parsing a tag\"\n\tif directive {\n\t\tcontext = \"while parsing a %TAG directive\"\n\t}\n\treturn yaml_parser_set_scanner_error(parser, context, context_mark, problem)\n}\n\nfunc trace(args ...interface{}) func() {\n\tpargs := append([]interface{}{\"+++\"}, args...)\n\tfmt.Println(pargs...)\n\tpargs = append([]interface{}{\"---\"}, args...)\n\treturn func() { fmt.Println(pargs...) }\n}\n\n// Ensure that the tokens queue contains at least one token which can be\n// returned to the Parser.\nfunc yaml_parser_fetch_more_tokens(parser *yaml_parser_t) bool {\n\t// While we need more tokens to fetch, do it.\n\tfor {\n\t\tif parser.tokens_head != len(parser.tokens) {\n\t\t\t// If queue is non-empty, check if any potential simple key may\n\t\t\t// occupy the head position.\n\t\t\thead_tok_idx, ok := parser.simple_keys_by_tok[parser.tokens_parsed]\n\t\t\tif !ok {\n\t\t\t\tbreak\n\t\t\t} else if valid, ok := yaml_simple_key_is_valid(parser, &parser.simple_keys[head_tok_idx]); !ok {\n\t\t\t\treturn false\n\t\t\t} else if !valid {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\t// Fetch the next token.\n\t\tif !yaml_parser_fetch_next_token(parser) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tparser.token_available = true\n\treturn true\n}\n\n// The dispatcher for token fetchers.\nfunc yaml_parser_fetch_next_token(parser *yaml_parser_t) bool {\n\t// Ensure that the buffer is initialized.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\n\t// Check if we just started scanning.  Fetch STREAM-START then.\n\tif !parser.stream_start_produced {\n\t\treturn yaml_parser_fetch_stream_start(parser)\n\t}\n\n\t// Eat whitespaces and comments until we reach the next token.\n\tif !yaml_parser_scan_to_next_token(parser) {\n\t\treturn false\n\t}\n\n\t// Check the indentation level against the current column.\n\tif !yaml_parser_unroll_indent(parser, parser.mark.column) {\n\t\treturn false\n\t}\n\n\t// Ensure that the buffer contains at least 4 characters.  4 is the length\n\t// of the longest indicators ('--- ' and '... ').\n\tif parser.unread < 4 && !yaml_parser_update_buffer(parser, 4) {\n\t\treturn false\n\t}\n\n\t// Is it the end of the stream?\n\tif is_z(parser.buffer, parser.buffer_pos) {\n\t\treturn yaml_parser_fetch_stream_end(parser)\n\t}\n\n\t// Is it a directive?\n\tif parser.mark.column == 0 && parser.buffer[parser.buffer_pos] == '%' {\n\t\treturn yaml_parser_fetch_directive(parser)\n\t}\n\n\tbuf := parser.buffer\n\tpos := parser.buffer_pos\n\n\t// Is it the document start indicator?\n\tif parser.mark.column == 0 && buf[pos] == '-' && buf[pos+1] == '-' && buf[pos+2] == '-' && is_blankz(buf, pos+3) {\n\t\treturn yaml_parser_fetch_document_indicator(parser, yaml_DOCUMENT_START_TOKEN)\n\t}\n\n\t// Is it the document end indicator?\n\tif parser.mark.column == 0 && buf[pos] == '.' && buf[pos+1] == '.' && buf[pos+2] == '.' && is_blankz(buf, pos+3) {\n\t\treturn yaml_parser_fetch_document_indicator(parser, yaml_DOCUMENT_END_TOKEN)\n\t}\n\n\t// Is it the flow sequence start indicator?\n\tif buf[pos] == '[' {\n\t\treturn yaml_parser_fetch_flow_collection_start(parser, yaml_FLOW_SEQUENCE_START_TOKEN)\n\t}\n\n\t// Is it the flow mapping start indicator?\n\tif parser.buffer[parser.buffer_pos] == '{' {\n\t\treturn yaml_parser_fetch_flow_collection_start(parser, yaml_FLOW_MAPPING_START_TOKEN)\n\t}\n\n\t// Is it the flow sequence end indicator?\n\tif parser.buffer[parser.buffer_pos] == ']' {\n\t\treturn yaml_parser_fetch_flow_collection_end(parser,\n\t\t\tyaml_FLOW_SEQUENCE_END_TOKEN)\n\t}\n\n\t// Is it the flow mapping end indicator?\n\tif parser.buffer[parser.buffer_pos] == '}' {\n\t\treturn yaml_parser_fetch_flow_collection_end(parser,\n\t\t\tyaml_FLOW_MAPPING_END_TOKEN)\n\t}\n\n\t// Is it the flow entry indicator?\n\tif parser.buffer[parser.buffer_pos] == ',' {\n\t\treturn yaml_parser_fetch_flow_entry(parser)\n\t}\n\n\t// Is it the block entry indicator?\n\tif parser.buffer[parser.buffer_pos] == '-' && is_blankz(parser.buffer, parser.buffer_pos+1) {\n\t\treturn yaml_parser_fetch_block_entry(parser)\n\t}\n\n\t// Is it the key indicator?\n\tif parser.buffer[parser.buffer_pos] == '?' && (parser.flow_level > 0 || is_blankz(parser.buffer, parser.buffer_pos+1)) {\n\t\treturn yaml_parser_fetch_key(parser)\n\t}\n\n\t// Is it the value indicator?\n\tif parser.buffer[parser.buffer_pos] == ':' && (parser.flow_level > 0 || is_blankz(parser.buffer, parser.buffer_pos+1)) {\n\t\treturn yaml_parser_fetch_value(parser)\n\t}\n\n\t// Is it an alias?\n\tif parser.buffer[parser.buffer_pos] == '*' {\n\t\treturn yaml_parser_fetch_anchor(parser, yaml_ALIAS_TOKEN)\n\t}\n\n\t// Is it an anchor?\n\tif parser.buffer[parser.buffer_pos] == '&' {\n\t\treturn yaml_parser_fetch_anchor(parser, yaml_ANCHOR_TOKEN)\n\t}\n\n\t// Is it a tag?\n\tif parser.buffer[parser.buffer_pos] == '!' {\n\t\treturn yaml_parser_fetch_tag(parser)\n\t}\n\n\t// Is it a literal scalar?\n\tif parser.buffer[parser.buffer_pos] == '|' && parser.flow_level == 0 {\n\t\treturn yaml_parser_fetch_block_scalar(parser, true)\n\t}\n\n\t// Is it a folded scalar?\n\tif parser.buffer[parser.buffer_pos] == '>' && parser.flow_level == 0 {\n\t\treturn yaml_parser_fetch_block_scalar(parser, false)\n\t}\n\n\t// Is it a single-quoted scalar?\n\tif parser.buffer[parser.buffer_pos] == '\\'' {\n\t\treturn yaml_parser_fetch_flow_scalar(parser, true)\n\t}\n\n\t// Is it a double-quoted scalar?\n\tif parser.buffer[parser.buffer_pos] == '\"' {\n\t\treturn yaml_parser_fetch_flow_scalar(parser, false)\n\t}\n\n\t// Is it a plain scalar?\n\t//\n\t// A plain scalar may start with any non-blank characters except\n\t//\n\t//      '-', '?', ':', ',', '[', ']', '{', '}',\n\t//      '#', '&', '*', '!', '|', '>', '\\'', '\\\"',\n\t//      '%', '@', '`'.\n\t//\n\t// In the block context (and, for the '-' indicator, in the flow context\n\t// too), it may also start with the characters\n\t//\n\t//      '-', '?', ':'\n\t//\n\t// if it is followed by a non-space character.\n\t//\n\t// The last rule is more restrictive than the specification requires.\n\t// [Go] Make this logic more reasonable.\n\t//switch parser.buffer[parser.buffer_pos] {\n\t//case '-', '?', ':', ',', '?', '-', ',', ':', ']', '[', '}', '{', '&', '#', '!', '*', '>', '|', '\"', '\\'', '@', '%', '-', '`':\n\t//}\n\tif !(is_blankz(parser.buffer, parser.buffer_pos) || parser.buffer[parser.buffer_pos] == '-' ||\n\t\tparser.buffer[parser.buffer_pos] == '?' || parser.buffer[parser.buffer_pos] == ':' ||\n\t\tparser.buffer[parser.buffer_pos] == ',' || parser.buffer[parser.buffer_pos] == '[' ||\n\t\tparser.buffer[parser.buffer_pos] == ']' || parser.buffer[parser.buffer_pos] == '{' ||\n\t\tparser.buffer[parser.buffer_pos] == '}' || parser.buffer[parser.buffer_pos] == '#' ||\n\t\tparser.buffer[parser.buffer_pos] == '&' || parser.buffer[parser.buffer_pos] == '*' ||\n\t\tparser.buffer[parser.buffer_pos] == '!' || parser.buffer[parser.buffer_pos] == '|' ||\n\t\tparser.buffer[parser.buffer_pos] == '>' || parser.buffer[parser.buffer_pos] == '\\'' ||\n\t\tparser.buffer[parser.buffer_pos] == '\"' || parser.buffer[parser.buffer_pos] == '%' ||\n\t\tparser.buffer[parser.buffer_pos] == '@' || parser.buffer[parser.buffer_pos] == '`') ||\n\t\t(parser.buffer[parser.buffer_pos] == '-' && !is_blank(parser.buffer, parser.buffer_pos+1)) ||\n\t\t(parser.flow_level == 0 &&\n\t\t\t(parser.buffer[parser.buffer_pos] == '?' || parser.buffer[parser.buffer_pos] == ':') &&\n\t\t\t!is_blankz(parser.buffer, parser.buffer_pos+1)) {\n\t\treturn yaml_parser_fetch_plain_scalar(parser)\n\t}\n\n\t// If we don't determine the token type so far, it is an error.\n\treturn yaml_parser_set_scanner_error(parser,\n\t\t\"while scanning for the next token\", parser.mark,\n\t\t\"found character that cannot start any token\")\n}\n\nfunc yaml_simple_key_is_valid(parser *yaml_parser_t, simple_key *yaml_simple_key_t) (valid, ok bool) {\n\tif !simple_key.possible {\n\t\treturn false, true\n\t}\n\n\t// The 1.2 specification says:\n\t//\n\t//     \"If the ? indicator is omitted, parsing needs to see past the\n\t//     implicit key to recognize it as such. To limit the amount of\n\t//     lookahead required, the “:” indicator must appear at most 1024\n\t//     Unicode characters beyond the start of the key. In addition, the key\n\t//     is restricted to a single line.\"\n\t//\n\tif simple_key.mark.line < parser.mark.line || simple_key.mark.index+1024 < parser.mark.index {\n\t\t// Check if the potential simple key to be removed is required.\n\t\tif simple_key.required {\n\t\t\treturn false, yaml_parser_set_scanner_error(parser,\n\t\t\t\t\"while scanning a simple key\", simple_key.mark,\n\t\t\t\t\"could not find expected ':'\")\n\t\t}\n\t\tsimple_key.possible = false\n\t\treturn false, true\n\t}\n\treturn true, true\n}\n\n// Check if a simple key may start at the current position and add it if\n// needed.\nfunc yaml_parser_save_simple_key(parser *yaml_parser_t) bool {\n\t// A simple key is required at the current position if the scanner is in\n\t// the block context and the current column coincides with the indentation\n\t// level.\n\n\trequired := parser.flow_level == 0 && parser.indent == parser.mark.column\n\n\t//\n\t// If the current position may start a simple key, save it.\n\t//\n\tif parser.simple_key_allowed {\n\t\tsimple_key := yaml_simple_key_t{\n\t\t\tpossible:     true,\n\t\t\trequired:     required,\n\t\t\ttoken_number: parser.tokens_parsed + (len(parser.tokens) - parser.tokens_head),\n\t\t\tmark:         parser.mark,\n\t\t}\n\n\t\tif !yaml_parser_remove_simple_key(parser) {\n\t\t\treturn false\n\t\t}\n\t\tparser.simple_keys[len(parser.simple_keys)-1] = simple_key\n\t\tparser.simple_keys_by_tok[simple_key.token_number] = len(parser.simple_keys) - 1\n\t}\n\treturn true\n}\n\n// Remove a potential simple key at the current flow level.\nfunc yaml_parser_remove_simple_key(parser *yaml_parser_t) bool {\n\ti := len(parser.simple_keys) - 1\n\tif parser.simple_keys[i].possible {\n\t\t// If the key is required, it is an error.\n\t\tif parser.simple_keys[i].required {\n\t\t\treturn yaml_parser_set_scanner_error(parser,\n\t\t\t\t\"while scanning a simple key\", parser.simple_keys[i].mark,\n\t\t\t\t\"could not find expected ':'\")\n\t\t}\n\t\t// Remove the key from the stack.\n\t\tparser.simple_keys[i].possible = false\n\t\tdelete(parser.simple_keys_by_tok, parser.simple_keys[i].token_number)\n\t}\n\treturn true\n}\n\n// max_flow_level limits the flow_level\nconst max_flow_level = 10000\n\n// Increase the flow level and resize the simple key list if needed.\nfunc yaml_parser_increase_flow_level(parser *yaml_parser_t) bool {\n\t// Reset the simple key on the next level.\n\tparser.simple_keys = append(parser.simple_keys, yaml_simple_key_t{\n\t\tpossible:     false,\n\t\trequired:     false,\n\t\ttoken_number: parser.tokens_parsed + (len(parser.tokens) - parser.tokens_head),\n\t\tmark:         parser.mark,\n\t})\n\n\t// Increase the flow level.\n\tparser.flow_level++\n\tif parser.flow_level > max_flow_level {\n\t\treturn yaml_parser_set_scanner_error(parser,\n\t\t\t\"while increasing flow level\", parser.simple_keys[len(parser.simple_keys)-1].mark,\n\t\t\tfmt.Sprintf(\"exceeded max depth of %d\", max_flow_level))\n\t}\n\treturn true\n}\n\n// Decrease the flow level.\nfunc yaml_parser_decrease_flow_level(parser *yaml_parser_t) bool {\n\tif parser.flow_level > 0 {\n\t\tparser.flow_level--\n\t\tlast := len(parser.simple_keys) - 1\n\t\tdelete(parser.simple_keys_by_tok, parser.simple_keys[last].token_number)\n\t\tparser.simple_keys = parser.simple_keys[:last]\n\t}\n\treturn true\n}\n\n// max_indents limits the indents stack size\nconst max_indents = 10000\n\n// Push the current indentation level to the stack and set the new level\n// the current column is greater than the indentation level.  In this case,\n// append or insert the specified token into the token queue.\nfunc yaml_parser_roll_indent(parser *yaml_parser_t, column, number int, typ yaml_token_type_t, mark yaml_mark_t) bool {\n\t// In the flow context, do nothing.\n\tif parser.flow_level > 0 {\n\t\treturn true\n\t}\n\n\tif parser.indent < column {\n\t\t// Push the current indentation level to the stack and set the new\n\t\t// indentation level.\n\t\tparser.indents = append(parser.indents, parser.indent)\n\t\tparser.indent = column\n\t\tif len(parser.indents) > max_indents {\n\t\t\treturn yaml_parser_set_scanner_error(parser,\n\t\t\t\t\"while increasing indent level\", parser.simple_keys[len(parser.simple_keys)-1].mark,\n\t\t\t\tfmt.Sprintf(\"exceeded max depth of %d\", max_indents))\n\t\t}\n\n\t\t// Create a token and insert it into the queue.\n\t\ttoken := yaml_token_t{\n\t\t\ttyp:        typ,\n\t\t\tstart_mark: mark,\n\t\t\tend_mark:   mark,\n\t\t}\n\t\tif number > -1 {\n\t\t\tnumber -= parser.tokens_parsed\n\t\t}\n\t\tyaml_insert_token(parser, number, &token)\n\t}\n\treturn true\n}\n\n// Pop indentation levels from the indents stack until the current level\n// becomes less or equal to the column.  For each indentation level, append\n// the BLOCK-END token.\nfunc yaml_parser_unroll_indent(parser *yaml_parser_t, column int) bool {\n\t// In the flow context, do nothing.\n\tif parser.flow_level > 0 {\n\t\treturn true\n\t}\n\n\t// Loop through the indentation levels in the stack.\n\tfor parser.indent > column {\n\t\t// Create a token and append it to the queue.\n\t\ttoken := yaml_token_t{\n\t\t\ttyp:        yaml_BLOCK_END_TOKEN,\n\t\t\tstart_mark: parser.mark,\n\t\t\tend_mark:   parser.mark,\n\t\t}\n\t\tyaml_insert_token(parser, -1, &token)\n\n\t\t// Pop the indentation level.\n\t\tparser.indent = parser.indents[len(parser.indents)-1]\n\t\tparser.indents = parser.indents[:len(parser.indents)-1]\n\t}\n\treturn true\n}\n\n// Initialize the scanner and produce the STREAM-START token.\nfunc yaml_parser_fetch_stream_start(parser *yaml_parser_t) bool {\n\n\t// Set the initial indentation.\n\tparser.indent = -1\n\n\t// Initialize the simple key stack.\n\tparser.simple_keys = append(parser.simple_keys, yaml_simple_key_t{})\n\n\tparser.simple_keys_by_tok = make(map[int]int)\n\n\t// A simple key is allowed at the beginning of the stream.\n\tparser.simple_key_allowed = true\n\n\t// We have started.\n\tparser.stream_start_produced = true\n\n\t// Create the STREAM-START token and append it to the queue.\n\ttoken := yaml_token_t{\n\t\ttyp:        yaml_STREAM_START_TOKEN,\n\t\tstart_mark: parser.mark,\n\t\tend_mark:   parser.mark,\n\t\tencoding:   parser.encoding,\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the STREAM-END token and shut down the scanner.\nfunc yaml_parser_fetch_stream_end(parser *yaml_parser_t) bool {\n\n\t// Force new line.\n\tif parser.mark.column != 0 {\n\t\tparser.mark.column = 0\n\t\tparser.mark.line++\n\t}\n\n\t// Reset the indentation level.\n\tif !yaml_parser_unroll_indent(parser, -1) {\n\t\treturn false\n\t}\n\n\t// Reset simple keys.\n\tif !yaml_parser_remove_simple_key(parser) {\n\t\treturn false\n\t}\n\n\tparser.simple_key_allowed = false\n\n\t// Create the STREAM-END token and append it to the queue.\n\ttoken := yaml_token_t{\n\t\ttyp:        yaml_STREAM_END_TOKEN,\n\t\tstart_mark: parser.mark,\n\t\tend_mark:   parser.mark,\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce a VERSION-DIRECTIVE or TAG-DIRECTIVE token.\nfunc yaml_parser_fetch_directive(parser *yaml_parser_t) bool {\n\t// Reset the indentation level.\n\tif !yaml_parser_unroll_indent(parser, -1) {\n\t\treturn false\n\t}\n\n\t// Reset simple keys.\n\tif !yaml_parser_remove_simple_key(parser) {\n\t\treturn false\n\t}\n\n\tparser.simple_key_allowed = false\n\n\t// Create the YAML-DIRECTIVE or TAG-DIRECTIVE token.\n\ttoken := yaml_token_t{}\n\tif !yaml_parser_scan_directive(parser, &token) {\n\t\treturn false\n\t}\n\t// Append the token to the queue.\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the DOCUMENT-START or DOCUMENT-END token.\nfunc yaml_parser_fetch_document_indicator(parser *yaml_parser_t, typ yaml_token_type_t) bool {\n\t// Reset the indentation level.\n\tif !yaml_parser_unroll_indent(parser, -1) {\n\t\treturn false\n\t}\n\n\t// Reset simple keys.\n\tif !yaml_parser_remove_simple_key(parser) {\n\t\treturn false\n\t}\n\n\tparser.simple_key_allowed = false\n\n\t// Consume the token.\n\tstart_mark := parser.mark\n\n\tskip(parser)\n\tskip(parser)\n\tskip(parser)\n\n\tend_mark := parser.mark\n\n\t// Create the DOCUMENT-START or DOCUMENT-END token.\n\ttoken := yaml_token_t{\n\t\ttyp:        typ,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t}\n\t// Append the token to the queue.\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the FLOW-SEQUENCE-START or FLOW-MAPPING-START token.\nfunc yaml_parser_fetch_flow_collection_start(parser *yaml_parser_t, typ yaml_token_type_t) bool {\n\t// The indicators '[' and '{' may start a simple key.\n\tif !yaml_parser_save_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// Increase the flow level.\n\tif !yaml_parser_increase_flow_level(parser) {\n\t\treturn false\n\t}\n\n\t// A simple key may follow the indicators '[' and '{'.\n\tparser.simple_key_allowed = true\n\n\t// Consume the token.\n\tstart_mark := parser.mark\n\tskip(parser)\n\tend_mark := parser.mark\n\n\t// Create the FLOW-SEQUENCE-START of FLOW-MAPPING-START token.\n\ttoken := yaml_token_t{\n\t\ttyp:        typ,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t}\n\t// Append the token to the queue.\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the FLOW-SEQUENCE-END or FLOW-MAPPING-END token.\nfunc yaml_parser_fetch_flow_collection_end(parser *yaml_parser_t, typ yaml_token_type_t) bool {\n\t// Reset any potential simple key on the current flow level.\n\tif !yaml_parser_remove_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// Decrease the flow level.\n\tif !yaml_parser_decrease_flow_level(parser) {\n\t\treturn false\n\t}\n\n\t// No simple keys after the indicators ']' and '}'.\n\tparser.simple_key_allowed = false\n\n\t// Consume the token.\n\n\tstart_mark := parser.mark\n\tskip(parser)\n\tend_mark := parser.mark\n\n\t// Create the FLOW-SEQUENCE-END of FLOW-MAPPING-END token.\n\ttoken := yaml_token_t{\n\t\ttyp:        typ,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t}\n\t// Append the token to the queue.\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the FLOW-ENTRY token.\nfunc yaml_parser_fetch_flow_entry(parser *yaml_parser_t) bool {\n\t// Reset any potential simple keys on the current flow level.\n\tif !yaml_parser_remove_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// Simple keys are allowed after ','.\n\tparser.simple_key_allowed = true\n\n\t// Consume the token.\n\tstart_mark := parser.mark\n\tskip(parser)\n\tend_mark := parser.mark\n\n\t// Create the FLOW-ENTRY token and append it to the queue.\n\ttoken := yaml_token_t{\n\t\ttyp:        yaml_FLOW_ENTRY_TOKEN,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the BLOCK-ENTRY token.\nfunc yaml_parser_fetch_block_entry(parser *yaml_parser_t) bool {\n\t// Check if the scanner is in the block context.\n\tif parser.flow_level == 0 {\n\t\t// Check if we are allowed to start a new entry.\n\t\tif !parser.simple_key_allowed {\n\t\t\treturn yaml_parser_set_scanner_error(parser, \"\", parser.mark,\n\t\t\t\t\"block sequence entries are not allowed in this context\")\n\t\t}\n\t\t// Add the BLOCK-SEQUENCE-START token if needed.\n\t\tif !yaml_parser_roll_indent(parser, parser.mark.column, -1, yaml_BLOCK_SEQUENCE_START_TOKEN, parser.mark) {\n\t\t\treturn false\n\t\t}\n\t} else {\n\t\t// It is an error for the '-' indicator to occur in the flow context,\n\t\t// but we let the Parser detect and report about it because the Parser\n\t\t// is able to point to the context.\n\t}\n\n\t// Reset any potential simple keys on the current flow level.\n\tif !yaml_parser_remove_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// Simple keys are allowed after '-'.\n\tparser.simple_key_allowed = true\n\n\t// Consume the token.\n\tstart_mark := parser.mark\n\tskip(parser)\n\tend_mark := parser.mark\n\n\t// Create the BLOCK-ENTRY token and append it to the queue.\n\ttoken := yaml_token_t{\n\t\ttyp:        yaml_BLOCK_ENTRY_TOKEN,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the KEY token.\nfunc yaml_parser_fetch_key(parser *yaml_parser_t) bool {\n\n\t// In the block context, additional checks are required.\n\tif parser.flow_level == 0 {\n\t\t// Check if we are allowed to start a new key (not nessesary simple).\n\t\tif !parser.simple_key_allowed {\n\t\t\treturn yaml_parser_set_scanner_error(parser, \"\", parser.mark,\n\t\t\t\t\"mapping keys are not allowed in this context\")\n\t\t}\n\t\t// Add the BLOCK-MAPPING-START token if needed.\n\t\tif !yaml_parser_roll_indent(parser, parser.mark.column, -1, yaml_BLOCK_MAPPING_START_TOKEN, parser.mark) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Reset any potential simple keys on the current flow level.\n\tif !yaml_parser_remove_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// Simple keys are allowed after '?' in the block context.\n\tparser.simple_key_allowed = parser.flow_level == 0\n\n\t// Consume the token.\n\tstart_mark := parser.mark\n\tskip(parser)\n\tend_mark := parser.mark\n\n\t// Create the KEY token and append it to the queue.\n\ttoken := yaml_token_t{\n\t\ttyp:        yaml_KEY_TOKEN,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the VALUE token.\nfunc yaml_parser_fetch_value(parser *yaml_parser_t) bool {\n\n\tsimple_key := &parser.simple_keys[len(parser.simple_keys)-1]\n\n\t// Have we found a simple key?\n\tif valid, ok := yaml_simple_key_is_valid(parser, simple_key); !ok {\n\t\treturn false\n\n\t} else if valid {\n\n\t\t// Create the KEY token and insert it into the queue.\n\t\ttoken := yaml_token_t{\n\t\t\ttyp:        yaml_KEY_TOKEN,\n\t\t\tstart_mark: simple_key.mark,\n\t\t\tend_mark:   simple_key.mark,\n\t\t}\n\t\tyaml_insert_token(parser, simple_key.token_number-parser.tokens_parsed, &token)\n\n\t\t// In the block context, we may need to add the BLOCK-MAPPING-START token.\n\t\tif !yaml_parser_roll_indent(parser, simple_key.mark.column,\n\t\t\tsimple_key.token_number,\n\t\t\tyaml_BLOCK_MAPPING_START_TOKEN, simple_key.mark) {\n\t\t\treturn false\n\t\t}\n\n\t\t// Remove the simple key.\n\t\tsimple_key.possible = false\n\t\tdelete(parser.simple_keys_by_tok, simple_key.token_number)\n\n\t\t// A simple key cannot follow another simple key.\n\t\tparser.simple_key_allowed = false\n\n\t} else {\n\t\t// The ':' indicator follows a complex key.\n\n\t\t// In the block context, extra checks are required.\n\t\tif parser.flow_level == 0 {\n\n\t\t\t// Check if we are allowed to start a complex value.\n\t\t\tif !parser.simple_key_allowed {\n\t\t\t\treturn yaml_parser_set_scanner_error(parser, \"\", parser.mark,\n\t\t\t\t\t\"mapping values are not allowed in this context\")\n\t\t\t}\n\n\t\t\t// Add the BLOCK-MAPPING-START token if needed.\n\t\t\tif !yaml_parser_roll_indent(parser, parser.mark.column, -1, yaml_BLOCK_MAPPING_START_TOKEN, parser.mark) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\t// Simple keys after ':' are allowed in the block context.\n\t\tparser.simple_key_allowed = parser.flow_level == 0\n\t}\n\n\t// Consume the token.\n\tstart_mark := parser.mark\n\tskip(parser)\n\tend_mark := parser.mark\n\n\t// Create the VALUE token and append it to the queue.\n\ttoken := yaml_token_t{\n\t\ttyp:        yaml_VALUE_TOKEN,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the ALIAS or ANCHOR token.\nfunc yaml_parser_fetch_anchor(parser *yaml_parser_t, typ yaml_token_type_t) bool {\n\t// An anchor or an alias could be a simple key.\n\tif !yaml_parser_save_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// A simple key cannot follow an anchor or an alias.\n\tparser.simple_key_allowed = false\n\n\t// Create the ALIAS or ANCHOR token and append it to the queue.\n\tvar token yaml_token_t\n\tif !yaml_parser_scan_anchor(parser, &token, typ) {\n\t\treturn false\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the TAG token.\nfunc yaml_parser_fetch_tag(parser *yaml_parser_t) bool {\n\t// A tag could be a simple key.\n\tif !yaml_parser_save_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// A simple key cannot follow a tag.\n\tparser.simple_key_allowed = false\n\n\t// Create the TAG token and append it to the queue.\n\tvar token yaml_token_t\n\tif !yaml_parser_scan_tag(parser, &token) {\n\t\treturn false\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the SCALAR(...,literal) or SCALAR(...,folded) tokens.\nfunc yaml_parser_fetch_block_scalar(parser *yaml_parser_t, literal bool) bool {\n\t// Remove any potential simple keys.\n\tif !yaml_parser_remove_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// A simple key may follow a block scalar.\n\tparser.simple_key_allowed = true\n\n\t// Create the SCALAR token and append it to the queue.\n\tvar token yaml_token_t\n\tif !yaml_parser_scan_block_scalar(parser, &token, literal) {\n\t\treturn false\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the SCALAR(...,single-quoted) or SCALAR(...,double-quoted) tokens.\nfunc yaml_parser_fetch_flow_scalar(parser *yaml_parser_t, single bool) bool {\n\t// A plain scalar could be a simple key.\n\tif !yaml_parser_save_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// A simple key cannot follow a flow scalar.\n\tparser.simple_key_allowed = false\n\n\t// Create the SCALAR token and append it to the queue.\n\tvar token yaml_token_t\n\tif !yaml_parser_scan_flow_scalar(parser, &token, single) {\n\t\treturn false\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Produce the SCALAR(...,plain) token.\nfunc yaml_parser_fetch_plain_scalar(parser *yaml_parser_t) bool {\n\t// A plain scalar could be a simple key.\n\tif !yaml_parser_save_simple_key(parser) {\n\t\treturn false\n\t}\n\n\t// A simple key cannot follow a flow scalar.\n\tparser.simple_key_allowed = false\n\n\t// Create the SCALAR token and append it to the queue.\n\tvar token yaml_token_t\n\tif !yaml_parser_scan_plain_scalar(parser, &token) {\n\t\treturn false\n\t}\n\tyaml_insert_token(parser, -1, &token)\n\treturn true\n}\n\n// Eat whitespaces and comments until the next token is found.\nfunc yaml_parser_scan_to_next_token(parser *yaml_parser_t) bool {\n\n\t// Until the next token is not found.\n\tfor {\n\t\t// Allow the BOM mark to start a line.\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t\tif parser.mark.column == 0 && is_bom(parser.buffer, parser.buffer_pos) {\n\t\t\tskip(parser)\n\t\t}\n\n\t\t// Eat whitespaces.\n\t\t// Tabs are allowed:\n\t\t//  - in the flow context\n\t\t//  - in the block context, but not at the beginning of the line or\n\t\t//  after '-', '?', or ':' (complex value).\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\n\t\tfor parser.buffer[parser.buffer_pos] == ' ' || ((parser.flow_level > 0 || !parser.simple_key_allowed) && parser.buffer[parser.buffer_pos] == '\\t') {\n\t\t\tskip(parser)\n\t\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\t// Eat a comment until a line break.\n\t\tif parser.buffer[parser.buffer_pos] == '#' {\n\t\t\tfor !is_breakz(parser.buffer, parser.buffer_pos) {\n\t\t\t\tskip(parser)\n\t\t\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// If it is a line break, eat it.\n\t\tif is_break(parser.buffer, parser.buffer_pos) {\n\t\t\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tskip_line(parser)\n\n\t\t\t// In the block context, a new line may start a simple key.\n\t\t\tif parser.flow_level == 0 {\n\t\t\t\tparser.simple_key_allowed = true\n\t\t\t}\n\t\t} else {\n\t\t\tbreak // We have found a token.\n\t\t}\n\t}\n\n\treturn true\n}\n\n// Scan a YAML-DIRECTIVE or TAG-DIRECTIVE token.\n//\n// Scope:\n//      %YAML    1.1    # a comment \\n\n//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n//      %TAG    !yaml!  tag:yaml.org,2002:  \\n\n//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n//\nfunc yaml_parser_scan_directive(parser *yaml_parser_t, token *yaml_token_t) bool {\n\t// Eat '%'.\n\tstart_mark := parser.mark\n\tskip(parser)\n\n\t// Scan the directive name.\n\tvar name []byte\n\tif !yaml_parser_scan_directive_name(parser, start_mark, &name) {\n\t\treturn false\n\t}\n\n\t// Is it a YAML directive?\n\tif bytes.Equal(name, []byte(\"YAML\")) {\n\t\t// Scan the VERSION directive value.\n\t\tvar major, minor int8\n\t\tif !yaml_parser_scan_version_directive_value(parser, start_mark, &major, &minor) {\n\t\t\treturn false\n\t\t}\n\t\tend_mark := parser.mark\n\n\t\t// Create a VERSION-DIRECTIVE token.\n\t\t*token = yaml_token_t{\n\t\t\ttyp:        yaml_VERSION_DIRECTIVE_TOKEN,\n\t\t\tstart_mark: start_mark,\n\t\t\tend_mark:   end_mark,\n\t\t\tmajor:      major,\n\t\t\tminor:      minor,\n\t\t}\n\n\t\t// Is it a TAG directive?\n\t} else if bytes.Equal(name, []byte(\"TAG\")) {\n\t\t// Scan the TAG directive value.\n\t\tvar handle, prefix []byte\n\t\tif !yaml_parser_scan_tag_directive_value(parser, start_mark, &handle, &prefix) {\n\t\t\treturn false\n\t\t}\n\t\tend_mark := parser.mark\n\n\t\t// Create a TAG-DIRECTIVE token.\n\t\t*token = yaml_token_t{\n\t\t\ttyp:        yaml_TAG_DIRECTIVE_TOKEN,\n\t\t\tstart_mark: start_mark,\n\t\t\tend_mark:   end_mark,\n\t\t\tvalue:      handle,\n\t\t\tprefix:     prefix,\n\t\t}\n\n\t\t// Unknown directive.\n\t} else {\n\t\tyaml_parser_set_scanner_error(parser, \"while scanning a directive\",\n\t\t\tstart_mark, \"found unknown directive name\")\n\t\treturn false\n\t}\n\n\t// Eat the rest of the line including any comments.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\n\tfor is_blank(parser.buffer, parser.buffer_pos) {\n\t\tskip(parser)\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tif parser.buffer[parser.buffer_pos] == '#' {\n\t\tfor !is_breakz(parser.buffer, parser.buffer_pos) {\n\t\t\tskip(parser)\n\t\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check if we are at the end of the line.\n\tif !is_breakz(parser.buffer, parser.buffer_pos) {\n\t\tyaml_parser_set_scanner_error(parser, \"while scanning a directive\",\n\t\t\tstart_mark, \"did not find expected comment or line break\")\n\t\treturn false\n\t}\n\n\t// Eat a line break.\n\tif is_break(parser.buffer, parser.buffer_pos) {\n\t\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\t\treturn false\n\t\t}\n\t\tskip_line(parser)\n\t}\n\n\treturn true\n}\n\n// Scan the directive name.\n//\n// Scope:\n//      %YAML   1.1     # a comment \\n\n//       ^^^^\n//      %TAG    !yaml!  tag:yaml.org,2002:  \\n\n//       ^^^\n//\nfunc yaml_parser_scan_directive_name(parser *yaml_parser_t, start_mark yaml_mark_t, name *[]byte) bool {\n\t// Consume the directive name.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\n\tvar s []byte\n\tfor is_alpha(parser.buffer, parser.buffer_pos) {\n\t\ts = read(parser, s)\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Check if the name is empty.\n\tif len(s) == 0 {\n\t\tyaml_parser_set_scanner_error(parser, \"while scanning a directive\",\n\t\t\tstart_mark, \"could not find expected directive name\")\n\t\treturn false\n\t}\n\n\t// Check for an blank character after the name.\n\tif !is_blankz(parser.buffer, parser.buffer_pos) {\n\t\tyaml_parser_set_scanner_error(parser, \"while scanning a directive\",\n\t\t\tstart_mark, \"found unexpected non-alphabetical character\")\n\t\treturn false\n\t}\n\t*name = s\n\treturn true\n}\n\n// Scan the value of VERSION-DIRECTIVE.\n//\n// Scope:\n//      %YAML   1.1     # a comment \\n\n//           ^^^^^^\nfunc yaml_parser_scan_version_directive_value(parser *yaml_parser_t, start_mark yaml_mark_t, major, minor *int8) bool {\n\t// Eat whitespaces.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\tfor is_blank(parser.buffer, parser.buffer_pos) {\n\t\tskip(parser)\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Consume the major version number.\n\tif !yaml_parser_scan_version_directive_number(parser, start_mark, major) {\n\t\treturn false\n\t}\n\n\t// Eat '.'.\n\tif parser.buffer[parser.buffer_pos] != '.' {\n\t\treturn yaml_parser_set_scanner_error(parser, \"while scanning a %YAML directive\",\n\t\t\tstart_mark, \"did not find expected digit or '.' character\")\n\t}\n\n\tskip(parser)\n\n\t// Consume the minor version number.\n\tif !yaml_parser_scan_version_directive_number(parser, start_mark, minor) {\n\t\treturn false\n\t}\n\treturn true\n}\n\nconst max_number_length = 2\n\n// Scan the version number of VERSION-DIRECTIVE.\n//\n// Scope:\n//      %YAML   1.1     # a comment \\n\n//              ^\n//      %YAML   1.1     # a comment \\n\n//                ^\nfunc yaml_parser_scan_version_directive_number(parser *yaml_parser_t, start_mark yaml_mark_t, number *int8) bool {\n\n\t// Repeat while the next character is digit.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\tvar value, length int8\n\tfor is_digit(parser.buffer, parser.buffer_pos) {\n\t\t// Check if the number is too long.\n\t\tlength++\n\t\tif length > max_number_length {\n\t\t\treturn yaml_parser_set_scanner_error(parser, \"while scanning a %YAML directive\",\n\t\t\t\tstart_mark, \"found extremely long version number\")\n\t\t}\n\t\tvalue = value*10 + int8(as_digit(parser.buffer, parser.buffer_pos))\n\t\tskip(parser)\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Check if the number was present.\n\tif length == 0 {\n\t\treturn yaml_parser_set_scanner_error(parser, \"while scanning a %YAML directive\",\n\t\t\tstart_mark, \"did not find expected version number\")\n\t}\n\t*number = value\n\treturn true\n}\n\n// Scan the value of a TAG-DIRECTIVE token.\n//\n// Scope:\n//      %TAG    !yaml!  tag:yaml.org,2002:  \\n\n//          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n//\nfunc yaml_parser_scan_tag_directive_value(parser *yaml_parser_t, start_mark yaml_mark_t, handle, prefix *[]byte) bool {\n\tvar handle_value, prefix_value []byte\n\n\t// Eat whitespaces.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\n\tfor is_blank(parser.buffer, parser.buffer_pos) {\n\t\tskip(parser)\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Scan a handle.\n\tif !yaml_parser_scan_tag_handle(parser, true, start_mark, &handle_value) {\n\t\treturn false\n\t}\n\n\t// Expect a whitespace.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\tif !is_blank(parser.buffer, parser.buffer_pos) {\n\t\tyaml_parser_set_scanner_error(parser, \"while scanning a %TAG directive\",\n\t\t\tstart_mark, \"did not find expected whitespace\")\n\t\treturn false\n\t}\n\n\t// Eat whitespaces.\n\tfor is_blank(parser.buffer, parser.buffer_pos) {\n\t\tskip(parser)\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Scan a prefix.\n\tif !yaml_parser_scan_tag_uri(parser, true, nil, start_mark, &prefix_value) {\n\t\treturn false\n\t}\n\n\t// Expect a whitespace or line break.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\tif !is_blankz(parser.buffer, parser.buffer_pos) {\n\t\tyaml_parser_set_scanner_error(parser, \"while scanning a %TAG directive\",\n\t\t\tstart_mark, \"did not find expected whitespace or line break\")\n\t\treturn false\n\t}\n\n\t*handle = handle_value\n\t*prefix = prefix_value\n\treturn true\n}\n\nfunc yaml_parser_scan_anchor(parser *yaml_parser_t, token *yaml_token_t, typ yaml_token_type_t) bool {\n\tvar s []byte\n\n\t// Eat the indicator character.\n\tstart_mark := parser.mark\n\tskip(parser)\n\n\t// Consume the value.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\n\tfor is_alpha(parser.buffer, parser.buffer_pos) {\n\t\ts = read(parser, s)\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\tend_mark := parser.mark\n\n\t/*\n\t * Check if length of the anchor is greater than 0 and it is followed by\n\t * a whitespace character or one of the indicators:\n\t *\n\t *      '?', ':', ',', ']', '}', '%', '@', '`'.\n\t */\n\n\tif len(s) == 0 ||\n\t\t!(is_blankz(parser.buffer, parser.buffer_pos) || parser.buffer[parser.buffer_pos] == '?' ||\n\t\t\tparser.buffer[parser.buffer_pos] == ':' || parser.buffer[parser.buffer_pos] == ',' ||\n\t\t\tparser.buffer[parser.buffer_pos] == ']' || parser.buffer[parser.buffer_pos] == '}' ||\n\t\t\tparser.buffer[parser.buffer_pos] == '%' || parser.buffer[parser.buffer_pos] == '@' ||\n\t\t\tparser.buffer[parser.buffer_pos] == '`') {\n\t\tcontext := \"while scanning an alias\"\n\t\tif typ == yaml_ANCHOR_TOKEN {\n\t\t\tcontext = \"while scanning an anchor\"\n\t\t}\n\t\tyaml_parser_set_scanner_error(parser, context, start_mark,\n\t\t\t\"did not find expected alphabetic or numeric character\")\n\t\treturn false\n\t}\n\n\t// Create a token.\n\t*token = yaml_token_t{\n\t\ttyp:        typ,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t\tvalue:      s,\n\t}\n\n\treturn true\n}\n\n/*\n * Scan a TAG token.\n */\n\nfunc yaml_parser_scan_tag(parser *yaml_parser_t, token *yaml_token_t) bool {\n\tvar handle, suffix []byte\n\n\tstart_mark := parser.mark\n\n\t// Check if the tag is in the canonical form.\n\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\treturn false\n\t}\n\n\tif parser.buffer[parser.buffer_pos+1] == '<' {\n\t\t// Keep the handle as ''\n\n\t\t// Eat '!<'\n\t\tskip(parser)\n\t\tskip(parser)\n\n\t\t// Consume the tag value.\n\t\tif !yaml_parser_scan_tag_uri(parser, false, nil, start_mark, &suffix) {\n\t\t\treturn false\n\t\t}\n\n\t\t// Check for '>' and eat it.\n\t\tif parser.buffer[parser.buffer_pos] != '>' {\n\t\t\tyaml_parser_set_scanner_error(parser, \"while scanning a tag\",\n\t\t\t\tstart_mark, \"did not find the expected '>'\")\n\t\t\treturn false\n\t\t}\n\n\t\tskip(parser)\n\t} else {\n\t\t// The tag has either the '!suffix' or the '!handle!suffix' form.\n\n\t\t// First, try to scan a handle.\n\t\tif !yaml_parser_scan_tag_handle(parser, false, start_mark, &handle) {\n\t\t\treturn false\n\t\t}\n\n\t\t// Check if it is, indeed, handle.\n\t\tif handle[0] == '!' && len(handle) > 1 && handle[len(handle)-1] == '!' {\n\t\t\t// Scan the suffix now.\n\t\t\tif !yaml_parser_scan_tag_uri(parser, false, nil, start_mark, &suffix) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t} else {\n\t\t\t// It wasn't a handle after all.  Scan the rest of the tag.\n\t\t\tif !yaml_parser_scan_tag_uri(parser, false, handle, start_mark, &suffix) {\n\t\t\t\treturn false\n\t\t\t}\n\n\t\t\t// Set the handle to '!'.\n\t\t\thandle = []byte{'!'}\n\n\t\t\t// A special case: the '!' tag.  Set the handle to '' and the\n\t\t\t// suffix to '!'.\n\t\t\tif len(suffix) == 0 {\n\t\t\t\thandle, suffix = suffix, handle\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check the character which ends the tag.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\tif !is_blankz(parser.buffer, parser.buffer_pos) {\n\t\tyaml_parser_set_scanner_error(parser, \"while scanning a tag\",\n\t\t\tstart_mark, \"did not find expected whitespace or line break\")\n\t\treturn false\n\t}\n\n\tend_mark := parser.mark\n\n\t// Create a token.\n\t*token = yaml_token_t{\n\t\ttyp:        yaml_TAG_TOKEN,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t\tvalue:      handle,\n\t\tsuffix:     suffix,\n\t}\n\treturn true\n}\n\n// Scan a tag handle.\nfunc yaml_parser_scan_tag_handle(parser *yaml_parser_t, directive bool, start_mark yaml_mark_t, handle *[]byte) bool {\n\t// Check the initial '!' character.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\tif parser.buffer[parser.buffer_pos] != '!' {\n\t\tyaml_parser_set_scanner_tag_error(parser, directive,\n\t\t\tstart_mark, \"did not find expected '!'\")\n\t\treturn false\n\t}\n\n\tvar s []byte\n\n\t// Copy the '!' character.\n\ts = read(parser, s)\n\n\t// Copy all subsequent alphabetical and numerical characters.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\tfor is_alpha(parser.buffer, parser.buffer_pos) {\n\t\ts = read(parser, s)\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Check if the trailing character is '!' and copy it.\n\tif parser.buffer[parser.buffer_pos] == '!' {\n\t\ts = read(parser, s)\n\t} else {\n\t\t// It's either the '!' tag or not really a tag handle.  If it's a %TAG\n\t\t// directive, it's an error.  If it's a tag token, it must be a part of URI.\n\t\tif directive && string(s) != \"!\" {\n\t\t\tyaml_parser_set_scanner_tag_error(parser, directive,\n\t\t\t\tstart_mark, \"did not find expected '!'\")\n\t\t\treturn false\n\t\t}\n\t}\n\n\t*handle = s\n\treturn true\n}\n\n// Scan a tag.\nfunc yaml_parser_scan_tag_uri(parser *yaml_parser_t, directive bool, head []byte, start_mark yaml_mark_t, uri *[]byte) bool {\n\t//size_t length = head ? strlen((char *)head) : 0\n\tvar s []byte\n\thasTag := len(head) > 0\n\n\t// Copy the head if needed.\n\t//\n\t// Note that we don't copy the leading '!' character.\n\tif len(head) > 1 {\n\t\ts = append(s, head[1:]...)\n\t}\n\n\t// Scan the tag.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\n\t// The set of characters that may appear in URI is as follows:\n\t//\n\t//      '0'-'9', 'A'-'Z', 'a'-'z', '_', '-', ';', '/', '?', ':', '@', '&',\n\t//      '=', '+', '$', ',', '.', '!', '~', '*', '\\'', '(', ')', '[', ']',\n\t//      '%'.\n\t// [Go] Convert this into more reasonable logic.\n\tfor is_alpha(parser.buffer, parser.buffer_pos) || parser.buffer[parser.buffer_pos] == ';' ||\n\t\tparser.buffer[parser.buffer_pos] == '/' || parser.buffer[parser.buffer_pos] == '?' ||\n\t\tparser.buffer[parser.buffer_pos] == ':' || parser.buffer[parser.buffer_pos] == '@' ||\n\t\tparser.buffer[parser.buffer_pos] == '&' || parser.buffer[parser.buffer_pos] == '=' ||\n\t\tparser.buffer[parser.buffer_pos] == '+' || parser.buffer[parser.buffer_pos] == '$' ||\n\t\tparser.buffer[parser.buffer_pos] == ',' || parser.buffer[parser.buffer_pos] == '.' ||\n\t\tparser.buffer[parser.buffer_pos] == '!' || parser.buffer[parser.buffer_pos] == '~' ||\n\t\tparser.buffer[parser.buffer_pos] == '*' || parser.buffer[parser.buffer_pos] == '\\'' ||\n\t\tparser.buffer[parser.buffer_pos] == '(' || parser.buffer[parser.buffer_pos] == ')' ||\n\t\tparser.buffer[parser.buffer_pos] == '[' || parser.buffer[parser.buffer_pos] == ']' ||\n\t\tparser.buffer[parser.buffer_pos] == '%' {\n\t\t// Check if it is a URI-escape sequence.\n\t\tif parser.buffer[parser.buffer_pos] == '%' {\n\t\t\tif !yaml_parser_scan_uri_escapes(parser, directive, start_mark, &s) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t} else {\n\t\t\ts = read(parser, s)\n\t\t}\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t\thasTag = true\n\t}\n\n\tif !hasTag {\n\t\tyaml_parser_set_scanner_tag_error(parser, directive,\n\t\t\tstart_mark, \"did not find expected tag URI\")\n\t\treturn false\n\t}\n\t*uri = s\n\treturn true\n}\n\n// Decode an URI-escape sequence corresponding to a single UTF-8 character.\nfunc yaml_parser_scan_uri_escapes(parser *yaml_parser_t, directive bool, start_mark yaml_mark_t, s *[]byte) bool {\n\n\t// Decode the required number of characters.\n\tw := 1024\n\tfor w > 0 {\n\t\t// Check for a URI-escaped octet.\n\t\tif parser.unread < 3 && !yaml_parser_update_buffer(parser, 3) {\n\t\t\treturn false\n\t\t}\n\n\t\tif !(parser.buffer[parser.buffer_pos] == '%' &&\n\t\t\tis_hex(parser.buffer, parser.buffer_pos+1) &&\n\t\t\tis_hex(parser.buffer, parser.buffer_pos+2)) {\n\t\t\treturn yaml_parser_set_scanner_tag_error(parser, directive,\n\t\t\t\tstart_mark, \"did not find URI escaped octet\")\n\t\t}\n\n\t\t// Get the octet.\n\t\toctet := byte((as_hex(parser.buffer, parser.buffer_pos+1) << 4) + as_hex(parser.buffer, parser.buffer_pos+2))\n\n\t\t// If it is the leading octet, determine the length of the UTF-8 sequence.\n\t\tif w == 1024 {\n\t\t\tw = width(octet)\n\t\t\tif w == 0 {\n\t\t\t\treturn yaml_parser_set_scanner_tag_error(parser, directive,\n\t\t\t\t\tstart_mark, \"found an incorrect leading UTF-8 octet\")\n\t\t\t}\n\t\t} else {\n\t\t\t// Check if the trailing octet is correct.\n\t\t\tif octet&0xC0 != 0x80 {\n\t\t\t\treturn yaml_parser_set_scanner_tag_error(parser, directive,\n\t\t\t\t\tstart_mark, \"found an incorrect trailing UTF-8 octet\")\n\t\t\t}\n\t\t}\n\n\t\t// Copy the octet and move the pointers.\n\t\t*s = append(*s, octet)\n\t\tskip(parser)\n\t\tskip(parser)\n\t\tskip(parser)\n\t\tw--\n\t}\n\treturn true\n}\n\n// Scan a block scalar.\nfunc yaml_parser_scan_block_scalar(parser *yaml_parser_t, token *yaml_token_t, literal bool) bool {\n\t// Eat the indicator '|' or '>'.\n\tstart_mark := parser.mark\n\tskip(parser)\n\n\t// Scan the additional block scalar indicators.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\n\t// Check for a chomping indicator.\n\tvar chomping, increment int\n\tif parser.buffer[parser.buffer_pos] == '+' || parser.buffer[parser.buffer_pos] == '-' {\n\t\t// Set the chomping method and eat the indicator.\n\t\tif parser.buffer[parser.buffer_pos] == '+' {\n\t\t\tchomping = +1\n\t\t} else {\n\t\t\tchomping = -1\n\t\t}\n\t\tskip(parser)\n\n\t\t// Check for an indentation indicator.\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t\tif is_digit(parser.buffer, parser.buffer_pos) {\n\t\t\t// Check that the indentation is greater than 0.\n\t\t\tif parser.buffer[parser.buffer_pos] == '0' {\n\t\t\t\tyaml_parser_set_scanner_error(parser, \"while scanning a block scalar\",\n\t\t\t\t\tstart_mark, \"found an indentation indicator equal to 0\")\n\t\t\t\treturn false\n\t\t\t}\n\n\t\t\t// Get the indentation level and eat the indicator.\n\t\t\tincrement = as_digit(parser.buffer, parser.buffer_pos)\n\t\t\tskip(parser)\n\t\t}\n\n\t} else if is_digit(parser.buffer, parser.buffer_pos) {\n\t\t// Do the same as above, but in the opposite order.\n\n\t\tif parser.buffer[parser.buffer_pos] == '0' {\n\t\t\tyaml_parser_set_scanner_error(parser, \"while scanning a block scalar\",\n\t\t\t\tstart_mark, \"found an indentation indicator equal to 0\")\n\t\t\treturn false\n\t\t}\n\t\tincrement = as_digit(parser.buffer, parser.buffer_pos)\n\t\tskip(parser)\n\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t\tif parser.buffer[parser.buffer_pos] == '+' || parser.buffer[parser.buffer_pos] == '-' {\n\t\t\tif parser.buffer[parser.buffer_pos] == '+' {\n\t\t\t\tchomping = +1\n\t\t\t} else {\n\t\t\t\tchomping = -1\n\t\t\t}\n\t\t\tskip(parser)\n\t\t}\n\t}\n\n\t// Eat whitespaces and comments to the end of the line.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\tfor is_blank(parser.buffer, parser.buffer_pos) {\n\t\tskip(parser)\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t}\n\tif parser.buffer[parser.buffer_pos] == '#' {\n\t\tfor !is_breakz(parser.buffer, parser.buffer_pos) {\n\t\t\tskip(parser)\n\t\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check if we are at the end of the line.\n\tif !is_breakz(parser.buffer, parser.buffer_pos) {\n\t\tyaml_parser_set_scanner_error(parser, \"while scanning a block scalar\",\n\t\t\tstart_mark, \"did not find expected comment or line break\")\n\t\treturn false\n\t}\n\n\t// Eat a line break.\n\tif is_break(parser.buffer, parser.buffer_pos) {\n\t\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\t\treturn false\n\t\t}\n\t\tskip_line(parser)\n\t}\n\n\tend_mark := parser.mark\n\n\t// Set the indentation level if it was specified.\n\tvar indent int\n\tif increment > 0 {\n\t\tif parser.indent >= 0 {\n\t\t\tindent = parser.indent + increment\n\t\t} else {\n\t\t\tindent = increment\n\t\t}\n\t}\n\n\t// Scan the leading line breaks and determine the indentation level if needed.\n\tvar s, leading_break, trailing_breaks []byte\n\tif !yaml_parser_scan_block_scalar_breaks(parser, &indent, &trailing_breaks, start_mark, &end_mark) {\n\t\treturn false\n\t}\n\n\t// Scan the block scalar content.\n\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\treturn false\n\t}\n\tvar leading_blank, trailing_blank bool\n\tfor parser.mark.column == indent && !is_z(parser.buffer, parser.buffer_pos) {\n\t\t// We are at the beginning of a non-empty line.\n\n\t\t// Is it a trailing whitespace?\n\t\ttrailing_blank = is_blank(parser.buffer, parser.buffer_pos)\n\n\t\t// Check if we need to fold the leading line break.\n\t\tif !literal && !leading_blank && !trailing_blank && len(leading_break) > 0 && leading_break[0] == '\\n' {\n\t\t\t// Do we need to join the lines by space?\n\t\t\tif len(trailing_breaks) == 0 {\n\t\t\t\ts = append(s, ' ')\n\t\t\t}\n\t\t} else {\n\t\t\ts = append(s, leading_break...)\n\t\t}\n\t\tleading_break = leading_break[:0]\n\n\t\t// Append the remaining line breaks.\n\t\ts = append(s, trailing_breaks...)\n\t\ttrailing_breaks = trailing_breaks[:0]\n\n\t\t// Is it a leading whitespace?\n\t\tleading_blank = is_blank(parser.buffer, parser.buffer_pos)\n\n\t\t// Consume the current line.\n\t\tfor !is_breakz(parser.buffer, parser.buffer_pos) {\n\t\t\ts = read(parser, s)\n\t\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\t// Consume the line break.\n\t\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\t\treturn false\n\t\t}\n\n\t\tleading_break = read_line(parser, leading_break)\n\n\t\t// Eat the following indentation spaces and line breaks.\n\t\tif !yaml_parser_scan_block_scalar_breaks(parser, &indent, &trailing_breaks, start_mark, &end_mark) {\n\t\t\treturn false\n\t\t}\n\t}\n\n\t// Chomp the tail.\n\tif chomping != -1 {\n\t\ts = append(s, leading_break...)\n\t}\n\tif chomping == 1 {\n\t\ts = append(s, trailing_breaks...)\n\t}\n\n\t// Create a token.\n\t*token = yaml_token_t{\n\t\ttyp:        yaml_SCALAR_TOKEN,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t\tvalue:      s,\n\t\tstyle:      yaml_LITERAL_SCALAR_STYLE,\n\t}\n\tif !literal {\n\t\ttoken.style = yaml_FOLDED_SCALAR_STYLE\n\t}\n\treturn true\n}\n\n// Scan indentation spaces and line breaks for a block scalar.  Determine the\n// indentation level if needed.\nfunc yaml_parser_scan_block_scalar_breaks(parser *yaml_parser_t, indent *int, breaks *[]byte, start_mark yaml_mark_t, end_mark *yaml_mark_t) bool {\n\t*end_mark = parser.mark\n\n\t// Eat the indentation spaces and line breaks.\n\tmax_indent := 0\n\tfor {\n\t\t// Eat the indentation spaces.\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\t\tfor (*indent == 0 || parser.mark.column < *indent) && is_space(parser.buffer, parser.buffer_pos) {\n\t\t\tskip(parser)\n\t\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif parser.mark.column > max_indent {\n\t\t\tmax_indent = parser.mark.column\n\t\t}\n\n\t\t// Check for a tab character messing the indentation.\n\t\tif (*indent == 0 || parser.mark.column < *indent) && is_tab(parser.buffer, parser.buffer_pos) {\n\t\t\treturn yaml_parser_set_scanner_error(parser, \"while scanning a block scalar\",\n\t\t\t\tstart_mark, \"found a tab character where an indentation space is expected\")\n\t\t}\n\n\t\t// Have we found a non-empty line?\n\t\tif !is_break(parser.buffer, parser.buffer_pos) {\n\t\t\tbreak\n\t\t}\n\n\t\t// Consume the line break.\n\t\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\t\treturn false\n\t\t}\n\t\t// [Go] Should really be returning breaks instead.\n\t\t*breaks = read_line(parser, *breaks)\n\t\t*end_mark = parser.mark\n\t}\n\n\t// Determine the indentation level if needed.\n\tif *indent == 0 {\n\t\t*indent = max_indent\n\t\tif *indent < parser.indent+1 {\n\t\t\t*indent = parser.indent + 1\n\t\t}\n\t\tif *indent < 1 {\n\t\t\t*indent = 1\n\t\t}\n\t}\n\treturn true\n}\n\n// Scan a quoted scalar.\nfunc yaml_parser_scan_flow_scalar(parser *yaml_parser_t, token *yaml_token_t, single bool) bool {\n\t// Eat the left quote.\n\tstart_mark := parser.mark\n\tskip(parser)\n\n\t// Consume the content of the quoted scalar.\n\tvar s, leading_break, trailing_breaks, whitespaces []byte\n\tfor {\n\t\t// Check that there are no document indicators at the beginning of the line.\n\t\tif parser.unread < 4 && !yaml_parser_update_buffer(parser, 4) {\n\t\t\treturn false\n\t\t}\n\n\t\tif parser.mark.column == 0 &&\n\t\t\t((parser.buffer[parser.buffer_pos+0] == '-' &&\n\t\t\t\tparser.buffer[parser.buffer_pos+1] == '-' &&\n\t\t\t\tparser.buffer[parser.buffer_pos+2] == '-') ||\n\t\t\t\t(parser.buffer[parser.buffer_pos+0] == '.' &&\n\t\t\t\t\tparser.buffer[parser.buffer_pos+1] == '.' &&\n\t\t\t\t\tparser.buffer[parser.buffer_pos+2] == '.')) &&\n\t\t\tis_blankz(parser.buffer, parser.buffer_pos+3) {\n\t\t\tyaml_parser_set_scanner_error(parser, \"while scanning a quoted scalar\",\n\t\t\t\tstart_mark, \"found unexpected document indicator\")\n\t\t\treturn false\n\t\t}\n\n\t\t// Check for EOF.\n\t\tif is_z(parser.buffer, parser.buffer_pos) {\n\t\t\tyaml_parser_set_scanner_error(parser, \"while scanning a quoted scalar\",\n\t\t\t\tstart_mark, \"found unexpected end of stream\")\n\t\t\treturn false\n\t\t}\n\n\t\t// Consume non-blank characters.\n\t\tleading_blanks := false\n\t\tfor !is_blankz(parser.buffer, parser.buffer_pos) {\n\t\t\tif single && parser.buffer[parser.buffer_pos] == '\\'' && parser.buffer[parser.buffer_pos+1] == '\\'' {\n\t\t\t\t// Is is an escaped single quote.\n\t\t\t\ts = append(s, '\\'')\n\t\t\t\tskip(parser)\n\t\t\t\tskip(parser)\n\n\t\t\t} else if single && parser.buffer[parser.buffer_pos] == '\\'' {\n\t\t\t\t// It is a right single quote.\n\t\t\t\tbreak\n\t\t\t} else if !single && parser.buffer[parser.buffer_pos] == '\"' {\n\t\t\t\t// It is a right double quote.\n\t\t\t\tbreak\n\n\t\t\t} else if !single && parser.buffer[parser.buffer_pos] == '\\\\' && is_break(parser.buffer, parser.buffer_pos+1) {\n\t\t\t\t// It is an escaped line break.\n\t\t\t\tif parser.unread < 3 && !yaml_parser_update_buffer(parser, 3) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tskip(parser)\n\t\t\t\tskip_line(parser)\n\t\t\t\tleading_blanks = true\n\t\t\t\tbreak\n\n\t\t\t} else if !single && parser.buffer[parser.buffer_pos] == '\\\\' {\n\t\t\t\t// It is an escape sequence.\n\t\t\t\tcode_length := 0\n\n\t\t\t\t// Check the escape character.\n\t\t\t\tswitch parser.buffer[parser.buffer_pos+1] {\n\t\t\t\tcase '0':\n\t\t\t\t\ts = append(s, 0)\n\t\t\t\tcase 'a':\n\t\t\t\t\ts = append(s, '\\x07')\n\t\t\t\tcase 'b':\n\t\t\t\t\ts = append(s, '\\x08')\n\t\t\t\tcase 't', '\\t':\n\t\t\t\t\ts = append(s, '\\x09')\n\t\t\t\tcase 'n':\n\t\t\t\t\ts = append(s, '\\x0A')\n\t\t\t\tcase 'v':\n\t\t\t\t\ts = append(s, '\\x0B')\n\t\t\t\tcase 'f':\n\t\t\t\t\ts = append(s, '\\x0C')\n\t\t\t\tcase 'r':\n\t\t\t\t\ts = append(s, '\\x0D')\n\t\t\t\tcase 'e':\n\t\t\t\t\ts = append(s, '\\x1B')\n\t\t\t\tcase ' ':\n\t\t\t\t\ts = append(s, '\\x20')\n\t\t\t\tcase '\"':\n\t\t\t\t\ts = append(s, '\"')\n\t\t\t\tcase '\\'':\n\t\t\t\t\ts = append(s, '\\'')\n\t\t\t\tcase '\\\\':\n\t\t\t\t\ts = append(s, '\\\\')\n\t\t\t\tcase 'N': // NEL (#x85)\n\t\t\t\t\ts = append(s, '\\xC2')\n\t\t\t\t\ts = append(s, '\\x85')\n\t\t\t\tcase '_': // #xA0\n\t\t\t\t\ts = append(s, '\\xC2')\n\t\t\t\t\ts = append(s, '\\xA0')\n\t\t\t\tcase 'L': // LS (#x2028)\n\t\t\t\t\ts = append(s, '\\xE2')\n\t\t\t\t\ts = append(s, '\\x80')\n\t\t\t\t\ts = append(s, '\\xA8')\n\t\t\t\tcase 'P': // PS (#x2029)\n\t\t\t\t\ts = append(s, '\\xE2')\n\t\t\t\t\ts = append(s, '\\x80')\n\t\t\t\t\ts = append(s, '\\xA9')\n\t\t\t\tcase 'x':\n\t\t\t\t\tcode_length = 2\n\t\t\t\tcase 'u':\n\t\t\t\t\tcode_length = 4\n\t\t\t\tcase 'U':\n\t\t\t\t\tcode_length = 8\n\t\t\t\tdefault:\n\t\t\t\t\tyaml_parser_set_scanner_error(parser, \"while parsing a quoted scalar\",\n\t\t\t\t\t\tstart_mark, \"found unknown escape character\")\n\t\t\t\t\treturn false\n\t\t\t\t}\n\n\t\t\t\tskip(parser)\n\t\t\t\tskip(parser)\n\n\t\t\t\t// Consume an arbitrary escape code.\n\t\t\t\tif code_length > 0 {\n\t\t\t\t\tvar value int\n\n\t\t\t\t\t// Scan the character value.\n\t\t\t\t\tif parser.unread < code_length && !yaml_parser_update_buffer(parser, code_length) {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\tfor k := 0; k < code_length; k++ {\n\t\t\t\t\t\tif !is_hex(parser.buffer, parser.buffer_pos+k) {\n\t\t\t\t\t\t\tyaml_parser_set_scanner_error(parser, \"while parsing a quoted scalar\",\n\t\t\t\t\t\t\t\tstart_mark, \"did not find expected hexdecimal number\")\n\t\t\t\t\t\t\treturn false\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvalue = (value << 4) + as_hex(parser.buffer, parser.buffer_pos+k)\n\t\t\t\t\t}\n\n\t\t\t\t\t// Check the value and write the character.\n\t\t\t\t\tif (value >= 0xD800 && value <= 0xDFFF) || value > 0x10FFFF {\n\t\t\t\t\t\tyaml_parser_set_scanner_error(parser, \"while parsing a quoted scalar\",\n\t\t\t\t\t\t\tstart_mark, \"found invalid Unicode character escape code\")\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\tif value <= 0x7F {\n\t\t\t\t\t\ts = append(s, byte(value))\n\t\t\t\t\t} else if value <= 0x7FF {\n\t\t\t\t\t\ts = append(s, byte(0xC0+(value>>6)))\n\t\t\t\t\t\ts = append(s, byte(0x80+(value&0x3F)))\n\t\t\t\t\t} else if value <= 0xFFFF {\n\t\t\t\t\t\ts = append(s, byte(0xE0+(value>>12)))\n\t\t\t\t\t\ts = append(s, byte(0x80+((value>>6)&0x3F)))\n\t\t\t\t\t\ts = append(s, byte(0x80+(value&0x3F)))\n\t\t\t\t\t} else {\n\t\t\t\t\t\ts = append(s, byte(0xF0+(value>>18)))\n\t\t\t\t\t\ts = append(s, byte(0x80+((value>>12)&0x3F)))\n\t\t\t\t\t\ts = append(s, byte(0x80+((value>>6)&0x3F)))\n\t\t\t\t\t\ts = append(s, byte(0x80+(value&0x3F)))\n\t\t\t\t\t}\n\n\t\t\t\t\t// Advance the pointer.\n\t\t\t\t\tfor k := 0; k < code_length; k++ {\n\t\t\t\t\t\tskip(parser)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// It is a non-escaped non-blank character.\n\t\t\t\ts = read(parser, s)\n\t\t\t}\n\t\t\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\n\t\t// Check if we are at the end of the scalar.\n\t\tif single {\n\t\t\tif parser.buffer[parser.buffer_pos] == '\\'' {\n\t\t\t\tbreak\n\t\t\t}\n\t\t} else {\n\t\t\tif parser.buffer[parser.buffer_pos] == '\"' {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\t// Consume blank characters.\n\t\tfor is_blank(parser.buffer, parser.buffer_pos) || is_break(parser.buffer, parser.buffer_pos) {\n\t\t\tif is_blank(parser.buffer, parser.buffer_pos) {\n\t\t\t\t// Consume a space or a tab character.\n\t\t\t\tif !leading_blanks {\n\t\t\t\t\twhitespaces = read(parser, whitespaces)\n\t\t\t\t} else {\n\t\t\t\t\tskip(parser)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\n\t\t\t\t// Check if it is a first line break.\n\t\t\t\tif !leading_blanks {\n\t\t\t\t\twhitespaces = whitespaces[:0]\n\t\t\t\t\tleading_break = read_line(parser, leading_break)\n\t\t\t\t\tleading_blanks = true\n\t\t\t\t} else {\n\t\t\t\t\ttrailing_breaks = read_line(parser, trailing_breaks)\n\t\t\t\t}\n\t\t\t}\n\t\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\t// Join the whitespaces or fold line breaks.\n\t\tif leading_blanks {\n\t\t\t// Do we need to fold line breaks?\n\t\t\tif len(leading_break) > 0 && leading_break[0] == '\\n' {\n\t\t\t\tif len(trailing_breaks) == 0 {\n\t\t\t\t\ts = append(s, ' ')\n\t\t\t\t} else {\n\t\t\t\t\ts = append(s, trailing_breaks...)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\ts = append(s, leading_break...)\n\t\t\t\ts = append(s, trailing_breaks...)\n\t\t\t}\n\t\t\ttrailing_breaks = trailing_breaks[:0]\n\t\t\tleading_break = leading_break[:0]\n\t\t} else {\n\t\t\ts = append(s, whitespaces...)\n\t\t\twhitespaces = whitespaces[:0]\n\t\t}\n\t}\n\n\t// Eat the right quote.\n\tskip(parser)\n\tend_mark := parser.mark\n\n\t// Create a token.\n\t*token = yaml_token_t{\n\t\ttyp:        yaml_SCALAR_TOKEN,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t\tvalue:      s,\n\t\tstyle:      yaml_SINGLE_QUOTED_SCALAR_STYLE,\n\t}\n\tif !single {\n\t\ttoken.style = yaml_DOUBLE_QUOTED_SCALAR_STYLE\n\t}\n\treturn true\n}\n\n// Scan a plain scalar.\nfunc yaml_parser_scan_plain_scalar(parser *yaml_parser_t, token *yaml_token_t) bool {\n\n\tvar s, leading_break, trailing_breaks, whitespaces []byte\n\tvar leading_blanks bool\n\tvar indent = parser.indent + 1\n\n\tstart_mark := parser.mark\n\tend_mark := parser.mark\n\n\t// Consume the content of the plain scalar.\n\tfor {\n\t\t// Check for a document indicator.\n\t\tif parser.unread < 4 && !yaml_parser_update_buffer(parser, 4) {\n\t\t\treturn false\n\t\t}\n\t\tif parser.mark.column == 0 &&\n\t\t\t((parser.buffer[parser.buffer_pos+0] == '-' &&\n\t\t\t\tparser.buffer[parser.buffer_pos+1] == '-' &&\n\t\t\t\tparser.buffer[parser.buffer_pos+2] == '-') ||\n\t\t\t\t(parser.buffer[parser.buffer_pos+0] == '.' &&\n\t\t\t\t\tparser.buffer[parser.buffer_pos+1] == '.' &&\n\t\t\t\t\tparser.buffer[parser.buffer_pos+2] == '.')) &&\n\t\t\tis_blankz(parser.buffer, parser.buffer_pos+3) {\n\t\t\tbreak\n\t\t}\n\n\t\t// Check for a comment.\n\t\tif parser.buffer[parser.buffer_pos] == '#' {\n\t\t\tbreak\n\t\t}\n\n\t\t// Consume non-blank characters.\n\t\tfor !is_blankz(parser.buffer, parser.buffer_pos) {\n\n\t\t\t// Check for indicators that may end a plain scalar.\n\t\t\tif (parser.buffer[parser.buffer_pos] == ':' && is_blankz(parser.buffer, parser.buffer_pos+1)) ||\n\t\t\t\t(parser.flow_level > 0 &&\n\t\t\t\t\t(parser.buffer[parser.buffer_pos] == ',' ||\n\t\t\t\t\t\tparser.buffer[parser.buffer_pos] == '?' || parser.buffer[parser.buffer_pos] == '[' ||\n\t\t\t\t\t\tparser.buffer[parser.buffer_pos] == ']' || parser.buffer[parser.buffer_pos] == '{' ||\n\t\t\t\t\t\tparser.buffer[parser.buffer_pos] == '}')) {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// Check if we need to join whitespaces and breaks.\n\t\t\tif leading_blanks || len(whitespaces) > 0 {\n\t\t\t\tif leading_blanks {\n\t\t\t\t\t// Do we need to fold line breaks?\n\t\t\t\t\tif leading_break[0] == '\\n' {\n\t\t\t\t\t\tif len(trailing_breaks) == 0 {\n\t\t\t\t\t\t\ts = append(s, ' ')\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ts = append(s, trailing_breaks...)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\ts = append(s, leading_break...)\n\t\t\t\t\t\ts = append(s, trailing_breaks...)\n\t\t\t\t\t}\n\t\t\t\t\ttrailing_breaks = trailing_breaks[:0]\n\t\t\t\t\tleading_break = leading_break[:0]\n\t\t\t\t\tleading_blanks = false\n\t\t\t\t} else {\n\t\t\t\t\ts = append(s, whitespaces...)\n\t\t\t\t\twhitespaces = whitespaces[:0]\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Copy the character.\n\t\t\ts = read(parser, s)\n\n\t\t\tend_mark = parser.mark\n\t\t\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\t// Is it the end?\n\t\tif !(is_blank(parser.buffer, parser.buffer_pos) || is_break(parser.buffer, parser.buffer_pos)) {\n\t\t\tbreak\n\t\t}\n\n\t\t// Consume blank characters.\n\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\treturn false\n\t\t}\n\n\t\tfor is_blank(parser.buffer, parser.buffer_pos) || is_break(parser.buffer, parser.buffer_pos) {\n\t\t\tif is_blank(parser.buffer, parser.buffer_pos) {\n\n\t\t\t\t// Check for tab characters that abuse indentation.\n\t\t\t\tif leading_blanks && parser.mark.column < indent && is_tab(parser.buffer, parser.buffer_pos) {\n\t\t\t\t\tyaml_parser_set_scanner_error(parser, \"while scanning a plain scalar\",\n\t\t\t\t\t\tstart_mark, \"found a tab character that violates indentation\")\n\t\t\t\t\treturn false\n\t\t\t\t}\n\n\t\t\t\t// Consume a space or a tab character.\n\t\t\t\tif !leading_blanks {\n\t\t\t\t\twhitespaces = read(parser, whitespaces)\n\t\t\t\t} else {\n\t\t\t\t\tskip(parser)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif parser.unread < 2 && !yaml_parser_update_buffer(parser, 2) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\n\t\t\t\t// Check if it is a first line break.\n\t\t\t\tif !leading_blanks {\n\t\t\t\t\twhitespaces = whitespaces[:0]\n\t\t\t\t\tleading_break = read_line(parser, leading_break)\n\t\t\t\t\tleading_blanks = true\n\t\t\t\t} else {\n\t\t\t\t\ttrailing_breaks = read_line(parser, trailing_breaks)\n\t\t\t\t}\n\t\t\t}\n\t\t\tif parser.unread < 1 && !yaml_parser_update_buffer(parser, 1) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\n\t\t// Check indentation level.\n\t\tif parser.flow_level == 0 && parser.mark.column < indent {\n\t\t\tbreak\n\t\t}\n\t}\n\n\t// Create a token.\n\t*token = yaml_token_t{\n\t\ttyp:        yaml_SCALAR_TOKEN,\n\t\tstart_mark: start_mark,\n\t\tend_mark:   end_mark,\n\t\tvalue:      s,\n\t\tstyle:      yaml_PLAIN_SCALAR_STYLE,\n\t}\n\n\t// Note that we change the 'simple_key_allowed' flag.\n\tif leading_blanks {\n\t\tparser.simple_key_allowed = true\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/sorter.go",
    "content": "package yaml\n\nimport (\n\t\"reflect\"\n\t\"unicode\"\n)\n\ntype keyList []reflect.Value\n\nfunc (l keyList) Len() int      { return len(l) }\nfunc (l keyList) Swap(i, j int) { l[i], l[j] = l[j], l[i] }\nfunc (l keyList) Less(i, j int) bool {\n\ta := l[i]\n\tb := l[j]\n\tak := a.Kind()\n\tbk := b.Kind()\n\tfor (ak == reflect.Interface || ak == reflect.Ptr) && !a.IsNil() {\n\t\ta = a.Elem()\n\t\tak = a.Kind()\n\t}\n\tfor (bk == reflect.Interface || bk == reflect.Ptr) && !b.IsNil() {\n\t\tb = b.Elem()\n\t\tbk = b.Kind()\n\t}\n\taf, aok := keyFloat(a)\n\tbf, bok := keyFloat(b)\n\tif aok && bok {\n\t\tif af != bf {\n\t\t\treturn af < bf\n\t\t}\n\t\tif ak != bk {\n\t\t\treturn ak < bk\n\t\t}\n\t\treturn numLess(a, b)\n\t}\n\tif ak != reflect.String || bk != reflect.String {\n\t\treturn ak < bk\n\t}\n\tar, br := []rune(a.String()), []rune(b.String())\n\tfor i := 0; i < len(ar) && i < len(br); i++ {\n\t\tif ar[i] == br[i] {\n\t\t\tcontinue\n\t\t}\n\t\tal := unicode.IsLetter(ar[i])\n\t\tbl := unicode.IsLetter(br[i])\n\t\tif al && bl {\n\t\t\treturn ar[i] < br[i]\n\t\t}\n\t\tif al || bl {\n\t\t\treturn bl\n\t\t}\n\t\tvar ai, bi int\n\t\tvar an, bn int64\n\t\tif ar[i] == '0' || br[i] == '0' {\n\t\t\tfor j := i-1; j >= 0 && unicode.IsDigit(ar[j]); j-- {\n\t\t\t\tif ar[j] != '0' {\n\t\t\t\t\tan = 1\n\t\t\t\t\tbn = 1\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tfor ai = i; ai < len(ar) && unicode.IsDigit(ar[ai]); ai++ {\n\t\t\tan = an*10 + int64(ar[ai]-'0')\n\t\t}\n\t\tfor bi = i; bi < len(br) && unicode.IsDigit(br[bi]); bi++ {\n\t\t\tbn = bn*10 + int64(br[bi]-'0')\n\t\t}\n\t\tif an != bn {\n\t\t\treturn an < bn\n\t\t}\n\t\tif ai != bi {\n\t\t\treturn ai < bi\n\t\t}\n\t\treturn ar[i] < br[i]\n\t}\n\treturn len(ar) < len(br)\n}\n\n// keyFloat returns a float value for v if it is a number/bool\n// and whether it is a number/bool or not.\nfunc keyFloat(v reflect.Value) (f float64, ok bool) {\n\tswitch v.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn float64(v.Int()), true\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn v.Float(), true\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn float64(v.Uint()), true\n\tcase reflect.Bool:\n\t\tif v.Bool() {\n\t\t\treturn 1, true\n\t\t}\n\t\treturn 0, true\n\t}\n\treturn 0, false\n}\n\n// numLess returns whether a < b.\n// a and b must necessarily have the same kind.\nfunc numLess(a, b reflect.Value) bool {\n\tswitch a.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn a.Int() < b.Int()\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn a.Float() < b.Float()\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn a.Uint() < b.Uint()\n\tcase reflect.Bool:\n\t\treturn !a.Bool() && b.Bool()\n\t}\n\tpanic(\"not a number\")\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/writerc.go",
    "content": "package yaml\n\n// Set the writer error and return false.\nfunc yaml_emitter_set_writer_error(emitter *yaml_emitter_t, problem string) bool {\n\temitter.error = yaml_WRITER_ERROR\n\temitter.problem = problem\n\treturn false\n}\n\n// Flush the output buffer.\nfunc yaml_emitter_flush(emitter *yaml_emitter_t) bool {\n\tif emitter.write_handler == nil {\n\t\tpanic(\"write handler not set\")\n\t}\n\n\t// Check if the buffer is empty.\n\tif emitter.buffer_pos == 0 {\n\t\treturn true\n\t}\n\n\tif err := emitter.write_handler(emitter, emitter.buffer[:emitter.buffer_pos]); err != nil {\n\t\treturn yaml_emitter_set_writer_error(emitter, \"write error: \"+err.Error())\n\t}\n\temitter.buffer_pos = 0\n\treturn true\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/yaml.go",
    "content": "// Package yaml implements YAML support for the Go language.\n//\n// Source code and other details for the project are available at GitHub:\n//\n//   https://github.com/go-yaml/yaml\n//\npackage yaml\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"reflect\"\n\t\"strings\"\n\t\"sync\"\n)\n\n// MapSlice encodes and decodes as a YAML map.\n// The order of keys is preserved when encoding and decoding.\ntype MapSlice []MapItem\n\n// MapItem is an item in a MapSlice.\ntype MapItem struct {\n\tKey, Value interface{}\n}\n\n// The Unmarshaler interface may be implemented by types to customize their\n// behavior when being unmarshaled from a YAML document. The UnmarshalYAML\n// method receives a function that may be called to unmarshal the original\n// YAML value into a field or variable. It is safe to call the unmarshal\n// function parameter more than once if necessary.\ntype Unmarshaler interface {\n\tUnmarshalYAML(unmarshal func(interface{}) error) error\n}\n\n// The Marshaler interface may be implemented by types to customize their\n// behavior when being marshaled into a YAML document. The returned value\n// is marshaled in place of the original value implementing Marshaler.\n//\n// If an error is returned by MarshalYAML, the marshaling procedure stops\n// and returns with the provided error.\ntype Marshaler interface {\n\tMarshalYAML() (interface{}, error)\n}\n\n// Unmarshal decodes the first document found within the in byte slice\n// and assigns decoded values into the out value.\n//\n// Maps and pointers (to a struct, string, int, etc) are accepted as out\n// values. If an internal pointer within a struct is not initialized,\n// the yaml package will initialize it if necessary for unmarshalling\n// the provided data. The out parameter must not be nil.\n//\n// The type of the decoded values should be compatible with the respective\n// values in out. If one or more values cannot be decoded due to a type\n// mismatches, decoding continues partially until the end of the YAML\n// content, and a *yaml.TypeError is returned with details for all\n// missed values.\n//\n// Struct fields are only unmarshalled if they are exported (have an\n// upper case first letter), and are unmarshalled using the field name\n// lowercased as the default key. Custom keys may be defined via the\n// \"yaml\" name in the field tag: the content preceding the first comma\n// is used as the key, and the following comma-separated options are\n// used to tweak the marshalling process (see Marshal).\n// Conflicting names result in a runtime error.\n//\n// For example:\n//\n//     type T struct {\n//         F int `yaml:\"a,omitempty\"`\n//         B int\n//     }\n//     var t T\n//     yaml.Unmarshal([]byte(\"a: 1\\nb: 2\"), &t)\n//\n// See the documentation of Marshal for the format of tags and a list of\n// supported tag options.\n//\nfunc Unmarshal(in []byte, out interface{}) (err error) {\n\treturn unmarshal(in, out, false)\n}\n\n// UnmarshalStrict is like Unmarshal except that any fields that are found\n// in the data that do not have corresponding struct members, or mapping\n// keys that are duplicates, will result in\n// an error.\nfunc UnmarshalStrict(in []byte, out interface{}) (err error) {\n\treturn unmarshal(in, out, true)\n}\n\n// A Decoder reads and decodes YAML values from an input stream.\ntype Decoder struct {\n\tstrict bool\n\tparser *parser\n}\n\n// NewDecoder returns a new decoder that reads from r.\n//\n// The decoder introduces its own buffering and may read\n// data from r beyond the YAML values requested.\nfunc NewDecoder(r io.Reader) *Decoder {\n\treturn &Decoder{\n\t\tparser: newParserFromReader(r),\n\t}\n}\n\n// SetStrict sets whether strict decoding behaviour is enabled when\n// decoding items in the data (see UnmarshalStrict). By default, decoding is not strict.\nfunc (dec *Decoder) SetStrict(strict bool) {\n\tdec.strict = strict\n}\n\n// Decode reads the next YAML-encoded value from its input\n// and stores it in the value pointed to by v.\n//\n// See the documentation for Unmarshal for details about the\n// conversion of YAML into a Go value.\nfunc (dec *Decoder) Decode(v interface{}) (err error) {\n\td := newDecoder(dec.strict)\n\tdefer handleErr(&err)\n\tnode := dec.parser.parse()\n\tif node == nil {\n\t\treturn io.EOF\n\t}\n\tout := reflect.ValueOf(v)\n\tif out.Kind() == reflect.Ptr && !out.IsNil() {\n\t\tout = out.Elem()\n\t}\n\td.unmarshal(node, out)\n\tif len(d.terrors) > 0 {\n\t\treturn &TypeError{d.terrors}\n\t}\n\treturn nil\n}\n\nfunc unmarshal(in []byte, out interface{}, strict bool) (err error) {\n\tdefer handleErr(&err)\n\td := newDecoder(strict)\n\tp := newParser(in)\n\tdefer p.destroy()\n\tnode := p.parse()\n\tif node != nil {\n\t\tv := reflect.ValueOf(out)\n\t\tif v.Kind() == reflect.Ptr && !v.IsNil() {\n\t\t\tv = v.Elem()\n\t\t}\n\t\td.unmarshal(node, v)\n\t}\n\tif len(d.terrors) > 0 {\n\t\treturn &TypeError{d.terrors}\n\t}\n\treturn nil\n}\n\n// Marshal serializes the value provided into a YAML document. The structure\n// of the generated document will reflect the structure of the value itself.\n// Maps and pointers (to struct, string, int, etc) are accepted as the in value.\n//\n// Struct fields are only marshalled if they are exported (have an upper case\n// first letter), and are marshalled using the field name lowercased as the\n// default key. Custom keys may be defined via the \"yaml\" name in the field\n// tag: the content preceding the first comma is used as the key, and the\n// following comma-separated options are used to tweak the marshalling process.\n// Conflicting names result in a runtime error.\n//\n// The field tag format accepted is:\n//\n//     `(...) yaml:\"[<key>][,<flag1>[,<flag2>]]\" (...)`\n//\n// The following flags are currently supported:\n//\n//     omitempty    Only include the field if it's not set to the zero\n//                  value for the type or to empty slices or maps.\n//                  Zero valued structs will be omitted if all their public\n//                  fields are zero, unless they implement an IsZero\n//                  method (see the IsZeroer interface type), in which\n//                  case the field will be included if that method returns true.\n//\n//     flow         Marshal using a flow style (useful for structs,\n//                  sequences and maps).\n//\n//     inline       Inline the field, which must be a struct or a map,\n//                  causing all of its fields or keys to be processed as if\n//                  they were part of the outer struct. For maps, keys must\n//                  not conflict with the yaml keys of other struct fields.\n//\n// In addition, if the key is \"-\", the field is ignored.\n//\n// For example:\n//\n//     type T struct {\n//         F int `yaml:\"a,omitempty\"`\n//         B int\n//     }\n//     yaml.Marshal(&T{B: 2}) // Returns \"b: 2\\n\"\n//     yaml.Marshal(&T{F: 1}} // Returns \"a: 1\\nb: 0\\n\"\n//\nfunc Marshal(in interface{}) (out []byte, err error) {\n\tdefer handleErr(&err)\n\te := newEncoder()\n\tdefer e.destroy()\n\te.marshalDoc(\"\", reflect.ValueOf(in))\n\te.finish()\n\tout = e.out\n\treturn\n}\n\n// An Encoder writes YAML values to an output stream.\ntype Encoder struct {\n\tencoder *encoder\n}\n\n// NewEncoder returns a new encoder that writes to w.\n// The Encoder should be closed after use to flush all data\n// to w.\nfunc NewEncoder(w io.Writer) *Encoder {\n\treturn &Encoder{\n\t\tencoder: newEncoderWithWriter(w),\n\t}\n}\n\n// Encode writes the YAML encoding of v to the stream.\n// If multiple items are encoded to the stream, the\n// second and subsequent document will be preceded\n// with a \"---\" document separator, but the first will not.\n//\n// See the documentation for Marshal for details about the conversion of Go\n// values to YAML.\nfunc (e *Encoder) Encode(v interface{}) (err error) {\n\tdefer handleErr(&err)\n\te.encoder.marshalDoc(\"\", reflect.ValueOf(v))\n\treturn nil\n}\n\n// Close closes the encoder by writing any remaining data.\n// It does not write a stream terminating string \"...\".\nfunc (e *Encoder) Close() (err error) {\n\tdefer handleErr(&err)\n\te.encoder.finish()\n\treturn nil\n}\n\nfunc handleErr(err *error) {\n\tif v := recover(); v != nil {\n\t\tif e, ok := v.(yamlError); ok {\n\t\t\t*err = e.err\n\t\t} else {\n\t\t\tpanic(v)\n\t\t}\n\t}\n}\n\ntype yamlError struct {\n\terr error\n}\n\nfunc fail(err error) {\n\tpanic(yamlError{err})\n}\n\nfunc failf(format string, args ...interface{}) {\n\tpanic(yamlError{fmt.Errorf(\"yaml: \"+format, args...)})\n}\n\n// A TypeError is returned by Unmarshal when one or more fields in\n// the YAML document cannot be properly decoded into the requested\n// types. When this error is returned, the value is still\n// unmarshaled partially.\ntype TypeError struct {\n\tErrors []string\n}\n\nfunc (e *TypeError) Error() string {\n\treturn fmt.Sprintf(\"yaml: unmarshal errors:\\n  %s\", strings.Join(e.Errors, \"\\n  \"))\n}\n\n// --------------------------------------------------------------------------\n// Maintain a mapping of keys to structure field indexes\n\n// The code in this section was copied from mgo/bson.\n\n// structInfo holds details for the serialization of fields of\n// a given struct.\ntype structInfo struct {\n\tFieldsMap  map[string]fieldInfo\n\tFieldsList []fieldInfo\n\n\t// InlineMap is the number of the field in the struct that\n\t// contains an ,inline map, or -1 if there's none.\n\tInlineMap int\n}\n\ntype fieldInfo struct {\n\tKey       string\n\tNum       int\n\tOmitEmpty bool\n\tFlow      bool\n\t// Id holds the unique field identifier, so we can cheaply\n\t// check for field duplicates without maintaining an extra map.\n\tId int\n\n\t// Inline holds the field index if the field is part of an inlined struct.\n\tInline []int\n}\n\nvar structMap = make(map[reflect.Type]*structInfo)\nvar fieldMapMutex sync.RWMutex\n\nfunc getStructInfo(st reflect.Type) (*structInfo, error) {\n\tfieldMapMutex.RLock()\n\tsinfo, found := structMap[st]\n\tfieldMapMutex.RUnlock()\n\tif found {\n\t\treturn sinfo, nil\n\t}\n\n\tn := st.NumField()\n\tfieldsMap := make(map[string]fieldInfo)\n\tfieldsList := make([]fieldInfo, 0, n)\n\tinlineMap := -1\n\tfor i := 0; i != n; i++ {\n\t\tfield := st.Field(i)\n\t\tif field.PkgPath != \"\" && !field.Anonymous {\n\t\t\tcontinue // Private field\n\t\t}\n\n\t\tinfo := fieldInfo{Num: i}\n\n\t\ttag := field.Tag.Get(\"yaml\")\n\t\tif tag == \"\" && strings.Index(string(field.Tag), \":\") < 0 {\n\t\t\ttag = string(field.Tag)\n\t\t}\n\t\tif tag == \"-\" {\n\t\t\tcontinue\n\t\t}\n\n\t\tinline := false\n\t\tfields := strings.Split(tag, \",\")\n\t\tif len(fields) > 1 {\n\t\t\tfor _, flag := range fields[1:] {\n\t\t\t\tswitch flag {\n\t\t\t\tcase \"omitempty\":\n\t\t\t\t\tinfo.OmitEmpty = true\n\t\t\t\tcase \"flow\":\n\t\t\t\t\tinfo.Flow = true\n\t\t\t\tcase \"inline\":\n\t\t\t\t\tinline = true\n\t\t\t\tdefault:\n\t\t\t\t\treturn nil, errors.New(fmt.Sprintf(\"Unsupported flag %q in tag %q of type %s\", flag, tag, st))\n\t\t\t\t}\n\t\t\t}\n\t\t\ttag = fields[0]\n\t\t}\n\n\t\tif inline {\n\t\t\tswitch field.Type.Kind() {\n\t\t\tcase reflect.Map:\n\t\t\t\tif inlineMap >= 0 {\n\t\t\t\t\treturn nil, errors.New(\"Multiple ,inline maps in struct \" + st.String())\n\t\t\t\t}\n\t\t\t\tif field.Type.Key() != reflect.TypeOf(\"\") {\n\t\t\t\t\treturn nil, errors.New(\"Option ,inline needs a map with string keys in struct \" + st.String())\n\t\t\t\t}\n\t\t\t\tinlineMap = info.Num\n\t\t\tcase reflect.Struct:\n\t\t\t\tsinfo, err := getStructInfo(field.Type)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tfor _, finfo := range sinfo.FieldsList {\n\t\t\t\t\tif _, found := fieldsMap[finfo.Key]; found {\n\t\t\t\t\t\tmsg := \"Duplicated key '\" + finfo.Key + \"' in struct \" + st.String()\n\t\t\t\t\t\treturn nil, errors.New(msg)\n\t\t\t\t\t}\n\t\t\t\t\tif finfo.Inline == nil {\n\t\t\t\t\t\tfinfo.Inline = []int{i, finfo.Num}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfinfo.Inline = append([]int{i}, finfo.Inline...)\n\t\t\t\t\t}\n\t\t\t\t\tfinfo.Id = len(fieldsList)\n\t\t\t\t\tfieldsMap[finfo.Key] = finfo\n\t\t\t\t\tfieldsList = append(fieldsList, finfo)\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\t//return nil, errors.New(\"Option ,inline needs a struct value or map field\")\n\t\t\t\treturn nil, errors.New(\"Option ,inline needs a struct value field\")\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tif tag != \"\" {\n\t\t\tinfo.Key = tag\n\t\t} else {\n\t\t\tinfo.Key = strings.ToLower(field.Name)\n\t\t}\n\n\t\tif _, found = fieldsMap[info.Key]; found {\n\t\t\tmsg := \"Duplicated key '\" + info.Key + \"' in struct \" + st.String()\n\t\t\treturn nil, errors.New(msg)\n\t\t}\n\n\t\tinfo.Id = len(fieldsList)\n\t\tfieldsList = append(fieldsList, info)\n\t\tfieldsMap[info.Key] = info\n\t}\n\n\tsinfo = &structInfo{\n\t\tFieldsMap:  fieldsMap,\n\t\tFieldsList: fieldsList,\n\t\tInlineMap:  inlineMap,\n\t}\n\n\tfieldMapMutex.Lock()\n\tstructMap[st] = sinfo\n\tfieldMapMutex.Unlock()\n\treturn sinfo, nil\n}\n\n// IsZeroer is used to check whether an object is zero to\n// determine whether it should be omitted when marshaling\n// with the omitempty flag. One notable implementation\n// is time.Time.\ntype IsZeroer interface {\n\tIsZero() bool\n}\n\nfunc isZero(v reflect.Value) bool {\n\tkind := v.Kind()\n\tif z, ok := v.Interface().(IsZeroer); ok {\n\t\tif (kind == reflect.Ptr || kind == reflect.Interface) && v.IsNil() {\n\t\t\treturn true\n\t\t}\n\t\treturn z.IsZero()\n\t}\n\tswitch kind {\n\tcase reflect.String:\n\t\treturn len(v.String()) == 0\n\tcase reflect.Interface, reflect.Ptr:\n\t\treturn v.IsNil()\n\tcase reflect.Slice:\n\t\treturn v.Len() == 0\n\tcase reflect.Map:\n\t\treturn v.Len() == 0\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn v.Int() == 0\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn v.Float() == 0\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn v.Uint() == 0\n\tcase reflect.Bool:\n\t\treturn !v.Bool()\n\tcase reflect.Struct:\n\t\tvt := v.Type()\n\t\tfor i := v.NumField() - 1; i >= 0; i-- {\n\t\t\tif vt.Field(i).PkgPath != \"\" {\n\t\t\t\tcontinue // Private field\n\t\t\t}\n\t\t\tif !isZero(v.Field(i)) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\treturn true\n\t}\n\treturn false\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/yamlh.go",
    "content": "package yaml\n\nimport (\n\t\"fmt\"\n\t\"io\"\n)\n\n// The version directive data.\ntype yaml_version_directive_t struct {\n\tmajor int8 // The major version number.\n\tminor int8 // The minor version number.\n}\n\n// The tag directive data.\ntype yaml_tag_directive_t struct {\n\thandle []byte // The tag handle.\n\tprefix []byte // The tag prefix.\n}\n\ntype yaml_encoding_t int\n\n// The stream encoding.\nconst (\n\t// Let the parser choose the encoding.\n\tyaml_ANY_ENCODING yaml_encoding_t = iota\n\n\tyaml_UTF8_ENCODING    // The default UTF-8 encoding.\n\tyaml_UTF16LE_ENCODING // The UTF-16-LE encoding with BOM.\n\tyaml_UTF16BE_ENCODING // The UTF-16-BE encoding with BOM.\n)\n\ntype yaml_break_t int\n\n// Line break types.\nconst (\n\t// Let the parser choose the break type.\n\tyaml_ANY_BREAK yaml_break_t = iota\n\n\tyaml_CR_BREAK   // Use CR for line breaks (Mac style).\n\tyaml_LN_BREAK   // Use LN for line breaks (Unix style).\n\tyaml_CRLN_BREAK // Use CR LN for line breaks (DOS style).\n)\n\ntype yaml_error_type_t int\n\n// Many bad things could happen with the parser and emitter.\nconst (\n\t// No error is produced.\n\tyaml_NO_ERROR yaml_error_type_t = iota\n\n\tyaml_MEMORY_ERROR   // Cannot allocate or reallocate a block of memory.\n\tyaml_READER_ERROR   // Cannot read or decode the input stream.\n\tyaml_SCANNER_ERROR  // Cannot scan the input stream.\n\tyaml_PARSER_ERROR   // Cannot parse the input stream.\n\tyaml_COMPOSER_ERROR // Cannot compose a YAML document.\n\tyaml_WRITER_ERROR   // Cannot write to the output stream.\n\tyaml_EMITTER_ERROR  // Cannot emit a YAML stream.\n)\n\n// The pointer position.\ntype yaml_mark_t struct {\n\tindex  int // The position index.\n\tline   int // The position line.\n\tcolumn int // The position column.\n}\n\n// Node Styles\n\ntype yaml_style_t int8\n\ntype yaml_scalar_style_t yaml_style_t\n\n// Scalar styles.\nconst (\n\t// Let the emitter choose the style.\n\tyaml_ANY_SCALAR_STYLE yaml_scalar_style_t = iota\n\n\tyaml_PLAIN_SCALAR_STYLE         // The plain scalar style.\n\tyaml_SINGLE_QUOTED_SCALAR_STYLE // The single-quoted scalar style.\n\tyaml_DOUBLE_QUOTED_SCALAR_STYLE // The double-quoted scalar style.\n\tyaml_LITERAL_SCALAR_STYLE       // The literal scalar style.\n\tyaml_FOLDED_SCALAR_STYLE        // The folded scalar style.\n)\n\ntype yaml_sequence_style_t yaml_style_t\n\n// Sequence styles.\nconst (\n\t// Let the emitter choose the style.\n\tyaml_ANY_SEQUENCE_STYLE yaml_sequence_style_t = iota\n\n\tyaml_BLOCK_SEQUENCE_STYLE // The block sequence style.\n\tyaml_FLOW_SEQUENCE_STYLE  // The flow sequence style.\n)\n\ntype yaml_mapping_style_t yaml_style_t\n\n// Mapping styles.\nconst (\n\t// Let the emitter choose the style.\n\tyaml_ANY_MAPPING_STYLE yaml_mapping_style_t = iota\n\n\tyaml_BLOCK_MAPPING_STYLE // The block mapping style.\n\tyaml_FLOW_MAPPING_STYLE  // The flow mapping style.\n)\n\n// Tokens\n\ntype yaml_token_type_t int\n\n// Token types.\nconst (\n\t// An empty token.\n\tyaml_NO_TOKEN yaml_token_type_t = iota\n\n\tyaml_STREAM_START_TOKEN // A STREAM-START token.\n\tyaml_STREAM_END_TOKEN   // A STREAM-END token.\n\n\tyaml_VERSION_DIRECTIVE_TOKEN // A VERSION-DIRECTIVE token.\n\tyaml_TAG_DIRECTIVE_TOKEN     // A TAG-DIRECTIVE token.\n\tyaml_DOCUMENT_START_TOKEN    // A DOCUMENT-START token.\n\tyaml_DOCUMENT_END_TOKEN      // A DOCUMENT-END token.\n\n\tyaml_BLOCK_SEQUENCE_START_TOKEN // A BLOCK-SEQUENCE-START token.\n\tyaml_BLOCK_MAPPING_START_TOKEN  // A BLOCK-SEQUENCE-END token.\n\tyaml_BLOCK_END_TOKEN            // A BLOCK-END token.\n\n\tyaml_FLOW_SEQUENCE_START_TOKEN // A FLOW-SEQUENCE-START token.\n\tyaml_FLOW_SEQUENCE_END_TOKEN   // A FLOW-SEQUENCE-END token.\n\tyaml_FLOW_MAPPING_START_TOKEN  // A FLOW-MAPPING-START token.\n\tyaml_FLOW_MAPPING_END_TOKEN    // A FLOW-MAPPING-END token.\n\n\tyaml_BLOCK_ENTRY_TOKEN // A BLOCK-ENTRY token.\n\tyaml_FLOW_ENTRY_TOKEN  // A FLOW-ENTRY token.\n\tyaml_KEY_TOKEN         // A KEY token.\n\tyaml_VALUE_TOKEN       // A VALUE token.\n\n\tyaml_ALIAS_TOKEN  // An ALIAS token.\n\tyaml_ANCHOR_TOKEN // An ANCHOR token.\n\tyaml_TAG_TOKEN    // A TAG token.\n\tyaml_SCALAR_TOKEN // A SCALAR token.\n)\n\nfunc (tt yaml_token_type_t) String() string {\n\tswitch tt {\n\tcase yaml_NO_TOKEN:\n\t\treturn \"yaml_NO_TOKEN\"\n\tcase yaml_STREAM_START_TOKEN:\n\t\treturn \"yaml_STREAM_START_TOKEN\"\n\tcase yaml_STREAM_END_TOKEN:\n\t\treturn \"yaml_STREAM_END_TOKEN\"\n\tcase yaml_VERSION_DIRECTIVE_TOKEN:\n\t\treturn \"yaml_VERSION_DIRECTIVE_TOKEN\"\n\tcase yaml_TAG_DIRECTIVE_TOKEN:\n\t\treturn \"yaml_TAG_DIRECTIVE_TOKEN\"\n\tcase yaml_DOCUMENT_START_TOKEN:\n\t\treturn \"yaml_DOCUMENT_START_TOKEN\"\n\tcase yaml_DOCUMENT_END_TOKEN:\n\t\treturn \"yaml_DOCUMENT_END_TOKEN\"\n\tcase yaml_BLOCK_SEQUENCE_START_TOKEN:\n\t\treturn \"yaml_BLOCK_SEQUENCE_START_TOKEN\"\n\tcase yaml_BLOCK_MAPPING_START_TOKEN:\n\t\treturn \"yaml_BLOCK_MAPPING_START_TOKEN\"\n\tcase yaml_BLOCK_END_TOKEN:\n\t\treturn \"yaml_BLOCK_END_TOKEN\"\n\tcase yaml_FLOW_SEQUENCE_START_TOKEN:\n\t\treturn \"yaml_FLOW_SEQUENCE_START_TOKEN\"\n\tcase yaml_FLOW_SEQUENCE_END_TOKEN:\n\t\treturn \"yaml_FLOW_SEQUENCE_END_TOKEN\"\n\tcase yaml_FLOW_MAPPING_START_TOKEN:\n\t\treturn \"yaml_FLOW_MAPPING_START_TOKEN\"\n\tcase yaml_FLOW_MAPPING_END_TOKEN:\n\t\treturn \"yaml_FLOW_MAPPING_END_TOKEN\"\n\tcase yaml_BLOCK_ENTRY_TOKEN:\n\t\treturn \"yaml_BLOCK_ENTRY_TOKEN\"\n\tcase yaml_FLOW_ENTRY_TOKEN:\n\t\treturn \"yaml_FLOW_ENTRY_TOKEN\"\n\tcase yaml_KEY_TOKEN:\n\t\treturn \"yaml_KEY_TOKEN\"\n\tcase yaml_VALUE_TOKEN:\n\t\treturn \"yaml_VALUE_TOKEN\"\n\tcase yaml_ALIAS_TOKEN:\n\t\treturn \"yaml_ALIAS_TOKEN\"\n\tcase yaml_ANCHOR_TOKEN:\n\t\treturn \"yaml_ANCHOR_TOKEN\"\n\tcase yaml_TAG_TOKEN:\n\t\treturn \"yaml_TAG_TOKEN\"\n\tcase yaml_SCALAR_TOKEN:\n\t\treturn \"yaml_SCALAR_TOKEN\"\n\t}\n\treturn \"<unknown token>\"\n}\n\n// The token structure.\ntype yaml_token_t struct {\n\t// The token type.\n\ttyp yaml_token_type_t\n\n\t// The start/end of the token.\n\tstart_mark, end_mark yaml_mark_t\n\n\t// The stream encoding (for yaml_STREAM_START_TOKEN).\n\tencoding yaml_encoding_t\n\n\t// The alias/anchor/scalar value or tag/tag directive handle\n\t// (for yaml_ALIAS_TOKEN, yaml_ANCHOR_TOKEN, yaml_SCALAR_TOKEN, yaml_TAG_TOKEN, yaml_TAG_DIRECTIVE_TOKEN).\n\tvalue []byte\n\n\t// The tag suffix (for yaml_TAG_TOKEN).\n\tsuffix []byte\n\n\t// The tag directive prefix (for yaml_TAG_DIRECTIVE_TOKEN).\n\tprefix []byte\n\n\t// The scalar style (for yaml_SCALAR_TOKEN).\n\tstyle yaml_scalar_style_t\n\n\t// The version directive major/minor (for yaml_VERSION_DIRECTIVE_TOKEN).\n\tmajor, minor int8\n}\n\n// Events\n\ntype yaml_event_type_t int8\n\n// Event types.\nconst (\n\t// An empty event.\n\tyaml_NO_EVENT yaml_event_type_t = iota\n\n\tyaml_STREAM_START_EVENT   // A STREAM-START event.\n\tyaml_STREAM_END_EVENT     // A STREAM-END event.\n\tyaml_DOCUMENT_START_EVENT // A DOCUMENT-START event.\n\tyaml_DOCUMENT_END_EVENT   // A DOCUMENT-END event.\n\tyaml_ALIAS_EVENT          // An ALIAS event.\n\tyaml_SCALAR_EVENT         // A SCALAR event.\n\tyaml_SEQUENCE_START_EVENT // A SEQUENCE-START event.\n\tyaml_SEQUENCE_END_EVENT   // A SEQUENCE-END event.\n\tyaml_MAPPING_START_EVENT  // A MAPPING-START event.\n\tyaml_MAPPING_END_EVENT    // A MAPPING-END event.\n)\n\nvar eventStrings = []string{\n\tyaml_NO_EVENT:             \"none\",\n\tyaml_STREAM_START_EVENT:   \"stream start\",\n\tyaml_STREAM_END_EVENT:     \"stream end\",\n\tyaml_DOCUMENT_START_EVENT: \"document start\",\n\tyaml_DOCUMENT_END_EVENT:   \"document end\",\n\tyaml_ALIAS_EVENT:          \"alias\",\n\tyaml_SCALAR_EVENT:         \"scalar\",\n\tyaml_SEQUENCE_START_EVENT: \"sequence start\",\n\tyaml_SEQUENCE_END_EVENT:   \"sequence end\",\n\tyaml_MAPPING_START_EVENT:  \"mapping start\",\n\tyaml_MAPPING_END_EVENT:    \"mapping end\",\n}\n\nfunc (e yaml_event_type_t) String() string {\n\tif e < 0 || int(e) >= len(eventStrings) {\n\t\treturn fmt.Sprintf(\"unknown event %d\", e)\n\t}\n\treturn eventStrings[e]\n}\n\n// The event structure.\ntype yaml_event_t struct {\n\n\t// The event type.\n\ttyp yaml_event_type_t\n\n\t// The start and end of the event.\n\tstart_mark, end_mark yaml_mark_t\n\n\t// The document encoding (for yaml_STREAM_START_EVENT).\n\tencoding yaml_encoding_t\n\n\t// The version directive (for yaml_DOCUMENT_START_EVENT).\n\tversion_directive *yaml_version_directive_t\n\n\t// The list of tag directives (for yaml_DOCUMENT_START_EVENT).\n\ttag_directives []yaml_tag_directive_t\n\n\t// The anchor (for yaml_SCALAR_EVENT, yaml_SEQUENCE_START_EVENT, yaml_MAPPING_START_EVENT, yaml_ALIAS_EVENT).\n\tanchor []byte\n\n\t// The tag (for yaml_SCALAR_EVENT, yaml_SEQUENCE_START_EVENT, yaml_MAPPING_START_EVENT).\n\ttag []byte\n\n\t// The scalar value (for yaml_SCALAR_EVENT).\n\tvalue []byte\n\n\t// Is the document start/end indicator implicit, or the tag optional?\n\t// (for yaml_DOCUMENT_START_EVENT, yaml_DOCUMENT_END_EVENT, yaml_SEQUENCE_START_EVENT, yaml_MAPPING_START_EVENT, yaml_SCALAR_EVENT).\n\timplicit bool\n\n\t// Is the tag optional for any non-plain style? (for yaml_SCALAR_EVENT).\n\tquoted_implicit bool\n\n\t// The style (for yaml_SCALAR_EVENT, yaml_SEQUENCE_START_EVENT, yaml_MAPPING_START_EVENT).\n\tstyle yaml_style_t\n}\n\nfunc (e *yaml_event_t) scalar_style() yaml_scalar_style_t     { return yaml_scalar_style_t(e.style) }\nfunc (e *yaml_event_t) sequence_style() yaml_sequence_style_t { return yaml_sequence_style_t(e.style) }\nfunc (e *yaml_event_t) mapping_style() yaml_mapping_style_t   { return yaml_mapping_style_t(e.style) }\n\n// Nodes\n\nconst (\n\tyaml_NULL_TAG      = \"tag:yaml.org,2002:null\"      // The tag !!null with the only possible value: null.\n\tyaml_BOOL_TAG      = \"tag:yaml.org,2002:bool\"      // The tag !!bool with the values: true and false.\n\tyaml_STR_TAG       = \"tag:yaml.org,2002:str\"       // The tag !!str for string values.\n\tyaml_INT_TAG       = \"tag:yaml.org,2002:int\"       // The tag !!int for integer values.\n\tyaml_FLOAT_TAG     = \"tag:yaml.org,2002:float\"     // The tag !!float for float values.\n\tyaml_TIMESTAMP_TAG = \"tag:yaml.org,2002:timestamp\" // The tag !!timestamp for date and time values.\n\n\tyaml_SEQ_TAG = \"tag:yaml.org,2002:seq\" // The tag !!seq is used to denote sequences.\n\tyaml_MAP_TAG = \"tag:yaml.org,2002:map\" // The tag !!map is used to denote mapping.\n\n\t// Not in original libyaml.\n\tyaml_BINARY_TAG = \"tag:yaml.org,2002:binary\"\n\tyaml_MERGE_TAG  = \"tag:yaml.org,2002:merge\"\n\n\tyaml_DEFAULT_SCALAR_TAG   = yaml_STR_TAG // The default scalar tag is !!str.\n\tyaml_DEFAULT_SEQUENCE_TAG = yaml_SEQ_TAG // The default sequence tag is !!seq.\n\tyaml_DEFAULT_MAPPING_TAG  = yaml_MAP_TAG // The default mapping tag is !!map.\n)\n\ntype yaml_node_type_t int\n\n// Node types.\nconst (\n\t// An empty node.\n\tyaml_NO_NODE yaml_node_type_t = iota\n\n\tyaml_SCALAR_NODE   // A scalar node.\n\tyaml_SEQUENCE_NODE // A sequence node.\n\tyaml_MAPPING_NODE  // A mapping node.\n)\n\n// An element of a sequence node.\ntype yaml_node_item_t int\n\n// An element of a mapping node.\ntype yaml_node_pair_t struct {\n\tkey   int // The key of the element.\n\tvalue int // The value of the element.\n}\n\n// The node structure.\ntype yaml_node_t struct {\n\ttyp yaml_node_type_t // The node type.\n\ttag []byte           // The node tag.\n\n\t// The node data.\n\n\t// The scalar parameters (for yaml_SCALAR_NODE).\n\tscalar struct {\n\t\tvalue  []byte              // The scalar value.\n\t\tlength int                 // The length of the scalar value.\n\t\tstyle  yaml_scalar_style_t // The scalar style.\n\t}\n\n\t// The sequence parameters (for YAML_SEQUENCE_NODE).\n\tsequence struct {\n\t\titems_data []yaml_node_item_t    // The stack of sequence items.\n\t\tstyle      yaml_sequence_style_t // The sequence style.\n\t}\n\n\t// The mapping parameters (for yaml_MAPPING_NODE).\n\tmapping struct {\n\t\tpairs_data  []yaml_node_pair_t   // The stack of mapping pairs (key, value).\n\t\tpairs_start *yaml_node_pair_t    // The beginning of the stack.\n\t\tpairs_end   *yaml_node_pair_t    // The end of the stack.\n\t\tpairs_top   *yaml_node_pair_t    // The top of the stack.\n\t\tstyle       yaml_mapping_style_t // The mapping style.\n\t}\n\n\tstart_mark yaml_mark_t // The beginning of the node.\n\tend_mark   yaml_mark_t // The end of the node.\n\n}\n\n// The document structure.\ntype yaml_document_t struct {\n\n\t// The document nodes.\n\tnodes []yaml_node_t\n\n\t// The version directive.\n\tversion_directive *yaml_version_directive_t\n\n\t// The list of tag directives.\n\ttag_directives_data  []yaml_tag_directive_t\n\ttag_directives_start int // The beginning of the tag directives list.\n\ttag_directives_end   int // The end of the tag directives list.\n\n\tstart_implicit int // Is the document start indicator implicit?\n\tend_implicit   int // Is the document end indicator implicit?\n\n\t// The start/end of the document.\n\tstart_mark, end_mark yaml_mark_t\n}\n\n// The prototype of a read handler.\n//\n// The read handler is called when the parser needs to read more bytes from the\n// source. The handler should write not more than size bytes to the buffer.\n// The number of written bytes should be set to the size_read variable.\n//\n// [in,out]   data        A pointer to an application data specified by\n//                        yaml_parser_set_input().\n// [out]      buffer      The buffer to write the data from the source.\n// [in]       size        The size of the buffer.\n// [out]      size_read   The actual number of bytes read from the source.\n//\n// On success, the handler should return 1.  If the handler failed,\n// the returned value should be 0. On EOF, the handler should set the\n// size_read to 0 and return 1.\ntype yaml_read_handler_t func(parser *yaml_parser_t, buffer []byte) (n int, err error)\n\n// This structure holds information about a potential simple key.\ntype yaml_simple_key_t struct {\n\tpossible     bool        // Is a simple key possible?\n\trequired     bool        // Is a simple key required?\n\ttoken_number int         // The number of the token.\n\tmark         yaml_mark_t // The position mark.\n}\n\n// The states of the parser.\ntype yaml_parser_state_t int\n\nconst (\n\tyaml_PARSE_STREAM_START_STATE yaml_parser_state_t = iota\n\n\tyaml_PARSE_IMPLICIT_DOCUMENT_START_STATE           // Expect the beginning of an implicit document.\n\tyaml_PARSE_DOCUMENT_START_STATE                    // Expect DOCUMENT-START.\n\tyaml_PARSE_DOCUMENT_CONTENT_STATE                  // Expect the content of a document.\n\tyaml_PARSE_DOCUMENT_END_STATE                      // Expect DOCUMENT-END.\n\tyaml_PARSE_BLOCK_NODE_STATE                        // Expect a block node.\n\tyaml_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE // Expect a block node or indentless sequence.\n\tyaml_PARSE_FLOW_NODE_STATE                         // Expect a flow node.\n\tyaml_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE        // Expect the first entry of a block sequence.\n\tyaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE              // Expect an entry of a block sequence.\n\tyaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE         // Expect an entry of an indentless sequence.\n\tyaml_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE           // Expect the first key of a block mapping.\n\tyaml_PARSE_BLOCK_MAPPING_KEY_STATE                 // Expect a block mapping key.\n\tyaml_PARSE_BLOCK_MAPPING_VALUE_STATE               // Expect a block mapping value.\n\tyaml_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE         // Expect the first entry of a flow sequence.\n\tyaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE               // Expect an entry of a flow sequence.\n\tyaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE   // Expect a key of an ordered mapping.\n\tyaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE // Expect a value of an ordered mapping.\n\tyaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE   // Expect the and of an ordered mapping entry.\n\tyaml_PARSE_FLOW_MAPPING_FIRST_KEY_STATE            // Expect the first key of a flow mapping.\n\tyaml_PARSE_FLOW_MAPPING_KEY_STATE                  // Expect a key of a flow mapping.\n\tyaml_PARSE_FLOW_MAPPING_VALUE_STATE                // Expect a value of a flow mapping.\n\tyaml_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE          // Expect an empty value of a flow mapping.\n\tyaml_PARSE_END_STATE                               // Expect nothing.\n)\n\nfunc (ps yaml_parser_state_t) String() string {\n\tswitch ps {\n\tcase yaml_PARSE_STREAM_START_STATE:\n\t\treturn \"yaml_PARSE_STREAM_START_STATE\"\n\tcase yaml_PARSE_IMPLICIT_DOCUMENT_START_STATE:\n\t\treturn \"yaml_PARSE_IMPLICIT_DOCUMENT_START_STATE\"\n\tcase yaml_PARSE_DOCUMENT_START_STATE:\n\t\treturn \"yaml_PARSE_DOCUMENT_START_STATE\"\n\tcase yaml_PARSE_DOCUMENT_CONTENT_STATE:\n\t\treturn \"yaml_PARSE_DOCUMENT_CONTENT_STATE\"\n\tcase yaml_PARSE_DOCUMENT_END_STATE:\n\t\treturn \"yaml_PARSE_DOCUMENT_END_STATE\"\n\tcase yaml_PARSE_BLOCK_NODE_STATE:\n\t\treturn \"yaml_PARSE_BLOCK_NODE_STATE\"\n\tcase yaml_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE:\n\t\treturn \"yaml_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE\"\n\tcase yaml_PARSE_FLOW_NODE_STATE:\n\t\treturn \"yaml_PARSE_FLOW_NODE_STATE\"\n\tcase yaml_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE:\n\t\treturn \"yaml_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE\"\n\tcase yaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE:\n\t\treturn \"yaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE\"\n\tcase yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE:\n\t\treturn \"yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE\"\n\tcase yaml_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE:\n\t\treturn \"yaml_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE\"\n\tcase yaml_PARSE_BLOCK_MAPPING_KEY_STATE:\n\t\treturn \"yaml_PARSE_BLOCK_MAPPING_KEY_STATE\"\n\tcase yaml_PARSE_BLOCK_MAPPING_VALUE_STATE:\n\t\treturn \"yaml_PARSE_BLOCK_MAPPING_VALUE_STATE\"\n\tcase yaml_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE:\n\t\treturn \"yaml_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE\"\n\tcase yaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE:\n\t\treturn \"yaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE\"\n\tcase yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE:\n\t\treturn \"yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE\"\n\tcase yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE:\n\t\treturn \"yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE\"\n\tcase yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE:\n\t\treturn \"yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE\"\n\tcase yaml_PARSE_FLOW_MAPPING_FIRST_KEY_STATE:\n\t\treturn \"yaml_PARSE_FLOW_MAPPING_FIRST_KEY_STATE\"\n\tcase yaml_PARSE_FLOW_MAPPING_KEY_STATE:\n\t\treturn \"yaml_PARSE_FLOW_MAPPING_KEY_STATE\"\n\tcase yaml_PARSE_FLOW_MAPPING_VALUE_STATE:\n\t\treturn \"yaml_PARSE_FLOW_MAPPING_VALUE_STATE\"\n\tcase yaml_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE:\n\t\treturn \"yaml_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE\"\n\tcase yaml_PARSE_END_STATE:\n\t\treturn \"yaml_PARSE_END_STATE\"\n\t}\n\treturn \"<unknown parser state>\"\n}\n\n// This structure holds aliases data.\ntype yaml_alias_data_t struct {\n\tanchor []byte      // The anchor.\n\tindex  int         // The node id.\n\tmark   yaml_mark_t // The anchor mark.\n}\n\n// The parser structure.\n//\n// All members are internal. Manage the structure using the\n// yaml_parser_ family of functions.\ntype yaml_parser_t struct {\n\n\t// Error handling\n\n\terror yaml_error_type_t // Error type.\n\n\tproblem string // Error description.\n\n\t// The byte about which the problem occurred.\n\tproblem_offset int\n\tproblem_value  int\n\tproblem_mark   yaml_mark_t\n\n\t// The error context.\n\tcontext      string\n\tcontext_mark yaml_mark_t\n\n\t// Reader stuff\n\n\tread_handler yaml_read_handler_t // Read handler.\n\n\tinput_reader io.Reader // File input data.\n\tinput        []byte    // String input data.\n\tinput_pos    int\n\n\teof bool // EOF flag\n\n\tbuffer     []byte // The working buffer.\n\tbuffer_pos int    // The current position of the buffer.\n\n\tunread int // The number of unread characters in the buffer.\n\n\traw_buffer     []byte // The raw buffer.\n\traw_buffer_pos int    // The current position of the buffer.\n\n\tencoding yaml_encoding_t // The input encoding.\n\n\toffset int         // The offset of the current position (in bytes).\n\tmark   yaml_mark_t // The mark of the current position.\n\n\t// Scanner stuff\n\n\tstream_start_produced bool // Have we started to scan the input stream?\n\tstream_end_produced   bool // Have we reached the end of the input stream?\n\n\tflow_level int // The number of unclosed '[' and '{' indicators.\n\n\ttokens          []yaml_token_t // The tokens queue.\n\ttokens_head     int            // The head of the tokens queue.\n\ttokens_parsed   int            // The number of tokens fetched from the queue.\n\ttoken_available bool           // Does the tokens queue contain a token ready for dequeueing.\n\n\tindent  int   // The current indentation level.\n\tindents []int // The indentation levels stack.\n\n\tsimple_key_allowed bool                // May a simple key occur at the current position?\n\tsimple_keys        []yaml_simple_key_t // The stack of simple keys.\n\tsimple_keys_by_tok map[int]int         // possible simple_key indexes indexed by token_number\n\n\t// Parser stuff\n\n\tstate          yaml_parser_state_t    // The current parser state.\n\tstates         []yaml_parser_state_t  // The parser states stack.\n\tmarks          []yaml_mark_t          // The stack of marks.\n\ttag_directives []yaml_tag_directive_t // The list of TAG directives.\n\n\t// Dumper stuff\n\n\taliases []yaml_alias_data_t // The alias data.\n\n\tdocument *yaml_document_t // The currently parsed document.\n}\n\n// Emitter Definitions\n\n// The prototype of a write handler.\n//\n// The write handler is called when the emitter needs to flush the accumulated\n// characters to the output.  The handler should write @a size bytes of the\n// @a buffer to the output.\n//\n// @param[in,out]   data        A pointer to an application data specified by\n//                              yaml_emitter_set_output().\n// @param[in]       buffer      The buffer with bytes to be written.\n// @param[in]       size        The size of the buffer.\n//\n// @returns On success, the handler should return @c 1.  If the handler failed,\n// the returned value should be @c 0.\n//\ntype yaml_write_handler_t func(emitter *yaml_emitter_t, buffer []byte) error\n\ntype yaml_emitter_state_t int\n\n// The emitter states.\nconst (\n\t// Expect STREAM-START.\n\tyaml_EMIT_STREAM_START_STATE yaml_emitter_state_t = iota\n\n\tyaml_EMIT_FIRST_DOCUMENT_START_STATE       // Expect the first DOCUMENT-START or STREAM-END.\n\tyaml_EMIT_DOCUMENT_START_STATE             // Expect DOCUMENT-START or STREAM-END.\n\tyaml_EMIT_DOCUMENT_CONTENT_STATE           // Expect the content of a document.\n\tyaml_EMIT_DOCUMENT_END_STATE               // Expect DOCUMENT-END.\n\tyaml_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE   // Expect the first item of a flow sequence.\n\tyaml_EMIT_FLOW_SEQUENCE_ITEM_STATE         // Expect an item of a flow sequence.\n\tyaml_EMIT_FLOW_MAPPING_FIRST_KEY_STATE     // Expect the first key of a flow mapping.\n\tyaml_EMIT_FLOW_MAPPING_KEY_STATE           // Expect a key of a flow mapping.\n\tyaml_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE  // Expect a value for a simple key of a flow mapping.\n\tyaml_EMIT_FLOW_MAPPING_VALUE_STATE         // Expect a value of a flow mapping.\n\tyaml_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE  // Expect the first item of a block sequence.\n\tyaml_EMIT_BLOCK_SEQUENCE_ITEM_STATE        // Expect an item of a block sequence.\n\tyaml_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE    // Expect the first key of a block mapping.\n\tyaml_EMIT_BLOCK_MAPPING_KEY_STATE          // Expect the key of a block mapping.\n\tyaml_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE // Expect a value for a simple key of a block mapping.\n\tyaml_EMIT_BLOCK_MAPPING_VALUE_STATE        // Expect a value of a block mapping.\n\tyaml_EMIT_END_STATE                        // Expect nothing.\n)\n\n// The emitter structure.\n//\n// All members are internal.  Manage the structure using the @c yaml_emitter_\n// family of functions.\ntype yaml_emitter_t struct {\n\n\t// Error handling\n\n\terror   yaml_error_type_t // Error type.\n\tproblem string            // Error description.\n\n\t// Writer stuff\n\n\twrite_handler yaml_write_handler_t // Write handler.\n\n\toutput_buffer *[]byte   // String output data.\n\toutput_writer io.Writer // File output data.\n\n\tbuffer     []byte // The working buffer.\n\tbuffer_pos int    // The current position of the buffer.\n\n\traw_buffer     []byte // The raw buffer.\n\traw_buffer_pos int    // The current position of the buffer.\n\n\tencoding yaml_encoding_t // The stream encoding.\n\n\t// Emitter stuff\n\n\tcanonical   bool         // If the output is in the canonical style?\n\tbest_indent int          // The number of indentation spaces.\n\tbest_width  int          // The preferred width of the output lines.\n\tunicode     bool         // Allow unescaped non-ASCII characters?\n\tline_break  yaml_break_t // The preferred line break.\n\n\tstate  yaml_emitter_state_t   // The current emitter state.\n\tstates []yaml_emitter_state_t // The stack of states.\n\n\tevents      []yaml_event_t // The event queue.\n\tevents_head int            // The head of the event queue.\n\n\tindents []int // The stack of indentation levels.\n\n\ttag_directives []yaml_tag_directive_t // The list of tag directives.\n\n\tindent int // The current indentation level.\n\n\tflow_level int // The current flow level.\n\n\troot_context       bool // Is it the document root context?\n\tsequence_context   bool // Is it a sequence context?\n\tmapping_context    bool // Is it a mapping context?\n\tsimple_key_context bool // Is it a simple mapping key context?\n\n\tline       int  // The current line.\n\tcolumn     int  // The current column.\n\twhitespace bool // If the last character was a whitespace?\n\tindention  bool // If the last character was an indentation character (' ', '-', '?', ':')?\n\topen_ended bool // If an explicit document end is required?\n\n\t// Anchor analysis.\n\tanchor_data struct {\n\t\tanchor []byte // The anchor value.\n\t\talias  bool   // Is it an alias?\n\t}\n\n\t// Tag analysis.\n\ttag_data struct {\n\t\thandle []byte // The tag handle.\n\t\tsuffix []byte // The tag suffix.\n\t}\n\n\t// Scalar analysis.\n\tscalar_data struct {\n\t\tvalue                 []byte              // The scalar value.\n\t\tmultiline             bool                // Does the scalar contain line breaks?\n\t\tflow_plain_allowed    bool                // Can the scalar be expessed in the flow plain style?\n\t\tblock_plain_allowed   bool                // Can the scalar be expressed in the block plain style?\n\t\tsingle_quoted_allowed bool                // Can the scalar be expressed in the single quoted style?\n\t\tblock_allowed         bool                // Can the scalar be expressed in the literal or folded styles?\n\t\tstyle                 yaml_scalar_style_t // The output style.\n\t}\n\n\t// Dumper stuff\n\n\topened bool // If the stream was already opened?\n\tclosed bool // If the stream was already closed?\n\n\t// The information associated with the document nodes.\n\tanchors *struct {\n\t\treferences int  // The number of references.\n\t\tanchor     int  // The anchor id.\n\t\tserialized bool // If the node has been emitted?\n\t}\n\n\tlast_anchor_id int // The last assigned anchor id.\n\n\tdocument *yaml_document_t // The currently emitted document.\n}\n"
  },
  {
    "path": "vendor/gopkg.in/yaml.v2/yamlprivateh.go",
    "content": "package yaml\n\nconst (\n\t// The size of the input raw buffer.\n\tinput_raw_buffer_size = 512\n\n\t// The size of the input buffer.\n\t// It should be possible to decode the whole raw buffer.\n\tinput_buffer_size = input_raw_buffer_size * 3\n\n\t// The size of the output buffer.\n\toutput_buffer_size = 128\n\n\t// The size of the output raw buffer.\n\t// It should be possible to encode the whole output buffer.\n\toutput_raw_buffer_size = (output_buffer_size*2 + 2)\n\n\t// The size of other stacks and queues.\n\tinitial_stack_size  = 16\n\tinitial_queue_size  = 16\n\tinitial_string_size = 16\n)\n\n// Check if the character at the specified position is an alphabetical\n// character, a digit, '_', or '-'.\nfunc is_alpha(b []byte, i int) bool {\n\treturn b[i] >= '0' && b[i] <= '9' || b[i] >= 'A' && b[i] <= 'Z' || b[i] >= 'a' && b[i] <= 'z' || b[i] == '_' || b[i] == '-'\n}\n\n// Check if the character at the specified position is a digit.\nfunc is_digit(b []byte, i int) bool {\n\treturn b[i] >= '0' && b[i] <= '9'\n}\n\n// Get the value of a digit.\nfunc as_digit(b []byte, i int) int {\n\treturn int(b[i]) - '0'\n}\n\n// Check if the character at the specified position is a hex-digit.\nfunc is_hex(b []byte, i int) bool {\n\treturn b[i] >= '0' && b[i] <= '9' || b[i] >= 'A' && b[i] <= 'F' || b[i] >= 'a' && b[i] <= 'f'\n}\n\n// Get the value of a hex-digit.\nfunc as_hex(b []byte, i int) int {\n\tbi := b[i]\n\tif bi >= 'A' && bi <= 'F' {\n\t\treturn int(bi) - 'A' + 10\n\t}\n\tif bi >= 'a' && bi <= 'f' {\n\t\treturn int(bi) - 'a' + 10\n\t}\n\treturn int(bi) - '0'\n}\n\n// Check if the character is ASCII.\nfunc is_ascii(b []byte, i int) bool {\n\treturn b[i] <= 0x7F\n}\n\n// Check if the character at the start of the buffer can be printed unescaped.\nfunc is_printable(b []byte, i int) bool {\n\treturn ((b[i] == 0x0A) || // . == #x0A\n\t\t(b[i] >= 0x20 && b[i] <= 0x7E) || // #x20 <= . <= #x7E\n\t\t(b[i] == 0xC2 && b[i+1] >= 0xA0) || // #0xA0 <= . <= #xD7FF\n\t\t(b[i] > 0xC2 && b[i] < 0xED) ||\n\t\t(b[i] == 0xED && b[i+1] < 0xA0) ||\n\t\t(b[i] == 0xEE) ||\n\t\t(b[i] == 0xEF && // #xE000 <= . <= #xFFFD\n\t\t\t!(b[i+1] == 0xBB && b[i+2] == 0xBF) && // && . != #xFEFF\n\t\t\t!(b[i+1] == 0xBF && (b[i+2] == 0xBE || b[i+2] == 0xBF))))\n}\n\n// Check if the character at the specified position is NUL.\nfunc is_z(b []byte, i int) bool {\n\treturn b[i] == 0x00\n}\n\n// Check if the beginning of the buffer is a BOM.\nfunc is_bom(b []byte, i int) bool {\n\treturn b[0] == 0xEF && b[1] == 0xBB && b[2] == 0xBF\n}\n\n// Check if the character at the specified position is space.\nfunc is_space(b []byte, i int) bool {\n\treturn b[i] == ' '\n}\n\n// Check if the character at the specified position is tab.\nfunc is_tab(b []byte, i int) bool {\n\treturn b[i] == '\\t'\n}\n\n// Check if the character at the specified position is blank (space or tab).\nfunc is_blank(b []byte, i int) bool {\n\t//return is_space(b, i) || is_tab(b, i)\n\treturn b[i] == ' ' || b[i] == '\\t'\n}\n\n// Check if the character at the specified position is a line break.\nfunc is_break(b []byte, i int) bool {\n\treturn (b[i] == '\\r' || // CR (#xD)\n\t\tb[i] == '\\n' || // LF (#xA)\n\t\tb[i] == 0xC2 && b[i+1] == 0x85 || // NEL (#x85)\n\t\tb[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA8 || // LS (#x2028)\n\t\tb[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA9) // PS (#x2029)\n}\n\nfunc is_crlf(b []byte, i int) bool {\n\treturn b[i] == '\\r' && b[i+1] == '\\n'\n}\n\n// Check if the character is a line break or NUL.\nfunc is_breakz(b []byte, i int) bool {\n\t//return is_break(b, i) || is_z(b, i)\n\treturn (        // is_break:\n\tb[i] == '\\r' || // CR (#xD)\n\t\tb[i] == '\\n' || // LF (#xA)\n\t\tb[i] == 0xC2 && b[i+1] == 0x85 || // NEL (#x85)\n\t\tb[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA8 || // LS (#x2028)\n\t\tb[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA9 || // PS (#x2029)\n\t\t// is_z:\n\t\tb[i] == 0)\n}\n\n// Check if the character is a line break, space, or NUL.\nfunc is_spacez(b []byte, i int) bool {\n\t//return is_space(b, i) || is_breakz(b, i)\n\treturn ( // is_space:\n\tb[i] == ' ' ||\n\t\t// is_breakz:\n\t\tb[i] == '\\r' || // CR (#xD)\n\t\tb[i] == '\\n' || // LF (#xA)\n\t\tb[i] == 0xC2 && b[i+1] == 0x85 || // NEL (#x85)\n\t\tb[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA8 || // LS (#x2028)\n\t\tb[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA9 || // PS (#x2029)\n\t\tb[i] == 0)\n}\n\n// Check if the character is a line break, space, tab, or NUL.\nfunc is_blankz(b []byte, i int) bool {\n\t//return is_blank(b, i) || is_breakz(b, i)\n\treturn ( // is_blank:\n\tb[i] == ' ' || b[i] == '\\t' ||\n\t\t// is_breakz:\n\t\tb[i] == '\\r' || // CR (#xD)\n\t\tb[i] == '\\n' || // LF (#xA)\n\t\tb[i] == 0xC2 && b[i+1] == 0x85 || // NEL (#x85)\n\t\tb[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA8 || // LS (#x2028)\n\t\tb[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA9 || // PS (#x2029)\n\t\tb[i] == 0)\n}\n\n// Determine the width of the character.\nfunc width(b byte) int {\n\t// Don't replace these by a switch without first\n\t// confirming that it is being inlined.\n\tif b&0x80 == 0x00 {\n\t\treturn 1\n\t}\n\tif b&0xE0 == 0xC0 {\n\t\treturn 2\n\t}\n\tif b&0xF0 == 0xE0 {\n\t\treturn 3\n\t}\n\tif b&0xF8 == 0xF0 {\n\t\treturn 4\n\t}\n\treturn 0\n\n}\n"
  },
  {
    "path": "vendor/modules.txt",
    "content": "# github.com/VividCortex/ewma v1.1.1\ngithub.com/VividCortex/ewma\n# github.com/andybalholm/brotli v1.0.1\n## explicit\ngithub.com/andybalholm/brotli\n# github.com/cheggaaa/pb/v3 v3.0.5\n## explicit\ngithub.com/cheggaaa/pb/v3\ngithub.com/cheggaaa/pb/v3/termutil\n# github.com/fatih/color v1.7.0\ngithub.com/fatih/color\n# github.com/fsnotify/fsnotify v1.4.7\ngithub.com/fsnotify/fsnotify\n# github.com/hashicorp/hcl v1.0.0\ngithub.com/hashicorp/hcl\ngithub.com/hashicorp/hcl/hcl/ast\ngithub.com/hashicorp/hcl/hcl/parser\ngithub.com/hashicorp/hcl/hcl/printer\ngithub.com/hashicorp/hcl/hcl/scanner\ngithub.com/hashicorp/hcl/hcl/strconv\ngithub.com/hashicorp/hcl/hcl/token\ngithub.com/hashicorp/hcl/json/parser\ngithub.com/hashicorp/hcl/json/scanner\ngithub.com/hashicorp/hcl/json/token\n# github.com/inconshreveable/mousetrap v1.0.0\ngithub.com/inconshreveable/mousetrap\n# github.com/klauspost/compress v1.11.4\n## explicit\ngithub.com/klauspost/compress/flate\ngithub.com/klauspost/compress/gzip\ngithub.com/klauspost/compress/zlib\n# github.com/magiconair/properties v1.8.1\ngithub.com/magiconair/properties\n# github.com/mattn/go-colorable v0.1.2\ngithub.com/mattn/go-colorable\n# github.com/mattn/go-isatty v0.0.12\ngithub.com/mattn/go-isatty\n# github.com/mattn/go-runewidth v0.0.7\ngithub.com/mattn/go-runewidth\n# github.com/mitchellh/go-homedir v1.1.0\n## explicit\ngithub.com/mitchellh/go-homedir\n# github.com/mitchellh/mapstructure v1.1.2\ngithub.com/mitchellh/mapstructure\n# github.com/pelletier/go-toml v1.2.0\ngithub.com/pelletier/go-toml\n# github.com/sirupsen/logrus v1.7.0\n## explicit\ngithub.com/sirupsen/logrus\n# github.com/spf13/afero v1.1.2\ngithub.com/spf13/afero\ngithub.com/spf13/afero/mem\n# github.com/spf13/cast v1.3.0\ngithub.com/spf13/cast\n# github.com/spf13/cobra v1.1.1\n## explicit\ngithub.com/spf13/cobra\n# github.com/spf13/jwalterweatherman v1.0.0\ngithub.com/spf13/jwalterweatherman\n# github.com/spf13/pflag v1.0.5\ngithub.com/spf13/pflag\n# github.com/spf13/viper v1.7.1\n## explicit\ngithub.com/spf13/viper\n# github.com/subosito/gotenv v1.2.0\ngithub.com/subosito/gotenv\n# github.com/valyala/bytebufferpool v1.0.0\ngithub.com/valyala/bytebufferpool\n# github.com/valyala/fasthttp v1.18.0\n## explicit\ngithub.com/valyala/fasthttp\ngithub.com/valyala/fasthttp/fasthttputil\ngithub.com/valyala/fasthttp/stackless\n# golang.org/x/net v0.0.0-20201021035429-f5854403a974\n## explicit\ngolang.org/x/net/html\ngolang.org/x/net/html/atom\ngolang.org/x/net/html/charset\n# golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f\ngolang.org/x/sys/internal/unsafeheader\ngolang.org/x/sys/unix\ngolang.org/x/sys/windows\n# golang.org/x/text v0.3.3\n## explicit\ngolang.org/x/text/encoding\ngolang.org/x/text/encoding/charmap\ngolang.org/x/text/encoding/htmlindex\ngolang.org/x/text/encoding/internal\ngolang.org/x/text/encoding/internal/identifier\ngolang.org/x/text/encoding/japanese\ngolang.org/x/text/encoding/korean\ngolang.org/x/text/encoding/simplifiedchinese\ngolang.org/x/text/encoding/traditionalchinese\ngolang.org/x/text/encoding/unicode\ngolang.org/x/text/internal/language\ngolang.org/x/text/internal/language/compact\ngolang.org/x/text/internal/tag\ngolang.org/x/text/internal/utf8internal\ngolang.org/x/text/language\ngolang.org/x/text/runes\ngolang.org/x/text/transform\ngolang.org/x/text/unicode/norm\n# gopkg.in/ini.v1 v1.51.0\ngopkg.in/ini.v1\n# gopkg.in/yaml.v2 v2.3.0\n## explicit\ngopkg.in/yaml.v2\n"
  }
]